From 853e88cde995b495bc6a8704c7835ae4b32ea3a3 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Tue, 3 Mar 2026 16:55:43 +0100 Subject: [PATCH 01/26] refactor: Rename Flatpack file to FlatpackV1 --- packages/flatpack-json/src/{Flatpack.mts => FlatpackV1.mts} | 0 .../src/{Flatpack.test.mts => FlatpackV1.test.mts} | 4 ++-- .../{Flatpack.test.mts.snap => FlatpackV1.test.mts.snap} | 0 ...tpack_fileList.data.json => FlatpackV1_fileList.data.json} | 0 .../{Flatpack_fileList.json => FlatpackV1_fileList.json} | 0 .../{Flatpack_fileList.jsonc => FlatpackV1_fileList.jsonc} | 0 ...fileObjects.data.json => FlatpackV1_fileObjects.data.json} | 0 ...{Flatpack_fileObjects.json => FlatpackV1_fileObjects.json} | 0 ...latpack_fileObjects.jsonc => FlatpackV1_fileObjects.jsonc} | 0 packages/flatpack-json/src/index.ts | 2 +- 10 files changed, 3 insertions(+), 3 deletions(-) rename packages/flatpack-json/src/{Flatpack.mts => FlatpackV1.mts} (100%) rename packages/flatpack-json/src/{Flatpack.test.mts => FlatpackV1.test.mts} (99%) rename packages/flatpack-json/src/__snapshots__/{Flatpack.test.mts.snap => FlatpackV1.test.mts.snap} (100%) rename packages/flatpack-json/src/__snapshots__/{Flatpack_fileList.data.json => FlatpackV1_fileList.data.json} (100%) rename packages/flatpack-json/src/__snapshots__/{Flatpack_fileList.json => FlatpackV1_fileList.json} (100%) rename packages/flatpack-json/src/__snapshots__/{Flatpack_fileList.jsonc => FlatpackV1_fileList.jsonc} (100%) rename packages/flatpack-json/src/__snapshots__/{Flatpack_fileObjects.data.json => FlatpackV1_fileObjects.data.json} (100%) rename packages/flatpack-json/src/__snapshots__/{Flatpack_fileObjects.json => FlatpackV1_fileObjects.json} (100%) rename packages/flatpack-json/src/__snapshots__/{Flatpack_fileObjects.jsonc => FlatpackV1_fileObjects.jsonc} (100%) diff --git a/packages/flatpack-json/src/Flatpack.mts b/packages/flatpack-json/src/FlatpackV1.mts similarity index 100% rename from packages/flatpack-json/src/Flatpack.mts rename to packages/flatpack-json/src/FlatpackV1.mts diff --git a/packages/flatpack-json/src/Flatpack.test.mts b/packages/flatpack-json/src/FlatpackV1.test.mts similarity index 99% rename from packages/flatpack-json/src/Flatpack.test.mts rename to packages/flatpack-json/src/FlatpackV1.test.mts index 0dde00dffa45..49997332d3c1 100644 --- a/packages/flatpack-json/src/Flatpack.test.mts +++ b/packages/flatpack-json/src/FlatpackV1.test.mts @@ -4,8 +4,8 @@ import { findMatchingFileTypes } from '@cspell/filetypes'; import { createPatch } from 'diff'; import { describe, expect, test } from 'vitest'; -import { FlatpackStore, stringify, toJSON } from './Flatpack.mjs'; -import { deepEqual } from './proxy.mts'; +import { FlatpackStore, stringify, toJSON } from './FlatpackV1.mjs'; +import { deepEqual } from './proxy.mjs'; import { stringifyFlatpacked } from './stringify.mjs'; import { fromJSON } from './unpack.mjs'; diff --git a/packages/flatpack-json/src/__snapshots__/Flatpack.test.mts.snap b/packages/flatpack-json/src/__snapshots__/FlatpackV1.test.mts.snap similarity index 100% rename from packages/flatpack-json/src/__snapshots__/Flatpack.test.mts.snap rename to packages/flatpack-json/src/__snapshots__/FlatpackV1.test.mts.snap diff --git a/packages/flatpack-json/src/__snapshots__/Flatpack_fileList.data.json b/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileList.data.json similarity index 100% rename from packages/flatpack-json/src/__snapshots__/Flatpack_fileList.data.json rename to packages/flatpack-json/src/__snapshots__/FlatpackV1_fileList.data.json diff --git a/packages/flatpack-json/src/__snapshots__/Flatpack_fileList.json b/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileList.json similarity index 100% rename from packages/flatpack-json/src/__snapshots__/Flatpack_fileList.json rename to packages/flatpack-json/src/__snapshots__/FlatpackV1_fileList.json diff --git a/packages/flatpack-json/src/__snapshots__/Flatpack_fileList.jsonc b/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileList.jsonc similarity index 100% rename from packages/flatpack-json/src/__snapshots__/Flatpack_fileList.jsonc rename to packages/flatpack-json/src/__snapshots__/FlatpackV1_fileList.jsonc diff --git a/packages/flatpack-json/src/__snapshots__/Flatpack_fileObjects.data.json b/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileObjects.data.json similarity index 100% rename from packages/flatpack-json/src/__snapshots__/Flatpack_fileObjects.data.json rename to packages/flatpack-json/src/__snapshots__/FlatpackV1_fileObjects.data.json diff --git a/packages/flatpack-json/src/__snapshots__/Flatpack_fileObjects.json b/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileObjects.json similarity index 100% rename from packages/flatpack-json/src/__snapshots__/Flatpack_fileObjects.json rename to packages/flatpack-json/src/__snapshots__/FlatpackV1_fileObjects.json diff --git a/packages/flatpack-json/src/__snapshots__/Flatpack_fileObjects.jsonc b/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileObjects.jsonc similarity index 100% rename from packages/flatpack-json/src/__snapshots__/Flatpack_fileObjects.jsonc rename to packages/flatpack-json/src/__snapshots__/FlatpackV1_fileObjects.jsonc diff --git a/packages/flatpack-json/src/index.ts b/packages/flatpack-json/src/index.ts index eed79ee6771f..3116050e0ea8 100644 --- a/packages/flatpack-json/src/index.ts +++ b/packages/flatpack-json/src/index.ts @@ -1,4 +1,4 @@ -export { FlatpackStore } from './Flatpack.mjs'; +export { FlatpackStore } from './FlatpackV1.mjs'; export { stringify, toJSON } from './storage.mjs'; export { stringifyFlatpacked } from './stringify.mjs'; export type { Flatpacked } from './types.mts'; From ee6a4442093c56538676c278f8ef88e5f2b13d59 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Thu, 5 Mar 2026 06:51:39 +0100 Subject: [PATCH 02/26] copy v1 to v2 --- .../fixtures/.npm-packages-info-v1.json | 36873 ++++++++++++++++ packages/flatpack-json/src/Flatpack.mts | 48 + packages/flatpack-json/src/FlatpackV1.mts | 15 +- .../flatpack-json/src/FlatpackV1.test.mts | 2 +- packages/flatpack-json/src/FlatpackV2.mts | 759 + .../flatpack-json/src/FlatpackV2.test.mts | 300 + .../__snapshots__/FlatpackV2.test.mts.snap | 1082 + .../FlatpackV2_fileList.data.json | 1 + .../__snapshots__/FlatpackV2_fileList.json | 1 + .../__snapshots__/FlatpackV2_fileList.jsonc | 1402 + .../FlatpackV2_fileObjects.data.json | 1 + .../__snapshots__/FlatpackV2_fileObjects.json | 1 + .../FlatpackV2_fileObjects.jsonc | 2702 ++ packages/flatpack-json/src/index.ts | 2 +- packages/flatpack-json/src/types.mts | 18 +- 15 files changed, 43196 insertions(+), 11 deletions(-) create mode 100644 packages/flatpack-json/fixtures/.npm-packages-info-v1.json create mode 100644 packages/flatpack-json/src/Flatpack.mts create mode 100644 packages/flatpack-json/src/FlatpackV2.mts create mode 100644 packages/flatpack-json/src/FlatpackV2.test.mts create mode 100644 packages/flatpack-json/src/__snapshots__/FlatpackV2.test.mts.snap create mode 100644 packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.data.json create mode 100644 packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.json create mode 100644 packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.jsonc create mode 100644 packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.data.json create mode 100644 packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.json create mode 100644 packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.jsonc diff --git a/packages/flatpack-json/fixtures/.npm-packages-info-v1.json b/packages/flatpack-json/fixtures/.npm-packages-info-v1.json new file mode 100644 index 000000000000..1fe72091b400 --- /dev/null +++ b/packages/flatpack-json/fixtures/.npm-packages-info-v1.json @@ -0,0 +1,36873 @@ +[ +"Flatpack JSON v1", +[5,2,25598], +[0,3,4,7,10,13,16,19,21,24,26,28,30,32,34,37,39,40,43,46,47,48,51,53,56,58,61,62,63,64,65,66,68,71,73,76,78,81,83,85,87,90,92,94,97,99,101,104,105,106,107,110,111,114,116,119,122,124,126,129,133,135,137,140,143,146,148,150,153,155,157,159,162,164,167,169,171,174,175,177,180,182,185,187,189,191,192,195,197,198,201,203,204,205,208,213,215,218,220,221,222,225,228,231,233,235,238,240,243,245,247,249,251,253,258,260,262,265,267,269,271,272,275,277,280,282,285,288,290,293,296,298,301,303,305,308,310,313,315,319,322,324,327,329,331,334,338,340,342,345,346,347,350,351,354,355,358,359,360,361,362,365,368,370,371,374,377,379,381,384,387,392,394,399,401,404,406,409,411,413,415,419,422,425,427,430,432,434,438,439,442,443,444,445,448,449,452,456,457,460,462,465,468,469,470,471,478,481,483,486,488,490,493,495,497,502,505,507,513,516,518,525,528,533,536,538,539,540,541,542,545,546,547,548,549,550,551,554,555,559,560,561,564,565,566,567,572,573,576,577,578,581,583,585,587,589,593,595,596,598,601,602,603,606,608,609,613,615,616,617,618,621,622,624,626,627,628,631,633,634,635,638,641,643,646,649,652,654,656,659,660,663,665,666,669,672,675,677,679,682,683,684,687,688,691,692,693,697,700,702,703,706,709,711,712,713,716,721,724,727,732,735,738,740,742,745,749,751,753,758,763,767,770,773,776,782,785,790,793,795,798,802,803,804,805,806,807,808,809,810,811,816,817,818,821,822,825,826,827,828,829,831,834,835,838,840,841,842,843,846,849,850,851,852,853,857,860,864,870,872,876,881,885,891,896,898,905,910,913,915,917,920,925,929,933,935,938,944,948,951,954,955,958,961,962,963,966,968,971,972,974,975,978,980,983,985,987,989,991,993,996,997,1001,1003,1004,1005,1006,1009,1011,1012,1013,1014,1015,1018,1021,1023,1025,1026,1027,1028,1030,1031,1032,1033,1034,1043,1045,1050,1054,1056,1059,1061,1063,1066,1073,1075,1077,1078,1079,1080,1081,1082,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1096,1097,1098,1100,1102,1103,1104,1107,1109,1110,1112,1113,1114,1115,1116,1117,1118,1120,1121,1122,1125,1127,1129,1130,1131,1132,1135,1136,1137,1138,1139,1140,1143,1144,1145,1147,1148,1149,1151,1154,1156,1157,1158,1159,1162,1165,1166,1167,1168,1169,1170,1171,1172,1173,1175,1178,1180,1184,1189,1191,1193,1195,1198,1201,1203,1205,1208,1210,1212,1216,1217,1220,1225,1230,1233,1235,1240,1244,1245,1248,1251,1253,1255,1257,1261,1264,1267,1268,1270,1272,1275,1277,1279,1280,1282,1284,1287,1288,1290,1291,1292,1293,1294,1295,1298,1301,1304,1305,1306,1308,1309,1310,1311,1314,1315,1316,1317,1318,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1335,1336,1339,1342,1344,1346,1348,1350,1352,1354,1356,1358,1361,1362,1363,1364,1365,1366,1367,1369,1370,1371,1372,1373,1376,1377,1378,1381,1385,1386,1387,1389,1391,1393,1394,1395,1396,1397,1398,1400,1401,1402,1405,1406,1407,1408,1409,1410,1411,1413,1414,1415,1416,1417,1420,1421,1423,1424,1425,1426,1427,1428,1429,1431,1434,1436,1437,1438,1440,1443,1446,1447,1448,1449,1450,1455,1456,1457,1458,1459,1461,1462,1465,1468,1470,200,1471,1474,1477,1479,1480,1481,1482,1483,1486,1488,1489,1492,1494,1495,1496,1497,1498,1499,1500,1501,1503,1505,1506,1509,1473,1511,1512,1513,1516,1519,1522,1525,1527,1529,1532,1533,1536,1537,1540,1541,1543,1544,1546,1549,1551,1553,1556,1559,1560,1562,1565,1566,1567,1570,1573,977,1575,1578,1581,1582,1584,1587,1588,1590,1591,1593,1594,1595,1596,1597,1598,1599,1600,1603,1604,1605,1606,1608,1609,1610,1613,1615,1616,1618,1620,1621,1622,1623,1624,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1645,1647,1648,1649,1650,1651,1652,1653,1654,1655,1658,1660,1661,1662,1663,1664,1665,1668,1672,1673,1674,1675,1676,1677,1679,1680,1681,1682,1686,1688,1690,1693,1696,1699,1700,1701,1702,1703,1704,1705,1706,1707,1710,1711,1687,1713,1715,1718,1719,1720,1723,1724,1726,1727,1728,1729,1730,1731,1733,1734,1735,1736,1737,1738,1741,1742,1745,1748,467,1750,1751,1754,1756,1757,1758,1759,1763,1764,1766,1767,1768,1770,1774,1777,1779,1782,1784,1785,1786,1787,1788,1789,1791,1792,1793,1794,1795,1796,1797,1798,1801,1804,1806,1809,1812,1816,1817,1819,1820,1821,1822,1824,1825,1827,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1842,1843,1845,1847,1850,1853,1854,1855,1856,1859,1860,1863,1865,1866,668,1869,1874,1875,1177,1879,1881,1883,1886,1889,1891,1893,1895,1898,1900,1903,1905,1907,1909,1912,1915,1916,1920,1922,1924,1926,1930,1933,1935,1937,1938,1939,1942,1945,1947,1948,1951,1953,1954,1955,1958,1959,1961,1964,1966,1969,1970,1972,1976,1978,1982,1985,1988,1992,1994,1996,1998,1999,2000,2003,2004,2007,984,2008,2010,2011,2012,2015,2017,2018,2019,2020,2021,2022,2024,2025,2026,2028,2031,2033,2037,2039,2040,2042,2045,2046,2048,2051,2053,2054,2057,2058,2059,2060,2061,2064,2067,2069,2071,2073,2075,2077,2078,2079,2080,2081,2082,2083,2084,2086,2087,2088,2089,2092,2095,2096,2098,2099,2102,2105,2107,2108,2109,2111,2113,2114,2116,2117,2119,2122,2123,2126,2128,2129,2130,2131,2132,2133,2134,2135,2137,2139,2141,2144,2145,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2159,2160,2161,2162,2163,2164,2165,2167,2170,2172,2175,2176,2177,2178,2179,2182,2185,2188,2191,2192,2193,2194,2195,2197,2070,2200,2202,2203,2205,2206,2207,2209,2211,2212,2213,2214,2215,2216,2217,2220,2222,2225,2226,2227,2228,2231,2234,2236,2239,2240,2243,2247,2250,2253,2256,2258,2260,2263,2266,2268,2271,2273,2274,2277,2279,2281,2283,2285,2290,2291,2293,2296,2298,2300,2302,2305,2307,2308,2311,2314,2316,2318,2320,2321,2322,2323,2327,2330,2332,2334,2336,2338,2341,2344,2346,2348,2351,2352,2354,2357,2359,2361,2363,2366,2367,2368,2371,2372,2373,2375,2377,2379,2381,2383,2384,2387,2390,2393,2396,2398,2400,2401,2404,2405,2406,2409,2411,2413,2416,2419,2421,2423,2425,2427,2430,2433,2435,2436,2438,2441,2444,2447,2449,2450,2453,2455,2459,2461,2463,2464,2467,2469,2472,2476,2479,2482,2486,2489,2490,2493,2494,2496,2498,2500,2503,2504,2506,2507,2508,2510,2512,2515,2517,2519,2520,2521,2524,2526,2529,2530,2533,2536,2539,2541,2543,2544,2547,2549,2550,2552,2553,2554,2555,2036,2556,2559,2562,2563,2564,2567,2569,2570,2571,2572,2575,2577,2579,2581,2583,2584,2586,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2600,2601,2602,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2616,2620,2623,2626,2628,2629,2633,2635,2637,2639,2641,2644,2646,2650,2651,2652,2654,27,2657,2659,2661,2664,2665,2668,2670,2671,2674,2675,2676,2677,2678,2679,2681,2683,2685,2686,2687,2689,2692,2267,2694,2695,2696,2697,2700,2702,2704,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2718,2719,2720,2722,2723,2726,1161,2727,2728,2730,2731,2732,2733,2735,2738,2739,2740,2741,2742,2743,2744,2745,2747,2750,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2437,2763,2764,2765,2766,2768,1192,2771,2774,2777,2780,2782,2784,2787,2792,2794,2796,2797,2798,2802,2805,2806,2807,2808,2810,2811,2812,2813,2814,2816,2817,2820,2821,2822,2823,2824,2292,1776,2826,2829,2832,2834,2835,2272,2839,2841,2843,2845,2848,2851,2854,2856,2858,2859,2860,2861,2863,2864,2865,2866,2867,2870,2297,2871,2876,2878,2881,2886,2889,2891,2895,2897,2898,2900,2904,2906,2908,2910,2912,2915,2918,2921,2923,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2941,2943,2945,2946,2948,2949,620,2950,2954,2957,2960,2961,2962,2963,2964,2967,2968,695,2969,2970,2972,2973,2975,2976,2979,2981,2982,2983,2984,2986,2990,2991,2992,2993,2996,2997,3000,3003,3006,3008,3010,3012,3014,3019,1209,3021,3023,3025,3028,3029,3032,3034,3037,3039,3041,3044,3047,3049,3051,3052,3054,3057,3060,3062,3064,3066,3067,3070,3072,3073,3074,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3095,3096,3097,3098,3099,3102,3103,1783,3105,3107,3112,3114,3116,3117,3120,3123,3124,3125,3127,3129,3130,3132,3133,3134,3135,3136,3137,3140,3141,3142,3143,3144,3145,3148,3150,3152,3153,3156,3157,1698,3159,3160,3161,3162,3164,3165,3167,3170,3171,3173,3174,3177,3178,3181,3183,3185,3186,3187,3188,3189,3190,3191,2899,3198,3200,3202,3203,3206,3210,3211,3213,3215,3216,3219,3220,3222,3223,3226,3229,3230,3232,3233,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3249,3253,3256,3257,3258,3259,3260,3261,1952,3262,3263,2378,3264,3266,3268,3270,3271,3273,3274,3275,3276,3277,3278,3282,3283,3284,3285,3287,3288,3289,3290,3291,3292,3294,3295,3296,3297,3299,3300,3303,3305,3308,3309,3310,3313,3316,3318,640,3322,3324,3327,3330,3332,3334,3337,3339,3341,3342,3345,3347,3349,3350,3353,3355,3357,3359,3361,3363,2276,3365,3366,3367,3368,3369,3371,3373,3376,3377,3378,3379,3381,3386,3390,3393,3397,3400,3401,3404,3406,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3427,3429,3431,3433,3434,3435,3438,3439,3440,3441,3442,3443,3444,3445,3446,3451,3453,3455,3456,3458,3459,3460,3463,3466,3467,3468,3469,888,3470,3471,3472,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3488,3490,3492,1644,3493,3494,3495,3498,3499,3500,3501,1433,3403,3502,3505,3507,3509,3510,3511,3512,3513,3518,3519,3520,3521,3524,3525,3526,3527,3530,3531,3532,3533,3534,3535,3536,3537,3539,3540,3541,2072,3544,3545,3547,3548,3549,3551,3552,3553,3554,3555,3558,3559,3560,3561,3564,3566,3570,3572,3575,3577,3579,3584,3587,3591,3598,3600,3603,3605,3606,3611,3613,3616,3618,3622,3625,3628,3633,3635,3636,3638,3640,3643,3647,3649,3652,3653,3657,3660,3662,3664,3668,3672,3674,3676,3678,3681,3683,3686,3688,3691,3692,3693,3696,3697,3698,3699,1894,3703,3706,3708,3710,3711,3714,3716,3717,3718,3720,3722,3724,3725,3726,3727,3729,3730,3732,1862,3734,3736,3739,3741,3742,3744,3746,3747,3750,2658,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3765,3767,3768,3770,3771,2907,3773,3774,3775,3776,3777,3779,3780,3781,3783,3784,3786,1997,3787,3788,3789,3790,89,3793,3799,3802,3803,3804,3807,3810,3813,3816,3817,3820,3822,3824,3826,3829,3830,3833,3836,3837,3839,3843,3846,3847,3849,3850,3853,3856,3857,3861,3864,3867,3869,3872,3876,3878,3882,3884,3885,3887,3889,3891,3893,3895,3897,3899,3904,3906,3909,3911,3913,3914,3916,3917,3919,3921,3923,3925,3927,3928,3930,3931,3932,3935,3938,1552,3939,3941,3875,3943,3945,3946,3948,3950,3951,3954,3957,3958,3963,3968,3970,3971,3973,3975,3978,3980,3981,3984,3985,3988,3989,3991,3992,3995,3998,3999,4001,4002,4005,705,4008,4010,4012,4015,4018,4019,4022,4023,814,4025,4028,4029,4031,4033,4035,4036,1153,4037,4038,4039,4041,4042,4045,4048,4052,4055,4057,4058,4060,4064,4066,4067,4069,4071,4073,4075,4076,4077,4079,4081,4083,4084,4085,4086,4089,4092,4093,4094,4098,4100,4103,4104,4105,4106,4108,4110,2278,4111,4112,4113,4116,4119,4121,4124,4125,4126,4127,4130,4131,4134,1899,4135,710,4136,4137,4140,4143,4145,4146,4148,4150,4151,4153,4156,4159,4160,4163,4164,4165,4167,4168,4169,4170,4171,4172,4173,4174,4177,4181,4183,4187,4188,4189,4192,4193,4196,4199,4200,4201,4204,4205,4206,4207,4208,4209,4212,3974,4213,4214,4215,4216,4217,4218,4220,4224,4227,4228,4230,4232,4233,4234,4235,4236,4237,4238,4239,4242,4243,4245,4246,4247,4248,4249,4252,4255,4257,4258,4261,4264,4266,4267,4270,4272,4275,4277,4278,4280,4282,4283,1871,4288,4290,4292,4294,4296,4300,4302,4303,4305,4307,4309,4311,4315,4317,4319,4320,4323,4326,4328,4330,4333,4334,4335,4337,4338,4339,4341,4342,4343,4345,4347,4351,4352,3709,4355,4359,4360,4361,4362,4363,4365,4367,4369,4370,4371,4372,4373,4375,4376,4377,4380,4382,4383,4384,4387,4388,4389,4390,4391,4393,4394,4397,4398,4399,1241,4400,4401,4404,4072,4409,4411,1187,4413,4415,4419,4421,4423,4425,4426,4427,4430,4431,4433,4434,4435,4436,4437,4438,4441,4443,4445,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,100,4459,4461,4462,4463,4464,4465,4468,4469,4470,4473,4474,4475,4477,4478,4480,4481,4482,4483,4484,4487,4490,4492,4493,4494,4495,4496,4497,4498,4499,4500,4505,4507,1000,4508,4510,4512,4514,4515,4517,4520,4521,91,4523,4526,4531,4532,4533,4535,4537,4538,4539,4540,4541,4542,4543,4545,4547,4548,4549,4554,4555,4558,4559,4560,4562,4563,1002,4566,4027,4567,4568,4569,4572,4576,4577,614,4578,3348,4579,4582,4585,4588,1155,4589,4590,4591,4592,4593,4594,4595,4596,4597,4599,4600,4603,4606,4608,1983,4612,4614,1984,4615,4616,4617,4618,4621,4624,188,4629,4630,4632,4633,4634,4638,4639,4640,4645,4646,4647,4648,4649,2282,4650,4651,4652,4653,4656,4659,4662,4664,4667,4669,2924,4676,4677,4679,4681,4684,4686,4689,4693,4695,4696,4699,4702,4703,4704,4705,4706,4707,4708,4709,4711,4715,4716,4717,4720,4723,4724,4726,4727,4728,4729,4730,4731,3354,4733,4734,4735,4736,4737,4738,1906,4739,4740,4741,4742,1695,4744,4745,4746,4747,4748,4749,4751,4752,4753,4754,4756,4757,4758,4759,4760,4761,4762,4763,4767,4768,4769,4770,4771,4772,4774,4775,4776,4777,4782,4783,4786,4788,4791,639,11976,662,3405,5010,6781,23276,6974,15279,15484,17429,15887,26713,18240,11804,24566,475,24782,25169,25219,25266,25307,25432,25443,25395,25490,25766,25775,25798,25809,25833,25882,25931,29350,29385,29389,29407,29414,29394,29435,29448,29460,20562,29477,31705,29524,29537,29546,29560,33408,29564,29610,31821,29626,3286,30757,29683,29729,29754,5065,29805,9011,29821,24737,29850,29889,29942,29955,28519,29993,9355,8199,680,19571,27921,29998,30145,30165,26706,30182,30196,30218,9041,30233,30252,30257,30281,30312,906,30405,30458,30463,30469,30477,30488,30607,30612,30624,30731,907,8119,30798,30829,940,26636,20202,29755,14673,9274,9293,9273,30926,30957,30972,33145,24723,30979,14684,31064,11518,31086,12016,15951,31198,31231,31244,31262,31272,31282,31289,31290,31332,31347,31314,31353,31375,21287,21288,31343,31386,31421,31430,31465,31473,31485,31501,31509,31521,14904,31180,31528,14959,18699,18717,14336,31544,26854,34576,34578,31644,33204,11421,23288,31677,31713,11890,16858,31728,31749,31760,31782,31793,31805,31816,31822,31827,31835,17964,21594,31838,8160,31930,29013,33653,31961,17988,12421,23352,23250,23292,31752,23253,32029,16837,32144,32166,24114,32182,13896,31182,32201,31734,32238,26180,32265,27263,32294,32311,16870,32319,17167,16842,11071,32347,32397,32415,32443,32456,21174,32468,32493,32499,32506,32531,32225,32546,32564,32577,12042,32634,32747,32760,32766,32778,11501,32790,19469,9252,31184,31186,9731,32816,999,32884,32892,9272,32914,32926,32934,32939,32940,32962,5517,1083,34683,33053,8392,10572,11960,24509,30299,1300,30527,34676,1302,30535,26450,26482,26483,26489,26495,32977,8703,1418,26414,1419,28763,2115,7606,1441,13412,26273,28880,28909,1442,28458,28479,28493,1445,32733,1466,1475,29032,26257,1476,28595,28885,1491,1502,28323,1510,5290,26241,1526,29197,28873,4090,1530,9378,26158,3845,8654,1531,1761,26082,1535,26699,29865,1555,2245,8605,28450,28899,28901,1558,5993,28354,29834,1607,1667,23535,1670,1790,26644,7585,20304,28327,28400,26421,1678,2221,10973,1689,28865,8550,22378,8540,1691,26032,29417,1692,26591,29304,1694,28069,31474,31486,31507,31524,1802,28906,1813,29853,1814,8604,1841,27959,1857,28466,1918,32834,32863,32890,30286,31680,31400,1979,31833,33277,13387,1980,21374,2001,2035,5666,5564,2049,17110,5287,2362,32818,25810,2050,2065,25762,29012,29031,2066,25802,34043,28092,29161,2094,34032,28872,2097,34161,33479,2106,2140,2142,36878,36879,2186,28117,2219,29019,6372,2238,7995,9107,12097,13676,17199,26746,33929,18012,20093,34468,20362,21610,23755,23769,24602,19617], +"@alifd/next", +"@angular-devkit/core", +[3,4,16], +"schematics", +[2,5,6], +[3,4,8], +"/animations", +[2,8,9], +[3,10,9], +"cdk", +[2,11,12], +[3,13,10], +"ommon", +[2,14,15], +[3,16,12], +"piler", +[2,17,18], +"-cli", +[2,19,20], +[3,16,11], +"re", +[2,22,23], +"forms", +[2,11,25], +"http", +[2,11,27], +"material", +[2,11,29], +"platform-browser", +[2,11,31], +"-dynamic", +[2,32,33], +[3,32,18], +"server", +[2,35,36], +"router", +[2,11,38], +"@ant-design/react-native", +[3,40,12], +"web3-common", +[2,41,42], +[3,43,17], +"icons", +[2,44,45], +"@auth/sveltekit", +"@babel/cli", +[3,48,8], +"ode-frame", +[2,49,50], +[3,51,9], +[2,52,23], +[3,48,7], +"helper-plugin-utils", +[2,54,55], +"parser", +[2,54,57], +[3,58,8], +"lugin-proposal-class-properties", +[2,59,60], +"@11ty/eleventy", +"@adobe/css-tools", +"@api-components/api-method-documentation", +"@apollo/client", +"@asyncapi/generator-react-sdk", +"eslint-parser", +[2,54,67], +[3,61,23], +"decorators", +[2,69,70], +"export-default-from", +[2,69,72], +[3,73,30], +"namespace-from", +[2,74,75], +"object-rest-spread", +[2,69,77], +[3,61,14], +"syntax-dynamic-import", +[2,79,80], +"transform-runtime", +[2,79,82], +"olyfill", +[2,59,84], +"reset-env", +[2,59,86], +[3,87,14], +"react", +[2,88,89], +"typescript", +[2,88,91], +"register", +[2,54,93], +[3,94,8], +"untime", +[2,95,96], +"-corejs2", +[2,97,98], +"traverse", +[2,54,100], +[3,101,8], +"ypes", +[2,102,103], +"@biz-dev-ops/md-docs", +"@bwcr_/winston-loki", +"@changesets/cli", +"@cha", +"tscope/chat-ui-kit-react", +[2,108,109], +"@ckeditor/ckeditor5-adapter-ckfinder", +[3,111,21], +"ngular", +[2,112,113], +"utoformat", +[2,112,115], +[3,111,20], +"basic-styles", +[2,117,118], +[3,119,21], +"lock-quote", +[2,120,121], +"uild-balloon", +[2,120,123], +"-block", +[2,124,125], +[3,124,26], +"classic", +[2,127,128], +"deco", +"upled-document", +[2,130,131], +[2,127,132], +"inline", +[2,127,134], +"ckbox", +[2,117,136], +[3,137,22], +"finder", +[2,138,139], +[3,137,21], +"lipboard", +[2,141,142], +[3,143,22], +"oud-services", +[2,144,145], +"ore", +[2,141,147], +"easy-image", +[2,117,149], +[3,150,21], +"ngine", +[2,151,152], +"ssentials", +[2,151,154], +"heading", +[2,117,156], +"image", +[2,117,158], +[3,159,21], +"ndent", +[2,160,161], +"link", +[2,117,163], +[3,164,22], +"st", +[2,165,166], +"media-embed", +[2,117,168], +"paragraph", +[2,117,170], +[3,171,22], +"ste-from-office", +[2,172,173], +[2,117,89], +"table", +[2,117,176], +[3,177,21], +"yping", +[2,178,179], +"ui", +[2,117,181], +[3,182,21], +"pload", +[2,183,184], +"tils", +[2,183,186], +"vue", +[2,117,188], +"widget", +[2,117,190], +"@commitlint/cli", +"@com", +"podoc/compodoc", +[2,193,194], +"unica/core", +[2,193,196], +"@contenthook/browser", +[3,198,13], +"cli", +[2,199,200], +"node", +[2,199,202], +"@coreui/coreui", +"@csstools/css-parser-algorithms", +[3,205,14], +"tokenizer", +[2,206,207], +[3,205,10], +"media-", +"query-list-parser", +[2,210,211], +[2,209,212], +"postcss-is-pseudo-class", +[2,209,214], +[3,215,18], +"progressive-custom-properties", +[2,216,217], +"selector-specificity", +[2,209,219], +"@cucumber/cucumber", +"@deven-org/documentation-skeleton", +"@dev", +"tea2026/aspernatur-ea-non-porro", +[2,223,224], +[3,225,12], +"consectetur-ab-unde-quisquam", +[2,226,227], +[3,228,13], +"upiditate-dolorem-excepturi-impedit", +[2,229,230], +"distinctio-soluta-illo-eaque", +[2,226,232], +"eum-ullam-est-distinctio", +[2,226,234], +[3,235,13], +"xplicabo-alias-architecto-sed", +[2,236,237], +"improved-journey", +[2,226,239], +[3,240,13], +"nventore-facilis-corporis-cum", +[2,241,242], +"psa-omnis-in-molestiae", +[2,241,244], +"literate-computing-machine", +[2,226,246], +"maxime-sequi-est-rem", +[2,226,248], +"necessitatibus-dolorem-esse-atque", +[2,226,250], +"odit-enim-reiciendis-pariatur", +[2,226,252], +[3,253,17], +"maxime-", +"porro-asperiores", +[2,255,256], +[2,254,257], +"possimus-ipsa-sint-consequuntur", +[2,226,259], +"qui-quos-laborum-amet", +[2,226,261], +[3,262,15], +"a-ducimus-placeat-minima", +[2,263,264], +"dem-voluptate-repudiandae-necessitatibus", +[2,263,266], +"rerum-quaerat-porro-animi", +[2,226,268], +"ubiquitous-octo-memory", +[2,226,270], +"@diotoborg/adipisci-placeat-iure", +[3,272,12], +"met-architecto-est", +[2,273,274], +"t-totam-perspiciatis", +[2,273,276], +[3,272,11], +"commodi-voluptatum-libero", +[2,278,279], +"delectus-necessitatibus-voluptatum", +[2,278,281], +[3,282,13], +"serunt-illo-tempora", +[2,283,284], +[3,282,12], +"icta-recusandae-veniam", +[2,286,287], +"olor-earum-quia", +[2,286,289], +[3,290,17], +"tempora-fuga", +[2,291,292], +[3,290,16], +"es-praesentium-assumenda", +[2,294,295], +"eligendi-est-unde", +[2,278,297], +[3,298,12], +"sse-accusantium-ratione", +[2,299,300], +"illo-amet-architecto", +[2,278,302], +"laudantium-itaque-esse", +[2,278,304], +[3,305,12], +"ibero-asperiores-at", +[2,306,307], +"neque-inventore-corporis", +[2,278,309], +[3,310,12], +"ostrum-eveniet-officiis", +[2,311,312], +"odio-dolores-officia", +[2,278,314], +"porro-", +"modi-accusamus", +[2,316,317], +[2,278,318], +[3,319,12], +"sychic-bassoon", +[2,320,321], +"quasi-repellat-odit", +[2,278,323], +[3,324,13], +"i-ullam-ipsum", +[2,325,326], +"o-dolorem-ducimus", +[2,325,328], +"ratione-error-odio", +[2,278,330], +[3,331,12], +"epellat-blanditiis-quis", +[2,332,333], +[3,292,8], +"voluptas-distinctio", +[2,335,336], +[2,278,337], +"ullam-dignissimos-repudiandae", +[2,278,339], +"velit-reiciendis-velit", +[2,278,341], +[3,342,13], +"rbose-robot", +[2,343,344], +"@diplodoc/transform", +"@discordjs/rest", +"@dis", +"qada/workspace", +[2,348,349], +"@doc-tools/docs", +[3,351,11], +[3,82,9], +[2,352,353], +"@dramaorg/esse-praesentium-eligendi", +[3,355,10], +"quae-dolore-nostrum", +[2,356,357], +"@eas-framework/server", +"@eightshift/frontend-libs", +"@electron/docs-parser", +"@emotion/babel-plugin", +[3,362,9], +"core", +[2,363,364], +[3,365,10], +"ss", +[2,366,367], +"styled", +[2,363,369], +"@erboladaiorg/ad-exercitationem-ducimus", +[3,371,15], +"speriores-earum-quaerat", +[2,372,373], +[3,374,25], +"fuga-sint", +[2,375,376], +"nam-adipisci", +[2,375,378], +"utem-dolores-ipsam", +[2,372,380], +[3,371,14], +"cupiditate-consectetur-porro", +[2,382,383], +[3,384,25], +"pariatur-optio", +[2,385,386], +[3,232,11], +"quis", +[2,335,389], +[2,388,390], +[2,382,391], +"error-atque-ea", +[2,382,393], +[3,394,15], +"sse-", +"ipsa-numquam", +[2,396,397], +[2,395,398], +"x-hic-molestias", +[2,395,400], +[3,401,16], +"plicabo-eius-adipisci", +[2,402,403], +"molestiae-voluptatibus-perferendis", +[2,382,405], +[3,406,22], +"s-nulla-dolor", +[2,407,408], +"nisi-culpa-cum", +[2,382,410], +"officia-illum-aperiam", +[2,382,412], +"perspiciatis-magni-ut", +[2,382,414], +"quae-", +"in-veniam", +[2,416,417], +[2,382,418], +[3,419,18], +"rat-mollitia-adipisci", +[2,420,421], +[3,419,16], +"ibusdam-itaque-tempora", +[2,423,424], +"sint-deleniti-dolorem", +[2,382,426], +[3,427,16], +"t-nesciunt-amet", +[2,428,429], +"tenetur-architecto-dolore", +[2,382,431], +"ut-dignissimos-laborum", +[2,382,433], +"velit-", +"fugit-harum", +[2,435,436], +[2,382,437], +"@eslint-community/eslint-utils", +"@eslint", +"/js", +[2,440,441], +"@fakeyanss/redoc", +"@floating-ui/react-dom", +"@fontsource/inter", +[3,445,12], +"roboto", +[2,446,447], +"@fortawesome/fontawesome-svg-core", +[3,449,14], +"ree-solid-svg-icons", +[2,450,451], +[3,449,13], +"-fontawesome", +[2,89,454], +[2,453,455], +"@grandlinex/core", +[3,457,12], +"e-kernel", +[2,458,459], +"kernel", +[2,458,461], +"@gra", +"phql-markdown/core", +[2,463,464], +[3,465,18], +"docusaurus", +[2,466,467], +"@hajtech/webpack-config", +"@hapi/hapi", +"@hishprorg/aliquid-ad-vero", +[3,471,12], +"utem-", +"sint-", +"@adonisjs/core", +"sint-quas", +[2,473,476], +[2,472,477], +[3,471,11], +"cum-rem-consequuntur", +[2,479,480], +"earum-sint-veritatis", +[2,479,482], +[3,483,12], +"ius-vero-dicta", +[2,484,485], +"st-dicta-quis", +[2,484,487], +"incidunt-quibusdam-tempore", +[2,479,489], +[3,490,12], +"taque-esse-accusamus", +[2,491,492], +"ure-optio-nihil", +[2,491,494], +"magni-amet-id", +[2,479,496], +[3,497,17], +"nisi-", +"aperiam", +[2,499,500], +[2,498,501], +[3,497,13], +"xime-voluptates-enim", +[2,503,504], +"nihil-ad-ratione", +[2,479,506], +[3,414,13], +[3,330,8], +"unde", +[2,509,510], +[2,508,511], +[2,479,512], +"-perferendis-culpa", +[2,389,514], +[2,479,515], +"reprehenderit-excepturi-sed", +[2,479,517], +"nam-", +"conse", +"quuntur", +[2,520,521], +[2,519,522], +[2,474,523], +[2,479,524], +[3,525,12], +"unt-officia-eligendi", +[2,526,527], +[3,528,16], +"volupta", +"tem-nobis", +[2,530,531], +[2,529,532], +"-vitae-reprehenderit", +[2,510,534], +[2,479,535], +"wafflejs", +[2,479,537], +"@homer0/prettier-plugin-jsdoc", +"@hookform/resolvers", +"@iamtraction/google-translate", +"@idux/cdk", +"@idux/c", +"omponents", +[2,543,544], +"@inquirer/core", +"@ionic/core", +"@isaacs/cliui", +"@istanbuljs/nyc-config-typescript", +"@itwin/itwinui-react", +"@jest/core", +"@jest/", +"types", +[2,552,553], +"@jsonforms/core", +[3,555,11], +"-renderers", +[2,29,557], +[2,556,558], +[2,556,89], +"@juigorg/nisi-molestiae-ut", +[3,561,9], +"sit-nam-neque", +[2,562,563], +"@jupyterlab/application", +"@kobedevi/sassdoc", +"@kollorg/dicta-itaque-nemo", +[3,567,9], +"nihil-", +"veniam-deserunt", +[2,569,570], +[2,568,571], +"@libphamton/chatfanpage", +[3,573,12], +"fb-group", +[2,574,575], +"@listr2/prompt-adapter-inquirer", +"@mantine/core", +[3,578,9], +"dates", +[2,579,580], +"hooks", +[2,579,582], +"modals", +[2,579,584], +"notifications", +[2,579,586], +"prism", +[2,579,588], +"style", +"s", +"styles", +[2,579,592], +"utils", +[2,579,594], +"@material-ui/core", +[3,596,13], +[2,597,45], +"@mat", +"hematikoi/jsonapi", +[2,599,600], +"@mdx-js/react", +"@microsoft/api-extractor", +[3,603,11], +"tsdoc", +[2,604,605], +"-config", +[2,606,607], +"@middy/core", +"@middy/", +"-json-body-parser", +[2,27,611], +[2,610,612], +"util", +[2,610,614], +"@ministryofjustice/frontend", +"@mswjs/interceptors", +"@mui/icons-material", +"@mui/", +"lab", +"@mui/lab", +[2,619,29], +"system", +[2,619,623], +"x-date-pickers", +[2,619,625], +"@neato/guider", +"@ng-doc/core", +[3,628,8], +"ui-kit", +[2,629,630], +[3,631,9], +[2,632,186], +"@nomicfoundation/hardhat-chai-matchers", +"@npmcli/arborist", +[3,635,8], +"map-workspaces", +[2,636,637], +"@augment-vir/common", +"node-gyp", +[2,636,640], +"run-script", +[2,636,642], +"@npmc", +"orp/marky-markdown", +[2,644,645], +"@npm", +"tuanmap/ex-vel-expedita-impedit", +[2,647,648], +[3,649,12], +"psychic-guide", +[2,650,651], +"recusandae-recusandae-nam-et", +[2,650,653], +"sed-quo-nemo-rerum", +[2,650,655], +"esse-velit-magnam", +[2,435,657], +[2,650,658], +"@nrwl/devkit", +"@nrwl/", +[2,3388,3399], +"@nrwl/tao", +"workspace", +[2,661,664], +"@nx/devkit", +"@nx/", +"esbuild", +[2,667,668], +"@nx/es", +"lint", +[2,670,671], +"@nx/e", +"xpress", +[2,673,674], +"js", +"@nx/js", +"nest", +"@nx/nest", +"nextra", +"ode", +"@nx/node", +[2,667,664], +"@oclif/command", +[3,684,9], +"nfig", +[2,685,686], +[2,685,23], +"@oclif/", +"plugin-help", +[2,689,690], +"@octokit/rest", +"@opentiny/vue", +"-render", +"less", +[2,694,695], +[2,693,696], +[3,697,14], +"theme", +[2,698,699], +"-mobile", +[2,700,701], +"@otterhttp/cookie", +[3,703,11], +"request", +[2,704,705], +[3,706,13], +"sponse", +[2,707,708], +"send", +[2,704,710], +"@pact-foundation/pact", +"@patrtorg/a-ad-expedita", +[3,713,12], +"ut-amet", +[2,714,715], +[3,713,11], +[3,373,10], +"vel-accusantium", +[2,718,719], +[2,717,720], +[3,721,15], +"natur-dolorum-ducimus", +[2,722,723], +"et-hic", +[2,473,725], +[2,717,726], +[3,713,10], +[3,227,12], +"culpa-non", +[2,729,730], +[2,728,731], +[3,732,22], +"repudiandae-consequuntur", +[2,733,734], +[3,732,15], +"quatur-voluptatum-officiis", +[2,736,737], +"ducimus-magni-quibusdam", +[2,728,739], +"enim-magni-hic", +[2,728,741], +[3,742,11], +"st-corrupti-deleniti", +[2,743,744], +"veni", +"et-tempore-maiores", +[2,746,747], +[2,743,748], +"illum-sapiente-quos", +[2,728,750], +"laborum-doloribus-voluptate", +[2,728,752], +[3,753,11], +"ibero-", +"doloribus-omnis", +[2,755,756], +[2,754,757], +[3,758,17], +[3,336,9], +"sequi", +[2,760,761], +[2,759,762], +"magn", +"am-aut-adipisci", +[2,764,765], +[2,728,766], +[3,767,12], +"iores-quidem-quo", +[2,768,769], +[3,767,11], +"olestias-molestias-ut", +[2,771,772], +"eius-unde", +[2,519,774], +[2,728,775], +[3,386,9], +"dele", +"niti-quaerat", +[2,778,779], +[2,777,780], +[2,728,781], +[3,782,11], +"orro-labore-eos", +[2,783,784], +"earum-", +"eius", +[2,786,787], +[2,416,788], +[2,728,789], +[3,790,12], +"os-quasi-ipsa", +[2,791,792], +"sapiente-eos-magnam", +[2,728,794], +[3,795,20], +"xercitationem-sit", +[2,796,797], +[3,431,9], +"nimi-reprehenderit", +[2,799,800], +[2,728,801], +"@perseid/store", +"@phosphor/widgets", +"@phun-ky/speccer", +"@polymer/polymer", +"@qooxdoo/framework", +"@quasar/extras", +"@readyplayerme/visage", +"@reduxjs/toolkit", +"@rollup/plugin-commonjs", +[3,811,15], +"node-", +"resolve", +[2,813,814], +[2,812,815], +"@sanity/tsdoc", +"@scalar/api-reference", +[3,818,8], +"fastify-api-reference", +[2,819,820], +"@serenity-js/protractor", +[3,822,13], +"webdriverio", +[2,823,824], +"@sinonjs/fake-timers", +"@storybook/addon-docs", +"@subwallet/react-ui", +"@supernovaio/sdk", +"-exporters", +[2,829,830], +[3,829,14], +"upernova-sdk", +[2,832,833], +"@sveltejs/eslint-config", +[3,835,10], +"kit", +[2,836,837], +"vite-plugin-svelte", +[2,836,839], +"@svgr/webpack", +"@swc/core", +"@swenkerorg/maiores-voluptatibus-nemo", +[3,843,13], +"odi-dolorum-provident", +[2,844,845], +[3,843,12], +"nulla-voluptates-voluptates", +[2,847,848], +"@swisspost/design-system-styles", +"@symbiotejs/symbiote", +"@synion/md-docs", +"@taktikorg/aut-distinctio-repellat", +[3,853,11], +"quo-quos", +[2,729,855], +[2,854,856], +[3,857,13], +"rporis-nihil-odit", +[2,858,859], +[3,780,11], +"i-dolorem", +[2,861,862], +[2,854,863], +[3,864,12], +"olor-", +"quibusdam", +[2,509,867], +[2,866,868], +[2,865,869], +"harum-reprehenderit-perferendis", +[2,854,871], +"illum-", +"accusamus-possimus", +[2,873,874], +[2,854,875], +[3,876,12], +"psa-", +"totam-aperiam", +[2,878,879], +[2,877,880], +"ste-", +"ex-tempore", +[2,882,883], +[2,877,884], +"taque-", +"nam-e", +"os", +"nam-eos", +[2,886,889], +[2,877,890], +[3,891,18], +"tempor", +"e-exercitationem", +[2,893,894], +[2,892,895], +"maiores-dolores-aut", +[2,854,897], +[3,898,12], +[3,772,9], +"fuga-", +[3,259,8], +[2,901,902], +[2,900,903], +[2,899,904], +"@bugsnag/react-native", +"@enact/sandstone", +"sse-animi", +[2,887,908], +[2,854,909], +[3,910,12], +"ecessitatibus-repudiandae-officia", +[2,911,912], +"isi-reprehenderit-amet", +[2,911,914], +"placeat-voluptates-dolorum", +[2,854,916], +[3,917,12], +"raesentium-dolorum-quis", +[2,918,919], +[3,920,23], +"neque-i", +"psam", +[2,922,923], +[2,921,924], +"quo-", +"reiciendis-quibusdam", +[2,926,927], +[2,854,928], +[3,653,12], +"atione-veniam", +[2,930,931], +[2,854,932], +"similique-natus-officia", +[2,854,934], +[3,935,12], +"uscipit-modi-ratione", +[2,936,937], +[3,895,8], +"@antora/logger", +"in", +"veniam-in", +[2,939,942], +[2,854,943], +"unde-", +"animi-omnis", +[2,945,946], +[2,854,947], +"nobis-blanditiis", +[2,435,949], +[2,854,950], +[3,951,12], +"oluptatem-pariatur-tenetur", +[2,952,953], +"@tanem/svg-injector", +"@tan", +"stack/react-query", +[2,956,957], +[3,958,10], +"svelte-query", +[2,959,960], +"@teamhanko/hanko-frontend-sdk", +"@testing-library/cypress", +[3,963,17], +"dom", +[2,964,965], +"jest-dom", +[2,964,967], +[3,968,22], +"native", +[2,969,970], +[2,964,89], +"user-event", +[2,964,973], +"@tinyhttp/app", +[3,975,10], +"cookie", +[2,976,977], +"-signature", +[2,978,979], +[3,978,12], +"rs", +[2,981,982], +"etag", +[2,976,984], +"forwarded", +[2,976,986], +"proxy-addr", +[2,976,988], +"req", +[2,976,990], +[3,991,12], +[2,992,591], +[3,991,11], +"outer", +[2,994,995], +[2,976,710], +"type", +[2,29611,30768], +"type-is", +[2,976,1000], +"url", +[2,976,1002], +"@tsparticles/engine", +"@twurple/ebs-helper", +"@types/estree", +"@types", +"cript-eslint/eslint-plugin", +[2,1007,1008], +[3,1009,19], +[2,1010,57], +[2,1010,594], +"@ucloud-fe/react-components", +"@udecode/plate-core", +"@uiw/react-button", +[3,1015,11], +"icon", +[2,1016,1017], +[3,1018,12], +"nput", +[2,1019,1020], +"overlay-trigger", +[2,1016,1022], +"@uiw/", +"@uiw/utils", +"@unleash/proxy", +"@uploadcare/file-uploader", +"@vitejs/plugin-legacy", +[3,1028,15], +[2,1029,89], +"@vue/eslint-config-typescript", +"@wesleytodd/openapi", +"@wuxh/dumi", +"@zitterorg/adipisci-quae-eius", +[3,1034,12], +"sper", +"natur-", +[3,386,10], +"ccaecati", +[2,1038,1039], +[2,1037,1040], +[2,1036,1041], +[2,1035,1042], +"t-esse-odit", +[2,1035,1044], +[3,1034,11], +"cum-", +"ipsum-beatae", +[2,1047,1048], +[2,1046,1049], +"dolor", +"emque-ut-omnis", +[2,1051,1052], +[2,1046,1053], +"est-sunt-quos", +[2,1046,1055], +[3,1056,12], +"um-veritatis-placeat", +[2,1057,1058], +"fluffy-waddle", +[2,1046,1060], +"glowing-barnacle", +[2,1046,1062], +"perferendis-consectetur", +[2,873,1064], +[2,1046,1065], +[3,1066,12], +"taque-n", +"isi-", +"veritatis", +[2,1069,1070], +[2,1068,1071], +[2,1067,1072], +"probable-octo", +[2,1046,1074], +"upgraded-fishstick", +[2,1046,1076], +"@zkportal/aleo-oracle-sdk", +"abort-controller", +"accepts", +"acl", +"acorn", +"arethetypeswrong", +"acorn-walk", +"action-cli", +"adm-zip", +"after", +"agenda", +"aid-guard1", +"airtap", +"ajv", +"ajv-formats", +"although-line-wall-corn", +"amqp", +"lib", +"amqplib", +"analsorhost-simple-bs", +"angular", +"-animate", +[2,1098,1099], +"angular-", +[2,1101,200], +[2,1101,29], +"ansi-colors", +"ansi-", +"escapes", +[2,1105,1106], +"regex", +"ansi-regex", +[2,1105,592], +"ansi", +"ansis", +"ant-design-vue", +"antd", +"antfu", +"anyway-south-boy-pilot", +"api-console", +"apidoc", +"-markdown", +[2,1118,1119], +"apn", +"apollo-cache-inmemory", +"apollo-c", +"lient", +[2,1123,1124], +"apollo-", +[2,1126,163], +"-http", +[2,1127,1128], +"app-root-path", +"appium-android-driver", +"apple-transportation-web3-locate", +"appl", +"icationinsights", +[2,1133,1134], +"appsync-client-node", +"archiver", +"arg", +"argparse", +"arrangement-tell-arrange", +"arra", +"y.prototype.flatmap", +[2,1141,1142], +"arrify", +"assert", +"-plus", +"assert-plus", +"assume", +"async", +"-listen", +[2,1149,1150], +"async-", +"retry", +"async-retry", +"validator", +[2,1152,1155], +"atob", +"aud", +"auto-changelog", +"auto-", +"install", +[2,1160,1161], +"auto", +"prefixer", +[2,1163,1164], +"ava", +"awesome-typescript-loader", +"aws-sdk", +"axe-core", +"axios", +"azure-storage", +"babel", +"babel-cli", +"babel-c", +"babel-core", +"babel-", +"eslint", +[2,1176,1177], +"generator", +[2,1176,1179], +[3,55,7], +"fixtures", +[2,1181,1182], +[2,1176,1183], +[3,1184,13], +"plugin-", +"test-runner", +[2,1186,1187], +[2,1185,1188], +"vue-jsx-merge-props", +[2,1185,1190], +"jest", +"babel-jest", +"loader", +[2,1176,1194], +"add-module-exports", +[2,1186,1196], +[2,1176,1197], +[3,1198,13], +"dynamic-import-node", +[2,1199,1200], +"external-helpers", +[2,1199,1202], +"import", +[2,1199,1204], +[3,1205,14], +"stanbul", +[2,1206,1207], +"lodash", +[2,1199,1209], +"module-resolver", +[2,1199,1211], +"name", +"d-asset-import", +[2,1213,1214], +[2,1199,1215], +[2,1199,80], +[3,1217,20], +"jsx", +[2,1218,1219], +[3,82,10], +"to-generator", +[2,1152,1222], +[2,1221,1223], +[2,1199,1224], +[3,1225,23], +"class", +"-properties", +[2,1227,1228], +[2,1226,1229], +"-legacy", +[2,70,1231], +[2,1226,1232], +"es2015-block-scoping", +[2,1226,1234], +[3,1235,30], +"module", +"s-commonjs", +[2,1237,1238], +[2,1236,1239], +"temp", +"late-literals", +[2,1241,1242], +[2,1236,1243], +[2,1226,77], +"react-", +"react-jsx", +[2,1226,1247], +[3,1248,29], +"remove-prop-types", +[2,1249,1250], +[3,1248,25], +[2,1252,1179], +[3,1248,24], +[2,1254,96], +"babel-p", +[2,1256,84], +"reset-", +"airbnb", +[2,1258,1259], +[2,1256,1260], +[3,1261,13], +"env", +[2,1262,1263], +[3,1264,14], +"s2015", +[2,1265,1266], +[2,1262,89], +"-app", +[2,1268,1269], +"stage-0", +[2,1262,1271], +[3,1272,19], +"1", +[2,1273,1274], +"2", +[2,1273,1276], +"3", +[2,1273,1278], +[2,1176,93], +"babel-r", +[2,1281,96], +"template", +[2,1176,1283], +"babel-t", +"raverse", +[2,1285,1286], +[2,1285,103], +"ify", +"babelify", +"babylon", +"backbone", +"baqend", +"bark-needs-visit4", +"base-64", +"base-", +"individual-comfortable-crop", +[2,1296,1297], +"base", +"@expressots/core", +"base64-js", +[2,30536,26449,2026], +"auth", +"basic-auth", +"batuta", +"bcrypt", +"-nodejs", +[2,1306,1307], +"bcryptjs", +"bearcat", +"beautify-benchmark", +"beaut", +"y-foot-compass5", +[2,1312,1313], +"beefy", +"believed-usually-greater-passage", +"benchmark", +"best-lips-shoulder", +"best-", +"valley2", +[2,1319,1320], +"between-cry-additional", +"beyond", +"bfj", +"bignumber.js", +"bindings", +"bip39", +"bizcharts", +"bl", +"blanket", +"blessed", +"-con", +"trib", +"-contrib", +[2,1331,1334], +"blockchain-am5", +[3,1336,11], +"baby", +[2,1337,1338], +[3,1339,13], +"ck1", +[2,1340,1341], +"closely", +[2,1337,1343], +"directly", +[2,1337,1345], +"egg", +[2,1337,1347], +"happily", +[2,1337,1349], +"language", +[2,1337,1351], +"own8", +[2,1337,1353], +"record", +[2,1337,1355], +"scientist", +[2,1337,1357], +"block", +"ed", +"blocked", +"bluebird", +"bn.js", +"body-parser", +"bookshelf", +"boom", +"bootstrap", +"-sass", +[2,1367,1368], +"bower", +"boxen", +"brain", +"branch-body-web3-feel", +"branch-", +"camera-web3-organization", +[2,1374,1375], +"brfs", +"broccoli-funnel", +[3,1378,9], +"merge-trees", +[2,1379,1380], +"test-", +"helper", +"test-helper", +[2,1379,1384], +"brought-tried-whether8", +"browser-sync", +"browser", +"browserify", +"-shim", +[2,1389,1390], +"slist", +[2,1388,1392], +"bs58", +"bson", +"btoa", +"buble", +"buffer", +"-equal", +[2,1398,1399], +"bufferutil", +"built-who-entire", +"built", +"in-modules", +[2,1403,1404], +"bulma", +"bump-cli", +"bundle-collapser", +"bunyan", +"busboy", +"bytebuffer", +"byte", +"bytes", +"c8", +"cac", +"cache-manager", +"call-bind", +[2,32731,158], +[2,30999,28513], +"camelcase", +"caniuse", +"-lite", +[2,1421,1422], +"canvas", +"careful-faster-dirty-matter", +"case-sensitive-paths-webpack-plugin", +"casperjs", +"caught-brain-service0", +"chai", +"-as-promised", +[2,1429,1430], +"chai-", +"passport-strategy", +[2,1432,1433], +"subset", +"chai-subset", +"chalk", +"chance", +"-able-necessary-bell", +[2,1438,1439], +"@amaui/icons-material-rounded-react", +[2,26909,26910], +"change-case", +"change", +[2,27056,28675], +"changelogen", +"chart.js", +"cheerio", +"chicken-fell-spread", +"child_process", +"child", +"-pro", +"cess-promise", +[2,1452,1453], +[2,1451,1454], +"choerodon-ui", +"chokidar", +"ci-info", +"ckeditor5", +"names", +"classnames", +"clean-css", +"clean-", +"webpack-plugin", +[2,1463,1464], +[2,29755,25720], +"r", +"clear", +"-module", +[2,1468,1469], +"cli-boxes", +"cli-", +"color", +"cli-color", +"@immobiliarelabs/backstage-plugin-gitlab-backend", +[2,819,28594], +"cli-cursor", +"spinner", +"cli-spinner", +[2,1479,591], +"cli-table", +"cli-table2", +"cli-table3", +"cli-t", +"runcate", +[2,1484,1485], +"ux", +"cli-ux", +"clipanion", +"clip", +"@busy-hour/blaze", +"clipboard", +"y", +"clipboardy", +"cliui", +"clone", +"clsx", +"clui", +"co", +"co-prompt", +"code", +[2,1491,3172], +"codecov", +"mirror", +"codemirror", +"coffee-script", +"coffee", +"script", +[2,1507,1508], +"attw", +"colorette", +"colors", +"columnify", +"comm", +"and-exists", +[2,1514,1515], +"command-", +"line-args", +[2,1517,1518], +[3,1519,13], +"usage", +[2,1520,1521], +"command", +"er", +"commander", +"@casl/ability", +"commitizen", +"commit", +"commitlint", +"@types/xast", +"tsdown", +"common-tags", +"component-emitter", +"comp", +[2,15679,26697], +"compression", +"concat-stream", +"conc", +"urrently", +[2,1538,1539], +"config", +"store", +"configstore", +"connect", +"-flash", +[2,1544,1545], +"connect-", +"history-api-fallback", +[2,1547,1548], +"mongo", +[2,1547,1550], +"redis", +[2,1547,1552], +"cons", +"globrex", +"consola", +"consol", +[3,1014,14], +"consolidate", +"content-disposition", +"content-", +[2,1561,998], +"content", +"hook", +"contenthook", +"conventional-changelog", +[2,1566,20], +[3,1567,24], +"onventionalcommits", +[2,1568,1569], +"conve", +"rt-source-map", +[2,1571,1572], +"-parser", +[2,977,1574], +"cookie-", +"session", +[2,1576,1577], +"cookie-s", +"ignature", +[2,1579,1580], +"copy-to-clipboard", +"copy-", +[2,1583,1464], +"copy", +"files", +"copyfiles", +"corcojs-qrcode", +"-logo", +[2,1588,1589], +"cordova", +"-js", +"core-js", +"cors", +"cosmiconfig", +"coveralls", +"cpy-cli", +"crawler", +"crc", +"create-hash", +"create-", +"react-class", +[2,1601,1602], +"critical", +"cron", +"croner", +"emoji-js", +"cronnor", +"cropperjs", +"cross-env", +"cross-", +"fetch", +"cross-fetch", +"spawn", +"cross-spawn", +"crypto", +"-browserify", +[2,1616,1617], +"crypto-", +"crypto-js", +"cson-parser", +"cspell", +"css", +"css-declaration-sorter", +"css-", +"functions-list", +[2,1625,1626], +"css-loader", +"minimizer-webpack-plugin", +[2,1625,1629], +"select", +"css-select", +"tree", +"css-tree", +"cssdb", +"cssesc", +"cssnano", +"cssstyle", +"csstype", +"csurf", +"csv", +"csv-generate", +"csv-", +"parse", +"csv-parse", +"stringify", +[2,1643,1646], +"csvtojson", +"cucumber", +"cuid", +"cypress", +"cz-conventional-changelog", +"d3", +"d3-array", +"d3-scale", +"d3-s", +"election", +[2,1656,1657], +"hape", +"d3-shape", +"dable-effect", +"daisyui", +"dance-you-thou", +"dargs", +"datafire", +"date", +"mercurius", +"date-fns", +"form", +"unbundle", +"format", +"dateformat", +"dayjs", +"deasync", +"debounce", +"debug", +"decamelize", +"@pinia/testing", +"decompress", +"dedent", +"dedupe", +"deep-assign", +"deep-", +"ist-ability3", +[2,1554,1684], +[2,1683,1685], +"diff", +"deep-diff", +"remeda", +"deep-eql", +"@nuxt/ui", +"input-otp", +"deep-equal", +"@assistant-ui/react", +"xtend", +"deep-extend", +"deep", +"merge", +"deepmerge", +"del", +"del-cli", +"delay", +"depcheck", +"depd", +"dependency-check", +"depth-clay-tax7", +"detect-indent", +"detect-", +"port", +"detect-port", +"did-enter-lay", +"2html", +"diff2html", +"erence-mile-pocket5", +[2,1687,1714], +"direct", +"ed-graph-typed", +[2,1716,1717], +"dirty-chai", +"discord-backend-manager", +"discord", +".js", +"discord.js", +"dist", +"ance-its-clear-rate", +[2,1724,1725], +"dmd", +"dmd-grunt-jsdoc2md", +"dnd-multi-backend", +"dnode", +"doc-detective", +"-core", +[2,1731,1732], +"docco", +"docgen", +"dockerode", +"docpad", +"docschema", +"docs", +"ify-tabs", +[2,1739,1740], +"doctoc", +"docu", +"mentation", +[2,1743,1744], +"document", +"db", +"documentdb", +"-lunr-search", +[2,467,1749], +"dom-helpers", +"dom-", +"serializer", +[2,1752,1753], +"to-image-more", +[2,1752,1755], +"dompurify", +"dot", +"dotenv", +"-exp", +[2,26024,1764,1524], +"-expand", +[2,1759,1762], +"download", +"-git-repo", +[2,1764,1765], +"doxdox", +[2,1767,20], +"doxdox-c", +[2,1769,147], +"doxdox-", +"-dox", +[2,57,1772], +[2,1771,1773], +[3,1774,14], +"jsdoc", +[2,1775,1776], +"renderer-bootstrap", +[2,1771,1778], +[3,1779,16], +"json", +[2,1780,1781], +"markdown", +[2,1780,1783], +"draft-js", +"dropzone", +"dtslint", +"dubnium", +"dumi", +[2,31436,31494], +"dumi-cm", +"duplexer", +"dw-neit-antd", +"each", +"echarts", +"eclint", +"ejs", +"elasticsearch", +"elect", +"ricity-death-web3-story", +[2,1799,1800], +[2,28004,28078], +"on", +"electron", +"-builder", +[2,1804,1805], +[3,1806,9], +"packager", +[2,1807,1808], +[3,1809,10], +"rebuilt", +[2,1810,1811], +[3,32493,21], +[2,28080,31811], +"rebuilder", +[2,1807,1815], +"element-resize-detector", +"element-", +"element-ui", +"eleventy", +"elliptic", +"email-templates", +"email", +"emailjs", +"ember-cli", +"-babel", +[2,1825,1826], +[3,1827,10], +"htmlbars", +[2,1828,1829], +"emmet", +"emotion", +"encodeurl", +"end-of-stream", +"enhanced-resolve", +"enquirer", +"ent", +"enumtype", +"envify", +"envi", +"@lobehub/chat", +"envinfo", +"enzyme", +"-adapter-react-16", +[2,1843,1844], +[3,1845,15], +[2,1846,594], +"enzyme-", +"shallow-equal", +[2,1848,1849], +"error", +"handler", +[2,1851,1852], +"es-check", +"es-value-fixtures", +"es5-ext", +"@upstash/context7-mcp", +"shim", +"es5-shim", +"es6-error", +"es6-", +"promise", +"es6-promise", +[3,1863,10], +[2,1864,1289], +"es6-shim", +"escape", +"-html", +"escape-html", +"escape-", +"string", +"-regexp", +[2,1871,1872], +[2,1870,1873], +"escodegen", +[3,67,7], +"-airbnb", +[2,1541,1877], +[2,1876,1878], +"-base", +[2,1879,1880], +[3,1881,21], +[2,1882,91], +[3,1879,14], +"google", +[2,1884,1885], +[3,1886,15], +"ulp", +[2,1887,1888], +"oclif", +[2,1884,1890], +"-typescript", +[2,1891,1892], +"prettier", +[2,1884,1894], +"app", +"react-app", +[2,1884,1897], +"semistandard", +[2,1884,1899], +[3,1900,15], +"tandard", +[2,1901,1902], +"unjs", +[2,1884,1904], +"xo", +[2,1884,1906], +"-lass", +[2,1907,1908], +"doc-", +[2,1910,1179], +[2,1876,1911], +"-resolver-typescript", +[2,1204,1913], +[2,1876,1914], +[2,1876,1194], +[3,67,8], +[2,32825,32833], +"lugin-ava", +[2,1917,1919], +[3,1920,14], +[2,1921,1172], +"compat", +[2,1921,1923], +"es5", +[2,1921,1925], +[3,1926,16], +"-comments", +[2,671,1928], +[2,1927,1929], +[3,1930,21], +"plugin", +[2,1931,1932], +"flowtype", +[2,1921,1934], +"html", +[2,1921,1936], +[2,1921,1204], +[2,1921,1192], +[3,1939,15], +"sdoc", +[2,1940,1941], +[3,1942,16], +"onc", +[2,1943,1944], +"x-a11y", +[2,1943,1946], +[2,1921,1783], +[3,1948,15], +"ocha", +[2,1949,1950], +"n", +[2,1921,1952], +[2,1953,681], +[2,1921,1894], +[3,1955,16], +"omise", +[2,1956,1957], +[2,1921,89], +"-hooks", +[2,1959,1960], +[3,1959,16], +"gexp", +[2,1962,1963], +"security", +[2,1921,1965], +[3,1966,15], +"onarjs", +[2,1967,1968], +[2,1967,1902], +"velte", +[2,1967,1971], +"test", +"ing-library", +[2,1973,1974], +[2,1921,1975], +[3,1976,15], +[2,1977,1941], +[2,26374,26377], +[2,30307,5592], +"unicorn", +[2,1921,1981], +"vite", +"vitest", +[2,1921,1984], +[3,1985,15], +"ue", +[2,1986,1987], +"remo", +"te-tester", +[2,1989,1990], +[2,1876,1991], +"scope", +[2,1876,1993], +"visitor-keys", +[2,1876,1995], +"rc", +"eslintrc", +"esm", +"espree", +"@architect/asap", +"ima", +"esprima", +"estraverse", +"estr", +"ee-walker", +[2,2005,2006], +"ethereumjs-tx", +[3,2008,11], +[2,2009,614], +"evalmd", +"event-stream", +"event", +"emitter2", +[2,2013,2014], +[3,2015,12], +[2,2016,1278], +"events", +"excellent-difficult-good", +"execa", +"exit", +"expect", +"-type", +"expect-type", +"expect.js", +"express", +"-adexe", +[2,2026,2027], +[3,2028,9], +"utodoc", +[2,2029,2030], +"express-", +[2,2032,1179], +"handle", +"canvaskit-wasm", +"handlebars", +[2,2032,2036], +"jwt", +"express-jwt", +[2,2032,1577], +"tools", +[2,2032,2041], +[3,2042,9], +"yped-rpc", +[2,2043,2044], +[2,2032,1155], +"zod-api", +[2,2032,2047], +"@crxjs/vite-plugin", +[2,32904,37123], +"extend", +"-shallow", +[2,2051,2052], +"extract-text-webpack-plugin", +"extract-", +"zip", +"extract-zip", +"facing-cook", +"fair-tower-web3-store", +"faker", +"fancy-log", +"fast", +"-check", +"fast-check", +[2,32904,13392], +"@antora/cli", +"fast-csv", +"fast-", +[2,2068,1693], +"glob", +"fast-glob", +"plist", +"fast-plist", +"xml-parser", +[2,2068,2074], +"click", +"fastclick", +"fastify", +"father", +"faucet", +"fbjs", +"fe-pilot", +"feature-rising-small7", +"femo", +"-mock", +"fetch-mock", +"fibers", +"figlet", +"figures", +"file", +"-loader", +"file-loader", +"file-", +[2,29611,7436,26391], +"file-saver", +"file-type", +"planck", +"filesize", +"finalhandler", +"find", +"-cache-dir", +[2,2100,2101], +"find-", +"up", +"find-up", +"syncpack", +"findup-sync", +"firan-logging", +"firebase", +"-admin", +[2,2109,2110], +[3,2111,9], +[2,2112,2041], +"fixpack", +[2,2120,1145], +"fixturify", +"flat", +"pak-bundler", +[2,2117,2118], +[3,639,13], +[2,2125,23], +"flatpickr", +"flightplan", +"flow", +[3,639,15], +"flow-bin", +"@date-vir/duration", +"flowbite", +"fluent-ffmpeg", +"flux", +"follow-redirects", +"font-awesome", +"for-each", +"forever", +"fork-ts-checker-webpack-plugin", +"-alt", +[2,2135,2136], +"-data", +"form-data", +"nolyfill", +"formidable", +[2,13402,31197], +"k", +"formik", +"fresh", +"-dangerous", +[2,2145,2146], +"friendly-errors-webpack-plugin", +"front-matter", +"fs", +"fs-extra", +"fs-jetpack", +"fs-promise", +"fsevents", +"fstream", +"ftp", +[3,1626,10], +"have-names", +[2,2157,2158], +"fur-race-web3-pale", +"fuse.js", +"futen", +"fuzzy", +"gaze", +"gc-signals", +"-angular", +[2,1179,2166], +[3,2167,10], +"gulp-angular", +[2,2168,2169], +"nitro", +[2,2168,2171], +"gener", +"ic-pool", +[2,2173,2174], +"gensequence", +"gentle-party-other", +"geolib", +"get-package-type", +[2,2181,668], +[3,15376,16], +"get-port", +"get-", +"stdin", +"get-stdin", +"@c15t/backend", +"ream", +"get-stream", +"execute-in-browser", +"tsconfig", +[2,2183,2190], +"getmac", +"gh-pages", +"ghooks", +"github", +"-buttons", +[2,2195,2196], +[2,11941,2201], +"-parent", +"glob-parent", +"smart-text-reporter", +"global", +"globals", +"by", +"globby", +"gm", +"gmll", +"-spreadsheet", +[2,1885,2208], +"apis", +"googleapis", +"got", +"government-letter-web3-till", +"govuk-frontend", +"graceful-fs", +"gradually-current-chief", +"graph-these", +"graph", +[2,25849,25854], +"graphql", +"leaflet-gesture-handling", +"graphql-tag", +[3,2222,9], +"ools", +[2,2223,2224], +"gray-matter", +"grpc", +"grunt", +"-templates", +[2,2166,2229], +[2,2228,2230], +"grunt-a", +"uto-release", +[2,2232,2233], +"grunt-", +[2,2235,1389], +"grunt-b", +"animejs", +"grunt-bump", +"grunt-cli", +"grunt-c", +"oncurrent", +[2,2241,2242], +[3,2243,9], +[2,26107,26938], +"trib-clean", +[2,2244,2246], +[3,2247,15], +"ompass", +[2,2248,2249], +[3,2250,16], +"ncat", +[2,2251,2252], +[3,2253,17], +"nect", +[2,2254,2255], +"py", +[2,2251,2257], +"sslint", +[2,2248,2259], +[3,2260,17], +"min", +[2,2261,2262], +[3,2247,14], +"htmlmin", +[2,2264,2265], +"imagemin", +[2,2264,2267], +[3,2268,15], +"nternal", +[2,2269,2270], +"jshint", +[2,2264,2272], +[2,2264,695], +"unit", +"nodeunit", +[2,2264,2276], +"sass", +[2,2264,2278], +"uglify", +[2,2264,2280], +"watch", +[2,2264,2282], +"ventional-changelog", +[2,2244,2284], +[3,2285,19], +"github-", +"releaser", +[2,2287,2288], +[2,2286,2289], +[2,2235,1177], +"jscs", +"grunt-jscs", +"grunt-js", +"doc", +"grunt-jsdoc", +"karma", +"grunt-karma", +"mocha-test", +[2,2235,2299], +"newer", +"grunt-newer", +"grunt-n", +"otify", +[2,2303,2304], +"pm", +"grunt-npm", +"grunt-sass", +"grunt-sa", +"ucelabs", +[2,2309,2310], +"grunt-s", +"augment", +"grunt-shell", +"imple-mocha", +[2,2312,2315], +"pritesmith", +[2,2312,2317], +"usemin", +[2,2235,2319], +"gts", +"guarapi", +"gulp", +[3,2229,9], +"cache", +[2,2324,2325], +[2,2169,2326], +"gulp-a", +"tom-electron", +[2,2328,2329], +"utoprefixer", +[2,2328,2331], +"wspublish", +[2,2328,2333], +"zure-storage", +[2,2328,2335], +"gulp-", +"gulp-babel", +"gulp-b", +"vir", +"gulp-bom", +[1,2343,2349], +[0,4796,4797,4798,4799], +"gulp-bower", +"rowserify", +[2,2339,2345], +"uffer", +"gulp-buffer", +[0,2358,2380,2388,2399], +"augment-vir", +"gulp-bump", +"gulp-cache", +"d", +"gulp-cached", +"gulp-c", +"hanged", +[2,2355,2356], +[0,1673,4484,4809,1461,3744,4804,1282,4805,4806,3028,3911,4812,2609,3849,4023,4808], +"gulp-clean", +"-css", +[2,2359,2360], +"@flmngr/flmngr-react", +"gulp-coffee", +"gulp-co", +"mpass", +[2,2364,2365], +"gulp-concat", +[2,2367,2360], +"gulp-con", +"flict", +[2,2369,2370], +[2,2369,2255], +"gulp-copy", +"sscomb", +[2,2355,2374], +"gulp-css", +[2,2376,671], +"nano", +[2,2376,2378], +[0,1499,1797,3135,1429,2070,695,2278,1983,1437,2675,4868,2297,2899,89,3875,4193,4747,1843,1177,1209,3220,3984,4135,4487,4568,1448,1651,668,3561,4474,2924,1169,1457,1859,2151,2720,3183,3416,1894,4952,4473,4955,4860,2025,4919,3758,4929,3817,3824,4939,4320,4469,4873,1175,1628,4937,4941,91,53,4856,4865,4874,2900,2990,3105,4925,3876,4869,4880,4892,1165,1178,1195,3008,3090,3564,3696,3884,4307,4705,692,4855,4863,4870,2925,4931,4891,1257,3613,3618,4940,4330,192,4864,4866,4907,3816,4934,606,4883,4890,1264,4909,4917,3734,3885,4824,4831,4852,4859,4923,4835,4884,1268,3107,4681,4840,4875,1959,1978,2923,3904,4820,4827,1030,4895,1272,4913,1938,4817,4842,1208,4916,2881,1566,32965,1895,1947,1948,2921,4815,4872,4887,1845,3810,3820,4822,4851,4912,4922,3591,4829,1011,3584,4889,4927,2054,4949,4849,4946,33009,4882,1255,1198,4897,4879,1009,1426,4899,4903,61,1233,1570,4906], +"gulp-csso", +"data", +"gulp-data", +"gulp-eslint", +"include", +[2,2093,2385], +[2,2337,2386], +[0,4957,4959,3286,4627,4960,89,4962,4963,4964,4967], +"ter", +"gulp-filter", +"gulp-f", +"latmap", +[2,2391,2392], +[3,2393,9], +"ten", +[2,2394,2395], +"ormat-md", +[2,2391,2397], +1772064000000, +"gulp-ftp", +[2,2337,2193], +[1,2343,2418], +"it", +"gulp-git", +"gulp-gzip", +[2,2337,2036], +"gulp-h", +"eader", +"gulp-header", +"tml-replace", +[2,2407,2410], +[3,2411,9], +[2,2412,2262], +"font", +"iconfont", +[2,2337,2415], +"gulp-i", +[0,2431,0,2442,2443], +"gulp-if", +"gnore", +"gulp-ignore", +"mage-resize", +[2,2417,2422], +[3,2423,10], +[2,2424,2262], +"nclude", +[2,2417,2426], +"gulp-in", +"ject", +"gulp-inject", +[0,1091,4094,3530,4227,1092,2858], +"line-css", +[2,2428,2432], +"stall", +[2,2428,2434], +[2,2417,1207], +"jade", +"gulp-jade", +"gulp-ja", +"smine", +[2,2439,2440], +[0,4973,4976,1098,364,4977,4978], +1771804800000, +"gulp-jscs", +"gulp-js", +"hint", +"gulp-jshint", +"on-editor", +[2,2445,2448], +"gulp-less", +"gulp-l", +"ivereload", +[2,2451,2452], +"oad-plugins", +[2,2451,2454], +"mini", +[1,2343,2470], +"minify-css", +[2,2337,2458], +[3,2459,12], +[2,2460,1936], +"gulp-m", +"gulp-mocha", +"gulp-newer", +"gulp-n", +"g-annotate", +[2,2465,2466], +"odemon", +[2,2465,2468], +[0,2471,0,2483,34352], +[0,3467,4094,2858,3090,4], +"gulp-notify", +"extra", +"extras", +[2,1186,2474], +[2,2337,2475], +"gulp-plu", +"mber", +[2,2477,2478], +"gulp-p", +"ostcss", +[2,2480,2481], +[0,4973,4976,1098,4986,4988,4977,4989,6,4978,1283,4991], +"ocess", +"reprocess", +[2,2480,2485], +1770508800000, +[1,2343,2497], +"gulp-prompt", +[2,2337,89], +"gulp-re", +"mote-src", +[2,2491,2492], +"gulp-rename", +"place", +[2,2491,2495], +[0,2513,0,2514,2523], +"gulp-rev", +"-replace", +[2,2498,2499], +"gulp-r", +"uby-sass", +[2,2501,2502], +"gulp-sass", +"gulp-s", +"gulp-sftp", +"gulp-shell", +"gulp-size", +"ourcemaps", +[2,2505,2509], +"trip-debug", +[2,2505,2511], +[0,4484], +[0], +"gulp-stylus", +"vg-sprite", +[2,2505,2516], +"gulp-svg", +"gulp-svgmin", +[2,2518,1542], +[2,2337,1283], +"gulp-t", +1771113600000, +"gulp-tsb", +"gulp-ts", +[2,2525,671], +"cript", +"ypescript", +[2,2522,2528], +"gulp-uglify", +[1,2343,2532], +[0,2534,0,2535,2537], +"gulp-uncss", +[0,4484,3493], +[0,1098,12,4627,5001,837], +"gulp-usemin", +1771718400000, +"ref", +"gulp-useref", +[1,2343,2561], +"gulp-util", +"vinyl-zip", +[2,2337,2542], +"gulp-watch", +"gulp-w", +"ebpack", +[2,2545,2546], +"gulp-web", +[2,2548,36], +"gulp-zip", +".spritesmith", +[2,2323,2551], +"gzip-size", +"hallmark", +"hammerjs", +"hapi", +[2,5323,33498], +[2,5340,6374], +"happy-dom", +"happy-", +[0,2513,0,2514,2537], +"happy-meant", +"hard-cool-rhythm-continued", +"has-flag", +"has-", +"parts-ice-fact", +[2,2565,2566], +"symbols", +"has-symbols", +"hash-sum", +"hasown", +"hast-util-raw", +[3,2572,10], +"sanitize", +[2,2573,2574], +[3,2575,11], +[2,2576,1799], +"to-estree", +[2,2573,2578], +[3,2579,13], +[2,2580,1936], +"jsx-runtime", +[2,2580,2582], +[2,2580,1871], +"text", +[2,2580,2585], +"hast", +"hastscript", +"hay-against-any-hurry", +"hbs", +"he", +"heapdump", +"helmet", +"heroicons", +"hexlet-pairs", +"hexo", +"highland", +"highl", +"ight.js", +[2,2598,2599], +"hiredis", +"history", +"history-", +"brass-sound", +[2,2603,2604], +"hit-running-special8", +"hoek", +"hogan.js", +"hoist-non-react-statics", +"homebridge", +"hono", +"hope-slight-walk1", +"hosted-git-info", +"how-to-npm", +"-dom-parser", +[2,1936,2615], +"html-", +"attributes", +[2,1818,2618], +[2,2617,2619], +"html-e", +"ncoding-sniffer", +[2,2621,2622], +"html-en", +"tities", +[2,2624,2625], +"scaper", +[2,2621,2627], +"html-loader", +[1,2343,2647], +"ier", +"minifier", +[2,2617,2632], +"-terser", +[2,2633,2634], +"pdf", +"html-pdf", +[2,1246,57], +[2,2617,2638], +"tags", +"html-tags", +"html-t", +"o-image", +[2,2642,2643], +"html-to-", +[2,2645,2585], +[0,2648,2667,2684,2537], +[0,4484,4747,4135,1457,53,3951,1573,5012], +"validate", +[2,2617,2649], +[2,2617,1464], +"htmlnano", +"parser2", +"htmlparser2", +"http-", +"errors", +"http-errors", +"proxy", +"http-proxy", +"-agent", +[2,2659,2660], +[3,2661,11], +"middleware", +[2,2662,2663], +[2,2655,36], +"http-s", +[0,91], +"http-status", +"-codes", +[2,2668,2669], +"https", +"xy-agent", +[2,1452,2672], +[2,2671,2673], +"husky", +"hyperquest", +"hyphenate-style-name", +"i", +"i18n", +"ext", +"i18next", +"-gridly-backend", +[2,2681,2682], +[0,1098,4643], +"iconv-lite", +"identity-obj-proxy", +"ignore", +[1,2343,2690], +"image-size", +[0,2691,0,2514,2443], +[0,4484,26364], +"imagemagick", +"-pngquant", +[2,2267,2693], +"imap", +"immer", +"immutability-helper", +[1,2343,2705], +"le", +"immutable", +"import-", +[2,2701,2145], +"local", +[2,2701,2703], +[0,2513,0,2736,34352], +"ess", +"impress", +"in-publish", +"indent-string", +"inert", +"inferno", +"inflection", +"inherits", +"ini", +"iniparser", +"ink", +"-style-parser", +[2,134,2717], +"innosetup-compiler", +"inquirer", +"-autocomplete-prompt", +[2,2720,2721], +"inside-throw", +"insta", +"gram-node", +[2,2724,2725], +"interpret", +"intl", +"-tel-input", +[2,2728,2729], +"invariant", +"inversify", +"ionic", +[2,34017,34020], +"ionicons", +[0,1098,29,5027,4963], +[1,2343,2773], +"ioredis", +"ip", +"irc", +"is", +"is-ci", +"is-glob", +"is-installed-globally", +"is-plain-obj", +"ect", +[2,2745,2746], +"is-p", +"otential-custom-element-name", +[2,2748,2749], +"romise", +"is-promise", +"is-stream", +"is-url", +"is-wsl", +"isarray", +"isobject", +"isomorphic-fetch", +"istanbul", +"itwcw-package-analytics", +"iview", +"jackspeak", +"jake", +"jarallax", +"jasmine", +[2,2765,1732], +"jasmine-", +[2,2767,202], +"jest-", +"canvas-mock", +[2,2769,2770], +"jest-c", +[0,2513,0,2514,2487], +"jest-cli", +[1,2343,2776], +[0,2789,0,2514,2537], +"jest-diff", +"ronment-jsdom", +[2,1840,2778], +[2,2769,2779], +"-fourteen", +[2,2780,2781], +[3,2780,17], +[2,2783,202], +"jest-e", +"xtended", +[2,2785,2786], +"html-re", +[0,5038,4484], +"porters", +[2,2788,2790], +[2,2769,2791], +"junit", +"jest-junit", +"pnp-resolver", +[2,2769,2795], +[2,2769,814], +"jest-util", +[1,2343,2803], +"-typeahead", +[2,2282,2800], +[2,2769,2801], +[0,2513,2804,2815,2399], +[0,2734], +"jest-worker", +"jimp", +"jiti", +"jodit", +"-react", +"jodit-react", +"johnny-five", +"joi", +"jotai", +"jquery", +[0,1098,38], +"jquery-ui", +"js-base64", +[1,2343,2819], +[0,2830,2836,2837,2523], +"js-beautify", +"js-cookie", +"js-yaml", +"jsarch", +"jscpd", +"-api", +"jsdoc-api", +"jsdoc-", +"to-markdown", +[2,2827,2828], +[0,1673,3789,1461,1282,5060,5071,6476,5057,5059,5062,5065,5049,5050,5069,5047], +"m", +"jsdom", +"-no-contextify", +[2,2832,2833], +"jsesc", +[0,1114,2070,1192,89,1177,4487,5098,4468,3213,1610,5102,3824,1193,5100,3697,3846,91,53,5087,2990,5125,4880,1178,1540,3857,97,5123,5076,5090,5091,5094,5108,5113,3904,5106,5121,5097,5084,6498,3810,5115,5082,1011,971,5110,5085,5075,5118,5103,5079], +[0,5127,4964,89,5128,4627,4963,181,5130,4967,5131,5133], +"-stylish", +[2,2272,2838], +[1,2343,2868], +"json-2-csv", +"json-", +"json-loader", +[3,6,6], +"json-schema", +"json-s", +"erver", +"json-server", +"-stringify", +[2,176,2849], +[2,2846,2850], +"json-st", +"ringify-safe", +[2,2852,2853], +"5", +"json5", +"c-parser", +[2,1781,2857], +"jsonfile", +"jsonschema", +"JSONStream", +"webtoken", +[2,1781,2862], +"jspm", +"jstates", +"jszip", +"jwt-decode", +[0,2884,2901,2938,2537], +"simple", +"jwt-simple", +[2,2297,1617], +[3,2871,13], +"stack", +"-launcher", +[2,2873,2874], +[2,2872,2875], +"karma-", +"karma-chai", +"karma-ch", +"rome-launcher", +[2,2879,2880], +"karma-c", +"over", +[0,3021], +"overage", +[2,2882,2885], +"browsers", +[2,1708,2887], +[2,2877,2888], +"edge-launcher", +[2,2877,2890], +"fire", +"fox-launcher", +[2,2892,2893], +[2,2877,2894], +"ie-launcher", +[2,2877,2896], +[2,2877,2765], +"mocha", +"karma-mocha", +[0,1114,89,2079,3824,91,4880,5139,4883], +"orter", +"-reporter", +[2,2900,2903], +"phantomjs-launcher", +[2,2877,2905], +"qunit", +"karma-qunit", +"rollup-preprocessor", +[2,2877,2909], +"safari-launcher", +[2,2877,2911], +"karma-sa", +"uce-launcher", +[2,2913,2914], +"karma-s", +"inon", +"karma-sinon", +"ourcemap", +[2,2919,2091], +[2,2916,2920], +"pec-reporter", +[2,2916,2922], +"webpack", +[2,2877,2924], +"keycode", +"keypress", +"keyv", +"kleur", +"knex", +"knip", +"known-css-properties", +"knox", +"koa", +"koa-body", +[2,2935,57], +"koa-", +[0,5127,4964,4653,1114,4627,4963,5130,4967,89,5128,181], +[1,2343,2974], +"compose", +"koa-compose", +"logger", +"koa-logger", +"mount", +"koa-mount", +[2,2937,38], +"static", +"koa-static", +"kue", +"label-lungs-court4", +"-perfe", +"ctly-blow-series", +[2,2951,2952], +[2,1351,2953], +"late-", +"dress-mail5", +[2,2955,2956], +"late", +"st-version", +[2,2958,2959], +"lazy.js", +"lead-alike-web3-applied", +"leaflet", +"left-pad", +"left", +"pad", +"leftpad", +"lerna", +[2,695,2091], +"level", +"down", +"leveldown", +"levelup", +[0,2985,2988,3011,2523], +"leven", +"libnpmdiff", +"libnpm", +"exec", +"libnpmexec", +"fund", +"libnpmfund", +"libphonenumber-js", +"liftoff", +"lilconfig", +[0,1461,5145,5146], +"linkifyjs", +"lint-", +[0,1114,2070,89,2079,3824,91,4880,4883], +"staged", +"lint-staged", +"listr", +"listr2", +"lit-element", +"lite", +"-server", +"lite-server", +"live-server", +"live", +"reload", +"livereload", +"load", +"-grunt-config", +[2,3001,3002], +[3,3003,11], +"tasks", +[2,3004,3005], +"-utils", +[2,1194,3007], +"-web-server", +[2,2703,3009], +[0,5127,4964,4653,1114,4627,4963,5130,4967,89,5128,181,1017], +"localforage", +"tunnel", +"localtunnel", +"lock", +[1,2343,3017], +[0,3075,3100,3104,2537], +"file-lint", +[2,3015,3018], +"-es", +"lodash-es", +".assign", +[2,1209,3022], +"lodash.", +[2,3024,1420], +"lodash.c", +"lonedeep", +[2,3026,3027], +[2,3024,1675], +[3,3029,9], +"faults", +[2,3030,3031], +"flatten", +[2,3024,3033], +"lodash.f", +"oreach", +[2,3035,3036], +"get", +"lodash.get", +"isempty", +[2,3024,3040], +[3,3041,10], +"qual", +[2,3042,3043], +[3,3041,9], +"function", +[2,3045,3046], +"object", +[2,3045,3048], +"plainobject", +[2,3045,3050], +[2,3045,1871], +"map", +"lodash.map", +"lodash.m", +"emoize", +[2,3055,3056], +[3,3057,9], +"rge", +[2,3058,3059], +"omit", +"lodash.omit", +"pick", +"lodash.pick", +"set", +"lodash.set", +[2,3024,1283], +"lodash.t", +"hrottle", +[2,3068,3069], +"uniq", +"lodash.uniq", +"log", +"log-symbols", +[0,5154,5152], +"update", +"log-update", +"log4js", +"loglevel", +"long", +"loopback", +"loose-envify", +"lowdb", +"lru-cache", +"lucide", +"luck-rubber-do", +"lwip", +"lws", +"madwizard", +"magic-string", +"magmastream", +"main-bower-files", +"make-dir", +"make-", +"make-node", +"mammoth", +"manifest", +"mantine-contextmenu", +"many-favorite6", +[0,4484,3709,4508,4355,838,5160,5159,4514,5162,840], +"stream", +"map-stream", +"mapboxgl-legend", +[0,5165,5166,2038,5167,3424,5168,5170,3709], +"markdown-it", +"-anchor", +[2,3105,3106], +[3,3107,12], +"cont", +[1,2343,3168], +"container", +[2,3108,3111], +"emoji", +[2,3108,3113], +[3,3105,9], +[2,3115,2636], +[2,3115,176], +[3,3117,10], +"o-jsx", +[2,3118,3119], +[3,3120,11], +"c", +[2,3121,3122], +[2,1783,671], +[2,3124,20], +"mark", +"marked", +"y-markdown", +[2,3126,3128], +"matcha", +[3,558,9], +[2,3131,181], +"mathjs", +"matter-view-web3-fence", +"md5", +"md5-file", +"mdast-util-from-markdown", +[3,3137,11], +"to-hast", +[2,3138,3139], +"mdn-data", +"mdxts", +"memcached", +"memfs", +"memoize-one", +"memo", +"ry-cache", +[2,3146,3147], +"memory-", +"memory-fs", +"memory", +[2,3151,3101], +"memwatch", +"menta", +"l-oxygen-dozen", +[2,3154,3155], +"meow", +"merge-", +[2,3158,3101], +"metalsmith", +"meteor", +"method-override", +"method", +"methods", +"microbundle", +"micro", +"micromark", +[0,3169,3179,3182,2537], +[0,2070,4207,3093,1525,1573,5175,5180], +"micromatch", +"mime", +"-types", +"mime-types", +"min-heap-typed", +"-extract-plugin", +[2,2360,3175], +[2,2456,3176], +"minify", +[0,4135,53,4865,5185,5191], +"atch", +"minimatch", +[0,5193,1172,5194,5197,5198,1173,4643], +"minimist", +"-jet-printed-supper", +[2,1504,3184], +"missing-sport-living", +"mkcert", +"mkdirp", +"mlly", +"mobx", +"mobx-react", +"mocha-", +"head", +"less-", +"chrome", +"less-chrome", +[2,3193,3196], +[2,3192,3197], +[2,2793,2903], +[2,3192,3199], +"lcov-reporter", +[2,3192,3201], +"mock-fs", +"mock-", +"property", +[2,3204,3205], +[1,2343,3208], +[0,3214,3217,2514,2537], +"require", +[2,3204,3209], +"mock-stdin", +"mock", +"mockdate", +[0,9673,3527,5279], +"mockery", +"mockjs", +[0,5282,4294,5210], +[2,3224,3225], +"moleculer", +"moment", +"-timezone", +[2,3220,3221], +"monaco-yaml", +[3,5838,28], +"xp-modifiers", +"monads-io", +"ress", +"-express", +[2,1550,3228], +"mongodb", +"ose", +"mongoose", +"monitor", +"-dashboard", +[2,3233,3234], +"monk", +"morgan", +"motor-positive-spirit", +"move-wolf-throughout", +"movie-obtain-tail-prepare", +"mqtt", +"ms", +"mssql", +"msw", +"mud-slowly-five3", +"multer", +[1,2343,3248], +[0,3252,3269,3272,2537], +"multimatch", +"multi", +"part", +[0,1676,2856,4135,5233,104,58,5228,5230,101,5216,51,1573,31292,5226,5222], +"multiparty", +"multip", +"le-cucumber-html-reporter", +[2,3254,3255], +"mustache", +"muuri", +"mysql", +"mysql2", +"mz", +"nails-wild-interest-garden", +"nan", +"nano-css", +"id", +"nanoid", +"-keymap", +[2,970,3267], +[0,4494,4039,4474,5245,5254,5251,87,92,5235,5180,5244,5240,5241,5191], +"nativefier", +[2,970,1508], +[0,5193,1172,5256,5257,5194,5258,5259,5260,5197,5198,5261,1175,4643], +"natural", +"nconf", +"ncp", +"near-social-bridge", +"nedb", +"needle", +[1,2343,3280], +[0,0,3293,2514,2523], +"-commander", +[2,678,3281], +"newman", +"newrelic", +"next-auth", +"next", +"nextjs", +"ng-mocks", +"ng-zorro-antd", +"ngrok", +"nib", +"nightmare", +[0,53], +"nightwatch", +"nine-yes-merely6", +"nise", +"nock", +"addon-api", +[2,813,3298], +"node-cache", +"node-c", +"ontainerpattern", +[2,3301,3302], +"dev", +"node-dev", +"node-d", +[1,2343,3311], +"node-dir", +"node-emoji", +"node-fetch", +[0,3328,3338,3398,2523], +"orge", +"node-forge", +"node-g", +"toolchain", +"node-gcm", +"eocoder", +[2,3314,3317], +"JSONC", +"arser", +"html-parser", +[2,813,3321], +"inspector", +[2,813,3323], +"JSX", +"mocks-http", +[2,813,3326], +[0,104], +"notifier", +[2,813,3329], +"oauth2-server", +[2,813,3331], +"powertools", +[2,813,3333], +"node-p", +"re-gyp", +[2,3335,3336], +[0,5282,51,5274,5276,5279,5273], +"node-pty", +"node-re", +"node-red", +"node-sass", +"node-s", +"chedule", +[2,3343,3344], +"tatic", +"node-static", +"uuid", +"node-uuid", +"node-watch", +"node-w", +"indows", +[2,3351,3352], +"xlsx", +"node-xlsx", +".extend", +[2,202,3356], +"git", +"nodegit", +"mailer", +"nodemailer", +"TSX", +"nodemon", +"webkit", +"nodewebkit", +"nolangjs", +"nomnom", +"nopt", +"normalize-path", +[3,3369,10], +[2,3370,1002], +"wheel", +[2,3370,3372], +[3,3369,9], +".css", +[2,3374,3375], +"np", +"npm", +"npm-check", +"-updates", +[2,3379,3380], +"npm-", +"package", +"GraphQL", +"package-arg", +[2,3382,3385], +[3,3386,12], +[3,4786,24], +"json-lint", +[2,3387,3389], +"npm-pack", +"list", +[2,3391,3392], +"regist", +"ry-fetch", +[2,3394,3395], +[2,3382,3396], +[0,1172,5284,57,5285,5286,58], +"mc-scripts", +"npm-run-all", +[2,3400,1276], +"npm-run-", +"path", +[2,3402,3403], +[2,556,11398,3902,591], +"npm-to-yarn", +"windows-upgrade", +[2,3382,3407], +"npmcli", +"npmignore", +"npmlog", +"nprogress", +"nsp", +"nuke-cli", +"numeral", +"nunjucks", +"nvm", +"nvmrc", +"nwsapi", +"nx", +"nyc", +"oas", +"oas-normalize", +"oauth", +[3,77,7], +"assign", +[2,3425,3426], +"hash", +"object-hash", +"inspect", +[2,3425,3430], +"keys", +"object-keys", +"object-path", +[2,3048,3022], +"object.", +"entries", +[2,3436,3437], +"observe-food-motion-hidden", +"on-finished", +"once", +"onchange", +"one-how-hand", +"onoff", +"open", +"open-cli", +"api-c", +[1,2343,3454], +"lient-axios", +[2,3447,3449], +[2,3445,3450], +"openapi", +[2,3452,1712], +[0,3457,3464,3465,2537], +"opencv", +"opener", +[0,5292,56], +"openweather", +"opn", +"optimist", +"optimi", +"ze-css-assets-webpack-plugin", +[2,3461,3462], +[0,53,5295], +[0,5297], +"optionator", +"ora", +"orchestrator", +"orm", +"osenv", +"outdent", +"outline-slowly", +"overlay", +"scrollbars", +[2,3473,3474], +"ovsx", +"p-event", +"p-map", +"p-queue", +"p-timeout", +"p23", +"pa11y", +"pacote", +"pageres", +"paintor", +"pako", +"para", +"para-cli", +"ent-js", +[2,3488,3489], +"llelshell", +[2,3487,3491], +"parse5", +"parseurl", +"passport", +[3,1433,9], +"facebook", +[2,3496,3497], +[2,3496,2703], +[2,3496,3424], +[2,3500,1276], +[2,3403,1617], +"path-", +"exists", +"path-exists", +"is-absolute", +[2,3503,3506], +"to-regexp", +[2,3503,3508], +"pathe", +"paypal-server-api", +"pdfjs", +"pdfkit", +"perf", +[1,2343,3516], +[0,3538,3546,3581,2523], +"ormance-now", +[2,3514,3517], +"pg", +"phantom", +[3,2905,9], +[3,2905,10], +"prebuilt", +[2,3522,3523], +"phonegap", +"pi-gpio", +"picocolors", +"pico", +"match", +"picomatch", +"pie-case-nor-great", +"pify", +"pino", +"pinst", +"pitch-somehow-earth-brave", +"pixelmatch", +"pkg-dir", +[0,5302,1676,2929,5303,4135,2822,4213,1457,18089,2098,5305,3183,3416,3692,5306,3530,27921,2226,3105,5312,5314,5319,27482,5320,5321,27512,5323,5328,27513,27514,2557,5332,2558], +"pkg-up", +"pkginfo", +"playwright", +"plugin-e", +"rror", +[2,3542,3543], +"plur", +[0,1414,1166,4494,188,4763,2278,89,1177,3127,3721,4039,2203,1894,3824,442,91,5307,4874,29549,27521,19181,5944,9245,30864,3114,27517,27519,5337,25652,1895,27518,30114,5344], +"pluralize", +"pm2", +"pngjs", +"pnp-", +[2,3550,1464], +"pnpm", +"pnpx", +"poe-api-manager", +"polished", +"poli", +"tical-plan-careful", +[2,3556,3557], +"popper.js", +"portfinder", +"postcss", +[3,214,8], +"calc", +[2,3562,3563], +[3,3564,9], +"postcss-cli", +"al-notation", +[2,3046,3567], +[2,866,3568], +[2,3565,3569], +[3,3570,13], +[2,3571,2262], +[3,3570,10], +"nvert-values", +[2,3573,3574], +"ssnext", +[2,3565,3576], +"ustom-media", +[2,3565,3578], +[3,3579,15], +[0,5347,5348,5349,1745,5351,5352,5353,5354,1179,5130,1820,5355,1936,1783,5356,3416], +"ies", +"properties", +[2,3580,3583], +[3,219,8], +"selectors", +[2,3580,3586], +"disc", +"ard-comments", +[2,3588,3589], +[2,3562,3590], +[3,3591,16], +[1,2343,3594], +[0,0,3596,3601,2537], +"es", +[0,5517,11976,811,816,10615,10817,5366,5364,5087,4874,1317,1413,1192,4042,4057,4468,4484,91], +"duplicates", +[2,3592,3597], +"empty", +[2,3592,3599], +[0,1623,57,5374,5376,6892,91,31130,31139,31177,3178,1671,7121], +"overridden", +[2,3592,3602], +"flexbugs-fixes", +[2,3562,3604], +[2,3562,1936], +[3,214,9], +"mage-", +"set-function", +[2,3608,3609], +[2,3607,3610], +[3,3611,10], +[2,3612,1709], +"load-", +"load-config", +[2,3562,3615], +[3,3616,12], +[2,3617,1524], +"hand", +"longhand", +[2,3158,3620], +[2,3562,3621], +[3,3622,14], +"rules", +[2,3623,3624], +[3,3622,9], +"inify-font-values", +[2,3626,3627], +[3,3628,15], +"grad", +[1,2343,3645], +"gradients", +[2,3629,3632], +"params", +[2,3629,3634], +[2,3629,3586], +"odules-local-by-default", +[2,3626,3637], +"nested", +[2,3562,3639], +[3,3640,12], +"ing", +[2,3641,3642], +[3,3640,9], +[0,3654,3655,3690,2537], +"ormalize", +[2,3644,3646], +"-charset", +[2,3647,3648], +[3,3649,18], +"positions", +[2,3650,3651], +[2,3650,1871], +[0,5381,5383,5387,5391,5393,5394,5397,5400,5402,5405,5408,5411,5414,5416,5419,5423,5425,5430,5436,2993,5438], +[0,5441,5446,5450,5452,5453,5456,5458,5461,5464,192,5467,5470,5473,5474,5476,5478,1177,1895,2675,2990,4193,91,5480], +"unicode", +[2,3650,3656], +[3,3657,19], +"rl", +[2,3658,3659], +"whitespace", +[2,3650,3661], +"ordered-values", +[2,3562,3663], +"prefix", +"-selector", +[2,3665,3666], +[2,3562,3667], +[3,3668,11], +"set-", +"set-env", +[2,3669,3671], +"reduce-initial", +[2,3562,3673], +"safe-parser", +[2,3562,3675], +[3,3676,9], +[2,3677,1623], +"or-parser", +[2,1799,3679], +[2,3677,3680], +"vgo", +[2,3677,3682], +"ue-selectors", +[2,3071,3684], +[2,3562,3685], +"value-parser", +[2,3562,3687], +"post", +[0,5483,1117,1745,5484], +"postgrejs", +"posthtml", +"pouchdb", +"power", +"-assert", +[2,3694,3695], +"pre-commit", +"preact", +"prepare-package", +"-plu", +"gin-jsdoc", +[2,3700,3701], +[2,1894,3702], +[3,3703,16], +"organize-imports", +[2,3704,3705], +"packagejson", +[2,3704,3707], +"svelte", +[2,3704,3709], +"prettierrc", +"prett", +"y-bytes", +[2,3712,3713], +"pretty-", +[2,3715,1851], +[2,3715,1671], +"pretty-ms", +"quick", +[2,3715,3719], +"pretty", +"prettyjson", +[1,2343,3728], +"prisma", +"prismjs", +"private-bower", +"proc-log", +[0,3740,0,3748,34352], +"process", +[3,217,8], +"-bar-webpack-plugin", +[2,3730,3731], +"-polyfill", +[2,1862,3733], +"s-aplus-tests", +[2,1862,3735], +"prom", +"o-server", +[2,3737,3738], +[0,5497,5498,5502,5504,2222,5506,4484], +"prompt", +"prompts", +"prop", +"prop-types", +"-information", +[2,3205,3745], +"protobufjs", +[0,5575,2220,89,582,5576,2325], +[2,38087,27470], +"protractor", +"quire", +"proxyquire", +"publish-please", +"pug", +"pull-stream", +"pump", +"punycode", +"puppeteer", +"purgecss", +"q", +"qr-image", +"qrcode-terminal", +"qs", +"query-", +[2,3764,1871], +"query", +"querystring", +"queue", +"-typed", +"queue-typed", +"quill", +"-dom", +"qunit-dom", +"qunitjs", +"raf", +"ramda", +"random-words", +"random", +"randombytes", +[2,3778,1871], +"range-parser", +[1,2343,3785], +"raven", +"raw-body", +[0,3796,3806,3823,2487], +"raw-loader", +"rc-slider", +"rc-tooltip", +"rc-util", +"rcw-plugin", +"react-a", +"ddons-css-transition-group", +[2,3791,3792], +[3,3793,13], +"shallow-", +[0,89,4042,3744,53,5582,87,4232,90,5583,5589], +"compare", +[2,3795,3797], +[2,3794,3798], +"react-ap", +"ollo", +[2,3800,3801], +[2,1897,3733], +[2,1246,1367], +"react-c", +[0,1192,1177,4468,1610,91,5087,4880,2829,1959,1969,1966], +"react-color", +"react-co", +"py-to-clipboard", +[2,3808,3809], +"picker", +"datepicker", +[2,1246,3812], +"react-d", +"ev-utils", +[2,3814,3815], +"react-dnd", +"5-backend", +[2,1868,3818], +[2,3817,3819], +"ocgen", +[2,3814,3821], +[0,5593,1745,1179,89,4978,1283], +"react-dom", +"ropzone", +[2,3814,3825], +"error-", +[2,3827,3473], +[2,1246,3828], +[2,1246,2593], +"react-h", +"ook-form", +[2,3831,3832], +"react-ho", +"t-loader", +[2,3834,3835], +[2,1246,2681], +"react-i", +"react-icons", +"nter", +"section-observer", +[2,3840,3841], +[2,3838,3842], +[1,2343,3851], +[2,28573,26849], +"react-intl", +"react-is", +"lifecycles-compat", +[2,1246,3848], +[2,1246,1783], +[0,3859,3873,2514,2399], +"odal", +"react-modal", +"react-mo", +"tion", +[2,3854,3855], +[2,1246,970], +"-key", +[0,4135,1996,5598], +"-keychain", +[2,3857,3860], +[3,3861,13], +"vector-icons", +[2,3862,3863], +"react-n", +"umber-format", +[2,3865,3866], +"onclickoutside", +[2,1246,3868], +"react-p", +"roperty", +[2,3870,3871], +[0,1680,1177,53,5601,1006,4523,5274,5604], +"x", +"redux", +"react-redux", +"react-re", +[2,3877,2145], +[1,2343,3880], +[0,3892,3896,3907,2523], +"sponsive", +[2,3877,3881], +"react-r", +[2,3883,995], +[2,3884,3772], +[3,3885,13], +[2,3886,3875], +"scripts", +[2,1246,3888], +"react-s", +[2,3890,1799], +[0,56,5611,5292], +"react-slick", +"tyleguidist", +[2,3890,3894], +[0,53,101,5615,5617,5295,5619], +"react-svg", +"tap-event-plugin", +[2,1246,3898], +"react-t", +"est-", +"renderer", +[2,3901,3902], +[2,3900,3903], +"oastify", +[2,3900,3905], +[0,1172,5297,70], +[1,2343,3918], +"react-tools", +"ransition-group", +[2,3900,3910], +"virtualized", +[2,1246,3912], +"reactify", +"strap", +[2,89,3915], +"read", +[0,3920,3464,3465,2399], +"read-pkg", +[0,56], +"read-pkg-up", +"able-stream", +[2,3917,3922], +"line", +"readline", +"-sync", +[2,3925,3926], +"recall-shut-say", +[1,2343,3933], +"recast", +"recently-building-save", +"rechoir", +[0,3934,3464,3465,2443], +[0,56,5631], +"recompose", +"recu", +"rsive-readdir", +[2,3936,3937], +"redoc", +"usaurus", +[2,3939,3940], +"-actions", +[2,3875,3942], +"redux-", +"redux-form", +[2,3944,2942], +"saga", +"redux-saga", +"thunk", +"redux-thunk", +"reflect-metadata", +[1,2343,3953], +[0,3982,3983,3465,2537], +"regenerate", +[3,3954,9], +"or-runtime", +[2,3955,3956], +"rehype", +"-auto", +"-headings", +[2,163,3960], +[2,3959,3961], +[2,3958,3962], +"rehype-", +[3,1202,9], +"links", +[2,3965,3966], +[2,3964,3967], +"mdx-code-props", +[2,3964,3969], +[2,3964,1644], +"raw", +"rehype-raw", +"slug", +"rehype-slug", +"rehype-s", +"tringify", +[2,3976,3977], +"release", +"release-it", +"remap-istanbul", +[0,5637,5222,56,5638,5640], +[0,53,5295,58], +"remark", +[2,3984,20], +"remark-", +"gfm", +"remark-gfm", +"remark-html", +"mermaidjs", +[2,3986,3990], +[2,3986,1644], +"remark-p", +[2,1258,2195], +[2,3993,3994], +[3,3995,14], +"wooorm", +[2,3996,3997], +[2,3986,3958], +"able", +"remarkable", +"replace-ext", +"replace-", +"in-file", +[2,4003,4004], +[1,2343,4011], +"-promise", +[2,705,4007], +"-native", +[2,4008,4009], +[0,3920,3293,3465,2523], +"require-all", +"require-", +"dir", +"require-dir", +[1,2343,4032], +"index", +[2,3209,4017], +"requirejs", +"rese", +"lect", +"reselect", +"resize-observer-polyfill", +"-from", +[2,814,4024], +"resolve-", +"url-loader", +[2,4026,4027], +"rest-chronicle", +"rest", +"restify", +[0,4091,4095,3465,2399], +"restler", +"ore-cursor", +[2,4030,4034], +"rethinkdb", +"rewire", +"rfdc", +"rimraf", +"robot", +"robotjs", +"rollup", +"rollup-p", +"lugin-babel", +[2,4043,4044], +[3,4045,15], +"uble", +[2,4046,4047], +[3,4045,14], +"clean", +"cleanup", +[2,4049,4051], +[3,4052,15], +"ommonjs", +[2,4053,4054], +"dts", +[2,4049,4056], +[2,4049,1781], +"license", +[2,4049,4059], +"builtin", +"builtins", +[2,813,4062], +[2,4049,4063], +[3,4064,19], +[2,4065,2203], +[2,4065,814], +"replace", +[2,4049,4068], +"sourcemaps", +[2,4049,4070], +"terser", +[2,4049,4072], +[3,4073,15], +[2,4074,2528], +[2,4075,1276], +[2,4049,2280], +"visualizer", +[2,4049,4078], +[3,4045,13], +[2,4080,594], +"route", +"routes", +"rsnext", +"rsvp", +"rtlcss", +"run-s", +"equence", +[2,4087,4088], +"@modern-js/utils", +[0,4135,56,5652,5656,5658,5660], +"run-series", +"rx", +"rxjs", +[0,3093,53,5228,97,87,5663,5658,5295], +[1,2343,4114], +"-compat", +"rxjs-compat", +"safe-", +"safe-buffer", +"safe-p", +"ublish-latest", +[2,4101,4102], +"sails", +"salt-type-oldest-faster", +"sand-have-metal6", +"-filename", +[2,2574,4107], +[3,4108,9], +[2,4109,1936], +"sass-loader", +"sat-local", +"sax", +[0,4115,4138,2514,4139], +[0,1593,3957], +"scheduler", +"-doc", +[2,1119,4117], +[2,2844,4118], +"schema-", +[2,4120,594], +"scien", +"ce-knowledge-truth", +[2,4122,4123], +"seblakhotspicy", +"secp256k1", +"seedrandom", +"sele", +"nium-webdriver", +[2,4128,4129], +"semantic-release", +[3,4131,9], +"ui-react", +[2,4132,4133], +"semver", +"seneca", +"sentiment", +[0,1389,1408,5669,4535], +1772323200000, +"sequelize", +[3,1753,9], +"-javascript", +[2,4141,4142], +"serial", +"serialport", +"serve", +"-favicon", +[2,4146,4147], +"serve-", +"serve-index", +[2,4149,2947], +"-destroy", +[2,36,4152], +[1,2343,4194], +"less-finch", +[2,36,4155], +[3,4156,11], +"spy", +[2,4157,4158], +"sha1", +"shallow", +"equal", +[2,4161,4162], +"sharp", +"shell-quote", +"shell", +"shelljs", +"shinning-continued-becoming", +"shortid", +"should", +"showdown", +"shx", +"sick-typical-court7", +"signal-exit", +"simil", +"ar-cheese-loss", +[2,4175,4176], +"-ass", +"i-animation", +[2,4178,4179], +[2,2869,4180], +"simple-", +"simple-git", +"-web", +"-web3", +[2,3742,4185], +[2,4182,4186], +"single-spa", +"sink-mighty-orbit0", +"sink-", +"rod-lamp", +[2,4190,4191], +"sinon", +[0,4197,4198,2514,2537], +"-chai", +"sinon-chai", +[0,4135,5867,5637,5866,56,5656,5658,5676,5788,5850,5761,5797,5222,5660,5816,5640,5809,5812,5838,5769,5793,5823,5852,5756,5766,5790,5856,5863,5712,5715,5771,5778,5842,5741,5743,5830,5859,5757,5241,5810,3218,5820,5827,5835,5853,5751,5759,5821,5865,5764,5846,5785,5754,5825,5862,5782,5700,5749,5806,5832,5818,29299,5800,5813,5678,5685,5694,5690,5776,5688], +[0,53,101,5295], +"sinopia", +"sirv", +"size-limit", +"size", +[1,2343,4222], +"sizeitup", +"skapi-js", +"sky-buy-web3-rock", +"slash", +"slice-ansi", +"slow-deps", +"slow-", +"voice-spell-pass", +[2,4210,4211], +"slugify", +"small-grow-mix4", +"snake-seven-recall-interior", +"snazzy", +"soap", +"socket.io", +"-client", +[2,4218,4219], +"sock", +[0,4240,3464,2514,2537], +"js-client", +[2,4221,4223], +"source", +"-map", +"source-map", +[2,4227,1592], +[3,4228,11], +[2,4229,1194], +"support", +[2,4229,4231], +"space-separated-tokens", +"spectaql", +"speech-section-part-frozen", +"spirit-labor-cheese", +"split", +"split2", +"spring-dust-wall-size", +[0,56,5676,5874,5879,5881,5883], +[1,2343,4244], +"sprintf", +"sprintf-js", +[0,4253,3464,4254,4139], +"sprity", +"sqlite3", +"ssh2", +"ssri", +"st.db", +"stack-", +"trace", +"stack-trace", +[0,4851,56,5676,5889,5241], +[0,5891,91], +"standard", +"-version", +[2,4255,4256], +"star-location", +"star", +"t-server-and-test", +[2,4259,4260], +"stat", +[1,2343,4265], +"statsd", +[0,4269,4281,2514,2537], +"statuses", +"stock-independent-balloon", +"stor", +[0,5896,3093,5898,2102,4232], +"storybook", +"-django", +[2,4270,4271], +"stra", +"iforos-compodoc", +[2,4273,4274], +"nge-lady-riding9", +[2,4273,4276], +[2,3101,3695], +"stream-", +[2,4279,353], +[0,1389,53,5743,5241], +"streamii", +"strftime", +"string-", +"stri", +[1,2343,4297], +"strip-html", +[2,4284,4287], +"width", +[2,4284,4289], +"-entities", +[2,1646,4291], +"strip-", +"strip-ansi", +"bom", +"strip-bom", +[0,0,0,2514,2523], +"comments", +[2,2842,4298], +[2,4293,4299], +"strip", +"stripe", +"strongloop", +"-dictionary", +[2,590,4304], +"style-", +[2,4306,1194], +[1,2343,4313], +"style-to-js", +[3,4309,9], +[2,4310,3048], +"-comp", +[0,4316,0,2514,2523], +"-components", +[2,369,4314], +[0,1593], +"styled-jsx", +"hacks", +"stylehacks", +"stylelint", +"-standard", +[2,607,4321], +[2,4320,4322], +[3,4323,10], +"declaration-strict-value", +[2,4324,4325], +"order", +[2,4324,4327], +"scss", +[2,4324,4329], +[1,2343,4336], +"us", +"stylus", +[2,4333,2091], +"sugar-policeman-entire", +[0,4344,3464,2514,2537], +"sugarss", +"sun-grass-circle0", +"superagent", +"super", +"superjson", +"supertest", +[2,4342,1430], +[0,1676,104,58,5230,5216,51,30873], +"supervisor", +"-vessels-web3-vessels", +[2,4231,4346], +[1,2343,4356], +"lor", +"s-color", +[2,4231,4350], +"surrounded-characteristic-or-rain", +"svelte-", +"check", +[2,4353,4354], +[0,4379,4392,2514,2487], +"rocess", +"preprocess", +[2,4353,4358], +"svg-sprite", +"svgo", +"sw-precache-webpack-plugin", +"swagger-autogen", +"swagger-", +[2,4364,134], +"themes", +[2,4364,4366], +"ui-express", +[2,4364,4368], +"swam-darkness-weak", +"swig", +"swiper", +"sync-request", +"information", +[2,623,4374], +"systemjs", +"tail-iron-became5", +"tail", +[0,5276,5279], +"tailwind", +"-merge", +[2,4380,4381], +"tailwindcss", +"tap", +"tap-", +"spec", +"tap-spec", +"tapable", +"tape", +"tar", +"tar-fs", +[0,58,5216,5274], +"tar-stream", +"tarant", +"-router-express", +[2,3926,4395], +[2,4394,4396], +"tdl", +"tdlib-native", +"tempy", +"terminal-kit", +[3,4401,9], +"menu", +[2,4402,4403], +"pack", +"-plugin", +"pack-plugin", +[2,4184,4407], +[2,4072,4408], +"cutting", +[2,1382,4410], +"snippets", +[2,1382,4412], +"cafe", +"testcafe", +"testc", +[1,2343,4422], +"ontainers", +[2,4416,4418], +"double", +"testdouble", +[0,4424,4429,4442,4139], +"testem", +[0,5923,5927,5930,5931,5934,5935,5936,1512,2075,2088,2070,2822,2832,5941,3105,5944,3107,5946,5949,3112,26767,5953,5956,5961,3135,3257,5963,5966,3725,3754,3758,5969,5971,3348,5975,4747], +"text-table", +"three", +"throttle-debounce", +"thro", +[0,4320,5978,4328], +"through", +"through2", +"w-did-darkness4", +[2,4428,4432], +"thunkify", +"tildify", +"time-grunt", +"tinper-bee", +"tiny-lr", +"tiny", +"bench", +"tinybench", +[0,200,1783,5980,3452,5593,5981,5982,5983,1745,1179], +"tinycolor2", +[1,2343,4458], +"tinymce", +"pool", +"tinypool", +"tinyspy", +"tmp", +"toastify-react-native", +"tocbot", +"toml", +"touch", +"tough-cookie", +"tracer", +"traffic-carry-opinion", +"train-stick-swept7", +[0,4466,4471,4472,2537], +"tree-kill", +"e-leaving-basket", +[2,1333,4460], +"trpc", +"trumpet", +"ts-cache-mongoose", +"ts-japi", +[0,5990,2212,3220,3747,4715], +"est", +"ts-jest", +"ts-loader", +"ts-migrate-mongoose", +[0,1596,1177,1895,1903,1938,1954,1955,1958,1970,4255], +[0,4709,5993,4714,2942,5995], +"ts-morph", +"ts-node", +"ts-patch-mongoose", +[1,2343,4485], +"ts-pnp", +"ts-rule-engine", +"-paths", +[2,2190,4479], +"tsd", +"tsd-lite", +"tshy", +"tslib", +[0,4502,4503,2514,2537], +"nt", +"tslint", +"-config-", +[2,4488,1894], +[2,4487,4489], +"tslint-", +[2,4491,89], +"tsup", +"tsx", +"turndown", +"tv4", +"tweetnacl", +"twemoji", +"twit", +"twitter", +"type-", +[0,6041,4135,1458,6042,1836,2151,6049,3527,1104,6047,4025,6024,6027,6028,6032,6034,6009,6010,6025,6037,3749,6007,6039,6022,6003,6031,6017,6006], +[0,3471,6040,4294,5254], +"coverage", +[2,4501,4504], +[1,2343,4516], +"type-fest", +"typedoc", +"-material-theme", +[2,4508,4509], +"typedoc-", +[2,4511,2475], +[3,4512,15], +[2,4513,1783], +"typedocs", +[0,4518,4519,4527,2537], +"typegen", +[0,6056,6059,449,452,456,1461,3744], +[0,48,53,61,87,90,192,5467,5583,811,816,6061,6063,6065,1009,1011,1178,1251,6066,1177,1947,1959,1961,2675,2990,1894,89,3824,4042,6068,4073,4131,91], +"typegoose", +"typeorm", +"-eslint", +[2,91,4522], +[3,4523,11], +"formatter", +[2,4524,4525], +[0,6070,89,6071,181,6073,4963,6074,6077,6080,6081,6082,4967,6083,6084,4298,6085,6086], +[1,2343,4544], +"css-modules", +[2,1186,4529], +[2,4524,4530], +"typings", +"uglify-es", +"uglify-", +"uglify-js", +"js-webpack-plugin", +[2,2280,4536], +"uid-safe", +"uiw", +"uj-apidoc-core", +"ulid", +"ultrahtml", +"unbuild", +[0,4556,0,4557,2537], +"underscore", +".string", +[2,4545,4546], +"undici", +"unified", +"unique-", +"random-", +"array", +[2,4551,4552], +[2,4550,4553], +"unist-util-visit", +[0,1459,148,185], +[0,6092,1459,6094,6096,6098,6100], +"untildify", +"unusual-rope", +"unzip", +"-notifier", +[2,3076,4561], +"urijs", +"url-", +"join", +"url-join", +"url-parse", +"urllib", +"user", +"user-", +"home", +"user-home", +[1,2343,4574], +[0,4583,0,4642,2487], +"agent", +"useragent", +"utf8", +[2,594,4381], +"uvu", +"valid", +"-url", +"valid-url", +[0,27715,4484], +"-commit-msg", +[2,2649,4584], +[3,4585,9], +[2,3387,1213], +[2,4586,4587], +"vant", +"vary", +"vasync", +"vercel", +"verror", +"vhost", +"victory-mouth", +"viewerjs", +"vinyl", +"vinyl-", +[2,4598,1398], +"vinyl-fs", +"source-", +[2,4601,3101], +[2,4598,4602], +[3,4603,12], +"maps-apply", +[2,4604,4605], +"virtual", +"virtual-dom", +[3,839,12], +"api-", +"api-routes", +[2,4609,4611], +"press", +"vitepress", +"vorpal", +"vows", +"vsce", +"vscode-debugprotocol", +"vscode-", +"nls-dev", +[2,4619,4620], +"mate", +"textmate", +[2,4619,4623], +"vue-", +"class-", +[3,1533,9], +[2,4626,4627], +[2,4625,4628], +[2,4625,67], +"hot-reload-api", +[2,4625,4631], +"vue-i18n", +"vue-loader", +[3,3746,9], +[3,70,9], +[2,4635,4636], +[2,4625,4637], +[2,4625,38], +[2,4625,4307], +[3,1243,9], +[0,6105,6106,6038,1936,6108,6110,1098,6111,6112,6113,4627,6092,1459,6094], +"compiler", +[2,4641,4643], +[2,4625,4644], +"vuex", +"walk", +"walk-sync", +"warning", +"watchify", +"waterline", +"wd", +"web3", +"web3-", +[1,2343,4668], +"web3-be", +"web3-c", +"apital", +[2,4657,4658], +[3,42,8], +"pass", +[2,4660,4661], +"eve-cli", +[2,4654,4663], +"web3-e", +"xactly6", +[2,4665,4666], +[0,4672,0,4557,2523], +"web3-fruit", +"webpack-", +"bundle-", +[0,1459,148,187,153,180,157], +[1,2343,4697], +"analyzer", +[2,4671,4674], +[2,4670,4675], +[2,4670,200], +"dev-middleware", +[2,4670,4678], +[3,4679,12], +[2,4680,36], +"hot-", +[2,4682,2663], +[2,4670,4683], +[2,3097,4406], +[2,4670,4685], +[3,4686,9], +"erge", +[2,4687,4688], +"node-e", +"xternals", +[2,4690,4691], +[2,4670,4692], +"sources", +[2,4670,4694], +"webshot", +[0,4698,0,4557,2523], +[0,1459,182,148,29468,187,153,180], +"websocket", +[1,2343,4701], +[0,4725,0,4557,2537], +"webtorrent", +"webworker-threads", +"weinre", +"whatwg-fetch", +"when", +"which", +"winreg", +"winston", +"-daily-rotate-file", +[2,4709,4710], +"winston-", +"trans", +"transport", +[2,4712,4714], +"wiredep", +"word-wrap", +"word", +"wrap", +"wordwrap", +"work", +"box-webpack-plugin", +[2,4721,4722], +"world-toy-kill", +[0,1459,182,148,6127,29468,187,180], +"wrap-ansi", +"wrench", +"write-file-atomic", +"ws", +"x-ray", +"xhr", +"xml-", +"xml-js", +"xml2js", +"xml2json", +"xmlbuilder", +"xmldom", +"xmlhttprequest", +"xpath", +"xregexp", +"xss", +"xstate", +[1,2343,4773], +"xterm", +"yaml", +"yamljs", +"yargs", +[2,4747,1574], +"yarn", +"pkg", +"yarnpkg", +"yarnrc", +"yauzl", +"yeoman-environment", +"yeoman-", +[2,4755,1179], +"yn", +"yo", +"yoctocolors-cjs", +"yonode", +"yosay", +"zmq", +"zod", +"zod-", +"chemas", +[2,2666,4765], +[2,4764,4766], +"zombie", +"zone.js", +"zuul", +[2,667,1651], +[2,672,4406], +[0,4792,0,4801,2523], +"@nx/jest", +[2,667,4270], +"framer-motion", +"teajusgula", +"@mui/s", +"tyle", +"d-engine", +[2,4779,4780], +[2,4778,4781], +"jsdoc-parse", +"@comm", +"ercetools-frontend/constants", +[2,4784,4785], +"shift", +"downshift", +[3,3605,9], +"ocus-visible", +[2,4789,4790], +[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6133,111,174], +[2,3388,4794,4963], +[3,18878,12], +[3,1705,9], +[2,4795,3582], +"devDependencies", +"keywords", +"ts", +[2,4837,686], +[0,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130,6148,6092,1459,6094], +[3,3,7], +"field", +[2,4802,4803], +[2,4802,3473], +[2,4802,2649], +"@types/", +[2,4807,3911], +"big.js", +[3,1849,9], +"lement-equals", +[2,4810,4811], +[1,2343,4918], +"adaptor-generate", +[2,4802,4814], +[3,4815,15], +[2,4816,1383], +"@alifd/a", +"pi-extractor", +[2,4818,4819], +[2,1262,3286], +[2,4802,4821], +[2,1910,57], +[2,4802,4823], +"@alifd/d", +"ts-generator", +[2,4825,4826], +[2,1884,3286], +[2,4802,4828], +"meet-react", +[2,4802,4830], +"sass-", +"mapper", +"sass-mapper", +[2,4802,4834], +[3,4835,12], +[3,4793,38], +[2,4867,4924], +"tracker", +[2,4836,4839], +[3,4835,11], +[2,4841,4823], +"@alifd/s", +"lint-co", +"-next", +"nfig-next", +[2,4844,4846], +[2,4779,4847], +[2,4843,4848], +[3,81,21], +[2,4850,1219], +[2,4807,1175], +"@types/b", +"ig.js", +[2,4853,4854], +"@types/chai", +"@types/c", +"lassnames", +[2,4857,4858], +"@types/co", +"@types/e", +"nzyme", +[2,4861,4862], +[2,4807,2151], +"@types/glob", +[2,4807,2720], +[3,4793,25], +"jsonp", +[2,4807,4868], +[2,4807,1209], +".clonedeep", +[2,4870,4871], +"@types/md5", +[2,4807,202], +[2,4807,3564], +[3,4875,16], +"ustom-", +[2,4877,3583], +[2,4876,4878], +[3,4808,12], +[3,4808,13], +[2,4881,1582], +[2,4881,965], +[2,4881,3875], +[3,4884,14], +"outer-dom", +[2,4885,4886], +[3,4808,14], +[2,4888,3903], +[2,4807,4320], +[2,4807,2924], +[2,4807,4747], +[3,1203,14], +"spower", +[2,4893,4894], +[2,2168,1894], +[2,1199,4896], +[3,1245,30], +[2,4898,3426], +"proto", +"-to-assign", +[2,4900,4901], +[2,1226,4902], +"displayname", +[2,1861,4904], +[2,1249,4905], +[2,3195,2874], +"e-polyfill", +[2,1557,4908], +"css-s", +"plit-webpack-plugin", +[2,4910,4911], +[2,1863,3733], +[3,1924,15], +"ypress", +[2,4914,4915], +[2,2068,4111], +[0,4943,0,4801,2537], +"html5shiv", +[3,2925,9], +"driver-launcher", +[2,4920,4921], +[2,3108,588], +"ssets", +"mochawesome", +"-package-importer", +[2,3342,4926], +[2,3388,16690,4935], +"react-axe", +"ropper", +[2,3805,4930], +"react-dr", +"aggable", +[2,4932,4933], +"c-app", +"ve", +"react-live", +"true", +"sass-true", +"simulate-event", +"solarlunar", +[3,4323,17], +[0,182,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6133,111,174], +[2,4950,4951], +"recommended", +[2,4942,4945], +[3,4323,11], +"sstree-validator", +[2,4947,4948], +[3,662,27], +"dev-authentication", +"ts-mocha", +[1,2343,4969], +[2,4950,4956], +"tsconfck", +[3,25922,13], +"fusion", +" design", +[2,4957,4958], +"ui toolkit", +"mponents", +[2,3808,4961], +"components", +"design", +"front", +"end", +"frontend", +[2,4970,4971], +[0,4979,0,4983,2537], +[3,4786,14], +"/http-user-agent", +[2,31787,4980], +"Angular CLI", +"Angular ", +"DevKit", +[2,4974,4975], +"devkit", +"sdk", +[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6158,111,174], +"cli-lib", +[2,812,2220], +"@svgr/babel-preset", +[0,6148,6092,1459,6094,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130], +"blue", +[2,4807,4676], +"blueprints", +" generation", +[2,1501,4987], +"scaffolding", +"tool", +"tooling", +[2,1030,4993], +"-swc", +[1,2343,4998], +[2,5559,705], +[2,4997,4999], +"moment-loca", +[0,5003,0,4983,4139], +[3,8303,18,2], +"svg-url-loader", +"development", +"thread-loader", +[0,6164,164,167,137,159,177,162,180,157,140,6166,171,116,150,155,122,169,119,146,111,6168,174], +[1,2343,5005], +[0,5006,0,4983,4139], +[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,6173,146,111,174], +[1,2343,5008], +[0,5011,0,4557,2487], +[2,4807,4996], +[2,6776,1987], +[0,6178,1459,16485,182,148,29468,159,187,153,185,146], +"@jridgewell/sourcemap-codec", +[1,2343,5014], +[0,5015,0,4557,2537], +[0,1459,182,148,29468,159,187], +[1,2343,5017], +[0,5018,0,4557,4139], +[0,16485,182,148,187,153,191], +[1,2343,5020], +[0,5021,0,5022,2487], +[0,1459,148,187], +[0,6092,1459,6094,6192,6100], +[1,2343,5024], +[0,5025,0,5026,2443], +[0,16485,182,187,153,6200], +[0,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130,6092,1459,6094,6192,6100], +[2,29,4958], +[1,2343,5029], +[0,5030,0,4557,4139], +[0,1459,148,187,185,146], +[1,2343,5032], +[0,5033,0,5026,2399], +[0,16485,187], +[1,2343,5035], +[0,5036,0,4557,2537], +[0,1459,182,148,6215,6127,180,143,6217], +[1,2343,5039], +"xhr2", +[0,5040,0,4557,2399], +[0,1459,182,148,29468,187,153,171], +[1,2343,5042], +[0,5043,0,4557,2523], +[0,1459,16485,182,148,6215,29468,187,153,180,185,191,143], +[1,2343,5045], +[0,5046,0,4557,4139], +[0,1459,182,148,167,29468,187,153,157], +"@bang88/react-native-ultimate-listview", +[3,444,19], +[2,5048,970], +"@rc-component/mini-decimal", +"@types/s", +[1,2343,5053], +[0,5072,0,4557,2443], +"hallowequal", +[2,5051,5054], +"with", +[2,3023,5056], +"css-color", +[2,3370,5058], +"rc-field-form", +"codegen", +[2,3862,5061], +[3,5062,15], +"llapsible", +[2,5063,5064], +"modal", +"-popover", +[2,5066,5067], +[2,3862,5068], +"ity-types", +[2,614,5070], +[0,1459,16485,182,148,29468,159,187,153,180,191,143], +[2,2809,4009], +[2,45,5073], +[2,41,5074], +[2,41,2041], +"@rea", +"ct-native-community/eslint-config", +[2,5077,5078], +[3,5079,9], +"vigation/native", +[2,5080,5081], +[3,5082,18], +[2,5083,2873], +[2,972,4009], +"@types/j", +"@types/jest", +"@types/p", +"rop-types", +[2,5088,5089], +[2,4881,970], +[3,1113,11], +"palettes", +[2,5092,5093], +"-demo-data", +[2,701,5095], +[2,1114,5096], +"bisheng", +[1,2343,5101], +"enquire.js", +[0,5126,0,4557,2537], +"jsonml.js", +"metro-react-native-babel-preset", +[3,3822,9], +"ument-title", +[2,5104,5105], +[3,2197,13], +[2,1246,5107], +"gesture-handler", +[2,3862,5109], +[3,5069,15], +"cker", +[2,5111,5112], +"reanimated", +[2,3862,5114], +"area-context", +[2,4099,5116], +[2,3862,5117], +[3,5118,14], +"creens", +[2,5119,5120], +"web", +[2,3862,5122], +"shell-", +[2,5124,594], +[0,1459,182,148,6164,6127,29468,187,153,180,143], +"ant", +[3,4962,15], +"frame", +"framework", +"mobile", +" native", +[2,89,5132], +[1,2343,5135], +[0,5136,0,4557,2537], +[0,1459,182,148,6215,29468,187,153,180,191,143], +[1,2343,5138], +[0,5140,0,4557,2537], +[2,4870,3020], +[0,182,148,29468,187,153], +[1,2343,5142], +[0,5143,0,4557,2487], +[0,1459,148,153,143], +[1,2343,5147], +[3,5075,17], +"@inline-svg-unique-id/react", +[0,5148,0,5149,4139], +[0,27715], +[0,6105,6106,6038,1936,6108,6110,89,5128,6092,1459,6094], +[1,2343,5151], +[0,5163,0,4557,2487], +[2,3670,1575], +[2,5928,5155], +"@auth/core", +"junit-xml-formatter", +"adapt", +"er-auto", +[2,5156,5157], +[2,836,5158], +[2,836,3383], +"et-cookie-parser", +[2,5051,5161], +[0,1459,16485,182,148,29468,187,153,191,143], +"entication", +[2,1303,5164], +"authjs", +"sveltekit", +"oidc", +"wordless", +[2,4661,5169], +[1,2343,5172], +[0,5173,0,4557,2443], +[0,16485,148,187,153], +[1,2343,5177], +"fs-readdir-recursive", +[3,5012,12], +[0,5181,0,5022,2443], +"-mapping", +[2,4251,5178], +[2,5176,5179], +[0,16485,6268,6271,6272,28829,148,29468,187,153,15716], +[3,4864,10], +"dir-recursive", +[2,3917,5183], +[2,5182,5184], +[3,56,14], +"fixture", +"-test-runner", +[2,5187,5188], +[2,1221,5189], +[2,5186,5190], +[2,5195,5196], +"6to5", +"es6", +[3,7710,11], +"ut-extension", +"transpile", +"transpiler", +[1,2343,5201], +[2,7623,671], +[0,5202,0,5022,2443], +[0,148,187], +[1,2343,5205], +"ighlight", +[0,5206,0,5022,2537], +[0,16485,182], +"meta", +"-resolve", +[2,5207,5208], +[2,2701,5209], +[1,2343,5212], +[0,5213,0,5214,2537], +[0,27715,3021], +[0,6105,6106,6038,1936,6108,6110,188,6284,6285,6287,6092,1459,6094], +"@ampproject/remapping", +[2,54,1179], +"compil", +"ation", +"-targets", +[2,5218,5219], +[2,5217,5220], +[2,5186,5221], +"module-", +[2,353,591], +[2,5223,5224], +[2,5186,5225], +[3,56,13], +[2,5227,591], +"emplate", +[2,102,5229], +[1,2343,5232], +[0,5234,0,5022,2537], +"gensync", +[0,16485,182,148,6127,29468,187,153,180], +[2,4850,2124], +[3,83,24], +"flow-", +[2,4293,553], +[2,5237,5238], +[2,5236,5239], +[2,5236,1239], +"nvert-", +[2,5242,4227], +[2,4860,5243], +[2,4807,1676], +"@types/g", +"ensync", +[2,5246,5247], +[3,4808,9], +"solve", +[2,5249,5250], +[3,5162,9], +"mver", +[2,5252,5253], +[1,2343,5262], +"classes", +"const", +"harmony", +"let", +"modules", +"var", +[0,5263,5264,5265,2523], +[0,6297,6298,6301,6302,6303,26379,4747], +[0,6306,6307,6498,4874,4892,2151,6476], +[0,1566,1529,200], +[1,2343,5267], +[0,5268,0,5269,2523], +[0,7,53,5830,87,6316,6318,31736,1364,6320,1448,1457,1512,1525,1595,6323,1866,2061,2071,2151,2070,2036,2626,2681,2856,1209,3079,6326,6327,3127,3183,5732,6330,6331,3527,23802,3725,4135,4200,5969,6334,4473,3348,6335], +[0,6111,1098,1745,4963,1237,2218,4796,1783], +[1,2343,5280], +[3,5222,15], +"heck-duplicate-nodes", +[2,5271,5272], +[2,5186,1182], +[2,4284,57], +[2,5186,5275], +"-identifier", +[2,1155,5277], +[2,5186,5278], +[0,5283,0,5288,2537], +"codes", +"charcodes", +[0,6343,2700], +"javascript", +"tc39", +"ecmascript", +"skia-canvas", +[0,6345,6346,5130,2018,6347], +[1,5293,5296], +"@egjs/flicking", +"reate-class-features-plugin", +[2,5271,5291], +[0,8389,4799], +[3,56,21], +[2,5294,1187], +[0,8391,5298], +[3,1198,12], +1732406400000, +[1,5293,5300], +[0,8391,5301], +1733011200000, +"moo", +"luxon", +"hamljs", +"liquidjs", +"iso-639-1", +"@iarna/toml", +"-urls", +[2,3692,5308], +[3,3938,10], +[2,5310,1585], +"bcp-47-normalize", +[3,1705,11], +[2,5313,2218], +"@11ty/", +"lodash-", +"custom", +[2,5316,5317], +[2,5315,5318], +"please-upgrade-node", +[2,62,3007], +[2,5313,1633], +[2,5315,5322], +"@sin", +"dres", +"orhus/slugify", +[2,5325,5326], +[2,5324,5327], +[3,5321,15], +"dev-", +[2,5330,36], +[2,5329,5331], +[1,2343,5345], +"@vue/", +"server-", +[2,5335,3902], +[2,5334,5336], +"plugin-vue", +[2,5329,5338], +[3,5339,22], +"syntax", +[3,2600,9], +[2,5341,5342], +[2,5340,5343], +[0,5350,5358,5359,34352], +"-site-generator", +[2,2947,5346], +[3,5347,11], +"ssg", +[0,2626], +"website", +"jekyll", +"blog", +"templates", +"11ty", +"liquid", +"haml", +[0,48,53,87,37046,6371,27928,6372,5583,811,816,6373,11275,1165,1367,6375,6376,1492,1610,1177,1907,1937,1938,1982,6379,2203,2205,6382,2626,6383,2739,2765,2814,2297,2876,2881,6385,2889,2895,2898,6387,2910,3019,3363,3400,3561,3566,6389,4039,4042,6390,21688,4939,4167,4320,6392,4072,6393], +[0,1623,2278,6396,6398,6400,5130,5122], +[1,2343,5361], +[0,0,0,5372,2537], +"parcel", +"ytes", +[2,4853,5363], +"enchmark", +[2,4853,5365], +"@parcel/packager-ts", +"@parcel/", +"er-typescript-types", +[2,353,5369], +[2,5368,5370], +[0,1623,57], +[1,2343,5377], +"stringifier", +"heet", +"stylesheet", +[0,0,0,5378,2487], +[0,1623,207], +[1,2343,5380], +[0,0,0,5426,2537], +"@advanced-rest-client/arc-icons", +[3,5381,26], +[2,5382,3127], +[3,5381,22], +"-copy", +[2,1492,5385], +[2,5384,5386], +"-snippets", +[2,1501,5388], +[2,2655,5389], +[2,5384,5390], +[2,3115,592], +[2,5384,5392], +"@anypoint-web-components/anypoint-button", +[3,5394,34], +"collapse", +[2,5395,5396], +"drop", +"dropdown", +[2,5395,5399], +"item", +[2,5395,5401], +"box", +"listbox", +[2,5395,5404], +[3,64,17], +"mf-helper-mixin", +[2,5406,5407], +[3,64,20], +"annotation-document", +[2,5409,5410], +"body-", +[2,5412,1746], +[2,5409,5413], +"example-generator", +[2,5409,5415], +"ers-document", +[2,3193,5417], +[2,5409,5418], +"param", +"eters-document", +[2,5420,5421], +[2,5409,5422], +"responses-document", +[2,5409,5424], +[0,1623,6415,57], +"umentation", +[2,4117,5427], +[2,1965,5428], +[2,5409,5429], +[3,64,16], +"method-", +"label", +[2,5432,5433], +[2,2655,5434], +[2,5431,5435], +[1,2343,5448], +"lit-html", +[2,7623,594], +"demo-helper", +[2,5382,5440], +"-aut", +"horization", +[2,5442,5443], +[2,3424,5444], +[2,5384,5445], +[3,5397,35], +[0,5481,0,5485,2537], +"heckbox", +[2,5447,5449], +[3,5402,35], +[2,5451,1020], +[2,5395,592], +[3,64,21], +"odel-generator", +[2,5454,5455], +"navigation", +[2,5409,5457], +[3,5425,22], +"quest", +[2,5459,5460], +[3,5430,22], +"rver-selector", +[2,5462,5463], +[3,192,13], +"onfig-conventional", +[2,5465,5466], +"@open", +"-wc/eslint-config", +[2,5468,5469], +[3,5470,9], +"testing", +[2,5471,5472], +"@web/dev-server", +"@web/", +[2,5475,1187], +"-playwright", +[2,5476,5477], +[2,5438,4406], +[2,4524,5479], +[0,220,3681], +"api-co", +[2,5482,4961], +[2,5432,1745], +[0,1623,2741,6421,6422,3561,6425,6426,3585], +[1,2343,5487], +[0,5488,0,5492,34352], +[0,3688], +[3,465,9], +"typed", +[3,5428,9], +[0,1623,5317,6433,3561,6425,6434,3583,6435,6436,6437], +[1,2343,5503], +"-node/core", +[2,5491,5494], +[2,5490,5495], +[2,5489,5496], +"@wry/caches", +"@wry/", +"@hapi/eslint-plugin", +"equality", +[2,5499,5501], +[0,0,0,5507,2537], +"@wry/trie", +"optimis", +"optimism", +[0,1623,3681,6443], +"response", +"-iterator", +[2,5508,5509], +"symbol", +"-observable", +[2,5511,5512], +"ts-invariant", +"zen-observable-ts", +[1,2343,5524], +"@arethetypeswrong/cli", +[3,107,13], +"hange", +"log-github", +[2,5519,5520], +[2,5518,5521], +[3,5497,10], +[0,5538,5539,5543,2523], +"ools/merge", +[2,5523,5525], +[3,5526,15], +[2,5527,2844], +[2,5527,594], +"@size-limit/esbuild-why", +[3,5530,12], +"pres", +"et-small-lib", +[2,5532,5533], +[2,5531,5534], +"@tsconfig/node20", +"@types/f", +[0,6450,6452,6453,5930,6455,6457,5153,6463,6465,30874,6467,6470,6471,1437,1483,1525,1676,6473,2089,2070,6474,2709,2744,2753,6475,3060,6476,5303,3171,3188,3261,3730,27168,4135,6479,4351,4507,6481,4745,6482], +[0,6487,6488,19438,19181,442,603,826,4856,5245,6493,6494,4864,6497,6309,6498,6501,6503,6505,6507,4874,6510,5254,6512,6515,6519,6520,1009,1011,1429,6522,1509,6525,1719,1177,1938,1953,1982,2026,2151,6526,2899,3257,3421,1894,6527,4172,4193,4196,6530,4449,4474,4481,4508,91], +[2,4807,2609], +"-fetch", +[2,4874,5541], +[0,5472,5982,1649,6532,6533], +[1,2343,5548], +"use-sync-external-store", +[2,4807,5545], +"rule", +[0,5549,5553,5565,2537], +[0,1415,1437,1468,1483,2151,4468], +"rule-tester", +[2,1010,5550], +[2,1010,553], +[0,192,5467,4864,4866,5087,6541,6544,6547,1009,1011,1109,1481,1836,1177,1895,1955,2675,1192,6551,3165,3203,3403,1894,6552,6554,91], +"local-", +"local-rules", +[2,1921,5555], +[3,1961,20], +[2,5557,4643], +"graphql-", +"graphql-ws", +"patch-package", +[3,3829,12], +"boundary", +[2,5562,5563], +[0,6557,1745], +[1,5293,5567], +[0,8391,5568], +1730419200000, +"ts-api-utils", +[3,1913,9], +[2,4468,5570], +"wait-for-observables", +"web-streams-polyfill", +[1,2343,5577], +"apollo", +"client", +[0,0,0,2514,2537], +[1,2343,5579], +[0,0,0,2514,2487], +[1,2343,5590], +[3,66,10], +[2,5581,57], +[2,812,1172], +[3,1217,14], +"ource", +"-support", +[2,4226,5586], +[2,5585,5587], +[2,5584,5588], +[0,0,0,2514,2443], +[1,2343,5594], +"api", +"asyncapi", +[0,5595,5596,5597,4139], +[0,5192,27292,7605,5439,1437,1448,1623,7606,7608,7610,2822,1209,3105,5946,7612,7617,3124,7621,29457,4110,4213,4361,11143], +[0,7624,5200,7631,7632,7634,7637,4870,7639,7641,4874,7643,7677,23203,1165,668,7645,2600,26503,7648,3400,3561,3672,2278,26573,91,1984], +[0,1783,7650,1739,7651,1745,4990,2041,1179], +"@nicolo-ribaudo/eslint-scope-5-internals", +[1,2343,5605], +[3,1006,9], +[2,5600,671], +"-manager", +[2,1993,5602], +[2,1010,5603], +[0,5606,5607,5608,34352], +[0,4484,4548,7658,7660,7663,7664,7665,7668,7669], +[0,4493,7671,1177,1984,1894,1610,91,4874,7672,7674,7677,7678,7681,7685,7690], +[0,1721,5592,4030,7692,7693], +[3,81,22], +"ecorators", +[2,5609,5610], +[1,2343,5620], +[3,1143,16], +"concat", +[2,5613,5614], +"polyfill-es-shims", +[2,1199,5616], +"getownpropertydescriptors", +[2,3436,5618], +[0,5621,5622,5623,2537], +[0,1525], +[0,2899,1894], +[0,553,4532,1776,605,4508,1739,1745,7701], +[1,2343,5626], +[2,4850,72], +[0,5627,5628,5597,2523], +[0,7708,7709,7710,7715,7718,7721,354,7723,7725,4865,7729,7730,1091,1149,1168,7731,1437,1759,2075,2070,2600,2628,2670,2822,2854,3173,3181,3322,4167,4183,4213,4393,7734,7735,4648,4747], +[0,7737,7740,7744,7637,4870,7746,4874,7749,7752,4892,1009,1011,1178,668,1177,1966,2675,2990,1209,4468,4474,91], +[1,2343,5632], +[3,5625,28], +[2,5630,75], +[0,5633,5634,5597,2487], +[0,7605,1437,7608,7610,2822,1209,3105,5946,7612,7615,7617,3124,7621,4110,4213], +[0,53,5241,87,7634,5087,7637,4870,7639,7641,7759,4874,7643,7761,7762,7763,1165,1178,668,7645,1177,1966,2600,1192,7648,3561,3672,1894,3957,4468,91], +[1,5293,5641], +"mpat-data", +[2,52,5636], +[2,4850,77], +[3,5422,10], +[2,5236,5639], +[0,8391,5642], +1734825600000, +[1,2343,5644], +[0,5645,5646,5647,2537], +[0,5328,842,975,7788,1364,1437,1470,1536,7791,2040,2075,2141,7793,7794,2600,2856,3105,5944,3107,5946,7796,7797,3322,3742,2278,7798,7799,4227,4228,4232,7800,3709,3348,7801], +[0,192,5467,6061,6063,7804,7806,7808,7810,4864,7639,7641,4874,7812,7814,7816,7819,7822,1009,1011,1414,7824,2151,2675,3758,3951,4131,91], +[0,38,5995,27,5130,7826,7827,7828], +[1,2343,5649], +[0,5654,5661,5664,2399], +[3,5226,21], +"imports", +[2,5650,5651], +[3,5617,22], +[0,7833,7837,7839,7840,19344,7847,842,7858,1165,1393,1628,1630,1177,1895,1955,1959,1961,2203,2675,16860,3177,3561,3618,3678,2278,4111,4307,4320,4323,5978,7873,4409,2924,4677,4686,4689], +"corejs2", +[2,5653,5655], +[3,5656,28], +[2,5657,1278], +[3,3957,11], +[2,5653,5659], +[0,7849,2990], +[3,99,21], +[2,5662,1278], +[0,4967,4329,7880,676,6435,1237,7881], +[1,2343,5667], +"@edsdk/n1ed-react", +[0,5668,5670,5671,34352], +[0,7639,1429,1437,3025,3105,3467,3718], +"derequire", +[0,27134,4856,7889,4874,7895,2675,2990,1894,91,1984], +[0,1804,1739,1745,5592,91,7897,7900], +[1,2343,5673], +[0,5703,5705,5708,2523], +[3,5279,24], +"option", +[2,5674,5675], +"bugfix-firefox-class-in-computed-class-key", +[2,79,5677], +[3,5678,21], +"safari-", +"-initializer-scope", +[2,4803,5681], +[2,4626,5682], +[2,5680,5683], +[2,5679,5684], +[3,5685,28], +"id-destructuring-collision-in-function-expression", +[2,5686,5687], +"v8-spread-parameters-in-optional-chaining", +[2,5679,5689], +[3,5690,25], +"-class-fields-redefine-readonly", +[2,3346,5692], +[2,5691,5693], +"private-", +[3,3746,11], +"-object", +[2,5696,5697], +[2,5695,5698], +[2,69,5699], +"generators", +[2,1152,5701], +[0,5652,97,7905,7907,7910,7913,1573,1874,7915,4227,7917], +[2,4850,1229], +[0,53,7922], +"static-", +[2,5706,1359], +[0,592,1832,89,1623,7165], +"ions", +"assertions", +[2,2701,5710], +[2,4850,5711], +[3,5712,29], +"ttributes", +[2,5713,5714], +[3,5712,28], +[2,5716,5207], +[1,2343,5719], +[0,5720,5722,5708,2537], +[0,362,7931,7910,7932,7933], +"logical-assignment-operators", +[0,7935,91], +[1,2343,5724], +[0,5725,5726,2514,2523], +[0,97,362,7943,7910,7946,7933], +[0,7935,7948,89,91], +[1,2343,5729], +"meric-separator", +[0,0,0,2514,4139], +[1,2343,5733], +"ptional-catch-binding", +"neotraverse", +[0,5735,5794,5795,2523], +"haining", +[0,1996], +[2,4850,5699], +"top-level-await", +[2,4850,5737], +"-sets-regex", +[2,3656,5739], +[2,4850,5740], +"arrow-functions", +[2,5236,5742], +[3,5743,25], +"sync-", +[3,1626,9], +[2,2168,5746], +[2,5745,5747], +[2,5744,5748], +[3,5749,30], +[2,5750,1222], +"-scoped-functions", +[2,1359,5752], +[2,5236,5753], +[3,5754,34], +[2,5755,3642], +[2,5236,1229], +[3,5757,30], +[2,5758,5707], +[3,5757,29], +[2,5760,3595], +[3,5757,25], +"omputed-properties", +[2,5762,5763], +"destructuring", +[2,5236,5765], +[3,5766,25], +"otall-regex", +[2,5767,5768], +"uplicate-keys", +[2,5767,5770], +[3,5771,34], +"named-", +"capturing-groups-regex", +[2,5773,5774], +[2,5772,5775], +"ynamic-import", +[2,5767,5777], +"expo", +"nentiation-operator", +[2,5779,5780], +[2,5236,5781], +[3,5782,28], +"rt-namespace-from", +[2,5783,5784], +[3,5240,25], +"or-of", +[2,5786,5787], +"unction-name", +[2,5786,5789], +[3,2854,11], +[2,5791,591], +[2,5236,5792], +[0,1414,2931,2899,8099,1177,3456,4039,4042,4135,8098,1894,4614,91,3401,5601,1006,17529,4057,5552,4071,1011,8097], +[0,1177], +"literals", +[2,5236,5796], +[3,5797,25], +"ogical-assignment-operators", +[2,5798,5799], +[3,5241,25], +"ember-", +"ion-literals", +[2,2026,5803], +[2,5802,5804], +[2,5801,5805], +[3,5241,32], +"amd", +[2,5807,5808], +[2,5807,4376], +"umd", +[2,5807,5811], +[2,5236,5775], +[3,5813,25], +"ew-target", +[2,5814,5815], +"ullish-coalescing-operator", +[2,5814,5817], +[3,5818,26], +[2,5819,5728], +[2,5236,77], +[3,5821,31], +[2,5822,4340], +[3,5821,25], +[2,5824,5731], +[3,5825,34], +[2,5826,5734], +[3,5640,25], +"rivate-methods", +[2,5828,5829], +[3,5830,32], +[2,5831,5698], +[3,5830,26], +"operty-literals", +[2,5833,5834], +[3,83,25], +"egenerator", +[2,5836,5837], +[3,5838,26], +"d-words", +[2,4146,5840], +[2,5839,5841], +"short", +[2,3619,1228], +[2,5843,5844], +[2,5236,5845], +[3,5846,25], +[1,2343,5868], +"pread", +[2,5847,5849], +"ticky-regex", +[2,5847,5851], +[2,5236,1243], +[3,5853,25], +"ypeof-symbol", +[2,5854,5855], +"unicode-", +[2,5857,1106], +[2,5236,5858], +[3,5859,32], +[2,4635,1108], +[2,5860,5861], +[2,5860,1108], +"sets-regex", +[2,5860,5864], +[2,88,5260], +[2,1593,4097], +[0,0,0,5869,2523], +[0,5284,6939,1177], +[1,2343,5871], +[0,5872,5884,5885,2537], +[0,8110,1461,8111,1757,2017,8113,6327,8114,3127,3191,8116,3502,8119,3555,3725,3744,8122,4213,8123,8126,8127], +"act-jsx", +[2,5839,5873], +[3,5874,30], +"display", +"-name", +[2,5876,5877], +[2,5875,5878], +"-development", +[2,5874,5880], +"pure-annotations", +[2,5875,5882], +[0,8129,8130,8132,4856,8136,4863,8139,5087,8141,8144,8146,8147,4874,8149,5090,4880,4883,8152,8155,4891,8157,4892,1009,1011,8158,1311,1567,1584,1593,1596,1628,1651,1843,8160,8161,1177,1938,1959,1961,2135,2651,2675,1192,2822,8163,8165,3190,3471,1894,3720,3775,89,3824,3836,4039,4167,4201,4307,4315,4468,4474,4484,91,8166,1002,2924,4677,4681,4693], +[0,8168,8170,8171,6975,8172,8173,1745,8175], +[1,2343,5887], +[0,5890,5892,5893,2537], +[3,5856,28], +[2,5888,1508], +[0,8181], +[3,1261,12], +[0,90,972,4880,4883,1030,89,3824,8187,1541], +[0,8190,8191,5399,4403,8192,8194,89,3824], +[1,2343,5895], +[0,0,0,5897,2537], +"pirates", +[0,8199,2414,8201,8203,6941,8204,1623,2278,6400,5122,8206,6884], +"clone-deep", +[1,2343,5900], +[0,0,0,5901,34352], +[0,8199,2414,8201,8203,447,8211,1623,2278,6400,5122,8206,6884], +[1,2343,5903], +[0,5904,0,5905,4139], +[0,8218], +[0,2414,7176,8220,1017,8221,1367], +[1,2343,5907], +[0,5904,0,5905,2537], +[1,2343,5909], +[0,0,5910,5911,2487], +[0,53,8229,87,90,92,192,5467,442,449,7008,452,6061,21120,6063,966,968,972,5087,4880,4883,1393,1423,1570,1610,1177,1895,1938,1939,1947,1955,1959,1961,1976,1982,2203,2675,1192,2780,1894,3720,89,3824,4039,4131,4468,4474,4493,91,4523], +[0,8220,2132,89,5284,8221,45], +[1,2343,5913], +[0,5914,5916,5918,34352], +[0,3951], +"to-fast-properties", +[0,5087,4874,1009,1011,1177,1879,1883,1895,1938,1939,1947,1955,1192,2794,1894,4468,4469,4474,4508,91], +[2,29288,594], +[0,91,5130,36,5995,3469], +[1,2343,5920], +[0,5937,5958,5964,4139], +"@api", +"devtools/json-schema-ref-parser", +[2,5921,5922], +[3,105,13], +"web-", +[2,5925,4963], +[2,5924,5926], +[3,221,10], +"gherkin-streams", +[2,5928,5929], +"@iframe-resizer/child", +[3,5931,16], +"parent", +[2,5932,5933], +"awilix", +"bpmn-js", +[0,8245,457,1804,8248], +"of", +"-allof", +[2,4381,5939], +[2,2845,5940], +[3,3107,13], +"bbr", +[2,5942,5943], +"ttrs", +[2,5942,5945], +[3,3112,14], +"detabs", +[2,5947,5948], +"multim", +"d-table", +[2,5950,5951], +[2,3108,5952], +[3,4923,13], +"lantuml-ex", +[2,5954,5955], +"task", +[0,8252,4874,1009,1011,1610,1804,8256,1177,1879,1883,1895,1938,1947,1955,1894,4469,4474,4508,91], +"-lists", +"task-lists", +[2,3108,5960], +"-viewer-element", +[2,3512,5962], +[0,91,5130,1804,36,5995], +[1,2343,5976], +"prince", +"svg-", +"pan-zoom", +[2,5967,5968], +[3,4369,11], +[2,5970,1724], +"reso", +"urce-inliner", +[2,5972,5973], +[2,5925,5974], +[0,5979,5916,5984,34352], +"-scss", +[2,4323,5977], +[0,457,8263,8264,24156,1364,2863,3951], +"md", +"bpmn", +"bdd", +"feature", +[0,91,5130,2026,3469,36,5995], +[1,2343,5986], +[0,5987,5988,5991,2487], +[0,31740,8271,8272,8273], +[0,8275], +"exit-hook", +[2,1152,5989], +[0,2220,8277,1745,1783,8278], +[1,2343,5994], +"loki", +[0,5996,5997,5998,2523], +"backend", +[0,32359,6446,8273,8272], +[0,8286,8275], +[0,467,2220,8277,1745,1932,1783,8278], +[1,2343,6012], +[3,107,12], +"y-release-plan", +[2,1133,6001], +[2,6000,6002], +[3,6003,13], +"ssemble-release-plan", +[2,6004,6005], +[3,5522,25], +"onfig", +[2,5518,6008], +[2,6000,2656], +"dependen", +[0,6013,0,6046,2537], +[0,53,87,8292,8294,8296,1165,1195,8297,1593,1610,1628,1630,2092,8301,3177,3561,3618,8304,2278,8306,4111,4383,4027,2924,4677], +"ts-graph", +[2,6011,6014], +[2,2183,6015], +[2,6000,6016], +[3,6017,16], +"release-", +"plan", +[2,6019,6020], +[2,6018,6021], +[3,6017,13], +[2,6023,2403], +[2,6000,2942], +"pre", +[2,6000,6026], +[2,6000,3917], +"-skip-package", +[2,4170,6029], +[2,6000,6030], +[2,6000,553], +"write", +[2,6000,6033], +"@man", +"ypkg/get-packages", +[2,6035,6036], +"editor", +[2,26670,26671], +"human-id", +"mri", +"p-limit", +"pref", +"erred-pm", +[2,6043,6044], +[0,2924,8309,8310,4967], +"spawndamnit", +"term", +"term-size", +[1,2343,6051], +[0,6053,6054,6060,2487], +"@mui/x-internals", +[0,8317,8320,8321,8324,8325,8328,8330,8333,8335,8337,8339,8341,8344,8346,8348,8350,8353,8354], +[0,8357,5500,8358,8359,8362,8364,4874,2036,2812,91], +[3,110,23], +[2,6055,592], +[3,449,25], +"free", +[2,6057,6058], +[0,5130,27,5592,5122], +"@semantic-release/changelog", +[3,6061,18], +[2,6062,3358], +"hub", +[2,6063,6064], +[2,1457,20], +"peer-deps-external", +[2,4049,6067], +[1,5293,6075], +"chat", +"reactjs", +" interface", +[2,4569,6072], +"ui kit", +[0,8391,6087], +"unication", +[2,1514,6076], +"conver", +"sation", +[2,6078,6079], +"toolkit", +"library", +"reusable", +"feed", +"social", +"talk", +1724872768784, +[1,2343,6089], +[0,6090,6091,6093,2523], +[0,8506,3776], +[0,192,5467,8509,8511,6061,6063,16480,1177,2675,2742,8512,2990,1894,4131,1984], +"ckeditor", +[0,1776,1894,4298,1745,5284], +"ckeditor 5", +"-feature", +[2,1459,6095], +[3,6096,10], +[2,6097,1932], +"dll", +[2,6097,6099], +[1,2343,6102], +[0,6103,6104,6114,2537], +[0,5917], +[0,11976,8520,26364,966,968,972,974,4874,4880,8524,8527,8528,8529,1030,1091,8531,1092,6685,8534,8536,6809,7250,1610,8537,8556,8538,7091,8539,2812,2832,8540,3165,8543,8544,8547,3400,89,3824,3833,3951,7080,7103,91,8550,7114,1983,8552,1984,6482,4763], +"wysiwyg", +"rich text", +"Editable", +[2,1563,6107], +"edit", +"editing", +"angular2", +"angular 5", +"ng", +[0,6659,7020,7130,6663,3833,6482,2812,7080,91,4763,7114,6809,7091,8558,7209,7250,7103,1091,7196,6685,8560,8561,8556,29291], +[1,2343,6116], +[0,6117,5795,6118,2537], +[0,4548], +[0,8571,8572,8573,8570,1885,8574,5592], +[1,2343,6120], +[0,6121,6122,6123,2523], +[0,8579,8582,8585,8181,3021], +[0,4039,188,4639], +[0,188,8588,8591,4967,5130,181,12,4627,4963,5001,837], +[1,2343,6125], +[0,6128,6129,6130,2537], +[3,153,22], +[2,6126,2389], +[0,7905,542,1668,3021], +[0,8597,4039,188,4639], +[0,188,8588,8591,4967,5130,181,4627,4963], +[1,2343,6146], +"ditor-balloon", +[2,151,6132], +"@jest/pattern", +"oper", +"al transformation", +[2,5218,6136], +[2,6135,6137], +"ot", +"colla", +"boration", +[2,6140,6141], +[3,6142,11], +[2,6143,4936], +"real-time", +[0,6149,6150,6151,2537], +"build", +[2,6097,6147], +[0,31874,8604,8605,8611,34224,8612,4174], +[0,8616,8608,4874,91], +[0,8618,8619,8620,1299,200,1523,6876,8622,1836,8623,1179,8624,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,8632,8633,4989,2184,8634,7009,6621,181,8635,4758,8636], +[1,2343,6153], +[0,6154,6155,6156,2399], +[0,4484,2735,8641], +[0,1192,2278,1437,2020,4146,8643,1177,4042,2151,2774,1894,4320,5087,4874,8645,6376,8647,30071,4328,8648,8651,8653,8654,8656,8659,8660,8661,1895,1011,8665,816,8669,8671,1009], +[0,2733,5130,8673,5131,1896,8674,8675,1591,1804,8677,8678], +[3,6133,27], +[2,6157,128], +[1,2343,6160], +[0,0,6161,6162,2537], +[0,4874,668,1894,4384,4483,4508], +[0,200,6876,8691,4964,7201,4719,176], +[1,2343,6169], +[2,117,2414], +"lignment", +[2,112,6165], +[3,132,9], +[2,6157,6167], +[0,6170,0,6171,2537], +[0,8697], +[0,91,1541,3421,1973,4504], +[1,2343,6174], +[2,6157,134], +[0,6175,6176,6177,2537], +[0,8703,8710,8712,8714,1461,8716], +[0,8719,842,968,972,974,7677,1177,1895,8724,2832,89,3824,91,1983,1984], +[0,4627,4963,8727,4964,5130,4967,8728,8729,5128,89,181,1487], +"blurhash", +[1,2343,6180], +[0,6181,6182,6183,2537], +[0,8744,6134,8752,8762,8755,554,4874,1107,1437,1458,29680,2215,8769,8734,8750,8765,8758,2797,8771,8737,8739,8746,2798,8747,8741,3170,3717,4207], +[0,8782,8776,8780,8778], +[0,1166,1172,4504,8784,2022,3497,8786,8787,2765,1192,2832,2899,8788,8790,2907,8791,8795,8745,4384,4389,1973,5472,91,2282], +[1,2343,6185], +[0,6186,0,2514,2537], +[0,6134,8801,8809,8806,4874,4892,1437], +[1,2343,6188], +[0,6189,6190,6191,2487], +[0,8818,1091,1092,1209], +[0,549,8826,1009,1011,1166,8832,1177,1895,1938,1955,2832,3421,1894,3875,8824,4039,4042,4052,4076,4079,4232,4474,4484,4508,91], +[0,1669,25,1781,8836,4967,1179,6847,7020,8838,2860,2844,8839,8691,8841], +[2,6097,1095], +[1,2343,6194], +[0,6195,6196,6198,2523], +[0,8846,1673,1209], +[0,7948,370,618,622,626,811,8850,816,6373,4863,5087,4880,4883,1009,1011,8158,1584,1843,1177,1895,1938,1955,1959,1192,2780,2832,3421,1894,89,3824,4039,4042,4052,8849,8853,4076,4079,4230,4468,4469,4484,4508,91,2924,4677,4681,555,560], +[3,191,21], +[0,29,3902,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +"atchdog", +[2,6197,6199], +[1,2343,6202], +[0,6203,6204,6205,2487], +[0,1209], +[0,8862,4863,5087,8860,4880,4884,1009,1011,8158,1610,1843,1177,1895,1938,1955,1959,1192,2832,3421,1894,89,3824,3876,3875,8824,4039,4042,4052,4076,4079,4468,4484,4508,91,555], +[0,89,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2343,6207], +[0,6208,6209,2514,2537], +[0,6059,8918,8923,8928,8926,8934,8921,8913,8931,8932,8894,8916,8892,8897,8906,8900,8887,8910,8902,8890], +[0,8937,5087,1192,4039,91], +[1,2343,6211], +[0,6212,6213,6218,34352], +[0,1110,1282,1437,1537,8942,2070,8944,2822,8947,3072,3181,3188,8949,4039,8951,8952,8954,8957,8959,4431,4562,4600,4603,8962], +[0,1173,8966,1255,1264,1596,1672,2835,2899,3421,8967,4100,4193,4255,4597], +"ndo", +[2,183,6214], +"select-all", +[2,117,6216], +[0,2278,4329,1623,2295,1745,4298,699], +[1,2343,6220], +[0,0,0,6221,2399], +[0,8980,8984,8987], +[1,2343,6223], +[0,6224,6225,6226,2523], +[0,8605], +[0,546,8997,8998,2992], +[0,2991,2992,200,5957,3392,9000,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], +[1,2343,6228], +[0,6229,6230,6231,2487], +[0,8703,1497,3867,9008,9011,4507], +[0,89,3824], +[0,4963,4964,4967,6082,3286,3287,89,181,630], +[1,2343,6233], +[0,6234,6230,6235,4139], +[0,1497], +[0,9026,4963,1666,4967,6082,3286,3287,3811,89,6901,181,630], +[1,2343,6237], +[0,0,0,6238,2523], +[0,4967,582,6082,3286,3287,89,6687,6649], +[1,2343,6240], +[0,0,6230,6241,2487], +[0,4963,8622,4967,6082,5066,3286,3287,89,181,630], +[1,2343,6243], +[0,6244,6230,6245,2487], +[0,9041,3911], +[0,4963,4967,6082,3286,3287,9044,9045,9047,89,181,630], +[1,2343,6247], +[0,6248,0,6249,2537], +[0,9054,595], +[0,89,3286,3287,181,4963,630,6082,4967,1501,5342,5341,9057], +[1,2343,6251], +[0,6252,0,6253,2399], +[0,1497,1639], +[0,89,3286,3287,181,6082,4967,1832,7165,7297], +[1,2343,6255], +[0,0,0,6256,2523], +[0,89,3286,3287,6082,4967,6687,582,6649], +[1,2343,6258], +[0,6259,0,6260,2537], +[0,1497,3847,3559,3744,97,9075,9076,9071,9074,3911,2609,4808], +[0,89,5128,5027,3132], +[1,2343,6262], +[0,6263,0,6264,2537], +[0,97], +[0,89,5128,5027,3132,45], +[1,2343,6266], +[0,0,6267,6273,2537], +[0,1192,3348,2675,1177,1209,1593,4474,4508,1894,1317,48,1193,91,53,5087,7819,3400,4870,107,192,5366,87,1978,3957,1895,1955,4514,92,603,9089,1011,5467,1009,61,78,76], +"color-parse", +"color-", +"convert", +[2,6269,6270], +"vanilla-colorful", +[0,1781,5592,9091,9093,1753,9094,4525,91,4799,5995,6400], +[1,2343,6275], +[0,6276,0,6277,2523], +[0,9100], +[0,1219,1783,9102,89,3984], +[1,2343,6279], +[0,6280,6281,6282,2399], +[0,608,606,1687,1209,3181,814,4135,4227,91,9111,9110,9113,9119,9121], +[0,9125,4870,5251,5254,1177,29339,9130], +[0,91,8172,9132,9133,9134,8623,1745,6432,4056,7897,4042,6374,4643,9135,9136], +"@aws/durable-execution-sdk-js", +"vue.js", +"vue component", +" component", +[2,6284,6286], +[1,2343,6289], +[0,0,6290,6291,2537], +[0,1177,9125,9141], +[0,6869,1745,2295,4298,9132,57,4255], +[1,2343,6293], +[0,6294,6295,6291,2537], +[0,1091,9153,814,606], +[0,1177,9156,5251,9125,9141], +[3,192,12], +[2,6296,1671], +[2,6296,671], +[3,6298,13], +"oad", +[2,6299,6300], +[2,6296,3917], +[2,6296,553], +[1,2343,6310], +[3,6303,13], +[2,6305,4467], +[2,6296,594], +[3,4872,14], +[2,6308,1698], +[0,0,6311,6312,2523], +[0,6283,33639,9163,9167,4874], +[0,9169,9170,9171,9172,9173,9174,33959,33964], +[1,2343,6314], +[0,6321,6322,6340,4139], +[3,195,10], +[2,6315,2997], +"ngd-transformer", +[2,6315,6317], +".native", +[2,1367,6319], +[0,615], +[0,609,9167,4507], +"decache", +"-plugin-", +[2,6324,3665], +[2,3079,6325], +"lunr", +"openc", +"ollective-postinstall", +[2,6328,6329], +"os-name", +"pdfmake", +"sort", +"tablesort", +"vis-network", +[2,6337,6338], +[3,10088,18], +"-list", +[2,10217,6341], +[0,9169,9170,9171,9172,9173,9174,9182,9183,8172,6671,9184,9186], +"icky", +[3,197,10], +[2,6342,553], +[1,2343,6350], +"semantic", +"actor", +"messages", +[2,698,9352,6349,10029], +"scroll-b", +[0,0,6353,6356,2537], +[2,6352,1633], +[3,6348,22], +[0,9193,609,9167,4874,9196], +"cms", +"management", +[0,9169,9170,9171,9172,9173,9174,1383,614], +[1,2343,6358], +[0,0,0,6359,2523], +[0,9203,4967,9204,1283], +[1,2343,6361], +[0,6362,6363,6364,2537], +[0,9213,9215,9217,9218,9219,9221], +[0,192,5467,9225,9226,8648,9227,6494,9231,9237,4874,5542,24360,9240,9241,1170,1364,1527,1594,1610,1652,9242,2026,9243,9244,2131,2212,2559,2832,3310,9245,4218,4220,9247,4339,4342,1531,91,4548,1984,9250,9252,9255,2924,9258,4729], +[0,705,9261,27,2671,4738,4731,1612,9262,3212,4158,5472], +[1,2343,6366], +[0,6263,0,6367,2537], +[0,89,5128,9267,3132,5027,45], +[1,2343,6394], +"@doc", +"search/js", +[2,6369,6370], +"@popperjs/core", +[2,812,4068], +"bundle", +"bundlewatch", +[2,1462,20], +"find-u", +"nused-sass-variables", +[2,6377,6378], +"hammer", +"-simulator", +[2,6380,6381], +"hugo-bin", +"-istanbul-reporter", +[2,2886,6384], +[2,1868,2903], +[2,2898,6386], +"mbine-duplicated-selectors", +[2,3573,6388], +[2,4049,2759], +"twbs-bootstrap", +[2,4942,6391], +"vnu-jar", +[0,6397,0,6401,2487], +"-first", +[2,5131,6395], +[0,1497,9272,9273,3744,624,97], +"responsive", +"front-", +"front-end", +[0,89,5128,9267,3132,5027,620], +[1,2343,6403], +[0,6404,0,6405,2537], +[0,1497,1639,3847,9272,9273,3744,624,97,6372,3911,9284,4808], +[0,89,5128,9267,3132,5027], +[1,2343,6407], +[0,6408,0,6409,34352], +[0,1497,1639,9272,9273,3744,97,4782,9293], +[0,89,5128,9267,623], +[1,2343,6411], +[0,6412,0,6414,2537], +[0,97,9273,4808,1497,3744,3911,6052], +"media", +[0,89,5128,9267,9300,3132,5027,3812,9301,9302], +"media query", +[1,2343,6417], +[0,6418,6419,6420,2523], +[0,9307,9308,9310,9311,9312,9313,9315,9316,9317,1461,1473,9319,9321,9322,2070,2226,9324,9327,9329,9334,9337,9340,3988,9343,9347,9348,9351,4507,4549,4555,2924,9354,9355], +[0,9357,9359,9362,9363,4880,4891,1165,1540,3286,3613,89,3824,3958,4383,4493,91,9364,9367,9368], +[0,9102,1745,3287,1783], +"matches", +"polyfill", +[3,3668,9], +"lugin", +[2,6423,6424], +"pseudo", +[1,2343,6428], +[0,6429,0,6430,34352], +[0,9375,9376,9378,9379], +[0,1098,1745,1179,9381,9382,5592,9383,9384], +[1,2343,6438], +[3,4325,11], +[2,6432,591], +[3,217,11], +"utility", +"variables", +"vars", +[0,6439,0,6430,2443], +[0,4484,628], +[1,2343,6441], +[0,6442,0,6430,2523], +[0,3958,9393,3971,3978,7610,9396,9401,2584,4555,9405,9407,9409,1437,9348,4549,4292], +"specificity", +[1,2343,6445], +[0,6459,6460,6480,2523], +[2,6447,25240], +[3,465,19], +[3,221,11], +"i-environment", +[2,6448,6449], +[2,3228,5709], +[2,221,6451], +[3,5930,17], +[3,5930,18], +[2,6454,594], +[2,2617,4525], +[2,5928,6456], +"message", +[0,9414,1690,1431,9417], +[0,1429,1363,2899,1177,9420,4039,9422,4474,2182,1894,91,4856,4874,9424,1325,1951,1938,1895,1955,1011,9426,1009,634,9431,9437], +"-streams", +[2,6458,6461], +[2,5928,6462], +[3,6463,17], +[2,6464,591], +"tag-expressions", +[2,5928,6466], +[3,5710,9], +"-error-formatter", +[2,6468,6469], +"capital-case", +[2,4250,57], +[2,3827,6472], +"has-ansi", +"knuth-shuffle-seeded", +[2,3060,5056], +"resolve-pkg", +"argv", +"string-argv", +[0,9439,9440,9422,5472], +"util-arity", +"yup", +[1,2343,6506], +"ompa", +"tibility-kit", +[2,6484,6485], +[2,6448,6486], +[2,5928,3766], +"-xml", +[2,4856,6489], +"@types/d", +"irty-chai", +[2,6491,6492], +[2,4861,674], +"@types/h", +"as-ansi", +[2,6495,6496], +[2,6309,5056], +"@types/l", +"uxon", +[2,6499,6500], +"@types/m", +[2,6502,1950], +"ustache", +[2,6502,6504], +[0,6531,6534,2514,2523], +"@types/mz", +[3,5090,10], +"gress", +[2,6508,6509], +"inon-chai", +[2,5051,6511], +[3,6512,12], +"js__fake-timers", +[2,6513,6514], +[3,4890,9], +"-buffers", +[2,2187,6517], +[2,6516,6518], +"@types/tmp", +"exclude", +[2,1432,6521], +"xml", +"chai-xml", +[2,5313,671], +"genversion", +"reindent-template-literals", +"stream-t", +"o-string", +[2,6528,6529], +[0,9501,9452,9510,638,9496,9493,641,9479,9456,9459,643,9449,9448,9485,2613,9472,3084,3181,3368,9465,3386,9462,3397,3483,9476,3727,9447,9490,9469,4135,4248,9451,9455], +"gherkin", +"tests", +[0,9516,26037,9515,1317,9520,3297,4384,4393,9512], +[1,2343,6536], +[0,6537,6538,6542,2523], +[0,9493,9479,2070,3181], +[0,9516,9515,4384], +[3,6503,10], +"k-fs", +[2,6539,6540], +[0,3378,3409,2977,200,9527,637], +"-compare", +[2,5254,6543], +[3,6512,9], +"gnale", +[2,6545,6546], +"mock-pro", +"cess", +[2,6548,6549], +[2,2769,6550], +[2,4135,6543], +"signal", +"signale", +[1,2343,6556], +[0,0,6538,6558,2399], +"deven", +[0,3378,200,640], +[1,2343,6560], +[0,6561,6562,2514,2487], +[0,641,9479,9539,640,3727,4707], +[0,9516,9515,9542,4384], +"toobject", +[3,3568,10], +"urable", +[2,1541,6565], +"promises", +"ReactiveX", +"WeakSet", +"ES3", +[1,2343,6576], +"cloudsearch", +"uninstall", +"windows", +"cjk", +[0,6595,6603,6604,2523], +"negative", +"shar", +"shared", +"Symbol.toStringTag", +"full-width", +"Object", +"Array.prototype.flatMap", +"Uint8", +"ClampedArray", +[2,6584,6585], +"start", +"starter", +"infer", +"ence", +"inference", +[3,6583,17], +"indLast", +[2,6592,6593], +[0,9547,9548,9550,3105,2745,9552,9554,9556,9558,9560,9562,3023,9563,4110,7610,9565,9566,3032,9568,3114,9569,9573,9577,5961,9580,9584], +"replay", +"[[Prototype]]", +"es7", +"cloud", +"ion", +"formation", +[2,6599,6601], +[0,2070,2899,1448,4255,9586,1389,9588,4257], +[0,9591,3987,2195,9593,1783,5980,1745,9595,1936,3378], +"look", +"last", +"regular expression", +"ECMAScript 2023", +"hot", +"rm -fr", +"chinese", +[1,5293,6617], +"consume", +"look-up", +"ES8", +"rgb", +[0,8391,6628], +"deep-copy", +"iam", +"ES2022", +"tty", +"status", +"length", +"view", +"dom-t", +"esting-library", +[2,6625,6626], +1734998400000, +"elb", +[1,2343,6655], +"getter", +[3,6608,13], +"19", +[2,6632,6633], +"macos", +"__proto__", +"asserts", +"deepclone", +[3,2779,11], +[2,6639,591], +"crypt", +[3,6634,14], +"8", +[2,6642,6643], +"push", +"monorepo", +"lone", +"fast-clone", +"state", +"lru", +[2,1177,1541], +"endpoint", +"a11y", +"weakmap", +[0,6656,0,6658,2537], +[0,666], +"streams2", +[0,9621,9622,8174,9623,9624,9625,9626,9627,9628], +"scheme", +".json", +[2,3383,6660], +"ajax", +"hookform", +[1,2343,6672], +"autoscaling", +"packages", +"linux", +"rfc4122", +[3,2069,10], +[2,6669,1585], +"JSON", +[0,6675,0,6658,2399], +"matchAll", +"iterate", +[0,3420,4484], +[1,2343,6679], +"structuredClone", +"trim", +[0,6682,0,6658,2537], +"@cfcs/core", +[3,3518,11], +[0,683], +"findLast", +[1,2343,6699], +"arktype", +[3,3833,10], +[2,6686,591], +"prototype", +"sigint", +"sinatra", +"Object.", +"value", +"values", +[2,6691,6693], +"reduce", +"reducer", +"Function.prototype.name", +"lockfile", +[0,6712,6717,6658,2523], +"full", +"fullwidth", +"groupBy", +"wait", +"duplex", +"css less", +"helpers", +"optimize", +"optimizer", +"emr", +"nodejs", +"defineProperty", +[0,29309,1797,4484,4135,4748,3181,1836], +"pyyaml", +"call", +"bind", +"callbind", +[0,1192,3420], +"styleguide", +[1,2343,6722], +"watchFile", +"code ", +[0,6730,6736,6744,2537], +"code points", +"Index", +[2,6683,6724], +"Map", +"flatMap", +"l10n", +"WebSocket", +[0,4484,677,666,3527,27921,4480], +"utilities", +"high", +"er-order", +[2,6732,6733], +"dataview", +[0,3420], +"handling", +[2,3827,6737], +"define", +"ebs", +[2,1177,1932], +"estree", +[2,6642,2855], +[0,9621,9647,9623,9628,9648,9649], +[1,2343,6756], +"ES2015", +[3,6608,11], +[2,6747,1278], +"operati", +"ng-system", +[2,6749,6750], +"RegExp#flags", +"loading", +"range", +"rangeerror", +[0,6757,6736,6767,2537], +[0,4484,677,4135,666,91], +"accessor", +"ESnext", +"limited", +"RFC-6455", +"URLSearchParams", +"es-shim API", +"col-buffers", +[2,4900,6764], +"lesscss", +[0,9621,9623,9657,9658,9628,9659], +"nce", +"sequence", +" system", +"file system", +[1,2343,6785], +"pnpm9", +"metadata", +"YAML", +[3,3405,12], +"ES2023", +"es2015", +"simpledb", +"hasOwn", +[2,5010,6972], +"debugger", +" zero", +[2,6577,6783], +[0,6815,0,6819,34352], +"fast-copy", +"spinners", +"predictable", +"ES6", +"rm", +[3,6583,16], +"contain", +"contains", +[2,6791,6793], +"japanese", +[3,6608,14], +[2,6796,1274], +[2,20413,2659], +"byteOffset", +"setter", +"Object.keys", +"flags", +"key", +"ender", +"ponyfill", +[2,20413,8124], +"logging", +"sns", +[2,4626,1155], +"ses", +"output", +"worker", +"export", +[2,1204,6813], +[0,4484,677,682,666], +"tester", +"waf", +"setImmediate", +[0,9621,9624,9667,9626,9627,9628,9649], +"typedarrays", +"walking", +"descriptor", +[1,2343,6826], +"hardlinks", +"buffers", +[0,6833,6736,6851,2443], +"typesafe", +"Set", +"CSS", +"es-abstract", +"agegateway", +[2,4268,6831], +[0,1437,4484,2687,4135,1513,9673,3530,666,3527,27921,53,1710,2858,3404,683,97,29309,87,4232,7913,9676,92,83,71,5757,9678], +[2,6838,1172], +"cloudfront", +"7", +[2,6642,6836], +[3,13067,16], +"ES2019", +[2,6855,6872], +"reuse", +"acter", +"character", +"prese", +"rve-symlinks", +[2,6844,6845], +"input", +[3,1461,9], +"Underscore", +"ec2", +[0,9621,9623,9624,9680,9681,9628,9648,9649], +[1,2343,6861], +"indicator", +"AsyncIterator", +"@vue/cli", +"performant", +"folder", +"Stream", +"0", +"ES2020", +[0,6862,0,6880,2537], +[0,4484,677,682,666,672,9687], +[2,6822,591], +"te", +"delete", +"arraybuffer", +[2,6579,6866], +"emit", +"TypeScript", +"batch", +"rds", +[3,4075,18,6], +[2,6896,11100], +"Uint16Array", +"password", +[3,1519,12], +" manager", +[2,3383,6877], +"mru", +[0,9621,9624,9625,9626,9627,9628,9649], +"byteLength", +"rate", +"css ", +"variable", +[2,6883,6884], +[1,2343,6895], +"speed", +"own", +"has-own", +".env", +"elm", +"ast", +"6", +[2,6747,6893], +[0,6900,6736,6880,4139], +"@vue/cli-", +" compiler", +[2,695,6897], +[3,3938,9], +[0,4484,677,4774,29540,666,26784,672,18052], +"time", +[2,1955,12054], +"bundling", +[2,6916,1987], +"Uint32Array", +[1,2343,6908], +"minimal", +[0,6909,6736,6658,34352], +[0,3420,1437,4484,4135,1836,3530,666,4748,29309], +"collection", +" css", +"nested css", +"slice", +"has", +"sorted", +[3,4079,15], +"iteration", +"ES2021", +"Float32Array", +"regular", +"idle", +"column", +"Iterator", +[1,2343,6927], +"throttle", +"guid", +[0,6928,6934,6936,2537], +[0,687,9704,9706,9708,1676,4135], +"watching", +"sqs", +"vue 3", +"less css", +"glacier", +[0,9712,4856,6503,4874,5254,1429,1488,1567,1177,1891,1893,9714,2205,2899,4193,4474,91], +"sett", +[0,1890], +"settings", +"ascii", +[3,1920,13], +"break", +"inter", +[1,2343,6978], +"internal", +[2,6691,3437], +[2,6747,6836], +"Array", +"Buffer#slice", +[2,6946,6947], +"s3", +"shrinkwrap", +"sham", +"art", +"safe", +":*", +[2,664,6954], +[3,6677,9], +[2,2382,6956], +"Property", +[2,6780,6958], +"korean", +"regexp", +[2,1367,6911], +"beanstalk", +"ES5", +[2,3632,6911], +"take", +[3,6962,10], +[2,6967,695], +"tdd", +"jQuery", +"enum", +"-vanilla", +"enumerable", +"hot-shots", +"JSON-Schema", +"workflow", +"CSSStyleDeclaration", +[0,6982,6984,6936,2523], +"route53", +"wordbreak", +"columns", +[0,9704,9706,1676,2205,2755,4484], +"formatting", +[0,4856,9723,4870,6503,4874,9725,8610,1429,1567,1177,1891,1893,9714,1209,2899,3752,4474,91], +"one", +"fastclone", +"shebang", +"number", +[1,2343,6992], +"ache", +"elasticache", +[0,6995,6999,7000,2537], +[2,6838,7005], +"concurrency", +[0,1107,1112,9730,1480,1676,1797,2179,2709,2755,2984,3181,4135,4290,4351,27921,9731,4720,4726], +"bundler", +"amazon", +"toSorted", +[0,5467,19438,691,9712,9736,9737,5366,4856,9417,9740,5245,9741,9723,6503,4874,9743,6513,9746,9749,8610,1317,1429,1431,1529,1610,1177,1891,1895,2675,2990,9750,2899,3421,1894,4172,4193,4474,4481,91], +[0,1890,200,1523,9753,57,7058,6478], +"chromium", +"obj", +"await", +"move", +"unit-mocha", +"symlink-dir", +"persistent", +[2,11169,7036], +"terminal", +"coercible", +"ES2016", +[1,2343,7013], +[0,7030,7032,7034,2487], +"identifiers", +"includes", +"swf", +"readable", +"protobuf", +"form-", +"validation", +[2,7019,7020], +"RxJS", +"busy", +"fps", +[2,6965,1278], +"-0", +"Observable", +"mixins", +"parents", +[0,688], +"typeof", +[0,5467,19438,9736,9737,4856,6503,4874,1429,1529,1177,1891,1895,2675,2990,2899,1890,1894,4172,4474,91], +"interrupts", +[0,9760], +"fastcopy", +"brands-svg-icons", +"prune", +[3,6583,20], +[2,7038,2395], +[2,7027,591], +"Microtask", +[2,3768,7041], +[1,2343,7063], +"es2018", +"circular", +"streams", +"runtime", +"make", +"serializ", +[2,7049,5218], +"limit", +"Dispatcher", +[2,2013,7052], +"balancing", +[2,3001,7054], +"es2016", +"WebSockets", +"args", +"ath", +"jsonpath", +[2,6796,1276], +"visual", +[0,7066,7068,7079,2537], +"positive", +"es-shim", +[0,7725,9767,9771,9774], +"every", +[0,9778,9781,9783,9785,9786,4874,7677,668,2086,2070,3297,1894,9794,91,4548,1984], +"trimRight", +"mimetypes", +"handlers", +"ratelimit", +"signals", +"rmdir", +"es8", +"findup", +"stable", +"robust", +[0,9796,2195,4030,9797], +"superstruct", +".es6", +[2,6910,7081], +"intrinsic", +[3,6948,11], +"curl", +"symlinks", +"ES2018", +[1,2343,7093], +"writable", +"rapid", +"io-ts", +"weak", +[0,7095,0,7097,2537], +"throat", +[0,9804,9807,9810,9811,9813,9815,9819,9821,9829,9834,9838,9841,9843,9846,9848,9849,9850,9852,9855,9856,9858,9861,9862,9864,9866,9869,9871,9873,9874,9875,9878,9933,9935,9937,9938,9940,9941,9945,9949,9953,9955,9957,9960,9964,9967,9969,9971,9974,9977,9979,9983,9985,9986,9989,9991,9993,9996,9998,10001,10004,10006,10007,10009,10013,10014,10016,10019,10021,10024,10026,10027,10030,10032,10034,10037,10041,10044,10047,10048,10049,10051,10053,10055,10058,7127,10060,10063,10065,10066,10068,10075,10077,10081,10083,10084,6336,10088,10092,10094,10097,10102,10105,10107,10110,10114,10117,10119,10126,10128,28711,10130,10131,10132,10134,10135,10137,10139,10142,10144,10145,10146,10147,10149,10151,10153,10156,10159,10162,10163,10165,10167,10170,10173,10178,10180,10183,10186,10188,10191,10193,10195,10197,10198,33633,10200,10201,10203,10204,10206,10207,10208,33138,10210,10213,10216,10219,6339,10223,10226,10228,10229,10230,10231,10234,10235,34233,10237,10239,10241,10245,10247,10248,10249,10250,10253,10255,10260,10262,10264,10267,10269,10272,10273,10275,10276,10278,10280,10283,10285,10290,10291,10292,10293,6348,6351,10295,10300,10302,10304], +"restful", +[0,188,8588,4967,10307,4963,10309,10310,10313,10315], +"deep-clone", +"Rx", +"symlink", +"vpc", +"whatwg", +"typanion", +"Float", +"64Array", +[2,7104,7105], +"$.extend", +"Promise", +"Reactive", +"Extensions", +[2,7109,7110], +[1,2343,7113], +[0,7118,7124,7097,2523], +"vest", +"from", +"-package", +[2,3250,7116], +[0,28591,29506,1473], +"parsing", +"or", +[2,4358,7120], +".inspect", +[2,614,7122], +[0,10321,4493], +"fromEntries", +[2,6691,7125], +[2,10056,1631], +"getopt", +"-validation", +[2,6659,7129], +"filter", +"Emitter", +[2,2013,7132], +"URL", +"fixed-width", +[1,2343,7137], +[0,0,7138,7097,4139], +[0,48,53,87,2071,2323,2332,2361,2367,2450,10327,10328,4039,4320,4323,4361], +[1,2343,7140], +[0,0,7142,7097,4139], +"encryption", +[0,48,53,87,2323,2332,2361,2450,4039,4320,4323], +[1,2343,7154], +"TypedArray", +"isConcatSpreadable", +"StyleSheet", +"create", +"mkdir", +"mkdirs", +"zero", +"sameValueZero", +"linewrap", +"side", +[0,0,0,7156,2537], +"listeners", +[0,10337,10339,10340,5122,5995,977], +"censor", +"watcher", +"typeerror", +[1,2343,7166], +"make dir", +"bound", +"patch", +"in-js", +"css-in-js", +[0,7173,0,7186,2537], +"deepcopy", +"setPrototypeOf", +"characters", +"pipe", +[2,6747,2855], +"Push", +[0,10347,10348,703,10351,10353,10354,10355,10357], +"trail", +"cloudtrail", +"awesome", +"sauce", +[2,7176,7177], +"banner", +"redux-t", +"oolkit", +[2,7180,7181], +"dete", +"rministic", +[2,7183,7184], +[0,10337,10339,10340,5122,5995,990,705], +[1,2343,7195], +"extension", +"lazy", +[3,1705,10], +[2,7190,6877], +"es2017", +"search", +"ES2017", +[0,7203,0,7206,2523], +"TypeBox", +" in css", +[2,6436,7197], +"Streams", +"aws", +"console", +"Reflect.getPrototypeOf", +[0,10363,3171,10367,10351,703,10370,10373,706,711,10374], +"directory", +[2,6607,591], +[0,10337,10339,10340,5122,5995,10376], +[1,2343,7216], +"colour", +"nope", +"flag", +[3,2982,14], +"syntaxerror", +[3,3904,10], +[2,7213,1974], +"kinesis", +[0,7217,0,7225,2537], +[0,3171,10382,10373], +"rm -rf", +"exit-", +"exit-code", +"ES7", +"jsdiff", +"private", +"slot", +[0,10337,10339,10340,5122,5995,10376,710,10384], +"sigterm", +"group", +"less.js", +"gdpr", +"east-asian-width", +[3,6820,10], +"Int32Array", +"argument", +"compile", +" less", +[2,7234,7235], +[1,2343,7238], +[0,7240,7243,7246,2537], +"callbound", +[0,10389,1170,1364,1437,2026,2220,2222,2659,2674,2817,1209,3776,10397,38,13781], +"callback", +"installer", +[0,48,53,87,10401,4856,9417,6494,10406,4870,6503,10410,4874,10413,6513,6512,24164,1009,1011,1429,1431,10417,1587,1177,1881,1883,1895,1915,10419,1938,1951,2899,3297,3421,1894,3752,4039,4193,4196,4232,4494,91], +"256", +"tostringtag", +[0,10426,10427,5284,10430,5472,10432], +" data", +[2,7223,7247], +"uted-types", +[2,1534,7249], +"nel", +"channel", +"iterator", +"mapreduce", +[2,7017,3101], +[3,5804,10], +[1,2343,7261], +"less mixins", +[2,6796,6859], +"forEach", +[0,0,0,2514,2399], +"description", +"Symbol", +[1,2343,7266], +"generics", +[0,7267,0,7269,2487], +[0,3509], +"stdlib", +[0,6649,6355,89,188,3709,1542,91,5284,4967,5995,2202,181,2130,38], +"typed array", +[1,2343,7273], +"call-bound", +[0,7274,7277,2514,2537], +[0,10593,10594,10596,10597,10600,10602,10603,10604,10605,10606,10608], +"WeakMap", +[2,6691,3426], +[0,4856,6503,1429,1628,1863,2297,2881,2895,2897,2900,2904,2899,4039,4940,4307,4508,91,2924], +[1,2343,7279], +[0,0,7280,7281,2537], +[0,8648,10614,816,10615,966,968,13204,4874,10616,1637,1177,28727,10619,32765,10621,2203,2832,3561,3566,1894,10624,10627,3980,10630,10632,4042,4057,4076,4333,4474,4484,4494,4508,10633,4514,10636,10638,10639,10643,30098,91,10646,4614,32507], +[0,6653,7320,10655,10650,10648,1623,4964,9204,10657,10656,1745,10052,10667,1936,10661,4374,3430,5284,10651,10663,4386,10665,10658,10654,10659,91,8295,4270,28842,89,582], +"stateless", +[3,6670,11], +[2,7283,6647], +"telephone", +"some", +"efficient", +"_.extend", +"wget", +[3,6594,18], +"lter", +[2,7290,7291], +"remove", +[1,2343,7302], +"soft", +"Microsoft", +"styling", +"ie", +"HyBi", +"Int16Array", +"cloudwatch", +[0,7304,7306,2514,2537], +"css nesting", +[0,10675], +"mime-db", +[0,10708,10703,10691,10706,1178,10688,1700,10677,1937,2151,10697,2323,2338,2384,2419,2496,2508,10686,10678,3159,3493,10683,10681,4431,91,10687], +[1,2343,7312], +"dynamodb", +[2,6642,6893], +"phone", +"Int8Array", +[0,7314,7321,7322,4139], +".prototype.flags", +[0,1091,1758,4449,10739,2070,2278,1149,9892,10761,4747,1177,4039,4135,4072,4734,2026,10752,10756,1290,1457,1764,2720,1894,4171,1513,10753,10757,1389,10754,2689,3160,3310,53,3429,10760,104,10759,58,692,4228,10746,101,10737,4005,4562,5216,10748,87,10738,10755,90,10721,1942,3957,68,10723,2851,10744,4851,92,10731,10734,10751,5874,10728,5756,10720,5818], +[3,7313,11], +[2,7315,6913], +[2,7084,7316], +"access", +"ibility", +[2,7318,7319], +[0,4389,10763,4232], +[0,10765,4643,200,5130,6400,10766,5131,10768,5995,8889,10769,10771,5256,10772,7028,5198], +[1,2343,7324], +[0,0,7325,7326,34352], +[0,1177,6059,10777,10779,10780,10783,10785,1613,1615,10786,2151,2735,10788,27921,33050], +[0,10791,5130,10792,45,10793], +[1,2343,7328], +[0,7329,7330,7331,34352], +[0,3763,2813,10800,10799,2771], +[0,2675,89,4426,1177,4042,1651,2924,1894,10852,3824,4270,91,5087,4874,4880,10846,10858,3889,10855,10810,192,10837,4883,3885,10805,4057,10808,2686,1959,1879,1938,4073,10848,10854,10828,10831,972,1895,1947,1955,811,10851,10821,4023,10817,10840,968,1011,1961,10815,10841,10811,816,10825,974,10827,4531,5467,1883,10844,1009,6068,10836,5700], +[0,89,4426,10860,10863,10865,10866,10867,10868,4967], +[1,2343,7333], +[0,7334,7335,7337,2523], +[0,26364,5917,2696,3875,3950,4022], +[0,5517,53,5652,603,10874,10875,10876,966,972,30788,974,10879,10883,7729,10886,4874,10887,4880,4883,4892,1009,1011,1170,668,10888,1177,1895,1898,1935,1938,1947,1955,1959,1961,2151,2731,2832,2854,3244,3310,1894,3765,89,3824,4039,4201,4484,4493,4494,91,8550,8552,1984,4747], +"quote", +[0,3875,89,6588,6081,6696,6913,2696,2700,7182], +[1,2343,7339], +[0,7340,7341,7342,2537], +[0,10895,10897,2007,20378,10898,3090,3530], +[0,8850,816,10902,10904,4042,4227,4232,91], +[0,4042,1932,3378,5260,10906,3209], +[1,2343,7344], +[0,7345,7346,7347,2399], +[0,10895,5251,1699,10912,814], +[0,53,5889,5583,811,8850,1856,4042,4227,10916], +[0,4042,1932,6778,3378,5260], +[1,2343,7352], +[2,7350,7351], +[3,818,9], +"gent-chat", +[0,7354,7355,7356,2537], +"microdiff", +[0,1415,4449,1594,1983,1437,2205,3188,3539,668,2026,10923,2602,4213,1457,10947,10925,10927,10929,2858,10930,10931,10933,10935,606,10936,10939,10940,1030,10942,608,603,9110], +[0,10944,3348,89,1177,4039,10946,1984,1894,3824,6520,91,9227,4874,7819,2990,4880,4892,3401,10949,6494,4883,4131,4315,10951,1959,1895,1947,1955,1011,1961,3708,10960,1009,10964], +[0,10946,9134,6869,8172,10966,8623,1745], +[1,2343,7359], +[2,819,6706], +[0,7360,7361,7362,2523], +[0,10973,10981,10984,2161,7610,7353,3266,188,7349,10990,10992,28910,11005,7358,10975,10995,8079,29841,10996,10978,7374,10999,11003,28843], +[0,23531,8648,29273,11016,5337,11018,2611,2832,89,11022,4383,1983,11026,11033,1984,11039,7387,11041,28988], +[0,4627,1745,3452,11043,4386,8124,188,8588], +[1,2343,7364], +[0,7365,7366,7367,2537], +[0,11049,7610,10975,8079,7387], +[0,11051,6798,6806,2078,1983,1984,4745,818,11039], +[0,5592,1745,2078,3452,8124], +[1,2343,7369], +[0,7370,7371,7372,2537], +[0,11064,11065,11066,1699,11071,11073], +[0,11075,11076,11079,11080,11082,11083,4856,6494,11085,6503,1170,1364,1414,1610,2026,2633,2899,11086,3750,4261,4474,91], +[0,13428,1388,11862,11861,11857,8210,11088,8214,27718,8791,181,4967,1098,89,188,5982,6969,1973,5472], +[1,2343,7376], +[2,7375,582], +[3,11003,12], +[0,7377,7378,7379,2399], +[0,11064,11065,11066,11093,1699,11073], +[0,11075,6503,11096,11105,11109,11111,11112,1170,1414,1610,2899,11086,11113,4261,824], +[0,13428,1388,11862,11861,11857,8210,11088,8214,27718,8791,181,4967,5982,6969,1973,5472,824,11116,11117], +[1,2343,7381], +[0,7382,7383,2514,2537], +[0,11124], +[0,11126,11130,11133,11134,11138,668,2675,2832,2990,2899,3421,1894], +[2,10829,45], +[1,2343,7386], +[0,7388,7389,7390,2537], +[2,11004,23], +[0,89,3824,11143,602,7384,11146,11151], +[0,1983,89,4451,3555,29318,3824,16485,91,9311,3975,4880,30157,6271,7610,32415,3120,10895,28829,3968], +[0,1739,1745,4270,29043,10824,11156,29045,1783,29181,6718,25172,4627,4963,89,188,1098,3709,5926], +[1,2343,7392], +[0,7393,7394,7395,2487], +[0,11161,11164,5145,11168,97,8597,449,11172,452,456,11175,11179,11182,11185,11186,11188,1325,11189,1461,1582,1673,11191,11192,5561,11193,11196,11197,11199,11201,11202,11204,11207,5060,11208,11210,11212,11213,11216,11219,11220,11221,11223,11224,11225,11228,11231,11233,3787,11235,11236,11238,11240,11242,3788,11244,11246,11249,11251,3789,3810,11253,11257,11261,3906,11264,4426,4427], +[0,5076,53,11267,11271,368,7948,11273,11274,10875,11275,10821,10825,10827,10828,11277,11282,11285,10837,10841,11288,966,968,972,974,11290,5087,11292,11296,11300,11301,4870,8149,11303,11305,4880,11307,4882,4883,11312,11315,11317,11320,11322,1009,1011,11325,11331,11333,1195,11335,1437,1448,1610,11336,1789,11343,8161,1177,1879,1895,1915,1924,1938,1939,1947,1948,1959,1961,10851,1982,2071,11345,2151,2193,2070,2665,2675,2686,2696,2697,2720,2758,1192,11347,2771,2780,2784,11348,11350,2814,2832,11356,5102,2990,1209,11357,3213,3445,1894,3703,3717,3725,3730,3763,11360,11362,11363,89,3807,3817,3820,3824,4934,11366,11368,11371,11374,3885,11377,11378,3984,3985,11380,11382,11383,4135,4183,4201,4320,11384,11389,4323,11396,11397,4072,4474,4508,91,11400,4676,11401,11405], +[0,5127,4627,4963,4964,5130,4967,89,5128,181], +[1,2343,7397], +[0,7398,7399,7400,2537], +[0,11413,11416,11417,11420,11421,11422,2161,1209,11428,11434,4443,3348], +[0,549,4870,11438,7819,1759,1999,3400,3421,11439,4469,11440,4494,1984,4677,4693], +[0,11442,11443,11445,11446,11449,11448,11450,11451,11452,11453,11454], +[2,11425,7402], +"-fork", +[2,12213,7404], +[3,12229,13], +[1,2343,7407], +[2,7408,594], +[0,7409,7399,7400,2523], +[3,7403,15], +[0,11413,11416], +[1,2343,7411], +[0,7412,7413,7400,2537], +[0,11417,11420,11421,11422,7401,2161,2674,1209,11426,3310,11428,11430,11434,4443,3348], +[0,11436,4870,4874,11438,7819,1166,1759,3400,1894,11439,4469,4474,11440,4487,4490,91,2924,4677,4693], +[1,2343,7415], +[0,7416,7417,7418,2487], +[0,2203], +[0,107,7844,11470,1177,1895,1953,1972,3709,91,4523], +[0,1177,1541,7625,3709], +[1,2343,7420], +[0,7421,7422,7423,2523], +[0,26364,23826,11477,1082,977,11478,11479,2929,3090,11480,11481,5152,4200], +[0,13471,8648,840,11485,4874,5162,11486,4042,3709,4359,91,1983,1984], +[0,5130,11489,3709,5167,1983], +[1,2343,7425], +[0,7427,7428,7429,2523], +"location", +[0,30023,11501,1699,3090,11497], +[0,2278,1983,3709,5245], +[0,11504,11506,1983,3709], +[1,2343,7431], +[0,7432,7434,7435,2523], +[0,53,11516,87,90,92,11518,11520,11522], +"routing", +[0,1195,3150,4027,2924], +[0,11525,8221,89,2924,11526], +"redirect", +[1,2343,7438], +[0,7439,7440,7441,2523], +[0,11533,11534], +[0,11536,28491,1610,91], +[0,11538,11539,1172,91,9561,2924,11540], +[1,2343,7443], +[0,7444,7445,7446,2523], +[0,1367,6372], +[0,2070,2323,1192,2278,4039,3561,1894,1587,2504,4320,2464,91,4874,1165,2482,3678,4330,11598,11592,11591,11595], +[0,4329,4963,5926,11600,11601,6082,8727,181,4967], +[1,2343,7448], +[0,0,2667,7449,2399], +[0,11608,11609,11612,11613,190,11615,11617,4967,91,5284,11619,11622,11624,11626,11627,11630,11631,11633,11634,11636,11639,11640,32767], +[1,2343,7451], +[0,4424,4429,4442,2537], +[1,2343,7453], +[0,7454,7455,7456,34352], +[0,97,1562,4484], +[0,53,83,87,92,19181,442,8648,5583,811,816,6373,10615,11796,4874,1009,1011,1208,1177,1895,11935,11938,11940,11943,3401,1894,4042,11802,4172,11803,91], +[0,965,1936,11806,11807,5284,11815,8221,91], +[1,2343,7458], +[0,7459,7460,2514,2537], +[0,11821], +[0,972,30788,4880,4883,1030,1597,3401,89,3824,5564,7464,27122], +"pkgroll", +[1,2343,7468], +"create-vue", +[2,7467,7472], +[2,7466,7469], +"create-e", +[3,11821,16], +[0,7459,7470,7471,2523], +"slint-config", +[0,3709,4355,5160,1972,11827,1011,27122,840], +[0,32401,3766,3709], +"persist-client-core", +[1,2343,7474], +[0,7475,7476,7477,2537], +[0,11833], +[0,11835,5087,1009,11837,1177,1886,11840,1895,1955,1958,1192,2780,2821,1776,3165,4468,4469,91], +[0,11842,11843,11846,11847,6875,4967,5576,4978], +[1,2343,7479], +[0,7480,7481,7482,2523], +[0,97,966], +[0,1651,91,11853,3400], +[0,5472,1651,181,965,11857,6564,11861,11862], +[1,2343,7484], +[0,7485,7486,7487,2537], +[0,11357,11869,3527,3717,97,51,11868,11871], +[0,2832,91,11853,1393,1423,11875,968,11884,11879], +[0,5472,181,965,2832,2275,11857,6564,11861,11862], +[1,2343,7489], +[0,7490,7491,7492,2537], +[0,11891,11869,11890,3527,63,11871], +[0,2832,2022,4042,1984,91,11853,11893,3717,11899,811,11884,11896], +[0,5472,965,1192,2832], +[1,2343,7494], +[0,7495,7496,7497,2399], +[0,1437,11891,2777,3717,11907], +[0,1192,2675,89,1177,1894,48,1527,91,53,5087,4880,3720,3857,97,4131,5091,3904,11909,1652,4889,5085,5103,11912], +[0,5472,1975,1192,3857], +[1,2343,7499], +[0,6263,7500,7501,2523], +[0,966,968,4880,4883,1437,11918,2777,11853,3401,89,3824,4039,91], +[0,5472,89,181,965,2832,2275,11857,6564,11861,11862], +[1,2343,7503], +[0,0,7504,7505,2537], +[0,2742,2832,89,2022,668,4474,11944,3824,11890,91,11853,4880,11875,11952,11943,11931,11938,11929,966,11948,11935,972,11933,11940,968,5556,11925,6515,1915,11924], +[0,7214,6627,89,5472], +[1,2343,7507], +[0,7508,0,7509,2487], +[0,10347,11959,978,989,991,993,996], +[0,11961,38,5995,27,5130,5592], +[1,2343,7511], +[0,0,0,7512,34352], +[0,11961,10339,10340,5122,5995,977], +[1,2343,7514], +[0,0,0,7515,2443], +[0,11961,10339,10340,5122,5995,2947,977], +[1,2343,7520], +"fp", +"drag", +"react ", +[0,7533,7536,7537,2537], +"animation", +[2,7519,7521], +"pure", +"fantasy-land", +[2,4570,7046], +[3,5941,12], +[2,7526,1155], +"framer", +[3,7527,19], +[2,7529,6600], +"pose", +"tacit", +[0,11974], +"balanced", +"react pose", +[0,1414,4494,2675,91,4874,975,11976,192,11978,5467], +[0,11961,10339,10340,5122,5995], +[1,2343,7539], +[0,0,0,7540,2487], +[0,11961,10339,10340,5122,5995,984], +[1,2343,7542], +[0,0,0,7543,34352], +[0,11961,10339,10340,5122,5995,986,11988,10345], +[1,2343,7545], +[0,7546,0,7547,2537], +[0,987], +[0,11961,10339,10340,5122,5995,988,2739,11995,11996], +[1,2343,7549], +[0,7550,0,7551,2487], +[0,10347,12003,1001,1003], +[0,11961,10339,10340,5122,5995,990,705], +[1,2343,7553], +[0,7554,0,7555,2537], +[0,11974,3171,12011,978,980,12016,991,997], +[0,11961,10339,10340,5122,5995,10376], +[1,2343,7557], +[0,7558,0,7559,4139], +[0,11959], +[0,11961,10339,10340,5122,5995,38], +[1,2343,7561], +[0,7562,0,7563,2523], +[0,3171,985,12027], +[0,11961,10339,10340,5122,5995,10376,710,10384], +[1,2343,7565], +[0,7566,0,7567,34352], +[0,3171,12027], +[0,11961,10339,10340,5122,5995,990,705,1000,5284], +[1,2343,7569], +[0,0,0,7570,2487], +[0,11961,10339,10340,5122,5995,990,705,1002,3634,3766], +[1,2343,7572], +[0,0,0,7573,2523], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094], +[1,2343,7575], +[0,7576,0,7577,34352], +[0,12099,12103,12104,12105,4484], +[0,12108,7188,5995,11100,6740,5592], +[1,2343,7579], +[0,7580,7581,7586,2443], +[0,2687,5569,12118,1012,12121,12123,12124,5604], +[0,1091,3127,1984,1894,12126,9363,4880,3117,12127,4555,8818,7677,3137,12133,5551,12137], +[2,7583,7584], +[3,439,8], +"react/eslint-plugin", +[2,5557,26375], +[0,1177,6741,6939,91], +[1,2343,7588], +[0,7589,7590,7591,2487], +[0,1676,5552,12124,5604,12145], +[0,1984,7677], +[0,6892,5286,5284,91,57,5341,1177], +[1,2343,7593], +[0,7596,7590,7599,2523], +"point-free", +"curried", +[0,5552,439,5604,12145], +"gestures", +"3d", +[0,1177,91,6742], +[1,2343,7601], +[0,7602,7622,7626,4139], +[0,365,370,12159,1461,12160,12163,1832,12166,12170,2609,1209,12172,3220,3744,12173,11202,12175,11216,11224,3787,3789,3849,11374,3911,4023,4163,4649,12176], +[3,346,11], +"abs-extension", +[2,7603,7604], +"cssfilter", +"root-node-polyfill", +[2,2183,7607], +"slugger", +[2,2287,7609], +"deflist", +[2,3108,7611], +[3,5953,13], +"eta", +[2,7613,7614], +"sup", +[2,3108,7616], +[3,3125,13], +"rule-", +[2,7619,6706], +[2,7618,7620], +[0,48,53,61,71,83,85,87,90,92,192,5467,968,972,4859,5540,4870,12179,4880,4883,1009,1011,12182,12184,1170,1178,1193,1195,12186,1210,12191,12193,1527,12195,1628,1652,1843,1845,8160,1177,1959,1961,2092,2151,2651,2675,1192,12196,11348,12198,2990,3177,3222,3463,1894,3786,89,3824,3895,3904,4257,4307,4320,4946,12201,12205,12206,91,4537,4027,2924,4676,4677], +[3,346,10], +[2,7623,5891], +[3,1879,13], +[0,89,5128,4627,4963,4967,12208], +[3,3703,9], +[2,7627,1541], +[1,2343,7649], +"sconfig", +[2,7603,7630], +"@types/css", +"ithub-slugger", +[2,5246,7633], +[3,4869,9], +"-yaml", +[2,7635,7636], +"arkdown-it", +[2,6502,7638], +"-attrs", +[2,7639,7640], +"anitize-html", +[2,5051,7642], +[2,1368,4406], +[2,668,7644], +[3,5961,13], +"estgen", +[2,7646,7647], +[0,7652,0,7653,2523], +"yandex", +"yfm", +[0,1497,2813,1209,3266,12224,9355,12220,12226,12233,12217,12222,2626,12215,12219,12232,12216,7406,7403], +[0,6108,6038,5130,1936,12236,1932,6106,12214,6105], +[1,2343,7655], +[0,7670,0,7691,2523], +"magic-", +"bytes.js", +[2,7656,7657], +[3,347,11], +[2,7659,614], +"discord-", +"api-types", +[2,7661,7662], +"@sapphire/snowflake", +[2,7659,6910], +[3,7664,10], +"async-queue", +[2,7666,7667], +"@vladfrangu/async_event_emitter", +[0,1018,1025], +"turbo", +[2,7659,3888], +[3,4828,16], +[2,7673,1803], +"@vite", +"st/coverage-v8", +[2,7675,7676], +"@favware/cliff-jumper", +"-pretty", +[2,4525,7679], +[2,1876,7680], +"extract", +"extractor", +[2,4610,7683], +[2,7659,7684], +"esbuild-", +"plugin-v", +"ersion-injector", +[2,7687,7688], +[2,7686,7689], +[0,10039,12244,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +"discordapp", +"discordjs", +[1,2343,7695], +[0,7696,0,7697,2537], +[0,12253], +[0,1017,12255,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +[1,2343,7699], +[0,7670,0,7700,2537], +[0,6847,12260,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +"generated", +[1,2343,7703], +[0,7704,0,7705,4139], +[0,12265,1025], +[0,1022,12268,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +[3,5923,13], +[2,4364,57], +[2,7706,7707], +"@aws-sdk/client-s3", +[2,7623,5576], +[1,2343,7712], +[0,0,0,7732,2487], +"ranslation", +[2,3118,7713], +[2,7623,7714], +[3,7715,11], +"ermaid-extension", +[2,7716,7717], +"openapi-", +[2,7719,7188], +[2,7623,7720], +"yfm2xliff", +[2,352,7722], +[3,692,9], +[2,7724,364], +[3,4869,11], +"-safe", +[2,2849,7727], +[2,7726,7728], +"@yandex-cloud/nodejs-sdk", +"bem-cn-lite", +[0,594,12274,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +"nanostores", +"threads", +[2,7734,4406], +[1,2343,7741], +[2,4807,1149], +[3,4856,10], +"lk", +[2,7738,7739], +[0,7742,7753,7754,2523], +[0,3763,1594,2026,1000,1536,12286,12285,12287,12284,1032], +"tml-escaper", +[2,6495,7743], +"ime-types", +[2,6502,7745], +[3,5055,9], +"elljs", +[2,7747,7748], +"@types/t", +"ar-stream", +[2,7750,7751], +[0,1192,4135,4468,4342,1193,91,53,9227,5087,4874,12292,11976,6494,12290,9240,7806,7708], +[0,12294,4967,970,12295,12296,5983,6802], +[2,12302,26070], +[1,2343,7757], +[0,7764,7765,7766,2537], +[3,7639,15], +[2,7758,671], +[3,7730,14], +[2,7760,7625], +[2,7760,7628], +[2,7760,2190], +[0,34690,12301,7733,28314,7755,12305,12307,28554], +[0,4481,4494,4493,1983,2675,1177,4039,12309,1984,668,3561,23535,4320,3350,3541,28464,4201,4360,91,4874,2990,3400,4880,29000,29038,11976,30684,17214,4328,33264,33385,34203,4523,34205,7677,33382,5517,5530,34207,4323,12312,32818,5535,12315,30630,11396], +[0,11608,12318,12319,12322,12324,12326,12328,12329,12331,11612,12334,12336,11010,12337,12338,190,12339,4967,91,12342,12346,12348,12349,12350,11619,11622,11624,12354,12355,11640], +[1,2343,7768], +[0,7769,7770,7771,2523], +[0,1593,4376,53,1393,3090,87,3957,12361,5658,5660,5778,5810], +[0,20378,1983,1082,1531,3527], +[0,4967,1983,11504,1028], +[1,2343,7773], +[0,7774,7775,7776,2487], +[0,53,12370,12372,28465,10879,3878], +[0,30521,89,3824,28865,1531], +[0,1172,27158,89,3878,1983,11504], +[1,2343,7778], +[0,7779,7780,7781,2523], +[0,1012,2071,4523,4630], +[0,5536,4874,1177,1988,2020,7461,1894,4494,91,1984,188], +[0,188,7463,7465,1177,91], +[1,2343,7783], +[0,7784,7785,7786,2399], +[0,1091,1092,12384,2657,12385,3509,38,4151,7707,5971,4745], +[0,2026,2899,4255,4342], +[0,2026,3452,8124,1745], +[3,980,17], +[2,7787,57], +"encrypt", +"encrypter", +[2,1576,7790], +[2,3115,1623], +[2,2287,7792], +"greenlock-express", +"memoryst", +[2,7795,147], +"minisearch", +"selfsigned", +"sitemap", +"sql.js", +"workerpool", +[1,2343,7825], +"ody-parser", +[2,4853,7803], +"mpression", +[2,4860,7805], +"-session", +[2,6494,7807], +"ormidable", +[2,5537,7809], +"mpts", +[2,6508,7811], +[3,7643,9], +[2,7813,367], +"ql.js", +[2,5051,7815], +"@types/u", +"uid", +"@types/uuid", +"@types/w", +"orkerpool", +[2,7820,7821], +"wasm", +[2,7686,7823], +[0,7829,7830,7831,2523], +"razor", +"sqlite", +"aspx", +[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12405,12406,1582,1699,12409,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,3788,11244,3789,3810,5564,3846,12435,12438,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12444,12445,4549,4555,12447,1002,12448,12449,12452], +[0,192,5467,7634,12455,12458,7637,12459,4874,12461,8149,4880,4882,4883,12462,12463,12467,1177,10321,2071,2079,12471,12472,2675,2990,1894,3706,3708,89,3824,4320,4474,91,1984,12473,12475], +[0,1179,12445,2924,89,12478,12479,1783,4963,1745], +[1,2343,7835], +"@dnd-kit/core", +[3,7833,9], +[0,0,7841,7843,2537], +"modifiers", +[2,7834,7836], +"sortable", +[2,7834,7838], +[2,7834,6731], +[0,4874,1009,1011,1177,1881,1938,4039,4042,4076,91], +"ui-components", +[0,5995,12586,12588,12589,12590,12592,12593], +"@stylistic/eslint-plugin-js", +[3,7844,11], +[2,4324,1932], +[2,7845,7846], +[1,2343,7852], +"@wordpress/api-fetch", +[3,7849,11], +"block-", +[0,7853,7859,7860,2537], +[0,12600], +"ion-", +[2,7854,1464], +[2,7682,7855], +[2,5313,7856], +[2,7850,7857], +[0,53,5241,87,94,12602,12604,6503,4874,1145,1503,12607,1177,2297,2881,2886,2895,12609,2897,2900,2910,2899,3400,3421,3456,4039,4042,4045,12611,4055,4067,4071,4075,12613,4474,12614,91], +[0,12616,7102,2013,2018,12617,12618,12621,12622,12620,6553,1858], +[1,2343,7864], +[2,7153,694], +[2,5335,7862], +[0,7865,7866,7867,2523], +[0,3173,12627], +[0,3421,2899,1177,1693,1954,1938,1958,1903,1948,1970], +[0,1563,12631,8316,1080], +"promis", +"ify-", +[3,1455,13], +[2,7869,7870], +[2,7868,7871], +"swc-loader", +[1,2343,7875], +[0,7876,7878,7879,2523], +[0,1149,1362,1209,3230,1552], +"ol", +[0,2899,1429], +[0,2663,1081,5122], +"mixin", +"WordPress", +[1,2343,7883], +[0,7884,0,2514,2399], +[0,1082], +[1,2343,7886], +[0,7896,7898,7899,4139], +[3,4872,15], +"amelcase", +[2,7887,7888], +[3,7746,9], +"nimist", +[2,7890,7891], +[3,5090,9], +"etty-ms", +[2,7893,7894], +[0,1170,1437,1525,2088,2151,2720,3467,7956,4183], +".d.ts", +[0,811,8850,816,10615,12654,4864,12656,4866,4874,4039,4042,8849,11054,4076,12206,4484,4487,91], +[0,200,1085,188,89,12659,12660,91,6710], +"definitions", +[1,2343,7902], +[0,0,7903,7904,2537], +[0,1429,2685,2899,1894,4039], +[0,2056,3164,12666,4560], +[2,363,3428], +"memoize", +[2,363,7906], +[3,370,10], +"erialize", +[2,7908,7909], +[3,1212,14], +"acros", +[2,7911,7912], +"root", +"find-root", +[1,2343,7918], +"stylis", +[0,0,7923,7924,2523], +[3,5272,14], +"d-nodes", +[2,7919,7920], +[2,1174,7921], +[0,2899], +[0,12674,1087,2124,12619,12675], +[1,2343,7926], +[0,7927,7928,7929,4139], +[0,12680,12681,1676,12685,5303], +[0,5245,12688,6501,4874,7677,4193,4474,4494,1984], +[0,12692,12693,1605,12694,4116,8791], +[1,2343,7934], +[2,366,6990], +[2,7908,5375], +[2,363,594], +[0,7936,7938,7939,2487], +"@definitelytyped/dtslint", +[0,43,46,1093,1116,1132,1140,1298,1316,1318,1321,1322,1336,1339,1342,12701,1344,1346,1348,1350,1352,12703,1354,1356,1358,12704,1376,1386,1402,1425,1428,12705,1440,1450,12708,12709,12710,12711,12714,1663,1706,1711,1715,2019,12715,12719,2058,2059,2177,2217,12720,2563,2567,2605,2606,12722,2723,2950,2954,2957,12726,2962,3086,3099,12730,3134,12733,3186,3240,3245,3262,3295,3439,12736,3443,3472,3535,3558,12737,3777,3931,12740,4105,4124,12743,12747,4168,4173,4177,4192,4206,4235,12749,4236,4258,12750,4267,4338,12755,4347,4352,4370,4433,4456,4461,12756,12757,12760,4548,12763,12764,4724], +"import-cwd", +[0,4880,4883,2079,89,3824,91], +[0,4627,4963,4964,5130,4967,89,5128,181,4653], +"is-pro", +"p-valid", +[2,7940,7941], +[2,363,7942], +[3,7933,10], +"se-insertion-effect-with-fallbacks", +[2,7944,7945], +[1,2343,7949], +[2,363,89], +[0,7950,7951,7952,2537], +[0,12771,12773,12775,1389,12776,1536,1676,12777,12779,2026,12783,12785,2659,12788,2822,12789,12792,12793,3183,12795,12799,12802,3923,12809,4153,4165,12812,12814,12818,3348,4650], +[0,12820,1610,2554,3421,12823,4255,4389,4400], +[0,1090,1388,12826,4384,4389,5472], +[1,2343,7954], +[0,7955,7958,7959,2523], +[0,2069,12832,12834,12837], +[2,17912,7957], +"estimator", +[0,12839,811,8850,816,10817,4856,6503,4874,12842,1009,1011,1092,1389,1429,1610,1673,12846,1177,1895,2070,2675,12847,2806,2820,12848,2297,2881,2900,2990,2899,12849,3310,3421,1894,12850,4042,4073,4474,12851,91,12852], +[0,6671,2844,1155,7020,2860,2845,7527,7530], +[1,2343,7961], +[0,7962,7963,7964,2537], +[0,1091], +[0,12839,5087,4874,1009,1011,1091,1177,1895,2675,1192,12848,2990,1894,4468,91], +[0,12860,6975,1671,7020], +[1,2343,7966], +[0,7967,7938,7939,2399], +[0,43,46,1450,3777,4548], +[1,2343,7969], +[0,6203,7970,7971,2487], +[0,3460,12870], +[0,1094], +[1,2343,7973], +[0,7974,7975,7976,2537], +[0,12879,4567], +[0,12882,2899,3421,4535], +[0,12884,12886,12887], +[1,2343,7978], +[0,0,7979,7980,2487], +[0,2278], +[0,1623,2278,181,6398,6400,2869,12893], +[1,2343,7982], +[0,0,0,7983,2523], +[0,1098,5130,1388,12899], +[1,2343,7985], +[0,0,0,7986,2523], +[0,1098,5130,1388,7521,12899], +[1,2343,7988], +[0,7989,0,7990,2523], +[0,12910,12914,19,21,24,12915,12917,1149,1165,1437,1532,1628,1637,1676,12918,1687,12923,12925,12926,2054,2092,7076,2151,12929,2070,2651,2712,2720,12930,2843,2921,2925,695,2969,1209,3181,12935,3342,3368,3459,3467,3560,3618,3786,3981,814,4039,4085,4111,12936,4135,12937,4230,12944,4307,4333,4334,1241,4430,91,4027,4648,2924,4681,4689,4695,4769], +[0,1098,1102], +[1,2343,7993], +[2,27465,3469], +[0,0,0,7994,2537], +[0,12074,29,1388,12899,5027,12951,4963], +"blurup", +[1,2343,34387], +[0,6323,2398,12956,2899,4425], +[0,7244,1111,12958,12959,12961,12963,12964,12965,12966,12967,12968,12969,12970,12971,12972,12973,12974,12975,12976,4984,12977,200,12978,1473,1512,7208,9753,6876,7201,12979,12980,6983,12981,12982,12983,12984,12986,12987,2929,3073,6807,12990,12991,10958,6616,4166,12992,12994,1871,590,592,7009,2585,6621,12996,12997,4744,12998], +[1,2343,8000], +[0,8001,8002,8003,2487], +[0,6639], +[0,4874,1166,4481,1906], +[0,1111,7009,7201,200,1871,6621,1867,1106,6983,4166,4744,3073,6807,6876,2585,13005,6769,12619,1501,5281,13006,8628,13007,1468,13008,13009,13011], +[1,2343,8005], +[0,0,8006,8007,2399], +[0,1906,1166,4481,1107], +[0,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,6876,2585,1108,6961,23,3529,1973,2100,13017], +[1,2343,8009], +[0,0,8010,8011,2523], +[0,1906,1166,4481,13024], +[0,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +[1,2343,8013], +[0,0,0,8014,2487], +[0,1111,1512,200], +[1,2343,8016], +[0,8017,8018,8019,2443], +[0,11161,13035,97,8597,7905,13037,13038,13042,1156,1639,1673,13045,13047,1209,3021,4023,11264,1849,7917,4427,13049,4649], +[0,48,53,61,73,76,78,13051,81,5806,13052,5835,83,5853,5889,85,87,92,192,5467,692,5583,7806,4864,5087,13055,5139,13057,7639,4874,13059,1009,1011,1028,11016,13061,13063,13067,13069,1031,11018,13072,10984,13077,1082,13078,1165,1170,1178,1193,1195,1205,13080,1208,13085,1426,1437,1448,1503,12405,13086,1525,13088,1610,1628,1630,13089,1668,13090,13092,11343,13093,668,8161,1869,1177,1895,1937,1938,1939,1948,13097,1955,1988,2071,11345,2151,2070,2205,2226,2323,2338,13099,2529,2651,2675,13101,13103,1192,2780,2784,13105,13108,2817,13110,4868,695,2969,13115,13118,2990,13119,3105,3107,3112,3114,13122,3127,13123,3177,3183,3188,3213,3220,3412,3561,3618,1894,3720,3725,3730,3786,9340,3992,13124,13127,8304,13128,4039,13129,13131,4135,4207,13134,4307,4320,11384,11389,4323,11396,4328,4409,4431,4443,4468,4469,4494,4508,91,13135,4549,4027,11400,1983,188,13138,13142,4630,4633,13145,4634,13149,4639,4640,13151,4646,2924,4676,4677,4681,4689,13152,11401], +[0,188,8588,5127,4964,1114,13154,4627,4963,181,5130,4967], +[1,2343,8021], +[0,8022,8023,7395,2537], +[0,1497,1673,97,5145,4427,11161,7992,27467,33386,33387,11185,33389,33393,11164,33396,33397,33399,33401,33403,33404,33406,33417,13166,33418,33422,33423,33424,33426,13169,8048,33428,33430,33431,33433,33436,33441,33443,11168,33444,33447,13159,33449,13162,33450,33451,11264,13165,33452], +[0,1091,3467,26713,4390,4494,1789,2070,1192,3445,1170,1437,11336,2675,2696,2742,2832,13233,3549,89,4164,1759,1177,2079,2814,1209,3984,4039,13241,4135,1086,13078,25131,3725,4508,2924,1634,2151,2193,11347,3183,3213,1894,13243,11401,1610,16473,2071,5102,11357,3758,11360,3824,13214,13215,3310,3560,3985,3988,4183,4201,91,5087,4874,12424,2665,2990,3839,11380,368,13204,13210,4880,13223,33230,11362,13245,33461,7833,692,11301,4870,5254,11325,3330,3717,13235,3999,11976,7948,27424,13194,13196,11290,8149,11322,7610,11350,27047,11273,11275,16934,4864,11292,7892,6510,13213,4934,10875,13205,4883,2758,2771,13232,3885,11377,3978,5076,33233,7839,8998,29467,7837,7840,643,13200,1939,2686,11366,11400,13198,2584,11348,25366,966,11331,1924,2784,11368,13175,972,1947,2780,13182,13203,13228,11356,4676,11320,3749,13192,968,1961,33635,11300,13221,13187,7582,974,7585,13178,11312,26969,11382,11371,11296,13188,11274,13240,13189], +[1,2343,8025], +[0,8026,0,2514,2523], +[0,3445], +[1,2343,8028], +[0,8029,7938,7939,2537], +[0,43,46,1093,1132,1140,1298,1316,1318,1321,1322,1336,1339,1342,1344,1346,1348,1350,12704,1376,1386,1425,1428,1440,1450,12709,12714,1663,1706,1711,1715,2019,12719,2177,2217,12720,2563,2567,2606,12722,2950,2954,2957,2962,3086,3099,3134,3186,3240,3245,3262,3295,3439,12736,3443,3472,3535,3558,12737,3777,4124,12747,4173,4177,4192,4206,4235,12749,4236,4258,4267,4338,12755,4347,4352,4370,4433,4456,4461,12756,12757,12760,4548,12763,12764], +[1,2343,8031], +[0,8032,8033,8034,34352], +[0,5381,5383,5446,5394,5408,13261,13262,5458,5461,32772,13264,13267,13272,2993,5438], +[0,5400,5402,5405,13276,5453,5456,192,5467,13280,5470,5473,13282,5474,5476,5478,13286,13287,1364,1699,1177,1895,1999,2026,2151,2675,2822,2990,3246,3300,3561,4039,4042,13289,10854,4193,4449,91,5480,4535,13291,3348], +[0,5926,13293,5592,1117,1745,13294,3422], +[1,2343,8036], +[0,8037,8038,8039,2537], +[0,1367,1525,13302,8161,13304,2151,2070,2036,2685,2814,13305,1209,3105,3363,3725,4135,4307,2924,4677,4709], +[0,4870,6503,4874,1177,13311,1903,1938,1954,1958,2899], +[0,5592,1118,2295,1745,4030,7096], +[1,2343,8041], +[0,8042,8043,8044,2537], +[0,13319,1797,4135,4562,4747], +[0,9741,4874,5254,4892,1166,2151,91], +[0,1118,1783,13322,5592,2295,1745,1179,13325,200,13326,6876,4030,7096,13327,13328], +[1,2343,8046], +[0,8047,8049,8050,2523], +[0,1676,13333,3313,2863,4593], +[2,41,27443], +[0,1429,1431,2899,4193,4196], +[0,13336,6645,13338,13339,13340,586], +[1,2343,8052], +[0,8053,0,2514,2537], +[0,13345,13346,5506,5514,4484], +[1,2343,8055], +[0,8056,0,8057,4139], +[0,13352,13345,1127,13346,5513,5514,4484,13351], +[0,5286,6778,13354,5284,13356,3378,89], +[1,2343,8059], +[0,8060,8061,2514,2487], +[0,13346,5514,4484,5515], +[0,13364,5087,4874,2220,2222,1192,4039,4042,4468,4487,91], +[1,2343,8063], +[0,8064,8065,2514,2487], +[0,1127,13370,4484], +[0,13364,5087,13372,2086,2220,2222,1192,13374,4039,4042,4468,4487,91], +[1,2343,8067], +[0,0,8068,8069,2523], +[0,1503,1596,13379,1652,2194,2759,2899,3202,3215,3421,4131,4585], +[0,7914,3403,6435,614,202,1237,5260,13382,3209,1896], +[1,2343,8071], +[0,8072,8073,8074,2537], +[0,13387,13388,13390,13394,13395,1170,1362,13396,1209,3084,3220,3222,13399,4135,13400,4729], +[0,13406,13411,13412,6061,6063,13414,4870,6503,4874,13417,5254,9241,10780,1429,1431,1570,2899,1894,4131,4193,4474,91,4739], +[0,13426,12296,5472,13428,5131,13429], +[1,2343,8076], +[0,8077,8078,8080,2399], +[0,13446,13437,13512,13471,13508,13476,9637,13474,13497,13495,13500,13454,13502,13504,13510,13493,13507,13456,13479,13488,13484,30243,13467], +[0,3421,3297,2899,4193,1177,1894,91,13514,4874,6503,6513,5254,1954,1011,13518,1009], +[2,8182,553], +[0,13524,13525,13526,13529,13530,13531,6599,13532,13535,13538,13539], +[1,2343,8082], +[0,8083,8084,8085,2523], +[0,13547,13551,13554,13558,13559,13560], +[0,13564,5087,4874,1009,1011,13566,1177,1895,1915,1938,1955,2220,1192,1894,13568,3706,13569,4257,4468,4474,91], +[0,13571,7200,5995,13572,2220,13573,6710,91,13574], +[1,2343,8087], +[0,8088,8089,8090,2537], +[0,13579,1149,13581,3923,13583,4393,13584], +[0,13590,1429,1776,3188,2899,4039,13591,4390,4753], +[0,12666,1137,3101,2056,4390], +[1,2343,8092], +[0,0,8093,2514,4139], +[0,1429,1192,1894], +[3,439,25], +"mysticatea", +[2,1186,8095], +[2,8094,8096], +"dot-prop", +"warun", +[1,2343,8101], +[0,0,8102,8103,2399], +[0,68,5704,1177,2899,3421], +[0,200,57,1139,5675,7058], +[1,2343,8105], +[0,7967,7938,7939,2487], +[1,2343,8107], +[0,8108,8120,8121,2487], +[0,1417,13609,6830,13611], +"ly-openapi-core", +[2,443,8109], +"decko", +"pointer", +[2,2842,8112], +"mark.js", +"sampler", +[2,7719,8115], +"perfe", +"ct-scrollbar", +[2,8117,8118], +[0,13613,13614,1159,9254,1177,2011,2133,13619,2708,3410,3421,3431,4103,4389], +[0,6583,6727,4552,6759,1858,6422,3033,7039,6763], +"react-tabs", +"stickyfill", +"swagger", +"2openapi", +[2,8124,8125], +[2,4564,1283], +[1,2343,8133], +"@cypress/webpack-preprocessor", +"@hot-loader/react-dom", +[3,5535,19], +[2,8131,1896], +[0,0,8134,8142,2487], +[0,1166,4481,1906], +"ompurify", +[2,6491,8135], +"-to-", +"-to-json", +[2,4863,8138], +[3,7729,12], +[2,8140,8112], +[0,4552,1144,13625,6270,6692,13626], +[1,2343,8164], +"@types/lunr", +[3,7639,11], +[2,8145,1722], +[2,8145,1360], +"ismjs", +[2,7893,8148], +[3,4890,12], +"d-components", +[2,8150,8151], +[3,7752,9], +"pable", +[2,8153,8154], +"-env", +[2,4891,8156], +"@wojtekmaj/enzyme-adapter-react-17", +"to-json", +[2,1848,8159], +[2,7686,1194], +"-checker", +[2,4059,8162], +[0,8167,8176,8177,2523], +"lodash.noop", +"unfetch", +[0,614,13633,1417,13635,3435], +"OpenAPI", +" Specification", +[2,8168,8169], +"Swagger", +"API", +"REST", +"React", +"React.js", +[0,4389,1090,1593,1610,48,13638,53,3438,87,5619], +[0,1145,1388], +[1,2343,8179], +[0,0,8188,2514,2537], +[3,444,13], +[2,8180,965], +[3,10975,16], +"use-", +[3,2758,11], +"layout-effect", +[2,8184,8185], +[2,8183,8186], +[0,4389,2080], +"tip", +"tooltip", +"popover", +"popup", +"position", +"positioning", +[1,2343,8196], +[0,8197,8198,8200,2537], +[0,1690,13648,13651,3431,13652,13653], +[0,1389,2759,2899,3697], +"fontsource", +[0,1145,6468,6637,1148,5982,2022,2025,4170,13656,4386,6969,1973,5472,6533,13657,2275], +"font family", +" fonts", +[2,1885,8202], +"Inter", +"face", +"typeface", +[1,2343,8208], +[0,0,8209,8212,2537], +[0,3421,1429,4085,1776,2297,2899,4747,1177,4042,4135,1448,1290,1362,2151,1317,1389,53,1863,2900,13662,1280,2871,13674,1267,13665,13672,68,2904,1208,2912,2895,13668,4067,1198,13663,1240], +"serenity", +"Roboto", +[0,1149,7241,1237,6435], +[1,2343,8215], +"screenplay", +[0,0,8219,8222,34352], +"common-t", +[2,8216,103], +[2,6057,8217], +[0,4874,13680,4384,4474,91], +"fontawesome", +"svg", +[0,1149,7003,5194,27,13682,11995,1862,36], +[1,2343,8224], +[0,8225,8226,2514,2537], +[0,1153], +[0,1166,1177,1894,3310,3697,13688,2990,1959,1879,1938,1895,1947], +[1,2343,8228], +[0,0,8230,8233,2537], +[2,79,1202], +[0,53,13693,87,92,13694,5087,1193,1596,1192,2990,3377,13695,13698,3697,1894,4474,91], +"stage-3", +[2,88,8231], +[0,1155,2649,1149], +[1,2343,8235], +[0,0,0,8236,2523], +[0,1157,1388], +[1,2343,8238], +[0,8239,8240,8241,2487], +[0,4449,1512,13709,4135,13711,13712,13713], +[0,3421,4389,1177,3410,1159,4103,13614], +[0,13716,6698,6950,3378,13716], +[1,2343,8246], +[3,361,10], +"rebuild", +[2,8243,8244], +[0,8247,8249,8257,2487], +[0,1525,2036,7937,3310,13723,4135], +"node-abi", +[0,53,94,1208,13725,1429,1503,1610,3125,2899,3421,4216,4255], +[3,361,9], +"-forge/cli", +[2,8250,8251], +"devtools", +"-installer", +[2,8253,8254], +[2,1807,8255], +[0,1163,13728,13729,1444,3073,1179,3358,1528,13730,2602], +[1,2343,8259], +[0,8260,8261,8265,2523], +[0,1457,1512,13736,13738,2070,10911,3074,3467,9478,705,13739,4747], +[0,1173,1267,1429,1177,1879,1938,1947,1959,2899], +[2,4364,4622], +[2,458,8262], +[2,7726,2862], +[0,1163,4796,1161,3383,2282], +[1,2343,8267], +[0,8268,0,8269,2399], +[0,1393,1423,13746,3527,3688], +[0,1165,1623,3665,3561,6425], +[1,2343,8274], +[2,466,2220], +[2,466,2942], +[2,466,594], +[0,8276,8279,8280,4139], +[2,466,553], +[0,13753,1082,1084,1110,13754,1144,13757,13758,1437,13759,1458,13760,1486,13763,13765,13767,13770,1676,13772,2089,2205,13775,2709,2747,2752,13777,7906,3242,3478,13778,3530,3545,3718,13780,13781,13784,13786,4728,4747], +[2,5559,2844], +[2,5559,1783], +[0,11436,13789,4874,1107,1414,2020,2022,4193,4384,4400,4481,91,1906,13351], +[0,13791,1973,8791,5472,1166,13792,12804,2062,6969,13326,200,1192,2899,4389,4384,2907,2765,1145,6468,1862,6567,1149,3046,7003,1179,5701,13793,13795,13796,2275,8745,2022,91], +[1,2343,8282], +[0,8283,8287,8288,2537], +[0,1437,1835,3008,1209,3170,3188,4232,13802], +"/types", +[2,3940,8284], +[2,6369,8285], +[0,4856,4870,8778,6503,4874,7749,6513,4891,1362,1429,13804,2151,2675,2990,2899,1894,13805,4039,4167,4257,1241,4487,91,2924,4677], +[0,2924,1194,11526,91], +[1,2343,8290], +[0,8291,8305,8307,2523], +[0,4113,1002,614,3348,1398,2018,4734,13811,13812,3767], +"@tailwindcss/aspect-ratio", +[3,8292,13], +[2,8293,25], +"typography", +[2,8293,8295], +"basename", +"manage", +"r-webpack-plugin", +[2,8298,8299], +[2,2090,8300], +"remove-", +[2,1586,4408], +[2,8302,8303], +[0,1429,2297,2899,1177,1503,2765,2924,1649,4535,1389,91,4874,2843,1509,2766,2898,13817,13818,2881], +"sass-lint", +[0,5592,6997,7200,6850,6779,6949,6930,6810,6808,6979,6871,6991,6835,7024,6602,7301,7308,6619,7016,6665,6572,6629,7055,6709,7254,6814,6832,6976,6740,7101,6963,6933,7215,7175,6817], +[3,6566,9], +[2,8308,3855], +"boilerplate", +[1,2343,8312], +[0,0,8313,8314,2537], +[0,1429,2070,1437,1496,2020,2228,2675,1776,2832,2297,2899,4193,1177,2814,1593,668,2203,3471,2720,13824,1894,4535,13825,11869,13827,2878,7231,91,53,4874,13829,1863,13831,2665,2900,2918,2990,3400,13832,13833,2626,3330,5561,13834,13836,4257,13837,87,13838,2897,4130,13839,2247,2283,2923,2253,2281,13842,2881,4261,5663,1895,2895,13848,13850,78], +[0,13852,6653,5472,2275,6969,5982,11346], +"@hapi/", +"accept", +[2,8315,8316], +[1,2343,8319], +[0,8331,8332,8334,2537], +"@hapi/ammo", +"@hapi/boom", +"@hapi/bo", +"unce", +[2,8322,8323], +"@hapi/call", +"@hapi/ca", +"tbox", +[2,8326,8327], +"-memory", +[2,8328,8329], +[0,2139,13860,2131], +[0,1414,2323,1437,2675,2297,2899,4193,1177,3246,3483,4042,2026,13868,2151,13824,3183,1596,1610,2141,2188,2036,7798,4393,91,53,1364,1863,2918,2766,3714,13870,2898,1159,192,13880,87,13873,8850,8862,5583,2915,4073,13882,2881,2912,2895,2921,811,13867,2910,13879,13866,816,13875,13871,5467], +"@hapi/heavy", +[0,4731,27,6662,1862,202,1388,1612,4030,5592,5576], +"@hapi/hoek", +"mimos", +"@hapi/mimos", +"podium", +[2,8315,8338], +"shot", +"@hapi/shot", +"@hapi/s", +"omever", +[2,8342,8343], +"tatehood", +[2,8342,8345], +"ubtext", +[2,8342,8347], +"teamwork", +[2,8315,8349], +[1,2343,8352], +[0,8355,8356,8365,2537], +"@hapi/topo", +[2,8315,2649], +[0,13889,2051,13891,13892,3923,705,4545,3348,1155,4734,4736,2845], +[0,13894,1389,1596,13895,2228,2296,13896,2759,2297,2881,2891,13899,2895,2897,2900,2904,2899,3202,3297,4170,4535,4650], +"@hapi/code", +"@hapi/inert", +"@hapi/lab", +"@hapi/v", +"ision", +[2,8360,8361], +"wreck", +"@hapi/wreck", +[0,202,13531,13901], +[1,2343,8367], +[0,8368,8369,3182,2537], +[0,1175,1257,1280,1282,1525,1573,5175,2070,1209,13913,3507,4207,4227,13914,1457], +[0,1184], +[1,2343,8371], +[0,8372,8373,3272,34352], +[0,13922,1180,13924,13928,1280,1282,1284,1287,1288,1291,1573,1676,2856,1209,3181,3507,7223,4207,4227], +[0,1184,13930,1257], +[1,2343,8375], +[0,8376,8377,2514,2523], +[0,814,104,58,101,51,1996], +[0,2675,2899,1680,1177,2000,1894,2990,1178,13936,1938,1935,1955], +[1,2343,8379], +[0,8380,8381,2514,2523], +[0,13928,1282,1288,1707,2835,1209,4227,13942], +[0,1184,1291], +[1,2343,8383], +[0,8384,0,2514,2537], +[0,1282,1209,13948,4135], +[1,2343,8386], +[0,8387,0,2514,2523], +[0,1282,13930], +[1,2343,8390], +"nf", +[0,0,0,8393,2487], +true, +"cookiecutter", +[0,1172,188,1219], +[1,2343,8395], +[0,8396,8397,2514,2537], +[0,8755,10879,1208,13961,1437,2215,4207], +[0,53,8776,8780], +[1,2343,8399], +[0,8400,8401,8402,4139], +[0,2105], +[0,48,53,68,87,1414,1177,1895,1955,2203,2675,2990,1894,2924], +[0,2924,1194,1172,5194,5198,1237], +[1,2343,8404], +[0,0,8405,8406,4139], +[0,53,73,87,1173,1175,1178,13725,13982,1264,13983,1268,1284,1288,13985,1177,1895,1903,1938,1954,1955,1958,1970,2899,3696,1894,4039,4103], +[0,5297,13988], +[1,2343,8408], +[0,8409,8410,8411,2537], +[0,3435], +[0,4389,1177,4039,1173,1175,2708,53,1178,1280,13995,87,1261,1267,4103,1938,1881,1203,8229,1198,5853,13998,1244], +[0,1172,1932,14000,1204,202], +[1,2343,8413], +[0,8414,8415,3465,2523], +[0,1282], +[0,1189], +[1,2343,8417], +[0,8418,8434,8444,2399], +[0,5652], +"@keyv/redis", +[2,1416,8421], +"-redis-yet", +"cacheable", +"opens", +"spring", +"icu", +"charset", +"launch", +"xdg", +"cmd", +"xdg-open", +"iconv", +"popmotion", +"exe", +[0,53,90,14011,1175,14012,1596,1177,1879,1895,1938,1955,2079,2675,2990,3132,3377,1894,14014], +"executable", +"cache manager", +[2,27105,15292], +"multi-store cache", +"caching layer", +"cache abstraction", +"cache middleware", +"cache strategies", +"cache wrapper", +[0,5297,1114], +[1,2343,8446], +[0,8447,8448,8449,2537], +[0,56,14022,8697,14024,14025], +[0,48,53,5756,5241,94,1429,1596,1610,2899,3421,14027,4255], +[0,2759,1172,1932,14029], +[1,2343,8451], +[0,8452,8453,8454,2537], +[0,5652,104,2070,1209,14035], +[0,48,53,14039,78,5235,4851,83,87,90,14041,94,10828,1149,1198,1210,1429,14042,14045,3021,2899,3776,3804], +[0,5297,14047,1209,5260], +[1,2343,8456], +[0,8457,8458,8459,2487], +[0,14053,2070,3539,4022,814], +[0,48,53,81,5241,87,1175,1193,1532,1177,1881,1895,1938,2675,1192,2990,10623,4257], +[0,1172,5297,1237,14056,8861,9345,814,14057,14059,3209,1204], +[1,2343,8461], +[0,0,8462,2514,2523], +[0,1192,14065], +[1,2343,8464], +[0,0,0,3465,2523], +[1,2343,8466], +[0,0,0,3465,2537], +[1,2343,8468], +[0,8469,8415,3465,2523], +[0,14078,14080,1282], +[1,2343,8471], +[0,8472,8415,3465,2523], +[0,14086,14087,1282,1284], +[1,2343,8474], +[0,8475,8476,8477,2487], +[0,14093,1282,1284], +[0,1173,1230,1255,1267,1429,2899], +[0,1172,5297,6598,70], +[1,2343,8479], +[0,8480,8415,3465,2523], +[0,1282,1284,1287,1288,1209], +[1,2343,8482], +[0,8483,8484,3465,2487], +[0,14107,1282,1284,1288], +[0,1189,14109], +[1,2343,8486], +[0,8414,8415,3465,2399], +[1,2343,8488], +[0,8489,8415,3465,2537], +[0,14109,1282], +[1,2343,8491], +[0,8492,8415,3465,2523], +[0,1282,14123,1220], +[1,2343,8494], +[0,0,8495,8496,2537], +[0,48,53,5216,8229,61,5240,87,14128,90,94,1178,14132,1429,1177,1879,1922,1935,1938,1947,1951,1955,1959,2205,2899,14133,1894], +[0,1172,5297,89,14137,14139], +[1,2343,8498], +[0,8499,8415,2514,2537], +[0,14145], +[1,2343,8501], +[0,8414,8415,3465,2537], +[1,2343,8503], +[0,8504,0,2514,2487], +[0,1282,1593,3957], +"comment", +[2,8505,1574], +[1,2343,8513], +[3,539,8], +[2,8508,6939], +[3,539,17], +[2,8510,1541], +"leasot", +[0,8514,8515,8516,2487], +[0,87,90,56,5761,83,14160,13051,78,5835,14163,5853,14167,1251,5782,14170,5806], +[0,1177,53,97,4103,1938,1881], +[0,1172,5194,6778,5284], +[1,2343,8518], +[0,8522,8541,2514,2523], +"clair/typebox", +[2,5324,8519], +"@typesc", +[0,14184,14191,1225,14192,14195,1235,14196,14198,14199,14201,14204,14206,14207,14209,1240,14210,14211,14213,14214,14215,14217,14218,1244,14220,14222,14224,1253,1393,2731,4135], +"hema/core", +[2,8521,8523], +[3,8524,12], +"main", +[2,8525,8526], +[2,8525,4763], +"@vinejs/vine", +"ajv-", +"ajv-errors", +"-export", +"-export-map", +[2,4354,8533], +[3,5370,11], +[2,4626,8535], +"effect", +"fp-ts", +"io-ts-types", +"lefthook", +[0,1173,1178,1184,1189,1208,1264,1280,1429,1503,1177,13936,1935,2151,1209,2899,3421,14227,4039], +[1,2343,8545], +"monocle-ts", +"newtype-ts", +[0,8548,8557,2514,2487], +"-validator", +[2,7209,8546], +[0,14184,14192,14195,1235,14196,14198,14199,14201,14204,14206,14207,14209,1240,14210,14211,14213,14214,14215,14217,14218,1244,14220,14222,1253], +"bot", +"valibot", +"vite-", +[2,8551,4480], +"fluent", +"-ts", +[2,7020,8554], +[2,8553,8555], +[0,13930,1189], +"effect-ts", +[1,2343,8562], +"typeschema", +"vine", +[0,8563,0,2514,4139], +[0,14237,1220,14238,1248,14240,14243], +[1,2343,8565], +[0,8566,0,2514,2537], +[0,53,61,71,14170,14160,13051,14249,5700,5240,5879,83,87,90,92,97,7913,1251], +"google ", +" api", +"late api", +[2,4713,8569], +[2,8567,8570], +[3,8571,16], +"google api", +[3,8570,9], +[1,2343,8576], +[0,8577,0,2514,34352], +[0,14256,14257,1275], +[1,2343,8586], +"@atlaskit/pragmatic-drag-and-drop", +"-scroll", +[2,3959,8580], +[2,8579,8581], +[3,8582,34], +"hitbox", +[2,8583,8584], +[0,8587,0,2514,2523], +[0,14265,13982,1277], +"vue3", +"vue ", +[1,2343,8592], +"vue 3.x", +[0,8593,0,2514,2537], +[0,1279,14270,1217,1230], +[1,2343,8595], +[0,8596,0,2514,2523], +[0,14191,14276,1225,14224,1245], +"@ctrl/tinycolor", +[1,2343,8599], +[0,8600,8601,2514,2537], +[0,1175,1282,1593,14282,1209,3188,4232], +[0,6323], +[1,2343,8613], +[3,546,10], +[2,8603,2089], +[2,8603,998], +[3,6505,9], +"te-stream", +[2,8606,8607], +"rap-ansi", +[2,7820,8609], +"cli-width", +"mute-stream", +[0,4115,8617,2514,4139], +[3,8605,11], +"esting", +[2,8614,8615], +[0,13924,1255], +"answer", +"answers", +"ask", +[1,2343,8627], +"confirm", +"generate", +"hyper", +"inquire", +"interface", +[0,8629,0,2514,2537], +"iterm", +[0,1282,1287,1288,1291,1209], +"promptly", +"question", +"scaffold", +"scaffolder", +"stdout", +"yeoman", +"zsh", +[1,2343,8638], +[0,8639,8640,2514,2523], +[0,13922,13928,1282,1288,1291,1676,2203,2731,1209], +[0,1180], +"@stencil/core", +[1,2343,8672], +"domino", +[3,8641,9], +[2,8644,2278], +"@clack/prompts", +"@capacitor/core", +"@playwright/test", +[3,8647,11], +"haptics", +[2,8649,8650], +"keyboard", +[2,8649,8652], +"@axe-core/playwright", +"@ionic/", +[2,8655,7625], +"-bar", +"status-bar", +[2,8649,8658], +[2,8655,7628], +[2,812,4607], +"-target", +[2,6811,8662], +[2,4625,8663], +[2,8644,8664], +"react-o", +"utput-target", +[2,8666,8667], +[2,8644,8668], +[2,1101,8663], +[2,8644,8670], +[0,8679,8680,2514,2487], +"stencil", +"webapp", +"capacitor", +" web app", +[2,6434,8676], +"pwa", +[0,1282,14301,1209,5915], +[0,1180,1291], +[1,2343,8682], +[0,0,8684,2514,2523], +"-cjs", +[0,4384,1389,53,14311,87,14128,1573,90,14309,5835,5879], +[1,2343,8686], +[0,0,8687,8688,2487], +[0,1166,1173,1178,1184,1203,1208,14318,1267,1272,1437,1503,1610,1177,13936,1935,2126,3421,4039,4042,4045,4067,12613,14320], +[0,1172,5284,57,1291], +"standardx", +[1,2343,8692], +"layout", +[0,8693,8694,8695,2537], +[0,4545], +[0,1509,1597,1734,1177,1938,2297,2908,2907,4005,4042,4535], +[0,11415,6624,12620,38,36,5576,1388], +[3,549,12], +[2,8696,2844], +[1,2343,8699], +[0,8700,8701,8702,2443], +[0,1525,2070,2720,3445,4039,4484,3348,1155], +[0,14333,4865,4866,4874,7819,14334,4891,1009,1011,5476,14337,14338,5478,1429,1177,1938,1954,2899,3200,14339,4167,4172,4409,4469,4474,4508,91,594,2924,4677], +[0,5995,1293,3230,4978,14344], +[3,444,18], +[3,550,15], +"illu", +[1,2343,8715], +"tions-react", +[2,4273,8707], +[2,8705,8708], +[2,8704,8709], +"@swc/", +[2,8711,6706], +[3,958,16], +[2,8713,4607], +[0,7936,7938,7939,2537], +"react-table", +[1,2343,8718], +[0,0,8720,8721,2523], +"@swc/cli", +[0,1596,2228,2240,2314,14352,2759,2899,3954], +[0,14354,14355,14356,14357,1157,1396], +"-extensions", +[2,3751,8722], +[2,1962,8723], +[1,2343,8730], +"-system", +[2,4964,8726], +"itwin", +"itwinui", +[0,7967,7938,7939,2443], +[1,2343,8732], +[0,0,8733,8735,4139], +[0,13662,1317,1389,4389], +"jest-config", +[0,14357], +"unner", +"jest-runner", +"jest-run", +[2,8738,6901], +[3,2802,10], +[2,8740,1524], +[3,551,8], +"nsole", +[2,8742,8743], +"snapshot", +[2,2769,8745], +[2,2769,2649], +"jest-h", +"aste-map", +[2,8748,8749], +"reporters", +[2,552,8751], +"@jest/t", +"ransform", +[2,8753,8754], +"jest-re", +"gex-util", +[2,8756,8757], +[1,2343,8760], +[0,8766,8772,8774,2523], +"est-result", +[2,8753,8761], +"jest-m", +"essage-util", +[2,8763,8764], +[0,4100], +"-files", +[2,2356,8767], +[2,2772,8768], +"-dependencies", +[2,2797,8770], +[0,2899,1177,2759,1954,1938,1958,1903,1948,1970], +[3,6494,9], +[0,14372,1303,14374,14375], +[3,8762,11], +[2,8775,594], +"cromatch", +[2,7890,8777], +"raceful-fs", +[2,5246,8779], +"sequencer", +[2,8775,8781], +[1,2343,8789], +"easy", +"sive", +"immersive", +"instant", +"mocking", +[0,8792,8793,8794,2537], +"painless", +"runner", +[0,1797,3181,3183,3188,14380], +[0,1177,1903,1938,1954,1958,1970,2899,4039,4342,4459,4538,4588], +[0,2026,5130,14387,6690,14388,3361,5122,4030,7096,38,1896,3724,5995,5592], +"sandboxed", +[1,2343,8797], +[0,8798,8799,8810,2537], +[0,3299,15160], +[0,1192,15164], +"schemas", +[2,552,8800], +"@types/i", +"-report", +"-reports", +[2,1207,8804], +[2,8802,8805], +[3,8806,16], +"lib-coverage", +[2,8807,8808], +[0,1306,6875,1303,5165,7141,6641,1616], +"@tsd/typescript", +[1,2343,8813], +[0,0,0,8814,2537], +[0,1306,5284,676,3428,6875,1303,5165,7141,6641,1616], +[1,2343,8819], +[3,7729,13], +"chema", +[2,8816,8817], +[0,0,8822,8810,4139], +"jsdom-", +[2,8820,2202], +[0,1306,26406,1894,91], +"mock-store", +[2,3944,8823], +"dux-mock-store", +[2,5249,8825], +"-reg", +"iste", +"r-element", +[2,8828,8829], +[2,8827,8830], +[2,1746,8831], +[1,2343,8834], +[0,8835,8842,8843,34352], +[0,14413,1525,1457], +"jsonforms", +"rendere", +[2,8837,152], +"uischema", +"ization", +[2,5317,8840], +[0,2025,2228,1330,2236,2300,2247,2281], +[0,14416,14417,14418,7190,14419,14421,8309,14422,14423,14426,14428,14430,14433], +[1,2343,8845], +[0,0,0,8847,2523], +"@date-io/dayjs", +[0,1317,14438], +[3,4055,16], +[2,8848,2257], +[2,812,1781], +[3,6390,15], +"mport-css", +[2,8851,8852], +[1,2343,8855], +[0,8856,7938,7939,4139], +[0,43,46,1089,1093,1116,1132,1140,14443,1294,1298,1316,1318,1321,1322,14444,1336,1339,1342,12701,1344,1346,1348,1350,1352,12703,1354,1356,1358,14445,12704,1373,1376,14446,1386,14447,1402,1425,1428,12705,1440,1449,1450,12708,12709,14450,14453,12710,12711,12714,1663,1706,1711,14458,1715,1726,1801,2019,12715,14459,12719,2058,2059,2083,2147,2160,14460,2177,2213,2216,2217,12720,2562,2563,2567,2589,2605,2606,2612,14461,12722,2723,14464,14467,2950,2954,2957,12726,2962,14469,3086,14471,3099,12730,3134,12733,3186,3238,14473,14474,3239,3240,3245,3262,14477,3295,3439,12736,3443,3472,14478,3531,3535,3558,12737,3777,3931,12740,14479,4105,4106,4112,4124,12743,14480,12747,14483,4168,4173,4177,4189,4192,4206,4212,4214,4215,4235,12749,14484,4236,4239,4258,12750,4267,14487,4335,4338,12755,4347,4352,4370,4377,4433,14489,14491,4456,4461,12756,12757,12760,4548,4559,4595,12763,14492,14496,4659,4662,12764,14497,4724], +[1,2343,8858], +[0,8859,8863,8864,4139], +[0,3171,3445,4707,1695,2967,814,4430,1457,3183,14502,3560,3714,1537,14506,3923,14508,14512,14505], +[2,4807,3429], +"alias", +[2,812,8861], +[0,14515,3212,4389,4453,2759,4650,1389,14514], +[0,14518,1389], +[1,2343,8866], +[0,7967,7938,7939,2537], +[1,2343,8868], +[0,8869,8870,8871,2443], +[0,1209,12344], +[0,1596,14527,2759,14529,3774,4019], +[0,1317,6681,6887], +[1,2343,8873], +[0,7967,7938,7939,2523], +[1,2343,8875], +[0,8876,0,8877,34352], +[0,14544,14546,14548,53,5216,58,61,14249,5704,5809,5241,5874,87,92,101,9311,9100,4874,1091,14552,1137,1149,1448,1457,1462,1512,14557,1573,2141,2633,14558,3310,3403,1894,14562,2278,4218,4227,4246,3709,91,4535,14563,188,4747,2720,14564], +[0,14566,14568,14570,14571,14572,14574,5130,91,5284,4799,11608,8889,5995,14575,14576,14579,14580,14582,14584,14587,11498,14591,14592,14594,14596,4056,14597,14600,89,14601,14602,188,14603,14605,8889,3709,14607,14608,4218,14609], +1769904000000, +[1,2343,8880], +[0,8881,8882,8883,2399], +[0,14615,14616,14617], +[0,1170,1429,1177,2899,14621,3752,14622], +[0,1781,14626,1646,4647,1644,57,14628,4141,3917,6033,1149,14629], +[1,2343,8885], +[0,0,0,8886,2523], +[0,14634,14635,14636,14637,6988,14638,14639,14640,14641,14642,14643,14644], +"@lumino/polling", +"@lumino/", +"widgets", +[2,8888,8889], +"commands", +[2,8888,8891], +"algorithm", +[2,8888,8893], +[3,8892,10], +"reutils", +[2,8895,8896], +[1,2343,8903], +"messaging", +[2,8888,8899], +"signaling", +[2,8888,8901], +[0,8904,0,8908,4139], +[0,14652], +"disposable", +[2,8888,8905], +[3,8887,9], +[0,970,11154,1326,14654,6817,3122,14655], +"roperties", +[2,8907,8909], +[3,565,12], +"statedb", +[2,8911,8912], +[3,8894,9], +"pplication", +[2,8914,8915], +[3,565,15], +[2,8917,594], +[3,8913,13], +"ervices", +[2,8919,8920], +"coreutils", +[2,8911,8922], +"render", +"rendermime", +[2,8911,8925], +"docregistry", +[2,8911,8927], +[1,2343,8935], +"translation", +[2,8911,8930], +[2,8911,7842], +"-interfaces", +[2,8926,8933], +[0,8938,8939,2514,2537], +[3,8931,13], +[2,8936,8615], +[0,14660], +[0,3421,4389,4487,1894,3310,3752,91,4874], +[1,2343,8941], +[0,8943,8948,8950,34352], +"docopt", +[0,14667,14669,14671,14672,5241,83,14673,13998,14674,5564,14676,4649], +"glob2base", +"lodash.d", +"ifference", +[2,8945,8946], +[0,14680,48,53,5241,87,14682,94,97,10821,14684,827,14687,14689,10828,14691,11277,10837,11288,972,5087,4883,14693,14694,13995,14695,1193,1195,14697,14698,1208,1261,1268,14012,1282,14699,1462,1596,1610,1655,14702,1177,14707,2323,2529,2541,14708,2708,1192,2787,2820,3220,14711,3342,3377,3400,3415,3421,3697,1894,3786,89,3824,14714,14719,4039,4103,4111,14721,4307,4468,4469,91,2924,4676,4677], +"multipipe", +[0,1328,14723], +"safe-wipe", +[2,4832,6270], +"-theme-default", +[2,566,8953], +"-comment", +[2,8955,1574], +[2,4329,8956], +"indent", +[2,4293,8958], +"vinyl-s", +"tring", +[2,8960,8961], +[1,2343,8968], +"builtin-", +[2,8964,2051], +[2,1226,8965], +"opn-cli", +[0,8969,8970,8971,4139], +[0,14731,1398,2713,3923], +[0,2080,4255,4389,91], +[0,1398,6825,3101,7178], +[1,2343,8973], +[0,8974,8975,8976,2523], +[0,1082,14738,14741,2756,3433,1695], +[0,1149,14744,1506,2228,2240,2247,2253,2273,2281,3006,2899,3521,4019,89,14748], +[0,4504], +[1,2343,8978], +[0,0,0,8979,2523], +[0,14755,14756,14757,14759,14761], +"chatfanpage", +"api-con", +"-x", +"nect-x", +[2,8981,8983], +[3,8984,12], +"tiwtter", +[2,8985,8986], +[1,2343,8989], +[0,8990,8991,2514,2487], +[0,14768,1437,14769,1209,14770,3127,14774,14775,3152,14776,14777,4294,14780,14781], +[0,14785,1331,1512,1177,1903,1938,1954,1958,1970], +[1,2343,8993], +[0,7967,7938,7939,4139], +[1,2343,8995], +[0,8029,7938,7939,2399], +[1,2343,8999], +[2,8603,6847], +[2,8603,3742], +[0,8029,7938,7939,2523], +"tasklist", +[1,2343,9002], +[0,8029,7938,7939,2487], +[1,2343,9004], +[0,0,9012,9013,2523], +"move-", +"scroll", +"move-scroll", +[2,3877,9007], +"react-te", +"xtarea-autosize", +[2,9009,9010], +[0,2759], +[0,1359,2013,14824,6681], +[1,2343,9015], +[0,0,9016,9017,2523], +[0,1499,4093,2070,3445,1082,14830,2899,4193,2272,3188,4039,14829,1362,2597,2759,3460,1481,4535,1084,1389,1364,1615,4151,2839,2311], +[0,1862,6681,6567,14832,14833,1149,7003,14834,14835,14836,14838,14839,14840], +[1,2343,9019], +[0,0,9020,9021,2487], +[0,2899,8689,1926], +[0,14846,14847,14848,14849,14850], +[1,2343,9023], +[0,9024,9025,2514,2487], +[0,1413,1562,1676,2657,2685,3440,3763,3784,1000], +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], +"calendar", +[1,2343,9028], +[0,9029,9030,9031,2537], +[0,1362,14864,2712,1209], +[0,14869,1429,1177,1895,1955,2675,1776,2930,2990,2899,3259,3421,3519,1894,4193,4196,4246,3348], +[0,3469,3259,14873,7827,14874,14877], +[1,2343,9033], +[0,9034,9035,9036,2537], +[0,2607], +[0,1501,620,3123], +[0,1851,27], +[1,2343,9038], +[0,0,9039,5359,2537], +[0,2739,4763,3171,2278,34683,2297,1177,2205,2814,3984,4042,4086,4072,2765,2822,3363,3561,4167,6393,1894,1492,1610,4939,4320,48,2689,53,27098,6375,2654,3566,3989,30616,1165,3401,6371,6376,2898,3019,34673,29226,6372,7637,8149,7610,11275,26407,1907,6382,4555,87,29568,1937,5583,1938,1982,2881,2889,30620,6373,1948,2895,6390,811,33071,3963,2910,6379,816,2876,6387,6392,6385], +[3,593,11], +[2,9040,147], +[1,2343,9043], +[0,0,9048,9049,2537], +[3,586,12], +[2,9044,5602], +[3,9045,13], +[2,9046,623], +[0,2278,14892,1797], +[0,1367,2278,1623,14894], +[1,2343,9051], +[0,0,0,9055,2537], +"-react-", +[2,9052,3902], +[2,588,9053], +[0,1370], +[3,80,7], +[2,9056,5342], +[1,2343,9059], +[0,9060,9061,9062,4139], +[0,14904,1420,1437,1471,4290,4507,9731,4726], +[0,1166,3421,4481,1906], +[0,200,5403,14907,7009,6048,7201,6938,3656,14908,2585], +[1,2343,9064], +[0,9065,9066,9067,2537], +[0,14923,814,14924,4431], +[0,1389,1537,4384,4430], +[0,1389,14927,2150,14930,1932,2947,14932,6374,14357], +[1,2343,9069], +[0,9070,9077,9078,2537], +[0,1676,3181,4648,14940,14937,14939,14938], +[2,597,592], +[3,9071,14], +"ystem", +[2,9072,9073], +[2,597,553], +[2,597,594], +[0,1429,2899,4039,2151,3980,14942,1951,1385,14944], +[0,14938,5284], +[1,2343,9080], +[0,9081,9082,9083,2537], +[0,14938,1380], +[0,14953,1385,1429,2899,14942], +[0,14938,1698,1585], +[1,2343,9085], +[0,9086,9090,2514,2487], +[0,6520,14959,2116,14939,4449,4648], +[3,603,15], +"documenter", +[2,9087,9088], +[0,4856,6503,4874,14962,1429,1540,2899,14964,3421,1894,14967,4487,4490,14970,91], +"json-api", +[1,2343,9095], +"json:api", +"normalizer", +[0,9096,9097,9098,2487], +[0,14978,14980,14981,1437,1457,1544,1549,14982,14985,14986,984,2145,2151,2659,2700,3170,3459,13399,3784,14990,4093,710,4150,4151,4153,4218,11804,4747], +[0,4874,14992,1429,14995,2215,13333,2899,1894,3760,705,4019,4039,4193,4220,4232,4294,4342,91,4597], +[0,14998,1623,15000,15001], +[3,4873,9], +"@types/mdx", +[1,2343,9103], +"mdx", +[0,9104,9105,9106,2523], +[0,1002,2070,614,1695,1145,1398,2018,2571,15043,15016,7029,3729,814,2713,3757,4431,15017,15019,2861,15020,15030,4165,15040,15006,15044,1537,15031,15037,15048,15018,15028,15042,15047,15007,15009,3502,15033,3923,15022,15036,1618,15039,15046,15014,15013,15015,13818,15024], +[0,15060,4384,1241,4135,4430,1292,15057,15052,1506,15051,15055,15056,15059], +[0,1388,3209,10906,15064,6374,3378,5284], +"encryptor", +[1,2343,34414], +"-model", +[2,603,9109], +"@rushstack/node-core-library", +[3,9111,11], +[2,9112,7009], +[3,9113,12], +"s-comm", +[0,15070,15071,15073,814,4430], +"and-line", +[2,9115,9117], +[2,9114,9118], +"rig-package", +[2,9112,9120], +[0,2832,3275,3752,705,4039,4384,15077], +"heft-node-rig", +[2,9112,9123], +[3,9124,15], +"eft-jest", +[2,6495,9126], +[3,7892,12], +[2,9128,3180], +[2,5554,7625], +[0,1389,14927,1858,2202,2203,353,11316,10906], +"JSDoc", +"AEDoc", +"TSDoc", +"alpha", +"beta", +[1,2343,9138], +[0,9139,0,9140,34352], +[0,28572,1423,14227,15085,15088], +[0,1421,2887,15090], +"tsdoc-build-rig", +[1,2343,9144], +"ig", +[0,9145,9147,9148,2443], +[0,15095], +[3,1937,15], +[0,4389,4039,91,4874,15097], +[0,15100,15101,1616,15102,15103,15105,10368,9254,15107], +[1,2343,9150], +[0,0,9151,9152,2399], +[0,3421,4390,4481,1429,3348,1437,2899,4193,1177,4042,4474,1894,1317,3310,4196,91,4856,4874,6503,6513,3090,6512,4232,1978,1895,1955,603,10817,1011,816,15115,1009,549], +[0,3230,1395,57], +"jju", +[1,2343,9155], +[0,0,0,9157,2487], +"@types/jju", +[0,1396,1388], +[1,2343,9159], +[0,9160,9164,9168,4139], +[0,1082,15127,15128,1437,3090,3183,15130], +"@dat", +"astream/core", +[2,9161,9162], +[0,15132,1177,2070,2899,4039,4042,15134,811,8850,816,4227,4232,15136], +"@types/a", +"ws-lambda", +[2,9165,9166], +[0,5284,15139,15140,15141,6778,7192,5194,6598], +"Lambda", +"Middleware", +"Serverless", +"Framework", +"AWS", +"AWS Lambda", +[1,2343,9176], +[0,9177,9178,9179,2443], +[0,1301,13811], +[0,1090,1317,1389,1537,2676,13651,13633,4237,4389,4431,4535], +[0,6866,1388,1389,1398,15148,6735,15149], +[1,2343,9181], +[0,0,9187,9188,2537], +"Middy", +"HTTP", +"Body Parser", +" Body Parser", +[2,6671,9185], +[0,13614,1158,1159,1177,2708,3410,4103,4389], +[0,1398,4162], +[1,2343,9190], +[0,9197,9198,9199,2537], +[3,7709,17], +"sm", +[2,9191,9192], +"aws-", +"xray-sdk", +[2,9194,9195], +[0,15160], +[0,2899,640,15164], +[0,1401], +[1,2343,9201], +[0,0,8134,9202,2523], +[0,4061,15174,4062,202,5260,364,15175,3392,4552,1460], +"moj", +[2,4964,6770], +[1,2343,9206], +[0,0,9208,9222,2523], +"hash-base", +[0,1637,3566,1894,4039,2278], +"@open-", +"draft", +"/deferred-promise", +[2,9210,9211], +[2,9209,9212], +[3,9213,12], +[2,9214,2942], +"until", +[2,9214,9216], +"is-node-process", +"outvariant", +"ct-event-emitter", +[2,4285,9220], +[0,1623,2278,4329,15182,10052,6398,5130], +[1,2343,9232], +"test-server", +[2,9214,9224], +"@ossjs/release", +[2,4860,982], +[3,7808,15], +"upload", +"fileupload", +[2,9228,9230], +[0,9234,9238,9253,2523], +"rate-limit", +[0,5923,15187,8646,688,691,9296,15194,11420,1170,1437,1676,29297,15197,3445], +[3,7810,9], +"llow-redirects", +[2,9235,9236], +[0,9736,9737,4856,5245,15203,6503,4874,6513,1009,1429,1177,1891,1893,1895,1955,2899,3211,3297,3377,3421,1890,4172,4193,4474,91], +"upertest", +[2,5051,9239], +"@types/ws", +"engine.io-parser", +[2,2032,9230], +[2,2032,9233], +[2,4183,1960], +[3,4220,10], +[2,9246,57], +"ironment-miniflare", +[2,8156,9248], +[2,1984,9249], +[3,5572,9], +[2,9251,2022], +[0,5592,1745,3452,5593,15208,200], +"encoding", +[2,5925,9254], +[3,4684,9], +"ttp-server", +[2,9256,9257], +[1,2343,9260], +[0,9263,9264,9265,2523], +"intercept", +"low-level", +[0,15006,15051,1537,14738,3183,4431], +[0,4389], +[0,1389,6374,15215,3178,3209], +[1,2343,9268], +"mui", +[0,9269,9270,9271,2487], +[0,15221,3220,15220,15223], +[0,15225,4384,4591,4593,3123], +[0,3073,6807,15227,1781,1409], +[2,619,553], +[2,619,594], +"@mui/base", +[1,2343,9276], +[0,9277,9278,9279,2487], +[0,15232], +[0,15234,1177], +[0,15236,25,15237,2139], +"core-", +"s-tracker", +[2,1764,9281], +[2,9280,9282], +[2,619,9283], +[1,2343,9286], +[0,9287,9288,9289,2537], +[0,3080], +[0,14408,15243,14406,15245,14405,14404], +[0,11995,4552,1398,6866,7270,1411,1781,4699,15247], +[1,2343,9294], +"theming", +[2,5695,9291], +[2,619,9292], +[0,0,9295,9297,2537], +[0,1177,1948,2899,3421], +[2,9710,15201], +[0,1412,1413,6435,1644,57,6270,15253], +[1,2343,9299], +[0,9303,9304,9305,2537], +"mui-x", +"timepicker", +[2,1666,9301], +[0,15258,8697,2105,15261,11935,11938,11943,14025,15262,4747,4748], +[0,4874,1429,15264,1610,2899,4255,4474,91], +[0,4504,15266,1973,2759,15267,3323,202], +[1,2343,9325], +"@headlessui/react", +"@iconify-icon/react", +[3,602,8], +[2,9309,1194], +"@mdx-js/mdx", +"@shikijs/transformers", +"@theguild/remark-npm2yarn", +"nist", +[2,7817,9314], +"@vcarl/remark-headings", +"approximate-number", +"-watch-webpack-plugin", +[2,2473,9318], +"flex", +"flexsearch", +"git-url-parse", +"phrasing", +[2,3138,9323], +[0,0,9326,2514,2523], +[0,6041,1192,2020,2675,2205,4042,668,12444,4468,4474,4508,2151,1894,15275,91,53,5087,2990,3123,4864,4131,15276,4057,15277,811,1652,816,15273], +"next-seo", +"-async", +[2,3830,9328], +[3,3968,10], +"ract", +"-excerpt", +[2,9331,9332], +[2,9330,9333], +"rehype-p", +"retty-code", +[2,9335,9336], +"matter", +"frontmatter", +[2,3986,9339], +"remark-h", +"eading-id", +[2,9341,9342], +"link-", +"rewrite", +[2,9344,9345], +[2,3986,9346], +"shiki", +[1,2343,9356], +"-themer", +[2,4383,9350], +"virtual-", +[2,9352,5260], +[2,4670,9353], +"zustand", +[0,9369,9370,9371,2443], +[2,4860,4349], +"tra-watch-webpack-plugin", +[2,8773,9358], +[3,7634,10], +"-url-parse", +[2,9360,9361], +[2,9099,6892], +"@repo/eslint-config", +"@repo/", +[2,4524,1541], +[2,9365,9366], +[2,9365,7628], +[0,2928,32554], +[0,11976,15288,8419,4874,7677,37080,8420,4039,4493,91,1984,8422], +[0,2325,20164,8436,202,10339,8437,1552,3143,8438,9553,8439,8440,8441,8442,8443], +[1,2343,9373], +[0,9377,9380,9385,2537], +[3,5309,9], +[2,9374,8924], +[2,9374,57], +[0,9441,15305,15308,15310], +"css-what", +"esthetic", +[0,13614,1159,9254,1855,1177,2011,2133,13619,2708,3410,3421,3431,4103,4389], +"builder", +"guides", +"demo", +"ng-doc", +[0,5284,5286,3595,676,6716,7239,6714,6715,7162,1417,7272,3046,6830], +[1,2343,9387], +[0,0,8134,9388,2537], +[0,1420,15320,15318,15321,13230,15322,1758,4545,15323,1871,2585,6270,15324,15326], +[1,2343,9390], +[0,0,0,9391,2537], +[0,12080,12075,8221,1388], +[1,2343,9399], +[2,3964,1671], +"has-p", +[2,9394,3871], +[2,2573,9395], +[3,9396,11], +"eading-", +[0,0,0,9410,2523], +"eading-rank", +[2,9397,9400], +"rehype-m", +"inify-", +[2,9403,3661], +[2,9402,9404], +[3,4555,11], +[2,9406,7131], +[3,9312,9], +[2,9408,3958], +[0,4231], +[1,2343,9412], +[0,9413,9418,9419,34352], +[0,3299,32944], +"ordinal", +[3,6490,12], +"as-promised", +[2,9415,9416], +[0,4874,15342,2026,2822,2899,3536,4255,4481,91], +[0,1424,15344,11812,15345,15346,158,11806,2636], +"ethers", +"hat", +"hardhat", +"n.js", +[2,4853,9423], +[3,634,25], +[2,9425,9420], +[3,634,17], +"low-", +"low-imports", +[2,1967,9429], +[2,9427,9430], +[3,9431,31], +"-inter", +"nal-rules", +[2,9433,9434], +[2,9422,9435], +[2,9432,9436], +[1,2343,9442], +"ethereum", +"smart-contracts", +[2,1417,15307], +[0,0,9443,9444,2537], +[0,1159,1177,1881,1938,2151,2899,2924], +[0,2924,1932,15356,1204,3209], +[1,2343,9446], +[0,0,0,9450,2523], +"proggy", +"cacache", +"bin-links", +[0,3521,15361,1973,5472,15362], +"treeverse", +"@npmcli/fs", +"walk-", +"up-path", +[2,9453,9454], +[2,636,3766], +[3,643,9], +"edact", +[2,9457,9458], +"npm-p", +"ick-manifest", +[2,9460,9461], +"-checks", +[2,1161,9463], +[2,3382,9464], +"promise-", +[1,2343,9482], +"call-limit", +[2,9466,9468], +[3,2854,15], +"nice", +[2,9470,9471], +"-conf", +"lict-json", +[2,9473,9474], +[2,1644,9475], +"package-", +[2,9477,1781], +[2,636,9478], +"common-", +"ance", +[0,0,9511,9521,2523], +"stor-path", +[2,9481,9483], +[2,9480,9484], +"read-p", +"ackage-json-fast", +[2,9486,9487], +"all-reject-late", +[2,9466,9489], +[3,641,9], +"ame-from-folder", +[2,9491,9492], +[3,638,9], +"etavuln-calculator", +[2,9494,9495], +[3,548,8], +"e-compare", +[2,2703,9498], +[2,4284,9499], +[2,9497,9500], +"json-p", +"arse", +"-even-better-errors", +[2,9503,9504], +[2,9502,9505], +"installe", +"d-package-contents", +[2,9507,9508], +[2,636,9509], +[0,1414,15370,2899,1177,668,2203,15371,1690,1894,442,91,15373,15374,5476,1942,15376,811,5478], +"tcompare", +"oss", +[2,4641,9513], +[2,636,9514], +[2,636,7625], +"minify-", +[3,3396,9], +[2,9518,6774], +[2,9517,9519], +[0,1973,6468,1145,5472,1429], +[1,2343,9523], +[0,9524,9525,9526,2523], +[0,15373], +[0,1414,1429,2899,1177,2203,1894,442], +[0,1429,15385,1388,1149,5472,5710,6567,14833], +[2,664,591], +[1,2343,9529], +[0,0,9530,9531,34352], +[0,3095,2899,1429], +[0,1429,3495,15393], +[1,2343,9533], +[0,0,9534,9535,34352], +[0,1429,2899,2759,1596,14942,15398], +[0,1429,15385,15400,1435,6793,1932,15402,1697,15403,3529,9549,7015,15405], +[3,9479,9], +"-spawn", +[2,2751,9537], +[2,9536,9538], +[1,2343,9541], +[0,0,9543,9544,4139], +"spawk", +[0,1414,1906,1166,4481,2020,3130,3077,15411,4874,6271], +[0,1473,7208,1512,7009,7201,200,1871,1111,590,592,6621,6983,6616,7244,4166,4744,3073,6807,6876,2585], +[1,2343,9546], +[0,0,9571,9581,2399], +"innertext", +"highlights", +"similar", +"similarity", +[3,2954,9], +[2,9551,2714], +"ttl", +[2,4635,9553], +"dart", +[2,9551,9555], +"glsl", +[2,9551,9557], +"haxe", +[2,9551,9559], +"rust", +[2,9551,9561], +[2,3064,2204], +"erlang", +[2,9551,9564], +[2,9551,4333], +"-tokens", +[2,9548,9567], +"atom-language-diff", +[3,9569,14], +[0,1166,1178,1596,15418,1177,15421,2323,15423,2384,2494,2510,15424,1209,3421,3756], +"nginx", +[2,9570,9572], +"url-t", +"o-object", +[2,9574,9575], +[2,2287,9576], +[3,3114,13], +"xpand-tabs", +[2,9578,9579], +[0,1438,3778,1179,1973,15426,1213,15427,15428], +"-headers", +[2,7189,9582], +[2,3108,9583], +[1,2343,9589], +"oniguruma", +"-stdout", +[2,9261,9587], +[0,0,0,9590,2523], +[0,1444,15321,6270,353,15320,15326,15436,15437,15439], +"readme", +[1,2343,9596], +"formatted", +" highlighting", +[2,5341,9594], +[0,9597,9598,2514,2537], +[0,15444,9632,1556,15447,6041,15448,15449,3445,3510,15450,15451,4135,15452], +[0,4874,5254,7677,1177,1905,2807,1894,4257,91,4543,1984], +[1,2343,9600], +[0,9601,9602,9603,2537], +[0,15458], +[0,811,15460,8850,816,842,1006,15463,1009,1011,15465,15467,15469,1540,1596,1610,1177,15471,1927,1937,1948,1999,2070,2765,2766,2297,2881,2886,2891,2895,2898,6387,2910,15475,2923,5303,3220,3222,3536,4042,4052,6390,15478,4073,91,4747], +[0,1424,15480,2382,15481,12075,6398], +[1,2343,9605], +[0,9606,9607,9608,2443], +[0,3493,4548,15488,15487,2654,15486,1754,15502,15491,15499,15495], +[0,4494,4483,2675,2832,1177,2814,1984,2203,1894,4441,442,91,4874,2990,13204,19438,15504,1953,15505,4523,7677,1942,22839,1982,3703,15507,1895], +[0,15512,2814,3585,15514,57,965,6523,1936], +[1,2343,9610], +[0,9611,9612,9613,2523], +[0,1615,15526,3734], +[0,1173,14184,1235,1267,1429,1177,2272,2899], +[0,1451,3729,6567], +[1,2343,9615], +[0,9616,9617,9618,2537], +[0,97,15533,8597,15538,13042,1156,1325,15540,1461,1505,12160,1582,1593,1603,15541,15545,15547,15548,13047,15550,5100,15551,15553,2752,2822,15554,2272,15555,15556,12172,3220,15559,1894,11196,15560,15562,3775,11219,11363,15566,15568,15570,15573,3843,3847,15575,15578,3876,3893,3913,4023,15579,11264,4163,15580,4484,4545,4649,3348], +[0,53,61,71,73,76,78,5806,13052,5835,15585,83,5850,5853,87,90,7833,7839,7840,11275,4859,15587,15592,4863,15594,15596,5087,15598,4870,15600,15602,12179,4880,15605,4883,15606,15607,11322,1009,1011,1110,1165,1170,1175,1178,1193,1195,1205,13080,5098,15609,15611,15612,15613,1426,1437,13086,1525,1610,1628,4912,1639,11336,13093,1843,1845,8160,1177,1879,1895,1922,1938,1939,1947,1948,1959,15615,2054,2060,11345,2092,2148,2193,2070,2323,2338,2510,13099,2529,2675,2686,2697,15616,1192,2832,5102,695,13115,2990,1209,11357,13119,15618,13123,3177,3183,3188,3190,3191,3213,3216,3222,3427,3463,3561,3618,3720,11204,15619,15622,11362,89,3807,3810,3817,3820,5106,5108,15624,3846,15627,9340,3992,13124,13127,8304,13128,4039,13129,15629,4320,11384,11389,4323,11396,4328,4409,4431,4469,91,4549,4027,15630,15632,2924,15635,4689,13152,11401,5038,3354], +[0,15637,4964,89,5128,4627,4963,181,5130,4967], +[1,2343,9620], +[0,9629,9630,9631,2537], +"Monorepo", +"Angular", +"Web", +"Node", +"Nest", +"Jest", +"Cypress", +"CLI", +[0,15648], +[0,15645,4874,1894,4448,91,10761], +[0,2150,2282,6720,7158,6929,2090,2154], +"confbox", +[1,2343,9634], +[0,0,9635,9636,2523], +[0,1470,2675,23535,4255,4389], +[0,15656,15658,11857,1973,13735], +[2,13512,9638], +"-old", +[1,2343,9640], +[0,9641,0,9642,2523], +[0,182,148,6164,164,167,6215,137,27531,6127,29468,159,15664,177,187,153,162,180,185,191,157,15667,15670,15672,27537,140,15676,6200,6166,143,15678,171,116,15681,150,155,29542,15685,15687,6217,15690,15692,122,169,15695,119,15697,15700,6173,15703,146,6133,6158,15706,15712,111,6168,15714,15716,174,15720,15724], +[0,6092,1459,6094,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130], +[1,2343,9644], +[0,0,9645,9646,2523], +[0,4481,4042,4441,2665,3117,8850,811,816], +[0,89,1623,5256,6848,1461,614,6435], +"EsBuild", +"Front-end", +"Backend", +[1,2343,9651], +[0,9652,9653,9655,2523], +[0,4227], +[0,1389,1177,1881,2659,3297,4153,4616], +"linter", +[0,1623,2632], +[1,2343,9660], +"Lint", +"ESLint", +"Testing", +[0,9661,9662,9663,2399], +[0,1700], +[0,48,53,87,92,15742,5087,4874,15745,1193,1503,1610,1701,1177,2020,2675,1192,2990,2991,3377,1894,3921,4135,15747,91,2924], +[0,2924,1932,4050,202], +[1,2343,9665], +[0,0,0,9666,2523], +[0,1111,1468,7009], +"Express", +[1,2343,9669], +[0,9670,8134,9671,4139], +[0,15757,4025], +[0,1468,1237,3209,1204,2325,15759,15760,15761,5669,6865,7293,6790,2145], +[1,2343,9674], +"js-tokens", +[0,9679,0,9682,2523], +"const-enum", +[2,1199,9675], +[2,4524,6774], +[2,1226,9677], +[0,2070,2021], +"Swc", +"Tsc", +[0,200,9753,15767,15769,15768,7058,7201,15770,15771,15774,1523,15776], +[1,2343,9684], +[0,0,9685,9686,4139], +[0,1166,91,1906], +[0,200,5403,14907,7009,6048,7201,6938,3656,14908,2585,1781], +"@nestjs/schematics", +"@phenomnomnominal/tsquery", +"@date-fns/tz", +[1,2343,9691], +[0,9693,9694,9695,2537], +[3,23750,37,8], +[0,2353,1856,15786,13824,15788], +[0,1177,15793,15797,15801,2675,2990,3421,15804,15805], +[0,1111,1473,7201,7009,200,4166,3073,6807,4744], +[1,2343,9697], +[0,9698,9699,9700,2443], +[0,4035], +[0,4874,1166,91,1906], +[0,200,13006,1111,15813,5876,15814,15815,6048,7009,7201,6621,4166,6876], +[1,2343,9702], +[0,0,0,9703,34352], +[0,200], +[2,689,2656], +[3,691,8], +[2,9705,3320], +"help", +[2,689,9707], +[1,2343,9713], +[3,691,14], +"plugins", +[2,9710,9711], +[0,0,9715,9716,2537], +"fancy-test", +[0,1166,3077,15826,91,1906], +[0,200,1478,6787,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921,1781], +[1,2343,9718], +[0,9719,9720,9726,2399], +[0,1512], +[0,4170,15833], +[3,4866,9], +"dent-string", +[2,9721,9722], +"xyquire", +[2,6508,9724], +[0,200,1512,176], +[1,2343,9728], +[0,9729,9732,9751,2523], +[0,1209,4290,1512], +"clean-stack", +"widest-line", +[0,15841,1429,1481,1596,15843,15844,2323,2436,2463,2541,4193,4196], +"rett", +"ier-config", +[2,9733,9734], +[2,9705,9735], +[2,689,1973], +[3,4859,9], +"ean-stack", +[2,9738,9739], +"@types/ejs", +"npapi", +[2,5088,9742], +[3,9240,10], +"ports-color", +[2,9744,9745], +[3,7822,10], +"dwrap", +[2,9747,9748], +"madge", +[0,202,1523,3924,200,176,15846,15847,3656,1512,10052], +" line", +[2,1523,9752], +[1,2343,9755], +[0,9756,9757,9751,2399], +[0,4290], +[0,1481,1177,1895,1955,1192,15853,15854,1894], +[1,2343,9759], +[0,9761,8134,9762,2399], +[2,1890,4406], +[0,4208,4290], +[0,15862,15864,2585,7051,6913,200,7009,6048,4166,4289,1111,1871], +[1,2343,9764], +[0,9775,9795,6936,2537], +"paginate-rest", +[2,1186,9765], +[2,7724,9766], +[3,9767,16], +"request-", +"request-log", +[2,9768,9770], +[3,9771,18], +"st-endpoint-methods", +[2,9772,9773], +[0,1437,4484,2755,1209,4135,2822,15869,2151,4294,688,1110,9730,15871,1107,13223,4290,15872,15873,2709,15876,4351,15877,15880,15883,15887], +"-action", +"auth-action", +[2,7724,9777], +[3,9778,15], +"pp", +[2,9779,9780], +[2,1182,2995], +[2,7724,9782], +[3,692,11], +[2,9784,5460], +[2,7724,2190], +"update-", +"vers", +"in-files", +[2,7854,9789], +[2,9788,9790], +[2,9787,9791], +[2,6324,9792], +[2,4131,9793], +[0,1429,1170,2899,1177,4474,9714,91,4856,4874,6503,4870,5254,7637,4864,1431,15891,15893,9740,1891,15897,9746,9417,1893], +"octokit", +[3,3450,10], +[1,2343,9799], +[0,9800,9801,9802,2523], +[0,7103], +[0,816,10817,5087,4870,4874,27744,1009,1011,15903,15906,1177,15909,1959,2188,1192,1209,4042,15911,4468,4474,91], +[0,200,91,57,7119,7233,7058,5675,1523], +"action-menu", +[2,698,9803], +[3,9804,21], +"sheet", +[2,9805,9806], +[3,9804,15], +"lert", +[2,9808,9809], +[2,9808,2944], +"nchor", +[2,9808,9812], +"rea", +[2,9808,9814], +"chart", +"flowchart", +[2,5745,9817], +[2,9808,9818], +"utocomplete", +[2,9808,9820], +[1,2343,9823], +[0,9824,9825,9827,2523], +[0,15917,1631,15918], +[0,53,87,1195,1429,1610,1177,1881,1895,1938,1955,2675,2297,2878,2881,2900,2918,2925,2990,2899,1894,4193,4481,4537,2924,4677], +"vatar", +[0,1492,1585,15921], +"badge", +[2,698,9828], +[3,9829,16], +[1,2343,9832], +[0,9836,9839,9881,2537], +"se-select", +[2,9830,9833], +[3,9829,15], +[0,34216,2020,32794,2755,15926,28429], +"readcrumb", +[2,9835,9837], +[0,1166,1906], +"-item", +[2,9838,9840], +"ulletin-board", +[2,9835,9842], +[3,9843,16], +"tton", +[2,9844,9845], +"-group", +[2,9846,9847], +[2,698,9026], +[2,9849,8657], +[3,9850,23], +[2,9851,6624], +[3,9849,16], +"rd", +[2,9853,9854], +[2,9855,9847], +[3,9856,19], +[2,9857,1283], +[3,9855,17], +"ousel", +[2,9859,9860], +[2,9861,9840], +"scader", +[2,9853,9863], +"-menu", +[2,9864,9865], +[3,9866,24], +"obile", +[2,9867,9868], +[3,9866,23], +[2,9870,202], +"panel", +[2,9870,9872], +[2,9870,1631], +[2,9870,6624], +[3,9849,15], +"ell", +[2,9876,9877], +"hart", +[2,9876,9879], +[0,1492,1585,15928,15929,15930,3917,6033,15931,1490,15932,15933], +[1,2343,9883], +[0,9884,9885,6162,2537], +[0,4290,4294,4726], +[0,4874,1009,1011,1414,1429,1437,1610,1177,1938,1953,2321,2899,4039,8689,91], +[1,2343,9887], +[0,0,9888,2514,2487], +[0,2276], +[1,2343,9890], +[0,0,9891,9893,2399], +[0,1999,4579,4072], +"gauge", +[0,5256,6848,1461], +[1,2343,9895], +[0,9896,0,9897,2523], +[0,1474], +[0,15953,9628,14777,15955,1478,9892,3924,7201,1398], +[1,2343,9899], +[0,0,9900,9901,2487], +[0,1389,15960,2899,3261], +[0,1149,2124,1179,15962,15964], +[1,2343,9903], +[0,9904,9905,9907,2537], +[0,2927], +[0,4170,2899,1499], +"pie", +[0,7009,7201,3741,8622,6875,10098,1499], +[1,2343,9909], +[0,9034,9910,9911,2523], +[0,620,3123], +[0,1973,2022,6468], +[1,2343,9913], +[0,9914,9915,9916,2443], +[0,6478,15980,2822,15984,15985], +[0,1177,1895,2675,1192,2990,3203,1894], +[0,4504,15988,15990,1503], +[1,2343,9918], +[0,9919,9920,9921,2487], +[0,15997,15999,16000,16002,16003,16005,16006], +[0,16009], +[0,6038,1501], +[1,2343,9923], +[0,0,9924,9926,2399], +[0,1734,16015,2600,3105,4545], +"fall", +[0,5284,1351,1509,4643], +[1,2343,9928], +[0,0,9929,9926,2537], +[0,53,87,10688,1505,1734,2600,16021,3105,3758,4545,2924], +[1,2343,9946], +[3,9880,16], +"eckbox", +[2,9931,9932], +"-button", +[2,9933,9934], +[3,9935,23], +[2,9936,7227], +[2,9876,7877], +"lapse", +[2,9938,9939], +[2,9940,9840], +[3,9941,23], +"ition", +"transition", +[2,9942,9944], +[0,9972,9975,10072,2537], +"icker", +"or-picker", +[2,9938,9948], +[3,9949,20], +"select-", +[2,9951,9872], +[2,9950,9952], +"umn-list-group", +[2,9938,9954], +[3,9955,26], +[2,9956,5401], +[3,9938,16], +"mpany", +[2,9958,9959], +"nfig-", +"provider", +[2,9961,9962], +[2,9958,9963], +[3,9964,17], +"tainer", +[2,9965,9966], +"untry", +[2,9958,9968], +"rop", +[2,9876,9970], +[0,6271,11421], +"urrency", +[2,9876,9973], +[0,2899,4481,1906], +"date-panel", +[2,698,9976], +[3,9977,20], +[2,9978,9947], +"-mobile-", +"first", +[2,9980,9981], +[2,9979,9982], +[3,9977,19], +[2,9984,6754], +[2,9984,176], +[3,9977,15], +"ept", +[2,9987,9988], +"ialog-box", +[2,9987,9990], +[3,9991,21], +[2,9992,1631], +[3,9991,16], +"vider", +[2,9994,9995], +"rawer", +[2,9987,9997], +[3,9998,16], +"op-roles", +[2,9999,10000], +[3,10001,19], +"times", +[2,10002,10003], +[3,10001,18], +[2,10005,2971], +[2,10006,9840], +[3,10007,23], +[2,10008,4403], +"ynamic-", +"scroller", +[2,10010,10011], +[2,9987,10012], +[2,10013,9840], +"espace", +[2,698,10015], +[3,10016,15], +"xception", +[2,10017,10018], +"fall-menu", +[2,698,10020], +[3,10021,15], +"ile-upload", +[2,10022,10023], +[3,10024,17], +[2,10025,2389], +[2,10026,8657], +[3,10027,22], +"ox", +[2,10028,10029], +[3,10027,21], +[2,10031,9872], +"loat-button", +[2,10022,10033], +[3,10034,19], +"bar", +[2,10035,10036], +"ing-", +"button", +"ing-button", +[2,10035,10040], +[3,10034,17], +"wchart", +[2,10042,10043], +[3,10034,16], +"uent-editor", +[2,10045,10046], +[2,10022,3469], +[2,10048,9840], +"ullscreen", +[2,10022,10050], +"grid", +[2,698,10052], +"-column", +[2,10053,10054], +[3,10055,19], +"manager", +[2,10056,10057], +"toolbar", +[2,10056,10059], +[3,10053,15], +"uide", +[2,10061,10062], +"hrapprover", +[2,698,10064], +[2,698,158], +"-viewer", +[2,10066,10067], +[3,10066,15], +"ndex-bar", +[2,10069,10070], +[0,1473,7208,1623], +[3,10071,16], +"put", +[2,10073,10074], +"p-address", +[2,10069,10076], +[2,698,5433], +[3,10078,16], +"yout", +[2,10079,10080], +[3,10078,15], +[2,10082,2716], +[2,10083,9865], +[1,2343,10086], +[0,0,0,10090,2523], +"oading", +[2,10082,10087], +[3,10088,16], +[0,7009,592,1473,1111], +"cales", +[2,10089,10091], +"gon-user", +[2,10089,10093], +[3,10094,18], +"ut", +[2,10095,10096], +"mask", +[2,698,10098], +[3,10099,15], +"enu", +[2,10100,10101], +[3,10102,16], +"ssage", +[2,10103,10104], +"ilestone", +[2,10100,10106], +[3,10107,16], +"nd-map", +[2,10108,10109], +[1,2343,10112], +[0,0,10113,10120,2523], +[0,1177,1886], +[2,10100,3852], +[3,10114,16], +"nth-range", +[2,10115,10116], +[3,10117,20], +[2,10118,176], +[0,1111,7009,1512], +[1,2343,10122], +[0,10140,10184,10220,2443], +"nav-bar", +[2,698,10123], +[3,10124,18], +[2,10125,4403], +[3,10124,15], +[2,10127,2304], +"umeric", +[2,10127,10129], +[2,698,5675], +[2,10131,9847], +"pager", +[2,698,10133], +[2,10134,9840], +[3,10134,16], +[2,10136,7251], +[3,10134,15], +[2,10138,9947], +[0,4294,16041], +"op-upload", +[2,10138,10141], +[3,10142,17], +[2,10143,8622], +[2,10143,6038], +[2,10143,2883], +[2,10143,2104], +"rogress", +[2,10138,10148], +"ull-refresh", +[2,10138,10150], +"qr-code", +[2,698,10152], +[3,10153,15], +"uarter-panel", +[2,10154,10155], +[3,10156,16], +"ery-builder", +[2,10157,10158], +[3,697,15], +"adio", +[2,10160,10161], +[2,10162,9934], +[3,10163,20], +[2,10164,7227], +[3,10162,16], +[2,10166,6864], +[3,697,16], +"cord", +[2,10168,10169], +[3,10170,17], +"ycle-scroller", +[2,10171,10172], +"ich-text-editor", +[2,10160,10174], +[3,10175,16], +"ver", +[2,10176,10177], +"oles", +[2,10160,10179], +[3,10180,16], +"w", +[2,10181,10182], +[0,1173,1267,1437,4387,4389], +"scroll-text", +[2,698,10185], +[3,10186,20], +[2,10187,10036], +[3,10186,15], +"earch", +[2,10189,10190], +[3,10191,16], +[2,10192,4021], +"-dropdown", +[2,10193,10194], +[3,10195,21], +[2,10196,5131], +[2,10196,6624], +"ed-box", +[2,10193,10199], +[2,10189,1580], +"keleton", +[2,10189,10202], +[2,10203,9840], +"lider", +[2,10189,10205], +[2,10206,9934], +[2,10207,9847], +"plit", +[2,10189,10209], +"-list-item", +[2,1902,10211], +[2,10189,10212], +[3,10213,17], +"tistic", +[2,10214,10215], +[3,10213,16], +"eps", +[2,10217,10218], +[0,6922,2585,1111,7201,7009,4719,176], +[1,2343,10242], +"witch", +[2,10189,10222], +[3,700,15], +"ab-item", +[2,10224,10225], +[3,10226,17], +[2,10227,10036], +[2,10228,9840], +[2,10227,2699], +[2,10227,591], +[3,10226,16], +"g", +[2,10232,10233], +[2,10234,9847], +"ext-popup", +[2,10224,10236], +"ime", +[2,10224,10238], +"-line", +[2,10239,10240], +[0,0,10243,10265,2487], +[0,2025,2272,2899], +[3,10241,19], +[2,10244,9872], +[3,10245,20], +[2,10246,9947], +[2,10247,701], +[2,10244,6754], +[2,10244,1631], +[3,10250,20], +"pinner", +[2,10251,10252], +"line-item", +[2,10239,10254], +"oast", +[2,10224,10256], +[3,10257,16], +"ggle-menu", +[2,10258,10259], +"oltip", +[2,10258,10261], +"p-box", +[2,10258,10263], +[0,200,1523,3504], +"ransfer", +[2,10224,10266], +"-panel", +[2,10267,10268], +[3,10267,16], +"ee", +[2,10270,10271], +[2,10272,9865], +[3,10273,19], +[2,10274,1631], +[2,698,9229], +"-dragger", +[2,10276,10277], +[3,10278,21], +[2,10279,3392], +[3,10276,15], +"ser", +[2,10281,10282], +"-account", +[2,10283,10284], +[3,10285,19], +[1,2343,10288], +[0,10297,10298,10305,2443], +"contact", +[2,10286,10289], +[2,10286,3193], +[2,10291,9847], +[2,10286,163], +"watermark", +[2,698,10294], +[3,10295,15], +[0,16053,16056,3025,16057], +[0,1187], +"izard", +[2,10296,10299], +"year-range", +[2,698,10301], +[3,10302,19], +[2,10303,176], +[0,6478,1644,7233,7058,5675,14690,57,7119,200,1523,3924], +[3,1533,10], +[2,10306,6082], +"vue-c", +[2,10308,544], +"opentiny", +"less-c", +[2,10311,544], +[2,8924,10312], +[3,3197,10], +[2,10314,544], +[1,2343,10317], +[0,10318,10319,10320,2537], +[0,16053,16064,16066,16057], +[0,811,816,2829,4042,1187], +[0,7009,9753,1521,1179], +"esno", +[1,2343,10323], +[0,0,10324,10325,2537], +[0,4481,1192,1177,2203,4468,1894,442,91,5087,4874,4523,1939,1895], +[0,1525,1523,5675,57,200,7233,7058,6478], +[3,2517,9], +[2,10326,134], +[2,2522,8754], +[1,2343,10330], +[0,10331,10332,10333,2523], +[0,2070,1680,1209,16085,16078,2151,2720,3183,7915,4296,1707,16082,4300,1652], +[0,3421,1429,3348,2899,4193,2194,4135,1503,3363,48,2708,3752,53,94,4131,87,3200,1208,16092,16088,16090,78,1570], +[0,1528,3721,1671,16096,1527], +[1,2343,10335], +[0,10336,10338,5265,2537], +[0,192,6303], +"otterhttp", +[0,6306,6307,26379], +"node.js", +"web framework", +[1,2343,10343], +[3,17194,17], +[0,0,10344,10358,2487], +[0,1173,1178,1198,1230,13982,1264,1280,1503,1610,1742,1177,1895,1955,1192,3170,1894,4039,4042,4045,4067,4077,4706], +"header", +"-range-parser", +[2,10345,10346], +[2,704,1080], +[3,703,13], +"ntent-type", +[2,10349,10350], +[2,988,2706], +[2,704,10352], +[2,704,1000], +[2,704,1002], +[3,706,12], +[2,10356,995], +[0,4552,1172,6778,16107,5194,16108,16109,1936,8958,16110,3924,16111,3250,16112,3374,6985,16113,16114,16115,1871,16116,4301,10381,16117,1283], +[1,2343,10360], +[0,0,9839,10361,2487], +[0,2013,13771,2018,6868,15535,11631,16123], +[1,2343,10365], +"es-escape-html", +[3,10351,19], +[0,10375,10377,10378,2523], +"disposition", +[2,10364,10366], +"encode", +"encode-url", +[2,704,10369], +[3,10370,12], +"rrors", +[2,10371,10372], +[2,704,4590], +[0,1413,16130,1676,12627,16128,4100,4590], +"res", +[0,1087,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], +[0,1536,16518,25386,2663,2026,21665,27,3101], +[1,2343,10380], +[0,10383,9264,2514,2537], +"tag", +[2,10371,10381], +[0,16136,2713,3923,7231], +"send-file", +[1,2343,10386], +[0,10387,10388,10390,2537], +[0,4094,1437,4747,4459,4165,4351], +[0,2675,1177,1984,668,2203,1894,442,91,4874,2990,6479,4892,16151,16150,4523,16149,7677,4103,9746,22839,16144,1895,1955,16152,23753,10964], +[2,712,1732], +[0,16159,13792,12804,1540,1523,16160], +[1,2343,10394], +"fined", +"undefined", +[0,10395,10396,10398,2537], +[0,2856], +[0,4874,1414,1509,16166,34218,16167,3583,705,4135,4452,4474,91,4545,16168,4745], +"randexp", +[0,12084,1541,8309,16172,16174,1263,6639], +[3,10389,22], +"js-prettier-config", +[2,10399,10400], +"i-color", +[2,9738,10402], +[3,7744,9], +"tp-proxy", +[2,10404,10405], +"isnil", +[2,6308,10407], +[3,4874,9], +"@types/nock", +[1,2343,10412], +[0,10414,9839,10415,2537], +"@types/ramda", +[0,16181,8098,2215,34027,16184], +[0,1541,1542,13901,8309,6937,16188,1781,2382,16189,7007,14745], +"-and-tag-version", +[2,1528,10416], +"hai-friendly", +[2,4914,10418], +[3,3028,12], +[1,2343,10422], +[0,10423,10424,10425,2537], +[0,1676,2099,3494,4578], +[0,1177,2899,3421,4342], +[0,5130,5122,2663,1544,16196], +"pact", +"pact-js", +" testing", +"ract testing", +[2,3109,10429], +"r driven testing", +[2,6613,10431], +[1,2343,10434], +[0,0,10435,10436,2443], +[0,4616], +[0,1544,2026,16202,6347], +[1,2343,10438], +[0,0,10439,2514,2537], +[0,1177,1192,4193], +[1,2343,10444], +"default", +"waapi", +"urls", +[0,10445,10447,10448,2537], +[0,1676,16211], +"arguments", +[0,11436,192,5467,19181,442,5245,6494,7808,4874,9240,1009,1011,1166,1414,1503,1177,1895,1930,1955,2026,2040,2193,2675,2990,3230,3400,3446,1894,4257,4342,1531,4508,91], +[0,1544,1550,3230,1577,2026], +[1,2343,10450], +[0,0,10451,10452,2523], +[0,11976,7808,4874,7677,2040,4474,91,1983,26744,1984], +[0,1544,1552,1577,2026], +[1,2343,10454], +[0,0,10455,10456,4139], +[0,8646,4874,7677,1446,16230,1177,1905,16232,1894,16234,15452,4290,91,4543,1984], +[0,7201,2942,16237,16238,200,14566,4549,3741,16239,1671,1851,16240], +[1,2343,10458], +[0,0,10459,10460,2523], +[0,1906,1166,1758,16257,2746,1797,7614,3754,16272,16249,16262,16264,16268,16270,4371,16277,16279,2675,16263,89,16278,1177,16260,5304,16267,1209,16269,4135,16274,16276,16281,2114,16261,16271,2608,3257,3416,16282,3824,2036,3985,16275,4545,16280,53,16259,2990,16265,16245,1506,16251,16273,16256,16248,90,3995,1909], +[0,16284,1283,6624], +[1,2343,10462], +[0,0,10463,10464,2487], +[0,1414,1177,1903,1938,1948,1954,1958,1970], +[0,1560,27,16290,10376], +[1,2343,10467], +"fd-package-json", +[0,0,10468,10469,2523], +[0,3421,2899,1177,1693,1954,1938,1958,1903,1970], +[0,1562,27,990,10376,16296], +[1,2343,10471], +[0,10472,0,10473,2537], +[0,18186,10466,3157,18183,16309,13848,28401,16322], +[0,1566,16094,13729,3073,200], +[1,2343,10475], +[0,10476,0,10477,34352], +[0,3157,16330,16329,1566], +[0,200,13326,1566,16094,13729,3073], +[1,2343,10479], +[0,10480,0,10481,2443], +[0,16337], +[0,1566,16341,16342], +[1,2343,10483], +[0,0,10484,10485,2537], +[0,16349,4384], +[0,6270,12938,4225,3053,1388,1676], +[1,2343,10487], +[0,0,10488,10489,2523], +[0,29867,7677,16356,91,1984], +[0,977,16358], +[1,2343,10491], +[0,10492,9025,10493,2537], +[0,977,1581], +[0,977,2663], +[1,2343,10495], +[0,10496,10497,10498,2399], +[0,16358,1676,16128,4100], +[0,1544,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], +[0,1544,2026,2663,1577], +[1,2343,10500], +[0,0,0,10501,2537], +[0,977,16375,16376], +[1,2343,10503], +[0,10504,10505,10506,2537], +[0,16382], +[0,1389,3183,3294,16384,3460,16389,4535], +[0,1492,1585,1388], +[1,2343,10508], +[0,10509,10510,10511,2537], +[0,27921,2200,4121,3369,4143], +[0,1700,1192,2675,3144,1622,1177,1701,2203,16407,2924,1894,1610,48,442,1193,91,53,4874,2092,2990,3400,192,1953,27928,4257,87,4523,16396,1939,1942,68,1938,16398,20281,1982,1895,1955,19344,16400,5467], +[0,2924,1932,16410,7004,1585], +[1,2343,10513], +[0,10514,10515,2514,2537], +[0,2070,3181,3188,16415,4431,4558,4747], +[0,4039,4389,4387], +[1,2343,10517], +[0,0,7923,10518,2537], +[0,16421,11194,1179,16423,16424,16425], +[1,2343,10520], +[0,10521,10522,10523,2537], +[0,3044,1588,16432], +[0,4880,4883,91,89,3824], +[0,89,91,11194,11255,16435], +[1,2343,10525], +[0,10526,10527,10528,2537], +[0,1543,16446,16449,16444,6038,2020,3368,4135,4375], +[0,16454,1414,2765,4037], +[0,1591,5576,200], +[1,2343,10530], +[0,0,0,10531,2523], +[0,6570,6964,6789,7221,6746,7011,7194,7087,6839,6860,6918,6620,6777,16461,6748,7171,6894,6945,6743,7309,6837,6644,6634,7259,6797,7061,6608,16462,6726,6828,7275,6569,7144,7108,7027,7263,6923,6854,7134,6762,7042,6818,6677,6422,6805,1858], +[1,2343,10533], +[0,10534,10535,10536,2537], +[0,3427,4590], +[0,1087,1177,2026,2899,3421,4342], +[0,1594,2026,1544,2663], +[1,2343,10538], +[0,10539,10540,10541,2487], +[0,16473,2702,2822,16474], +[0,7637,4874,16478,1009,1011,16480,1610,1177,16482,1895,1915,1938,1954,1985,2675,2990,15757,1894,16484,91,1984], +[0,3001,8309,1541], +[1,2343,10543], +[0,10544,10545,10546,2537], +[0,2822,16491,16492,3183,705], +[0,2899,3421,4170,4172,4193,1906], +[0,4504,1596], +[1,2343,10548], +[0,10549,10550,10551,2537], +[0,16499,2205,3157], +[0,1166,2020,3505,16330,1906], +[0,13326,200,1585,16502,16499,2090,1586,1496,2150,3101,2070,16503,3275,2062,3719,2382,1563,16504], +[1,2343,10553], +[0,10554,10555,10556,2537], +[0,2212,16513,1448,16509,16512,2685,16511], +[0,1414,1166,4494,3297,4193,1177,2203,442,16515,91,4874,4454,4523], +[0,5284,1598,16517,15514,15362,2814,6710,27,2671,13333,2212,705,1002,11996,16518], +"@epic-web/invariant", +[1,2343,10559], +[0,0,0,10560,2443], +[0,1599,16523,16526,16528,16524,16530,16531,16532,13580,16533,16534,16536,16537], +[1,2343,10562], +[0,10563,10564,10565,2523], +[0,16542,2713,13892,16543,16544], +[0,13817,4100,4255,4387,4389], +[0,1616], +[1,2343,10567], +[0,10568,10569,10570,2523], +[0,3082,3427], +[0,1192,3744,89,3824,2924], +[0,89], +[1,2343,10573], +"degit", +[0,10574,10575,10576,2399], +[0,63,16560,1462,1532,16563,16566,1676,2105,2185,2205,2212,16568,2709,16570,2743,2812,1209,3021,3093,3157,16571,13233,16572,3527,3544,3561,16573,16576,16578,4002,4207,4400,4431,4597], +[0,1149,1610,2099,2182,1192,3297,16581,4151,16584,4278,4603,1906], +[0,1604,3403,1623,16587], +[1,2343,10578], +[0,10579,10580,10581,4139], +[0,6501,5303], +[0,192,442,16596,16597,16602,6061,16607,6063,6065,16608,16612,842,16145,5087,4874,6513,1610,1177,1895,1939,1955,2675,1192,2990,1894,4131,4193,91,4523], +[0,1605,16615,16617,16618,4116,16619,16621], +[1,2343,10583], +[0,0,0,10584,2537], +[0,1605,6400,5995,57,1606,16618,4116,16629,5957,12692,14571,16631], +[1,2343,10586], +[0,0,10587,10588,2537], +[0,30684,33382,16636,16637,33968,33969,16638,33971,17212,4874,1177,16644,1930,1938,1942,1951,1953,16647,1958,1964,1982,2203,25209,3124,16649,3390,1894,23535,33974,4508,91,16650], +[0,1605,16631,4116,1608,6400,5995], +[1,2343,10590], +[0,10591,0,10609,2537], +[0,10870,16666], +[3,804,10], +[2,10592,8893], +[2,10592,8891], +[3,10594,12], +[2,10595,8896], +[2,10592,8905], +[3,10597,11], +"omutils", +[2,10598,10599], +"ragdrop", +[2,10598,10601], +[2,10592,8652], +[2,10592,8899], +[2,10592,3583], +[2,10592,8901], +"virtualdom", +[2,10592,10607], +[0,158,12712,7004,16660,16661,16662,16663,16664,29241,29242,29244,29245,29247,29248,1936,1623,5284,6400,5122], +[1,2343,10611], +[0,10612,10613,10618,2523], +[0,10557,1615], +[0,31088,21122,4874,7677,23203,1177,1894,91,1984,31103], +"@release-it/conventional-changelog", +[2,812,4072], +"cobertura", +"git-", +[0,16674,16676,6574,16697], +"git-cz", +[1,2343,10625], +"global-jsdom", +[2,7627,1177], +[2,10622,20], +"putout", +[0,10626,10628,10629,2523], +[0,3310], +"quibble", +[0,3421,1429,3297,2675,2899,4747,4039,4042,4135,1503,2026,2924,4255,1527,91,4856,4874,1364,2990,4150,4677,6503,4705,192,4257,8849,3198,15277,1652,28710,5467], +[0,1612,27,1002,1862,1149,7003,14571,14566,202,89,970,1388,6805,7102,4731,6662], +"remark-github", +"toc", +"remark-toc", +[2,4513,9339], +[3,4514,16], +"dn-links", +[2,10634,10635], +"no-inherit", +[2,4513,10637], +[2,4513,3984], +[3,10639,17], +"-defaults", +[2,1213,10641], +[2,10640,10642], +[1,2343,10647], +"-prettier", +[2,4549,10645], +[0,10649,10662,10664,2487], +[3,5410,10], +[0,4707,16687,16688], +"annotate", +"pin", +"specific", +"ations", +[2,10652,10653], +"anatomy", +"dissection", +"dissect", +[3,10654,13], +"specs", +[3,2620,12], +[2,10660,591], +[0,1192,2675,1177,3188,4039,1175,1193,2990,192,4257,16692,16694,5467], +"spacing", +[0,1614,16696,6574,16697,16699,6987,8429,16701], +"speccer", +[1,2343,10668], +"grid-layout", +[0,10669,10670,2514,2523], +[0,16710,16713,16716,1600,16719,16721,9207,2713,16722,16725,3779,16726], +[0,13614,1177,13817,3421,3438,16728,4100,4135,4389], +[1,2343,10676], +"@web", +"/shadycss", +[2,4963,10673], +[2,10672,10674], +[0,0,0,10680,2523], +"dom5", +"lazypipe", +"poly", +[0,1965,1616,16733,16734,16735,16736,16737,16739,16740,16741,16742,16743,16744,16745,16746,16747,16748,16749,16750,16751], +"polymer-cli", +"polymer-", +[2,10682,6147], +"gulp-v", +"ulcanize", +[2,10684,10685], +"wct-browser-legacy", +[2,1262,3178], +[3,806,9], +[2,1382,5187], +[2,10689,10690], +"google-", +"clos", +[1,2343,10709], +"ure-compiler", +[2,10693,10695], +[2,10692,10696], +"iron", +[3,4314,10], +"-page", +[2,10699,10700], +[2,10698,10701], +[2,10689,10702], +[3,10675,15], +"webcomponentsjs", +[2,10704,10705], +"gen-closure-declarations", +[2,10689,10707], +[0,10710,10711,10712,2537], +[0,1509], +[0,1414,1177,16758,1938,1951,1954,1955,2899,16759,3400,1894], +[0,16166,57], +[3,78,24], +[3,5731,9], +[1,2343,10716], +[0,10758,10762,10764,2537], +"-assign", +[2,5734,10717], +[2,10714,10718], +[2,10713,10719], +"@metalsmith/layouts", +[3,10721,12], +[2,10722,1783], +[3,807,9], +"disable", +[2,2827,10725], +[2,1884,10726], +[2,10724,10727], +[3,10728,23], +"qx", +[2,10729,10730], +[3,10728,16], +"plugin-qx", +[2,10732,10733], +"app-", +"module-path", +[2,10735,10736], +"better-ajv-errors", +"cldr", +"console-", +"contr", +"ol-strings", +[2,10741,10742], +[2,10740,10743], +"core-js-", +[2,10745,6374], +[3,4913,14], +[2,10747,7877], +[3,7681,17], +"codeframe", +[2,10749,10750], +"fontkit", +"get-value", +"github-api", +"jstransformer-dot", +"ps-tree", +"set-value", +[0,16765,34219,16767,16768,34222,16770,16771,1109,1437,16064,1525,28612,16772,16775,16778,16779,16780,16781,26385,4135,27921], +"tap-colorize", +"unset-value", +"upath", +[0,8778,5254,3170,3181], +"dirsum", +[0,16789,16790,1501,15318,15321,16791,16793,16794,671], +"qooxdoo", +"fontend", +[1,2343,10773], +"back-end", +"gui", +"binding", +"databinding", +"interfaces", +[0,10774,10775,10776,2537], +[0,2713,4227,16799], +[0,2899,4170,3130,1413], +[0,1623,57,5374,5376], +"@mdi/font", +[1,2343,10781], +"@mdi/svg", +"@xmldom/xmldom", +[0,0,10782,10789,34352], +[0,442,16805,16808,1177,3561,4042,4579], +"animate.css", +[3,1369,10], +[2,10784,45], +"eva-icons", +"line-a", +"line-awesome", +[0,3561,6425,1623,6432,16811,3205,4327], +"ar", +"quasar", +"fonts", +"animations", +[1,2343,10795], +[0,0,10796,10797,2523], +[0,23339,13204,6503,4874,5542,16818,1177,16821,1895,1955,16824,2675,16825,2832,2990,2899,3377,1894,28865,29444,91,16827,16831], +[0,1623,5746,3392], +"gpu", +"detect-gpu", +"gltfpack", +[1,2343,10803], +"@react-", +[0,10812,10813,10819,2537], +"three/drei", +[2,10802,10804], +[3,10805,13], +"fiber", +[2,10806,10807], +"processing", +[2,3689,10809], +[2,10806,10810], +[0,16837,3561,16840,3638,16841,16842,3688,4135], +[0,48,53,87,192,5467,16405,1193,1610,1622,1701,1854,1177,1895,1938,2092,2675,1192,2780,695,2969,2990,3144,3177,3400,3618,3672,1894,2278,4111,4257,4294,4307,4333,4334,4027,2924], +"test-renderer", +[2,10806,10814], +[3,10615,16], +[2,10816,2528], +[3,827,17], +[0,2924,1623,1194,1002,1204], +"actions", +[2,10818,10820], +[1,2343,10823], +[0,10838,10845,10856,2523], +"essentials", +[2,10818,10824], +"interactions", +[2,10818,10826], +[2,10818,3966], +[3,827,11], +[2,813,2942], +[2,10829,10830], +"preset-", +[3,1603,13], +[2,10833,1896], +[2,10832,10834], +[2,10829,10835], +[2,10829,89], +[0,1637,3561,2805,4121,4143,5180], +"-webpack5", +[2,10837,10839], +[2,10829,1975], +"__jest-dom", +[2,6626,10842], +[2,7750,10843], +[0,1700,16858,1192,2278,2675,3144,1622,1177,1701,668,2203,4337,2924,16851,1894,1462,1610,48,442,1193,1628,91,53,16850,16854,4874,2990,3400,4111,16860,192,1953,27928,16853,4257,87,1939,1584,1942,1938,16857,20281,1982,1895,1955,3177,19344,16400,5467], +"@types/three", +"-image-diff-js", +[2,1651,10847], +[3,1970,16], +"orybook", +[2,10849,10850], +"r3f-perf", +[3,6068,15], +[2,10853,2481], +"suspend-react", +[0,1637,1623,16858,1462,11538,668,2924,1464,16862,16863,3178,2632,6707,6708], +[1,2343,10859], +"three-stdlib", +[0,10861,10869,10871,2537], +"threejs", +[0,16868,9378,15488,16870,15487], +"hree-fiber", +[2,3900,10862], +"y-player-me", +[2,3917,10864], +"3D", +"avatars", +"glb", +[0,4483,1984,91,4874,2654,11976,16874,16877,7677], +"@cropper/elements", +[0,1623,3585,16879], +[1,2343,10873], +[0,10885,10889,10890,2537], +"@phryneas/ts-version", +[2,5531,2090], +[2,5531,2924], +[3,4852,12], +"__core", +[2,10877,10878], +[3,10879,14], +[2,5223,5651], +[2,1181,10881], +[2,10880,10882], +"@types/n", +[0,3141,4228], +"@types/nanoid", +[2,4807,3765], +[2,7686,2473], +[0,1414,16885,668,1177,16889,2899,4042], +[0,1623,6892,207,57,16891,16892,1179,594,5341,7020], +[1,2343,10892], +[0,0,10893,10899,2537], +[0,16805,1393,2070,3561,3566,3672,4135,4320,4323,16898], +[3,811,14], +[2,10894,594], +"common", +"commondir", +"is-reference", +[0,1623,16897,10654,16900], +"locat", +"e-character", +[2,10900,10901], +"relative", +[2,4013,10903], +[1,2343,10907], +"commonjs", +[0,0,10908,10909,2537], +[0,1173,1264,1503,2228,14352,2759,2899,3954,4019], +[0,1623,1867,16906,1871,4990], +[1,2343,10913], +"is-builtin-module", +"is-module", +[0,10914,10917,10918,2537], +[0,2984,16912], +"capitalize", +[2,4284,10915], +[0,1165,3561,16915,16916], +[0,1623,15215,3178,16918,16919,3561,6425], +[1,2343,10920], +[0,10921,10922,10926,2443], +[0,28920,30928,1634,3084], +[0,23591,23205,1177,1895,1955,2203,1894], +"groq-js", +[3,817,8], +"@sanity/ui", +[0,6829,6977,7146], +"@types/cpx", +[1,2343,10937], +"dotenv-flow", +[2,10924,1473], +[2,10924,45], +"@sanity/c", +[2,10932,1124], +[3,3878,10], +[2,10934,6346], +[2,7686,93], +[0,0,10943,10945,2537], +"pkg-utils", +[2,10924,10938], +"@portabletext/react", +[3,10940,14], +[2,10941,6081], +[0,53,87,92,442,16805,33227,16933,16934,5087,13204,4874,15600,16938,1193,1437,1457,1634,1895,1955,2126,1192,2832,3141,1894,3980,4494,4495,91,4523], +"cpx", +[0,1623,590,91,2124,4532,553,7900], +"sanity", +"refractor", +"kdirp", +[2,6502,10948], +"-workshop", +[2,10925,10950], +"vitest-", +[1,2343,10954], +[0,10955,10956,10965,2523], +[0,16944,977,2657,1581], +[0,3421,2899,1177,1544,4342,1364,1575,1578,1954,1938,1958,1903,1948,1970], +[3,9794,18], +"reset", +[2,10957,10958], +[2,10924,10959], +"imple-", +"import-sort", +[2,10961,10962], +[2,1967,10963], +[0,16944,11590,2663,2026], +"API reference", +[1,2343,10968], +[0,10969,10970,10971,2537], +[0,1642,1645,1647,4280], +[0,816,6503,4874,1794,2899,1894,4042,4064,4066,4170,4474,91], +[0,202,1641,16956,57,1644,5374,1646,353,3101,8623,16957,5995,4967], +[3,9307,12], +[2,10972,188], +[2,7719,57], +[2,819,10974], +[2,4807,1143], +"snippetz", +[2,819,10977], +[2,10987,14037], +[1,2343,10983], +"@unhead/vue", +"@vue", +[0,0,10985,10986,2523], +"@vueuse/core", +[0,816,6503,4874,1680,1794,2899,1894,4042,4064,4066,4170,4474,91], +[0,3101,8623,1641,3048,5995,4967], +[3,35505,11], +"code-", +[2,10988,5342], +[2,819,10989], +[3,818,12], +[2,10991,5576], +"@scalar/o", +"as-utils", +[2,10993,10994], +[2,819,553], +"@scalar/t", +"hemes", +[2,10997,10998], +"toast", +[1,2343,11006], +"use-toasts", +[2,819,11002], +"@scalar/co", +[2,11004,4961], +[0,0,11007,11009,2523], +[0,816,6503,4874,1642,16971,1680,1794,2899,2966,1894,4042,4064,4066,4170,4280,4474,91], +[2,27553,1794], +[0,1641,1644,57,6270,16956,3101,5995,4967], +"blocks", +[2,10829,11010], +[1,2343,11014], +[2,5249,11020], +[0,0,11015,11019,34352], +[0,816,6503,4874,1642,1680,1794,2026,2899,1894,4042,4064,4066,4170,4474,91], +[2,1029,188], +"test-utils", +[2,5334,11017], +[0,1641,1646,5374,5995,4967], +"flect.ownkeys", +"webpack-stats", +[2,4049,11021], +[1,2343,11024], +[0,6203,11025,11029,2537], +[0,35960,6503,4874,1217,1596,3183,2899,3421,4193,4468,4474,91,4537,2924,4677], +[2,4609,7179], +"css-in", +"well-known-symbols", +[0,1641,16984,16986,1648,1781,16989,16990,16991,16994,16995], +[1,2343,11035], +"jected-by-js", +[2,11027,11031], +[2,4609,11032], +"media-mock", +[0,11036,11042,5543,4139], +[0,3261,2070,1512,1209,4593,2089,6532,814,1362,17003,3730,1525,2753,1483,12126,6481,17010,6479,17007,2709,17011,17009,17000,1874,6475,17002,6470], +"-tooling", +[2,6147,11037], +[2,819,11038], +"galaxy", +[2,819,11040], +[0,3421,4449,1429,2899,4193,1177,1544,1593,1290,2151,3257,1894,17013,1596,48,1389,4196,53,1178,1509,4151,94,6525,6530,87,1954,1922,3957,1938,1208,1958,1895,1903,1955,1970,14039], +"reference", +[1,2343,11045], +[0,0,11046,11047,2537], +[0,1257,1264,1280,1389,1177,17019,2665,3188,17020,4389,4415,4535,17021,4650], +[0,6926,3265,7818,17025,3348], +[3,820,8], +[2,11048,1932], +[1,2343,11055], +"@fastify/basic-auth", +"external", +"externals", +[2,4065,11053], +[0,11056,0,11057,2537], +[0,4449,12675,1437,1673,1676,2020,29952,4753,1398,2992,1209,17031,1458,2089,3729,1362,16078,1836,2151,3183,17036,1525,4459,4558,6520,1477,1483,8435,1532,2057,3074,3714,17039,17041,2015,13860,4351,17042,17047,4375,2744,6515], +[0,13428,1388,1651,17049,11862,11861,11857,4627,17050,8791,17051,17052,1973,5472], +[1,2343,11059], +[0,11060,11061,2514,2523], +[0,1437,17059,4717,1527,3054,6301,17058], +[0,1429,2899,4135,1894,4856,1595,6503,3210,4131], +[1,2343,11063], +[0,11074,11087,11089,2523], +[2,823,364], +[2,823,4030], +[3,825,16], +"query-s", +"elector-", +"shadow-dom", +[2,11068,11069], +[2,11067,11070], +"tiny-", +"tiny-types", +[0,17081,17090,17067,17080,17082,17093,17101,17108,1654,17068,17071,14674,17083,17086,1655,1660,17104,17089,17098,17074,17096,17075,17078,17097,17091,1658,17107,17092,17103,17100], +"@integration/testing-tools", +[2,823,5710], +[3,11064,14], +"ucumber", +[2,11077,11078], +[2,823,2765], +[2,5554,36], +[2,823,11081], +[2,823,2899], +[3,7744,12], +[2,11084,2632], +"mocha-multi", +[0,2899,1177,4042,4614,17113,17110,8850,17112,10615,816], +"serenity-js", +[0,1653,965,17116,8221,7521,1424], +[1,2343,11091], +[0,11092,11094,11098,4139], +[0,17122], +"@wdio/reporter", +[0,816,17081,17098,1177,2832,2899,4042,4073], +"@wdio/", +"@wdio/cli", +[3,8255,9], +[0,1653,17125,17128,17129,17130,17134,7193,6333,4552], +[1,2343,11101], +"service", +[0,11102,11106,11107,2399], +[0,1654,17089,17092,17101,17103], +"@wdio/d", +"ot-reporter", +[2,11103,11104], +[0,14674,1177,2899,4042,4073], +[0,1653,17125,16662,17116], +"local-runner", +[2,11095,11108], +[2,4386,2903], +[2,11095,11110], +"@wdio/types", +[2,2299,2382], +[2,3758,1732], +[1,2343,11118], +"wdio", +[2,11116,2903], +[0,0,11119,11120,2523], +[0,1177,2832,2899,4042,4073], +[0,1653,17125,965,17146,17147], +[1,2343,11125], +[3,826,9], +"commons", +[2,11122,11123], +[0,11135,11136,11139,2487], +"@mochify/cli", +"@mochify/", +"driver-", +[2,11128,3758], +[2,11127,11129], +[3,11130,16], +[3,824,9], +[2,11131,11132], +[2,11122,7625], +[0,17093], +[0,17096,1177,2899,4042,4073], +"referee-sinon", +[2,11122,11137], +[0,1653,17125,11812,17116,1424,8221], +[1,2343,11141], +[0,11142,0,11144,2523], +[0,2108], +"ts-dedent", +[0,6400,17159,7521,8537], +"csf-plugin", +[2,10829,11145], +[3,10840,17], +"dom-s", +[1,2343,11152], +"dom-shim", +[2,11147,11150], +[0,0,0,11153,2537], +[0,1662,4380,4383,21029,21038,21039,11483,11487,21054,21052,21042,17164,21057,21050,17166,89,1623,181,188,4627,5130,3287,6400,17171,699,29332,3709,34683,12951,29336], +"addon", +"notes", +"organize", +[1,2343,11158], +[0,0,8134,11159,34352], +[0,17179,3183,14690,10446,7058,6802,200,3368,1525,17180,1523,12986,17181,17183,17184,13565,1644,57,6478], +[1,2343,11166], +[2,41,1512], +[3,11161,13], +"ssinjs", +[2,11162,11163], +[3,40,18], +[0,11198,11203,2514,2537], +"slick", +[2,11165,11167], +[3,452,18], +"-svg-icons", +[2,6920,11170], +[2,11169,11171], +"@pol", +"kadot/react-identicon", +[2,11173,11174], +"@polkadot/", +"util-", +"util-crypto", +[2,11176,11178], +[2,19177,11195], +"wasm-crypto", +[2,11176,11181], +[3,5050,14], +"tour", +[2,11183,11184], +"@zxing/browser", +"@zxing/", +[2,11187,6082], +"boring-avatars", +"list-react", +[2,2117,11190], +"jsqr", +"phosphor-react", +"qrcode", +"plugin-kit", +"qrcode.react", +"rc-cascader", +[0,17191,1091,1149,1437,1513,1594,1605,2026,2720,17194,3148,3220,3722,705,17195,17196,17198,4746,4747], +"rc-checkbox", +"ollapse", +"rc-collapse", +"rc-dialog", +[0,1173,1257,1267,1429,2899,4008,7707], +"rc-drawer", +[1,2343,11214], +"opdown", +"rc-dropdown", +"rc-image", +"@humanfs/node", +"rc-input", +"-number", +[2,11210,11211], +"rc-mentions", +[0,0,11217,2514,2399], +"u", +"rc-menu", +[0,17218,4494,17219,8538,4193,1177,17220,1209,1984,4508,2109,1894,1596,48,17212,3541,4183,4201,91,53,4874,17221,9689,6513,17209,7725,4870,17206,17214,10875,87,17210,7677,5517,92,1011,17223,1009,9692], +"otion", +"rc-motion", +"rc-notification", +"rc-pagination", +[1,2343,11230], +"rc-picker", +"rc-progress", +"rc-rate", +"rc-r", +"esize-observer", +[2,11226,11227], +"rc-s", +[0,0,11232,2514,2523], +"rc-segmented", +[0,2899,4535,48,53,87], +"rc-select", +"teps", +"rc-steps", +"rc-switch", +[1,2343,11239], +"rc-table", +[0,0,11247,11248,2523], +"rc-tabs", +"extarea", +"rc-textarea", +"ree", +"rc-tree", +"-select", +[2,11244,11245], +[0,48,53,13693,87,6065,1175,1193,1203,1610,1177,1881,1938,1939,17232,2766,1192,2297,2898,2915,3213,3220,3222,3275,3697,1894,4042,4045,4073,4201,91], +[0,1673,1666,6901,2700,3220], +"rc-trigger", +[1,2343,11254], +"rc-upload", +"in-input", +[2,3870,11252], +[0,11258,11259,11265,2537], +"logo", +"qrcode-logo", +[2,1246,11256], +[0,1326,3299], +[0,17240], +"uperellipse", +[2,3890,11260], +"scroll-", +"into-view-if-needed", +[2,11262,11263], +[0,1149,15001,17242,17244], +[3,68,15], +[2,11266,6424], +[3,362,16], +"css-prop", +[2,1258,11269], +[2,11268,11270], +[3,7910,12], +[2,11272,10177], +"@qixian.cs/github-contributors-list", +"@stackblitz/sdk", +[3,827,16], +[2,11276,591], +[3,11011,12], +"uild", +"er-webpack5", +[2,11279,11280], +[2,11278,11281], +[3,8300,15], +[2,11283,2855], +[2,10829,11284], +[3,10841,12], +"heming", +[2,11286,11287], +"tag.js", +[2,5246,11289], +"-axe", +[2,5087,11291], +[3,11292,12], +[3,2779,12], +[2,11294,3758], +[2,11293,11295], +"image-s", +"napshot", +[2,11297,11298], +[2,11293,11299], +[2,5086,3766], +"uppeteer", +[2,5088,11302], +"@types/q", +"@types/qs", +[3,4882,15], +[2,11306,4349], +"-wor", +[1,2343,11324], +"-words", +[2,5342,11310], +[2,4881,11311], +[3,4884,15], +"sizable", +[2,11313,11314], +"window", +[2,4881,11316], +"@types/thr", +"ottle-debounce", +[2,11318,11319], +"arning", +[2,7820,11321], +"antd-", +[0,0,11332,11334,2523], +"antd-img-crop", +"token", +"-pre", +"viewer", +"-previewer", +[2,11326,11329], +[2,11323,11330], +[0,1906], +"array-move", +[0,1675,17251,3046,6925,17252,7051,6760,17253,6882,6870,9233], +"bundlesize2", +"dekko", +[3,3597,9], +[3,4926,9], +"er-webpack", +[2,11339,4406], +[2,4354,11340], +[2,11338,11341], +[2,11337,11342], +"fetch-", +"fetch-jsonp", +"axe", +"jest-axe", +[2,2769,11299], +"jest-p", +[2,11349,11302], +"jsonml", +"react-e", +[1,2343,11358], +"react-element", +[2,8137,11354], +[2,11351,11355], +"lz-string", +[0,11359,11361,11379,2537], +[0,3242], +"rc-footer", +[0,1377,1389,1596,2297,2871,2881,2900,2899,3202,4193,1906], +"rc-tween-one", +"rc-virtual-list", +"react-f", +"ast-marquee", +[2,11364,11365], +[2,5204,11310], +[2,3831,11367], +"react-in", +"finite-scroll-component", +[2,11369,11370], +[3,3882,9], +"izable", +[2,11372,11373], +"react-st", +"icky-box", +[2,11375,11376], +"react-window", +[0,1676,3073,6782], +"remark-lint", +[2,2987,4945], +[2,3996,11381], +"rome", +[2,4942,1894], +[3,4946,18], +[1,2343,11387], +[0,0,8134,11402,2537], +"ational-order", +[2,11385,11388], +[3,4326,22], +"no-i", +"d-properties", +[2,2420,11392], +[2,11391,11393], +[2,7851,11394], +[2,11390,11395], +"sylvanas", +"vanilla-", +"jsoneditor", +[2,11398,11399], +"xhr-mock", +[0,1677,17266,1420,17267,15321,13230,15322,1871,2585,6270], +[1,2343,11406], +"-front-matter", +[2,4745,11404], +[0,11407,11408,11409,2399], +[0,17273,17275,17277,17279,2215,3093,3532,17281], +[0,1999,17283,3505,3532,4039], +[0,17274,17285,1679,7682,4390,17286,17288,2056,4560], +[1,2343,11418], +[3,829,10], +"-studio/client", +[2,11411,11412], +[3,11413,18], +"model", +[2,11414,11415], +"abab", +[0,0,11419,11423,4139], +[0,48,87,92,10614,17296,17212,5601,5087,1009,1011,1198,14065,17298,1622,1177,17300,1930,1939,1942,1945,1948,1953,17303,17306,1964,17308,2675,1192,17310,2931,2990,3124,3125,3390,17312,1894,17314,3708,3980,17318,4493,91,17319], +"async-mutex", +[2,6269,1871], +"color2k", +[0,1680,10381,17323,5194], +"presentable-error", +"expr-eval", +"ml-matrix", +[1,2343,11431], +"parse-color", +"-ast-parser", +[2,3564,11429], +[0,0,11435,11441,2523], +"matchall", +[2,7315,11432], +[2,1871,11433], +[0,5087,3165,4468], +"@ava/typescript", +"inycolor2", +[2,7750,11437], +"trash-cli", +[2,4480,4408], +[0,3597,17329,4552,17331,17332,17335,17337], +"Supernova", +"Design Systems", +"io", +"Supernovaio", +"SDK", +[1,2343,11455], +"Tokens", +"Design Tokens", +"Assets", +"Components", +"Documentation", +"Markdown", +"CMS", +[0,11456,0,11457,4139], +[0,17342], +[0,3048,7002,3426,2051,3583,1698,1496,1585,7880,1697,6899,6803,3432,6693,3743,3583], +[1,2343,11459], +[0,8856,7938,7939,2537], +[1,2343,11461], +[0,0,11462,11463,2523], +[0,1781,2899,1177,1209,4039,3363,1362,17352,2025,4535,1693,1951,3200], +[0,1687,17354,3797,17358], +[1,2343,11465], +[0,0,11466,11467,2523], +[0,17363,2899,1177,2759,1317,1596,17366,3044,5476,17370,17373,17374,811,17377], +[0,17380,17382,17383,5472], +[1,2343,11469], +[0,11471,11472,11473,2399], +"@svitejs/changesets-changelog-github-compact", +[0,17391,1417,17392,15308,17395,17399,17400,17403,17406,2756,13635,3433,3435,17407,17409,17411,17413,17416], +[0,13614,1158,1159,17418,1177,2133,17421,2569,17425,2708,3410,3421,5619,4103,4135,4389], +[0,5501,4162,3797], +[1,2343,11475], +[0,0,11488,11490,2537], +"okie", +[2,4860,11476], +"devalue", +"esm-env", +"mrmime", +"sade", +"tiny-glob", +[2,21032,1932], +[3,5244,10], +[2,11484,2255], +"dts-buddy", +[3,21031,18], +[0,2899,4170], +"official", +[0,1696,2051,1697,6899,1695,1496,1698,1781], +[1,2343,11492], +[0,0,11493,11494,34352], +[0,4874,17439,2747,17440,4042,4055,4067,4389,4474,91,4535], +[0,1698,1697,2051,1585,1496,6899], +[1,2343,11499], +"-inspector", +[2,840,11496], +"hmr", +[0,11500,11502,11503,2523], +[0,2205,2743,17447,17450,3478,11424,4207], +"vitefu", +[0,1166,1317,4400,4481,1906], +[0,6865,1586,17453,17455,7293,14858,17456,17457,4050,17458,4051,6790,17459,4039,7074,2070,17461,2090,6857,7204,2150,17462], +[3,839,11], +[1,2343,11507], +"vite plugin", +[0,11508,11509,11510,2399], +[0,1700,3157,11424], +[0,1166,2020,17468,1906], +[0,13326,200,6865,1700,7293,14858,17456,17457,4050,17458,4051,6790,17459,4039,7074,2070,2090,1586,6857,7204,2150,17462,16697], +[1,2343,11523], +"element", +"elements", +"ant-elements", +[2,5257,11514], +[2,5875,11515], +"@svgr/", +"@svgr/core", +"plugin-jsx", +[2,11517,11519], +[3,11520,13], +[2,11521,4361], +[0,11524,11527,11528,2487], +[0,29654,28415], +"svgr", +[2,4670,1194], +[0,17474,17477,4481,1906], +[0,1862,814,1702,17479,6703,2434,17481,17484,2013,14824,3286,17485,1702,1149,7003,6567,1362,17487,6754,3778], +[1,2343,11530], +[0,11531,11535,11537,2399], +[0,1676,2856,4747,2687,1209,4135,2822,814,17495,15648,1420,3181,17497,3249,1595,2107,4025,58,17501,101,17494,5320,14035], +"unter", +"@swc/counter", +"@swc/types", +[0,3421,2899,1177,4170,3709,2151,1894,1610,48,3752,91,53,1178,17504,85,94,87,1951,1959,1879,1938,1208,1895,1947,1955,1198,13052], +"@napi-rs/cli", +[0,4354,17507,3383,6666,1703,7190,4796,4797], +"swc", +"swcpack", +"tsc", +[1,2343,11542], +[0,0,11543,11544,2487], +[0,1317,1311,1177,1903,1938,1948,1954,1958,1970,2759,2899,4100,4538], +[0,17514,17515], +[1,2343,11546], +[0,11547,11548,2514,2537], +[0,1676,13736,2205,17522,3170,3183,3539,17523,814], +[0,17527,2675,17529,3400,4255], +[1,2343,11550], +[0,0,8134,11551,2399], +[0,8958,17537,13735,6589,17539,1501,1871,2585,4225,17540,16630], +[1,2343,11553], +[0,11556,11557,11558,2523], +"@rtsao/scc", +[2,18997,4966], +[0,15427], +[0,36688,6503,4874,17547,1177,17554,2020,17546,4294,4483,36684,91], +[0,13735,1709], +[1,2343,11560], +[0,0,11561,11562,2487], +[0,3421,4481,1429,2297,2899,1177,4042,2203,2924,1610,4535,442,91,53,2900,1195,2925,13388,94,87,4523,4681,2904,5517,1208,2921], +[0,1687,7222,3797,7163,2585,1781,1623,5284], +[1,2343,11564], +[0,11565,11566,11567,4139], +[0,1687,28365], +[0,442,19194,17579,5087,4874,17580,17584,1165,1406,1492,1584,1628,1637,1177,1939,1958,2092,2203,2036,17589,2651,2675,17591,17592,1192,2990,3123,3177,3188,3368,3561,3566,3613,3618,3672,1894,4468,4469,4474,91,4523,4027,2924,4677,4681,4705], +[0,3358,1687,3721,7153,3924,17595,17597,6843,5342,3721,1473,1936,1713,17599,17600], +[1,2343,11569], +[0,11570,11571,11572,2537], +[0,17610], +[0,5087,4874,1009,1011,1177,1895,17613,1915,1938,1192,1894,4468,4493,4508,91], +[0,17615,17618,17619,17620,17616,17621,17622,5284,17625,17626,676,91,17627,6869,4799,17629,17630,202,9624,17631,17632,17634,17635,17637,17640,17641,17642,17643,2218,17644,17645,17647,3403,17648,17649,17651,17652,17653,17656,17657,9981,7193,17659,17660,17661,17662,17665,17666,17667,17669,17673,17675,17677,17680,17679,11996,17683,17686,17687,17689,17691,17692,17695,17696,17697,17700,17702,17705,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,17720,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,17737,17739,6681,17740,1745,17116], +[1,2343,11574], +[0,0,11575,11576,2487], +[0,1429,1431,2228,2273,2283,2300,2272,2839,3006,2899], +[0,1429,15385,1388,5472], +[1,2343,11578], +[0,11579,11580,11581,2537], +[0,17752,17754,1723,2760,3345], +[0,2899,3699], +[0,6355,5995,4967,17758], +[1,2343,11583], +[0,11584,11585,11586,2487], +[0,4484,4548,17763,7658,347,7660,2069,17766,7663,17768,7664,7665,17770], +[0,4481,1192,7671,1177,4487,1787,1894,1610,91,4874,17772,7672,7678,7681,7685,1011,1009], +[0,1721,5592,8549,5576,202,7692], +[1,2343,11588], +[0,11599,0,2514,2537], +[3,850,25], +"tokens", +[2,11589,11590], +[2,11589,45], +[3,4323,18], +"ass-guidelines", +[2,11593,11594], +[3,7846,11], +"rettier", +[2,11596,11597], +[0,4535,2098,3460], +[2,6910,591], +"patterns", +[1,2343,11603], +[0,11604,11606,11610,4139], +[0,16053,17786,17787,17788,2036,3127,17798], +"gfm-footnotes", +[0,17805], +"web ", +[2,11607,4963], +"ui library", +[0,1745,1783], +[1,2343,11620], +"symbiote.js", +"symbiote", +"frontends", +[2,3166,11614], +" application", +[2,5207,11616], +" elements", +[2,5317,11618], +[0,11621,0,11623,2487], +[0,2829], +"shadow dom", +[0,1727,1745,1776,17813,1783,1932], +"shadow root", +"ructable stylesheets", +[2,5257,11625], +"adopted stylesheets", +"custom ", +[2,11628,3583], +[2,6883,11629], +"pubsub", +[1,2343,11641], +"import maps", +"cdn imports", +" imports", +[2,2671,11635], +"reacti", +"ve html attributes", +[2,11637,11638], +"MIT", +[0,0,0,11642,34352], +[0,17818,17819,7518,5398,5995,3250], +[1,2343,11644], +[0,11645,9264,11646,2399], +[0,17826,17827,7092], +[0,17829,17830], +[1,2343,11648], +[0,11649,11650,11651,4139], +[0,1170,4747,1733,17838,29861,17835], +[0,1429,2899,2026,1364], +[0,1745,2275,1973,2295,1739], +[1,2343,11653], +[0,11654,11655,11656,2399], +[0,5923,17835,17846,1091,13426,17849,17851,17853,1170,17838,29861,1759,17850,11663,10342,3536,3549,17859,4459,824], +[0,1703,2026,2899,4135], +[0,1745,1973,2295,1739], +[1,2343,11658], +[0,11659,0,11660,34352], +[0,1525,3127,2151,4545,2600], +[0,1745,1739,1179,17867,1509], +[1,2343,11662], +[0,11664,0,11610,2537], +"jq-web", +[0,1794,17872,5639], +[1,2343,11666], +[0,11667,11668,11669,2399], +[0,17877,28367,28371,17881,3747,4391,3348], +[0,1362,1429,3152,2899], +[0,17878,17884], +[1,2343,11671], +[0,11672,11673,11674,2537], +[0,17889,17890,17892,1292,17893,1415,17895,16166,17896,17898,17899,9254,17900,17901,17904,17905,17906,17907,2720,17909,17910,17911,3171,3310,17914,17915,17916,4039,17917,17919,17920,4135,17921,17922,17923,4545,17924,4746], +[0,17929,17930,16966,1509,17931,3220,17934,17936], +[0,5353,6147,17939,9381,200,6354,1509,7234,4643,17944,3304,5001,17945,17946,15141,5130,1179,17948,202,1644,57,8924,3902,8632,12478,5354,17950,4990,6435,5122,17951,10340], +[1,2343,11676], +[0,0,11677,11678,2523], +[0,5366,4874,7677,22839,1317,33261,35609,1177,1938,1942,91,1984], +[0,4967,5995,2844,7020,1776], +[1,2343,11680], +[0,0,11681,11682,2487], +[0,53,87,442,5583,811,8850,816,10615,1165,1387,1536,1854,1177,1895,2203,3125,15197,3400,3561,3584,3605,3613,1894,4039,4042,10854,2278], +[0,1739,17964,17965,1745,1179,5284,676,1783,5980,1932,16630,17966], +[1,2343,11684], +[0,11685,11686,11687,4139], +[0,17971,17972,2654,3183,4545,17974], +[0,4384], +[0,2195,1783,1745,9591,57,17977,17978,17979], +[1,2343,11689], +[0,11690,11691,11692,4139], +[0,53,5216,58,101,104,1437,1457,1687,17986,9322,7610,2070,17988,2600,2714,2822,17989,1209,12427,17990,17995,17997,3532,3921,3984,3988,3989,18000,10632,814,4300,18002,4555,12449,18004,18005,4747], +[0,18007,1652,18009,1177,1895,2151,2675,1192,2845,2990,3203,1894,4257,4449], +[0,1745,4525,1776,18011,57,5351], +[1,2343,11694], +[0,11695,11696,11697,2523], +[0,18016,18018,1676,18019,18020,18023,3013,4545], +[0,4874,2228,2291,2300,3006,3200,16092,4193,4436], +[0,18028,18031,1748,18036,13531,18037,18035,6599], +[1,2343,11699], +[0,11700,11701,11702,2537], +[0,6084,2164,2070,1437,89,1843,1209,3188,1291,1637,2026,3561,3725,705,4167,7799,4438,2151,2267,1525,3824,1461,3560,4001,53,18042,104,1165,2600,3123,18051,18052,18055,18056,7610,85,94,101,3816,18050,87,18045,18047,90,1874,1845,61,78], +[0,4039,17996,2149,18059], +[0,1745,18061,18063,467], +[1,2343,11704], +[0,11705,7923,11706,2523], +[0,18068,1497,9892,2577,2586,2608,6327,18070,8114,3181,3971,18071,4549,18072], +[0,467,6327,18074,1745], +[1,2343,11708], +[0,11709,11710,11711,2487], +[0,97,1639], +[0,28581,29292,48,53,92,29293,29294,29492,1009,1011,1178,1195,1177,1938,1947,1951,1959,2025,2070,2814,2297,2881,2895,26470,2900,2904,2918,2921,2925,2899,4039,33564,4193,91,2924], +[0,1751,5128,965,5592,18080,590,2013,18081,4289,1751,1227,18082,1623], +[1,2343,11713], +[0,11714,11715,11716,2537], +[0,18089,15487,18087], +[0,1192,1177,1448,4468,1894,91,5087,4874,2654,1895,1011,1009], +[0,1936,6523,8924], +[1,2343,11718], +[0,0,11719,11720,4139], +[0,1429,1177,2228,2240,2273,2281,2283,2298,2822,2297,2878,2881,2895,2900,2904,2899,1894,4135], +[0,965,158,18097,8924,1936,1424,8221,18048], +[1,2343,11722], +[0,11723,11724,11725,2487], +[0,37513], +[0,53,87,5583,816,6373,10615,1006,4874,1610,1895,1955,2814,2832,2297,2876,2881,2895,2908,2910,18103,3183,3400,3697,1894,2907,18102,4039,4042,4057,18106,4076,4484,91,1906], +[0,965,4741,1936,8221,18110,1965,18112,18113,2574,7131,18114], +[1,2343,11727], +[0,0,11728,11729,2399], +[0,3421,1177,1596,3697,12847], +[0,1283,2062,2869,17950], +[1,2343,11731], +[0,0,11732,11733,2537], +[0,4874,6323,4193,4255,4257,4384,91], +[0,1759,1263,6890,6639,6436,1541,6937], +[1,2343,11735], +[0,11736,11737,11738,2523], +[0,1759], +[0,4874,4255,4257,4384,91], +[0,1759,18132,6436,18135,18137,1263,6890], +[1,2343,11740], +[0,11741,11742,11743,2537], +[0,2212,3532,3477,18143,3093,2096,1679,18145,2188,18142,1560], +[0,1906,1166,3297,18147,4039,3505,18148], +[0,1764,7682,27,705,1002], +[1,2343,11745], +[0,11746,11747,11748,34352], +[0,1764,12650,4039], +[0,5175,2675,2899,4216,4255], +[0,1764,2195,17978,17977,12468,18157,4390,7682,18158], +[1,2343,11750], +[0,11751,11752,11753,2537], +[0,1768,1770,1777,1782,1784,1779], +[0,1177,4039,442,91,4874,4523,1011,1009], +[0,1767,1745,200,1776,1367,1783,1781], +[1,2343,11755], +[0,11756,11757,11758,4139], +[0,2205,1770,18170,18173,1777,1782,18174,1784,1779], +[0,1192,1177,4039,3363,4468,442,91,5087,4874,5571,4523,1011,1009], +[0,1767,1745,200], +[1,2343,11760], +[0,11761,11762,11763,2537], +[0,18183], +[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,1011,18186,1009], +[0,1767,1745], +[1,2343,11765], +[0,11766,11767,11768,2537], +[0,18192], +[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,1011,1009], +[0,1767,1745,1283], +[1,2343,11770], +[0,11771,11772,11773,2537], +[0,1241,1776,18201], +[0,1192,1177,4039,4468,1587,442,91,5087,4874,18203,5571,4523,1011,1009], +[0,1767,1745,1776], +[1,2343,11775], +[0,11776,11777,11778,2537], +[0,3105,2600,3117], +[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,7639,1011,1009], +[0,1767,1745,1367], +[1,2343,11780], +[0,0,11767,11781,4139], +[0,1767,1745,1781], +[1,2343,11783], +[0,11784,11767,11785,2523], +[0,3117], +[0,1767,1745,1783], +[1,2343,11787], +[0,11788,11789,11790,2537], +[0,2081,2700,3427], +[0,53,14170,13051,18225,1178,18228,1610,1700,1866,1177,18229,1895,1922,1935,1947,1955,1959,18230,2126,2323,2338,2361,2368,18233,2396,2409,2419,2494,2541,1192,1894,89,3824,3904,18235,4431,4537,18237], +[0,18239,6038,89,18241], +[1,2343,11792], +[0,11793,11794,11805,2523], +[0,8712,18248], +[0,18254,18255,1429,1651,18259,2297,2881,2900,18260,2923,2899,3198,3347,5362,2278,4193,4196], +"tent-type", +[2,11484,11795], +[1,2343,11798], +[0,26964,0,26991,34352], +"a-parser-js", +[2,7817,11799], +"null-loader", +[2,4049,2098], +"tanem-scripts", +"ua-parser-js", +[0,18263,18266,18267,9229], +"images", +"img", +"scal", +"able-", +"vector-", +"ics", +"graphics", +[2,11810,11812], +[2,11809,11813], +[2,11808,11814], +[1,2343,11817], +[0,11818,11819,2514,2523], +[0,4747,4487,18272,2151,18275,4300,2851,18277,18279,18282], +[0,1177,4874,4892,4864,1011,18285,18290,1009], +"query-core", +[2,959,11820], +[1,2343,11823], +[0,11824,0,11825,2537], +[0,28142], +[0,1747,1788,2382,18035,5995,200,18295,2663], +[1,2343,11828], +[2,964,3709], +[0,11829,11830,7831,2537], +[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12467,12406,1582,1699,12409,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,3788,11244,3789,3810,5564,3846,12435,12438,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12444,12445,4549,4555,12447,1002,12448,12449,12452], +[0,192,5467,7634,12455,12458,7637,12459,4874,12461,8149,4880,4882,4883,12462,12463,1177,10321,2071,2079,12471,12472,2675,2990,1894,3706,3708,89,3824,4320,4474,91,1984,12473,12475], +[1,2343,11834], +[3,7637,10], +[2,11832,977], +[0,11841,11844,7831,2487], +"@github/webauthn-json", +"better-", +"better-docs", +[3,1895,17], +"act", +[2,11838,11839], +[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12405,1582,1699,12409,12452,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,11244,3810,5564,3846,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12445,4549,4555,12447,1002,12448,12449], +"hanko", +"passkey", +[0,192,5467,7634,12455,12458,7637,12459,4874,12461,4880,4882,12462,12463,1177,2071,2079,12472,2675,2990,1894,3706,3708,89,4320,4474,91,1984], +[1,2343,11848], +"webauthn", +"passcode", +[0,0,11849,2514,2523], +[0,4389,4430], +[1,2343,11851], +[0,11852,11854,7395,4139], +[0,18313,18315,18316,18317,18322,97,8597,18328,18332,18333,18334,18336,1461,1582,1673,18339,18340,18344,18347,18349,18351,18354,18355,18357,18358,18360,18362,18364,18365,18368,18370,18371,18372,18374,18376,18378,18380,18381,18382,18383,18385,18386,18387,18389,18391,18392,18394,11264,4427], +"kcd-scripts", +[0,13175,13178,5076,13181,11267,11976,13187,7833,7837,7839,7840,368,7948,11273,13188,8998,13189,13192,643,692,11274,10875,11275,966,968,972,974,13194,13196,13198,4864,11290,13200,13203,5087,11292,11296,11300,11301,13204,4870,7892,4874,13205,13207,13210,8149,6510,11305,4880,4882,4883,11312,11315,5254,13213,13214,11320,11322,1009,1011,1086,13078,11325,13215,11331,1170,1437,1448,13221,13223,1610,1613,11336,1759,1789,13228,8161,1177,1879,1895,1915,1924,1938,1939,1947,13231,1948,1959,1961,1982,2071,11345,2151,2193,2070,12424,2665,2686,2696,2742,2758,1192,11347,2771,2780,2784,11348,11350,2814,2832,11356,5102,2990,1209,13232,11357,3183,3213,3310,3330,3412,3445,3467,13233,3536,3549,1894,3703,3717,3725,3758,3763,11360,11362,11363,89,3810,13235,3824,4934,11366,11368,11371,3843,11374,3885,11377,3957,3978,3984,3985,3988,11380,13240,11382,3999,4039,13241,4135,4164,4183,4201,13243,11397,4390,4391,4072,4494,4508,91,11400,13245,2924,4676,11401], +[1,2343,11856], +[0,0,11858,11859,2399], +"integration", +[0,192,5467,19193,442,1177,1895,1951,1955,2675,2990,2899,1894,4042,4170,4257], +[0,4552,1149,14629,18402,1794,3048,1862,6917,14824,5995,4967], +[1,2343,11863], +"end-to-end", +"e2e", +[0,11864,11865,11866,2443], +[0,4484,18407], +[0,51,53,104,18282,18277,18409,603,811,816,6373,5087,1009,1011,1437,1525,1787,668,1177,2151,2205,2675,1192,2771,2272,3090,3445,4042,4073,4127,4135,4072,4468,91], +[0,1795,18411,15480,18412,17116,18413,18415,1424,8221], +"ria-query", +[2,9165,11867], +"aria-query", +[2,7320,2825], +[2,1752,11870], +[1,2343,11873], +[0,11885,11886,11887,2537], +"n-case", +"jest-in-case", +"-ser", +"ializer-ansi", +[2,11876,11877], +[2,8746,11878], +[3,2802,11], +"select-p", +"rojects", +[2,11881,11882], +[2,11880,11883], +[0,18420,2096,18423,2390,18425,18426,18427,1209,3181,18428,3544,4431,4597,4600,4747], +[0,4856,4864,18432,4870,6503,4874,9725,6513,6512,18435,18438,18440,4892,1429,2012,2151,2188,2899,3421,3752,4039,4193,4196,4474,4487,91], +[0,18420,2041,2649,18442,18443,6589,18444], +[1,2343,11889], +[0,11892,11900,11901,2537], +"css.escape", +"redent", +[0,2763], +[2,552,2203], +[3,2782,23], +"sixteen", +[2,11894,11895], +[3,4057,15], +"elete", +[2,11897,11898], +[0,91,68,1389,1177,14707,1776,3084,2899,4535], +[0,1283,17950,16284,1797], +[1,2343,11903], +[0,11904,11905,11908,2537], +[0,1437,1209,18456], +[0,3297,1082,1149,2228,2899,4193,4237,1177,2814,3220,4135,1168,1330,2924,18458,18459,1362,3460,1894,4431,2025,2071,7915,2240,18463,1389,53,11801,1178,1195,18464,17568,87,1954,2258,2247,1938,2253,2281,1958,1895,1903,1955,1970,18461], +"atcher-utils", +[2,8763,11906], +[0,1798,14059,8173], +"@callstack/eslint-config", +"@rel", +"mify/jest-serializer-strip-ansi", +[2,11910,11911], +[1,2343,11914], +[0,7936,7938,7939,2523], +[1,2343,11916], +[0,11917,0,11919,2487], +[0,4874,2057,18473], +"dotenv-cli", +[0,1804], +[1,2343,11921], +[0,11922,11923,11927,2537], +[0,1437,4747,1458,2151,18479,18480,18482,18484,18488,18174], +[0,4892,4864], +"@esbuild-plugins/node-modules-polyfill", +"@ph.fritsche/scripts-config", +[3,11925,13], +[0,1804,9381,6147,7242,1161,1808,4405,18493,1896,18494,4750,18495,8433,18496,18497,18498,18499,18500,18501,18502,18503,13322], +"toolbox", +[2,11926,11928], +[3,11300,13], +[2,11930,11874], +[3,7690,15], +[2,11932,2203], +"-lib-coverage", +[2,2759,11934], +[3,11935,13], +"report", +[2,11936,11937], +[2,4227,591], +[2,11936,11939], +"istanbul-", +"reports", +[2,11941,11942], +[3,6551,9], +"jest-s", +"r-ansi", +[2,7909,11946], +[2,11945,11947], +[1,2343,11950], +[0,11953,11954,11955,2537], +"-scripts", +[2,6579,11951], +[0,18509,18473,18511,18513,18514,18518,1676,2057,18145,2151,18521,18524,18525,18527,2072,18528,814,4135,4748], +[0,1009,1011,1166,1400,1503,1177,1903,1920,1938,1954,1958,3421,3539,4193,4481,4508,91], +[0,1804,1808,6996,1896], +"@ember/app-blueprint", +[1,2343,11962], +"aram", +"regexparam", +"tseslint", +"tinyhttp", +[0,11963,11964,11919,2399], +[0,2057,18537], +[0,4389,4255,18540,3505], +[1,2343,11966], +[0,11967,11580,11581,2487], +[0,1437,2152,2760,18545], +[1,2343,11969], +[0,11970,11971,2514,4139], +[0,18552], +[0,2228,18555,2236,2273,2281,2298,2766,2814,2297,2881,2895,2898,2912,3006,1209], +[1,2343,11973], +[0,11975,11979,11980,2523], +[2,976,4590], +[0,1156,1191,1699,3373,4023,4427], +"@biomejs/biome", +[3,4343,10], +[2,11977,1612], +[0,18566,18569,1173,1175,1195,1198,1208,1212,1220,18571,1264,1277,18574,1429,1457,1584,1596,18575,1610,1628,1863,1177,18580,1916,1937,17585,2092,18581,2323,2332,18582,2504,2600,2651,2843,13110,2297,2881,2886,2900,18260,2921,2923,2925,18584,3105,3107,18587,3112,3177,2899,3342,3463,3561,3732,4039,4111,18590,4193,4196,4307,18592,4537,18595,4027,188,4634,4639,4645,18599,2924,4677,4681,4693], +[0,13449,188,4963], +[1,2343,11982], +[0,11983,11984,11985,2537], +[0,1363,18609,18610,18611,2713,18613,18616], +[0,1377,1596,1177,2228,2236,2240,2256,2258,2281,17567,2311,2759,2899], +[0,18619,18620,18621,18622], +[1,2343,11987], +[0,11989,11990,11991,2537], +"headers", +[0,18627,18629,18632,2646,18633,1209,3361], +[0,192,5467,1166,1448,1610,1797,1177,1909,2114,2675,2990,18637,3421,18634,3754,3985,3995,1906], +[0,1559,1823,16284,2934,18639,18640,18643,18645,18646,18647,3361,18648,3754,18649,1283,5354,4714], +[1,2343,11994], +"ipaddr.js", +[0,0,11997,2514,2523], +"net", +"network", +[0,442,18657,4874,18659,7677,1177,1895,1955,18660,1894,18661,4474,91,4523,1984], +[1,2343,11999], +[0,12000,12004,12005,2399], +[0,30697,27276,11956,18740,18684,14959,18693,18733,18735,18687,1378,18737,1381,18717,18720,18695,18686,18747,18683,1437,1458,18689,1536,1543,18671,18678,18679,18668,1687,18753,12923,18758,12925,18704,2020,2021,2026,2098,2105,18745,2151,14939,12929,12471,2070,14940,18728,18701,18708,2659,2712,2720,18673,18702,1209,3105,18726,3181,3237,3368,3386,18428,18669,3560,18714,18722,18675,814,14562,18730,18667,4135,12937,18710,18698,1241,4423,4438,18670,4648,18692,7801,18666,31963,31947], +[3,975,11], +"ccepts", +[2,12001,12002], +[0,14938,1385,1429,1431,18761,15264,1540,18774,18771,1177,1895,18766,1951,1953,2116,18706,2832,2960,2899,3297,3421,1894,6021,4294,4342,4421,4449,36864,4699,4707,18764,18760], +[0,1896,18776,12589,200,18777,18778,18779,837], +[1,2343,12007], +[0,12008,12013,12014,2537], +[0,5222,71,5757,5759,5809,5830,5832,83,5889,87,97,18784,18787,18790,18795,1212,18801,18687,1378,18695,18747,1496,18803,18807,18704,14562,4135], +"ntent-", +[2,12009,10366], +[2,981,12010], +[3,985,11], +[0,53,18809,18811,18812,18813,18815,1178,1385,1429,1499,18867,1532,18671,1593,18679,18823,1825,18825,1830,18829,18832,18833,18834,18835,18839,1177,18840,1954,18706,18841,2899,2907,3957,6021,814,4039,2924], +[0,1172,18777,18844,1825,5197,5198], +"ncode-url", +[2,12012,12015], +[1,2343,12018], +[0,12019,12020,12021,2487], +[0,18852,18855,18687,18865,14938,14939,18708,18868,12937,4648], +[0,53,68,71,5757,83,5889,97,18809,18812,18872,18787,1381,1385,1429,18867,1540,18823,1825,1827,18873,18825,18829,18832,18833,18834,18835,18839,18889,18892,18894,1177,1895,18840,1951,1953,1955,18895,2116,18841,2899,1894,2907,3773,3980,14944,4320,4323,11598,2924], +[0,18844,1825], +[1,2343,12023], +[0,12024,12025,12028,4139], +[0,18901,18906], +[0,816,10817,4874,2968,4039,4042,4494,91], +[3,12011,18], +[2,12026,998], +[0,1831,1936,1623,4412,18909], +[1,2343,12030], +[0,0,0,5708,4139], +[1,2343,12032], +[0,0,12033,12034,4139], +[0,2899,1177,2759,1954,1938,1958,1903,1970], +[0,10368,1833,1002], +[1,2343,12036], +[0,12037,9264,12038,2537], +[0,3441], +[0,3101,7046,7241,18924,12706,4966,6703], +[1,2343,12040], +[0,12041,12043,2514,2537], +[0,2215,4388], +"tsparticles", +[0,8780,5087,4874,1622,1177,20281,2675,1192,2990,3144,1894,91], +"particles.js", +"particles", +"particlesjs", +"particle", +"jsparticles", +"xparticles", +"particles-js", +[1,2343,12052], +[0,12057,12064,12065,2537], +"particles-bg", +"-vue", +[2,12053,12054], +"particles-ts", +[0,1104,4294], +"particles.ts", +[3,2638,9], +"ticles-js", +[2,12059,12060], +[3,12061,15], +[2,12062,1722], +[0,4874,2398,2720,2899,3421,3742,91], +[0,8618,8619,8620,1299,200,1523,6876,8622,1836,1179,8623,8624,6847,8625,2720,8626,8628,5284,202,6710,3741,3742,8630,8631,3925,8632,4989,8633,2184,8634,7009,6621,181,8635,4758,8636], +"vue-particles", +"ngx-particles", +[2,1101,12045], +[1,2343,12077], +"ground", +[2,12047,12070], +"vuejs", +"preactjs", +"angularjs", +"html5", +"web-design", +[0,12078,12085,12095,4139], +[0,7272,12240,3757,19647], +"webdesign", +"css3", +"vtt", +"animated", +"background", +"conf", +[0,13614,1159,9254,1177,2011,2708,3410,3421,4103,4389], +"confetti", +"works", +"fireworks", +"fireworks-js", +"confetti-js", +"confettijs", +"fireworksjs", +"canvas-", +[2,12093,12086], +[0,18089,18943,18944,1936,10368,15103], +"apk", +"flickity", +[1,2343,34419], +"@d-fischer/shared-utils", +[3,1005,9], +"all", +"api-call", +[2,12100,12102], +[2,12100,10896], +"jose", +[0,1429,2675,2899,1899], +[0,6971,18951,18952,998,6956], +"twitch", +[1,2343,12110], +[0,12111,12112,12113,2523], +[0,2003,4430], +[0,4387,4389], +[0,6639,6436,1389,14927,353,4225,8309], +[1,2343,12115], +[0,0,12116,12125,2537], +[0,53,13051,85,87,192,5467,17584,1175,1178,1193,1195,1177,1881,1895,1938,1955,18964,2070,2675,1192,3183,6331,4750,1894,10623,2924,4677,4707,18966], +[1,2343,12568], +[2,3273,6543], +[3,439,18], +"regexpp", +[2,12119,12120], +[3,5552,23], +[2,12122,3007], +[2,1010,1995], +[0,5001,1263,6639,18523,18968,18969,18971], +"title-case", +[2,3138,9102], +"pecific-snapshot", +[2,11945,12128], +[3,8722,10], +"-mdxjs", +[2,12130,12131], +[2,3167,12132], +[3,5551,24], +"to-typescript-types", +[2,4120,12135], +[2,12134,12136], +[1,2343,12139], +[0,12140,12141,12143,2537], +[0,18976,1448,1850,18980,6914,18982,18984,18986,18989,17403,18990,18992,18993,3044,3431,13635,3435,3438,18994,3775,18995,18997], +[0,1173,13998,1261,1177,1879,1938,1947,1959,2708,2832,4039,4103], +"pastoralist", +[0,5284,19001,19003,1973,6071,89,2130,5472,19005,19007,6969,2899], +"cript-estree", +[2,5552,12144], +[1,2343,12147], +[0,12148,12149,12143,2443], +[0,2571,4135,3847,3744,3435,18994,3904,1847,1850], +[0,1843,1177,4039,3410,48,2708,53,1261,1959,4103,68,1879,1938,1947,1961,1198,13998], +[1,2343,12151], +[0,12152,12154,12143,2537], +[0,2571,4135,3744,3435,19018,19020,18980], +[2,12155,27730], +[0,1177,4039,3410,48,2708,53,1261,1959,4103,68,1879,1938,1947,1961,1198,13998], +[3,20826,14], +[1,2343,12157], +[0,12164,12167,12143,2487], +[3,1013,11], +[2,12158,9026], +[2,10306,5256], +[3,1603,14], +"ontext", +[2,12161,12162], +[0,2571,13635], +"-theming", +[2,1832,12165], +[0,1177,4039,3410,48,2708,53,1261,4103,68,1938,1881,1198,13998], +"-formatter", +[2,1413,12168], +[2,2093,12169], +"mini-", +"mini-store", +"rc-animate", +[1,2343,12177], +"rc-form", +"z-use-drag", +[0,12183,12210,2514,34352], +"@types/ra", +"@types/raf", +[3,1013,13], +"codo-gen", +[2,12180,12181], +[0,1080,1869], +"ast-types", +"motion", +[2,4893,12185], +[3,1225,14], +"proptypes", +[2,8137,12188], +[2,2528,12189], +[2,12187,12190], +[2,4670,8861], +[2,1199,12192], +"hot-loader", +[2,1625,12194], +"jest-emotion", +"screenshot", +[2,8820,12197], +[3,4323,19], +"yled-components", +[2,12199,12200], +[3,11598,12], +"or-styled-components", +[2,2484,12203], +[2,12202,12204], +"tsc-alias", +"@electric-sql/pglite", +"ucloud", +"lsofi", +[0,1087,1177,1903,1938,1948,1954,1958,2899,3421,4342], +[1,2343,12212], +[0,12218,12221,12223,2537], +[3,1014,9], +"slate", +[2,12213,12214], +"slate-hyperscript", +"slate-react", +[0,1082,2071], +[2,12213,594], +"is-hotkey", +[0,16805,1393,19038,5867,30889,12142,1894,3980], +"jotai-optics", +[0,19042,19044,3595,19045,19046,19047,5286,19049,19052,19053,676,19054,19055,19057,19059,19060], +"jotai-x", +[1,2343,12230], +"optics-ts", +[3,3836,9], +"keys-hook", +[2,12227,12228], +[0,12234,12235,12237,2537], +"deep-compare", +[2,8183,12231], +"zustand-x", +[0,19066,2569,19071,19073,19078,15059,3435], +[0,5517,13614,23237,10976,10979,11008,27564,27568,27571,27573,27575,27576,27580,11013,19325,1143,1159,9254,1177,14741,15308,2756,3410,3421,19082,4103,19084,4389,11028], +"plate", +[0,5284,5286,3595,676,6693,6692,5187,1182,6830], +[1,2343,12239], +[0,12241,12243,12249,2443], +"es-errors", +[0,15786,19092,19093,19094], +"react-b", +[0,1177,15793,15797,15801,2675,2990,3421,19097,15804,15805], +"react-button", +"uiw-react", +"react.js", +"uikit", +"react-ui", +[0,5286,19099,19100,1925,5194,19101,2680,19102,2474,5258,5284,6422,1858,614,594,6731], +[1,2343,12251], +[0,0,12252,12254,2537], +[0,13614,1158,1177,2708,2768,3421,4103,4535], +[2,1024,45], +[0,1858,1925,19108,5284,5286,6422], +[3,3839,10], +[1,2343,12257], +[0,0,12258,12259,2523], +[0,1173,1175,1198,8966,1264,1429,1610,2899,4039], +[0,5194,1851,1172], +"react-input", +[1,2343,12262], +[0,0,12263,12264,34352], +[0,19118,2899,1825,18686,18693,19119,19121,19122,19123,1381,18801,18825,19125,19127,14217,14196,19130,14214,1235,14199,14192,1244,14198,14215], +[0,19132,6422,1862,6567], +[3,1023,18], +[1,2343,12269], +"verlay-trigger", +[2,8666,12267], +[0,0,12270,12271,2537], +[0,48,53,87,10688,1863,1177,1895,1903,1938,1954,1958,2675,3421,1894,4193,4389], +[0,1862,6567,5194,19138,1865], +[1,2343,12275], +"react-u", +"react-utils", +[0,0,12276,12277,4139], +[0,13614,1158,1429,1859,1177,2011,2228,2256,2283,2311,2708,2899,3421,3736,19146,4103,4389,4535], +[0,5286,5258,5194,1858,1862,6567,7168,3053,3065,6636], +[2,12279,8295], +"flowbite-", +[1,2343,12281], +[0,0,12282,12288,2523], +[0,1317,1311], +"to-ts", +[2,7526,12283], +[2,7719,553], +"prom-client", +"unleash-client", +[0,1867,1936,6435], +"ype-is", +[2,7750,12289], +[1,2343,12293], +"ts-node-dev", +[0,0,8134,12297,2399], +"Unleash", +"ios", +"android", +[0,1867,1108,6961,6920,7256,1871,19161,7169], +[1,2343,12299], +[0,12300,12303,2514,2537], +[0,2004,14301,2003,4227], +"keyux", +[3,1027,12], +[0,1082,1362,19168,1429,6522,19172,2323,2384,2463,3183,3466,4135], +"image-shrink", +[2,12302,12304], +[2,9229,4219], +[2,12302,12306], +[1,2343,12311], +"shipjs", +"@esm-bundle/chai", +[0,12316,12317,12321,2523], +"@total-typescript/ts-reset", +"@hap", +"py-dom/global-registrator", +[2,12313,12314], +[0,439,12121,19180,27907,19193,11180,11209,19182,19184,1006,1091,1615,1676,1874,1994,1996,2000,19186,14301,2069,16783,2105,2200,2687,19187,2743,19189,3181,12118,3466], +[0,5517,53,87,8129,19194,19181,19195,19581,4874,1011,1195,1414,1429,1448,1532,1593,1651,1797,1933,15510,17308,19206,32793,19210,2003,19213,2070,2203,2212,2226,2807,2931,2990,3105,3112,3127,19216,19219,19221,19222,19223,19224,2899,19227,19230,1894,3730,3752,3930,3957,4135,4167,4193,91,2924,4677,19235], +"uploadcare", +"lighter", +"file ", +[0,6892,671,5284,5286,2000], +"file uploader", +"ive image", +[2,5156,12323], +" optimization", +[2,158,12325], +"image ", +[2,12327,6110], +"image size", +" image editor", +[2,6599,12330], +" client", +" api client", +[2,9229,12333], +"ing blocks", +[2,6147,12335], +"lr-blocks", +"uc-blocks", +[2,11857,591], +"smart", +[1,2343,12356], +"smart cdn", +"cloud ", +[3,31,8], +"file platform", +[2,12343,12345], +"ation api", +[2,353,12347], +"webp", +"avif", +"css c", +" properties", +[2,12162,12352], +[2,12351,12353], +[2,11617,591], +[0,12357,12358,12359,2523], +[0,3435,3438,1881], +[0,4389,1796,1177,2708,97,19243,19247,1261,1959,4103,1938,1947,1961], +[0,1177,6651,1541,1259,5284,6718,6778,7056,7192,7044], +[2,8137,668], +[2,1393,12360], +[1,2343,12363], +[0,12364,12365,12359,2537], +[0,4135,3435,3438,19254], +[0,4389,1796,1177,2708,97,19243,19247,1261,4103,1938], +[1,2343,12367], +[0,12373,12374,12375,2399], +[3,5881,34], +"self", +[2,12368,12369], +[3,12370,35], +[2,12371,5585], +[0,1881], +[0,1009,1011,1742,1177,1895,1938,2675,2990,3400,1894,19263,91], +[0,1259,1541,6778,7056,7192,7044,1177,6651,5284,6718,91], +[1,2343,12377], +[0,0,5795,12378,4139], +[0,1885,1501,19269,590,671,9654,2292,2272,19270,1177,2649,19271,15717,4354,16790,19273,18443,2446], +[1,2343,12380], +[0,12381,5795,12382,2537], +[0,442,2203], +[0,1177,7625,19281], +[1,2343,12386], +[2,8530,4798], +"merge-deep", +[0,12387,12388,12389,2537], +[0,19438,19181,442,19344,1009,1011,1891,1907,19286,1915,1938,1942,1951,1953,17306,1982,4523], +[0,9736,1177,91], +[0,1890,1177,7625,19281], +[1,2343,12391], +[0,12401,12404,6936,2443], +[3,5075,18], +[2,12392,8221], +"@makotot/ghostui", +[3,6497,10], +"@types/hast", +"@umijs/bundler-utils", +"@umijs/", +"@umijs/core", +[2,12398,594], +[0,1953,1951,1938,19286,1011,17306,1009,1915], +"-scroll-to", +[2,12082,12402], +[0,1177,91,9736], +"codesandbox", +"comlink", +"dumi-", +[1,2343,12417], +"dumi-afx-deps", +"estree-", +"util-to-js", +[2,12410,12411], +[3,12412,12], +"visit", +[2,12413,12414], +"file-s", +[0,0,0,12423,2487], +"ystem-cache", +[2,12416,12418], +"is-element", +[2,2573,12420], +"heti", +[0,1177,6651,7625,28987,1894], +"html2sketch", +[3,3137,12], +"ind-and-replace", +[2,12425,12426], +[3,3140,14], +[2,12428,1871], +[1,2343,12453], +"prism-themes", +"react-l", +"-skeleton", +[2,10087,12433], +[2,12432,12434], +"code-editor", +[2,10961,12436], +[2,3890,12437], +"rehype-r", +"emove-comments", +[2,12439,12440], +"directive", +[2,3986,12442], +"sucrase", +"umi", +"-parents", +[2,4555,12446], +"v8-compile-cache", +"vfile", +"dumi-a", +"ssets-types", +[2,12450,12451], +[0,12464,0,2514,2523], +[2,11367,1732], +[2,6495,12454], +[3,5540,9], +"sted-git-info", +[2,12456,12457], +[2,6308,6925], +"luralize", +[2,5088,12460], +"@umijs/lint", +[2,12398,9711], +[0,53,1939,1959,68,1938,1270,1935,1947,19302,1011,19254,1961,1976,1009], +[1,2343,12469], +"-import-utils", +[2,12405,12466], +"repo", +[0,0,12470,12476,2523], +[0,1177,1903,1938,1953,1958,4389], +"git-repo-info", +[2,11311,1732], +"zx", +[2,699,701], +[2,12407,12474], +[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,6651,2446,2292,2272,671,19315,19269,2869,1899,4255,19317,590,19318,19320,19273], +" site generator", +[2,2947,12477], +"jamstack", +[1,2343,12481], +[0,0,12482,12483,2537], +[0,5601,19325,1177,1938,1953,1958,4389], +[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,6651,2446,2292,2272,671,19315,19269,2869,4255,19317,590,19318,19320,19273], +[1,2343,12485], +[0,12486,12487,2514,34352], +[0,442,27928,1982,2203,4523], +[0,19333,5601,4874,19336,1446,1177,19339,33860,1894,91], +[1,2343,12489], +[0,12490,12491,12492,2537], +[0,29371,19194,19344,19254,2203], +[0,1166,1177], +[0,6651,1906,19347,19348,19349,19350,19353,1501,19269,590,671,9654,2292,2272,19270,1177,2649,19271,4255,15717,4354,16790,19273,18443,2446,2869], +[1,2343,12494], +[0,0,12495,12496,2399], +[0,192,5467,1610,2675,2990,3985,3995,1906], +[0,19359,1541,1177,18639,18640,3624,1906], +[1,2343,12498], +[0,12499,12500,12501,2537], +[0,1012,1091,1443,1525,1595,1699,8098,18420,2777,2845,12834,3117,4507], +[0,442,4874,6513,29891,16480,22839,1177,1895,1938,1953,1955,1982,3125,3390,3400,3471,1894,4193,18710,91,4523,1984], +[0,2295,1739,1745,1177,1179,1932], +[1,2343,12503], +[0,12504,0,12505,4139], +[0,1676,27418,2191,19380,29856,27921,12578], +[0,91,1177,1204,14056,1932], +[1,2343,12507], +[0,12508,12509,12510,2523], +[0,2102,2151,3008,3429,4121], +[0,48,53,87,192,5467,19401,16405,1178,1193,1457,19403,1610,1700,1701,1177,1895,19405,1938,2675,1192,2794,2990,3400,1894,4257,2924], +[0,1177,671,9654,1194,2924], +[1,2343,12512], +[0,12513,12514,12515,2537], +[0,439,19194,19413,2000,19415,19419,4025], +[0,1011,1166,1414,1437,1177,19422,1912,1933,2020,3400,3471,3532,91,1906], +[0,1177,6741,6939,1166,1973,8791,1145,6637,6468,2899], +[1,2343,12517], +[0,12518,12519,12520,34352], +[0,19209], +[0,2899,1177,1178,3028], +[0,1172,1177,6741,6939,1178], +[1,2343,12522], +[0,12523,12524,12526,2523], +[0,16805,19436,1393,1423,2105,2203,3057,4135], +[0,53,68,192,5467,19438,442,6061,6063,19441,5366,19443,5601,5087,19446,5254,1317,19449,1804,1177,1895,1933,1955,2024,2675,1192,1894,4131,4183,4468,4474,91,4523], +"object-deep-merge", +[0,1177,1388,4231,5592,671,1421,19451], +[1,2343,12528], +[0,0,12529,12530,2523], +[0,1177,2899], +[0,1177,6741,1925,6778], +[1,2343,12532], +[0,12535,12536,12537,2537], +[2,19573,24759], +"diff-sequences", +[0,1874,2687], +[0,12602,4874,19464,1178,1503,1615,1177,19466,2151,2899,3421,3456,4039,4135,13134,19468,19469], +[0,1177,6741,6939,1932,8505,4298,12442,2202,2203,19472,19473,19475,19478,19479,19482], +[1,2343,12539], +[0,12540,12541,12542,2443], +[0,439,2004], +[0,192,5467,6303,19492,19181,442,27928,19611,19580,31200,1006,4870,4874,1011,1012,16480,1177,19494,1895,1912,1953,1982,1992,1994,2000,2675,2807,2990,1209,3125,3390,3401,1894,1531,91,4523,1984], +[0,1177,6741,6939], +[1,2343,12544], +[0,12545,12546,12547,2537], +[0,1209,19500], +[0,1091,2070,2675,2899,1177,4039,19505,15555,48,53,13693,94,4131,87,68,19504,5235,1933,1198,5874,78], +[0,1177,1932,1934], +[1,2343,12549], +[0,12550,12551,12552,4139], +[0,2654], +[0,19512,19514,1177,1895,19516,1894,4135], +[0,6939,6741,1177,1936], +[1,2343,12554], +[0,12555,12556,12558,34352], +[0,11554,19522,19525,18976,1143,1676,19526,19527,19378,2571,17501,2743,3181,19020,19531,18994,4135,11555,4480], +[0,19535,5601,1011,1173,1175,1178,1208,1212,1261,14237,1280,1291,1429,1610,19538,1177,1912,1915,1933,1938,17585,14053,19539,2070,2708,2762,2858,19540,19541,3125,2899,19544,3421,3875,4039,4103,4193,4449,91,19545], +"stable-hash", +[0,1177,6741,6939,5194,13354,5260,1204,6813], +[1,2343,12560], +[0,12561,12562,12542,2487], +[0,1012], +[0,48,53,87,92,192,5467,19492,19552,6061,6063,5536,5601,5087,4874,5254,1009,1011,1012,1193,19555,1680,1177,1895,1912,1933,1938,1953,1955,1992,19560,2675,2742,1192,15853,2990,19516,3534,1894,4039,4131,4135,4474,91], +[1,2343,12564], +[0,12565,12566,12567,2537], +[0,19567,12533,19568,8506,1676,1874,2000,19186,2626,12525,27427,4135,19570,30614], +[0,5517,48,53,68,5240,87,19574,19577,19193,19578,816,16607,6065,16608,4856,5245,19580,19581,1006,8818,6503,4874,5254,19586,5552,1198,1208,19588,1414,1420,1429,1677,1177,19504,19505,2070,2203,2675,19592,2845,26696,2990,2899,19595,3541,4068,4039,4042,4131,4193,5569,91,4523], +[0,1177,1932,1776], +[0,12569,19601,12572,34352], +[0,439,19193,11180,12570,12534,12668,17310,12118,19571], +[2,19606,12571], +"ast-token-store", +[0,1177,6741,6939,671,19632,2856,1781], +[1,2343,12574], +[0,12575,12576,12577,2537], +[0,11869,19522,1143,19638,1169,19639,19640,13829,2571,19644,19645,3181,19020,19647,19648], +[0,48,53,68,5240,94,1159,1198,1261,1177,1881,1912,1933,1935,1938,2004,2126,2708,2762,17221,3183,3410,3435,3438,4039,4103,4135,4389,19650], +[0,1177,6741,6939,6653,7320,1219], +"unrs-resolver", +[1,2343,12580], +[0,12581,12582,12583,2537], +[0,3137], +[0,3421,1429,2899,1177,2203,442,19206,19657], +[0,1177,6741,1783,671,9654], +[1,2343,12585], +[0,12587,0,12594,2399], +"aleo", +[0,2203,439], +"cryptography", +[3,1336,10], +"decentralized", +"-knowledge", +[2,7150,12591], +"oracle", +[0,1177,6741,6939,2899], +[1,2343,12596], +[0,12597,12601,12615,34352], +[0,439,1835,19671,2191,2203,1555,2687,4135,29860], +"event-", +"target-shim", +[2,12598,12599], +[0,442,5601,1006,27303,4874,1011,12145,1177,1895,1912,1933,2071,2675,2990,3125,2899,3401,3421,3456,1894,3757,3980,4039,19676,4507,91], +"@mysticatea/eslint-plugin", +[3,12602,12], +[2,12603,4158], +"dts-bu", +"ndle-generator", +[2,12605,12606], +"growl-reporter", +[2,2877,12608], +"-minify", +[2,4045,12610], +"rollup-", +"rollup-watch", +"type-tester", +[0,1177,6741,6939,202,6710,5286,6987,2090,3403,1204,3209], +"w3c", +"abort", +"cancel", +"control", +"controller", +[2,12617,12620], +"abortsignal", +[1,2343,12624], +[0,12625,12626,12615,2487], +[0,1927,19414,2687,3181,814,4135], +[0,12602,1503,1177,2071,2203,2899,3421,3456,3757,4039], +"negotiator", +[1,2343,12629], +[0,12630,0,12632,2399], +[0,19689,19571], +"negotiation", +[0,1177,6741,6939,1894], +[1,2343,12634], +[0,12635,12636,12637,2537], +[0,439], +[0,1011,1742,1177,1895,1912,1933,1939,1953,1955,2203,2675,1192,2990,3401,1894,91], +[0,1177,6741,6939,1862,6567], +[1,2343,12639], +[0,12640,12641,12642,2523], +[0,19522,19724,1143,19726,19526,19641,2004,2571,19644,3181,3438,19020,18994,3744,814,4135,11434,19729], +[0,53,68,5611,19731,19735,90,5601,1006,4874,1011,1178,1177,1881,1912,1933,1938,1992,19560,1994,2000,11605,2070,2759,2762,19736,3125,2899,3410,4193,91,19545], +[0,1177,6939,6741,89], +[1,2343,12644], +[0,12645,12646,12642,2523], +[0,4763,53,58,21131,25652], +[0,1192,91,4874,104,1178,5601,1006,19877,36694,68,92], +[1,2343,12648], +[0,12649,12651,12652,2487], +[0,439,12121,8506,19592,19745,19750,19751], +"git-clone", +[0,107,6022,19492,19181,442,19605,19609,11470,4856,5601,19611,1006,6503,4874,19759,1009,1011,1145,1429,19619,1177,1895,1912,1915,1933,1938,1942,19622,1945,1948,1953,19757,1955,1964,1982,1988,17308,19756,3125,2899,19761,3090,3401,3421,3486,1894,4135,4320,4946,19624,1531,4494,91,4523,19630,4614,4630], +[0,1177,6741,6939,6961,1108], +"iglet", +[2,5537,12653], +[3,9362,11], +[2,12655,1496], +[1,2343,12658], +[0,12661,12662,12663,2523], +"nestjs", +"fullstack", +[0,19767], +[0,442,13729,1177,19771,1895,1912,1933,2990,3125,2899,3400,1894,4131,19235], +[0,1177,1965,19773], +[1,2343,12665], +[0,12667,0,12669,34352], +"archive", +[0,91,4135,31800,3060,19780,12121,3181,5569,19751,1413,1405,2203], +"eslint-json-compat-utils", +[0,19786,1177,6741], +[1,2343,12671], +[0,0,12529,12672,2443], +[0,1177,6741], +[1,2343,12676], +"flowcontrol", +"arch", +[0,12677,12678,12679,34352], +[0,439,5012,14301,2203,2932,3561,3616,3676,4135,19795], +[0,53,68,14039,19492,10879,19797,19798,8818,19799,6503,4874,19800,5254,19802,5604,5552,1082,1145,668,1994,19339,1996,2000,2807,695,2899,3640,3681,2278,4228,4333,3709,19803,4494,4505,4745], +[0,1177,6939,6741,3709,19805], +"cron-parser", +"date.js", +"human-i", +[1,2343,12686], +"nterval", +[2,12682,12684], +[0,12691,12695,12696,2523], +"uman-interval", +[2,6495,12687], +[2,8329,2995], +[2,3230,12689], +[0,5604,1012], +"job", +"jobs", +"delayed", +[0,192,5467,19181,442,4874,5551,7677,22839,23203,1177,1895,1912,1915,32525,1953,1958,1992,19560,2203,2675,2807,2990,1894,23535,4131,1531,91,4523,1984], +[0,1177,6741,6939,671,1975,5472], +[1,2343,12698], +[0,12723,12724,12725,2537], +[3,1339,12], +"end4", +[2,12699,12700], +"meat7", +[2,1337,12702], +"bow-swam-troops-care", +"cent-matter-to", +"close", +"r-composed-particularly-shout", +[2,12706,12707], +"coach-organized-notice", +"correct-home-silent7", +"course-whenever-merely", +"crop", +"-birthday-web3-children", +[2,12712,12713], +"exchange-known-bend", +"-even", +"tually-bound", +[2,12716,12717], +[2,8205,12718], +"grass-dollar-crew-floating", +"-fruit-web3-perfect", +[2,4374,12721], +[0,1012,608,606], +[0,9125,5601,1006,1177,9141], +[0,6869,1745,2295,4298,9132,9134,9658,1932], +"lay-rest-hour", +"balance", +"-trade-solar", +[2,12727,12728], +[2,3131,12729], +"meat", +"-think-stove8", +[2,12731,12732], +"offic", +"e-deal-mostly1", +[2,12734,12735], +"product-slight-adult-settlers", +[3,3931,9], +"done-should-moon", +[2,12738,12739], +"scienti", +"fic-exist-event2", +[2,12741,12742], +"sent", +"-won-little-western", +[2,6590,12745], +[2,12744,12746], +"-wing-eat", +[2,6887,12748], +"stay-including", +"supp", +"er-t", +"erm-including-snake", +[2,12752,12753], +[2,12751,12754], +"truck-hospital-equator-hurt", +"trunk-darkness-believed-corner", +"typi", +"cal-recall-industry-exchange", +[2,12758,12759], +"warn", +"-clothing-whose0", +[2,12761,12762], +"weigh-flew-web3-farm", +[1,2343,12766], +[0,12767,12768,12769,34352], +[0,5279,439,1443,1458,19824,5867,30055,2203,2709,10911,2835,3547,19826,19827,4135,8959], +[0,51,53,68,19181,19829,1011,5552,1166,1414,1836,1177,19422,1907,1912,1933,1942,1982,1992,19560,1994,2000,2992,3125,17269,27922,3390,3401,19595,3471,3718,91,4630,4745], +[0,1177,6741,6939,1981,9654,671,590,1906], +[1,2343,12781], +"@airtap/browserify-istanbul", +"-default", +[2,1090,12772], +"airtap-", +"airtap-multi", +"bruce-millis-option", +[3,9242,9], +[3,9242,10], +[2,12778,5576], +"near", +[0,12561,12794,12797,2537], +"nearest-file", +[2,2103,12782], +"s-to-files", +[2,2070,12784], +"human", +"ize-duration", +[2,12786,12787], +"load-script", +[3,3736,9], +[2,12790,6953], +[2,3094,12791], +"maybe-combine-errors", +[0,19344,5601,6503,4874,1009,1011,5551,19838,19839,1540,1177,1912,1933,1985,1992,19560,4474,4494,91,4543,1984], +"nanoresource", +"-col", +[0,1177,6741,6939,19842,1984,19844], +"-collection", +[2,12795,12798], +"on-str", +"eam-close", +[2,12800,12801], +"run-", +"parallel", +[1,2343,12806], +[0,12810,12811,12816,2523], +"-settled", +[2,12804,12807], +[2,12803,12808], +[0,439,12118,16870,3681,4135,19851], +[0,107,27928,19609,19344,11470,5601,19616,4874,5254,19853,1009,1011,5552,7677,1145,19619,668,1177,23753,1895,1933,1938,1945,29743,19623,1955,1982,19339,1996,2000,2018,2203,2832,3125,3510,1894,1531,91,19630,4614,1984,4630], +"tap-completed", +"y-with-args", +[2,3949,12813], +"transi", +[0,1177,6939,7625,188,12072,3624], +"ent-error", +[2,12815,12817], +[1,2343,12821], +"abstract-browser", +[0,12822,12824,12827,2487], +[0,51,2861,1437,2716,3429,89,4183], +"simple-get", +[0,19181,19861,5601,4874,8860,4880,1567,1177,5556,19862,19864,2807,3339,4294,91,1984], +"labs", +"saucelabs", +[0,1177,19866], +[1,2343,12829], +[0,12830,12838,5795,34352], +[0,34028,1006,19871,2004], +"uri", +"fast-uri", +[3,12284,13], +[2,12833,1286], +"-string", +"from-string", +[2,4013,12836], +[0,1011,1429,1996,2000,19230,4167], +"@ajv-validator/config", +"quire-", +[2,12840,12836], +[2,5249,12841], +[1,2343,12853], +"tc", +"-plugin-utc", +[2,1673,12845], +"if-node-version", +[2,12833,4467], +[2,5223,12836], +"re2", +"tsify", +"uri-js", +[0,0,12854,5795,2523], +[0,3456,4042,4057,4481,91], +[1,2343,12856], +[0,12857,0,12858,2537], +[0,1898,19884], +[0,1998], +[1,2343,12861], +"Ajv", +[0,0,0,12862,34352], +[0,10906,5286,6813,1204,5260,202,3209], +[1,2343,12864], +[0,12865,12866,12867,2523], +[0,1082,15128,1996], +[0,5517,4042,4167,4481,91], +[0,6892,5286,5284,57,5341,1082], +[1,2343,12869], +[0,0,12871,12872,2523], +"longjohn", +[0,15990,19905,19907,2070,2759,19878,2297,2881,2889,2891,2895,2897,2900,2912,19910,2915,1209,2899,19912,3954,1241,4487,91,4526,19914,2924], +[0,6892,5286,2003,5284,57,5341], +[1,2343,12874], +[0,0,12875,2514,2523], +[0,1264,1280,1429,2000,2323,2351,2390,2404,19922,2272,2899], +[1,2343,12880], +"buffer-", +"more-ints", +[2,12877,12878], +[0,12881,12883,2514,2487], +[0,1006], +"claire", +[0,91,4579], +"AMQP", +[1,2343,12888], +"AMQP 0-9-1", +"RabbitMQ", +[0,0,12889,12890,2487], +[0,2899,1177,2759,1317,4127,4100,1311,1954,1938,1958,1903,1948,1970], +[0,984,27,10376], +[1,2343,12892], +[0,12894,12895,12896,4139], +"ux bootstrap", +[0,19937,2010], +[0,19939,19941,19942,19944,9424,7892,4874,19325,1389,19945,1596,2675,2759,2297,2871,2889,2895,19946,3183,3421,1894,4389,4474,4487,4508,4514,91,19948], +[0,9439,19950], +[1,2343,12898], +[0,12900,12901,12902,2523], +"client-side", +[0,9424,1363,1600,19956,19957], +[0,19961,4874,19963,19325,1177,2297,2881,2895,19946,19965,3421,1894,4389,4474,91], +[0,9439,6731,594], +[1,2343,12904], +[0,12905,12906,12907,2523], +[0,1082,1437,4747,1209,1362,2151,19972,2004,3105,19971,4547], +[0,3763,19974,91,4874], +[0,19976,19977,5284,1783,1973], +[3,4,9], +"cli/ast-tools", +[2,12908,12909], +[3,12910,13], +"href-webpack", +[2,1296,12912], +[2,12911,12913], +"@ngtools/json-schema", +"@ngtools/", +[2,12916,2924], +"denodeify", +[1,2343,12920], +[0,12927,12932,12933,2523], +"entity-name", +[2,3370,12921], +[2,1828,12922], +[2,4284,594], +[2,1828,12924], +"exists-sync", +[0,1792,7115,3102,19982,4237,19984,4430], +"caller-file", +[2,2183,12928], +"isbinaryfile", +"node-mo", +[0,19986,19987,19988,4389,19989], +[0,3101,3053,19991,7131,4237,4565,1698,4068], +"dules-path", +[2,12931,12934], +[2,1508,2091], +"silent-error", +[3,4070,9], +[3,6384,10], +"inst", +"rumenter-loader", +[2,12940,12941], +[2,12939,12942], +[2,12938,12943], +[1,2343,12946], +[0,0,12947,12948,34352], +[0,1317,1362,1596,2899,3421], +[0,2013,2018,13771,2016,19997,19998,19999,6868,20000,1803,3441,20001,20003], +[1,2343,12952], +" library", +[2,4627,12950], +[0,0,12953,12954,2537], +[0,811,10615,1148,1414,2899,4042], +[0,20014,20015,20016,20018,19997,19998,6868,20000,13771,2013,3441,19999,20001,20019,20003], +[1,2343,12957], +"justified", +[0,0,12960,12962,2523], +"bgblack", +"bgBlack", +[0,1090,2159,6914,2569,2756,4389], +"bgblue", +[0,2018,7133,7053,7155], +"bgBlue", +"bgcyan", +"bgCyan", +"bggreen", +"bgGreen", +"bgmagenta", +"bgMagenta", +"bgred", +"bgRed", +"bgwhite", +"bgWhite", +"bgyellow", +"bgYellow", +"black", +"bold", +"clorox", +"cyan", +"dim", +"gray", +"green", +"grey", +"hidden", +[1,2343,12988], +"inverse", +"italic", +[0,12989,12995,12999,2537], +[0,20033,1615,2089,2188,20035,2745,2753,3404,3718,4174,20039,20040], +"magenta", +"red", +"str", +"kethrough", +[2,4285,12993], +[0,4874,1166,1414,20042,20044,20047,29888,3505,16687,16330,4481,91,4707,1906], +"underline", +"white", +"yellow", +[0,2978,1451,3729,20049,16701,20050,20051,1614,2090,4166,20052,17180,20054,3378,3403,2703,12473], +[1,2343,13001], +[0,0,13003,13004,2487], +"@jest/get-type", +[0,2273,2277,2283,2228,4707], +[0,2021,3729,20061,8634,20062,20063,20064,20065], +"vt100", +"cursor", +"iterm2", +"screen", +"erase", +[1,2343,13012], +"scrollback", +[0,13013,13014,2514,2537], +[0,20076,13002,11907,8765,11944,2798], +[0,16596,8776,1437,2700], +[1,2343,13016], +[0,0,13018,13019,2537], +"pattern", +[0,5517,4874,29891,23203,1177,20083,3377,20085,4294,4473,91,1984], +[0,91,20088,1145,553,4532,1973,5472], +[1,2343,13021], +[0,13022,13023,13025,2537], +[0,3763,1704,984,3441,710,4590,1676,2145,977,38,1080,1000,3494,4266,1833,3173,988,1364,1869,2657,3440,1562,2099,3781,4151,1581,20103,1560], +[0,1797,2590,3421,1087,2899,4594,1177,3127,3237,4342,1553,1575,1578,2040,3162,20106], +"svg-term-cli", +[0,2026,5130,6690,5122,27,4030,7096,38,1896,5592], +[1,2343,13027], +[0,13028,13029,13025,2537], +[0,1080,20098,1364,1560,1562,977,1581,1676,1704,1833,1869,984,2099,2145,2657,20103,3164,3440,3494,3509,988,3763,3781,4100,710,4151,20099,4266,1000,4578,4590], +[0,1087,1553,1575,1578,1797,1177,2040,2590,3127,3162,2899,3237,3421,20106,4342,4594], +"truecolor", +[2,31213,31214], +[1,2343,13033], +[0,13034,13040,13043,2487], +[0,53,58,101,19526,3509], +[2,12392,188], +"nitless", +[2,7944,13036], +"@simonwep/pickr", +"array-", +[0,5087,1177,1192], +"tree-filter", +[2,13039,13041], +[0,8124,2026,1776,2295,7701,20120,1745,4363,13728,1179,8623,20121,20123,20124], +[1,2343,13048], +"dom-align", +"croll-into-view", +[2,11148,13046], +[0,13050,13054,13070,2537], +"vue-types", +[0,1797,3188,1525,3181,14380], +[3,10720,40], +[2,5822,3426], +"@types/k", +[0,2899,1177,4039,4538,4342,4459,1954,1938,1958,1903,1970,4588], +"@types/koa", +"ru-cache", +[2,6499,13056], +[3,4875,15], +[2,13058,3615], +"-jsx", +[2,11016,13060], +[2,1199,1219], +[2,5334,13062], +"slint", +[2,3542,13064], +[2,1472,13065], +[2,5334,13066], +[3,1031,19], +[2,13068,1894], +[0,2026,5130,6690,5122,4030,7096,38,1896,5592], +"vue3-jest", +[2,5334,13071], +"pack-", +[1,2343,13081], +"cli/serve", +[2,13073,13075], +[2,10672,13076], +"ali-oss", +"nline-import-data-uri", +[2,1206,13079], +[0,13082,13091,13102,2523], +[0,2070,2215,2036], +"context", +"quire-context", +[2,1252,13084], +"colorful", +"-versions", +[2,3797,13087], +"cz-git", +"diacritics", +[0,442,6061,16607,6063,6065,16608,16612,5087,4874,1177,2203,2774,4131,4468,91,4523], +"docsearch.js", +"enquire-js", +[3,1954,16], +"licit-type-exports", +[2,1760,13095], +[2,13094,13096], +[3,2512,11], +[2,13098,1501], +"-emit-webpack-plugin", +[2,2687,13100], +[0,2026,20137,2036,6624,8691,20140,5354], +"is-windows", +[3,11948,16], +[2,13104,188], +"stub", +[2,1221,13106], +[2,2769,13107], +"templater", +[2,2842,13109], +[1,2343,13116], +"mport", +"npm-import", +[2,1186,13113], +[2,3194,13114], +[0,13139,13140,13146,2523], +"vars-to-js", +[2,3194,13117], +"majo", +[3,5961,14], +"ble-of-contents", +[2,13120,13121], +"merge2", +[2,3986,1646], +"yaml-", +"yaml-config", +[2,3986,13126], +"reqwest", +"rucksack-css", +[3,4130,9], +[2,13130,36], +[3,1873,9], +[2,2495,2091], +[2,13132,13133], +"umi-request", +"vue-cl", +"ipboard2", +[2,13136,13137], +[0,2863,20147,8264], +[0,2899,1177,2026,4474,1894,91,6503,6494,1566,1011,1009], +"drag-resize", +[2,4625,13141], +"vue-i", +"nfinite-scroll", +[2,13143,13144], +[0,1303,20150,5165,20151,14374,27,2038,11326,3424,2026], +[1,2343,13150], +"equest", +"vue-request", +[0,13153,13155,2514,2523], +"vue-tsc", +"webpackbar", +[0,977,1581,1676,1704,16128,3494,4100,4538], +"vueComponent", +[0,1087,1575,1177,1948,2026,2899,3421,4342], +[1,2343,13157], +[0,13158,13160,13170,2523], +[0,1091,1437,1525,1536,1594,1759,2026,2812,4042,4057,91,4763], +[2,11164,3007], +[0,442,7806,9227,6494,4874,1009,1011,1177,1954,2203,3363,1894,4039,4474,4480,4523], +"color-picker", +[2,11183,13161], +[3,5050,15], +"utate-observer", +[2,13163,13164], +[2,11183,11194], +[3,11185,15], +"rigger", +[2,13167,13168], +[0,5592,5995,20164,5001,7141,2026,20165,5130,6706,6807,36,7020], +[3,11161,14], +"mpat", +[1,2343,13180], +"mpatible", +[2,13171,13174], +"work-theme", +[2,2560,13176], +[2,41,13177], +"@ant", +[0,0,13208,13209,2523], +"@antv/g6", +"@codecov/webpack-plugin", +"@code", +"sandbox", +"/sandpack-react", +[2,13184,13185], +[2,13183,13186], +"@ianvs/prettier-plugin-sort-imports", +"@madccc/duplicate-package-checker-webpack-plugin", +"@micro", +"flash/rehype-figure", +[2,13190,13191], +"dm-zip", +[2,9165,13193], +"li-oss", +[2,9165,13195], +[3,10403,11], +[2,13197,3730], +[3,10406,12], +[2,13199,36], +[3,8806,9], +"omorphic-fetch", +[2,13201,13202], +[2,7635,965], +[2,10884,3730], +"ixelmatch", +[2,5088,13206], +[0,1414,20171,4193,1177,2026,4474,20170,91,4874,6513,6494,1011,1009], +[0,20173,20174,1781,91,5592,27,2026,20175,20176,91,2663,998,20178,20179,20182,20183,20184,9091,10339,5995,20186,20188,89,20189,20194,20195], +"@types/pngjs", +[1,2343,13217], +"pinnies", +[2,5051,13212], +[3,7752,10], +"antd-style", +[3,8770,10], +[0,13222,13242,13244,2537], +"ugin", +"y-plugin", +[2,13216,13219], +[2,7045,13220], +[0,1209,1155], +"cli-progress", +"plugin-c", +"chunk", +"olor-chunk", +[2,13224,13226], +[2,12407,13227], +[3,5556,16], +"dash", +[2,13229,13230], +"lunar-typescript", +"p-all", +"untup", +[2,3808,13234], +"-no-", +"-references", +[2,10393,13237], +[2,13236,13238], +[2,11380,13239], +"runes2", +[0,20202,20207,20212,5087,4870,1009,1011,1177,1895,1938,1955,1192,1894,4468,91], +"spinnies", +[0,2026,1155,7020,2649,2574,20215,4741], +"vanilla-tilt", +[1,2343,13247], +[0,13248,13249,13250,2523], +[0,1112,3327,20221,3776,13031], +[0,7806,9227,27478,6494,9231,27327,22102,10413,20232,1536,1594,1704,2026,9243,2657,3313,20243,91,4548,4763,34143], +[0,6710,5592,27,2663,1745,1781,2026,91,2844,36,1852,8124,20246,3452,20247,6652,20251,20252,4763,7020], +[1,2343,13252], +[0,0,13253,13254,4139], +[0,13614,13616,1177,2292,4389], +[0,2051,1496,1698], +[1,2343,13256], +[0,13257,13258,13269,4139], +[0,20263,20266], +[0,20268,20269,20272,2398,2747,20273,3183,2899,3427], +"ext-comm", +[2,10740,13259], +[2,5409,13260], +[2,5409,1745], +"app-layout", +[2,10689,13263], +[3,10703,14], +[3,212,11], +[2,13265,13266], +[3,806,10], +[0,3426,1496,2051,1698,7002,3048,3427,3435,3743,3583,3205,20275,4161,614,6435,594,6692], +[1,2343,13273], +"aper-toast", +[2,13268,13271], +[0,13274,13288,2514,2523], +[0,1149,3008,4121,4695], +"menu-mixin", +[2,5395,13275], +"building", +"-rollup", +[2,13277,13278], +[2,5471,13279], +[2,1384,591], +[2,13265,13281], +[3,5478,17], +"-regression", +[2,7062,13284], +[2,13283,13285], +"amf-client-js", +[0,1173,1193,1245,1257,1264,1610,1628,1701,1177,20281,1938,2092,1192,2990,3413,3697,3786,4257,4307,2924,20283], +[2,4053,2257], +"per", +"unzipper", +[1,2343,13295], +"raml", +"amf", +[0,13296,13297,13298,2399], +[0,1676,2188,4753,20290], +[0,1009,1011,1166,1177,1903,1920,1938,1954,1958,1970,2151,2675,2990,3421,4481,91], +[0,4560,2056,7682], +[1,2343,13300], +[0,0,13306,2514,34352], +"-match-patch", +[2,1687,13301], +"se-loader", +[2,5779,13303], +"klaw-sync", +[0,3421,2323,1776,2899,4193,1177,1209,3460,4431,1596,1389,20304,2494,2530,2990,13896,4599,2401,20305,20306,4603], +[3,1898,16], +[1,2343,13309], +[0,13312,13313,13314,2537], +"commended", +[2,13307,13310], +[0,20312], +[0,1177,1889,1954,2022,2899,3421,20314,4193], +[0,20317,3073,2942,6807,3721,20319], +[1,2343,13316], +[0,13317,13320,13321,2537], +[0,20325], +"light", +"apidoc-light", +[0,603,4874,1610,2070,19826,4005,4508,91,1984,20328,20330,2064], +[0,20334,20335,13657,5472,20336,20339,20340,2060,20342,20341,1192], +"portable", +[1,2343,13324], +[0,13329,0,13330,4139], +"programmatic", +"cli-app", +[2,4610,1745], +[2,3115,1745], +[0,20351,20349], +[0,1641,57,2062,20353,20354,20355], +[1,2343,13332], +[0,0,13334,13335,2537], +"http2", +[0,1596,1758,1177,2899,3421,3697,89,3904,4193,91], +[0,2062,4162,1693], +"apple", +" notifications", +[2,6645,13337], +"iOS", +"apns", +[1,2343,13342], +[0,13343,13344,13347,2537], +[0,20366,19185,2200,13123,3170], +[0,20369,16396,20371,8778,6503,4874,20374,6513,20375,1177,20377,2020,2071,20378,2070,20380,2899,4039,4193,20382,91], +[3,1122,12], +[2,1126,6731], +[0,2070,11601,2062,20385], +[1,2343,13349], +[0,0,13350,2514,2523], +[0,6503,4874,2899,4113,91], +[3,5515,14], +[2,4807,13351], +[1,2343,13355], +"jsnext", +[0,13357,13358,13359,2443], +"relay", +[0,20394], +[0,53,83,87,94,4874,1195,1414,1177,2591,2765,1894,3753,91,2924,4677], +[0,2062,6523,1781,57,4734,16168,4735,676,1155,2649,8535,1145,20398,20400,1936], +[1,2343,13361], +[0,0,0,13365,2399], +[3,8780,10], +"phql", +[2,13362,13363], +[0,2077,5131,4453,4384,2076,1702], +[1,2343,13367], +[0,13368,13371,13375,2537], +[0,20428,20414,20434,13597,20418,20409,20426,20412,20420,3533,20416,4038,20423,4135,20410], +"-common", +[2,1129,13369], +[0,28002,8520,826,19344,7844,4874,1091,8531,1092,20437,20446,20441,28400,20450,1540,1610,1177,20444,11049,20453,20436,2657,2812,12284,2861,20451,29197,3313,3752,4238,4481,91,4548,4590,6482], +[2,1126,1612], +"to-querystring", +[2,3425,13373], +[0,5122,5130,1781,2844,3445,5592], +[1,2343,13377], +[0,13378,13380,2514,2523], +[0,603,20472,12397,20467,20482,12399,12400,27329,20463,1201,1212,20479,20476,1835,668,2071,12419,20465,3181,20460,4480,91,20474], +"cracks", +[0,192,5467,842,5087,20485,9129,4874,14011,12471,2675,1192,6551,2990,1894,3706,3708,4039,4474,4494,12473], +"_modules", +[2,202,13381], +[1,2343,13384], +[0,13385,13386,13389,2399], +[0,20490,20491,20492,20493,20494,15016,1792,3183,19544,3923,19647,4243,20495,18997,20496,4389,4431], +[0,13614,1158,1159,1177,2708,3410,4103], +"@appium/support", +"@colors/colors", +[0,4384,12786,1973,20499,20500,3721], +"appium-adb", +"appium-", +"driver", +"chromedriver", +[2,13391,13393], +"asyncbox", +"io.appium.settings", +"ports", +[1,2343,13401], +"portscanner", +"teen_process", +[0,13407,13408,2514,2523], +"@appium/", +[3,1879,15], +"ppium-ts", +[2,13403,13404], +[2,13402,13405], +[0,1613,20507,3082,3427,1862,20508,11804], +[0,53,1700,2126,2323,2338,2396,2494,2700,2774,3159], +[1,2343,13420], +"@appium/t", +[2,13410,7630], +[2,13410,103], +"luebird", +[2,4853,13413], +[3,4875,9], +"rtscanner", +[2,13415,13416], +[2,5051,5588], +"@types/te", +[0,6230,13421,13422,34352], +[0,48,53,87,90,6061,6063,20514,13662,20517,1251,1652,1177,1879,2990,3188,4131], +[0,20519,20520,20521,20522,4963,20523,4967,6082,89,20524,20525,11609,5122,20526,20528,20531,20533,17751,20536,20537,20539,20541,20542,20543,20544,20545,20546,20547,20548,20551,20553], +[1,2343,13424], +[0,6263,13425,13427,2537], +[0,48,53,83,87,90,92,5583,811,816,10817,968,972,20562,5087,4880,4883,1009,1011,1503,1540,1610,1177,1881,1895,17613,1938,1939,1959,1961,1192,89,3824,3957,4042,4073,4468,4484,91], +"appium", +[0,20566,4967,20568,3875], +"automation", +[2,5131,10428], +[1,2343,13431], +[0,13432,0,13433,4139], +[0,20577,20573,20575,11959], +[0,1612,27,3212,5472,4158,13106], +[1,2343,13435], +[0,13436,0,13438,2399], +[0,20584], +"@azure/core-auth", +[0,10807,2087,15964,20586,1149,12804,6812,14836,1862], +[1,2343,13440], +[0,5621,13443,13448,2537], +"pipeline", +"reg", +[0,4874,23203,1149,2675,2990,91,1983,26744,1984], +"@azure/", +"identity", +[2,13444,13445], +"monitor-", +[0,2088,6938,6952,7179,1111], +"eleme", +[1,2343,13451], +[0,13460,8134,13461,34352], +"opentelemetry", +[2,13447,13452], +[2,13444,13453], +[3,830,9], +[2,13454,13455], +"-inst", +"rument", +"ation-", +[0,16232], +[0,3656,200,8429,6876,7169,5511,2568,20597,2089,20598], +"azure-sdk", +[2,13459,13462], +[2,13458,13463], +[2,13457,13464], +[2,13452,13465], +[2,13444,13466], +"@opent", +[1,2343,13472], +"elemetry/api", +[2,13468,13470], +[0,13511,13519,13533,2537], +"-logs", +[2,13471,13473], +[3,13471,15], +[2,13475,364], +"er-logs-otlp-http", +[2,6813,13477], +[2,13475,13478], +[3,13479,24], +"metr", +"ics-otlp-http", +[2,13481,13482], +[2,13480,13483], +"trace-", +"otlp-http", +[2,13485,13486], +[2,13480,13487], +"otlp-", +"exporter-", +[2,13490,1299], +[2,13489,13491], +[2,13475,13492], +"resources", +[2,13475,13494], +"sdk-logs", +[2,13475,13496], +[3,13497,19], +"metrics", +[2,13498,13499], +"trace-base", +[2,13498,13501], +[3,13502,25], +[2,13503,202], +[3,13497,16], +"emantic-conventions", +[2,13505,13506], +"diagnostic-channel", +"-publishers", +[2,13508,13509], +[0,3008,4121], +[2,13444,5746], +[3,4870,9], +"@types/long", +[3,8778,12], +"__typescript-etw", +[2,7295,13516], +[2,13515,13517], +[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,2675,1192,2990,3144,3400,1894,4257,4027,2924], +"exce", +"ption", +" monitoring", +[2,13521,13522], +[2,13520,13523], +[2,705,13522], +[2,6681,13522], +[3,1135,11], +" insights", +[2,13527,13528], +"microsoft", +"azure", +"tracing", +[0,2924], +[1,2343,13536], +"telemetry", +[0,0,13537,13540,4139], +[0,48,53,10688,5812], +"analytics", +"apm", +[0,20611,20613,20614], +[1,2343,13542], +[0,13543,13555,13556,2537], +[0,13687,20619,20621,20624], +[3,7709,10], +"ial-provider-node", +[2,11891,13545], +[2,13544,13546], +[3,7709,9], +"hash-", +"hash-node", +[2,13548,13550], +[3,6765,9], +[2,13552,27], +[2,13548,13553], +[0,20626,4874,1166,20627,2188,20628,4481,1906], +[0,3171,2090,998,14431,12666,158,11807,20630,20631,16202,20632,20634,13735,4354,2741,20635,14242,20636,8433,17180,1398,15149,20637,18048,20638,20639,12349,20640,20641,20642,20643,20644,20645,20646,20647,20648,3775,20649,20650,20651,20652,20653,20654,2056,4390,20655,17276,17274,20656,18494,20657,20658,20659,20660,20661,20662,20663,20664,20665,20666,20667,20668,20669,20670,20671,2636,20672,20673,7016,20674,20675,20676,20677,20678,20679,13705,20680,20681,17918,20682,7827,20683,20684,20685,10790,20686,20687,20688,20689,20690,20691,7823,20694,20695,20696,20697,20698,3354,20699,20700,20701,20702,20703,20704,20705,20706,20707,20708,6523,20709,11811,10868,20710,20711,20712,8861,20713,20714,20715,20716,20717,20718,20719,20720,20721,20722,20723,20724,20725,20726,20727,20728,20729,20730,20731,20732,20733,20734,20735,20736,20737,20738,20739,20740,20741,20742,2403,20743,20744,20746,12350,10218,20747,20748,18508,17733,20749,20750,20751,20752,20753,20754,20755,20756,20757,1227,20758,20759,20760,20761,20762,20763,20764,12081,12096,28922,28923,28924,28925,28926,28931,28932,28942,28943,28946,28947,37859,28949,28955,28958,28961,34876,33671,6790,33677,27669,29579,17288,13442,18883], +"signature-v4", +[2,13548,13557], +[2,13548,553], +[2,9196,1732], +[1,2343,13570], +"@aws-", +"amplify/amplify-appsync-simulator", +[2,13562,13563], +"construct", +"constructs", +[3,3706,25], +[2,13567,2618], +"projen", +[0,0,13575,13576,34352], +"appsync", +"gql", +"lambda", +"xray", +[0,10615,1159,1414,1177,2675,2899,4042], +[0,2090,2098,4202,7017,6771,1413,1687], +[1,2343,13578], +[0,13582,9025,2514,2487], +[2,1137,3007], +"crc32", +"buffer-crc32", +[0,1676,1833,1869,3440,3494,4266], +"readdir-glob", +"zip-stream", +[1,2343,13588], +"archiver-", +"jsdoc-t", +[0,13592,13593,13594,2523], +"jsdoc-theme", +[2,13586,13589], +[2,4279,4440], +[0,3537,13765], +[0,1906,1166,1700,4481,4400], +[0,2325,7204,20164,2100,7193], +[1,2343,13596], +[0,13598,13599,13600,2537], +[2,27994,27995], +[0,20786,20789], +[0,1166,17450,4400,4481,1906], +[0,2100,2104,2105,7076,6614,6605,2090,7193,3529,3383,814,5933,7029,6857,7204,4647,6821,3403], +[1,2343,13602], +[0,13603,13604,13605,2537], +[0,20796,2743,3170,20797], +[0,1177,1889,1954,2022,20801,2899,3369,3421,814], +[0,2090,2100,2105,7076,2070,3529,13017,814,7193], +[1,2343,13607], +[0,13608,13620,13621,2537], +[0,13612,20819,20822,20824,20825,20826,20828,20829,20831,20833,20836,20837,20839,20840,20841,12153,20843,20846,20847,20848,20849,20850,20851,20852,20853,20857,20858,20859], +[2,6739,1228], +"-unscopables", +[2,7065,13610], +"@firebase/ai", +"@es-shims/api", +"@ljharb/eslint-config", +"cover", +"covert", +"has-s", +"trict-mode", +[2,13617,13618], +[0,2323,4042,91,2496,2510,4077,10615,4060,811,4071,4076,816], +[0,5165,18035,20862,2109,20863,13901,6681,20845], +[1,2343,13623], +[0,13624,13627,13628,2399], +[0,20870,20848,20872,4874,20873,2069,20917,2863,20874,3313,3348], +"arrayify", +"ensure", +[0,20883,20839,20840,20885,603,20886,4856,9417,20888,8264,4870,7892,6503,10410,16936,20889,6513,6512,7819,1009,1011,1306,1429,1431,6522,1437,1455,1700,1177,20892,2323,2390,2409,2529,20895,1209,3183,2899,3261,3297,3400,3421,705,4008,4089,4193,4196,4474,91,4747], +[0,20897,18035,20862,20863,5165], +[1,2343,13630], +[0,13632,0,13634,2399], +"is-n", +[0,32557,32562,12207,20745,20904,20905,8998,29421,1079,1091,1092,1137,20908,1364,1457,20909,1483,1511,1525,1543,1594,1610,1615,1645,20911,20912,20913,2026,2098,2139,2151,2163,20914,2070,20917,2687,2822,2863,2975,20918,1209,12209,3127,14774,3171,3181,3237,3310,3445,3467,6042,3519,30172,30174,3560,3730,20921,1153,4135,20922,20924,20925,20928,18052,4449,20931,20934,20935,3348,4709,4715,4729,4745,4763,33069], +"is-nan", +[0,20937,200,20938,6599,20940,2109,20863,14609,20943], +"object-is", +[1,2343,13637], +[0,13639,13640,13641,34352], +"array-fill", +[0,20948,1437,1707,20949,20951,1997], +[0,4255], +[0,4051,3383], +[1,2343,13643], +[0,13644,13645,2514,2523], +[0,4864,9129,20959,2151,20960,4648], +[0,4874,4039,4384,91], +[1,2343,13647], +[0,0,13640,13649,2523], +"fn.name", +[0,2117,1781,3033,20966,4237,3048,3639], +[1,2343,13654], +"is-buffer", +"propget", +"pruddy-error", +[0,13655,13658,13659,2523], +[0,1676,1865,2151,1209,4449], +"shouldjs", +"unit testing", +[0,2899,4039,4255], +[0,18503], +[1,2343,13661], +[0,0,13670,13675,2537], +[2,1176,3178], +[2,1218,5702], +[3,1267,18], +[2,13664,6836], +[3,1955,17], +"fer-arrow", +[2,13666,13667], +"native-", +[0,53,78,14167,87,20978,4864,4865,5087,11301,4874,19802,1245,1457,1596,2151,2070,1192,1894,4039,4042,4045,20981,20983,4075,4072,4468,4474,4484,91], +"promise-only", +[2,13669,13671], +[3,4064,15], +[2,13673,2306], +[0,5284,9302,9026,1666,6901,3811,20986], +"jstz", +[1,2343,19602], +[0,20991,1437,2087,2727,2983,3368,15245,3741,4135,4247,20992,13914], +[0,1429,1596,1177,2759,20995,2899,3697,3752,4193], +[3,8155,10], +[0,20997,20998,8891,20999,2978,4166,16159,21000,3005,12804,21003,21004,2703,6599,14692], +"listen", +[1,2343,13684], +[0,0,0,13685,2537], +[0,13326,200,20052,17180,2124,3497,998,6591,4354,16790,5284,676,21009], +[1,2343,13690], +[2,13689,25388], +"then-sleep", +[3,20626,11], +[0,13691,13692,13699,2443], +[0,6372,21020,21016,3561,4383], +[0,53,87,6371,28962,28963,1009,1011,1165,1195,1587,1593,1610,1628,1630,1637,1177,1895,1955,21023,2092,12278,3177,3400,1894,21024,9348,4172,4230,4307,4409,4469,91,2924,4677,4681,21026,4749], +[2,54,202], +"@pika/pack", +"pika-plugin-build-web-babel", +[3,13695,12], +"ts-types", +[2,13696,13697], +[0,2128,91,5284,2924,1936,1623,12951,21028,4380,21029,21031,21033,21034,21036,21029,21037,21038,21039,21040,21042,21044,21047,21050,21052,21054,21057,21060,1177,1894,17526,1999,5811], +[1,2343,13701], +[0,13702,13703,13704,2537], +[0,1149,4707], +[0,3421,1776,2899,4170], +[0,21067], +"ttc", +[1,2343,13707], +[0,13708,13710,13714,2537], +[0,21072,2081], +"libnpx", +[0,53,1195,18228,1700,2323,2338,2396,2409,2494,2541,2700,1192,2780,3427,89,21074,3824,4603,2924,18237], +"node-cleanup", +[2,3382,6698], +[2,2103,9478], +[0,2130,89,3497,21077], +[1,2343,13717], +"audit", +[0,0,13718,13719,2537], +[0,1537,1177,2026,21082,2899,3421], +[0,27,2671,1002,7436,5576,7426,6435], +[1,2343,13724], +"parse-", +[3,9577,10], +[2,13721,13722], +[0,0,0,13726,34352], +[2,1199,4037], +[0,2414,7176,8220,1017,2414,1367], +[1,2343,13731], +"automatic", +[3,1446,9], +"commits", +[0,13732,13733,2514,2443], +[0,18986], +[0,5517,13614,23237,27570,19325,1159,1177,3410,3421,4389], +[1,2343,13737], +"detect", +"detective", +[0,13740,13741,13742,2443], +"detective-es6", +"sync-exec", +[0,1149,21097,1496,21098,1512,3188,4709,21099,21100,3722,1543,2015,3427,21102], +[0,1429,4616,2899,1177,3220,21104,705,1894,21106,1895,1955], +[0,200,21110,21111,2041], +[1,2343,13744], +[0,13745,13747,13748,4139], +[0,51,1437,1457,1595,1699,2151,3144,3181,21118,4121,4135,4388], +"fraction.js", +[0,5467,16607,21120,6065,16608,16612,19861,21122,4864,5087,8818,9129,6541,4874,20959,5254,1009,1011,1529,1610,1177,1938,1954,1955,10619,2675,1192,21124,2784,2845,21125,2990,3203,1894,4039,4131,4294,4468,91,2924], +[0,2924,1932,91,21127,4469,2924,20050,2062], +[1,2343,13750], +[0,13751,13752,13761,2523], +[0,13922,1437,1457,1209,3170,3181,814,4388], +[0,21134,16933,4870,8778,9129,4874,5251,4891,1429,1628,1177,2675,2759,2990,2899,3203,3210,1894,4039,4193,4469,4487,4490,91,188,4629,4634,4645,2924], +"@vercel/nft", +"arrgv", +"site", +"sites", +"callsites", +"cbor", +"chunkd", +"ci-parallel-vars", +[0,2924,1932,91,998,16790,9654,20050,2062,6887,4469,1167,21136,1464], +[1,2343,13766], +"code-excerpt", +"path-prefix", +[2,9480,13764], +[0,13776,13779,2514,2487], +"concordance", +"curr", +"ently-unhandled", +[2,13768,13769], +"emitter", +"emittery", +"ignore-", +"by-default", +[2,13773,13774], +[0,21141,21144,13917,2571,3173], +"matcher", +[2,9477,1541], +[0,13614,1159,1389,21146,1596,1615,1177,21147,21148,2141,2708,21152,2759,26259,21153,14133,3697,3758,705,4039,4135,4389], +"resolve-cwd", +[2,4250,594], +[1,2343,13783], +[0,13785,13787,13790,2537], +"supertap", +[0,3441,21158,24987], +"temp-dir", +[0,2934,3421,1192,1177,4042,2026,1894,4342,21163,1938,5328,1895,1955,811,21165,1881,816,21161], +[3,5328,14], +[2,13788,2190], +[0,15237,1669,2382,3767,21167,1781,21168,2090], +"🦄", +[3,1540,10], +"yield", +[1,2343,13797], +"observable", +"observables", +[0,13798,13799,13800,34352], +[0,5540,1699,2609,1209,3021,21174,21175,4484], +[0,972,4870,4880,4883,11322,21179,89,3824,21180,91,6482], +[0,2144,1669,25,89,3824,582,21182,7020,21185,7020,21188,21189], +[1,2343,13803], +"webpack-log", +[0,0,13806,13807,2487], +[2,3599,1469], +"ps-node", +[0,2899,1177,2759,1317,1311,1954,1938,1958,1903,1948,1970], +[0,2145,27,21195,2325], +[1,2343,13809], +[0,13810,13813,13815,2537], +[0,1437,6473,4290], +"ieee754", +"jmespath", +[0,1175,1178,1195,1225,1268,1177,1916,2022,1192,3150,2924], +"vector", +[0,17460,2656,2924,1932], +"test-vectors", +[2,13549,13816], +"insert-module-globals", +[1,2343,13820], +[0,13821,13822,13823,2537], +[0,2822], +[0,1377,21210,1596,2759,4255,4389,4770], +[0,4745,21214,21216], +"memoizee", +"@deque/dot", +[1,2343,13844], +"colorjs.io", +"-regex", +"emoji-regex", +"abel", +"grunt-babel", +"revalidator", +"sri-toolbox", +[2,4149,1852], +"ytesize", +[2,2237,13835], +[2,6654,3733], +[2,1463,13589], +[2,1632,3679], +[3,8654,10], +"webdriverjs", +[2,13840,13841], +"browser-", +[0,13845,13851,13853,4139], +[0,2215,2859,21224], +[3,1566,14], +"ommits-parser", +[2,13846,13847], +"-no-only", +[2,1951,13849], +[0,21226,13305,3183,2899,3421,3752,21228,4255], +"Accessibility", +[0,2150,2090,6771,1585,7204,2473,3188,7148,7149,6899,1781,3917,6033,2473,6865,7293,4453,7147,2585,6811,7004,1862], +[1,2343,13855], +[0,13856,13858,13861,2537], +[0,3181], +"proxy-", +[0,4856,4864,6503,4874,1429,2151,2759,2899,3421,1894,3714,21237,4474,91], +"from-env", +[2,13857,13859], +[0,2150,6771], +"multi-", +[1,2343,13877], +"entry", +"multi-entry", +[2,812,13865], +[2,12621,3733], +"dev-null", +"data-node", +[2,1669,13869], +[2,11941,12942], +[3,6387,14], +[2,13872,6662], +[2,1160,11052], +[2,4049,13874], +[3,4048,16], +[0,13883,13884,13885,2537], +"ndle-size", +[2,13876,13878], +[2,6528,3069], +[3,13134,15], +[2,13881,1149], +[0,21243,2151,3261,21246], +[0,4864,6507,2899,1863,4085,1362,4706,3760], +[0,1862,2150,2090,6771], +[1,2343,13887], +[0,0,13893,13900,2523], +[3,1391,11], +[2,13888,3171], +"edm-parser", +[2,2842,13890], +"md5.js", +[0,640], +"batchflow", +"factor-bundle", +"ink-docstrap", +"karma-e", +"nv-preprocessor", +[2,13897,13898], +[0,2154,16718], +"storage", +[1,2343,13903], +[0,13904,13905,2514,2443], +[0,3188,4039,2713,2215], +[0,4384,4255], +[1,2343,13907], +[0,13908,0,13910,4139], +[0,4740,3923], +"output-", +[0,2156,5576,16410], +[1,2343,13915], +"file-sync", +[2,13909,13912], +"v8flags", +[0,0,13916,13918,2523], +[0,13614,1158,1159,1177,3421,4103,4389], +"es-set-tostringtag", +[0,3046,1213,1925,1460,5746,7298], +[1,2343,13926], +"babel-co", +"de-frame", +[2,13920,13921], +[3,1184,12], +[2,13923,591], +"babel-m", +[0,0,13929,13931,2537], +"essages", +[2,13925,13927], +[0,48,53,68,78,5712,87,92,192,5467,21276,5583,816,6373,21279,21280,21281,21285,19464,21287,21288,1195,1177,1895,2675,21290,1894,4005,4042,4057,4257,4072,91,1984,19469,21294], +[2,1185,5190], +[0,2163,7193,21296], +[1,2343,13933], +[0,0,13934,13935,2443], +[0,19344,5366,1009,1011,842,1317,1177,1903,1915,1938,1953,1958,2675,4493], +[0,17218,5122,27,36,21302,5995,5130], +[2,1884,1172], +[1,2343,13938], +[0,0,0,13939,4139], +[0,2163,7193,7131,21307,21309], +[1,2343,13941], +[0,13943,13944,13945,2487], +"trim-right", +[0,21315], +[0,1149,2228,21317,2240,2273,2277,4039,1899], +[0,2282,2070], +[1,2343,13947], +[0,0,13949,2514,2487], +"try-resolve", +[0,91,4874], +[1,2343,13951], +[0,13952,13953,13954,2523], +[0,1437,4761,4716,4756], +[0,2228,2239,21329,21328,3006,4547,2273,2290], +[0,4756,8632,5130,4627,6400,1896,1098], +[1,2343,13956], +[0,13957,13958,13959,2523], +[0,1437,4207,4761,1209,16442,4756,4547], +[0,3261,1797,1429,1370,2899,4193,1177,3188,1362,2759,1525,4196,1615,2820,1431,3938,3202], +[0,4756,1098,2323,21337,21339,1367,1103,21340,2278,695,5194,1172,21341,91,1509,2437,5357,2924,1177], +[1,2343,13962], +[2,1262,1192], +[0,13963,13964,13965,2537], +[0,2212,2070,4761,1541,1209,1474,21350,21348,4756], +[0,1797,1177,2765,2151,21329,21328,1938,21352], +[0,4756,8632,4967,1896,2171,4627,13017,21354], +[1,2343,13967], +[0,0,13968,13969,2523], +[0,4874,1177,1895,1955,1958,1894,4384,91], +[0,4446,21360,6925], +[3,13725,15], +[1,2343,13972], +[0,0,13973,13974,2399], +[0,5536,4874,16480,26265,1894,4172,21365,91,1984], +[0,5701,1179,7253,21367,21369,6564,3053,6695], +[1,2343,13976], +[0,0,13977,2514,2443], +[0,48,53,87,92,6061,6063,16608,5087,4874,1009,1011,21377,21380,1178,1193,1195,19254,1177,1895,1915,1922,1938,1955,1959,1961,1966,1982,2675,21385,1192,2990,1894,4039,4131,21388,91,2924,4677], +[1,2343,13979], +[0,0,13986,2514,2537], +[3,1235,24], +"xport-extensions", +[2,13980,13981], +[2,1262,3696], +[3,1566,13], +[2,13984,2289], +[0,21393,21395,21396,21397,3421], +".exports", +[2,1237,13987], +[1,2343,13990], +[0,0,8002,13991,2523], +[0,1709,2100,139,3560,6058,21402,21404,1544,3445,11995,21405,20529,3778,21406,21407], +[1,2343,13993], +[0,0,13999,14001,2537], +"-js-shims", +[2,1259,13994], +"place-", +[2,13996,3427], +[2,1252,13997], +[0,4874,1702,1906], +"dynamic", +[0,21413,2184,20061,5614,1398,3101,3729,3917], +[1,2343,14003], +[0,14004,14005,14006,34352], +[0,21418,2753], +[0,4874,1166,21420,21423,20925,4481,1906], +[0,3038,3101,1862,5614,1871,2585,1398,3917,2382,6613,7017,7255,3048,5614], +[1,2343,14008], +[0,14009,0,14010,2537], +[0,21430], +[0,2191,3038,91,2190,21432], +"@umijs/test", +[2,1262,12445], +[3,3909,10], +[2,14013,5403], +[1,2343,14016], +[0,0,14017,14018,2523], +[0,4874,1009,1011,17930,1177,21439,1895,1955,17931,21442,1894,17934,4508,91,17936], +[0,21444,21447,21450,21452,21455,21456,2192,21457,21458,16718,21459,202,5490,553,91], +[1,2343,14026], +"nyc-config", +[2,3614,14020], +[2,8696,14021], +"instrument", +[2,11936,14023], +[2,1382,6521], +[0,14028,14030,14031,4139], +"pmock", +[0,1149,2205,2151,1525,18145,2102,21466], +[2,14023,5218], +[0,4449,1429,2899,4193,1177,21468,21470], +[0,3358,2193,2195], +[1,2343,14033], +[0,14036,14043,14046,2523], +[2,9477,1213], +[2,4013,14034], +[0,7076,10420,21476,21477,3505,16142], +"-bind", +[2,3046,14037], +[2,69,14038], +[3,8232,20], +[2,14040,6859], +[2,5316,7162], +[0,1178,1429,21480,1503,1527,1652,1177,21482,1922,1938,1951,2899,3203,3421,3752,4131,4193,4196,21486,4585], +"ompat", +"lodash-compat", +[0,3358,582,1564], +"cherry-pick", +[1,2343,14049], +[0,0,14050,14051,4139], +[0,13693,87,21495,21498,21499,8850,816,6373,10615,10895,1429,1177,1903,1938,1954,1958,2297,2878,2881,2886,2895,2900,2904,2910,2912,2918,18260,2899,4042,6390,2278,4193,4196], +[0,2195,10039,4967,4627], +[2,13920,686], +[2,2103,14052], +[1,2343,14055], +[0,14058,14060,2514,2537], +"resolver", +"rename", +[0,3181,21505,21507], +"mapping", +[0,4874,668,3144,3188,1894,4039,4384,4483,4508], +[1,2343,14062], +[0,14063,14066,14067,34352], +[0,2743], +"ester", +[2,12187,14064], +[0,1177,1889,2022,2899,3421], +[0,2070,5933,4301,3403,21519,7204,1299,21520], +[1,2343,14069], +[0,14070,9264,2514,4139], +[0,21526,3729], +[1,2343,14072], +[0,0,14073,14074,2537], +[0,22839,1166,1448,1939,2182,26260,17269,3401,3471,3758,4167,4481,4507,1906], +[0,2203,2202,7014,6436,6437,2272,1177,6640], +[1,2343,14081], +"remap-", +[2,14076,1223], +[2,1185,14077], +[3,13663,26], +[2,14079,5746], +[0,14082,14083,14084,4139], +[0,20033,2071,2687,17450,4207,20789], +[0,4874,1166,1317,21539,4400,4481,1906], +[0,12101,4552,17455,18132,1586,17462,7131,2100,21541,17453,2150,2070,21543,21544,17461,3529,13777,3181,3250,15294,18104,13017,11601,100,614,6435,21520,21545,1862,16774,3358], +[3,1184,14], +[2,14085,5789], +[2,1218,1229], +[1,2343,14089], +[0,14090,14091,14094,2443], +[0,1676,1615,21552,21550], +[0,1149], +[3,1217,21], +[2,14092,5610], +[0,11812,21555,158,21556,2692,2206,6270,17539,3797], +[1,2343,14096], +[0,14097,14098,14100,2537], +[0,3310,14231,4484], +[0,4874,5542,1009,1011,1177,21564,1938,1953,1958,1894,4508,91], +"chunk-data", +[0,21566,21567,21568,15473,17623,21571,5194,10906,2207,21572,21573,14692,21574,6355,21576,21577,21578,21579,21580,21581,21582,21583,5995,21584,21585,21586,21587], +[1,2343,14102], +[0,14103,14105,14108,34352], +[0,16485,21668], +"strict-", +[0,107,4874,1009,1011,21594,1177,1881,1883,1938,21597,20917,3297,1531,91,15822,1984], +"strict-mode", +[2,1226,14106], +[0,21600,21603,1885,21604,21599,21605,21606,5592,2211,21607,21608,21611], +[2,1218,77], +[1,2343,14111], +[0,14112,14113,14114,4139], +[0,20917,21616], +[0,21619,6503,21620,21621,4874,21623,15600,9725,11305,6513,6520,21625,21626,1414,1503,1610,2020,20914,2321,21627,1776,29342,29343,21630,2899,15221,3275,3297,3416,3445,3479,6332,1894,3752,4039,4153,4193,4449,91,4748], +[0,1885,5592,21632,5576,21633], +[1,2343,14116], +[0,14117,14118,14119,2523], +[0,21642,21651,21645,21647,21650,21649,16511,2928,21641,21638,21639,4507], +[0,21662,13789,826,5366,6494,4874,21654,14731,16936,6513,6515,1166,1170,1317,1362,1364,1414,14099,21656,21663,1701,1702,2024,2026,2139,13870,2188,3297,3310,3377,3477,21653,3532,29457,3923,705,4193,21657,4400,21659,4454,4494,91,1906], +[0,27,2671,13333,3038,2212,1002,12831,705,2869,7085,7289,1612,11995,11996,16518,21665,27778,27408,21666,21667,1170,4339,3310,21668], +[1,2343,14124], +"-react-jsx", +[2,9381,14121], +[2,1185,14122], +[0,0,14125,14126,2537], +[0,2323,4207,4042,1637,3471,3561,21689,21681,3416,3758,4320,53,1165,3678,2650,21688,87,21684,21679,5583,10615,6373,16912], +[0,21691,4967,9204,1283], +[1,2343,14134], +[2,88,2124], +[3,3872,10], +[2,14129,553], +[2,5237,14130], +[2,1199,14131], +"pkgfiles", +[0,0,14135,14136,2537], +[0,2702,3188,4039,4384], +[0,2150,1237,21697,1153,21699,3768,1851,2656,6737,21700,21701,21702,21703,21704], +"minification", +[1,2343,14140], +"propTypes", +[0,0,0,14141,4139], +[0,2220,21715], +[1,2343,14143], +[0,2513,14146,2514,2523], +[3,3957,12], +[2,14144,353], +[0,4856,6503,4874,1429,2220,2899,4039,4042,4071,4232,21721,91], +[1,2343,14148], +[0,14149,0,2514,34352], +[0,5528,4484], +[1,2343,14151], +[0,14152,14153,14154,4139], +[0,2822,20273,21731,21732], +[0,21734,20269,1509,21735,2053,2149,2398,3183,2899,4452,4597,6033], +[0,21738,1507,1506,2382,1739,1745,7682,21740,4965,2149,9339,8623,1179,2193,12981,5284,5352,676,6671,1783,9338,1644,57,7119,13755,2947,1283,4452,4745,7651], +[1,2343,14156], +[0,14165,14171,2514,34352], +"numer", +"ic-separator", +[2,14157,14158], +[2,69,14159], +[3,5835,33], +"mutators", +[2,14161,14162], +[3,10720,33], +[0,14393,21746,3025,10420,3263,3747], +"atch-binding", +[2,14164,14166], +[3,14160,25], +"llish-coalescing-operator", +[2,14168,14169], +[0,1364,21748,2026,21749,2759,1209,3183,3313,21752], +[1,2343,14173], +[0,14174,14175,14176,2443], +[0,2021,2070,3368,2822,2240,3181,1672,2685,2107,2015,21761,21763,21759], +[0,21765,4431,21770,2291,21768,2283,2277], +[0,5957,1149,200,3178,2280,6147,1209,2275,1973,2907,2276,36,21772,8632,7048,2763,4990], +[3,9676,14], +"heck-", +"es2015-", +"constant", +"constants", +[2,14179,14181], +[2,14178,14182], +[2,14177,14183], +"function-", +"comma", +"commas", +[2,14185,14187], +[2,10038,14188], +[2,7174,14189], +[2,1218,14190], +[2,1236,5742], +[3,1235,40], +"ed-functions", +[2,14193,14194], +[2,1236,5256], +[3,14196,31], +[2,14197,5763], +[2,1236,5765], +[3,14199,31], +[2,14200,5770], +[1,2343,14225], +"for-of", +[2,1236,14203], +[3,14204,31], +[2,14205,5789], +[2,1236,5796], +[3,1240,38], +[2,14208,5808], +[2,14208,4376], +[2,14208,5811], +[2,3425,4340], +[2,1236,14212], +[2,1236,5639], +[2,1236,5845], +[3,14215,31], +[2,14216,5849], +[2,14216,5851], +[3,1244,31], +[2,14219,5855], +[2,5857,1108], +[2,1236,14221], +[3,13982,27], +[2,14223,5780], +[0,14228,14229,14230,2523], +"to-chromium", +[2,1807,14226], +[0,2633], +[0,2228,2240,2263,2247,2253,2273,2277,2281,2320,2258], +[0,21779,1098,1283,5354,5614], +"gfsl", +[1,2343,14233], +[0,0,14234,14235,2537], +[0,2228,2307,2239,2316,1429], +[0,21779], +[1,2343,14244], +[2,1262,2124], +[2,1249,5878], +"-source", +[2,1248,14239], +[3,14240,34], +"elf", +[2,14241,14242], +[0,14245,14246,14247,34352], +[0,1149,1389,21791,2070,1209,814,4650], +[0,2228,2240,2247,2273,2899,4193], +[0,21779,1389,2228], +[3,5700,31], +[2,14248,3164], +[1,2343,14251], +[0,14252,14253,14235,2487], +[0,4135], +[0,2228,2234,2247,2273,2277,2285,2307,3006], +[3,1233,24], +"o-expressions", +[2,14254,14255], +[2,1226,14038], +[1,2343,14259], +[0,14260,14261,2514,2537], +[0,3368,21804,13914,2727,21759], +[0,2228,2273], +[3,1230,29], +"or-call", +[2,13565,14263], +[2,14262,14264], +[1,2343,14267], +[0,14268,14269,14271,2523], +[0,1149,1144,21810,2709], +[0,1906,2228,3363,2240,1615,3505,21814,4351,2316,2247,2283], +[3,1233,33], +[0,21779,13792,12804,21820,6707,6887,3514,6681,2062,21821], +[1,2343,14273], +[0,14274,14277,14278,2399], +[0,1149,4039], +[3,1225,29], +[2,14275,5747], +[0,2228,21468,2273,2271,2277], +[0,21779,4050,4051,7293,6865,1700,6790,17459,4039], +[1,2343,14280], +[0,14281,14283,14284,4139], +[0,1149,21834,1664,21420,4449,4707], +"home-or-tmp", +[0,2228,2240,2247,2271,2273,2277,2314], +[0,21779,21837,4329,2278,1623,7234,7121,590], +[1,2343,14286], +[0,14287,14288,14235,2537], +[0,1437,4227], +[0,2228,2247,2273,2271,2277], +[1,2343,14290], +[0,14291,14292,14293,2537], +[0,3445,1149,3237,1544,13399,4150,4151,16511,21847], +[0,2228,2273,2271,2277], +[0,21779,36,1544,27], +[1,2343,14295], +[0,14296,14297,14235,2537], +[0,1437,21855], +[0,2228,2240,2247,2271,2273,2277], +[1,2343,14299], +[0,14300,14302,14303,2523], +[0,1437,21861,1209,4300], +"esutils", +[0,2228,2247,2271,2273,2277], +[0,21779,1623,671,21861], +[1,2343,14305], +[0,14306,14302,14312,4139], +[0,1437,1462,21867], +"nv-inline", +[2,4690,14307], +[2,1226,14308], +"zipobject", +[2,3024,14310], +[0,21779,21869,1623,590,592,5376,3178,15215], +[1,2343,14314], +[0,14315,14288,14321,2537], +[0,1437,3714,2633], +[3,14257,24], +[2,9428,5238], +[2,14316,14317], +"9.0.0", +[2,5857,14319], +[0,21779,1936,2262,3178,15215,6707], +[1,2343,14323], +[0,14324,14325,14326,4139], +[0,1437,2267,3478,3545,3714,18045,18047,18050,18051], +[0,1166,1701,2228,1906], +[0,21779,15215,20639,158,11807,21881,20637,3178,18048,8221], +[1,2343,14328], +[0,14329,14261,2514,2523], +[0,17523], +[1,2343,14331], +[0,14332,14335,14235,4139], +[0,1437,21890,2272], +"@purtuga/esm-webpack-plugin", +[2,4807,1155], +[0,2228,2271,2277], +"browserstack", +[2,13283,14336], +[2,13283,3199], +"otpauth", +[1,2343,14341], +[0,14342,14345,14235,2487], +[0,695,1149,1437,1209], +"-as-a-service", +[2,5995,14343], +[0,2228,2247,2273,21898,2271,2277], +[1,2343,14347], +[0,14348,14349,14350,2487], +[0,21903], +[0,2228,2247,2271,2273,4384], +[0,21779,2276,1973,8791], +[1,2343,14353], +[2,2235,1283], +[0,14358,14302,14359,4139], +"codec", +"decoder", +"encoder", +"base64", +[0,1149,1437,1615,1664,4707], +[0,21779,4329,2278,1623,7234,7121,590], +[1,2343,14361], +[0,14362,14288,14235,2537], +[0,1437,21867,21915,4535], +[1,2343,14364], +[0,14365,14366,14367,2487], +[0,2164,1149,1209,4438], +[0,2228,2240,2293,4547,2273,2271,2277], +[0,21779,2282,3000], +[1,2343,14369], +[0,14370,14371,14376,2537], +[0,1437,1537,1566,3545,3760], +[0,2228,2239,2240,2247,2258,2273,2277,2290,21929,21930,2293,2307,3006], +"basic", +"orization", +[2,1303,14373], +"basicauth", +[0,2228,21779,1566,16094,13729,3073], +[1,2343,14378], +[0,14379,14381,14382,2399], +[0,1437,13985,3545], +[2,6915,5697], +[0,2228,2239,2240,2247,2273,2277,21929,21942,21930,2293,2307,3006], +[0,2228,21779,13985,2195,21944,3979,21945,1566,16094,13729,3073], +[1,2343,14384], +[0,14385,14389,14390,2523], +[0,1437,1177], +"tructure", +"ministructure", +"orange sms", +[0,442,2228,2240,2314], +[0,21779,1177,671,2649,11937], +[1,2343,14392], +[0,14394,14395,14396,2537], +"@mapbox/node-pre-gyp", +[0,21890,2292,1209,21956], +[0,2228,2273,2277,3006,4436], +[0,21779,2292,19271,16790], +[1,2343,14398], +[0,14399,14400,14401,4139], +[0,1615,1776], +[0,2228,2247,2277,2291,13896,3006], +[0,21779,2228,1745,2295,1776,18011], +[1,2343,14403], +[0,6203,14409,14410,2443], +"utfx", +"testjs", +"metascript", +"closure", +[2,14407,4643], +[0,192,21970,5467,6061,6063,16608,1177,1903,1938,1954,1958,1970,2025,2228,2239,2283,2285,2290,2291,2307,2675,2297,2881,2895,2900,3006,2899,4131], +[0,21779,2297,2228,1973,2275,8791,21972], +[1,2343,14412], +[0,14414,14415,14420,2399], +"pomelo-logger", +[0,21890,3188], +[0,1429,1506,2228,2240,21980,2247,2258,2273,21929,21982,21930,21984,2899,4039], +"di", +"IoC", +"AOP", +"injection", +[0,21779,2899,1973], +"consistent", +"hot reload", +[2,6399,5995], +[1,2343,14434], +"able codes", +[2,6578,14425], +[3,7191,11], +[2,14427,14419], +"hronous script loading", +[2,1149,14429], +"magic", +", self-described javaScript objects", +[2,14431,14432], +[0,14274,14435,14436,2399], +[0,1429,2228,21991,2240,2247,2273,2283,3203,4449,4727], +[0,1586,2228,21779,2301], +[1,2343,14439], +"beautify", +[0,14440,14441,14442,2443], +[0,4135,6472,4707], +[0,1429,2240,2273,2283,2300,22000,22002,3006,2899,3752,4436], +[0,21779,9044,22005,15844,22008,22009,6667,22011,1851,4649,13728], +"art-near-room-catch", +"blanket-line", +"born-greatly-explain3", +"bring-water-silence", +"brush-bigger-afternoon0", +"e-meet-war", +[2,11308,14448], +[2,6922,14449], +"compare-", +"breeze-mad2", +[2,14451,14452], +"did-", +"strai", +"ght-sister-sail", +[2,14455,14456], +[2,14454,14457], +"excitement-tonight-dead", +"gain-pleasant-prepare", +"industrial-public-immediately-until", +"is-str", +"aight-web3-attack", +[2,14462,14463], +"known-", +"wet-thirty-gave", +[2,14465,14466], +"-private-thee6", +[2,13682,14468], +[1,2343,14493], +"mainly-cent", +"ain-quarter-sit8", +[2,2944,14472], +"mouse-bat-web3-present", +"need", +"s-supper-anything", +[2,14475,14476], +"percent-impossible-score", +"rocket-location-calm-valley", +"seldom-fire-web3-running", +"shad", +"e-swim-shells1", +[2,14481,14482], +"spider-melted-chemical", +"stre", +"tch-onto-driver7", +[2,14485,14486], +"dream-supply5", +[2,11072,14488], +"-invented-girl-jungle", +[2,4990,14490], +"we-hunt-process", +[0,0,14494,2514,2399], +[0,2228,2239], +"automobile7", +[2,4654,14495], +"whether-dangerous", +[1,2343,14499], +[0,0,14500,14501,2523], +[0,2228,2240,2247,2277,2278,1906], +[0,21779,1623,2278,4329,590,7234,4358,22022], +"ansicolors", +"global-", +[2,14503,6666], +[2,2103,14504], +[2,2687,11601], +[3,5510,9], +[2,14507,3101], +"script-", +"inject", +"injector", +[2,14509,14511], +[1,2343,14516], +"dotpathlookup", +"jsl", +[0,14519,14520,14521,2537], +"httpserver", +[2,2869,14517], +[0,1512,1209,3760,22027,22031,12826], +[0,2228,2256,2273,2283,2293,22035,3003,1698,20001], +[0,21779,2228,12826,1973,2765,2899,2907,22037], +[1,2343,14523], +[0,14524,14525,14526,2443], +[0,1437,3404,4294], +[0,2228,2240,1906], +[0,21779,4166,1523,8429,2978,1614,1451,3729,200], +"docdown", +[1,2343,14530], +"qunit-extras", +[0,7923,14531,14420,34352], +[0,2228,2273,2899], +[1,2343,14533], +[0,14534,14535,14536,2443], +[0,1149,22054,22057,4545,22058], +[0,1177,22062,22064,22066,22068,22071,22072,2228,2240,2302,2899,4039,4165], +[0,2228,21779,22074,158,22075,1623,22057,16697], +[1,2343,14538], +[0,14539,14540,14541,2537], +[0,1437,1676,1209,3505], +[0,2228,3188,4039,2240,2293,22081,2273], +[0,21779,2319,8635,1936,1623,6707], +[1,2343,14543], +[0,14549,14551,14565,2523], +"@beyond-js/specifier-parser", +[3,14544,11], +[2,14545,2150], +"bee", +[2,14545,14547], +[0,442,1009,1011,1437,1177,1895,1953,1955,2020,2720,2856,3157,3275,1894,4523,4728], +"tml", +[0,22088,21122,5601,4864,4866,22089,6503,21621,4874,6513,6520,22092,1414,1615,2151,22093,21627,2899,4193,4449,91], +"ansi-to-html", +"concat-", +"maps", +"-sourcemaps", +[2,5056,14555], +[2,14553,14556], +"json-format", +[3,6477,9], +"ackage-", +"ackage-path", +[2,14559,14561], +"uimport", +[2,14503,5260], +[0,91,9654,4525,1885], +"universal", +" javascript", +[2,14566,14567], +"universal ", +[2,14569,91], +[3,2758,10], +[2,14571,14567], +[3,14572,11], +[2,14573,91], +"sigle page", +"spa", +"modul", +"ar development", +[2,14577,14578], +[3,11615,13], +" frontend", +[2,3166,14581], +"micros", +[2,14583,8920], +"micro ", +"services", +[2,14585,14586], +"hot ", +" replacement", +[2,1237,14589], +[2,14588,14590], +"ssr", +" side rendering", +[2,36,14593], +" packager", +[2,91,14595], +"JAMStack", +[1,2343,14599], +[0,0,14610,14611,2523], +"real time", +[2,7519,5130], +"ssr react framework", +[2,8589,5130], +"ssr ", +[2,14604,14603], +" framework", +[2,3709,14606], +[2,14604,14607], +"websockets", +[0,22099,8719,842,16145,22100,5087,4874,22102,9240,1177,1192,3313,1894,4039,4342,91], +[0,2322,5122,5130,6710,27,5592,5995], +[1,2343,14613], +[0,14618,14623,14624,2487], +"check-", +"check-types", +"hoopy", +"tryer", +[0,22110,21681,22109,4600], +"please-", +"release-me", +[2,14619,14620], +"spooks", +[0,1177,1889,1954,2022,3188,2899,3421,4039], +[0,6147,3101,623,7048,4990,14932,13441,22114,12804,22115], +[1,2343,14627], +"streamify", +[0,14630,14631,14632,2537], +"serialise", +[3,14430,12], +[0,2367,22122,2409,2835,3067,3102,19984,4431], +[0,4597], +[0,18444,2323,1098,12074,6113,22126,22127], +[1,2343,14645], +"arbitrary", +"precision", +"arithmetic", +"big", +"decimal", +"float", +"biginteger", +"bigdecimal", +[3,1325,9], +"bigint", +"bignum", +[0,14646,14647,14648,2537], +[0,18473,692,2012,2390,2494,22133,2543,3188,2072,3730,18528,4039,4135,1241,4597,4600], +[0,2348,2899], +[0,18444,16179,4166,22137,1804,2195], +"uri-", +[1,2343,14653], +"uri-to-path", +[2,2093,14651], +[0,14656,14657,14658,2537], +"gyp", +"c++", +[0,1165,2476,3561,4606], +[0,1166,2510,3477,4597,1906], +[0,18444,1165,3561,1623,3665,22145,5376,4358,22147], +[1,2343,14661], +"@noble/hashes", +[0,14662,14663,14664,2537], +[0,7709,1104,1443,2061,22153,3173,3544,4597], +[0,1429,22157,1177,2323,2494,2899,1894], +[0,18444,7200,6949,20001], +[1,2343,14668], +"@antv/", +[2,14666,4627], +[0,14670,0,14677,2537], +"@antv/g2", +[0,22167,22168,2012,3171,3730,3768,22170,4597,4600,4747], +"@antv/g2plot", +"@antv/util", +"@juggle/resize-observer", +"d3-color", +"conciler", +[2,3877,14675], +[0,18444,13531,20614,13901], +"data-", +"data-set", +[2,14666,14679], +[3,87,15], +[2,14681,1266], +"backgrounds", +[2,10818,14683], +[3,10827,19], +"fo", +[2,14685,14686], +"knobs", +[2,10818,14688], +"options", +[2,10818,14690], +"fabric", +"@umijs/fabric", +"@welldone-software/why-did-you-render", +"aphrodite", +[3,13080,20], +[2,14696,3897], +[2,14696,8221], +"bx-jest-electron", +[3,4325,12], +[2,6996,4408], +[2,14700,14701], +[1,2343,14704], +[0,14716,14722,14724,2487], +"-deploy", +[2,7204,14705], +[2,10617,14706], +[2,5651,2091], +"moment-", +"jalaali", +[2,14709,14710], +"react-wi", +"th-styles-interface-aphrodite", +[2,14712,14713], +[3,14714,28], +[0,4431,4002,3544,4606], +"mpiler", +"css-compiler", +[2,14715,14718], +"-diff", +[2,8745,14720], +[0,1906,2899,4597,3697,53,2510,5761,5756,5743], +"g2", +[0,18444,1172,5198,6778,7056,7192,22179,22180,5341,5061,22181,5284,4643], +[1,2343,14726], +[0,14727,14729,14732,2523], +[0,2476], +[3,4808,10], +[0,1166,2323,3477,4597,1906], +"dable-stream", +[2,14728,14730], +[0,18444,4295,1412,4327,3126,4577,22188,22189,22190], +[1,2343,14734], +[0,14735,14737,14740,2537], +[0,1104,1370,2061,2720,3544,4431,4597,4647], +"bun-types", +[0,1429,2012,22198,2436,2463,2272,2899,4039,4193,4196,4278], +"falafel", +"fore", +[0,18444,1370], +"foreach", +[1,2343,14746], +"coffee-", +[2,14743,89], +"save", +[0,14749,14750,14751,2523], +"save-license", +[2,4534,14747], +[0,1389,2541,1391,3923,4431], +[0,2899,1429,15052], +[0,18444,17461,1389], +[1,2343,14753], +[0,14754,14758,14760,2537], +[0,4431], +"curses", +"tui", +"tput", +[0,2899,4597], +"terminfo", +[0,2323,18444], +"termcap", +[1,2343,14763], +[0,14764,14631,14765,2399], +[0,22217,3544,22218,4135,4431], +[0,2323,15208,4135,18444,15525,22220,22222,22223], +[1,2343,14767], +[0,14771,0,14772,4139], +"ansi-term", +"drawille-canvas-blessed-contrib", +"map-canvas", +[0,97,22229,1593,22230,3544,4431,4597], +[0,18444,2323,2325], +"-terminal", +[2,3127,14773], +[2,3149,7046], +"picture-tuber", +"sparkline", +[1,2343,14779], +[0,14782,14786,14787,2537], +"term-canvas", +"x256", +[0,4431,3032], +"@types/bl", +"essed", +[2,14783,14784], +[0,2899,4597,4170], +[0,18444], +[1,2343,14789], +[0,14790,14791,14792,34352], +[0,22246,2476,4453], +[0,1166,1437,1700,2089,2188,2323,4597,1906], +[0,18444,2090,1586,22249,2301,22251,22253,15795,6901,22254,4262,2325,16077,22255], +[1,2343,14794], +[0,14795,7878,14796,2487], +[0,2061,3544,4039,4431,4597], +[0,18444,4050,7293,6865], +[1,2343,14798], +[0,14799,14800,14801,2487], +[0,1462,3544,4431,4606], +[0,1429,21480,1596,2026,2061,2323,2367,2494,2504,2510,2899,3421,4597], +[0,1623,4050,3178,2280,1462,2458,2459,2361,18444,17461], +[1,2343,14803], +[0,14804,14805,14787,2399], +[0,1509,3544,4002,4431,4606], +[0,2510,2899,4170,4597], +[1,2343,14807], +[0,14808,14809,14810,4139], +[0,2541,4431,4707], +[0,1596,1700,2323,2436,2444,2447,2455,2463,2685,22280,3102,2899,4170], +[0,2323,18444,21837,4329,2278,1623,7234,7121,590], +[1,2343,14812], +[0,14813,14814,14787,2537], +[0,4597,4431,14557], +[0,2323,2899,4170,2759,16584,4278,2510,3202], +[1,2343,14816], +[0,14817,14818,14819,2537], +[0,3032,22291,3544,22292,22293,22296,4431,4597], +[0,1429,2899], +[0,18444,5614,1623,1204,1698,134], +[1,2343,14821], +[0,14822,14818,14823,34352], +[0,4431,2541,2720,1687], +[0,18444,8635,22303,22304,8622,8620,22306], +"loop", +[1,2343,14826], +[0,14827,14828,14831,2537], +[0,710,1544,4438,2061,3102,1104,4150,4151,21847], +[0,2323,2899,4342,2515,1506], +"baconjs", +"kefir", +[0,17461,1544,3000,22313,36], +[3,3736,10], +[3,3736,14], +"deferred", +"deferreds", +"future", +" control", +"flow control", +"dsl", +[2,8553,6072], +[1,2343,14842], +[0,14843,14844,14845,2537], +[0,4431,3544], +[0,2323,1192,1894,21482], +[0,18444,1585,2323], +"BN", +"Big number", +"BigNum", +"Modulo", +"Montgomery", +[1,2343,14852], +[0,14853,14854,14857,2537], +[0,1104,22324,2061,3544,4431], +[0,2272,2899,4597], +"unpipe", +"destr", +[0,18444,1623,22324,671,9654,7121], +"destroy", +[1,2343,14860], +[0,14861,14862,14863,2537], +[0,4597,21861,22331,4431,2061,3544], +[0,3421,2899,4193,1177,4039,4170,1596,22333,22334,1958,1903,1970,1900], +[0,21861,18444], +[2,1601,1851], +[1,2343,14866], +[0,14867,14870,14875,2537], +[0,1637,16136,3544,3427,4606], +"-jsdoc-theme", +[2,1365,14868], +[0,4389,4597,4387,2510], +"postgre", +"sql", +"postgresql", +"datamapper", +[0,1637,3178,14137,16918,16919,1623,18444,3561], +[1,2343,14878], +"active record", +[0,14879,14880,14881,2537], +[0,16858,3544,4606], +[0,4389,4597,4387], +[0,18444,3178,1623], +[1,2343,14883], +[0,14884,14885,14886,2523], +[0,3544,4431,20992], +[0,2272,3760,4170,4597], +[0,18444,2382,1781,2323], +[1,2343,14888], +[0,14889,14890,14891,34352], +[0,1177,2061,3544], +[0,2323,2899,4597,4170,2759,1178,22360,22363], +[0,18444,1177,2323,2656,22365,4354,4225,1501,4525,676,5284,5957,671,1932], +"mincer", +[1,2343,14895], +"eyeglass-module", +[0,14896,14897,14898,4139], +[0,2856,4597,2051,22372,4431,3544,1537,22371], +[0,2323,2899,4170,2759,1783], +[0,18444,2090,2385,4068,2323,1932], +[1,2343,14900], +[0,14901,14902,14905,2487], +[0,4207,3249,3544,22379,22382], +[0,1906,1166,2323,4597,3477], +"align", +"ansi-align", +[0,18444,7131,2687,2090,1586,3529,3181,2070,21543,4597], +[1,2343,14909], +"boxes", +"border", +[0,14910,14631,14911,2523], +[0,3544,4431], +[0,18444,19991,4237,20050,22390,22392,3053,2323], +[1,2343,14913], +[0,14843,14914,14915,2537], +[0,2323,2899,4597,4170,3697,1879], +[0,18444,2323,3033,10903,3403], +[1,2343,14917], +[0,14918,7923,14919,2537], +[0,22402,4001,21035,4431], +[0,14438,1671,4525,2323,18444,1783,5980,1932,22405,3721,4001], +[1,2343,14921], +[0,14925,14926,14928,4139], +"-stream", +"quote-stream", +[2,5706,1237], +[0,1437,2541,22410,22412,3427,7029,3545,4431], +[0,22414,3505], +[2,13888,353], +[0,18444,2156,22410,2090,1586,16410,20500,36,5576,9229,20997,20998], +[1,2343,14931], +"readFileSync", +[0,14933,14934,14935,2537], +"asset", +[0,22420,4039,4600,2541,22422,3923], +[0,2899,4597,1177,2759,22425,3349,2215,3074,22427,22428], +[0,3358,6645,1528,22430,20997,20998,20001,13755,5351,2323,18444,2193,1724,2195], +[1,2343,14941], +"array-equal", +[2,1379,1932], +"fs-tree-diff", +"heimdalljs", +[0,14945,14946,14947,2523], +[2,3192,1177], +"-lerna-changelog", +[2,3980,14943], +[0,22437,2061,1209,3544,4015,22440,4597], +[0,1177,2899,3210,4039,4170], +[0,2323,3358,22443,18444,22223], +[1,2343,14949], +[0,14950,14954,14955,34352], +[0,1104,1413,2061,3544,22449,4431], +[3,1378,10], +"ixture", +[2,14951,14952], +[0,2323,2359,2390,2447,2463,2494,18426,2544,2839,2899,22451,4170], +[0,15215,18444,16518], +[1,2343,14957], +[0,14958,14960,14963,2523], +[0,2036,3544,4002,4431], +"broccoli", +[0,4597,2323,2367,22460,22463,22465,2899,22466,4170], +[3,14953,15], +[2,14961,1289], +[0,18444,2036], +"multidep", +[1,2343,14966], +[0,14971,14972,14973,2537], +"ts-docs-gen", +"plugin-p", +[2,14968,11597], +[2,4491,14969], +[0,14557,1209,3102,4431], +[0,1429,2323], +[0,10345,18444,22475], +[1,2343,14975], +[0,14976,14977,14984,2399], +[0,1496,4207,1362,4599,3427,3923], +[0,2899,4597,2759,2541,22360,1537,22481,4603], +[2,1387,4219], +[3,14978,13], +[2,14979,181], +"bs-recipes", +"dev-ip", +"easy-", +[0,18444,1936,4068], +"easy-extender", +"eazy-logger", +[1,2343,14988], +[0,14989,14991,14993,4139], +[0,4431,3544,2633], +"resp-modifier", +[0,2323,2899,4597,2398], +"bs-snippet-injector", +[0,1671,2323,18444,22489,1936,2265,14137,2632,3178], +"-changelog", +[2,8623,14994], +[1,2343,14997], +[0,14999,15002,15003,2523], +"browser sync", +[0,8949,22495,18438,22497,22502,22379,22504,22505,22500], +"live reload", +"sync", +[0,2323,1192,1177,4039,22509,8719,1894,842,16145,442,1527,22512,91,22507,8712,22511,4523,1939,1895,1955,1652,1567], +[0,18444,2323,1017,2414], +[1,2343,15005], +[0,15025,15026,15029,34352], +"browser-pack", +[2,13843,814], +"zlib", +[2,13888,15008], +"d-pa", +"th-relative", +[2,15010,15011], +[2,2325,15012], +[2,10740,1389], +[2,14181,1617], +"defined", +"deps-sort", +"domain-browser", +"duplexer2", +"htmlescape", +"https-", +[2,15021,1389], +"ed-stream-splicer", +[2,5433,15023], +[0,4431,22518,22519], +[0,2899,2272,3188,4039,4170,4600,2215,1834,22522], +"-classic", +[2,3188,15027], +[0,18444,21195,22524,22525], +"module-deps", +"os-browserify", +"-es3", +[2,3767,15032], +"read-", +"only-stream", +[2,15034,15035], +"shasum-object", +"stream-b", +[2,15038,2345], +[2,4279,27], +"_decoder", +[2,1871,15041], +"subarg", +[2,9056,1851], +"rs-browserify", +[2,6901,15045], +"tty-browserify", +"vm-browserify", +[1,2343,15061], +"unpack", +[2,13843,15050], +"coffeeify", +"has-o", +"bject-spread", +[2,15053,15054], +[2,2565,1243], +"isstream", +[3,5747,18], +[2,3094,15058], +"seq", +[0,15062,15063,15065,2443], +[0,4431,22518], +[0,2272,2899,4170], +"commonj-esque", +[0,18444,7131,3181,2385,6521,2390], +[1,2343,15067], +[0,15068,15069,14787,2537], +[0,1149,1209,22536,4431], +[0,2206,2323,2359,2463,2447,4089,2839], +"exposify", +"mothership", +"-function-calls", +[2,14057,15072], +[1,2343,15075], +[0,15078,15079,15080,2537], +"peer-range", +[2,1382,15076], +[0,1437,2476,2267,3545,3714], +[0,1166,2694,24006,4597,1906], +[0,18444,2267,158,11807,20631,20632,3178,2632,15215,18048,20637,21881,20639,8221], +[1,2343,15082], +[0,15083,15089,14787,4139], +[0,1104,2012,2070,3544,4227,4296,4597,4606], +"leases", +[2,3340,15084], +[3,12361,13], +[2,15086,1747], +[2,9787,15087], +[0,2323,2510,2899,4170,4278], +"target", +[1,2343,15092], +[0,15093,15094,15096,2537], +[0,1144,4431,2061,1104,22555,3544,22449,1874], +[0,1906,2675,2899,4597,4170,22557,2012,192,4131,22559], +"base-x", +[0,18444,14510,22561,22562,3888,4017], +"ts-standard", +[1,2343,15099], +[0,15104,15106,15108,2537], +"base58", +"bitcoin", +"crytography", +"decode", +[0,22568,3544,4431], +"decoding", +[0,1178,1596,2012,2323,2384,2463,2899,3421,4597], +"litecoin", +[0,18444,134,1623,1936,1823], +[1,2343,15110], +[0,15111,15116,15117,34352], +[0,1664,2541,22576,3479,4431,4707], +[3,9366,12], +"d-transpile", +[2,6990,15113], +[2,15112,15114], +[0,1429,2899,4257,1906], +[0,18444,1370,3378,1161], +[1,2343,15119], +[0,15120,15121,15122,34352], +[0,2759,22584,1209,3544,4431,4606], +[0,2323,2463,2510,22588,2272,2899,4039,4597], +[0,18444,4504,2759,22590], +[1,2343,15124], +[0,15129,15131,15137,2399], +"acorn-", +[3,1200,14], +[2,15125,15126], +"acorn-jsx", +[0,2541,2437,4431], +"regexpu-core", +[0,2323,4384,2447], +[2,10740,7227], +[3,5583,16], +[2,15133,4047], +"262-stream", +[2,1973,15135], +[0,2437,18444,3101,7234], +"transpil", +[2,15138,5218], +[3,5221,11], +"esnext", +[1,2343,15143], +[0,15144,15145,15146,2399], +[0,1144,2765,22602,3544,4431], +[0,2323,4597], +[0,5982,5130,18444,2765,2907,8791,4386,4384,6969,1973,5472,2275], +[1,2343,15150], +"compatible", +"uint8array", +[0,15151,15152,15153,2537], +[0,2292,3544,4431,4435], +[0,4278,17468,4597], +[0,18444,2292,5284,5286,676,1501,590,2649,671,6892,4354,16790], +[1,2343,15155], +[0,15156,15157,14787,4139], +[0,1209,3181,3544,22331,4431], +[0,2323,2272,2899,4170,4597], +[1,2343,15161], +"-build", +[2,640,15159], +[0,15162,15163,15165,2523], +[0,1699,1707,2820,3544,4431], +[0,1177,1889,2323,2899,4170,4597], +"prebuildify", +[0,18444,2323,1781], +[1,2343,15167], +[0,15168,15169,15170,2523], +[0,695,3427,3544,4002,4431,4606], +[0,2272,2899,4170,4597], +[0,18444,2323,695], +[1,2343,15172], +[0,15173,15176,15177,4139], +[0,1437,1676,4597,4438,2061,3023,3923], +"built-in", +"bundled", +[0,2899,4193], +[0,18444,3000], +[1,2343,15179], +[0,15180,15181,15183,2523], +[0,22639,814,2061,3170,2107,22640,22638], +[0,2899,4193,1177,3752,22643,1953,1954,1938,1958,1903,1970], +"flexbox", +[0,17461,2323,3209,3001,9711], +[1,2343,15185], +[0,15186,15188,2514,2399], +[0,1462,2541,3427,3923,22649,4606], +[2,5581,10659], +[0,1429,2899,4597,1177,2759,2515,22360,2510,22651,22481,22428], +[1,2343,15190], +[0,15191,15195,15196,2537], +[0,16862,4431,2541], +"@sto", +"plight/yaml", +[2,15192,15193], +[0,1429,2323,2899], +[0,18444,3178,6707,16918,15215,1936,16862], +"mergician", +[1,2343,15199], +[0,15200,14729,15202,2523], +[0,1664,2020,2476,2899,4351], +"warn-if-update-available", +[0,18444,2899,1973,5472,2275,5130,8791,6969,5982,2907,4386,4384], +[2,4869,7059], +"err", +[1,2343,15206], +[0,15207,15209,15210,2399], +[0,22667,2070,3544], +"bump", +[0,1429,2323,2899,4597,1177,3203,21470], +[0,2323,18444,2301,22254], +[1,2343,15212], +[0,15213,14631,15214,2523], +[0,22675,1698,22676,3544,4431,4606], +[0,18444,1098,12074,10650,22676], +"compress", +[1,2343,15217], +[0,15218,15219,15224,2443], +[0,1512,2323,3363], +[0,1506,2447,2463,20047,2272,4170], +"dtrace-provider", +"mv", +[3,2854,14], +[2,4099,15222], +[0,2323,3363,22684,36,22687,20120,2282,17461,18444], +"ben", +[1,2343,15228], +"log4j", +[0,15229,15230,15231,2399], +[0,1209,4431,2061,1104,3357,3544,3330], +[0,2323,2899,4597,4170,2479], +[0,18444,22005,2323,9044,16237,22695,22696,22011,22699,15844], +"streamsearch", +[1,2343,15235], +"@mscdex/eslint-config", +[0,15238,15239,15240,2537], +"uploads", +[3,3253,9], +[0,18438,1437,22706], +[0,1166,3477,91,4597,1906], +[0,2323,1932,2474,6731], +[1,2343,15242], +[0,15246,15248,14787,34352], +"lxiv", +"hrtime", +[2,3715,15244], +[0,1437,4431,2061,3544], +"webrtc", +[0,1906,2323,2899,4170,4430,2759,1596,2012,3202], +[1,2343,15250], +[0,15251,15252,15254,34352], +[0,2061,3544,3616,4606], +[0,3421,2899,4193,4597,1177,3561,3752,2510], +"converter", +[0,18444,3561,22147,1623], +[1,2343,15256], +[0,15257,15259,15263,2537], +[0,4358], +"@bcoe/v8-coverage", +[0,2899,33479,30889,4597], +"ground-child", +[2,14739,15260], +"v8-to-istanbul", +[0,22726,1509,21195,1676,22729,6639,6521,22223,18444,1936,22727,22728,2385,5284,7121], +[2,1432,8746], +[1,2343,15268], +"v8", +"profiler", +[0,15269,15270,15271,2523], +[0,2012,2720,3067], +[0,1145,1177,22735,2720,2899,3752,4603], +[0,18444,3741], +[3,5738,22], +[2,15272,2528], +[1,2343,15280], +"@types/mri", +[2,13307,2831], +[2,4049,668], +[3,207,8], +"madr", +[0,15281,15282,15283,2399], +[0,2541,3427,3909,4431,4606], +[0,2510], +[0,18444,89,1219,353,8535,1283,5354,6624,22743,22746,7234], +[1,2343,15285], +[0,15291,15293,15295,2443], +"@fake", +"r-js/faker", +[2,15286,15287], +[3,1909,17], +[2,15289,91], +[0,2012,3357,705,4431,4597], +" cache", +[0,2323,2530,2359], +"multiple", +[0,18444,21004,22753], +[1,2343,15297], +[0,0,15298,14787,2399], +[0,2323,2510,3102,2899,1894,4170,4597], +[1,2343,15302], +"es-de", +"fine", +[0,15303,15306,15311,34352], +[0,4874,18438,4748,22762,17909], +"fine-property", +[2,15300,15304], +[0,2899,4597,4170,4474,19544,91,1537], +"-apply-helpers", +[2,2183,7083], +"-length", +[2,3609,15309], +[0,18444,4068], +"gopd", +[1,2343,15314], +[0,15315,15316,15317,4139], +[0,2476,22771,22772,22774,22776,4597,22778], +[0,1166,3477,1906], +[0,18444,22781,22782,22783,3428,6707,15525,22220,2325,22784,2947,14932,22785], +"camel", +"-case", +"camel-case", +"case", +"hyphen", +"separator", +"pascalcase", +[1,2343,15327], +"pascal-case", +[0,14910,15328,15329,2537], +[0,2012,2390,2498,2899,4597], +[0,18444,22781,22783,15525,4068,14932], +[1,2343,15331], +[0,15332,15333,15334,2523], +[0,1437,1573,1615,1664,22795,1874,2061,2070,8944,22798,3505,3544,4002,4039,4597], +[0,2323,2510,22778], +[0,18444,4329,2278,1623,7234,7121,590,22801,4227,11939,12938,4070], +[1,2343,15336], +[0,15337,15338,15339,2487], +[0,3527,4294,4002,3544,3028,4606], +[0,2323,2278,2899,4597,1177,4039,21315,3561,18426,3342,1165,2482,21688,2510,1938,1881], +[0,18444,2278,2323], +"assert-", +"rejects", +[2,15340,15341], +[1,2343,15347], +"graphic", +"pixman", +"cairo", +[0,15348,0,15349,2523], +[0,1149,2541,3427,7029,4247,4431], +[0,18444,22813,2090,1586,16410,20500,36,5576,9229,20997,20998], +[1,2343,15351], +[0,15352,15353,15354,2523], +[0,1437,2061,3067,3544,4431,4484], +[0,22821,22507,5087,22823,4874,18435,1009,1011,1596,1177,1895,1939,2323,1192,1894,4468,4474,91,4597], +[0,18444,2323,4166,1523], +" sensitive", +[2,15321,15355], +[1,2343,15358], +[0,15359,15360,15363,2399], +[0,22829,1437,2061,2476,2553,3714], +[0,1166,3477,4597,1906], +"slimerjs", +"scraping", +[0,18444,2098,2090,4202,3073,22832,3430,1676,16518,21665], +[1,2343,15365], +[0,15366,15367,15368,2537], +[0,22837,22841,1082,1573,1623,22843,20949,2215,4227,21732,4431], +[0,1367,1177,1889,2022,2323,2367,2419,2450,2455,22845,2759,22481,22848,2899,3427,4039,4597], +[0,18444,2323,22850,4070], +[1,2343,15372], +"loupe", +"pathval", +[0,15375,15360,15377,2537], +"check-error", +[3,6470,15], +[0,53,2476,22857], +[2,5474,13278], +[0,18444,4301,7293,6865,4050,1676,6782,7201,3073,6807,676,5284,5286,6892,2003], +[1,2343,15379], +[0,15380,14805,15381,2537], +[0,22863,3023,3544,4002,4333,4431,4606], +[0,2323,4333,1623,7121,18444,22223], +[1,2343,15383], +[0,15384,15386,15387,2537], +[0,3544,4360], +"chai-plugin", +[0,2070,2323,22871,2899,22872,4597,1906], +[0,18444,1017,45,8221,18048,22074,22075,2873,1179,1623,2278,695,4333,5376,134,1936,13814,22874,22875,3257], +[1,2343,15389], +[0,15390,15391,15392,2523], +[0,3028,3544,4361], +[0,48,53,87,94,1166,1596,1610,1701,3421,1894,4597,1906], +[0,18444,3178,8221,4361], +"strategy", +[1,2343,15395], +[0,15396,15397,15399,2537], +[0,1448,2061,3544,4597], +[0,2099,2323,2430,2899,3758,4151,4193], +"@debitoor/eslint-config-debitoor", +[0,18444,8221,1017,22074], +"objects", +"Subset", +[2,6792,15401], +"like", +[1,2343,15406], +"superset", +[0,15407,15408,15409,34352], +[0,2476,1209], +[0,1166,2383,4597,1906], +[0,18444,1209,4545,1283,7234,1936,8924,22894,22746], +[1,2343,15412], +"yoctodelay", +[0,15413,15414,15415,2537], +[0,1104,2061,4430,4597], +[0,22507,4874,22900,18438,20959,22821,4039,2323,2463,91], +[0,18444,91,5284,22902], +[1,2343,15417], +[0,15422,15425,15429,34352], +"docpress", +"git-u", +"pdate-ghpages", +[2,15419,15420], +[0,22821,1104,2061,3102,3544,4430], +"gulp-ava", +[2,2530,3020], +[0,22909,4874,22900,2323,2367,2529,4487,91], +"mersenne", +"address", +"dice", +[0,2323,91,1932,4799,18444,17461,4487,9654,671], +[1,2343,15431], +[0,15432,15433,15434,2537], +[0,4597,4431,4600,4227,1104,3544], +[0,2323,4039,22920,91,4874,2367,2409,18438,2479,3159,18435,18440,2510,22919], +[0,91,18444,22924,4799,11540,7234,4643,5197], +[1,2343,15440], +"param-case", +"kebab-case", +"header-", +"header-case", +[0,15441,15442,14787,34352], +[0,22639,2757,4431,4535,22930,22640,4100,2053,22933,4606], +[0,4389,4597,1177,1894,22941,4421,3696,22939,1907,1982,1895,1955,22937], +[1,2343,15453], +"c12", +"convert-", +"gitmoji", +[2,15445,15446], +[2,3310,4009], +"ofetch", +"pkg-types", +"scule", +"std-env", +[0,15454,12112,15455,2523], +[0,2541,3427,22946], +[0,17507,1623,18444], +[1,2343,15459], +"dogstatsd", +"@kurkle/color", +[0,15479,15485,15489,2523], +[2,812,14510], +"@types/o", +"ffscreencanvas", +[2,15461,15462], +"js-adapter-luxon", +[2,9816,15464], +[3,15465,16], +[2,15466,3220], +"chartjs-", +[2,15468,11017], +"chartjs", +[2,1884,15470], +[3,2912,13], +"launcher", +[2,5695,15473], +[2,15472,15474], +[3,4071,15], +"wc3", +[2,15476,15477], +[0,2070,2367,3544,4431,4597], +"charts", +"graphs", +"datadog", +"telegraf", +"native-run", +[0,2012,4600,2323,2447,2463,2530,2413,2361,2498,2450,2272], +[2,1448,11245], +"domhandler", +"domutils", +[0,18444,2319,2536], +"-sniffer", +[2,9254,15490], +"-tree-adapter", +[2,2653,15492], +[2,1868,15493], +[2,3493,15494], +"parse5-", +"parser-", +[2,15497,3101], +[2,15496,15498], +"whatwg-", +"mimetype", +[2,15500,15501], +[1,2343,15511], +"@imgix/js-core", +[2,7724,2220], +"hatwg-mimetype", +[2,7820,15506], +[3,1926,15], +"xpect-type", +[2,15508,15509], +[0,15513,15515,15516,2537], +[3,2654,10], +[0,2070,2051,22959,2419,4431,4600,2367,2012,3544], +"scraper", +[0,3421,2323,2899,4597,1596,22961,2463,2384,2494,1178,22963], +[0,18444,1936,3888,1623,6707,5614], +[1,2343,15518], +[0,15519,15520,2514,2487], +[0,22970,22971,22972,1437,1672,2061,22639,22640,22974,22979,22983,3067,3183,8949,3427,4002,4431,4597], +[0,1400,1596,2012,2759,22481,2272,22985,2899,4039,4170], +[1,2343,15522], +[0,15523,15524,15527,4139], +[0,3768,4430,4431,4597,4600,4753,22990], +[0,2899,4255,1241], +"version", +[2,813,15525], +[0,2323,18444,22990,22993,2056,7046,4597,2542], +[1,2343,15529], +[0,15530,15531,15532,2537], +[0,1104,15642,1457,2061,2200,3427,3507,3544,3923,4207,4597,22778], +[0,1596,2759,2899,3202,3752,4039,4170,4193,4278,4294,1906], +[0,2323,2282,18444], +"@better-scroll/core", +"add-", +"listener", +[2,12598,15535], +[2,1752,15536], +[2,15534,15537], +"-font", +[2,1456,15539], +[2,1625,7521], +[1,2343,15546], +"-converter", +[2,2275,15543], +[2,1625,15544], +[0,15552,0,15563,2537], +"dom-closest", +"dom-lib", +[3,1817,15], +[2,15549,2013], +"htmlhint", +[0,3150,4597,4430,2924,2541], +"insert-css", +"jsbarcode", +"jsonlint", +"jsonlint-mod", +"mutat", +"ionobserver-shim", +[2,15557,15558], +[2,3767,1289], +"-delta-to-html", +[2,3771,15561], +[0,18444,2924], +[1,2343,15576], +"eautiful-dnd", +[2,12242,15565], +"demirror2", +[2,3808,15567], +"asy-crop", +[2,11352,15569], +"lightbox", +[2,3608,15571], +[2,3838,15572], +"azy-load", +[2,12432,15574], +[0,15577,15581,15583,4139], +[0,1544,21847,2541,2756,3357,3445,23009,4150,4151,4431,4438,2282], +"react-quill", +"rmc-feedback", +"smooth-scroll-into-view-if-needed", +[0,2899,4342], +[3,5835,27], +[0,18444,22313,1544,3000], +"to-to-assign", +[2,15582,15584], +"demirror", +[2,4860,15586], +"lement-", +[1,2343,15593], +"resize-event", +[2,15588,15590], +[2,4861,15591], +[0,15603,15617,15620,2523], +"@types/faker", +"sert-css", +[2,9721,15595], +"barcode", +[2,7635,15597], +[3,7895,12], +[2,15599,2631], +"rcode.react", +[2,11304,15601], +[0,2188,2476,4597,22990], +"beautiful-dnd", +[2,4881,15604], +[2,4881,2741], +[2,4881,11167], +[2,6324,1456], +[2,5098,15608], +[3,15609,15], +[2,15610,7262], +[2,15610,89], +[2,15610,10631], +"tinker", +[2,1876,15614], +[2,6941,3841], +[0,1166,17279,22706,2323,3477,23017,22778,1906], +"mark-twain", +"rc-queue-anim", +[0,18444,2056,12666,1137,15215,1536,2090], +"croll-anim", +[2,11229,15621], +[3,11371,21], +[2,15623,1524], +"react-su", +"blime-video", +[2,15625,15626], +[1,2343,15631], +"scrollama", +"values.js", +[0,15636,15638,15639,2523], +"vfile-message", +"-warnings-plugin", +[2,7131,15633], +[2,4670,15634], +[0,22058,1149,4597,4431,3181,4545,22057,22054], +[3,1456,9], +[0,2323,2899,1177,4039,22064,23026,2381,3159,4599,2425,23025,22066,22068,22062], +[0,18444,22057,22074,22075], +[1,2343,15641], +[0,15646,15647,15649,2443], +"anymatch", +"braces", +"is-b", +"@paulmillr/jsbt", +[0,1792], +[0,1166,3477,4481,1906], +"readdirp", +[0,1896,4990,15008,16518,23034,4202,1871,1398], +[1,2343,15651], +[0,15652,15653,15654,2537], +[0,23040,23041,23043,23045,3984,23051,23054,3988,10630,11380,23059,23065,23070,23075,23078,23080,23082,23085,23092,23096,23098,23103,23110,23113,23118,23121,23123,13240,23126,23128,23133,23136,23139,23141,23143,15043,4351,23145,23149], +[0,811,8850,816,10615,1703,23155,4042,4255,4389,4400], +[0,1783,1745,1739,9591,13729,4354,23158,9654,671,19269,2554,3984,4549], +[1,2343,15657], +"ci", +[0,0,15660,15661,2399], +"continuous", +[2,15674,15682], +[0,23163,23164,2228,18555,2253,2256,2273,23165,2281,2283,2293,23167,23169], +[0,4453,7597], +[1,2343,15683], +[3,6217,21], +[2,15663,4779], +[3,169,22], +"ntion", +[2,15665,15666], +[3,169,21], +"inimap", +[2,15668,15669], +[3,116,24], +[2,15671,14745], +[3,164,21], +[3,5276,15], +"anguage", +[2,15673,15675], +[3,157,21], +[2,15677,5204], +[3,148,22], +"de-block", +[2,15679,15680], +"imple-access", +[0,15688,15708,15709,4139], +"tml-embed", +[2,15677,15684], +"ge-break", +[2,172,15686], +[0,3183,23175,4227,4720,4535], +"heme-lark", +[2,178,15689], +"ord-count", +[2,6197,15691], +[2,15698,15725,186], +"how-blocks", +[2,15663,15694], +[3,15685,25], +[2,15696,4231], +[3,10883,21], +"arkdown-gfm", +[2,15668,15699], +[3,175,22], +"move-format", +[2,15701,15702], +"ource-", +[2,15704,6110], +[2,15663,15705], +"oriz", +[0,8648,1168,1195,1282,1317,1429,23177,1540,1719,1787,16256,16257,1177,1895,1924,1926,2151,2228,13831,2240,2247,2253,2256,2258,23178,2281,2283,2314,17568,2675,16021,2990,2899,3211,3257,3421,1894,4135,4193,91,4545,2924,4681], +[0,2036,3257,1283,1936], +"ontal-line", +[2,15707,15710], +[2,15677,15711], +[3,6164,21], +[2,15713,12426], +"multi-root", +[2,6157,15715], +"strict", +"ed-editing", +[2,15717,15718], +[2,15701,15719], +"peci", +"al-characters", +[2,15721,15722], +[2,15663,15723], +"plugin-u", +"nano-jsx", +[1,2343,15729], +"solid-js", +[0,15730,15731,6060,2523], +[0,2812,23184,1366,6714,2607,8340,17693,23185,8336,8316,23187,23188,8338,23189,23190,8349,23192,23193], +[0,620,1501,2710,8363,23196,2036], +[1,2343,15733], +[0,15734,15735,15736,2487], +[0,15507,4874,9241,18089,15502,4729], +[0,23203,23205,91,1984,9750], +[0,2832,965,1388,5317,11513,5122,4963,1936,7102,12616], +[1,2343,15738], +[0,0,8134,15739,2537], +[0,6914,4354,13735,6793,2100,7210,200,6876,6478,3729,1138,7058,7233,10446,7128,3183,3460], +[1,2343,15741], +[0,0,15746,15748,2537], +"@chrisblossom/eslint-config", +[3,14731,11], +"-pkg-up", +[2,15743,15744], +[0,5517,13614,23237,26398,19325,1159,1593,9254,1177,23225,2708,3410,3421,4103,4389], +"temp-sandbox", +[0,7263,2568,7031,6951,6422,970,1593,6789], +[1,2343,15750], +[0,0,15751,2514,2523], +[0,2272,2839,1209,4389], +[1,2343,15753], +[0,15754,15755,15756,2399], +[0,14038], +[0,5517,13614,23237,23239,23241,19325,1158,1159,1177,2011,2708,3206,3410,3421,4103,4389], +[0,6914,6959,6780,6889,6888,6914,3205,941,5284,5286], +[2,5933,1469], +[1,2343,15762], +"uncache", +"uncached", +"unrequire", +[0,15763,15764,15765,4139], +[0,12396,9315,23247,23249,23250,23253,3140,3493,23254,4555,12449,23257,23258], +[0,4874,23262,1414,2581,2588,3137,1894,23264,3985,3998,4505,91,18002,1906], +[0,23267,2587,1936,23266,6435,614,1644,3972], +[1,2343,15772], +"opts", +"opt", +"parseopt", +"argsparse", +"optparse", +[0,15777,15778,15779,2537], +"complete", +"autocomplete", +[3,15774,11], +[2,15775,6600], +[0,12396,23247,23254], +[0,4874,23262,23274,1414,1699,23276,2581,2588,2620,23279,1894,3985,3998,4505,91,18002,4555,1906], +[0,4050,23267,2587,1936,6953,2574,6435,614,23266,4741], +[1,2343,15781], +[0,15782,15783,15784,34352], +[0,12396,9315,23286,23288,13839,23289,23291,9396,2584,23292,16870,3746,4233,4555,23258], +[0,4874,1414,2588,1894,3985,3998,4505,91,18002,1906], +[0,1623,23267,2587,1936,3529,6421,3766,23296,3585,1631,23266,6435,614], +[1,2343,15787], +[2,1861,7253], +[0,15789,15790,15791,2523], +"timers-ext", +[0,1006,19877,12396,23288,23289,23302,23308,23292,23310,23312,23314,3746,4233,4309,23254,23258], +[0,4874,15128,1414,23316,12412,2007,2588,3137,12127,3140,12133,1894,3985,3998,4505,91,4555,1906], +[0,1444,5286,6742,23267,2587,1936,5284,1219,9102,3958,353,23266,6435,614], +"medikoo", +[2,1884,15792], +"list-", +"updated", +"list-updated", +[2,10617,15796], +[3,2289,14], +"-cc-changelog", +[2,4024,15799], +[2,15798,15800], +"prettier-e", +"lastic", +[2,15802,15803], +"tad", +[1,2343,15807], +[0,15808,15809,15810,2487], +[0,12396,9315,23322,23288,23292,23253,3140,3746,4233,4292,23258], +[0,4874,1414,2588,1894,3985,3998,4505,91,1906], +[0,23267,2587,1936,4141,1646,23324,23266,6435,614], +[1,2343,15812], +[0,15816,15817,15818,2537], +"toggle", +"show", +"hide", +[0,1006,12396,9315,23288,23289,23308,23292,23310,23312,23314,3746,4233,4309,23254,15632], +[0,4874,4880,4883,1414,668,12415,2588,1894,89,3824,3985,3998,23330,4505,91,1906], +[0,23267,2587,1936,3698,89,23332,3709,23266,6435,614,188], +[1,2343,15820], +[0,15821,0,15823,2537], +[0,12396], +"varlock", +[0,1563,2587,23267,1936,4141,1871,1646,2585,23266,614,6435], +[1,2343,15825], +[0,15827,15809,15828,2537], +"string-length", +[0,12396,9315,12421,23344], +[0,23266,2587,23267,614,6435,1936,1871,1563,2585,9547], +[1,2343,15830], +[0,15831,15832,15834,2537], +[0,12396,23288,23352,3746,4233], +[0,4874,15128,1414,23316,23356,12412,1894,3985,3998,23359,4481,4505,91,1906], +"expresso", +[0,965,14839,23267,2587,1936,23362,3958,23266,6435,614,23361,4607], +[1,2343,15836], +[0,15837,15839,2514,4139], +[0,4647,2036], +"fast-text-table", +[0,3421,2899,1177,4039,4342,1948], +"256-colors", +[2,1105,15840], +"git-re", +"git-rev", +"growl", +[1,2343,15848], +"tables", +"tabular", +[0,0,15849,15850,2523], +[0,15990,2228,2240,2314,14352,2759,2835,1209,14529,3774,3954,23375,4019,23376], +[0,1871,18089,18944,1936,10368,15103,3656], +[1,2343,15852], +[0,15855,15856,2514,2537], +[2,8737,4522], +[2,2968,14994], +[0,3263], +[0,4167,4384], +[1,2343,15858], +[0,0,0,15859,2537], +[0,2026,1965,11988,5995,23389,23391,23397,23400,23404,23407,23410,23411,23412,23413,23414,23415,23416,23417], +[1,2343,15861], +[0,0,15863,2514,34352], +"truncate", +[0,4361,4039,1894,1420,11518,53,23423,5874], +"ellipsis", +[1,2343,15866], +[0,0,15867,2514,2443], +[0,94,87,14128,14041,1175,48,53,1178,1193,1745,1177,1935,1938,1939,1192,2774], +[1,2343,15870], +"cardinal", +[0,15881,15885,15888,2523], +"hyperlinker", +[2,689,13008], +[2,2055,2873], +"object-t", +"reeify", +[2,15874,15875], +[2,689,7152], +"natural-", +"orderby", +[2,15878,15879], +[0,23432,1362,27433,15838,23434,23436,23438,23439,23440,23441,2822,23444,3170,19445,3220,3222,3416,3527,15245,4294,4435,23445,23446], +"-prompt", +[2,6875,15882], +[3,4351,9], +[0,23450,13414,4856,8780,7637,8778,6503,4874,21623,6513,23448,1414,1429,1448,6323,1177,23453,23456,2675,2990,2899,4193,4474,91], +"hyperlinks", +[2,15884,15886], +[0,5351,5353,6354,5130,2596], +[3,6519,10], +"ip-ansi", +[2,15889,15890], +"nsi-styles", +[2,9165,15892], +[3,9359,12], +[1,2343,15898], +"ct-stack", +[2,15894,15896], +[0,15899,15900,2514,4139], +[0,23462], +[0,1362,1389,1391,1537,1177,2228,2236,2239,2277,2281,2283,2291,23466,2307,2036,2276,4085,23469,4171,4193,16584,23471,4535], +[1,2343,15902], +[0,0,15912,15913,2537], +"@yarnpkg/core", +"@yarnpkg/", +"fslib", +[2,15904,15905], +[3,1920,15], +"rca", +[2,15907,15908], +"multi-input", +[2,4049,15910], +[0,1623,1700,2070,19745,2832,2899,1177,1209,4042,4170,4072,1462,1481,1525,2036,91,2665,23482,6503,18059,23483,13388,23476,23479,1954,8850,23480,1938,1958,1903,811,1011,816,1009], +[0,5342,5341], +[1,2343,15915], +[0,15916,0,2514,2537], +[0,3263,1326], +"good-listener", +"tiny-emitter", +[1,2343,15920], +[0,6263,0,15922,2523], +"cut", +[0,2602,7426], +[1,2343,15924], +[0,0,15925,15927,2537], +[0,1501,620], +"is64bit", +[0,6731], +"paste", +"copy-paste", +"pasteboard", +"pbcopy", +"xclip", +"xsel", +[1,2343,15935], +[0,15936,15937,15938,2523], +[0,3368,3188], +[0,4535,2832,23509,4039], +[0,3257,1283], +[1,2343,15940], +[0,15941,15942,10570,2399], +[0,3847], +[0,53,61,87,90,94,1429,1596,1603,1177,2899,3421,3697,3744,89,4039,4042,4045,4055,4067,4073], +[1,2343,15944], +[0,15945,15946,2514,4139], +[0,1437,4135,2151,1525,23520,3762,4232], +[0,1192,1177,4039,3363,4468,4474,4508,91,5087,4874,5245,5254,4864,1939,1938,13418,1011,23523,1009], +[1,2343,15948], +[0,0,15949,15950,2523], +[0,23528,23531,4865,13204,4874,29891,7677,1138,14736,30932,668,1177,2070,2832,3244,3377,30794,20085,1894,23535,91,4548,23538,1984,23539,4729,4763], +[0,2611,5122,1896,27,13527,5130,38,23542,23543,23544,23545,21444,17218,13573,6710], +[2,976,2942], +[1,2343,15954], +[2,9753,6072], +[0,15957,6538,15958,2487], +"progress bar", +"@exodus/bytes", +[0,3084], +[0,3358,2195,17977,17978], +[1,2343,15961], +[2,11941,5258], +[0,15963,13640,15965,2487], +"coro", +[0,1537,3188,4039,4135,4562,4707,23559], +"coroutine", +[0,23561,23562,23563,23564,3378], +[1,2343,15967], +[0,15968,15969,15970,2487], +[0,15487,2654], +[0,192,5467,19438,442,8862,811,816,10615,10817,23572,11085,23573,4874,17214,32818,7677,1177,1955,10964,1978,2203,2633,2675,17221,2832,2990,3401,3541,1894,23535,4042,4201,4474,91,4523,1984], +[0,2616,1936,965,57,2654,23578], +[1,2343,15972], +[0,0,15973,15974,34352], +[0,4874,1414,23276,2577,2584,1894,3985,3998,4505,91,4548,1906], +[0,23584,11512,1936,1213,3205,10381,12616,7102], +[1,2343,15976], +[0,15977,15978,15979,2537], +[0,15956], +[0,23591,1177,2203], +[0,9254,1936], +"ignore-walk", +[1,2343,15982], +[0,0,15983,15986,2523], +[0,192,5467,5366,23597,5087,4874,1317,18089,1177,1895,1938,23598,2591,2675,1894,4257,4468,4483,4494,91,4523], +"teeny-request", +"urlgrey", +[0,1936,23601,23603,23605,18089,23606,23608], +[1,2343,15989], +[2,10988,4504], +[0,0,15991,15992,2443], +"codecov.io", +[0,23613,1414,1596,4042,4533], +[0,1936,1867,10368,23615,15103,18089], +[1,2343,15994], +[0,15995,16007,16010,2523], +[0,3493,2635], +"mirror/lint", +[2,13183,15996], +[3,15997,12], +[2,15998,6624], +[2,15998,6649], +[3,16000,13], +[2,16001,10190], +[2,15998,8891], +[3,15997,13], +[2,16004,15675], +[2,15998,15774], +[0,1700,1192,2675,3144,1622,1177,1701,2924,1854,3692,1894,1610,48,1193,2036,53,2990,3400,23621,192,4257,23623,87,2651,1938,1895,5467,16405], +"buildhelper", +[2,15998,16008], +[0,2924,1936,1194], +[1,2343,16012], +[0,16013,16014,16016,2523], +[0,15320,1462,1525,2591,15436,23631,4535], +[0,2228,2236,2281,2291,3524,2907], +[2,10697,1592], +[0,200,15215,23634,1623,1936,2265,5284,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,23637,2280], +[1,2343,16018], +[0,16019,16020,16023,2537], +[0,15320,1462,1525,18089,15436,23631,4072], +[0,192,11893,811,8850,816,10615,23643,23648,1177,1903,2675,2742,1192,2780,2990,4042,23652,1983], +"jison", +[2,5249,23751], +[0,200,15215,23634,1623,1936,2265,5284,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,4072,23637,2280], +[1,2343,16025], +[0,16026,16027,16028,34352], +[0,3524], +[0,4389,4255,4387,3524], +[0,1936,2636,3520,3521,6710], +[1,2343,16030], +[0,16031,16032,16033,2537], +[0,15487,2616,3872,4309], +[0,192,5467,19438,19181,442,811,816,10615,10817,23572,5366,4874,4880,4883,17214,32818,7677,1317,1177,1955,10964,1978,2203,2675,2990,3541,3698,23535,89,3824,4042,4201,4474,91,4523,1984], +[0,2639,1936,89,57,965], +[1,2343,16035], +[0,0,16036,16037,2523], +[0,1166,1448,1906], +[0,1936,12075,2640,11513,3392,7102,12616,23670,23674], +[1,2343,16039], +[0,0,16040,16042,2399], +[0,2675,2742,2297,4484,1177,4039,4042,1894,1596,3536,91,3400,2766,3720,2898,23689,2886,23687,19965,13207,2923,23681,23683,2881,23679,6059,23686], +"wcwidth", +[0,12197,23691,1424,1936,965,158,13814,8221], +[1,2343,16044], +[0,16045,0,16046,2523], +[0,23696,1699,1754,2654,23699], +[0,1936,202,2585,18641,19096,15253], +[1,2343,16048], +[0,16049,0,16050,2523], +[0,23708,23709,1091,2070,2929,3183,3742,4135], +[0,1936,671,1155,2650], +[1,2343,16052], +[0,16054,16055,16058,34352], +"array-back", +[0,23736,2635,1209,3716,4388], +[0,192,5467,4874,1610,1622,1628,1652,21468,1177,17589,2629,2675,1192,2990,3177,3400,1894,3754,23738,3786,4039,4257,4307,91,2924,4677,23742], +"find-replace", +"typical", +[0,2924,1932,1936,2651], +[1,2343,16060], +[0,16061,16062,16063,2537], +[0,16022,1525,1595,3692], +[0,442,19344,23339,6503,4874,34737,1414,1637,1177,23753,1938,32525,27790,2022,2203,2899,3561,3759,23631,4039,23754,4361,4072,91,4523,22946], +[0,3692,23757,1936,23760,2632], +[2,1437,2324], +"table-", +"table-layout", +[1,2343,16068], +[0,16069,16070,16071,2523], +[0,18087,15487,15488,18089], +[0,442,4874,7677,1177,1895,1953,1982,2203,1894,4483,91,4523,1984], +[0,1936,57,7046,6523,965,23767,6084,16179], +[1,2343,16073], +[0,16074,16075,16076,2487], +[0,1704,2713,20099,4266,23775], +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421], +[0,27,1851], +"cached", +"cachedir", +"find-n", +"ode-", +"ode-modules", +[2,16079,16081], +"is-u", +[1,2343,16086], +"is-utf8", +[0,16093,16097,2514,2399], +[3,549,23], +[2,16087,1172], +[2,12772,8532], +[2,1652,16089], +"-reporters", +[2,11086,16091], +[0,2017,23783,2131], +[3,1566,12], +" changelog", +[2,16094,16095], +[0,4729,3421,23785,1149,2899,4135,2025,4218,1537,1159,4220], +[1,2343,16099], +[0,16100,16101,16102,2523], +[0,23791,1676], +[0,5245,5087,4874,1151,1192,4468,91,2658,2190], +[0,27,2658,6652,4575], +[1,2343,16104], +[0,16105,16106,16118,2537], +[0,10406,1676,2659,2743,2747,3170], +[0,192,5467,442,5245,5601,6494,19386,5087,8778,4874,9240,9241,1364,1177,1895,1955,2026,2182,2203,2675,1192,2990,23800,3445,5561,20085,1894,4342,4468,91,4523,4729], +"es2015-tag", +"es6-tag", +"heredoc", +"indents", +"literal", +"multiline", +"oneline", +"single", +"singleline", +"strings", +"tagged", +[0,17179,2658,2663,27,2671,1544,2026,2078,23802,23803,1387,2323,2256,4699,4729,1594], +[1,2343,16120], +[0,16121,16122,16124,2537], +[0,2591,3171,1437,23808,23809,3456,3183,4566,1304,2659,3560,23811,2623], +[0,23813,4384,1177,2026,705,23816], +"observe", +[0,200,1523,2947,27,2671,2665,23818,36], +[1,2343,16126], +[0,0,16127,16129,2537], +[0,4493,2675,2899,1177,4170,4474,1894,442,1529,91,4874,2990,19193,6503,16954,192,4257,19335,4523,1951,1895,1955,5467], +"on-headers", +[0,27,1544,4967,6622,2026], +"compressible", +[1,2343,16132], +[0,0,16133,16134,4139], +[0,4864,5087,23829,1009,1011,1177,1883,1938,2151,1192,3117,4468,4473,4474,91], +[0,202,27,18413,23831,23832,6622,5281], +[1,2343,16137], +"buffer-from", +[0,0,0,16138,2537], +[0,2671,23837], +[1,2343,16140], +[0,16143,16147,16153,2537], +"-command", +[2,1614,16141], +[0,1676,23791], +"@hirez_io/observer-spy", +"@swc/jest", +[3,7749,12], +[0,1192,2658,4468,2190,91,5087,4874,1154,5245,1151,23843], +"-quote", +[2,16146,16148], +[2,1596,4845], +"ctrlc-wrapper", +[2,32524,2994], +[0,2671,2658,6652,4575], +"instance", +[1,2343,16156], +[0,0,0,16157,2399], +[0,3358,582,3697], +[1,2343,16161], +"bash", +"sh", +[0,16162,9264,16163,2443], +[0,16136,15019,4431], +[0,3101,27,4714,705,3038,3689,10074,6865,6704,21360], +[1,2343,16165], +[0,0,16169,16170,2523], +"cson", +"hjson", +"x2js", +[0,6061,21120,6063,1570,1177,1895,23860,1894,4042,4131,4389], +[0,23862,590,1623,1420], +"fig", +"node-config", +[1,2343,16175], +"config-node", +[0,0,10435,16176,2523], +[0,23868,23869,23870,4545,23872,23874,23875,23876,3547,23877,23878,23879,23881,23883], +[1,2343,16178], +[0,16180,16182,16183,2537], +"atom", +[0,23888,1676,23891,23894,23897,3257], +"atomically", +[0,1149,1575,1177,1895,1903,1938,1954,1955,1958,1970,2026,2675,2990,2899,3421,1894,4170,4193,4745,4342], +[0,1283,2679,6728], +"xdg-basedir", +[1,2343,16187], +"prefer", +[0,6263,16190,16191,2523], +"preferences", +"persist", +[0,27386,53,5749,5241,83,85,87,90,94,5583,811,816,10615,4874,1009,1011,7677,1290,1596,1597,1177,1881,1895,1915,1938,23909,2675,23913,23915,23917,23921,23926,2990,1894,4039,4042,4193,91,1984], +[0,2681,23932,2679,8930,23933,6728,23934,23936], +[1,2343,16193], +[0,0,16194,16195,2537], +[0,442,10817,6061,6063,1009,1011,1177,1895,1955,2203,1894,4042,4057,4131,91], +[0,2681,23942,5995,1932], +"rack", +[1,2343,16198], +[0,16199,16200,16201,2537], +[0,23948], +[0,3421,1149,23950,8431,2899,23952,1177,4135,705,27387,91,4874,2024,29197,5517,19344,7844], +[0,8431,6270,8426,8425], +"flash", +[1,2343,16204], +[0,16205,16206,16207,2523], +[0,23960], +[0,1175,1193,1267,1272,1596,1177,1881,1938,2774], +[0,2658,23964,13445,1192,3212], +[1,2343,16209], +[0,0,16210,16212,2537], +[0,48,53,87,1009,1676,1177,23971,1938,3188,23974,4039,23975,4384,4449,4474,91], +"kruptein", +[0,2687,23977,16774,3410,3624,10057,7131,6961,1108,21541,2070,23980,23982], +[1,2343,16214], +[0,0,16215,16216,2487], +[0,1414,2070,4493,4474,4508,91,4865,4874,11976], +[0,158,4202,23989,23992,4289,18081,12350,20650,20733,20639,20709,23993,20651,20680,21881,20752,18048,20653,8221,23994,23995,12349], +[1,2343,16218], +[0,16219,16220,16221,2523], +[0,24003,18525,4207,2205,24004,2096,6639,29721,20624,22246], +[0,1906,1166,1700,4400,18051,24006,18047], +[0,3178,15215,158,11806,21881,20637,18048,20639,8221], +[1,2343,16223], +[0,16224,16225,16226,2523], +[0,24003,2020,24012,6639,24013,20624], +[0,1414,1906,1166,91,4874], +[0,15215,158,24016,3178,6707,18048,24017], +[1,2343,16228], +[0,16229,0,16236,2399], +[0,24022,3923], +"defu", +"nicode-supported", +[2,16083,16231], +"sentence", +"sentencer", +"sisteransi", +[0,2695,18641,1823,24024,5576], +"reporter", +"elegant", +"clack", +"stacktrace", +[1,2343,16242], +[0,0,16243,16244,34352], +[0,53,4874,7677,1596,24029,24030,2126,2675,2700,24032,1209,3028,1894,3720,3875,4039,24033,4131,4493,33863,91,1983,1984], +[0,2700,24036,24038], +"arc-templates", +"brac", +"ket-template", +[2,16246,16247], +"dust", +"js-helpers", +[2,16249,16250], +"dustjs-", +[1,2343,16254], +[0,0,16258,16266,4139], +"linkedin", +[2,16252,16255], +"eco", +[0,24045,5087,1596,1192,4039,4468,4487,91], +"haml-coffee", +"hamlet", +"htmling", +"jazz", +"jqtpl", +"just", +"liquid-node", +[0,24047], +"liquor", +"mote", +"plates", +"qejs", +"ractive", +"slm", +[2,4371,2229], +"teacup", +"tinyliquid", +"toffee", +"twig", +"twing", +"vash", +"velocityjs", +"walrus", +"whiskers", +[1,2343,16285], +"engine", +[0,0,0,16286,2537], +[0,2700,7007,7189,2382,6957,6564,6910,7282,6769,6917], +[1,2343,16288], +[0,9670,16289,16291,2523], +[0,1166,2592,4481,1906], +"rfc6266", +[0,3209,2325,15759,15760,1237,2145,24057], +[1,2343,16293], +[0,16294,16295,16297,2487], +[0,3537,13780], +[0,1166,16499,1700,2020,1906], +"rfc7231", +[0,1204,2703,3209,814,2202,15525,16186,200], +[1,2343,16299], +[0,16300,16301,16302,2523], +[0,24069,24073,24075,24077,24078,24080,24081], +[0,4874,9241,1177,24085,1894,91], +[0,13527,36,24088,24089,1965,20986,24090,5592,17829,24091,11100,24092,4030,7096,5122,5130,38,7433,24093,7223,6599,27,2671,4699,14609,24095,1896,5995,12660], +[1,2343,16304], +[0,0,8134,16305,2399], +[0,8958,1871,2966,14903,3924,2585,1794,7067], +[3,1567,23], +[2,16306,1098], +[3,1570,25], +"@conventional-changelog/git-client", +[2,16308,23], +[2,16306,1177], +[1,2343,16313], +[0,16314,16315,16317,4139], +[0,23184,1366,23187,2607,2812,3084], +[0,1501,2556,620], +"tom", +[0,2090,7204,1852,2556,1932], +[1,2343,16319], +[0,16320,16324,16325,2487], +[0,1639,24114,6330], +[2,10832,1194], +[2,16306,16321], +[2,4402,4202], +[0,24118,24117], +[0,2711,6681,5130,10772,24120,1936,24122,36,965,1388,4042,23361], +[1,2343,16327], +[0,0,16328,16331,2537], +[0,91,1984], +"add-stream", +"tempfile", +[0,2712,24128,24129,3547,23877,23870,4545,24130,10915,23872,23878,23874,23879,23881,23883,23875], +[1,2343,16333], +[0,0,11686,16334,2399], +[0,24136,1227,24137,24138,24140,2713,1388,1389], +[1,2343,16336], +[0,0,6538,2514,2523], +"compare-func", +[1,2343,16339], +[0,16343,16344,16345,2523], +"commits.org", +[2,16094,16340], +"preset", +[0,24151,1107,1110,24152,1437,1471,1477,1486,13763,16485,2709,20044,24153,14676,4116,4174,4208,13781,4290,16323,4507,9731,4726,4729,24154], +[0,15288,13789,826,24156,4874,4880,24157,34148,24162,6513,24164,9241,24165,1166,1371,1702,24166,1959,1961,3242,3339,3479,1894,89,24169,4193,4294,4474,91,1906], +[0,89,200,1219,8634,4963,6876,3698,3875,24171,8924,1512,2585], +[1,2343,16350], +"inline-s", +[3,5588,9], +[2,16347,16348], +[0,0,16351,16352,2443], +[0,192,5467,19438,19181,442,811,816,10615,1623,1177,1955,10964,2203,2675,1192,2990,3400,1894,23535,4042], +[0,2718,24177,590,57,1623], +[1,2343,16354], +[0,0,0,16355,2487], +[0,24182,24183,18496,6574,7242,21779,202,200], +"top-sites", +[1,2343,16359], +"cookies", +[0,16360,16361,6151,2537], +[0,31874,546,8998,8605,8612,24188,4094], +[0,8608,91], +[1,2343,16363], +[0,16364,16365,16366,2443], +[0,1107,2089,3527,24188,4094], +[0,2126,2163,2720], +[0,8618,8619,8620,1299,200,1523,6876,1836,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,2184,8634,7009,6621,181,8635,4758,8636], +[1,2343,16368], +[0,16369,0,16370,4139], +[0,24202,1512], +[0,24204,202,9143,13392], +[1,2343,16372], +[0,0,16373,16374,2487], +[0,1734,2899,24209,4072], +[0,5260,3209,10906,24211,1388,24213,1808,1161], +"sign", +"unsign", +[1,2343,16378], +[0,0,16379,16380,4139], +[0,1177,1889,1954,2022,2822,2899,3421,20314,3932,3985,24220,4167], +[0,1507,24223,1509,3595,5194,676,1781,2856,1219,89,24224,4452,4799,91,6523,4745,17307], +"-selection", +[2,15813,16381], +[1,2343,16386], +"@brettz9/node-static", +"-standa", +[0,0,16390,16391,4139], +"lone-jar", +[2,16385,16387], +[2,13131,16388], +[0,1149,1173,1178,1240,24231,24234,1245,1257,1267,24235,1280,24237,24241,24245,24247,24249,24251,24254,24257,24259,24262,24264,24266,24269,24272,1474,1498,1177,24273,2099,2070,2228,2240,2247,2258,24274,24275,2272,3188,3435,4039,4042,4045,4055,24278,13674,4069,4077,22031,4151,4652], +[0,2728,2679,23932,24282,6422], +[1,2343,16393], +[0,0,16394,16395,2537], +[0,19,21,24,26,32,5241,92,8648,840,968,974,4874,4880,4883,1009,1011,11016,33975,1198,1622,668,1177,1915,1938,1939,1959,1961,2075,24289,10697,24291,2228,2239,2240,2247,2256,2263,2283,24295,2308,2314,2665,1192,2780,2814,3003,3541,1894,10622,89,3824,2278,4164,3709,4436,4474,91,1983,26744,188,13151,4769], +[0,24298,24299,24302,7285,7310,5131,6847,7210,5399,5284,1932,1623,1936,7020,6983,89,188,1098,3709,4627,91], +[2,4865,2199], +"rmalize-path", +[2,10409,16397], +"rialize-javascript", +[2,5252,16399], +"@webpack-c", +"ontr", +"ib/eslint-config-webpack", +[2,16402,16403], +[2,16401,16404], +[1,2343,16408], +"is-gzip", +[0,16409,16411,16412,2523], +[0,3082], +"transfer", +[0,1389,2126,4384], +[0,1973,2731], +[1,2343,16414], +[0,16416,16417,16418,2487], +"noms", +[0,16579,16585,23711], +[0,4874,7677,1177,1894,3951,4039,4042,4469,4484,91,1984], +[0,14428,24316,14416,24319,24320,5284,202,91], +[1,2343,16420], +[0,16422,16426,16427,2523], +"qr", +[0,4390,1687,24346,3445,3348,1437,1676,4484,1209,4135,4238,6331,4431,24347,4339,24345,24332,24337,22651,24349,24335,24340,24327,24338,24339,24344,24343,24329], +"simple qr", +"npm qr JavaScript", +"js qr code", +[0,1192,4039,4487,4468,2774,13214,4227,91,17577,5087,4874,24354,7819,2990,5245,4870,5254,24358,24356,18435,24360,24352], +[0,2733,24362,24363,5131,1896,24364,1591,970,3525], +[1,2343,16429], +[0,16433,16434,16436,2523], +[3,1590,15], +"sample", +[2,16430,16431], +[0,8641], +[0,8648,4864,5087,4874,24370,2151,1192,2774,27442,3401,1894,3758,4039,4135,4146,4361,4494,91], +[2,16423,1501], +[0,24373,2733,1017,8221,5131,20523,4627,24374,5027,12295], +[1,2343,16438], +[0,16439,16440,16441,2537], +[0,24379,24382,1676,24383,3032,24386,24389,24391,24393], +[0,24397,6061,16607,6063,4856,9417,5245,24398,24400,6503,4874,24403,6513,1009,1011,1429,1431,1177,1895,2899,3421,1894,4131,4153,4193,4474,4481,4508,91,3348], +[0,1552,24093,24406,24408], +"insight", +"-lib", +"cordova-lib", +"cordova-", +[2,16445,10896], +"cordova-c", +"reate", +[2,16447,16448], +"loud-rejection", +[1,2343,16455], +"@cor", +"dova/eslint-config", +[2,16452,16453], +[0,0,16456,2514,4139], +[0,2899,1177], +[1,2343,16458], +[0,16459,16463,2514,2523], +[0,24416,8431,24419], +"4", +"ES2024", +[2,6796,16460], +[0,24421,2080,2292,4389], +[1,2343,16465], +[0,0,16466,16467,2537], +[0,1158,3421,4389,1177,14741,2708,4103,13614,15059], +[0,614,998,1973], +[1,2343,16469], +[0,16470,16471,9636,34352], +[0,1458], +[0,1470,4255], +[1,2343,16475], +"env-paths", +"parse-json", +[0,16486,16487,16488,2537], +"arse-", +"arse-json", +[2,5088,16477], +[3,7677,17], +[2,16479,2759], +"davidtheclark-node", +[2,1884,16481], +[3,16481,13], +[2,3996,16483], +"es-toolkit", +[0,24437], +[0,2398,2899], +[0,16159,15643,4354,2978,7256,24440,2070,21543,24441,2741,3529,6421,13017,1108,6920,1871,1973], +[1,2343,16490], +[0,16493,16494,16495,2443], +"lcov-parse", +"log-driver", +[0,24446,17450], +[0,1166,16499,1700,2020,3093,4481,1906], +[0,2202,3383,24449,1237,1161,24450,3378,4749,2741,4354,13735,2703,24451,200,20052,17180], +[1,2343,16497], +[0,0,8134,16498,2487], +[0,3048,2741,4354,1973,998,19096,24456,7523,2869], +"cpy", +[1,2343,16501], +[0,0,16505,16506,34352], +"cp", +[3,12419,11], +"contents", +[0,1429,1999,2398,2899,3198,4042], +[0,4354,2741,24462,2757,5284,24463,20273,3048,19096,998,7031,6692], +[1,2343,16508], +[0,0,16510,16514,2523], +"hpagent", +[0,2899,3954], +"http2-wrapper", +"seenreq", +"tslog", +[0,1936,24374,24470,11608], +"@types/got", +[1,2343,16519], +"spider", +"gzip", +[0,0,16520,16521,2523], +[0,4874,1166,4400,4481,1906], +[0,3101,998,7046,7089,7017,6704,353,4354,13735,2741], +[1,2343,16525], +"crc16ccitt", +"crc16", +[0,16527,16529,16535,2523], +"crc16kermit", +[0,24488], +"crc16modbus", +[0,1166,24491,4481,1906], +"crc16xmodem", +"crc1", +"crc24", +"crc81wire", +"crc8", +[0,4354,24493,6574,24494,6667,13735,16159,3729,7201,7009,2741], +"crc8dvbs2", +"crcjam", +[1,2343,16539], +[0,0,9264,16540,2443], +[0,1388,2756,4552], +[1,2343,16545], +"cipher-base", +"ripemd160", +"sha.js", +[0,0,16546,16547,2443], +[0,1999,2398,2899,4042], +[0,4354,2741,24462,2757,24463,20273,24504,970,3048,998,7031,6692], +[1,2343,16549], +[0,16550,16551,2514,2523], +[0,3310,4705], +[0,1429,2272,24512,2899,3297], +[1,2343,16553], +[0,16554,16555,16556,2537], +[0,2070,3368,3441,1149,4707,23432,3188,2003,2822,814,4720,1875,2036,4351], +[0,2272,4039,2276,1596,4019], +[0,4504,24520,24521,24525], +"async-t", +"-tree", +"raverse-tree", +[2,16557,16559], +"css-u", +"rl-parser", +[2,16561,16562], +"uri-to-", +[2,16564,1398], +[2,14678,16565], +[1,2343,16577], +"group-args", +"inline-", +[2,16569,1604], +"oust", +"penthouse", +[3,3591,15], +[3,3611,14], +"inliner", +[2,16574,16575], +[0,16582,11580,16583,2537], +"postcss-url", +"@inversifyjs/common", +"newline", +[2,3370,16580], +[0,2152,3348,18545], +[0,2760], +"stream-array", +[2,23712,29231], +[1,2343,16588], +"optimization", +[0,16589,16590,16591,2523], +[0,1156,1699,1817,24536,3070,3559,4443,24537], +[0,24539,1173,1175,1191,1195,1201,1220,1230,24541,1245,1255,18571,1264,1279,1282,1429,24542,1584,1610,1628,1177,1988,2054,2092,2148,2323,2332,2361,2450,2494,2629,2651,2297,2881,2886,2900,18260,2921,2923,2925,695,2969,21082,2899,4193,4196,4307,4487,91,4537,4027,188,4632,24545,4634,4639,4640,4645,2924,4681,4689], +[0,2761,188,6284,4627,4963,181,5130], +[1,2343,16594], +"@fast", +[0,16613,6161,16614,2537], +"-check/jest", +[2,16593,16595], +"@insurgent/commitlint-config", +[3,16597,13], +"nvent", +"ional-changelog-preset", +[2,16599,16600], +[2,16598,16601], +[3,6061,19], +"ommit", +"-analyzer", +[2,16604,16605], +[2,16603,16606], +[2,6062,3378], +"-generator", +[2,11155,16609], +[2,6019,16610], +[2,6062,16611], +[0,548], +[0,7233,57,7058,5675,7210,200,1523,3924,1644,7119], +"node cron", +[1,2343,16620], +"node-cron", +"schedule", +"cronjob", +[0,16622,16623,2514,2537], +"cron job", +[0,24560,1462,1525,24562,24563,3188,24564,4535,24566,5056], +[0,24570,24571,1596,2026,24574,2034,24576,24577,24581,24584,24587,24591,24592,24593,24594,24596,24598,24599,3127,3456,24600,4039,24601,24602], +[1,2343,16625], +[0,16627,16628,16632,2523], +"tz", +[0,1149,24607,3527], +[0,442,1177,10751,2203,2899,3760], +"timer", +"tab", +"crontab", +[0,6147,200,7048,24610], +[1,2343,16634], +[0,16635,16648,16651,2537], +[0,24617], +"@prantlf/jsonlint", +"@prettier/plugin-xml", +"@stryker-mutator/core", +[3,16638,17], +[2,3192,8791], +[2,16639,16640], +[3,15909,16], +"ray-func", +[2,16642,16643], +[3,13097,17], +"unsanitized", +[2,16645,16646], +[0,5583,816,6373,10615,11301,24621,24624,1462,1610,24625,2675,2814,16830,2990,3170,24627,4042,8849,20983], +"metalint", +"yaml-lint", +[0,24631,158,12083,24633,24634,20634], +[1,2343,16653], +[0,16654,16655,16659,2487], +[0,2070,2766,23576], +[0,1177,24287], +[2,1601,7179], +[3,3606,9], +[2,16657,2408], +[0,1973,5472,2765,6969,5982], +"zoom", +"rotate", +"scale", +"cropper", +"cropper.js", +[1,2343,16667], +[2,29236,594], +[0,0,16668,16659,2523], +[0,19181,442,1137,24645,1797,1177,1924,2070,2203,2832,1894,2278], +[1,2343,16670], +[0,16671,0,16672,2523], +[0,2164,3188,24653,4019,4545,1509,24652,24651], +[0,5472,5982], +"ironment", +[2,1610,16673], +" variable", +[2,6639,16675], +[1,2343,16678], +[0,16679,0,6183,2537], +[0,551,554,2704,2774], +[1,2343,16681], +[0,16682,16683,16684,2487], +[0,24665,24666], +[0,14671,48,53,61,87,192,22559,1193,24668,1596,2675,1192,1894], +[0,3212,1192,11944,1795,1424,1973,2275], +[1,2343,16686], +[0,16689,16695,6183,2487], +"path-key", +[2,6987,16141], +[0,551,8762,554,1437,29680,2704,8734,2798,8747,4747], +[3,10688,14], +"oxy", +[2,16690,16691], +[3,15793,15], +[2,16693,16691], +[0,4892], +"spawnSync", +[2,1611,12344], +[1,2343,16700], +"path-ext", +[0,16702,16703,2514,2487], +"execute", +[0,16729,13002,1437,3717], +[0,8776], +[1,2343,16705], +[0,16706,16703,2514,2523], +[0,24690,16738,13204,4874,2832], +[1,2343,16708], +[0,16714,16715,2514,2537], +"cipher", +[2,13888,16709], +[3,1391,12], +"ign", +[2,16711,16712], +[0,24690,24694,554,11944,2798,2832], +[0,5087,13204,4874,2675,1192,3188,1894,3720,4039,4468,91], +"create-ecdh", +[1,2343,16727], +"mac", +"create-hmac", +"ie-hellman", +[2,1687,16720], +"pbkdf2", +"publi", +"c-encrypt", +[2,16723,16724], +"randomfill", +[0,16730,16731,2514,34352], +[2,6426,3779], +"@jest/diff-sequences", +[0,24690,24694,554,4874,11944,2798,8747], +[0,8776,1497], +[1,2343,16752], +"Hash", +"MD5", +"SHA1", +"SHA-1", +"SHA256", +[2,24690,20072], +"SHA-256", +"RC4", +"Rabbit", +"AES", +"DES", +"PBKDF2", +"HMAC", +"OFB", +"CFB", +"CTR", +"CBC", +"Base64", +"Base64url", +[0,16753,16754,16755,2523], +[0,2777], +[0,107,19438,19181,442,20076,5087,1009,1011,1177,1895,1915,1938,1939,1955,2203,2675,1192,24713,2802,2990,1894,4468,12206,91], +[0,1192,24715,2051,24717,1973,5472,5710], +[1,2343,16760], +"roupon", +[2,1887,16757], +"nlm", +[0,16761,16762,16763,2537], +[0,2151,3445], +[0,53,24723,841,968,972,974,24725,5087,24727,4874,24729,4880,4883,14552,1114,1193,1195,1216,1270,1324,1393,1420,1426,1582,1628,1630,1652,1759,1763,1869,1177,1898,24732,2054,2092,2151,2651,2686,1192,2797,2802,24733,3177,3376,3561,3605,3618,3647,3672,3742,24734,89,3803,3816,3824,3878,24737,814,4028,2278,4111,4135,4230,4307,4383,4409,91,4027,24739,2924,4676,4681,4686,4723], +[0,1192,1936,16237,11937,1932], +[1,2343,16776], +"@cspell/cspell-json-reporter", +[3,16765,15], +[2,16766,7170], +[2,16766,553], +"@cspell/", +[2,16769,15126], +"@cspell/url", +[2,1622,4304], +"cspell-", +"gitignore", +[2,16773,16774], +[0,16777,16784,2514,2537], +[0,3188,4294,3348,6523], +"cspell-glob", +"cspell-io", +"cspell-lib", +[2,2068,2851], +"entry-cache", +[2,2093,16782], +[0,1192,24746,4207], +"@types/fi", +"le-entry-cache", +[2,16785,16786], +[1,2343,16795], +"spell", +"checker", +"spelling", +" checker", +"spell checker", +[2,16791,16792], +[0,0,0,16796,2523], +[0,1192,4749,24753,24754], +[1,2343,16798], +[0,16800,16801,2514,2487], +[2,4229,814], +[0,1437,2215,8750,2796,2798,8747,4207,12578], +[0,8780,1002], +[1,2343,16803], +[0,16809,16810,2514,4139], +"@rspack/cli", +"@mdn/browser-compat-data", +[3,1200,15], +[2,16806,6437], +[2,812,16807], +[0,554,4874,1437,1458,2215,3530], +[0,8780,20374,1209], +"sorter", +[1,2343,16813], +[0,16814,16815,2514,2523], +[0,1107,1437,8758,8741,4207,15826,4294], +[0,48,53,87,92,442,11893,554,6061,6063,4874,1193,17217,1610,1177,1895,1915,32525,1939,1955,2203,1192,24713,1894,4039,4131,4135,91,4523], +[1,2343,16829], +"-verify", +[2,13729,16817], +[3,4828,15], +"itpick", +[2,16819,16820], +[3,15801,21], +"hangelog", +[2,16822,16823], +[2,8184,8166], +"version-", +[2,16826,13729], +"write-", +[0,16832,16833,2514,2487], +"json-file", +[2,16828,16830], +[0,4874,23247,2798,3159,4351], +[0,53,24781,9746,23262,2188,24779,24777], +[1,2343,16835], +[0,16836,16844,16845,2537], +[0,18635,24786,27788,27793,27795,27796,27797,27802,27813,27817,27820,27825,27832,27833,27834,27841,27844,27870,27878,27879,27880,27881,27883,27884,27887,24789,27888], +"icss-utils", +[3,3638,16], +[2,2055,5651], +[2,16838,16839], +[2,16838,1993], +[2,16838,6693], +"@hapi/address", +[0,27890,27893,27895,24793,8862,811,15460,816,10615,17214,1177,27898,3502,4042,4057,15277,23652,4483,91,27900,1984], +[0,158,24795,24799,18048,20637,21881,20650,24800,16662,12712], +[1,2343,16847], +[0,0,16848,2514,2487], +[0,53,5652,5226,56,15659,71,5704,5712,4851,5785,5874,5889,92,5230,101,104,16804,33146,10879,10883,15693,24807,31666,4874,7677,1082,24813,1446,1541,1556,16230,14856,1874,1177,1905,2007,984,2071,2744,3171,3189,3222,15726,3510,15450,3698,28423,1894,89,3824,3951,15728,15452,4409,26379,4469,91,1984,188,20040,4763], +[1,2343,16859], +"@parcel/css", +"@swc/css", +[3,9740,13], +[2,16852,1623], +"@types/csso", +"set-simple", +[2,11327,16855], +[2,1637,16856], +"csso", +[0,0,0,16861,2487], +"lightningcss", +[0,6105,24822,24827,6106,24829,24830,1936,2585,6038,24832,5284,91,24833,2808], +"minimize", +[3,1629,9], +[1,2343,16865], +[0,16866,16867,16869,2537], +[0,2808], +[0,19438,23339,842,966,972,974,4880,4883,1009,1011,1610,1628,1177,1895,1955,1959,1961,1985,2651,2832,1894,89,3824,4068,4307,7873,4474,4493,91,1984,2924,4677,4681], +"boolbase", +[0,89,2808,1936,2585,6038,24842,24829,24830,24843], +"nth-check", +[1,2343,16878], +[3,7804,9], +"olbase", +[2,16872,16873], +"cheerio-s", +"oupselect", +[2,16875,16876], +[0,16880,16881,16882,2537], +"sizzle", +[0,1437,24854,24849,24848,4145,6271,3029,3028,24853], +[0,3421,1149,2228,4193,3460,1596,2240,15929,2293,1532,24857,2283,2273,2277], +[0,24859,24860,24861,24862,24863,24864,24867,24868,24869,24872,24873,24874,24875,24876,24877,24878,24879,24880,24881,24882,24883,24884,24885,24888,24890,24892,24893,24894,24895,24854,24896,24897,24898,24899,24902,24904,24905,24906,24907,24908,24909,24912,24915,24917,24920,24922,24924,24927,24928,24929,24930,24931,24932,24933,24934,24935,24938,24940,24942,24943,24944,24945,24945,24946,24947,24948,24949,24950,24951,24952,24953,24955,24956,24959,24960,24961,24962,24963,24966,24967,24968,24969,24970,24972,24973,24974,24975,24976,24977,24978,12047,24979,24980,24981,24983,24985,24986,24988,24991,24992,24993,24994,24995,24995,24997,25000,25001,25002,4040,25003,25004,4144,4145,25006,25007,25008,25009,25012,25014,25010,25015,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25029,25030,25033], +[1,2343,16884], +[0,16886,16887,16888,2537], +"clap", +[0,16843,25038,8335,25039,25040,8353,26364], +[0,21662,8357,5500,8359,4874,91], +[0,2844,7020], +"json-to-ast", +[1,2343,16893], +"walker", +"lexer", +[0,0,0,16895,2523], +"jquery-test-runner", +[0,89,6649,10057,6355,25054,1542], +[1,2343,16899], +"features", +"web-features", +[0,0,0,16901,2399], +"stages", +[0,2814,5284,1388,6082], +[1,2343,16903], +[0,16904,16905,2514,2537], +[0,2814], +[0,2228,4039,2203,842,25088,25063,2291,25090,3006,25070,25074,16894,25076,2253,2260,23178], +[3,7014,10], +[1,2343,16908], +[0,0,16909,16910,2443], +[0,4874,2899,91], +[0,14357,17180], +[3,16857,15], +[2,16911,10441], +[1,2343,16917], +"advanced", +[2,16911,16914], +[2,16911,2994], +[0,16920,16921,16922,2537], +"optimise", +[2,5505,5218], +[0,25106,18420,2070,2821,3368], +[0,1109,1317,1505,2814,2272,3183,2899,3257,4019,4146,4294,2924,4677], +[0,14438,24856,25109], +"@jscpd/badge-reporter", +[1,2343,16925], +[0,0,16926,16927,2537], +[0,10615,1177,1903,1937,1948,2228,25074,2256,2277,23165,2283,17565,25060,1894,2907,3980,4042,11802,4060,4255], +[0,977,16358,1388,5808,10906,5576,2821,1389], +[2,27440,27441], +[1,2343,16930], +[0,16939,16940,16941,4139], +[3,4856,9], +"okidar", +[2,16931,16932], +[2,7632,16558], +[3,12842,11], +[2,16935,4467], +"urndown", +[2,7750,16937], +[0,1139], +[0,3421,1111,2899,1177,4042,4167,2193,1317,1505,2064,4073,811,816,19232], +[0,4745,57,1753,6713], +[1,2343,16943], +[0,16945,16946,16947,2399], +"csrf", +[0,58,12184,1525,1676,1696,2070,25125,27534,1997,25126], +[0,442,8719,842,8712,16145,4874,1527,1567,1652,1177,1895,1939,1955,1192,2829,22509,22511,1894,4039,91,4523], +[0,25135,1745], +[1,2343,16949], +[0,16951,16955,2514,2537], +"@acemir/cssom", +[0,1512,1525,2151,25141,16923,25147,25144,25148,25142,25146], +[2,812,1177], +"ould", +[2,7747,16953], +[0,5536,4864,4874,7677,3363,4474,4493,91,1984], +"tsv", +"generation", +[1,2343,16959], +[0,16960,16961,16962,2487], +[0,1437,1481,1525,25154,2004,2021,2070,2654,2822,25156,25160,15555,1209,3181,12118,15371,3741,25162,814,4296,4300,25163,25164,21956,25165,4736], +[0,1429,1596,6474,2272,2899,3954,4037,4193,4196,25168,25170,4734], +[0,19271,4525,671,9654,25172,2649], +[1,2343,16965], +"@bramus/specificity", +[0,16967,16968,16969,2537], +"coffeelint", +[0,58,25177,7639,1362,25178,1874,25179,21226,3105,3107,3127,3188,25181,4300,4545], +[0,1091,2323,2384,2449,3421], +[0,1745,5284], +[1,2343,16972], +"csv-spectrum", +[0,16973,0,16974,2537], +[0,16053,17786,25190,17788,1776,25193,17798], +[0,1776,5592,13325,8626,5284,1745], +[1,2343,16976], +[0,16977,0,16978,2523], +[0,16053,1519,1522,25203,1727,2826,4783,17798], +[0,1776,1783,5592,1179,5284,676,1745], +[1,2343,16980], +[0,16981,16982,16983,2523], +[0,16950,16928,16964,15956,1638,25211,25212,2623,2661,2674,2750,3493,25213,25215,4454,4548,25216,23201,15502,25217,19851], +[0,23591,1177,1937,1953,2203,2822,3181,2899,25221,3401,3456,3549,4135,4153,4441,27602,25224], +[0,965,1936,7102,12616], +"csv parser", +[1,2343,16987], +"parse csv", +[0,16988,16992,16983,2523], +[0,25231,25232,1638,2654,25233,3493,705,19851,4738], +"csv to json", +"csv convert", +"tojson", +[0,1389,1512,2665,2272,16112,2276,3560,3760,25238,4652], +" csv to json", +[2,6270,16993], +"csv-json", +[1,2343,16997], +[0,0,16998,16999,2537], +[0,1596,2228,2240,14352,2759,2899,3954,4019,25244], +[0,1398,1867,5284,1781,3053,3065,1871,1646,4990], +[2,1649,6451], +"cucumber-", +[2,17001,6466], +"duration", +[1,2343,17005], +[0,17012,17014,2514,4139], +"enerator", +"is-generator", +[3,4143,10], +[2,17008,1851], +"stack-chain", +[2,16240,1592], +[0,200,15014,2021,2654,1209,3181,4300], +"ansi-html", +[0,1149,1389,1566,13985,1596,2759,2292,3211,2276,3758,3954,25251,4193,15136,25253,25256], +[1,2343,17016], +[0,17017,17022,17024,2523], +[0,1437,3074,3545,15826,4425,22972], +[3,1976,18], +[2,17018,4414], +"riteway", +"updtr", +[0,2272], +"unique", +[0,2272,16237,4525,1671,671,2649,25264,16238,3721], +"unique id", +[1,2343,17027], +[0,17028,17029,17030,2537], +[0,25269,25272], +[0,6503,4874,1009,1011,1177,1886,1938,2899,3421,4474,91], +[0,1781,17420,1641,15253,6813,25276,25277,1644,57,2841,25279,200], +"ospath", +[1,2343,17033], +[0,0,17035,2514,4139], +"lazy-ass", +[0,4257], +"blob-util", +[3,8129,9], +[1,2343,17043], +"@cypress/xvfb", +"zzle", +[2,6545,17040], +[2,17037,705], +[0,0,0,17048,34352], +"more-types", +[2,14614,17044], +[3,4008,11], +[2,17046,6509], +[0,1781,2844], +"cypress.io", +"mocks", +"spies", +"stubs", +[1,2343,17054], +[0,17055,17056,17060,2537], +[0,975,983,15951,1437,1457,8098,7614,2712,2856,3083,25292,4200,25294], +[0,4874,1540,2182,2675,33479,30889,4400,4507,91], +[3,13848,19], +[2,17057,3172], +"longest", +[0,6671,36,21147,8173,8172,25094,3212,8788,1973,5472,4030,2382,28726], +[1,2343,17062], +[0,17063,17064,17065,2399], +[0,1417,7272,2756,17827,3433], +[0,5517,13614,23237,10979,27571,27016,19325,1159,9254,1177,2708,3410,4103,4389], +[0,1781,1646,7185,3428,6333,7077], +[1,2343,17069], +"d3-axis", +"d3-brush", +[0,0,0,17070,2523], +[0,1781,1646,7045,6953], +"d3-chord", +[1,2343,17073], +[0,0,17076,17077,2443], +"d3-contour", +"d3-delaunay", +[0,1593,1177,1903,1938,1954,1958,1970,3400,3954,4042,4048,4055,4067,4073,4193,4384,25313], +[0,1781,2856,1925,6778,5286], +"d3-dispatch", +[1,2343,17084], +"d3-drag", +"d3-dsv", +"d3-ease", +"d3-fetch", +[0,0,17085,2514,2537], +[0,2899,1177,4039,91,4874,6503,1011,1009], +"d3-force", +[1,2343,17088], +[0,17094,13658,17095,2537], +"d3-format", +"d3-geo", +"d3-hierarchy", +"d3-interpolate", +"d3-path", +[0,21224], +[0,3917,6033,2090,1781,2150,2151], +"d3-polygon", +"d3-quadtree", +"d3-random", +"-chromatic", +[2,1655,17099], +"d3-time", +"-format", +[2,17101,17102], +"d3-timer", +[1,2343,17106], +[0,0,17109,17114,2523], +"d3-transition", +"d3-zoom", +[0,16638,16641,1429,1177,25328,2899], +"@observablehq/plot", +[3,17110,14], +[2,17111,7047], +"topojson-client", +[0,1781,2844,2860,1155,7020], +"visualiz", +[2,17115,5218], +[1,2343,17118], +[0,17119,17120,17123,2523], +[0,4430,25336], +[0,4389,19987,18718,8924,5710,2012], +"intern", +"internmap", +[0,1781,3101,22115,57,1149,7119], +[1,2343,17126], +"d3-module", +[0,17127,17131,17133,4139], +[0,3242,25343,4135,25355,25346,25353,3052,25347,25350,3051], +"histogram", +"bisect", +"shuffle", +[0,3413,3421,1157,1429,2899,4193,1177,1566], +"stic", +[0,2038], +"statistics", +[1,2343,17136], +[0,17137,17138,2514,2523], +[0,53,25363,17144,3467,3527], +[0,25366,4874,26142,1415,668,1177,1895,3171,3181,3445,1894,4042,4448,91], +[1,2343,17140], +[0,0,17141,17143,2537], +[0,4874,7677,20085,4493,91,1984], +"uniqid", +[0,6649,6710,5995,25372,89,970,5122,3857,5123], +"@jspm/plugin-rollup", +[1,2343,17148], +"selection", +"data-join", +[0,17149,17150,17151,2487], +[0,25377,3486,20508,3923], +[0,4449,2228,2907,1177,1317,2240,1389,3541,91,2665,25379,2236,2281,25383], +[0,2056,25386,25388], +[1,2343,17153], +[0,0,17154,17155,2487], +[0,4172,1192,2675,1177,23535,4468,4474,1894,91,53,2990,1387,1540,1938,1895,1955,2780,1011,1009,1915], +[0,2038,1388], +[1,2343,17157], +[0,0,17158,17160,2537], +[0,2025,2759,2899], +"dable", +[0,2038,10368,15103], +[1,2343,17162], +[0,17163,17168,17170,2487], +[0,14416,4449,2070,3171,25404,4747,15643,1209,3078,3188,4039,1544,1457,3181,4218,2659,4227,1364,2215,12930,3781,11804,25403,13388], +[2,21029,17165], +" plugin", +[2,21045,17169], +"postcss-js", +[0,1429,13333,2899,17050,4193,4707,1177,1649,4650,3758,4342,1389,2878,3752,4196,25411,1436,2900,2766,2898,192,1431,2871,4131,1954,1938,25407,2904,6063,1958,2881,25410,1903,1970,2895,22559,6061,2876], +"ails", +[0,2297,25415,8791,2297,676,5284,5472,1973,21004,25416], +"laravel", +[1,2343,17173], +[0,17174,17175,17176,2487], +[0,9421,1209,25421,3181,18868,1573], +[0,3377,1377,1429,2297,2899,4193,4453,12851,1177,814,4650,1389,4196,91,3400,2766,2898,15051,1951,2881], +[0,25425,25427,25429,1389], +[1,2343,17178], +[0,17182,17185,17186,2537], +"reverse", +"binary", +"opposite", +[0,3760,14336,25092], +"invert", +"switch", +[0,2228,1177,2307,2239,2291,3006,1954,2234,1938,1958,1903,1970,2285,2290], +[0,25425,25436,14336,25437], +[1,2343,17188], +[0,0,0,17192,2537], +"@cap", +"temulation/get-parameter-names", +[2,17189,17190], +[0,2297,25425,1429,2899,4170], +"faker-bb", +[2,7526,17193], +[2,9769,1676], +"rss-parser", +[2,2032,2663], +[2,4364,17197], +"lexxy", +[1,2343,34442], +[0,4707], +[0,1429,2297,2899,4193,4255,2900,192,4131,6063,22559,6061], +[0,25425,25436,3195], +"@date-", +"fns/docs", +[2,17204,17205], +[1,2343,17208], +[0,17211,17224,17225,2523], +"@date-fns/utc", +[3,5530,19], +[0,11935,14024,11938,11940,11943,3181], +"@types/bun", +"@vitest/", +[2,17213,1388], +[3,1198,17], +[2,2701,7188], +[2,17215,17216], +"bun", +"cloc", +"js-fns", +"jscodeshift", +"issing-exports", +[2,10634,17222], +[0,192,5467,21970,6061,6063,16608,1429,1509,1177,1903,1938,1954,1958,1970,2228,2240,2298,2307,2675,25453,2297,25455,2895,2900,25458,2899,17050,4019,4131,4193,4196], +[0,25425,25427,25462,4504,2759], +[1,2343,17227], +[0,17201,17228,17229,2537], +[0,2228,2258,2273,2298,2766,2297,2898,3524], +[0,25425,25436,1388,2887,25468,25470,25472,25473,17632,25474,25476,25479,25481,25484,25485], +[1,2343,17231], +[0,17233,17234,17235,2523], +[2,2553,20], +[0,2890], +[0,1429,25492,14416,1177,1903,1958,1970,2228,2239,2240,2291,2307,2316,2297,3006,25493,3752], +[0,25425,25436,13530,17631], +[1,2343,17237], +[0,17238,17241,17245,2537], +[0,2755,4707], +"ectory", +[2,4015,17239], +[0,192,5467,6061,6063,16608,2675,2297,2900,2899,3534,4131,4255], +"sleep", +" wrapper", +[2,1149,17243], +[0,2297,5472,25425,25436,25501], +[1,2343,17247], +[0,6203,17248,17249,2523], +[0,1429,14416,1177,1903,1958,1959,1970,2228,2234,2239,2283,2285,2290,2291,2307,2316,2297,3006,17050,4193,4196], +[0,25425,25436,7298], +[2,17257,24717,17258], +"debouncing", +"invoke", +"interval", +[1,2343,17255], +[0,17256,17259,17260,2523], +[0,2766], +[3,7621,18], +"-ascii", +[0,2228,2675,2297,1177,2765,192,4131,1954,1938,6063,16608,1958,1903,1970,2895,6065,22559,6061], +[0,25425,25514,2765], +[1,2343,17262], +[0,17263,17264,17265,2487], +[0,3183], +[0,1429,1177,1903,1958,1959,1970,2228,2234,2239,2285,2291,2298,2307,2297,2878,2881,2895,2918,3006,2899,3203,4193,6061,6063,4131,192,5467,2675], +[0,25425,25514,2899], +"decamelcase", +"lowercase", +[1,2343,17270], +"nano-spawn", +[0,17271,17280,17282,2537], +[0,1437,3074,4294], +"-tar", +[2,1679,17272], +"bz2", +[2,17273,17274], +"gz", +[2,17273,17276], +[3,17273,11], +[2,17278,4560], +[0,1429,2228,2239,2258,2273,2285,2298,2314,2766,2878,2889,3006,2899,3524], +"strip-dirs", +[0,25425,25462,2899,1429,1687,2568], +"is-jpg", +[1,2343,17287], +"bzip2", +"tar.bz", +[0,17289,17290,17291,2537], +"tar.gz", +[0,1209,3524], +[0,1177,1903,1959,1970,2228,2234,2239,2285,2291,2298,2307,2766,2297,2898,3006], +[0,25425,25436,3521], +[1,2343,17301], +[3,4852,13], +"plugin-m", +[2,17294,7912], +[2,17293,17295], +"fail-test", +[2,10740,17297], +"deprecation", +[2,1921,17299], +[0,0,17320,17324,2399], +"only-tests", +[2,16645,17302], +[3,1955,15], +"erfectionist", +[2,17304,17305], +"yml", +[2,1921,17307], +"jsonc-", +[2,17309,67], +[2,4488,10441], +[2,3390,17311], +"curly", +[2,3704,17313], +"should-s", +"emantic-", +[2,17316,3979], +[2,17315,17317], +[2,13125,67], +[0,1429,2228,2297,2899,2907,1177,2307,2239,2898,1954,1938,1958,1903,1970,2895], +" string", +"line string", +[2,13862,17322], +[0,2297,25425,25514,2907], +[1,2343,17326], +[0,17327,17328,17333,2487], +[0,1457,1675], +[0,53,5889,87,1177,2766,2297,2881,2898,2904,4042,4045,4048,4055,4067], +"dupes", +" duplicates", +[2,7293,17330], +[3,232,8], +[0,3595,6778,2297,5260,1204,6813,1932,7121,25427,25425,25544,4042], +[1,2343,17338], +"deduplicate", +"deduplicat", +[2,17336,6600], +[0,0,17339,17340,4139], +[0,2307,2228,2239,2234], +[0,25425,25436,25550], +[1,2343,17343], +"is-obj", +[0,17344,17345,17346,2537], +[0,25555,12826,824], +[0,192,5467,6061,6063,16608,4864,25558,4874,2675,2765,2297,2898,4131,91], +[0,25425,25436,7177,12825,12826], +[1,2343,17348], +[0,0,0,17349,2537], +[0,2297,25425,4193,3212], +[1,2343,17351], +[0,17353,17359,17360,2523], +"json-ptr", +[0,2215], +[3,1715,10], +"change-", +"adr", +"tracking", +[2,17355,17357], +[0,8780,1414,1177,2766,2297,25571,2881,2898,1894,4042,25575], +[0,25425,25427,11939,5284], +[1,2343,17368], +"decision record", +"kewlr", +"any decision record", +[2,17379,17381], +"simple-assert", +"lcov-re", +[0,9719,17378,17385,2443], +"sult-merger", +[2,17367,17369], +[3,1903,16], +"rict", +[2,17371,17372], +"@js-temporal/polyfill", +[3,1935,15], +"ilenames", +[2,17375,17376], +[0,1429,1596,2899,3400,3421,4193,4196], +[3,25135,11], +"chai util", +"al decision", +"deep equal", +"object equal", +[2,17365,17394], +[0,25425,16237], +[1,2343,17387], +[0,17408,17417,13533,4139], +"array-b", +"-byte-length", +[2,2347,17389], +[2,17388,17390], +"es-get-iterator", +"is-a", +" record", +"is-arguments", +"is-ar", +[2,25135,17401], +"ray-buffer", +[2,17396,17398], +"is-date-object", +" decision", +"gex", +"is-regex", +"is-s", +"hared-array-buffer", +[2,17404,17405], +[2,6961,7313], +[0,2070,3181,4689], +"side-channel", +"-boxed-primitive", +[2,4707,17410], +"which-", +[2,17412,6910], +"typed-", +"typed-array", +[2,17412,17415], +[0,48,53,85,87,192,5467,16405,1193,1429,1431,1610,1177,1938,1955,2675,2759,2765,1192,2297,2878,2881,2900,2923,2990,3150,2899,3697,1894,3758,4257,2924], +"available-typed-arrays", +[1,2343,17427], +"to", +"has-proto", +"has-t", +[2,17397,17394], +"yped-arrays", +[2,17422,17424], +"software quality", +[0,0,7923,17428,4139], +[0,8652,2926,25591,6938,25592,25594,25595,25596,2927], +"rehype-katex", +[1,2343,17431], +[0,0,0,17432,2487], +[0,2927,3925,364], +[1,2343,17434], +[0,17435,17441,17442,2487], +[0,25605], +"is-m", +"able-object", +[2,4688,17437], +[2,17436,17438], +"jsmd", +[0,18073,29457,11976,15288,7677,4039,25609,4481,1984,26108,26131,26132,26124,26104,29233,26123], +[0,6803,6692,1542,2325,9553,25611,13901,5995,25513,1552,3230,7827,3259,14873,3151,3300,3084,6650,1416], +[1,2343,17444], +[0,0,17445,17446,2537], +[0,1999,4579], +[0,1111,200,1473,1512,7201,7009], +"is-path-cwd", +"is-path-", +"inside", +[2,17448,17449], +[1,2343,17452], +[0,17454,17463,17464,2523], +"folders", +[0,1999,25625,1676,1209,21104,3932,4435,25623,1511,1525,2727,4025,2179,25624], +"directories", +"trash", +"unlink", +"cleaning", +"rmrf", +"friendly", +"gulpfriendly", +"filesystem", +[0,3519,3421,4481,1429,2763,4389,2675,2899,3259,4193,1177,3260,4039,1787,3203,4246,25635,4474,25633,1894,4387,1596,1610,2861,4196,91,4874,21106,2990,25629,25634,1431,4232,25632,1938,25628,25636,1895,1955,13850], +[0,14872,3766,14873,25638,3259,25639,4246,12593,3243,9381,25640,6147,1747,18035], +[1,2343,17466], +[0,17467,17469,17470,2537], +[0,19185,2071,17471,2807,2822,3183,29943,3527,3530,25648,4300,4763], +"temp-write", +[0,554,17212,7637,7892,20374,4891,11112,19706,32765,4494,91], +[0,19748,25658,1227,200,25660,4796,13735,4797,11337,25661,6971,6813,1586,2100,5284,671,25663,25664,18750,6646,23255,3383,20529,553,91,25667,25669,17507,664], +"formatly", +[1,2343,17473], +[0,0,17476,17478,2487], +"in-range", +"time-", +[0,1177,2205,25675,3072], +"time-span", +[0,1623,3583,12616,3195,25501,25677,17631,25550,25678,25679,25682], +"defer", +"out", +"timeout", +[1,2343,17483], +[0,17486,0,17488,2537], +"settimeout", +"tick", +[0,3171,4734,1676,25688,3441], +"threshold", +[0,7200,6997,6949], +[1,2343,17490], +[0,17491,17499,17502,2537], +[0,1080,1560,1562,16358,25696,14858,1833,1869,2145,25699,2657,2941,3173,3440,3494,4266,1000,4590], +"@vue/c", +"ompiler-sfc", +[2,17492,17493], +"callsite", +"deps-", +"deps-regex", +"is-c", +[0,1414,25710,4216,4255,4342], +"ore-module", +[2,17498,17500], +[0,5122,1896,27,13527,5130,2663,16196], +"patch-", +"patch-version", +[1,2343,17506], +[0,17508,17509,17510,2523], +"unused", +[0,25717,7810,13055,25718,2141,4507,4763], +[0,5517,11976,107,5522,28385,27134,36694,24819,9240,2934,4342,4483,36684,4494,91], +[0,2934,25723,15237,1781,20443,57,1669], +[1,2343,17512], +[0,17513,17516,17517,2443], +[0,25718,25728,1000], +"deprecate", +"deprecated", +[0,1909,2675,2934,2899,3421,4170,4342,1906], +[0,25732,1781,25723,2934,20443], +[1,2343,17519], +[0,0,17520,17521,2523], +[0,1503,1192,3130,4255], +[0,2934,2663,2940], +"is-relative", +[3,9488,17], +[1,2343,17525], +[0,17530,17531,17532,2487], +"cjs", +"detective-cjs", +[3,9509,10], +[2,17528,4354], +[0,1413,1437,25743,3440,25745], +[0,1366,1414,1909,2934,25748,25749,4193,4342,1906], +[0,2934,2663,2942,3073], +[1,2343,17534], +[0,17535,17536,17538,2537], +[0,1676,2941], +[0,1177,1903,1958,1970,2759,2934,2948,2899,4170,4342], +"indentation", +[0,2934,2663,2944,25757], +"identify", +"space", +[1,2343,17542], +[0,17543,17544,17545,2399], +[0,1676,2657,2941,3509], +[0,2934,3421,1437,2675,2899,1177,2114,4342,25763,3985,2990,192,2829,3995,1982,5467], +[0,2934,2663,4082,38], +"mm", +"egg-bin", +[1,2343,17549], +[0,17550,17552,17553,2443], +[0,1676,25771], +"ontributor", +[0,1177,1903,1938,1954,1958,1970,2759,2934,2899,4342], +[0,2934,2663,2090,2947,25774], +[2,1884,1347], +[1,2343,17556], +[0,17557,17558,17559,2537], +[0,3291,3754,25782,1552,4747,1209,4333,2026,1364,25781], +[0,1429,1149,2899,4193,4170,4342,1506], +[0,12692,3768,6812,1552], +[1,2343,17561], +[0,17562,17563,17564,2537], +[0,25789,1687,1177,25791,25792,2000,25793,2036,2607,2851,2854,3188,4127,4227,4232,4351,25794], +[0,1501,25796,1948,25797,4039,4135], +[0,1973], +"grunt-exec", +[3,2300,12], +[2,17566,2759], +[2,2235,2924], +[1,2343,17570], +[0,17571,17572,17573,2523], +[0,9478], +[0,1166,4135,25814,4481,1906], +[0,25816,15525,3378,4750,3383,6661,25188,1237], +[1,2343,17575], +[0,0,17576,17587,2537], +[0,2861,25821,1317,25822,25823,2768,1776,1209,3152,3736,25825,4019,25826,4545], +"@types/diff", +"gan.js", +[2,12456,17578], +"@types/nopt", +"all-", +"ibutors-cli", +[2,10741,17582], +[2,17581,17583], +[3,1945,18], +[3,3463,9], +[0,7189,6564,6681,6887,614], +[1,2343,17593], +[2,2036,2091], +"image-", +[2,17590,11526], +"is-ci-cli", +[0,0,17594,17596,34352], +[0,4248,2675,2297,2899,4193,1177,25846,4042,25850,25840,4535,2900,2918,2990,25844,25848,25851,2897,8850,2891,25843,2881,2912,2895,2910,25853,25838], +"side-by-side", +[0,25855,3053], +"line-by-line", +[1,2343,17601], +"difftohtml", +"colorized", +[0,0,17602,17603,2399], +[0,1317,2064], +[0,2967,2965,2966,23119,1871,19728], +[1,2343,17605], +[0,0,17606,17607,2487], +[0,20340], +[0,2966,25866,6983,1671], +"data-s", +[2,14386,3769], +[2,17608,17609], +[1,2343,17614], +[3,1915,23], +[2,17612,8861], +[0,17624,0,17628,4139], +"Directed Graph", +"directed", +" graph", +[2,17616,17617], +[2,17616,2218], +[3,1718,14], +"Directed", +"digraph", +"java", +[0,3420,2714,4390,3532,4248,3348,1437,2020,2742,3478,4207,10761,4747,25871,1680,24004,3483,4039,4135,1842,2822,3479,4430,25872,2151,2182,2720,3093,25873,13786,25874,1513,2753,2777,3181,25875,666,2188,3249,27921,91,25878,1595,2200,25879,25880,4174,2704,25881,3393,25884,4025,25886,4290,4748,25887,692,20312,9322,25888,25891,25892,3386,635,25893,26567,4728,643,3397,9479,10744,4588,16310,25898,25901,16307,25904], +"java script", +"JavaScript", +"type script", +[0,2968,6646,7117], +"vertex", +"Vertex", +"edge", +"Edge", +[1,2343,17638], +"graph theory", +"Graph Theory", +"graph ", +[2,17636,6956], +[0,17639,17646,17650,2487], +[0,25910,20314,4484], +"weighted", +"Weighted", +"unweighted", +"Unweighted", +"adjacency", +"Adjacency", +[0,811,8850,816,1009,1011,25917,25920,1429,1414,1437,1595,1610,1177,2151,15843,2070,2205,2228,2240,2247,2256,2291,2311,2314,25922,2777,25923,25925,21898,3183,2899,25928,3400,3518,25929,3541,1862,25930,814,4042,4073,4076,4135,4172,4436,4474,91,12247], +"connectivity", +"cycle", +"acyclic", +[0,7236,7303,6885,1623,6965,7025,6898,6932,7258,695,7228,6766,7028,6912,57,7121,6962,6968,590,592,5376,7198,6705], +"traversal", +"depth", +"Depth", +[1,2343,17655], +[0,0,17682,17684,2537], +"breadth", +"Breadth", +" first search", +[2,17652,17658], +"dfs", +"DFS", +[2,17656,17658], +" search", +[2,6395,17663], +[2,17656,17664], +"bfs", +"BFS", +"algorithms", +[2,17636,17668], +"repre", +"sentation", +[2,17670,17671], +[2,17636,17672], +" matrix", +[2,17647,17674], +" list", +[2,17644,17676], +"adjacency ", +"matrix", +[2,17678,17679], +"node ", +[0,48,53,87,192,5467,442,27928,19344,1193,1610,1622,1700,1701,1177,1895,20281,1938,1939,1953,1955,1982,2203,2675,1192,695,25936,2990,3144,3400,1894,4257,4294,4523,2924], +"node degree", +[0,2924,1194,695,6766,7228,1623,7121], +[1,2343,17694], +"sparse graph", +"dense graph", +"directed ", +[2,17688,17648], +"acyclic graph", +[2,17688,17690], +"DAG", +"topo", +[0,17703,17707,17708,2537], +"topologic", +"topological", +"sorting", +"strongl", +"y connected components", +[2,17698,17699], +" digraph", +[2,17640,17701], +[0,25946,25948,25944], +"weighted edge", +[2,17688,17704], +"structures", +[0,3421,4389,3348,1090,1290,2554,4255,91,4874,87,25951,25950], +[0,2970,25954,3101,18035,1747,1542,13901,1781], +" structure", +[2,2382,17709], +[3,17610,14], +[2,17710,591], +[2,6957,591], +[2,17711,591], +"in data structures", +[3,17715,17], +"DataStructure", +[2,17717,591], +[1,2343,17725], +"iterative", +"Node.js", +"CommonJS", +"UMD", +"esmodule", +[0,17728,17736,17738,4139], +"java.util", +"c++ stl", +[0,25960,15160,25959], +"c++ std", +"Python collections", +"System.Collections.Generic", +"STL", +"stl", +"Collection", +"Collections", +[0,25964,3421,2070,4389,4400,2080,4039,12694,1804,2554,640,4255,1610,25963,25968,15164,25974,25969,1705,25972,25967], +"insertion", +[0,25954,2970], +"deletion", +"OOP", +[1,2343,17742], +[0,17743,17744,17708,2443], +[0,23040,25983,25987,25990,25981,25985], +[0,3421,4389,1087,4193,1090,2080,12694,25995,26000,2554,4255,25963,1389,4092,25992,25996,1537,25994,25997,1705,25951,25967], +[1,2343,17746], +[0,0,17747,17748,2443], +[0,1166,26007,26008,26009,26006,26010,26014,3273,26015,4441,1906], +[0,2975,26006,26017,8893,1871,17354,1687,2062,2163,9549,9550,3797,26020,6109,2585,3529,19051], +[1,2343,17750], +[0,17755,6538,17756,2399], +"voice", +[2,7659,17751], +"backend-", +[2,17753,10057], +[0,635,9510,26026,1687,3181,3386,3483,4390], +[0,3378,3409,2977,200,1687], +"product", +"productivity", +[1,2343,17760], +[0,17761,17762,17771,2523], +[0,635,9479,643,1458,3386,3483,3727,29698,3917,4135,4174,9455], +[0,9516,26037,9515,9449,1437,18248,26035,4384], +[2,7659,4729], +"lodash.s", +"nakecase", +[2,17764,17765], +"builders", +[2,7659,17767], +"formatters", +[2,7659,17769], +[0,3378,3409,2977,200,9527,2979], +[2,7659,1735], +[1,2343,17774], +[0,17775,6538,17776,2523], +[0,635], +[0,3378,3409,2977,200,3358,2980,26044], +[1,2343,17778], +[0,0,17779,17780,2537], +[0,48,53,5712,5788,87,94,8850,10615,1208,1429,1597,26049,1610,32572,2759,1192,25913,26052,3183,2899,3400,3421,26053,4005,4039,4042,4484], +[0,7285,7310,6988,6847,5131,7211], +[1,2343,17782], +[0,17783,17784,17785,2487], +[0,2051,2107,10392,26060,2747,3932,814], +[0,1509,1177,1889,1895,1954,2022,2899,3421,4193], +[0,9753], +"cache-point", +[2,9480,6769], +"file-set", +[1,2343,17791], +"reduce-", +[0,0,17792,17794,2537], +[0,11976,5087,4874,8157,1595,1192,91,4579], +"without", +[0,1595,1541,8309,7193], +[1,2343,17796], +[0,0,0,17797,2487], +[0,26072,1823,26073,1936,2814,163,26074,89,4500,1002], +"walk-back", +[1,2343,17802], +"dmd-", +[3,2475,9], +[0,17806,17807,17808,4139], +"ample", +[2,17801,17803], +[2,17800,17804], +[0,1525,2992,3170,6479,26379,4745], +[0,5522,107,192,5467,442,7677,22839,26081,1610,1177,1895,1953,1955,10964,2675,3211,1894,4135,91,1984], +[0,671,3358,2989,1177,1894,4320,1501,19269,4354,1671,2649], +[1,2343,17810], +[0,17811,17812,17814,2537], +[0,26087,26090,2752,2753,26092,26095,26099,3478,4094], +[0,1503,1702,22845,2990,3074,3421,3697,4237,13351], +"jsdoc2md", +[0,200,5957,3392,9000,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], +[1,2343,17816], +[0,17817,17820,6226,2487], +[0,1486,1511,2017,3077,4038,4726], +"agnostic", +"dnd", +[0,13352,4094,13351], +[1,2343,17822], +[0,17823,17824,2514,4139], +[0,26114,26111,5438], +[0,26121,26117,10675,26122,10706,4484], +"-protocol", +[2,1730,17825], +"jsonify", +[1,2343,17831], +"rpc", +"callbacks", +[0,17832,17833,17834,2523], +[0,1209,3183,1387,26129,1549], +[0,2899,4193,1177,3215,2759], +[0,1098,14576,2947,36,5001], +"@ffmpeg-installer/ffmpeg", +[3,1733,16], +"mmon", +[2,17836,17837], +[1,2343,17840], +[0,17841,17842,17843,2487], +[0,3459,1594,710,1512,3237,1544,1457,26136,4150,2012,3427,26137,23009], +[0,2899,1177,2272,4342], +[0,6400,5001,4990,36,27,200], +[1,2343,17845], +[0,17854,17855,2514,2537], +"@puppeteer/browsers", +[3,13394,12], +"ium-driver", +[2,17847,17848], +"geckodriver", +[2,13391,17850], +[2,5680,13392], +[2,13391,17852], +[0,1457,26144,15767,4729], +[0,1509,2899,4170,4193], +[1,2343,17857], +[0,17858,17860,17861,2537], +[0,16166,2070,25923,2822,23444,3006,1209], +"posthog-node", +[0,2228,2273,2283,23466,22081,2305,3752,4193], +[0,21779,4745,16166,2228,1541], +[1,2343,17863], +[0,17864,17865,17866,2537], +[0,1144,3249,3539,6477], +[0,2228,2240,26158,1906], +[0,4796,2070,2228,3001,3529,26160,13017,3209,3005], +[3,246,8], +[1,2343,17869], +[0,0,17870,2514,2487], +[0,1596,1177,1954,1192,1894,4257], +[1,2343,17873], +"mecano", +[0,17874,17875,17876,2537], +[0,25190,3088,26169,26172,26173,26175,26178,26179,26180,26181,26182,26183,26184,26187,26189,26190,26192], +[0,3310,1187], +[0,3304,36,5122,4990,6400,5001,1594,3171,4030,3212,5592,2658,3088,5995,4967,26196,2665,27,13333,2671], +"@balena/dockerignore", +"docker", +[1,2343,17880], +[0,17882,17883,17885,2537], +"docker-modem", +[0,25377], +[0,1175,1178,1195,1198,14211,1267,26204,1290,26205,1408,1594,1895,2228,13831,2236,2253,2256,2281,2283,26208,2291,3198,26210,18463,2311,26212,17568,2675,2990,3006,2899,1894,26213,12936,91,4535,2924,4681], +"docker.io", +[0,26216,26217,13901,26218], +[1,2343,17887], +[0,17888,7923,2514,2443], +[0,1170,1676,26223,4747], +"@bevry/pluginloader", +"ambi", +[1,2343,17894], +"ansistyles", +"bal-util", +[0,17925,17932,17933,2537], +"caterpillar", +"docmatter", +"-baseplugin", +[2,1737,17897], +"eachr", +"envfile", +"errlop", +"-grouped", +[2,13771,17902], +[2,12598,17903], +"extendr", +"extract-opts", +"ignorefs", +"xtorbinary", +[2,8828,17908], +"jschardet", +"lazy-require", +[3,3732,9], +"title", +[2,17912,17913], +"query-engine", +"rfc-log-levels", +"safefs", +"ps", +"safeps", +"scandirectory", +"taskgroup", +"typechecker", +"unbounded", +"watchr", +[0,1595,1676,2071,26228,4747], +"@bevry/", +[3,17583,12], +[2,9787,17927], +[2,17926,17928], +[2,15340,6706], +"kava", +[0,1178,14080,1253,1264,1267,1734,1767,1177,1903,1938,1939,1954,1958,1966,1970,1192,3446,26230,4135], +[0,26232,26234,6698,3015,671,4749,3378,9654,1965,1644], +"projectz", +"valid-", +[2,17935,7204], +[1,2343,17941], +" and deployment", +[2,6147,17938], +" manage", +[0,0,0,17949,2537], +"ment system", +[2,17940,17942], +[2,1563,17943], +"dms", +[2,1746,17943], +" agnostic", +[2,1351,17947], +[0,5260,7268,614], +"templating", +[2,11607,5001], +[1,2343,17953], +[0,0,0,17954,2537], +[0,5194,5260,7268,614], +[1,2343,17956], +[0,0,0,17957,2399], +[0,26249,3426], +[1,2343,17959], +[0,0,0,17960,2537], +[0,26249,1420], +[1,2343,17962], +[0,0,0,17963,2523], +[0,26249,26258], +"docsify", +"docsify.js", +"tabs", +[1,2343,17968], +[0,0,0,17969,2537], +[0,26249,1675], +[1,2343,17975], +"@textlint/markdown-to-ast", +"anchor-markdown-header", +"section", +[2,9787,17973], +[0,0,0,17976,2523], +[0,26249,19400], +"bitbucket", +"gitlab", +"ghost", +[1,2343,17981], +[0,0,0,17983,2523], +[2,20413,4699], +[0,26249,3033], +"doct", +"rine-temporary-fork", +[2,17984,17985], +[1,2343,18006], +"globals-docs", +"konan", +[2,3138,14510], +"micromark-", +"util-c", +"haracter", +[2,17992,17993], +[2,17991,17994], +"filepath", +[2,13721,17996], +[3,3999,9], +"ference-links", +[2,17998,17999], +"unist-", +[2,18001,9381], +"vfile-", +[2,18003,16237], +"vfile-sort", +[0,0,0,18010,2523], +"chdir", +"-schema", +[2,1745,18008], +[0,26249,14741], +"jsdoc3", +"nums", +[1,2343,34449], +[0,26249,3038], +[1,2343,18021], +"big-integer", +"-search-bounds", +[2,17180,18017], +"int64-buffer", +"priorityqueuejs", +[0,0,0,18022,34352], +[0,26249,3040], +"semaphore", +[1,2343,18025], +[0,0,0,18026,2537], +[0,26249,26287], +[1,2343,18029], +"cosmosdb", +[0,0,0,18030,2537], +[0,26249,26292], +"cosmos db", +"document ", +[1,2343,18034], +[0,0,0,18038,2537], +"database", +[2,18032,18035], +"nosql", +[0,1209,26249,7268,614], +[1,2343,18040], +[0,0,0,18041,2523], +[0,26249,26301], +"crowdin-cli", +[3,2694,9], +"gifsicle", +[2,18043,18044], +"jpegtran", +[2,18043,18046], +"png", +"optipng", +[2,18043,18049], +[2,18043,4361], +"tcp-port-used", +[1,2343,18054], +[0,0,0,18057,2537], +"tree-node-cli", +[2,15862,1868], +[0,26249,26307], +[1,2343,18060], +"glob-promise", +[0,0,0,18062,2537], +"websites", +[0,26249,3053], +"open source", +[1,2343,18065], +[0,0,0,18066,2399], +[0,26249,7906], +[1,2343,18075], +[2,15774,1722], +"-languages", +[2,6327,18069], +"to-vfile", +[2,9406,2741], +"lru.min", +"offline-search", +[0,0,0,18076,2537], +[0,26249,1698], +[1,2343,18078], +[0,0,0,18079,2537], +[0,26249,3061], +[2,1611,1388], +"height", +"classlist", +[1,2343,18084], +[0,0,0,18085,2523], +[0,26249,3063], +[1,2343,18088], +"domelementtype", +[0,0,0,18090,2523], +"entities", +[0,26249,3065], +[1,2343,18092], +[0,18093,0,18094,2537], +[0,22983,22985], +[0,26249,1283], +[1,2343,18096], +[0,0,0,18098,2523], +"raster", +[0,26249,6925], +[1,2343,18100], +[0,0,0,18101,2537], +[0,26249,3071], +"qunit-tap", +"lodash.sample", +"paths", +"ncludepaths", +[2,8851,18105], +[1,2343,18109], +"math", +[0,18111,18115,18116,2523], +"mathml", +[0,2353,998,1856,17003,26351,26350,26349], +"secure", +"sanitizer", +"purify", +[0,3421,4389,2675,26357,1177,10824,26358,2990,15797,15804,15793,15801], +[0,3073,2942,1676,1409,4709], +[1,2343,18118], +[0,18119,18120,18121,2523], +[0,20040,16232], +[0,1906,1166,4481,4294], +[0,3656,200,8429,6876,7169,5511,2568,20597,2089,20598,6574,3073,6807,7009,8634], +[1,2343,18123], +[0,18125,18126,18127,2537], +[3,4257,9], +[0,1107,1477,4208,4294,4726], +[0,4874,4290,26371,4481,16041,1906], +[0,3073,2942,6807,200,7009,6048,7201,4166,3076,26375,26376,6811,8634,3730,10036,7521], +[1,2343,18129], +[0,18130,18131,18133,2523], +[0,26383,1676,26385,4038,26388], +[0,192,5467,26390,13757,24030,1177,1881,1895,19527,1938,1955,2151,2675,2742,3421,1894,3752,4384,91], +"expand", +[0,6807,3073,15227,202], +[1,2343,18136], +"interpolation", +[0,0,18138,18139,2523], +"substitution", +[0,26398,4874,2228,2240,2247,2253,2256,24293,2273,2281,2283,26399,26400,2765,4474,91], +[0,3073,2942,6807,1388], +[1,2343,18141], +[0,0,18144,18146,2399], +"archive-type", +"ext-name", +[0,26406,1894,91], +"filenamify", +[0,18108,3080,26408], +"is-zip", +[2,4551,1398], +[1,2343,18150], +[0,18151,18152,18153,2487], +[0,1797,1704,26413,1149,1676,7077,2026,26416,1309,1362,2712,3361,1364,4148,26417,26420,26423,26426,26429,4547,26435,26438,26443,26448], +[0,3421,1429,2228,2297,2899,4193,4707,1177,1596,2240,26453,4342,1389,1719,4196,2298,2900,2291,1575,26455,26457,2040,2236,2300,2871,26459,2283,26462,2281,25407,26465,2881,25410,26466,2895,26470], +[0,5122,7096,4030,5592,2026,4031,2934,1303,1965,12593,3259,18037,1550,3230,26472,3243,25638,14873,4217,26473,5130,5131,26474], +[1,2343,18155], +[0,18156,18159,12113,2523], +[0,9673], +"repository", +"tarball", +[0,1389,1839,4384], +[1,2343,18161], +[0,18162,18163,18164,34352], +[0,26484], +[0,4494,2675,4400,1177,1209,1701,4474,91,4874,4870,6494,192,26488,26486,13789,25298,5467], +[0,18035,1747,1804,26490,21687,2117,6671,2703,26492,26493,1388,1999], +[1,2343,18166], +[0,0,18167,18168,2523], +[0,4874,1317,668,3127,3188,1894,4384,4483,4508], +[0,6879,6650,2325], +[1,2343,18175], +"import-from", +"parse-c", +"md-args", +[2,18171,18172], +[2,4182,4562], +[0,0,18176,18177,2399], +[0,6373,968,26503,4042,4057,91,1983,1984,26504,25079,26507], +[0,26509,26510,26511,26512,26513,26514,26516,26517,26520], +[1,2343,18179], +[0,18180,18184,18187,34352], +[0,1149,1326,26528,3263], +[3,3369,12], +"ckage-data", +[2,18181,18182], +[0,1596,2759,3188,2899,3202,4170], +[3,16398,19], +[2,18185,18182], +[0,158,1398,26532,3729,24800,16662,16661,21881,20637,18048,20639,12712,26533,26534,6870,26535,1504,14908,23119,26536,26537,26539,9135,26541,26542,26543,6792,13615], +[1,2343,18189], +[0,18190,18191,18193,2523], +[0,26548,26551,16053,25874,1519,1522,26552,25190,2934,26553,3445,3762,16057,17798], +[0,2829,26192,3310,26556,1187], +"dox", +[0,3088,36,27,13333,2671,5995,2665,3304,5122], +[1,2343,18195], +[0,18196,18197,18198,4139], +[0,1437,1513,1676,1836,16473,25623,26563,2089,2149,2572,26565,2584,1161,2822,26567,26568,3188,3467,3718,12443,9340,3992,3999,26572,26573,4449,18071,4549,18002,4555,12447,3348,12449,4707,4728,26574,4747], +[0,26578,5245,12396,7637,26579,26581,4874,6520,9315,7819,26584,22092,4892,1610,19878,4207,4294,91,4579], +[0,1783,26586,26587,5472,1745], +"spawn-", +"please", +"spawn-please", +[1,2343,18204], +"@types/temp", +[0,18205,18206,18207,4139], +[0,5012], +[0,442,816,6373,1317,19839,1567,1177,1894,23535,4042,4228,4232,1984], +[0,1871,26597,12938,17950,15139], +[1,2343,18209], +[0,18210,18211,18212,2487], +[0,4729,1170,2832,4484,2018,1209,2738,7665,18730], +[0,1177,4508,9241,91,4874,3400,13204,4870,1011,10638,26606,1009], +[0,26608,21009,91,1723,10339,17623,5284,26611,26614,26617,26620,26622,24090,26624,26626,16697,26628,26631,1745,26632,26633,3091], +[1,2343,18214], +[0,18215,18216,18217,2537], +[0,1437,2051,2205,4600,3249,3505,4300], +[0,2228,2899,4170,2240], +[0,1370,2323,17461,21779], +[1,2343,18219], +[0,0,18221,18222,2537], +"bplist-parser", +[0,8780,4874,1166,2215,21537,4400,4481,1906], +[0,7148,3188,7048,17455,17453,7204,6857,3403,5933,7029,26647,26648,6899,7147,2150,17462,16503], +[1,2343,18224], +[0,0,0,18238,2523], +"alex", +[3,14237,14], +"bjs", +[2,18226,18227], +[2,1884,2081], +"fbjs-scripts", +"gulp-d", +"erequire", +[2,18231,18232], +"stats", +[2,18234,4408], +"webpack-st", +[2,18236,2187], +[0,7048], +"draftjs", +"typed-binary", +"richtext", +[1,2343,18243], +[0,18244,18245,18246,2537], +[0,10780,1139,1301,1362,26657,2866,26658,3507,4545,4736], +[0,4874,1389,26662,26663,1177,26664,2899,1241,91,4535], +[0,20697,1936,26666,4718,1783,5980], +[1,2343,18249], +"just-extend", +[0,18251,18257,18261,2487], +[3,5371,20], +[0,7709,15288,26675,26677,26678,26681,26684,26412,26685,29310,1091,1309,1437,8536,6809,1481,21847,23872,2822,2863,3000,3203,3260,3310,3363,3509,3519,3547,3951,4094,4164,4213,4246,4521,17142,1002], +"ring", +"inline-string", +[2,18250,18253], +[2,18250,2278], +"cypress-", +[0,28091,26688,9687,26690,28084,28092,20886,26694,6494,7637,5542,12461,9240,1009,1011,1177,1895,1955,2150,1192,3403,1894,4232,4342,4468,4469,4480,91], +"file-upload", +[2,18256,18258], +[2,2918,4195], +[0,5995,5592,4030,6710,91,18035,30967,28976,6354,28986,29686,26147,29690,13126,7827,25638,3259,4521,12659,1303,5165,18258,13901,6949,29732,29735,30183,6688,30184,33629,14344,29744,3097], +[1,2343,18264], +"dragndrop", +[0,0,18268,18269,2523], +" and drop", +[2,7518,18265], +[3,12322,11], +[0,19181,26706,578,583,587,32379,26707,4870,4874,4880,4883,1009,1011,1497,1637,1177,4828,1961,1209,3286,3561,3566,3613,26710,26712,1894,89,3824,4164,9348,26713,4493,91], +[0,181,26709,13083,4403,26715,26717,89,26720,91,5284,6400,4967,6073,181,26726,1487,17758,26727,4627], +[1,2343,18271], +[0,0,18273,2514,2523], +"tsutils", +[0,19987,19989,19988,2012,7115], +[1,2343,18283], +"dts-critic", +[3,7935,17], +[2,18276,594], +[2,15438,57], +[2,18276,18278], +"versions", +[2,4524,18280], +[2,18276,18281], +[0,0,18291,18292,2487], +[3,15891,13], +[2,18284,4299], +[3,7729,14], +"able-str", +"ingify", +[2,18287,18288], +[2,18286,18289], +[0,4874,1009,1011,7677,1165,1414,1177,1883,1915,2832,26743,2278,4320,5978,91,1983,26744,1984], +[0,26741,26746,1932,26747,590], +[1,2343,18294], +[0,18296,11686,18297,2537], +[2,11513,2527], +[0,3368], +[0,1783,26755,6892], +[1,2343,18299], +[0,18300,18301,18302,2523], +[0,1139,18089,26761,26762,26763,26764], +[0,5583,811,816,10615,1111,1317,1414,1429,1177,1903,2026,2193,2600,2805,5944,3112,7612,3114,26767,26770,26772,26774,26776,7617,7648,2899,26777,3278,4042,4167,4342], +[0,1783,57,20627,3105,26780], +[1,2343,18304], +[0,0,18305,18306,4139], +[0,5328,1166,5946,3165,4232,4255], +[0,1783,3105,26780,10345,26786], +[1,2343,18308], +[0,0,18309,18310,2523], +[0,5583,816,10615,1414,1177,1903,3105,7648,2899,4042], +[0,26780,3105,1783], +[1,2343,18342], +"dw-neit-", +[2,18312,1512], +"dw-neit-c", +[2,18314,11163], +[2,18315,3007], +[2,18312,45], +[3,1793,11], +"-des", +"ign-react-slick", +[2,18319,18320], +[2,18318,18321], +"rc-co", +"mponent", +[2,12796,9948], +[2,18324,18325], +[2,18323,18326], +[2,18312,18327], +[3,18328,21], +"e-observer", +[2,15557,18330], +[2,18329,18331], +[2,18329,11194], +[2,18329,11184], +[3,18334,22], +[2,18335,13168], +[3,18328,12], +"ascader", +[2,18337,18338], +[2,18337,5449], +[3,18328,13], +[0,0,18309,18352,4139], +"llapse", +[2,18341,18343], +[3,18328,11], +"dialog", +[2,18345,18346], +[3,18347,12], +[2,18348,9997], +[3,18349,13], +[2,18350,11206], +[0,26780,3105,1783,3113,26796,26799,26800], +"field-form", +[2,18345,18353], +[2,18345,158], +[3,18355,12], +[2,18356,1020], +[2,18357,11211], +"mentions", +[2,18345,18359], +[3,18360,14], +[2,18361,11215], +[3,18360,12], +[2,18363,11218], +[2,18345,9044], +[1,2343,18395], +"pagination", +[2,18345,18367], +[3,18368,12], +[2,18369,9947], +[2,18369,10148], +[2,18345,6882], +[3,18372,12], +[2,18373,11227], +"segmented", +[2,18345,18375], +[3,18376,13], +[2,18377,4021], +[3,18376,12], +[2,18379,10205], +[2,18379,11234], +[2,18379,10222], +[2,18345,17966], +[3,18383,12], +[2,18384,11241], +[2,18384,11243], +[2,18345,614], +[3,18383,14], +[2,18388,2699], +"ooltip", +[2,18384,18390], +[2,18386,11245], +[3,18387,12], +[2,18393,184], +[0,18396,18397,18398,2537], +[0,1525,1792,2051,2600,3524,4001,26806,4431,4449], +[0,1596,2759,26808,4255,4389], +[0,1783,2636,6270,1283], +[1,2343,18400], +[0,0,18401,18403,2537], +[0,4874,1414,1437,1894,3985,3998,4294,4505,91,1906], +"control flow", +[0,14903,1783,26815,176,15847,2585], +[1,2343,18405], +[0,0,18406,18408,2443], +[0,17212,4874,4880,4883,33492,668,89,3824,3857,15728,26827,91,188], +"zrender", +[0,1783,33510,89,3698,1219,188,12072,8588,23332,33512,3857,1936], +"@lang/rollup-plugin-dts", +[1,2343,18414], +[2,14678,17116], +[2,9816,1974], +"apache", +[0,18416,16487,18417,2537], +"data-viz", +[0,1537,26835,2226,26836,26837,26838,3183,26839,22230,4001,26840,22557], +[0,26786,20627,1739,1746,1745,26842,156,4017,3966,1783,5980,1932,9591,11043,4001,26843,8924,3902,176,26845,26847,10631,6033], +[1,2343,18419], +[0,18429,18436,18437,2523], +[2,6038,1541], +"gulp-e", +"xclude-gitignore", +[2,18421,18422], +"gulp-rep", +[2,18424,2902], +"gulp-tap", +"linez", +"os-locale", +[0,3167,27252,18578,26852,28035,28719,28722,26987,4290], +[3,5248,9], +"t-stream", +[2,18430,18431], +[3,11320,11], +"ugh2", +[2,18433,18434], +[0,442,19344,1091,1166,1414,26854,1177,1942,1953,1964,1982,26855,2205,2822,26696,2858,3105,26770,26776,7617,17250,17269,3400,4409,4452,91,2924,4677], +[0,1783,671,5980,26859,3124], +"@types/vinyl", +"-fs", +[2,18438,18439], +[1,2343,18445], +"fix", +"enforce", +"gulpplugin", +[0,18446,18447,18448,2399], +[0,1525,1696,2687,2822,2858,26865,3124,3105,3181,26866,25648,27921], +[0,1166,17269,1906], +[0,1783,3124,200,13326], +[1,2343,18450], +[0,0,18451,18452,2537], +[0,5517,26873,26876,16607,6063,6065,16608,16612,1448,20627,1610,12607,668,26739,1177,2600,3105,26878,26880,26881,4039,4131,23878,4484,91], +[0,1783,26885,1936], +[1,2343,18454], +[0,18457,18465,6604,2537], +"keepalive", +[2,4575,18455], +[0,9569,9573,7610,9577,9548,9568,9547,2745,9556,9565,9558,9560,9552,9562,9566,3023,3032,9563,3105,3114,9580,9584,5961,9554,4110,9550], +"aliasify", +"backport", +[3,2250,18], +[2,18460,3227], +"run", +"grunt-run", +[2,4431,4226], +[0,1389,1448,2070,9588,2899,9586,4255,4257], +[1,2343,18467], +[0,18468,0,2514,2537], +[0,1804,26895], +[1,2343,18470], +[0,18471,0,6260,2399], +[0,1282,26902,2926,3060,3070,3744,26906,3911,3935,26908,4649], +[1,2343,18474], +[2,8243,3038], +[0,18475,18476,18477,4139], +[0,97,26915,25212,26917,13746,26921,4127,15918,26922], +[0,53,13052,5825,83,87,94,19961,6503,1009,1011,1145,1195,1414,1503,1700,26703,1854,1177,1895,1903,1938,1951,1953,1955,1958,2024,11425,2061,2070,2323,2338,2036,26924,2297,2895,2900,2904,2923,4922,2925,3188,2899,3200,26925,26927,26930,26932,26933,26935,1894,3729,4193,26940,4441,4474,91,2924,26941], +[0,18108,26944,5746,26934,26945,57,7256,6988,14642,26946,26947,17679,2275], +[1,2343,18485], +"lazy-val", +"dmg-builder", +"builder-", +[2,18481,614], +"builder-lib", +[2,10735,18483], +[0,18486,18489,2514,2399], +[0,6641,26956,13651], +"-runtime", +[2,18482,18487], +[0,2899,2924], +"-ci", +"@types/is-ci", +[1,2343,18504], +"nsis", +"dmg", +"msi", +"setup", +"Windows", +"OS X", +"MacOS", +"Mac", +"appx", +"snap", +"flatpak", +[0,0,18505,18506,34352], +[0,2899,4255], +[0,3135,26963,26965], +[1,2343,18515], +"asar", +[2,8243,18508], +"notarize", +[2,8243,18510], +"osx-sign", +[2,8243,18512], +[2,8243,14566], +[0,18516,18519,18520,2537], +[0,9363,9315,26972,23289,12429,3167,26981,26983,26985,26986,26987,26990], +"-windows-exe", +[2,1615,18517], +[0,4874,1414,26992,668,17232,23276,2581,3140,26993,1894,3985,3998,4072,4505,91,1906], +[0,6892,1783,26885,26995,26564,1644,5341,1633,23266,6435,614], +"galactus", +[3,2179,12], +"info", +[2,18522,18523], +"junk", +"author", +"parse-author", +"rcedit", +[2,27093,33977], +[1,2343,18531], +[0,18532,18533,18534,2523], +[0,12396,9363,23247,23289,27003,27006,23254,4555,12449], +[0,4874,23262,1414,2581,2588,3137,27008,27010,1894,3985,3998,4505,91,1906], +[0,23266,26564,26995,2587,23267,614,6435,1783,1936], +[3,8256,10], +"ownload", +[2,18535,18536], +[1,2343,18539], +[0,0,18541,18542,2487], +"home-path", +[0,1091,10738], +[0,2382,27017,27018,1623], +[1,2343,18544], +[0,18546,0,18547,2523], +"wonderful-fetch", +[0,27073,27076], +[0,27078,2325,5576,24093,27080,27081,27083,27084,3143,27085,18037], +[1,2343,18549], +[0,18550,18553,18554,2537], +[0,18529,33978,33980,33981,33983,33990,33998,34001,27092,27094,26256,27472,27096,4484], +"-processor", +[2,6870,18551], +[0,5087,27098,4874,1130,1145,1398,2651,2675,27099,1192,3502,1894,3729,3923,4039,4393,4468,4469,4474,4487,27101,91,1002,614,2924,4677,4681], +[0,2150,17462,27103,3150,3144,2090,6771,2944,3151,27105,4607,1973,5472,3212,27106,27108,27110,27111,27112,27113,27114,27119], +"grunt-banner", +[1,2343,18557], +[0,0,18558,18559,2523], +[0,5535,5366,5087,27124,19446,4874,1009,1011,1317,1610,1177,1895,1939,1955,2024,27125,1192,3044,3057,3117,27126,13824,19445,27127,3467,1894,4039,4042,4069,4073,4075,4201,4468,4474,4484,91], +[0,7906,27130,2325,6681], +[1,2343,18567], +"@vue/comp", +"onent", +"iler-utils", +[2,4312,18563], +[2,18562,18564], +[2,18561,18565], +[0,0,18568,18577,2523], +[0,1429,2323,4193,27136,2463,4196,2447,2436,2839], +"algoliasearch", +"vue-jsx", +[2,1226,18570], +[3,1280,9], +[2,17006,18487], +[2,18572,18573], +"cp-cli", +[3,17554,15], +[0,2325,27138,2869,13901], +[2,27009,12442], +"lemefe", +[2,18576,18579], +[3,2095,9], +"gulp-cssmin", +"-editor-middleware", +[2,8427,18583], +[3,3112,13], +"hain", +[2,18585,18586], +[1,2343,18600], +"version-cli", +[2,9951,18589], +"transl", +[2,18591,6917], +"uppe", +"rcamelcase", +[2,18593,18594], +[3,4645,13], +"es2015-co", +[2,18597,14717], +[2,18596,18598], +[0,18601,18602,18603,4139], +[0,25911,3923], +[0,1329,15990,1596,1177,2759,2899,4170], +[0,2150,3151], +[1,2343,18605], +[0,0,18606,18607,2523], +[0,2025,2899,2228,2240,2300,2273,3760], +[0,3151,1973,3101,2041,7046,1398], +[1,2343,18617], +"brorand", +"hash.js", +"hmac-drbg", +"istic-assert", +[2,6907,18612], +[3,18613,13], +[2,1619,594], +[2,18614,18615], +[0,0,18618,2514,2537], +[0,2899,4170,640], +"EC", +"Elliptic", +"curve", +"Cryptography", +[1,2343,18624], +[0,8856,7938,7939,2487], +[1,2343,18626], +[0,0,18628,18630,2523], +"@ladjs/consolidate", +[0,811,8850,816,13789,7892,1166,27163,1532,1677,27164,27166,2020,2205,2709,27171,18183,27168,3919,11891,4042,4057,4060,13781,27162,4481,4507,91,1906,4748], +"@ladjs/i18n", +[0,200,20052,614,6435,1383,6478,1523,3924,3157,27173,27174,57,5675,6802,6847,8429,7201], +[1,2343,18638], +"get-paths", +"juice", +"preview-email", +"@jimp/core", +"-sendgrid", +[2,3361,18636], +[0,0,18642,18644,2537], +"lad", +"lass", +"mail", +[0,4856,6503,4874,1429,1540,2899,91,2924,4677], +"mailchimp", +[0,1698,6899,2051,1496,3048,1388], +"mailgun", +"mandrill", +"moonmail", +"postmark", +"sendgrid", +[1,2343,18651], +[0,0,18652,2514,2537], +[0,27184,2759], +[1,2343,18654], +[0,18662,18663,18664,2537], +[3,7639,9], +"ilparser", +[2,18655,18656], +"mtp-server", +[2,5051,18658], +"mailparser", +"smtp-server", +[0,1457,1525,1676,2226,16085,27189,3170,27190,27191], +[0,19181,442,27194,10723,5245,8778,4874,27196,1414,1177,1938,1953,2203,2899,1894,3980,4452,91], +[0,2947,12479,2090,13755,5351,5353,1179,1783,5352,3160,4745], +[1,2343,18672], +"yam", +"sane", +"dag-map", +"p-defer", +"tree-sync", +"console-ui", +[0,18674,0,2514,2399], +"is-git-url", +[0,27202,13223,2674,27203,27206,4039,4135,4390,4449], +"quick-temp", +[1,2343,18677], +[0,18680,18681,2514,4139], +"content-tag", +"core-object", +[0,4590,1676,3164,3494], +[0,2899,1177,2759,4342,1954,1938,1958,1903,1948,1970], +[1,2343,18696], +"capture-exit", +[2,26872,33868], +"stew", +[2,1379,18685], +[2,1379,1676], +"base-url", +[2,1463,18688], +"watch-", +"detector", +[2,18690,18691], +[2,1379,5614], +"broccoli-s", +[2,18694,5585], +[0,0,18711,18712,2523], +"-or-copy", +[2,7100,18697], +[2,1379,9381], +"-graph", +[2,14940,18700], +"is-language-code", +"-posix-path", +[2,13626,18703], +"-project", +[2,2116,18705], +[3,18701,11], +[2,18707,2942], +[2,11338,1781], +[2,6333,18709], +[0,2899,2759], +[0,27,3164], +"map-series", +[2,9466,18713], +[3,1381,10], +"iddleware", +[2,18715,18716], +"trees", +"low-trees", +[2,18694,18719], +".hash.helper", +[2,1862,18721], +[3,7648,14], +[1,2343,18738], +"rminal", +[2,18723,18725], +"fs-monitor", +[2,18707,18727], +[2,7077,2849], +[2,4099,18729], +[3,18693,12], +"fig-loader", +[2,18731,18732], +[3,18733,16], +[2,18734,4068], +"-reducer", +[2,1378,18736], +[0,18739,18749,18754,2443], +[0,53,61,5717,4851,5240,5874,5838,87,14128,90,8862,5583,811,8850,816,27221,27223,1165,7913,27225,27228,22829,1405,1420,1874,2098,2553,2929,3060,3561,3714,4042,13879,10854,4073,4076,4079,11481,4072,11482,4484,91], +"@pnpm/find-workspace-dir", +"-works", +"pace-root", +[2,18741,18742], +[2,4749,18743], +[2,2103,18744], +"ulate-cache-key-for-tree", +[2,3563,18746], +"is-pa", +[0,48,13693,27232,5522,107,1193,1610,27234,1177,27238,1895,1955,1999,2151,2675,1192,2990,27244,1894,3957,4039,4165,4294], +"missing", +"ckage-missing", +[2,18748,18751], +[2,1828,18752], +[0,6374,4042,27246], +[1,2343,18759], +"-registry", +[2,4358,18756], +[2,1828,18757], +[0,18775,0,18780,2537], +"yuidocjs", +"chai-files", +"yuidoc", +"-ember-cli-theme", +[2,18762,18763], +[3,10419,19], +[2,18765,2022], +[3,18753,11], +"-test-", +[2,18768,6706], +[2,2270,18769], +[2,18767,18770], +[3,1827,11], +"lueprint-test-helpers", +[2,18772,18773], +[0,5245,1676,26972,23289,27252,27256,17995,27259,27262,26981,27263,26985,27265,27003,27267,26986,26987], +"app-kit", +"ember", +[2,5802,18776], +"ember.js", +[0,20627,4643,3987,1936,16892,1783,26885,5980,4549,1644,57,1932,3729,3984,8924,3902,11326,207], +[1,2343,18782], +[0,18783,18797,18798,2523], +[0,15643,3530], +"amd-name-resolver", +[3,1201,14], +"ebug-macros", +[2,18785,18786], +[3,12186,15], +"ber-data-packages-polyfill", +[2,18788,18789], +[3,18790,19], +"modules-", +[2,4610,6422], +[2,18792,18793], +[2,18791,18794], +"broccoli-b", +[0,2899,3181,27275,2398], +[0,16159,27277,27278,18132,27280,7256,24440,27281,2090,1586,7131,2100,2070,21543,21544,24441,27282,27285,27287,3529,13777,6421,19051,3170,3181,3249,27289,27291,3403,13017,11601,27293,1108,6961,6920,4166,4259,21520], +"-transpiler", +[2,13830,18799], +[2,18796,18800], +[2,6324,6706], +[2,1827,18802], +"version-ch", +"ecker", +[2,18804,18805], +[2,1828,18806], +[1,2343,18821], +"@ember/optional-features", +"@ember/", +[2,18810,1871], +[2,18810,13281], +"@glimmer/component", +"@glimmer/", +[2,18814,17357], +[3,10614,11], +"s/lerna-changelog", +[2,4406,18817], +[2,18816,18818], +"ember-a", +[0,0,18836,18837,2537], +"uto-import", +[2,18820,18822], +[2,1705,1524], +[2,1828,18824], +[3,18771,12], +"-live-reload", +[2,2429,18827], +[2,18826,18828], +"initializers", +[2,3614,18830], +[2,5802,18831], +"ember-qunit", +[2,5802,14056], +[2,5802,4225], +[0,27299,7746,4874,1009,1011,1437,27301,3173,1894,23901,27302,91], +[0,7188,2090,3171,7305,7070,614], +"-channel-url", +[2,18835,18838], +[2,15508,2478], +"loader.js", +[1,2343,18843], +[0,18845,16075,18846,2399], +"ember-addon", +[0,7305], +[0,3171,553], +[1,2343,18848], +[0,11570,11571,18849,2537], +[0,27314,27315,27316,27317,27318,27319,27320,27322,27323,27315,27325,27326,27328,27330,27332,27333,27337,27338,27340,27341,27343,2262,7287,27334,27344,27346,27348,27350,27353,27355,27357,27358,17697,27359,27360,17737,17739,5284,17625,17626,676,91,17627,6869,4799,6915,6333,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,5933,1451,7914,27363,27365,17651,6899,17720,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,27366,6681,17740,1745,17116], +[1,2343,18861], +"edition-utils", +[2,18810,18851], +[3,4644,15], +[2,18853,5218], +[2,18791,18854], +"-inline-precompile", +[2,1829,18856], +[2,1199,18857], +"broccoli-p", +"ersi", +[0,18862,18866,18869,2443], +[0,4121,4388], +"stent-filter", +[2,18860,18863], +[2,18859,18864], +[0,48,53,87,192,5467,442,27928,19344,4874,1367,1610,1622,1628,1700,1701,1854,1177,1895,20281,1938,1939,1942,1953,1955,1982,2092,2203,2675,1192,2780,2832,2990,3144,3400,1894,2278,4111,4257,91,4523,2924,4677,4681], +"code-equality-assertions", +"js-string-escape", +[0,2924,1623,7682,11498], +"@emb", +"roider/test-setup", +[2,18870,18871], +[2,1828,1462], +[1,2343,18875], +[0,18879,18880,18881,2523], +"ort-", +"-global", +[2,13527,18877], +[0,27377,842,1462,27379,1676,668,2105,30621,16860,28134,27380,4072,27385,27388], +[0,27390,1177,27393,27394,10624,27395], +[0,3178,16862,676,1623,11807,1936,14357], +[1,2343,18884], +"dat", +[0,18885,18887,2514,2443], +[0,27404], +"ember-s", +[0,4384,4483,3188,4508,1894,4874], +"tyleguide", +[2,18886,18888], +[3,1243,11], +[2,18890,4486], +[2,5802,18891], +[1,2343,18896], +"ember-try", +[2,1921,2907], +[0,0,18897,18898,2537], +[0,1158,3421,4389,1177,3410,2708,1159,4103,13614], +[0,6478,7128,57,3460], +[1,2343,18900], +[0,18907,18908,18910,2537], +"@emmetio/abbreviation", +"@emmetio/", +"css-a", +"bbreviation", +[2,18903,18904], +[2,18902,18905], +[0,1525,3313], +[0,22102,1192,1894,4468,91], +"coding", +[0,27425,27428,21655], +[1,2343,18912], +[0,0,18913,18914,34352], +[0,27407,4874,13680,1414,1895,1894,4384,4474,4508,91], +[0,7148,7204,7161,7048,4014,6899,970], +[1,2343,18916], +[0,18917,18918,2514,2523], +[0,1082,3510,15450,27438], +[0,4874,7677,1446,1177,1905,5210,2807,1894,15452,91,4543,1984], +[1,2343,18920], +[0,0,18921,18922,2537], +[0,53,61,71,83,87,92,97,27445,2126], +[0,3190,27447,13795,5128,89,6071,27448,11415,27449,27456,27458,27459], +[1,2343,18925], +"finish", +[0,18926,18927,18928,2523], +[0,27464], +[0,3190,27464,27468], +[0,3190,27447,5128,89,6071,27448], +[1,2343,18930], +[0,18931,18932,18933,2537], +[0,2591,3242,1687,2070,1676,4747,2105,2822,1457,3181,3527,7801,3074,4748,27476,17450,4351,27481,4300,1874,4143], +[0,3421,1429,2931,1776,2297,4193,27510,1177,3278,3984,4039,4042,4135,2203,26079,2924,1894,1610,442,27500,91,27501,4874,2665,2900,3105,4677,4892,1509,3123,3401,10630,62,27490,27497,27506,27507,1953,17529,3125,27509,5946,3114,4923,3107,8850,27499,8862,2904,2915,2881,811,27504,4079,13866,4066,816,23652,27495,27487], +[0,2899,1973,5982,6969,4384,5472,1429,6468,1166,1192,4389,2765,2297], +[1,2343,18935], +[0,18936,18937,18938,2487], +[0,7058,3758], +[0,1429,2899,25928,91], +[0,2899,6533,3758,3197], +[1,2343,18940], +[0,18941,18942,18945,2523], +[0,1676,3135,3188,4294,6523], +[0,826,1429,6524,1177,2899,4039,27525,27526], +"entitify", +"entity", +[0,2899,2793,16237], +[1,2343,18947], +[0,0,0,18948,2443], +[0,2899,16237,27532,4504], +[1,2343,18950], +[0,0,18953,18954,2523], +"enumeration", +"datatype", +[0,1429,1177,21470,2899,4039,4135], +[0,3212,2150,1973,1182,6771,3151], +[1,2343,18956], +[0,18957,18958,18959,4139], +[0,27544,2159,15312,27547,2571,2756,3431], +[0,5517,13614,23237,27552,27555,27557,27559,27562,27564,27567,27568,27570,27571,27573,27575,27576,4874,27578,27580,19325,1159,9254,1855,1177,2011,2133,2569,2708,3410,3421,4103,4389], +[0,5472,3212,3048,3205,6692,6822,1973,6865,6739], +[1,2343,18961], +[0,18962,18967,18970,2537], +[0,12929,3369], +[3,15801,15], +[2,18963,200], +"ify-object", +[2,4745,18965], +[0,1610,1177,2899], +"issues", +"reporting", +[0,3209,7190,14419,14416,14510,22228,1973,3212,13106], +"diagnostics", +[1,2343,18973], +[0,0,7923,18974,2487], +[0,1973,3212,202,2150,2184], +[1,2343,18987], +[3,1143,20], +"function.", +".name", +[2,6688,18978], +[2,18977,18979], +[3,2620,13], +[2,18981,3053], +"oolean-object", +[2,15644,18983], +"allable", +"is-callable", +[0,0,18991,18998,2523], +"umber-object", +[2,13631,18988], +"is-string", +[0,2899,4042,4076,4170,91], +"is-subset", +[2,3024,1867], +[2,3436,6693], +"rst-selector-parser", +[3,11434,17], +[2,18996,6678], +[0,1666,3212,1973], +[1,2343,19004], +" rendering", +[2,4161,19000], +"Render", +[2,4161,19002], +[0,0,19008,19009,2487], +"test utils", +" helpers", +[2,6468,19006], +[0,2759,2272,4193,27601,4616], +[0,3212,13106,3209,1237,2325,2275,1973,27603,5472,6969], +[1,2343,19011], +[0,5621,19012,19013,2523], +[0,2323,2372,27608,2436,2447,2463,27610,2272,2839,2924], +[0,3212,27612,27614], +[1,2343,19015], +[0,19016,19021,19022,2537], +[0,7058,2070,2929,1209,11993,3084,3310,2015,27624,27623], +"airbnb-", +[2,19017,3744], +"fromentries", +[2,3436,19019], +[0,2812,4481,27633,1192,3241,27649,3533,1676,27637,1409,27635,1759,1177,3078,27658,1096,2738,3363,27656,4474,4709,27636,27643,2774,27648,1894,1596,27641,2777,3379,4342,27645,3747,91,27659,4874,27632,27655,27634,27657,27628,27644,27630,27647,25710,27660,27640,1954,27652,826,27626,1958,1895,1955,1966], +[0,27662,14584,5130,5995,27664,17829,14586,3166,11631,24090,27666], +[1,2343,19024], +[0,0,19025,19026,2523], +[0,2907,4042,1610,91,4874,2915], +[0,3220,1666,6901,1644,1671,2649,2679,6728,6804], +[1,2343,19028], +[0,19029,19030,19031,2537], +[0,3220], +[0,2228,2247,2273,2277,2281,17565,91], +[0,3220,1666,6901,27679,27680,27681,27678,16626], +[1,2343,19033], +[0,19034,19035,19037,2523], +[0,2858,27688,27692,27693,27696,3502,1894,27700,27702,27703,4745], +[0,27709,32818,7677,668,21290,3541,3985,27711,91,1984,27714], +[2,6296,3741], +[0,6038,4967,6400,27708,21290,4745], +"codependence", +[1,2343,19040], +[0,0,19061,19062,2399], +" for es6", +[2,4354,19041], +"check for ", +[2,19043,5260], +"es check", +"es matching", +"es version", +" check", +[2,5286,19048], +[3,19049,11], +"matching", +[2,19050,19051], +[2,19050,15525], +"js version", +[2,19054,19048], +[3,19055,11], +[2,19056,19051], +"test ", +[2,19058,19054], +[2,19058,19053], +[0,442,4874,7677,1177,1895,1966,1982,1894,4039,4508,4514,17223,91,4523,1983,26744,1984], +[0,27722,27723,27724,5675,27725,6400,5995], +[1,2343,19064], +[0,19068,19075,19079,4139], +"bigints", +"has-bigints", +"intl-", +[0,16003,32967,16005,16000,19267,15999,20870,23721,19282,6372,27731,1364,1367,23723,1395,1505,1525,1575,1610,1640,1759,1853,2026,9243,2040,2117,27735,27737,2626,2814,7796,3162,3230,27740,3237,3527,23726,4148], +"back-symbol", +[2,9925,19069], +[2,19067,19070], +[3,5742,14], +[2,3094,19072], +"make-a", +[0,53,68,87,27742,27743,1195,1429,1465,1540,1584,1628,1651,1177,1881,1938,1982,26154,2092,2675,2899,12690,3322,3363,4307,4342,2924,4677], +"unction", +"sync-function", +[2,19074,19077], +[0,20897,27746,6910,18035,27747,8626,8298,27749,1550,3230,27750,27751,27752], +"reflect", +".ownkeys", +[2,19080,19081], +[2,7315,7262], +[2,5511,19083], +[1,2343,19086], +[0,19087,19088,19089,4139], +[0,1395,27759,27762], +[0,3421,4481,29749,1429,1437,2899,4193,27764,4747,1177,4135,27765,2026,2822,4474,1894,4196,91,5307,4856,4874,1436,27767,6503,6513,27768,5254,6494,27772,27775,27776,27779,6512,27781,27782,4232,1951,1978,1895,1955,608,603,1011,27786,15115,27790,27792,1009,10964,549], +[0,3230,13392,11489], +[1,2343,19091], +[0,19095,19098,19103,2399], +"es6-symbol", +"esniff", +"next-tick", +[0,27798,3230,27799,27800,3242,27801], +"plain", +[2,19096,4007], +[0,30604,29957,4874,27803,27805,27807,1091,1414,1448,18192,1177,13850,2026,2151,2600,21630,3044,27810,20451,3127,3188,2899,3220,27786,12690,29780,3275,3754,4193,29998,91,4523,3348], +"ecmascript5", +"ecmascript6", +"extensions", +"addons", +[0,3230,1746,11415,2844,18035,27812,2382,27814,3766,18037,3469,1747], +[1,2343,19105], +[0,19106,19107,19109,2523], +[0,1605,1541,1292,4218,4545,4220,27822], +[0,2228], +"es5 shim", +[0,3233,27826,27827,20863,27829,27830], +[1,2343,19111], +[0,19112,19107,19113,2523], +[0,1541,1544,3233,27835,27822], +[0,3233,27837,27826,27827,27838,12619,20863,27840], +"rettime", +[1,2343,19116], +[0,19117,19131,19133,4139], +[0,27847,1676,3230,27849,27852,27855,27856,27857,27859,3427], +"json3", +[2,1379,4042], +"git-repo-", +[2,19120,15525], +[2,1379,4650], +[2,1379,4535], +"-phantom", +[2,3736,19124], +"6-plugin-strip-class-callcheck", +[2,1172,19126], +[3,14198,32], +"nstants", +[2,19128,19129], +[0,1166,1503,1177,1903,1920,1938,1954,1958,1970,27861,27866,27869,27872,27873,27874,27875,3421], +"futures", +[0,3236,3230,1550,13392], +[1,2343,19135], +[0,19136,19137,19139,2523], +[0,1304,1676,1704,3440,16128], +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4237,4342], +[3,7872,9], +[0,2026,27,2942,2663], +[1,2343,19141], +[0,7936,7938,7939,2399], +[1,2343,19143], +[0,19144,19147,19148,2399], +[0,4729,4038,1676,27764,4238,27897,27899,3183,9241,3084,27902,1537,27910,3923,27905,14731], +"es6-tests", +[2,12790,19145], +[0,3421,1429,4389,4193,1177,2202,3188,4039,4170,4216,668,2203,4474,1457,1894,27912,442,3697,3980,91,4856,4874,19325,6513,1834,27918,27920,19181,12310,5536,5476,10936,27924,1938,1895,1955,1011,1567,5478,27915,1009,10614], +[0,3241,27927,20001,20003], +[1,2343,19150], +[0,0,19152,2514,4139], +[2,31089,9224], +[0,2675,2899,1177,1894,2025,2990], +[2,31715,31719], +[1,2343,19155], +[0,19156,19157,19158,2399], +[0,27936,1525,1676,25625,25635], +[0,192,5467,16607,6065,16608,16612,2899,4131,4255], +[0,18035,3243,14872,36,27939,26472,27940,27942,25635,27944,26472,27945,13531,27948], +[1,2343,19160], +[0,19162,19163,19164,2443], +"special", +[0,27959,617,9213,27962,977,2220,27964,9218,9219,3509,3527,19114,4266,9221,4454,4507,27955,4747], +[0,192,5467,19151,19181,442,17982,5497,9225,9226,8648,6494,27966,4874,19153,1009,1011,5474,1170,13662,1527,1610,1613,1652,668,8161,1177,1895,1955,2026,2078,19213,2070,2832,27967,2931,2990,27969,1894,23535,3957,4039,9245,4493,91,4523,4548,4027,1984,9250,2924,9258,3244], +[0,5592,3212,8788,6812,6688,36,11100,1852,5472,6400,10768], +[1,2343,19166], +[0,19169,19170,19173,2537], +[2,18756,4219], +[2,1370,19167], +[0,27978,1410,1537,3188,3427,1000,1695], +[0,1693,2026,2139,27981,2899,3421,4039,4255,27984], +"-everywhere", +[2,10906,19171], +[0,1669,3689,15237,2139,27986,2026,2663], +[1,2343,19175], +[0,19176,8134,19178,2537], +[0,22970,27992,3181], +[3,442,8], +[0,18132,2100,2070,21543,21544,3529,13777,3181,13017,11601,21520], +"config-array", +[2,19177,19179], +[2,19177,1998], +"@humanwhocodes/module-importer", +[3,19182,15], +[2,19183,1153], +"@nodelib/fs.walk", +"esquery", +"imurmurhash", +"-without-jsonify", +[2,2851,19188], +"levn", +[1,2343,19196], +"@eslint/co", +[2,19192,23], +[2,442,1803], +"@trunkio/launcher", +[0,19197,19198,19199,2523], +[0,4538,2657,4100], +[0,3421,27999,2899,1177,3188,4039,4339,4012,1948], +[0,2090,9229,2141,3101,6949], +[1,2343,19201], +[0,19211,19212,19214,2537], +[2,3192,5130], +[2,11095,19202], +[3,1992,9], +"lease", +[2,19204,19205], +"eslint-r", +"ule-composer", +[2,19207,19208], +"eslump", +[0,2100,2151,2859,1209,5303,3445,3348], +[0,2765,3421,33373,3980], +"fs-teardown", +[0,1649,1936,28007,3256,28009,28012], +[1,2343,19217], +"metascraper", +[0,0,19228,19229,2537], +"-description", +[2,19216,19218], +[3,19219,12], +[2,19220,158], +[2,19220,11255], +[2,19222,4147], +[2,19220,17913], +"node-po", +"lyfill-webpack-plugin", +[2,19225,19226], +[0,1999,1429,4770,2899,1177,2272,4042,3758,4535], +[0,3257,1283,5354,1797], +"npm-license", +"polyfills", +[2,4065,19231], +[1,2343,19234], +[0,0,19236,19237,2399], +"yorkie", +[0,1759,2323,2384,2508,2675,2297,2881,2908,2915,28023,28024,1894,25851,2907,4039,4042,4072,28027], +[0,10052,8691,28030,7131,6333,7518], +"sql-escaper", +[1,2343,19240], +[0,19241,19245,2514,2443], +[0,1325,3923,4100,28036], +"ape-runner", +[2,1285,19242], +"eslint-f", +[0,1087,1177,4127,28038,28039,28040], +"ind-rules", +[2,19244,19246], +[1,2343,19249], +[0,19250,19251,19252,2537], +[0,3080,24383,18073,2685,19238,28047,28049,28052], +[0,1414,4494,28059,2203,1894,1317,1610,442,3560,91,4874,28056,19181,27928,6473,1895,1955,1011,28058,1009,13188], +[0,3259,5576,36], +"using-browser-globals", +[2,12084,19253], +[1,2343,19256], +[0,19257,19258,19259,2443], +[0,21243,3427,21246], +[0,2759,1362,2899], +[0,19138,1862,28067,21244,5194], +[1,2343,19264], +[3,3703,10], +[3,9487,11], +[2,19261,19262], +[0,0,19265,19266,2537], +[0,28072], +[0,3417,202,15525,10057,28074,202,17180,1263], +[2,15998,23720], +[1,2343,19272], +"quality", +"jslint", +"code style", +[0,0,19274,2514,2537], +"verify", +[0,1326,1525,2070,705,3923,4384,1695], +[1,2343,19276], +[0,0,19277,19278,2537], +[0,4548,4874,91], +[0,28088,2382,705,1781,18037,3166,2378,18035], +[1,2343,19283], +" config", +[2,1177,19280], +"@lezer/highlight", +[0,19284,19285,19287,2523], +[0,5012,1634,1639,28094,26902,28095,17011,7917], +[0,10821,10828,10837,5087,4874,5090,4880,1177,10619,2675,28098,1192,2968,28101,2990,1894,3744,89,3824,3904,4039,4232,4469,4484,91,2924,4676,4681,4749], +[2,15289,17540], +[0,1623,590,592,3528,2378,2994,89,676,7164,7165,369,4636,4627,4315,28103,5547,5376], +[2,19289,1564], +[3,28155,14], +[1,2343,19291], +[0,0,0,19292,4139], +[0,3348,3778,3265,1002], +[1,2343,19294], +[0,19295,19296,19297,2537], +[0,18509,1170,1809,2151,28115,28116,3079,3275,28118,4108,4232,4449,4747], +[0,5245,4864,28120,5087,21621,4874,28123,6520,4892,1009,1011,1804,1177,1895,1955,1192,3541,1894,4039,4469,91,2924,4677], +[0,28125,1804,1896,970,21009], +[1,2343,19299], +[0,19300,19303,19304,2487], +[0,4729,3467,4390,2806,3445,3348,1170,1473,2072,4747,20991,1209,3078,3127,3188,3483,4135,3013,4708,4734,2003,3742,4167,1137,1457,1894,3761,4473,3181,28130,1483,4183,4227,91,28132,8612,28133,19499,28135,20949,28136,28137,14774,28142,3762,635,28145,28151,19288,1573,20934,28155,28158,28164,28214,28167], +"eslint-patch", +[2,9112,19301], +[0,1429,2228,2675,2899,4193,26212,2759,9241,13214,4856,4874,7819,2314,2990,9357,28177,28178,6513,4892,28180,4870,28182,5254,28184,28187,28189,7812,7749,14352,28192,28195,1431,2258,4232,2247,2283,33046,28203,9417,28206,5244,28211,1567], +[0,3271,91,5284], +[1,2343,19306], +[0,19307,19321,19322,2487], +[0,28219,28223,28224,1759,2665,28225,3232,3519,1552,18730,28228,26940,4545,3348,28230], +" Standard Style", +[2,17626,19308], +"code checker", +"code linter", +"code st", +"andards", +[2,19312,19313], +"policy", +" style", +[2,4255,19316], +[2,590,16792], +"style ", +"style linter", +[0,811,8850,816,23689,4874,1009,28232,1610,1177,21564,1938,1953,1958,2323,2441,28233,2765,2766,671,3275,3421,28234,3752,4039,4042,4193,4232,4255,4474,15097,91,28235,2924,18237], +[0,28238,28241,17134,28242,28243,207,28244,28245,28246,28247,28248,28249,28251,28253,28256,28258,28260,28261,28265,28266,4420,28267,28269,28271,28273,28274,28275,28277,28280], +[1,2343,19324], +[0,19326,19327,19328,34352], +"@types/tape", +[0,2714,1149,4747,28285], +[0,3421,4616,1177,1596,28287,3980,10614], +[0,8309,28289,28291], +[1,2343,19330], +[0,0,19331,19340,2523], +[0,2899,4039,21228], +[3,19180,15], +[2,19332,3323], +"__js", +[2,5601,19334], +"automd", +"eslint-t", +"ypegen", +[2,19337,19338], +[0,200,1585], +[1,2343,19342], +[0,0,19343,19345,2523], +[0,4874,4880,1009,1011,1587,1177,1895,1955,1959,1961,1161,1894,4484,91], +[3,7844,24], +[0,28303,6085,89,1896,28304,12780,190,5995], +[1,2343,19351], +"xoxo", +"hugs", +"kisses", +"happy", +[0,19352,19354,19355,2537], +[0,1149,3188,4545,3012,28310], +"happiness", +[0,1429,2899,4193,705,1525,28312], +[0,18035,27814,21687], +[1,2343,19357], +[0,19358,19360,19361,2523], +[0,2685,4113], +"cabin", +[0,2861,17910,2899,3756,3760,4170,4193,4734], +[0,27,2671,2869,705,5576,15237,9229,2658,25386,17481,8426,8431,977,7436], +[1,2343,19363], +[0,19364,0,19365,2523], +[0,28324,28325,1525,1595,2720], +[0,200,12659,13527,1523,6876,678,4636], +"boolean", +[1,2343,19368], +[0,19369,19370,19371,4139], +[0,28331,1149,28333,13223,1483,1512,1525,1645,2098,28335,1209,3188,28340,28342,28344,28346,3718,4135,28348,4717,4736], +[0,28353,1429,1705,28356,18420,1177,1942,13231,1951,1966,2822,2899,3297,3421,28358,3938,4153,4167,4193,4734], +[0,3283,28360,5592,5472,15656,28362,4030], +[1,2343,19373], +[0,19374,19375,19376,2537], +[0,30869,28367,28371,28372,13471,13474,13476,30243,13495,13497,13500,13502,28373,1537,2674,28375,27967,2854,28379,3923,28380,4135,4715], +[0,7709,28384,36559,28387,28390,28394,692,28395,28396,28399,1091,1149,1168,28400,1414,13838,1525,1570,28401,13848,1177,1942,28406,2070,2212,2675,1776,2990,3019,3297,3747,3752,4039,28408,4193,4339], +[0,13539,6681,27838,14029,28411,28413], +[2,5223,594], +[2,1876,19377], +[1,2343,19381], +"is-bun-module", +[0,19382,19383,19384,2523], +[0,97,28418,977,12105,3424,28420,3698,28423,3348], +[0,5154,48,53,14167,83,87,90,92,28436,842,16145,966,968,972,20562,974,5087,4874,28426,28425,4880,4883,1165,28435,28433,1540,1637,1192,2780,2802,3244,3286,3561,3566,3640,89,3824,4705], +[0,89,6710,3424,2038,28438,5165,3287,16944,5168,28439], +"@types/is-", +[2,19385,2070], +[1,2343,19388], +[0,0,0,19389,2523], +[0,3286,1149,28445,28446], +"node-lib", +[1,2343,19392], +[0,0,0,19393,2399], +[0,1098,1973,5472,3212,8788,4627,12442,7170,9962,11100,28453,28454,4967,6400,1192,2765,1843,13106,7190], +[1,2343,19395], +[0,19396,0,19397,2537], +[0,13,28459,8597,1668,4484], +[0,5127,4964,1098,181,5130,4967], +[1,2343,19406], +[3,16405,17], +"defaults", +[2,19399,19400], +"-azure-pipelines-cli", +[2,1529,19402], +"riendly-formatter", +[2,19244,19404], +[0,19407,19408,19409,2537], +[0,2212,3348,4745,16509,2057,3028], +[0,1429,1437,2899,4193,4874], +[0,3290,28467,28468,3014,28469], +[1,2343,19416], +"enhance", +"-visitors", +[2,19411,19412], +[2,1876,594], +"espurify", +[0,0,19417,2514,2399], +[0,1429,1544,2899,3754,4151,4333], +"-spelling-correcter", +[2,3166,19418], +[1,2343,19423], +"ava-rule-tester", +[2,1876,19421], +[0,19424,19425,19426,2487], +[0,1676,28480,19400,1804,28483,28484,2835,28485,3188,16112,3441,4039,28486,4238], +[0,1149,1304,27731,1362,1429,1431,1177,1895,1955,2026,2675,2899,28488,3246,3549,1894,4151,4237], +[0,3292,1804], +[1,2343,19428], +[0,19429,19430,19431,2487], +[0,28494,28498,28500,4856,28502,14552,11869,15374,1371,28503,1437,1458,1483,28504,28505,1759,1797,1842,2070,2832,1209,3181,3183,2899,28510,3445,3467,20460,4130,4135,28512,4294,4558,3348], +[0,221,842,4874,1009,1011,1587,1610,1177,2675,2742,2822,2990,3200,4925,28514,28517,3215,3297,3421,89,3824,4039,4146,4474,4481,28519], +[0,3294,28521,28522,5472,11132,14336,11861,28525,11862,4627,11857,1973,1388,5131,8791,13426,1649,2899,13428], +[1,2343,19433], +[0,19437,19447,19450,4139], +"ast-m", +"etadata-inferer", +[2,19434,19435], +[0,11124,826,28535,18248,3509], +[2,19192,13172], +[3,5536,14], +"16", +[2,19439,19440], +"aniuse-lite", +[2,4857,19442], +[3,6309,16], +"moize", +[2,19444,19445], +[0,11134,28537,1389,2675,2832,8821,2990,2899,28539,3421,1894,3752,28542,28543], +"config-erb", +[2,15086,19448], +[0,1973,5472,21147,3212,4731,36], +"kangax", +[1,2343,19453], +[0,19454,19455,2514,2537], +[0,28550,617,2854], +[0,2212,3421,1429,1192,2899,4193,1177,4039,1894,2139,1719,3752,4196,91,3400,15342,4131,1954,1951,826,1938,1958,1895,1903,7935], +[1,2343,19457], +[0,0,19458,19459,2443], +[0,1317,1326,28556,1177,2151,29197,3697,4135], +[0,28558,28559,11154,970,1326,3122,14655,3263,3299], +[1,2343,19461], +[0,19465,19470,19471,2537], +"/plugin-pwa", +[2,4613,19462], +[2,10982,19463], +[0,1496], +"eslint4b", +[3,4630,11], +[2,19467,6038], +"vuepress", +[0,3421,2228,2899,4170,1596,2240,18463,91,4874,18555,1506,28565,22081,2247,2283,28567,28570], +[0,2325,20164,2703,6884,3250,3151,6943,202,3143,3048], +"exported", +"eslint-env", +"eslint-en", +[2,19474,4000], +"eslint-d", +"isable", +[2,19476,19477], +[2,19478,10240], +[3,19479,15], +"next-line", +[2,19480,19481], +[1,2343,19484], +[0,0,19485,19486,2537], +[0,4874,28577,2151,2675,2899,3421,4039,91,28580], +[0,202,3111,13017,6956,28582,6899,6726,2382,13626,28583,1745], +[1,2343,19495], +[3,8097,32], +[3,1879,9], +"mments", +[2,19489,19490], +[2,19488,19491], +"ot-an-aardvark", +[2,16819,19493], +[0,19496,19497,19498,2487], +[0,1672,28589,28590,2179,3183,3330,814,4135], +[0,4874,1177,1938,2675,2990,1894,4384,28593,4453,4474,91], +[0,22687,2999,4345,3233,2282], +"@foxt/js-srp", +[2,4284,12118], +[1,2343,19506], +[3,15471,15], +"anonical", +[2,19502,19503], +"gitdown", +[0,13856,11488,19507,2443], +[0,3308,7204,4014,28599,2090,14629,17721,2150], +[1,2343,19509], +[0,19510,19511,19517,2537], +[0,21642,28604,28605,28608], +[0,10614,842,5601,1009,1011,7677,17298,1622,1177,17300,1930,1942,1945,1948,1953,17303,17306,1964,1985,17308,2675,17310,2931,2990,3124,3125,3390,17312,1894,17314,3708,3980,28611,17318,4493,91,1984,17319], +"@html-eslint/eslint-plugin", +[3,19512,13], +[2,19513,57], +"link-check", +[2,3115,19515], +[0,3113,2869,26800,26799,28613,28614,28615,28617,28618,28619], +[1,2343,19519], +[0,19520,19521,19529,2537], +[0,16566,28624,21163], +[0,1079,13867,1410,1414,1429,1431,28626,21480,1596,2139,13870,2899,3480,28628,4481,1906], +[2,13039,7015], +[3,1143,17], +"indlastindex", +[2,19523,19524], +"doctrine", +[2,17612,202], +"object.g", +[0,1612,27,1862,705,7085,7289,4731,7102], +"roupby", +[2,19528,19530], +[1,2343,19536], +"/template-parser", +[2,1177,19533], +[2,12908,19534], +[0,0,19537,19542,2487], +[0,1389,1525,1610,1177,28635,2026,2297,2871,2881,2891,2895,2897,2900,2904,2912,2915,2921,28636,2925,2899,3202,28638,3421,15767,2924,4677,28639], +"escope", +"fs-copy-file-sync", +"linklocal", +[2,3045,4552], +[0,28641,28642,28643,28644,1616,12588,28645,28646,28647,28648,27,2671,3135,11996,28649,28650,28651,28652,28653,4160,28654,28655,28656,21000,28657,28658,28659], +[1,2343,19546], +"npm-which", +[2,4523,1574], +[0,19547,19548,19549,34352], +[0,1170,1676,1209], +[0,1429,2899,3752,4193], +[0,1885,6599,6645,586,12296,28666,28647,28667,2109,12295,1121,8899], +[1,2343,19551], +[0,19556,19557,19558,34352], +"@schemastore/package", +"ts-export-assignment", +[2,13996,19553], +[2,13970,19554], +[0,1362,3310], +[0,1429,1177,1192,4193], +[0,28674,28676,28677,1885,14554,28678,28679,28680,28681], +"-repositories", +[2,1992,19559], +[1,2343,19562], +[0,19563,19564,19572,2537], +[0,16473,28688,2215,26567,3368,3727,4135,4390,27921,4707], +[0,1326,1610,1177,2899,3263,29197,28691], +"@es-", +"joy/jsdoccomment", +[2,19565,19566], +"are-docs-informative", +[2,13721,5651], +"spdx-expression-parse", +"synckit", +[0,970,11154,1237,3122,14655,1326,14654], +"@es-joy/", +[2,19573,1875], +[3,19567,13], +[2,4522,1574], +[2,19575,19576], +"@hkdobrev/run-if-changed", +"pree", +[2,5600,19579], +[2,5600,3766], +"defaultsdeep", +[2,6308,19582], +"@types/sp", +"dx-expression-parse", +[2,19584,19585], +[3,5210,11], +[2,1226,19587], +"ype-", +"pratt-parser", +[2,19589,19590], +[2,13587,19591], +[2,3032,1697], +[1,2343,19596], +"open-editor", +[0,19597,19598,19599,2523], +[0,1632,2591], +[0,16868,1448,1610,1177,28698,2616,3321,28699,28702,15512,28704,2654,28706,28707,3493,4039,25213,4257,4474,4749], +[0,1936,57,6710,91], +[1,2343,19604], +[0,68,5522,107,19492,19194,19605,19609,19344,23339,6503,19616,4874,5254,1009,1011,1414,19619,668,1177,1895,1933,19620,1942,19622,1945,1948,1953,19623,1955,1964,1988,17308,1994,2018,2203,2899,3486,1894,4135,4320,19624,4323,19626,19629,1531,4494,91,4523,19630,4614,4630], +[0,13678,13679,13681,34352], +[1,2343,34428], +[0,19613,19618,19631,2523], +"@ota-meshi/eslint-plugin", +[3,19605,11], +"-kit-eslint-editor-vue", +[2,13755,19607], +[2,19606,19608], +"-scope", +[2,5601,19610], +[3,19611,14], +[0,1149,28713,1676,2026,2070,3507,1997,4135,4148,28715,28716,28717,4707,4729,4747], +"@types/na", +"tural-compare", +[2,19614,19615], +"xbytes", +[0,1429,2151,1161,2272,2899,3378,1862,4039], +"env-cmd", +[2,1931,5550], +[2,18008,8546], +[2,17585,19621], +[2,1954,8770], +[2,4946,12054], +[3,5978,26], +[2,19625,188], +[3,4330,11], +"tylus", +[2,19627,19628], +[2,4609,19466], +[0,1676,6782,3323,15267], +"jsonc", +[1,2343,19634], +[0,19635,19636,19642,2443], +[0,1080,1560,1704,2145,20103,3164,3171,3494,3781,1000], +[0,4856,6503,1009,1011,1429,1177,1881,1895,1938,2675,2899,3421,1894,4193,4196,4474,4481,91], +"-flow", +[2,12184,19637], +"axobject-query", +"damerau-levenshtein", +"es-iterator-helpers", +[0,3212,13106,28726,6710,676,5472,1973,27,28728], +[1,2343,19649], +"jsx-ast-utils", +[2,9551,2640], +"regex-test", +[2,4099,19646], +[2,18996,7015], +[0,19651,19652,19653,2399], +"to-ast", +[0,28733,2755,4135,28735,3348,4707], +[0,1587,1610,1177,1900,1903,1938,1954,1958,2675,1192,2990,28737,1894,4039], +[0,28740,28743,22005,28744,22011,15844,28747,28748,9044], +[1,2343,19655], +[0,19656,19658,19659,2523], +[0,1304], +[2,18576,13064], +[0,1364,2026,2899,4170,4342], +[0,3424,28438], +[1,2343,19661], +[0,16583,11580,11581,4139], +[1,2343,19663], +[0,19664,19665,19666,4139], +[0,20584,3188,3278,3368,3393,3411,1997,4039,4135,4390], +[0,1168,2272,3297,4389], +[0,970,11154,1237,3122,14655,1326,17180], +[1,2343,19668], +[0,19669,19670,19672,2537], +[0,3299], +[0,2899,1177,28768,640,1610,91,4874,6503,1011,1009], +[2,1927,8982], +[0,28770,6621,7009,28771,28772,28773], +"ts-i", +[1,2343,19677], +"gnore-import", +[2,19673,19675], +[0,19678,0,19679,4139], +[0,28792,28790,28782,28786,1304,1309,1594,2026,2151,28783,3368,4135], +[0,6038,8899,28794,2124], +[1,2343,19681], +[0,19682,19683,19684,2399], +[0,3263,2164,2070,3157,1437,1209,640,2185,28799,1615,28800,28802,28804,26567], +[0,3421,2899,1177,4039,2151,28806], +[0,1623,22022,7121,2278,4329,590], +[1,2343,19686], +[0,19690,19691,19693,2537], +"-helpers", +[2,9654,19687], +[2,7627,19688], +[0,12680,28813,28816], +[0,3421,4389,4193,1090,1177], +[3,3995,13], +[0,16618,5957,12692,1605,28821,27105], +[1,2343,19695], +[0,19697,0,19698,2537], +"@chromatic-com/storybook", +[0,3460,1512,3171], +[0,27,2947,2090,36], +[1,2343,19700], +[0,0,19701,19702,2523], +[0,3421], +[0,6926,6668,3348], +[1,2343,19704], +[0,0,19705,19710,2399], +[0,2151,2899], +[2,19707,103], +[3,35573,13], +"ug", +[2,17304,19708], +[0,28837,2282,28838], +[3,3708,17], +"kg", +[2,19711,19712], +[1,2343,19715], +[0,19716,0,19717,4139], +[0,6523,4747], +[0,28844,6574,11100,28845,6807,2013,28847,28849,28850,5957], +[1,2343,19719], +[0,19720,19721,19722,2537], +[0,3354], +[0,28856,28858,4874,1177,1894,3706,4493,91,8552,1984], +[0,28860,57,9381,3354,28861], +[1,2343,19727], +[3,19525,24], +"tosorted", +[2,5613,19725], +[0,19730,19733,19737,2443], +"repeat", +[2,18996,19728], +[0,2571,2741], +[2,5609,14255], +[3,5235,22], +[0,13614,1158,1177,2708,17400,3410,3421,3435,4103,4389], +"unction-bind", +[2,19732,19734], +"ls-engines", +[0,2051,6970,28869,1496,1585,24135], +[1,2343,19739], +[0,19740,19741,19742,2523], +[0,2212,3263,2856,3776,1209,4391,2151,640,3337], +[0,4647,2899,2272,1168,1448,28877,2759,1173,1596,2820,28879,17370,1267], +[0,28881,28882,3358,970], +[1,2343,19744], +[0,0,19746,19747,2487], +"refa", +[0,28043,1409,1414,1177,1895,2203,28890,28891,28892,28894,1894,2658,28895,18661], +[0,28897], +"analysis", +"-ast-analysis", +[2,6961,19749], +"scslre", +[1,2343,19760], +"eslint-s", +"-rule-tester", +[2,11298,19754], +[2,19753,19755], +[2,19758,29135], +[3,17306,17], +"@types/pako", +[0,19762,19763,19764,2523], +[2,3192,15264], +[0,1457,1676,13775,3181,28904,4135,18174,4351,4453,28903], +[0,192,5467,1149,1506,1177,2675,2899,3421,3752,4131,4170], +[0,200,3233,3233,5001,22687,28908,2999,7009], +[1,2343,19766], +[0,19768,0,2514,2523], +"safe-regex", +[0,1797,4384], +[3,19494,16], +"desecurity", +[2,19769,19770], +[1,2343,19774], +[2,202,1965], +[0,19775,19776,19777,2537], +[0,4039,1764,28917,4747,4135], +[0,705,4389], +[0,28921,3364,7242,28125,13527], +[3,3568,11], +"red-black-tree", +[2,19778,19779], +[1,2343,19785], +"al-red-black-tree", +[2,19076,19782], +[2,5537,19783], +[0,19787,0,19788,2523], +"sonarjs", +[0,28367,1091,1092,20437,12384,1096,28927,1170,1364,1457,1575,1594,1648,2026,9243,28929,28930,2070,2593,28933,28934,2856,28935,2863,28936,3083,12792,28940,3230,3241,3277,16617,28859,3361,3445,3519,28944,1552,2999,4010,28945,28948,4709,7801,4745,4747], +[0,28950,3366,5284,6710,5130,5995,4967,12660,28951,28954,28956,28957,1781,28959,2844,2856,4745,1896,28960], +[1,2343,19790], +[0,19791,9888,19792,2537], +[0,4545,1437], +[0,10446,28967,9753,14690,57], +[1,2343,19794], +[0,19796,6538,2514,2523], +[2,4353,67], +[0,23432], +[2,19612,594], +[2,5600,594], +"@types/less", +[2,13058,3675], +[3,4890,11], +[2,19801,4332], +"svelte-i18n", +[1,2343,19806], +"sveltejs", +[0,0,19807,19808,4139], +[0,2398,3183,2899], +[0,28977,28978,28979,2090,28980,17996,18442,28981,7517,2150,3374,3403,10903,15323,4207,28982,28983,28984,28985], +[1,2343,19810], +[0,0,8134,19813,2537], +"-formatting", +[2,1939,19811], +[0,3374,1002,12831,15427,1871,28992,28994,3766,3767,28996,4301,6678,28997], +[1,2343,19815], +[0,0,0,19816,2523], +[0,29004,28992,1388], +[1,2343,19818], +[0,19819,19820,19821,2537], +[0,1437,16064,1494,1595,1700,29013,1874,2020,5989,29016,2613,15980,2704,2720,2744,29018,29020,29022,2991,29023,3074,3157,29024,29025,21420,3445,29026,27534,3505,27168,3919,4094,4135,5513,26573,4562], +[0,21642,5254,1166,1532,24491,2151,29028,4193,4294,4400,29030,1906], +[0,13326,200,3378,20001,3358,6645,15525,15208,1528], +[1,2343,19823], +[0,19828,19830,19831,2537], +[2,1463,6961], +"regexp-", +"regexp-tree", +"regjsparser", +[0,3242,2714,4390,2070,3368,3917,4248,23433,1437,3478,4707,23432,3483,4135,9448,1458,29037,21505,640,3727,29039,3181,9451,9452,2976,2979,2981,29042,29044,4425,29051,2215,29053,25881,29054,29055,25888,29056,29057,9459,4351,2613,3386,3762,635,29059,25893,26567,29061,9462,29063,643,9465,3397,29066,29067,9476,9479,9539,19570,638,4588,9496,9501,9506], +"@lubien/fixture-beta-package", +[0,1091,4384,1687,3297,9542,3984,4039,1483,3988,29069,1092,29070,3393,10630,29071,29073,9515,9516,26037,29077], +[0,1161,5260,6878,6661], +[1,2343,19833], +[0,19834,19840,19845,2537], +[0,1499,3467,3157,1437,2020,2742,1695,29085,2205,1209,4135,7094,3537,1703,2720,3181,3309,4294,4425,3505,29088,9478,6045,14564,29084,4562,29087], +"@ver", +"/eslint-config", +[2,5401,19836], +[2,19835,19837], +"bumpp", +[0,1906,1173,1282,1267,1255,1245], +" eslint plugin", +[2,1984,19841], +"eslint ", +[2,19843,1932], +[0,3378,29093,4796,17507,13729,4354,24313,5592,24095,200,6953,29095,29096,7242,4797], +[1,2343,19847], +[0,0,19848,19852,2537], +[0,29101,17212,4856,9417,29103,29104,12458,29105,7637,29111,4870,6503,4874,29115,29117,20374,6510,7812,5254,29122,6513,29125,1009,1011,1420,1429,1431,21480,1437,1483,1525,1610,20573,1177,1895,29128,1903,1938,1942,1953,1958,2071,27125,2105,29129,2613,2714,2822,2858,29133,3019,1209,3125,2899,3397,3400,3478,13723,3530,1894,3730,29136,29087,4038,4039,11054,4135,29138,4170,4193,4232,18201,4294,4474,91,29139,4558,4562,29140,1983,29141,29142,26744,4749], +"name-", +[2,19849,1155], +[2,4732,19850], +[0,4796,3378,6661,3076,29144,18280], +[2,4807,19851], +[1,2343,19855], +[0,19856,6538,2514,2523], +[0,2613,3727,4135,4588], +[1,2343,19858], +[0,19859,19865,19867,2487], +[0,1091,8531,1437,1595,1676,2205,2687,2745,2858,3074,3157,3545,4135,4207,4300,4507,4588], +[3,10879,16], +[2,19860,13921], +"importx", +"ink-", +[2,19863,1975], +[0,5087,4874,1009,1011,668,29154,1177,29155,29158,1930,1938,1939,1955,1982,2089,1192,17312,29160,1894,4468,91], +"eslint-test", +[0,671,9654,6661,13716,29162,3390], +[1,2343,19869], +[0,19870,19872,2514,4139], +[0,15980,3727], +"esrecurse", +[0,635,9516,9515,29169,4384], +[1,2343,19874], +[0,19875,19876,19879,2399], +[0,9459,25336,26567,21505,29176,29174,3386,3727], +[0,9516,9515,9448,3297,28691,4248,4384], +[2,1006,13060], +"json-diff", +[0,3378,29179,1612], +[1,2343,19881], +[0,19882,19885,19886,2537], +[0,1437,26079,3919,3181,1110,1615,4165,3152,29185], +[3,8724,21], +[2,19883,676], +[0,3421,4749,2899,1177,4039,1503,3479,2151,4874,3696,1280,29188,13983,1225], +[0,200,1523,29190,4990,3378,29191,18462,21003,4144,12804,5957], +[1,2343,19888], +[0,19889,19890,19886,2443], +[0,4707,26079,3530,1110,1615,4165,3152,9488], +[0,1414,2931,4749,1776,2899,1177,23909,29197,1159,17529], +[1,2343,19892], +[0,19893,8134,19894,2523], +[0,16687,20789], +[0,3378,18462,3403,3383,20052,17180,20054,1508,200,6876,16701,8435], +"-fb", +"esprima-fb", +[1,2343,19898], +[0,0,19899,19900,2523], +[0,5087,4874,1009,1011,10817,1177,1895,1192,2990,26230,4039,4042,4468,91], +[0,29208,1745,29210], +[1,2343,19902], +[0,19903,19904,19915,2537], +[0,1437,1479,1525,1676,2720,3741], +[0,1429,2899,3215,4255], +"escomplex-js", +"thing.js", +[2,7067,19906], +[3,2912,12], +"techpreview-launcher", +[2,19908,19909], +[2,17485,18551], +[2,813,19911], +"8.0.0", +[2,5857,19913], +[0,18497,3378,29218], +[1,2343,19917], +[0,19918,19919,19923,2487], +[0,2720,3776], +[0,1173,1212,1245,29224,1280,3400], +"gulp-ta", +"g-version", +[2,19920,19921], +[0,3378,200,8429,1523,3888,8791,24095,3409,29227], +[1,2343,19925], +[0,19926,19927,19928,2487], +[0,2571,3183], +[0,13614,1159,9254,1177,2708,2807,3421,4103,4389], +[0,3410,16774], +[1,2343,19930], +[0,19931,19932,2514,2487], +[0,9892,25886,29239,10744], +[0,4384,9515,9516], +[1,2343,19934], +[0,0,19935,2514,2537], +[0,1429,2814,2832,2899,29246], +[1,2343,19938], +[2,2009,10896], +[0,19947,19949,19951,2537], +"@ethereumjs/config-nyc", +[3,19939,19], +[2,19940,1894], +[2,19940,11540], +[3,19942,21], +[2,19943,671], +[3,17583,11], +"karma-tap", +[0,1437,1482,29251,2674,2720,29253,4135,8363,4747], +"typestrict", +[0,1366,1501,19771,2556,620,3203], +"transactions", +[0,1965,3413,19773], +[1,2343,19953], +[0,19954,19958,19959,2523], +[0,29260], +"-cryptography", +[2,9439,19955], +"rlp", +[0,5087,4874,1009,1011,1587,1177,1895,1955,2675,1192,1894,3720,4039,4468,4474,91], +[0,3414,29263,200,5122,8310,18496,89,202,91,5284,2924,1192,4967,5995,12660], +[1,2343,19966], +"@types/assert", +"cp256k1", +[2,5252,19962], +"karma-t", +[2,19964,2528], +[0,0,19967,19968,2487], +[0,1429,2258,2277,2298,2300,23167,2297,2878,2881,2895,2900,2904,2915,3006,2899], +[0,3415,6988,1671,6901,29269,29271], +[1,2343,19970], +[0,19973,19975,19978,2523], +"es-lookup-scope", +"os-tmpdir", +[0,29276,29277,1525], +"qs-iconv", +[0,48,53,87,94,1195,1208,1212,1544,1593,1610,1177,1881,1938,2026,2151,2182,29280,29282,29283,29285,3421,3524,4151,4535,4537,2924], +"eval", +"evaulate", +[0,1283,17950], +[1,2343,19980], +[0,0,0,19981,2523], +[0,2703,202], +"pause-stream", +"combiner", +[2,4279,19983], +[1,2343,19990], +"asynct", +"it-is", +"stream-spec", +"ubelt", +[0,0,19992,19993,2399], +"flatmap", +[0,5517,13614,23237,19325,1159,1414,9254,1177,2807,2708,3410,4103,4389], +[0,3417,3418,2649], +[1,2343,19995], +[0,0,0,19996,2399], +[0,1623,12080,29300,13777,3585], +"addEventListener", +"addListener", +"pub/sub", +"emits", +"publish", +[1,2343,20004], +"subscribe", +[0,20005,0,20006,2537], +[0,1797,3467,4449,2117,3445,4745,1170,1495,4484,4747,1759,2687,4135,2089,1836,2777,3181,4459,1477,3527,4393,1480,2149,2858,3404,4290,4748,1763,4480,29306,24759,29308,29309,29310,29313,29317], +[0,9621,9622,8174,9623,9624,9625,9626,9627,9628,9659,9648,9649,29319], +[1,2343,20013], +"-browser", +"-browsers", +[2,7177,20009], +"sauce-", +"sauce-test", +[0,20017,20020,20021,2537], +"EventEmitter", +[2,20014,1276], +[2,20014,1278], +[0,14022,8697,29324,1573,1677,2102,2105,15261,2179,2070,11935,29325,14024,29328,11938,11940,11943,3093,29330,3478,29334,4025,4039,4174,29335,14025,4747], +"Events", +"reactor", +[0,29338,13103,4019,4232,4255,4257,4384,3348,4707], +[0,4504,16237,20049,5472], +[1,2343,20023], +[0,20024,20025,20026,2523], +[0,29358,8818,5941,28935,26865,13824,12285,3509,29349], +[0,29355,29359,29362,4874,4493,91,1984], +[0,5592,2210,3452,29365,29367,29368,29369,29370,3422,1118,27662,1745], +[1,2343,20028], +[0,20029,20030,20031,2537], +[0,29358,29377,2822,12285,8126], +[0,29355,7637,29380,3297,4493,91,1984], +[0,5592,1118,2210,1745,27662,29370,3422,3452,29369,29365,29368,29367,28360,8124], +[2,3159,591], +[2,13788,20032], +"human-", +[2,20034,7073], +[1,2343,20037], +[0,0,10435,2514,4139], +"final-newline", +[2,4293,20038], +[3,4759,11], +[1,2343,20045], +"get-node", +"is-in", +"is-in-ci", +[0,0,20046,20048,2523], +[0,1906,1166,1209,3130], +"is-running", +[0,3048,3426,2051,3583,6778,5286,5258,6805,29390,6422,1858,1388], +"subprocess", +"fork", +"execfile", +"bin", +[1,2343,20055], +"binaries", +[0,0,20056,20057,2537], +[0,1389,2323,2346,27608,29396,2436,2447,2463,2494,2496,2530,2272,2839,2297,2881,2900,2899], +[0,3048,3428,4160,3135], +[1,2343,20059], +[0,0,20060,20066,2487], +[0,13614,29404,1159,1593,22932,1855,1177,2133,2159,2070,29406,2569,29410,2708,2762,19073,3206,3410,3421,4103,23948,4135,19729,4389], +"stdio", +"stderr", +"drain", +"flush", +"3584", +[0,3430,7123,3048,1646,3721], +[1,2343,20068], +[0,0,20069,20070,2537], +[0,13614,13616,1177,14741,29416,2741,4389], +[0,6801,3432,6964,1858], +[1,2343,20073], +"-jsdom-abstract", +[0,0,20077,20078,4139], +"expect-", +[2,20074,594], +[2,552,20075], +[0,3421,1429,2899,1596,3202,29424], +[0,1697,3403,7318,29426,3038,3205,1758,3743,3048,7002,29428,29429,6692,3639,6803], +[1,2343,20080], +[0,20081,20084,20086,2487], +[0,1417,7272,13609,29440,2569,3433], +"mkal", +[2,1949,20082], +[0,13613,13614,1389,1177,2133,2159,13619,2571,3206,3410,3421,4103,6810,4389], +"pkg-pr-new", +[0,7276,3426,6789,2051,7107,6970,7288,6849,6763,6422,1858], +[1,2343,20089], +"type-check", +[0,20090,20091,20092,2487], +[0,1417,7272,13609,29440], +[0,13613,13614,20492,1159,9254,1177,2159,13619,2708,3410,3421,4103,4389], +[0,6944,6694,6801,3437,6693,7221,6615,7194,1858,3048,3432,6422,6763], +"orms", +[1,2343,34459], +[0,29450], +"array-f", +[0,3421,2899,1177,1954,1938,1958,1903,1948,1970], +"array-flatten", +"setprototypeof", +"merge-de", +[1,2343,20104], +"scriptors", +[2,20100,20102], +[0,20107,11686,20108,2537], +"-password", +[2,16722,20105], +[0,29456], +[0,3441,3046,6985,16114], +[1,2343,20110], +[0,20111,20112,20113,2537], +[0,29462,29464,1138,1457,1615,2687,4459], +[0,21122,4874,2675,2990,1894,4039,91], +[0,2070,2282,1444], +[1,2343,20115], +[0,20116,20118,20119,2523], +[0,29474,3029], +[2,30722,20731], +[0,6503,29476,1503,2272,2899,3203,3210,3421,4474,91], +[0,29478,28794,29479,24996,29480,25004,20181,29481,29483,6667], +"automatically", +[2,1163,8623], +[3,20121,11], +[2,20122,7120], +[2,20121,2353], +[1,2343,20126], +[0,20127,8002,20128,2523], +[0,29488,29490,28428,24488,28429,27908], +[0,1896,3445,3456,8423,8427,6587,8430,8428,10441,8429,1388,6038,8435,8433,1002,10443,10446,7058,1614,2978,1451,3729,5351,2090], +[1,2343,20130], +[0,20131,20132,20133,2523], +[0,2096,2185,3157,3445,4400], +[0,1166,2020,1906], +[0,13326,200,1896,3445,3456,8423,8427,6587,8430,8428,10441,8429,1388,6038,8435,8433,1002,10443,10446,1614,2978,1451,3729,5351,2090], +[1,2343,20135], +[0,20136,20138,20139,2487], +[0,29501,29505,12285], +"express3", +[0,5087,7637,8818,1170,29509,1192,2845,29512,3244,1894,4232,4468,4474,91], +[0,3452,8124,5576,1170,4967,1388,3212,91], +"partials", +[1,2343,20142], +[0,20143,20144,20145,2523], +[0,1677,2639,2854,3105,3744,89,3824,1155], +[0,68,470,1173,1248,15643,1596,1177,1879,1881,1938,1947,1958,1959,2200,2626,1192,3363,3400,705,4008,7707], +[0,8124,3452,29521,1936,1745,1179], +"unless", +[2,2032,20146], +[1,2343,20149], +[0,20152,20153,20154,2443], +"authn", +"authz", +[0,6825,3263], +[0,2070,705,4389], +[0,3455,29528,23196,29531], +[1,2343,20156], +[0,0,5795,2514,2487], +[1,2343,20158], +[0,20159,20160,2514,4139], +[0,29539,705], +[0,1173,1267,1177,1879,1938,1947,1959], +[1,2343,20162], +[0,20163,9839,20128,34352], +[0,2755], +"caching", +"expressjs", +[1,2343,20167], +[0,20168,20169,20172,2537], +[0,4720,3183], +[0,29551,4384], +"cjs-mock", +"hoare", +[0,7233,7058,5675,57,7119,200,1523], +"tRPC", +"RPC", +"express.js", +[2,10988,16957], +[1,2343,20180], +"fully-typed", +"type-safe", +[0,20187,20191,20192,4139], +"pi", +"typed-api", +"express-api", +"http-api", +"client-s", +[2,20185,2847], +[0,1637,29559,3561], +"unit-testing", +[2,13843,5576], +"web-de", +[0,1175,1193,1245,1257,1264,1628,1192,4307,2924], +[0,6829,11337,2054,16862,6707,7293,2924], +"velopment", +[2,20190,20193], +"web-api", +[1,2343,20197], +[0,20198,20199,20200,2443], +[0,29566,29567,4717,20088,19190,26007], +[0,29569,2899], +[0,14690,6802,29572,200], +[3,8286,12], +[2,20201,364], +"lient-", +"redirects", +[2,20203,20204], +[2,13224,20205], +[2,20201,20206], +[3,20207,13], +[1,2343,20210], +[0,20213,20214,20216,4139], +"reset-classic", +[2,20208,20211], +[0,1437,1477,1480,29018,16232,3074,29581,4290], +[0,4874,1166,2188,29583,4481,1906], +"sanitization", +[0,200,1478,6787,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], +[1,2343,20218], +[0,20219,20220,20222,2399], +[0,1834,29590,29591], +[0,2012,2530,2272,3102,3159,2899,3760,4170,4600], +"openapi3-ts", +[0,1149,5957,12804,2940], +[3,19441,15], +[2,20223,6643], +[1,2343,20228], +"wagger-ui-express", +[2,5051,20226], +[0,20229,20230,20231,2443], +[0,1149,1362,18443,9421,1209,3507,29600,29601], +[0,1414,1437,2070,2899,3230,3259,3519,4135,4170,4193,4246], +[0,3469,27812,18035,3259,25638,29605,7827,3230], +"camelize-ts", +[1,2343,20234], +[0,0,0,20235,2537], +[0,202,888,364,1237], +[1,2343,20237], +[0,20238,11686,20239,2487], +[0,19972,25493], +[0,6639,6884,4571,29615,3403,3741,29616], +[1,2343,20241], +[0,0,20242,20244,2537], +[0,4856,4864,6503,4874,4891,26584,1429,2020,2151,2899,3377,4474,2924,4707], +"snakify-ts", +[0,5194,6778,29622,29624,18135,1871,1283,8958], +[3,18009,14], +[2,20245,4990], +[2,4120,7020], +[3,8116,9], +[1,2343,20253], +"pecification", +[2,20248,20250], +[2,4364,1745], +[0,0,0,20254,2523], +[0,3475,5317,29632,29633,3474,9006,4967,1388], +[1,2343,20256], +[0,20257,20258,20259,2523], +[0,29638,1525,2131,2742,2975,4135,4449,36872], +[0,19181,442,19344,9237,18491,4874,5254,6520,36890,1009,1011,1177,26698,4039,91], +[0,200,29641,19101,20001], +[1,2343,20261], +[0,20264,20265,20267,2523], +"-symbols", +[2,3426,20262], +[0,3480], +[0,4874,1166,1702,4481,1906], +"is-extendable", +[0,1862,2018,2013,13771,2016,26349,6868,20000,15535,19138,29647,29648,6703,29649,1803,1388,965,1149,7003,6567,1362], +"array-slice", +"benchmarked", +[1,2343,20271], +[0,0,20274,20276,2523], +"for-own", +"kind-of", +[0,1166,1437,1702,17474,29654,17477,4481,1906], +"props", +[0,1862,3053,29656,6703,6910,21369,7253,25824,29657,1149,7003,6567,1540,6994,12804,1362], +[1,2343,20278], +[0,20279,20285,20286,2537], +[0,2017,3480], +[2,20284,29685], +[2,1884,2924], +[3,4679,10], +[2,20282,3031], +"@pa11y/", +[0,13789,5366,4874,1317,1701,1702,17474,18669,29654,17477,4481,4494,91,1906], +[0,1862,3768,28483,7051,6760,6994,6925,7094,6882,6870,7072,27334,27338,29664,12692,5957,1149,7003,6567,1362], +[1,2343,20288], +[0,0,20289,20291,2443], +[0,1166,1702,17474,21638,4193,17477,4481,1906], +"@types/yauzl", +[0,1862,17481,1851,29672,1149,7003,6567,6901,17480,12618,1362], +[1,2343,20293], +[0,20294,20295,20296,2537], +[0,2070], +[0,1192,1894,10761], +[0,1745,3709,29679,6774], +[1,2343,20298], +[0,20299,20300,20301,2523], +[0,20280,1169,1324,1525,1842,2929,3257,3357,3758,4135], +[0,1414,1177,29689,2899,29691,10627,4193], +[0,6653,7320,19748,31152,13716,13428,11346,1169,16790,200,33055,29727,34150,26632,3482,3758,11937,34151,5472,1155,34152], +[1,2343,20303], +[0,20307,20308,20309,2537], +"gulp-jsdoc3", +[2,2462,6504], +[2,4598,353], +[0,29069,9510,9479,9539,643,9448,29051,21505,3386,3393,9462,3397,3727,29698,29697,4248,4390], +[0,635,9516,9515,2613,29169,3297,29701,4039,4384], +[0,6666,3378,3358], +[1,2343,20311], +[0,20313,20315,20316,4139], +"color-support", +[0,22970,22971,29707,1668,18145,29708,1209,3074,3093,3478,3545,4507,29711], +[2,13721,15526], +[0,13789,11477,4870,4874,29717,977,1701,2096,2182,29721,3505,29722,4494,91,1906], +[0,27968,5351,13755,5122,1002,23992,4202,12197,29724,29726,13008,8745,8340,6398,17461,3758,3195,158,8221,8924,1936,29727,23691,20630,20631,18048,20637,21881], +"console.log", +[1,2343,20320], +"timestamp", +[0,0,20321,20322,2537], +[0,4874,7677,22839,33261,35609,1177,1938,1942,2832,91,1983,1984], +[0,4967,5995,5354,4963,181,6624,24456,23362,27448], +[1,2343,20324], +[0,0,20326,20331,2443], +"pure-rand", +[0,87,5583,811,816,1177,2193,2899,3253,26777,3421,4042,4073,4167], +[3,16596,12], +[2,20327,2024], +"poisoning", +[2,20327,20329], +[0,15008,25386,25388,16518], +"based", +"based testing", +[2,4635,20333], +[2,11861,10428], +"quickcheck", +[1,2343,20338], +[0,20343,5795,20344,2487], +"jscheck", +"jsverify", +"fuzz", +"fuzzer", +[0,27404,1437,12084,2021,2088,2185,2205,2654,2863,3157,3173,3490,814,29742,4562,4748], +[0,3487,5995,200,29744,5592], +[1,2343,20346], +[0,20352,20356,20357,2523], +"@fast-c", +"sv/format", +[2,20347,20348], +"@fast-csv/", +[2,20350,1644], +[0,29749,3084,4339], +"writer", +"csv writer", +"CSV", +[0,442,1759,1177,1895,1938,1953,1955,1958,2203,1209,2899,1894,4419,1531,91], +[0,3487,5576,10768,29752,36,5995,5592,4030,1781], +[1,2343,20359], +[0,0,20360,20361,2487], +[0,1362,1429,1506,2899], +[0,12804,4166], +"psql", +[1,2343,20364], +[0,20367,34487,20379,34352], +[3,19185,12], +[2,20365,4262], +[0,97,5663,1620,29762,29765,4729], +"macchiato", +[2,20365,20368], +"erge2", +[2,6502,20370], +"@types/pi", +"comatch", +[2,20372,20373], +"bencho", +"rmlnc", +[2,16693,20376], +"fdir", +[0,6599,5131,5592], +"hereby", +[1,2343,20383], +"snap-shot-it", +[0,20386,0,20387,2523], +"imple", +[2,20384,1744], +[0,18089], +[0,1936,57,12075,29790,10658,2062,29791,29792,15512,3493,1753,29793,29794,1644,4141], +[1,2343,20389], +[0,0,20390,2514,2487], +[0,2899,1177,2759,1317,29801,1311,1954,1938,1958,1903,1970], +[1,2343,20392], +[0,20393,20395,20396,2399], +[0,29806,4578,1433], +"strnum", +[0,1429,2899,3095,3752,1434,29810], +[0,2026,1544,1303,20150,5165], +[1,2343,20399], +"js2xml", +[0,20401,20402,20403,4139], +"json2xml", +[0,3501], +[0,3095,2899,1429,1434], +[0,3495,3497,1303,20150,5165,13445], +[1,2343,20405], +[0,20406,20407,20408,2537], +[0,1433], +[0,2899,1429,1434], +[0,3495,2703,1303,20150,5165,29824,6875], +"avvio", +"toad-cache", +[1,2343,20421], +"find-my-way", +"@fastify/", +[2,20413,1851], +"-warning", +[2,3729,20415], +"abstract-", +[2,20417,6807], +"-my-request", +[2,13318,20419], +[0,20429,20407,20430,4139], +"-json-parse", +[2,18112,20422], +[3,16781,12], +"ringify", +[2,20424,20425], +[2,8530,4643], +[2,20413,20427], +[0,29829,3501], +[0,3495,1303,20150,5165,20151,14374,3424,28438], +[1,2343,20435], +"-compiler", +[2,20426,20432], +[2,20413,20433], +[0,20438,20439,20430,2523], +"h2url", +"ajv-i18n", +[0,29835,3424,1433,26413,4578], +[0,3095,2899,1429,3752,1434], +[1,2343,20448], +"autocannon", +"fast-json-", +"body", +[2,20442,20443], +"merge-patch", +[2,8530,20445], +"branch-c", +[0,0,7878,20455,2537], +"omparer", +[2,20447,20449], +[2,3125,1276], +"fluent-", +[2,20452,2845], +[2,20413,3697], +[0,3495,15393], +[1,2343,20457], +[0,20458,0,20459,2523], +[0,3729,614], +[0,6804,3403], +"piscina", +"@vercel/n", +[1,2343,20483], +"@vercel/ncc", +"loader-", +[2,20464,8791], +[3,12397,15], +[2,20466,2924], +"@umijs/b", +"abel-", +"preset-umi", +[2,20469,20470], +[2,20468,20471], +[2,1221,18104], +[2,4524,20473], +[3,1233,25], +[2,20475,15301], +"tyled-", +[2,20477,4963], +[2,5584,20478], +"@umijs/c", +"ase-sensitive-paths-webpack-plugin", +[2,20480,20481], +[0,0,9264,20486,4139], +"ader-runner", +[2,13513,20484], +[0,1388,1389,3403], +[1,2343,20488], +[0,0,20489,20497,2523], +[0,1906,1166,4481], +[2,19523,3036], +[2,5613,4565], +[2,5613,3053], +[2,5613,6645], +[2,5613,6913], +[2,18996,4237], +[2,4385,57], +[0,3403,3504,29854,2090,17996,2150,17462,16503,7318,4262], +[1,2343,20501], +"anything", +"protocol", +[0,0,11332,20502,2537], +[0,3403,18104,2090,4014,28977,29862,3506,15174,614,594,364,6805,6422,1858,2741,13735,4354], +[1,2343,20504], +[0,0,20505,20506,4139], +[0,29867,5535,4874,5254,7677,26881,4201,91,1984], +[0,2026,6961,4082,7433], +"fbjs-css-vars", +"setimmediate", +[1,2343,20510], +[0,0,20511,2514,2523], +[0,4874,7677,1446,668,1177,1905,2807,1894,91,4543,1984,28862], +[1,2343,20513], +[0,20518,20530,11581,2537], +"@skypack/package-check", +"dead-code-elimination", +[2,9403,20515], +[2,7911,20516], +[0,2760,2856,18545], +"in web", +"in javascript", +"in react", +"Plug & Play", +[3,11608,13], +[2,7519,4963], +"ui component", +[2,16914,6286], +"advanced ", +[2,20527,5983], +"scan", +[0,2152,2899,3699], +"scanner", +[1,2343,20534], +"phonebook", +[0,20535,20552,20554,2537], +[0,29882,29884,3486,3923,23952,3348], +"autofillotp", +"share", +[2,7426,17357], +[2,2998,20538], +"mylocation", +[2,13735,20540], +"colorpicker", +"wakelock", +"WhatsappShare", +"NetworkConnection", +"TextToSpeech", +"VoiceRecognition", +"SnapScanner", +"Network", +"Monitor", +[2,20549,20550], +[0,4874,1398,2018,1894,4389,91], +"View360", +[0,2636,1179], +[1,2343,20556], +[0,20557,20558,20559,2399], +[0,1620,10752,29893,29894,29895], +[0,53,8229,87,442,5583,1193,29897,27401,1377,1389,1424,1505,1177,2193,2203,1192,2780,11348,1783,29899,1894,3754,4042,8849], +[0,2636,29901,29903,11812,1746,13814], +[1,2343,20563], +[3,5085,23], +[2,20561,582], +[0,0,20564,2514,2537], +[0,1362,29908,1429,29913,1506,2899,3697], +" program", +[2,6564,20565], +"data ", +[2,20567,6355], +[1,2343,20570], +[0,20571,20572,20578,2537], +[0,25624,29919,29923,29920,29918,29928], +[0,28042,29934,1149,1362,1499,29933,91,1984,23539], +"dequal", +"glob-", +[2,20574,3508], +[3,16396,12], +[2,20576,3508], +[0,18035,29937,3519,14871,25638,14873,29938], +[1,2343,20580], +[0,20581,20582,20583,2523], +[0,3524,4237,4709], +[0,1173,1175,1178,1257,1264,1267,14237,1177,1881,1935,1938,2126,29945,1192,2774,29946,10622,4039], +[0,3520,3521,13392], +"detect-libc", +[1,2343,20587], +"thread", +[0,20588,20589,20590,2443], +[0,2057,2151,29952,22667,3730,705,17047,4707], +[0,1177,2276], +[0,3521,29727,3364], +[1,2343,20592], +[0,20593,20594,20590,2523], +[0,1863,2057,2151,29952,22667,3730,705,17047,4707], +[0,1177,2276,824], +"@pinojs/redact", +[1,2343,20599], +"figure", +"fallback", +[0,20600,20601,20602,2523], +[0,1137,1512,1543,29964,1591,16442,2765,3183,3456,3459,6331,29965,3547,3741,3762,705,4167,4562], +[0,18007,1177,1900,1903,1938,1954,1958,1970,2759], +[0,200,1591,3525,29969,29971], +[1,2343,20604], +[0,0,11488,2514,2443], +[1,2343,20606], +[0,0,0,20607,4139], +[0,7009,1512,6983,200,7201], +[1,2343,20609], +[0,0,20610,20612,2523], +[0,1177,27275,2398,2899,3421], +"filesaver", +[0,2070,3529,3530], +"saveas", +"blob", +[1,2343,20616], +[0,7936,7938,7939,4139], +[1,2343,20618], +[0,0,20620,20625,34352], +"strtok3", +[0,1166,29991,4481,27659,1906], +"token-types", +"-extra", +"-extras", +[2,15149,20623], +[0,19138,7241,1862,6567,29994,12918,202,21244,28067,6270,353,4719,21009,6715,1149,7003,6778,1362], +"@tokenizer/token", +"commonmark", +"noop-stream", +[1,2343,20633], +"pic", +"picture", +"photo", +[0,20692,20693,20765,2399], +"video", +"exif", +"macho", +"jpg", +"apng", +"gif", +"flif", +"xcf", +"cr2", +"cr3", +"orf", +"arw", +"dng", +"nef", +"rw2", +"tif", +"bmp", +"icns", +"jxr", +"psd", +"indd", +"rar", +"7z", +"mp4", +"mid", +"mkv", +"webm", +"mov", +"avi", +"mpg", +"mp2", +"mp3", +"m4a", +"ogg", +"opus", +"flac", +"wav", +"amr", +"epub", +"mobi", +"rtf", +"woff", +"woff2", +"eot", +"ttf", +"otf", +"ico", +"flv", +"xz", +"xpi", +"cab", +"deb", +"rpm", +"Z", +"lz", +"cfb", +"mxf", +"mts", +[0,30001,30004,30007,30011,20416,30015,30017,18730,20595,30018,30019], +[0,5517,36559,30022,4874,1090,30024,28400,1409,1676,21594,1177,1938,1953,1954,1958,2020,30025,30027,2702,1192,3073,3079,30028,29197,28941,3697,3752,3756,4039,4135,4238,30029,4294,4389,4431,4474,4481,91,4709], +"webassembly", +"blend", +"bpg", +"docx", +"pptx", +"3gp", +"j2c", +"jp2", +"jpm", +"jpx", +"mj2", +"aif", +"odt", +"ods", +"odp", +"heic", +"pcap", +"dsf", +"lnk", +"voc", +"ac3", +"3g2", +"m4b", +"m4p", +"m4v", +"f4a", +"f4b", +"f4p", +"f4v", +"mie", +"qcp", +"asf", +"ogv", +"ogm", +"oga", +"spx", +"ogx", +"ape", +"wv", +"cur", +"nes", +"crx", +"ktx", +"dcm", +"mpc", +"arrow", +"shp", +"aac", +"mp1", +"s3m", +"xm", +[2,12207,35471], +"skp", +"lzh", +"pgp", +"chm", +"3mf", +"zst", +"jxl", +"vcf", +"jls", +"pst", +"dwg", +"parquet", +"arj", +"cpio", +"ace", +"avro", +"icc", +"fbx", +"vsdx", +[0,2062,2942,3101,1781], +[1,2343,20767], +[0,0,20768,20769,2537], +[0,1177,1895,19286,1954,1955,2675,1192,1894,4400], +[0,3378,30036,30037,3304,30038], +[1,2343,20771], +[0,20772,20773,20774,2523], +[0,3549], +[0,1177,25843,91], +[0,158,26020,1687], +[1,2343,20776], +[0,20777,20778,20779,2487], +[0,30055], +[0,1906,1166,4481,4400], +[0,3383,1781,7914,3378,13864,2100,2104,2105,7076,6614,6605,2090,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], +[1,2343,20781], +[0,8400,8134,20782,2523], +[0,4750,3383,2090,2100,2104,2105,7076,6614,6605,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], +[1,2343,20784], +[0,0,10435,20785,2523], +[0,18523,2041,6661], +"locate-path", +[1,2343,20790], +"-magic", +[2,1981,20788], +[0,20791,0,2514,2523], +[0,30071], +[1,2343,20793], +[0,20794,20795,20798,2443], +[0,10780,1301,4736], +[0,1389,2899,16112,4770], +"detect-file", +"resolve-dir", +[0,13336,1388,16718,2072,57,6523], +[1,2343,20802], +"dir-polyfill", +[2,4571,20800], +[0,20803,20804,20805,2537], +[0,1104], +[0,1177,1889,1954,2022,2899,3421,91], +[0,1851,1932,2541], +[1,2343,20807], +[0,20808,8134,20809,4139], +[0,30088], +[0,23869,30090,3547,23868,30091,4718,1871,30092,30093,30094], +[1,2343,20811], +[0,0,20812,20813,34352], +[0,1429,2759,2899,1899], +[0,23869,30090,3547,23868,23877,2712], +[1,2343,20815], +[0,20816,11488,20817,4139], +[0,30110,30115,30106,30122,1112,1149,29183,1457,30117,1525,1606,1673,1676,1836,2015,30104,3188,3278,30107,30108,30119,30112,30120,8630,4135,4232,4243,30105,2822], +[0,200,21110,21111,2041,3548,30124,3073,1781,2026,2556,30125,2999,30127,30128,30130,30131,30132,30134,7047,22850,30135,27662,13325,5258,30137,30139,30140,30141,30142,20997,20998,28845,4345,30143,3363,30144,17979,30147,27838,30140,30148,2134,28413,30149,13539,3111,21102,30153,30155,30156,30158,24093,17878,1605,20999,30159], +[1,2343,20854], +"@firebase/app", +[3,20819,11], +"uth", +[2,20820,20821], +"@firebase/", +[2,20823,614], +[2,20823,13901], +[2,20823,18035], +"nalytics", +[2,20820,20827], +[2,20819,2063], +[3,20829,14], +[2,20830,553], +"firestore", +[2,20823,20832], +[3,20833,11], +"unctions", +[2,20834,20835], +[2,20823,8899], +[3,20829,15], +[2,20838,14044], +[2,20822,4097], +[2,20823,6681], +[2,1161,10653], +[2,20823,20842], +"remote-", +[2,20844,1541], +[2,20823,20845], +[2,20825,4097], +[2,20826,4097], +[2,20828,4097], +[2,20829,4097], +[2,20833,4097], +[2,20836,4097], +[2,20837,4097], +[0,0,20855,20856,2537], +[0,1389,1400,1544,1177,1895,3421,1894,3758,4151,30164,4389], +[0,30166,14355,14356,30167,30168,57,18048,29895,30170,3549], +[2,20841,4097], +[2,20843,4097], +[2,20846,4097], +[1,2343,20861], +[0,20864,20865,20866,34352], +"Firebase", +"realtime", +[0,4477], +[0,1835,1192,2784,2796,4227], +[0,2924,4749,24753,24754], +[1,2343,20877], +"@fastify/b", +"usboy", +[2,20868,20869], +[3,20848,19], +[2,20871,553], +"farmhash-modern", +"jwks-rsa", +"@google-cloud/firestore", +[3,20875,14], +[0,0,0,20878,2537], +[0,3552,28100,4796,7191,7287,2062,6824,1161,7242,163,6698,5260,6646,7117,3378,6878,6661,6666,7037,7090,7293,6950,7086,6573,664], +[3,20819,12], +[1,2343,20881], +[0,20896,20898,20899,2523], +"i-documenter", +[2,20879,20882], +[3,20840,15], +[2,20884,553], +[2,4853,6641], +"rebase-token-generator", +[2,16785,20887], +[2,16936,4007], +[3,2113,11], +"ken-generator", +[2,20890,20891], +"http-me", +"ssage-parser", +[2,20893,20894], +[0,1170], +"admin", +[0,4072,4474,91], +[0,30190,30191,30192,30193,30194,30198,30200,30202,5592,30203,30204,30207,30208,5995,4967,91], +[1,2343,20901], +[0,6263,20906,20907,2537], +"-sql-connector", +[2,6599,20902], +[2,20876,20903], +[2,20876,11631], +[0,48,53,68,83,85,87,14128,5583,816,6373,1178,1193,1198,30214,1610,1652,1745,1177,1881,1938,2126,29945,2675,1192,2990,29946,1894,30216,3776,4042,4071,4073,4131,4172,30217,91,4585], +[0,4315,3555,1832,30219,7165,30220,89,2124,91,30223,30225,30227,1473,7208], +"async-lock", +"cjson", +"-in-any-order", +[2,1693,20910], +"exegesis", +[2,20912,3228], +"gaxios", +[1,2343,20919], +"auth-library", +[2,10692,20916], +"libsodium-wrappers", +[0,0,20920,20923,2523], +[0,30236,30239,30240,30241,1177,30242,91], +"proxy-agent", +"sql-formatter", +[0,30245,4627,5398,8190,8191,8193,30247], +"stream-chain", +"stream-json", +[1,2343,20927], +[0,20929,20930,20932,2487], +"superstatic", +[0,1149,1676], +[0,1192], +"triple-beam", +[0,27,13397,6731], +"-analytics", +[2,14566,20933], +[2,4562,8683], +[1,2343,20939], +"cdn", +"ssl", +[0,20941,0,20944,4139], +"hosting", +[0,3266,3527,4228], +"hronization", +[2,15001,20942], +[0,1623,3561,22292,7121,57,30258,353,24798,5198], +[1,2343,20946], +[0,20947,20952,20953,4139], +[0,3681,3688], +"alce", +[2,1708,16580], +"extend-", +[2,20950,3048], +[0,4874,1177,1895,30265,3561,1894,91], +[0,1623,3561,6425,30268,3563], +[1,2343,20955], +[0,20956,20957,20958,2537], +[0,1457,5314,2151,3527,3616,30274,15245,30275,4207,27921,4747], +[0,1166,1414,1596,1177,30279,2203,3561,3613,1894,4337,3348], +[0,200,3561,22147], +"@types/rimraf", +[2,13777,12798], +[1,2343,20962], +[0,20963,0,20964,2487], +[0,30286,205,208,218,30287], +[0,1473,14186,1623,4964,6564,30289,30290,30291,29428,3561,6425,6616,30292,17540,5341], +[1,2343,20967], +"unflatten", +[0,20968,20969,20970,2487], +[0,1393,30298,30299,3688], +[0,30302,3561], +[0,1473,1512,1536,1623,3178,3561,6425], +[1,2343,20972], +[0,20973,20974,20975,34352], +[0,1393,3688], +[0,3561], +[0,1623,16919,3561,6425], +[1,2343,20977], +[0,20984,20985,20987,2523], +"@types/acorn", +[3,4060,16], +"vereload", +[2,20979,20980], +"erve", +[2,15476,20982], +[0,1165,30298,1437,30314,30315,3561,30317,30326,3564,30327,30329,30331,30334,30336,30338,30341,30343,3579,3584,3587,30346,30348,30350,30353,30356,3643,30358,30360,30363,30365,30366], +[0,1173,1175,1195,1264,1268,1279,19243,1461,1628,30368,30370,30371,30372,30378,1177,30380,1916,1959,2054,2092,2600,30381,2822,2843,3105,30383,3160,30385,30389,30390,30391,30393,30395,30396,30397,30399,29285,3376,30400,3427,3459,30402,3613,3618,30274,16578,3744,89,3824,30404,4039,4294,4307,4389,30407,2924,4681,30410], +"lightweight", +[0,3561,6425,1623,12616,30413], +[1,2343,20989], +[0,20990,0,20993,2523], +[0,30424,205,208,213], +"byline", +"util-extend", +[0,30426,30427,1623,30428,5317,6413,3561,6425,30430,3766,10658,12616], +[1,2343,20996], +"markdox", +[0,21001,0,21002,2537], +"deploy", +"deployment", +"devops", +"ssh", +[0,30424,205,208,30287,3688], +[0,1623,30428,5317,6433,3561,6425,3583,10658,6436,6437,12616], +"sequential", +"remote", +[1,2343,21006], +[0,21007,0,21008,2537], +[0,30424,205,208,3681], +[0,30426,30427,1623,30428,5317,30442,19101,3561,6425,5547,3586,10658,12616], +"wrapper", +[1,2343,21011], +[0,21012,21013,21017,2487], +[0,3681], +[0,3561,3678,26712], +"mini-s", +"vg-data-uri", +[2,21014,21015], +[0,1623,4298,3561,6425], +[1,2343,21021], +"-datepicker", +[2,2128,21019], +[0,0,20974,21025,34352], +"ailwindcss", +[2,1977,21022], +[2,3704,4383], +[0,1623,1681,16918,3561,6425], +"windicss", +[1,2343,21051], +[2,20525,591], +[2,4380,6911], +"tailwind c", +[2,21030,544], +"tailwind ", +[2,21032,11513], +[2,21032,6082], +"sections", +[2,21032,21035], +"tailwind ui", +[2,21032,89], +[2,21032,188], +[2,21032,1098], +"tailwind s", +[2,21041,1971], +"django", +[2,21032,21043], +"tailwind r", +"uby on rails", +[2,21045,21046], +"tailwind l", +"aravel", +[2,21048,21049], +[0,0,20974,21058,2537], +"tailwind nuxt", +"tailwind n", +[2,21053,2680], +"tailwind a", +"stro", +[2,21055,21056], +[0,15215,1623,3599,3178,16919,3561,6425], +"flask", +[2,21032,21059], +[1,2343,21062], +[0,0,21063,21064,2487], +[0,1687,3527,3561], +[0,3561,1623,6425,30462,30465,30466], +[1,2343,21066], +[0,0,21068,21069,4139], +"ffmpeg", +[0,1429,2323,2384,2463], +[0,3561,1623,6425,30472,15182,9320], +[1,2343,21071], +[0,21073,21075,21076,34352], +"fbemitter", +[0,2654,9673,3561,3676], +[2,3794,11017], +[0,19605,1165,1429,1503,1177,1895,1930,19622,1945,1953,19623,1955,1964,1988,17308,2899,19761,3421,30479,3678,30481,1894,4320,4323,4337], +[0,3561,5341,1936,188,30483,30484,1623,695,2278,4329,30485,4337], +"dispatcher", +[1,2343,21079], +[0,21080,0,21081,2399], +[0,30287,3688], +[0,12083,1623,158,30491,12631,16587,3561,6425,23992,6398], +"lolex", +[1,2343,21084], +[0,21085,21086,21087,2399], +[0,3688,30275,814], +[0,1166,1414,1177,30279,1955,2203,3561,3678,1894,4337], +[0,1623,3561,6425,1204,30498,3378], +[1,2343,21089], +[0,21090,0,21091,2537], +[0,2984], +[0,3561,30504,30506], +[1,2343,21093], +[0,21094,21095,21096,2523], +[0,2807,4135,1595], +[0,1700,1192,695,2278,2675,3144,30512,1622,1177,1637,1701,2203,3561,4337,4468,4474,2924,1894,1610,48,442,1193,17167,4294,53,2969,2990,3400,4111,30520,3613,3640,192,1953,27928,4257,87,4523,1939,3616,1938,20281,1982,1895,1955,19344,30518,5467], +[0,1623,3561,22147,2924,11526], +"cliff", +"shush", +"flatiron", +"nssocket", +"-monitor", +[2,2134,21101], +[1,2343,21105], +"getopts", +[0,21107,20974,21112,2487], +"cli-testlab", +[0,3688,4319], +"fault", +" tolerant", +[2,21108,21109], +"sysadmin", +[0,1623,3178,16918,3561,6425], +[1,2343,21114], +[0,21115,21119,21123,4139], +[0,1393,30298,3681,30532], +"node-ab", +[2,18876,12620], +[2,21116,21117], +[0,30302,3561,26712,3591], +[2,6062,2978], +"ross-spawn", +[2,4857,21121], +[0,1623,16918,3561,6425], +"jest-circus", +"karton", +[1,2343,21128], +"typecheck", +[0,5488,20974,21130,2523], +[2,1218,21131], +[0,1623,2414,30541,30542,16918,6425], +"hermes-parser", +[1,2343,21135], +[3,4852,15], +[2,21133,13921], +[0,21137,20974,21138,2399], +"increment", +[0,30299,3688,30532], +[0,1623,3561,6425], +[1,2343,21140], +[0,21145,20974,21150,2399], +"asynckit", +"combine", +"d-stream", +[2,21142,21143], +[0,1393,3688,30532], +[2,13888,2759], +"fake", +"far", +"is-node-", +[0,3561,1623,6425,3178,16918,3634], +"modern", +[2,21149,21151], +"obake", +[1,2343,21157], +[2,31868,7625], +[2,31865,21160], +[0,21159,21164,21169,2537], +"dezalgo", +[0,1636,3681], +[3,9367,18,5], +"@tunnckocore/prettier-config", +"formdata-", +[2,21162,6422], +[0,30559,3561], +[2,19713,1781], +[2,3862,18481,21172], +"www", +"ulpoad", +[0,1623,3178,16918,3561,6425,3586], +[1,2343,21171], +[0,21176,21181,21183,2399], +"bob", +[3,11366,11], +[2,21173,3797], +"tiny-warning", +[0,16837,3681,3688], +"just-", +"debounce-it", +[2,21177,21178], +"tsdx", +[0,1596,1177,1895,2675,1192,2990,3561,1894], +[2,7519,582], +[0,4529,3561,1623,6425], +[1,2343,21190], +"render props", +"higher", +" order component", +[2,21186,21187], +"hoc", +[0,21012,0,21191,2443], +[0,3561,1623,6425,2278,3639], +[1,2343,21193], +[0,21194,0,21196,2443], +[0,30577,220,3681], +"conditional", +[0,30579,1451,30581,1623,30413,30428,3639,30582,3561,6425,3624,3586,10654,10659,5341,12616], +[1,2343,21198], +[0,21199,21200,21201,2523], +[0,30587,30589,30590], +[0,20117,1393,3561,3613,4042], +[0,3561,1623,6425,30594,2887,30595], +[1,2343,21203], +[0,0,20974,21204,2487], +[0,3561,1623,6425,8426], +[1,2343,21206], +[0,5488,20974,21138,2537], +[1,2343,21208], +[0,5488,20974,21138,2443], +[1,2343,21211], +"check-dts", +[0,20973,20974,21138,4139], +[1,2343,21213], +[0,5488,20974,21215,2537], +"front matter", +[0,1623,3374,16918,16919,3561,6425,1002], +"meta data", +[1,2343,21218], +[0,21219,20974,21138,2523], +[0,3688,30532], +[1,2343,21221], +[0,0,21222,21223,2537], +[0,2675,2899,3561,2759,1894,2990,3640], +[0,3561,3665,3586,6425,1623,3585,1932], +"universalify", +[1,2343,21229], +"klaw", +"dir-files", +[2,15034,21227], +[0,21230,0,21231,2523], +[0,28789,30630,30633,28817,30636,26477,30640,32579,30643,30647,30649,30652,30654,30657,30658,215,30662,30670,30673,30677,30678,30682,30686,30690,31001,30693,30701,30703,27930,218,28640,27069,30708,30712,29388,30715,32835,29704,30721,30724,30725,1165,1393,30728,30733,30736,1635,30326,30739,3570,30331,30338,3579,3584,3587,30742,30744,4791,30747,30348,30749,3611,30751,30754,3643,30757,30759,30761,30763,30358,30363,30366], +[0,1623,30428,16897,14836,30765,3286,3561,6425,10654,10659,16900,12616], +[1,2343,21233], +[0,21234,21235,21138,4139], +[0,1393,30298], +[0,30302,2646,3561], +"assist", +[2,6019,21236], +[1,2343,21239], +[0,0,0,21240,2537], +[0,1623,3561,30775,57,21110], +[1,2343,21242], +[0,0,0,21245,2537], +"any-promise", +"then", +[0,1623,3561,30775,57,4329,2278], +"thenify-all", +[1,2343,21248], +[0,21249,21250,2514,2443], +[0,1636,23462], +[0,48,53,68,11267,61,87,94,1166,1198,16150,1701,1177,1938,2070,3183,3421,3561,4135,91], +[1,2343,21252], +[0,21253,21254,21255,4139], +[0,3688,4361], +[0,30315,3561], +[0,1623,3178,16918,3561,6425,8221,4361], +[1,2343,21257], +[0,21012,20974,21138,2537], +[1,2343,21259], +[0,0,21260,21261,2537], +[0,1177,2675,2990,1894,4387,4389], +[0,3561,6692,57], +[1,2343,21263], +[0,21264,0,21265,2537], +[0,28807,30805,30808,30811,30813,30816,30818,4484], +[0,14873,25638,14871,3519,18035,1747,13392,5576,5995,29938,14872,91,4799,1999], +[1,2343,21267], +[0,21268,21269,21270,2537], +[0,9376,9375], +[0,192,22559,1414,1429,1431,1436,1567,2675,2829,2990,2899,4255], +[0,1936,6523,23760,57,353,30826,24798,7121,26467], +[1,2343,21272], +[0,21273,0,21274,2523], +[0,30840,3348,2970,2973,4431,30843,2972,30842,3310,30837,30834,3923,30833,30839], +[0,1747,28088,3693], +[1,2343,21295], +"@monaco-editor/loader", +[3,7664,11], +"topwatch", +[2,21277,21278], +[2,7666,6731], +"@snippetors/vuepress-plugin-tabs", +[3,19464,17], +"google-a", +[2,21283,20827], +[2,21282,21284], +[2,93,4314], +[2,21282,21286], +[2,21282,7193], +"monaco-", +[2,21289,6038], +"dsense2", +[2,21283,21291], +[2,6324,21292], +[2,19469,21293], +[0,21297,21298,21299,2537], +"bitap", +[0,13609,30849,30850,30855,1695], +[0,1173,1280,4895,1245,1264,1389,5669,30857,2025,2297,2881,25848,2895,2900,30859,2899,30862,18102,3774,4019,4135], +[0,3696,1145,6468,1973,5472,5286,6892], +"@types/katex", +[1,2343,21303], +"socket", +[0,21304,21305,21310,2487], +[0,1615,23975,4707], +[0,1148,2759,2899], +"tex", +"sublime", +"katex", +"sublime text", +[0,3358,582,3378,3697,30872,18462,1973,5001], +[1,2343,21312], +[0,0,21313,21314,2443], +[0,30877,30879,53,5874,12372,87,94,11976,4856,6503,4874,6513,17214,16480,30881,1429,1596,1610,30883,668,2675,30888,3165,2899,3401,30889,28423,3744,11481,4193,4196,4072,91,4548,1983,1984,824], +[0,3698,89,181,6073,30891,23361,4963,30892,6400,5130], +"globule", +[1,2343,21318], +[2,2237,5365], +[0,21319,7923,11581,2523], +[0,1437,1457,2152,18545], +[1,2343,21321], +[0,21322,21323,21324,2537], +[0,30905,8506,3137], +[0,21024,5467,811,8850,816,5087,9363,1009,1011,1529,1177,1895,1955,2675,1192,30912,12129,1894,4042,4257,4072,4474,91], +[0,1894,1932,1776,8505], +[1,2343,21326], +[0,0,21327,21330,2487], +[0,4874,30922,1166,1894,91,13151], +[2,4755,1145], +"yeoman-test", +[0,1894,30924,91,5651,3705], +[1,2343,21332], +[0,21333,21334,21335,4139], +[0,18710], +[0,3401,1894], +[0,6661,1932,1894], +[1,2343,21338], +"restangular", +[0,0,21342,21343,2487], +"ui-router", +"foundation", +"traceur", +[0,8862,811,816,4874,1166,1894,4042,4075,3709,4474,4484,91], +[0,1894,3709], +[1,2343,21345], +[0,21346,0,21347,2487], +[0,30940,1209,1997], +[0,1894,1541], +"find-git-root", +[1,2343,21353], +"git-config", +[3,31021,19], +"@merkle-open/eslint-config", +[0,0,8134,21355,2537], +"modular", +[0,3721,1413,1412,2098,4202,2090,12786,30946,7017,30947,2382,30948,23933,30950], +[1,2343,21357], +[0,21358,21359,21361,4139], +[0,1209,30956], +[0,1429,1506,1509,30958,2899], +"pooling", +[0,3721,1851,30960,1676,6738,7017,13086,22405,1671,12786], +[1,2343,21363], +[0,21364,21366,2514,2523], +[0,8801,1110,3847], +"ts2mjs", +[0,4880,15606,4889,2700,2798,89,3824,3904], +"iterators", +[1,2343,21370], +"iterable", +[0,21372,8134,21375,2487], +[2,21373,29777], +[0,30970], +"@prisma/d", +"@prisma/dev", +[0,3721,22405,12786,24130,30946,7017,6901,3242,30974,17003,30975,6754,2585,1871,6988,15244], +[1,2343,21382], +"@werkzeugkiste/eslint-config", +[3,21377,15], +[2,6019,1541], +[2,21378,21379], +"install-", +[0,21389,0,21390,2487], +"postmerge", +[2,17496,21383], +[2,21381,21384], +[3,9794,17], +[3,13848,20], +[2,21386,21387], +[0,6041,4484,2687,26379,3530,30097,3527], +[0,3358,30981,30982,1894,3720,6983,1501,30983,30872], +[1,2343,21392], +[0,21394,21398,21399,2523], +"@cfware/lint", +[0,1512,3183], +"@cfware/nyc", +"if-ver", +"libtap", +[0,2899,2272,4170,2759,1596,3202], +[0,1781,200,6983,1512], +[1,2343,21401], +[0,21403,21408,21409,2523], +"available", +[0,3260,25638,21374,28286,30996,21351], +"connection", +"tcp", +[3,6045,9], +"chosen", +[0,3467,4763,2611,1192,3445,2020,2929,28974,3510,1759,8537,15452,1457,2151,842,16145,16473,2794,3077,3310,29710,4294,31000,91,5087,4874,6477,28076,1151,2191,31004,3393,31006,32248,31008,28229,31009,25629,31013,4864,33235,23531,8998,29420,31015,31018,13471,32470,31023,31026,33237,28231,29421,26285,33683,21371,13502,29425,31475], +[0,9628,31034,31035,31037,31038,18035,1747,17626,31039,6869,31040,31041,31042,3519,31043,31045,31046,31047,31048,31049,31050,31051,31052,31221], +[1,2343,21411], +[0,0,21412,21414,2537], +[0,5542,1317,1429,31058,1700,31061,1177,1942,1964,2323,2361,2367,2409,20304,2494,2496,31063,2553,2654,2665,2832,2899,3310,3400,1894,3756,19745,19750,12120,3980,19751,4183,31066,4747], +"std", +[0,588,5342], +[1,2343,21416], +[0,21417,21419,21421,4139], +[0,1362,1364,1512,2026,3078,3188,3220,31074,3460,3507,31075], +"@sec-ant/readable-stream", +[0,1429,2323,2463,3215,4089,4193,4196,4339], +"onetime", +[0,1370,7223,29179,18157,12468,2325,3358,31078,3383], +[1,2343,21424], +"precise-now", +[0,0,6538,2514,2537], +[1,2343,21426], +[0,0,21427,21428,2487], +[0,4770,2899], +[0,3729], +"-maps", +[2,6477,21429], +[1,2343,21433], +[2,2190,6660], +[0,0,0,21434,8878], +[0,200,3730], +[1,2343,21436], +[0,21443,0,21445,2537], +[3,13936,15], +"evry", +[2,21437,21438], +"make-d", +"eno-edition", +[2,21440,21441], +[0,1437,3730], +"deno", +[0,2924,1932,3730,10036], +[1,2343,21448], +"deno-edition", +[0,21449,21451,2514,4139], +[0,29277], +"deno-entry", +[0,1082,4039,2759], +"denoland", +[1,2343,21454], +[0,0,21460,21461,2487], +"es2022", +[3,72,14], +"ifconfig", +"ipconfig", +"mac-address", +[0,1389,1610,1177,10697,2675,2297,2871,2881,2900,2990,2899,3400,1894,4039,4042,4077,4193,4650,91], +[0,1862,3734,6789,14833], +[1,2343,21463], +[0,21467,17022,21471,2537], +"email-", +"addresses", +[2,21464,21465], +[0,2899,4193,4545], +"dir-compare", +"tschaub", +[2,1884,21469], +[0,6567,14833], +[1,2343,21473], +[0,16583,21474,11581,2487], +[0,1804,2109,2899,3699], +[1,2343,21478], +"manage-path", +"opt-cli", +[0,21484,21487,21488,2487], +"chai-s", +"chai-string", +"kentcdodds", +[2,1884,21481], +"trav", +[0,13388,1149,3917,13832,4709], +"is-after-all", +[2,21483,21485], +[0,1177,4616], +[0,3741,6876,31122,7020], +[1,2343,21490], +[0,21491,21492,21493,2487], +[0,2929,16235], +[0,48,53,78,87,4387,4389], +[0,181,3742,200,3741,8626,6876,6847,1523,2184,4403,8620,31129], +[1,2343,21500], +"@primer/octicons", +"@primer/", +"primitives", +[2,21496,21497], +[2,812,1936], +[0,21501,21502,10570,2523], +[0,3082,3427,3847], +[0,1193,1268,1389,1408,1177,2708,1192,89,31135,31136], +[1,2343,21504], +[0,0,21506,21508,2443], +"minipass", +[0,9363,4874,31142,1414,2620,31145,31147,1894,3985,3998,31148,31150,4505,91,18002,1906], +"path-scurry", +[0,31152,23584,1936,4374,18523,3205,8221], +"-from-dist", +[2,9478,21509], +[1,2343,21513], +[2,5745,1563], +[0,21514,21515,21516,2523], +[0,31157,31159,31160,31161,31162,31165,31166,31167,31169,31170,4874,3080], +[0,1317,1389,31172,1408,1437,1875,1177,2000,2004,2193,28406,31174,21749,2323,2409,2419,2510,2530,1776,3183,3421,3951,4389,4487,91,4535,4599,4600,4603], +[0,7018,6765,7050,91], +[1,2343,21518], +[0,21521,21522,21523,2523], +"dirname", +"wildcard", +[0,11304,28502,31180,14336,1437,2070,2765,31182,3760,12826,4130,4232,31184,31186,4747], +[0,7740,4865,23689,31188,9129,4874,1364,1429,1431,28556,2025,2026,2323,31190,2526,2272,1209,3127,2899,31191,4039,4089,4135,4487,31194,91,31195], +[0,1098,1973,5472,11132,13841,28522], +[1,2343,21525], +[0,21527,21528,21529,2537], +"min-document", +[0,7058,31202,1676], +[0,31205,5245,5087,4874,1151,1192,4468,91,2190], +[0,27,2671,2658,1544,3013,31207,31209,18413,31210,31211,31212], +[1,2343,21531], +[0,21532,21533,18970,2537], +[0,31218,31220,814], +[0,2899,31224,4170,4193,4255], +[1,2343,21535], +[0,21538,21540,21542,2523], +"path-t", +"path-type", +[0,1437,31229,31233,2720,2742,1209,3170,3309,3470,4135], +"glob-stream", +[0,1173,1255,1264,1700,1177,1895,2702,2759,3188,2899,3211,1894,4039,4170], +"fnmatch", +[0,2323,3378,20001,3383,1237], +"globbing", +"globs", +"wildcards", +[1,2343,21547], +[0,21548,21549,21551,2399], +[0,31249,31246,31248,31250,31243,31251,31242,31254], +[0,3188,4039,24592,24587,24594,24596,31259,31258,24591], +[2,13039,12804], +[0,1936,2437,3754,1283], +"array-series", +[1,2343,21554], +[0,0,21557,2514,2537], +"magick", +[2,11812,21555], +[0,1317,27468,2060,3714,31266,4387,4389], +[1,2343,21559], +[0,21560,0,21561,2537], +[0,1834,3441], +[0,7046,7170,14858,7241], +"-with", +[2,21562,1892], +[2,1903,21563], +[1,2343,21569], +"msmc", +"mc", +"minecraft", +[0,0,21570,21588,2537], +[0,1503,3421,2899], +"java edition", +"arm", +"arm-support", +"forge", +"s-management", +[2,16154,21575], +"instances", +"mod", +"mods", +"mc-mod", +"mc-mods", +"modpack", +"modpack-api", +"extendable", +"nbt", +"jarmods", +"skin fix", +[0,3757,3656,31277,31278,31279,1002,31280], +[1,2343,21590], +[0,21591,21592,21593,2523], +[0,17846,31286,1595,28504,11114,31288], +[0,4874], +[0,3758,3195,29727,13428], +"docsify-cli", +"ing-promise", +[2,14639,21595], +[2,16645,21596], +[1,2343,21601], +"spreadsheets", +[2,8567,21599], +[0,21602,0,21609,4139], +[0,1525,2071,3561,3681], +"google sheets", +[3,21599,11], +"sheets", +"gdata", +"drive", +"google docs", +[0,6707,16587,7293,17507,1623,1936,3624,31297,22946,18114], +"svgs", +"google drive", +[1,2343,26326], +[0,2228,2272,3130,2240,2768,2281,3736], +[0,3760,1862,6567,14832,14833,14834,14836,1149,14838,8553,1388,202], +[1,2343,21617], +[2,2211,13369], +[0,0,0,21618,2399], +[0,11194,31307,16421,18048,8221,158], +"@types/execa", +"@types/mv", +"@types/ncp", +"unjucks", +[2,10884,21622], +"rl-template", +[2,7817,21624], +[2,4892,1574], +"js-green-licenses", +[1,2343,21629], +[0,0,0,21631,2537], +"linkinator", +[0,1111,6938,11194,7201], +[2,8573,591], +[2,5576,12950], +[1,2343,21635], +[0,21636,21637,21643,2537], +[0,17409], +[0,31317,31319,13614,1389,1408,31322,1796,1855,1177,2011,2133,2070,19066,31328,27547,17421,2569,2685,2708,2762,2807,3188,3206,15030,3410,3421,3431,19974,4103,23948,4389,31329], +"p-cancelable", +"responselike", +"-keys", +[2,17267,21640], +[2,13788,2741], +[0,3767,3763,3766,1002,1644,1646], +"able-lookup", +[2,2325,21644], +"cacheable-", +[2,21646,705], +"-encoder", +[2,2139,21648], +[2,17278,5508], +"byte-counter", +[1,2343,21660], +"pem", +"@types/pem", +"cert", +"create-cert", +"slow-stream", +"then-", +"then-busboy", +[0,21661,21664,21669,2537], +[0,31337,31339,31341], +"@hapi/bourne", +[2,1601,9224], +[0,1166,1317,1693,2064,4481,1906], +"brotli", +"requests", +[2,20034,17460], +"ky", +[0,1388,3767,3766,1871,3763,5420,31344,1002,1644,1646,10368,15103,31345,7131], +[1,2343,21671], +[0,0,21672,21673,2537], +[0,1973,31350,4389], +[0,10906,3766,3767], +[1,2343,21675], +[0,0,21685,21686,2537], +"govuk-", +"-kit", +[2,6688,21677], +[2,21676,21678], +"gulp-cl", +"gulp-cli", +"sass-co", +"lor-helpers", +[2,21682,21683], +[0,1414,2665,31357], +[0,3768,1149,14629,31360,12692,5957,6994,13792], +"embedded", +[2,4832,21687], +"sassdoc", +[1,2343,21692], +"govuk", +[0,11570,11571,21693,2537], +[0,3768,29664,31365,31366,31367,5284,17625,17626,676,91,17627,6869,4799,12692,4721,3768,31369,31370,31374,8893,6994,31376,6915,17697,6333,31377,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,17651,6674,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,3760,31379,4552,28483,31381,6645,4787,3286,202,5401,27366,6681,17740,1745,17116], +[1,2343,21695], +[0,21696,21698,21705,2537], +[0,3021,31388,31389,2017], +"reading", +[0,2070,4361,2832,1177,4333,1984,4474,2924,1894,4469,48,1628,91,53,4874,2629,4677,1195,2600,4307,4334,4689,4891,17214,8648,5139,87,4230,4681,31392,2651,1938,4409,1895,1947,1955,3177,92,31394,1011,20476,31393,1009,8724,1915], +"retries", +"EMFILE", +"EAGAIN", +"EINVAL", +"EPERM", +"EACCESS", +[0,3771,6038,6106,6105,6138,6139,5130], +[1,2343,21707], +[0,21708,21709,21710,2443], +[0,1525,11482,3350], +[0,3421,2228,2929,1177,4039,4042,4135,1317,2116,31401,4019,3752,20496,53,31402,87,1937,1954,2258,18895,23165,5583,1924,1938,31404,1958,2256,6373,1903,1948,811,1900,816,31405,8229], +[0,5472,2275,1145,6468,4384,4389,2297,2814], +[1,2343,21712], +[0,21713,21714,21716,4139], +[0,31413], +[0,5517,31417,1009,1011,7677,1240,1264,1540,1177,1895,1955,15854,18841,1894,23535,2907,3980,18819,4042,8849,4076,91,1984,2924], +"graphql-js", +[0,1388,965,1936,2907,31419,5472], +[1,2343,21718], +[0,21719,21722,21723,2537], +[0,1457,1525,31426,2107,31427,814,4648], +"all-versions", +[2,1382,21720], +[0,1149,1203,1267,31429,1499,25063,25076,1937,18895,2020,2116,2151,2228,2240,2243,2256,2258,23165,2283,21929,2291,25070,21930,26210,31402,3006,3752,4019,4045,4135], +[0,5472,2275,2814], +[1,2343,21725], +[0,21726,21727,21728,34352], +[0,3518], +[0,31437,1389,4389], +[0,31440,6422], +[1,2343,21733], +"section-", +[2,21730,9338], +[2,4296,12835], +[0,0,21736,21737,2523], +"ansi-green", +"delimiter-regex", +[0,48,53,87,94,104,5583,24621,31447,1290,1317,1481,1610,31448,1177,1938,2064,2036,2822,2899,3400,3421,4039,4042,4077,31449,31452,4193,4423,31453], +[0,3776,6564,594,6731,6081,7517,7532,7594,7595,7523,7524], +"assemble", +[1,2343,21741], +"extracting", +[0,21742,7923,21743,2487], +[0,4127], +[0,3778,28734,28734,4718,1179,16431,2585], +[1,2343,21747], +[3,5364,11], +[2,21745,1398], +[0,8766,21753,21754,2523], +[2,1807,2899], +[2,10692,7018], +"pois", +"son-process", +[2,21750,21751], +[0,3521,4255,4387,4389,4770], +[0,1616,3778], +[1,2343,21756], +[0,21764,7923,2514,2399], +"grunt-k", +"nown-options", +[2,21757,21758], +"legacy-log", +[2,2235,21760], +[3,21761,13], +[2,21762,614], +[0,3779], +"difflet", +[3,16758,16], +"unt", +[2,21766,21767], +[1,2343,21771], +"temporary", +[0,0,7866,21773,34352], +"init", +[0,6754,57,27], +[1,2343,21775], +[0,21776,21777,21778,2487], +[0,3135,3348,977,31479,4252], +[0,2070,3297,2899,4193,1177,4170,2759,1894,1506,1895], +[0,28411,2656,31482,6807,3783,31483], +"gruntplugin", +[1,2343,21781], +[0,21782,21783,2514,2523], +[0,1413,14855,2685,2657], +[0,3421,2899,1177,1362,29197,4100,3923,19344,7844], +[1,2343,21785], +[0,13511,21786,13533,2523], +[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,1955,2675,1192,2990,3144,3400,1894,4257,2924], +[1,2343,21788], +[0,21792,0,21793,2537], +[3,21146,12], +"ncremental", +[2,21789,21790], +[0,2714,3183,1696,4300], +[0,1541,1997,28984,19400], +[1,2343,21795], +[0,21796,21797,21798,2523], +[0,97,1461,3789], +[0,31504,968,972,4859,5087,4874,4880,4883,14693,1610,1789,1177,1939,1982,2079,31506,2193,2070,695,3377,31508,3788,11249,89,3824,3957,91], +[0,89,5128,31511,31512,6847,6754], +[1,2343,21800], +[0,21801,21802,21803,2523], +[0,97,13169,1461,3789], +[0,31504,972,5087,4880,4883,11322,1610,1789,1177,1982,2079,2193,695,3377,31508,89,3824,91], +[0,89,5128,31519,8190], +"liftup", +[1,2343,21806], +[0,21807,21808,21809,2523], +[0,97,3847], +[0,31504,972,5087,4874,4880,4883,15606,31527,11322,14693,1603,1610,1789,1177,1939,1982,2079,2070,2675,2990,3377,1894,31508,89,3824,91], +[0,89,614], +"pad-stream", +[1,2343,21812], +[0,0,0,10570,2399], +[1,2343,21815], +"grunt-nodemon", +[0,21816,0,21817,2399], +[0,3911], +[0,89,31542], +[1,2343,21819], +[0,21822,21823,21817,2523], +"simultaneous", +"faster", +[0,3427], +[0,1192,89,3824,2924], +[1,2343,21825], +[0,21826,21827,21828,2523], +[0,31555,31558,31560,31563,31564], +[0,4042,91], +[0,5575,2220,89,582,21189,4963], +[1,2343,21835], +[2,21831,36], +[3,30922,14], +"bin-", +[3,18806,13], +[2,21832,21833], +[0,21836,0,2514,2443], +[0,3775,1593,1862,4705,3427,3957], +"compass", +[1,2343,21839], +[0,21840,0,21841,2537], +[0,4649,2731,1461,3744,31577,1751,97,31575,31581,31578,5090,3911,4808], +[0,1367,89,4627,4963,31583,5128], +[1,2343,21843], +[0,21844,21845,21846,2523], +[0,31590,1209,3021,31591,3744,31592,4443], +[0,31594,31598,14689,14691,10837,1173,1175,1193,1195,31600,1267,1268,1272,1280,1429,31602,1628,1843,2012,2081,2600,2629,2651,2678,1192,2774,31603,2899,3376,3378,3427,89,21074,31605,3824,3836,31606,3904,4001,4015,4039,4307,31608,2924,4681], +[0,89,31611,5128,20542,3811,31612,3195,31614,5027,8192], +[2,1547,3000], +[1,2343,21849], +[0,21850,21851,21852,34352], +[0,1582,3744], +[0,48,53,68,61,78,87,90,94,1195,1251,1628,1703,1177,1879,1938,1947,1959,1961,2193,2651,31622,3177,89,3824,4307,4389,2924,4677,4681], +[0,4627,5128,89,31625,1492], +[1,2343,21854], +[0,21856,21857,21858,34352], +"file-sync-cmp", +[0,8703,1497,1668], +[0,53,68,5228,8229,61,87,90,92,442,31633,5583,811,816,10615,10817,966,972,974,5601,5087,11292,4874,4880,4883,1009,1011,1169,1193,1251,1593,33872,1177,1895,1938,1939,1959,1961,27790,2675,1192,11347,2771,2780,2990,1209,1894,89,3824,4042,11802,2278,4213,4320,4323,5978,4330,4468,4484,91,4523], +[0,89,3812,9026,1666,5128], +[1,2343,21860], +[0,21862,21863,2514,2523], +"csslint", +[0,3445,1437,2696,2205,3539,15427,2105,31642,3742,2098,2553,4294,4425,1615,4165,1393,3008,14564,31640,51,3938,3829,1874,2135], +[0,1192,1610], +[1,2343,21865], +[0,21866,21868,2514,2487], +[0,31650,31652,31654,2069,2609], +"maxmin", +[0,8719,842,972,5540,5087,4874,4880,4883,1192,11944,3400,89,3824,4172,91], +"cssmin", +[1,2343,21871], +[0,21872,21873,2514,4139], +[0,31654], +[0,8719,842,5087,3400,4172,91], +[1,2343,21875], +[0,21876,0,21877,2537], +[0,814,19526,53,104,8959,5251,101,31669,10879,31666], +[0,89,1745,31671], +[1,2343,21879], +[0,21880,0,10570,2537], +[0,4116], +"jpeg", +[1,2343,21883], +[0,21884,21885,21886,2537], +[0,31683,31686,3744], +[0,48,53,68,8229,31689,73,31690,14170,13051,31693,83,87,90,94,192,22559,19036,26486,5583,811,816,6061,16607,6065,16608,16612,5535,10876,31695,966,968,972,20562,4880,4883,1009,1011,1193,1198,1201,1527,1610,1177,1895,1938,1947,1954,1955,1959,1961,2675,31696,2694,1192,2990,3125,3534,1894,89,3824,3895,3904,4039,4042,4073,4131,4201,4307,4315,91,2924,31699], +[0,5128,89,7518,5398,9229], +[1,2343,21888], +[0,0,21889,21891,2537], +[0,51,53,31705,1193,1195,1270,1437,1457,1610,2126,2626,1192,31706,3427,1862,3786,89,3803,3824,4039,31708,4227,2924], +"hooker", +[0,3473,5341,1851,12991,5403,31710,31711,4649], +[1,2343,21893], +[0,21894,21895,21896,2537], +[0,3427,3744,21174,31718], +[0,1175,1178,1203,1208,1230,1245,1264,1268,1429,1503,1567,1652,1177,31721,1895,1938,1947,1951,1955,1959,2759,2297,2878,30885,2881,2886,2895,31723,2900,2910,2921,2923,28636,2899,1894,89,3824,4039,4042,4045,4055,4067,4069,4193,4196], +[0,3830,31725,89,1746,3193,17913,5207,163,1508,1299,31726,590], +[3,13115,12], +[2,21897,1462], +[1,2343,21900], +[0,0,21901,21902,2537], +[0,19438,603,811,816,10615,842,16145,968,972,5087,4874,4880,4883,6375,1651,1177,1895,4916,1955,1959,1961,10964,2675,1192,2780,27412,31734,2990,1894,89,3824,4039,4042,4076,4481,91,4523,4705,4763], +[0,89,582,1669,25,7021,7020,91,6687], +"nodeunit-x", +[1,2343,21905], +[0,21906,21907,21908,2487], +[0,26007,2202,2609,3008,3744,3849,4163,4227], +[0,8130,4880,8158,1173,1175,1178,1193,1201,1203,1230,1245,1257,1264,1268,1503,13985,1603,1610,1843,31742,1845,1177,1879,1895,1938,1947,1959,2675,1192,2990,1894,89,3824,31743,3904,3935,4039,4042,4045,4055,4058,4067,4069,4077,4257,31745], +[0,89,5284,2924,11498,3000,2998,6109,6609,1194,2999], +[1,2343,21910], +[0,21911,21912,21913,2487], +[0,97,31752,5545], +[0,48,53,68,23908,78,5241,83,85,87,90,94,5583,811,816,6373,10615,966,968,972,5087,4880,7677,17584,1175,7913,14065,1596,1597,1610,1177,1879,1895,1938,31755,1947,1959,1976,2559,2675,2681,2990,3188,1894,89,3824,3904,4039,4042,91,1984,4747], +[0,2681,23932,2679,8930,23933,6728,23934,89,6071], +[1,2343,21916], +"uri-path", +[0,0,21917,21918,2399], +[0,5517,11976,5535,968,972,4874,4880,4883,1030,32818,16480,19839,2990,3165,3400,3541,23535,89,3824,9245,4201,4493,91,1984], +[0,89,4627,582,31765,31766,31767,31769,31770,31771,31779], +[1,2343,21920], +[0,21921,0,21922,2537], +[0,5540,2609,4484,26222,31797,31791,31799], +[0,1671,6983,23934,2679,23932,2728,30948,23933,89,6071,8574,8930], +[1,2343,21924], +[0,0,0,10570,2487], +[1,2343,21926], +[0,0,21931,2514,2523], +"grunt-co", +"veralls", +[2,21927,21928], +[2,2235,2759], +[0,1420,1437,1177,31815,1192,2774,1894,4042,4069,4077], +[1,2343,21933], +[0,21934,21935,21936,2487], +[0,12396,9363,23289,2583,31821,3140,3992,3999,4549,4555,12449], +[0,972,4874,4880,4883,1414,1537,668,1959,10621,1894,89,3824,3973,29250,3985,3988,3998,10632,4505,91,1906], +[0,6892,20627,4627,3987,1783,89,5128,3984,4549], +[3,2289,9], +[1,2343,21943], +"all-releases", +[2,9005,21939], +[2,21937,21940], +[2,2235,21941], +[0,21946,21947,21948,2523], +"gh", +"releases", +[0,31828,3744,3849,4649], +[0,31832,1173,1175,1178,1195,1198,1264,1268,1277,1596,1610,1177,1895,31393,1938,1947,1955,1959,13871,2297,2881,2886,2895,2900,2904,2921,2925,2899,3400,1894,89,3824,3884,3885,4170,4535,2924,4677,4681], +[0,89,5128,5066,18346], +[1,2343,21950], +[0,21951,21952,21953,2523], +[0,3518,3744,3775], +[0,1172,31840,1175,1178,1195,1505,1628,1177,1879,1916,1938,1947,1959,2126,29945,31841,31842,2766,2297,2886,2898,31844,2906,2925,31845,3521,3836,4307,2924,4681], +[0,89,4627,5128,31847,8424,31849,12185,7521,9944,181], +[1,2343,21955], +[0,21957,0,21958,2537], +"vow", +[0,4729,31705,4747,4135,1862,1301,1525,2731,4116,1109,1193,31856,27921,3145,4705,31859,3717,3878,30781,1079,31861,28512,31864,24169,3957,31867,2784,31871,31877,31880,31884,31891,31893,21129,31896], +[0,89,3857,12296,12295,5131,16697,31904,31906], +[1,2343,21960], +[0,0,21961,21962,2537], +[0,29525,21155,21156,1177,1955,1894,89,3857,21166,91], +[0,3857,5128,31912,89,5131,12295,12296,31914], +[1,2343,21964], +[0,21965,21966,21967,2487], +[0,4747,3744], +[0,89,1177,31934,31928,2735,1894,10777,48,31923,53,1178,2132,31926,21495,31929,31935,31932,31920,31922,1959,1879,1938,1895,1947,1955,1961,5103], +[0,3857,5128,31912,89,5131,12295,12296,31937,6574,6635,181,1017,45,13814,22875,2414], +[1,2343,21971], +"ravis-cli", +[2,6305,21969], +[0,0,21973,21974,34352], +"TDD", +[0,48,53,61,78,5240,87,90,94,31942,20202,20212,602,15134,10817,968,972,974,4880,1011,1178,1195,1198,4899,1461,1497,1610,1177,1895,1916,1938,1959,2193,2832,3132,15326,1894,9054,89,3824,31945,4042,4045,4055,11802,4060,4067,4069,4077,4469,91,1984,2924,4677,4681], +[0,5128,89,31948,6847,6988,31950,10098], +[1,2343,21976], +[0,0,21977,21981,2537], +[0,53,61,78,87,14041,5583,1178,1195,1429,1177,2675,2990,2899,3400,1894,89,3824,3904,31956,4039,4042,2924], +[3,2247,10], +"inue", +[2,21978,21979], +[0,89,31958,31959,3868], +"grunt-env", +"-coverage", +[2,21930,21983], +[1,2343,21986], +[0,0,21987,21988,2537], +[0,8862,31964,1177,31966,1955,31967,1192,1894,4042,91], +[0,3872,1936,8221,965,3205,23584,1541,89,3824], +[1,2343,21992], +"afe-mocha", +[2,2241,21990], +[0,21993,21994,21997,2523], +[0,5546,5545], +[0,603,810,966,968,972,4874,5090,4880,4883,1503,1610,1177,1895,1915,1938,1955,1959,2832,1894,89,3824,3875,4039,4493,91,4523,1984], +[2,21996,995], +"@sailshq/r", +[0,89,6071,3875], +[1,2343,21999], +[0,0,0,10570,2537], +"grunt-release", +"s-dylang", +[2,14352,22001], +[1,2343,22004], +[0,22006,22007,22010,2537], +"notify", +[0,2677,31983,3744,1849], +[0,10817,4856,31986,13204,31989,31992,6503,4880,4883,6513,1009,1011,1429,1610,1177,1924,2193,2832,31994,2899,1894,89,3824,4039,4042,11054,4170,4193,4484,4494,4508,91], +"mountain lion", +"mavericks", +[0,1623,5128,31765,89,5131,31997,31999,6415,32001,6398,4627], +"notify-send", +[1,2343,22013], +[0,22014,22015,22016,2487], +[0,977,5152], +[0,4493,89,4548,22205,28119,3824,91,3904,972,2780,5162,968,974], +[0,89,38,4082,7433,2602,163], +[1,2343,22018], +[0,22019,22020,22016,2399], +[0,3884], +[0,4493,89,22205,3824,91], +[1,2343,22023], +"libsass", +[0,0,22024,22025,2537], +[0,1173,1175,1178,1195,24231,24234,1257,1267,1268,1275,1280,1177,1898,1935,1938,1947,1959,2022,2602,22588,31842,2297,2886,2895,2900,2904,2921,2925,2899,89,3824,3876,3884,3875,32020,32023,32026,2924], +[0,89,3875,38], +[1,2343,22028], +[2,705,1153], +[0,22029,6230,2514,2537], +[0,1324,1192,1759,1177,4135,3561,3742,814,2924,2151,2154,1420,1193,1628,53,2092,4111,4383,1195,1393,2797,4307,841,1763,3878,3618,3816,3647,4230,2686,3672,3803,4028,4681,2651,2802,24732,4409,1270,3605,4723,1898,3177,4686,1630,1216,1426,24723], +[1,2343,22032], +"sauce-tunnel", +[0,22036,22038,22039,2443], +[3,2311,11], +"-tunnel", +[2,22033,22034], +[0,97,7931,7948,8181,4808,3145,3744,3911,8187], +"yui", +[0,11931,1843,8160,11875,89,3824], +[0,32039,1669,6847,32040,89,5128,1631,181], +[1,2343,22041], +[0,22042,22043,22044,2523], +[0,1461,32046,3029,4023], +[0,48,53,68,61,85,87,90,28598,968,972,974,4874,1165,1175,1193,1195,1261,1628,1699,1700,1859,1177,1938,1959,2026,32049,2323,2494,2675,1192,2780,2820,2843,2990,3459,3618,1894,3775,89,3824,3957,4193,32051,4307,4537,2924,4677,4681,32052], +[0,11167,32054,32055,32056,31512,5128], +[1,2343,22046], +[0,22047,22048,22049,2523], +[0,32061,4889,32062,1082,15128,1145,12184,1397,1465,5386,1497,32063,1584,1593,19526,32064,1863,1874,1875,2007,29067,7076,32067,7610,2070,32068,2570,2745,32070,32071,32072,32076,32080,32081,32084,32085,2929,32086,1209,21641,3120,32087,6041,3467,3725,3744,32088,32089,3816,3822,32091,32095,32097,3839,12438,3930,3984,32098,4409,19650,32099,4555,4681,4689], +[0,48,53,61,87,14128,90,92,968,972,32102,32104,31669,32107,1006,32109,5087,32112,4870,32114,4874,8149,4880,4883,32116,32118,4891,32120,8157,1009,1011,1175,1178,1193,1195,1628,31058,32121,32123,32124,1177,32126,1915,1924,1938,1947,1959,2092,2151,2675,1192,32129,2990,3144,1894,3775,89,3824,3904,32130,4307,91,4027,2924,4677], +[0,89,1219,6718,25172,1745,1739,1179,4627,4963], +[1,2343,22051], +[0,22056,22059,22063,2537], +"sprit", +"esheet-templates", +[2,22052,22053], +"sprites", +[0,97,955,5090,3744], +"spritesmith", +"url2", +[0,53,83,87,90,442,15288,5583,811,816,6373,10615,972,5087,13204,4874,4880,4883,7749,1251,11890,1177,1895,1959,1961,10964,2203,1192,2780,3297,3401,1894,89,3824,4042,4167,4172,11803,4468,4474,91,4523], +[3,21470,15], +"wolfson", +[2,22060,22061], +[0,965,1936,11806,11807,5284,89,32142,8221,32145,91], +"foundry", +"-release-git", +[2,22064,22065], +[3,22066,16], +[2,22067,3378], +[1,2343,22070], +[0,22073,0,22076,2487], +"get-pixels", +"gmsmith", +[0,2081], +"sprite", +[3,22054,11], +[0,32151,89,4453,1702,32152,3899], +[1,2343,22078], +[0,22079,0,22080,4139], +[0,3847,4116], +[0,89,3857,32162], +[2,17566,200], +[1,2343,22083], +[0,6234,22084,22085,2523], +[0,32167,27742,549,963,4874,4880,4883,1030,1596,1651,8540,2990,3561,1894,89,3824,4493,91,1983,32170], +[0,89,9044,11000,5128,3906,6645,32172,26264,6458], +[1,2343,22087], +[0,22094,22095,22096,2523], +"@npm/types", +[2,7726,2855], +[3,8610,9], +"ite-file-atomic", +[2,22090,22091], +[2,16569,1182], +[0,32177,32178], +[0,1317,1389,1408,1506,32180,5669,1839,32181,1859,1177,19896,2228,2240,25074,2247,18461,2256,2273,32183,25060,32186,2774,3460,3521,12344,32188,3930,22031,4449,91,4535,31135,4652], +[0,89,1219,8535,6624], +[1,2343,22098], +[0,22103,0,22104,2399], +"@guarapi/eslint-config-guarapi", +[2,8711,93], +[3,5542,13], +[2,22101,3312], +[0,97,1751,3082,3744], +[0,89,9944,19102,32195,7521,1623,32196], +[1,2343,22106], +[0,22107,22108,22111,2487], +[0,1497,3744,1751,3082,97,3849], +[0,1192,2675,89,2282,1177,4039,4042,1503,3561,2924,2126,2193,1894,1610,2700,3758,3824,48,1193,1505,1628,53,2092,2990,3566,4677,1165,1178,1195,3720,3884,4307,3618,85,29945,32207,3885,87,14128,18229,4681,90,32203,1922,1959,32205,2651,3904,4045,4077,32202,4069,1895,1935,1947,1955,4055,32206,4067,2054,8229,83,14132,28972,61,5241,1251], +"undertaker", +"glob-watcher", +[0,89,6071,5128,4607,3392,32209,32210,3912,176,32211,10345,9320,15182,10052,21604], +[1,2343,22113], +[0,22116,22117,22118,2399], +"series", +"streaming", +[0,4430,3909], +[0,2899,2272,4135,15052,1389,1537,32218], +[0,89,1389,14927,1219,676,1932,353], +[1,2343,22120], +[0,22121,22123,22124,2523], +[0,97,6372,1461,3744,32225,3911], +"gulp-footer", +[0,48,53,68,73,76,78,5241,87,90,10821,10825,10828,32229,10837,968,972,974,4880,1178,1193,1195,1270,1367,1540,1567,25901,1610,32231,1787,1797,1177,1879,1895,1935,1938,1947,1959,10851,32233,1192,2780,2832,2843,3165,1894,89,3824,3830,32236,3884,3904,91,2924], +[0,3916,1367,89,4627,4963,5128,181], +[1,2343,22128], +"html2js", +[2,1283,2325], +[0,22129,22130,2514,2537], +[0,8612], +[0,9516,9515,8608,13680,1011,1414,1915,4384,4474,4483,91], +[1,2343,22132], +[0,22134,11332,22135,4139], +"gulp-symdest", +[0,18186,18183,16474,4507,20789], +[0,1781,3917,1644,2090,2150,30135,3001,3383,3374], +[1,2343,22138], +"atom-shell", +[0,22139,8134,22140,2537], +[0,30055,3919,4507], +[0,1781,3917,1644,2090,2150,30135,3001,3383,2100,2104,2105,7076,6614,6605,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], +[1,2343,22142], +[0,22143,22144,22148,34352], +[0,1079,1398,2018,3729,15042], +[0,53,14170,13051,19181,811,15460,816,826,1389,1414,668,32258,1177,1903,1938,1953,1958,3541,1894,4042,23652,4384,32262,4389,4390,4548,2924,4677], +"prefixes", +[3,3674,9], +[2,22146,8736], +[0,7017,3101,7170], +[1,2343,22150], +[0,0,22151,22152,4139], +[0,4384,2685], +[0,3925,32271,2090], +"lodash.chunk", +[1,2343,22155], +[0,0,0,22158,34352], +"-transform", +[2,13792,22156], +[0,3925,31360,24095,3741,8631,6875,200,6621,1523,32276,8652,6703,1359], +[1,2343,22160], +[0,8856,7938,7939,2523], +[1,2343,22162], +[0,22163,22165,22169,2523], +[0,12184,2003,4227,32284,4484], +"b", +[0,53,58,87,32287,4865,6503,4874,1011,1177,19896,32288,2070,2990,2899,1894,24209,91], +"storage-blob", +[2,13444,22166], +[2,12694,14922], +[0,6892,22179,32291,5061,5341,22180,7119,32293], +"streamifier", +[1,2343,22172], +[0,8029,7938,7939,4139], +[1,2343,22174], +[0,22175,14066,22176,2537], +[0,814], +[0,3209,1194,7188,19101,32302], +[1,2343,22178], +[0,22182,0,22183,2537], +"rewriting", +[3,12348,14], +"desugaring", +[0,97,32307,2081,2609,3849,5513], +[0,89,6734,4963,32310,6081,6731,32312], +[1,2343,22185], +[0,13856,7923,22186,4139], +[0,7204,32318], +[1,2343,22191], +"utf-8", +"add", +"prepend", +[0,22192,0,22193,2487], +[0,32325,32327,32329,32330,32333], +[0,1552], +[1,2343,22195], +[0,22196,22199,5885,2399], +[0,6327,8111,3127,8114,3725,4213,3555,1757,1461,3191,3744,8122,8123,8113,8127,2017,8116,3502,8126,8119,32343], +"decov.io", +[2,2364,22197], +[0,3775,1002,1192,3190,2675,89,4484,1843,1177,4039,1593,1651,2822,3471,4167,4468,4474,8166,2924,1894,3824,1628,4201,91,4856,5087,8144,4874,8165,4677,4880,4892,3720,4307,4863,8147,8146,8149,8155,4891,8160,8161,8163,10875,8136,4883,5090,4315,8157,1311,4681,8141,1584,1959,2651,1938,8139,2780,4693,8152,1011,1961,1567,8129,2135,1009,32341], +[1,2343,22201], +[0,22202,22203,22204,2537], +[0,32353,32351], +[0,89,2924,3824,91,4880,4883,32359,32358], +[0,3939,3452,5592,8124,1745,32361,467,32363], +"wireit", +[1,2343,22207], +[0,0,22208,22209,2523], +[0,53,4874,1009,1011,1610,10888,1177,1898,1915,1938,1959,1961,2070,32368,1894,4039,4094,4493,91,1984], +[0,3875,6696,6649,6788,6564,2700,6609,2998,6596,2130,6891], +[1,2343,22211], +[0,22212,22213,22214,2523], +[0,32376,32378], +[0,32380,32383,32385,2675,2990,3400,1894,1983,1984,1906], +[0,2130,3875,27106,10820], +[1,2343,22216], +[0,22219,22221,22224,2523], +"bump-regex", +"plugin-log", +[0,1209,3847,1860,2731,2752,3744,97,2609], +"versioning", +[0,4449,1192,2675,89,3875,1177,4039,1503,2924,2126,1894,1610,2700,3824,48,1693,4201,53,32392,2990,3876,4677,1178,1195,32394,87,90,1210,1922,1959,10623,3904,1938,32385,32393,1935,1947,1898,4676,1961,5535,31393,83,61,5240], +"gulp-version", +[3,2476,11], +[0,89,6071,2130,3875,3876,3945,1669,4636], +[1,2343,22226], +[0,22227,22231,22232,2487], +[0,1688], +"swap", +"cache-swap", +"object.pick", +[0,1175,1203,29775,1267,1429,1503,1177,1879,1938,1947,1959,2665,2675,2899,3421,3875,4039,4042,4045,4055,4067,4077,4193], +[0,3875,2942,3946,2663], +[1,2343,22234], +[0,22235,22236,22237,2399], +[0,32408], +[0,53,83,85,87], +[0,5284,3875,2663,3947,32416,32418], +[1,2343,22239], +[0,0,22240,22241,2523], +[0,1009,1011,1610,1177,1895,1894,3875,4039,4493,91,1984], +[0,3875,3949,2663,32425,2130], +"file-e", +[1,2343,22247], +"xtension", +[2,22242,22244], +[2,17355,22245], +[0,0,22248,22250,2537], +[0,4856,6503,4874,1429,1700,32431,2323,32433,32435,2463,2494,32436,2524,2899,91], +"changed", +[0,4636,6774,5284,19080], +"modified", +[1,2343,22256], +"modification", +"mtime", +"passthrough", +[0,0,22257,22258,4139], +[0,1503,2228,2314,2759,14529,3774,4019], +[0,1108,6961,5284,3656,1179,4990], +[1,2343,22260], +[0,0,0,22261,2537], +[0,5659,7047,1179,1149], +[1,2343,22263], +[0,22264,0,22265,2487], +[0,12396,3971,3978,4549], +[0,32452,6892,1936,1644,3729,3958,4141,1646,5341,1633,4549], +[1,2343,22267], +[0,22268,22269,22270,2523], +[0,12396,23247,9401,12421,4549,4555], +[0,4874,23262,1414,32460,1894,3958,3985,3998,4505,91,1906], +[0,4549,3958,32462,1932,156,163,1936], +[1,2343,22272], +[0,22273,22274,22275,2537], +[0,12396,23247,12421,32467,4233,4555], +[0,4874,23262,1414,1894,3958,3985,3998,4505,91,1906], +[0,4549,3958,32462,1932,2587,1936,1783,11052,163,1002], +[1,2343,22278], +"jshint-", +[0,22281,22282,22283,2443], +"reporter-jscs", +[2,22277,22279], +[0,12396,32481,3137,12127,12133,4549,12447], +[0,9311,4874,4880,1414,1177,27706,1947,1959,23312,1894,3985,27711,32484,91], +[0,2587,1936,1783,9102,3958,32462,4549], +[1,2343,22285], +[0,22286,0,22287,2523], +[0,12396,23276,4549], +[0,32452,6892,1936,1644,1932,3958,32462,5341,1633,4549], +[1,2343,22289], +[0,22290,22297,22298,4139], +[0,12396,2572,12449], +[3,19569,12], +"rework", +"rework-import", +"rework-", +"plugin-url", +[2,22294,22295], +[0,4874,1414,1894,3978,3985,3992,3998,3999,4505,91,4549,4555,1906], +[0,1936,1932,3972,3958,32462,4549], +[1,2343,22300], +[0,22301,22302,22305,2537], +[0,12396,7610,9401,2584,4555], +[0,4874,1414,1894,3958,3985,3998,4505,91,1906], +"slush", +"dest", +[0,156,1936,3265,1932,3958,32462,3974,4549], +"conflict", +[1,2343,22308], +[0,22309,0,22310,2487], +[0,12396,2581,4549], +[0,32452,6892,7234,1936,1932,3958,32462,4141,1646,5341,1633,4549], +[1,2343,22312], +[0,22314,22315,22317,2523], +"webserver", +[0,22353,692,29431,1154,15444,1458,7614,9322,2720,32513,3060,3173,29024,3445,3467,6331,20921,4135,27921,4548,4566,32514,4748], +[0,442,32523,4874,1177,32525,2203,17529,2931,29442,32519,1894,3985,32522,4390,91], +"hyperlink", +[0,6147,13729,1528,32528,3358,2195,17978,24095,15656,3378,20001,6645,3979,3980,18157,1508,4166,10381,4990,15525,4135,1932], +[1,2343,22319], +[0,22320,22321,22322,2537], +[0,2759,3181,3544,4227,4431], +[0,1177,1881,1938,2228,2323,17121,4039], +[0,18444,21779,4227,2759,4504], +[1,2343,22325], +"csscomb", +[0,22326,0,22327,2537], +[0,4549,9363,3992,13124], +[0,32452,6892,7234,1783,26564,1644,3729,3984,4141,1646,5341,1633,4549], +[1,2343,22329], +[0,22330,0,22332,2443], +[0,5210,32544,3984,32545], +"rcloader", +[0,20052,200,1783,26564,3984,4549], +[2,21861,2838], +[2,15526,2063], +[1,2343,22336], +[0,22337,22338,22339,2399], +[0,9363,27008,27010,3992,13124,4549], +[0,4874,1414,32460,1894,3984,3985,3998,4290,18071,4505,91,1906], +[0,26072,26766,3987,2195,1783,26564,1932,3984,32553,12994,176,9000,4549], +[1,2343,22341], +[0,22342,22343,22344,2537], +[0,9363,2575,3140,2581,4549], +[0,12396,4874,1414,26992,23276,1894,3985,9340,3988,10630,3992,3998,32560,10632,4505,91,12449,1906], +[0,7234,1936,1783,26564,1932,3984,32553,1646,4549], +[1,2343,22346], +[0,22347,22348,22349,34352], +[0,12449,4549,9363,32568,12447,32567], +[0,1414,1177,3984,1894,3541,3985,91,12396,3999,3978,32484,27706,27711], +[0,1745,25131,3990,1932,3984,32553,4549], +[1,2343,22351], +[0,22352,0,22354,2523], +[0,9363,3137,26987,4549], +"@nodeutils/defaults-deep", +[0,32452,6892,1783,26564,1644,1932,3984,32553,5341,1633,4549], +[1,2343,22356], +[0,22357,22358,22359,34352], +[0,32582,32584,3988,32587,32591,23059,23065,23070,23075,23078,32593,23080,32595,23082,32599,32601,32606,32609,23098,32613,23113,32617,32620,32626,32629,32631,32636,23118,32638,32640,32646,32651,32654,32656,32658,32664,23128,23133,23136,32667,23139,23141,11382,32668,10632,32669,32672,4549], +[0,192,5467,1177,1909,2114,2675,2990,1894,3985,1906], +[0,2195,16342,3984], +"from2-string", +"@shi", +"nnn/eslint-config-node", +[2,22361,22362], +[1,2343,22366], +"warnings", +[0,22367,22368,22369,2537], +[0,32582,3988,10630,23059,23065,23070,23075,29079,23078,29082,32593,23080,32595,23082,32599,32601,32606,23092,32609,32681,32686,32689,29091,29097,29100,29132,29143,29147,29149,32613,32692,23113,32696,32617,32699,32620,32626,32629,32631,32636,23118,32638,32703,29151,32705,32646,32651,32707,32710,32654,32656,32658,32715,32717,32664,23128,23133,23136,32667,23139,23141,11382,32668,13124,10632,23143,32669,32719,4290,4549], +[0,1894,3985,4505,91,1906], +[0,16342,3984,3997], +"-match", +[2,7534,22370], +"flatnest", +[1,2343,22374], +[0,22376,22377,22383,4139], +"@type-challenges/utils", +[0,12396,9363,3140,4549,12449], +[0,4874,1414,1894,3975,3978,3985,3992,3998,13124,4505,91,1906], +[2,29833,2658], +[2,3101,7131], +"to-a", +"bsolute-glob", +[2,22380,22381], +[0,2587,1936,1783,26564,1932,32462,3958,32553,3984,4549], +[1,2343,22385], +[0,22386,22387,22388,2487], +[0,1139,32732], +[0,1111,1317,20627,1177,1926,1999,2398,2600,3127,2899,3421,4042,4058,4067,4073,4146], +[0,20627,1783,5980,1644,57,3729,4001,8924,3902,2585], +[1,2343,22391], +"divide", +[0,0,14066,22393,2523], +"separate", +[0,2323,19101,17996,8297], +[1,2343,22395], +[0,22396,22397,22398,2537], +[0,1437,2070,4747], +[0,442,1414,1429,1431,1177,2899], +[0,4068,2585,16504,2090], +[1,2343,22400], +[0,22401,22403,22404,2399], +[0,3763,29749,3348,2051,32749,15057,32751,2139,3173,32753,4100,4454,32754,32756,32757,32758,32759,21144,3518,2854], +[2,3715,4001], +[0,3421,4389,2297,32761,4039,1503,1362,4255,1596,32762,19946,1389,1400,14038,2886,4153,2871,3524,21146,2906], +[0,27,2869,614,6435], +"prettify", +[1,2343,22407], +[0,22408,22409,22411,2537], +[0,1362,4454,32768,32770], +[0,1429,2323,1437,1209,4039,705,2463,1364,2384,4089,2436,27608,3753], +"jsftp", +[0,4731,27,2671,1862,705,21244,32773,1362], +"jsftp-mkdirp", +[1,2343,22415], +"ftp-test-server", +[0,22416,22417,22418,34352], +[0,32770,32768,4454], +[0,1364,1429,1437,2323,27608,2384,2436,2463,1209,3753,705,4039,4089], +[0,4731,27,2671,1862,705,21244,32773,970], +[1,2343,22421], +"gift", +[0,0,22423,2514,2399], +"wrap-promise", +[0,4474,91,1506], +[1,2343,22429], +"octonode", +[3,8304,11], +[2,15034,22426], +[2,22363,1231], +[0,0,22431,22432,2537], +"branch", +[0,6637], +[0,3209,4017,32792], +[1,2343,22434], +[0,0,22441,22442,2523], +"any-", +[2,5124,1867], +[2,22435,22436], +[3,21732,13], +"eam", +[2,22438,22439], +[0,810,972,4870,4880,4883,7749,1009,32801,1011,32804,1177,1959,32805,2832,1209,3057,3145,32807,32368,1894,89,3824,3876,4039,4167,4493,91,1984], +[0,89,3875], +"gulpgit", +[1,2343,22445], +[0,0,22446,22447,2537], +[0,1178,1597,1177,2765,2766,2297,2881,2895,2898,6387,2910,2915,2921,2923,3734,4042,4075,91], +[0,32814,24800,31767,614,5576,1388,6422,6805], +[3,6530,10], +[2,22448,4552], +[1,2343,22452], +"nid", +[0,22453,22454,22455,2399], +[0,32820,17501,32824], +[0,15221,4384,4449,4389,1796,1177,3188,4039,4135,32826,3410,2708,3433,20492,4103,13614], +[0,814,3209,202,1237], +[1,2343,22457], +[0,0,8134,22459,2523], +"gulp-de", +[0,3209,814,3403,1237,7115,15403,1204], +"gulp-declare", +[1,2343,22464], +"fine-module", +[2,22458,22462], +[0,22467,0,22468,2399], +"gulp-wrap", +"nsdeclare", +[0,32836,1573,3008,3561,4227], +[0,2924,1194,1623,3374,9345,814,1002,2278,10903,2090], +[1,2343,22470], +[0,22471,22472,22473,2523], +[0,32842,8098,2151,2036,2822,32843,3348], +[0,48,53,13693,61,71,78,13051,85,87,97,192,6298,6061,6063,1166,1170,1178,1208,1212,1364,1429,16311,1596,31058,1687,8942,1177,32848,32850,1938,1948,1951,32852,1954,1958,1964,32855,1966,1969,1982,2026,32856,2675,2824,2848,3019,2899,3200,32858,3421,4131,32860,4342,32861], +[0,8623,1118,1179,1745,32864,6533,32867,4030,5592,27], +[1,2343,22476], +"eventstream", +[0,22477,22478,22479,2537], +[0,3763,1641,32874,3171,3441,3533,710,32876,3348,1209,4135,4591,30107,3084,2141,12627,1147,20412,32759,32875,15220,32873], +[0,3421,3467,1429,2070,2899,4193,1177,3188,4039,2720,2276,1894,1596,1155,32883,20441,3697,3752,1745,32881,32878,1942,1895,1955], +[0,8173,5130,2026,32885], +[1,2343,22482], +[2,11941,1596], +[0,22483,9888,2514,2537], +[0,3763,4734,4745,2685], +[1,2343,22485], +[0,22486,22487,22488,4139], +[0,21420,4174], +[0,4481,1906], +[0,2021,32896,3729,30135,32897,7226,6689,32899,32900,24601,200,13006,1111,15814,6048,7009,7201,6621,4166,6876], +"htm", +[1,2343,22491], +[0,22492,0,22493,4139], +[0,1362], +[0,18035,32906,32907,32909], +[1,2343,22503], +"gulp-spawn", +[2,22501,33473], +"gulp-svg2ttf", +"2svgfont", +[2,45,22498], +[2,2518,22499], +[3,29059,12], +"gulp-ttf2eot", +[0,0,22506,2514,2523], +"gulp-ttf2woff", +[2,22504,1276], +[0,21147,2759,4389], +"@types/gulp", +[1,2343,22513], +"metapak", +"-nfroidure", +[2,22509,22510], +"streamtest", +[0,22514,22515,22516,2523], +[0,1177,5896], +[0,4874,2025,2899,3421,4474,91], +[0,7190,14419,3212,1858,1237,2275,1973,27916,3430,21147,3209], +[1,2343,22520], +"gulp-match", +"ternary-stream", +[0,0,22523,22526,2537], +"exhaust", +[2,4279,22521], +[0,5898,1503,6618,6786,30025,32925,3028,32927,32930,3776,4255,4384,4481], +"if", +"ternary", +[0,3048,7002,3583,1496,1585,1697,6899,6803,3432,6693,3743,7098,6638,6618,7167,2062,6681,6856,6986,7035,6648,7284,6786,6670], +[1,2343,22528], +[0,22529,22530,22531,2537], +[0,2070,21510], +[0,4874,3188,1894,4384,4483,4508], +[0,6790,7218,6610,7293,7204,200,7074,6899], +[1,2343,22533], +[0,22534,22535,22537,2537], +[0,3263,8248,32944], +[0,2765,32942,32947,32949], +"gulp-gm", +[0,32951,27747,29002,8652,12197,158,32952,28125,4041,13008,32954,32956,32959,32961,1473], +[1,2343,22539], +[0,12881,22540,22541,2537], +[0,16003,32967,16005,16002,16000,15999,442,8998,5012,25130,11536,8862,15134,811,8850,816,6373,10615,10817,10895,32970,6503,4874,20374,5254,21626,21830,1082,32971,15128,1397,1405,1457,1540,1593,1610,32972,1859,1866,1177,1895,1955,1982,1988,2116,32973,2151,10754,2203,2675,10898,2990,10902,3090,3144,2899,3363,22496,3421,5561,3527,3530,32977,1894,3706,3714,3718,4019,4042,4060,4135,4172,4174,4227,4232,4376,4072,4484,91,4523,1983,4614,188,4630,13151,32979,4748], +[0,5260,6996,6903,5194,6708], +[1,2343,22543], +[0,22544,22545,22546,2537], +[0,5652,4081], +[0,53,8229,71,83,87,1397,1177,1895,1955,2675,2990,2899,1894,4042,4048,4058,4227,4232], +[0,4080,1172,6778,5194], +[1,2343,22548], +[0,22549,22550,2514,2443], +[0,1397,4081], +[0,1177,2899,4042], +[1,2343,22552], +[0,22553,22554,22556,2523], +[0,32998,4081], +[0,15134,1177,2022,2899,3421,4039,4042,33001,33002], +"group-array", +[0,4042,4080,5284,5194,5260,4298,33005,4051], +"strip-color", +[3,5467,19], +[2,22558,1098], +[1,2343,22563], +[2,5376,591], +[3,10705,13], +[0,22564,22565,2514,2537], +[0,2007,10898,3090,814,4081], +[0,53,87,94,1082,1177,1938,2675,2990,10902,2899,1894,10904,4042,4045,4058,4067,4172,4227,4232,91], +[1,2343,22567], +[0,22569,22570,22571,2537], +"inline-css", +[0,3090], +[0,51,19861,33017,1006,4874,4880,1414,4042,91], +[0,4080,91,4056,1007], +[1,2343,22573], +[0,22574,22577,2514,2443], +[0,4081], +"lodash.g", +[2,22575,19530], +[0,1177,1938,2675,2990,2899,1894,4042,4048,4067,4232], +[1,2343,22579], +[0,22580,22581,22582,2523], +[0,33028,20378,1209,3090,3220,33029,33031,33036], +[0,53,87,94,5583,811,816,8661,1009,1011,1104,1198,1177,1881,1938,2061,2151,29406,2323,33038,2441,2765,2766,1894,4039,4042,27720,33042,4449,91], +[0,4042,4080], +[2,17487,8162], +[2,11941,22583], +[1,2343,22586], +[0,22587,22589,22591,2487], +[0,33048,33051,1618,33052], +"isparta", +[0,24235,1676,2899,4042,4045,4066,4146], +"unit test", +[0,4080], +[1,2343,22593], +[0,22594,22597,22591,2487], +[0,1082,33051,2007,3090,33052,4081], +[2,34675,22596], +"-links-validator", +[0,1175,1264,1389,1192,3188,2899,4039,4042,4045,4067], +[1,2343,22599], +[0,22600,22603,22604,2523], +[0,5251,1405,10912,814,4081], +[2,4402,16237], +[2,2767,22601], +[0,53,87,94,1856,1177,2899,4042,4045,4055,4058,10916,91], +[0,4042,4080,6778,3378,5260], +[1,2343,22606], +[0,22607,22608,22604,34352], +[0,3090,4081], +[0,1177,1938,2675,2990,10902,2899,1894,4042,4048,4172,4227,91], +[1,2343,22610], +[0,22611,22612,22613,2399], +[0,10895,16799], +[0,10817,4874,1009,1011,1177,1895,1955,1192,1894,4039,4042,4468,91], +[0,4042,4080,12938,4227,33078], +[1,2343,22615], +[0,22616,22617,22618,2487], +[0,51,2805,4143,4072], +[0,53,1192,1894,4042], +[0,4042,4080,4072,3178], +[1,2343,22620], +[0,22621,22622,22623,2523], +[0,814,4081], +[0,1397,1177,2899,4039,4042,4048,4055,4484,91], +[0,4080,91,6778], +[1,2343,22625], +[0,22626,22627,22628,2537], +[0,10895,2102,2151,4135,4484], +[0,11893,811,816,33097,4864,33099,5087,4870,4874,8860,5254,1009,1011,1512,1177,33100,1192,1209,3429,4039,4042,33101,4076,4468,91], +[0,4076,4075,4080,91,6778,4042,3378], +[1,2343,22630], +[0,22631,22632,22633,2487], +[0,51,2805,4143,4535], +[0,53,87,1193,1192,1894,4042], +[0,4042,4080,2280,3178], +[1,2343,22635], +[0,22636,22637,22641,2537], +[0,3445,3530,4227,4747], +[0,811,816,10615,10817,5364,33115,33116,33118,33120,33121,33123,4874,20374,4892,1413,1654,14674,17086,17091,1655,1660,1701,3400,30889,3561,16578,3698,1894,28865,4042,10854,2278,4484,91,1983,1984], +"array-unique", +"gulplog", +"has-gulplog", +[0,4080,4078,11996,33126,33127,33129], +"capture-", +[2,22642,3101], +[1,2343,22645], +[0,22646,22647,22648,2523], +[0,2007], +[0,1006,5087,8778,4874,2675,1192,2990,3170,1894,4042,4055,4067,4075,4172,4468,4487,91,19545], +[0,4042,594], +[2,4599,3101], +[1,2343,22652], +[2,19984,1276], +[0,0,22653,2514,2523], +[0,1389], +[1,2343,22655], +[0,22656,22657,22658,2399], +[0,33145,8712,1410,1423,2215,3561,4232,4317,33146,1835,4164], +[0,33152,51,53,68,5216,61,76,14160,78,33153,81,5715,4851,5241,83,87,90,92,97,101,104,33156,33158,33159,33162,8317,8755,554,617,33165,33167,33170,33172,33173,13471,8648,842,11534,33174,33176,33178,19861,10879,33179,24807,31666,5364,33181,7806,33183,11796,11477,21122,5245,33189,33191,4865,8780,8264,4870,33193,13057,33195,20374,33197,4880,4883,15606,5254,33198,16149,13214,23452,11800,9241,20463,13753,1082,33199,31705,1138,1145,1154,33200,20476,1251,15009,1393,1398,1413,33202,33204,1525,33206,1536,12084,15015,1560,1562,977,1615,1618,11890,16912,16566,1676,11478,15018,33208,2018,2105,2145,2070,2553,2659,2661,15022,2674,16837,33209,2689,26453,2755,2805,2856,2863,20465,33210,3084,3177,3244,3266,33211,23175,3322,3467,15031,6042,3479,3502,3509,3530,12344,3605,16840,3638,16841,16842,3672,3676,3678,3688,3729,3757,15033,3784,3878,3957,4111,4135,710,27062,20508,4165,4227,4230,28512,15039,15040,9221,33212,15042,4294,7080,4390,33213,4072,4409,4425,15046,15047,11804,33214,614,15048,33215,24739,2924,4729,4763], +[0,89,5130,3287,5122,36,202,6400,5995,200,4592], +[1,2343,22660], +[0,0,22661,22662,34352], +[0,14192,1235,14196,14198,19130,14199,14214,14215,14217,1244,1264,19127,18801,18693,1378,1381,19119,18686,19123,19122,1825,18825,18829,33223,19121,2899,3736], +[0,19132,6567], +[1,2343,22664], +[0,22665,22666,22668,2523], +[0,25623,3527,3561,4300], +[0,1414,2899,4255], +"kew", +[0,33231,1623,33232,4086,5130,590,1504,26535,6270,353], +[1,2343,22670], +[0,22671,22672,22673,4139], +[0,1437,2061,3544], +[0,2323,2899,4170], +[0,17461,7170,6769,2323,3468], +"treams", +[2,6825,22674], +"ng-annotate", +[1,2343,22678], +[0,0,22679,22680,2523], +[0,1090,4389], +[0,22114,1149,3046,7241,14629,18462,4552,33244], +[1,2343,22682], +[0,0,0,22683,2537], +[0,33249,33250,7109,20018,7099,7022], +"develop", +[1,2343,22686], +[0,2513,22688,22689,34352], +"restart", +[0,33256,7,842,8712,4856,4870,6503,4874,7749,6513,6512,28198,1009,1011,1257,1429,33258,1473,1512,1610,1652,33261,1874,1177,24287,2139,2151,2070,16015,2675,13305,2990,1209,3183,2899,3363,3400,8967,12344,1894,1862,4042,32414,33263,4067,4167,4172,4193,4196,4232,4376,4474,4487,4490,33265,33267,33273,91,4585,5573,2924], +[0,7099,7022,6568,7111,7199,7040,7027,6858,6789,6746], +[1,2343,22691], +[0,0,9264,22692,34352], +[0,1398,33283,33284,6953,4100,1965,33287], +[1,2343,22697], +[3,13337,13], +[2,6574,22694], +"mac notification", +[0,22698,22700,22701,2537], +[0,2708,4135,4747], +"notify-osd", +[0,13614,1158,1159,1796,1177,33293,3421,4389], +[0,20001,25816,3378,33295,10381,6953,33297], +[1,2343,22703], +[0,22707,22708,22709,2537], +[3,13107,12], +[2,22704,2187], +[2,14983,22705], +[0,33304,21995,1149,33307,1437,1525,33312,1536,1544,977,1575,1581,29500,1797,2026,2040,33313,2070,33315,33316,32959,33319,33322,33324,33325,33327,3183,33328,3494,3509,3547,3741,33329,33332,33335,4135,4148,4151,33336,33339,4538,4590,33340], +[0,1317,1553,1177,2025,2151,33342,2899,3416,3560,33344,33346,33349,33352,33354,33357,4170,4220,4342,4449], +[0,33359,33362,2026,33363,33365,8173,8172,3469,4218], +[1,2343,22711], +[0,22712,22713,22714,2523], +[0,33379], +[0,4389,1090,33381,1389,1537], +[0,2090,1213,33383,2574,2649,1867], +"acorn-typescript", +"esrap", +[1,2343,22718], +[0,22719,22721,22722,4139], +[0,1699,1874,2654,2747,33390,3561], +"zimmerframe", +[0,1177,2899,4193,33395], +[0,1936,57,18113,2574], +[1,2343,22724], +[0,22725,0,22730,2523], +[0,1457,2700,4228], +"ENV", +"ifdef", +"ifndef", +"echo", +[0,590,4329,2278,7121,1623], +[1,2343,22732], +[0,22733,22734,22736,2523], +[0,23175], +[0,48,53,87,192,5467,442,27928,19344,1369,1610,1622,1628,1700,1701,1835,1177,1895,20281,1938,1939,1942,1953,1955,1982,2092,33408,2203,2675,1192,2990,33415,3144,3342,33420,3400,1894,2278,21688,4135,4257,4307,91,4523,2924,4677,4681], +[2,1876,2282], +[0,2278,22022,2924,1194], +[1,2343,22738], +[0,0,22739,2514,4139], +[0,1894,4384], +[1,2343,22741], +[0,22742,22744,22745,34352], +[0,33435], +"views", +[0,33437,1414,33438,1177,1776], +[0,2844,1745], +"precompile", +[1,2343,22748], +[0,22749,22750,13533,2537], +[0,1091,1092,12384,8818], +[0,1700,1192,2675,1177,1701,2203,2924,1894,48,442,1193,91,53,4874,2990,3400,192,1953,27928,4257,87,1939,1942,1938,20281,1982,1895,1955,19344,5467], +[1,2343,22752], +[0,22754,22755,22756,2523], +"src", +[0,89,3824,3286], +[0,91,4874,4880,4883,1165,3561,4383,1177,4828], +[0,33454,33455,2145,12589,1616,33456,12589,5472,20500,33459,1237,33462,33464,12590,33465,27666,11996], +[1,2343,22758], +[0,22759,0,22760,2523], +[0,1821,3299,15160], +[0,29395,33471,33472,4126], +[1,2343,22763], +[2,4068,3101], +[0,0,0,22764,2537], +[0,33477,3778,1616], +[1,2343,22766], +[0,22767,22768,22773,4139], +[0,33482,2866,4449,4729], +[0,442,13838,1177,1895,1951,1953,17303,1955,2026,2203,2564,1776,2899,3200,3246,1894,4150,4193,4351], +"modif", +"y-filename", +[2,22769,22770], +"rev-hash", +[0,13428,28522,5472,11132,13841], +"rev-path", +"sort-", +"sort-keys", +[1,2343,22779], +"vinyl-file", +[0,22780,22786,22787,2523], +[0,16607,33490,6065,16608,16612,33491,1595,1676,33493,2020,2089,33494,2188,33497,22845,2613,33499,3021,3127,14774,3170,33500,25873,27168,4025,4135,6554,4747], +"rev", +"revving", +"revision", +"expire", +"assets", +[0,4874,6547,1166,1414,1470,1652,1736,33503,2151,2212,2822,3019,19736,33505,3297,3401,33507,1894,23535,4193,23730,4400,4421], +[0,18526,13428,13729,1237,3383,20001,3979,4135,15525], +[1,2343,22790], +"deserialization", +[0,22792,22793,2514,2537], +"deserialize", +[0,97,33513,33515,6372,33519,1497,33520,1209,3021,3744,3847,32225,4163], +[0,33522,48,53,61,73,76,81,83,87,90,94,33525,9310,33528,33530,10875,4880,1009,1011,8158,33532,1178,1195,33537,1208,1210,33541,1251,31600,33543,1429,33545,1582,1610,1651,1676,1719,1742,19526,1843,1177,1879,1895,4916,1938,1947,1951,1959,1961,2060,2193,2323,2455,2541,2675,14708,2297,2881,32762,2886,2900,2904,2925,2975,2990,2899,1894,3725,3758,3786,89,33546,33550,3822,3824,3836,3843,3884,3885,33552,33553,33556,3904,33558,4039,33560,33562,33564,4193,4196,4201,4261,33565,4409,33566,4431,91,4597,2924,4676,4677,4679], +[1,2343,22796], +"each-async", +[0,22797,22799,22800,2537], +[0,1177,1900,1903,33572,1938,1953,1958,1959,33573], +"md5-hex", +[0,17529,1698,3188,4039,4092,4389], +[0,19309,33576,4354,16790,1501,19310,19311,19314,19271,18443,1177,2446,2292,2272,671,19315,19269,33578,2869,4255,19317,590,19318,19320,19273], +"ruby", +[1,2343,22803], +[0,0,22805,2514,2523], +"@img/colour", +[0,9516,9515,1317,4384], +[1,2343,22807], +[0,22808,10377,22809,2537], +[0,1676,1833,1869,984,2145,2657,3173,3242,3440,3781,4266], +[0,2947,2090,36], +[1,2343,22811], +[0,22812,22814,22815,2523], +[0,22966,8364,33593,33596,33598,33599,22967,19593,3034,3072,3183,22451,22968,33602,33603,3763,33605,28440,33606], +"sftp", +[0,8357,8359,33608,4874,1149,4440,1596,17402,2036,33612,21082,1894,33615,33618,28664,33620,25649,91], +[0,3166,11100,27662,33624,14584,33625,14586,14587,33626,5130,33627,33628,17757,6081,33629], +[1,2343,22817], +[0,0,22818,22824,2443], +[0,33634,1149,1317,1177,3210,4384], +"@types/fa", +"ncy-log", +[2,22819,22820], +[3,12459,15], +[2,22822,5229], +[0,4137,19748,33636,28277], +[1,2343,22826], +[0,22827,22828,22830,2523], +[0,33646,3348,1676,33641,1209,3220,4135,1155,2712,5245,33643,33645,3222,14334,33642,25624], +[0,3519,3421,1429,1082,1702,33653,2675,2899,3478,4193,1177,33663,3260,4039,1448,668,33669,33673,4246,25635,25633,33674,1587,1610,2071,33672,3480,33675,32842,2152,4196,91,4856,4874,2024,2990,6503,6513,29283,692,4870,33652,33682,33649,192,1431,33668,3125,4131,17370,4232,1942,1951,33662,1011,33660,22559,1009,33655,33681], +"brotli-size", +[0,3259,33669,7827,14873,25638,3519,3243,33684,33663,14872,25633,26472,33685,3469,6710,33690,18035,1747], +[1,2343,22833], +"measure", +[0,0,22834,22835,2537], +[0,1317], +[0,4141,7050,5284,676,1781], +[1,2343,22846], +"@gulp-sourcemaps/identity-map", +[3,22837,17], +[2,22844,36113], +"map-sources", +[2,22838,22840], +"-fabulous", +[2,1676,22842], +"@vitest/e", +"hook-std", +[0,22849,2667,22851,2487], +"@codspeed/vitest-plugin", +"mississippi", +[0,1676,33735,33702,33705,33725,33727,33713,33723,33714,33710,33734,33729,33722,33718], +"source maps", +[0,33737,33738,33739,33740,33741,28794,2811,33742,33744,33745,25003,33746,33748,4144,4145,33749,33750,3101,6621,33751], +[1,2343,22853], +[0,22854,22855,22858,2537], +[0,1091,1138,1371,1437,1494,1536,33757,33758,13834,16064,33761], +[0,2212,4494,4493,2675,1177,1984,1894,91,2990,107,7806,33765,7677,33768], +"device", +"strip-debug", +[0,4592,4146,3166,2665], +[1,2343,22861], +"client-hints", +[0,22862,22864,22865,2487], +[0,984,2145,3242,3494,4100], +"accord", +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342,33775], +[0,2026,33777,2663], +[1,2343,22867], +[0,22868,22869,2514,2443], +[0,1080,6870,1676,1869,2657,3173,3494], +[0,1087,1177,1948,2899,3421,4342], +[1,2343,22876], +"looks-same", +"svg2png", +"@cpplint/cli", +"rwd", +"retina", +[0,22877,9025,2514,2523], +[0,1833,1869,3494,710], +[1,2343,22879], +[0,22880,22881,22882,2537], +[0,33798,3171,3181], +[0,192,5467,33801,33803,1168,1429,1431,1527,1177,1895,2151,2675,2990,3073,13824,2899,3310,3421,1894,3752,33804,4193,4196,4390], +[0,33804,33807,13573,7200,33808,6997,33811,6949,5351,4967,33813], +[2,33888,22889], +[1,2343,22885], +[0,22886,22887,22888,2523], +[0,33819,33821,33823,33824,7709,33826,33827,33828,27792,33831,13559,33836,33838,33840,29749,1367,10785,33841,13566,33843,3445,17009,4729], +[0,33846,9167,33848,5087,4874,7819,9241,1009,1011,33838,13566,668,33850,1177,1895,19527,1915,1938,1955,2675,1192,33851,33852,33854,33857,2845,3381,1894,13569,4257,4468,4474,1531,91,3348], +[0,12,7200,5472,1192,33804,4158,1984,13573,6930,6808,7308,33822], +"arm64", +[1,2343,22891], +[0,22892,0,2514,2537], +[0,26956,6641], +[1,2343,22895], +"rendering", +[0,0,22896,22897,2443], +[0,1178,1264,1280,1429,1177,2126,33869,2675,2990,2899,1894], +[0,4163,4161,4162,26287,3797,33871], +[1,2343,22899], +[0,22901,22903,22904,2537], +[3,18435,14], +[0,4135,22804,20584], +"incremental", +[0,20762,4481,33891,4391,640,33894,2057,22873,11976,3299,33877,2829,33882,33890,33884,33887,22883], +[0,21881,18048,12349,12350,23995,20639,8221,20701,33896,158,24800,33897,12712,26490,33898,33899], +[1,2343,22906], +[0,0,22907,22910,2523], +[0,13614,1159,9254,1177,2011,2708,2762,3410,3421,4103,4389], +[3,15893,12], +[2,22908,1512], +[0,1523,1644,7336,4166], +[1,2343,22912], +[0,22913,22914,22915,2537], +[0,2020,2071], +[0,1166,1437,1506,1177,1881,1938,2822,3421,33910,33912,4172,33916], +[0,4167,16159,28984,4166,33918,7048,2763,31360], +"@types/plu", +[1,2343,22921], +"gin-error", +[2,22916,22918], +"gulp-diff", +[0,22922,22925,22926,4139], +[0,3266], +" compilation", +[2,22902,22923], +[0,1429,2228,2899,1839,2240,26399,4436,2305,34238,22000,2236,2300,3006,2253,2273,2281,5535], +[0,5843,4439,3265,3348,33927,33928,33929,4169,33930], +[1,2343,22928], +[0,22929,22931,22934,2537], +[0,33936,33937,33938,33941,33942], +"array-each", +[0,1362,1177,33945,2899,1894,4042,4067,4487,91], +"error-cause", +[2,3094,22932], +[0,1973,5982,1145,4170], +[3,16647,18], +"se-extend-native", +[2,22935,22936], +"list-map", +[2,4601,22938], +[1,2343,22942], +"tape-catch", +[0,5621,22943,22944,2537], +[0,2228,2247,2253,2273,2281,2285,2290,33953,2291,2316,2832,3006,3518,33954,4135,33955,4232], +[0,1783,15253], +[1,2343,22947], +"uncss", +[0,22948,22949,22950,4139], +[0,3183,4167], +[0,1173,1264,1280,1177,1881,19527,1938,2822,2899,3421,4039,33910,33963,33912,4170], +[0,4167,4166,28984,16159,16160,2978,200,8636], +[1,2343,22952], +[0,0,22953,22954,34352], +[0,21122,4874,24162,13680,1414,1894,4384,4474,4508,91], +[0,6553,2021], +[1,2343,22956], +[0,22957,22958,22960,2523], +[0,1097], +[0,2553,3714,4042,4048,4535], +"useref", +[0,7521,5224,26514,1424], +"async-once", +"gulp-dest", +[2,3204,22962], +[1,2343,22965], +[0,22969,22976,22977,4139], +"@hapi/joi", +"jsonic", +"optioner", +[0,33986,33989,1676], +"array-differ", +"array-uniq", +"beeper", +"_reescape", +[2,3024,22973], +[3,22974,11], +[0,33992,33997,5245,5087,4874,668,29154,1192,4474,91], +[0,3358,34000,30983], +"valuate", +[2,22975,22978], +"lodash._re", +[1,2343,22984], +"interpolate", +[2,22980,22982], +[0,0,22986,22987,2523], +[2,3067,6937], +[0,4481,1192,2675,3534,1177,4039,4042,1894,1610,1193,53,5087,1540,34009,3720,97,107,87,1926,34015,68,5583,4073,6373,34019,811,816,5522,34013,1201,81], +[0,11615,16114,27968,13527,5130,89,1098,188,38,14584,4967], +[1,2343,22994], +"@test-runner/core", +"yazl", +[2,22996,32078,6624], +"qpass", +"yazul", +[0,22995,22998,22999,2537], +[0,11124,826,34034,1687,4351], +[3,22989,13], +[2,22996,23000], +[0,53,11126,11130,11133,11134,34040,28537,34041,1208,1676,1705,668,27502,26739,2185,2990,2899,3421,1894,3758,4039,4135,4167], +[0,4193,1973,5472,2275,13106,4158,21147,6901,34044,3212,4731,1145], +"live-view", +[2,22996,23003], +[1,2343,23005], +"oneline-view", +[2,22996,16316], +[0,0,23006,23007,34352], +[0,442,1414,1429,1177,2899,1894,4193], +[0,1429,15385,1388,34050,34053,4193,5472,17051,17052,17050], +[1,2343,23010], +[2,13857,2663], +[0,23011,23012,23013,2523], +[0,9153,6327,1149,1409,34066,34065,3188,4135,16358,2026,2822,705,1866,1525,3181,2861,2036,1364,1536,2657,2600,34060,34062,3923,34064], +[0,2899,1362,1389,34068], +[0,7223,3383,18157,29179,5260,2658,36], +[1,2343,23015], +[0,23016,0,2514,2487], +[0,34076,11480,34078], +[2,4598,3426], +[1,2343,23019], +[0,23020,0,23021,2443], +[0,34085,2984,34086,3527,27921], +[0,4201,200,1999,6681,34088,34090], +[1,2343,23023], +[0,16583,11580,23027,2523], +"smith", +[2,3521,23024], +"pngparse", +[0,34096,34098,34099,5995,4967,17758], +[1,2343,23029], +[0,23030,23031,23032,2399], +[0,22992,34105], +[0,2924,4469,91,4677,23319,4676], +[0,5995,34107,5592,33804,18035], +[1,2343,23035], +"compressed", +[0,0,8134,23036,2523], +[0,3403,34116,4207,28978,6574,6270], +[1,2343,23038], +[0,23039,23042,23044,2537], +[0,1110,34121], +"catering", +"deglob", +[0,1166,1437,34125,4294,1906], +"find-file-up", +[0,6913,1871,1111,592,1473,7208,1512,7009,7201,200,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +"find-githost", +"link-re", +[1,2343,23067], +"ferences", +[2,23046,23048], +[2,1163,23049], +[2,3986,23050], +"remark-c", +[2,15,14994], +[2,23052,23053], +[3,13240,12], +"quote-", +[2,23056,17537], +[2,1359,23057], +[2,23055,23058], +"box-", +"-style", +[2,6843,23061], +[2,23060,23062], +[2,4354,23063], +[2,23055,23064], +[3,23065,22], +[0,23068,13640,23072,2537], +[0,22437,1455,12918,34132,34134,25377,34136,3275,3518,34137,3718,3730,34139,1241,4747], +"ontent-indent", +[2,23066,23069], +[3,23065,13], +[0,34141,4796,22832,3378,1161], +"block-style", +[2,16080,23073], +[2,23071,23074], +[3,7900,10], +[2,23076,15319], +[2,23055,23077], +"emphasis-marker", +[2,23055,23079], +"fenced-code-marker", +[2,23055,23081], +[3,23082,13], +"inal-newline", +[2,23083,23084], +"hard-", +[1,2343,23088], +[0,0,23089,23106,2523], +[0,12310,6061,6063,5476,1414,2899,4131,4255], +"break-spaces", +[2,23086,23090], +[2,23055,23091], +"-bullet-indent", +[2,5401,23093], +[2,15794,23094], +[2,23055,23095], +[3,23096,22], +[2,23097,8958], +[3,13240,15], +[2,17793,17825], +[2,9344,23100], +[2,1160,23101], +[2,23099,23102], +[3,23058,11], +"without-", +[0,4213,3974,1871,4577,22188,3656,1002], +"marker", +[2,23105,23107], +[2,23104,23108], +[2,23099,23109], +"duplicate-", +[2,23111,7900], +[2,23099,23112], +"-cont", +"ent-indent", +[2,23114,23115], +[2,156,23116], +[2,23099,23117], +"padding", +[2,16569,23119], +[2,23099,23120], +"literal-urls", +[2,23099,23122], +[3,13240,17], +"used-definitions", +[2,23124,23125], +"rule-style", +[2,23055,23127], +[1,2343,23130], +[0,0,23131,23146,2537], +[0,1596,34154,2899,3421], +"strong-marker", +[2,23055,23132], +"cell-padding", +[2,16065,23134], +[2,23055,23135], +[3,23136,18], +"pipes", +[2,23137,23138], +"unordered-list-marker-style", +[2,23055,23140], +[2,4586,3966], +[2,3986,23142], +"unified-", +[2,23144,16284], +[0,4213,3974,1002,34156], +[1,2343,23150], +"-shiny", +[2,18004,23148], +[0,7936,7938,7939,2443], +"pull-", +[1,2343,23153], +[0,23156,0,23157,2537], +"pull-or-clone", +[2,10617,23154], +[0,1437,2713,3183,3923,34167,4294,4425], +[0,3721,34170,34172,4255,34174,25264,34177,34179,34181,34182], +"fixer", +[1,2343,23160], +[0,23161,23162,23170,2523], +[0,1170,34189,1676,2131,2141,2188,1209,4113,4296,15502,34190], +[0,442,5245,7810,4870,4874,34194,15507,1364,1512,1687,1742,1792,1177,2026,2099,2070,2899,3421,1894,3923,4135,4151,4170,4193,4232,25609,4508,91,4523], +[2,13729,18200], +"git-tags", +[2,2264,2907], +[2,8961,2499], +[2,2312,23166], +"jquery-", +[2,23168,2555], +[0,4217], +[1,2343,23172], +[0,23173,0,23174,2537], +[0,1080,34200,1594,1676,12777,34201,9247], +[0,20863,5130,4699,21405,2018,21302,11444], +"neo-async", +[1,2343,23179], +"chai-diff", +[2,2264,4019], +[0,23180,0,23181,2537], +[0,34208,1676,12779,9247], +[0,20863,5130,4699,21405,2018,5576], +[1,2343,23183], +[0,23186,23191,23194,2537], +"ammo", +"heavy", +[0,1676,34226,26137,2713,4567], +"bounce", +"catbox", +"somever", +"subtext", +[0,1389,1839,1177,2025,2323,2409,2494,2496,2510,2530,2297,2871,2876,2881,2900,2899,3752,3756,4151,34228,4599,4603], +"statehood", +[2,23188,8329], +[0,14609,4699], +[1,2343,23197], +"vision", +[0,0,23198,2514,4139], +[0,1414,1742,1177,1894,1895], +[1,2343,23200], +[0,0,23202,2514,2487], +"webidl-conversions", +[0,34238,1742,2924], +"@vitest/ui", +[1,2343,23206], +"@webref/css", +[0,23207,23208,13533,2487], +[0,2685,4228], +[0,48,53,87,192,5467,16405,1193,1610,1622,1700,1701,1177,1895,1938,2675,1192,2990,3144,3400,1894,4257,2924], +[1,2343,23210], +[0,23211,23212,2514,2537], +[0,16136,4227], +[0,1389,1509,2665,2899,2924], +[1,2343,23214], +[0,0,23215,23216,2523], +[0,4874,1414,1894,3985,3998,4505,91,1906], +[0,965,1936,17540,34254,11590,1644,1646], +[1,2343,23218], +[0,23219,23220,23221,4139], +[0,34270,34266,5526,5528,5529,1448,1509,1525,2071,2215,2220,34264,2228,2247,2253,2256,2258,2263,2281,2283,2308,2036,2600,2654,2820,2822,34269,2856,1209,3127,34261,3561,2278,4373,4449], +[0,48,53,87,94,10737,34272,1429,1431,6522,1177,1951,1954,1970,2899,3363,1894,4037,4039,4193,4196], +[0,2220,1739,1745,34276,34279,5592,9381,1179], +[1,2343,23223], +[0,23226,23227,2514,4139], +"own-property-symbols", +[2,2183,23224], +[0,4430], +[0,2012,19987,19988,19989,34294], +[1,2343,23229], +[0,0,23230,2514,2523], +[0,34300,34301,30025,3421,3697,4255,4389], +[1,2343,23232], +[0,0,9888,2514,2523], +[1,2343,23234], +[0,0,23235,2514,2537], +[0,2323,2899,1177,1317,2463,2384,2409,2494,2530,34312,2510], +"@ljharb/", +[2,23236,2190], +[3,19784,15], +[2,23238,14037], +[3,6541,12], +[2,23240,3205], +[1,2343,23243], +[0,23244,23259,23263,2523], +[0,1362,1473,1512,1636,2151,2036,34317,8691,1209,3367,17997,34318,22519,4431,4597,4600,34319,34321], +[2,8727,591], +[2,10306,5472], +"@ungap/structured-clone", +"from-parse5", +[2,2573,23248], +[2,2580,3493], +"html-v", +"oid-elements", +[2,23251,23252], +[2,9406,8193], +[3,75,9], +"namespaces", +[2,5925,23256], +"zwitch", +[0,1429,1596,2759,2899,3202,34324,34326], +[3,9315,9], +"gap__structured-clone", +[2,23260,23261], +[0,22055,22074,34328,1623,4329,695,2278,4245,34331,17461], +"remark-api", +[1,2343,23268], +"unist", +[3,2572,9], +[0,23269,23270,23271,2537], +[0,1326,3299,32944,4390], +[0,1177,2899,32942], +[0,14872,7827,4246,18035], +[1,2343,23280], +"aria-", +[2,23273,2618], +[3,23249,15], +[2,23275,1936], +"html-tag", +"-names", +[2,23277,23278], +[0,23281,23282,23283,2523], +[0,34342,34345], +[0,1177,15234], +[0,21000,4247,22813,18112,4166,2978,21004,5576], +[1,2343,23285], +[0,23290,23294,23295,2399], +"bcp-47-match", +"-separated-tokens", +[2,14186,23287], +"devlop", +[0,21505], +"direction", +[2,2573,3661], +"not", +[0,9516,9515,1317], +[0,12616,5122,1965,34354,26965,27081,34355,34356,34357,34359,34360,1936], +"selectall", +[1,2343,23298], +[0,23299,21592,23300,34352], +[0,4745], +[0,4249,1781,4745,17307,25611,1747,7141,7789,166,1721,18035,1745,5995,1550,3230,2109,3259,4246,6523,20832,25638,1781,3053,34366], +"attach-comments", +[2,12413,23301], +"is-i", +"dent", +"ifier-name", +[2,23304,23305], +[2,23303,23306], +[2,12413,23307], +[3,6451,11], +[2,12127,23309], +[3,23310,15], +[2,23311,1219], +"js-esm", +[2,12127,23313], +[1,2343,23317], +"esast-util-from-js", +[0,0,23318,2514,2443], +[0,87,1193,1192,34373], +"basic-node-server", +[1,2343,23321], +[0,23323,23325,23326,2487], +"ccount", +[0,1177,1903,33572,1938,1953,1958,1959,33573,34380], +"tostring", +[0,1615,2554,3183,34383,4092,12823,4389], +[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,2446,2292,2272,671,19315,19269,2869,4255,19317,590,19318,19320,19273], +[1,2343,23328], +[0,23329,23331,23333,2523], +[0,1437,1566,34392,1570,25901,1707,20949,34393,2089,2105,31174,4135,28154,4747], +"sval", +[0,1429,1177,1903,1938,1954,1958,2899,3203,3215,3421,4167,34395], +"solid", +[0,1566,4945,13729,13728,6976,15525,1098,4255], +[1,2343,23335], +[0,23337,23338,23341,2537], +"wcswidth", +[0,1138,1362,17045,1676,2020,17034,10756,28519], +[0,4874,34405,1429,1610,1705,34407,34408,34409,2212,2848,8163,3183,2899,34410,26230,4131,34413,4193,4196,20382,4255], +[2,23340,93], +"@swc-node/", +[0,15656,12804,36,6587,1973,6435,6703], +[3,9407,13], +"nd-after", +[2,23342,23343], +"exsolve", +[1,2343,23347], +[0,23348,23349,23350,2523], +[0,34423,27073,2175,34421], +[0,1241,2276,4545], +[0,4264,34426,34427,34429,20863], +[2,13721,3585], +[2,2573,23351], +[1,2343,23357], +"build-", +"build-jsx", +[2,12413,23355], +[0,0,23358,23360,2523], +[0,1645,1177,1903,1938,1948,1954,1958,1970,2899,3421,3784,22449], +"svg-tag-names", +[0,27,6622,1501], +"vdom", +"hyperscript", +"@glen/jest-raw-loader", +[1,2343,23365], +[0,23366,23367,23368,2537], +[0,4729,3445,3930,4135,668,37080,36874,7384,26870,5545,968,974], +[0,1797,4763,1429,1687,2070,2807,4200,2020,2975,3144,23802,89,4207,20573,2205,3266,3411,28853,668,23345,2161,2822,6042,814,4448,24324,3555,1894,29318,9241,1420,1525,4788,3530,28863,3824,11143,4507,33215,4726,9741,16485,30414,3527,4227,4294,91,53,17577,4874,1615,1710,29514,104,14552,30157,11196,58,29515,5254,37084,1707,37491,15245,35349,8646,7931,7948,7637,7812,26380,15906,36119,8506,30253,32284,4480,101,370,15600,30254,30260,30262,24759,5216,30464,20374,30283,3885,33523,1582,37017,21122,30913,9329,30284,33228,33534,33538,30300,30313,12837,4300,30321,30375,31673,30398,966,25114,37449,28465,30406,7943,972,33554,33526,8714,19592,9011,30387,3749,30453,30454,30467,12315,30468,30470,30471], +[0,4270,4627,4963,23245,23246,89,3286,23803,3857,5123,188,1098,3709,5167,5926], +[1,2343,23370], +[0,23371,23372,23373,4139], +[0,2664], +[0,23363,10825,10827,10828,28147,34473,34475,11011,10837,10840,29877,968,972,5087,11292,4880,1177,34480,1192,11347,2780,1894,3744,3758,89,3824,2278,4111,4270,4468,91,4705,4745], +[0,6718,4270,34484,4963,1745,4967,34485,21043,34491,34493,34494,3416], +[1,2343,23377], +"regexgen", +"sort-object", +[0,23378,0,5269,2523], +[0,7,53,87,6316,6318,1437,1448,1457,1512,1525,1595,6323,2061,34500,2151,2070,2036,2626,2681,17449,2856,1209,3079,6326,6327,3127,3183,6330,6331,29899,6332,4135,100,4473,3348], +[1,2343,23380], +[0,8856,7938,7939,2443], +[1,2343,23382], +[0,14754,23383,23384,2523], +[0,34508,34510,2899,4170], +[0,34513,3101], +[1,2343,23386], +[0,0,23393,23394,2537], +[3,5429,9], +[2,23387,19315], +[2,1561,23388], +"origin-embedder-policy", +[2,1611,23390], +[3,23391,13], +[0,816,6503,4874,1642,1794,2899,2966,1894,4042,4064,4066,4170,4474,4494,91], +[0,3101,353,1641,3048,5995,4967], +"-policy", +[2,3456,23395], +[2,23392,23396], +[3,5974,9], +[2,23398,19315], +[2,23392,23399], +"origin-", +"-cluster", +[2,4575,23402], +[2,23401,23403], +"refer", +"rer-policy", +[2,23405,23406], +"-security", +[2,4714,23408], +[2,14104,23409], +"x-content-type-options", +"x-dns-prefetch-control", +"x-download-options", +"x-frame-options", +"x-permitted-cross-domain-policies", +"x-powered-by", +"x-xss-protection", +[1,2343,23419], +[0,23420,11580,23421,2523], +[0,17835,692,17754,2129,2760,34524,13291], +[0,34527,34528,5995], +[3,17494,14], +[2,23422,965], +[1,2343,23425], +[0,0,0,23426,34352], +[0,4283,1671,1871,6901,1666], +[1,2343,23428], +[0,0,23429,23430,2537], +[0,2323,2346,2463,2494,34537,2530,28539,4535], +[0,1871,16116,34540,34541,34542,591,1641,1936,18089,1644,1936,2640,4301,6678,10368,15103,1867,23615], +[1,2343,23437], +"abbrev", +"archy", +"hexo-cli", +"hexo-", +[2,23435,2149], +[0,23442,23447,23457,2537], +"hexo-fs", +"hexo-i18n", +"hexo-log", +"hexo-util", +[0,5139,34547,2626,3021,34551,34553,34556], +"-js-types", +[2,2822,23443], +"titlecase", +"warehouse", +[0,34559,34560,17913], +"0x", +"bbrev", +[2,9165,23449], +"xt-table", +[2,13419,23451], +[2,1884,2596], +[3,1778,9], +[2,23454,3127], +[2,23435,23455], +[0,1501,7682,7115,1936,34562,34563,7293,22392,4285,1871,4301,2640,17950,2585,34564], +[1,2343,23459], +[0,23460,8134,23461,2537], +[0,34569,4294], +[0,1871,6843,3656,4289,7062,6922,6981,6701,6581,16041,23336,6700,1111,1867,5281,200,6876,7009,7201,6575,6611,6795,6960,7135,7230], +[2,11177,17514], +[1,2343,23467], +"grunt-g", +"h-pages", +[2,23464,23465], +[0,23468,23472,23473,2523], +[0,34576,34578], +"scrawl", +"ducers-js", +[2,4713,23470], +[0,4874,1414,26854,1894,3985,3998,4505,91,1906], +[0,1646,10368,1867,1936,6843,11043,18944,18089], +[1,2343,23475], +[0,23477,20489,23481,2537], +[2,5058,23278], +[0,1109], +"freeze-es6", +[2,1683,23478], +[2,5313,14056], +[0,4301,6678,7293,1111,592,1473,7208,1512,7009,7201,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +"tiny-worker", +"wcag-contrast", +[1,2343,23485], +[0,0,8134,23486,2537], +[0,4301,4295,1412,4327,3126,3656,4577,22188,7293,6865,6678,2585,1871], +[1,2343,23488], +[0,0,23489,23490,2537], +[0,1166,3130,4481,1906], +[0,1781,4301,4298,7293,6865,6678,16112,1644,1541,8309,6937,614,1263,6639,19632], +[1,2343,23492], +[0,0,23493,23494,2537], +[0,3421,1429,3297,2899,1177,4474,1894,3310,91,4856,4874,6503,23496,1431,1938,3200,1895,1955,9417,1011,10419,1009], +[0,4302,34601,34602,5592], +[1,2343,23497], +"undici-types", +[0,23498,23499,23500,2523], +[0,1149,1676,34607,34610,3324,34612,3368,3460,3917,34613,34615,34616,34619,34622,30142,34625,34626,34629,4707,2861,1401,34631,1653,2592,2713,695,1209,3081,26443,7305,34421,3220,3923,23975,4246,34634,26423,34636,34637,34639,29456,4729], +[0,1177,2292,4384], +[0,9649,34642,29319,34643,26473,34644,13538,4575,13539,6147,6374,24093,1541,4796,20997,20999,34647,2134,3358,27318,34650,6807,26474,10057,25202,3151,13499,27838,34651,3378,34652,34653,26931,6681,2306,3729,15267,28413,29179,5508,8791,11100,34654,34656,7046,34613,34657,34660,30142,34629,4303,34661,4345,17184,6901,34662], +[1,2343,23502], +[0,23503,23504,23505,2537], +[0,34667,34668,34669,34670,1437,1443,13827,1525,2745,2856,34671,1894,4443], +[0,34673,34676,107,192,5467,34677,34679,8661,34680,4856,4874,11438,7819,1011,5476,34681,5478,1082,34683,1429,1177,1951,1959,2007,2151,34684,2675,34686,2829,34689,695,2990,34690,26564,25131,2899,21290,3400,5561,2278,4135,4164,22595,4333,91,4555,3348,4745], +[0,34693,590,34692,1623,4964,11590,2278,4329,13339,34694,89,5133,25172], +[1,2343,23507], +[0,0,23508,13533,2537], +[0,1192,2278,2675,2832,3144,1622,1177,4135,1701,2924,1854,1894,1610,48,1193,1628,53,2092,2990,3400,4111,4677,192,4257,87,4681,1938,1895,2780,5467,16405], +"step", +[1,2343,23511], +[0,23512,23513,23514,2523], +[0,4311], +[0,192,5467,19438,19181,442,811,816,10615,5087,1009,1011,1177,1955,10964,2203,2675,1192,2990,1894,4042,4468,4474,91], +[0,4309,1623,590,5284,3048,23578], +[1,2343,23516], +[0,23517,23518,23519,2487], +[0,2718], +[0,192,5467,19438,19181,442,811,816,10615,10817,5087,4874,1009,1011,1177,1955,10964,2203,2675,1192,2990,3400,1894,23535,4042,4468,4474,4484,91], +[0,4311,134,590,57,1623,3048,23578], +"hap-nodejs", +[1,2343,23524], +"-newlines", +[2,1938,23522], +[0,23525,23526,23527,2443], +[0,7943,13037,34715,34718,1639,3561,4163,7917,4484], +[0,53,5652,8229,61,78,5240,87,90,92,10817,966,968,972,974,4863,5087,34720,4874,4880,4883,34722,5091,4889,5055,1193,1198,20479,14065,6375,1192,2780,26503,2802,2820,1894,3744,89,3824,34725,3857,3904,4042,4055,4058,4067,4069,4071,4073,34727,34730,91], +[0,89,1623,7165,4315,7297], +"@hono/eslint-config", +"@hono/", +"node-server", +[2,23529,23530], +[1,2343,23533], +[0,23534,23540,23541,2443], +[0,33204], +"publint", +"ly-js-compute", +[2,2062,23536], +[2,4609,23537], +"wrangler", +[0,48,53,78,4851,5743,5241,83,87,90,94,97,104,4880,1166,7913,34737,1573,1177,1895,2675,3008,1894,3720,89,3824,4131,4227,33212,7917,34741,91], +[0,7913,4592,34743,7165,1623], +"cloudflare", +"workers", +"fastly", +"compute", +[1,2343,23547], +[0,23548,20974,23549,2399], +[0,1393,3681], +[0,2887,1623,34749,4318,16918,3561,6425,4319], +[1,2343,23551], +[0,23552,23553,23554,2487], +[0,205,30928,208,213,30577,220,22371,30299,1595,1627,1634,1676,2071,29067,16783,14564,2205,34755,2641,2687,5210,19187,2747,2932,34757,3157,3170,3369,3527,3561,3676,3681,3688,4290,15887,34762,176,4728], +[0,107,34765,11893,34768,34770,34773,16934,5245,16787,34775,34776,34778,8778,16398,34780,19800,34785,22092,1317,1532,1699,1177,34787,1938,1939,2675,1192,34791,2802,2990,11357,3400,5561,3606,3613,30479,34793,3678,1894,3985,4337,91], +[0,7165,1623,695,671,9654,1783,2278,4329,4320,4337], +[1,2343,23556], +[0,23557,23565,23566,34352], +[0,4946], +"hopper-adventure", +[2,12087,23558], +"svelte2tsx", +"workshop", +"adventure", +"tutorial", +"tutor", +[0,34768,34770,1177,34787,2675,2990,3400,1894,3985,4320], +[0,4320,34801,4255], +[1,2343,23568], +[0,0,23569,23570,2523], +[0,3421,1192,2675,3534,1742,1177,1503,4508,1894,34810,1610,4320,48,1193,34809,11918,91,53,13693,2990,3165,94,192,4131,87,34806,1939,1978,1938,6063,34791,21120,1895,1955,4514,92,1011,6061,5467,1883,1009,5766,13052,61,78], +[0,7846,4320,1623,4329,695,671,34818,6884,3046,34819,1473,34820], +"big-lib", +[2,8131,23571], +[2,7635,23575], +"karma-co", +"codeshift", +"@jasminejs/reporters", +[1,2343,23579], +"pojo", +[0,23580,23581,23582,2537], +[0,3561,34826], +[0,1177,34829,1895,2203,2675,1192,30912,34791,2802,2990,3606,30479,34832,1894,34835,4320], +[0,7846,4320,1623,671,4327], +[1,2343,23585], +[3,2618,9], +[0,23586,23587,23588,2537], +[0,1634,2747,2932,3141,34842,34760,3681,3688], +[0,1532,1610,1177,34847,2675,1192,34791,2990,3377,3561,30479,3678,1894,4320], +[0,1623,21861,671,9654,4329,4320,7846], +[1,2343,23590], +[0,23592,14818,23593,2487], +"@domenic/eslint-config", +[0,63,1676,2070,4113,4227], +[0,1623,57,590,22561,2437,1351], +[1,2343,23595], +[0,23596,23599,23609,2487], +[0,2071,3369], +[3,9127,9], +"flowgen", +[0,48,53,87,192,5467,442,27928,19344,1317,34860,1610,1622,1628,1700,1701,1177,1895,20281,1938,1939,1942,1953,1955,1982,2203,2675,1192,2990,3144,3291,3400,1894,3786,4257,4307,4333,4523,2924], +" entities", +[2,1936,23600], +" encode", +[2,23601,23602], +[3,23603,14], +[2,23604,15103], +[2,18089,23602], +"entities ", +[2,23607,15103], +[0,2924,1194,4333], +[1,2343,23611], +[0,0,0,23612,2443], +[0,1623,3561,30775,5341,8958,57], +"ascjs", +[1,2343,23616], +"unescape", +[0,23617,23618,23619,2523], +[0,1533,34877,1676,33596,2139,2141,3164,3171,3763], +[0,48,53,83,87,97,192,5467,1290,16750,27731,1364,1389,1575,1610,1177,1909,1924,1954,2026,2040,2114,2182,2675,2990,3127,2899,3246,3421,3985,3995,4039,4170,34879,34881,1906,4770], +[0,4575,6662,6662,5592,1149,7003,1170,12618,5576,34883,2212,27,27,2671,21668,1862,1862,6567,705,705,21666,5508,4030,1153,4340,4339,17481,353,4731,4738], +[1,2343,23624], +[2,9374,12349], +"-unicode", +[2,23615,23622], +[0,23625,23626,2514,2487], +[0,25910], +[0,5245,27847,4874,1317,25212,3230,21180,91,1984], +[1,2343,23628], +[0,23629,23630,23632,2523], +[0,3164,4339,1581], +[0,3421,3297,2899,4193,1177,4170,2026,3752,1364,1575,192,1938,1881,5467], +"relateurl", +[0,5982,27,705,4339,6969,1973,5472], +[1,2343,23636], +"compressor", +"packer", +[0,23638,23639,23640,2537], +"uglifier", +[0,1362,3164], +[0,1429,1431,4037,4706,1364,1575,2026,2899,4170], +[0,4342,4339,705,6969,5982,27,1973,5472,1862,34901], +"detect-europe-js", +[1,2343,23650], +"alpinejs", +[3,19403,11], +"config-no", +"n-conventional", +[2,23645,23646], +[2,23644,23647], +[3,10854,16], +[0,0,23653,23654,2523], +"lyfill-node", +[2,23649,23651], +[0,1906,1166,4481,4874], +[0,1473,7208,1512,7009,7201,200,1111,592,6621,6616,7244,4166,4744,6876,4231,25986,34915,13735,13030,34916], +[1,2343,23656], +[0,23657,23658,23661,2487], +[0,31292,5012,23826,1006,1082,11869,19639,1497,11478,11479,22716,10898,10902,3090,22720], +[0,5180,8648,811,816,10615,8661,11868,4874,11486,668,4042,4227,27921,91,1984], +[2,23660,23663], +"browser-d", +[0,3709,27751,5130,5354,17950], +[1,2343,23665], +"etection", +"device-detection", +[0,23666,23669,23671,2537], +[0,5180,1457,20378,3527,11481], +"os-detection", +"bot-detection", +[0,811,8850,816,6373,10817,34939,1405,4042,4052,8849,3709,91,34940,34942,27702,27703,23560,34945], +"void", +[0,3709,200], +[1,2343,23673], +[0,0,23675,23676,2537], +"self-closing", +[0,53,87,192,5467,34951,34953,10879,4874,34955,19802,1165,13662,1509,1567,1177,695,3561,34958,3616,1894,3754,2278,4333,4337,3709,91,1984], +[0,3709,4358,91,695,4333,2278,4329,3754,1509], +[1,2343,23678], +[0,23690,23692,23693,2537], +"@bubkoo/commitlint-config", +"@bubkoo/", +[2,23680,7625], +[2,12612,1541], +[2,23680,23682], +[3,21388,20], +[2,23684,16171], +[2,23680,23685], +[2,23680,2190], +"asmine", +[2,5086,23688], +[0,16858,2070,4361,1149,25232,4597,4739,4747,2822,4709,3257,34967,3060,18993,10780,34966,13839], +"capture", +[0,1906,1192,695,2278,3549,4333,3536,1939,1942,34971,19812], +[0,1017,45,8221,18048,22074,22075,2873,1179,1623,2278,695,4333,5376,134,1936,13814,22874,22875,3257,17461], +[1,2343,23695], +[0,23697,23698,23700,2537], +"@selderee/plugin-htmlparser2", +[0,1525,1632,1634,9378,16858,3527,4113], +[0,442,11893,811,816,10615,16934,16854,5087,4874,34194,7752,1610,1177,2203,1192,3536,3541,3549,1894,4039,4042,4393,4481,91], +"selderee", +[0,4361,8221,6707,3178], +[1,2343,23702], +[0,23703,23704,23710,2537], +[0,1700,3067,34984,4533], +[0,1166,1173,1178,1257,29224,1272,1280,1362,1177,34989,3150,3188,4193,2924], +"@html-", +"/stylish", +[2,2649,23706], +[2,23705,23707], +"@sidvind/better-ajv-errors", +[0,2924,1932,34991,34984,11100,6812], +[2,23712,23], +[3,16579,15], +[1,2343,23714], +[0,23715,23716,23717,4139], +[0,1082,1699,2070,2856], +[0,1177,1894,4389,34997], +[0,8124,34999,7701,20120,1745,4363,1163,13728,1179,8623,20121,20123,20124,3452], +[1,2343,23719], +[0,23724,23727,23728,2537], +"theme-one-dark", +"@json2csv/plainjs", +[2,6019,3888], +[2,27733,23725], +[0,2205,2822,1525,35011,35008], +"-2", +"renderjson-2", +[0,1177,1984,1894,7677,35013], +[0,8124,1739,35015,1745,5592,134,4298], +"uffers", +[2,15038,23729], +[1,2343,23732], +[0,0,23733,23734,2537], +[0,4874,91], +[0,8168,8124,181,4369,2026,1745,1739,35021,12659,4367,699,35024,35026], +[1,2343,23737], +[2,11085,2634], +[0,23743,23744,23745,2537], +"pug-loader", +"recomp", +"ilation-simulator", +[2,23739,23740], +[2,4670,23741], +[0,5971], +[0,1866,2026,35036,2899,3421,3758], +[0,8124,2026,181,1781,1745], +[1,2343,23747], +[0,23748,23749,23752,2487], +[0,4535,3460], +[0,1209,2026,35046,2899,2025,35047,695,35048,1330,35051,3521,1389,2090,1776], +"@aminya/babel-plugin-replace-import-extension", +"lateurl", +[0,1283,17950,1936,21043,35053,16277,2026,1359], +[2,31806,31807], +"srcset", +"swiperjs", +[3,9376,10], +[2,23756,6424], +"postproc", +"cessor", +[2,23758,23759], +[1,2343,34505], +[0,4372,35058,31512,4453,12295,5131,1591,3525,1896,5130,35059,32054,35060,1932,89,188,35062], +[1,2343,23764], +[0,23765,23766,23768,2537], +[0,35068,35071,35072], +[0,1364,1610,2026,35074,1192,3237,4039,91], +"rss", +[0,705,27,2671,2325,1389,31360,15001], +"tributejs", +[1,2343,34522], +[0,35081,35082,3233,27838,888,6667,31937,6574,35084,35085,35086,35087,35088,35089,35092,26467,35093,7734,35095,3151,6771,35096,35097,35099,35100,11996,35102,35105,35106,35107,35108,35109,35110,35111,35112,17878,35115,35117,11812,35119,35122,10798,5876,12340,35125,25028,35126,35128,35129,35131,35133,35134,24079,5995,33741,35135,35136], +[1,2343,23773], +[0,0,23774,2514,2537], +[0,3445,2929,2899,3188,4039,4042,4072,1362,3310,35146,20463,4705,4232,8850,4073,6373,35141,816,35145], +"toidentifier", +[1,2343,23777], +[0,23778,23779,23780,2537], +[0,4729,1091,1594,35154,35155,35156,35157,1209,3237,35158,35159,35161,35162,2026,35163,35164,35166,35168,35169,1154,1364,1536,1562,35171,1130,97,35173], +[0,3278,1096,35175,35176,4167,35178,1532,35179], +[0,35181,35182], +[1,2343,23784], +"s-port", +[2,3209,23782], +[0,0,23786,23787,34352], +"sse", +[0,12473,4484,1177,2205,4042,1984,1894,91,53,4874,87,4057,4523,7677,5583,1938,11899,22839,22847,10817,816,24621,5660], +[0,4383,4380,1623,5256,35189,35191,1698,22306,35193], +[1,2343,23789], +[0,0,23790,2514,2537], +[0,1680,4874,16860,3090,4228,23956,31292], +"agent-base", +[1,2343,23793], +[0,23794,0,23795,2399], +[0,35205,35206,35209,35212,35213,35214,35216,35217,35220,35221,35222,35226,35227,35228,35230,35232,35233,35235,35236,35237], +[0,1145,4384,1973,5472,5130,200,35239,35240], +[1,2343,23797], +[0,23798,23799,23801,34352], +[0,1437,1792,2089,1209,3718,26840,35245,4431], +[0,35247], +"mockttp", +[0,4389,4384,2899,4386,16237], +"polka", +"next.js", +[1,2343,23805], +[0,0,23806,2514,2487], +[0,1192,1177,2203,1894,442,1193,53,1953,27928,87,1939,1938,20281,1982,1895,1955,19344], +[1,2343,23812], +"union", +"corser", +"secure-", +[2,23810,3797], +[0,23817,23819,23820,34352], +"eol", +[3,1895,15], +"opulist", +[2,23814,23815], +[0,35260,35263,35264,1417,1693,15016,35265,2133,2179,2070,35266,2571,2713,17403,3183,3206,3431,13635,3433,3435,814,18997], +[2,15021,36], +[0,13614,1143,1159,1537,1610,1796,35268,9254,1855,1177,14738,2762,2822,35271,3410,3421,4103,4135,4384,20496], +[0,4384,1973,35273,1145,1388], +[1,2343,23822], +[0,23823,23824,2514,2523], +[0,35279,35280,21505,29174,35278], +[0,4384,3297,4483,35282,4039,4508,1894,29169,4874,1834,35285], +[1,2343,23827], +[2,836,22715], +[0,23830,23833,23834,2523], +[3,7639,16], +[2,23828,176], +[0,3756,4393], +"HttpStatus", +[2,27,5576], +[0,4039,35291,4255], +[0,4390,2150,2090,18158,7204,3101], +[1,2343,23836], +[0,23838,23839,2514,2487], +"mediation", +[0,35297,35299,35298], +[0,35291,4255,1537], +[1,2343,23841], +[0,2513,23844,23845,2487], +"-retry", +[2,7737,23842], +[0,15288,15594,5087,4874,1009,1011,1596,668,1177,1903,1938,1954,1958,1192,1894,4468,91], +[0,35306,6346,35307,35308,4967,35310,5995,35312,27448,14629], +[1,2343,23847], +[0,0,23848,23849,2537], +[0,15288,5367,5371,6494,15594,5087,4874,9240,1009,1011,1364,1527,1652,35317,1177,1903,1938,1954,1958,2675,1192,2990,3363,5362,1894,4342,4468,91], +[0,35306,6346,35307,35308,5995,35312,15001,2026], +[1,2343,23851], +[0,23852,0,23853,4139], +[0,1676,3299,15160], +[0,32859,35324,35327,35328,35329,1326,35330,5995], +[1,2343,23855], +[0,23856,23857,23858,4139], +[0,1676,3299], +[0,442,6373,5245,4874,20584,1759,1177,1895,1966,1982,640,1894,4508,4514,91,4523,1983,26744,1984], +[0,32859,35328,4398,202,5995], +"anity", +[2,1901,23859], +[1,2343,23863], +[3,2677,9], +[0,23864,7923,23865,2523], +[0,4039,3188], +[0,21770,4449,1241,35342,16330,29615,35343], +[1,2343,23867], +[0,23871,23873,23880,2537], +"singular", +"plural", +"camelize", +[0,2753,13786,4507,35349], +"dasherize", +[0,4874,1166,3505,4453,4481,1906], +"demodulize", +"ordinalize", +"uncountable", +"singularize", +"titleize", +"tableize", +[0,1241,21770,3403,2090,7204,6857,16330,35342,29615,35343,3778,17023], +"classify", +[1,2343,23884], +"foreign_key", +[0,23885,0,23886,34352], +[0,26925,35364,35359,35367,35358,35365,35363,35356], +[0,7009,7201,1111,200,4744,1473,35369,35371,590,6847,35373,29002,35374,13006,4403,1478,15955,35375,35376,35377,32312,158,18048,21881,20639], +[1,2343,23889], +"@messageformat/core", +[0,23890,0,23892,2443], +[0,35382,15019,2713,35259,4431,35383], +"fast-printf", +[0,4403,7009,1111,35385,35386], +[1,2343,23898], +"make-plural", +"val-parser", +[2,9433,23895], +[2,18108,23896], +[0,23899,23900,23902,2487], +[0,35392,1082,1525,4232], +[0,35394,35395,1177,19210,1999,2899,3697,4042,4135,4227], +[2,23927,23929], +[0,2280,4072,4533,4535,3178,2632,5284,5286,1925,5194,6598,7075,6778,7056,7192,1149,7003], +[1,2343,23935], +[3,5702,15], +"-function", +"-functions", +[2,23904,23906], +[2,69,23907], +"gh-release", +"i18next-", +[2,1351,18691], +[2,13843,23911], +[2,23910,23912], +"fs-backend", +[2,23910,23914], +[2,2655,5995], +[2,23910,23916], +"storage-", +[2,23918,2325], +[2,2703,23919], +[2,23910,23920], +"sprintf-", +[3,10810,11], +[2,23923,7120], +[2,23922,23924], +[2,23910,23925], +[3,6021,10], +"interna", +"ease", +"alization", +[2,3855,23930], +[2,23928,23931], +[2,2703,8840], +[2,2202,8840], +[0,23937,23938,23939,2523], +"gettext", +[0,4072,2805,4121,4143,5180], +[0,1700,1192,2675,3144,1622,1177,1701,668,2924,1894,842,1610,4535,48,442,91,53,4874,2092,2990,3400,4677,28639,192,1953,27928,35403,4257,87,4523,1939,1584,1942,1938,20281,1982,1895,1955,19344,16400,5467], +[0,2280,4535,4533,4072,2924,1464,14137,15215,23634,2262,14137,2632,3178,6707,6708], +[1,2343,23941], +[0,23943,23944,23945,2537], +"gridly", +[0,22989,22991,22997,23001,23004,1519,1522,25190,2071,26553,17798], +[0,2829,3310], +[0,1187,1973,8791,200,2275,5472,4990,4389,4384,1166,2899], +[1,2343,23947], +[0,23949,23951,23953,2443], +"safer-buffer", +[0,1362,1437,2070,1209,3127,3188,35417,35419], +"errto", +[0,19181,442,12312,13414,4865,4870,4874,6513,1009,1011,7677,1703,1177,15555,35422,4193,35425,35426,4493,4494,91,35428,1984], +"unorm", +[0,1783,1973,2275,29352,1745,1739], +[1,2343,23955], +[0,23957,23961,23962,2537], +[2,8293,23958], +[0,53,71,81,5717,5749,5751,5757,5759,5782,5788,5821,5830,83,87,14128,90,97,35437,35439,4874,15427,5990,1212,14191,35440,17495,1429,1437,35443,1509,1525,1676,1680,1700,35444,28504,1687,35446,28137,13772,6473,2020,35450,2205,2215,33100,2670,12788,35453,2709,2742,26453,2743,35455,2753,2856,1209,35457,3093,7305,3220,35461,3257,3266,35462,3493,3532,35463,3549,15245,35465,3742,3762,35467,35469,13780,4025,4108,4135,5152,4232,4296,35473,35476,35479,35482,35484,35485,35486,35487,35494,35496,4449,4459,91,35497,35500], +"oxide", +"-reflect", +[2,5258,23959], +[0,33640,17835,35502,8862,811,15460,816,29544,35505,4856,5245,35507,17577,22089,27299,6505,7812,5254,5162,13418,35510,1009,1011,1198,1304,1364,35512,35513,1431,21480,4907,1544,1594,1610,35514,1874,1177,35517,17303,2026,35518,2323,2338,35519,2383,2384,2450,35521,35523,20305,2494,35527,2530,8163,3124,3159,3183,35531,3246,35533,3752,89,5311,4042,4076,4151,4193,17010,4294,35537,4484,4535], +[0,35539,6564,1388,2887,5351,8674,5472,13428,1973,8791,6969,1145,6468,35540,6789,6746,1149,7003], +[1,2343,23965], +"proxies", +[0,23966,23967,23968,2487], +[0,17877,35547,1137,20908,20991,1676,35549,1736,2182,28142,35550,35555,4391,4449,4548], +[0,28192,35558,28180,5245,28203,35561,35563,6520], +[0,4419,17878,5472], +[3,1891,15], +"stai", +[2,23969,23970], +[1,2343,23973], +[0,23976,23978,23979,2523], +"pre-suf", +"spawn-sync", +[0,1209,10627,35570,26827], +".gitignore", +[0,4874,1009,1011,1389,35573,35575,1610,1680,35576,35577,2752,3188,3400,3421,4039,4255,35579,35580,4421,4474,12851,91], +[0,6969,5982,3212,13106,4158,35582,4420], +"asterisks", +"regular-", +[2,23981,7256], +[1,2343,23984], +[0,23985,23986,23987,2537], +[0,10780,1292,1362,35382,1525,1536,1559,2020,2026,35588,2070,2659,2822,1209,3188,3257,3330,3411,35589,4039,4218,25192,35591,20496,4449], +[0,35593,1389,1429,18761,35596,1448,1719,1177,18766,1951,2899,705,35598,4167,4193,4196,4220,4389], +[0,5284,5472,27603,1388], +[1,2343,23990], +"dimensions", +[0,0,23991,23996,2537], +[0,4384,4389,1474], +"resolution", +"heif", +"tga", +"tiff", +[0,2585,176,14903,6938,26815,15847], +[1,2343,23998], +[0,0,23999,24000,2537], +[0,442,816,10615,1177,35611,1924,1937,1942,2203,29741,1776,3090,3549,3758,2907,4042,4495], +[0,4426,35617,5284,7598,35619,35620,35621,35622,35625,35628,35629,1424,8221,12075], +[1,2343,24002], +[0,0,24005,24007,2537], +"ow", +"p-pipe", +[0,48,53,83,87,97,5583,1195,16818,1593,1177,16821,1895,1955,1999,2182,35634,16824,2675,2297,2876,2881,2895,2904,2908,2921,2925,2990,3183,35637,3377,1894,3774,4042,16827,2924], +"imagemin-webp", +[0,1675,6925], +[1,2343,24009], +[0,0,24010,24011,34352], +[0,7115,4389,19988], +[0,3101,7046,7525,7170], +"is-png", +"pngquant-bin", +[1,2343,24015], +[0,24018,24019,24020,2537], +[2,2267,1932], +"pngquant", +[0,3923], +[0,1329,1398,1429,35649,2899,35650,4255,35653], +[0,3101,6657,4430,353], +[1,2343,24023], +"utf7", +[0,0,0,24025,2443], +"reader", +[0,3949,1499,1179,5701,1862], +[1,2343,24027], +[0,0,8134,24028,2487], +[0,35667,35668,35670,4435,5396,3403,4571,7204,4569,18132,6270], +"cpx2", +[3,23479,11], +[1,2343,24034], +"import-size", +"seamless-immutable", +[0,24035,14525,24039,2537], +[0,1437,32972,2089,21890,35675,3718,4425], +"mutable", +"on-write", +[2,1583,24037], +[0,2228,3005,22832,6901,35677,4262,18234,3514,6681,3005], +[1,2343,24041], +[0,24042,24043,24046,2537], +[0,35720,35797,35724,35730,35781,35789,35795,35799,35810,35682,35684,35697,35739,35750,35754,35769,35779,35793,35685,35700,35721,35741,35748,35756,35785,35787,35792,35812,35689,35694,35743,35752,35762,35774,35791,35805,35702,35705,35706,35708,35710,35723,35802,35806,35709,35699,35718,35729,35767,35772,35804,35808,35713,35733,35764,35811,35690,35701,35717,35727,35738,35761,35776,35783,35746,35736], +[0,2150,2070,2323,3403,2278,2899,89,1177,1209,4039,1637,3561,2924,1859,2151,2759,1610,2025,2504,3342,3824,1628,2359,3744,2367,4111,1165,2482,2496,4307,35814,35816,3427,4689,2361,2960,3618,35819,4909,1959,1879,1938,1947,25925,35818,1652,2054], +"variant", +[2,9721,24044], +[0,89,5128,4627,4963,181,5130,4967,35821,4437,14547], +[3,2697,12], +[1,2343,24049], +[0,24050,24051,2514,2487], +[0,20443,1676,26137,26144,3427,3763], +[0,1173,1198,1253,1267,1177,1903,1958,1970,2026,2164,2899,29946,4257,4342], +[1,2343,24053], +[0,0,0,24054,2523], +[0,1317,35832,4439], +[1,2343,24056], +[0,0,24058,24059,2523], +"bypass", +[0,35837], +[0,1473,57,35839], +[1,2343,24061], +[0,0,0,24062,2443], +[0,6105,4445,18241,5284,1936,2585,24829,24830,24843,6106,24832,6110], +[1,2343,24064], +[0,0,24065,24066,2537], +[0,4874,34238,1177,1895,1955,1982,1894,1531,91,4523,1983,1984], +[0,2062,35849,35851], +[1,2343,24068], +[0,0,0,24071,4139], +"metacom", +"metaco", +[0,4158,3212,91,3163], +"nfiguration", +[2,24070,24072], +[1,2343,24076], +"metalog", +[0,0,24082,23865,2537], +"metaschema", +"metautil", +"vm", +"metavm", +"metawatch", +[0,2899,1177,2759,15854,1951], +[3,15793,16], +"tarhia", +[2,24083,24084], +[1,2343,24087], +[0,24094,24096,24098,2537], +"isolation", +"enterprise", +"scalable", +"soa", +"stateful", +"cluster", +[0,3864], +"interactive", +[0,53,29553,5103,1894,91], +[2,24101,103], +[0,89,5128,35865,11000,8192,35867,35869,3857,3906,35868,35870,4450,9044,3811,5779,200,5131,12295,12296,5122,35871], +[1,2343,24100], +[0,0,24102,24103,2399], +[3,9312,10], +[0,48,53,81,87,90,11976,12310,5476,1195,1429,1177,2026,2151,2193,2205,2822,2832,3127,3188,2899,3286,35877,3400,35878,89,3824,2278,4255,2924,4677], +[0,4451,5284,176,5938,16504,8623,1936,6956,24456], +[1,2343,24105], +[0,0,24106,24107,2487], +[0,2276,28234], +[0,4452,57], +[1,2343,24109], +[0,0,24110,2514,2487], +[0,29169,4384], +[1,2343,24112], +[0,24115,24119,24123,2487], +"-vnode-flags", +[2,2711,24113], +[0,25671], +"inferno-", +[2,24116,594], +[2,24116,6579], +[0,5517,442,9089,603,4874,22839,1177,1895,1915,1938,1955,6526,2203,1894,4493,91,4523,1984], +[2,6073,591], +"ToString", +[2,8924,24121], +[0,9183,977,16358,35896,34877,34876,35897,35898], +[1,2343,24125], +[0,24126,24127,24131,2537], +[0,1512,1672,3188,35904], +[0,4856,6503,1429,1474,1787,1177,2899,3421,4474,4487,91], +[2,2712,591], +[2,2712,1592], +"humanize", +[0,3073,2942,4251,1676], +[1,2343,24133], +[0,24134,24141,24142,2523], +[0,15312,35917,17416], +"inherit", +"inheritance", +"klass", +"oop", +"oriented", +[2,3425,24139], +[0,13614,1159,9254,1855,1177,2708,3410,4103,4389], +[0,100,4647,6899,3053,7260,1697,1496], +[1,2343,24144], +[0,0,7923,24145,2523], +[0,1633,18718,3729,35109,32900,6553], +[1,2343,24147], +[0,20896,24148,2514,2523], +[0,7806,9227,6494,5087,1536,1594,2026,1192,3363,1894,4468,91,4763], +[1,2343,24150], +[0,24155,24158,24159,2537], +"@alcalzone/ansi-tokenize", +"auto-bind", +[2,17503,7201], +"yoga-layout", +[0,2713,4431,15019,35935,35938,3923], +"@types/ms", +[2,11313,14675], +[0,4389,4430,1537], +[0,1936,22115,57,353,3586,1623], +[3,6547,13], +"-exit", +[2,24160,24161], +"ack-utils", +[2,6516,24163], +"@vdemedes/prettier-config", +[2,15289,89], +[3,3816,9], +"tools-core", +[2,24167,24168], +[1,2343,24172], +"print", +[0,24173,24174,24175,2537], +[0,24156,5254,2738,3242,4135,22776], +[0,11976,4874,7677,1395,12690,3232,3446,7461,9245,91,1984], +[0,5995,1550,3230,3232,1932,2844,1747,18037,4799,91,2325,1552,1542,3151,9553,3766,35948], +[1,2343,24178], +[3,2718,12], +[0,0,24179,6273,2443], +[0,48,53,61,76,78,87,92,107,192,5467,9089,603,5366,5087,4870,7819,1009,1011,1193,1317,1593,1177,1895,1955,1978,2675,1192,1209,3400,1894,3957,4474,4508,4514,91,3348], +[1,2343,24185], +[2,24184,4013,17526], +"inno", +[3,2719,9], +[3,29444,16], +[0,24186,24187,24189,2523], +[0,35957,16781,2036,2856,3057,35958,4135,4507,4748], +[0,192,22559,19438,19181,442,11893,8755,554,10879,4864,5087,7637,7889,19446,35960,8778,4874,5254,4892,21626,1009,1011,1193,16307,1566,668,1177,1895,1938,1939,1942,1955,2020,2071,2151,2203,2675,1192,2822,2990,3144,1894,4039,4474,91,4523], +"run-async", +[0,1192,91,12938,89,5472], +[1,2343,24191], +[0,24192,24193,24194,2523], +[0,1437,1835,3170,4135,4227], +[0,8778,5254,1009,1011,1172,1175,1195,1257,1267,35968,1268,1874,1177,1895,1954,1955,2151,2070,2675,2766,2297,2881,2898,2904,2921,2925,2990,3123,3188,2899,1894,4039,91,2924,4677], +[0,4469,35972,2924,1194,91,4799], +[1,2343,25249], +[1,2343,24198], +[0,8998,1525,1759,3232,4494], +[0,24197,34525,24199,34352], +[0,5995,31012,35980,35981,3232,3230,1550,2844,1747,18037,4799,91,200,13326,35982,13325], +[1,2343,24201], +[0,24203,24205,24206,2487], +"fwk", +[0,35987,35989], +[3,2726,9], +[0,10817,4856,17577,6503,4874,1429,27445,1610,1687,2899,4039,4042,4474,91], +[0,91,6892,35993,4988,35995], +[1,2343,24208], +[0,24210,24212,24215,2523], +"reify", +[0,4757,1138,1687,1082,1084,35958,24806,36000,36001,32335,19441,36002,36005], +"exports", +[0,1166,3421,1170,89,36007,2022,1209,4039,4135,7094,3471,4508,842,36008,2188,3752,91,17577,4874,36009,4880,4870,20959,5254,15906,36011,28142,9725,28203,29139,603], +"packaging", +"unrun", +[0,91,202,7047,6639,4799,4643], +[1,2343,24217], +[0,24221,24222,24225,2523], +"remark-co", +"de-import", +[2,24218,24219], +[0,4870,24156,5254,36017,1209,3242,36018,36020,4135], +[0,11976,4874,7677,12690,3232,3446,7461,9245,91,1984], +"coffee.md", +"litcoffee", +[0,5995,3232,1932,1550,2844,1747,18037,4799,91,7163,2602,2013,6868,7147,3076,6865,13716,3073], +[2,24227,553], +[3,37196,18], +[1,2343,24243], +[3,1235,25], +"3-member-expression-literals", +[2,24229,24230], +[3,24231,27], +[2,4635,5796], +[2,24232,24233], +[2,1267,13278], +"-cal-buddhist-full", +[2,10739,24236], +"cldr-cal-", +"-full", +"chinese-full", +[2,24238,24240], +"cldr-cal-c", +[0,0,2667,24252,4139], +"optic-full", +[2,24242,24244], +"dangi-full", +[2,24238,24246], +"ethiopic-full", +[2,24238,24248], +"hebrew-full", +[2,24238,24250], +[0,91,4749,24753,24754], +"indian-full", +[2,24238,24253], +"cldr-cal-i", +"slamic-full", +[2,24255,24256], +[2,6795,24239], +[2,24238,24258], +[1,2343,24265], +"persian-full", +[2,24238,24261], +"roc-full", +[2,24238,24263], +[0,24270,24279,24281,2523], +"cldr-core", +"cldr-", +"dates-full", +[2,24267,24268], +[0,1209,4870], +"numbers-full", +[2,24267,24271], +[2,2004,19895], +"grunt-curl", +"grunt-zip", +[3,15911,15], +"emory", +[2,24276,24277], +[0,11976,4874,7677,3446,7461,9245,91,1984], +"ecma", +[0,5995,4799,91,36033,36034,5547,3624,16284,36036,36037,36039,36040,36041], +"ecma402", +"jsonc-simple-parser", +[1,2343,24285], +[0,24286,24288,2514,34352], +[0,2856,3183,4296], +[2,1940,23688], +[0,1192,2675,1177,4039,4468,4474,1894,91,5087,4874,2990,7892,36047,1942,1938,1895,1011,18285,1009], +"flag-icons", +[3,10697,15], +[2,24290,6082], +[3,2273,15], +[2,24292,23688], +"grunt-re", +[2,24294,2495], +[1,2343,24297], +[0,24300,24301,24303,2523], +[3,23932,13], +"country", +[0,8811,7681,2205,2777,3157,3505,3921], +[0,11436,4874,4880,1009,1011,1166,1597,1701,1177,1907,15290,2020,89,4025,4094,91], +"dial code", +[0,91,4481,4354,4532,553,36055,36059], +[1,2343,24305], +[0,0,24306,24307,2537], +[0,53,87,92,11893,19441,8811,4874,1009,1011,1193,1622,1177,1895,1192,1894,91], +[0,91,4481,8784,4354,16790,1973,4532,553], +[1,2343,24309], +[0,24310,24311,24312,2399], +[0,29891,1437,1457,15261,24283,3181,3188,36071,35237,4039,21512,91,9455], +[0,4874,668,1894,4384,4508], +[0,91,11540,24364,1999,10906,6147], +"updates", +[1,2343,24321], +[3,14428,13], +[2,24315,15525], +"inversi", +"on of control container", +[2,24317,24318], +"ioc", +[0,0,0,24322,2487], +[0,6869,7296,4643,1351,5284,4484,7047], +[1,2343,24330], +"empathic", +[3,547,8], +"li-framework", +[2,24325,24326], +"-prompts", +[2,24327,24328], +[0,24333,24350,24357,4139], +"discover", +[2,8655,24331], +[0,51,1405,1437,1525,1687,2070,2822,3181,3188,814,4135,4484,18272], +"utils-array", +[2,8655,24334], +[3,24335,13], +[2,24336,2150], +[2,24336,11996], +[2,24336,3729], +[2,24336,3101], +[3,24340,14], +"ubprocess", +[2,24341,24342], +[2,24336,7009], +"elementtree", +"leek", +"ssh-config", +"-proxy", +[2,4339,24348], +[0,692,19861,4856,17577,4865,7637,9129,10949,6503,4874,5251,20959,5254,1429,2675,34269,2899,3400,3421,1894,4039,4474,4487,4490,14970,91,31745], +[3,15592,14], +[2,24351,1633], +"pen", +"@types/open", +"s-name", +[2,15461,24355], +[0,200,91,9654], +"@types/split2", +[3,9240,12], +[2,24359,4575], +[1,2343,24365], +[2,2733,14606], +[2,2733,5130], +"hybrid", +[0,0,24366,24367,2523], +[0,1192,2675,1209,4039,4487,4468,3093,1894,36090,1527,91,5087,4874,36097,4492,36088,15600,4131,36098,36103,31194,4585,31195,36100,1652,36095], +[0,671,4487,36106,1894,1541,91], +[1,2343,24369], +[0,24371,24372,2514,2487], +"@types/svgo", +[0,18272], +[0,4865,4874,1512,2070,3400,3403,4487,36114,91], +"icon pack", +[3,11619,14], +[1,2343,24376], +[0,24377,24378,2514,2537], +[0,36119,1415,1457,1556,1676,668,28795,36120,3527,3616,4025,4042,4227,12444,26379,27921,4459], +[0,603,8850,842,5245,4874,5251,19839,2117,3561,26712,1894,814,4057,2278,4300,3709,4359,4072,36123,4493,91,1984,9252], +"@ioredis/commands", +[1,2343,24394], +"-key-slot", +[2,24093,24381], +"denque", +[3,19541,11], +"guments", +[2,24384,24385], +"-error", +"-errors", +"redis-errors", +"redis-", +[2,24390,57], +"as-callback", +[2,18124,24392], +[0,24404,0,24405,2537], +"@ioredis/", +[2,8626,16609], +[2,24395,24396], +[3,19583,22], +[3,10408,16], +[2,24399,10446], +[3,8826,10], +"is-errors", +[2,24401,24402], +[0,668,2191], +[0,200,7047,202,17526,10906,1999,91,36130], +"sentinel", +[1,2343,24409], +"pipelining", +[0,24410,24411,24412,2487], +[0,36135], +[0,811,816,6373,1389,4037,4042,4255,36140], +[0,15253,1936,1783], +[1,2343,24414], +[0,0,24415,24420,2399], +[0,2228,2899,29691,2240,4019,36157,36156,2300,36149,2258,36160,4232,2247,36163,2273,2281,36165,36167,36153], +"irc-colors", +"node-i", +"cu-charset-detector", +[2,24417,24418], +[0,2845,2844,1155,4496], +[3,1104,10], +[1,2343,24423], +[0,0,24424,24425,2523], +[0,1389,1177,2080,36176,4389,36178,4535], +[0,1616,12588,36181,36182,7789,3428,6803,36183,36185,36186,36187,36189], +[1,2343,24427], +[0,24428,24429,24430,2523], +[0,2151,2859,36194,21224], +[0,3400,3524,4535], +[0,3113,36197,57,11806,22875,36198,3656], +[1,2343,24432], +[0,24433,24434,24435,34352], +[0,1362,3171,705], +[0,1149,1512,1525,2899,4037,4193], +[0,4500,5592,4030,3101,22115,3424], +[1,2343,24438], +"is-extglob", +[0,24439,24442,24443,2443], +[0,705,1696], +"extglob", +"globstar", +[0,3297,2899,1177], +[0,4500,22115,3424], +[1,2343,24445], +[0,24447,0,2514,2537], +[2,14503,7204], +[0,3183,36215,1437], +[1,2343,24452], +"globally", +[3,9509,9], +"locally", +[0,24453,24454,24455,34352], +[0,31081], +[0,13789,1011,1177,28753,1680,2024,3401,4481,91,4523,1906], +[0,91,4799,553,6435,614,6731,3061,1698,1781,7265], +"vanilla", +[1,2343,24458], +[0,24459,16075,24460,2537], +[0,1562,36226,3173], +[0,1563,998,36228], +[1,2343,24464], +"is-object", +"kind", +[0,24465,24466,24467,2537], +[0,24648,6327,3105,3181,4745], +[0,442,8144,7639,6503,4874,1414,36007,668,1177,2899,3758,4135,4494,91,4523], +[0,91,1745,1179], +[1,2343,24471], +" name", +[2,24374,24469], +[0,24472,24473,24474,2443], +[0,36241], +[0,4874,4508,91], +[0,36244,36245,29,36246,36247,36248,91,1745], +[1,2343,24476], +[0,0,23733,24477,2487], +[0,1666,6901,33777,91,1745,36248,4508], +[1,2343,24479], +[0,0,0,24480,2537], +[0,5592,1745,1783,4508,91,36245], +[1,2343,24482], +[0,24483,24484,24485,2537], +[0,3127,91], +[0,8147,6503,4874,6520,1596,2759,2899,3202,4449], +[0,6869,1745,36263,5284], +"is-ins", +"ide-container", +[2,24486,24487], +[1,2343,24490], +[0,24492,24495,24496,2537], +"esmock", +[0,1525,4734,3275,15221,36270,1149,1512,3220,3188,7074,36272], +"wsl", +"subsystem", +[0,1429], +[0,36275,1783,36276,36278,26916,20672,1283,15253,1179], +[1,2343,24498], +[0,5914,24499,2514,2523], +[0,549,4856,9417,6503,36284,4874,1429,1431,1596,2899,36285,3232,36289,1894,36290,4232,4474,4490,31194], +[1,2343,24501], +[0,24502,24503,2514,2399], +[0,2070,3348,1112,1673,1676,4484,4747,1398,1680,1759,16544,1130,24697,3951,36295], +[0,1414,3519,1429,2323,2675,2742,2899,3243,3259,1552,4193,1177,3260,4039,7800,2203,3230,4246,4474,25633,1894,36308,442,2507,20085,4196,91,4856,4874,2494,2990,5245,6503,6513,4892,2496,36307,25629,2510,2529,25634,27585,19441,1431,6512,8536,18710,4523,36303,4232,28290,1942,28033,36305,9417,13418], +"kindof", +[1,2343,24506], +[0,0,24507,24508,2523], +[0,1414,3242,1429,1687,2070,2931,2899,4484,4707,36007,1177,20380,668,2203,1457,3183,24156,442,3527,3541,91,4856,17577,6503,26584,2858,692,7892,2075,36315,36316,4523,36318,4232,1964,36323,1012,13418,27909,12123,5551,36326,36331], +[0,6869,7296,4643,1351,5284], +[2,13283,2899], +[1,2343,24513], +"spaces-cli", +[2,671,24511], +[0,24514,7590,24515,2537], +[0,1012,1011,1009,12145], +[0,6892,5286,5284,91,57,5341,1177,6741,6939], +[1,2343,24517], +[0,24518,24522,24526,2399], +[0,36342,18420], +"code c", +[2,24519,2885], +"JS code coverage", +[0,10949,6503,4874,36345,1567,36348,3188,2899,3696,4487,91,4526], +"@metcoder95/https-pem", +"verage", +"JS coverage", +[0,6869], +[1,2343,24528], +[0,24529,24530,24531,2487], +[0,36356,36358,1759,16837,695,3025,3561,3616,16840,3638,16841,25162,2278,4228,4480,4333], +[0,36361,5087,19799,7889,4874,36362,36364,19802,1009,1011,1367,1177,1895,2675,1192,33412,2990,36366,3640,3672,1894,36367,4468,91], +[0,1623,4329,2278,695,4333,5260,1932,3561,91], +[1,2343,24533], +[0,24534,24535,24538,4139], +[0,23433,1362,1437,1486,1513,35446,25879,32086,3077,3183,36374,36375,4562,4720,1695], +[0,1705,3297,4039,4474,4487,36377,91], +"js-calendar", +"v-click-outside-x", +[0,4532,91,23076,6432,3383,10057,5490], +[2,1165,2091], +"5-property-mutators", +[2,24229,24540], +[2,1536,4408], +"vue-h", +"tml-loader", +[2,24543,24544], +[1,2343,24547], +[0,24548,24549,24550,4139], +[0,1525,4227], +[0,1082,2899,4135], +[0,2280,4533,4535,3178,2632,5284,5286,1925,5194,6598,7075,6778,7056,7192,1149,7003], +[1,2343,24552], +[0,0,24553,24554,2443], +[0,1082,4135], +[0,200,15215,23634,24280,5286,3595,1925,5284,676,36390,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,23637,2280], +[1,2343,24556], +[0,24557,24558,24565,34352], +[0,9448,2102,2755,4121,4143,4227,4535,4695,24777], +[0,48,53,87,192,5467,19401,16405,1193,19403,1610,1700,1701,1177,1895,1938,2675,1192,2794,2990,3150,3400,1894,4257,4072,2924], +"character-", +[2,24559,57], +"inople", +[2,14180,24561], +[3,10755,13], +[2,8535,591], +[0,2280,4535,4533,2924,1464], +"void-elements", +[1,2343,24572], +[3,13889,13], +"ddleware", +[2,24568,24569], +"code-mirror", +[0,24573,24578,24579,2523], +[0,36402], +"github-basic", +"highlight-", +[2,24575,1505], +"inconsolata", +[0,2899,1177,1362,2759,1954,1938,1958,1903,1970], +[0,3778,1179,7818,6953], +"-code-mirror", +[2,2437,24580], +"jade-", +"highlighter", +[2,24582,24583], +[3,10755,14], +"cdata", +[2,24585,24586], +[3,24587,15], +[1,2343,24597], +"offee-script", +[2,24588,24590], +[2,24585,695], +[2,24585,3127], +[2,24585,4333], +"verbatim", +[2,24585,24595], +[0,24603,0,24604,2537], +"less-file", +"lsr", +[2,23151,705], +"stop", +"twbs", +[0,97,4880,4883,36409,36411,36413,36415,36416,36420,36422,36423,1015,36424,36425,36427,36429,36430,36432,36433,36435,36437,36439,36442,36444,36445,36447,36448,36451,36453,36454,1018,1021,36455,36457,36458,36459,36461,36463,36466,36467,12265,1023,36468,36471,36473,36476,36477,36478,36480,36483,36485,36487,36489,36490,36491,36492,36493,36495,36497,36499,36502,36503,36504,36506,36509], +[0,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +[1,2343,24606], +[0,24608,24609,8039,2399], +"filelist", +[0,2070,2685,1209,4135,4727], +[0,2272,3105,2899,3381,4170], +"rake", +[1,2343,24612], +[0,0,24613,2514,2399], +[0,8862,811,816,10817,4874,1317,1894,4042,4484,91,1984], +[1,2343,24615], +[0,0,24616,24618,2523], +[0,11976,107,34715,1437,12607,668,2205,2553,3105,36526,3400,36528,3714,7917,1984], +"video-worker", +[0,1936,1283,2574], +[3,1198,14], +"nnotate-pure-calls", +[2,24619,24620], +[3,19449,20], +"nk", +[2,24622,24623], +[2,16819,2143], +"-nk", +[2,7628,24626], +[1,2343,24629], +[0,24630,24632,2514,2523], +[0,8862,811,8850,816,6373,10895,36534,1556,16230,668,28795,36538,2807,3090,36536,3189,3510,15450,3714,4042,4057,15451,27921,36537], +"parallax", +[0,5757,4874,7677,19336,1446,1177,1905,1894,91,1984], +"youtube", +"vimeo", +[1,2343,24636], +[0,0,24637,24638,2537], +[0,3421,2070,1734,2675,2297,2907,1177,4042,4072,1597,1596,2908,17232,5561,36544,1938,2915], +[0,614,6564,36,5576,1388], +[1,2343,24640], +[0,24641,24642,24643,2537], +[0,4243,23462], +[0,1389,36552,1177,2759,2899,3202,4068,31136,4545], +[0,4545,1871], +[1,2343,24646], +"css-url-embed", +[0,0,24647,24649,2523], +[0,20870,36559,24523,826,4874,1079,28400,1414,1610,36560,668,1177,2064,2675,1192,31808,29197,3313,2658,4481,91,4729], +"@gerrit0/mini-shiki", +[0,1612,27,2671,1862,705,7085,7289,4731,7102], +[1,2343,24654], +[2,2767,12608], +[2,2767,8751], +"walkdir", +[0,24655,24656,24657,2537], +[0,9315,31265,23289,2051,2745,36568,12449], +[0,36571,12396,9363,4874,1414,1894,3985,3998,4481,4505,91,1906], +[0,6892,7234,1563,25154,1644,3729,3958,3984,36573,4141,1646,5341,353,1633,4549], +[1,2343,24659], +[0,24660,8134,24661,2537], +[0,36578], +[0,17023,3778,6988,16114,8623,36580,4552,5401,11512], +[1,2343,24663], +[0,24664,24667,24669,2523], +[0,9315,18072,12447], +"cssfontparser", +"moo-color", +[0,9363,4874,1414,3137,27008,27010,1894,3985,3998,4481,4505,91,1906], +[2,1199,15525], +[0,23266,36587,614,6435,3984,36573,3958,26564,2587,36588,36589,3273,1351,1783,1936,6523,1633,6892,202,12414,4647], +[1,2343,24671], +[0,0,16529,24672,2523], +[0,35670,27280,18132,4558,3403,4571,7204,4569,4166,16159], +[1,2343,24674], +[0,24675,0,24676,4139], +[0,17180,2155,36602,36604,20508,3923], +[0,2056,4560,15008,36606,12666,3101,7682], +[1,2343,24678], +[0,24679,24680,24681,2487], +[0,36612,1371,1437,36611,4135,20044,1543,16184,2960,2744], +[0,1906,1166,24491,4294,1470,36615], +[0,3378,3076,29096,22005,3329,4354,16790,200,1237,3383,15525], +[1,2343,24683], +[0,0,0,24684,2537], +[0,12831,1002,36621,36622,36623,36626,36628,36630,36632,36637,36639,36641,36642,36643,36646,36649,36650,36653], +[1,2343,24686], +[0,24687,24691,24692,2399], +[0,3763,3757], +"@jest/e", +"nvironment", +[2,24688,24689], +[0,1158,3421,4770,1082,2899,1177,13614], +[0,7119,1002,25658], +"fake-timers", +[2,552,24693], +[1,2343,24696], +[0,0,24698,24699,2523], +"sql-highlight", +[0,1566,2899,4170], +[0,1002,4565], +[1,2343,24701], +[0,24702,24703,13533,2399], +[0,3008,3173,4121], +[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,2092,2675,1192,2990,3144,21016,3400,1894,4257,2924], +[1,2343,24705], +[0,24706,24707,24708,2523], +[0,15560,23783], +[0,1148,1389,1414,2899,3697,20010,20012,4535], +[0,7134,57,12831,1002,1644,3766,1871,3767,1646], +[1,2343,24710], +[0,24711,24714,24716,34352], +[0,2139,36681,3173,3763,4507,4548,36680], +"-escapes", +[2,11948,24712], +[0,5517,30494,36688,20224,36694,36687,7746,4874,36685,11305,36691,7752,29891,23247,7677,1410,1610,2685,33479,30889,2658,7798,28531,4393,4483,36684,91,1984], +"matchers", +[0,4568,27,36696,7085,7289,705,2671,4548,1612], +"extended", +[1,2343,24720], +[2,38074,1177], +[0,24721,24722,24735,2537], +[0,25493], +[0,3505], +"@pmmmwh/react-refresh-webpack-plugin", +"cape-html", +[2,5600,24724], +"ump.js", +[2,5086,24726], +"ndomcolor", +[2,12178,24728], +"eslint-w", +[2,2546,4406], +[2,24730,24731], +"jump.js", +"randomcolor", +[0,4569,4571,35668,25493,4014,7204,6857,3403,1263,6437,6639,6436,36706], +[1,2343,24740], +"recharts", +[2,30495,674], +"web-vitals", +[0,24741,24742,24743,2487], +[0,3084,4449], +[0,1148,2899,3697,705,4135,36712], +[0,4575,1388,36715,888,1644,57,36716,36717,36718,36719,4569,36720,4576,15525], +[1,2343,24745], +[0,0,24747,24748,2537], +"libxmljs2", +[0,1596,2759,14529,3774], +[0,8426,9254,3656,4577], +[1,2343,24750], +[0,24751,24752,24755,2523], +[0,2713,17395,25700,36732,17416], +[0,1090,1593,36736,3435,3438,4092,4100,4389], +"plugnplay", +"pnp", +[0,614], +[1,2343,24757], +[0,0,9530,24755,4139], +[1,2343,24760], +[2,814,13987], +[0,0,24761,24763,2537], +[0,68,192,5467,442,6375,1525,1177,1895,1955,2203,2675,1192,2990,29197,3400,1894,23901,27302,4257,91,4523], +"@vercel/h3", +[0,3348,6926,6668,36760], +[1,2343,24765], +[0,24766,24767,24768,2399], +[0,20573,1687,2929,11481], +[0,36767,1999,29283,34078], +[0,1145,36769,8791,8745,1973], +[1,2343,24770], +[0,0,24771,24772,2523], +[0,4384,2272], +[0,1002,7020,4354,16790,13017], +[1,2343,24774], +[0,24775,24776,24784,2523], +[0,17058,36781,7076,25814], +[0,17584,1429,15990,1527,1652,2675,2759,3188,2899,21477,4039,4131,4193], +"worker-farm", +"leak-detector", +[2,2769,24778], +[3,20371,12], +[2,24780,14922], +"@aneuhold/be-ts-lib", +"@vercel/koa", +[0,36785,1528,6458,3358,16094,13729], +"@vercel/hono", +"@jimp/diff", +"@jimp/", +[2,24787,9711], +"@jimp/types", +[1,2343,24803], +"@jimp/t", +"est-utils", +[2,24791,24792], +"@adonisjs/ace", +[2,12327,10809], +[3,475,10], +[2,24801,8915], +"manipulation", +[2,12327,24798], +"resize", +[3,24794,11], +[2,24796,24815], +[0,0,24804,24814,4139], +[0,9516,9515], +[3,1603,9], +[2,24805,3751], +[2,10880,1283], +[3,5617,14], +"eter", +"-decorator", +[2,24809,24810], +[2,11958,24811], +[2,24808,24812], +[0,3378,3383,1460,7020], +"bodyparser", +[2,24825,686], +[1,2343,24820], +[2,29401,166], +[2,13055,25721], +[0,0,24824,24834,2537], +" editor", +[2,6105,24821], +"wysiwyg ", +[0,48,53,87,94,1178,1198,1177,1881,1938,2899,3400,3421,4039,4042,4045,28038,4535], +[3,475,12], +"html editor", +[2,24823,24826], +[2,24796,7141], +"rich editor", +[2,6106,24821], +"editable", +[2,1563,24831], +"vanillajs", +[0,1155,7020,2649,20215,2574,36796,36798,1145], +[1,2343,24837], +"@adonisjs/env", +[0,24838,24839,24840,2443], +[0,36805,36809,36806], +[0,4874,11016,13061,16480,36812,11018,1639,36814,2832,91,1983,1984,36815,188,4639,36820,36821,36816,36817], +[0,181,188,8588,5131,4967,4627,4963], +[2,24846,24847], +"wysisyg", +"rte", +[1,2343,24845], +[0,0,24851,24865,2523], +[3,24828,11], +"vents", +"nanotimer", +"temporal", +[3,1387,9], +[0,2899,1177,2759,1317,4342,1311,1954,1938,1958,1903,1948,1970], +"erialport", +[2,24850,24852], +"firmata", +[2,24796,24858], +"beautifier", +[2,2294,24856], +"fold", +"0A02", +"0A21", +"16x2 LCD", +"20x4 LCD", +"2D120X", +"2Y0A02", +[0,27,10376,4590], +[1,2343,24870], +"2Y0A21", +"74HC595", +"ADXL335", +[0,24901,24903,2514,2537], +[2,24796,3428], +"ADXL345", +"ALS-PT19", +"ALSPT19", +"ANALOG", +"arduino", +"Ardumoto", +"AT42QT1070", +"BLINKM", +"BMP180", +"Continuous Rotation", +"DEFAULT", +"Diffused LED", +"DS18B20", +"Edison Arduino Block", +"Edison ", +"GPIO Block", +[2,24886,24887], +"I2C Block", +[2,24886,24889], +"PWM Block", +[2,24886,24891], +"edison", +"ESPLORA", +"EV3", +"galileo-io", +"galileo", +"GP2D120XJ00F", +"GP2Y0A02YK0F", +[2,24925,24926], +[0,4593], +"GP2Y0A21YK", +[0,4384,2276], +"GP2Y0A41SK0F", +"GY-521", +"GY521", +"HD44780", +"High Torque", +"Hitec HS-35HD", +"Hitec HS-", +[1,2343,24939], +"Hitec HS-422", +[3,24912,11], +"5BB", +[2,24913,24914], +"625MG", +[2,24910,24916], +"Hitec HS-6", +"46WP", +[2,24918,24919], +"755HB", +[2,24910,24921], +"805BB", +[2,24910,24923], +[3,24871,11], +"ealth", +"Hitec HS-85MG", +"HMC5883L", +"HMC6352", +"Hobby Motor", +"HRLV-MaxSonar-EZ0", +"HT16K33", +"HTU21D", +"i2c", +"Infrared Proximity Sensor", +"Infrared ", +"Sensor", +[2,24936,24937], +[0,24941,24957,2514,2487], +"intel edison", +[0,12105,668,1457,2139,36838,24762,36840,24783,30162,24785,36841,36842,36843,24818,28111,29471,36845,24738,28441,36848,30929,36850,36852,31275,36855,36859], +"intel galileo", +"ISL29125", +"JHD1313M1", +"Joystick", +"LCD1602", +"LCD2004", +"LCM1602", +"LED", +"LIDAR-Lite v2", +"Ludus Protoshield Wireless", +[3,24951,17], +"LV-MaxSonar-EZ0", +[3,24953,14], +[2,24954,1278], +"MCP23008", +[0,3242,1091,1138,1758,1999,2714,3467,3445,1983,1413,1437,1676,2020,3144,2658,17913,25671,4707,1438,1759,2022,2754,4039,4135,4238,4391,1984,1458,1503,2026,2105,3203,4474,1668,2151,2182,3761,3784,33145,842,24156,11305,36861,26453,29133,3181,3547,4459,29105,31142,1109,33200,1483,2794,3173,3310,4294,91,5087,4874,1154,1869,36863,20921,36864,36867,5364,5245,27066,26584,1107,1151,36868,36869,36871,5254,24358,35563,13834,5071,31008,36872,6541,36873,36874,25892,36875,8997,4864,28137,2069,36877,3386,16831,36878,34118,36879,9129,12461,27959,36880,7746,5542,30493,33761,36882,31071,23843,24725,36885,11907,36887,36889,15887,36890,36892,5328,36895,36897,36899,29125,36901,36906,36909,36911,36915,36917,36918,36920,36922], +[2,24925,9257], +"MCP23017", +"MCP9808", +"Metal Gear", +"MJKDZ", +"MMA7361", +[2,24796,2942], +[1,2343,24971], +"MMA7660", +"MMA8462Q", +"MPL115A2", +"MPL3115A2", +"MPR121", +[0,24982,0,24990,2537], +"MPR121QR2", +"MPU-6050", +"MPU6050", +"MUXSHIELD2", +"NXT", +"OA41SK", +"PARALLEL", +"PCA9685", +"pcduino", +"PCF8574", +[0,36927,1147,34631], +"PCF8574A", +[2,24796,32276], +"PCF8574AT", +"PCF8574T", +"@paralleldrive/cuid2", +"PCF8575", +"@poppinss/colors", +[0,1851,2656,15204,30960,31482,5317], +"PCF8591", +"photon", +"PIR Motion Sensor", +"QTOUCH", +"raspberry pi", +"raspberry", +"raspberrypi", +[2,24999,25005], +"@poppinss/", +"raspi-io", +"RedBoard", +"RGB LED", +"robotics", +"rpi", +"dumper", +"Servo", +"Shift Register 8-Bit SN74HC595", +[3,25007,14], +"SI7020", +"spark", +[2,24999,25017], +"spark core", +[1,2343,25035], +"spark-io", +"SparkFun Essential Sensor Kit", +"SparkFun ", +"macroable", +"Sensor Kit", +[2,25016,25018], +"Speed controller", +"Temperature", +"tessel 2", +"Thumb Joystick", +"TINKERKIT", +"TMP36", +"TSL2561", +"Ultrasonic Range Finder", +"usb", +"VKEY", +"Weather Shield Arduino", +[3,25030,15], +"Photon", +[2,25031,25032], +[2,24999,594], +[0,0,25036,2514,2537], +[0,2899,2759,4342], +[1,2343,25041], +"@hapi/formula", +"@hapi/pinpoint", +"@hapi/tlds", +[0,0,25043,25044,2537], +[2,6473,3020], +[0,53,87,192,5467,5583,1208,1429,1443,1503,1597,16656,1637,1701,1177,1881,1938,2675,2297,2878,2881,6385,2900,2904,2910,2990,2899,3400,3561,3566,16658,3613,3672,16578,3758,4042,4320,4323,4328,4535], +[0,158,11328,4596,36941,1936,1623,5284,6400,5122], +[1,2343,25046], +[0,25048,25050,25051,2523], +"youch", +[0,36951,1496,4002,36950], +"youch-terminal", +[0,3421,2899,1177,2022,35299,3923,1889,1954], +[0,4607,17462,2090,7204,4262,3403], +[1,2343,25056], +[2,24801,25055], +"recoil", +"ssembler", +[0,25057,25061,25062,2537], +[0,1329,4431], +[2,25059,25082], +"@adonis", +"gzip-js", +[0,4389,4603], +[0,4597,17461,6270,1398,3101], +"commitplease", +[1,2343,25065], +[0,25066,25068,25078,2443], +[0,36965,21539,2215,2685,36966,36967,3369,36968,36971,35299,36972,36975,4597,36976], +"grunt-git", +[0,1177,1889,2022,2899,3421,3923,4039,4193], +"-authors", +[2,25067,25069], +"-webkit", +[2,3541,25071], +"mpare-size", +[2,21927,25073], +[3,10727,15], +[2,25075,3766], +"karma-j", +[0,2323,36981,4597,2090,6771,2150,7046], +[2,26505,6579], +[1,2343,25081], +[0,25084,25087,25093,34352], +[3,835,16,7], +[2,25085,25086], +[0,4597,4431], +[3,475,8], +[3,24165,17,8], +[0,2494,4389,4600], +"grunt-html", +"owercopy", +[2,2237,25089], +"-local", +[2,14336,25091], +[0,4597,2323,17461,24456,3101,1871,2585,128], +"prototyping", +[1,2343,25096], +[0,9652,0,25097,2537], +[0,4597,4070,22850,2323], +[2,24796,2190], +"@japa/assert", +[1,2343,25101], +[0,25102,25105,25107,2523], +[0,36996,1851,36997,2202,24462,19094,36998,37000], +"@japa/expect-type", +"@japa/file-system", +[0,1389,2759,21526,3459,37002,30164,4387,4389,4770], +"config-chain", +[0,4607,965,23361,37004,1687,7163,1388], +"@japa/runner", +"code-quality", +"@japa/snapshot", +[1,2343,25112], +[0,25113,25116,25117,2487], +[0,20378,4042,668,3561,3530,27921], +[2,25115,15244], +[3,7895,14], +[0,4729,1415,27438,1594,984,3189,30023,3445,2278,4200,3510,1759,11480,3266,3493,4072,1544,28119,1457,28865,4955,37012,34928,3527,1615,1869,31308,16860,3090,58,9743,1763,2007,21688,37013,3613,37014,37015,24759,30787,37017,24725,1573,10895,3616,29444,8862,31292,28465,4060,811,28572,18584,5180,28575,16808], +[0,4967,5130,11498,5331,37019,1983], +[2,25119,25121], +[3,10844,11], +[1,2343,25123], +"-console", +"argon2", +[0,25124,25132,25133,2537], +[0,25375,2071,2151,37024,26479], +"knifecycle", +"yerror", +"edge.js", +"@mer", +"maid-js/mermaid-cli", +[2,25128,25129], +"mermaid", +[0,6494,4864,4874,2026,4493,91,1983], +[0,1983,5592,37028,37029,37030,37032,2026,37034,36,37036,7433,37031,37038,1932,8172,4083,5995,37039,37040], +[1,2343,25136], +"architecture", +[0,25139,25149,25150,2537], +[2,25138,25151], +"ts-node-", +[0,188,1983,9348,8114,37052,7797,36805,10984,6371,37047,37046,24097,37049,7639,11016,37051,9312,25447], +"-to-glob", +[2,16774,25140], +"@jscpd/html-reporter", +"@jscpd/", +[2,25143,139], +"-sarif-reporter", +[2,2824,25145], +"@jscpd/core", +[2,25143,207], +[0,3467,4200,1676,2020,3478,23802,3266,4039,4042,4135,1984,668,3537,3742,7799,19571,13151,28519,1457,2151,2182,3183,1894,3757,3084,3170,3527,27921,91,4874,1615,2226,2990,3105,5245,8646,30795,8146,7812,3509,4864,7892,3067,37067,9245,8778,5946,3114,4057,37017,21122,3107,8850,34971,37061,37065,8862,37074,3112,15277,37062,6373,22823,811,3668,37059,7641,37070,37056,1567,816,37058,37069,37071], +[0,1983,188,4614], +"maintained", +[1,2343,25153], +[0,25166,25171,25173,4139], +"cst", +"adonisjs", +"jscs-jsdoc", +"jscs-", +"wikimedia", +[2,10832,25158], +[2,25157,25159], +"rved-words", +[2,4020,25161], +"to-double-quotes", +"to-single-quotes", +"vow-fs", +[0,30023,1983,3510,15452,26379,3530,4441,27921,37080,2024,37082,3090,37084,36874,26380,37085,37014,37087,37092,37093], +"7.0.0", +[2,5857,25167], +[2,8649,22785], +"unit-coverage", +[0,4729,1415,3171,37095,2832,26385,3742,24324,2559,37096,1084,4874,13204,1006,37013,7812,37097,20374,37100,13471,826,8806,5180,6515,8809], +"style guide", +[0,1983,1984,1973,1192], +[1,2343,25175], +[0,25176,25180,25182,2523], +[0,1437,1209,2720,3183,4726,2708,3077,4294,1257,37108], +"@jsdoc/salty", +"catharsis", +[2,20398,57], +[0,1906,2323,1172,2899,3220,4170,37110,705,1362,1175,2338,2384,37115,37117,2357,37113,1267], +"requizzle", +[0,5592,200,32276,4166,8786,5130,1896,13527,1523,1525,35539,3741,2720], +[2,25184,25186], +"@aneuhold/", +[1,2343,25187], +"core-ts-api-lib", +[0,25196,0,25197,2537], +"current", +[2,1469,4479], +[2,25188,25189], +"object-to-", +"spawn-args", +[2,25191,25192], +[2,25195,1095], +[3,25183,18], +[0,1687,37123,2070], +[0,5472,4386,1973,37125], +[1,2343,25199], +[0,25201,25206,25207,2487], +"ool", +[0,4449,2070,3171,3917,22990,1437,2975,4753,37130,4135,4734,1448,4566,1525,3181,3105,37131,2613,37132,36323], +"master", +"config-master", +[2,25184,25205], +"main-scripts", +[0,2675,2899,4474,1894,6520,91,4865,27098,4874,15743,37139,3400,6503,20290,3720,5254,28189,37135,192,37137,9129,4131,7639,4232,12458,5467], +[0,29641,4617,7188], +[1,2343,25210], +"jsr", +[0,0,2667,2514,2537], +"data-urls", +"decimal.js", +"saxes", +[1,2343,25218], +"symbol-tree", +"w3c-xmlserializer", +"whatwg-url", +[0,25222,25223,2514,2537], +[2,25261,25262], +"sugar-free", +[2,3192,25220], +[0,1104,1496,2012,2061,2070,2685,2741,4227,91,4597,4734,4747], +[0,22909,37149,22821,4865,37152,9129,6503,4874,28198,22900,18438,4891,28189,4892,1009,1011,1177,2899,4039], +"webidl2js", +[1,2343,25226], +[0,0,25227,2514,34352], +[0,2899,3188,2924,91,4874,4677,6503,37157,1584,603], +[2,25239,25240], +[1,2343,25234], +"browser-re", +[2,25230,5460], +"cssom", +"nwmatcher", +[0,25236,0,25241,2487], +"selenium-s", +[0,36805,37163,23423,17494,5337], +"tandalone", +[2,25235,25237], +[3,8647,12], +"li", +[0,188], +[1,2343,25246], +"13.0.0", +[2,5857,25243], +"@trapezedev/project", +[0,0,25247,25248,2523], +[0,53,61,71,4851,87,4856,6503,4874,1011,1191,1195,18571,1429,1628,1177,37170,2899,3951,4039,4042,4045,4069,4421,4469,91,4533,188,4634,4645,19469,4646,2924,4677], +[0,188,1227,1172,91], +[0,25260,25258,2514,34352], +[2,5051,25257], +"results-interpreter", +"5.2.0", +[2,5857,25252], +"unicode-1", +"1.0.0", +[2,25254,25255], +"lice-ansi", +[0,53,68,5611,37178,15273,19181,442,5245,1006,4874,5254,1009,1011,7677,23203,1177,19492,1945,1953,19623,1955,1982,17310,1894,4474,1531,91,1983,1984], +"splash screen", +[0,1676,1994,1996,2000,19186,4135], +[3,225,10], +"5/blanditiis-numquam-expedita-neque", +[1,2343,25301], +"stylish", +[1,2343,25267], +[2,25303,25304], +[0,0,25268,25270,2523], +[0,1397,1192,188], +"deeks", +[0,188,6609,2999], +[1,2343,25273], +"doc-path", +[0,25274,25275,25278,2487], +[0,37192,37049,37190], +[0,24226], +"json2csv", +"csv2json", +[0,2679,23932,37202,1932,188,6284], +"csv-2-json", +[3,25219,12], +[1,2343,25282], +[0,25283,25286,2514,2537], +[0,1437,2570,33215], +[2,25280,25285,25288], +[3,780,9], +[0,53,87,37211,1006,32109,5087,13204,37213,37214,1195,37215,1567,1628,2092,2651,1192,2832,2990,37217,3144,3177,16581,11801,3618,1894,3754,37220,4227,4307,4333,4334,4337,4468,4469,91,4027,188,4633,2924,4677,4681,4689,19235], +[1,2343,25289], +"aut-officiis-quae", +[0,0,25290,25291,2537], +[0,5087,4874,1192,3951,4042,4468,91,188,4629], +[0,188,91,4636], +"milliparsec", +[1,2343,25295], +"sort-on", +[0,25299,25300,2514,2523], +"@typ", +"icode/eslint-config", +[2,25296,25297], +[0,5216,28126,37049,30206,1457,2856,37096,3090,3189,30230,3510,3530,15451,27921,29161,30959,4745], +[0,104,31940,8648,811,816,6373,10615,33179,37232,20374,29891,11016,17494,34157,5337,11018,25092,13393,1549,1759,37235,17850,2559,3294,37236,32977,4039,4042,4076,1531,4493,1983,188], +[0,25305,25306,2514,34352], +[1,2343,25412], +[3,25284,13], +"oloremque-voluptas-facere-nemo", +[0,2570,3008], +[0,1175,1193,1240,1567,1192], +[2,25280,25391], +[1,2343,25309], +[0,25310,0,25311,2537], +[0,37247,2591], +[0,188,4643], +"0.0.0", +[2,25254,25312], +[1,2343,25315], +[0,25316,25317,2514,4139], +[0,37049], +[0,188,1192,1437,2020,21665,1177,4042,4135,2026,2924,1836,2151,1610,3758,4614,1193,1628,91,4634,53,4874,1195,37253,4640,87,17494,3957,15134,4073,4261,6373,37170,4679,4684,811,1567,816], +[1,2343,25319], +[0,25320,0,25321,2523], +[0,37258], +[0,614,888,37260,2150,4647,37261], +[1,2343,25323], +[0,25324,25325,2514,2537], +[0,9129,18704,20960,3181], +[0,5087,4874,2070,1192,3144,4039,4468,91], +[1,2343,25327], +[0,16409,25329,25330,2537], +[2,2842,24077], +[0,192,5467,1389,1527,1652,2675,1192,4535], +[0,4649,3497,89,2731], +[1,2343,25332], +[0,25334,0,25335,4139], +"meriyah", +[0,37277,3183], +[0,614,6435,2150,1586], +"jsonparse", +[1,2343,25338], +[0,25339,25340,25341,2487], +[0,15642,1389,1457,15016,37284,4431,1695], +[0,1377,3188,4237,4389,4535,37286], +[0,1389,25429,2282,6374,6147,1388], +[1,2343,25348], +"jws", +"lodash.i", +"ncludes", +[2,25344,25345], +[2,3045,19366], +[0,25354,12529,25356,2537], +"integer", +[2,3045,25349], +"lodash.isn", +"umber", +[2,25351,25352], +[0,33304,26786,1149,37294,33313,37297,33328,33329,37298,37300], +"lodash.once", +[0,33359,3469,3259,14873,1552,3230,37303,4651,4104,33365], +[1,2343,25358], +[0,25359,25360,25367,4139], +[0,1137,1149,1209,3188,3760,705,37308], +[0,37313,1429,1431,1512,18192,2026,2061,2323,37315,2384,2419,2463,2590,2659,34317,2759,2899,37316,3297,37317,4089,37320,37324,37325,4547,3348,4747], +[2,25362,25364], +[3,32971,13], +"@jspm/generator", +"phases", +"fu/eslint-config", +[2,13179,25365], +[0,5472,13428,11132,13841,28522], +[1,2343,25369], +[0,25371,25373,25374,2537], +"webdav", +[0,37331,37332,37334,37335,37336,37337,37339,37342,37344,37345,37347,37350,37352,37355,37358,37361,37363], +"states", +[0,37365,1192,1177,37366,9422,4468,1894,1317,91,5087,2787,5366,37368,1938,19956,1895,37371,1011,37374,1009], +[0,37376,17626,8172], +"dotenv-local", +[2,28322,364], +"lie", +[1,2343,25381], +"jszip-utils", +[3,21510,13], +[0,25384,11736,25385,4139], +"versionify", +[2,25380,25382], +[0,37390,37393,1327,1394,37394,37397,37398,37401,37404,37408,4747], +[0,4653,4990,200,37410,9420], +"deflate", +[1,2343,25389], +"inflate", +[0,25390,25392,2514,2443], +[0,19611,1006,8818,37424,37427,37429,1082,25361,1393,37433,1835,37014,1994,2018,20575,2215,9506,20465,3173,23175,4121,4388,4409,33215,4695], +"quisquam-quod-ab-aut", +[0,53,90,107,34765,25376,20577,8780,5087,7746,28919,4874,25422,37436,1195,37437,37438,1509,1593,1622,1628,1668,1856,4913,1177,20281,2092,2135,2203,37439,2629,2675,2759,1192,21124,2774,2777,2784,2794,2843,2856,695,2969,2990,1209,3021,3144,25333,3177,21016,640,3421,3446,20085,1894,3717,3754,23738,3786,89,3824,30570,3978,9340,3988,3992,3999,4039,12936,4183,4294,4307,4072,4426,4441,4452,4469,91,4549,4027,37440,37441,4677,37442,4746], +[1,2343,25394], +[0,25396,25397,25398,2399], +"@diahkomalasarinpm/odio-facilis-beatae", +[0,4729,4200,1082,3456,1675,1525,1084,3527,2628,1874,37449], +[0,1700,1429,2323,1192,3190,1177,2205,3698,1593,1637,3561,2924,2098,3758,1461,1628,2338,3191,4027,53,1436,4677,1165,1178,1195,3060,4307,97,3057,37457,3618,22651,87,37453,4681,90,1210,1959,37458,4409,37451,37454,83,71,5757], +[0,2924,6374,4674,5260,4202,24095,9816,33126,37460,16660], +[1,2343,25400], +[0,25401,25402,25405,2399], +[0,1842,3932,1511,1525,2727,1615,2704,4689,37466,13077,29067,37449,37468], +[0,37472], +[3,1754,13], +"qjobs", +[0,2924,200,4989,1237,6996,5122], +"unit-reporter", +[2,25077,25406], +"cript-", +[2,25408,15473], +[2,2916,25409], +"timer-shim", +[0,25414,25417,25418,34352], +[1,2343,25419], +[0,3144,1511,3173,3440,3781,4121], +"spectacular", +"execution", +[0,2934,2611,1192,2020,2675,1622,1177,38,1544,1701,2026,2078,2203,2924,1894,1610,1699,4342,48,442,470,1193,91,53,4874,2092,2990,3400,2099,11485,6494,192,1953,27928,37480,4257,87,23531,7746,37482,1939,1942,1938,20281,1982,1895,1955,19344,5467], +[0,2924,2663,5001], +[0,25431,25433,2514,34352], +[1,2343,25567], +"os-shim", +[2,25423,25430], +"@types/x", +"karma-p", +"karma-plugin", +"reprocessor", +[2,25424,25426], +[3,14927,12], +[2,25428,25200], +"xhashjs", +[0,4729,3445,32876,34228,2026,33507,1457,9241,1511,11993,7798,1536,2215,4150,4121,37490,37491,37493,6494,37494,37499,37500,37503,2664,4679,1549,33189,37505], +[2,25280,25435], +[0,2611,1192,695,1082,2020,2675,37507,3144,1622,1177,3127,4039,1544,1593,2924,1894,3758,4342,48,1193,1628,2659,91,53,4874,2969,2990,3400,4677,1195,4307,4224,18052,4689,97,192,1953,3923,9252,27928,4257,87,23531,22102,4523,7806,8780,1939,1942,2651,12837,68,37508,37513,1938,20281,1895,2780,83,5467,13052], +[1,2343,25439], +"suscipit-assumenda-a-assumenda", +[2,2877,15473], +"browser-stack", +[2,25280,25442], +[0,25440,25441,25444,2523], +[0,4294,2626,37503], +[0,3421,2899,4193,1177,2026,2924,1894,4342,1955,4679], +"vitae-sequi-voluptas-a", +[2,25445,25446], +[0,2924,11498,6609,1237,37523,37525,2663,2026], +[3,25438,13], +"oluptatibus-vero-magni-rerum", +[2,29825,29840], +[1,2343,25449], +[0,25450,25451,2514,2523], +[0,4388,4695], +[0,841,4874,4891,37531,7858,1584,1700,1177,37534,1915,2092,2675,2990,3150,3697,1894,37535,89,4307,4484,91,1984,2924,4689], +[1,2343,25459], +"ibrik", +"ffee-preprocessor", +[2,23574,25454], +"karma-r", +"equirejs", +[2,25456,25457], +[0,25463,25464,25465,2523], +"karma-re", +"porter", +[2,25460,25461], +[0,2117,21520,5898], +[0,2675,4484,37542,2924,1894,91,37544,1006], +[0,2924,1698], +[1,2343,25467], +[0,0,25475,25480,2523], +"Safari", +" Tech Preview", +[2,25468,25469], +"TechPreview", +[2,25468,25471], +"IE", +"Chrome", +[0,1429,1177,1938,2899,3203,3275,2924], +"Chrome Canary", +"Chrome ", +"Headless", +[2,25477,25478], +[0,2924,13382,202,6374,11053], +"Chromium", +[1,2343,25483], +[0,0,25486,25487,2523], +"Firefox", +"Opera", +[0,1192,1177,2203,2924,2759,1894,1596,442,4227,91,5087,1953,27928,1939,1942,33002,1938,20281,1982,1895,1955,19344], +[0,2924,4227], +[1,2343,25489], +[0,25491,0,25494,2537], +[2,25764,25765], +[0,2215,1615,4449,3524], +"chai-fs", +"os-homedir", +[0,12197,29726], +[1,2343,25496], +[0,25497,25498,25499,4139], +[0,1401,1676,1856,37568,34639,37569], +[0,1400,2323,2447,2839,2272,4389], +[0,4699,14609,21302,37572,37573,6645,6761,20863,36,5576], +"@asdfgertyjhnpm/a-unde-explicabo-eaque", +"firefox", +[1,2343,25503], +[0,25504,25505,25506,2523], +[0,37578,37579,37581,37585,37586,37587,37589,37592,37594,37595,37598,37600,1676,1869,37602,37603,37606,37609,37612,37613,37615,3171,3441,37617,3756,25990,37619,3781,25996,34383,37623,35299,37624,37628,37631,37633,37636,37637,37638], +[0,53,68,5712,87,37641,1090,37644,25992,37646,1290,37647,1398,37648,1618,3588,1177,1903,1938,1953,1958,2099,37650,3486,37652,3767,4092,4131,4151,15039,20496,4387,4389,4409,15046,2924,4677,37654], +[0,37656,37657,1764,37658,37659,37663,37665,22115,37666,37616,37667,15247,37668,4702], +[1,2343,25508], +[0,25509,25512,25515,2399], +[0,1326,3263], +[2,25511,25517], +[3,25500,16], +[0,29569,4384], +"adapter", +[2,2877,25513], +[0,7734,37674,37675], +[1,2343,25518], +"nesciunt-molestias-reprehenderit-occaecati", +[0,25519,25520,2514,2523], +[0,2026,3368,4545], +[0,1506], +[3,25395,19], +[1,2343,25523], +[0,0,25524,2514,2537], +[0,1429,2297,2899,1177,4042,1894,2878,2900,1159,3734,37688,2881,2889,2912,2895,13867,19910], +[1,2343,25526], +[0,0,25527,25528,2487], +[0,4652,2070,10679,4030,2856,37693,2272,3188,37694,3460,1317,26825,4535,1389,3736,37320], +[0,37696,37698,14833,1862,6567,14834,14835,4706,1149,14629,6804], +[1,2343,25530], +[0,25531,6538,2514,2523], +[0,37703], +[1,2343,25533], +[0,0,25534,25535,2399], +[0,13896,1776,2899,3220,37708,37709], +[0,6574,29179], +[1,2343,25537], +[0,25538,25539,25540,4139], +[0,37715,13388,1149,2753,37716,37718,3923,18730,4252,20931,4715], +[0,48,53,87,37721,4874,37722,1148,37724,1177,37725,1192,4039,4238,34395,4431,37727], +[0,4709,2942,6807,30124,21111,1409,3533,3079,2041,1781,3101], +[1,2343,25542], +[0,25543,25545,25546,2487], +[0,37735,3429,20931,4715], +[3,2910,12], +[0,37739,37741,1429,1177,1954,2899,4039,7734], +[0,4709,37743,37744,37745], +[1,2343,25548], +[0,25549,25551,25552,2537], +[0,37716,3923,20931], +"safari", +[0,4874,1148,1173,1264,1693,1177,37721,2899,3421,4039,37727], +[0,4709,4714,37752], +[1,2343,25554], +[0,25556,25559,25560,2537], +"global-agent", +[0,37758,2070,1209,37759,4431,37760], +"al-agent", +[2,4865,25557], +[0,1429,2151,2759], +[0,1370,3383,6355,14510,1508,4796], +[1,2343,25562], +[0,0,16487,25563,2443], +[0,6940,37767,3924,37769,16580,37770,7295,2585,4718,4717,28734,4719], +[1,2343,25565], +[0,0,9264,25566,4139], +[0,4718,4719,5547,1671,6922], +[0,25576,25577,25578,34352], +[1,2343,25597], +"karma-br", +"ief-reporter", +[2,25569,25570], +"sourcemap-", +[2,21536,8754], +[2,25572,25573], +[2,12612,25574], +[0,16781,3714,10761,4695,37780], +[0,4874,4891], +[0,37783,37784,2924,37786,20164,37788,37789,37790], +[1,2343,25580], +[0,25581,25582,25583,2537], +[0,1110,4290,4294], +[0,1166,1437,1596,6474,3421,4481,1906], +[0,4719,6940,4720,6980,7152,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +[1,2343,25585], +[0,25586,6538,25587,2487], +[0,19187,4174], +[0,37808,29999], +[1,2343,25589], +[0,0,25590,25593,2537], +[0,1317,1401,1177,1895,1955,2203,2899,3421,1894,34639], +[2,8652,2013], +"keydown", +[0,7299,7172,6761,6729,7057,6145], +"keyup", +"metakey", +"keyname", +[0,25599,25600,25601,34352], +[0,2342,2402,2457,2488,2531,2540,2540,2630,2488,2688,2488,2698,2737,2488,2775,2799,2818,2840,2939,3016,3110,3207,3247,3279,3307,3448,3515,3593,3631,3723,3782,3844,3879,3908,3929,3952,4006,4016,4096,4154,4203,4241,4263,4286,4308,4331,4348,4417,4444,4476,4506,4528,4573,4655,4673,4700,4743,4813,4953,4994,5004,5007,5013,5016,5019,5023,5028,5031,5034,5037,5041,5044,5052,5099,5134,5137,5141,5144,5150,5171,5174,5199,5203,5211,5231,5255,5266,5270,5289,5299,5289,5333,5360,5373,5379,5437,5486,5493,5516,5544,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5574,5566,5574,5566,5566,5566,5566,5566,5566,5566,5574,5574,5566,4286,5566,5566,5578,4286,5574,5566,5566,5566,5566,5566,5566,5574,5574,5574,5580,4286,5566,5566,4286,5566,4286,5574,5591,5599,5612,5624,5629,5635,4286,5643,5648,5665,5672,5574,5718,5723,5566,5566,5566,5578,5566,5566,5566,5566,5566,5578,5566,5566,5566,4286,5727,5566,5566,5566,5578,5566,5566,5566,5578,5566,5574,5730,5848,5870,5886,5894,5899,5902,5906,5908,5912,5919,5965,5985,5992,5999,6050,5566,5566,5566,5566,6069,5566,5566,5566,5566,5578,5574,5566,5566,5566,5566,5566,5566,5566,5566,4286,5566,6088,6101,6115,6119,6124,6131,6152,6159,6163,6172,6179,6184,6187,6193,6201,5566,5580,6206,6210,5578,5574,6219,5299,6222,6227,6232,6236,6239,6242,6246,6250,6254,6257,6261,6265,6274,6278,6288,6292,6304,6313,6344,6357,6360,6365,6368,6402,6406,6410,6416,6427,6431,6440,6444,6483,6535,6555,6559,6571,5299,6612,5299,5635,5299,6630,6664,6676,6684,6719,6745,6772,6823,6852,6886,6906,6924,6942,6989,7012,7043,7088,7112,7136,7139,7143,7160,7187,7207,7237,5566,5566,5574,5566,5574,4286,5566,5566,7257,5566,5566,5727,5566,4286,5566,5566,5566,5566,5566,5566,7257,5566,5578,5578,5566,5566,5566,7264,7271,7278,7294,7307,7323,7327,7332,7338,7343,7348,7357,7363,7368,7373,7380,7385,7391,7396,7405,7410,7414,7419,7424,7430,7437,4286,4286,5574,7442,7447,7450,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5574,5566,5574,5566,5566,5566,5566,7452,7457,7462,7473,7478,7483,7488,7493,7498,7502,7506,7510,7513,7516,7538,7541,7544,7548,7552,7556,7560,7564,7568,7571,7574,7257,7578,7587,7592,7600,7629,7654,7694,7698,7702,7711,7736,7756,7767,7772,7777,7782,7802,5566,5566,5566,27071,5574,4286,5578,5566,5574,5566,5566,27071,4286,7832,7848,7861,7874,5727,7882,7885,7901,7916,7925,7930,7947,7953,7960,7965,7968,7972,7977,7981,7984,7987,7991,7996,7999,8004,8008,8012,8015,8020,8024,8027,8030,8035,8040,8045,8051,8054,8058,8062,8066,8070,7965,8075,8081,8086,8091,8100,8104,8106,8128,8143,8178,8195,8207,8213,8223,8227,8234,8237,8242,8258,8266,8270,8281,8289,8311,8318,8351,5574,8366,8370,8374,8378,8382,8385,8388,8394,8398,8403,8407,8412,8416,8445,8450,8455,8460,8463,8465,8467,8470,8473,8478,8481,8485,8487,8490,8493,8497,8500,8502,8507,8517,8542,8559,8564,8575,8578,8590,8594,8598,8602,8621,8637,8642,8681,8685,8690,8698,8706,8717,8725,8731,8759,8783,8796,8812,8815,8833,8844,8854,8857,8865,8867,8872,8104,8872,8874,8879,8884,8898,8929,8940,8963,8972,8977,8988,8104,8865,8865,8104,7965,7965,8992,8994,8996,9001,8996,9003,9014,9018,9022,9027,9032,9037,9042,9050,9058,4286,8706,8865,9063,9068,9079,9084,8865,9092,9101,9108,9137,9142,9149,9154,9158,9175,9180,9189,8996,9200,9205,9223,9259,9266,9275,9285,9290,9298,9306,9349,9372,9386,9389,9392,9411,34415,9438,9445,8872,9467,9522,9528,9532,9540,9545,8104,9585,9592,9599,9604,8706,5574,9609,9614,9619,9633,9639,9643,9650,9656,9664,9668,9672,9683,9690,9696,9701,9709,9717,9727,9754,9758,9763,9798,9822,9831,9882,9886,9889,9894,9898,9902,9908,9912,9917,9922,9927,9930,10085,10111,10121,10221,10287,10316,10322,10329,10334,10341,10359,10362,10379,10385,10391,10411,10421,10433,10437,10440,10449,10453,10457,10461,10465,5289,10470,10474,10478,10482,10486,10490,10494,10499,10502,10507,10512,10516,10519,10524,10529,10532,10537,10542,10547,10552,10558,10561,10566,10571,10577,10582,10585,10589,10610,10620,10644,5574,10666,10671,10694,10715,10767,10778,10794,10801,10822,10857,10872,10891,10905,10910,10919,10928,10953,10967,10980,11001,11012,11023,11030,11044,11050,11058,11062,11090,11099,11115,11121,11140,11149,34415,11157,11160,11205,11222,11237,11250,11309,11353,11386,11403,11410,11427,11447,11458,11460,11464,11468,11474,11491,11495,11505,11511,11529,11541,11545,8992,11549,11552,8865,11559,11563,8865,11568,11573,11577,11582,11587,8706,11602,11611,11632,11643,11647,11652,11657,11661,11665,11670,11675,11679,11683,11688,11693,11698,11703,11707,11712,11717,11721,11726,11730,11734,11739,11744,11749,11754,11759,11764,11769,11774,11779,11782,11786,11791,11816,11822,11826,11831,11845,11850,11855,11860,11872,11888,11902,11913,11915,11920,11949,11957,11965,11968,11972,5578,11981,11986,11992,11998,12006,12017,12022,12029,12031,12035,12039,12051,12069,12098,12109,12114,12138,12146,12150,12156,12174,12211,12225,12238,12250,12256,12261,12266,12272,7257,12280,12291,12298,12308,12341,12362,12366,12376,12379,12383,12390,12408,12430,12465,12480,12484,12488,12493,12497,12502,12506,12511,12516,12521,12527,12531,12538,12543,12548,12553,12559,12563,12117,12573,12579,12584,12595,12623,12628,12633,12638,12643,12647,12657,12664,12670,12673,12683,12697,12765,12770,12805,12819,12828,12843,12855,12859,12863,12868,12873,12876,12885,12891,12897,12903,12919,12945,12949,12955,8992,12985,13000,13010,13015,5574,13020,13026,13032,13044,13074,13111,13147,13156,13173,13211,13246,13251,13255,13270,13292,8027,8027,13299,13308,13315,13323,13331,13341,13348,13353,13360,13366,13376,13383,13398,13409,11913,13423,13430,13434,13439,13450,13469,13534,13541,13561,13577,13585,13595,13601,5566,13606,13622,13629,13636,13642,13646,13650,13660,13677,13683,13686,13700,13706,13715,13720,13727,13734,13743,13749,13762,13782,13794,13801,8706,13808,13819,5574,13826,13854,13863,13886,13902,13906,13911,11913,13919,13932,13937,13940,13946,13950,13955,13960,13966,13971,8872,13975,13978,13989,13992,14002,14007,14015,14019,14032,5727,14048,14054,14061,14068,14071,14075,14088,14095,14101,14110,14115,7930,14120,14127,7930,8865,14138,14142,14147,14150,14155,14172,14202,14232,14236,14250,14258,14266,14272,14279,14285,14289,14294,14298,14304,14313,14322,14327,14330,14340,14346,14351,14360,14363,14368,14377,14383,14391,14397,14402,14411,14424,14437,14470,14498,14513,14522,14528,14532,14537,14542,14598,14612,14625,14633,14650,14659,14665,14703,14725,14733,14742,14752,14762,14766,14778,14788,14793,14797,14802,14806,14811,14815,14820,14825,14841,14851,14859,14865,14876,14882,14887,14893,14899,14906,14912,14916,14920,14929,14936,14948,14956,14965,14974,14987,14996,15004,15049,15066,15074,15081,15091,15098,15109,15118,15123,15142,15147,15154,15158,15166,15171,15178,15184,15189,15198,15205,15211,15216,15226,15233,15241,15249,15255,15265,15274,15284,15296,15299,15313,15325,15330,15335,15343,15350,15357,15364,15369,15378,15382,15388,15394,15404,15410,15416,15430,15435,15443,15456,15503,15517,15521,15528,15542,15564,15589,15628,15640,15650,15655,15662,15727,15732,11913,8872,15737,8872,15740,15749,15752,15758,15766,15780,15785,15806,15811,15819,15824,15829,8706,15835,15845,15851,15857,15860,15865,15868,15895,15901,15914,15919,8994,8872,15923,15934,15939,15943,15947,8706,15952,15959,15966,15971,15975,15981,15987,15993,16011,16017,16024,16029,16034,16038,16043,16047,16051,16059,16067,5574,16072,16084,16098,16103,16119,16125,16131,16135,16139,16155,16158,16164,16173,16177,16185,16192,16197,16203,16208,16213,5727,16217,16222,16227,16241,16253,16283,16287,16292,16298,5574,16303,16312,16318,16326,16332,16335,5578,16338,16346,16353,16357,16362,8996,16367,16371,16377,16383,16392,16406,16413,16419,16428,16437,16451,16457,16464,16468,16472,16489,16496,16500,16507,4286,16516,4286,16522,16538,16541,16548,16552,16567,16586,16592,16616,16624,16633,16652,16665,16669,16677,16680,16685,16698,16704,16707,16717,16732,16756,16764,16788,16797,16802,16812,16816,16834,16846,16849,16864,16871,16883,16890,16896,16902,16907,16913,16924,16929,16942,16948,16958,16963,16970,16975,16979,16985,16996,17004,17015,17026,17032,17038,17053,17061,17066,17072,17079,17087,17105,17117,17124,17135,17139,17145,17152,17156,17161,17172,17177,17187,17200,17207,17226,17230,17236,17246,17254,17261,17268,17284,17292,17325,17334,17341,17347,17350,17361,17386,17419,17430,17433,17443,17451,17465,17472,17482,17489,17505,17511,17518,17524,17533,17541,17548,17555,17560,8104,8865,8992,17569,17574,8865,17588,17598,17604,17611,17633,17654,17685,17719,17741,17745,17749,17759,17773,17777,17781,17789,17795,17799,17809,17815,17821,17828,17839,17844,17856,17862,17868,17871,17879,17886,17891,17937,17952,17955,17958,17961,17967,17970,17980,17987,18013,18015,18024,18027,18033,18039,18053,18058,18064,18067,18077,18083,18086,18091,18095,18099,18107,18117,18122,18128,18134,18140,18149,18154,18160,18165,18169,8872,18178,18188,18194,18202,18208,18213,18218,18223,18242,18247,18262,8865,18270,18274,18293,18298,18303,18307,18311,18366,18399,18404,18410,18418,18441,18449,18453,18466,18469,18472,8872,18478,18492,18507,18530,18538,5574,18543,18548,18556,18560,18588,18604,18608,18623,18625,18631,18650,18653,18665,18676,18682,18724,18755,18781,18808,18842,18847,18850,18874,18882,18893,11458,8865,18899,18911,18915,18919,18923,18929,18934,18939,18946,18949,18955,18960,18972,18975,18999,19010,19014,19023,19027,19032,19039,19063,19085,19090,19104,19110,19115,19134,11913,19140,8865,19142,19149,19154,19159,34415,19165,19174,19191,19200,19215,19233,19239,19248,19255,19260,7965,19268,19275,19279,19290,5578,19293,19298,19305,19323,19329,19341,19346,19356,19362,19367,19372,19379,19387,19391,19394,19398,19410,19420,19427,34415,19432,19452,19456,19460,19483,19487,19501,19508,19518,19532,19543,19550,19561,19594,19600,19633,19643,19654,19660,19662,19667,19674,19680,19685,19694,19699,19703,19714,19718,19723,19738,19743,19752,19765,19772,19781,19789,19793,19804,19809,19814,5580,19817,19822,19832,19846,19854,19857,19868,19873,19880,19887,19891,19897,19901,19916,19924,19929,19933,19936,19952,19960,19969,19979,19985,19994,20002,20007,20022,20027,20036,20041,20053,20058,20067,20071,20079,20087,8872,20094,20101,20109,8872,20114,20125,20129,20134,20141,20148,20155,20157,20161,20166,20177,20196,20209,20217,20225,20233,20236,20240,8865,20249,20255,20260,20270,20277,20287,20292,20297,20302,20310,20318,20323,20337,20345,20358,20363,20381,20388,20391,20397,20404,20411,20431,20440,20456,20462,20487,20498,20503,20509,20512,20532,20555,20560,20569,20579,20585,20591,20596,20603,20605,20608,20615,20617,20629,20766,8872,20770,20775,20780,20783,20787,20792,20799,20806,20810,20814,20818,20860,20867,27071,20880,20900,8872,20915,20926,20936,20945,20954,20961,20965,20971,20976,20988,20994,21005,21010,21018,21027,21061,21065,21070,21078,21083,21088,21092,21103,21113,21126,21132,21139,21154,21170,21184,21192,21197,21202,21205,21207,21209,21212,21205,21217,21220,21225,21232,21238,21241,21247,21251,21256,21258,21262,21266,21271,21275,21301,21311,21316,7257,21320,21325,21331,21336,21344,21349,21356,21362,21368,21376,21391,21400,21410,21415,21422,21425,21431,21435,21446,21453,21462,21472,21475,21489,21494,21503,21511,21517,21524,21530,21534,21546,21553,21558,21565,21589,21598,21612,21615,21628,21634,21652,21670,21674,21690,21694,21706,21711,21717,21724,21729,21739,21744,21755,21769,21774,21780,21784,21787,21794,21799,21805,5566,21811,21813,21818,21824,21829,21838,21842,21848,21853,21859,21864,21870,21874,21878,21882,21887,21892,21899,21904,21909,5574,21914,21919,21923,21925,21932,21938,21949,21954,21959,21963,21968,21975,21985,21989,21998,22003,22012,22017,22021,22026,22030,22040,22045,22050,22069,22077,22082,22086,22097,22105,22112,22119,22125,22131,22136,22141,22149,22154,22159,22161,22171,22173,22177,22184,22187,22194,22200,22206,22210,22215,22225,22233,22238,22243,22252,22259,22262,22266,22271,22276,22284,22288,22299,22307,22311,22318,22323,22328,22335,22340,22345,22350,22355,22364,22373,22384,22389,22394,22399,22406,22413,4286,22419,22424,4286,22433,22444,22450,22456,22461,22469,22474,22480,22484,22490,22494,22508,22517,22527,22532,22538,22542,22547,22551,22560,22566,22572,22578,22585,22592,22598,22605,22609,22614,22619,22624,22629,22634,22644,22650,22654,22659,22663,22669,22677,22681,22685,5580,22690,22693,22702,9001,11913,22710,22717,22723,22731,34503,22737,21998,22740,22747,8872,22751,22757,22761,22765,22777,22788,22794,22802,22806,22810,22816,22825,22831,22836,22852,22859,22866,22870,5574,22878,22884,22890,22893,22898,22905,22911,22171,22917,22927,22940,22945,8872,22951,8872,22955,22964,21489,22981,20615,8865,22988,23002,23008,23014,23018,23022,23028,8865,23033,23037,23047,8706,23087,23129,23147,11913,23152,23159,23171,23176,23182,23195,23199,23204,23209,23213,23217,8865,8872,23222,23228,8706,23231,23233,23242,23265,23272,23284,23297,23315,23320,23327,8104,23334,23346,23353,8872,23364,23369,23374,23379,23381,23385,23418,23424,23427,23431,23458,23463,23474,23484,23487,23491,23495,23501,23506,23510,23515,23521,23532,23546,23550,23555,23567,23577,23583,23589,23594,8706,23610,8865,23614,23620,23627,23633,23231,8992,23642,8872,23655,23662,23672,23677,23694,23701,23713,23718,23731,23735,8992,23746,23761,23763,23770,23772,34503,23776,23781,23788,23792,23796,23804,23807,23821,23825,23835,23840,23846,23850,23854,23861,23866,23882,23887,23893,23903,22159,23940,23946,23954,23963,23972,23983,23988,23997,24001,24008,24014,8725,24021,24026,24031,24040,24048,24052,24055,24060,24063,24067,24074,24086,24099,24104,24108,24111,24124,8872,11458,24132,24143,7965,24146,24149,24170,24176,24180,24190,24196,24200,24207,24216,24228,24260,24284,24296,24304,24308,24314,24323,24361,24368,24375,24380,24407,24413,24422,24426,24431,24436,24444,24448,24457,24461,24468,24475,24478,24481,24489,24497,24500,24505,24510,24516,24527,24532,24546,24551,24555,24567,24589,24605,24611,24614,24628,24635,24639,24644,24650,24658,24662,24670,8706,24673,24677,24682,24685,24695,24700,24704,24709,5727,24718,24736,24744,24749,24756,24758,24764,24769,24773,24790,24817,24835,24844,24866,24911,24965,25013,7930,25037,25045,25052,25064,25080,25095,25100,25111,25120,25134,25152,25174,25185,25198,25208,25214,25225,25229,25242,24195,25265,25271,25281,25287,25293,25263,25308,25314,25318,25322,25326,25331,25337,25342,25357,25368,11458,7930,23147,25378,8854,11458,25387,25393,25399,25302,25413,25434,25448,25452,25466,25482,25488,25495,25502,25507,25516,25522,25525,25529,25532,25536,25541,25547,25553,25561,25564,25420,8027,25579,4286,25584,25588,25568,25602,25610,25616,25621,25641,25644,25647,25656,25662,25672,25680,25686,25695,25702,25706,25713,25722,25729,25734,7257,25738,25746,25751,25756,25768,25773,25778,25787,25800,25808,25818,25830,25834,25859,25869,25883,25905,25909,25916,25934,25940,25953,25961,25976,25991,26003,26019,26023,26031,26038,26042,26047,26056,26063,26068,26076,26080,26088,26102,26115,26134,26140,26148,26152,26162,26167,5299,5299,5299,5635,5299,26191,26191,26195,26200,26214,26221,26229,5635,5635,5299,26238,5574,4286,5574,5578,26243,5574,5580,26250,26255,26266,26270,26277,26281,26284,26293,26297,26303,26309,26313,26317,26321,26327,26331,26336,26341,26348,26356,26363,26369,26381,26389,26395,26405,26452,26476,26498,26502,26518,26523,26527,26538,26545,26558,26561,26582,26589,26594,6236,26599,26602,26623,26638,26642,26650,26656,26667,26672,26691,26701,26724,26730,26735,26745,26751,26758,26778,26785,26791,26797,26803,26814,26820,26826,26831,26841,26853,26860,26864,26879,26889,26893,26899,5727,26912,26928,26948,26953,26957,26961,11797,26967,26998,27004,27011,27013,26994,27027,27031,27021,27035,27041,27044,27048,27051,27055,27059,27065,27038,27079,27088,27097,27121,27128,27132,27140,27144,27148,27153,27159,27172,27179,27183,27192,27199,27207,34417,27211,27215,27218,27229,27245,27250,27270,27279,27288,27296,27306,27310,27331,27351,27364,27369,27373,27382,27397,27402,27413,27417,27422,27434,27437,27453,27466,27516,27528,27536,27545,27581,27586,27589,27595,27598,27604,27611,27618,27627,27665,27672,27677,27704,27734,27748,27755,27770,27889,27925,27935,27947,27956,27973,27979,27988,27996,28003,28013,28016,28020,28031,28054,28063,28071,28083,28097,28105,28108,28113,28127,28140,28160,28173,28186,28213,28218,28252,28281,28295,28298,28302,28308,28316,28319,28328,28334,27004,28351,28410,28431,28451,26701,28520,28530,28545,28552,28562,28584,28602,28630,28663,28668,28683,28700,26961,28759,28765,28765,28328,28774,28808,28328,28822,28833,28836,28851,28871,28918,28995,29052,29068,28334,29078,29164,29164,29172,26961,29180,29217,29230,29272,29275,29289,29337,29473,29496,29523,29548,29613,29705,29734,29871,29982,30002,30185,30205,30250,30474,30500,30528,30557,30598,30615,30782,30800,30827,30910,30931,30938,31020,31216,31274,31387,31487,31513,31532,31630,31664,31709,31738,31753,31758,31763,31785,31817,31853,31927,31938,31984,32340,32496,32532,32547,28833,32556,32748,32781,32809,32862,32887,32921,32936,33045,33079,33092,33104,33109,33218,31274,33225,33240,33248,33279,33281,33375,33478,33484,33501,33563,33630,33670,33696,33719,33773,33781,33788,33814,33833,33858,33866,33906,33924,33933,33956,33961,34004,34021,34047,34059,34075,34091,34101,34108,26961,28328,34122,34133,34142,34147,34160,34185,34195,34211,34214,34249,34253,34258,34296,34325,34330,34333,34336,34341,34348,28663,34353,34388,27071,34420,19603,34444,34450,34454,34456,34460,34469,34488,34499,34506,34454,34526,34535,34544], +[0,6870,1362,1437,1448,1676,37818,2754,2757,3427,6530,37821,37823], +[0,1596,2759,2899,3202,16112,4039,4193,4255], +[0,5592,1448,37826,15514,6956,5122], +[1,2343,25603], +[0,25604,25606,25608,4139], +[0,2202,37833,37834,1695], +"@keyv/serialize", +[0,2133,3697,4387,4389], +"keep", +[0,4731,27,4738,5038,1389], +"timekeeper", +[1,2343,25612], +"key-value", +[0,25613,25614,25615,2487], +[0,20689,37845,37846,4718,37844,37841,37843], +[0,18225,1082,2832,2899,4193,1177,37853,1330,1787,1525,91,4874,37852,37850,1937,17585,37856], +[0,28860,28861,3354,37858,37859,20707,1641,37860,37861,37862,26666,21604], +[1,2343,25617], +[0,25618,25619,25620,2537], +[0,4113], +[0,1175,1195,1264,28713,1387,37868,37869,35573,1503,1596,1610,1177,37870,2759,2765,1192,2774,7060,3363,3400,3725,91,37871,2282,2924], +[0,37873,6523,676,6671,1781,24586,37874,37875,37880,37882,20398,20400,4734,4735,353,8535,37883,22180,6270,37884,37885,37887,1644,57,7119], +[1,2343,25622], +[0,25626,25630,25637,4139], +"escalade", +"pg-connection-string", +"tarn", +[0,4113,4736], +[3,5536,10], +[2,25627,4945], +[2,11836,4246], +[0,1596], +"-in-order", +[2,1436,25631], +"oracledb", +"pg-query-stream", +"tedious", +"toxiproxy-node-client", +[0,6523,1781], +"postgres", +"cockroachdb", +[2,3766,9381], +[1,2343,25642], +[0,25643,15925,2514,2537], +[0,2607,2812,37899], +[1,2343,25645], +[0,0,10710,25646,2537], +[0,6523,4736], +[1,2343,25653], +"smol-toml", +"summary", +[3,8555,11], +[2,25650,1851], +[2,4764,25651], +[0,0,25654,25655,2537], +[0,1192,4753,37908,1177,3363,37909,1894,2188,3400,1926,16638,1895,1955], +[0,12616,965,6523,57,5284,37911,37912], +[1,2343,25657], +[0,0,0,25659,2537], +"analyze", +[0,4731,6662], +"dead code", +"entropy", +[1,2343,25665], +"maintenance", +"members", +[0,25666,25668,25670,2537], +[0,3157,1144,1177,2205,2203,1894,2185,4507,3170,1595,19595,3505,2191,1953,29490,1920,4523,25803,1958,1982,13789,1895,24166,32525,1955,7681,19344,1011,15290,22937,19492], +"unreferenced", +[0,3377,1166,2020,2675,1680,13786,2990,5601,192,15600,8778,3390,3708,5467,17312], +"unresolved", +[0,13326,200,1906,19347,19350,19353,1501,19269,590,671,9654,2272,19270,1177,2649,19271,4255,15717,4354,16790,19273,18443,2446,2869,5284,91], +"tldts", +[1,2343,25673], +[0,0,25674,25676,2537], +[0,10780,1854,37928,2899], +"lodash.sortby", +[0,4739,6523], +"explorer", +"opera", +"samsung-internet", +[1,2343,25681], +[0,25683,25684,25685,2399], +"uc-browser", +[0,5663], +[0,48,53,37936,83,87,37937,1198,37940,37941,1389,1177,2765,2835,3421,37945], +[0,1108,6961,6607,3656], +[1,2343,25690], +"stream-co", +[2,25687,11532], +[2,25521,25692], +[0,25691,25693,25694,2537], +[0,1525,7606], +"praesentium-accusamus-maiores-autem", +[0,3421,1676,2899,1177,1596,4535,1389], +[0,20215,4741,2574,36796,6847,1965,1867,10368,7131,1155,1936,14419,37953], +[1,2343,25697], +"delegates", +[0,0,25698,25701,2537], +[0,37958,1091,3539,4094,4733], +"http-assert", +[2,17007,23905], +[0,37960,37963,37968,37971,37972,6649,37973,2218], +[1,2343,25703], +[0,0,9264,25704,2399], +[0,2051,1698,14690,15767,3048,4552], +[3,21482,15], +[1,2343,25708], +"gen-", +[0,0,25711,25712,2523], +"esm-wrapper", +[2,25707,25709], +[0,8648,4856,5245,37983,6494,37984,4865,13204,6503,4874,37987,4891,9241,1009,1011,1429,1610,1693,1177,1942,2026,28930,2070,2832,2899,3257,3339,3421,4230,4232,4469,91,4577,2924,4677,4729,37988], +[0,200,6876,7201,28770,4166,21000,592,37991,7009,6621,13005,35621,4744], +[1,2343,25714], +[0,0,25715,25719,4139], +[0,1192,4484,1177,4042,1894,442,1193,2064,91,53,5087,4874,2797,87,4523,5583,6373,1895,10817,37998,5889], +"-body", +[2,4860,25716], +"co-body", +[0,6775,57,5374], +"-router", +"__router", +[1,2343,25724], +"urlencoded", +[0,25725,25726,25727,2399], +[0,2070,1139], +[0,1317,15052,2768], +[0,4745,1781,38007,38008], +"copy-to", +[1,2343,25730], +[0,25731,25733,20172,2523], +[0,1495,25623,12929,4290,26574,4748], +"bodyParser", +[0,68,92,4856,6503,4874,1009,25912,1414,1429,1437,25796,1610,1615,1177,1955,2321,29551,2899,4039,91,4707,38017], +[1,2343,25735], +[0,0,25736,25737,2537], +[0,68,92,4856,6503,4874,1009,1011,1414,1429,1610,1177,2321,2899,3758,4039,4146,4261,91], +[0,7233,57,4747,1523,200,7119,5675,7058,7233], +[1,2343,25739], +[0,25740,25741,2514,2537], +[0,38035,1282,1413,1420,1437,25872,1525,38036,1676,19400,1687,2195,2714,2731,10911,2975,16450,3181,3188,3309,640,3434,28142,3917,38037,705,38040,4039,38041,4135,4296,4390,4393,4572,25898], +[0,1175,1178,1193,1195,14220,1255,1267,38044,38047,1268,1272,1291,1177,38050,18229,38052,1922,38055,1935,38058,1959,2126,2323,2338,2464,2479,2541,2544,1192,2843,3211,1241,2924], +"humanize-", +[2,25742,6988], +"-counter", +[2,22255,25744], +[1,2343,25747], +[0,0,0,25750,4139], +"koa-compress", +[3,2946,9], +[0,4749,4752,6435,4166,3378,34652], +[1,2343,25752], +[0,25753,25754,25755,2443], +[0,13581,27999], +[0,1329], +[0,4560,2056,3101,12666,2090], +[1,2343,25759], +"mounting", +"@drftgyhuji7npm/repellendus-eum-et-itaque", +[0,25760,25761,25767,2523], +[0,38073,38076,38077,38078,38080,1144,1437,1525,1676,2020,38082,2205,38083,20786,3021,38084,38086,4135,4207,4558,38088], +[0,5245,5139,4874,5254,24719,1414,1597,1177,38092,2151,1776,1894,3708,4039,4193,38093,4294,91,21328,21329], +[2,29234,32235,1524], +"@ladjs/env", +[3,25689,31], +"sint-dolorem", +"@enact/core", +[0,5001,3304,6147,4990,200,8632,4989,8623,1179,8635,1896], +[1,2343,25769], +[0,25770,25772,25767,2487], +[0,1437,1676,2020,4135,3183,3021,22776,4183,4425,2845,38086,2960,38101,27168,5139,38077], +"koa-send", +[0,1797,1776,4193,1984,1597,2720,1894,4507,9741,91,21329,5245,6513,5254,21328,24719,7892,38073,23452,38078,8818,4754,7677,3708], +[1,2343,25776], +"sendfile", +"@envelop/core", +[0,0,8134,25777,2537], +[0,4757,38108,27631,200,3741,2649,6847,8618,4938,38109,1644,38111], +[1,2343,25779], +[0,25783,25784,25785,2443], +"is-warlock", +[2,3341,25780], +"reds", +[0,3157,3445,1437,4761,1209,2089,25294,38117,38118,23878,38121,38122,1543,1615,38123,25555,9478,38080,15826,38126,38073,38127,27168,4562,38131,4754], +[0,1414,1906,3297,4193,38092,2203,1596,38133], +[0,13326,200,6400,5001,3304,6147,5122,4990,8632,2873,8635,1179,8623,1896,8310], +"webOS", +[1,2343,25788], +[0,0,25795,25799,2537], +"bossy", +[3,23453,15], +[2,25790,5592], +[2,9146,5592], +"find-rc", +"will-call", +[0,38139,1104,1166,1437,1474,1511,2929,27127,3527,4481,1906], +"cpr", +"lab-event-reporter", +"@ionic/cli", +[0,1473,7208,1512,7009,7201,200,1871,1111,590,592,6621,6983,4166,4744,3073,6807,6876,2585], +[1,2343,25801], +[0,25805,3293,25807,2487], +[2,29611,5457,1805], +[2,2102,17239], +[2,25806,553], +[0,1525,2720], +"@envelop/", +[0,4760,5592,36,5995], +[1,2343,25811], +[2,556,1098], +"md-to-pdf", +[0,25812,25815,25817,2537], +[0,3157,1437,1471,4726,1109,4294,1110,4290,38150], +"semver-", +"semver-regex", +[0,1906,2899], +"latest", +[0,13326,200,8635,4758,38152,38153,5403,6458,1111], +[1,2343,25820], +[2,25829,6811], +[0,15916,25827,25828,2523], +"autodoc", +"deft", +[2,2767,1149], +"race", +"race.js", +[2,4284,176], +[0,4170,4135,2899], +[0,38160,4762,38161,38162,38163,970,10770,11154], +[3,24329,21], +[1,2343,25831], +[0,0,0,25832,2443], +[0,91,2844,7020,998,6591], +[2,556,25877], +[1,2343,25839], +"@mapbox/", +"cript-tags", +[2,1967,25836], +[2,25835,25837], +[0,25845,25847,25856,2487], +"bundlemon", +[3,16694,16], +"urner", +[2,25841,25842], +"git-rev-sync", +[0,1170,2026,3509,4763], +"happen", +[0,7804,4856,9417,7806,38176,6494,38177,6503,38179,1364,1429,1431,1527,1536,1575,1652,1177,38182,1161,2899,3237,3378,1894,4257,4474,91], +"karma-expect", +[3,2066,9], +"leafdoc", +"prosthetic-hand", +"git-version", +[2,4049,25852], +"ontent-classifier", +"gis", +[0,4763,2026,5592,8800,38185,5995], +[2,8,25858], +[3,1008,21,5], +[1,2343,25860], +[0,25861,25864,25865,2399], +[0,1282,1362,1676,34226,2685,2832,1209,3171,3242,705,4454,4729], +[2,25857,2324], +[2,25867,6], +[0,1173,1178,1255,1264,1364,1575,1700,1177,2026,2323,2338,2384,29396,2472,2510,2541,2899,3237,3253,6596,4019], +[0,1973,6533,5472,21972,4386,10659,37125,29727,1388,1936,12075,965,1623,5284,11857,6662,26196,38192], +"numbers", +[3,19535,16], +"ng-packagr", +[1,2343,25870], +[0,0,25876,2514,2537], +"aproba", +"cmd-shim", +"p-reduce", +"byte-size", +"write-pkg", +[0,28069,30286,38197,23689,4874,32440,1362,26739,2780,2784,1192,2899,3210,2765,4232,2766,24652,4094,4376,4484,1984], +"examples", +"wide-align", +"has-unicode", +"p-waterfall", +[2,2977,7318], +"@npmtea2024/quasi-nisi-doloremque-fugit", +[1,2343,25889], +"p-map-series", +"blocking", +"set-blocking", +"@lerna/create", +[2,2977,20001], +[0,25890,25895,25896,4139], +[0,38202,6870,1389,21146,38204,1512,1525,1536,1573,1676,2026,38207,12783,38209,12785,2590,2600,2659,12788,38210,12789,1209,3456,3470,38212,4165,38213,17011,4339,38215,20496,4650,4652,1695,4746,38217], +"read-cmd-shim", +[2,3614,16830], +[2,21772,18709], +"strong-", +[0,1087,38221,38222,2899,3524,4389,4431,38224], +[0,4770,5472,1388,2907,2899,12826], +[3,4588,21], +[2,25897,4059], +"-bump", +[2,4945,25899], +[2,13984,25900], +"-rest", +[2,24089,25902], +[2,9768,25903], +[1,2343,25906], +[0,25907,6736,25908,2523], +[0,666,672,677,9688,1710,4135,4459,4484], +[0,9621,9622,8174,9623,9624,9625,9626,9627,9628,9648,9659], +[1,2343,25914], +[2,1583,20499], +"errno", +[2,15086,1179], +"jest-codemods", +[0,25915,6736,6767,2487], +[0,1437,4484,677,4135,2203,666,17310,1012,9688,19254,12123], +[1,2343,25918], +"benny", +[0,25932,6736,25933,2537], +"less-port", +[2,10784,25919], +"emplate-tag", +[2,2642,25921], +"jit-grunt", +[3,1165,10], +[2,21897,25924], +"mocha-te", +"amcity-reporter", +[2,25926,25927], +"phin", +"read-glob", +"@ptkhanh94npm/iusto-libero-aperiam", +[0,4484,677,4135,2798,3181,666,3527,8734,2797,4748,8752,24759,8762,2686,9688], +[0,9621,9622,8174,9623,9624,9625,9626,38247,9628,9659], +[1,2343,25935], +[0,25937,25938,25939,34352], +[2,21897,2070], +[0,4484,677,4135,666,672,4771,9688], +[0,3420,4270], +[0,9622,8174,9623,38255,9627,9628,9648,9659], +[1,2343,25941], +[0,25945,25949,25952,2443], +"abstract-l", +"evel", +[2,25942,25943], +[0,30508,30509,4484], +"browser-level", +"-level", +[2,128,25947], +[0,34030,26312,10846,4426], +"@voxpelli/tsconfig", +[2,12774,3541], +[0,7522,89,7531,7535,7521,7597,7518,8424,8432,7528,10442], +[1,2343,25955], +"leveldb", +[0,25956,25957,25958,2443], +[0,38264,3286,89,3824,38265,4125,38266], +[0,4874,4880,4883,1177,4828,3561,4383,91], +[0,12589,1616,33456,12589,5472,20500,33459,1237,33462,33464,12590,33465,27666,11996], +[2,25944,2971], +"napi-macros", +[1,2343,25962], +[0,25973,0,25975,2537], +"async-each", +"du", +"cat-iterator", +[2,1332,25965], +[2,2970,25966], +"mkfiletree", +[2,15164,18490], +[3,25969,13], +"ross", +[2,25970,25971], +[0,1639,3744,97,7931,7932,7910], +"readfiletree", +[0,89,5128,9267,1832], +[1,2343,25977], +[0,25978,10298,25979,2443], +[0,16053,16056,38278], +[0,5284,1776,1644,1746,1745], +"-leveldown", +[2,14834,25980], +"level-", +"level-errors", +[2,7253,14922], +[2,25982,25984], +"supports", +[2,25982,25986], +"queue-", +"microtask", +[2,25988,25989], +[1,2343,25998], +"airtap-sauce", +"encoding-", +[2,25993,2971], +"memdown", +[3,12809,12], +[2,4182,5614], +[0,25999,26001,26002,2537], +[0,97,5663], +"trickle", +[0,5087,1192], +[0,5284,4967,89,6081], +[1,2343,26004], +[0,26005,26016,26018,2537], +[0,97,38293,3744,3847,4484], +"levenshtein", +[2,2068,26006], +"ld", +"levdist", +[2,26006,10699], +[3,26010,12], +"-distance", +[2,6109,26012], +[2,26011,26013], +"talisman", +[0,5228,14249,5700,8129,20202,38298,20212,602,5583,811,963,966,968,38299,972,974,5087,5090,4880,1009,1011,7913,38302,38304,1397,1597,1610,1651,1177,4916,1959,2126,38307,38309,11853,19227,3400,3698,9054,89,3824,3847,3857,3904,4146,4261,91], +"distance", +[0,38313,89,15774,38316,38317,5399,1631,32039,38319,7320,38320,32040,38322], +[1,2343,26021], +"comparison", +[0,21012,0,26022,34352], +[0,6653,7320,10039,24832,1623,13006,38327,6847,5284,676,38328,38329,29002,24353,8112,3561,6425,38330,18252,1631,3586,38332,4453,38333], +[1,2343,26027], +"careful-", +"binary-", +[2,26025,19101], +[0,26028,26029,26030,34352], +[0,2115,2121,2127,1110,28827,2856,4507,26907], +[0,2180,5476,5478,2189,2198,31852,91], +[0,2313,1383,614,202,1388,5995,4967,2340,2350], +[1,2343,26033], +"country-codes-flags-phone-codes", +[0,0,0,26034,4139], +[0,1671,671,3315,17626,6869,6671,3319,3325,3362,6829,3384], +"just-safe-set", +"ock-registry", +[2,9494,26036], +[1,2343,26039], +[0,26040,26041,26002,2523], +[0,53,31689,97,5663,4793,4800,4838,4928,4786,4944,4954,4968,362,4972,24723,4981,10895,4982,11518,841,7812,24370,4985,1030,4992,1165,1195,29040,30521,1393,1437,1525,1593,1628,1630,1759,1763,2151,2070,2220,4995,2222,2651,2843,2867,1209,3177,3220,4996,3310,3445,3561,3579,3584,3613,3618,30274,1894,3742,15033,3816,3878,4079,13834,4164,4167,4307,5000,4409,5002,1002,1983,29141,2924,4676,4681,13152], +[0,29536,27134,4864,4870,5009,5542,15600,33768,11944,3144,3244,3758,4039], +[1,2343,26043], +[0,6203,26045,26046,2523], +"gitfund", +[0,549,811,8850,816,6373,4863,5087,4880,1009,1011,8158,1584,1843,1177,1895,1938,1955,1959,1192,2780,2832,3421,1894,89,3824,4039,4042,4052,8849,8853,4076,4079,4230,4468,4469,4474,4484,4508,2924,4677,4681,555,560], +[0,24456,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2343,26048], +[0,6203,26054,26055,2537], +"crlf", +[3,2982,15], +[2,6774,16609], +[2,26050,26051], +"renamer", +[0,53,87,92,8862,5087,4874,1009,1011,6834,6840,6873,1031,11018,13072,1593,1610,1177,1895,1938,6902,1988,1192,2780,1894,4039,4042,4045,4052,4076,4079,6904,4468,4484,4508,91,188,555], +[0,188,8588,6931,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2343,26058], +[2,33018,188], +[0,6203,26061,26062,4139], +"ged-respawn", +[2,7210,26059], +[0,53,87,92,4856,5087,6503,4874,1009,1011,6834,6840,6993,6873,1031,11018,13072,1429,1610,1177,1895,1938,6902,1988,3400,1894,4039,4042,4045,4052,4076,4079,6904,7006,4484,4508,91,188,555,5010], +[0,188,8588,6931,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841,12075,1623,4380], +[1,2343,26064], +[0,26065,26066,26067,2523], +[0,12396,23289,23249,3493,12449,15632], +[0,9363,4874,1414,31147,1894,3985,3998,18071,4505,4507,91,18002,1906], +[0,23266,2587,23267,614,6435,1936,1644,15278], +[1,2343,26069], +[0,0,26071,26075,2537], +"cname-prefix", +[0,1177,2899,3421,4193], +"autolink", +"hashtag", +"mention", +[0,4264,15457,15482,13499,15483,5995], +[1,2343,26077], +[0,0,0,26078,2537], +[0,17356,17362,17364,17365,17384,17397,17423,17426,1745,1783], +"pidtree", +[1,2343,26083], +"consolemock", +"sonner", +[0,26084,26085,26086,2487], +[0,24337,24344,18220,1676,24345,2714,2072,4238,4431,4484,4753], +[0,8656,8660,6061,6063,5245,24352,29105,5087,4874,28177,24358,18435,20290,1177,1192,1894,4131,4468,91], +[0,12296,12295,200,5131,1896,24364,970], +"@samverschueren/stream-to-observable", +[1,2343,26089], +[0,26100,0,26101,2523], +"is-observable", +"-silent-renderer", +[2,2991,26091], +"listr-", +[2,9787,3902], +[2,26093,26094], +"verb", +"ose-renderer", +[2,26096,26097], +[2,26093,26098], +[0,12396,21300,32567,2586,21308,12447,12449], +[0,2587,1936,21308,26916,1783,18108,26564,1932,3958,32462,3984,21306,4549], +[1,2343,26103], +[0,26105,26106,26110,2523], +"@keyv/compress-brotli", +[0,2564,4351], +[0,1166,1503,91,1906], +[3,175,23], +[2,26109,16518], +[3,26104,15], +[0,163,7009,22316,200,13735,4354,1111,1106,7201], +"@lit/reactive-element", +"@lit", +"-labs/ssr-dom-shim", +[2,26112,26113], +[1,2343,26125], +"@lit-labs/", +[2,26116,5472], +"@lit-", +"/scripts", +[2,6943,26119], +[2,26118,26120], +[2,10704,1283], +"@keyv/memcache", +"@keyv/mongo", +[0,26126,26130,26133,2443], +[0,20573,5545], +"connect-l", +"ogger", +[2,26127,26128], +[0,5517,28436,19438,19181,442,8648,842,16145,966,968,972,22375,5087,4874,4880,5546,1009,1011,34737,1177,1895,31755,1959,1961,1976,2203,2675,1192,2780,2990,3286,1894,89,3824,5564,4039,4135,91,4523], +"@keyv/sqlite", +"@keyv/test-suite", +[0,26713,89,582,705,2325,1612], +[1,2343,26135], +[0,0,26138,26139,2523], +"http-auth", +"faye-websocket", +[0,4874,4218,4220,4493,91], +[0,91,998,553,5490,17180,20052,2382,6956,2844,5995,6400,1781,6866,1398,9254,15105,4144,4141,7050,22789,22791], +[1,2343,26141], +[0,26143,26145,26146,2537], +"amaro", +[0,23641,27185,29561], +[2,3000,1592], +[0,58,101,8648,1177,2272,3019,2899,4019,19767,4481,4535], +[0,36720,22860,1388,16284,888,22856,35087,11804,23659,23664,23667,23668,29725,29728,32633], +"micro-backend", +[1,2343,26149], +[0,0,26150,26151,2537], +[0,2832,705,4008], +[0,1936,23670,11513], +[1,2343,26153], +[0,26156,26157,26161,2537], +[2,2032,26155,26159], +"openid-c", +[0,2591,25047,23597,4290,24794,24836,19569,15245,24855,24871,24984,25049,25034,24816,24841,24900,24964,24989,24998,21642,37100,25011,24802,24828,24987,24797,24958,25042], +[0,1414,2020,4193,25122,1306,1177,1701,25127,2182,1894,842,1587,1610,4342,3980,25609,91,4874,25099,25108,6513,8529,27525,25110,9240,25103,25104,25098,25137,25053,25118,25114,25058,25083,10614], +"grunt-svgmin", +"onnect", +"matchdep", +[0,25155,5130,33359], +[1,2343,26163], +[0,26164,26165,26166,2537], +[0,25183,25194,1759,2858,3310,9796], +[0,33460,25204,4874,5542,1177,25209,1894,4039,4494,91,1984], +[0,9649,17721,6869], +[1,2343,26168], +[0,26171,26174,26188,4139], +"lws-basic-auth", +"lws-b", +[0,1676,4164,4484,4747,2151,1525,3310,25228,24337,3322,24335,25245], +"lws-blacklist", +[2,26170,7803], +[0,3377,1192,2675,4400,1177,4039,4468,1894,91,5087,4874,5245,28177,20959,107,4864,5542,25250,8656,8660,1009], +"lws-compress", +"lws-co", +"nditional-get", +[2,26176,26177], +"lws-cors", +"lws-index", +"lws-json", +"lws-log", +"lws-mime", +"lws-range", +"lws-r", +[2,13148,21101], +[2,26185,26186], +[0,2733,8675,13494,5131,970,1017,25259], +"lws-rewrite", +"lws-spa", +[1,5293,26193], +"lws-static", +[0,8391,26194], +1753574400000, +[1,2343,26197], +"full-stack", +[0,26198,0,26199,2537], +[0,1461,2731,3744,3776,89,3824,3847,4649], +[0,5130,6081,4963,5131,25786], +[1,2343,26201], +[0,26209,0,26211,2399], +[3,24235,20], +"loose", +[2,26202,26203], +[2,13888,5669], +"grunt-es", +"3-safe-recast", +[2,26206,26207], +[0,4484,25804,29321,29322], +"grunt-rollup", +[0,13572,2220,36,5130,202,6710,91], +"grunt-ts", +"rollupify", +[1,2343,26215], +[0,26219,26220,16427,2523], +"indexeddb", +[3,23920,12], +"websql", +[0,24327,25819,24329,24335,24337,24338,24339,24340,24343,24344,1437,1676,1687,24345,24346,1209,3445,6331,20921,4135,4238,24347,22651,4339,4390,4484], +[0,5245,17577,24352,5087,4870,4874,5254,24358,24360,13214,1192,2774,2990,4039,4227,4468,91], +[1,2343,26224], +[2,31787,26225], +"openurl", +[0,6203,26226,26227,2523], +"ecma402-abstract", +[0,25857,25862,25863,19535,19,21,24,26,1009,1011,1166,1584,1177,1895,1938,1955,25868,3421,1894,4039,4094,4232,4484,4508,91,555], +[0,1098,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[2,3019,2825], +[1,2343,26231], +[2,7627,4255], +[0,26235,26236,26237,2537], +[2,6698,19048], +"lockfile ", +[2,26233,671], +[0,20437,1209], +[0,4874,1009,1011,1177,1895,1938,1955,1894,4039,4042,4052,4076,4079,4484,4508,91,555], +[0,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2343,26239], +[0,26240,26242,7097,2523], +[0,1473,4741], +[2,31528,29413], +[0,10321,4493,4543], +[1,5293,26244], +[0,8391,26245], +1738454400000, +"@egjs/axes", +"@egjs/imready", +"modularized", +[2,5316,26248], +[1,2343,26251], +[0,26252,26253,26254,2537], +[0,97,5564], +[0,29519,89,1177,1503,4474,1894,1610,3824,29520,91,11853,4880,38309,4883,29522,3904,17584,1011,4889,1009], +[0,5472,89,582,2275,11857], +[1,2343,26261], +[2,27471,1722], +"kuler", +"clonedeep", +"js-randomness-predictor", +[3,23307,13], +[0,26262,0,26263,4139], +[0,25510,29529,25758], +[0,6932,6622,6694,6704,6860,6695,4389,7159,5341,7202,7121,7060,7161,7141,7287,6698,3743,7311,6946,2090,6566,6907,7228,4799,5261,6863,2051,676,4643,7535,6748,6739,6618,2844,7252,6673,6790,7531,7226,1851,1612,4763,6598,6728,6868,6662,7148,6905,6668,7292,7272,6583,3767,364,6800,6874,4166,1698,2021,6821,3065,6435,3730,6882,4647,6857,6637,7031,7223,7080,3113,7220,1871,6801,7087,6938,7145,3195,7255,7162,6482,7094,6922,6615,6738,6654,8433,7212,7050,7521,1525,6892,6830,3432,10442,7053,7253,10443,6937,6894,6977,5592,6692,200,6940,6867,7242,7518,6582,3101,7038,57,7188,6809,6998,4484,4796,7089,7178,7182,6827,7015,6912,7011,6743,1451,6575,7117,6994,3046,2812,7199,2860,998,5122,1111,6696,6910,3529,7133,6048,1303,6634,1139,6846,6784,7192,6777,3053,5351,6624,3171,1896,2297,6960,7022,6597,5198,6802,6816,7317,4141,6765,6591,7236,1306,6681,5257,6564,100,7004,6333,6799,6774,7276,7196,6797,1263,1149,2649,7150,7165,6753,7107,6948,6975,6822,6787,6760,7046,5472,6651,6569,6825,7069,582,7191,6968,6631,6742,4744,7258,1925,6794,6804,965,7149,6917,2700,1192,2765,6081,7029,1417,5258,4426,6608,7044,7123,7222,3378,1616,3917,1614,1669,3209,6570,7155,6422,6714,6725,6606,6778,7300,6610,6716,1259,2585,1393,6918,1461,1213,7232,7172,6755,4014,6919,7209,7075,6818,6870,7039,6795,6761,6966,2154,6885,4707,6964,6646,7218,7169,2978,5501,1155,6611,6955,1862,1753,2220,6837,7336,4386,6638,6616,6553,7310,7061,6881,7298,8424,5675,3437,3456,6929,7157,6580,6751,7010,6648,3426,6952,8435,4384,7233,6697,4162,2150,3875,1108,5165,6926,3763,7229,592,3776,7288,5957,6700,2088,6650,7595,10446,7289,6805,7099,7084,7144,590,5374,5197,7077,5286,7248,2078,7085,7285,1781,6653,10441,2325,5281,1351,7309,7204,2696,2899,3430,705,7126,1697,2038,7025,6641,6620,1671,6859,6573,7146,7245,4649,3220,6667,1623,6793,6666,6903,7230,7026,6588,6858,1362,202,2832,7023,7284,6659,6577,7158,6594,7115,20215,6789,5614,7057,7528,7021,6605,6621,5260,6973,6913,6828,6563,6715,1460,7067,7072,6762,7033,7517,6702,7020,6887,5131,3778,6915,1593,5194,7071,1429,7042,6636,6841,3428,7007,7532,6803,7106,3073,6824,7227,7286,2845,7082,7114,7151,7297,6769,3766,6914,7189,7064,4720,6723,7205,6780,6683,7078,1858,6741,7262,6962,814,6657,7524,1544,7002,7527,1585,5511,1512,6921,6951,6856,7598,6854,8428,6586,6773,2105,7047,2671,1541,6623,594,6711,7147,6671,7256,7194,1165,6786,3768,6752,8427,1804,3441,7275,3033,6943,4354,4580,6758,7027], +"snackbar", +"inject-markdown", +[1,2343,26267], +[0,0,26268,26269,2537], +[0,2272,19270,2899], +[0,1111,1936], +[1,2343,26271], +[0,26272,26275,26276,2523], +[0,6513,4193,4484], +[2,32920,4521], +"rchitecto-", +[0,33821,7709,33826,33827,33831,33836,29543,4508], +[0,7200,1168,5472,3212,20188,29545], +[1,2343,26278], +[0,0,26279,26280,4139], +[0,6373,1437,29550,2151,2070,2323,2372,29552,4039,4042,4057,4076,4072,4484,4487,91], +[0,1896,5066,29554,29555,5122,12295,14554,5284,4453,29556,5131,1591,1932,4653,6434], +[1,2343,26282], +[0,0,0,26283,2523], +[0,7201,5131,1676], +[1,2343,26288], +[2,28288,26286,33678], +"redential", +"isequal", +[0,26289,26290,26291,4139], +[0,1364,1536,1676,1710,11479,2017,2929,4200,4763], +[0,8648,29574,5159,838,5160,840,8296,5601,1165,1662,1177,1895,1972,2203,3561,1894,3710,23535,3709,4355,4383,91,1983,1984], +[0,5592,5995,27,4699,4729,4030,6710], +"isfunction", +[1,2343,26294], +[0,0,26295,26296,2487], +[0,53,87,192,5467,1165,1195,1387,31429,1429,29582,1492,29584,1652,29585,2323,29586,2338,29587,29589,2361,2367,2384,2390,2419,2455,2464,2479,2482,2494,2496,2504,29592,2510,2530,2550,29593,2675,29594,2822,2929,2899,3198,29595,5561,3561,3722,4015,4019,4042,4045,21688,4939,29596,4193,8959,29597,4597,29599,2924,18237], +[0,1623,4329,2278,676,6398,6396,5130,14894,29603,29607], +[1,2343,26298], +[0,26299,26300,26302,34352], +[0,1437,29614], +[0,29618,7677,2675,2990,1894,91,1984], +"isplainobject", +[0,200,1473,1512,7208,6876,7201,6983,29609,3632,3073,6807,4166,1871,590,592,7009], +[1,2343,26304], +[0,26305,26306,26308,4139], +[0,7943,29630,3120,3744], +[0,48,53,68,13693,61,31689,73,31693,5757,5800,5818,5827,87,90,19696,19438,19181,442,34467,32229,29634,28970,29636,10837,10840,29639,966,968,972,29642,974,5087,11292,4874,4880,4883,8152,1175,1193,1195,20479,29643,11335,29645,1465,1584,1587,1593,1610,1700,1177,1879,1895,1922,1938,1947,1955,1959,1961,1976,2151,2203,29646,1192,11347,2774,2780,29652,2832,3561,3697,1894,3720,89,3816,3824,3847,29655,3957,4183,4270,4315,29660,4415,29661,35487,4468,4469,91,2924,4677,4681], +"isstring", +[0,29610,29666,29667,4627,6082,9204,5130,89,699,9291,5354,29668,29669,29670,29671,7320,29673,29674,29676,1473,998,8691,8295,29677,181,6073,10769,29678,4315], +[1,2343,26310], +[0,0,0,26311,2537], +[0,23584,23584,1936,3205,1002], +"@thednp/dommatrix", +[1,2343,26314], +[0,0,26315,26316,2537], +[0,29693,2228,2247,2253,2258,2263,2273,2281,2283,29694,2308], +[0,36653,36650,29702,15571,8192,5066,11316,18346,35060,2814,20632,6398,5131], +[1,2343,26318], +[0,26319,26320,22658,2443], +[0,3561,33145,4317,8712,1423,28572], +[0,4729,1138,3244,3467,4390,4763,12084,2070,710,614,1082,31705,1413,1676,2145,2856,33213,1145,1398,1410,977,2018,2755,3266,3930,4135,4072,11478,2105,6042,3479,3729,2924,3757,3784,33214,33173,842,9241,1525,1610,2553,11993,26453,23175,3530,4270,33215,29709,11534,13214,33200,33202,1628,11890,2659,16837,2689,33211,4227,4294,4425,91,24739,53,554,4865,33198,20463,13753,1154,33204,1536,1615,2805,4111,27062,4165,15040,33212,7080,104,8317,33146,33174,5364,5245,33191,4880,1195,1393,33206,1562,33208,2863,33210,3678,20508,4307,11804,33176,11477,4870,5254,33209,20465,15031,3878,13834,15048,97,33181,26733,15018,3509,15042,15047,101,8755,29877,33197,15606,15009,3502,15033,5216,33165,8648,10837,20374,4883,2661,15022,3322,51,87,11011,23452,1618,2674,4230,28512,15039,15046,13471,10879,7806,21122,16149,16566,3672,90,33156,617,11796,8264,33193,11800,1560,3676,3957,68,33768,15015,3688,9221,25652,33158,33167,34467,33195,36897,16841,18730,4409,33159,29876,24807,31666,16912,3605,16842,33170,33179,3177,4851,92,33162,19861,29517,29421,33172,10840,33183,33153,10825,30521,10827,20476,15273,83,16840,33189,3638,81,5715,29874,5757,5241,5820,5821,5785,1251], +[1,2343,26323], +[2,1882,24717], +[0,0,26324,26325,2399], +[0,1414,34238,2675,2990,3561,1906], +[0,3561,1623,6425,26543], +[0,0,21613,21614,34352], +[1,2343,34498], +[0,1448,4907,29733,3157,3173,3527,3721,11114,4207], +[0,192,5467,442,6061,16607,6063,6065,16608,16612,7746,4874,13210,29740,1009,1011,1610,1177,1953,2020,2203,2675,29741,2990,3536,1894,4039,4131,91,1984], +[0,8678,3758,7001,1017,29745,12295,12296,29746,29747,29748,158,3097,5131,33777,29750,29751], +[1,2343,26332], +[0,26333,26334,26335,34352], +[0,29758,29759,1398,34690,3127,3725,10397,29761], +[0,53,68,87,1195,29776,1465,24542,1628,1177,1879,31393,1938,24732,2092,8301,2651,29784,4307,4409,37871,2924,4676,4677,4681], +[0,8168,8170,8171,6975,8172,8173,1745,29786,29787,29729,8124,29788,29795,29796,29797,29798,29802,29803], +[1,2343,26337], +[0,26338,26339,26340,2523], +[0,3744], +[0,53,68,97,1177,1879,1895,1938,1947,1955,1959,1961,1192,5103,1894,89,3857], +[0,3857,5128,31912,89,5131,12295,12296,181,26542,23187,29556,29804,9944,7521], +[1,2343,26342], +[0,0,26345,26347,2523], +[3,532,8], +[2,26346,26651], +[0,53,87,97,29817,21155,1177,2675,2990,89,3857,91], +"@tdesign/", +[0,3857,5128,31912,89,5131,12295,12296,181,5396,29819,15813,29820], +[1,2343,26352], +[3,17904,13], +"sprintf-kit", +"uni-global", +[0,0,26354,26355,2443], +[3,25092,13], +[0,53,68,61,5241,83,87,90,5583,811,816,968,972,1165,1497,1652,1177,1895,31755,1955,1959,1961,1976,2675,2686,1192,2990,3561,1894,3744,89,3824,4042,8849,29826,6068,10854,4320,4323], +[0,89,35058,29831,3392,89,4627,29832,5131,12295,12296,29836,29837,29838,29839], +[1,2343,26359], +"ncjsm", +"tape-index", +[0,26360,26361,26362,34352], +[0,97,29843,29844], +[0,53,78,83,87,90,92,5522,107,29846,968,972,4880,4883,1009,1011,1030,1178,1413,1610,1177,1895,1955,1959,2675,1192,2780,2990,1894,89,3824,4039,91,1983], +[0,29848,29849,89,5128,38332], +[1,2343,26365], +"@standard-schema/spec", +[0,26366,26367,26368,2487], +[0,1420,29855,4507], +[0,5517,19438,442,29857,23689,1414,1437,1516,1532,668,1177,1895,1955,2020,2203,2675,2765,2990,3074,1894,4039,18710,91,4523], +[0,20627,1739,1745,1179,1783,5980,9591], +[1,2343,26370], +[0,26372,26373,26378,2443], +"terminal.js", +[0,810,1497,26570,16485,2017,2696,3876,4022,32284,5545,29869], +[0,48,53,87,90,92,97,19696,28091,19492,19438,442,28598,30507,810,11275,34467,827,10828,28147,28466,31235,7384,31237,28473,28476,968,972,974,29879,33123,29880,4874,4880,4883,15606,1030,17214,7677,1195,29883,20476,1393,29645,1610,17100,17101,17103,1687,1177,26322,1895,1915,1938,1942,1947,1955,1959,1961,30553,10851,2070,2203,2675,2832,2990,3127,3541,1894,89,3824,3847,3876,4039,4270,4409,4469,4473,91,4523,15088,1984,29887,2924,4676,4677], +[3,28685,11], +"refresh", +"overwrite", +"irtual-core", +[0,89,6071,9816,5128], +"tinyexec", +[2,17213,28937], +[1,2343,26382], +[0,26384,26386,26387,2537], +"date-format", +[0,29896], +"flatted", +[0,29900,29905,29910,29911,811,816,974,11096,11109,19203,29914,11111,29917,29921,1414,1429,29922,29924,1177,29925,1938,2832,8821,2899,1894,4042,29926,4146,4193,4196,4261,4072,91], +[0,29935,11619,11608,30891,11622,6907,29936,12899,5130,30442,17950,1283,29939,33359,11415,6624,12620,29940,29941], +"streamroller", +[1,2343,26392], +"@log4js-node/sandboxed-module", +"-producer", +[0,0,26393,26394,2487], +[0,53,13052,87,4042,4045,4058,4067,4415,29949,35487,4535], +[0,7838,29953,7518,3161,1098,29954,89,188,7880], +[1,2343,26401], +[3,9227,10], +"e-js", +[2,26396,26397], +"grunt-open", +[2,2235,4358], +[0,26402,26403,26404,2537], +[0,97,29959,10984,1673,3021,29960,4443,1155], +[0,5652,61,83,87,92,192,5467,6372,5583,811,16952,8850,816,6373,29966,29967,29980,26344,5139,4874,8149,11438,14334,1009,1011,11016,13061,7677,23203,13063,1031,36812,36805,11018,1165,1170,1420,12405,1527,1540,1610,1651,1652,1676,29972,668,1177,1881,1895,1938,1955,1988,2226,2675,2832,695,2990,3025,26804,3213,3561,1894,3725,29973,3957,4039,4042,34019,8849,11899,15277,29974,15911,10854,29975,29978,4073,6904,4081,29983,4484,91,1983,29987,1984,188,4630,4639,13151], +[0,188,5131,29990], +[1,2343,26427], +"esm2umd", +[2,26409,26410], +"int64", +"@astrojs/s", +"itemap", +"@pagefind/default-ui", +[2,26689,27593], +"uid2", +"astro-expressive-code", +"bcp-47", +"isemail", +"canonical-json", +[2,3138,12442], +"-phase", +[2,3081,26419], +"pagefind", +"remoting", +[2,25894,26422], +"loopback-", +"filters", +[2,26424,26425], +[0,26430,26432,26451,2523], +"globalize", +[2,25894,26428], +[0,7755,1869,2814], +"linkedom", +[0,53,87,23572,11301,1165,1168,30000,1597,1610,1637,1651,18259,1759,1177,1895,1903,1938,1954,1955,1958,1970,3363,3561,3564,3566,30030,3579,3605,30033,3613,3640,30039,30274,1894,4039,4042,4045,4055,4058,20981,30041,4067,20983,32978,4073,12309,4201,4320,4946,4360], +"or-remote", +[2,1544,26433], +[2,26424,26434], +[3,18637,12], +"tub-transport", +[2,26436,26437], +"datas", +"withastro", +"ource-juggler", +[2,26439,26441], +[2,26424,26442], +[3,18637,11], +"astro-integration", +"-transport", +[2,1716,26446], +[2,26444,26447], +"adapter-", +[2,32700,23187], +[0,12318,2090,30044,30045,13225,7518,5398,158,30046,190,5131,18346,9229,1542,30826,20937,2814], +[1,2343,26454], +"is-docker", +[0,26460,26471,26475,2523], +"loopback-boot", +"s6-shim", +[2,13897,26456], +[3,26435,12], +[2,26458,2585], +[0,1170,2812,1209,3183,4094], +"task-emitter", +[2,25894,26461], +[3,6738,11], +[2,26463,1524], +[2,25894,26464], +[2,1884,3081], +"processor", +"-preprocessor", +[2,22126,26468], +[2,2877,26469], +[0,1429,1177,10419,3188,2899,1241], +"sqlserver", +"StrongLoop", +"mBaaS", +[0,6703,1702,200,1586,21405,13397,33351,27,29854,30053,21402,13322,16697,28984,6667,6574,30056,31937], +[1,2343,26480], +[2,26478,29168], +[3,30636,28], +[2,26868,26869], +[0,0,26496,26497,2537], +"exact-versions", +[2,32700,7293], +[2,26485,24631], +"steno", +[3,31231,18], +[2,19036,20], +[2,5745,1852], +[2,2029,26487], +[2,32731,26494], +"embed", +"Storage", +"localStorage", +[2,1577,26491], +"polygon", +[2,32731,32729], +[0,1165,1387,2323,30061,2379,2409,2450,2482,2494,2496,2510,18426,30064,3591,4320,4323,4747], +[0,29993,30066,30067,1623,695,5131], +[1,2343,26500], +"rslog", +[0,0,0,26501,2487], +[0,89,6649,10057,6355,3875,1542], +[1,5293,26508], +[2,13104,1936], +"@lucide/build-icons", +"@lucide/", +[2,4080,591], +[2,26505,26506], +[0,8391,26515], +"Lucide", +"HTML", +"Feather", +"Icons", +"Icon", +"SVG", +1731196800000, +"Feather Icons", +"Fontawesome", +[1,2343,26519], +[0,26521,26522,2514,4139], +"Font Awesome", +[0,30078,9307,9311,30068,30052,30073,9313,30072,1497,12412,30075,2071,7610,2579,21308,3137,27008,3140,12627,26929,26914,17429,9337,3973,9340,3988,30049,30069,30059,27062,9348,4207,17913,4473,30058,4555,28830,4745,4763], +[0,11522,972,1006,12396,9363,30082,4880,4891,1030,30084,23312,23314,3286,89,3824,4549,1984,28965], +[1,2343,26524], +[0,26525,0,26526,2537], +[0,30097], +[0,1674,30099,30100,15001,13739,35071,30103,30113,19571], +[1,2343,26529], +"decree", +[0,26530,26531,13347,2537], +[0,20378,3530], +[0,11976,4874,20374,2071,30138,2070,4441,1531,91], +"manipulate", +"blur", +"sharpen", +"flip", +"hue", +"saturation", +[1,2343,26540], +"lightness", +[0,0,0,26544,4139], +"transparency", +"fade", +"opacity", +[0,91,553,1973,8791,2022], +[1,2343,26546], +[0,26547,2667,26554,2537], +[0,30173,4484], +"@75lb/deep-merge", +[3,1107,11], +"-sequences", +[2,26549,26550], +[2,1601,7880], +"load-module", +[0,30175,30176,27227,30177,30178,91,6742,57,15266,2873,1993,7256,676,19976,30179,5995,6400], +"-anywhere", +[2,17242,26555], +[2,30307,553], +[1,2343,26559], +[0,0,6230,26560,2399], +[0,32054,4963,4967,6082,3286,3287,89,11167,31512,181,630], +[1,2343,26569], +"-home-dir", +[2,18132,26562], +"mdast", +[2,2580,26564], +"fetch-happen", +[2,3094,26566], +[2,12428,1783], +[0,6234,6230,26575,4139], +[2,25212,28139], +"-unique-id", +[2,5843,26571], +[2,4402,163], +"y18n", +[0,1501,4963,4967,5342,6082,3286,3287,89,5341,9057,181,630], +[3,9357,10], +"umnify", +[2,26576,26577], +[2,8140,1687], +"ke-fetch-happen", +[2,18655,26580], +[1,2343,26583], +[0,26585,6230,26588,2523], +"@types/which", +[0,3826], +"wizard", +"task graph", +[0,4963,18263,1786,4967,6082,3286,3287,89,181,630,9229], +[1,2343,26590], +[0,26592,6230,26593,4139], +"zoroaster", +[0,9041], +[0,4963,4967,6082,3286,3287,3412,3730,89,181,630], +[1,2343,26595], +[0,26592,6230,26598,2537], +" manipulation", +[2,1871,26596], +[0,30246,4963,4967,6082,3286,3287,89,7193,181,630], +[1,2343,26600], +[0,0,6230,26601,2537], +[0,4963,4967,6082,3286,3287,89,30256,24843,30251,181,630], +[1,2343,26607], +[3,7678,9], +[2,4501,6996], +[2,12612,26604], +[2,26603,26605], +[0,26613,26615,26618,2537], +"lavalink client", +"audi", +"o streaming", +[2,26609,26610], +"music", +[0,3135], +"music bot", +[0,48,53,5241,87,92,19344,10879,30263,5601,4873,4874,1009,1011,1177,1895,1938,1942,1953,30266,13668,3401,4039,91,1984], +"emoji-datasource", +"voice chat", +[0,30270,3541,1651,2899,1984,1192,2765,3283,28360,30271,2793,1973,11937,16237,5472,30272], +" integration", +[2,1721,26619], +" performance", +[2,6732,26621], +[1,2343,26625], +"easy-to-use", +[0,26634,26635,26637,2487], +"feature-rich", +"seamless", +[2,26627,26619], +"communi", +"ty support", +[2,26629,26630], +"open-source", +"lavalink", +[0,30288,30293,30295,26557,32842,30297], +[0,30303,6494,4874,30306,30305,30310,2026,4039,1531,91,1984], +[3,66,19], +[0,30297,2026,5995,1851,5592,13527,91,5284,2663], +[1,2343,26639], +[0,0,26640,26641,2443], +[0,3377,26230,4255,1973,30351], +[0,5131,28125,4354,1388], +[1,2343,26643], +[0,26645,26646,26649,2523], +"convex-helpers", +[0,12449,4549,12396,2586,21016,32568,4233,12447,32567], +[0,1414,1177,3958,1894,3541,3985,91,4874,15632,32484,27706,27711,30411], +"intermediate", +"recursively", +[0,1745,9102,25131,1932,3958,32462,3984,4549], +[1,2343,26652], +"theme-generator", +[0,26653,26654,26655,2523], +[0,30416,30425,30431,30434,30438,30439,30441,30445,30447,30449,30450,30452], +[0,48,4487,91], +[0,30455,5133,30960,1851,5284,27838,18969,30456,5131], +[1,2343,26659], +"dingbat-to-unicode", +"lop", +[0,26665,0,26199,2443], +"-licenses", +[2,22190,26660], +[2,13888,26661], +"duck", +"hamjest", +[0,25766,30802,1461,30809,2731,3744,3776,89,3824,3847,4649], +"office", +[1,2343,26668], +[0,26669,0,26199,2399], +[0,89,3824,3744,25766], +[3,36878,12], +"ternal-editor", +[1,2343,26673], +[0,26686,0,26687,4139], +"@nestjs/", +[2,26674,10896], +"@nestjs/co", +[2,26676,686], +[2,26676,23], +[3,31,9], +[2,26679,2026], +[2,26674,26680], +[3,9687,9], +"wagger", +[2,26682,26683], +[2,26674,4521], +[0,4484,2735,547,2858], +[0,2733,5130,1098,5131,1896,8674,8675,1591,8677,8678], +"@nestjs/cli", +"@nestjs/t", +[2,26689,8615], +[1,5293,26692], +[0,8391,26700], +"asherize", +[2,6491,26693], +[3,12284,16], +[2,26695,2528], +"llaboration-core", +"limiter", +"embla-carousel-reactive-utils", +1733616000000, +[1,5293,26722], +[2,19183,26714,3181], +"eigen", +[3,578,11], +"de-highlight", +[2,26704,26705], +"@tabler/icons-react", +[3,3672,15], +"mantine", +[2,26708,26709], +"imple-vars", +[2,3677,26711], +"swr", +[3,25141,13], +"context-menu", +"peowly", +"context menu", +"server ", +[2,26718,4963], +[2,7519,26719], +"user ", +[0,8391,26723], +1733961600000, +[1,5293,26728], +"experience", +[2,26721,26725], +"usability", +[0,8391,26729], +1734220800000, +[1,2343,26731], +[0,0,26732,26734,2537], +[0,4172,2278,34683,4484,1177,4039,4042,4086,4072,3363,3561,2151,1894,1367,1610,4320,91,6375,3400,3566,30616,1165,1540,6376,3019,34673,1907,30617,1938,1982,30620,10817,1011,15290,6392,1009], +"axe-playwright", +[0,1623,2278,6398,20897,1283,699,5130,30622,27837], +[1,2343,26736], +[0,26737,26738,26742,2537], +[0,97,30628,30666], +[0,48,53,61,71,13052,83,85,87,94,4856,6503,4874,1178,1195,1208,1290,30691,30696,1389,1429,1431,31602,1610,1177,2026,10621,2832,2899,3421,705,4039,4218,4409,91,2282,4650,2924,4677], +[2,11932,26740], +"umd-wrapper", +"mapbox", +[0,6599,5131,5592,29744,30730], +"mapbox-gl", +[2,4609,4056], +[1,2343,26748], +"mapboxgl", +"legend", +[0,0,26749,26750,2443], +[0,1414,1429,1540,1596,668,1177,2832,3010,2899,2278], +[0,5284,5131,12295,12296,7179], +[1,2343,26752], +[0,26753,26756,26757,2487], +[0,3775,1473,1673,30778,1209,1461,30779,3376,30774,30772,30776,15616,3911,30770], +" processing", +[2,2585,26754], +[0,11336,89,3824,4880,4870,97,4883,30783,972,968,974,20562,4808], +[0,89,12248,5128,30731,30785,30786,4627,4963,181,5130,4967,5131], +[1,2343,26759], +[0,26760,26765,26199,2537], +[0,25766,30802,30803,30405,30458,1461,2731,3744,3776,89,3824,4649,30809], +"linkify-it", +"mdurl", +"punycode.js", +"uc.micro", +[0,30819,30820,30822], +"footnote", +[2,3108,26766], +[3,26767,14], +"r-inline", +[2,26768,26769], +"ins", +[2,3108,26771], +"ark", +[2,7613,26773], +[3,7617,14], +[2,26775,22164], +"ndoc", +[1,2343,26781], +[3,5956,14], +[2,26779,13218], +[0,0,26782,26783,2537], +[0,6066,1894,4042,4045,12611,4048], +[0,4967,9006,29633], +"@nx/docker", +[1,2343,26787], +"anchor", +[0,26788,26789,26790,2537], +[0,16115], +[0,972,4880,4883,1628,2144,2675,89,3824,3895,4307,4469,21180,4484,91,2924,6482], +[0,1631,30845,30847,30848,4627,6398,5131,4453,1631,5399,30858,32040], +[1,2343,26792], +[0,26793,26794,26795,2399], +[0,10780,1437,1525,2020,2151,3714,3742,4135,4548,4707,4726,4739,4753], +[0,30868,16480,1414,2070,2203,14775,30889,2658], +[0,30829,31731,30870,5131,12295,30871,12296], +"emojies", +[1,2343,26798], +[0,26801,0,26802,2537], +"emoticon", +"emoticons", +[0,3533,30018,28941,29602], +[0,29699,2942,6807,1179,1745,29703,29753], +[1,2343,26810], +[2,26807,26809], +"from-to", +[2,4279,26805], +"lodash.u", +"pdf-text", +"pperfirst", +[0,26811,26812,26813,34352], +[0,31834,31846,29951,66,29890,5582,635,29057,1091,1525,18145,30089,31002,13812,2822,26014,3079,3181,3310,30095,4025,6477,4135,4183,4474,91], +[0,1177,1939,1959,1969,2151,1192,2829,3123,4039,30269], +[0,5593,1745,1179,1783,5061], +[1,2343,26816], +"rows", +[0,26817,26818,26819,2523], +[0,7614,19976,3445,1371,1437,2020,2975,3478,4484,1209,4135,1593,3742,2924,1457,2151,4447,1525,2641,1483,1710,1869,3884,13834,4689,30459,4562,30876,3885,30878,32359,30882,9329,4681,30890,2651,30895,30896,4676,30899,30900,30902], +[0,36864,18055,4883,8286,30913,3904,33768,29125,30915,30919,4985,38298], +[0,89,12478,2924,1745,18061,18063,467], +[1,2343,26821], +[0,26822,26823,26824,2443], +[0,4484,2735,547], +[0,3377,1192,89,1177,4039,4042,4468,2151,1894,3824,91,5087,4874,4880,4883,8656,8660,972,2780,10817,968,1011,20562,1009], +[0,2733,5130,89,5131,1896,24364,8674,1591,8677,8678], +"microtime", +[1,2343,26828], +"theredoc", +[0,0,26829,26830,2537], +[0,5087,1009,1011,1593,1596,1637,1177,1192,2774,2794,2832,30935,4042,4468,91], +[0,32814,6422,6805,2013,24800,31767,91,5284,11512,4627,3111,30430,11608,6400,1936,9622,8174,30937], +[1,2343,26832], +[0,26833,0,26834,2537], +[0,1497,9272,9273,3744,97,6372,444], +[0,89,5128,9267,30943,6653], +[2,13090,4226], +"lazy-cache", +"list-item", +[3,19516,13], +"mixin-deep", +"repeat-string", +[1,2343,26848], +"glossary", +[2,4001,1932], +" of contents", +[2,176,26844], +"of-contents", +[2,16065,26846], +[0,26850,0,26851,2487], +"node-bundle-require", +[0,9273,3744,97], +[0,89,5128,9267,699], +[2,28001,28034,16111], +[1,2343,26856], +[2,24559,18089], +"gemoji", +[0,26857,0,26858,4139], +[0,1497,3847,9272,3744,97,5090], +[0,89,5128,9267,594], +"CommonMark", +[1,2343,26861], +[0,26862,0,26863,2523], +[0,30963,30964,1699,3547], +[0,91,4521,678,12659,4030,7096,5592,30967,30968,5995,30969], +[1,2343,26867], +"jsonpointer", +"run-con", +[0,26871,0,26863,2523], +[3,11026,13], +"uilder", +[2,10829,2202], +[0,30978], +"babel-re", +"@markedjs/eslint-config", +"@markedjs/", +"testutils", +[2,26874,26875], +"marked-", +[2,26877,5342], +[1,2343,26884], +"marked-man", +"recheck", +"@egjs/component", +"@egjs/list-differ", +[0,26886,26887,26888,2537], +"markup", +[0,1091,4135,2105,30986,30987,31339,20786,2745,27168], +[0,16499,1983,1984,1597,2071,91,36864,3401,19232], +[0,30990,30991,20998,5194,5130,2323,5284,1936,6082,1783,6710,30993,38087,8674,12479,5347,5348,30997,30998,30999], +[1,2343,26890], +[0,0,26891,26892,2523], +[0,1759,20463,1763], +[0,89,3286,23803,1759], +[1,2343,26894], +[0,26896,26897,26898,2537], +"v8-argv", +[0,31705,4227,31044,4121,2626,6473], +[0,4757,1192,3144,1177,3266,1701,2924,2151,2182,1894,1610,3758,4507,2794,91,53,5087,4874,1615,4677,1195,29283,3401,3878,4891,4864,21122,8818,31054,4681,31055,33002,31057,2784,4409,1895,1955,2780,4684,5241], +[0,89,5284,2924,26375,11498,31062,3000,2998,6109,6609,2999], +[1,2343,26903], +[3,2718,14], +"refixer", +[2,26900,26901], +[0,0,26904,26911,2443], +[0,34264,2222,31069], +"vent-listener", +[2,11352,26905], +"typed-event-target", +"simple-assign", +"@onesy", +[3,1441,29,6], +[0,31076,2220,2844,553,91,9381,5130,1932], +[1,2343,26913], +[0,26918,26919,26923,2523], +"react-medium-image-zoom", +"complex.js", +"latex", +"escape-latex", +[0,3467,6482,1983,31090,1371,1437,2020,1759,1209,3539,4135,1458,3363,3471,2924,1457,2151,2720,1894,1525,1587,1483,1628,91,3921,31091,31093,1393,13223,1540,4025,4307,31094,31095,31096,31097,9322,3878,31098,31099,31101,8161,29182,31105,10936,31106,31109,31110,31111,2651,31114,4679,4684,31117,12361,3177,4676,31120,31123,31125,4992,31127,2135,24723], +[0,1192,89,2190,3824,5087,4874,4870,31131,4864,31134,31138,4985], +"-natural-sort", +[2,5284,26920], +[2,17414,3046], +[0,31140,6354,31141,17944,31146,31153,27837,5592,1303,5130,27,1781,2934,31154,33359,3424,28438,3469,4030,7096,1965,31155,12479,5284,29727,31047,31048,31045,31042,31156,31171,5995,18063,31175,2968,31176,89,6071], +"jsep", +"ndarray", +"-determinant", +[2,26925,26926], +[1,2343,26937], +[2,28402,28403], +"ndarray-gemm", +"ops", +"ndarray-ops", +"ndarray-pack", +"numeric", +"numericjs", +"pad-", +[0,26939,26942,26943,2537], +"l-time-collaboration", +[0,53,4982,1420,1595,31187], +"sylvester", +"zeros", +[0,4361], +[0,11525,8221,89,364,5592], +"mathematics", +"algebra", +"complex", +"fraction", +[1,2343,26949], +[0,26950,26951,26952,2537], +[0,104,18089], +[0,31206], +[0,1936,2587,1172,23267,36587,23266], +[1,2343,26954], +[0,0,0,26955,2537], +[0,11961,10339,10340,5122,5995,1594], +"charenc", +[1,2343,26958], +[0,26959,26960,7537,2523], +[0,1673,1511,31225], +[0,2675,1984,91,4874,975,11976,192,11978,7677,5467], +[1,2343,26962], +[0,26964,0,26966,2523], +"md5sum", +[0,1004], +"checksum", +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31239], +[1,2343,26968], +[0,26964,0,26997,34352], +[2,27022,27023], +"d-character-reference", +[2,5877,26970], +[2,15103,26971], +[3,17995,15], +"decode-n", +"-char", +"-reference", +[2,6842,26976], +[2,26975,26977], +[2,10129,26978], +[2,26974,26979], +[2,26973,26980], +[3,26981,22], +[2,26982,1871], +[2,3370,16906], +[2,26973,26984], +[2,26973,5511], +[2,26973,553], +[3,4292,10], +[2,26988,8193], +[2,9406,26989], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31260], +[2,20627,6660], +[2,17991,6147], +[1,2343,26996], +[3,3137,10], +[0,27025,0,27026,34352], +[0,6400,4967,12042,12045,12047,1424,12048,12049,12050,12044,12056,12058,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,31268], +[1,2343,26999], +[0,26964,0,27001,2537], +[3,26986,16], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31276], +"anitize-uri", +[2,27000,27002], +[1,2343,27007], +"lines", +"trim-lines", +[0,26964,0,27001,2523], +[2,3138,3987], +[3,12133,20], +[2,27009,3987], +[1,2343,27012], +[0,26964,0,27001,2443], +[1,2343,27014], +[0,27015,27019,27020,2487], +[0,7709,33828,31294,31296,28384,1364,1532,1553,1560,1575,1594,29013,1874,2026,31300,31303,2040,33596,13870,2212,31305,2593,2738,11993,2863,1209,3173,3220,3222,3237,3242,3345,3478,12286,17009,4143,4351,31306,1155,25370,4729], +[2,27577,3432], +"mdn", +"mozilla", +[0,7806,38176,9227,5601,7808,10406,8264,4870,38179,24156,4874,16936,4891,9241,2020,2659,3297,4342,91,1984], +[0,12322,3730,30045,31310,31311,6949,21611,31312,5403,5995,4699,2026,20863], +[1,2343,27024], +[3,10848,19], +[3,2791,11], +[0,27037,0,27034,34352], +[0,188,4452,1593,668,2822,2924,1457,3084,1628,3560,4027,4634,4639,13152,53,1615,2092,1165,1195,37215,31325,4689,36119,3618,31331,31332,4681,1584,3676,31333,31334,4645,31343,3177,31347,31348,1549,31351,31353,3463,21287], +[0,1745,1179,188], +[1,2343,27028], +[0,27029,0,27030,2487], +[0,3725,3105,18587,3114,3107,31343,13122], +[0,1745,1179,1783,188,19469], +[1,2343,27032], +[0,27033,0,27034,2523], +[0,31332,3008,3084], +[0,1745,1179,188,19469], +[1,2343,27036], +[0,27040,0,27034,34352], +[0,31331,3029], +[1,2343,27039], +[0,27075,27077,27064,34352], +[0,31331,1615], +[1,2343,27042], +[0,27043,0,27034,4139], +[0,3412,31331], +[1,2343,27045], +[0,27046,0,27034,2523], +[0,31331,31343], +"@blazediff/core", +[1,2343,27049], +[0,27050,0,27034,2537], +[0,31331], +[1,2343,27052], +[0,27053,27054,27034,2523], +[0,1437,1869,2151,2205,2226,2570,4135,4452,10761], +[0,31414], +[1,2343,27057], +[3,26482,36], +[0,27058,0,27034,2537], +[0,1209,4333,13092,4334,31331,21288,31348,31375,31425,31314], +[1,2343,27060], +[0,27061,27063,27064,2537], +[0,31434,31435,31438,31442,31444], +"server-only", +[0,1429,2899,4474,2924,48,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,31455,31456,92], +[0,31459,31460,9439,31461,5131,11194,4653,1616,31462,31463], +[1,2343,27067], +"@types/title", +[0,27068,27070,27064,4139], +[0,31435,31469,31470], +[2,27074,29387], +[0,1429,2899,4474,2924,48,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,31456,92], +[1,2343,27072], +[0,0,0,2514,34352], +"hashring", +[3,30708,19], +[0,3698,11194,1582,31477,31480], +"jackpot", +[0,1429,2899,1177,1593,4474,2924,4469,48,1628,91,53,13693,4856,5087,4874,3165,3400,4677,6503,4880,4307,31484,5000,85,94,87,1954,1959,1938,1958,1895,1903,1955,1970,92], +"InnoDB memcached API", +[1,2343,27082], +"failover", +"hashing", +[0,27086,27087,27064,2443], +"membase", +"memcache", +"nMemcached", +[0,31465,31477,31480,31489,31490,31492], +[0,1429,4653,2899,1177,9420,1593,4474,2924,1894,48,91,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,1954,1959,1938,1958,31496,1895,1903,1955,1970,92], +[1,2343,27089], +[0,27095,27070,27064,2443], +"@json", +"joy.com/json-pack", +[2,27090,27091], +[3,27092,13], +[2,27093,614], +[0,4729,31435,31469], +"tree-dump", +[1,2343,27102], +[3,7746,11], +[2,8184,3358], +[3,4490,14], +[2,27100,10896], +[0,27104,0,27116,2487], +"fs.js", +[0,1497,31515], +"in-memory", +"fsa", +" access", +[2,6771,27107], +" file system", +[2,970,27109], +"webfs", +"crudfs", +"opfs", +"casfs", +"content ", +[0,31517,31518,5131,12344], +"able storage", +[2,15427,27117], +[2,27115,27118], +"pvu", +[1,2343,27123], +[2,7467,11017], +[0,0,0,7983,2537], +[2,24399,4162], +[2,2068,7906], +"mem", +"nanocolors", +[1,2343,27129], +[0,0,0,27131,2523], +"memoization", +[0,1098,5130,1388,17050,5472,12899], +[1,2343,27133], +[0,9756,27137,27139,2537], +[2,27135,1276], +[3,5536,15], +"gulp-exit", +[0,1166,1437,1596,3421,4255,4257], +"ram", +[0,1111,14903,200,30248,2966], +[1,2343,27141], +[0,17263,27142,27143,2523], +[0,23689,7892,10410,4874,20959,28502,1364,28556,2323,31190,2526,2765,31539,31540,2272,3297,4039,4089,31541,4130,4474,4487,31194,91,31195,31186], +[0,1973,5472,11132,13841,28522], +[1,2343,27145], +[0,0,27146,27147,2523], +[0,1173,1178,14318,1264,14237,1272,1177,1881,13936,1895,1935,1938,2126,2675,1192,2990,1894,4039,4535], +[0,31549,31550,31553,31565,9006,3015,31566,15813,10725,30672,5066,15571,89,31567,1098,188,12295,5131,28125,31568,31569], +[1,2343,27149], +[0,27150,27151,27152,4139], +[0,17013,31573,18695,1525,1544,18671,2107,2036,14940,18708,3173,31576,4039,18667,4449,18670,4547,18692], +[0,442,4856,9417,31586,31593,6494,31595,7746,4874,31607,6520,31613,1009,1011,31615,1429,1431,1587,1177,1895,1951,1954,1955,2020,2116,2212,12870,2899,3560,1894,6021,4085,4135,4193,4196,18698,4474,91], +[0,14932,1388,6147,9381,4967,13441], +[1,2343,27154], +[0,27155,27156,27157,2537], +[0,31573,14940,18714,18675,4039,4085,12937], +[0,1429,1431,2899,31627], +[0,9381,6147,4967,1388,14932,13441], +"fast refresh", +[1,2343,27160], +[0,27161,27169,27157,2537], +[0,17013,2036,6474,3173], +"trim-newlines", +[2,1420,21640], +[2,1677,21640], +"_comments", +[2,6865,27165], +[3,9488,13], +[2,27167,2104], +[0,1429,18766,2026,2272,2899,14942,4008,4085], +"-options", +[2,3183,27170], +[1,2343,27175], +"cat", +"kitten", +[0,27176,27177,27178,2537], +[0,2674], +[0,2292,2272,2899,4170], +[0,13428,1388,14336,12197,5472], +[1,2343,27180], +[0,0,27181,27182,2537], +[0,1173,1175,31653,1264,1429,2899], +[0,1420,15321,1623,965], +[1,2343,27186], +"from2", +"is-standalone-pwa", +[0,0,27187,27188,2537], +[0,19325,31265,1414,1537,1894,3985,3998,4039,4389,4505,91,1906], +[0,1936,18944,18089,6843,11043,1213,31661], +[2,3028,5056], +"stat-mode", +"ware", +[1,2343,27197], +"drafts", +[2,10722,27193], +"dir-equal", +[2,15340,27195], +[0,0,27187,27198,2523], +[0,1936,31670,18944,18089,6843,11043,1213,31661], +[1,2343,27200], +[0,0,27187,27201,2537], +[0,1936,18944,18089,6843,11043,1213], +"7zip-bin", +"node-7z", +"er-helper", +[2,18536,27204], +[2,3306,27205], +[1,2343,27208], +[0,0,27209,27210,2537], +[0,19325,31265,1414,1537,2577,2584,1894,3971,3985,3998,4039,4389,4505,91,4549,1906], +[0,1936,18944,26934,6843,11043,31661,31676,1213], +[1,2343,27212], +[0,27213,22487,27214,2537], +[0,31701], +[0,1473,7208,6616,1623], +[1,2343,27216], +[0,0,23215,27217,2523], +[0,965,1936,14186,34254,11590,1644,1646], +[1,2343,27219], +[0,27220,16487,27222,2537], +[0,2053,31724,20273], +"@surma/rollup-plugin-off-main-thread", +[0,1739,1745,8623,1179,1783,5354,26096], +"asyncro", +[3,1225,32], +[2,27224,6567], +[3,13998,31], +[2,7256,591], +[2,27226,27227], +[1,2343,27236], +"throw-", +[2,27230,27227], +[2,69,27231], +"directory-", +[2,27233,1633], +[3,16482,15], +[0,0,27240,27241,2523], +"evelopit", +[2,27235,27237], +"merge-d", +[0,2899,1429,2759], +[0,1623,6413,3766,31991,5131,1644,3529], +"river-install", +[2,27239,27242], +[2,3382,27243], +[1,2343,27247], +[2,14585,6082], +[0,0,27248,27249,2487], +[0,1596,2759], +[0,1871,3656,16906,1623,25232,6422], +[1,2343,27253], +[2,9280,20627], +[2,17991,27251], +[0,27254,27268,27269,2537], +[0,1634], +"factory-space", +[2,17991,27255], +[3,17995,17], +"unked", +[2,27257,27258], +[3,17995,16], +"ombine-extensions", +[2,27260,27261], +[2,26973,10368], +"resolve-all", +[2,26973,27264], +"ubtokenize", +[2,27000,27266], +[0,1414,668,1177,2899,4042,4228], +[0,1623,15215,2632,3178,16918,16919,31748], +[1,2343,27271], +[0,27272,27273,27274,2537], +[0,1147], +[0,1177,1895,1955,1894,4384], +[0,5675,57,7119,200,1523,7058,16159,31759], +"fill-range", +"@ember-tooling/blueprint-model", +"bracket", +[2,24559,1227], +[1,2343,27283], +"expansion", +"extglobs", +"lookahead", +[0,27284,0,27286,4139], +[0,1122,1125,31764,1129,1532,2220,2222,2817,18023], +"lookaround", +[0,31775,5995,2195,31776], +"lookbehind", +[1,2343,27290], +"negate", +[0,27294,0,27295,2537], +"negation", +[2,7623,22245], +"posix", +[0,2817,3502,18023], +[0,31775,5995,13531,20999], +[1,2343,27297], +[0,27300,0,27305,2537], +[3,7746,12], +[2,27298,1747], +[0,1532,2817,3181,3502,18023,31802], +"mime-score", +"runmd", +[2,4865,27304], +"rex", +[0,31775,5995,17977], +[1,2343,27307], +[0,27308,0,27309,2537], +[0,31809,2714,2867,3181], +[0,31775,5995,31804,31812], +[1,2343,27311], +[0,27312,0,27313,2523], +[0,1122,1125,31764,1129,1532,2220,2222,2817,3502,18023], +[0,31775,5995,2195], +"Min Heap", +"min heap", +"maxheap", +"min-heap", +"heap", +"Binary Heap", +"binary-heap", +[2,7247,17709], +[2,27318,27321], +[2,27315,27321], +" binary tree", +[2,15773,27324], +"heapify", +[2,13199,2656], +"heap sort", +"@utoo/pack", +"heapify up", +[1,2343,27335], +"heapify down", +"Priority Queue", +"priority", +[0,27342,0,27345,2537], +" queue", +[2,27334,27336], +[3,18020,13], +"-queue", +[2,27334,27339], +"priority q", +[0,1122,1125,31764,1129,2817,3502,18023], +"priorityQ", +[3,27325,15], +[0,31775,5995,17978], +"extract min", +"min ", +[2,27347,27337], +" priority", +[2,7287,27349], +[1,2343,27361], +"ing property", +[2,4327,27352], +" resizing", +[2,14000,27354], +"priority-", +[2,27356,20332], +[2,27357,26754], +[2,11512,27349], +[2,3768,27349], +[0,0,0,27362,2537], +[0,31775,5995], +"decrease key", +[1,2343,27367], +"increase key", +"searching", +[0,27368,0,27362,2399], +[0,3502], +[1,2343,27370], +[0,0,27371,27372,34352], +[0,5087,4874,1596,2070,1192,2822,31851,4468,4487,4490,31194,91], +[0,36720,7119,57,22856,5131,31568,7310,28125,888,8549,1388,18691], +[1,2343,27374], +[0,27375,27376,27381,2487], +[0,3127,3725,31872,31873,31869,8959,6330], +[0,1192,1170,2675,2968,1177,3188,4039,4042,4333,1637,1457,32826,1894,11401,1610,1193,53,1532,2990,2997,3400,1387,13834,8648,87,1939,31897,31901,4048,68,1938,4077,4069,1895,1955,4055,31899,1567,4067], +"@putout/minify", +"b64-images", +[2,1625,27378], +"readjson", +[0,2295,1739,1745,31903,1179], +[1,2343,27383], +[0,27384,27389,27396,2399], +[0,3445,1437,4747,1544,31910,17964,1836,2151,2182,3084,31915,3000,4151,4562,21847,31911,1549], +"try-catch", +"@arktype/attest", +"bench-node", +"try-to-catch", +[0,1166,1594,2020,2675,1177,4039,4042,2990,31917,4257,19286,31919], +"escover", +[3,19709,16], +"tout", +[2,27391,27392], +"madrun", +"supertape", +[0,17964,2295,1739,1745,31903,1179,200], +[1,2343,27398], +[0,27399,0,27400,2523], +[0,31939], +[0,965,31838,2814,5131,35059], +"brace", +[1,2343,27405], +"-expansion", +[2,27401,27403], +[0,27409,27410,27411,2537], +[2,25824,27403], +[2,4853,27406], +"zstandard", +[0,37135,1209,3847], +[0,48,53,87,90,1193,1503,1843,1845,1177,1895,1903,31952,1938,1954,1958,1959,1970,1192,1894,31953,3744,3775,89,3824,3904], +[0,1843,1192,8745,21009,3717,1448,6270,5472,2275,1973], +"jest-fixed-jsdom", +[1,2343,27414], +[0,27415,0,27416,2523], +[0,1086,31969,1362,31970,4484,4734], +[0,12666,1149,31972,31973,31974,31975,20672,31976,31977,7682,2090,158,3097,6774,5131,31978,31979,1644,1862,3972,31980,2056], +[1,2343,27419], +[2,27423,13083], +[0,0,8134,27420,34352], +[0,1867,23615,1936,18944,18089,31998,2574,20215,6435,1283,23584,6692,22982,4741,32000,32002], +[3,927,11], +[1,2343,27429], +[3,1915,14], +[2,27426,15001], +"signed", +"@prettier/", +[2,19569,27530], +"certificate", +[0,27430,27431,27432,2523], +[0,1448,32006,1869,1291,1180,1287,2151,32007,3127,3183,37708], +[0,1173,1208,1240,1280,1503,32009,1177,2899,3421], +[0,1776,5592,1746,1745,6789,32011,6746,32013,7221,32015,7011,32016,6615,32018,7194,32019,32027], +"fast-archy", +[1,2343,27435], +[0,0,9839,27436,2537], +[0,1177,6741,6939,1932,9711,5547,3624,2295,1745], +[1,2343,27439], +"ufo", +[0,0,27446,27452,2537], +[3,28920,12], +"dom-selector", +"jest-stencil-runner", +"fast-color", +[2,2023,9463], +[2,21195,27444], +[0,2212,4257,4389], +"mobservable", +"reactive", +"frp", +[3,19780,13], +"active", +[0,1745,3966,32037,27018,32038,30248,202], +[1,2343,27460], +"-programming", +[2,27451,27454], +[2,27450,27455], +[3,17943,11], +[2,6649,27457], +"data flow", +[0,15821,27461,27462,2537], +[0,4874,1414,1894,3985,3998,4481,4505,91,1906], +[0,23266,2587,23267,614,6435,1936,2741,11512], +[3,517,14], +[2,3191,1422], +[3,31504,15], +[1,2343,27469], +[2,13163,10101], +"expose-gc", +[0,15821,27461,27473,2487], +"-detector", +[3,20575,13], +"thingies", +[0,23266,2587,23267,614,6435,1936,1623,3585,1644], +"browser-st", +"dout", +[2,27474,27475], +"yargs-", +"@types/depd", +"rser", +"unparser", +[2,27477,27480], +"@11ty/posthtml-urls", +"inclu", +"-language", +[2,8785,27484], +[2,27483,27485], +[2,5340,27486], +"@moch", +"a/docdash", +[2,27488,27489], +"fail-", +"on-e", +[2,10372,4408], +[2,27492,27493], +[2,27491,27494], +"s-utils", +[2,13587,27496], +"inline-links", +[2,3986,27498], +"rewiremock", +"unexpected", +[2,668,27511], +"-eventemitter", +[2,27501,27503], +[3,27504,11], +[2,27505,3053], +[2,27505,3065], +[3,27507,12], +[2,27508,2917], +"uslug", +[3,1208,16,5], +"@11ty/recursive-copy", +"node-retrieve-globals", +[2,9374,27515], +"match-helper", +[1,2343,27522], +[2,5329,11807], +[2,5340,23767], +[2,9309,27520], +"node-loader", +"@zachleat/noop", +[0,27523,27524,27527,2537], +[0,12396,23288,23289,3746,4233,23257,23258], +[0,7729,4874,1414,2854,3493,1894,3985,3998,4505,91,1906], +"test-console", +"xmllint", +[0,23266,2587,23267,614,6435,1936,3493,6892,1633], +[1,2343,27529], +[0,15821,23215,27535,2523], +"-exports", +[2,151,27533], +"lcov", +"moji", +[2,9477,7204], +[0,23266,2587,23267,614,6435,1936,6941,11512,32101,32122,3661], +[1,2343,27538], +[2,120,28708], +[0,27539,27540,27541,4139], +[0,24566], +[0,1999,3165,1894,4387,4389], +[0,6892,1936,1644,1646], +"define-", +[2,14678,3205], +[2,27542,27543], +[1,2343,27548], +"-descriptors", +[2,9395,27546], +[0,0,27560,27561,2523], +"-val", +"ue-fixtures", +[2,27549,27550], +[2,5600,27551], +[3,7810,10], +"-each", +[2,27553,27554], +"s-have-names", +[2,23238,27556], +[3,18432,11], +[2,27558,7083], +[0,4874,1414,23276,2577,2584,3310,1894,3985,3998,4505,91,1906], +[0,1936,23670,10381,1213,11512,32143,12616,7102], +"@types/gopd", +[3,6497,11], +[2,27563,19065], +[3,4637,11], +[2,27565,20102], +[2,27563,27566], +[2,27563,2568], +[3,18491,11], +[2,27569,18985], +[2,13201,4552], +[3,26581,12], +[2,27572,19072], +[3,27573,13], +[2,27574,19077], +[2,27572,15058], +[3,8860,14], +[2,27577,3430], +[3,8860,13], +[2,27579,3022], +[1,2343,27582], +[0,27583,0,27584,2523], +[0,1676], +[0,27,2671,2934,2026,2078,32897,30135,33117,32150,32153,32154,32897,30131,32155,5995], +"@sap/hana-client", +[1,2343,27587], +[0,0,21181,27588,2537], +[0,1623,5260,32164,3561], +[1,2343,27590], +[0,27591,27592,27594,2537], +[0,2711], +[0,24118,24114], +"hrottler", +[0,1172,89,2711,5130,10772,24120,23361], +[1,2343,27596], +[0,27591,27597,27594,2487], +[0,32144,32191,24118,24114], +[1,2343,27599], +[0,0,0,27600,2537], +[0,1172,89,2711,5130,10772,24120,1936,24122,36,965,1388,4042,32199,32200,6802], +"unix-dgram", +"webidl2", +"unittest", +[1,2343,27605], +[0,0,27606,27607,2537], +[0,1700,2323,1637,3561,2494,32214,2482,2549,32215], +[0,1623,6398,6400,5130,5122,32219], +[2,2364,21928], +"-phantomjs", +[2,2463,27609], +[1,2343,27613], +"mockJSON", +[0,27615,27616,27617,2537], +"mockAjax", +[0,3220,4110], +[0,1149,2228,2258,2274,2281,2314,1776,1209,705], +[0,1367,32226,32227,1745,1776,18011,699], +[1,2343,27620], +"faste", +[0,0,27621,27625,2487], +[0,23689,4874,28502,2765,2272,4130,4487,31194,91,31195], +"st-validator", +[2,27619,27622], +[2,5310,2282], +[0,1973,5472,11132,13841,28522,2765], +"@icebob/node-memwatch", +[1,2343,27642], +"@types/bunyan", +"oredis", +[2,8802,27629], +"no", +"@types/pino", +"avsc", +[2,1317,1289], +"cbor-x", +"dd-trace", +"etcd3", +"event-l", +"oop-stats", +[2,27638,27639], +"fakerator", +[0,27653,27661,27663,2523], +"gc-stats", +"jaeger-client", +"kafka-node", +"-repl", +[2,3219,27646], +"msgpack5", +"nats", +"node-n", +"ats-streaming", +[2,27650,27651], +[0,16738,35957,7824,2798,3717,4468], +[2,29351,4255,591], +"notepack.io", +"redlock", +"rhea-promise", +"thrift", +"v8-natives", +[2,4712,13083], +[0,32243,10,13,16,19,21,24,26,30,32,34,53,87,192,22559,19181,442,16738,8755,554,4864,5087,4874,5254,1009,1011,27726,1193,1437,16307,1567,1610,10936,1177,1895,1938,1939,1942,1955,2020,2151,32245,2070,2203,2675,1192,2780,2832,3534,1894,4039,4094,4135,4484,4494,4507,91,4523,4769], +[3,14584,12], +[0,1192,91,1098,5472], +"messagebus", +[1,2343,27667], +"distributed", +[0,27668,27670,27671,2523], +[0,11518,1420,1437,1457,1525,1544,16082,3445,3613,3616,4200,4207,33212,4562,4729], +"ppsm", +[0,53,368,7948,370,554,811,816,32251,842,16145,966,968,972,974,11485,5087,19799,4874,4880,4883,24370,10844,9241,1009,1011,1030,32252,10783,1165,1610,1177,1895,1903,1938,1953,1958,1959,1192,2802,695,3363,3400,3561,37015,32253,1894,89,3824,3847,4039,4042,8849,4057,15277,2278,4315,4383,91,1983,32255], +[0,5472,1192,4967,17758,1676,32264], +[1,2343,27673], +[0,27674,27675,27676,4139], +[0,2757,32269], +[0,32272,32273,2398,2036,2899,5354], +[0,21738,13230,1676,1739,1745,16284,8623,1179,2036,1383,6706,3430,32275,32277,1209,6807,1783,1283,5354,26096], +[1,2343,27682], +"zone", +"timezone", +"olson", +"iana", +[0,27683,27684,27685,2399], +[0,32281], +[0,3088,3310,1187], +[0,3088,32289,4017,36,5995], +[2,5335,553], +[2,1351,27686], +[2,21289,27687], +"-provider", +[2,2138,27689], +[2,23107,27690], +[2,21289,27691], +[2,21289,553], +"worker-", +[2,27694,10057], +[2,21289,27695], +[3,27687,16], +"extdocument", +[2,27697,27698], +[2,4619,27699], +[3,27700,23], +[2,27701,103], +"vscode-uri", +[1,2343,27721], +"cohaszing", +[2,15276,27705], +[3,25072,11], +"monaco", +"@remcohaszing/eslint", +"remcohaszing", +[2,3996,27710], +"yaml-l", +[2,15675,2995], +[2,27712,27713], +[2,27716,27717], +[3,162,22], +"tegrations-common", +[2,8214,27719], +"-pattern", +[2,10853,11597], +[0,27727,27728,27729,4139], +"monads", +"either", +"maybe", +"result", +[2,1101,1177], +[0,26987], +[0,4874,1414,3167,1894,3985,3998,4505,91,1906], +[0,3167,32300,32301,10381,7131,32303,1936,3987,1783,4549], +"-connect", +[2,1304,27730], +"paginator", +[2,10784,27732], +[1,2343,27736], +"free-swig", +[0,0,0,27741,2537], +"gridfs-stream", +"mongodb-", +[2,3764,57], +[2,27738,27739], +[0,3167,614,6435,1936,10368], +[2,17037,15988], +[2,22785,4408], +"@types/rollup", +"istration", +[2,20897,27745], +"GUI", +[1,2343,27753], +"manage-mongo", +"phpmyadmin", +"UI", +"web-based", +[0,0,0,27754,2399], +[0,3167,614,6435,1936,10381,1213], +[1,2343,27756], +[0,0,27763,27766,2537], +"@mon", +"godb-js/saslprep", +[2,27757,27758], +"-string-url", +[2,21404,27760], +[2,27738,27761], +[0,16268,2228,2272,3220,4720,4535,17565,2296,32324,2283,2253,2273,2281], +"socks", +"snappy", +[0,4576,5131,7310,31568,13735,22856,1388,15525,32334,32336], +"mocha-sinon", +"gcp-metadata", +"legacy", +[1,2343,27783], +"erberos", +[2,13053,27771], +[3,7814,10], +"lprep", +[2,27773,27774], +"v8-heapsnapshot", +[3,27759,12], +"zstd", +[2,27777,27778], +[3,15507,14], +[2,27780,1002], +[2,9415,1435], +[0,27794,27808,27809,2537], +"mongodb-c", +[2,20203,7141], +[2,27784,27785], +[3,1982,16], +"@jimp/js-bmp", +"used-imports", +[2,27787,27789], +[3,13547,28], +[2,27791,591], +"@jimp/js-gif", +[0,16868], +"@jimp/js-jpeg", +"@jimp/js-png", +"@jimp/js-tiff", +"kareem", +"mpath", +"mquery", +"sift", +[2,27804,27811], +"acquit", +[3,24788,12], +"acquit-ignore", +"acquit-", +[2,27806,3209], +[0,1192,1177,4468,1894,91,5087,4874,16874,1895,1011,1009], +[0,32345,32346,1623], +[2,3044,5056], +"-blit", +"odm", +[2,27815,27816], +"datastore", +[3,27802,15], +"ur", +[2,27818,27819], +[3,27802,13], +"circle", +[2,27823,27824], +"-callbacks", +[2,1292,27821], +[3,27817,14], +"olor", +[2,27828,27831], +"node-monitor", +[2,21004,14837], +[3,27820,15], +"probe", +"JMX", +"ntain", +[2,27828,10177], +[2,27823,9970], +[2,27818,27836], +[2,9280,3233], +"displace", +"dashboard", +"monitoring", +"control ", +[2,27839,9872], +[2,27842,27843], +[3,27834,15], +"ther", +[2,27818,27860], +[3,6503,9], +"ngodb", +[2,27845,27846], +"-middleware-cast-ids", +[2,3236,27848], +[3,27849,16], +"fields", +[2,27850,27851], +"-callback", +[2,2034,27853], +[2,27850,27854], +[2,27850,14690], +[2,27850,3766], +[2,9251,21404], +[2,27850,27858], +"fisheye", +"gitbook-cli", +"gitbook-", +"plugin-a", +"nker-enable", +[2,27863,27864], +[2,27862,27865], +[3,27866,15], +[2,5317,4147], +[2,27867,27868], +[2,27876,27877], +"edit-link", +[2,27867,27871], +[2,27867,2195], +[2,27867,588], +[2,27850,1676], +[3,27844,14], +"lip", +[2,27818,3428], +[2,27818,10098], +[2,27818,24171], +[2,27818,27882], +"quantize", +[2,27818,24800], +[2,27885,27886], +[3,27883,14], +"otate", +[2,27818,17487], +"@jimp/utils", +[1,2343,27903], +[2,27891,27892], +"@jimp/co", +"nfig-eslint", +[2,24787,27894], +[3,549,17,16], +[2,27896,1984], +[3,27890,13], +"commist", +"node-self", +"help-me", +[2,1983,27901], +[3,19232,22,6], +"mqtt-packet", +[0,27906,23215,27911,2487], +"-allocator", +[2,6988,27904], +[0,9315,34578,31644,26972,32360,32364,32365], +[2,19332,6706], +"wsl-utils", +"monocart-coverage-reports", +"worker-timers", +[0,1644,1936,6843,11043,18944,18089], +"aedes-cli", +[3,5616,9], +[2,27913,202], +[2,11932,27914], +"leak", +"ed-handles", +[2,27916,27917], +"mqtt-", +[2,27919,21404], +"tinyglobby", +"node-style-text", +"level-store", +[2,27919,27923], +[1,2343,27929], +"/subscribe", +[2,20001,27926], +[2,19177,1783], +[0,0,0,27932,2537], +[2,27931,29682], +[3,218,19], +[0,3561,22147,676,134,89,1623,32372], +[2,26343,27934], +"ibus-quod", +[1,2343,27937], +"@tediousjs/connection-string", +[0,27938,21181,27941,2523], +[0,16837], +"msnodesql", +"tds", +[0,1623,5260,3561], +"node-tds", +"qlserver", +[2,3343,27943], +"msnodesqlv8", +"node-m", +[1,2343,27950], +"node-mssql", +"list-dependents-cli", +[0,0,27951,27952,34352], +[0,53,87,32389,10706,32390,1177,2765,2297,2881,2886,2895,2898,2910,2923,29946,3750,3758,4042,4045,6390,4071,4073,25238,824], +[0,22562,3758,3541,13428,32395,32396,5926,5472,11132,3750,28522,824,30271], +"@bundled-es-modules/cookie", +[3,27953,20], +"until-async", +[1,2343,27965], +[3,546,12], +"nfirm", +[2,27957,27958], +"@types/sta", +"tuses", +[2,27960,27961], +"headers-", +[2,27963,6422], +[0,27970,27971,27972,34352], +[2,8140,14643], +"json-bigint", +"page", +"page-with", +[0,1282,2555,3744], +[0,1389,1391,1437,1700,2323,2351,2404,2494,32402,2530,2541,3159,32405,89,3824,4603], +[0,89,5128,4384,32410,4453,6380,2555,5131], +[1,2343,27974], +[0,27975,27976,27977,4139], +[0,32421,688,28208,691,9712,9296,1091,1092,1437,1458,1543,1676,2226,2687,2822,12284,3173,3422,3423,3467,3742,4135,4183,4213,6479,176,36864,28731,4548,13291], +[0,11976,192,5467,9737,32432,29355,27654,811,8850,816,6373,5245,7637,7746,7812,5254,28736,28557,7677,36874,2675,2931,3297,1890,12285,1894,4042,15277,4494,4507,91,1984], +[0,5592,1118,2210,1745,27662,29370,3422,3452,29369,29365,29368,29367,28360,9591,8124], +"append-field", +[1,2343,27980], +[0,0,27985,27987,2443], +"fs-temp", +"testd", +"ata-w3c-json-form", +[2,27982,27983], +[0,5535,972,5087,4880,4883,34722,1009,1011,1597,1701,1177,1895,1955,1959,1961,2193,32447,1192,32448,3165,30935,32449,1894,89,3824,34725,4201,4468,91,32450], +"formdata", +[0,89,31611,5128,20542,4439,32453,1473,6400,13161,30858,3807,7320,31152,6653,32454], +[1,2343,27989], +[0,27990,27991,27993,2537], +[0,11804], +[0,87,90,4880,1843,1845,1192,3775,3904,4042,4045,4055,4067], +"array-union", +[0,4576,5131,7310,31568,13735,22856,1388,32464,32465,15525,11415,7201], +[3,20454,11], +"oxy-addr", +[1,2343,27997], +[0,0,27998,28000,2537], +[0,192,4874,4880,4883,4887,1009,23648,1177,1895,21564,1938,1953,1955,1958,1959,2675,1192,2990,3165,1894,3720,89,3824,3885,3889], +"pend", +[0,89,7433,38,3884,3885,32473,3286], +[3,32265,24], +"@jsumners/line-reporter", +[1,2343,28005], +"vue-drag", +[0,0,28006,28011,2537], +[0,3421,2832,2297,2899,89,3875,4193,1145,1177,1209,3698,4072,9381,1503,1593,3729,2924,1317,3824,32487,91,53,4874,2900,3876,4880,1195,8821,2925,107,2069,4883,87,4884,1959,3904,32488,966,2904,2881,2912,2895,38299,1011,11470], +"test report", +"html ", +"html report", +" to ", +[0,2062,4162,89,3797,32491,1693], +"json to html", +[1,2343,28014], +[0,0,0,28015,2537], +[0,3857,5131,12295,12296,6574,2090,11328,30045,32497,2636,2295], +[1,2343,28017], +[0,0,28018,28019,2537], +[0,97,4880,5091,89,3857,91], +[0,3857,5128,31912,89,5131,12295,12296,181,15571,35060,32504,158,32505], +[1,2343,28021], +[0,26338,28028,28029,2523], +"tory-reporter", +[2,2916,28022], +"mezr", +"web-a", +"nimations-js", +[2,28025,28026], +[0,1178,1177,1879,1895,1938,1947,1955,1959,1894,32510], +[0,3857,5128,31912,89,5131,12295,181,3730,32516,27819,9906,10036,32527,32529,1478,7521], +"bin-packing", +[1,2343,28032], +[0,28037,28041,28053,2537], +[2,20876,28090], +"autolink-", +[2,28001,26766], +"sqlstring", +[0,1654,32535,1655,1660,3744], +[2,27679,2085], +"urun", +"utest", +[0,32538,10821,14689,10828,32540,1178,1193,38304,1668,1177,1903,1938,1954,1958,1959,32541,1970,2675,1192,2990,1894,3720,89,3857,32510,3904], +[2,28050,28065], +[2,28887,28044], +"v2", +"aws-s", +"sl-profiles", +[2,28045,28046], +"generate-", +[2,28048,3046], +[3,29934,12], +"placeholders", +[2,5773,28051], +[0,3857,5128,31912,89,5131,12295,12296,13814,15480,9816,1653], +[1,2343,28055], +[0,28060,28061,28062,2487], +"assert-diff", +"sync-await", +[2,15907,28057], +"poku", +[0,2018], +[0,5079,1177,21166], +[0,3857,5128,31912,89,5133,5131,12295,12296,181,24633,32543,32552], +[1,2343,28064], +[0,28066,28068,28070,4139], +"vitest-pool-workers", +[0,21174,4649], +"thenify", +[0,32558,48,53,5241,85,87,14128,90,365,370,6372,811,816,6373,972,20562,4880,1178,1193,1610,1177,1895,1935,1939,1958,1959,1961,2126,29945,2193,32559,1192,30935,1894,3720,89,3824,32561,3904,4039,4042,4045,4073,91], +[2,31468,31471], +[0,89,32225,30245,4627,5398,8190,8191], +[1,2343,28077], +"bats", +[2,28075,28493,28553], +"switcher", +"@", +"@prisma/dmmf", +[0,28079,28081,28082,4139], +"gable-next", +[0,32571,31528,1461], +[3,29754,14], +[0,30533,5535,966,968,972,32573,4859,4874,4880,4883,1030,16480,1651,2832,23535,89,3824,4201,1531,4484,91,1984], +[0,89,6398,5066,5131,9320], +[1,2343,28086], +[2,28085,3259], +[3,28092,16], +[0,28087,28089,28096,2399], +[0,4484,32597], +"couchdb", +[0,32632,5535,4201,89,3824], +"spanner", +[2,30534,4675], +"@testcontainers/postgresql", +"fastest-", +[2,28093,18729], +"rtl-css-js", +[0,89,590,1623], +[1,2343,28099], +"iconista", +[0,0,28102,28104,2537], +"pnpm10", +"libreact", +[0,1148,2899,3697], +"jsxstyle", +[0,1623,1473,32453,2585], +[1,2343,28106], +[0,28107,0,7573,2523], +[0,32733,1004,32730,32737,32739,32744,32722,32736,32741,32720,32678,32725,32727], +[1,2343,28109], +[0,0,28110,27147,2523], +[0,53,87,92,192,5467,5583,16952,6373,10615,5087,4874,1009,1011,1031,17584,1178,1193,19839,1540,1610,1177,1903,1938,1954,1958,1988,2193,2675,2742,1192,2780,2990,4039,4042,4076,91,4630], +[2,30495,28112], +"lysia", +[1,2343,28114], +[0,0,28124,24467,4139], +"gitcloud", +"hasbin", +[2,34316,3863,34320], +"page-icon", +"premove", +"@types/hasbin", +"@types/pa", +"ge-icon", +[2,28121,28122], +[0,8144,1465,1584,1628,2092,6327,3177,1894,4028,2278,4111,4469,91,4027,2924,4677,4689], +"desktop", +"@vue-macros/common", +[1,2343,28128], +[0,2513,28129,28131,2537], +[0,5535,4201,968,972,32632,2780], +"proxy-lib", +[0,89,1564,32775,32776,32777], +"font-finder", +"pbxproj-dom", +"montag", +"simple-plist", +"ios-device-lib", +[2,21464,1155], +"proper", +"-light", +[1,2343,28146], +"-lockfile", +[2,28138,28141], +"ios-", +"sim-portable", +[2,28143,28144], +[0,28148,28149,28156,2487], +[2,28457,28462], +[0,32782,4484], +[0,5535,4201,32632,32786,1845,89,3824], +"-merge-patch", +[2,2072,28150], +[3,26989,11], +"ackage", +[2,28152,28153], +"@nativescript/doctor", +[0,32788,89,32789], +"-dev-xcode", +[2,3271,28157], +"provi", +[1,2343,28168], +"sion-finder", +[2,28159,28161], +[2,5131,28162], +[2,28143,28163], +"@rigor789/trapezedev-project", +"@rigor789/", +[2,28166,14562], +[0,28169,28170,28171,2523], +[0,1593,97,32796,32795], +[0,695,3709,2924,1628,91,53,2969,4677,1195,4307,32808,4689,87,4359,4681,92,83,1198,5756,61,78,76], +[0,7201,1676,5131], +[2,32904,364], +[1,2343,28174], +[0,0,28181,28185,2399], +"@types/pl", +"ist", +"@types/plist", +"@types/retry", +[3,5364,9], +[2,28179,3924], +[0,4874,9743,4579,1983], +"@types/pacote", +"btab", +[2,8153,28183], +[0,1983,5130,6731], +[1,2343,28188], +"@types/tunnel", +[0,0,28201,28212,2523], +"@types/xml2js", +"@types/ar", +"chiver", +[2,28190,28191], +"@types/qr", +"-image", +[2,28193,28194], +[3,7810,11], +[2,28196,2138], +[3,13418,17], +[3,5090,11], +[2,32904,4412], +[0,1175,1195,1267,1610,1628,2092,3342,8119,4111,32821,4307,188,4634,4639,4640,4645,2924,4681], +"er-lockfile", +[2,28199,28202], +"@types/np", +"mcli__arborist", +[2,28204,28205], +[3,9315,10], +[2,9710,15774], +"al-analytics", +[2,9788,28209], +[2,28207,28210], +[0,9006,29633,32827,32828,32829,32830,32831,4967,32832], +[1,2343,28216], +[2,31819,31823], +[3,27933,13], +[0,28217,0,27026,4139], +[0,1415,1842,31290,31331,4562,31386,6330], +[1,2343,28226], +"afinn-165", +"-fin", +"ancialmarketnews", +[2,28220,28221], +[2,28219,28222], +"apparatus", +"memjs", +[0,0,28227,28250,2523], +[0,48,53,61,78,87,92,5601,32840,5087,4874,15600,1009,1011,1175,1193,1198,1177,1881,1895,1938,1955,1192,11948,1894,4131,91], +"stopwords-iso", +"@libsql/client", +"wordnet-db", +[2,31005,26449,28684], +"browserfs", +[2,2441,20008], +"pegjs", +"uubench", +[2,32904,2942], +" language processing", +[2,3273,28237], +"arti", +"fical intelligence", +[2,28239,28240], +"Porter stemmer", +"Lancaster stemmer", +"bigram", +"trigram", +"quadgram", +"ngram", +"stemmer", +"bayes", +[0,1192,2022,6703,1149,7003,1862,11857,5472,2275], +"classifier", +[1,2343,28254], +"phonetic", +[0,28255,28257,28259,2523], +[0,28502,4130], +"metaphone", +[0,23689,28556,2323,31190,2765,3560,31541,91], +"inflector", +[0,5472,11132,13841,28522,13426], +"Wordnet", +"tf-idf", +"logi", +" regression", +[2,17132,28263], +[2,28262,28264], +[2,4420,28256], +"jaro-winkler distance", +" distance", +[2,26006,28268], +"string ", +[2,28270,26017], +"-of-speech tagger", +[2,3251,28272], +"Eric Brill", +"Brill tagger", +" analysis", +[2,4137,28276], +"maxim", +"um entropy modelling", +[2,28278,28279], +[1,2343,28284], +"@mrleebo/prisma-ast", +[2,31733,21302], +[0,28292,28293,28294,2537], +"secure-keys", +[2,28288,6008], +"nconf-yaml", +"@prisma/c", +"key value store", +[2,18124,13729], +"plugabble", +[0,1086,1437,1700,2070,2714,3183,3760,705,4039,4135,4734], +[0,13194,7740,28197,4865,29105,23689,9129,7892,4874,11304,16936,20959,28502,5254,28189,28556,2323,31190,2765,4089,4130,91], +[0,1098,1973,5472,3750,11132,13841,28522,4130], +[1,2343,28296], +[0,9756,9839,28297,2537], +[0,1871,6843,3656,4289,7062,6922,6981,6701,6581,6700,1111,1867,5281,200,6876,7009,7201,6575,6611,6795,6960,7135], +[1,2343,28299], +[0,7558,28300,28301,2523], +[0,4874,668,32894,2929,32895,91,4579], +[0,32901,23542,5130,23543,6812,27,5592], +[1,2343,28305], +"near social", +"bridge", +[0,28306,0,28307,4139], +[0,2856,32889,2822,5307], +[0,29699,32891,1541,1745,29703,29753], +[1,2343,28311], +[3,18018,14], +[2,28309,1633], +[0,0,28313,28315,2487], +"exec-time", +[0,1429,4856,4874,32903], +"@lit/context", +[0,32910,37123,32911,32912,32913,13428,5472,6533], +[1,2343,28317], +[0,28318,0,26863,2399], +[0,32918,32919,1699,3547], +[1,2343,28320], +[0,6263,0,28321,2523], +[0,89,5128,9267,553], +"@codspeed/", +"payload", +"@fig/complete-commander", +"@golevelup/nestjs-discovery", +"xhr2-cookies", +[2,30999,30499], +[1,2343,28330], +[2,28338,28349,28603], +[0,26964,0,26997,2537], +"@postman/tough-cookie", +[2,15679,19490], +"chardet", +[1,2343,28337], +"liquid-json", +"postma", +[0,26964,0,27001,2487], +"@interna", +"n-collection", +[2,28336,28339], +"-transformer", +[2,28340,28341], +"postman-", +[2,28343,705], +"postman-r", +[2,28345,96], +"d-error", +[2,14628,28347], +"tionaliz", +"@postman/", +[1,2343,28359], +"shipit", +[2,28350,28352], +[2,29833,17978], +"file_lint", +[2,17878,28355], +"parse-git", +[2,28357,2687], +[0,28364,28381,28409,2537], +"postman", +[2,178,28363], +"rest-client", +"rack-changes", +[0,32953,25996], +"@profoundlogic/hogan", +[3,2665,10], +"@grpc/grpc-js", +"@grpc/", +"print-sizes", +"proto-loader", +[2,28368,28370], +"@newrelic/security-agent", +"@tyriar/fibonacci-heap", +"in-the-middle", +[2,2701,28374], +"module-de", +"s-from-path", +[2,4378,28377], +[2,28376,28378], +[2,4013,28374], +[0,13662,1389,35268,4389], +"@aws-sdk/s", +"3-request-presigner", +[2,28382,28383], +"@koa/router", +"@newrelic/", +[2,28386,7625], +"-oss-cli", +[2,3284,28388], +[2,28386,28389], +"test-util", +"ities", +[2,28391,28392], +[2,28386,28393], +"@slack/bolt", +"@smithy/eventstream-codec", +"@smithy/", +"util-utf8", +[2,28397,28398], +"borp", +[2,16306,20353], +[3,4962,10], +"iler-runtime", +"git-r", +"aw-commits", +[2,28404,28405], +"CKEditor", +"self-cert", +[0,7518,5398,17819,18266,32958,12075,32960,4967,1389], +[1,2343,28412], +"debugging", +[0,28414,28424,28430,2537], +"profiling", +[0,32980,32981,32983,32984,32986,1398,1437,1443,1759,1763,2018,2071,37853,2182,2212,2687,2720,17450,2856,32987,32988,9478,3729,4135,4164,4400,91,32990,32993,32989], +"unlimited-timeout", +"WYSIWYG", +"WYSIWYW", +"@panva/hkdf", +"id-client", +[2,3445,28419], +"-to-string", +[2,694,28421], +[2,3698,28422], +[0,188,32996,32997,33004,33007], +"@types/oauth", +[2,4874,3360], +"@next", +"is-in-ssh", +"powershell-utils", +[0,32940,33010,5130], +[1,2343,28437], +[3,13983,14], +[2,28432,89], +"-pragmatic", +[2,13062,28434], +"@edge-runtime/jest-environment", +[0,28447,28448,28449,34352], +"oauth2", +"nextauth", +"seneca-transport", +[2,36883,28443], +"rich-text", +"astify", +"async ", +[2,28444,1852], +[2,28444,5746], +[0,97,33015], +[0,1192,2278,2675,89,1843,1177,2924,1894,1610,3824,48,1628,3988,91,53,2990,3400,4111,4677,4880,1195,4307,33020,33021,9310,28809,10837,87,11011,90,1959,827,33023,1895,1947,1955,2780,92,10821,29872,10840,1011,10825,83,1009,32341,28970], +[0,89,4627,26612,35126,33026,5131,29832,91,33027,33033], +"grammy", +[1,2343,28463], +"qs-esm", +"TestBed", +"how-to", +"@scripts/build", +[2,28573,553], +[3,14691,18], +[2,32700,28478], +[2,12392,1098], +"dataloader", +"bson-objectid", +"nboarding", +[0,28481,28492,2514,2537], +"render-jsx", +"@rolldown/pluginutils", +[2,28472,1973], +"localhost", +"tunneling", +"webhook", +[2,28471,28596], +[3,37983,14], +[3,34476,19], +[2,16639,15112,28475], +"onesy", +"hecker", +[2,16639,28477], +"vitest-runner", +"grab", +[2,28489,28490], +"deep-defaults", +[0,1437,1483,1525,3127,14774,4135,33043], +[2,10740,28487], +"enqueue", +[2,14185,4225], +"minstache", +"sliced", +"table-printer", +[2,3192,5701], +[3,30527,35], +"collisions", +"@rstest/core", +[0,8147,33046,4874,5254,33047], +[2,28508,28526], +"@nightwatch/chai", +[3,28494,12], +[3,2791,13], +[2,28496,2324], +[2,28495,28497], +[2,3294,11496], +[2,28495,28499], +"lenium-webdriver", +[2,5252,28501], +[2,1432,3294], +[2,11097,20500], +"didyoumean", +[3,28499,11], +"@amaui/ui-react", +[3,5069,14], +"axe-verbose", +[2,28506,28509], +[3,17011,11], +[2,28511,57], +[3,31827,17,5], +[2,4925,4381], +[3,28514,12], +[2,11937,16609], +[2,28515,28516], +"@payloadcms/translations", +"wait-on", +[1,2343,28527], +[2,3294,676], +"selenium", +"automat", +"ed-testing", +[2,28523,28524], +"acos", +[0,28528,28529,2514,2537], +[0,35198,4763,1497,1687,33057,4361,1983,1082,1371,1676,9348,12449,977,1636,11480,3958,4135,11501,1458,11478,668,33058,28564,2822,6042,3479,3742,29535,33059,26379,4955,33149,3530,25648,4542,28623,33061,11869,27921,5732,33062,2628,3090,4748,2007,33063,19639,7610,37014,33064,4555,33065,33068,29533,33069,10895,5210,9485,33070,33071,3749,33074,33075], +[0,23813,2278,4042,4548,1984,1448,4549,33080,30138,33082,91,12396,2024,3975,5245,33390,30559,5254,33083,34673,7637,7812,12127,3327,8648,20374,11868,23312,33084,7744,21626,3963,33087,33088], +[1,2343,28536], +[2,28532,28547], +[3,11555,18], +"text-", +[2,28533,9254], +[2,11122,28534], +[0,28538,0,2514,2523], +[3,11138,16], +[0,1506,33093,3460,4535], +"mochify", +[3,4887,19], +"-universal", +[2,3752,28541], +[2,3752,1289], +"@backstage/backend-common", +[1,2343,28546], +[0,28548,28549,28551,2399], +"owellformed", +[0,1512,2151,2720], +[0,1177,1939,1192], +"propagate", +[0,8310,1179,8635,200,28582], +[1,2343,28555], +[3,31893,18,13], +[2,12302,28732], +[0,0,28560,28561,2399], +"clang-format", +[2,23260,28729], +"n-api", +"napi", +[0,811,816,1437,1836,1177,1895,1938,33110,14282,2674,2675,2990,2899,6041,1894,4039,4042,4055,33111,4232,4390,11482], +[0,4989,1283,3358], +[1,2343,28563], +[0,0,28571,2514,4139], +"fontace", +[2,14743,4504], +"ffee", +[2,2251,28566], +"grunt-i", +[2,2426,2499], +[2,28568,28569], +[0,1009,1011,1177,1883,1895,1915,1938,1947,1955,1959,1961,2675,2990,1894,89,91], +"baseline-browser-mapping", +[3,4090,11], +[2,28606,8734], +"host-validation-middleware", +[2,16826,5260], +[2,14614,28576], +"used-de", +"ps-analyzer", +[2,28578,28579], +"@4c/rollout", +"skeleton", +"formate", +[1,2343,28587], +[2,5559,27], +[2,28689,89], +[0,28597,28600,28601,2537], +"dynamic-", +[2,28588,1681], +"filewatcher", +[2,28914,594], +"xunit", +"tap-xunit", +"nextjs-api-reference", +[2,30999,28884], +"l", +[0,33139], +[2,31222,31227,31234], +"subdir", +[0,6503,1699,2899], +[0,5122,1973,8791,33143,2899,5130], +[1,2343,28609], +"ed/date", +"char-regex", +"emojilib", +"@scripts/", +[2,28616,6988], +"skin-tone", +[0,0,28621,28622,2537], +"s-per-line", +[2,16233,28610], +"cspell-config-lib", +"emojis", +"smiley", +"smileys", +[3,28329,19], +"smilies", +"ideogram", +"ideograms", +"@nuxt/fonts", +[0,5535,5087,1009,1011,33175,25917,35358,1473,1177,1895,1955,2070,1192,1894,4042,4073,4076,4201,4443,4468,4474,4484,91], +[0,1473,57,6270,4439,32453,6616,30289,33190,30291,620,33201,31453,1623,33203,6653,33205,33207,3178,33216], +"unstorage", +"fetch-blob", +"ttypescript", +[2,1432,7253], +"nsumers", +[2,25687,28627], +"jsdoc-to-mdx", +[1,2343,28633], +"@nuxt/icon", +"@nuxt/kit", +[0,5914,28661,28662,2487], +"igitalbazaar", +[2,27235,28634], +[2,19946,2903], +"-websocket", +[2,6710,28637], +[2,27694,1194], +[2,28660,32819], +"aes", +"asn", +"asn.1", +"cbc", +"csr", +"des", +"gcm", +"hmac", +"pkcs", +"pki", +"prng", +"rc2", +"rsa", +"sha256", +"sha384", +"sha512", +"tls", +"x.509", +"x509", +[3,218,21], +[0,30533,192,5467,30535,10614,6494,5087,4874,1009,1011,1177,1895,2675,1192,1894,3980,4468,91], +[0,30538,6710,14584,91,30540,30543,5130,29752], +[1,2343,28665], +"seneca-joi", +[0,26964,0,26966,4139], +"c2dm", +"fcm", +[1,2343,28669], +[0,28670,28671,28682,4139], +[0,33071,30616,26407,26411,12396,7637,9363,26414,26415,23276,2577,2584,2588,2681,2822,37507,3090,26418,26568,12429,26421,3958,9393,12443,4542,4549,4555,12449], +[0,8648,4874,7677,34683,26431,1984], +"@nuxt/schema", +"@nuxtjs/color-mode", +"geocoder", +"pulse", +"geocoding", +"geo", +"mapquest", +"agol", +"arcgis", +"tomtom", +[0,1739,1745,34683,26440,26445], +[1,2343,28695], +"libsql", +[2,28694,176], +[3,5781,10], +"l-backoff", +[2,28686,28687], +[3,21276,15], +"require-in", +[2,28690,2429], +"piña", +"pigna", +[3,30585,14], +[0,28696,28697,28662,2537], +[0,2026,3951], +[0,30533,192,5467,1300,30535,10614,6494,5087,4874,1009,1011,1177,1895,2675,1192,1894,3980,4468,91], +"high5", +[2,12075,57], +[1,2343,28705], +"js-parser", +[2,1936,28701], +"-benchmark", +[2,15512,28703], +[0,28730,28750,28758,2537], +"mocha-each", +"neutron-html5parser", +"ookmark", +"colortranslator", +[2,15277,12610], +[2,28712,28725], +[3,10130,17], +"biased-opener", +"data-uri", +[2,25894,28714], +"v8-debug", +"v8-profiler", +[2,28742,28749], +[2,28720,28721], +[3,32265,26], +"ble", +[2,28723,7059], +[3,12133,21], +"vitest-browser-react", +"ber-animation", +"dummy", +[2,23814,28898], +"http mock", +"zipper", +[0,3951,4474], +"toposort", +"quality-insights", +"growly", +"words", +"shellwords", +[2,28738,28741], +"nexe", +"@types/to", +" center", +[2,9044,28739], +"posort", +[3,26699,15], +"mac os x 10.8", +[2,4402,3329], +"windows ", +"8 notification", +[2,28745,28746], +"toaster", +"auto-height", +[0,192,5467,10614,6494,5087,4874,1009,1011,1437,1177,1895,2675,1192,1894,3980,4468,91], +"tabbable", +[2,8180,594], +[2,29518,28757], +"@radix-ui/react-checkbox", +[2,28756,45], +[3,28754,16], +"vfs", +[0,30538,6710,91,30540,30543,5130,29752,5995,6082], +[1,2343,28760], +[0,26964,0,26966,2537], +[2,28762,9006], +[3,28718,20], +[2,3958,28764], +[3,26414,16,5], +[1,2343,28767], +"@internal/test-utils", +[0,26964,0,26997,2443], +"ps-list", +"code-blocks", +"pty", +[2,6426,7009], +"forkpty", +"openpty", +[1,2343,28787], +[2,28776,28777], +"expressi", +"ve-code", +"@node", +[2,9057,3642], +[2,28793,28798], +"-red/util", +[2,28778,28781], +[2,3341,2110], +"@node-red/", +"nodes", +[2,28784,28785], +[0,25316,28788,28796,2537], +[0,603,11018], +[2,216,28812], +[2,28784,7047], +"editor-api", +[2,28784,28791], +[3,28718,19], +"iot", +"fix-dts-default-cjs-exports", +[0,188,4646,1542,32977,28692,28693,32312,5592,18496,5490,91,4799,998,6953], +[2,28826,16860], +"play", +"sass-graph", +[2,1152,14741], +"stdout-st", +[2,28801,2187], +"-case-path", +[2,4938,28803], +[2,28742,28875], +[2,4550,13786], +"@jsopen/objects", +[1,2343,28810], +[2,34443,25240], +[0,28819,28820,5893,2523], +"modern.js", +"alpha-function", +"long-timeout", +"sorted-", +[2,20096,20835], +[2,28814,28815], +[2,30633,30886,31217], +[3,1419,11], +[0,28751,444,28752], +[0,90,28754,28755,968,972,974,4880,4883,1030,1497,89,3824,3882,3885,4023,8187,28724,1541], +"recurrent", +[1,2343,28823], +[0,28824,28825,28828,4139], +[0,28763], +[0,34683,2020,28766], +"unplugin-", +"deepcopy-esm", +[0,26445,28769,1745,28775,9348,28779,26440], +[2,9357,28832], +[2,28831,30581], +[3,12447,17], +"-convert", +[1,2343,28834], +[0,0,0,28835,2523], +[0,30999,28818,5995], +[1,2343,28839], +"fs.watch", +"watchfile", +[0,28840,28841,28848,34352], +[0,28775], +[0,9363,9315,23312,3978,3992,3999,9348,4549,12449,28766], +"stories", +[2,819,664,33355], +"ngn", +"daemon", +" logging", +[2,2013,28846], +[0,28769,1745,28775,9348,28779], +"elevate", +"sudo", +[1,2343,28852], +[0,28864,28867,28870,4139], +"store2", +[2,28855,7625], +[3,28518,12], +"@mgcrea/eslint-config-node", +"-lts", +[2,19439,28857], +"node-ipc", +"excel", +"xls", +"zeptomatch", +"picoquery", +[0,2121,2127,1690,2024,4507], +"rolldown", +"amaui", +[0,28470,2180,5476,5478,1414,2198,91], +" extend", +[2,6970,28868], +[0,2313,1383,614,202,1388,5995,4967,1145,1973,1429,2340,2350], +[1,2343,28886], +[2,13402,2942], +[2,28874,8817], +"@appium/s", +"class-names", +"firefoxos", +"combyne", +"for-publish", +[2,1463,28878], +[2,31228,14372], +"libgit2", +"git2", +[2,28742,26542], +[3,31782,22,5], +"vendors", +[0,0,28888,28889,2523], +[2,9191,3595], +[0,1330,1389,1596,2759,2899,4170,4535], +[0,20215,4741,2574,36796,6847,1965,1867,10368,7131,1155,1936,1623,14419,37953], +"libbase64", +"libmime", +"libqp", +"ntlm-auth", +[2,26444,28893], +[2,13857,9224], +[2,28742,188], +"Nodemailer", +"hun-ky", +[2,32723,28900], +"hex-color", +[2,28902,28905], +[3,28899,21], +"undefsafe", +"pstree.remy", +"sl-color", +[2,32723,28907], +"rgb-color", +"autoload", +[2,31281,4202], +[2,819,45], +[2,28742,28916], +[2,6097,6142], +[2,15701,28915], +[3,693,10], +"vision-history", +"wheel-gestures", +"multimeter", +[1,2343,28975], +[2,30211,30221], +"@asamuzakjp/css-color", +"node-webkit", +"drc", +"lz4", +"potx", +"xltx", +"dotx", +"async-redis", +"ipfilter", +[2,2032,28928], +"express-ws", +"xltm", +"ots", +"json-logic-js", +"json-sql", +[2,7060,1146], +"line-reader", +"mocker", +"-data-", +[2,28938,1179], +[2,28937,28939], +"pino-pretty", +"odg", +"otg", +"promise-mysql", +"stjs", +"otp", +"ott", +"uuid-random", +"docm", +"nolang", +"Programming", +"programm", +"ing language", +[2,28952,28953], +"dotm", +"descriptive", +"5GL", +"potm", +"json schema", +"Mehdi Salartayefeh", +"pptm", +[2,8293,200], +[2,8293,3561], +"knitwork", +[2,28968,28969], +" parser", +[2,5675,28966], +"esbuild-re", +"act-compiler-plugin", +[2,28971,1172], +[3,29874,35], +[2,28973,4298], +[3,5240,29], +"ohash", +[0,28989,0,28990,2523], +"admin-panel", +"absolute", +"backslash", +"delimiter", +"file-path", +"forward", +"slashes", +"trailing", +"unix", +"urix", +"headless-cms", +[2,1917,11597], +[2,819,3877,29320], +[0,28507], +[0,45,29,36246,89,4967,6400,5995,10768,5122,1388,5284,676,91,202,6710,6082,28866,594], +"normaliz", +[2,28991,5218], +"normali", +[2,28993,6079], +[1,2343,28998], +"simplify", +"canonical", +[0,29046,0,29047,34352], +[2,29171,594], +"lit-analyzer", +[2,32700,29003], +"mouse", +"attract", +"mouse wheel", +[2,29006,29007], +[3,26450,35], +"ubble", +[2,32700,1544], +[2,29010,29011], +[3,31198,35], +"ause", +[2,32700,34141], +"escape-goat", +[3,9577,11], +"from-git", +[2,29014,29015], +"teractive", +[2,20043,29017], +[2,28489,29003], +"is-scoped", +[2,29027,29029], +"issue-regex", +"listr-input", +"new-github-release-url", +"npm-name", +"p-memoize", +[3,32722,21], +"map-obj", +"asing-quad", +"write-package", +[2,32731,3924], +[2,29033,4390], +[3,26495,20], +[2,29035,29036], +[3,28909,22], +"troke-color", +"is-cidr", +"ts-lit-plugin", +"libnpmorg", +[2,33533,29041], +"ormatjs", +"libnpmpack", +[3,29818,15], +"libnpmteam", +"MDX", +[0,28872,28873,13411,4507], +[0,13428,5284,28522,11132,12295,12296,28876,5472], +"fs-m", +"reka-ui", +[2,37399,29156], +"fs-minipass", +[1,2343,29064], +"npm-profile", +[2,2977,7193], +"@sigstore/tuf", +[2,2977,15525], +[2,636,1541], +"audit-report", +[2,3382,29058], +"-pipeline", +[2,21505,29060], +[2,4570,2649], +[2,3382,29062], +[0,26871,0,26863,2399], +"relative-date", +[2,11072,29065], +[2,28093,26006], +[1,2343,29074], +[2,636,3358], +[2,636,1739], +"@tufjs/repo-mock", +[3,26037,13], +[2,29072,2203], +[0,29075,0,7573,2537], +[0,1004,31231,32914,28909,31262,31272,28899,28901,28906,31282], +"-draft2019", +[2,1092,29076], +[1,2343,29119], +[2,29080,29081], +[3,23075,14], +"rrect-media-syntax", +[2,29089,29090], +"-record", +[2,17495,29083], +"giturl", +"nfig-loader", +[2,18323,29086], +"semver-diff", +[3,32593,24], +"ort", +[2,29092,29094], +[3,32686,13], +"outdated", +"dx-jsx-attribute-sort", +"updating", +"updater", +[2,29098,29099], +[3,29091,20], +"no-void-children", +[2,29098,29107,29118], +"@trivago/prettier-plugin-sort-imports", +[3,27782,13], +[2,29102,8961], +[2,13197,176], +"@types/ini", +[3,8141,13], +"quote-st", +"helpfulerror", +[2,16476,29108], +[2,29106,29109], +[2,7726,27005], +"@types/npm", +"-registry-", +[2,29113,1612], +[2,29112,29114], +[3,16478,13], +[2,29116,13722], +"yle", +[0,0,0,29163,2537], +[2,2645,89], +[3,6544,14], +[2,29121,594], +"pdate-", +[2,29123,3329], +[2,7817,29124], +[3,1898,15], +"aine", +[2,29126,29127], +"fp-and-or", +[3,9506,11], +[2,117,29153,29494], +[2,29098,29134,29135], +"jsonlines", +"self-clos", +"e", +"prompts-ncu", +"postcss-clean", +[2,25813,594], +[2,4524,2845], +"verdaccio", +[2,8551,4675], +"vite-node", +[2,29145,29146], +"upgrade", +[3,29132,21], +"horthand-attribute", +[2,29098,29148], +"unique-attribute-name", +[2,29092,29150], +"edia-style", +[2,32704,29152], +"idden-table-cell", +[3,6138,9], +[2,7686,4692], +[2,22060,3122], +"variants", +"ypescript-tc", +[2,22060,29157], +[3,17312,29], +[2,29159,12844], +"unplugin", +"auditor", +[0,45,29,36246,89,4967,6400,5995,10768,5122,1388,5284,676,91,202,6710,6082,28474,594], +[1,2343,29167], +[2,28826,29166], +"auto-import", +[0,26964,0,26966,2487], +"variadic-function-arguments", +"mutate-fs", +"@publint/pack", +[3,1014,15], +[1,2343,29173], +[0,29177,0,21958,2537], +"minizlib", +"minipass-", +[2,29175,1612], +[0,4729,2070,31705,4747,4135,1862,1301,1525,2731,4116,1109,1193,31856,3145,4705,31859,3717,3878,1079,31861,28512,31864,24169,3957,31867,2784,31871,31877,31880,31884,31891,21129,31896,28073], +"fast-equals", +"registry", +[1,2343,29199], +"autodocs", +[2,31092,3452], +"@pm2/blessed", +"padend", +[2,18996,29184], +[2,29189,27863,20181], +"ysticatea", +[2,16693,29187], +[3,28544,19], +"commandline", +"npm-scripts", +[2,29193,1541], +[3,28544,11], +[2,29193,11857], +[2,29196,29198], +[3,31303,12], +"neostandard", +"ise-router", +[0,29216,0,7573,2399], +[2,29189,11017], +[2,29202,29203], +[3,29192,12], +"atalog-model", +[2,29202,25240], +[2,29193,13224,29206], +"atalog-common", +[2,29209,202], +[2,28270,6270], +[3,29205,26], +"yarn to npm", +"@daybrush/jsdoc", +"backstage", +"ci/cd", +"immobiliare", +[2,29214,12825], +[0,28880,1004,29031,29032,31244,1418,26495,32926,26483,26489,32934,29021,29034,28458,31198,29012,29009,26450,29005,26482,30527,29001,29008,1445,29019,28479], +[1,2343,29221], +"npm upgrade", +[2,28826,10309], +"vaul-vue", +[0,29223,29225,26824,2523], +"rgv", +[0,4484,29755], +[2,1262,25816], +[0,89,1177,4039,4042,1894,3824,91,4874,4880,3884,4883,3885,28540,8656,8660,4887,10817,1011,1009], +[2,34674,588], +"npm-cli", +[2,29229,29303], +"@hyrious/esbuild", +[1,2343,29232], +"ntainer", +[0,29256,29257,29258,34352], +[2,26109,28923], +[3,28200,13], +[2,29240,29249], +"@cropper/", +"are-", +"we-there-yet", +[2,29237,29238], +[3,10309,13], +"image-cropping", +[2,29243,3642], +"image-view", +"image-processing", +"cropper-element", +"mocha-jsdom", +[3,31831,14], +[3,5926,13], +"-type-helpers", +[2,29254,29255], +"cvss", +"-npm-utils", +[2,19773,29252], +[3,3978,9], +"arry-night", +[0,29186,29192,29194,1364,2026,29195,2664,4709,4757], +[0,29200,29201,29204,29205,29207,6494,9240,3244,4342], +[0,29212,17978,29213,29214,29215,5995], +"@asteasolutions/zod-to-openapi", +"gluegun", +"@trpc/server", +[2,17612,29264], +"nuke", +"custom-alias", +[2,4026,29266], +"tspaths", +"@nuxt/eslint-config", +"event-driven", +"money", +"blaze", +"percentage", +[1,2343,29274], +[2,8293,1983], +[0,26964,0,26997,2523], +[1,2343,29278], +"a-sync-waterfall", +"asap", +[0,0,29286,29287,2537], +[2,3522,364], +[2,3192,29279], +[3,29280,16], +[2,29281,2759], +[2,5223,8861], +"s-browser", +[2,19390,29284], +[0,1148,2899], +[0,26257,1111,1473,7208,1437,1623,32453,6616,29222], +[3,26364,17], +[1,2343,29296], +"@nuxt/module-builder", +[2,18124,2844], +"@4c/tsconfig", +"@react-bootstrap/babel-preset", +[2,29344,7625], +"@nuxt/test-utils", +[0,29298,29302,29329,2399], +"jsonpathly", +[0,7387], +[2,29301,29538], +"css4", +[3,5782,27], +[0,4874,4880,4883,1030,3286,89,3824,1983,26744,1984,11039], +[3,4055,16,6], +[3,26699,14], +"achine-id", +[2,27946,29305], +"parsers", +[2,15904,29307], +"@zkochan/js-yaml", +[2,15904,6698], +[3,17944,18], +"-and-columns", +[2,27005,29312], +"@napi-rs/", +"graphQL", +"wasm-runtime", +[2,29314,29316], +"telejson", +"Mobile", +"nderer", +[2,25806,14029], +"@whatwg-node/promise-helpers", +[2,29326,29332], +[2,20164,22156], +[2,11936,1564], +[3,9250,19], +"processinfo", +[2,11936,29327], +[0,5592,1745,23803,3287,3452,8124], +"node-preload", +"process-", +"nuxt", +"on-spawn", +[2,29331,29333], +"spawn-wrap", +"css library", +[1,2343,29353], +"any-path", +[2,29340,29341], +[3,132,10], +"local-node-rig", +"jsdoc-fresh", +"jsdoc-region-tag", +[3,29293,17], +"nuxt-ui", +"ui-framework", +"undefined-", +[2,29347,15400], +[2,8302,29348], +[2,29383,29384], +"@readme/", +"example", +[0,29363,0,29472,2523], +"oas-examples", +[2,29351,29354], +"@readme/o", +"penapi-parser", +[2,29356,29357], +[2,8818,5940], +"@types/me", +"moizee", +[2,29360,29361], +[0,2817,18023,1532,31802], +" initiative", +[2,3452,29364], +"openapi ", +[2,29366,10658], +[3,29367,12], +[2,29366,1746], +"oai", +"@eslint/css", +"print-coveralls", +"ts-mock-imports", +"egjs-jsdoc-template", +"to-openapi", +[2,28343,29375], +[2,29351,29376], +"@egjs/release-helper", +[3,20227,14], +[2,29379,8125], +[2,5290,29382], +"-plugins", +[3,25931,14], +"quis-saepe-velit", +"@renyii/vue-renderless", +[2,31525,29391], +"andom-function", +[2,30713,29397], +"@teamteanpm2024/aperiam-fugit-error", +"prollyfill", +"ize-observer-browser", +[2,19965,29393], +"-es6-transform", +[2,29418,29475], +"ec", +"gulp-exec", +"ign-functions", +[2,29399,29400], +[3,27720,16], +"ototype-minify", +"@vercel/ru", +"@pkg", +"js/support", +[2,29402,29403], +"flicking", +"globalthis", +[2,29408,26274,29411], +[3,29389,17], +"ostringtag", +[2,17422,29409], +"alias-quod", +"egjs", +"-upgrade", +[2,29408,29415], +"ut-voluptatum-vero", +"indexof", +[3,26699,20], +[3,29389,16], +"@loki/integration-react", +[3,31032,17], +"@modelcontextprotocol/sdk", +"@mar", +"iocasciaro/benchpress", +[2,29422,29423], +[2,31009,16609,18756], +"bean", +[2,31550,29430], +"notation", +"segment", +" upgrade", +[2,29438,7031], +[2,29418,29433,29434], +"effective-octo", +[3,246,18,8], +[2,29436,29437,29439], +[3,29432,17], +"xpedita-", +[3,805,9], +"labore-ipsum", +"es-object-atoms", +[2,29419,4009], +"mentoss", +"@ucast/mongo2js", +[2,28865,6324,4056], +"unconfig", +"permissions", +"abac", +[2,29418,29449], +"odio-fugiat-in", +"ee-first", +"rbac", +"ibac", +"cancan", +[2,29487,188], +"@sxzz/eslint-config", +"wrappy", +"quick-lru", +[2,29459,29620], +"@sxzz", +[2,29418,28215,27463,29461], +"odit", +"@blakeembrey/deque", +[3,29462,13], +[2,29463,1283], +"@sxzz/test-utils", +"@unocss/eslint-plugin", +[3,4949,17,10], +[2,160,1554], +"unocss", +"unplugin-unused", +[2,30209,28945], +[0,30999,28818,5995,17977], +[1,2343,29484], +"epoll", +"beatae-aliquid-id", +[2,23240,3209], +"@zibuthe7j11/deserunt-quasi-impedit", +"gpio", +[3,7033,9], +"raspi", +"beaglebone", +"-black", +[2,29481,29482], +[0,0,29485,29491,2537], +[0,19325,1414,1894,3985,3998,4039,4389,4505,91,1906], +"llms", +[3,29419,18], +[2,10441,20008], +"lazy-prop", +[2,27542,29489], +[0,1623,1936,965,5122,12344,34050,3665,22145], +[2,29294,1892], +[2,35506,15215], +"s-compressor", +[2,29628,29629], +[1,2343,29497], +[0,29498,29499,29516,2399], +[0,2611,4763], +[0,29259,192,5467,23531,29261,4865,4874,1009,1011,10417,668,1177,1881,1895,29262,1915,1938,1955,2070,2675,2990,1894,29265,4039,4480,4494,91], +[2,33343,1640], +"bath-es5", +"dere", +"ference-", +[2,29503,2845], +[2,29502,29504], +[2,29510,29513], +"-adapter", +[2,2085,29507], +[2,1170,29508], +[3,10065,15], +"deref-sync", +[2,7526,29511], +"ooks", +"fetch-retry", +[2,29112,3073], +[0,2611,5995,29268,29270,5130,24090], +"@base-ui-components/react", +[3,32804,12], +"docz", +"docz-utils", +"open api", +"docz-theme-default", +[1,2343,29526], +"aws-sdk-client-mock", +[2,32539,200], +[0,29541,29547,29516,2537], +[3,26032,12], +"computer", +[2,29530,29532], +[3,25758,18], +"quadrocopter", +"m-sint-necessitatibus-possimus", +[2,29534,15050], +[3,33156,12], +"unifont", +[2,29627,29631], +"cupertino-pane", +"licit-resource-management", +"countrynames", +"kill-port", +[0,1457,1491], +[2,15713,10050], +[2,28397,553], +"@testcafe/publish-please", +"aws-lambda", +"eruda", +[0,1138,4494,2070,2675,1177,4039,668,1894,91,4865,4874,2990,29261,4480,192,29265,1938,10417,1895,1955,1011,1881,5467,1009,1915,29262], +[1,2343,29562], +"nano-staged", +"elapsed-time-logger", +"hashish", +"gulp-open", +[2,4807,3864], +"cupertino", +"pane", +"slide", +"-call", +[2,29557,4408], +[2,6606,29558], +"fasteejs", +"ua-is-frozen", +[0,29570,29578,29612,2487], +[3,26032,13], +[2,29609,12835], +[2,29573,6802], +"prelude-ls", +"deep-is", +"astro-auto-import", +"livescript", +[0,4729,1091,4494,12105,3533,3348,1410,1606,28452,4548,1458,3183,33145,1699,2096,11993,3547,28460,2689,2668,28941,2191,3781,36687,28461,36123,3509,4108,28482,28518,26696], +[3,28967,11], +[2,29571,3642], +"country-", +"@pouchlab/ui", +[2,29573,1460], +[2,29573,7285,2669], +"-dis", +[0,4164,4039,4042,668,9241,1587,1610,7819,28585,7892,12461,3813,28426,4057,8818,31727,28586,28854,29228], +"ppsx", +"-discarder", +[2,2184,29580], +"chai-jquery", +[2,1221,6621], +"corejs-typeahead", +"doiuse", +"gulp-add-src", +[2,2352,29588], +"-bust", +"gulp-check-deps", +"sequencify", +[3,28628,14], +[2,2504,29687], +"gulp4-run-sequence", +"is-empty-object", +"motion-ui", +"sassy-lists", +[2,22109,29598], +"-forward-reference", +"vinyl-named", +"sql-ddl-sync", +"sql-query", +[2,29611,29625], +[2,29604,29606], +[3,17589,11], +"redshift", +"helper-rel", +[2,29608,4213], +[3,29603,18], +"gradient", +"grommet", +[3,940,8], +[0,31153,5592,6354,29311,27837,5130,29315,29727,5284,23803,202,28323,89,31175,91], +[1,5293,29665], +"tinygradient", +"tmpdir", +"ps1", +"glob2regx", +[2,29619,29620], +"@bokub", +[3,29621,16,9], +[2,7623,7628], +[2,1283,17321], +"template ", +[2,29623,16111], +"expand-path-helper", +"magnific-popup", +[3,4968,15], +[3,111,18], +"-cloud-services-collaboration", +"grommet-icons", +"composable-commerce-test-data", +"styleable", +[3,3474,9], +[2,10818,29635], +"toolbars", +[2,29637,5592], +[3,11285,19], +"@vscode/vsce", +[2,10829,29640,35971], +"source-l", +"vscode", +[2,964,4415], +[2,29644,591], +[3,19588,29], +"chromatic", +[2,29650,29651], +"addlistener", +"addeventlistener", +"waits", +"grommet-", +"theme-hpe", +[2,1192,29653], +[3,12201,18,16], +"random-int", +"react-shadow", +"resolved", +"fulfilled", +[2,29659,22145], +[3,29576,18], +"tarball-extract", +[2,29662,29663], +[3,35482,11], +"act-selectors", +"fifo", +[0,8391,29688], +"grommet.io", +"grommetux", +"sticker sheets", +"design patterns", +"app templates", +"atomic design", +"invalidate", +"WCAG 2.1", +[2,8652,29675], +" navigation", +"screen reader tags", +[3,10826,11], +"graphical user interface", +"plunder", +"exit-x", +"modelcontextprotocol", +"osition-area-property", +"pwa-asset-generator", +"_codesniffer", +[2,1936,29684], +[2,17753,5130], +"-lint", +1743292800000, +[2,23814,6653], +"rapid-development", +"proclaim", +"@grammyjs/types", +"dart-sass", +"grunt-jekyll", +"mcp", +"deno2node", +"sigstore", +[2,9466,1153], +"antora", +[3,3397,13], +[2,29700,3212], +"zepto", +[3,12478,11], +[2,30713,29989], +[1,2343,29712], +"countries", +[2,22642,5351], +[2,18145,4581], +"@next/font", +"package-up", +[2,17507,4107], +[0,29714,29715,29720,34352], +"@jsdevtools/ez-spawn", +[0,6680,26246,26882,26247,26883], +[0,87,29211,29381,29378,5583,811,816,6373,4864,4874,29386,1009,32801,1011,1165,1195,1264,1540,1593,1596,10944,29374,1177,1938,1942,13668,2151,2193,6382,29120,28366,2675,28629,29392,3400,29137,3566,29372,28369,27120,4042,20981,10854,29398,20983,4073,4076,4079,2278,13739,29373,11440,4484,4487,28625,91,20474], +"@types/png", +[2,29716,1722], +"context7", +"vibe-coding", +[0,32054,29405,31512,29002,4453,28125,5131,89,188,1098,3698,35060,35062,35058,29412], +[2,17590,23989], +"png.js", +[2,29573,29730], +"screenshots", +"ai-detection", +"screengrab", +"headless", +"app-detection", +"rapidoc", +"iso-codes", +"iso", +"api-generator", +"find-process", +[1,2343,29738], +"low-code", +[2,29737,3729], +[3,33097,12], +[0,0,29739,29864,2537], +[0,107,91,1983,11026,26744], +[3,7895,13], +"jpeg-js", +"striptags", +[2,1948,29816], +"baas", +"launch-image", +"splashscreen", +"splash-screen", +"image-generation", +"aws4", +"mstile", +"pwa-assets", +[3,7863,11], +"web publishing", +[2,3862,29804], +"@ionic/react", +"@loki/runner", +"@loki/target-chrome-app", +"@apitools/openapi-parser", +[2,29760,6866], +"base64-", +"xml-but-prettier", +"idb-keyval", +[3,5062,14], +"rypto-js", +[2,29763,29764], +[2,29785,17878], +"@saithodev/semantic-release-backmerge", +"cebook-js-sdk", +[2,22819,29768], +[2,1983,29303], +[3,19588,24], +"nline-", +[2,11294,6436], +[2,29772,29773], +[2,29771,29774], +[2,29781,29782], +"river-adapter-utils", +[2,2767,11110], +"jsdoc-babel", +[2,27738,8791], +[3,14065,15], +"mplate-html-minifier", +"parse-server", +"inspectpack", +[3,29757,20], +"Custom Element", +"Web Component", +"swagger ui", +"swagger ", +"WHATWG", +[2,28008,57], +"html5 parser", +[2,28008,1753], +[2,1936,1753], +"openapi ui", +[2,29366,4366], +[2,29366,11328], +[2,29366,3902], +"fast-ur", +"l-parser", +[2,29799,29800], +[2,29366,25677], +[2,29789,4366], +"animatable", +"react-swipeable-list", +"pause", +[2,29811,29812], +[3,1551,9], +[2,29808,18716], +[2,1432,29809], +[3,29757,13], +"native-android-emulator", +[2,29814,29815], +[3,29807,20], +"ios-simulator", +"-preferences", +[2,31868,5891], +[2,29822,19102], +"collapsible", +"accordion", +"readme-md", +[3,4272,10], +[2,11375,10850], +"username", +[3,9308,9], +[2,29827,29828], +[3,4060,15], +"ocal-resolve", +[2,3500,1274], +"visual testing", +"swipeable", +"customizable", +[3,1419,20], +"teeny-tap", +"base64url", +"touchscreen", +"listview", +"swipe-to-delete", +"swipe-actions", +"json/simple-icons", +[2,29852,32865], +"iso-country-codes", +"use-composed-ref", +"use-latest", +[2,29866,1460], +"@preconstruct/cli", +"blue-tape", +"autosize", +"grow", +"riot", +"events.once", +"@scalar/s", +[2,30844,1983], +"exist", +"md-writer", +[2,12557,8982], +[2,29858,29859], +[3,7806,10], +"mon-tags", +"ts-declaration-location", +[2,29863,14056], +"isabsolute", +[3,1733,14], +[0,31549,31550,29427,31553,31565,9006,3015,31566,15813,10725,30672,5066,15571,89,31567,1098,188,12295,5131,28125,31568,31569], +"react-smooth", +[3,29842,12], +"@borderless/ts-scripts", +[2,29958,29576], +[2,29870,34050], +"victory-", +[1,2343,29929], +[2,10818,29873], +"mdx-gfm", +[2,10818,29875], +"webpack5-compiler-swc", +[2,29877,29878], +[3,10841,15], +"-runner", +[2,33114,22982], +[2,33114,29881], +"time-format", +"@rkusa/linebreak", +[2,29885,29886], +"opentype.js", +[3,18787,15], +"v-expression", +"vitest-axe", +"log-process-errors", +"sortablejs", +[2,5581,29898,27479], +[2,29518,29892,29930], +"native-pr", +"jpeg-exif", +"linebreak", +"png-js", +"@riotjs/dom-bindings", +"blob-stream", +"multi-pa", +"pdfjs-dist", +[2,29904,4643], +"pdf writer", +"pdf ", +[2,29902,1179], +"@riotjs/", +[2,29906,29907], +"@riot", +[3,25083,18,7], +"call-delayed", +"chai-i", +[2,29904,93], +[2,29904,614], +"ncreasing", +[2,29909,29912], +[2,29915,29916], +"@wdio/s", +"auce-service", +"bianco.attr", +"pgpass", +"pg-pool", +"pg-types", +"bianco.query", +"cumpa", +"pg-protocol", +"curri", +[2,29126,28794], +[2,29927,28794], +[3,4069,15], +"pg-cloudflare", +[0,29947,29948,29981,2523], +"eview", +"pg-co", +"py-streams", +[2,29931,29932], +"@cloudflare/workers-types", +"custom tags", +"minimalist", +"libpq", +"rdbms", +"data binding", +"riotjs", +"riot.js", +"tdesign-mobile-vue", +"oxc-resolver", +"copy-source", +[2,5237,29944], +"npm-watch", +[0,29443], +[0,33580,5087,4874,1429,31602,2024], +[2,29950,12826], +[3,35537,26], +[2,29956,582], +"hasha", +"reorder", +"ng-sortable", +[2,12318,29992], +[3,66,20], +[2,27777,27738,1764,1524], +"iso-", +"@use-gesture/vanilla", +[2,29961,29962], +"tdesign-", +"icons-vue-next", +[2,29958,29658], +[2,1547,3525], +[2,3525,15159], +[2,812,1002], +"@soerenmartius/vue3-clipboard", +" build", +[2,3525,29968], +"/build", +[2,3525,29970], +"dom-parser", +"qrcode.vue", +[2,8851,19675], +[2,29976,29977], +[3,32978,16], +"atic-import", +[2,29976,29979], +"yles", +"@tdesign/site-components", +[0,29446,14374,1081,29447,29451,29452,29453], +[1,2343,29985], +[2,29961,29984,200], +"publish-", +[0,29986,29995,2514,2537], +[0,26702,19344,1915,32525,1953,1958,1959,2105,2203,26716,4523], +[2,4609,29988], +"tdoc", +"ystem-ui-font-family", +"tdesign", +"pinkie-promise", +"-widget", +"weui", +"denodify", +[0,4874,25950,1177,2675,17529,2931,27949,3401,4505,91], +[2,29997,3346], +[3,6806,10], +"tstyche", +"atomic", +[2,30016,30020], +"atomic-sleep", +[1,2343,30160], +"xit-leak-free", +[2,27492,30003], +"pino-", +[2,20417,4714], +[2,30005,30006], +"std-", +[2,1753,591], +[2,30008,30009], +[2,30005,30010], +"quick-", +"-unescaped", +[2,1671,30013], +[2,30012,30014], +[3,18858,17], +"real-require", +"sonic-boom", +"thread-stream", +"-tag", +"lush-write-stream", +[2,5537,30021], +"obug", +"bole", +"fastbench", +"-write-stream", +[2,20064,30026], +"midnight-smoker", +"steed", +[2,30031,30032], +[3,3577,11], +"-variables", +[2,30034,30035], +"postcss-he", +"xrgba", +"postinstall", +[3,3848,9], +"devpostinstall", +[2,30040,1524], +[3,3668,14], +[2,24276,30042], +"odule-replacement", +"graphql-jit", +"uploader", +"preview", +"image-edit", +[2,30085,3582], +"mqemitter", +"remark-math", +"single-user-cache", +"base64-stream", +[2,24101,30057], +"ready", +"-simple", +[2,2105,30054], +"win32", +"woslash", +[2,9406,7293], +[2,30060,30065], +"remark-s", +[2,30062,30063], +"gulp-conve", +"rt-css-var", +"picklog", +"martypants", +"wechat", +"weixin", +[2,29314,4183], +[2,17998,30070], +"ading-time", +[2,27707,364], +"better-react-mathjax", +[2,30074,25131], +[3,9313,17], +[2,30076,30077], +[3,12415,13], +"alue-to-estree", +[2,30079,30080], +[3,31790,16], +"ocalematcher", +"tiny-lru", +[2,10884,30083], +"egotiator", +[2,11932,11525], +"iso-countr", +[2,30087,30096], +[3,13203,19], +"irregular-plurals", +"fs.extra", +"plurals", +"count", +"irregular", +"noun", +"nouns", +"requireg", +"orm-data", +"@pkgr/core", +[2,4511,30118,30123], +"make-synchronized", +[2,30101,30102], +[3,30099,13], +"ous", +"sync-threads", +"fclone", +"vizion", +"@pm2/io", +"pidusage", +"pm2-axon", +"@pm2/", +"@pm2/agent", +"pm2-", +"pm2-deploy", +"synchronize", +[2,5340,30116], +"@pm2/js-api", +"webc", +"cli-tableau", +[3,32969,11], +"pm2-axon-rpc", +[2,30111,28917], +[2,30111,21833], +[2,30109,30121], +"heme", +"logs", +"kraken", +" balancer", +[2,3001,30126], +"lb", +"balancer", +[2,3614,30129], +"kubernetes", +"k8s", +"emoji-flags", +"pm2-docker", +"graceful", +"phone-codes", +"node-pm2", +"fs-fixture", +"production", +"keymetrics", +[2,10339,13522], +"strong-pm", +"supervisord", +"pm2.io", +"@ibyar/expressions", +" production", +[2,17979,30146], +[2,3729,6877], +"probes", +" process", +" alive", +[2,30150,30151], +[2,25607,30152], +"process ", +[2,30154,8309], +"clustering", +"memoizerific", +"cluster cli", +"dev ops", +[0,30171,0,29047,2537], +"phone-prefixes", +"@vercel/blob", +[2,7285,2669], +"tap-dot", +[2,30180,30181], +"PNG", +"js-png", +"node-png", +"import-without-cache", +"png-parse", +[0,2845], +"pg-gateway", +"@ibyar/decorators", +"pglite-2", +"aurora", +"ibyar", +[2,4641,5341], +[2,4641,7256], +"evaluation", +[3,578,10], +"arousel", +[2,30195,3825], +"no-code", +"mvp", +[1,2343,30186], +[0,30187,30188,30189,2537], +[0,8712,1423,5210,1209,3021,26499], +[0,34225,4874,2559,91,34229,28456,34231], +[0,89,5130,21151,28811], +"poe", +"economy", +"ninja", +"poe.ninja", +"poe economy", +[3,581,10], +[2,30212,3730], +" of exile", +[2,3403,30197], +" economy", +[2,30198,30199], +[3,30200,14], +[2,30201,30192], +[2,30194,8568], +[2,30201,5592], +[1,2343,30229], +"ast-walker-scope", +"poe.watch api", +[2,30193,8568], +"@vercel/ne", +"copilot", +"@types/ne", +[3,587,10], +"reval", +[2,24808,30213], +[2,6649,2995], +[2,6645,30215], +"tsgen", +[2,30231,30232], +"glamor", +[2,24177,591], +"o-async", +" manipulate", +[2,1473,30222], +[3,30223,15], +[2,30224,6600], +" color manipulation", +[2,7595,30226], +[3,35570,16], +[0,30249,0,2514,2487], +"muggle-string", +[3,593,10], +"potlight", +[2,579,30251], +[2,29444,30511], +[3,6372,10], +[2,30235,6374], +[3,23816,17], +[2,30237,13290], +[2,30235,30238], +[2,30235,1973], +[2,30240,3007], +"nuget-publish", +[2,30244,4900], +[3,13484,37], +"popperjs", +[2,1517,30248], +"attached", +"center", +[0,9315], +[1,2343,30308], +"tiptap", +"allure-js-commons", +"flush-promises", +[2,30255,30259], +"@yarnpkg/l", +[3,10175,16,14], +[2,30276,30280], +"source map", +"ibzip", +[2,23660,30261], +"tector", +[2,11369,30282], +[2,10880,30264], +"preset-env", +"jison-gho", +[2,16645,30267], +"null", +"calculation", +"unixify", +"allure", +"codeceptjs", +"testops", +[3,3674,10], +[2,30273,25461], +"read-cache", +"express-i", +[3,1895,16], +"oblems", +[2,30277,30278], +"ntlayer", +"is-mobile", +"spector", +"deep-object-diff", +"@ngard/tiny-isequal", +[2,6268,1467], +[2,206,30285], +[2,209,6731], +"@intlayer/chokidar", +"hsl", +"hsla", +"hwb", +"rgba", +[2,30294,6008], +[3,30288,11], +[2,30296,23], +[3,30293,12], +"intlayer", +"caniuse-api", +"colord", +[2,10829,30311], +[3,19443,15], +[2,30301,5592], +[2,9738,30304], +"s-hooked", +"@utils/ts-config-types", +[3,30305,16], +"@intlayer/", +[0,0,30473,2514,4139], +"@utils/ts", +[2,30309,32810], +"docs-mdx", +[2,9402,30374], +"get-npm-tarball-url", +"pixrem", +"pleeease-filters", +"apply", +[2,3562,30316], +"postcss-a", +"ttribute", +"-case-", +[2,30322,30367], +"use", +"insensitive", +[2,30320,30323], +[2,30319,30324], +[2,30318,30325], +[3,3570,22], +[3,3570,14], +[2,30328,12981], +"hex-alpha", +[2,30328,30330], +[3,30331,15], +"sl", +[2,30332,30333], +"wb", +[2,30332,30335], +"rebeccapurple", +[2,30328,30337], +[3,30338,15], +"gb", +[2,30339,30340], +"a-fallback", +[2,30341,30342], +[3,4791,10], +"nt-family-system-ui", +[2,30344,30345], +[3,30346,13], +[2,30347,24044], +[3,3611,18], +[2,30349,6422], +"user-agents", +"nitial", +[2,3607,30352], +[3,3622,10], +"dia-minmax", +[2,30354,30355], +"seudo-class-any-link", +[2,6423,30357], +[3,30358,14], +[2,30359,11513], +[3,30274,11], +"lace-overflow-wrap", +[2,30361,30362], +[3,3681,17], +[2,30364,6421], +[2,30364,23293], +[3,11228,16,2], +"cssrecipes-custom-media-queries", +[3,30368,11], +[2,30369,19400], +[2,30369,10052], +[2,30369,594], +"vert", +"ermaid", +[2,28756,7224], +"ical-rhythm", +[2,30373,30376], +[2,30369,30377], +"i-am-meticulous", +[2,1884,30379], +"isogram", +"oc-and-anchor", +[2,7646,30382], +[2,12798,591], +[2,3160,30384], +[3,30385,11], +"@react-aria/interactions", +"filenames", +[2,30386,30388], +[2,30386,5980], +[2,30386,89], +[3,30391,13], +[2,30392,1213], +[3,30391,12], +[2,30394,367], +[2,30386,1002], +[2,30386,2282], +[2,30415,30461], +"nano-logger", +"npmpub", +[2,25230,25461], +[2,3562,30401], +"-inline", +[2,3897,30403], +"@enact/ui", +"lazy-universal-dotenv", +"to-slug-case", +[3,4693,9], +"ano-logs", +[2,30408,30409], +[2,30058,30412], +"-position", +"cssnext", +"modern-tar", +[3,30387,12], +[2,30417,364], +[3,906,9], +[3,205,11], +"ascade", +"-lay", +"er-name-parser", +[2,30420,30421], +[2,30419,30422], +[2,30418,30423], +[2,30417,30429], +"at-rule", +"atrule", +"csswg", +"delivery-react-native", +"queries", +[2,30417,30432,30433], +"plugin-co", +"nsole-breadcrumbs", +[2,30435,30436,30437], +[3,30431,16], +"network-", +"breadcrumbs", +[2,30435,89], +[2,30438,30440], +"-native-client-sync", +[2,30443,30444], +"declarative", +[3,30439,29], +"event-sync", +[2,30443,30446], +"global-error-handler", +[2,30443,30448], +"hermes", +[2,30443,1577], +[2,30443,30451], +"unhandled-rejection", +"iserror", +"react-syntax-highlighter", +[2,30457,30460], +"bugsnag", +"stability", +[3,30375,17], +"@enact/webos", +[2,30875,4000], +"croll-area", +"overlays", +"at-rules", +"@ionic/angular", +[2,30415,17966], +"@keyframes", +"@counter-style", +"@devtools-ds/object-inspector", +[2,4807,30453], +[2,30475,30476], +"@aw-web-design/x-default-browser", +"@fal-works/esbuild-plugin-global-externals", +"flexbugs", +[0,4483,1177,1984,1894,91,4874,1953,7677,1982,1895,1011,1009], +[1,2343,30482], +[3,659,18], +"nobis-nostrum-nam", +"@skylernpm/hic-inventore-dolores", +[3,3616,9], +"postcss-less", +"tyl", +"postcss-styl", +[0,30490,30492,30497,34352], +"quickapp", +"PHP", +"sss", +"convex", +[3,29658,18,8], +[2,30502,27421,30606], +"world-countries", +[0,1437,3074,3714,4361], +"image-set", +[0,2228,2240,2247,2316,1906], +[2,2662,30554], +"@eggjs/oxlint-config", +"@vercel/e", +"mock-spawn", +[0,21779,8221,13814,15344,158,6707,3178], +"node modules", +[3,31793,24,5], +[1,2343,30524], +[2,30503,30515], +[3,30477,11], +[3,30489,12], +"postcssrc", +".config.js", +[2,3561,30505], +"@recharts/devtools", +"motion-dom", +[2,30510,186], +"motion-u", +"-snapshot", +"midas", +[3,3591,9], +"ark-", +"y-codes", +"theme-class", +[2,30514,30516], +[2,30513,30517], +"hort", +[2,3677,30519], +[2,1172,30522], +[3,5558,22,6], +[2,30560,6802], +[0,30525,30526,30189,2523], +[0,668,8712,4090], +[0,1192,91,5087,4874,28455,28574], +[2,30546,30547,3966], +[1,2343,30549], +[2,30530,30537], +[3,30868,11], +"cssnano-", +[2,30531,594], +[2,30534,11504], +"@codecov/", +[2,30536,6579], +[3,1300,12], +"silent", +"expressots", +"font-f", +"clean-architecture", +"font-family", +"font-weight", +[2,30544,30545], +[3,4526,12], +"ramework", +[3,31198,25], +"particles-", +"desm", +[0,30550,30555,30556,2523], +[0,1169], +[2,41,30552], +"pro-components", +[2,5557,3514], +"node16", +[0,3421,1429,4493,2899,4039,2026,4474,91,4856,4874,6503,1151,6494,8648], +[0,6653,2275,5472,6969,5982,7320,11346,3541,1169], +[1,2343,30580], +"esc", +[2,7632,30558], +[3,30501,14], +"gulp-better-rollup", +[2,30560,1460], +"Leaflet", +"Maps", +"Gesture", +"Handling", +"two", +"fingers", +[2,30571,30572], +[2,3976,30573], +"world", +[3,29868,24,3], +"anitize", +[2,30571,30578], +[3,220,19], +[2,4026,3639], +[2,30575,30576], +[3,29963,27,3], +"atrules", +[0,30596,30597,2514,2523], +"children", +"nestings", +"@anthropic-ai/sdk", +"@azure-rest/ai-inference", +[2,959,30586], +"vue-virtual", +[2,209,3376], +[3,30402,16], +[2,30588,4298], +[2,2574,3375], +"world-iso-codes", +[2,964,188], +[2,30599,29842], +"normalizes", +"fixes", +[0,1112,1415,16230,24324,36538,30169,30023,3530,28865,29444,4135,26379,27921,4459,33251,24214], +[0,33043,29170,29455,29458,29465,4874,20374,5254,29891,29466,33253,7677,23203,10984,19839,1680,1177,20044,16860,3144,3749,15450,1894,23535,30234,24181,91,29469,30908,28797,29470,1983,1984], +[1,2343,30601], +"world-", +[2,30613,1460], +[0,30605,30608,30611,2537], +"@cfworker/json-schema", +"@clerk/localizations", +"@ark/attest", +[0,1676,1679,2151,2212,17450,4400], +"non-corrupti", +"admin-lte", +[0,5245,29493,4864,1429,1177,2899], +"@clerk/nextjs", +"@clerk/themes", +[0,1764,7682,26965,3428,2090,27,1002,1965,5995], +"backendless", +[3,30593,18], +"to-valid-identifier", +[1,2343,30626], +"@astrojs/mdx", +[2,30618,30619], +[3,28058,16], +"tro", +[2,3704,34683], +[2,30625,3286], +[2,30623,9872], +"control-", +"smartbanner.js", +[3,2635,14], +[0,0,30627,30780,2537], +[0,8648,4874,4880,34737,1894,89,3824,7671,91], +[2,30612,30665], +"cascade-layers", +[2,216,30629], +[3,30630,19], +[3,3569,13], +[2,30631,30632], +[3,30633,24], +"mix-function", +[2,30634,30635], +[3,30633,20], +"alt-text", +[2,12009,30638], +[2,30637,30639], +[3,28688,12], +[2,30641,5746], +[2,216,30642], +"ormat-", +[2,30644,4798], +[2,30539,30645], +[2,216,30646], +"gamut-mapping", +[2,216,30648], +[3,30649,19], +"radients-interpolation-method", +[2,30650,30651], +"hwb-function", +[2,216,30653], +[3,215,19], +"c-unit", +[2,30655,30656], +[2,30655,30352], +"light-", +"dark-function", +[2,30659,30660], +[2,216,30661], +[3,30662,19], +"ogical-", +"-request", +[2,30683,31073], +"-and-clear", +[2,14639,30667], +[2,30664,30668], +[2,30663,30669], +[3,30670,26], +"overflow", +[2,30671,30672], +[3,30673,30], +"behavior", +[2,11262,30675], +[2,30674,30676], +[2,30671,24800], +"viewport-", +"units", +[2,30679,30680], +[2,30671,30681], +[3,30628,13], +[2,30767,33380], +"media-minmax", +[2,216,30685], +[3,30686,24], +"-aspect-ratio-number-values", +[2,30430,30688], +[2,30687,30689], +[2,30695,10740,4978], +"nested-calc", +[2,216,30692], +[3,30693,19], +[3,30628,12], +"bannerize", +[2,31495,31502], +"play-values", +[2,29577,30698], +[2,3646,30699], +[2,30694,30700], +"oklab-function", +[2,216,30702], +"relative-", +"yntax", +"color-syntax", +[2,30704,30706], +[2,216,30707], +"scope-", +"pseudo-class", +[2,30709,30710], +[2,216,30711], +[3,30712,19], +"tepped-value-functions", +[2,30713,30714], +[3,70,7], +[3,5845,9], +[2,7854,30717], +[2,30716,30718], +[2,28533,30719], +[2,216,30720], +[3,30721,19], +"rigonometric-functions", +[2,30722,30723], +[2,216,10760], +"css-b", +"lank-pseudo", +[2,30726,30727], +"css-h", +[2,30612,33812], +"zarm", +"as-pseudo", +[2,30729,30732], +"css-pr", +"efers-color-scheme", +[2,30734,30735], +[2,1007,30738], +[3,13069,23,4], +"postcss-clamp", +[3,3591,10], +"r-pseudo-class", +[2,30740,30741], +"ouble-position-gradients", +[2,30513,30743], +[3,4791,14], +"within", +[2,30745,30746], +"gap-properties", +[2,3562,30748], +"ab-function", +[2,30478,30750], +[3,3616,10], +"gical", +[2,30752,30753], +[3,3664,9], +"pacity-percentage", +[2,30755,30756], +"verflow-shorthand", +[2,30755,30758], +"age-break", +[2,6423,30760], +[2,30764,30766], +"postcss-place", +[3,3710,17], +"lists", +"h", +"@biomejs/", +"playbook-builder", +"algo", +[2,444,30771], +"-interactions", +[2,30773,89], +[3,29959,13], +"@zarm-design/bem", +[2,3677,30705], +[2,30777,45], +[3,30774,13], +"ahooks", +"better-scroll", +[0,89,586,11000,26264,6458], +"hermes-compiler", +[1,2343,30791], +[2,30777,200], +"@oxc-project/runtime", +"zarm-ui", +"zarm-mobile", +[2,30790,553], +[2,20561,30789], +"render-stream", +[3,30784,13], +[0,30793,0,30799,2523], +"@oxc-node/cli", +[0,1687,5303,1459,6501,182,148,164,167,29468,187,153,191,28332,15690,28361], +"oxc-parser", +[2,30796,30797], +"@iconify", +"/utils", +[2,3882,11245], +[0,28407,1459,6094,28416,28417,2585,28442,18241,6038,6110,1936,6138,6139,6142,6144,6145,20863,14600,5130], +[1,2343,30801], +[0,0,30812,30825,2537], +"@enact/i18n", +[2,30804,30232], +[3,907,8], +"doublylinked", +"lightning", +"-pool", +[2,30806,30807], +"ilib", +"-bytea", +[2,25638,30810], +[0,1192,1177,4042,4468,1894,91,5087,1895,1955,2780,1011,1009], +"power-tasks", +"@cyntler/react-doc-viewer", +"putil-", +[2,30815,19138], +"varhelpers", +[2,30815,30817], +"@enact/docs-utils", +[2,30405,30821], +"-test-utils", +[2,18576,30823], +"nact-proxy", +"@fal-ai/client", +[0,31512,32054,35062,35060,20986,4453,5284,91,89,188,3709,23332], +[2,22180,591], +[1,2343,30836], +[2,1962,30830], +"titanium", +"dos-detector", +"ed-queue", +"-ended-queue", +[2,4420,30832], +[2,11344,977], +"tsm", +[0,30846,30863,30865,2443], +"level-codec", +"write-stream", +[2,25982,30838], +"ltgt", +"bundle-size", +"spark-md5", +"vuvuzela", +"rolldown-", +"react select", +[0,29178,3744,3911], +"react dropdown", +[2,30852,30856], +"empower", +[2,3696,12168], +"universal-", +"accessib", +"strict-equal", +[2,1683,30853], +[2,30851,30854], +"le react select", +"dereserve", +"accessible", +"licensify", +[3,21510,14], +"ilterify", +[2,30860,30861], +[0,48,53,68,61,71,73,76,14039,78,83,87,90,97,966,968,972,1195,1593,1610,1177,1879,1895,1938,1947,1955,1959,1192,2780,2843,3697,1894,89,3824,2924,4676,4677,4681], +"jsx-async-runtime", +[0,89,6071,7521,5128], +"@formkit/auto-animate", +[2,8293,181], +"@reporters/github", +"@apm-js-collab/tracing-hooks", +"tidev", +"iphone", +"precommit", +[2,5186,2203], +[2,5928,3717,2389], +"react-load", +"combine-promises", +"@actions/github", +[2,20201,1172], +"@actions/glob", +[2,19849,3583], +[2,1252,30880], +[2,20201,2942], +"errorstacks", +"-sinon", +[2,2878,30884], +"-display-", +"@google/genai", +"kolorist", +"oxlint", +[2,30893,30894], +"virtual dom", +"dom diff", +[3,30878,13], +"undler", +[2,3886,1541], +[2,30897,30898], +[3,38298,13], +"dx-loader", +[2,32359,13369], +[2,30901,7020], +[3,30899,18], +[2,30459,30903], +"-ssr-addon-v5-slorber", +[3,18018,13], +[2,30904,3642], +"@huggingface/inference", +"jest-l", +[2,30909,166], +"unplugin-a", +[1,2343,30925], +"ight-runner", +[2,30907,30911], +[2,35506,30914], +"tect-port", +[2,30916,30917], +[3,12312,18], +"shoehorn", +[3,2954,10], +[2,30923,1541], +"lugin-pug", +[2,30918,30920], +[2,5334,30921], +[3,4887,20], +[3,3703,15], +[0,0,12112,30927,2523], +"@nestjsx/crud", +[0,2070,1108,6961,57,29617,4643], +[2,206,31196], +[2,30930,32550], +"@vercel/b", +[1,2343,30933], +[2,18420,8162], +[0,30934,0,30936,2523], +[0,1459,16485,182,28912,148,187,153,28332,15690,28361,146,28913,15716,29131,29495], +"parcel-bundler", +[0,28407,1459,6094,28416,28417,2585,28442,18241,6038,6110,1936,6138,6139,6142,6144,6145,20863,5130], +"Vue", +[1,2343,30945], +"@zoroaster/assert", +"glob-fs", +[2,30942,10098], +[3,30939,11], +"unstyled", +"alamode", +[0,0,2667,31019,4139], +"humanized", +"si", +"locale", +"@a-la/fixture-alamode", +"localized", +[2,30952,1172], +[3,30949,14], +"@artdeco/clean-stack", +"@artdeco/erte", +"@artdeco/", +"renderkid", +[2,30971,4521], +"jitter", +[2,30989,186], +"exception", +[2,30955,30962], +"scripts.json", +[2,30926,30665], +[2,30965,614], +"@nestjsx/", +"@depack/render", +"crud", +"crud-generator", +"frameworks", +"parse-ms", +[3,30963,14], +"@netlify/framework-info", +"@wrote/exists", +"milliseconds", +"period", +"@wrote/rm", +[2,30942,6696], +"@zmotivat0r/o0", +"@pothos/core", +[2,30942,553], +"mercurial", +"hg", +"vcs", +"argufy", +"catchment", +"p-filter", +"p-locate", +"documentary", +"unplugin-u", +[2,5313,6355], +[2,15658,30992], +"-integration", +"npmjs", +"@pri", +"sma/engines", +[2,30994,30995], +"gatsby", +"hugo", +"netlify", +"ts-pattern", +[2,32976,33011], +"global-dirs", +"erotic", +"line-replace", +"@prisma/", +[2,31005,1676], +[2,13403,31016], +"xdg-app-paths", +[2,31005,5576], +"studio", +[2,31005,31010], +"migrate", +[2,31005,31012], +"internals", +[2,31005,31014], +"rtdeco", +"point-client", +[2,4354,31017], +[0,8618,8619,8620,1299,200,1523,6876,8622,1836,8623,1179,8624,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,8632,8633,4989,2184,8634,7009,6621,553,91,181,8635,4758,8636], +[1,2343,31082], +[2,31514,31516], +"fetch-engine", +[2,31005,31022], +"makepromise", +"get-platform", +[2,31005,31025], +[2,31011,2995], +"@prisma/ge", +"nerat", +"or-helper", +[2,31029,31030], +[2,31028,31031], +"promto", +"ORM", +"Prisma", +"reloquent", +"Prisma CLI", +"prisma2", +"JS", +"TS", +"SQL", +"SQLite", +"Postgres", +"core-js-pure", +"PostgreSQL", +"CockroachDB", +"MySQL", +"MariaDB", +"MSSQL", +"SQL Server", +"SQLServer", +"MongoDB", +[2,32483,13083], +"jest-location-mock", +[2,27845,31056], +"dule-alias", +[2,1464,31059], +"danger", +"-serve", +"spawncommand", +"docdash", +"hotreload", +"gulp-terser", +"@strapi/strapi", +"temp-context", +"webfont", +"usually", +"yarn-s", +[2,31070,11017], +"@pothos/", +[2,31084,31085], +[3,815,8], +"t-client", +[2,31072,31073], +"URIjs", +"pothos", +"IDE", +"svn", +"suggestions", +"intellisense", +"tagged-tag", +[0,31083,31199,31215,2537], +[0,29692,1079,1676,3310], +[3,8998,11], +"assword", +"@svgr/hast-util-to-babel-ast", +[2,31104,31682], +[2,31089,1541], +"@epic-web/", +"yalc", +[2,31092,364], +"@strapi/", +"@strapi/i18n", +"@strapi/admin", +[2,31092,1823], +[2,31092,553], +[2,31092,594], +[2,31092,2942], +[2,31100,184], +"@strapi/u", +[2,31102,1803], +[3,28426,12], +"zshy", +"@types/so", +[2,31092,18035], +[2,31107,31108], +"@strapi/c", +"loud-cli", +[2,31092,5701], +"get-latest-version", +[2,31112,31113], +"@strapi/p", +"ermissions", +[2,31115,31116], +[3,31105,12], +"-transfer", +[2,31118,31119], +"@strapi/co", +"ntent-manager", +[2,31121,21945], +[3,31117,16], +"customize", +[2,31092,31124], +"review-workflows", +[2,31096,31126], +"cript-utils", +[2,31121,31128], +"type-builder", +"interact", +"css-parser", +[2,31132,31133], +"@strapi/t", +"s-zen", +[2,19502,31137], +"uglifyify", +"uglifyjs", +"ustom", +[2,4807,4684], +"css-ast", +"strapi", +"cmf", +"alpha-sort", +"vent-", +[2,31143,2618], +[2,2621,31144], +[2,31151,5130], +"mdast-zone", +[2,5967,2619], +"svg-e", +[2,31149,31144], +[3,17944,19], +"aria", +"admin panel", +"koajs", +"jam", +"graphqL", +"@protobufjs/aspromise", +[3,31157,12], +[2,31158,14357], +[2,31158,5061], +[2,31158,2016], +[2,31158,1612], +[3,31162,13], +"loat", +[2,31163,31164], +[2,31158,8625], +[2,31158,3403], +[3,31167,13], +[2,31168,25200], +[2,31158,4577], +"infrastructure", +[2,13888,4719], +"semver-tags", +[2,10617,31173], +"self hosted", +"lernajs", +"css-tools", +"@icons-pack/react-simple-icons", +"@khmyznikov/pwa-install", +[2,25885,24348], +"wd2", +"jasminewd2", +"-js-extender", +[2,11132,31183], +"webdriver-", +[2,31185,10057], +"snake-case", +[2,23689,31181], +"ang-format", +[2,21680,31189], +"natives", +[3,19209,11], +[2,31192,591], +[2,4491,31193], +"vrsource-tslint-rules", +"syntax-patches-for-csstree", +"base-driver", +[2,31228,29677,31230], +[0,5245,4874,5542,29696], +[2,31203,31204], +[3,27731,11], +[2,31201,57], +[3,1006,11], +"averse", +"@types/args", +[2,31208,57], +"squid", +[3,34785,11], +"privoxy", +"mod_proxy", +"via", +"x-forwarded-for", +"@express", +"-zod-api/zod-plugin", +[0,32859,8549,5592,5576,5130,6082,28450], +[1,2343,31245], +"p3-linear", +"fill-keys", +"not-found-error", +[2,5223,31219], +"MCP", +[3,8648,12], +"hello-world", +[2,13669,31223], +[2,31226,28613], +[3,2670,12], +[3,33464,11], +[3,1004,13], +"cp-sugar", +"-external-push", +[2,31228,31241], +"-status", +[2,16238,31232], +"l-ct-react", +[2,31236,1983], +[3,11282,19], +[2,11147,1983], +[2,12042,4406], +[3,31198,24], +"pug-", +"move-base", +"pug-code-gen", +"pug-filters", +[2,31228,31261], +[0,26964,0,31273,2537], +"pug-lexer", +"@langchain/community", +"pug-linker", +"pug-load", +"pug-parser", +"pug-runtime", +"strip-co", +[2,31252,19490], +[2,31240,31253], +"@lobechat/agent-runtime", +[3,24593,18], +"down-it", +[2,31256,31257], +[2,24585,4535], +[3,31231,17], +"shape-emoji", +[2,31228,31271], +[2,31995,5257], +[2,32038,31267], +"bail", +"tap-bail", +" tools", +[2,31269,31270], +[3,31238,12], +"shape", +"updater-color", +[2,31281,26543], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238], +[1,2343,31309], +[2,33763,31291], +[3,31262,20], +"idn", +"idna", +"dns", +"domain", +[3,31262,21], +[2,31283,31284], +[3,31272,22], +"ut-modes", +"-bidi", +[2,7001,31285], +[3,11071,14], +[2,17414,31287], +"@uppy/companion", +[2,31313,364], +"detect-agent", +[2,5176,31293], +"remapping", +[2,31295,13901], +[3,33831,13], +[2,31298,31299], +"purge", +[3,28384,12], +"presigned-post", +[2,31301,31302], +[3,30257,11], +"erceptor", +[2,2032,31304], +"prom-bundle", +"grant", +"tus-js-client", +"qr code", +[2,2662,1278], +[0,26964,0,31273,2523], +"resumable uploads", +"tus", +"dropbox", +"@vuepress/", +[2,21282,31372], +[2,31316,31324], +"@radix-ui/", +"@browserify/envify", +[3,31317,12], +[2,31318,31135], +"common-s", +"hakeify", +[2,31320,31321], +"verr", +"primitive", +"webpack-chain", +"ide-mistake", +[2,31323,31326], +[2,15053,31327], +"unassertify", +[2,31355,31356], +[2,31313,553], +[2,31313,1783], +"vue-server-renderer", +[2,31338,31342], +"decode-", +[2,14649,4627], +[2,31335,31336], +[3,13063,12], +"filter-obj", +"-on-first", +[2,4237,31340], +"reset-app", +[2,31313,31346], +[3,5422,9], +[2,7193,3634], +"shared-utils", +[2,31332,2091], +[2,31349,3111], +[3,21294,16], +"retape", +[2,19469,31352], +[3,32087,20,4], +[2,21282,31354], +"last-updated", +[3,28754,17], +"ompose-refs", +"tap-esm", +[2,31359,31604], +[3,31330,18], +"synchronous", +[2,28756,8191], +[2,31363,31364], +[3,31361,17], +"rimitive", +"FIFO", +"lifo", +"LIFO", +[2,28756,32760], +"queue js", +"job queue", +"job ", +"active-header-links", +"scheduling", +[2,31371,31373], +[2,21282,3412], +"task queue", +"ordered", +[2,31380,31382], +"linked list", +[3,31368,20], +"dequeue", +"escape-keydown", +"assistant-stream", +[2,31385,6599], +"assistant-", +[2,31418,31420], +[1,2343,31476], +"parchment", +[3,15562,11], +[2,31395,31396], +[3,12455,16], +[2,31391,1722], +[2,17612,2924], +[2,5197,4408], +[3,1694,14], +"x-buildutils", +"@types/sharp", +"radix-ui", +"ai-sdk", +"shadcn", +"fuzzysort", +"grunt-search", +[3,19622,19], +[2,31403,3595], +"@qunitjs/browserstack-runner", +"assistant", +"openai", +"ai", +"chatbot", +"ai-chat", +"dom-e", +[2,15588,6863], +[2,31411,31412], +[2,31415,31416], +[3,6493,9], +"acritics", +"@types/qunit", +[3,31331,11], +"qunit-plugin", +"heme-default", +"@walletconnect/browser-utils", +"ai-chatbot", +"ai-assistant", +"ai-copilot", +[2,31349,31428], +"exists-stat", +"js-reporters", +[3,15580,13], +[2,26353,8791], +[2,31436,31464], +"chatgpt", +"gpt4", +"gpt-4", +[3,2888,14], +[2,31436,553], +[3,31421,15], +"testling", +[2,31436,31441], +"AnimationFrame", +[2,705,31439], +"safe-json", +[2,31436,31443], +"window-getters", +[2,31450,6774], +"-export-", +[2,31445,14057], +[2,1205,31446], +"envvar", +"sanctuary", +[3,31442,22], +"-identity", +[2,31449,31451], +"xyz", +[2,6080,31458], +"@ethersproject/address", +[2,31457,25352], +[3,10408,17], +"al-ui", +"wallet", +"walletconnect", +"jsonrpc", +"cryptocurrency", +"dapp", +"iso-crypto", +[2,31436,31472], +[2,31467,31408], +[3,31454,15], +[3,30286,15], +[2,31436,594], +[2,31436,1616], +"alc", +"legacy-modal", +[2,31478,9962], +"@globalart/nestjs-swagger", +[2,32811,32812], +[0,31481,0,7653,2523], +[2,31478,553], +[3,31465,22], +"timed-out", +[2,31478,594], +[0,12215,12219,1014,28999,7406,7403], +"exceptions", +"sentry", +[3,15602,13], +[2,31499,31500], +"@graphiql/plugin-doc-explorer", +[1,2343,31488], +[0,31505,0,31510,34352], +[2,31478,5576], +[2,31436,31491], +"jsonrpc-provider", +[2,31493,31494], +[3,31490,23], +"http-connection", +[3,27276,25], +[2,31497,31498], +"ethereum-", +"test-network", +[3,31438,16], +"ocket-transport", +[2,7850,21497], +[3,4986,9], +[2,2079,4406], +[2,11183,31503], +[0,29419,29441,29454,29756,29757,29766,29807,29813], +"father-build", +"@mastra/core", +"rc-test", +[2,31520,13927], +[0,29818,4270,29823,5472,1973,29830,29830,3857,89,5131,12295,12296,5122], +"react-slider", +"slider", +[1,2343,31522], +[3,31027,15], +[2,7850,11512], +"core-licensed", +"wordpress", +"gutenberg", +[2,14013,8189], +[3,1103,9], +"angular-mocks", +[0,31529,0,31531,2487], +"graphiql", +"next-router-mock", +[3,5251,10], +"ponselike", +[2,31525,31526], +"body-scroll-lock", +[0,2817,18023,1125,1129,31764,1122], +"motion-v", +[0,30999,28818,5995,17978], +[1,2343,31546], +"radash", +"@a2a-js/sdk", +"js-tiktoken", +"hono-openapi", +"@ai-sdk/provider", +[2,31543,31545], +[3,2766,10], +"jasmine-ts", +[2,13130,3212], +[3,3793,11], +"@ai-sdk/", +[2,31643,1623], +"ui-utils", +[0,0,31547,31628,2523], +[0,1389,2665,4650], +[2,31537,31570], +"body scroll", +[2,31549,31551], +" lock", +[3,65,8], +"react scroll lock", +"react-common", +[2,31552,31554], +[3,31555,17], +"ponents", +[2,31556,31557], +[3,31555,14], +[2,31559,21189], +[3,31560,16], +"oks", +[2,31561,31562], +[2,31559,14592], +[3,31553,12], +"freeze", +"vanilla-js", +"tablet", +"bsl", +"-v5", +[2,31572,31582], +"@mastra/", +[2,1379,31574], +"node-info", +"@restart/hooks", +"resolve-path", +"@restart/ui", +[2,3744,20622], +"unco", +"ntrollable", +[2,31579,31580], +"schema-compat", +"ecosystem-react", +[2,31585,594], +[3,31548,17], +[2,11484,31587], +"sole-ui", +"@icon", +"s/material", +[2,31588,31589], +[2,3131,1512], +"reactcss", +"@types/esm", +"@case/eslint-config", +[2,31596,31601], +[3,29736,11], +"centered", +[2,10818,31597], +[3,30881,30], +[2,31599,1204], +"up-sync", +"chai-spies", +"jsx-loader", +"ntext", +[2,3808,31604], +[3,3850,10], +"@types/sane", +"testdom", +"@lukeed/uuid", +[2,31584,31570], +"color picker", +"sketch", +[2,4807,4547], +"photoshop", +[2,31616,5592], +[3,31573,14], +[2,31618,6893], +[3,31548,18], +[2,31538,31570], +[3,2651,13], +"tags-plugin", +[2,31620,31621], +[2,31626,6893], +[2,28010,1492], +[2,1585,31624], +[3,31610,24], +"mocha-jshint", +[0,4384,2076,5131,4453,2013,15535], +"@ai-sdk/azure", +[1,2343,31641], +[2,31543,31407], +"docgen/cli", +[2,10802,31632], +[2,31635,671], +"@internal/", +[2,31637,31638], +[3,28766,11], +"ypes-builder", +"@openrouter/ai-sdk-provider", +[2,1710,2136], +[0,31660,31662,31663,34352], +"is-root", +"camelcase-", +[2,24559,31675,31676], +"llm", +"agents", +"vectorstore", +"@react-d", +"nd/invariant", +[2,31648,31649], +[3,31650,11], +[2,31651,4163], +[2,1199,17586,31655], +"dnd-core", +"starts-with", +"embeddings", +"rag", +"evals", +"otel", +[0,26616,4391], +"replacement", +[0,2766,2297,2881,2886,2898,28023,3181,3758,4535], +[0,3113,26799,5131,1388], +[1,2343,31672], +[3,24807,15], +[2,31665,1286], +[3,8136,9], +"ctrine", +[2,31667,31668], +"html4", +[2,20245,16957], +[0,31679,31684,2514,2537], +[2,30415,31678], +[2,32813,18502], +"reference-", +"invalid", +"condense-newlines", +"landmark", +[0,20414,29996,17982,11049,30043,30048,3478,29457,3923,18730,20423,30050,30081,4729], +[2,30418,31681], +"olor-helpers", +"rtablejs", +"attr-accept", +[0,5526,5528,5529,31674,826,30086,4874,9241,20441,28400,1540,21594,1177,2078,2220,2222,5560,29197,3697,3752,4135,4193,4238,4481,91,4548,28519], +"vue-next", +"file-selector", +"draggable", +[3,71,24], +[2,31688,14255], +[2,69,5721], +[3,5700,24], +"ipeline-operator", +[2,31691,31692], +"-why", +[2,10876,31694], +[2,18043,200], +[3,4676,9], +"locks", +[2,31697,31698], +"drag-and-drop", +"color-name", +[3,1802,13], +"kanban", +[2,32312,2825], +"anser", +[2,2769,2086], +"le-promise", +[2,6935,31707], +[1,2343,31712], +"redbox", +"crash", +[0,31714,31730,31732,2443], +"css-mediaquery", +[0,3749,3527,11481,29170], +[3,33768,11], +"react-si", +"de-effect", +[2,31716,31717], +"iceworker", +"fl", +[2,16819,31720], +"karma-html", +[2,31722,2903], +"is-whitespace", +"nfl", +"noscript", +[2,31729,33865], +"dashdash", +"@types/ran", +[0,7812,30138,3742,1984], +"titanium-sdk", +[0,20001,671], +[3,20745,21], +"jest-preview", +[2,31395,4384], +"@polka/send-type", +[2,31005,31774], +[1,2343,31739], +[0,31746,31747,2514,2537], +[2,20413,1699], +[3,1845,22], +[2,31741,2855], +"react-mount", +"yarn-", +[2,31744,17335], +[0,58,1437,3930,814,4747], +[0,1178,29847,29851,25675,3758,3938,4216,4255,4389,4449], +"csstree", +"decap-cms-backend-aws-cognito-github-proxy", +[2,9497,31907], +[3,3321,10], +[2,31751,2849], +[1,2343,31756], +[3,19812,19], +[2,31754,965], +[0,31757,27070,27064,2523], +[0,28326,2017,31435,31469], +[1,2343,31761], +"completion", +[2,31780,31781], +[0,0,0,31762,2537], +[0,30486,5995,35981,7072,18035,89], +[1,2343,31783], +[2,31768,13083], +"viewport", +[3,15616,12], +"observer", +[3,1129,12], +"lazy load", +"inview", +"useInView", +"useIn", +"terse", +"query-plan-executor", +"decap-cms", +"aws-cognito", +"ctionObserver", +[2,31773,31777], +[2,31772,31778], +[3,31749,19], +"zure", +[2,31792,17977], +[0,0,0,31784,2487], +[0,1177,6939,89,3878,27158], +[1,2343,31786], +[0,31801,31803,31810,4139], +"@formatjs/", +"listformat", +[2,19067,31788], +[2,31787,31789], +[3,31790,14], +[3,31749,18], +[2,31792,31804], +"common-stuff", +[3,31790,11], +"cu-messageformat-parser", +[2,31795,31796], +[2,6458,1671], +[2,19067,31798], +[2,19644,8982], +[0,1104,22972,1676,2061,13896,1776,3102,4449], +"what-the-diff", +[0,53,87,94,1178,1429,1596,1177,1922,2323,2338,2384,2419,2436,2463,2510,2899,30496,3421,3697], +"git-gateway", +[2,31813,6064], +[3,18229,15], +"lat-gitignore", +"jsondiffpatch", +"gotrue-js", +[0,2323,1776,18011,5284,18444,1745], +"es-crypto", +"gateway", +[3,31793,21], +[3,19657,16], +[2,31814,2855], +[2,31813,620], +[1,2343,31818], +[0,31826,0,31829,2537], +"@nstudio", +[2,4564,2618], +[2,2617,31820], +[2,31792,2658], +[3,28165,19,9], +"hmac256", +"hmac512", +[0,2714,31809,3181,2867], +[2,31792,1973], +"exenv", +[0,30999,28818,5995,31804,31812], +"custom-", +[2,31830,11513], +[2,10704,31831], +"otp-io", +[2,29956,4963], +[2,31836,31837], +[3,23664,13], +"or-js", +"dom7", +[2,13843,353], +[2,1176,31839], +[2,14510,2091], +[2,22588,2091], +"diff-reporter", +[2,13872,31843], +[2,3024,6754], +[2,31848,31850], +[2,9944,7227], +[3,29951,21], +"tween", +"elpers", +"napa", +"runstorm", +[1,2343,31854], +[0,31909,31916,2514,2537], +[2,32904,158], +"nullthrows", +"@tiptap/core", +"metro-r", +[2,31858,96], +"metro-", +[2,31860,4227], +"s-runtime", +[2,6971,31862], +[2,5237,31863], +[3,5079,13], +"/codegen", +[2,31865,31866], +[3,31867,14], +"medium-zoom", +"js-polyfills", +[2,31868,31870], +"tinydate", +"tweezer.js", +[2,8603,1111], +"le-plugin", +[2,3630,31875], +[2,31868,31876], +"assets-", +[2,31878,29179], +[2,31868,31879], +[3,5059,11], +"olors", +[2,31881,31882], +[2,31868,31883], +"@jest/c", +"reate-c", +"-key-", +[2,31887,3046], +[2,6990,31888], +[2,31886,31889], +[2,31885,31890], +[2,3912,5959], +[2,31868,31892], +[3,31867,16], +"mmunity-cli-plugin", +[2,31894,31895], +[2,31898,4333], +[3,24539,13], +[2,17304,31900], +"laywright", +[2,32412,15001], +[2,31908,7188,32485], +"creator", +[2,10735,5130], +"mobile-", +[2,31905,5001], +"ttlcache", +"@tiptap/", +[0,30868,1414,2020,2105,2070,4745], +"cp-file", +[2,17964,31913], +[2,5063,18324], +[3,31333,16,3], +"keychain", +"yargonaut", +[0,20454,36559,30529,826,4874,30548,4135,1177,29197,91], +[2,36270,31918], +"s-test", +[2,31924,31925], +"@entypo-icons/core", +"ocial-buttons", +[2,4910,31921], +"evil-icons", +[3,15277,15], +"xecutable", +"feather-icons", +[1,2343,31933], +"fontisto", +"oslllo-svg-fixer", +"epub2", +"line-icons", +[2,4182,31931], +[0,0,21592,31936,2399], +"svg2ttf", +"svgicons2svgfont", +[0,12479,2947,7193,26421,27968,2100], +"osx", +[1,2343,31941], +"ssr-window", +"@pinia/colada", +[0,0,31946,31981,2399], +"@cmfcmf/docusaurus-search-local", +[3,3911,11], +"form-hmr", +[2,31943,31944], +[0,4493,32977], +[2,31951,31960,31962], +"currency", +"number-", +[2,31949,1671], +[3,27276,15], +[2,33571,89], +[2,31954,31957], +[3,7628,10], +"hijack", +[2,4013,31955], +"heck", +"onclick", +"outside", +"classic-", +[2,32028,1745], +"build-app-blueprint", +[2,31968,31971], +[2,812,12444], +"t-flow", +[2,17375,31965], +"hermes-eslint", +[3,31947,30], +"array-hyper-unique", +"crlf-normalize", +"ddon-blueprint", +"book", +"books", +"chapter", +"comic", +"epub-maker", +"epub-maker2", +"node-novel", +"novel", +"volume", +[0,188,4646,1542,32977,6533,3212,5472], +"matchmedia", +[2,31982,3766], +[1,2343,32268], +"yphenate-style-name", +[2,6495,31985], +"tch-", +[2,31987,11034], +[2,18655,31988], +[3,31989,12], +"mediaquery", +[2,31990,31991], +"-media-mock", +[2,3529,31993], +"@lobechat/", +[3,6415,10], +[2,31996,3582], +"escaping", +"respond", +"goat", +"matchMedia", +"🐐", +[2,32004,32005], +[3,31263,13], +"text-engine", +"color-logger", +"ice-cap", +[2,31995,18035], +"esdoc-importpath-plugin", +[2,31995,1807,32030], +"ECMAScript6", +[3,6608,10], +[2,32012,32014], +"2015", +"ECMAScript7", +[2,32017,6893], +[3,32013,13], +"ECMAScript8", +[2,32017,6836], +[2,3944,8253], +"k-monitor", +[2,4117,32021], +[2,32020,32022], +[3,32023,15], +"log-monitor", +[2,32024,32025], +"proposal", +[3,19209,12], +"http-graceful-shutdown", +"client-ipc", +[2,32032,32033], +[3,32010,19], +"server-ipc", +[2,31995,2092,591], +[2,31995,32036], +"model-runtime", +"mdc", +"developer", +"combobox", +"multiselect", +[2,31995,3742], +[2,31995,594], +[2,31995,32044], +"web-crawler", +[2,32047,13538], +"json2mq", +[3,1841,9], +"-apps", +[2,21340,32048], +"-carousel", +[2,11167,32050], +"why-did-you-update", +[2,32057,32058], +"carousel", +"Image slider", +"orbit", +[3,1841,12], +"rts", +[2,1841,6324,4978], +[2,32074,32082], +"@tippyjs/react", +"@vxna/mini-html-webpack-template", +"common-dir", +[2,1861,3427], +"name-p", +[2,32065,84], +[2,18977,32066], +"glogg", +[3,26921,11], +[2,32069,1646], +"jss", +"jss-plugin-camel-case", +[3,32072,12], +[3,32059,20], +"ompose", +[2,32073,32075], +[3,32072,11], +"default-", +"default-unit", +[2,32077,32079], +[2,32077,2202], +"s-gateway", +"isolate", +[2,32077,32083], +[2,32077,3639], +"listify", +[2,12171,2651], +"q-i", +"qss", +"-annotation-resolver", +[2,3822,32090], +[3,32091,13], +"-handler", +[2,4904,32093], +[2,32092,32094], +[2,32047,6038], +"react-group", +[2,4287,1928], +"type-detect", +[2,32047,45], +"inter-element", +"@types/buble", +"py-webpack-plugin", +[2,4860,32103], +"@types/esc", +"odegen", +[2,32105,32106], +"h-sum", +[2,12395,32108], +"@types/ke", +"ymirror", +[2,32110,32111], +[3,23829,17], +[2,32113,3119], +[2,27479,4408], +[2,13419,32115], +[3,12290,12], +[2,32117,13735], +[3,8157,15], +[2,32119,5331], +"deabsdeep", +"white-space", +"deepfreeze", +"dog-names", +"amia", +[2,22060,32125], +[2,32047,32128], +"market-sdk", +"keymirror", +[2,4293,6987], +"@lobehub/tts", +"tts", +"@lobehub/ui", +"@neondatabase/serverless", +"@next/third-parties", +"@react-spring/web", +"jest-pre", +[2,29611,32139], +"user-require-helper", +"@serwist/next", +" vector graphics", +[2,24090,32141], +"tagname", +[2,24116,7466,32165], +"svginjector", +"@t3-oss/env-nextjs", +"@trpc/client", +"@trpc/next", +"@trpc/react-query", +[3,32029,17,5], +"TapEventPlugin", +"300ms", +"http-shutdown", +"http-terminate", +"prometheus", +[2,33763,13538], +[2,30495,32158], +"dge-config", +[2,36840,32160], +"ctions", +[2,32163,32168], +[3,7214,13], +"@vercel/s", +"icss", +"lement", +[2,24116,32179], +"@4tw/cypress-drag-drop", +"peed-insights", +"@xterm/xterm", +[2,4609,2759], +"brotli-wasm", +"alert", +[2,29706,32174], +"-and-timezones", +"dexie", +"drizzle-orm", +"commoner", +[3,10755,11], +"hydrate", +"coverify", +"es3ify", +"infima", +"grunt-jest", +"jasmine-t", +"apreporter", +[2,32184,32185], +"drizzle-zod", +"populist", +"drizzle-", +"gpt-tokenizer", +[2,32192,32193], +"inferno-hy", +"perscript", +[2,23910,13494,32197], +[2,9944,9847], +[2,9944,591], +"-to-backend", +"js-sha256", +"vnode", +"createVNode", +[2,32237,1098], +[2,14040,1276], +[3,1898,19], +"lay", +[2,1962,32204], +[2,2783,3758], +[3,15568,16], +[2,1781,32212], +"scrolling", +"infinite", +"fixed", +[3,31752,17,3], +"langchain", +"gulp-rtlcss", +[2,26708,32182], +"langfuse", +[2,5223,32178], +[2,1861,32217], +"dark mode", +[2,32216,1732], +"lucide-react", +[2,32223,32224], +[3,3120,12], +"txt", +"react-popper", +"bootswatch", +"docstrap", +"storysource", +[2,10818,32228], +"model-bank", +"customize-cra", +[2,32234,32235], +"holderjs", +"modern-s", +"creenshot", +"react-prism", +[3,34791,12], +"logging-helpers", +"next-mdx-remote", +"nextjs-toploader", +"nuqs", +"officeparser", +[2,32244,1098], +[3,33256,22], +"github-files-fetcher", +"oidc-provider", +"ollama", +[2,7719,1612], +"partial-json", +[2,3502,33498], +"@stitches/react", +"animate-sass", +[2,3562,32254], +"trolling", +[2,32256,32257], +[3,839,14], +"gr", +[2,11932,8861], +"mocha-r", +"eporter", +[2,32259,32260], +[2,4385,32261], +"pdf-parse", +"preview jest", +[2,27010,32290], +"plaiceholder", +"posthog-js", +[0,0,32306,32313,2537], +"log-utils", +"pwa-install-handler", +"line by line", +"engine-base", +"engine-handlebars", +[2,32278,32279], +"lo", +"repl", +"lo-dash", +"react-con", +"fetti", +[2,32283,32285], +[2,4150,32282], +"-75lb", +"react-la", +[2,11072,2731], +"yout-kit", +[3,19580,11], +[2,32286,2002], +[2,5237,57], +"lws-middleware", +"-tagfilter", +"refactoring", +"printing", +[2,3715,32292], +[2,26973,32308], +"react-pdf", +"react-rnd", +"react-scan", +[2,32299,32304], +[3,3913,11], +[3,12133,19], +"tagfilter", +"prepare", +"dangerous", +"oso", +"react-wrap-balancer", +[0,1175,2323,2332,30561,2367,2459,2494,2504,2510,2530,1894,4045], +[2,17355,13771], +[3,23279,13], +[2,4627,8840], +[2,3166,32309], +"mobile-detect", +"composition", +[0,30563,30564,30565,30566,30567,30568,5131,9006], +[2,32315,32316], +"resolve-a", +"ccept-language", +"rtl-detect", +"lister", +"parse-entities", +"svix", +"tokenx", +"ts-md5", +"@red", +"grunt-jasmine-node", +"@redis/bloom", +"@redis/", +[2,32326,5576], +"unstructured-client", +"@redis/json", +[2,32326,7193], +"use-merge-value", +"time-series", +[2,32326,32332], +"mobilegrade", +[2,20223,16460], +"sniff", +"word-extractor", +[2,32339,594], +"zustand-", +[1,2343,32427], +"@cfaester/enzyme-adapter-react-18", +"ocly/openapi-core", +[2,32323,32342], +[2,32348,3005], +"nth-child", +"nth", +"rc-hammerjs", +[3,30906,13], +[3,1750,11], +[2,1186,3939], +[2,32349,32350], +"theme-redoc", +[2,32349,32352], +[2,32356,32366], +[3,8286,13], +"@lobehub/i", +"heme-common", +[2,32355,32357], +[2,20201,594], +"is-alphanumerical", +"api-doc", +[3,32351,12], +[2,32362,10958], +"is-decimal", +"is-hexadecimal", +"18n-cli", +[2,32047,671], +"netlify-plugin-cache", +[2,32370,553], +[3,32127,16], +[2,32047,32373], +"cssinjs", +"seo-cli", +[2,28427,32375], +[3,28091,16,8], +"just-curry-it", +"reducers", +[2,17790,32377], +"@next/eslint-plugin-next", +[2,16479,1414], +[3,1905,16], +"icorn-camelcase", +[2,32381,32382], +[2,4321,9776], +[2,2130,32384], +"@peculiar/webcrypto", +[2,16931,32388], +"roma-js", +"@wdio/selenium-standalone-service", +"babelrc-rollup", +[2,32398,32399], +"insert-line", +[2,5316,1464], +[2,3944,2700], +"queryselector", +"shadowdom", +"rdme", +"@types/cr", +"ypto-js", +"@types/ip", +"tanstack", +[2,32403,32404], +"gulp-str", +"eamify", +"rc-tools", +"@redux", +"-saga/core", +[2,32406,32407], +[2,32417,32419], +"tappable", +[2,33060,1501], +[3,13875,15], +"lias", +[2,32412,32413], +[2,3807,32442], +"effects", +"@types/nu", +"side effects", +"meral", +[2,15461,32423], +[2,32422,364], +"@actions/", +"idc-provider", +"redux-m", +[2,32424,18716], +"@types/pg", +[0,32428,32472,2514,2537], +[0,30585], +[2,32430,32439], +"@types/r", +"ecmarkup", +[2,32437,32438], +"gulp-emu", +[3,2453,9], +[2,32434,2995], +[2,2505,4088], +"@readme", +[3,23709,18,8], +"tl-detect", +[2,5051,32441], +"ystemjs", +"ful", +[2,24167,32455], +"dbdocs", +"dpdm-fast", +[2,32189,32451], +"goober", +"jest-esm-jsx-transform", +"parcel-plugin-css-to-string", +"use-throttled-effect", +"dbml-generator", +"abstract", +"hex", +"wai-aria", +"ice-detect", +[2,32466,38], +"drizzle-kit", +[2,1949,32459], +"dx", +"is-hidden", +"fake-indexeddb", +[2,9335,6424], +"just-diff", +"smart-tv", +"smarttv", +[3,15570,11], +[2,3506,4581], +[2,3862,32492], +"mcp-hello-world", +[2,12285,2527], +"remark-mdx", +[0,188,11018,30592], +"simple-routing", +[3,23352,11], +"mdx-", +"jsx-a", +[2,32476,5714], +[2,32475,32477], +[2,8137,32478], +[2,8909,32479], +[2,32474,32480], +"serwist", +"snapshot-", +[2,32483,1182], +"-bubble-menu", +"vercel-ai", +"nano-equal", +[2,1849,32489], +"-fuzzy", +"azure-openai", +"shouldComponentUpdate", +"file-viewer", +[2,3862,15571,32498], +"visual-model", +"stt", +[1,2343,32500], +"quicklook", +"-v2", +[2,3862,3730], +[0,0,32501,32517,2487], +[0,33043,442,34111,30737,4874,7677,22839,1177,1895,1942,1982,2807,25209,2990,20085,1894,19713,30762,23535,4131,1531,4507,91,4523,1984], +[2,31995,32503,32515], +"observab", +"image-gallery", +"image-viewer", +[2,32510,32530], +[2,32508,32509], +"vitepress-", +"plugin-group-icons", +[2,5119,32511], +"vg", +"issue-", +[2,32512,57], +[2,21520,22370], +"ility-otel", +[2,32518,32526], +[0,30769,8893,7595,7517,6564,7265,1209,3776,7268,6081,4799,553,91,4545,614,6731,6435,594], +[3,217,9], +"mock-stdio", +[3,3998,15], +"ebpro", +[2,32520,32521], +[2,9785,24387], +[3,23523,21], +[2,32524,3874], +"ndicator", +"progressbar", +"distribution", +"indeterminate", +"-charts", +[2,3862,32543], +[1,2343,32533], +[0,32534,32537,32542,2487], +[0,30787,28465], +[2,17092,32536], +"-path", +[0,11536,29317,30792,8850,1397,1556,2020,2070,30794,3510,1689,29444,4042,4174,4227,91,8550,28865], +[2,32539,21172], +[3,5079,24], +[2,11147,970], +[2,5557,970], +[0,6996,668,5362,28865,4042,2924], +"youtube-iframe", +[2,3115,19101], +"unified-args", +[2,32563,5066], +[1,2343,32548], +[0,0,32549,32555,2523], +[0,442,7677,1177,1938,1942,30828,1964,1966,2832,1531,30835,91,4523,1983,1984], +"ackends", +[2,32904,990], +"iframe", +[2,3993,6424], +"@cacheable/utils", +[0,21354,91,2844,7020,7119,30841,20179,7047], +[1,2343,32642], +"@apphosting/build", +"@atomico/rollup-plugin-sizes", +"git-branch-is", +"remark-slug", +"react-spring", +[2,32565,10896], +[3,30798,17], +[2,32575,32576], +[3,32557,12], +"-isomorphic", +[2,23276,32566], +[2,25131,32566], +[2,32570,32574], +[3,32041,11], +"@bedrock-layout/use-forwarded-ref", +"gmail-send", +[2,4807,31528], +"ython-interpreter", +[3,3895,11], +"-singleton", +"text-hex", +"ssrf-safe-fetch", +[2,32589,32623], +[3,23054,11], +"ent-config", +[2,32580,32581], +"ntributors", +[2,24218,32583], +[3,9343,15], +"gap", +[2,32585,32586], +[3,9347,9], +[3,30640,22], +"cense", +[2,32588,32590], +[3,23078,23], +[2,32592,10663], +[3,23082,24], +[2,32594,7210], +[3,23085,14], +"get-nonce", +"le-extension", +[2,32596,32598], +[3,23085,18], +[2,32600,23076], +"rst-", +"heading-", +[2,32603,2970], +[2,32602,32604], +[2,32596,32605], +[3,23092,13], +[2,9398,590], +[2,32607,32608], +"consec", +"utive-blank-lines", +[2,32610,32611], +[2,23099,32612], +"emphasis-", +"as-heading", +[2,32614,32615], +[2,23099,32616], +"name-articles", +[2,2093,32618], +[2,23099,32619], +[3,32620,25], +[3,32612,12], +"rast-color-function", +"dashes", +[2,32622,32624], +[2,32621,32625], +"irregular-", +[2,32627,7169], +[2,32621,32628], +"mixed-case", +[2,32621,32630], +"@theuiteam/lib-builder", +"crawler-detection", +[2,32746,31528], +"outer-dashes", +[2,32621,32635], +[3,23118,23], +[2,32637,8958], +"punctuation", +[2,32637,32639], +"missing-", +[0,0,0,32677,2487], +[2,31635,32673], +"blank-lines", +[2,32641,32644], +[2,23099,32645], +[3,32646,16], +"ulti", +"ple-toplevel-headings", +[2,32648,32649], +[2,32647,32650], +"dollars", +[2,5124,32652], +[2,23099,32653], +[2,16065,17537], +[2,23099,32655], +[3,32656,18], +[2,32657,591], +"ordered-", +"list-ma", +"rker-value", +[2,32660,32661], +[2,32659,32662], +[2,23055,32663], +[3,23139,22], +"-alignment", +[2,32665,32666], +[2,17998,2585], +"retext-english", +"retext-", +[2,10832,2195], +[2,32670,32671], +"ai-v6", +[2,32675,32676], +[3,32643,13], +"sdk-v4", +[0,3358,1564,10057], +[2,32700,7174], +[3,23096,14], +"nk-title-style", +[2,32679,32680], +"maximum", +"-heading", +[2,32683,15309], +[2,32682,32684], +[2,23055,32685], +[3,32686,20], +"line-length", +[2,32687,32688], +[3,23113,30], +"ed-urls", +[2,32690,32691], +[3,23113,25], +"s-in-section", +[2,156,32694], +[2,32693,32695], +[3,32617,18], +"ty-url", +[2,32697,32698], +[3,31198,34], +"-paragraph", +[2,15403,32701], +[2,32637,32702], +[3,23118,16], +[2,32704,14550], +[2,170,23116], +[2,23099,32706], +"-like-url", +[2,11043,32708], +[2,23099,32709], +"ed-fu", +"ll-reference-image", +[2,32711,32712], +[2,14475,32713], +[2,23124,32714], +[3,32715,39], +[2,32716,163], +[3,32672,14], +[2,32718,3997], +[2,31228,27863,32721], +"bsorbers", +[2,32723,32724], +[3,32720,20], +"emitters", +[2,32722,32726], +"-shape-circle", +[2,32728,32729], +[3,32725,35], +"square", +[2,32731,2585], +[3,31244,19], +"autolinker", +[2,32734,32735], +[3,31244,14], +"lim", +[2,31281,14858], +[2,31281,32738], +"roll", +[2,31281,32740], +"tilt", +[2,32742,32743], +[3,32739,22], +"winkle", +[2,31281,32745], +"wobble", +"tua-", +[2,4511,32078,4366], +[1,2343,32763], +"caseless", +[2,32752,2855], +"aws-sign2", +[3,32674,18], +"oauth-sign", +[2,3013,2660], +"forever-", +[2,32755,4575], +"har-validator", +"is-typedarray", +[2,2666,1580], +"use-callback-ref", +"taper", +"karma-cli", +[0,32764,32771,32780,2399], +[0,8181,26057,28329,28607,28620,28631,28632,28672,28673,26364,28963,29273,28685,30585,31857,31902,32411,33136,34082,33056,33586,33588,33590,33591,34083,33592,33600,33601,33604,33613,33623,10981,10984,37051,34087,28709,1556,16230,28718,28761,28780,28805,28883,28896,28911,2161,36538,28964,3090,3189,31530,28974,3510,29049,15451,4382,29050,4383,27921,27438,29161,29165,29219,29220,29235], +"glob-bin", +"use-sidecar", +"JSDA", +"stealthy-require", +[3,4010,16], +[2,32769,364], +[0,29267,29290,29295,10614,34092,11016,11018,31408,29304,1177,2559,29332,3980,4543,1984,29887,29323,188,13151], +[2,32774,32779], +"thenable", +[3,5430,21], +"useRef", +"createRef", +"merge refs", +"vconsole", +"ummary", +[0,29345,29332,8588,4383,12951,188,12072,6284,91,10309,181,4380,5130,29346], +[1,2343,32785], +[2,32783,32784], +"detect-n", +"ode-es", +[0,0,32791,32799,2443], +[2,4807,1845], +"@react-pdf/renderer", +"code spliting", +"sidecar", +[2,4625,8119], +[0,5087,1192,4468,4474,4493,91], +"index.js", +[2,32028,33976], +"is-wayland", +"copy-text-to-clipboard", +[2,32797,32798], +"mutation", +"-observer", +[0,5995,10906,24299,29527,29563,29565,29575,29576,29658,29706,29723,1623,6802,4967,29731,29730,29842,29845,29868,29963,30047,30133,30136,30161,30163,30487,91,30489,30501,30523,30562,30569,30574,30591,30593,30600], +"-tslint", +[2,1009,32800], +[3,1009,11], +"/analyze-trace", +[2,32802,32803], +[2,1977,2528], +"micro-", +[2,32806,7906], +"svelte-loader", +[1,2343,32837], +"down-config", +[3,13476,17], +"ntext-async-hooks", +[3,36559,16], +"ResizeObserver", +[2,32817,11937], +"worktop", +[3,8809,20], +[2,17214,5477], +"perty-rule-prelude-list", +"path-parse", +"scss-loader", +"-flag", +[2,6846,32822], +[2,15884,32823], +[3,1790,16], +"copy-dir", +[3,8119,14], +[3,32790,18], +"vue-scroll", +"vue-scrollbar", +"vue-plugin", +"滚动条", +"eartbeat", +"lory.js", +[2,33112,33113], +"adjust-sourcemap-loader", +[0,32838,32846,30825,2487], +[0,29304,26699], +[2,32841,10238], +[2,4807,1955], +[3,31435,16], +"cls-hooked", +"myrmidon", +[2,31436,2018], +[3,30380,15], +[0,1192,1177,4042,4468,1894,91,5087,4880,1895,1955,2780,1011,1009], +"ncredible", +[2,32845,32847], +"ensor", +[2,4914,32849], +"secrets", +[2,16645,32851], +[3,25837,16], +"anjs-rules", +[2,32853,32854], +"fatum", +[2,14560,6816], +[2,3335,32857], +"telegram", +[2,21386,32859], +"vesta", +[1,2343,32868], +"react-camera-pro", +"documentate", +"idebar", +"umentate", +[2,25821,32866], +[0,0,32869,32882,2523], +[0,4880,4883,89,3824,91], +"better-npm-run", +"clamp.js", +[2,19825,4627], +[2,1870,32872], +"ewma", +[2,4031,24388], +"spdy", +"karma-fixture", +[2,20441,6543], +"restify-", +"clients", +[2,32879,32880], +[0,89,28946,6847,30858], +"watershed", +"@applitools/utils", +"DTrace", +"karma-opera-launcher", +[1,2343,32893], +[3,18613,12], +"convict", +[2,32957,32963], +"antora-component", +"@dataui/crud", +[0,32898,32902,32915,2523], +"is-uuid", +"rewrite-imports", +"quit", +"shutdown", +[0,30939,30941,30944], +"terminate", +"kill", +"serviceworker", +[0,30949,30951,30953,30954,30961,30966,30973,30976,30977,30980,30984,30985,30988,31003,31007,31024,31033,31036,31053,31060,31065,31067,31068], +[2,32904,11017], +[3,32884,12], +"@types/webrtc", +"NoSQL", +"reql", +" language", +[2,3766,32908], +"applitools", +"eyes-sdk", +"test automation", +"visual regression", +[2,32731,27819], +[0,26591,1973,5472,13083,6969,1429,1145,1745,31077,31079,31080,1776,1204,6813], +"accelerate", +"detectrtc", +[2,32892,30665], +[2,32920,614], +[3,32918,13], +[1,2343,32935], +[2,32923,32931], +"install-p", +"json-copy", +[2,28093,32924], +[2,31281,32933], +"nano-copy", +"plain-", +[2,3425,1496], +[2,32928,32929], +"eers-cli", +"prepend-file", +"life", +[2,32937,32938], +[0,0,30812,30825,2523], +[1,2343,32964], +[3,32737,23], +"tate", +"drag-drop", +"plasmo", +"camera", +"prebuild", +"-install", +[2,32942,32943], +"webcam", +"-os", +[2,642,32946], +"practice", +[2,15090,32948], +"cam", +"Automation", +"pixel", +"blob-to-buffer", +"recognition", +"webRTC", +"autohotkey", +[3,35870,14], +"drag drop", +"machine", +"drag & drop", +"learning", +"react-h5-audio-player", +"itro-modules", +[0,32974,33037,33040,2523], +[2,32995,8745], +[3,16005,16], +[2,32966,4142], +"-twoslash", +[2,4614,32968], +[2,9408,32969], +[2,15125,5711], +"date-time", +"flru", +[0,31384,31735,34024,31315,31330,31358,34025,31361,31362,30375,31368,31378,31383,3266,9011,4763,9355], +[2,33470,33475], +[3,30686,19], +"pinia", +[2,15476,8961], +"wasm-pack", +"@expo/spawn-async", +[2,32982,147], +"@parcel/c", +"@parcel/fs", +[2,32985,5602], +[3,5367,15], +[2,5368,7158], +"mnemonic-id", +"node-object-hash", +"@plasmohq/init", +[2,32991,32992], +"@plasmohq/", +"parcel-config", +[2,32994,23], +[3,32990,19], +[3,10848,14], +"@plasmo/config", +[2,32999,33003], +"js-cleanup", +[3,32996,11], +[3,4058,16], +[2,33000,3874], +[2,25572,1155], +"stants", +[2,33006,594], +"removal", +"@plasmo/", +[2,33006,5130,33008], +"-shared", +[2,4807,32965], +[2,13843,19101], +"ixins", +"visionOS", +"tvOS", +"macOS", +[2,33018,89], +"3-drag", +[2,6491,33016], +"@iconify/", +"cpp", +[2,4861,24847], +[2,33022,2847], +"static-s", +[2,21897,33024], +"sass2less", +"swift", +"player", +"mse", +"commenting", +[2,14034,13828], +[3,19570,16], +[2,33030,2649], +"spdx-", +"eme", +"jsi", +"satisfies", +[2,33032,33035], +[0,8818,4874,4880,4883,89,3824,1984,31390], +[2,2369,2284], +[3,32978,18], +[0,31398,3287,4592,31399,89,4963,181,4967,4380,31400,31406,31407,31408,6070,31409,30210,31410,31422,31423,31424,31431,31432,31433,31454,31466], +"p-banner", +[2,33039,33041], +[2,33044,147], +[3,5517,19], +[1,2343,33049], +[2,8147,14773], +"ts-expose-internals", +[2,13888,2150], +[0,0,0,33054,2537], +[2,1884,10791], +"buffer-es6", +"process-es6", +"astrojs", +[0,3563,1623], +"compliance", +[2,33060,33585], +"dset", +"flattie", +"magicast", +[3,31902,18], +"zod-to-ts", +"xxhash-wasm", +"yocto-spinner", +"@oslojs/encoding", +[2,33066,33067], +"@astrojs/c", +"ompiler", +[2,34674,13535], +"zod-to-json-schema", +"http-cache-semantics", +[2,33072,33073,3984], +"@astrojs/m", +"arkdown-", +[2,34674,6943,19687], +[2,7185,33076], +"-object-hash", +"MappingURL", +[2,4225,33077], +[1,2343,33081], +"@types/dlv", +[0,33089,33090,33091,2537], +"rehype-toc", +"astro-scripts", +[2,33085,33086], +[3,24220,12], +"titles", +[2,4807,9485], +[2,4807,33070], +[0,26675,26678,26684,26690,26685,3259], +[0,5087,4874,1596,1192,1894,3951,3980,4094,4468,4474,1531,4521,91], +[0,12659,8124,1745], +[1,2343,33094], +"strata", +[0,33095,33102,33103,2523], +[0,9355,9307], +"nd-cache-dir", +[2,16785,33096], +[3,13364,12], +[2,33098,1095], +"graphlib", +[3,4069,16], +[0,1983,89,2220,3824,26744,966,1030,972,968,30521], +[0,89,2220,31523,1932,1745,25677], +[1,2343,33105], +[0,33106,33107,33108,2523], +[0,2611,3478,1759,31533,33507,3084,31534,2226,31535,2845,33062,31609,31536,31750,31548,31617,31619,31571,5328,31610,31623,29421], +[0,4763,4493,1177,2205,4042,1984,4473,23203,91,53,4874,31629,31631,31634,32643,2069,10879,8818,32674,32750,7677,31636,33137,31639], +[0,31408,31645,29486,4575,31646,31647,31656,31657,31658,3151,2041,91,31659,5130], +[1,2343,33132], +"fuzzysearch", +"sander", +[3,29704,20], +"ntax-descriptor-syntax-production", +"@types/d3-", +[2,33114,4552], +[2,33114,1473], +"force", +[2,33114,33117], +"hierarchy", +[2,33114,33119], +[2,33114,16662], +[3,33121,11], +[2,33122,1659], +"@saintno/comfyui-sdk", +"@virtuoso.dev/masonry", +"treemap", +"sunburst", +[2,13480,33130], +"diagram", +"jaeger", +[2,13475,4715], +[0,0,33135,33217,2523], +[2,5088,33134], +"dfkit", +[0,107,972,5087,1742,1192,3286,1894,89,3824,3904,4039,4468,91], +[2,33142,33147], +[2,31635,3965,553], +[2,33141,20760], +[2,33140,23], +[3,34681,19], +[3,10210,16], +[3,32411,20], +"testrunner", +"@next/", +"@next/env", +"@rspack/core", +[3,26697,11], +[3,5215,12], +"piccolore", +"-optimizer", +[2,11928,33150], +[2,33148,33151], +[2,4850,14643], +"css/metrics", +[2,4202,33154], +[2,17189,33155], +[3,28436,14], +[2,33157,16358], +[2,33157,6805], +[3,33159,15], +"rimitives", +[2,33160,33161], +"turborepo", +"triples", +[2,29314,33164], +[2,27913,1237], +[2,33144,33166], +[3,33167,15], +"nomodule", +[2,33168,33169], +[2,3878,3007], +[2,33144,33171], +"@next/swc", +"@taskr/clear", +"ac-colors", +"@taskr/esnext", +"mphtml-validator", +[2,9165,33177], +[2,10880,1179], +"i-info", +[2,4857,33180], +[3,11796,15], +[2,33182,10366], +[3,7808,17], +"rve-s", +[2,16826,9654], +"tatic-core", +[2,33185,33187], +[2,33184,33188], +"hsv", +"@types/fresh", +"urry", +[2,7887,33192], +"th-to-regexp", +[2,28121,33194], +"atform", +[2,28175,33196], +"@types/send", +"amphtml-validator", +"async-sema", +"lch", +"cli-select", +"color-names", +"client-only", +"cmyk", +"comment-json", +"mix", +"edge-runtime", +[2,13773,1194], +"lodash.curry", +"native-url", +"string-hash", +"taskr", +"unistore", +"watchpack", +"harmonies", +[0,89,3286,23803,3287,38,3212,1973,5472], +[1,2343,33219], +[0,0,33220,33224,2487], +[0,603,8862,811,816,6373,5535,30867,5087,13204,31087,11016,17494,11018,13072,1503,1567,1610,1192,2780,2832,2990,15324,1894,4042,4073,4076,4201,29889,4383,4468,91,1983,188,4639,4646,19235], +[3,18758,12], +"ogress", +[2,33221,33222], +[0,188,8588,31685,31687,31700,7838,29889,31702,1802,17819,29953,31703,91,31704,4453,5131,5284,4627,181], +[1,2343,33226], +[0,26338,0,33234,2537], +[2,27135,16460], +[2,33229,33521], +[3,30464,13], +"domparser-rs", +"rtl", +"ltr", +[2,33461,33965], +[0,3857,5128,31912,89,5131,12295,12296,181,15571,35060,158], +[2,33236,18200], +"get-port-", +[2,33238,33239], +[3,5366,9], +"tter-sqlite3", +[1,2343,33241], +[0,33242,33246,25117,2487], +[0,30784,20378,16860,3530,3561,28865,27921], +"@antfu/ni", +"run series", +"@dotenvx/dotenvx", +[0,58,31292,5180,30787,37017,28465,8862,811,16808,10895,24725,9743,37012,28572,1415,1457,1544,1573,1594,1615,30023,1759,1763,37014,668,1869,2007,984,28575,31308,18584,3090,3189,11480,3266,3445,3493,3510,34928,3527,3613,3616,37015,28119,24759,29444,4042,4060,2278,21688,4200,37013,4072,4955,27438,4729], +[2,4807,30228], +[1,2343,33252], +"LINQ", +"FRP", +[2,29445,1732], +[0,0,0,33278,2537], +[2,33254,8253], +"@vitejs/", +[2,23354,6708], +[2,5,33255], +"side-effects", +[2,14614,33257], +[3,1705,12], +"ruiser", +[2,33259,33260], +[3,18106,16], +[2,33262,2429], +[2,1921,33274], +"tslint-etc", +"no-toplevel-property-access", +[2,4491,33266], +"tslint-no-", +"unused-", +[3,5804,11], +[2,33270,1429], +[2,33269,33271], +[2,33268,33272], +"wc", +[2,9352,364], +"datagrid", +"survey-core", +[0,3857,5128,12295,12296,28641,1616,5131,1149,4160,28654,28656,16722,31824,31825,3348], +[1,2343,33280], +[0,0,2667,31019,34352], +[1,2343,33300], +" allocate", +[2,1398,33282], +[2,17681,1965], +"2fa", +"hotp", +"uninitialized", +"topt", +[2,33290,33291], +"google a", +"uthenticator", +[2,33294,7120], +"mock-env", +[3,5165,11], +"dist-tag", +"one time password", +"prepublish", +[2,37718,20105], +"2 factor", +[0,33301,33306,33372,34352], +[0,5145,30551,30583,5154,7709,28384,30584,13437,30602,30603,30609,30610,13187,30814,12207,7948,30824,30866,30887,30906,31178,31179,31247,31255,31263,32003,32008,32010,32031,32975,32034,32035,32502,32041,32569,32042,32043,32045,32053,32059,32060,32096,32100,32127,32131,32133,29421,32134,32135,33128,33131,32787,32136,33124,32140,32146,958,32147,32148,32149,29261,32156,32157,32159,32161,33125,32169,30778,1114,13215,32171,35358,977,32173,1673,1676,32175,1687,32176,32187,31930,2069,37853,2096,4776,32190,2226,2646,2681,23913,32194,29762,2696,12105,32198,32208,2928,32213,32216,32220,3021,32221,3096,32222,3127,26568,32230,32232,3266,3286,3285,32239,32240,29306,3415,32241,32242,32246,32247,31407,32248,32249,32250,32263,29899,3513,3519,3533,32266,3555,32267,20325,32270,3765,3777,89,32274,3824,11366,12229,3837,32280,15575,32295,3882,32296,3885,32297,32298,32305,3984,3988,3989,32314,32317,4135,4164,9348,32578,4302,4341,32320,26713,4376,32321,32322,11804,32328,4566,32331,3348,32337,4729,4745,4763,9355,32338], +"@sai", +"lshq/lodash", +[2,33302,33303], +[2,4807,4588], +[0,192,37097,32344,32354,32367,32369,32371,32374,32379,32386,8648,27424,21120,968,972,974,32387,32391,5245,4864,32400,8818,4870,5139,4874,32409,32420,33133,32426,4880,4883,32429,5254,32440,11800,9315,9241,29891,7677,12384,1529,1556,1610,1620,32444,1759,1763,32445,32446,32457,1177,32458,32461,2151,2070,2559,2675,28375,32463,2990,1209,3117,32469,3171,3310,640,32470,3478,1894,3985,9340,32471,3992,28380,4131,32482,4320,4494,4507,91,4549,4555,1983,1984], +"captains-log", +"js-f", +"ile-", +[2,33309,19101], +[2,33308,33310], +[2,9480,33311], +"flaverr", +"survey", +"i18n-2", +"include-all", +"surveyjs", +"-as-action", +[2,32959,33318], +"survey-library", +"pack-process", +[2,32959,33321], +[3,33322,12], +[2,33323,1552], +[2,20100,3031], +"ictionaries", +[2,27239,33326], +"parley", +"rttc", +"form-component", +"-generate", +[2,4104,33331], +"sails-", +"stringfile", +[2,33333,33334], +"skipper", +"-addresses", +[2,4082,33337], +[2,22775,33338], +"whelk", +"form-rendering", +[2,33323,2150], +"@sailshq/", +[2,33343,705], +"survey-renderer", +"root-require", +"dynamic-form", +"hook-orm", +[2,33333,33348], +[3,33349,11], +"sockets", +[2,33350,33351], +[2,24095,33358], +"sails.io.js", +"-store", +"-file-store", +[2,1577,33356], +"-form", +"mvc", +"form-library", +"form-management", +"web-framework", +"sailsjs", +[2,8631,33366], +"sails.js", +"naire", +"data-collection", +"data-validation", +"input-validation", +[3,7842,12], +"schema-form", +[0,5130,31409,31431,3287,32486,31407,32490,32494,32132,32495], +[2,33374,3552], +[3,14944,11], +[1,2343,33468], +"truncate-", +[2,33467,33631], +"utf8-bytes", +[2,33376,33378], +"js-api", +"mktemp", +[2,30767,33384], +"filename", +"wasm-nodejs", +[2,31208,22074], +[2,11183,6882], +[2,13167,33388], +"abs", +[2,33391,10271], +"parse-srcset", +[3,13169,16], +[3,13405,16], +[2,11183,614], +"ostrophe", +[2,33392,33394], +[2,11183,158], +[2,33398,1020], +[3,33396,15], +[2,11183,33400], +"steps", +[2,33402,2699], +[3,33387,17], +[2,11183,18346], +[2,33405,9997], +[3,33403,15], +[2,13163,11218], +[3,32049,11], +[2,33407,13756], +"-sin", +"gle-context", +[2,33409,33410], +[2,2784,33411], +[3,31591,11], +[2,4961,4184], +[2,33413,33414], +[3,4927,10], +[2,11183,3811], +[2,33421,1799], +"glob-importer", +[2,33416,33419], +[3,33399,15], +[2,33421,10205], +[2,33421,10222], +[2,33425,184], +[3,33393,15], +[2,33427,10261], +[3,11185,16], +[2,33429,18338], +[3,13162,15], +[2,33429,5449], +[2,33432,9939], +[3,13162,17], +[2,33434,11206], +[3,33404,16], +[2,3115,11415], +[2,33439,33440], +"bare-script", +[2,1818,11415], +[3,27467,17], +"tions", +[2,33442,10148], +[3,33417,15], +[2,13167,11241], +[2,33445,33446], +[3,33418,16], +"gmented", +[2,33442,33448], +"agination", +[2,33389,11245], +[2,33397,11211], +[2,11183,9044], +[2,33453,33457], +[3,5050,13], +"food", +"drink", +"helpful", +[3,14673,16,7], +"ourcesoftware", +[2,8423,33458], +[2,25184,33466], +[2,41,3874], +"teaching", +"experi", +[2,33463,1744], +[2,13527,591], +"local-npm-registry", +[3,5123,14], +[0,33469,33476,6151,2523], +[0,546,8605], +[3,32034,11], +"ecdh", +"ecdsa", +"solver", +"bplist-creator", +"etch-sse", +[0,8616,91], +"seed", +[1,2343,33480], +"oxfmt", +[0,33481,23733,33483,2523], +[0,29421,6494,1525,2026,12105,4548,4763], +"@bazel/runfiles", +[0,29681,29695,29718,29719,31264,1745,13083], +[1,2343,33485], +[0,33486,33487,33488,2537], +[0,7384,26870], +[0,4200,3510,89,4207,4135,1984,24324,3824,4459,11143,16485,3170,3527,27921,91,4874,5254,37085,8778,11938,32815,32818], +[0,4270,29043,1984,5472,1973,4627,4963,23246,89,188,3709,5926], +[3,21120,19], +[2,33489,3543], +"aggregate-error", +"bunup", +"env-ci", +[2,2103,18280], +"git-l", +"og-parser", +[2,33495,33496], +"-esm", +[2,18170,33498], +"p-each-series", +[1,2343,33502], +[0,33506,33508,33509,2523], +"file-url", +[2,2847,4219], +[2,17050,33504], +[0,2018,32839,32844], +"p-retry", +[0,2924,5087,4874,4677], +[0,6901,20319,1973,5472,5433,13657], +[2,33511,57], +"markdown ", +"solidjs", +"@fluentui/react-component-event-listener", +[3,33513,26], +[2,33514,2538], +[3,6061,10], +"/event-stack", +[2,4133,33517], +[2,33516,33518], +[2,8652,3858], +"oolbar", +"@artsy/fresnel", +[2,30415,594], +"standalone", +[2,54,33524], +[2,33527,33531], +"@react-s", +"@percy/cli", +"@percy/c", +[2,33529,4915], +"tately/overlays", +"anchor-js", +[3,14132,14], +[2,33535,17966], +[3,33526,15], +"ilter-imports", +[2,33533,33536], +[2,33544,33548], +"d-props", +[2,2034,33539], +[2,1249,33540], +[2,30851,1204], +[2,1199,33542], +"@react-t", +"chai-enzyme", +"react-ace", +"react-code", +"ypes/shared", +"sandboxer", +[2,33547,33549], +"ource-render", +[2,3890,33551], +"react-static", +[2,33559,6649], +"-routes", +[2,33553,33555], +"niversal-component", +[2,12273,33557], +[3,3911,17], +"satisfied", +[3,4134,12], +[2,33561,1623], +[1,2343,33569], +"simulant", +"ta-scripts", +[2,4409,1231], +"@aws-lite/client", +"@aws-lite/s3", +[0,0,33570,33584,2537], +[0,1173,1175,1195,1267,1272,1280,1282,32870,1429,32871,34009,1652,1676,1705,1177,1903,1958,1970,2054,2092,2151,2629,2651,2297,2878,2881,2895,32877,26470,2897,2900,2904,32886,2906,2912,2915,2925,2899,3363,3524,4039,37320,12826,4131,4535,37871,4027,2924,4681], +[3,21564,23], +[2,33571,1219], +[2,18124,16284], +[2,33575,7625], +[3,2001,11], +"bikeshed", +"mock-tmp", +"semicolon", +"tap-arc", +"@casl/dx", +"cloudfunctions", +"apigateway", +"api gateway", +[0,6398,20986,32888,32054,31512,4453,35062,6970,5131], +"drag-handle-vue-3", +[2,33060,33587,4403], +"floating-", +[2,33060,33589], +"horizontal-rule", +[2,33060,158], +[2,33060,26074], +[2,33060,33597], +"eraro", +"fast-sa", +"fe-stringify", +[2,33594,33595], +[3,28051,11], +"gate-executor", +"gubu", +[2,31908,1783], +"@tiptap/pm", +"ordu", +"patrun", +[2,31908,33607], +"rolling-stats", +"use-plugin", +"starter-kit", +"@seneca/test-plugin", +"lab-", +[3,29583,11], +[2,33610,2528], +[2,33609,33611], +[2,33621,33622], +"-entity", +[2,4136,33614], +"seneca-e", +"rror-test", +[2,33616,33617], +"seneca-", +[2,33619,19138], +"@tiptap/s", +"uggestion", +"@tiptap/vue-3", +"micro-service", +[2,33624,591], +[3,14587,13], +"minimum", +"viable", +"startup", +[1,2343,33632], +"orklets", +[0,33637,33651,33665,2523], +[2,10196,21009], +"Sentimental", +[2,11183,9352,3392], +"nlp", +[0,32905,32917], +"@farmfe/cli", +[2,6283,33647], +[2,35438,35525], +"dottie", +[2,1153,1430], +[2,4140,30807], +"sort-class", +[2,17693,33644], +"wkx", +"-testing", +[3,9786,10], +[2,33648,103], +[2,33900,147], +[0,4880,4883,8152,1009,1011,1540,1177,1895,1955,1959,32922,32932,1894,4042,4076,4474,4484,91], +"chai-datetime", +"esdoc", +"-ecmascript-proposal-plugin", +[2,33653,33654], +"esdoc-", +"inject-", +[2,4306,1932], +[2,33657,33658], +[2,33656,33659], +[2,18124,1932], +[2,33656,33661], +"ibm_db", +"js-co", +[0,32941,32945,32950,89,12295,12296,5131,32955], +"@webgpu/types", +"mbinatorics", +[2,33664,33667], +"mariadb", +[1,2343,33693], +"jmp", +"node-hook", +"p-props", +"p-settle", +"pg-hstore", +"fail-on-", +"sav", +"s-store", +"major-bump", +[2,33676,33679], +[2,21386,33680], +"snowflake-sdk", +[2,33691,33692], +"db2", +"snowflake", +"object ", +"relati", +"onal mapper", +[2,33687,33688], +[2,33686,33689], +"@prisma/m", +"anagement-api-sdk", +[0,0,33694,33695,2487], +[0,89,3857,21166,33377], +[0,3857,2171,12295,12296,33012,33013,33014,33019,5130,89,33025,970,5260,2062,33034,7671,8632,1283,22743], +[1,2343,33698], +"@tinymce/tinymce-react", +[0,33699,0,33715,2487], +[0,31680,28069], +"@ser", +"ialport/binding-mock", +[2,33700,33701], +[3,33702,19], +"s-cpp", +[2,33703,33704], +[3,33702,12], +"n1ed", +"byte-length", +[2,15497,33708], +[2,33706,33709], +[3,33710,19], +"cctalk", +[2,33711,33712], +[2,33711,28979], +[0,1473,1623,57], +"-byte-timeout", +[2,6941,33716], +[2,33711,33717], +[1,2343,33720], +[0,0,0,33752,34352], +"packet-length", +[2,33711,33721], +[2,33711,3925], +[3,33723,23], +[2,33724,1493], +[3,33723,21], +[2,33726,17402], +"slip-encoder", +[2,33711,33728], +[3,33729,20], +[2,10972,4383], +"@heroicons/react", +"pacepacket", +[2,33730,33733], +[2,33706,3101], +[2,33743,33747], +"ccTalk", +"com port", +"COM", +"data logging", +"hardware", +"modem", +[3,8292,9], +"nodebots", +"RFID", +"sensor", +"plus/elements", +"serial port", +"sms gateway", +"sms", +"UART", +[0,1512,1623], +[2,32092,91], +[2,33755,33756], +"react-li", +"b-tools", +"update-check", +"@zeit/schemas", +"is-po", +"rt-reachable", +[2,33759,33760], +[2,33769,33770], +"@vercel/", +"style-guide", +[2,33763,33764], +"@types/ser", +"ve-handler", +[2,33766,33767], +[3,2909,10], +"serve-directives", +"ts-blank-space", +"vitest-fail-on-console", +[1,2343,33776], +"windowed", +"temp-path", +[0,33778,33779,33780,2487], +"favicon", +[0,33243,53,58,5889,92,33245,29421,33305,1393,1525,1595,1680,1699,1687,2020,2071,2151,31401,2674,2929,3244,3310,3445,3467,3561,3681,3742,3930,30228,4382,4473,4480,4588,4763,33069], +[0,10879,4864,7812,33247,4039,4493,4507,91], +[0,4963,181,4380,31398,31400], +[1,2343,33782], +[0,0,0,33783,2487], +[0,89,188,23332,4607,33275,33276], +"@extend-chrome/messages", +[2,33786,13901], +[3,33784,15], +"@types/chrome", +[1,2343,33793], +"@types/jsesc", +[2,33791,33792], +[3,32170,13], +"nspect", +[0,0,33805,33809,2487], +"chrome-extension", +"webext", +"webextension", +"verless/utils", +[2,33700,33797], +[3,33010,17], +"z-commitlint", +[2,5465,33800], +[3,33798,12], +[2,33802,1973], +[3,4156,10], +[0,5087,4874,1009,1011,1177,1886,1895,1938,1955,1958,1966,1982,2070,1192,1894,4039,4042,4052,27720,4076,4468,4474,4508,4514,17223,91], +" plugins", +[2,33804,33806], +"aws lambda", +[0,33285,28946,33286,33288,33289,33292,33296,33298,5165,33299,202,1388,4967,5995], +" web services", +[2,6997,33810], +".com", +[2,33804,33812], +[1,2343,33815], +[0,0,0,33816,2487], +[0,33314,1669,33317,33320,33330,33341,33345,33347,33353,33360,33361,33364,33367,33368,7021,33369,33370,1781,2845,33371,33345,12899,4967,5284,91], +"isoformat", +"cdk/aws-lambda-python-alpha", +[2,13562,33818], +[3,7709,16], +[2,33820,7308], +"eventbridge", +[2,33820,33822], +[2,33820,13573], +"ns", +[2,9191,33825], +[2,9191,3763], +[2,9191,4799], +[2,17253,33832], +"lib-dynamodb", +[2,13548,33830], +"-tree-1d", +[1,2343,33855], +"htl", +"util-dynamodb", +[2,13548,33835], +"@types/d3", +"aws-cdk-lib", +"iot-device-sdk", +[2,9194,33839], +"caporal", +"-highlight", +[2,14558,33842], +"apache-arrow", +[3,9167,11], +[2,33845,33839], +"d3-geo-projection", +"@types/aws4", +"esbuild-r", +[2,33849,8736], +"jsii", +"jsii-diff", +[2,17111,7268], +"jsii-docgen", +[0,33856,0,29047,2537], +[0,28872,13411,13412,13388,1137,1170,30051,1362,33474,18220,2139,2188,2070,22410,21226,6698,1209,3074,3220,3275,27534,2072,3547,3919,4025,4108,4135,4165,4351,13400,4507,3348,4707,4753], +"jsii-pacmak", +[1,2343,33859], +[0,33861,33862,33864,2537], +"obuild", +[0,30293,26557], +[0,4874,30306,30305,30310,4039,1531,91,1984], +"type-plus", +[0,30297,13527,5592,5995,2679,23932], +"ge-parser", +[1,2343,33870], +"flow-re", +"move-types", +[2,33867,33868], +[0,33873,33874,33875,2537], +"isequalwith", +"date-fns-tz", +[0,2611,3510,1689,15452,8550,28862,33235,28142,15261,23531,2670,28282,12207,31026,20745,28283,31737], +[0,4493,1984,16473,15450,91,4874,19759,31794,5517,28203], +[0,3724,25638,32916,2703,5001,3304,5472], +[2,33892,33895], +"@emnapi/runtime", +"@img", +"/sha", +"rp-libvips-dev", +[2,33879,33880], +[2,33878,33881], +"-wasm32", +[2,33882,33883], +[3,33882,19], +"win32-ia32", +[2,33885,33886], +[3,33887,25], +"x64", +[2,33888,33889], +"emnapi", +"string-s", +"-reader", +"exif-reader", +"plit-by", +"dzi", +"thumbnail", +"libvips", +"vips", +"@farmfe/c", +"cargo-cp-artifact", +[2,14736,34112], +"skia", +"offscreen", +"compositing", +[1,2343,33917], +"vulkan", +"metal", +"flmngr", +[2,4167,14994], +"shelljs-", +[2,33911,3979], +"travis-", +"changes", +"check-changes", +[2,33913,33915], +[0,33919,33922,33923,2487], +"makefile", +[0,33567,33568], +"imgpen", +"unsplash", +[0,33574,1610,1177,3173,33577,3421,3752,33579,4389], +[0,7200,13573,6997,33804,6599,33581,33582,7308,6949,6808,33583,5130], +[1,2343,33925], +[0,33926,33931,2514,2537], +[0,33666], +"bitly", +"shorten", +"mongoid", +"tinyid", +[0,1787,91,18279], +"kapok-js", +[1,2343,33934], +[0,33939,33946,33947,2399], +"should-", +"should-equal", +[2,33935,1671], +"should-type", +[0,89,3824,33697], +"-adaptors", +[2,33938,33940], +"should-util", +"@types/listr", +"houldjs", +[2,1901,33944], +[0,3775,4039,4487,4469,3744,91,53,4874,4880,1195,4883,5090,1167], +[0,4445,6092,33707,89,6038,1936,6105,7062,27968,9381], +[2,32223,2636], +"pdf-generation", +"assignments", +"homework", +"html-to-pdf", +"grunt-endline", +"quiet-grunt", +"semver-sort", +[1,2343,33957], +[0,0,33958,33960,2523], +[0,30703,442,9307,33731,33732,29273,33736,968,972,974,5364,7806,7639,4874,4880,4883,31397,4992,1413,1497,1536,1639,1177,1961,7585,2203,2675,2832,2990,3105,3127,3561,1894,21024,89,33753,3824,5564,33754,3885,4073,4079,33762,4164,4200,4382,4383,4072,33771,4474,4494,91,4523,29139,1983,26744,32255,1984,33772,9355], +"Function URL", +[0,89,6071,4607,11316,33774,3392,32209,32210,3912,176,10052,21604], +[1,2343,33966], +"plugin-open", +[2,33911,33962], +"Durable function", +"-sdk", +[0,33967,34002,34003,2523], +[0,10895,31832,1084,1448,1573,1676,37014,2071,2151,2835,3090,3510,3527,3878,4042,4094], +"@secretlint/secretlint-rule-github", +[2,33970,3378], +[3,33968,28], +[2,33972,33973], +[3,28473,18], +"ap-runner", +"secretlint", +"@vue/tsconfig", +"extender", +"fs-core", +[2,33979,27106], +[3,18529,16], +[2,33979,202], +[2,33980,33982], +"-builtins", +[2,33984,33985], +[3,33981,21], +"to-fsa", +"@kwsites/file-exists", +"@kwsites/", +[2,9466,14834], +[2,33987,33988], +[2,33984,594], +[3,33989,17], +[2,33991,27725], +"@sim", +"ple-", +"git/babel-config", +[2,33994,33995], +[2,33993,33996], +[2,33979,24171], +"source ", +[2,33999,12619], +[2,33979,8745], +[0,33784,33785,8862,811,8850,816,840,20978,33787,5244,5245,4864,11300,33789,4874,4880,4883,1009,1011,1030,11016,1457,668,33850,1177,1959,11348,3400,34971,89,3824,4039,4057,15277,3709,4507,91,1983,33790,1984,188], +[0,4080,11504,3195,33794,7188,33795,33796,1388,33799], +[1,2343,34005], +[0,34006,34016,2514,2523], +[0,1653,33817,33829], +[2,29234,34008,34010], +"pec-", +"custom-event", +[3,11133,16,9], +"ant-stuff", +[2,13112,34011], +[2,32845,34012], +"rrect-lockfile", +[2,33664,34014], +[0,1414,33834,4494,1983,2832,2899,1424,1177,4042,2203,1894,4473,33837,4614,442,91,4874,2820,6503,33844,17113,19181,33847,8850,33853,17112,10615,3112,1895,811,1011,816,1009], +[3,8136,10], +"nalyzer", +[2,32412,34018], +"-navigation", +[1,2343,34022], +[0,34023,34045,34046,2487], +[0,20584,2131,2674,33876], +[2,31395,1542], +[2,34026,34042], +[3,34030,17], +"is-safe-filename", +[2,5600,34029], +"recurse", +[2,28756,18346], +"@asciidoctor/core", +[2,29611,34035], +"samsam", +[2,11122,34033], +"site-publisher", +[3,11134,16], +"plugin-n", +"o-prototype-methods", +[2,34037,34038], +[2,34036,34039], +"@studio/changes", +"ropdown-menu", +"@openspacelabs/react-native-zoomable-view", +"clock", +[0,23531,4874,33901,2611,3297,4449], +[0,1424,10798,33903,33904,29727,15344,11812,158,11806,33905,8924,33907,33908,2636,8221,9561], +[1,2343,34054], +[2,29611,34049], +"asciidoc-loader", +"vendor", +"mocks-", +"and-spies", +[2,34051,34052], +[0,34056,34057,34058,4139], +"asciidoc", +[0,33909], +[0,4469,91,2924,4677,89,3824,4880,4883], +[0,89,33909,2090,1586,10057,33920,158,6038,9229,33921,6997,6949,13531,20614], +[1,2343,34069], +"express-json5", +"-readme", +[2,8924,34061], +"-htpasswd", +[2,4199,34063], +"fs-ext", +"crypt3", +"pod-install", +[2,13888,2036], +[0,34072,34073,34074,2523], +"pinch-to-zoom", +"pinch", +[0,37082,26380,17214], +[0,1984,3541], +[0,1388,3541,4627,17050,1973,5472], +[1,2343,34077], +"@polka/url", +[0,34079,34080,34081,2537], +"totalist", +[0,1138,1437,1457,2182,2185,2226,2600,2685,2991,3127,3758,4135,13834], +[0,33943,8147,5254,33768,1166,1424,3421,29899,1894,3706,28593,4474,4481,91,1906], +[0,33948,200,33949,1745,33950,33951,1783,2636,3758,3197,33952], +[3,33056,29], +[2,33060,34084], +"node-range", +"bytes-iec", +"nanospinner", +[2,37050,6579], +"budget", +[3,13526,12], +[2,34089,34088], +[1,2343,34094], +[2,959,34093], +"table-core", +[0,34095,34100,28315,2523], +[0,1437,4747,28172,32884,28236], +"file size", +" size", +[2,7204,34097], +"get size", +[0,4874,32551], +[1,2343,34102], +[0,34103,21592,34106,2523], +[0,4135,32884,28236,28200], +"-cognito-identity-js", +[2,6997,34104], +[0,32910,32912,32913,13428,5472,6533], +"skapi", +[1,2343,34109], +[0,34110,34117,34120,2537], +[0,31855,28236,28200,32884], +[2,20327,1984], +"-no-globals", +[2,17375,34114], +"ormat", +"unloader", +"seperator", +[0,2065,34007,32903,13426,3536,11132], +[2,34119,12675], +[3,36879,12], +[0,32910,32912,32913,13428,5472,6533,29724], +"is-fullwidth-code-point", +[1,2343,34123], +[0,34124,34126,34129,2537], +[0,1525,940,999,32138], +"random-item", +[0,32889,33932,34031,34032], +[2,29611,34128], +"file-publisher", +[0,29699,200,1179,1745,29703,29753], +"publisher", +"folder-size", +[2,2183,34131], +[1,2343,34135], +"js-extend", +[0,34138,0,34140,2537], +"math-sum", +[2,7627,1413], +[0,34048], +"tablify", +[0,29699,32891,5457,34055,1745,29703,29753], +"slow", +[1,2343,34144], +"dts-plugin", +[0,26338,34145,34146,4139], +[0,5467,21155,10614,5087,4870,4880,5091,1009,1011,1529,1177,1895,1955,2675,1192,34067,1894,89,3857,21166,3980,91], +[0,3857,5128,12295,12296,34070,34071,5131,970,4627,6624,16660,37460,4420,4384], +[1,2343,34153], +[2,5051,34149], +"cheduler", +"htmlcs", +"standards", +"WCAG", +[0,34155,34158,34159,2399], +[2,2287,33914], +[0,4419], +"urlify", +[2,21831,364], +[0,32426,3519], +[0,25638,14873,5472,17878,4419], +[1,2343,34162], +"stage-js", +[0,34163,34164,2514,2487], +[0,31292,3530,9354], +[0,25366,33243,33638,33650,16804,33146,4874,20374,29891,1112,19839,33902,668,1177,34113,2807,2990,3090,28865,4042,9245,1531,91,34115,29470,1983,1984,2924,4677,29161], +[2,4609,12607], +[2,4609,34168], +[2,18124,1781], +"pages", +" output", +[2,3721,34169], +" standard", +[2,4216,34171], +"standard ", +[2,34173,3721], +" for ", +[2,34175,4255], +[2,25264,34176], +[3,34177,11], +[2,34178,9338], +"stylish ", +[2,34180,16237], +[2,34180,4255], +[2,1983,6872], +[2,34183,22156], +[1,2343,34192], +"box2d", +"game", +"physics", +"axios-ntlm", +"xml-crypto", +"2d", +[0,14631,0,34193,2487], +[0,29699,32891,20204,1745,29703,29753], +"@types/sax", +[1,2343,34196], +[0,34202,0,34210,2399], +[2,4005,34198], +"s-cli", +[3,26390,16,13], +"base64id", +[2,9246,25513], +[0,34127], +[2,34204,2403], +[3,5556,15], +[2,34206,34690], +[3,28724,15], +[2,7686,34209], +"@socket.io/component-emitter", +"minify-templates", +[0,29699,32891,34130,1586,1745,29703,29753], +[1,2343,34212], +[0,34213,0,29047,2523], +[0,10744,1209,3084,25886], +[1,2343,34215], +[0,0,34223,34248,2523], +[2,34217,158], +[3,5386,10], +"faceoff", +[2,34220,34221], +[3,16767,16], +"erformance-monitor", +[2,16766,6812], +[0,107,442,4856,7677,1091,1177,1895,1894,4039,4060,4193,4072,4481,4484,4508,4514,4523,1983,34165,34166,34183,34184,4614,1984], +"fast-wrap-ansi", +"@rslib/core", +"eventsource", +"oxc", +"sockjs", +[2,28573,34230], +"rslib", +[2,28606,34232], +"rstest-config", +[2,34234,6847], +[3,10235,18], +[2,29314,3090], +"@pnpm/list", +"@pnpm/workspace.find-packages", +[2,1463,20001], +[2,37509,34240], +"eeverse", +[2,34242,34243], +[3,4892,10], +"npkg__lockfile", +"fast-npm-meta", +"@nolyfill/internal", +[2,34247,35011], +"@nolyfill/", +[0,34186,12075,5284,91,34187,34188,16284,34191,5131], +[1,2343,34250], +[0,0,34251,34252,2523], +[0,107,4874,1009,1011,17494,1177,1895,2025,2899,1894,34197,4060,34199,4193,4508,4514,91,1983,34165,34166,34183], +[0,12075,34187,22894,8691,16284,34191,1424,16697,5122,5131], +[1,2343,34255], +"separated", +[0,34256,0,34257,2537], +[0,4447], +[0,4525,5284,34227,33479,1894,91], +[1,2343,34259], +[0,0,0,34285,2537], +"fumadb", +"microfiber", +[3,8277,10], +"alars", +[2,34262,34263], +"load-files", +[2,5527,34265], +"compact", +[2,3715,34267], +[2,9470,34268], +"@anvilco/apollo-server-plugin-introspection-metadata", +"kysely", +"bdd-lazy-var", +"@orpc/zod", +"@orpc/otel", +"neverthrow", +"introspection", +"@c15t/logger", +"-query", +[2,34276,34278], +"@orpc/server", +"@orpc/openapi", +"@orpc/contract", +"@c15t/translations", +[2,13498,202], +[0,4796,26481,2968,31176,6646,3378,3420,9478,6666,3552,4135,18710,7671,33163,33186,18280,9527,4749], +"kysely-pglite", +"@c15t/vitest-config", +[2,34289,34290], +"@libsql/", +"kysely-libsql", +"string-t", +[2,34295,21160], +"o-stream", +[2,34291,34293], +"@c15t", +[1,2343,34322], +"consent", +"privacy", +"ccpa", +"binary-split", +[2,7241,14922], +"lgpd", +"self-host", +"consent-management", +"user-privacy", +[2,34307,34308], +"data-pro", +"tection", +"cookie-banner", +[2,34304,34311], +"-platform", +[2,2339,5365], +"cmp", +[2,34315,7179], +"consent-", +[3,5079,14], +"imageinfo", +"prettydiff", +"sprity-css", +"/common", +"sprity-lwip", +[0,0,34323,2514,2537], +[0,29713,34235,635,34236,34237,811,8850,816,23339,8712,28206,34239,34241,29308,1525,1707,34244,3749,3527,4079,34245,34246], +"object-stream", +[1,2343,34327], +"through2-spy", +[0,34329,0,29047,2443], +"coordinates", +[0,13387,13412,13388,20908,13395,1170,1362,1364,2026,29067,2670,1209,3084,3162,3237,3509,4148,4507], +[1,2343,34332], +"css-sprite", +[0,33469,33476,6151,2443], +[1,2343,34334], +[0,34335,33476,6151,2443], +[0,31874,546,8604,8605], +[1,2343,34337], +[0,34338,34339,34340,2399], +[0,4763,16230,15095,34260,34271,34273,4341,34274,34275,32176,34277,34280,34281,34282,34283,13471,34284,13495,13502], +[0,3244,32426,6526,91,4874,34286,6494,34287,12207,34288,33237,34292], +[0,34297,34298,7229,34299,34302,5995,34303,34304,34305,33055,34306,34309,34310,34313,34314], +[1,2343,34343], +"asn1", +[0,34344,34346,34347,2399], +[0,2105,3527,2072], +"bcrypt-pbkdf", +[0,28177,4880,1701,3442,21166,91], +[0,3857,12295,12296,31937,6574,6635,5128,31912,89,5131,181,1017,45,13814,22875,2414], +[1,2343,34349], +[0,34350,0,34351,4139], +[0,4597,3173,940,34048], +[0,29699,32891,1563,1745,29703,29753], +1772409600000, +[1,2343,34361], +"integrity", +"subresource integrity", +"sri", +"sri hash", +"sri ", +"sri string", +[2,34358,1179], +[0,0,34362,34381,34352], +[0,34363,32558,48,53,5240,83,87,34368,34369,5583,6373,1178,1193,17217,24621,29883,34370,29775,1540,1759,1177,1935,1938,27790,2126,29945,35634,2675,1192,11896,32206,11348,11350,3534,34376,1894,3720,3758,34197,4042,34377,4060,4073,4079,4146,91], +[2,34364,34365,34367], +[3,5215,13], +"ollup-plugin", +"shuruhatik", +[3,10697,17,6], +"@fezvrasta/tsc-silent", +"@khanacademy/flow-to-ts", +[2,34374,34375], +"long-", +[2,4252,591], +[2,34371,34372], +[3,14697,22], +"place-variables", +"poster", +[2,34378,34379], +[3,11802,15], +"low-entry", +"version-guard", +[0,8190,8191,5399,8192,34384,34385], +[3,12809,13], +[2,34382,7051], +"popper", +[2,8194,34386], +" engine", +[0,0,7997,7998,34352], +[1,2343,34390], +[3,1570,26], +[0,0,34394,34396,34352], +"fig-spec", +[2,34389,34391], +"dotgitignore", +[0,10615,6503,4874,1387,1429,2899,3363,4042,4426,91], +"std-mocks", +[0,34397,2238,34398,16629,7521,34399,29804,31687,1993,16284,9006,34400,34401,8424,34402,6829,26514,34403,34404,34406], +"anime", +"anime.js", +"timeline", +"easings", +"cubic-bezier", +"splitText", +"WAAPI", +"Canvas", +"ban-sensitive-files", +"WebGL", +"deps-ok", +"dont-crack", +"git-issues", +"pre-git", +"simple-co", +"mmit-message", +[2,34411,34412], +[0,9116,9122,9131,34352], +[1,2343,34416], +[0,7967,7938,7939,34352], +[1,2343,34418], +[0,0,0,10570,34352], +[0,0,12106,12107,34352], +[1,2343,34422], +"modern-syslog", +[0,0,11488,34424,34352], +"winser", +[0,7789,34425], +"decrypt", +"etsy", +"metric", +[0,34430,34436,34440,34352], +"aggregation", +[0,34431,34432,34433,34434,34435], +"ev-emitter", +"fizzy-ui-utils", +"get-size", +"imagesloaded", +"unidragger", +[0,1462,1177,34437,34439,2907,4320,4323,4072], +[2,1949,34438], +"etafizzy", +"jquery-bridget", +[0,4453,6398,34441,31512,32054,35060,36197,1388], +"flick", +[0,17201,17202,17203,34352], +[3,11146,12], +[1,2343,34445], +[0,0,34446,34448,34352], +[0,1429,1700,2323,2367,22122,2409,2447,2494,2530,34447,2899], +[2,22465,35458], +[0,6901,27679,16626,3220,3222,1666], +[0,0,0,18014,34352], +[1,2343,34451], +[0,0,0,34452,34352], +[0,17199,16892,2869,3166,34453,11326,207,20531,57], +"lex", +[1,5293,34455], +[0,8391,34352], +[1,2343,34457], +[0,34458,0,2514,34352], +[0,1395], +[0,20095,20097,2514,34352], +[1,2343,34461], +[0,0,34462,34463,34352], +[0,2080,4389], +[0,18012,25866,18108,34464,30091], +"maths", +[3,10821,18], +"11y", +[2,34465,34466], +"pannellum", +[1,2343,34470], +[0,0,34477,34483,34352], +[3,32229,23], +"hots", +[2,34471,34472], +"-puppeteer", +[2,34473,34474], +[2,10818,31765], +[0,2899,2025,16189,34478,34482,3469,1149], +[2,34481,2844], +"orchbox", +[2,22060,34479], +"persist-", +"jugglingdb", +[0,11415,3469,34482,16189], +[2,4270,676], +"patternlab", +"-pat", +[0,53,61,83,87,90,92,442,10615,29767,6061,16607,6063,6065,16608,16612,29769,1193,20517,29775,1503,1593,1610,1177,15510,1942,2026,2323,2338,2544,2765,24652,29778,1192,2780,1776,29779,2990,9750,5103,29780,29783,3758,3957,4131,4523,1983,29770,27900], +[1,2343,34495], +"tern-library", +[2,34486,34489], +[2,21043,34490], +"django-", +[2,34492,5354], +"jinja2", +[0,0,0,34496,34352], +[0,34497,11328], +"panorama", +[0,26328,26329,26330,34352], +[1,2343,34501], +"findit2", +[0,34502,0,2514,34352], +[0,3760,13126,4747,4709,3259,4545,1481,16734,1512,4720], +[1,2343,34504], +[0,7936,7938,7939,34352], +[0,0,0,23762,34352], +[1,2343,34507], +[0,34509,34512,34518,34352], +"funsert", +[0,3744,34511], +"into-stream", +"rip-out", +[0,48,53,78,87,90,94,1148,1596,1843,1845,1177,34514,17585,1951,1959,2832,2899,3421,89,3824,32510,34517], +"Assert", +[2,34515,34516], +[3,1886,16], +"daddy-react", +"setup-env", +[0,8221,3857,21610,34519,11512,89], +"compatiblity", +"compatibl", +"ity", +[0,0,0,23771,34352], +"-metadata", +[2,26612,34523], +[0,11976,4874,7677,12690,3377,3446,7461,9245,91,1984], +[1,2343,34529], +"livestream", +[2,34527,3642], +[0,0,34530,2514,34352], +[0,53,87,811,13866,816,1198,1290,1389,2766,2297,2871,2881,2886,2898,6387,2923,3758,4042,4045,34531,20981,34533,20983,4073,4650], +[2,34532,671], +[3,15277,16], +[2,15476,34534], +"ass", +[1,2343,34536], +[0,0,34538,2514,34352], +"gulp-rimraf", +[0,4039,3188,34539,34543], +"testit", +"string.js", +"stringjs", +"S", +"gethub", +[1,2343,34545], +[0,0,34546,34548,34352], +[0,48,53,87,1178,1261,1177,1881,1895,1938,1955,1192,1894], +"codsen-utils", +[0,6270,4202,1413,34549,57,34550,17180,14638,12786,30946,2382,2098,2090,7017,6435,6270,15253,3721], +"bits", +"iec", +"ranges-apply", +0, +"ranges-push", +"string-le", +"ft-right", +[2,34554,34555], +0, +"onkey-traverse", +[2,19434,34558], +"ranges-invert", +0, +"jsp", +"mixed", +"xhtml", +0,0,0,0, +[2,2183,7230], +0,0,0,0,0, +"-html4", +[2,26854,34575], +[3,34576,19], +[2,34577,27769], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"payment processing", +"credit cards", +0,0,0,0, +[2,2168,3081], +"sdk-", +[2,34608,1102], +[2,26424,34609], +"fly-register", +[2,202,34611], +"strong-agent", +0, +"strong-arc", +"strong-build", +0,0, +"strong-deploy", +"strong-m", +"esh-models", +[2,34620,34621], +"strong-re", +"gistry", +[2,34623,34624], +"strong-start", +"strong-s", +"upervisor", +[2,34627,34628], +0, +"core-util-is", +"strong-de", +"bugger", +[2,34632,34633], +"wagger-ui", +[2,34627,34635], +[3,4369,10], +"-validate", +[2,22188,34638], +0,0, +"LoopBack", +"Platform", +"alerts", +0,0, +"event loop", +0,0, +"heroku", +"nodeops", +"npmrc", +"openshift", +"slc", +"est functions", +[2,34141,34655], +"strong-cli", +"strong-cl", +"uster-control", +[2,34658,34659], +"strongops", +"upstart", +0,0,0,0, +[2,27954,1699], +[2,27954,2070], +[2,27954,3144], +"@zip.js/zip.js", +[2,3503,4549], +0, +"@astrojs/check", +"@astrojs/", +"starlight", +[2,34674,34675], +[2,12310,1430], +[3,811,8], +[2,34678,1388], +"@shoelace-style/shoelace", +[2,13283,8891], +0, +"astro", +"hanbi", +"escape-at", +[2,2827,34685], +"jsdoc-ts", +[2,2701,1932], +[2,34687,34688], +"lit", +0, +"dictionary", +[2,19319,34692], +"Android", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[2,19801,2741], +"css-t", +"o-react-native", +[2,34716,34717], +0, +[2,11832,14438], +[2,5129,10699], +[2,4881,34721], +"rame", +[2,34723,10699], +[2,11364,34724], +"-plugin-rtl", +[2,7917,34726], +0,0, +"ts-toolbelt", +0,0,0,0,0,0, +"bunchee", +"stylis-", +0, +"rule-sheet", +[2,34738,34740], +0, +"zeit", +0,0,0,0,0, +"hack", +0,0,0,0,0, +"globjoin", +"-tag-names", +[2,18110,34756], +"-nested-selector", +[2,5250,34758], +[2,30273,34759], +0, +"svg-tags", +0, +"github-info", +[2,6018,34764], +"@styl", +"elint/prettier-config", +[2,34766,34767], +[3,34768,11], +[2,34769,19692], +[3,4852,9], +"lanced-match", +[2,34771,34772], +[3,25558,14], +[2,34774,5260], +[2,4865,4565], +"murmurhash", +[2,8802,34777], +[3,13059,16], +[2,34779,2706], +0,0, +"@types/svg", +"-tags", +[2,34783,34784], +"ylelint", +[2,17371,34786], +0,0, +"set-stylelint", +[2,32137,34790], +[3,3676,10], +[2,34792,367], +0,0,0,0,0,0,0, +[3,4323,16], +0,0,0,0, +[2,1280,8554], +0,0, +"css-values", +"shortcss", +0, +"dela", +"ration", +0,0, +"-strict-value", +[2,34813,34816], +[2,34812,34817], +"keyword", +"z-index", +0,0,0,0, +"orting", +[2,3677,34825], +0, +"udochenkov", +[2,25790,34828], +0, +"ed-syntax", +[2,30481,34831], +[3,24627,16], +"hudochenkov", +[2,34833,34834], +0,0,0,0,0, +[3,30356,14], +[2,34841,27739], +0, +"github-c", +"s-list", +[2,17551,34845], +[2,34844,34846], +0,0,0,0,0,0,0,0,0,0,0, +[3,1369,11], +[2,34859,30480], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"jar", +"cookiejar", +0, +[2,33935,27], +0, +"tinyify", +0, +"frisbee", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"promised", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"capability", +"16m", +0,0,0,0,0,0,0,0,0,0,0, +"periscopic", +0,0,0,0,0,0,0,0,0,0, +"@types/sade", +[3,27700,21], +[3,27700,22], +[2,34941,20500], +[3,9566,10], +[2,34943,2847], +[2,4353,34944], +0,0,0,0,0, +"@kiwi/eslint-config", +"@kiwi/", +[2,34952,7628], +0, +"@types/pug", +0, +"easy-import", +[2,3562,34957], +0,0,0,0,0, +"@res", +"vg/resvg-js", +[2,34964,34965], +"prettysize", +0, +[3,30071,12], +"hromium", +[2,34969,34970], +0,0,0,0,0,0,0,0,0,0,0,0, +[3,4362,11], +0,0,0, +"lease-notes", +[2,15842,34988], +0, +"precache", +0,0,0,0,0, +"tape-promise", +0, +"autogen", +0,0,0,0, +"multil", +"ang-", +[2,2055,4298], +[2,35005,35006], +[2,35004,35007], +0,0, +"promise.any", +0, +[2,29351,7625], +0, +"readmeio", +0,0,0,0,0, +[2,4364,12659], +[3,4367,9], +"emplates", +[2,35022,35023], +0, +"swagger UI", +0,0,0,0,0,0,0, +"s-readme", +[2,9828,35034], +[2,11941,35035], +0,0,0,0,0,0,0,0,0, +"nodelint", +"still", +[3,29280,15], +0,0, +"travis-cov", +0, +"jinja", +0,0,0,0, +"swipe", +"framework7", +"gallery", +0, +"slideshow", +0,0,0,0, +[2,14507,3048], +[2,2655,35067], +0,0, +"sync-rpc", +[2,21658,705], +0, +"flowgen2", +0,0,0,0,0, +" information", +[2,623,35080], +"sysinfo", +0, +"freebsd", +"openbsd", +"netbsd", +"cpu", +"cpuload", +"physical cores", +0,0, +"logical cores", +"cores", +0, +"socket type", +"fsstats", +"diskio", +" devices", +[2,1359,35098], +"netstats", +[2,6072,591], +[2,11996,35101], +"network ", +"connections", +[2,35103,35104], +"network stats", +"iface", +"printer", +"processes", +"users", +"internet", +"battery", +0,0, +"docker stats", +"docker ", +[2,35116,35109], +0, +"graphic card", +"graphic c", +"ontroller", +[2,35120,35121], +0,0, +"disk layout", +"audio", +0, +"bluetooth", +"wifi", +0, +"wifinetworks", +0, +"virtual box", +"virtualbox", +"BIOS", +"chassis", +0,0,0,0, +"@jsenv/file-size-impact", +"-style-", +[2,21605,3733], +[2,35142,35143], +[2,13565,35144], +"symbol-es6", +0,0,0,0,0,0,0, +"hase", +"draht", +"limes", +"lusca", +"partof", +"timer2", +0, +"uuidv4", +"crypto2", +"nocache", +"datasette", +0, +"json-lines", +0, +"processenv", +"stethoskop", +0, +"flaschenpost", +"-events", +[2,8891,35172], +0, +"nodeenv", +"roboter", +0, +"assertthat", +[2,35166,4219], +0, +"cqs", +"cqrs", +0,0,0,0,0,0, +"className", +0, +"classList", +0, +"override", +0,0,0,0, +"dlv", +0,0,0,0,0,0, +"@tapjs/after", +[2,35205,27554], +"@tapjs/a", +"sserts", +[2,35207,35208], +"@tapjs/", +0, +"@tapjs/before", +[2,35212,27554], +"@tapjs/chdir", +0, +"@tapjs/core", +[2,35210,7131], +"@tapjs/fi", +"xture", +[2,35218,35219], +[2,35210,9261], +"@tapjs/mock", +"node-ser", +"ialize", +[2,35223,35224], +[2,35210,35225], +"@tapjs/run", +[2,35210,8745], +0, +"@tapjs/spawn", +0, +"@tapjs/stdin", +"@tapjs/test", +"@tapjs/t", +[2,35234,2528], +[2,35210,6812], +[2,4026,1204], +0, +"tapjs", +"tapjs plugin", +0,0,0,0, +"tap-out", +0, +"tapes", +0,0,0,0,0,0,0,0,0,0,0, +"resumer", +[2,23236,35259], +"@ljharb/t", +"hrough", +[2,35261,35262], +[2,5613,7067], +"dotignore", +[2,2565,15126], +0, +"ecstatic", +[3,3404,9], +"osix-or-windows", +[2,35269,35270], +0, +"harness", +0,0,0,0, +[2,9497,29051], +"chownr", +"yallist", +0, +"chmodr", +0, +"-to-array", +[2,2018,35284], +0,0,0,0,0, +"brittle", +0,0,0,0,0, +"b4a", +"fast-fifo", +"streamx", +0,0,0,0,0,0, +[2,6346,6770], +"DDD", +[2,6346,8726], +0, +"front end", +0, +"back end", +0,0,0,0, +"cz-format-extension", +0,0,0,0,0,0, +"telegram-api", +"telegram-", +"client-api", +[2,35325,35326], +"tdlib", +"tglib", +[3,3299,10], +0,0,0,0,0,0,0,0,0,0,0, +"tempdir", +"tmpfile", +0,0,0,0, +"unique-s", +[2,35348,8961], +0,0,0,0,0,0, +"@cronvel/get-pixels", +0, +"chroma-js", +"lazyness", +0,0, +"gen-events", +[2,3286,35362], +"seventh", +"string-kit", +0, +"tree-kit", +0, +"256 colors", +0, +"true color", +0, +"input field", +"gpm", +"screenbuffer", +"textbuffer", +"32-bit", +0,0,0,0, +"charm", +"visualwidth", +0, +"80s", +"ibm", +0,0,0,0, +[3,5012,18], +[2,35391,4226], +0, +"@ls-lint/ls-lint", +"astring", +0,0,0,0,0,0, +"glify-js", +[2,7817,35402], +0,0,0,0,0,0,0,0,0,0,0,0,0, +"multiline-ts", +"spawn-p", +[2,35418,4357], +0,0, +"only-allow", +"sinon-", +"assert-stub", +[2,35423,35424], +[2,35423,2299], +0, +"unlinted", +0,0,0,0,0, +"@deve", +"/bin-v8-flags-filter", +[2,674,35435], +[2,35434,35436], +[3,35437,12], +[2,35438,29084], +"bowser", +"chrome-", +[2,20844,8626], +[2,35441,35442], +"device-specs", +"elegant-s", +[2,35445,10252], +0,0,0, +"get-os-info", +0,0, +"import-lazy", +0, +"is-podman", +"-async-hook", +[2,3077,35456], +"-commonjs", +[2,17102,35458], +[2,17003,35459], +[2,14709,35460], +"os-family", +"pinkie", +[3,7872,10], +[2,35464,2013], +[2,2093,10903], +[2,15034,35466], +0, +"replicator", +0, +"-tools", +[2,20008,35471], +[2,4415,35472], +"testcafe-", +"hammerhead", +[2,35474,35475], +0, +"legacy-api", +[2,35474,35478], +[3,22279,11], +[2,35480,1803], +[2,35474,35481], +[3,35482,18], +[2,35483,3392], +[2,35483,6907], +[2,35483,4386], +[2,35483,28592], +0,0,0,0, +"testcafe-s", +[2,11068,1179], +[2,35492,35493], +[2,7051,4007], +[2,17475,35495], +"unquote", +"url-to-o", +"ptions", +[2,35498,35499], +0, +"@ffprobe-installer/ffprobe", +"@types/ca", +"llsite", +[2,35503,35504], +[3,5245,9], +"@types/dedent", +[3,5546,10], +"ragent", +[2,35508,35509], +"connector", +[2,26353,35511], +"caller", +"dom-walk", +[3,25792,16], +"mmerhead", +[2,35515,35516], +"express-ntlm", +"gulp-clone", +0, +"gulp-ll-next", +[3,27610,11], +[2,35522,2869], +"qunit-harness", +[2,2337,35524], +0, +"gulp-step", +"-spe", +"c-with-retries", +[2,35528,35529], +[2,32261,35530], +"sl-self-signed-certificate", +[2,8423,35532], +[3,35473,17], +"-browserstack", +[2,9962,35535], +[2,35534,35536], +0, +"automated", +"QA", +0,0,0,0, +"@types/doc", +"kerode", +[2,35545,35546], +"docker-", +[2,35548,2940], +[2,3583,33893], +"ssh-", +0, +"port-forward", +[2,20844,35553], +[2,35551,35554], +0, +[3,23843,13], +[2,35557,3015], +[3,28203,13], +"ties-reader", +[2,35559,35560], +[3,7752,11], +[2,35562,2150], +0,0,0,0,0, +"object-es5", +[2,26988,35569], +0, +"limate-test-reporter", +[2,14354,35572], +"conf-env", +[2,1611,35574], +"headerify", +"is-number", +0, +"teenytest", +[2,35579,4007], +0, +"test double", +0,0,0,0,0, +"fireworm", +"printf", +"_string", +[2,369,35590], +0, +[2,1362,23842], +"hallow-", +[2,35594,1693], +[2,21479,35595], +0, +"saucie", +0,0,0,0,0,0,0,0,0,0, +"dpdm", +"dcs", +[2,16693,35610], +0,0,0,0,0, +"three.js", +"reality", +[2,9352,35618], +"augmented-reality", +"webgl", +"webgl2", +0,0, +"webaudio", +0,0, +"webgpu", +"webxr", +0,0,0,0, +[2,2182,20], +"node-st", +"dlib-browser", +[2,35635,35636], +0,0,0,0,0,0,0,0,0,0,0, +"hundreds", +"polendina", +0,0, +"stream-spigot", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"unexpand", +"homedir", +0, +"tilde", +0,0,0,0, +"number-is-nan", +0, +"profile", +0,0,0,0, +"bee-affix", +"bee-a", +"bee-alert", +"bee-anchor", +0,0,0, +"bee-animate", +[2,35683,9820], +"bee-", +0,0, +"bee-backtop", +0, +"dge", +"bee-badge", +"bee-b", +[2,35698,9837], +"bee-button", +[2,35700,9847], +"bee-calendar", +0,0, +"bee-carousel", +"bee-cascader", +"bee-c", +"bee-checkbox", +[2,35707,142], +"bee-collapse", +"bee-col", +"orpicker", +[2,35711,35712], +"bee-co", +0, +"mplex-grid", +[2,35714,35716], +[2,35691,3812], +0, +"bee-dnd", +"bee-drawer", +0, +"bee-dropdown", +"bee-form", +0, +"-control", +[2,35724,35726], +"bee-form-", +[2,35728,7227], +"bee-icon", +"bee-i", +"nput-group", +[2,35731,35732], +0, +"-addon", +[2,35733,35735], +"bee-input-", +[2,35737,6988], +"bee-label", +0, +"bee-layout", +0, +"bee-loading", +0, +"-state", +[2,35743,35745], +0, +"bee-locale", +0, +"bee-menus", +0, +"bee-message", +0, +"bee-modal", +0, +"bee-navbar", +"bee-n", +0,0, +"otification", +[2,35757,35760], +"bee-overlay", +"page-layout", +[2,35691,35763], +"bee-pag", +"ination", +[2,35765,35766], +0, +"bee-panel", +"bee-p", +"opconfirm", +[2,35770,35771], +0, +"bee-popover", +"rogress-bar", +[2,35770,35775], +0, +"radio", +"bee-radio", +0, +"bee-rate", +"search-panel", +[2,35691,35782], +0, +"bee-select", +0, +"bee-slider", +0, +"bee-step", +0, +"bee-svgicon", +"bee-switch", +"bee-table", +0, +"bee-tabs", +0, +"bee-tag", +0, +"bee-tile", +0,0, +"bee-timeline", +"bee-time", +[2,35803,3811], +"bee-tooltip", +"bee-transfer", +"bee-trans", +[2,35807,9943], +0, +"bee-tree", +[2,35810,11245], +"bee-upload", +0, +[2,2359,1623], +"-wrap", +[2,2376,35815], +"inline-urls", +[2,21897,35817], +[2,4437,1732], +0, +"tinper", +0,0,0,0,0,0,0,0,0,0, +"tinylibs", +0,0,0,0, +"@deno/shim-deno-test", +0, +[3,4443,9], +0,0,0,0,0,0,0,0, +" threads", +[2,6812,35848], +0, +"thread pool", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"pushalert", +" toast", +[2,3857,35866], +"toastify", +[2,3862,35868], +[2,3862,9044], +"Typescript", +0,0,0,0, +"emble-js", +[2,31072,35876], +"processmd", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[3,5152,10], +"RFC6265", +"RFC2965", +0,0,0,0,0, +"tinytim", +0,0,0,0,0,0,0,0,0,0,0,0, +[2,7231,7316], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"html-select", +0,0, +"html-tokenize", +0,0,0,0,0,0,0,0,0, +"aggregate", +0,0,0,0,0,0,0,0, +"bs-logger", +"make-error", +0, +[2,6308,3065], +0,0,0,0,0,0,0, +[2,13664,6893], +0, +[3,5480,12], +"oader", +[2,35970,35971], +0,0,0,0,0,0,0, +"migration", +"migrations", +"cli-tool", +0,0,0,0, +"@ts-morph/common", +"block-writer", +[2,10988,35988], +0,0, +"static ", +[2,35992,19748], +"refactor", +[2,6721,35994], +0,0,0,0, +[2,20223,6859], +[2,20223,1276], +[2,12448,16443], +"@csp", +"otcode/source-map-support", +[2,36003,36004], +0, +"dprint", +"@swc/wasm", +"ntypescript", +"util.", +[2,36010,19138], +0,0,0,0,0, +[2,20442,7163], +"omit-deep", +0, +"power-assign", +0,0,0,0,0,0,0,0,0,0,0,0, +"bre", +"rete", +0, +"rule engine", +"rules engine", +" rule engine", +[2,5284,36038], +"js rule engine", +[2,6591,6770], +0,0,0,0,0, +[2,18284,4295], +0,0,0,0,0,0,0, +"typedefs", +"typedef", +0, +"initions", +[2,36056,36058], +0,0,0,0,0,0,0,0,0,0,0, +"polite-json", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[2,27572,4014], +0, +"codelyzer", +[3,4490,10], +"siste", +"nt-codestyle", +[2,36092,36093], +[2,36091,36094], +0, +"tslint-divid", +[2,4491,2700], +[2,13530,1334], +[2,4491,36099], +"tslint-mi", +"sc-rules", +[2,36101,36102], +0,0, +"ts-lint", +0,0,0,0,0, +[3,20474,12], +"slint-plugin", +[2,36112,36113], +0,0,0,0, +[2,4671,3209], +"joycon", +0, +"ts-e", +[2,36122,154], +0,0,0,0,0, +[3,14596,11], +[2,36129,8791], +0,0,0,0, +"@mixmark-io/domino", +0,0,0, +"-attendant", +[2,4495,36139], +0,0,0,0,0, +"grunt-comp", +0, +"onent-io", +[2,36146,36148], +[3,2243,10], +0, +"at-sourcemap", +[2,36150,36152], +"grunt-m", +"arkdown", +[2,36154,36155], +[3,2300,11], +"grunt-p", +"ush-release", +[2,36158,36159], +0, +"gex-replace", +[2,24294,36162], +[2,3503,16237], +[2,22277,36164], +"unfunk-reporter", +[2,3192,36166], +0,0,0,0,0, +"tap-b", +0, +"rowser-color", +[2,36173,36175], +"-util", +[2,4497,36177], +0,0, +"curve25519", +"ed25519", +"nacl", +0, +"poly1305", +"public", +"salsa20", +0, +"signatures", +0,0,0,0, +[2,4498,1574], +0,0, +"DOM", +"Twitter", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[2,4505,1732], +0,0,0,0,0,0,0,0,0,0, +"media-typer", +0, +"checking", +0,0,0,0,0,0,0,0,0,0, +[3,596,9], +"/material-color-utilities", +[2,36239,36240], +0,0, +[2,4511,699], +[3,4512,14], +[2,3131,4964], +"material-3", +[2,4508,1932], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"JsDocs", +0,0,0,0,0,0, +"cli-prompt", +0, +"concatenate", +0,0, +"ebook", +"pandoc", +0, +"kindlegen", +0,0,0,0, +[3,27847,12], +[2,36283,3231], +[2,12690,18877], +0,0, +"-findorcreate", +[2,3232,36288], +[2,7627,4487], +0,0,0,0, +"@sqltools/formatter", +0,0,0,0,0,0, +"-rename", +[2,22507,36302], +[3,36303,12], +[2,36304,4070], +[3,5055,10], +[2,36306,1722], +"gulpclass", +0,0,0,0,0,0, +"@dprint/formatter", +"@esfx/canceltoken", +"@dprint/", +[2,36317,91], +0, +"azure-", +"-node-api", +[2,20999,36321], +[2,36320,36322], +"mocha-f", +"ivemat-progress-reporter", +[2,36324,36325], +0,0, +"able-stylish", +[2,26072,36329], +[2,10749,36330], +0,0,0,0,0,0,0,0,0,0, +"commandpost", +0, +"wer-assert", +[2,13415,36344], +"intel", +"li-espower-loader", +[2,36346,36347], +0,0,0,0,0, +[2,5554,13774], +[2,18792,36354], +[2,13058,36355], +[3,36356,23], +[2,36357,1993], +0, +"css-utils", +[2,8802,36360], +[2,36357,16839], +"erved-words", +[2,31525,36363], +"-sync2", +[2,3613,36365], +"sass-svg", +0,0,0,0,0, +"finally", +[2,9466,36373], +[2,4532,1732], +0, +[2,27100,4255], +0,0,0,0,0,0,0,0,0,0,0,0, +"jsmin", +0,0,0,0,0,0,0,0,0,0,0, +"random-bytes", +0,0,0,0,0,0, +[2,1024,4525], +"affix", +[2,1016,36410], +[3,36411,12], +[2,36412,9809], +"uto-link", +[2,36412,36414], +[2,36412,9826], +[3,1015,12], +0, +"ack-top", +[2,36417,36419], +[3,36420,13], +[2,36421,35696], +[2,36417,9837], +[2,1015,9847], +[2,1016,9026], +[3,36425,13], +[2,36426,9854], +[3,36427,14], +[2,36428,9860], +[2,36426,9863], +[3,36425,12], +[2,36431,5449], +[2,36431,11200], +[3,36433,13], +[2,36434,3809], +"date-input", +[2,1016,36436], +[3,36437,16], +[2,36438,3811], +[3,36437,12], +"escriptions", +[2,36440,36441], +"ivider", +[2,36440,36443], +[2,36440,9997], +[3,36445,13], +[2,36446,11206], +[2,1016,3599], +0, +"file-input", +[2,1016,36450], +[3,36451,12], +[2,36452,3469], +[2,1016,10052], +[2,1016,8691], +[3,36455,12], +[2,36456,28176], +[2,36456,35971], +[2,1016,4403], +[3,36459,13], +[2,36460,10104], +[3,36459,12], +[2,36462,3852], +[3,36463,13], +"nth-picker", +[2,36464,36465], +[2,1016,22005], +[2,1016,18367], +[3,36468,12], +"in-code", +[2,36469,36470], +"opover", +[2,36469,36472], +[3,36473,13], +"rtal", +[2,36474,36475], +[2,36469,10148], +[2,1016,35778], +[3,36478,13], +[2,36479,6864], +"search-", +[2,36481,1631], +[2,1016,36482], +[3,36483,18], +[2,36484,1633], +[3,36483,13], +[2,36486,4021], +[3,36483,12], +[2,36488,10205], +[2,36488,10209], +[2,36488,11234], +[2,36488,10222], +[2,1016,176], +[3,36493,14], +[2,36494,591], +[3,36493,13], +[2,36496,10233], +[3,36493,12], +[2,36498,11241], +0, +"ime-picker", +[2,36498,36501], +[2,36498,18390], +[2,36498,10266], +[3,36504,13], +[2,36505,10271], +0, +"-checked", +[2,36506,36508], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[3,212,12], +"fns", +[2,36524,36525], +0, +"parsel-js", +0,0,0,0,0, +"citty", +0, +"mkdist", +"untyped", +"hookable", +0,0,0,0,0, +[2,3714,20], +0,0,0,0,0,0, +[3,34068,12], +[2,36551,2408], +0,0,0,0,0, +"teo.collina/tspl", +[2,599,36558], +"dns-packet", +0,0,0,0,0,0,0, +"trough", +0, +[3,9359,10], +[2,36570,4966], +0, +"retext", +0,0,0,0, +[3,4554,13], +0, +"non-repeating", +0,0,0,0,0,0, +[3,4555,10], +"xast", +"nlcst", +0,0,0,0,0,0,0,0,0,0,0,0, +"pullstream", +0, +"match-stream", +0, +"uncompress", +0,0,0,0, +"is-npm", +"pupa", +0, +"fixture-", +[2,36614,8634], +0,0,0,0,0, +"urn", +"uri mutation", +"url mutation", +"uri m", +"anipulation", +[2,36624,36625], +"url m", +[2,36627,36625], +0, +"uri template", +0, +"url template", +" res", +" locator", +[2,5585,36634], +[2,36633,36635], +[2,4549,36636], +[3,36637,17], +[2,36638,16906], +0, +"query string", +"RFC 3986", +"RFC3986", +0,0, +"RFC 6570", +0,0, +"RFC6570", +[2,23168,1932], +"ecosystem", +":jquery", +[2,36651,36652], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"ylru", +"formstream", +0,0, +"tshy-after", +[3,9725,12], +0, +"@types/busboy", +"@eggjs/tsconfig", +"@types/sel", +"fsigned", +[2,36689,36690], +0, +"strictest", +[2,25627,36693], +0, +"urlopen", +0,0,0,0,0,0,0,0,0, +"userprofile", +0,0,0,0,0, +[2,4745,57], +0,0, +"browserscope", +"ua", +"ua-parse", +"ua-parser", +"user agent", +"user-agent", +0,0,0,0,0,0,0,0,0, +"is-typed", +"-array", +[2,36730,36731], +0, +"supported", +[2,5745,36734], +[2,17393,36735], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"rfc9562", +0,0,0,0,0,0, +"bundt", +0, +"diffs", +0,0,0,0,0,0,0,0,0, +"find-pa", +"rent-dir", +[2,36779,36780], +0,0,0, +"githook", +0,0,0,0,0,0,0,0,0,0, +"sanitisation", +0, +"sanitise", +0,0,0,0,0,0, +"@vue/shared", +"@vant/popperjs", +"@vant/", +0, +"@vant/use", +0, +[2,7047,1732], +[2,5334,36811], +"able-html", +[2,1687,36813], +[2,10952,2770], +[2,36807,7625], +[2,36807,45], +0, +"area-data", +[2,36807,36819], +"@vant/cli", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"@vercel/go", +0, +"@vercel/fun", +"@vercel/next", +[2,20461,681], +"@vercel/ruby", +"python", +[2,33763,36844], +"@vercel/r", +"edwood", +[2,36846,36847], +"hydrogen", +[2,33763,36849], +"build-utils", +[2,33763,36851], +"@vercel/st", +"atic-build", +[2,36853,36854], +"@vercel/re", +0, +"mix-builder", +[2,36856,36858], +0, +"epipebomb", +0, +"promisepipe", +"tmp-promise", +0,0, +"@sentry/node", +[3,28267,12], +[2,7738,6768], +0, +"@types/dotenv", +[2,4753,4007], +[2,33763,5576], +[2,17213,2022], +"pcre-to-regexp", +"ast-commit", +[2,33495,36876], +[2,8603,18132], +[2,8603,1631], +"@tootallnate/once", +[3,546,11], +[2,36881,5449], +"@vercel/f", +"rameworks", +[2,36883,36884], +[2,3827,594], +[2,33763,36886], +[2,5745,7253], +[2,10787,36888], +[2,20290,4007], +"s-detectors", +[2,36883,36891], +[3,20485,11], +"-json-file", +[2,36893,36894], +"outing-utils", +[2,36846,36896], +[3,29115,11], +[2,36898,3385], +[3,22092,13], +[2,36900,16830], +"@vercel", +[3,9435,9], +"s/types", +[2,36903,36904], +[2,36902,36905], +0, +"node-utils", +[2,33157,36908], +[2,11836,2656], +[2,29130,36910], +[3,11296,13], +"xpect-", +[2,36913,6458], +[2,36912,36914], +[3,36906,18], +[2,36916,14181], +"@alex_neo/jest-expect-message", +[3,29110,18], +[2,36919,36910], +[2,18522,1781], +[2,36916,36921], +0,0,0,0, +"extsprintf", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"viewer.js", +0,0,0,0,0,0, +"remove-t", +"railing-separator", +[2,36948,36949], +"teex", +0,0,0,0,0,0,0,0,0,0,0,0, +"kdirp-stream", +[2,29048,36964], +"is-valid-glob", +"lead", +[2,4026,14690], +"stream-com", +"poser", +[2,36969,36970], +"to-through", +"value-", +"or-function", +[2,36973,36974], +[3,4606,15], +0,0,0,0, +"vinyl-adapter", +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"browser-split", +"ev-store", +"x-is-array", +0, +"x-is-string", +0, +"run-browser", +0, +"vtree", +0,0,0,0,0,0,0, +"artichokie", +[2,4293,16111], +"es-module-lexer", +[3,3638,15], +"@polka/", +[2,37016,1536], +0, +"build-tool", +0,0,0,0, +"slash-path", +0,0,0, +"api-router", +"api-routers", +[3,4612,15], +"rest-api", +[2,4609,37031], +[3,9244,9], +[2,37033,995], +[3,12419,12], +[2,37035,20332], +0, +"api-rest", +"Remix", +"Next.js", +0,0,0,0, +[3,6371,11], +[2,37045,1623], +[2,9408,364], +"devtools-api", +[2,5334,37048], +"@vueuse/", +[2,37050,12339], +"focus-trap", +0, +"@mdi", +"t-vue/plugin-component", +[2,37054,37055], +[3,37056,17], +[2,37057,9339], +[2,37057,11988], +"sfc", +[2,37057,37060], +[2,37057,17913], +[3,37062,18], +"oc", +[2,37063,37064], +"@mdit-vue/", +[2,37066,6579], +[3,7641,19], +[2,37068,3111], +[2,37068,3113], +[2,13058,3667], +[3,26774,14], +"thjax3", +[2,37072,37073], +0,0,0,0,0, +"@vitest/spy", +0, +"tinyrainbow", +"@vitest/u", +[2,37083,186], +[2,17213,8791], +"@vitest/s", +[2,37086,11298], +"why-", +0, +"running", +[2,21149,37090], +[2,37088,37091], +[2,17213,3717], +0, +"birpc", +"local-pkg", +[2,33157,24079], +"@antfu/", +"install-pkg", +[2,37098,37099], +0,0,0,0,0, +"node-lo", +"calstorage", +[2,37106,37107], +0, +"gulp-xo", +0,0, +"load-plugins", +0, +"vorpal-less", +0, +"vorpal-repl", +0,0,0,0,0, +"eyes", +0, +"BDD", +0,0,0,0, +"keytar", +"parse-semver", +[2,17414,28362], +0, +"eerio", +[2,16931,37134], +[3,21625,11], +[2,37136,4565], +0, +"@types/yazl", +0,0,0,0,0,0,0,0,0, +[2,9738,6985], +"@types/ic", +"onv-lite", +[2,37150,37151], +0,0,0,0, +[2,4619,9586], +0,0,0,0, +[3,36812,13], +[2,37162,965], +0,0,0,0,0, +"-libs", +[2,1988,37169], +0,0,0,0,0,0, +[3,5736,22], +[2,37177,31692], +0,0,0,0,0,0,0,0,0, +"@int", +"lify/core-base", +[2,37188,37189], +"@intlify/", +[2,37191,6579], +0,0, +"devtools-if", +[2,37191,37195], +0,0, +"vue-devtools", +[2,37191,37199], +0, +"intlify", +0,0,0,0,0, +[3,37200,13], +0, +"i18n-loader", +[2,37208,37210], +[3,7892,11], +[2,37212,3176], +[2,32119,1698], +"cache-loader", +"markdown-l", +[2,37216,35971], +"pug-p", +"lain-loader", +[2,37218,37219], +0,0,0,0,0,0,0,0,0,0, +"ightwatch", +[2,10884,37231], +0,0, +"faked-promise", +[2,28506,6706], +0,0,0,0,0,0,0,0,0,0, +"de-indent", +0,0,0,0,0, +"todomvc-app-css", +0,0,0,0, +"foreachasync", +0, +"sys", +"walkSync", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"exec-sh", +0,0,0,0,0,0, +"outpipe", +0, +"win-spawn", +0,0,0,0,0, +"encrypte", +"d-attr", +[2,37292,37293], +[3,3052,10], +"afeinteger", +[2,37295,37296], +[2,4651,18008], +"waterline-", +[2,37299,594], +0, +"active-", +[2,37302,1355], +0,0,0,0, +"vargs", +0,0,0,0, +"bdd-with-opts", +0, +"gulp-debug", +"mu2", +[2,9466,2869], +"auncher", +[2,26127,37318], +[2,20011,37319], +"mocha-p", +"arallel", +[2,37321,37322], +[2,18199,37323], +"sv-selenium", +0,0,0,0,0, +"web3-eth", +"web3-net", +0, +"web3-core", +"web3-types", +"web3-utils", +"web3-errors", +0, +"web3-eth-abi", +"web3-eth-", +0, +"web3-eth-ens", +0, +"web3-eth-iban", +[2,4654,1155], +"rpc-methods", +[2,4654,37346], +"web3-eth-a", +"ccounts", +[2,37348,37349], +"contract", +[2,37340,37351], +0, +"personal", +[2,37340,37354], +0, +"providers-ws", +[2,4654,37357], +"web3-rpc-", +"providers", +[2,37359,37360], +[3,37358,15], +[2,37362,27], +0, +"in3", +"ganache", +"ipc", +[2,37362,37367], +[3,13936,16], +"se-web3", +[2,37369,37370], +"@tru", +"ffle/hdwallet-provider", +[2,37372,37373], +0, +"Ethereum", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"@solana/spl-token", +"@solana/", +"web3.js", +[2,37391,37392], +"kva-email-service", +0, +"ed25519-hdkey", +[2,32806,37396], +"ssl-http-with-docker", +[3,4382,9], +[2,7521,12130], +[2,37399,37400], +"telegram-a", +"ssistant", +[2,37402,37403], +"web3-r", +0, +"eact-task", +[2,37405,37407], +0, +"sol", +0,0,0,0,0,0,0,0,0,0, +"assembl", +"yjs/ast", +[2,37421,37422], +[2,10672,37423], +[3,37424,15], +"wasm-edit", +[2,37425,37426], +[3,37427,20], +[2,37428,57], +0,0, +"trace-event", +[2,35441,37432], +0, +"assembly", +[2,37435,1508], +[2,4671,1194], +[2,14743,1194], +"hash-wasm", +"wast-loader", +[2,20694,6095], +"xxhashjs", +0,0,0,0, +"@disco", +"veryjs/json-ext", +[2,37447,37448], +0, +"@carrotsearch/foamtree", +"h0r", +[2,22060,37452], +[2,37453,2809], +"lodash.p", +"artial", +[2,37455,37456], +[2,3607,34809], +0, +"zoomable", +0,0,0,0, +[3,13077,13], +[2,37465,18523], +"configtest", +[2,37465,37467], +0, +[3,4863,9], +"vinfo", +[2,37470,37471], +0,0,0,0,0,0, +"@fastify/e", +[2,37479,674], +"n-finished", +[2,15461,37481], +0,0,0,0,0,0,0, +"@types/sockjs", +[3,18584,13], +"njour", +[2,16872,37492], +"bonjour-service", +0,0,0, +[3,33768,13], +[2,37498,4017], +[2,37498,2947], +0, +"-community", +[2,17013,37502], +"-history-api-fallback", +[2,11485,37504], +0, +"klona", +[2,37490,4219], +"@types/tr", +0,0, +"usted-types", +[2,37509,37512], +0,0,0,0,0,0,0,0,0, +"reloading", +[3,4631,10], +[2,37524,3642], +0,0,0,0,0, +[2,32119,4694], +[3,33945,16], +"ellscape", +[2,37532,37533], +[3,3708,23], +0,0,0,0,0,0, +"dts-cli", +0, +"@types/flat", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"-to-buffer", +[2,7231,37567], +"yaeti", +0,0, +"networking", +"comet", +0,0,0,0, +"@silentbot1/nat-api", +"@thaunknown/simple-peer", +"torrent/http-node", +[2,10672,37580], +"addr", +0, +"-to-ip-port", +[2,37582,37584], +"bitfield", +"bittorrent-dht", +[3,37587,11], +[2,37588,20500], +"cache-c", +"hunk-store", +[2,37590,37591], +[2,33355,5509], +[2,13225,37593], +"cpus", +"create-t", +"orrent", +[2,37596,37597], +"-ponyfill", +[2,1613,37599], +"fs-c", +[2,37601,37591], +"fsa-chunk-store", +"imme", +"diate-chunk-store", +[2,37604,37605], +"-async-", +[2,37607,7253], +[2,4565,37608], +0,0, +"load-ip-set", +"lt_donthave", +"memory-c", +[2,37614,37591], +"torrent", +"parse-torrent", +"random-ite", +[2,37618,6882], +0,0,0, +"speed-limiter", +"throughput", +0,0, +"-discovery", +[2,37616,37627], +0,0, +"torrent-piece", +0, +"uint8-util", +"unordered-", +"array-remove", +[2,37634,37635], +"ut_metadata", +"ut_pex", +0, +[3,37581,12], +[2,37640,23685], +0,0, +"airtap-manual", +"airtap-s", +[2,37645,9073], +[2,37588,4839], +"chrome-net", +"-address", +[2,11996,37649], +0, +"path-esm", +"-fixtures", +[2,4702,37653], +0, +"bittorrent", +[2,37656,12332], +"mad science", +"p2p", +0,0,0, +"peer-to-peer", +0, +"peers", +"swarm", +"web torrent", +"webrtc data", +0,0,0,0,0, +"web worker", +"a gogo", +0,0,0,0,0,0,0,0,0,0,0, +"search-params", +[2,4564,37687], +0,0,0,0, +"buster", +"exorcist", +0, +"cujo", +0, +"Promises/A+", +0,0,0,0, +"isexe", +0,0,0,0, +"taffydb", +"unit.js", +0,0,0,0,0, +"@dabh/diagnostics", +"logform", +0, +"one-time", +0, +"@dabh/", +[2,37720,23816], +[2,20417,4715], +[3,18518,12], +[2,37723,1149], +"hock", +"winston-co", +[2,37726,13172], +0,0,0,0,0,0, +"tream-rotator", +[2,12416,37734], +0, +[3,24151,11], +[3,23722,14], +[2,37737,37738], +[2,6324,4059], +[2,37739,37740], +0, +"daily-rotate-file", +"log-rotate", +"logrotate", +0,0,0,0,0,0, +"winston3", +0,0,0,0,0, +"bower-config", +"propprop", +[2,4716,20], +0,0,0,0,0,0, +"carriage", +0, +"new-line", +"return", +0,0,0,0,0,0,0,0, +"workbox-", +[2,37779,6147], +0,0, +"workbox", +"workboxjs", +" worker", +[2,11100,37785], +" requests", +[2,1612,37787], +"offline", +[2,12320,3097], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"writeFile", +0,0,0,0,0,0,0,0,0, +"enstore", +0, +"-crawler", +[2,4730,37820], +0, +"x-ray-parse", +0,0, +"scrape", +0,0,0,0,0,0, +"is-function", +"parse-headers", +0,0,0,0,0,0, +"adler-32", +0, +"codepage", +"crc-32", +"ssf", +"wmf", +0, +"@she", +"etjs/uglify-js", +[2,37848,37849], +"on-epipe", +[2,7219,37851], +"fflate", +[3,5392,10], +"pellcheck", +[2,37854,37855], +0, +"xlsb", +"xlsm", +"dbf", +"dif", +"sylk", +0,0,0,0,0, +"cash-cat", +"codacy-coverage", +"globify", +"unminified-webpack-plugin", +0, +"XML", +"CDATA", +"doctype", +0,0,0, +" instruction", +[2,10809,37879], +0, +"Javascript", +[2,353,3642], +"convertor", +"converting", +0, +"conversion", +0,0,0,0,0,0,0,0,0,0,0, +"node-expat", +0,0,0,0,0,0,0,0, +"dom-js", +"xmltest", +0, +"DOMParser", +"XMLSerializer", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"func-xml", +0,0,0,0,0,0, +[2,5857,5861], +[2,69,37935], +"@unicode/unicode-14.0.0", +0, +"rray-includes", +[2,24619,37939], +[2,1226,4740], +[3,37935,17], +0, +"value-aliases", +[2,37942,37944], +0,0,0,0,0,0,0, +"whitelist", +0,0,0,0, +"@scion-scxml/test-framework", +0, +"statechart", +0,0, +"state machine", +"finite", +" stat", +"e machine", +[2,37965,37966], +[2,37964,37967], +"finite ", +"automata", +[2,37969,37970], +"scxml", +"interpreter", +0,0,0,0,0,0,0,0, +"ep-equal", +[2,35506,37982], +[2,9228,4729], +0,0, +"@types/utf8", +[2,4744,28703], +0, +"emulator", +[2,4402,37990], +0,0,0,0, +"jest-t", +"s-webcompat-resolver", +[2,37996,37997], +0,0,0,0,0,0,0,0, +"yaml2json", +"json2yaml", +0,0,0,0,0,0,0, +"test-extends", +[2,27477,38016], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[3,29775,30], +"imports-", +[2,38033,10906], +[2,38032,38034], +"death", +"repeating", +0, +"capture-har", +[2,9769,38039], +"roadrunner", +0, +"node4", +[2,26202,38043], +[3,4821,14], +"ode5", +[2,38045,38046], +[3,18229,16], +"-strict", +[2,38048,38049], +"ittens", +[2,25705,38051], +[3,1935,18], +"-vars", +[2,38053,38054], +[2,23105,7003], +[2,1152,38056], +[2,16645,38057], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"@yeoman/adapter", +"@yeoman/", +"conflicter", +[2,38074,38075], +[2,38074,23255], +[2,38074,353], +"@yeoman/t", +[2,38079,103], +0, +"fly-import", +[2,7227,30831], +"mem-fs", +0, +"mem-fs-editor", +[2,9477,10057], +[2,17412,38087], +0,0,0, +"esmocha", +"sinon-test", +0,0,0,0,0, +"github-u", +"sername", +[2,38099,38100], +0,0,0,0,0,0, +"yes", +"false", +0, +"lenient", +0,0,0,0,0, +"cli-list", +"fullname", +0,0, +"parse-help", +"root-check", +"npm-keyword", +0, +"doctor", +[2,4755,38125], +[2,25742,1871], +0,0,0, +[2,4755,6843], +0, +[2,9518,1002], +0,0,0,0,0, +"@jonahsnider/benchmark", +0,0,0,0,0,0,0,0,0,0, +[2,26936,4627], +0, +"cowsay", +"say", +0,0,0,0,0,0, +"zeromq", +"0mq", +"ømq", +"libzmq", +0,0,0,0,0,0,0,0,0,0,0,0, +[2,11477,1574], +[2,9228,4576], +0, +"@types/morgan", +"express-u", +"seragent", +[2,38180,38181], +0, +" types", +[2,7047,38184], +0,0,0,0,0,0, +"DSL", +0,0,0,0, +"@externs/nodejs", +0,0,0,0, +"JSON2", +0, +"char-split", +0,0, +"express-state", +"firefox-", +[2,38208,35677], +[2,11941,2663], +0, +"shallow-copy", +[2,4250,4833], +0, +"tap-finished", +"-localtunnel", +[2,4770,38216], +0,0,0, +"browzers", +"bulk-require", +0, +"zuul-ngrok", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"Unit Testing", +0,0,0,0,0,0,0, +"Storybook", +0,0,0,0,0,0,0,0, +"belalangkayu", +"rengginangbasi", +"tehtarik3", +0,0,0,0,0,0,0,0,0,0,0, +"sort-array", +0,0,0,0,0,0,0,0,0,0,0, +"-scroll-", +"into-view", +[2,38290,38291], +[2,23545,38292], +0, +"module-t", +"ype-aliases", +[2,38295,38296], +[2,20201,38297], +[2,964,3698], +[3,1216,14], +"o-side-effect-class-properties", +[2,38300,38301], +[3,1270,19], +[2,38303,970], +"flow-co", +[2,24524,8803], +[2,38305,38306], +0, +"get-pkg-repo", +0, +"enhanced", +" input", +[2,38311,38312], +0,0, +"autosuggest", +"typeahead", +0, +"omnibox", +"WAI-ARIA", +"multiple ", +[2,38321,17146], +0,0,0,0, +"focus", +"keyboards", +"mice", +"pseudos", +0, +"textarea", +"trackpad" +] diff --git a/packages/flatpack-json/src/Flatpack.mts b/packages/flatpack-json/src/Flatpack.mts new file mode 100644 index 000000000000..d8761b76640d --- /dev/null +++ b/packages/flatpack-json/src/Flatpack.mts @@ -0,0 +1,48 @@ +import { FlatpackedWrapper } from './flatpackUtil.mjs'; +import { FlatpackStoreV1 } from './FlatpackV1.mjs'; +import { stringifyFlatpacked } from './stringify.mjs'; +import type { FlatpackApi, Flatpacked, FlatpackOptions, Serializable, Unpacked } from './types.mjs'; +import { fromJSON } from './unpack.mjs'; + +export class FlatpackStore implements FlatpackApi { + #flatpackApi: FlatpackApi; + + constructor( + value: Serializable | FlatpackedWrapper, + readonly options?: FlatpackOptions | undefined, + ) { + this.#flatpackApi = new FlatpackStoreV1(value, options); + } + + setValue(value: Serializable): void { + this.#flatpackApi.setValue(value); + } + + toJSON(): Flatpacked { + return this.#flatpackApi.toJSON(); + } + + static fromJSON(data: Flatpacked): FlatpackStore { + return new FlatpackStore(new FlatpackedWrapper(data)); + } + + static parse(content: string): FlatpackStore { + return new FlatpackStore(FlatpackedWrapper.parse(content)); + } + + stringify(): string { + return stringifyFlatpacked(this.toJSON()); + } + + toValue(): Unpacked { + return fromJSON(this.toJSON()); + } +} + +export function toJSON(json: V, options?: FlatpackOptions): Flatpacked { + return new FlatpackStore(json, options).toJSON(); +} + +export function stringify(data: Unpacked, pretty = true): string { + return pretty ? stringifyFlatpacked(toJSON(data)) : JSON.stringify(toJSON(data)); +} diff --git a/packages/flatpack-json/src/FlatpackV1.mts b/packages/flatpack-json/src/FlatpackV1.mts index 736958c9e1d9..b1159b2865a7 100644 --- a/packages/flatpack-json/src/FlatpackV1.mts +++ b/packages/flatpack-json/src/FlatpackV1.mts @@ -22,6 +22,7 @@ import { import { stringifyFlatpacked } from './stringify.mjs'; import { Trie } from './Trie.mjs'; import type { + FlatpackApi, Flatpacked, FlatpackOptions, ObjectWrapper, @@ -31,7 +32,7 @@ import type { SimplePrimitive, Unpacked, } from './types.mjs'; -import { blockSplitRegex, dataHeader } from './types.mjs'; +import { blockSplitRegex, dataHeaderV1_0 as dataHeader } from './types.mjs'; import { fromJSON } from './unpack.mjs'; const collator = new Intl.Collator('en', { @@ -50,7 +51,7 @@ const useSuffix = true; const maxCachedStringLen = 256; -export class FlatpackStore { +export class FlatpackStoreV1 implements FlatpackApi { private knownElements = new Set(); private assignedElements = new Map(); private elements: (RefElements | undefined)[] = [undefined]; @@ -693,12 +694,12 @@ export class FlatpackStore { return data; } - static fromJSON(data: Flatpacked): FlatpackStore { - return new FlatpackStore(new FlatpackedWrapper(data)); + static fromJSON(data: Flatpacked): FlatpackStoreV1 { + return new FlatpackStoreV1(new FlatpackedWrapper(data)); } - static parse(content: string): FlatpackStore { - return new FlatpackStore(FlatpackedWrapper.parse(content)); + static parse(content: string): FlatpackStoreV1 { + return new FlatpackStoreV1(FlatpackedWrapper.parse(content)); } stringify(): string { @@ -738,7 +739,7 @@ function reverse(value: string | string[]): string[] { } export function toJSON(json: V, options?: FlatpackOptions): Flatpacked { - return new FlatpackStore(json, options).toJSON(); + return new FlatpackStoreV1(json, options).toJSON(); } export function stringify(data: Unpacked, pretty = true): string { diff --git a/packages/flatpack-json/src/FlatpackV1.test.mts b/packages/flatpack-json/src/FlatpackV1.test.mts index 49997332d3c1..8a1fe5f36a38 100644 --- a/packages/flatpack-json/src/FlatpackV1.test.mts +++ b/packages/flatpack-json/src/FlatpackV1.test.mts @@ -4,7 +4,7 @@ import { findMatchingFileTypes } from '@cspell/filetypes'; import { createPatch } from 'diff'; import { describe, expect, test } from 'vitest'; -import { FlatpackStore, stringify, toJSON } from './FlatpackV1.mjs'; +import { FlatpackStoreV1 as FlatpackStore, stringify, toJSON } from './FlatpackV1.mjs'; import { deepEqual } from './proxy.mjs'; import { stringifyFlatpacked } from './stringify.mjs'; import { fromJSON } from './unpack.mjs'; diff --git a/packages/flatpack-json/src/FlatpackV2.mts b/packages/flatpack-json/src/FlatpackV2.mts new file mode 100644 index 000000000000..1b961bf1e96d --- /dev/null +++ b/packages/flatpack-json/src/FlatpackV2.mts @@ -0,0 +1,759 @@ +import assert from 'node:assert'; + +import { FlatpackedWrapper } from './flatpackUtil.mjs'; +import { proxyDate, proxyObject, proxySet } from './proxy.mjs'; +import type { RefElements, StringRefElements } from './RefElements.mjs'; +import { + ArrayRefElement, + BigIntRefElement, + DateRefElement, + isStringRefElements, + MapRefElement, + ObjectRefElement, + ObjectWrapperRefElement, + PrimitiveRefElement, + PrimitiveRefElementBase, + RegExpRefElement, + SetRefElement, + StringConcatRefElement, + StringPrimitiveRefElement, + SubStringRefElement, +} from './RefElements.mjs'; +import { stringifyFlatpacked } from './stringify.mjs'; +import { Trie } from './Trie.mjs'; +import type { + FlatpackApi, + Flatpacked, + FlatpackOptions, + ObjectWrapper, + PrimitiveArray, + PrimitiveObject, + Serializable, + SimplePrimitive, + Unpacked, +} from './types.mjs'; +import { blockSplitRegex, dataHeaderV2_0 as dataHeader } from './types.mjs'; +import { fromJSON } from './unpack.mjs'; + +const collator = new Intl.Collator('en', { + usage: 'sort', + numeric: true, + sensitivity: 'variant', + caseFirst: 'upper', + ignorePunctuation: false, +}); +const compare = collator.compare; + +const forceStringPrimitives = false; +const minSubStringLen = 8; +const minSubStringSuffixLen = 16; +const useSuffix = true; + +const maxCachedStringLen = 256; + +export class FlatpackStoreV2 implements FlatpackApi { + private knownElements = new Set(); + private assignedElements = new Map(); + private elements: (RefElements | undefined)[] = [undefined]; + private root: RefElements | undefined = undefined; + + private dedupe = true; + private sortKeys = true; + private emptyObjIdx: ObjectRefElement | undefined = undefined; + + private ids = 0; + + /** + * Cache of primitives and objects that have been added to the data. + */ + private cache = new Map(); + /** + * Set of elements that have been referenced by other indexes. + */ + private referenced = new Set(); + /** + * Cache of arrays that have been deduped. + * The key is a hash of the array elements as a function of the index of the element. + */ + private cachedArrays = new Map(); + private cachedObjects = new Map>(); + private cachedSets = new Map(); + private cachedMaps = new Map>(); + + private cachedProxies = new WeakMap(); + + /** + * Cache of strings that have been deduped and stored in the data array. + */ + private knownStrings = new Trie(); + /** + * Cache of reversed strings that have been deduped and stored in the data array. + * This is used to find matching suffixes. + */ + private knownStringsRev = new Trie(); + + private refUndefined: PrimitiveRefElement; + + constructor( + value: Serializable | FlatpackedWrapper, + readonly options?: FlatpackOptions | undefined, + ) { + this.dedupe = options?.dedupe ?? true; + this.sortKeys = options?.sortKeys || this.dedupe; + this.refUndefined = this.addValueAndElement(undefined, new PrimitiveRefElement(undefined)); + + if (value instanceof FlatpackedWrapper) { + this.#fromWrapper(value); + } else { + this.#setValue(value); + } + } + + #fromWrapper(wrapper: FlatpackedWrapper) { + this.elements = wrapper.toRefElements(); + this.root = this.elements[1]; + for (let i = 1; i < this.elements.length; i++) { + const element = this.elements[i]; + if (!element) continue; + this.knownElements.add(element); + if (element instanceof PrimitiveRefElement) { + this.addValueAndElement(element.value, element); + } + if (isStringRefElements(element)) { + this.addStringElement(element.value, element); + } + } + this.ids = this.elements.length; + this.#resolveRefs(); + } + + setValue(value: Serializable): void { + this.#setValue(value); + } + + #setValue(value: Serializable) { + this.softReset(); + this.root = this.valueToRef(value); + this.#resolveRefs(); + return this.root; + } + + private nextId(): number { + return this.ids++; + } + + private addElement(element: T): T { + if (this.knownElements.has(element)) return element; + element.setId(this.nextId()); + this.knownElements.add(element); + return element; + } + + private addValueAndElement(value: unknown, element: T, cache = true): T { + this.addElement(element); + if (cache) { + this.cache.set(value, element); + } + return element; + } + + private primitiveToRef(value: string): StringRefElements; + private primitiveToRef(value: number): PrimitiveRefElement; + private primitiveToRef(value: null): PrimitiveRefElement; + private primitiveToRef(value: boolean): PrimitiveRefElement; + private primitiveToRef(value: bigint): BigIntRefElement; + private primitiveToRef(value: undefined): PrimitiveRefElement; + private primitiveToRef(value: number): PrimitiveRefElement; + private primitiveToRef(value: string | number): StringRefElements | PrimitiveRefElement; + private primitiveToRef(value: SimplePrimitive | bigint): RefElements; + private primitiveToRef(value: SimplePrimitive | bigint): RefElements { + if (typeof value === 'string') return this.stringToRef(value); + if (typeof value === 'bigint') return this.cvtBigintToRef(value); + + const found = this.cache.get(value); + if (found !== undefined) { + return found; + } + + return this.addValueAndElement(value, new PrimitiveRefElement(value)); + } + + private createSubStringRef(baseString: StringRefElements, value: string, offset?: number): SubStringRefElement { + const found = this.cache.get(value); + if (found !== undefined) { + return found as SubStringRefElement; + } + + return this.addStringElement(value, new SubStringRefElement(baseString, value.length, offset)); + } + + private addKnownString(ref: StringRefElements, value: string) { + if (value.length >= minSubStringLen) { + this.knownStrings.add(prefix(value, maxCachedStringLen), ref); + const rev = reverse(suffix(value, maxCachedStringLen)); + this.knownStringsRev.add(rev, ref); + } + } + + private addStringPrimitive(value: string): StringPrimitiveRefElement { + return this.addStringElement(value, new StringPrimitiveRefElement(value)); + } + + private addStringElement(value: string, element: T): T { + this.addKnownString(element, value); + return this.addValueAndElement(value, element); + } + + private stringPrefix(value: string): SubStringRefElement | undefined { + // if (value.length < maxCachedStringLen * 2) return undefined; + const trieFound = this.knownStrings.find(value); + if (!trieFound || !trieFound.data || trieFound.found.length < minSubStringLen) { + return undefined; + } + + const { data: tData, found: subStr } = trieFound; + // assert(subStr === value.slice(0, subStr.length)); + return this.createSubStringRef(tData, subStr); + } + + private stringSuffix(value: string): SubStringRefElement | undefined { + if (!useSuffix) return undefined; + const rev = reverse(value); + const trieFound = this.knownStringsRev.find(rev); + if (!trieFound || !trieFound.data || trieFound.found.length < minSubStringSuffixLen) { + return undefined; + } + + const { data: tData, found: subStr } = trieFound; + // assert(subStr === value.slice(0, subStr.length)); + return this.createSubStringRef(tData, value.slice(-subStr.length), tData.length - subStr.length); + } + + private stringToRef(value: string): StringRefElements { + const found = this.cache.get(value); + if (found !== undefined) { + return found as StringRefElements; + } + + if (forceStringPrimitives || value.length < minSubStringLen || blockSplitRegex.test(value)) { + return this.addStringPrimitive(value); + } + + const partialsPfx: StringRefElements[] = []; + const partialsSfx: StringRefElements[] = []; + let subStr = value; + while (subStr.length) { + const prefix = this.stringPrefix(subStr); + const suffix = this.stringSuffix(subStr); + if (!prefix && !suffix) break; + if (prefix && prefix.length >= (suffix?.length || 0)) { + partialsPfx.push(prefix); + subStr = subStr.slice(prefix.length); + } else { + const sfx = suffix!; + partialsSfx.push(sfx); + subStr = subStr.slice(0, -sfx.length); + } + } + partialsSfx.reverse(); + + if (!partialsPfx.length && !partialsSfx.length) { + return this.addStringPrimitive(value); + } + if (subStr.length) { + partialsPfx.push(this.stringToRef(subStr)); + } + const partials = [...partialsPfx, ...partialsSfx]; + return this.addStringElement(value, partials.length === 1 ? partials[0] : new StringConcatRefElement(partials)); + } + + private cvtSetToRef(value: Set): SetRefElement { + const found = this.cache.get(value); + if (found !== undefined) { + this.referenced.add(found); + return found as SetRefElement; + } + + const element = this.addValueAndElement(value, new SetRefElement()); + element.setValues(this.createUniqueKeys([...value])); + return this.dedupeSetRefs(value, element); + } + + private dedupeSetRefs(value: Set, element: SetRefElement): SetRefElement { + if (!this.dedupe) return element; + const values = element.valueRefs(); + const found = this.cachedSets.get(values); + if (!found) { + this.cachedSets.set(values, element); + return element; + } + if (this.referenced.has(element)) return element; + this.knownElements.delete(element); + this.cache.set(value, found); + return found; + } + + private proxySetRef(ref: SetRefElement): Set { + return proxySet(new Set(this.#toValue(ref.valueRefs()) as Serializable[]), () => {}); + } + + private createUniqueKeys(keys: Serializable[]): ArrayRefElement { + const cacheValue = false; + let k = this.arrToRef(keys, cacheValue); + const uniqueKeys = new Set(k.valueRefs()); + if (uniqueKeys.size !== keys.length) { + // one or more of the keys got deduped. We need to duplicate it. + uniqueKeys.clear(); + const values = k.valueRefs().map((ref) => { + if (uniqueKeys.has(ref)) { + return this.addElement(ref.clone()); + } + uniqueKeys.add(ref); + return ref; + }); + k = this.addValueAndElement(keys, new ArrayRefElement(values), cacheValue); + } + return k; + } + + private cvtMapToRef(value: Map): MapRefElement { + const found = this.cache.get(value); + if (found !== undefined) { + this.referenced.add(found); + return found as MapRefElement; + } + + const element = this.addValueAndElement(value, new MapRefElement()); + element.setKeysAndValues(this.createUniqueKeys([...value.keys()]), this.arrToRef([...value.values()], false)); + return this.dedupeMapRefs(value, element); + } + + private dedupeMapRefs(value: Map, element: MapRefElement): MapRefElement { + if (!this.dedupe) return element; + const keys = element.keyRefs(); + const values = element.valueRefs(); + let found = this.cachedMaps.get(keys); + if (!found) { + found = new Map(); + found.set(values, element); + this.cachedMaps.set(keys, found); + return element; + } + const foundValue = found.get(values); + if (foundValue) { + if (this.referenced.has(element)) return element; + this.knownElements.delete(element); + this.cache.set(value, foundValue); + return foundValue; + } + found.set(values, element); + return element; + } + + private proxyMapRef(_ref: MapRefElement): Map { + return new Map(); + } + + private cvtRegExpToRef(value: RegExp): RegExpRefElement { + const found = this.cache.get(value); + if (found !== undefined) { + return found as RegExpRefElement; + } + + return this.addValueAndElement( + value, + new RegExpRefElement(this.stringToRef(value.source), this.stringToRef(value.flags)), + ); + } + + private cvtDateToRef(value: Date): DateRefElement { + const found = this.cache.get(value); + if (found !== undefined) { + return found as DateRefElement; + } + + return this.addValueAndElement(value, new DateRefElement(value.getTime())); + } + + private proxyDateRef(ref: DateRefElement): Date { + return proxyDate(ref.value, (date) => ref.setTime(date.getTime())); + } + + private cvtBigintToRef(value: bigint): BigIntRefElement { + const found = this.cache.get(value); + if (found !== undefined) { + return found as BigIntRefElement; + } + + const valElement = this.primitiveToRef( + value <= Number.MAX_SAFE_INTEGER && value >= -Number.MAX_SAFE_INTEGER ? Number(value) : value.toString(), + ); + return this.addValueAndElement(value, new BigIntRefElement(valElement)); + } + + private cvtObjToRef(value: PrimitiveObject | ObjectWrapper): ObjectRefElement | ObjectWrapperRefElement { + const found = this.cache.get(value); + if (found !== undefined) { + this.referenced.add(found); + return found as ObjectRefElement; + } + + if (isObjectWrapper(value)) { + const element = this.addValueAndElement(value, new ObjectWrapperRefElement()); + element.setValue(this.valueToRef(value.valueOf())); + return element; + } + + const entries = Object.entries(value); + + if (!entries.length) { + if (this.emptyObjIdx) { + return this.emptyObjIdx; + } + this.emptyObjIdx = this.addValueAndElement(value, new ObjectRefElement()); + return this.emptyObjIdx; + } + + if (this.sortKeys) { + entries.sort((a, b) => compare(a[0], b[0])); + } + const element = this.addValueAndElement(value, new ObjectRefElement()); + const k = this.arrToRef( + entries.map(([key]) => key), + false, + ); + const v = this.arrToRef( + entries.map(([, value]) => value), + false, + ); + + element.setKeysAndValues(k, v); + return this.dedupeObject(value, element); + } + + private dedupeObject(value: PrimitiveObject | ObjectWrapper, element: ObjectRefElement): ObjectRefElement { + if (!this.dedupe) return element; + const keys = element.keyRefs(); + const values = element.valueRefs(); + let found = this.cachedObjects.get(keys); + if (!found) { + found = new Map(); + found.set(values, element); + this.cachedObjects.set(keys, found); + return element; + } + const foundValue = found.get(values); + if (foundValue) { + if (this.referenced.has(element)) return element; + this.knownElements.delete(element); + this.cache.set(value, foundValue); + return foundValue; + } + found.set(values, element); + return element; + } + + private proxyObjectRef(ref: ObjectRefElement): PrimitiveObject { + const keys = this.#toValue(ref.keyRefs()) as string[] | undefined; + const values = this.#toValue(ref.valueRefs()) as Serializable[] | undefined; + const obj = keys && values ? Object.fromEntries(keys.map((key, i) => [key, values[i]])) : {}; + return proxyObject(obj, (_value) => {}); + } + + private proxyObjectWrapperRef(ref: ObjectWrapperRefElement): PrimitiveObject { + const value = Object(this.#toValue(ref.valueRef())) as PrimitiveObject; + return proxyObject(value, (_value) => {}); + } + + /** + * + * @param value - The array converted to an ArrayRefElement. + * @param element - the element to dedupe. + * @param cacheValue - Whether to cache the value. It is false when it is a dynamic array, like object keys, + * in that case, we want to dedupe the keys and values. + * @returns the element to use. + */ + private dedupeArray(value: PrimitiveArray, element: ArrayRefElement, cacheValue: boolean): ArrayRefElement { + if (cacheValue && !this.dedupe) return element; + const indexHash = element.hash; + let cached = this.cachedArrays.get(indexHash); + if (!cached) { + cached = []; + this.cachedArrays.set(indexHash, cached); + } + const found = cached.find((entry) => element.isEqual(entry)); + if (found) { + if (this.referenced.has(element)) return element; + this.knownElements.delete(element); + if (cacheValue || this.cache.has(value)) { + this.cache.set(value, found); + } + return found; + } + cached.push(element); + return element; + } + + /** + * Convert an array to an index. + * @param value - The array to convert to an index. + * @param cacheValue - Whether to cache the value. + * @returns the index of the array. + */ + private arrToRef(value: PrimitiveArray, cacheValue = true): ArrayRefElement { + const found = this.cache.get(value); + if (found !== undefined) { + this.referenced.add(found); + return found as ArrayRefElement; + } + + const element = this.addValueAndElement(value, new ArrayRefElement(), cacheValue); + element.setValues(value.map((v) => this.valueToRef(v))); + return this.dedupeArray(value, element, cacheValue); + } + + private proxyArrayRef(ref: ArrayRefElement): PrimitiveArray { + const arr = ref.valueRefs().map((v) => this.#toValue(v)); + return proxyObject(arr, (_value) => {}); + } + + private valueToRef(value: Serializable): RefElements { + if (value === null) { + return this.primitiveToRef(value); + } + + if (typeof value === 'object') { + if (value instanceof Set) { + return this.cvtSetToRef(value); + } + if (value instanceof Map) { + return this.cvtMapToRef(value); + } + if (value instanceof RegExp) { + return this.cvtRegExpToRef(value); + } + if (Array.isArray(value)) { + return this.arrToRef(value); + } + if (value instanceof Date) { + return this.cvtDateToRef(value); + } + return this.cvtObjToRef(value as PrimitiveObject); + } + + return this.primitiveToRef(value); + } + + /** + * Reset things in a way that allows for reuse. + */ + private softReset(): void { + this.referenced.clear(); + if (this.root) { + const idx = this.assignedElements.get(this.root); + if (idx) { + this.elements[idx] = undefined; + this.assignedElements.delete(this.root); + } + } + this.root = undefined; + } + + #resolveRefs() { + if (!this.root) return; + + const elements = this.elements; + const assigned = this.assignedElements; + const referenced = this.referenced; + const availableIndexes: number[] = []; + + function addElement(ref: RefElements) { + if (assigned.has(ref)) return false; + const emptyCell = availableIndexes.pop(); + if (emptyCell) { + assigned.set(ref, emptyCell); + elements[emptyCell] = ref; + return true; + } + const i = elements.push(ref) - 1; + assigned.set(ref, i); + return true; + } + + function walk(ref: RefElements, action: (ref: RefElements) => boolean): void { + function _walk(ref: RefElements): void { + if (!action(ref)) return; + const deps = ref.getDependencies(); + if (!deps) return; + for (const dep of deps) { + _walk(dep); + } + } + + _walk(ref); + } + + function calcReferences(root: RefElements) { + referenced.clear(); + walk(root, (ref) => { + if (referenced.has(ref)) return false; + referenced.add(ref); + return true; + }); + } + + function calcAvailableIndexes() { + availableIndexes.length = 0; + for (let i = 1; i < elements.length; i++) { + const ref = elements[i]; + if (!ref || !referenced.has(ref)) { + availableIndexes.push(i); + if (ref) { + assigned.delete(ref); + } + elements[i] = undefined; + } else { + assigned.set(ref, i); + } + } + availableIndexes.reverse(); + } + + function addElements(root: RefElements) { + walk(root, addElement); + + let i = elements.length - 1; + for (; i > 0 && elements[i] === undefined; i--) { + // empty + } + elements.length = i + 1; + } + + calcReferences(this.root); + elements[0] = this.refUndefined; + assigned.set(this.refUndefined, 0); + calcAvailableIndexes(); + addElements(this.root); + this.#cleanCache(); + } + + /** + * Remove objects from the cache after the FlatpackStore has been built. + */ + #cleanCache() { + const toRemove = new Set(); + + for (const key of this.cache.keys()) { + if (key && typeof key === 'object') { + toRemove.add(key); + } + } + + for (const key of toRemove) { + this.cache.delete(key); + } + } + + #resolveToValueProxy(ref: RefElements | undefined): Unpacked { + if (!ref) return undefined; + if (ref instanceof ArrayRefElement) return this.proxyArrayRef(ref); + if (ref instanceof ObjectRefElement) return this.proxyObjectRef(ref); + if (ref instanceof PrimitiveRefElementBase) return ref.value; + if (isStringRefElements(ref)) return ref.value; + if (ref instanceof MapRefElement) return this.proxyMapRef(ref); + if (ref instanceof SetRefElement) return this.proxySetRef(ref); + if (ref instanceof BigIntRefElement) return ref.value; + if (ref instanceof RegExpRefElement) return ref.value; + if (ref instanceof DateRefElement) return this.proxyDateRef(ref); + if (ref instanceof ObjectWrapperRefElement) return this.proxyObjectWrapperRef(ref); + assert(false, 'Unknown ref type'); + } + + #toValue(ref: RefElements | undefined): Unpacked { + if (!ref) return undefined; + return getOrResolve(this.cachedProxies, ref, (ref) => this.#resolveToValueProxy(ref)); + } + + toJSON(): Flatpacked { + const data = [dataHeader] as Flatpacked; + const idxLookup = this.assignedElements; + const lookup = (ref: RefElements | undefined) => (ref && idxLookup.get(ref)) || 0; + + const elements = this.elements; + for (let i = 1; i < elements.length; i++) { + const element = elements[i]; + if (!element) { + data.push(0); + continue; + } + const value = element.toElement(lookup); + if (value === undefined) continue; + data.push(value); + } + + return data; + } + + static fromJSON(data: Flatpacked): FlatpackStoreV2 { + return new FlatpackStoreV2(new FlatpackedWrapper(data)); + } + + static parse(content: string): FlatpackStoreV2 { + return new FlatpackStoreV2(FlatpackedWrapper.parse(content)); + } + + stringify(): string { + return stringifyFlatpacked(this.toJSON()); + } + + toValue(): Unpacked { + return fromJSON(this.toJSON()); + } + + _toValueProxy(): Unpacked { + return this.#toValue(this.root); + } +} + +type TrieData = StringRefElements; + +function isObjectWrapper(value: unknown): value is ObjectWrapper { + return ( + typeof value === 'object' && + value !== null && + typeof (value as ObjectWrapper).valueOf === 'function' && + value.valueOf() !== value + ); +} + +function prefix(value: string, len: number): string | string[] { + return value.length > len ? [...value].slice(0, len) : value; +} + +function suffix(value: string, len: number): string | string[] { + return value.length > len ? [...value].slice(-len) : value; +} + +function reverse(value: string | string[]): string[] { + return [...value].reverse(); +} + +export function toJSON(json: V, options?: FlatpackOptions): Flatpacked { + return new FlatpackStoreV2(json, options).toJSON(); +} + +export function stringify(data: Unpacked, pretty = true): string { + return pretty ? stringifyFlatpacked(toJSON(data)) : JSON.stringify(toJSON(data)); +} + +type WeakOrNever = K extends WeakKey ? WeakMap : never; +type SupportedMap = Map | WeakOrNever; + +function getOrResolve(map: SupportedMap, key: K, resolver: (key: K) => V): V { + let value = map.get(key); + if (value === undefined && !map.has(key)) { + value = resolver(key); + map.set(key, value); + } + return value as V; +} diff --git a/packages/flatpack-json/src/FlatpackV2.test.mts b/packages/flatpack-json/src/FlatpackV2.test.mts new file mode 100644 index 000000000000..af34b3da3258 --- /dev/null +++ b/packages/flatpack-json/src/FlatpackV2.test.mts @@ -0,0 +1,300 @@ +import { readFile } from 'node:fs/promises'; + +import { findMatchingFileTypes } from '@cspell/filetypes'; +import { createPatch } from 'diff'; +import { describe, expect, test } from 'vitest'; + +import { FlatpackStoreV2 as FlatpackStore, stringify, toJSON } from './FlatpackV2.mjs'; +import { deepEqual } from './proxy.mjs'; +import { stringifyFlatpacked } from './stringify.mjs'; +import { fromJSON } from './unpack.mjs'; + +const urlFileList = new URL('../fixtures/fileList.txt', import.meta.url); +const baseFilename = new URL(import.meta.url).pathname.split('/').slice(-1).join('').split('.').slice(0, -2).join('.'); + +describe('Flatpack', async () => { + const sampleFiles = await sampleFileList(); + + test.each` + data + ${undefined} + ${'string'} + ${1} + ${1.1} + ${null} + ${true} + ${false} + ${[]} + ${[1, 2]} + ${['a', 'b', 'a', 'b']} + ${{}} + ${{ a: 1 }} + ${{ a: { b: 1 } }} + ${{ a: { a: 'a', b: 42 } }} + ${{ a: [1] }} + `('dehydrate/hydrate $data', ({ data }) => { + const v = toJSON(data); + expect(fromJSON(v)).toEqual(data); + }); + + const biMaxSafe = BigInt(Number.MAX_SAFE_INTEGER); + + test.each` + data | options + ${undefined} | ${undefined} + ${'string'} | ${undefined} + ${1} | ${undefined} + ${1.1} | ${undefined} + ${null} | ${undefined} + ${true} | ${undefined} + ${false} | ${undefined} + ${[]} | ${undefined} + ${[1, 2]} | ${undefined} + ${['apple', 'banana', 'apple', 'banana', 'apple', 'pineapple']} | ${undefined} + ${['apple pie', 'apple', 'banana', 'apple-banana']} | ${undefined} + ${new Set(['apple', 'banana', 'pineapple'])} | ${undefined} + ${new Set(['pineapple', 'apple', 'banana'])} | ${undefined} + ${[new Set(['a', 'b', 'c']), new Set(['a', 'b', 'c']), new Set(['a', 'b', 'c'])]} | ${undefined} + ${new Map([['apple', 1], ['banana', 2], ['pineapple', 3]])} | ${undefined} + ${[new Map([['a', 1], ['b', 2], ['p', 3]]), new Map([['a', 1], ['b', 2], ['p', 3]])]} | ${undefined} + ${{}} | ${undefined} + ${[{}, {}, {}]} | ${undefined} + ${{ a: 1 }} | ${undefined} + ${{ a: { b: 1 } }} | ${undefined} + ${{ a: { a: 'a', b: 42 } }} | ${undefined} + ${{ a: [1] }} | ${undefined} + ${{ values: ['apple', 'banana', 'pineapple'], set: new Set(['apple', 'banana', 'pineapple']) }} | ${undefined} + ${[{ a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b', a: 'a' }, ['a', 'b'], ['c', 'd']]} | ${undefined} + ${[{ a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }]} | ${{ dedupe: false }} + ${sampleNestedData()} | ${undefined} + ${sampleRepeatedStrings()} | ${undefined} + ${/[\p{L}\p{M}]+/gu} | ${undefined} + ${[/[\p{L}\p{M}]+/gu, /[\p{L}\p{M}]+/gu, /[\p{Lu}\p{M}]+/gu]} | ${undefined} + ${[new Date('2024-01-01'), new Date('2024-01-01'), new Date('2024-01-02')]} | ${undefined} + ${[1n, 2n, 1n, 2n, biMaxSafe, -biMaxSafe, biMaxSafe + 1n, -biMaxSafe - 1n]} | ${undefined} + ${[Object(1n), Object('hello'), Object(/\w+/g), Object(null), Object([]), Object('hello')]} | ${undefined} + `('dehydrate $data $options', ({ data, options }) => { + const v = toJSON(data, { dedupe: options?.dedupe }); + expect(v).toMatchSnapshot(); + expect(fromJSON(v)).toEqual(data); + expect(fromJSON(JSON.parse(JSON.stringify(v)))).toEqual(data); + expect(fromJSON(JSON.parse(stringify(data)))).toEqual(data); + expect(fromJSON(JSON.parse(stringify(data, false)))).toEqual(data); + + // Make sure we can rebuild from the Flattened data. + const fp = FlatpackStore.fromJSON(v); + expect(fromJSON(fp.toJSON())).toEqual(data); + }); + + test.each` + data + ${undefined} + ${'string'} + ${1} + ${1.1} + ${null} + ${true} + ${false} + ${[]} + ${[1, 2]} + ${['a', 'b', 'a', 'b']} + ${{}} + ${{ a: 1 }} + ${{ a: { b: 1 } }} + ${{ a: { a: 'a', b: 42 } }} + ${{ a: [1] }} + `('toJSON/fromJSON $data', ({ data }) => { + const v = toJSON(data); + expect(fromJSON(v)).toEqual(data); + const fp = FlatpackStore.fromJSON(v); + expect(fp.toJSON()).toEqual(v); + expect(fp.toValue()).toEqual(data); + }); + + test.each` + name | data | options + ${'fileList'} | ${sampleFiles} | ${undefined} + ${'fileObjects'} | ${await sampleFileListObjects()} | ${undefined} + `('dehydrate $data $options', async ({ name, data, options }) => { + const v = toJSON(data, { dedupe: options?.dedupe }); + await expect(stringifyFlatpacked(v)).toMatchFileSnapshot(`__snapshots__/${baseFilename}_${name}.jsonc`); + await expect(JSON.stringify(v) + '\n').toMatchFileSnapshot(`__snapshots__/${baseFilename}_${name}.json`); + await expect(JSON.stringify(data) + '\n').toMatchFileSnapshot( + `__snapshots__/${baseFilename}_${name}.data.json`, + ); + expect(fromJSON(v)).toEqual(data); + }); + + test("make sure dedupe doesn't break Sets", () => { + const data = sampleNestedData(); + const value = { ...data, s: new Set(data.n) }; + + const v = toJSON(value, { dedupe: true }); + const hv = fromJSON(v) as typeof value; + expect(hv.s).toEqual(value.s); + expect(hv.n).toEqual(value.n); + }); + + test("make sure dedupe doesn't break Maps", () => { + const data = sampleNestedData(); + const value = { ...data, m: new Map(data.n.map((a) => [a, a])) }; + + const v = toJSON(value, { dedupe: true }); + const hv = fromJSON(v) as typeof value; + expect(hv.m).toEqual(value.m); + expect(hv.n).toEqual(value.n); + }); + + const shortSampleFiles = sampleFiles.slice(0, 20); + + test.each` + data | updated + ${undefined} | ${undefined} + ${'string'} | ${'string'} + ${'string'} | ${'string + more'} + ${['a', 'b', 'a', 'b']} | ${['a', 'b', 'a', 'b', 'c']} + ${['a', 'b', 'a', 'b', 'c']} | ${['a']} + ${{}} | ${{ a: 'a' }} + ${{ a: 1 }} | ${{ a: 1, b: 1 }} + ${{ a: { b: 1 } }} | ${{ a: { b: 1 }, b: { a: 1 } }} + ${{ a: { a: 'a', b: 42 } }} | ${{ a: { a: 'a', b: 42 }, b: 42 }} + ${{ a: [1] }} | ${{ a: [1, 2, 3] }} + ${shortSampleFiles} | ${[...shortSampleFiles.slice(0, 10), ...shortSampleFiles.slice(15)]} + ${shortSampleFiles} | ${[...shortSampleFiles.slice(0, 10), ...shortSampleFiles.slice(15), ...shortSampleFiles.slice(10, 15)]} + `('Flatpack diff $data, $updated', ({ data, updated }) => { + const fp = new FlatpackStore(data); + const v = fp.toJSON(); + const s0 = fp.stringify(); + fp.setValue(updated); + expect(fromJSON(fp.toJSON())).toEqual(updated); + const s1 = fp.stringify(); + const diff = createPatch('data', s0, s1); + expect(diff).toMatchSnapshot(); + + const fp2 = FlatpackStore.fromJSON(v); + expect(fp2.toJSON()).toEqual(v); + fp2.setValue(updated); + expect(fromJSON(fp.toJSON())).toEqual(updated); + const s2 = fp.stringify(); + expect(s2).toEqual(s1); + }); + + test('Updating the object used.', () => { + const data: Record & { d: number[] } = { a: 1, b: 2, d: [1, 2, 3] }; + const fp = new FlatpackStore(data); + const v = fp.toJSON(); + expect(fromJSON(v)).toEqual(data); + data.c = 3; + data.d.push(4); + fp.setValue(data); + expect(fromJSON(fp.toJSON())).toEqual(data); + expect(fp.toJSON()).not.toEqual(v); + }); + + test.each` + data + ${undefined} + ${'string'} + ${1} + ${1.1} + ${null} + ${true} + ${false} + ${new Date()} + ${/[a-z]+/} + `('toValue $data', ({ data }) => { + const fp = new FlatpackStore(data); + expect(fp.toValue()).toEqual(data); + expect(fp._toValueProxy()).toEqual(data); + }); +}); + +async function sampleFileList() { + const data = await readFile(urlFileList, 'utf8'); + const files = data.split('\n'); + return files; +} + +async function sampleFileListObjects() { + const list = await sampleFileList(); + return list.map((filename) => ({ filename, fileType: getFileType(filename) })); +} + +function getFileType(filename: string) { + const baseName = filename.split('/').slice(-1).join(''); + return findMatchingFileTypes(baseName); +} + +function sampleRepeatedStrings() { + const fruit = ['apple', 'banana', 'apple', 'banana', 'apple', 'pineapple']; + const sentence = 'There is a bit of fruit on the table. Some banana, apple, and pineapple.'; + const joinFruit = fruit.join('-'); + return { + fruit, + joinFruit, + sentence, + }; +} + +function sampleNestedData() { + const a = { a: 'a', b: 'b' }; + const b = { a: 'c', b: 'd' }; + const r = /[\p{L}\p{M}]+/gu; + const n = [a, b, { b: 'b', a: 'a' }, ['a', 'b'], ['c', 'd'], r, { r, rr: new RegExp(r) }]; + const s = new Set(n); + const m = new Map([ + ['a', 'a'], + ['b', 'b'], + ]); + + const values = ['apple', 'banana', 'pineapple']; + const rValues = [...values].reverse(); + const cValues = [...values]; + + return { + a, + b, + n, + nn: n, + nnn: [...n], + s, + r, + m, + ss: s, + mm: m, + values, + rValues, + cValues, + }; +} + +describe('Flatpack value proxy', () => { + test.each` + value + ${undefined} + ${'string'} + ${1} + ${1.1} + ${null} + ${true} + ${false} + ${[]} + ${[1, 2]} + ${['a', 'b', 'a', 'b']} + ${{}} + ${{ a: 1 }} + ${{ a: { b: 1 } }} + ${{ a: { a: 'a', b: 42 } }} + ${{ a: [1] }} + ${new Set(['apple', 'banana', 'pineapple'])} + ${new Map([['apple', 1], ['banana', 2], ['pineapple', 3]])} + ${/[\p{L}\p{M}]+/gu} + ${new Date('2024-01-01')} + `('identity $value', ({ value }) => { + const fp = new FlatpackStore(value); + const proxy = fp._toValueProxy(); + expect(deepEqual(proxy, value)).toBe(true); + !(proxy instanceof Map || proxy instanceof Set) && expect(proxy).toEqual(value); + expect(fp._toValueProxy()).toBe(proxy); + }); +}); diff --git a/packages/flatpack-json/src/__snapshots__/FlatpackV2.test.mts.snap b/packages/flatpack-json/src/__snapshots__/FlatpackV2.test.mts.snap new file mode 100644 index 000000000000..b86da79a8e95 --- /dev/null +++ b/packages/flatpack-json/src/__snapshots__/FlatpackV2.test.mts.snap @@ -0,0 +1,1082 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`Flatpack > Flatpack diff 'string', 'string + more' 1`] = ` +"Index: data +=================================================================== +--- data ++++ data +@@ -1,4 +1,4 @@ + [ + "Flatpack JSON v2", +-"string" ++"string + more" + ] +" +`; + +exports[`Flatpack > Flatpack diff 'string', 'string' 1`] = ` +"Index: data +=================================================================== +--- data ++++ data +" +`; + +exports[`Flatpack > Flatpack diff [ 'a', 'b', 'a', 'b' ], [ 'a', 'b', 'a', 'b', 'c' ] 1`] = ` +"Index: data +=================================================================== +--- data ++++ data +@@ -1,6 +1,7 @@ + [ + "Flatpack JSON v2", +-[0,2,3,2,3], ++[0,2,3,2,3,4], + "a", +-"b" ++"b", ++"c" + ] +" +`; + +exports[`Flatpack > Flatpack diff [ 'a', 'b', 'a', 'b', 'c' ], [ 'a' ] 1`] = ` +"Index: data +=================================================================== +--- data ++++ data +@@ -1,7 +1,5 @@ + [ + "Flatpack JSON v2", +-[0,2,3,2,3,4], +-"a", +-"b", +-"c" ++[0,2], ++"a" + ] +" +`; + +exports[`Flatpack > Flatpack diff [ 'api/api.d.ts', 'dist/esm/Cache/cspell.cache.d.ts', …(18) ], [ 'api/api.d.ts', 'dist/esm/Cache/cspell.cache.d.ts', …(13) ] 1`] = ` +"Index: data +=================================================================== +--- data ++++ data +@@ -1,7 +1,7 @@ + [ + "Flatpack JSON v2", +-[0,2,3,4,7,10,12,15,17,20,22,24,26,28,31,33,35,37,39,42,44], ++[0,2,3,4,7,10,12,15,17,20,22,35,37,39,42,44], + "api/api.d.ts", + "dist/esm/Cache/cspell.cache.d.ts", + [2,5,6], + [3,3,28], +@@ -22,17 +22,9 @@ + [2,21,6], + [3,17,30], + [2,16,23], + "normalizeLanguageIds.d.ts", +-[2,16,25], +-"resolveDocument.d.ts", +-[2,13,27], +-"FeatureFlags/FeatureFalgs.test.d.ts", +-[2,29,30], +-[3,26,30], +-"lags.d.ts", +-[2,32,9], +-[3,26,22], ++0,0,0,0,0,0,0,0,0, + [2,13,34], + [3,23,16,9], + [2,36,6], + [3,33,21], +" +`; + +exports[`Flatpack > Flatpack diff [ 'api/api.d.ts', 'dist/esm/Cache/cspell.cache.d.ts', …(18) ], [ 'api/api.d.ts', 'dist/esm/Cache/cspell.cache.d.ts', …(18) ] 1`] = ` +"Index: data +=================================================================== +--- data ++++ data +@@ -1,7 +1,7 @@ + [ + "Flatpack JSON v2", +-[0,2,3,4,7,10,12,15,17,20,22,24,26,28,31,33,35,37,39,42,44], ++[0,2,3,4,7,10,12,15,17,20,22,35,37,39,42,44,24,26,28,31,33], + "api/api.d.ts", + "dist/esm/Cache/cspell.cache.d.ts", + [2,5,6], + [3,3,28], +" +`; + +exports[`Flatpack > Flatpack diff { a: [ 1 ] }, { a: [ 1, 2, 3 ] } 1`] = ` +"Index: data +=================================================================== +--- data ++++ data +@@ -3,7 +3,9 @@ + [1,2,4], + [0,3], + "a", + [0,5], +-[0,6], +-1 ++[0,6,7,8], ++1, ++2, ++3 + ] +" +`; + +exports[`Flatpack > Flatpack diff { a: { a: 'a', b: 42 } }, { a: { a: 'a', b: 42 }, b: 42 } 1`] = ` +"Index: data +=================================================================== +--- data ++++ data +@@ -1,10 +1,10 @@ + [ + "Flatpack JSON v2", +-[1,2,4], +-[0,3], ++[1,6,2], ++[0,5,9], + "a", +-[0,5], ++0, + [1,6,8], + [0,3,7], + "b", + [0,3,9], +" +`; + +exports[`Flatpack > Flatpack diff { a: { b: 1 } }, { a: { b: 1 }, b: { a: 1 } } 1`] = ` +"Index: data +=================================================================== +--- data ++++ data +@@ -1,12 +1,14 @@ + [ + "Flatpack JSON v2", +-[1,2,4], ++[1,4,10], + [0,3], + "a", +-[0,5], ++[0,3,7], + [1,6,8], + [0,7], + "b", + [0,9], +-1 ++1, ++[0,5,11], ++[1,2,8] + ] +" +`; + +exports[`Flatpack > Flatpack diff { a: 1 }, { a: 1, b: 1 } 1`] = ` +"Index: data +=================================================================== +--- data ++++ data +@@ -1,8 +1,9 @@ + [ + "Flatpack JSON v2", +-[1,2,4], +-[0,3], ++[1,2,6], ++[0,3,4], + "a", +-[0,5], +-1 ++"b", ++1, ++[0,5,5] + ] +" +`; + +exports[`Flatpack > Flatpack diff {}, { a: 'a' } 1`] = ` +"Index: data +=================================================================== +--- data ++++ data +@@ -1,4 +1,6 @@ + [ + "Flatpack JSON v2", +-[1,0,0] ++[1,2,2], ++[0,3], ++"a" + ] +" +`; + +exports[`Flatpack > Flatpack diff undefined, undefined 1`] = ` +"Index: data +=================================================================== +--- data ++++ data +" +`; + +exports[`Flatpack > dehydrate 'string' undefined 1`] = ` +[ + "Flatpack JSON v2", + "string", +] +`; + +exports[`Flatpack > dehydrate /[\\p{L}\\p{M}]+/gu undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 6, + 2, + 3, + ], + "[\\p{L}\\p{M}]+", + "gu", +] +`; + +exports[`Flatpack > dehydrate [ 'apple pie', 'apple', 'banana', 'apple-banana' ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 0, + 2, + 3, + 4, + 5, + ], + "apple pie", + "apple", + "banana", + "apple-banana", +] +`; + +exports[`Flatpack > dehydrate [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 0, + 2, + 3, + 2, + 3, + 2, + 4, + ], + "apple", + "banana", + "pineapple", +] +`; + +exports[`Flatpack > dehydrate [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p{M}]+/gu, /[\\p{Lu}\\p{M}]+/gu ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 0, + 2, + 5, + 6, + ], + [ + 6, + 3, + 4, + ], + "[\\p{L}\\p{M}]+", + "gu", + [ + 6, + 3, + 4, + ], + [ + 6, + 7, + 4, + ], + "[\\p{Lu}\\p{M}]+", +] +`; + +exports[`Flatpack > dehydrate [ { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, …(1) ] { dedupe: false } 1`] = ` +[ + "Flatpack JSON v2", + [ + 0, + 2, + 6, + 7, + 8, + ], + [ + 1, + 3, + 3, + ], + [ + 0, + 4, + 5, + ], + "a", + "b", + [ + 1, + 3, + 3, + ], + [ + 1, + 3, + 3, + ], + [ + 1, + 3, + 3, + ], +] +`; + +exports[`Flatpack > dehydrate [ { a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b', a: 'a' }, …(2) ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 0, + 2, + 6, + 2, + 3, + 7, + ], + [ + 1, + 3, + 3, + ], + [ + 0, + 4, + 5, + ], + "a", + "b", + [ + 1, + 3, + 7, + ], + [ + 0, + 8, + 9, + ], + "c", + "d", +] +`; + +exports[`Flatpack > dehydrate [ {}, {}, {} ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 0, + 2, + 2, + 2, + ], + [ + 1, + 0, + 0, + ], +] +`; + +exports[`Flatpack > dehydrate [ 1, 2 ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 0, + 2, + 3, + ], + 1, + 2, +] +`; + +exports[`Flatpack > dehydrate [ 1n, 'hello', /\\w+/g, {}, [], 'hello' ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 0, + 2, + 5, + 7, + 10, + 11, + 12, + ], + [ + 1, + 0, + 3, + ], + [ + 8, + 4, + ], + 1, + [ + 1, + 0, + 6, + ], + "hello", + [ + 6, + 8, + 9, + ], + "\\w+", + "g", + [ + 1, + 0, + 0, + ], + [ + 0, + ], + [ + 1, + 0, + 6, + ], +] +`; + +exports[`Flatpack > dehydrate [ 1n, 2n, 1n, 2n, 9007199254740991n, -9007199254740991n, …(2) ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 0, + 2, + 4, + 2, + 4, + 6, + 8, + 10, + 12, + ], + [ + 8, + 3, + ], + 1, + [ + 8, + 5, + ], + 2, + [ + 8, + 7, + ], + 9007199254740991, + [ + 8, + 9, + ], + -9007199254740991, + [ + 8, + 11, + ], + "9007199254740992", + [ + 8, + 13, + ], + [ + 2, + 14, + 11, + ], + "-", +] +`; + +exports[`Flatpack > dehydrate [ Array(3) ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 0, + 2, + 3, + 4, + ], + [ + 7, + 1704067200000, + ], + [ + 7, + 1704067200000, + ], + [ + 7, + 1704153600000, + ], +] +`; + +exports[`Flatpack > dehydrate [ Map{ 'a' => 1, 'b' => 2, 'p' => 3 }, Map{ 'a' => 1, 'b' => 2, 'p' => 3 } ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 0, + 2, + 2, + ], + [ + 5, + 3, + 7, + ], + [ + 0, + 4, + 5, + 6, + ], + "a", + "b", + "p", + [ + 0, + 8, + 9, + 10, + ], + 1, + 2, + 3, +] +`; + +exports[`Flatpack > dehydrate [ Set{ 'a', 'b', 'c' }, Set{ 'a', 'b', 'c' }, Set{ 'a', 'b', 'c' } ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 0, + 2, + 2, + 2, + ], + [ + 4, + 3, + ], + [ + 0, + 4, + 5, + 6, + ], + "a", + "b", + "c", +] +`; + +exports[`Flatpack > dehydrate [] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 0, + ], +] +`; + +exports[`Flatpack > dehydrate { a: [ 1 ] } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 1, + 2, + 4, + ], + [ + 0, + 3, + ], + "a", + [ + 0, + 5, + ], + [ + 0, + 6, + ], + 1, +] +`; + +exports[`Flatpack > dehydrate { a: { a: 'a', b: 'b' }, b: { a: 'c', b: 'd' }, …(11) } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 1, + 2, + 16, + ], + [ + 0, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + ], + "a", + "b", + "cValues", + "m", + "mm", + "n", + "nn", + "nnn", + "r", + "rValues", + "s", + "ss", + "values", + [ + 0, + 17, + 19, + 23, + 27, + 27, + 28, + 28, + 28, + 29, + 37, + 38, + 38, + 23, + ], + [ + 1, + 18, + 18, + ], + [ + 0, + 3, + 4, + ], + [ + 1, + 18, + 20, + ], + [ + 0, + 21, + 22, + ], + "c", + "d", + [ + 0, + 24, + 25, + 26, + ], + "apple", + "banana", + "pineapple", + [ + 5, + 18, + 18, + ], + [ + 0, + 17, + 19, + 17, + 18, + 20, + 29, + 32, + ], + [ + 6, + 30, + 31, + ], + "[\\p{L}\\p{M}]+", + "gu", + [ + 1, + 33, + 35, + ], + [ + 0, + 11, + 34, + ], + "rr", + [ + 0, + 29, + 36, + ], + [ + 6, + 30, + 31, + ], + [ + 0, + 26, + 25, + 24, + ], + [ + 4, + 39, + ], + [ + 0, + 17, + 19, + 40, + 18, + 20, + 29, + 32, + ], + [ + 1, + 18, + 18, + ], +] +`; + +exports[`Flatpack > dehydrate { a: { a: 'a', b: 42 } } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 1, + 2, + 4, + ], + [ + 0, + 3, + ], + "a", + [ + 0, + 5, + ], + [ + 1, + 6, + 8, + ], + [ + 0, + 3, + 7, + ], + "b", + [ + 0, + 3, + 9, + ], + 42, +] +`; + +exports[`Flatpack > dehydrate { a: { b: 1 } } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 1, + 2, + 4, + ], + [ + 0, + 3, + ], + "a", + [ + 0, + 5, + ], + [ + 1, + 6, + 8, + ], + [ + 0, + 7, + ], + "b", + [ + 0, + 9, + ], + 1, +] +`; + +exports[`Flatpack > dehydrate { a: 1 } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 1, + 2, + 4, + ], + [ + 0, + 3, + ], + "a", + [ + 0, + 5, + ], + 1, +] +`; + +exports[`Flatpack > dehydrate { fruit: [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ], …(2) } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 1, + 2, + 6, + ], + [ + 0, + 3, + 4, + 5, + ], + "fruit", + "joinFruit", + "sentence", + [ + 0, + 7, + 11, + 12, + ], + [ + 0, + 8, + 9, + 8, + 9, + 8, + 10, + ], + "apple", + "banana", + "pineapple", + "apple-banana-apple-banana-apple-pineapple", + "There is a bit of fruit on the table. Some banana, apple, and pineapple.", +] +`; + +exports[`Flatpack > dehydrate { values: [ 'apple', 'banana', 'pineapple' ], …(1) } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 1, + 2, + 5, + ], + [ + 0, + 3, + 4, + ], + "set", + "values", + [ + 0, + 6, + 7, + ], + [ + 4, + 7, + ], + [ + 0, + 8, + 9, + 10, + ], + "apple", + "banana", + "pineapple", +] +`; + +exports[`Flatpack > dehydrate {} undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 1, + 0, + 0, + ], +] +`; + +exports[`Flatpack > dehydrate 1 undefined 1`] = ` +[ + "Flatpack JSON v2", + 1, +] +`; + +exports[`Flatpack > dehydrate 1.1 undefined 1`] = ` +[ + "Flatpack JSON v2", + 1.1, +] +`; + +exports[`Flatpack > dehydrate Map{ 'apple' => 1, 'banana' => 2, 'pineapple' => 3 } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 5, + 2, + 6, + ], + [ + 0, + 3, + 4, + 5, + ], + "apple", + "banana", + "pineapple", + [ + 0, + 7, + 8, + 9, + ], + 1, + 2, + 3, +] +`; + +exports[`Flatpack > dehydrate Set{ 'apple', 'banana', 'pineapple' } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 4, + 2, + ], + [ + 0, + 3, + 4, + 5, + ], + "apple", + "banana", + "pineapple", +] +`; + +exports[`Flatpack > dehydrate Set{ 'pineapple', 'apple', 'banana' } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 4, + 2, + ], + [ + 0, + 3, + 4, + 5, + ], + "pineapple", + "apple", + "banana", +] +`; + +exports[`Flatpack > dehydrate false undefined 1`] = ` +[ + "Flatpack JSON v2", + false, +] +`; + +exports[`Flatpack > dehydrate null undefined 1`] = ` +[ + "Flatpack JSON v2", + null, +] +`; + +exports[`Flatpack > dehydrate true undefined 1`] = ` +[ + "Flatpack JSON v2", + true, +] +`; + +exports[`Flatpack > dehydrate undefined undefined 1`] = ` +[ + "Flatpack JSON v2", +] +`; diff --git a/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.data.json b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.data.json new file mode 100644 index 000000000000..8eb6fa009b4c --- /dev/null +++ b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.data.json @@ -0,0 +1 @@ +["api/api.d.ts","dist/esm/Cache/cspell.cache.d.ts","dist/esm/Cache/cspell.cache.test.d.ts","dist/esm/Cache/index.d.ts","dist/esm/Cache/index.test.d.ts","dist/esm/Document/Document.d.ts","dist/esm/Document/index.d.ts","dist/esm/Document/isBinaryDoc.d.ts","dist/esm/Document/isBinaryDoc.test.d.ts","dist/esm/Document/normalizeLanguageIds.d.ts","dist/esm/Document/resolveDocument.d.ts","dist/esm/FeatureFlags/FeatureFalgs.test.d.ts","dist/esm/FeatureFlags/FeatureFlags.d.ts","dist/esm/FeatureFlags/index.d.ts","dist/esm/LanguageIds.d.ts","dist/esm/LanguageIds.test.d.ts","dist/esm/Models/CSpellSettingsInternalDef.d.ts","dist/esm/Models/PatternRegExp.d.ts","dist/esm/Models/PatternRegExp.test.d.ts","dist/esm/Models/Suggestion.d.ts","dist/esm/Models/TextDocument.d.ts","dist/esm/Models/TextDocument.test.d.ts","dist/esm/Models/ValidationIssue.d.ts","dist/esm/Models/ValidationResult.d.ts","dist/esm/Settings/CSpellSettingsServer.d.ts","dist/esm/Settings/CSpellSettingsServer.test.d.ts","dist/esm/Settings/Controller/ImportError.d.ts","dist/esm/Settings/Controller/ImportError.test.d.ts","dist/esm/Settings/Controller/configLoader/PnPSettings.d.ts","dist/esm/Settings/Controller/configLoader/configLoader.d.ts","dist/esm/Settings/Controller/configLoader/configLoader.test.d.ts","dist/esm/Settings/Controller/configLoader/configLocations.d.ts","dist/esm/Settings/Controller/configLoader/configSearch.d.ts","dist/esm/Settings/Controller/configLoader/configSearch.test.d.ts","dist/esm/Settings/Controller/configLoader/configToRawSettings.d.ts","dist/esm/Settings/Controller/configLoader/configToRawSettings.test.d.ts","dist/esm/Settings/Controller/configLoader/defaultConfigLoader.d.ts","dist/esm/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts","dist/esm/Settings/Controller/configLoader/defaultSettings.d.ts","dist/esm/Settings/Controller/configLoader/extractImportErrors.d.ts","dist/esm/Settings/Controller/configLoader/index.d.ts","dist/esm/Settings/Controller/configLoader/normalizeRawSettings.d.ts","dist/esm/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts","dist/esm/Settings/Controller/configLoader/readSettings.d.ts","dist/esm/Settings/Controller/configLoader/readSettingsFiles.d.ts","dist/esm/Settings/Controller/configLoader/toGlobDef.d.ts","dist/esm/Settings/Controller/configLoader/types.d.ts","dist/esm/Settings/Controller/index.d.ts","dist/esm/Settings/Controller/pnpLoader.d.ts","dist/esm/Settings/Controller/pnpLoader.test.d.ts","dist/esm/Settings/DefaultSettings.d.ts","dist/esm/Settings/DefaultSettings.test.d.ts","dist/esm/Settings/DictionaryReferenceCollection.d.ts","dist/esm/Settings/DictionaryReferenceCollection.test.d.ts","dist/esm/Settings/DictionarySettings.d.ts","dist/esm/Settings/DictionarySettings.test.d.ts","dist/esm/Settings/GlobalSettings.d.ts","dist/esm/Settings/GlobalSettings.test.d.ts","dist/esm/Settings/InDocSettings.d.ts","dist/esm/Settings/InDocSettings.test.d.ts","dist/esm/Settings/LanguageSettings.d.ts","dist/esm/Settings/LanguageSettings.test.d.ts","dist/esm/Settings/RegExpPatterns.d.ts","dist/esm/Settings/RegExpPatterns.test.d.ts","dist/esm/Settings/TextDocumentSettings.d.ts","dist/esm/Settings/TextDocumentSettings.test.d.ts","dist/esm/Settings/calcOverrideSettings.d.ts","dist/esm/Settings/cfgStore.d.ts","dist/esm/Settings/cfgStore.test.d.ts","dist/esm/Settings/checkFilenameMatchesGlob.d.ts","dist/esm/Settings/constants.d.ts","dist/esm/Settings/index.d.ts","dist/esm/Settings/index.link.d.ts","dist/esm/Settings/link.d.ts","dist/esm/Settings/link.test.d.ts","dist/esm/Settings/mergeCache.d.ts","dist/esm/Settings/mergeCache.test.d.ts","dist/esm/Settings/mergeList.d.ts","dist/esm/Settings/patterns.d.ts","dist/esm/Settings/patterns.test.d.ts","dist/esm/SpellingDictionary/Dictionaries.d.ts","dist/esm/SpellingDictionary/Dictionaries.test.d.ts","dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts","dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts","dist/esm/SpellingDictionary/DictionaryController/index.d.ts","dist/esm/SpellingDictionary/DictionaryLoader.d.ts","dist/esm/SpellingDictionary/DictionaryLoader.test.d.ts","dist/esm/SpellingDictionary/SpellingDictionary.d.ts","dist/esm/SpellingDictionary/SpellingDictionaryError.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/entities.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/helpers.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/helpers.test.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/suggest.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/suggest.test.d.ts","dist/esm/SpellingDictionary/index.d.ts","dist/esm/clearCachedFiles.d.ts","dist/esm/clearCachedFiles.test.d.ts","dist/esm/events/events.d.ts","dist/esm/events/events.test.d.ts","dist/esm/events/index.d.ts","dist/esm/exclusionHelper.d.ts","dist/esm/exclusionHelper.test.d.ts","dist/esm/fileSystem.d.ts","dist/esm/getDictionary.d.ts","dist/esm/globs/checkFilenameMatchesGlob.d.ts","dist/esm/globs/getGlobMatcher.d.ts","dist/esm/index.d.ts","dist/esm/index.test.d.ts","dist/esm/perf/index.d.ts","dist/esm/perf/perf.d.ts","dist/esm/perf/perf.test.d.ts","dist/esm/perf/timer.d.ts","dist/esm/perf/timer.test.d.ts","dist/esm/spellCheckFile.d.ts","dist/esm/spellCheckFile.test.d.ts","dist/esm/suggestions.d.ts","dist/esm/suggestions.test.d.ts","dist/esm/test/bugs.spec.d.ts","dist/esm/test/dutch.spec.d.ts","dist/esm/test/english.spec.d.ts","dist/esm/test/fa.spec.d.ts","dist/esm/test/french.spec.d.ts","dist/esm/test/golang.spec.d.ts","dist/esm/test/python.spec.d.ts","dist/esm/textValidation/ValidateTextOptions.d.ts","dist/esm/textValidation/ValidationTypes.d.ts","dist/esm/textValidation/checkText.d.ts","dist/esm/textValidation/checkText.test.d.ts","dist/esm/textValidation/defaultConstants.d.ts","dist/esm/textValidation/determineTextDocumentSettings.d.ts","dist/esm/textValidation/determineTextDocumentSettings.test.d.ts","dist/esm/textValidation/docValidator.d.ts","dist/esm/textValidation/docValidator.test.d.ts","dist/esm/textValidation/index.d.ts","dist/esm/textValidation/isWordValid.d.ts","dist/esm/textValidation/isWordValid.test.d.ts","dist/esm/textValidation/lineValidatorFactory.d.ts","dist/esm/textValidation/lineValidatorFactory.test.d.ts","dist/esm/textValidation/parsedText.d.ts","dist/esm/textValidation/parsedText.test.d.ts","dist/esm/textValidation/settingsToValidateOptions.d.ts","dist/esm/textValidation/textValidator.d.ts","dist/esm/textValidation/textValidator.test.d.ts","dist/esm/textValidation/traceWord.d.ts","dist/esm/textValidation/traceWord.test.d.ts","dist/esm/textValidation/validator.d.ts","dist/esm/textValidation/validator.test.d.ts","dist/esm/trace.d.ts","dist/esm/trace.test.d.ts","dist/esm/util/AutoResolve.d.ts","dist/esm/util/AutoResolve.test.d.ts","dist/esm/util/AutoResolveLRUCache.d.ts","dist/esm/util/AutoResolveLRUCache.test.d.ts","dist/esm/util/Comparable.d.ts","dist/esm/util/Comparable.test.d.ts","dist/esm/util/FreqCounter.d.ts","dist/esm/util/FreqCounter.test.d.ts","dist/esm/util/IterableLike.d.ts","dist/esm/util/MinHeapQueue.d.ts","dist/esm/util/MinHeapQueue.test.d.ts","dist/esm/util/PairingHeap.d.ts","dist/esm/util/PairingHeap.test.d.ts","dist/esm/util/TextMap.d.ts","dist/esm/util/TextMap.test.d.ts","dist/esm/util/TextRange.d.ts","dist/esm/util/TextRange.regexp.test.d.ts","dist/esm/util/TextRange.test.d.ts","dist/esm/util/Uri.d.ts","dist/esm/util/Uri.test.d.ts","dist/esm/util/errors.d.ts","dist/esm/util/errors.test.d.ts","dist/esm/util/fileReader.d.ts","dist/esm/util/fileReader.test.d.ts","dist/esm/util/findUp.d.ts","dist/esm/util/findUp.test.d.ts","dist/esm/util/findUpFromUrl.d.ts","dist/esm/util/findUpFromUrl.test.d.ts","dist/esm/util/iterableIteratorLib.d.ts","dist/esm/util/iterableIteratorLib.test.d.ts","dist/esm/util/logger.d.ts","dist/esm/util/logger.test.d.ts","dist/esm/util/memorizeLastCall.d.ts","dist/esm/util/memorizeLastCall.test.d.ts","dist/esm/util/memorizerWeak.d.ts","dist/esm/util/memorizerWeak.test.d.ts","dist/esm/util/regexHelper.d.ts","dist/esm/util/repMap.d.ts","dist/esm/util/repMap.test.d.ts","dist/esm/util/resolveFile.d.ts","dist/esm/util/resolveFile.test.d.ts","dist/esm/util/search.d.ts","dist/esm/util/search.test.d.ts","dist/esm/util/simpleCache.d.ts","dist/esm/util/simpleCache.test.d.ts","dist/esm/util/templates.d.ts","dist/esm/util/templates.test.d.ts","dist/esm/util/text.d.ts","dist/esm/util/text.test.d.ts","dist/esm/util/textRegex.d.ts","dist/esm/util/textRegex.test.d.ts","dist/esm/util/types.d.ts","dist/esm/util/url.d.ts","dist/esm/util/url.test.d.ts","dist/esm/util/util.d.ts","dist/esm/util/util.test.d.ts","dist/esm/util/wordSplitter.d.ts","dist/esm/util/wordSplitter.test.d.ts","dist/esm/validator.d.ts","dist/esm/wordListHelper.d.ts","dist/esm/wordListHelper.test.d.ts","dist/lib/Cache/cspell.cache.d.ts","dist/lib/Cache/cspell.cache.test.d.ts","dist/lib/Cache/index.d.ts","dist/lib/Cache/index.test.d.ts","dist/lib/Document/Document.d.ts","dist/lib/Document/index.d.ts","dist/lib/Document/isBinaryDoc.d.ts","dist/lib/Document/isBinaryDoc.test.d.ts","dist/lib/Document/normalizeLanguageIds.d.ts","dist/lib/Document/resolveDocument.d.ts","dist/lib/FeatureFlags/FeatureFalgs.test.d.ts","dist/lib/FeatureFlags/FeatureFlags.d.ts","dist/lib/FeatureFlags/index.d.ts","dist/lib/LanguageIds.d.ts","dist/lib/LanguageIds.test.d.ts","dist/lib/Models/CSpellSettingsInternalDef.d.ts","dist/lib/Models/PatternRegExp.d.ts","dist/lib/Models/PatternRegExp.test.d.ts","dist/lib/Models/Suggestion.d.ts","dist/lib/Models/TextDocument.d.ts","dist/lib/Models/TextDocument.test.d.ts","dist/lib/Models/ValidationIssue.d.ts","dist/lib/Models/ValidationResult.d.ts","dist/lib/Settings/CSpellSettingsServer.d.ts","dist/lib/Settings/CSpellSettingsServer.test.d.ts","dist/lib/Settings/Controller/ImportError.d.ts","dist/lib/Settings/Controller/ImportError.test.d.ts","dist/lib/Settings/Controller/configLoader/PnPSettings.d.ts","dist/lib/Settings/Controller/configLoader/configLoader.d.ts","dist/lib/Settings/Controller/configLoader/configLoader.test.d.ts","dist/lib/Settings/Controller/configLoader/configLocations.d.ts","dist/lib/Settings/Controller/configLoader/configSearch.d.ts","dist/lib/Settings/Controller/configLoader/configSearch.test.d.ts","dist/lib/Settings/Controller/configLoader/configToRawSettings.d.ts","dist/lib/Settings/Controller/configLoader/configToRawSettings.test.d.ts","dist/lib/Settings/Controller/configLoader/defaultConfigLoader.d.ts","dist/lib/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts","dist/lib/Settings/Controller/configLoader/defaultSettings.d.ts","dist/lib/Settings/Controller/configLoader/extractImportErrors.d.ts","dist/lib/Settings/Controller/configLoader/index.d.ts","dist/lib/Settings/Controller/configLoader/normalizeRawSettings.d.ts","dist/lib/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts","dist/lib/Settings/Controller/configLoader/readSettings.d.ts","dist/lib/Settings/Controller/configLoader/readSettingsFiles.d.ts","dist/lib/Settings/Controller/configLoader/toGlobDef.d.ts","dist/lib/Settings/Controller/configLoader/types.d.ts","dist/lib/Settings/Controller/index.d.ts","dist/lib/Settings/Controller/pnpLoader.d.ts","dist/lib/Settings/Controller/pnpLoader.test.d.ts","dist/lib/Settings/DefaultSettings.d.ts","dist/lib/Settings/DefaultSettings.test.d.ts","dist/lib/Settings/DictionaryReferenceCollection.d.ts","dist/lib/Settings/DictionaryReferenceCollection.test.d.ts","dist/lib/Settings/DictionarySettings.d.ts","dist/lib/Settings/DictionarySettings.test.d.ts","dist/lib/Settings/GlobalSettings.d.ts","dist/lib/Settings/GlobalSettings.test.d.ts","dist/lib/Settings/InDocSettings.d.ts","dist/lib/Settings/InDocSettings.test.d.ts","dist/lib/Settings/LanguageSettings.d.ts","dist/lib/Settings/LanguageSettings.test.d.ts","dist/lib/Settings/RegExpPatterns.d.ts","dist/lib/Settings/RegExpPatterns.test.d.ts","dist/lib/Settings/TextDocumentSettings.d.ts","dist/lib/Settings/TextDocumentSettings.test.d.ts","dist/lib/Settings/calcOverrideSettings.d.ts","dist/lib/Settings/cfgStore.d.ts","dist/lib/Settings/cfgStore.test.d.ts","dist/lib/Settings/checkFilenameMatchesGlob.d.ts","dist/lib/Settings/constants.d.ts","dist/lib/Settings/index.d.ts","dist/lib/Settings/index.link.d.ts","dist/lib/Settings/link.d.ts","dist/lib/Settings/link.test.d.ts","dist/lib/Settings/mergeCache.d.ts","dist/lib/Settings/mergeCache.test.d.ts","dist/lib/Settings/mergeList.d.ts","dist/lib/Settings/patterns.d.ts","dist/lib/Settings/patterns.test.d.ts","dist/lib/SpellingDictionary/Dictionaries.d.ts","dist/lib/SpellingDictionary/Dictionaries.test.d.ts","dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts","dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts","dist/lib/SpellingDictionary/DictionaryController/index.d.ts","dist/lib/SpellingDictionary/DictionaryLoader.d.ts","dist/lib/SpellingDictionary/DictionaryLoader.test.d.ts","dist/lib/SpellingDictionary/SpellingDictionary.d.ts","dist/lib/SpellingDictionary/SpellingDictionaryError.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/entities.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/helpers.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/helpers.test.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/suggest.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/suggest.test.d.ts","dist/lib/SpellingDictionary/index.d.ts","dist/lib/clearCachedFiles.d.ts","dist/lib/clearCachedFiles.test.d.ts","dist/lib/events/events.d.ts","dist/lib/events/events.test.d.ts","dist/lib/events/index.d.ts","dist/lib/exclusionHelper.d.ts","dist/lib/exclusionHelper.test.d.ts","dist/lib/fileSystem.d.ts","dist/lib/getDictionary.d.ts","dist/lib/globs/checkFilenameMatchesGlob.d.ts","dist/lib/globs/getGlobMatcher.d.ts","dist/lib/index.d.ts","dist/lib/index.test.d.ts","dist/lib/perf/index.d.ts","dist/lib/perf/perf.d.ts","dist/lib/perf/perf.test.d.ts","dist/lib/perf/timer.d.ts","dist/lib/perf/timer.test.d.ts","dist/lib/spellCheckFile.d.ts","dist/lib/spellCheckFile.test.d.ts","dist/lib/suggestions.d.ts","dist/lib/suggestions.test.d.ts","dist/lib/test/bugs.spec.d.ts","dist/lib/test/dutch.spec.d.ts","dist/lib/test/english.spec.d.ts","dist/lib/test/fa.spec.d.ts","dist/lib/test/french.spec.d.ts","dist/lib/test/golang.spec.d.ts","dist/lib/test/python.spec.d.ts","dist/lib/textValidation/ValidateTextOptions.d.ts","dist/lib/textValidation/ValidationTypes.d.ts","dist/lib/textValidation/checkText.d.ts","dist/lib/textValidation/checkText.test.d.ts","dist/lib/textValidation/defaultConstants.d.ts","dist/lib/textValidation/determineTextDocumentSettings.d.ts","dist/lib/textValidation/determineTextDocumentSettings.test.d.ts","dist/lib/textValidation/docValidator.d.ts","dist/lib/textValidation/docValidator.test.d.ts","dist/lib/textValidation/index.d.ts","dist/lib/textValidation/isWordValid.d.ts","dist/lib/textValidation/isWordValid.test.d.ts","dist/lib/textValidation/lineValidatorFactory.d.ts","dist/lib/textValidation/lineValidatorFactory.test.d.ts","dist/lib/textValidation/parsedText.d.ts","dist/lib/textValidation/parsedText.test.d.ts","dist/lib/textValidation/settingsToValidateOptions.d.ts","dist/lib/textValidation/textValidator.d.ts","dist/lib/textValidation/textValidator.test.d.ts","dist/lib/textValidation/traceWord.d.ts","dist/lib/textValidation/traceWord.test.d.ts","dist/lib/textValidation/validator.d.ts","dist/lib/textValidation/validator.test.d.ts","dist/lib/trace.d.ts","dist/lib/trace.test.d.ts","dist/lib/util/AutoResolve.d.ts","dist/lib/util/AutoResolve.test.d.ts","dist/lib/util/AutoResolveLRUCache.d.ts","dist/lib/util/AutoResolveLRUCache.test.d.ts","dist/lib/util/Comparable.d.ts","dist/lib/util/Comparable.test.d.ts","dist/lib/util/FreqCounter.d.ts","dist/lib/util/FreqCounter.test.d.ts","dist/lib/util/IterableLike.d.ts","dist/lib/util/MinHeapQueue.d.ts","dist/lib/util/MinHeapQueue.test.d.ts","dist/lib/util/PairingHeap.d.ts","dist/lib/util/PairingHeap.test.d.ts","dist/lib/util/TextMap.d.ts","dist/lib/util/TextMap.test.d.ts","dist/lib/util/TextRange.d.ts","dist/lib/util/TextRange.regexp.test.d.ts","dist/lib/util/TextRange.test.d.ts","dist/lib/util/Uri.d.ts","dist/lib/util/Uri.test.d.ts","dist/lib/util/errors.d.ts","dist/lib/util/errors.test.d.ts","dist/lib/util/fileReader.d.ts","dist/lib/util/fileReader.test.d.ts","dist/lib/util/findUp.d.ts","dist/lib/util/findUp.test.d.ts","dist/lib/util/findUpFromUrl.d.ts","dist/lib/util/findUpFromUrl.test.d.ts","dist/lib/util/iterableIteratorLib.d.ts","dist/lib/util/iterableIteratorLib.test.d.ts","dist/lib/util/logger.d.ts","dist/lib/util/logger.test.d.ts","dist/lib/util/memorizeLastCall.d.ts","dist/lib/util/memorizeLastCall.test.d.ts","dist/lib/util/memorizerWeak.d.ts","dist/lib/util/memorizerWeak.test.d.ts","dist/lib/util/regexHelper.d.ts","dist/lib/util/repMap.d.ts","dist/lib/util/repMap.test.d.ts","dist/lib/util/resolveFile.d.ts","dist/lib/util/resolveFile.test.d.ts","dist/lib/util/search.d.ts","dist/lib/util/search.test.d.ts","dist/lib/util/simpleCache.d.ts","dist/lib/util/simpleCache.test.d.ts","dist/lib/util/templates.d.ts","dist/lib/util/templates.test.d.ts","dist/lib/util/text.d.ts","dist/lib/util/text.test.d.ts","dist/lib/util/textApi.d.ts","dist/lib/util/textRegex.d.ts","dist/lib/util/textRegex.test.d.ts","dist/lib/util/types.d.ts","dist/lib/util/url.d.ts","dist/lib/util/url.test.d.ts","dist/lib/util/util.d.ts","dist/lib/util/util.test.d.ts","dist/lib/util/wordSplitter.d.ts","dist/lib/util/wordSplitter.perf.d.ts","dist/lib/util/wordSplitter.test.d.ts","dist/lib/validator.d.ts","dist/lib/wordListHelper.d.ts","dist/lib/wordListHelper.test.d.ts","fixtures/docValidator/parser/sample.ts","fixtures/docValidator/sample-with-cspell-directives.ts","fixtures/docValidator/sample-with-directives-errors.ts","fixtures/docValidator/sample-with-errors.ts","fixtures/docValidator/sample-with-many-errors.ts","samples/bug-fixes/bug345.ts","src/lib/Cache/cspell.cache.test.ts","src/lib/Cache/cspell.cache.ts","src/lib/Cache/index.test.ts","src/lib/Cache/index.ts","src/lib/Document/Document.ts","src/lib/Document/index.ts","src/lib/Document/isBinaryDoc.test.ts","src/lib/Document/isBinaryDoc.ts","src/lib/Document/normalizeLanguageIds.ts","src/lib/Document/resolveDocument.ts","src/lib/FeatureFlags/FeatureFalgs.test.ts","src/lib/FeatureFlags/FeatureFlags.ts","src/lib/FeatureFlags/index.ts","src/lib/LanguageIds.test.ts","src/lib/LanguageIds.ts","src/lib/Models/CSpellSettingsInternalDef.ts","src/lib/Models/PatternRegExp.test.ts","src/lib/Models/PatternRegExp.ts","src/lib/Models/Suggestion.ts","src/lib/Models/TextDocument.test.ts","src/lib/Models/TextDocument.ts","src/lib/Models/ValidationIssue.ts","src/lib/Models/ValidationResult.ts","src/lib/Settings/CSpellSettingsServer.test.ts","src/lib/Settings/CSpellSettingsServer.ts","src/lib/Settings/Controller/ImportError.test.ts","src/lib/Settings/Controller/ImportError.ts","src/lib/Settings/Controller/configLoader/PnPSettings.ts","src/lib/Settings/Controller/configLoader/configLoader.test.ts","src/lib/Settings/Controller/configLoader/configLoader.ts","src/lib/Settings/Controller/configLoader/configLocations.ts","src/lib/Settings/Controller/configLoader/configSearch.test.ts","src/lib/Settings/Controller/configLoader/configSearch.ts","src/lib/Settings/Controller/configLoader/configToRawSettings.test.ts","src/lib/Settings/Controller/configLoader/configToRawSettings.ts","src/lib/Settings/Controller/configLoader/defaultConfigLoader.test.ts","src/lib/Settings/Controller/configLoader/defaultConfigLoader.ts","src/lib/Settings/Controller/configLoader/defaultSettings.ts","src/lib/Settings/Controller/configLoader/extractImportErrors.ts","src/lib/Settings/Controller/configLoader/index.ts","src/lib/Settings/Controller/configLoader/normalizeRawSettings.test.ts","src/lib/Settings/Controller/configLoader/normalizeRawSettings.ts","src/lib/Settings/Controller/configLoader/readSettings.ts","src/lib/Settings/Controller/configLoader/readSettingsFiles.ts","src/lib/Settings/Controller/configLoader/toGlobDef.ts","src/lib/Settings/Controller/configLoader/types.ts","src/lib/Settings/Controller/index.ts","src/lib/Settings/Controller/pnpLoader.test.ts","src/lib/Settings/Controller/pnpLoader.ts","src/lib/Settings/DefaultSettings.test.ts","src/lib/Settings/DefaultSettings.ts","src/lib/Settings/DictionaryReferenceCollection.test.ts","src/lib/Settings/DictionaryReferenceCollection.ts","src/lib/Settings/DictionarySettings.test.ts","src/lib/Settings/DictionarySettings.ts","src/lib/Settings/GlobalSettings.test.ts","src/lib/Settings/GlobalSettings.ts","src/lib/Settings/InDocSettings.test.ts","src/lib/Settings/InDocSettings.ts","src/lib/Settings/LanguageSettings.test.ts","src/lib/Settings/LanguageSettings.ts","src/lib/Settings/RegExpPatterns.test.ts","src/lib/Settings/RegExpPatterns.ts","src/lib/Settings/TextDocumentSettings.test.ts","src/lib/Settings/TextDocumentSettings.ts","src/lib/Settings/calcOverrideSettings.ts","src/lib/Settings/cfgStore.test.ts","src/lib/Settings/cfgStore.ts","src/lib/Settings/checkFilenameMatchesGlob.ts","src/lib/Settings/constants.ts","src/lib/Settings/index.link.ts","src/lib/Settings/index.ts","src/lib/Settings/link.test.ts","src/lib/Settings/link.ts","src/lib/Settings/mergeCache.test.ts","src/lib/Settings/mergeCache.ts","src/lib/Settings/mergeList.ts","src/lib/Settings/patterns.test.ts","src/lib/Settings/patterns.ts","src/lib/SpellingDictionary/Dictionaries.test.ts","src/lib/SpellingDictionary/Dictionaries.ts","src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.ts","src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.ts","src/lib/SpellingDictionary/DictionaryController/index.ts","src/lib/SpellingDictionary/DictionaryLoader.test.ts","src/lib/SpellingDictionary/DictionaryLoader.ts","src/lib/SpellingDictionary/SpellingDictionary.ts","src/lib/SpellingDictionary/SpellingDictionaryError.ts","src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.ts","src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.ts","src/lib/SpellingDictionary/SuggestExperimental/entities.ts","src/lib/SpellingDictionary/SuggestExperimental/helpers.test.ts","src/lib/SpellingDictionary/SuggestExperimental/helpers.ts","src/lib/SpellingDictionary/SuggestExperimental/suggest.test.ts","src/lib/SpellingDictionary/SuggestExperimental/suggest.ts","src/lib/SpellingDictionary/index.ts","src/lib/clearCachedFiles.test.ts","src/lib/clearCachedFiles.ts","src/lib/events/events.test.ts","src/lib/events/events.ts","src/lib/events/index.ts","src/lib/exclusionHelper.test.ts","src/lib/exclusionHelper.ts","src/lib/fileSystem.ts","src/lib/getDictionary.ts","src/lib/globs/checkFilenameMatchesGlob.ts","src/lib/globs/getGlobMatcher.ts","src/lib/index.test.ts","src/lib/index.ts","src/lib/leaked-handles.d.ts","src/lib/node-namespace.d.ts","src/lib/perf/index.ts","src/lib/perf/perf.test.ts","src/lib/perf/perf.ts","src/lib/perf/timer.test.ts","src/lib/perf/timer.ts","src/lib/spellCheckFile.test.ts","src/lib/spellCheckFile.ts","src/lib/suggestions.test.ts","src/lib/suggestions.ts","src/lib/test/bugs.spec.ts","src/lib/test/dutch.spec.ts","src/lib/test/english.spec.ts","src/lib/test/fa.spec.ts","src/lib/test/french.spec.ts","src/lib/test/golang.spec.ts","src/lib/test/python.spec.ts","src/lib/textValidation/ValidateTextOptions.ts","src/lib/textValidation/ValidationTypes.ts","src/lib/textValidation/checkText.test.ts","src/lib/textValidation/checkText.ts","src/lib/textValidation/defaultConstants.ts","src/lib/textValidation/determineTextDocumentSettings.test.ts","src/lib/textValidation/determineTextDocumentSettings.ts","src/lib/textValidation/docValidator.test.ts","src/lib/textValidation/docValidator.ts","src/lib/textValidation/index.ts","src/lib/textValidation/isWordValid.test.ts","src/lib/textValidation/isWordValid.ts","src/lib/textValidation/lineValidatorFactory.test.ts","src/lib/textValidation/lineValidatorFactory.ts","src/lib/textValidation/parsedText.test.ts","src/lib/textValidation/parsedText.ts","src/lib/textValidation/settingsToValidateOptions.ts","src/lib/textValidation/textValidator.test.ts","src/lib/textValidation/textValidator.ts","src/lib/textValidation/traceWord.test.ts","src/lib/textValidation/traceWord.ts","src/lib/textValidation/validator.test.ts","src/lib/textValidation/validator.ts","src/lib/trace.test.ts","src/lib/trace.ts","src/lib/util/AutoResolve.test.ts","src/lib/util/AutoResolve.ts","src/lib/util/AutoResolveLRUCache.test.ts","src/lib/util/AutoResolveLRUCache.ts","src/lib/util/Comparable.test.ts","src/lib/util/Comparable.ts","src/lib/util/FreqCounter.test.ts","src/lib/util/FreqCounter.ts","src/lib/util/IterableLike.ts","src/lib/util/MinHeapQueue.test.ts","src/lib/util/MinHeapQueue.ts","src/lib/util/PairingHeap.test.ts","src/lib/util/PairingHeap.ts","src/lib/util/TextMap.test.ts","src/lib/util/TextMap.ts","src/lib/util/TextRange.regexp.test.ts","src/lib/util/TextRange.test.ts","src/lib/util/TextRange.ts","src/lib/util/Uri.test.ts","src/lib/util/Uri.ts","src/lib/util/errors.test.ts","src/lib/util/errors.ts","src/lib/util/fileReader.test.ts","src/lib/util/fileReader.ts","src/lib/util/findUp.test.ts","src/lib/util/findUp.ts","src/lib/util/findUpFromUrl.test.ts","src/lib/util/findUpFromUrl.ts","src/lib/util/iterableIteratorLib.test.ts","src/lib/util/iterableIteratorLib.ts","src/lib/util/logger.test.ts","src/lib/util/logger.ts","src/lib/util/memorizeLastCall.test.ts","src/lib/util/memorizeLastCall.ts","src/lib/util/memorizerWeak.test.ts","src/lib/util/memorizerWeak.ts","src/lib/util/regexHelper.ts","src/lib/util/repMap.test.ts","src/lib/util/repMap.ts","src/lib/util/resolveFile.test.ts","src/lib/util/resolveFile.ts","src/lib/util/search.test.ts","src/lib/util/search.ts","src/lib/util/simpleCache.test.ts","src/lib/util/simpleCache.ts","src/lib/util/templates.test.ts","src/lib/util/templates.ts","src/lib/util/text.test.ts","src/lib/util/text.ts","src/lib/util/textApi.ts","src/lib/util/textRegex.test.ts","src/lib/util/textRegex.ts","src/lib/util/types.ts","src/lib/util/url.test.ts","src/lib/util/url.ts","src/lib/util/util.test.ts","src/lib/util/util.ts","src/lib/util/wordSplitter.perf.ts","src/lib/util/wordSplitter.test.ts","src/lib/util/wordSplitter.ts","src/lib/validator.ts","src/lib/wordListHelper.test.ts","src/lib/wordListHelper.ts",""] diff --git a/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.json b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.json new file mode 100644 index 000000000000..6c282e38b0a6 --- /dev/null +++ b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.json @@ -0,0 +1 @@ +["Flatpack JSON v2",[0,2,3,4,7,10,12,15,17,20,22,24,26,28,31,33,35,37,39,42,44,46,48,50,52,55,57,59,62,64,67,71,73,76,79,81,83,85,88,90,93,95,96,99,101,103,106,108,111,112,114,116,120,122,125,127,132,134,136,138,140,142,144,146,148,150,152,154,156,159,161,163,165,166,169,170,172,174,176,179,181,183,186,188,191,193,195,198,200,203,206,209,211,214,216,218,220,222,223,225,227,229,231,233,236,238,240,242,246,249,250,253,255,258,260,262,264,266,268,271,273,275,278,280,282,285,287,289,292,295,298,300,301,305,307,310,312,313,316,318,320,322,324,326,328,330,332,335,337,339,341,344,346,348,350,353,355,358,360,362,364,366,368,370,372,374,376,378,381,384,385,387,389,391,393,395,397,400,402,405,407,409,411,413,415,417,419,422,424,426,429,431,433,435,437,439,442,444,446,448,451,453,456,458,460,462,464,467,469,471,473,474,476,478,481,483,485,487,489,491,493,495,497,499,501,503,505,507,509,511,513,515,517,519,521,523,525,527,529,531,533,535,537,539,541,543,545,547,549,551,553,555,557,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599,601,603,605,607,609,611,613,615,617,619,621,623,625,627,629,631,633,635,637,639,641,643,645,647,649,651,653,655,657,659,661,663,665,667,669,671,673,675,677,679,681,683,685,687,689,691,693,695,696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734,736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798,800,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862,864,866,868,870,872,874,876,879,881,883,885,886,888,890,892,894,896,898,899,901,903,904,907,910,912,914,915,916,919,922,924,928,931,935,937,939,941,943,946,948,950,952,954,957,959,961,963,965,967,970,972,974,977,979,982,985,987,990,993,995,997,999,1001,1003,1006,1008,1009,1011,1013,1015,1018,1020,1023,1024,1026,1028,1032,1034,1037,1039,1041,1043,1045,1047,1049,1051,1052,1054,1056,1058,1061,1063,1065,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1089,1091,1093,1096,1098,1101,1103,1105,1109,1111,1114,1117,1120,1122,1125,1127,1129,1131,1133,1134,1136,1138,1140,1142,1144,1147,1149,1151,1153,1156,1159,1160,1162,1164,1166,1168,1171,1173,1175,1177,1179,1181,1184,1186,1188,1191,1193,1195,1198,1200,1202,1205,1208,1211,1213,1214,1217,1219,1222,1224,1225,1228,1230,1232,1234,1236,1238,1240,1243,1245,1248,1250,1253,1255,1258,1260,1262,1264,1267,1269,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1295,1297,1299,1301,1303,1306,1308,1310,1312,1315,1317,1320,1322,1324,1326,1328,1330,1332,1334,1337,1339,1341,1344,1346,1348,1350,1352,1354,1357,1359,1361,1363,1366,1368,1371,1373,1375,1377,1379,1381,1384,1386,1389,1391,1393,1395,1397,1399],"api/api.d.ts","dist/esm/Cache/cspell.cache.d.ts",[2,5,6],[3,3,28],"test.d.ts",[2,8,9],[3,3,15],"index.d.ts",[2,11,6],[3,7,21],[2,13,14],[3,3,9],"Document/Document.d.ts",[2,16,9],[3,12,18],[2,18,19],[3,15,19],"sBinaryDoc.d.ts",[2,21,6],[3,17,30],[2,16,23],"normalizeLanguageIds.d.ts",[2,16,25],"resolveDocument.d.ts",[2,13,27],"FeatureFlags/FeatureFalgs.test.d.ts",[2,29,30],[3,26,30],"lags.d.ts",[2,32,9],[3,26,22],[2,13,34],[3,23,16,9],[2,36,6],[3,33,21],[2,13,38],"Models/CSpellSettingsInternalDef.d.ts",[2,40,41],[3,37,16],"PatternRegExp.d.ts",[2,43,6],[3,39,30],[2,40,45],"Suggestion.d.ts",[2,40,47],"TextDocument.d.ts",[2,49,6],[3,46,29],[2,40,51],"ValidationIssue.d.ts",[2,53,54],[3,50,26],"Result.d.ts",[2,13,56],"Settings/CSpellSettingsServer.d.ts",[2,58,6],[3,55,39],[2,60,61],[3,55,19],"ontroller/ImportError.d.ts",[2,63,6],[3,59,41],[2,65,66],[3,59,29],"configLoader/PnPSettings.d.ts",[2,68,69,70],[3,64,42],[3,66,12],".d.ts",[2,72,6],[3,67,55],[2,74,75],[3,67,50],"cations.d.ts",[2,77,78],[3,67,48],"Search.d.ts",[2,80,6],[3,76,55],[2,77,82],"ToRawSettings.d.ts",[2,84,6],[3,81,62],[2,68,86,87],"defaultC",[3,67,16,43],[2,89,6],[3,85,62],[2,91,92,70],[3,85,49],[3,56,8],[2,68,94],"extractImportErrors.d.ts",[2,68,9],[2,68,97,98],[3,23,9],[3,82,16,2],[2,100,6],[3,96,63],[2,68,102],"readSettings.d.ts",[2,104,105],[3,101,54],"Files.d.ts",[2,68,107],"toGlobDef.d.ts",[2,109,110],[3,106,43],"ypes.d.ts",[2,65,9],[2,65,113],"pnpLoader.d.ts",[2,115,6],[3,112,39],[2,117,118,119],[3,55,18],"D",[3,90,19,43],[2,121,6],[3,116,34],[2,123,124],[3,116,19],"ictionaryReferenceCollection.d.ts",[2,126,6],[3,122,48],[2,128,129,131],[3,122,28],[3,130,9],[3,83,18,53],"d.ts",[2,133,6],[3,127,37],[2,117,135],"GlobalSettings.d.ts",[2,137,6],[3,134,33],[2,117,139],"InDocSettings.d.ts",[2,141,6],[3,138,32],[2,117,143,129,131],[3,34,8],[2,145,6],[3,142,35],[2,117,147],"RegExpPatterns.d.ts",[2,149,6],[3,146,33],[2,117,151,129,131],[3,47,12],[2,153,6],[3,150,39],[2,117,155],"calcOverrideSettings.d.ts",[2,157,158],[3,154,19],"fgStore.d.ts",[2,160,6],[3,156,27],[2,157,162],"heckFilenameMatchesGlob.d.ts",[2,157,164],"onstants.d.ts",[2,117,9],[2,167,168],[3,165,24],"link.d.ts",[2,117,168],[2,171,6],[3,169,23],[2,117,173],"mergeCache.d.ts",[2,175,6],[3,172,29],[2,177,178],[3,172,23],"List.d.ts",[2,117,180],"patterns.d.ts",[2,182,6],[3,179,27],[2,184,185],[3,55,10],"pellingDictionary/Dictionaries.d.ts",[2,187,6],[3,183,41],[2,189,190],[3,183,37],"yController/DictionaryLoader.d.ts",[2,192,6],[3,188,66],[2,194,9],[3,188,49],[2,196,197],[3,188,38],"Loader.d.ts",[2,199,6],[3,195,45],[2,201,202],[3,183,28],"SpellingDictionary.d.ts",[2,204,205],[3,200,46],"Error.d.ts",[2,207,208],[3,200,29],"uggestExperimental/SuggestionCollector.d.ts",[2,210,6],[3,206,68],[2,212,213],[3,206,48],"entities.d.ts",[2,212,215],"helpers.d.ts",[2,217,6],[3,214,56],[2,212,219],"suggest.d.ts",[2,221,6],[3,218,56],[2,201,9],[2,13,224],"clearCachedFiles.d.ts",[2,226,6],[3,223,26],[2,13,228],"events/events.d.ts",[2,230,6],[3,227,23],[2,232,9],[3,227,16],[2,234,235],[3,227,10],"xclusionHelper.d.ts",[2,237,6],[3,233,25],[2,13,239],"fileSystem.d.ts",[2,13,241],"getDictionary.d.ts",[2,243,244,245],[3,240,10],"lob",[3,161,31,16],[2,247,248],[3,242,15],"getGlobMatcher.d.ts",[2,13,9],[2,251,252],[3,3,8],[3,10,16,14],[2,13,254],"perf/index.d.ts",[2,256,257],[3,253,14],"perf.d.ts",[2,259,6],[3,255,19],[2,256,261],"timer.d.ts",[2,263,6],[3,260,20],[2,13,265],"spellCheckFile.d.ts",[2,267,6],[3,264,24],[2,269,270],[3,264,10],"uggestions.d.ts",[2,272,6],[3,268,21],[2,13,274],"test/bugs.spec.d.ts",[2,276,277],[3,273,14],"dutch.spec.d.ts",[2,276,279],"english.spec.d.ts",[2,276,281],"fa.spec.d.ts",[2,283,284],[3,280,15],"rench.spec.d.ts",[2,276,286],"golang.spec.d.ts",[2,276,288],"python.spec.d.ts",[2,290,291],[3,273,11],"xtValidation/ValidateTextOptions.d.ts",[2,293,294],[3,289,31],"ionTypes.d.ts",[2,296,297],[3,289,24],"checkText.d.ts",[2,299,6],[3,295,34],[2,296,86,164],[2,302,303,304],[3,300,26],"termine",[3,150,25,18],[2,306,6],[3,301,54],[2,308,309],[3,300,25],"ocValidator.d.ts",[2,311,6],[3,307,37],[2,296,9],[2,314,315],[3,312,25],"sWordValid.d.ts",[2,317,6],[3,313,36],[2,296,319],"lineValidatorFactory.d.ts",[2,321,6],[3,318,45],[2,296,323],"parsedText.d.ts",[2,325,6],[3,322,35],[2,296,327],"settingsToValidateOptions.d.ts",[2,296,329],"textValidator.d.ts",[2,331,6],[3,328,38],[2,333,334],[3,328,25],"raceWord.d.ts",[2,336,6],[3,332,34],[2,296,338],"validator.d.ts",[2,340,6],[3,337,34],[2,342,343],[3,273,10],"race.d.ts",[2,345,6],[3,341,15],[2,13,347],"util/AutoResolve.d.ts",[2,349,6],[3,346,26],[2,351,352],[3,346,25],"LRUCache.d.ts",[2,354,6],[3,350,34],[2,356,357],[3,346,14],"Comparable.d.ts",[2,359,6],[3,355,25],[2,356,361],"FreqCounter.d.ts",[2,363,6],[3,360,26],[2,356,365],"IterableLike.d.ts",[2,356,367],"MinHeapQueue.d.ts",[2,369,6],[3,366,27],[2,356,371],"PairingHeap.d.ts",[2,373,6],[3,370,26],[2,356,375],"TextMap.d.ts",[2,377,6],[3,374,22],[2,379,380],[3,374,18],"Range.d.ts",[2,382,383],[3,378,24],"regexp.test.d.ts",[2,382,6],[2,356,386],"Uri.d.ts",[2,388,6],[3,385,18],[2,356,390],"errors.d.ts",[2,392,6],[3,389,21],[2,356,394],"fileReader.d.ts",[2,396,6],[3,393,25],[2,398,399],[3,393,16],"ndUp.d.ts",[2,401,6],[3,397,21],[2,403,404],[3,397,20],"FromUrl.d.ts",[2,406,6],[3,402,28],[2,356,408],"iterableIteratorLib.d.ts",[2,410,6],[3,407,34],[2,356,412],"logger.d.ts",[2,414,6],[3,411,21],[2,356,416],"memorizeLastCall.d.ts",[2,418,6],[3,415,31],[2,420,421],[3,415,22],"rWeak.d.ts",[2,423,6],[3,419,28],[2,356,425],"regexHelper.d.ts",[2,427,428],[3,424,16],"pMap.d.ts",[2,430,6],[3,426,21],[2,427,432],"solveFile.d.ts",[2,434,6],[3,431,26],[2,356,436],"search.d.ts",[2,438,6],[3,435,21],[2,440,441],[3,435,15],"impleCache.d.ts",[2,443,6],[3,439,26],[2,356,445],"templates.d.ts",[2,447,6],[3,444,24],[2,449,450],[3,444,16],"xt.d.ts",[2,452,6],[3,448,19],[2,454,455],[3,448,18],"Regex.d.ts",[2,457,6],[3,453,24],[2,459,110],[3,444,15],[2,356,461],"url.d.ts",[2,463,6],[3,460,18],[2,465,466],[3,460,15],"til.d.ts",[2,468,6],[3,464,19],[2,356,470],"wordSplitter.d.ts",[2,472,6],[3,469,27],[2,13,338],[2,13,475],"wordListHelper.d.ts",[2,477,6],[3,474,24],[2,479,480],"dist/lib",[3,3,24,8],[2,479,482],[3,4,29,8],[2,479,484],[3,7,17,8],[2,479,486],[3,10,22,8],[2,479,488],[3,12,23,8],[2,479,490],[3,15,20,8],[2,479,492],[3,17,26,8],[2,479,494],[3,20,31,8],[2,479,496],[3,22,35,8],[2,479,498],[3,24,30,8],[2,479,500],[3,26,36,8],[2,479,502],[3,28,31,8],[2,479,504],[3,31,24,8],[2,479,506],[3,33,17,8],[2,479,508],[3,35,22,8],[2,479,510],[3,37,38,8],[2,479,512],[3,39,26,8],[2,479,514],[3,42,31,8],[2,479,516],[3,44,23,8],[2,479,518],[3,46,25,8],[2,479,520],[3,48,30,8],[2,479,522],[3,50,28,8],[2,479,524],[3,52,29,8],[2,479,526],[3,55,35,8],[2,479,528],[3,57,40,8],[2,479,530],[3,59,37,8],[2,479,532],[3,62,42,8],[2,479,534],[3,64,50,8],[2,479,536],[3,67,51,8],[2,479,538],[3,71,56,8],[2,479,540],[3,73,54,8],[2,479,542],[3,76,51,8],[2,479,544],[3,79,56,8],[2,479,546],[3,81,58,8],[2,479,548],[3,83,63,8],[2,479,550],[3,85,58,8],[2,479,552],[3,88,63,8],[2,479,554],[3,90,54,8],[2,479,556],[3,93,58,8],[2,479,558],[3,95,44,8],[2,479,560],[3,96,59,8],[2,479,562],[3,99,64,8],[2,479,564],[3,101,51,8],[2,479,566],[3,103,56,8],[2,479,568],[3,106,48,8],[2,479,570],[3,108,44,8],[2,479,572],[3,111,31,8],[2,479,574],[3,112,35,8],[2,479,576],[3,114,40,8],[2,479,578],[3,116,30,8],[2,479,580],[3,120,35,8],[2,479,582],[3,122,44,8],[2,479,584],[3,125,49,8],[2,479,586],[3,127,33,8],[2,479,588],[3,132,38,8],[2,479,590],[3,134,29,8],[2,479,592],[3,136,34,8],[2,479,594],[3,138,28,8],[2,479,596],[3,140,33,8],[2,479,598],[3,142,31,8],[2,479,600],[3,144,36,8],[2,479,602],[3,146,29,8],[2,479,604],[3,148,34,8],[2,479,606],[3,150,35,8],[2,479,608],[3,152,40,8],[2,479,610],[3,154,35,8],[2,479,612],[3,156,23,8],[2,479,614],[3,159,28,8],[2,479,616],[3,161,39,8],[2,479,618],[3,163,24,8],[2,479,620],[3,165,20,8],[2,479,622],[3,166,25,8],[2,479,624],[3,169,19,8],[2,479,626],[3,170,24,8],[2,479,628],[3,172,25,8],[2,479,630],[3,174,30,8],[2,479,632],[3,176,24,8],[2,479,634],[3,179,23,8],[2,479,636],[3,181,28,8],[2,479,638],[3,183,37,8],[2,479,640],[3,186,42,8],[2,479,642],[3,188,62,8],[2,479,644],[3,191,67,8],[2,479,646],[3,193,51,8],[2,479,648],[3,195,41,8],[2,479,650],[3,198,46,8],[2,479,652],[3,200,43,8],[2,479,654],[3,203,48,8],[2,479,656],[3,206,64,8],[2,479,658],[3,209,69,8],[2,479,660],[3,211,53,8],[2,479,662],[3,214,52,8],[2,479,664],[3,216,57,8],[2,479,666],[3,218,52,8],[2,479,668],[3,220,57,8],[2,479,670],[3,222,30,8],[2,479,672],[3,223,22,8],[2,479,674],[3,225,27,8],[2,479,676],[3,227,19,8],[2,479,678],[3,229,24,8],[2,479,680],[3,231,18,8],[2,479,682],[3,233,21,8],[2,479,684],[3,236,26,8],[2,479,686],[3,238,16,8],[2,479,688],[3,240,19,8],[2,479,690],[3,242,36,8],[2,479,692],[3,246,26,8],[2,694,9],[3,478,9],[2,479,252],[2,479,697],[3,253,16,8],[2,699,257],[3,696,14],[2,479,701],[3,258,20,8],[2,479,703],[3,260,16,8],[2,479,705],[3,262,21,8],[2,479,707],[3,264,20,8],[2,479,709],[3,266,25,8],[2,479,711],[3,268,17,8],[2,479,713],[3,271,22,8],[2,479,715],[3,273,20,8],[2,479,717],[3,275,21,8],[2,479,719],[3,278,23,8],[2,479,721],[3,280,18,8],[2,479,723],[3,282,22,8],[2,479,725],[3,285,22,8],[2,479,727],[3,287,22,8],[2,479,729],[3,289,40,8],[2,479,731],[3,292,36,8],[2,479,733],[3,295,30,8],[2,479,735],[3,298,35,8],[2,479,737],[3,300,37,8],[2,479,739],[3,301,50,8],[2,479,741],[3,305,55,8],[2,479,743],[3,307,33,8],[2,479,745],[3,310,38,8],[2,479,747],[3,312,26,8],[2,479,749],[3,313,32,8],[2,479,751],[3,316,37,8],[2,479,753],[3,318,41,8],[2,479,755],[3,320,46,8],[2,479,757],[3,322,31,8],[2,479,759],[3,324,36,8],[2,479,761],[3,326,46,8],[2,479,763],[3,328,34,8],[2,479,765],[3,330,39,8],[2,479,767],[3,332,30,8],[2,479,769],[3,335,35,8],[2,479,771],[3,337,30,8],[2,479,773],[3,339,35,8],[2,775,343],[3,714,10],[2,479,777],[3,344,16,8],[2,479,779],[3,346,22,8],[2,479,781],[3,348,27,8],[2,479,783],[3,350,30,8],[2,479,785],[3,353,35,8],[2,479,787],[3,355,21,8],[2,479,789],[3,358,26,8],[2,479,791],[3,360,22,8],[2,479,793],[3,362,27,8],[2,479,795],[3,364,23,8],[2,479,797],[3,366,23,8],[2,479,799],[3,368,28,8],[2,479,801],[3,370,22,8],[2,479,803],[3,372,27,8],[2,479,805],[3,374,18,8],[2,479,807],[3,376,23,8],[2,479,809],[3,378,20,8],[2,479,811],[3,381,32,8],[2,479,813],[3,384,25,8],[2,815,386],[3,778,14],[2,479,817],[3,387,19,8],[2,479,819],[3,389,17,8],[2,479,821],[3,391,22,8],[2,479,823],[3,393,21,8],[2,479,825],[3,395,26,8],[2,479,827],[3,397,17,8],[2,479,829],[3,400,22,8],[2,479,831],[3,402,24,8],[2,479,833],[3,405,29,8],[2,479,835],[3,407,30,8],[2,479,837],[3,409,35,8],[2,479,839],[3,411,17,8],[2,479,841],[3,413,22,8],[2,479,843],[3,415,27,8],[2,479,845],[3,417,32,8],[2,479,847],[3,419,24,8],[2,479,849],[3,422,29,8],[2,479,851],[3,424,22,8],[2,479,853],[3,426,17,8],[2,479,855],[3,429,22,8],[2,479,857],[3,431,22,8],[2,479,859],[3,433,27,8],[2,479,861],[3,435,17,8],[2,479,863],[3,437,22,8],[2,479,865],[3,439,22,8],[2,479,867],[3,442,27,8],[2,479,869],[3,444,20,8],[2,479,871],[3,446,25,8],[2,873,450],[3,868,16],[2,479,875],[3,451,20,8],[2,877,878],[3,872,18],"Api.d.ts",[2,479,880],[3,453,20,8],[2,479,882],[3,456,25,8],[2,479,884],[3,458,16,8],[2,815,461],[2,479,887],[3,462,19,8],[2,889,466],[3,885,15],[2,479,891],[3,467,20,8],[2,479,893],[3,469,23,8],[2,895,257],[3,892,27],[2,479,897],[3,471,28,8],[2,694,338],[2,479,900],[3,474,20,8],[2,479,902],[3,476,25,8],"fixtures/docValidator/parser/sample.ts",[2,905,906],[3,903,22],"sample-with-cspell-directives.ts",[2,908,909],[3,904,34],"directives-errors.ts",[2,908,911],"errors.ts",[2,908,913],"many-errors.ts","samples/bug-fixes/bug345.ts","src/lib/Cache/cspell.cache.test.ts",[2,917,918],[3,915,28],"s",[2,920,921],[3,915,14],"index.test.ts",[2,923,918],[3,919,21],[2,925,926,927],[3,915,8],[3,14,18],"ts",[2,929,930],[3,924,17],"index.ts",[2,932,933,934],[3,928,18],[3,19,11],"test.ts",[2,936,918],[3,931,30],[2,929,938,927],[3,23,21],[2,929,940,927],[3,25,16],[2,925,942,927],[3,27,31],[2,944,945],[3,941,29],"lags.ts",[2,947,930],[3,941,21],[2,925,949,934],[3,34,12],[2,951,918],[3,948,21],[2,925,953,927],[3,38,33],[2,955,956,934],[3,952,15],[3,41,14],[2,958,918],[3,954,30],[2,955,960,927],[3,45,11],[2,955,962,934],[3,47,13],[2,964,918],[3,961,29],[2,955,966,927],[3,51,16],[2,968,969],[3,965,25],"Result.ts",[2,925,971,934],[3,56,30],[2,973,918],[3,970,39],[2,975,976,934],[3,970,18],[3,61,22],[2,978,918],[3,974,41],[2,980,981,927],[3,974,28],[3,66,25],[2,983,69,984],[3,979,41],".test.ts",[2,986,918],[3,982,55],[2,988,989,927],[3,982,49],[3,75,8],[2,991,992],[3,982,47],"Search.test.ts",[2,994,918],[3,990,55],[2,991,996,934],[3,82,14],[2,998,918],[3,995,62],[2,983,86,1000],[3,982,19,42],[2,1002,918],[3,999,62],[2,1004,1005,918],[3,999,48],[3,130,10],[2,983,1007,927],[3,94,20],[2,983,930],[2,983,97,1010],[3,995,19,49],[2,1012,918],[3,1009,63],[2,983,1014,927],[3,102,13],[2,1016,1017],[3,1013,53],"Files.ts",[2,983,1019,927],[3,107,10],[2,1021,1022],[3,1018,42],"ypes.ts",[2,980,930],[2,980,1025,934],[3,113,10],[2,1027,918],[3,1024,39],[2,1029,1030,1031],[3,970,17],"Default",[3,995,16,52],[2,1033,918],[3,1028,34],[2,1035,1036,934],[3,1028,18],[3,124,29],[2,1038,918],[3,1034,48],[2,1040,1031],[3,1034,27],[2,1042,918],[3,1039,37],[2,1029,1044,1031],"Global",[2,1046,918],[3,1043,33],[2,1029,1048,1031],"InDoc",[2,1050,918],[3,1047,32],[2,1029,143,1031],[2,1053,918],[3,1051,35],[2,1029,1055,934],[3,147,15],[2,1057,918],[3,1054,33],[2,1029,1059,927],[3,1060,26],[3,152,30,18],[2,1062,918],[3,1058,39],[2,1029,1064,927],[3,155,21],[2,1066,1067,934],[3,1063,18],[3,158,8],[2,1069,918],[3,1065,27],[2,1066,1071,927],[3,162,24],[2,1066,1073,927],[3,164,9],[2,1029,1075],"index.link.ts",[2,1077,927],[3,1074,23],[2,1029,1079],"link.test.ts",[2,1081,918],[3,1078,23],[2,1029,1083,934],[3,173,11],[2,1085,918],[3,1082,29],[2,1087,1088],[3,1082,22],"List.ts",[2,1029,1090,934],[3,180,9],[2,1092,918],[3,1089,27],[2,1094,1095,934],[3,970,9],[3,185,31],[2,1097,918],[3,1093,41],[2,1099,1100,934],[3,1093,36],[3,190,29],[2,1102,918],[3,1098,66],[2,1104,930],[3,1098,48],[2,1106,1107,927],[3,1098,37],[3,1108,12],[3,71,16,48],[2,1110,918],[3,1105,45],[2,1112,1113,927],[3,1093,27],[3,202,19],[2,1115,1116],[3,1111,45],"Error.ts",[2,1118,1119,934],[3,1111,28],[3,208,39],[2,1121,918],[3,1117,68],[2,1123,1124,927],[3,1117,47],[3,213,9],[2,1123,1126,934],[3,215,8],[2,1128,918],[3,1125,56],[2,1123,1130,934],[3,219,8],[2,1132,918],[3,1129,56],[2,1112,930],[2,925,1135,934],[3,224,17],[2,1137,918],[3,1134,26],[2,925,1139,934],[3,228,14],[2,1141,918],[3,1138,23],[2,1143,930],[3,1138,15],[2,1145,1146,934],[3,1138,9],[3,235,15],[2,1148,918],[3,1144,25],[2,925,1150,927],[3,239,11],[2,925,1152,927],[3,241,14],[2,1154,244,1155],[3,1151,9],[3,1070,29,15],[2,1157,1158,927],[3,1153,14],[3,248,15],[2,925,921],[2,1161,918],[3,1159,15],[2,925,1163],"leaked-handles.d.ts",[2,925,1165],"node-namespace.d.ts",[2,925,1167,927],[3,254,11],[2,1169,1170],[3,1166,13],"perf.test.ts",[2,1172,918],[3,1168,19],[2,1169,1174],"timer.test.ts",[2,1176,918],[3,1173,20],[2,925,1178,934],[3,265,15],[2,1180,918],[3,1177,24],[2,1182,1183,934],[3,1177,9],[3,270,11],[2,1185,918],[3,1181,21],[2,925,1187,927],[3,274,15],[2,1189,1190,927],[3,1186,13],[3,277,11],[2,1189,1192,927],[3,279,13],[2,1189,1194,927],[3,281,8],[2,1196,1197,927],[3,1193,14],[3,284,11],[2,1189,1199,927],[3,286,12],[2,1189,1201,927],[3,288,12],[2,1203,1204,927],[3,1186,10],[3,291,33],[2,1206,1207,927],[3,1202,30],[3,294,9],[2,1209,1210,934],[3,1202,23],[3,297,10],[2,1212,918],[3,1208,34],[2,1209,86,1073,927],[2,1215,303,1216],[3,1213,25],[3,1058,28,17],[2,1218,918],[3,1214,54],[2,1220,1221,934],[3,1213,24],[3,309,12],[2,1223,918],[3,1219,37],[2,1209,930],[2,1226,1227,934],[3,1224,24],[3,315,11],[2,1229,918],[3,1225,36],[2,1209,1231,934],[3,319,21],[2,1233,918],[3,1230,45],[2,1209,1235,934],[3,323,11],[2,1237,918],[3,1234,35],[2,1209,1239,927],[3,327,26],[2,1209,1241,1242],"text",[3,1219,17,26],[2,1244,918],[3,1240,38],[2,1246,1247,934],[3,1240,24],[3,334,9],[2,1249,918],[3,1245,34],[2,1209,1251,1252],"v",[3,1219,16,27],[2,1254,918],[3,1250,34],[2,1256,1257],[3,1186,9],"race.test.ts",[2,1259,918],[3,1255,15],[2,925,1261,934],[3,347,17],[2,1263,918],[3,1260,26],[2,1265,1266,934],[3,1260,24],[3,352,9],[2,1268,918],[3,1264,34],[2,1270,1271,934],[3,1260,13],[3,357,11],[2,1273,918],[3,1269,25],[2,1270,1275,934],[3,361,12],[2,1277,918],[3,1274,26],[2,1270,1279,927],[3,365,13],[2,1270,1281,934],[3,367,13],[2,1283,918],[3,1280,27],[2,1270,1285,934],[3,371,12],[2,1287,918],[3,1284,26],[2,1270,1289,934],[3,375,8],[2,1291,918],[3,1288,22],[2,1293,1294],[3,1288,17],"Range.regexp.test.ts",[2,1296,934],[3,1292,23],[2,1298,918],[3,1295,24],[2,1270,1300],"Uri.test.ts",[2,1302,918],[3,1299,18],[2,1270,1304,1305],[3,911,8],"est.ts",[2,1307,918],[3,1303,21],[2,1270,1309,934],[3,394,11],[2,1311,918],[3,1308,25],[2,1313,1314],[3,1308,15],"ndUp.test.ts",[2,1316,918],[3,1312,21],[2,1318,1319,934],[3,1312,19],[3,404,8],[2,1321,918],[3,1317,28],[2,1270,1323,934],[3,408,20],[2,1325,918],[3,1322,34],[2,1270,1327],"logger.test.ts",[2,1329,918],[3,1326,21],[2,1270,1331,934],[3,416,17],[2,1333,918],[3,1330,31],[2,1335,1336],[3,1330,21],"rWeak.test.ts",[2,1338,918],[3,1334,28],[2,1270,1340,927],[3,425,12],[2,1342,1343],[3,1339,15],"pMap.test.ts",[2,1345,918],[3,1341,21],[2,1342,1347,934],[3,432,10],[2,1349,918],[3,1346,26],[2,1270,1351],"search.test.ts",[2,1353,918],[3,1350,21],[2,1355,1356,934],[3,1350,14],[3,441,11],[2,1358,918],[3,1354,26],[2,1270,1360,934],[3,445,10],[2,1362,918],[3,1359,24],[2,1364,1365],[3,1359,15],"xt.test.ts",[2,1367,918],[3,1363,19],[2,1369,1370],[3,1363,17],"Api.ts",[2,1369,1372],"Regex.test.ts",[2,1374,918],[3,1371,24],[2,1376,1022],[3,1359,14],[2,1270,1378],"url.test.ts",[2,1380,918],[3,1377,18],[2,1382,1383],[3,1377,14],"til.test.ts",[2,1385,918],[3,1381,19],[2,1270,1387,1388],[3,470,13],"perf.ts",[2,1390,934],[3,1386,26],[2,1392,918],[3,1389,27],[2,925,1394,927],[3,338,10],[2,925,1396,934],[3,475,15],[2,1398,918],[3,1395,24],""] diff --git a/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.jsonc b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.jsonc new file mode 100644 index 000000000000..77430005794a --- /dev/null +++ b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.jsonc @@ -0,0 +1,1402 @@ +[ +"Flatpack JSON v2", +[0,2,3,4,7,10,12,15,17,20,22,24,26,28,31,33,35,37,39,42,44,46,48,50,52,55,57,59,62,64,67,71,73,76,79,81,83,85,88,90,93,95,96,99,101,103,106,108,111,112,114,116,120,122,125,127,132,134,136,138,140,142,144,146,148,150,152,154,156,159,161,163,165,166,169,170,172,174,176,179,181,183,186,188,191,193,195,198,200,203,206,209,211,214,216,218,220,222,223,225,227,229,231,233,236,238,240,242,246,249,250,253,255,258,260,262,264,266,268,271,273,275,278,280,282,285,287,289,292,295,298,300,301,305,307,310,312,313,316,318,320,322,324,326,328,330,332,335,337,339,341,344,346,348,350,353,355,358,360,362,364,366,368,370,372,374,376,378,381,384,385,387,389,391,393,395,397,400,402,405,407,409,411,413,415,417,419,422,424,426,429,431,433,435,437,439,442,444,446,448,451,453,456,458,460,462,464,467,469,471,473,474,476,478,481,483,485,487,489,491,493,495,497,499,501,503,505,507,509,511,513,515,517,519,521,523,525,527,529,531,533,535,537,539,541,543,545,547,549,551,553,555,557,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599,601,603,605,607,609,611,613,615,617,619,621,623,625,627,629,631,633,635,637,639,641,643,645,647,649,651,653,655,657,659,661,663,665,667,669,671,673,675,677,679,681,683,685,687,689,691,693,695,696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734,736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798,800,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862,864,866,868,870,872,874,876,879,881,883,885,886,888,890,892,894,896,898,899,901,903,904,907,910,912,914,915,916,919,922,924,928,931,935,937,939,941,943,946,948,950,952,954,957,959,961,963,965,967,970,972,974,977,979,982,985,987,990,993,995,997,999,1001,1003,1006,1008,1009,1011,1013,1015,1018,1020,1023,1024,1026,1028,1032,1034,1037,1039,1041,1043,1045,1047,1049,1051,1052,1054,1056,1058,1061,1063,1065,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1089,1091,1093,1096,1098,1101,1103,1105,1109,1111,1114,1117,1120,1122,1125,1127,1129,1131,1133,1134,1136,1138,1140,1142,1144,1147,1149,1151,1153,1156,1159,1160,1162,1164,1166,1168,1171,1173,1175,1177,1179,1181,1184,1186,1188,1191,1193,1195,1198,1200,1202,1205,1208,1211,1213,1214,1217,1219,1222,1224,1225,1228,1230,1232,1234,1236,1238,1240,1243,1245,1248,1250,1253,1255,1258,1260,1262,1264,1267,1269,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1295,1297,1299,1301,1303,1306,1308,1310,1312,1315,1317,1320,1322,1324,1326,1328,1330,1332,1334,1337,1339,1341,1344,1346,1348,1350,1352,1354,1357,1359,1361,1363,1366,1368,1371,1373,1375,1377,1379,1381,1384,1386,1389,1391,1393,1395,1397,1399], +"api/api.d.ts", +"dist/esm/Cache/cspell.cache.d.ts", +[2,5,6], +[3,3,28], +"test.d.ts", +[2,8,9], +[3,3,15], +"index.d.ts", +[2,11,6], +[3,7,21], +[2,13,14], +[3,3,9], +"Document/Document.d.ts", +[2,16,9], +[3,12,18], +[2,18,19], +[3,15,19], +"sBinaryDoc.d.ts", +[2,21,6], +[3,17,30], +[2,16,23], +"normalizeLanguageIds.d.ts", +[2,16,25], +"resolveDocument.d.ts", +[2,13,27], +"FeatureFlags/FeatureFalgs.test.d.ts", +[2,29,30], +[3,26,30], +"lags.d.ts", +[2,32,9], +[3,26,22], +[2,13,34], +[3,23,16,9], +[2,36,6], +[3,33,21], +[2,13,38], +"Models/CSpellSettingsInternalDef.d.ts", +[2,40,41], +[3,37,16], +"PatternRegExp.d.ts", +[2,43,6], +[3,39,30], +[2,40,45], +"Suggestion.d.ts", +[2,40,47], +"TextDocument.d.ts", +[2,49,6], +[3,46,29], +[2,40,51], +"ValidationIssue.d.ts", +[2,53,54], +[3,50,26], +"Result.d.ts", +[2,13,56], +"Settings/CSpellSettingsServer.d.ts", +[2,58,6], +[3,55,39], +[2,60,61], +[3,55,19], +"ontroller/ImportError.d.ts", +[2,63,6], +[3,59,41], +[2,65,66], +[3,59,29], +"configLoader/PnPSettings.d.ts", +[2,68,69,70], +[3,64,42], +[3,66,12], +".d.ts", +[2,72,6], +[3,67,55], +[2,74,75], +[3,67,50], +"cations.d.ts", +[2,77,78], +[3,67,48], +"Search.d.ts", +[2,80,6], +[3,76,55], +[2,77,82], +"ToRawSettings.d.ts", +[2,84,6], +[3,81,62], +[2,68,86,87], +"defaultC", +[3,67,16,43], +[2,89,6], +[3,85,62], +[2,91,92,70], +[3,85,49], +[3,56,8], +[2,68,94], +"extractImportErrors.d.ts", +[2,68,9], +[2,68,97,98], +[3,23,9], +[3,82,16,2], +[2,100,6], +[3,96,63], +[2,68,102], +"readSettings.d.ts", +[2,104,105], +[3,101,54], +"Files.d.ts", +[2,68,107], +"toGlobDef.d.ts", +[2,109,110], +[3,106,43], +"ypes.d.ts", +[2,65,9], +[2,65,113], +"pnpLoader.d.ts", +[2,115,6], +[3,112,39], +[2,117,118,119], +[3,55,18], +"D", +[3,90,19,43], +[2,121,6], +[3,116,34], +[2,123,124], +[3,116,19], +"ictionaryReferenceCollection.d.ts", +[2,126,6], +[3,122,48], +[2,128,129,131], +[3,122,28], +[3,130,9], +[3,83,18,53], +"d.ts", +[2,133,6], +[3,127,37], +[2,117,135], +"GlobalSettings.d.ts", +[2,137,6], +[3,134,33], +[2,117,139], +"InDocSettings.d.ts", +[2,141,6], +[3,138,32], +[2,117,143,129,131], +[3,34,8], +[2,145,6], +[3,142,35], +[2,117,147], +"RegExpPatterns.d.ts", +[2,149,6], +[3,146,33], +[2,117,151,129,131], +[3,47,12], +[2,153,6], +[3,150,39], +[2,117,155], +"calcOverrideSettings.d.ts", +[2,157,158], +[3,154,19], +"fgStore.d.ts", +[2,160,6], +[3,156,27], +[2,157,162], +"heckFilenameMatchesGlob.d.ts", +[2,157,164], +"onstants.d.ts", +[2,117,9], +[2,167,168], +[3,165,24], +"link.d.ts", +[2,117,168], +[2,171,6], +[3,169,23], +[2,117,173], +"mergeCache.d.ts", +[2,175,6], +[3,172,29], +[2,177,178], +[3,172,23], +"List.d.ts", +[2,117,180], +"patterns.d.ts", +[2,182,6], +[3,179,27], +[2,184,185], +[3,55,10], +"pellingDictionary/Dictionaries.d.ts", +[2,187,6], +[3,183,41], +[2,189,190], +[3,183,37], +"yController/DictionaryLoader.d.ts", +[2,192,6], +[3,188,66], +[2,194,9], +[3,188,49], +[2,196,197], +[3,188,38], +"Loader.d.ts", +[2,199,6], +[3,195,45], +[2,201,202], +[3,183,28], +"SpellingDictionary.d.ts", +[2,204,205], +[3,200,46], +"Error.d.ts", +[2,207,208], +[3,200,29], +"uggestExperimental/SuggestionCollector.d.ts", +[2,210,6], +[3,206,68], +[2,212,213], +[3,206,48], +"entities.d.ts", +[2,212,215], +"helpers.d.ts", +[2,217,6], +[3,214,56], +[2,212,219], +"suggest.d.ts", +[2,221,6], +[3,218,56], +[2,201,9], +[2,13,224], +"clearCachedFiles.d.ts", +[2,226,6], +[3,223,26], +[2,13,228], +"events/events.d.ts", +[2,230,6], +[3,227,23], +[2,232,9], +[3,227,16], +[2,234,235], +[3,227,10], +"xclusionHelper.d.ts", +[2,237,6], +[3,233,25], +[2,13,239], +"fileSystem.d.ts", +[2,13,241], +"getDictionary.d.ts", +[2,243,244,245], +[3,240,10], +"lob", +[3,161,31,16], +[2,247,248], +[3,242,15], +"getGlobMatcher.d.ts", +[2,13,9], +[2,251,252], +[3,3,8], +[3,10,16,14], +[2,13,254], +"perf/index.d.ts", +[2,256,257], +[3,253,14], +"perf.d.ts", +[2,259,6], +[3,255,19], +[2,256,261], +"timer.d.ts", +[2,263,6], +[3,260,20], +[2,13,265], +"spellCheckFile.d.ts", +[2,267,6], +[3,264,24], +[2,269,270], +[3,264,10], +"uggestions.d.ts", +[2,272,6], +[3,268,21], +[2,13,274], +"test/bugs.spec.d.ts", +[2,276,277], +[3,273,14], +"dutch.spec.d.ts", +[2,276,279], +"english.spec.d.ts", +[2,276,281], +"fa.spec.d.ts", +[2,283,284], +[3,280,15], +"rench.spec.d.ts", +[2,276,286], +"golang.spec.d.ts", +[2,276,288], +"python.spec.d.ts", +[2,290,291], +[3,273,11], +"xtValidation/ValidateTextOptions.d.ts", +[2,293,294], +[3,289,31], +"ionTypes.d.ts", +[2,296,297], +[3,289,24], +"checkText.d.ts", +[2,299,6], +[3,295,34], +[2,296,86,164], +[2,302,303,304], +[3,300,26], +"termine", +[3,150,25,18], +[2,306,6], +[3,301,54], +[2,308,309], +[3,300,25], +"ocValidator.d.ts", +[2,311,6], +[3,307,37], +[2,296,9], +[2,314,315], +[3,312,25], +"sWordValid.d.ts", +[2,317,6], +[3,313,36], +[2,296,319], +"lineValidatorFactory.d.ts", +[2,321,6], +[3,318,45], +[2,296,323], +"parsedText.d.ts", +[2,325,6], +[3,322,35], +[2,296,327], +"settingsToValidateOptions.d.ts", +[2,296,329], +"textValidator.d.ts", +[2,331,6], +[3,328,38], +[2,333,334], +[3,328,25], +"raceWord.d.ts", +[2,336,6], +[3,332,34], +[2,296,338], +"validator.d.ts", +[2,340,6], +[3,337,34], +[2,342,343], +[3,273,10], +"race.d.ts", +[2,345,6], +[3,341,15], +[2,13,347], +"util/AutoResolve.d.ts", +[2,349,6], +[3,346,26], +[2,351,352], +[3,346,25], +"LRUCache.d.ts", +[2,354,6], +[3,350,34], +[2,356,357], +[3,346,14], +"Comparable.d.ts", +[2,359,6], +[3,355,25], +[2,356,361], +"FreqCounter.d.ts", +[2,363,6], +[3,360,26], +[2,356,365], +"IterableLike.d.ts", +[2,356,367], +"MinHeapQueue.d.ts", +[2,369,6], +[3,366,27], +[2,356,371], +"PairingHeap.d.ts", +[2,373,6], +[3,370,26], +[2,356,375], +"TextMap.d.ts", +[2,377,6], +[3,374,22], +[2,379,380], +[3,374,18], +"Range.d.ts", +[2,382,383], +[3,378,24], +"regexp.test.d.ts", +[2,382,6], +[2,356,386], +"Uri.d.ts", +[2,388,6], +[3,385,18], +[2,356,390], +"errors.d.ts", +[2,392,6], +[3,389,21], +[2,356,394], +"fileReader.d.ts", +[2,396,6], +[3,393,25], +[2,398,399], +[3,393,16], +"ndUp.d.ts", +[2,401,6], +[3,397,21], +[2,403,404], +[3,397,20], +"FromUrl.d.ts", +[2,406,6], +[3,402,28], +[2,356,408], +"iterableIteratorLib.d.ts", +[2,410,6], +[3,407,34], +[2,356,412], +"logger.d.ts", +[2,414,6], +[3,411,21], +[2,356,416], +"memorizeLastCall.d.ts", +[2,418,6], +[3,415,31], +[2,420,421], +[3,415,22], +"rWeak.d.ts", +[2,423,6], +[3,419,28], +[2,356,425], +"regexHelper.d.ts", +[2,427,428], +[3,424,16], +"pMap.d.ts", +[2,430,6], +[3,426,21], +[2,427,432], +"solveFile.d.ts", +[2,434,6], +[3,431,26], +[2,356,436], +"search.d.ts", +[2,438,6], +[3,435,21], +[2,440,441], +[3,435,15], +"impleCache.d.ts", +[2,443,6], +[3,439,26], +[2,356,445], +"templates.d.ts", +[2,447,6], +[3,444,24], +[2,449,450], +[3,444,16], +"xt.d.ts", +[2,452,6], +[3,448,19], +[2,454,455], +[3,448,18], +"Regex.d.ts", +[2,457,6], +[3,453,24], +[2,459,110], +[3,444,15], +[2,356,461], +"url.d.ts", +[2,463,6], +[3,460,18], +[2,465,466], +[3,460,15], +"til.d.ts", +[2,468,6], +[3,464,19], +[2,356,470], +"wordSplitter.d.ts", +[2,472,6], +[3,469,27], +[2,13,338], +[2,13,475], +"wordListHelper.d.ts", +[2,477,6], +[3,474,24], +[2,479,480], +"dist/lib", +[3,3,24,8], +[2,479,482], +[3,4,29,8], +[2,479,484], +[3,7,17,8], +[2,479,486], +[3,10,22,8], +[2,479,488], +[3,12,23,8], +[2,479,490], +[3,15,20,8], +[2,479,492], +[3,17,26,8], +[2,479,494], +[3,20,31,8], +[2,479,496], +[3,22,35,8], +[2,479,498], +[3,24,30,8], +[2,479,500], +[3,26,36,8], +[2,479,502], +[3,28,31,8], +[2,479,504], +[3,31,24,8], +[2,479,506], +[3,33,17,8], +[2,479,508], +[3,35,22,8], +[2,479,510], +[3,37,38,8], +[2,479,512], +[3,39,26,8], +[2,479,514], +[3,42,31,8], +[2,479,516], +[3,44,23,8], +[2,479,518], +[3,46,25,8], +[2,479,520], +[3,48,30,8], +[2,479,522], +[3,50,28,8], +[2,479,524], +[3,52,29,8], +[2,479,526], +[3,55,35,8], +[2,479,528], +[3,57,40,8], +[2,479,530], +[3,59,37,8], +[2,479,532], +[3,62,42,8], +[2,479,534], +[3,64,50,8], +[2,479,536], +[3,67,51,8], +[2,479,538], +[3,71,56,8], +[2,479,540], +[3,73,54,8], +[2,479,542], +[3,76,51,8], +[2,479,544], +[3,79,56,8], +[2,479,546], +[3,81,58,8], +[2,479,548], +[3,83,63,8], +[2,479,550], +[3,85,58,8], +[2,479,552], +[3,88,63,8], +[2,479,554], +[3,90,54,8], +[2,479,556], +[3,93,58,8], +[2,479,558], +[3,95,44,8], +[2,479,560], +[3,96,59,8], +[2,479,562], +[3,99,64,8], +[2,479,564], +[3,101,51,8], +[2,479,566], +[3,103,56,8], +[2,479,568], +[3,106,48,8], +[2,479,570], +[3,108,44,8], +[2,479,572], +[3,111,31,8], +[2,479,574], +[3,112,35,8], +[2,479,576], +[3,114,40,8], +[2,479,578], +[3,116,30,8], +[2,479,580], +[3,120,35,8], +[2,479,582], +[3,122,44,8], +[2,479,584], +[3,125,49,8], +[2,479,586], +[3,127,33,8], +[2,479,588], +[3,132,38,8], +[2,479,590], +[3,134,29,8], +[2,479,592], +[3,136,34,8], +[2,479,594], +[3,138,28,8], +[2,479,596], +[3,140,33,8], +[2,479,598], +[3,142,31,8], +[2,479,600], +[3,144,36,8], +[2,479,602], +[3,146,29,8], +[2,479,604], +[3,148,34,8], +[2,479,606], +[3,150,35,8], +[2,479,608], +[3,152,40,8], +[2,479,610], +[3,154,35,8], +[2,479,612], +[3,156,23,8], +[2,479,614], +[3,159,28,8], +[2,479,616], +[3,161,39,8], +[2,479,618], +[3,163,24,8], +[2,479,620], +[3,165,20,8], +[2,479,622], +[3,166,25,8], +[2,479,624], +[3,169,19,8], +[2,479,626], +[3,170,24,8], +[2,479,628], +[3,172,25,8], +[2,479,630], +[3,174,30,8], +[2,479,632], +[3,176,24,8], +[2,479,634], +[3,179,23,8], +[2,479,636], +[3,181,28,8], +[2,479,638], +[3,183,37,8], +[2,479,640], +[3,186,42,8], +[2,479,642], +[3,188,62,8], +[2,479,644], +[3,191,67,8], +[2,479,646], +[3,193,51,8], +[2,479,648], +[3,195,41,8], +[2,479,650], +[3,198,46,8], +[2,479,652], +[3,200,43,8], +[2,479,654], +[3,203,48,8], +[2,479,656], +[3,206,64,8], +[2,479,658], +[3,209,69,8], +[2,479,660], +[3,211,53,8], +[2,479,662], +[3,214,52,8], +[2,479,664], +[3,216,57,8], +[2,479,666], +[3,218,52,8], +[2,479,668], +[3,220,57,8], +[2,479,670], +[3,222,30,8], +[2,479,672], +[3,223,22,8], +[2,479,674], +[3,225,27,8], +[2,479,676], +[3,227,19,8], +[2,479,678], +[3,229,24,8], +[2,479,680], +[3,231,18,8], +[2,479,682], +[3,233,21,8], +[2,479,684], +[3,236,26,8], +[2,479,686], +[3,238,16,8], +[2,479,688], +[3,240,19,8], +[2,479,690], +[3,242,36,8], +[2,479,692], +[3,246,26,8], +[2,694,9], +[3,478,9], +[2,479,252], +[2,479,697], +[3,253,16,8], +[2,699,257], +[3,696,14], +[2,479,701], +[3,258,20,8], +[2,479,703], +[3,260,16,8], +[2,479,705], +[3,262,21,8], +[2,479,707], +[3,264,20,8], +[2,479,709], +[3,266,25,8], +[2,479,711], +[3,268,17,8], +[2,479,713], +[3,271,22,8], +[2,479,715], +[3,273,20,8], +[2,479,717], +[3,275,21,8], +[2,479,719], +[3,278,23,8], +[2,479,721], +[3,280,18,8], +[2,479,723], +[3,282,22,8], +[2,479,725], +[3,285,22,8], +[2,479,727], +[3,287,22,8], +[2,479,729], +[3,289,40,8], +[2,479,731], +[3,292,36,8], +[2,479,733], +[3,295,30,8], +[2,479,735], +[3,298,35,8], +[2,479,737], +[3,300,37,8], +[2,479,739], +[3,301,50,8], +[2,479,741], +[3,305,55,8], +[2,479,743], +[3,307,33,8], +[2,479,745], +[3,310,38,8], +[2,479,747], +[3,312,26,8], +[2,479,749], +[3,313,32,8], +[2,479,751], +[3,316,37,8], +[2,479,753], +[3,318,41,8], +[2,479,755], +[3,320,46,8], +[2,479,757], +[3,322,31,8], +[2,479,759], +[3,324,36,8], +[2,479,761], +[3,326,46,8], +[2,479,763], +[3,328,34,8], +[2,479,765], +[3,330,39,8], +[2,479,767], +[3,332,30,8], +[2,479,769], +[3,335,35,8], +[2,479,771], +[3,337,30,8], +[2,479,773], +[3,339,35,8], +[2,775,343], +[3,714,10], +[2,479,777], +[3,344,16,8], +[2,479,779], +[3,346,22,8], +[2,479,781], +[3,348,27,8], +[2,479,783], +[3,350,30,8], +[2,479,785], +[3,353,35,8], +[2,479,787], +[3,355,21,8], +[2,479,789], +[3,358,26,8], +[2,479,791], +[3,360,22,8], +[2,479,793], +[3,362,27,8], +[2,479,795], +[3,364,23,8], +[2,479,797], +[3,366,23,8], +[2,479,799], +[3,368,28,8], +[2,479,801], +[3,370,22,8], +[2,479,803], +[3,372,27,8], +[2,479,805], +[3,374,18,8], +[2,479,807], +[3,376,23,8], +[2,479,809], +[3,378,20,8], +[2,479,811], +[3,381,32,8], +[2,479,813], +[3,384,25,8], +[2,815,386], +[3,778,14], +[2,479,817], +[3,387,19,8], +[2,479,819], +[3,389,17,8], +[2,479,821], +[3,391,22,8], +[2,479,823], +[3,393,21,8], +[2,479,825], +[3,395,26,8], +[2,479,827], +[3,397,17,8], +[2,479,829], +[3,400,22,8], +[2,479,831], +[3,402,24,8], +[2,479,833], +[3,405,29,8], +[2,479,835], +[3,407,30,8], +[2,479,837], +[3,409,35,8], +[2,479,839], +[3,411,17,8], +[2,479,841], +[3,413,22,8], +[2,479,843], +[3,415,27,8], +[2,479,845], +[3,417,32,8], +[2,479,847], +[3,419,24,8], +[2,479,849], +[3,422,29,8], +[2,479,851], +[3,424,22,8], +[2,479,853], +[3,426,17,8], +[2,479,855], +[3,429,22,8], +[2,479,857], +[3,431,22,8], +[2,479,859], +[3,433,27,8], +[2,479,861], +[3,435,17,8], +[2,479,863], +[3,437,22,8], +[2,479,865], +[3,439,22,8], +[2,479,867], +[3,442,27,8], +[2,479,869], +[3,444,20,8], +[2,479,871], +[3,446,25,8], +[2,873,450], +[3,868,16], +[2,479,875], +[3,451,20,8], +[2,877,878], +[3,872,18], +"Api.d.ts", +[2,479,880], +[3,453,20,8], +[2,479,882], +[3,456,25,8], +[2,479,884], +[3,458,16,8], +[2,815,461], +[2,479,887], +[3,462,19,8], +[2,889,466], +[3,885,15], +[2,479,891], +[3,467,20,8], +[2,479,893], +[3,469,23,8], +[2,895,257], +[3,892,27], +[2,479,897], +[3,471,28,8], +[2,694,338], +[2,479,900], +[3,474,20,8], +[2,479,902], +[3,476,25,8], +"fixtures/docValidator/parser/sample.ts", +[2,905,906], +[3,903,22], +"sample-with-cspell-directives.ts", +[2,908,909], +[3,904,34], +"directives-errors.ts", +[2,908,911], +"errors.ts", +[2,908,913], +"many-errors.ts", +"samples/bug-fixes/bug345.ts", +"src/lib/Cache/cspell.cache.test.ts", +[2,917,918], +[3,915,28], +"s", +[2,920,921], +[3,915,14], +"index.test.ts", +[2,923,918], +[3,919,21], +[2,925,926,927], +[3,915,8], +[3,14,18], +"ts", +[2,929,930], +[3,924,17], +"index.ts", +[2,932,933,934], +[3,928,18], +[3,19,11], +"test.ts", +[2,936,918], +[3,931,30], +[2,929,938,927], +[3,23,21], +[2,929,940,927], +[3,25,16], +[2,925,942,927], +[3,27,31], +[2,944,945], +[3,941,29], +"lags.ts", +[2,947,930], +[3,941,21], +[2,925,949,934], +[3,34,12], +[2,951,918], +[3,948,21], +[2,925,953,927], +[3,38,33], +[2,955,956,934], +[3,952,15], +[3,41,14], +[2,958,918], +[3,954,30], +[2,955,960,927], +[3,45,11], +[2,955,962,934], +[3,47,13], +[2,964,918], +[3,961,29], +[2,955,966,927], +[3,51,16], +[2,968,969], +[3,965,25], +"Result.ts", +[2,925,971,934], +[3,56,30], +[2,973,918], +[3,970,39], +[2,975,976,934], +[3,970,18], +[3,61,22], +[2,978,918], +[3,974,41], +[2,980,981,927], +[3,974,28], +[3,66,25], +[2,983,69,984], +[3,979,41], +".test.ts", +[2,986,918], +[3,982,55], +[2,988,989,927], +[3,982,49], +[3,75,8], +[2,991,992], +[3,982,47], +"Search.test.ts", +[2,994,918], +[3,990,55], +[2,991,996,934], +[3,82,14], +[2,998,918], +[3,995,62], +[2,983,86,1000], +[3,982,19,42], +[2,1002,918], +[3,999,62], +[2,1004,1005,918], +[3,999,48], +[3,130,10], +[2,983,1007,927], +[3,94,20], +[2,983,930], +[2,983,97,1010], +[3,995,19,49], +[2,1012,918], +[3,1009,63], +[2,983,1014,927], +[3,102,13], +[2,1016,1017], +[3,1013,53], +"Files.ts", +[2,983,1019,927], +[3,107,10], +[2,1021,1022], +[3,1018,42], +"ypes.ts", +[2,980,930], +[2,980,1025,934], +[3,113,10], +[2,1027,918], +[3,1024,39], +[2,1029,1030,1031], +[3,970,17], +"Default", +[3,995,16,52], +[2,1033,918], +[3,1028,34], +[2,1035,1036,934], +[3,1028,18], +[3,124,29], +[2,1038,918], +[3,1034,48], +[2,1040,1031], +[3,1034,27], +[2,1042,918], +[3,1039,37], +[2,1029,1044,1031], +"Global", +[2,1046,918], +[3,1043,33], +[2,1029,1048,1031], +"InDoc", +[2,1050,918], +[3,1047,32], +[2,1029,143,1031], +[2,1053,918], +[3,1051,35], +[2,1029,1055,934], +[3,147,15], +[2,1057,918], +[3,1054,33], +[2,1029,1059,927], +[3,1060,26], +[3,152,30,18], +[2,1062,918], +[3,1058,39], +[2,1029,1064,927], +[3,155,21], +[2,1066,1067,934], +[3,1063,18], +[3,158,8], +[2,1069,918], +[3,1065,27], +[2,1066,1071,927], +[3,162,24], +[2,1066,1073,927], +[3,164,9], +[2,1029,1075], +"index.link.ts", +[2,1077,927], +[3,1074,23], +[2,1029,1079], +"link.test.ts", +[2,1081,918], +[3,1078,23], +[2,1029,1083,934], +[3,173,11], +[2,1085,918], +[3,1082,29], +[2,1087,1088], +[3,1082,22], +"List.ts", +[2,1029,1090,934], +[3,180,9], +[2,1092,918], +[3,1089,27], +[2,1094,1095,934], +[3,970,9], +[3,185,31], +[2,1097,918], +[3,1093,41], +[2,1099,1100,934], +[3,1093,36], +[3,190,29], +[2,1102,918], +[3,1098,66], +[2,1104,930], +[3,1098,48], +[2,1106,1107,927], +[3,1098,37], +[3,1108,12], +[3,71,16,48], +[2,1110,918], +[3,1105,45], +[2,1112,1113,927], +[3,1093,27], +[3,202,19], +[2,1115,1116], +[3,1111,45], +"Error.ts", +[2,1118,1119,934], +[3,1111,28], +[3,208,39], +[2,1121,918], +[3,1117,68], +[2,1123,1124,927], +[3,1117,47], +[3,213,9], +[2,1123,1126,934], +[3,215,8], +[2,1128,918], +[3,1125,56], +[2,1123,1130,934], +[3,219,8], +[2,1132,918], +[3,1129,56], +[2,1112,930], +[2,925,1135,934], +[3,224,17], +[2,1137,918], +[3,1134,26], +[2,925,1139,934], +[3,228,14], +[2,1141,918], +[3,1138,23], +[2,1143,930], +[3,1138,15], +[2,1145,1146,934], +[3,1138,9], +[3,235,15], +[2,1148,918], +[3,1144,25], +[2,925,1150,927], +[3,239,11], +[2,925,1152,927], +[3,241,14], +[2,1154,244,1155], +[3,1151,9], +[3,1070,29,15], +[2,1157,1158,927], +[3,1153,14], +[3,248,15], +[2,925,921], +[2,1161,918], +[3,1159,15], +[2,925,1163], +"leaked-handles.d.ts", +[2,925,1165], +"node-namespace.d.ts", +[2,925,1167,927], +[3,254,11], +[2,1169,1170], +[3,1166,13], +"perf.test.ts", +[2,1172,918], +[3,1168,19], +[2,1169,1174], +"timer.test.ts", +[2,1176,918], +[3,1173,20], +[2,925,1178,934], +[3,265,15], +[2,1180,918], +[3,1177,24], +[2,1182,1183,934], +[3,1177,9], +[3,270,11], +[2,1185,918], +[3,1181,21], +[2,925,1187,927], +[3,274,15], +[2,1189,1190,927], +[3,1186,13], +[3,277,11], +[2,1189,1192,927], +[3,279,13], +[2,1189,1194,927], +[3,281,8], +[2,1196,1197,927], +[3,1193,14], +[3,284,11], +[2,1189,1199,927], +[3,286,12], +[2,1189,1201,927], +[3,288,12], +[2,1203,1204,927], +[3,1186,10], +[3,291,33], +[2,1206,1207,927], +[3,1202,30], +[3,294,9], +[2,1209,1210,934], +[3,1202,23], +[3,297,10], +[2,1212,918], +[3,1208,34], +[2,1209,86,1073,927], +[2,1215,303,1216], +[3,1213,25], +[3,1058,28,17], +[2,1218,918], +[3,1214,54], +[2,1220,1221,934], +[3,1213,24], +[3,309,12], +[2,1223,918], +[3,1219,37], +[2,1209,930], +[2,1226,1227,934], +[3,1224,24], +[3,315,11], +[2,1229,918], +[3,1225,36], +[2,1209,1231,934], +[3,319,21], +[2,1233,918], +[3,1230,45], +[2,1209,1235,934], +[3,323,11], +[2,1237,918], +[3,1234,35], +[2,1209,1239,927], +[3,327,26], +[2,1209,1241,1242], +"text", +[3,1219,17,26], +[2,1244,918], +[3,1240,38], +[2,1246,1247,934], +[3,1240,24], +[3,334,9], +[2,1249,918], +[3,1245,34], +[2,1209,1251,1252], +"v", +[3,1219,16,27], +[2,1254,918], +[3,1250,34], +[2,1256,1257], +[3,1186,9], +"race.test.ts", +[2,1259,918], +[3,1255,15], +[2,925,1261,934], +[3,347,17], +[2,1263,918], +[3,1260,26], +[2,1265,1266,934], +[3,1260,24], +[3,352,9], +[2,1268,918], +[3,1264,34], +[2,1270,1271,934], +[3,1260,13], +[3,357,11], +[2,1273,918], +[3,1269,25], +[2,1270,1275,934], +[3,361,12], +[2,1277,918], +[3,1274,26], +[2,1270,1279,927], +[3,365,13], +[2,1270,1281,934], +[3,367,13], +[2,1283,918], +[3,1280,27], +[2,1270,1285,934], +[3,371,12], +[2,1287,918], +[3,1284,26], +[2,1270,1289,934], +[3,375,8], +[2,1291,918], +[3,1288,22], +[2,1293,1294], +[3,1288,17], +"Range.regexp.test.ts", +[2,1296,934], +[3,1292,23], +[2,1298,918], +[3,1295,24], +[2,1270,1300], +"Uri.test.ts", +[2,1302,918], +[3,1299,18], +[2,1270,1304,1305], +[3,911,8], +"est.ts", +[2,1307,918], +[3,1303,21], +[2,1270,1309,934], +[3,394,11], +[2,1311,918], +[3,1308,25], +[2,1313,1314], +[3,1308,15], +"ndUp.test.ts", +[2,1316,918], +[3,1312,21], +[2,1318,1319,934], +[3,1312,19], +[3,404,8], +[2,1321,918], +[3,1317,28], +[2,1270,1323,934], +[3,408,20], +[2,1325,918], +[3,1322,34], +[2,1270,1327], +"logger.test.ts", +[2,1329,918], +[3,1326,21], +[2,1270,1331,934], +[3,416,17], +[2,1333,918], +[3,1330,31], +[2,1335,1336], +[3,1330,21], +"rWeak.test.ts", +[2,1338,918], +[3,1334,28], +[2,1270,1340,927], +[3,425,12], +[2,1342,1343], +[3,1339,15], +"pMap.test.ts", +[2,1345,918], +[3,1341,21], +[2,1342,1347,934], +[3,432,10], +[2,1349,918], +[3,1346,26], +[2,1270,1351], +"search.test.ts", +[2,1353,918], +[3,1350,21], +[2,1355,1356,934], +[3,1350,14], +[3,441,11], +[2,1358,918], +[3,1354,26], +[2,1270,1360,934], +[3,445,10], +[2,1362,918], +[3,1359,24], +[2,1364,1365], +[3,1359,15], +"xt.test.ts", +[2,1367,918], +[3,1363,19], +[2,1369,1370], +[3,1363,17], +"Api.ts", +[2,1369,1372], +"Regex.test.ts", +[2,1374,918], +[3,1371,24], +[2,1376,1022], +[3,1359,14], +[2,1270,1378], +"url.test.ts", +[2,1380,918], +[3,1377,18], +[2,1382,1383], +[3,1377,14], +"til.test.ts", +[2,1385,918], +[3,1381,19], +[2,1270,1387,1388], +[3,470,13], +"perf.ts", +[2,1390,934], +[3,1386,26], +[2,1392,918], +[3,1389,27], +[2,925,1394,927], +[3,338,10], +[2,925,1396,934], +[3,475,15], +[2,1398,918], +[3,1395,24], +"" +] diff --git a/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.data.json b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.data.json new file mode 100644 index 000000000000..bdd1c2800aaa --- /dev/null +++ b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.data.json @@ -0,0 +1 @@ +[{"filename":"api/api.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Cache/cspell.cache.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Cache/cspell.cache.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Cache/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Cache/index.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Document/Document.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Document/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Document/isBinaryDoc.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Document/isBinaryDoc.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Document/normalizeLanguageIds.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Document/resolveDocument.d.ts","fileType":["typescript"]},{"filename":"dist/esm/FeatureFlags/FeatureFalgs.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/FeatureFlags/FeatureFlags.d.ts","fileType":["typescript"]},{"filename":"dist/esm/FeatureFlags/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/LanguageIds.d.ts","fileType":["typescript"]},{"filename":"dist/esm/LanguageIds.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/CSpellSettingsInternalDef.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/PatternRegExp.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/PatternRegExp.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/Suggestion.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/TextDocument.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/TextDocument.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/ValidationIssue.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/ValidationResult.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/CSpellSettingsServer.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/CSpellSettingsServer.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/ImportError.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/ImportError.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/PnPSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/configLoader.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/configLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/configLocations.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/configSearch.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/configSearch.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/configToRawSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/configToRawSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/defaultConfigLoader.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/defaultSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/extractImportErrors.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/normalizeRawSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/readSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/readSettingsFiles.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/toGlobDef.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/types.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/pnpLoader.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/pnpLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/DefaultSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/DefaultSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/DictionaryReferenceCollection.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/DictionaryReferenceCollection.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/DictionarySettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/DictionarySettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/GlobalSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/GlobalSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/InDocSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/InDocSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/LanguageSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/LanguageSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/RegExpPatterns.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/RegExpPatterns.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/TextDocumentSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/TextDocumentSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/calcOverrideSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/cfgStore.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/cfgStore.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/checkFilenameMatchesGlob.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/constants.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/index.link.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/link.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/link.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/mergeCache.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/mergeCache.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/mergeList.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/patterns.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/patterns.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/Dictionaries.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/Dictionaries.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/DictionaryController/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/DictionaryLoader.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/DictionaryLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SpellingDictionary.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SpellingDictionaryError.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SuggestExperimental/entities.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SuggestExperimental/helpers.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SuggestExperimental/helpers.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SuggestExperimental/suggest.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SuggestExperimental/suggest.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/clearCachedFiles.d.ts","fileType":["typescript"]},{"filename":"dist/esm/clearCachedFiles.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/events/events.d.ts","fileType":["typescript"]},{"filename":"dist/esm/events/events.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/events/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/exclusionHelper.d.ts","fileType":["typescript"]},{"filename":"dist/esm/exclusionHelper.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/fileSystem.d.ts","fileType":["typescript"]},{"filename":"dist/esm/getDictionary.d.ts","fileType":["typescript"]},{"filename":"dist/esm/globs/checkFilenameMatchesGlob.d.ts","fileType":["typescript"]},{"filename":"dist/esm/globs/getGlobMatcher.d.ts","fileType":["typescript"]},{"filename":"dist/esm/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/index.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/perf/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/perf/perf.d.ts","fileType":["typescript"]},{"filename":"dist/esm/perf/perf.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/perf/timer.d.ts","fileType":["typescript"]},{"filename":"dist/esm/perf/timer.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/spellCheckFile.d.ts","fileType":["typescript"]},{"filename":"dist/esm/spellCheckFile.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/suggestions.d.ts","fileType":["typescript"]},{"filename":"dist/esm/suggestions.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/test/bugs.spec.d.ts","fileType":["typescript"]},{"filename":"dist/esm/test/dutch.spec.d.ts","fileType":["typescript"]},{"filename":"dist/esm/test/english.spec.d.ts","fileType":["typescript"]},{"filename":"dist/esm/test/fa.spec.d.ts","fileType":["typescript"]},{"filename":"dist/esm/test/french.spec.d.ts","fileType":["typescript"]},{"filename":"dist/esm/test/golang.spec.d.ts","fileType":["typescript"]},{"filename":"dist/esm/test/python.spec.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/ValidateTextOptions.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/ValidationTypes.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/checkText.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/checkText.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/defaultConstants.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/determineTextDocumentSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/determineTextDocumentSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/docValidator.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/docValidator.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/isWordValid.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/isWordValid.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/lineValidatorFactory.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/lineValidatorFactory.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/parsedText.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/parsedText.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/settingsToValidateOptions.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/textValidator.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/textValidator.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/traceWord.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/traceWord.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/validator.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/validator.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/trace.d.ts","fileType":["typescript"]},{"filename":"dist/esm/trace.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/AutoResolve.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/AutoResolve.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/AutoResolveLRUCache.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/AutoResolveLRUCache.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/Comparable.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/Comparable.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/FreqCounter.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/FreqCounter.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/IterableLike.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/MinHeapQueue.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/MinHeapQueue.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/PairingHeap.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/PairingHeap.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/TextMap.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/TextMap.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/TextRange.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/TextRange.regexp.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/TextRange.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/Uri.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/Uri.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/errors.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/errors.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/fileReader.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/fileReader.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/findUp.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/findUp.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/findUpFromUrl.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/findUpFromUrl.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/iterableIteratorLib.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/iterableIteratorLib.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/logger.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/logger.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/memorizeLastCall.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/memorizeLastCall.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/memorizerWeak.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/memorizerWeak.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/regexHelper.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/repMap.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/repMap.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/resolveFile.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/resolveFile.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/search.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/search.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/simpleCache.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/simpleCache.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/templates.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/templates.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/text.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/text.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/textRegex.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/textRegex.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/types.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/url.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/url.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/util.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/util.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/wordSplitter.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/wordSplitter.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/validator.d.ts","fileType":["typescript"]},{"filename":"dist/esm/wordListHelper.d.ts","fileType":["typescript"]},{"filename":"dist/esm/wordListHelper.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Cache/cspell.cache.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Cache/cspell.cache.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Cache/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Cache/index.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Document/Document.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Document/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Document/isBinaryDoc.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Document/isBinaryDoc.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Document/normalizeLanguageIds.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Document/resolveDocument.d.ts","fileType":["typescript"]},{"filename":"dist/lib/FeatureFlags/FeatureFalgs.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/FeatureFlags/FeatureFlags.d.ts","fileType":["typescript"]},{"filename":"dist/lib/FeatureFlags/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/LanguageIds.d.ts","fileType":["typescript"]},{"filename":"dist/lib/LanguageIds.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/CSpellSettingsInternalDef.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/PatternRegExp.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/PatternRegExp.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/Suggestion.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/TextDocument.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/TextDocument.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/ValidationIssue.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/ValidationResult.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/CSpellSettingsServer.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/CSpellSettingsServer.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/ImportError.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/ImportError.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/PnPSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/configLoader.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/configLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/configLocations.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/configSearch.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/configSearch.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/configToRawSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/configToRawSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/defaultConfigLoader.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/defaultSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/extractImportErrors.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/normalizeRawSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/readSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/readSettingsFiles.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/toGlobDef.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/types.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/pnpLoader.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/pnpLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/DefaultSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/DefaultSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/DictionaryReferenceCollection.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/DictionaryReferenceCollection.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/DictionarySettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/DictionarySettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/GlobalSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/GlobalSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/InDocSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/InDocSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/LanguageSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/LanguageSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/RegExpPatterns.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/RegExpPatterns.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/TextDocumentSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/TextDocumentSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/calcOverrideSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/cfgStore.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/cfgStore.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/checkFilenameMatchesGlob.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/constants.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/index.link.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/link.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/link.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/mergeCache.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/mergeCache.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/mergeList.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/patterns.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/patterns.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/Dictionaries.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/Dictionaries.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/DictionaryController/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/DictionaryLoader.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/DictionaryLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SpellingDictionary.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SpellingDictionaryError.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SuggestExperimental/entities.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SuggestExperimental/helpers.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SuggestExperimental/helpers.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SuggestExperimental/suggest.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SuggestExperimental/suggest.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/clearCachedFiles.d.ts","fileType":["typescript"]},{"filename":"dist/lib/clearCachedFiles.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/events/events.d.ts","fileType":["typescript"]},{"filename":"dist/lib/events/events.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/events/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/exclusionHelper.d.ts","fileType":["typescript"]},{"filename":"dist/lib/exclusionHelper.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/fileSystem.d.ts","fileType":["typescript"]},{"filename":"dist/lib/getDictionary.d.ts","fileType":["typescript"]},{"filename":"dist/lib/globs/checkFilenameMatchesGlob.d.ts","fileType":["typescript"]},{"filename":"dist/lib/globs/getGlobMatcher.d.ts","fileType":["typescript"]},{"filename":"dist/lib/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/index.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/perf/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/perf/perf.d.ts","fileType":["typescript"]},{"filename":"dist/lib/perf/perf.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/perf/timer.d.ts","fileType":["typescript"]},{"filename":"dist/lib/perf/timer.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/spellCheckFile.d.ts","fileType":["typescript"]},{"filename":"dist/lib/spellCheckFile.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/suggestions.d.ts","fileType":["typescript"]},{"filename":"dist/lib/suggestions.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/test/bugs.spec.d.ts","fileType":["typescript"]},{"filename":"dist/lib/test/dutch.spec.d.ts","fileType":["typescript"]},{"filename":"dist/lib/test/english.spec.d.ts","fileType":["typescript"]},{"filename":"dist/lib/test/fa.spec.d.ts","fileType":["typescript"]},{"filename":"dist/lib/test/french.spec.d.ts","fileType":["typescript"]},{"filename":"dist/lib/test/golang.spec.d.ts","fileType":["typescript"]},{"filename":"dist/lib/test/python.spec.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/ValidateTextOptions.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/ValidationTypes.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/checkText.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/checkText.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/defaultConstants.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/determineTextDocumentSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/determineTextDocumentSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/docValidator.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/docValidator.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/isWordValid.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/isWordValid.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/lineValidatorFactory.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/lineValidatorFactory.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/parsedText.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/parsedText.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/settingsToValidateOptions.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/textValidator.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/textValidator.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/traceWord.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/traceWord.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/validator.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/validator.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/trace.d.ts","fileType":["typescript"]},{"filename":"dist/lib/trace.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/AutoResolve.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/AutoResolve.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/AutoResolveLRUCache.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/AutoResolveLRUCache.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/Comparable.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/Comparable.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/FreqCounter.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/FreqCounter.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/IterableLike.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/MinHeapQueue.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/MinHeapQueue.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/PairingHeap.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/PairingHeap.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/TextMap.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/TextMap.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/TextRange.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/TextRange.regexp.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/TextRange.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/Uri.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/Uri.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/errors.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/errors.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/fileReader.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/fileReader.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/findUp.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/findUp.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/findUpFromUrl.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/findUpFromUrl.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/iterableIteratorLib.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/iterableIteratorLib.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/logger.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/logger.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/memorizeLastCall.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/memorizeLastCall.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/memorizerWeak.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/memorizerWeak.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/regexHelper.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/repMap.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/repMap.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/resolveFile.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/resolveFile.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/search.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/search.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/simpleCache.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/simpleCache.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/templates.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/templates.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/text.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/text.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/textApi.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/textRegex.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/textRegex.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/types.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/url.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/url.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/util.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/util.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/wordSplitter.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/wordSplitter.perf.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/wordSplitter.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/validator.d.ts","fileType":["typescript"]},{"filename":"dist/lib/wordListHelper.d.ts","fileType":["typescript"]},{"filename":"dist/lib/wordListHelper.test.d.ts","fileType":["typescript"]},{"filename":"fixtures/docValidator/parser/sample.ts","fileType":["typescript"]},{"filename":"fixtures/docValidator/sample-with-cspell-directives.ts","fileType":["typescript"]},{"filename":"fixtures/docValidator/sample-with-directives-errors.ts","fileType":["typescript"]},{"filename":"fixtures/docValidator/sample-with-errors.ts","fileType":["typescript"]},{"filename":"fixtures/docValidator/sample-with-many-errors.ts","fileType":["typescript"]},{"filename":"samples/bug-fixes/bug345.ts","fileType":["typescript"]},{"filename":"src/lib/Cache/cspell.cache.test.ts","fileType":["typescript"]},{"filename":"src/lib/Cache/cspell.cache.ts","fileType":["typescript"]},{"filename":"src/lib/Cache/index.test.ts","fileType":["typescript"]},{"filename":"src/lib/Cache/index.ts","fileType":["typescript"]},{"filename":"src/lib/Document/Document.ts","fileType":["typescript"]},{"filename":"src/lib/Document/index.ts","fileType":["typescript"]},{"filename":"src/lib/Document/isBinaryDoc.test.ts","fileType":["typescript"]},{"filename":"src/lib/Document/isBinaryDoc.ts","fileType":["typescript"]},{"filename":"src/lib/Document/normalizeLanguageIds.ts","fileType":["typescript"]},{"filename":"src/lib/Document/resolveDocument.ts","fileType":["typescript"]},{"filename":"src/lib/FeatureFlags/FeatureFalgs.test.ts","fileType":["typescript"]},{"filename":"src/lib/FeatureFlags/FeatureFlags.ts","fileType":["typescript"]},{"filename":"src/lib/FeatureFlags/index.ts","fileType":["typescript"]},{"filename":"src/lib/LanguageIds.test.ts","fileType":["typescript"]},{"filename":"src/lib/LanguageIds.ts","fileType":["typescript"]},{"filename":"src/lib/Models/CSpellSettingsInternalDef.ts","fileType":["typescript"]},{"filename":"src/lib/Models/PatternRegExp.test.ts","fileType":["typescript"]},{"filename":"src/lib/Models/PatternRegExp.ts","fileType":["typescript"]},{"filename":"src/lib/Models/Suggestion.ts","fileType":["typescript"]},{"filename":"src/lib/Models/TextDocument.test.ts","fileType":["typescript"]},{"filename":"src/lib/Models/TextDocument.ts","fileType":["typescript"]},{"filename":"src/lib/Models/ValidationIssue.ts","fileType":["typescript"]},{"filename":"src/lib/Models/ValidationResult.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/CSpellSettingsServer.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/CSpellSettingsServer.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/ImportError.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/ImportError.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/PnPSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/configLoader.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/configLoader.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/configLocations.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/configSearch.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/configSearch.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/configToRawSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/configToRawSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/defaultConfigLoader.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/defaultConfigLoader.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/defaultSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/extractImportErrors.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/index.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/normalizeRawSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/normalizeRawSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/readSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/readSettingsFiles.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/toGlobDef.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/types.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/index.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/pnpLoader.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/pnpLoader.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/DefaultSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/DefaultSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/DictionaryReferenceCollection.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/DictionaryReferenceCollection.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/DictionarySettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/DictionarySettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/GlobalSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/GlobalSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/InDocSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/InDocSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/LanguageSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/LanguageSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/RegExpPatterns.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/RegExpPatterns.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/TextDocumentSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/TextDocumentSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/calcOverrideSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/cfgStore.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/cfgStore.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/checkFilenameMatchesGlob.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/constants.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/index.link.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/index.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/link.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/link.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/mergeCache.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/mergeCache.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/mergeList.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/patterns.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/patterns.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/Dictionaries.test.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/Dictionaries.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/DictionaryController/index.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/DictionaryLoader.test.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/DictionaryLoader.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SpellingDictionary.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SpellingDictionaryError.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SuggestExperimental/entities.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SuggestExperimental/helpers.test.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SuggestExperimental/helpers.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SuggestExperimental/suggest.test.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SuggestExperimental/suggest.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/index.ts","fileType":["typescript"]},{"filename":"src/lib/clearCachedFiles.test.ts","fileType":["typescript"]},{"filename":"src/lib/clearCachedFiles.ts","fileType":["typescript"]},{"filename":"src/lib/events/events.test.ts","fileType":["typescript"]},{"filename":"src/lib/events/events.ts","fileType":["typescript"]},{"filename":"src/lib/events/index.ts","fileType":["typescript"]},{"filename":"src/lib/exclusionHelper.test.ts","fileType":["typescript"]},{"filename":"src/lib/exclusionHelper.ts","fileType":["typescript"]},{"filename":"src/lib/fileSystem.ts","fileType":["typescript"]},{"filename":"src/lib/getDictionary.ts","fileType":["typescript"]},{"filename":"src/lib/globs/checkFilenameMatchesGlob.ts","fileType":["typescript"]},{"filename":"src/lib/globs/getGlobMatcher.ts","fileType":["typescript"]},{"filename":"src/lib/index.test.ts","fileType":["typescript"]},{"filename":"src/lib/index.ts","fileType":["typescript"]},{"filename":"src/lib/leaked-handles.d.ts","fileType":["typescript"]},{"filename":"src/lib/node-namespace.d.ts","fileType":["typescript"]},{"filename":"src/lib/perf/index.ts","fileType":["typescript"]},{"filename":"src/lib/perf/perf.test.ts","fileType":["typescript"]},{"filename":"src/lib/perf/perf.ts","fileType":["typescript"]},{"filename":"src/lib/perf/timer.test.ts","fileType":["typescript"]},{"filename":"src/lib/perf/timer.ts","fileType":["typescript"]},{"filename":"src/lib/spellCheckFile.test.ts","fileType":["typescript"]},{"filename":"src/lib/spellCheckFile.ts","fileType":["typescript"]},{"filename":"src/lib/suggestions.test.ts","fileType":["typescript"]},{"filename":"src/lib/suggestions.ts","fileType":["typescript"]},{"filename":"src/lib/test/bugs.spec.ts","fileType":["typescript"]},{"filename":"src/lib/test/dutch.spec.ts","fileType":["typescript"]},{"filename":"src/lib/test/english.spec.ts","fileType":["typescript"]},{"filename":"src/lib/test/fa.spec.ts","fileType":["typescript"]},{"filename":"src/lib/test/french.spec.ts","fileType":["typescript"]},{"filename":"src/lib/test/golang.spec.ts","fileType":["typescript"]},{"filename":"src/lib/test/python.spec.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/ValidateTextOptions.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/ValidationTypes.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/checkText.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/checkText.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/defaultConstants.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/determineTextDocumentSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/determineTextDocumentSettings.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/docValidator.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/docValidator.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/index.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/isWordValid.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/isWordValid.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/lineValidatorFactory.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/lineValidatorFactory.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/parsedText.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/parsedText.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/settingsToValidateOptions.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/textValidator.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/textValidator.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/traceWord.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/traceWord.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/validator.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/validator.ts","fileType":["typescript"]},{"filename":"src/lib/trace.test.ts","fileType":["typescript"]},{"filename":"src/lib/trace.ts","fileType":["typescript"]},{"filename":"src/lib/util/AutoResolve.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/AutoResolve.ts","fileType":["typescript"]},{"filename":"src/lib/util/AutoResolveLRUCache.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/AutoResolveLRUCache.ts","fileType":["typescript"]},{"filename":"src/lib/util/Comparable.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/Comparable.ts","fileType":["typescript"]},{"filename":"src/lib/util/FreqCounter.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/FreqCounter.ts","fileType":["typescript"]},{"filename":"src/lib/util/IterableLike.ts","fileType":["typescript"]},{"filename":"src/lib/util/MinHeapQueue.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/MinHeapQueue.ts","fileType":["typescript"]},{"filename":"src/lib/util/PairingHeap.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/PairingHeap.ts","fileType":["typescript"]},{"filename":"src/lib/util/TextMap.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/TextMap.ts","fileType":["typescript"]},{"filename":"src/lib/util/TextRange.regexp.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/TextRange.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/TextRange.ts","fileType":["typescript"]},{"filename":"src/lib/util/Uri.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/Uri.ts","fileType":["typescript"]},{"filename":"src/lib/util/errors.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/errors.ts","fileType":["typescript"]},{"filename":"src/lib/util/fileReader.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/fileReader.ts","fileType":["typescript"]},{"filename":"src/lib/util/findUp.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/findUp.ts","fileType":["typescript"]},{"filename":"src/lib/util/findUpFromUrl.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/findUpFromUrl.ts","fileType":["typescript"]},{"filename":"src/lib/util/iterableIteratorLib.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/iterableIteratorLib.ts","fileType":["typescript"]},{"filename":"src/lib/util/logger.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/logger.ts","fileType":["typescript"]},{"filename":"src/lib/util/memorizeLastCall.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/memorizeLastCall.ts","fileType":["typescript"]},{"filename":"src/lib/util/memorizerWeak.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/memorizerWeak.ts","fileType":["typescript"]},{"filename":"src/lib/util/regexHelper.ts","fileType":["typescript"]},{"filename":"src/lib/util/repMap.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/repMap.ts","fileType":["typescript"]},{"filename":"src/lib/util/resolveFile.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/resolveFile.ts","fileType":["typescript"]},{"filename":"src/lib/util/search.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/search.ts","fileType":["typescript"]},{"filename":"src/lib/util/simpleCache.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/simpleCache.ts","fileType":["typescript"]},{"filename":"src/lib/util/templates.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/templates.ts","fileType":["typescript"]},{"filename":"src/lib/util/text.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/text.ts","fileType":["typescript"]},{"filename":"src/lib/util/textApi.ts","fileType":["typescript"]},{"filename":"src/lib/util/textRegex.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/textRegex.ts","fileType":["typescript"]},{"filename":"src/lib/util/types.ts","fileType":["typescript"]},{"filename":"src/lib/util/url.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/url.ts","fileType":["typescript"]},{"filename":"src/lib/util/util.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/util.ts","fileType":["typescript"]},{"filename":"src/lib/util/wordSplitter.perf.ts","fileType":["typescript"]},{"filename":"src/lib/util/wordSplitter.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/wordSplitter.ts","fileType":["typescript"]},{"filename":"src/lib/validator.ts","fileType":["typescript"]},{"filename":"src/lib/wordListHelper.test.ts","fileType":["typescript"]},{"filename":"src/lib/wordListHelper.ts","fileType":["typescript"]},{"filename":"","fileType":[]}] diff --git a/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.json b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.json new file mode 100644 index 000000000000..5cacdee91aa0 --- /dev/null +++ b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.json @@ -0,0 +1 @@ +["Flatpack JSON v2",[0,2,10,13,18,23,27,32,36,41,45,49,53,57,62,66,70,74,78,83,87,91,95,99,103,108,112,116,121,125,130,136,140,145,150,154,158,162,167,171,176,180,183,188,192,196,201,205,210,213,217,221,227,231,236,240,247,251,255,259,263,267,271,275,279,283,287,291,295,300,304,308,312,315,320,323,327,331,335,340,344,348,353,357,362,366,370,375,379,384,389,394,398,403,407,411,415,419,422,426,430,434,438,442,447,451,455,459,465,470,473,478,482,487,491,495,499,503,507,512,516,520,525,529,533,538,542,546,551,556,561,565,568,574,578,583,587,590,595,599,603,607,611,615,619,623,627,632,636,640,644,649,653,657,661,666,670,675,679,683,687,691,695,699,703,707,711,715,720,725,728,732,736,740,744,748,752,757,761,766,770,774,778,782,786,790,794,799,803,807,812,816,820,824,828,832,837,841,845,849,854,858,863,867,871,875,879,884,888,892,896,899,903,907,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1343,1347,1351,1355,1359,1363,1367,1371,1375,1379,1383,1387,1391,1395,1399,1403,1407,1411,1415,1419,1423,1427,1431,1435,1439,1443,1447,1451,1455,1459,1463,1467,1471,1475,1479,1483,1487,1491,1495,1499,1503,1507,1511,1515,1519,1523,1527,1531,1535,1539,1543,1547,1551,1555,1559,1563,1567,1571,1575,1579,1583,1587,1591,1595,1599,1603,1607,1611,1615,1619,1623,1627,1631,1635,1639,1643,1647,1651,1655,1659,1663,1667,1671,1675,1679,1683,1687,1691,1695,1699,1703,1708,1712,1716,1720,1723,1727,1731,1735,1739,1743,1747,1750,1754,1758,1761,1766,1771,1775,1779,1782,1785,1790,1795,1799,1805,1810,1816,1820,1824,1828,1832,1837,1841,1845,1849,1853,1858,1862,1866,1870,1874,1878,1883,1887,1891,1896,1900,1905,1910,1914,1919,1924,1928,1932,1936,1940,1944,1949,1953,1956,1960,1964,1968,1973,1977,1982,1985,1989,1993,1999,2003,2008,2012,2016,2020,2024,2028,2032,2036,2039,2043,2047,2051,2056,2060,2064,2069,2073,2077,2081,2085,2089,2093,2097,2101,2105,2110,2114,2118,2123,2127,2132,2136,2140,2146,2150,2155,2160,2165,2169,2174,2178,2182,2186,2190,2193,2197,2201,2205,2209,2213,2218,2222,2226,2230,2235,2240,2243,2247,2251,2255,2259,2264,2268,2272,2276,2280,2284,2289,2293,2297,2302,2306,2310,2315,2319,2323,2328,2333,2338,2342,2345,2350,2354,2359,2363,2366,2371,2375,2379,2383,2387,2391,2395,2400,2404,2409,2413,2418,2422,2427,2431,2435,2439,2444,2448,2453,2457,2461,2465,2469,2473,2477,2481,2485,2489,2493,2498,2502,2506,2510,2514,2519,2523,2527,2531,2536,2540,2545,2549,2553,2557,2561,2565,2569,2573,2578,2582,2586,2591,2595,2599,2603,2607,2611,2616,2620,2624,2628,2633,2637,2642,2646,2650,2654,2658,2662,2667,2671,2676,2680,2684,2688,2692,2696],[1,3,6],[0,4,5],"filename","fileType",[0,7,8],"api/api.d.ts",[0,9],"typescript",[1,3,11],[0,12,8],"dist/esm/Cache/cspell.cache.d.ts",[1,3,14],[0,15,8],[2,16,17],[3,12,28],"test.d.ts",[1,3,19],[0,20,8],[2,21,22],[3,12,15],"index.d.ts",[1,3,24],[0,25,8],[2,26,17],[3,20,21],[1,3,28],[0,29,8],[2,30,31],[3,12,9],"Document/Document.d.ts",[1,3,33],[0,34,8],[2,35,22],[3,29,18],[1,3,37],[0,38,8],[2,39,40],[3,34,19],"sBinaryDoc.d.ts",[1,3,42],[0,43,8],[2,44,17],[3,38,30],[1,3,46],[0,47,8],[2,35,48],"normalizeLanguageIds.d.ts",[1,3,50],[0,51,8],[2,35,52],"resolveDocument.d.ts",[1,3,54],[0,55,8],[2,30,56],"FeatureFlags/FeatureFalgs.test.d.ts",[1,3,58],[0,59,8],[2,60,61],[3,55,30],"lags.d.ts",[1,3,63],[0,64,8],[2,65,22],[3,55,22],[1,3,67],[0,68,8],[2,30,69],[3,48,16,9],[1,3,71],[0,72,8],[2,73,17],[3,68,21],[1,3,75],[0,76,8],[2,30,77],"Models/CSpellSettingsInternalDef.d.ts",[1,3,79],[0,80,8],[2,81,82],[3,76,16],"PatternRegExp.d.ts",[1,3,84],[0,85,8],[2,86,17],[3,80,30],[1,3,88],[0,89,8],[2,81,90],"Suggestion.d.ts",[1,3,92],[0,93,8],[2,81,94],"TextDocument.d.ts",[1,3,96],[0,97,8],[2,98,17],[3,93,29],[1,3,100],[0,101,8],[2,81,102],"ValidationIssue.d.ts",[1,3,104],[0,105,8],[2,106,107],[3,101,26],"Result.d.ts",[1,3,109],[0,110,8],[2,30,111],"Settings/CSpellSettingsServer.d.ts",[1,3,113],[0,114,8],[2,115,17],[3,110,39],[1,3,117],[0,118,8],[2,119,120],[3,110,19],"ontroller/ImportError.d.ts",[1,3,122],[0,123,8],[2,124,17],[3,118,41],[1,3,126],[0,127,8],[2,128,129],[3,118,29],"configLoader/PnPSettings.d.ts",[1,3,131],[0,132,8],[2,133,134,135],[3,127,42],[3,129,12],".d.ts",[1,3,137],[0,138,8],[2,139,17],[3,132,55],[1,3,141],[0,142,8],[2,143,144],[3,132,50],"cations.d.ts",[1,3,146],[0,147,8],[2,148,149],[3,132,48],"Search.d.ts",[1,3,151],[0,152,8],[2,153,17],[3,147,55],[1,3,155],[0,156,8],[2,148,157],"ToRawSettings.d.ts",[1,3,159],[0,160,8],[2,161,17],[3,156,62],[1,3,163],[0,164,8],[2,133,165,166],"defaultC",[3,132,16,43],[1,3,168],[0,169,8],[2,170,17],[3,164,62],[1,3,172],[0,173,8],[2,174,175,135],[3,164,49],[3,111,8],[1,3,177],[0,178,8],[2,133,179],"extractImportErrors.d.ts",[1,3,181],[0,182,8],[2,133,22],[1,3,184],[0,185,8],[2,133,186,187],[3,48,9],[3,157,16,2],[1,3,189],[0,190,8],[2,191,17],[3,185,63],[1,3,193],[0,194,8],[2,133,195],"readSettings.d.ts",[1,3,197],[0,198,8],[2,199,200],[3,194,54],"Files.d.ts",[1,3,202],[0,203,8],[2,133,204],"toGlobDef.d.ts",[1,3,206],[0,207,8],[2,208,209],[3,203,43],"ypes.d.ts",[1,3,211],[0,212,8],[2,128,22],[1,3,214],[0,215,8],[2,128,216],"pnpLoader.d.ts",[1,3,218],[0,219,8],[2,220,17],[3,215,39],[1,3,222],[0,223,8],[2,224,225,226],[3,110,18],"D",[3,173,19,43],[1,3,228],[0,229,8],[2,230,17],[3,223,34],[1,3,232],[0,233,8],[2,234,235],[3,223,19],"ictionaryReferenceCollection.d.ts",[1,3,237],[0,238,8],[2,239,17],[3,233,48],[1,3,241],[0,242,8],[2,243,244,246],[3,233,28],[3,245,9],[3,160,18,53],"d.ts",[1,3,248],[0,249,8],[2,250,17],[3,242,37],[1,3,252],[0,253,8],[2,224,254],"GlobalSettings.d.ts",[1,3,256],[0,257,8],[2,258,17],[3,253,33],[1,3,260],[0,261,8],[2,224,262],"InDocSettings.d.ts",[1,3,264],[0,265,8],[2,266,17],[3,261,32],[1,3,268],[0,269,8],[2,224,270,244,246],[3,69,8],[1,3,272],[0,273,8],[2,274,17],[3,269,35],[1,3,276],[0,277,8],[2,224,278],"RegExpPatterns.d.ts",[1,3,280],[0,281,8],[2,282,17],[3,277,33],[1,3,284],[0,285,8],[2,224,286,244,246],[3,94,12],[1,3,288],[0,289,8],[2,290,17],[3,285,39],[1,3,292],[0,293,8],[2,224,294],"calcOverrideSettings.d.ts",[1,3,296],[0,297,8],[2,298,299],[3,293,19],"fgStore.d.ts",[1,3,301],[0,302,8],[2,303,17],[3,297,27],[1,3,305],[0,306,8],[2,298,307],"heckFilenameMatchesGlob.d.ts",[1,3,309],[0,310,8],[2,298,311],"onstants.d.ts",[1,3,313],[0,314,8],[2,224,22],[1,3,316],[0,317,8],[2,318,319],[3,314,24],"link.d.ts",[1,3,321],[0,322,8],[2,224,319],[1,3,324],[0,325,8],[2,326,17],[3,322,23],[1,3,328],[0,329,8],[2,224,330],"mergeCache.d.ts",[1,3,332],[0,333,8],[2,334,17],[3,329,29],[1,3,336],[0,337,8],[2,338,339],[3,329,23],"List.d.ts",[1,3,341],[0,342,8],[2,224,343],"patterns.d.ts",[1,3,345],[0,346,8],[2,347,17],[3,342,27],[1,3,349],[0,350,8],[2,351,352],[3,110,10],"pellingDictionary/Dictionaries.d.ts",[1,3,354],[0,355,8],[2,356,17],[3,350,41],[1,3,358],[0,359,8],[2,360,361],[3,350,37],"yController/DictionaryLoader.d.ts",[1,3,363],[0,364,8],[2,365,17],[3,359,66],[1,3,367],[0,368,8],[2,369,22],[3,359,49],[1,3,371],[0,372,8],[2,373,374],[3,359,38],"Loader.d.ts",[1,3,376],[0,377,8],[2,378,17],[3,372,45],[1,3,380],[0,381,8],[2,382,383],[3,350,28],"SpellingDictionary.d.ts",[1,3,385],[0,386,8],[2,387,388],[3,381,46],"Error.d.ts",[1,3,390],[0,391,8],[2,392,393],[3,381,29],"uggestExperimental/SuggestionCollector.d.ts",[1,3,395],[0,396,8],[2,397,17],[3,391,68],[1,3,399],[0,400,8],[2,401,402],[3,391,48],"entities.d.ts",[1,3,404],[0,405,8],[2,401,406],"helpers.d.ts",[1,3,408],[0,409,8],[2,410,17],[3,405,56],[1,3,412],[0,413,8],[2,401,414],"suggest.d.ts",[1,3,416],[0,417,8],[2,418,17],[3,413,56],[1,3,420],[0,421,8],[2,382,22],[1,3,423],[0,424,8],[2,30,425],"clearCachedFiles.d.ts",[1,3,427],[0,428,8],[2,429,17],[3,424,26],[1,3,431],[0,432,8],[2,30,433],"events/events.d.ts",[1,3,435],[0,436,8],[2,437,17],[3,432,23],[1,3,439],[0,440,8],[2,441,22],[3,432,16],[1,3,443],[0,444,8],[2,445,446],[3,432,10],"xclusionHelper.d.ts",[1,3,448],[0,449,8],[2,450,17],[3,444,25],[1,3,452],[0,453,8],[2,30,454],"fileSystem.d.ts",[1,3,456],[0,457,8],[2,30,458],"getDictionary.d.ts",[1,3,460],[0,461,8],[2,462,463,464],[3,457,10],"lob",[3,306,31,16],[1,3,466],[0,467,8],[2,468,469],[3,461,15],"getGlobMatcher.d.ts",[1,3,471],[0,472,8],[2,30,22],[1,3,474],[0,475,8],[2,476,477],[3,12,8],[3,25,16,14],[1,3,479],[0,480,8],[2,30,481],"perf/index.d.ts",[1,3,483],[0,484,8],[2,485,486],[3,480,14],"perf.d.ts",[1,3,488],[0,489,8],[2,490,17],[3,484,19],[1,3,492],[0,493,8],[2,485,494],"timer.d.ts",[1,3,496],[0,497,8],[2,498,17],[3,493,20],[1,3,500],[0,501,8],[2,30,502],"spellCheckFile.d.ts",[1,3,504],[0,505,8],[2,506,17],[3,501,24],[1,3,508],[0,509,8],[2,510,511],[3,501,10],"uggestions.d.ts",[1,3,513],[0,514,8],[2,515,17],[3,509,21],[1,3,517],[0,518,8],[2,30,519],"test/bugs.spec.d.ts",[1,3,521],[0,522,8],[2,523,524],[3,518,14],"dutch.spec.d.ts",[1,3,526],[0,527,8],[2,523,528],"english.spec.d.ts",[1,3,530],[0,531,8],[2,523,532],"fa.spec.d.ts",[1,3,534],[0,535,8],[2,536,537],[3,531,15],"rench.spec.d.ts",[1,3,539],[0,540,8],[2,523,541],"golang.spec.d.ts",[1,3,543],[0,544,8],[2,523,545],"python.spec.d.ts",[1,3,547],[0,548,8],[2,549,550],[3,518,11],"xtValidation/ValidateTextOptions.d.ts",[1,3,552],[0,553,8],[2,554,555],[3,548,31],"ionTypes.d.ts",[1,3,557],[0,558,8],[2,559,560],[3,548,24],"checkText.d.ts",[1,3,562],[0,563,8],[2,564,17],[3,558,34],[1,3,566],[0,567,8],[2,559,165,311],[1,3,569],[0,570,8],[2,571,572,573],[3,567,26],"termine",[3,285,25,18],[1,3,575],[0,576,8],[2,577,17],[3,570,54],[1,3,579],[0,580,8],[2,581,582],[3,567,25],"ocValidator.d.ts",[1,3,584],[0,585,8],[2,586,17],[3,580,37],[1,3,588],[0,589,8],[2,559,22],[1,3,591],[0,592,8],[2,593,594],[3,589,25],"sWordValid.d.ts",[1,3,596],[0,597,8],[2,598,17],[3,592,36],[1,3,600],[0,601,8],[2,559,602],"lineValidatorFactory.d.ts",[1,3,604],[0,605,8],[2,606,17],[3,601,45],[1,3,608],[0,609,8],[2,559,610],"parsedText.d.ts",[1,3,612],[0,613,8],[2,614,17],[3,609,35],[1,3,616],[0,617,8],[2,559,618],"settingsToValidateOptions.d.ts",[1,3,620],[0,621,8],[2,559,622],"textValidator.d.ts",[1,3,624],[0,625,8],[2,626,17],[3,621,38],[1,3,628],[0,629,8],[2,630,631],[3,621,25],"raceWord.d.ts",[1,3,633],[0,634,8],[2,635,17],[3,629,34],[1,3,637],[0,638,8],[2,559,639],"validator.d.ts",[1,3,641],[0,642,8],[2,643,17],[3,638,34],[1,3,645],[0,646,8],[2,647,648],[3,518,10],"race.d.ts",[1,3,650],[0,651,8],[2,652,17],[3,646,15],[1,3,654],[0,655,8],[2,30,656],"util/AutoResolve.d.ts",[1,3,658],[0,659,8],[2,660,17],[3,655,26],[1,3,662],[0,663,8],[2,664,665],[3,655,25],"LRUCache.d.ts",[1,3,667],[0,668,8],[2,669,17],[3,663,34],[1,3,671],[0,672,8],[2,673,674],[3,655,14],"Comparable.d.ts",[1,3,676],[0,677,8],[2,678,17],[3,672,25],[1,3,680],[0,681,8],[2,673,682],"FreqCounter.d.ts",[1,3,684],[0,685,8],[2,686,17],[3,681,26],[1,3,688],[0,689,8],[2,673,690],"IterableLike.d.ts",[1,3,692],[0,693,8],[2,673,694],"MinHeapQueue.d.ts",[1,3,696],[0,697,8],[2,698,17],[3,693,27],[1,3,700],[0,701,8],[2,673,702],"PairingHeap.d.ts",[1,3,704],[0,705,8],[2,706,17],[3,701,26],[1,3,708],[0,709,8],[2,673,710],"TextMap.d.ts",[1,3,712],[0,713,8],[2,714,17],[3,709,22],[1,3,716],[0,717,8],[2,718,719],[3,709,18],"Range.d.ts",[1,3,721],[0,722,8],[2,723,724],[3,717,24],"regexp.test.d.ts",[1,3,726],[0,727,8],[2,723,17],[1,3,729],[0,730,8],[2,673,731],"Uri.d.ts",[1,3,733],[0,734,8],[2,735,17],[3,730,18],[1,3,737],[0,738,8],[2,673,739],"errors.d.ts",[1,3,741],[0,742,8],[2,743,17],[3,738,21],[1,3,745],[0,746,8],[2,673,747],"fileReader.d.ts",[1,3,749],[0,750,8],[2,751,17],[3,746,25],[1,3,753],[0,754,8],[2,755,756],[3,746,16],"ndUp.d.ts",[1,3,758],[0,759,8],[2,760,17],[3,754,21],[1,3,762],[0,763,8],[2,764,765],[3,754,20],"FromUrl.d.ts",[1,3,767],[0,768,8],[2,769,17],[3,763,28],[1,3,771],[0,772,8],[2,673,773],"iterableIteratorLib.d.ts",[1,3,775],[0,776,8],[2,777,17],[3,772,34],[1,3,779],[0,780,8],[2,673,781],"logger.d.ts",[1,3,783],[0,784,8],[2,785,17],[3,780,21],[1,3,787],[0,788,8],[2,673,789],"memorizeLastCall.d.ts",[1,3,791],[0,792,8],[2,793,17],[3,788,31],[1,3,795],[0,796,8],[2,797,798],[3,788,22],"rWeak.d.ts",[1,3,800],[0,801,8],[2,802,17],[3,796,28],[1,3,804],[0,805,8],[2,673,806],"regexHelper.d.ts",[1,3,808],[0,809,8],[2,810,811],[3,805,16],"pMap.d.ts",[1,3,813],[0,814,8],[2,815,17],[3,809,21],[1,3,817],[0,818,8],[2,810,819],"solveFile.d.ts",[1,3,821],[0,822,8],[2,823,17],[3,818,26],[1,3,825],[0,826,8],[2,673,827],"search.d.ts",[1,3,829],[0,830,8],[2,831,17],[3,826,21],[1,3,833],[0,834,8],[2,835,836],[3,826,15],"impleCache.d.ts",[1,3,838],[0,839,8],[2,840,17],[3,834,26],[1,3,842],[0,843,8],[2,673,844],"templates.d.ts",[1,3,846],[0,847,8],[2,848,17],[3,843,24],[1,3,850],[0,851,8],[2,852,853],[3,843,16],"xt.d.ts",[1,3,855],[0,856,8],[2,857,17],[3,851,19],[1,3,859],[0,860,8],[2,861,862],[3,851,18],"Regex.d.ts",[1,3,864],[0,865,8],[2,866,17],[3,860,24],[1,3,868],[0,869,8],[2,870,209],[3,843,15],[1,3,872],[0,873,8],[2,673,874],"url.d.ts",[1,3,876],[0,877,8],[2,878,17],[3,873,18],[1,3,880],[0,881,8],[2,882,883],[3,873,15],"til.d.ts",[1,3,885],[0,886,8],[2,887,17],[3,881,19],[1,3,889],[0,890,8],[2,673,891],"wordSplitter.d.ts",[1,3,893],[0,894,8],[2,895,17],[3,890,27],[1,3,897],[0,898,8],[2,30,639],[1,3,900],[0,901,8],[2,30,902],"wordListHelper.d.ts",[1,3,904],[0,905,8],[2,906,17],[3,901,24],[1,3,908],[0,909,8],[2,910,911],"dist/lib",[3,12,24,8],[1,3,913],[0,914,8],[2,910,915],[3,15,29,8],[1,3,917],[0,918,8],[2,910,919],[3,20,17,8],[1,3,921],[0,922,8],[2,910,923],[3,25,22,8],[1,3,925],[0,926,8],[2,910,927],[3,29,23,8],[1,3,929],[0,930,8],[2,910,931],[3,34,20,8],[1,3,933],[0,934,8],[2,910,935],[3,38,26,8],[1,3,937],[0,938,8],[2,910,939],[3,43,31,8],[1,3,941],[0,942,8],[2,910,943],[3,47,35,8],[1,3,945],[0,946,8],[2,910,947],[3,51,30,8],[1,3,949],[0,950,8],[2,910,951],[3,55,36,8],[1,3,953],[0,954,8],[2,910,955],[3,59,31,8],[1,3,957],[0,958,8],[2,910,959],[3,64,24,8],[1,3,961],[0,962,8],[2,910,963],[3,68,17,8],[1,3,965],[0,966,8],[2,910,967],[3,72,22,8],[1,3,969],[0,970,8],[2,910,971],[3,76,38,8],[1,3,973],[0,974,8],[2,910,975],[3,80,26,8],[1,3,977],[0,978,8],[2,910,979],[3,85,31,8],[1,3,981],[0,982,8],[2,910,983],[3,89,23,8],[1,3,985],[0,986,8],[2,910,987],[3,93,25,8],[1,3,989],[0,990,8],[2,910,991],[3,97,30,8],[1,3,993],[0,994,8],[2,910,995],[3,101,28,8],[1,3,997],[0,998,8],[2,910,999],[3,105,29,8],[1,3,1001],[0,1002,8],[2,910,1003],[3,110,35,8],[1,3,1005],[0,1006,8],[2,910,1007],[3,114,40,8],[1,3,1009],[0,1010,8],[2,910,1011],[3,118,37,8],[1,3,1013],[0,1014,8],[2,910,1015],[3,123,42,8],[1,3,1017],[0,1018,8],[2,910,1019],[3,127,50,8],[1,3,1021],[0,1022,8],[2,910,1023],[3,132,51,8],[1,3,1025],[0,1026,8],[2,910,1027],[3,138,56,8],[1,3,1029],[0,1030,8],[2,910,1031],[3,142,54,8],[1,3,1033],[0,1034,8],[2,910,1035],[3,147,51,8],[1,3,1037],[0,1038,8],[2,910,1039],[3,152,56,8],[1,3,1041],[0,1042,8],[2,910,1043],[3,156,58,8],[1,3,1045],[0,1046,8],[2,910,1047],[3,160,63,8],[1,3,1049],[0,1050,8],[2,910,1051],[3,164,58,8],[1,3,1053],[0,1054,8],[2,910,1055],[3,169,63,8],[1,3,1057],[0,1058,8],[2,910,1059],[3,173,54,8],[1,3,1061],[0,1062,8],[2,910,1063],[3,178,58,8],[1,3,1065],[0,1066,8],[2,910,1067],[3,182,44,8],[1,3,1069],[0,1070,8],[2,910,1071],[3,185,59,8],[1,3,1073],[0,1074,8],[2,910,1075],[3,190,64,8],[1,3,1077],[0,1078,8],[2,910,1079],[3,194,51,8],[1,3,1081],[0,1082,8],[2,910,1083],[3,198,56,8],[1,3,1085],[0,1086,8],[2,910,1087],[3,203,48,8],[1,3,1089],[0,1090,8],[2,910,1091],[3,207,44,8],[1,3,1093],[0,1094,8],[2,910,1095],[3,212,31,8],[1,3,1097],[0,1098,8],[2,910,1099],[3,215,35,8],[1,3,1101],[0,1102,8],[2,910,1103],[3,219,40,8],[1,3,1105],[0,1106,8],[2,910,1107],[3,223,30,8],[1,3,1109],[0,1110,8],[2,910,1111],[3,229,35,8],[1,3,1113],[0,1114,8],[2,910,1115],[3,233,44,8],[1,3,1117],[0,1118,8],[2,910,1119],[3,238,49,8],[1,3,1121],[0,1122,8],[2,910,1123],[3,242,33,8],[1,3,1125],[0,1126,8],[2,910,1127],[3,249,38,8],[1,3,1129],[0,1130,8],[2,910,1131],[3,253,29,8],[1,3,1133],[0,1134,8],[2,910,1135],[3,257,34,8],[1,3,1137],[0,1138,8],[2,910,1139],[3,261,28,8],[1,3,1141],[0,1142,8],[2,910,1143],[3,265,33,8],[1,3,1145],[0,1146,8],[2,910,1147],[3,269,31,8],[1,3,1149],[0,1150,8],[2,910,1151],[3,273,36,8],[1,3,1153],[0,1154,8],[2,910,1155],[3,277,29,8],[1,3,1157],[0,1158,8],[2,910,1159],[3,281,34,8],[1,3,1161],[0,1162,8],[2,910,1163],[3,285,35,8],[1,3,1165],[0,1166,8],[2,910,1167],[3,289,40,8],[1,3,1169],[0,1170,8],[2,910,1171],[3,293,35,8],[1,3,1173],[0,1174,8],[2,910,1175],[3,297,23,8],[1,3,1177],[0,1178,8],[2,910,1179],[3,302,28,8],[1,3,1181],[0,1182,8],[2,910,1183],[3,306,39,8],[1,3,1185],[0,1186,8],[2,910,1187],[3,310,24,8],[1,3,1189],[0,1190,8],[2,910,1191],[3,314,20,8],[1,3,1193],[0,1194,8],[2,910,1195],[3,317,25,8],[1,3,1197],[0,1198,8],[2,910,1199],[3,322,19,8],[1,3,1201],[0,1202,8],[2,910,1203],[3,325,24,8],[1,3,1205],[0,1206,8],[2,910,1207],[3,329,25,8],[1,3,1209],[0,1210,8],[2,910,1211],[3,333,30,8],[1,3,1213],[0,1214,8],[2,910,1215],[3,337,24,8],[1,3,1217],[0,1218,8],[2,910,1219],[3,342,23,8],[1,3,1221],[0,1222,8],[2,910,1223],[3,346,28,8],[1,3,1225],[0,1226,8],[2,910,1227],[3,350,37,8],[1,3,1229],[0,1230,8],[2,910,1231],[3,355,42,8],[1,3,1233],[0,1234,8],[2,910,1235],[3,359,62,8],[1,3,1237],[0,1238,8],[2,910,1239],[3,364,67,8],[1,3,1241],[0,1242,8],[2,910,1243],[3,368,51,8],[1,3,1245],[0,1246,8],[2,910,1247],[3,372,41,8],[1,3,1249],[0,1250,8],[2,910,1251],[3,377,46,8],[1,3,1253],[0,1254,8],[2,910,1255],[3,381,43,8],[1,3,1257],[0,1258,8],[2,910,1259],[3,386,48,8],[1,3,1261],[0,1262,8],[2,910,1263],[3,391,64,8],[1,3,1265],[0,1266,8],[2,910,1267],[3,396,69,8],[1,3,1269],[0,1270,8],[2,910,1271],[3,400,53,8],[1,3,1273],[0,1274,8],[2,910,1275],[3,405,52,8],[1,3,1277],[0,1278,8],[2,910,1279],[3,409,57,8],[1,3,1281],[0,1282,8],[2,910,1283],[3,413,52,8],[1,3,1285],[0,1286,8],[2,910,1287],[3,417,57,8],[1,3,1289],[0,1290,8],[2,910,1291],[3,421,30,8],[1,3,1293],[0,1294,8],[2,910,1295],[3,424,22,8],[1,3,1297],[0,1298,8],[2,910,1299],[3,428,27,8],[1,3,1301],[0,1302,8],[2,910,1303],[3,432,19,8],[1,3,1305],[0,1306,8],[2,910,1307],[3,436,24,8],[1,3,1309],[0,1310,8],[2,910,1311],[3,440,18,8],[1,3,1313],[0,1314,8],[2,910,1315],[3,444,21,8],[1,3,1317],[0,1318,8],[2,910,1319],[3,449,26,8],[1,3,1321],[0,1322,8],[2,910,1323],[3,453,16,8],[1,3,1325],[0,1326,8],[2,910,1327],[3,457,19,8],[1,3,1329],[0,1330,8],[2,910,1331],[3,461,36,8],[1,3,1333],[0,1334,8],[2,910,1335],[3,467,26,8],[1,3,1337],[0,1338,8],[2,1339,22],[3,909,9],[1,3,1341],[0,1342,8],[2,910,477],[1,3,1344],[0,1345,8],[2,910,1346],[3,480,16,8],[1,3,1348],[0,1349,8],[2,1350,486],[3,1345,14],[1,3,1352],[0,1353,8],[2,910,1354],[3,489,20,8],[1,3,1356],[0,1357,8],[2,910,1358],[3,493,16,8],[1,3,1360],[0,1361,8],[2,910,1362],[3,497,21,8],[1,3,1364],[0,1365,8],[2,910,1366],[3,501,20,8],[1,3,1368],[0,1369,8],[2,910,1370],[3,505,25,8],[1,3,1372],[0,1373,8],[2,910,1374],[3,509,17,8],[1,3,1376],[0,1377,8],[2,910,1378],[3,514,22,8],[1,3,1380],[0,1381,8],[2,910,1382],[3,518,20,8],[1,3,1384],[0,1385,8],[2,910,1386],[3,522,21,8],[1,3,1388],[0,1389,8],[2,910,1390],[3,527,23,8],[1,3,1392],[0,1393,8],[2,910,1394],[3,531,18,8],[1,3,1396],[0,1397,8],[2,910,1398],[3,535,22,8],[1,3,1400],[0,1401,8],[2,910,1402],[3,540,22,8],[1,3,1404],[0,1405,8],[2,910,1406],[3,544,22,8],[1,3,1408],[0,1409,8],[2,910,1410],[3,548,40,8],[1,3,1412],[0,1413,8],[2,910,1414],[3,553,36,8],[1,3,1416],[0,1417,8],[2,910,1418],[3,558,30,8],[1,3,1420],[0,1421,8],[2,910,1422],[3,563,35,8],[1,3,1424],[0,1425,8],[2,910,1426],[3,567,37,8],[1,3,1428],[0,1429,8],[2,910,1430],[3,570,50,8],[1,3,1432],[0,1433,8],[2,910,1434],[3,576,55,8],[1,3,1436],[0,1437,8],[2,910,1438],[3,580,33,8],[1,3,1440],[0,1441,8],[2,910,1442],[3,585,38,8],[1,3,1444],[0,1445,8],[2,910,1446],[3,589,26,8],[1,3,1448],[0,1449,8],[2,910,1450],[3,592,32,8],[1,3,1452],[0,1453,8],[2,910,1454],[3,597,37,8],[1,3,1456],[0,1457,8],[2,910,1458],[3,601,41,8],[1,3,1460],[0,1461,8],[2,910,1462],[3,605,46,8],[1,3,1464],[0,1465,8],[2,910,1466],[3,609,31,8],[1,3,1468],[0,1469,8],[2,910,1470],[3,613,36,8],[1,3,1472],[0,1473,8],[2,910,1474],[3,617,46,8],[1,3,1476],[0,1477,8],[2,910,1478],[3,621,34,8],[1,3,1480],[0,1481,8],[2,910,1482],[3,625,39,8],[1,3,1484],[0,1485,8],[2,910,1486],[3,629,30,8],[1,3,1488],[0,1489,8],[2,910,1490],[3,634,35,8],[1,3,1492],[0,1493,8],[2,910,1494],[3,638,30,8],[1,3,1496],[0,1497,8],[2,910,1498],[3,642,35,8],[1,3,1500],[0,1501,8],[2,1502,648],[3,1381,10],[1,3,1504],[0,1505,8],[2,910,1506],[3,651,16,8],[1,3,1508],[0,1509,8],[2,910,1510],[3,655,22,8],[1,3,1512],[0,1513,8],[2,910,1514],[3,659,27,8],[1,3,1516],[0,1517,8],[2,910,1518],[3,663,30,8],[1,3,1520],[0,1521,8],[2,910,1522],[3,668,35,8],[1,3,1524],[0,1525,8],[2,910,1526],[3,672,21,8],[1,3,1528],[0,1529,8],[2,910,1530],[3,677,26,8],[1,3,1532],[0,1533,8],[2,910,1534],[3,681,22,8],[1,3,1536],[0,1537,8],[2,910,1538],[3,685,27,8],[1,3,1540],[0,1541,8],[2,910,1542],[3,689,23,8],[1,3,1544],[0,1545,8],[2,910,1546],[3,693,23,8],[1,3,1548],[0,1549,8],[2,910,1550],[3,697,28,8],[1,3,1552],[0,1553,8],[2,910,1554],[3,701,22,8],[1,3,1556],[0,1557,8],[2,910,1558],[3,705,27,8],[1,3,1560],[0,1561,8],[2,910,1562],[3,709,18,8],[1,3,1564],[0,1565,8],[2,910,1566],[3,713,23,8],[1,3,1568],[0,1569,8],[2,910,1570],[3,717,20,8],[1,3,1572],[0,1573,8],[2,910,1574],[3,722,32,8],[1,3,1576],[0,1577,8],[2,910,1578],[3,727,25,8],[1,3,1580],[0,1581,8],[2,1582,731],[3,1509,14],[1,3,1584],[0,1585,8],[2,910,1586],[3,734,19,8],[1,3,1588],[0,1589,8],[2,910,1590],[3,738,17,8],[1,3,1592],[0,1593,8],[2,910,1594],[3,742,22,8],[1,3,1596],[0,1597,8],[2,910,1598],[3,746,21,8],[1,3,1600],[0,1601,8],[2,910,1602],[3,750,26,8],[1,3,1604],[0,1605,8],[2,910,1606],[3,754,17,8],[1,3,1608],[0,1609,8],[2,910,1610],[3,759,22,8],[1,3,1612],[0,1613,8],[2,910,1614],[3,763,24,8],[1,3,1616],[0,1617,8],[2,910,1618],[3,768,29,8],[1,3,1620],[0,1621,8],[2,910,1622],[3,772,30,8],[1,3,1624],[0,1625,8],[2,910,1626],[3,776,35,8],[1,3,1628],[0,1629,8],[2,910,1630],[3,780,17,8],[1,3,1632],[0,1633,8],[2,910,1634],[3,784,22,8],[1,3,1636],[0,1637,8],[2,910,1638],[3,788,27,8],[1,3,1640],[0,1641,8],[2,910,1642],[3,792,32,8],[1,3,1644],[0,1645,8],[2,910,1646],[3,796,24,8],[1,3,1648],[0,1649,8],[2,910,1650],[3,801,29,8],[1,3,1652],[0,1653,8],[2,910,1654],[3,805,22,8],[1,3,1656],[0,1657,8],[2,910,1658],[3,809,17,8],[1,3,1660],[0,1661,8],[2,910,1662],[3,814,22,8],[1,3,1664],[0,1665,8],[2,910,1666],[3,818,22,8],[1,3,1668],[0,1669,8],[2,910,1670],[3,822,27,8],[1,3,1672],[0,1673,8],[2,910,1674],[3,826,17,8],[1,3,1676],[0,1677,8],[2,910,1678],[3,830,22,8],[1,3,1680],[0,1681,8],[2,910,1682],[3,834,22,8],[1,3,1684],[0,1685,8],[2,910,1686],[3,839,27,8],[1,3,1688],[0,1689,8],[2,910,1690],[3,843,20,8],[1,3,1692],[0,1693,8],[2,910,1694],[3,847,25,8],[1,3,1696],[0,1697,8],[2,1698,853],[3,1689,16],[1,3,1700],[0,1701,8],[2,910,1702],[3,856,20,8],[1,3,1704],[0,1705,8],[2,1706,1707],[3,1697,18],"Api.d.ts",[1,3,1709],[0,1710,8],[2,910,1711],[3,860,20,8],[1,3,1713],[0,1714,8],[2,910,1715],[3,865,25,8],[1,3,1717],[0,1718,8],[2,910,1719],[3,869,16,8],[1,3,1721],[0,1722,8],[2,1582,874],[1,3,1724],[0,1725,8],[2,910,1726],[3,877,19,8],[1,3,1728],[0,1729,8],[2,1730,883],[3,1722,15],[1,3,1732],[0,1733,8],[2,910,1734],[3,886,20,8],[1,3,1736],[0,1737,8],[2,910,1738],[3,890,23,8],[1,3,1740],[0,1741,8],[2,1742,486],[3,1737,27],[1,3,1744],[0,1745,8],[2,910,1746],[3,894,28,8],[1,3,1748],[0,1749,8],[2,1339,639],[1,3,1751],[0,1752,8],[2,910,1753],[3,901,20,8],[1,3,1755],[0,1756,8],[2,910,1757],[3,905,25,8],[1,3,1759],[0,1760,8],"fixtures/docValidator/parser/sample.ts",[1,3,1762],[0,1763,8],[2,1764,1765],[3,1760,22],"sample-with-cspell-directives.ts",[1,3,1767],[0,1768,8],[2,1769,1770],[3,1763,34],"directives-errors.ts",[1,3,1772],[0,1773,8],[2,1769,1774],"errors.ts",[1,3,1776],[0,1777,8],[2,1769,1778],"many-errors.ts",[1,3,1780],[0,1781,8],"samples/bug-fixes/bug345.ts",[1,3,1783],[0,1784,8],"src/lib/Cache/cspell.cache.test.ts",[1,3,1786],[0,1787,8],[2,1788,1789],[3,1784,28],"s",[1,3,1791],[0,1792,8],[2,1793,1794],[3,1784,14],"index.test.ts",[1,3,1796],[0,1797,8],[2,1798,1789],[3,1792,21],[1,3,1800],[0,1801,8],[2,1802,1803,1804],"src/lib/",[3,31,18],"ts",[1,3,1806],[0,1807,8],[2,1808,1809],[3,1801,17],"index.ts",[1,3,1811],[0,1812,8],[2,1813,1814,1815],[3,1807,18],[3,40,11],"test.ts",[1,3,1817],[0,1818,8],[2,1819,1789],[3,1812,30],[1,3,1821],[0,1822,8],[2,1808,1823,1804],[3,48,21],[1,3,1825],[0,1826,8],[2,1808,1827,1804],[3,52,16],[1,3,1829],[0,1830,8],[2,1802,1831,1804],[3,56,31],[1,3,1833],[0,1834,8],[2,1835,1836],[3,1830,29],"lags.ts",[1,3,1838],[0,1839,8],[2,1840,1809],[3,1830,21],[1,3,1842],[0,1843,8],[2,1802,1844,1815],[3,69,12],[1,3,1846],[0,1847,8],[2,1848,1789],[3,1843,21],[1,3,1850],[0,1851,8],[2,1802,1852,1804],[3,77,33],[1,3,1854],[0,1855,8],[2,1856,1857,1815],[3,1851,15],[3,82,14],[1,3,1859],[0,1860,8],[2,1861,1789],[3,1855,30],[1,3,1863],[0,1864,8],[2,1856,1865,1804],[3,90,11],[1,3,1867],[0,1868,8],[2,1856,1869,1815],[3,94,13],[1,3,1871],[0,1872,8],[2,1873,1789],[3,1868,29],[1,3,1875],[0,1876,8],[2,1856,1877,1804],[3,102,16],[1,3,1879],[0,1880,8],[2,1881,1882],[3,1876,25],"Result.ts",[1,3,1884],[0,1885,8],[2,1802,1886,1815],[3,111,30],[1,3,1888],[0,1889,8],[2,1890,1789],[3,1885,39],[1,3,1892],[0,1893,8],[2,1894,1895,1815],[3,1885,18],[3,120,22],[1,3,1897],[0,1898,8],[2,1899,1789],[3,1893,41],[1,3,1901],[0,1902,8],[2,1903,1904,1804],[3,1893,28],[3,129,25],[1,3,1906],[0,1907,8],[2,1908,134,1909],[3,1902,41],".test.ts",[1,3,1911],[0,1912,8],[2,1913,1789],[3,1907,55],[1,3,1915],[0,1916,8],[2,1917,1918,1804],[3,1907,49],[3,144,8],[1,3,1920],[0,1921,8],[2,1922,1923],[3,1907,47],"Search.test.ts",[1,3,1925],[0,1926,8],[2,1927,1789],[3,1921,55],[1,3,1929],[0,1930,8],[2,1922,1931,1815],[3,157,14],[1,3,1933],[0,1934,8],[2,1935,1789],[3,1930,62],[1,3,1937],[0,1938,8],[2,1908,165,1939],[3,1907,19,42],[1,3,1941],[0,1942,8],[2,1943,1789],[3,1938,62],[1,3,1945],[0,1946,8],[2,1947,1948,1789],[3,1938,48],[3,245,10],[1,3,1950],[0,1951,8],[2,1908,1952,1804],[3,179,20],[1,3,1954],[0,1955,8],[2,1908,1809],[1,3,1957],[0,1958,8],[2,1908,186,1959],[3,1930,19,49],[1,3,1961],[0,1962,8],[2,1963,1789],[3,1958,63],[1,3,1965],[0,1966,8],[2,1908,1967,1804],[3,195,13],[1,3,1969],[0,1970,8],[2,1971,1972],[3,1966,53],"Files.ts",[1,3,1974],[0,1975,8],[2,1908,1976,1804],[3,204,10],[1,3,1978],[0,1979,8],[2,1980,1981],[3,1975,42],"ypes.ts",[1,3,1983],[0,1984,8],[2,1903,1809],[1,3,1986],[0,1987,8],[2,1903,1988,1815],[3,216,10],[1,3,1990],[0,1991,8],[2,1992,1789],[3,1987,39],[1,3,1994],[0,1995,8],[2,1996,1997,1998],[3,1885,17],"Default",[3,1930,16,52],[1,3,2000],[0,2001,8],[2,2002,1789],[3,1995,34],[1,3,2004],[0,2005,8],[2,2006,2007,1815],[3,1995,18],[3,235,29],[1,3,2009],[0,2010,8],[2,2011,1789],[3,2005,48],[1,3,2013],[0,2014,8],[2,2015,1998],[3,2005,27],[1,3,2017],[0,2018,8],[2,2019,1789],[3,2014,37],[1,3,2021],[0,2022,8],[2,1996,2023,1998],"Global",[1,3,2025],[0,2026,8],[2,2027,1789],[3,2022,33],[1,3,2029],[0,2030,8],[2,1996,2031,1998],"InDoc",[1,3,2033],[0,2034,8],[2,2035,1789],[3,2030,32],[1,3,2037],[0,2038,8],[2,1996,270,1998],[1,3,2040],[0,2041,8],[2,2042,1789],[3,2038,35],[1,3,2044],[0,2045,8],[2,1996,2046,1815],[3,278,15],[1,3,2048],[0,2049,8],[2,2050,1789],[3,2045,33],[1,3,2052],[0,2053,8],[2,1996,2054,1804],[3,2055,26],[3,289,30,18],[1,3,2057],[0,2058,8],[2,2059,1789],[3,2053,39],[1,3,2061],[0,2062,8],[2,1996,2063,1804],[3,294,21],[1,3,2065],[0,2066,8],[2,2067,2068,1815],[3,2062,18],[3,299,8],[1,3,2070],[0,2071,8],[2,2072,1789],[3,2066,27],[1,3,2074],[0,2075,8],[2,2067,2076,1804],[3,307,24],[1,3,2078],[0,2079,8],[2,2067,2080,1804],[3,311,9],[1,3,2082],[0,2083,8],[2,1996,2084],"index.link.ts",[1,3,2086],[0,2087,8],[2,2088,1804],[3,2083,23],[1,3,2090],[0,2091,8],[2,1996,2092],"link.test.ts",[1,3,2094],[0,2095,8],[2,2096,1789],[3,2091,23],[1,3,2098],[0,2099,8],[2,1996,2100,1815],[3,330,11],[1,3,2102],[0,2103,8],[2,2104,1789],[3,2099,29],[1,3,2106],[0,2107,8],[2,2108,2109],[3,2099,22],"List.ts",[1,3,2111],[0,2112,8],[2,1996,2113,1815],[3,343,9],[1,3,2115],[0,2116,8],[2,2117,1789],[3,2112,27],[1,3,2119],[0,2120,8],[2,2121,2122,1815],[3,1885,9],[3,352,31],[1,3,2124],[0,2125,8],[2,2126,1789],[3,2120,41],[1,3,2128],[0,2129,8],[2,2130,2131,1815],[3,2120,36],[3,361,29],[1,3,2133],[0,2134,8],[2,2135,1789],[3,2129,66],[1,3,2137],[0,2138,8],[2,2139,1809],[3,2129,48],[1,3,2141],[0,2142,8],[2,2143,2144,1804],[3,2129,37],[3,2145,12],[3,138,16,48],[1,3,2147],[0,2148,8],[2,2149,1789],[3,2142,45],[1,3,2151],[0,2152,8],[2,2153,2154,1804],[3,2120,27],[3,383,19],[1,3,2156],[0,2157,8],[2,2158,2159],[3,2152,45],"Error.ts",[1,3,2161],[0,2162,8],[2,2163,2164,1815],[3,2152,28],[3,393,39],[1,3,2166],[0,2167,8],[2,2168,1789],[3,2162,68],[1,3,2170],[0,2171,8],[2,2172,2173,1804],[3,2162,47],[3,402,9],[1,3,2175],[0,2176,8],[2,2172,2177,1815],[3,406,8],[1,3,2179],[0,2180,8],[2,2181,1789],[3,2176,56],[1,3,2183],[0,2184,8],[2,2172,2185,1815],[3,414,8],[1,3,2187],[0,2188,8],[2,2189,1789],[3,2184,56],[1,3,2191],[0,2192,8],[2,2153,1809],[1,3,2194],[0,2195,8],[2,1802,2196,1815],[3,425,17],[1,3,2198],[0,2199,8],[2,2200,1789],[3,2195,26],[1,3,2202],[0,2203,8],[2,1802,2204,1815],[3,433,14],[1,3,2206],[0,2207,8],[2,2208,1789],[3,2203,23],[1,3,2210],[0,2211,8],[2,2212,1809],[3,2203,15],[1,3,2214],[0,2215,8],[2,2216,2217,1815],[3,2203,9],[3,446,15],[1,3,2219],[0,2220,8],[2,2221,1789],[3,2215,25],[1,3,2223],[0,2224,8],[2,1802,2225,1804],[3,454,11],[1,3,2227],[0,2228,8],[2,1802,2229,1804],[3,458,14],[1,3,2231],[0,2232,8],[2,2233,463,2234],[3,2228,9],[3,2075,29,15],[1,3,2236],[0,2237,8],[2,2238,2239,1804],[3,2232,14],[3,469,15],[1,3,2241],[0,2242,8],[2,1802,1794],[1,3,2244],[0,2245,8],[2,2246,1789],[3,2242,15],[1,3,2248],[0,2249,8],[2,1802,2250],"leaked-handles.d.ts",[1,3,2252],[0,2253,8],[2,1802,2254],"node-namespace.d.ts",[1,3,2256],[0,2257,8],[2,1802,2258,1804],[3,481,11],[1,3,2260],[0,2261,8],[2,2262,2263],[3,2257,13],"perf.test.ts",[1,3,2265],[0,2266,8],[2,2267,1789],[3,2261,19],[1,3,2269],[0,2270,8],[2,2262,2271],"timer.test.ts",[1,3,2273],[0,2274,8],[2,2275,1789],[3,2270,20],[1,3,2277],[0,2278,8],[2,1802,2279,1815],[3,502,15],[1,3,2281],[0,2282,8],[2,2283,1789],[3,2278,24],[1,3,2285],[0,2286,8],[2,2287,2288,1815],[3,2278,9],[3,511,11],[1,3,2290],[0,2291,8],[2,2292,1789],[3,2286,21],[1,3,2294],[0,2295,8],[2,1802,2296,1804],[3,519,15],[1,3,2298],[0,2299,8],[2,2300,2301,1804],[3,2295,13],[3,524,11],[1,3,2303],[0,2304,8],[2,2300,2305,1804],[3,528,13],[1,3,2307],[0,2308,8],[2,2300,2309,1804],[3,532,8],[1,3,2311],[0,2312,8],[2,2313,2314,1804],[3,2308,14],[3,537,11],[1,3,2316],[0,2317,8],[2,2300,2318,1804],[3,541,12],[1,3,2320],[0,2321,8],[2,2300,2322,1804],[3,545,12],[1,3,2324],[0,2325,8],[2,2326,2327,1804],[3,2295,10],[3,550,33],[1,3,2329],[0,2330,8],[2,2331,2332,1804],[3,2325,30],[3,555,9],[1,3,2334],[0,2335,8],[2,2336,2337,1815],[3,2325,23],[3,560,10],[1,3,2339],[0,2340,8],[2,2341,1789],[3,2335,34],[1,3,2343],[0,2344,8],[2,2336,165,2080,1804],[1,3,2346],[0,2347,8],[2,2348,572,2349],[3,2344,25],[3,2053,28,17],[1,3,2351],[0,2352,8],[2,2353,1789],[3,2347,54],[1,3,2355],[0,2356,8],[2,2357,2358,1815],[3,2344,24],[3,582,12],[1,3,2360],[0,2361,8],[2,2362,1789],[3,2356,37],[1,3,2364],[0,2365,8],[2,2336,1809],[1,3,2367],[0,2368,8],[2,2369,2370,1815],[3,2365,24],[3,594,11],[1,3,2372],[0,2373,8],[2,2374,1789],[3,2368,36],[1,3,2376],[0,2377,8],[2,2336,2378,1815],[3,602,21],[1,3,2380],[0,2381,8],[2,2382,1789],[3,2377,45],[1,3,2384],[0,2385,8],[2,2336,2386,1815],[3,610,11],[1,3,2388],[0,2389,8],[2,2390,1789],[3,2385,35],[1,3,2392],[0,2393,8],[2,2336,2394,1804],[3,618,26],[1,3,2396],[0,2397,8],[2,2336,2398,2399],"text",[3,2356,17,26],[1,3,2401],[0,2402,8],[2,2403,1789],[3,2397,38],[1,3,2405],[0,2406,8],[2,2407,2408,1815],[3,2397,24],[3,631,9],[1,3,2410],[0,2411,8],[2,2412,1789],[3,2406,34],[1,3,2414],[0,2415,8],[2,2336,2416,2417],"v",[3,2356,16,27],[1,3,2419],[0,2420,8],[2,2421,1789],[3,2415,34],[1,3,2423],[0,2424,8],[2,2425,2426],[3,2295,9],"race.test.ts",[1,3,2428],[0,2429,8],[2,2430,1789],[3,2424,15],[1,3,2432],[0,2433,8],[2,1802,2434,1815],[3,656,17],[1,3,2436],[0,2437,8],[2,2438,1789],[3,2433,26],[1,3,2440],[0,2441,8],[2,2442,2443,1815],[3,2433,24],[3,665,9],[1,3,2445],[0,2446,8],[2,2447,1789],[3,2441,34],[1,3,2449],[0,2450,8],[2,2451,2452,1815],[3,2433,13],[3,674,11],[1,3,2454],[0,2455,8],[2,2456,1789],[3,2450,25],[1,3,2458],[0,2459,8],[2,2451,2460,1815],[3,682,12],[1,3,2462],[0,2463,8],[2,2464,1789],[3,2459,26],[1,3,2466],[0,2467,8],[2,2451,2468,1804],[3,690,13],[1,3,2470],[0,2471,8],[2,2451,2472,1815],[3,694,13],[1,3,2474],[0,2475,8],[2,2476,1789],[3,2471,27],[1,3,2478],[0,2479,8],[2,2451,2480,1815],[3,702,12],[1,3,2482],[0,2483,8],[2,2484,1789],[3,2479,26],[1,3,2486],[0,2487,8],[2,2451,2488,1815],[3,710,8],[1,3,2490],[0,2491,8],[2,2492,1789],[3,2487,22],[1,3,2494],[0,2495,8],[2,2496,2497],[3,2487,17],"Range.regexp.test.ts",[1,3,2499],[0,2500,8],[2,2501,1815],[3,2495,23],[1,3,2503],[0,2504,8],[2,2505,1789],[3,2500,24],[1,3,2507],[0,2508,8],[2,2451,2509],"Uri.test.ts",[1,3,2511],[0,2512,8],[2,2513,1789],[3,2508,18],[1,3,2515],[0,2516,8],[2,2451,2517,2518],"errors.t","est.ts",[1,3,2520],[0,2521,8],[2,2522,1789],[3,2516,21],[1,3,2524],[0,2525,8],[2,2451,2526,1815],[3,747,11],[1,3,2528],[0,2529,8],[2,2530,1789],[3,2525,25],[1,3,2532],[0,2533,8],[2,2534,2535],[3,2525,15],"ndUp.test.ts",[1,3,2537],[0,2538,8],[2,2539,1789],[3,2533,21],[1,3,2541],[0,2542,8],[2,2543,2544,1815],[3,2533,19],[3,765,8],[1,3,2546],[0,2547,8],[2,2548,1789],[3,2542,28],[1,3,2550],[0,2551,8],[2,2451,2552,1815],[3,773,20],[1,3,2554],[0,2555,8],[2,2556,1789],[3,2551,34],[1,3,2558],[0,2559,8],[2,2451,2560],"logger.test.ts",[1,3,2562],[0,2563,8],[2,2564,1789],[3,2559,21],[1,3,2566],[0,2567,8],[2,2451,2568,1815],[3,789,17],[1,3,2570],[0,2571,8],[2,2572,1789],[3,2567,31],[1,3,2574],[0,2575,8],[2,2576,2577],[3,2567,21],"rWeak.test.ts",[1,3,2579],[0,2580,8],[2,2581,1789],[3,2575,28],[1,3,2583],[0,2584,8],[2,2451,2585,1804],[3,806,12],[1,3,2587],[0,2588,8],[2,2589,2590],[3,2584,15],"pMap.test.ts",[1,3,2592],[0,2593,8],[2,2594,1789],[3,2588,21],[1,3,2596],[0,2597,8],[2,2589,2598,1815],[3,819,10],[1,3,2600],[0,2601,8],[2,2602,1789],[3,2597,26],[1,3,2604],[0,2605,8],[2,2451,2606],"search.test.ts",[1,3,2608],[0,2609,8],[2,2610,1789],[3,2605,21],[1,3,2612],[0,2613,8],[2,2614,2615,1815],[3,2605,14],[3,836,11],[1,3,2617],[0,2618,8],[2,2619,1789],[3,2613,26],[1,3,2621],[0,2622,8],[2,2451,2623,1815],[3,844,10],[1,3,2625],[0,2626,8],[2,2627,1789],[3,2622,24],[1,3,2629],[0,2630,8],[2,2631,2632],[3,2622,15],"xt.test.ts",[1,3,2634],[0,2635,8],[2,2636,1789],[3,2630,19],[1,3,2638],[0,2639,8],[2,2640,2641],[3,2630,17],"Api.ts",[1,3,2643],[0,2644,8],[2,2640,2645],"Regex.test.ts",[1,3,2647],[0,2648,8],[2,2649,1789],[3,2644,24],[1,3,2651],[0,2652,8],[2,2653,1981],[3,2622,14],[1,3,2655],[0,2656,8],[2,2451,2657],"url.test.ts",[1,3,2659],[0,2660,8],[2,2661,1789],[3,2656,18],[1,3,2663],[0,2664,8],[2,2665,2666],[3,2656,14],"til.test.ts",[1,3,2668],[0,2669,8],[2,2670,1789],[3,2664,19],[1,3,2672],[0,2673,8],[2,2451,2674,2675],[3,891,13],"perf.ts",[1,3,2677],[0,2678,8],[2,2679,1815],[3,2673,26],[1,3,2681],[0,2682,8],[2,2683,1789],[3,2678,27],[1,3,2685],[0,2686,8],[2,1802,2687,1804],[3,639,10],[1,3,2689],[0,2690,8],[2,1802,2691,1815],[3,902,15],[1,3,2693],[0,2694,8],[2,2695,1789],[3,2690,24],[1,3,2697],[0,2698,2699],"",[0]] diff --git a/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.jsonc b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.jsonc new file mode 100644 index 000000000000..8b2f33daec5d --- /dev/null +++ b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.jsonc @@ -0,0 +1,2702 @@ +[ +"Flatpack JSON v2", +[0,2,10,13,18,23,27,32,36,41,45,49,53,57,62,66,70,74,78,83,87,91,95,99,103,108,112,116,121,125,130,136,140,145,150,154,158,162,167,171,176,180,183,188,192,196,201,205,210,213,217,221,227,231,236,240,247,251,255,259,263,267,271,275,279,283,287,291,295,300,304,308,312,315,320,323,327,331,335,340,344,348,353,357,362,366,370,375,379,384,389,394,398,403,407,411,415,419,422,426,430,434,438,442,447,451,455,459,465,470,473,478,482,487,491,495,499,503,507,512,516,520,525,529,533,538,542,546,551,556,561,565,568,574,578,583,587,590,595,599,603,607,611,615,619,623,627,632,636,640,644,649,653,657,661,666,670,675,679,683,687,691,695,699,703,707,711,715,720,725,728,732,736,740,744,748,752,757,761,766,770,774,778,782,786,790,794,799,803,807,812,816,820,824,828,832,837,841,845,849,854,858,863,867,871,875,879,884,888,892,896,899,903,907,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1343,1347,1351,1355,1359,1363,1367,1371,1375,1379,1383,1387,1391,1395,1399,1403,1407,1411,1415,1419,1423,1427,1431,1435,1439,1443,1447,1451,1455,1459,1463,1467,1471,1475,1479,1483,1487,1491,1495,1499,1503,1507,1511,1515,1519,1523,1527,1531,1535,1539,1543,1547,1551,1555,1559,1563,1567,1571,1575,1579,1583,1587,1591,1595,1599,1603,1607,1611,1615,1619,1623,1627,1631,1635,1639,1643,1647,1651,1655,1659,1663,1667,1671,1675,1679,1683,1687,1691,1695,1699,1703,1708,1712,1716,1720,1723,1727,1731,1735,1739,1743,1747,1750,1754,1758,1761,1766,1771,1775,1779,1782,1785,1790,1795,1799,1805,1810,1816,1820,1824,1828,1832,1837,1841,1845,1849,1853,1858,1862,1866,1870,1874,1878,1883,1887,1891,1896,1900,1905,1910,1914,1919,1924,1928,1932,1936,1940,1944,1949,1953,1956,1960,1964,1968,1973,1977,1982,1985,1989,1993,1999,2003,2008,2012,2016,2020,2024,2028,2032,2036,2039,2043,2047,2051,2056,2060,2064,2069,2073,2077,2081,2085,2089,2093,2097,2101,2105,2110,2114,2118,2123,2127,2132,2136,2140,2146,2150,2155,2160,2165,2169,2174,2178,2182,2186,2190,2193,2197,2201,2205,2209,2213,2218,2222,2226,2230,2235,2240,2243,2247,2251,2255,2259,2264,2268,2272,2276,2280,2284,2289,2293,2297,2302,2306,2310,2315,2319,2323,2328,2333,2338,2342,2345,2350,2354,2359,2363,2366,2371,2375,2379,2383,2387,2391,2395,2400,2404,2409,2413,2418,2422,2427,2431,2435,2439,2444,2448,2453,2457,2461,2465,2469,2473,2477,2481,2485,2489,2493,2498,2502,2506,2510,2514,2519,2523,2527,2531,2536,2540,2545,2549,2553,2557,2561,2565,2569,2573,2578,2582,2586,2591,2595,2599,2603,2607,2611,2616,2620,2624,2628,2633,2637,2642,2646,2650,2654,2658,2662,2667,2671,2676,2680,2684,2688,2692,2696], +[1,3,6], +[0,4,5], +"filename", +"fileType", +[0,7,8], +"api/api.d.ts", +[0,9], +"typescript", +[1,3,11], +[0,12,8], +"dist/esm/Cache/cspell.cache.d.ts", +[1,3,14], +[0,15,8], +[2,16,17], +[3,12,28], +"test.d.ts", +[1,3,19], +[0,20,8], +[2,21,22], +[3,12,15], +"index.d.ts", +[1,3,24], +[0,25,8], +[2,26,17], +[3,20,21], +[1,3,28], +[0,29,8], +[2,30,31], +[3,12,9], +"Document/Document.d.ts", +[1,3,33], +[0,34,8], +[2,35,22], +[3,29,18], +[1,3,37], +[0,38,8], +[2,39,40], +[3,34,19], +"sBinaryDoc.d.ts", +[1,3,42], +[0,43,8], +[2,44,17], +[3,38,30], +[1,3,46], +[0,47,8], +[2,35,48], +"normalizeLanguageIds.d.ts", +[1,3,50], +[0,51,8], +[2,35,52], +"resolveDocument.d.ts", +[1,3,54], +[0,55,8], +[2,30,56], +"FeatureFlags/FeatureFalgs.test.d.ts", +[1,3,58], +[0,59,8], +[2,60,61], +[3,55,30], +"lags.d.ts", +[1,3,63], +[0,64,8], +[2,65,22], +[3,55,22], +[1,3,67], +[0,68,8], +[2,30,69], +[3,48,16,9], +[1,3,71], +[0,72,8], +[2,73,17], +[3,68,21], +[1,3,75], +[0,76,8], +[2,30,77], +"Models/CSpellSettingsInternalDef.d.ts", +[1,3,79], +[0,80,8], +[2,81,82], +[3,76,16], +"PatternRegExp.d.ts", +[1,3,84], +[0,85,8], +[2,86,17], +[3,80,30], +[1,3,88], +[0,89,8], +[2,81,90], +"Suggestion.d.ts", +[1,3,92], +[0,93,8], +[2,81,94], +"TextDocument.d.ts", +[1,3,96], +[0,97,8], +[2,98,17], +[3,93,29], +[1,3,100], +[0,101,8], +[2,81,102], +"ValidationIssue.d.ts", +[1,3,104], +[0,105,8], +[2,106,107], +[3,101,26], +"Result.d.ts", +[1,3,109], +[0,110,8], +[2,30,111], +"Settings/CSpellSettingsServer.d.ts", +[1,3,113], +[0,114,8], +[2,115,17], +[3,110,39], +[1,3,117], +[0,118,8], +[2,119,120], +[3,110,19], +"ontroller/ImportError.d.ts", +[1,3,122], +[0,123,8], +[2,124,17], +[3,118,41], +[1,3,126], +[0,127,8], +[2,128,129], +[3,118,29], +"configLoader/PnPSettings.d.ts", +[1,3,131], +[0,132,8], +[2,133,134,135], +[3,127,42], +[3,129,12], +".d.ts", +[1,3,137], +[0,138,8], +[2,139,17], +[3,132,55], +[1,3,141], +[0,142,8], +[2,143,144], +[3,132,50], +"cations.d.ts", +[1,3,146], +[0,147,8], +[2,148,149], +[3,132,48], +"Search.d.ts", +[1,3,151], +[0,152,8], +[2,153,17], +[3,147,55], +[1,3,155], +[0,156,8], +[2,148,157], +"ToRawSettings.d.ts", +[1,3,159], +[0,160,8], +[2,161,17], +[3,156,62], +[1,3,163], +[0,164,8], +[2,133,165,166], +"defaultC", +[3,132,16,43], +[1,3,168], +[0,169,8], +[2,170,17], +[3,164,62], +[1,3,172], +[0,173,8], +[2,174,175,135], +[3,164,49], +[3,111,8], +[1,3,177], +[0,178,8], +[2,133,179], +"extractImportErrors.d.ts", +[1,3,181], +[0,182,8], +[2,133,22], +[1,3,184], +[0,185,8], +[2,133,186,187], +[3,48,9], +[3,157,16,2], +[1,3,189], +[0,190,8], +[2,191,17], +[3,185,63], +[1,3,193], +[0,194,8], +[2,133,195], +"readSettings.d.ts", +[1,3,197], +[0,198,8], +[2,199,200], +[3,194,54], +"Files.d.ts", +[1,3,202], +[0,203,8], +[2,133,204], +"toGlobDef.d.ts", +[1,3,206], +[0,207,8], +[2,208,209], +[3,203,43], +"ypes.d.ts", +[1,3,211], +[0,212,8], +[2,128,22], +[1,3,214], +[0,215,8], +[2,128,216], +"pnpLoader.d.ts", +[1,3,218], +[0,219,8], +[2,220,17], +[3,215,39], +[1,3,222], +[0,223,8], +[2,224,225,226], +[3,110,18], +"D", +[3,173,19,43], +[1,3,228], +[0,229,8], +[2,230,17], +[3,223,34], +[1,3,232], +[0,233,8], +[2,234,235], +[3,223,19], +"ictionaryReferenceCollection.d.ts", +[1,3,237], +[0,238,8], +[2,239,17], +[3,233,48], +[1,3,241], +[0,242,8], +[2,243,244,246], +[3,233,28], +[3,245,9], +[3,160,18,53], +"d.ts", +[1,3,248], +[0,249,8], +[2,250,17], +[3,242,37], +[1,3,252], +[0,253,8], +[2,224,254], +"GlobalSettings.d.ts", +[1,3,256], +[0,257,8], +[2,258,17], +[3,253,33], +[1,3,260], +[0,261,8], +[2,224,262], +"InDocSettings.d.ts", +[1,3,264], +[0,265,8], +[2,266,17], +[3,261,32], +[1,3,268], +[0,269,8], +[2,224,270,244,246], +[3,69,8], +[1,3,272], +[0,273,8], +[2,274,17], +[3,269,35], +[1,3,276], +[0,277,8], +[2,224,278], +"RegExpPatterns.d.ts", +[1,3,280], +[0,281,8], +[2,282,17], +[3,277,33], +[1,3,284], +[0,285,8], +[2,224,286,244,246], +[3,94,12], +[1,3,288], +[0,289,8], +[2,290,17], +[3,285,39], +[1,3,292], +[0,293,8], +[2,224,294], +"calcOverrideSettings.d.ts", +[1,3,296], +[0,297,8], +[2,298,299], +[3,293,19], +"fgStore.d.ts", +[1,3,301], +[0,302,8], +[2,303,17], +[3,297,27], +[1,3,305], +[0,306,8], +[2,298,307], +"heckFilenameMatchesGlob.d.ts", +[1,3,309], +[0,310,8], +[2,298,311], +"onstants.d.ts", +[1,3,313], +[0,314,8], +[2,224,22], +[1,3,316], +[0,317,8], +[2,318,319], +[3,314,24], +"link.d.ts", +[1,3,321], +[0,322,8], +[2,224,319], +[1,3,324], +[0,325,8], +[2,326,17], +[3,322,23], +[1,3,328], +[0,329,8], +[2,224,330], +"mergeCache.d.ts", +[1,3,332], +[0,333,8], +[2,334,17], +[3,329,29], +[1,3,336], +[0,337,8], +[2,338,339], +[3,329,23], +"List.d.ts", +[1,3,341], +[0,342,8], +[2,224,343], +"patterns.d.ts", +[1,3,345], +[0,346,8], +[2,347,17], +[3,342,27], +[1,3,349], +[0,350,8], +[2,351,352], +[3,110,10], +"pellingDictionary/Dictionaries.d.ts", +[1,3,354], +[0,355,8], +[2,356,17], +[3,350,41], +[1,3,358], +[0,359,8], +[2,360,361], +[3,350,37], +"yController/DictionaryLoader.d.ts", +[1,3,363], +[0,364,8], +[2,365,17], +[3,359,66], +[1,3,367], +[0,368,8], +[2,369,22], +[3,359,49], +[1,3,371], +[0,372,8], +[2,373,374], +[3,359,38], +"Loader.d.ts", +[1,3,376], +[0,377,8], +[2,378,17], +[3,372,45], +[1,3,380], +[0,381,8], +[2,382,383], +[3,350,28], +"SpellingDictionary.d.ts", +[1,3,385], +[0,386,8], +[2,387,388], +[3,381,46], +"Error.d.ts", +[1,3,390], +[0,391,8], +[2,392,393], +[3,381,29], +"uggestExperimental/SuggestionCollector.d.ts", +[1,3,395], +[0,396,8], +[2,397,17], +[3,391,68], +[1,3,399], +[0,400,8], +[2,401,402], +[3,391,48], +"entities.d.ts", +[1,3,404], +[0,405,8], +[2,401,406], +"helpers.d.ts", +[1,3,408], +[0,409,8], +[2,410,17], +[3,405,56], +[1,3,412], +[0,413,8], +[2,401,414], +"suggest.d.ts", +[1,3,416], +[0,417,8], +[2,418,17], +[3,413,56], +[1,3,420], +[0,421,8], +[2,382,22], +[1,3,423], +[0,424,8], +[2,30,425], +"clearCachedFiles.d.ts", +[1,3,427], +[0,428,8], +[2,429,17], +[3,424,26], +[1,3,431], +[0,432,8], +[2,30,433], +"events/events.d.ts", +[1,3,435], +[0,436,8], +[2,437,17], +[3,432,23], +[1,3,439], +[0,440,8], +[2,441,22], +[3,432,16], +[1,3,443], +[0,444,8], +[2,445,446], +[3,432,10], +"xclusionHelper.d.ts", +[1,3,448], +[0,449,8], +[2,450,17], +[3,444,25], +[1,3,452], +[0,453,8], +[2,30,454], +"fileSystem.d.ts", +[1,3,456], +[0,457,8], +[2,30,458], +"getDictionary.d.ts", +[1,3,460], +[0,461,8], +[2,462,463,464], +[3,457,10], +"lob", +[3,306,31,16], +[1,3,466], +[0,467,8], +[2,468,469], +[3,461,15], +"getGlobMatcher.d.ts", +[1,3,471], +[0,472,8], +[2,30,22], +[1,3,474], +[0,475,8], +[2,476,477], +[3,12,8], +[3,25,16,14], +[1,3,479], +[0,480,8], +[2,30,481], +"perf/index.d.ts", +[1,3,483], +[0,484,8], +[2,485,486], +[3,480,14], +"perf.d.ts", +[1,3,488], +[0,489,8], +[2,490,17], +[3,484,19], +[1,3,492], +[0,493,8], +[2,485,494], +"timer.d.ts", +[1,3,496], +[0,497,8], +[2,498,17], +[3,493,20], +[1,3,500], +[0,501,8], +[2,30,502], +"spellCheckFile.d.ts", +[1,3,504], +[0,505,8], +[2,506,17], +[3,501,24], +[1,3,508], +[0,509,8], +[2,510,511], +[3,501,10], +"uggestions.d.ts", +[1,3,513], +[0,514,8], +[2,515,17], +[3,509,21], +[1,3,517], +[0,518,8], +[2,30,519], +"test/bugs.spec.d.ts", +[1,3,521], +[0,522,8], +[2,523,524], +[3,518,14], +"dutch.spec.d.ts", +[1,3,526], +[0,527,8], +[2,523,528], +"english.spec.d.ts", +[1,3,530], +[0,531,8], +[2,523,532], +"fa.spec.d.ts", +[1,3,534], +[0,535,8], +[2,536,537], +[3,531,15], +"rench.spec.d.ts", +[1,3,539], +[0,540,8], +[2,523,541], +"golang.spec.d.ts", +[1,3,543], +[0,544,8], +[2,523,545], +"python.spec.d.ts", +[1,3,547], +[0,548,8], +[2,549,550], +[3,518,11], +"xtValidation/ValidateTextOptions.d.ts", +[1,3,552], +[0,553,8], +[2,554,555], +[3,548,31], +"ionTypes.d.ts", +[1,3,557], +[0,558,8], +[2,559,560], +[3,548,24], +"checkText.d.ts", +[1,3,562], +[0,563,8], +[2,564,17], +[3,558,34], +[1,3,566], +[0,567,8], +[2,559,165,311], +[1,3,569], +[0,570,8], +[2,571,572,573], +[3,567,26], +"termine", +[3,285,25,18], +[1,3,575], +[0,576,8], +[2,577,17], +[3,570,54], +[1,3,579], +[0,580,8], +[2,581,582], +[3,567,25], +"ocValidator.d.ts", +[1,3,584], +[0,585,8], +[2,586,17], +[3,580,37], +[1,3,588], +[0,589,8], +[2,559,22], +[1,3,591], +[0,592,8], +[2,593,594], +[3,589,25], +"sWordValid.d.ts", +[1,3,596], +[0,597,8], +[2,598,17], +[3,592,36], +[1,3,600], +[0,601,8], +[2,559,602], +"lineValidatorFactory.d.ts", +[1,3,604], +[0,605,8], +[2,606,17], +[3,601,45], +[1,3,608], +[0,609,8], +[2,559,610], +"parsedText.d.ts", +[1,3,612], +[0,613,8], +[2,614,17], +[3,609,35], +[1,3,616], +[0,617,8], +[2,559,618], +"settingsToValidateOptions.d.ts", +[1,3,620], +[0,621,8], +[2,559,622], +"textValidator.d.ts", +[1,3,624], +[0,625,8], +[2,626,17], +[3,621,38], +[1,3,628], +[0,629,8], +[2,630,631], +[3,621,25], +"raceWord.d.ts", +[1,3,633], +[0,634,8], +[2,635,17], +[3,629,34], +[1,3,637], +[0,638,8], +[2,559,639], +"validator.d.ts", +[1,3,641], +[0,642,8], +[2,643,17], +[3,638,34], +[1,3,645], +[0,646,8], +[2,647,648], +[3,518,10], +"race.d.ts", +[1,3,650], +[0,651,8], +[2,652,17], +[3,646,15], +[1,3,654], +[0,655,8], +[2,30,656], +"util/AutoResolve.d.ts", +[1,3,658], +[0,659,8], +[2,660,17], +[3,655,26], +[1,3,662], +[0,663,8], +[2,664,665], +[3,655,25], +"LRUCache.d.ts", +[1,3,667], +[0,668,8], +[2,669,17], +[3,663,34], +[1,3,671], +[0,672,8], +[2,673,674], +[3,655,14], +"Comparable.d.ts", +[1,3,676], +[0,677,8], +[2,678,17], +[3,672,25], +[1,3,680], +[0,681,8], +[2,673,682], +"FreqCounter.d.ts", +[1,3,684], +[0,685,8], +[2,686,17], +[3,681,26], +[1,3,688], +[0,689,8], +[2,673,690], +"IterableLike.d.ts", +[1,3,692], +[0,693,8], +[2,673,694], +"MinHeapQueue.d.ts", +[1,3,696], +[0,697,8], +[2,698,17], +[3,693,27], +[1,3,700], +[0,701,8], +[2,673,702], +"PairingHeap.d.ts", +[1,3,704], +[0,705,8], +[2,706,17], +[3,701,26], +[1,3,708], +[0,709,8], +[2,673,710], +"TextMap.d.ts", +[1,3,712], +[0,713,8], +[2,714,17], +[3,709,22], +[1,3,716], +[0,717,8], +[2,718,719], +[3,709,18], +"Range.d.ts", +[1,3,721], +[0,722,8], +[2,723,724], +[3,717,24], +"regexp.test.d.ts", +[1,3,726], +[0,727,8], +[2,723,17], +[1,3,729], +[0,730,8], +[2,673,731], +"Uri.d.ts", +[1,3,733], +[0,734,8], +[2,735,17], +[3,730,18], +[1,3,737], +[0,738,8], +[2,673,739], +"errors.d.ts", +[1,3,741], +[0,742,8], +[2,743,17], +[3,738,21], +[1,3,745], +[0,746,8], +[2,673,747], +"fileReader.d.ts", +[1,3,749], +[0,750,8], +[2,751,17], +[3,746,25], +[1,3,753], +[0,754,8], +[2,755,756], +[3,746,16], +"ndUp.d.ts", +[1,3,758], +[0,759,8], +[2,760,17], +[3,754,21], +[1,3,762], +[0,763,8], +[2,764,765], +[3,754,20], +"FromUrl.d.ts", +[1,3,767], +[0,768,8], +[2,769,17], +[3,763,28], +[1,3,771], +[0,772,8], +[2,673,773], +"iterableIteratorLib.d.ts", +[1,3,775], +[0,776,8], +[2,777,17], +[3,772,34], +[1,3,779], +[0,780,8], +[2,673,781], +"logger.d.ts", +[1,3,783], +[0,784,8], +[2,785,17], +[3,780,21], +[1,3,787], +[0,788,8], +[2,673,789], +"memorizeLastCall.d.ts", +[1,3,791], +[0,792,8], +[2,793,17], +[3,788,31], +[1,3,795], +[0,796,8], +[2,797,798], +[3,788,22], +"rWeak.d.ts", +[1,3,800], +[0,801,8], +[2,802,17], +[3,796,28], +[1,3,804], +[0,805,8], +[2,673,806], +"regexHelper.d.ts", +[1,3,808], +[0,809,8], +[2,810,811], +[3,805,16], +"pMap.d.ts", +[1,3,813], +[0,814,8], +[2,815,17], +[3,809,21], +[1,3,817], +[0,818,8], +[2,810,819], +"solveFile.d.ts", +[1,3,821], +[0,822,8], +[2,823,17], +[3,818,26], +[1,3,825], +[0,826,8], +[2,673,827], +"search.d.ts", +[1,3,829], +[0,830,8], +[2,831,17], +[3,826,21], +[1,3,833], +[0,834,8], +[2,835,836], +[3,826,15], +"impleCache.d.ts", +[1,3,838], +[0,839,8], +[2,840,17], +[3,834,26], +[1,3,842], +[0,843,8], +[2,673,844], +"templates.d.ts", +[1,3,846], +[0,847,8], +[2,848,17], +[3,843,24], +[1,3,850], +[0,851,8], +[2,852,853], +[3,843,16], +"xt.d.ts", +[1,3,855], +[0,856,8], +[2,857,17], +[3,851,19], +[1,3,859], +[0,860,8], +[2,861,862], +[3,851,18], +"Regex.d.ts", +[1,3,864], +[0,865,8], +[2,866,17], +[3,860,24], +[1,3,868], +[0,869,8], +[2,870,209], +[3,843,15], +[1,3,872], +[0,873,8], +[2,673,874], +"url.d.ts", +[1,3,876], +[0,877,8], +[2,878,17], +[3,873,18], +[1,3,880], +[0,881,8], +[2,882,883], +[3,873,15], +"til.d.ts", +[1,3,885], +[0,886,8], +[2,887,17], +[3,881,19], +[1,3,889], +[0,890,8], +[2,673,891], +"wordSplitter.d.ts", +[1,3,893], +[0,894,8], +[2,895,17], +[3,890,27], +[1,3,897], +[0,898,8], +[2,30,639], +[1,3,900], +[0,901,8], +[2,30,902], +"wordListHelper.d.ts", +[1,3,904], +[0,905,8], +[2,906,17], +[3,901,24], +[1,3,908], +[0,909,8], +[2,910,911], +"dist/lib", +[3,12,24,8], +[1,3,913], +[0,914,8], +[2,910,915], +[3,15,29,8], +[1,3,917], +[0,918,8], +[2,910,919], +[3,20,17,8], +[1,3,921], +[0,922,8], +[2,910,923], +[3,25,22,8], +[1,3,925], +[0,926,8], +[2,910,927], +[3,29,23,8], +[1,3,929], +[0,930,8], +[2,910,931], +[3,34,20,8], +[1,3,933], +[0,934,8], +[2,910,935], +[3,38,26,8], +[1,3,937], +[0,938,8], +[2,910,939], +[3,43,31,8], +[1,3,941], +[0,942,8], +[2,910,943], +[3,47,35,8], +[1,3,945], +[0,946,8], +[2,910,947], +[3,51,30,8], +[1,3,949], +[0,950,8], +[2,910,951], +[3,55,36,8], +[1,3,953], +[0,954,8], +[2,910,955], +[3,59,31,8], +[1,3,957], +[0,958,8], +[2,910,959], +[3,64,24,8], +[1,3,961], +[0,962,8], +[2,910,963], +[3,68,17,8], +[1,3,965], +[0,966,8], +[2,910,967], +[3,72,22,8], +[1,3,969], +[0,970,8], +[2,910,971], +[3,76,38,8], +[1,3,973], +[0,974,8], +[2,910,975], +[3,80,26,8], +[1,3,977], +[0,978,8], +[2,910,979], +[3,85,31,8], +[1,3,981], +[0,982,8], +[2,910,983], +[3,89,23,8], +[1,3,985], +[0,986,8], +[2,910,987], +[3,93,25,8], +[1,3,989], +[0,990,8], +[2,910,991], +[3,97,30,8], +[1,3,993], +[0,994,8], +[2,910,995], +[3,101,28,8], +[1,3,997], +[0,998,8], +[2,910,999], +[3,105,29,8], +[1,3,1001], +[0,1002,8], +[2,910,1003], +[3,110,35,8], +[1,3,1005], +[0,1006,8], +[2,910,1007], +[3,114,40,8], +[1,3,1009], +[0,1010,8], +[2,910,1011], +[3,118,37,8], +[1,3,1013], +[0,1014,8], +[2,910,1015], +[3,123,42,8], +[1,3,1017], +[0,1018,8], +[2,910,1019], +[3,127,50,8], +[1,3,1021], +[0,1022,8], +[2,910,1023], +[3,132,51,8], +[1,3,1025], +[0,1026,8], +[2,910,1027], +[3,138,56,8], +[1,3,1029], +[0,1030,8], +[2,910,1031], +[3,142,54,8], +[1,3,1033], +[0,1034,8], +[2,910,1035], +[3,147,51,8], +[1,3,1037], +[0,1038,8], +[2,910,1039], +[3,152,56,8], +[1,3,1041], +[0,1042,8], +[2,910,1043], +[3,156,58,8], +[1,3,1045], +[0,1046,8], +[2,910,1047], +[3,160,63,8], +[1,3,1049], +[0,1050,8], +[2,910,1051], +[3,164,58,8], +[1,3,1053], +[0,1054,8], +[2,910,1055], +[3,169,63,8], +[1,3,1057], +[0,1058,8], +[2,910,1059], +[3,173,54,8], +[1,3,1061], +[0,1062,8], +[2,910,1063], +[3,178,58,8], +[1,3,1065], +[0,1066,8], +[2,910,1067], +[3,182,44,8], +[1,3,1069], +[0,1070,8], +[2,910,1071], +[3,185,59,8], +[1,3,1073], +[0,1074,8], +[2,910,1075], +[3,190,64,8], +[1,3,1077], +[0,1078,8], +[2,910,1079], +[3,194,51,8], +[1,3,1081], +[0,1082,8], +[2,910,1083], +[3,198,56,8], +[1,3,1085], +[0,1086,8], +[2,910,1087], +[3,203,48,8], +[1,3,1089], +[0,1090,8], +[2,910,1091], +[3,207,44,8], +[1,3,1093], +[0,1094,8], +[2,910,1095], +[3,212,31,8], +[1,3,1097], +[0,1098,8], +[2,910,1099], +[3,215,35,8], +[1,3,1101], +[0,1102,8], +[2,910,1103], +[3,219,40,8], +[1,3,1105], +[0,1106,8], +[2,910,1107], +[3,223,30,8], +[1,3,1109], +[0,1110,8], +[2,910,1111], +[3,229,35,8], +[1,3,1113], +[0,1114,8], +[2,910,1115], +[3,233,44,8], +[1,3,1117], +[0,1118,8], +[2,910,1119], +[3,238,49,8], +[1,3,1121], +[0,1122,8], +[2,910,1123], +[3,242,33,8], +[1,3,1125], +[0,1126,8], +[2,910,1127], +[3,249,38,8], +[1,3,1129], +[0,1130,8], +[2,910,1131], +[3,253,29,8], +[1,3,1133], +[0,1134,8], +[2,910,1135], +[3,257,34,8], +[1,3,1137], +[0,1138,8], +[2,910,1139], +[3,261,28,8], +[1,3,1141], +[0,1142,8], +[2,910,1143], +[3,265,33,8], +[1,3,1145], +[0,1146,8], +[2,910,1147], +[3,269,31,8], +[1,3,1149], +[0,1150,8], +[2,910,1151], +[3,273,36,8], +[1,3,1153], +[0,1154,8], +[2,910,1155], +[3,277,29,8], +[1,3,1157], +[0,1158,8], +[2,910,1159], +[3,281,34,8], +[1,3,1161], +[0,1162,8], +[2,910,1163], +[3,285,35,8], +[1,3,1165], +[0,1166,8], +[2,910,1167], +[3,289,40,8], +[1,3,1169], +[0,1170,8], +[2,910,1171], +[3,293,35,8], +[1,3,1173], +[0,1174,8], +[2,910,1175], +[3,297,23,8], +[1,3,1177], +[0,1178,8], +[2,910,1179], +[3,302,28,8], +[1,3,1181], +[0,1182,8], +[2,910,1183], +[3,306,39,8], +[1,3,1185], +[0,1186,8], +[2,910,1187], +[3,310,24,8], +[1,3,1189], +[0,1190,8], +[2,910,1191], +[3,314,20,8], +[1,3,1193], +[0,1194,8], +[2,910,1195], +[3,317,25,8], +[1,3,1197], +[0,1198,8], +[2,910,1199], +[3,322,19,8], +[1,3,1201], +[0,1202,8], +[2,910,1203], +[3,325,24,8], +[1,3,1205], +[0,1206,8], +[2,910,1207], +[3,329,25,8], +[1,3,1209], +[0,1210,8], +[2,910,1211], +[3,333,30,8], +[1,3,1213], +[0,1214,8], +[2,910,1215], +[3,337,24,8], +[1,3,1217], +[0,1218,8], +[2,910,1219], +[3,342,23,8], +[1,3,1221], +[0,1222,8], +[2,910,1223], +[3,346,28,8], +[1,3,1225], +[0,1226,8], +[2,910,1227], +[3,350,37,8], +[1,3,1229], +[0,1230,8], +[2,910,1231], +[3,355,42,8], +[1,3,1233], +[0,1234,8], +[2,910,1235], +[3,359,62,8], +[1,3,1237], +[0,1238,8], +[2,910,1239], +[3,364,67,8], +[1,3,1241], +[0,1242,8], +[2,910,1243], +[3,368,51,8], +[1,3,1245], +[0,1246,8], +[2,910,1247], +[3,372,41,8], +[1,3,1249], +[0,1250,8], +[2,910,1251], +[3,377,46,8], +[1,3,1253], +[0,1254,8], +[2,910,1255], +[3,381,43,8], +[1,3,1257], +[0,1258,8], +[2,910,1259], +[3,386,48,8], +[1,3,1261], +[0,1262,8], +[2,910,1263], +[3,391,64,8], +[1,3,1265], +[0,1266,8], +[2,910,1267], +[3,396,69,8], +[1,3,1269], +[0,1270,8], +[2,910,1271], +[3,400,53,8], +[1,3,1273], +[0,1274,8], +[2,910,1275], +[3,405,52,8], +[1,3,1277], +[0,1278,8], +[2,910,1279], +[3,409,57,8], +[1,3,1281], +[0,1282,8], +[2,910,1283], +[3,413,52,8], +[1,3,1285], +[0,1286,8], +[2,910,1287], +[3,417,57,8], +[1,3,1289], +[0,1290,8], +[2,910,1291], +[3,421,30,8], +[1,3,1293], +[0,1294,8], +[2,910,1295], +[3,424,22,8], +[1,3,1297], +[0,1298,8], +[2,910,1299], +[3,428,27,8], +[1,3,1301], +[0,1302,8], +[2,910,1303], +[3,432,19,8], +[1,3,1305], +[0,1306,8], +[2,910,1307], +[3,436,24,8], +[1,3,1309], +[0,1310,8], +[2,910,1311], +[3,440,18,8], +[1,3,1313], +[0,1314,8], +[2,910,1315], +[3,444,21,8], +[1,3,1317], +[0,1318,8], +[2,910,1319], +[3,449,26,8], +[1,3,1321], +[0,1322,8], +[2,910,1323], +[3,453,16,8], +[1,3,1325], +[0,1326,8], +[2,910,1327], +[3,457,19,8], +[1,3,1329], +[0,1330,8], +[2,910,1331], +[3,461,36,8], +[1,3,1333], +[0,1334,8], +[2,910,1335], +[3,467,26,8], +[1,3,1337], +[0,1338,8], +[2,1339,22], +[3,909,9], +[1,3,1341], +[0,1342,8], +[2,910,477], +[1,3,1344], +[0,1345,8], +[2,910,1346], +[3,480,16,8], +[1,3,1348], +[0,1349,8], +[2,1350,486], +[3,1345,14], +[1,3,1352], +[0,1353,8], +[2,910,1354], +[3,489,20,8], +[1,3,1356], +[0,1357,8], +[2,910,1358], +[3,493,16,8], +[1,3,1360], +[0,1361,8], +[2,910,1362], +[3,497,21,8], +[1,3,1364], +[0,1365,8], +[2,910,1366], +[3,501,20,8], +[1,3,1368], +[0,1369,8], +[2,910,1370], +[3,505,25,8], +[1,3,1372], +[0,1373,8], +[2,910,1374], +[3,509,17,8], +[1,3,1376], +[0,1377,8], +[2,910,1378], +[3,514,22,8], +[1,3,1380], +[0,1381,8], +[2,910,1382], +[3,518,20,8], +[1,3,1384], +[0,1385,8], +[2,910,1386], +[3,522,21,8], +[1,3,1388], +[0,1389,8], +[2,910,1390], +[3,527,23,8], +[1,3,1392], +[0,1393,8], +[2,910,1394], +[3,531,18,8], +[1,3,1396], +[0,1397,8], +[2,910,1398], +[3,535,22,8], +[1,3,1400], +[0,1401,8], +[2,910,1402], +[3,540,22,8], +[1,3,1404], +[0,1405,8], +[2,910,1406], +[3,544,22,8], +[1,3,1408], +[0,1409,8], +[2,910,1410], +[3,548,40,8], +[1,3,1412], +[0,1413,8], +[2,910,1414], +[3,553,36,8], +[1,3,1416], +[0,1417,8], +[2,910,1418], +[3,558,30,8], +[1,3,1420], +[0,1421,8], +[2,910,1422], +[3,563,35,8], +[1,3,1424], +[0,1425,8], +[2,910,1426], +[3,567,37,8], +[1,3,1428], +[0,1429,8], +[2,910,1430], +[3,570,50,8], +[1,3,1432], +[0,1433,8], +[2,910,1434], +[3,576,55,8], +[1,3,1436], +[0,1437,8], +[2,910,1438], +[3,580,33,8], +[1,3,1440], +[0,1441,8], +[2,910,1442], +[3,585,38,8], +[1,3,1444], +[0,1445,8], +[2,910,1446], +[3,589,26,8], +[1,3,1448], +[0,1449,8], +[2,910,1450], +[3,592,32,8], +[1,3,1452], +[0,1453,8], +[2,910,1454], +[3,597,37,8], +[1,3,1456], +[0,1457,8], +[2,910,1458], +[3,601,41,8], +[1,3,1460], +[0,1461,8], +[2,910,1462], +[3,605,46,8], +[1,3,1464], +[0,1465,8], +[2,910,1466], +[3,609,31,8], +[1,3,1468], +[0,1469,8], +[2,910,1470], +[3,613,36,8], +[1,3,1472], +[0,1473,8], +[2,910,1474], +[3,617,46,8], +[1,3,1476], +[0,1477,8], +[2,910,1478], +[3,621,34,8], +[1,3,1480], +[0,1481,8], +[2,910,1482], +[3,625,39,8], +[1,3,1484], +[0,1485,8], +[2,910,1486], +[3,629,30,8], +[1,3,1488], +[0,1489,8], +[2,910,1490], +[3,634,35,8], +[1,3,1492], +[0,1493,8], +[2,910,1494], +[3,638,30,8], +[1,3,1496], +[0,1497,8], +[2,910,1498], +[3,642,35,8], +[1,3,1500], +[0,1501,8], +[2,1502,648], +[3,1381,10], +[1,3,1504], +[0,1505,8], +[2,910,1506], +[3,651,16,8], +[1,3,1508], +[0,1509,8], +[2,910,1510], +[3,655,22,8], +[1,3,1512], +[0,1513,8], +[2,910,1514], +[3,659,27,8], +[1,3,1516], +[0,1517,8], +[2,910,1518], +[3,663,30,8], +[1,3,1520], +[0,1521,8], +[2,910,1522], +[3,668,35,8], +[1,3,1524], +[0,1525,8], +[2,910,1526], +[3,672,21,8], +[1,3,1528], +[0,1529,8], +[2,910,1530], +[3,677,26,8], +[1,3,1532], +[0,1533,8], +[2,910,1534], +[3,681,22,8], +[1,3,1536], +[0,1537,8], +[2,910,1538], +[3,685,27,8], +[1,3,1540], +[0,1541,8], +[2,910,1542], +[3,689,23,8], +[1,3,1544], +[0,1545,8], +[2,910,1546], +[3,693,23,8], +[1,3,1548], +[0,1549,8], +[2,910,1550], +[3,697,28,8], +[1,3,1552], +[0,1553,8], +[2,910,1554], +[3,701,22,8], +[1,3,1556], +[0,1557,8], +[2,910,1558], +[3,705,27,8], +[1,3,1560], +[0,1561,8], +[2,910,1562], +[3,709,18,8], +[1,3,1564], +[0,1565,8], +[2,910,1566], +[3,713,23,8], +[1,3,1568], +[0,1569,8], +[2,910,1570], +[3,717,20,8], +[1,3,1572], +[0,1573,8], +[2,910,1574], +[3,722,32,8], +[1,3,1576], +[0,1577,8], +[2,910,1578], +[3,727,25,8], +[1,3,1580], +[0,1581,8], +[2,1582,731], +[3,1509,14], +[1,3,1584], +[0,1585,8], +[2,910,1586], +[3,734,19,8], +[1,3,1588], +[0,1589,8], +[2,910,1590], +[3,738,17,8], +[1,3,1592], +[0,1593,8], +[2,910,1594], +[3,742,22,8], +[1,3,1596], +[0,1597,8], +[2,910,1598], +[3,746,21,8], +[1,3,1600], +[0,1601,8], +[2,910,1602], +[3,750,26,8], +[1,3,1604], +[0,1605,8], +[2,910,1606], +[3,754,17,8], +[1,3,1608], +[0,1609,8], +[2,910,1610], +[3,759,22,8], +[1,3,1612], +[0,1613,8], +[2,910,1614], +[3,763,24,8], +[1,3,1616], +[0,1617,8], +[2,910,1618], +[3,768,29,8], +[1,3,1620], +[0,1621,8], +[2,910,1622], +[3,772,30,8], +[1,3,1624], +[0,1625,8], +[2,910,1626], +[3,776,35,8], +[1,3,1628], +[0,1629,8], +[2,910,1630], +[3,780,17,8], +[1,3,1632], +[0,1633,8], +[2,910,1634], +[3,784,22,8], +[1,3,1636], +[0,1637,8], +[2,910,1638], +[3,788,27,8], +[1,3,1640], +[0,1641,8], +[2,910,1642], +[3,792,32,8], +[1,3,1644], +[0,1645,8], +[2,910,1646], +[3,796,24,8], +[1,3,1648], +[0,1649,8], +[2,910,1650], +[3,801,29,8], +[1,3,1652], +[0,1653,8], +[2,910,1654], +[3,805,22,8], +[1,3,1656], +[0,1657,8], +[2,910,1658], +[3,809,17,8], +[1,3,1660], +[0,1661,8], +[2,910,1662], +[3,814,22,8], +[1,3,1664], +[0,1665,8], +[2,910,1666], +[3,818,22,8], +[1,3,1668], +[0,1669,8], +[2,910,1670], +[3,822,27,8], +[1,3,1672], +[0,1673,8], +[2,910,1674], +[3,826,17,8], +[1,3,1676], +[0,1677,8], +[2,910,1678], +[3,830,22,8], +[1,3,1680], +[0,1681,8], +[2,910,1682], +[3,834,22,8], +[1,3,1684], +[0,1685,8], +[2,910,1686], +[3,839,27,8], +[1,3,1688], +[0,1689,8], +[2,910,1690], +[3,843,20,8], +[1,3,1692], +[0,1693,8], +[2,910,1694], +[3,847,25,8], +[1,3,1696], +[0,1697,8], +[2,1698,853], +[3,1689,16], +[1,3,1700], +[0,1701,8], +[2,910,1702], +[3,856,20,8], +[1,3,1704], +[0,1705,8], +[2,1706,1707], +[3,1697,18], +"Api.d.ts", +[1,3,1709], +[0,1710,8], +[2,910,1711], +[3,860,20,8], +[1,3,1713], +[0,1714,8], +[2,910,1715], +[3,865,25,8], +[1,3,1717], +[0,1718,8], +[2,910,1719], +[3,869,16,8], +[1,3,1721], +[0,1722,8], +[2,1582,874], +[1,3,1724], +[0,1725,8], +[2,910,1726], +[3,877,19,8], +[1,3,1728], +[0,1729,8], +[2,1730,883], +[3,1722,15], +[1,3,1732], +[0,1733,8], +[2,910,1734], +[3,886,20,8], +[1,3,1736], +[0,1737,8], +[2,910,1738], +[3,890,23,8], +[1,3,1740], +[0,1741,8], +[2,1742,486], +[3,1737,27], +[1,3,1744], +[0,1745,8], +[2,910,1746], +[3,894,28,8], +[1,3,1748], +[0,1749,8], +[2,1339,639], +[1,3,1751], +[0,1752,8], +[2,910,1753], +[3,901,20,8], +[1,3,1755], +[0,1756,8], +[2,910,1757], +[3,905,25,8], +[1,3,1759], +[0,1760,8], +"fixtures/docValidator/parser/sample.ts", +[1,3,1762], +[0,1763,8], +[2,1764,1765], +[3,1760,22], +"sample-with-cspell-directives.ts", +[1,3,1767], +[0,1768,8], +[2,1769,1770], +[3,1763,34], +"directives-errors.ts", +[1,3,1772], +[0,1773,8], +[2,1769,1774], +"errors.ts", +[1,3,1776], +[0,1777,8], +[2,1769,1778], +"many-errors.ts", +[1,3,1780], +[0,1781,8], +"samples/bug-fixes/bug345.ts", +[1,3,1783], +[0,1784,8], +"src/lib/Cache/cspell.cache.test.ts", +[1,3,1786], +[0,1787,8], +[2,1788,1789], +[3,1784,28], +"s", +[1,3,1791], +[0,1792,8], +[2,1793,1794], +[3,1784,14], +"index.test.ts", +[1,3,1796], +[0,1797,8], +[2,1798,1789], +[3,1792,21], +[1,3,1800], +[0,1801,8], +[2,1802,1803,1804], +"src/lib/", +[3,31,18], +"ts", +[1,3,1806], +[0,1807,8], +[2,1808,1809], +[3,1801,17], +"index.ts", +[1,3,1811], +[0,1812,8], +[2,1813,1814,1815], +[3,1807,18], +[3,40,11], +"test.ts", +[1,3,1817], +[0,1818,8], +[2,1819,1789], +[3,1812,30], +[1,3,1821], +[0,1822,8], +[2,1808,1823,1804], +[3,48,21], +[1,3,1825], +[0,1826,8], +[2,1808,1827,1804], +[3,52,16], +[1,3,1829], +[0,1830,8], +[2,1802,1831,1804], +[3,56,31], +[1,3,1833], +[0,1834,8], +[2,1835,1836], +[3,1830,29], +"lags.ts", +[1,3,1838], +[0,1839,8], +[2,1840,1809], +[3,1830,21], +[1,3,1842], +[0,1843,8], +[2,1802,1844,1815], +[3,69,12], +[1,3,1846], +[0,1847,8], +[2,1848,1789], +[3,1843,21], +[1,3,1850], +[0,1851,8], +[2,1802,1852,1804], +[3,77,33], +[1,3,1854], +[0,1855,8], +[2,1856,1857,1815], +[3,1851,15], +[3,82,14], +[1,3,1859], +[0,1860,8], +[2,1861,1789], +[3,1855,30], +[1,3,1863], +[0,1864,8], +[2,1856,1865,1804], +[3,90,11], +[1,3,1867], +[0,1868,8], +[2,1856,1869,1815], +[3,94,13], +[1,3,1871], +[0,1872,8], +[2,1873,1789], +[3,1868,29], +[1,3,1875], +[0,1876,8], +[2,1856,1877,1804], +[3,102,16], +[1,3,1879], +[0,1880,8], +[2,1881,1882], +[3,1876,25], +"Result.ts", +[1,3,1884], +[0,1885,8], +[2,1802,1886,1815], +[3,111,30], +[1,3,1888], +[0,1889,8], +[2,1890,1789], +[3,1885,39], +[1,3,1892], +[0,1893,8], +[2,1894,1895,1815], +[3,1885,18], +[3,120,22], +[1,3,1897], +[0,1898,8], +[2,1899,1789], +[3,1893,41], +[1,3,1901], +[0,1902,8], +[2,1903,1904,1804], +[3,1893,28], +[3,129,25], +[1,3,1906], +[0,1907,8], +[2,1908,134,1909], +[3,1902,41], +".test.ts", +[1,3,1911], +[0,1912,8], +[2,1913,1789], +[3,1907,55], +[1,3,1915], +[0,1916,8], +[2,1917,1918,1804], +[3,1907,49], +[3,144,8], +[1,3,1920], +[0,1921,8], +[2,1922,1923], +[3,1907,47], +"Search.test.ts", +[1,3,1925], +[0,1926,8], +[2,1927,1789], +[3,1921,55], +[1,3,1929], +[0,1930,8], +[2,1922,1931,1815], +[3,157,14], +[1,3,1933], +[0,1934,8], +[2,1935,1789], +[3,1930,62], +[1,3,1937], +[0,1938,8], +[2,1908,165,1939], +[3,1907,19,42], +[1,3,1941], +[0,1942,8], +[2,1943,1789], +[3,1938,62], +[1,3,1945], +[0,1946,8], +[2,1947,1948,1789], +[3,1938,48], +[3,245,10], +[1,3,1950], +[0,1951,8], +[2,1908,1952,1804], +[3,179,20], +[1,3,1954], +[0,1955,8], +[2,1908,1809], +[1,3,1957], +[0,1958,8], +[2,1908,186,1959], +[3,1930,19,49], +[1,3,1961], +[0,1962,8], +[2,1963,1789], +[3,1958,63], +[1,3,1965], +[0,1966,8], +[2,1908,1967,1804], +[3,195,13], +[1,3,1969], +[0,1970,8], +[2,1971,1972], +[3,1966,53], +"Files.ts", +[1,3,1974], +[0,1975,8], +[2,1908,1976,1804], +[3,204,10], +[1,3,1978], +[0,1979,8], +[2,1980,1981], +[3,1975,42], +"ypes.ts", +[1,3,1983], +[0,1984,8], +[2,1903,1809], +[1,3,1986], +[0,1987,8], +[2,1903,1988,1815], +[3,216,10], +[1,3,1990], +[0,1991,8], +[2,1992,1789], +[3,1987,39], +[1,3,1994], +[0,1995,8], +[2,1996,1997,1998], +[3,1885,17], +"Default", +[3,1930,16,52], +[1,3,2000], +[0,2001,8], +[2,2002,1789], +[3,1995,34], +[1,3,2004], +[0,2005,8], +[2,2006,2007,1815], +[3,1995,18], +[3,235,29], +[1,3,2009], +[0,2010,8], +[2,2011,1789], +[3,2005,48], +[1,3,2013], +[0,2014,8], +[2,2015,1998], +[3,2005,27], +[1,3,2017], +[0,2018,8], +[2,2019,1789], +[3,2014,37], +[1,3,2021], +[0,2022,8], +[2,1996,2023,1998], +"Global", +[1,3,2025], +[0,2026,8], +[2,2027,1789], +[3,2022,33], +[1,3,2029], +[0,2030,8], +[2,1996,2031,1998], +"InDoc", +[1,3,2033], +[0,2034,8], +[2,2035,1789], +[3,2030,32], +[1,3,2037], +[0,2038,8], +[2,1996,270,1998], +[1,3,2040], +[0,2041,8], +[2,2042,1789], +[3,2038,35], +[1,3,2044], +[0,2045,8], +[2,1996,2046,1815], +[3,278,15], +[1,3,2048], +[0,2049,8], +[2,2050,1789], +[3,2045,33], +[1,3,2052], +[0,2053,8], +[2,1996,2054,1804], +[3,2055,26], +[3,289,30,18], +[1,3,2057], +[0,2058,8], +[2,2059,1789], +[3,2053,39], +[1,3,2061], +[0,2062,8], +[2,1996,2063,1804], +[3,294,21], +[1,3,2065], +[0,2066,8], +[2,2067,2068,1815], +[3,2062,18], +[3,299,8], +[1,3,2070], +[0,2071,8], +[2,2072,1789], +[3,2066,27], +[1,3,2074], +[0,2075,8], +[2,2067,2076,1804], +[3,307,24], +[1,3,2078], +[0,2079,8], +[2,2067,2080,1804], +[3,311,9], +[1,3,2082], +[0,2083,8], +[2,1996,2084], +"index.link.ts", +[1,3,2086], +[0,2087,8], +[2,2088,1804], +[3,2083,23], +[1,3,2090], +[0,2091,8], +[2,1996,2092], +"link.test.ts", +[1,3,2094], +[0,2095,8], +[2,2096,1789], +[3,2091,23], +[1,3,2098], +[0,2099,8], +[2,1996,2100,1815], +[3,330,11], +[1,3,2102], +[0,2103,8], +[2,2104,1789], +[3,2099,29], +[1,3,2106], +[0,2107,8], +[2,2108,2109], +[3,2099,22], +"List.ts", +[1,3,2111], +[0,2112,8], +[2,1996,2113,1815], +[3,343,9], +[1,3,2115], +[0,2116,8], +[2,2117,1789], +[3,2112,27], +[1,3,2119], +[0,2120,8], +[2,2121,2122,1815], +[3,1885,9], +[3,352,31], +[1,3,2124], +[0,2125,8], +[2,2126,1789], +[3,2120,41], +[1,3,2128], +[0,2129,8], +[2,2130,2131,1815], +[3,2120,36], +[3,361,29], +[1,3,2133], +[0,2134,8], +[2,2135,1789], +[3,2129,66], +[1,3,2137], +[0,2138,8], +[2,2139,1809], +[3,2129,48], +[1,3,2141], +[0,2142,8], +[2,2143,2144,1804], +[3,2129,37], +[3,2145,12], +[3,138,16,48], +[1,3,2147], +[0,2148,8], +[2,2149,1789], +[3,2142,45], +[1,3,2151], +[0,2152,8], +[2,2153,2154,1804], +[3,2120,27], +[3,383,19], +[1,3,2156], +[0,2157,8], +[2,2158,2159], +[3,2152,45], +"Error.ts", +[1,3,2161], +[0,2162,8], +[2,2163,2164,1815], +[3,2152,28], +[3,393,39], +[1,3,2166], +[0,2167,8], +[2,2168,1789], +[3,2162,68], +[1,3,2170], +[0,2171,8], +[2,2172,2173,1804], +[3,2162,47], +[3,402,9], +[1,3,2175], +[0,2176,8], +[2,2172,2177,1815], +[3,406,8], +[1,3,2179], +[0,2180,8], +[2,2181,1789], +[3,2176,56], +[1,3,2183], +[0,2184,8], +[2,2172,2185,1815], +[3,414,8], +[1,3,2187], +[0,2188,8], +[2,2189,1789], +[3,2184,56], +[1,3,2191], +[0,2192,8], +[2,2153,1809], +[1,3,2194], +[0,2195,8], +[2,1802,2196,1815], +[3,425,17], +[1,3,2198], +[0,2199,8], +[2,2200,1789], +[3,2195,26], +[1,3,2202], +[0,2203,8], +[2,1802,2204,1815], +[3,433,14], +[1,3,2206], +[0,2207,8], +[2,2208,1789], +[3,2203,23], +[1,3,2210], +[0,2211,8], +[2,2212,1809], +[3,2203,15], +[1,3,2214], +[0,2215,8], +[2,2216,2217,1815], +[3,2203,9], +[3,446,15], +[1,3,2219], +[0,2220,8], +[2,2221,1789], +[3,2215,25], +[1,3,2223], +[0,2224,8], +[2,1802,2225,1804], +[3,454,11], +[1,3,2227], +[0,2228,8], +[2,1802,2229,1804], +[3,458,14], +[1,3,2231], +[0,2232,8], +[2,2233,463,2234], +[3,2228,9], +[3,2075,29,15], +[1,3,2236], +[0,2237,8], +[2,2238,2239,1804], +[3,2232,14], +[3,469,15], +[1,3,2241], +[0,2242,8], +[2,1802,1794], +[1,3,2244], +[0,2245,8], +[2,2246,1789], +[3,2242,15], +[1,3,2248], +[0,2249,8], +[2,1802,2250], +"leaked-handles.d.ts", +[1,3,2252], +[0,2253,8], +[2,1802,2254], +"node-namespace.d.ts", +[1,3,2256], +[0,2257,8], +[2,1802,2258,1804], +[3,481,11], +[1,3,2260], +[0,2261,8], +[2,2262,2263], +[3,2257,13], +"perf.test.ts", +[1,3,2265], +[0,2266,8], +[2,2267,1789], +[3,2261,19], +[1,3,2269], +[0,2270,8], +[2,2262,2271], +"timer.test.ts", +[1,3,2273], +[0,2274,8], +[2,2275,1789], +[3,2270,20], +[1,3,2277], +[0,2278,8], +[2,1802,2279,1815], +[3,502,15], +[1,3,2281], +[0,2282,8], +[2,2283,1789], +[3,2278,24], +[1,3,2285], +[0,2286,8], +[2,2287,2288,1815], +[3,2278,9], +[3,511,11], +[1,3,2290], +[0,2291,8], +[2,2292,1789], +[3,2286,21], +[1,3,2294], +[0,2295,8], +[2,1802,2296,1804], +[3,519,15], +[1,3,2298], +[0,2299,8], +[2,2300,2301,1804], +[3,2295,13], +[3,524,11], +[1,3,2303], +[0,2304,8], +[2,2300,2305,1804], +[3,528,13], +[1,3,2307], +[0,2308,8], +[2,2300,2309,1804], +[3,532,8], +[1,3,2311], +[0,2312,8], +[2,2313,2314,1804], +[3,2308,14], +[3,537,11], +[1,3,2316], +[0,2317,8], +[2,2300,2318,1804], +[3,541,12], +[1,3,2320], +[0,2321,8], +[2,2300,2322,1804], +[3,545,12], +[1,3,2324], +[0,2325,8], +[2,2326,2327,1804], +[3,2295,10], +[3,550,33], +[1,3,2329], +[0,2330,8], +[2,2331,2332,1804], +[3,2325,30], +[3,555,9], +[1,3,2334], +[0,2335,8], +[2,2336,2337,1815], +[3,2325,23], +[3,560,10], +[1,3,2339], +[0,2340,8], +[2,2341,1789], +[3,2335,34], +[1,3,2343], +[0,2344,8], +[2,2336,165,2080,1804], +[1,3,2346], +[0,2347,8], +[2,2348,572,2349], +[3,2344,25], +[3,2053,28,17], +[1,3,2351], +[0,2352,8], +[2,2353,1789], +[3,2347,54], +[1,3,2355], +[0,2356,8], +[2,2357,2358,1815], +[3,2344,24], +[3,582,12], +[1,3,2360], +[0,2361,8], +[2,2362,1789], +[3,2356,37], +[1,3,2364], +[0,2365,8], +[2,2336,1809], +[1,3,2367], +[0,2368,8], +[2,2369,2370,1815], +[3,2365,24], +[3,594,11], +[1,3,2372], +[0,2373,8], +[2,2374,1789], +[3,2368,36], +[1,3,2376], +[0,2377,8], +[2,2336,2378,1815], +[3,602,21], +[1,3,2380], +[0,2381,8], +[2,2382,1789], +[3,2377,45], +[1,3,2384], +[0,2385,8], +[2,2336,2386,1815], +[3,610,11], +[1,3,2388], +[0,2389,8], +[2,2390,1789], +[3,2385,35], +[1,3,2392], +[0,2393,8], +[2,2336,2394,1804], +[3,618,26], +[1,3,2396], +[0,2397,8], +[2,2336,2398,2399], +"text", +[3,2356,17,26], +[1,3,2401], +[0,2402,8], +[2,2403,1789], +[3,2397,38], +[1,3,2405], +[0,2406,8], +[2,2407,2408,1815], +[3,2397,24], +[3,631,9], +[1,3,2410], +[0,2411,8], +[2,2412,1789], +[3,2406,34], +[1,3,2414], +[0,2415,8], +[2,2336,2416,2417], +"v", +[3,2356,16,27], +[1,3,2419], +[0,2420,8], +[2,2421,1789], +[3,2415,34], +[1,3,2423], +[0,2424,8], +[2,2425,2426], +[3,2295,9], +"race.test.ts", +[1,3,2428], +[0,2429,8], +[2,2430,1789], +[3,2424,15], +[1,3,2432], +[0,2433,8], +[2,1802,2434,1815], +[3,656,17], +[1,3,2436], +[0,2437,8], +[2,2438,1789], +[3,2433,26], +[1,3,2440], +[0,2441,8], +[2,2442,2443,1815], +[3,2433,24], +[3,665,9], +[1,3,2445], +[0,2446,8], +[2,2447,1789], +[3,2441,34], +[1,3,2449], +[0,2450,8], +[2,2451,2452,1815], +[3,2433,13], +[3,674,11], +[1,3,2454], +[0,2455,8], +[2,2456,1789], +[3,2450,25], +[1,3,2458], +[0,2459,8], +[2,2451,2460,1815], +[3,682,12], +[1,3,2462], +[0,2463,8], +[2,2464,1789], +[3,2459,26], +[1,3,2466], +[0,2467,8], +[2,2451,2468,1804], +[3,690,13], +[1,3,2470], +[0,2471,8], +[2,2451,2472,1815], +[3,694,13], +[1,3,2474], +[0,2475,8], +[2,2476,1789], +[3,2471,27], +[1,3,2478], +[0,2479,8], +[2,2451,2480,1815], +[3,702,12], +[1,3,2482], +[0,2483,8], +[2,2484,1789], +[3,2479,26], +[1,3,2486], +[0,2487,8], +[2,2451,2488,1815], +[3,710,8], +[1,3,2490], +[0,2491,8], +[2,2492,1789], +[3,2487,22], +[1,3,2494], +[0,2495,8], +[2,2496,2497], +[3,2487,17], +"Range.regexp.test.ts", +[1,3,2499], +[0,2500,8], +[2,2501,1815], +[3,2495,23], +[1,3,2503], +[0,2504,8], +[2,2505,1789], +[3,2500,24], +[1,3,2507], +[0,2508,8], +[2,2451,2509], +"Uri.test.ts", +[1,3,2511], +[0,2512,8], +[2,2513,1789], +[3,2508,18], +[1,3,2515], +[0,2516,8], +[2,2451,2517,2518], +"errors.t", +"est.ts", +[1,3,2520], +[0,2521,8], +[2,2522,1789], +[3,2516,21], +[1,3,2524], +[0,2525,8], +[2,2451,2526,1815], +[3,747,11], +[1,3,2528], +[0,2529,8], +[2,2530,1789], +[3,2525,25], +[1,3,2532], +[0,2533,8], +[2,2534,2535], +[3,2525,15], +"ndUp.test.ts", +[1,3,2537], +[0,2538,8], +[2,2539,1789], +[3,2533,21], +[1,3,2541], +[0,2542,8], +[2,2543,2544,1815], +[3,2533,19], +[3,765,8], +[1,3,2546], +[0,2547,8], +[2,2548,1789], +[3,2542,28], +[1,3,2550], +[0,2551,8], +[2,2451,2552,1815], +[3,773,20], +[1,3,2554], +[0,2555,8], +[2,2556,1789], +[3,2551,34], +[1,3,2558], +[0,2559,8], +[2,2451,2560], +"logger.test.ts", +[1,3,2562], +[0,2563,8], +[2,2564,1789], +[3,2559,21], +[1,3,2566], +[0,2567,8], +[2,2451,2568,1815], +[3,789,17], +[1,3,2570], +[0,2571,8], +[2,2572,1789], +[3,2567,31], +[1,3,2574], +[0,2575,8], +[2,2576,2577], +[3,2567,21], +"rWeak.test.ts", +[1,3,2579], +[0,2580,8], +[2,2581,1789], +[3,2575,28], +[1,3,2583], +[0,2584,8], +[2,2451,2585,1804], +[3,806,12], +[1,3,2587], +[0,2588,8], +[2,2589,2590], +[3,2584,15], +"pMap.test.ts", +[1,3,2592], +[0,2593,8], +[2,2594,1789], +[3,2588,21], +[1,3,2596], +[0,2597,8], +[2,2589,2598,1815], +[3,819,10], +[1,3,2600], +[0,2601,8], +[2,2602,1789], +[3,2597,26], +[1,3,2604], +[0,2605,8], +[2,2451,2606], +"search.test.ts", +[1,3,2608], +[0,2609,8], +[2,2610,1789], +[3,2605,21], +[1,3,2612], +[0,2613,8], +[2,2614,2615,1815], +[3,2605,14], +[3,836,11], +[1,3,2617], +[0,2618,8], +[2,2619,1789], +[3,2613,26], +[1,3,2621], +[0,2622,8], +[2,2451,2623,1815], +[3,844,10], +[1,3,2625], +[0,2626,8], +[2,2627,1789], +[3,2622,24], +[1,3,2629], +[0,2630,8], +[2,2631,2632], +[3,2622,15], +"xt.test.ts", +[1,3,2634], +[0,2635,8], +[2,2636,1789], +[3,2630,19], +[1,3,2638], +[0,2639,8], +[2,2640,2641], +[3,2630,17], +"Api.ts", +[1,3,2643], +[0,2644,8], +[2,2640,2645], +"Regex.test.ts", +[1,3,2647], +[0,2648,8], +[2,2649,1789], +[3,2644,24], +[1,3,2651], +[0,2652,8], +[2,2653,1981], +[3,2622,14], +[1,3,2655], +[0,2656,8], +[2,2451,2657], +"url.test.ts", +[1,3,2659], +[0,2660,8], +[2,2661,1789], +[3,2656,18], +[1,3,2663], +[0,2664,8], +[2,2665,2666], +[3,2656,14], +"til.test.ts", +[1,3,2668], +[0,2669,8], +[2,2670,1789], +[3,2664,19], +[1,3,2672], +[0,2673,8], +[2,2451,2674,2675], +[3,891,13], +"perf.ts", +[1,3,2677], +[0,2678,8], +[2,2679,1815], +[3,2673,26], +[1,3,2681], +[0,2682,8], +[2,2683,1789], +[3,2678,27], +[1,3,2685], +[0,2686,8], +[2,1802,2687,1804], +[3,639,10], +[1,3,2689], +[0,2690,8], +[2,1802,2691,1815], +[3,902,15], +[1,3,2693], +[0,2694,8], +[2,2695,1789], +[3,2690,24], +[1,3,2697], +[0,2698,2699], +"", +[0] +] diff --git a/packages/flatpack-json/src/index.ts b/packages/flatpack-json/src/index.ts index 3116050e0ea8..eed79ee6771f 100644 --- a/packages/flatpack-json/src/index.ts +++ b/packages/flatpack-json/src/index.ts @@ -1,4 +1,4 @@ -export { FlatpackStore } from './FlatpackV1.mjs'; +export { FlatpackStore } from './Flatpack.mjs'; export { stringify, toJSON } from './storage.mjs'; export { stringifyFlatpacked } from './stringify.mjs'; export type { Flatpacked } from './types.mts'; diff --git a/packages/flatpack-json/src/types.mts b/packages/flatpack-json/src/types.mts index 09a163eaf9a4..013ff612e181 100644 --- a/packages/flatpack-json/src/types.mts +++ b/packages/flatpack-json/src/types.mts @@ -116,17 +116,31 @@ export interface FlatpackOptions { * Try to optimize the size of the output. */ optimize?: boolean; + + /** + * The format of the output. If not specified, the latest format will be used. + */ + format?: 'V1' | 'V2'; } /** * Legacy header for Flatpack JSON. */ export const dataHeaderV0_1 = 'Dehydrated JSON v1' as const; +export const dataHeaderV1_0 = 'Flatpack JSON v1' as const; +export const dataHeaderV2_0 = 'Flatpack JSON v2' as const; /** * The current header for Flatpack JSON. */ -export const dataHeader = 'Flatpack JSON v1' as const; +export const dataHeader: string = dataHeaderV1_0; /** * The set of supported headers for Flatpack JSON. */ -export const supportedHeaders: Set = new Set([dataHeaderV0_1, dataHeader]); +export const supportedHeaders: Set = new Set([dataHeaderV0_1, dataHeaderV1_0, dataHeaderV2_0]); + +export interface FlatpackApi { + setValue(value: Serializable): void; + toJSON(): Flatpacked; + stringify(): string; + toValue(): Unpacked; +} From 91a9e7b9a472dde9c95c6334c29dac3c8f2f4613 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Thu, 5 Mar 2026 11:53:59 +0100 Subject: [PATCH 03/26] Add string table --- .../src/__snapshots__/storage.test.mts.snap | 2010 +++++++++++++++-- packages/flatpack-json/src/storage.mts | 56 +- packages/flatpack-json/src/storage.test.mts | 49 +- packages/flatpack-json/src/types.mts | 16 +- packages/flatpack-json/src/unpack.mts | 30 +- 5 files changed, 1968 insertions(+), 193 deletions(-) diff --git a/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap b/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap index 8e8ff8c911a1..c416f9988852 100644 --- a/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap +++ b/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap @@ -1,5 +1,12 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html +exports[`dehydrate > dehydrate 'string' undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + "string", +] +`; + exports[`dehydrate > dehydrate 'string' undefined 1`] = ` [ "Flatpack JSON v1", @@ -7,6 +14,19 @@ exports[`dehydrate > dehydrate 'string' undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate /[\\p{L}\\p{M}]+/gu undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 6, + 2, + 3, + ], + "[\\p{L}\\p{M}]+", + "gu", +] +`; + exports[`dehydrate > dehydrate /[\\p{L}\\p{M}]+/gu undefined 1`] = ` [ "Flatpack JSON v1", @@ -20,6 +40,24 @@ exports[`dehydrate > dehydrate /[\\p{L}\\p{M}]+/gu undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ] undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 2, + 3, + 2, + 3, + 2, + 4, + ], + "apple", + "banana", + "pineapple", +] +`; + exports[`dehydrate > dehydrate [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ] undefined 1`] = ` [ "Flatpack JSON v1", @@ -38,6 +76,31 @@ exports[`dehydrate > dehydrate [ 'apple', 'banana', 'apple', 'banana', 'apple', ] `; +exports[`dehydrate > dehydrate [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p{M}]+/gu, /[\\p{Lu}\\p{M}]+/gu ] undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 2, + 2, + 5, + ], + [ + 6, + 4, + 3, + ], + "gu", + "[\\p{L}\\p{M}]+", + [ + 6, + 6, + 3, + ], + "[\\p{Lu}\\p{M}]+", +] +`; + exports[`dehydrate > dehydrate [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p{M}]+/gu, /[\\p{Lu}\\p{M}]+/gu ] undefined 1`] = ` [ "Flatpack JSON v1", @@ -63,6 +126,81 @@ exports[`dehydrate > dehydrate [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p{M}]+/gu, /[\\p ] `; +exports[`dehydrate > dehydrate [ { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, …(1) ] { dedupe: false } > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 4, + 7, + 10, + 13, + ], + "a", + "b", + [ + 1, + 5, + 6, + ], + [ + 0, + 2, + 3, + ], + [ + 0, + 2, + 3, + ], + [ + 1, + 8, + 9, + ], + [ + 0, + 2, + 3, + ], + [ + 0, + 2, + 3, + ], + [ + 1, + 11, + 12, + ], + [ + 0, + 2, + 3, + ], + [ + 0, + 2, + 3, + ], + [ + 1, + 14, + 15, + ], + [ + 0, + 2, + 3, + ], + [ + 0, + 2, + 3, + ], +] +`; + exports[`dehydrate > dehydrate [ { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, …(1) ] { dedupe: false } 1`] = ` [ "Flatpack JSON v1", @@ -138,6 +276,44 @@ exports[`dehydrate > dehydrate [ { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a ] `; +exports[`dehydrate > dehydrate [ { a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b', a: 'a' }, …(2) ] undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 3, + 7, + 3, + 2, + 4, + ], + [ + 0, + 5, + 6, + ], + [ + 1, + 2, + 2, + ], + [ + 0, + 8, + 9, + ], + "a", + "b", + [ + 1, + 2, + 4, + ], + "c", + "d", +] +`; + exports[`dehydrate > dehydrate [ { a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b', a: 'a' }, …(2) ] undefined 1`] = ` [ "Flatpack JSON v1", @@ -176,6 +352,19 @@ exports[`dehydrate > dehydrate [ { a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b ] `; +exports[`dehydrate > dehydrate [ {}, {}, {} ] undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 2, + 2, + 2, + ], + {}, +] +`; + exports[`dehydrate > dehydrate [ {}, {}, {} ] undefined 1`] = ` [ "Flatpack JSON v1", @@ -189,6 +378,19 @@ exports[`dehydrate > dehydrate [ {}, {}, {} ] undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate [ 1, 2 ] undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 2, + 3, + ], + 1, + 2, +] +`; + exports[`dehydrate > dehydrate [ 1, 2 ] undefined 1`] = ` [ "Flatpack JSON v1", @@ -202,6 +404,48 @@ exports[`dehydrate > dehydrate [ 1, 2 ] undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate [ 1n, 'hello', /\\w+/g, {}, [], 'hello' ] undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 3, + 2, + 7, + 10, + 11, + 2, + ], + [ + 1, + 0, + 6, + ], + [ + 1, + 0, + 4, + ], + [ + 8, + 5, + ], + 1, + "hello", + [ + 6, + 8, + 9, + ], + "\\w+", + "g", + {}, + [ + 0, + ], +] +`; + exports[`dehydrate > dehydrate [ 1n, 'hello', /\\w+/g, {}, [], 'hello' ] undefined 1`] = ` [ "Flatpack JSON v1", @@ -244,38 +488,90 @@ exports[`dehydrate > dehydrate [ 1n, 'hello', /\\w+/g, {}, [], 'hello' ] undefin ] `; -exports[`dehydrate > dehydrate [ 1n, 2n, 1n, 2n, 9007199254740991n, -9007199254740991n, …(2) ] undefined 1`] = ` +exports[`dehydrate > dehydrate [ 1n, 2n, 1n, 2n, 9007199254740991n, -9007199254740991n, …(2) ] undefined > optimized 1`] = ` [ "Flatpack JSON v1", [ 0, 2, - 4, + 3, 2, - 4, - 6, - 8, - 10, + 3, + 7, + 9, + 11, 12, ], [ 8, - 3, + 5, ], - 1, [ 8, - 5, + 6, ], + "9007199254740992", + 1, 2, [ 8, - 7, + 8, ], 9007199254740991, [ 8, - 9, + 10, + ], + -9007199254740991, + [ + 8, + 4, + ], + [ + 8, + 14, + ], + "-", + [ + 2, + 13, + 4, + ], +] +`; + +exports[`dehydrate > dehydrate [ 1n, 2n, 1n, 2n, 9007199254740991n, -9007199254740991n, …(2) ] undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 2, + 4, + 2, + 4, + 6, + 8, + 10, + 12, + ], + [ + 8, + 3, + ], + 1, + [ + 8, + 5, + ], + 2, + [ + 8, + 7, + ], + 9007199254740991, + [ + 8, + 9, ], -9007199254740991, [ @@ -296,6 +592,26 @@ exports[`dehydrate > dehydrate [ 1n, 2n, 1n, 2n, 9007199254740991n, -90071992547 ] `; +exports[`dehydrate > dehydrate [ Array(3) ] undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 2, + 2, + 3, + ], + [ + 7, + 1704067200000, + ], + [ + 7, + 1704153600000, + ], +] +`; + exports[`dehydrate > dehydrate [ Array(3) ] undefined 1`] = ` [ "Flatpack JSON v1", @@ -316,6 +632,15 @@ exports[`dehydrate > dehydrate [ Array(3) ] undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate [] undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + ], +] +`; + exports[`dehydrate > dehydrate [] undefined 1`] = ` [ "Flatpack JSON v1", @@ -325,6 +650,31 @@ exports[`dehydrate > dehydrate [] undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate { a: [ 1 ] } undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 2, + 4, + ], + [ + 0, + 3, + ], + "a", + [ + 0, + 5, + ], + [ + 0, + 6, + ], + 1, +] +`; + exports[`dehydrate > dehydrate { a: [ 1 ] } undefined 1`] = ` [ "Flatpack JSON v1", @@ -350,6 +700,156 @@ exports[`dehydrate > dehydrate { a: [ 1 ] } undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate { a: { a: 'a', b: 'b' }, b: { a: 'c', b: 'd' }, …(11) } undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 18, + 29, + ], + [ + 0, + 8, + 9, + ], + [ + 6, + 32, + 33, + ], + [ + 1, + 2, + 2, + ], + [ + 1, + 2, + 6, + ], + [ + 0, + 30, + 31, + ], + [ + 0, + 4, + 5, + 4, + 2, + 6, + 3, + 16, + ], + "a", + "b", + "r", + [ + 0, + 12, + 13, + 14, + ], + "apple", + "banana", + "pineapple", + [ + 5, + 2, + 2, + ], + [ + 1, + 34, + 36, + ], + [ + 4, + 39, + ], + [ + 0, + 8, + 9, + 19, + 20, + 21, + 22, + 23, + 24, + 10, + 25, + 26, + 27, + 28, + ], + "cValues", + "m", + "mm", + "n", + "nn", + "nnn", + "rValues", + "s", + "ss", + "values", + [ + 0, + 4, + 5, + 11, + 15, + 15, + 7, + 7, + 7, + 3, + 37, + 17, + 17, + 11, + ], + "c", + "d", + "[\\p{L}\\p{M}]+", + "gu", + [ + 0, + 10, + 35, + ], + "rr", + [ + 0, + 3, + 3, + ], + [ + 0, + 14, + 13, + 12, + ], + [ + 1, + 2, + 2, + ], + [ + 0, + 4, + 5, + 38, + 2, + 6, + 3, + 16, + ], +] +`; + exports[`dehydrate > dehydrate { a: { a: 'a', b: 'b' }, b: { a: 'c', b: 'd' }, …(11) } undefined 1`] = ` [ "Flatpack JSON v1", @@ -392,272 +892,1409 @@ exports[`dehydrate > dehydrate { a: { a: 'a', b: 'b' }, b: { a: 'c', b: 'd' }, 17, 19, 23, - 27, - 27, - 28, - 28, - 28, - 29, - 36, - 37, - 37, + 27, + 27, + 28, + 28, + 28, + 29, + 36, + 37, + 37, + 23, + ], + [ + 1, + 18, + 18, + ], + [ + 0, + 3, + 4, + ], + [ + 1, + 18, + 20, + ], + [ + 0, + 21, + 22, + ], + "c", + "d", + [ + 0, + 24, + 25, + 26, + ], + "apple", + "banana", + "pineapple", + [ + 5, + 18, + 18, + ], + [ + 0, + 17, + 19, + 17, + 18, + 20, + 29, + 32, + ], + [ + 6, + 30, + 31, + ], + "[\\p{L}\\p{M}]+", + "gu", + [ + 1, + 33, + 35, + ], + [ + 0, + 11, + 34, + ], + "rr", + [ + 0, + 29, + 29, + ], + [ + 0, + 26, + 25, + 24, + ], + [ + 4, + 39, + ], + [ + 1, + 18, + 18, + ], + [ + 0, + 17, + 19, + 38, + 18, + 20, + 29, + 32, + ], +] +`; + +exports[`dehydrate > dehydrate { a: { a: 'a', b: 42 } } undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 3, + 4, + ], + "a", + [ + 0, + 2, + ], + [ + 0, + 5, + ], + [ + 1, + 6, + 8, + ], + [ + 0, + 2, + 7, + ], + "b", + [ + 0, + 2, + 9, + ], + 42, +] +`; + +exports[`dehydrate > dehydrate { a: { a: 'a', b: 42 } } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 2, + 4, + ], + [ + 0, + 3, + ], + "a", + [ + 0, + 5, + ], + [ + 1, + 6, + 8, + ], + [ + 0, + 3, + 7, + ], + "b", + [ + 0, + 3, + 9, + ], + 42, +] +`; + +exports[`dehydrate > dehydrate { a: { b: 1 } } undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 2, + 4, + ], + [ + 0, + 3, + ], + "a", + [ + 0, + 5, + ], + [ + 1, + 6, + 8, + ], + [ + 0, + 7, + ], + "b", + [ + 0, + 9, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate { a: { b: 1 } } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 2, + 4, + ], + [ + 0, + 3, + ], + "a", + [ + 0, + 5, + ], + [ + 1, + 6, + 8, + ], + [ + 0, + 7, + ], + "b", + [ + 0, + 9, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate { a: 1 } undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 2, + 4, + ], + [ + 0, + 3, + ], + "a", + [ + 0, + 5, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate { a: 1 } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 2, + 4, + ], + [ + 0, + 3, + ], + "a", + [ + 0, + 5, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate { fruit: [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ], …(2) } undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 5, + 9, + ], + "apple", + "banana", + "pineapple", + [ + 0, + 6, + 7, + 8, + ], + "fruit", + "joinFruit", + "sentence", + [ + 0, + 10, + 13, + 14, + ], + [ + 0, + 2, + 3, + 2, + 3, + 2, + 4, + ], + "-banana-apple-banana-apple-", + [ + 2, + 11, + 4, + ], + [ + 2, + 2, + 12, + ], + "There is a bit of fruit on the table. Some banana, apple, and pineapple.", +] +`; + +exports[`dehydrate > dehydrate { fruit: [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ], …(2) } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 2, + 6, + ], + [ + 0, + 3, + 4, + 5, + ], + "fruit", + "joinFruit", + "sentence", + [ + 0, + 7, + 13, + 14, + ], + [ + 0, + 8, + 9, + 8, + 9, + 8, + 10, + ], + "apple", + "banana", + "pineapple", + "-banana-apple-banana-apple-", + [ + 2, + 11, + 10, + ], + [ + 2, + 8, + 12, + ], + "There is a bit of fruit on the table. Some banana, apple, and pineapple.", +] +`; + +exports[`dehydrate > dehydrate { values: [ 'apple', 'banana', 'pineapple' ], …(1) } undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 3, + 6, + ], + [ + 0, + 8, + 9, + 10, + ], + [ + 0, + 4, + 5, + ], + "set", + "values", + [ + 0, + 7, + 2, + ], + [ + 4, + 2, + ], + "apple", + "banana", + "pineapple", +] +`; + +exports[`dehydrate > dehydrate { values: [ 'apple', 'banana', 'pineapple' ], …(1) } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 2, + 5, + ], + [ + 0, + 3, + 4, + ], + "set", + "values", + [ + 0, + 6, + 7, + ], + [ + 4, + 7, + ], + [ + 0, + 8, + 9, + 10, + ], + "apple", + "banana", + "pineapple", +] +`; + +exports[`dehydrate > dehydrate {} undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + {}, +] +`; + +exports[`dehydrate > dehydrate {} undefined 1`] = ` +[ + "Flatpack JSON v1", + {}, +] +`; + +exports[`dehydrate > dehydrate 1 undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + 1, +] +`; + +exports[`dehydrate > dehydrate 1 undefined 1`] = ` +[ + "Flatpack JSON v1", + 1, +] +`; + +exports[`dehydrate > dehydrate 1.1 undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + 1.1, +] +`; + +exports[`dehydrate > dehydrate 1.1 undefined 1`] = ` +[ + "Flatpack JSON v1", + 1.1, +] +`; + +exports[`dehydrate > dehydrate Map{ 'apple' => 1, 'banana' => 2, 'pineapple' => 3 } undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 5, + 2, + 6, + ], + [ + 0, + 3, + 4, + 5, + ], + "apple", + "banana", + "pineapple", + [ + 0, + 7, + 8, + 9, + ], + 1, + 2, + 3, +] +`; + +exports[`dehydrate > dehydrate Map{ 'apple' => 1, 'banana' => 2, 'pineapple' => 3 } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 5, + 2, + 6, + ], + [ + 0, + 3, + 4, + 5, + ], + "apple", + "banana", + "pineapple", + [ + 0, + 7, + 8, + 9, + ], + 1, + 2, + 3, +] +`; + +exports[`dehydrate > dehydrate Set{ 'apple', 'banana', 'pineapple' } undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 4, + 2, + ], + [ + 0, + 3, + 4, + 5, + ], + "apple", + "banana", + "pineapple", +] +`; + +exports[`dehydrate > dehydrate Set{ 'apple', 'banana', 'pineapple' } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 4, + 2, + ], + [ + 0, + 3, + 4, + 5, + ], + "apple", + "banana", + "pineapple", +] +`; + +exports[`dehydrate > dehydrate Set{ 'pineapple', 'apple', 'banana' } undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + [ + 4, + 2, + ], + [ + 0, + 3, + 4, + 5, + ], + "pineapple", + "apple", + "banana", +] +`; + +exports[`dehydrate > dehydrate Set{ 'pineapple', 'apple', 'banana' } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 4, + 2, + ], + [ + 0, + 3, + 4, + 5, + ], + "pineapple", + "apple", + "banana", +] +`; + +exports[`dehydrate > dehydrate false undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + false, +] +`; + +exports[`dehydrate > dehydrate false undefined 1`] = ` +[ + "Flatpack JSON v1", + false, +] +`; + +exports[`dehydrate > dehydrate null undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + null, +] +`; + +exports[`dehydrate > dehydrate null undefined 1`] = ` +[ + "Flatpack JSON v1", + null, +] +`; + +exports[`dehydrate > dehydrate true undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", + true, +] +`; + +exports[`dehydrate > dehydrate true undefined 1`] = ` +[ + "Flatpack JSON v1", + true, +] +`; + +exports[`dehydrate > dehydrate undefined undefined > optimized 1`] = ` +[ + "Flatpack JSON v1", +] +`; + +exports[`dehydrate > dehydrate undefined undefined 1`] = ` +[ + "Flatpack JSON v1", +] +`; + +exports[`dehydrate > dehydrate useStringTable 'string' undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "string", + ], + [ + 2, + -1, + ], +] +`; + +exports[`dehydrate > dehydrate useStringTable /[\\p{L}\\p{M}]+/gu undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "[\\p{L}\\p{M}]+", + ], + [ + 6, + -1, + 3, + ], + "gu", +] +`; + +exports[`dehydrate > dehydrate useStringTable [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "apple", + "banana", + "pineapple", + ], + [ + 0, + -1, + -2, + -1, + -2, + -1, + -3, + ], +] +`; + +exports[`dehydrate > dehydrate useStringTable [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p{M}]+/gu, /[\\p{Lu}\\p{M}]+/gu ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "[\\p{L}\\p{M}]+", + "[\\p{Lu}\\p{M}]+", + ], + [ + 0, + 3, + 3, + 5, + ], + [ + 6, + -1, + 4, + ], + "gu", + [ + 6, + -2, + 4, + ], +] +`; + +exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, …(1) ] { dedupe: false } 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + 3, + 8, + 11, + 14, + ], + [ + 1, + 4, + 7, + ], + [ + 0, + 5, + 6, + ], + "a", + "b", + [ + 0, + 5, + 6, + ], + [ + 1, + 9, + 10, + ], + [ + 0, + 5, + 6, + ], + [ + 0, + 5, + 6, + ], + [ + 1, + 12, + 13, + ], + [ + 0, + 5, + 6, + ], + [ + 0, + 5, + 6, + ], + [ + 1, + 15, + 16, + ], + [ + 0, + 5, + 6, + ], + [ + 0, + 5, + 6, + ], +] +`; + +exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b', a: 'a' }, …(2) ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + 3, + 7, + 3, + 4, + 8, + ], + [ + 1, + 4, + 4, + ], + [ + 0, + 5, + 6, + ], + "a", + "b", + [ + 1, + 4, + 8, + ], + [ + 0, + 9, + 10, + ], + "c", + "d", +] +`; + +exports[`dehydrate > dehydrate useStringTable [ {}, {}, {} ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + 3, + 3, + 3, + ], + {}, +] +`; + +exports[`dehydrate > dehydrate useStringTable [ 1, 2 ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + 3, + 4, + ], + 1, + 2, +] +`; + +exports[`dehydrate > dehydrate useStringTable [ 1n, 'hello', /\\w+/g, {}, [], 'hello' ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "hello", + ], + [ + 0, + 3, + 6, + 7, + 10, + 11, + 6, + ], + [ + 1, + 0, + 4, + ], + [ + 8, + 5, + ], + 1, + [ + 1, + 0, + -1, + ], + [ + 6, + 8, + 9, + ], + "\\w+", + "g", + {}, + [ + 0, + ], +] +`; + +exports[`dehydrate > dehydrate useStringTable [ 1n, 2n, 1n, 2n, 9007199254740991n, -9007199254740991n, …(2) ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "9007199254740992", + "-9007199254740992", + ], + [ + 0, + 3, + 5, + 3, + 5, + 7, + 9, + 11, + 12, + ], + [ + 8, + 4, + ], + 1, + [ + 8, + 6, + ], + 2, + [ + 8, + 8, + ], + 9007199254740991, + [ + 8, + 10, + ], + -9007199254740991, + [ + 8, + -1, + ], + [ + 8, + -2, + ], +] +`; + +exports[`dehydrate > dehydrate useStringTable [ Array(3) ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + 3, + 3, + 4, + ], + [ + 7, + 1704067200000, + ], + [ + 7, + 1704153600000, + ], +] +`; + +exports[`dehydrate > dehydrate useStringTable [] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + ], +] +`; + +exports[`dehydrate > dehydrate useStringTable { a: [ 1 ] } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 1, + 3, + 5, + ], + [ + 0, + 4, + ], + "a", + [ + 0, + 6, + ], + [ + 0, + 7, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: 'c', b: 'd' }, …(11) } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "cValues", + "rValues", + "values", + "apple", + "banana", + "pineapple", + "[\\p{L}\\p{M}]+", + ], + [ + 1, + 3, + 14, + ], + [ + 0, + 4, + 5, + -1, + 6, + 7, + 8, + 9, + 10, + 11, + -2, + 12, + 13, + -3, + ], + "a", + "b", + "m", + "mm", + "n", + "nn", + "nnn", + "r", + "s", + "ss", + [ + 0, + 15, + 17, + 21, + 22, + 22, + 23, 23, + 23, + 24, + 30, + 31, + 31, + 21, ], [ 1, - 18, - 18, + 16, + 16, ], [ 0, - 3, 4, + 5, ], [ 1, + 16, 18, - 20, ], [ 0, - 21, - 22, + 19, + 20, ], "c", "d", [ 0, - 24, - 25, - 26, + -4, + -5, + -6, ], - "apple", - "banana", - "pineapple", [ 5, - 18, - 18, + 16, + 16, ], [ 0, + 15, 17, - 19, - 17, + 15, + 16, 18, - 20, - 29, - 32, + 24, + 26, ], [ 6, - 30, - 31, + -7, + 25, ], - "[\\p{L}\\p{M}]+", "gu", [ 1, - 33, - 35, + 27, + 29, ], [ 0, 11, - 34, + 28, ], "rr", [ 0, - 29, - 29, + 24, + 24, ], [ 0, - 26, - 25, - 24, + -6, + -5, + -4, ], [ 4, - 39, + 33, ], [ 1, - 18, - 18, + 16, + 16, ], [ 0, + 15, 17, - 19, - 38, - 18, - 20, - 29, 32, + 16, + 18, + 24, + 26, ], ] `; -exports[`dehydrate > dehydrate { a: { a: 'a', b: 42 } } undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 42 } } undefined 1`] = ` [ - "Flatpack JSON v1", + "Flatpack JSON v2", + [ + 128, + ], [ 1, - 2, - 4, + 3, + 5, ], [ 0, - 3, + 4, ], "a", [ 0, - 5, + 6, ], [ 1, - 6, - 8, + 7, + 9, ], [ 0, - 3, - 7, + 4, + 8, ], "b", [ 0, - 3, - 9, + 4, + 10, ], 42, ] `; -exports[`dehydrate > dehydrate { a: { b: 1 } } undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable { a: { b: 1 } } undefined 1`] = ` [ - "Flatpack JSON v1", + "Flatpack JSON v2", + [ + 128, + ], [ 1, - 2, - 4, + 3, + 5, ], [ 0, - 3, + 4, ], "a", [ 0, - 5, + 6, ], [ 1, - 6, - 8, + 7, + 9, ], [ 0, - 7, + 8, ], "b", [ 0, - 9, + 10, ], 1, ] `; -exports[`dehydrate > dehydrate { a: 1 } undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable { a: 1 } undefined 1`] = ` [ - "Flatpack JSON v1", + "Flatpack JSON v2", + [ + 128, + ], [ 1, - 2, - 4, + 3, + 5, ], [ 0, - 3, + 4, ], "a", [ 0, - 5, + 6, ], 1, ] `; -exports[`dehydrate > dehydrate { fruit: [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ], …(2) } undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable { fruit: [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ], …(2) } undefined 1`] = ` [ - "Flatpack JSON v1", + "Flatpack JSON v2", [ - 1, - 2, - 6, + 128, + "fruit", + "joinFruit", + "sentence", + "apple", + "banana", + "pineapple", + "apple-banana-apple-banana-apple-pineapple", + "There is a bit of fruit on the table. Some banana, apple, and pineapple.", ], [ - 0, + 1, 3, 4, - 5, ], - "fruit", - "joinFruit", - "sentence", [ 0, - 7, - 13, - 14, + -1, + -2, + -3, ], [ 0, - 8, - 9, - 8, - 9, - 8, - 10, - ], - "apple", - "banana", - "pineapple", - "-banana-apple-banana-apple-", - [ - 2, - 11, - 10, + 5, + -7, + -8, ], [ - 2, - 8, - 12, + 0, + -4, + -5, + -4, + -5, + -4, + -6, ], - "There is a bit of fruit on the table. Some banana, apple, and pineapple.", ] `; -exports[`dehydrate > dehydrate { values: [ 'apple', 'banana', 'pineapple' ], …(1) } undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable { values: [ 'apple', 'banana', 'pineapple' ], …(1) } undefined 1`] = ` [ - "Flatpack JSON v1", + "Flatpack JSON v2", + [ + 128, + "values", + "apple", + "banana", + "pineapple", + ], [ 1, - 2, + 3, 5, ], [ 0, - 3, 4, + -1, ], "set", - "values", [ 0, 6, @@ -669,59 +2306,68 @@ exports[`dehydrate > dehydrate { values: [ 'apple', 'banana', 'pineapple' ], … ], [ 0, - 8, - 9, - 10, + -2, + -3, + -4, ], - "apple", - "banana", - "pineapple", ] `; -exports[`dehydrate > dehydrate {} undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable {} undefined 1`] = ` [ - "Flatpack JSON v1", + "Flatpack JSON v2", + [ + 128, + ], {}, ] `; -exports[`dehydrate > dehydrate 1 undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable 1 undefined 1`] = ` [ - "Flatpack JSON v1", + "Flatpack JSON v2", + [ + 128, + ], 1, ] `; -exports[`dehydrate > dehydrate 1.1 undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable 1.1 undefined 1`] = ` [ - "Flatpack JSON v1", + "Flatpack JSON v2", + [ + 128, + ], 1.1, ] `; -exports[`dehydrate > dehydrate Map{ 'apple' => 1, 'banana' => 2, 'pineapple' => 3 } undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable Map{ 'apple' => 1, 'banana' => 2, 'pineapple' => 3 } undefined 1`] = ` [ - "Flatpack JSON v1", + "Flatpack JSON v2", [ - 5, - 2, - 6, + 128, + "apple", + "banana", + "pineapple", ], [ - 0, + 5, 3, 4, - 5, ], - "apple", - "banana", - "pineapple", [ 0, + -1, + -2, + -3, + ], + [ + 0, + 5, + 6, 7, - 8, - 9, ], 1, 2, @@ -729,67 +2375,85 @@ exports[`dehydrate > dehydrate Map{ 'apple' => 1, 'banana' => 2, 'pineapple' => ] `; -exports[`dehydrate > dehydrate Set{ 'apple', 'banana', 'pineapple' } undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable Set{ 'apple', 'banana', 'pineapple' } undefined 1`] = ` [ - "Flatpack JSON v1", + "Flatpack JSON v2", + [ + 128, + "apple", + "banana", + "pineapple", + ], [ 4, - 2, + 3, ], [ 0, - 3, - 4, - 5, + -1, + -2, + -3, ], - "apple", - "banana", - "pineapple", ] `; -exports[`dehydrate > dehydrate Set{ 'pineapple', 'apple', 'banana' } undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable Set{ 'pineapple', 'apple', 'banana' } undefined 1`] = ` [ - "Flatpack JSON v1", + "Flatpack JSON v2", + [ + 128, + "pineapple", + "apple", + "banana", + ], [ 4, - 2, + 3, ], [ 0, - 3, - 4, - 5, + -1, + -2, + -3, ], - "pineapple", - "apple", - "banana", ] `; -exports[`dehydrate > dehydrate false undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable false undefined 1`] = ` [ - "Flatpack JSON v1", + "Flatpack JSON v2", + [ + 128, + ], false, ] `; -exports[`dehydrate > dehydrate null undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable null undefined 1`] = ` [ - "Flatpack JSON v1", + "Flatpack JSON v2", + [ + 128, + ], null, ] `; -exports[`dehydrate > dehydrate true undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable true undefined 1`] = ` [ - "Flatpack JSON v1", + "Flatpack JSON v2", + [ + 128, + ], true, ] `; -exports[`dehydrate > dehydrate undefined undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable undefined undefined 1`] = ` [ - "Flatpack JSON v1", + "Flatpack JSON v2", + [ + 128, + ], ] `; diff --git a/packages/flatpack-json/src/storage.mts b/packages/flatpack-json/src/storage.mts index f6df37f0a1a4..f987ae38f453 100644 --- a/packages/flatpack-json/src/storage.mts +++ b/packages/flatpack-json/src/storage.mts @@ -19,10 +19,11 @@ import type { RegExpElement, Serializable, SetElement, + StringTableElement, SubStringElement, Unpacked, } from './types.mjs'; -import { blockSplitRegex, dataHeader, ElementType } from './types.mjs'; +import { blockSplitRegex, dataHeader, dataHeaderV1_0, dataHeaderV2_0, ElementType } from './types.mjs'; const collator = new Intl.Collator('en', { usage: 'sort', @@ -45,6 +46,7 @@ interface FoundSubString { export class CompactStorage { private data = [dataHeader] as Flatpacked; + private stringTable: StringTableElement | undefined; private dedupe = true; private sortKeys = true; private emptyObjIdx = 0; @@ -70,10 +72,28 @@ export class CompactStorage { */ private knownStringsRev = new Trie(); private cachedElements = new Map(); + private stringTableLookup = new Map(); constructor(readonly options?: FlatpackOptions | undefined) { this.dedupe = options?.dedupe ?? true; this.sortKeys = options?.sortKeys || this.dedupe; + let stringTableAllowed = dataHeader !== dataHeaderV1_0; + if (options?.format === 'V1') { + this.data[0] = dataHeaderV1_0; + stringTableAllowed = false; + } + if (options?.format === 'V2') { + this.data[0] = dataHeaderV2_0; + stringTableAllowed = true; + } + if (options?.useStringTable && !options.format) { + this.data[0] = dataHeaderV2_0; + stringTableAllowed = true; + } + if (options?.useStringTable || (options?.useStringTable !== false && stringTableAllowed)) { + this.stringTable = [ElementType.StringTable]; + this.data[1] = this.stringTable; + } } private primitiveToIdx(value: Primitive): number { @@ -117,17 +137,34 @@ export class CompactStorage { return cost; } - private addKnownString(idx: number, value: string) { + private addToKnownStrings(idx: number, value: string) { if (value.length >= minSubStringLen) { const data = { idx, value }; - this.knownStrings.add(value.length > 256 ? [...value].slice(0, 256) : value, data); - this.knownStringsRev.add(revStr(value, 256), data); + const chars = [...value]; + if (chars.length > 256) { + this.knownStrings.add(chars.slice(0, 256), data); + this.knownStringsRev.add(chars.slice(-256).reverse(), data); + return; + } + + this.knownStrings.add(chars, data); + this.knownStringsRev.add(chars.reverse(), data); } } private addStringPrimitive(value: string): number { + const strTableIdx = this.stringTableLookup.get(value); + if (strTableIdx) { + return -strTableIdx; + } + const stringTable = this.stringTable as string[] | undefined; + if (stringTable && value.length >= minSubStringLen && value.length > Math.log10(stringTable.length)) { + const idx = stringTable.push(value) - 1; + this.stringTableLookup.set(value, idx); + return -idx; + } const idx = this.data.push(value) - 1; - this.addKnownString(idx, value); + this.addToKnownStrings(idx, value); this.cache.set(value, idx); return idx; } @@ -165,7 +202,7 @@ export class CompactStorage { const v = [sIdx, this.stringToIdx(value.slice(subStr.length))]; const idx = this.data.push([ElementType.String, ...v]) - 1; this.cache.set(value, idx); - this.addKnownString(idx, value); + this.addToKnownStrings(idx, value); return idx; } @@ -178,7 +215,7 @@ export class CompactStorage { const v = [this.stringToIdx(value.slice(0, -subStr.length)), sIdx]; const idx = this.data.push([ElementType.String, ...v]) - 1; this.cache.set(value, idx); - this.addKnownString(idx, value); + this.addToKnownStrings(idx, value); return idx; } @@ -487,7 +524,10 @@ export class CompactStorage { toJSON(json: V): Flatpacked { this.softReset(); - this.valueToIdx(json); + const lastIdx = this.valueToIdx(json); + if (lastIdx < 0) { + this.data.push([ElementType.String, lastIdx]); + } return this.options?.optimize ? optimizeFlatpacked(this.data) : this.data; } } diff --git a/packages/flatpack-json/src/storage.test.mts b/packages/flatpack-json/src/storage.test.mts index 6fe8e9e04b69..0fd1cee7f961 100644 --- a/packages/flatpack-json/src/storage.test.mts +++ b/packages/flatpack-json/src/storage.test.mts @@ -67,12 +67,59 @@ describe('dehydrate', async () => { ${[1n, 2n, 1n, 2n, biMaxSafe, -biMaxSafe, biMaxSafe + 1n, -biMaxSafe - 1n]} | ${undefined} ${[Object(1n), Object('hello'), Object(/\w+/g), Object(null), Object([]), Object('hello')]} | ${undefined} `('dehydrate $data $options', ({ data, options }) => { - const v = toJSON(data, { dedupe: options?.dedupe }); + const v = toJSON(data, { ...options }); + expect(v).toMatchSnapshot(); + expect(fromJSON(v)).toEqual(data); + expect(fromJSON(JSON.parse(JSON.stringify(v)))).toEqual(data); + expect(fromJSON(JSON.parse(stringify(data)))).toEqual(data); + expect(fromJSON(JSON.parse(stringify(data, false)))).toEqual(data); + const vv = toJSON(data, { ...options, optimize: true }); + expect(vv).toMatchSnapshot('optimized'); + expect(fromJSON(vv)).toEqual(data); + }); + + test.each` + data | options + ${undefined} | ${undefined} + ${'string'} | ${undefined} + ${1} | ${undefined} + ${1.1} | ${undefined} + ${null} | ${undefined} + ${true} | ${undefined} + ${false} | ${undefined} + ${[]} | ${undefined} + ${[1, 2]} | ${undefined} + ${['apple', 'banana', 'apple', 'banana', 'apple', 'pineapple']} | ${undefined} + ${new Set(['apple', 'banana', 'pineapple'])} | ${undefined} + ${new Set(['pineapple', 'apple', 'banana'])} | ${undefined} + ${new Map([['apple', 1], ['banana', 2], ['pineapple', 3]])} | ${undefined} + ${{}} | ${undefined} + ${[{}, {}, {}]} | ${undefined} + ${{ a: 1 }} | ${undefined} + ${{ a: { b: 1 } }} | ${undefined} + ${{ a: { a: 'a', b: 42 } }} | ${undefined} + ${{ a: [1] }} | ${undefined} + ${{ values: ['apple', 'banana', 'pineapple'], set: new Set(['apple', 'banana', 'pineapple']) }} | ${undefined} + ${[{ a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b', a: 'a' }, ['a', 'b'], ['c', 'd']]} | ${undefined} + ${[{ a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }]} | ${{ dedupe: false }} + ${sampleNestedData()} | ${undefined} + ${sampleRepeatedStrings()} | ${undefined} + ${/[\p{L}\p{M}]+/gu} | ${undefined} + ${[/[\p{L}\p{M}]+/gu, /[\p{L}\p{M}]+/gu, /[\p{Lu}\p{M}]+/gu]} | ${undefined} + ${[new Date('2024-01-01'), new Date('2024-01-01'), new Date('2024-01-02')]} | ${undefined} + ${[1n, 2n, 1n, 2n, biMaxSafe, -biMaxSafe, biMaxSafe + 1n, -biMaxSafe - 1n]} | ${undefined} + ${[Object(1n), Object('hello'), Object(/\w+/g), Object(null), Object([]), Object('hello')]} | ${undefined} + `('dehydrate useStringTable $data $options', ({ data, options }) => { + options = { ...options, useStringTable: true }; + const v = toJSON(data, { ...options }); expect(v).toMatchSnapshot(); expect(fromJSON(v)).toEqual(data); expect(fromJSON(JSON.parse(JSON.stringify(v)))).toEqual(data); expect(fromJSON(JSON.parse(stringify(data)))).toEqual(data); expect(fromJSON(JSON.parse(stringify(data, false)))).toEqual(data); + // const vv = toJSON(data, { ...options, optimize: true }); + // expect(vv).toMatchSnapshot('optimized'); + // expect(fromJSON(vv)).toEqual(data); }); test.each` diff --git a/packages/flatpack-json/src/types.mts b/packages/flatpack-json/src/types.mts index 013ff612e181..7223cead7f08 100644 --- a/packages/flatpack-json/src/types.mts +++ b/packages/flatpack-json/src/types.mts @@ -24,6 +24,7 @@ export enum ElementType { RegExp = 6, Date = 7, BigInt = 8, + StringTable = 128, } interface EmptyObject { readonly t?: ElementType.Object; @@ -45,7 +46,8 @@ export type ArrayBasedElements = | RegExpElement | SetElement | StringElement - | SubStringElement; + | SubStringElement + | StringTableElement; export type Index = number; /** @@ -92,7 +94,11 @@ export type BigIntElement = readonly [type: ElementType.BigInt, value: Index]; */ export type ArrayElement = readonly [type: ElementType.Array, ...Index[]]; -export type FlattenedElement = Readonly; +export type StringTableElement = readonly [type: ElementType.StringTable, ...string[]]; + +export type FlattenedElement = Readonly< + PrimitiveElement | ObjectBasedElements | ArrayBasedElements | StringTableElement +>; type Header = string; export type Flatpacked = [Header, ...FlattenedElement[]]; @@ -121,6 +127,12 @@ export interface FlatpackOptions { * The format of the output. If not specified, the latest format will be used. */ format?: 'V1' | 'V2'; + + /** + * Use a string table to store unique strings and reference them by index. + * This forces the format to be at least V2. + */ + useStringTable?: boolean; } /** diff --git a/packages/flatpack-json/src/unpack.mts b/packages/flatpack-json/src/unpack.mts index 51e32a3a6306..1b2d292d1ab0 100644 --- a/packages/flatpack-json/src/unpack.mts +++ b/packages/flatpack-json/src/unpack.mts @@ -18,6 +18,7 @@ import type { Serializable, SetElement, StringElement, + StringTableElement, SubStringElement, Unpacked, } from './types.mjs'; @@ -26,6 +27,8 @@ import { ElementType, supportedHeaders } from './types.mjs'; export function fromJSON(data: Flatpacked): Unpacked { const [header] = data; + let stringTable: StringTableElement | undefined; + if (!supportedHeaders.has(header)) { throw new Error('Invalid header'); } @@ -79,9 +82,9 @@ export function fromJSON(data: Flatpacked): Unpacked { } function toString(idx: number, elem: StringElement | string): string { - const s = typeof elem === 'string' ? elem : idxToValue(elem.slice(1) as number[]); + const s = typeof elem === 'string' ? elem : idxToString(elem.slice(1) as number[]); cache.set(idx, s); - return s as string; + return s; } function toObj(idx: number, elem: ObjectElement): PrimitiveObject { @@ -164,24 +167,33 @@ export function fromJSON(data: Flatpacked): Unpacked { case ElementType.BigInt: { return toBigInt(idx, element as BigIntElement); } + case ElementType.StringTable: { + stringTable = element as StringTableElement; + return idxToValue(idx + 1); + } } return toArr(idx, element as ArrayElement); } - function idxToValue(idx: number | number[]): Serializable { + function idxToString(idx: number | number[]): string { + if (!idx) return ''; + if (Array.isArray(idx)) { + return joinToString(idx.map((i) => idxToValue(i))); + } + return idxToValue(idx) as string; + } + + function idxToValue(idx: number): Serializable { if (!idx) return undefined; + if (idx < 0) { + return stringTable ? (stringTable[-idx] as string) : undefined; + } const found = cache.get(idx); if (found !== undefined) { if (typeof idx === 'number') referenced.add(idx); return found as Serializable; } - if (Array.isArray(idx)) { - // it is a nested string; - const parts = idx.map((i) => idxToValue(i)); - return joinToString(parts); - } - const element = data[idx]; if (typeof element === 'object') { From cb641d1af9b8ba6792e2318d4ebaf7ef081eca37 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Thu, 5 Mar 2026 14:13:03 +0100 Subject: [PATCH 04/26] fix optimize --- .../src/__snapshots__/storage.test.mts.snap | 1274 +++++++++++++++-- .../flatpack-json/src/optimizeFlatpacked.mts | 80 +- packages/flatpack-json/src/storage.test.mts | 68 +- 3 files changed, 1239 insertions(+), 183 deletions(-) diff --git a/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap b/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap index c416f9988852..29b99ec99eaf 100644 --- a/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap +++ b/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap @@ -1588,6 +1588,20 @@ exports[`dehydrate > dehydrate undefined undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate useStringTable 'string' undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "string", + ], + [ + 2, + -1, + ], +] +`; + exports[`dehydrate > dehydrate useStringTable 'string' undefined 1`] = ` [ "Flatpack JSON v2", @@ -1602,6 +1616,22 @@ exports[`dehydrate > dehydrate useStringTable 'string' undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate useStringTable /[\\p{L}\\p{M}]+/gu undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "[\\p{L}\\p{M}]+", + ], + [ + 6, + -1, + 3, + ], + "gu", +] +`; + exports[`dehydrate > dehydrate useStringTable /[\\p{L}\\p{M}]+/gu undefined 1`] = ` [ "Flatpack JSON v2", @@ -1618,6 +1648,27 @@ exports[`dehydrate > dehydrate useStringTable /[\\p{L}\\p{M}]+/gu undefined 1`] ] `; +exports[`dehydrate > dehydrate useStringTable [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ] undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "apple", + "banana", + "pineapple", + ], + [ + 0, + -1, + -2, + -1, + -2, + -1, + -3, + ], +] +`; + exports[`dehydrate > dehydrate useStringTable [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ] undefined 1`] = ` [ "Flatpack JSON v2", @@ -1639,6 +1690,82 @@ exports[`dehydrate > dehydrate useStringTable [ 'apple', 'banana', 'apple', 'ban ] `; +exports[`dehydrate > dehydrate useStringTable [ 'pineapple', 'apple', 'grape', 'banana', 'apple', 'banana', 'apple', …(1) ] undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "apple", + "banana", + "pineapple", + "grape", + ], + [ + 0, + -3, + -1, + -4, + -2, + -1, + -2, + -1, + -3, + ], +] +`; + +exports[`dehydrate > dehydrate useStringTable [ 'pineapple', 'apple', 'grape', 'banana', 'apple', 'banana', 'apple', …(1) ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "pineapple", + "apple", + "grape", + "banana", + ], + [ + 0, + -1, + -2, + -3, + -4, + -2, + -4, + -2, + -1, + ], +] +`; + +exports[`dehydrate > dehydrate useStringTable [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p{M}]+/gu, /[\\p{Lu}\\p{M}]+/gu ] undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "[\\p{Lu}\\p{M}]+", + "[\\p{L}\\p{M}]+", + ], + [ + 0, + 3, + 3, + 5, + ], + [ + 6, + -2, + 4, + ], + "gu", + [ + 6, + -1, + 4, + ], +] +`; + exports[`dehydrate > dehydrate useStringTable [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p{M}]+/gu, /[\\p{Lu}\\p{M}]+/gu ] undefined 1`] = ` [ "Flatpack JSON v2", @@ -1667,6 +1794,84 @@ exports[`dehydrate > dehydrate useStringTable [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p ] `; +exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, …(1) ] { dedupe: false } > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + 5, + 8, + 11, + 14, + ], + "a", + "b", + [ + 1, + 6, + 7, + ], + [ + 0, + 3, + 4, + ], + [ + 0, + 3, + 4, + ], + [ + 1, + 9, + 10, + ], + [ + 0, + 3, + 4, + ], + [ + 0, + 3, + 4, + ], + [ + 1, + 12, + 13, + ], + [ + 0, + 3, + 4, + ], + [ + 0, + 3, + 4, + ], + [ + 1, + 15, + 16, + ], + [ + 0, + 3, + 4, + ], + [ + 0, + 3, + 4, + ], +] +`; + exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, …(1) ] { dedupe: false } 1`] = ` [ "Flatpack JSON v2", @@ -1745,6 +1950,47 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'a', b: ] `; +exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b', a: 'a' }, …(2) ] undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + 4, + 8, + 4, + 3, + 5, + ], + [ + 0, + 6, + 7, + ], + [ + 1, + 3, + 3, + ], + [ + 0, + 9, + 10, + ], + "a", + "b", + [ + 1, + 3, + 5, + ], + "c", + "d", +] +`; + exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b', a: 'a' }, …(2) ] undefined 1`] = ` [ "Flatpack JSON v2", @@ -1786,6 +2032,22 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'c', b: ] `; +exports[`dehydrate > dehydrate useStringTable [ {}, {}, {} ] undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + 3, + 3, + 3, + ], + {}, +] +`; + exports[`dehydrate > dehydrate useStringTable [ {}, {}, {} ] undefined 1`] = ` [ "Flatpack JSON v2", @@ -1802,7 +2064,7 @@ exports[`dehydrate > dehydrate useStringTable [ {}, {}, {} ] undefined 1`] = ` ] `; -exports[`dehydrate > dehydrate useStringTable [ 1, 2 ] undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable [ 1, 2 ] undefined > optimized 1`] = ` [ "Flatpack JSON v2", [ @@ -1818,17 +2080,78 @@ exports[`dehydrate > dehydrate useStringTable [ 1, 2 ] undefined 1`] = ` ] `; -exports[`dehydrate > dehydrate useStringTable [ 1n, 'hello', /\\w+/g, {}, [], 'hello' ] undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable [ 1, 2 ] undefined 1`] = ` [ "Flatpack JSON v2", [ 128, - "hello", ], [ 0, 3, - 6, + 4, + ], + 1, + 2, +] +`; + +exports[`dehydrate > dehydrate useStringTable [ 1n, 'hello', /\\w+/g, {}, [], 'hello' ] undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "hello", + ], + [ + 0, + 4, + 3, + 7, + 10, + 11, + 3, + ], + [ + 1, + 0, + -1, + ], + [ + 1, + 0, + 5, + ], + [ + 8, + 6, + ], + 1, + [ + 6, + 8, + 9, + ], + "\\w+", + "g", + {}, + [ + 0, + ], +] +`; + +exports[`dehydrate > dehydrate useStringTable [ 1n, 'hello', /\\w+/g, {}, [], 'hello' ] undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "hello", + ], + [ + 0, + 3, + 6, 7, 10, 11, @@ -1863,6 +2186,56 @@ exports[`dehydrate > dehydrate useStringTable [ 1n, 'hello', /\\w+/g, {}, [], 'h ] `; +exports[`dehydrate > dehydrate useStringTable [ 1n, 2n, 1n, 2n, 9007199254740991n, -9007199254740991n, …(2) ] undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "-9007199254740992", + "9007199254740992", + ], + [ + 0, + 3, + 4, + 3, + 4, + 7, + 9, + 11, + 12, + ], + [ + 8, + 5, + ], + [ + 8, + 6, + ], + 1, + 2, + [ + 8, + 8, + ], + 9007199254740991, + [ + 8, + 10, + ], + -9007199254740991, + [ + 8, + -2, + ], + [ + 8, + -1, + ], +] +`; + exports[`dehydrate > dehydrate useStringTable [ 1n, 2n, 1n, 2n, 9007199254740991n, -9007199254740991n, …(2) ] undefined 1`] = ` [ "Flatpack JSON v2", @@ -1913,6 +2286,29 @@ exports[`dehydrate > dehydrate useStringTable [ 1n, 2n, 1n, 2n, 9007199254740991 ] `; +exports[`dehydrate > dehydrate useStringTable [ Array(3) ] undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + 3, + 3, + 4, + ], + [ + 7, + 1704067200000, + ], + [ + 7, + 1704153600000, + ], +] +`; + exports[`dehydrate > dehydrate useStringTable [ Array(3) ] undefined 1`] = ` [ "Flatpack JSON v2", @@ -1936,6 +2332,18 @@ exports[`dehydrate > dehydrate useStringTable [ Array(3) ] undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate useStringTable [] undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + ], +] +`; + exports[`dehydrate > dehydrate useStringTable [] undefined 1`] = ` [ "Flatpack JSON v2", @@ -1948,7 +2356,7 @@ exports[`dehydrate > dehydrate useStringTable [] undefined 1`] = ` ] `; -exports[`dehydrate > dehydrate useStringTable { a: [ 1 ] } undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable { a: [ 1 ] } undefined > optimized 1`] = ` [ "Flatpack JSON v2", [ @@ -1976,125 +2384,306 @@ exports[`dehydrate > dehydrate useStringTable { a: [ 1 ] } undefined 1`] = ` ] `; -exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: 'c', b: 'd' }, …(11) } undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable { a: [ 1 ] } undefined 1`] = ` [ "Flatpack JSON v2", [ 128, - "cValues", - "rValues", - "values", - "apple", - "banana", - "pineapple", - "[\\p{L}\\p{M}]+", ], [ 1, 3, - 14, + 5, ], [ 0, 4, - 5, - -1, - 6, - 7, - 8, - 9, - 10, - 11, - -2, - 12, - 13, - -3, ], "a", - "b", - "m", - "mm", - "n", - "nn", - "nnn", - "r", - "s", - "ss", [ 0, - 15, - 17, - 21, - 22, - 22, - 23, - 23, - 23, - 24, - 30, - 31, - 31, - 21, + 6, ], [ - 1, - 16, - 16, + 0, + 7, ], + 1, +] +`; + +exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: 'c', b: 'd' }, …(11) } undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", [ - 0, - 4, - 5, + 128, + "pineapple", + "banana", + "apple", + "[\\p{L}\\p{M}]+", + "values", + "rValues", + "cValues", ], [ 1, 16, - 18, + 24, ], [ 0, - 19, - 20, + 9, + 10, ], - "c", - "d", [ - 0, + 6, -4, - -5, - -6, + 27, ], [ - 5, - 16, - 16, + 1, + 3, + 3, ], [ - 0, - 15, - 17, - 15, - 16, - 18, - 24, - 26, + 1, + 3, + 7, ], [ - 6, - -7, + 0, 25, - ], - "gu", - [ - 1, - 27, - 29, + 26, ], [ 0, - 11, - 28, - ], + 5, + 6, + 5, + 3, + 7, + 4, + 14, + ], + "a", + "b", + "r", + [ + 0, + -3, + -2, + -1, + ], + [ + 5, + 3, + 3, + ], + [ + 1, + 28, + 30, + ], + [ + 4, + 33, + ], + [ + 0, + 9, + 10, + -7, + 17, + 18, + 19, + 20, + 21, + 11, + -6, + 22, + 23, + -5, + ], + "m", + "mm", + "n", + "nn", + "nnn", + "s", + "ss", + [ + 0, + 5, + 6, + 12, + 13, + 13, + 8, + 8, + 8, + 4, + 31, + 15, + 15, + 12, + ], + "c", + "d", + "gu", + [ + 0, + 11, + 29, + ], + "rr", + [ + 0, + 4, + 4, + ], + [ + 0, + -1, + -2, + -3, + ], + [ + 1, + 3, + 3, + ], + [ + 0, + 5, + 6, + 32, + 3, + 7, + 4, + 14, + ], +] +`; + +exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: 'c', b: 'd' }, …(11) } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "cValues", + "rValues", + "values", + "apple", + "banana", + "pineapple", + "[\\p{L}\\p{M}]+", + ], + [ + 1, + 3, + 14, + ], + [ + 0, + 4, + 5, + -1, + 6, + 7, + 8, + 9, + 10, + 11, + -2, + 12, + 13, + -3, + ], + "a", + "b", + "m", + "mm", + "n", + "nn", + "nnn", + "r", + "s", + "ss", + [ + 0, + 15, + 17, + 21, + 22, + 22, + 23, + 23, + 23, + 24, + 30, + 31, + 31, + 21, + ], + [ + 1, + 16, + 16, + ], + [ + 0, + 4, + 5, + ], + [ + 1, + 16, + 18, + ], + [ + 0, + 19, + 20, + ], + "c", + "d", + [ + 0, + -4, + -5, + -6, + ], + [ + 5, + 16, + 16, + ], + [ + 0, + 15, + 17, + 15, + 16, + 18, + 24, + 26, + ], + [ + 6, + -7, + 25, + ], + "gu", + [ + 1, + 27, + 29, + ], + [ + 0, + 11, + 28, + ], "rr", [ 0, @@ -2129,6 +2718,46 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' ] `; +exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 42 } } undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 1, + 4, + 5, + ], + "a", + [ + 0, + 3, + ], + [ + 0, + 6, + ], + [ + 1, + 7, + 9, + ], + [ + 0, + 3, + 8, + ], + "b", + [ + 0, + 3, + 10, + ], + 42, +] +`; + exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 42 } } undefined 1`] = ` [ "Flatpack JSON v2", @@ -2138,42 +2767,256 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 42 } } undefined [ 1, 3, - 5, - ], - [ - 0, + 5, + ], + [ + 0, + 4, + ], + "a", + [ + 0, + 6, + ], + [ + 1, + 7, + 9, + ], + [ + 0, + 4, + 8, + ], + "b", + [ + 0, + 4, + 10, + ], + 42, +] +`; + +exports[`dehydrate > dehydrate useStringTable { a: { b: 1 } } undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 1, + 3, + 5, + ], + [ + 0, + 4, + ], + "a", + [ + 0, + 6, + ], + [ + 1, + 7, + 9, + ], + [ + 0, + 8, + ], + "b", + [ + 0, + 10, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate useStringTable { a: { b: 1 } } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 1, + 3, + 5, + ], + [ + 0, + 4, + ], + "a", + [ + 0, + 6, + ], + [ + 1, + 7, + 9, + ], + [ + 0, + 8, + ], + "b", + [ + 0, + 10, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate useStringTable { a: 1 } undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 1, + 3, + 5, + ], + [ + 0, + 4, + ], + "a", + [ + 0, + 6, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate useStringTable { a: 1 } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 1, + 3, + 5, + ], + [ + 0, + 4, + ], + "a", + [ + 0, + 6, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate useStringTable { fruit: [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ], …(2) } undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "apple", + "banana", + "There is a bit of fruit on the table. Some banana, apple, and pineapple.", + "apple-banana-apple-banana-apple-pineapple", + "pineapple", + "sentence", + "joinFruit", + "fruit", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -8, + -7, + -6, + ], + [ + 0, + 5, + -4, + -3, + ], + [ + 0, + -1, + -2, + -1, + -2, + -1, + -5, + ], +] +`; + +exports[`dehydrate > dehydrate useStringTable { fruit: [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ], …(2) } undefined 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "fruit", + "joinFruit", + "sentence", + "apple", + "banana", + "pineapple", + "apple-banana-apple-banana-apple-pineapple", + "There is a bit of fruit on the table. Some banana, apple, and pineapple.", + ], + [ + 1, + 3, 4, ], - "a", [ 0, - 6, - ], - [ - 1, - 7, - 9, + -1, + -2, + -3, ], [ 0, - 4, - 8, + 5, + -7, + -8, ], - "b", [ 0, - 4, - 10, + -4, + -5, + -4, + -5, + -4, + -6, ], - 42, ] `; -exports[`dehydrate > dehydrate useStringTable { a: { b: 1 } } undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable { values: [ '', 'apple', 'banana', 'pineapple' ], …(1) } undefined > optimized 1`] = ` [ "Flatpack JSON v2", [ 128, + "pineapple", + "banana", + "apple", + "values", ], [ 1, @@ -2183,35 +3026,44 @@ exports[`dehydrate > dehydrate useStringTable { a: { b: 1 } } undefined 1`] = ` [ 0, 4, + -4, ], - "a", + "set", [ 0, 6, + 8, ], [ - 1, + 4, 7, - 9, ], [ 0, - 8, + -3, + -2, + -1, ], - "b", [ 0, - 10, + 9, + -3, + -2, + -1, ], - 1, + "", ] `; -exports[`dehydrate > dehydrate useStringTable { a: 1 } undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable { values: [ '', 'apple', 'banana', 'pineapple' ], …(1) } undefined 1`] = ` [ "Flatpack JSON v2", [ 128, + "values", + "apple", + "banana", + "pineapple", ], [ 1, @@ -2221,55 +3073,70 @@ exports[`dehydrate > dehydrate useStringTable { a: 1 } undefined 1`] = ` [ 0, 4, + -1, ], - "a", + "set", [ 0, 6, + 8, ], - 1, + [ + 4, + 7, + ], + [ + 0, + -2, + -3, + -4, + ], + [ + 0, + 9, + -2, + -3, + -4, + ], + "", ] `; -exports[`dehydrate > dehydrate useStringTable { fruit: [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ], …(2) } undefined 1`] = ` +exports[`dehydrate > dehydrate useStringTable { values: [ 'apple', 'banana', 'pineapple' ], …(1) } undefined > optimized 1`] = ` [ "Flatpack JSON v2", [ 128, - "fruit", - "joinFruit", - "sentence", - "apple", - "banana", "pineapple", - "apple-banana-apple-banana-apple-pineapple", - "There is a bit of fruit on the table. Some banana, apple, and pineapple.", + "banana", + "apple", + "values", ], [ 1, - 3, 4, + 6, ], [ 0, - -1, - -2, -3, + -2, + -1, ], [ 0, 5, - -7, - -8, + -4, ], + "set", [ 0, - -4, - -5, - -4, - -5, - -4, - -6, + 7, + 3, + ], + [ + 4, + 3, ], ] `; @@ -2313,6 +3180,16 @@ exports[`dehydrate > dehydrate useStringTable { values: [ 'apple', 'banana', 'pi ] `; +exports[`dehydrate > dehydrate useStringTable {} undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + {}, +] +`; + exports[`dehydrate > dehydrate useStringTable {} undefined 1`] = ` [ "Flatpack JSON v2", @@ -2323,6 +3200,16 @@ exports[`dehydrate > dehydrate useStringTable {} undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate useStringTable 1 undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + 1, +] +`; + exports[`dehydrate > dehydrate useStringTable 1 undefined 1`] = ` [ "Flatpack JSON v2", @@ -2333,6 +3220,16 @@ exports[`dehydrate > dehydrate useStringTable 1 undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate useStringTable 1.1 undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + 1.1, +] +`; + exports[`dehydrate > dehydrate useStringTable 1.1 undefined 1`] = ` [ "Flatpack JSON v2", @@ -2343,6 +3240,38 @@ exports[`dehydrate > dehydrate useStringTable 1.1 undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate useStringTable Map{ 'apple' => 1, 'banana' => 2, 'pineapple' => 3 } undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "pineapple", + "banana", + "apple", + ], + [ + 5, + 3, + 4, + ], + [ + 0, + -3, + -2, + -1, + ], + [ + 0, + 5, + 6, + 7, + ], + 1, + 2, + 3, +] +`; + exports[`dehydrate > dehydrate useStringTable Map{ 'apple' => 1, 'banana' => 2, 'pineapple' => 3 } undefined 1`] = ` [ "Flatpack JSON v2", @@ -2375,6 +3304,28 @@ exports[`dehydrate > dehydrate useStringTable Map{ 'apple' => 1, 'banana' => 2, ] `; +exports[`dehydrate > dehydrate useStringTable Set{ 'apple', 'banana', 'pineapple' } undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "pineapple", + "banana", + "apple", + ], + [ + 4, + 3, + ], + [ + 0, + -3, + -2, + -1, + ], +] +`; + exports[`dehydrate > dehydrate useStringTable Set{ 'apple', 'banana', 'pineapple' } undefined 1`] = ` [ "Flatpack JSON v2", @@ -2397,6 +3348,28 @@ exports[`dehydrate > dehydrate useStringTable Set{ 'apple', 'banana', 'pineapple ] `; +exports[`dehydrate > dehydrate useStringTable Set{ 'pineapple', 'apple', 'banana' } undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "banana", + "apple", + "pineapple", + ], + [ + 4, + 3, + ], + [ + 0, + -3, + -2, + -1, + ], +] +`; + exports[`dehydrate > dehydrate useStringTable Set{ 'pineapple', 'apple', 'banana' } undefined 1`] = ` [ "Flatpack JSON v2", @@ -2419,6 +3392,16 @@ exports[`dehydrate > dehydrate useStringTable Set{ 'pineapple', 'apple', 'banana ] `; +exports[`dehydrate > dehydrate useStringTable false undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + false, +] +`; + exports[`dehydrate > dehydrate useStringTable false undefined 1`] = ` [ "Flatpack JSON v2", @@ -2429,6 +3412,16 @@ exports[`dehydrate > dehydrate useStringTable false undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate useStringTable null undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + null, +] +`; + exports[`dehydrate > dehydrate useStringTable null undefined 1`] = ` [ "Flatpack JSON v2", @@ -2439,6 +3432,16 @@ exports[`dehydrate > dehydrate useStringTable null undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate useStringTable true undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + true, +] +`; + exports[`dehydrate > dehydrate useStringTable true undefined 1`] = ` [ "Flatpack JSON v2", @@ -2449,6 +3452,15 @@ exports[`dehydrate > dehydrate useStringTable true undefined 1`] = ` ] `; +exports[`dehydrate > dehydrate useStringTable undefined undefined > optimized 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], +] +`; + exports[`dehydrate > dehydrate useStringTable undefined undefined 1`] = ` [ "Flatpack JSON v2", diff --git a/packages/flatpack-json/src/optimizeFlatpacked.mts b/packages/flatpack-json/src/optimizeFlatpacked.mts index f0541e6f26ca..5cbe58a2fb57 100644 --- a/packages/flatpack-json/src/optimizeFlatpacked.mts +++ b/packages/flatpack-json/src/optimizeFlatpacked.mts @@ -1,48 +1,90 @@ import assert from 'node:assert'; -import type { ArrayBasedElements, Flatpacked, FlattenedElement } from './types.mjs'; +import type { ArrayBasedElements, Flatpacked, FlattenedElement, StringTableElement } from './types.mjs'; import { ElementType, supportedHeaders } from './types.mjs'; export function optimizeFlatpacked(data: Flatpacked): Flatpacked { - const [header] = data; + const [header, maybeStringTable] = data; + + if (data[1] === undefined || data[2] === undefined) { + return data; + } + if (!supportedHeaders.has(header)) { throw new Error('Invalid header'); } - const elementRefs = data.map((element, index) => ({ origIndex: index, refCount: 0, index: 0, element })); - const indexToRefElement = new Map(elementRefs.entries()); + const stringTable = + maybeStringTable && Array.isArray(maybeStringTable) && maybeStringTable[0] === ElementType.StringTable + ? (maybeStringTable as StringTableElement) + : undefined; + + const startIndex = stringTable ? 2 : 1; + + const elements = data.slice(startIndex); + + const elementRefs = elements.map((element, index) => ({ + origIndex: index + startIndex, + refCount: 0, + index: 0, + element, + })); + const indexToRefElement = new Map( + elementRefs.map((refElement) => [refElement.origIndex, refElement]), + ); + const stringTableRefCounts = new Map(); for (const refElement of elementRefs) { - if (refElement.origIndex === 0) { - continue; - } const indexes = getRefIndexes(refElement.element); for (const index of indexes) { + if (index < 0) { + stringTableRefCounts.set(index, (stringTableRefCounts.get(index) || 0) + 1); + continue; + } const ref = indexToRefElement.get(index); assert(ref, `Invalid reference index: ${index}`); ref.refCount++; } } - const sortedRefElements = elementRefs.slice(2).sort((a, b) => b.refCount - a.refCount || a.origIndex - b.origIndex); - sortedRefElements.forEach((refElement, index) => { - refElement.index = index + 2; - }); + const sortedRefElements = elementRefs.sort((a, b) => b.refCount - a.refCount || a.origIndex - b.origIndex); const indexMap = new Map([ [0, 0], [1, 1], ]); - sortedRefElements.forEach((refElement) => { - indexMap.set(refElement.origIndex, refElement.index); + + if (stringTable) { + indexMap.set(2, 2); + } + + for (const refElement of sortedRefElements) { + const idx = indexMap.get(refElement.origIndex) ?? indexMap.size; + refElement.index = idx; + indexMap.set(refElement.origIndex, idx); + } + + const sortedStringTableIndexes = [...stringTableRefCounts.entries()].sort((a, b) => b[1] - a[1] || a[0] - b[0]); + sortedStringTableIndexes.forEach(([index], i) => { + indexMap.set(index, -(i + 1)); }); - const optimizedElements: FlattenedElement[] = [ - data[1], - ...sortedRefElements.map((refElement) => refElement.element), - ].map((element) => patchIndexes(element, indexMap)); + const stringTableElements: FlattenedElement[] = []; + + // sort the string table. + if (stringTable) { + const strings = sortedStringTableIndexes.map(([index]) => stringTable[-index] as string); + stringTableElements.push([ElementType.StringTable, ...strings]); + } + + const result: Flatpacked = [header, ...stringTableElements]; - return [header, ...optimizedElements]; + for (const refElement of sortedRefElements) { + const element = patchIndexes(refElement.element, indexMap); + result[refElement.index] = element; + } + + return result; } function patchIndexes(elem: FlattenedElement, indexMap: Map): FlattenedElement { @@ -107,7 +149,7 @@ function patchIndexes(elem: FlattenedElement, indexMap: Map): Fl return elem; } - assert(typeof elem === 'boolean'); + assert(typeof elem === 'boolean', `Expected boolean, got ${typeof elem}`); return elem; } diff --git a/packages/flatpack-json/src/storage.test.mts b/packages/flatpack-json/src/storage.test.mts index 0fd1cee7f961..19b185f13d09 100644 --- a/packages/flatpack-json/src/storage.test.mts +++ b/packages/flatpack-json/src/storage.test.mts @@ -79,36 +79,38 @@ describe('dehydrate', async () => { }); test.each` - data | options - ${undefined} | ${undefined} - ${'string'} | ${undefined} - ${1} | ${undefined} - ${1.1} | ${undefined} - ${null} | ${undefined} - ${true} | ${undefined} - ${false} | ${undefined} - ${[]} | ${undefined} - ${[1, 2]} | ${undefined} - ${['apple', 'banana', 'apple', 'banana', 'apple', 'pineapple']} | ${undefined} - ${new Set(['apple', 'banana', 'pineapple'])} | ${undefined} - ${new Set(['pineapple', 'apple', 'banana'])} | ${undefined} - ${new Map([['apple', 1], ['banana', 2], ['pineapple', 3]])} | ${undefined} - ${{}} | ${undefined} - ${[{}, {}, {}]} | ${undefined} - ${{ a: 1 }} | ${undefined} - ${{ a: { b: 1 } }} | ${undefined} - ${{ a: { a: 'a', b: 42 } }} | ${undefined} - ${{ a: [1] }} | ${undefined} - ${{ values: ['apple', 'banana', 'pineapple'], set: new Set(['apple', 'banana', 'pineapple']) }} | ${undefined} - ${[{ a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b', a: 'a' }, ['a', 'b'], ['c', 'd']]} | ${undefined} - ${[{ a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }]} | ${{ dedupe: false }} - ${sampleNestedData()} | ${undefined} - ${sampleRepeatedStrings()} | ${undefined} - ${/[\p{L}\p{M}]+/gu} | ${undefined} - ${[/[\p{L}\p{M}]+/gu, /[\p{L}\p{M}]+/gu, /[\p{Lu}\p{M}]+/gu]} | ${undefined} - ${[new Date('2024-01-01'), new Date('2024-01-01'), new Date('2024-01-02')]} | ${undefined} - ${[1n, 2n, 1n, 2n, biMaxSafe, -biMaxSafe, biMaxSafe + 1n, -biMaxSafe - 1n]} | ${undefined} - ${[Object(1n), Object('hello'), Object(/\w+/g), Object(null), Object([]), Object('hello')]} | ${undefined} + data | options + ${undefined} | ${undefined} + ${'string'} | ${undefined} + ${1} | ${undefined} + ${1.1} | ${undefined} + ${null} | ${undefined} + ${true} | ${undefined} + ${false} | ${undefined} + ${[]} | ${undefined} + ${[1, 2]} | ${undefined} + ${['apple', 'banana', 'apple', 'banana', 'apple', 'pineapple']} | ${undefined} + ${['pineapple', 'apple', 'grape', 'banana', 'apple', 'banana', 'apple', 'pineapple']} | ${undefined} + ${new Set(['apple', 'banana', 'pineapple'])} | ${undefined} + ${new Set(['pineapple', 'apple', 'banana'])} | ${undefined} + ${new Map([['apple', 1], ['banana', 2], ['pineapple', 3]])} | ${undefined} + ${{}} | ${undefined} + ${[{}, {}, {}]} | ${undefined} + ${{ a: 1 }} | ${undefined} + ${{ a: { b: 1 } }} | ${undefined} + ${{ a: { a: 'a', b: 42 } }} | ${undefined} + ${{ a: [1] }} | ${undefined} + ${{ values: ['apple', 'banana', 'pineapple'], set: new Set(['apple', 'banana', 'pineapple']) }} | ${undefined} + ${{ values: ['', 'apple', 'banana', 'pineapple'], set: new Set(['apple', 'banana', 'pineapple']) }} | ${undefined} + ${[{ a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b', a: 'a' }, ['a', 'b'], ['c', 'd']]} | ${undefined} + ${[{ a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }]} | ${{ dedupe: false }} + ${sampleNestedData()} | ${undefined} + ${sampleRepeatedStrings()} | ${undefined} + ${/[\p{L}\p{M}]+/gu} | ${undefined} + ${[/[\p{L}\p{M}]+/gu, /[\p{L}\p{M}]+/gu, /[\p{Lu}\p{M}]+/gu]} | ${undefined} + ${[new Date('2024-01-01'), new Date('2024-01-01'), new Date('2024-01-02')]} | ${undefined} + ${[1n, 2n, 1n, 2n, biMaxSafe, -biMaxSafe, biMaxSafe + 1n, -biMaxSafe - 1n]} | ${undefined} + ${[Object(1n), Object('hello'), Object(/\w+/g), Object(null), Object([]), Object('hello')]} | ${undefined} `('dehydrate useStringTable $data $options', ({ data, options }) => { options = { ...options, useStringTable: true }; const v = toJSON(data, { ...options }); @@ -117,9 +119,9 @@ describe('dehydrate', async () => { expect(fromJSON(JSON.parse(JSON.stringify(v)))).toEqual(data); expect(fromJSON(JSON.parse(stringify(data)))).toEqual(data); expect(fromJSON(JSON.parse(stringify(data, false)))).toEqual(data); - // const vv = toJSON(data, { ...options, optimize: true }); - // expect(vv).toMatchSnapshot('optimized'); - // expect(fromJSON(vv)).toEqual(data); + const vv = toJSON(data, { ...options, optimize: true }); + expect(vv).toMatchSnapshot('optimized'); + expect(fromJSON(vv)).toEqual(data); }); test.each` From acb323c44bf654cd5a66446251669759237c53f3 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Thu, 5 Mar 2026 17:13:14 +0100 Subject: [PATCH 05/26] Add line wrapping and put all strings in the string table. --- .../fixtures/.npm-packages-info-v2.json | 15182 ++++++++++++++++ .../fixtures/cspell-cache-flatpack.json | 452 +- .../__snapshots__/FlatpackV1_fileList.jsonc | 31 +- .../FlatpackV1_fileObjects.jsonc | 31 +- .../__snapshots__/FlatpackV2_fileList.jsonc | 31 +- .../FlatpackV2_fileObjects.jsonc | 31 +- .../src/__snapshots__/storage.test.mts.snap | 622 +- .../src/__snapshots__/storage_fileList.jsonc | 31 +- .../__snapshots__/storage_fileObjects.jsonc | 31 +- .../src/__snapshots__/unpack_fileList.jsonc | 31 +- .../__snapshots__/unpack_fileObjects.jsonc | 31 +- .../flatpack-json/src/optimizeFlatpacked.mts | 3 + packages/flatpack-json/src/storage.mts | 16 +- packages/flatpack-json/src/storage.test.mts | 21 +- packages/flatpack-json/src/stringify.mts | 31 +- packages/flatpack-json/src/types.mts | 7 + 16 files changed, 16174 insertions(+), 408 deletions(-) create mode 100644 packages/flatpack-json/fixtures/.npm-packages-info-v2.json diff --git a/packages/flatpack-json/fixtures/.npm-packages-info-v2.json b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json new file mode 100644 index 000000000000..b53a37582b5b --- /dev/null +++ b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json @@ -0,0 +1,15182 @@ +[ +"Flatpack JSON v2", +[128,"eslint","typescript","mocha","prettier","@types/node","react","rimraf","jest","husky","eslint-plugin-import", +"@babel/core","eslint-config-prettier","chai","rollup","nyc","semver","webpack","lint-staged", +"@typescript-eslint/parser","chalk","@babel/preset-env","@typescript-eslint/eslint-plugin","lodash","css", +"eslint-plugin-prettier","cross-env","sinon","glob","@types/jest","vitest","html","gulp","ts-node","xo","react-dom", +"debug","cli","postcss","tape","fs-extra","express","documentation","c8","tslib","javascript","backend","@types/react", +"@eslint/js","@commitlint/cli","@babel/cli","ava","framework","frontend","grunt","globals","coveralls","ts-jest", +"commander","browserify","async","testing","@commitlint/config-conventional","@rollup/plugin-node-resolve", +"eslint-plugin-react","npm-run-all","istanbul","eslint-plugin-promise","gulpplugin","@types/mocha","vinyl","through2", +"mkdirp","parser","vue","test","eslint-plugin-node","sass","karma","jsdom","@rollup/plugin-commonjs","tsd","should", +"typescript-eslint","eslint-config-standard","tap","babel-jest","@types/react-dom","minimist","esbuild","@babel/runtime", +"browser","webpack-cli","minimatch","babel-eslint","mobile","yargs","standard","babel-loader","api","markdown","js-yaml", +"ui","@vitest/coverage-v8","vite","http","json","plugin","react-component","@types/chai","benchmark","web","uglify-js", +"request","generator","eslint-plugin-n","bluebird","jshint","execa","chokidar","semantic-release","prop-types", +"@testing-library/react","uuid","typedoc","supertest","file","components", +"resolve","component","source-map","eslint-plugin-standard","util","unified","standard-version","colors", +"@babel/preset-react","@types/semver","strip-ansi","karma-chrome-launcher","@babel/preset-typescript","node", +"@types/lodash","plugin-error","css-loader","eslint-plugin-jest","source-map-support","remark-cli", +"eslint-plugin-jsx-a11y","open","eslint-plugin-unicorn","del","codecov","tsx","style-loader","@testing-library/jest-dom", +"tmp","puppeteer","npm","core-js","autoprefixer","@babel/eslint-parser","@types/debug","string","picocolors","parse", +"jsdoc","grunt-cli","body-parser","babel-core","webpack-dev-server","tsup","promise","@babel/plugin-transform-runtime", +"terminal","terser","jest-environment-jsdom","grunt-contrib-jshint","@babel/register","stylelint","proxyquire", +"eslint-plugin-jsdoc","babel-cli","text","front-end","@types/fs-extra","sinon-chai","safe-publish-latest","node-fetch", +"karma-mocha","eslint-plugin-react-hooks","eslint-config-airbnb-base", +"angular","ajv","console","url","tslint","readable-stream","nock","jasmine","inquirer","axios","utility", +"@rollup/plugin-babel","@rollup/plugin-terser","ws","globby","diff","acorn","server","type-fest","ts-loader", +"karma-firefox-launcher","in-publish","eslint-plugin-markdown","dotenv","@babel/plugin-proposal-class-properties","lint", +"postcss-plugin","which","svelte","markdown-it","less","connect","color","style","rollup-plugin-terser","minify", +"marked","fast-glob","cross-spawn","@rollup/plugin-json","@rollup/plugin-replace","type-coverage","react-native", +"pre-commit","moment","del-cli","cheerio","@ljharb/eslint-config","ansi","next","object-assign","grunt-contrib-clean", +"chai-as-promised","stream","@types/hast","underscore","path","jquery","handlebars","eslint-import-resolver-typescript", +"@swc/core","gruntplugin","shell","dom", +"svg","@types/express","zod","yaml","remark-preset-wooorm","mime","memfs","log","fancy-log","eslint-plugin-mocha", +"eslint-config-airbnb","classnames","babel-preset-env","@types/sinon","js","template","shelljs","rollup-plugin-babel", +"remark","npmignore","json5","file-loader","babel-plugin-add-module-exports","auto-changelog","check","image","ios", +"@eslint/eslintrc","undici","slash","react-test-renderer","process","nodemon","concurrently","ckeditor5","babel-runtime", +"babel","assert","command-line","@semantic-release/git","@semantic-release/changelog","magic-string", +"cz-conventional-changelog","buffer","app","rollup-plugin-typescript2","grunt-contrib-watch","fs","clsx","browserslist", +"@babel/plugin-proposal-object-rest-spread","mock","command","@stylistic/eslint-plugin","@arethetypeswrong/cli", +"tinyglobby","tar","gulp-sourcemaps","gulp-rename","concat-stream","coffeescript","@testing-library/user-event","schema", +"@rollup/plugin-typescript", +"@biomejs/biome","size-limit","redux","picomatch","ora","graceful-fs","deepmerge","canvas","babel-preset-es2015", +"@types/estree","@testing-library/dom","@ckeditor/ckeditor5-core","middleware","android","eslintplugin","nodejs","input", +"client","ecmascript","es6","unist-util-visit","rollup-plugin-node-resolve","regenerator-runtime","npm-run-all2", +"mime-types","load-grunt-tasks","html-webpack-plugin","grunt-contrib-uglify","gh-pages","find-up","expect","ejs", +"cookie","config","code","babel-plugin-istanbul","@ckeditor/ckeditor5-utils","@playwright/test","module","@types/eslint", +"ast","progress","micromatch","gulp-util","gulp-mocha","grunt-contrib-nodeunit","@changesets/cli","logging", +"eslint-plugin","library","modules","tsdown","tempy","release-it","rehype","qunit","mongodb","mini-css-extract-plugin", +"jasmine-core","highlight.js","graphql","esm","cssnano","cors", +"compression","lodash-modularized","database","git","unit","syntax","docs","@babel/plugin-transform-modules-commonjs", +"terser-webpack-plugin","stylus","string-width","shx","serve-static","prompts","playwright","nextjs","karma-jasmine", +"https","got","cosmiconfig","conventional-changelog-cli","directory","object","require","@types/mdast","validation", +"rest","@types/js-yaml","editor","@types/yargs","touch","rollup-plugin-dts","requirejs","np","karma-mocha-reporter", +"http-server","flow-bin","expect.js","events","event-stream","escape-string-regexp","cspell","@ckeditor/ckeditor5-ui", +"@babel/parser","hast","stringify","es2015","tty","scss","cache","router","design","ts","validator","url-loader", +"react-is","prismjs","pretty-quick","lru-cache","koa","extend","enzyme","camelcase","babel-register", +"@ckeditor/ckeditor5-engine","karma-plugin","data","package","convert","node.js","@types/ws","unicode","runner", +"entities","@types/glob","publint","through","supports-color","sass-loader","rollup-plugin-commonjs","qs", +"postcss-value-parser","nopt","meow","lodash-es","ignore","iconv-lite","electron","convert-source-map","common-tags", +"coffee-script","bytes","bootstrap","ansi-colors","@microsoft/api-extractor","@babel/types","@babel/polyfill","promises", +"escape","vfile","native","animation","github-slugger","@eslint/compat","safe-buffer","rxjs","prompt","preact", +"postcss-loader","path-exists","merge","kleur","jest-cli","htmlparser2","get-stream","get-port","eslint-plugin-flowtype", +"escape-html","cypress","commitizen","ci-info","unist","xml","transform","fast","validate","encoding","match", +"web framework","@rollup/plugin-alias","@eslint/markdown","es-toolkit","reactjs","@types/webpack","yargs-parser", +"webpack-merge","webpack-bundle-analyzer","remark-gfm","q","pretty-bytes","mustache","markdownlint-cli","karma-webpack", +"jiti","inherits","immutable","gulp-eslint","grunt-eslint","grunt-contrib-copy","figures","dedent","copy-webpack-plugin", +"clone","@vitejs/plugin-react","@babel/code-frame","linter","type","compress","performance","tdd","automation","swagger", +"form","generate","styles","polyfill","format","xml2js","winston","vinyl-sourcemaps-apply","vinyl-fs","tshy","tap-spec", +"tailwindcss","stylelint-config-standard","react-router-dom","postcss-selector-parser","postcss-import","pluralize", +"path-to-regexp","p-map","optimist","mysql","ms","mock-fs","is-ci","grunt-bump","github","eslint-plugin-eslint-plugin", +"enquirer","dayjs","conventional-changelog", +"clean-css","@babel/traverse","hast-util","png","optimize","checker","@semantic-release/npm","eslint-config-webpack", +"formatting","html5","@types/jsdom","args","time","tool","@ckeditor/ckeditor5-icons","bdd","preprocessor","compiler", +"watch","warning","update-notifier","temp","svgo","strip-json-comments","simple-git","remark-parse","reflect-metadata", +"read","proxy","pg","pathe","parse5","opener","object.assign","node-gyp","mocha-lcov-reporter","karma-coverage","jscs", +"http-proxy","gulp-babel","grunt-contrib-connect","espree","cpy-cli","cookie-parser","babel-polyfill", +"@ckeditor/ckeditor5-typing","@babel/plugin-proposal-decorators","@types/picomatch","gulpfriendly","files","remove", +"error","import","await","find","simple","w3c","@types/json-schema","@types/micromatch","types","responsive","pretty", +"xterm","schema-utils", +"rollup-plugin-visualizer","resolve-from","ramda","pug","portfinder","phantomjs-prebuilt","nanoid","log-symbols", +"karma-sourcemap-loader","jsonc-parser","json-schema","is","http-errors","gulp-uglify","gulp-concat","grunt-npm", +"grunt-contrib-concat","form-data","delay","crypto","copyfiles","cli-table3","@sinonjs/fake-timers","version", +"@types/tape","compile","build","security","detect","copy","array","colour","shim","@size-limit/preset-small-lib", +"utils","tinyhttp","query","@types/unist","doc","layout","@types/uuid","openapi","hooks","authentication","development", +"dependencies","yarn","tree-kill","superagent","sharp","redis","react-transition-group","react-refresh","raw-loader", +"raf","pretty-format","postcss-cli","path-browserify","once","nodeunit","morgan","microbundle","karma-spec-reporter", +"karma-chai", +"invariant","html-entities","hasown","gulp-format-md","gray-matter","fresh","eslint-doc-generator","bindings", +"babel-preset-react","@octokit/rest","@nx/devkit","@jest/types","rollup-plugin","publish","db","filter","search", +"optimise","windows","parsing","cli-app","@types/minimist","rgb","functional","@rollup/pluginutils","@types/babel__core", +"@npmcli/template-oss","@npmcli/eslint-config","@types/chai-as-promised","TypeScript","table","@types/compression", +"@types/tmp","@semantic-release/github","logger","@types/benchmark","templates","icon","xtend","xhr","watchify","walk", +"storybook","slugify","sirv","shell-quote","rehype-stringify","parseurl","ncp","make-dir","loader-utils", +"karma-rollup-preprocessor","joi","install","ini","https-proxy-agent","hast-util-to-string","filesize", +"eslint-plugin-security","eslint-plugin-html","csstype","babel-preset-airbnb","aud","ansi-styles", +"airtap","@eslint-community/eslint-utils","@babel/helper-plugin-utils","realtime","recursive","binary","map","delete", +"minifier","encode","auth","loader","changelog","@babel/node","environment","event","CLI","wait","task","coverage", +"@types/prompts","wysiwyg","@popperjs/core","neostandard","whatwg-fetch","vitepress","typedoc-plugin-markdown", +"tsconfig-paths","ts-morph","sqlite3","split","source-map-js","socket.io","serve","send","rollup-plugin-uglify", +"remark-rehype","postcss-preset-env","pngjs","outdent","orm","nan","msw","knip","karma-sauce-launcher","jsonwebtoken", +"jsonschema","jsdoc-to-markdown","jest-environment-node","indent-string","hosted-git-info","gulp-jshint","gulp-header", +"grunt-shell","father","expect-type","estree-walker","eslint-plugin-vue","eslint-plugin-regexp","eslint-plugin-babel", +"eslint-config-gulp","enhanced-resolve","deep-equal","csv", +"copy-to-clipboard","babelify","babel-plugin-transform-react-remove-prop-types", +"babel-plugin-transform-object-rest-spread","arg","ajv-formats","after","@typescript-eslint/utils","webdriver","mdast", +"postgres","@types/minimatch","render","@semantic-release/commit-analyzer","ES6","vite-plugin-dts", +"@vitest/eslint-plugin","name","random","serialize","parallel","value","option","zip","static","integration", +"@vue/test-utils","eslint-plugin-simple-import-sort","commonjs","@release-it/conventional-changelog","builder","shiki", +"remark-frontmatter","fetch","jsx","ui-kit","ascii","term","rollup-plugin-copy","forms","@types/graceful-fs","vue3", +"@types/markdown-it","rich text","ckeditor 5","@web/test-runner","website","@babel/generator","wrap-ansi","websocket", +"vue-router","vinyl-source-stream","toml","text-table","tar-stream","sugarss","styled-components","split2", +"source-map-loader","signal-exit","rollup-pluginutils","rollup-plugin-replace","rollup-plugin-license", +"rollup-plugin-cleanup", +"replace-ext","react-router","react-redux","pretty-ms","prettier-plugin-packagejson","postcss-scss", +"postcss-load-config","phantomjs","p-event","oauth","node-addon-api","moment-timezone","mdast-util-from-markdown", +"karma-safari-launcher","karma-browserify","json-loader","jest-util","jest-diff","is-wsl","hono","gulp-plugin-extras", +"grunt-contrib-internal","global","extract-text-webpack-plugin","express-session","exit","etag","eslint-plugin-compat", +"content-type","cac","babylon","assume","archiver","ansi-escapes","@npmcli/arborist","rehype-plugin", +"react-native-component","selenium","tree","memory","devlop","@commitlint/config-angular","uglify","utilities","streams", +"sanitize","folder","extract","@webpack-contrib/eslint-config-webpack","@types/cross-spawn","reporter","pattern","regex", +"@vitejs/plugin-vue","@storybook/react","a11y","store","mui","@types/supertest","@types/node-fetch","date", +"@swc/helpers","yeoman","scaffold", +"@vitest/coverage-istanbul","icons","@babel/plugin-external-helpers","@types/prismjs","@vitest/ui","@stackblitz/sdk", +"editing","ckeditor","comments","md","simple-git-hooks","@babel/plugin-transform-flow-strip-types","@types/prop-types", +"material design","@babel/plugin-syntax-jsx","rolldown","zuul","yauzl","wordwrap","vue-eslint-parser","vary","type-is", +"scheduler","run-sequence","rollup-plugin-buble","regenerate","queue","querystring","punycode","proc-log","plur", +"pixelmatch","on-finished","nunjucks","npm-package-arg","mocha-junit-reporter","markdownlint","markdown-toc", +"markdown-it-anchor","map-stream","jshint-stylish","js-beautify","js-base64","is-stream","immer","identity-obj-proxy", +"hoist-non-react-statics","gulp-replace","gulp-istanbul","gulp-clean-css","grunt-mocha-test","grunt-karma", +"grunt-browserify","graphql-tag","formidable","for-each","finalhandler","fast-deep-equal","eventemitter3", +"eslint-visitor-keys","eslint-config-airbnb-typescript","es6-promise","enzyme-adapter-react-16","doxdox", +"dotenv-expand","doctoc","cordova","content-disposition","co","cli-table","call-bind","browser-sync", +"babel-plugin-transform-runtime","aws-sdk","antd","@nx/js","@ckeditor/ckeditor5-image", +"@ckeditor/ckeditor5-cloud-services","@babel/plugin-proposal-export-namespace-from","karma-launcher","@types/jasmine", +"application","jpeg","commonmark","local","exec","replace","@typescript/native-preview","code style","quality","es5", +"entity","enforce","upload","templating","character","property","@swc/jest","@semantic-release/release-notes-generator", +"engine","bash","strip","argument","line","pdf","parents","postgresql","view","@babel/preset-flow","storage","s3", +"@sindresorhus/tsconfig","assertion","cloud","restful","regexp","findup","whatwg","unist-util-visit-parents", +"@vitest/browser","network","@storybook/addon-links","spec","Monorepo","bundle","configuration","font","API", +"@emotion/react","@types/mime-types","tests","properties","lunr","tinyexec","toolkit", +"@babel/plugin-transform-typescript","@babel/plugin-transform-class-properties","@babel/helper-module-imports", +"@types/resolve","@jridgewell/trace-mapping","react-error-boundary","ua-parser-js","walk-sync","vue-loader","uvu", +"uglifyjs-webpack-plugin","tough-cookie","tinycolor2","tinybench","three","start-server-and-test", +"space-separated-tokens","server-destroy","serve-index","serialize-javascript","selenium-webdriver","sax", +"rollup-plugin-json","resize-observer-polyfill","remarkable","react-copy-to-clipboard","range-parser", +"prettier-plugin-organize-imports","pkg-up","pify","p-queue","object.entries","npm-package-json-lint","node-forge", +"mongoose","mockdate","methods","merge-stream","memory-fs","mdast-util-to-hast","md5","material-ui","markdown-table", +"markdown-it-emoji","lodash.clonedeep","lockfile-lint","livereload","leven","less-loader","lab","karma-ie-launcher", +"JSONStream","json-stringify-safe","jsesc","jest-watch-typeahead","jest-junit","isarray", +"is-plain-object","is-plain-obj","is-glob","inflection","i18next","i18n","he","hastscript","gzip-size","gulp-if", +"gulp-filter","grunt-conventional-changelog","fastify","extract-zip","evalmd","estraverse","esprima","eslint-scope", +"eslint-plugin-tsdoc","each","dtslint","depd","date-fns","d3","css-tree","cron","configstore","commitlint","colorette", +"codemirror","clipboard","caniuse-lite","buble","bower","beautify-benchmark","babel-preset-stage-0", +"babel-plugin-module-resolver","arrify","ansi-regex","accepts","@ckeditor/ckeditor5-list","@ckeditor/ckeditor5-heading", +"@ckeditor/ckeditor5-clipboard","@babel/plugin-syntax-dynamic-import","@babel/plugin-proposal-export-default-from", +"@vuepress/types","slider","headless","desktop","@types/diff","manager","vector","@types/rimraf","file system", +"readable","size","gif","@eslint-community/eslint-plugin-eslint-comments","nosql","semaphore","drag","structure","cmd", +"cross-platform", +"mongo","env","tag","clean","@types/prettier","child","deep","rollup-plugin-esbuild","minification","serve-handler", +"function","aws","@colors/colors","push","@babel/plugin-transform-object-assign", +"@babel/plugin-proposal-optional-chaining","256","saucelabs","service","background","css3","angularjs","vuejs", +"@jest/globals","@opentelemetry/api","patch-package","webdriverio","reference","@hono/node-server","fdir", +"rollup-plugin-postcss","@xmldom/xmldom","accessibility","res","argv","Node","Web","JSON","formatter","state","list", +"@inquirer/prompts","customization","uischema","renderengine","jsonforms","stdout","menu","esbuild-loader","css-in-js", +"babel-plugin-macros","sqlite","@aws-sdk/client-s3","tools","@types/sinon-chai","yup","contentEditable", +"@babel/plugin-transform-react-jsx","@web/test-runner-playwright","stylesheet","babel-plugin","transpiler", +"@types/lodash-es","@types/enzyme", +"astro","hast-util-from-html","xss","xmlbuilder","web3","validate-npm-package-name","underscore.string","unbuild", +"uglify-es","tslint-config-prettier","tar-fs","tapable","tailwind","strip-bom","statuses","socket.io-client","rsvp", +"rollup-plugin-typescript","rollup-plugin-sourcemaps","rollup-plugin-node-globals","recast","readline","react-dev-utils", +"rc-util","pump","plist","pinst","pino","path-is-absolute","pacote","opn","open-cli","object-inspect","nx","nprogress", +"node-sass","monitor","mobx","markdown-it-container","lodash.merge","karma-sinon","jest-worker","jackspeak", +"has-symbols","happy-dom","gulp-less","grunt-jscs","get-tsconfig","get-stdin","flux","fixturify","file-type","faucet", +"fast-check","eslint-plugin-jsonc","eslint-config-xo","eslint-config-react-app","eslint-config-oclif","es-check", +"encodeurl","download","detect-indent","dependency-check","css-minimizer-webpack-plugin", +"cookie-signature","conventional-changelog-conventionalcommits","consola","bunyan","boxen","babel-types", +"babel-plugin-transform-es2015-modules-commonjs","babel-plugin-external-helpers","axe-core","argparse", +"abort-controller","@npmcli/run-script","@jsonforms/core","@istanbuljs/nyc-config-typescript", +"@ckeditor/ckeditor5-widget","@ckeditor/ckeditor5-paragraph","@ckeditor/ckeditor5-link","decap-cms","web publishing", +"static site","antora","gallery","carousel","webdriverjs","runtime","scroll","reload","link","package.json","chrome", +"element","virtual","safe","@ungap/structured-clone","inline","make","concat","@modelcontextprotocol/sdk","parent","jpg", +"stub","pkg-pr-new","bin","bumpp","rules","hint","verify","eslintconfig","@ljharb/tsconfig","oxlint", +"safe-stable-stringify","@types/vinyl","unist-builder","gitlab","dev","collection","filesystem","is-path-inside", +"compare","batch","visualization","mocks","ponyfill","gzip", +"array-back","select","rm","std-env","@faker-js/faker","converter","pretty-hrtime","es2017","decode","number", +"asynchronous","hash","ajax","azure","http2","@types/tar","vue-tsc","job","archive","content","flags","react-ui","uikit", +"particle","jest-mock","aria-query","kcd-scripts","jest-image-snapshot","@types/warning","end-to-end","e2e", +"@size-limit/file","@storybook/addon-actions","Backend","@npmcli/package-json","@types/cors","modal","theme","stdin", +"interface","google","@types/ms","@typescript-eslint/types","installed-check","lightningcss","read-package-up", +"variables","custom","selector","sass-embedded","os-name","real-time","ot","operational transformation", +"package-manager-detector","markdown-it-attrs","luxon","jwt","scaffolding","core","@types/react-transition-group", +"@vitest/browser-playwright","tsparticles","icss-utils", +"hast-util-is-element","comma-separated-tokens","@mui/utils","zustand","anser","@testing-library/react-hooks", +"yeoman-generator","webpack-sources","vue-template-compiler","vows","untildify","uiw","uid-safe","typings","tiny-lr", +"time-grunt","test-runner","stylelint-order","stream-assert","ssri","shallowequal","seedrandom","rewire", +"react-lifecycles-compat","rc","raw-body","qunitjs","qrcode-terminal","property-information","power-assert", +"postcss-safe-parser","postcss-nested","postcss-flexbugs-fixes","polished","performance-now","os","object-keys", +"normalize-path","node-notifier","node-html-parser","mz","multimatch","multer","mockery","mock-stdin","mock-require", +"mlly","micromark","matcha","loose-envify","loglevel","log-update","lodash.template","lerna","karma-detect-browsers", +"karma-browserstack-launcher","jest-canvas-mock","ionic","html-to-text","html-minifier","html-loader","history", +"hast-util-to-html","hallmark", +"gulp-typescript","gulp-sass","gulp-postcss","grunt-simple-mocha","grunt-conventional-github-releaser", +"grunt-auto-release","glob-parent","follow-redirects","flat","firebase","findup-sync","find-cache-dir", +"eslint-remote-tester","eslint-plugin-testing-library","eslint-plugin-eslint-comments","eslint-config-xo-lass", +"eslint-config-unjs","es5-shim","es5-ext","es-value-fixtures","ember-cli","eclint","duplexer","dumi","dot","docco", +"dirty-chai","depcheck","connect-history-api-fallback","columnify","cli-color","changelogen","change-case","busboy", +"bundle-collapser","builtin-modules","brfs","bcrypt","basic-auth","babel-template", +"babel-plugin-transform-class-properties","async-retry","async-listen","apidoc","ansis","acorn-walk", +"@sveltejs/vite-plugin-svelte","@ckeditor/ckeditor5-table","@ckeditor/ckeditor5-paste-from-office", +"@ckeditor/ckeditor5-media-embed","@ckeditor/ckeditor5-indent","@ckeditor/ckeditor5-essentials", +"@ckeditor/ckeditor5-easy-image","@ckeditor/ckeditor5-ckfinder","@ckeditor/ckeditor5-ckbox", +"@ckeditor/ckeditor5-block-quote","@ckeditor/ckeditor5-basic-styles","@ckeditor/ckeditor5-autoformat", +"@ckeditor/ckeditor5-adapter-ckfinder","es-module-lexer","tslint-eslint-rules","selectors","flow-copy-source", +"@types/selenium-webdriver", +"monitoring","microservice","document","word","make-fetch-happen","phone","interactive","internationalization","next.js", +"agent","attribute","mdast-util-mdx-jsx","@types/ungap__structured-clone","streaming","sprite","linux","min","minipass", +"get","fake","deployment","deploy","tap-parser","sanitization","from","@types/babel__code-frame", +"eslint-plugin-import-x","@changesets/changelog-github","export","doctrine","expression","has","sort-package-json", +"installer","editorconfig","proper-lockfile","expand","drop","JavaScript","all-contributors-cli","@vue/compiler-sfc", +"key","assign","eslint-plugin-yml","arguments","sort","pad","optimisation","optimizer","spawn","@types/bun","qrcode", +"cookies","defu","emit","normalize","multiline","language","@types/react-is","domhandler","pkg-types","graphics", +"call-bound","es", +"equal","acorn-jsx","broccoli-plugin","asset","promises-aplus","write","hmr","platform","di","model", +"babel-plugin-transform-replace-object-assign","memoizee","package-json","commit","babel-minify","cli-progress", +"env-paths","remark-stringify","client-side","flow","nestjs","blockchain","@types/pluralize","estree-util-to-js", +"react.js","uiw-react","extension","jose","animated","webdesign","web-design","particles.ts","particles-ts", +"particles-js","xparticles","jsparticles","particles","particles.js","password","img","images","istanbul-lib-report", +"web components","sade","xhr-mock","lz-string","jest-axe","@types/jquery","@types/jest-axe","web-components", +"@vueuse/core","@storybook/addon-essentials","upath","inspect","grid","remark-toc","remark-github","management", +"command line","oclif","Cypress","Jest","React","Angular", +"readme","spy","prism-react-renderer","notification","@jest/transform","@swc/cli","wrap","confirm","base","ask", +"@ctrl/tinycolor","@types/jsonwebtoken","REST","@wojtekmaj/enzyme-adapter-react-17","stylis","sitemap","@types/shelljs", +"bundlewatch","decache","collaborative","collaboration","p-limit","mri","@babel/runtime-corejs3", +"@typescript-eslint/scope-manager","stringifier","@types/bytes","@sindresorhus/slugify","harmony", +"@jridgewell/remapping","import-meta-resolve","ant","metro-react-native-babel-preset","material","@standard-schema/spec", +"@jridgewell/sourcemap-codec","@types/react-copy-to-clipboard","@types/react-test-renderer","borp","@inquirer/type", +"pinia","@mui/types","vuepress","ink-docstrap","enzyme-to-json","csso","css.escape","browserstack","yo","xlsx", +"write-file-atomic","winston-transport","webpack-node-externals","webpack-dev-middleware","wd","vuex","vinyl-buffer", +"validate-commit-msg","utf8","unzip","throttle-debounce","testdouble","systemjs","stylus-loader", +"snazzy","serve-favicon","sanitize-html","run-series","rollup-plugin-node-builtins","rfdc","request-promise", +"replace-in-file","remark-preset-github","rehype-autolink-headings","read-pkg","react-intl","random-words","protobufjs", +"promises-aplus-tests","promise-polyfill","postcss-custom-properties","passport","pako","object-hash","oas","npmcli", +"npm-registry-fetch","npm-packlist","nodemailer","needle","mysql2","mssql","mock-property","mocha-headless-chrome", +"memorystream","lws","lodash.throttle","lodash.memoize","lodash.isequal","lodash.defaults","lodash.camelcase","listr2", +"karma-qunit","karma-edge-launcher","jest-resolve","jade","itwcw-package-analytics","isobject","is-promise", +"is-installed-globally","ionicons","import-local","image-size","hoek","hast-util-select","hast-util-raw", +"gulp-autoprefixer","grunt-saucelabs","get-package-type","gaze","fuzzy","fuse.js","functions-have-names","fs-jetpack", +"front-matter","fork-ts-checker-webpack-plugin","fixpack","figlet", +"fbjs","fast-xml-parser","eventemitter2","eslint-plugin-es5","eslint-loader","eslint-config-semistandard","es6-shim", +"envinfo","end-of-stream","emotion","dom-helpers","docusaurus","detect-port","deep-extend","decamelize","debounce", +"dateformat","dargs","cucumber","crypto-browserify","cli-cursor","clear-module","clean-webpack-plugin", +"case-sensitive-paths-webpack-plugin","buffer-equal","bson","broccoli-test-helper","blanket","base64-js", +"babel-preset-react-app","babel-plugin-transform-es2015-template-literals","babel-plugin-transform-es2015-block-scoping", +"babel-plugin-lodash","babel-plugin-dynamic-import-node","babel-helper-fixtures","array.prototype.flatmap", +"@vue/eslint-config-typescript","@microsoft/tsdoc","@emotion/styled","@csstools/css-tokenizer", +"@csstools/css-parser-algorithms","@ckeditor/ckeditor5-upload","antora-component","tablet","netlify","lightbox", +"serverless","@types/serve-handler","mvc","watchpack","remark-plugin","abstract","react-native-builder-bob", +"use-sync-external-store","hot","csswg","graceful","concurrency","resolve.exports","registry","fastest-levenshtein", +"trim","unix","clang-format", +"stacktrace-parser","pipe","rule","decorator","mongodb-memory-server","micro","ipaddr.js","dir","micromark-util-types", +"emoji","is-docker","monorepo","sql","resize","vanilla","driver","cluster","routing","l10n","screenshot","vdom","zwitch", +"unist-util-position","neo-async","retina","postcss-runner","csslint","connect-livereload","wget","curl","globbing", +"wildcard","chai-string","tsconfig","errors","wrapper","rollup-plugin-serve","walking","look","worker","detect-libc", +"dequal","setimmediate","protocol","human","babel-plugin-transform-define","@vercel/ncc","kind-of","authn", +"eslint-remote-tester-repositories","@webpack-contrib/defaults","confusing-browser-globals","es2016","extensions", +"tmp-promise","exe","@types/through2","@eslint/core","ts-jest-resolver","filenamify","class","bitbucket","cms","docker", +"walk-back","Node.js","@eslint/json","packages","unused","cleanup","prop","keys","obj","jsonc-eslint-parser","throttle", +"executable","minimize","rolldown-plugin-dts","@swc-node/register","@mdn/browser-compat-data","cpy","load","sourcemap", +"tempfile","conventional","cson","indent","options","column","codecov.io","width","spinner","address","case","caching", +"multipart","@rollup/plugin-buble","browsers","sync","box","marked-terminal","foreach","addon","websockets", +"microservices","speed","injection","dependency","crypt","encryption","node-gyp-build","base64","grunt-template", +"@babel/plugin-proposal-nullish-coalescing-operator","es7","conventional-github-releaser","private","amazon","matcher", +"automatic","lockfile","audit","callback","object-is","flatten","lambda","appium","cursor", +"codes","jamstack","zx","@types/hosted-git-info","remark-directive","mdast-util-to-string","html2sketch","pkgroll", +"@tsconfig/node20","@rolldown/pluginutils","openapi-types","natural-compare","canvas-confetti","fireworksjs", +"confettijs","confetti-js","fireworks-js","fireworks","confetti","preactjs","particleground","angular-particles", +"ngx-particles","vue-particles","react-particles","react-particles.js","react-particles-js","particles-bg-vue", +"particles-bg","particlesjs","net","istanbul-reports","istanbul-lib-coverage","patterns","obug","mrmime","devalue", +"eslint-config","remark-preset-lint-recommended","dekko","@types/qs","scroll-into-view-if-needed","rc-motion", +"styleguide","locate-character","@storybook/react-webpack5","back-end","specification","req","@oclif/prettier-config", +"Testing","Front-end","Nest","gfm","cacache","git-url-parse","@mdx-js/mdx","helper","mdx","highlight","idle","busy", +"loading","strip-indent", +"renderer","snapshot","facebook","@jest/test-utils","webapp","@ionic/prettier-config","@ionic/eslint-config","zsh", +"question","promptly","iterm","answer","superstruct","comment-parser","@semantic-release/exec","variable","popup", +"dropdown","tooltip","@types/marked","dot-prop","turbo","@types/github-slugger","@types/sinonjs__fake-timers", +"string-argv","error-stack-parser","tokenizer","rollup-plugin-istanbul","karma-jasmine-html-reporter", +"opencollective-postinstall","color-convert","@ckeditor/ckeditor5-enter","@babel/plugin-transform-template-literals", +"@babel/plugin-transform-property-literals","@babel/plugin-syntax-import-assertions", +"@babel/plugin-transform-block-scoping","@babel/helper-plugin-test-runner","classes","transpile","@types/react-native", +"jsonml.js","sdk","stylelint-config-recommended","@types/classnames","@types/inquirer","oxfmt","valibot", +"hast-util-whitespace","@svgr/core","@pmmmwh/react-refresh-webpack-plugin","@next/env","synckit","wait-on","swr","yosay", +"yn","yamljs","xpath","xmlhttprequest","word-wrap","when","vue-style-loader","verror","vercel", +"utils-merge","user","url-join","typeorm","traverse","tildify","testcontainers","style-to-js","semistandard", +"sanitize-filename","retry","rehype-parse","recursive-readdir","rechoir","read-pkg-up","react-hot-loader","rc-tooltip", +"protractor","posthtml","postcss-modules-local-by-default","postcss-custom-media","pkg-dir","p-timeout", +"optimize-css-assets-webpack-plugin","npm-run-path","normalize.css","node.extend","mobx-react","method-override", +"memoize-one","make-node","long","log4js","lodash.debounce","lodash.assign","listr","lilconfig","latest-version", +"jasmine-node","jake","ioredis","interpret","inferno","import-fresh","imagemin","http-status-codes","hbs", +"hast-util-to-estree","hash-sum","hapi","gulp-plumber","gulp-load-plugins","gulp-clean","gts","grunt-contrib-cssmin", +"fsevents","faker","eslint-plugin-vitest","eslint-plugin-ava","eslint-config-oclif-typescript","eslint-config-google", +"envify","deep-eql","d3-scale", +"d3-array","csv-parse","csv-generate","cssesc","cross-fetch","create-react-class","connect-redis","cli-truncate","clear", +"child_process","chai-subset","chai-passport-strategy","bufferutil","broccoli-merge-trees","boom","bl","bignumber.js", +"backbone","babel-traverse","babel-plugin-transform-regenerator","babel-plugin-transform-async-to-generator", +"babel-plugin-syntax-jsx","babel-helper-plugin-test-runner","babel-generator","async-validator","apollo-link-http", +"apollo-client","apollo-cache-inmemory","adm-zip","@tsparticles/engine","@tinyhttp/app","@svgr/webpack", +"@reduxjs/toolkit","@oclif/core","@nx/eslint","@mswjs/interceptors","@microsoft/tsdoc-config","@inquirer/core", +"@emotion/css","@ant-design/web3-icons","@ant-design/web3-common","@angular/core","@angular/compiler-cli", +"@angular/compiler","netlify-cms","hex","apollo-link-context","@walletconnect/types","tsparticles-plugin","device", +"@phenomnomnominal/tsquery","@vue/devtools-api","@vue/shared","streamx","slideshow","jest-preset-stylelint", +"@polka/compression","empathic","@vitest/expect","tiny","clean-publish","string-hash","mouse","message", +"osx","spring","title","eslint-import-resolver-webpack","synchronous","vrsource-tslint-rules","gulp-clang-format", +"serialization","cssnano-utils","postcss-less","caniuse-api","postcss-reporter","npm-watch","pdfjs-dist","page", +"metadata","home","module-alias","script","run","mutate-fs","@types/ini","throat","fp","oauth2","@matteo.collina/tspl", +"postman","@types/proper-lockfile","@types/xml2js","@types/plist","then","dashboard","aws4","remark-preset-remcohaszing", +"ender","gulp-coveralls","reactive","ufo","mime-db","mdast-util-gfm","markdown-it-plugin","postcss-simple-vars", +"@types/which","sqlserver","math","update","defaults","stdlib","prettier-standard","oracledb","tedious","escalade", +"os-homedir","karma-preprocessor","current-module-paths","serial","@types/babel__traverse","@rspack/core", +"@types/escape-html","babel-plugin-annotate-pure-calls","braces","hybrid","@types/split2","@ionic/utils-fs", +"align","scalable","charset","iconv","localization","titleize","status","eslint-plugin-unused-imports","bunchee", +"rollup-plugin-polyfill-node","compressor","@types/source-map-support","abbrev","solid","typeof","grunt-contrib-qunit", +"yazl","stack","@types/fancy-log","vinyl-file","stream-combiner2","index","istanbul-coveralls","stat","gulp-plugin", +"spritesheet","spritesmith","preprocess","notify","report","grunt-istanbul","grunt-coveralls","hooker","site","uri", +"@sindresorhus/is","@types/yargs-parser","spreadsheet","typed","onetime","tcp","yeoman-assert","yeoman-test", +"monaco-editor","create","mkdir","mini-svg-data-uri","remote","tasks","ssh","devops","lightweight", +"rollup-plugin-livereload","nested","detect-newline","triple-beam","proxy-agent","@electric-sql/pglite","@types/request", +"google-auth-library","look-up","up","unicorn-magic","symbols", +"loader-runner","transformer","@types/node-forge","fork","is-in-ci","stream-spec","it-is","nano-spawn","@types/stylus", +"eslint-plugin-node-dependencies","eslint-import-resolver-node","@tsconfig/node16","style linter","style checker", +"standard style","policy","code standards","code linter","code checker","JavaScript Standard Style", +"eslint-config-xo-space","jslint","yorkie","characters","set","promisify","object.fromentries","object.values", +"ember-cli-dependency-checker","email","eslint-plugin-json","wonderful-fetch","bundler","setup","pkg","pack","gulp-tap", +"karma-sinon-chai","richtext","webpack-stream","repository","to-vfile","filepath","jsdoc3","@ffmpeg-installer/ffmpeg", +"productivity","stl","datastructure","range","timeout","time-span","in-range","rmdir","destroy","values", +"npm-package-json-lint-config-default","eslint-plugin-perfectionist","eslint-plugin-no-only-tests","d3-module","id", +"guid","tokens","CSS","cssnano-preset-default", +"webpack-plugin","postcss-modules-scope","postcss-modules-extract-imports","order","scale","crop","postcss-url", +"data-uri-to-buffer","ES2017","ES2015","move","transfer","source","normalize-package-data","eta","is-unicode-supported", +"settings","conf","buffer-from","brotli","deflate","on-headers","emitter","single","multi","chalk-template","growl", +"string-length","toggle","opts","ci","vfile-message","jsonlint","whatwg-mimetype","@rollup/plugin-inject","scule", +"chai-plugin","camel-case","foreground-child","byte","mv","@clack/prompts","names","baseline-browser-mapping", +"coffeeify","timers-browserify","stream-browserify","querystring-es3","string_decoder","duplexer2","defined", +"mocha-eslint","fs-tree-diff","heimdalljs","browserify-transform","@astrojs/check","future","d3-color","c++","c", +"global-modules","ansi-to-html","qunit-extras","authorization", +"esutils","babel-preset-flow","babel-plugin-transform-es2015-spread", +"babel-plugin-transform-es2015-shorthand-properties","babel-plugin-transform-es2015-parameters", +"babel-plugin-transform-es2015-destructuring","babel-plugin-transform-es2015-computed-properties", +"babel-plugin-transform-es2015-classes","babel-plugin-transform-es2015-arrow-functions","babel-plugin-tester", +"@babel/plugin-proposal-function-bind","eslint-config-babel","formdata-node","concurrent","temp-dir","prefix","change", +"@types/tap","asserts","has-strict-mode","es-abstract","define-properties","apm","@opentelemetry/sdk-trace-base", +"zen-observable","programmatic","@types/css-tree","mermaid","webpackbar","@vue/vue3-jest","sequence","component library", +"silent-error","get-caller-file","fullstack","negotiator","signal","git-repo-info","umi","sucrase", +"mdast-util-find-and-replace","file-system-cache","estree-util-visit","codesandbox","@umijs/utils","@umijs/core", +"@umijs/bundler-utils","ajv-keywords","babel-plugin-react-compiler","avif","webp","ast-types", +"@types/hoist-non-react-statics","estree","@typescript-eslint/typescript-estree","@typescript-eslint/rule-tester", +"mdast-util-mdx","@eslint-community/regexpp","header","rollup-plugin-filesize","istanbul-lib-source-maps","widget", +"collections","vite-plugin", +"@types/cookie","@svitejs/changesets-changelog-github-compact","@stylistic/eslint-plugin-js","@ava/typescript", +"@types/tinycolor2","vanilla-jsoneditor","stylelint-declaration-block-no-ignored-properties","remark-lint", +"react-fast-marquee","rc-tween-one","jest-puppeteer","fetch-jsonp","@types/jest-image-snapshot","rc-tree","rc-tabs", +"style guide","@storybook/icons","esbuild-register","is-reference","slice","@storybook/addon-interactions", +"eslint-plugin-storybook","interfaces","console-control-strings","gauge","babel-preset-minify","specs","specifications", +"stack-utils","otterhttp","esno","@types/supports-color","@types/pnpapi","@types/ejs","@oclif/test","@types/proxyquire", +"tcp-port-used","@zkochan/js-yaml","libnpm","ethereum","@headlessui/react","express-fileupload","strict-event-emitter", +"design system","@types/aws-lambda","@rushstack/heft","serializer","picker","indicator","mocking","jest-validate", +"@istanbuljs/schema","pwa","@rollup/plugin-virtual","inquire","answers","mute-stream","class-validator","boilerplate", +"popover","@floating-ui/dom","JSON-Schema","license-checker","@types/webpack-env", +"@types/styled-components","@types/lunr","@cypress/webpack-preprocessor","mark.js","@emotion/is-prop-valid", +"@emotion/cache","@emotion/serialize","@dnd-kit/utilities","@dnd-kit/sortable","@dnd-kit/core","@types/express-session", +"workerpool","selfsigned","threads","eslint-formatter-pretty","markdown-it-testgen","@types/markdown-it-attrs", +"ts-dedent","quick-lru","markdown-it-sup","chai-exclude","@types/progress","@types/luxon","has-ansi","vars","matches", +"clean-css-cli","@docsearch/js","polka","vue.js","@ckeditor/ckeditor5-undo","user interface", +"@fortawesome/fontawesome-free","transport","stylelint-config-standard-scss", +"@babel/plugin-transform-member-expression-literals","@babel/plugin-proposal-private-property-in-object", +"@babel/plugin-transform-private-methods","@babel/plugin-transform-arrow-functions","derequire", +"babel-plugin-polyfill-regenerator","babel-plugin-polyfill-corejs3","asyncapi","blog","@vue/server-renderer", +"markdown-it-abbr","@babel/helper-compilation-targets","@babel/helpers","@babel/helper-validator-identifier","js-tokens", +"@types/set-cookie-parser","set-cookie-parser","@ant-design/icons","react native","@ant-design/tools", +"eslint-plugin-cypress","react-draggable","sass-true","tsconfck","devDependencies","unplugin","css-what","@appium/types", +"@floating-ui/react", +"colord","@applitools/utils","widest-line","wait-for-expect","react-popper","react-fast-compare", +"postcss-modules-values","nth-check","inferno-vnode-flags","docsify-cli","docsify","color-string","client-only", +"@vuepress/shared-utils","@docusaurus/core","perfect-scrollbar","react-textarea-autosize","@enact/core", +"supports-hyperlinks","zone.js","webpack-manifest-plugin","webpack-hot-middleware","useragent","twitter", +"tribe-leaving-basket","traffic-carry-opinion","tinyspy","throw-did-darkness4","testcafe","tailwind-merge", +"swam-darkness-weak","svg-sprite","svelte-preprocess","svelte-check","surrounded-characteristic-or-rain", +"support-vessels-web3-vessels","supervisor","sun-grass-circle0","stylelint-scss","stock-independent-balloon", +"star-location","ssh2","sprintf-js","spirit-labor-cheese","speech-section-part-frozen","slug","slice-ansi", +"sky-buy-web3-rock","sink-rod-lamp","similar-cheese-loss","sick-typical-court7","sha1","serialport", +"science-knowledge-truth","rtlcss","resolve-url-loader","reselect","require-dir","remark-html","rehype-slug", +"react-toastify","react-styleguidist","react-intersection-observer","react-dnd-html5-backend", +"react-dnd","react-color","react-app-polyfill","publish-please","prettyjson","prettier-plugin-jsdoc","prepare-package", +"postcss-discard-comments","postcss-calc","political-plan-careful","pitch-somehow-earth-brave","phonegap", +"passport-strategy","outline-slowly","one-how-hand","observe-food-motion-hidden","numeral","nsp","npmlog","node-pty", +"node-emoji","nine-yes-merely6","nightwatch","nails-wild-interest-garden","mud-slowly-five3","mqtt", +"movie-obtain-tail-prepare","missing-sport-living","metalsmith","memcached","mdn-data","matter-view-web3-fence", +"markdown-to-jsx","many-favorite6","manifest","luck-rubber-do","lodash.uniq","level","lead-alike-web3-applied", +"late-dress-mail5","language-perfectly-blow-series","label-lungs-court4","koa-compose","known-css-properties","keyv", +"keypress","karma-phantomjs-launcher","jwt-decode","jsonfile","json-stable-stringify","js-cookie","jodit", +"isomorphic-fetch","ip","http-proxy-middleware","http-proxy-agent","html-escaper","html-dom-parser", +"hit-running-special8","hast-util-to-text","has-parts-ice-fact","hard-cool-rhythm-continued","gulp-watch","gulp-newer", +"gulp-flatten","grunt-sass","graph-these","gentle-party-other","extend-shallow","excellent-difficult-good", +"eslint-plugin-svelte","eslint-plugin-sonarjs","escodegen","difference-mile-pocket5","did-enter-lay","depth-clay-tax7", +"decompress","dance-you-thou","d3-shape","crypto-js","croner","cookie-session","command-line-usage","command-line-args", +"cli-spinners","cli-boxes","chance-able-necessary-bell","caught-brain-service0","careful-faster-dirty-matter", +"browserify-shim","brought-tried-whether8","broccoli-funnel","branch-camera-web3-organization","bn.js", +"blockchain-happily","blockchain-egg","blockchain-directly","blockchain-closely","blockchain-back1","blockchain-baby", +"blockchain-am5","bfj","between-cry-additional","best-valley2","best-lips-shoulder","believed-usually-greater-passage", +"bcryptjs","base-individual-comfortable-crop","babel-preset-stage-3","babel-preset-stage-2", +"babel-helper-vue-jsx-merge-props","atob","assert-plus","arrangement-tell-arrange","apple-transportation-web3-locate", +"app-root-path","amqplib","although-line-wall-corn","@storybook/addon-docs","@oclif/plugin-help","@mdx-js/react", +"@fortawesome/free-solid-svg-icons","@fortawesome/fontawesome-svg-core","@emotion/babel-plugin", +"@csstools/selector-specificity","@adobe/css-tools","@angular/forms","@angular-devkit/schematics", +"@applitools/logger","@types/pg","openai","ai","@trpc/server","expressive-code","@arethetypeswrong/core", +"visual regression","test automation","applitools","@theuiteam/lib-builder","@codecov/vite-plugin","react-native-svg", +"replacement","@walletconnect/utils","parcel-bundler","accessible","intlayer","fs-fixture","preview", +"@storybook/addon-a11y","katex","rollup-plugin-vue","@vitejs/plugin-react-swc","@types/webpack-bundle-analyzer", +"@yeoman/adapter","unminified-webpack-plugin","fflate","break","RFC-6455","chart","sauce-connect-launcher", +"@oxc-project/types","postcss-modules","strip-literal","viewer","sanitisation","user-agent","bail","hookable", +"material-design","eslint-config-xo-typescript","dprint","testcafe-reporter-xunit","es8","chroma-js","telegram","swipe", +"playwright-chromium","stylelint-plugin","utf-8-validate","korean","japanese","chinese","cjk","full","visual", +"@storybook/blocks","@discoveryjs/json-ext","bundle-require","@vitest/mocker","encrypt","favicon","fast-safe-stringify", +"p-retry","RxJS","Rx","server-only","async-sema","@types/ua-parser-js","@types/text-table", +"@types/express-serve-static-core","@types/babel__generator","sourcemap-validator","fast-copy","deep-copy","shutdown", +"cls-hooked","hast-util-from-html-isomorphic","snapshot-fixtures","eslint-config-remcohaszing","composition", +"tiny-invariant","toast","multiselect","premove","@react-native/eslint-config","transition","dialog","observer", +"eslint-plugin-jest-dom","live","form-validation","@babel/plugin-proposal-do-expressions","chai-spies","rc-test", +"@rc-component/father-plugin","words","curried","danger","exception","humanized","postcss-syntax","flex", +"@csstools/cascade-layer-name-parser","@types/caniuse-api","@csstools/utilities","strong-pm","pino-pretty","fastbench", +"babel-plugin-transform-inline-environment-variables","server-side","aria","ratelimit","scrollbar","tmpdir","urls", +"default","xdg","start","launch","ES8","Object.keys","oai","openapi document","openapi spec","openapi specification", +"openapi initiative", +"apis","@readme/oas-examples","typescript-json-schema","@types/update-notifier","jQuery","rfc4122","iot","container", +"jsdom-global","devtools-protocol","enqueue","profiling","@aws-sdk/s3-request-presigner","double","email-validator", +"@esm-bundle/chai","basic-auth-connect","distributed","pidtree","sorted","efficient","tiny-glob", +"micromark-extension-gfm","decode-named-character-reference","checksum","markup","esbuild-plugin-umd-wrapper","heading", +"emoticon","anchor","context","eslint-config-next","baas","mdast-util-to-markdown","SVG","bar","lock","resolve-pkg", +"faye-websocket","edit","algorithm","fast-levenshtein","run-parallel","less.js","multi-package", +"conventional-changelog-angular","conventional-recommended-bump","set-blocking","route","body","analysis","smol-toml", +"better-sqlite3","pg-connection-string","lru","timekeeper","keyboard","karma-adapter","lie","stable","cssom", +"decimal.js","package-directory","grunt-exec", +"grunt-compare-size","rte","contenteditable","rich text editor","rich editor","preact-render-to-string", +"@types/babel__template","pnp","plugnplay","web-vitals","eslint-webpack-plugin","@jest/environment-jsdom-abstract", +"@jest/environment","jasmine-reporters","esmock","is-object","@types/svgo","@types/elementtree","@ionic/utils-terminal", +"@ionic/utils-array","elementtree","telephone","react-devtools-core","user interfaces","inferno-shared","lazy", +"resolution","spawn-sync","safer-buffer","globalization","translation","singularize","dasherize","plural","singular", +"duplex","plain","void","tags","uglifier","packer","relateurl","unescape","pojo","@size-limit/preset-big-lib", +"util-deprecate","mdast-util-mdxjs-esm","raw","flag","elements","bounce","remark-lint-unordered-list-marker-style", +"remark-lint-table-pipes","remark-lint-table-cell-padding","remark-lint-strong-marker","remark-lint-rule-style", +"remark-lint-no-heading-content-indent","remark-lint-no-duplicate-definitions","remark-lint-fenced-code-marker", +"remark-lint-emphasis-marker","remark-lint-definition-case","remark-lint-code-block-style", +"remark-lint-checkbox-content-indent","remark-lint-checkbox-character-style", +"remark-lint-blockquote-indentation","zlib","beeper","array-differ","uncss","@types/through","source maps","hook-std", +"measure","sourcemaps","sort-keys","restart","kew","has-gulplog","gulplog","scripts","inject","@types/gulp","htmlmin", +"stream-to-array","jsftp","prettify","relative","include","from2-string","utf-8","codegen","transformation","pipeline", +"@types/write-file-atomic","grunt-mocha-cli","sauce-tunnel","libsass","notify-send","newer","release","temporary", +"@graphql-tools/schema","@types/ncp","ky","eslint-config-standard-with-typescript","gitignore","globs","hook", +"eslint-config-tschaub","dir-compare","iterator","socket","ie","mac","klaw","universalify","conditional","tsdx", +"browserify-istanbul","sysadmin","fault tolerant","lolex","prettier-plugin-tailwindcss","inference","byline", +"zod-to-json-schema","async-lock","admin", +"@fastify/busboy","locate-path","otp","epub","bmp","photo","picture","uint8array-extras","blob","symbol","colorpicker", +"array.prototype.map","babel-plugin-styled-components","autocannon","ajv-i18n","parse-node-version","@types/yauzl", +"endpoint","handler","@docusaurus/preset-classic","token","automatically","merge-descriptors","yoctocolors","subscribe", +"emits","ubelt","eval","karma-tap","xml-name-validator","find-up-simple","@types/less","scslre","refa", +"@tsconfig/strictest","axobject-query","vite-plugin-eslint4b","eslint-plugin-json-schema-validator","env-cmd", +"@ota-meshi/site-kit-eslint-editor-vue","@ota-meshi/eslint-plugin","open-editor","json-schema-to-typescript", +"jsdoc-type-pratt-parser","typescript-eslint-parser","npm-which","array-includes","@types/eslint-scope", +"@types/lodash.memoize","eslint-typegen","strict","es2018","airbnb","babel-tape-runner","imurmurhash","esquery", +"regular","@types/isarray","string.prototype.trim","info","safe-regex-test","eslint-plugin-qunit","loader.js", +"ember-cli-inject-live-reload", +"broccoli-babel-transpiler","release-plan","eslint-plugin-chai-expect","heimdalljs-logger","ensure-posix-path", +"console-ui","broccoli-stew","broccoli-source","broccoli-debug","broccoli-concat","launch-editor-middleware", +"babel-plugin-transform-vue-jsx","grunt-banner","packager","@electron/get","grunt-webpack","grunt-run","apache", +"iteration","tsutils","parcel","just-extend","eslint-config-fbjs","dox","simple-update-notifier", +"karma-html2js-preprocessor","open source","imagemin-jpegtran","imagemin-svgo","tunnel","dependency-cruiser", +"@grpc/grpc-js","rpc","dnd","bot","OOP","Collections","Collection","STL","System.Collections.Generic", +"Python collections","c++ std","c++ stl","java.util","esmodule","UMD","CommonJS","DataStructures","DataStructure", +"in data structure","in data structures","data-structures","datastructures","data structures","data-structure", +"data structure","structures","sorting","traversal","edge","type script","java script","patch","tshy-after", +"space","is-core-module","random-int","rmrf","directories","folders","which-typed-array","is-regex","lcov-result-merger", +"debugger","rate","limited","gzip-size-cli","typedoc-plugin-missing-exports","jscodeshift","bun","nuxt","tailwind css", +"d3-time-format","d3-time","request-progress","hasha","ansi-html","serialize-error","stacktrace-js","duration","csrf", +"@domenic/eslint-config","lexer","boolbase","functions","@rollup/plugin-dynamic-import-vars","flatted", +"fast-json-stable-stringify","execute","path-key","zoom","jsr","@stryker-mutator/core","schedule","optimization", +"stream-array","http2-wrapper","contents","file-system","Observable","ES2016","ES7","ES5","@types/serialize-javascript", +"preset","@types/normalize-package-data","session","persistent","persist","eslint-config-flat-gitignore", +"@types/shell-quote","listener","typical","wcwidth","@codemirror/language","@codemirror/commands","@codemirror/state", +"@codemirror/view", +"ignore-walk","@yarnpkg/fslib","limit","lerna-changelog","tabular","spinners","prettier-elastic", +"github-release-from-cc-changelog","git-list-updated","eslint-config-medikoo","@ckeditor/ckeditor5-theme-lark", +"@types/faker","scraper","htmlparser","@types/whatwg-mimetype","domutils","charts","param-case","contains","assertions", +"graphic","prebuild-install","support","pascal-case","dash","bind","call","get-intrinsic","ttl","@vitest/spy", +"@babel/plugin-syntax-typescript","profiler","bump","flexbox","arraybuffer","window","make-generator-function", +"browser-unpack","constants-browserify","https-browserify","browserify-zlib","tty-browserify","domain-browser", +"vm-browserify","os-browserify","stream-http","border","@astrojs/markdown-remark","@astrojs/mdx","@types/mime", +"deferred","loop","block","falafel","buffers","@types/readable-stream","@umijs/fabric","@storybook/addon-knobs", +"isomorphic","universal","resolve-package-path","concat-with-sourcemaps","beautify","prebuildify", +"sinatra","@types/validator","@babel/plugin-proposal-private-methods","babel-plugin-transform-es2015-typeof-symbol", +"babel-plugin-transform-es2015-modules-umd","babel-plugin-syntax-trailing-function-commas", +"babel-plugin-check-es2015-constants","@babel/plugin-proposal-optional-catch-binding", +"@babel/plugin-proposal-numeric-separator","prettier-eslint-cli","@babel/preset-stage-0","test-exclude", +"istanbul-lib-instrument","babel-plugin-transform-export-extensions","babel-helper-transform-fixture-test-runner", +"babel-messages","babel-code-frame","v8flags","@rollup/plugin-multi-entry","abortcontroller-polyfill","axe", +"eslint-plugin-mocha-no-only","conventional-commits-parser","css-selector-parser","clean-jsdoc-theme","grunt-babel", +"dynamodb","sns","hash-test-vectors","generators","resolve-cwd","memoize","@vercel/nft","sync-exec","is-builtin-module", +"auto","eslint-plugin-prefer-arrow","unit testing","is-buffer","es-shim API","@es-shims/api", +"@babel/plugin-syntax-class-properties","constructs","@opentelemetry/resources","@types/bluebird","@appium/tsconfig", +"portscanner","root","symbol-observable","ts-invariant","apollo-utilities","notifications","portable","klaw-sync", +"unzipper","remark-lint-no-undefined-references","@ianvs/prettier-plugin-sort-imports","@codesandbox/sandpack-react", +"@antfu/eslint-config","@types/adm-zip","@types/pngjs","antd-style","p-all","merge2", +"colorful","ali-oss","@vitejs/plugin-vue-jsx","screen","script-loader","denodeify","tsify","require-from-string", +"humanize-duration","weigh-flew-web3-farm","warn-clothing-whose0","typical-recall-industry-exchange", +"trunk-darkness-believed-corner","truck-hospital-equator-hurt","supper-term-including-snake","speed-wing-eat", +"sentence-won-little-western","product-slight-adult-settlers","office-deal-mostly1","information-fruit-web3-perfect", +"grass-dollar-crew-floating","face-eventually-bound","crop-birthday-web3-children","coach-organized-notice", +"bow-swam-troops-care","delayed","control","rollup-plugin-node-externals","controller","cancel","dts-bundle-generator", +"@mysticatea/eslint-plugin","oracle","decentralized","cryptography","static site generator","highlight-words-core", +"@umijs/plugins","@umijs/lint","@types/lodash.throttle","@types/highlight-words-core","dumi-assets-types", +"v8-compile-cache","rehype-remove-comments","react-simple-code-editor","prism-themes","heti","dumi-afx-deps", +"animated-scroll-to","@makotot/ghostui","@ant-design/icons-svg","swagger-parser","lit","json-schema-to-ts","button", +"tsc-alias","micromark-extension-mdxjs","@typescript-eslint/type-utils","ts-api-utils","proxy-addr","regexparam", +"jest-matcher-utils","rollup-plugin-delete","redent", +"jest-in-case","@types/aria-query","@types/content-type","pubsub","shadow dom","custom elements","tsc","@napi-rs/cli", +"@swc/types","webpack-loader","@types/connect","esm-env","tsconfig-paths-webpack-plugin","string.prototype.matchall", +"async-mutex","stylelint-config-rational-order","stylelint-config-prettier","react-sticky-box","react-resizable", +"react-infinite-scroll-component","react-highlight-words","rc-virtual-list","rc-footer","jsonml-to-react-element", +"antd-token-previewer","antd-img-crop","@types/throttle-debounce","@types/react-highlight-words", +"@types/jest-environment-puppeteer","@types/gtag.js","@qixian.cs/github-contributors-list","@emotion/server", +"@babel/eslint-plugin","qrcode.react","@ant-design/colors","@sinonjs/eslint-config","@sinonjs/commons","fastify-plugin", +"@scalar/core","@scalar/build-tooling","@tailwindcss/vite","@types/mkdirp","reducer","widgets","google-closure-compiler", +"@webcomponents/webcomponentsjs","quibble","global-jsdom","git-cz","eslint-plugin-chai-friendly", +"commit-and-tag-version","@types/nock","@types/http-proxy","header-range-parser","madge","fancy-test", +"@oclif/plugin-plugins","similarity","innertext","@npmcli/promise-spawn","workspaces","@npmcli/mock-registry", +"walk-up-path","npm-pick-manifest", +"@npmcli/redact","@npmcli/installed-package-contents","@types/bn.js","hardhat","ethers","hast-util-heading-rank", +"react-helmet-async","@mdx-js/loader","socket.io-parser","@types/superagent","AWS Lambda","AWS","Framework","Serverless", +"Middleware","Lambda","tsdoc-build-rig","dts","declaration","TSDoc","JSDoc","@microsoft/api-documenter","styling", +"react-hooks","calendar","tasklist","multipipe","@types/object-hash","jest-config","@jest/test-result", +"progressive web app","capacitor","scaffolder","hyper","@types/mute-stream","@inquirer/ansi","vite-tsconfig-paths", +"vest","typanion","effect","class-transformer","ajv-errors","@hapi/lab","@hapi/code","@hapi/accept", +"remove-files-webpack-plugin","@docusaurus/utils","fontawesome","use-isomorphic-layout-effect","OpenAPI", +"@types/mark.js","swagger2openapi","@definitelytyped/dtslint","find-root","@emotion/hash","@types/lodash.camelcase", +"@tsconfig/node22","mixin","@dnd-kit/modifiers","@types/formidable","@types/tar-stream","@types/chalk", +"@types/json-stringify-safe","@octokit/core", +"generated","discord","@discordjs/collection","terminal-link","jest-serializer-html","markdown-it-deflist", +"@types/mock-fs","stream-to-string","genversion","stylelint-config-twbs-bootstrap","karma-coverage-istanbul-reporter", +"hammer-simulator","actor","graph","@commitlint/types","@ckeditor/ckeditor5-editor-multi-root", +"@ckeditor/ckeditor5-font","@ckeditor/ckeditor5-editor-balloon","@ckeditor/ckeditor5-integrations-common", +"ckeditor5-dll","feed","rollup-plugin-peer-deps-external","swagger-ui-dist","markdown-it-task-lists", +"@apidevtools/json-schema-ref-parser","clone-deep","@babel/plugin-transform-react-display-name", +"@babel/plugin-transform-nullish-coalescing-operator","@babel/plugin-transform-async-generator-functions", +"@babel/plugin-transform-exponentiation-operator","@babel/plugin-transform-export-namespace-from", +"@babel/plugin-transform-object-rest-spread","@babel/plugin-transform-class-static-block", +"@babel/plugin-syntax-import-attributes","@babel/plugin-transform-modules-amd","@babel/plugin-transform-classes", +"@babel/plugin-transform-for-of","@babel/helper-validator-option","core-js-compat","object.getownpropertydescriptors", +"@babel/plugin-syntax-decorators","@web/dev-server","lit-html","jekyll","zod-validation-error","@iarna/toml", +"@babel/helper-fixtures","@types/convert-source-map","@babel/plugin-syntax-flow","@babel/template", +"fs-readdir-recursive","sveltekit","@sveltejs/package","@auth/core","@types/lodash.mergewith","react-native-web", +"lodash.mergewith","xhr2","kit","cdk","@types/react-router-dom","@types/react-redux","chrome-launcher","@appium/logger", +"@appium/support","shadcn","@csstools/css-color-parser","@inquirer/confirm","@inquirer/figures","@csstools/css-calc", +"embla-carousel","lefthook","remeda","pagefind","gulp-jsdoc3","eslint-plugin-react-refresh","cssfilter", +"@expressots/shared","webdriver-manager","vitefu","html-void-elements","escape-goat","character-entities-legacy", +"character-entities","broccoli","@vuepress/plugin-search","@vuepress/plugin-register-components","@vuepress/markdown", +"@antora/logger","@mantine/store","fontsource","sortablejs","void-elements","yeoman-environment","xml2json","wrench", +"world-toy-kill","workbox-webpack-plugin","vue-i18n","vue-class-component","vhost","vasync","urllib","url-parse", +"ultrahtml","typescript-formatter","turndown","tocbot","tinypool","tinymce","testem","systeminformation", +"swagger-autogen","superjson","stylehacks","styled-jsx","style-to-object","stripe","stringify-entities", +"stream-transform","statsd","stack-trace","soap","showdown","shinning-continued-becoming","salt-type-oldest-faster","rx", +"rehype-raw", +"recompose","recently-building-save","react-tools","react-scripts","react-responsive","react-property","react-icons", +"react-hook-form","react-helmet","react-docgen","rc-slider","randombytes","query-string","qr-image","prisma", +"postcss-normalize","postcss-nesting","postcss-html","postcss-custom-selectors","popper.js","pnpm","phantom", +"passport-oauth2","osenv","optionator","nvm","npm-check-updates","node-watch","node-schedule","node-mocks-http", +"node-cache","nib","newman","natural","nano","multiparty","lowdb","load-grunt-config","lit-element","libnpmexec", +"leftpad","keycode","jszip","json-server","jotai","jimp","jest-pnp-resolver","jest-extended","is-url","intl", +"inside-throw","inline-style-parser","immutability-helper","imagemin-pngquant","html-validate","html-tags", +"html-react-parser","html-minifier-terser","html-encoding-sniffer","html-element-attributes","hogan.js", +"history-brass-sound","helmet","heapdump", +"has-flag","hammerjs","gulp-tslint","gulp-stylus","gulp-size","gulp-rev","gulp-minify-css","gulp-jasmine","gulp-git", +"gulp-data","gulp-connect","gulp-bump","gulp-browserify","grunt-notify","grunt-jsdoc","gm","ghooks","ftp", +"friendly-errors-webpack-plugin","formik","forever","font-awesome","fibers","fetch-mock","fair-tower-web3-store", +"facing-cook","es6-promisify","enzyme-shallow-equal","echarts","doxdox-renderer-markdown","doxdox-renderer-json", +"doxdox-renderer-bootstrap","doxdox-parser-jsdoc","doxdox-core","dompurify","dom-serializer","dockerode","dmd", +"discord.js","daisyui","csvtojson","cssstyle","css-select","create-hash","consolidate","cliui","clipboardy", +"child-process-promise","chance","caniuse","built-who-entire","btoa","blockchain-scientist","blockchain-record", +"blockchain-own8","blockchain-language","babel-preset-stage-1","babel-plugin-transform-react-jsx", +"babel-plugin-syntax-dynamic-import","babel-plugin-named-asset-import","babel-plugin-import","awesome-typescript-loader", +"apollo-link","api-console", +"anyway-south-boy-pilot","acl","@vitejs/plugin-legacy","@uiw/utils","@uiw/react-icon","@tinyhttp/req","@tinyhttp/cookie", +"@testing-library/cypress","@sveltejs/kit","@otterhttp/cookie","@nx/workspace","@nx/node","@npmcli/node-gyp", +"@npmcli/map-workspaces","@mui/system","@middy/core","@jsonforms/react","@jest/core","@ionic/core","@hapi/hapi", +"@grandlinex/core","@fortawesome/react-fontawesome","@floating-ui/react-dom","@emotion/core", +"@csstools/postcss-progressive-custom-properties","@csstools/media-query-list-parser","@angular/platform-browser", +"@angular/cdk","jugglingdb","replace-in-files-cli","2d","game","vite-plugin-typescript","vite-plugin-pages", +"vite-plugin-dts-bundle-generator","@antora/asciidoc-loader","@applitools/snippets","flmngr","survey-renderer", +"@antfu/ni","drizzle-orm","draggable","chatgpt","chatbot","radix-ui","@tanstack/vue-virtual","visual testing", +"rich-text","WYSIWYW","WYSIWYG","CKEditor","@ckeditor/ckeditor5-track-changes","@ckeditor/ckeditor5-comments", +"unplugin-unused","@publint/pack","resolve-tspaths","eslint-import-resolver-custom-alias","syntax-highlighting", +"code-blocks","@internal/test-utils","astro-integration","withastro","typescript-framework","clean-architecture", +"expressots","xxhash-wasm","@applitools/test-utils","convict","@atomico/rollup-plugin-sizes","vite-plugin-svgr", +"creator","gateway","git-gateway","gotrue-js","what-the-diff","verb","broccoli-node-info","bsl","vanilla-js","overflow", +"disable","freeze","react scroll","react scroll lock","body scroll lock","body scroll","selenium-mock","center", +"@walletconnect/legacy-utils","@walletconnect/legacy-types","@types/lodash.isnumber","vuepress-plugin-container", +"lernajs","self hosted","admin panel","@reporters/github","ahooks","ilib","@enact/i18n","@utils/tsdown-config", +"@utils/ts-config-types","@utils/ts-config","@intlayer/types","@intlayer/config","codeceptjs","scope", +"@rollup/plugin-eslint","reorder","sortable","vitest-axe","babel-plugin-dev-expression","customizable","animatable", +"chromatic","@storybook/addon-webpack5-compiler-babel","@chromatic-com/storybook","slide","gdpr","minimal", +"bplist-parser","vue 3","eslint-plugin-prettier-vue","@vue/cli-service","@vue/cli-plugin-typescript", +"@vue/cli-plugin-babel","svg-url-loader","@svgr/babel-preset","augment-vir", +"vir","augment","istanbul-smart-text-reporter","@web/dev-server-esbuild","@date-vir/duration","@augment-vir/core", +"textarea","get-pkg-repo","babel-preset-react-native","@testing-library/preact","@docusaurus/module-type-aliases", +"waapi","framer","react pose","pose","@types/systemjs","@types/morgan","@types/cookie-parser","esmocha","@yeoman/eslint", +"mem-fs-editor","@yeoman/types","@yeoman/transform","@yeoman/namespace","whitelist","jsonpath","WebSockets","Push", +"winston-compat","@dabh/eslint-config-populist","logform","taffydb","klona","ansi-html-community","zoomable", +"cache-loader","eslint-plugin-vue-libs","@types/cheerio","BDD","eyes","@antfu/install-pkg","@edge-runtime/vm", +"local-pkg","@vitest/runner","tinyrainbow","@vueuse/integrations","host-validation-middleware","http-proxy-3", +"periscopic","artichokie","@vercel/routing-utils","@vue/runtime-core","@types/busboy","ecosystem:jquery","jquery-plugin", +"unist-util","retext","azure-devops-node-api","latex","typedocplugin","typedoc-plugin","generics","DOM","ts-essentials", +"fix-dts-default-cjs-exports","Microsoft","@tsd/typescript","migrations","make-error","bs-logger","tldts","collapse", +"tilde","homedir","streams2","get-port-cli","webgl","3d","jpeg-js","codeclimate-test-reporter","@types/tar-fs", +"automated","elegant-spinner","charm","unique","tmpfile","tempdir","tdlib","back end","actor-system","DDD", +"actor system","brittle","ecstatic","resolve-import","audio","gpu","processes","cpu","sync-rpc","framework7", +"sw-precache","cookiejar","eslint-config-stylelint","@stylelint/remark-preset","@stylelint/prettier-config", +"@changesets/get-github-info","react-frame-component","@types/react-frame-component","@types/stylis","response","npmrc", +"metrics","core-util-is","strong-supervisor","strong-agent","east-asian-width","fixed-width","full-width","fullwidth", +"columns","django","@storybook/test","@storybook/addon-onboarding","component-testing","@types/pretty-hrtime", +"@radix-ui/react-slot","@types/detect-port", +"unique-string","launch-editor","@vitest/utils","@storybook/global","modern-syslog","std-mocks","run-parallel-limit", +"imageinfo","json-stringify-pretty-compact","graphql-scalars","@graphql-tools/utils","@graphql-tools/merge","separated", +"sockjs","eventsource","@types/sax","totalist","vendor","rollup-plugin-analyzer","custom-event","shelljs-release", +"shelljs-changelog","quote","esbuild-runner","aws-cdk-lib","@aws-sdk/util-dynamodb","@aws-sdk/lib-dynamodb", +"@aws-sdk/client-sts","@aws-sdk/client-sqs","@aws-sdk/client-sns","@aws-sdk/client-dynamodb","is-port-reachable", +"hardware","mariadb","ibm_db","standard-engine","eslint-config-standard-jsx","applications","experimentation","teaching", +"opensourcesoftware","helpful","parse-srcset","sails.js","rttc","parley","flaverr","@sailshq/lodash","Stream","Streams", +"@types/source-map","unistore","taskr","native-url","lodash.curry","ignore-loader","edge-runtime","comment-json", +"cli-select","@types/send","@types/platform","@types/path-to-regexp","@types/lodash.curry","@types/fresh", +"@types/content-disposition","@types/ci-info","@taskr/esnext","@taskr/clear","@next/swc","@next/react-refresh-utils", +"@next/polyfill-nomodule","@next/polyfill-module","@napi-rs/triples","@edge-runtime/primitives","@edge-runtime/ponyfill", +"@edge-runtime/cookies","@capsizecss/metrics","@babel/plugin-syntax-bigint","treemap","@types/d3-shape","graphlib", +"process-es6","buffer-es6","rollup-plugin-prettier","bundling","date-time","machine","prebuild","rm -fr","rm -rf", +"fast-deep-clone","fast-clone","performant","deepclone","kill","sigterm","spdy","copy-dir","ResizeObserver", +"@typescript-eslint/eslint-plugin-tslint","thenable","request-promise-core","stealthy-require","karma-cli", +"http-signature","retext-english","remark-retext","remark-lint-table-pipe-alignment", +"remark-lint-ordered-list-marker-value","remark-lint-no-tabs","remark-lint-no-table-indentation", +"remark-lint-no-shell-dollars","remark-lint-no-multiple-toplevel-headings","remark-lint-no-missing-blank-lines", +"remark-lint-no-heading-indent","remark-lint-no-file-name-outer-dashes","remark-lint-no-file-name-mixed-case", +"remark-lint-no-file-name-irregular-characters","remark-lint-no-file-name-consecutive-dashes", +"remark-lint-no-file-name-articles","remark-lint-no-emphasis-as-heading","remark-lint-no-consecutive-blank-lines", +"remark-lint-heading-style","remark-lint-first-heading-level","remark-lint-final-definition", +"remark-lint-file-extension","remark-lint-fenced-code-flag","remark-lint-definition-spacing", +"remark-comment-config","mermaid-isomorphic","is-hidden","thunk","flux-standard-action","replay","netlify-plugin-cache", +"@cfaester/enzyme-adapter-react-18","repl","@storybook/addon-storysource","virtualized","infinite","scrolling", +"jest-environment-puppeteer","esprima-fb","snackbar","@types/hash-sum","listify","slick", +"@playwright/experimental-ct-react","combobox","wireit","@types/use-sync-external-store","macos", +"@react-native/community-cli-plugin","babel-plugin-syntax-hermes-parser","@jest/create-cache-key-function", +"@react-native/normalize-colors","@react-native/assets-registry","@react-native/gradle-plugin", +"@react-native/js-polyfills","@react-native/codegen","flow-enums-runtime","metro-source-map","metro-runtime", +"nullthrows","isparta-loader","@webcomponents/custom-elements","viewport","yarn-deduplicate", +"@babel/plugin-proposal-pipeline-operator","@types/doctrine","dnd-core","color picker", +"babel-plugin-transform-rename-import","exceptions","fantasy-land","tacit","xyz","browserstack-runner","grunt-search", +"fuzzysort","item","filter-obj","puppeteer-core","@types/q","protocol-buffers","git-semver-tags","mdast-zone", +"alpha-sort","uglifyjs","uglifyify","MariaDB","MySQL", +"PostgreSQL","SQLite","@types/better-sqlite3","@prisma/get-platform","openapi-typescript","get-port-please", +"xdg-app-paths","openapi-fetch","ohash","vcs","@pkgr/core","error-handling","locale","jest-light-runner","virtual dom", +"precommit","processor","transformations","@csstools/postcss-oklab-function","@csstools/selector-resolve-nested", +"@types/cssesc","declarative","queries","media","atrule","at-rule","cssnext","postcss-selector-not", +"postcss-replace-overflow-wrap","postcss-pseudo-class-any-link","postcss-font-variant","postcss-color-rebeccapurple", +"postcss-color-hex-alpha","postcss-attribute-case-insensitive","pleeease-filters","hwb","hsl","comma", +"eslint-config-problems","read-cache","calc","manipulation","ports","popperjs","uninstall","hardlinks", +"dependency manager","tap-dot","keymetrics","kubernetes","logs","pidusage","count","plurals","sonic-boom","rdbms", +"postgre","png-js","zeptomatch","exist","idb-keyval","para","screengrab","screenshots", +"compliance","proclaim","fifo","vscode","@types/yauzl-promise","yauzl-promise","livescript","hashish","xdg-open","opens", +"define-lazy-prop","wrappy","entries","Object.values","_.extend","$.extend","Object.assign","es-object-atoms","notation", +"access","util.inspect","globalthis","gulp-exec","@readme/openapi-parser","Mobile","@napi-rs/wasm-runtime", +"@yarnpkg/parsers","node-machine-id","node-libs-browser","asap","babel-preset-latest","minizlib", +"esbuild-node-externals","versions","vite-bundle-analyzer","jsonlines","updater","rc-config-loader","package manager", +"@npmcli/git","json-parse-even-better-errors","@npmcli/config","fs-minipass","archy","new-github-release-url", +"is-interactive","normalization","backslash","absolute","jsonpath-plus","express-ws","webkit","xls","excel","daemon", +"pty","biased-opener","require-inject","maps","messaging","sha512","sha256","gcm","aes", +"worker-loader","karma-tap-reporter","tap-xunit","skeleton","internal","mochify","@sinonjs/referee","@types/nodemailer", +"@edge-runtime/jest-environment","debugging","git-raw-commits","require-in-the-middle","import-in-the-middle","nest", +"sentiment analysis","pegjs","@types/npmcli__arborist","@types/marked-terminal","@types/archiver","@types/byline", +"couchdb","thenify","timezone-mock","karma-story-reporter","pend","json-bigint","@fastify/websocket","@types/mongodb", +"remote control","node-monitor","backbone-callbacks","datastore","odm","mongodb-runner","@aws-sdk/credential-providers", +"mongodb-client-encryption","socks","UI","GUI","@cypress/code-coverage","@codemirror/lang-javascript","vscode-uri", +"vscode-languageserver-types","tz","timezone","services","v8-natives","unittest","define","descriptor", +"has-property-descriptors","gopd","junit","test-console","headless-chrome","expose-gc","mobx-react-lite","mobservable", +"conditional-type-checks","make dir","brace-expansion","searching","priority","priorityqueue", +"heap","min heap","runmd","release-please","@types/mime-db","expansion","fill-range","@babel/plugin-syntax-import-meta", +"nanocolors","fast-memoize","fsa","in-memory","hashing","hashring","mozilla","micromark-util-sanitize-uri","mdast-util", +"commonmark.json","micromark-util-symbol","micromark-util-normalize-identifier", +"micromark-util-decode-numeric-character-reference","charenc","numeric","sylvester","ndarray","inline-style-prefixer", +"recheck","jsonpointer","micromark-core-commonmark","links","repeat-string","theredoc","rows","emoticons","ndoc", +"markdown-it-sub","markdown-it-for-inline","@next/eslint-plugin-next","startup","prototype","yaml-config","crud", +"@nestjs/testing","@codecov/bundle-analyzer","@yarnpkg/lockfile","@nestjs/typeorm","@nestjs/swagger","@nestjs/core", +"@nestjs/common","office","open-source","y18n","load-module","opacity","fade","mirror","flip","embedded","embed", +"@commitlint/prompt-cli","mBaaS","StrongLoop","loopback-datasource-juggler","strong-remoting", +"uid2","grunt-open","refresh","event-emitter","omit","isequal","grunt-ts","grunt-rollup","full-stack","lws-static", +"livereload-js","autolink","promise-retry","matching","comparison","levenshtein-edit-distance","levenshtein", +"airtap-sauce","queue-microtask","level-concat-iterator","async-each","leveldb","@voxpelli/tsconfig","airtap-playwright", +"bootstrap less","bootstrap css","nested css","lesscss","less mixins","less css","gradients css3","css variable", +"compile less","mocha-teamcity-reporter","less-plugin-autoprefix","jit-grunt","benny","copy-anything", +"validate-npm-package-license","init-package-json","load-json-file","libnpmpublish","libnpmaccess","has-unicode", +"byte-size","p-reduce","cmd-shim","numbers","padding","eslint-config-mourner","prosthetic-hand","karma-expect","latest", +"semver-regex","cpr","mount","compose","urlencoded","co-body","gen-esm-wrapper","explorer","lodash.sortby","workspace", +"duplicate", +"analyze","pg-query-stream","tarn","key-value","lru.min","global-agent","safari","firefox","karma-reporter", +"browserstack-local","browserify-tool","hat","karma-script-launcher","karma-junit-reporter","inflate","trees", +"jsonparse","dummy","sort-on","stylish","selenium-standalone","saxes","reserved-words","cst", +"rollup-plugin-node-polyfills","gzip-js","eslint-config-jquery","grunt-git-authors","commitplease","usb","rpi", +"robotics","raspberry pi","Joystick","firmata","solid-js","@rspack/cli","vite-plugin-node-polyfills","worker-farm", +"babel-plugin-add-import-extension","jest-serializer-ansi-escapes","@jest/fake-timers","eslint-plugin-jasmine","youtube", +"stop","jstransformer-verbatim","jstransformer-stylus","jstransformer-less","jstransformer-coffee-script", +"jstransformer-cdata","compression-webpack-plugin","is-inside-container","writable","kind","pure","globstar","extglob", +"denque","custom element","@ionic/cli-framework-prompts","@ionic/utils-subprocess","@ionic/utils-process", +"@ionic/utils-network","@ionic/cli-framework", +"@ionic/utils-stream","ssh-config","leek","country","prettier-eslint","babel-preset-es2015-rollup", +"babel-plugin-transform-es3-property-literals","babel-plugin-transform-es3-member-expression-literals","yml","reify", +"run-async","eslint-config-xo-react","@types/signal-exit","humanize","renderToString","every","deep-freeze", +"image-dimensions","p-pipe","ow","tiff","identity","unorm","i18next-browser-languagedetector","gh-release","foreign_key", +"classify","tableize","ordinalize","demodulize","camelize","post","@types/async-retry","eol","agent-base", +"requires-port","postproccessor","pug-loader","mail","capture","commitlint-config-non-conventional","@types/he", +"@exodus/bytes","workers","cloudflare","wrangler","oxc-parser","grunt-gh-pages","moize","js-yaml-js-types", +"@vue/compiler-dom","hyperscript","esast-util-from-js","mdast-util-mdx-expression","estree-util-is-identifier-name", +"web-namespaces","hast-util-from-parse5","hasOwn","function-bind","sham","@types/core-js","getopt","vision","wreck", +"shot","ammo","grunt-contrib-requirejs","gestures","grunt-string-replace","remark-validate-links", +"remark-lint-list-item-indent","remark-lint-hard-break-spaces","catering","proxy-middleware","anymatch", +"lodash.templatesettings","lodash._reinterpolate","array-uniq","eslint-plugin-no-use-extend-native","@types/ansi-colors", +"rendering","rwd","brotli-size","@types/lodash.template","sftp","source-maps","revision","rev","precompile","views", +"easy-transform-stream","ng-annotate","plugins","isparta","webcomponents","stylesheets","strip-color","imagemin-webp", +"exclude","ternary-stream","gulp-match","metapak-nfroidure","metapak","nid","any-shell-escape", +"@shinnn/eslint-config-node-legacy","separate","streamfilter","balanced-match","rcloader","csscomb","webserver", +"conflict","rework","mtime","change-file-extension","object.pick","versioning","mark","bom","rewriting","prefixes", +"atom","gulp-footer","series","@types/json5","usemin","foundry-release-npm", +"foundry-release-git","foundry","eslint-config-twolfson","url2","spritesheet-templates","grunt-release","TDD", +"@commitlint/travis-cli","vow","less-plugin-clean-css","maxmin","compass","perf","grunt-known-options","google-protobuf", +"coffee","assemble","strip-bom-string","gulp-cli","requests","@hapi/bourne","p-cancelable","lowercase-keys","pdfmake", +"linkinator","js-green-licenses","@types/nunjucks","google drive","java","paths","fnmatch","glob-stream","min-document", +"@primer/octicons","eslint-config-kentcdodds","opt-cli","lodash.clone","deno","readablestream","scan","available", +"reduce","iterable","pooling","modular","nitro","insight","globule","thenify-all","any-promise","output","mkdirs", +"extra","read-dir-files","hoc","formdata-polyfill","@paralleldrive/cuid2","combined-stream","jest-circus","cli-testlab", +"getopts","forever-monitor","@types/is-callable","location", +"redirect","react-addons-test-utils","cjs","@tailwindcss/postcss","fabric","sequential","util-extend","@types/acorn", +"matcher-collection","cdn","universal-analytics","stream-json","gaxios","@electric-sql/pglite-tools","@types/bcrypt", +"Firebase","@firebase/database-compat","@firebase/auth-compat","@firebase/app-compat","jar","xlsm","icc","jxl","cur", +"heic","ods","jp2","docx","cfb","ico","psd","icns","video","pic","fallback","figure","banner","art","glob-to-regexp", +"@types/glob-to-regexp","scanner","web component","babel-plugin-minify-dead-code-elimination", +"typescript-transform-paths","piscina","markdownlint-cli2","secure-json-parse","process-warning","find-my-way", +"@fastify/error","click","json2xml","js2xml","snap-shot-it","hereby","@nodelib/fs.walk","jsverify","pure-rand", +"timestamp","color-support","gulp-mustache","shallow","benchmarked","covert", +"unit-testing","type-safe","helpers","authz","autogenerated","autogenerator","autogenerate","setprototypeof", +"pbkdf2-password","type-check","@jest/get-type","@jest/expect-utils","stdio","binaries","subprocess","is-running", +"@sindresorhus/merge-streams","listeners","eventDispatcher","eventEmitter","Events","on","pub/sub","addListener", +"addEventListener","eventemitter","join","flatmap","stream-combiner","qs-iconv","os-tmpdir","karma-typescript", +"@types/assert","ethereum-cryptography","karma-safaritechpreview-launcher","json-diff","regexp-tree", +"@types/postcss-safe-parser","nodesecurity","eslint-config-nodesecurity","safe-regex","mocha-chai-jest-snapshot", +"@types/pako","regexp-ast-analysis","@types/estree-jsx","ls-engines","string.prototype.repeat","to-ast","jsx-ast-utils", +"jsonc","stylelint-config-recommended-vue","@types/natural-compare","spdx-expression-parse", +"@angular-eslint/template-parser","markdown-link-check","eslint-config-canonical","gitdown","@types/espree","directive", +"comment","@vuepress/plugin-pwa","eslint-ava-rule-tester","commitlint-azure-pipelines-cli","unrs-resolver", +"happiness","happy","xoxo","automd","eslint config","eslint-find-rules","npm-license","node-polyfill-webpack-plugin", +"fs-teardown","eslump","eslint-release","eslint-plugin-expect-type","@types/esquery","file-entry-cache", +"@eslint/plugin-kit","__proto__","futures","babel-plugin-transform-es2015-constants", +"babel6-plugin-strip-class-callcheck","broccoli-uglify-js","broccoli-watchify","git-repo-version","broccoli-rollup", +"extras","addons","next-tick","fixtures","@types/object.assign","@types/make-generator-function", +"@types/make-async-function","@types/make-arrow-function","@types/has-symbols","@types/has-bigints","@types/call-bind", +"make-arrow-function","has-bigints","lodash.escape","is-callable","function.prototype.name","array.prototype.flat", +"reporting","enum","js-string-escape","ember-addon","eslint-plugin-ember","ember-source-channel-url","ember-source", +"ember-resolver","ember-qunit","ember-load-initializers","ember-auto-import","code-equality-assertions", +"@ember/test-helpers","@ember/optional-features","babel-plugin-debug-macros","ember","fixturify-project","chai-files", +"watch-detector","tree-sync","symlink-or-copy","sane","quick-temp","promise-map-series", +"p-defer","core-object","calculate-cache-key-for-tree","smtp-server","lass","lad","markdown-it-chain","rcedit","junk", +"@electron/asar","flatpak","Windows","dmg","grunt-contrib-compress","null-loader","fix","@types/vinyl-fs","os-locale", +"eslint-plugin-lodash","@types/pixelmatch","@types/strip-json-comments","@definitelytyped/typescript-versions", +"@definitelytyped/header-parser","@definitelytyped/utils","drag and drop","dragndrop","cypress-file-upload", +"babel-preset-fbjs","alex","spawn-please","tarball","repo","interpolation",".env","purify","sanitizer","secure", +"qunit-tap","@types/trusted-types","domelementtype","height","simulant","unist-util-is","websites","glob-promise", +"imagemin-gifsicle","imagemin-optipng","tree-node-cli","chdir","parse-filepath","micromark-util-character","ghost", +"dpdm","content management system","valid-directory","projectz","kava","assert-helpers","jschardet","istextorbinary", +"@grpc/proto-loader","@balena/dockerignore","geckodriver","@puppeteer/browsers", +"doc-detective-resolver","doc-detective-common","jsonify","file-set","cache-point","backend-manager","deletion", +"insertion","iterative","matrix","Edge","eslint-import-resolver-alias","handlebars-loader","jsdiff","port", +"@eggjs/tsconfig","tab","identify","infer","read-package-json","callsite","temp-write","cleaning","unlink","trash", +"presentable-error","equality","has-proto","side-channel","is-date-object","is-arguments","difference", +"yaml-eslint-parser","should-semantic-release","prettier-plugin-curly","eslint-plugin-deprecation","console-fail-test", +"tar.gz","bz2","decompress-unzip","switch","reverse","tailwind laravel","tailwind astro","tailwind svelte", +"tailwind nuxt","tailwind next","tailwind vue","tailwind react","statistics","@observablehq/runtime","topojson-client", +"d3-scale-chromatic","d3-interpolate","d3-hierarchy","d3-polygon","d3-random","d3-format","d3-force","d3-path","d3-dsv", +"conventional-commit-types","stubs","spies", +"uid","stack-chain","@types/lodash.set","tsv","@types/chokidar","StyleSheet","CSSStyleDeclaration","@webref/css", +"@csstools/css-syntax-patches-for-csstree","identifier","stages","features","@types/boolbase","@types/csso", +"write-json-file","version-changelog","github-release-from-changelog","eslint-config-nitpick","changelog-verify", +"source-map-resolve","Base64","MD5","pbkdf2","shebang","rotate","crontab","timer","node-cron","@fast-check/jest", +"normalize-newline","sha.js","hpagent","parse-json","setImmediate","queueMicrotask","URLSearchParams","URL", +"AsyncIterator","Symbol","TypedArray","WeakSet","WeakMap","Set","Map","ECMAScript 2023","ECMAScript 2022", +"ECMAScript 2021","ECMAScript 2019","ECMAScript 2017","ECMAScript 2016","ECMAScript 2015","ECMAScript 6","ECMAScript 3", +"ES2023","ES2022","ES2021","ES2020","ES2018","ES3","qr","@types/normalize-path","@types/glob-parent", +"@borderless/ts-scripts","conventional-changelog-writer", +"dustjs-linkedin","twig","mote","eco","elegant","flash","rack","xdg-basedir","x2js","sh","coveralls-next","strings", +"singleline","one","mocha-multi-reporters","find-node-modules","cachedir","is-utf8","find-replace","exists","jison", +"google-closure-compiler-js","@codemirror/search","mask","coroutine","progress bar","copy-paste","powershell-utils", +"tiny-emitter","rollup-plugin-multi-input","jest-runner-eslint","git-rev","show","display","tad","es6-iterator","d", +"autocomplete","uncached","uncache","parent-module","classname","watching","watcher","readdirp","intersection-observer", +"react-lazy-load","querystringify","eslint-plugin-es","c12","includes","similar","like","strategy","assertion-error", +"check-error","pathval","scraping","assert-rejects","pascalcase","separator","hyphen","camel","bound", +"callbind","inspector","v8","chai-jest-snapshot","webrtc","@mscdex/eslint-config","log4j","dtrace-provider","mergician", +"@oclif/plugin-warn-if-update-available","built-in","uint8array","esnext","transpilation","test262-stream", +"typescript-cached-transpile","decoding","ts-standard","base-x","update-browserslist-db","isstream","console-browserify", +"browser-pack","module-deps","subarg","tslint-plugin-prettier","release-it-lerna-changelog","boxes","eyeglass-module", +"prettier-plugin-astro","@astrojs/sitemap","standardx","dsl","flow control","deferreds","promises-a","sparkline", +"memory-streams","awesomesauce","imports-loader","git-directory-deploy","@storybook/addon-options","react-reconciler", +"@antv/g2plot","gyp","bignumber","decimal","real time","micro services","spa","dependency injection","esm2umd", +"sorted-object","encoder","decoder","backend-as-a-service","babel-plugin-transform-flow-strip-types","home-or-tmp", +"electron-to-chromium","babel-plugin-transform-exponentiation-operator","babel-plugin-transform-es2015-unicode-regex", +"babel-plugin-transform-es2015-sticky-regex","babel-plugin-transform-es2015-object-super", +"babel-plugin-transform-es2015-modules-systemjs", +"babel-plugin-transform-es2015-modules-amd","babel-plugin-transform-es2015-literals", +"babel-plugin-transform-es2015-function-name","babel-plugin-transform-es2015-for-of", +"babel-plugin-transform-es2015-duplicate-keys","babel-plugin-transform-es2015-block-scoped-functions","pkgfiles", +"babel-plugin-flow-react-proptypes","babel-plugin-syntax-object-rest-spread","babel-plugin-syntax-async-functions", +"mapping","rewrite","alias","resolver","find-babel-config","require-package-name","instrumentation", +"@istanbuljs/load-nyc-config","babel-preset-umi","@umijs/test","airbnb-js-shims","babel-preset-power-assert", +"babel-helpers","md5.js","istanbul-instrumenter-loader","rollup-plugin-bundle-size","proxy-from-env","revalidator", +"emoji-regex","typedarray","colorjs.io","waf","workflow","swf","ses","sqs","insert-module-globals","jmespath","ieee754", +"observable","ignore-by-default","emittery","common-path-prefix","code-excerpt","callsites","fraction.js","detective", +"babel-plugin-rewire","parse-github-url","shrinkwrap","rollup-plugin-npm","is-nan","ensure","Array.prototype.flatten", +"Array.prototype.flatMap","buffer-crc32","gql","projen","@aws-sdk/types","analytics","microsoft", +"@opentelemetry/exporter-metrics-otlp-proto","@opentelemetry/sdk-metrics","@opentelemetry/sdk-logs", +"@opentelemetry/api-logs","@opentelemetry/core","@azure/core-auth","teen_process","asyncbox","node_modules", +"@types/graphql","jsnext","@types/zen-observable","apollo-cache","iOS","apple", +"@madccc/duplicate-package-checker-webpack-plugin","@ant-design/happy-work-theme","circular-dependency-plugin", +"@microflash/rehype-figure","dumi-plugin-color-chunk","@types/isomorphic-fetch","@ant-design/compatible", +"@types/cli-progress","@types/http-server","lunar-typescript","@types/nprogress","@types/spinnies","@types/ali-oss", +"@prettier/sync","react-countup","vanilla-tilt","spinnies","runes2","@rc-component/trigger","string-replace-loader", +"rucksack-css","reqwest","remark-yaml-config","markdown-it-table-of-contents","majo","less-plugin-npm-import", +"json-templater","is-windows","gulp-strip-code","enquire-js","docsearch.js","babel-plugin-inline-import-data-uri", +"@webpack-cli/serve","@vue/babel-plugin-jsx","@types/lru-cache","@types/koa","shallow-equal","dom-scroll-into-view", +"array-tree-filter","@emotion/unitless","vt100","escapes","strikethrough","red","inverse","gray","isbinaryfile", +"ember-cli-string-utils","ember-cli-normalize-entity-name","longjohn","json-schema-validator","json-schema-test", +"if-node-version","@ajv-validator/config","json-schema-traverse","simple-get","make-promises-safe","load-script", +"globs-to-files","find-nearest-file","engine.io-client","engine.io","stay-including","scientific-exist-event2", +"recently-done-should-moon","meat-think-stove8","material-balance-trade-solar","lay-rest-hour","exchange-known-bend", +"course-whenever-merely","correct-home-silent7","closer-composed-particularly-shout","cent-matter-to","blockchain-meat7", +"blockchain-bend4","cron-parser","arch","accept","negotiation","rollup-watch","rollup-plugin-babel-minify", +"dumi-theme-mobile","codesandbox-import-utils","react-loading-skeleton","comlink","fast refresh", +"@babel/plugin-transform-react-jsx-source","browserslist-to-esbuild","file uploader","uploadcare", +"@csstools/postcss-cascade-layers","@happy-dom/global-registrator","@total-typescript/ts-reset","@biomejs/wasm-nodejs", +"@biomejs/js-api","shipjs","@uploadcare/cname-prefix","prom-client","@uiw/react-overlay","@udecode/react-hotkeys", +"@udecode/react-utils","@udecode/utils","@udecode/slate","@types/raf","mini-store","component-classes","title-case", +"@typescript-eslint/visitor-keys","ebs","params","@tinyhttp/content-type","headers","supertest-fetch","@tinyhttp/vary", +"eslint-plugin-local-rules","jest-serializer-ansi", +"@types/jest-in-case","dotenv-cli","testing-library","jest-environment-jsdom-sixteen","jest-watch-select-projects", +"dom-accessibility-api","@tanstack/query-test-utils","tanem-scripts","MIT","shadow root","microfrontends","symbiote.js", +"ui library","stylelint-prettier","rust","swc","svgr","@svgr/plugin-svgo","official","dts-buddy", +"@sveltejs/acorn-typescript","trash-cli","parse-color","color2k","abab","@supernova-studio/model", +"@supernova-studio/client","sylvanas","duplicate-package-checker-webpack-plugin","bundlesize2","@types/react-resizable", +"@storybook/theming","@storybook/addons","rc-trigger","rc-progress","rc-menu","rc-drawer","rc-dialog", +"@rc-component/tour","@ant-design/react-slick","@ant-design/cssinjs","essentials","storybook-addon","memoizerific", +"telejson","@mochify/driver-webdriver","@mochify/driver-puppeteer","@mochify/cli","@wdio/types","@wdio/spec-reporter", +"@wdio/local-runner","@wdio/cli","screenplay-pattern","screenplay","serenity-js","serenity","mocha-multi", +"@types/html-minifier","@integration/testing-tools","tiny-types","@serenity-js/web","@serenity-js/rest", +"@serenity-js/core","vite-plugin-banner", +"@scalar/openapi-types","@scalar/openapi-parser","@unhead/vue","sanity","cpx","string-capitalize","is-module", +"require-relative","redux-toolkit","starter","esbuild-extra","@types/babel__helper-module-imports", +"@testing-library/react-render-stream","@size-limit/webpack","glb","@types/testing-library__jest-dom", +"@storybook/testing-library","@types/three","bootstrap-icons","animate.css","@mdi/font","mixins","gui", +"eslint-formatter-codeframe","@metalsmith/markdown","better-ajv-errors","app-module-path","github-api","ps-tree", +"fontkit","@webcomponents/shadycss","typography","information","annotate","typedoc-plugin-no-inherit","putout", +"glob-bin","@types/stack-utils","@types/ramda","randexp","send-file","@otterhttp/errors","@otterhttp/content-type", +"vue-components","octokit","@types/clean-stack","clean-stack","@types/wrap-ansi","@types/indent-string","@oclif/parser", +"@oclif/errors","@nestjs/schematics","ESLint","intercept-stdout","oniguruma","markdown-it-lazy-headers", +"markdown-it-expand-tabs","github-url-to-object","atom-language-nginx","atom-language-diff","highlights-tokens", +"language-stylus","language-erlang","lodash.pickby", +"language-rust","language-haxe","language-glsl","language-dart","property-ttl","language-ini","highlights","spawk", +"treeverse","parse-conflict-json","npm-install-checks","common-ancestor-path","bin-links","@npmcli/name-from-folder", +"@npmcli/metavuln-calculator","@npmcli/fs","@isaacs/string-locale-compare","hast-util-has-property","rehype-format", +"posthtml-parser","posthtml-render","@types/color","webpack-virtual-modules","rehype-pretty-code", +"@theguild/remark-npm2yarn","@shikijs/transformers","datetimepicker","datepicker","system","webpack-http-server", +"vitest-environment-miniflare","@types/follow-redirects","@types/express-fileupload","@ossjs/release", +"@open-draft/test-server","outvariant","is-node-process","@open-draft/deferred-promise","HTTP","jju","alpha", +"@microsoft/api-extractor-model","@types/mdx","json-api","syntax-highlight","@inquirer/input","opn-cli", +"babel-plugin-transform-builtin-extend","glob2base","docopt","rollup-plugin-import-css","redux-mock-store", +"@types/istanbul-reports","@types/istanbul-lib-coverage","@jest/schemas","immersive","easy","jest-watcher", +"jest-regex-util","jest-message-util","jest-haste-map","exit-x","@jest/reporters","@jest/pattern", +"ux","design-system","eslint-plugin-require-extensions","@tanstack/react-virtual","playwright-core","@stencil/core", +"@inquirer/testing","vue 3.x","translate","TypeBox","nope","scheme","io-ts","fp-ts","fluentvalidation-ts", +"computed-types","arktype","@vinejs/vine","@sinclair/typebox","@standard-schema/utils","@hapi/wreck", +"@hapi/eslint-plugin","@hapi/topo","@hapi/hoek","filemanager-webpack-plugin","basename","@tailwindcss/typography", +"@docusaurus/types","graphql-markdown","graphql-schema","@graphql-markdown/types","@graphql-markdown/utils", +"@graphql-markdown/logger","node-abi","awesome","typeface","inter","google fonts","font family","Swagger", +"OpenAPI Specification","unfetch","lodash.noop","@types/tapable","@types/json-pointer","@types/enzyme-to-json", +"@types/dompurify","@hot-loader/react-dom","url-template","stickyfill","react-tabs","openapi-sampler","json-pointer", +"decko","@emotion/utils","@emotion/sheet","definitions",".d.ts","swc-loader", +"@wordpress/dependency-extraction-webpack-plugin","esbuild-wasm","@types/body-parser","sql.js","minisearch", +"memorystore","@types/html-escaper","@apidevtools/swagger-parser","discordapp","@discordjs/api-extractor", +"@favware/cliff-jumper","@discordjs/scripts","@sapphire/snowflake","discord-api-types","@discordjs/util", +"magic-bytes.js","yfm","esbuild-sass-plugin","@types/sanitize-html","markdownlint-rule-helpers","get-root-node-polyfill", +"@diplodoc/tabs-extension","signale","jest-mock-process","@types/signale","gherkin","dependency-lint","@types/mz", +"@types/mustache","util-arity","knuth-shuffle-seeded","assertion-error-formatter","progressive","declarations", +"media query","mobile-first","vnu-jar","find-unused-sass-variables","@docsearch/css","messages","neotraverse", +"loglevel-plugin-prefix","@compodoc/ngd-transformer","@compodoc/live-server","@commitlint/utils","@commitlint/test", +"@commitlint/load","@commitlint/lint","@types/color-convert","@ckeditor/ckeditor5-select-all", +"@ckeditor/ckeditor5-watchdog","ckeditor5-lib","@ckeditor/ckeditor5-editor-inline", +"@ckeditor/ckeditor5-editor-decoupled","@ckeditor/ckeditor5-alignment","@ckeditor/ckeditor5-editor-classic", +"ckeditor5-build","ng","angular2","social","chat","chokidar-cli","@changesets/get-release-plan","async-exit-hook", +"feature","svg-pan-zoom","markdown-it-footnote","json-schema-merge-allof","@cucumber/gherkin-streams", +"pirates","@babel/plugin-transform-logical-assignment-operators","@babel/plugin-transform-private-property-in-object", +"@babel/plugin-transform-optional-catch-binding","@babel/plugin-transform-async-to-generator", +"@babel/plugin-transform-optional-chaining","@babel/plugin-transform-numeric-separator", +"@babel/plugin-transform-modules-systemjs","@babel/plugin-transform-dynamic-import", +"@babel/plugin-transform-destructuring","@babel/plugin-transform-regenerator","@babel/plugin-transform-modules-umd", +"@babel/plugin-transform-spread","babel-plugin-polyfill-corejs2","@babel/plugin-transform-parameters", +"@babel/compat-data","decorators","@asyncapi/parser","apollo","optimism","@graphql-typed-document-node/core", +"typescript-lit-html-plugin","@open-wc/testing","@open-wc/eslint-config","@api-components/api-request", +"@api-components/api-navigation","@api-components/api-model-generator","@anypoint-web-components/anypoint-styles", +"@advanced-rest-client/oauth-authorization","@api-components/amf-helper-mixin", +"@anypoint-web-components/anypoint-listbox","@anypoint-web-components/anypoint-item", +"@anypoint-web-components/anypoint-dropdown","@anypoint-web-components/anypoint-button", +"@advanced-rest-client/arc-marked","@advanced-rest-client/arc-icons","static-site","static-site-generator", +"please-upgrade-node","dependency-graph","@babel/helper-create-class-features-plugin","@babel/helper-string-parser", +"var","const","@babel/helper-module-transforms","charcodes","6to5","@babel/helper-transform-fixture-test-runner","oidc", +"@sveltejs/adapter-auto","@react-native-community/eslint-config","@testing-library/react-native","react-document-title", +"react-github-button","enquire.js","bisheng","utility-types","rc-field-form","code generation","devkit","Angular DevKit", +"Angular CLI","babel-plugin-transform-object-assign","karma-webdriver-launcher", +"css-split-webpack-plugin","es6-promise-polyfill","babel-plugin-espower","markdown-it-prism","console-polyfill", +"simulate-event","mochawesome","@types/md5","jsonp","twbs","svgs","nums","mongoid","mapboxgl","lexxy","animejs", +"@tsparticles/interaction-particles-attract","@inquirer/select","@inquirer/expand","@antora/site-publisher", +"@testcontainers/postgresql","@tsparticles/shape-line","@tsparticles/interaction-external-slow","@applitools/driver", +"@observablehq/plot","@prisma/dev","@csstools/color-helpers","@storybook/addon-vitest","@tsparticles/plugin-rgb-color", +"vue-draggable-next","zoroaster","@headlessui/vue","loki","@tsparticles/plugin-hsl-color", +"@tsparticles/plugin-hex-color","grammy","globrex","embla-carousel-reactive-utils","@axe-core/playwright","grunt-svgmin", +"@modern-js/utils","@appium/schema","payload","@busy-hour/blaze","kuler","@tsparticles/shape-star","@tsparticles/slim", +"@tsparticles/interaction-external-repulse","@tsparticles/interaction-particles-collisions", +"@tsparticles/interaction-external-grab","@tsparticles/updater-size","@tsparticles/basic","@augment-vir/assert", +"rehype-expressive-code","astro-expressive-code","@tsparticles/shape-image","@tsparticles/shape-square", +"@tsparticles/shape-polygon","@tsparticles/move-parallax","@tsparticles/interaction-external-remove", +"@tsparticles/interaction-external-bounce","@astrojs/starlight","@tsparticles/interaction-particles-links", +"@expressots/core", +"plasmo","@tsparticles/updater-rotate","@tsparticles/updater-life","@tsparticles/shape-circle", +"@antora/playbook-builder","webdriver-js-extender","react-colorful","query-selector-shadow-dom","postcss-js", +"micromark-util-encode","lws-index","jest-preview","jasminewd2","inferno-create-element","html-parse-stringify", +"hast-util-to-parse5","hast-util-parse-selector","globals-docs","esdoc","epub2","dom7","character-reference-invalid", +"character-entities-html4","broccoli-middleware","body-scroll-lock","blocking-proxy","ansi-align", +"@walletconnect/legacy-modal","@vuepress/theme-default","@vuepress/plugin-nprogress","@vuepress/plugin-last-updated", +"@vuepress/plugin-active-header-links","@vuepress/markdown-loader","@vuepress/core","@tsparticles/updater-out-modes", +"@tsparticles/updater-opacity","@tsparticles/updater-color","@tsparticles/shape-emoji","@tsparticles/move-base", +"@tsparticles/interaction-external-push","@tinyhttp/logger","@tinyhttp/encode-url","@storybook/addon-backgrounds", +"@mui/private-theming","@juggle/resize-observer","@ionic/react","titanium","zarm","@enact/webos","@enact/ui", +"@mantine/code-highlight","tstyche","weui","recharts","react-native-collapsible","rapidoc","postcss-opacity-percentage", +"html-url-attributes","grommet","foundation-sites","rehype-katex","@jsonforms/vue","postcss-focus-visible","downshift", +"@commercetools-frontend/constants","jsdoc-parse","@mui/styled-engine","framer-motion","@nx/jest","@nx/cypress","zmq", +"yonode","yarnrc","xregexp","xml-js","wiredep","winreg","webtorrent","web3-compass","web3-capital","waterline", +"vue-hot-reload-api","vsce","viewerjs","victory-mouth","user-home","unusual-rope","typescript-plugin-css-modules","tv4", +"tslint-react","ts-pnp","toastify-react-native","tinper-bee","tdl","tail-iron-became5","sync-request","swiper","swig", +"swagger-ui-express","swagger-themes","sugar-policeman-entire","strongloop","strftime","st.db","sprity", +"spring-dust-wall-size","sockjs-client","snake-seven-recall-interior","small-grow-mix4","slow-voice-spell-pass", +"sink-mighty-orbit0","shortid","sentiment","secp256k1","seblakhotspicy","sat-local","sand-have-metal6","sails","routes", +"robotjs","restore-cursor","restify","require-all","request-promise-native","remap-istanbul","rehype-external-links", +"redux-thunk","redux-logger", +"redux-form","redoc","reactstrap","react-virtualized","react-tap-event-plugin","react-slick","react-number-format", +"react-native-vector-icons","react-i18next","react-error-overlay","react-dropzone","react-datepicker","react-bootstrap", +"raven","qunit-dom","quill","purgecss","progress-bar-webpack-plugin","pretty-error","prettier-plugin-svelte","pouchdb", +"postcss-prefix-selector","postcss-image-set-function","postcss-color-functional-notation","pm2","pie-case-nor-great", +"pdfkit","para-client-js","pa11y","overlayscrollbars","orchestrator","opencv","onchange","object-path","oas-normalize", +"nvmrc","nuke-cli","npm-check","normalize-wheel","nomnom","nolangjs","node-uuid","node-static","node-pre-gyp", +"node-inspector","node-dir","nightmare","ngrok","next-auth","nedb","nativescript","multiple-cucumber-html-reporter", +"move-wolf-throughout","motor-positive-spirit","monk","mockjs","meteor","memory-cache","mammoth","magmastream", +"loopback","lodash.map","lodash.isstring","lodash.isplainobject", +"lodash.flatten","localtunnel","localforage","local-web-server","live-server","liftoff","libnpmfund","libnpmdiff", +"levelup","leveldown","koa-static","knex","json-2-csv","jsdoc-api","jscpd","johnny-five","iview", +"is-potential-custom-element-name","ink","inert","imap","imagemagick","i","hyphenate-style-name","hyperquest", +"http-status","hope-slight-walk1","highland","hexo","hay-against-any-hurry","hast-util-to-jsx-runtime", +"hast-util-sanitize","happy-meant","gulp-zip","gulp-webserver","gulp-vinyl-zip","gulp-usemin","gulp-tsb","gulp-shell", +"gulp-notify","gulp-json-editor","gulp-jscs","gulp-inject","gulp-imagemin","gulp-htmlmin","gulp-gh-pages","gulp-csso", +"gulp-cssnano","gulp-concat-css","gulp-changed","gulp-buffer","guarapi","grunt-usemin","grunt-newer", +"grunt-contrib-less","grunt-contrib-csslint","grunt-concurrent","gradually-current-chief","government-letter-web3-till", +"googleapis","gmll","getmac","generic-pool","fur-race-web3-pale", +"fstream","fresh-dangerous","fluent-ffmpeg","flowbite","firan-logging","feature-rising-small7","fastclick", +"ethereumjs-util","eslintrc","es6-error","errorhandler","enzyme-adapter-utils","emmet","ember-cli-htmlbars", +"ember-cli-babel","elliptic","eleventy","element-resize-detector","electron-packager","electricity-death-web3-story", +"elasticsearch","dubnium","dropzone","doxdox-cli","documentdb","doc-detective-core","distance-its-clear-rate","dist", +"diff2html","deep-diff","dedupe","deasync","d3-selection","csv-stringify","csurf","cssdb","css-functions-list","cronnor", +"critical","crc","crawler","corcojs-qrcode","component-emitter","command-exists","clui","cli-ux","cli-table2", +"cli-spinner","chicken-fell-spread","cache-manager","bytebuffer","bulma","bs58","branch-body-web3-feel","bootstrap-sass", +"blessed","bizcharts","bip39","bark-needs-visit4","baqend","babel-plugin-transform-decorators-legacy","apn", +"angular-material","angular-cli", +"analsorhost-simple-bs","amqp","aid-guard1","action-cli","@wesleytodd/openapi","@uiw/react-overlay-trigger", +"@uiw/react-input","@uiw/react-button","@udecode/plate-core","@tinyhttp/url","@tinyhttp/type-is","@tinyhttp/send", +"@tinyhttp/router","@tinyhttp/res","@tinyhttp/proxy-addr","@tinyhttp/forwarded","@tinyhttp/etag","@tinyhttp/cors", +"@tinyhttp/cookie-signature","@testing-library/jest-native","@tanstack/react-query","@tanem/svg-injector", +"@scalar/api-reference","@otterhttp/send","@otterhttp/request","@oclif/config","@nomicfoundation/hardhat-chai-matchers", +"@ng-doc/core","@mui/x-date-pickers","@mui/material","@mui/icons-material","@middy/util","@mantine/utils", +"@mantine/notifications","@mantine/hooks","@mantine/core","@isaacs/cliui","@idux/cdk","@doc-tools/transform", +"@discordjs/rest","@cucumber/cucumber","@csstools/postcss-is-pseudo-class","@asyncapi/generator-react-sdk", +"@11ty/eleventy","@angular/platform-browser-dynamic","@angular/material","@angular/common","@angular/animations", +"@angular-devkit/core","iec","bits","gethub","testit","rollup-plugin-sass","rollup-plugin-eslint","compatiblity", +"setup-env","eslint-config-godaddy-react","rip-out","panorama","persist-schema","maths","lex","gulp-wrap-commonjs", +"flick","jquery-bridget","eslint-plugin-metafizzy","unidragger","imagesloaded","get-size","fizzy-ui-utils","ev-emitter", +"decrypt","WebGL","Canvas","WAAPI","splitText","cubic-bezier","easings","timeline","anime.js","anime", +"positioning engine","popper","rollup-plugin-flow-entry","poster","babel-plugin-inline-replace-variables", +"@khanacademy/flow-to-ts","@fezvrasta/tsc-silent","@ampproject/rollup-plugin-closure-compiler","consent-banner","cmp", +"consent-management-platform","cookie-banner","data-protection","user-privacy","consent-management","self-host","lgpd", +"ccpa","privacy","consent","@c15t/typescript-config","@libsql/kysely-libsql","@c15t/vitest-config","kysely-pglite", +"@opentelemetry/sdk-node","@c15t/translations","@orpc/contract","@orpc/openapi","@orpc/server","@c15t/logger", +"neverthrow","@orpc/otel","@orpc/zod","kysely","fumadb","@nolyfill/promise.any","@nolyfill/internal","fast-npm-meta", +"@types/yarnpkg__lockfile","@types/treeverse","@pnpm/workspace.find-packages","@pnpm/list","@napi-rs/magic-string", +"@jsdevtools/ez-spawn","version-linter","turborepo", +"exact-versions","oxc","sandboxed-module","physics","box2d","vite-plugin-typescript-transform","publisher", +"@antora/file-publisher","redirects","unloader","eslint-plugin-format","bun-types-no-globals","@farmfe/core", +"@farmfe/cli","pinch","pinch-to-zoom","pod-install","asciidoc","navigation","@asciidoctor/core","kapok-js", +"@antora/user-require-helper","@applitools/spec-driver-webdriver","@applitools/image","@applitools/req", +"@applitools/core","html-to-pdf","homework","assignments","pdf-generation","markdown-to-pdf","@types/listr","unsplash", +"imgpen","metal","vulkan","compositing","offscreen","skia","cargo-cp-artifact","string-split-by","@observablehq/stdlib", +"d3-geo-projection","apache-arrow","@types/d3","htl","interval-tree-1d","isoformat","browser-extension","webextension", +"webext","chrome-extension","vite-plugin-inspect","@types/jsesc","@types/chrome","@extend-chrome/storage", +"@extend-chrome/messages","windowed","vitest-fail-on-console","ts-blank-space","rollup-preserve-directives", +"react-lib-tools","react-docgen-typescript","@types/sharp", +"@tailwindplus/elements","@heroicons/react","@headlessui/tailwindcss","n1ed","@tinymce/tinymce-react","@webgpu/types", +"api gateway","apigateway","cloudfunctions","tap-arc","mock-tmp","@architect/eslint-config","@aws-lite/s3", +"@aws-lite/client","accelerate","common-stuff","@prisma/query-plan-executor","@electric-sql/pglite-socket", +"@mrleebo/prisma-ast","bplist-creator","base64-stream","schema-form","ui-component","input-validation","data-validation", +"data-collection","questionnaire","form-management","form-library","interactive-form","dynamic-form","form-rendering", +"form-component","survey-library","surveyjs","survey","2 factor","one-time-password","one time password","authenticator", +"google authenticator","topt","hotp","2fa","datagrid","virtual-core","@types/stringify-object","stringify-object", +"@types/validate-npm-package-name","@dotenvx/dotenvx","jsi","swift","cpp","macOS","tvOS","visionOS", +"react-native-worklets","webRTC","cam","webcam","camera","prepend-file","install-peers-cli","detectrtc", +"@types/webrtc","minimalistic","karma-opera-launcher","karma-fixture","clamp.js","better-npm-run","label", +"@walletconnect/events","@walletconnect/time","@types/istanbul-lib-report","developer tools","vibe-coding","context7", +"mcp","modelcontextprotocol","stt","tts","visual-model","azure-openai","vercel-ai","serwist","remark-mdx", +"mcp-hello-world","just-diff","fake-indexeddb","eslint-plugin-mdx","drizzle-kit","drizzle-dbml-generator","dpdm-fast", +"dbdocs","@types/rtl-detect","@types/pdfkit","@types/oidc-provider","@types/numeral","@types/ip","@types/crypto-js", +"@types/chroma-js","@peculiar/webcrypto","@next/bundle-analyzer","@lobehub/seo-cli","@lobehub/market-types", +"@lobehub/lint","@lobehub/i18n-cli","@huggingface/tasks","zustand-utils","word-extractor","use-merge-value", +"unstructured-client","ts-md5","tokenx","svix","ssrf-safe-fetch","rtl-detect","resolve-accept-language", +"react-wrap-balancer","react-virtuoso","react-scan","react-rnd","react-pdf","react-layout-kit","react-hotkeys-hook", +"react-confetti","pwa-install-handler","posthog-js", +"plaiceholder","pdf-parse","path-browserify-esm","partial-json","ollama","oidc-provider","officeparser","nuqs", +"nextjs-toploader","next-mdx-remote","modern-screenshot","model-bank","markdown-to-txt","lucide-react","langfuse-core", +"langfuse","langchain","jsonl-parse-stringify","js-sha256","i18next-resources-to-backend","gpt-tokenizer","drizzle-zod", +"dexie","countries-and-timezones","brotli-wasm","@xterm/xterm","@virtuoso.dev/masonry","@vercel/speed-insights", +"@vercel/functions","@vercel/edge-config","@vercel/analytics","@trpc/react-query","@trpc/next","@trpc/client", +"@t3-oss/env-nextjs","@serwist/next","@saintno/comfyui-sdk","@react-spring/web","@react-pdf/renderer", +"@opentelemetry/winston-transport","@opentelemetry/exporter-jaeger","@next/third-parties","@neondatabase/serverless", +"@lobehub/ui","@lobehub/tts","@lobehub/market-sdk","@lobehub/icons","@lobehub/editor","@lobehub/chat-plugins-gateway", +"@lobehub/chat-plugin-sdk","@lobehub/charts","@lobehub/analytics","@lobechat/web-crawler","@lobechat/utils", +"@lobechat/python-interpreter","@lobechat/prompts","@lobechat/observability-otel","@lobechat/model-runtime", +"@lobechat/file-loaders","@lobechat/fetch-sse","@lobechat/electron-server-ipc","@lobechat/electron-client-ipc", +"@lobechat/database","@lobechat/context-engine", +"@lobechat/const","@lobechat/agent-runtime","@langchain/community","@khmyznikov/pwa-install", +"@icons-pack/react-simple-icons","@huggingface/inference","@google/genai","@formkit/auto-animate","@fal-ai/client", +"@cyntler/react-doc-viewer","@clerk/themes","@clerk/nextjs","@clerk/localizations","@cfworker/json-schema", +"@azure-rest/ai-inference","@anthropic-ai/sdk","@ant-design/pro-components","hmac512","hmac256","@oxc-project/runtime", +"composition-api","kanban","vue-draggable","drag-and-drop","vue-next","@types/sortablejs","@tailwindcss/ui","otel", +"evals","rag","embeddings","vectorstore","agents","llms","llm","@openrouter/ai-sdk-provider","@internal/external-types", +"@internal/types-builder","@internal/ai-sdk-v5","@internal/ai-sdk-v4","@internal/ai-v6","@internal/lint", +"@ai-sdk/openai","@ai-sdk/azure","@ai-sdk/provider-utils-v6","@ai-sdk/provider-utils-v5","@mastra/schema-compat", +"@ai-sdk/ui-utils-v5","@ai-sdk/provider-v6","@ai-sdk/provider-v5","@isaacs/ttlcache","hono-openapi","@lukeed/uuid", +"js-tiktoken","@a2a-js/sdk","radash","graphiql","conversational-ai","conversational-ui","gpt-4","gpt4","ai-copilot", +"ai-assistant","ai-chatbot", +"ai-chat","copilot","assistant","ai-sdk","@assistant-ui/x-buildutils","assistant-stream", +"@radix-ui/react-use-escape-keydown","@radix-ui/react-use-callback-ref","@radix-ui/react-primitive", +"@radix-ui/react-popover","@radix-ui/react-dropdown-menu","@radix-ui/react-context","@radix-ui/react-compose-refs", +"@radix-ui/primitive","@assistant-ui/store","@assistant-ui/tap","assistant-cloud","intellisense","suggestions","IDE", +"yarn-s","usually","temp-context","spawncommand","snapshot-context","reloquent","promto","makepromise", +"eslint-config-artdeco","erotic","documentary","catchment","argufy","@zoroaster/types","@zoroaster/reducer","@wrote/rm", +"@wrote/exists","@depack/render","@artdeco/scripts.json","@artdeco/erte","@artdeco/clean-stack","@a-la/fixture-babel", +"@a-la/fixture-alamode","alamode","@zoroaster/mask","@zoroaster/assert","world-iso-country-names", +"world-iso-country-codes","world-iso-codes","world-country-telephone-prefixes","world-country-telephone-codes", +"world-country-names","world-country-flags","world-country-codes","world-countries","telephone-prefixes", +"telephone-codes","phone-prefixes","phone-codes","emoji-flags","iso-countries","iso-country-telephone-prefixes", +"iso-country-telephone-codes","iso-country-names", +"iso-country-codes","iso-codes","iso","country-iso-codes","countries","country-telephone-prefixes", +"country-telephone-codes","country-names","country-flags","country-codes","country-code","ui-framework","nuxt-ui", +"vitest-environment-nuxt","@tanstack/table-core","@nuxt/test-utils","@nuxt/module-builder","@nuxt/eslint-config", +"vue-component-type-helpers","vaul-vue","unplugin-vue-components","unplugin-auto-import","tailwind-variants","reka-ui", +"motion-v","knitwork","embla-carousel-wheel-gestures","embla-carousel-vue","embla-carousel-fade", +"embla-carousel-class-names","embla-carousel-autoplay","embla-carousel-auto-scroll","embla-carousel-auto-height", +"colortranslator","@vueuse/shared","@tiptap/vue-3","@tiptap/suggestion","@tiptap/starter-kit","@tiptap/pm", +"@tiptap/markdown","@tiptap/extension-placeholder","@tiptap/extension-node-range","@tiptap/extension-mention", +"@tiptap/extension-image","@tiptap/extension-horizontal-rule","@tiptap/extension-floating-menu", +"@tiptap/extension-drag-handle-vue-3","@tiptap/extension-drag-handle","@tiptap/extension-collaboration", +"@tiptap/extension-code","@tiptap/extension-bubble-menu","@tiptap/core","@tanstack/vue-table","@nuxtjs/color-mode", +"@nuxt/schema","@nuxt/kit","@nuxt/icon","@nuxt/fonts","@internationalized/number","@internationalized/date", +"@iconify/vue","bundle-size","tsm","eslint-plugin-redos-detector", +"@oxc-node/cli","algo","prettier-plugin-sh","prettier-plugin-pkg","@types/eslint-config-prettier","@fast-check/vitest", +"@testing-library/vue","fingers","two","Handling","Gesture","Maps","Leaflet","gulp-better-rollup","desm", +"@reporters/silent","@fastify/pre-commit","mock-spawn","convex","xhr2-cookies","events.once","blue-tape","graphql-ws", +"@types/isomorphic-form-data","@matteo.collina/snap","tiny-lru","single-user-cache","mqemitter","graphql-jit", +"@fastify/static","emoji-datasource","react-storybook","storybook-addons","@loki/target-native-ios-simulator", +"@loki/target-native-android-emulator","@loki/target-chrome-docker","@loki/target-chrome-app","@loki/runner", +"@loki/integration-vue","@loki/integration-react-native","@loki/integration-react","@udecode/plate-utils","deno2node", +"@grammyjs/types","@ckeditor/ckeditor-cloud-services-collaboration","@ckeditor/ckeditor5-operations-compressor", +"@ckeditor/ckeditor5-revision-history","ckeditor5-collaboration","glob2regx","fast-equals","@types/decompress", +"unplugin-lightningcss","unplugin-ast","unocss","rolldown-plugin-require-cjs","rolldown-plugin-dts-snapshot", +"@vitejs/devtools","@unocss/eslint-plugin","@sxzz/test-utils","@sxzz/prettier-config","@sxzz/eslint-config","unrun", +"unconfig-core","import-without-cache", +"@scripts/jest-config","@scripts/build","modern.js","modern","@scripts/rstest-config","@modern-js/types", +"@modern-js/rslib","@rslib/core","rslog","list-dependents-cli","peowly","@humanwhocodes/gitignore-to-minimatch","cancan", +"ibac","rbac","abac","permissions","@casl/dx","@ucast/mongo2js","body scroll lock upgrade","egjs","flicking", +"ttypescript","ts-mock-imports","rollup-plugin-prototype-minify","pvu","print-sizes","print-coveralls","postcss-clean", +"karma-typescript-es6-transform","jsdoc-to-mdx","http-serve","html-to-react","egjs-jsdoc-template", +"@types/resize-observer-browser","@egjs/release-helper","@egjs/flicking-plugins","@daybrush/jsdoc","@egjs/list-differ", +"@egjs/imready","@egjs/component","@egjs/axes","@cfcs/core","graphQL","content management", +"@hyrious/esbuild-plugin-commonjs","@payloadcms/eslint-config","@monaco-editor/react","@types/range-parser", +"graphql-http","@payloadcms/translations","console-table-printer","bson-objectid","dataloader","qs-esm","blaze", +"event-driven","@asteasolutions/zod-to-openapi","rgv","immobiliarelabs","immobiliare","ci/cd","backstage", +"@backstage/plugin-catalog-node", +"@backstage/plugin-catalog-common","@backstage/cli","@backstage/catalog-model","@backstage/backend-test-utils", +"express-promise-router","@backstage/integration","@backstage/config","@backstage/backend-plugin-api", +"@types/react-router","@tsparticles/interaction-external-connect","@tsparticles/interaction-external-attract", +"@tsparticles/interaction-external-bubble","@tsparticles/interaction-external-pause","@tsparticles/updater-stroke-color", +"@tsparticles/plugin-easing-quad","@react-native-macos/virtualized-lists","onesy","firefoxos","amaui","@amaui/ui-react", +"@types/deep-eql","vitest-browser-react","@radix-ui/react-icons","@radix-ui/react-checkbox","@floating-ui/utils", +"tabbable","pigna","piña","linkedom","mdast-util-directive","bcp-47","@pagefind/default-ui","harmonies","mix","cmyk", +"color-names","lch","hsv","ac-colors","testrunner","@web/test-runner-core","sander","fuzzysearch","strata", +"@types/http-cache-semantics","@types/common-ancestor-path","remark-code-titles","astro-scripts","rehype-toc", +"@types/dlv","deterministic-object-hash","@astrojs/internal-helpers","http-cache-semantics","@capsizecss/unpack", +"@astrojs/telemetry","@astrojs/compiler","@oslojs/encoding","yocto-spinner","zod-to-ts","unstorage","piccolore", +"magicast","unifont","fontace", +"flattie","dset","dlv","ts-expose-internals","eme","mse","player","music","@storybook/addon-mdx-gfm", +"less-plugin-sass2less","@storybook/cli","static-server","@types/events","@iconify/react","browser-extensions", +"@plasmo/framework-shared","@plasmo/utils","@plasmo/constants","@plasmo/config","@plasmohq/init","@plasmohq/parcel-core", +"@plasmohq/parcel-config","node-object-hash","mnemonic-id","@parcel/watcher","@parcel/package-manager","@parcel/fs", +"@parcel/core","@expo/spawn-async","drag & drop","drag drop","blob-to-buffer","@dataui/crud-util","@dataui/crud-request", +"eyes-sdk","serviceworker","rewrite-imports","is-uuid","@types/form-data","@types/eslint-plugin-prettier","滚动条", +"vue-plugin","vue-scrollbar","vue-scroll","vue-perfect-scroll","perfect-scroll","scss-loader","svelte-loader", +"copy-text-to-clipboard","mutation-observer","sidecar","code spliting","@types/enzyme-adapter-react-16","detect-node-es", +"merge refs","createRef","useRef","@tsparticles/plugin-emitters-shape-square", +"@tsparticles/plugin-emitters-shape-circle","@tsparticles/interaction-external-trail","@tsparticles/plugin-absorbers", +"@tsparticles/updater-twinkle","@tsparticles/updater-destroy","@tsparticles/plugin-emitters", +"@tsparticles/updater-wobble","@tsparticles/updater-tilt","@tsparticles/updater-roll","@tsparticles/shape-text", +"get-nonce","@types/body-scroll-lock","@bedrock-layout/use-forwarded-ref","react-spring","git-branch-is","iframe", +"youtube-iframe","eslint-plugin-react-native","@storybook/react-native","@react-native-community/bob", +"d3-interpolate-path","indeterminate","progressbar","pie","circle","progressindicator","image-viewer","image-gallery", +"quicklook","shouldComponentUpdate","shallow-equal-fuzzy","nano-equal","simple-routing","smarttv","smart-tv","wai-aria", +"color-picker","use-throttled-effect","parcel-plugin-css-to-string","jest-esm-jsx-transform","goober","@types/unzipper", +"@types/toposort","@readme/standards","@readme/better-ajv-errors","toposort","@oclif/plugin-autocomplete", +"@actions/core","hammer","tappable","rc-tools","gulp-streamify","shadowdom","queryselector","babelrc-rollup", +"@wdio/selenium-standalone-service","cssinjs","is-hexadecimal","is-decimal","is-alphanumerical","nth","nth-child", +"sniff","mobilegrade","grunt-jasmine-node","dangerous","tagfilter","micromark-extension","lws-middleware", +"serve-index-75lb", +"lo-dash","lo","engine-handlebars","engine-base","log-utils","preview jest","postcss-trolling","animate-sass", +"@stitches/react","github-files-fetcher","angular-eslint","@angular-devkit/build-angular","docstrap","bootswatch", +"dark mode","postcss-preset-infima","gulp-rtlcss","createVNode","vnode","inferno-hyperscript","icss","prometheus", +"http-terminate","http-shutdown","graceful-shutdown","force","tagname","whitespace","white-space","inter-element", +"developer","mdc","proposal","ECMAScript2017","ECMAScript8","ECMAScript2016","ECMAScript7","ECMAScript2015", +"ECMAScript6","esdoc-importpath-plugin","ice-cap","color-logger","🐐","goat","interpolate","escaping","volume","novel", +"node-novel","epub-maker2","epub-maker","comic","chapter","books","book","crlf-normalize","array-hyper-unique", +"prettier-check","eslint-config-standard-react","ssr-window","rollup-plugin-executable","cli-prompts-test", +"docsify-server-renderer","yargonaut", +"cp-file","eslint-plugin-playwright","rollup-plugin-async","autoprefixer-stylus","medium-zoom","tweezer.js","tinydate", +"detector","napa","aws-cognito","completion","csstree","mediaquery","is-whitespace","color-name","invalid","html4", +"babel-plugin-optimize-starts-with","mocha-jshint","broccoli-node-api","@types/underscore.string","@types/sane", +"@types/findup-sync","@types/esm","@types/console-ui","resolve-path","jasmine-ts","jasmine-co","gutenberg","wordpress", +"@wordpress/element","ethereum-test-network","@walletconnect/jsonrpc-http-connection","@walletconnect/jsonrpc-provider", +"@walletconnect/legacy-client","@types/qrcode","@walletconnect/crypto","dapp","cryptocurrency","jsonrpc","walletconnect", +"wallet","@ethersproject/address","@walletconnect/window-metadata","@walletconnect/window-getters", +"@walletconnect/safe-json","detect-browser","vuepress-plugin-smooth-scroll","@types/diacritics", +"vuepress-html-webpack-plugin","@vue/babel-preset-app","vue-server-renderer","webpack-chain","dropbox","tus", +"resumable uploads","webdav","tus-js-client","grant","express-prom-bundle","express-interceptor", +"@aws-sdk/s3-presigned-post","@aws-sdk/lib-storage","@tsparticles/updater", +"tsparticles-shape","@tsparticles/move","@tsparticles/interaction","http-status-emojis","@types/svg-parser","snake-case", +"infrastructure","graphqL","jam","koajs","content management framework","cmf","strapi","@types/webpack-hot-middleware", +"eslint-config-custom","@strapi/ts-zen","@strapi/content-type-builder","@strapi/typescript-utils", +"@strapi/review-workflows","@strapi/content-releases","@strapi/content-manager","@strapi/data-transfer", +"@strapi/permissions","get-latest-version","@strapi/generators","@strapi/cloud-cli","@strapi/database","@strapi/openapi", +"@types/nodemon","@strapi/upload","@strapi/logger","@strapi/utils","@strapi/types","@strapi/email","@strapi/admin", +"@strapi/i18n","@strapi/core","yalc","pothos","@pothos/test-utils","hotreload","webpack-plugin-serve", +"@types/module-alias","jest-location-mock","core-js-pure","hugo","gatsby","package-manager","npmjs", +"continuous-integration","dependency-management","p-locate","p-filter","@zmotivat0r/o0","frameworks","crud-generator", +"@nestjsx/util","@nestjsx/crud-request","unstyled","Vue","@types/react-router-config","@total-typescript/shoehorn", +"react-loadable-ssr-addon-v5-slorber","@docusaurus/utils-validation", +"@docusaurus/utils-common","@docusaurus/mdx-loader","react-router-config","@docusaurus/bundler","@docusaurus/logger", +"@docusaurus/babel","combine-promises","react-loadable","unixify","requireg","global-dirs","fs.extra", +"@asyncapi/multi-parser","@asyncapi/generator-hooks","@asyncapi/generator-helpers","@asyncapi/generator-components", +"@antora/expand-path-helper","iphone","tidev","titanium-sdk","accessible react select","react dropdown","react select", +"eslint-config-enact-proxy","@enact/ui-test-utils","@enact/docs-utils","@enact/spotlight","zarm-mobile","zarm-ui", +"@zarm-design/cli","@floating-ui/react-dom-interactions","@zarm-design/icons","@use-gesture/react","@zarm-design/bem", +"better-scroll","backendless.com","bannerize","backendless-console-sdk","backendless-rt-client","backendless-request", +"control-panel","eslint-plugin-astro","stability","bugsnag","iserror","@bugsnag/plugin-react-native-unhandled-rejection", +"@bugsnag/plugin-react-native-session","@bugsnag/plugin-react-native-hermes", +"@bugsnag/plugin-react-native-global-error-handler","@bugsnag/plugin-react-native-event-sync", +"@bugsnag/plugin-react-native-client-sync","@bugsnag/plugin-react","@bugsnag/plugin-network-breadcrumbs", +"@bugsnag/plugin-console-breadcrumbs","@bugsnag/delivery-react-native","@bugsnag/core","unist-util-remove-position", +"user-agents","@types/cls-hooked","@intlayer/core","@intlayer/chokidar","testops","allure","eslint-plugin-no-null", +"@types/babel__preset-env","tiptap","rich-text-editor","command-center","evaluation","template-expression", +"template-syntax","expressions","ibyar","aurora","@ibyar/decorators","synchronize","sync-threads","make-synchronous", +"make-synchronized","esbuild-react-compiler-plugin","esbuild-plugin-svgr","@types/negotiator", +"unist-util-visit-children","unist-util-remove","remark-smartypants","remark-reading-time","remark-math", +"react-medium-image-zoom","react-compiler-runtime","estree-util-value-to-estree","better-react-mathjax", +"@theguild/remark-mermaid","@shikijs/twoslash","@napi-rs/simple-git","@formatjs/intl-localematcher","weixin","wechat", +"picklog","gulp-convert-css-var","win32","ready","sockets","image-edit","chunk","uploader","rollup-plugin-string", +"rollup-plugin-module-replacement","postcss-prefixer","postcss-hexrgba","postcss-css-variables","babel-plugin-html-tag", +"tdesign","vite-plugin-tdoc","tdesign-publish-cli","rollup-plugin-styles","rollup-plugin-static-import", +"rollup-plugin-ignore-import","qrcode.vue","lodash.upperfirst","dom-parser","@tdesign/theme-generator", +"@tdesign/site-components","@soerenmartius/vue3-clipboard","@rollup/plugin-url","tdesign-icons-vue-next", +"@use-gesture/vanilla","ng-sortable","testcafe-browser-provider-saucelabs", +"riot.js","riotjs","data binding","minimalist","custom tags","rollup-plugin-riot","eslint-config-riot","curri","cumpa", +"bianco.query","bianco.attr","@wdio/sauce-service","@wdio/mocha-framework","@riotjs/util","@riotjs/register", +"@riotjs/prettier-config","@riotjs/compiler","@riotjs/dom-bindings","eslint-plugin-react-perf", +"eslint-config-airbnb-extended","@types/d3-time-format","@types/d3-interpolate","@stryker-mutator/vitest-runner", +"@stryker-mutator/typescript-checker","@storybook/react-vite","@storybook/builder-vite","@recharts/devtools", +"victory-vendor","decimal.js-light","@types/common-tags","md-writer","grow","autosize","@preconstruct/cli","use-latest", +"use-composed-ref","swipe-actions","swipe-to-delete","listview","touchscreen","swipeable","rollup-plugin-local-resolve", +"accordion","collapsible","@react-native/babel-preset","swagger themes","openapi explorer","openapi renderer", +"openapi viewer","openapi themes","openapi ui","swagger ui","Web Component","Custom Element","inspectpack", +"babel-plugin-template-html-minifier","xml-but-prettier","base64-arraybuffer","@apitools/openapi-parser","pwa-assets", +"mstile","image-generation","splash-screen","splashscreen", +"launch-image","chromium","@types/pretty","find-process","@storybook/addon-webpack5-compiler-swc", +"@base-ui-components/react","@storybook/test-runner","axe-playwright","@next/font","zepto","grunt-jekyll","dart-sass", +"graphical user interface","interaction","screen reader tags","keyboard navigation","WCAG 2.1","atomic design", +"app templates","design patterns","sticker sheets","theming","grommetux","grommet.io","testcafe-react-selectors", +"tarball-extract","react-shadow","jest-styled-components","grommet-theme-hpe","babel-plugin-transform-imports", +"@testing-library/testcafe","@storybook/source-loader","@storybook/manager-api","@storybook/addon-toolbars", +"grommet-icons","gradients","gradient","@bokub/prettier-config","tinygradient","handlebars-helper-slugify", +"handlebars-helper-rel","vinyl-named","undertaker-forward-reference","sassy-lists","motion-ui","is-empty-object", +"gulp4-run-sequence","gulp-sass-lint","gulp-check-deps","gulp-cache-bust","gulp-add-src","doiuse","corejs-typeahead", +"chai-jquery","@pouchlab/ui","pane","cupertino","gulp-open","elapsed-time-logger","aws-lambda","@smithy/types", +"accessor","valid","RegExp#flags", +"defineProperty","length","pnpm9","Uint8ClampedArray","description","robust","findLast","regular expressions", +"code points","positive","sameValueZero","collection.es6","some","group","Float64Array","reuse","handlers","groupBy", +"interrupts","toobject","enumerable","Array.prototype.findLast","negative","-0","tostringtag","0","Object.fromEntries", +"private data","ArrayBuffer","Function.prototype.name","coercible","operating-system","Symbol.toStringTag","censor", +"byteLength","workspace:*","take","Float32Array","rangeerror","Int32Array","Int16Array","last","findLastIndex", +"Array.prototype.contains","getter","trimRight","ArrayBuffer#slice","zero","byteOffset","ArrayBuffer.prototype.slice", +"tester","[[Prototype]]","negative zero","preserve-symlinks","typesafe","toSorted","Array.prototype.flat","Object", +"sharedarraybuffer","syntaxerror","weakmap","isConcatSpreadable","exit-code","Uint16Array", +"setter","Array.prototype.filter","Uint32Array","matchAll","channel","descriptors","configurable","Array","Int8Array", +"Reflect.getPrototypeOf","typeerror","@drftgyhuji7npm/repellendus-eum-et-itaque", +"@drftgyhuji7npm/rem-sint-necessitatibus-possimus","@asdfgertyjhnpm/nesciunt-molestias-reprehenderit-occaecati", +"docz-theme-default","docz-utils","docz","ng-packagr","@angular-eslint/schematics", +"@angular-eslint/eslint-plugin-template","@angular-eslint/eslint-plugin","@ionic/cli-framework-output", +"@whatwg-node/promise-helpers","@envelop/instrumentation","@envelop/types","webOS","splash screen","resources", +"@types/slice-ansi","@trapezedev/project","@capacitor/cli","@aneuhold/main-scripts","@aneuhold/local-npm-registry", +"@aneuhold/core-ts-lib","@aneuhold/core-ts-api-lib","adonisjs","@adonisjs/prettier-config","@adonisjs/eslint-config", +"@types/test-console","@adonisjs/assembler","ts-node-maintained","@adonisjs/tsconfig","@japa/file-system", +"@japa/expect-type","@japa/snapshot","@japa/runner","@japa/assert","edge.js","argon2","error-stack-parser-es", +"@adonisjs/http-server","@adonisjs/application","@adonisjs/encryption","@adonisjs/bodyparser","@poppinss/macroable", +"@poppinss/dumper","@poppinss/colors","@adonisjs/logger","@adonisjs/health","@adonisjs/events","@adonisjs/config", +"@poppinss/utils","youch-terminal","@adonisjs/repl", +"@adonisjs/hash","@adonisjs/fold","parse-imports","@adonisjs/env","@adonisjs/ace","youch","crawler-detection", +"app-detection","ai-detection","bot-detection","os-detection","device-detection","browser-detection","client-hints", +"ua-is-frozen","is-standalone-pwa","detect-europe-js","deserialize","deserialization","@type-challenges/utils", +"hyperlink","tex","@types/katex","software quality","architecture decision record","architecture decision", +"architectural decision record","architectural decision","any decision record","decision record","adr","telegraf", +"datadog","dogstatsd","tokenize","symlink-dir","@vue/cli-plugin-unit-mocha","@types/moment-locales-webpack-plugin", +"@commercetools/composable-commerce-test-data","thread-loader","moment-locales-webpack-plugin","graphql-request", +"babel-plugin-formatjs","@rollup/plugin-graphql","@formatjs/cli-lib","@commercetools/http-user-agent", +"@commercetools-frontend/mc-html-template","@commercetools-frontend/mc-dev-authentication", +"@commercetools-frontend/babel-preset-mc-app","@commercetools-frontend/assets", +"@commercetools-frontend/application-config","@commercetools-frontend/application-components","GraphQL","TSX","JSX", +"JSONC","toolchain","runstorm","execute-in-browser","typed-event-target","deepcopy-esm","trackpad","ring","pseudos", +"pointer","pen","mice","keyboards","focus","multiple selection","WAI-ARIA","omnibox","typeahead","autosuggest", +"enhanced input","flow-coverage-report","babel-plugin-no-side-effect-class-properties","compute-scroll-into-view", +"sort-array","tehtarik3","rengginangbasi","belalangkayu","popmotion","react animation","@thednp/dommatrix", +"@radix-ui/react-dialog","motion-utils","motion-dom","Storybook","Unit Testing","zuul-ngrok","bulk-require","browzers", +"zuul-localtunnel","tap-finished","stack-mapper","shallow-copy","istanbul-middleware","firefox-profile","express-state", +"char-split","JSON2","@externs/nodejs","DSL","runtime types","schemas","express-useragent","@types/express-useragent", +"binding","libzmq","ømq","0mq","zeromq","say","cowsay","pad-component","@jonahsnider/benchmark","registry-url", +"yeoman-character","humanize-string","yeoman-doctor","npm-keyword","root-check","parse-help","fullname","cli-list", +"lenient","false", +"true","no","yes","github-username","sinon-test","which-package-manager","mem-fs","grouped-queue","fly-import", +"@yeoman/conflicter","eslint-plugin-no-async-without-await","eslint-plugin-flow-vars","eslint-config-kittens", +"eslint-config-fb-strict","babel-preset-node5","babel-preset-es2015-node4","roadrunner","request-capture-har", +"repeating","loud-rejection","death","babel-plugin-transform-inline-imports-commonjs","yargs-test-extends", +"browserslist-generator","json2yaml","yaml2json","YAML","jest-ts-webcompat-resolver","terminal-emulator", +"xterm-benchmark","@types/utf8","@types/express-ws","@types/deep-equal","interpreter","scxml","finite automata", +"finite state machine","state machine","statechart","@scion-scxml/test-framework","regular expression", +"unicode-property-value-aliases","babel-plugin-transform-xregexp","babel-plugin-array-includes", +"@unicode/unicode-14.0.0","@babel/plugin-proposal-unicode-property-regex","func-xml","find-cache-directory", +"XMLSerializer","DOMParser","xmltest","dom-js","node-expat","conversion","converting","convertor","transforming", +"Javascript","processing instruction","doctype","CDATA","cdata","XML","globify", +"codacy-coverage","cash-cat","sylk","dif","dbf","xlsb","markdown-spellcheck","@sheetjs/uglify-js","exit-on-epipe", +"codepage","adler-32","crc-32","wmf","ssf","parse-headers","is-function","scrape","x-ray-parse","x-ray-crawler", +"enstore","WebSocket","HyBi","atomic","writeFile","linewrap","wordbreak","file manifest","offline","fetch requests", +"service worker","workboxjs","workbox","workbox-build","soft","return","newline","new-line","carriage","wiredep-cli", +"propprop","bower-config","winston3","logrotate","log-rotate","daily-rotate-file", +"@alcalzone/release-script-plugin-license","@alcalzone/release-script","file-stream-rotator","hock","cross-spawn-async", +"abstract-winston-transport","one-time","@dabh/diagnostics","unit.js","isexe","Promises/A+","cujo","microtime", +"exorcist","buster","poly","url-search-params","a gogo","web worker", +"webrtc data","web torrent","torrent","swarm","peers","peer-to-peer","p2p","mad science","bittorrent client", +"bittorrent","webtorrent-fixtures","path-esm","network-address","disc","chrome-net","bittorrent-tracker","airtap-system", +"airtap-manual","@webtorrent/semantic-release-config","ut_pex","ut_metadata","unordered-array-remove","uint8-util", +"torrent-piece","torrent-discovery","throughput","speed-limiter","random-iterate","parse-torrent","memory-chunk-store", +"lt_donthave","load-ip-set","join-async-iterator","immediate-chunk-store","fsa-chunk-store","fs-chunk-store", +"cross-fetch-ponyfill","create-torrent","cpus","chunk-store-iterator","cache-chunk-store","bittorrent-protocol", +"bittorrent-dht","bitfield","addr-to-ip-port","@webtorrent/http-node","@thaunknown/simple-peer","@silentbot1/nat-api", +"comet","networking","yaeti","typedarray-to-buffer","externals","@types/flat","dts-cli","prettier-plugin-package", +"eslint-config-shellscape","@types/webpack-sources","hot-reloading","reloading","@types/sockjs-client", +"@types/connect-history-api-fallback","@types/serve-static","@types/serve-index", +"bonjour-service","@types/bonjour","@types/sockjs","@types/on-finished","@fastify/express","@types/envinfo", +"@webpack-cli/configtest","@webpack-cli/info","analyzer","eslint-config-th0r-react","@carrotsearch/foamtree", +"postcss-icss-values","eslint-config-th0r","lodash.partial","xxhashjs","webassembly-feature","wast-loader", +"rehype-sanitize","meriyah","hash-wasm","coffee-loader","bundle-loader","assemblyscript","@types/xxhashjs", +"@types/neo-async","@codspeed/core","chrome-trace-event","acorn-import-phases","@webassemblyjs/wasm-parser", +"@webassemblyjs/wasm-edit","@webassemblyjs/ast","sol","web3-react-task","telegram-assistant", +"tailwind-animation-extension","ssl-http-with-docker","micro-ed25519-hdkey","kva-email-service","@solana/web3.js", +"@solana/spl-token","Ethereum","@truffle/hdwallet-provider","eslint-config-base-web3","web3-providers-ipc","ganache", +"in3","web3-providers-http","web3-rpc-providers","web3-providers-ws","web3-eth-personal","web3-eth-contract", +"web3-eth-accounts","web3-rpc-methods","web3-validator","web3-eth-iban","web3-eth-ens","web3-eth-abi","web3-errors", +"web3-utils","web3-types","web3-core","web3-net","web3-eth","sv-selenium", +"spawn-mocha-parallel","promise-simple","mu2","gulp-debug","bdd-with-opts","vargs","active-record","waterline-utils", +"waterline-schema","lodash.issafeinteger","encrypted-attr","win-spawn","outpipe","exec-sh","walkSync","sys", +"foreachasync","todomvc-app-css","de-indent","nightwatch-helpers","faked-promise","chromedriver","@vue/language-core", +"@types/nightwatch","@pinia/colada","unplugin-utils","muggle-string","ast-walker-scope","@vue-macros/common", +"pug-plain-loader","markdown-loader","@types/webpack-merge","@types/mini-css-extract-plugin","@intlify/vue-i18n-loader", +"intlify","@intlify/devtools-types","@intlify/core-base","@intlify/shared","@babel/plugin-syntax-pipeline-operator", +"@vue/runtime-dom","vscode-oniguruma","@types/iconv-lite","@types/clone","@types/url-join","@types/yazl","@types/read", +"typed-rest-client","parse-semver","keytar","load-plugins","vorpal-repl","vorpal-less","gulp-xo","node-localstorage", +"birpc","@vitest/pretty-format","why-is-node-running","@vitest/snapshot","@types/postcss-prefix-selector", +"@types/markdown-it-container","@mdit-vue/plugin-frontmatter","@mdit-vue/plugin-component","@types/markdown-it-emoji", +"@mdit-vue/plugin-headers", +"@mdit-vue/plugin-title","markdown-it-mathjax3","@mdit-vue/plugin-toc","@mdit-vue/plugin-sfc","@mdit-vue/shared", +"@iconify/utils","@iconify-json/simple-icons","@shikijs/types","@shikijs/core","focus-trap","Next.js","Remix","api-rest", +"rest-api","file-system-based","express-router","vite-plugin-rest-api","vite-plugin-api","api-routers","api-router", +"vite-plugin-builder","slash-path","dotenv-local","build-tool","dev-server","vtree","run-browser","x-is-string", +"x-is-array","ev-store","browser-split","classic","vinyl-adapter","vinyl-sourcemap","value-or-function","to-through", +"stream-composer","resolve-options","lead","is-valid-glob","fs-mkdirp-stream","remove-trailing-separator","teex", +"viewer.js","postcss-header","create-banner","err","extsprintf","@vercel-internals/get-package-json", +"@types/json-parse-better-errors","@alex_neo/jest-expect-message","@vercel-internals/constants", +"@types/jest-expect-message","json-parse-better-errors","@edge-runtime/node-utils","@vercel-internals/types", +"@types/write-json-file","@types/npm-package-arg","@types/load-json-file","@vercel/fs-detectors","line-async-iterator", +"@vercel/error-utils","@vercel/frameworks","@inquirer/password", +"@inquirer/checkbox","http-proxy-node16","@tootallnate/once","@inquirer/search","git-last-commit","pcre-to-regexp", +"@vercel/client","@types/dotenv","@types/chance","jaro-winkler","@types/title","@sentry/node","promisepipe","epipebomb", +"@vercel/remix-builder","@vercel/static-build","@vercel/detect-agent","@vercel/build-utils","@vercel/hydrogen", +"@vercel/backends","@vercel/redwood","@vercel/fastify","@vercel/express","@vercel/python","@vercel/nestjs", +"@vercel/elysia","@vercel/rust","@vercel/ruby","@vercel/node","@vercel/next","@vercel/hono","@vercel/blob","@vercel/koa", +"@vercel/fun","@vercel/h3","@vercel/go","@vant/icons","@vant/eslint-config","@vant/cli","@vant/area-data", +"vitest-canvas-mock","diffable-html","@vant/popperjs","@vant/use","sanitise","githook","find-parent-dir","diffs","bundt", +"rfc9562","is-async-supported","is-typed-array","is-generator-function","user agent","ua-parser","ua-parse","ua", +"browserscope","yamlparser","userprofile","urlopen","string.prototype.towellformed","@types/selfsigned","@types/proxy", +"@tsconfig/node18","@eggjs/oxlint-config","ylru","formstream","sauce-test","sauce-browsers","RFC6570","RFC 6570", +"RFC3986","RFC 3986","query string","unified resource identifier","unified resource locator","url template", +"uri template","url manipulation","uri manipulation","url mutation","uri mutation","urn","notifier","fixture-stdout", +"is-npm","pupa","uncompress","match-stream","pullstream","visit","nlcst","xast","non-repeating","unique-random", +"@types/extend","trough","jsondiffpatch","dns-packet","@metcoder95/https-pem","browserify-header","pretty-bytes-cli", +"untyped","mkdist","citty","parsel-js","media-query-fns","@uiw/react-tree-checked","@uiw/react-tree", +"@uiw/react-transfer","@uiw/react-tooltip","@uiw/react-time-picker","@uiw/react-textarea","@uiw/react-tag", +"@uiw/react-tabs","@uiw/react-table","@uiw/react-switch","@uiw/react-steps","@uiw/react-split","@uiw/react-slider", +"@uiw/react-select","@uiw/react-search-tree","@uiw/react-search-select","@uiw/react-rate","@uiw/react-radio", +"@uiw/react-progress","@uiw/react-portal", +"@uiw/react-popover","@uiw/react-pin-code","@uiw/react-pagination","@uiw/react-notify","@uiw/react-month-picker", +"@uiw/react-modal","@uiw/react-message","@uiw/react-menu","@uiw/react-loader","@uiw/react-list","@uiw/react-layout", +"@uiw/react-grid","@uiw/react-form","@uiw/react-file-input","@uiw/react-empty","@uiw/react-dropdown","@uiw/react-drawer", +"@uiw/react-divider","@uiw/react-descriptions","@uiw/react-date-picker","@uiw/react-date-input", +"@uiw/react-copy-to-clipboard","@uiw/react-collapse","@uiw/react-checkbox","@uiw/react-cascader","@uiw/react-carousel", +"@uiw/react-card","@uiw/react-calendar","@uiw/react-button-group","@uiw/react-breadcrumb","@uiw/react-badge", +"@uiw/react-back-top","@uiw/react-avatar","@uiw/react-auto-link","@uiw/react-alert","@uiw/react-affix","@uiw/formatter", +"random-bytes","jsmin","ecma","definition","tslint-config-standard","typings-core","promise-finally","sass-svg", +"postcss-import-sync2","jest-environment-node-single-context","@types/reserved-words", +"@types/postcss-modules-extract-imports","@types/icss-utils","@types/postcss-modules-scope", +"@types/postcss-modules-local-by-default","intelli-espower-loader","@types/power-assert","commandpost", +"eslint-formatter-autolinkable-stylish","mocha-fivemat-progress-reporter","monocart-coverage-reports", +"@dprint/typescript","@esfx/canceltoken","@dprint/formatter","@types/gulp-sourcemaps","@google-cloud/spanner", +"standard-changelog", +"@types/gulp-rename","@sap/hana-client","@types/sha.js","gulpclass","@sqltools/formatter","sql-highlight", +"prettier-tslint","mongoose-findorcreate","mongodb-memory-server-global","@types/mongoose","kindlegen","pandoc","ebook", +"concatenate","cli-prompt","JsDocs","material-3","typedoc-theme","@material/material-color-utilities", +"@gerrit0/mini-shiki","checking","media-typer","@typescript/vfs","tagged-tag","type-coverage-core","Twitter", +"twemoji-parser","signatures","salsa20","public","poly1305","nacl","ed25519","curve25519","tweetnacl-util", +"tap-browser-color","grunt-concat-sourcemap","mocha-unfunk-reporter","jshint-path-reporter","grunt-regex-replace", +"grunt-push-release","grunt-component-io","grunt-markdown","grunt-mocha","turndown-attendant","@mixmark-io/domino", +"typescript runner","joycon","typescript-tslint-plugin","ts-lint","tslint-consistent-codestyle", +"tslint-microsoft-contrib","tslint-misc-rules","tslint-immutable","@types/make-dir","tslint-divid","codelyzer", +"sync-content","polite-json","jsonc-simple-parser","typedefinitions","typedefs","@types/strip-bom","inference system", +"js rule engine","javascript rule engine","rules engine","rule engine","rete","bre","power-assign","omit-deep", +"fast-json-patch","util.promisify","ntypescript","@swc/wasm","@cspotcode/source-map-support","v8-compile-cache-lib", +"@tsconfig/node14","@tsconfig/node12","@tsconfig/node10","create-require","code refactor","static analysis", +"code-block-writer","@ts-morph/common","cli-tool","migration","migrate","typescript-loader","babel-preset-es2016", +"aggregate","html-tokenize","html-select","forEach","typedarray.prototype.slice","trace","tinytim","RFC2965","RFC6265", +"set-cookie","of","processmd","node-resemble-js","Typescript","expo","react-native-notification","toastify", +"react-native-toastify","react-native toast","pushalert","@types/react-native-vector-icons","method","thread pool", +"worker threads","tinycolor","@deno/shim-deno-test","tinylibs","bee","tinper","less-plugin-inline-urls", +"tinper-bee-core","gulp-css-wrap","gulp-cleancss","bee-input-group-addon","bee-loading-state","bee-search-panel", +"bee-progress-bar", +"bee-notification","bee-input-number","bee-form-control","bee-complex-grid","bee-button-group","bee-autocomplete", +"bee-tree-select","bee-page-layout","bee-input-group","bee-colorpicker","bee-transition","bee-timepicker", +"bee-popconfirm","bee-pagination","bee-form-group","bee-datepicker","bee-breadcrumb","bee-clipboard","bee-transfer", +"bee-timeline","bee-dropdown","bee-collapse","bee-checkbox","bee-cascader","bee-carousel","bee-calendar","bee-tooltip", +"bee-svgicon","bee-popover","bee-overlay","bee-message","bee-loading","bee-backtop","bee-animate","bee-upload", +"bee-switch","bee-slider","bee-select","bee-navbar","bee-locale","bee-layout","bee-drawer","bee-button","bee-anchor", +"bee-table","bee-radio","bee-panel","bee-modal","bee-menus","bee-label","bee-badge","bee-alert","bee-affix","bee-tree", +"bee-tile","bee-tabs","bee-step","bee-rate","bee-icon","bee-form","bee-tag","bee-dnd","stats","profile", +"number-is-nan","unexpand","stream-spigot","polendina","hundreds","user-streams","node-stdlib-browser","webxr","webgpu", +"webaudio","webgl2","augmented-reality","virtual-reality","three.js","eslint-config-mdcs","saucie", +"chai-shallow-deep-equal","bluebird-retry","styled_string","spawn-args","printf","fireworm","test double", +"teenytest-promise","teenytest","is-number","headerify","cross-conf-env","stringify-object-es5", +"@types/properties-reader","@types/async-lock","ssh-remote-port-forward","properties-reader","docker-compose", +"@types/dockerode","QA","testcafe-browser-provider-browserstack","recursive-copy","openssl-self-signed-certificate", +"mocha-reporter-spec-with-retries","gulp-step","gulp-mocha-simple","gulp-ll-next","gulp-clone","express-ntlm", +"eslint-plugin-hammerhead","dom-walk","caller","browserstack-connector","@types/useragent","@types/dedent", +"@types/callsite","@testcafe/publish-please","@ffprobe-installer/ffprobe","@devexpress/gulp-qunit-harness", +"url-to-options","unquote","time-limit-promise","testcafe-selector-generator","testcafe-reporter-spec", +"testcafe-reporter-minimal","testcafe-reporter-list","testcafe-reporter-json","testcafe-legacy-api", +"testcafe-hammerhead","testcafe-browser-tools","replicator","read-file-relative","promisify-event","pinkie","os-family", +"moment-duration-format-commonjs","log-update-async-hook","is-podman","import-lazy","get-os-info","device-specs", +"chrome-remote-interface","bowser","@devexpress/callsite-record","@devexpress/bin-v8-flags-filter","example","unlinted", +"sinon-mocha-test","sinon-assert-stub","only-allow","spawn-process","multiline-ts","@test-runner/tom", +"@test-runner/oneline-view","@test-runner/live-view","@test-runner/default-view","@test-runner/core","@types/uglify-js", +"astring","@ls-lint/ls-lint","@jridgewell/source-map","ibm","80s","visualwidth","resumer","32-bit","textbuffer", +"screenbuffer","gpm","input field","true color","256 colors","@cronvel/get-pixels","nextgen-events","string-kit", +"tree-kit","lazyness","seventh","node-addon","tglib","telegram-client-api","telegram-api","cz-format-extension", +"@parcel/transformer-typescript-types","@parcel/packager-ts","front end","fast-fifo","b4a","events-to-array","chmodr", +"@isaacs/fs-minipass","yallist", +"chownr","harness","npm-run-posix-or-windows","has-dynamic-import","dotignore","array.prototype.every","@ljharb/through", +"@ljharb/resumer","tapes","tap-out","tapjs plugin","tapjs","@tapjs/worker","@tapjs/typescript","@tapjs/test", +"@tapjs/stdin","@tapjs/spawn","@tapjs/snapshot","@tapjs/run","@tapjs/node-serialize","@tapjs/mock","@tapjs/intercept", +"@tapjs/fixture","@tapjs/filter","@tapjs/core","@tapjs/chdir","@tapjs/before-each","@tapjs/before","@tapjs/asserts", +"@tapjs/after-each","@tapjs/after","@tailwindcss/oxide","override","classList","className","@codspeed/vitest-plugin", +"cqrs","cqs","json-lines-client","assertthat","roboter","nodeenv","commands-events","flaschenpost","stethoskop", +"processenv","json-lines","datasette","nocache","crypto2","uuidv4","timer2","partof","lusca","limes","draht","hase", +"construct-style-sheets-polyfill","@jsenv/file-size-impact","symbol-es6","chassis","BIOS","vm","virtualbox", +"virtual box","wifinetworks","wifi","bluetooth","disk layout","smart","graphic controller","graphic card", +"docker processes","docker stats","battery","internet","users","printer","iface","network stats","network connections", +"network interfaces","netstats","block devices","diskio","fsstats","socket type","cores","logical cores", +"physical cores","cpuload","netbsd","openbsd","freebsd","sysinfo","system information","flowgen2","then-request", +"http-response-object","jinja","travis-cov","mocha-phantomjs","still","nodelint","istanbul-badges-readme","swagger UI", +"swagger-templates","swagger-nestjs","readmeio","@readme/eslint-config","multilang-extract-comments","promise.any", +"autogen","tape-promise","precache","git-release-notes","eslint-plugin-jest-formatting","@resvg/resvg-js","prettysize", +"postcss-easy-import","@types/pug","@kiwi/prettier-config","@kiwi/eslint-config","svelte-language-server","svelte2tsx", +"vscode-languageserver-protocol","vscode-languageserver","@types/sade", +"zimmerframe","esrap","16m","truecolor","capability","supports","promised","super","frisbee","tinyify","should-http", +"bootstrap-styl","github-contributors-list","postcss-resolve-nested-selector","postcss-media-query-parser", +"prettier-config-hudochenkov","postcss-styled-syntax","eslint-config-hudochenkov","postcss-sorting","z-index","keyword", +"delaration-strict-value","babel-register-ts","css-values","shortcss","stylelint-config","postcss-sass", +"@types/svg-tags","@types/postcss-less","@types/imurmurhash","@types/globjoin","@types/global-modules", +"@types/file-entry-cache","@types/balanced-match","svg-tags","mathml-tag-names","globjoin","hacks","hack","zeit", +"stylis-rule-sheet","ts-toolbelt","stylis-plugin-rtl","@types/shallowequal","@types/js-beautify","css-to-react-native", +"Android","dictionary","style dictionary","starlight-links-validator","jsdoc-tsimport-plugin","jsdoc-escape-at","hanbi", +"@web/test-runner-commands","@shoelace-style/shoelace","@rollup/browser","@esm-bundle/chai-as-promised","path-unified", +"@zip.js/zip.js","@bundled-es-modules/memfs","@bundled-es-modules/glob","@bundled-es-modules/deepmerge","upstart", +"strongops", +"strong-cluster-control","strong-cli","slowest functions","slc","pm","ops","openshift","nodeops","master","heroku", +"event loop","alerts","Platform","LoopBack","swagger-ui","strong-swagger-ui","strong-debugger","strong-start", +"strong-registry","strong-mesh-models","strong-deploy","strong-build","strong-arc","nodefly-register", +"loopback-sdk-angular-cli","generator-loopback","credit cards","payment processing","undici-types","wcswidth", +"get-east-asian-width","xhtml","stri","mixed","jsp","ranges-invert","ast-monkey-traverse","string-left-right", +"ranges-push","ranges-apply","codsen-utils","s","S","stringjs","string.js","gulp-rimraf","livestreaming","livestream", +"music-metadata","Assert","into-stream","funsert","inside","findit2","jinja2","django-templates", +"django-pattern-library","patternlab","storybookjs","eslint-config-torchbox","@storybook/addon-storyshots-puppeteer", +"@storybook/addon-storyshots","@glen/jest-raw-loader","design-systems", +"@fal-works/esbuild-plugin-global-externals","@aw-web-design/x-default-browser","@types/react-syntax-highlighter", +"@devtools-ds/object-inspector","@radix-ui/react-scroll-area","react-syntax-highlighter","@react-aria/interactions", +"@react-stately/overlays","react-transition-state","lazy-universal-dotenv","@react-aria/overlays","@react-aria/landmark", +"use-resize-observer","get-npm-tarball-url","@storybook/docs-mdx","@react-types/shared","@react-stately/tabs", +"@react-aria/toolbar","@ngard/tiny-isequal","@react-aria/utils","deep-object-diff","@react-aria/tabs","react-inspector", +"browser-dtector","@yarnpkg/libzip","flush-promises","@types/npmlog","fetch-retry","modern-tar","picoquery","exsolve", +"store2","aggregation","metric","etsy","winser","simple-commit-message","pre-git","git-issues","dont-crack","deps-ok", +"ban-sensitive-files","lazy-ass","check-more-types","recommended","stringify-package","dotgitignore", +"conventional-changelog-config-spec","version-guard","long-stack-traces","shuruhatik","firestore","st","sri generator", +"sri string","sri hash","sri","subresource integrity","integrity","bcrypt-pbkdf","asn1","css-sprite","coordinates", +"sprites", +"through2-spy","object-stream","sprity-lwip","sprity-css","prettydiff","gulp-benchmark","callback-stream","binary-split", +"string-to-stream","introspection-query","introspection","bdd-lazy-var","microfiber","@graphql-tools/load-files", +"@anvilco/apollo-server-plugin-introspection-metadata","@socket.io/component-emitter","io","socket.io-adapter", +"base64id","xml-crypto","axios-ntlm","stylish standard","stylish reporter","stylish formatter","stylish for standard", +"standard pretty","snazzy standard","pretty output","standard-json","urlify","github-changes","slow","tablify", +"prettier-bytes","math-sum","js-extend","get-folder-size","random-item","is-fullwidth-code-point","seperator","skapi", +"basic-node-server","amazon-cognito-identity-js","qpass","get size","directory size","file size","performance budget", +"budget","nanospinner","bytes-iec","@polka/url","browserify-handlebars","sinopia-htpasswd","render-readme", +"express-json5","fs-ext","crypt3","mocks-and-spies","clock","esbuild-plugin-istanbul","@studio/changes", +"@sinonjs/eslint-plugin-no-prototype-methods","@sinonjs/samsam", +"eslint-config-important-stuff","js-correct-lockfile","source control","@simple-git/babel-config", +"@kwsites/promise-result","@kwsites/promise-deferred","@kwsites/file-exists","transforms","shelljs-plugin-open", +"semver-sort","quiet-grunt","grunt-endline","eslint-config-shouldjs","should-util","should-type-adaptors","should-type", +"should-format","should-equal","tinyid","shorten","bitly","short","makefile","travis-check-changes","vips","libvips", +"thumbnail","dzi","@img/sharp-libvips-win32-arm64","@img/sharp-libvips-win32-ia32","@img/sharp-libvips-dev-wasm32", +"@img/sharp-libvips-win32-x64","@img/sharp-libvips-dev","@emnapi/runtime","@cpplint/cli","exif-reader","emnapi", +"@img/colour","isequalwith","flow-remove-types","eventbridge","jsii-pacmak","jsii-docgen","jsii-diff","jsii", +"@types/aws4","@types/aws-iot-device-sdk","json-format-highlight","caporal","aws-iot-device-sdk", +"@aws-sdk/client-lambda","@aws-sdk/client-eventbridge","@aws-cdk/aws-lambda-python-alpha","serverless.com", +"amazon web services","aws lambda","serverless plugins","@serverless/test","@commitlint/cz-commitlint", +"@serverless/utils","temp-path","@vercel/style-guide","@zeit/schemas","update-check", +"UART","sms","sms gateway","serial port","sensor","RFID","nodebots","modem","data logging","COM","com port","ccTalk", +"@serialport/parser-inter-byte-timeout","@serialport/parser-packet-length","@serialport/parser-slip-encoder", +"@serialport/parser-spacepacket","@serialport/parser-byte-length","@serialport/parser-delimiter", +"@serialport/parser-readline","@serialport/parser-cctalk","@serialport/parser-regex","@serialport/parser-ready", +"@serialport/bindings-cpp","@serialport/binding-mock","@serialport/stream","object relational mapper","snowflake","db2", +"semantic-release-fail-on-major-bump","esdoc-ecmascript-proposal-plugin","esdoc-inject-style-plugin", +"esdoc-standard-plugin","js-combinatorics","@octokit/types","snowflake-sdk","chai-datetime","pg-hstore","node-hook", +"p-settle","p-props","retry-as-promised","toposort-class","sequelize-pool","dottie","wkx","nlp","Sentimental","product", +"viable","minimum","micro service","micro-services","micro-service","summary","seneca-promisify","seneca-joi", +"seneca-error-test","seneca-entity","lab-transform-typescript","gex","bench","@seneca/test-plugin","use-plugin", +"seneca-transport", +"rolling-stats","patrun","ordu","optioner","lodash.defaultsdeep","jsonic","gubu","gate-executor","eraro","@hapi/joi", +"semicolon","bikeshed","terser-webpack-plugin-legacy","ta-scripts","semantic-ui-css","satisfied", +"react-universal-component","react-static-routes","react-static","react-source-render","react-codesandboxer","react-ace", +"chai-enzyme","babel-plugin-universal-import","babel-plugin-transform-react-handled-props","babel-plugin-filter-imports", +"anchor-js","@percy/cypress","@percy/cli","@babel/standalone","@artsy/fresnel","keyboard-key", +"@semantic-ui-react/event-stack","@fluentui/react-component-ref","@fluentui/react-component-event-listener","author", +"stream-buffers","mockserver-client","file-url","p-each-series","import-from-esm","git-log-parser","find-versions", +"env-ci","aggregate-error","@semantic-release/error","@bazel/runfiles","seed","ecdsa","ecdh","ec","drink","food", +"element-model","bare-script","markdown-model","node-sass-glob-importer","material-components-web", +"eslint-config-apostrophe","filename","mktemp","truncate-utf8-bytes","sailsjs","web-framework", +"session-file-store","sails.io.js","sails-hook-sockets","sails-hook-orm","root-require","@sailshq/request", +"machinepack-fs","whelk","sort-route-addresses","skipper","sails-stringfile","sails-generate","merge-dictionaries", +"merge-defaults","machinepack-redis","machinepack-process","machine-as-action","include-all","i18n-2","@sailshq/csurf", +"common-js-file-extensions","captains-log","@sailshq/router","prepublish","dist-tag","mock-env","uninitialized", +"node security","buffer allocate","Observables","ReactiveExtensions","ReactiveX","web-streams-polyfill", +"tslint-no-unused-expression-chai","tslint-no-toplevel-property-access","tslint-etc","rollup-plugin-inject", +"rollup-plugin-alias","check-side-effects","@angular-devkit/build-optimizer","Reactive","FRP","LINQ","run series","ltr", +"rtl","ember-cli-progress","amphtml-validator","@types/amphtml-validator","@ampproject/toolbox-optimizer","diagram", +"sunburst","visualizer","@types/d3-scale","@types/d3-hierarchy","@types/d3-force","@types/d3-color","@types/d3-array", +"rollup-plugin-re","@types/graphlib","@types/find-cache-dir","sourceMappingURL","browserify-fs", +"rollup-plugin-strip-banner", +"gulp-conventional-changelog","spdx-satisfies","spdx-expression-validate","package-name-regex","commenting","@types", +"@types/d3-drag","removal","rollup-plugin-jsx","js-cleanup","wasm-pack","npm-audit-resolver","flru", +"acorn-import-assertions","@vue/language-server","@shikijs/vitepress-twoslash","@mermaid-js/mermaid-cli","learning", +"autohotkey","recognition","pixel","Automation","targetpractice","run-script-os","package-json-from-dist", +"fast-deep-copy","fastcopy","fastclone","deepcopy","deep-clone","plain-object-clone","nano-copy","fastest-json-copy", +"leak","query language","reql","NoSQL","terminate","sigint","quit","DTrace","autocannon-compare","restify-clients", +"watershed","escape-regexp-component","restify-errors","ewma","autodocumentate","documentate","vesta", +"semantic-release-telegram","node-package-tester","fatum","eslint-plugin-scanjs-rules","eslint-plugin-no-secrets", +"eslint-plugin-censor","eslint-config-incredible","conventional-changelog-eslint","myrmidon","adjust-sourcemap-loader", +"supports-preserve-symlinks-flag","path-parse","micro-memoize","eslint-plugin-typescript", +"@typescript/analyze-trace","index.js","taper","is-typedarray","har-validator","forever-agent","tunnel-agent", +"oauth-sign","aws-sign2","caseless","autolinker","wooorm","retext-preset-wooorm", +"remark-lint-no-unneeded-full-reference-link","remark-lint-no-unneeded-full-reference-image", +"remark-lint-no-reference-like-url","remark-lint-no-paragraph-content-indent","remark-lint-no-html", +"remark-lint-no-hidden-table-cell","remark-lint-no-heading-like-paragraph","remark-lint-no-empty-url", +"remark-lint-no-duplicate-headings-in-section","remark-lint-no-duplicate-defined-urls","remark-lint-media-style", +"remark-lint-mdx-jsx-unique-attribute-name","remark-lint-mdx-jsx-shorthand-attribute","remark-lint-mdx-jsx-self-close", +"remark-lint-mdx-jsx-quote-style","remark-lint-mdx-jsx-no-void-children","remark-lint-mdx-jsx-attribute-sort", +"remark-lint-maximum-line-length","remark-lint-maximum-heading-length","remark-lint-link-title-style", +"remark-lint-definition-sort","remark-lint-correct-media-syntax","retext-preset-github", +"remark-lint-no-heading-punctuation","remark-license","remark-heading-gap","remark-contributors","mermaidjs", +"remark-slug","footnote","unified-args","markdown-extensions","intern","distribution","remark-preset-webpro", +"mock-stdio","mentoss","@octokit/request-error","wildcard-match","issue-parser","@phun-ky/typeof", +"@nodeutils/defaults-deep","hast-util-properties-to-mdx-jsx-attributes","external","is-absolute-url","regenerator", +"reflect","gulp-sequence","gulp-live-server","gulp-emu","ecmarkup", +"redux-middleware","side effects","effects","saga","@redux-saga/core","lodash-webpack-plugin","redux-immutable", +"insert-line","actions","eslint-config-unicorn-camelcase","@vitest/coverage-c8","reduce-reducers","just-curry-it","elm", +"predictable","docusaurus-preset","api-doc","@docusaurus/theme-common","docusaurus-plugin-redoc", +"docusaurus-theme-redoc","@redocly/openapi-core","@redis/time-series","@redis/search","@redis/json","@redis/client", +"@redis/bloom","lister","microcomponentization","higher-order","change-emitter","prepare","pretty-printing", +"refactoring","flow-parser","@types/esprima","line by line","tap-mocha-reporter","esbuild-plugin-alias","react-prism", +"holderjs","customize-cra","es6-module-jstransform","fixed","@babel/plugin-transform-flow-comments", +"@babel/preset-stage-2","eslint-plugin-relay","eslint-config-react","react-codemirror","transitions","transition-group", +"populist","jasmine-tapreporter","grunt-jest","es3ify","coverify","jstransform","commoner","alert", +"vite-plugin-istanbul","@4tw/cypress-drag-drop","react-testing","300ms","TapEventPlugin","svginjector", +"scalable vector graphics","strip-shebang","keymirror","eslint-config-tamia","dog-names","deepfreeze","deabsdeep", +"@types/webpack-dev-server","@types/type-detect","@types/terser-webpack-plugin","@types/markdown-to-jsx", +"@types/keymirror","@types/escodegen","@types/copy-webpack-plugin","@types/buble","type-detect","strip-html-comments", +"react-group","react-docgen-displayname-handler","react-docgen-annotation-resolver","qss","q-i", +"mini-html-webpack-plugin","jss-plugin-nested","jss-plugin-isolate","jss-plugin-global","jss-plugin-default-unit", +"jss-plugin-compose","jss-plugin-camel-case","jss","javascript-stringify","glogg","function.name-polyfill", +"es6-object-assign","common-dir","clipboard-copy","@vxna/mini-html-webpack-template","@tippyjs/react","orbit", +"Image slider","why-did-you-update","slick-carousel","foundation-apps","json2mq","redux-devtools-log-monitor", +"redux-devtools-dock-monitor","redux-devtools","matchMedia","respond","media queries","match-media-mock", +"@types/matchmediaquery","@types/match-media-mock","@types/hyphenate-style-name","matchmediaquery","hermes-eslint", +"eslint-plugin-ft-flow","@rollup/plugin-sucrase","onclickoutside","outside","onclick","require-hijack","number-format", +"currency", +"react-transform-hmr","@cmfcmf/docusaurus-search-local","css-social-buttons","@entypo-icons/core","simple-line-icons", +"svgicons2svgfont","oslllo-svg-fixer","feather-icons","evil-icons","fontisto","svg2ttf","keychain", +"@react-native/typescript-config","@react-native-community/cli","mobile-development","app-framework", +"@react-native/virtualized-lists","hermes-compiler","motion","tween","transitiongroup","lodash.range", +"karma-jasmine-diff-reporter","inject-loader","babel-browser-transform","exenv","rehype-starry-night", +"eslint-config-es5","intl-messageformat","@formatjs/intl","@formatjs/icu-messageformat-parser", +"@formatjs/ecma402-abstract","useIntersectionObserver","useInView","inview","lazy load","intersection", +"@babel/plugin-proposal-async-generator-functions","react-mount","enzyme-adapter-react-15","jest-fixed-jsdom","noscript", +"meta","head","nfl","karma-html-reporter","karma-chai-sinon","eslint-config-nfl","react-side-effect","crash","redbox", +"overlay","settle-promise","jest-fetch-mock","webpack-blocks","imagemin-cli","@size-limit/webpack-why", +"@commitlint/prompt","@babel/plugin-proposal-logical-assignment-operators","file-selector","attr-accept", +"documentation-generation","@react-dnd/shallowequal","@react-dnd/invariant", +"detect-port-alt","is-root","date-fns-tz","@react-docgen/cli","copy to clipboard","html-webpack-tags-plugin","photoshop", +"sketch","testdom","react-mark","react-context","jsx-loader","@storybook/addon-centered","@case/eslint-config", +"reactcss","material-colors","@icons/material","ecosystem-react","prop-types-extra","uncontrollable","@restart/hooks", +"@restart/ui","@apollo/react-ssr","@apollo/react-hooks","@apollo/react-hoc","@apollo/react-components", +"@apollo/react-common","react-addon","@types/responselike","react-tooltip","react-slider","father-build","unpipe", +"sentry","timed-out","sample","point-free","sanctuary-identity","sanctuary","envvar","babel-plugin-import-export-rename", +"requestAnimationFrame","testling","js-reporters","exists-stat","qunit-plugin","@release-it-plugins/lerna-changelog", +"@types/qunit","dom-element-descriptors","@qunitjs/browserstack-runner","eslint-plugin-json-es", +"transpile-webpack-plugin","@types/highlight.js","quill-delta","parchment","shift","dequeue","linked list","iterate", +"ordered","task queue","job scheduling","job queue","queue js", +"work","LIFO","lifo","FIFO","tap-esm","retape","searchparams","parameter","param","split-on-first", +"decode-uri-component","unassertify","has-override-mistake","common-shakeify","@browserify/uglifyify", +"@browserify/envify","qr code","fluent","purge","typed-query-selector","chromium-bidi","domain","dns","idna","idn", +"tap-bail","jstransformer-markdown-it","jstransformer-uglify-js","pug-strip-comments","pug-code-gen","pug-runtime", +"pug-filters","pug-parser","pug-linker","pug-lexer","pug-load","elegant-status","cp-sugar","native-hello-world", +"module-not-found-error","fill-keys","x-forwarded-for","via","mod_proxy","privoxy","squid","@types/args", +"basic-auth-parser","natives","@types/jasminewd2","protobuf","browserify-wrap","@protobufjs/utf8","@protobufjs/pool", +"@protobufjs/path","@protobufjs/inquire","@protobufjs/float","@protobufjs/fetch","@protobufjs/eventemitter", +"@protobufjs/codegen","@protobufjs/base64","@protobufjs/aspromise","svg-event-attributes","svg-element-attributes", +"html-event-attributes","interact","sisteransi","customize","svn","URIjs","node-rest-client","prism","webfont","regexpp", +"gulp-terser","docdash","MCP","MongoDB","SQLServer","SQL Server","MSSQL","CockroachDB","Postgres","SQL","TS","JS", +"prisma2","Prisma CLI","Prisma","ORM","@opentelemetry/context-async-hooks","@prisma/client-generator-registry", +"@prisma/driver-adapter-utils","@prisma/management-api-sdk","@prisma/credentials-store","@prisma/adapter-libsql", +"@prisma/fetch-engine","checkpoint-client","@prisma/internals","@prisma/generator","@prisma/migrate","@prisma/client", +"@libsql/client","@prisma/debug","line-replace","@prisma/dmmf","ts-pattern","package-up","@prisma/studio-core", +"@prisma/engines","@prisma/config","hg","mercurial","hrtime","period","milliseconds","parse-ms","jitter","renderkid", +"localized","si","glob-fs","organize-imports","imports","prettier-plugin","@vue/language-plugin-pug", +"jest-specific-snapshot","binary-searching", +"dom diff","kolorist","errorstacks","babel-plugin-transform-rename-properties","@actions/glob","@actions/github", +"package-json-filterify","licensify","dereserve","universal-deep-strict-equal","power-assert-formatter","empower", +"level-write-stream","double-ended-queue","fetch-cookie","level-codec","spark-md5","vuvuzela","ltgt","putil-varhelpers", +"putil-promisify","power-tasks","postgres-bytea","lightning-pool","doublylinked","@jsopen/objects","lists", +"postcss-place","postcss-page-break","postcss-overflow-shorthand","postcss-logical","postcss-lab-function", +"postcss-gap-properties","postcss-focus-within","postcss-double-position-gradients","postcss-dir-pseudo-class", +"postcss-clamp","css-prefers-color-scheme","css-has-pseudo","css-blank-pseudo","@csstools/postcss-unset-value", +"@csstools/postcss-trigonometric-functions","@csstools/postcss-text-decoration-shorthand", +"@csstools/postcss-system-ui-font-family","@csstools/postcss-syntax-descriptor-syntax-production", +"@csstools/postcss-stepped-value-functions","@csstools/postcss-sign-functions","@csstools/postcss-scope-pseudo-class", +"@csstools/postcss-relative-color-syntax","@csstools/postcss-random-function", +"@csstools/postcss-property-rule-prelude-list","@csstools/postcss-position-area-property", +"@csstools/postcss-normalize-display-values","@csstools/postcss-nested-calc","@csstools/postcss-mixins", +"@csstools/postcss-media-queries-aspect-ratio-number-values","@csstools/postcss-media-minmax", +"@csstools/postcss-logical-viewport-units","@csstools/postcss-logical-resize", +"@csstools/postcss-logical-overscroll-behavior","@csstools/postcss-logical-overflow", +"@csstools/postcss-logical-float-and-clear","@csstools/postcss-light-dark-function","@csstools/postcss-initial", +"@csstools/postcss-ic-unit","@csstools/postcss-hwb-function","@csstools/postcss-gradients-interpolation-method", +"@csstools/postcss-gamut-mapping","@csstools/postcss-font-format-keywords","@csstools/postcss-exponential-functions", +"@csstools/postcss-contrast-color-function","@csstools/postcss-content-alt-text", +"@csstools/postcss-color-mix-variadic-function-arguments","@csstools/postcss-color-mix-function", +"@csstools/postcss-color-function-display-p3-linear","@csstools/postcss-color-function", +"@csstools/postcss-alpha-function","fixes","normalizes","@csstools/postcss-tape","sanitize.css", +"postcss-browser-comments","@csstools/normalize.css","nestings","children","atrules","css-modules","font-weight", +"font-family","postcss-dark-theme-class","postcss-short","midas","postcss.config.js","postcssrc","node modules", +"image-set","sss","PHP","quickapp","postcss-styl","flexbugs","@counter-style","@keyframes","at-rules","empty", +"webpack-nano-logs","to-slug-case","react-svg-inline","postcss-browser-reporter","npmpub","nano-logger", +"metalsmith-watch","metalsmith-url","metalsmith-rss","metalsmith-rename","metalsmith-react","metalsmith-md", +"metalsmith-filenames","metalsmith-collections","markdown-it-toc-and-anchor","isogram","eslint-config-i-am-meticulous", +"cssrecipes-vertical-rhythm","cssrecipes-utils","cssrecipes-grid","cssrecipes-defaults", +"cssrecipes-custom-media-queries","postcss-selector-matches", +"postcss-pseudoelements","postcss-media-minmax","postcss-initial","postcss-image-set-polyfill", +"postcss-font-family-system-ui","postcss-color-rgba-fallback","postcss-color-rgb","postcss-color-hwb", +"postcss-color-hsl","postcss-color-gray","postcss-color-function","postcss-apply","pixrem","rgba","hsla","calculation", +"jison-gho","source map","attached","position","nuget-publish","@popperjs/test-utils","@popperjs/test", +"@popperjs/eslint-config-popper","@popperjs/bundle","curried color manipulation","color manipulation","color manipulate", +"inline-styles","glamor","tsgen","pushstate-server","babel-plugin-preval","poe.ninja api","poe.watch api", +"path of exile api","poe economy api","path of exile ninja","path of exile economy","path of exile","poe economy", +"poe.ninja","ninja","economy","poe","symlinks","rapid","prune","pnpm10","png-parse","node-png","js-png","PNG","dev ops", +"cluster cli","clustering","process configuration","keep process alive","probes","process manager","ghost production", +"pm2.io","supervisord","node.js monitoring", +"production","node-pm2","pm2-docker","k8s","load-balancer","lb","load balancer","kraken","vizion","pm2-multimeter", +"pm2-deploy","pm2-axon-rpc","pm2-axon","fclone","cli-tableau","@pm2/blessed","@pm2/pm2-version-check","@pm2/io", +"@pm2/js-api","@pm2/agent","nouns","noun","irregular","irregular-plurals","entry","devpostinstall","lifecycle", +"postinstall","steed","midnight-smoker","flush-write-stream","bole","@types/flush-write-stream","thread-stream", +"@pinojs/redact","real-require","quick-format-unescaped","pino-std-serializers","pino-abstract-transport", +"on-exit-leak-free","atomic-sleep","denodify","pinkie-promise","phonegap/build","phonegap build","phonegap-build", +"connect-phonegap","libpq","pg-copy-streams","@cloudflare/workers-types","@cloudflare/vitest-pool-workers", +"pg-cloudflare","pgpass","pg-types","pg-protocol","pg-pool","chai-increasing","call-delayed","pdf generator", +"pdf writer","brace","blob-stream","linebreak","jpeg-exif", +"opentype.js","@rkusa/linebreak","is-absolute","isabsolute","base64url","passport-oauth1","username", +"chai-connect-middleware","pause","fast-url-parser","htmlserializer","html serializer","html5 parser","html parser", +"WHATWG","vite-plugin-commonjs","parse-server","jsdoc-babel","jasmine-spec-reporter","@types/facebook-js-sdk", +"@saithodev/semantic-release-backmerge","react-native-crypto-js","striptags","png.js","@types/png.js","unused-filename", +"filenamify-url","capture-website","npm-registry-mock","sigstore","WCAG","standards","htmlcs","eslint-config-pa11y", +"@pa11y/html_codesniffer","plunder","out","invalidate","fulfilled","race","resolved","waits","addeventlistener", +"addlistener","limiter","@types/is-ci","@vscode/vsce","scrollbars","styleable","template literal","template string", +"ps1","redshift","sql-query","sql-ddl-sync","stream-consume","sequencify","transform-tty","stdin-discarder", +"option parsing","levn","deep-is","prelude-ls","last-call-webpack-plugin", +"countrynames","quadrocopter","computer","open api","json-schema-deref-sync","axios-mock-adapter", +"dereference-json-schema","bath-es5","wsl-utils","is-in-ssh","default-browser","beaglebone-black","beaglebone","pi", +"raspi","raspberry","interrupt","gpio","@types/mock-require","epoll","@blakeembrey/template","@blakeembrey/deque", +"ee-first","Object.entries","Underscore","segment","bean","@mariocasciaro/benchpress","indexof","has-tostringtag", +"error-cause","@pkgjs/support","prollyfill","@types/swagger2openapi","@readme/postman-to-openapi","@types/memoizee", +"@types/json-schema-merge-allof","remove-undefined-objects","any-path","spawn-wrap","process-on-spawn","node-preload", +"istanbul-lib-processinfo","istanbul-lib-hook","caching-transform","lines-and-columns","css4","mocha-phantomjs-istanbul", +"mocha-phantomjs-core","a-sync-waterfall","percentage","money","nuke","gluegun","nodesecurity-npm-utils","cvss", +"mocha-jsdom","are-we-there-yet","npm-cli","npm upgrade","yarn to npm","string convert","read-package-json-fast", +"npm-scripts", +"commandline","eslint-config-mysticatea","string.prototype.padend","minipass-fetch","auditor", +"npm-package-json-lint-config-tc","eslint-config-typescript-tc","eslint-config-tc","upgrade","vite-node","verdaccio", +"semver-utils","prompts-ncu","fp-and-or","eslint-config-raine","@types/semver-utils","@types/parse-github-url", +"@types/npm-registry-fetch","@types/jsonlines","@types/cli-table","@types/chai-string", +"@trivago/prettier-plugin-sort-imports","updating","updates","outdated","callsite-record","preferred-pm","semver-diff", +"giturl","ajv-formats-draft2019","@npmcli/mock-globals","@tufjs/repo-mock","@npmcli/docs","tiny-relative-date", +"npm-user-validate","minipass-pipeline","npm-audit-report","libnpmversion","@sigstore/tuf","libnpmsearch","npm-profile", +"libnpmteam","libnpmpack","libnpmorg","is-cidr","write-package","map-obj","p-memoize","npm-name","listr-input", +"issue-regex","is-scoped","github-url-from-git","exit-hook","mouse wheel","canonical","simplify","normalisation","urix", +"trailing","slashes","forward","file-path","delimiter", +"option parser","Mehdi Salartayefeh","json schema","5GL","descriptive","programming language","Programming","nolang", +"uuid-random","stjs","promise-mysql","node-ipc","mocker-data-generator","line-reader","json-sql","json-logic-js", +"express-ipfilter","async-redis","node-webkit","multimeter","autoload","undefsafe","pstree.remy","Nodemailer", +"proxy-test-server","nodemailer-ntlm-auth","libqp","libmime","libbase64","@aws-sdk/client-sesv2","git2","libgit2", +"clean-for-publish","combyne","inherit","jQuery extend","@tsconfig/node-lts","@mgcrea/eslint-config-node","sudo", +"elevate","event logging","ngn","watchfile","fs.watch","recurrent","sorted-array-functions","long-timeout", +"unique-temp-dir","true-case-path","stdout-stream","async-foreach","sass-graph","node-red-admin","@node-red/nodes", +"@node-red/util","@node-red/runtime","@node-red/editor-api","openpty","forkpty","pseudoterminal","ps-list","toaster", +"windows 8 notification","terminal-notifier", +"mac os x 10.8","notification center","nexe","shellwords","growly","http mock","v8-profiler","v8-debug", +"strong-data-uri","neutron-html5parser","mocha-each","htmlparser-benchmark","htmljs-parser","html5parser","html-parser", +"high5","exponential-backoff","tomtom","arcgis","agol","mapquest","geo","geocoding","geocoder","fcm","c2dm","x509", +"x.509","tls","sha384","rsa","rc2","prng","pki","pkcs","hmac","des","csr","cbc","asn.1","asn","nodejs-websocket", +"eslint-config-digitalbazaar","stream-consumers","chai-iterator","fetch-blob","ideograms","ideogram","smilies","smileys", +"smiley","emojis","sentences-per-line","skin-tone","emojilib","char-regex","subdir","filewatcher","dynamic-dedupe", +"formate","used-deps-analyzer","check-version-modules","grunt-include-replace","grunt-contrib-coffee", +"coffee-coverage","napi","n-api","propagate","proxyquireify","proxyquire-universal","@sinonjs/text-encoding", +"automated-testing","nightwatchjs","mochawesome-report-generator","mochawesome-merge","nightwatch-axe-verbose", +"didyoumean","chai-nightwatch","@nightwatch/nightwatch-inspector","@nightwatch/html-reporter-template", +"@nightwatch/chai","mocha-generators","sliced","minstache","function-source","deep-defaults","webhook","tunneling", +"localhost","@ant-design/icons-angular","how-to","TestBed","provider","async functions","async handler","nextauth", +"babel-preset-preact","babel-plugin-jsx-pragmatic","@types/oauth","openid-client","@panva/hkdf","self-cert", +"@smithy/util-utf8","@smithy/eventstream-codec","@slack/bolt","@newrelic/test-utilities","@newrelic/newrelic-oss-cli", +"@newrelic/eslint-config","module-details-from-path","@tyriar/fibonacci-heap","@newrelic/security-agent", +"@apm-js-collab/tracing-hooks","rest-client","parse-gitignore","dockerfile_lint","@postman/shipit","serialised-error", +"postman-runtime","postman-request","postman-collection-transformer","postman-collection","liquid-json","chardet", +"@postman/tough-cookie","@golevelup/nestjs-discovery","@fig/complete-commander","exec-time","binary-search-tree", +"near","bridge","near social","plugabble","key value store","nconf-yaml","secure-keys","maximum entropy modelling", +"Brill tagger","Eric Brill","part-of-speech tagger","string distance","levenshtein distance","jaro-winkler distance", +"doublemetaphone","logistic regression","tf-idf","Wordnet","inflector","metaphone","phonetic","classifier","bayes", +"stemmer","ngram","quadgram","trigram","bigram","Lancaster stemmer","Porter stemmer","artifical intelligence", +"natural language processing","uubench","gulp-jasmine-browser","browserfs","wordnet-db","stopwords-iso","memjs", +"apparatus","afinn-165-financialmarketnews","afinn-165","@types/universal-analytics","@types/qr-image","@types/tunnel", +"@types/tabtab","@types/pacote","@types/retry","@rigor789/resolve-package-path","@nstudio/trapezedev-project", +"ios-mobileprovision-finder","nativescript-dev-xcode","@nativescript/doctor","@nativescript/hook","plist-merge-patch", +"ios-sim-portable","ios-device-lib","simple-plist","@foxt/js-srp","pbxproj-dom","font-finder","proxy-lib", +"@types/page-icon","@types/hasbin","page-icon", +"hasbin","gitcloud","jsxstyle","styled","in-js","lite","pico","libreact","iconista","rtl-css-js", +"fastest-stable-stringify","switcher","bats","eslint-plugin-async-await","assert-diff","poku","named-placeholders", +"generate-function","aws-ssl-profiles","sql-escaper","utest","urun","sqlstring","bin-packing","web-animations-js","mezr", +"json to html","html report","test report","release-it-pnpm","array-union","formdata","testdata-w3c-json-form","fs-temp", +"append-field","page-with","@types/serviceworker","@types/json-bigint","@epic-web/test-server","until-async","rettime", +"headers-polyfill","@types/statuses","node-mssql","msnodesqlv8","node-sqlserver","node-tds","tds","msnodesql", +"@tediousjs/connection-string","publish/subscribe","esbuild-plugin-polyfill-node","mqtt-level-store","mqtt-connection", +"leaked-handles","aedes-cli","number-allocator","worker-timers","mqtt-packet","help-me","commist", +"monk-middleware-debug","gitbook-plugin-prism","gitbook-plugin-github", +"gitbook-plugin-edit-link","gitbook-plugin-custom-favicon","gitbook-plugin-anker-enable","gitbook-cli", +"monk-middleware-wait-for-connection","monk-middleware-query","monk-middleware-options", +"monk-middleware-handle-callback","monk-middleware-fields","monk-middleware-cast-ids","control panel","core-monitor", +"JMX","probe","lodash.isequalwith","acquit-require","acquit-ignore","acquit","@mongodb-js/mongodb-downloader", +"@ark/attest","sift","mquery","mpath","kareem","@types/chai-subset","@types/whatwg-url","@mongodb-js/zstd", +"v8-heapsnapshot","@types/saslprep","@types/kerberos","gcp-metadata","mocha-sinon","snappy", +"mongodb-connection-string-url","@mongodb-js/saslprep","web-based","phpmyadmin","manage-mongo","manage","administration", +"express-openid-connect","assets-webpack-plugin","renderjson-2","mongodb-query-parser","gridfs-stream","free-swig", +"bootstrap-paginator-2","@lezer/highlight","@json2csv/plainjs","@codemirror/theme-one-dark","result","maybe","either", +"monads","monaco","yaml-language-server","@remcohaszing/eslint","vscode-languageserver-textdocument", +"monaco-worker-manager","monaco-types","monaco-marker-data-provider","monaco-languageserver-types","zone","iana", +"olson","messagebus","@icebob/node-memwatch","node-nats-streaming","event-loop-stats","winston-context","moleculer-repl", +"@types/ioredis","jaeger-client","@types/bunyan","rhea-promise","benchmarkify","notepack.io","@types/pino","kafka-node", +"fakerator","msgpack5","gc-stats","dd-trace","redlock","thrift","cbor-x","etcd3","nats","avsc","fastest-validator", +"recursive-watch","mockAjax","mockJSON","gulp-mocha-phantomjs","unix-dgram","swap","@types/object-inspect", +"@types/has-property-descriptors","@types/gopd","@types/get-intrinsic","@types/functions-have-names","@types/for-each", +"@types/es-value-fixtures","define-data-property","lcov","xmllint","chai-xml","@11ty/eleventy-plugin-inclusive-language", +"fail-on-errors-webpack-plugin","unexpected-eventemitter","remark-inline-links","unexpected-sinon","unexpected-set", +"unexpected-map","jsdoc-ts-utils","@mocha/docdash","unexpected","rewiremock","uslug","yargs-unparser","browser-stdout", +"data flow","state management","functional-reactive-programming","frp","@types/brace-expansion","cert","certificate", +"signed","supertape","madrun","eslint-plugin-putout","escover","try-to-catch","try-catch","readjson","montag", +"html-minifier-next","css-b64-images","@putout/minify","increase key","decrease key","queue priority","element priority", +"priority-based processing","priority-based","dynamic resizing","ordering property","efficient priority", +"min priority queue","extract min","complete binary","priorityQ","priority q","priority-queue","priority queue", +"Priority Queue","heapify down","heapify up","heap sort","heapify","complete binary tree","min heap data structure", +"heap data structure","binary-heap","Binary Heap","min-heap","maxheap","Min Heap","mimetypes","mime-score","star", +"posix","negation","negate","lookbehind","lookaround","lookahead","extglobs","character-class","bracket", +"micromark-util-subtokenize","micromark-util-resolve-all","micromark-util-combine-extensions","micromark-util-chunked", +"micromark-factory-space","micro library","npm-merge-driver-install","eslint-config-developit","directory-tree", +"@babel/plugin-proposal-throw-expressions","babel-plugin-transform-replace-expressions", +"babel-plugin-transform-async-to-promises","asyncro","@surma/rollup-plugin-off-main-thread","node-downloader-helper", +"node-7z","7zip-bin","assert-dir-equal","@metalsmith/drafts","ware","stat-mode","lodash.clonedeepwith","from2","kitten", +"cat","trim-newlines","minimist-options","delete_comments","decamelize-keys","camelcase-keys","errno","ram","gulp-exit", +"memoization","mem","@types/lodash.isequal","content addressable storage","casfs","opfs","crudfs","webfs", +"native file system","file system access","fs.js","tslint-config-common","isomorphic-git","tree-dump","thingies", +"glob-to-regex.js","@jsonjoy.com/util","@jsonjoy.com/json-pack","@jsonjoy.com/fs-snapshot","@jsonjoy.com/fs-print", +"@jsonjoy.com/fs-node-utils","@jsonjoy.com/fs-node-to-fsa","@jsonjoy.com/fs-node-builtins","@jsonjoy.com/fs-node", +"@jsonjoy.com/fs-fsa","@jsonjoy.com/fs-core","nMemcached","memcache","membase","failover","InnoDB memcached API", +"jackpot","mdn","trim-lines","micromark-build","unist-util-stringify-position","micromark-util-decode-string","md5sum", +"fraction","complex","algebra","mathematics", +"zeros","numericjs","ndarray-pack","ndarray-ops","ndarray-gemm","ndarray-determinant","jsep","expr-eval","eigen", +"typed-function","javascript-natural-sort","escape-latex","complex.js","simple-assign","react-event-listener","v8-argv", +"marked-man","marked-highlight","@markedjs/testutils","@markedjs/eslint-config","run-con","CommonMark", +"markdownlint-rule-extended-ascii","gemoji","micromark-extension-math","micromark-extension-gfm-table", +"micromark-extension-gfm-footnote","micromark-extension-gfm-autolink-literal","micromark-extension-directive","toc", +"table-of-contents","table of contents","remarkableplugin","glossary","mixin-deep","markdown-link","list-item", +"lazy-cache","diacritics-map","solidjs","markdown parser","bunup","pdf-text","stream-from-to","emojies", +"markdown-it-mark","markdown-it-ins","uc.micro","punycode.js","mdurl","linkify-it","text processing","legend","mapbox", +"mapbox-gl","usability","user experience","react server components","context menu","context-menu","mantine", +"postcss-preset-mantine","@tabler/icons-react","mvp", +"no-code","low-code","api-generator","file-upload","rapid-development","micro-backend","backend-framework", +"headless-cms","admin-panel","@types/dasherize","@testcontainers/mysql","@nestjs/cli","uniqid","@nestjs/throttler", +"@nestjs/platform-express","@nestjs/config","hamjest","duck","browserify-prepend-licenses","lop","dingbat-to-unicode", +"recursively","intermediate","path-type","lavalink","community support","seamless integration","feature-rich", +"easy-to-use","high performance","discord integration","voice chat","music bot","audio streaming","lavalink client", +"@favware/rollup-type-bundler","string manipulation","task graph","wizard","@types/make-fetch-happen","@types/json-diff", +"@types/columnify","short-unique-id","hast-util-to-mdast","expand-home-dir","sleep-anywhere","create-mixin", +"ansi-escape-sequences","@75lb/deep-merge","cover","contain","transparency","lightness","saturation","hue","sharpen", +"blur","manipulate","decree","Font Awesome","Fontawesome","Feather Icons","Icon","Icons", +"Feather","HTML","Lucide","@lucide/rollup-plugins","@lucide/shared","@lucide/build-icons","mru","sessionStorage", +"localStorage","@typicode/eslint-config","express-async-handler","steno","eslint-config-loopback","strong-error-handler", +"strong-task-emitter","loopback-context","karma-es6-shim","loopback-boot","nodemailer-direct-transport", +"nodemailer-stub-transport","loopback-connector-remote","strong-globalize","loopback-filters","loopback-phase", +"canonical-json","isemail","int64","grunt-preprocess","grunt-contrib-jasmine","@log4js-node/sandboxed-module", +"streamroller","date-format","overwrite","terminal.js","tape-index","ncjsm","sprintf-kit","uni-global","uniq","pick", +"isstring","isplainobject","isfunction","isempty","clonedeep","lockfile lint","lockfile check","lockfile-lint-api", +"openurl","websql","localstorage","indexeddb","rollupify","grunt-es3-safe-recast","browserify-derequire", +"babel-preset-es2015-loose","lws-spa","lws-rewrite","lws-request-monitor","lws-range","lws-mime","lws-log","lws-json", +"lws-cors", +"lws-conditional-get","lws-compress","lws-body-parser","lws-blacklist","lws-basic-auth","matchdep","http-auth", +"connect-logger","@webcomponents/template","@lit-labs/testing","@lit-internal/scripts","@lit/reactive-element", +"@lit-labs/ssr-dom-shim","listr-verbose-renderer","listr-update-renderer","listr-silent-renderer","is-observable", +"@samverschueren/stream-to-observable","staged","consolemock","mention","hashtag","flagged-respawn","fined", +"libphonenumber","renamer","libphonenumber-metadata-generator","jest-codemods","gmail-send","crlf","gitfund","fund", +"just-safe-set","binary-extensions","distance","talisman","levenshtein-component","levdist","ld","simple-concat", +"encoding-down","trickle","memdown","level-iterator-stream","deferred-leveldown","level-supports","level-errors", +"prebuildify-cross","prebuildify-ci","readfiletree","mkfiletree","du","abstract-leveldown","napi-macros", +"abstract-level","classic-level","browser-level","less-plugin-glob","css less","variables in css","less compiler", +"gradients css","css nesting","read-glob", +"phin","html-template-tag","bootstrap-less-port","@octokit/plugin-enterprise-rest","conventional-changelog-core", +"read-cmd-shim","@lerna/create","p-map-series","p-waterfall","wide-align","write-pkg","aproba","repeat","left","gis", +"@mapbox/eslint-plugin-script-tags","rollup-plugin-git-version","git-rev-sync","bundlemon","leafdoc","happen", +"string-table","race.js","jasmine-async","deft","autodoc","current","lab-event-reporter","will-call","find-rc", +"eslint-plugin-hapi","eslint-config-hapi","bossy","node-redis-warlock","reds","sendfile","koa-send","@ladjs/env", +"mounting","koa-route","koa-compress","passthrough-counter","humanize-number","bodyParser","copy-to", +"@types/koa__router","@koa/router","@types/co-body","http-assert","delegates","stream-counter","uc-browser", +"samsung-internet","opera","unresolved","unreferenced","namespace","missing","members","maintenance","entropy", +"dead code","codeclimate-types","oxc-resolver", +"formatly","querybuilder","cockroachdb","toxiproxy-node-client","@tsconfig/recommended","chai-subset-in-order","adapter", +"@keyv/memcache","@keyv/compress-lz4","@keyv/compress-brotli","@keyv/mongo","@keyv/test-suite","@keyv/sqlite", +"@keyv/compress-gzip","@keyv/serialize","keyname","metakey","keyup","keydown","keyboardevent", +"rollup-sourcemap-path-transform","karma-brief-reporter","labs","sauce","@types/global-agent","karma-rollup","chai-fs", +"edge-launcher","Opera","Firefox","Chromium","Chrome Headless","Chrome Canary","Chrome","IE","SafariTechPreview", +"Safari Tech Preview","Safari","karma-requirejs","karma-coffee-preprocessor","ibrik","browser-stack","os-shim", +"execution","spectacular","timer-shim","dom-serialize","qjobs","package-json-versionify","jszip-utils","states","amaro", +"@jspm/plugin-rollup","@jspm/generator","lodash.isinteger","lodash.isboolean","lodash.isnumber","lodash.includes", +"lodash.once","jws","json-metaschema","@stryker-mutator/mocha-runner","unicode-10.0.0","circular", +"deterministic","@types/object-keys","prototyping","milliparsec","csv-2-json","csv2json","json2csv","to","doc-path", +"deeks","unicode-11.0.0","unicode-5.2.0","results-interpreter","unicode-13.0.0","nwmatcher","browser-request", +"webidl2js","webidl2","mocha-sugar-free","whatwg-url","webidl-conversions","w3c-xmlserializer","symbol-tree","data-urls", +"@bramus/specificity","@asamuzakjp/dom-selector","@acemir/cssom","config-master","object-to-spawn-args","requizzle", +"js2xmlparser","catharsis","@jsdoc/salty","unit-coverage","unicode-7.0.0","vow-fs","to-single-quotes","to-double-quotes", +"jscs-preset-wikimedia","jscs-jsdoc","jscpd-sarif-reporter","@jscpd/html-reporter","@jscpd/tokenizer","@jscpd/finder", +"@jscpd/core","@jscpd/badge-reporter","gitignore-to-glob","architecture","yerror","knifecycle","pyyaml","amd", +"code-quality","beautifier","config-chain","jquery-test-runner","grunt-bowercopy","grunt-html","recoil","@hapi/tlds", +"@hapi/pinpoint","@hapi/formula","@hapi/address","Weather Shield Photon", +"Weather Shield Arduino","VKEY","Ultrasonic Range Finder","TSL2561","TMP36","TINKERKIT","Thumb Joystick","tessel 2", +"Temperature","Speed controller","SparkFun Sensor Kit","SparkFun Essential Sensor Kit","spark","spark-io","spark core", +"SI7020","Shift Register","Shift Register 8-Bit SN74HC595","Servo","robot","RGB LED","RedBoard","raspi-io","raspberrypi", +"QTOUCH","PIR Motion Sensor","photon","PCF8591","PCF8575","PCF8574T","PCF8574AT","PCF8574A","PCF8574","pcduino", +"PCA9685","PARALLEL","OA41SK","NXT","MUXSHIELD2","MPU6050","MPU-6050","MPR121QR2","MPR121","MPL3115A2","MPL115A2", +"MMA8462Q","MMA7660","MMA7361","MJKDZ","Metal Gear","MCP9808","MCP23017","MCP23008","LV-MaxSonar-EZ3","LV-MaxSonar-EZ0", +"Ludus Protoshield","Ludus Protoshield Wireless","LIDAR-Lite v2","LED","LCM1602","LCD2004","LCD1602","JHD1313M1", +"ISL29125", +"intel galileo","intel edison","Infrared Sensor","Infrared Proximity Sensor","i2c","HTU21D","HT16K33", +"HRLV-MaxSonar-EZ0","Hobby Motor","HMC6352","HMC5883L","Hitec HS-85MG","Hitec HS-805BB","Hitec HS-755HB", +"Hitec HS-646WP","Hitec HS-625MG","Hitec HS-425BB","Hitec HS-422","Hitec HS-35HD","High Torque","HD44780","GY521", +"GY-521","GP2Y0A41SK0F","GP2Y0A21YK","GP2Y0A02YK0F","GP2D120XJ00F","galileo","galileo-io","EV3","ESPLORA","edison", +"Edison PWM Block","Edison I2C Block","Edison GPIO Block","Edison Arduino Block","DS18B20","Diffused LED","DEFAULT", +"Continuous Rotation","BMP180","BLINKM","AT42QT1070","Ardumoto","arduino","ANALOG","ALSPT19","ALS-PT19","ADXL345", +"ADXL335","74HC595","2Y0A21","2Y0A02","2D120X","20x4 LCD","16x2 LCD","0A21","0A02","grunt-jsbeautifier", +"browser-serialport","nanotimer","temporal","wysisyg","vanillajs", +"wysiwyg html editor","wysiwyg editor","nano-jsx","destr","babel-plugin-parameter-decorator", +"@types/babel__helper-plugin-utils","@babel/helper-simple-access","image manipulation","image processing","node-self", +"@jimp/test-utils","@jimp/config-vitest","@jimp/config-typescript","@jimp/config-eslint","@jimp/utils","@jimp/types", +"@jimp/plugin-threshold","@jimp/plugin-rotate","@jimp/plugin-resize","@jimp/plugin-quantize","@jimp/plugin-print", +"@jimp/plugin-mask","@jimp/plugin-hash","@jimp/plugin-flip","@jimp/plugin-fisheye","@jimp/plugin-dither", +"@jimp/plugin-displace","@jimp/plugin-crop","@jimp/plugin-cover","@jimp/plugin-contain","@jimp/plugin-color", +"@jimp/plugin-circle","@jimp/plugin-blur","@jimp/plugin-blit","@jimp/js-tiff","@jimp/js-png","@jimp/js-jpeg", +"@jimp/js-gif","@jimp/js-bmp","@jimp/diff","@jimp/core","jest-leak-detector","@types/merge-stream","libxmljs2", +"randomcolor","jump.js","@types/randomcolor","@types/jump.js","extended","matchers","@jest/diff-sequences", +"babel-plugin-version","moo-color","cssfontparser","jasmine-growl-reporter","walkdir","css-url-embed", +"@jasminejs/reporters","vimeo","parallax","prettier-config-nk","json-file","eslint-config-nk","browserslist-config-nk", +"video-worker","rake","filelist","pull-request","lsr","less-file","jstransformer-marked","jade-highlighter", +"jade-code-mirror","inconsolata","highlight-codemirror","handle","github-basic","code-mirror","browserify-middleware", +"with","transformers","jstransformer","constantinople","character-parser","vue-html-loader", +"babel-plugin-transform-es5-property-mutators","autoprefixer-loader","v-click-outside-x","js-calendar","JS coverage", +"JS code coverage","code coverage","lintspaces-cli","kindof","subsystem","wsl","custom element name","locally", +"installed","globally","global-directory","is-extglob","ansi-color","node-icu-charset-detector","irc-colors", +"pipelining","sentinel","@types/redis-errors","@types/lodash.isarguments","@types/lodash.defaults", +"@ioredis/interface-generator","standard-as-callback","redis-parser","redis-errors","lodash.isarguments", +"cluster-key-slot","@ioredis/commands","icon pack","jest-stencil-runner","ionicframework","ionic framework", +"@types/os-name","@types/open","superagent-proxy","@ionic/discover","ioc","inversion of control container", +"dependency inversion", +"@inversifyjs/core","@inversifyjs/container","@inversifyjs/common","dial code","international","grunt-replace", +"google-closure-library","flag-icons","@vue/tsconfig","ecma402","rollup-plugin-memory","grunt-zip","grunt-curl", +"estraverse-fb","cldr-numbers-full","cldr-dates-full","cldr-core","cldr-cal-roc-full","cldr-cal-persian-full", +"cldr-cal-japanese-full","cldr-cal-islamic-full","cldr-cal-indian-full","cldr-cal-hebrew-full","cldr-cal-ethiopic-full", +"cldr-cal-dangi-full","cldr-cal-coptic-full","cldr-cal-chinese-full","cldr-cal-buddhist-full","litcoffee","coffee.md", +"remark-code-import","packaging","exports","ig","instagram","fwk","innosetup","inno","inline-style","print", +"@vdemedes/prettier-config","@types/scheduler","@types/react-reconciler","yoga-layout","terminal-size","patch-console", +"auto-bind","@alcalzone/ansi-tokenize","object-oriented","oop","klass","inheritance","capitalize","inflection-js", +"inflections","inferno-utils","stateful","soa","enterprise","isolation","eslint-config-metarhia","metawatch","metavm", +"metautil", +"metaschema","metalog","metaconfiguration","metacom","prefer","bypass","stateless","immutability","@types/invariant", +"copy-on-write","mutable","type-plus","seamless-immutable","import-size","cpx2","reader","utf7","pngquant", +"imageminplugin","pngquant-bin","is-png","tga","heif","dimensions","regular-expression","asterisks",".gitignore", +"pre-suf","eslint-config-ostai","proxies","harmony-reflect","icu","bench-node","errto","gridly","gettext", +"i18next-sprintf-postprocessor","i18next-localstorage-cache","i18next-http-backend","i18next-fs-backend", +"@arktype/attest","math-interval-parser","make-plural","fast-printf","@messageformat/core","uncountable","hyphenate", +"eslint-config-sanity","put","mediation","httpclient","HttpStatus","@types/markdown-table","@types/eslint__js", +"@types/should","https-server","eslint-config-populist","secure-compare","corser","union","mockttp","@types/is-glob", +"sse","toidentifier", +"rss","posthtml-plugin","srcset","@types/relateurl","webpack-recompilation-simulator","@types/html-minifier-terser", +"@sidvind/better-ajv-errors","@html-validate/stylish","selderee","@selderee/plugin-htmlparser2", +"@bubkoo/semantic-release-config","@bubkoo/commitlint-config","@bubkoo/rollup-config","@bubkoo/eslint-config", +"@bubkoo/tsconfig","self-closing","alpinejs","unescape-unicode","posthtml-webp","ascjs","entities decode", +"entities encode","html entities decode","html entities encode","html entities","flowgen","@types/jscodeshift","tutor", +"tutorial","adventure","workshop","workshopper-adventure","compute","fastly","vite-plugin-fastly-js-compute", +"editorconfig-checker","bun-types","@hono/eslint-config","eslint-plugin-import-newlines","hap-nodejs","step", +"dependency-resolver","deep-freeze-es6","css-color-names","wcag-contrast","tiny-worker","transducers-js","scrawl", +"hexo-renderer-marked","eslint-config-hexo","0x","@types/abbrev","warehouse","titlecase","hexo-util","hexo-log", +"hexo-i18n","hexo-fs","hexo-front-matter","hexo-cli","fast-text-table","fast-archy","x-xss-protection","x-powered-by", +"x-permitted-cross-domain-policies","x-frame-options","x-download-options","x-dns-prefetch-control", +"x-content-type-options","strict-transport-security","referrer-policy","origin-agent-cluster", +"cross-origin-resource-policy","cross-origin-opener-policy","cross-origin-embedder-policy","content-security-policy", +"sort-object","regexgen","svg-tag-names","estree-util-build-jsx","unist-util-find-after","sval","tostring","ccount", +"estree-util-attach-comments","selectall","direction","bcp-47-match","html-tag-names","aria-attributes","remark-api", +"in","own","has-own","hasOwnProperty","@types/mock-property","@types/function-bind","get-own-property-symbols", +"catbox-memory","statehood","teamwork","subtext","somever","podium","catbox","mimos","heavy","topo","chai-diff", +"jquery-hammerjs","git-tags","changelogplease","fixer","git-pull-or-clone","vfile-reporter-shiny","unified-engine", +"remark-lint-no-unused-definitions","remark-lint-no-literal-urls","remark-lint-no-inline-padding", +"remark-lint-no-blockquote-without-marker","remark-lint-no-auto-link-without-protocol", +"remark-lint-list-item-bullet-indent","remark-lint-final-newline","remark-common-changelog","remark-autolink-references", +"find-githost","find-file-up","deglob", +"compressed","phantomjssmith","pngparse","vinyl-assign","vinyl-zip","yazul","lodash._reevaluate","lodash._reescape", +"mock-gulp-dest","async-once","useref","source-list-map","tape-catch","make-error-cause","array-each", +"incremental compilation","@types/plugin-error","gulp-diff","incremental","svg2png","looks-same","accord","strip-debug", +"mississippi","debug-fabulous","@gulp-sourcemaps/map-sources","@gulp-sourcemaps/identity-map","ruby","md5-hex", +"each-async","assets","expire","revving","rev-path","rev-hash","modify-filename","replacestream","src","eslint-watch", +"ifndef","ifdef","echo","ENV","notify-osd","mac notification","windows notification","develop","bufferstreams", +"vinyl-bufferstream","capture-stream","array-unique","jasmine-terminal-reporter","unit test", +"istanbul-threshold-checker","lodash.groupby","inline-css","group-array","gulp-gm","ternary","if","stream-exhaust", +"streamtest","gulp-svgicons2svgfont","gulp-ttf2woff2", +"gulp-ttf2woff","gulp-ttf2eot","gulp-svg2ttf","gulp-spawn","htm","eventstream","nsdeclare","gulp-wrap", +"gulp-define-module","gulp-declare","gulpgit","strip-bom-stream","branch","read-remove-file","octonode","wrap-promise", +"gift","ftp-test-server","jsftp-mkdirp","sections","pretty-remarkable","divide","to-absolute-glob","flatnest","warnings", +"@shinnn/eslint-config-node","node-version-check","csslint-stylish","dest","slush","rework-plugin-url","rework-import", +"parse-import","jshint-reporter-jscs","minify-css","passthrough","cached","updated","modification","modified","changed", +"cache-swap","gulp-version","plugin-log","bump-regex","gulp-codecov.io","prepend","add","desugaring","streamifier", +"delayed-stream","@azure/storage-blob","concurrent-transform","lodash.chunk","atom-shell","gulp-symdest","templatecache", +"html2js","undertaker","glob-watcher","@swc/register","@guarapi/eslint-config-guarapi","inline-fixtures","@npm/types", +"gmsmith","get-pixels","yui","grunt-sauce-tunnel","requestretry","mavericks","mountain lion","grunt-templates-dylang", +"stack-parser","grunt-cafe-mocha","grunt-istanbul-coverage","grunt-env","grunt-continue","releases","gh", +"grunt-github-remove-all-releases","uri-path","nodeunit-x","cssmin","file-sync-cmp","bin-version-check","faster", +"simultaneous","grunt-nodemon","pad-stream","liftup","browserify-incremental","init","eslint-config-grunt","difflet", +"grunt-legacy-util","grunt-legacy-log","poisson-process","electron-mocha","@types/bytebuffer","@mapbox/node-pre-gyp", +"matter","frontmatter","front","extracting","delimiter-regex","ansi-green","section-matter","test-all-versions", +"graphql-js","EACCESS","EPERM","EINVAL","EAGAIN","EMFILE","handling","retries","reading","govuk","govuk-prototype-kit", +"sass-color-helpers","sassdoc","human-friendly","zstandard","zstd","then-busboy","slow-stream","pem", +"create-test-server", +"create-cert","chunk-data","@types/pem","responselike","form-data-encoder","decompress-response","cacheable-request", +"cacheable-lookup","byte-counter","client library","google apis","jsdoc-region-tag","jsdoc-fresh","@types/url-template", +"@types/mv","@types/execa","googleapis-common","google docs","drive","gdata","sheets","spreadsheets","google sheets", +"google spreadsheets","varlock","eslint-plugin-no-floating-promise","skin fix","jarmods","nbt","extendable", +"modpack-api","modpack","mc-mods","mc-mod","mods","mod","instances","instances-management","forge","arm-support","arm", +"java edition","launcher","minecraft","mc","msmc","gfsl","graphicsmagick","magick","array-parallel","array-series", +"wildcards","multiple","all","environments","identifiers","is-identifier","dirname","path-scurry","@rollup/plugin-html", +"@primer/primitives","travis-after-all","spawn-command","manage-path", +"email-addresses","mac-address","ipconfig","ifconfig","export-default","es2022","denoland","deno-entry","deno-edition", +"make-deno-edition","eslint-config-bevry","tsconfig.json","resolve-pkg-maps","consume","precise-now", +"@sec-ant/readable-stream","std","chosen","preferred","connection","free","finder","libtap","if-ver","@cfware/nyc", +"@cfware/lint","semantic-release-conventional-commits","install-deps-postmerge","@werkzeugkiste/release-config", +"@werkzeugkiste/eslint-config","iterators","ts2mjs","inject-markdown","pool","@merkle-open/eslint-config", +"find-git-root","git-config","haml","traceur","foundation","ui-router","restangular","grunt-benchmark","sublime text", +"sublime","bitap","vuepress-plugin-google-adsense2","@vuepress/plugin-google-analytics", +"@snippetors/vuepress-plugin-tabs","@sapphire/utilities","@sapphire/stopwatch","@monaco-editor/loader","release-assist", +"meta data","front matter","check-dts","friendly","higher order component","render props","react hooks", +"just-debounce-it","tiny-warning","ulpoad","www", +"@tunnckocore/prettier-config","prettier-plugin-pkgjson","dezalgo","obake","js-randomness-predictor","is-node-modern", +"far","es-set-tostringtag","asynckit","increment","@types/babel-code-frame","typecheck","karton","node-abort-controller", +"nssocket","flatiron","shush","cliff","dispatcher","fbemitter","ffmpeg","umd","tailwind flask","tailwind ruby on rails", +"tailwind django","tailwind angular","tailwind ui","tailwind sections","tailwind library","tailwind elements", +"tailwind components","ui components","windicss","flowbite-typography","eslint-plugin-tailwindcss","@tailwindcss/cli", +"flowbite-datepicker","commands","markdox","unflatten","extend-object","alce","synchronization","hosting","ssl", +"update-notifier-cjs","superstatic","stream-chain","sql-formatter","pglite-2","pg-gateway","lsofi","libsodium-wrappers", +"exegesis-express","exegesis","deep-equal-in-any-order","cjson","@google-cloud/pubsub", +"@google-cloud/cloud-sql-connector","@apphosting/common","@apphosting/build","http-message-parser", +"firebase-token-generator","@types/request-promise", +"@types/firebase-token-generator","@firebase/auth-types","@firebase/api-documenter","jwks-rsa","farmhash-modern", +"@firebase/database-types","remote-config","@firebase/remote-config-compat","@firebase/installations-compat", +"@firebase/performance-compat","@firebase/messaging-compat","@firebase/functions-compat","@firebase/firestore-compat", +"@firebase/app-check-compat","@firebase/analytics-compat","@firebase/storage-compat","@firebase/remote-config", +"@firebase/installations","@firebase/data-connect","@firebase/performance","@firebase/messaging","@firebase/functions", +"@firebase/firestore","@firebase/app-types","@firebase/app-check","@firebase/analytics","@firebase/database", +"@firebase/storage","@firebase/util","@firebase/auth","@firebase/app","@firebase/ai","homedir-polyfill","resolve-dir", +"detect-file","dat","reg","ppsx","ppsm","sav","jmp","pptm","potm","dotm","docm","ott","otg","odg","ots","xltm","dotx", +"xltx","potx","lz4","drc","apk","vtt","vsdx","fbx","avro","ace","cpio","arj","parquet", +"dwg","pst","jls","vcf","zst","3mf","chm","asar","pgp","lzh","eps","skp","xm","s3m","it","mp1","aac","shp","arrow","mpc", +"dcm","ktx","crx","nes","wv","ape","ogx","spx","oga","ogm","ogv","asf","qcp","mie","f4v","f4p","f4b","f4a","m4v","m4p", +"m4b","3g2","ac3","voc","lnk","dsf","pcap","ics","odp","odt","aif","mj2","jpx","jpm","j2c","3gp","pptx","bpg","blend", +"webassembly","wasm","mts","mxf","lz", +"Z","rpm","ar","deb","cab","xpi","xz","ps","flv","ttc","otf","ttf","eot","woff2","woff","rtf","mobi","amr","wav","flac", +"opus","ogg","m4a","mp3","mp2","mpg","avi","mov","webm","mkv","mid","mp4","7z","gz","rar","indd","jxr","tif","rw2","nef", +"dng","arw","orf","cr3","cr2","xcf","flif","apng","macho","elf","exif","magic","noop-stream","@tokenizer/token", +"token-types","strtok3","@tokenizer/inflate","saveas","filesaver","thread","fiber","data management", +"functional program","View360", +"NetworkMonitor","SnapScanner","VoiceRecognition","TextToSpeech","NetworkConnection","WhatsappShare","wakelock", +"detectmylocation","livelocationtracking","share","autofillotp","voice","phonebook","advanced feature", +"advanced component","ui component","react components","Plug & Play","in react","in javascript","in web", +"@skypack/package-check","fbjs-css-vars","anything","string.prototype.split","array.prototype.slice", +"array.prototype.push","array.prototype.join","array.prototype.foreach","@types/loader-runner","@utoo/pack", +"@umijs/case-sensitive-paths-webpack-plugin","@umijs/bundler-webpack","@umijs/babel-preset-umi","h2url", +"fluent-json-schema","fast-json-body","branch-comparer","ajv-merge-patch","@jsumners/line-reporter","toad-cache", +"light-my-request","fast-json-stringify","avvio","abstract-logging","@fastify/proxy-addr", +"@fastify/fast-json-stringify-compiler","@fastify/ajv-compiler","strnum","implementation","eslint-config-mrmlnc", +"bencho","@types/merge2","@nodelib/fs.macchiato","@nodelib/fs.stat","CSV","csv writer","writer","@fast-csv/format", +"@fast-csv/parse","fuzz","fuzzer","jscheck","quickcheck", +"end-to-end testing","property-based testing","@fast-check/poisoning","@fast-check/expect-type","console.log", +"vinyl-transform","webpack-defaults","props","for-own","array-slice","is-extendable","assign-symbols", +"swagger-documentation","openapi-specification","schema-validation","documentation-tool","dts-plugin","snakify-ts", +"camelize-ts","@types/http-errors","@types/depd","@express-zod-api/zod-plugin","openapi3-ts", +"@docusaurus/plugin-client-redirects","web-api","web-development","browser-client","client-server","http-api", +"express-api","typed-api","fully-typed","code-generation","express.js","RPC","tRPC","cjs-mock","hoare","expressjs", +"express-unless","partials","express3","array-flatten","eslint-plugin-mmkal","3584","flush","drain","stderr","execfile", +"log-process-errors","get-node","strip-final-newline","human-signals","reactor","EventEmitter3","EventEmitter2", +"EventEmitter","asynct","pause-stream","evaulate","es-lookup-scope","@types/secp256k1","rlp","transactions", +"typestrict","contributor","@ethereumjs/config-tslint","@ethereumjs/config-tsc","@ethereumjs/config-prettier", +"@ethereumjs/config-nyc","ethereumjs-common","gulp-tag-version","unicode-8.0.0","node-tick-processor","everything.js", +"escomplex-js","eslint-plugin-requirejs","esrecurse","@types/esrecurse","eslint-test","ink-testing-library","importx", +"eslint-plugin-markdown-preferences","@types/xml-name-validator","eslint plugin","vitest eslint plugin", +"@veritem/eslint-config","unicorn","node-style-text","@lubien/fixture-beta-package","regjsparser","clean-regexp", +"sveltejs","svelte-i18n","@types/esutils","@types/eslint-utils","svelte-eslint-parser","sonarjs", +"functional-red-black-tree","jsx-ast-utils-x","eslint-snapshot-rule-tester","eslint-plugin-pere","hermes-parser", +"gfm-footnotes","@babel/plugin-syntax-function-bind","@babel/plugin-syntax-do-expressions","es-iterator-helpers", +"array.prototype.tosorted","array.prototype.findlast","prettier-linter-helpers","eslint-utils","ts-ignore-import", +"@types/globrex","ts-declaration-location","eslint-plugin-es-x","eslint-config-eslint","string.prototype.includes", +"language-tags","damerau-levenshtein","ast-types-flow","stylelint-stylus","stylelint-config-standard-vue", +"eslint-plugin-eslint-rule-tester","eslint-json-compat-utils","diff-sequences","@ota-meshi/ast-token-store", +"babel-plugin-transform-import-meta","@types/spdx-expression-parse", +"@hkdobrev/run-if-changed","@es-joy/jsdoc-eslint-parser","@es-joy/escodegen","to-valid-identifier", +"parse-imports-exports","object-deep-merge","are-docs-informative","@es-joy/resolve.exports","@es-joy/jsdoccomment", +"babel-plugin-replace-ts-export-assignment","@schemastore/package","lodash.isarray","linklocal","fs-copy-file-sync", +"escope","string.prototype.trimend","object.groupby","eslint-module-utils","array.prototype.findlastindex","@rtsao/scc", +"@html-eslint/parser","@html-eslint/eslint-plugin","flowtype","string-natural-compare","eslint-config-not-an-aardvark", +"@types/estraverse","eslint-disable-next-line","eslint-disable-line","eslint-disable","eslint-enable","eslint-env", +"exported","vue-eslint-editor","eslint4b","kangax","browserslist-config-erb","@types/caniuse-lite", +"ast-metadata-inferer","eslint-rule-composer","micro-spelling-correcter","espurify","enhance-visitors", +"eslint-friendly-formatter","stable-hash-x","is-bun-module","eslint-import-context","cabin","kisses","hugs", +"@eslint/css","obuild","@eslint/config-inspector","@rushstack/eslint-patch","eslint-prettier","prettier-package-json", +"metascraper-title","metascraper-logo-favicon","metascraper-logo","metascraper-image","metascraper-description", +"metascraper","eslint-rule-extender","@trunkio/launcher","json-stable-stringify-without-jsonify", +"@humanwhocodes/retry","@humanwhocodes/module-importer","@humanfs/node","@eslint/config-helpers","@eslint/config-array", +"commonjs-everywhere","bower-registry-client","special","setPrototypeOf","promises-es6-tests", +"promises-aplus-tests-phantom","json3","es5 shim","ext","ecmascript6","ecmascript5","plain-promise","esniff", +"es6-symbol","fixture","well-known-symbols","symbol.prototype.description","reflect.ownkeys","@types/reflect.ownkeys", +"@types/foreach","@types/array.prototype.flatmap","make-async-function","intl-fallback-symbol","test ecmascript version", +"test js version","js version matching","js version check","js version","ecmascript version","ecmascript matching", +"ecmascript check","es version","es matching","es check","check for modules","check for es6","pastoralist", +"codependence","airbnb-prop-types","assertion helpers","test utils","shallowRender","shallow rendering", +"rst-selector-parser","is-subset","is-string","is-number-object","is-boolean-object","html-element-map","diagnostics", +"issues","yamlify-object","github-release-cli","datatype","enumeration","entitify","es-errors","end","close", +"finish","coding","snippets","@emmetio/css-abbreviation","@emmetio/abbreviation","ember-try","ember-template-lint", +"ember-styleguide","ember-cli-clean-css","@embroider/test-setup","broccoli-persistent-filter", +"babel-plugin-ember-template-compilation","@ember/edition-utils","@glimmer/tracking","@glimmer/component", +"@ember/string","ember-cli-version-checker","ember-cli-babel-plugin-helpers","babel-plugin-ember-modules-api-polyfill", +"babel-plugin-ember-data-packages-polyfill","amd-name-resolver","ember.js","ember-app-kit","app-kit","yuidocjs", +"yuidoc-ember-cli-theme","ember-cli-internal-test-helpers","ember-cli-blueprint-test-helpers", +"@ember-tooling/classic-build-app-blueprint","@ember-tooling/classic-build-addon-blueprint","yam","promise.hash.helper", +"markdown-it-terminal","is-language-code","is-git-url","heimdalljs-graph","heimdalljs-fs-monitor", +"find-yarn-workspace-root","ember-cli-preprocess-registry","ember-cli-is-package-missing","dag-map","content-tag", +"clean-base-url","capture-exit","broccoli-slow-trees","broccoli-funnel-reducer","broccoli-config-replace", +"broccoli-config-loader","babel-remove-types","@pnpm/find-workspace-dir","@ember/app-blueprint", +"@ember-tooling/blueprint-model","@ember-tooling/blueprint-blueprint","mailparser","@types/smtp-server", +"@types/mailparser","sendgrid","postmark","moonmail","mandrill","mailgun","mailchimp","preview-email", +"nodemailer-sendgrid", +"juice","get-paths","@ladjs/i18n","@ladjs/consolidate","Cryptography","curve","Elliptic","EC","grunt-mocha-istanbul", +"minimalistic-crypto-utils","minimalistic-assert","hmac-drbg","hash.js","brorand","eleme","vue-template-es2015-compiler", +"uppercamelcase","transliteration","select-version-cli","gulp-cssmin","file-save","eslint-config-elemefe","cp-cli", +"babel-regenerator-runtime","algoliasearch","@vue/component-compiler-utils","batch-processor","home-path", +"electron-download","parse-author","get-package-info","galactus","cross-spawn-windows-exe","@electron/universal", +"@electron/osx-sign","@electron/notarize","snap","appx","Mac","MacOS","OS X","msi","nsis","builder-util-runtime", +"app-builder-lib","builder-util","dmg-builder","lazy-val","through2-map","backport","aliasify","agentkeepalive", +"@types/get-stream","linez","gulp-reporter","gulp-exclude-gitignore","data-viz","charting-library","data-visualization", +"@lang/rollup-plugin-dts","zrender","control flow","@antv/g6","dw-neit-rc-upload", +"dw-neit-rc-tree-select","dw-neit-rc-tooltip","dw-neit-rc-table","dw-neit-rc-util","dw-neit-rc-tree", +"dw-neit-rc-textarea","dw-neit-rc-tabs","dw-neit-rc-switch","dw-neit-rc-steps","dw-neit-rc-slider","dw-neit-rc-select", +"dw-neit-rc-segmented","dw-neit-rc-resize-observer","dw-neit-rc-rate","dw-neit-rc-progress","dw-neit-rc-picker", +"dw-neit-rc-pagination","dw-neit-rc-notification","dw-neit-rc-motion","dw-neit-rc-menu","dw-neit-rc-mentions", +"dw-neit-rc-input-number","dw-neit-rc-input","dw-neit-rc-image","dw-neit-rc-field-form","dw-neit-rc-dropdown", +"dw-neit-rc-drawer","dw-neit-rc-dialog","dw-neit-rc-collapse","dw-neit-rc-checkbox","dw-neit-rc-cascader", +"dw-neit-rc-component-trigger","dw-neit-rc-component-tour","dw-neit-rc-component-qrcode", +"dw-neit-rc-component-mutate-observer","dw-neit-rc-component-color-picker","dw-neit-ant-design-react-slick", +"dw-neit-icons","dw-neit-cssinjs-utils","dw-neit-cssinjs","dw-neit-colors","elementscript", +"@types/json-stable-stringify","dts-critic","file upload","@parcel/transformer-sass","@parcel/transformer-inline-string", +"draftjs","stats-webpack-plugin","gulp-derequire","fbjs-scripts","@types/temp","parse-cmd-args","import-from", +"git-clone","random-buffer","is-zip","archive-type","ext-name","substitution","mathml","rollup-plugin-includepaths", +"lodash.sample","raster", +"classlist","cross-browser","@react-bootstrap/eslint-config-typescript","@react-bootstrap/eslint-config", +"@react-bootstrap/babel-preset","@4c/tsconfig","@4c/rollout","offline-search","lunr-languages","autocomplete.js", +"truncate-html","crowdin-cli","document database","cosmos db","cosmosdb","priorityqueuejs","int64-buffer", +"binary-search-bounds","big-integer","documentation-schema","vfile-sort","vfile-reporter","remark-reference-links", +"mdast-util-inject","konan","doctrine-temporary-fork","update-section","anchor-markdown-header", +"@textlint/markdown-to-ast","tabs","docsify.js","web development","language agnostic","document management system","dms", +"build and deployment","coffeelint","@bevry/update-contributors","watchr","unbounded","typechecker","taskgroup", +"scandirectory","safeps","safefs","rfc-log-levels","query-engine","progress-title","lazy-require","ignorefs", +"extract-opts","extendr","event-emitter-grouped","errlop","envfile","eachr","docpad-baseplugin","docmatter", +"caterpillar","bal-util","ansistyles","ambi","@bevry/pluginloader","docker.io", +"docker-modem","parameters","mecano","literate","posthog-node","json-schema-faker","jq-web","appium-safari-driver", +"appium-geckodriver","appium-chromium-driver","callbacks","weak","dnode-protocol","agnostic","jsdoc2md", +"dmd-plugin-example","common-sequence","@discordjs/docgen","@discordjs/formatters","@discordjs/builders", +"lodash.snakecase","@discordjs/ws","@discordjs/voice","directed weighted edge","weighted digraph", +"strongly connected components","topological","topologic","DAG","directed acyclic graph","directed cycle","dense graph", +"sparse graph","node degree","adjacency matrix","adjacency list","connectivity matrix","graph representation", +"graph algorithms","BFS","bfs","breadth-first search","breadth first search","DFS","dfs","depth first search","first", +"Breadth","breadth","Depth","depth","acyclic","cycle","connectivity","Adjacency","adjacency","Unweighted","unweighted", +"Weighted","weighted","graph structure","Graph Theory","graph theory","Vertex", +"vertex","digraph","Directed","directed","directed-graph","directedgraph","directed graph","Directed Graph", +"data-structure-typed","colorized","difftohtml","line-by-line","side-by-side","side","is-ci-cli","image-webpack-loader", +"@types/nopt","@types/hogan.js","@profoundlogic/hogan","mm","eslint-config-egg","egg-bin","indentation","detective-cjs", +"is-relative","deprecated","deprecate","patch-version","deps-regex","threshold","tick","settimeout","stall","defer", +"unlimited-timeout","is-path-cwd","jsmd","is-mergeable-object","has-typed-arrays","available-typed-arrays", +"which-collection","which-boxed-primitive","regexp.prototype.flags","is-shared-array-buffer","is-array-buffer", +"es-get-iterator","array-buffer-byte-length","object equal","deep equal","chai util","eslint-plugin-filenames", +"@js-temporal/polyfill","eslint-config-strict","simple-assert","kewlr","change-tracking","json-ptr","is-obj", +"deduplication","deduplicate","distinct","remove duplicates","dupes","duplicates", +"multi-line string","@types/babel-plugin-macros","tar.bz","bzip2","is-jpg","strip-dirs","decompress-targz", +"decompress-tarbz2","decompress-tar","lowercase","decamelcase","rate-limit","interval","invoke","debouncing", +"async wrapper","sleep","require-directory","babel-plugin-replace-import-extension","@size-limit/esbuild", +"@date-fns/docs","@date-fns/utc","@date-fns/tz","js-fns","cloc","swagger-express-middleware","rss-parser", +"request-debug","json-schema-faker-bb","@captemulation/get-parameter-names","construct","invert","opposite", +"css library","laravel","tailwind rails","tailwind css plugin","tailwind component","tailwind plugin","dable", +"data-join","selection","shuffle","bisect","histogram","internmap","d3-transition","d3-quadtree","d3-dispatch", +"d3-delaunay","d3-contour","d3-timer","d3-fetch","d3-chord","d3-brush","d3-zoom","d3-ease","d3-drag","d3-axis","d3-geo", +"longest","cypress.io","@cypress/request","@types/sizzle", +"@cypress/xvfb","blob-util","ospath","unique id","updtr","riteway","eslint-plugin-testcafe","cucumber-tag-expressions", +"cucumber-expressions","is-generator","csv-json","convert csv to json","tojson","csv convert","csv to json","parse csv", +"csv parser","csv-spectrum","generation","@types/turndown","@tsconfig/node24","@asamuzakjp/css-color", +"cssnano-preset-lite","cssnano-preset-advanced","web-features","walker","json-to-ast","clap","sizzle", +"cheerio-soupselect","minimizer","cssnano-preset-simple","@types/clean-css","@parcel/css","@swc/css", +"isomorphic-unfetch","sorter","spelling checker","spell checker","spelling","spell","cspell-lib","cspell-io", +"cspell-glob","cspell-gitignore","cspell-dictionary","cspell-config-lib","@cspell/url","@cspell/dynamic-import", +"@cspell/cspell-worker","@cspell/cspell-types","@cspell/cspell-pipe","@cspell/cspell-performance-monitor", +"@cspell/cspell-json-reporter","nlm","eslint-config-groupon","Base64url","CBC","CTR","CFB","OFB","HMAC","PBKDF2","DES", +"AES","Rabbit","RC4","SHA-256","SHA256","SHA-1","SHA1","Hash","pseudorandombytes","randomfill","public-encrypt", +"hash-base","diffie-hellman","create-hmac","create-ecdh","browserify-sign","browserify-cipher","path-ext","spawnSync", +"eslint-config-moxy","babel-preset-moxy","shebang-command","rollup-plugin-esbuild-minify","environment variable", +"cross-environment","zshy","@epic-web/config","@epic-web/invariant","web-component","custom-element","cropper-element", +"image-processing","image-viewing","image-cropping","cropper.js","cropper","@cropper/utils","@cropper/elements", +"yaml-lint","secretlint","metalint","eslint-plugin-no-unsanitized","eslint-plugin-array-func", +"@stryker-mutator/tap-runner","@secretlint/secretlint-rule-npm","@secretlint/secretlint-rule-github", +"@prettier/plugin-xml","@prantlf/jsonlint","cron job","cronjob","node cron","@insurgent/conventional-changelog-preset", +"@insurgent/commitlint-config","postcss-image-inliner","postcss-discard","penthouse","oust","inline-critical", +"group-args","css-url-parser","async-traverse-tree","ripemd160","cipher-base","crcjam", +"crc8dvbs2","crc8","crc81wire","crc32","crc24","crc1","crc16xmodem","crc16","crc16modbus","crc16kermit","crc16ccitt", +"spider","@types/got","seenreq","tslog","quick","cp","log-driver","lcov-parse","remark-preset-davidtheclark", +"eslint-config-davidtheclark-node","@types/parse-json","structuredClone","Iterator","Promise","ECMAScript 2024", +"ECMAScript 2020","ECMAScript 2018","ECMAScript 7","ECMAScript 5","ES2024","ES2019","@cordova/eslint-config", +"cordova-lib","cordova-create","cordova-common","simple qrcode","logo","corcojs-qrcode-sample","js qr code", +"npm qr JavaScript","simple qr","noms","is-gzip","selenium-server-standalone-jar","@brettz9/node-static", +"toggle-selection","unsign","sign","top-sites","inline-source-map","conventionalcommits.org","compare-func","add-stream", +"conventional-changelog-preset-loader","@conventional-changelog/git-client","fd-package-json","rfc7231","rfc6266", +"bracket-template","swig-templates","dustjs-helpers","arc-templates","liquid-node", +"haml-coffee","velocityjs","tinyliquid","whiskers","ractive","htmling","walrus","toffee","teacup","plates","liquor", +"hamljs","hamlet","twing","jqtpl","vash","qejs","just","jazz","dust","slm","ect","stacktrace","clack","sentencer", +"kruptein","save","preferences","is-safe-filename","atomically","config-node","node-config","hjson","faceoff", +"eslint-plugin-import-lite","@hirez_io/observer-spy","ctrlc-wrapper","compressible","observe","tagged","oneline", +"literal","indents","heredoc","es6-tag","es2015-tag","conventional changelog","cz-conventional-changelog-default-export", +"@istanbuljs/nyc-config-babel","usage","table-layout","@codemirror/buildhelper","@codemirror/autocomplete", +"@codemirror/lint","code-coverage","urlgrey","teeny-request","coro","istanbul-harmony","command line interface","xsel", +"xclip","clip","pbcopy", +"pasteboard","paste","is64bit","is-wayland","clipboard-image","cut","good-listener","eslint-plugin-arca","@yarnpkg/core", +"@types/rollup","@types/extract-stack","@types/ansi-styles","@types/strip-ansi","password-prompt","natural-orderby", +"@oclif/linewrap","object-treeify","extract-stack","@oclif/screen","hyperlinker","cardinal","ellipsis","truncate", +"tables","ansi-256-colors","expresso","hide","timers-ext","autocompletion","optparse","argsparse","opt","parseopt", +"unrequire","temp-sandbox","@types/read-pkg-up","@chrisblossom/eslint-config","@ckeditor/ckeditor5-special-characters", +"@ckeditor/ckeditor5-restricted-editing","@ckeditor/ckeditor5-find-and-replace","@ckeditor/ckeditor5-horizontal-line", +"@ckeditor/ckeditor5-source-editing","@ckeditor/ckeditor5-remove-format","@ckeditor/ckeditor5-markdown-gfm", +"@ckeditor/ckeditor5-html-support","@ckeditor/ckeditor5-show-blocks","@ckeditor/ckeditor5-word-count", +"@ckeditor/ckeditor5-page-break","@ckeditor/ckeditor5-html-embed","@ckeditor/ckeditor5-fullscreen", +"@ckeditor/ckeditor5-code-block","@ckeditor/ckeditor5-highlight","@ckeditor/ckeditor5-language", +"@ckeditor/ckeditor5-bookmark","@ckeditor/ckeditor5-autosave","@ckeditor/ckeditor5-minimap", +"@ckeditor/ckeditor5-mention","@ckeditor/ckeditor5-style","@ckeditor/ckeditor5-emoji","continuous","watchFile", +"@paulmillr/jsbt","choerodon","webpack-filter-warnings-plugin", +"values.js","scrollama","react-sublime-video","react-infinite-scroller","rc-scroll-anim","rc-queue-anim","mark-twain", +"eslint-tinker","bisheng-plugin-toc","bisheng-plugin-react","bisheng-plugin-description","bisheng-plugin-choerodon-ui", +"@types/react-slick","@types/react-beautiful-dnd","@types/qrcode.react","@types/jsbarcode","@types/insert-css", +"@types/element-resize-event","@types/codemirror","@babel/plugin-transform-proto-to-assign", +"smooth-scroll-into-view-if-needed","rmc-feedback","react-quill","react-image-lightbox","react-easy-crop", +"react-codemirror2","react-beautiful-dnd","quill-delta-to-html","mutationobserver-shim","jsonlint-mod","jsbarcode", +"insert-css","htmlhint","element-resize-event","dom-lib","dom-closest","css-unit-converter","css-animation", +"choerodon-ui-font","add-dom-event-listener","@better-scroll/core","node-version","@octokit/graphql","@imgix/js-core", +"parse5-htmlparser2-tree-adapter","parse5-parser-stream","encoding-sniffer","cheerio-select","graphs", +"rollup-plugin-swc3","karma-safari-private-launcher","eslint-config-chartjs","chartjs-test-utils", +"chartjs-adapter-moment","chartjs-adapter-luxon","@types/offscreencanvas","@kurkle/color","ofetch","node-fetch-native", +"convert-gitmoji","confbox","header-case","kebab-case","dice", +"mersenne","gulp-uglify-es","gulp-ava","git-update-ghpages","docpress","yoctodelay","superset","containSubset","subset", +"objects","@debitoor/eslint-config-debitoor","@web/dev-server-rollup","loupe","slimerjs","case sensitive","cairo", +"pixman","callbound","set-function-length","es-define-property","call-bind-apply-helpers","cache wrapper", +"cache strategies","cache middleware","cache abstraction","caching layer","multi-store cache","in-memory cache", +"cache manager","cacheable","cache-manager-redis-yet","@keyv/redis","@cacheable/utils","eslint-config-rem","@types/mri", +"v8-to-istanbul","@bcoe/v8-coverage","typed array","utfx","testjs","metascript","lxiv","closurecompiler","uploads", +"streamsearch","ben","safe-json-stringify","@types/jsonpath","jsonpathly","@stoplight/yaml","@asyncapi/specs","bundled", +"builtins","builtin","dataview","compatible","compilation","console-group","regexpu-core","acorn-dynamic-import", +"litecoin","crytography","bitcoin","base58", +"target","node-releases","test-peer-range","rename-function-calls","mothership","exposify","commonj-esque", +"has-template-literals","has-object-spread","seq","labeled-stream-splicer","cached-path-relative","read-only-stream", +"browser-resolve","mkdirp-classic","shasum-object","syntax-error","htmlescape","deps-sort","live reload","browser sync", +"generate-changelog","bs-snippet-injector","resp-modifier","eazy-logger","easy-extender","dev-ip","bs-recipes", +"browser-sync-ui","browser-sync-client","ts-docs-gen","multidep","broccoli-fixturify","broccoli-fixture","merge-trees", +"array-equal","readFileSync","static-module","quote-stream","mincer","astro-auto-import","@astrojs/prism", +"active record","datamapper","bookshelf-jsdoc-theme","create-error","Montgomery","Modulo","BigNum","Big number","BN", +"fluent interface","baconjs","kefir","@types/blessed","x256","term-canvas","picture-tuber","map-canvas", +"drawille-canvas-blessed-contrib","ansi-term","termcap","terminfo","tput", +"tui","curses","uglify-save-license","coffee-react","g2","snapshot-diff","react-with-styles-interface-css-compiler", +"react-with-styles-interface-aphrodite","moment-jalaali","declaration-bundler-webpack-plugin","bx-jest-electron", +"babel-plugin-inline-svg","babel-plugin-inline-react-svg","aphrodite","@welldone-software/why-did-you-render", +"@storybook/addon-info","@babel/preset-es2015","@antv/data-set","@antv/util","@antv/g2","@antv/component", +"@noble/hashes","file-uri-to-path","bignum","bigint","bigdecimal","biginteger","float","big","arithmetic","precision", +"arbitrary","serialise","streamify","spooks","please-release-me","tryer","hoopy","check-types","ssr svelte framework", +"svelte framework","ssr vue framework","vue framework","ssr react framework","react framework","JAMStack", +"typescript packager","server side rendering","ssr","hot module replacement","micro frontend","microfrontend", +"modular development","sigle page","isomorphic typescript","isomorphic javascript","universal typescript", +"universal javascript","uimport","json-format","@beyond-js/bee","@beyond-js/fs","@beyond-js/specifier-parser","docdown", +"simplehttpserver","dotpathlookup","jsl","find-global-packages","script-injector","response-stream","ignorepatterns", +"ansicolors","whether-dangerous","web3-automobile7","we-hunt-process","tool-invented-girl-jungle","tiny-dream-supply5", +"stretch-onto-driver7","spider-melted-chemical","shade-swim-shells1","seldom-fire-web3-running", +"rocket-location-calm-valley","percent-impossible-score","needs-supper-anything","mouse-bat-web3-present", +"mountain-quarter-sit8","mainly-cent","listen-private-thee6","known-wet-thirty-gave","is-straight-web3-attack", +"industrial-public-immediately-until","gain-pleasant-prepare","excitement-tonight-dead","did-straight-sister-sail", +"compare-breeze-mad2","column-wore-meet-war","brush-bigger-afternoon0","bring-water-silence","born-greatly-explain3", +"blanket-line","art-near-room-catch","magic, self-described javaScript objects","asynchronous script loading", +"sharable codes","front-backend","hot reload","consistent","AOP","IoC","pomelo-logger","orange sms","ministructure", +"basicauth","basic","codec","otpauth","@web/test-runner-junit-reporter","@web/test-runner-browserstack", +"@purtuga/esm-webpack-plugin","unicode-9.0.0","babel-plugin-transform-node-env-inline","lodash.zipobject", +"to-fast-properties","babel-plugin-transform-async-generator-functions","babel-plugin-transform-decorators", +"babel-plugin-transform-class-constructor-call","babel-plugin-transform-function-bind", +"babel-plugin-transform-do-expressions", +"babel-plugin-transform-react-jsx-self","babel-plugin-transform-react-jsx-source", +"babel-plugin-transform-react-display-name","@babel/plugin-transform-property-mutators","regenerator-transform", +"propTypes","babel-helper-builder-react-jsx","babel-plugin-transform-strict-mode","babel-plugin-syntax-decorators", +"babel-plugin-syntax-class-properties","babel-helper-function-name","babel-helper-remap-async-to-generator","rename", +"cherry-pick","lodash-compat","lodash-bound","pmock","react-toolbox","dynamic","module.exports","babel-preset-jest", +"try-resolve","trim-right","output-file-sync","karma-env-preprocessor","factor-bundle","batchflow","json-edm-parser", +"browserify-mime","rollup-plugin-auto-external","string-replace-async","karma-jasmine-ajax","stream-throttle","dev-null", +"Accessibility","@axe-core/webdriverjs","weakmap-polyfill","grunt-bytesize","sri-toolbox","@deque/dot","cloudtrail", +"kinesis","glacier","beanstalk","vpc","storagegateway","importexport","mapreduce","emr","loadbalancing","elb", +"cloudsearch","autoscaling","iam","cloudwatch","cloudformation","fps","cloudfront","elasticache","rds","route53", +"simpledb","ec2","ps-node", +"empty-module","webpack-log","observables","yield","🦄","supertap","package-config","currently-unhandled","concordance", +"ci-parallel-vars","chunkd","cbor","arrgv","detective-es6","commits","import-cwd","find-package-json","npm-lockfile", +"node-cleanup","libnpx","pika-plugin-ts-types","pika-plugin-build-web-babel","@pika/pack","then-sleep","listen", +"babel-plugin-syntax-async-generators","native-promise-only","babel-preset-es2017","shouldjs","pruddy-error","propget", +"fn.name","array-fill","arrayify","ESnext","flatMap","es-shim-unscopables","stream-bench","archiver-jsdoc-theme", +"zip-stream","readdir-glob","archiver-utils","xray","appsync","prettier-plugin-organize-attributes", +"@aws-amplify/amplify-appsync-simulator","aws-xray-sdk-core","@aws-sdk/signature-v4","@aws-sdk/protocol-http", +"@aws-sdk/hash-node","@aws-sdk/credential-provider-node","telemetry","tracing","application insights", +"performance monitoring","request monitoring","exception monitoring","@types/microsoft__typescript-etw","@types/long", +"@azure/opentelemetry-instrumentation-azure-sdk","@opentelemetry/exporter-metrics-otlp-http", +"@opentelemetry/exporter-trace-otlp-http","@opentelemetry/exporter-logs-otlp-http", +"@azure/monitor-opentelemetry-exporter", +"@opentelemetry/semantic-conventions","@opentelemetry/otlp-exporter-base","diagnostic-channel-publishers", +"@opentelemetry/sdk-trace-node","@azure/monitor-opentelemetry","@azure/functions-old","diagnostic-channel", +"@azure/functions","@azure/identity","mobile testing","@types/portscanner","@appium/eslint-config-appium-ts", +"io.appium.settings","appium-chromedriver","appium-adb","cracks","object-to-querystring","apollo-fetch", +"apollo-link-http-common","zen-observable-ts","relay","apns","push notifications","markdown-documentation", +"api-documentation","apidoc-light","eslint-config-recommended","expose-loader","diff-match-patch","amf","raml", +"rollup-plugin-cpy","amf-client-js","@web/test-runner-visual-regression","@polymer/iron-test-helpers", +"@open-wc/building-rollup","@anypoint-web-components/anypoint-menu-mixin","@polymer/paper-toast", +"@polymer/iron-media-query","@polymer/app-layout","@api-components/api-summary","@api-components/api-documentation", +"@api-components/api-console-ext-comm","cypress-image-diff-html-report","@eslint-react/eslint-plugin", +"@rc-component/virtual-list","@codecov/webpack-plugin","csstree-validator","@ant-design/x-sdk","@blazediff/core", +"@ant-design/x","domparser-rs","@rc-component/resize-observer","@rc-component/mutate-observer", +"@rc-component/notification","@rc-component/input-number","@rc-component/color-picker","@rc-component/tree-select", +"@ant-design/cssinjs-utils","@rc-component/pagination","@rc-component/segmented","@rc-component/textarea", +"@rc-component/progress","@rc-component/mentions", +"@rc-component/dropdown","@rc-component/collapse","@rc-component/checkbox","@rc-component/cascader", +"@ant-design/fast-color","@rc-component/tooltip","@rc-component/upload","@rc-component/switch","@rc-component/slider", +"@rc-component/select","@rc-component/qrcode","@rc-component/picker","@rc-component/motion","@rc-component/drawer", +"@rc-component/dialog","@rc-component/table","@rc-component/steps","@rc-component/input","@rc-component/image", +"@rc-component/util","@rc-component/tree","@rc-component/tabs","@rc-component/rate","@rc-component/menu", +"@rc-component/form","vueComponent","vue-request","vue-infinite-scroll","vue-drag-resize","vue-clipboard2","umi-request", +"selenium-server","less-vars-to-js","jest-transform-stub","jest-serializer-vue","ignore-emit-webpack-plugin", +"eslint-plugin-no-explicit-type-exports","diacritics","cz-git","compare-versions", +"babel-plugin-transform-require-context","@vue/eslint-config-prettier","@vue/cli-plugin-eslint", +"@types/postcss-load-config","vue-types","dom-align","@simonwep/pickr","@ant-design/icons-vue","svg-term-cli","re", +"scrollback","erase","iterm2","yellow","white","underline","str","reset","magenta","italic","hidden","grey","green", +"dim", +"cyan","clorox","bold","blue","black","bgYellow","bgyellow","bgWhite","bgwhite","bgRed","bgred","bgMagenta","bgmagenta", +"bgGreen","bggreen","bgCyan","bgcyan","bgBlue","bgblue","bgBlack","bgblack","justified", +"sourcemap-istanbul-instrumenter-loader","node-modules-path","exists-sync","@ngtools/webpack","@ngtools/json-schema", +"@angular-cli/base-href-webpack","@angular-cli/ast-tools","ux bootstrap","RabbitMQ","AMQP 0-9-1","AMQP","claire", +"buffer-more-ints","Ajv","json-schema-validation","uri-js","re2","module-from-string","dayjs-plugin-utc", +"@types/require-from-string","fast-uri","abstract-browser","transient-error","thunky-with-args","tap-completed", +"run-parallel-settled","on-stream-close","nanoresource-collection","nanoresource","maybe-combine-errors", +"bruce-millis-option","airtap-multi","airtap-default","@airtap/browserify-istanbul","jobs","@types/human-interval", +"human-interval","date.js","flowcontrol","@types/git-clone","@types/figlet","progress-estimator", +"abortsignal","abortcontroller","abort","type-tester","karma-growl-reporter","@mysticatea/spy","event-target-shim", +"zero-knowledge","aleo","merge-deep","create-eslint-config","create-vue","@babel/plugin-transform-react-jsx-self", +"meta applications","css context properties","transformation api","cloud file platform","smart cdn","integrations", +"uc-blocks","lr-blocks","blocks","building blocks","upload api client","cloud image editor","image size","image editing", +"image optimization","adaptive image","lighter","esbuild-minify-templates","@size-limit/esbuild-why", +"vitest-browser-lit","eslint-plugin-lit","@types/svg-sprite","eslint-plugin-wc","ts-lit-plugin","lit-analyzer", +"render-jsx","@uploadcare/quality-insights","@uploadcare/upload-client","@uploadcare/image-shrink","@lit/context", +"nanostores","keyux","Unleash","@types/type-is","ts-node-dev","unleash-client","react-utils","react-overlay-trigger", +"overlay-trigger","react-input","react-icon","@uiw/icons","react-button","slate","plate","slate-hyperscript", +"use-deep-compare","jotai-optics","slate-react","zustand-x","optics-ts", +"is-hotkey","jotai-x","ucloud","stylelint-processor-styled-components","stylelint-config-styled-components", +"jsdom-screenshot","jest-emotion","css-hot-loader","babel-plugin-webpack-alias","babel-plugin-typescript-to-proptypes", +"babel-plugin-emotion","@ucloud-fe/recodo-gen","z-use-drag","rc-form","rc-animate","file-bytes-formatter", +"emotion-theming","create-react-context","@ucloud-fe/calendar","@typescript-eslint/rule-schema-to-typescript-types", +"twitch","@twurple/common","@twurple/api-call","@d-fischer/shared-utils","@tinyhttp/content-disposition", +"@tinyhttp/accepts","forwarded","dom-testing-library","react-testing-library","@esbuild-plugins/node-modules-polyfill", +"@ph.fritsche/scripts-config","esbuild-plugin-globals","@ph.fritsche/toolbox","shared-scripts", +"@relmify/jest-serializer-strip-ansi","@callstack/eslint-config","jest-snapshot-serializer-ansi","passcode","webauthn", +"passkey","hanko","eslint-config-preact","better-docs","@github/webauthn-json","@types/js-cookie","tanstack", +"@testing-library/svelte","@tanstack/query-persist-client-core","@tanstack/query-core","scalable-vector-graphics","JSDA", +"reactive html attributes","https imports","cdn imports","import maps","css custom properties","adopted stylesheets", +"constructable stylesheets","meta application","symbiote","stylelint-config-sass-guidelines", +"@swisspost/design-system-tokens","@swisspost/design-system-icons","swcpack", +"@rstest/core","@swc/counter","@svgr/plugin-jsx","@babel/plugin-transform-react-constant-elements","vite plugin", +"@sveltejs/vite-plugin-svelte-inspector","postcss-calc-ast-parser","ml-matrix","expr-eval-fork","CMS","Markdown", +"Documentation","Components","Assets","Tokens","Design Tokens","SDK","Supernovaio","Design Systems","Supernova", +"yaml-front-matter","rome","react-window","array-move","@types/react-window","@types/react-color","@types/puppeteer", +"@storybook/manager-webpack5","@storybook/builder-webpack5","@emotion/babel-preset-css-prop","react-superellipse", +"react-qrcode-logo","react-pin-input","rc-upload","rc-tree-select","rc-textarea","rc-table","rc-switch","rc-steps", +"rc-select","rc-segmented","rc-resize-observer","rc-rate","rc-picker","rc-pagination","rc-notification","rc-mentions", +"rc-input-number","rc-input","rc-image","rc-dropdown","rc-collapse","rc-checkbox","rc-cascader","phosphor-react","jsqr", +"flatlist-react","boring-avatars","@zxing/library","@zxing/browser","@polkadot/wasm-crypto","@polkadot/util-crypto", +"@polkadot/react-identicon","@fortawesome/free-regular-svg-icons", +"autodocs","MDX","organize","@storybook/react-dom-shim","@storybook/csf-plugin","@sinonjs/referee-sinon","wdio-reporter", +"wdio","mocha-testdata","@wdio/dot-reporter","@wdio/reporter","@serenity-js/mocha","@serenity-js/local-server", +"@serenity-js/jasmine","@serenity-js/cucumber","@serenity-js/assertions","@fastify/swagger","@fastify/http-proxy", +"@fastify/basic-auth","@scalar/react-renderer","@scalar/galaxy","vite-plugin-css-injected-by-js", +"rollup-plugin-webpack-stats","@scalar/workspace-store","@scalar/use-toasts","@scalar/themes","@scalar/use-hooks", +"@scalar/snippetz","@scalar/types","@scalar/sidebar","@scalar/oas-utils","@scalar/helpers","@scalar/components", +"@scalar/icons","@scalar/api-client","@scalar/code-highlight","@scalar/agent-chat","microdiff","API reference", +"@sanity/semantic-release-preset","@sanity/ui-workshop","@portabletext/toolkit","@portabletext/react", +"@sanity/pkg-utils","react-refractor","@sanity/client","@sanity/icons","@sanity/color","dotenv-flow","@types/cpx", +"@sanity/ui","refractor","groq-js","commondir","@types/query-string","@types/nanoid","@phryneas/ts-version","avatars", +"3D","ready-player-me","react-three-fiber","threejs","@storybook/preset-create-react-app","@react-three/postprocessing", +"@react-three/test-renderer","@storybook/node-logger","cypress-image-diff-js","@react-three/fiber","@react-three/drei", +"postprocessing","suspend-react","three-stdlib","r3f-perf","detect-gpu","gltfpack","animations","fonts","quasar", +"eslint-config-quasar","line-awesome","eva-icons","@mdi/svg","databinding","fontend","qooxdoo","dirsum", +"@babel/plugin-proposal-optional-chaining-assign","@qooxdoo/eslint-config-jsdoc-disable","@qooxdoo/eslint-plugin-qx", +"@qooxdoo/eslint-config-qx","@metalsmith/layouts","jstransformer-dot","es6-promise-pool","core-js-bundle","tap-colorize", +"unset-value","set-value","get-value","cldr","wct-browser-legacy","polymer-cli","polymer-build","lazypipe", +"gulp-vulcanize","dom5","@polymer/test-fixture","@polymer/iron-component-page","@polymer/gen-closure-declarations", +"stories","speccer","spacing","pin","html-elements","grid-layout","dissection","dissect","annotation","anatomy", +"vitepress-plugin-group-icons","unified-prettier","typedoc-vitepress-theme","typedoc-plugin-rename-defaults", +"typedoc-plugin-remark","typedoc-plugin-mdn-links","typedoc-plugin-frontmatter","eslint-config-phun-ky","cobertura", +"@phosphor/virtualdom", +"@phosphor/signaling","@phosphor/properties","@phosphor/messaging","@phosphor/keyboard","@phosphor/dragdrop", +"@phosphor/domutils","@phosphor/disposable","@phosphor/coreutils","@phosphor/commands","@phosphor/algorithm", +"consumer driven testing","contract testing","pact-js","pact","@pact-foundation/pact-js-prettier-config", +"@pact-foundation/pact-core","@otterhttp/etag","@otterhttp/vary","@otterhttp/encode-url", +"@otterhttp/content-disposition","es-escape-html","@otterhttp/router","@otterhttp/url","@otterhttp/type-is", +"@otterhttp/proxy-address","@otterhttp/accepts","gulp-transform","gulp-svg-inline","@opentiny/vue-hooks", +"@opentiny/utils","headless-components","renderless-components","opentiny","component-library", +"@opentiny/vue-year-table","@opentiny/vue-year-range","@opentiny/vue-wizard","@opentiny/vue-watermark", +"@opentiny/vue-virtual-tree","@opentiny/vue-virtual-scroll-box","@opentiny/vue-user-link", +"@opentiny/vue-user-head-group","@opentiny/vue-user-head","@opentiny/vue-user-contact","@opentiny/vue-user-account", +"@opentiny/vue-user","@opentiny/vue-upload-list","@opentiny/vue-upload-dragger","@opentiny/vue-upload", +"@opentiny/vue-tree-select","@opentiny/vue-tree-menu","@opentiny/vue-tree","@opentiny/vue-transfer-panel", +"@opentiny/vue-transfer","@opentiny/vue-top-box","@opentiny/vue-tooltip","@opentiny/vue-toggle-menu", +"@opentiny/vue-timeline-item","@opentiny/vue-time-spinner","@opentiny/vue-time-select","@opentiny/vue-time-range", +"@opentiny/vue-time-picker-mobile","@opentiny/vue-time-picker","@opentiny/vue-time-panel", +"@opentiny/vue-time-line","@opentiny/vue-time","@opentiny/vue-text-popup","@opentiny/vue-tag-input", +"@opentiny/vue-tag-group","@opentiny/vue-tag","@opentiny/vue-tabs","@opentiny/vue-table","@opentiny/vue-tabbar-item", +"@opentiny/vue-tabbar","@opentiny/vue-tab-item","@opentiny/vue-switch","@opentiny/vue-sticky","@opentiny/vue-steps", +"@opentiny/vue-statistic","@opentiny/vue-standard-list-item","@opentiny/vue-split","@opentiny/vue-space", +"@opentiny/vue-slider-button-group","@opentiny/vue-slider-button","@opentiny/vue-slider","@opentiny/vue-skeleton-item", +"@opentiny/vue-skeleton","@opentiny/vue-signature","@opentiny/vue-selected-box","@opentiny/vue-select-wrapper", +"@opentiny/vue-select-view","@opentiny/vue-select-mobile","@opentiny/vue-select-dropdown","@opentiny/vue-select", +"@opentiny/vue-search","@opentiny/vue-scrollbar","@opentiny/vue-scroll-text","@opentiny/vue-row","@opentiny/vue-roles", +"@opentiny/vue-river","@opentiny/vue-recycle-scroller","@opentiny/vue-record","@opentiny/vue-rate", +"@opentiny/vue-radio-group","@opentiny/vue-radio-button","@opentiny/vue-radio","@opentiny/vue-query-builder", +"@opentiny/vue-quarter-panel","@opentiny/vue-qr-code","@opentiny/vue-pull-refresh","@opentiny/vue-progress", +"@opentiny/vue-popup","@opentiny/vue-popover","@opentiny/vue-popeditor","@opentiny/vue-popconfirm", +"@opentiny/vue-pop-upload","@opentiny/vue-picker","@opentiny/vue-panel","@opentiny/vue-pager-item","@opentiny/vue-pager", +"@opentiny/vue-option-group","@opentiny/vue-option","@opentiny/vue-numeric","@opentiny/vue-number-animation", +"@opentiny/vue-notify","@opentiny/vue-nav-menu","@opentiny/vue-month-table","@opentiny/vue-month-range", +"@opentiny/vue-modal","@opentiny/vue-mind-map","@opentiny/vue-milestone","@opentiny/vue-message","@opentiny/vue-menu", +"@opentiny/vue-logout","@opentiny/vue-logon-user","@opentiny/vue-locales","@opentiny/vue-loading", +"@opentiny/vue-load-list","@opentiny/vue-link-menu","@opentiny/vue-link","@opentiny/vue-layout", +"@opentiny/vue-ip-address","@opentiny/vue-input","@opentiny/vue-image-viewer","@opentiny/vue-image", +"@opentiny/vue-hrapprover","@opentiny/vue-guide","@opentiny/vue-grid-toolbar","@opentiny/vue-grid-select", +"@opentiny/vue-grid-manager","@opentiny/vue-grid-column","@opentiny/vue-grid","@opentiny/vue-fullscreen", +"@opentiny/vue-form-item","@opentiny/vue-form","@opentiny/vue-fluent-editor","@opentiny/vue-flowchart", +"@opentiny/vue-floating-button","@opentiny/vue-floatbar","@opentiny/vue-float-button","@opentiny/vue-filter-panel", +"@opentiny/vue-filter-box","@opentiny/vue-filter-bar","@opentiny/vue-filter","@opentiny/vue-file-upload", +"@opentiny/vue-fall-menu","@opentiny/vue-exception","@opentiny/vue-espace","@opentiny/vue-dynamic-scroller-item", +"@opentiny/vue-dynamic-scroller","@opentiny/vue-dropdown-menu","@opentiny/vue-dropdown-item","@opentiny/vue-dropdown", +"@opentiny/vue-drop-times","@opentiny/vue-drop-roles","@opentiny/vue-drawer","@opentiny/vue-divider", +"@opentiny/vue-dialog-select","@opentiny/vue-dialog-box","@opentiny/vue-dept","@opentiny/vue-date-table", +"@opentiny/vue-date-range","@opentiny/vue-date-picker-mobile-first","@opentiny/vue-date-picker", +"@opentiny/vue-date-panel","@opentiny/vue-currency","@opentiny/vue-crop","@opentiny/vue-country", +"@opentiny/vue-container","@opentiny/vue-config-provider","@opentiny/vue-company","@opentiny/vue-column-list-item", +"@opentiny/vue-column-list-group","@opentiny/vue-color-select-panel","@opentiny/vue-color-picker", +"@opentiny/vue-collapse-transition","@opentiny/vue-collapse-item","@opentiny/vue-collapse","@opentiny/vue-col", +"@opentiny/vue-checkbox-group","@opentiny/vue-checkbox-button","@opentiny/vue-checkbox","@opentiny/vue-cell", +"@opentiny/vue-cascader-view","@opentiny/vue-cascader-select","@opentiny/vue-cascader-panel", +"@opentiny/vue-cascader-node","@opentiny/vue-cascader-mobile","@opentiny/vue-cascader-menu","@opentiny/vue-cascader", +"@opentiny/vue-carousel-item","@opentiny/vue-carousel","@opentiny/vue-card-template","@opentiny/vue-card-group", +"@opentiny/vue-card","@opentiny/vue-calendar-view","@opentiny/vue-calendar-bar","@opentiny/vue-calendar", +"@opentiny/vue-button-group","@opentiny/vue-button","@opentiny/vue-bulletin-board","@opentiny/vue-breadcrumb-item", +"@opentiny/vue-breadcrumb","@opentiny/vue-base-select","@opentiny/vue-badge","@opentiny/vue-autocomplete", +"@opentiny/vue-async-flowchart","@opentiny/vue-area","@opentiny/vue-anchor","@opentiny/vue-amount","@opentiny/vue-alert", +"@opentiny/vue-action-sheet","@opentiny/vue-action-menu","api-client","semantic-release-plugin-update-version-in-files", +"@octokit/tsconfig","@octokit/request","@octokit/fixtures-server","@octokit/auth-app","@octokit/auth-action", +"@octokit/plugin-rest-endpoint-methods","@octokit/plugin-request-log","@octokit/plugin-paginate-rest","oclif-plugin", +"@types/wordwrap","@oclif/help","@nx/docker","kill-port","Tsc","Swc","babel-plugin-transform-typescript-metadata", +"babel-plugin-const-enum","Express","Lint","EsBuild","syntax highlighting", +"formatted","map-workspaces","tcompare","minify-registry-metadata","promise-call-limit","promise-all-reject-late", +"proggy","json-stringify-nice","@npmcli/query","smart-contracts","@nomicfoundation/eslint-plugin-hardhat-internal-rules", +"@nomicfoundation/eslint-plugin-slow-imports","@nomicfoundation/hardhat-ethers","ordinal","@shikijs/rehype", +"unist-util-filter","rehype-minify-whitespace","ng-doc","demo","guides","esthetic","@repo/prettier-config", +"@repo/typescript-config","@repo/eslint-config","@types/git-url-parse","@types/extra-watch-webpack-plugin", +"tailwindcss-themer","remark-link-rewrite","remark-heading-id","rehype-extract-excerpt","next-seo","mdast-util-phrasing", +"flexsearch","extra-watch-webpack-plugin","approximate-number","@vcarl/remark-headings","@iconify-icon/react", +"timepicker","mui-x","@mui/x-internals","@mui/core-downloads-tracker","low-level","intercept","web-encoding", +"express-rate-limit","engine.io-parser","@open-draft/until","@open-draft/logger","moj","aws-xray-sdk", +"@aws-sdk/client-ssm","JSON Body Parser","Body Parser","Middy","Durable function","Function URL","@datastream/core", +"@aws/durable-execution-sdk-js-testing","@aws/durable-execution-sdk-js","@types/jju","beta","AEDoc", +"local-eslint-config","decoupled-local-node-rig", +"@rushstack/rig-package","@rushstack/ts-command-line","@rushstack/terminal","@rushstack/node-core-library","normalizer", +"json:api","@material-ui/system","@material-ui/styles","@material-ui/utils","@material-ui/types","notification-system", +"notification-manager","react-remove-scroll","api-connect-tiwtter","api-connect-x","chatfanpage","vinyl-string", +"scss-comment-parser","@kobedevi/sassdoc-theme-default","sass-convert","safe-wipe","lodash.difference", +"@jupyterlab/testing","@lumino/widgets","@lumino/signaling","@lumino/properties","@lumino/polling","@lumino/messaging", +"@lumino/disposable","@lumino/coreutils","@lumino/commands","@lumino/application","@lumino/algorithm", +"@jupyterlab/ui-components","@jupyterlab/translation","@jupyterlab/statedb","@jupyterlab/services", +"@jupyterlab/rendermime-interfaces","@jupyterlab/rendermime","@jupyterlab/docregistry","@jupyterlab/coreutils", +"@jupyterlab/apputils","@date-io/dayjs","document-register-element","@types/redux-mock-store","sandboxed","painless", +"instant","@jest/test-sequencer","jest-snapshot","jest-runtime","jest-runner","jest-resolve-dependencies", +"jest-changed-files","@jest/console","itwinui","itwin","react-table","@itwin/itwinui-illustrations-react","stencil", +"@stencil/angular-output-target","@stencil/react-output-target","@stencil/vue-output-target","@capacitor/status-bar", +"@capacitor/keyboard","@capacitor/haptics","@capacitor/core","@stencil/sass","domino","fast-wrap-ansi","cli-width", +"@atlaskit/pragmatic-drag-and-drop-hitbox","@atlaskit/pragmatic-drag-and-drop-auto-scroll", +"@atlaskit/pragmatic-drag-and-drop","translate api","google api","google translate","google translate api", +"standard-schema","vine","typeschema","effect-ts","hookform","scheme-validation","nope-validator","newtype-ts", +"monocle-ts","io-ts-types","check-export-map","@typeschema/zod","@typeschema/main","@typeschema/core","leasot", +"@homer0/prettier-config","@homer0/eslint-plugin","@hapi/vision","@hapi/inert","@hapi/validate","@hapi/teamwork", +"@hapi/subtext","@hapi/statehood","@hapi/somever","@hapi/shot","@hapi/podium","@hapi/mimos","@hapi/heavy", +"@hapi/catbox-memory","@hapi/catbox","@hapi/call","@hapi/bounce","@hapi/boom","@hapi/ammo","sass-lint", +"@tailwindcss/forms","@tailwindcss/aspect-ratio","@graphql-markdown/cli","@graphql-markdown/graphql", +"@fastify/deepmerge","@grandlinex/swagger-mate","electron-devtools-installer","@electron-forge/cli","@electron/rebuild", +"@fortawesome/free-brands-svg-icons","@fortawesome/fontawesome-common-types","Roboto","roboto","Inter","positioning", +"React.js","@size-limit/preset-app","@fakeyanss/redocly-openapi-core","@eslint-community/eslint-plugin-mysticatea", +"warun","@emotion/use-insertion-effect-with-fallbacks","babel-check-duplicated-nodes","@emotion/memoize", +"@types/pretty-ms","WordPress","@wordpress/api-fetch","@stylistic/stylelint-plugin","aspx","razor","@types/workerpool", +"@types/sql.js","@types/sass","greenlock-express","github-markdown-css","cookie-encrypter","@tinyhttp/cookie-parser", +"@yandex-cloud/tsconfig","@yandex-cloud/prettier-config","@yandex-cloud/eslint-config","@types/markdownlint", +"markdown-it-meta","@types/async","threads-plugin","bem-cn-lite","@yandex-cloud/nodejs-sdk","@doc-tools/yfm2xliff", +"@diplodoc/openapi-extension","@diplodoc/mermaid-extension","@diplodoc/markdown-translation","@diplodoc/client","tsdoc", +"discordjs","esbuild-plugin-version-injector","eslint-config-neon","@vladfrangu/async_event_emitter", +"@sapphire/async-queue","yandex","@types/css","@diplodoc/tsconfig","@diplodoc/lint","@diplodoc/babel-preset", +"@diplodoc/utils","@diplodoc/file-extension","@diplodoc/cut-extension","deven","semver-compare","@types/semver-compare", +"reindent-template-literals","@types/stream-buffers","@types/lodash.merge","@types/has-ansi","@types/dirty-chai", +"@cucumber/query","@cucumber/compatibility-kit","capital-case","@cucumber/tag-expressions","@cucumber/pretty-formatter", +"@cucumber/messages","@cucumber/message-streams", +"@cucumber/junit-xml-formatter","@cucumber/html-formatter","@cucumber/gherkin-utils","@cucumber/gherkin", +"@cucumber/cucumber-expressions","@cucumber/ci-environment","specificity","pseudo", +"postcss-combine-duplicated-selectors","hugo-bin","nf","semantic","@comunica/types","vis-network","tablesort", +"bootstrap.native","@polka/send-type","@commitlint/read","@commitlint/format","vue.js component","vue component", +"vanilla-colorful","color-parse","blurhash","angular 5","ckeditor5-plugin","ckeditor5-feature","talk","reusable", +"conversation","communication","ui kit","@chatscope/chat-ui-kit-styles","human-id","@changesets/assemble-release-plan", +"@changesets/get-dependents-graph","@changesets/should-skip-package","@changesets/apply-release-plan", +"@inquirer/external-editor","@changesets/changelog-git","@manypkg/get-packages","@changesets/logger", +"@changesets/errors","@changesets/config","@changesets/write","@changesets/types","@changesets/read","@changesets/pre", +"@changesets/git","spawndamnit","term-size","bpmn","web-resource-inliner","prince","pdfjs-viewer-element", +"markdown-it-plantuml-ex","markdown-it-multimd-table","markdown-it-codetabs","bpmn-js","awilix","@iframe-resizer/parent", +"@iframe-resizer/child","@biz-dev-ops/web-components","@babel/helper-globals", +"babel-preset","@babel/plugin-transform-react-pure-annotations","@babel/plugin-transform-react-jsx-development", +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", +"@babel/plugin-transform-duplicate-named-capturing-groups-regex", +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", +"@babel/plugin-bugfix-safari-class-field-initializer-scope","@babel/plugin-bugfix-firefox-class-in-computed-class-key", +"@babel/plugin-transform-named-capturing-groups-regex","@babel/plugin-transform-explicit-resource-management", +"@babel/plugin-transform-unicode-property-regex","@babel/plugin-transform-block-scoped-functions", +"@babel/plugin-transform-shorthand-properties","@babel/plugin-transform-computed-properties", +"@babel/plugin-transform-unicode-sets-regex","@babel/plugin-transform-regexp-modifiers", +"@babel/plugin-transform-unicode-escapes","@babel/plugin-syntax-unicode-sets-regex", +"@babel/plugin-transform-reserved-words","@babel/plugin-transform-duplicate-keys", +"@babel/plugin-transform-unicode-regex","@babel/plugin-transform-typeof-symbol","@babel/plugin-transform-function-name", +"@babel/plugin-transform-sticky-regex","@babel/plugin-transform-object-super","@babel/plugin-transform-json-strings", +"@babel/plugin-transform-dotall-regex","@babel/plugin-transform-new-target","@babel/plugin-transform-literals", +"@babel/preset-modules","@babel/plugin-syntax-object-rest-spread","@babel/plugin-syntax-export-namespace-from", +"babel-plugin-polyfill-es-shims","array.prototype.concat","@nicolo-ribaudo/eslint-scope-5-internals", +"babel-plugin-source-map-support","@wry/trie","@wry/equality","@wry/caches","method-documentation","api-components", +"@api-components/api-server-selector","@anypoint-web-components/anypoint-input", +"@anypoint-web-components/anypoint-checkbox","@advanced-rest-client/arc-demo-helper","@api-components/http-method-label", +"@api-components/api-security-documentation","@api-components/api-responses-document", +"@api-components/api-parameters-document","@api-components/api-headers-document","@api-components/api-example-generator", +"@api-components/api-body-document","@api-components/api-annotation-document", +"@anypoint-web-components/anypoint-collapse","@advanced-rest-client/markdown-styles", +"@advanced-rest-client/http-code-snippets","@advanced-rest-client/clipboard-copy","css-tools","css-ast","css-parser", +"liquid","11ty","ssg", +"@11ty/eleventy-plugin-syntaxhighlight","@11ty/eleventy-plugin-webc","@11ty/eleventy-plugin-rss","@mdx-js/node-loader", +"@11ty/eleventy-img","jsx-async-runtime","@zachleat/noop","nano-staged","@11ty/eleventy-plugin-bundle", +"@11ty/eleventy-dev-server","@11ty/dependency-tree-esm","posthtml-match-helper","node-retrieve-globals", +"@11ty/dependency-tree","@11ty/recursive-copy","@11ty/eleventy-utils","@11ty/posthtml-urls","@11ty/lodash-custom", +"bcp-47-normalize","iso-639-1","liquidjs","moo","tc39","@babel/helper-check-duplicate-nodes","let","gensync", +"@types/fs-readdir-recursive","passwordless","authjs","@inline-svg-unique-id/react","react-native-safe-area-context", +"@ant-design/icons-react-native","react-native-gesture-handler","@react-navigation/native","react-native-reanimated", +"@react-navigation/stack","antd-mobile-demo-data","react-native-screens","react-native-mocker","ant-design-palettes", +"shell-utils","@bang88/react-native-ultimate-listview","react-native-modal-popover","@rc-component/mini-decimal", +"@floating-ui/react-native","react-native-codegen","normalize-css-color","lodash.assignwith","@types/dom-navigation", +"tooling","schematics","blueprints","react-components","ui toolkit","fusion design","fusion", +"babel-plugin-transform-react-es6-displayname","babel-plugin-transform-proto-to-assign", +"@types/postcss-custom-properties","babel-plugin-generator-prettier","@types/cypress-image-snapshot", +"@alifd/stylelint-config-next","stylelint-csstree-validator","node-sass-package-importer", +"@alifd/eslint-config-next","@alifd/babel-preset-next","@types/lodash.clonedeep","@alifd/adaptor-generate", +"cypress-image-snapshot","@alifd/sassdoc-parser","@alifd/adaptor-helper","@alifd/dts-generator","@alifd/api-extractor", +"@types/postcss-calc","@alifd/sass-tracker","@alifd/sass-mapper","@types/babel-core","@alifd/meet-react", +"@alifd/doc-parser","fast-sass-loader","@types/stylelint","react-cropper","@types/big.js","@types/jsonp","solarlunar", +"react-live","react-axe","html5shiv","@types/co","ts-mocha","shallow-element-equals","@alifd/validate","@alifd/overlay", +"@alifd/field","big.js","keywords","xbytes","tributejs","swiperjs","psql","pannellum","orms","jstz","flickity", +"encryptor","blurup","@antora/content-classifier","@react-native-vector-icons/common","@c15t/backend", +"@appium/base-driver","nolyfill","syncpack","stage-js","planck","@antora/redirect-producer", +"@openspacelabs/react-native-zoomable-view","@antora/navigation-builder","@antora/cli","@applitools/screenshoter", +"@applitools/eyes","md-to-pdf","@flmngr/flmngr-react","skia-canvas","@crxjs/vite-plugin","@edsdk/n1ed-react", +"canvaskit-wasm","@architect/asap","@intlayer/api", +"survey-core","otp-io","@tanstack/virtual-core","react-native-nitro-modules","react-camera-pro","lory.js", +"@walletconnect/heartbeat","@upstash/context7-mcp","@lobehub/chat","react-native-aes-crypto","rolldown-vite", +"react-native-lightbox","next-router-mock","@mastra/core","@graphiql/plugin-doc-explorer","@globalart/nestjs-swagger", +"@assistant-ui/react","input-otp","embla-carousel-react","country-codes-flags-phone-codes","@nuxt/ui", +"netlify-cms-backend-proxy","leaflet-gesture-handling","@pinia/testing","netlify-cms-backend-git-gateway", +"convex-helpers","@walletconnect/http-connection","unbundle","mercurius","emoji-js","teeny-tap", +"netlify-cms-backend-gitlab","@udecode/plate","@ckeditor/ckeditor5-real-time-collaboration","react-smooth", +"@ckeditor/ckeditor5-collaboration-core","sonner","careful-downloader","@modern-js/node-bundle-require","@types/xast", +"@casl/ability","body-scroll-lock-upgrade","@egjs/flicking","attw","@busy-hour/blaze-types","vendors", +"netlify-cms-backend-bitbucket","@scalar/nextjs-api-reference","@immobiliarelabs/backstage-plugin-gitlab-backend", +"@ionic/react-router","react-native-macos","@onesy/icons-material-rounded-react","@dataui/crud-typeorm", +"@amaui/icons-material-rounded-react","netlify-cms-backend-test","@expressots/adapter-express","@web/test-runner-mocha", +"tseslint","degit","cookiecutter","astrojs","arethetypeswrong","react-h5-audio-player","drag-drop", +"@dataui/crud","worktop","vue-perfect-scrollbar","vconsole","use-sidecar","use-callback-ref","typedoc-default-themes", +"tua-body-scroll-lock","text-hex","react-style-singleton","react-responsive-modal","react-native-youtube-iframe", +"react-native-svg-charts","react-native-progress","react-native-lightbox-v2","react-native-file-viewer", +"react-easy-router","react-device-detect","rdme","rc-hammerjs","parse-entities","mobile-detect", +"micromark-util-html-tag-name","micromark-extension-gfm-tagfilter","logging-helpers","jest-preset-angular","infima", +"inferno-hydrate","http-graceful-shutdown","eslint-rule-documentation","device-detector-js","decap-cms-backend-test", +"decap-cms-backend-proxy","decap-cms-backend-gitlab","decap-cms-backend-github","decap-cms-backend-git-gateway", +"decap-cms-backend-bitbucket","decap-cms-backend-azure","decap-cms-backend-aws-cognito-github-proxy","dashdash", +"css-mediaquery","condense-newlines","camelcase-css","broccoli-builder","angular-mocks","angular-messages", +"@wordpress/primitives","@walletconnect/socket-transport","@walletconnect/legacy-provider","@walletconnect/iso-crypto", +"@walletconnect/browser-utils","@uppy/companion","@svgr/hast-util-to-babel-ast","@strapi/strapi","@pothos/core", +"@netlify/framework-info","@nestjsx/crud-typeorm","@nestjsx/crud","@mui/base","@asyncapi/generator", +"react-responsive-select","@enact/sandstone","smartbanner.js","backendless", +"admin-lte","@skylernpm/reiciendis-non-corrupti","@skylernpm/hic-inventore-dolores", +"@npmtuanmap/velit-nobis-nostrum-nam","@ionic/angular","@bugsnag/react-native","rehype-mermaid","is-mobile", +"express-intlayer","allure-js-commons","@mantine/tiptap","@mantine/spotlight","@mantine/nprogress","@mantine/dropzone", +"@mantine/carousel","@ibyar/expressions","nextra","uploadcare-widget","tdesign-mobile-vue","riot","readme-md", +"react-swipeable-list","react-native-animatable","pwa-asset-generator","magnific-popup","gradient-string","fasteejs", +"eruda","cupertino-pane","aws-sdk-client-mock","@zibuthe7j11/deserunt-quasi-impedit", +"@teamteanpm2024/voluptatibus-reprehenderit-odit","@teamteanpm2024/odio-fugiat-in", +"@teamteanpm2024/expedita-labore-ipsum","@teamteanpm2024/beatae-aliquid-id","@teamteanpm2024/aut-voluptatum-vero", +"@teamteanpm2024/architecto-alias-quod","@teamteanpm2024/aperiam-fugit-error","@renyii/vue-renderless", +"@ptkhanh94npm/quis-saepe-velit","@ptkhanh94npm/iusto-libero-aperiam","@npmtea2024/quasi-nisi-doloremque-fugit", +"@jsonforms/examples","@jsonforms/angular","@ionic/cli","@envelop/core","@diahkomalasarinpm/praesentium-sint-dolorem", +"@diahkomalasarinpm/odio-facilis-beatae","@devtea2025/voluptatibus-vero-magni-rerum", +"@devtea2025/suscipit-assumenda-a-assumenda","@devtea2025/quisquam-quod-ab-aut", +"@devtea2025/doloremque-voluptas-facere-nemo","@devtea2025/blanditiis-numquam-expedita-neque","@capacitor/assets", +"@aneuhold/be-ts-lib","@adonisjs/core","typed-binary","native-run","madr","hot-shots","@jsonforms/vue-vanilla", +"@jsonforms/vanilla-renderers","@commercetools-frontend/mc-scripts","@augment-vir/common", +"teajusgula","@nx/storybook","@nx/eslint-plugin","zombie","zod-http-schemas","yoctocolors-cjs","yarnpkg","xstate", +"xmldom","x-ray","winston-daily-rotate-file","weinre","webworker-threads","webshot","web3-fruit","web3-exactly6", +"web3-eve-cli","web3-be","vue-property-decorator","vscode-textmate","vscode-nls-dev","vscode-debugprotocol","vorpal", +"vite-plugin-api-routes","virtual-dom","vant","valid-url","urijs","unique-random-array","ulid","uj-apidoc-core", +"typegoose","typegen","typedocs","typedoc-plugin-extras","typedoc-material-theme","twit","twemoji","tweetnacl", +"tsd-lite","ts-rule-engine","ts-patch-mongoose","ts-migrate-mongoose","ts-japi","ts-cache-mongoose","trumpet","trpc", +"train-stick-swept7","tracer","thunkify","test-snippets","test-cutting","terminal-menu","terminal-kit","tdlib-native", +"tarant-sync-router-express","tarant","swagger-inline","sw-precache-webpack-plugin","supertest-as-promised", +"stylelint-declaration-strict-value","style-dictionary","string-strip-html","streamii", +"strange-lady-riding9","straiforos-compodoc","storybook-django","sprintf","spectaql","slow-deps","skapi-js","sizeitup", +"sinopia","single-spa","simple-prompts-web3","simple-assi-animation","serverless-spy","serverless-finch","sequelize", +"seneca","semantic-ui-react","schema-markdown-doc","rxjs-compat","rsnext","rethinkdb","restler","rest-chronicle", +"requireindex","remark-mermaidjs","rehype-mdx-code-props","redux-saga","redux-actions","redocusaurus","recall-shut-say", +"readline-sync","reactify","react-svg","react-select","react-router-redux","react-onclickoutside", +"react-native-keychain","react-motion","react-modal","react-markdown","react-apollo","react-addons-shallow-compare", +"react-addons-css-transition-group","rcw-plugin","randomstring","queue-typed","pull-stream","promo-server", +"private-bower","prettierrc","postgrejs","postcss-unique-selectors","postcss-svgo","postcss-reduce-initial", +"postcss-ordered-values","postcss-normalize-whitespace","postcss-normalize-url","postcss-normalize-unicode", +"postcss-normalize-string","postcss-normalize-positions","postcss-normalize-charset","postcss-minify-selectors", +"postcss-minify-params","postcss-minify-gradients", +"postcss-minify-font-values","postcss-merge-rules","postcss-merge-longhand","postcss-discard-overridden", +"postcss-discard-empty","postcss-discard-duplicates","postcss-cssnext","postcss-convert-values","postcss-colormin", +"poe-api-manager","pnpx","pnp-webpack-plugin","pkginfo","pi-gpio","pdfjs","paypal-server-api","passport-oauth", +"passport-local","passport-facebook","parallelshell","para-cli","paintor","pageres","p23","ovsx","openweather", +"openapi2html","openapi-client-axios","onoff","nwsapi","npm-windows-upgrade","npm-to-yarn","normalize-url","nodewebkit", +"nodegit","node-xlsx","node-windows","node-red","node-powertools","node-oauth2-server","node-geocoder","node-gcm", +"node-dev","node-containerpattern","nise","ng-zorro-antd","ng-mocks","newrelic","nest-commander","near-social-bridge", +"nconf","nativefier","native-keymap","nano-css","n","muuri","monitor-dashboard","mongo-express","monads-io", +"monaco-yaml","moleculer","mkcert","mirror-jet-printed-supper","min-heap-typed", +"mental-oxygen-dozen","memwatch","mdxts","md5-file","mathjs","marky-markdown","markdown-pdf","mapboxgl-legend", +"mantine-contextmenu","main-bower-files","madwizard","lwip","lucide","lodash.set","lodash.pick","lodash.omit", +"lodash.isobject","lodash.isfunction","lodash.isempty","lodash.get","lodash.foreach","lite-server","linkifyjs", +"libphonenumber-js","left-pad","leaflet","lazy.js","kue","koa-router","koa-mount","koa-logger","koa-bodyparser", +"koa-body","knox","jwt-simple","jstates","jspm","jsdom-no-contextify","jsarch","jquery-ui","jodit-react", +"jest-html-reporters","jest-environment-jsdom-fourteen","jarallax","irc","inversify","intl-tel-input","instagram-node", +"inquirer-autocomplete-prompt","innosetup-compiler","iniparser","impress","i18next-gridly-backend","htmlnano", +"html-to-image","html-pdf","how-to-npm","homebridge","hiredis","hexlet-pairs","heroicons","gulp.spritesmith", +"gulp-webpack","gulp-useref", +"gulp-uncss","gulp-template","gulp-svgstore","gulp-svgmin","gulp-svg-sprite","gulp-strip-debug","gulp-sftp", +"gulp-ruby-sass","gulp-rev-replace","gulp-remote-src","gulp-react","gulp-prompt","gulp-preprocess","gulp-nodemon", +"gulp-ng-annotate","gulp-minify-html","gulp-livereload","gulp-jade","gulp-install","gulp-inline-css","gulp-include", +"gulp-image-resize","gulp-ignore","gulp-iconfont","gulp-html-replace","gulp-handlebars","gulp-gzip","gulp-ftp", +"gulp-flatmap","gulp-file-include","gulp-csslint","gulp-csscomb","gulp-copy","gulp-conflict","gulp-compass", +"gulp-coffee","gulp-cached","gulp-cache","gulp-bower","gulp-bom","gulp-azure-storage","gulp-awspublish", +"gulp-atom-electron","gulp-angular-templatecache","grunt-spritesmith","grunt-contrib-sass","grunt-contrib-imagemin", +"grunt-contrib-htmlmin","grunt-contrib-compass","grunt-angular-templates","grpc","graphql-tools","govuk-frontend", +"google-spreadsheet","github-buttons","geolib","gensequence","generator-nitro","generator-gulp-angular", +"generator-angular","gc-signals","futen","fs-promise","fork-ts-checker-webpack-plugin-alt", +"flightplan","flatpickr","flatpak-bundler","firebase-tools","firebase-admin","file-saver","femo","fe-pilot","fast-plist", +"fast-csv","express-zod-api","express-validator","express-typed-rpc","express-tools","express-jwt","express-handlebars", +"express-generator","express-autodoc","express-adexe","ethereumjs-tx","enumtype","ent","emailjs","email-templates", +"element-ui","electron-rebuilder","electron-prebuilt","electron-builder","dw-neit-antd","dumi-cm","draft-js", +"doxdox-parser-dox","download-git-repo","dom-to-image-more","docusaurus-lunr-search","docsify-tabs","docschema","docpad", +"docgen","doc-detective","dnode","dnd-multi-backend","dmd-grunt-jsdoc2md","discord-backend-manager", +"directed-graph-typed","deep-consist-ability3","deep-assign","datafire","dable-effect","cuid","css-declaration-sorter", +"cson-parser","cropperjs","corcojs-qrcode-logo","contenthook","connect-mongo","connect-flash","co-prompt","clipanion", +"choerodon-ui","chart.js","casperjs","bump-cli","brain", +"bookshelf","blocked","blessed-contrib","beyond","beefy","beauty-foot-compass5","bearcat","bcrypt-nodejs","batuta", +"base-64","azure-storage","auto-install","appsync-client-node","applicationinsights","appium-android-driver", +"apidoc-markdown","antfu","ant-design-vue","angular-animate","agenda","@zkportal/aleo-oracle-sdk", +"@zitterorg/upgraded-fishstick","@zitterorg/probable-octo","@zitterorg/itaque-nisi-veritatis", +"@zitterorg/illum-perferendis-consectetur","@zitterorg/glowing-barnacle","@zitterorg/fluffy-waddle", +"@zitterorg/eum-veritatis-placeat","@zitterorg/est-sunt-quos","@zitterorg/doloremque-ut-omnis", +"@zitterorg/cum-ipsum-beatae","@zitterorg/at-esse-odit","@zitterorg/aspernatur-pariatur-occaecati", +"@zitterorg/adipisci-quae-eius","@wuxh/dumi","@uploadcare/file-uploader","@unleash/proxy","@ucloud-fe/react-components", +"@twurple/ebs-helper","@teamhanko/hanko-frontend-sdk","@tanstack/svelte-query","@taktikorg/voluptatem-pariatur-tenetur", +"@taktikorg/velit-nobis-blanditiis","@taktikorg/unde-animi-omnis","@taktikorg/tempore-veniam-in", +"@taktikorg/suscipit-modi-ratione","@taktikorg/similique-natus-officia","@taktikorg/recusandae-ratione-veniam", +"@taktikorg/quo-reiciendis-quibusdam","@taktikorg/praesentium-neque-ipsam","@taktikorg/praesentium-dolorum-quis", +"@taktikorg/placeat-voluptates-dolorum","@taktikorg/nisi-reprehenderit-amet", +"@taktikorg/necessitatibus-repudiandae-officia","@taktikorg/nam-esse-animi","@taktikorg/molestias-fuga-possimus", +"@taktikorg/maiores-dolores-aut","@taktikorg/itaque-tempore-exercitationem","@taktikorg/itaque-nam-eos", +"@taktikorg/iste-ex-tempore","@taktikorg/ipsa-totam-aperiam","@taktikorg/illum-accusamus-possimus", +"@taktikorg/harum-reprehenderit-perferendis","@taktikorg/dolor-ratione-quibusdam", +"@taktikorg/deleniti-qui-dolorem","@taktikorg/corporis-nihil-odit","@taktikorg/consectetur-quo-quos", +"@taktikorg/aut-distinctio-repellat","@synion/md-docs","@symbiotejs/symbiote","@swisspost/design-system-styles", +"@swenkerorg/nulla-voluptates-voluptates","@swenkerorg/modi-dolorum-provident","@swenkerorg/maiores-voluptatibus-nemo", +"@sveltejs/eslint-config","@supernovaio/supernova-sdk","@supernovaio/sdk-exporters","@supernovaio/sdk", +"@subwallet/react-ui","@serenity-js/webdriverio","@serenity-js/protractor","@scalar/fastify-api-reference", +"@sanity/tsdoc","@readyplayerme/visage","@quasar/extras","@qooxdoo/framework","@polymer/polymer","@phun-ky/speccer", +"@phosphor/widgets","@perseid/store","@patrtorg/tenetur-animi-reprehenderit","@patrtorg/sapiente-exercitationem-sit", +"@patrtorg/sapiente-eos-magnam","@patrtorg/quos-quasi-ipsa","@patrtorg/quae-earum-eius","@patrtorg/porro-labore-eos", +"@patrtorg/pariatur-deleniti-quaerat","@patrtorg/nam-eius-unde","@patrtorg/molestias-molestias-ut", +"@patrtorg/maiores-quidem-quo","@patrtorg/magnam-aut-adipisci","@patrtorg/libero-voluptas-sequi", +"@patrtorg/libero-doloribus-omnis","@patrtorg/laborum-doloribus-voluptate","@patrtorg/illum-sapiente-quos", +"@patrtorg/eveniet-tempore-maiores","@patrtorg/est-corrupti-deleniti","@patrtorg/enim-magni-hic", +"@patrtorg/ducimus-magni-quibusdam","@patrtorg/consequatur-voluptatum-officiis", +"@patrtorg/consectetur-repudiandae-consequuntur","@patrtorg/consectetur-culpa-non","@patrtorg/autem-et-hic", +"@patrtorg/aspernatur-dolorum-ducimus","@patrtorg/asperiores-vel-accusantium","@patrtorg/a-ut-amet", +"@patrtorg/a-ad-expedita","@pact-foundation/pact","@otterhttp/response","@opentiny/vue-theme-mobile", +"@opentiny/vue-theme","@opentiny/vue-renderless","@opentiny/vue","@oclif/command","@nx/nest","@nx/express","@nx/esbuild", +"@nrwl/workspace", +"@nrwl/tao","@nrwl/devkit","@npmtuanmap/velit-esse-velit-magnam","@npmtuanmap/sed-quo-nemo-rerum", +"@npmtuanmap/recusandae-recusandae-nam-et","@npmtuanmap/psychic-guide","@npmtuanmap/ex-vel-expedita-impedit", +"@npmcorp/marky-markdown","@ng-doc/utils","@ng-doc/ui-kit","@neato/guider","@mui/lab","@ministryofjustice/frontend", +"@middy/http-json-body-parser","@mathematikoi/jsonapi","@material-ui/icons","@material-ui/core","@mantine/styles", +"@mantine/prism","@mantine/modals","@mantine/dates","@listr2/prompt-adapter-inquirer","@libphamton/fb-group", +"@libphamton/chatfanpage","@kollorg/nihil-veniam-deserunt","@kollorg/dicta-itaque-nemo","@kobedevi/sassdoc", +"@jupyterlab/application","@juigorg/sit-nam-neque","@juigorg/nisi-molestiae-ut","@jsonforms/material-renderers", +"@itwin/itwinui-react","@idux/components","@iamtraction/google-translate","@hookform/resolvers", +"@homer0/prettier-plugin-jsdoc","@hishprorg/wafflejs","@hishprorg/unde-vitae-reprehenderit", +"@hishprorg/sunt-voluptatem-nobis","@hishprorg/sunt-officia-eligendi","@hishprorg/sint-nam-consequuntur", +"@hishprorg/reprehenderit-excepturi-sed","@hishprorg/quis-perferendis-culpa","@hishprorg/perspiciatis-ratione-unde", +"@hishprorg/nihil-ad-ratione","@hishprorg/maxime-voluptates-enim","@hishprorg/magni-nisi-aperiam", +"@hishprorg/magni-amet-id","@hishprorg/iure-optio-nihil","@hishprorg/itaque-esse-accusamus", +"@hishprorg/incidunt-quibusdam-tempore","@hishprorg/est-dicta-quis","@hishprorg/eius-vero-dicta", +"@hishprorg/earum-sint-veritatis","@hishprorg/cum-rem-consequuntur","@hishprorg/autem-sint-quas", +"@hishprorg/aliquid-ad-vero","@hajtech/webpack-config","@graphql-markdown/docusaurus","@graphql-markdown/core", +"@grandlinex/kernel","@grandlinex/e-kernel","@fontsource/roboto","@fontsource/inter", +"@fakeyanss/redoc","@erboladaiorg/velit-fugit-harum","@erboladaiorg/ut-dignissimos-laborum", +"@erboladaiorg/tenetur-architecto-dolore","@erboladaiorg/sit-nesciunt-amet","@erboladaiorg/sint-deleniti-dolorem", +"@erboladaiorg/quibusdam-itaque-tempora","@erboladaiorg/quaerat-mollitia-adipisci","@erboladaiorg/quae-in-veniam", +"@erboladaiorg/perspiciatis-magni-ut","@erboladaiorg/officia-illum-aperiam","@erboladaiorg/nisi-culpa-cum", +"@erboladaiorg/molestias-nulla-dolor","@erboladaiorg/molestiae-voluptatibus-perferendis", +"@erboladaiorg/explicabo-eius-adipisci","@erboladaiorg/ex-hic-molestias","@erboladaiorg/esse-ipsa-numquam", +"@erboladaiorg/error-atque-ea","@erboladaiorg/distinctio-tempora-quis","@erboladaiorg/cupiditate-pariatur-optio", +"@erboladaiorg/cupiditate-consectetur-porro","@erboladaiorg/autem-dolores-ipsam","@erboladaiorg/asperiores-nam-adipisci", +"@erboladaiorg/asperiores-fuga-sint","@erboladaiorg/asperiores-earum-quaerat","@erboladaiorg/ad-exercitationem-ducimus", +"@electron/docs-parser","@eightshift/frontend-libs","@eas-framework/server","@dramaorg/quae-dolore-nostrum", +"@dramaorg/esse-praesentium-eligendi","@doc-tools/docs","@disqada/workspace","@diplodoc/transform", +"@diotoborg/verbose-robot","@diotoborg/velit-reiciendis-velit","@diotoborg/ullam-dignissimos-repudiandae", +"@diotoborg/tempora-voluptas-distinctio","@diotoborg/repellat-blanditiis-quis","@diotoborg/ratione-error-odio", +"@diotoborg/quo-dolorem-ducimus","@diotoborg/qui-ullam-ipsum","@diotoborg/quasi-repellat-odit", +"@diotoborg/psychic-bassoon","@diotoborg/porro-modi-accusamus","@diotoborg/odio-dolores-officia", +"@diotoborg/nostrum-eveniet-officiis","@diotoborg/neque-inventore-corporis","@diotoborg/libero-asperiores-at", +"@diotoborg/laudantium-itaque-esse","@diotoborg/illo-amet-architecto","@diotoborg/esse-accusantium-ratione", +"@diotoborg/eligendi-est-unde","@diotoborg/dolores-praesentium-assumenda","@diotoborg/dolor-tempora-fuga", +"@diotoborg/dolor-earum-quia","@diotoborg/dicta-recusandae-veniam","@diotoborg/deserunt-illo-tempora", +"@diotoborg/delectus-necessitatibus-voluptatum","@diotoborg/commodi-voluptatum-libero", +"@diotoborg/at-totam-perspiciatis","@diotoborg/amet-architecto-est","@diotoborg/adipisci-placeat-iure", +"@devtea2026/ubiquitous-octo-memory", +"@devtea2026/rerum-quaerat-porro-animi","@devtea2026/quidem-voluptate-repudiandae-necessitatibus", +"@devtea2026/quia-ducimus-placeat-minima","@devtea2026/qui-quos-laborum-amet", +"@devtea2026/possimus-ipsa-sint-consequuntur","@devtea2026/odit-maxime-porro-asperiores", +"@devtea2026/odit-enim-reiciendis-pariatur","@devtea2026/necessitatibus-dolorem-esse-atque", +"@devtea2026/maxime-sequi-est-rem","@devtea2026/literate-computing-machine","@devtea2026/ipsa-omnis-in-molestiae", +"@devtea2026/inventore-facilis-corporis-cum","@devtea2026/improved-journey","@devtea2026/explicabo-alias-architecto-sed", +"@devtea2026/eum-ullam-est-distinctio","@devtea2026/distinctio-soluta-illo-eaque", +"@devtea2026/cupiditate-dolorem-excepturi-impedit","@devtea2026/consectetur-ab-unde-quisquam", +"@devtea2026/aspernatur-ea-non-porro","@deven-org/documentation-skeleton","@coreui/coreui","@contenthook/node", +"@contenthook/cli","@contenthook/browser","@comunica/core","@compodoc/compodoc","@ckeditor/ckeditor5-vue", +"@ckeditor/ckeditor5-react","@ckeditor/ckeditor5-build-inline","@ckeditor/ckeditor5-build-decoupled-document", +"@ckeditor/ckeditor5-build-classic","@ckeditor/ckeditor5-build-balloon-block","@ckeditor/ckeditor5-build-balloon", +"@ckeditor/ckeditor5-angular","@chatscope/chat-ui-kit-react","@bwcr_/winston-loki","@biz-dev-ops/md-docs", +"@babel/runtime-corejs2","@apollo/client","@api-components/api-method-documentation","@auth/sveltekit", +"@ant-design/react-native","@angular/router","@angular/platform-server","@angular/http","@alifd/next"], +[5,293,294], +[0,-685,-2747,-15519,-436], +1771718400000, +1771113600000, +1770508800000, +[0], +1772323200000, +1772409600000, +1772064000000, +1771804800000, +[1,24,619], +[1,3,621], +[0,-51,-81,-34], +[0,-47,-87,-822,-6,-35,-2], +[0,-129,-127,-435,-52,-53,-6,-108,-102,-1284], +[1,3,440], +[1,3,1832], +[0,-967,-290,-876,-15322,-15321,-3795], +[1,3,1826], +[0,-1276], +[0,-38], +[0,-2269], +[0,-15306,-436], +true, +[1,3,622], +[0,-3], +[0,-6,-35], +[0,-731,-730,-85], +[1,3,1783], +[0,-39], +[1,24,585], +[0,-44], +[0,-23], +[0,-2262], +[0,-68], +[0,-2], +[0,-1], +[0,-90], +[0,-1313], +[0,-6], +[0,-42,-114,-74,-1770], +[1,3,674], +[0,-2280,-2279,-2933,-4032,-2930,-2929,-2923,-2921,-2920,-2919,-2918,-2916,-2915,-2914,-5718,-2913,-2912,-2911,-2910, +-4023,-5717,-4022,-4021,-4020,-3608,-2908,-2906,-4018,-2904,-2903,-5716,-2902,-2249,-5715,-3607,-5714,-5713,-3606,-2893, +-2891,-2890,-2889,-2885,-5712,-3605,-3993,-3992,-2883,-2882,-3604,-2877,-2876,-3965,-2874,-3603,-3954,-2857,-2856,-2855, +-5711,-2854,-2851,-2849, +-5710,-2847,-5709,-2843,-2842,-2840,-2839,-2837,-2831,-3602,-2830,-2829,-2826,-2825,-3601,-1804,-3905,-5708,-3901,-2805, +-5707,-3600,-3900,-2802,-2801,-2800,-2799,-2796,-3599,-2795,-2792,-5706,-2791,-2789,-3598,-2787,-2786,-2782,-2779,-2777, +-2776,-3597,-3596,-3595,-284,-3594,-3593,-3872], +[0,-2280,-2279,-2249,-1804,-284], +[1,3,1519], +[1,3,2972], +[0,-17], +[0,-253], +[0,-24,-38,-218], +[0,-11,-2148], +[1,3,1044], +[1,3,1396], +[1,3,1875], +[0,-51,-34], +[0,-3,-2822], +[0,-1721,-46,-53,-2477], +[0,-7529,-7528,-2663,-7527,-95,-1651,-1284,-659,-7526,-7525], +[0,-967,-290,-876,-6062,-3795], +[0,-465], +[1,3,623], +[1,24,645], +[0,-2123,-2679,-1737,-1736,-37,-308,-294,-1735,-573,-547,-114,-3745,-336,-2678,-200,-1447,-2122,-45,-1263,-141,-335,-490, +-2121,-397,-2120,-1301,-959,-3744,-1466,-1446,-1262,-174,-431,-102,-958,-1776,-2119], +[0,-1083,-1727,-1726,-1252,-1251,-2100,-1725,-1724,-784], +[0,-74,-873,-53,-14817,-127,-5867,-14816,-14815,-14814], +[1,3,1380], +[0,-2280,-2279,-2933,-2930,-2929,-2923,-2921,-2920,-2919,-2918,-2916,-2915,-2914,-2913,-2912,-2911,-2910,-3608,-2908, +-2906,-2904,-2903,-2902,-2249,-3607,-3606,-2893,-2891,-2890,-2889,-2885,-3605,-2883,-2882,-3604,-2877,-2876,-2874,-3603, +-2857,-2856,-2855,-2854,-2851,-2849,-2847,-2843,-2842,-2840,-2839,-2837,-2831,-3602,-2830,-2829,-2826,-2825,-3601,-1804, +-2805,-3600,-2802,-2801, +-2800,-2799,-2796,-3599,-2795,-2792,-2791,-2789,-3598,-2787,-2786,-2782,-2779,-2777,-2776,-3597,-3596,-3595,-284,-3594, +-3593], +[0,-2280,-2279,-6530,-2933,-4032,-2930,-2929,-14116,-6522,-2923,-2921,-2920,-2919,-2918,-14115,-2916,-2915,-2914,-5718, +-2913,-2912,-2911,-2910,-4023,-5717,-4022,-4021,-4020,-14114,-3608,-6517,-2908,-14113,-2906,-14112,-4018,-2904,-2903, +-5716,-2902,-6512,-2249,-5715,-3607,-14111,-14110,-5714,-5713,-3606,-2893,-2891,-2890,-14109,-2889,-6490,-6483,-2885, +-5712,-14108,-3605,-3993,-3992,-6469, +-6465,-6463,-14107,-2883,-6458,-6457,-2882,-3604,-6432,-2877,-2876,-6429,-3965,-2874,-6426,-14106,-3603,-3954,-14105, +-14104,-2857,-2856,-2855,-5711,-2854,-14103,-2851,-14102,-2849,-5710,-2847,-5709,-2843,-6389,-14101,-14100,-6388,-2842, +-2840,-2839,-14099,-2837,-2831,-3602,-2830,-2829,-14098,-6361,-2826,-2825,-3601,-1804,-3905,-5708,-14097,-3901,-6324, +-6323,-2805,-5707,-14096,-3600,-14095,-3900, +-2802,-2801,-6318,-2800,-2799,-6317,-6316,-6315,-2796,-3599,-14094,-2795,-6313,-2792,-5706,-2791,-14093,-6308,-2789, +-3598,-2787,-2786,-2782,-6302,-2779,-14092,-14091,-2777,-2776,-3597,-3596,-3595,-284,-6294,-6292,-3594,-14090,-14089, +-6287,-6286,-3593,-14088,-3872], +[1,3,2681], +[0,-3,-82], +[0,-85], +[0,-70], +[0,-544,-45,-933,-840,-282,-333,-7249,-61], +[1,3,308], +[0,-58], +[0,-1723], +[0,-184,-53,-1470,-1701,-2077,-1700,-1431,-327,-1699,-1698,-1697,-2076,-2075,-1696,-1695,-2074,-2073,-2072,-6,-516,-2071, +-2070,-2069,-2068,-74,-1238,-491,-2067,-249,-1237,-192,-2,-45,-485,-111,-585,-1694,-1693,-24,-31,-1236,-1692,-1235,-2066, +-327,-2065,-2064,-2063,-2062,-2061,-2060], +[1,3,1342], +[1,3,1453], +[1,3,1877], +[0,-1,-84,-10,-214,-76,-67,-131,-3,-15,-125], +[1,3,2054], +[0,-699], +[0,-1481], +[0,-45,-13039,-13038,-75,-516,-6,-1329,-61,-13037,-13036,-543,-3], +[0,-97], +[0,-246], +[0,-707,-3], +[0,-1834], +[0,-560], +[0,-5], +[0,-5,-43,-4,-147,-260,-233,-2,-34], +[0,-52,-1094,-127,-95,-7961], +[0,-121], +[0,-2,-2179,-4621,-1684,-410,-1074,-99,-4713,-7607,-46,-7606], +[1,3,10143], +[0,-184,-53,-1470,-1701,-2077,-1700,-1431,-327,-1699,-1698,-1697,-2076,-2075,-1696,-1695,-2074,-2073,-2072,-6,-516,-2071, +-2070,-2069,-2068,-74,-1238,-491,-2067,-249,-1237,-192,-2,-45,-485,-111,-585,-1694,-1693,-24,-31,-1236,-1692,-1235,-2066, +-327,-2065,-2064,-2063,-2062,-2061,-2060,-2288,-7554], +[0,-184,-53,-1470,-1700,-1431,-327,-1699,-1698,-1697,-1701,-1696,-1695,-2,-45,-485,-111,-585,-1694,-1693,-24,-31,-1236, +-1692,-1235,-7552], +[0,-184,-53,-1470,-1701,-2077,-1700,-1431,-327,-1699,-1698,-1697,-2076,-2075,-1696,-1695,-2074,-2073,-2072,-6,-516,-2071, +-2070,-2069,-2068,-74,-1238,-491,-2067,-249,-1237,-192,-2,-45,-485,-111,-585,-1694,-1693,-24,-31,-1236,-1692,-1235,-2066, +-327,-2065,-2064,-2063,-2062,-2061,-2060,-2288,-7551], +[1,3,10608], +[0,-11], +[0,-6067,-967,-290,-876,-789,-875,-412,-31,-1272,-966,-1461,-1460,-1748,-1747,-1459,-52], +[1,24,583], +[0,-100,-15273,-390,-6027,-42,-589,-1269,-114], +[0,-548,-1865,-6,-24,-1265], +[0,-602], +[0,-51,-292,-787,-5944,-350,-2114,-5943,-15151,-199,-8,-79,-3,-2673,-15150,-375,-456,-15149,-2113,-85,-39,-75,-61,-2,-594], +[0,-304], +[0,-192,-42,-114,-862,-15059,-99,-15058,-15057], +[0,-1759,-129,-127,-435,-52,-53,-6,-108,-102], +[0,-14611,-14610,-14609,-14608,-14607,-14606,-14605,-14604,-14603,-14602,-14601], +[0,-30,-103], +[0,-114,-2598,-17,-6,-3619,-2049,-100,-127,-42], +[0,-3,-13], +[0,-5,-51,-81,-34], +[0,-291], +[0,-394], +[0,-34], +[0,-13384], +[0,-29,-5,-22,-19,-1,-12,-5323,-251,-10,-8,-4,-57,-171,-124,-2], +[0,-8,-1,-7,-57,-48,-2,-29,-5,-1978,-83,-19,-22], +[0,-556,-39], +[0,-1,-3], +[0,-93], +[0,-1,-828,-350,-3,-15], +[0,-54,-243,-177,-917,-365], +[0,-54,-243,-917,-177,-365], +[0,-13,-3], +[0,-1,-84,-10,-214,-76,-67,-131,-3,-15], +[0,-56,-1,-12,-9,-8,-18,-38,-4], +[0,-5,-2], +[0,-13,-3,-33,-17,-50,-11,-781,-109,-29,-5,-65,-92,-69,-480,-178,-21,-4122,-140], +[0,-664,-2982,-43,-315,-4,-147,-260,-7,-39,-233,-2,-34], +[0,-1198,-1366,-2294,-1365,-2419,-414,-45,-2,-6,-74,-220,-2381], +[0,-5958,-2], +[1,3,313], +[0,-6126,-292,-339,-2150,-1277,-182,-593], +[0,-6126,-292,-2149,-6123,-339,-1756,-15448,-370,-2150,-1277,-6122,-169,-593], +[0,-770], +[0,-159,-342], +[0,-3800,-15358,-6079,-15357,-15356,-15355,-15354,-135,-1857,-1855,-28,-101,-79,-6078,-221,-2733,-998,-1463,-15353,-1318, +-6077,-15352,-15351,-3799,-1135,-524,-15350,-15349,-440,-643,-157,-6076,-3798,-123,-15348,-96], +[0,-179,-2722,-1489], +[0,-37,-100,-969,-681,-2730,-15347,-591,-6075,-42,-114], +[0,-789,-875,-412,-31,-1272,-966,-1461,-1460,-1748,-1747,-1459,-52,-6067,-967,-290,-876], +[0,-789,-875,-412,-31,-1272,-966,-1461,-1460,-1748,-1747,-1459,-52,-967,-290,-876,-6062,-3795], +[0,-575,-1179,-37], +[0,-6069,-192,-42,-127,-358,-3789,-685,-100], +[0,-24,-77,-6046,-636,-184,-52,-111], +[0,-61,-591,-1874,-6036,-1090], +[0,-3761,-5992,-5991,-2685,-1087,-1740,-42,-15232], +[0,-2130,-2683,-2129,-1263,-2128,-15231,-6,-35], +[0,-15227], +[0,-1086,-5986,-3759,-741,-256,-476], +[0,-29,-5,-22,-19,-1,-266,-1020,-12,-10,-145,-148,-25,-8,-1150,-4,-57,-211,-33,-124,-2], +[0,-52,-105,-99,-111], +[0,-5,-89,-4,-85,-555,-124], +[0,-37,-294,-679,-435,-194,-1734,-734], +[0,-2211,-1829,-37,-786,-1256,-3737,-174,-869,-194,-868,-455,-2110,-2672,-361,-2109,-785,-2108], +[1,3,825], +[0,-6,-108,-973,-1136], +[0,-106,-99,-5931,-15109,-2670,-15108,-1254,-2,-436,-46,-184], +[0,-733,-42,-678,-968,-3732,-73,-97], +[0,-1728,-2101,-571,-15040,-100,-969,-42,-15039,-31,-158], +[0,-1083,-1252,-15037,-5876,-784,-2098], +[0,-1083,-1251,-2100,-1725,-1724,-784,-1441], +[0,-1357,-142,-2628,-680,-215,-381,-65,-15,-5781,-211,-3660,-153,-30,-92,-1780], +[0,-14576], +[0,-675,-453,-512,-111,-46], +[0,-3644], +[0,-1272,-412,-52,-31,-14521,-107,-875,-14520,-789], +[0,-4036,-4035], +[0,-15,-3,-1,-830,-76,-10,-67,-84,-214,-131], +[0,-192,-52,-91,-1682], +[0,-99,-1579,-678,-42,-410,-1074], +[0,-349], +[1,3,1788], +[0,-488], +[0,-1573,-1702,-778,-683,-2029,-2028,-659], +[1,3,1820], +[1,3,1876], +[1,3,1878], +[0,-1841], +[0,-2206,-3,-13], +[0,-2526,-13819,-857,-75,-668], +[0,-130], +[0,-5480,-641], +[0,-135], +[0,-141,-308,-1063,-37,-734,-13783,-3460,-455,-135,-1718], +[0,-45,-1657,-316,-593], +[0,-1488], +[0,-838,-1,-84,-10,-214,-76,-67,-131,-3,-15,-125], +[0,-316], +[0,-42,-100], +[0,-215], +[0,-471], +[0,-782,-1454,-59,-2550,-507,-2508,-1085], +[0,-1,-1391,-353,-3316,-45,-2091,-430,-1972,-1415,-3315], +[0,-1,-334,-368], +[0,-839], +[0,-1,-334,-368,-141,-335,-338,-5399,-126,-248,-628,-407], +[0,-1,-368,-334,-6], +[0,-329], +[0,-41,-52,-3520,-111,-105,-410,-1074,-434,-300,-99], +[0,-28,-2081,-508,-12785], +[0,-754,-639], +[0,-3,-7,-97], +[0,-54,-177], +[0,-60,-7], +[0,-253,-3,-75], +[0,-54,-167,-34], +[0,-51,-32,-904,-70,-34], +[0,-71], +[0,-313,-3,-82,-70], +[0,-71,-143], +[0,-143,-71], +[0,-51,-904,-70,-34], +[0,-5,-43,-1159,-4,-147,-260,-233,-2,-34], +[0,-809,-711], +[0,-354,-1144], +[0,-1521], +[0,-1529,-11896,-11895,-95,-300,-2365,-1026,-484,-2827], +[0,-51,-3150,-81,-34], +[0,-75,-61,-199,-543,-591], +[0,-2115], +[0,-255,-31,-1077,-632], +[0,-117], +[0,-219], +[0,-88], +[0,-2853,-4757,-245,-386,-718,-952,-1069,-106], +[0,-203,-63,-204,-43,-1,-84,-221,-2703,-3,-14], +[0,-407,-2027,-2026,-1672,-3216,-11039,-75,-307,-1384], +[0,-54], +[0,-37,-308,-10560,-589,-158,-10559,-2323,-5061,-2359,-852,-786], +[0,-300,-149,-608,-4553,-3064,-3063,-4552,-3062,-3061,-1214,-91,-412,-1995,-1975,-195,-3060,-1644,-587,-1649,-1045,-1221, +-287,-878,-126], +[0,-1062,-587,-854,-73,-723,-37,-308], +[0,-3,-13,-2251], +[0,-1809,-778,-1968,-683,-5123,-2559,-905,-2328], +[0,-34,-51,-81], +[0,-903,-1199,-4595], +[1,3,6920], +[0,-201], +[0,-305,-465], +[1,3,7131], +[1,3,7300], +[0,-6,-10011], +[0,-6,-234,-333,-282,-95,-1215,-9935,-9934], +[1,3,7605], +[0,-6,-434,-3120,-1937,-1533,-1371], +[1,3,7706], +[1,3,7712], +[0,-81,-34], +[0,-716], +[0,-14,-716,-430,-158,-370], +[0,-6,-52,-399,-111,-209,-141,-184,-46,-37,-2175], +[1,3,8114], +[1,3,8321], +[1,3,8373], +[0,-3236,-156,-597,-4246,-2003,-3059,-4245], +[0,-2,-42,-114], +[0,-132], +[0,-53,-52,-1670,-8472,-8471,-104], +[0,-2291], +[0,-684,-1398,-666,-589,-37,-959,-1466,-547,-114,-958,-300], +[0,-45,-53,-6,-1094], +[1,24,9789], +[0,-3865], +[1,24,10023], +[0,-1529,-52,-6,-95,-300,-2365,-2116,-1026,-3742,-2676], +[0,-7605], +[1,3,10151], +[0,-42,-114,-74], +[0,-4117,-4116,-4115,-4114,-1369,-3108,-4113,-2524,-4112,-4111,-1444,-1901,-6,-4110,-192,-74,-282,-95,-1200,-1899,-4109], +[0,-862,-666,-53,-91,-1667,-3228], +[0,-1361,-46], +[0,-5,-43,-4,-147,-260,-81,-233,-2,-34], +[0,-2218], +[0,-292,-6,-2218,-52,-2646,-3159,-1940], +[0,-2953,-4199,-7330,-2952,-2951,-544,-61,-1090], +[1,3,10609], +[0,-4096,-335,-2024,-2,-4095,-4094,-52,-3055], +[1,3,10660], +[1,3,10677], +[1,3,10691], +[1,3,10722], +[0,-915,-46,-7224,-7223,-52,-2369], +[0,-6,-52,-7171,-7170], +[0,-8,-1,-14,-57,-4,-2,-29,-12,-25,-176,-19,-22], +[0,-2123,-2679,-1737,-1736,-37,-308,-294,-1735,-573,-547,-114,-3745,-336,-2678,-200,-1447,-2122,-45,-1263,-141,-335,-490, +-2121,-397,-2120,-1301,-959,-3744,-1466,-1446,-1262,-174,-431,-635,-2,-102,-958,-1776,-2119], +[0,-184,-53,-1470,-1701,-2077,-1700,-1431,-327,-1699,-1698,-1697,-2076,-2075,-1696,-1695,-2074,-2073,-2072,-6,-516,-2071, +-2070,-2069,-2068,-74,-1238,-491,-2067,-249,-1237,-192,-2,-45,-485,-111,-585,-1694,-1693,-24,-31,-1236,-1692,-1235,-2066, +-327,-2065,-2064,-2063,-2062,-2061,-2060,-2288], +[1,3,10858], +[0,-2277,-1767], +[1,24,11236], +[0,-16429,-6576,-2943,-6575,-4059,-6574,-2283,-2282,-2281,-2942,-16428,-6573,-4058,-6572,-16427,-16426,-16425,-2280,-2279, +-16424,-50,-538,-11,-770,-427,-216,-6571,-2941,-16423,-16422,-6570,-161,-622,-1196,-1038,-306,-1195,-173,-480,-21,-136, +-140,-178,-90,-16421,-577,-479,-16420,-16419,-366,-16418,-1594,-16417,-1593,-1592,-1591,-16416,-16415,-16414,-16413, +-16412,-1590,-1589, +-1194,-1037,-331,-1588,-448,-1587,-1193,-1036,-1586,-1360,-1192,-1585,-1359,-1584,-16411,-1583,-621,-426,-1897,-356, +-16410,-1358,-49,-16409,-16408,-16407,-16406,-16405,-16404,-1896,-1895,-4057,-6569,-4056,-2940,-6568,-16403,-16402, +-16401,-16400,-16399,-16398,-16397,-16396,-16395,-16394,-16393,-16392,-16391,-16390,-16389,-16388,-16387,-16386,-16385, +-16384,-16383,-16382,-16381,-16380,-16379,-16378,-16377,-16376, +-16375,-16374,-16373,-16372,-16371,-16370,-16369,-16368,-16367,-16366,-16365,-16364,-16363,-16362,-16361,-16360,-16359, +-16358,-16357,-16356,-16355,-16354,-16353,-6567,-16352,-16351,-6566,-16350,-16349,-16348,-16347,-16346,-2939,-4055,-2278, +-1894,-16345,-16344,-16343,-16342,-16341,-16340,-16339,-16338,-16337,-16336,-16335,-16334,-16333,-16332,-16331,-16330, +-16329,-16328,-16327,-16326,-16325,-16324,-16323,-16322,-16321,-769,-48,-16320, +-4054,-16319,-16318,-2938,-2937,-4053,-4052,-16317,-16316,-16315,-16314,-16313,-4051,-16312,-16311,-16310,-16309,-16308, +-16307,-16306,-16305,-16304,-16303,-16302,-16301,-16300,-16299,-16298,-16297,-16296,-16295,-16294,-16293,-16292,-16291, +-16290,-16289,-6565,-16288,-2277,-4050,-6564,-1357,-16287,-4049,-715,-1356,-16286,-4048,-16285,-16284,-16283,-16282, +-16281,-16280,-16279,-16278,-16277,-6563,-16276,-6562,-16275,-6561,-16274, +-16273,-6560,-16272,-16271,-16270,-2936,-478,-1893,-2276,-4047,-16269,-6559,-16268,-2275,-6558,-16267,-6557,-4046,-6556, +-16266,-6555,-16265,-16264,-6554,-930,-4045,-4044,-1355,-16263,-16262,-16261,-16260,-16259,-16258,-16257,-16256,-16255, +-714,-16254,-2274,-16253,-1035,-16252,-4043,-4042,-16251,-6553,-2273,-2935,-713,-16250,-16249,-16248,-16247,-4041,-6552, +-16246,-6551,-16245,-16244,-16243,-16242,-16241,-16240, +-16239,-16238,-16237,-16236,-16235,-16234,-16233,-16232,-16231,-16230,-16229,-16228,-16227,-16226,-16225,-16224,-16223, +-16222,-16221,-16220,-16219,-16218,-16217,-16216,-16215,-16214,-16213,-16212,-16211,-2272,-80,-63,-16210,-6550,-16209, +-16208,-16207,-662,-2934,-16206,-16205,-16204,-16203,-16202,-4040,-1582,-2271,-252,-16201,-16200,-16199,-16198,-16197, +-16196,-16195,-16194,-16193,-16192,-16191,-16190,-16189,-16188,-16187,-16186, +-16185,-16184,-16183,-16182,-16181,-16180,-16179,-16178,-16177,-16176,-16175,-16174,-16173,-16172,-16171,-16170,-16169, +-6549,-6548,-16168,-16167,-4039,-330,-155,-6547,-122,-317,-2270,-4038,-6546,-6545,-6544,-6543,-6542,-4037,-6541,-6540, +-6539,-6538,-6537,-2269,-16166,-329,-22,-19,-839,-16165,-6536,-6535,-4036,-6534,-6533,-4035,-16164,-16163,-4034,-537, +-1892,-6532,-16162,-16161,-16160,-16159,-16158, +-16157,-16156,-16155,-16154,-16153,-16152,-16151,-16150,-16149,-16148,-1354,-1191,-4033,-208,-1581,-6531,-2268,-838, +-16147,-6530,-768,-193,-837,-2933,-6529,-2932,-6528,-192,-16146,-6527,-6526,-477,-929,-1190,-767,-1580,-16145,-1034, +-16144,-4032,-4031,-1579,-16143,-6525,-2267,-2266,-4030,-2265,-2931,-16142,-2930,-16141,-16140,-928,-836,-1353,-2929, +-1891,-1189,-293,-2928,-927,-60,-1578, +-1577,-2264,-2927,-766,-279,-16139,-160,-51,-4029,-1033,-1352,-201,-16138,-292,-182,-169,-94,-2263,-1890,-2262,-2926,-86, +-98,-278,-1889,-1351,-4028,-355,-1888,-1188,-4027,-4026,-2261,-2260,-1576,-6524,-1887,-1350,-1886,-835,-4025,-834,-2259, +-1032,-620,-765,-268,-328,-712,-1885,-1187,-4024,-2925,-2924,-447,-291,-1575,-2258,-1349,-833,-926,-2257,-6523,-6522, +-16137,-2923,-1884,-1574,-16136,-1573,-16135,-2922,-16134,-1186,-16133,-16132,-2921,-110,-2920,-2919,-2918,-16131,-2917, +-2256,-711,-6521,-6520,-2255,-1883,-6519,-16130,-2916,-2915,-2914,-2913,-2912,-2911,-2910,-4023,-4022,-4021,-4020,-16129, +-116,-2909,-168,-16128,-2254,-476,-6518,-1185,-1348,-16127,-6517,-2908,-1572,-2907,-2253,-1882,-2906,-1031,-59,-2905, +-305,-6516,-1881,-4019,-1184, +-299,-1880,-2252,-4018,-1571,-6515,-16126,-1570,-1347,-1569,-6514,-475,-43,-925,-6513,-1030,-446,-4017,-1183,-327,-2904, +-1879,-16125,-2903,-13,-244,-2251,-2250,-20,-4016,-2902,-1568,-1567,-16124,-238,-6512,-2249,-4015,-16123,-119,-504,-290, +-267,-576,-1878,-2248,-1877,-37,-2901,-1566,-1876,-6511,-2900,-1029,-6510,-661,-2247,-6509,-16122,-1182,-4014,-4013,-536, +-304, +-6508,-1028,-16121,-354,-152,-1181,-474,-316,-224,-1180,-135,-1565,-6507,-2899,-2898,-58,-503,-1179,-473,-6506,-384,-315, +-289,-353,-1178,-223,-16120,-1564,-16119,-2246,-1346,-4012,-1027,-924,-16118,-575,-404,-1345,-472,-352,-619,-2897,-1344, +-832,-535,-660,-6505,-16117,-1026,-159,-383,-403,-56,-618,-6504,-6503,-4011,-2245,-6502,-1177,-2896,-6501,-16116,-26, +-2244,-230,-659,-1875,-2895,-16115,-425,-24,-16114,-6500,-144,-1343,-4010,-1176,-6499,-2243,-382,-4009,-764,-6498,-831, +-2242,-2241,-6497,-4008,-1874,-16113,-502,-298,-1175,-2240,-2239,-6496,-2894,-16112,-4007,-2893,-1873,-16111,-1174,-1872, +-574,-6495,-1871,-36,-1870,-2892,-534,-6494,-16110,-16109,-6493,-2238,-830,-1869,-326,-151,-237,-658,-1563,-1173,-1342, +-2891,-1341, +-1868,-2890,-207,-6492,-2889,-16108,-1562,-16107,-4006,-6491,-6490,-4005,-16106,-16105,-16104,-16103,-6489,-1561,-16102, +-4004,-16101,-16100,-16099,-1025,-42,-6488,-1867,-16098,-1866,-4003,-16097,-4002,-1560,-215,-1024,-1340,-16096,-1023, +-6487,-4001,-16095,-4000,-3999,-3998,-3997,-16094,-6486,-1172,-6485,-1559,-16093,-1558,-16092,-1171,-3996,-1557,-351, +-6484,-6483,-471,-16091,-6482,-16090,-16089, +-6481,-16088,-6480,-6479,-16087,-16086,-1556,-6478,-6477,-6476,-1865,-1339,-1864,-829,-573,-16085,-16084,-2237,-1863, +-445,-1022,-6475,-3995,-6474,-1338,-1555,-1554,-1553,-6473,-1021,-3994,-1862,-89,-501,-424,-2888,-1,-266,-191,-1020, +-2236,-828,-1337,-2235,-12,-1336,-1861,-84,-1552,-1335,-1551,-710,-251,-1860,-2234,-827,-923,-1859,-1550,-572,-500,-763, +-10,-145, +-181,-1334,-148,-214,-265,-115,-76,-25,-67,-64,-190,-826,-762,-2887,-131,-2886,-1549,-1170,-150,-2233,-825,-1548,-1169, +-1019,-6472,-381,-617,-1168,-1167,-824,-922,-16083,-6471,-1166,-423,-1858,-1018,-422,-2885,-118,-921,-350,-823,-421,-41, +-16082,-16081,-16080,-16079,-16078,-920,-16077,-16076,-16075,-16074,-444,-2884,-919,-1165,-3993,-3992,-2232,-264,-1333, +-16073,-1017,-229,-16072,-1857,-6470,-1164,-822,-1332,-1856,-16071,-6469,-16070,-3991,-3990,-1855,-533,-277,-16069,-1331, +-761,-1016,-1547,-349,-1546,-6468,-1545,-16068,-16067,-1854,-1330,-1544,-16066,-16065,-16064,-420,-6467,-6466,-1329, +-1543,-3989,-1015,-3988,-1853,-16063,-657,-1014,-3987,-709,-6465,-3986,-1852,-303,-40,-1851,-16062,-2231,-6464,-3985, +-1850,-6463,-1849,-16061,-1848, +-1847,-16060,-16059,-16058,-16057,-6462,-16056,-2883,-16055,-1846,-499,-1328,-498,-1327,-6461,-348,-3984,-571,-16054,-28, +-1542,-918,-55,-206,-3983,-6460,-16053,-6459,-402,-6458,-16052,-325,-6457,-2882,-380,-1013,-16051,-708,-16050,-54,-16049, +-1541,-1012,-570,-167,-6456,-243,-16048,-656,-616,-532,-6455,-2230,-16047,-16046,-917,-177,-6454,-365,-16045,-347,-302, +-1163,-1540, +-531,-1326,-3982,-1011,-1010,-6453,-3981,-655,-2881,-1845,-821,-1539,-16044,-6452,-2229,-6451,-32,-16043,-16042,-1844, +-16041,-16040,-615,-16039,-16038,-3980,-6450,-3979,-16037,-16036,-6449,-2228,-1009,-16035,-16034,-654,-6448,-16033,-3978, +-16032,-16031,-16030,-6447,-6446,-3977,-530,-16029,-1162,-16028,-2880,-707,-16027,-6445,-3976,-16026,-16025,-820,-16024, +-6444,-16023,-1161,-16022,-16021,-6443, +-16020,-6442,-16019,-16018,-1008,-16017,-3975,-6441,-819,-6440,-1325,-16016,-2227,-3974,-16015,-364,-2879,-16014,-16013, +-6439,-916,-2226,-1538,-16012,-16011,-16010,-16009,-314,-1007,-3973,-16008,-16007,-1537,-16006,-6438,-3972,-313,-16005, +-3971,-16004,-16003,-16002,-16001,-6437,-3970,-1536,-653,-16000,-6436,-15999,-363,-6435,-2878,-15998,-6434,-6433,-15997, +-1160,-1535,-3969,-250,-2225,-1324,-6432, +-2877,-3968,-2876,-1323,-2224,-706,-1843,-6431,-1842,-2223,-1534,-6430,-760,-2875,-1159,-6429,-2222,-1158,-3967,-3966, +-15996,-15995,-6428,-6427,-379,-15994,-1533,-3965,-2874,-1841,-3964,-1006,-15993,-915,-6426,-818,-15992,-2873,-3963, +-3962,-705,-2872,-1532,-1531,-3961,-15991,-3960,-3959,-15990,-1530,-3958,-346,-15989,-497,-105,-652,-614,-2871,-2870, +-419,-6425,-2221,-401,-759, +-9,-6424,-6423,-6422,-1157,-1156,-15988,-470,-1005,-469,-1840,-6421,-2220,-3957,-6420,-1004,-3956,-529,-2219,-1839, +-15987,-213,-817,-6419,-2218,-1155,-528,-758,-15986,-6418,-3955,-15985,-200,-15984,-3954,-15983,-757,-2217,-3953,-15982, +-704,-15981,-1529,-1838,-2216,-2869,-15980,-651,-569,-1154,-1837,-1153,-1152,-6417,-1836,-1003,-3952,-914,-1151,-1835, +-2868,-66,-1834,-6416, +-1322,-1833,-2215,-15979,-199,-378,-2214,-8,-1528,-496,-913,-176,-15978,-816,-3951,-15977,-1150,-3950,-1832,-912,-1149, +-1321,-3949,-527,-2867,-15976,-6415,-756,-3948,-249,-15975,-1002,-1001,-2866,-101,-15974,-6414,-613,-166,-6413,-815,-79, +-15973,-1148,-117,-1000,-6412,-911,-650,-3947,-2865,-1147,-276,-649,-2864,-814,-1146,-813,-15972,-15971,-3946,-2863, +-15970,-78, +-910,-1527,-703,-139,-612,-1526,-1831,-212,-1145,-400,-189,-418,-2862,-1830,-755,-909,-812,-1320,-648,-702,-526,-3945, +-2861,-2860,-495,-6411,-811,-2859,-15969,-443,-15968,-15967,-2858,-15966,-15965,-15964,-6410,-15963,-1144,-2857,-2856, +-2855,-2213,-15962,-2854,-15961,-15960,-3944,-1525,-222,-1143,-2853,-6409,-6408,-1142,-6407,-3943,-6406,-15959,-6405, +-2212,-15958,-18,-2211, +-1829,-3942,-15957,-6404,-1141,-3941,-345,-754,-6403,-6402,-6401,-1140,-23,-468,-2210,-1828,-1139,-2209,-1827,-6400, +-15956,-15955,-15954,-1826,-15953,-15952,-6399,-6398,-6397,-1825,-1319,-15951,-15950,-15949,-1524,-1824,-2852,-263,-647, +-1523,-2208,-1522,-2207,-6396,-1521,-3940,-442,-15948,-2851,-15947,-1823,-15946,-297,-6395,-15945,-753,-2206,-6394,-2850, +-15944,-2849,-999,-15943,-100, +-221,-998,-1318,-1138,-15942,-1137,-2848,-997,-996,-525,-228,-15941,-1520,-1136,-15940,-2847,-1135,-15939,-908,-1134, +-2846,-15938,-2845,-262,-2205,-6393,-1133,-1822,-15937,-15936,-467,-494,-1132,-2844,-6392,-2204,-1131,-701,-1519,-362, +-261,-344,-15935,-377,-227,-93,-88,-15934,-2843,-15933,-72,-1518,-1317,-2203,-3,-1821,-995,-611,-568,-1820,-1517,-1516, +-1130,-1515, +-6391,-15932,-236,-907,-15931,-15930,-15929,-376,-1129,-1316,-15928,-6390,-700,-6389,-6388,-2842,-2841,-567,-1819,-810, +-2840,-1514,-1513,-3939,-6387,-524,-15927,-566,-1818,-1512,-15926,-2839,-809,-3938,-15925,-646,-15924,-15923,-6386,-3937, +-15922,-752,-15921,-6385,-1817,-15920,-3936,-15919,-6384,-399,-15918,-15917,-6383,-3935,-6382,-2838,-2837,-15916,-198, +-906,-3934,-15915,-15914,-6381, +-2836,-188,-1128,-15913,-15912,-610,-1511,-6380,-3933,-1510,-15911,-15910,-6379,-2835,-15909,-1315,-3932,-6378,-6377, +-3931,-15908,-15907,-2202,-15906,-1816,-288,-699,-15905,-6376,-6375,-466,-1509,-15904,-6374,-2201,-417,-158,-6373,-3930, +-994,-1127,-1815,-1814,-65,-343,-2200,-15903,-15902,-1813,-275,-2834,-1314,-2833,-6372,-2832,-993,-3929,-6371,-15901, +-1313,-15,-1812,-6370,-905, +-242,-1811,-1312,-1508,-6369,-609,-1126,-2831,-992,-698,-6368,-2830,-15900,-149,-1311,-15899,-15898,-6367,-608,-15897, +-1310,-565,-2199,-3928,-324,-6366,-808,-1507,-3927,-807,-2829,-6365,-15896,-904,-564,-1125,-2198,-15895,-6364,-1309, +-15894,-15893,-1810,-15892,-6363,-15891,-165,-607,-751,-1809,-15890,-15889,-15888,-3926,-2828,-248,-697,-493,-1308,-563, +-606,-15887,-15886,-6362, +-1506,-605,-3925,-903,-645,-2827,-15885,-164,-323,-6361,-1124,-1307,-1306,-2826,-991,-2197,-1123,-15884,-398,-1305,-143, +-990,-562,-6360,-806,-15883,-3924,-15882,-15881,-1505,-2825,-3923,-644,-38,-2824,-696,-6359,-15880,-15879,-15878,-2196, +-1808,-3922,-2823,-15877,-15876,-15875,-1504,-3921,-6358,-561,-902,-492,-15874,-15873,-15872,-15871,-15870,-15869,-2195, +-1503,-3920,-3919,-15868, +-15867,-15866,-15865,-15864,-15863,-15862,-6357,-805,-15861,-1502,-901,-560,-15860,-15859,-465,-15858,-2194,-6356,-1501, +-235,-491,-2822,-4,-2821,-1122,-900,-6355,-15857,-523,-6354,-695,-899,-441,-2820,-3918,-440,-15856,-989,-287,-361,-6353, +-172,-1807,-1806,-15855,-490,-397,-121,-1500,-1805,-2193,-604,-180,-2819,-643,-15854,-1304,-988,-157,-6352,-522,-3917, +-1499,-464, +-3916,-987,-986,-15853,-6351,-375,-6350,-1498,-694,-642,-1804,-3915,-15852,-1121,-6349,-1497,-693,-1496,-3914,-2192, +-1303,-15851,-6,-15850,-15849,-15848,-2818,-6348,-2817,-1120,-6347,-1302,-2816,-2815,-3913,-35,-6346,-6345,-3912,-3911, +-2191,-6344,-3910,-2814,-1803,-439,-1495,-15847,-15846,-15845,-234,-15844,-6343,-6342,-15843,-3909,-898,-692,-3908,-897, +-559,-15842,-3907,-15841, +-6341,-2813,-15840,-6340,-286,-2812,-3906,-691,-6339,-15839,-6338,-603,-1802,-2190,-197,-1301,-15838,-15837,-1300,-3905, +-2189,-3904,-2188,-690,-6337,-15836,-322,-15835,-6336,-6335,-15834,-6334,-602,-985,-342,-374,-1801,-6333,-15833,-2187, +-3903,-2811,-750,-373,-6332,-274,-147,-521,-2810,-15832,-601,-1800,-260,-804,-1119,-896,-1799,-113,-1798,-6331,-6330, +-2809,-15831,-416, +-2808,-1118,-128,-641,-2807,-15830,-6329,-15829,-6328,-15828,-2186,-1494,-1797,-7,-6327,-14,-273,-984,-895,-463,-415, +-1117,-894,-1796,-1299,-341,-893,-1298,-226,-1297,-301,-803,-640,-892,-6326,-15827,-1296,-2806,-983,-1795,-3902,-489, +-15826,-488,-187,-6325,-3901,-6324,-2185,-1794,-77,-462,-6323,-1116,-982,-15825,-639,-2805,-6322,-6321,-1493,-1115,-120, +-15824, +-2184,-16,-802,-15823,-6320,-15822,-1114,-2804,-801,-1793,-1113,-396,-1112,-15821,-15820,-2803,-1492,-689,-749,-272, +-3900,-6319,-82,-3899,-395,-2802,-891,-2801,-15819,-600,-15818,-15817,-6318,-2800,-27,-186,-15816,-748,-321,-15815, +-15814,-2799,-285,-2798,-15813,-6317,-2797,-747,-6316,-6315,-1792,-3898,-800,-1295,-6314,-130,-799,-890,-146,-1111, +-15812,-2796,-2795,-798, +-889,-6313,-15811,-2794,-6312,-797,-2793,-1491,-6311,-3897,-97,-134,-2792,-1110,-3896,-1294,-2791,-746,-15810,-15809, +-15808,-1490,-3895,-15807,-6310,-163,-15806,-394,-3894,-138,-1293,-599,-3893,-6309,-15805,-154,-2183,-3892,-888,-3891, +-3890,-179,-558,-15804,-1489,-2790,-393,-1791,-6308,-887,-2789,-688,-3889,-125,-15803,-2788,-2787,-461,-2786,-220,-2785, +-2784,-2783,-598, +-15802,-3888,-15801,-6307,-6306,-2782,-6305,-6304,-6303,-3887,-1790,-6302,-1292,-2781,-557,-85,-556,-1291,-39,-312,-1290, +-886,-15800,-15799,-6301,-15798,-597,-372,-15797,-15796,-175,-392,-15795,-1488,-15794,-2780,-2182,-1789,-3886,-885,-1109, +-1788,-460,-71,-2779,-15793,-2181,-1487,-6300,-1486,-1108,-1107,-3885,-3884,-2778,-156,-6299,-3883,-884,-414,-1106, +-15792,-2777,-15791, +-2180,-687,-2776,-15790,-15789,-15788,-15787,-57,-211,-15786,-796,-33,-15785,-6298,-15784,-795,-81,-15783,-555,-44,-196, +-1289,-6297,-171,-153,-3882,-6296,-15782,-15781,-15780,-2775,-233,-210,-981,-124,-15779,-15778,-794,-15777,-15776,-15775, +-2179,-2,-83,-3881,-6295,-1485,-1288,-112,-1105,-1484,-1483,-15774,-15773,-3880,-1287,-247,-1286,-284,-133,-15772,-340, +-1482,-6294, +-1787,-596,-15771,-195,-2178,-438,-3879,-3878,-2177,-6293,-2774,-1786,-132,-2176,-123,-1104,-15770,-1785,-1285,-437, +-15769,-980,-3877,-2175,-2174,-3876,-6292,-6291,-70,-1784,-554,-883,-553,-15768,-104,-15767,-793,-30,-15766,-1481,-6290, +-15765,-15764,-15763,-74,-3875,-979,-6289,-3874,-1103,-15762,-882,-2173,-1480,-1783,-745,-1102,-595,-594,-744,-6288, +-1782,-1284,-15761, +-6287,-6286,-15760,-15759,-15758,-17,-520,-92,-1781,-170,-2773,-2772,-519,-1780,-1479,-15757,-881,-6285,-15756,-15755, +-792,-2172,-219,-6284,-552,-15754,-1779,-6283,-2171,-978,-3873,-3872,-880,-3871,-1778,-205,-15753,-743,-1777,-6282,-551, +-3870,-1283,-15752,-2170,-34,-2169,-6281,-1282,-15751,-742,-638,-259,-2168,-96,-518,-686,-15750,-6280,-977,-3869,-1478, +-2167,-1776, +-15749,-6279,-2166,-6278,-258,-15748,-15747,-2771,-976,-6277,-15746,-6276,-15745,-6275,-15744,-6274,-6273,-6272,-6271, +-6270,-15743,-320,-15742,-15741,-6269,-15740,-1281,-15739,-15738,-15737,-6268,-2770,-2165,-15736,-1101,-3868,-15735, +-15734,-15733,-15732,-15731,-15730,-15729,-15728,-15727,-15726,-2769,-15725,-15724,-15723,-15722,-15721,-15720,-15719, +-15718,-15717,-15716,-15715,-15714,-15713,-15712,-15711,-1477,-15710, +-1476,-15709,-15708,-15707,-15706,-6267,-15705,-6266,-6265,-15704,-241,-6264,-15703,-6263,-15702,-6262,-15701,-2768, +-15700,-6261,-15699,-3867,-15698,-15697,-2164,-6260,-1475,-3866,-15696,-2163,-311,-6259,-15695,-15694,-6258,-15693, +-15692,-15691,-3865,-15690,-15689,-15688,-15687,-15686,-15685,-6257,-6256,-15684,-15683,-15682,-15681,-15680,-15679, +-15678,-6255,-15677,-2767,-15676,-6254,-3864,-15675,-2766,-6253,-6252, +-15674,-6251,-1474,-15673,-15672,-15671,-2162,-2161,-15670,-6250,-15669,-2160,-15668,-6249,-6248,-6247,-6246,-6245,-6244, +-6243,-6242,-15667,-6241,-3863,-6240,-6239,-6238,-6237,-3862,-3861,-2765,-6236,-15666,-15665,-6235,-15664,-15663,-15662, +-15661,-15660,-6234,-6233,-6232,-3860,-15659,-6231,-1775,-15658,-3859,-6230,-3858,-6229,-2764,-2763,-1473,-15657,-15656, +-1774,-1773,-15655,-15654,-15653,-15652,-15651, +-15650,-15649,-15648,-15647,-15646,-2762,-2761,-6228,-1772,-6227,-3857,-6226,-15645,-6225,-1472,-6224,-6223,-2159,-6222, +-3856,-15644,-1471,-6221,-15643,-2760,-15642,-1771,-6220,-15641,-6219,-15640,-6218,-15639,-6217,-15638,-15637,-2759, +-15636,-6216,-2758,-6215,-15635,-15634,-6214,-15633,-15632,-2757,-15631,-15630,-15629,-15628,-15627,-2756,-15626,-15625, +-15624,-1470,-15623,-15622,-15621,-15620,-15619,-3855,-15618, +-1770,-2755,-6213,-3854,-2754,-15617,-6212,-2753,-15616,-1769,-6211,-6210,-6209,-15615,-6208,-15614,-310,-15613,-1280, +-15612,-15611,-15610,-15609,-15608,-2752,-6207,-6206,-6205,-15607,-3853,-6204,-6203,-6202,-6201,-6200,-1768,-2751,-6199, +-6198,-15606,-6197,-6196,-3852,-15605,-2750,-15604,-6195,-6194,-15603,-6193,-6192,-15602,-6191,-6190,-15601,-15600,-6189, +-6188,-15599,-15598,-15597,-6187,-15596,-6186, +-15595,-15594,-15593,-15592,-791,-6185,-6184,-15591,-2749,-6183,-15590,-6182,-371,-15589,-15588,-15587,-6181,-15586, +-6180,-15585,-1767,-6179,-6178,-6177,-15584,-6176,-15583,-15582,-15581,-15580,-459,-15579,-15578,-15577,-3851,-3850, +-15576,-1766,-3849,-15575,-15574,-6175,-3848,-975,-2158,-15573,-3847,-15572,-15571,-15570,-15569,-6174,-3846,-15568, +-3845,-15567,-15566,-15565,-15564,-6173,-6172,-15563,-15562,-15561, +-3844,-15560,-3843,-15559,-6171,-15558,-15557,-15556,-15555,-3842,-6170,-3841,-15554,-15553,-15552,-3840,-15551,-6169, +-15550,-15549,-15548,-1100,-15547,-6168,-15546,-15545,-1469,-15544,-15543,-6167,-15542,-6166,-6165,-15541,-15540,-15539, +-6164,-2748,-15538,-6163,-3839,-15537,-15536,-2157,-15535,-15534,-15533,-6162,-6161,-15532,-15531,-15530,-6160,-790, +-6159,-15529,-15528,-15527,-15526,-6158,-6157,-6156,-6155,-15525, +-15524,-15523,-6154,-15522,-15521,-6153,-15520], +[0,295,300,304,74,309,136,136,314,74,318,74,321,324,74,326,329,333,338,343,348,353,357,361,365,367,372,375,380,384,389, +393,398,402,407,409,412,416,418,422,425,429,432,436,17,441,444,447,451,453,458,462,467,470,474,477,480,483,486,489,492, +495,498,501, +504,507,510,513,516,519,522,525,528,531,534,537,540,543,546,550,553,556,559,562,565,569,572,576,579,103,32,103,587,591, +594,597,600,604,607,610,614,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,13,13,12,17, +12,12,26,17,13,12,12,12,12,12,12,13,13,13,61,17,12,12,17,12,17,13,624,628,633,637,641,62,17,647,652,657,662,13,666,670, +12,12,12,26,12,12,12,12,12,26,12,12,12,17,43,12,12,12,26,12,12,12,26,12,13,675,679,682, +686,690,693,696,698,700,704,707,712,716,721,726,730,12,12,12,12,734,12,12,12,12,26,13,12,12,12,12,12,12,12,12,17,12,737, +742,747,751,756,761,765,770,772,776,781,785,788,793,798,12,61,802,806,26,13,811,32,814,818,822,159,827,830,834, +838,842,845,848,851,854,858,863,866,870,874,879,883,886,891,894,898,902,906,910,915,918,921,924,929,933,937,940,944,32, +948,32,62,32,951,954,957,960,964,968,971,975,979,982,985,988,992,996,1001,1006,1011,1014,1018,1021,1024,1027,1031,1035, +1039,12,12,13,12,13, +17,12,12,52,12,12,43,12,17,12,12,12,12,12,12,52,12,26,26,12,12,12,1045,1049,1053,1057,1061,1066,1070,1075,1080,1085,1090, +1095,1100,1105,1110,1115,1119,1124,1128,1131,1134,1138,1143,1148,1153,1158,17,17,13,1163,1168,1171,12,12,12,12,12,12,12, +12,12,12, +12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,1173,1178,1181,1185,1190,1195,1200,1205,1210,1214,1218,1222,1225,1228, +1232,1235,1238,1242,1246,1250,1253,1257,1261,1264,1266,52,1270,1275,1279,1283,1288,1291,1294,1298,1301,1305,1308,1313, +1318,1323,1328,1333,1338,12,12,12,78, +13,17,26,12,13,12,12,78,17,1343,1347,1352,1356,43,1360,1363,1368,1372,1375,66,1381,1386,1391,53,1397,1401,1406,1410,1412, +1415,1419,1422,1426,1430,1434,1438,1441,1446,1450,79,1454,1459,1463,1468,1473,1476,1480,1484,1488,1492,53,1497,1502,1507, +1512,1515,46,1520,1525,1528,1533,1536,1541,1545, +1549,1553,1557,1560,1565,1570,1575,1579,1584,1589,1594,1598,1603,13,1608,1612,1616,1620,1624,1627,1630,1633,1637,1641, +1645,1650,1652,1657,1662,1667,1672,1675,1677,1679,1682,1685,1690,1693,1697,1699,1702,1705,1709,1712,1714,1717,1722,1726, +1730,1733,1736,1739,1742,1745,1748,1752,1755,1758,1762,1766,1769,1773,1778,30, +1784,176,1789,1793,1797,1802,1806,1809,1812,1817,179,1821,20,1827,18,46,18,1833,1837,1842,1845,1849,1853,1858,1863,1868, +1871,46,20,20,46,53,53,54,180,80,181,80,1879,1883,1887,1891,1894,1899,1903,1906,1910,1913,17,30,20,1918,1923,1928,1933, +20,1937,1942,1947,1952,1956,1961,1965,1968, +1973,1978,1982,80,1987,1990,1994,1999,2003,2008,2013,2018,2022,2027,2030,2035,2040,2043,2046,2049,82,2055,2059,18,2062, +2066,2071,2074,2078,2082,46,2086,2089,2093,2098,30,13,2103,2108,2113,2118,2121,2125,2129,2133,2138,2141,2144,2148,2152, +2157,2162,2165,2169,2173,2177,2180,2184,2188,2193,2198,2202,2206,2208, +2212,2216,2220,2225,2229,2234,2239,2242,2245,2250,2253,2257,2262,2266,2270,2275,2279,2284,2288,2292,2295,2299,2302,2307, +2312,2316,2321,2324,2327,2332,2336,2340,2344,2348,103,2352,2356,2360,2364,2368,2372,2376,2381,2384,2389,2394,2398,2401, +2406,2411,2414,2419,2424,2429,2434,2439,2442,2447,2451,2456,2461,2464,2468,2472, +2477,2482,13,2487,2491,2494,2498,2503,2508,2512,2516,2521,2526,2531,2536,2540,2544,2549,2554,2558,2563,2568,2572,2576, +2580,2584,2588,2592,2596,2600,2605,2610,2615,2619,2624,2628,82,2631,2634,2638,2641,2644,2648,2653,2656,2661,2664,2669, +2673,2677,69,2682,2686,2690,2695,2698,2702,2707,2712,2717,2722,2726,54,2730, +2733,20,2738,2742,20,2747,2750,2754,2757,2762,30,2765,2769,2773,2776,2780,2785,2790,2794,2797,2802,2807,2811,2815,2819, +2824,2829,2834,2838,2843,2848,2852,2857,2861,2865,2869,2874,2879,2884,2889,2894,2898,2903,2908,2911,2915,2920,2925,2929, +2933,2937,2941,2944,2948,2952,2957,2962,2967,47,2973,2976,2981,2986,2990, +2993,2997,26,3002,3007,3012,3015,3020,3025,3030,3035,3037,3041,3045,3049,3054,3059,3063,3066,3070,3074,3078,3082,3086, +3090,3095,3100,3105,3109,3113,3117,3121,52,3125,3129,3132,3136,3141,3145,3149,3154,3157,3161,3166,3170,3173,3176,3180, +3184,3188,3193,3197,3202,3206,3211,3216,3221,3226,3229,3234,3238,3243,3248,3253, +3256,3261,3266,3271,3276,3280,3284,3288,3292,3297,3301,3305,3310,3315,3319,3322,3327,3332,3337,3342,3346,3351,3356,3360, +3363,3367,3370,3375,3379,3382,3385,3389,3394,3399,3404,3409,3413,3417,54,3421,3426,3430,3434,13,3438,3442,3446,3451,3456, +3461,3466,3470,3475,3479,3484,3489,3493,3498,3502,79,79,3507,3510,3515, +3520,3524,3528,3532,3535,3540,3543,3548,3552,3557,3561,47,3565,3569,3573,3577,3581,3585,3588,3592,3597,3601,3604,3609, +3614,12,3619,3624,3629,3633,3637,3641,3644,3648,3652,3657,3660,3665,3670,3675,3679,3682,3686,3691,3696,3701,3705,3710, +3715,30,3719,3724,13,3729,3734,3738,3743,3747,3751,3755,47,3759,3763,3767, +3770,3775,3778,3783,3788,3793,3797,18,3801,3804,3807,3810,3814,3819,3823,3827,3832,43,3837,3841,3845,3849,3852,3856,3861, +3866,3871,3876,3881,66,3886,3890,66,20,3894,3897,3900,3903,3908,3912,3917,3922,3925,3930,3934,3937,3942,3946,3951,3954, +3959,3963,3967,3971,3975,3980,3983,3987,3991,3996,4000,4003,4008,4013, +4018,4023,4028,4033,4037,4041,4045,4050,4053,4057,4062,4066,4069,4074,4079,4084,4088,4093,4097,4102,4107,4112,4116,4121, +4125,4130,4135,4139,4143,4147,4151,4156,4160,4165,4168,4173,4177,4181,4185,4190,4194,4199,4204,4209,4214,4219,4224,4229, +4234,4237,4241,4245,4250,4255,4260,4265,4270,4275,4280,4285,4290,4295,4300,4304, +4309,4313,4318,4323,4328,4333,4338,4343,4348,4352,4357,4362,4367,4372,4376,4381,4385,4390,4394,4399,4404,4409,4413,4418, +4423,4428,4433,4438,4441,4446,4451,4455,4460,4465,4469,4474,4478,4483,4487,4491,4496,4501,4506,4511,4516,4521,4526,4530, +4534,4539,4544,4548,4553,4558,4562,4567,4572,4577,4582,4587,4591,4596,4600,47, +18,4605,18,4608,4612,4615,4620,4625,4630,4635,4640,4644,4649,4652,4656,30,4661,4665,4669,4673,4676,4679,4682,4687,4691, +4695,4697,180,18,4700,4703,4708,4712,4716,30,4720,4724,4728,4733,4737,4742,4746,4750,4755,4760,4765,4770,4775,4779,4783, +4787,4791,4796,4801,13,4806,4810,4814,4819,4824,4829,4833,4837,4840, +4845,4848,4852,4856,4859,4864,4868,4872,4877,4882,4886,43,4890,4895,4900,4904,4908,4912,4915,4919,4924,13,4929,4932,4937, +4942,4946,4949,26,4951,4956,4960,4963,4967,80,4972,4976,4980,4984,4988,4992,4996,5001,5005,5010,5015,5018,5022,5026,5030, +5034,5039,5042,5046,17,5050,17,5054,5058,5061,5065,5069,5074,5077, +5082,5086,5090,5095,5100,5104,5107,5111,5114,5119,5123,5126,5129,5133,5137,5142,5147,5151,5154,5158,5162,5166,5170,5175, +5178,5181,5186,5191,5196,5199,5202,5206,5210,5215,5219,5224,5229,5233,5238,5243,5247,5251,5255,5259,5263,5267,5271,5276, +5279,5282,5287,5292,5295,5299,5302,5306,5310,5315,5320,5324,5328,5333,5337,5341, +5346,5351,5356,5359,5363,5368,5372,5377,5382,5386,5391,5395,5400,5405,5409,5414,5418,5423,5426,5431,5435,5439,5442,5445, +5450,5454,5459,5464,5468,5472,5477,5482,5487,5491,5496,5501,5506,5511,5516,46,20,54,5521,5526,20,5530,5534,5538,5542, +5546,5551,5555,5559,5564,5568,5572,5576,5581,5585,5589,5594,5598,5601,5606, +5611,5615,5619,5624,5629,5633,5638,5643,5646,5651,5656,5659,5664,5667,5670,5673,5676,5679,5682,5685,5688,5691,5694,5697, +5700,5703,5706,5709,5712,5715,5718,5721,5724,5727,5730,5734,5737,5740,5745,5750,5755,5760,5764,5768,5773,5777,5782,5786, +18,5790,5795,5800,5805,5810,5815,5820,5824,5827,5832,5837,20,5841,5844,5848, +5852,5857,5861,5864,5867,5872,5876,5880,5884,5889,5894,5898,5902,5905,5908,18,5913,5917,5921,5926,5931,13,5935,5939,5944, +5948,5952,5957,5961,5964,5966,5970,5974,5977,5982,5985,5989,5993,5998,6002,6007,6011,6015,6018,6023,6028,6032,69,20,6036, +6041,6045,6049,6053,6058,6063,6068,6073,6076,6080,6085,6089,6092,6096, +6100,6104,6109,6113,6118,6123,6127,6132,6137,6142,6146,6150,6155,47,6160,20,6162,6167,6170,6175,82,6180,6185,6189,6194, +6199,6203,6207,6211,6216,6221,53,6225,6228,6232,6237,26,6240,6245,6250,6255,6260,6264,6268,6273,6278,6282,6287,6292,6297, +6300,6303,6307,6312,6315,6320,82,6325,6330,6334,6338,6343,6347,6352, +6355,6360,6365,6369,6374,6379,6384,6389,6394,6399,6404,6409,6411,6416,6421,6425,6430,6435,6439,6443,6447,6451,6456,6461, +6466,6470,6475,6478,6483,6487,6491,6494,6498,6501,61,6504,6509,6514,6519,6523,6526,6531,6535,6540,6544,6548,6552,6556, +6561,6566,6571,6575,6578,6583,6588,6592,6597,6600,6604,6607,6611,6616,6621,6626, +6628,6632,6636,6640,6644,6648,6653,18,6658,6662,6666,18,6671,6676,6679,6684,6689,6694,6699,6701,6705,6708,6712,6717,6722, +6727,6732,6737,6740,6744,20,6748,6751,6756,6761,6765,6770,6774,6779,6784,6789,6794,6798,6802,6806,6811,6815,6820,6824, +6827,6832,6837,6841,6844,6848,6851,6855,6858,6861,6864,6868,6871,6875,6880, +6885,6888,6893,6898,6902,6906,6911,6913,6916,240,6921,6925,6930,18,6934,6939,6944,6947,6950,6953,6958,6963,6967,6971, +6975,6979,6984,78,6987,6991,18,6995,6999,7004,7008,7013,7018,7022,7027,7030,7035,7039,7043,7047,7051,7054,7057,7061,7065, +7070,7074,7079,7083,7088,7092,7097,7100,7103,7107,7112,7116,7119,7123,7128, +243,7132,7134,7136,243,7139,7142,7146,7150,7154,7157,7160,7164,7169,7171,7175,7179,7184,7188,7193,7198,7202,52,7205,7210, +7214,7219,7223,7227,7230,7235,7239,7243,7247,7252,7257,7261,7266,7268,7272,7276,7280,7284,7288,7292,7295,244,7304,7308, +7312,7317,7322,7327,7331,7336,7341,7344,7348,7352,7356,7360,7364,7367,7370, +7375,7380,7384,7388,7391,7396,7401,7406,7411,7416,7420,7424,7428,7431,7434,7439,7443,7446,7450,7455,7460,12,7465,7467, +7470,7474,7479,7482,7486,7491,7496,7501,7505,7509,7513,7517,7520,7525,7529,7534,7538,7543,13,7548,7552,7556,7558,7561, +7566,7571,7576,7579,7583,7588,7592,7596,7600,247,7606,7611,7615,7619,7623,7626, +7631,7636,7641,7646,7650,7654,7658,7663,7667,7672,7677,7682,7686,7690,7694,7699,7703,249,7707,250,7713,7717,7721,7724, +7728,7732,7737,7741,7746,7751,7756,7761,7765,7769,7773,7776,7780,7785,7790,7795,7799,7804,7809,7813,7818,7823,7827,7831, +7836,7841,7846,7850,7855,7860,7865,7870,7873,7878,7883,7888,17,7893,7896,17, +7900,7904,7908,7913,7916,7920,7925,7930,7933,7937,7941,7944,7949,7953,7958,7963,7967,7972,7976,7981,7985,7990,7994,7999, +8003,8007,8011,8015,8020,8025,8030,8035,8040,8045,8050,8053,8057,8061,8066,8071,8075,8078,61,8082,8085,8090,181,47,8095, +8100,8105,8109,255,8115,247,8118,8123,18,8127,8132,8136,8139,8144,8149, +8153,8158,8161,8165,8170,8174,8179,8183,8187,8192,8197,8201,13,8204,8209,8214,8217,8221,8226,8230,250,8235,8240,8245, +8249,18,8254,18,8258,8263,244,8268,240,20,8272,8277,8281,8286,8289,8293,8296,20,8301,8304,8309,30,8313,8317,256,47,8322, +8326,8331,8335,8339,8344,8347,8350,8354,8358,8361,20,18,8366, +8370,30,257,8374,8377,8382,8387,8392,8397,8401,8404,8409,46,8414,8419,8424,18,8428,8433,8438,8441,8443,8447,8451,8455, +8458,8462,8467,8471,8476,8480,8483,8487,8491,8496,8501,8504,8509,8514,8519,8524,8528,8533,8538,8542,8547,8552,8556,30, +8561,20,8564,8569,8573,8578,257,54,8583,18,8587,8592,8597,8601,8606, +8611,8616,8621,8626,8629,54,8634,8639,8642,8647,8650,255,8653,8658,8662,8665,8669,8674,8677,8682,8686,8691,8695,8699, +8703,8707,8712,8715,8720,8724,8728,8733,249,8738,8743,8748,8753,8758,8763,8768,8772,8776,8780,8784,176,8789,8792,8795, +8799,8804,8808,8811,8815,8818,8822,8825,8828,8833,8837,8841,8844,8849,18,69, +8854,8859,53,8862,8865,8870,8875,8878,8883,8888,8893,8898,8903,8908,8911,8916,8920,8925,8929,8934,8937,8942,8946,8950, +8954,8958,8963,8967,8971,8976,8981,8986,8989,8994,8998,9002,9007,9010,9013,9018,9023,9026,9030,9034,9038,9043,9048,9053, +9058,9062,9067,9072,9076,9080,9083,9087,9091,9095,9100,9104,9109,9113,9118,30, +9121,9125,9130,9133,9138,9142,9146,9151,43,9156,9161,9166,9170,9174,9176,9180,9185,9189,9194,9198,9202,9207,9211,9215, +9219,9223,66,9226,9230,9235,9240,9245,9250,9253,9258,9262,9267,9272,9277,9282,9286,9291,9293,9297,9300,9304,9308,9312, +9316,9321,9325,9329,9333,9337,9341,9344,9348,9352,9356,9360,9365,9369,9374,69, +66,256,9379,179,69,9383,9387,9392,9397,9402,9406,9411,9415,9420,9424,9428,9432,9437,9442,9447,9451,9454,9458,9461,9465, +9470,9475,9480,9485,9488,9491,79,9496,17,9501,9505,9509,9514,9519,9524,9529,9534,9537,9540,9544,9547,9552,9556,9561,9566, +9570,9573,9577,9581,9586,9590,52,9594,9598,9601,9606,9610,9614,9617, +9622,9626,9630,9635,9639,9642,9647,9652,9655,9660,9664,9667,9671,9676,9681,9686,9690,9694,9698,9703,9706,9711,9714,9718, +9722,9726,9730,9735,9739,9742,9747,9751,9756,9761,9765,9770,9774,9779,9784,32,32,32,62,32,265,265,9791,9794,9798,9802, +9806,62,62,32,9811,13,17,13,26,9815,13,61,9818,9823, +9827,9831,9836,9840,9843,9848,9852,9857,9862,9865,9869,9873,9877,9882,9887,9891,9895,9899,9904,9909,9914,9919,9923,9928, +9933,9938,9942,9945,9948,9952,9956,9960,9963,9967,9970,9973,9977,9980,159,9983,9986,9991,9996,10000,10005,10010,10013, +10016,10020,267,10025,10028,10032,10037,10041,10046,10050,10054,10059,10064,10068,10073,10078,10082, +10086,10090,10094,10098,10101,10103,10108,10112,10117,43,10121,10126,10131,10136,10139,96,10144,10147,10149,270,10152, +10154,10159,10162,10166,10169,10172,10175,10178,10181,10184,10188,10191,10195,10198,10202,10206,10209,10213,10215,10218, +10222,10226,10229,10234,10238,10242,10247,10251,10254,10257,10260,10264,10266,10270,10273,10277,10281,10285,10290,10295, +10299,10303,10307, +10311,10315,10319,10321,10324,10328,10333,10338,10342,10347,10351,10354,10359,10362,10366,10369,10372,10377,10380,10385, +10389,10393,10396,10399,10402,10405,10409,10414,10418,10423,10428,10433,10438,10443,10446,10449,10453,10458,10462,10465, +10469,10473,10478,10483,10487,10492,10496,10500,10503,10507,10511,10516,10521,10526,10531,10536,10540,10543,10546,10549, +10553,10558,10563,10567, +10571,10574,10578,10583,10588,10591,10595,10599,10602,10605,100,279,270,10610,10615,10620,10625,267,10629,10633,10636, +10641,10645,10648,10653,10657,281,10661,10666,10670,96,10675,282,282,100,10678,10682,100,10686,283,10693,10698,10703, +10707,10711,10714,10716,279,10719,284,284,10723,96,10726,10729,10733,10738,10740,10744,10749,10753,10757,10761,10765, +10770,10773,10778,10782,10787,10791,10794,10798,10801,10804,10809,10813,10818,10822,10827,10831,10835,10837,10842,10845, +10849,10851,10856,290,10859,10862,10866,10870,10874,10879,10883,10888,10892,10895,10898,10901,10906,10910,10914,10917, +10921,10925,10929,10933,10938,283,10942,10945,10950,10954,10958,10962,10967,10969,10974,10977,10982,10987,10992,10996, +290,11000,11003,11007, +11010,11012,11017,11019,11023,11028,11033,11037,11042,11046,11050,11053,11058,11061,11065,11068,11071,11076,11081,11086, +11090,11095,11099,11104,11108,11113,11118,11123,11128,11132,11136,96,100,11141,11146,11150,11154,11159,11163,11166,11170, +11173,11177,11181,11185,11188,11191,11194,11196,11199,11204,11209,281,11213,11217,78,11221,11224,11229,11233,292,11237, +11240,11244, +11248,11251,11254,292,11259,11262,11265], +[1,3,296], +[0,297,298,299,10], +[0,-574,-44,-15518,-267,-121,-15517,-291,-15516,-15515,-1139,-691,-15514,-1006,-1495,-1118,-1468], +[0,-1028,-351,-1135,-13,-28,-222,-77,-104,-20,-9,-6152,-78,-3,-6,-322,-27,-96,-445,-1,-23,-236,-274,-16,-196,-3878,-238, +-502,-89,-38,-33,-17,-1352,-119,-1553,-40,-200,-88,-993,-4,-15513,-796,-2746,-15512,-421,-15511,-157,-15510,-2816,-35, +-2745,-179,-211,-6151,-169,-144,-15509,-15508,-2,-11,-109,-458,-5,-189, +-18,-221,-6150,-898,-15507,-47,-413,-160,-94,-98,-754,-297,-2824,-1501,-897,-154,-792,-713,-15506,-1279,-142,-526,-15505, +-517,-620,-561,-492,-6149,-2790,-49,-185,-2156,-3838,-1302,-2744,-1893,-87,-15504,-268,-6148,-15503,-1807,-559,-15502, +-15501,-15500,-2155,-6147,-15499,-3837,-712,-998,-170,-15498,-15497,-64,-1170,-702,-286,-15496,-15495,-537,-6146,-1187, +-6145,-10,-15494,-15493,-355,-2743,-139,-575,-15492,-12,-148,-214,-648,-15491,-15490,-3836,-1022,-1120,-2815,-15489,-974, +-6144,-6143,-2823,-15488,-19,-1808,-1765,-15487,-919,-15486,-15485,-2154,-15484,-1764,-1032,-278,-15483,-15482,-22,-1879, +-6142,-15481,-216,-6524,-1345,-15480], +[0,-15479,-15478,-241,-129,-15477,-6,-15476,-127,-435,-53], +[1,3,301], +[0,302,0,303,11], +[0,-193,-489,-323,-130,-837,-649], +[0,-6141,-6140,-192,-1467,-6139,-2153], +[1,3,305], +[0,306,0,307,9], +[0,-324,-489,-649,-297,-6576], +[0,-6141,-6140,-192,-15475,-6138,-6139,-1466,-15474,-2153,-271,-15473], +[0,33,0,7,5], +[1,3,310], +[0,311,0,312,4], +[0,-44,-607], +[0,-192,-3835,-129,-684,-3834], +[0,33,0,7,4], +[1,3,315], +[0,316,37,317,4], +[0,-44,-96,-16,-119,-11,-602,-472,-1763], +[0,-192,-593], +[1,3,319], +[0,320,0,7,11], +[0,-44,-1762], +[1,3,322], +[0,33,0,323,9], +[0,-192,-1761,-973,-127], +[1,3,325], +[0,33,0,7,6], +[1,3,327], +[0,328,0,7,4], +[0,-3833,-44], +[1,3,330], +[0,33,331,332,10], +[0,-15472], +[0,-192,-434], +[1,3,334], +[0,335,336,337,5], +[0,-574,-1303,-267,-291,-6137,-6136,-3832,-15471,-15470,-15469,-6262,-15468,-15467,-15466,-15465], +[0,-1034,-28,-8,-6,-1,-196,-6135,-57,-1130,-26,-2152,-35,-86,-6134,-235,-1803,-2,-11,-29,-18,-15464,-47,-94,-289,-234,-90, +-3831,-2742,-972,-2151,-15463,-6133,-15462,-286,-6132,-15461,-15460,-15459,-3830,-1120,-15458,-15457,-19,-6547,-15456, +-6131,-15455,-15454,-1760,-6130], +[0,-1759,-435,-6,-108,-129,-127,-102,-52,-53,-95,-2741], +[1,3,339], +[0,340,341,342,4], +[0,-468], +[0,-1034,-6,-822,-35,-2,-47,-1278,-87], +[0,-1759,-435,-1284,-1034,-129,-127,-52,-53,-6,-108,-102], +[1,3,344], +[0,345,346,347,5], +[0,-267,-2740,-15453], +[0,-1034,-28,-6,-822,-35,-2,-47,-87], +[0,-1759,-435,-1284,-1034,-129,-127,-52,-53,-6,-108,-102,-741], +[1,3,349], +[0,350,351,352,4], +[0,-3829,-2739], +[0,-44,-220,-124,-2785,-4040,-3828,-6129,-794,-2738,-1582], +[0,-683,-15452,-1465,-3827,-905,-6128,-15451,-220], +[1,3,354], +[0,355,356,137,4], +[0,-28,-285,-753,-58,-472,-3826,-1099], +[0,-16,-11,-458,-15450,-6127], +[1,3,358], +[0,359,360,7,4], +[0,-2737,-164,-2736], +[0,-6125,-138,-1758], +[1,3,362], +[0,363,364,138,4], +[0,-36,-276,-16,-15449,-479,-427,-2735,-3825,-577,-879,-538,-472,-1757,-6124,-2734], +[0,-153,-7,-33,-162,-137,-1098,-21,-140,-3824,-1099,-3823,-971,-391,-6127], +[1,3,366], +[0,0,101,7,5], +[1,3,368], +[0,369,370,371,5], +[0,-479], +[0,-6125,-538,-3822,-6121,-2736,-15447], +[0,-292,-45,-73,-15446,-338,-427], +[1,3,373], +[0,374,51,21,4], +[0,-6120,-770], +[1,3,376], +[0,377,378,379,5], +[0,-15445,-36,-495,-1464,-16,-101,-747,-119,-457,-761,-15444,-88,-993,-2194,-15443,-323,-311,-708,-221,-15442,-6119, +-15441,-15440,-6118,-15439,-15438,-15437,-1755,-15436,-15435,-15434,-15433,-15432], +[0,-43,-51,-153,-74,-258,-77,-6,-1,-228,-637,-7,-55,-4,-35,-48,-2,-3821,-5,-15431,-15430,-283,-2733,-970,-15429,-1138, +-15428,-15427,-2732,-3820,-12,-15426,-15425,-15424], +[0,-6117,-6116,-15423,-42,-878,-3819,-2731,-740,-114,-52,-6480,-15422,-31,-100,-15421,-993], +[1,3,381], +[0,0,382,383,4], +[0,-310,-320,-80,-63,-204,-319,-739,-1754,-29,-5,-110,-475,-8,-14,-415,-57,-44,-2], +[0,-24,-73,-1753,-1275,-360,-2,-15420,-15419,-15418,-227,-550,-592], +[1,3,385], +[0,386,387,388,4], +[0,-6115,-6114,-15417,-15416,-15415,-6113,-15414,-6112,-6111,-6110,-6109,-15413,-15412,-15411,-15410,-15409,-15408,-15407, +-15406,-3942,-3818], +[0,-15405,-6108,-15404,-15403,-6107,-6106,-6105,-6104,-15402,-49,-62,-6103,-6102,-3817,-877,-1274,-1,-12,-9,-18,-27,-2, +-6101], +[0,-15401,-4031,-42,-15400], +[1,3,390], +[0,391,0,392,9], +[0,-6100,-15399,-15398,-15397,-1013,-6099,-44], +[0,-6098,-380,-6,-682,-337,-433], +[1,3,394], +[0,395,396,397,6], +[0,-6,-14,-121,-11,-6097,-21,-146,-136,-203,-15396], +[0,-8,-1,-57,-26,-2,-29,-47,-815,-64,-2887,-762], +[0,-2730,-42,-114,-6,-2153,-271], +[1,3,399], +[0,400,401,7,10], +[0,-16,-1019,-15395], +[0,-534,-1,-11,-359,-329,-83,-3822,-1752], +[1,3,403], +[0,404,405,406,5], +[0,-770,-3816,-6120], +[0,-11,-577,-15394,-15393,-2148,-3815], +[0,-292,-1276,-6096], +[1,3,408], +[0,139,51,21,10], +[1,3,410], +[0,411,51,21,11], +[0,-770,-15392], +[1,3,413], +[0,414,415,21,4], +[0,-6095,-2734,-770,-15391,-6094], +[0,-11,-2148,-427], +[1,3,417], +[0,139,101,21,5], +[1,3,419], +[0,420,421,21,10], +[0,-16,-770,-1097,-6093,-2729,-2728], +[0,-753,-11,-2735,-90,-21,-1751,-2729,-2148], +[1,3,423], +[0,140,424,7,8], +[0,-59,-1570,-2727,-112], +[1,3,426], +[0,427,428,7,4], +[0,-16,-3814,-6095,-15390,-770,-6093,-2729,-3813,-3812,-6092,-3811,-15389,-2734,-2728,-15388,-6094,-3810,-6091,-6090, +-15387,-15386,-15385,-15384,-2147,-6089,-15383,-15382,-15381,-2146,-3809,-15380,-6088,-15379,-15378,-2726,-2725,-15377, +-1096,-391,-6087,-15376,-6086,-6085,-2145,-2144,-6084,-3808,-3807,-15375,-15374,-15373,-3806,-15372,-6083,-15371,-3805, +-2724,-3804,-2723,-6082,-3803,-15370,-6081, +-15369,-15368,-15367,-15366,-15365,-15364,-15363], +[0,-11,-577,-2148], +[1,3,430], +[0,431,51,7,4], +[0,-770,-3813,-1273,-3802,-15362,-15361], +[1,3,433], +[0,434,51,435,8], +[0,-974,-770,-3813,-1095,-391], +[0,-15360,-2], +[1,3,437], +[0,438,439,7,4], +[0,-6080,-753,-3801,-1547,-146], +[0,-59,-11,-2726,-391], +[0,0,0,7,5], +[1,3,442], +[0,443,0,7,5], +[0,-159], +[1,3,445], +[0,446,51,7,4], +[0,-36,-479,-427,-3825,-879,-538,-15359], +[1,3,448], +[0,449,450,7,6], +[0,-6121,-2736], +[0,-427,-879,-3822], +[1,3,452], +[0,141,142,143,8], +[1,3,454], +[0,455,456,457,4], +[0,-6074,-402,-236,-1805,-1779], +[0,-56,-1,-12,-84,-10,-76,-25,-67,-131,-97], +[0,-552,-6176,-2721,-738,-46], +[1,3,459], +[0,460,461,7,4], +[0,-1750,-16,-504,-1749,-573,-40,-15346,-164,-477,-15345,-641,-15344,-15343,-15342,-15341,-15340,-15339,-15338,-15337, +-15336,-1462,-15335,-15334,-6073,-15333,-15332,-15331,-15330], +[0,-807,-15329,-138,-137], +[1,3,463], +[0,464,465,466,4], +[0,-15328,-2720,-2938,-2937,-4053,-267,-121], +[0,-50,-11,-216,-21,-136,-49,-62,-203,-80,-63,-296,-295,-737,-22,-19,-94,-834,-6072,-1,-148,-64,-190,-9,-18,-4,-6,-35,-14, +-3797,-226,-120,-2], +[0,-6071,-6,-516,-102,-2719,-127,-15327,-15326,-15325,-1094,-369,-53,-15324,-3796,-968,-6070,-15323], +[1,3,468], +[0,469,0,19,4], +[0,-290,-331,-1897], +[1,3,471], +[0,472,0,473,6], +[0,-3794,-44], +[0,-789,-875,-412,-31,-1272,-966,-192,-6069,-15320,-6068,-129,-967,-290,-876], +[1,3,475], +[0,476,0,19,5], +[0,-290,-331,-356,-448,-621,-1193], +[1,3,478], +[0,479,0,19,5], +[0,-290,-426,-331,-590,-356,-448,-621], +[1,3,481], +[0,482,0,19,4], +[0,-290,-426,-331,-2143,-590,-356,-621], +[1,3,484], +[0,485,0,144,5], +[0,-1360,-1192,-1590,-1036,-1583,-1586,-621,-1193,-1589,-1359,-1593,-1588,-1587,-1591,-1585,-1592,-1037,-3793,-1594,-1584], +[1,3,487], +[0,488,0,144,4], +[0,-426,-1360,-1192,-1590,-1036,-1583,-1586,-621,-1193,-1589,-1359,-1593,-1588,-1587,-1591,-1585,-1592,-1037,-3793,-1594, +-1584], +[1,3,490], +[0,491,0,102,4], +[0,-1360,-1192,-1590,-1036,-1583,-1586,-621,-1193,-1589,-1359,-1593,-1588,-1587,-1591,-1585,-1592,-1037,-6066,-1594,-1584], +[1,3,493], +[0,494,0,102,8], +[0,-3792,-1360,-1192,-1590,-1036,-1583,-1586,-621,-1193,-1589,-6065,-1359,-1593,-1588,-1587,-1591,-1585,-1592,-1037,-1594, +-6064,-1584], +[1,3,496], +[0,497,0,102,8], +[0,-1360,-1192,-1590,-1036,-1583,-1586,-621,-1193,-1589,-1359,-1593,-1588,-1587,-1591,-1585,-1592,-6063,-1037,-1594,-1584], +[1,3,499], +[0,500,0,19,6], +[0,-15319,-290,-515,-426,-331,-590,-1036,-356,-448,-1897,-1037], +[1,3,502], +[0,503,0,19,4], +[0,-290,-426,-331,-590,-1036,-356], +[1,3,505], +[0,506,0,19,8], +[0,-515,-426,-331,-356,-448,-1358], +[1,3,508], +[0,509,0,59,6], +[0,-290,-331,-356], +[1,3,511], +[0,512,0,145,11], +[0,-515,-426,-356,-448,-6061], +[1,3,514], +[0,515,0,19,8], +[0,-290,-331,-356,-1897,-1037], +[1,3,517], +[0,518,0,145,10], +[0,-515,-356], +[1,3,520], +[0,521,0,19,4], +[0,-290,-426,-331,-2718,-2143,-621,-1194,-6060], +[1,3,523], +[0,524,0,19,10], +[0,-290,-426,-331,-590,-356,-448,-1359], +[1,3,526], +[0,527,0,19,5], +[0,-290,-515,-426,-331,-2718,-590,-356,-448,-621,-1897,-1358,-1194], +[1,3,529], +[0,530,0,19,8], +[0,-290,-426,-331,-1192,-590,-356,-448,-1193], +[1,3,532], +[0,533,0,19,11], +[0,-290,-515,-426,-331,-590,-1036,-356,-448,-621,-1358,-1194], +[1,3,535], +[0,536,0,19,4], +[0,-290,-426,-331,-3792,-2143,-590,-356,-448,-621,-1194], +[1,3,538], +[0,539,0,19,4], +[0,-290,-426,-331,-2718,-590,-356,-448,-621,-1358,-1194], +[1,3,541], +[0,542,0,19,4], +[0,-426,-331,-590,-356,-448], +[1,3,544], +[0,545,0,19,6], +[0,-290,-331,-448,-1194], +[1,3,547], +[0,548,0,549,8], +[0,-3794], +[0,-789,-875,-412,-31,-1272,-966,-6,-108,-967,-290,-876], +[1,3,551], +[0,552,0,19,6], +[0,-290,-515,-426,-331,-590,-356,-448,-1358,-1194], +[1,3,554], +[0,555,0,19,11], +[0,-515,-331,-356,-448], +[1,3,557], +[0,558,0,59,11], +[0,-515,-15318,-2142,-15317,-6059,-331,-590,-356,-448,-3791], +[1,3,560], +[0,561,0,59,11], +[0,-331,-356], +[1,3,563], +[0,564,0,59,4], +[0,-515,-426], +[1,3,566], +[0,567,0,568,4], +[0,-3794,-468], +[0,-789,-875,-412,-31,-1272,-966,-74,-2717,-15316,-15315,-967,-290,-876], +[1,3,570], +[0,571,0,59,4], +[0,-515,-426,-331,-2143,-590,-356,-448,-621], +[1,3,573], +[0,574,575,146,5], +[0,-15314,-6058,-6057,-15313,-3790,-1093,-96], +[0,-6056,-6055,-3830,-5,-413,-40,-3832], +[1,3,577], +[0,578,0,147,5], +[0,-2943,-11,-2725,-21,-6054,-6053,-15312,-168,-15311,-238,-119,-135,-58,-403,-1746,-1862,-264,-229,-40,-28,-250,-705, +-1156,-276,-23,-1522,-6052,-1092,-228,-88,-6051,-2141,-1458,-164,-2716,-440,-16,-748,-6076,-15310,-796,-123,-15309], +[1,3,580], +[0,581,0,582,4], +[0,-15308,-529], +[0,-15307,-3788,-52,-422,-6050], +[0,25,584], +1732406400000, +[0,25,586], +1733011200000, +[1,3,588], +[0,589,590,148,9], +[0,-705], +[0,-50,-11,-21,-6049,-2715,-514,-790,-203,-80,-63,-232,-965,-160,-476,-1745,-2714,-1182,-26,-1,-1335,-763,-10,-150,-6048, +-55,-206,-3787,-705,-15305,-2869,-199,-249,-78,-1527,-139,-3786,-1526,-212,-400,-2140,-755,-1140,-288,-65,-38,-696, +-15304,-7,-14,-2139,-1457,-2745,-272,-179,-3785,-175,-6047], +[1,3,592], +[0,0,0,593,4], +[0,-24,-73], +[1,3,595], +[0,0,0,596,6], +[0,-24,-2138], +[1,3,598], +[0,0,0,599,4], +[0,-24,-6045,-73], +[1,3,601], +[0,602,0,603,4], +[0,-2940,-560], +[0,-24,-651,-2713,-549,-38,-218,-15303,-1456], +[1,3,605], +[0,60,0,606,9], +[0,-24,-1455,-6044,-38,-218,-6043,-1091,-202,-1454,-2712], +[1,3,608], +[0,0,0,609,4], +[0,-24,-560,-15302], +[1,3,611], +[0,612,613,149,5], +[0,-15301,-15300,-15299,-6079,-15298,-15297,-15296,-15295,-15294,-15293,-15292,-6042,-15291,-20,-661,-58,-36,-2137,-533, +-28,-2711,-817,-1837,-1003,-6041,-1319,-3832,-1464,-261,-72,-1512,-361,-1453,-16,-2136,-461,-210,-6040,-259,-1271], +[0,-15290,-15289,-487,-283,-48,-478,-662,-109,-162,-15288,-257,-185,-15287,-15286,-3830,-2710,-69,-6039,-6038,-5,-2709, +-137,-1270,-2135,-15285,-736,-22,-19,-13,-2708,-316,-6037,-1562,-1,-10,-115,-150,-41,-40,-3784,-3,-524,-15,-4,-15284, +-395,-27,-186,-3783,-156,-33,-81,-124,-2], +[1,3,615], +[0,616,617,618,4], +[0,-925,-20,-2248,-661,-40,-57], +[0,-49,-62,-185,-2156,-29,-3782,-15283,-6035,-22,-19,-1190,-1029,-573,-1,-12,-25,-9,-8,-6034,-701,-568,-248,-4,-15282, +-6033,-2], +[0,-15281,-42], +[0,25,620], +1730419200000, +[0,0,0,7,4], +[0,0,0,7,6], +[0,0,0,7,11], +[1,3,625], +[0,626,627,104,8], +[0,-15280,-15279,-6032,-15278,-20,-238,-24,-3852,-6031,-486,-101,-23,-221,-1463,-3781,-2707,-996,-6030,-2706,-1794,-747, +-598,-2705], +[0,-15277,-15276,-15275,-15274,-2134,-411,-142,-874,-2704,-5,-6029,-103,-964,-160,-89,-6028,-379,-3780,-2703,-65,-38,-805, +-77,-3779,-2,-30], +[1,3,629], +[0,630,631,632,9], +[0,-44,-284,-6026,-6025,-6024,-6023,-3778,-15272,-15271], +[0,-171,-2133,-1,-30,-4,-26,-2,-5,-6022,-15270,-103,-6021,-2702,-6020,-15269], +[0,-3777,-99,-410,-6019,-15268], +[1,3,634], +[0,75,635,636,4], +[0,-3,-4], +[0,-635,-1485,-166,-15267,-124,-390,-42,-3776], +[1,3,638], +[0,639,640,104,5], +[0,-6018,-1268,-15266,-15265,-15264,-15263,-6566,-15262,-3775,-458,-3774,-15261,-193,-60,-1033,-15260,-20,-215,-1857,-28, +-379,-2872,-2221,-101,-1147,-344,-93,-1511,-272,-600,-747,-886,-2701,-15259,-1102,-96], +[0,-15258,-3773,-6017,-411,-142,-1089,-5,-1744,-3772,-413,-22,-19,-94,-89,-1,-762,-9,-18,-23,-57,-33,-2], +[1,3,642], +[0,643,644,104,6], +[0,-6032,-20,-6031,-486,-101,-23,-221,-1463,-3781,-15257,-2707,-996,-6030,-1794,-747], +[0,-11,-391,-21,-2134,-29,-411,-142,-874,-2704,-15256,-5,-6029,-15255,-15254,-15253,-160,-94,-89,-6028,-1,-762,-379,-8, +-2703,-38,-805,-4,-342,-57,-2], +[0,25,646], +1734825600000, +[1,3,648], +[0,649,650,651,4], +[0,-1755,-252,-2270,-15252,-168,-20,-1877,-384,-15251,-920,-1857,-1014,-15250,-15249,-379,-276,-221,-2733,-998,-1463, +-6016,-6015,-1511,-397,-77,-2700,-1743,-130,-799,-146,-6014,-220,-123,-2699], +[0,-49,-62,-296,-295,-6013,-735,-2698,-3771,-185,-874,-2704,-5,-788,-15248,-15247,-680,-15246,-22,-19,-43,-6012,-40,-9, +-157,-602,-120,-2], +[0,-434,-46,-105,-52,-15245,-1267,-15244], +[1,3,653], +[0,654,655,656,10], +[0,-2697,-3770,-2696,-2695,-309,-15243,-252,-6011,-160,-305,-144,-1343,-1,-12,-25,-64,-190,-55,-9,-1452,-377,-38,-492, +-901,-77,-462,-154,-179,-558,-2722,-6010,-392,-17,-92,-2772,-519], +[0,-15242,-18], +[0,-53,-432,-3769,-270,-202,-358,-15241], +[1,3,658], +[0,659,660,661,9], +[0,-874,-13,-20,-1828,-221,-324,-899], +[0,-3768,-109,-3767,-5,-15240,-9,-18,-4,-2,-30], +[0,-471,-390,-42,-99,-2,-6009,-6008], +[1,3,663], +[0,664,665,105,5], +[0,-1097,-90,-3766,-15239,-2694,-1266,-472,-424,-3765,-130,-1742], +[0,-11,-15238], +[1,3,667], +[0,668,669,105,4], +[0,-2939,-2693,-2694,-6007,-6006], +[0,-3764,-2], +[1,3,671], +[0,672,673,7,5], +[0,-90,-2939,-2692,-2694,-15237,-6006], +[0,-3764,-1088,-6,-2], +[0,0,0,7,8], +[1,3,676], +[0,677,678,38,5], +[0,-1019], +[0,-43,-811,-3,-15236,-1,-608,-7,-14,-16,-2132,-4,-793,-2,-343,-359,-329,-1451,-415,-1450,-1298,-19,-15235], +[1,3,680], +[0,0,0,681,5], +[0,-45,-368,-1], +[1,3,683], +[0,684,685,150,4], +[0,-15234,-267,-6005,-4002,-1018,-6004,-1092,-2691,-228,-2203,-6003,-697,-2767,-1505,-440,-121,-6002,-747,-6001,-3763, +-6000], +[0,-2690,-5999,-15233,-109,-5998,-1279,-5997,-29,-5996,-2689,-3762,-2131,-5,-963,-972,-47,-87,-2688,-5995,-517,-2687,-413, +-22,-19,-1741,-1186,-404,-535,-159,-56,-144,-502,-445,-1772,-1264,-1,-10,-64,-190,-1853,-346,-9,-8,-101,-2686,-5994, +-1317,-807,-4,-441,-694,-6,-35,-2191,-7,-272,-321,-154,-888,-57,-33,-44,-2, +-5993,-195,-17,-92,-170,-1780], +[1,3,687], +[0,688,689,151,4], +[0,-2684], +[0,-136,-122,-47,-87,-537,-6,-35,-3760,-353], +[1,3,691], +[0,0,0,692,4], +[0,-3866,-1086,-5990,-5989,-5988,-15230,-24,-77,-184,-111,-5987,-2127], +[1,3,694], +[0,0,0,695,9], +[0,-3866,-1086,-5990,-5989,-15229,-15228,-24,-77,-184,-111,-5987,-2127], +[1,3,697], +[0,152,0,153,8], +[1,3,699], +[0,152,0,153,4], +[1,3,701], +[0,0,702,703,6], +[0,-11,-962,-21,-136,-140,-49,-62,-48,-2938,-15226,-2937,-296,-2126,-295,-330,-155,-122,-29,-47,-87,-305,-1183,-1345,-26, +-1,-12,-10,-145,-148,-25,-64,-190,-1549,-150,-55,-9,-8,-176,-4,-441,-6,-35,-7,-120,-57,-33,-171,-2,-83], +[0,-3759,-3989,-6,-45,-256,-961], +[1,3,705], +[0,106,154,706,9], +[0,-2,-52,-209,-46,-808], +[1,3,708], +[0,709,710,711,8], +[0,-15225,-4052,-471,-5985], +[0,-15224,-5,-22,-19,-26,-471,-15223,-1,-266,-1020,-12,-10,-148,-25,-4,-211,-33,-124,-2], +[0,-2,-52,-471,-209,-46], +[1,3,713], +[0,714,154,715,9], +[0,-4052,-15222,-1739,-1449,-168,-813,-602], +[0,-2,-52,-41,-808,-209,-46], +[1,3,717], +[0,718,719,720,6], +[0,-15221,-15220,-5984,-5983], +[0,-5982], +[0,-380,-5981,-42,-100,-5980], +[1,3,722], +[0,723,724,725,5], +[0,-3758,-15219,-5983,-5984], +[0,-5979,-5982], +[0,-1867,-380,-5981,-42,-107,-100,-5980], +[1,3,727], +[0,728,0,729,4], +[0,-11,-21,-15218,-15217,-5978,-160,-98,-5977,-159,-26,-144,-1343,-277,-5976,-377,-38,-492,-3757,-77,-15216,-462,-557, +-438,-17,-92], +[0,-17,-1085,-2682,-53], +[1,3,731], +[0,732,733,155,6], +[0,-3756,-15215,-15214,-15213,-15212,-15211,-15210,-15209,-5975,-15208,-15207,-15206,-15205,-15204,-15203,-15202,-5974, +-15201], +[0,-3755,-5973,-15200,-3754,-15199,-5972,-5,-250,-756,-2], +[1,24,735], +[0,25,736], +1724872768784, +[1,3,738], +[0,739,740,741,5], +[0,-2125,-642], +[0,-49,-62,-15198,-15197,-296,-295,-960,-1,-9,-569,-15196,-18,-4,-120,-30], +[0,-166,-4,-968,-42,-45], +[1,3,743], +[0,744,745,746,4], +[0,-5971], +[0,-320,-5970,-1762,-330,-155,-122,-317,-5,-47,-15195,-15194,-15193,-5969,-537,-193,-3753,-837,-5968,-15192,-3752,-2681, +-5967,-26,-3751,-5966,-5965,-5964,-15191,-756,-79,-3847,-701,-15190,-15189,-15188,-65,-6,-35,-3911,-602,-2124,-3750,-2, +-2158,-3749,-104,-3748,-30,-1271,-258], +[0,-5963,-409,-15187,-15186,-3911,-1271,-756,-2124,-2,-258,-3749,-2681,-5964,-15185,-5962,-5967,-3750,-193,-5961,-5968, +-15184,-15183,-5966,-15182], +[1,3,748], +[0,749,38,750,4], +[0,-284], +[0,-15181,-15180,-15179,-15178,-1448,-5960,-99], +[1,3,752], +[0,753,754,755,5], +[0,-15177,-15176,-15175,-2684,-468], +[0,-7,-74,-882], +[0,-74,-873,-5959,-53,-52,-102,-3835,-129,-127,-684,-3834], +[1,3,757], +[0,758,759,760,4], +[0,-3766,-6565,-1174,-468], +[0,-1738,-7,-74,-882], +[0,-74,-873,-5959,-53,-52,-102,-129,-127], +[1,3,762], +[0,763,764,63,4], +[0,-3747,-3844,-1767,-15174,-15173,-2680,-891], +[0,-5958,-3746,-5,-2], +[1,3,766], +[0,767,768,769,10], +[0,-44,-1838,-5957], +[0,-8,-77,-20,-118,-801,-15172,-1,-14,-40,-496,-4,-179,-29,-5,-15171,-2714,-15170,-5956,-1489,-357,-15169,-15168,-6182, +-2118,-15167,-2117,-2677,-12,-19,-15166,-63,-15165,-15164,-22], +[0,-1529,-52,-15163,-95,-300,-2116,-3743,-1026,-471,-3742,-2676], +[1,3,771], +[0,0,156,157,4], +[1,3,773], +[0,774,0,775,4], +[0,-2675], +[0,-2,-353,-15,-75,-787], +[1,3,777], +[0,778,779,780,4], +[0,-2751,-15162,-957,-5955,-267,-15161], +[0,-1733,-252,-155,-122,-317,-103,-1,-12,-5954,-79,-6,-35,-2,-104,-30], +[0,-129,-127,-5953,-435,-52,-53,-15160,-15159,-108,-6,-102,-5952], +[1,3,782], +[0,783,784,107,4], +[0,-15158,-5951,-5950,-3741,-1732,-715,-5,-929,-20,-504,-5949,-325,-15157,-3740,-5948,-5947,-5946,-1832,-15156,-15155, +-15154,-15153,-912,-2674,-5945,-362,-695,-285], +[0,-15152,-2115,-872,-634], +[1,3,786], +[0,787,0,7,4], +[0,-5951,-5942,-5941,-5940,-5,-413,-20], +[1,3,789], +[0,790,791,792,6], +[0,-633,-193,-837,-23], +[0,-1357,-15148,-22,-19,-51,-15147,-1,-12,-10,-25,-79,-15,-4,-322,-5939,-7,-14,-895,-301,-640,-146,-33,-44,-124,-2], +[0,-546,-871,-106,-1261,-53,-114,-336,-409,-1260,-814,-318,-1259,-679,-1258], +[1,3,794], +[0,795,796,797,5], +[0,-15146,-574,-23], +[0,-1088,-1894,-6558,-6557,-6556,-80,-231,-63,-232,-1279,-29,-47,-87,-22,-19,-1741,-535,-445,-1,-12,-10,-25,-64,-8,-176, +-79,-15,-4,-6,-35,-7,-14,-895,-870,-5938,-301,-640,-890,-57,-211,-44,-124,-2,-17,-92,-170,-1356,-4048], +[0,-1761,-2112,-546,-871,-106,-1261,-53,-114,-336,-1260,-814,-318,-1259,-679,-1258], +[1,3,799], +[0,34,800,801,6], +[0,-513,-1279,-29,-3739,-47,-3837,-22,-19,-1741,-26,-445,-1,-12,-10,-25,-64,-8,-79,-15,-4,-6,-35,-898,-322,-5939,-7,-14, +-895,-301,-640,-57,-44,-124,-2,-1356], +[0,-6,-546,-871,-106,-1261,-53,-114,-336,-1260,-814,-318,-1259,-679,-1258], +[1,3,803], +[0,804,805,7,4], +[0,-2720,-15145,-15144,-15143,-15142,-15141,-15140,-15139,-15138,-15137,-15136,-15135,-15134,-15133,-15132,-15131,-15130, +-15129,-15128,-15127], +[0,-15126,-29,-8,-7,-2], +[1,3,807], +[0,808,809,810,9], +[0,-767,-291,-20,-315,-5937,-28,-5936,-101,-15125,-2852,-93,-72,-3738,-7,-15124,-15123,-15122,-15121,-2111,-71,-596,-554, +-883,-15120], +[0,-182,-5935,-1032,-268,-56,-1872,-1148,-3,-15,-5934,-488,-27,-97,-70], +[0,-77,-432,-24,-678,-42,-968,-1445], +[1,3,812], +[0,0,0,813,10], +[0,-15119,-15118,-15117], +[1,3,815], +[0,816,817,158,5], +[0,-1767], +[0,-2277,-5933,-1257,-1829], +[1,3,819], +[0,820,28,821,6], +[0,-2751,-304,-6342,-15116,-2768,-210], +[0,-127,-435,-53,-369,-241,-399,-6,-102,-867], +[1,3,823], +[0,108,28,824,8], +[0,-3736,-127,-956,-53,-369,-241,-399,-2671,-6,-588,-102,-867], +[0,0,0,826,5], +[0,-53,-682,-369,-241,-399,-6,-3735,-1255], +[1,3,828], +[0,0,28,829,6], +[0,-127,-1735,-53,-369,-1444,-241,-399,-6,-102,-867], +[1,3,831], +[0,832,28,833,6], +[0,-3865,-691], +[0,-127,-53,-369,-241,-399,-1731,-15115,-15114,-6,-102,-867], +[1,3,835], +[0,836,0,837,4], +[0,-1730,-6560], +[0,-6,-241,-399,-102,-127,-867,-369,-53,-354,-2107,-389,-5932], +[1,3,839], +[0,840,0,841,10], +[0,-304,-764], +[0,-6,-241,-399,-102,-369,-53,-1865,-1265,-3734], +[1,3,843], +[0,0,0,844,5], +[0,-6,-241,-399,-369,-53,-3735,-682,-1255], +[1,3,846], +[0,847,0,160,4], +[0,-304,-439,-3923,-121,-90,-15113,-15112,-15111,-15110,-691,-1006,-1468], +[1,3,849], +[0,39,0,850,4], +[0,-6,-108,-973,-1136,-961], +[1,3,852], +[0,0,853,161,4], +[0,-8,-123,-9,-1,-23,-159,-33,-124,-4,-110,-50,-86,-2,-11,-29,-680,-65,-142,-366,-49,-739,-21,-1170,-342,-12,-25,-794, +-140,-478,-3733,-19,-62,-22,-216,-306,-1038], +[1,3,855], +[0,856,0,857,5], +[0,-5930], +[0,-866,-100,-2106,-6,-274], +[1,3,859], +[0,860,861,862,10], +[0,-2276,-1893,-207,-23,-93,-128,-16,-130,-2,-15107,-5929,-15106,-15105,-15104], +[0,-2669,-142,-1098,-137,-1,-15103,-15102], +[0,-2,-1087,-3732,-15101,-3731,-547,-42,-3730,-3729,-6009,-14,-1084,-593,-5928,-15100], +[1,3,864], +[0,0,865,162,4], +[0,-1,-2669,-3728], +[1,3,867], +[0,868,869,162,4], +[0,-193,-5927,-128,-1893], +[0,-1,-15099,-1098,-2669,-3728], +[1,3,871], +[0,0,872,873,5], +[0,-15098,-15097,-15096,-2668,-5], +[0,-3727,-3726,-3725,-3724,-3723,-3722,-15095,-15094], +[1,3,875], +[0,876,877,878,8], +[0,-6559], +[0,-4047,-2668,-210], +[0,-3727,-3726,-3725,-3724,-3723,-3722,-15093,-5926,-1087,-1253,-15092,-15091], +[1,3,880], +[0,0,881,882,4], +[0,-15090,-4047,-2668,-5,-15089], +[0,-3727,-3726,-3725,-3724,-3723,-3722,-2105,-132], +[1,3,884], +[0,0,0,885,5], +[0,-15088,-53,-2667,-271], +[1,3,887], +[0,888,889,890,4], +[0,-5925,-15087,-15086,-5924,-5923,-2666], +[0,-49,-62,-5922,-5921,-357,-1443,-257,-5920,-5919,-5,-955,-3721,-954,-454,-201,-168,-503,-383,-26,-298,-15085,-41,-2665, +-15084,-1543,-402,-1324,-79,-188,-970,-800,-1295,-3720,-688,-125,-371,-2,-284,-30,-5918,-2755,-15083,-17,-5917,-205], +[0,-113,-15082,-105,-401,-2170,-743,-865,-15081,-307,-1729,-61], +[1,3,892], +[0,39,0,893,4], +[0,-6,-108,-953,-1136,-973,-961], +[1,3,895], +[0,896,0,897,6], +[0,-304,-1769,-1474,-121,-4046,-90], +[0,-6,-108,-953,-1136,-973,-1144], +[1,3,899], +[0,900,0,901,4], +[0,-304,-764,-439,-1769,-1474,-121,-4046,-90,-790,-691,-15080,-1468], +[0,-6,-108,-953,-1136,-973], +[1,3,903], +[0,904,0,905,9], +[0,-304,-764,-1769,-1474,-121,-90,-6274,-6251], +[0,-6,-108,-953,-5916], +[1,3,907], +[0,908,0,909,4], +[0,-90,-1474,-1468,-304,-121,-691,-15079], +[0,-6,-108,-953,-15078,-1136,-973,-5915,-15077,-5914], +[1,3,911], +[0,912,913,914,5], +[0,-2664,-15076,-3719,-2104,-5913,-5912,-677,-15075,-15074,-267,-224,-15073,-15072,-2103,-28,-708,-15071,-15070,-3718, +-15069,-5911,-864,-521,-15068,-15067,-863,-15066,-210,-133,-340,-17,-5910,-1475], +[0,-5909,-15065,-15064,-408,-47,-517,-160,-289,-241,-561,-6,-35,-374,-557,-171,-2,-15063,-15062,-15061], +[0,-2106,-42,-399,-100], +[1,3,916], +[0,917,0,109,9], +[0,-5908,-5907,-2749,-15060], +[1,3,919], +[0,920,0,109,11], +[0,-44,-6555], +[1,3,922], +[0,923,0,109,5], +[0,-374,-5906,-2187,-750,-486,-5905,-3717,-760,-340,-15056,-15055,-15054,-20,-863,-133,-3894], +[1,3,925], +[0,926,927,928,5], +[0,-15053,-2238,-244,-732], +[0,-13,-2909,-3,-1,-3716,-7,-3715,-33,-499,-4,-2,-109,-5,-3714,-2256,-265,-10,-12,-25,-19,-15052,-22,-6554,-15051,-15050], +[0,-2663,-15049,-3715,-61], +[1,3,930], +[0,931,932,7,5], +[0,-5904,-5903,-3713,-4045,-5902,-5901,-4044,-1442,-15048,-3712,-1355,-5900,-2102,-5899,-818,-15047,-442,-93,-466,-5898, +-994,-3711,-1814,-1309,-5897,-989,-15046,-15045,-15044,-16,-1491,-5896,-3710], +[0,-731,-3709,-730,-110,-15043,-198,-85,-886,-15042], +[1,3,934], +[0,935,29,936,5], +[0,-5901,-1442,-28,-93], +[0,-158,-1813,-2662,-37,-3708,-15041], +[1,3,938], +[0,0,29,939,10], +[0,-158,-37,-610], +[1,3,941], +[0,942,943,7,6], +[0,-4044,-1442,-3707,-610,-989,-219], +[0,-731,-730,-5895,-85], +[1,3,945], +[0,946,947,163,5], +[0,-3706,-5894,-3705,-221,-1153,-5893,-5892,-5891,-5890,-5889,-5888,-2210,-5887,-1794,-486,-5886,-5885,-1827,-5884,-1138, +-5883,-5882,-5881,-3799,-5880,-5879], +[0,-28,-3,-238,-97,-5878,-59,-5877,-134], +[1,24,949], +[0,25,950], +1734998400000, +[1,3,952], +[0,953,0,64,4], +[0,-714], +[1,3,955], +[0,956,0,64,10], +[0,-1313,-44], +[1,3,958], +[0,959,0,64,4], +[0,-4042], +[1,3,961], +[0,962,963,64,5], +[0,-2661,-351,-44,-16,-518,-93,-573], +[0,-8,-1313], +[1,3,965], +[0,966,40,967,4], +[0,-44,-1035,-714,-164,-311,-795], +[0,-1083,-15038,-1252,-784,-2099,-1441], +[1,3,969], +[0,970,40,164,4], +[0,-44,-1035,-16,-714,-2], +[1,3,972], +[0,973,0,974,9], +[0,-44,-1035,-4043,-714], +[0,-1083,-1251,-15036,-1725,-1724,-784,-1441], +[1,3,976], +[0,977,40,978,11], +[0,-20,-44,-469,-16,-1565,-2737,-323,-714,-164,-311,-11,-1868,-649,-2200,-4042,-90,-2661,-21,-146,-1266,-15035,-140,-173, +-622,-1096,-15034], +[0,-1083,-1252,-1251,-15033,-15032,-784,-2099,-1441], +[1,3,980], +[0,981,0,165,4], +[0,-44,-1035,-4043,-714,-2274,-5875], +[1,3,983], +[0,984,40,165,8], +[0,-44,-1035,-6276,-15031,-714,-15030,-2274,-2660], +[1,3,986], +[0,987,40,64,9], +[0,-1313,-20,-44,-16,-573,-323,-714,-518,-2661], +[1,3,989], +[0,990,991,76,4], +[0,-6553,-5874,-5873,-15029,-36,-16], +[0,-3704,-109,-69,-5,-137,-13,-6509,-404,-1,-1337,-2235,-3703,-206,-3,-27,-33,-2], +[1,3,993], +[0,994,995,76,5], +[0,-5874,-5873,-36,-206,-914,-44], +[0,-109,-5872,-142,-69,-5,-2659,-5871,-13,-404,-1,-1337,-2235,-3703,-23,-3,-180,-33,-2], +[1,3,997], +[0,998,999,1000,4], +[0,-929,-1580,-5870,-2900,-36,-351,-1846,-817,-914,-2212,-93,-16,-394,-461,-311,-2754,-978,-880], +[0,-62,-487,-2935,-3704,-2097,-2658,-739,-109,-732,-5869,-162,-2657,-5872,-69,-5,-2656,-269,-2655,-15028,-5871,-110,-13, +-244,-1179,-26,-1,-1337,-12,-9,-18,-3702,-3,-15,-4,-395,-27,-33,-81,-2], +[0,-1723,-37,-308,-1722,-73,-587,-1250], +[1,3,1002], +[0,1003,1004,1005,6], +[0,-2273], +[0,-62,-487,-2097,-2658,-109,-69,-5,-13,-1179,-1,-1337,-12,-9,-18,-3,-1723,-4,-395,-33,-2], +[0,-15027], +[1,3,1007], +[0,1008,1009,1010,4], +[0,-3775,-15026,-15025,-15024], +[0,-15023,-15022,-15021,-15020,-15019,-5,-103,-89,-3991,-28,-198,-4,-15018,-2,-284,-30], +[0,-5868,-571,-410,-15017], +[1,3,1012], +[0,1013,0,65,4], +[0,-15016,-15015,-15014,-15013,-15012,-15011,-15010,-15009,-15008,-15007,-15006,-15005,-15004,-15003,-15002,-15001,-15000, +-14999,-14998,-14997,-14996,-14995,-14994,-14993,-14992,-14991,-14990,-14989,-14988,-14987,-14986,-14985,-14984,-14983, +-14982,-14981,-14980,-14979,-14978,-14977,-14976,-14975,-14974,-14973,-14972,-14971,-14970,-14969,-14968,-14967,-14966, +-14965,-14964,-14963,-14962,-14961,-14960,-14959,-14958,-14957,-14956,-14955,-14954, +-14953,-14952,-14951,-14950,-14949,-14948,-14947,-14946,-14945,-14944,-14943,-14942,-14941,-14940,-14939,-14938,-14937, +-14936,-14935,-14934,-14933,-14932,-14931,-14930,-14929,-14928,-14927,-14926,-14925,-14924,-14923,-14922,-14921,-14920, +-14919,-14918,-14917,-14916,-14915,-14914,-14913,-14912,-14911,-14910,-14909,-14908,-14907,-14906,-14905,-14904,-14903, +-14902,-14901,-14900,-14899,-14898,-14897,-14896,-14895,-14894,-14893,-14892,-14891,-14890, +-14889,-14888,-14887,-14886,-14885,-14884,-14883,-14882,-14881,-14880,-14879,-14878,-14877,-14876,-14875,-14874,-14873, +-14872,-14871,-14870,-14869,-14868,-14867,-14866,-14865,-14864,-14863,-14862,-14861,-14860,-14859,-14858,-14857,-14856, +-14855,-14854,-14853,-14852,-14851,-14850,-14849,-14848,-14847,-14846,-14845,-14844,-14843,-14842,-14841,-14840,-14839, +-14838,-14837,-14836,-14835,-14834,-14833,-14832,-14831,-14830,-14829,-14828,-14827,-14826, +-14825,-14824,-14823,-14822,-14821,-14820,-14819,-14818], +[1,3,1015], +[0,1016,1017,65,5], +[0,-14813,-14812,-224], +[0,-2654,-171], +[1,3,1019], +[0,0,1020,65,8], +[0,-50,-11,-21,-229,-32,-1844,-1009,-654,-1325,-14811,-14810,-7,-179,-558,-598], +[1,3,1022], +[0,0,1023,65,8], +[0,-50,-11,-21,-32,-1844,-1009,-1325,-7,-179,-558], +[1,3,1025], +[0,0,0,1026,4], +[0,-2653,-453,-512,-111,-46,-352], +[1,3,1028], +[0,1029,0,1030,4], +[0,-3701,-14809,-4041,-5866,-14808,-14807,-14806,-14805], +[0,-2653,-453,-512,-111,-46,-2096,-113], +[1,3,1032], +[0,1033,0,1034,5], +[0,-14804,-261,-14803,-5866,-4041,-14802,-5865,-6552,-6551,-14801], +[0,-2653,-453,-512,-111,-46,-1249], +[1,3,1036], +[0,1037,0,1038,4], +[0,-261,-14800,-5865], +[0,-2653,-453,-512,-111,-46,-1249,-802,-5864], +[1,3,1040], +[0,1041,1042,1043,4], +[0,-14799,-201,-168,-20,-41,-380,-1013,-614,-759,-1002,-23,-642,-5863,-434,-2652], +[0,-50,-11,-21,-14798,-109,-732,-257,-3700,-142,-69,-3699,-5,-5862,-269,-1270,-5861,-22,-19,-13,-244,-3698,-660,-1,-191, +-1020,-12,-251,-3697,-10,-265,-3,-198,-15,-4,-180,-7,-27,-186,-146,-153,-2], +[0,-14797,-14796,-45,-14795,-61,-14794], +[0,0,0,7,10], +[1,3,1046], +[0,1047,0,1048,6], +[0,-563], +[0,-1255,-1721,-6,-74,-220,-952,-2,-45,-53,-46,-918,-102,-1329,-434], +[1,3,1050], +[0,1051,1052,7,4], +[0,-14793,-14792,-14791,-14790,-14789,-14788,-14787,-14786,-14785,-14784,-14783], +[0,-109,-69,-13,-144,-1021,-78,-139,-212,-1145,-189,-418,-3,-7,-6149,-154,-124,-2,-17], +[1,3,1054], +[0,0,1055,1056,4], +[0,-357,-861,-63,-204,-330,-155,-586,-5,-14782,-382,-1,-14781,-3696,-5860,-3695,-55,-79,-38,-696,-4,-5859,-3694,-373, +-1720,-1719,-14,-415,-301,-393,-33,-44,-153,-124,-14780,-794,-14779,-5858,-14778,-14777,-14776,-2,-14775,-793,-14774], +[0,-951,-1248,-14773,-5857,-14772,-24,-435,-2667,-14771,-14770,-42,-1718,-14769,-31,-14768,-5856,-1717,-45,-14767,-14766, +-1082,-14765,-2095,-2651,-2650,-2,-5855,-746,-14764,-6,-682], +[1,3,1058], +[0,1059,1060,7,4], +[0,-5854], +[0,-14763,-14762,-14761,-3693,-94,-2649,-151,-14760,-763,-40,-3692,-32,-615,-530,-1161,-1007,-3972,-14759,-14758,-1132, +-607,-14757,-14756,-71,-2,-14755], +[1,3,1062], +[0,1063,1064,1065,8], +[0,-193,-1560,-156,-14754,-28,-77,-60,-2648,-1716,-96,-1,-7,-16,-175,-551,-41,-5853,-5852,-833,-119,-1340,-200,-4,-3899, +-1565,-14753,-14752,-59,-5851,-1840,-2844,-188,-11,-1811,-14751,-479,-14750,-427,-713,-799,-14749,-577,-5850,-1799,-596, +-879,-14748,-21,-5849,-14747,-136,-14746,-181,-342,-161,-5848,-2865,-2647,-974,-140,-14745,-14744,-5847, +-1273,-14743,-2147,-14742,-3803], +[0,-39,-14741,-146], +[0,-14740,-593,-37,-52,-184,-14739,-95,-2094,-46,-3691,-5846,-14738,-2149,-2646,-5845,-1277], +[1,3,1067], +[0,0,1068,1069,9], +[0,-1,-2720,-5844,-14737,-1247,-5843,-5842,-2244,-230,-14736,-40,-1838,-14735,-311,-14734], +[0,-14733,-52,-14732,-961,-14731], +[1,3,1071], +[0,1072,1073,1074,9], +[0,-464,-3948,-14730,-14729,-1528], +[0,-9,-6,-1109,-1,-14,-502,-17,-4,-14728,-35,-746,-2,-29,-5,-47,-5841,-14727,-3907,-14726,-14725,-49,-950,-87,-559,-14724, +-415,-14723,-1005,-64,-266,-10,-226,-14722,-1246,-1081,-14721,-122,-12,-148,-25,-80,-2645,-1440,-1118,-319,-2093,-155, +-19,-190,-14720,-5840,-14719,-63,-1715,-317,-2644,-6295,-62,-1020,-5839,-22,-3797,-14718, +-2724], +[0,-6,-1109,-14717,-14716,-14715,-14714,-14713,-5838,-53], +[1,3,1076], +[0,1077,1078,1079,5], +[0,-1762,-5971,-1004,-322,-6334,-2808], +[0,-310,-11,-1097,-478,-14712,-1439,-5837,-330,-122,-5836,-317,-729,-5835,-3774,-14711,-5,-14710,-47,-87,-413,-22,-19, +-201,-89,-5834,-1,-12,-1336,-500,-10,-148,-25,-64,-190,-40,-704,-79,-1147,-810,-188,-4,-3916,-6,-35,-7,-321,-44,-171, +-153,-2,-2158,-3748,-30,-96], +[0,-322,-6,-5833,-1094,-3690,-2643,-1004,-529,-5832], +[1,3,1081], +[0,1082,1083,1084,4], +[0,-728,-14709,-824,-1245,-2642,-297,-323], +[0,-231,-63,-2092,-5831,-14,-130,-146,-2], +[0,-14,-107,-158,-370,-860,-407], +[1,3,1086], +[0,1087,1088,1089,10], +[0,-728,-1098,-326,-5830,-128], +[0,-11,-1095,-203,-80,-231,-1554,-14,-130,-5829], +[0,-14,-107,-430,-158,-370], +[1,3,1091], +[0,1092,1093,1094,4], +[0,-925,-156,-383,-104,-20,-206,-72,-1123,-89,-41,-14708,-1533,-747,-119,-14707,-14706,-14705,-14704,-649,-14703,-14702, +-14701,-14700,-1893,-2641,-14699,-14698,-537,-14697,-2276,-478,-5929], +[0,-5828,-123,-6,-1,-7,-5827,-30,-4,-35,-736,-2,-1443,-5,-680,-18,-47,-413,-343,-3689,-257,-87,-120,-888,-14696,-64,-12, +-148,-25,-19,-190,-900,-14695,-22,-859], +[0,-5827,-3731,-733,-1087,-14694,-547,-42], +[1,3,1096], +[0,1097,1098,1099,5], +[0,-6175,-5826,-1714,-1849,-486,-14693,-646,-74,-14692,-14691,-14690,-14689,-14688,-14687,-5825,-14686,-5824,-14685, +-14684,-14683,-14682,-14681,-14680,-14679], +[0,-1244,-357,-3688,-949,-2732,-858,-915,-79,-6,-14678,-557,-104,-5823,-14677,-30,-3687,-3686,-14676,-14675], +[0,-129,-42,-681,-1243,-1082,-545,-74,-873], +[1,3,1101], +[0,1102,1103,1104,4], +[0,-3685,-486,-5825,-5824,-3686], +[0,-14674,-14673,-14672,-1164,-104,-30,-259,-6550,-3687], +[0,-99,-42,-1164,-681,-545], +[1,3,1106], +[0,1107,1108,1109,4], +[0,-5822,-5821,-5820,-326,-6215,-5819], +[0,-5818,-14671,-14670,-14669,-14668,-14667,-109,-257,-5817,-69,-201,-168,-43,-26,-41,-1531,-3,-5816,-2193,-1110,-33,-2], +[0,-544,-91,-1438,-1437,-857,-5815,-5814,-5813,-5812,-456,-102,-53,-192,-6,-74,-591,-543,-75,-61], +[1,3,1111], +[0,1112,1113,1114,10], +[0,-5822,-5821,-5820,-14666,-326,-5819], +[0,-5818,-69,-5811,-14665,-5810,-5809,-5808,-201,-43,-26,-3,-5816,-14664,-1110,-1242], +[0,-544,-91,-1438,-1437,-857,-5815,-5814,-5813,-5812,-456,-102,-53,-591,-543,-75,-61,-1242,-14663,-14662], +[1,3,1116], +[0,1117,1118,7,4], +[0,-3684], +[0,-5807,-5806,-5805,-3683,-14661,-89,-9,-79,-18,-3,-15,-4], +[1,3,1120], +[0,1121,1122,1123,4], +[0,-6,-35,-2705,-2936,-2640,-14660,-14659], +[0,-104,-6,-3883,-1505,-5804,-35,-515,-2,-2104,-2811,-47,-5803,-2142,-486,-6214,-2848,-728,-6059,-6333], +[0,-390,-42,-746,-5802,-5801,-14658,-14657,-100,-14656,-2091,-2639,-129,-127,-6,-74,-192,-220,-1713], +[1,3,1125], +[0,1126,1127,110,6], +[0,-3682,-5800,-2740,-5799,-90,-1738,-2938,-14655,-2937,-4053,-14654,-14653,-14652,-5798,-14651,-14650,-2256,-14649,-267, +-832,-574,-14648,-14647,-1241,-14646,-3681,-14645,-14644,-14643,-5797,-5796,-14642,-6137,-14641,-14640,-14639,-14638, +-5795,-2090,-14637,-14636,-14635,-5794,-14634,-14633,-14632,-14631,-3914,-14630,-14629,-14628,-2638,-14627,-2192,-2637, +-14626,-5793,-14625,-1303,-1120,-14624,-14623,-14622, +-2812,-2089,-1109,-1788], +[0,-2742,-11,-3680,-14621,-2278,-1088,-3679,-3678,-1439,-965,-1440,-1715,-2644,-1081,-5792,-14620,-14619,-950,-5840,-5791, +-330,-155,-122,-317,-3677,-29,-1712,-3676,-2636,-1711,-142,-963,-14618,-2088,-47,-14617,-1764,-87,-3675,-5790,-14616, +-3674,-1436,-22,-19,-3673,-3672,-14615,-98,-5789,-20,-238,-26,-2087,-1559,-5788,-1264,-1,-266,-12,-251,-923,-10, +-145,-148,-214,-64,-190,-2645,-150,-229,-2635,-40,-348,-28,-419,-9,-1005,-1004,-3956,-200,-2868,-8,-1710,-1528,-176,-816, +-1435,-2634,-249,-79,-3671,-2152,-18,-23,-1709,-1130,-149,-4,-2821,-695,-440,-361,-464,-3670,-2633,-3669,-6,-2817,-2816, +-2815,-35,-2744,-2632,-3668,-3667,-3666,-559,-3665,-14614,-274,-147,-2631,-2086,-14613,-16,-600, +-321,-179,-3664,-3663,-558,-2630,-5787,-175,-33,-124,-2,-2629,-520,-1708,-14612], +[1,3,1129], +[0,1130,166,111,4], +[0,-5786,-5785,-5784,-3662,-2763,-5783,-1849,-23,-5782,-3661,-1107,-123], +[1,3,1132], +[0,1133,166,111,5], +[0,-5786,-5785], +[1,3,1135], +[0,1136,1137,111,4], +[0,-5784,-3662,-2763,-5783,-14600,-1849,-759,-23,-14599,-188,-5782,-14598,-3661,-1107,-123], +[0,-2627,-142,-5,-2628,-680,-51,-215,-65,-4,-5781,-211,-33,-3660,-196,-1289,-2,-17,-92,-1780], +[1,3,1139], +[0,1140,1141,1142,6], +[0,-55], +[0,-366,-2626,-2625,-1,-12,-115,-2886,-220,-2,-83], +[0,-1,-353,-2085,-220], +[1,3,1144], +[0,1145,1146,1147,5], +[0,-1762,-5780,-2624,-208,-352,-2084,-3659,-495,-297,-2083,-1707,-2739,-748], +[0,-1240,-357,-1582,-3658,-5,-2738,-5779,-14,-220,-2784,-2,-104,-30], +[0,-52,-5778,-220,-3827,-104], +[1,3,1149], +[0,1150,1151,1152,5], +[0,-2082,-3855,-326,-297,-14597], +[0,-77,-104,-220,-162], +[0,-2623,-14596,-104,-220], +[1,3,1154], +[0,1155,1156,1157,5], +[0,-11,-14595,-21,-136,-140,-2160,-14594,-5777], +[0,-98,-1133,-438,-17], +[0,-5776,-256,-6,-17,-3657], +[1,3,1159], +[0,1160,1161,1162,5], +[0,-14593,-3656], +[0,-3655,-14592,-26,-2], +[0,-5775,-14591,-292,-2,-5774,-17,-3654], +[1,3,1164], +[0,1165,1166,1167,5], +[0,-476,-790], +[0,-28,-32,-8,-77,-7,-38,-4,-660,-1537,-179,-2879,-2,-5,-160,-1538,-901,-2790,-5773,-14590,-14589,-14588], +[0,-432,-127,-1713,-2622,-2081,-369,-5953,-102,-53], +[1,3,1169], +[0,0,37,1170,10], +[0,-1706,-5772,-5771,-14587,-2621,-5770,-14586,-53,-2,-45,-3653,-3652,-5769,-14585,-14584,-14583,-3651,-14582,-14581, +-14580,-14579,-5768,-14578], +[1,3,1172], +[0,141,142,143,4], +[1,3,1174], +[0,1175,1176,1177,9], +[0,-90,-924,-44], +[0,-11,-173,-21,-140,-283,-48,-357,-203,-80,-63,-232,-204,-3650,-5,-22,-19,-355,-1,-12,-2080,-1705,-2620,-2079,-343,-4, +-14,-2619,-395,-5767,-2], +[0,-255,-31,-1704,-1703,-45,-14577,-256,-2], +[1,3,1179], +[0,167,1180,7,4], +[0,-122,-5836,-47,-87,-537,-618,-343,-6,-35,-1100,-14575,-5766], +[1,3,1182], +[0,167,1183,1184,5], +[0,-220,-2785,-3828,-2886,-14574,-19,-5766,-1582], +[0,-14573,-676,-220], +[1,3,1186], +[0,1187,1188,1189,4], +[0,-14572], +[0,-14571,-29,-22,-14570,-1,-2236,-14569,-12,-25,-67,-8,-176,-2866,-166,-701,-57,-211,-2], +[0,-14568,-14567,-14566,-14565,-1702,-53,-337,-2153], +[1,3,1191], +[0,1192,1193,1194,5], +[0,-90,-330], +[0,-502,-2,-1434,-65], +[0,-61,-502,-102,-255,-857,-727,-1437,-1438], +[1,3,1196], +[0,1197,1198,1199,4], +[0,-1709,-1433,-164,-695,-90,-538,-3649,-5765], +[0,-79,-2,-1434,-305,-1183,-3648,-155,-5764,-14564], +[0,-61,-102,-255,-79,-388,-857,-727,-1437,-1438], +[1,3,1201], +[0,1202,1203,1204,4], +[0,-3647,-1433,-1774,-164,-2941,-5765], +[0,-79,-350,-14,-30,-2,-1434,-1239,-695,-3646,-80,-5764,-5763], +[0,-61,-255,-8,-79], +[1,3,1206], +[0,1207,1208,1209,10], +[0,-20,-3647,-913,-695,-3645], +[0,-8,-9,-6,-1,-4,-50,-503,-2,-11,-29,-47,-441,-234,-90,-120,-2151,-286,-14563,-298,-1765,-6131,-1760,-14562], +[0,-61,-5762,-8,-234], +[1,3,1211], +[0,39,1212,1213,5], +[0,-330,-155,-47,-87,-20,-5761,-913,-1434,-343,-6,-35,-7,-2], +[0,-61,-6,-102,-255,-79,-388,-857,-727,-1437,-1438], +[1,3,1215], +[0,0,1216,1217,4], +[0,-569,-79,-6,-350,-89,-33,-1432,-35,-1774,-2,-1434,-47,-3648,-14561,-2079,-5760,-1705,-14560,-330,-5759,-2080,-122, +-14559,-2620,-155,-5758,-14558,-2135,-251,-14557], +[0,-14556,-14555,-6,-61], +[1,3,1219], +[0,1220,0,1221,6], +[0,-3701,-3644,-4038,-6542,-4037,-6541,-6540], +[0,-675,-434,-46,-105,-52,-99], +[1,3,1223], +[0,0,0,1224,9], +[0,-675,-453,-512,-111,-46,-352], +[1,3,1226], +[0,0,0,1227,11], +[0,-675,-453,-512,-111,-46,-856,-352], +[1,3,1229], +[0,1230,1231,168,4], +[0,-5757], +[0,-43,-153,-9,-2,-5,-2270,-320,-49,-5756,-62], +[1,3,1233], +[0,0,0,1234,6], +[0,-675,-453,-512,-111,-46,-922], +[1,3,1236], +[0,0,0,1237,9], +[0,-675,-453,-512,-111,-46,-14554,-5755,-2618], +[1,3,1239], +[0,1240,0,1241,4], +[0,-6543], +[0,-675,-453,-512,-111,-46,-3643,-2869,-2078,-1080], +[1,3,1243], +[0,1244,0,1245,6], +[0,-3701,-14553,-6538,-6537], +[0,-675,-453,-512,-111,-46,-2096,-113], +[1,3,1247], +[0,1248,0,1249,4], +[0,-5757,-261,-14552,-4038,-6546,-6249,-4037,-6539], +[0,-675,-453,-512,-111,-46,-1249], +[1,3,1251], +[0,169,0,1252,8], +[0,-675,-453,-512,-111,-46,-434], +[1,3,1254], +[0,1255,0,1256,5], +[0,-261,-6544,-5754], +[0,-675,-453,-512,-111,-46,-1249,-802,-5864], +[1,3,1258], +[0,1259,0,1260,9], +[0,-261,-5754], +[0,-675,-453,-512,-111,-46,-2096,-113,-981,-45], +[1,3,1262], +[0,0,0,1263,6], +[0,-675,-453,-512,-111,-46,-2096,-113,-195,-5753,-676], +[1,3,1265], +[0,0,0,77,5], +[1,3,1267], +[0,1268,0,1269,9], +[0,-14551,-14550,-14549,-1691,-44], +[0,-14548,-1690,-46,-1234,-5752,-99], +[1,3,1271], +[0,1272,1273,1274,11], +[0,-469,-3642,-2059,-839,-2617,-3641,-5751,-1752], +[0,-193,-228,-30,-4,-5750,-408,-47,-1137,-2616,-340,-633,-103,-908,-3640,-2615,-14547], +[0,-1,-334,-368,-2], +[1,3,1276], +[0,1277,112,1278,6], +[0,-36,-1450,-5751,-1752,-2614], +[0,-360,-338,-45,-2,-73,-389,-1], +[1,3,1280], +[0,1281,112,1282,5], +[0,-1450,-769,-1752,-2614], +[0,-1,-2,-2613], +[1,3,1284], +[0,1285,1286,1287,8], +[0,-4055,-1894,-14546,-267,-5749,-14545,-1865,-14544,-14543,-1006,-23,-5748,-236,-121,-14542,-5797,-14541,-5795,-5794, +-3914,-1303,-1495,-3666,-691,-1118,-1492,-595,-14540], +[0,-50,-11,-216,-622,-173,-480,-21,-136,-140,-49,-62,-155,-122,-2155,-2612,-142,-5747,-47,-87,-22,-19,-14539,-2611,-201, +-94,-86,-98,-14538,-1888,-14537,-14536,-503,-14535,-144,-298,-445,-1022,-1772,-1,-64,-190,-277,-40,-346,-9,-8,-14534, +-1435,-14533,-18,-377,-907,-2199,-4,-693,-6,-35,-2813,-286,-134,-154,-179,-2154, +-14532,-14531,-3639,-2,-1105,-438,-17,-520,-92], +[0,-6,-108,-129,-127,-53,-14530], +[1,3,1289], +[0,1290,0,170,5], +[0,-304,-3948,-23,-646,-14529,-1475,-14528,-14527,-14526,-14525,-14524,-705,-5746,-5745,-14523,-14522,-5744,-5743], +[1,3,1292], +[0,171,0,1293,5], +[0,-3638,-14519,-435,-1483,-1689,-1688,-6,-108,-129,-127,-102,-24,-1430,-1429,-52,-184,-53], +[1,3,1295], +[0,1296,0,1297,4], +[0,-14518], +[0,-741,-14517,-435,-1483,-1689,-1688,-6,-108,-129,-127,-102,-24,-1430,-1429,-52,-184,-53], +[1,3,1299], +[0,171,0,1300,4], +[0,-336,-14516,-435,-1483,-1689,-1688,-6,-108,-129,-127,-102,-24,-1430,-1429,-52,-184,-53], +[1,3,1302], +[0,1303,0,1304,8], +[0,-5742,-4035], +[0,-14515,-14514,-435,-1483,-1689,-1688,-6,-108,-129,-127,-102,-24,-1430,-1429,-52,-184,-53], +[1,3,1306], +[0,0,0,1307,6], +[0,-674,-14513,-435,-1483,-1689,-1688,-6,-108,-129,-127,-102,-24,-1430,-1429,-52,-184,-53], +[1,3,1309], +[0,1310,1311,1312,5], +[0,-464,-383,-41,-981,-384,-5741,-2058,-14512,-3637,-6532], +[0,-8,-16,-57,-125,-86,-2,-11,-1443,-29,-5,-14511,-320,-257,-14510,-954,-735,-6018], +[0,-14509,-53,-484,-282,-333,-6075,-1428], +[1,3,1314], +[0,1315,1316,1317,4], +[0,-3636,-14508,-14507,-14506,-5740,-14505,-14504,-14503], +[0,-81,-153,-171,-104,-9,-1,-7,-5739,-30,-89,-38,-459,-179,-3931,-398,-14502,-321,-2783,-2,-5,-18,-65,-47,-14501,-14500, +-320,-5738,-1079,-1489,-14499,-14498,-14497,-83,-14496,-103,-5737,-310,-14495,-14494,-558,-5736,-1469,-673,-5735,-5734, +-2630], +[0,-1706,-5733,-14493,-5732,-14492,-14491,-14490,-14489,-14488,-5771,-14487,-14486,-14485,-14484,-14483,-2621,-14482,-53, +-2,-14481,-14480,-14479,-2610,-2609,-3653,-3652,-5769,-14478,-14477,-5768], +[1,3,1319], +[0,1320,1321,1322,5], +[0,-159,-1790,-11,-305,-297,-21,-342,-5731,-2729,-2728,-6088,-6087], +[0,-1245,-104,-208,-371,-164], +[0,-53,-104,-2623,-4034], +[1,3,1324], +[0,1325,1326,1327,6], +[0,-11,-14476,-5730,-2057,-729,-692], +[0,-2608,-6,-35,-975,-371], +[0,-292,-5729,-6,-692,-104,-2623], +[1,3,1329], +[0,1330,1331,1332,5], +[0,-839,-229,-83,-979], +[0,-2056,-5,-1,-825,-118,-2055,-4,-153,-2,-30,-74], +[0,-74,-14475,-14474,-1,-2], +[1,3,1334], +[0,1335,1336,1337,10], +[0,-193,-837,-2607,-652,-14473,-563,-434,-396,-3635,-3798,-259], +[0,-41,-3,-97,-125], +[0,-41,-681,-545,-42], +[1,3,1339], +[0,1340,1341,113,5], +[0,-3634,-3633,-965,-252,-246,-408,-2606,-2605,-2604,-3632,-267,-2603,-5728,-832,-326,-3631,-829,-1687,-2602,-2601,-486, +-1472,-1843,-2223,-760,-3630,-818,-1530,-2054,-101,-1824,-2600,-2053,-1314,-562,-1730,-3629,-440,-693,-2090,-2638,-2192, +-2637,-1303,-1120,-1100,-1803,-5727,-3628,-1801,-3627,-750,-2052,-864,-521,-601,-804,-77,-1743,-2599,-2598,-133,-340, +-1078,-195,-3626,-483,-3625], +[0,-49,-62,-2134,-3624,-2051,-411,-3623,-5,-1686,-963,-47,-1764,-87,-3622,-3621,-5726,-1,-2654,-229,-822,-2597,-3620,-9, +-18,-4,-1122,-900,-6,-35,-179,-33,-2,-30,-2050,-5725], +[0,0,0,7,9], +[1,3,1344], +[0,0,1345,1346,4], +[0,-5,-22,-19,-1,-191,-10,-7,-14,-301,-2], +[0,-46,-14472,-3618,-1685,-3617,-14471,-3616], +[1,3,1348], +[0,1349,1350,1351,4], +[0,-14470], +[0,-11,-391,-21,-178,-3615,-14469,-69,-5,-293,-152,-3614,-1,-78,-139,-612,-212,-14468,-1145,-189,-755,-3,-65,-15,-608,-7, +-14,-273,-5724,-463,-341,-1298,-1297,-5723,-33,-14467,-2], +[0,-632,-1077,-783,-422,-14466,-3613,-14465,-14464,-3612,-2596,-672], +[1,3,1353], +[0,1354,172,1355,5], +[0,-344,-2595], +[0,-1427,-5722,-5721,-1191], +[1,3,1357], +[0,1358,114,1359,5], +[0,-60,-116,-23,-376,-690], +[0,-332,-4033,-111], +[1,3,1361], +[0,1362,0,7,10], +[0,-208], +[1,3,1364], +[0,1365,1366,1367,8], +[0,-201,-20,-58,-1855,-40,-200,-324,-14463,-600], +[0,-80,-231,-63,-204,-14462,-185,-14461,-2156,-5,-7,-14,-870,-3611,-301,-3639,-44,-196,-2], +[0,-37,-6531,-74,-6,-1684,-2594,-2,-335], +[1,3,1369], +[0,0,1370,1371,4], +[0,-13,-470,-3,-4,-7], +[0,-855,-1131,-1426,-1787], +[1,3,1373], +[0,0,27,1374,5], +[0,-14460,-838,-1683,-3610,-5720], +[1,3,1376], +[0,1377,1378,1379,8], +[0,-5719,-14459,-36,-14458,-1464], +[0,-162,-14457,-2710,-5,-103,-27,-33,-153,-30], +[0,-1425,-14456,-1177,-3609,-982,-456], +[0,44,15,16,6], +[1,3,1382], +[0,1383,1384,1385,4], +[0,-14455,-14454,-14453,-59,-14452,-384,-36,-5705,-5704,-41,-5703,-5702,-614,-3592,-101,-5701,-5700,-14451,-88,-14450, +-14449,-14448,-197,-14447,-1112,-749,-14446,-14445,-14444,-123,-744], +[0,-14443,-26,-1535,-15,-5699,-97,-39,-372], +[0,-768,-91,-1233,-85,-39,-61], +[1,3,1387], +[0,1388,1389,1390,5], +[0,-1017,-14442,-5698,-3591], +[0,-5697,-80,-231,-63,-319,-109,-69,-5,-14441,-22,-19,-837,-59,-13,-26,-574,-14440,-1,-12,-28,-9,-5696,-3949,-1001,-5695, +-78,-139,-189,-18,-3,-14439,-188,-15,-4,-14438,-14,-226,-33,-3590,-2,-14437], +[0,-1253,-318,-437,-409,-814,-650,-5694,-14436], +[1,3,1392], +[0,1393,1394,1395,4], +[0,-193], +[0,-5697,-29,-5,-22,-19,-193,-1,-12,-9,-8,-5695,-18,-4,-57,-2], +[0,-14435,-2685,-550,-409], +[0,45,15,16,10], +[1,3,1398], +[0,34,1399,1400,6], +[0,-565,-5693], +[0,-6529], +[1,3,1402], +[0,1403,1404,1405,4], +[0,-14434,-3879], +[0,-14433,-3,-15,-112], +[0,-14432,-14431,-14430], +[1,3,1407], +[0,0,1408,1409,6], +[0,-77], +[0,-24,-77,-102,-636,-184,-631,-14429], +[1,3,1411], +[0,0,0,173,5], +[1,3,1413], +[0,0,0,1414,5], +[0,-192,-52,-91,-485,-1682], +[1,3,1416], +[0,1417,0,1418,5], +[0,-14428,-14427,-2283,-2282,-2281,-14426,-14425,-60,-160,-20,-473,-144,-382,-36,-3589,-207,-5692,-5691,-14424,-919,-277, +-1076,-40,-2593,-28,-346,-1155,-200,-5690,-911,-648,-526,-222,-1143,-23,-93,-14423,-1315,-466,-1310,-324,-644,-492,-693, +-6332,-128,-7,-1296,-462,-3588,-16,-2592,-890,-14422,-154,-393,-1791,-597,-460,-2,-438,-1102,-17, +-170,-519,-1479,-2771], +[0,-192,-6527], +[1,3,1420], +[0,0,0,1421,4], +[0,-1237,-1761,-91,-1682,-973,-2591,-127], +[1,3,1423], +[0,0,1424,1425,9], +[0,-1746,-707,-14421,-3,-885], +[0,-1232,-240,-14420,-14419,-14418,-14417,-14416,-14415,-14414,-14413,-14412,-14411,-14410,-14409,-14408,-14407,-14406, +-14405,-14404,-14403,-14402,-37,-14401,-224,-135,-671,-1722,-294,-194,-14400,-14399,-584,-5689,-14398,-14397,-14396, +-5688,-14395,-495,-263,-367,-14394,-5687,-14393,-726,-254,-14392,-5686,-163,-225,-548,-174,-183,-431,-14391,-14390,-638, +-14389], +[1,3,1427], +[0,1428,115,1429,6], +[0,-782], +[0,-240,-174,-194,-37,-163,-431,-482,-5685,-584,-254,-638,-263,-367,-294,-183,-5684,-2590,-3610,-354,-2048,-2047,-2122, +-14388,-2248,-3587,-14387,-14386], +[1,3,1431], +[0,0,1432,1433,10], +[0,-34,-51,-81,-929], +[0,-240,-548,-224,-671,-135,-174,-194,-37,-163,-431,-482,-584,-726,-1232,-254,-638,-294,-183,-948,-1075,-14385,-511,-75, +-630,-947], +[1,3,1435], +[0,0,1436,1437,5], +[0,-34,-51,-81,-14384], +[0,-240,-548,-224,-671,-135,-174,-194,-37,-163,-431,-482,-584,-726,-1232,-254,-638,-263,-367,-294,-183], +[1,3,1439], +[0,0,0,1440,6], +[0,-240,-135,-37], +[1,3,1442], +[0,1443,1444,1445,11], +[0,-3682,-14383,-90,-1738,-3766,-5683,-14382,-5682,-2264,-764,-574,-14381,-5681,-23,-468,-1118,-2089,-5680,-1742,-1788, +-14380,-595], +[0,-50,-11,-216,-1196,-1038,-306,-1231,-1195,-2723,-1230,-2145,-173,-2144,-1095,-480,-21,-140,-49,-62,-713,-203,-735,-185, +-29,-5679,-1278,-5678,-874,-5,-14379,-22,-19,-4034,-949,-3586,-5677,-14378,-14377,-1892,-858,-2589,-1714,-5676,-208, +-3585,-160,-201,-94,-86,-98,-4028,-5675,-355,-14376,-1879,-20,-238,-152,-2603,-3584,-58,-14375,-26, +-144,-1343,-14374,-1174,-14373,-5674,-5788,-5673,-89,-1264,-501,-1,-12,-763,-10,-145,-214,-14372,-25,-825,-229,-2635,-40, +-28,-206,-708,-32,-615,-5672,-1536,-346,-9,-14371,-5671,-8,-176,-816,-14370,-14369,-1002,-5670,-6152,-222,-1143,-5669, +-14368,-18,-5668,-221,-998,-1318,-1138,-5667,-228,-3583,-377,-88,-72,-1130,-236,-1314,-38,-492,-4, +-441,-440,-361,-693,-864,-601,-1681,-5666,-3757,-5665,-7,-5664,-14367,-16,-285,-5663,-154,-179,-3664,-3663,-558,-2630, +-1489,-392,-71,-1107,-57,-211,-153,-124,-2,-14366,-133,-438,-2629,-104,-74,-14365,-14364,-979,-3874,-14363,-1103,-14362, +-882,-2173,-1424,-1783,-17,-520,-92,-170,-519,-2588,-1708], +[0,-74,-873,-1759,-435,-1034,-14361,-129,-127,-102,-52,-53], +[1,3,1447], +[0,1448,1449,110,4], +[0,-304,-574,-90,-2740,-1788,-3682,-14360,-14359,-14358,-14357,-5798,-14356,-14355,-5800,-14354,-14353,-14352,-14351, +-14350,-14349,-14348,-14347,-14346,-14345,-14344,-14343,-14342,-14341,-5662,-14340,-14339,-14338,-14337,-14336,-14335, +-14334,-14333,-5799,-14332,-14331,-14330,-14329,-14328,-14327,-14326,-2089,-14325,-14324], +[0,-193,-324,-2165,-312,-153,-1559,-28,-8,-149,-201,-20,-2087,-9,-1004,-569,-79,-3582,-806,-6,-689,-215,-1,-822,-249,-23, +-274,-7,-5661,-16,-2268,-3585,-2587,-440,-124,-17,-1176,-40,-348,-1710,-88,-1130,-4,-5660,-1708,-26,-1680,-229,-2152, +-1709,-157,-3670,-35,-1423,-3581,-188,-644,-147,-521,-600,-321,-2,-29,-5, +-2054,-419,-18,-3910,-2631,-2278,-586,-3580,-47,-1679,-14323,-2633,-5659,-14322,-2697,-713,-1711,-142,-137,-3673,-1510, +-695,-5658,-804,-320,-1088,-5657,-3579,-5656,-3677,-963,-1436,-486,-2634,-14321,-3679,-965,-2586,-185,-1712,-725,-2709, +-5655,-2744,-1439,-5654,-87,-2868,-1528,-5653,-559,-3665,-750,-2742,-14320,-2696,-1257,-14319,-3770,-2695,-1355,-5652, +-145,-1005, +-2632,-2629,-5651,-760,-1435,-3578,-330,-3672,-923,-816,-3668,-5650,-122,-148,-176,-14318,-5649,-5648,-3671,-520,-3674, +-1462,-5647,-155,-190,-14317,-2636,-5646,-3577,-14316,-317,-3851,-5645,-3675,-14315,-2086,-3667,-3676,-3576,-3678,-3575, +-5644], +[1,3,1451], +[0,1452,0,7,5], +[0,-149], +[0,67,15,16,4], +[1,3,1455], +[0,1456,1457,1458,9], +[0,-6115,-6114,-6108,-6113,-6109,-14314,-14313,-6105,-6104,-14312,-14311,-14310,-14309,-3942,-3818], +[0,-6112,-6111,-6110,-14308,-6107,-6106,-49,-62,-14307,-6103,-6102,-14306,-3817,-877,-1274,-14305,-14304,-168,-326,-1,-12, +-381,-41,-40,-9,-101,-18,-1514,-3934,-38,-7,-14,-14303,-1246,-27,-156,-2,-6101,-112,-3574,-123], +[0,-1713,-14302,-99,-4031,-42,-14301,-1812], +[1,3,1460], +[0,1461,1462,174,4], +[0,-476,-58,-14300,-1264,-14299,-40,-28,-250,-470,-249,-3573,-23,-221,-288,-440,-16,-154,-17,-92,-552], +[0,-142,-69,-5,-1,-14298,-84,-10,-76,-67,-3], +[1,3,1464], +[0,1465,1466,1467,4], +[0,-14297,-351,-16,-596,-96], +[0,-2657,-5,-137,-413,-51,-40,-2], +[0,-1579,-100,-3572,-99,-678,-42,-114,-2585,-37,-724,-294,-410,-1074,-14296,-14295], +[1,3,1469], +[0,1470,1471,1472,5], +[0,-36,-1422,-1128,-813,-2174], +[0,-13,-244,-3,-27,-186], +[0,-5643,-1229,-14294,-5642,-14293,-3571], +[1,3,1474], +[0,1475,0,7,4], +[0,-5641,-3570,-6099,-3569,-44], +[1,3,1477], +[0,1478,0,1479,8], +[0,-5640,-5641,-4030,-3570,-3568,-3569,-44,-2584], +[0,-338,-430,-5639,-45,-14292,-158,-6], +[1,3,1481], +[0,1482,1483,7,6], +[0,-3570,-3569,-44,-14291], +[0,-5638,-29,-5,-380,-1013,-8,-7,-14,-57,-196,-2], +[1,3,1485], +[0,1486,1487,7,6], +[0,-4030,-14290,-44], +[0,-5638,-29,-14289,-3991,-380,-1013,-8,-14288,-7,-14,-57,-196,-2], +[1,3,1489], +[0,0,1490,1491,5], +[0,-152,-56,-14287,-298,-3984,-66,-3,-611,-1515,-15,-120,-1785], +[0,-3567,-248,-202,-132,-141,-358,-370,-5637,-407,-300], +[1,3,1493], +[0,1494,1495,1496,4], +[0,-3840,-1228,-14286,-14285,-5636,-201,-116,-14284,-23,-442,-236,-907,-3566,-16,-5635,-205], +[0,-14283,-3565,-2750,-296,-295,-3564,-142,-69,-5,-14282,-137,-454,-1247,-13,-244,-1345,-3,-4,-120,-27,-33,-2,-2169], +[0,-2046,-333,-61,-544,-95,-14281], +[1,3,1498], +[0,1499,1500,1501,10], +[0,-14280,-5634,-14279,-1240,-14278,-5633,-14277,-5632,-5631,-3563,-5630,-14276,-2583,-14275,-14274,-14273,-14272,-14271, +-14270,-14269,-14268,-5629,-14267], +[0,-15,-198,-3,-27,-1,-4,-2,-14266,-5,-69,-269,-137,-76,-19,-14265,-22], +[0,-14264,-14263,-14262,-14261,-5628,-1421,-1073,-14260,-14259,-5627,-2582], +[1,3,1503], +[0,1504,1505,1506,5], +[0,-14258,-14257,-14256,-14255,-5626,-14254], +[0,-14253,-29,-5,-22,-19,-3562,-1,-12,-251,-10,-25,-380,-8,-4,-14252,-1122,-5625,-134,-57,-33,-2], +[0,-14251,-1227,-46,-5624,-380,-2045,-335,-2,-14250], +[1,3,1508], +[0,1509,1510,1511,4], +[0,-14249,-60,-5623,-197,-14248,-886,-14247], +[0,-14246,-13,-166,-72,-3,-7,-14245,-312,-977], +[0,-1426,-928,-245,-855,-312], +[1,3,1513], +[0,0,1514,7,8], +[0,-13,-8,-4], +[1,3,1516], +[0,0,1517,1518,10], +[0,-161,-3561,-1,-3,-15], +[0,-37,-73,-1353,-854,-587], +[0,45,15,16,6], +[1,3,1521], +[0,1522,1523,1524,6], +[0,-1030,-2581,-2580,-14244], +[0,-3560,-239,-279,-510,-1,-1166,-1015,-2579,-213,-275,-15,-1312,-187,-39], +[0,-5622,-14243,-670,-14242,-672,-549,-2044,-5621,-3559], +[1,3,1526], +[0,0,14,1527,6], +[0,-670,-1189,-14241,-452,-853,-5620], +[1,3,1529], +[0,1530,1531,1532,5], +[0,-132,-5619,-1030,-2043,-609], +[0,-39,-768,-159,-26,-50,-14240,-11,-1126,-21,-3815], +[0,-293,-91], +[1,3,1534], +[0,0,1535,7,4], +[0,-39,-1332], +[1,3,1537], +[0,1538,1539,1540,4], +[0,-2238,-14239,-3558,-1312,-14238,-14237], +[0,-59,-66,-3,-235], +[0,-293,-1072,-2578,-927,-591,-350,-421,-82,-14236,-1082,-543,-75,-61,-1090,-3557,-388], +[1,3,1542], +[0,0,1543,1544,4], +[0,-15,-13,-1296,-166,-78,-3,-96,-1,-14,-16,-238,-833,-116,-40,-110,-59,-11,-1021,-189,-1678,-447,-910,-5618,-328,-14235, +-14234,-161,-418,-355,-909,-212,-3556,-341,-278,-14233,-1350], +[0,-60,-2042,-358,-202], +[1,3,1546], +[0,0,1547,1548,9], +[0,-5,-2577,-85,-33,-2], +[0,-60,-629,-339,-105,-14232,-2078,-172,-209], +[1,3,1550], +[0,1551,1552,7,4], +[0,-2186], +[0,-51,-1,-4,-188,-235,-14231,-18,-64,-266,-10,-12,-148], +[1,3,1554], +[0,0,1555,1556,4], +[0,-11,-781,-21,-140,-14230,-29,-86,-56,-8,-18,-417,-14229,-14228,-235,-4,-33,-2], +[0,-437,-509,-60], +[1,3,1558], +[0,0,0,1559,5], +[0,-2927,-91], +[1,3,1561], +[0,1562,1563,1564,6], +[0,-156,-135,-14227,-16,-14226,-14225,-14224], +[0,-15,-39,-1,-275,-279,-187,-239], +[0,-2041,-2040,-5617,-158,-2041], +[1,3,1566], +[0,1567,1568,1569,6], +[0,-58,-250,-14223,-188,-5616,-16], +[0,-11,-178,-355,-5615,-13,-152,-26,-525,-3,-15,-1792,-97], +[0,-3555,-2039,-780,-2576,-263,-114,-387,-1677,-14222,-1533], +[1,3,1571], +[0,1572,1573,1574,5], +[0,-119,-135,-5614,-14221,-28,-3554,-647,-324,-1676,-113,-3553,-96], +[0,-182,-328,-13,-1,-266,-10,-148,-64,-3], +[0,-3555,-685,-757,-451,-594], +[1,3,1576], +[0,1577,0,1578,10], +[0,-305,-1183,-5613,-164,-465], +[0,-160,-24,-2575,-38,-218], +[1,3,1580], +[0,1581,1582,1583,8], +[0,-3552,-208,-1581,-767,-14220,-1189,-5612,-14219,-20,-14218,-504,-14217,-2247,-5611,-5610,-14216,-14215,-36,-5609,-533, +-206,-5608,-817,-1152,-1836,-2038,-3551,-567,-564,-14214,-323,-990,-899,-3550,-2652,-14213,-2574,-1778,-96], +[0,-2627,-1071,-5,-929,-43,-118,-350,-27,-85,-372,-81,-2,-34,-2584], +[0,-14212,-75,-456,-61,-51,-2573,-852,-508,-543,-724,-37,-8,-3,-39,-85,-375,-199,-293,-1072,-172,-481,-60,-1226,-629,-114, +-3549,-14211,-5607,-14210,-388,-2113,-350,-2], +[1,3,1585], +[0,1586,1587,1588,4], +[0,-20,-829,-754,-23,-362,-72,-146,-14209], +[0,-109,-142,-634,-69,-5,-1744,-269,-517,-116,-13,-14208,-40,-9,-18,-3,-4,-14207,-7,-272,-134,-597,-196,-2,-17,-92], +[0,-17,-779,-3657,-2], +[1,3,1590], +[0,1591,1592,1593,5], +[0,-1116,-195,-132,-123,-299,-422,-551,-5606,-5605,-987], +[0,-13,-78,-3,-1,-152,-199,-17,-1874,-112,-59,-2,-5,-911,-316,-378,-400,-3548,-5604,-139], +[0,-99,-2037,-1227,-14206,-14205,-1070,-5603,-5602,-3547,-14204,-14203,-14202,-14201,-14200,-14199,-14198,-3546,-14197, +-5601,-14196,-14195,-14194,-14193,-14192,-14191,-14190,-14189,-5600,-5752,-14188,-14187,-14186,-14185,-14184,-5599], +[1,3,1595], +[0,0,1596,1597,4], +[0,-13,-28,-20,-536,-118,-54,-9,-166,-79,-78,-3,-27,-1,-249,-159,-89,-55,-807,-200,-1675,-4,-112,-14183,-1433,-5598,-703, +-5597,-2,-11,-5,-5596,-1021,-3545,-419,-189,-1320,-18,-65,-5595,-14182,-705,-1510,-1241,-1225,-14181,-134,-14180,-21, +-3544,-1145,-1115,-3543,-243,-302,-702,-656,-347,-14179,-139,-1110,-1751,-12,-212, +-3542,-3541,-306], +[0,-14178,-951,-61,-388,-543,-591,-3540], +[1,3,1599], +[0,1600,1601,1602,4], +[0,-657,-5594,-1543], +[0,-43,-32,-20,-9,-78,-3,-27,-1,-1514,-1309,-14,-41,-14177,-40,-1675,-88,-56,-26,-1014,-498,-250,-2700,-886,-2,-11,-168, +-1021,-1320,-378,-523,-2572,-400,-279,-49,-14176,-21,-14175,-231,-513,-203,-812,-226,-14174,-139,-909,-212,-648,-80, +-3539,-755,-5593,-3538,-63,-14173,-5592,-62], +[0,-743,-105,-1420,-172,-141,-91,-865,-410,-99,-337], +[1,3,1604], +[0,1605,1606,1607,4], +[0,-14172,-444,-14171,-5591,-197,-113,-247,-123,-437,-551,-1283,-650], +[0,-14170,-59,-56,-14169,-54,-3982,-1771,-66,-78,-139,-1831,-14168,-212,-1145,-189,-418,-3,-611,-198,-82,-112,-744], +[0,-141,-1421,-1069], +[1,3,1609], +[0,1610,1611,137,4], +[0,-169,-620,-447,-291,-58,-472,-3826,-28,-23,-14167,-1308,-285,-130,-3537,-119], +[0,-1890], +[1,3,1613], +[0,1614,1615,138,9], +[0,-3536,-2263,-5590,-3535,-447,-291,-1575,-2258,-1349,-926,-472,-36,-276,-23,-93,-1308,-2036,-285,-130], +[0,-1890,-3534,-620], +[1,3,1617], +[0,1618,1619,7,5], +[0,-128,-479,-427,-577,-538,-1019], +[0,-9,-3,-534,-1,-617,-4,-18,-94,-2571,-10,-500,-25], +[1,3,1621], +[0,1622,1623,7,5], +[0,-3535,-291,-1349,-1341,-1148,-23,-130,-14166], +[0,-1890,-926], +[1,3,1625], +[0,1626,0,7,4], +[0,-291,-23,-14165,-16], +[1,3,1628], +[0,1629,0,7,5], +[0,-291,-3534], +[1,3,1631], +[0,0,0,1632,6], +[0,-292,-74,-866], +[1,3,1634], +[0,1635,1636,7,4], +[0,-1732,-729,-355,-14164,-20,-325,-285], +[0,-11,-2115,-872], +[1,3,1638], +[0,175,1639,1640,8], +[0,-50,-11,-161,-21,-43,-1,-12,-25,-55,-9,-18,-4,-17], +[0,-17,-779,-292,-339,-1277,-358], +[1,3,1642], +[0,0,1643,1644,8], +[0,-11,-1196,-21,-182,-169,-94,-5615,-3533,-268,-5589,-712,-1575,-1349,-2035,-1,-12,-84,-10,-76,-25,-67,-131,-3,-1501,-4, +-7,-187], +[0,-1276,-14163], +[1,3,1646], +[0,1647,1648,1649,4], +[0,-609], +[0,-39,-1,-7,-182,-169,-213,-11,-94,-447,-5588,-21,-765,-328,-187,-10,-191,-1351,-962,-278,-2144,-1674,-1886], +[0,-292,-107,-14162,-628,-141], +[1,3,1651], +[0,116,35,21,5], +[1,3,1653], +[0,1654,1655,1656,10], +[0,-1097], +[0,-11,-136,-5587,-169,-5586,-56,-1,-266,-12,-10,-25,-822,-9,-18,-1136,-417,-4,-14161], +[0,-1276,-1034], +[1,3,1658], +[0,1659,1660,1661,4], +[0,-770,-5585,-2675,-3532,-3531], +[0,-50,-11,-2147,-391,-178,-13,-56,-26,-3,-15,-14160,-97], +[0,-66,-292,-107,-5584], +[1,3,1663], +[0,1664,1665,1666,4], +[0,-1097,-479,-28,-23,-5583], +[0,-50,-11,-2570,-306,-3824,-974,-173,-21,-136,-3530,-178,-1081,-60,-278,-1888,-13,-14159,-14158,-468,-3,-642,-6348], +[0,-1276,-14157,-23,-370], +[1,3,1668], +[0,1669,1670,1671,6], +[0,-5582,-28,-1123,-2808,-128], +[0,-50,-11,-1195,-391,-21,-169,-86,-473,-1,-191,-12,-10,-9,-8,-18,-3529,-134], +[0,-292,-1276,-358,-5581,-5580,-5579,-128,-14156,-5578,-407,-628], +[1,3,1673], +[0,0,1674,7,5], +[0,-8,-2569], +[1,3,1676], +[0,0,0,21,5], +[1,3,1678], +[0,0,0,21,4], +[1,3,1680], +[0,1681,35,21,5], +[0,-14155,-5577,-291], +[1,3,1683], +[0,1684,35,21,5], +[0,-14154,-14153,-291,-1575], +[1,3,1686], +[0,1687,1688,1689,6], +[0,-14152,-291,-1575], +[0,-182,-1576,-1032,-328,-13,-3], +[0,-292,-1276,-2034,-6096], +[1,3,1691], +[0,1692,35,21,5], +[0,-291,-1575,-2258,-1349,-23], +[1,3,1694], +[0,1695,1696,21,6], +[0,-14151,-291,-1575,-1349], +[0,-2262,-5576], +[1,3,1698], +[0,116,35,21,10], +[1,3,1700], +[0,1701,35,21,4], +[0,-5576,-291], +[1,3,1703], +[0,1704,35,21,5], +[0,-291,-14150,-2261], +[1,3,1706], +[0,0,1707,1708,4], +[0,-50,-11,-879,-962,-216,-971,-21,-1068,-136,-178,-94,-5575,-13,-1,-266,-827,-500,-10,-148,-265,-25,-64,-206,-3,-5574,-4], +[0,-292,-1276,-6,-1224,-14149], +[1,3,1710], +[0,1711,35,7,4], +[0,-14148], +[1,3,1713], +[0,116,35,21,4], +[1,3,1715], +[0,1716,0,7,6], +[0,-291,-159,-342], +[1,3,1718], +[0,1719,1720,1721,6], +[0,-21,-136,-770,-3811,-173,-3528,-1231,-306,-2145,-14147,-2144,-3527,-834,-3805,-2033,-2723], +[0,-1,-11,-90,-187,-10,-191], +[0,-292,-339,-430,-45], +[1,3,1723], +[0,1724,1725,7,5], +[0,-3526,-3525,-2260,-2568,-5573,-1887,-2567,-2566,-2565,-5572,-5571,-5570,-5569,-5568,-1350,-5567,-3524,-5566,-2564, +-2563,-2562,-5565,-1886,-3523,-5564,-5563,-2259,-305,-704,-16], +[0,-182,-94,-1890,-2262,-355,-268,-447,-13,-152,-1,-2571,-500,-40,-23,-3,-15,-5562,-7], +[1,3,1727], +[0,1728,1729,7,6], +[0,-3526,-2568,-5573,-1887,-2567,-2566,-2565,-5572,-5571,-5570,-5569,-5568,-1350,-5567,-3524,-5566,-2564,-2563,-2562, +-5565,-1886,-3523,-5564,-2259], +[0,-3534,-2262], +[1,3,1731], +[0,1732,0,7,8], +[0,-2561,-2261,-14146,-4025,-14145,-14144], +[1,3,1734], +[0,1735,0,7,4], +[0,-11,-216,-622,-2033,-3528,-1231,-3522,-2724,-971,-3802,-173,-21,-136,-140,-90,-1266,-834], +[1,3,1737], +[0,1738,0,7,9], +[0,-14143,-14142,-4024], +[1,3,1740], +[0,1741,0,7,5], +[0,-14141,-3533,-2925], +[1,3,1743], +[0,1744,0,7,4], +[0,-2924,-14140,-4026,-1576], +[1,3,1746], +[0,1747,0,7,5], +[0,-3525,-14139,-2260,-5563,-835], +[1,3,1749], +[0,1750,1751,7,4], +[0,-169,-291,-159,-5561,-23,-72,-146], +[0,-1746], +[1,3,1753], +[0,140,1754,7,8], +[0,-5590,-1032], +[1,3,1756], +[0,1757,0,7,4], +[0,-291,-2258,-1349,-926,-23], +[1,3,1759], +[0,1760,1761,7,5], +[0,-3536,-3535,-291,-1349,-926,-36,-55,-704,-23], +[0,-2263], +[1,3,1763], +[0,1764,1765,7,6], +[0,-291,-2560,-23,-14138], +[0,-2263,-926], +[1,3,1767], +[0,0,1768,7,5], +[0,-85,-59,-11,-14137,-21,-1068,-472,-136,-14136,-2145,-3802], +[1,3,1770], +[0,0,1771,1772,6], +[0,-51,-182,-94,-1890,-1351,-355,-5560,-328,-1187,-20,-152,-26,-1,-2571,-500,-420,-15,-7,-14,-273,-341,-5723,-14135], +[0,-292,-45,-73,-926], +[1,3,1774], +[0,1775,1776,1777,4], +[0,-247], +[0,-316,-618,-1561,-1,-10,-78,-1830,-375,-1799,-14,-112], +[0,-1673,-1067,-3612,-434,-209,-337,-91], +[1,3,1779], +[0,1780,1781,1782,11], +[0,-58,-28,-200,-149,-7,-44,-123,-437], +[0,-14134,-458,-2156,-5,-680,-3521,-517,-22,-19,-877,-14133,-14132,-1274,-13,-1,-10,-76,-3,-995,-14131,-272,-395,-392, +-211,-33,-124,-2,-674,-17,-92], +[0,-46,-6523,-376,-2153,-5559], +[0,44,15,16,4], +[1,3,1785], +[0,0,1786,1787,5], +[0,-56,-54,-167,-821,-2032,-66,-3,-985], +[0,-14130,-5558,-5557,-2031,-2927,-4019], +[0,45,15,16,11], +[1,3,1790], +[0,0,1791,1792,8], +[0,-1678,-110,-59,-39], +[0,-2031], +[1,3,1794], +[0,177,1795,1796,5], +[0,-3,-1,-66,-76,-10,-67,-84,-214,-131], +[0,-14129,-778,-2559,-14128], +[1,3,1798], +[0,1799,1800,1801,4], +[0,-351,-93,-88,-72,-5556], +[0,-1,-84,-10,-76,-67,-131,-3,-7,-125,-687,-1484,-1285], +[0,-41,-52,-14127,-3520,-14126,-1816,-111,-410,-1074,-434,-300,-3918,-46,-99], +[1,3,1803], +[0,1804,1805,178,4], +[0,-906,-2030], +[0,-8,-3519], +[1,3,1807], +[0,0,0,1808,4], +[0,-1573,-45,-270,-1419,-1702,-778,-683,-2029,-2028,-659], +[1,3,1810], +[0,0,1811,178,8], +[0,-1573,-5555,-4,-2], +[1,3,1813], +[0,1814,1815,1816,9], +[0,-14125,-58,-119], +[0,-421,-54,-1883,-1012,-1010,-243,-347], +[0,-1672,-14124,-14123,-2027,-2026,-14122,-1085,-14121,-14120,-14119,-5554,-14118,-14117], +[1,3,1818], +[0,0,0,1819,5], +[0,-110,-3518], +[0,68,15,16,8], +[1,3,1822], +[0,1823,1824,1825,8], +[0,-261,-149,-219,-742,-3944,-128,-460,-119,-88,-14087,-644,-523,-315,-14086,-197,-14085,-14084,-14083], +[0,-14082,-307,-39,-414,-66,-744,-59,-14081], +[0,-14080,-59], +[0,45,15,16,4], +[1,3,1828], +[0,1829,1830,1831,11], +[0,-23,-1671], +[0,-56,-14079,-66,-2558,-1498,-416], +[0,-110,-542,-2025], +[0,45,15,16,5], +[1,3,1834], +[0,1835,0,1836,9], +[0,-14078,-14077,-14076,-11,-879,-427,-216,-3522,-3561,-3810,-391,-1273,-21,-140,-577,-2104,-5930,-5,-193,-2557,-928,-60, +-238,-119,-576,-135,-3517,-472,-1014,-1531,-14075,-188,-248,-4,-3516,-77,-800,-130,-797,-220,-2,-112,-14074,-74,-96,-200, +-2556], +[0,-3515,-14073,-14072,-3514,-14071,-14070,-52,-2,-45,-436,-1706,-3691,-46,-14069,-5553,-14068,-14067,-14066,-2024,-5552, +-1670,-14065,-14064,-14063,-14062,-3729,-14061,-5551,-6,-14060,-14059,-74,-14058,-14057,-3691,-220,-14056,-14055,-800, +-2023], +[1,3,1838], +[0,1839,1840,1841,10], +[0,-14054,-14053,-14052], +[0,-201,-13,-1,-3,-14051,-180,-14050], +[0,-106,-14049,-429,-745,-165,-73,-14048,-851,-603,-1669,-60,-1418], +[1,3,1843], +[0,0,0,1844,5], +[0,-14047,-14046,-14045,-14044,-1417,-5550,-14043,-14042,-14041,-5549,-14040,-14039], +[1,3,1846], +[0,1847,0,1848,8], +[0,-14038], +[0,-484,-2022,-711,-5548,-5599,-2555,-2554], +[1,3,1850], +[0,1851,1852,7,4], +[0,-14037], +[0,-15,-39,-196,-4,-188,-180,-2,-5], +[1,3,1854], +[0,1855,1856,1857,9], +[0,-14036,-14035,-5547,-14034,-391,-173,-6252,-1674,-2553,-1100,-5546,-595], +[0,-14033,-50,-11,-391,-21,-14032,-178,-90,-1440,-6250,-2934,-14031,-3513,-1081,-5545,-5792,-950,-5791,-122,-29,-87,-3512, +-14030,-5588,-14029,-86,-98,-14028,-14027,-355,-765,-712,-5586,-291,-14026,-576,-56,-26,-2239,-14025,-1,-5544,-32,-1536, +-363,-5543,-213,-8,-3951,-1001,-236,-14024,-1315,-417,-65,-2832,-15,-235,-4,-693,-6,-35,-14023, +-14022,-7,-187,-462,-14021,-154,-57,-211,-2,-17,-520,-92], +[0,-6520,-14020], +[1,3,1859], +[0,1860,1861,1862,8], +[0,-3511,-299,-528,-197], +[0,-1332,-97,-39,-2], +[0,-299,-3510,-245,-5542], +[1,3,1864], +[0,1865,1866,1867,5], +[0,-208,-3509,-2021,-1151,-1508,-742], +[0,-60,-14019,-474,-54,-167,-243,-656,-177,-347,-345,-3,-903,-416,-6,-14018], +[0,-787], +[1,3,1869], +[0,0,0,1870,5], +[0,-14017,-14016,-14015,-14014,-14013], +[1,3,1872], +[0,1873,1874,7,6], +[0,-14012,-20,-14011,-23,-14010,-228,-2020,-5541,-1822,-14009,-5540,-138,-14008,-14007], +[0,-14006,-6519,-135,-1,-84,-10,-76,-67,-131], +[0,45,15,16,8], +[0,67,15,16,10], +[0,67,15,16,5], +[0,67,15,16,6], +[1,3,1880], +[0,0,1881,1882,5], +[0,-66], +[0,-3508,-783,-3507,-542], +[1,3,1884], +[0,0,1885,1886,5], +[0,-1028,-3902,-28,-149,-208,-14005,-3,-27,-117,-72,-7,-14004,-116,-6427,-66,-565,-1029,-112,-1581,-59,-168,-230,-396, +-1000,-1845], +[0,-172,-542,-481,-5539,-1668,-60,-629,-3506,-5538,-2552,-5537,-5536,-14003], +[1,3,1888], +[0,0,1889,1890,6], +[0,-3,-5535,-1859], +[0,-14002,-14001,-14000,-13999,-13998], +[1,3,1892], +[0,1893,81,7,6], +[0,-475,-924,-36,-652,-470,-992,-464,-1497,-981], +[1,3,1895], +[0,1896,1897,1898,4], +[0,-116,-13997,-1155,-23], +[0,-13996,-13,-1,-12,-25,-9,-166,-6411,-18,-3,-566,-15,-605,-4,-27,-186,-797,-123], +[0,-808,-566,-1066,-1267,-13995,-13994], +[1,3,1900], +[0,182,1901,1902,4], +[0,-354,-1144,-997], +[0,-627,-105], +[1,3,1904], +[0,0,1905,148,4], +[0,-2869,-258,-261,-77,-1280,-78,-1,-206,-249,-274,-14,-2806,-175,-199,-101,-288,-38,-272,-6047,-4,-1182,-26,-2745,-179, +-50,-1840,-11,-3505,-1745,-497,-696,-2810,-3504,-160,-343,-2715,-2714,-400,-1140,-2551,-13993,-790,-411,-963,-486,-965, +-5534,-1335,-3787,-340,-21,-13992,-763,-203,-10,-150,-139,-1526,-5533,-232,-214,-212,-2139, +-80,-3503,-1801,-755,-6048,-63,-1527,-2140,-3785,-3786], +[1,3,1907], +[0,0,1908,1909,4], +[0,-77,-13991,-351], +[0,-476,-77,-24,-5532], +[1,3,1911], +[0,0,0,1912,4], +[0,-1185], +[1,3,1914], +[0,1915,1916,1917,8], +[0,-6234,-446,-20,-2901,-394,-210,-2754,-880], +[0,-51,-15,-81,-34], +[0,-37,-2019,-5531,-174,-869,-194,-868,-455,-3502,-183], +[1,3,1919], +[0,1920,1921,1922,4], +[0,-13990,-128,-13989,-71], +[0,-59,-315,-85,-460], +[0,-59,-2550,-303,-13988,-107,-856,-1667,-1084,-2031], +[1,3,1924], +[0,1925,1926,1927,4], +[0,-36,-93,-1102,-2549,-13987,-2548,-1666], +[0,-13,-3,-7,-40,-373,-2547,-265,-1882,-5530], +[0,-1666,-45], +[1,3,1929], +[0,1930,1931,1932,4], +[0,-1666,-13986], +[0,-13985,-1882,-13,-3,-2547], +[0,-1666,-494,-669], +[1,3,1934], +[0,1935,1936,7,6], +[0,-736,-3860,-1330,-2548,-156,-1102], +[0,-109,-69,-5,-13984,-13,-289,-3,-13983,-15,-4,-13982,-196,-1289,-5529,-2], +[1,3,1938], +[0,1939,1940,1941,6], +[0,-13981,-13980,-13979,-20,-119,-223,-1564,-13978,-13977,-13976,-922,-709,-40,-614,-529,-362,-1310,-3566,-1497,-13975, +-3902,-802,-1113,-396,-1112,-800,-1101,-96], +[0,-5,-13974,-13,-13973,-325,-1422,-3,-4,-522,-113,-416,-7,-27,-1295,-146,-138,-125,-2,-70], +[0,-13972,-24,-13971,-2018], +[1,3,1943], +[0,1944,1945,1946,5], +[0,-195,-28,-132,-742,-293,-299,-422,-706,-5528,-2546,-1065,-287,-128,-528,-988,-71,-13970,-2545,-1146,-13969,-5527,-749, +-3501,-5526,-13968,-315,-3500,-13967,-3499,-3498,-13966,-2544,-3497,-13965,-3496,-697,-2543,-197,-3495,-13964,-1875, +-2542,-2541,-5525,-13963,-3494,-5604,-13962], +[0,-13961,-85,-597,-16,-460,-2257,-5524,-2540,-474,-3493,-13960,-13959,-3492], +[0,-91,-407,-860,-13958,-1084,-158,-45], +[1,3,1948], +[0,1949,1950,1951,9], +[0,-13957,-13956,-13955,-128,-460], +[0,-79,-752,-180,-113,-7,-85,-13954], +[0,-59,-2550,-672,-918,-55,-507,-3491,-860], +[1,3,1953], +[0,1954,0,1955,9], +[0,-2539,-1183,-5562,-13953,-5523], +[0,-4017,-2017,-13952], +[1,3,1957], +[0,1958,1959,1960,11], +[0,-5522], +[0,-39,-7,-2,-5,-5521], +[0,-13951,-13950,-659,-13949,-1416,-5520,-777,-510,-13948], +[1,3,1962], +[0,0,1963,1964,10], +[0,-15,-312,-81,-13,-123,-20,-3,-27,-1,-14,-33,-4,-110,-188,-186,-2,-109,-5,-69,-269,-297,-1270,-146,-1170,-12,-25,-478, +-319,-19,-63,-5519,-22,-1357], +[0,-376,-1881,-73], +[1,3,1966], +[0,0,0,1967,6], +[0,-4019,-91], +[1,3,1969], +[0,1970,1971,1972,8], +[0,-208,-13947,-1665,-20,-297,-88,-13946], +[0,-13945,-1,-28,-3,-7,-14,-2016,-80,-231,-63,-130,-146,-5518], +[0,-45,-5517,-13944,-5516,-430,-1415,-339,-2034], +[1,3,1974], +[0,1975,1976,1977,11], +[0,-1884,-5606], +[0,-768,-110,-59,-315,-6424,-3558,-5619,-798,-39,-71,-112], +[0,-3490,-91,-59,-299,-13943,-13942,-5515], +[1,3,1979], +[0,0,1980,1981,4], +[0,-239,-766,-279,-1,-213,-275,-187,-39], +[0,-299,-1664], +[1,3,1983], +[0,1984,1985,1986,4], +[0,-2030], +[0,-3,-610,-3519], +[0,-2252], +[1,3,1988], +[0,0,14,1989,5], +[0,-13941,-5514,-13940,-141,-370,-1467,-13939,-1256,-670,-2538], +[1,3,1991], +[0,0,1992,1993,5], +[0,-382,-696,-4,-7,-77], +[0,-24,-77,-432,-3489,-1718,-636,-52], +[1,3,1995], +[0,1996,1997,1998,5], +[0,-3800,-13938,-2537,-2273,-2935,-5513,-13937,-3662,-201,-20,-36,-13936,-5512,-149], +[0,-2097,-2658,-109,-162,-13935,-69,-5,-269,-22,-13,-1,-1337,-2235,-12,-25,-3,-1516,-198,-417,-15,-1723,-395,-27,-33,-2], +[0,-99,-42,-681,-2730,-3488,-37], +[1,3,2000], +[0,2001,31,2002,5], +[0,-5526,-3493,-315,-3509,-88,-71], +[0,-59,-1084,-541,-227,-407], +[1,3,2004], +[0,2005,2006,2007,6], +[0,-2536,-236,-5511,-13934], +[0,-13933,-85,-3877,-2174,-997], +[0,-263,-367,-5510,-106,-1347], +[1,3,2009], +[0,2010,2011,2012,6], +[0,-13932], +[0,-5509,-1], +[0,-13931,-871,-2015,-657], +[1,3,2014], +[0,2015,2016,2017,4], +[0,-2207], +[0,-13930,-13929,-13928,-1414,-13927,-13926], +[0,-2078,-670,-299,-3490,-13925,-6514,-106,-881,-5508], +[1,3,2019], +[0,0,2020,2021,4], +[0,-1,-214,-3,-15], +[0,-2535,-475,-202,-165,-73,-452,-1413], +[1,3,2023], +[0,2024,2025,2026,4], +[0,-13924,-2675,-349,-2534,-2080,-1705,-2079,-3531,-13923,-96,-518], +[0,-5,-13,-5507,-26,-3,-97,-33,-2], +[0,-787,-5506,-75,-66,-3487,-5505,-141], +[1,3,2028], +[0,0,2029,7,5], +[0,-1750,-8,-118,-9,-206,-14,-89,-2599,-57,-33,-124,-40,-4,-13922,-2,-11,-29,-18,-997,-185,-120,-13921,-415,-1223,-80, +-298,-63,-3486], +[1,3,2031], +[0,2032,2033,2034,11], +[0,-2860,-13920], +[0,-320,-1412,-13919,-5,-103,-3485,-13918,-7,-171,-2,-30,-13917], +[0,-433,-2014,-13916,-141,-453,-13915,-690,-2845,-13914,-3484,-13913,-13912,-13911,-13910,-13909], +[1,3,2036], +[0,2037,2038,2039,4], +[0,-13908,-13907,-3483,-13906], +[0,-239,-279,-510,-1555,-1,-1166,-1015,-2579,-213,-275,-15,-1312,-187,-39], +[0,-45,-338,-1663,-270,-5504,-13905,-3482,-3481,-5503,-1030,-1662,-1226,-2580], +[1,3,2041], +[0,0,14,2042,4], +[0,-446,-2533,-5502,-2013,-3480,-5501,-1560,-247,-5500,-163,-183,-452,-5499,-3479], +[1,3,2044], +[0,0,0,2045,4], +[0,-1236,-585,-256,-91], +[1,3,2047], +[0,0,0,2048,5], +[0,-3478], +[1,3,2050], +[0,2051,2052,2053,9], +[0,-906,-3477], +[0,-5,-5498,-41,-101,-3,-991,-97,-81,-2], +[0,-327,-3476,-1661,-13904,-13903,-281,-1704,-1064], +[0,45,15,16,9], +[1,3,2056], +[0,0,2057,2058,4], +[0,-279,-1,-191,-10,-40,-3,-17], +[0,-17,-107,-13902,-628,-407], +[1,3,2060], +[0,0,0,2061,5], +[0,-903,-13901,-75,-61,-5497], +[1,3,2063], +[0,0,2064,2065,5], +[0,-43,-13900,-3,-1,-89,-55,-5496,-2238,-4,-48,-2,-5495,-5494,-877,-181,-13899,-80,-1274], +[0,-75,-1072,-293,-61,-13], +[1,3,2067], +[0,2068,2069,2070,5], +[0,-5495], +[0,-43,-13,-3,-1,-55,-4,-48], +[0,-13,-2532,-91,-60,-61,-3475,-481,-1668], +[1,3,2072], +[0,0,183,2073,9], +[0,-13,-1809,-5493], +[1,3,2075], +[0,0,2076,2077,9], +[0,-13,-3,-66,-56,-2547,-13898], +[0,-13,-2532,-13897,-13896,-3474,-107,-13895,-1222,-5492,-511,-5491,-5490,-13894], +[1,3,2079], +[0,0,2080,2081,8], +[0,-43,-34,-51,-81,-118,-1520,-1523,-13893,-5,-2142], +[0,-224,-671,-135,-174,-194,-37,-163,-240,-225,-548,-431,-584,-726,-1232,-254,-638,-263,-367,-294,-183], +[1,3,2083], +[0,0,2084,2085,10], +[0,-51,-94,-56,-13892,-1,-13891,-32,-13890,-530,-314,-313,-13889,-23,-15,-1304], +[0,-4016,-850,-114,-75,-13888,-849,-2012,-13887], +[1,3,2087], +[0,0,0,2088,5], +[0,-2576,-2013,-452,-507,-2533,-3479,-3473,-13886,-13885], +[1,3,2090], +[0,2091,2092,7,4], +[0,-5489,-13884,-1346,-13883,-1750,-13882,-13881,-149,-606,-1660,-2531,-16,-1411], +[0,-5,-137,-103,-1,-1552,-527,-4,-134,-2,-1287,-30], +[1,3,2094], +[0,2095,2096,2097,4], +[0,-13880], +[0,-80,-2530,-231,-63,-252,-329,-13879,-22,-19,-13878,-13877,-13876,-289,-56,-26,-1,-13875,-5488,-763,-214,-381,-28,-199, +-378,-78,-139,-612,-1831,-212,-400,-2140,-755,-13874,-702,-1464,-236,-907,-991,-14,-895,-2139,-13873,-226,-2,-96], +[0,-327,-3472,-450,-13872,-585,-636], +[1,3,2099], +[0,2100,2101,2102,11], +[0,-607,-284,-3471,-1659,-497,-13871,-4003,-2529,-13870,-13869,-13868], +[0,-153,-555,-9,-79,-1,-249,-30,-55,-4,-1108,-48,-2,-5,-18,-586,-487,-13867,-115,-13866,-83,-103,-181,-848,-150,-2821, +-3470,-12], +[0,-3469,-249,-1456,-3468,-73,-255,-506,-31], +[1,3,2104], +[0,2105,2106,2107,5], +[0,-230,-13865,-1807], +[0,-182,-3526,-1887,-328,-13,-1,-117,-3], +[0,-1221,-287,-481], +[1,3,2109], +[0,2110,2111,2112,4], +[0,-90,-13864,-1738,-13863,-5682,-2264,-2256,-13862,-267,-1181,-5749,-832,-159,-2245,-13861,-13860,-13859,-13858,-5681, +-13857,-6134,-13856,-13855,-1836,-101,-13854,-117,-2528,-13853,-5748,-236,-13852,-4,-3681,-5487,-13851,-694,-2090,-3669, +-13850,-13849,-13848,-13847,-2814,-439,-5486,-13846,-898,-6341,-6339,-1118,-13845,-2089,-1492,-13844,-44,-247,-595,-123], +[0,-11,-216,-622,-1196,-1038,-306,-2723,-1230,-2145,-13843,-173,-6092,-2144,-21,-136,-2697,-2696,-2695,-965,-2155,-13842, +-13841,-1279,-3467,-13840,-29,-13839,-142,-1220,-13838,-5747,-47,-13837,-87,-1658,-13836,-1436,-22,-19,-767,-160,-201, +-169,-94,-86,-98,-4028,-5675,-6135,-13835,-13834,-13833,-13832,-1879,-20,-3584,-58,-26,-144,-6144,-764,-2087,-5673, +-445,-1022,-1772,-1,-266,-12,-827,-10,-145,-148,-214,-64,-13831,-919,-2232,-2635,-277,-3986,-348,-28,-32,-615,-313,-5672, +-1536,-9,-1005,-3956,-5485,-8,-79,-2152,-222,-5669,-18,-23,-1709,-5668,-13830,-3583,-377,-88,-72,-1317,-2203,-1130,-6391, +-907,-242,-2199,-38,-492,-441,-5796,-13829,-13828,-2633,-6,-2817,-1120,-2816,-2815,-6132,-6133, +-13827,-1803,-13826,-864,-601,-1681,-5666,-3757,-5665,-7,-5664,-13825,-179,-3664,-3663,-558,-2630,-1489,-392,-71,-211,-2, +-133,-438,-13824,-2527,-17,-13823,-519,-2588,-1708,-3833,-1777], +[0,-13822,-435,-6,-108,-129,-127,-102,-52,-53], +[1,3,2114], +[0,2115,2116,2117,4], +[0,-5484], +[0,-13821,-5,-4,-2778,-2,-1716], +[0,-303,-594,-13820,-5483,-5482,-126,-2231], +[1,3,2119], +[0,0,2120,184,5], +[0,-1877,-9,-459,-97,-39], +[1,3,2122], +[0,2123,0,2124,5], +[0,-426,-331,-3792,-1360,-1192,-2718,-1590,-13818,-2143,-590,-1036,-13817,-1583,-356,-448,-1586,-621,-1897,-1358,-1193, +-13816,-13815,-13814,-13813,-1589,-13812,-6061,-6065,-1194,-13811,-1359,-1593,-13810,-1588,-1587,-13809,-13808,-13807, +-6060,-3466,-13806,-1591,-1585,-13805,-1592,-13804,-13803,-6063,-13802,-1037,-3793,-6066,-13801,-13800,-1594,-6064, +-13799,-3791,-1584,-13798,-13797], +[0,-967,-290,-876,-789,-875,-412,-31,-1272,-966,-1461,-1460,-1748,-1747,-1459,-52], +[1,3,2126], +[0,0,2127,2128,5], +[0,-81,-14,-1108,-419,-1137,-231,-80,-63], +[0,-6,-24,-2149,-5481,-267,-132,-202], +[1,3,2130], +[0,185,2131,2132,5], +[0,-59,-1,-191,-614,-198,-1112,-1481], +[0,-24,-776], +[1,3,2134], +[0,2135,2136,2137,10], +[0,-151], +[0,-50,-11,-21,-140,-13796,-29,-5,-13795,-86,-152,-26,-237,-1,-118,-9,-8,-18,-2211,-417,-4,-2190,-16,-13794,-2,-17], +[0,-17,-107,-1219,-141], +[1,3,2139], +[0,0,0,2140,5], +[0,-240,-2248,-174], +[1,3,2142], +[0,186,14,2143,8], +[0,-2248,-358,-407,-628,-433,-5479,-5478,-13793,-2727,-775,-626,-1410,-709], +[1,3,2145], +[0,2146,0,2147,5], +[0,-28,-921], +[0,-37,-1722,-2525,-13792,-13791,-587,-194,-13790,-13789,-5477,-308,-13788], +[1,3,2149], +[0,0,2150,2151,8], +[0,-51,-2,-34], +[0,-37,-2019,-5531,-174,-869,-194,-868,-455,-3502,-183,-106], +[1,3,2153], +[0,2154,2155,2156,4], +[0,-5476,-1554,-5475,-1675,-13787], +[0,-1,-3465,-3464,-3463,-9,-18,-15,-3462,-5474], +[0,-240,-224,-194,-174,-37,-254,-263,-367,-638], +[1,3,2158], +[0,2159,2160,2161,11], +[0,-6328], +[0,-5,-51,-2,-34], +[0,-37,-2047,-240,-2524,-5473,-5472,-13786,-869,-174,-194,-431,-254,-294], +[1,3,2163], +[0,0,0,2164,9], +[0,-37], +[1,3,2166], +[0,0,2167,2168,4], +[0,-51,-1523,-2523,-2,-34], +[0,-37,-2011,-3461,-174,-869,-194,-868,-455,-2110,-2672,-361,-2109,-785,-2108,-106], +[1,3,2170], +[0,187,2171,2172,10], +[0,-82,-13785], +[0,-37,-135,-734], +[1,3,2174], +[0,2175,2176,188,5], +[0,-23,-394,-135], +[0,-13784,-13,-1029,-56,-5471,-2522,-32,-1008,-364,-363,-27,-186], +[1,3,2178], +[0,117,2179,188,10], +[0,-1029,-1,-12,-25,-8,-5470,-3459,-4], +[1,3,2181], +[0,2182,14,2183,10], +[0,-2798,-394], +[0,-13782,-13781,-183,-3458,-2643,-37,-174,-869,-254,-2010,-240,-163], +[1,3,2185], +[0,2186,2187,76,4], +[0,-20,-44,-914,-23,-16,-101,-13780,-40,-138,-2273,-767,-5870,-13779,-929,-1679,-394,-13778,-13777,-817,-13776,-461, +-13775,-13774,-13773,-2770], +[0,-13,-201,-3,-1,-33,-3703,-2,-109,-5,-69,-142,-137,-411,-185,-244,-13772,-13771,-5869,-1337,-13770,-2655,-732,-2235], +[1,3,2189], +[0,2190,2191,2192,5], +[0,-3750], +[0,-63,-319,-29,-142,-5,-13769,-22,-19,-13768,-3457,-1,-13767,-64,-498,-8,-23,-14,-5469,-57,-33,-2], +[0,-37,-2,-73,-723,-1062,-587,-854,-308], +[1,3,2194], +[0,2195,2196,2197,5], +[0,-13766,-1409,-5468], +[0,-11,-21,-98,-13,-26,-1,-191,-12,-10,-25,-9,-78,-703,-139,-189,-1320,-526,-18,-3,-4,-27,-81,-1105,-17,-92], +[0,-1182,-669,-13765], +[1,3,2199], +[0,2200,55,2201,4], +[0,-13764,-118,-13763,-914,-13762,-5467], +[0,-1182,-669,-13761,-5466,-13760,-603,-1669,-13759,-13758,-13757,-13756], +[1,3,2203], +[0,2204,2205,157,4], +[0,-394,-138,-880], +[0,-5,-22,-19,-43,-13,-20,-26,-1,-10,-115,-2229,-3,-7,-5535,-2], +[1,3,2207], +[0,0,83,7,6], +[1,3,2209], +[0,0,2210,2211,10], +[0,-381,-1104,-175], +[0,-2149,-5481,-267], +[1,3,2213], +[0,2214,0,2215,5], +[0,-1566], +[0,-13755,-784,-5540,-5465,-2011,-2648,-1063,-194,-299], +[1,3,2217], +[0,0,2218,2219,6], +[0,-59,-13754,-3,-1512], +[0,-60,-1683,-114,-13753,-5464], +[1,3,2221], +[0,2222,2223,2224,4], +[0,-2861], +[0,-82,-3,-1028], +[0,-174,-194,-490,-1735,-1702,-5463,-1028], +[1,3,2226], +[0,182,2227,2228,5], +[0,-1144,-997], +[0,-75,-350,-1072], +[1,3,2230], +[0,2231,2232,2233,11], +[0,-1250,-3456,-101,-13752,-13751], +[0,-1,-12,-9,-8,-18,-568,-4], +[0,-787,-13750,-2009,-152], +[1,3,2235], +[0,2236,2237,2238,6], +[0,-13749,-3455,-3454,-5462,-3453,-3452,-13748], +[0,-13747], +[0,-412,-354], +[1,3,2240], +[0,0,2241,189,10], +[0,-1561,-5461,-379,-221,-247], +[1,3,2243], +[0,0,2244,189,4], +[0,-11,-21,-2649,-1181,-1561,-379,-5460,-221,-157,-247,-17], +[1,3,2246], +[0,2247,2248,2249,4], +[0,-2142,-2763], +[0,-3,-81,-34], +[0,-224,-671,-24], +[1,3,2251], +[0,0,0,2252,5], +[0,-174,-548,-224,-240], +[1,3,2254], +[0,0,2255,2256,5], +[0,-1,-2236], +[0,-240,-174,-135], +[1,3,2258], +[0,2259,2260,2261,11], +[0,-138,-3451], +[0,-182,-328,-20,-556,-39], +[0,-2008,-183,-240,-194,-174,-1734,-734], +[1,3,2263], +[0,0,2264,2265,6], +[0,-421,-117,-3], +[0,-37,-308,-5459], +[1,3,2267], +[0,2268,190,2269,11], +[0,-1408,-5458,-1828,-3450], +[0,-1250,-165,-1062,-587,-854,-2007,-73,-723,-37,-308,-1063], +[1,3,2271], +[0,2272,2273,2274,4], +[0,-1408,-2521,-13746,-3450], +[0,-80,-63,-815,-14,-1488], +[0,-174,-1722,-13745,-114], +[1,3,2276], +[0,0,2277,2278,4], +[0,-81,-8,-1,-55,-57,-4,-48,-2,-29,-5,-83,-145,-12], +[0,-58,-308,-854,-73,-37,-1062,-587,-1250], +[1,3,2280], +[0,2281,2282,2283,5], +[0,-28,-534,-23,-5457,-5456,-40,-200,-88,-3765,-1293,-1341,-5455,-599,-298], +[0,-15,-13,-123,-3,-27,-3984,-16,-152,-288,-50,-213,-180,-11,-178,-120,-21,-995,-355,-5454,-13744,-13743,-306,-1345], +[0,-1677,-637,-550,-13742,-503], +[1,3,2285], +[0,2286,2287,146,4], +[0,-49,-3790], +[0,-6056,-6055,-1093], +[1,3,2289], +[0,0,2290,2291,6], +[0,-182,-94,-278,-1576,-3533,-268,-447,-152,-26,-1025,-1,-12,-25,-8,-362,-4,-7,-14,-273,-341,-803,-2172], +[0,-670,-292,-430,-13741,-339,-13740,-13739,-31,-2006,-13738,-1063,-13737,-2520,-1656,-1655,-5453,-13736,-2519,-5452,-163, +-5451,-1061,-1218,-13735,-271], +[1,3,2293], +[0,0,55,2294,6], +[0,-783,-2518,-422,-1654,-3449,-3651,-13734], +[1,3,2296], +[0,2297,191,2298,5], +[0,-475,-13733,-36,-2595,-2517,-488,-980], +[0,-384,-1407,-2516,-332,-41,-2515,-105,-245], +[1,3,2300], +[0,2301,31,7,4], +[0,-2514,-528,-197,-5597], +[1,3,2303], +[0,2304,2305,2306,4], +[0,-489,-20,-96,-687,-749,-461], +[0,-9,-1,-30,-89,-55,-4,-48,-2,-5,-18,-2136,-413,-13732,-5450,-83,-3448,-103,-187,-2655,-848,-13731,-12,-25,-13730,-3447, +-859], +[0,-1060,-2573,-852,-289,-308,-5449], +[1,3,2308], +[0,2309,2310,2311,4], +[0,-276], +[0,-5,-43,-316,-2005,-13729,-13728,-1091,-113,-16,-884,-33,-2,-247,-5448,-259], +[0,-2513,-353,-1085,-13727,-13726,-1217,-782], +[1,3,2313], +[0,2314,55,2315,4], +[0,-13725,-2132,-325,-13724,-5447], +[0,-353,-952,-1069,-1085,-2512,-13723,-106,-450,-3446,-3445,-13722], +[1,3,2317], +[0,2318,2319,2320,4], +[0,-36,-1016,-751,-2176], +[0,-1,-3,-15,-125], +[0,-52,-111,-332,-223,-5446], +[1,3,2322], +[0,0,84,2323,11], +[0,-223,-41,-5445,-6050], +[1,3,2325], +[0,0,2326,7,4], +[0,-1,-8,-27], +[1,3,2328], +[0,2329,2330,2331,4], +[0,-36,-13721], +[0,-2627,-49,-62,-283,-48,-162,-257,-2698,-5,-954,-22,-19,-51,-43,-152,-1,-12,-1550,-25,-41,-920,-348,-9,-18,-376,-65, +-1311,-4,-134,-125,-371,-124,-2], +[0,-223,-1216,-376,-3444,-41], +[1,3,2333], +[0,0,2334,2335,5], +[0,-320,-2698,-5,-103,-920,-33,-2,-104,-847,-30], +[0,-223,-690,-3444,-41], +[1,3,2337], +[0,0,2338,2339,8], +[0,-2537,-5,-103,-1567,-1653,-1,-1552,-2511,-4,-13720,-1411,-394,-2,-1287,-30], +[0,-194,-738,-946,-5444,-37,-3515,-133,-490,-13719,-550,-627,-13718], +[1,3,2341], +[0,0,2342,2343,5], +[0,-34,-51,-1560,-5443,-13717,-351,-2510,-643,-13716,-13715,-13714,-13713,-5442,-13712,-6305,-5441,-13711,-9,-13710,-6, +-13709,-1,-13708,-13707,-13706,-23,-13705,-16,-13704,-13703,-13702,-1854,-13701,-13700,-3964,-524,-993,-13699,-35,-250, +-147,-13698,-247,-13697,-11,-13696,-18,-13695,-13694,-474,-13693,-13692,-5440,-13691,-136,-1800,-1551], +[0,-1059,-271,-1067], +[1,3,2345], +[0,0,2346,2347,6], +[0,-43,-1,-84,-10,-214,-76,-67,-131], +[0,-1027,-105,-13690,-1249], +[1,3,2349], +[0,0,2350,2351,5], +[0,-15,-3,-1,-830,-76,-10,-67,-84,-131], +[0,-924,-105,-2096,-1249,-13689], +[1,3,2353], +[0,2354,0,2355,4], +[0,-3443,-13688,-467,-2509,-13687,-3542,-5439,-13686], +[0,-575,-2004,-780,-263,-37], +[1,3,2357], +[0,2358,0,2359,9], +[0,-467,-2003,-13685,-575], +[0,-37,-724,-575,-2004,-780,-263], +[1,3,2361], +[0,2362,0,2363,11], +[0,-13684], +[0,-575,-13683,-3442], +[1,3,2365], +[0,0,2366,2367,4], +[0,-13682,-85], +[0,-452,-2002,-2508,-774,-91,-36], +[1,3,2369], +[0,0,2370,2371,5], +[0,-5438,-103,-13681,-2,-30], +[0,-352,-1652], +[1,3,2373], +[0,2374,81,2375,4], +[0,-352,-1344], +[0,-352,-332], +[1,3,2377], +[0,2378,2379,2380,10], +[0,-1652,-36,-2517,-488], +[0,-223,-1,-84,-10,-214,-76,-67,-131,-3,-15,-125], +[0,-223,-41,-332,-3444], +[1,3,2382], +[0,0,0,2383,4], +[0,-352,-13680,-13679], +[1,3,2385], +[0,2386,2387,2388,4], +[0,-13678], +[0,-59,-88,-2838,-13677,-565,-13676,-112], +[0,-1182,-669,-91], +[1,3,2390], +[0,2391,2392,2393,4], +[0,-311,-1542,-639,-1509,-1114], +[0,-151,-8,-9,-262,-425,-1,-237,-55,-13675,-17,-4,-26,-50,-48,-86,-2,-11,-5,-277,-18,-65,-49,-115,-514,-134,-21,-83,-5437, +-145,-181,-161,-10,-5436,-583,-150,-12,-25,-309,-3441,-62], +[0,-17,-107,-2507,-2506,-669], +[1,3,2395], +[0,2396,2397,7,4], +[0,-28,-93,-72,-13674,-71,-1482,-96], +[0,-7,-39,-556], +[1,3,2399], +[0,0,27,2400,4], +[0,-5435,-1651,-114,-13673,-13672,-13671], +[1,3,2402], +[0,2403,2404,2405,4], +[0,-1826,-6505,-13670], +[0,-47,-87,-2,-6,-35], +[0,-6,-2,-1651,-13669,-13668], +[1,3,2407], +[0,2408,2409,2410,4], +[0,-1178,-13667,-13666,-13665,-412,-118,-466,-16,-3887], +[0,-13664,-43,-199,-1494], +[0,-1026,-337,-37], +[1,3,2412], +[0,0,0,2413,5], +[0,-5434,-3440,-846,-3439,-2505,-3438,-2504,-5433,-13663,-5432,-5431,-5430,-5429,-13662,-5428,-13661,-5427,-13660,-5426, +-5425,-5424,-13659,-5423,-13658,-5422,-5421,-5420,-13657,-5419,-5418,-5417,-5416,-5415,-13656,-3437,-5414,-13655,-5413, +-5412,-5411,-5410,-5409,-13654,-549,-1406,-672], +[1,3,2415], +[0,2416,2417,2418,4], +[0,-242,-980], +[0,-838,-1,-41,-3,-15,-125], +[0,-383,-41,-223,-332], +[1,3,2420], +[0,2421,2422,2423,6], +[0,-1680,-2219,-101,-5408], +[0,-411,-5,-13653,-22,-19,-960,-26,-1,-13652,-12,-251,-10,-76,-2233,-9,-18,-5480,-4,-13651,-2,-30], +[0,-2001,-1085,-353], +[1,3,2425], +[0,2426,2427,2428,4], +[0,-101,-13650,-13649,-88,-113], +[0,-3,-15,-82,-395,-27,-34], +[0,-787,-56], +[1,3,2430], +[0,2431,2432,2433,4], +[0,-2000,-206,-467], +[0,-51,-118,-493,-2003,-34], +[0,-724,-37,-669,-13648,-2000,-126,-625,-536,-303,-245,-28,-3436,-752,-508,-13647,-450,-1427,-3435], +[1,3,2435], +[0,2436,2437,2438,4], +[0,-402,-13646,-238,-5407,-13645,-470,-3434], +[0,-43,-51,-153,-198,-27,-1,-55,-48,-13644,-2,-5,-1106,-83], +[0,-45,-6504,-13643,-3468,-5497,-249,-335,-105,-401,-1422,-402,-113,-195,-1080,-1407], +[1,3,2440], +[0,0,0,2441,11], +[0,-6503,-13642,-13641,-13640,-13639,-13638,-13637,-13636,-13635,-13634,-13633,-13632,-13631], +[1,3,2443], +[0,2444,2445,2446,5], +[0,-13630,-528,-5591,-13629,-5406], +[0,-3548,-488,-97,-556,-39], +[0,-659], +[1,3,2448], +[0,2449,2450,41,5], +[0,-1521,-242], +[0,-8,-121,-6,-35,-17], +[1,3,2452], +[0,2453,2454,2455,10], +[0,-2941,-13628,-576,-473,-13627,-2503,-36,-349,-1328,-206,-402,-13626,-817,-13625,-1154,-756,-23,-468,-753,-467,-13624, +-3582,-13623,-164,-143,-38,-13622,-13621,-2502,-896,-285,-372,-71,-70], +[0,-60,-26,-1016,-499,-8,-198,-5405,-396,-3433,-1490,-883,-34], +[0,-6502,-248,-24,-3432], +[1,3,2457], +[0,2458,2459,2460,8], +[0,-2710,-1464], +[0,-49,-48,-5404,-13620,-13619,-296,-845,-295,-737,-582,-1058,-252,-1057,-29,-5,-269,-26,-1,-12,-145,-25,-9,-8,-18,-4, +-120,-27,-2,-83], +[0,-1177,-13618,-5403,-3431,-982,-13617,-13616], +[1,3,2462], +[0,0,0,2463,4], +[0,-1177,-184,-46,-73,-2896,-3431,-982,-5402,-786,-1425,-3514,-5401], +[1,3,2465], +[0,0,2466,2467,4], +[0,-5738,-5737,-13615,-13614,-13613,-13612,-3430,-13611,-1650,-5,-1,-13610,-1550,-10,-181,-265,-115,-13609,-67,-826,-150, +-55,-3429,-996,-13608,-1127,-4,-459,-13607,-124,-2,-13606], +[0,-1177,-5401,-982,-6501,-184,-46], +[1,3,2469], +[0,2470,0,2471,4], +[0,-13605,-13604], +[0,-281,-2501,-2506,-3428,-5400,-2500,-13603,-13602,-13601,-13600,-13599,-13598,-13597,-13596,-31,-24,-45,-184,-111], +[1,3,2473], +[0,2474,2475,2476,5], +[0,-13595,-230], +[0,-13594,-945,-5,-103,-964,-1,-4,-2,-30,-13593], +[0,-13592,-13591,-722,-1215], +[1,3,2478], +[0,2479,2480,2481,5], +[0,-188], +[0,-15,-13,-198,-9,-3,-96,-7,-14,-16,-152,-41,-17,-97,-503,-2,-109,-5,-168,-18,-1113,-92,-69,-792,-49,-134,-870,-1821, +-1223,-298,-13590,-62], +[0,-865,-105,-195,-172,-60,-629,-3514,-3515,-141,-6,-484,-91,-1406,-1077,-743,-1420], +[1,3,2483], +[0,2484,2485,2486,6], +[0,-219,-3427,-13589], +[0,-8,-9,-1,-72,-7,-169,-86,-18,-49,-134,-13588,-13587,-62], +[0,-1649,-13586,-722,-1215,-13585,-5399,-1214,-3426], +[1,3,2488], +[0,2489,2490,7,5], +[0,-13584,-13583,-13582,-4011,-13581,-13580,-13579,-528,-5398,-13578,-3915,-13577], +[0,-239,-1,-3548,-15,-1126,-13576,-488,-16,-39], +[1,3,2492], +[0,0,0,2493,5], +[0,-667,-659,-13575,-5397,-13574,-13573,-13572,-13571,-13570,-13569,-13568,-13567,-13566,-13565,-13564,-13563,-13562, +-13561,-5396,-13560], +[1,3,2495], +[0,192,2496,2497,4], +[0,-43,-1,-13559,-10,-265,-76,-25,-3,-13558,-65,-4], +[0,-2005,-73], +[1,3,2499], +[0,2500,2501,2502,4], +[0,-13557,-13556,-13555,-13554,-13553,-13552,-13551,-1190,-20,-2521,-58,-13550,-13549,-13548,-13547,-13546,-13545,-3425, +-3424,-16,-311], +[0,-634,-137,-362,-93], +[0,-13544,-581,-354,-5502,-2013,-13543,-13542,-13541,-217], +[1,3,2504], +[0,2505,2506,2507,4], +[0,-528,-130,-5395], +[0,-3,-82,-1520,-475], +[0,-24,-73,-1753,-1275], +[1,3,2509], +[0,0,2510,2511,9], +[0,-48,-1999,-3423,-1,-38,-14,-1104], +[0,-38,-218,-24,-3730,-13540,-1056,-2499], +[1,3,2513], +[0,0,2514,2515,5], +[0,-1998,-586,-69,-5,-955,-5394,-1,-5393,-12,-25,-5392,-9,-13539,-79,-18,-3,-417,-4,-975,-1997,-2,-5391,-5390], +[0,-24,-3422,-1256], +[1,3,2517], +[0,2518,2519,2520,4], +[0,-1471,-38,-2498,-2195,-2497,-2758,-465,-16], +[0,-50,-11,-21,-49,-62,-944,-86,-26,-425,-237,-1338,-1,-12,-10,-277,-9,-8,-176,-222,-1143,-18,-262,-377,-65,-492,-805,-4, +-77,-462,-134,-138,-154,-393,-1791,-438,-17], +[0,-17,-24,-779,-195,-628], +[1,3,2522], +[0,2523,2524,2525,5], +[0,-382,-38,-1321,-639,-1114,-1099], +[0,-151,-1773,-8,-77,-9,-262,-425,-1,-237,-89,-55,-887,-17,-13538,-4,-576,-26,-50,-48,-86,-144,-2,-11,-13537,-5389,-5,-18, +-65,-462,-1452,-49,-115,-514,-13536,-134,-21,-145,-535,-181,-10,-13535,-583,-150,-12,-25,-377,-309,-3441,-62], +[0,-382,-24,-1773,-576,-5775,-89,-17,-2496,-1996,-13534,-227,-776,-580,-1648], +[1,3,2527], +[0,2528,2529,2530,4], +[0,-3421,-2749,-3471,-2759,-1659], +[0,-555,-30,-2,-5,-497,-320,-5388,-13533,-103], +[0,-24,-1456,-13532], +[1,3,2532], +[0,2533,2534,2535,4], +[0,-2846,-799], +[0,-43,-13531,-89,-1,-13530,-3,-14], +[0,-24,-360,-2138,-73,-13529,-3420,-114,-674,-389,-409], +[1,3,2537], +[0,0,2538,2539,4], +[0,-1999,-305,-28,-38,-696,-805,-16,-179,-558,-13528], +[0,-24,-5387,-2651,-5386], +[1,3,2541], +[0,0,2542,2543,4], +[0,-182,-268,-152,-54,-2032,-66,-3,-985,-416], +[0,-24,-482,-5385,-163,-589], +[1,3,2545], +[0,2546,2547,2548,4], +[0,-2212,-2495], +[0,-160,-38,-13527,-13526], +[0,-24,-541,-227,-721,-1647,-38,-218], +[1,3,2550], +[0,2551,2552,2553,11], +[0,-13525,-5384,-1176,-442], +[0,-3419,-5383,-1,-12,-25,-55,-4], +[0,-2494,-5382,-5381], +[1,3,2555], +[0,0,2556,2557,4], +[0,-11,-21,-140,-48,-1999,-13524,-5380,-2586,-29,-586,-5,-1220,-13523,-86,-20,-119,-1176,-12,-25,-420,-8,-79,-2846,-4, +-373,-153,-3882,-2,-83], +[0,-24,-225,-2,-1683,-1485,-635,-6008], +[1,3,2559], +[0,2560,2561,2562,5], +[0,-3418,-352,-652,-1344], +[0,-15,-3,-1,-223,-125,-168,-619,-2897,-76,-10,-67,-84,-214,-131], +[0,-3418,-2493,-332,-41], +[1,3,2564], +[0,2565,2566,2567,4], +[0,-2242,-2241,-6497,-3895], +[0,-63,-69,-5,-1171,-3,-4,-14,-1796,-1299,-82,-33,-2], +[0,-141,-831,-5379,-73,-165,-1753,-429,-507,-245,-547,-13522,-46,-53], +[1,3,2569], +[0,0,2570,2571,5], +[0,-63,-69,-5,-534,-1171,-3,-4,-14,-1796,-1299,-82,-33,-2], +[0,-245,-547,-831,-406,-46,-53], +[1,3,2573], +[0,0,2574,2575,5], +[0,-63,-69,-5,-2242,-13521,-534,-1171,-3,-1646,-4,-14,-1796,-1299,-82,-3895,-33,-2], +[0,-831,-165,-73,-452,-5379,-245,-46,-53], +[1,3,2577], +[0,0,2578,2579,9], +[0,-63,-69,-5,-2242,-534,-1171,-41,-3,-4,-14,-1796,-1299,-82,-33,-2], +[0,-831,-429,-1753,-46,-53], +[1,3,2581], +[0,34,2582,2583,4], +[0,-5378,-69,-5,-4026,-56,-88,-3,-15,-27,-57,-33,-2,-1105,-17,-92], +[0,-831,-13520,-13519,-4008,-106,-13518,-13517,-13516,-13515,-13514], +[1,3,2585], +[0,2586,2587,149,8], +[0,-1512,-28,-135,-23,-2174,-533,-6036,-128,-116,-3417,-361,-58,-1003,-661,-5750,-6040,-5377,-2136,-13513,-817,-3416, +-3415,-13512,-424,-6041,-13511,-6042], +[0,-15,-156,-13,-3,-27,-1,-223,-159,-833,-40,-524,-4,-3414,-56,-50,-59,-186,-11,-94,-316,-396,-178,-6037,-3783,-21,-76, +-827,-342,-10,-355,-67,-12,-84,-25,-131,-2570], +[1,3,2589], +[0,0,2590,2591,4], +[0,-620,-268,-447,-59,-1,-13510,-419,-72,-13509,-39,-2780,-112,-13508,-744], +[0,-2492,-2491,-5376,-13507,-123], +[1,3,2593], +[0,2594,0,2595,4], +[0,-156,-5720,-20,-574,-36,-118,-3413,-977,-299,-1829,-23,-13506,-504,-533,-287,-116,-5456,-573,-40,-88,-13505,-58,-687, +-1482,-736,-1876,-661,-1995,-473,-1165,-647,-523,-13504,-13503,-1858,-5594,-461,-13502,-3412,-3887,-1837,-2135], +[0,-544,-91,-502,-13501,-1438,-1437,-857,-129,-1405,-456,-5375,-5374,-75,-61], +[1,3,2597], +[0,2598,2599,7,5], +[0,-20,-13500,-2171,-503,-6397,-6057,-5373], +[0,-13,-3,-16,-4,-109,-403,-69,-1517,-120], +[1,3,2601], +[0,2602,2603,2604,5], +[0,-5372,-13499,-13498,-13497,-13496,-5371,-3411,-13495,-2240,-13494,-13493,-2553,-13492,-5370,-2239,-2894,-13491,-5369, +-5368,-13490,-5367,-13489,-13488,-13487,-5366,-6496,-13486,-5365,-3410,-5364], +[0,-3,-1,-14,-793,-5363,-6168,-231,-5362,-204,-63], +[0,-1175,-255,-1404,-256,-485,-327], +[1,3,2606], +[0,2607,2608,2609,8], +[0,-13485], +[0,-63,-5372,-5368,-1,-79,-3,-14,-226], +[0,-1175,-2490,-13484,-13483,-13482,-5361,-720,-1645,-670], +[1,3,2611], +[0,2612,2613,2614,10], +[0,-2240,-5369,-5365,-3411,-3410], +[0,-2553,-1,-3,-14,-226], +[0,-1175,-2490,-2500,-1404], +[1,3,2616], +[0,0,2617,2618,5], +[0,-1,-79,-3,-14,-226], +[0,-1175,-2490,-255,-13481,-13480], +[1,3,2620], +[0,2621,2622,2623,6], +[0,-5371], +[0,-5367,-1,-3,-14,-226], +[0,-1175,-2490,-1661,-1404,-327,-256], +[1,3,2625], +[0,2626,0,2627,5], +[0,-6468], +[0,-184,-13479,-485,-3751], +[1,3,2629], +[0,0,0,2630,4], +[0,-4007,-1292,-557,-3409,-5360,-5359,-13478,-13477,-5358,-5357,-5356,-13476,-5355,-5354,-13475,-6,-24,-102,-74,-129,-52, +-399,-184,-13474,-1445,-3408,-220,-1280,-2591,-13473], +[1,3,2632], +[0,0,14,2633,9], +[0,-5353,-88,-2007,-1644,-587,-1428,-37,-466,-58,-773,-308,-5688,-13472,-13471,-5352,-13470,-165,-73,-1250], +[1,3,2635], +[0,2636,2637,7,4], +[0,-13469,-193,-60,-20,-1565,-383,-1177,-41,-200,-13468,-6393,-236,-2820,-113,-13467,-13466,-13465,-2168,-96], +[0,-182,-620,-328,-13,-3,-1798,-3635], +[1,3,2639], +[0,0,2640,7,10], +[0,-3407,-153,-13464,-5965,-27,-1,-13463,-23,-30,-124,-1545,-4,-56,-50,-1650,-398,-600,-321,-2,-11,-5,-3406,-13462,-269, +-13461,-3775,-142,-13460,-1079,-1439,-21,-13459,-103,-310,-140,-19,-3405,-22,-13458], +[1,3,2642], +[0,0,2643,7,5], +[0,-3,-112,-50,-11,-21], +[1,3,2645], +[0,0,2646,2647,5], +[0,-50,-11,-781,-21,-737,-169,-86,-1351,-26,-1,-191,-10,-145,-3404,-378,-8,-78,-400,-812,-1130,-236,-907,-752,-235,-4,-14, +-273,-226,-321,-2], +[0,-574,-956,-588,-529,-236], +[1,3,2649], +[0,2650,2651,2652,4], +[0,-711,-906], +[0,-13457], +[0,-60,-2018,-13456,-13455], +[1,3,2654], +[0,0,118,2655,5], +[0,-1871,-13454,-1226,-1994,-13453,-3458,-3403,-13452,-3402,-1403,-13451], +[1,3,2657], +[0,2658,2659,2660,4], +[0,-567], +[0,-1572,-59,-56,-78,-910,-139,-189,-3,-611,-27,-34], +[0,-36,-263,-3401], +[1,3,2662], +[0,0,14,2663,4], +[0,-1870,-13450,-446,-13449,-2013,-3480,-5501,-163,-183,-452], +[1,3,2665], +[0,2666,2667,2668,10], +[0,-13448,-13447,-13446,-5351,-325,-753,-1124,-13445], +[0,-381,-13444,-493,-1124,-7], +[0,-5350,-13443,-2892,-943,-312,-13442,-5349,-855,-1787], +[1,3,2670], +[0,0,2671,2672,8], +[0,-50,-21,-140,-861,-13441,-1650,-359,-29,-22,-19,-278,-2569,-5348,-425,-1,-5347,-1550,-145,-181,-1334,-214,-115,-2489, +-2488,-826,-1643,-9,-8,-1993,-811,-18,-996,-525,-1127,-2487,-4,-5346,-900,-373,-5345,-171,-2,-5344], +[0,-534,-1218,-13440,-339], +[1,3,2674], +[0,0,2675,2676,5], +[0,-29,-701,-57], +[0,-13439,-13438,-670,-13437,-13436,-13435,-13434], +[1,3,2678], +[0,2679,0,2680,8], +[0,-13433], +[0,-406,-1992,-1642,-444,-1091,-494,-536,-669,-3769,-1222,-772,-1641,-1991,-2486,-1990,-1091], +[0,68,15,16,4], +[1,3,2683], +[0,0,2684,2685,5], +[0,-106,-3,-1,-23,-7,-288,-116,-13432,-421,-112,-830,-265,-995], +[0,-207,-5343,-1402,-13431], +[1,3,2687], +[0,0,2688,2689,5], +[0,-13430,-3,-1,-66,-110,-56,-13429,-1826,-877,-3400,-13428,-13427,-80,-13426], +[0,-13425,-13424,-13423,-61], +[1,3,2691], +[0,2692,2693,2694,10], +[0,-13422,-1030,-13421,-3483,-5342,-13420,-5341,-3399,-13419,-1151,-2043,-1508,-609,-13418,-5340,-13417,-13416,-3398], +[0,-239,-766,-279,-13415,-1,-1015,-5339,-1323,-13414,-213,-275,-15,-3815,-187,-16,-39], +[0,-5338,-1664,-1402], +[1,3,2696], +[0,0,70,2697,4], +[0,-1869,-444,-1222,-772,-742,-536,-494,-106], +[1,3,2699], +[0,0,2700,2701,9], +[0,-5,-13413,-1152,-13412,-14,-463,-341,-39,-33,-2,-112], +[0,-494,-1222,-444,-669,-536,-772], +[1,3,2703], +[0,2704,2705,2706,5], +[0,-206,-1154,-13411,-1401,-564,-5337,-285], +[0,-51,-110,-372,-81,-34], +[0,-775,-625,-3397,-3396,-626,-2485,-5336,-5335,-1219,-5334,-1989,-1410,-3395,-7,-2484,-28,-624,-126,-942,-405,-303,-1400], +[1,3,2708], +[0,2709,2710,2711,10], +[0,-151,-467,-5337], +[0,-51,-118,-5333,-34], +[0,-724,-37,-775,-151,-626,-2485,-5336,-5335,-1219,-5334,-1989,-1410,-3395,-7,-2484,-28,-126,-625,-942,-405,-303,-1400, +-1215], +[1,3,2713], +[0,2714,2715,2716,6], +[0,-3394,-13410], +[0,-2483,-2482,-81,-34], +[0,-172,-128,-658,-13409,-785,-13408,-2481,-13407,-783,-3507,-241,-13406,-658,-60,-629,-481,-116,-13405,-2480,-850], +[1,3,2718], +[0,2719,2720,2721,10], +[0,-36,-276,-96,-469,-23,-16,-101,-128,-5332,-5484,-446,-93,-13404,-1513,-403,-1546,-641,-427,-3393,-577,-1640,-6118, +-5583], +[0,-15,-3,-1,-82,-220,-40,-4,-26,-50,-180,-2,-11,-94,-13403,-480,-178,-21,-265,-64,-266,-10,-355,-12,-148,-25,-278,-1230], +[0,-280,-1988,-451,-1987,-1563,-2027,-685,-2747], +[1,3,2723], +[0,0,2724,2725,6], +[0,-110,-1186,-1,-84,-10,-214,-76,-67,-131,-66,-3,-488,-1484], +[0,-13402,-13401], +[1,3,2727], +[0,2728,2729,7,4], +[0,-36,-5614,-206,-13400,-362,-88,-1123,-5331,-128], +[0,-13399,-9,-1451,-65,-97], +[1,3,2731], +[0,0,14,2732,10], +[0,-2006,-13398,-668,-5330,-5329,-354,-163,-183,-2508,-3392,-5328], +[1,3,2734], +[0,2735,2736,2737,5], +[0,-2012], +[0,-5327,-69,-5,-13397,-1,-13396,-118,-13395,-138,-555,-3391,-2], +[0,-668,-5326], +[1,3,2739], +[0,0,2740,2741,6], +[0,-15,-81,-13,-78,-3,-1,-14,-55,-17,-26,-112,-48,-2,-11,-189,-98,-526,-1228,-178,-21,-83,-170,-418,-310,-355,-648], +[0,-207,-5325,-1402,-3390,-183,-106,-24,-45], +[1,3,2743], +[0,2744,2745,2746,8], +[0,-207,-13394], +[0,-48,-1986,-13393,-29,-5,-13392,-1639,-160,-6515,-1182,-535,-144,-382,-1,-145,-67,-277,-55,-250,-5324,-346,-9,-13391, +-13390,-8,-18,-997,-377,-72,-466,-38,-696,-561,-492,-805,-4,-57,-211,-33,-2,-83,-438,-17,-92,-170,-792], +[0,-387,-207,-637,-13389,-1063,-13388,-13387,-1055,-2107,-637,-224,-31,-6492,-13386,-13385], +[1,3,2748], +[0,119,120,2749,4], +[0,-13383,-13382,-13381,-13380,-13379,-13378,-13377,-45,-3389,-1638,-270,-2,-3388,-733,-436,-13376,-13375,-141,-1251, +-3387,-5322,-13374,-13373,-13372,-13371,-13370,-13369,-13368,-3789,-13367,-13366,-13365,-248,-13364,-13363,-3386,-13362, +-13361,-13360,-13359,-13358,-720,-13357,-13356,-13355,-13354,-13353,-13352,-13351,-13350,-13349,-13348,-13347,-13346, +-5321,-1080,-13345,-13344,-13343,-13342,-13341,-13340,-13339, +-13338,-3385,-13337,-13336,-13335,-450,-1213,-3384,-3383,-2479,-3382,-3381,-3380,-3379,-3378,-3377,-3376,-3375,-5320, +-1985,-3374,-846,-3373,-3372,-3371,-3370,-3369,-3368,-3367,-3366,-2478,-132,-1399,-3365,-2622,-3364,-5319,-5318,-542, +-3363,-42,-1404], +[1,3,2751], +[0,0,2752,2753,6], +[0,-13,-244,-54,-177,-302,-1010,-117,-1000,-345,-3], +[0,-13,-2532,-91,-61], +[1,3,2755], +[0,2756,56,57,4], +[0,-13334,-5317,-4006,-1834,-3932], +[1,3,2758], +[0,2759,2760,2761,6], +[0,-44,-284,-13333,-6026,-6567,-6025,-1017,-13332,-6024,-13331,-6023,-3778,-13330], +[0,-81,-8,-2133,-1,-196,-1172,-4,-26,-2,-5,-13329,-6022,-6021,-2702,-6020,-19,-22], +[0,-3777,-99,-3362,-337,-141,-6019], +[1,3,2763], +[0,2764,0,7,4], +[0,-112,-761,-565], +[1,3,2766], +[0,2767,2768,193,8], +[0,-1408,-5316,-13328,-5315,-250,-228,-1984], +[0,-13327], +[1,3,2770], +[0,2771,0,2772,6], +[0,-815], +[0,-4005,-42,-166,-13326,-100,-107], +[1,3,2774], +[0,0,0,2775,9], +[0,-13325,-3361,-1212,-1637,-46,-2520], +[1,3,2777], +[0,2778,31,2779,10], +[0,-13324,-5314,-13323], +[0,-3360,-13322], +[1,3,2781], +[0,2782,2783,2784,8], +[0,-201,-96,-6489,-5313,-5312,-2476], +[0,-13,-3,-41,-168], +[0,-42,-388,-75,-678,-390], +[1,3,2786], +[0,2787,2788,2789,10], +[0,-3800,-2476,-5311,-193,-2046,-13321,-13320,-13319,-201,-5313,-5312,-215,-5310,-13318,-13317,-991,-806,-13316,-687, +-1242], +[0,-1563,-41,-3,-16], +[0,-42,-75,-678,-390], +[1,3,2791], +[0,2792,0,2793,9], +[0,-58,-228,-40,-247,-379], +[0,-42,-390,-114,-13315,-316], +[1,3,2795], +[0,2796,0,193,4], +[0,-1171,-13314,-13313], +[1,3,2798], +[0,2799,2800,2801,10], +[0,-5309,-3359,-5308,-13312,-1805,-1290,-123], +[0,-116,-13,-1822,-3], +[0,-1983,-13311], +[1,3,2803], +[0,2804,2805,2806,4], +[0,-13310,-13309,-13308,-2257,-13307,-925,-13306,-2005,-13305,-13304,-13303,-510,-13302,-13301,-13300,-13299,-13298, +-13297,-200,-5307,-5306,-13296,-261,-188,-13295,-13294,-13293,-7,-13292,-13291,-13290,-16,-13289,-13288,-13287,-247, +-13286,-2168], +[0,-13285,-5305,-13284,-316,-5304,-236,-5303,-5302], +[0,-2731,-666,-13283,-862,-37,-1982,-316,-665,-593,-5301,-1398,-684,-13282,-13281,-5516,-52,-114,-13280,-141,-165,-73, +-844,-2112,-959,-3619,-740,-1054,-589,-202,-111,-13279,-512], +[1,3,2808], +[0,0,2809,2810,5], +[0,-739,-5,-103,-848,-110,-3358,-5300,-1,-10,-181,-2,-30], +[0,-53,-46,-318,-409,-166], +[1,3,2812], +[0,0,2813,2814,6], +[0,-11,-21,-48,-203,-80,-231,-63,-204,-160,-1031,-384,-1338,-1,-12,-55,-525,-5512,-65,-38,-1808,-1504,-561,-4,-7,-14, +-1246,-77], +[0,-390,-2762,-13278,-42,-114,-45,-270,-100,-969,-107,-5328,-13277], +[1,3,2816], +[0,2817,71,2818,8], +[0,-13276,-13275,-497,-88,-247,-13274], +[0,-571,-100,-42,-1728,-73,-1981,-1397,-5299], +[1,3,2820], +[0,2821,2822,2823,8], +[0,-11,-879,-427,-577,-479,-20,-119,-207,-13273,-2103,-486,-28,-6225,-379,-758,-101,-13272,-23,-2600,-13271,-5298,-5297, +-1124,-2190,-274,-521,-2810,-13270,-1719,-128,-599,-1396,-340,-483,-13269,-13268,-96], +[0,-5296,-298,-13267,-1,-12,-40,-9,-8,-650,-18,-568,-4,-134,-156], +[0,-42,-1254,-166,-2475,-73,-878], +[1,3,2825], +[0,2826,2827,2828,5], +[0,-13266,-13265,-36,-13264,-13263,-1211,-3357,-247], +[0,-5,-54,-531,-1010,-345,-995,-5454,-27,-1487], +[0,-13262,-13261,-6488,-13260,-1421,-1210,-386,-1073], +[1,3,2830], +[0,2831,2832,2833,4], +[0,-3796,-1847,-28,-20,-6,-445,-23,-72,-926,-382,-41,-38,-440,-113,-272,-1743,-1486,-40,-2220,-58,-35,-267,-644,-1119,-11, +-13259,-479,-160,-379,-997,-3356,-2660,-5295,-13258,-486,-480,-178,-577,-1302,-5294,-21,-5293,-3355,-136,-424,-1022,-216, +-306], +[0,-7,-2474,-1852,-5292], +[0,-42,-5291,-3354,-1867], +[1,3,2835], +[0,2836,27,2837,5], +[0,-13257,-304,-2648,-1842,-2875,-3964,-1092,-13256,-2691,-93,-2187,-2473,-133,-5290], +[0,-1867,-1092,-13255,-42], +[1,3,2839], +[0,2840,2841,2842,6], +[0,-90,-764], +[0,-13254,-13253,-50,-11,-140,-13252,-13251,-13250,-22,-19,-94,-98,-1,-10,-148,-265,-64,-421,-28,-249,-78,-139,-212,-3353, +-189,-418,-1320,-648,-526,-3,-7,-5289,-27,-2,-17], +[0,-1866,-108,-255,-99,-13249,-225,-783,-5288,-2010,-1866,-1980,-13248,-24], +[1,3,2844], +[0,2845,2846,2847,4], +[0,-457,-1659,-5287], +[0,-8,-1,-238,-57,-4,-2,-29,-5,-497,-12,-19,-22], +[0,-31,-506,-844], +[1,3,2849], +[0,0,2850,2851,8], +[0,-13,-1,-54,-167,-177,-347,-302,-1011,-101,-78,-703,-139,-212,-189,-418,-3,-4,-16], +[0,-255,-281,-13247,-844,-31,-327,-256,-579], +[1,3,2853], +[0,2854,2855,2856,6], +[0,-5286], +[0,-11,-21,-203,-63,-232,-204,-329,-5,-26,-12,-25,-249,-79,-78,-1527,-139,-212,-1830,-755,-13246,-88,-65,-235,-4,-375, +-5285,-7,-14,-415,-13245,-301,-44,-2,-34], +[0,-255,-1282,-31,-256,-13244,-667,-5284,-5283,-941,-719,-5282], +[1,3,2858], +[0,0,2859,2860,10], +[0,-15,-1,-56,-235,-5696], +[0,-271,-508,-631,-1054], +[1,3,2862], +[0,0,2863,2864,4], +[0,-5,-1746,-27,-97,-134,-85,-2], +[0,-215,-1217,-5281,-782,-1454,-353,-2512], +[1,3,2866], +[0,194,2867,2868,5], +[0,-5,-97,-134,-85,-2], +[0,-215,-1636,-1454,-5280,-13243,-1217,-5281], +[1,3,2870], +[0,2871,2872,2873,4], +[0,-402,-1124,-904,-13242,-753,-1331,-2892,-1979,-498,-13241,-1027], +[0,-34,-51,-198,-13240,-7,-493,-13239], +[0,-1340,-943,-105,-113,-195], +[1,3,2875], +[0,2876,2877,2878,9], +[0,-1340,-13238,-7], +[0,-3826,-9,-3,-1792,-97], +[0,-1340,-571,-1397,-1981,-5279,-2472,-312,-943,-5278], +[1,3,2880], +[0,2881,2882,2883,4], +[0,-6487,-4001,-4000,-3998,-3997,-3999], +[0,-1,-7,-48,-2,-5,-83,-19,-22], +[0,-1023,-42,-37,-166,-476,-100,-106], +[1,3,2885], +[0,2886,2887,2888,8], +[0,-206,-4001,-13237,-13236,-4000,-3998,-3352,-3997,-3999], +[0,-8,-1,-7,-288,-57,-48,-2,-29,-5,-1978,-83,-19,-22], +[0,-1023,-42,-37], +[1,3,2890], +[0,2891,2892,2893,4], +[0,-2509], +[0,-8,-1,-7,-57,-48,-2,-29,-5,-1978,-83,-19,-3443,-22], +[0,-1023,-42], +[1,3,2895], +[0,2896,121,2897,4], +[0,-3351], +[0,-1023,-42,-271], +[1,3,2899], +[0,2900,2901,2902,4], +[0,-597,-166,-5277], +[0,-8,-1,-7,-57,-660,-48,-2,-29,-5,-13235,-1978,-83,-19,-22], +[0,-1023,-42,-166], +[1,3,2904], +[0,2905,2906,2907,4], +[0,-221,-379,-1137], +[0,-8,-1,-7,-57,-48,-2,-29,-5,-1978,-83,-874,-19,-22], +[0,-1023,-42,-476], +[1,3,2909], +[0,0,121,2910,8], +[0,-1023,-42,-106], +[1,3,2912], +[0,2913,121,2914,5], +[0,-1137], +[0,-1023,-42,-100], +[1,3,2916], +[0,2917,2918,2919,4], +[0,-1856,-529,-242], +[0,-11,-2033,-1231,-5276,-94,-5275,-26,-151,-1862,-1,-3350,-12,-827,-500,-148,-25,-64,-13234,-420,-32,-615,-1009,-6448, +-13233,-2880,-820,-1161,-314,-363,-8,-4,-6,-35,-286,-13232,-71,-1105,-2471], +[0,-13231,-412,-6,-2470], +[1,3,2921], +[0,2922,2923,2924,5], +[0,-957,-3349], +[0,-13230,-13229,-13,-502,-5274,-78,-139,-189,-2469,-702,-3,-1821,-6378,-3348,-77,-27,-186], +[0,-5273,-5272,-13228,-1053], +[1,3,2926], +[0,2927,2928,7,5], +[0,-96,-196,-3347,-40,-13227,-599,-2865,-5271,-5270,-5269], +[0,-1,-5,-413,-185,-19,-5268,-13226,-22], +[1,3,2930], +[0,2931,0,2932,4], +[0,-1635], +[0,-718,-6485,-450,-386,-46,-37,-13225,-332], +[1,3,2934], +[0,2935,2936,113,4], +[0,-3634,-3633,-965,-252,-246,-408,-2606,-2605,-2604,-3632,-267,-5726,-5728,-832,-326,-3631,-829,-1687,-2602,-2601,-486, +-1472,-1843,-2223,-760,-3630,-818,-1530,-2054,-101,-1824,-2600,-2053,-1314,-562,-1730,-3629,-440,-693,-2090,-2638,-2192, +-2637,-1303,-1120,-1100,-1803,-5727,-3628,-1801,-3627,-750,-2052,-864,-521,-601,-804,-77,-1743,-2599,-2598,-133,-340, +-1078,-195,-3626,-483,-3625], +[0,-49,-62,-2134,-3624,-2051,-411,-3623,-5,-1686,-963,-47,-1764,-87,-3622,-3621,-1,-2654,-229,-822,-2597,-3620,-9,-18,-4, +-1122,-900,-6,-35,-179,-33,-2,-30,-2050,-5725], +[1,3,2938], +[0,2939,2940,113,6], +[0,-3634,-3633,-965,-252,-246,-408,-2606,-2605,-2604,-3632,-267,-2603,-832,-326,-3631,-3625,-829,-1687,-2602,-2601,-486, +-1472,-1843,-2223,-760,-3630,-818,-1530,-2054,-101,-1824,-2600,-2053,-1314,-562,-1730,-3629,-440,-693,-2090,-2638,-2637, +-1120,-1100,-1803,-1801,-3627,-750,-2052,-864,-521,-601,-804,-77,-1743,-2598,-133,-340,-1078,-195,-3626,-483], +[0,-49,-62,-2134,-3624,-2051,-411,-3623,-5,-1686,-47,-1764,-3622,-3621,-1,-229,-822,-3620,-9,-18,-4,-1122,-900,-6,-179, +-33,-2,-30], +[1,3,2942], +[0,0,2943,7,5], +[0,-39,-460], +[1,3,2945], +[0,2946,2947,110,8], +[0,-13224,-13223,-13222,-13221,-13220,-90,-1738,-13219,-13218,-13217,-13216,-13215,-267,-832,-574,-13214,-13213,-13212, +-13211,-13210,-13209,-13208,-13207,-13206,-13205,-13204,-13203,-13202,-13201,-13200,-13199,-13198,-13197,-13196,-13195, +-13194,-13193,-13192,-13191,-13190,-13189,-13188,-13187,-13186,-13185,-13184,-13183,-2089,-1788], +[0,-5650,-5645,-2742,-13182,-3680,-320,-3577,-2697,-3770,-2696,-2695,-2278,-1088,-3679,-3576,-1257,-5644,-5647,-1355,-713, +-3678,-1439,-965,-330,-155,-122,-317,-3579,-5656,-5651,-185,-3677,-5652,-5649,-29,-1712,-3676,-2636,-1711,-586,-142,-725, +-5,-5654,-5267,-3580,-963,-2709,-2088,-47,-1764,-87,-3675,-5790,-137,-5655,-1423,-3674,-1436,-22,-19,-2268,-3585, +-3673,-3581,-3672,-201,-20,-238,-5646,-1679,-26,-2244,-2087,-215,-1559,-5648,-1264,-1,-266,-12,-251,-923,-10,-145,-148, +-5266,-214,-64,-190,-150,-229,-2635,-40,-348,-28,-2054,-419,-1005,-1004,-569,-2868,-8,-1710,-1528,-176,-816,-1435,-2634, +-249,-79,-3671,-2152,-18,-23,-5653,-1709,-88,-1130,-188,-1510,-1314,-149,-324,-3582,-991,-806, +-4,-2821,-695,-440,-157,-464,-3670,-2633,-3669,-6,-1120,-5658,-35,-2744,-2632,-3668,-3667,-2814,-3666,-559,-3665,-342, +-750,-274,-147,-521,-2631,-3575,-2086,-804,-7,-5661,-16,-689,-600,-321,-5660,-5787,-312,-1290,-175,-153,-124,-2,-2629, +-5659,-17,-520,-1708], +[1,3,2949], +[0,0,2950,2951,10], +[0,-49,-62,-1977,-48,-1,-12,-265,-25,-9,-18,-3,-4,-14,-82,-134], +[0,-670,-60,-1418,-13181,-1171,-406,-172,-3346,-3507,-46,-53], +[1,3,2953], +[0,2954,2955,2956,11], +[0,-44,-13180], +[0,-538,-11,-479,-5269,-5271,-13179,-478,-80,-63,-232,-29,-22,-19,-20,-58,-1172,-89,-1,-40,-206,-9,-8,-1528,-117,-297, +-149,-14,-226,-1493,-16,-175,-57,-2], +[0,-3996,-13178,-3472,-13177,-1404,-3345,-13176,-327,-256], +[1,3,2958], +[0,2959,2960,2961,4], +[0,-1634,-1331,-13175,-1162,-13174,-2468,-13173,-23,-93,-5265,-143,-71,-70,-554,-96], +[0,-109,-185,-13172,-142,-69,-5,-2659,-269,-1270,-1976,-1395,-5264,-413,-13,-423,-40,-498,-3,-15,-180,-7,-27,-186,-33, +-196,-2], +[0,-1634,-1269,-509,-5263,-1052,-5330,-68], +[1,3,2963], +[0,2964,2965,2966,4], +[0,-2215], +[0,-2,-161,-59,-1,-5544,-166,-442,-3,-112], +[0,-271,-1054,-1059,-351], +[1,3,2968], +[0,2969,2970,2971,4], +[0,-20,-23,-13171], +[0,-198,-208,-60,-54,-3,-27,-798,-1,-249,-236,-16,-1033,-1883,-17,-13170,-13169,-116,-565,-4,-71,-421,-229,-3765,-167, +-3344,-59,-11,-5262,-94,-98,-13168,-3343,-21,-76,-532,-243,-10,-656,-347,-67,-12,-84,-25,-131,-5261], +[0,-6484,-5578,-1740], +[0,44,15,16,5], +[1,3,2974], +[0,2975,0,195,6], +[0,-5,-1165,-3342], +[1,3,2977], +[0,2978,2979,2980,4], +[0,-20,-96,-504,-40,-13167,-13166,-13165,-13164,-13163,-3352], +[0,-413,-185], +[0,-471,-862,-666,-1633,-757,-3341,-2467,-13162,-300,-5260,-2466,-13161,-1975,-2465,-5259,-13160,-13159,-13158,-13157, +-13156,-5258,-3572], +[1,3,2982], +[0,2983,2984,2985,4], +[0,-5257,-3342,-13155,-13154,-13153,-13152,-36,-1165,-1979,-40,-13151,-13150,-5256,-13149,-1305,-5255,-128,-16,-518], +[0,-22,-19,-51,-1880,-152,-1,-84,-2234,-10,-76,-67,-15,-1123,-27,-81,-124,-2], +[0,-471,-3341,-2464,-300], +[1,3,2987], +[0,2988,2989,195,10], +[0,-1165,-13148], +[0,-39,-97,-13147,-493], +[1,3,2991], +[0,2992,56,57,6], +[0,-20,-1851,-1834,-2463], +[1,3,2994], +[0,2995,2996,7,8], +[0,-13146], +[0,-54,-3340,-1012,-177,-347,-1011,-378,-249,-78,-139,-212,-400,-909,-345,-23], +[1,3,2998], +[0,2999,3000,3001,5], +[0,-2264,-2926,-326,-6374,-1118,-1788], +[0,-13145,-13144,-182,-169,-98,-278,-355,-1188,-2261,-3339,-268,-2925,-13143,-13,-119,-535,-56,-13142,-26,-144,-1021,-1, +-13141,-1860,-763,-2462,-277,-13140,-32,-1844,-13139,-1537,-379,-346,-911,-5670,-78,-139,-612,-189,-2469,-648,-702,-526, +-3338,-221,-998,-5254,-1318,-377,-3,-1315,-2199,-38,-6353,-7,-462,-13138,-27,-186,-154,-13137,-1105, +-13136,-438,-74,-1103,-882,-1480,-13135,-17,-92,-170,-1780], +[0,-13134,-74,-127], +[1,3,3003], +[0,3004,3005,3006,4], +[0,-2909,-13133,-13132,-13131,-528,-13130,-13129], +[0,-1572,-56,-1,-54,-1012,-167,-616,-532,-347,-13128,-1845,-66,-3], +[0,-13127,-13126,-13125,-13124], +[1,3,3008], +[0,3009,3010,3011,4], +[0,-13123,-13122,-13121,-1530,-13120,-23,-1816], +[0,-49,-62,-51,-238,-26,-351,-1,-1551,-1854,-9,-18,-13119,-15,-13118,-643,-147,-1800,-34], +[0,-4012,-2461,-1059,-443,-5253,-5252,-13117,-13116,-13115,-13114,-1816,-13113,-643,-13112,-271,-740,-2721], +[1,3,3013], +[0,0,3014,7,5], +[0,-48,-13111,-5,-13110,-103,-1,-12,-25,-13109,-4,-5251,-33,-2,-83,-30], +[1,3,3016], +[0,3017,3018,3019,10], +[0,-13108,-13107,-13106,-13105,-13104,-3860,-3337,-13103,-13102,-3336,-2907,-13101,-2253,-6231,-13100,-3335,-3334,-5250, +-13099,-20,-504,-13098,-384,-1178,-3333,-13097,-5249,-13096,-207,-13095,-5692,-13094,-5691,-3332,-118,-921,-41,-761,-349, +-13093,-40,-2548,-2593,-2597,-28,-2549,-13092,-13091,-3331,-614,-1155,-200,-13090,-13089,-23,-221,-13088,-93,-700,-466, +-994,-5265,-5248, +-644,-5247,-13087,-5246,-128,-3516,-1394,-5245,-16,-2592,-1632,-5244,-597,-3886,-1486,-5243,-1102,-5242,-2699,-13086, +-13085,-13084], +[0,-1666,-1882,-13,-244,-5241,-5507,-289,-13083,-13082,-1,-12,-3330,-265,-115,-1330,-5240,-79,-2213,-3,-198,-15,-4,-3329, +-138,-125,-1789,-156,-1974,-881,-219,-13081,-13080], +[0,-300,-13079,-1685,-37,-5239,-13078,-13077,-3834], +[1,3,3021], +[0,3022,3023,3024,4], +[0,-2734,-622,-1096,-3808,-3810,-2725,-6082,-173,-1095,-21,-90,-13076,-5238,-13075,-13074,-1188,-3328,-3336,-2907,-3335, +-5250,-536,-13073,-13072,-3332,-3516,-16], +[0,-11,-5237,-13071,-5236,-13070,-13069,-94,-1882,-13,-1028,-5235,-473,-3333,-159,-5249,-5234,-1556,-2460,-6477,-3327, +-5233,-5232,-5231,-5230,-5229,-1,-5228,-76,-5240,-3326,-3,-375,-342,-3329,-128,-7,-17], +[0,-292,-5239,-5227,-1556,-2150,-1277], +[1,3,3026], +[0,3027,3028,3029,6], +[0,-13068,-13067,-3336,-13066,-1666,-2548,-3331,-5226,-2592,-1102], +[0,-11,-161,-622,-1096,-173,-1095,-90,-5237,-5236,-13065,-5238,-2253,-1882,-13,-5235,-289,-5234,-1556,-6478,-13064,-2460, +-3327,-5233,-5232,-5231,-5230,-5229,-13063,-13062,-13061,-1,-12,-5228,-265,-115,-25,-3325,-1330,-3326,-3,-4,-375,-6350, +-373,-5530,-179,-558,-5773,-17], +[0,-5227,-1556], +[1,3,3031], +[0,3032,3033,3034,8], +[0,-13060,-13059], +[0,-63,-319,-5,-1525,-7,-14,-153,-2], +[0,-6476,-31,-24,-13058,-13057], +[1,3,3036], +[0,0,0,105,8], +[1,3,3038], +[0,0,3039,3040,8], +[0,-3,-1,-66,-76,-10,-67,-84,-131], +[0,-777,-1339,-195], +[1,3,3042], +[0,3043,31,3044,4], +[0,-698], +[0,-245,-940,-2042,-13056,-13055,-13054,-785], +[1,3,3046], +[0,3047,3048,7,4], +[0,-325,-1291], +[0,-872,-29,-5,-425,-1,-583,-9,-8,-18,-262,-4,-2], +[1,3,3050], +[0,3051,3052,3053,4], +[0,-477,-138], +[0,-5,-707,-200,-3,-15,-397,-2], +[0,-2123,-2679,-1737,-1736,-37,-308,-294,-1735,-573,-114,-547,-3745,-336,-2678,-200,-1447,-2122,-45,-141,-335,-490,-397, +-2121,-2120,-1301,-959,-1466,-3744,-1446,-1262,-174,-431,-102,-958,-1776,-2119], +[1,3,3055], +[0,3056,3057,3058,8], +[0,-1662,-13053,-988,-3324], +[0,-239,-279,-510,-1,-1166,-213,-275,-15,-187,-39], +[0,-457,-13052,-1051,-31,-777,-1416], +[1,3,3060], +[0,0,3061,3062,9], +[0,-13,-9,-3,-2184], +[0,-5225,-13051,-13050,-540,-1213], +[1,3,3064], +[0,3065,122,196,5], +[0,-1168,-460], +[1,3,3067], +[0,0,3068,3069,4], +[0,-11,-1231,-480,-21,-49,-62,-1639,-169,-94,-86,-98,-1,-191,-12,-10,-25,-13049,-28,-9,-8,-88,-1458,-2466,-4,-3529,-17, +-92,-219,-13048], +[0,-684,-1217,-782,-3323,-13047,-5224,-13046], +[1,3,3071], +[0,3072,3073,85,4], +[0,-5223,-238,-3995,-5222,-1631,-13045,-13044,-5221,-13043,-3399,-13042,-13041,-5220,-1826,-1312,-2043,-609,-1126,-2459, +-694,-13040,-3322], +[0,-182,-1674,-765,-1,-266,-10,-148,-64,-213,-79,-7,-187], +[1,3,3075], +[0,3076,3077,85,11], +[0,-706,-16,-439,-121,-609,-2459,-286,-6475,-3995], +[0,-445,-1,-7,-275,-50,-213,-11,-765,-64,-187,-161,-266,-10,-148,-190,-278,-1674], +[1,3,3079], +[0,3080,3081,85,4], +[0,-706,-16,-121,-609,-13035,-2458,-5222], +[0,-1,-7,-275,-50,-213,-11,-765,-64,-187,-161,-266,-10,-148,-190,-278,-1674], +[1,3,3083], +[0,3084,3085,85,6], +[0,-706,-2043], +[0,-1,-7,-275,-50,-213,-11,-765,-187,-161,-10,-191,-278,-1674], +[1,3,3087], +[0,3088,3089,7,9], +[0,-1191,-501], +[0,-838,-1,-84,-10,-214,-76,-67,-3,-15,-125], +[1,3,3091], +[0,3092,3093,3094,4], +[0,-208,-229], +[0,-1999,-305,-13034,-3814,-1393,-13033,-4,-373], +[0,-13032,-13031,-1663,-13030,-13029,-13028,-338,-13027,-13026,-13025,-270,-13024,-13023,-13022,-13021,-13020], +[1,3,3096], +[0,3097,3098,3099,4], +[0,-5219,-1323,-13019,-5218,-13018,-3492,-609], +[0,-310,-239,-1392,-13017,-5217,-13016,-5216,-5215,-3321,-5214,-5213,-5212,-5211,-13015,-664,-1891,-279,-510,-1,-2021, +-3483,-1151,-275,-15,-13014,-187,-13013,-39,-13012], +[0,-45,-338,-1663,-270,-2486,-853,-13011,-5210,-2580], +[1,3,3101], +[0,3102,3103,3104,11], +[0,-5475,-13010,-13009,-5209], +[0,-1,-3465,-3464,-3463,-9,-18,-15,-13008,-3462,-5474], +[0,-338,-13007,-13006,-1050,-339,-1973,-13005,-5208,-5207,-1756,-45,-549,-672,-132,-674,-939], +[1,3,3106], +[0,0,3107,3108,4], +[0,-239,-766,-1,-213,-2214,-15,-187,-112], +[0,-672,-1050,-13004,-45,-338,-549], +[1,3,3110], +[0,0,3111,3112,5], +[0,-182,-169,-278,-5935,-268,-13,-26,-3,-7], +[0,-339,-627,-292], +[1,3,3114], +[0,0,3115,3116,9], +[0,-13003,-3,-1556,-3334,-3337,-5206,-5205,-5204,-5203,-2253,-3328,-2460,-13002,-5202,-2562,-2567,-5201,-2564,-1887,-2565, +-2568,-1886,-2566,-2563], +[0,-5200,-549,-172,-481], +[1,3,3118], +[0,0,3119,3120,4], +[0,-50,-11,-21,-2649,-1021,-1,-12,-84,-10,-76,-67,-9,-15,-4,-27,-39], +[0,-172,-481,-339,-2457,-3994], +[1,3,3122], +[0,0,3123,3124,8], +[0,-239,-766,-13,-1553,-1,-1166,-54,-616,-302,-1845,-213,-3,-15,-1806,-13001,-187,-39,-112], +[0,-338,-1756,-339,-672,-172,-481,-13000,-774,-2456,-5199], +[1,3,3126], +[0,0,3127,3128,5], +[0,-110,-1186], +[0,-482,-31,-202], +[1,3,3130], +[0,0,14,3131,10], +[0,-482,-948,-1075,-3320,-1630,-163,-12999,-2455], +[1,3,3133], +[0,3134,3135,7,4], +[0,-1167,-2560,-1168,-130], +[0,-208,-116,-12998,-13,-2708,-12997,-32,-530,-364,-88,-3928,-16], +[1,3,3137], +[0,3138,3139,3140,5], +[0,-769,-2617,-12996,-12995,-1977,-5198,-12994,-12993,-12992,-329,-193,-230,-36,-424,-1169,-1019,-617,-3319,-2560,-1017, +-5197,-349,-1542,-469,-3318,-1154,-12991,-93,-2059,-3928], +[0,-310,-11,-21,-2690,-1986,-283,-12990,-5196,-5,-19,-98,-43,-13,-238,-473,-159,-502,-351,-572,-5195,-1643,-5194,-12989, +-5193,-1168,-5192,-28,-55,-402,-708,-527,-811,-18,-221,-1318,-228,-12988,-12987,-12986,-12985,-12984,-12983,-3,-5191, +-5190,-4,-361,-180,-1300,-342,-16,-272,-27,-2,-17,-92,-2454], +[0,-360,-217,-45,-338,-617], +[1,3,3142], +[0,3143,3144,197,5], +[0,-609,-1126,-191], +[0,-39,-1557,-1,-213,-90,-3317,-5189,-765,-64,-187,-10,-148,-190], +[1,3,3146], +[0,3147,3148,197,4], +[0,-16,-609,-1126,-1971], +[0,-39,-1557,-1,-213,-90,-3317,-5189,-765,-187,-10], +[1,3,3150], +[0,3151,3152,3153,10], +[0,-191], +[0,-22,-19,-1025,-1,-12,-10,-9,-18,-65,-4,-12982,-2], +[0,-3316,-353,-430,-1972,-1415,-3315,-1,-1391,-45,-2091,-2], +[1,3,3155], +[0,0,38,3156,8], +[0,-1448,-354,-1049,-225,-217,-539,-613,-117,-2453,-1,-509,-1048,-3314,-280,-581,-1390,-1052,-1389], +[1,3,3158], +[0,3159,38,3160,4], +[0,-48,-55], +[0,-1,-2085,-5188], +[1,3,3162], +[0,3163,3164,3165,4], +[0,-487,-283,-48,-309,-22,-19,-1337,-1335,-2452,-251,-10,-181,-265,-115,-2488,-150,-83], +[0,-2097,-1,-2], +[0,-1723,-1,-2085,-5188], +[1,3,3167], +[0,3168,3169,76,11], +[0,-115,-265,-10,-2452,-19,-2488,-22,-251], +[0,-1,-2,-2097], +[1,3,3171], +[0,0,0,3172,6], +[0,-1,-1391,-2085,-12981,-4], +[1,3,3174], +[0,3175,0,7,5], +[0,-11,-145,-64,-161,-10,-1885,-500,-148,-12980,-19,-1971,-190,-1549,-22], +[1,3,3177], +[0,0,3178,3179,5], +[0,-1,-84,-10,-115,-67,-39], +[0,-2451,-280,-581,-354,-2450,-2449,-2448,-1048,-1052,-1,-1391,-1389,-613,-117,-217,-2447,-1049,-631,-2184,-97,-2446,-225, +-2445,-2444,-1390], +[1,3,3181], +[0,0,3182,3183,4], +[0,-359,-664,-1,-10,-115,-67,-39], +[0,-2451,-280,-581,-354,-2450,-2449,-2448,-1048,-1052,-1,-1391,-1389,-613,-117,-217,-2447,-1049,-631,-97,-2446,-225,-2445, +-2444,-1390], +[1,3,3185], +[0,3186,3187,7,9], +[0,-48,-514,-150,-55,-83], +[0,-12979,-359,-5,-5187,-1567,-1,-3313,-12978,-4,-2], +[1,3,3189], +[0,3190,3191,3192,4], +[0,-12977,-1986,-309,-1971,-55], +[0,-51,-1], +[0,-1391,-34,-5186,-12976,-12975,-5185,-5184,-354,-1049,-225,-217,-539,-613,-117,-2453,-1,-509,-1048,-97,-3314,-280,-581, +-1390,-1052,-1389,-631], +[1,3,3194], +[0,0,3195,3196,10], +[0,-49,-62,-26,-9,-18,-147,-1800,-34], +[0,-12974,-353,-1,-5253,-5252,-1388,-34], +[1,3,3198], +[0,3199,3200,3201,4], +[0,-839,-193,-1568,-58,-403,-326,-2132,-1634,-913,-650,-5698,-1137,-210], +[0,-48,-5,-269,-1047,-960,-848,-1,-12,-10,-115,-25,-150,-525,-1127,-65,-807,-4,-27,-1632,-2,-83,-30], +[0,-678,-390,-42,-1,-114,-107], +[1,3,3203], +[0,3204,0,3205,8], +[0,-36,-12973,-1327,-12972,-12971,-311,-5183], +[0,-2,-1,-628,-5581,-107], +[1,3,3207], +[0,3208,3209,3210,5], +[0,-1547,-40,-754,-1811,-639], +[0,-50,-11,-21,-49,-62,-1970,-944,-94,-86,-119,-5182,-26,-151,-237,-1,-12,-12970,-10,-9,-8,-1150,-18,-65,-4,-134,-17], +[0,-1,-217,-539,-779,-17], +[1,3,3212], +[0,3213,3214,3215,4], +[0,-769,-1986,-12969,-617,-12968,-12967,-641], +[0,-19,-51,-43,-20,-1,-5181,-710,-572,-118,-65,-807,-1124,-2,-34], +[0,-1,-334,-368,-51,-75,-456,-293,-2578,-1072,-3], +[1,3,3217], +[0,3218,3219,3220,9], +[0,-12966], +[0,-3,-1,-94,-1139], +[0,-292,-1,-334,-368,-94], +[1,3,3222], +[0,3223,3224,3225,5], +[0,-1999,-12965,-305,-1183,-349,-55,-1825,-16], +[0,-11,-161,-49,-62,-487,-48,-296,-295,-2443,-739,-12964,-359,-29,-3312,-137,-110,-12963,-471,-1,-12,-572,-25,-823,-9,-8, +-4,-120,-600,-57,-33,-2,-83], +[0,-1,-91,-3478,-99,-217,-4017,-12962], +[1,3,3227], +[0,0,123,3228,5], +[0,-1,-334,-1050,-430], +[1,3,3230], +[0,3231,3232,3233,4], +[0,-424,-469], +[0,-3615,-5,-5180,-94,-152,-230,-1,-12961,-40,-3,-15,-608,-7,-16,-5663,-12960,-1770], +[0,-1,-334,-368,-107,-5179,-968,-5178,-918,-55,-12959,-12958,-12957,-12956,-12955,-12954], +[1,3,3235], +[0,3236,3237,198,11], +[0,-769,-1167], +[0,-49,-62,-3790,-1209,-283,-48,-514,-3311,-5177,-12953,-329,-142,-5,-19,-839,-960,-1,-12952,-12,-710,-115,-150,-1548, +-1169,-617,-9,-527,-18,-23,-525,-1127,-343,-4,-371,-2,-83,-30], +[1,3,3239], +[0,3240,3241,3242,4], +[0,-23,-12951], +[0,-193,-28,-9,-3,-1,-7,-5176,-2528,-50,-11,-781,-178,-120,-21,-161,-5175,-3824,-572,-278,-1273,-306], +[0,-1,-107,-12950], +[1,3,3244], +[0,3245,3246,3247,8], +[0,-497], +[0,-12949,-12948,-1,-12,-5174,-4,-16], +[0,-368,-334,-1,-31], +[1,3,3249], +[0,3250,3251,3252,9], +[0,-12947,-3310,-12946,-5223,-1891,-36,-1629,-2442,-12945,-706,-3393,-1154,-93,-2458,-12944,-2459,-16,-12943,-795], +[0,-5173,-359,-19,-182,-169,-94,-355,-1188,-765,-2561,-447,-926,-13,-26,-12942,-1,-710,-251,-572,-10,-2462,-5582,-12941, +-28,-213,-1322,-649,-12940,-12939,-525,-3,-3309,-15,-322,-7,-187,-27,-156,-2,-3308], +[0,-1,-334,-368,-339,-5639,-370,-628,-1628], +[1,3,3254], +[0,199,3255,198,6], +[0,-50,-11,-21,-140,-49,-62,-1209,-12938,-296,-295,-2056,-359,-29,-5,-137,-22,-19,-839,-86,-12937,-534,-1,-12,-710,-572, +-10,-115,-25,-1548,-1969,-9,-569,-8,-5470,-18,-5174,-1306,-4,-7,-120,-16,-33,-2], +[1,3,3257], +[0,3258,3259,3260,4], +[0,-12936,-12935,-12934,-2125,-36,-424,-617,-3319,-705,-12933,-12932,-16,-5172,-12931], +[0,-310,-50,-11,-161,-971,-21,-12930,-12929,-1977,-12928,-63,-845,-737,-582,-109,-162,-5177,-5196,-329,-633,-69,-5,-137, +-12927,-1450,-278,-355,-12926,-43,-446,-13,-1870,-1,-5175,-5176,-28,-55,-9,-3307,-650,-3306,-18,-3,-3305,-398,-1046,-7, +-14,-120,-27,-3642,-2,-83], +[0,-1,-107,-166], +[1,3,3262], +[0,3263,3264,3265,9], +[0,-769,-1977,-5198,-12925,-12924,-12923,-1993,-2059,-2163], +[0,-161,-1627,-366,-1209,-1986,-3304,-3303,-309,-1998,-69,-5171,-5,-137,-22,-19,-43,-3302,-89,-1,-12,-572,-12922,-181, +-3301,-1334,-214,-115,-2441,-25,-826,-825,-1643,-1169,-422,-55,-3,-1810,-4,-16,-179,-5170,-558,-12921,-12920,-371,-153, +-2,-83,-3300,-793,-979], +[0,-1,-334,-368,-217,-5169,-276,-106], +[1,3,3267], +[0,3268,3269,3270,4], +[0,-1433,-3310,-1891,-12919,-1352,-3299,-12918,-5596,-706,-5168,-12917,-93,-2458,-3324,-12916], +[0,-50,-11,-161,-971,-178,-279,-278,-765,-1,-191,-710,-572,-500,-10,-1167,-420,-213,-1322,-3406,-88,-275,-609,-1126,-7, +-187,-16,-39,-5167], +[0,-1,-334,-368,-951,-1248,-866], +[1,3,3272], +[0,3273,3274,3275,4], +[0,-908], +[0,-15,-13,-3,-1,-55,-48,-5194,-12915], +[0,-1,-334,-100,-217,-539], +[1,3,3277], +[0,3278,0,3279,10], +[0,-55,-769], +[0,-1,-334,-368,-3], +[1,3,3281], +[0,3282,3283,200,9], +[0,-769,-829,-12914,-1327,-55,-6180,-469,-16,-12913], +[0,-48,-359,-329,-12912,-5,-19,-2614,-1,-12,-710,-572,-229,-9,-18,-525,-3,-343,-15,-608,-4,-988,-373,-7,-12911,-210,-2], +[1,3,3285], +[0,3286,3287,200,6], +[0,-5488,-12910,-469,-93,-128,-16], +[0,-3615,-152,-1,-229,-55,-3,-15,-608,-988,-7], +[1,3,3289], +[0,3290,0,3291,10], +[0,-12909,-2163], +[0,-1,-334,-368,-4], +[1,3,3293], +[0,3294,3295,3296,4], +[0,-769], +[0,-19,-1025,-1,-12,-710,-572,-145,-115,-25,-55,-9,-8,-18,-343,-4,-2], +[0,-1,-334,-368,-172,-481], +[1,3,3298], +[0,3299,3300,201,5], +[0,-3310,-12908,-1891,-12907,-1629,-12906,-1167,-706,-5168,-93,-1126,-2458,-2459,-121,-128,-16,-3661,-5166], +[0,-11,-161,-3816,-12905,-12904,-136,-359,-329,-5,-19,-94,-1,-191,-710,-572,-10,-1548,-1969,-1169,-617,-12903,-28,-66, +-1322,-5165,-525,-3,-275,-27,-2,-3308], +[1,3,3302], +[0,3303,3304,201,5], +[0,-258,-11,-427,-12902,-3820], +[0,-8,-2,-5,-479,-94,-359,-329,-5164,-3298,-161,-140], +[1,3,3306], +[0,3307,3308,3309,6], +[0,-769,-2617,-2125,-3307,-3297,-5163,-3296], +[0,-366,-6073,-1209,-283,-48,-3304,-3303,-2625,-109,-359,-3311,-329,-69,-5,-5162,-22,-19,-293,-13,-3302,-1,-12,-710,-251, +-572,-10,-181,-3301,-1334,-214,-115,-12901,-25,-826,-150,-825,-1643,-12900,-525,-3,-5161,-297,-343,-15,-1810,-4,-16,-179, +-2154,-5170,-371,-153,-2,-83,-3300,-793,-979], +[0,-1,-334,-368,-1075,-948], +[1,3,3311], +[0,3312,3313,3314,5], +[0,-5160], +[0,-48,-780,-1,-5159,-12,-710,-572,-18,-525,-3,-65,-4,-120,-2454], +[0,-1,-667,-5158], +[1,3,3316], +[0,3317,0,3318,9], +[0,-2,-16,-12899,-1319,-12898,-2617,-93,-3642,-3296,-475,-1571,-55], +[0,-12897,-1,-334], +[1,3,3320], +[0,0,123,3321,11], +[0,-1,-334], +[1,3,3323], +[0,3324,3325,3326,9], +[0,-769,-1763,-2560,-55,-2859,-38,-902,-1502,-16,-12896], +[0,-11,-161,-2570,-1209,-729,-12895,-12894,-633,-3295,-69,-5,-5157,-137,-2440,-1752,-1450,-208,-293,-89,-1169,-3313,-1019, +-617,-527,-222,-3,-1503,-560,-77,-799,-393,-220,-12893,-153,-233,-259], +[0,-1,-368,-334,-220,-12892], +[1,3,3328], +[0,3329,3330,3331,5], +[0,-1752,-839], +[0,-49,-62,-283,-48,-5,-2615,-103,-848,-964,-1,-12,-710,-251,-1626,-115,-67,-1548,-1969,-55,-9,-527,-18,-4,-459,-120,-371, +-2,-83,-30], +[0,-1,-334,-368,-217,-5762,-61], +[1,3,3333], +[0,3334,3335,3336,4], +[0,-839,-2276,-1893], +[0,-2669,-359,-329,-1,-3728], +[0,-733,-42,-678,-968,-3732,-3731,-5876,-107], +[1,3,3338], +[0,3339,3340,3341,9], +[0,-2736,-769,-1568,-504,-12891,-3814,-3294,-55,-817,-3554,-1148,-562,-5156,-12890,-16,-2111], +[0,-538,-11,-161,-283,-12889,-19,-1450,-51,-43,-573,-1,-5181,-1335,-710,-572,-181,-150,-1548,-1969,-1169,-617,-1829,-525, +-2439,-12888,-1127,-343,-3305,-807,-899,-2,-979,-259], +[0,-1,-334,-368,-12887,-539,-217,-225,-34], +[1,3,3343], +[0,199,3344,3345,4], +[0,-309,-359,-69,-5,-22,-19,-2615,-12886,-1387,-289,-1,-710,-572,-2233,-1548,-1969,-33,-153,-2,-1287,-30], +[0,-1,-334,-368,-12885,-30,-12884], +[1,3,3347], +[0,3348,3349,3350,5], +[0,-769,-2059,-2759,-560,-16,-3293], +[0,-366,-514,-3303,-309,-2625,-359,-5171,-5,-137,-12883,-22,-19,-1450,-103,-293,-3302,-89,-1,-3447,-12,-572,-10,-1334, +-12882,-2441,-25,-150,-3313,-1019,-617,-422,-55,-79,-525,-606,-4,-371,-2,-3300,-793,-30,-979], +[0,-1,-368,-2085,-74,-1238,-1388], +[1,3,3352], +[0,3353,3354,3355,6], +[0,-538,-1146,-20,-6418,-1811,-6,-600], +[0,-283,-1625,-359,-5,-3739,-47,-404,-1,-5758,-12881,-12880,-527,-2835,-138,-2,-30], +[0,-1,-12879], +[1,3,3357], +[0,3358,3359,38,9], +[0,-12878,-329,-12877,-1167], +[0,-19,-13,-1019,-617,-5190,-272], +[1,3,3361], +[0,0,3362,38,5], +[0,-608,-14,-415,-81,-2], +[1,3,3364], +[0,3365,0,3366,4], +[0,-1336,-12876], +[0,-6472], +[1,3,3368], +[0,0,0,3369,9], +[0,-860,-338,-1628,-628,-370,-141,-407], +[1,3,3371], +[0,3372,3373,3374,5], +[0,-208,-1665,-1019], +[0,-310,-14,-272,-81,-2], +[0,-360,-338,-45,-73,-389,-208], +[1,3,3376], +[0,0,3377,3378,5], +[0,-2009,-12875,-12874,-28,-66,-5155,-78,-139,-1526,-1831,-212,-1145,-189,-909,-5154,-812,-23,-3,-12873,-985,-597,-196,-2, +-3881,-12872,-17], +[0,-360,-338,-1168,-45,-73,-389], +[1,3,3380], +[0,0,3381,7,5], +[0,-268,-447,-13,-617,-32,-3979,-1162,-3976,-12871,-117,-3], +[1,3,3383], +[0,202,3384,7,6], +[0,-2,-1104], +[1,3,3386], +[0,0,3387,3388,6], +[0,-3,-1,-66,-110,-1493,-488,-1186,-76,-10,-67,-84,-214,-131], +[0,-922,-105,-1249], +[1,3,3390], +[0,3391,3392,3393,8], +[0,-12870,-6471], +[0,-12869,-12868,-12867,-12866,-3714,-725,-5,-664,-59,-12865,-56,-9,-66,-78,-910,-1526,-212,-3292,-88,-15,-4,-39,-33,-196, +-124,-794,-2,-12864], +[0,-2663,-12863], +[1,3,3395], +[0,3396,3397,3398,5], +[0,-3714,-2909,-4011,-5153,-12862], +[0,-5152,-5,-12861,-664,-1,-78,-139,-212,-3292,-5151,-15,-4,-39,-33,-2], +[0,-2663,-939,-674], +[1,3,3400], +[0,3401,3402,3403,5], +[0,-208,-20,-96,-23,-116,-40,-5150,-1167,-221,-12860,-1286], +[0,-464,-5149,-2,-5], +[0,-3291,-12859,-45,-100,-75], +[1,3,3405], +[0,3406,3407,3408,5], +[0,-1558,-1624,-999,-12858,-798,-5148,-460], +[0,-12857,-2438,-2437,-39,-3290], +[0,-245,-774,-5147,-719,-798,-5146,-494,-1046], +[1,3,3410], +[0,0,3411,3412,9], +[0,-110,-116,-56,-3,-15], +[0,-783,-422,-2518,-5145,-5144,-5143,-5142,-1654,-3289,-5141,-698,-717,-3288], +[1,3,3414], +[0,0,3415,3416,4], +[0,-80,-204,-927,-43,-3,-14], +[0,-12856,-12855,-12854,-5140,-5144,-5143,-1654,-3289,-2518,-783,-698,-5142,-717,-12853,-3288], +[1,3,3418], +[0,0,3419,3420,5], +[0,-768,-1850,-1631,-1323,-1151,-39], +[0,-422,-5139,-5138,-5137], +[1,3,3422], +[0,3423,3424,3425,4], +[0,-5136,-230,-533,-498,-12852,-1153,-1003,-2200,-899,-891,-12851,-3287], +[0,-5,-51,-43,-12850,-2436,-5135,-12849,-493,-3427,-2003,-81,-2,-219,-34], +[0,-1045,-1221,-287,-5134,-3426,-2435,-12848,-1649,-126,-254,-1386,-773,-5133,-158,-248,-1044,-2050], +[1,3,3427], +[0,0,3428,3429,6], +[0,-177,-365,-302,-54,-219], +[0,-921,-287,-5132,-1262,-12847,-12846,-12845,-12844], +[1,3,3431], +[0,3432,3433,7,4], +[0,-5131,-5130,-3645,-5947,-1432,-912], +[0,-5404,-2115,-20,-529], +[1,3,3435], +[0,0,3436,3437,4], +[0,-310,-5,-1047,-964,-1,-12843,-417,-1385,-138,-796,-2,-30], +[0,-2,-5129,-293,-635,-1485,-75,-61], +[1,3,3439], +[0,3440,3441,203,4], +[0,-464,-1173,-922,-698,-802,-980,-36,-709,-352,-434,-1191,-981,-751,-1294,-1339,-344,-3643,-168,-501,-652,-992,-924, +-1016,-1121,-396,-1344,-3286,-1027], +[0,-351,-2222,-15,-838,-3,-3876,-1,-228,-700,-125,-2246,-619,-2897,-920,-2204,-5128], +[1,3,3443], +[0,3444,3445,203,4], +[0,-1191,-12842,-168,-1027,-924,-352,-1344,-36,-1173,-1339,-501,-922,-1016,-709,-652,-3286,-1131,-992,-751,-563,-3643, +-464,-1121,-488,-802,-396,-5127,-1294,-981,-2176,-980], +[0,-838,-2246,-619,-2897,-351,-1,-920,-2222,-228,-2204,-3,-700,-15,-5128,-125,-3876], +[1,3,3447], +[0,3448,3449,3450,6], +[0,-11,-427,-577,-1629,-563], +[0,-29,-1,-8], +[0,-545,-41,-166,-678,-3776,-3285,-42,-3888,-2039,-114,-547,-5126,-5125,-5124], +[1,3,3452], +[0,3453,3454,3455,4], +[0,-351,-72,-58,-93,-5556], +[0,-3,-1,-7,-1484,-125,-687,-76,-10,-67,-84,-131,-1285], +[0,-41,-52,-3520,-111,-410,-1074,-434,-300,-99], +[1,3,3457], +[0,3458,3459,3460,5], +[0,-28,-325,-250], +[0,-48,-296,-845,-295,-737,-582,-1058,-29,-5,-1,-55,-496,-120,-57,-2,-83], +[0,-41,-12841,-250,-1067,-679,-12840,-740], +[1,3,3462], +[0,3463,3464,3465,5], +[0,-813,-12839,-1739], +[0,-3,-1,-41,-33,-4,-2,-69,-257,-575,-19,-22], +[0,-778,-1968,-683,-5123,-2559,-105,-1465,-3284,-905,-41], +[1,3,3467], +[0,3468,3469,7,5], +[0,-352,-1344,-36,-1173,-2517,-751,-488,-1484], +[0,-838,-619,-1,-214,-41,-3,-15,-125], +[1,3,3471], +[0,3472,3473,3474,5], +[0,-193,-20,-58,-384,-383,-215,-41,-756,-14,-415,-2,-258], +[0,-48,-735,-1443,-257,-5,-22,-19,-1,-76,-55,-288,-4,-7,-33,-795,-83], +[0,-99,-46,-2014,-684,-2029,-41,-12838,-52,-5122,-367,-209,-409], +[1,3,3476], +[0,0,3477,3478,5], +[0,-43,-12837,-27,-1,-41,-33,-12836,-2,-5,-269,-257,-19,-22], +[0,-12835,-12834,-106,-2,-99,-105,-41,-12833,-12832,-2,-332,-540,-12831,-5121,-12830,-12829,-12828,-5931,-453,-46,-12827, +-5120,-6,-12826,-12825,-12824], +[1,3,3480], +[0,3481,3482,3483,4], +[0,-23,-437], +[0,-2766,-12823,-3283,-29,-142,-22,-19,-1,-12,-10,-25,-8,-4,-57,-2], +[0,-41,-437,-409,-509,-941,-1623,-1282], +[1,3,3485], +[0,3486,3487,3488,5], +[0,-1580,-3933,-12822,-642,-12821], +[0,-735,-1443,-12820,-257,-5920,-12819,-2434,-5862,-12818,-384,-383,-1173,-41,-2665,-652,-1128,-12817,-2,-284,-258,-12816], +[0,-335,-99,-105,-332,-42,-106,-41,-2,-318,-209,-3282,-545,-12815,-681,-12814,-3281,-12813,-12812,-258,-409], +[1,3,3490], +[0,0,3491,3492,8], +[0,-239,-5119,-1,-613,-39], +[0,-444,-536,-494], +[1,3,3494], +[0,3495,3496,3497,8], +[0,-12811,-12810], +[0,-12809,-5118,-12808,-707,-1152,-1967,-88,-3,-242], +[0,-1642,-536,-444,-494,-1992,-406,-242,-609,-1990,-1091,-1056,-12807,-5117,-132,-202,-674,-853], +[1,3,3499], +[0,3500,3501,7,5], +[0,-60,-754,-639,-1479], +[0,-182,-86,-835,-620,-268,-26,-144,-237,-1,-583,-10,-277,-8,-18,-2833,-235,-693,-134,-154,-17,-12806], +[1,3,3503], +[0,3504,3505,3506,10], +[0,-36,-498,-977,-3280], +[0,-22,-19,-51,-1,-84,-2234,-10,-76,-67,-131,-40,-9,-18,-15,-81,-2], +[0,-1787,-855,-943], +[1,3,3508], +[0,0,3509,7,9], +[0,-15,-32,-166,-3,-27,-1,-23,-565,-71,-56,-59,-3850,-314,-653,-18,-1771,-1784,-6445,-5116,-12805,-883], +[1,3,3511], +[0,3512,3513,3514,4], +[0,-5115], +[0,-1,-828,-76,-350,-3,-15,-3279,-27], +[0,-12804,-263,-738,-367,-637,-5114], +[1,3,3516], +[0,3517,3518,3519,4], +[0,-5113], +[0,-478,-5,-26,-28,-5156,-1799,-124,-2,-30,-12803,-12802,-1333], +[0,-12801,-12800,-3557,-61,-12799,-12798,-5112,-2232,-12797,-12796,-8], +[1,3,3521], +[0,3522,0,3523,8], +[0,-12795,-12794], +[0,-831,-73,-508,-12793,-12792,-12791], +[1,3,3525], +[0,0,3526,3527,4], +[0,-56,-1560,-1,-3,-15,-235,-6,-286,-27,-2], +[0,-508,-1664,-830], +[1,3,3529], +[0,3530,3531,204,4], +[0,-12790,-5111,-1542,-3583,-362], +[0,-12789,-5437,-12788,-634,-69,-5,-623,-269,-12787,-1,-12786,-118,-229,-1245,-28,-5110,-3,-7,-27,-5109,-2], +[1,3,3533], +[0,0,3534,7,5], +[0,-69,-5,-3,-1116,-2], +[1,3,3536], +[0,3537,3538,3539,11], +[0,-12784], +[0,-11,-173,-21,-178,-5,-98,-43,-1,-1158,-199,-4,-2819,-2,-17,-92], +[0,-508,-506,-106,-73,-551,-5448,-3870,-270,-437,-509,-2433,-293,-5108,-5107,-31], +[1,3,3541], +[0,0,0,3542,10], +[0,-6470,-95,-414,-85,-5106,-658], +[1,3,3544], +[0,3545,3546,3547,4], +[0,-12783,-5105,-12782,-12781,-12780,-12779,-12778,-5104,-12777,-1307,-5103,-1797,-5102,-16,-12776], +[0,-12775,-5970,-662,-309,-2626,-5,-193,-3753,-837,-3278,-12774,-3277,-1766,-12773,-289,-26,-1,-12772,-3685,-12771,-12770, +-652,-756,-3637,-1146,-5101,-791,-1128,-180,-889,-81,-2,-284,-980,-1271], +[0,-111,-52,-106,-318,-149,-99], +[1,3,3549], +[0,3550,3551,7,5], +[0,-478,-12769,-2606,-12768,-12767,-2605,-2604,-12766,-1966,-1889,-1188,-3276,-1965,-829,-89,-229,-2601,-2432,-93,-5100, +-795,-2,-5099], +[0,-49,-62,-252,-29,-12765,-843,-5,-5587,-2597,-9,-8,-6034,-18,-4,-1122,-900,-7,-33,-153,-2050], +[1,3,3553], +[0,3554,3555,3556,10], +[0,-12764,-12763,-3275,-12762,-12761,-2546,-1558,-88,-3309,-197,-3324,-2794,-12760,-3322,-1622,-39,-71], +[0,-239,-766,-279,-1,-213,-275,-187], +[0,-85,-1964,-75,-12759,-1963,-637], +[1,3,3558], +[0,3559,3560,7,5], +[0,-2244,-12758,-1521,-242,-172,-1962,-1101], +[0,-11,-151,-420,-32,-615,-2880,-314,-529,-496,-1132], +[1,3,3562], +[0,28,3563,3564,9], +[0,-50,-11,-21,-136,-296,-295,-12757,-1678,-5098,-834,-298,-1,-266,-18,-72,-120], +[0,-12756,-12755,-12754,-12753,-127,-5097,-53,-369,-6,-12752,-12751,-5772,-111,-12750,-12749,-5096,-12748,-12747,-12746, +-12745,-12744,-12743,-3274,-12742,-12741,-12740,-12739,-12738,-12737,-12736,-12735], +[1,3,3566], +[0,39,3567,3568,4], +[0,-50,-11,-173,-21,-136,-140,-203,-80,-63,-319,-155,-122,-1477,-29,-47,-87,-22,-19,-152,-289,-26,-1,-191,-12,-5323,-10, +-145,-64,-190,-8,-6,-35,-342,-14,-226,-57,-44,-2], +[0,-12734,-53,-12733,-322], +[1,3,3570], +[0,3571,0,3572,8], +[0,-5095,-1961,-5094,-3644], +[0,-865,-105,-307,-61,-1729,-1384], +[1,3,3574], +[0,3575,0,3576,10], +[0,-1960], +[0,-12732,-3990,-5464,-12731,-60,-852,-1959,-2552,-172], +[1,3,3578], +[0,75,3579,3580,4], +[0,-5,-964,-60,-9,-18,-2,-104,-847,-30], +[0,-1855,-868,-5093,-5092,-240], +[1,3,3582], +[0,3583,14,3584,9], +[0,-2511], +[0,-455,-37,-1214,-294,-2455,-3273,-2431,-5091,-533,-5090], +[1,3,3586], +[0,205,3587,48,4], +[0,-50,-11,-21,-49,-62,-1970,-944,-86,-26,-151,-237,-1,-12,-10,-9,-8,-18,-262,-65,-4,-134,-438,-17], +[1,3,3589], +[0,0,3590,3591,8], +[0,-50,-11,-2649,-6091], +[0,-12730,-12729,-3272], +[1,3,3593], +[0,3594,3595,3596,4], +[0,-12728,-12727,-12726,-3271], +[0,-12725,-5,-51,-1043,-498,-12724,-81,-34], +[0,-261,-126,-540,-12723,-1426,-281,-1703,-5089,-3270,-5445,-3269,-5088,-668,-280,-651,-12722,-12721,-12720,-1975,-773, +-299,-5515,-1383,-579,-12719,-1208,-2610,-12718,-12717,-12716,-12715,-12714,-12713,-12712,-12711,-12710,-694,-12709, +-3268,-5087,-12708,-5086,-12707,-855,-312,-12706,-12705,-5350,-12704,-5260,-12703,-12702,-12701,-12700,-12699,-12698, +-12697,-12696,-12695,-12694,-12693,-12692,-12691, +-12690,-12689,-1064,-3267,-12688,-5601,-12687,-12686,-12685,-12684,-12683,-12682,-12681,-5085,-12680,-12679,-12678,-1267, +-12677,-12676,-12675,-12674,-12673,-12672,-12671,-5084,-12670,-12669,-12668,-12667,-12666,-12665,-5083,-12664,-1777, +-12663,-12662,-5082,-12661,-12660,-12659,-12658,-12657,-5081,-12656,-506,-5080,-12655,-5838,-12654,-12653,-12652,-5580, +-12651,-12650,-12649,-12648,-12647,-12646,-12645,-12644,-12643,-12642,-12641, +-12640,-12639,-12638,-12637,-12636,-12635,-12634,-12633,-12632,-5079,-12631,-12630,-12629,-12628,-12627,-12626,-12625, +-12624,-12623,-12622,-12621,-12620,-12619,-2609,-12618,-12617,-12616,-12615,-2478,-12614,-12613,-12612,-5078,-12611, +-12610,-12609,-12608,-12607,-1980,-12606,-12605,-12604,-12603,-5077,-12602,-12601,-12600,-12599,-12598,-12597,-12596, +-12595,-12594,-12593,-12592,-12591,-12590,-3266,-12589,-5076,-12588,-12587,-12586,-12585, +-5075,-12584,-1410,-12583,-12582,-12581,-5349,-12580,-12579], +[1,3,3598], +[0,0,3599,3600,9], +[0,-204,-279,-43,-1,-9,-3,-14], +[0,-126,-761,-1207,-1206,-1205,-475,-207], +[1,3,3602], +[0,3603,81,7,6], +[0,-36,-1339,-501,-992,-751,-1294], +[1,3,3605], +[0,3606,3607,3608,5], +[0,-2197,-5610], +[0,-34,-51,-151,-81,-372], +[0,-433,-405,-2014,-630,-720], +[1,3,3610], +[0,3611,3612,3613,4], +[0,-3265,-2430], +[0,-51,-1401,-372,-81,-34], +[0,-630,-2429,-349,-1076,-2428,-1958,-126,-720,-511,-451,-128,-1382,-1065,-942,-405,-745,-1957,-248], +[1,3,3615], +[0,3616,3617,3618,4], +[0,-12578,-1154,-362,-12577], +[0,-1,-828,-76,-350,-12576,-3,-1509,-15,-128], +[0,-126,-630,-349,-1076,-28,-511,-947,-128,-720], +[1,3,3620], +[0,3621,3622,3623,4], +[0,-12575,-12574,-12573,-12572,-12571,-12570,-12569,-12568,-12567,-12566,-12565,-12564,-5074,-5073,-12563,-12562,-12561, +-12560,-12559,-5072,-12558,-12557,-12556,-12555,-12554,-12553,-12552,-12551], +[0,-32,-14,-2,-1007,-313,-803,-204,-894,-80,-1298,-301,-63], +[0,-683,-386,-5071,-1545,-771,-1069,-542,-12550], +[1,3,3625], +[0,3626,3627,3628,10], +[0,-3264,-5072,-12549,-5,-12548,-1017,-2427,-813,-12547,-1128,-123], +[0,-12546,-5074,-5073,-12545,-478,-5070,-109,-732,-12544,-1739,-142,-725,-69,-3699,-2426,-12543,-269,-1270,-680,-22,-19, +-1573,-13,-244,-2708,-20,-4015,-151,-1,-12542,-32,-1162,-820,-1536,-12541,-23,-88,-3,-1512,-198,-65,-15,-113,-1798,-983, +-27,-186,-33,-2,-96], +[0,-3263,-386,-5071,-771,-683], +[1,3,3630], +[0,3631,0,3632,10], +[0,-12540,-12539,-2425,-5069,-12538,-12537,-1257,-1381,-1354,-193,-837,-928,-3262,-168,-119,-12536,-661,-1180,-58,-1178, +-383,-26,-230,-2241,-12535,-12534,-12533,-41,-761,-657,-40,-1848,-5068,-28,-2427,-469,-101,-813,-1142,-12532,-23,-12531, +-228,-2020,-261,-93,-700,-188,-149,-324,-1749,-605,-12530,-12529,-644,-361,-2424,-2186,-16,-12528,-12527,-5067,-12526, +-2660,-156,-2423,-5066,-12525,-123,-552,-1779,-205,-259,-258,-3261], +[0,-5065,-37,-12524,-1073,-12523,-1545,-771,-2023,-12522], +[1,3,3634], +[0,3635,86,3636,9], +[0,-12521,-20,-1341,-2422,-12520,-1496], +[0,-1989,-451], +[1,3,3638], +[0,3639,3640,7,5], +[0,-185,-843,-1204,-40,-5064,-1102], +[0,-5,-7,-85,-2], +[1,3,3642], +[0,0,86,3643,5], +[0,-1544,-106,-2044,-12519,-798,-406,-2421], +[1,3,3645], +[0,3646,206,3647,5], +[0,-36,-3994,-40,-23,-156], +[0,-5258], +[1,3,3649], +[0,0,3650,3651,4], +[0,-11,-306,-3527,-21,-5063,-185,-458,-29,-1711,-5,-2440,-835,-119,-56,-40,-28,-8,-4,-7,-14,-273,-2420,-1956,-1297,-175, +-57,-33,-44,-2], +[0,-45,-5914,-3736,-956,-588,-2671,-2419], +[1,3,3653], +[0,3654,3655,3656,9], +[0,-3260,-20,-3990,-2217,-6405,-466,-1414,-490,-16,-2793,-5062,-3537], +[0,-13,-56,-1,-66,-12518,-3,-235,-180,-27], +[0,-1621,-1620,-12517,-2418,-1045,-254,-1060,-2417,-2416,-852,-5061,-2415,-1044,-1073,-5060], +[1,3,3658], +[0,0,0,3659,4], +[0,-724,-37,-1386,-773,-1683,-2114,-540,-3259,-280,-581,-45,-270,-1955], +[1,3,3661], +[0,3662,3663,3664,11], +[0,-790,-12516,-2414,-38,-557], +[0,-11,-21,-2715,-12515,-5059,-22,-19,-160,-98,-660,-159,-26,-144,-1343,-382,-1,-12,-25,-12514,-277,-12513,-377,-65,-4, +-3258,-863,-395,-890,-154,-392,-211,-2,-17,-92,-170,-12512,-686], +[0,-6467,-2,-45,-17,-31,-24,-2591,-12511,-1292,-3409,-12510,-12509,-12508,-12507,-3409,-12506,-5360,-5359,-12505,-5356, +-12504,-12503,-5354,-5357,-5358,-5355,-12502,-1,-4,-5058,-381,-12501], +[1,3,3666], +[0,3667,3668,3669,4], +[0,-60,-219], +[0,-15,-166,-3,-82], +[0,-12500], +[1,3,3671], +[0,3672,3673,3674,4], +[0,-12499,-1856], +[0,-11,-98,-5275,-151,-32,-615,-2880,-820,-314,-363,-529,-8,-176,-242,-6,-5057,-35,-883,-17,-2471], +[0,-1329,-6,-2114,-12498], +[1,3,3676], +[0,0,3677,3678,4], +[0,-315,-1,-41,-3257,-3,-15], +[0,-105,-401,-195,-5056,-337,-5055,-202], +[1,3,3680], +[0,0,0,3681,9], +[0,-1086,-5986,-3759,-741,-1086,-476], +[1,3,3683], +[0,3684,3685,7,11], +[0,-5221], +[0,-310,-239,-1392,-5054,-664,-279,-1,-275,-15,-39], +[1,3,3687], +[0,3688,3689,3690,11], +[0,-60,-12497,-536,-12496,-135,-72,-552,-12495,-12494,-2820,-1178,-1858,-242,-5053], +[0,-13,-1481,-3,-1,-236,-5052,-113,-4,-5051,-12,-25], +[0,-37,-3256,-3255,-1269], +[1,3,3692], +[0,3693,3694,3695,8], +[0,-538,-20,-119,-403,-326,-40,-262,-93,-12493,-639,-16,-1291], +[0,-62,-845,-2126,-737,-582,-1058,-1625,-945,-185,-29,-633,-843,-3782,-5,-1204,-137,-22,-19,-1179,-26,-1,-10,-76,-25, +-3696,-9,-8,-5050,-816,-650,-12492,-18,-568,-4,-7,-120,-138,-57,-2,-17], +[0,-17,-107,-2,-12491,-211,-17,-2435,-508], +[1,3,3697], +[0,3698,3699,3700,5], +[0,-3536,-20,-119,-23,-362,-93,-128,-1291], +[0,-12490,-5380,-142,-634,-843,-5,-1098,-517,-13,-144,-1,-9,-66,-18,-3,-568,-1517,-4,-7,-27,-211,-196,-1289,-2,-74,-3875, +-1103,-1480,-17], +[0,-17,-107,-2,-540,-581,-539,-2435,-508,-2025,-211,-4029,-12489,-2496], +[1,3,3702], +[0,3703,3704,7,6], +[0,-12488,-5049,-12487,-706,-344], +[0,-239,-279,-59,-3254,-56,-230,-1,-1619,-12486,-1014,-213,-12485,-66,-12484,-12483,-5574,-235,-157,-113,-7,-16,-39], +[1,3,3706], +[0,3707,3708,3709,4], +[0,-698,-12482,-5048], +[0,-443,-15,-8,-1,-14,-41,-4,-125,-5047,-10,-1755,-12,-25,-80,-12481,-191,-63,-12480], +[0,-2015,-546,-450,-987,-12479,-106,-12478,-126], +[1,3,3711], +[0,3712,3713,3714,9], +[0,-2612,-326,-1006,-23,-468,-2757,-12477,-44], +[0,-122,-142,-47,-87,-1436,-12476,-6,-35,-3253,-2,-1271], +[0,-3987,-546,-871,-6,-35,-682,-12475,-409,-12474,-409,-12473,-5046], +[1,3,3716], +[0,0,3717,3718,6], +[0,-3,-1,-66,-110,-1186,-76,-10,-67,-84,-214,-131], +[0,-709,-105,-3252,-433], +[1,3,3720], +[0,3721,3722,3723,4], +[0,-20,-2137,-394], +[0,-169,-94,-98,-2260,-712,-1,-1860,-350,-8,-1133,-17], +[0,-12472,-1954,-17,-107], +[1,3,3725], +[0,3726,3727,3728,4], +[0,-101], +[0,-1572,-12471,-56,-66,-97,-39,-976], +[0,-259,-12470,-12469], +[1,3,3730], +[0,3731,3732,3733,8], +[0,-325,-2864,-3251], +[0,-3250,-3573,-88,-3,-15,-180,-5045,-97], +[0,-303,-126,-1205,-669,-405,-5044,-72,-2413,-5043,-772,-106,-603,-1669,-5044,-775,-626,-414,-2412,-183,-5042,-2506,-172], +[1,3,3735], +[0,124,3736,3737,4], +[0,-109,-185,-69,-5,-13,-40,-66,-3,-15,-4,-523,-12468,-33,-2], +[0,-303,-1205], +[1,3,3739], +[0,3740,3741,3742,4], +[0,-5041,-40,-1512,-5040], +[0,-185,-6038,-3,-1021,-1296,-116,-2172,-522], +[0,-172,-303,-126,-1205], +[1,3,3744], +[0,0,3745,3746,5], +[0,-610], +[0,-2231,-3249], +[1,3,3748], +[0,3749,3750,7,11], +[0,-72,-7,-528,-325], +[0,-85,-97], +[1,3,3752], +[0,3753,0,3754,8], +[0,-6281,-197], +[0,-3985,-337,-2507], +[1,3,3756], +[0,0,3757,3758,5], +[0,-239,-766,-279,-1,-15,-187,-39], +[0,-1226,-849,-1050,-2538,-3422,-3248], +[1,3,3760], +[0,0,3761,3762,4], +[0,-50,-11,-161,-306,-2146,-21,-140,-49,-62,-12467,-203,-63,-232,-12466,-12465,-12464,-12463,-5180,-3862,-3861,-98,-1,-12, +-9,-2411,-4,-1799,-14,-415,-134,-175,-2,-30,-1770,-12462], +[0,-1848,-720,-12461], +[1,3,3764], +[0,0,3765,3766,11], +[0,-309,-739,-22,-19,-252,-110,-1,-84,-251,-10,-115,-67,-9,-171], +[0,-3407,-111,-105,-209,-3247,-46,-52], +[1,3,3768], +[0,0,0,3769,8], +[0,-1848,-720,-719,-12460,-12459], +[1,3,3771], +[0,3772,3773,3774,6], +[0,-5039], +[0,-60,-54,-12458,-167,-177,-365,-7,-2184], +[0,-594,-28], +[1,3,3776], +[0,0,3777,7,6], +[0,-2,-5], +[1,3,3779], +[0,3780,3781,3782,5], +[0,-20,-2166,-6283,-1478], +[0,-54,-570,-2410,-2409,-345,-1286,-177,-1540], +[0,-1478,-959,-52,-129,-184,-300,-192], +[1,3,3784], +[0,3785,3786,3787,5], +[0,-20,-285,-2166,-23,-5038,-1478,-1286], +[0,-1512,-351,-13,-1185,-3,-27,-1,-72,-116,-66,-58,-186,-230,-1001,-244,-2188,-611], +[0,-1478,-192,-32,-12457,-12456,-476,-6526,-12455,-77,-222,-339,-292,-12454,-2,-316,-1833,-12453,-17,-1], +[1,3,3789], +[0,3790,3791,3792,4], +[0,-402,-28,-2166,-353,-23,-1566,-12452,-12451,-1478], +[0,-351,-1,-199,-40,-2410,-2409,-10,-12450], +[0,-1478,-959,-53,-300,-5037,-129,-947,-5036], +[1,3,3794], +[0,0,3795,3796,5], +[0,-5,-1,-12,-25,-67,-4,-85,-2], +[0,-12449,-5035,-1994], +[1,3,3798], +[0,0,3799,3800,10], +[0,-2056,-5,-960,-12448,-4,-395,-12447,-2,-30], +[0,-3549,-114,-3246,-12446,-5034,-727,-774,-5033], +[1,3,3802], +[0,0,3803,7,11], +[0,-50,-11,-21,-140,-296,-295,-582,-29,-5,-22,-19,-12445,-12444,-94,-86,-98,-1971,-1,-12,-251,-827,-10,-25,-64,-190,-762, +-150,-9,-12443,-8,-18,-4,-7,-120,-12442,-2,-17,-92], +[1,3,3805], +[0,0,3806,7,4], +[0,-12441,-12440,-12439,-12438,-15], +[1,3,3808], +[0,0,115,3809,5], +[0,-5326,-630,-12437,-644,-12436,-5032,-12435,-223,-149,-2078,-2408,-5031,-850,-12434,-12433], +[1,3,3811], +[0,0,3812,3813,4], +[0,-5,-658,-34], +[0,-12432,-1446,-5132,-1380,-299,-245,-287,-603], +[1,3,3815], +[0,3816,3817,3818,9], +[0,-12431,-1003], +[0,-5,-51,-2407,-12430,-5067,-81,-34], +[0,-1618,-245,-172,-1380,-163,-183,-299,-603,-450,-12429,-1206,-5030,-406,-1380], +[1,3,3820], +[0,3821,0,3822,4], +[0,-12428], +[0,-1327,-1618,-2,-1953,-12427], +[1,3,3824], +[0,0,3825,3826,5], +[0,-5,-22,-19,-5305,-1,-12426,-12,-25,-5304,-12425,-4,-5303,-124,-2,-5302], +[0,-5029,-12424,-12423,-12422,-12421,-12420,-6461,-12419,-12418,-3249,-12417,-141,-2406,-635,-2], +[1,3,3828], +[0,3829,3830,3831,8], +[0,-60,-206,-40,-58,-1979,-1547,-12416], +[0,-156,-13,-3,-27,-1,-3245,-3244], +[0,-387,-348,-571], +[1,3,3833], +[0,3834,3835,3836,5], +[0,-1076,-5028,-12415,-5027,-493,-12414], +[0,-94,-13,-1952,-152,-503,-298,-1,-5026,-827,-10,-265,-3,-568,-15,-180,-120,-27,-186,-12413,-1785], +[0,-387,-682,-3243], +[1,3,3838], +[0,0,3839,3840,8], +[0,-781,-21,-5025,-12412,-12411,-231,-63,-232,-204,-728,-13,-1,-84,-10,-76,-67,-78,-703,-139,-612,-212,-189,-418,-755, +-909,-1320,-2469,-3,-14,-2139,-77,-27,-186], +[0,-571,-3638,-53,-129], +[1,3,3842], +[0,3843,3844,7,4], +[0,-93,-1617,-12410], +[0,-5,-89,-262,-72,-4,-7,-85,-555,-124], +[1,3,3846], +[0,3847,125,3848,9], +[0,-1154], +[0,-28,-1382,-1061,-248,-12409,-405,-1736,-1951], +[1,3,3850], +[0,3851,31,7,8], +[0,-5024,-287], +[1,3,3853], +[0,0,3854,3855,4], +[0,-848,-51,-238,-145,-499,-12408,-2439,-343,-807,-157,-272,-81,-210,-34], +[0,-55,-918,-12407,-1454,-2712,-117,-1,-12406], +[1,3,3857], +[0,3858,3859,3860,8], +[0,-5136,-229,-469,-1401,-285,-2430], +[0,-5,-51,-110,-5023,-372,-81,-34], +[0,-12405,-670,-3396,-1636,-625,-1400,-719,-630,-5022,-3397,-303,-28,-1950,-3242,-624,-511,-2038,-93,-2520,-12404,-5021, +-947,-2081,-2180,-132,-202,-1951,-12403,-172,-3241,-387], +[1,3,3862], +[0,3863,3864,3865,11], +[0,-36,-230,-12402,-12401], +[0,-60], +[0,-1661,-12400,-281,-12399,-6421,-3983,-452,-5329,-1402], +[1,3,3867], +[0,3868,3869,3870,4], +[0,-188,-12398,-44], +[0,-5,-955,-22,-19,-1,-3240,-10,-115,-67,-4,-124,-2], +[0,-12397,-12396,-12395,-12394,-5020,-12393,-339,-860,-6460,-12392,-12391,-5060,-12390,-1721,-12389,-12388,-12387,-12386, +-12385,-12384,-12383,-12382,-46,-12381,-12380,-12379,-12378], +[1,3,3872], +[0,3873,3874,3875,9], +[0,-515,-3239], +[0,-366,-5,-22,-19,-2761,-1,-191,-1020,-10,-12377,-2427,-198,-371,-2,-12376,-30], +[0,-12375,-12374,-1448,-2405,-12373,-12372,-12371,-99,-6459,-12370,-12369,-5019], +[1,3,3877], +[0,3878,3879,3880,8], +[0,-2427,-12368], +[0,-12367,-69,-12366,-3238,-5,-5018,-1220,-2659,-2088,-269,-736,-12365,-2404,-43,-152,-26,-118,-5068,-2229,-5017,-166, +-12364,-12363,-5016,-3,-2536,-752,-198,-993,-149,-1125,-5015,-4,-180,-7,-1112,-27,-156,-2,-518], +[0,-1448,-99,-12362,-337,-12361], +[1,3,3882], +[0,3883,3884,3885,5], +[0,-2403,-12360,-12359,-12358,-12357,-12356,-3434,-2860,-5014,-5013,-12355,-210], +[0,-5012,-1071,-662,-739,-257,-5,-12354,-3511,-2426,-269,-2135,-51,-201,-110,-116,-168,-43,-12353,-12352,-12351,-237,-658, +-823,-41,-657,-2572,-498,-198,-188,-417,-904,-12350,-1124,-2706,-197,-113,-27,-12349,-372,-12348,-1106,-153,-2,-34], +[0,-105,-401,-1422,-1618,-402,-195,-2402,-113,-631,-1949,-1948,-865,-2078,-1080,-1407,-2515,-12347,-12346,-5011,-12345, +-201,-688,-188,-3239], +[1,3,3887], +[0,0,3888,3889,4], +[0,-32,-285,-14,-382,-807,-38,-12344,-5010,-993,-157,-179,-11,-160,-901,-3958,-1457,-21,-12343,-12342,-203,-204,-232, +-2495], +[0,-12341,-53,-2667,-271], +[1,3,3891], +[0,0,3892,3893,4], +[0,-2219,-72,-7,-85], +[0,-303,-358,-12340,-2186,-12339,-986,-627,-1954,-12338,-12337,-12336,-12335,-12334,-12333], +[1,3,3895], +[0,0,0,3896,8], +[0,-380,-12332], +[1,3,3898], +[0,33,3899,7,5], +[0,-109,-69,-5,-13,-380,-3,-7,-14,-1298,-146,-12331,-2], +[1,3,3901], +[0,3902,0,7,9], +[0,-3237,-44], +[1,3,3904], +[0,3905,3906,3907,8], +[0,-101,-1967,-12330,-5009], +[0,-12329,-5118,-316,-12328,-2884,-1852,-707,-88,-3,-884,-70,-1669], +[0,-5008,-5007,-474,-450,-390,-42,-943,-12327,-12326,-1852,-12325,-547,-114,-348,-5689,-45,-3819,-270,-1253,-100,-12324, +-165,-73,-723,-2401,-856,-271,-884,-259,-6027], +[1,3,3909], +[0,3910,3911,7,9], +[0,-12323,-12322,-1828,-5028,-809,-1805], +[0,-168,-12321,-41,-5006,-66,-23,-88,-1128,-12320], +[1,3,3913], +[0,3914,3915,3916,11], +[0,-921,-28,-466,-101,-167,-93,-1872,-470,-1546,-1858,-12319,-12318,-5005], +[0,-12317,-71,-3236,-531,-12316,-302,-365], +[0,-786,-60,-37,-227,-938,-666,-23,-388,-75,-375,-699,-209,-12315,-959,-1379,-2215,-589], +[1,3,3918], +[0,3919,3920,3921,5], +[0,-1531], +[0,-54,-167,-2230,-243,-656,-177,-365,-347,-6452,-532], +[0,-253,-192,-271,-740,-1380], +[1,3,3923], +[0,0,3924,49,4], +[0,-54,-655,-570,-1539,-13], +[1,3,3926], +[0,3927,3928,3929,9], +[0,-60,-59,-12314,-28,-23,-128,-744], +[0,-54,-167,-243,-177,-3,-27], +[0,-253,-59,-54], +[1,3,3931], +[0,3932,3933,49,6], +[0,-16], +[0,-54,-1541,-243,-177,-365,-1163,-655,-345], +[1,3,3935], +[0,3936,207,7,4], +[0,-466,-12313,-3537,-2217,-5005], +[1,3,3938], +[0,3939,3940,3941,5], +[0,-60,-1189,-12312,-817], +[0,-34,-54,-288,-167,-230,-493,-12311,-461,-1539,-243,-302], +[0,-253,-2573,-852,-12310,-580,-2025,-5004,-542,-508,-12309], +[1,3,3943], +[0,208,3944,3945,10], +[0,-54,-3245,-177,-917,-365], +[0,-253,-1219,-1989,-626,-775,-151,-1410,-3395,-7], +[1,3,3947], +[0,3948,3949,3950,8], +[0,-60,-12308,-1873,-2407,-156,-219], +[0,-54,-167,-243,-917,-177,-365,-821], +[0,-253,-5003,-432,-77,-24,-665,-592,-225], +[1,3,3952], +[0,3953,126,49,4], +[0,-20,-130], +[1,3,3955], +[0,3956,3957,3958,4], +[0,-149,-60,-700,-223,-3566,-1113,-396,-3434,-1947], +[0,-54,-177,-917,-365], +[0,-253,-209,-223,-105], +[1,3,3960], +[0,3961,3962,49,4], +[0,-20,-12307], +[0,-54,-167,-243,-917,-177,-365], +[1,3,3964], +[0,3965,127,3966,5], +[0,-20,-1946,-23,-599], +[0,-253,-24,-217,-1946], +[1,3,3968], +[0,3969,127,3970,8], +[0,-20,-576,-5002], +[0,-253,-12306,-24,-225,-548,-1275,-227,-541], +[1,3,3972], +[0,3973,126,3974,4], +[0,-20,-523,-1531], +[0,-253,-31,-1616,-227,-541,-580], +[1,3,3976], +[0,3977,3978,3979,8], +[0,-20,-2220,-564,-990,-523,-5293,-3355,-5294,-3356], +[0,-51,-237,-54,-34], +[0,-253,-541,-1208,-281,-1703,-1042,-1383,-227,-579,-256], +[1,3,3981], +[0,3982,207,7,5], +[0,-5331], +[1,3,3984], +[0,3985,3986,49,8], +[0,-20,-2400,-117], +[0,-54,-917,-365], +[1,3,3988], +[0,3989,3990,49,6], +[0,-222,-60,-20,-23], +[0,-54,-243,-177,-5001,-917,-365], +[1,3,3992], +[0,3993,3994,3995,6], +[0,-12305], +[0,-54,-243,-917,-177,-85], +[0,-253,-699,-75,-456], +[1,3,3997], +[0,3998,127,3999,8], +[0,-60,-20,-230,-1873,-219], +[0,-253,-432,-77,-24,-665,-592,-225], +[1,3,4001], +[0,4002,126,49,4], +[0,-20,-5002,-12304,-112], +[1,3,4004], +[0,4005,4006,4007,6], +[0,-1847,-60,-23,-1486], +[0,-54,-167,-1326,-1286,-177,-917,-365], +[0,-253,-594,-1141], +[1,3,4009], +[0,4010,4011,4012,4], +[0,-20,-315,-575,-990,-522], +[0,-54,-570,-167,-243,-532,-177,-365,-1540,-2399,-2398,-1326,-655,-345], +[0,-54,-253,-575,-2004,-780,-263], +[1,3,4014], +[0,4015,4016,4017,10], +[0,-20,-2035,-990], +[0,-54,-570,-167,-243,-177,-365,-2399,-12303,-2398,-1326,-655,-345], +[0,-54,-253,-2035,-571,-12302,-3235,-12301,-575,-2004,-780,-263], +[1,3,4019], +[0,4020,4021,4022,5], +[0,-20,-1], +[0,-48,-54,-167,-821], +[0,-253,-1,-217,-509,-2397], +[1,3,4024], +[0,4025,4026,4027,4], +[0,-2400,-613,-23,-5000], +[0,-54,-177,-365,-345,-1487], +[0,-253,-613,-1048,-581], +[1,3,4029], +[0,4030,4031,4032,8], +[0,-230,-166], +[0,-54,-243,-365,-531,-1771,-345], +[0,-253,-54,-42,-678,-166,-2475], +[1,3,4034], +[0,34,4035,4036,11], +[0,-49,-4999,-62,-296,-295,-582,-1,-84,-10,-76,-67,-131,-421,-54,-570,-302,-1163,-1540,-531,-655,-9,-78,-139,-212,-189, +-345,-3,-120], +[0,-253,-78,-54,-75,-388,-456,-4998], +[1,3,4038], +[0,4039,4040,209,10], +[0,-2400,-72], +[0,-13,-474,-54,-167,-12300,-243,-532,-177,-2399,-12299,-2398,-12298,-3,-7], +[1,3,4042], +[0,208,4043,4044,10], +[0,-13,-54,-12297,-167,-243,-177,-302,-568,-156,-3871], +[0,-625,-54,-253,-3234], +[1,3,4046], +[0,4047,4048,4049,11], +[0,-16,-12296,-219], +[0,-13,-167,-177,-302,-1010,-4997,-12295,-345,-3,-180,-1487], +[0,-253,-1731,-2396,-2522,-12294,-12293,-1615,-3233,-627,-595,-2039], +[1,3,4051], +[0,0,4052,7,10], +[0,-54,-570], +[1,3,4054], +[0,0,4055,4056,5], +[0,-54,-167,-243,-365,-77,-34], +[0,-253,-24,-77,-432,-225,-665,-2395,-3232], +[1,3,4058], +[0,4059,4060,4061,4], +[0,-135,-23,-522,-12292,-3231,-1233], +[0,-54,-616,-177,-302,-1326,-12291,-3941,-494,-717], +[0,-253,-54,-1233,-75,-199,-3,-375,-12290], +[1,3,4063], +[0,4064,210,4065,11], +[0,-20,-2200,-138], +[0,-253,-254,-308,-1214,-1045,-1649,-1221,-287,-37], +[1,3,4067], +[0,27,4068,209,9], +[0,-54,-177,-3], +[1,3,4070], +[0,4071,4072,4073,11], +[0,-60,-4996,-2394,-247,-4995], +[0,-1,-4994,-4993,-4992,-4991,-12289,-12288,-54,-167,-6453,-3,-7,-749], +[0,-54,-253,-1614,-281,-2393,-24,-2394,-1215], +[1,3,4075], +[0,4076,4077,4078,4], +[0,-20,-36,-23,-493], +[0,-54,-72,-7,-167,-1326,-3230,-177], +[0,-253,-4990,-958,-31,-24,-580], +[1,3,4080], +[0,4081,4082,4083,5], +[0,-48,-22,-19,-20,-1,-12,-115,-25,-118,-200,-276,-467,-752,-4,-83,-1778], +[0,-12287,-945,-359,-185,-2156,-4989,-69,-3238,-5,-269,-736,-3229,-43,-230,-40,-12286,-5017,-3,-27,-156,-2], +[0,-2,-539,-1254,-1448], +[1,3,4085], +[0,0,4086,4087,5], +[0,-12285,-1733,-252,-1057,-12284,-29,-5,-2434,-954,-1,-8,-1128,-4,-7,-125,-2], +[0,-6451,-111,-52,-335,-105,-99,-46], +[1,3,4089], +[0,4090,4091,4092,6], +[0,-12283,-5010,-12282,-554], +[0,-1,-828,-76,-350,-72,-3,-15,-7], +[0,-666,-245,-5916,-1379,-589,-1667,-3228,-4988,-852,-1613], +[1,3,4094], +[0,4095,72,4096,4], +[0,-654,-4987,-820,-1148,-1524,-999,-5148,-71], +[0,-68,-32,-192,-1237,-6068,-12281,-12280], +[1,3,4098], +[0,4099,4100,4101,4], +[0,-3342,-713,-423,-1162,-314,-12279,-6435,-72,-1305,-361,-5255,-7,-16,-597,-70,-554], +[0,-6450,-3], +[0,-68,-4986,-254,-12278,-471,-571], +[1,3,4103], +[0,4104,4105,4106,4], +[0,-160,-916,-38,-553], +[0,-51,-313,-904,-70,-34], +[0,-68,-160,-38,-24,-2575,-4985,-1275,-2395,-1945], +[1,3,4108], +[0,4109,4110,4111,4], +[0,-1268,-477,-1568,-264,-12277,-344,-143,-70], +[0,-13,-12276,-1,-32,-314,-3,-4], +[0,-68,-1227,-1070,-717], +[1,3,4113], +[0,4114,0,4115,4], +[0,-12275,-12274,-423,-261,-361,-986,-12273,-70,-554,-96], +[0,-68,-1421,-3272,-1069], +[1,3,4117], +[0,4118,4119,4120,6], +[0,-71,-896,-143,-553], +[0,-34,-3,-70,-235,-11,-313,-3811,-2147,-2726], +[0,-68,-292,-1277,-430,-1972,-1415,-4984,-3227,-389,-3226,-12272,-45,-593], +[1,3,4122], +[0,4123,211,4124,5], +[0,-916], +[0,-68,-4983,-2535,-2499,-4982,-1786,-3225,-12271,-12270], +[1,3,4126], +[0,4127,4128,4129,4], +[0,-477,-1185,-264,-200,-143,-71,-70,-745], +[0,-13,-423,-12269,-1008,-364,-117,-3,-7,-27,-186,-1490], +[0,-68,-1185], +[1,3,4131], +[0,4132,4133,4134,5], +[0,-59,-363,-2905,-197,-71], +[0,-3,-13,-2540], +[0,-68,-624,-59], +[1,3,4136], +[0,212,4137,4138,4], +[0,-3,-70], +[0,-32,-68], +[1,3,4140], +[0,4141,72,4142,10], +[0,-12268,-143,-12267,-16,-71], +[0,-32,-3488,-16,-68,-663,-4981,-12266,-2392], +[1,3,4144], +[0,4145,0,4146,8], +[0,-90,-12265,-159,-4980,-143,-71,-70], +[0,-68,-32,-433], +[1,3,4148], +[0,4149,4150,36,4], +[0,-71,-1827], +[0,-3,-70,-82], +[1,3,4152], +[0,4153,4154,4155,9], +[0,-4979,-916,-414], +[0,-51,-20,-151,-533,-498,-32,-70,-34], +[0,-68,-126,-625,-12264,-3234,-12263,-12262,-12261,-588,-4978,-2391,-433,-12260,-12259], +[1,3,4157], +[0,4158,114,4159,6], +[0,-264,-143,-7,-71,-70], +[0,-68,-1219,-626,-775], +[1,3,4161], +[0,4162,4163,4164,6], +[0,-576,-143,-71,-553], +[0,-13,-1952,-56,-41,-264,-32,-654,-314,-1537,-313,-3,-15,-70], +[0,-24,-1219,-227,-938,-576,-12258,-3974,-1009,-68,-624], +[1,3,4166], +[0,4167,213,36,10], +[0,-316,-143,-896,-71,-553], +[1,3,4169], +[0,4170,4171,4172,8], +[0,-363,-71,-219], +[0,-56,-151,-32,-1008,-6441,-819,-2227,-364,-470,-12257,-999,-3,-82], +[0,-32,-68,-5003,-432,-77,-24,-665,-592,-225], +[1,3,4174], +[0,4175,4176,36,4], +[0,-70,-71,-3517], +[0,-32,-3,-82,-66,-3433,-1490,-313,-611], +[1,3,4178], +[0,4179,128,4180,4], +[0,-1827,-12256,-143,-4977,-12255,-12254,-71,-70], +[0,-68,-1380,-24,-628,-494,-1378], +[1,3,4182], +[0,4183,128,4184,9], +[0,-71,-363,-200,-207], +[0,-68,-958,-12253,-12252,-1735,-1737,-4976], +[1,3,4186], +[0,4187,4188,4189,4], +[0,-802,-223,-1486,-264,-999,-477,-1113,-396,-1947], +[0,-32,-3,-125,-3971,-474], +[0,-624,-223,-1141,-4975,-209], +[1,3,4191], +[0,214,4192,4193,4], +[0,-32,-8,-4,-5026], +[0,-68,-669,-32], +[1,3,4195], +[0,4196,4197,4198,4], +[0,-477,-4974,-264,-143,-71], +[0,-117,-3,-70], +[0,-68,-24,-4974,-217,-539,-592], +[1,3,4200], +[0,4201,4202,4203,4], +[0,-70,-1946,-4973,-71,-264,-143], +[0,-15,-3,-27,-1,-7,-82,-56,-12251,-12250,-67,-84,-131,-1861], +[0,-1946,-68], +[1,3,4205], +[0,4206,4207,4208,4], +[0,-382,-2514,-143,-242,-553], +[0,-39,-70,-556,-313], +[0,-382,-227,-1224,-721,-1647,-24,-68,-38], +[1,3,4210], +[0,4211,4212,4213,4], +[0,-1773,-143,-553], +[0,-39,-70,-556], +[0,-68,-227,-24], +[1,3,4215], +[0,4216,4217,4218,5], +[0,-143,-71,-5062], +[0,-117,-522,-82,-70], +[0,-68,-450,-106,-32], +[1,3,4220], +[0,4221,4222,4223,9], +[0,-1,-264,-143], +[0,-32,-3,-70,-82,-66,-94,-3224,-12249], +[0,-68,-1,-32,-1954,-12248,-280,-2508,-354,-1254,-270,-45,-786,-217,-107], +[1,3,4225], +[0,4226,4227,4228,8], +[0,-276,-70,-444,-12247,-71,-143,-315,-4972], +[0,-32,-3,-82,-66,-100], +[0,-68,-126,-3223,-1046,-32,-107], +[1,3,4230], +[0,4231,4232,4233,6], +[0,-285,-1513,-143,-4971,-12246], +[0,-34,-51,-32,-70,-904], +[0,-68,-719,-469,-126,-625,-511,-93,-28,-1950,-70], +[1,3,4235], +[0,215,72,4236,5], +[0,-68,-5147,-798,-2435,-12245,-4970,-774,-32], +[1,3,4238], +[0,214,4239,4240,4], +[0,-32,-3,-70,-82,-235,-266], +[0,-68,-32,-2044,-3222,-248], +[1,3,4242], +[0,4243,27,4244,4], +[0,-12244,-1119,-12243,-71], +[0,-3518,-550,-1254,-32,-68,-100,-969,-107,-3221,-637,-1119], +[1,3,4246], +[0,4247,4248,4249,8], +[0,-20,-363,-3220,-12242,-242,-1065,-990,-71], +[0,-12241,-493], +[0,-68,-3985,-3220,-126,-625,-2507,-1963,-209,-337,-1053,-1621,-1620], +[1,3,4251], +[0,4252,4253,4254,4], +[0,-12240,-7,-554,-363,-12239,-197], +[0,-3,-70,-1,-66,-12238,-6377,-325,-647,-12237,-4969], +[0,-387,-1229,-1677,-12236,-1621,-1620,-717,-2401,-878,-32,-68,-348,-6491,-571], +[1,3,4256], +[0,4257,4258,4259,5], +[0,-4968,-264,-23,-143,-2809,-12235,-70], +[0,-1,-3,-1517,-7,-82], +[0,-32,-387,-12234,-68,-2392], +[1,3,4261], +[0,4262,4263,4264,9], +[0,-477,-475,-264,-143,-3219,-71], +[0,-32,-2228,-1162,-819,-364,-314,-2468,-2878,-1000,-3,-4967,-82], +[0,-541,-68,-1407], +[1,3,4266], +[0,4267,4268,4269,5], +[0,-250,-143,-896,-71], +[0,-70,-32,-654,-12233,-12232,-12231,-3,-12230,-82], +[0,-68,-250], +[1,3,4271], +[0,4272,4273,4274,4], +[0,-3517,-23,-999,-71], +[0,-13,-32], +[0,-2618,-68,-12229], +[1,3,4276], +[0,4277,4278,4279,10], +[0,-536,-285,-116,-1784,-242,-197], +[0,-3,-70,-66,-363,-3224,-315,-2390,-883], +[0,-68,-31,-1046], +[1,3,4281], +[0,4282,4283,4284,8], +[0,-71,-143,-1531], +[0,-32,-3,-70,-707], +[0,-550,-32,-68,-12228,-31,-3218,-1224,-776,-227], +[1,3,4286], +[0,4287,4288,4289,5], +[0,-3738,-12227,-1395,-12226,-12225,-4971,-12224,-12223,-12222], +[0,-32,-8,-1,-7,-4966,-1733,-4,-252,-1057,-48,-503,-12221,-2,-3217,-957,-4965,-83,-145,-12,-25,-298,-404], +[0,-68,-32,-741,-1086], +[1,3,4291], +[0,4292,4293,4294,9], +[0,-71,-4964,-4963], +[0,-3,-117,-72,-7,-82,-554,-325,-1864,-12220], +[0,-68,-3252,-12219,-12218], +[1,3,4296], +[0,4297,4298,4299,11], +[0,-71,-4964], +[0,-117,-3,-82], +[0,-68,-719,-93,-3223,-4962,-1162], +[1,3,4301], +[0,4302,4303,36,4], +[0,-60,-23,-12217,-71], +[0,-3983,-32,-2228,-364,-819,-983,-1000], +[1,3,4305], +[0,4306,4307,4308,4], +[0,-20,-916,-2220,-990,-523], +[0,-51,-3957,-4961,-70,-34], +[0,-68,-2220,-281,-1703,-3270,-3269,-227,-776,-541,-579,-1383,-1042,-1208,-256], +[1,3,4310], +[0,4311,4312,36,8], +[0,-477,-423,-28,-143,-130,-1293,-70,-553], +[0,-32,-313,-3,-82,-1490], +[1,3,4314], +[0,4315,4316,4317,4], +[0,-1189,-71,-264,-477,-12216,-143,-3219,-424], +[0,-34,-9,-3,-70,-82,-4960,-423,-49,-120,-937], +[0,-68,-3216,-4959,-4958,-3215,-2389], +[1,3,4319], +[0,4320,4321,4322,4], +[0,-12215,-143,-71], +[0,-94,-56,-423,-32,-530,-364,-3,-15,-70], +[0,-68,-1378,-24,-31,-2461], +[1,3,4324], +[0,4325,4326,4327,9], +[0,-1873,-363,-12214,-1125,-71,-219], +[0,-13,-3,-134,-34], +[0,-68,-1185,-158,-757], +[1,3,4329], +[0,4330,4331,4332,9], +[0,-66,-12213,-23,-143,-71,-553], +[0,-32,-364,-313,-4957,-117,-3,-7,-70], +[0,-68,-787,-66,-12212], +[1,3,4334], +[0,4335,4336,4337,10], +[0,-363,-1833,-71], +[0,-32,-85,-819], +[0,-1833,-68,-245,-665], +[1,3,4339], +[0,4340,4341,4342,10], +[0,-1189,-199,-12211,-143,-71], +[0,-32,-70], +[0,-591,-52,-68,-199,-375,-456,-1082,-85,-543,-75,-61,-388], +[1,3,4344], +[0,4345,4346,4347,4], +[0,-613,-143,-71,-2181], +[0,-1490,-5333,-70], +[0,-68,-613,-45,-338,-270,-354,-225,-509,-217,-360,-280,-581], +[1,3,4349], +[0,4350,4351,36,8], +[0,-23,-93,-143,-4973,-71], +[0,-32,-117,-3,-82,-70], +[1,3,4353], +[0,4354,4355,4356,5], +[0,-326,-1341,-1001,-143,-71], +[0,-1,-828,-32,-3,-82,-70], +[0,-68,-32,-106], +[1,3,4358], +[0,4359,4360,4361,5], +[0,-222,-242,-143,-896,-71,-553], +[0,-117,-3,-82,-70], +[0,-68,-32,-222], +[1,3,4363], +[0,4364,4365,4366,8], +[0,-20,-36,-70,-1486,-264,-2210,-197], +[0,-3,-27], +[0,-68,-1141], +[1,3,4368], +[0,4369,4370,4371,5], +[0,-3214,-128,-264,-362,-1546,-3213,-12210], +[0,-3,-27,-1,-180,-12209,-115,-76,-10,-67,-84,-131], +[0,-624,-32,-407,-2001,-4956], +[1,3,4373], +[0,4374,4375,7,10], +[0,-576,-363,-242,-197,-12208,-553], +[0,-13,-3,-70,-1,-66,-3971,-3224,-313,-2388,-2390,-4969], +[1,3,4377], +[0,4378,4379,4380,4], +[0,-1996,-71,-363], +[0,-13,-32,-3], +[0,-68,-227,-580,-721,-541,-31,-1996], +[1,3,4382], +[0,4383,211,4384,5], +[0,-1873,-118,-916,-3,-461], +[0,-68,-3,-75,-61,-388,-52,-456,-543,-591,-375,-1082,-85], +[1,3,4386], +[0,4387,4388,4389,10], +[0,-3212,-28,-143], +[0,-13,-32,-3,-70,-1,-568,-3244], +[0,-32,-68,-3234,-4978], +[1,3,4391], +[0,4392,72,4393,5], +[0,-12207,-494,-4955,-143,-71,-553], +[0,-68,-192,-1237,-5857,-4955], +[1,3,4395], +[0,4396,4397,4398,11], +[0,-135,-32,-288], +[0,-474,-819,-364,-5135,-117,-82], +[0,-32,-288,-12206,-209,-3211,-3285,-594,-624,-68], +[1,3,4400], +[0,4401,4402,4403,10], +[0,-23,-71,-264,-477,-2202,-143,-1510], +[0,-32,-3,-70,-82,-2226], +[0,-68,-2396,-32,-1731,-946,-12205,-12204,-3233,-12203,-2522], +[1,3,4405], +[0,4406,4407,4408,4], +[0,-1395,-20,-4954], +[0,-51,-904,-2,-70,-34], +[0,-32,-107,-5207,-939], +[1,3,4410], +[0,4411,4412,36,9], +[0,-20,-71,-264,-143], +[0,-34,-32,-3,-82,-460,-66,-56,-423,-611], +[1,3,4414], +[0,4415,4416,4417,9], +[0,-264,-143,-902,-553], +[0,-15,-3,-27,-70,-1,-38,-180,-313], +[0,-68,-38,-1945,-24], +[1,3,4419], +[0,4420,4421,4422,4], +[0,-2395], +[0,-3,-2157,-1393,-70], +[0,-12202,-316,-3252,-36,-12201,-782,-4962,-2392,-68,-31,-12200,-12199,-3223,-45,-592], +[1,3,4424], +[0,4425,4426,4427,5], +[0,-423,-200,-1524], +[0,-293,-1,-12198,-200,-3,-180,-883], +[0,-68,-490], +[1,3,4429], +[0,4430,4431,4432,10], +[0,-363,-242,-3906,-71,-553], +[0,-313], +[0,-68,-6,-866,-507,-2433,-271,-740,-1067,-4953,-4952,-665], +[1,3,4434], +[0,4435,4436,4437,11], +[0,-423,-2202,-113,-71,-70], +[0,-32,-653,-2228], +[0,-68,-2415,-12197], +[1,3,4439], +[0,0,4440,36,10], +[0,-32,-313,-999,-3,-4,-82,-70], +[1,3,4442], +[0,4443,4444,4445,9], +[0,-5,-1395,-518,-12196,-5307], +[0,-3,-70,-82,-33,-3309,-2,-315], +[0,-68,-1046], +[1,3,4447], +[0,4448,4449,4450,8], +[0,-916,-12195,-12194,-12193,-3210,-70,-2387], +[0,-51,-904,-34], +[0,-68,-4951,-12192,-4950,-1419,-580,-663,-4981,-433,-12191,-856,-1667,-12190], +[1,3,4452], +[0,215,4453,4454,4], +[0,-423,-1162,-3973,-3,-70], +[0,-68,-4951,-4950,-663,-1046,-1667], +[1,3,4456], +[0,4457,4458,4459,5], +[0,-20,-472,-230,-1873,-12189,-424,-264,-28,-5936,-12188,-493,-143,-896,-7,-70], +[0,-32,-313,-2387], +[0,-68,-432,-77,-24,-665,-592,-225,-12187,-130,-4949,-2002,-3209], +[1,3,4461], +[0,4462,4463,4464,6], +[0,-164,-138,-896,-143,-1139,-553], +[0,-32,-77,-3,-70,-1,-7,-5039,-38,-2468,-1315,-160,-1538,-1457,-313,-10,-191], +[0,-68,-77,-32], +[1,3,4466], +[0,4467,0,4468,5], +[0,-60,-363,-242,-1065,-2793,-71], +[0,-68,-4948,-126,-625,-2507,-1963,-209,-337,-1053,-1621,-1620], +[1,3,4470], +[0,4471,4472,4473,5], +[0,-20,-264,-1524,-143,-71,-44], +[0,-2386,-3217,-29,-4947,-5,-1976,-22,-19,-56,-1,-12,-145,-32,-8,-4,-57,-33,-2,-70], +[0,-68,-32,-254,-308], +[1,3,4475], +[0,4476,216,4477,10], +[0,-4946,-20,-264,-916,-1160,-523], +[0,-68,-761,-126,-1207,-263,-3208,-1717,-36,-1407,-2515], +[1,3,4479], +[0,4480,4481,4482,4], +[0,-12186,-12185,-208,-472,-24,-12184,-2422,-325,-130,-5009,-71], +[0,-476,-1,-828,-350,-32,-654,-1161,-1325,-2227,-3207,-66,-2390,-12183,-3,-242,-7,-70], +[0,-68,-32,-3206,-3209], +[1,3,4484], +[0,4485,216,4486,4], +[0,-11,-916,-12182], +[0,-68,-1061,-626,-775,-1219,-36,-3401,-194,-263,-367,-270,-45,-338,-360,-1168], +[1,3,4488], +[0,4489,213,4490,4], +[0,-12181,-2210,-143,-896,-393,-71,-553], +[0,-32,-393,-24,-592,-68,-2392], +[1,3,4492], +[0,4493,4494,4495,4], +[0,-143,-2783], +[0,-28,-32,-12180,-3,-12179,-70,-34], +[0,-68,-741,-961,-256,-579,-1614,-2393,-2385,-114,-24,-77,-222,-393,-1275,-1378,-31,-1203,-4945,-1944,-524], +[1,3,4497], +[0,4498,4499,4500,5], +[0,-1139,-143,-598], +[0,-50,-11,-21,-178,-51,-56,-26,-237,-15,-4,-70,-34], +[0,-68,-227,-256,-598], +[1,3,4502], +[0,4503,4504,4505,4], +[0,-238,-264,-143,-70], +[0,-1016,-32,-6442,-3,-157,-396,-27], +[0,-68,-256,-741,-1614], +[1,3,4507], +[0,4508,4509,4510,9], +[0,-916,-23], +[0,-51,-3977,-70,-34], +[0,-68,-23,-247,-271,-665,-31,-844,-4944,-4952], +[1,3,4512], +[0,4513,4514,4515,4], +[0,-477,-264,-460,-70], +[0,-3217,-5,-3205,-1395,-1204,-2386,-7,-32,-364,-2], +[0,-68,-2,-45,-12178], +[1,3,4517], +[0,4518,4519,4520,9], +[0,-2386,-477,-264,-999,-143,-460], +[0,-4943,-5,-3205,-32,-654,-1536,-196,-2], +[0,-32,-2,-107,-436,-68,-624,-196,-539,-217], +[1,3,4522], +[0,4523,4524,4525,4], +[0,-70,-71,-554,-130,-477,-143], +[0,-32,-7,-12177,-2,-5,-654,-820,-1395,-2226,-1132,-1976,-5264,-313,-12176], +[0,-2,-68,-12175,-436,-3654,-665,-593,-2150], +[1,3,4527], +[0,4528,4529,36,9], +[0,-3214,-1835,-71,-112,-12174,-3213,-488,-2884,-12173,-553], +[0,-39,-70,-1,-4,-12172,-1789,-1501,-12171,-1335,-150,-12,-25,-4942], +[1,3,4531], +[0,4532,122,4533,5], +[0,-363,-242,-3204], +[0,-1988,-24,-68], +[1,3,4535], +[0,4536,4537,4538,5], +[0,-28,-654,-143,-71,-70], +[0,-423,-554,-32,-819,-364,-653,-6444,-1009,-3973,-1325,-117], +[0,-68,-4990,-6436], +[1,3,4540], +[0,4541,4542,4543,4], +[0,-28,-444,-12170,-1161,-71,-554,-654,-423,-143], +[0,-15,-32,-3,-70,-56,-12169,-364,-530,-314,-94,-12168], +[0,-68,-31,-3215,-24,-580,-1380], +[1,3,4545], +[0,4546,4547,7,6], +[0,-3203,-4941,-3202,-20,-1872,-264,-3214,-3213,-12167,-12166,-4940,-1524,-88,-3738,-242,-896,-71,-70], +[0,-1880,-56,-423,-66,-2390,-117,-4939,-3,-7,-82], +[1,3,4549], +[0,4550,4551,4552,8], +[0,-986,-460,-71,-70,-554,-977,-2384], +[0,-3,-97,-597], +[0,-32,-68,-2384,-12165,-855,-940,-70,-12164], +[1,3,4554], +[0,4555,4556,4557,4], +[0,-477,-4938,-119,-264,-1542,-242,-1308,-143,-197,-285,-70,-2387], +[0,-56,-66,-3,-611,-180,-7,-82,-27,-1490,-138,-34], +[0,-32,-594,-68], +[1,3,4559], +[0,4560,0,4561,4], +[0,-1133,-70,-460,-17,-363], +[0,-68,-17], +[1,3,4563], +[0,4564,4565,4566,8], +[0,-223,-1947,-363,-1151,-2202,-149,-4937,-1113,-396,-71,-1486,-594], +[0,-3,-125], +[0,-68,-4975,-223,-1141], +[1,3,4568], +[0,4569,4570,4571,5], +[0,-498,-916,-70,-2384], +[0,-51,-5351,-4954,-32,-904,-12163,-2387,-34], +[0,-68,-855,-1426,-928,-541,-384,-126], +[1,3,4573], +[0,4574,4575,4576,5], +[0,-4995,-60,-70,-71,-93,-247,-2394,-4996], +[0,-32,-3,-1,-7,-4993,-12162,-6446,-1132,-1784,-6443,-12161,-4992,-4991,-4994], +[0,-68,-2394,-1614,-2393], +[1,3,4578], +[0,4579,4580,4581,11], +[0,-1558], +[0,-51,-904,-81,-34], +[0,-300,-589,-3201,-1407,-12160,-1207,-163,-299], +[1,3,4583], +[0,4584,4585,4586,4], +[0,-4936,-12159,-12158,-12157,-274,-12156,-12155,-521,-1720,-2631,-3200,-3199,-3198,-3197,-3196,-3195,-3194,-12154,-4935, +-12153,-4934,-12152,-12151,-3193,-3192,-12150,-12149,-3575,-12148,-3191,-3190,-3189,-3188,-3187,-4933,-5528,-461,-12147, +-12146], +[0,-80,-231,-63,-204,-1563,-12145,-14,-97,-39,-372], +[0,-100,-42,-390,-1728,-780,-280,-12144,-539,-217,-1049,-1535,-274,-133], +[1,3,4588], +[0,0,4589,4590,10], +[0,-12143,-12142,-54,-3340,-656,-616,-177,-2383,-347,-302,-1326,-4932,-12141], +[0,-414,-4931], +[1,3,4592], +[0,4593,4594,4595,8], +[0,-88,-1943,-130,-978,-112], +[0,-357,-1033,-98,-291,-110,-13,-12140,-289,-1562,-1172,-5440,-5443,-1,-12,-923,-1859,-40,-54,-3545,-167,-243,-656,-616, +-532,-4930,-347,-302,-821,-3343,-9,-5460,-18,-3,-1516,-524,-15,-4,-16,-27,-2,-247,-17,-170], +[0,-250,-524,-271,-31], +[1,3,4597], +[0,4598,4599,155,5], +[0,-756,-4929,-2254,-3482,-1841,-4928,-12139,-12138,-12137,-5721,-3186,-12136,-12135,-12134,-12133,-12132,-12131,-12130], +[0,-1144,-354,-6419,-4927,-4926,-250], +[1,3,4601], +[0,4602,4603,4604,6], +[0,-3470,-5,-454,-457,-2529,-205], +[0,-964,-5383,-2,-30,-3702], +[0,-79,-255,-91,-1455,-3185,-111,-127,-31,-1077,-632], +[1,3,4606], +[0,0,14,4607,4], +[0,-1631,-280,-668,-3474,-630,-3184,-37,-294,-1250,-287,-836,-587,-1062,-1644,-4925,-88,-565], +[1,3,4609], +[0,0,4610,4611,4], +[0,-310,-239,-1392,-4924,-664,-279,-159,-510,-1,-12129,-213,-275,-15,-187,-39], +[0,-5414,-2431,-2382,-4923,-549,-484,-159,-846], +[1,3,4613], +[0,0,4614,7,5], +[0,-117,-1000,-23,-39], +[1,3,4616], +[0,4617,4618,4619,10], +[0,-4922], +[0,-310,-239,-1392,-12128,-12127,-664,-766,-279,-1,-1166,-213,-1820,-275,-15,-187,-39], +[0,-1631,-12126,-4921,-12125,-12124,-1631,-1056,-12123,-45,-338], +[1,3,4621], +[0,4622,4623,4624,8], +[0,-246,-677,-1377,-4920,-6223,-3856,-1134,-607,-1942,-340,-483,-4919,-1941], +[0,-5,-1612,-43,-1534,-1159,-908,-4,-12122,-147,-260,-233,-2,-1396,-34], +[0,-578,-428,-31,-505,-202,-132,-165,-3183], +[1,3,4626], +[0,4627,4628,4629,4], +[0,-246,-1377,-1942], +[0,-5,-1612,-12121,-43,-326,-1281,-1534,-1159,-3963,-12120,-4,-147,-260,-233,-2,-1396,-340,-34], +[0,-1219,-578,-428,-31,-1376,-941,-202,-132,-505,-1282], +[1,3,4631], +[0,4632,4633,4634,9], +[0,-246,-677,-12119,-1473,-3543,-936,-12118,-5905,-760,-2159,-2759,-1500,-1111,-340,-1941], +[0,-5,-43,-1159,-4,-147,-260,-233,-2,-1396,-34], +[0,-24,-578,-428,-31,-511,-2713,-676,-12117,-1456,-1409,-505,-202,-132], +[1,3,4636], +[0,4637,4638,4639,5], +[0,-329,-5164,-246,-1473,-936,-12116,-4918,-2159,-4917,-1611,-3182,-1500,-1111,-2183,-1942,-1941], +[0,-5,-1665,-43,-4916,-1687,-824,-1159,-908,-2616,-1134,-3640,-4,-147,-260,-233,-2,-340,-34], +[0,-2576,-338,-2613,-578,-428,-31,-45,-866,-2106,-374,-507,-505,-202,-132], +[1,3,4641], +[0,4642,217,4643,6], +[0,-246,-677,-12115,-1473,-2159,-3856,-1134,-1500,-1111,-3894,-1941], +[0,-578,-428,-31,-851,-429,-12114,-505,-202,-132], +[1,3,4645], +[0,4646,4647,4648,4], +[0,-329,-246,-677,-1473,-936,-4918,-2159,-4917,-1611,-3182,-1500,-1111,-2183,-1942,-2527], +[0,-5,-47,-87,-43,-89,-2602,-1159,-4,-6,-35,-147,-260,-12113,-233,-2,-34], +[0,-578,-428,-31,-491,-6,-2381,-220,-505,-202,-132,-74], +[1,3,4650], +[0,87,0,4651,4], +[0,-1427,-428,-578,-31,-851,-163,-429,-183,-505,-132,-202], +[1,3,4653], +[0,4654,217,4655,4], +[0,-246,-677,-1472,-12112], +[0,-505,-428,-578,-132,-202,-31,-163,-1427,-183,-3706], +[1,3,4657], +[0,4658,4659,4660,4], +[0,-246,-1473,-6224,-1500,-1111], +[0,-5,-1665,-43,-4916,-12111,-1687,-4,-147,-260,-12110,-81,-233,-2,-34], +[0,-255,-5536,-578,-428,-31,-4915,-374,-505,-202,-132,-1940,-1375], +[1,3,4662], +[0,4663,4664,7,8], +[0,-745,-250], +[0,-15,-3,-1,-7,-125,-214], +[1,3,4666], +[0,0,4667,4668,5], +[0,-2009,-54,-167,-821,-2032,-66,-1148,-23,-2558,-1498,-985,-12109,-416,-12108], +[0,-163,-457,-1051,-31,-777,-1416,-455], +[1,3,4670], +[0,4671,4672,7,4], +[0,-809], +[0,-272,-85], +[1,3,4674], +[0,0,0,4675,4], +[0,-41,-667,-5755,-46,-12107,-12106,-12105,-12104,-12103,-12102,-12101,-12100,-12099,-12098,-12097,-12096,-12095,-12094], +[1,3,4677], +[0,0,4678,7,9], +[0,-598,-7,-4,-446,-2160,-11,-4914,-1273], +[1,3,4680], +[0,0,4681,7,11], +[0,-178,-21,-1068,-3530,-169,-50,-11,-94,-86,-42,-1,-500,-10,-145,-8,-496], +[1,3,4683], +[0,4684,4685,4686,5], +[0,-2380,-116,-12093,-12092,-12091,-12090,-12089,-12088,-12087,-12086,-101,-4913,-362,-4912,-236,-907,-993,-164,-1414, +-138,-2181,-12085,-12084], +[0,-12083,-3564,-109,-872,-411,-634,-69,-5,-5018,-269,-12082,-43,-13,-238,-1746,-1,-12081,-12080,-9,-18,-3,-27,-33,-2], +[0,-878,-2731,-1982,-52,-6428], +[1,3,4688], +[0,4689,4690,7,8], +[0,-3181], +[0,-116,-59,-2905,-315,-1,-54,-1012,-570,-365,-347,-302,-531,-4911,-655,-250,-699,-1296,-12079,-3899,-27,-3433,-12078, +-112], +[1,3,4692], +[0,0,4693,4694,4], +[0,-24,-151,-28,-3297,-79,-3,-1,-23,-14,-82,-175,-576,-1029,-58,-250,-2,-419,-12077,-69,-5292,-12076,-1228,-12075,-12074, +-76,-231,-12073,-10,-67,-84,-80,-19,-63,-22], +[0,-2107,-389], +[1,3,4696], +[0,218,0,7,4], +[1,3,4698], +[0,39,0,4699,5], +[0,-1533,-5055], +[1,3,4701], +[0,0,219,4702,4], +[0,-939], +[1,3,4704], +[0,4705,4706,4707,5], +[0,-466,-72], +[0,-112,-79,-12072,-7], +[0,-524,-271], +[1,3,4709], +[0,4710,4711,41,10], +[0,-439], +[0,-11,-216,-21,-136,-178,-13,-56,-2245,-1,-3,-15,-235,-121,-6,-7,-14,-273,-463,-341,-226], +[1,3,4713], +[0,4714,4715,7,8], +[0,-20,-16,-40,-58,-12071,-1499,-146], +[0,-8,-1,-7,-288,-57,-33,-124,-2,-29,-5,-162,-137,-185,-145,-10,-2379,-19,-12070,-22], +[1,3,4717], +[0,0,4718,4719,5], +[0,-12069,-1244,-458,-586,-5,-1047,-103,-836,-12068,-12067,-89,-1,-28,-79,-810,-417,-4910,-1385,-4,-459,-2,-284,-12066, +-30,-4909,-205,-258], +[0,-915,-111,-300,-105,-1041,-52,-434,-4908,-4907,-12065,-12064,-5029,-3407,-2045,-335], +[1,3,4721], +[0,4722,29,4723,6], +[0,-442], +[0,-387,-571,-1981,-1397], +[1,3,4725], +[0,4726,86,4727,6], +[0,-315,-72,-7,-16,-596,-219,-12063], +[0,-12062,-12061,-12060,-12059,-158], +[1,3,4729], +[0,4730,4731,4732,6], +[0,-1659,-497], +[0,-49,-62,-487,-48,-513,-80,-63,-204,-319,-3180,-5817,-12058,-5,-1079,-1469,-103,-1,-25,-859,-1170,-55,-1531,-9,-3406, +-79,-18,-343,-398,-4,-459,-14,-321,-33,-2,-83,-30], +[0,-2873,-31,-255,-73,-497,-3179], +[1,3,4734], +[0,0,4735,4736,9], +[0,-5,-43,-1281,-1842,-760,-4,-147,-260,-233,-2,-284,-34], +[0,-1610,-1374,-31,-849,-1056,-1218,-632,-1077], +[1,3,4738], +[0,4739,4740,4741,4], +[0,-4906], +[0,-3419,-1,-55], +[0,-510,-31], +[1,3,4743], +[0,0,4744,4745,5], +[0,-49,-62,-739,-4905,-29,-5,-110,-457,-1,-12,-10,-12057,-1158,-9,-4,-134,-57,-555,-153,-2,-83], +[0,-31,-12056,-12055,-12054,-457,-12053,-12052], +[1,3,4747], +[0,0,4748,4749,11], +[0,-12051,-43,-56,-14,-1288], +[0,-31,-482,-777,-3178,-1416,-457], +[1,3,4751], +[0,4752,4753,4754,5], +[0,-607,-3961], +[0,-151,-8,-9,-262,-425,-1,-237,-17,-1338,-2194,-4,-26,-50,-86,-250,-11,-18,-65,-12050,-49,-134,-12049,-21,-346,-10,-12, +-62,-944], +[0,-17,-31,-779], +[1,3,4756], +[0,4757,4758,4759,5], +[0,-2533,-576,-58,-1158,-3473,-3177,-112], +[0,-54,-1012,-347,-531,-645,-375], +[0,-37,-541,-2378,-24,-31,-3218,-45,-1616,-1224,-776,-227,-580,-1648,-2467,-3176,-165,-73,-3175,-938], +[1,3,4761], +[0,4762,4763,4764,4], +[0,-2533,-576,-58,-457,-3473,-3177,-175], +[0,-49,-1239,-80,-231,-63,-204,-12048,-4904,-1,-84,-9,-569,-8,-176,-18,-14,-2377,-104], +[0,-37,-541,-2378,-24,-31,-3218,-45,-1616,-1224,-776,-227,-580,-1648,-2467,-3176,-165,-73,-175,-3175,-938], +[1,3,4766], +[0,4767,4768,4769,9], +[0,-645], +[0,-39,-97,-556,-645], +[0,-31,-1064,-3925,-903,-335], +[1,3,4771], +[0,4772,4773,4774,4], +[0,-1659,-2873,-3909,-2183], +[0,-49,-62,-487,-283,-48,-80,-63,-204,-319,-3180,-739,-5,-47,-87,-1079,-1469,-103,-110,-1,-25,-859,-1170,-55,-9,-18,-398, +-491,-459,-6,-35,-14,-321,-33,-2,-83,-30], +[0,-3960,-31,-6,-73,-255], +[1,3,4776], +[0,0,4777,4778,5], +[0,-51,-238,-34], +[0,-31,-585,-3174,-3185,-1256,-1077,-632,-3173,-12047], +[1,3,4780], +[0,0,4781,4782,10], +[0,-9,-569,-78,-44,-1,-7,-14,-4,-56,-991,-2,-65,-378,-441,-400,-1040,-612,-12046,-5151,-5267,-702,-12045,-12044,-139, +-12043,-2720,-12042], +[0,-1939,-4903,-327,-31,-255,-281,-1203,-256], +[1,3,4784], +[0,4785,0,4786,5], +[0,-12041,-326,-4003,-497,-12040], +[0,-31,-141,-183,-4902,-3172,-1413], +[1,3,4788], +[0,4789,0,4790,5], +[0,-12039,-12038,-193,-28,-495,-88,-397,-16], +[0,-31,-217,-437,-3958], +[1,3,4792], +[0,4793,4794,4795,9], +[0,-12037,-3961,-23,-6354,-1291], +[0,-49,-62,-5,-26,-425,-144,-298,-3245,-1,-5324,-1532,-9,-8,-18,-377,-65,-4,-643,-4901,-693,-7,-134,-154,-2,-17,-92, +-12036], +[0,-17,-107,-31,-346], +[1,3,4797], +[0,4798,4799,4800,4], +[0,-12035,-58,-403,-2194], +[0,-48,-309,-1998,-69,-5,-2376,-43,-382,-1,-3447,-10,-1626,-2375,-350,-55,-3,-38,-6352,-3177,-7,-12034,-598,-175,-2,-83, +-3204], +[0,-2194,-12033,-31,-4900,-776], +[1,3,4802], +[0,4803,4804,4805,5], +[0,-5287,-1659,-3471,-457], +[0,-48,-5,-103,-1,-12,-115,-150,-55,-4,-555,-2,-83,-30], +[0,-31,-73,-940,-506,-255,-12032,-3796,-4986], +[1,3,4807], +[0,4808,129,4809,6], +[0,-1173,-528,-5127,-1294,-12031], +[0,-105,-627], +[1,3,4811], +[0,4812,4813,7,10], +[0,-1018,-4899,-1543], +[0,-205,-15,-12030,-60,-3,-16,-421,-800,-315,-279,-1295], +[1,3,4815], +[0,4816,4817,4818,5], +[0,-4898,-36], +[0,-162,-29,-5,-1578,-8,-57,-2,-604,-1953], +[0,-105,-604,-3281,-1609], +[1,3,4820], +[0,4821,4822,4823,4], +[0,-3700,-36,-614,-1154,-1152,-362], +[0,-49,-62,-48,-162,-359,-257,-12029,-29,-634,-5,-954,-454,-168,-1,-12,-25,-41,-499,-55,-9,-8,-18,-12028,-149,-1241,-1385, +-4,-125,-57,-2,-83,-205], +[0,-5353,-604,-332,-105,-401,-223,-41,-1164,-2716,-1608,-1031,-32,-616,-881,-205,-383], +[1,3,4825], +[0,4826,4827,4828,4], +[0,-1158,-261,-20,-12027,-12026,-608,-88,-2178,-1574,-614,-644,-12025,-3962], +[0,-4897,-85,-1,-41,-113,-12024], +[0,-37,-308,-856,-105,-401,-419,-12023,-209], +[1,3,4830], +[0,0,4831,4832,4], +[0,-171,-9,-3,-1,-82,-33,-4,-48,-1179,-2,-5,-18,-1977,-69,-12022,-49,-134,-12021,-83,-265,-12,-25,-62], +[0,-105,-223,-53,-2374,-41], +[1,3,4834], +[0,0,4835,4836,8], +[0,-185,-29,-12020,-22,-19,-1,-1020,-10,-40,-8,-1137,-57,-796,-33,-2], +[0,-141,-105,-3345,-12019,-12018,-2374,-2048], +[1,3,4838], +[0,0,0,4839,4], +[0,-401,-12017], +[1,3,4841], +[0,4842,4843,4844,4], +[0,-36,-4898], +[0,-8,-604,-57,-1953,-2,-29,-5,-1577,-162,-1578,-4896], +[0,-401,-604,-3281,-1609], +[1,3,4846], +[0,0,0,4847,10], +[0,-387,-682,-235], +[1,3,4849], +[0,4850,31,4851,11], +[0,-2514,-2545,-71], +[0,-245,-105,-2721,-113,-1618,-4895,-12016,-775,-3171,-5035], +[1,3,4853], +[0,0,4854,4855,5], +[0,-296,-2126,-295,-1345,-1,-12,-12015,-4,-14,-120,-39], +[0,-12014,-225,-24,-446], +[1,3,4857], +[0,0,84,4858,5], +[0,-3170,-3169,-4894,-247,-3168,-4893,-4892,-12013,-562,-3167,-2373,-4891,-4890,-4889], +[1,3,4860], +[0,4861,4862,4863,4], +[0,-12012,-36,-12011,-12010,-12009,-524], +[0,-60,-619,-1,-12,-84,-10,-76,-25,-67,-131,-41,-9,-18,-3,-15,-4,-82,-27,-259,-125], +[0,-271,-1157,-1938], +[1,3,4865], +[0,39,4866,4867,5], +[0,-12008,-11,-3804,-391,-173,-480,-21,-136,-178,-203,-80,-63,-204,-5,-22,-19,-103,-833,-56,-618,-1,-191,-12,-251,-10, +-4888,-9,-4887,-12007,-12006,-12005,-12004,-18,-4,-7,-14,-27,-2,-30], +[0,-1156,-1607,-1157,-3166,-2372,-1938,-3165,-12003], +[1,3,4869], +[0,0,4870,4871,4], +[0,-48,-319,-296,-295,-22,-19,-1,-12,-25,-55,-4,-14,-415,-120,-2], +[0,-1156,-12002,-46,-107], +[1,3,4873], +[0,4874,4875,4876,4], +[0,-3164], +[0,-15,-60,-12001,-2371,-3,-4886,-1,-16,-113,-12000,-2,-5,-823,-791,-310,-309,-2626], +[0,-2371,-452,-2370,-11999], +[1,3,4878], +[0,4879,4880,4881,5], +[0,-11998], +[0,-169,-86,-328,-1187,-56,-1,-191,-10,-496], +[0,-604,-11997,-4885,-8,-307], +[1,3,4883], +[0,0,4884,4885,4], +[0,-50,-11,-21,-22,-36,-1,-11996,-10,-72,-11995,-7,-3163,-85,-156,-33,-2], +[0,-469,-11994,-3241,-275,-1388,-1202,-719,-1075,-948,-5022,-28,-11993,-11992], +[1,3,4887], +[0,0,4888,4889,6], +[0,-43,-28,-171,-33,-124,-2,-458,-5,-320], +[0,-281,-1207,-11991,-3162,-2010,-5288,-2609,-3268,-5079,-1208,-5080,-11990,-5087,-5085,-1042,-5078,-579,-5086,-256, +-11989,-4884,-2610], +[1,3,4891], +[0,4892,4893,4894,5], +[0,-4883,-5256,-285,-206,-4882,-1331,-782,-4881,-3271,-4979], +[0,-34,-51,-151,-372,-3356,-4961,-3355], +[0,-227,-541,-281,-1704,-1042,-1383,-579,-1208,-256], +[1,3,4896], +[0,4897,4898,4899,5], +[0,-4883,-118,-11988,-782,-11987,-3271], +[0,-43,-34,-51,-2,-5], +[0,-541,-281,-11986,-227,-580,-579,-11985], +[1,3,4901], +[0,4902,0,4903,10], +[0,-11984,-197], +[0,-6420,-4902,-2461,-11983,-337], +[1,3,4905], +[0,0,4906,4907,9], +[0,-11,-5,-103,-56,-11982,-4880,-420,-9,-529,-11981,-23,-1139,-4,-441,-322,-7,-11980,-120,-171,-11979,-2,-104,-30], +[0,-529,-11978,-11977], +[1,3,4909], +[0,0,4910,4911,8], +[0,-11976,-29,-56,-8,-7,-57,-196,-2], +[0,-11975], +[1,3,4913], +[0,0,0,4914,4], +[0,-529,-3445,-3161,-450,-2479,-727,-1399,-11974,-2590,-3346], +[1,3,4916], +[0,186,4917,4918,5], +[0,-51,-3967,-81,-34], +[0,-407,-433,-5479,-5478,-358,-709,-11973], +[1,3,4920], +[0,4921,4922,4923,6], +[0,-2197,-3550], +[0,-51,-2000,-151,-118,-34], +[0,-628,-1044,-407,-128,-918,-663,-11972,-37], +[1,3,4925], +[0,4926,4927,4928,5], +[0,-11971,-11970,-11969,-11968,-11967,-11966,-11965], +[0,-5,-454,-1,-11964,-4,-2], +[0,-1041,-209,-11963,-11962,-667,-2419,-2369,-99,-3360,-11961,-1234,-11960,-410,-1074,-111,-52,-434,-1937,-1936,-2036, +-1073,-105,-401,-881,-2023,-1606,-300,-46,-2594], +[1,3,4930], +[0,0,14,4931,10], +[0,-2006,-163,-1646,-2368,-1063,-183,-1171,-4879], +[1,3,4933], +[0,4934,4935,4936,8], +[0,-4929,-2254,-3186,-1841,-756,-442], +[0,-354,-2225,-1144], +[0,-126,-405,-3282,-2225,-107], +[1,3,4938], +[0,4939,4940,4941,6], +[0,-764,-2760,-2141], +[0,-3160,-11959], +[0,-2218,-542,-52,-2646,-3159,-31,-4878,-209,-255,-91,-14,-1940], +[1,3,4943], +[0,0,4944,4945,4], +[0,-2,-30], +[0,-1155,-11958,-11957,-562,-3167,-4894,-247,-4877,-11956,-3168,-2373,-4893,-4891,-4890,-4889,-4892], +[1,3,4947], +[0,0,71,4948,10], +[0,-11955,-1980,-11954,-11953,-11952,-528,-91,-59], +[1,3,4950], +[0,0,29,7,5], +[1,3,4952], +[0,4953,4954,4955,5], +[0,-11951,-929,-767,-11950,-20,-2901,-1876,-2247,-5611,-515,-817,-2436,-11949,-5546,-982,-891,-2798,-2652,-394,-11948, +-210,-2754,-880,-205,-11947], +[0,-1412,-1071,-662,-1449,-5,-47,-11946,-11945,-4876,-269,-5861,-454,-11944,-51,-1348,-658,-4875,-64,-190,-567,-2835, +-1125,-4,-6,-3158,-27,-138,-33,-2,-34], +[0,-6,-37,-866,-1262,-127,-294,-491,-322,-11943,-844,-135,-183], +[1,3,4957], +[0,0,4958,4959,11], +[0,-49,-62,-487,-283,-48,-80,-63,-204,-24,-1,-25,-859,-55,-9,-8,-18,-65,-4,-459,-14], +[0,-3955,-11942,-225,-73,-24], +[1,3,4961], +[0,0,0,4962,6], +[0,-11941,-11940,-2465,-722,-1633,-253,-141,-37], +[1,3,4964], +[0,4965,4966,63,4], +[0,-3747,-2277,-1257,-1767,-2680,-4874,-489], +[0,-3746,-2], +[1,3,4968], +[0,4969,4970,4971,11], +[0,-929,-533,-164,-4874,-489], +[0,-420,-1848,-200], +[0,-2123,-2679,-1737,-1736,-37,-308,-294,-573,-336,-2678,-200,-1447,-2122,-45,-1263,-141,-335,-490,-2121,-397,-2120,-1301, +-1446,-1262,-174,-431,-102,-958,-1776,-2119], +[1,3,4973], +[0,4974,0,4975,8], +[0,-11939,-135], +[0,-11938,-141,-11937,-1935], +[1,3,4977], +[0,0,4978,4979,6], +[0,-1561,-3,-4873,-175], +[0,-370,-407,-860,-11936,-91,-11935,-3341,-757], +[1,3,4981], +[0,0,4982,4983,8], +[0,-1,-828,-76,-350,-101,-3,-15,-3279,-2189,-147,-11934,-272], +[0,-5007,-11933,-316,-1663,-339,-270,-106,-276,-866,-6,-11932,-884,-436,-2,-506,-259,-4872], +[1,3,4985], +[0,0,4986,4987,8], +[0,-60,-182,-94,-1350,-4871,-4870,-835,-620,-328,-4869,-447,-11931,-11930,-11929,-11928,-11927,-11926,-11925,-11924, +-11923,-11922,-11921,-11920,-11919,-11918,-1566,-6508,-1,-11917,-1016,-28,-54,-167,-243,-532,-11916,-11915,-117,-72,-609, +-7,-14,-273,-463,-11914,-5618,-893,-803,-3231,-396,-1782], +[0,-3953,-1157,-1607,-11913,-549], +[1,3,4989], +[0,0,4990,4991,4], +[0,-2283,-2282,-2281,-2942,-4058,-391,-140,-357,-1582,-155,-317,-5,-47,-87,-22,-19,-949,-11912,-278,-425,-89,-1,-251,-10, +-145,-64,-190,-1857,-11911,-3692,-11910,-54,-570,-167,-243,-616,-2230,-302,-11909,-2881,-821,-419,-8,-176,-249,-3941, +-398,-4,-4868,-6,-35,-77,-689,-220,-1487,-33,-2,-104,-847,-74,-1424,-2771], +[0,-11908,-4867,-11907,-3157,-1605,-95,-336,-3184,-2129,-45,-107,-24,-31,-409,-584,-6,-74,-192,-220,-129,-2], +[1,3,4993], +[0,220,4994,4995,5], +[0,-59,-420,-85], +[0,-75,-704], +[1,3,4997], +[0,4998,4999,5000,6], +[0,-11906,-11905,-11904], +[0,-5,-103,-1,-4,-602,-7,-14,-211,-44,-2,-30], +[0,-5554,-11903,-1672,-11902,-11901,-45,-141,-2], +[1,3,5002], +[0,5003,5004,221,5], +[0,-312,-207,-4866,-149,-123,-20,-36,-44,-23,-16,-889,-1458,-71,-4865,-688,-3156,-11900,-2367,-2388,-11899,-3155,-4864, +-4863,-4862,-4861,-3154,-4860,-4859], +[0,-8,-7,-196,-57,-496,-1423,-130,-2,-1201,-29,-5,-11898,-680,-18,-162,-142,-137,-2366,-11897,-1976,-3721,-3153], +[1,3,5006], +[0,5007,5008,5009,5], +[0,-5957], +[0,-357,-185,-29,-5,-3152,-40,-8,-496,-11894,-343,-4,-157,-7,-16,-801,-598,-153,-2], +[0,-11893,-1529,-741,-256,-95,-5097,-129,-4858,-973,-282], +[1,3,5011], +[0,5012,5013,5014,4], +[0,-11892,-11891,-36,-4857,-1827,-11890,-11889,-11888,-11887], +[0,-11886,-296,-845,-295,-109,-732,-162,-11885,-11884,-69,-5,-11883,-269,-22,-19,-13,-244,-1,-12,-3,-15,-4,-120,-1112,-27, +-33,-81,-124,-2,-123], +[0,-690,-1936,-11882,-11881], +[1,3,5016], +[0,0,5017,7,8], +[0,-3,-1], +[1,3,5019], +[0,5020,5021,7,5], +[0,-11880,-2371,-11879], +[0,-11878,-1332,-613,-39], +[1,3,5023], +[0,0,5024,5025,4], +[0,-766,-15,-39,-1,-2021,-213,-187,-239,-3492], +[0,-132,-540,-75], +[1,3,5027], +[0,5028,5029,184,9], +[0,-504], +[0,-1877,-97], +[1,3,5031], +[0,5032,88,5033,4], +[0,-11877], +[0,-1060,-2364,-280,-1045,-1630,-4856,-28,-1950,-4855,-651,-511,-2713,-947,-948,-3320,-163,-75], +[1,3,5035], +[0,5036,5037,5038,11], +[0,-11876,-1401], +[0,-51,-2000,-151,-118,-753,-81,-34], +[0,-918,-451,-11875,-358,-757,-11874,-158,-686,-651,-280,-668,-1044,-11873,-37,-1386,-773], +[1,3,5040], +[0,0,14,5041,6], +[0,-406,-651,-280,-75,-540,-3172,-1934,-4854,-631], +[1,3,5043], +[0,0,5044,5045,9], +[0,-13,-381,-707,-3,-1821,-14], +[0,-280,-651,-3151,-1835,-45,-4853,-1967,-406,-3172,-540,-2382,-853], +[1,3,5047], +[0,0,5048,5049,5], +[0,-3,-985], +[0,-31,-4858,-11872,-1706], +[1,3,5051], +[0,0,5052,5053,5], +[0,-5,-51,-372,-81,-34], +[0,-245,-540,-940,-4852,-1206,-3171,-507,-280,-668,-651], +[1,3,5055], +[0,5056,222,5057,5], +[0,-4851], +[0,-280,-11871,-722,-11870,-1615,-668,-1060,-287,-194,-174,-651], +[1,3,5059], +[0,0,31,5060,11], +[0,-91,-1151,-670], +[1,3,5062], +[0,0,5063,5064,11], +[0,-381,-707,-3,-14], +[0,-280,-651,-3151,-1835,-4853,-1967,-11869,-484,-406,-540,-2382,-853], +[1,3,5066], +[0,5067,5068,7,5], +[0,-188,-792], +[0,-13,-117,-11868,-3,-198], +[1,3,5070], +[0,5071,5072,5073,4], +[0,-28,-466,-698,-60,-219,-2380,-72,-1168,-101,-128,-978,-2888,-250,-461], +[0,-117,-7,-699,-56,-416], +[0,-787,-11867,-11866,-11865], +[1,3,5075], +[0,5076,56,89,4], +[0,-1851,-123,-2463], +[1,3,5078], +[0,5079,5080,5081,5], +[0,-2264,-326,-6481,-11864,-1824,-3923,-1107,-11863], +[0,-11862,-182,-169,-2926,-98,-1889,-2261,-1576,-11861,-835,-1032,-3339,-268,-2924,-291,-13,-4850,-535,-26,-144,-1,-825, +-919,-277,-3986,-32,-1844,-1009,-1325,-314,-1532,-346,-78,-139,-612,-189,-2469,-648,-702,-526,-222,-1143,-3257,-3,-27, +-186,-154,-196,-2,-1105,-438,-74,-6289,-11860,-1103,-882,-2173,-1480,-17,-170,-519], +[0,-6416,-74,-2717,-129,-127,-102,-52], +[1,3,5083], +[0,5084,156,5085,4], +[0,-6564], +[0,-1062,-73,-587,-854,-3184,-37,-308,-1063,-165,-723], +[1,3,5087], +[0,5088,5089,7,4], +[0,-11859,-576,-58,-11858,-11857,-72,-11856,-112,-3868,-11855], +[0,-11854,-11853,-56,-41,-11852,-11851,-11850,-11849,-11848,-11847,-4849,-4848,-4847,-11846,-4846,-4845,-11845,-11844, +-228,-608,-11843,-7,-4844,-6153], +[1,3,5091], +[0,5092,5093,5094,5], +[0,-60,-11842,-164], +[0,-48,-1,-5847,-55,-3,-522], +[0,-666,-37,-1379,-11841], +[1,3,5096], +[0,5097,5098,5099,4], +[0,-11840], +[0,-203,-63,-232,-204,-1711,-2363,-11839,-576,-26,-11838,-9,-249,-11837,-18,-362,-11836,-14,-870,-1956], +[0,-11835,-281,-1235,-4843,-11834,-5088], +[1,3,5101], +[0,5102,5103,223,6], +[0,-28,-378,-11833], +[0,-1,-4842], +[1,3,5105], +[0,0,5106,223,5], +[0,-283,-48,-928,-11832,-351,-1,-923,-28,-55,-79,-4,-77], +[1,3,5108], +[0,5109,0,5110,5], +[0,-1847,-72,-11831,-416,-247,-316,-3149,-11830], +[0,-61,-591], +[1,3,5112], +[0,5113,0,107,4], +[0,-4049,-715,-1839,-496], +[1,3,5115], +[0,5116,5117,5118,6], +[0,-11829,-11828], +[0,-5547,-50,-11,-216,-21,-49,-937,-86,-11827,-56,-9,-8,-4], +[0,-307,-8,-1432,-3996,-327,-75,-388], +[1,3,5120], +[0,5121,5122,107,6], +[0,-4049,-3741,-715,-20,-5949,-1839,-3740,-912,-2674,-96], +[0,-413], +[1,3,5124], +[0,5125,224,7,6], +[0,-11826,-5130,-20,-695], +[1,3,5127], +[0,5128,224,7,5], +[0,-3148,-3147,-586,-5,-79], +[1,3,5130], +[0,5131,5132,7,4], +[0,-3148,-4841,-715,-1432,-912,-79], +[0,-29,-586,-5,-9,-8,-72,-4,-441,-7,-57,-2], +[1,3,5134], +[0,5135,5136,7,9], +[0,-3148,-4841,-715,-5,-1432,-912,-2674], +[0,-2115,-304], +[1,3,5138], +[0,5139,5140,5141,5], +[0,-913], +[0,-366,-487,-283,-48,-5131,-29,-22,-19,-1,-12,-251,-10,-145,-25,-55,-9,-8,-4840,-1149,-18,-4,-57,-3639,-2], +[0,-8,-11825,-444,-11824,-75,-61,-3475], +[1,3,5143], +[0,5144,5145,5146,4], +[0,-40,-149], +[0,-11,-2161,-2271,-155,-122,-317,-2362,-29,-11823,-5,-11822,-47,-87,-2557,-1034,-86,-98,-4027,-1885,-2917,-305,-446, +-1879,-832,-144,-1343,-298,-215,-1024,-501,-1,-1336,-3146,-919,-277,-40,-346,-1005,-8,-1832,-1149,-11821,-377,-2201,-38, +-1504,-492,-3919,-805,-397,-11820,-6,-2818,-1302,-35,-692,-6261,-128,-2807,-77,-462,-16,-890, +-154,-557,-392,-2,-438,-3145,-17,-520,-170,-2772,-3873], +[0,-8,-31,-946,-2397,-107], +[1,3,5148], +[0,5149,5150,7,4], +[0,-72,-138,-123,-506], +[0,-8,-11819,-285], +[1,3,5152], +[0,0,0,5153,5], +[0,-8,-686,-3144,-3143], +[1,3,5155], +[0,5156,5157,7,6], +[0,-20,-325,-5948,-3950,-912,-2674,-285,-5183], +[0,-872,-195], +[1,3,5159], +[0,5160,5161,7,8], +[0,-715,-5,-20,-504,-325,-323], +[0,-872,-623,-23], +[1,3,5163], +[0,5164,5165,7,5], +[0,-929,-20,-5946,-5945,-285,-2523,-138], +[0,-50,-11,-21,-140,-48,-1239,-715,-296,-295,-5,-86,-4839,-26,-1,-12,-251,-1626,-145,-25,-55,-8,-4840,-4,-7,-120,-16,-2, +-83], +[1,3,5167], +[0,5168,5169,7,6], +[0,-5,-1377,-912,-1132,-461], +[0,-11,-11818,-2655,-1612,-498,-11817,-4838], +[1,3,5171], +[0,5172,5173,5174,4], +[0,-11816,-11815,-11814,-11813,-11812,-11811,-11810,-11809,-11808,-11807,-11806,-11805,-11804,-11803,-11802,-11801,-11800, +-11799,-11798,-11797,-11796,-11795,-11794,-11793,-11792,-11791,-11790], +[0,-11789,-11788,-11787,-11786,-513,-80,-2530,-63,-204,-1079,-1,-11785,-697,-14,-415,-1223,-2377,-555,-2,-4837,-30], +[0,-281,-11784,-11783,-579,-1383,-1042,-3268,-1933,-2500,-2501], +[1,3,5176], +[0,0,5177,7,6], +[0,-11,-1097,-6124,-770,-11782,-622,-3561,-2146,-974,-3806,-1273,-1095,-140,-3825,-577,-479,-4836,-2361,-729,-5835,-11781, +-3142,-2360,-5,-103,-208,-11780,-1567,-353,-1346,-1653,-11779,-424,-1,-1552,-824,-922,-229,-1837,-261,-1518,-907,-11778, +-606,-1660,-491,-3141,-4,-6,-35,-602,-4835,-1411,-392,-1093,-211,-2,-30,-74,-3287,-258], +[1,3,5179], +[0,0,0,5180,6], +[0,-789,-11777,-11776,-875,-3140,-3139,-31,-183,-412,-3138,-45,-2,-11775,-2867], +[1,3,5182], +[0,5183,5184,5185,4], +[0,-2867], +[0,-487,-1998,-252,-330,-122,-317,-47,-87,-22,-19,-26,-144,-1,-12,-25,-64,-190,-2233,-346,-79,-4,-6,-35,-1046,-154,-6010, +-33,-171,-2,-30,-17,-92,-170], +[0,-6,-2867,-31,-183,-412,-11774,-3140,-3139,-3137], +[1,3,5187], +[0,5188,5189,5190,4], +[0,-20,-4834,-11773,-11772,-2804,-2142,-2209,-1139,-11771], +[0,-15,-60,-54,-27,-565,-56,-167,-5466,-1326,-473,-11770,-302,-177,-365], +[0,-11769,-11768,-11767,-11766,-11765,-11764,-11763,-11762,-11761,-11760,-11759,-11758,-11757,-11756,-11755,-11754,-11753, +-11752,-11751,-11750,-11749,-11748,-11747,-11746,-11745,-11744,-11743,-11742,-11741,-4834,-11740,-11739,-11738,-11737, +-11736,-11735,-11734,-11733,-11732,-11731,-11730,-11729,-11728,-11727,-11726,-11725,-11724,-11723,-11722,-11721,-11720, +-11719,-11718,-11717,-11716,-11715,-11714,-11713,-11712,-11711,-11710,-4833,-4833, +-11709,-11708,-11707,-11706,-11705,-11704,-11703,-11702,-11701,-11700,-11699,-11698,-11697,-11696,-11695,-11694,-11693, +-11692,-11691,-11690,-11689,-11688,-11687,-11686,-11685,-11684,-11683,-1431,-11682,-11681,-11680,-11679,-11678,-11677, +-11676,-11675,-11674,-11673,-11672,-4832,-4832,-11671,-11670,-11669,-11668,-11667,-4831,-4830,-2359,-2804,-11666,-11665, +-11664,-11663,-11662,-11661,-11660,-11659,-11658,-11657,-11656,-11655,-11654,-11653, +-11652,-11651,-11650,-4829,-11649,-11648,-11647], +[1,3,5192], +[0,5193,5194,5195,4], +[0,-11646,-11645,-5975,-11644,-11643,-5974,-1762], +[0,-5012,-3755,-5973,-3754,-5,-2], +[0,-318,-409], +[1,3,5197], +[0,0,0,5198,5], +[0,-6,-1255,-1202,-1721,-11642,-952], +[1,3,5200], +[0,0,0,5201,10], +[0,-249,-45,-91,-369], +[1,3,5203], +[0,5204,5205,7,4], +[0,-249], +[0,-54,-7,-55,-252,-11641,-4828,-531,-11640,-345,-4827,-3136,-11639,-4826,-656,-6455,-4930], +[1,3,5207], +[0,0,5208,5209,11], +[0,-5,-3,-2], +[0,-2031,-773], +[1,3,5211], +[0,5212,5213,5214,4], +[0,-11638,-1634,-28,-2866,-466], +[0,-1190,-110,-1181,-249,-117,-88,-3,-524,-416,-801,-138,-17,-92], +[0,-3518,-11637,-11636], +[1,3,5216], +[0,0,5217,5218,4], +[0,-204,-1,-84,-763,-214,-54,-3136,-616,-365,-2383,-302,-3135,-4825,-4,-375,-373,-14,-2619,-894,-97], +[0,-352,-1652,-91,-11635,-860,-337,-2866,-59], +[1,3,5220], +[0,5221,5222,5223,8], +[0,-1353], +[0,-15,-240,-3,-1,-14,-272,-348,-110,-1181,-1333,-226,-80,-63,-4824], +[0,-259,-73,-2670,-11634], +[1,3,5225], +[0,5226,5227,5228,10], +[0,-427,-2611,-58,-36,-1869,-28,-11633,-3134,-1496,-11632], +[0,-48,-1733,-252,-957,-1057,-5,-503,-404,-298,-1,-12,-145,-25,-8,-815,-4966,-4965,-4,-7,-2,-83], +[0,-11631,-42], +[1,3,5230], +[0,5231,5232,7,4], +[0,-135,-58,-40,-11630,-11629,-11628,-11627,-11626,-11625,-11624], +[0,-2056,-185,-5,-103,-288,-33,-171,-2,-30], +[1,3,5234], +[0,5235,5236,5237,6], +[0,-20,-1029,-58,-4823,-1167,-921,-28,-497,-101,-11623,-11622,-2528,-23,-93,-2059,-5496,-490,-4822,-128,-1293,-599,-11621, +-11620,-5000,-11619,-1283], +[0,-13,-56,-2711,-117,-3,-985,-1494,-27,-186,-11618,-11617,-551], +[0,-1048,-1254,-217,-539,-2639,-509], +[1,3,5239], +[0,5240,5241,5242,4], +[0,-427,-11616,-874,-116,-11615,-424,-11614,-3250,-221,-998,-228,-72,-11613,-599,-247], +[0,-193,-32,-530,-6440,-15], +[0,-42,-45], +[1,3,5244], +[0,5245,0,5246,4], +[0,-1408,-5316,-2358,-5315,-166,-11612,-1984], +[0,-166,-99,-2585,-1447,-45,-42], +[1,3,5248], +[0,5249,0,5250,5], +[0,-1408,-2899,-2898,-11611,-4005,-6413,-6273,-1984], +[0,-166,-100,-99,-114,-45,-270,-42], +[1,3,5252], +[0,5253,5254,225,5], +[0,-11610,-11609,-11608,-4906,-4009,-11607,-3133,-3962,-2871,-759,-6417,-607,-4821,-11606,-1106,-284,-11605,-11604,-2529, +-11603,-3293], +[0,-3419,-1,-763,-115,-55,-101,-93,-3,-11602,-343,-608,-806,-16,-1112,-1108,-11601,-11600], +[1,3,5256], +[0,5257,5258,225,5], +[0,-11599,-3132,-4009,-497,-11598,-607,-113,-3293,-2170], +[0,-59,-135,-419,-117,-1656,-699,-644,-522,-4820,-1782], +[1,3,5260], +[0,0,5261,5262,4], +[0,-56,-54,-167,-2032,-66,-3,-985,-416,-11597], +[0,-299,-482,-45,-106,-774,-2456,-163,-429,-589], +[1,3,5264], +[0,5265,5266,7,8], +[0,-37,-5525,-921,-497,-23,-93,-599], +[0,-60,-59,-575,-2035,-56,-66,-613,-1516,-699,-157,-985,-11596,-27,-5518,-11595,-11594], +[1,3,5268], +[0,5269,226,5270,5], +[0,-20,-647,-990,-2523,-885,-3202], +[0,-117,-946,-1254,-550,-217,-509,-4819,-5444,-637], +[1,3,5272], +[0,5273,5274,5275,4], +[0,-11593,-11592], +[0,-69,-5,-22,-19,-1,-2236,-10,-3,-15,-33,-2], +[0,-106,-11591,-831,-1413,-1628,-11590,-11589,-165,-73,-6412,-11588,-37], +[1,3,5277], +[0,0,5278,7,8], +[0,-134], +[1,3,5280], +[0,0,0,5281,9], +[0,-106,-318], +[1,3,5283], +[0,5284,5285,5286,4], +[0,-2270,-6545,-6248,-20,-119,-2132,-2510,-1155,-276,-3940,-11587,-748,-4818], +[0,-5,-289,-499,-9,-2157,-1393,-372,-210,-2], +[0,-1253,-209,-1619,-1740,-1087,-11586,-307,-2673,-75,-61,-410,-450,-4817], +[1,3,5288], +[0,5289,5290,5291,10], +[0,-1030,-1662,-1151,-5314,-1508], +[0,-310,-239,-1392,-5217,-3321,-11585,-664,-279,-510,-1,-213,-275,-187,-39], +[0,-106,-429,-11584,-1419,-1645,-3131], +[1,3,5293], +[0,0,0,5294,5], +[0,-106,-429,-11583,-1376], +[1,3,5296], +[0,0,5297,5298,11], +[0,-159,-1,-84,-10,-76,-67,-131,-65,-985,-14,-984,-463,-341,-226,-27,-85,-11582], +[0,-106,-276,-1050,-430,-338], +[1,3,5300], +[0,0,5301,7,4], +[0,-3,-1,-7,-2,-5,-69,-19,-22], +[1,3,5303], +[0,5304,206,5305,4], +[0,-3251], +[0,-603,-1669,-126,-106,-303,-40], +[1,3,5307], +[0,0,5308,5309,5], +[0,-3430,-11581,-13,-1,-11580,-3], +[0,-106,-318,-814,-437,-409], +[1,3,5311], +[0,5312,5313,5314,5], +[0,-460,-4816], +[0,-39,-2438,-4815,-844,-3475,-423], +[0,-106,-245,-1613,-73,-60,-723], +[1,3,5316], +[0,5317,5318,5319,8], +[0,-567,-11579,-16,-11578,-11577,-11576,-6398,-11575,-11574,-6399], +[0,-2833,-15,-2927,-13,-3,-27,-1,-575], +[0,-1465], +[1,3,5321], +[0,5322,5323,7,5], +[0,-11,-11573,-11572,-324,-164], +[0,-3578,-5,-11571,-925,-89,-1,-12,-261,-93,-149,-4,-14,-2778,-2], +[1,3,5325], +[0,0,5326,5327,4], +[0,-5,-103,-1385,-171,-2,-30], +[0,-1255,-335,-46,-11570,-6,-484,-111,-234,-3831], +[1,3,5329], +[0,5330,5331,5332,6], +[0,-3130,-1810,-1962,-197], +[0,-156,-54,-375,-1,-110,-167,-59,-398,-2,-419,-11569,-1012,-347,-11568], +[0,-855,-2516,-4814], +[1,3,5334], +[0,0,5335,5336,6], +[0,-395,-8,-9,-1,-459,-57,-33,-4,-2,-11,-18,-1031,-289,-10,-12,-25,-176,-19,-22,-251], +[0,-1465,-91], +[1,3,5338], +[0,0,5339,5340,4], +[0,-421,-66,-3], +[0,-1465,-777,-1416], +[1,3,5342], +[0,5343,5344,5345,6], +[0,-1672,-156,-28,-261,-11567,-96,-2364,-23,-2208,-72,-7,-223,-119,-93,-800,-614,-130,-168,-325,-5690,-1121,-1101,-11566, +-1228], +[0,-13,-1422,-3,-1405,-27,-219,-1,-1874,-744,-157,-125,-59,-703,-180,-186,-11565,-2250,-189,-378,-400,-49,-244,-910,-120, +-76,-10,-4813,-418,-295,-67,-139,-4812,-84,-131,-212,-937,-296,-1527], +[0,-78,-11564,-456,-78,-270,-45,-61,-75,-2415,-11563], +[1,3,5347], +[0,5348,5349,5350,6], +[0,-4811,-23,-11562,-93,-5226,-472], +[0,-417,-1572,-13,-78,-3,-27,-414,-3590,-1,-128,-744,-59,-186,-2,-65,-378,-400,-3493,-265,-139], +[0,-449,-2357,-4810,-59], +[1,3,5352], +[0,5353,5354,5355,4], +[0,-522,-1775,-4809], +[0,-54,-1,-655,-570,-531,-345,-76,-1541,-10,-67,-84,-131,-1163,-1540], +[0,-449,-1039,-1775,-11561], +[1,3,5357], +[0,0,0,5358,4], +[0,-78,-449,-13,-3,-82], +[1,3,5360], +[0,227,5361,5362,9], +[0,-13,-78,-3,-27,-97,-189,-49,-120,-295,-937,-296], +[0,-449,-1039,-1373], +[1,3,5364], +[0,5365,5366,5367,5], +[0,-2080,-3532,-1705,-2620,-2079,-93], +[0,-49,-62,-4999,-296,-295,-582,-13,-316,-1,-84,-10,-76,-67,-131,-54,-167,-1011,-655,-9,-11560,-78,-11559,-212,-189, +-11558,-3,-1405,-416,-120,-27,-186], +[0,-449,-2357,-4808,-787,-66], +[1,3,5369], +[0,227,5370,5371,4], +[0,-54,-532,-177,-1011,-378,-78,-400,-645], +[0,-449,-1039,-91,-2017,-11557,-11556,-11555,-11554,-5322,-11553,-11552,-11551,-11550,-11549,-11548], +[1,3,5373], +[0,5374,5375,5376,5], +[0,-11547], +[0,-13,-11546,-1672,-1,-84,-67,-131,-54,-570,-167,-531,-655,-1539,-78,-345,-2356,-180], +[0,-449,-1039,-5628,-3387], +[1,3,5378], +[0,5379,5380,5381,4], +[0,-914,-219], +[0,-49,-62,-296,-295,-582,-9,-78,-189,-3,-1306,-120,-97], +[0,-78,-61,-449,-1039,-4807], +[1,3,5383], +[0,34,5384,5385,5], +[0,-13,-1672,-1,-84,-67,-64,-131,-54,-1541,-570,-302,-1163,-1540,-531,-655,-1539,-78,-345,-1405,-27,-186], +[0,-449,-1039,-3248], +[1,3,5387], +[0,5388,5389,5390,5], +[0,-378], +[0,-54,-9,-78,-1,-199,-49,-120,-76,-10,-295,-582,-67,-84,-131,-212,-737,-937,-296], +[0,-449,-3129,-199], +[1,3,5392], +[0,228,5393,5394,6], +[0,-13,-1,-84,-67,-64,-131,-54,-1541,-570,-1163,-531,-1011,-655,-78,-703,-139,-212,-1320,-345,-3,-568,-27,-296,-295,-120, +-49,-62,-9], +[0,-449,-3129,-3], +[1,3,5396], +[0,5397,5398,5399,4], +[0,-20,-647,-138], +[0,-13,-54,-570,-532,-177,-1163,-1011,-821,-378,-703,-1526,-345,-3,-645], +[0,-449,-4808,-3,-13,-207,-2431], +[1,3,5401], +[0,5402,5403,5404,4], +[0,-23,-645], +[0,-1,-84,-64,-131,-54,-1541,-570,-1163,-531,-1011,-655,-378,-78,-400,-345], +[0,-449,-1039,-903], +[1,3,5406], +[0,0,5407,5408,10], +[0,-13,-54,-78,-3,-375,-1,-655,-570,-400,-76,-10,-67,-84,-131,-212], +[0,-78,-449,-3129,-375], +[1,3,5410], +[0,5411,5412,5413,6], +[0,-119,-1871], +[0,-11,-1095,-21,-1,-378,-78,-139,-400,-418,-14,-273,-984,-463,-341], +[0,-1663,-430,-78,-370,-628,-1628,-107,-592,-2357,-449,-11545,-14], +[1,3,5415], +[0,0,5416,5417,8], +[0,-655,-54,-570,-1541], +[0,-449,-1039,-4806], +[1,3,5419], +[0,5420,5421,5422,4], +[0,-4805,-1233,-1242], +[0,-49,-62,-296,-295,-582,-185,-11544,-5,-9,-199,-78,-400,-120,-2], +[0,-449,-1039,-11543,-11542,-1233], +[1,3,5424], +[0,0,0,5425,4], +[0,-78,-449,-27,-307], +[1,3,5427], +[0,5428,5429,5430,5], +[0,-325], +[0,-872,-43,-1,-378,-78,-11541,-139,-400,-4,-14,-11540], +[0,-449,-2357,-4949,-45], +[1,3,5432], +[0,187,5433,5434,11], +[0,-13,-56,-3,-65,-15,-27,-186], +[0,-449,-946], +[1,3,5436], +[0,5437,5438,48,8], +[0,-28,-93,-519], +[0,-50,-11,-480,-21,-49,-62,-944,-86,-13,-244,-26,-1,-10,-25,-9,-66,-199,-8,-78,-703,-139,-189,-702,-18,-1133,-3,-235,-4, +-157,-134,-17], +[1,3,5440], +[0,0,27,5441,8], +[0,-3128,-3945,-11539,-868,-11538,-11537,-11536,-11535,-2861], +[1,3,5443], +[0,0,0,5444,6], +[0,-2861,-1301,-1467], +[1,3,5446], +[0,5447,5448,5449,6], +[0,-11534], +[0,-4804,-2706,-320,-1412,-103,-7,-3127,-81,-30,-11533,-11532,-11531,-11530,-11529,-11528,-11527], +[0,-1641,-853,-952,-433,-3484,-4803,-1069,-46,-11526,-690,-376,-1267,-566,-1066,-935,-3934,-442,-3126,-6513], +[1,3,5451], +[0,0,5452,5453,4], +[0,-381,-1104], +[0,-240,-37,-224,-135,-194,-174], +[1,3,5455], +[0,5456,5457,5458,5], +[0,-381,-4802,-36,-23,-5052,-2189,-2181,-2355,-1180,-58,-2217,-641,-1846,-3125], +[0,-605,-15,-81,-13,-2215,-39,-9,-3,-566,-27,-1,-1818,-7,-1172,-568,-797,-2354,-33,-2353,-4,-556,-56,-26,-1146,-186,-2,-5, +-5051,-18,-3124,-4801,-244,-146,-11525,-10,-11524,-11523,-12,-25,-3541], +[0,-1932,-676,-1066,-842,-566,-11522,-797,-3616,-1819,-862,-11521,-666,-718,-386], +[1,3,5460], +[0,5461,5462,5463,4], +[0,-5111,-229,-11520,-527,-101,-88,-11519,-164,-323,-3123,-599,-258], +[0,-715,-1650,-411,-725,-623,-517,-5808,-11518,-5860,-153,-2], +[0,-3122,-4800,-1980,-37,-11517,-685,-668,-2747,-4799,-11516,-5225,-1628,-625,-630,-45,-217,-11515,-11514,-11513,-1931, +-11512,-451,-5031,-635,-2,-11511,-11510,-1988,-4798], +[1,3,5465], +[0,0,5466,5467,6], +[0,-1,-206,-4797,-2852], +[0,-24,-1091,-632,-1373,-4807,-4796,-3387,-4806,-11509,-11508,-11507], +[1,3,5469], +[0,5470,0,5471,4], +[0,-261,-551,-36,-11506,-698], +[0,-1227,-2037,-1070], +[1,3,5473], +[0,5474,5475,5476,4], +[0,-1191,-1027,-924,-1652,-11505,-2485,-1339,-501,-709,-11504,-652,-2858,-344,-992,-751,-1294,-981,-980], +[0,-43,-4795,-1792,-97,-125], +[0,-111,-300,-105,-1041,-52,-332,-5446], +[1,3,5478], +[0,5479,5480,5481,5], +[0,-11503,-3771,-5679,-4794,-1014,-210,-258], +[0,-310,-320,-366,-1627,-11502,-3768,-3298,-11501,-954,-443,-125,-555,-3391,-153,-2], +[0,-443,-4793,-2015,-106,-3121,-73,-546], +[1,3,5483], +[0,5484,5485,5486,11], +[0,-4794,-11500,-981], +[0,-1551,-9,-443,-3,-15,-82,-125,-34], +[0,-11499,-106,-4793,-443,-3121], +[1,3,5488], +[0,0,5489,5490,5], +[0,-152,-8,-1520,-97], +[0,-443,-332,-4792], +[1,3,5492], +[0,5493,5494,5495,6], +[0,-475,-20,-11498,-992,-11497], +[0,-2254,-43,-1551,-443,-11496,-11495,-27,-125,-34], +[0,-443,-332,-738,-263], +[1,3,5497], +[0,5498,5499,5500,4], +[0,-36,-2858], +[0,-1,-84,-67,-131,-66,-443,-6410,-3,-82,-125], +[0,-443,-332,-4791,-11494], +[1,3,5502], +[0,5503,5504,5505,10], +[0,-36,-652,-2858,-563], +[0,-443,-15,-20,-9,-3,-1,-1854,-125,-11493,-147,-18,-49,-815,-1800,-150,-62], +[0,-443,-332,-3120,-434], +[1,3,5507], +[0,5508,5509,5510,11], +[0,-36,-11492], +[0,-1,-84,-10,-76,-67,-131,-66,-443,-3,-125], +[0,-443,-332,-126,-856,-11491], +[1,3,5512], +[0,5513,5514,5515,4], +[0,-3935,-643,-11490,-690,-96,-23,-393,-41,-168,-11489], +[0,-13,-60,-3,-27,-82,-125,-474], +[0,-1425,-986,-1959,-690], +[1,3,5517], +[0,5518,5519,5520,4], +[0,-11488,-207,-1,-11487,-11486,-617,-11485,-250,-1841,-2865,-1147,-72,-1493,-130,-146,-461,-11484], +[0,-354,-4790,-214,-11483,-7,-16], +[0,-75], +[1,3,5522], +[0,5523,5524,5525,5], +[0,-1676], +[0,-51,-16,-4789,-81,-34], +[0,-4788,-663,-158,-2466,-451,-1372,-11482,-358], +[1,3,5527], +[0,0,5528,5529,4], +[0,-1146,-11481,-110,-11480,-11479,-2214,-166,-23,-1822,-1806,-11478,-416,-11477,-247], +[0,-3161,-727,-542,-2025,-132], +[1,3,5531], +[0,0,5532,5533,9], +[0,-1491,-9,-78,-3,-27,-1,-11476,-14,-11475,-11474,-112,-189,-1320,-18,-11473,-4787,-4786,-1145,-231,-1831,-4785,-139, +-909,-212,-755,-11472,-11471], +[0,-11470,-774], +[1,3,5535], +[0,0,5536,5537,10], +[0,-110,-1333], +[0,-3944,-11469,-1646,-4784,-163,-11468], +[1,3,5539], +[0,0,5540,5541,6], +[0,-5112], +[0,-1646,-4783,-584,-550], +[1,3,5543], +[0,5544,0,5545,8], +[0,-1313,-758,-312,-1124,-1491,-123,-20,-118,-569,-564,-285,-1716,-96,-11467,-534,-4882,-1309,-7,-16,-1863,-101,-1125, +-460,-4782,-40,-499,-200,-753,-4781,-2574,-4780,-1565,-1003,-913,-93,-11466,-714,-498,-1513,-311,-2,-11465,-403,-1542, +-4779,-11464,-891,-1839,-4778,-1815,-11463,-641,-3119,-394,-518,-11462,-713,-5115,-2103,-4777,-11461,-4776,-994, +-930,-4775,-1604,-1778,-1355,-1814,-1442,-2647,-1285,-11460,-4774,-3118,-3117,-11459], +[0,-1525,-1931,-3116], +[1,3,5547], +[0,5548,5549,5550,6], +[0,-4773,-3279,-44], +[0,-80,-231,-63,-22,-19,-4772,-11458,-13,-43,-20,-403,-26,-1,-40,-5471,-28,-206,-54,-167,-243,-616,-531,-1845,-821,-11457, +-913,-4771,-4770,-5001,-88,-3,-4769,-65,-1506,-11456,-398,-172,-11455,-128,-14,-226,-301,-16,-395,-1487,-33,-2,-1430], +[0,-4768,-11454,-4767,-24,-11453,-4766,-11452,-4765,-4764,-222,-3115,-4763,-5845,-4762,-73,-592,-4761,-4760,-225,-548, +-1275,-11451,-11450], +[1,3,5552], +[0,0,5553,5554,4], +[0,-50,-11,-21,-49,-62,-48,-514,-309,-86,-26,-425,-151,-237,-1,-12,-583,-10,-145,-115,-25,-150,-55,-9,-8,-222,-11449,-18, +-262,-65,-4,-134,-138,-83,-17], +[0,-17,-779,-222,-4763,-3115,-24,-592], +[1,3,5556], +[0,5557,5558,229,4], +[0,-11448,-11447,-11446], +[0,-15,-39,-123,-768,-833,-1535,-97,-2,-5,-21,-4759,-4758], +[1,3,5560], +[0,5561,5562,5563,8], +[0,-11445,-2030,-11444], +[0,-11443,-15,-28,-39,-372,-1332,-7,-3609,-471,-1535,-610,-97,-26,-4756,-11442,-3519,-11441,-11440,-1342,-11439,-4755], +[0,-4757,-2853], +[1,3,5565], +[0,5566,5567,229,11], +[0,-4936,-11438,-11437,-4754,-11436,-11435], +[0,-15,-39,-838,-27,-768,-1332,-3609,-11434,-11433,-1535,-97,-4756,-59,-1795,-4753,-3114,-315,-11432,-11431,-1342,-4759, +-4755], +[1,3,5569], +[0,0,5570,5571,11], +[0,-51,-3113,-11430,-11429,-4752,-11428,-4751,-3937,-11427,-1108,-34], +[0,-1142,-4752,-11426,-3112,-163,-5343,-207,-508,-1848,-5491,-3705,-1402,-4750,-3111,-183,-511,-4749], +[1,3,5573], +[0,5574,29,5575,10], +[0,-930,-3713,-11425,-207,-93,-994,-1309,-312], +[0,-158,-1813,-2662,-37,-207], +[1,3,5577], +[0,5578,5579,5580,5], +[0,-930,-1442,-1355,-504,-994,-1309,-989,-4748,-603,-16,-891,-3710], +[0,-731,-3709,-730,-5900,-20,-3349,-11424,-85], +[0,-158,-1813,-2662,-37,-3708,-3943], +[1,3,5582], +[0,5583,29,5584,5], +[0,-930], +[0,-158,-1813,-2662,-37,-387,-11423,-11422], +[1,3,5586], +[0,0,5587,5588,4], +[0,-50,-11,-2146,-3812,-21,-178,-231,-204,-355,-13,-618,-11421,-26,-11420,-66,-8,-11419,-11418,-88,-3,-65,-15,-11417, +-1799,-7,-14,-44], +[0,-3157,-1605,-1417,-336,-95,-11416], +[1,3,5590], +[0,5591,5592,5593,6], +[0,-444,-1546,-11415,-11414,-1152,-2189,-128], +[0,-316,-1,-828,-12,-76,-350,-3,-15,-27], +[0,-1722], +[1,3,5595], +[0,0,5596,5597,4], +[0,-320,-29,-5,-2687,-403,-8,-2,-1104], +[0,-403,-353,-1085,-720], +[1,3,5599], +[0,0,0,5600,6], +[0,-4747,-2461,-11413,-31,-249,-1371,-11412,-6,-2775,-195], +[1,3,5602], +[0,5603,5604,5605,8], +[0,-58,-1829,-362,-2136,-1093,-259], +[0,-1627,-366,-49,-62,-48,-103,-848,-11411,-26,-1,-12,-115,-25,-859,-9,-1516,-4,-16,-2,-30], +[0,-217,-387,-11410,-1,-4,-179,-354,-1049,-280,-550,-509], +[1,3,5607], +[0,5608,5609,5610,4], +[0,-11409,-11408,-1836,-1003,-11407,-11406,-11405,-564,-489], +[0,-152,-658,-3207,-18,-647,-15,-235,-798,-2584], +[0,-37,-786,-1256,-3737,-174,-869,-194,-868,-455,-2110,-2672,-361,-2109,-785,-2108], +[1,3,5612], +[0,5613,5614,158,6], +[0,-2247,-1180,-1018,-1523,-1797,-880], +[0,-5640,-489,-2584], +[1,3,5616], +[0,5617,5618,7,8], +[0,-11404,-11403,-3818], +[0,-11402,-11401,-5854,-11400,-3693,-44], +[1,3,5620], +[0,5621,5622,5623,5], +[0,-23,-88,-1031,-11399,-1564], +[0,-3,-27,-1,-1515,-66], +[0,-192,-5553,-856,-209,-684], +[1,3,5625], +[0,5626,5627,5628,6], +[0,-1310,-383,-802,-135,-700,-223,-119,-11398,-1113,-423,-242,-3110,-4937], +[0,-3,-1,-117,-125], +[0,-184,-684,-589,-209,-105,-37], +[1,3,5630], +[0,5631,5632,7,4], +[0,-119,-4746,-2525,-205], +[0,-316,-3,-82,-27], +[1,3,5634], +[0,5635,5636,5637,4], +[0,-2005,-28,-4771,-101,-4913,-345,-23], +[0,-54,-177,-302,-4911,-3230,-3981,-180,-27], +[0,-253,-259,-2005,-54,-353], +[1,3,5639], +[0,5640,5641,5642,4], +[0,-1189,-1513,-1123,-3109], +[0,-54,-167,-6183,-34], +[0,-685,-28,-54,-2001,-511,-11397,-947,-407,-2416], +[1,3,5644], +[0,0,5645,7,6], +[0,-56,-1,-76,-8,-4,-134], +[1,3,5647], +[0,5648,5649,5650,4], +[0,-2358,-1823,-11396,-11395,-11394,-11393,-11392,-11391,-6218,-11390,-11389,-11388,-11387,-11386,-11385,-11384,-4745], +[0,-188,-1488], +[0,-1398,-209,-111,-589,-184,-684,-383,-261,-410,-307,-99,-604,-1823,-46,-53,-4744,-419,-105,-1422,-401], +[1,3,5652], +[0,5653,5654,5655,4], +[0,-3130], +[0,-169,-94,-98,-278,-3524,-328,-11383,-833,-11382,-1570,-383,-12,-54,-3545,-1012,-656,-616,-347,-302,-11381,-531,-1821, +-4743,-3344,-1845,-4742,-3343,-9,-18,-345,-3,-4,-11380,-3588,-2,-112,-17,-170], +[0,-11379,-11378,-1069,-11377], +[1,3,5657], +[0,5658,27,7,11], +[0,-201,-36,-11376,-96], +[1,3,5660], +[0,5661,5662,5663,4], +[0,-403,-36,-229,-11375,-96], +[0,-94,-5577,-2259,-268,-328,-1561,-1023,-1,-84,-10,-145,-76,-67,-762,-131,-8,-1311,-2352,-16], +[0,-11374,-11373,-2040,-3108,-217,-686,-158,-539,-667,-165], +[1,3,5665], +[0,0,0,5666,4], +[0,-370,-2351,-132], +[1,3,5668], +[0,0,0,5669,4], +[0,-339,-370,-2351,-132], +[1,3,5671], +[0,0,0,5672,10], +[0,-385,-1642], +[1,3,5674], +[0,0,0,5675,4], +[0,-385,-446], +[1,3,5677], +[0,0,0,5678,5], +[0,-385,-11372], +[1,3,5680], +[0,0,0,5681,4], +[0,-385,-1871], +[1,3,5683], +[0,0,0,5684,5], +[0,-385,-2350], +[1,3,5686], +[0,0,0,5687,5], +[0,-385,-2044], +[1,3,5689], +[0,0,0,5690,5], +[0,-385,-2021], +[1,3,5692], +[0,0,0,5693,9], +[0,-385,-1618], +[1,3,5695], +[0,0,0,5696,9], +[0,-385,-11371], +[1,3,5698], +[0,0,0,5699,4], +[0,-385,-4741], +[1,3,5701], +[0,0,0,5702,4], +[0,-385,-11370], +[1,3,5704], +[0,0,0,5705,4], +[0,-23,-385,-2351,-132], +[1,3,5707], +[0,0,0,5708,5], +[0,-385,-11369], +[1,3,5710], +[0,0,0,5711,4], +[0,-385,-11368], +[1,3,5713], +[0,0,0,5714,4], +[0,-385,-774], +[1,3,5716], +[0,0,0,5717,10], +[0,-385,-3551], +[1,3,5719], +[0,0,0,5720,4], +[0,-385,-494], +[1,3,5722], +[0,0,0,5723,4], +[0,-385,-4740], +[1,3,5725], +[0,0,0,5726,5], +[0,-385,-11367], +[1,3,5728], +[0,0,0,5729,5], +[0,-385,-2456], +[1,3,5731], +[0,5732,0,5733,4], +[0,-4940,-4939], +[0,-385,-271], +[1,3,5735], +[0,0,0,5736,5], +[0,-385,-1994], +[1,3,5738], +[0,0,0,5739,4], +[0,-385,-11366], +[1,3,5741], +[0,5742,5743,5744,5], +[0,-5476,-540,-1554,-3417,-11365,-11364,-4739], +[0,-15,-39,-9,-11363,-1,-5801,-11362,-18,-3464,-3462,-3465,-3463], +[0,-263,-738,-36,-1347,-552], +[1,3,5746], +[0,5747,5748,5749,5], +[0,-3287,-2511], +[0,-34,-51,-81,-138], +[0,-455,-37,-1214,-294,-2455,-3273,-2431,-5091,-533,-5090,-722,-263,-367,-174,-1262], +[1,3,5751], +[0,5752,5753,5754,4], +[0,-929,-1876,-2798,-138,-880], +[0,-5,-394,-11361,-81,-3451,-34], +[0,-263,-738,-367,-37,-174,-869,-194,-254,-2349,-4738,-11360,-5042,-1262,-361,-3107,-485], +[1,3,5756], +[0,5757,5758,5759,5], +[0,-11359,-36,-3424,-1797,-11358], +[0,-49,-62,-11357,-5612,-4880,-1,-191,-12,-2442,-10,-25,-40,-9,-569,-15,-4,-180,-85,-2], +[0,-367,-263,-5510,-141], +[1,3,5761], +[0,0,5762,5763,5], +[0,-4924,-5,-54,-167,-243,-656,-616,-11356,-177,-347,-302,-4737,-11355,-199,-33,-2], +[0,-263,-738,-367,-91], +[1,3,5765], +[0,0,5766,5767,10], +[0,-5555,-4,-2], +[0,-2348,-2207,-11354], +[1,3,5769], +[0,5770,5771,5772,6], +[0,-351,-1173,-4736,-60,-36,-3131,-41,-11353,-2922,-116,-1155,-1816,-168,-1793,-11352,-11351,-4735,-11350,-11349,-1286, +-11348,-11347,-4734,-11346], +[0,-15,-13,-54,-78,-3,-27,-219,-1,-56,-167,-1930,-125,-59,-1562,-186,-1011,-189,-531,-619,-11345,-11344,-920,-1012,-1010, +-910,-11343,-302,-11342,-347,-4813,-11341,-139,-4812,-11340,-212,-3353], +[0,-111,-1074,-410,-99,-41,-6329,-443,-778,-667,-3616,-566,-1210,-1216,-376,-2347,-1819,-842,-1066,-3898,-4733,-52,-95, +-4732], +[1,3,5774], +[0,5775,5776,196,5], +[0,-2737], +[0,-59,-2237,-85], +[1,3,5778], +[0,5779,5780,5781,9], +[0,-11339], +[0,-153,-9,-372,-1,-23,-237,-33,-2,-5,-142,-257,-49,-11338,-4731,-1071,-11337,-62], +[0,-386,-718,-471,-4730,-4729,-1544,-1253,-1044,-11336,-11335,-91,-381], +[1,3,5783], +[0,0,5784,5785,5], +[0,-5,-110,-89,-228,-72,-4,-85,-555,-124], +[0,-11334,-3126,-433], +[1,3,5787], +[0,0,5788,5789,10], +[0,-232,-155,-3780,-14,-415,-2,-104,-30,-11333,-11332,-11331], +[0,-11330,-11329,-11328,-11327,-11326,-3106,-11325,-11324,-11323], +[1,3,5791], +[0,5792,5793,5794,9], +[0,-60,-711,-11322,-809], +[0,-56,-66,-72,-3,-611,-82], +[0,-281,-299,-11321,-287,-1933,-2500,-5400,-1042,-1383,-579,-1208,-2501,-11320,-11319,-1403,-4728,-4727,-3502,-4784, +-11318,-11317,-11316,-5928,-11315,-4726,-4725,-11314,-11313], +[1,3,5796], +[0,5797,5798,5799,5], +[0,-11312,-11311,-1408,-4780,-2899,-2898,-11310,-2358,-443,-4724,-149,-1499,-3450,-1984], +[0,-815,-4745,-188,-11309,-1488], +[0,-1823,-209,-105,-1422,-401,-46,-419,-1398,-111], +[1,3,5801], +[0,5802,5803,5804,8], +[0,-20,-1565,-36,-573,-1680,-2355,-11308,-533,-1852,-1843,-11307,-760,-757,-101,-1604,-3105,-72,-324,-899,-2052,-864,-601, +-804,-11306,-3779,-156,-2473,-133,-1396,-340,-1078,-123,-483,-219,-1778,-4723,-96], +[0,-11305,-162,-246,-411,-11304,-11303,-5,-736,-677,-680,-2346,-3229,-413,-26,-5155,-285,-138,-2,-1104], +[0,-100,-11302,-11301,-61,-42], +[1,3,5806], +[0,5807,5808,5809,8], +[0,-1763], +[0,-48,-63,-232,-110,-1387,-404,-1,-4,-459,-14,-799,-146,-30], +[0,-163,-11300,-2002,-1054,-5517], +[1,3,5811], +[0,5812,5813,5814,6], +[0,-205,-201,-79,-44,-422,-23,-2216,-3778,-1394], +[0,-1,-124,-454,-2,-5,-65,-586,-142,-19,-5858,-11299,-22], +[0,-11298,-1955,-2,-4006,-453,-5020,-45,-11297,-11296,-11295,-11294,-11293,-2369,-11292,-11291,-1215,-11290,-11289,-42, +-4722,-11288,-6395], +[1,3,5816], +[0,5817,5818,5819,4], +[0,-20,-444,-206,-554,-1513,-493,-599], +[0,-54,-3,-82,-167], +[0,-1185,-32,-624,-253], +[1,3,5821], +[0,0,5822,5823,4], +[0,-872,-5,-51,-325,-11287,-372,-81,-34], +[0,-2413,-72,-1379,-3396,-3397,-405,-942,-248,-1382,-1065,-11286,-11285,-772,-2412,-303,-1400,-3436], +[1,3,5825], +[0,0,0,5826,5], +[0,-1379], +[1,3,5828], +[0,5829,5830,5831,4], +[0,-1247,-1353,-1884,-116,-11284,-3946,-11283,-1308,-247,-1283], +[0,-5,-59,-11282,-11281,-1,-11280,-3,-597,-2,-112], +[0,-5083,-31,-4721,-1603,-100,-969], +[1,3,5833], +[0,5834,5835,5836,6], +[0,-1268,-1412,-4720,-11279,-4719,-11278,-4718,-11277,-4717,-4716,-193,-2922,-20,-3752,-2681,-1029,-1947,-3168,-101,-813, +-1141,-568,-1818,-188,-288,-563,-605,-562,-602,-489,-689,-747,-797,-2179,-11276,-195], +[0,-4715,-11275,-5875,-4714,-11274,-6164,-5070,-11273,-257,-411,-955,-1686,-954,-22,-19,-1,-12,-25,-303,-8,-248,-4,-146, +-125,-57,-211,-795,-2], +[0,-46,-99,-410,-335,-2,-386,-4713,-11272,-1982,-11271,-11270,-11269,-11268,-4712,-1267,-842,-566,-2179,-1684,-778,-683, +-11267,-1069,-1070,-11266,-11265,-11264,-4711,-11263,-4710,-5559,-3104,-2850], +[1,3,5838], +[0,0,5839,5840,5], +[0,-283,-6258,-6563,-6562,-6561,-4709,-11262,-142,-5,-47,-87,-22,-19,-304,-382,-1,-3103,-190,-23,-241,-38,-696,-561, +-11261,-2345,-4,-6,-35,-689,-863,-2165,-171,-2], +[0,-102,-11260,-3102,-1263,-11259,-11258,-6,-11257,-2,-45,-184,-53,-2719,-102,-11256,-5952,-2477,-11255,-129], +[1,3,5842], +[0,0,5843,7,5], +[0,-2438,-3290,-2437,-423,-1624], +[1,3,5845], +[0,0,5846,5847,6], +[0,-5,-22,-19,-103,-160,-43,-1,-1020,-251,-79,-11254,-77,-179,-2722,-2,-104,-847,-30], +[0,-11253,-6157,-107,-11252,-225], +[1,3,5849], +[0,5850,71,5851,4], +[0,-466], +[0,-100,-11251,-360], +[1,3,5853], +[0,5854,5855,5856,5], +[0,-1353,-457,-11250,-11249,-11248,-11247], +[0,-203,-80,-63,-204,-240,-110,-43,-13,-1,-84,-41,-348,-379,-1321,-2733,-1318,-3781,-1138,-6077,-4708,-11246,-11245,-4707, +-2707,-2703,-3,-4706,-1817,-14,-272,-125], +[0,-100,-73,-1043,-221,-2344], +[1,3,5858], +[0,0,5859,5860,8], +[0,-1755,-51,-1463,-701,-146,-97], +[0,-100,-221,-2344,-2618,-3101], +[1,3,5862], +[0,0,230,5863,5], +[0,-2344,-221,-100], +[1,3,5865], +[0,0,230,5866,8], +[0,-2344,-221,-100,-1929,-11244,-3100,-4705], +[1,3,5868], +[0,5869,5870,5871,4], +[0,-58,-1558,-444,-379,-645,-1119,-11243,-71,-156], +[0,-56,-66,-11242,-97,-39], +[0,-100,-1064,-452,-271], +[1,3,5873], +[0,0,5874,5875,4], +[0,-5,-43,-20,-4,-147,-260,-138,-233,-2,-34], +[0,-2368,-100,-4704,-734,-3460,-183], +[1,3,5877], +[0,0,5878,5879,11], +[0,-1650,-5,-47,-87,-11241,-89,-6,-35,-234,-4835,-4703,-2,-74], +[0,-100,-11240,-6,-491,-866,-74,-1238,-873,-2381,-11239,-234,-31], +[1,3,5881], +[0,5882,88,5883,4], +[0,-315,-11238,-708,-11237,-11236,-11235,-88,-11234,-4980,-1119,-4702,-4960], +[0,-3101,-1043,-390,-1602,-42,-11233,-3099,-2389,-4701,-100,-969,-107,-1728,-1243,-1119,-11232,-844,-2112,-734,-11231, +-11230,-11229,-1669], +[1,3,5885], +[0,5886,5887,5888,5], +[0,-1519,-4700,-11228,-11227,-11226,-11225,-11224,-1928,-394], +[0,-48,-309,-193,-51,-43,-3859,-1,-181,-115,-826,-150,-11223,-206,-101,-3306,-649,-221,-4708,-4707,-2707,-11222,-2439,-65, +-392,-884,-2,-17,-92], +[0,-100,-217,-969,-11221,-996], +[1,3,5890], +[0,5891,5892,5893,10], +[0,-58,-1869,-469,-101,-649,-4699,-996,-221,-93,-11220,-3123,-311], +[0,-51,-2439,-34], +[0,-100,-996,-37,-724], +[1,3,5895], +[0,0,5896,5897,4], +[0,-310,-11219,-11218,-845,-295,-737,-582,-1058,-238,-1043,-26,-3614,-89,-3098,-1,-379,-221,-11217,-11216,-4698,-7,-120, +-2373,-44,-2], +[0,-100,-3097,-31], +[1,3,5899], +[0,5900,5901,163,4], +[0,-5883,-5882,-486,-5881,-5894,-5884,-3706,-1153,-5891,-5886,-5890,-5889,-5893,-5888,-5885,-2210,-1827,-5887,-221,-1138, +-5880,-5879,-3799,-5892,-1794,-3705], +[0,-59,-238,-28,-5877,-3,-5878,-97,-134], +[1,3,5903], +[0,5904,0,7,4], +[0,-471,-11215], +[1,3,5906], +[0,5907,0,160,10], +[0,-291,-4697,-3945,-1319,-1824,-121,-11214,-691,-3904,-11213,-595], +[1,3,5909], +[0,5910,5911,5912,8], +[0,-90,-11212,-3133,-11211,-5613,-11210,-1493,-5468,-11209], +[0,-11,-1230,-6083,-173,-21,-178,-5152,-69,-22,-19,-293,-98,-43,-152,-151,-11208,-1338,-1,-12,-84,-10,-265,-115,-25,-67, +-823,-11207,-264,-28,-32,-615,-250,-11206,-78,-212,-189,-418,-702,-6143,-526,-72,-3,-995,-4696,-11205,-11204,-11203, +-11202,-11201,-4,-287,-27,-4695,-1108,-33,-2,-17,-11200], +[0,-2348,-11199,-3422,-4694,-11198,-73,-1630,-1417,-5549,-11197,-11196,-5321,-388], +[1,3,5914], +[0,5915,5916,7,10], +[0,-2028,-4693,-3558], +[0,-3,-17], +[1,3,5918], +[0,0,5919,5920,9], +[0,-3,-97], +[0,-1135,-11195,-3096], +[1,3,5922], +[0,5923,5924,5925,4], +[0,-408,-677,-3095,-936,-2053,-1519,-4692,-11194,-4691,-4690,-1928,-11193], +[0,-5,-43,-4689,-89,-3404,-1281,-1534,-1134,-11192,-4,-147,-260,-175,-233,-2,-34], +[0,-360,-100,-3097,-4688,-841,-165,-389,-934,-505,-202,-132], +[1,3,5927], +[0,5928,5929,5930,5], +[0,-246,-408,-1377,-936,-4687,-11191,-1942,-340,-483], +[0,-5,-1612,-43,-1534,-1159,-908,-2343,-3094,-4,-147,-260,-233,-2,-34], +[0,-505,-841,-4688,-428,-578,-132,-202,-100,-31], +[1,3,5932], +[0,0,5933,5934,6], +[0,-193,-5849], +[0,-450,-11190,-4686,-24], +[1,3,5936], +[0,5937,0,5938,5], +[0,-4685,-11189], +[0,-11188,-433,-337,-1936,-11187,-4684,-11186,-11185,-2845,-11184,-1210], +[1,3,5940], +[0,5941,5942,5943,4], +[0,-11183,-11182,-11181,-11180,-11179,-11178,-11177,-11176,-11175,-11174,-11173,-11172,-11171,-44], +[0,-29,-3505,-5,-2931,-293,-299,-346,-9,-11170,-8,-697,-4,-287,-197,-7,-886,-57,-211,-33,-196,-11169,-2,-195,-132,-17,-92, +-170], +[0,-303,-1400,-11168,-1133,-262,-126,-1205,-4791,-935,-4683,-1375,-75,-61,-307,-4682,-11167,-11166,-11165,-11164,-11163, +-11162,-11161], +[1,3,5945], +[0,0,5946,5947,5], +[0,-673,-739,-29,-11160,-3312,-5,-22,-19,-110,-26,-1,-12,-145,-25,-823,-4681,-8,-1826,-1825,-1137,-11159,-1675,-4912, +-4680,-324,-4,-7,-14,-893,-226,-1297,-321,-57,-33,-44,-2], +[0,-3551,-11158,-433,-542], +[1,3,5949], +[0,0,5950,5951,5], +[0,-13,-32,-27,-11157,-364,-186,-819,-1008,-1000], +[0,-433,-11156,-631,-1069], +[1,3,5953], +[0,5954,5955,5956,8], +[0,-11155,-197], +[0,-2255,-2009,-56,-1,-66,-3,-82], +[0,-303,-935], +[1,3,5958], +[0,0,5959,5960,5], +[0,-421,-3,-54,-167,-1010,-177,-522], +[0,-935,-75,-245,-1269,-940,-299], +[1,3,5962], +[0,0,5963,7,4], +[0,-3,-82,-610], +[1,3,5965], +[0,68,15,16,6], +[1,3,5967], +[0,0,5968,5969,5], +[0,-80,-231,-63,-1071,-725,-51,-11154,-473,-1870,-11153,-11152,-118,-206,-817,-11151,-2509,-1453,-1802,-3647,-14,-415, +-894,-2652,-11150,-81,-210,-2,-34,-518], +[0,-37,-1386,-132,-202,-2105,-1250,-308,-1063,-467,-11149,-11148,-73,-854,-1428,-336,-1214,-194], +[1,3,5971], +[0,0,5972,5973,4], +[0,-109,-69,-5,-13,-289,-3,-2,-17,-92], +[0,-494,-772,-444,-536,-406,-91], +[1,3,5975], +[0,0,5976,7,4], +[0,-11147,-66], +[1,3,5978], +[0,5979,5980,5981,4], +[0,-119,-58,-36,-708,-5457,-11146,-362,-11145,-11144], +[0,-283,-48,-11143,-5848,-162,-634,-5,-11142,-43,-1,-10,-115,-55,-3,-4,-373,-884,-2], +[0,-856,-2049,-126,-2401,-878,-2731,-114,-100,-3819,-2844,-259], +[1,3,5983], +[0,5984,0,7,10], +[0,-11141,-1679,-759,-11140,-11139,-7,-16,-312,-156], +[1,3,5986], +[0,5987,5988,7,8], +[0,-980,-36,-1131,-751], +[0,-3,-1,-66,-125,-76,-10,-67,-84,-214,-131], +[1,3,5990], +[0,0,5991,5992,5], +[0,-3,-66], +[0,-105,-1131], +[1,3,5994], +[0,5995,5996,5997,11], +[0,-11,-216,-4679,-974,-971,-1273,-6090,-21,-1068,-136,-513,-203,-80,-231,-63,-11138,-11137,-160,-1266,-11136,-11135, +-4946,-1571,-446,-424,-761,-1160,-495,-1319,-38,-523,-14,-5593,-1246,-226,-301,-640,-1707,-175,-3093,-44,-2], +[0,-50,-781,-11134,-1627,-366,-86,-26,-11133,-1,-11132,-12,-25,-381,-40,-9,-8,-18,-11131,-4,-342,-7,-749,-138], +[0,-1084,-14,-11130], +[1,3,5999], +[0,6000,0,6001,4], +[0,-162,-36,-3095,-936,-4700,-11129,-5298,-11128,-11127,-4692,-6217,-4691,-11126,-4687,-11125,-4690,-1928], +[0,-1043,-593,-2101,-31,-3420,-100,-3097,-969,-133,-165,-73,-107,-287,-274,-844,-2112,-3284,-2138], +[1,3,6003], +[0,6004,6005,6006,5], +[0,-2364,-323], +[0,-3,-93,-4678,-707], +[0,-1060,-11124,-11123,-1636,-4677,-1630,-4856,-11122,-126,-625,-719,-630,-28,-1950,-3242,-4855,-11121,-11120,-11119,-511, +-2038,-2713,-4749,-362,-93,-1513,-11118,-11117,-248,-947,-2081,-11116,-948,-1075,-3320,-254,-11115,-1951], +[1,3,6008], +[0,0,6009,6010,4], +[0,-4676,-1089,-5,-22,-19,-20,-11114,-344,-4,-4675,-4674,-2], +[0,-1690,-126,-261,-2342,-11113,-132], +[1,3,6012], +[0,6013,129,6014,10], +[0,-2342], +[0,-261,-635], +[1,3,6016], +[0,119,120,6017,4], +[0,-11112,-4673,-11111,-11110,-4672,-11109,-11108,-11107,-11106,-4673,-11105,-11104,-11103,-11102,-11101,-11100,-11099, +-4671,-11098,-11097,-11096,-1616,-3092,-4670,-11095,-11094,-11093,-11092,-11091,-11090,-11089,-11088,-3385,-11087,-11086, +-5319,-5318,-45,-3389,-1638,-270,-2,-3388,-733,-436,-3091,-1645,-450,-1213,-3384,-3383,-2479,-3382,-3381,-3380,-3379, +-3378,-3377,-3376,-3375,-1382,-1221,-3567, +-11085,-11084,-3386,-772,-5320,-1985,-3374,-846,-3373,-3372,-3371,-3370,-3369,-3368,-3367,-3366,-2478,-132,-1399,-3365, +-2622,-3364,-4669,-542,-3363,-42,-1404], +[1,3,6019], +[0,6020,6021,6022,11], +[0,-639,-1291], +[0,-50,-11,-21,-49,-62,-48,-514,-309,-5,-476,-26,-425,-144,-151,-237,-1338,-1,-12,-583,-10,-145,-181,-115,-25,-150,-277, +-55,-9,-8,-176,-79,-18,-262,-65,-4,-77,-462,-134,-2,-83,-17,-92,-170], +[0,-17,-24,-943,-1670], +[1,3,6024], +[0,6025,6026,6027,5], +[0,-11083,-252,-576,-11082,-36,-89,-349,-11081,-1452,-11080,-11079,-175,-11078,-11077], +[0,-11076,-1,-11075,-11074,-5859,-11073], +[0,-227,-1996,-270,-24,-1703,-31,-2031], +[1,3,6029], +[0,6030,6031,7,11], +[0,-4668], +[0,-85,-555,-72,-124,-4,-5], +[1,3,6033], +[0,0,6034,6035,4], +[0,-766,-15,-39,-1,-275,-213,-279,-187,-239], +[0,-1250,-4925,-73,-565], +[1,3,6037], +[0,6038,6039,6040,4], +[0,-58,-1128], +[0,-2434,-8,-4,-57,-2], +[0,-11072,-11071,-11070], +[1,3,6042], +[0,0,6043,6044,9], +[0,-11069,-5,-2577,-43,-12,-4,-85,-33,-124,-2], +[0,-2413,-405,-4667,-1379,-1927,-772,-484], +[1,3,6046], +[0,6047,6048,7,5], +[0,-208,-606,-1660,-2341], +[0,-5,-103,-1567,-1,-1552,-1758,-527,-4,-1411,-2,-1287,-30], +[1,3,6050], +[0,0,6051,6052,4], +[0,-11,-216,-622,-173,-21,-140,-90,-4666,-420], +[0,-1317,-4665,-5607,-108,-6,-516,-2340,-1673,-11068,-11067,-11066,-11065], +[1,3,6054], +[0,6055,6056,6057,5], +[0,-4664], +[0,-1317,-4664,-4663], +[0,-1317,-4665,-108,-6,-516,-2340], +[1,3,6059], +[0,6060,6061,6062,4], +[0,-1158,-567,-207,-28,-36,-96,-349,-101,-119,-93,-164,-2699,-647,-518,-11064,-1401,-461,-11063,-599,-424,-1114], +[0,-15,-13,-811,-166,-78,-27,-11062,-1,-1817,-274,-7,-14,-16,-55,-3090,-17,-4,-26,-48,-11061,-2,-11060,-5,-419,-189,-221, +-92,-413,-316,-997,-343,-1720,-6571,-11059,-11058,-11057,-11056,-115,-1451,-525,-11055,-1463,-1138,-6147,-998,-231, +-11054,-513,-418,-812,-139,-80,-11053,-640,-3538,-1299,-63,-2377,-11052,-11051], +[0,-3,-75,-591,-543,-85,-61,-13,-1072,-51,-8,-39,-199,-78], +[1,3,6064], +[0,6065,6066,6067,6], +[0,-587,-157], +[0,-13,-3,-4769,-2], +[0,-3,-1090,-157,-4662], +[1,3,6069], +[0,6070,6071,6072,5], +[0,-36,-1135,-72,-138,-506], +[0,-662,-13,-11050,-1,-3,-7,-4661,-11049], +[0,-3,-4660,-946], +[1,3,6074], +[0,0,0,6075,11], +[0,-3,-946,-11048,-787], +[1,3,6077], +[0,0,6078,6079,5], +[0,-13,-1,-3244,-3,-7,-16], +[0,-307,-303,-75,-5210,-1205,-935], +[1,3,6081], +[0,6082,6083,6084,8], +[0,-11047,-1850,-4659,-4658,-706,-1151,-1312], +[0,-310,-239,-1392,-11046,-11045,-11044,-11043,-11042,-5216,-11041,-5215,-5054,-3321,-5214,-5213,-5212,-5,-11040,-5211, +-664,-279,-510,-1555,-1,-1166,-1015,-1323,-213,-275,-15,-187,-39], +[0,-61,-307,-406,-1056,-853,-4657,-75,-775,-4656], +[1,3,6086], +[0,6087,6088,231,4], +[0,-2593,-1509], +[0,-26,-1,-3], +[1,3,6090], +[0,0,27,6091,6], +[0,-75,-307,-141,-303,-1446], +[1,3,6093], +[0,0,6094,6095,5], +[0,-3,-14,-301,-82,-2], +[0,-956,-307,-75], +[1,3,6097], +[0,0,6098,6099,6], +[0,-66,-117,-27,-11038,-1481], +[0,-307,-1384,-407,-358,-433,-388,-75,-4655,-61,-543], +[1,3,6101], +[0,75,6102,6103,5], +[0,-32,-3978,-2339,-1008,-819,-364,-11037,-117,-1000,-17], +[0,-307,-11036,-11035], +[1,3,6105], +[0,6106,6107,6108,4], +[0,-587,-28,-495,-23,-1926,-442,-188,-1858,-11034,-11033], +[0,-756,-81,-11032,-8,-2841,-11031,-1307,-36,-11030,-1347,-11029,-215,-1,-2208,-11028,-2932,-2216,-288,-11027,-33,-552, +-11026,-11025,-496,-11024,-4,-56,-11023,-913,-6373,-125,-11022,-1805,-2,-4654,-5,-11021,-11020,-11019,-11018,-11017, +-11016,-11015,-11014,-4795,-11013,-11012,-76,-11011,-662,-11010,-67,-12,-25,-762], +[0,-1601,-2024,-52,-46,-11009,-3360,-4653,-1925,-3651,-2369,-3089], +[1,3,6110], +[0,0,6111,6112,5], +[0,-375,-14,-26,-2,-5,-812], +[0,-236,-956,-588,-165,-550,-509,-1157,-1938,-2338], +[1,3,6114], +[0,6115,6116,6117,4], +[0,-236], +[0,-54,-243,-177,-365,-347,-3135,-2], +[0,-236,-956,-588,-4652,-11008,-11007,-11006,-4651], +[1,3,6119], +[0,6120,6121,6122,5], +[0,-649,-11005,-11004,-11003,-11002,-697,-4,-11001,-4650,-4649,-259], +[0,-11000,-1469,-103,-89,-2411,-398,-147,-2337,-2,-30,-10999], +[0,-412,-53,-184,-10998,-2411,-259], +[1,3,6124], +[0,0,6125,6126,10], +[0,-48,-5,-103,-1,-12,-762,-150,-4,-7,-124,-794,-3405,-2,-83,-104,-847,-30], +[0,-10997,-10996,-10995,-854,-10994,-184,-46], +[1,3,6128], +[0,6129,6130,6131,8], +[0,-3453,-4648,-3452,-3454,-10993,-3455,-3264,-10992,-10991,-790,-3088,-168,-476,-10990,-1881,-1181,-58,-619,-26,-6498, +-215,-6474,-41,-2665,-920,-1544,-10989,-10988,-705,-249,-6016,-2204,-376,-10987,-700,-164,-10986,-1793], +[0,-11,-161,-21,-4647,-10985,-98,-13,-1878,-289,-535,-144,-502,-1,-191,-10,-150,-10984,-277,-9,-3,-1924,-1511,-288,-154, +-125,-17,-92], +[0,-3263,-10983,-1399,-386,-4646,-1447,-10982,-10981,-1216,-376,-10980,-4645,-10979], +[1,3,6133], +[0,6134,6135,6136,8], +[0,-1881,-10978,-10977], +[0,-15,-81,-2336,-13,-20,-3,-27,-4644,-96,-1,-16,-10976,-41,-101,-33,-4,-186,-2,-3821,-109,-5,-2250,-10975,-69,-269, +-10974,-137,-257,-10973,-10972,-10971,-10970,-1270,-10969,-10968,-146,-265,-1170,-12,-25,-2276,-478,-19,-4643,-5519, +-2375,-4642,-22,-859,-1357], +[0,-376,-1935,-5778], +[1,3,6138], +[0,6139,6140,6141,10], +[0,-10967,-376,-10966,-10965,-567,-10964], +[0,-10963,-10962,-5,-10961,-10960,-10959,-193,-43,-238,-3351,-1,-3541,-41,-40,-379,-5016,-1826,-10958,-5101,-228,-72,-3, +-236,-4643,-1924,-4641,-752,-643,-27,-6259,-2,-83,-123], +[0,-376,-1602,-1673,-318,-386,-4640,-450,-4639,-676,-1210,-808,-718], +[1,3,6143], +[0,6144,232,6145,5], +[0,-1177,-353,-2257,-800,-247,-1295,-4638], +[0,-1316,-4637,-4636,-771,-10957,-10956], +[1,3,6147], +[0,6148,232,6149,5], +[0,-353,-223,-1316,-10955,-4638], +[0,-1316,-2335,-4637,-4636,-1600,-3610,-771,-10954], +[1,3,6151], +[0,6152,6153,6154,8], +[0,-4635,-36,-376,-10953,-10952,-10951,-10950,-10949,-10948,-242], +[0,-51,-152,-1,-84,-2234,-10,-76,-67,-131,-10947,-10946,-10945,-10944,-10943,-10942,-10941,-15], +[0,-6390,-376,-1216,-1935], +[1,3,6156], +[0,6157,6158,6159,5], +[0,-1574,-36,-1173,-992,-2517], +[0,-1,-84,-10,-214,-76,-67,-131,-3,-15,-798,-125], +[0,-41,-105,-738,-332], +[1,3,6161], +[0,44,15,16,10], +[1,3,6163], +[0,6164,6165,6166,10], +[0,-205,-1797,-36,-4644,-889,-10940,-10939,-88,-454,-442,-10938,-315,-10937,-197,-10936,-3511], +[0,-15,-13,-39,-27,-1,-918,-72,-7,-82,-1792,-89,-55,-33,-119,-4,-10935,-48,-235,-373,-2,-109,-5,-664,-269,-1864,-10934, +-10933,-283,-3087,-2056,-877,-2641,-10932,-10,-12,-25,-19,-404,-1274,-10931,-22,-861], +[0,-2841,-10930,-717,-3288], +[1,3,6168], +[0,0,6169,7,8], +[0,-9,-3,-1,-4,-421,-18], +[1,3,6171], +[0,6172,6173,6174,10], +[0,-10929,-58,-36,-4802,-2354], +[0,-49,-62,-845,-737,-582,-1058,-3,-120,-97], +[0,-386,-1819,-1932,-209,-10928,-2347,-10927,-10926,-2354,-10925,-2347,-10924,-1421,-10923], +[1,3,6176], +[0,6177,6178,6179,11], +[0,-3843,-2275,-5925,-10922,-352,-380,-10921,-5924,-5923,-563,-164,-10920,-1294,-2666,-1106,-210,-10919,-96], +[0,-49,-62,-10918,-283,-48,-4634,-6100,-5922,-5921,-357,-257,-10917,-5,-10916,-22,-19,-3817,-201,-1678,-503,-26,-2244, +-298,-89,-1264,-1,-12,-25,-41,-1164,-5192,-28,-79,-4633,-811,-18,-10915,-4,-459,-342,-7,-970,-171,-2,-83,-284,-438,-30, +-5918,-17,-5917,-810], +[0,-99,-307,-2673,-1959,-4711,-209,-1234,-3282,-61,-184,-2094], +[1,3,6181], +[0,6182,6183,6184,4], +[0,-10914,-1569,-315,-72,-242,-981,-742], +[0,-830,-41,-657,-10913,-3,-15,-7,-97,-10912], +[0,-546,-4895,-2015,-657,-10911,-41,-332], +[1,3,6186], +[0,6187,14,6188,4], +[0,-3203,-10910,-93], +[0,-1636,-630,-28,-1950,-3242,-511,-2038,-93,-947,-2081,-1951], +[1,3,6190], +[0,6191,6192,6193,5], +[0,-1484,-652,-488], +[0,-15,-4632,-3,-1,-72,-7,-688,-6330,-214], +[0,-126,-1053,-1014,-245,-1070], +[1,3,6195], +[0,6196,6197,6198,4], +[0,-630,-40,-2864,-23,-1464,-149,-123], +[0,-199,-15,-10909,-373], +[0,-1874,-31,-10908,-6387,-10907,-10906], +[1,3,6200], +[0,0,6201,6202,4], +[0,-381,-13,-976,-3,-1,-117,-14,-157,-112], +[0,-524,-271,-740,-351], +[1,3,6204], +[0,0,6205,6206,10], +[0,-215,-32,-530,-3972,-9,-78,-139,-1830,-812,-4631,-10905,-4,-4786,-375,-7,-14,-175,-10904], +[0,-1718,-679,-10903,-719,-1645,-1212], +[1,3,6208], +[0,6209,6210,7,11], +[0,-2256,-197,-488,-10902], +[0,-838,-1,-1493,-4630,-10901,-10900], +[1,3,6212], +[0,6213,6214,6215,4], +[0,-2207,-4857,-4804,-470,-10899,-10898,-10897,-10896], +[0,-43,-153,-10895,-55,-4,-110,-26,-48,-644,-2,-5,-10894,-283,-514,-2137,-12,-25,-19,-10893,-22,-3576], +[0,-566,-337,-209], +[1,3,6217], +[0,6218,6219,6220,11], +[0,-5041,-242,-5040], +[0,-66,-116,-3], +[0,-2457,-172,-4629,-2334,-339], +[1,3,6222], +[0,0,6223,6224,4], +[0,-10892], +[0,-3929,-141,-663,-1202,-10891,-141,-773,-1217], +[1,3,6226], +[0,0,6227,7,4], +[0,-711,-58,-28,-113,-197,-85,-742], +[1,3,6229], +[0,0,6230,6231,4], +[0,-284,-5,-2], +[0,-4628,-450,-113,-106,-1210,-1925,-3938,-386], +[1,3,6233], +[0,6234,6235,6236,5], +[0,-1763,-1176,-764,-10890,-4697,-10889,-3416,-1742], +[0,-1440,-1081,-950,-29,-5,-972,-47,-1,-3696,-9,-10888,-8,-1525,-10887,-18,-4,-121,-6,-35,-286,-7,-146,-211,-44,-2,-17, +-520,-170,-686], +[0,-24,-225,-548,-10886,-3938,-10885,-6,-270,-10884,-1265,-10883,-1923,-129,-888,-10882,-1922,-1275], +[1,3,6238], +[0,0,0,6239,8], +[0,-123,-850,-2491,-195], +[1,3,6241], +[0,6242,6243,6244,4], +[0,-5257,-201,-6482,-40,-10881,-10880,-1522,-752,-10879,-2185,-146,-156,-96], +[0,-162,-185,-10878,-29,-3238,-5,-10877,-736,-413,-22,-19,-471,-1,-12,-25,-8,-398,-4,-7,-211,-2,-17,-92], +[0,-1200,-471,-300,-484,-1955], +[1,3,6246], +[0,6247,6248,6249,6], +[0,-205,-324,-312,-3949,-149,-123,-201,-224,-1305,-96,-3260,-23,-2208,-228,-72,-1309,-16,-3357,-6284,-551,-1168,-397,-272, +-928,-119,-4,-3917,-796,-93,-10876,-661,-600,-130,-2,-10875,-2680,-10874,-10873,-10872,-2422,-10871,-3086,-2020,-1635, +-1499,-930,-10870,-10869,-10868,-472,-5066,-10867,-10866,-10865,-10864,-10863], +[0,-13,-54,-9,-3,-27,-4742,-66,-454,-1423,-109,-5,-680,-821,-18,-5909,-2333,-10862,-269,-413,-4627,-142,-10861,-137, +-10860,-10859,-2332,-788,-1744,-2032,-4626,-10858,-244,-532,-146,-243,-302,-4625,-2331,-732,-4624,-3823,-10857,-404], +[0,-6386,-2,-45], +[1,3,6251], +[0,6252,6253,6254,6], +[0,-10856,-10855,-10854,-215,-419,-10853,-1129,-605,-690,-1394,-10852,-4695,-247,-123,-10851], +[0,-80,-231,-63,-1040,-5,-22,-10850,-26,-1,-3240,-10,-115,-67,-32,-3975,-10849,-199,-378,-217,-752,-15,-4623,-180,-7,-14, +-27,-146,-97,-33,-5521,-2,-10848,-17,-2471], +[0,-10847,-10846,-5361,-10845,-10844,-2138,-10843,-10842,-10841,-10840,-10839,-10838,-10837,-10836,-10835,-10834,-10833, +-10832,-10831,-10830,-3085,-10829,-10828,-10827,-10826,-10825,-10824,-4622,-10823], +[1,3,6256], +[0,6257,6258,6259,9], +[0,-758,-60,-96,-10822], +[0,-15,-1481,-1,-56,-10821,-373,-861], +[0,-1085,-10820,-10819], +[1,3,6261], +[0,0,6262,6263,5], +[0,-3,-7,-5045], +[0,-37,-669], +[1,3,6265], +[0,0,6266,6267,5], +[0,-5,-47,-22,-19,-660,-1,-12,-25,-64,-190,-757,-4,-44,-2], +[0,-10818,-6070,-6,-300,-10817,-10816,-2621,-46], +[1,3,6269], +[0,6270,6271,6272,4], +[0,-60,-72,-247,-6402,-10815], +[0,-13,-3,-27,-113,-58,-10814], +[0,-386,-4639,-4729], +[1,3,6274], +[0,6275,6276,6277,5], +[0,-470,-1116], +[0,-1146,-5306,-3,-1304,-522,-82,-27,-551], +[0,-105,-401,-631,-113,-337,-2015,-1053,-604,-2516,-2481,-2370,-2371,-352,-5056], +[1,3,6279], +[0,6280,0,6281,5], +[0,-10813,-10812,-58,-403,-200], +[0,-37,-1684,-1041,-308,-294,-4621,-1923], +[1,3,6283], +[0,6284,6285,6286,8], +[0,-10811,-60,-10810,-1679,-661,-135,-58,-2241,-761,-10809,-23,-72,-10808,-10807,-10806,-10805,-899,-16,-10804,-2171, +-1283], +[0,-10803,-13,-1342,-10802,-1634,-1,-181,-5266,-265,-762,-101,-3,-198,-15,-10801,-2188,-1112,-272,-27,-551], +[0,-3936,-2330,-99,-61,-2526,-10800,-410], +[1,3,6288], +[0,6289,6290,6291,4], +[0,-10799,-3359,-5308,-10798,-1240,-5632,-5633,-5629,-3563,-5631,-5630,-2583,-10797,-315,-759,-4620,-4633,-1147,-10796, +-197,-4619,-16,-1779], +[0,-1268,-3084,-2329,-10795,-10794,-10793,-713,-10792,-10791,-10790,-193,-60,-1033,-1766,-43,-3544,-58,-1345,-5439,-3542, +-1,-181,-4618,-28,-402,-9,-166,-18,-1140,-198,-1805,-180,-7,-10789,-27,-688], +[0,-2582,-542,-1600,-5584,-4617,-3083], +[1,3,6293], +[0,6294,6295,6296,5], +[0,-90,-10788,-352,-1691,-905,-10787,-491,-3141,-123], +[0,-3829,-50,-11,-3527,-173,-21,-136,-140,-4616,-252,-1057,-330,-155,-122,-1477,-317,-29,-5,-4615,-10786,-47,-87,-160, +-10785,-10784,-289,-382,-8,-176,-1149,-810,-241,-38,-696,-1503,-6,-35,-792], +[0,-6,-335,-905,-1465,-2328,-683,-399,-3418,-6128,-10783], +[1,3,6298], +[0,0,0,6299,5], +[0,-241,-60,-10782,-10781], +[1,3,6301], +[0,0,0,6302,10], +[0,-192,-75,-61,-307,-2673,-129,-5178,-1921,-10780,-1234,-10779,-10778,-53,-184,-8,-199,-445,-1384,-2027], +[1,3,6304], +[0,6305,0,6306,4], +[0,-4059,-10777,-1738,-1174,-44], +[0,-1759,-435,-192,-102,-52,-53], +[1,3,6308], +[0,6309,6310,6311,4], +[0,-402,-123,-259,-5407,-1165,-1139], +[0,-13,-20,-3,-27,-5], +[0,-6383,-10776,-10775,-6401,-10774], +[1,3,6313], +[0,0,6314,7,10], +[0,-13,-223,-3,-643,-396,-393], +[1,3,6316], +[0,6317,6318,6319,6], +[0,-36,-10773,-2350,-471,-3082,-10772,-1148,-10771,-72,-1656,-698,-7,-10770,-889], +[0,-60,-1574,-3088,-116,-13,-244,-1,-12,-25,-41,-9,-3,-10769,-1514,-806,-4,-396,-798], +[0,-6382,-471], +[1,3,6321], +[0,6322,6323,6324,6], +[0,-10768,-10767,-10766,-109,-1599,-2557,-1433,-5494,-1348,-10765,-20,-504,-661,-3081,-10764,-215,-351,-1863,-28,-79,-23, +-93,-88,-3,-10763,-149,-324,-5100,-1115,-16,-1920,-138,-1482,-123], +[0,-6568,-252,-5,-22,-19,-660,-26,-1,-9,-569,-101,-18,-995,-6150,-10762,-10761,-1515,-198,-15,-6,-35,-7,-801,-33,-81, +-2164], +[0,-2838,-10760,-933,-61,-840,-1775,-1437,-10759,-1438,-129,-857,-75,-91,-95,-456,-2046,-1874,-3,-544], +[1,3,6326], +[0,6327,6328,6329,8], +[0,-3684,-662,-10758,-3349,-563], +[0,-3683,-4614,-59,-9,-79,-3080,-18,-3,-4613,-15,-4,-180,-10757,-10756], +[0,-75,-61,-1619,-307,-743,-209], +[1,3,6331], +[0,6332,6333,7,4], +[0,-10755,-2275,-1147], +[0,-402,-15,-13,-8,-3,-27,-1,-7,-4,-657,-1562,-180,-186,-2,-65,-5498,-120,-76,-265,-662,-10,-67,-12,-84,-3764], +[1,3,6335], +[0,0,6336,6337,11], +[0,-110,-711,-1919,-1,-40,-791,-235,-16], +[0,-10754,-10753,-2022,-484,-711,-2555,-2554,-809,-906], +[1,3,6339], +[0,6340,6341,6342,4], +[0,-536], +[0,-15,-54,-3,-82,-56,-167,-3344,-2,-5,-3340,-474,-10752,-3230,-243,-302,-10751,-10750], +[0,-433,-2014,-1044,-2127,-2520,-935,-4612,-141,-2845,-406], +[1,3,6344], +[0,0,6345,6346,4], +[0,-5,-10749,-40,-9,-3,-15,-7,-2,-10748], +[0,-141,-3079,-947,-1213,-4611,-772,-5419,-450,-5620,-10747,-42], +[1,3,6348], +[0,6349,6350,6351,6], +[0,-1872,-10746,-10745,-1846,-88,-1510,-128,-16], +[0,-5,-1,-10,-9,-18,-4,-85,-4610,-414,-33,-2], +[0,-3211,-1370,-2788,-1316,-594], +[1,3,6353], +[0,124,70,6354,11], +[0,-6381,-405,-1927,-10744,-126,-1418,-1985,-303], +[1,3,6356], +[0,6357,6358,6359,4], +[0,-2403,-10743,-10742,-10741], +[0,-861,-252,-359,-22,-19,-103,-5348,-425,-1,-5347,-1550,-181,-1334,-214,-115,-2489,-2488,-826,-2233,-1643,-9,-1993,-811, +-18,-996,-525,-1127,-2487,-4,-5346,-900,-373,-10740,-5345,-171,-2,-30,-5344], +[0,-1929,-631,-4705,-3100,-10739,-10738,-10737,-10736,-10735,-10734], +[1,3,6361], +[0,6362,6363,6364,4], +[0,-2503,-10733,-5047], +[0,-1354,-3539,-1569,-43,-13,-244,-10732,-1952,-56,-657,-2572,-3,-2198,-10731,-81,-34], +[0,-865,-105,-172,-113,-1949,-1948,-743,-1077], +[1,3,6366], +[0,0,6367,6368,6], +[0,-59,-58,-26,-1,-10730,-41,-78,-910,-139,-1831,-212,-1145,-189,-418,-909,-812,-648,-4609,-526,-3,-611,-10729,-15,-2525, +-17,-92,-4608], +[0,-4607,-10728,-10727,-10726,-659,-3618,-10725,-10724,-4606,-10723,-105,-401,-1135,-1080,-10722,-10721,-10720,-10719, +-10718,-2803,-4605,-10717,-4604,-2417,-10716,-10715,-10714], +[1,3,6370], +[0,6371,6372,6373,9], +[0,-201,-36,-23], +[0,-13,-3,-180,-27], +[0,-1448,-1073,-1229,-3571,-333,-10713,-4606,-10712,-1545,-282,-6525,-4603], +[1,3,6375], +[0,6376,6377,6378,9], +[0,-116,-188], +[0,-13,-1,-8,-27], +[0,-10711,-10710,-10709,-1448,-4602,-10708,-10707,-10706,-10705], +[1,3,6380], +[0,6381,6382,6383,4], +[0,-1680,-10704,-325,-1604,-466,-989,-16,-312,-311,-219], +[0,-711,-26,-1,-3,-809,-791,-4601], +[0,-484,-2022,-358,-2555,-2554,-711,-5548], +[1,3,6385], +[0,6386,6387,6388,5], +[0,-4010,-1158], +[0,-3421,-238,-26,-1,-10703,-2873,-10702,-10701,-10700,-3469,-10699,-497,-10698,-10697,-607,-7,-4821,-134,-33,-686], +[0,-31,-73,-335,-2], +[1,3,6390], +[0,6391,6392,6393,5], +[0,-60,-4600,-36,-41,-28,-1308,-1496,-16,-1793,-10696,-10695,-10694,-219,-205,-96], +[0,-13,-40,-757,-117,-3,-158,-172,-7], +[0,-36,-3401,-5505,-3487], +[1,3,6395], +[0,6396,6397,6398,11], +[0,-1191,-1027,-1173,-709,-3286,-1131,-261,-751,-1121,-981], +[0,-109,-69,-22,-19,-13,-1,-191,-12,-10,-9,-3,-15,-4,-27,-186,-33,-81,-2], +[0,-307,-1384,-4817,-335,-270,-61,-75,-105,-10693], +[1,3,6400], +[0,6401,6402,6403,10], +[0,-10692,-914,-16,-10691,-123,-219], +[0,-660,-26,-1,-1861,-84,-10,-76,-67,-9,-8,-18,-10690,-4,-7], +[0,-10689,-10688,-2396,-10687,-3233,-2522,-10686,-10685,-1731], +[1,3,6405], +[0,6406,6407,6408,5], +[0,-1574], +[0,-168,-41,-3,-82,-125], +[0,-905,-2328], +[1,3,6410], +[0,89,56,57,8], +[1,3,6412], +[0,6413,6414,6415,8], +[0,-1960,-72,-1817,-466,-1815,-2834,-1496,-7,-16,-312], +[0,-1033,-117,-198,-39], +[0,-484,-2022,-358,-2555,-2554,-711,-773], +[1,3,6417], +[0,6418,6419,6420,4], +[0,-906], +[0,-3,-1,-10684,-610,-26,-2,-5,-69,-19,-22], +[0,-4599,-431,-174,-10683,-10682,-10681], +[1,3,6422], +[0,6423,0,6424,8], +[0,-10680,-10679,-10678,-10677,-1574,-2922,-383,-41,-40,-10676,-466,-16], +[0,-412,-4603,-3078,-1683], +[1,3,6426], +[0,6427,6428,6429,10], +[0,-809,-1847,-28,-467,-20,-23,-610,-1328,-10675,-230,-10674,-10673,-10672,-1604], +[0,-15,-3,-1,-7,-40,-10671], +[0,-24,-3232,-592,-77,-432,-225], +[1,3,6431], +[0,6432,6433,6434,4], +[0,-5719,-10670,-10669], +[0,-15,-39,-27,-768,-1], +[0,-3431,-786,-1425,-1177,-10668,-4683], +[1,3,6436], +[0,6437,0,6438,4], +[0,-565,-135,-261], +[0,-105,-856,-126,-209], +[1,3,6440], +[0,0,6441,6442,5], +[0,-15], +[0,-2492,-3077,-123], +[1,3,6444], +[0,0,6445,6446,10], +[0,-40,-3], +[0,-10667,-594,-10666], +[1,3,6448], +[0,6449,0,6450,8], +[0,-506,-96], +[0,-10665,-722,-1234,-4598,-367,-783,-10664,-10663,-10662,-786], +[1,3,6452], +[0,6453,6454,6455,4], +[0,-1777], +[0,-10661,-10660,-5,-1,-4,-1122,-171,-2,-3748,-30], +[0,-4597,-73,-862,-1777,-4596], +[1,3,6457], +[0,6458,6459,6460,11], +[0,-706,-651], +[0,-239,-766,-1,-213,-5341,-275,-15,-609,-187,-39], +[0,-444,-3076,-10659,-536,-669,-10658], +[1,3,6462], +[0,6463,6464,6465,5], +[0,-402,-809,-276,-642,-23,-1290,-40,-610,-6379], +[0,-745,-3,-117,-1033,-238,-10657,-66,-182,-56,-1001,-10656,-3400,-328], +[0,-10655,-10654,-387,-484], +[1,3,6467], +[0,0,6468,6469,6], +[0,-10653,-1347,-43,-1,-12,-55,-10652,-10651,-10650,-10649,-4,-604,-10648,-5251], +[0,-10647], +[1,3,6471], +[0,6472,6473,6474,5], +[0,-119,-36,-5608,-93,-10646,-16,-3352,-461,-414,-10645], +[0,-49,-62,-60,-474,-1,-9,-3,-15,-180,-120,-82], +[0,-37,-1316,-1316,-684,-3211,-10644,-1370,-174], +[1,3,6476], +[0,6477,0,7,5], +[0,-351,-85], +[1,3,6479], +[0,6480,6481,6482,4], +[0,-7,-1340,-10643,-96,-16], +[0,-113,-39], +[0,-10642,-4595,-1633,-1200,-1041], +[1,3,6484], +[0,6485,0,6486,5], +[0,-3359,-193,-837,-3278,-2607,-2932,-10641,-201,-168,-119,-619,-383,-4008,-41,-2665,-10640,-4594,-28,-3966,-10639,-10638, +-276,-4593,-813,-10637,-3940,-5700,-10636,-376,-2841,-6385,-5403,-10635,-1816,-149,-605,-10634,-690,-1370,-6331,-10633, +-10632,-552,-2699,-259,-96], +[0,-10631,-6376,-45,-335,-52,-46,-53,-2594,-10630,-10629,-10628,-10627,-106,-10626,-318,-276,-259,-300,-10625], +[1,3,6488], +[0,6489,83,6490,4], +[0,-247,-20], +[0,-1644,-10624,-1722,-2007,-73], +[1,3,6492], +[0,6493,29,7,5], +[0,-2380], +[1,3,6495], +[0,0,6496,6497,8], +[0,-707,-88,-3], +[0,-4592,-4591,-10623,-126,-10622,-2474,-5263,-10621,-2327,-303,-1655,-248,-3222,-5500,-285,-10620,-10619,-1918,-10618], +[1,3,6499], +[0,0,14,6500,4], +[0,-1655,-195,-2402,-2012,-163,-4590,-10617,-676,-987,-10616,-1061,-1917,-10615], +[1,3,6502], +[0,0,0,6503,5], +[0,-10614,-4590,-91], +[1,3,6505], +[0,6506,6507,6508,4], +[0,-20,-2521,-4014,-403,-151,-3857,-424,-118,-10613,-10612,-818,-3456,-1839,-200,-1837,-4589,-10611,-10610,-2211,-10609, +-647,-467,-4588,-10608,-2407,-149,-10607,-3134,-493,-1453,-1802,-489,-16,-3568,-3779,-596], +[0,-2403,-137,-51,-473,-3150,-40,-10606,-27,-138,-372,-10605,-34], +[0,-724,-37,-158,-717,-387,-1229,-663,-3488,-1677], +[1,3,6510], +[0,6511,6512,6513,4], +[0,-567,-758,-312,-28,-466,-603,-1491,-4587,-20,-564,-219,-2380,-1309,-16,-2102,-504,-10604,-1617,-610,-989,-10603,-93, +-5896,-5903,-6407,-3943,-6406,-10602,-10601,-885,-4586,-325,-10600,-4778,-10599,-10598,-4777,-10597,-4585,-3712,-461, +-818,-994,-1499,-930,-10596,-4775,-1604,-10595,-3711,-10594,-1355,-5898,-1814,-10593,-1916,-5897,-1442,-3707,-5172,-4045, +-1285,-5902, +-5904,-4584], +[0,-193,-85,-207,-198,-5895,-274,-7,-661,-521,-4583,-837,-10592,-1815,-1720,-10591,-10590,-730,-731,-3709,-10589], +[0,-757,-370,-4582,-1372], +[1,3,6515], +[0,6516,6517,6518,4], +[0,-1028,-324,-467,-20,-118,-569,-742,-10588,-206,-23,-16,-2326,-2197,-1563,-200,-93,-2836,-138,-885,-493,-10587,-1676, +-10586,-2556,-10585,-596,-4581], +[0,-34,-182,-291,-328,-1032,-835], +[0,-158,-10584,-685,-1988,-780,-280,-10583,-99,-1606,-37,-1376,-10582,-4580,-1633,-2747], +[1,3,6520], +[0,0,6521,6522,4], +[0,-10581,-1650,-109,-732,-10580,-10579,-2051,-2325,-411,-10578,-142,-69,-5,-10577,-10576,-623,-2709,-788,-137,-10575, +-269,-3075,-22,-19,-446,-13,-244,-1952,-20,-661,-58,-26,-1961,-1,-12,-10574,-84,-10,-181,-115,-67,-229,-4681,-349,-10573, +-818,-758,-101,-649,-4579,-1140,-23,-525,-3,-1814,-65,-564,-5616,-323,-4,-361,-10572,-4581, +-1797,-7,-3611,-16,-10571,-82,-27,-146,-5277,-138,-33,-2,-3074,-1482,-596,-10570,-104,-4578,-10569,-847,-686], +[0,-685,-158,-1372,-2349,-10568,-4577], +[1,3,6524], +[0,6525,29,7,5], +[0,-818,-989,-16,-1285], +[1,3,6527], +[0,6528,6529,6530,6], +[0,-193,-3753,-20,-403,-36,-206,-469,-1153,-649,-647,-467,-990,-16,-285,-599,-210,-1285], +[0,-29,-5,-22,-19,-89,-4576,-1,-10567,-10566,-1550,-10,-145,-25,-150,-533,-8,-2487,-10565,-4,-57,-2], +[0,-217,-539,-1372,-2041,-10564,-1127], +[1,3,6532], +[0,6533,6534,7,8], +[0,-3456,-989], +[0,-930,-731,-730,-2324,-85], +[1,3,6536], +[0,6537,6538,6539,10], +[0,-3712,-4816,-1604,-1617,-10563,-4575,-994,-989], +[0,-731,-730,-2102,-198,-4601,-1491,-85], +[0,-158,-1915,-865], +[1,3,6541], +[0,6542,6543,233,4], +[0,-20,-3090,-1802,-93,-767,-230,-749,-1822,-10562], +[0,-15,-686,-3,-1,-7,-152,-1125,-40,-5,-1501,-447,-10561,-5589,-2260], +[1,3,6545], +[0,6546,6547,233,11], +[0,-219,-3090,-323,-767,-230,-749,-1822,-10558], +[0,-43,-811,-686,-166,-3,-1,-4888,-791,-279,-1451], +[1,3,6549], +[0,6550,14,6551,5], +[0,-3427,-2430], +[0,-158,-2323,-248,-451,-1386,-773,-5133,-2322,-37,-294,-3426,-1995], +[1,3,6553], +[0,0,6554,6555,5], +[0,-29,-5,-22,-19,-319,-1,-12,-8,-18,-2352,-7,-14,-57,-2], +[0,-10557,-42,-10556], +[1,3,6557], +[0,6558,6559,6560,4], +[0,-20,-6511,-58,-36,-200,-490], +[0,-13,-3,-1515,-97], +[0,-5259,-158,-10555], +[1,3,6562], +[0,6563,6564,6565,6], +[0,-200,-642], +[0,-182,-1188,-835,-4574,-447,-65], +[0,-158,-37,-1214,-308,-3215,-456,-1606,-1813,-10554], +[1,3,6567], +[0,6568,6569,6570,6], +[0,-706,-88], +[0,-239,-279,-510,-1,-213,-527,-15,-187,-39], +[0,-275,-3241], +[1,3,6572], +[0,6573,6574,7,6], +[0,-2648,-3119,-10553,-2647], +[0,-85,-730,-731], +[1,3,6576], +[0,0,6577,7,4], +[0,-13,-249,-79,-3,-10552], +[1,3,6579], +[0,6580,6581,6582,4], +[0,-20,-6510,-10551,-759,-200,-10550,-16,-4927,-96], +[0,-2254,-354,-5159,-2225,-1144,-568], +[0,-667,-2833,-5158], +[1,3,6584], +[0,6585,6586,6587,5], +[0,-10549], +[0,-29,-5,-22,-19,-660,-1,-12,-25,-9,-8,-4,-441,-7,-57,-33,-2], +[0,-6372,-10548,-37,-111,-2682,-2465,-6,-141,-2,-45,-17,-8,-53,-46,-2594], +[1,3,6589], +[0,0,6590,6591,6], +[0,-13,-532,-365,-1011,-1010,-4932,-78,-703,-139,-212,-189,-418,-812,-345,-3], +[0,-2832,-1417,-550,-588,-10547,-10546], +[1,3,6593], +[0,6594,6595,6596,5], +[0,-10545,-4573,-58], +[0,-50,-11,-21,-178,-98,-355,-1188,-223,-159,-26,-1,-191,-10,-41,-40,-499,-10544,-10543,-2321,-4572,-15,-645,-396,-112, +-1105,-17], +[0,-271,-1054], +[1,3,6598], +[0,0,0,6599,5], +[0,-1044,-141], +[1,3,6601], +[0,0,6602,6603,10], +[0,-310,-239,-1392,-664,-279,-43,-510,-1,-527,-213,-275,-187,-39], +[0,-3929,-6371,-509], +[1,3,6605], +[0,0,0,6606,10], +[0,-24,-1236,-10542,-2038,-1456], +[1,3,6608], +[0,6609,0,6610,4], +[0,-351,-324,-156,-1544,-149,-259,-201,-4013,-44,-96,-215,-469,-16,-533,-573,-913,-93,-687,-1876,-164,-886,-2900,-1852, +-649,-2200,-394,-518,-1024,-795,-4571,-1914,-4570,-2661,-4716,-10541,-4569], +[0,-1083,-1727,-1726,-1252,-1251,-2100,-1725,-1724,-784,-2098,-2099,-1441,-4568], +[1,3,6612], +[0,6613,6614,6615,4], +[0,-5585,-2675,-10540,-472,-1870,-1547,-349,-2534,-1846,-28,-2080,-10539,-3532,-10538,-1705,-2620,-2079,-753,-10537,-564, +-10536,-641,-7,-891,-10535,-3531,-96], +[0,-10534,-5671,-416,-146,-97,-134,-85,-123,-219], +[0,-787,-946,-5134,-61], +[1,3,6617], +[0,6618,6619,6620,5], +[0,-4567,-633,-6078,-4593,-4699,-1675,-2058,-563,-10533], +[0,-3073,-10532,-10531,-5,-171,-2,-30], +[0,-99,-3072,-681,-3071,-3070,-3069,-3068,-3067,-1812,-1579,-1601,-42], +[1,3,6622], +[0,6623,6624,6625,4], +[0,-4567,-10530,-101,-2058,-3763], +[0,-3073,-411,-10529,-198,-171,-2,-30], +[0,-99,-1579,-3072,-42,-1601,-3067,-1812,-681,-3068,-3071,-3069,-3070,-2330,-545], +[1,3,6627], +[0,0,84,7,8], +[1,3,6629], +[0,0,6630,6631,5], +[0,-34,-51,-23,-1520], +[0,-406,-1642,-444,-1091,-430,-338,-1756,-1406,-10528,-549,-672,-91], +[1,3,6633], +[0,0,6634,6635,4], +[0,-59,-32,-3980,-2339,-4566,-1008,-819,-364,-314,-1007,-653,-117,-1000,-78,-139,-189,-3], +[0,-406,-1419,-2803,-1135], +[1,3,6637], +[0,0,6638,6639,6], +[0,-239,-10527,-279,-159,-10526,-1555,-1,-1015,-1850,-28,-4565,-1323,-10525,-213,-1322,-5218,-1820,-275,-15,-187,-3164, +-16,-5166,-39], +[0,-1717,-4564,-406,-429,-637], +[1,3,6641], +[0,0,6642,6643,4], +[0,-239,-5119,-1,-2021,-10524,-651,-39], +[0,-3066,-1991,-3440,-672], +[1,3,6645], +[0,0,6646,6647,8], +[0,-15,-13,-3,-56,-611,-10523], +[0,-1222,-248,-4563,-10522,-1618,-1056,-1560,-1990,-406,-1992,-4562,-10521,-853,-2421,-1641], +[1,3,6649], +[0,6650,6651,6652,6], +[0,-1030,-1662,-2581,-4561,-1323,-1508], +[0,-3560,-239,-59,-1,-1015,-1850,-2579,-706,-1820,-275,-15,-187,-5602,-39], +[0,-4560,-1642,-846,-444,-4559,-3076,-4558,-10520,-3559,-549,-672], +[1,3,6654], +[0,6655,6656,6657,6], +[0,-1030,-1662,-2581,-4561], +[0,-3560,-239,-3275,-279,-510,-1,-1850,-2579,-213,-275,-15,-187,-39], +[0,-10519,-4557,-3066,-4556,-2486,-3439,-3065,-2504,-672,-406,-1991,-549,-3559], +[1,3,6659], +[0,6660,6661,7,9], +[0,-10518], +[0,-15,-3,-1,-76,-10,-67,-84,-214,-131], +[1,3,6663], +[0,6664,71,6665,4], +[0,-4555], +[0,-698,-1226,-5453,-2519], +[1,3,6667], +[0,6668,6669,6670,4], +[0,-10517,-10516,-836,-119,-230,-469,-687], +[0,-945,-5,-9,-18,-4,-7,-2], +[0,-28,-594,-2576], +[1,3,6672], +[0,6673,6674,6675,5], +[0,-10515,-2209], +[0,-69,-10514,-152,-117,-3,-568,-1517,-15,-33,-2], +[0,-10513,-3078,-10512,-10511,-10510,-4830,-10509,-10508,-10507,-1615], +[1,3,6677], +[0,6678,115,234,5], +[0,-10506,-4554,-10505,-4851,-5467,-10504], +[1,3,6680], +[0,6681,6682,6683,5], +[0,-1331,-1328,-467,-149,-372], +[0,-51,-118,-34], +[0,-724,-37,-300,-149,-608,-4553,-3064,-3063,-4552,-3062,-3061,-1214,-91,-412,-1995,-1975,-195,-3060,-1644,-1649,-1045, +-1221,-287,-878,-126], +[1,3,6685], +[0,6686,6687,6688,6], +[0,-10503,-10502,-2058], +[0,-29,-411,-633,-201,-10501,-8,-650,-10500,-810,-4,-146,-57,-33,-2], +[0,-681,-545,-337,-201,-53,-91,-307,-2], +[1,3,6690], +[0,6691,6692,6693,5], +[0,-1870,-3960,-1147,-221,-121,-6,-35,-437], +[0,-161,-4051,-182,-4025,-2364,-56,-1,-266,-191,-10,-148,-67,-64,-1542,-705,-8,-288,-65,-113,-1798,-3635], +[0,-545,-681,-10499,-31,-42,-114], +[1,3,6695], +[0,6696,6697,6698,11], +[0,-3510,-809], +[0,-28,-113,-39], +[0,-6367,-10498,-4926,-10497], +[1,3,6700], +[0,0,38,7,6], +[1,3,6702], +[0,6703,6704,7,8], +[0,-10496,-113], +[0,-182,-328,-1,-266,-10,-148,-64], +[1,3,6706], +[0,6707,55,234,9], +[0,-914], +[1,3,6709], +[0,6710,6711,235,4], +[0,-978,-88], +[0,-4551,-85], +[1,3,6713], +[0,6714,6715,6716,8], +[0,-382,-10495,-38], +[0,-169,-86,-835,-620,-268,-144,-8,-154,-17], +[0,-2494,-4799,-919,-1996,-580,-626,-17], +[1,3,6718], +[0,6719,6720,6721,11], +[0,-10494,-10493,-2171,-5129,-10492,-3113], +[0,-4550,-3], +[0,-2007,-1428,-10491,-37], +[1,3,6723], +[0,6724,6725,6726,8], +[0,-20,-1876,-2900,-4589,-2511,-647,-10490,-394], +[0,-5,-51,-498,-10489,-81,-34], +[0,-37,-2011,-3461,-174,-869,-194,-868,-455,-2110,-2672,-361,-2109,-785,-2108], +[1,3,6728], +[0,6729,6730,6731,10], +[0,-1864,-10488,-10487], +[0,-423,-653,-117,-999,-1132,-3,-522,-82,-554], +[0,-60,-786,-852,-4792], +[1,3,6733], +[0,6734,6735,6736,11], +[0,-60,-116,-1052,-4811,-23,-1308,-10486,-10485], +[0,-43,-20,-28,-3,-376,-566,-605,-16,-82,-27,-797], +[0,-808,-4640,-386,-566,-842,-10484,-1267,-376], +[1,3,6738], +[0,0,0,6739,4], +[0,-141,-1507,-1467,-358], +[1,3,6741], +[0,6742,71,6743,6], +[0,-5150,-2356], +[0,-782,-2127,-2320,-3059,-248,-490,-10483], +[1,3,6745], +[0,0,6746,6747,4], +[0,-109,-185,-69,-5,-517,-2346,-13,-118,-40,-3,-417,-33,-17,-219], +[0,-339,-430,-10482,-10481,-5280,-163,-271,-2006], +[1,3,6749], +[0,0,0,6750,5], +[0,-6365,-1455,-10480,-3058,-10479,-1369,-53,-91], +[1,3,6752], +[0,6753,6754,6755,5], +[0,-10478,-58,-1543,-569,-1142,-16,-156,-4549], +[0,-283,-48,-309,-5919,-10477,-5,-137,-736,-4548,-22,-19,-1,-10476,-7,-2], +[0,-37,-4547,-1973,-717], +[1,3,6757], +[0,6758,6759,6760,5], +[0,-2198], +[0,-5,-51,-658,-81,-34], +[0,-172,-422,-783,-2518,-5145,-4739,-1654,-3289,-3449,-2457,-10475,-10474,-785,-10473,-5141,-91,-255,-60,-629,-481,-116], +[1,3,6762], +[0,0,6763,6764,5], +[0,-51,-20,-658,-2483,-3394,-2482,-81,-34], +[0,-172,-774,-10472,-785,-1399,-5034,-3246,-10471,-10470,-60,-629,-481,-289,-1913,-852,-116], +[1,3,6766], +[0,6767,6768,6769,4], +[0,-1018,-2198], +[0,-1071,-739,-5,-110,-237,-658,-2483,-5248,-3394,-2482,-81,-153,-2,-34], +[0,-172,-986,-3082,-3458,-3403,-1913,-1994,-2326,-3402,-1403,-3057,-4670,-4671,-4546,-1425,-786,-60,-629,-481,-116], +[1,3,6771], +[0,0,6772,6773,11], +[0,-51,-658,-2483,-5013,-27,-2482,-81,-34], +[0,-172,-2481,-627,-10469,-60,-629,-481,-588,-10468,-3613,-116], +[1,3,6775], +[0,6776,6777,6778,4], +[0,-28], +[0,-8,-4,-1716], +[0,-42,-220,-10467,-2319], +[1,3,6780], +[0,6781,6782,6783,5], +[0,-10466,-1352,-2917,-58,-1863,-495,-524,-2202,-157,-16], +[0,-43,-1,-10465,-3,-4545,-3694,-27], +[0,-951,-1248,-3122,-3056,-2041,-544,-3540,-1352,-581,-37,-4544,-1199,-10464,-4722,-6364,-157,-2397,-10463,-61,-437, +-10462], +[1,3,6785], +[0,6786,6787,6788,4], +[0,-4583,-3713,-1442,-3707,-1355,-2102,-4586,-1617,-994,-1815,-3711,-1814,-989,-4748,-10461,-1491,-312], +[0,-930,-731,-730,-818,-2324,-198,-10460,-7,-85], +[0,-1987,-158,-387], +[1,3,6790], +[0,6791,6792,6793,8], +[0,-3203,-4941,-10459,-1174,-1979,-10458,-23,-647,-753,-564,-990,-210,-10457], +[0,-1071,-2624,-142,-5,-10456,-352,-237,-1331,-499,-4881,-493,-10455,-153,-2,-34], +[0,-2318,-878,-2401,-111,-195,-3162,-1207,-1939,-4543,-4542,-3587,-2113,-4928,-636,-624,-157,-1373,-281,-256,-844,-31, +-1199,-4903,-5089,-3270,-579,-1383,-1042], +[1,3,6795], +[0,0,6796,6797,4], +[0,-5,-103,-848,-3358,-5300,-1,-10,-181,-79,-2,-104,-30], +[0,-53,-46,-740,-127,-102,-1067,-1934,-4915,-2340], +[1,3,6799], +[0,0,6800,6801,11], +[0,-21,-203,-80,-63,-1,-348,-3,-3939,-4706,-15,-14,-226,-272], +[0,-3201,-2516,-4814,-1407], +[1,3,6803], +[0,6804,38,6805,6], +[0,-4668,-20,-2513,-921,-1855,-1328,-206,-497,-813,-467,-344,-6363,-128,-10454,-596,-518], +[0,-4541,-46,-37,-3104,-99], +[1,3,6807], +[0,6808,6809,6810,5], +[0,-2336,-442,-688], +[0,-48,-215,-1,-12,-10,-115,-25,-67,-55,-23,-3,-4,-2182,-371,-2], +[0,-4541,-337,-2094,-3055,-209,-46,-99,-410,-106], +[1,3,6812], +[0,0,6813,6814,6], +[0,-116,-13,-474,-3], +[0,-852,-254], +[1,3,6816], +[0,6817,6818,6819,9], +[0,-90,-1751,-2895,-4540,-10453,-205], +[0,-11,-216,-173,-21,-136,-140,-48,-204,-10452,-296,-845,-295,-737,-582,-1058,-10451,-86,-5098,-3054,-152,-159,-26,-1, +-5195,-181,-41,-32,-615,-2878,-199,-3149,-10450,-8,-176,-166,-10449,-18,-3702,-1760,-4641,-10448,-157,-342,-120,-83,-104, +-10447,-4837], +[0,-1073,-95,-99], +[1,3,6821], +[0,6822,0,6823,5], +[0,-457], +[0,-31,-73,-585,-10446,-2095,-508,-10445,-10444,-3469,-607,-2670,-10443,-10442,-165,-851], +[1,3,6825], +[0,0,6826,7,6], +[0,-3,-1,-66,-110,-10441,-1186,-76,-10,-67,-84,-131], +[1,3,6828], +[0,6829,6830,6831,10], +[0,-10440,-2176,-2828], +[0,-13,-3,-2206,-180,-2251,-10439], +[0,-41,-223,-778,-1968,-683], +[1,3,6833], +[0,6834,6835,6836,8], +[0,-3926], +[0,-2206,-3,-13,-2251], +[0,-1809,-2114,-778,-1968,-683,-4885], +[1,3,6838], +[0,6839,236,6840,4], +[0,-2828], +[0,-1809,-1044,-778,-1968,-683,-10438,-1702], +[1,3,6842], +[0,6843,236,237,8], +[0,-10437,-3926], +[1,3,6845], +[0,6846,6847,237,5], +[0,-10436,-905,-2828,-4736,-2176], +[0,-2206,-3,-13,-180,-2251], +[1,3,6849], +[0,0,114,6850,4], +[0,-1809,-5493], +[1,3,6852], +[0,6853,0,6854,5], +[0,-287,-132], +[0,-2338,-248], +[1,3,6856], +[0,0,31,6857,8], +[0,-91,-59,-248], +[1,3,6859], +[0,0,238,6860,5], +[0,-248,-5459,-4539,-126,-2474,-303,-1400,-3436,-4563,-2391], +[1,3,6862], +[0,0,118,6863,4], +[0,-248,-5021,-126,-1927,-4592,-10435,-10434,-5514,-132,-674,-1467,-1406,-549,-672,-651,-668,-280], +[1,3,6865], +[0,0,6866,6867,8], +[0,-5438,-673,-5,-137,-103,-4698,-321,-2,-30], +[0,-41,-1075,-3120,-1937], +[1,3,6869], +[0,0,6870,7,5], +[0,-5,-103,-1567,-89,-1,-1552,-527,-4,-2,-1287,-30,-4538], +[1,3,6872], +[0,6873,6874,57,4], +[0,-1834,-276,-2463], +[0,-1851,-3,-2822], +[1,3,6876], +[0,6877,6878,6879,4], +[0,-10433,-10432,-1810,-197,-4886,-123], +[0,-5,-299,-422,-4,-39,-2], +[0,-1064,-114], +[1,3,6881], +[0,6882,6883,6884,10], +[0,-2895,-5853,-10431,-10430,-4537], +[0,-11,-962,-21,-48,-203,-86,-10429,-10428,-1572,-59,-327,-1181,-1,-348,-55,-8,-176,-1435,-100,-2317,-4,-643,-14,-870], +[0,-1064,-10427,-10426,-1661,-1602,-1203], +[1,3,6886], +[0,0,6887,7,4], +[0,-116,-10425,-13,-10424,-474,-3,-235], +[1,3,6889], +[0,6890,6891,6892,4], +[0,-3125,-10423,-10422,-10421,-10420,-10419], +[0,-10418,-10417,-60,-116,-1028,-10416,-2,-30,-4909], +[0,-386,-10415,-605,-4536,-842,-1066,-4535], +[1,3,6894], +[0,6895,6896,6897,5], +[0,-645,-798,-552], +[0,-182,-169,-94,-620,-268,-328,-2561,-1,-191,-500,-10,-420,-1598,-8,-496,-2316,-4868,-7], +[0,-3925,-903,-1935], +[1,3,6899], +[0,6900,6901,239,11], +[0,-1165,-40,-3413,-3212,-361,-113,-3412,-219], +[0,-1,-699], +[1,3,6903], +[0,6904,6905,239,5], +[0,-1021,-1165,-40,-3413,-3212,-361,-113,-3412,-219], +[0,-1,-699,-1242], +[1,3,6907], +[0,6908,6909,6910,5], +[0,-928,-135,-1178,-10414,-1026,-5038,-199,-88,-608,-1310,-1458,-10413,-562,-490,-1499,-113,-272,-596], +[0,-5296,-1,-1861,-84,-10,-76,-67,-131,-66], +[0,-37,-1026,-2827,-10412,-10411], +[1,3,6912], +[0,0,70,7,11], +[1,3,6914], +[0,0,0,6915,8], +[0,-174,-135,-584,-37,-194], +[1,3,6917], +[0,0,6918,6919,5], +[0,-1,-4678,-707,-3,-15], +[0,-28,-511,-323], +[0,44,15,16,8], +[1,3,6922], +[0,0,6923,6924,9], +[0,-51,-10410,-81,-4654,-34], +[0,-2457,-2042,-172,-481,-10409,-3589,-141,-2334,-4629,-452,-507,-1734,-1955,-3481,-60,-629,-430,-116], +[1,3,6926], +[0,6927,6928,6929,10], +[0,-10408,-10407,-10406,-10405,-5103,-10404,-10403,-1394,-10402,-4534,-10401], +[0,-310,-2329,-10400,-5,-768,-10399,-1766,-1347,-36,-2761,-1,-10,-115,-76,-67,-118,-3053,-10398,-2219,-8,-263,-1522, +-10397,-791,-3052,-235,-180,-1304,-7,-16,-889,-10396,-138,-39,-71,-33,-81,-2,-552], +[0,-508,-738,-245,-106], +[1,3,6931], +[0,0,6932,6933,4], +[0,-1,-12,-2452,-76,-25,-9,-8,-4,-372], +[0,-158,-10395,-10394,-1398,-10393], +[1,3,6935], +[0,6936,6937,6938,5], +[0,-806], +[0,-1,-4785,-2], +[0,-281,-4750,-207], +[1,3,6940], +[0,6941,6942,6943,6], +[0,-3294], +[0,-34,-51,-81,-372], +[0,-451,-106,-3567,-158,-10392,-630,-2429,-349,-1076,-2428,-1958,-126,-720,-511,-128,-1382,-1065,-942,-405,-745,-1957, +-248], +[1,3,6945], +[0,175,14,6946,5], +[0,-2466,-451,-126,-630,-2429,-349,-1076,-2428,-1958,-720,-511,-128,-1382,-1065,-942,-405,-745,-1957,-248], +[1,3,6948], +[0,0,84,6949,5], +[0,-3323,-1269,-1372], +[1,3,6951], +[0,6952,0,7,5], +[0,-5956], +[1,3,6954], +[0,6955,6956,6957,11], +[0,-1247,-1884,-1283], +[0,-59,-3,-1656,-976], +[0,-5643,-91,-3249,-1305,-73,-506], +[1,3,6959], +[0,6960,6961,6962,4], +[0,-477], +[0,-1,-828,-76,-350,-3,-15,-2], +[0,-627,-107,-363], +[1,3,6964], +[0,6965,14,6966,8], +[0,-10391], +[0,-3169,-4533,-562,-3170,-4532,-1603,-163,-10390,-10389,-10388], +[1,3,6968], +[0,0,6969,6970,9], +[0,-13,-66,-3,-2184], +[0,-3169,-4533,-562,-3170,-3167,-1155], +[1,3,6972], +[0,6973,70,6974,8], +[0,-10387,-10386,-10385,-10384,-1580,-60,-10383,-119,-10382,-58,-2896,-574,-36,-573,-1858,-10381,-72,-1817,-4531,-10380, +-10379,-10378,-10377,-2121,-16,-146,-2794,-10376,-101], +[0,-37,-3256,-3255,-1269,-6360,-4530,-263,-106,-41,-2225,-10375,-1370,-10374,-10373,-10372,-4529,-10371,-10370,-1368, +-3206,-1912,-1601,-2585,-1756,-10369,-10368,-4528,-10367,-3051,-1621,-1620,-4598,-2788,-10366,-288,-10365,-5299,-10364, +-1600,-4528,-10363,-3988,-3083,-10362,-2582,-3079,-5053,-10361,-10360,-10359,-10358,-1936,-1983,-1177,-2418,-10357], +[1,3,6976], +[0,0,6977,6978,4], +[0,-59,-1880,-223,-1,-12,-15,-4,-157,-396,-4527,-39], +[0,-10356,-5558,-5557,-10355,-10354,-73,-579,-4537,-10353,-806], +[1,3,6980], +[0,6981,6982,6983,9], +[0,-6298], +[0,-829,-8,-816,-3950,-130], +[0,-17,-686,-3144,-3143], +[1,3,6985], +[0,0,0,6986,4], +[0,-3924,-10352,-685,-4526,-3092,-508,-4525,-757,-1633,-1371,-2040,-370,-1931,-3116,-158,-4582,-1372,-1987,-10351,-10350, +-626,-5617,-10349,-4524,-4798], +[1,3,6988], +[0,241,6989,6990,5], +[0,-175,-33,-2], +[0,-10348,-10347,-10346,-10345,-10344,-10343,-10342,-10341,-99,-10340,-10339,-10338,-10337,-46,-53,-2], +[1,3,6992], +[0,39,6993,6994,4], +[0,-50,-11,-161,-173,-480,-21,-1068,-203,-63,-232,-94,-86,-278,-10336,-26,-298,-42,-1,-191,-10,-420,-1598,-9,-8,-18,-2316, +-4,-10335,-642,-14,-1298,-226,-120,-395,-10334,-2,-1785], +[0,-888,-1505,-1865,-10333,-1265,-10332,-6,-1683,-2,-10331,-10330,-10329,-224,-671], +[1,3,6996], +[0,0,6997,6998,5], +[0,-10328,-10327,-10326,-10325,-1,-10324,-2], +[0,-4523,-129,-1637,-2130,-2683,-10323,-10322], +[1,3,7000], +[0,7001,7002,7003,6], +[0,-60,-36], +[0,-8], +[0,-105,-4522,-939], +[1,3,7005], +[0,7006,0,7007,8], +[0,-646,-164,-799], +[0,-24,-38,-4977,-592,-73,-10321,-507,-4521,-1277], +[1,3,7009], +[0,7010,7011,7012,8], +[0,-560,-465], +[0,-5,-1,-12,-10320,-38,-4,-2], +[0,-24,-38,-218,-10319,-4520], +[1,3,7014], +[0,7015,7016,7017,4], +[0,-119,-6119,-40,-164,-902,-2315,-1414,-4519,-285,-311,-96], +[0,-51,-43,-56,-1,-4518,-55,-38,-561,-4,-887,-123], +[0,-37,-38,-1945], +[1,3,7019], +[0,7020,0,7021,6], +[0,-3842,-1896,-1895,-4056,-3050], +[0,-224,-4517,-24,-435,-727,-4516,-10318,-4515,-4562,-38,-218,-726,-10317,-3392,-389], +[1,3,7023], +[0,7024,7025,7026,6], +[0,-305,-2314,-2752,-465], +[0,-3049,-38], +[0,-224,-135,-384,-24,-227,-38,-218], +[1,3,7028], +[0,242,22,7029,9], +[0,-24,-1647,-38,-218], +[1,3,7031], +[0,7032,7033,7034,5], +[0,-160,-2314,-20,-10316,-4514,-38,-10315,-4513,-2824,-10314,-10313,-4512,-10312,-10311,-4511,-10310,-10309,-2196,-1808, +-3922,-10308,-4510,-10307,-10306,-10305,-3920,-4509,-10304,-4508,-10303,-4507], +[0,-182,-169,-98,-268,-712,-2924,-3317,-267,-144,-10302,-10301,-10300,-10299,-10298,-1,-10297,-1860,-64,-919,-277,-379, +-10296,-101,-911,-221,-10295,-2844,-10294,-10293,-10292,-10291,-10290,-10289,-10288,-10287,-10286,-4572,-2201,-10285, +-242,-1310,-10284,-561,-492,-2315,-2502,-121,-6,-35,-10283,-7,-138,-154,-39,-10282,-17,-170,-10281], +[0,-38,-218,-24,-632,-4506], +[1,3,7036], +[0,7037,0,7038,5], +[0,-3048,-1896,-1895,-4057], +[0,-4505,-4504,-24,-1911,-1455,-4503,-38,-218,-4502,-676,-2095,-632], +[1,3,7040], +[0,7041,0,7042,4], +[0,-3048,-1896,-1895,-3050,-465], +[0,-24,-1911,-1455,-6044,-38,-218,-1091,-2095,-1454,-2712,-632], +[1,3,7044], +[0,7045,0,7046,4], +[0,-3048,-1896,-1895,-560], +[0,-4505,-4504,-24,-1911,-1455,-4501,-1973,-38,-218,-1922,-1597,-2095,-632], +[1,3,7048], +[0,90,7049,7050,6], +[0,-38,-901,-2345], +[0,-24,-968,-38,-218], +[1,3,7052], +[0,0,22,7053,9], +[0,-24,-6494,-721,-38,-218], +[1,3,7055], +[0,0,22,7056,4], +[0,-541,-24,-10280,-227,-1647,-38,-218], +[1,3,7058], +[0,0,7059,7060,6], +[0,-207,-164,-38], +[0,-38,-24,-218,-10279,-10278,-10277], +[1,3,7062], +[0,0,7063,7064,8], +[0,-13,-32,-530,-364], +[0,-38,-24,-218,-10276,-3489,-3047], +[1,3,7066], +[0,7067,7068,7069,9], +[0,-497,-2737,-38,-1502], +[0,-3304,-160,-13,-152,-1,-12,-1550,-3301,-1334,-115,-2441,-25,-826,-825,-1643,-3,-5161,-15,-2313,-901,-10275,-4,-179, +-558,-887], +[0,-38,-389,-31,-74,-10274,-10273,-24,-222,-77,-432,-10272,-887], +[1,3,7071], +[0,7072,0,7073,10], +[0,-3050,-465], +[0,-1235,-24,-281,-10271,-5722,-3432,-38,-218,-3162,-636], +[1,3,7075], +[0,7076,7077,7078,10], +[0,-465,-4519,-128], +[0,-51,-43,-1,-4518,-25,-55,-38,-901,-4,-887], +[0,-24,-38,-218,-628,-10270,-158], +[1,3,7080], +[0,7081,0,7082,4], +[0,-2212], +[0,-38,-10269,-10268], +[1,3,7084], +[0,7085,7086,7087,5], +[0,-527,-16,-403], +[0,-151,-8,-222,-77,-9,-262,-10267,-425,-1,-382,-237,-55,-38,-887,-57,-33,-17,-4,-26,-50,-48,-86,-6216,-138,-11,-1143,-18, +-65,-462,-10266,-561,-1503,-49,-115,-514,-134,-21,-83,-145,-902,-10,-583,-150,-12,-25,-309,-10265,-62], +[0,-24,-38,-1945,-17,-3657], +[1,3,7089], +[0,7090,22,7091,6], +[0,-465,-3890], +[0,-24,-227,-721,-38,-218], +[1,3,7093], +[0,7094,7095,7096,8], +[0,-305,-2314,-560,-2312], +[0,-3049,-38,-2345,-2823], +[0,-24,-721,-38,-218], +[1,3,7098], +[0,60,22,7099,5], +[0,-24,-1086,-10264,-10263,-721,-218], +[1,3,7101], +[0,7102,22,50,10], +[0,-2752,-465,-2312], +[1,3,7104], +[0,7105,22,7106,10], +[0,-305,-465,-2312], +[0,-38,-24,-218,-227,-721,-5753], +[1,3,7108], +[0,7109,7110,7111,4], +[0,-2243,-560], +[0,-4500,-38], +[0,-24,-227,-721,-38,-218,-1597], +[1,3,7113], +[0,7114,130,7115,10], +[0,-1471,-560,-465], +[0,-10262,-38,-24,-218], +[1,3,7117], +[0,90,0,7118,11], +[0,-38,-24,-218,-77,-2421], +[1,3,7120], +[0,7121,0,7122,11], +[0,-4499,-2940,-560], +[0,-10261,-1221,-10260,-24,-4506,-1911,-2421,-10259,-38,-218,-1388,-1597,-2651,-2650,-389,-632], +[1,3,7124], +[0,7125,7126,7127,5], +[0,-10258,-10257,-10256], +[0,-10255,-305,-38,-561,-14], +[0,-38,-24,-218,-10254,-2017,-10253], +[1,3,7129], +[0,0,22,7130,6], +[0,-38,-24,-218,-2370], +[0,60,22,50,4], +[1,3,7133], +[0,60,22,50,11], +[1,3,7135], +[0,242,22,50,8], +[1,3,7137], +[0,60,22,7138,4], +[0,-24,-1655,-721,-1647,-38,-218,-195], +[1,3,7140], +[0,7141,22,50,5], +[0,-465,-2312], +[1,3,7143], +[0,0,7144,7145,4], +[0,-9,-3,-38,-66,-4,-18,-1503], +[0,-38,-2575,-1597,-218,-24,-1456,-107], +[1,3,7147], +[0,7148,0,7149,5], +[0,-10252,-5734,-10251,-10250,-10249,-10248,-10247,-10246,-10245,-10244,-10243,-10242,-10241,-10240,-10239,-6569,-10238, +-10237,-10236,-10235,-10234,-10233,-10232,-10231,-10230,-10229,-10228,-4498,-10227,-4056,-10226,-10225,-10224,-10223, +-10222,-10221,-10220,-10219,-10218,-10217,-10216,-160,-305,-10215,-10214,-10213,-6499,-4513,-10212,-6359,-4512,-4511, +-2196,-1808,-3922,-10211,-10210,-6270,-10209,-4510,-10208,-6358,-10207, +-10206,-3920,-6264,-10205,-10204,-10203,-4509,-4508,-4507], +[0,-24,-1911,-5387,-2552,-10202,-241,-38,-218,-2651,-2650,-5386,-632], +[1,3,7151], +[0,7152,7153,50,8], +[0,-305,-2314], +[0,-3049,-1530,-38], +[1,3,7155], +[0,0,0,7156,4], +[0,-24,-38,-3046,-73,-3256], +[1,3,7158], +[0,0,0,7159,4], +[0,-24,-38,-3046,-73,-432,-77], +[1,3,7161], +[0,7162,7163,7,11], +[0,-2243,-3181], +[0,-50,-11,-161,-3680,-216,-21,-178,-51,-278,-5450,-237,-1,-10,-28,-88,-15,-38,-16,-2], +[1,3,7165], +[0,7166,7167,7168,8], +[0,-465,-598], +[0,-4514,-38], +[0,-24,-227,-721,-38,-218,-256,-598], +[1,3,7170], +[0,90,22,50,4], +[1,3,7172], +[0,0,7173,7174,4], +[0,-1,-9,-18,-4,-556,-39], +[0,-38,-853,-73], +[1,3,7176], +[0,7177,0,7178,4], +[0,-10201,-10200,-10199,-10198,-10197,-10196,-10195,-44], +[0,-1066,-842,-4536,-605,-386,-718,-1935,-337,-46,-4535,-1932,-2,-436,-381], +[1,3,7180], +[0,7181,7182,7183,4], +[0,-5907,-5908], +[0,-49,-937,-43,-13,-244,-2250,-404,-9,-815,-18,-3,-97], +[0,-31,-506,-4900,-73,-507,-4497,-4521,-592,-4496], +[1,3,7185], +[0,7186,0,7187,5], +[0,-10194,-123,-2853,-6408,-71,-10193,-6409,-10192,-188,-10191,-10190,-197,-10189,-10188], +[0,-718,-4628,-6356], +[1,3,7189], +[0,7190,7191,7192,4], +[0,-2581,-10187,-10186,-10185,-742], +[0,-182,-447,-6146,-835,-268,-59,-2727,-10184,-421,-78,-139,-4787,-212,-189,-10183,-3,-10182,-5285,-1498,-416,-16], +[0,-1501,-293,-1072,-75,-61,-338,-360], +[1,3,7194], +[0,7195,7196,7197,6], +[0,-230,-3163,-219], +[0,-927,-66,-3], +[0,-387,-682,-158,-235,-4495,-2323,-75,-684], +[1,3,7199], +[0,0,7200,7201,11], +[0,-10181,-10180,-11,-1273,-5730,-21,-178,-320,-109,-69,-5,-269,-1079,-960,-10179,-13,-56,-26,-10178,-89,-9,-10177,-701, +-3,-343,-1393,-3141,-121,-1707,-27,-186,-175,-2,-284,-104,-30,-1242], +[0,-491,-6,-102,-2719,-4494,-1940,-127,-10176,-184,-52], +[1,3,7203], +[0,7204,27,57,5], +[0,-20,-119,-1851,-2463], +[1,3,7206], +[0,7207,7208,7209,4], +[0,-10175,-2125,-908], +[0,-3258,-62,-80,-231,-63,-29,-408,-22,-19,-1179,-1,-12,-25,-9,-8,-4493,-10174,-4,-14,-134,-175,-33,-2], +[0,-4,-107,-166,-5179], +[1,3,7211], +[0,0,7212,7213,6], +[0,-5,-10173,-51,-4,-2,-1424], +[0,-4,-10172,-2,-10171,-10170], +[1,3,7215], +[0,7216,7217,7218,8], +[0,-1632], +[0,-343,-4], +[0,-1372,-107,-4], +[1,3,7220], +[0,0,7221,7222,6], +[0,-513,-80,-63,-5,-51,-4,-14,-1297,-220,-33,-44,-2], +[0,-4,-220], +[1,3,7224], +[0,7225,0,7226,6], +[0,-10169,-23,-1496], +[0,-4,-353], +[1,3,7228], +[0,0,14,7229,4], +[0,-637,-475,-2535,-761,-1207,-126,-1964,-3045,-1206,-10168,-450,-4492,-2372,-10167], +[1,3,7231], +[0,7232,7233,7234,8], +[0,-23,-10166], +[0,-13,-474,-316,-10165,-3], +[0,-637,-627,-3044,-36,-4491,-1206,-3584,-3221,-550,-1964], +[1,3,7236], +[0,7237,7238,7,5], +[0,-5942,-767,-439], +[0,-47,-1658,-1765,-529,-912,-6,-35,-286], +[1,3,7240], +[0,7241,14,7242,6], +[0,-10164], +[0,-637,-3221,-1964,-4877,-3045,-1206,-588,-567,-10163,-3417,-10162,-2480,-183,-163,-1417,-10161], +[1,3,7244], +[0,7245,0,7246,6], +[0,-1750,-44,-469,-1093,-323,-4490,-164], +[0,-387,-10160,-10159,-4,-441,-584,-354,-4489,-4495], +[1,3,7248], +[0,7249,7250,7251,5], +[0,-135,-88], +[0,-3,-117,-82,-66,-56,-611], +[0,-106,-37,-584,-135], +[1,3,7253], +[0,7254,7255,7256,5], +[0,-1818,-842,-6169,-10158,-10157,-10156], +[0,-324,-258,-915,-8,-149,-118,-495,-4488,-606,-215,-3751,-1411,-119,-40,-252,-1057,-1680,-1150,-1523,-188,-10155,-138, +-10154,-2,-29,-5,-3109,-10153,-1578,-1327,-10152,-1815,-10151,-4487,-4486,-10150,-10149,-3124,-10148,-185,-4485,-1244, +-1257,-10147,-10146,-10145,-1240,-4484,-10144,-4483,-4482,-10143,-1381,-10142,-10141,-10140,-2583,-10139,-10138], +[0,-784,-10137,-10136,-10135,-10134,-386,-718,-1638,-10133,-733,-10132,-10131,-4481,-605,-10130,-4480,-10129,-4479,-4478, +-10128,-10127,-10126,-10125,-10124], +[1,3,7258], +[0,0,7259,7260,4], +[0,-955,-110,-13,-3043,-151,-10123,-1,-181,-826,-32,-1009,-654,-820,-3850,-314,-1007,-10122,-1160,-497,-419,-79,-3,-188, +-65,-4,-1304,-3297,-5163,-10121,-373,-3296,-600,-10120,-96], +[0,-10119,-2107], +[1,3,7262], +[0,7263,7264,7265,8], +[0,-116,-168,-135,-41,-2208,-72,-236,-10118,-565,-1308,-10117], +[0,-13,-32,-364,-1515,-983,-27,-186,-688], +[0,-1185,-2036,-1915,-2472,-5279,-433,-387,-10116,-451], +[1,3,7267], +[0,0,29,7,4], +[1,3,7269], +[0,0,7270,7271,6], +[0,-976,-3], +[0,-287], +[1,3,7273], +[0,0,0,7274,7275], +[0,-37,-361], +1769904000000, +[1,3,7277], +[0,7278,0,7279,4], +[0,-20,-361], +[0,-17,-107,-361,-3107], +[1,3,7281], +[0,7282,7283,7,8], +[0,-4573], +[0,-208,-7,-66], +[1,3,7285], +[0,0,7286,7287,6], +[0,-59,-26,-1,-3692,-9,-78,-910,-139,-189,-18,-3,-65,-4,-7,-14,-803,-27,-744,-2], +[0,-172,-1807,-846,-1668], +[1,3,7289], +[0,7290,226,7291,4], +[0,-3,-27,-247], +[0,-481,-1668], +[1,3,7293], +[0,89,7294,57,6], +[0,-471,-1545,-3,-2822], +[1,3,7296], +[0,7297,7298,7299,6], +[0,-1228,-60,-603,-5595,-552], +[0,-1,-1481], +[0,-490,-294,-10115,-409], +[0,7301,7302,7303,6], +[0,-495,-10114], +[0,-50,-11,-306,-21,-556,-39], +[0,-102,-397,-37,-490,-1447,-294,-336,-308,-1446,-1263,-1737,-10113], +[1,3,7305], +[0,7306,7307,41,5], +[0,-1521,-242,-439], +[0,-86,-712,-59,-1570,-1,-213,-8,-6,-4477,-4476], +[1,3,7309], +[0,0,7310,7311,11], +[0,-408,-5,-4475,-43,-3963,-10112,-4474,-4,-147,-260,-10111,-10110,-233,-2,-1396,-34], +[0,-3056,-1610,-31,-5856,-3323,-1056,-256], +[1,3,7313], +[0,7314,7315,7316,5], +[0,-10109,-10108,-10107,-10106,-10105,-10104,-10103,-10102,-10101,-10100,-5,-2207], +[0,-110,-59,-10099,-1570,-20,-2888,-1,-617,-1167,-348,-4618,-4473,-5006,-32,-820,-1161,-313,-653,-166,-88,-15,-602,-39, +-196,-2,-112,-1784,-554,-883], +[0,-10098,-4472,-2311,-2], +[1,3,7318], +[0,7319,7320,7321,5], +[0,-4471,-1599,-6233,-1775,-20,-28,-199,-6220,-522,-1233,-1115,-146,-6213,-3854,-96], +[0,-3773,-458,-1040,-10097,-843,-5,-168,-13,-244,-1919,-421,-41,-32,-2310,-3970,-117,-23,-228,-3,-10096,-7,-983,-16,-196, +-1596,-2,-2309], +[0,-192,-75,-61,-840,-1367,-933], +[1,3,7323], +[0,7324,7325,7326,4], +[0,-587,-10095,-36], +[0,-10094,-162,-29,-5,-1578,-8,-57,-2,-1953], +[0,-105,-401,-604,-223,-3357,-10093,-10092,-3345,-10091,-10090,-10089], +[1,3,7328], +[0,7329,7330,231,4], +[0,-10088,-10087,-128], +[0,-3,-10086,-82,-27,-97], +[1,3,7332], +[0,7333,7334,7335,5], +[0,-20,-10085,-10084,-200,-569,-23,-362,-2836,-3927,-16], +[0,-182,-1032,-268,-151,-1,-12,-2219,-66,-72,-3,-1516,-4,-7,-82], +[0,-32,-158,-717,-451,-358], +[1,3,7337], +[0,7338,7339,7340,10], +[0,-10083,-10082,-10081,-10080,-10079,-10078,-10077,-10076], +[0,-72,-7,-4847,-4849,-4846,-4845,-10075,-10074,-4848], +[0,-31,-1833,-643,-271], +[1,3,7342], +[0,0,7343,7,4], +[0,-110,-4663,-2232,-523,-10073,-556,-39], +[1,3,7345], +[0,7346,0,7347,4], +[0,-1864,-698], +[0,-940,-1921,-2485,-2042], +[1,3,7349], +[0,0,7350,7351,4], +[0,-152,-15,-3], +[0,-988,-455,-10072,-10071,-10070,-195,-10069], +[1,3,7353], +[0,7354,91,7355,5], +[0,-5311,-10068,-403,-3081,-4470,-10067], +[0,-157,-1373,-1199,-544], +[1,3,7357], +[0,7358,0,7359,8], +[0,-58,-229,-38,-560], +[0,-580,-3432,-626,-1988,-24,-31,-1388,-10066,-3204,-5282], +[1,3,7361], +[0,0,7362,7363,9], +[0,-54,-117,-1520,-167,-2214,-347,-1806], +[0,-522,-172,-481,-5539,-1668,-3506,-2552,-60,-5537,-10065,-91,-141], +[1,3,7365], +[0,0,0,7366,10], +[0,-1651,-10064,-5435,-579,-256,-281], +[1,3,7368], +[0,0,0,7369,4], +[0,-240,-868,-1651,-194], +[1,3,7371], +[0,7372,7373,7374,4], +[0,-5340], +[0,-10063,-10062,-239,-59,-1570,-10061,-1557,-1555,-1,-1166,-1015,-28,-5219,-10060,-4658,-5339,-1323,-470,-213,-1322,-527, +-72,-1820,-5527,-275,-15,-1312,-5149,-187,-3164,-39,-10059], +[0,-987,-464,-676,-195,-165,-429], +[1,3,7376], +[0,7377,7378,7379,4], +[0,-10058,-4469,-10057], +[0,-51,-110,-830,-1333,-81,-34], +[0,-91,-987,-676,-163,-464,-10056,-10055,-195,-165,-429,-777,-1416,-10054,-719], +[1,3,7381], +[0,0,7382,7383,4], +[0,-75,-10053,-39], +[0,-860,-676,-987], +[1,3,7385], +[0,0,7386,7387,4], +[0,-43,-419,-10052], +[0,-986,-60,-1418,-2308,-1425,-786,-1913,-2573], +[1,3,7389], +[0,119,120,7390,4], +[0,-986,-4546,-10051,-10050,-10049,-45,-3389,-1638,-270,-2,-3388,-733,-436,-1425,-10048,-986,-10047,-10046,-10045,-3112, +-1913,-10044,-3091,-3385,-1645,-10043,-450,-1213,-3384,-3383,-2479,-3382,-3381,-3380,-3379,-3378,-3377,-3376,-3375,-3386, +-10042,-1985,-3374,-846,-3373,-3372,-3371,-3370,-3369,-3368,-3367,-3366,-2478,-132,-1399,-3365,-2622,-3364,-522,-10041, +-670,-3082,-10040, +-1229,-10039,-241,-141,-4468,-4669,-542,-3363,-42,-1404], +[1,3,7392], +[0,7393,7394,7395,4], +[0,-468,-10038,-10037,-1018], +[0,-28,-598,-79,-1,-393,-30,-33,-17,-4,-211,-50,-144,-2,-11,-5,-1532,-92,-98,-379,-154,-1791,-519,-517,-1079,-357,-1278, +-21,-890,-170,-10036,-346,-10,-392,-12,-148,-25,-377,-140,-10035,-19,-1965,-2307,-22,-5954,-251], +[0,-6351,-412,-875,-789,-1461,-1460,-52], +[1,3,7397], +[0,7398,7399,7400,11], +[0,-58,-3093,-3931], +[0,-15,-54,-495,-1,-7,-14,-16,-110,-1330,-4467,-416,-180,-1622,-11,-4466,-21,-763,-76,-532,-3325,-2383,-203,-923,-10, +-10034,-67,-616,-232,-84,-214,-80,-1861,-63,-10033,-962], +[0,-61,-388,-293,-1072,-85,-39,-78,-249], +[1,3,7402], +[0,7403,7404,7405,8], +[0,-10032], +[0,-310,-10031,-22,-19,-103,-1350,-268,-289,-1,-12,-25,-3459,-3326,-4,-459,-375,-373,-10030,-14,-870,-301,-2,-30,-17], +[0,-91,-255,-31,-375,-10029,-61], +[1,3,7407], +[0,7408,7409,7410,4], +[0,-119,-58,-10028,-1546,-10027,-128,-1102], +[0,-60,-1351,-328,-4465,-1028,-4828,-4826,-763,-3325,-118,-1330,-40,-54,-167,-6456,-616,-532,-2383,-302,-2399,-531,-4827, +-2398,-4743,-4466,-345,-180,-416,-273,-16], +[0,-61,-388,-249], +[1,3,7412], +[0,7413,7414,7415,9], +[0,-1506], +[0,-10026,-59,-39], +[0,-10025,-549], +[1,3,7417], +[0,0,7418,7419,5], +[0,-50,-11,-21,-178,-479,-203,-2363,-10024,-833,-110,-1029,-26,-10023,-1,-10,-1333,-250,-101,-3,-65,-15,-7,-14,-803, +-10022,-10021,-27,-3886,-4464], +[0,-642,-727,-674,-939,-1094,-2327,-4463,-10020,-3042,-4854,-4462], +[1,3,7421], +[0,7422,27,7423,6], +[0,-1493], +[0,-850,-3041,-3041,-1603,-114,-10019,-183], +[1,3,7425], +[0,177,7426,7427,5], +[0,-903,-97,-556,-39,-976], +[0,-659,-850], +[1,3,7429], +[0,7430,27,7,10], +[0,-3915], +[1,3,7432], +[0,0,172,7433,9], +[0,-2480,-73,-105], +[1,3,7435], +[0,7436,7437,7438,6], +[0,-1135,-123,-352,-10018,-3897], +[0,-28,-198,-3,-27,-1,-82,-66,-4,-474,-12], +[0,-4617,-1954,-4461,-367,-6349,-10017], +[1,3,7440], +[0,7441,7442,7,5], +[0,-475,-10016,-470,-652], +[0,-15,-3,-1,-116,-791,-488,-197,-309,-2626], +[1,3,7444], +[0,205,7445,48,5], +[0,-50,-11,-21,-49,-62,-1970,-944,-86,-26,-151,-237,-1,-12,-10,-25,-9,-8,-18,-262,-65,-4,-134,-17], +[1,3,7447], +[0,7448,0,7449,4], +[0,-758,-88,-1869,-599], +[0,-353,-1496,-1918,-2350], +[1,3,7451], +[0,7452,7453,7454,5], +[0,-90,-267,-1303], +[0,-3040,-155,-122,-2155,-29,-5,-47,-87,-3512,-26,-1559,-1,-145,-150,-822,-10015,-348,-28,-222,-417,-3039,-2192,-5793,-6, +-35,-342,-2], +[0,-6,-108,-10014,-1198,-336,-2480], +[1,3,7456], +[0,7457,7458,7459,5], +[0,-90,-5662,-267,-1303], +[0,-3040,-122,-29,-47,-87,-1436,-26,-1559,-1,-150,-822,-348,-222,-417,-3039,-6,-35,-2], +[0,-6,-108,-10013,-2130], +[1,3,7461], +[0,7462,7463,7464,5], +[0,-90,-439], +[0,-3040,-122,-29,-5,-47,-87,-1658,-10012,-1436,-3512,-2245,-26,-1559,-1,-145,-150,-822,-28,-9,-18,-417,-4,-3039,-6,-35, +-2], +[0,-6,-132], +[1,3,7466], +[0,0,0,41,10], +[1,3,7468], +[0,7469,0,245,10], +[0,-691], +[1,3,7471], +[0,7472,7473,245,5], +[0,-242], +[0,-8,-6,-35,-17], +[1,3,7475], +[0,7476,7477,7478,5], +[0,-10010,-10009,-10008,-10007,-10006], +[0,-14,-2], +[0,-6098,-380,-6,-682,-5046,-127], +[1,3,7480], +[0,7481,0,7,11], +[0,-694,-159,-172,-792,-242,-342], +[1,3,7483], +[0,7484,0,7485,4], +[0,-595,-704,-267,-121,-10005,-1866,-90,-10004,-10003,-10002,-972,-691,-1468], +[0,-476,-6,-129,-127,-10001,-108], +[1,3,7487], +[0,7488,7489,7490,5], +[0,-10000,-23,-468,-9999,-121,-9998,-1107], +[0,-9997,-9996,-3513,-5545,-950,-182,-169,-86,-98,-4460,-328,-712,-1187,-447,-13,-3038,-144,-445,-423,-1856,-379,-1532, +-346,-6422,-8,-496,-9995,-3,-2201,-158,-242,-6,-5057,-9994,-35,-2191,-9993,-286,-1119,-2809,-7,-154,-9992,-17,-170], +[0,-6,-4459,-108,-3274,-2671,-9991,-1373,-9990,-973,-2128], +[1,3,7492], +[0,7493,7494,7495,9], +[0,-832,-121], +[0,-50,-11,-161,-216,-306,-21,-136,-178,-98,-834,-144,-1563,-1,-266,-10,-148,-64,-190,-348,-346,-9989,-377,-6,-35,-154, +-39,-17,-92,-170], +[0,-129,-108,-6,-9988,-1182], +[1,3,7497], +[0,7498,7499,7500,9], +[0,-2751,-304,-1174], +[0,-11,-161,-2735,-962,-216,-21,-136,-140,-48,-9987,-203,-80,-63,-204,-319,-330,-122,-317,-359,-29,-1712,-5,-47,-87,-22, +-19,-1352,-86,-834,-159,-9986,-1,-12,-10,-145,-64,-190,-2375,-9,-8,-1710,-1528,-176,-18,-23,-4,-6,-35,-14,-2619,-77,-747, +-179,-558,-2722,-2790,-57,-44,-2,-83], +[0,-6,-5915,-3736,-956,-108], +[1,3,7502], +[0,7503,7504,7,5], +[0,-149,-20,-1004,-206,-1123,-2012,-349,-9985,-397,-761,-1160,-138,-885,-230,-749,-305,-754,-2556,-9984,-538,-2188,-6345, +-424,-1853], +[0,-8,-26], +[1,3,7506], +[0,7507,7508,7,6], +[0,-9983,-9982,-4458,-1017,-1006], +[0,-1733,-252,-122,-2612,-29,-5,-47,-87,-8,-1432,-65,-6,-35,-395,-2], +[1,3,7510], +[0,7511,7512,7,8], +[0,-4458], +[0,-1733,-252,-29,-65,-395,-2], +[1,3,7514], +[0,7515,0,7516,4], +[0,-128,-1629,-11,-479,-2111,-1098,-577,-4457,-729,-2360], +[0,-6,-42,-9981], +[1,3,7518], +[0,7519,0,41,4], +[0,-982], +[1,3,7521], +[0,7522,7523,7524,4], +[0,-9980,-9979,-121], +[0,-50,-11,-161,-962,-3037,-1196,-9978,-2033,-1231,-4456,-173,-21,-136,-178,-49,-937,-9977,-4731,-203,-80,-63,-296,-845, +-737,-582,-1058,-673,-5837,-9976,-330,-155,-122,-1477,-47,-87,-22,-19,-86,-278,-1889,-503,-26,-1,-12,-10,-148,-76,-25, +-64,-190,-9,-9975,-3957,-8,-18,-525,-1306,-4,-6,-35,-2813,-286,-7, +-14,-226,-120,-321,-154,-888,-2,-17,-9974], +[0,-108,-6,-1212,-1637,-1053], +[1,3,7526], +[0,0,7527,7528,4], +[0,-538,-11,-1476,-86,-98,-1885,-20,-119,-26,-420,-705,-8,-9973,-242,-172,-693,-6,-2818,-35,-7,-9972,-130,-17], +[0,-9971,-389,-627,-5687,-2019,-9970,-9969,-595], +[1,3,7530], +[0,7531,7532,7533,4], +[0,-242,-121,-2757,-9968], +[0,-169,-94,-1351,-355,-1576,-835,-268,-712,-13,-152,-404,-298,-1,-9967,-12,-10,-148,-265,-25,-64,-66,-78,-703,-9966,-139, +-612,-212,-9965,-189,-755,-648,-702,-4609,-3,-4,-6,-35,-7,-14,-273,-463,-341,-893,-27,-186], +[0,-3912,-9964,-6,-1602,-9963,-2306,-9962,-1371,-2322,-1736,-9961,-225], +[1,3,7535], +[0,0,7536,7537,4], +[0,-487,-478,-80,-63,-204,-252,-1057,-155,-122,-29,-5,-47,-87,-1745,-502,-1,-12,-2743,-25,-64,-190,-859,-9,-8,-176,-9960, +-6219,-18,-4,-6,-35,-7,-14,-301,-81,-2,-83,-792,-258], +[0,-6,-682,-546,-871,-3036,-409,-2,-3735], +[1,3,7539], +[0,7540,7541,7542,6], +[0,-3113,-918,-1006,-754,-121,-1495,-1492,-130], +[0,-5999,-47,-1741,-182,-169,-94,-86,-1889,-1351,-1576,-835,-620,-268,-712,-152,-2035,-2245,-26,-445,-9959,-1022,-1,-266, +-12,-10,-148,-64,-9,-8,-18,-4,-6,-35,-9958,-286,-3904,-7,-14,-273,-463,-1117,-341,-893,-803,-134,-4455], +[0,-6,-45,-17,-1670,-1141,-3035,-3111,-1910,-779,-1370], +[1,3,7544], +[0,7545,7546,7547,6], +[0,-90,-6222,-1909], +[0,-50,-11,-161,-9957,-306,-391,-173,-480,-21,-136,-178,-203,-80,-63,-232,-204,-330,-155,-122,-29,-47,-103,-1639,-169, +-1266,-2569,-56,-618,-26,-1,-266,-12,-10,-3034,-148,-64,-1549,-1324,-9,-1156,-18,-72,-4,-6,-35,-286,-7,-14,-2,-30,-96], +[0,-1156,-1607,-1157,-3166,-2372,-1938,-3165,-6,-516], +[1,3,7549], +[0,0,7550,7551,10], +[0,-310,-320,-673,-155,-122,-5,-47,-87,-537,-1469,-960,-1387,-18,-701,-65,-398,-459,-6,-35,-970,-321,-171,-2,-30], +[0,-6,-129,-682,-4454,-9956,-3033,-9955,-9954,-9953,-9952], +[1,3,7553], +[0,7554,0,7555,4], +[0,-2612,-1006,-44,-9951,-9950,-9949,-9948], +[0,-550,-584,-3165,-1157,-1607,-3953,-4492,-2372,-6,-516,-5960,-3166], +[1,3,7557], +[0,0,0,41,6], +[1,3,7559], +[0,0,7560,7,5], +[0,-446,-20,-1,-9947,-8,-496,-4,-14,-893,-803], +[1,3,7562], +[0,7563,7564,7565,6], +[0,-246,-408,-936,-6430,-6265,-1134,-601,-804,-133,-340,-483], +[0,-122,-5,-47,-87,-43,-315,-89,-64,-3695,-4,-6,-35,-3903,-9946,-147,-521,-260,-1719,-233,-2,-34], +[0,-360,-1043,-129,-2101,-100,-6,-108,-274,-133], +[1,3,7567], +[0,7568,7569,7570,5], +[0,-9945,-121,-1495,-595], +[0,-4453,-182,-169,-94,-98,-278,-268,-712,-2925,-56,-26,-1,-12,-2307,-10,-148,-25,-64,-5592,-78,-139,-612,-212,-189,-418, +-648,-526,-3,-65,-4,-6,-35,-897,-559,-82,-112,-17,-92,-170], +[0,-6,-108,-1444,-3032], +[1,3,7572], +[0,7573,7574,7575,5], +[0,-1506,-121,-694], +[0,-292,-9944,-169,-94,-98,-1181,-144,-1,-266,-1860,-10,-148,-64,-420,-1598,-9943,-4452,-378,-78,-612,-400,-9942,-2862, +-526,-9941,-903,-2191,-154,-17,-170], +[0,-6,-129,-108,-9940,-2305,-9939,-9938,-485,-3031,-102], +[1,3,7577], +[0,7578,0,246,4], +[0,-205,-1476,-96,-16,-172,-1884,-58,-704,-982,-1190,-86,-4451,-311,-2205,-792,-4450,-695,-692,-9937,-1354,-4449,-1920, +-4448,-3158,-342,-4447,-816,-4446,-4445,-4444,-4443,-4442,-9936,-4441,-4440], +[1,3,7580], +[0,0,7581,7582,4], +[0,-9933,-3030,-9932,-1,-25,-4,-6,-234,-1908,-2], +[0,-234,-108,-932,-6,-95,-282,-333,-9931], +[1,3,7584], +[0,7585,7586,7587,6], +[0,-96,-121], +[0,-6,-1,-9930,-9929,-1838,-4,-5844,-50,-9928,-11,-94,-3989,-9927,-5025,-9926,-9925,-9924,-9923,-9922,-64,-266,-10,-12, +-148,-25,-190,-1760], +[0,-234,-108,-932,-6,-95,-282,-333,-2304,-722,-4439,-102,-741,-961,-1203,-1944,-1086], +[1,3,7589], +[0,0,7590,7591,9], +[0,-50,-11,-216,-306,-971,-21,-136,-178,-9921,-2766,-3283,-2936,-2016,-319,-155,-122,-317,-47,-19,-94,-98,-278,-6142,-267, +-304,-26,-1,-12,-1860,-10,-64,-348,-79,-1136,-3479,-4,-1730,-6,-35,-9920,-14,-273,-463,-2619,-894,-341,-893,-803,-211,-2, +-30,-17,-92,-170], +[0,-108,-6,-9919,-336,-1417,-9918,-5463], +[1,3,7593], +[0,0,7594,7595,4], +[0,-11,-216,-306,-21,-3530,-203,-94,-98,-13,-1,-9,-18,-3,-65,-4,-6,-35,-286,-9917,-7,-14,-17], +[0,-6,-9916,-9915,-9914], +[1,3,7597], +[0,0,7598,7599,4], +[0,-513,-9913,-1,-9912,-25,-9911,-8,-4,-14,-2], +[0,-3909,-31,-256,-255,-1056,-1610,-353,-6,-35], +[1,3,7601], +[0,7602,7603,7604,5], +[0,-4438,-1909], +[0,-478,-2272,-330,-155,-122,-5,-972,-47,-87,-152,-26,-1,-12,-251,-10,-25,-64,-79,-4,-6,-35,-322,-7,-171,-2,-83,-30], +[0,-6,-516,-322], +[0,0,0,41,4], +[1,3,7607], +[0,7608,7609,7610,4], +[0,-6423,-9910,-121,-5680], +[0,-319,-109,-9909,-586,-9908,-9907,-69,-47,-87,-269,-22,-19,-13,-26,-1,-923,-348,-79,-9906,-3,-4,-6,-35,-7,-14,-3611,-82, +-27,-44,-153,-124,-2], +[0,-24,-108,-4454,-6,-95,-9905,-9904,-6045,-9903,-636,-129], +[1,3,7612], +[0,7613,7614,248,6], +[0,-352,-2739], +[0,-171,-6,-284,-4437,-3029,-35,-2,-286,-122,-176,-2738,-155,-317], +[1,3,7616], +[0,7617,7618,248,10], +[0,-897], +[0,-171,-6,-4437,-35,-2], +[1,3,7620], +[0,0,7621,7622,4], +[0,-182,-169,-94,-98,-4871,-4870,-620,-328,-712,-4024,-447,-1,-1336,-500,-10,-148,-64,-350,-1533,-4957,-4452,-78,-612, +-212,-189,-418,-648,-526,-3,-6,-35,-898,-897,-322,-9902,-9901,-9900,-17], +[0,-6,-322,-434], +[1,3,7624], +[0,7625,28,7,4], +[0,-2917,-8,-215,-1,-16,-38,-397,-128,-17,-40,-2231,-446,-86,-144,-11,-277,-462,-557,-98,-305,-1832,-154,-2271,-1024,-692, +-492,-1302,-3919,-890,-1005,-805,-2818,-2807,-170,-346,-1149,-3146,-392,-1885,-1504,-3873,-1336,-377,-2772,-1343,-4027, +-1879,-2161], +[1,3,7627], +[0,7628,7629,7630,11], +[0,-90,-2693,-1088,-2684,-1468,-2205,-121,-691,-3760], +[0,-5760,-445,-1772,-3648,-6,-35], +[0,-4436,-546,-336,-3028,-6,-108,-1409,-102], +[1,3,7632], +[0,7633,7634,7635,5], +[0,-267,-9899,-2209,-1118], +[0,-50,-11,-161,-216,-480,-21,-136,-4435,-155,-122,-317,-5,-160,-169,-86,-98,-765,-144,-326,-151,-1553,-1,-10,-64,-41, +-9898,-32,-314,-9,-8,-176,-1001,-911,-18,-1310,-492,-4,-694,-6,-35,-342,-27,-9897,-154,-1105,-17,-92,-170,-9896], +[0,-4434,-1366,-9895,-9894,-1198,-108], +[1,3,7637], +[0,7638,7639,7640,5], +[0,-9893,-1765,-9892,-208,-1665,-293,-2611,-1184,-1878,-9891,-304,-9890,-535,-159,-1629,-9889,-1021,-424,-2888,-824,-1916, +-1076,-9888,-486,-28,-9887,-2224,-1153,-9886,-9885,-9884,-9883,-9882,-9881,-9880,-9879,-495,-4433,-23,-5014,-2848,-9878, +-1750,-324,-440,-121,-9877,-9876,-1302,-3913,-9875,-9874,-9873,-3910,-3628,-1300,-274,-9872,-392,-5167,-9871,-340,-170, +-519], +[0,-50,-11,-216,-21,-1068,-136,-140,-155,-122,-9870,-9869,-4457,-9868,-329,-4432,-29,-9867,-142,-9866,-5,-963,-47,-87, +-9865,-9864,-517,-9863,-2687,-22,-19,-169,-94,-86,-98,-144,-3043,-9862,-9861,-9860,-1,-9859,-251,-923,-10,-148,-64,-277, +-40,-9,-8,-9858,-18,-262,-4,-694,-6,-35,-286,-9857,-154,-2,-438,-17, +-92], +[0,-6,-866,-2091,-2639,-42,-390,-114,-129,-127], +[1,3,7642], +[0,7643,7644,7645,4], +[0,-90,-6549,-972,-121], +[0,-11,-173,-21,-136,-48,-1412,-203,-80,-63,-232,-204,-122,-29,-586,-5,-47,-87,-1744,-834,-1774,-1,-12,-64,-190,-859,-55, +-8,-176,-198,-343,-4,-6,-35,-14,-272,-395,-5767,-57,-33,-2,-83], +[0,-255,-31,-1704,-1703,-45,-6,-9856,-256,-9855,-2], +[1,3,7647], +[0,7648,0,7649,6], +[0,-1856], +[0,-9854,-6,-414,-658,-9853,-6340], +[1,3,7651], +[0,7652,0,7653,8], +[0,-439,-982], +[0,-6,-234,-9852], +[1,3,7655], +[0,108,7656,7657,5], +[0,-9851,-4647,-1357,-4039,-5,-47,-87,-537,-56,-502,-3847,-18,-38,-4,-6,-35,-171,-2,-104,-9850], +[0,-6,-1731,-3027,-108,-2812,-1229,-9849,-4431,-2303], +[1,3,7659], +[0,7660,7661,7662,5], +[0,-9848,-9847], +[0,-110,-59,-1570,-474,-9846,-2727,-2237,-9845,-1553,-1,-4430,-54,-167,-3136,-243,-5261,-616,-177,-9844,-4825,-9843,-496, +-565,-903,-1671,-9842,-1300,-3231,-156,-2,-112,-4477,-1782], +[0,-6,-866,-2433,-1067], +[1,3,7664], +[0,7665,0,7666,10], +[0,-90,-1866,-1521,-121], +[0,-6,-3031,-5208,-9841,-485,-24,-9840], +[1,3,7668], +[0,7669,7670,7671,6], +[0,-304,-121,-1866,-1521,-90,-1495], +[0,-8,-9,-6,-594,-1,-7,-14,-152,-38,-17,-420,-348,-4,-26,-529,-157,-35,-50,-86,-1181,-144,-11,-277,-18,-696,-92,-160,-94, +-98,-441,-897,-154,-492,-480,-1598,-9839,-559,-21,-1068,-3350,-170,-136,-9838,-827,-64,-9837,-346,-286,-273,-803,-9836, +-893,-12,-500,-148,-25,-463,-4429,-341,-919,-962,-173,-5575, +-9835,-216,-391,-834], +[0,-6,-516,-108,-1375,-1256,-4428,-4427,-4426,-734,-9834,-2618,-3047,-3489,-1718,-2405], +[1,3,7673], +[0,7674,7675,7676,10], +[0,-460,-3906], +[0,-3,-117,-16,-2540,-59,-315,-9833], +[0,-6,-59,-2550,-866,-270,-107,-507], +[1,3,7678], +[0,7679,7680,7681,5], +[0,-90,-790,-267,-121,-2756,-691], +[0,-50,-11,-161,-1196,-1038,-306,-391,-21,-136,-1440,-1715,-1081,-4425,-950,-155,-122,-317,-47,-94,-86,-98,-1885,-476, +-289,-404,-3118,-26,-9832,-1172,-351,-1,-266,-12,-500,-10,-148,-64,-2645,-9831,-8,-176,-79,-911,-701,-4,-6,-35,-3912, +-9830,-897,-286,-2,-17], +[0,-6338,-476,-6,-129,-127,-108,-102], +[1,3,7683], +[0,7684,7685,7,4], +[0,-2680], +[0,-731,-730,-3746,-2577,-19,-43,-251,-85,-33,-555,-2], +[1,3,7687], +[0,7688,118,7689,8], +[0,-3443,-2509,-5408,-210,-2430], +[0,-106,-603,-165,-126,-303,-1912,-2001,-451,-1655], +[1,3,7691], +[0,7692,14,7693,4], +[0,-3294,-1802,-210], +[0,-106,-603,-165,-126,-303,-1912,-2001,-451,-630,-2429,-349,-1076,-2428,-1958,-720,-511,-128,-1382,-1065,-942,-405,-745, +-1957,-248], +[1,3,7695], +[0,7696,7697,7698,9], +[0,-1354,-299,-422,-287,-2544], +[0,-11,-2033,-1231,-283,-80,-2530,-63,-662,-59,-43,-89,-9829,-1,-84,-10,-115,-67,-398,-4,-14,-2377,-85,-9828,-39,-312, +-284,-17,-92], +[0,-1206,-245,-1921], +[1,3,7700], +[0,0,7701,7702,8], +[0,-85,-470], +[0,-1301,-9827,-126], +[1,3,7704], +[0,0,0,7705,9], +[0,-1301,-2308,-1606,-490,-2120,-1702,-37,-431,-308,-4424,-3128,-785,-3508], +[0,68,15,16,5], +[1,3,7708], +[0,7709,7710,7711,5], +[0,-2611,-1168,-130,-3026,-44], +[0,-11,-427,-21,-9826,-458,-69,-5,-19,-1,-4430,-9825,-28,-18,-3,-4,-4873,-2], +[0,-360,-4984,-9824,-3226,-389,-3227,-723,-9823], +[0,67,15,16,8], +[1,3,7714], +[0,7715,125,7716,4], +[0,-128], +[0,-407,-779,-1690,-1973,-9822], +[1,3,7718], +[0,7719,0,7720,4], +[0,-90,-9821,-1856,-1006,-1495,-3568], +[0,-6,-9820,-127,-9819,-1094,-939,-3025], +[1,3,7722], +[0,124,27,7723,8], +[0,-405,-9818], +[1,3,7725], +[0,7726,0,7727,6], +[0,-9817,-9816,-9815,-9814,-9813], +[0,-690], +[1,3,7729], +[0,7730,7731,150,10], +[0,-1092,-6005,-228,-2691,-440,-747,-1505,-4002,-267,-2203,-121,-6002,-6001,-6004,-6000,-1018,-6003,-697,-3763,-2767, +-9812], +[0,-694,-195,-8,-1317,-9,-6,-44,-445,-1,-7,-159,-502,-101,-807,-272,-57,-33,-5993,-17,-4,-35,-144,-321,-2,-109,-29,-2689, +-5,-5994,-92,-47,-413,-441,-154,-1279,-2131,-3762,-963,-5995,-517,-1772,-1264,-2686,-1439,-5998,-87,-972,-888,-2687, +-1186,-170,-5996,-535,-64,-346,-10,-5997,-176,-1780,-2688,-19,-190,-404, +-2690,-1853,-22,-4423], +[1,3,7733], +[0,7734,7735,7736,4], +[0,-9811,-9810], +[0,-6,-17,-35,-2,-47,-87,-3758,-9809], +[0,-6337,-681,-99,-545,-42,-9808,-1867,-9807], +[1,3,7738], +[0,0,7739,7740,5], +[0,-11,-5,-22,-19,-26,-5834,-1,-1336,-251,-10,-64,-190,-28,-4422,-4,-7,-489,-171,-2,-30], +[0,-322,-3690,-1255,-9806,-727,-529,-1910,-3035,-4421,-1329,-9805], +[1,3,7742], +[0,7743,7744,7745,5], +[0,-9804,-9803], +[0,-9802,-9801,-4420,-9,-18,-65,-4,-104,-30,-34], +[0,-1329,-322,-4682,-9800], +[1,3,7747], +[0,7748,7749,7750,5], +[0,-23,-439,-6473,-704,-1836,-121,-90,-1006], +[0,-156,-8,-9,-6,-322,-1,-7,-152,-17,-420,-4,-26,-529,-35,-50,-830,-321,-11,-9799,-18,-898,-92,-94,-98,-9798,-21,-136, +-1888,-827,-64,-3529,-286,-10,-4420,-9797,-500,-148,-1336,-520,-190,-673,-2307,-173,-216,-971], +[0,-6,-516,-1329,-322,-898,-6336,-546,-1923], +[1,3,7752], +[0,7753,7754,7755,6], +[0,-6493], +[0,-169,-1351,-3054,-328,-13,-152,-1,-266,-10,-148,-64,-419,-9,-3,-15,-322,-7,-14,-273,-463,-341,-803,-27], +[0,-322,-738,-6335,-332], +[1,3,7757], +[0,7758,7759,7760,10], +[0,-9796], +[0,-11,-173,-480,-21], +[0,-45,-322,-332,-9795,-9794,-9793], +[1,3,7762], +[0,0,7763,7764,5], +[0,-22,-19,-26,-1,-12,-4,-322,-7,-171,-2,-30], +[0,-322,-4419,-332,-9792,-1329], +[1,3,7766], +[0,0,7767,7768,4], +[0,-109,-69,-5,-13,-151,-9791,-32,-9790,-9789,-364,-314,-9788,-6437,-3,-2], +[0,-1923,-2319,-45,-9787], +[1,3,7770], +[0,0,7771,7772,8], +[0,-152,-54,-821,-66,-2558,-1498,-416], +[0,-948,-1075,-45,-455,-114,-589], +[1,3,7774], +[0,0,0,7775,4], +[0,-9786,-1368,-114,-60], +[1,3,7777], +[0,7778,0,7779,6], +[0,-246,-2187,-750,-133], +[0,-1907,-360,-31,-165,-287,-374,-851,-429,-389,-934,-133], +[1,3,7781], +[0,7782,7783,7784,5], +[0,-246,-1377,-3717,-1472,-133,-340], +[0,-5,-1612,-43,-4418,-4,-374,-147,-260,-233,-2,-34], +[0,-133,-374,-931,-107,-3099,-1371,-31], +[1,3,7786], +[0,7787,7788,7789,4], +[0,-246,-1377,-1472,-9785,-1111,-340], +[0,-5,-1612,-43,-4,-374,-147,-260,-233,-2,-34], +[0,-133,-374,-931,-107,-428,-31,-100,-9784,-1371,-195], +[1,3,7791], +[0,7792,7793,7794,11], +[0,-246,-9783,-908,-2616,-3640,-133,-1078], +[0,-2104,-5,-47,-43,-1,-3024,-148,-64,-1611,-4,-147,-2337,-3023,-2], +[0,-428,-31,-100,-2106,-374,-931,-133], +[1,3,7796], +[0,7797,0,7798,5], +[0,-246,-1281,-133], +[0,-1907,-360,-31,-165,-107,-374,-931,-389,-934,-133], +[1,3,7800], +[0,7801,7802,7803,8], +[0,-246,-1843,-483], +[0,-5,-43,-4,-750,-147,-601,-260,-804,-233,-2,-133,-340,-34], +[0,-31,-107,-3183,-374,-931,-133], +[1,3,7805], +[0,7806,7807,7808,4], +[0,-246,-486,-3717,-760,-340], +[0,-5,-43,-4,-374,-147,-260,-233,-2,-34], +[0,-3099,-31,-2491,-107,-374,-931,-2797,-133], +[1,3,7810], +[0,7811,0,7812,6], +[0,-246,-1534,-133], +[0,-1907,-360,-665,-31,-107,-374,-931,-851,-429,-389,-934,-133], +[1,3,7814], +[0,7815,7816,7817,5], +[0,-9782,-713,-9781,-1577,-5489,-504,-2510,-2103,-200,-9780,-1319,-344,-4588,-149,-324,-1458,-2424,-16,-311,-284,-2178, +-9779,-518], +[0,-48,-9778,-5,-1,-1626,-55,-1451,-811,-9777,-9776,-4,-147,-9775,-312,-2], +[0,-666,-780,-1677,-9774,-387,-571,-1397,-1606,-2526,-158,-717,-1229,-3235,-373,-2472,-2322,-254,-1218,-589,-663,-16,-107], +[1,3,7819], +[0,7820,7821,7822,4], +[0,-66,-93,-143,-130,-71], +[0,-1,-191,-10,-54,-32,-9773,-7], +[0,-68,-253,-130,-66,-787], +[1,3,7824], +[0,7825,0,7826,4], +[0,-133,-408,-601,-1681], +[0,-1907,-360,-665,-100,-841,-165,-287,-274,-851,-429,-389,-934,-133], +[1,3,7828], +[0,7829,0,7830,11], +[0,-1758,-9772,-274,-9771], +[0,-1386,-37,-100,-841,-274,-133], +[1,3,7832], +[0,7833,7834,7835,10], +[0,-408,-2343,-3094,-601,-1681,-133], +[0,-5,-43,-4418,-4,-274,-147,-260,-394,-2473,-233,-2,-34], +[0,-4747,-9770,-2101,-571,-100,-841,-107,-274,-1906,-5686,-734,-3737,-133], +[1,3,7837], +[0,7838,7839,7840,4], +[0,-408,-6431,-1134,-1534,-133], +[0,-246,-5,-43,-4689,-1281,-4,-147,-864,-521,-1720,-601,-260,-9769,-1719,-233,-2,-483,-34], +[0,-665,-31,-100,-841,-107,-274,-1906,-429,-133], +[1,3,7842], +[0,7843,7844,7845,9], +[0,-483,-133,-408,-4417,-1078,-3022], +[0,-43,-1,-274,-4,-398,-147,-2,-246,-804,-750,-3023,-3024,-2337], +[0,-42,-2587,-9768,-107,-274,-1906,-133], +[1,3,7847], +[0,7848,0,7849,5], +[0,-408,-908,-1928,-133], +[0,-1907,-360,-100,-841,-165,-107,-274,-1906,-389,-934,-133], +[1,3,7851], +[0,7852,7853,7854,9], +[0,-4416,-9767,-521,-9766,-9765,-3200,-3199,-3198,-3197,-3196,-4415,-3195,-4414,-3194,-4413,-4412,-4411,-4410,-4934,-4409, +-3193,-4408,-4407,-4406,-4405,-4404,-4403,-3192,-4402,-9764,-4401,-4400,-4399,-4398,-4397,-4396,-3191,-3190,-3189,-4395, +-3188,-3187,-2086,-4394,-1719,-4393,-9763,-133], +[0,-49,-62,-1,-1551,-1854,-9,-18,-4,-147,-34], +[0,-571,-3442,-274], +[1,3,7856], +[0,7857,7858,7859,4], +[0,-4416,-521,-1720,-3200,-3199,-3198,-3197,-9762,-3196,-9761,-4415,-3195,-4414,-3194,-4413,-4412,-4411,-4935,-4410,-9760, +-9759,-9758,-9757,-9756,-9755,-9754,-9753,-9752,-9751,-4409,-9750,-3193,-9749,-4408,-9748,-4407,-4406,-4405,-4404,-4403, +-3192,-4402,-9747,-9746,-9745,-4401,-4400,-9744,-9743,-4399,-4398,-4397,-9742,-9741,-4396,-3191,-3190,-3189,-4395,-3188, +-3187,-2086,-4394, +-1681,-1719,-4933,-4393,-9740,-394,-133], +[0,-4,-147,-233,-2,-34], +[0,-3442,-274,-9739], +[1,3,7861], +[0,7862,7863,7864,8], +[0,-246,-408,-1134,-133,-483], +[0,-5,-43,-4,-2811,-750,-147,-601,-260,-1681,-233,-2,-34], +[0,-428,-31,-100,-841,-107,-931,-374,-1906,-274,-133], +[1,3,7866], +[0,7867,7868,7869,6], +[0,-1353,-9738], +[0,-240,-110,-1043,-1,-1859,-381,-707,-379,-228,-3,-15,-14,-1117,-341,-226,-801], +[0,-1043,-100,-969,-165,-73,-287,-1119,-844,-2112,-183], +[1,3,7871], +[0,0,125,7872,5], +[0,-32,-1973,-2474,-5977], +[1,3,7874], +[0,7875,7876,7877,4], +[0,-20,-28,-96], +[0,-48,-43,-13,-244,-1,-3], +[0,-1046,-183,-3435,-126], +[1,3,7879], +[0,7880,7881,7882,10], +[0,-464,-2336,-123,-444,-9737,-5524,-9736,-657,-344,-9735,-488,-1106,-9734,-9733,-9732,-9731,-4392,-5049,-1506,-1147], +[0,-15,-39,-78,-9730,-7,-152,-116,-97,-56,-4391,-3292,-59,-1880,-4922,-612,-1112,-910,-645,-3254,-2862], +[0,-105,-631,-132,-202], +[1,3,7884], +[0,7885,7886,7887,4], +[0,-116,-1106,-4390,-4389], +[0,-13,-32,-20,-23,-7,-113,-364,-168,-530,-983,-1008,-2339,-2819], +[0,-743,-105,-401,-172,-113,-2334,-4388,-116], +[1,3,7889], +[0,7890,7891,7892,9], +[0,-4389,-4390,-1106], +[0,-168,-13,-20,-32,-2339,-530,-1008,-364,-23,-2819,-113,-7,-983], +[0,-743,-105,-401,-172,-113,-2334,-4388,-484], +[1,3,7894], +[0,0,7895,7,10], +[0,-33,-2,-474], +[1,3,7897], +[0,0,7898,7899,4], +[0,-2578], +[0,-407,-2389,-9729], +[1,3,7901], +[0,0,7902,7903,5], +[0,-2272,-122,-142,-47,-87,-1744,-22,-4387,-19,-9728,-1,-64,-9727,-79,-23,-1825,-2205,-9726,-4422,-4,-6,-35,-898,-7,-272, +-171,-2,-30], +[0,-6,-322], +[1,3,7905], +[0,0,7906,7907,4], +[0,-94,-618,-1,-199,-378,-78,-139,-212,-400,-2140,-755,-812,-648,-702,-1807,-14,-1297,-2], +[0,-4386,-1933,-3033,-132,-337,-91,-549,-1406], +[1,3,7909], +[0,7910,7911,7912,10], +[0,-9725,-3393,-9724], +[0,-2536,-85,-156,-39,-1557,-1,-72,-7,-16,-4385,-275,-213,-1508,-3275,-187,-239], +[0,-128,-407,-141,-358], +[1,3,7914], +[0,0,14,7915,5], +[0,-407,-128,-248,-358,-1624,-5492,-628], +[1,3,7917], +[0,7918,0,7919,10], +[0,-9723,-472,-754,-38,-130], +[0,-17,-779,-24,-1655,-5579,-128,-195,-77,-3222,-126], +[1,3,7921], +[0,7922,7923,7924,5], +[0,-3021,-2132,-40,-250,-101,-9722,-123], +[0,-50,-11,-781,-216,-622,-306,-1231,-480,-21,-90,-49,-6058,-296,-295,-51,-201,-94,-355,-1188,-168,-13,-9721,-56,-3043, +-207,-5937,-1,-9720,-9719,-10,-214,-265,-9718,-76,-67,-826,-9717,-762,-2887,-150,-41,-9716,-9,-6414,-3947,-1140,-3,-995, +-9715,-15,-120,-9714,-125,-9713], +[0,-547,-1579,-114,-42,-9712,-1090,-9711,-410,-99,-105], +[1,3,7926], +[0,7927,7928,7929,4], +[0,-464,-831,-9710,-261,-698,-1307,-802,-4384,-123,-23,-16,-3877,-4531,-442,-1014,-2595,-2928,-5104,-4392,-9709,-5511, +-9708], +[0,-15,-324,-13,-28,-3,-27,-1,-72,-7,-200,-699,-4,-56,-437,-9707,-3277,-235,-180,-42,-9706,-9705,-181,-12,-25], +[0,-1740,-52,-41,-9704], +[1,3,7931], +[0,7932,83,7,4], +[0,-464,-551,-259,-470], +[1,3,7934], +[0,7935,251,7936,8], +[0,-2407,-891], +[0,-921,-9703,-287,-1912,-3020,-4383,-9702,-9701,-4382,-4844,-37,-2047,-240,-5472,-869,-174,-194,-431,-254,-294], +[1,3,7938], +[0,7939,0,7940,8], +[0,-116], +[0,-386,-9700,-9699,-9698], +[1,3,7942], +[0,0,7943,7,5], +[0,-1619,-66,-39], +[1,3,7945], +[0,7946,7947,7948,5], +[0,-1,-6080], +[0,-5,-421,-3,-15,-33,-2], +[0,-2027,-2026,-307,-672,-358,-388,-75,-9697,-1717,-1619,-407], +[1,3,7950], +[0,0,7951,7952,4], +[0,-3801,-152,-3019,-3018,-3053,-9696,-1139,-9695,-9694,-642,-97,-85,-81], +[0,-406,-1992,-1091,-536,-669,-1222,-772,-1641,-1991,-2486,-1990,-9693,-4381,-3019,-9692,-508,-542,-4380,-9691,-9690, +-4379,-4378,-3018,-9689], +[1,3,7954], +[0,7955,7956,7957,4], +[0,-28,-9688], +[0,-5,-72,-4,-85,-555,-124], +[0,-1410,-4377,-4376,-626,-405,-37,-2484,-772], +[1,3,7959], +[0,7960,7961,7962,4], +[0,-809,-5985,-3477], +[0,-199,-4375,-9687,-9686], +[0,-9685,-4646,-2302,-3128,-1939,-281,-9684,-1200,-6327,-3587,-9683,-9682,-4374,-9681,-224], +[1,3,7964], +[0,202,7965,7966,4], +[0,-3453,-4648,-3452,-5462,-3454,-3455,-48,-1257,-1763,-9680,-3655,-513,-2016,-80,-231,-63,-232,-204,-319,-728,-9679,-69, +-5,-623,-137,-2404,-9678,-208,-9677,-1665,-1184,-1571,-119,-289,-159,-26,-4373,-1553,-1862,-1,-12,-25,-150,-825,-1330, +-9676,-40,-5851,-55,-9,-2642,-18,-2092,-297,-262,-3,-288,-9675,-15,-1241,-164,-323,-1768, +-4,-1122,-523,-899,-416,-14,-894,-16,-395,-891,-130,-146,-1790,-175,-44,-2,-83,-104,-793,-74,-979,-1424,-9674,-518], +[0,-370,-2464,-4372,-339,-1648], +[1,3,7968], +[0,7969,7970,7971,4], +[0,-1097,-892], +[0,-11,-962,-622,-173,-21,-1184,-1,-12,-25,-9,-18,-3,-4,-14,-984,-1117,-130,-146], +[0,-716,-292,-430,-339], +[1,3,7973], +[0,7974,7975,7,11], +[0,-1184,-892], +[0,-1,-3,-14], +[1,3,7977], +[0,7978,7979,7980,5], +[0,-9673,-892], +[0,-2016,-1,-350,-3,-15,-7,-14,-9672,-3017], +[0,-14,-716,-45,-339,-370,-968,-9671,-1989], +[1,3,7982], +[0,7983,7984,7,4], +[0,-824,-2642,-297,-128,-892], +[0,-11,-21,-178,-208,-1,-10,-9,-18,-2092,-3,-4,-5831,-14,-273,-1117,-341,-395,-130,-146,-2], +[1,3,7986], +[0,7987,7988,7989,4], +[0,-297], +[0,-538,-1625,-9670,-329,-5,-47,-43,-14,-2], +[0,-716,-2,-3729,-9669], +[1,3,7991], +[0,7992,7993,7,11], +[0,-892], +[0,-1,-10,-9,-18,-3,-4,-14,-984,-341,-146], +[1,3,7995], +[0,7996,7997,7998,5], +[0,-9668,-1245,-23,-297,-236,-9667,-9666,-9665], +[0,-11,-21,-178,-203,-80,-63,-2677,-22,-19,-477,-278,-1,-191,-10,-264,-40,-4565,-32,-9664,-3975,-199,-378,-4,-7,-14,-4371, +-9663,-156,-2], +[0,-14,-716], +[1,3,8000], +[0,8001,8002,252,6], +[0,-9662,-4370,-1875,-4369], +[0,-4869,-36,-3,-14,-273,-1299,-801], +[1,3,8004], +[0,8005,8006,252,6], +[0,-208,-4370,-824,-297,-4369,-892], +[0,-169,-268,-59,-8,-72,-3,-7,-14,-273,-341], +[1,3,8008], +[0,8009,8010,253,5], +[0,-1098,-1571,-5830,-128,-892], +[0,-11,-21,-178,-1554,-1,-3,-14,-273,-463,-1117,-5829,-2], +[1,3,8012], +[0,8013,8014,253,9], +[0,-297,-892], +[0,-1,-10,-9,-18,-2092,-3,-4,-14,-984,-395,-130,-2], +[1,3,8016], +[0,8017,8018,8019,10], +[0,-728,-5395], +[0,-319,-5,-22,-19,-1,-12,-25,-8,-4,-7,-14,-57,-2], +[0,-14,-716,-2002,-130,-9661], +[1,3,8021], +[0,8022,8023,8024,6], +[0,-538,-1321,-1114,-175], +[0,-11,-8,-4,-14], +[0,-14,-716,-175,-227], +[1,3,8026], +[0,8027,8028,8029,5], +[0,-128,-892], +[0,-1184,-1,-3,-7,-14,-984,-463,-44,-2], +[0,-716,-2,-430], +[1,3,8031], +[0,8032,8033,8034,4], +[0,-728,-1547,-40,-16,-44], +[0,-1239,-80,-63,-9660,-185,-9659,-29,-142,-5,-3739,-137,-22,-19,-135,-1,-4368,-8,-23,-1811,-7,-14,-9658,-301,-57,-2], +[0,-301,-1297,-716,-2,-430,-14,-158], +[1,3,8036], +[0,8037,8038,8039,6], +[0,-538,-1321,-1114,-112], +[0,-11,-21,-86,-8,-4,-14], +[0,-14,-716,-938,-227], +[1,3,8041], +[0,8042,8043,8044,4], +[0,-149,-323,-130,-96], +[0,-80,-63,-204,-319,-1754,-9657,-9656,-9655,-9654,-9653,-4367,-5,-623,-413,-475,-2240,-2553,-5370,-5366,-2239,-2894,-237, +-65,-1393,-38,-2502,-491,-4,-975,-14,-1246,-77,-44,-2,-104,-30], +[0,-716,-9652,-1080,-4366,-9651,-9650], +[1,3,8046], +[0,8047,8048,8049,5], +[0,-824], +[0,-329,-29,-634,-5,-9,-8,-18,-362,-4,-14,-463,-341,-1297,-395,-57,-196,-2,-3308], +[0,-14,-674], +[1,3,8051], +[0,0,8052,7,5], +[0,-59], +[1,3,8054], +[0,8055,8056,254,10], +[0,-2162,-957,-1569,-1183,-325,-38,-146,-3891,-2361,-829,-689], +[0,-9649,-538,-11,-161,-879,-216,-1038,-3528,-306,-4365,-1195,-3809,-974,-391,-173,-21,-136,-140,-90,-577,-479,-4364, +-4363,-4362,-4361,-3756,-1732,-715,-2275,-4360,-4359,-4358,-4357,-4356,-1240,-357,-252,-3656,-4355,-4354,-9648,-1625, +-729,-3016,-3142,-2360,-1754,-4353,-735,-4352,-3650,-2624,-945,-162,-3015,-4351,-458,-872,-1739,-142,-4350,-5678,-4349, +-623,-4348,-47,-87,-1658,-137,-4347,-3448,-1423,-3014,-3013,-454,-1966,-3552,-208,-9647,-1476,-836,-293,-1577,-3012, +-1965,-834,-3496,-305,-299,-475,-4346,-2764,-58,-4345,-384,-2513,-3494,-1027,-924,-352,-230,-1875,-1774,-2495,-2503,-36, +-2084,-3498,-4344,-422,-349,-709,-28,-1160,-614,-2871,-3495,-759,-1471,-4343,-1840,-1930,-914,-1321,-276,-813,-2432, +-4342,-442,-377,-810,-646,-4341,-1943,-1511,-324,-3500,-1749,-1125,-697,-563,-323,-1671,-1504,-2498,-2195,-2497,-2758, +-805,-1502,-901,-465,-287,-988,-2543,-1497,-692,-342,-462,-16,-802,-3011,-1962,-749,-130,-890,-1920,-2542,-3501,-2666, +-2301,-2544,-138,-2124,-312,-4340,-175,-392,-885,-2541,-3497,-1101,-4339,-132,-3499,-1905,-3145,-17,-205,-258], +[1,3,8058], +[0,0,8059,8060,9], +[0,-2568,-1887,-2567,-2566,-5201,-2565,-2564,-2563,-2562,-1886,-268,-5202,-3328,-3337,-2907,-2253,-5206,-3334,-5203,-5204, +-1556,-2460,-3327,-9646,-5205,-3,-1806], +[0,-5200,-481], +[1,3,8062], +[0,8063,8064,8065,5], +[0,-2355,-164,-38,-599], +[0,-43,-3,-97], +[0,-9645,-24,-9644,-2806,-52,-225,-4727,-4728,-452,-507], +[1,3,8067], +[0,8068,8069,8070,8], +[0,-20,-264,-143], +[0,-32,-3,-82], +[0,-624,-1921,-2590,-32,-6366], +[1,3,8072], +[0,0,8073,8074,5], +[0,-768,-39], +[0,-4988,-60,-1226,-2042,-1418,-2323,-670,-9643], +[1,3,8076], +[0,0,0,8077,4], +[0,-9642,-9641,-9640,-5140,-3010,-3009], +[1,3,8079], +[0,33,8080,8081,9], +[0,-9639,-2943,-252,-957,-109,-142,-69,-5,-1744,-269,-1270,-4338,-22,-19,-620,-13,-9638,-224,-135,-26,-298,-3358,-424,-1, +-4842,-657,-40,-28,-5461,-9,-3573,-18,-23,-88,-3,-288,-65,-5934,-1671,-4,-172,-14,-9637,-9636,-341,-272,-395,-27,-186, +-146,-1790,-33,-196,-1289,-9635,-9634,-9633,-2,-1785,-9632,-17], +[0,-3010,-3009,-9631,-9630,-4337,-9629,-3437,-4336,-846,-2505], +[1,3,8083], +[0,0,31,8084,9], +[0,-299,-9628,-9627,-1376,-488,-667,-9626], +[1,3,8086], +[0,8087,8088,8089,4], +[0,-213,-16,-96], +[0,-239,-766,-279,-1557,-1,-9625,-15,-39], +[0,-717,-4788,-158,-9624,-1218,-1376,-9623], +[1,3,8091], +[0,8092,8093,8094,4], +[0,-4335,-9622,-60,-9621,-20,-58,-9620,-384,-223,-352,-619,-1344,-9619,-351,-41,-920,-4334,-28,-9618,-9617,-4374,-9616, +-9615,-9614,-9613,-9612,-88,-4333,-751,-563,-562,-490,-4332,-9611,-9610,-16,-1793,-396,-9609,-9608,-1484,-980,-9607], +[0,-110,-2246,-1,-421,-40,-9606,-3,-993,-644,-9605,-9604,-9603,-9602,-9601,-9600,-82,-1295,-125,-156], +[0,-1904,-9599,-41,-9598,-4331,-1740,-1087,-808,-800], +[1,3,8096], +[0,8097,8098,8099,5], +[0,-9597], +[0,-39,-768,-9596,-59,-315], +[0,-126,-849,-9595,-941,-509,-482], +[1,3,8101], +[0,8102,8103,8104,8], +[0,-326,-424,-497,-1152,-4330,-38], +[0,-1,-3,-27,-9594], +[0,-31,-73,-5283,-941], +[1,3,8106], +[0,8107,0,8108,5], +[0,-119,-529,-799], +[0,-225,-432,-77,-592,-24], +[1,3,8110], +[0,8111,8112,8113,5], +[0,-1943], +[0,-50,-11,-21,-49,-62,-48,-514,-309,-6518,-26,-425,-144,-151,-237,-829,-1,-12,-583,-10,-145,-181,-115,-25,-150,-277, +-6267,-55,-9,-8,-18,-9593,-262,-1315,-9592,-65,-4,-77,-1457,-16,-134,-154,-2,-83,-17,-92,-170], +[0,-77,-3232,-17,-779], +[0,44,15,16,9], +[1,3,8116], +[0,0,8117,7,8], +[0,-4,-85], +[1,3,8119], +[0,8120,8121,8122,9], +[0,-9591], +[0,-9590,-43,-9589,-1,-166], +[0,-318,-42], +[1,3,8124], +[0,8125,8126,48,4], +[0,-193,-837,-2607,-633], +[0,-151,-8,-9,-1,-237,-55,-17,-4,-50,-48,-86,-2,-11,-5,-18,-65,-49,-115,-514,-134,-21,-145,-181,-10,-583,-150,-12,-25, +-309,-62], +[1,3,8128], +[0,8129,8130,8131,5], +[0,-6,-35,-241], +[0,-2,-5,-47,-87,-160,-38,-557,-1,-3103], +[0,-9588,-9587,-709,-1685,-659,-4329,-1685,-61,-1963,-4328,-358,-4327,-4326,-3617,-4325,-3089,-1080], +[1,3,8133], +[0,8134,0,8135,5], +[0,-6479,-906,-2030], +[0,-9586,-9585,-9584,-6321], +[1,3,8137], +[0,0,0,8138,4], +[0,-9583,-850,-659], +[1,3,8140], +[0,8141,8142,8143,8], +[0,-9582,-3946,-156,-205], +[0,-48,-3544,-1,-12,-265,-115,-2489,-25,-41,-55,-3968,-166,-3,-995,-1514,-4,-1113,-27,-461], +[0,-544,-933,-61,-840,-1367], +[1,3,8145], +[0,8146,8147,8148,5], +[0,-845,-9581,-737,-582,-1058,-9580,-403,-36,-9579,-118,-533,-9578,-498,-9577,-3207,-818,-9576,-468,-228,-2020,-362,-9575, +-4781,-1453,-641,-16,-6033,-96], +[0,-5,-6035,-51,-43,-1877,-298,-4004,-9574,-40,-402,-101,-1140,-5165,-9573,-198,-343,-3008,-4,-459,-27,-9572,-372,-1789], +[0,-9571,-544,-780,-358,-451,-717,-3235,-16,-663], +[1,3,8150], +[0,8151,8152,7,4], +[0,-90,-9570,-9569,-790,-9568,-304,-9567,-23,-468,-121,-439,-2756,-1492], +[0,-9566,-50,-11,-216,-1196,-1038,-1195,-173,-21,-136,-178,-9565,-3719,-9564,-9563,-1439,-47,-22,-19,-1741,-9562,-94,-98, +-9561,-355,-1888,-9560,-834,-4460,-9559,-13,-9558,-832,-26,-502,-36,-1562,-1025,-1629,-445,-1,-266,-12,-2743,-10,-148, +-265,-64,-190,-2232,-348,-32,-2227,-363,-9,-5543,-78,-139,-4391,-612,-189,-418,-526, +-1142,-18,-3,-4,-440,-157,-693,-6,-9557,-9556,-3913,-35,-2191,-2814,-897,-559,-9555,-9554,-9553,-286,-9552,-7,-9551, +-9550,-5289,-27,-186,-321,-1110,-9549,-392,-9548,-71,-2,-70,-17,-520,-92,-1781], +[1,3,8154], +[0,8155,8156,8157,4], +[0,-1,-1861,-84,-4324,-10,-115,-67,-64,-4323], +[0,-1451,-494,-72,-7,-1795,-39], +[0,-2451,-9547,-280,-581,-354,-2450,-2449,-2448,-1048,-1052,-1,-1389,-613,-117,-217,-2447,-1049,-9546,-631,-97,-2446,-225, +-2445,-2444,-1390], +[1,3,8159], +[0,0,8160,7,5], +[0,-731,-730,-110,-85], +[1,3,8162], +[0,8163,191,8164,4], +[0,-36,-1339,-501,-922,-709,-652,-344,-567,-992,-1121,-1294], +[0,-856,-126,-209], +[1,3,8166], +[0,8167,8168,8169,5], +[0,-9545,-5972,-9544,-3007,-9543,-9542,-9541,-9540,-6400,-2852,-88,-4967,-9539,-9538,-9537,-464,-9536,-9535,-9534], +[0,-3755,-3754,-9533,-5,-60,-9532,-56,-9531,-250,-9530,-3257,-4,-9529,-9528,-9527,-9526,-9525,-2], +[0,-1925,-1234,-1601,-9524,-2024,-9523,-4653,-5552,-9522,-52,-9521,-9520,-9519,-1094,-4710], +[1,3,8171], +[0,0,8172,8173,11], +[0,-9518,-60,-110,-1,-1517,-85], +[0,-6320,-3122,-9517,-4622], +[1,3,8175], +[0,8176,8177,8178,5], +[0,-9516,-123,-36,-9515,-23,-236,-16,-437,-1155,-162,-9514,-9513,-907,-3521,-9512,-3125], +[0,-605,-15,-13,-208,-658,-6226,-9,-3,-564,-27,-1,-4322,-1818,-7,-238,-89,-4321,-9511,-797,-2354,-2353,-9510,-660,-26, +-229,-9509,-2198,-9508,-3021,-1851,-186,-2,-109,-5,-823,-18,-69,-269,-2321,-713,-142,-9507,-9506,-9505,-49,-244,-9504, +-525,-120,-3400,-146,-181,-265,-9503,-19,-9502,-937,-22,-9501,-9500], +[0,-566,-4321,-1267,-1066,-842,-605,-1819,-9499,-4322,-1932,-2353,-2347,-9498,-808,-335,-9497,-386,-718], +[1,3,8180], +[0,0,8181,8182,4], +[0,-110], +[0,-851,-2311,-45,-270,-106], +[1,3,8184], +[0,8185,37,8186,6], +[0,-36,-9496,-9495,-9494,-9493,-9492,-9491,-9490,-9489,-9488,-9487,-9486,-9485,-9484], +[0,-9483,-9482,-9481,-9480,-4320,-3078,-6415,-9479,-9478,-9477,-4831,-9476,-9475,-2359,-2804,-9474,-9473,-245,-431,-9472], +[1,3,8188], +[0,8189,8190,8191,4], +[0,-193,-836,-1348,-20,-4014,-384,-9471,-9470,-1225,-2521,-4319], +[0,-402,-153,-171,-9,-1,-30,-4,-2,-18,-366,-735,-9469,-103,-1903], +[0,-2175,-801,-1925,-419], +[1,3,8193], +[0,8194,8195,8196,6], +[0,-922,-709,-567,-751,-488], +[0,-1,-84,-10,-214,-76,-67,-131,-3,-15,-125,-9468], +[0,-41,-3006,-332], +[1,3,8198], +[0,8199,8200,7,11], +[0,-1191,-1403,-36,-501,-652,-344,-751], +[0,-838,-1,-214,-3,-15,-125], +[1,3,8202], +[0,8203,81,7,5], +[0,-1339,-501,-751,-802], +[1,3,8205], +[0,8206,8207,8208,4], +[0,-9467,-261,-93], +[0,-49,-62,-9466,-9465,-1033,-13,-244,-503,-1,-12,-40,-9,-18,-263,-1675,-3,-188,-15,-4,-180,-1902,-27,-186,-312], +[0,-1902,-9464,-2045,-1227,-9463,-2037,-9462,-1070,-878,-53,-9461], +[1,3,8210], +[0,8211,8212,8213,5], +[0,-9460,-4318,-9459,-9458,-1268,-4317,-4316,-4315,-4642,-4314,-5626,-4313,-4312,-9457,-2336,-476,-5842,-9456,-3562,-9455, +-149,-3415,-205], +[0,-9454,-2668,-9453,-29,-5,-680,-454,-22,-19,-4312,-3562,-89,-4311,-1,-12,-2442,-251,-10,-25,-9,-8,-9452,-9451,-9450, +-9449,-650,-3930,-4,-5625,-134,-57,-33,-371,-2,-123], +[0,-3835,-1227,-61,-8,-1902,-1729,-30,-2045,-5603,-3547,-3546,-9448], +[1,3,8215], +[0,8216,0,7,4], +[0,-4693,-2028], +[1,3,8218], +[0,0,8219,8220,11], +[0,-94,-268,-447,-13,-1,-420,-9447,-9,-18,-3,-4], +[0,-1492,-5117,-1664,-4741,-1402,-9446], +[1,3,8222], +[0,8223,8224,8225,4], +[0,-16,-9445,-1960], +[0,-5077,-81,-9444,-1290,-610,-9443,-1165,-9442,-320,-906,-9441,-815,-9440,-9439,-9438,-9437,-9436], +[0,-1042,-579,-2610,-2609,-4884,-1208,-256,-5082,-9435,-281,-1933,-9434,-2501,-4730,-9433,-9432], +[1,3,8227], +[0,0,8228,8229,5], +[0,-239,-279,-510,-1,-1166,-213,-1322,-275,-15,-187,-39], +[0,-308,-165,-4310,-254], +[1,3,8231], +[0,8232,8233,8234,4], +[0,-118,-229], +[0,-51,-20,-474,-1,-191,-10,-101,-15,-4309,-4308,-395,-9431], +[0,-272,-1060,-1918,-254,-9430,-1379,-2215,-2308], +[1,3,8236], +[0,8237,8238,8239,8], +[0,-646], +[0,-13,-54,-3,-2237,-167,-4737,-1487,-3981,-2300,-4997,-1012,-1010,-345,-656,-177,-347,-673], +[0,-9429,-2299,-2491,-123,-9428,-9427,-6156,-6319,-9426], +[1,3,8241], +[0,8242,8243,8244,4], +[0,-9425,-9424,-9423,-9422,-9421], +[0,-116,-1,-9420,-3,-4,-14,-341,-196,-2], +[0,-75,-591,-293,-82], +[1,3,8246], +[0,75,8247,8248,4], +[0,-54,-243,-656,-177,-347,-1163,-1540,-9419,-531,-1539,-79,-345,-1506,-9418,-16,-9417,-146], +[0,-100,-1413], +[1,3,8250], +[0,8251,8252,8253,8], +[0,-88,-272], +[0,-182,-268,-447,-1,-191,-2442,-10,-101,-3,-15,-7,-4309,-9416,-4308,-82], +[0,-272,-254,-1918,-1060,-5449,-1045,-37,-2119], +[1,3,8255], +[0,0,8256,8257,9], +[0,-945,-5,-4876,-2577,-43,-4,-85,-33,-124,-2], +[0,-2596,-921], +[1,3,8259], +[0,8260,8261,8262,5], +[0,-6528], +[0,-1160,-523,-14,-984,-112], +[0,-485,-9415,-3106,-327], +[1,3,8264], +[0,8265,8266,8267,8], +[0,-9414,-9413,-36], +[0,-9412,-9411,-162,-29,-5,-89,-4576,-8,-33,-2], +[0,-387,-9410,-4489], +[1,3,8269], +[0,0,8270,8271,5], +[0,-81,-8,-9,-1306,-1,-7,-14,-4,-26,-86,-11,-29,-289,-4307,-441,-90,-366,-21,-1859,-9409,-161,-203,-226,-232,-4306,-80, +-63,-1627,-9408,-1889,-1195], +[0,-5770,-2519,-2318,-1041,-52,-6,-192,-74,-434,-2024,-53], +[1,3,8273], +[0,8274,8275,8276,4], +[0,-3684,-662,-9407,-207,-461], +[0,-11,-5807,-5806,-5805,-3683,-9406,-4614,-9405,-355,-36,-1342,-89,-9404,-3098,-1328,-18,-3,-15,-4,-157,-7,-16,-272], +[0,-27,-75,-61,-388,-1384,-1729,-1619,-588,-9403,-307,-743,-293], +[1,3,8278], +[0,0,8279,8280,9], +[0,-48,-43,-13,-1,-3,-4,-27], +[0,-13,-2532,-91,-4305,-9402,-27,-61,-5375,-5374,-1405], +[1,3,8282], +[0,8283,8284,8285,5], +[0,-5927,-1092,-60,-1347,-9401,-9400,-72,-16,-1652,-41,-101,-113,-1862,-58,-93,-1146,-250,-168,-384,-652,-379,-9399,-9398, +-197,-9397], +[0,-3,-116,-59,-9396], +[0,-2036,-451,-2472,-1915,-370,-604,-209], +[1,3,8287], +[0,8288,0,7,6], +[0,-9395,-2083,-4304], +[1,3,8290], +[0,8291,0,8292,11], +[0,-9394,-2212,-9393,-164,-311], +[0,-321,-37,-381,-542,-9392,-9391], +[1,3,8294], +[0,89,56,8295,5], +[0,-9390,-9389,-9388,-46,-53,-2477], +[1,3,8297], +[0,8298,8299,8300,10], +[0,-9387,-9386], +[0,-17,-211,-2,-92,-9385,-520], +[0,-46,-9384,-99,-1902,-386], +[1,3,8302], +[0,0,14,8303,5], +[0,-248,-9383,-285,-4591,-722,-452], +[1,3,8305], +[0,8306,8307,8308,4], +[0,-767,-9382], +[0,-51,-20,-9381,-138,-34], +[0,-2643,-163,-240,-548,-224,-671,-135,-174,-194,-37,-431,-482,-584,-726,-1232,-254,-638,-263,-367,-294,-183], +[1,3,8310], +[0,8311,86,8312,4], +[0,-4968,-4015,-3589,-9380,-9379,-3130,-9378,-752,-1506,-9377,-899,-361,-9376,-597,-96], +[0,-9375,-685,-3208,-158,-757], +[1,3,8314], +[0,0,8315,8316,5], +[0,-3087,-296,-295,-877,-43,-3,-120,-97], +[0,-747,-2797,-163,-1786,-3225,-455,-195], +[1,3,8318], +[0,0,8319,8320,4], +[0,-56,-9374,-3,-15], +[0,-747,-2797,-195,-9373], +[0,44,15,16,11], +[1,3,8323], +[0,8324,0,8325,4], +[0,-20,-528,-88,-197,-9372,-138,-885], +[0,-637,-9371,-9370,-97,-9369,-4819,-9368,-9367,-9366,-9365], +[1,3,8327], +[0,8328,8329,8330,5], +[0,-201,-9364,-36,-1543,-1014,-498,-23,-1116,-1293,-2529,-9363], +[0,-48,-162,-3771,-142,-5,-4303,-3470,-168,-135,-207,-1025,-1558,-1,-41,-1016,-28,-3,-15,-4,-197,-16,-396,-82,-27,-146, +-3127,-124,-2,-83], +[0,-3898], +[1,3,8332], +[0,8333,0,8334,4], +[0,-1191,-9362,-383,-36,-5705,-9361,-3720], +[0,-771,-52,-881,-2408,-422,-3247,-9360], +[1,3,8336], +[0,8337,0,8338,4], +[0,-9359,-36,-5704,-3720], +[0,-771,-52,-881,-2408,-422,-337], +[1,3,8340], +[0,8341,8342,8343,4], +[0,-36,-4302,-3110,-528,-3879], +[0,-59,-2237,-1,-421,-32,-820,-314,-1007,-313,-653,-78,-910,-1527,-139,-189,-3,-180,-1304,-396,-4301,-1784,-883], +[0,-2023,-881], +[1,3,8345], +[0,0,8346,7,8], +[0,-43,-1025,-1,-4,-12], +[1,3,8348], +[0,0,8349,7,6], +[0,-2300,-1025,-17], +[1,3,8351], +[0,8352,8353,48,6], +[0,-470,-799], +[0,-50,-11,-21,-49,-62,-944,-86,-26,-425,-151,-237,-1,-12,-10,-9,-8,-18,-262,-65,-4,-134,-17], +[1,3,8355], +[0,8356,8357,7,4], +[0,-2514,-130], +[0,-59,-316,-419,-3,-17], +[1,3,8359], +[0,0,92,8360,5], +[0,-255,-31,-3392,-4300,-2493,-165,-429], +[1,3,8362], +[0,8363,8364,8365,8], +[0,-9358,-9357,-4299,-3237,-4298,-238,-316,-58,-229,-325,-380,-4297,-54,-243,-656,-616,-532,-2230,-347,-302,-2881,-250, +-379,-497,-1001,-101,-4296,-276,-23,-228,-9356,-38,-77,-6303,-156], +[0,-50,-11,-21,-178,-5850,-9355,-13,-244,-2708,-1,-265,-76,-131,-3,-288,-4,-1494,-7,-27,-186], +[0,-380,-390,-42,-9354,-9353,-99,-862,-114], +[1,3,8367], +[0,8368,8369,7,8], +[0,-460], +[0,-423,-2438,-2437,-3290,-9352], +[1,3,8371], +[0,0,8372,7,5], +[0,-9351,-9350,-3053,-15,-235,-97,-39], +[0,0,83,7,5], +[1,3,8375], +[0,0,8376,7,4], +[0,-32,-3,-1,-110,-364,-530,-820,-314,-653,-9349,-313], +[1,3,8378], +[0,8379,8380,8381,5], +[0,-116,-224,-135,-2243,-40,-250,-4295,-679,-23,-6375,-5297,-9348,-4963,-71,-70,-554,-9347,-9346], +[0,-13,-56,-66,-3,-611,-9345,-9344], +[0,-9343,-1614,-9342,-24,-432,-222,-77,-6312,-9341,-624], +[1,3,8383], +[0,8384,8385,8386,4], +[0,-711,-906,-3477,-312], +[0,-1,-3,-4375], +[0,-1932,-1267,-797,-386], +[1,3,8388], +[0,8389,8390,8391,5], +[0,-9340,-9339], +[0,-1,-5509], +[0,-2417,-2793,-4948,-5284,-254,-1045,-2415,-337], +[1,3,8393], +[0,8394,8395,8396,10], +[0,-1617], +[0,-731,-730,-110], +[0,-632,-111,-667,-9338,-3096,-4684,-9337,-9336,-9335,-9334,-9333,-31], +[1,3,8398], +[0,8399,91,8400,9], +[0,-259], +[0,-6311,-106,-259,-4872,-4803,-718,-2029,-3005,-9332,-3777,-386,-42,-46,-1216,-376,-1545,-566,-797,-506,-9331,-842,-106, +-774,-9330], +[1,3,8402], +[0,0,8403,7,11], +[0,-21,-86,-8,-9329], +[1,3,8405], +[0,8406,8407,8408,6], +[0,-1,-84,-4324,-10,-115,-67,-64,-4323,-9328], +[0,-230,-1535,-88,-4294,-1795,-5699,-39], +[0,-2451,-280,-581,-354,-2450,-2449,-2448,-1048,-1052,-1,-1389,-613,-117,-217,-2447,-1049,-631,-97,-2446,-225,-2445,-2444, +-1390], +[1,3,8410], +[0,8411,8412,8413,5], +[0,-20,-575,-9327,-1345,-3118,-1341,-2422,-9326,-533,-349,-4473,-16,-9325,-96], +[0,-13,-1,-84,-10,-76,-67,-3,-568,-1515,-15,-272,-4293], +[0,-575,-9324,-780,-2039,-5600,-663,-192,-97], +[1,3,8415], +[0,8416,8417,8418,4], +[0,-836,-116,-9323,-36,-118,-9322,-5852,-2164], +[0,-5,-9321,-13,-26,-1342,-9320,-9319,-9318,-402,-3947,-2686,-88,-3,-9317,-2352,-120,-9316,-27,-186,-5109,-97], +[0,-2526,-852,-209,-3063,-75,-202,-785], +[1,3,8420], +[0,8421,8422,8423,5], +[0,-9315,-4685,-6462,-4292], +[0,-597,-699,-247], +[0,-3896,-9314,-9313,-9312,-771], +[1,3,8425], +[0,0,8426,8427,5], +[0,-2241,-1,-84,-10,-214,-76,-67,-131,-3,-15,-1497,-3219], +[0,-105,-2374,-354], +[1,3,8429], +[0,8430,8431,8432,4], +[0,-205,-149,-1300,-16,-89,-3485,-2298,-2640,-4291,-1909,-155,-317], +[0,-351,-258,-13,-207,-28,-527,-748,-118,-1142,-262,-2716,-6,-285,-1961,-206,-646,-2834,-9311,-89,-9310,-1849,-101,-1749, +-128,-2778,-2297,-1505,-4,-5804,-454,-446,-58,-6271,-323,-9309,-35,-2705,-210,-1905,-880,-2657,-515,-9308,-164,-130,-138, +-2,-11,-1201,-5,-230,-1868,-9307,-479,-2557,-5803,-3681,-427,-9306,-137,-4290,-1341,-4289, +-1414,-4288,-2537,-2693,-1088,-411,-788,-3004,-3457,-3003,-2125,-9305,-3026,-795,-577,-1894,-1220,-9304,-9303,-9302, +-1914,-879,-9301,-623,-9300,-559,-9299,-832,-2296,-945,-4287,-3718,-9298,-9297,-9296,-9295,-9294,-9293,-3591,-599,-9292, +-4286,-9291,-9290,-330,-4285,-3002,-2057,-9289,-2692,-122,-9288,-9287,-5955,-3307,-2768,-9286,-1462,-9285,-9284,-9283, +-5735,-9282,-9281, +-9280], +[0,-746,-129,-127,-9279,-4284,-6,-241,-1608,-234,-3831,-74,-192,-220,-3827,-1713], +[1,3,8434], +[0,8435,8436,8437,8], +[0,-2870], +[0,-9278,-1715,-2644,-1081,-4283,-9277,-9276,-3001,-950,-2093,-4282,-155,-122,-29,-1712,-47,-1,-9275,-8,-1710,-176,-4, +-121,-157,-6,-35,-77,-462,-746,-57,-2,-792,-259], +[0,-2091,-746,-9274,-127,-42,-53,-9273,-4281,-9272,-9271,-9270,-993], +[1,3,8439], +[0,8440,0,147,5], +[0,-2943,-11,-21,-6054,-6053,-20,-238,-119,-135,-58,-403,-1746,-264,-9269,-40,-28,-250,-705,-1156,-9268,-276,-23,-1522, +-6052,-1092,-228,-88,-2141,-1458,-2317,-5015,-16,-2180,-796,-123], +[1,3,8442], +[0,68,15,16,11], +[1,3,8444], +[0,212,8445,8446,5], +[0,-9267,-9266,-3,-82], +[0,-9265,-245], +[1,3,8448], +[0,0,8449,8450,4], +[0,-63,-69,-5,-2242,-1171,-3,-1646,-4,-14,-1796,-1299,-82,-33,-153,-2], +[0,-245,-507,-831,-406,-46,-53], +[1,3,8452], +[0,8453,56,8454,5], +[0,-2476,-713,-5317,-6466,-1834,-9264,-3574], +[0,-9263,-9262,-46], +[1,3,8456], +[0,0,0,8457,9], +[0,-6310,-550,-163,-588,-956], +[1,3,8459], +[0,0,8460,8461,4], +[0,-32,-3980,-364,-314,-9261,-653,-4613,-112], +[0,-163,-5451,-9260,-9259,-9258,-9257,-831,-31,-457,-165,-31,-3174,-1061,-1917,-777,-1416,-482,-3178], +[1,3,8463], +[0,8464,8465,8466,4], +[0,-1278,-9256,-705,-468,-9255,-9254,-9253], +[0,-9252,-9251,-2306], +[0,-354,-943,-1624,-31,-9250,-9249,-626,-4970,-9248,-163,-1061,-3174,-1054,-183,-9247], +[1,3,8468], +[0,8469,14,8470,4], +[0,-9246,-138], +[0,-163,-1055,-455,-2010,-3000,-2008,-4280,-4279,-4278,-3451,-9245,-2999,-240,-482,-2048,-37,-294,-174,-194,-2998,-2997, +-2996,-2995,-4277,-4276], +[1,3,8472], +[0,8473,8474,8475,5], +[0,-6230,-3858], +[0,-5,-43,-3859,-4,-147,-260,-233,-2,-34], +[0,-429,-777,-482,-31,-1055,-1243,-1051,-457], +[1,3,8477], +[0,8478,238,8479,4], +[0,-1190], +[0,-1061,-1917,-626,-240,-548,-224,-671,-135,-174,-194,-163,-431,-482,-584,-726,-1232,-254,-638,-263,-367,-294,-183], +[1,3,8481], +[0,0,14,8482,4], +[0,-1061,-4983,-2535,-2499,-4982,-455,-1786,-3225,-626,-775,-1917,-183,-163], +[1,3,8484], +[0,0,8485,8486,4], +[0,-51,-1520,-81,-34], +[0,-106,-1061,-968,-626,-775,-1917,-1656,-165,-353,-1085,-2512,-132,-1217,-782,-5169], +[1,3,8488], +[0,0,8489,8490,4], +[0,-15,-13,-198,-3,-1,-33,-4,-188,-2,-109,-5,-69,-9244,-244,-10,-995,-12,-25,-732,-19,-3697,-22], +[0,-3893,-9243,-9242,-99], +[1,3,8492], +[0,8493,8494,8495,5], +[0,-60,-36,-9241,-9240,-6380,-9239,-466,-565,-603,-4275,-9238,-9237,-9236,-9235,-3051,-9234,-9233,-4274,-219,-1146,-2252, +-4273,-1175,-3967,-528,-222,-23,-6396,-4734,-2342,-4292,-236,-197,-3163,-797,-9232,-4735,-9231,-9230,-2994,-4555,-205], +[0,-1,-613,-85], +[0,-1441,-9229,-4568,-9228,-4733,-9227,-5627,-1609,-2582,-666,-1084,-1936,-353,-685,-1621,-2418,-9226,-3988,-387,-4672, +-9225,-367,-4732,-1202,-9224,-935,-4272,-1600,-9223,-158,-4271,-9222,-9221,-542,-9220,-287,-3487,-3083,-1915,-4270,-456, +-1234,-9219,-9218,-940,-4275,-9217,-9216,-3051,-4274,-6309,-9215,-2788,-5352,-588,-9214], +[1,3,8497], +[0,8498,8499,8500,4], +[0,-9213,-9212,-9211,-9210,-20,-1568,-5598,-58,-1153,-276,-9209,-4,-1107], +[0,-2551,-6205,-366,-49,-62,-9208,-9207,-2677,-9206,-109,-5,-2628,-680,-19,-877,-9205,-1274,-208,-1280,-13,-1,-265,-64, +-824,-40,-9204,-9,-9203,-815,-9202,-222,-18,-3636,-841,-2587,-3,-2411,-65,-1241,-77,-16,-689,-9201,-393,-2,-340,-123, +-259], +[0,-9200,-225,-9199,-24,-435,-2493,-77,-432,-5642,-9198,-6,-2741,-2639], +[1,3,8502], +[0,0,8503,48,4], +[0,-8,-77,-9,-79,-262,-425,-1,-16,-237,-17,-1338,-4,-26,-50,-86,-144,-11,-277,-18,-65,-462,-92,-49,-134,-21,-170,-10,-12, +-176,-62,-944], +[1,3,8505], +[0,8506,8507,8508,5], +[0,-3892], +[0,-49,-62,-487,-283,-48,-80,-63,-204,-29,-22,-19,-1,-25,-859,-55,-9,-8,-18,-4,-14,-57,-33,-2], +[0,-2183,-24,-225,-45,-406,-3179], +[1,3,8510], +[0,8511,8512,8513,6], +[0,-3955], +[0,-49,-62,-487,-283,-48,-80,-63,-204,-319,-29,-5,-22,-19,-1,-25,-859,-55,-9,-8,-18,-65,-4,-459,-14,-57,-33,-44,-2], +[0,-3892,-1378,-225,-73,-24,-406,-3179], +[1,3,8515], +[0,8516,8517,8518,11], +[0,-2692,-5683,-4269,-9197,-764,-38,-1492,-1742,-44], +[0,-11,-1097,-962,-216,-306,-971,-21,-136,-140,-319,-330,-155,-122,-317,-1279,-29,-9196,-5,-47,-87,-4268,-2151,-1765, +-9195,-86,-278,-3276,-2569,-1745,-8,-176,-3780,-1149,-1001,-4,-121,-6,-35,-4267,-234,-286,-14,-463,-1117,-341,-893,-1298, +-226,-9194,-9193,-2], +[0,-6,-24,-1265,-888,-3734], +[1,3,8520], +[0,8521,8522,8523,11], +[0,-2764], +[0,-50,-11,-306,-974,-2726,-391,-173,-21,-136,-178,-90,-479,-47,-51,-1266,-2376,-472,-1,-12,-9,-754,-4,-441,-6,-35,-120, +-130,-2301,-1742,-9192,-2], +[0,-1266,-2175,-9191,-1265,-24], +[1,3,8525], +[0,8526,22,8527,10], +[0,-305,-560], +[0,-2017,-24,-9190,-9189,-721,-38,-218,-3890], +[1,3,8529], +[0,8530,8531,8532,6], +[0,-1896,-5384,-1895,-4057,-4499,-2940,-4972,-2752,-403,-6500,-1176,-36,-229,-1916,-5197,-2556,-206,-9188,-3959,-469, +-1758,-3318,-1152,-2859,-9187,-467,-362,-1509,-164,-38,-1502,-560,-465,-394,-2770,-9186,-734,-1778], +[0,-366,-4266,-1239,-4265,-4264,-9185,-2586,-162,-9184,-9183,-9182,-9181,-634,-5436,-9180,-5157,-9179,-3229,-110,-473, +-326,-1,-4263,-10,-145,-9,-8,-2295,-1149,-18,-1709,-65,-1241,-3921,-561,-2313,-9178,-901,-4,-147,-887,-2], +[0,-1265,-24,-222,-217,-539,-100,-77,-432,-179,-887], +[1,3,8534], +[0,8535,8536,8537,9], +[0,-2154], +[0,-4265,-4264,-1,-4263,-9,-18,-65,-4,-147,-179], +[0,-179,-9177,-97], +[1,3,8539], +[0,0,8540,8541,5], +[0,-15,-8,-9,-1306,-1025,-1,-152,-124,-4,-9176,-26,-179,-50,-86,-9175,-5761,-2,-11,-781,-18,-701,-178,-49,-120,-21,-9174, +-145,-1170,-10,-295,-2295,-2126,-12,-25,-794,-140,-19,-296,-62,-1020,-22,-6089,-1230,-216,-306], +[0,-2993,-179,-24,-432,-222,-217,-9173,-2127,-1226,-9172,-224,-9171], +[1,3,8543], +[0,8544,8545,8546,4], +[0,-38,-9170], +[0,-1,-9169,-12,-55,-9,-8,-4493,-2295,-1149,-18,-3921,-2313,-9168,-4,-9167,-179], +[0,-2993,-179,-24,-217,-2499], +[1,3,8548], +[0,8549,8550,8551,4], +[0,-1176,-1152,-2859,-2846,-9166,-9165,-560,-465], +[0,-473,-26,-1,-9164,-9,-8,-2295,-18,-417,-38,-2313,-901,-4,-179], +[0,-24,-1946,-217,-539,-432,-179,-2993], +[1,3,8553], +[0,8554,128,8555,6], +[0,-2941,-36,-28,-1116,-130], +[0,-24,-73,-225,-4959,-1833,-1657], +[1,3,8557], +[0,8558,8559,8560,6], +[0,-229,-1509], +[0,-50,-11,-21,-49,-62,-48,-514,-309,-110,-9163,-26,-425,-144,-151,-237,-1,-12,-583,-10,-145,-181,-115,-25,-150,-55,-9,-8, +-18,-262,-3935,-65,-4,-693,-134,-154,-393,-83,-17], +[0,-17,-779,-393], +[1,3,8562], +[0,0,0,8563,11], +[0,-24,-38,-3046,-389,-2006,-73], +[1,3,8565], +[0,8566,8567,8568,5], +[0,-6506,-4262,-36,-3007,-657,-1014,-1131,-261,-464], +[0,-50,-11,-173,-21,-90,-49,-62,-833,-5396,-3088,-168,-59,-619,-26,-1,-1551,-923,-76,-41,-920,-1854,-499,-9,-18,-228,-3, +-1514,-15,-147,-1800,-7,-82,-9162,-9161,-34,-976], +[0,-1609,-1420,-1420,-99,-60,-629,-201,-3613,-337,-9160,-402,-105,-105,-401,-3239,-172,-172,-481,-113,-113,-5011,-4270, +-410,-2186,-9159,-688,-2481,-507,-743,-2170], +[1,3,8570], +[0,8571,8572,7,6], +[0,-4773], +[0,-162,-4635,-5,-110,-3133,-376,-3253,-2,-30], +[1,3,8574], +[0,8575,8576,8577,5], +[0,-1131,-688,-1344], +[0,-15,-198,-3,-27,-1,-82,-41,-180,-168,-619,-49,-10,-191,-62], +[0,-591,-105,-113,-688,-543,-75,-61], +[1,3,8579], +[0,8580,8581,8582,4], +[0,-116,-1131], +[0,-13,-244,-1494,-2172,-168,-619,-41,-3,-82], +[0,-125,-688,-113,-543,-591,-105,-75,-61,-172,-9158], +[1,3,8584], +[0,0,8585,8586,5], +[0,-34,-51,-81,-5], +[0,-224,-671,-135,-174,-194,-37,-240,-548,-431,-726,-1232,-254,-638,-294,-3478,-9157,-9156,-668,-9155,-9154], +[1,3,8588], +[0,8589,8590,8591,6], +[0,-1757,-1763,-5780,-329,-208,-1433,-3299,-304,-2084,-3659,-9153,-2642,-2092,-297,-9152], +[0,-1099,-357,-80,-63,-204,-2677,-3649,-5,-5779,-89,-14,-130,-311,-2,-30], +[0,-220,-4645,-52,-740,-1054], +[1,3,8593], +[0,8594,8595,8596,4], +[0,-1099,-119,-1245,-164,-1707], +[0,-80,-231,-63,-232,-319,-9151,-1571,-14,-895,-870,-220,-2,-9150,-9149,-4650,-4649,-9148,-9147], +[0,-220,-37], +[1,3,8598], +[0,0,8599,8600,4], +[0,-11,-21,-49,-62,-9146,-9145,-729,-5,-9144,-2440,-160,-1678,-316,-404,-1,-222,-38,-9143,-902,-4,-643,-77,-393,-887,-220, +-2,-30], +[0,-220,-2395,-2,-222,-393,-77,-432,-643,-316], +[1,3,8602], +[0,8603,8604,8605,4], +[0,-1773,-28,-598,-60,-3132,-70,-2169,-96,-101,-552,-524,-9142,-1319,-5220,-1247,-9141,-3543], +[0,-34,-8,-222,-77,-806,-393,-991,-145,-181,-2992,-9140], +[0,-741,-961,-256,-579,-1614,-2393,-2385,-114,-24,-77,-222,-393,-1275,-1378,-31,-1203,-4945,-1944,-524,-624], +[1,3,8607], +[0,8608,8609,8610,4], +[0,-58,-4010,-1176,-2749,-1773,-164,-1116], +[0,-48,-1239,-80,-63,-204,-2586,-5389,-29,-5,-4303,-3772,-26,-1,-55,-8,-991,-398,-806,-4,-7,-14,-886,-81,-2], +[0,-598,-256,-580,-227], +[1,3,8612], +[0,8613,8614,8615,4], +[0,-151,-1524,-4261,-1288], +[0,-51,-182,-94,-620,-4574,-1187,-447,-116,-1,-9139,-1133,-72,-27,-17], +[0,-17,-107,-9138,-4261,-1234,-1959], +[1,3,8617], +[0,8618,8619,8620,8], +[0,-208,-326,-28,-276], +[0,-1,-4,-39,-9137], +[0,-545,-9136,-3776,-3285,-42,-3888,-3555,-2039,-114,-547,-5126,-5125,-5124,-681], +[1,3,8622], +[0,8623,8624,8625,4], +[0,-206,-101,-58,-9135,-9134], +[0,-1,-30,-4,-103,-9133], +[0,-545,-390,-9132,-42,-99,-1378,-968], +[1,3,8627], +[0,0,131,8628,4], +[0,-3761,-545,-102,-6306,-41,-42,-390,-9131,-1684,-6307,-1445,-9130,-9129], +[1,3,8630], +[0,8631,8632,8633,4], +[0,-3798], +[0,-1862,-41,-9128,-3,-15,-157], +[0,-545,-41,-102,-106,-42], +[1,3,8635], +[0,8636,8637,8638,6], +[0,-112,-565], +[0,-23,-41,-9127,-3,-421,-9126,-222,-9125,-1883,-9124,-903,-59,-126,-166], +[0,-271,-1054,-31,-4281,-9123,-5441,-41,-3508], +[1,3,8640], +[0,0,0,8641,9], +[0,-6304,-2991,-1198,-414,-282,-95,-1026,-2827,-300,-52,-4260,-1366,-1365,-107,-6,-74,-2294], +[1,3,8643], +[0,8644,8645,8646,4], +[0,-9122,-4259,-9121], +[0,-168,-26,-41,-9120,-8,-700,-7,-2], +[0,-113,-105,-401,-433,-59,-2308,-2018], +[1,3,8648], +[0,0,0,8649,9], +[0,-9119,-9118,-1316,-1600,-1507,-1615,-2304,-722,-9117,-9116,-9115,-4258,-9114,-9113,-9112,-4496,-9111,-2701,-9110,-935, +-1205,-9109,-9108,-9107,-9106,-1080,-9105,-9104,-9103,-9102,-9101,-4257,-9100,-9099,-9098,-1983,-9097,-9096,-1661,-9095, +-9094,-4256,-5473,-9093,-9092,-4829,-4255,-9091,-9090,-9089,-9088,-9087,-9086,-46,-4320,-9085,-9084], +[1,3,8651], +[0,0,8652,7,4], +[0,-149,-495,-3,-72,-7,-14,-175,-116,-188,-9083,-1966,-792,-146,-231,-226,-232,-9082,-63,-9081], +[1,3,8654], +[0,8655,8656,8657,4], +[0,-205,-193,-383,-9080,-9079,-9078,-9077,-23,-700,-9076,-9075,-9074,-9073,-41,-9072,-9071,-9070,-9069,-9068,-1577,-168, +-384,-924,-9067,-2931,-90,-9066], +[0,-1817,-2932,-9065,-9064,-272,-9063,-473,-9062], +[0,-9061,-9060], +[1,3,8659], +[0,0,8660,8661,9], +[0,-2050,-44,-1,-206,-14,-30,-4,-2,-11,-5,-21,-415,-83,-103,-203,-10,-3646,-848,-9059,-319,-63,-2363,-2728], +[0,-557,-1292,-24,-2149,-9058,-9057,-494,-4976,-9056], +[1,3,8663], +[0,0,8664,7,4], +[0,-534,-5,-1452,-297,-799,-9055,-1757], +[1,3,8666], +[0,8667,0,8668,10], +[0,-9054,-9053,-9052,-9051,-9050,-9049,-9048,-9047,-9046,-9045,-9044,-9043,-9042,-9041,-9040,-9039,-9038,-9037,-9036, +-4254], +[0,-293,-85,-75,-61,-52,-37,-9035,-9034], +[1,3,8670], +[0,8671,8672,8673,9], +[0,-20,-1558,-533,-23,-899,-4702,-9033,-71], +[0,-9032], +[0,-39,-85,-3,-1082,-946], +[1,3,8675], +[0,0,8676,7,6], +[0,-8,-1,-55,-4,-48,-86,-11,-115,-514,-21,-145,-10,-583,-150,-12,-25,-309], +[1,3,8678], +[0,8679,8680,8681,9], +[0,-9031,-9030,-9029,-1030,-830,-2546,-9028,-1015,-1846,-28,-9027,-706,-528,-3399,-88,-1820,-1312,-2043,-1508,-609,-128, +-3322], +[0,-239,-1891,-279,-315,-26,-1557,-4253,-510,-1555,-1,-3509,-1322,-101,-9026,-275,-15,-187,-16,-85,-1622], +[0,-85,-75,-9025,-293,-91], +[1,3,8683], +[0,8684,8685,7,5], +[0,-9024,-9023,-1617,-4575,-9022], +[0,-85,-198,-555,-9021,-7,-124,-4,-2324,-5,-1864,-9020], +[1,3,8687], +[0,8688,8689,8690,5], +[0,-1304,-886], +[0,-7,-4252,-97], +[0,-312,-303,-126,-5278,-405,-245], +[1,3,8692], +[0,8693,8694,7,6], +[0,-9019,-2293,-9018], +[0,-4252,-97,-315], +[1,3,8696], +[0,33,8697,8698,6], +[0,-1412,-3467,-29,-5,-22,-19,-56,-89,-1,-84,-10,-76,-67,-8,-4,-57,-2], +[0,-4251,-3788,-4250,-4249,-53,-9017,-46,-4248,-2340,-1418], +[1,3,8700], +[0,0,8701,8702,4], +[0,-1412,-9016,-9015,-257,-3467,-29,-5,-954,-22,-19,-168,-503,-298,-9014,-1,-84,-10,-76,-67,-9,-8,-18,-288,-3348,-4,-125, +-57,-2], +[0,-4251,-3788,-4250,-4249,-46,-4248,-2018,-41], +[1,3,8704], +[0,8705,0,8706,8], +[0,-36,-906,-2030], +[0,-2990,-9013,-9012,-4247,-9011,-711,-9010,-46], +[1,3,8708], +[0,8709,8710,8711,8], +[0,-36,-906], +[0,-48,-232,-162,-5,-1960,-215,-1,-12,-762,-150,-610,-4,-124,-794,-2,-83,-104,-847,-30], +[0,-2990,-4247,-6301,-141,-46], +[1,3,8713], +[0,8714,27,258,5], +[0,-7,-72], +[1,3,8716], +[0,8717,8718,8719,4], +[0,-1003,-2574,-210,-4288], +[0,-5,-51,-493,-414,-81,-34], +[0,-597,-3236,-248,-126,-405,-942,-2003,-4246,-3059,-4245,-850,-4244], +[1,3,8721], +[0,8722,0,8723,9], +[0,-4696,-9009,-9008,-9007,-2989,-9006,-9005,-9004], +[0,-174,-194,-240,-37,-638,-224,-9003,-9002,-225,-336,-9001,-2302,-9000,-2047,-1263,-2011,-5465,-8999,-8998,-8997,-3025, +-281,-579,-1042,-1208], +[1,3,8725], +[0,8726,0,8727,11], +[0,-4243,-2545,-528,-8996,-71,-8995], +[0,-1263,-174,-240,-8994,-8993], +[1,3,8729], +[0,8730,8731,8732,6], +[0,-8992,-208,-58,-146], +[0,-8991,-8990,-1,-5193,-381,-3,-235,-14,-16,-130], +[0,-938,-175,-1288,-112,-227,-776,-45,-338,-1050,-339,-2034,-2988,-430,-1972,-1415,-60,-629], +[1,3,8734], +[0,8735,8736,8737,5], +[0,-175,-1321,-639,-1114,-1099], +[0,-151,-8,-9,-262,-425,-1,-237,-89,-17,-4,-252,-26,-112,-50,-48,-2,-11,-5,-277,-18,-65,-92,-4608,-49,-115,-514,-8989, +-134,-21,-83,-145,-535,-181,-10,-583,-150,-12,-25,-309,-3441,-62], +[0,-938,-112,-1288,-175,-17,-2496,-1224,-541,-2378,-1616,-1224,-776,-227,-580,-1648], +[1,3,8739], +[0,8740,8741,8742,4], +[0,-8988,-8987,-8986,-8985,-8984,-2899,-2898,-2358,-229,-4724,-1984], +[0,-815,-188], +[0,-1488,-75,-456,-37,-388,-61,-589,-39,-85,-51,-3], +[1,3,8744], +[0,8745,8746,8747,11], +[0,-116,-20,-28,-23,-228,-72,-8983,-8982], +[0,-283,-48,-5736,-3564,-458,-142,-5,-269,-22,-19,-103,-1563,-1,-2528,-8981,-27,-8980,-8979,-171,-153,-2,-8978,-30], +[0,-100,-75,-388,-8977,-42,-390], +[1,3,8749], +[0,8750,8751,8752,4], +[0,-11,-622,-1195,-4679,-3804,-6084,-1096,-3808,-3805,-3812,-3807,-2725,-173,-21,-1068,-136,-90,-8976,-8975,-5,-2012, +-6074,-1188,-3525,-8974,-5332,-13,-20,-8973,-316,-58,-36,-534,-151,-8972,-3081,-207,-4242,-3086,-5609,-2137,-118,-8971, +-206,-325,-4368,-2221,-3592,-8970,-817,-569,-1930,-1154,-8969,-1003,-276,-23,-8968,-753,-2342,-236,-8967,-524, +-646,-8966,-607,-1124,-8965,-806,-1414,-8964,-397,-1499,-8963,-8962,-3550,-641,-2185,-16,-2739,-146,-1293,-8961,-8960, +-8959,-8958,-8957,-8956,-8955,-2987,-8954,-8953,-156,-687,-2,-8952,-8951], +[0,-8950,-2476,-8949,-513,-80,-2530,-63,-8948,-8947,-109,-162,-8946,-1201,-4989,-4676,-6039,-788,-137,-2738,-2379,-8945, +-22,-19,-278,-1574,-168,-8944,-8943,-244,-1952,-3838,-223,-383,-26,-8942,-424,-1,-8941,-2489,-41,-8940,-32,-615,-8939, +-3977,-530,-1325,-8938,-8937,-5116,-314,-8936,-653,-2686,-996,-1132,-88,-8935,-1514,-8934,-180,-6,-8933, +-14,-301,-396,-27,-5377,-138,-8932,-44,-112], +[0,-4241,-727,-91,-2017,-878,-2116,-61,-544,-75,-456,-543,-293,-1072,-8931,-846,-2505,-60,-629], +[1,3,8754], +[0,8755,8756,8757,6], +[0,-5309,-8930,-928,-3262,-3260,-36,-8929,-4004,-499,-1635,-8928,-8927,-1290,-156,-284], +[0,-4626,-8926,-4627,-162,-2331,-8925,-4240,-736], +[0,-2182,-1983,-61], +[1,3,8759], +[0,8760,8761,8762,5], +[0,-23,-3694,-8924,-4703], +[0,-5,-22,-19,-59,-4239,-8923,-26,-534,-8922,-8921,-1836,-72,-65,-15,-7,-97,-8920,-8919,-1789,-33,-3590,-2], +[0,-543,-591,-307,-1384,-1729,-8918,-3085], +[1,3,8764], +[0,8765,8766,8767,4], +[0,-1247,-2257,-116,-4243,-58,-384,-4012,-118,-41,-8917,-28,-614,-101,-23,-72,-524,-1510,-2834,-8916,-7,-800,-8915,-8914, +-1622,-156], +[0,-8913,-59,-13,-5241,-8912,-238,-1562,-1,-3330,-265,-3,-113,-8911,-272,-27,-186,-1295,-39], +[0,-45,-61,-4655,-91], +[1,3,8769], +[0,0,8770,8771,4], +[0,-85,-39,-1566], +[0,-183,-734,-2368,-868,-4704,-3460], +[1,3,8773], +[0,0,8774,8775,4], +[0,-48,-63,-204,-1,-8910,-923,-763,-181,-55,-4238,-166,-297,-806,-157,-375,-14,-3882], +[0,-1109,-8909,-45,-4237,-8908,-8907,-4236,-8906,-8905,-8904,-8903,-327,-256,-585], +[1,3,8777], +[0,0,8778,8779,4], +[0,-50,-11,-173,-21,-90,-203,-98,-5394,-159,-1,-5393,-12,-25,-381,-499,-4235,-5392,-9,-78,-1527,-139,-212,-418,-1830,-648, +-526,-18,-88,-8902,-417,-4,-1498,-14,-5391,-17], +[0,-1871,-1994], +[1,3,8781], +[0,0,8782,8783,9], +[0,-1624,-39,-2437], +[0,-245,-940,-8901,-1921], +[1,3,8785], +[0,8786,8787,8788,4], +[0,-197], +[0,-2255,-299,-13,-8900,-3,-8899,-97,-8898], +[0,-245,-4234,-460,-507], +[1,3,8790], +[0,0,0,8791,11], +[0,-4419,-1028,-114,-3549,-172], +[1,3,8793], +[0,0,14,8794,6], +[0,-8897,-4233,-4232,-2181,-4231,-248,-2320,-405,-2177,-1636,-452], +[1,3,8796], +[0,8797,210,8798,4], +[0,-20,-4373,-533,-2400,-8896,-899,-885], +[0,-54,-2416,-3208,-588,-8895,-2391,-8894,-5004,-542,-2416], +[1,3,8800], +[0,8801,8802,8803,4], +[0,-8893,-8892,-8891,-8890,-8889,-8888,-8887,-8886,-8885,-8884,-8883,-8882,-8881,-8880,-8879,-8878,-8877,-8876,-8875, +-8874,-8873,-8872,-8871,-8870,-8869,-8868,-8867,-8866,-8865,-8864,-8863,-8862,-8861,-8860,-8859,-8858,-8857,-8856,-8855, +-8854,-8853,-8852,-8851,-8850,-8849,-8848,-8847,-8846,-8845,-8844,-8843,-8842,-8841,-8840,-8839,-8838,-8837,-8836,-8835, +-8834,-8833,-8832,-8831, +-8830,-8829,-8828], +[0,-303,-28,-32,-248,-77,-3,-6,-1,-23,-7,-382,-38,-17,-1553,-40,-66,-26,-421,-1537,-1315,-35,-144,-2228,-121,-654,-462, +-160,-1538,-1007,-154,-8827,-8826,-242,-519,-1009,-2213,-492,-8825,-6148,-64,-266,-10,-148,-4770,-8824,-298,-919], +[0,-6,-108,-129,-127,-102,-52,-53,-8823,-6300,-8822], +[1,3,8805], +[0,8806,8807,7,6], +[0,-3121,-36,-3110,-4746,-242,-464], +[0,-182,-278,-2259,-328,-1,-84,-67,-131,-41,-1847,-3,-2316,-134,-125], +[1,3,8809], +[0,0,0,8810,5], +[0,-110,-8821,-2299], +[1,3,8812], +[0,0,8813,8814,5], +[0,-8820], +[0,-224,-73,-8819], +[1,3,8816], +[0,0,0,8817,11], +[0,-789,-3885,-2470,-45,-31,-183,-3140,-3139,-3137,-875,-3138,-966], +[1,3,8819], +[0,0,8820,8821,4], +[0,-5,-2300,-1,-12,-25,-150,-4,-371,-2,-83,-104,-30], +[0,-508,-8818,-8817], +[1,3,8823], +[0,0,0,8824,8], +[0,-1729,-307,-2,-8816], +[1,3,8826], +[0,0,8827,258,4], +[0,-3,-1,-66,-3459,-265], +[1,3,8829], +[0,8830,8831,8832,4], +[0,-6343], +[0,-11,-8815,-1760,-4,-2], +[0,-6,-108,-8814,-3027,-2128,-8813,-8812,-234,-2812,-8811,-8810,-6299,-1731,-2671,-8809,-37,-95,-282,-333,-111,-8808], +[1,3,8834], +[0,0,8835,8836,10], +[0,-50,-11,-1195,-21,-136,-320,-3087,-877,-98,-13,-1,-41,-40,-348,-206,-101,-79,-228,-72,-3,-241,-8807,-65,-8806,-6,-35, +-77,-97,-17,-92], +[0,-3883,-45,-734,-8805,-3435,-547,-31,-1213,-1934], +[1,3,8838], +[0,0,8839,8840,6], +[0,-699,-4623], +[0,-884,-73], +[1,3,8842], +[0,0,8843,7,6], +[0,-2324,-85], +[1,3,8845], +[0,8846,8847,8848,6], +[0,-4230], +[0,-310,-48,-3733,-478,-5,-848,-1,-12,-251,-10,-25,-3784,-55,-4,-171,-2,-83,-30], +[0,-5926,-352,-1652,-8804,-4262,-5075,-8803,-8802], +[1,3,8850], +[0,8851,8852,8853,4], +[0,-135,-1872,-72,-8801], +[0,-109,-69,-13,-1566,-1172,-1,-3,-15,-33,-196,-2], +[0,-263,-738,-8800,-36], +[1,3,8855], +[0,8856,8857,8858,5], +[0,-4659,-8799,-3398], +[0,-239,-279,-510,-1555,-1,-213,-275,-187,-39], +[0,-2180,-745,-772,-774,-8798,-1222,-536], +[1,3,8860], +[0,0,27,8861,5], +[0,-934,-4815,-287,-4257,-4382,-2596], +[1,3,8863], +[0,241,8864,7,5], +[0,-735,-1443,-257,-29,-384,-383,-41,-8,-288,-4,-57,-2,-258], +[1,3,8866], +[0,8867,8868,8869,4], +[0,-528,-71,-2545,-8797,-8796,-197], +[0,-39,-460,-315], +[0,-31,-1613,-73,-507,-1597,-24], +[1,3,8871], +[0,8872,8873,8874,4], +[0,-1449,-137,-2216,-567,-16,-3210], +[0,-320,-5,-103,-1881,-1924,-1129,-1311,-2055,-970,-2,-30], +[0,-46,-1216,-376,-1129,-107,-318,-718,-1210,-436,-2,-433,-690,-952,-935,-3484,-676,-8795], +[1,3,8876], +[0,0,8877,161,11], +[0,-50,-11,-216,-1038,-306,-21,-140,-366,-49,-62,-3733,-478,-739,-29,-142,-680,-22,-19,-86,-110,-159,-1,-12,-25,-1170,-9, +-8,-23,-65,-4,-342,-33,-124,-794,-2,-123], +[1,3,8879], +[0,8880,8881,8882,5], +[0,-4229,-3425,-250,-276,-1825,-4228,-16,-210,-518], +[0,-49,-937,-487,-283,-48,-1239,-1732,-715,-729,-185,-29,-411,-3767,-3312,-5378,-634,-5,-137,-413,-2404,-22,-19,-86,-3117, +-575,-89,-1,-12,-10,-145,-181,-25,-118,-229,-40,-55,-9,-8,-101,-18,-262,-4,-7,-33,-2,-83], +[0,-8,-2,-2002,-6,-61], +[1,3,8884], +[0,8885,8886,8887,5], +[0,-20,-829,-362,-16,-130], +[0,-634,-137,-22,-19,-292,-169,-98,-620,-328,-8794,-712,-424,-1,-12,-76,-25,-40,-28,-9,-378,-78,-139,-400,-418,-648,-526, +-18,-997,-72,-3,-4,-7,-2,-17,-92], +[0,-211,-8793,-17,-779,-2,-436], +[1,3,8889], +[0,8890,8891,8892,9], +[0,-1257,-58,-215,-1129,-153], +[0,-320,-5,-103,-1924,-417,-1311,-2055,-970,-2,-30], +[0,-46,-8792,-8791,-4227,-1129,-376,-1216,-318,-718,-1210,-436,-2,-37,-724,-8790,-2585], +[1,3,8894], +[0,8895,8896,8897,6], +[0,-8789,-8788], +[0,-319,-109,-1201,-69,-5,-13,-4666,-26,-207,-3,-7,-14,-33,-2], +[0,-2,-360,-8787,-6138,-8786], +[1,3,8899], +[0,8900,8901,8902,5], +[0,-2167,-836,-207,-208,-1581,-4228,-8785,-8784,-8783,-8782,-2443,-8781,-8780], +[0,-51,-15,-201,-6,-2986,-350,-23,-7,-16,-2326,-807,-124,-252,-8779,-498,-180,-2,-1201,-5,-8778,-47,-142,-1204,-137,-3457, +-8777,-1635,-2659,-2331,-3074,-478], +[0,-2,-141,-1368,-782,-436,-593], +[1,3,8904], +[0,8905,8906,8907,5], +[0,-142,-1449,-137,-8776,-23,-567,-8775,-8774,-16], +[0,-320,-5,-103,-1924,-1129,-1311,-2055,-970,-2,-30], +[0,-46,-1129,-107,-1216,-318,-718,-1210,-436,-2,-3390,-1533,-783,-1654,-2412,-2349,-775,-2041,-263], +[1,3,8909], +[0,0,37,8910,8], +[0,-2,-686,-3144,-3143], +[1,3,8912], +[0,8913,8914,8915,5], +[0,-23,-142], +[0,-320,-5,-103,-1311,-2055,-970,-2,-30], +[0,-46,-436,-2,-8773,-8772,-1922,-1388,-1059,-8771,-8770,-8769,-8768,-8767], +[1,3,8917], +[0,8918,8919,7,9], +[0,-276,-88,-1293], +[0,-8,-9,-1,-7,-57,-33,-4,-2,-29,-5,-18,-725,-8766,-181,-10,-12,-19,-5268,-22], +[1,3,8921], +[0,8922,8923,8924,5], +[0,-4226,-2702,-206,-913,-467,-493,-2190], +[0,-2627,-5,-47,-22,-19,-51,-618,-237,-1,-1335,-2985,-118,-6,-641,-489,-2], +[0,-2,-81,-280,-1485,-635,-8765,-8764], +[1,3,8926], +[0,0,8927,8928,4], +[0,-11,-21,-140,-1239,-2443,-4226,-5,-22,-19,-86,-425,-1,-12,-8,-4,-2], +[0,-2,-81,-5944,-280,-581,-75,-1485,-635], +[1,3,8930], +[0,8931,8932,8933,10], +[0,-1047,-20,-119,-2534,-8763,-93,-72,-8762,-4254,-7,-8761,-2,-3710], +[0,-5,-89,-4,-85,-124], +[0,-2,-3654,-2365,-381,-860,-666], +[1,3,8935], +[0,0,0,8936,6], +[0,-733,-4225,-593,-1657,-45,-44,-1368], +[1,3,8938], +[0,8939,8940,8941,8], +[0,-538,-1571,-20,-58,-207,-28,-101,-93,-72,-128,-16,-44,-3347], +[0,-713,-1625,-109,-1201,-458,-411,-843,-3689,-69,-5,-1098,-1204,-137,-13,-9,-4296,-3,-65,-15,-4,-7,-33,-196,-1289,-5529, +-2,-4455], +[0,-37,-2,-539], +[1,3,8943], +[0,0,8944,8945,5], +[0,-8,-9,-23,-7,-196,-57,-753,-4,-8760,-503,-2,-29,-5,-8759,-6297,-8758,-1220,-120,-8757,-8756,-1596,-1785,-2309,-8755, +-298,-8754], +[0,-217,-196,-8753,-4,-353,-2], +[1,3,8947], +[0,8948,8949,7,6], +[0,-3347], +[0,-458,-5,-135,-28,-65,-248,-196,-8752,-2], +[1,3,8951], +[0,8952,8953,7,4], +[0,-3003,-925,-119,-1346,-36,-89,-4224,-8751,-164,-902,-641,-14,-130,-2599,-1093,-311,-687], +[0,-478,-231,-252,-162,-5,-1098,-1387,-1544,-38,-2345,-4,-128,-415,-77,-599,-220,-2784,-175,-4223,-171,-2,-30,-2755], +[1,3,8955], +[0,8956,0,8957,4], +[0,-89,-1327], +[0,-37,-1368,-141,-5058,-860,-381,-2,-8750], +[1,3,8959], +[0,8960,8961,8962,6], +[0,-8749], +[0,-80,-63,-232,-59,-1494,-14,-97,-8748], +[0,-1413,-31,-100], +[1,3,8964], +[0,0,8965,8966,10], +[0,-54,-3,-4545,-167,-416,-8747,-8746,-1010,-8745,-532,-8744,-146,-243,-8743,-177,-347,-8742,-8741,-8740], +[0,-650,-318,-437,-6296], +[1,3,8968], +[0,0,8969,8970,5], +[0,-59,-1,-1332,-8739,-39,-8738,-112], +[0,-659,-3618,-8737,-8736,-3005,-1419,-1641,-8735,-8734,-8733,-8732,-8731], +[1,3,8972], +[0,8973,8974,8975,5], +[0,-40,-2864,-8730,-3251], +[0,-65,-645,-112], +[0,-1929,-4222,-73,-1704,-1944,-8729,-455], +[1,3,8977], +[0,8978,8979,8980,9], +[0,-116,-261,-113], +[0,-60,-135,-58,-3,-1494,-27], +[0,-2775,-99,-410,-245,-1613,-905], +[1,3,8982], +[0,8983,8984,8985,11], +[0,-113,-1869], +[0,-198,-3,-1], +[0,-2775,-1613,-905], +[1,3,8987], +[0,8988,0,7,4], +[0,-88,-8728,-20], +[1,3,8990], +[0,8991,8992,8993,9], +[0,-8727], +[0,-1071,-19,-1,-8726,-534,-823,-343,-81,-2,-83,-34], +[0,-2,-436,-635,-202,-132,-939,-4740,-494,-106,-4221], +[1,3,8995], +[0,8996,129,8997,4], +[0,-924,-8725,-344], +[0,-1427,-540,-8724], +[1,3,8999], +[0,9000,9001,259,4], +[0,-8723,-1092,-221,-93,-259], +[0,-48,-2689,-874,-69,-5,-43,-2986,-89,-1,-3,-157,-16,-153,-2,-83], +[1,3,9003], +[0,9004,9005,9006,11], +[0,-8722], +[0,-5,-124,-2], +[0,-8721,-4220,-1761,-2984,-8720,-4219,-2,-42], +[1,3,9008], +[0,0,131,9009,6], +[0,-956,-588,-3006,-2,-42,-4219,-124], +[1,3,9011], +[0,0,0,9012,4], +[0,-99,-42,-100,-124,-2,-4220], +[1,3,9014], +[0,9015,9016,9017,4], +[0,-228,-2], +[0,-2131,-69,-5,-736,-56,-66,-3,-611,-156], +[0,-733,-42,-8719,-45], +[1,3,9019], +[0,9020,9021,9022,4], +[0,-58,-551,-752,-2536,-8718,-60,-135,-236,-72,-2484,-8717], +[0,-13], +[0,-8716,-100,-8715,-8714,-4218,-3267,-271,-1413,-114], +[1,3,9024], +[0,106,9025,7,5], +[0,-1357,-109,-732,-69,-8713,-5,-13,-244,-56,-3,-8712,-1129,-8711,-4,-8710,-146,-33,-1289,-1596], +[1,3,9027], +[0,9028,9029,7,10], +[0,-28,-123,-1580,-574,-36,-44,-96,-299,-534,-215,-5406,-2931,-8709,-602,-8708], +[0,-43,-605,-13,-32,-9,-569,-3,-1819,-566,-690,-27,-1,-1818,-7,-6014,-55,-376,-797,-33,-2353,-4,-8707,-48,-6438,-1385, +-186,-2,-109,-5,-314,-18,-162,-69,-269,-413,-1007,-8706,-3124,-313,-1536,-4801,-8705,-2443,-244,-1270,-3752,-1632,-83, +-8704,-146,-8703,-181,-8702,-8701,-732,-2379], +[1,3,9031], +[0,0,9032,9033,5], +[0,-43,-567,-13,-207,-28,-811,-3,-44,-219,-2986,-1,-5110,-89,-55,-119,-88,-1449,-48,-164,-398,-2,-109,-1201,-69,-2346, +-649,-713,-725,-1857,-8700,-8699,-83,-8698,-146,-826,-4217,-839,-2379,-8697,-3641,-2615,-8696,-8695], +[0,-733,-4225,-593,-1657,-45], +[1,3,9035], +[0,9036,112,9037,4], +[0,-839,-19,-22,-2614], +[0,-360,-338,-45,-2,-73,-389,-1,-334,-368], +[1,3,9039], +[0,9040,9041,9042,10], +[0,-8694,-1634], +[0,-3689,-69,-5,-8693,-404,-8692,-72,-3,-1501,-196,-2,-3881], +[0,-733], +[1,3,9044], +[0,9045,9046,9047,6], +[0,-8691,-8690,-215,-1471,-222,-1828,-38,-902,-2498,-2195,-2497,-4822,-77,-799,-795,-393], +[0,-8689,-29,-3295,-3767,-5,-8688,-8687,-2440,-22,-19,-476,-1,-12,-9,-8,-8686,-18,-8685,-1503,-805,-4,-8684,-57,-2], +[0,-24,-432,-77,-222,-393,-370,-107,-38,-2], +[1,3,9049], +[0,9050,9051,9052,8], +[0,-4587,-116,-20,-2247,-1565,-4242,-4779,-4433,-1523,-88,-8683,-8682,-596,-978,-742], +[0,-1342,-198,-7,-33,-196,-8681,-2], +[0,-1485,-2,-8680,-3730,-451,-1202,-2406], +[1,3,9054], +[0,9055,9056,9057,8], +[0,-58,-130], +[0,-208,-3,-16], +[0,-938,-1288,-112,-227,-776,-45,-338,-1050,-339,-2034,-2988,-430,-1972,-1415,-60,-629], +[1,3,9059], +[0,0,9060,9061,11], +[0,-208,-16], +[0,-37,-541,-2378,-8679,-338,-1663,-1050,-45,-270,-8678,-1616,-1224,-776,-227,-580,-1648,-2467,-3176,-165,-73,-3175,-938], +[1,3,9063], +[0,9064,9065,9066,9], +[0,-2102,-1547,-914,-639,-1114,-130,-112,-1479,-4838], +[0,-50,-11,-21,-49,-62,-1970,-944,-86,-5182,-26,-151,-237,-1,-12,-10,-9,-8,-1150,-18,-1133,-65,-4,-134,-175,-17], +[0,-938,-112,-1288,-17,-2496], +[1,3,9068], +[0,9069,9070,9071,5], +[0,-8677], +[0,-3,-1,-116,-66,-76,-10,-67,-84,-131], +[0,-850,-114,-5376,-1376], +[1,3,9073], +[0,9074,0,9075,4], +[0,-90,-47,-87,-8676,-8675,-8674,-8673,-8672,-8671,-8670,-8669,-6535,-8668,-8667,-8666,-8665,-8664,-8663,-8662,-8661, +-8660,-8659,-8658,-8657,-8656,-8655,-8654,-8653,-8652,-8651,-4036,-6534,-8650,-8649,-8648,-8647,-8646,-8645,-8644,-8643, +-5742,-6533,-8642,-8641,-8640,-8639,-8638,-8637,-8636,-8635,-8634,-8633,-8632,-8631,-8630,-8629,-8628,-8627,-8626,-8625, +-8624,-8623,-8622, +-8621,-8620], +[0,-435,-1483,-1689,-1688,-6,-108,-129,-127,-102,-24,-1430,-1429,-52,-184,-53], +[1,3,9077], +[0,9078,9079,174,10], +[0,-28,-470,-23,-16,-3871], +[0,-117,-221,-3,-3930,-82], +[1,3,9081], +[0,0,9082,7,10], +[0,-513,-80,-63,-319,-5,-110,-4,-14,-44,-2,-30], +[1,3,9084], +[0,0,9085,9086,5], +[0,-320,-366,-4269,-20,-3614,-89,-206,-1160,-221,-8619,-65,-8618,-523,-1742,-30], +[0,-31,-271,-941], +[1,3,9088], +[0,9089,9090,7,5], +[0,-513,-80,-231,-63,-232,-728,-8617,-1346,-1653,-89,-4224,-2983,-527,-297,-8616,-1518,-606,-1660,-523,-14,-415,-2531, +-311,-8615], +[0,-1096,-5,-103,-5187,-1567,-1,-1552,-4,-2,-30], +[1,3,9092], +[0,0,9093,9094,4], +[0,-15,-28,-1561,-9,-78,-375,-1,-14,-175,-618,-56,-1830,-3404,-1241,-8614,-10,-812], +[0,-132,-727,-209,-337,-91], +[1,3,9096], +[0,9097,9098,9099,4], +[0,-2794,-3181], +[0,-59,-8613,-1,-66,-3,-611,-1046,-4476,-247], +[0,-247,-163], +[1,3,9101], +[0,0,9102,9103,5], +[0,-3264,-2329,-8612,-662,-5,-1354,-1766,-43,-26,-8611,-89,-1,-1333,-9,-8,-8610,-791,-1128,-604,-81,-2,-205], +[0,-865,-105,-401,-172,-113,-1949,-1948,-743,-1077], +[1,3,9105], +[0,9106,9107,9108,4], +[0,-677,-2982,-936,-444,-1153,-8609,-483], +[0,-8608,-246,-408,-5,-43,-4,-147,-260,-81,-233,-2,-34], +[0,-360,-665,-1427,-4823,-165,-287,-374,-274,-4216,-851,-429,-389,-507,-934,-133], +[1,3,9110], +[0,9111,14,9112,4], +[0,-8607], +[0,-4244,-850,-1417,-2519,-547,-8606,-670,-4468,-1374], +[1,3,9114], +[0,9115,9116,9117,5], +[0,-677,-5290,-1078], +[0,-408,-5,-43,-908,-2343,-3094,-4,-147,-260,-81,-233,-2,-34], +[0,-505,-4215,-132,-202,-274,-4216,-374,-841,-428,-8605,-8604,-3937,-1657,-100,-31,-506,-934,-360,-141,-8603,-745], +[1,3,9119], +[0,0,222,9120,5], +[0,-4232,-4677,-1636,-1482,-248,-2320,-405,-2177,-254,-1060], +[1,3,9122], +[0,9123,0,9124,8], +[0,-773,-6464,-8602,-8601,-1962,-197], +[0,-855,-1787,-3201,-8600,-1426,-245,-943], +[1,3,9126], +[0,9127,9128,9129,6], +[0,-8599,-1348,-20,-8598,-16,-2436,-1178,-5447,-2213,-1837], +[0,-34,-51,-3150,-138,-1877,-8597], +[0,-158,-2349,-4580,-2396,-8596,-280,-581,-37,-358,-451,-663], +[1,3,9131], +[0,0,0,9132,4], +[0,-2402,-195,-8595,-8594,-8593,-8592,-8591,-8590,-8589,-8588,-8587,-8586,-8585,-8584,-8583,-8582,-4214,-4213], +[1,3,9134], +[0,9135,9136,9137,10], +[0,-464,-988], +[0,-766,-15,-976,-208,-3,-1,-239], +[0,-723,-195,-4800], +[1,3,9139], +[0,0,9140,9141,5], +[0,-575,-3,-82], +[0,-195,-5146], +[1,3,9143], +[0,9144,9145,48,10], +[0,-754,-344,-639], +[0,-50,-11,-21,-49,-62,-1970,-944,-86,-26,-151,-237,-1,-12,-10,-277,-9,-8,-18,-262,-2414,-65,-4,-134,-17], +[1,3,9147], +[0,9148,9149,9150,5], +[0,-5487,-4899], +[0,-927,-59,-43,-3,-235,-8581,-8580,-112], +[0,-5412,-73,-2402,-195,-165,-676,-163,-987,-429], +[1,3,9152], +[0,9153,9154,9155,9], +[0,-657,-8579,-344,-464,-210,-284,-8578], +[0,-310,-8577,-5327,-8576,-3298,-4212,-1089,-5,-8575,-2088,-8574,-3772,-1047,-1377,-103,-1569,-26,-470,-2157,-1393,-604, +-2700,-8573,-886,-555,-3391,-2,-30], +[0,-3878,-105,-8572,-1949,-1948,-113,-401,-284,-865], +[1,3,9157], +[0,9158,9159,9160,4], +[0,-2356], +[0,-493], +[0,-2177,-2320,-4233,-2356,-1927,-405,-942,-248,-1217,-2712,-782,-1454,-8571], +[1,3,9162], +[0,9163,9164,9165,6], +[0,-442,-156], +[0,-927,-3,-235,-113,-16,-8570], +[0,-1609,-91,-8569,-1507,-165,-73,-8568,-8567,-8566,-8565,-2177,-2981,-2774,-663], +[1,3,9167], +[0,0,9168,9169,4], +[0,-56,-66,-2558,-1498], +[0,-2370,-510,-455,-1786], +[1,3,9171], +[0,9172,9173,260,5], +[0,-528,-5342,-8564,-8563,-3398], +[0,-768,-159,-8562,-609,-1126,-1795,-488,-39], +[1,3,9175], +[0,0,183,260,8], +[1,3,9177], +[0,0,9178,9179,4], +[0,-161,-49,-62,-48,-1745,-58,-1,-12,-25,-55,-9,-8,-18,-791,-65,-4,-4675,-4674,-134,-2,-83], +[0,-123,-2492,-3077,-8561], +[1,3,9181], +[0,9182,9183,9184,10], +[0,-1961,-207,-495,-1707], +[0,-8560,-381,-2321,-4304], +[0,-293,-8559,-456,-2113,-75], +[1,3,9186], +[0,0,9187,9188,5], +[0,-85,-117], +[0,-195,-409,-280,-581,-947], +[1,3,9190], +[0,9191,9192,9193,5], +[0,-5373,-8558,-1076,-4789], +[0,-1639,-13,-2009,-503,-298,-9,-66,-72,-3,-5027,-7,-120,-27], +[0,-8557,-1677,-2303,-387,-2004,-780], +[1,3,9195], +[0,0,9196,9197,8], +[0,-731,-730], +[0,-158,-451,-2538,-409], +[1,3,9199], +[0,0,9200,9201,4], +[0,-50,-11,-21,-178,-94,-278,-1,-191,-10,-3,-65,-15,-7,-14,-273,-4630,-112], +[0,-437,-409,-509,-1623,-941,-2980,-8556,-293], +[1,3,9203], +[0,9204,9205,9206,11], +[0,-2292,-8555,-8554], +[0,-5,-949,-3586,-960,-4211,-858,-764,-8553,-79,-2,-104,-30,-8552,-74,-882,-8551,-8550,-8549,-8548], +[0,-102,-74,-873,-95,-53,-129,-127], +[1,3,9208], +[0,0,9209,9210,5], +[0,-3,-1,-66,-110,-125,-1186,-76,-10,-67,-84,-214,-131], +[0,-105,-1249,-980], +[1,3,9212], +[0,9213,9214,7,4], +[0,-2174], +[0,-85,-699], +[1,3,9216], +[0,9217,9218,7,6], +[0,-1691,-89,-119,-657,-8547,-8546,-8545,-8544,-8543,-8542,-8541,-8540,-8539,-8538,-8537,-8536,-8535,-8534,-8533,-8532, +-8531,-8530,-8529,-8528,-8527,-8526], +[0,-567,-193,-836,-1560,-381,-758,-324,-149,-104,-475,-20,-36,-118,-262,-604,-2306,-4230,-219,-4016,-215,-350,-3952,-7, +-16,-889,-1290,-30,-504,-152,-41,-349,-568,-33,-1174,-40,-499,-3917,-1497,-2162,-252,-1449,-2088,-8525,-1930,-4579,-93, +-562,-687,-2325,-4475,-1190,-3012,-661,-1150,-344,-188,-138,-2,-29,-5,-1577,-501,-8524, +-2424,-1974,-8523,-1754,-162,-8522,-2346,-929,-1578,-8521,-8520,-8519,-137,-2366,-4240,-1225,-6136,-4486,-4549,-3782, +-8518,-2298,-4776,-8517,-5933,-185,-3086,-1017,-8516,-994,-5390,-6162,-8515,-6161,-843,-1686,-3843,-8514,-1089,-955, +-8513,-4319,-8512,-8511,-4896,-2362,-8510,-3645,-8509,-8508,-2770,-4548,-8507,-1755,-8506,-4210,-8505,-3075,-8504,-8503, +-8502,-8501,-8500,-8499, +-8498,-8497,-8496], +[1,3,9220], +[0,9221,0,9222,4], +[0,-8495,-2928,-4273], +[0,-627,-1954,-8494,-3044,-4461,-1455], +[1,3,9224], +[0,0,9225,7,4], +[0,-3,-66,-125], +[1,3,9227], +[0,0,9228,9229,4], +[0,-11,-21,-49,-62,-203,-355,-13,-1568,-152,-618,-8493,-382,-237,-1,-191,-10,-9,-78,-703,-139,-3786,-189,-418,-755,-18,-3, +-65,-38,-696,-8492,-561,-805,-2502,-157,-14,-179,-558,-1489,-112], +[0,-281,-2979,-6291,-8491,-31,-24,-45,-184,-111], +[1,3,9231], +[0,9232,9233,9234,5], +[0,-8490,-536,-896,-8489], +[0,-15,-3,-1,-350,-2293,-197,-828,-76], +[0,-1375,-1400,-126,-405,-2391,-248], +[1,3,9236], +[0,9237,9238,9239,4], +[0,-2255,-71], +[0,-39,-883], +[0,-70,-624,-452,-299,-245], +[1,3,9241], +[0,9242,9243,9244,11], +[0,-8488,-5023,-325,-470,-8487,-8486,-1509,-8485,-8484,-2293,-8483,-8482,-70,-8481], +[0,-1,-828,-350,-3,-15,-197,-7,-27], +[0,-32,-8480,-70,-126,-1205,-303,-940], +[1,3,9246], +[0,9247,9248,9249,9], +[0,-70,-71], +[0,-314,-39,-554], +[0,-70,-32,-624,-1934,-245,-163,-183,-8479], +[1,3,9251], +[0,185,0,9252,4], +[0,-70,-3209,-3206,-32], +[1,3,9254], +[0,9255,9256,9257,5], +[0,-8478,-627,-8477,-918,-3151,-5209,-8476,-8475], +[0,-59,-66,-5024,-1310,-8474,-4527,-556,-39,-976], +[0,-1375,-255,-1940,-8473,-207,-3390,-91], +[1,3,9259], +[0,9260,9261,261,6], +[0,-1245,-14,-89,-38,-323,-311], +[0,-205,-925,-2341,-383,-922,-1518,-2082,-149,-77,-748,-606,-215,-2083,-646,-607,-175,-223,-3029,-119,-975,-2746,-4209, +-4208,-164,-230,-501,-4207,-1452,-297,-427,-2656,-1024,-824,-1457,-2978,-561,-1595,-2977,-1914,-2976,-2296,-2362,-472, +-728,-902,-1997,-513,-1757,-2057,-894,-80,-2539,-3338,-1099,-4206,-3423], +[1,3,9263], +[0,9264,9265,9266,4], +[0,-8470,-229,-40,-8469,-8468], +[0,-257,-185,-5,-41,-171,-2,-104], +[0,-104,-99,-8467,-8466,-8465,-8464,-41,-8463,-209,-8462,-1937,-8461,-8460,-107,-1087,-6326,-46,-8459,-8458], +[1,3,9268], +[0,9269,9270,9271,4], +[0,-74,-104,-863,-2691,-8457,-6015,-2292,-1714,-2715,-8456,-6049,-8455,-2291,-874,-949,-4205,-5913,-8454], +[0,-324,-748,-36,-118,-564,-2716,-646,-7,-14,-16,-30,-89,-2197,-397,-1743,-2163,-1424,-2164,-119,-40,-499,-88,-4,-988, +-442,-362,-164,-311,-2,-5,-230,-708,-18,-221,-162,-2537,-8453,-3762,-788,-563,-185,-725,-1524,-8452,-970,-634,-1463, +-1138,-415,-2296,-945,-998,-231,-2992,-8451,-8450,-513,-8449,-1318,-1223,-8448,-232,-4947, +-80,-6357,-8447,-2704,-8446,-8445,-404,-63,-8444,-8443,-8442], +[0,-104,-74,-793], +[1,3,9273], +[0,9274,9275,9276,8], +[0,-2082,-104,-606,-1411,-1093,-323,-1108,-311,-3485,-823,-4204,-297,-4290,-2298,-3004,-4203,-1595,-8441,-8440,-8439], +[0,-205,-925,-261,-8438,-79,-3424,-397,-2297,-1324,-4202,-1581,-5,-586,-329,-2978,-788,-4201,-623,-4200,-1240,-662,-5940, +-1099,-2135,-5941], +[0,-104,-30,-75,-8], +[1,3,9278], +[0,9279,9280,9281,5], +[0,-20,-23,-200,-88,-880,-213,-1523,-138,-620,-8437], +[0,-34,-32,-292,-3,-236,-82,-8436,-113,-116,-169,-615,-530,-8435,-8434,-6449,-8433,-328], +[0,-99,-37,-4424,-254,-5943,-52,-300,-1041,-308,-58,-4241,-490,-200], +[1,3,9283], +[0,9284,0,9285,4], +[0,-207,-4199,-28], +[0,-61,-1082,-75,-4198], +[1,3,9287], +[0,9288,9289,9290,6], +[0,-156,-28,-261,-603,-2384,-20,-1142,-977,-8432,-16,-551,-238,-2178,-58,-93,-221,-8431,-818,-8430,-4217], +[0,-9,-3,-33,-4,-736,-2,-458,-3505,-5,-8429,-8428,-65,-69,-3280,-441,-137,-2332,-4197,-49,-8427,-843,-120,-874,-146,-2051, +-62], +[0,-4547,-6290,-1690], +[1,3,9292], +[0,0,37,7,4], +[1,3,9294], +[0,9295,9296,7,4], +[0,-477,-536,-423,-264,-28,-470,-651,-130,-2,-70,-551,-96], +[0,-4943,-8426,-2386,-458,-8425,-843,-69,-5,-4338,-3205,-1395,-517,-2332,-413,-22,-19,-1,-3,-7], +[1,3,9298], +[0,0,9299,7,9], +[0,-3,-72,-17,-2,-5,-92,-69,-8424,-535,-478], +[1,3,9301], +[0,9302,0,9303,6], +[0,-2292,-8423,-4914,-1640,-2732], +[0,-74], +[1,3,9305], +[0,0,9306,9307,5], +[0,-11,-216,-622,-974,-21,-109,-69,-5,-19,-2926,-98,-3339,-13,-144,-1,-4196,-3,-602,-7,-14,-273,-893,-1789,-211,-2,-1288, +-74,-1103,-1480,-1770,-1783,-17,-92], +[0,-74,-1980,-292,-2], +[1,3,9309], +[0,9310,9311,7,9], +[0,-36,-1169,-1019,-617,-3319,-16], +[0,-11,-161,-3816,-8422,-3486,-283,-48,-162,-329,-5,-137,-22,-19,-103,-964,-1,-1209,-1334,-115,-2441,-25,-150,-1993,-4, +-33,-371,-2,-104,-30], +[1,3,9313], +[0,0,9314,9315,5], +[0,-1184,-8,-74], +[0,-74,-1910,-1370], +[1,3,9317], +[0,9318,9319,9320,6], +[0,-8421,-2291,-8420], +[0,-8419], +[0,-1157,-1607,-8418,-107,-74,-2717], +[1,3,9322], +[0,9323,9324,7,4], +[0,-20,-2224,-1905], +[0,-11,-21,-8417,-329,-4432,-29,-586,-8416,-8415,-98,-4195,-404,-144,-277,-346,-8,-79,-18,-8414,-262,-377,-5405,-5262, +-492,-4,-643,-8413,-130,-154,-393,-1791,-887,-57,-211,-2,-438,-74,-3874,-17,-92,-170,-519,-2454], +[1,3,9326], +[0,0,9327,9328,4], +[0,-29,-5,-8,-602,-14,-57,-2,-74,-3875], +[0,-74,-2,-1923], +[1,3,9330], +[0,9331,9332,7,5], +[0,-879,-8412,-2291,-8411,-119,-276,-4202,-297,-1518,-8410,-606,-323,-2531,-311,-2748,-8409,-259], +[0,-479,-8408,-357,-80,-63,-232,-204,-3016,-8407,-623,-1047,-949,-1640,-8406,-2732,-858,-4809,-8405,-1564,-215,-8404, +-5310,-1324,-2838,-8403,-1768,-7,-14,-301,-371,-171,-104,-74], +[1,3,9334], +[0,9335,9336,7,9], +[0,-2224,-754], +[0,-169,-86,-1350,-404,-8], +[1,3,9338], +[0,9339,0,9340,4], +[0,-8402,-1158], +[0,-74,-593], +[1,3,9342], +[0,262,9343,7,8], +[0,-74,-8,-20,-118,-2515,-1,-14,-16,-41,-17,-573,-40,-26,-157,-793,-86,-144,-2,-1103,-11,-5,-98,-8401,-2173,-21,-1640, +-342,-2016,-226,-1110,-232,-4196,-1781,-2773,-80,-404,-63], +[1,3,9345], +[0,9346,0,9347,5], +[0,-8400], +[0,-132,-1507,-8399,-303,-745,-8398], +[1,3,9349], +[0,9350,9351,7,4], +[0,-843,-3332,-5064,-93], +[0,-29,-5,-28,-8,-262,-7,-57,-2], +[1,3,9353], +[0,220,9354,9355,4], +[0,-49,-62,-59,-503,-298,-9,-8,-112], +[0,-595,-2114,-6,-704], +[1,3,9357], +[0,9358,0,9359,8], +[0,-8397,-88], +[0,-132,-202,-303,-625], +[1,3,9361], +[0,9362,9363,9364,6], +[0,-4938,-59,-119,-2546,-8396,-71,-742], +[0,-1572,-72,-798,-39,-112,-8395], +[0,-59,-4810,-594,-1084,-666,-91], +[1,3,9366], +[0,9367,123,9368,4], +[0,-4335,-3101,-60,-8394,-4334,-8393,-4333,-4332,-8392,-8391], +[0,-1904,-808,-566,-1066,-690,-376,-8390,-6288,-6325,-4331], +[1,3,9370], +[0,9371,9372,9373,8], +[0,-928,-60,-23,-72,-522,-113,-8389], +[0,-8388,-13,-244,-135,-3351,-41,-264,-32,-8387,-530,-1161,-364,-2222,-614,-4295,-66,-3,-8386,-198,-8385,-983,-2975,-8384, +-8383,-1286,-123,-96], +[0,-61,-544,-840,-1367,-933], +[1,3,9375], +[0,9376,9377,9378,4], +[0,-8382,-8381,-8380,-8379,-8378,-8377,-8376,-8375,-8374,-8373,-8372,-8371,-8370,-8369,-8368,-8367,-8366], +[0,-8365,-8,-1,-8364,-3715,-57,-4,-110,-2,-29,-3951,-739,-8363,-10,-5153,-12,-8362,-19,-8361,-22], +[0,-8360,-1638,-1087], +[1,3,9380], +[0,9381,194,9382,8], +[0,-8359,-8358,-6521,-6516,-8357,-8356,-8355,-8354,-8353,-8352,-96], +[0,-1284,-589,-37,-8351,-3716], +[1,3,9384], +[0,9385,9386,7,11], +[0,-3311,-329,-633,-8350,-8349,-8348,-208,-8347,-305,-8346,-829,-1595,-1169,-422,-5094,-325,-4584,-2432,-344,-1943,-639, +-1291,-392,-1905,-1479], +[0,-11,-136,-366,-4266,-8345,-5095,-872,-29,-1089,-8344,-5,-8343,-8342,-98,-8341,-8340,-316,-159,-425,-144,-1174,-1554, +-6145,-1,-583,-277,-1853,-55,-8339,-1532,-9,-66,-8,-5050,-496,-913,-816,-1150,-911,-276,-222,-1143,-18,-23,-468,-262, +-8338,-377,-2414,-610,-15,-1311,-1385,-4,-695,-643,-4901,-693,-6,-35,-8337,-750,-864, +-521,-601,-804,-7,-3588,-600,-138,-154,-175,-1109,-1108,-884,-211,-2,-133,-438,-8336,-8335,-92,-8334,-2168], +[1,3,9388], +[0,9389,9390,9391,10], +[0,-205,-748,-208,-608,-1871,-58,-1581,-164,-2872,-424,-3002], +[0,-151,-13,-32,-8,-1317,-1,-206,-491,-159,-382,-38,-17,-761,-157,-267,-144,-615,-2203,-438,-11,-2250,-92,-160,-94,-98, +-1319,-154,-90,-1825,-8333,-492,-2388,-21,-8332,-170,-136,-1888,-64,-8331,-392,-8330,-8329,-173,-622,-1096], +[0,-17,-1084,-8328,-370,-1207,-1606,-2974,-4366,-4194,-3428], +[1,3,9393], +[0,9394,9395,9396,10], +[0,-1863,-2189,-1180,-58,-2217,-230,-1839,-519,-8327,-5676,-1916,-3002,-8326], +[0,-8325], +[0,-17,-37,-1466,-358,-2464,-111], +[1,3,9398], +[0,9399,9400,9401,9], +[0,-262,-1180,-344,-992,-1121,-639], +[0,-443,-915,-8,-118,-9,-425,-1,-434,-223,-237,-41,-1164,-55,-17,-4,-26,-326,-125,-50,-48,-4051,-86,-2,-11,-5,-277,-18, +-65,-1016,-3658,-257,-49,-115,-514,-8324,-134,-21,-1244,-1089,-8323,-145,-181,-10,-583,-150,-12,-25,-309,-62], +[0,-17,-332,-684], +[1,3,9403], +[0,9404,9405,7,9], +[0,-205,-149,-4384,-4301,-41,-3008,-119,-454,-1180,-1926,-2700,-384,-325,-1113,-639,-8322,-4289,-8321,-257,-8320,-8319, +-8318,-4193,-2870,-1781,-1564,-3015,-8317], +[0,-915,-8,-222,-208,-118,-9,-4192,-262,-425,-1,-228,-7,-223,-159,-17,-4,-157,-125,-50,-86,-144,-614,-2,-11,-5,-1143,-18, +-65,-92,-98,-154,-6314,-2660,-519,-90,-49,-115,-197,-2755,-514,-134,-21,-1244,-2434,-83,-735,-872,-145,-181,-346,-3591, +-161,-8316,-5286,-10,-583,-12,-176,-173,-62,-1230], +[1,3,9407], +[0,9408,9409,9410,5], +[0,-138,-705,-4193], +[0,-15,-3,-27,-1,-41,-17,-4,-125,-25,-1781], +[0,-17,-1670,-1910,-358,-8315,-8314,-332,-41], +[1,3,9412], +[0,9413,9414,7,5], +[0,-1291,-1479], +[0,-2271,-5,-517,-8313,-6011,-535,-151,-1,-8312,-251,-277,-9,-18,-1133,-235,-4,-8311,-6,-154,-44,-2,-30,-17,-519], +[1,3,9416], +[0,9417,9418,9419,5], +[0,-1544,-1951,-3801], +[0,-9,-44,-8310,-17,-4,-2,-8309,-329], +[0,-17,-494], +[1,3,9421], +[0,0,9422,9423,5], +[0,-13,-1,-10,-3,-568,-752,-17], +[0,-17,-5637,-141,-1084,-8308], +[1,3,9425], +[0,0,9426,9427,5], +[0,-8,-1,-55,-17,-66,-4,-56,-48,-130,-2,-29,-115,-514,-145,-181,-3017,-10,-583,-150,-12,-25,-309], +[0,-17,-130], +[1,3,9429], +[0,9430,0,9431,4], +[0,-325,-230,-156,-645], +[0,-1939,-4542], +[1,3,9433], +[0,9434,9435,9436,8], +[0,-2252,-36,-1554,-8307,-2994,-8306], +[0,-1880,-32,-819,-1000,-117,-39], +[0,-881,-2023,-3247,-8305,-8304,-1229,-2973,-771,-209,-337], +[1,3,9438], +[0,9439,9440,9441,5], +[0,-8303,-8302,-8301,-8300,-8299,-8298,-8297,-8296,-8295,-8294,-8293,-8292,-36,-501,-8291,-8290,-8289,-8288,-8287,-8286, +-8285,-261,-698,-8284,-1304,-4754,-8283,-1121,-3114,-4294,-8282,-2293,-8281,-8280,-8279,-8278,-8277,-8276,-8275], +[0,-11,-161,-2146,-21,-8274,-768,-8273,-4753,-8272,-833,-8271,-299,-8270,-1875,-8269,-1,-84,-10,-115,-67,-1016,-8268, +-1810,-8267,-987,-1795,-120,-396,-2542,-1622,-556,-39,-392,-2541,-17,-92,-8266], +[0,-8265,-8264,-1340,-8263,-8262,-8261,-8260,-1613,-8259,-8258,-8257,-5508,-8256,-6285], +[1,3,9443], +[0,9444,9445,9446,10], +[0,-711,-809], +[0,-4550,-85], +[0,-2701,-8255,-8254], +[1,3,9448], +[0,9449,9450,7,5], +[0,-41,-466,-247], +[0,-474], +[1,3,9452], +[0,0,9453,7,4], +[0,-13,-78,-3,-1,-14,-4,-703,-189,-279,-1807,-8253,-139,-1526,-909,-212,-3539,-5154], +[1,3,9455], +[0,0,9456,9457,6], +[0,-1782,-28,-8252,-410,-276,-8251,-117,-72,-8250,-565,-110,-8249,-112,-59,-1806,-2975], +[0,-8248,-8247,-1668,-172,-481,-3506,-5538,-2172,-60,-1418,-2338], +[1,3,9459], +[0,9460,29,7,5], +[0,-8246], +[1,3,9462], +[0,0,9463,9464,10], +[0,-1771,-166,-3,-236,-4191,-8245], +[0,-722,-1915], +[1,3,9466], +[0,9467,9468,9469,8], +[0,-8244,-1228,-60,-1003,-4190,-8243,-197,-1394,-3897,-2423,-1779], +[0,-50,-11,-21,-4189,-5,-8242,-927,-8241,-1,-8240,-8,-7,-889,-4293,-71,-4188], +[0,-552,-738,-367,-4530,-3255,-1347,-1307,-1522,-1269,-106,-245], +[1,3,9471], +[0,9472,9473,9474,6], +[0,-8239,-1811,-2423,-1779], +[0,-8238,-8237,-13,-1,-76,-3,-7,-2701], +[0,-552,-8236,-8235,-8234], +[1,3,9476], +[0,9477,9478,9479,4], +[0,-4190,-197,-2423], +[0,-5,-927,-182,-268,-830,-1,-4189,-3,-15,-7,-4188], +[0,-552,-2721,-8233], +[1,3,9481], +[0,9482,9483,9484,4], +[0,-8232,-28,-23,-8231,-71,-8230], +[0,-13,-40,-66], +[0,-1185,-451,-1721,-3216,-2322,-685], +[1,3,9486], +[0,0,88,9487,11], +[0,-2972,-8229,-1063,-8228,-8227,-8226,-8225,-183,-1603,-2171,-3041,-1734], +[1,3,9489], +[0,0,31,9490,8], +[0,-1603,-1734,-1922,-550,-2008], +[1,3,9492], +[0,9493,9494,9495,9], +[0,-3425,-523,-1716,-1479,-8224], +[0,-5,-517], +[0,-8223,-8222,-17,-8221,-2014,-8220,-8219,-8218], +[1,3,9497], +[0,9498,9499,9500,4], +[0,-767,-394,-138], +[0,-51,-20,-56,-2711,-15,-81,-34], +[0,-1734,-2972,-978,-8217,-8216,-240,-548,-224,-671,-135,-174,-194,-37,-163,-431,-482,-584,-726,-1232,-254,-638,-263,-367, +-294,-183], +[1,3,9502], +[0,9503,29,9504,6], +[0,-3318,-891], +[0,-8215,-8214], +[1,3,9506], +[0,0,9507,9508,4], +[0,-110,-2252,-1,-12,-25,-55,-3,-15,-4,-2994], +[0,-8213,-4187,-2973,-8212,-4186,-1459], +[1,3,9510], +[0,9511,9512,9513,9], +[0,-1403,-116,-20,-238,-36,-8211,-3952,-1835,-242,-3783,-8210,-8209], +[0,-56,-66,-3,-611,-1656,-7,-27,-97], +[0,-99,-238,-8208,-3468,-1213,-111], +[1,3,9515], +[0,9516,9517,9518,8], +[0,-918,-8207,-8206,-742], +[0,-1015,-235,-556,-39], +[0,-743,-105,-2170,-3833,-59], +[1,3,9520], +[0,9521,9522,9523,6], +[0,-5084,-8205,-8204,-1603,-8203,-8202,-8201], +[0,-5276,-208,-79,-3,-27,-1,-2971,-1883,-1172,-58,-2,-5,-8200,-8199,-763,-2462,-8198], +[0,-4597,-4596,-1777,-8197,-5076,-5081,-831,-8196,-8195,-8194,-4721,-2405], +[1,3,9525], +[0,9526,9527,9528,4], +[0,-1116], +[0,-169,-98,-268,-4600,-1031,-8193,-8192,-4239,-152,-56,-26,-1,-8191,-66,-199,-8,-496,-4185,-288,-65,-440,-2,-2970,-594, +-17], +[0,-8190,-506,-270,-1253,-106,-8189,-8188,-8187,-8186,-8185,-5108,-5107,-551,-3870,-507,-2433,-8184,-3227,-452,-8183, +-8182,-8181,-165,-73,-723], +[1,3,9530], +[0,9531,9532,9533,8], +[0,-1116,-1283], +[0,-56], +[0,-506,-106], +[1,3,9535], +[0,9536,219,7,4], +[0,-1841,-756,-8180], +[1,3,9538], +[0,0,192,9539,4], +[0,-506,-1283], +[1,3,9541], +[0,0,9542,9543,4], +[0,-8,-977,-8179,-1,-288,-8178,-4,-498,-65,-1859,-3430,-12,-25], +[0,-632,-255,-506,-73,-45,-8177,-8176], +[1,3,9545], +[0,0,0,9546,4], +[0,-743,-1420], +[1,3,9548], +[0,9549,9550,9551,4], +[0,-467,-1189,-1,-206,-55,-4,-1328,-210,-362,-403,-3305,-493,-1327,-115,-4554,-2234,-83,-8175,-67,-150,-1071,-12,-4875, +-1626,-25,-2702,-309,-19,-2985,-4942,-1209], +[0,-417,-51,-118,-9,-534,-2574,-18,-359,-49,-1220,-634,-1127,-900,-62,-2487], +[0,-724,-37,-34,-5186,-5185,-5184,-354,-1049,-225,-217,-539,-117,-2453,-1,-509,-1048,-97,-3314,-280,-581,-1390,-1052, +-1389,-631,-45,-2], +[1,3,9553], +[0,0,9554,9555,4], +[0,-1247,-1338,-8174,-3], +[0,-2169,-506], +[1,3,9557], +[0,9558,9559,9560,10], +[0,-1751], +[0,-50,-11,-8173,-173,-21,-8172,-278,-8171,-8170,-59,-1,-199,-1148,-15,-8169], +[0,-948,-1075,-8168,-455], +[1,3,9562], +[0,9563,9564,9565,4], +[0,-58,-3852], +[0,-15,-36,-3,-1,-56,-112,-59], +[0,-1623,-1282,-941,-2980,-336,-667,-482,-777,-719,-437,-31,-2026,-4184], +[1,3,9567], +[0,0,9568,9569,4], +[0,-8167,-193,-1123,-489,-6282], +[0,-8166,-8165,-8164,-8163,-8162,-1255,-8161,-3789], +[1,3,9571], +[0,0,31,9572,10], +[0,-444,-494,-2007,-2525,-406,-670], +[1,3,9574], +[0,0,9575,9576,5], +[0,-357,-109,-162,-8160,-257,-8159,-458,-586,-69,-5,-8158,-517,-454,-22,-19,-13,-26,-830,-1,-181,-41,-4594,-28,-79,-3, +-524,-2835,-15,-890,-146,-211,-2,-1786,-17,-92,-205,-8157], +[0,-37,-294,-194,-4599,-254,-2417,-548,-8156,-174,-431,-5684,-4236,-638], +[1,3,9578], +[0,0,9579,9580,8], +[0,-8,-44,-1,-14,-4,-48,-86,-1333,-2,-11,-29,-5,-1832,-21,-83,-203,-232,-12,-319,-8155,-1095], +[0,-8154,-73,-1753], +[1,3,9582], +[0,9583,9584,9585,10], +[0,-28,-1353], +[0,-110,-2540,-2214], +[0,-259,-106,-8153,-8152], +[1,3,9587], +[0,9588,9589,235,5], +[0,-4013,-2355,-2593,-394,-4723,-518], +[0,-161,-140,-109,-69,-5,-22,-8151,-43,-13,-20,-4790,-26,-230,-1,-25,-2229,-4551,-3,-7,-2,-219,-8150], +[1,3,9591], +[0,0,9592,9593,4], +[0,-161,-140,-109,-69,-5,-22,-19,-43,-13,-26,-1,-2229,-3,-157,-7,-801,-1110,-2], +[0,-1062,-73,-96,-308,-37,-723,-854,-587,-1062], +[1,3,9595], +[0,9596,9597,7,4], +[0,-8149,-291,-475,-446,-20,-4782,-58,-8148,-36,-2350,-207,-571,-758,-704,-3554,-1142,-8147,-93,-72,-2836,-610,-6369, +-1635,-603,-8146,-113,-8145,-7,-8144,-16,-1293,-312,-886,-6293,-4774], +[0,-169,-94,-86,-98,-3523,-1032,-328,-8143,-8142,-712,-1187,-926,-1,-8141,-3350,-8140,-827,-8139,-500,-8138,-64,-420,-32, +-615,-2879,-2226,-363,-2878,-8,-911,-1516,-597,-17], +[1,3,9599], +[0,0,0,9600,8], +[0,-686,-6280,-202,-254,-158,-4271], +[1,3,9602], +[0,9603,9604,9605,11], +[0,-5623,-4632], +[0,-2255], +[0,-1787,-855,-245,-1426,-126], +[1,3,9607], +[0,9608,9609,263,5], +[0,-2969,-8137,-4183,-4182,-4181,-1189,-20,-58,-36,-118,-8136,-206,-8135,-3265,-468,-8134,-4180,-16,-285,-1482,-8133], +[0,-162,-1278,-5,-137,-4179,-43,-618,-1,-4178,-40,-166,-4,-900,-7,-27,-8132,-138,-2,-2409,-2410], +[1,3,9611], +[0,9612,9613,263,6], +[0,-20,-36,-118,-16,-88,-468,-3210,-600,-885,-650,-4180,-2213,-8131,-1453,-1278,-4183], +[0,-351,-166,-27,-30,-618,-200,-4,-210,-2657,-2,-2410,-162,-269,-137,-2409,-4179,-725,-2969,-3014,-4182,-633,-3869,-103, +-900], +[1,3,9615], +[0,0,14,9616,4], +[0,-2167,-8130,-8129,-37,-490,-509,-336,-2123,-8128,-8127,-165,-8126], +[1,3,9618], +[0,9619,9620,9621,11], +[0,-467,-149,-20,-2166,-23,-533,-4818,-8125,-8124,-2373,-8123,-8122,-1178,-230,-8121,-4805,-1676,-4181,-2523,-8120,-2969, +-8119,-1453,-596,-8118,-3869], +[0,-43,-34,-198,-27,-4178,-55,-56,-8117], +[0,-724,-37,-184,-684,-1398,-666,-111,-589,-959,-2385,-958,-114,-547,-300,-2682], +[1,3,9623], +[0,0,9624,9625,4], +[0,-8116,-477,-51,-20,-1566,-1180,-495,-4680,-164,-81,-34], +[0,-224,-671,-135,-174,-194,-37,-163,-240,-225,-548,-431,-584,-254,-638,-263,-367,-294,-183], +[1,3,9627], +[0,9628,101,9629,6], +[0,-58,-200], +[0,-6279,-99,-209,-46], +[1,3,9631], +[0,9632,9633,9634,4], +[0,-467,-20,-2901,-880,-1190,-138,-767,-394,-8115], +[0,-34,-3], +[0,-724,-37,-958,-1776,-8114,-8113,-2019,-2303,-240], +[1,3,9636], +[0,218,9637,9638,5], +[0,-82,-16,-3], +[0,-8112,-6278,-8111,-8110,-8109,-484,-8108,-2022], +[1,3,9640], +[0,0,0,9641,11], +[0,-2,-318,-409,-540,-3259], +[1,3,9643], +[0,9644,9645,9646,6], +[0,-201,-41,-563,-258], +[0,-6013,-109,-732,-735,-4177,-257,-8107,-69,-4176,-168,-13,-244,-503,-384,-619,-298,-1,-8106,-757,-3,-700,-158,-4,-134, +-33,-2], +[0,-258,-41,-99,-8105,-8104,-46], +[1,3,9648], +[0,9649,9650,9651,10], +[0,-291,-116,-36,-4302,-470,-79,-23,-261,-567,-113,-1106,-205], +[0,-182,-94,-1032,-268,-168,-619,-151,-1,-41,-32,-615,-530,-4566,-6439,-313,-363,-3,-700,-3939,-4421,-416], +[0,-75,-1090,-61,-4998,-1082,-2650,-4198,-1199,-91,-31,-585,-255,-24,-45,-857,-1420,-4744,-8103], +[1,3,9653], +[0,0,9654,7,4], +[0,-3845,-3842,-8102,-1040,-5,-4175,-116,-3098,-176,-816,-8,-3,-1517,-199,-146,-378,-3149,-489,-1790,-44,-30], +[1,3,9656], +[0,9657,9658,9659,8], +[0,-8101,-1403,-59,-3254,-8100,-135,-58,-384,-472,-36,-41,-8099,-5703,-8098,-5702,-2222,-379,-614,-3592,-8097,-5701,-23, +-608,-3927,-8096,-749,-8095,-3416,-688,-8094,-1622,-744,-1782,-742,-2168,-8093], +[0,-838,-8092,-8091,-3,-645,-39,-71,-8090], +[0,-976,-61,-91,-375,-3,-1233], +[1,3,9661], +[0,9662,40,9663,5], +[0,-714,-2274,-1035,-2290,-1868,-16,-687,-44], +[0,-1083,-1727,-1726,-1252,-1251,-2100,-1725,-1724,-784,-2099,-2098], +[1,3,9665], +[0,9666,40,164,6], +[0,-20,-44,-1035,-16,-55,-714,-1993,-839,-2290,-1971,-3641], +[1,3,9668], +[0,9669,40,9670,4], +[0,-44,-1035,-16,-912,-93,-714,-164,-3740,-1832,-518,-5950,-1914,-3741,-1005,-2290], +[0,-1083,-1727,-1726,-1252,-1251,-2100,-1725,-8089,-784,-2098], +[1,3,9672], +[0,9673,9674,9675,9], +[0,-44,-1035,-16,-714,-2274,-6277,-2290], +[0,-1313,-746], +[0,-1727,-1726,-1252,-8088,-1724,-784,-2099,-2098], +[1,3,9677], +[0,9678,9679,9680,11], +[0,-8087,-8086,-44], +[0,-8085,-8084,-5841,-1109], +[0,-8083,-6,-4174,-4173,-485,-4931,-1212,-2305,-8082,-4172,-4171], +[1,3,9682], +[0,9683,9684,9685,11], +[0,-8081,-241,-6,-35,-8080,-6322,-8079], +[0,-5,-47,-87,-1,-3103,-38,-557,-2], +[0,-1685,-659,-4329,-1685,-61,-1963,-4328,-358,-4327,-4326,-3617,-4325,-3089,-1080], +[1,3,9687], +[0,9688,0,9689,4], +[0,-764,-121,-90,-2693,-6007,-2694], +[0,-6,-108,-953,-1865], +[1,3,9691], +[0,9692,190,9693,11], +[0,-1408,-5458,-8078], +[0,-45,-166,-165,-1602,-42], +[1,3,9695], +[0,9696,9697,264,4], +[0,-90,-1751], +[0,-29,-8], +[1,3,9699], +[0,9700,9701,9702,4], +[0,-90,-8077,-121,-439,-44], +[0,-2735,-3522,-2724,-2690,-2766,-4170,-3283,-2936,-203,-80,-4039,-330,-155,-4169,-122,-317,-29,-972,-47,-22,-19,-1266, +-8076,-4168,-1184,-618,-26,-502,-1,-2743,-64,-420,-8075,-4167,-1434,-5191,-65,-491,-1730,-6,-35,-439,-234,-286,-801, +-1110,-2], +[0,-8074,-6,-5477,-8073,-8072,-2129,-1409,-4436,-8071,-1248,-8070,-3028,-8069], +[1,3,9704], +[0,90,0,9705,9], +[0,-951,-1248,-3638,-3138,-24,-2047,-8068,-336,-45,-270,-8067,-8066,-2302,-8065,-8064,-38,-218,-8063,-8062,-1409,-1597, +-4166,-414,-8061], +[1,3,9707], +[0,9708,9709,9710,9], +[0,-6196,-4165,-4164,-767,-8060,-276,-210,-8059], +[0,-4163,-877,-1274,-8058,-4162,-8057,-2], +[0,-4161,-2105,-132,-141,-91,-46,-53,-4160,-4159], +[1,3,9712], +[0,0,0,9713,8], +[0,-550,-217,-8056,-1638,-733,-1253,-8055,-8054,-8053,-2494,-8052], +[1,3,9715], +[0,9716,9717,264,5], +[0,-11,-3037,-90,-1751,-8051,-8050,-8049,-8048,-6272,-8047,-8046,-8045,-2939,-8044,-2161,-8043,-728,-4158,-2160,-2271, +-788,-3152,-2968,-537,-2967,-160,-98,-8042,-2608,-305,-20,-58,-159,-144,-1343,-215,-1024,-40,-28,-380,-8041,-1013,-346, +-911,-2863,-23,-377,-236,-8040,-188,-149,-38,-2196,-1808,-561,-492,-2315,-4,-397,-2543,-1302,-692,-640, +-1225,-689,-272,-154,-4157,-392,-8039,-195,-104,-4578,-17,-520,-170,-2588], +[0,-8038,-3768,-185,-142,-8037,-955,-1220,-1903,-1432,-262,-810,-157,-7], +[1,3,9719], +[0,34,9720,9721,5], +[0,-1357,-80,-231,-63,-232,-1279,-29,-47,-22,-19,-1741,-535,-445,-1,-12,-10,-25,-64,-8,-176,-79,-15,-4,-6,-35,-7,-14,-895, +-870,-5938,-301,-640,-890,-57,-211,-33,-44,-124,-17,-92,-170,-1356,-4048], +[0,-1934,-546,-871,-106,-1261,-53,-114,-336,-1260,-814,-318,-1259,-679,-1258], +[1,3,9723], +[0,34,9724,9725,4], +[0,-11,-21,-140,-513,-29,-5,-22,-19,-4156,-4155,-4154,-1892,-858,-2589,-159,-26,-1,-12,-10,-4153,-825,-8,-176,-4,-7,-14, +-273,-895,-301,-640,-2966,-57,-44,-124,-2,-74,-1356], +[0,-74,-873,-4152,-546,-871,-106,-1261,-53,-114,-336,-1260,-814,-318,-1259,-679,-1258], +[1,3,9727], +[0,34,9728,9729,8], +[0,-11,-21,-140,-109,-29,-69,-5,-22,-19,-4156,-4155,-8036,-4154,-1892,-858,-2589,-13,-26,-1,-12,-10,-4153,-825,-65,-4,-7, +-14,-273,-895,-301,-640,-2966,-8035,-44,-124,-2,-74,-1356,-6269], +[0,-74,-873,-4152,-546,-871,-106,-1261,-53,-114,-336,-1260,-814,-318,-1259,-679,-1258,-585,-24,-1292], +[1,3,9731], +[0,9732,9733,9734,5], +[0,-246,-936,-4920,-607,-483,-2527], +[0,-408,-5,-43,-4474,-4,-147,-260,-2473,-233,-210,-2,-1396,-34], +[0,-505,-428,-578,-132,-202,-31,-165,-8034], +[1,3,9736], +[0,0,9737,9738,4], +[0,-1,-3,-15,-27], +[0,-3896,-8033,-8032,-4272,-8031,-46], +[1,3,9740], +[0,0,0,9741,4], +[0,-8030,-8029,-8028,-8027,-8026,-8025,-8024,-8023,-42,-100], +[1,3,9743], +[0,9744,9745,9746,6], +[0,-2367,-3154,-4151,-36,-3156,-758,-1305,-889,-71,-44,-977], +[0,-2118,-2117,-296,-295,-162,-3153,-2325,-29,-5,-2333,-2366,-1976,-3280,-1,-8,-4,-120,-57,-2], +[0,-333,-282,-37,-95,-300,-2365,-484], +[1,3,9748], +[0,9749,0,9750,5], +[0,-246,-8022,-3022,-2875,-2965,-1078,-483], +[0,-428,-31,-2965,-4218,-100,-2348,-841,-107,-374,-931,-274,-8021,-133], +[1,3,9752], +[0,9753,9754,9755,5], +[0,-3968,-461], +[0,-51,-152,-2,-34], +[0,-1371,-174,-8020,-37,-668,-280,-240,-5685,-194], +[1,3,9757], +[0,9758,9759,9760,11], +[0,-1961,-1909], +[0,-310,-4616,-487,-283,-48,-357,-252,-1057,-330,-155,-122,-8019,-29,-5,-47,-4438,-22,-19,-2376,-1,-12,-3034,-64,-190, +-1549,-55,-9,-8,-176,-18,-241,-4,-6,-35,-1100,-7,-16,-2,-83], +[0,-2165,-6,-682,-113,-433,-865], +[1,3,9762], +[0,0,9763,9764,5], +[0,-5,-800,-1295,-171,-2], +[0,-2,-540,-635,-2406,-773,-1386,-450,-1213,-318,-46,-184,-106,-3490,-299,-510,-5520,-2359,-851,-2311,-8018,-8017], +[1,3,9766], +[0,9767,9768,9769,4], +[0,-8016,-8015,-8014], +[0,-427,-577,-357,-1,-117,-1140,-3,-416,-5160,-81,-112], +[0,-2981,-8013,-91,-1059,-1507,-2289,-4258,-1101,-8012,-8011,-8010,-8009,-8008,-8007,-8006], +[1,3,9771], +[0,0,9772,9773,4], +[0,-79,-113,-1798], +[0,-31,-3173,-3185], +[1,3,9775], +[0,9776,9777,9778,4], +[0,-1158,-8005,-4905,-394,-8004,-8003,-8002,-1414,-8001,-8000,-7999,-7998,-7997,-7996,-7995,-7994,-7993,-7992,-7991,-2403, +-4200,-7990,-7989,-7988,-5048,-7987,-7986,-7985], +[0,-43,-118,-27,-7984,-1573,-1,-237,-7983,-499,-4,-252,-660,-26,-125,-373,-3127,-2,-5,-7982,-7981,-269,-5969,-4661,-7980, +-954,-7979,-7978,-7977,-7976,-7975,-7974,-4285,-7973,-7972,-861], +[0,-7971,-52,-1904], +[1,3,9780], +[0,9781,9782,9783,4], +[0,-7970,-7969,-215,-649,-188,-5868], +[0,-7968,-7967,-5,-955,-1,-3429,-4,-7,-153,-2,-30], +[0,-1441,-1985,-733], +[1,3,9785], +[0,9786,9787,9788,8], +[0,-36,-689,-44,-96,-40,-58,-188,-7966,-2367,-1511,-3155,-7965], +[0,-417,-8,-9,-372,-1,-7,-57,-4,-2,-29,-5,-162,-2333,-1204,-366,-185,-955,-7964,-2118,-2117,-22], +[0,-1529,-3743,-7963,-95,-484,-741,-7962], +[0,25,9790], +1753574400000, +[1,3,9792], +[0,9793,0,93,4], +[0,-267,-704,-121,-642,-6,-35,-439,-595], +[1,3,9795], +[0,9796,0,9797,10], +[0,-44,-7960,-7959,-7958], +[0,-5624,-380,-209,-52,-141,-335,-2], +[1,3,9799], +[0,9800,9801,221,5], +[0,-4863,-7957,-4859,-3155,-2367,-4862,-4861,-4864,-4860,-3154,-20,-36,-207,-3156,-4866,-23,-149,-1458,-2424,-16,-889, +-4865,-2388,-688,-312,-44], +[0,-162,-1201,-3153,-29,-142,-5,-137,-2366,-3721,-1423,-8,-496,-18,-7,-130,-57,-2], +[1,3,9803], +[0,34,9804,9805,5], +[0,-7956,-7955,-7954,-5173,-2283,-2282,-2281,-2942,-22,-19,-51,-535,-1,-12,-10,-25,-7953,-15,-4,-7,-489,-146,-44,-124,-2, +-1356], +[0,-192,-546,-871,-106,-1261,-53,-114,-336,-1260,-814,-318,-1259,-679,-1258], +[1,3,9807], +[0,9808,9809,9810,4], +[0,-3278,-23], +[0,-5,-22,-19,-1,-12,-10,-25,-4,-7,-14,-895,-301,-640,-44,-124,-2,-1356], +[0,-546,-871,-106,-1261,-53,-114,-336,-1260,-814,-318,-1259,-679,-1258], +[1,3,9812], +[0,9813,9814,65,5], +[0,-224,-1282], +[0,-2654,-171,-1287], +[1,24,9816], +[0,25,9817], +1738454400000, +[1,3,9819], +[0,9820,9821,9822,4], +[0,-90,-1100], +[0,-7952,-6,-1,-152,-33,-4,-26,-35,-7951,-2,-1434,-47,-4167,-87,-7950,-286,-1639,-19,-1765,-22], +[0,-61,-6,-682,-388,-857], +[1,3,9824], +[0,9825,0,9826,8], +[0,-7949,-7948,-7947], +[0,-4765,-2374,-4557,-3171,-5432,-5033,-39,-7946,-389,-7945,-592,-4185,-4667,-2029,-3092,-2040,-1990,-7944,-7943,-126, +-7942,-4150,-3115,-436,-6122,-7941,-444,-270,-593,-4173,-5428,-4656,-3019,-318,-7940,-7939,-1410,-4174,-4383,-627,-865, +-258,-2034,-1938,-1654,-1420,-2413,-7938,-3077,-7937,-1662,-5622,-987,-1467,-7936,-7935,-254,-494,-921,-1957,-2456,-202, +-361, +-3402,-745,-942,-2578,-2382,-2036,-2124,-1929,-7934,-163,-3066,-5433,-868,-7933,-1373,-5030,-5503,-1271,-2326,-2008, +-3065,-4491,-7932,-1975,-7931,-2311,-485,-58,-360,-2580,-1991,-4171,-5138,-3246,-3060,-2512,-5427,-5382,-99,-853,-37, +-2972,-7930,-1633,-1212,-7929,-245,-7928,-73,-1690,-2681,-7927,-44,-685,-4852,-5542,-5832,-7926,-5490,-4762,-3438,-5426, +-1221,-2998, +-3116,-1913,-1226,-756,-4337,-814,-540,-111,-240,-3690,-1399,-511,-5139,-869,-778,-5423,-1353,-7925,-7924,-1415,-5429, +-774,-878,-1067,-261,-300,-78,-2995,-3009,-7923,-1277,-1428,-7922,-7921,-851,-4472,-3259,-4768,-1573,-542,-6123,-727, +-2180,-2506,-1645,-7920,-2319,-4560,-5961,-5422,-1217,-60,-509,-7919,-1265,-2110,-4559,-7918,-2685,-4657,-3461,-3403, +-940,-61, +-1391,-5416,-3510,-7917,-682,-4526,-4760,-7916,-2613,-638,-4764,-1050,-7915,-2338,-255,-5043,-3346,-529,-8,-199,-1094, +-1065,-1030,-1756,-1109,-5420,-3315,-4564,-5325,-158,-659,-603,-1649,-546,-407,-5434,-5137,-549,-3482,-7914,-7913,-430, +-7912,-4376,-5504,-3316,-183,-305,-5431,-267,-849,-7911,-4187,-7910,-1927,-7909,-5962,-2988,-5409,-1403,-5621,-2996, +-2973,-7908, +-2231,-4767,-219,-3440,-1931,-4377,-2455,-1045,-5338,-437,-2997,-7907,-172,-2670,-380,-5424,-4310,-1082,-4381,-726,-2596, +-1605,-5421,-7906,-3248,-2305,-854,-4556,-608,-5482,-7905,-7904,-7903,-7902,-4379,-1642,-5093,-1995,-85,-1062,-7901, +-1664,-303,-322,-948,-683,-2492,-464,-4149,-548,-642,-4558,-786,-2999,-1855,-3126,-3042,-1644,-1948,-1406,-3010,-7900, +-5415,-225, +-1753,-2150,-3131,-338,-7899,-1164,-1949,-3157,-106,-951,-3061,-433,-2048,-1657,-5425,-405,-1004,-3,-1717,-113,-7898, +-1222,-1465,-4766,-2028,-5430,-550,-7897,-4524,-5381,-7896,-595,-236,-1615,-24,-3474,-1987,-4372,-4276,-7895,-5833,-4336, +-116,-141,-79,-2109,-4378,-5963,-7894,-5483,-7893,-1624,-1623,-846,-1380,-4186,-4172,-3036,-1958,-431,-370,-7892,-2643, +-5418, +-7891,-3481,-2538,-4879,-3057,-5411,-7890,-2327,-7889,-409,-2025,-95,-850,-3091,-159,-339,-7888,-13,-5410,-5199,-7887, +-1419,-3445,-4463,-1641,-7886,-263,-4525,-7885,-7884,-650,-7883,-3749,-7882,-3734,-2590,-676,-1631,-3161,-7881,-978, +-7880,-7879,-4921,-7878,-7877,-672,-334,-7876,-4761,-128,-4234,-4462,-223,-1992,-5694,-669,-3273,-135,-2108,-4923,-4380, +-4237,-5413, +-3062,-7875,-7874,-349,-1368,-401,-353,-7873,-674,-7872,-2412,-1253,-1630,-2504,-160,-3018,-986,-7871,-3064,-471,-698, +-5417,-2044,-4612,-280,-7870,-7869,-3437], +[1,3,9828], +[0,0,9829,9830,4], +[0,-117,-2453,-3], +[0,-240,-31], +[1,3,9832], +[0,9833,9834,9835,5], +[0,-269,-27,-44], +[0,-4318,-1268,-4317,-4316,-4314,-4313,-7868,-124], +[0,-1227,-1033,-61,-307,-5120,-7867], +[1,3,9837], +[0,0,9838,9839,8], +[0,-232,-20,-7866,-40,-28,-32,-3978,-7865,-7,-14,-415,-301,-175,-44,-196,-2], +[0,-300,-1444,-7864,-7863,-111,-282,-4602,-45,-414,-4148,-95,-1026,-107,-1284,-6043], +[1,3,9841], +[0,0,0,9842,5], +[0,-194,-95,-36], +[1,3,9844], +[0,9845,9846,9847,8], +[0,-168,-384,-36,-1868,-3659,-1018,-495,-748,-258], +[0,-357,-7862,-6129,-4040,-3828,-1582,-5978,-359,-160,-4007,-1,-12,-2886,-55,-38,-4,-6355,-459,-220,-2785,-557,-2,-104, +-30], +[0,-99,-46,-105,-881,-205,-410,-335], +[1,3,9849], +[0,0,9850,9851,6], +[0,-11,-21,-49,-62,-160,-98,-1031,-4465,-13,-7861,-1182,-7860,-298,-7859,-32,-7858,-615,-7857,-7856,-1009,-654,-530,-1162, +-1161,-2227,-2879,-2226,-1538,-314,-1007,-1537,-7855,-313,-653,-6433,-7854,-9,-7853,-101,-495,-3,-1821,-7852,-1241,-38, +-2820,-2809,-416,-14,-273,-1457,-2745,-7851,-27,-2111,-7850,-70,-7849,-17,-2471], +[0,-24,-432,-77,-270,-636,-6046,-52,-5532,-7848,-7847], +[1,3,9853], +[0,9854,9855,9856,9], +[0,-20,-7846], +[0,-7845,-103,-9,-18,-4,-2,-30], +[0,-37,-224,-135,-671,-294,-194,-584,-7844,-7843,-263,-367,-254,-163,-225,-548,-174], +[1,3,9858], +[0,9859,9860,9861,8], +[0,-2692,-7842,-2848,-121], +[0,-50,-11,-161,-781,-216,-3037,-1196,-4456,-1096,-6081,-3803,-6085,-21,-136,-4147,-487,-283,-48,-2964,-4425,-7841,-4146, +-7840,-950,-2093,-7839,-330,-155,-122,-7838,-317,-29,-1712,-5,-47,-87,-2688,-169,-86,-98,-3276,-7837,-5789,-4145,-1878, +-535,-660,-159,-26,-151,-1,-266,-12,-827,-10,-148,-25,-64,-190,-1549,-40,-55,-7836, +-8,-1710,-496,-176,-7835,-79,-38,-235,-4,-441,-6,-1302,-35,-439,-7834,-342,-600,-746,-888,-7833,-2780,-7832,-2987,-57, +-211,-2,-17,-92,-170], +[0,-6266,-7831,-7830,-129,-369,-2667,-52,-6,-1445,-7829,-740,-7828,-7827,-7826,-7825,-1248,-7824,-7823,-7822,-224,-540, +-679,-5855,-7821,-102,-2719,-5846,-7820,-888], +[1,3,9863], +[0,0,0,9864,4], +[0,-1610,-1610,-31,-1056,-195], +[1,3,9866], +[0,0,9867,9868,4], +[0,-7819,-54,-243,-656,-532,-2230,-177,-347,-302,-7818,-2881], +[0,-4213,-4214,-7817,-1901,-2128,-1444,-3491,-3032,-1365,-249,-3269,-636,-95], +[1,3,9870], +[0,9871,9872,254,11], +[0,-38,-2162,-3891,-957,-1183,-2539], +[0,-205,-836,-810,-324,-312,-258,-2513,-28,-802,-132,-208,-1476,-475,-36,-709,-276,-4340,-293,-299,-1569,-352,-422,-914, +-646,-1300,-16,-175,-2084,-349,-1749,-1125,-287,-17,-988,-1497,-4339,-4356,-252,-454,-58,-26,-1160,-1926,-1930,-1943, +-323,-746,-1905,-7816,-3656,-1423,-3012,-4346,-144,-1774,-614,-1471,-1840,-4341,-130,-138,-885,-2, +-3145,-11,-715,-458,-4347,-1966,-3552,-1577,-2764,-384,-230,-1321,-462,-3011,-749,-3501,-2301,-2124,-479,-3756,-2361, +-4355,-1754,-162,-4351,-47,-98,-305,-4345,-924,-4344,-813,-4342,-901,-1962,-154,-1101,-4354,-2624,-142,-137,-4343,-2432, +-3500,-692,-1225,-3499,-90,-4353,-7815,-3498,-563,-2544,-3497,-577,-1732,-4282,-4348,-1658,-3496,-697,-2543,-879,-4360, +-357,-950,-623,-87,-2871,-3495,-1511,-538,-21,-3001,-3014,-1875,-759,-890,-1920,-2542,-2541,-1240,-729,-735,-945,-3448, +-2503,-805,-136,-4364,-2275,-3650,-1739,-4350,-3013,-1027,-1502,-342,-161,-1903,-3494,-465,-2666,-3820,-4363,-4359,-2964, +-4349,-4210,-2497,-1394,-392,-4362,-7814,-3142,-2360,-2495,-1504,-2758,-4358,-3016,-377,-974,-140,-4361,-1625,-7813, +-1381, +-4357,-2093,-4352,-4365,-1715,-2608,-2644,-1965,-3486,-173,-2498,-3015,-2195,-1195,-3809,-7812,-1096,-391,-6086,-3807, +-3806,-834], +[1,3,9874], +[0,0,9875,9876,10], +[0,-43,-2300,-9,-18,-38,-34], +[0,-38,-24,-218,-4725], +[1,3,9878], +[0,9879,9880,9881,9], +[0,-238,-3838,-7811,-467,-344,-164,-637,-4470,-285], +[0,-49,-62,-48,-296,-845,-295,-737,-582,-1058,-1089,-5,-3580,-7810,-22,-19,-26,-1,-115,-118,-55,-9,-4238,-18,-991,-4,-7, +-120,-2,-30], +[0,-2676,-157,-7809,-741,-7808,-282,-333,-7807,-7806,-7805,-281,-2850,-95,-3006,-7804,-7803], +[1,3,9883], +[0,9884,9885,9886,9], +[0,-7802,-7801,-299,-3636,-228,-440,-5863,-7800], +[0,-11,-161,-21,-98,-7799,-1878,-4850,-144,-1,-266,-2307,-10,-3146,-277,-5976,-346,-7798,-154,-392,-2970,-17,-520,-92, +-170], +[0,-3761,-5992,-5991,-2685,-1087,-1740,-42,-7797,-7796,-6263,-545,-7795,-7794,-7793,-7792,-7791,-7790,-7789], +[1,3,9888], +[0,94,9889,9890,5], +[0,-11,-161,-90,-1,-266,-12,-10,-148,-25,-64,-190,-8,-1760,-4,-6,-234], +[0,-234,-108,-932,-6,-95,-282,-333,-102,-4726,-3186,-4148,-4144,-3031,-485], +[1,3,9892], +[0,0,9893,9894,5], +[0,-11,-21,-90,-7788,-3030,-1,-9,-18,-6,-234,-2], +[0,-234,-108,-932,-6,-95,-282,-333,-102,-4231,-7787,-2524,-7786], +[1,3,9896], +[0,0,9897,9898,11], +[0,-11,-161,-216,-391,-173,-21,-136,-203,-80,-63,-155,-122,-160,-304,-298,-1,-12,-3034,-25,-64,-190,-1549,-9,-1005,-8,-18, +-38,-4,-121,-6,-35,-14,-870,-7785,-3797,-1246,-179,-558], +[0,-6,-2991,-7784,-1256,-6,-129,-4143,-95,-282,-333,-7783,-7782,-7781,-7780], +[1,3,9900], +[0,9901,9902,9903,9], +[0,-90,-7779,-7778], +[0,-11,-306,-173,-21,-136,-140,-1627,-366,-7777,-155,-122,-47,-87,-22,-19,-537,-94,-475,-26,-1,-12,-25,-64,-9,-8,-176,-18, +-4,-6,-35,-7,-2,-104], +[0,-7776,-7775,-6,-108,-4166], +[1,3,9905], +[0,9906,9907,9908,6], +[0,-446,-7774,-210], +[0,-310,-487,-48,-7773,-1040,-43,-20,-6507,-473,-89,-1,-12,-25,-118,-55,-9,-199,-18,-647,-4,-7,-1632,-2,-83], +[0,-1043,-390,-42,-114,-100,-969,-1728], +[1,3,9910], +[0,9911,9912,9913,11], +[0,-2272,-304,-7772,-515,-1018,-1004,-898,-2808,-3026,-1909,-7771], +[0,-50,-11,-21,-136,-140,-90,-4147,-4715,-1209,-487,-48,-4435,-7770,-2272,-965,-2964,-2934,-1081,-4283,-6171,-7769,-2640, +-7768,-7767,-7766,-155,-122,-317,-7765,-4367,-7764,-5,-47,-87,-1658,-537,-1079,-103,-98,-4142,-1965,-305,-4145,-26,-5364, +-3411,-3410,-207,-1,-7763,-12,-251,-10,-181,-148,-25,-64,-190,-7762,-2645,-28,-55,-9, +-79,-18,-228,-398,-4,-6,-35,-439,-898,-7,-746,-392,-211,-796,-2,-83,-5523,-30,-4141,-17,-520,-92], +[0,-6,-516,-2974,-108], +[1,3,9915], +[0,9916,9917,9918,4], +[0,-7761], +[0,-7760,-7759,-7758,-7757,-80,-63,-317,-5811,-5810,-7756,-7755,-5809,-7754,-7753,-43,-13,-7752,-7751,-1,-7750,-10,-79, +-3080,-3,-4,-14,-7749,-801,-27,-186,-1110,-175,-2], +[0,-7748,-3653,-1706,-4494,-3652,-4150,-7747,-1682,-52,-4501,-1054,-271,-7746,-1904,-1673,-1067,-3612,-7745,-7744], +[1,3,9920], +[0,0,9921,9922,6], +[0,-11,-1230,-21,-14,-273,-1117,-341,-2780,-7743,-2987,-112], +[0,-4140,-4139,-1212,-6392,-192,-7742,-6,-74,-3769], +[1,3,9924], +[0,9925,9926,9927,4], +[0,-90,-7741,-1714,-574,-468,-7740,-1107,-437], +[0,-1097,-216,-173,-21,-140,-49,-62,-790,-203,-80,-4138,-231,-63,-232,-7739,-7738,-7737,-7736,-1278,-5,-963,-2628,-3521, +-22,-19,-949,-3586,-103,-964,-5677,-1892,-4211,-2292,-858,-160,-201,-446,-2603,-503,-289,-26,-502,-298,-36,-7735,-89,-1, +-191,-12,-10,-25,-825,-708,-9,-79,-222,-18,-1828,-7734,-1130,-38,-4,-440, +-7733,-342,-7,-14,-4306,-870,-3646,-1223,-7732,-5469,-1246,-7731,-7730,-226,-2966,-892,-7729,-44,-2,-104,-7728,-30,-74, +-979,-882,-1424], +[0,-74,-95,-7727], +[1,3,9929], +[0,9930,9931,9932,5], +[0,-5740,-501,-249], +[0,-11,-21,-3180,-1711,-160,-1033,-7726,-618,-26,-382,-502,-5274,-215,-1,-12,-84,-10,-76,-25,-67,-131,-288,-38,-2824,-696, +-7725,-2196,-1504,-7724,-561,-1503,-7723,-2315,-4,-7,-14,-273,-463,-1117,-2420,-7722,-341,-1956,-7721,-226,-5739,-321, +-179,-2154,-2783], +[0,-5733,-126,-7720,-2963,-7719,-1212,-1637,-281,-7718,-2621,-95,-3032,-1053,-952,-4497,-5065,-249], +[1,3,9934], +[0,9935,9936,9937,5], +[0,-201,-756,-23,-88,-489], +[0,-13,-1,-3697,-72,-3,-597], +[0,-785,-658,-37,-625,-2408,-4522,-7717,-105,-4539,-7716,-5032,-3572,-1215,-1918,-1615,-722,-7715,-2304], +[1,3,9939], +[0,0,9940,9941,4], +[0,-160,-1031,-32,-7714,-6447,-820,-1325,-1538,-314,-1007,-313,-2468,-7713,-2823,-179,-558,-96], +[0,-6260,-7712,-7711,-24,-222,-95], +[1,3,9943], +[0,0,0,9944,6], +[0,-6,-1255,-1202,-1721,-322,-952], +[1,24,9946], +[0,25,9947], +1731196800000, +[1,3,9949], +[0,9950,9951,7,8], +[0,-7710,-2664,-2104,-7709,-7708,-7707,-5912,-7706,-304,-1687,-7705,-229,-486,-2223,-2965,-908,-2343,-1134,-2595,-7704, +-7703,-6268,-5911,-3903,-864,-521,-7702,-7701,-7700,-3011,-863,-285,-2306,-796,-7699,-340,-7698,-259,-258], +[0,-5777,-122,-329,-246,-408,-7697,-47,-517,-537,-7696,-1611,-3182,-241,-6,-35,-133,-30,-7695], +[1,3,9953], +[0,9954,0,9955,4], +[0,-4490], +[0,-6495,-7694,-7693,-2018,-3553,-4259,-7692,-7691,-2163], +[1,3,9957], +[0,9958,9959,204,4], +[0,-1245,-323], +[0,-320,-5,-623,-229,-2962,-28,-1108,-371,-2], +[1,3,9961], +[0,0,0,9962,8], +[0,-2,-635,-75,-456,-350], +[1,3,9964], +[0,9965,37,9966,4], +[0,-7690,-44], +[0,-7689,-7688,-7687,-7686,-7685,-2,-2613,-73,-5506,-2385,-4137,-1630,-270,-3291,-7684,-46,-184], +[1,3,9968], +[0,0,28,9969,10], +[0,-1366,-127,-53,-369,-241,-399,-6,-4434,-1198,-102,-867], +[1,3,9971], +[0,108,28,9972,8], +[0,-354,-127,-53,-2107,-369,-241,-399,-6,-389,-5932,-102,-867], +[1,3,9974], +[0,9975,28,9976,5], +[0,-6346], +[0,-127,-5273,-6486,-53,-369,-241,-399,-6,-102,-867,-1053], +[1,3,9978], +[0,266,28,9979,8], +[0,-127,-53,-369,-241,-399,-1314,-361,-6,-102,-867], +[1,3,9981], +[0,266,28,9982,4], +[0,-7683,-127,-53,-369,-241,-399,-6,-720,-102,-867], +[1,3,9984], +[0,0,28,9985,4], +[0,-127,-53,-369,-241,-399,-6,-7682,-3137,-7681,-102,-867], +[1,3,9987], +[0,9988,9989,9990,4], +[0,-1135], +[0,-50,-11,-391,-21,-140,-309,-729,-7680,-359,-6151,-5,-22,-19,-1,-12,-10,-181,-115,-7679,-3556,-343,-7,-2,-30], +[0,-7678,-398,-502,-3,-30,-8,-199,-3936,-2330,-4136,-4660,-75,-2397,-946,-61,-7677], +[1,3,9992], +[0,9993,9994,9995,6], +[0,-7676,-4135,-7675,-4134,-3021,-2961], +[0,-7674,-257,-5,-4133,-4132,-4131,-41,-7,-371,-2,-30], +[0,-2961,-41,-46,-627,-99,-1041,-2,-45,-332], +[1,3,9997], +[0,0,9998,9999,11], +[0,-417,-2352,-97,-75,-7673], +[0,-95,-1200,-280,-91], +[1,3,10001], +[0,10002,10003,10004,5], +[0,-483,-133,-246,-2875,-2414,-4417,-1111,-1078,-3022], +[0,-43,-1,-374,-4,-398,-147,-2,-5,-2527,-3023,-3024,-2337,-7672], +[0,-42,-2106,-2587,-107,-374,-931,-274,-133], +[1,3,10006], +[0,10007,10008,10009,5], +[0,-7671,-7670,-7669,-7668,-7667,-7666,-7665,-7664,-7663,-7662,-7661,-7660], +[0,-50,-196,-2], +[0,-7659,-2741,-3044,-627,-45,-1600,-5224,-7658,-95], +[1,3,10011], +[0,10012,0,93,11], +[0,-2769,-4130,-267,-4129,-704,-121,-642,-6,-35,-439,-595], +[1,3,10014], +[0,10015,0,93,10], +[0,-6,-35,-121,-2769], +[1,3,10017], +[0,10018,0,10019,8], +[0,-44,-1838,-4050,-649], +[0,-1529,-52,-192,-95,-300,-2116,-3743,-1026,-3742,-2676], +[1,24,10021], +[0,25,10022], +1733616000000, +[0,25,10024], +1733961600000, +[1,24,10026], +[0,25,10027], +1734220800000, +[1,3,10029], +[0,0,10030,10031,4], +[0,-395,-77,-1280,-44,-1,-7,-14,-2806,-175,-288,-38,-40,-4,-476,-26,-179,-2,-1745,-65,-696,-3504,-160,-289,-2714,-1140, +-2551,-1335,-7657,-10,-150,-5533,-319,-19,-2985,-3785,-22], +[0,-24,-77,-636,-3263,-271,-1445,-52,-7656,-2335], +[1,3,10033], +[0,10034,10035,10036,4], +[0,-90,-7655,-7654], +[0,-50,-11,-216,-622,-1230,-173,-480,-21,-178,-109,-69,-5,-94,-98,-355,-833,-7653,-7652,-59,-13,-244,-3038,-26,-1,-41, +-3695,-79,-3,-15,-113,-7,-800,-392,-2,-594,-744,-17,-92], +[0,-1073,-95,-99,-3104,-7651], +[1,3,10038], +[0,0,10039,10040,11], +[0,-43,-13,-289,-56,-89,-1,-79,-6403,-3,-77], +[0,-45,-95,-282,-333,-5092], +[1,3,10042], +[0,10043,10044,10045,6], +[0,-694,-224,-574,-4128,-23,-267,-7650,-2201,-7649,-7648,-7647,-5485,-691,-7646], +[0,-2087,-6,-35,-47,-142,-90,-87,-7645,-122,-155,-317,-1477,-1468], +[0,-6,-1429,-108,-6255,-7644,-7643,-129,-127,-102,-52,-53,-95], +[1,3,10047], +[0,10048,10049,93,4], +[0,-2769,-4130,-7642,-6257,-6256,-267,-704,-121,-642,-6,-35,-595,-4129], +[0,-7641,-7640,-7639], +[1,3,10051], +[0,0,10052,10053,4], +[0,-6072,-4,-14,-273,-5724,-984], +[0,-53,-1369,-3058], +[1,3,10055], +[0,10056,10057,10058,4], +[0,-5452], +[0,-122,-47,-87,-144,-3987,-9,-6,-35,-2813,-154,-211,-3253,-44,-2,-17,-1271], +[0,-1409,-7638,-7637,-7636,-129,-636,-95,-414,-1409,-2129,-2960,-3028], +[1,3,10060], +[0,10061,10062,10063,10], +[0,-1247,-20,-58,-118,-40,-523,-397,-16,-284,-219,-880,-2169,-977], +[0,-4127,-960,-43,-28,-55,-5541,-1393,-604], +[0,-6254,-7635,-7634,-95,-282,-7633,-333], +[1,3,10065], +[0,10066,0,10067,4], +[0,-1307,-4534,-3052,-7632], +[0,-1364,-738,-367,-114,-42,-1363,-1362], +[1,3,10069], +[0,10070,10071,10072,9], +[0,-7631,-7630,-7629,-6570,-7628,-6097,-930,-4585,-193,-58,-1979,-7627,-7626,-5605,-101,-4751,-1522,-93,-188,-7625,-641, +-3109,-16,-600,-33,-2], +[0,-1,-145,-64,-2887,-40,-8,-815,-997,-7,-7624], +[0,-2730,-42,-114,-100,-3226], +[1,3,10074], +[0,10075,10076,10077,5], +[0,-2510,-3291,-149,-1348,-20,-118,-1142,-564,-44,-23,-16,-159,-397,-17,-119,-40,-3884,-58,-3959,-661,-1868,-501,-897, +-1225,-519,-7623,-596,-7622,-559,-7621,-3758,-7620,-3718,-170,-7619,-346,-7618,-7617,-520,-7616,-7615,-7614], +[0,-1974,-5295,-87,-5979,-4287,-286,-1903,-3075,-7613,-7612,-2968,-4170], +[0,-6,-3619,-17,-42,-5291,-3354,-1867], +[1,3,10079], +[0,10080,10081,268,11], +[0,-44,-1838,-4050], +[0,-417,-8,-6,-1,-7,-14,-57,-40,-4,-35,-2,-29,-5,-47,-87,-2118,-2117,-122,-176,-319,-155,-19,-1477,-22], +[1,3,10083], +[0,0,10084,10085,4], +[0,-29,-22,-19,-159,-56,-382,-1,-8,-496,-1150,-79,-2959,-14,-57,-2], +[0,-4386,-549,-1406,-783,-1933,-3033,-2,-45,-1374,-129,-3079,-4502,-1706,-184,-31,-1727,-1726,-7611], +[1,3,10087], +[0,10088,0,10089,4], +[0,-304,-1769,-1474,-121,-90,-790,-4054], +[0,-6,-108,-953,-7610,-951], +[1,3,10091], +[0,10092,0,10093,6], +[0,-1474,-121,-90], +[0,-6,-108,-953,-1445], +[1,3,10095], +[0,10096,0,10097,8], +[0,-304,-439,-1769,-121,-90,-972], +[0,-6,-108,-953,-674], +[1,3,10099], +[0,10100,0,95,5], +[0,-7609,-7608,-326,-562], +[1,3,10102], +[0,269,0,95,5], +[1,3,10104], +[0,10105,10106,10107,4], +[0,-193,-16,-349,-7604,-7603,-4469,-3265,-1153,-1453], +[0,-2000,-104,-30,-618,-229,-2,-1974,-343,-4824], +[0,-7602,-7601,-1620,-339,-52,-32,-45,-31,-369,-100,-335,-7600,-7599,-2116,-2049,-6117,-6116,-7598,-7597,-1900], +[1,3,10109], +[0,0,10110,10111,5], +[0,-215,-1966,-1024], +[0,-6,-241,-1608,-215], +[1,3,10113], +[0,10114,10115,10116,4], +[0,-1476,-130,-7596,-639,-705,-2137], +[0,-2167,-8,-262,-1,-646,-237,-17,-40,-499,-4,-26,-157,-210,-1150,-2,-11,-29,-5,-230,-92,-98,-2321,-343,-692,-517,-185, +-945,-633,-7595,-170,-7594,-3017,-7593,-816,-392,-12,-25,-176,-2773,-391], +[0,-6,-45,-17,-4738,-1670,-7592,-1141,-3035,-3111,-1910,-1370], +[1,3,10118], +[0,0,10119,10120,11], +[0,-4297,-1013,-7591], +[0,-7590,-380,-318,-635,-2,-862,-52,-107], +[1,3,10122], +[0,10123,10124,10125,5], +[0,-324,-1271,-104,-7589,-1348,-20,-118,-215,-23,-1123,-16,-504,-288,-807,-17,-119,-40,-200,-4,-58,-660,-661,-144,-2, +-2190,-7588,-7587,-305,-1679,-289,-641,-154,-7586,-7585,-7584,-7583,-2103,-692,-7582,-7581,-7580,-1264,-7579,-7578,-2641, +-7577,-7576,-7575,-7574,-346,-7573,-1781,-2773,-7572,-5731,-377,-520,-7571,-7570,-7569,-2967,-7568,-1853, +-2161], +[0,-8,-6,-1953,-35,-29,-5,-142,-7567,-185,-7566,-7565,-2968], +[0,-7564,-1982,-7563,-5301,-7562,-4126,-2335,-99,-778,-52,-105,-106,-443,-7561,-1904,-905,-2328,-808,-410,-1074,-667, +-7560,-2049,-45,-1199,-4479,-4478,-4480,-4481,-7559,-7558,-46,-3354,-4125,-1525,-4124,-6,-516], +[1,3,10127], +[0,10128,10129,10130,4], +[0,-11,-4158,-446,-403,-7557], +[0,-598], +[0,-5776,-256,-6,-1467,-99], +[1,3,10132], +[0,10133,10134,10135,4], +[0,-479,-457], +[0,-7556], +[0,-31,-428,-292,-578,-4215,-505], +[1,3,10137], +[0,0,0,10138,4], +[0,-675,-453,-512,-111,-46,-383], +[1,3,10140], +[0,10141,10142,168,5], +[0,-574,-1180,-7555], +[0,-9,-30,-2,-5,-2270,-320,-49,-5756,-103,-62], +[0,23,0,97,5], +[1,3,10145], +[0,23,0,10146,9], +[0,-184,-53,-1470,-1701,-2077,-1700,-1431,-327,-1699,-1698,-1697,-2076,-2075,-1696,-1695,-2074,-2073,-2072,-6,-516,-2071, +-2070,-2069,-2068,-74,-1238,-491,-2067,-249,-1237,-192,-2,-45,-485,-111,-585,-1694,-1693,-24,-31,-1236,-1692,-1235,-2066, +-327,-2065,-2064,-2063,-2062,-2061,-2060,-2288,-7553], +[1,3,10148], +[0,23,0,98,9], +[1,3,10150], +[0,23,0,99,4], +[0,23,0,99,5], +[1,3,10153], +[0,23,0,99,11], +[1,3,10155], +[0,10156,10157,10158,6], +[0,-1268,-4315,-7550,-7549,-3084,-168,-473,-2246,-1027,-619,-383,-3857,-424,-41,-7548,-7547,-920,-3007,-2572,-402,-7546, +-3966,-2216,-1926,-813,-23,-344,-236,-907,-700,-567,-3932,-564,-5741,-3415,-1114,-461,-7545,-437,-7544,-205], +[0,-735,-4177,-1443,-359,-2698,-3700,-1739,-142,-4176,-1449,-5,-2426,-517,-454,-118,-614,-198,-125,-2,-30], +[0,-5732,-361,-2963,-7543,-7542,-1070,-5019,-7541,-2019,-46,-881,-41,-771], +[1,3,10160], +[0,10161,0,271,9], +[0,-74,-884,-159,-89,-101,-17,-119,-442,-144,-644,-438,-1103,-882,-2588,-11,-230,-277,-160,-98,-4195,-7540,-519,-3003, +-492,-1197,-3863,-170,-535,-1502,-7539,-7538,-1480,-2765,-377,-6240,-4123,-1564,-7537,-6238,-2199,-3862], +[1,3,10163], +[0,10164,0,10165,6], +[0,-440,-221,-5254,-1138,-998,-2765,-5667], +[0,-42,-114,-100,-74,-1770], +[1,3,10167], +[0,10168,0,42,5], +[0,-3863,-754,-442], +[1,3,10170], +[0,10171,0,42,9], +[0,-1197,-2209], +[1,3,10173], +[0,10174,0,42,9], +[0,-1197,-230], +[1,3,10176], +[0,10177,0,42,8], +[0,-1314,-1197], +[1,3,10179], +[0,10180,0,42,5], +[0,-1197,-2765], +[1,3,10182], +[0,10183,0,42,4], +[0,-1197], +[1,3,10185], +[0,10186,10187,42,5], +[0,-20,-501,-40,-206,-708,-2224,-16,-884,-1716], +[0,-7536], +[1,3,10189], +[0,10190,0,42,4], +[0,-23,-393,-5674,-1791,-1197,-3861,-4123,-6237,-7535,-6239], +[1,3,10192], +[0,10193,10194,58,4], +[0,-7534,-2287,-7533,-7532,-7531], +[0,-13,-3,-33,-17,-50,-11,-781,-109,-29,-5,-65,-92,-69,-480,-178,-21,-7530,-4122,-140], +[1,3,10196], +[0,10197,132,58,8], +[0,-2287,-2958,-7524], +[1,3,10199], +[0,10200,10201,58,9], +[0,-491,-1651,-832,-4121,-4120], +[0,-13,-3,-1,-159,-33,-17,-211,-50,-144,-2,-11,-781,-109,-29,-5,-701,-65,-92,-69,-47,-154,-7523,-4157,-480,-178,-21,-76, +-64,-10,-67,-12,-84,-25,-131,-140], +[1,3,10203], +[0,10204,10205,58,11], +[0,-6235,-4121,-4120,-7522,-7521,-7520], +[0,-13,-1284,-3,-1,-3716,-159,-33,-17,-4,-50,-2,-11,-781,-109,-29,-5,-65,-92,-69,-480,-178,-21,-76,-64,-10,-67,-7519,-12, +-84,-25,-131,-140], +[1,3,10207], +[0,10208,132,58,11], +[0,-205,-2287,-2958], +[1,3,10210], +[0,10211,0,10212,6], +[0,-304,-7518], +[0,-7517,-7516,-95,-1671], +[1,3,10214], +[0,0,0,173,4], +[1,3,10216], +[0,0,0,10217,5], +[0,-192,-52,-91,-1405,-61,-1682], +[1,3,10219], +[0,117,10220,10221,4], +[0,-51,-20,-56,-15,-97,-134], +[0,-240,-2368,-37,-4119,-1646], +[1,3,10223], +[0,228,10224,10225,5], +[0,-1040,-725,-3699,-5,-1204,-1599,-168,-1919,-32,-2310,-3970,-199,-7515,-7514,-117,-198,-7,-983,-4118,-1115,-33,-196, +-1596,-2,-2309,-3854], +[0,-75,-61,-840,-1367,-933], +[1,3,10227], +[0,0,10228,272,5], +[0,-182,-94,-5560,-268,-2561,-1187,-1,-191,-2571,-12,-500,-10,-420,-9,-8,-18,-4,-7,-112], +[1,3,10230], +[0,10231,10232,10233,8], +[0,-3414,-4108,-3335,-58,-223,-3333,-1546,-250,-2549,-3331,-344,-7513,-7,-5245,-156,-5243,-1286,-5242], +[0,-48,-109,-732,-7512,-7511,-257,-7510,-1089,-5,-7509,-736,-7508,-22,-19,-7507,-13,-244,-660,-1,-12,-265,-76,-25,-118, +-1330,-402,-5693,-3,-644,-4,-3329,-1296,-16,-27,-186,-5244,-33,-2], +[0,-1667,-91,-666,-862,-53,-3228], +[1,3,10235], +[0,10236,10237,273,4], +[0,-4108,-2549,-5247,-5246,-7,-1296,-2592], +[0,-13,-244,-3,-7506], +[1,3,10239], +[0,10240,10241,273,4], +[0,-3414,-250,-2711,-344], +[0,-13,-3330,-41,-117,-3,-2547,-1798,-1296], +[1,3,10243], +[0,10244,10245,10246,4], +[0,-759], +[0,-613,-117,-3,-82], +[0,-544,-91,-1775,-1939,-61], +[1,3,10248], +[0,0,10249,10250,4], +[0,-182,-169,-7505,-268,-13,-3], +[0,-446,-2013,-24,-255], +[1,3,10252], +[0,0,133,10253,4], +[0,-31,-1051,-457,-1055,-1243,-849,-2957], +[1,3,10255], +[0,0,133,10256,5], +[0,-31,-7504,-1051,-457,-1055,-1243,-849,-2957], +[1,3,10258], +[0,0,133,10259,4], +[0,-31,-1051,-457,-1055,-1243,-849], +[1,3,10261], +[0,0,10262,10263,4], +[0,-664,-2982,-43,-315,-1842,-760,-4,-2187,-147,-260,-7,-39,-233,-2,-133,-34], +[0,-31,-1051,-4694,-1055,-1243,-2957,-7503,-849], +[1,3,10265], +[0,0,0,41,9], +[1,3,10267], +[0,10268,251,10269,4], +[0,-7502], +[0,-224,-671,-726,-24], +[1,3,10271], +[0,0,92,10272,5], +[0,-255,-31,-4517,-4300,-2493,-165,-429], +[1,3,10274], +[0,10275,88,10276,4], +[0,-2884,-7501,-1967], +[0,-390,-42,-547,-114,-100,-740,-4107], +[1,3,10278], +[0,0,10279,10280,5], +[0,-3,-13,-66], +[0,-24,-4503,-676,-7500,-95,-165,-511], +[1,3,10282], +[0,0,10283,10284,6], +[0,-56,-66], +[0,-163,-455,-5385,-24,-3132,-549], +[1,3,10286], +[0,10287,10288,10289,4], +[0,-1176], +[0,-43,-89,-1,-3,-14,-799], +[0,-24,-541,-776,-227,-721,-1647,-7499], +[1,3,10291], +[0,10292,10293,10294,4], +[0,-2928], +[0,-1,-12,-25,-4,-85], +[0,-854,-73,-723,-37,-308,-587,-1060,-7498], +[1,3,10296], +[0,10297,0,10298,8], +[0,-2267,-2266,-2286,-2265,-473,-380,-1013,-1002,-1211], +[0,-1361,-46,-571,-7497], +[1,3,10300], +[0,10301,0,10302,4], +[0,-1002,-697,-1211], +[0,-1361,-46,-1421,-2418], +[1,3,10304], +[0,10305,0,10306,4], +[0,-473,-1002,-93,-697,-1211,-4106], +[0,-1361,-46,-1981], +[1,3,10308], +[0,10309,0,10310,4], +[0,-4105,-758,-2863,-93], +[0,-1361,-46,-4104,-4103], +[1,3,10312], +[0,10313,0,10314,5], +[0,-2267,-2266,-2286,-2265,-473,-380,-1013,-1002,-697,-1211], +[0,-1361,-46,-571], +[1,3,10316], +[0,10317,0,10318,4], +[0,-2267,-2266,-2286,-2265,-1002,-697,-1211], +[0,-1361,-46,-1397], +[1,3,10320], +[0,0,0,274,4], +[1,3,10322], +[0,10323,0,274,10], +[0,-697], +[1,3,10325], +[0,0,10326,10327,9], +[0,-29,-5,-56,-28,-8,-101,-7496,-57,-196,-1289,-1596,-2], +[0,-2981,-723,-73,-2289,-95,-1899,-1605,-1200,-1507,-3362,-91,-7495], +[1,3,10329], +[0,10330,10331,10332,6], +[0,-228,-440,-7494,-7493,-7492,-2111,-2141], +[0,-8,-201,-9,-1525,-1,-72,-7,-14,-393,-382,-119,-4385,-4,-1708,-26,-86,-11,-473,-18,-6404,-65,-1031,-1225,-357,-21,-145, +-7491,-7490,-984,-161,-10,-803,-893,-12,-25,-463,-7489,-404,-341], +[0,-678,-390,-42,-4102,-114], +[1,3,10334], +[0,10335,10336,10337,10], +[0,-149,-20,-96,-223,-7488,-2762,-573,-40,-499,-442,-7487,-1141,-396,-596,-1947,-7486,-1564], +[0,-51,-383,-118,-9,-1,-7,-14,-18,-7485,-134,-2452,-7484], +[0,-2762,-678,-390,-42,-4102,-114,-37], +[1,3,10339], +[0,10340,0,10341,5], +[0,-7483], +[0,-255,-6228,-249,-95,-4260], +[1,3,10343], +[0,10344,10345,10346,4], +[0,-4197,-23,-439], +[0,-50,-11,-21,-136,-86,-152,-445,-1022,-1,-12,-84,-7482,-10,-76,-67,-64,-131,-8,-4,-7481,-121,-694,-6,-35,-286], +[0,-445,-8,-2113,-1955,-695,-238,-452,-61,-388,-75], +[1,3,10348], +[0,10349,0,10350,5], +[0,-2268,-7480,-116,-7479,-44,-551], +[0,-1426,-60,-7478,-7477,-7476,-7475,-3267,-7474,-7473,-943,-126,-281,-2850,-2319,-95,-7472,-7471,-165,-172,-3183,-7470, +-855], +[1,3,10352], +[0,0,14,10353,9], +[0,-482,-3178,-31,-1051,-457,-7469,-941,-1623,-202,-271,-1610,-853,-7468,-1282,-7467,-7466], +[1,3,10355], +[0,10356,10357,10358,5], +[0,-238,-7465,-501,-926,-2263,-2258,-40,-7464,-228,-88,-4191], +[0,-182,-355,-1350,-447,-152,-7463,-1,-3,-15], +[0,-166,-99,-1602,-42,-846,-7462,-2505,-7461,-3439,-7460,-3438,-7459,-3065,-7458,-2504,-7457,-7456], +[1,3,10360], +[0,0,55,10361,4], +[0,-1,-334,-368,-107,-4956,-1922,-1388,-678,-42], +[1,3,10363], +[0,0,10364,10365,4], +[0,-402,-134,-39], +[0,-42,-4701,-7455,-4686,-7454,-4119,-141], +[1,3,10367], +[0,87,275,10368,4], +[0,-505,-428,-578,-132,-202,-31,-651,-1374], +[1,3,10370], +[0,87,275,10371,6], +[0,-505,-428,-578,-132,-202,-31,-24,-1456,-165], +[1,3,10373], +[0,10374,10375,10376,4], +[0,-246,-1473,-936,-1500,-1111,-4919,-1941], +[0,-3774,-5,-43,-1147,-607,-4,-147,-260,-233,-2,-34], +[0,-505,-428,-578,-132,-202,-31,-607,-360,-934], +[1,3,10378], +[0,87,92,10379,5], +[0,-505,-428,-578,-132,-202,-31,-5988,-1374,-7453,-7452,-7451], +[1,3,10381], +[0,10382,10383,10384,8], +[0,-3868], +[0,-381,-701,-4,-556,-39], +[0,-360,-31,-165,-429], +[1,3,10386], +[0,0,10387,10388,5], +[0,-5,-43,-1281,-1842,-760,-188,-4,-147,-260,-233,-2,-34], +[0,-31,-3173,-1218,-849,-1374,-7450,-632,-1077], +[1,3,10390], +[0,10391,0,10392,5], +[0,-36], +[0,-105,-401,-443,-41,-1164,-3020,-1912,-7449,-7448,-7447,-7446,-3020,-4529,-7445,-46], +[1,3,10394], +[0,0,130,10395,4], +[0,-24,-370,-7444,-38], +[1,3,10397], +[0,276,10398,277,4], +[0,-3160,-2760], +[1,3,10400], +[0,276,10401,277,6], +[0,-6221,-7443,-3160,-2760], +[1,3,10403], +[0,0,0,10404,4], +[0,-292,-6,-2218,-52,-2646,-3159,-31,-4878,-209,-255,-91,-14,-7442,-7441,-1428], +[1,3,10406], +[0,0,10407,10408,4], +[0,-151,-32,-382,-38,-314,-7440,-1538,-6434,-7439], +[0,-24,-636,-184,-52,-111,-7438], +[1,3,10410], +[0,10411,10412,10413,4], +[0,-236,-1794], +[0,-60,-54,-532,-6454,-347,-821,-166,-23,-113], +[0,-476,-7437,-7436,-42,-166,-2475,-1445], +[1,3,10415], +[0,0,10416,10417,6], +[0,-1040,-5,-1599,-199,-117,-1115,-196,-1596,-2,-2309], +[0,-75,-61,-840,-1367,-933,-199], +[1,3,10419], +[0,10420,10421,10422,5], +[0,-3147,-4229,-6012,-912,-695,-57], +[0,-7435,-6575,-4059,-6574,-2283,-2282,-2281,-2942,-6573,-4058,-6572,-11,-21,-49,-937,-283,-48,-3147,-1732,-715,-185,-29, +-5,-137,-22,-19,-7434,-86,-20,-3117,-404,-26,-2641,-1,-12,-10,-145,-181,-25,-118,-40,-7433,-28,-55,-9,-8,-176,-79,-1306, +-4,-7,-489,-16,-44,-153,-210,-2,-83,-2771], +[0,-8,-2,-192,-61], +[1,3,10424], +[0,10425,10426,10427,5], +[0,-2160,-446,-20,-119,-58,-223,-5455,-149,-561,-902,-748,-285,-2301,-596,-205], +[0,-11,-2278,-1088,-1894,-715,-80,-63,-7432,-252,-1057,-330,-155,-122,-317,-3658,-29,-3295,-5,-47,-87,-3152,-5839,-454, +-22,-19,-537,-7431,-5843,-160,-26,-1,-12,-84,-10,-115,-67,-64,-8,-1149,-222,-288,-65,-38,-2977,-7430,-4,-6,-35,-439,-7, +-14,-870,-415,-1223,-77,-888,-557,-2,-104,-4101], +[0,-61,-8,-53,-2477,-36,-7429], +[1,3,10429], +[0,10430,10431,10432,8], +[0,-1835,-7428], +[0,-7427,-7426,-707,-250,-3,-740], +[0,-5008,-3480,-36,-390,-42,-1059,-547,-114,-250,-2105,-5122,-1717,-7425,-7424,-23,-367,-100,-271,-740,-4107], +[1,3,10434], +[0,10435,10436,10437,10], +[0,-7423], +[0,-1823,-188,-1488], +[0,-1823,-7422,-2389,-209,-46], +[1,3,10439], +[0,10440,10441,10442,8], +[0,-1928], +[0,-5,-43,-1519,-4,-147,-260,-233,-2,-34], +[0,-1519,-7421,-7420,-1218,-719,-7419,-31,-2101,-100,-133], +[1,3,10444], +[0,0,0,10445,4], +[0,-1519,-132,-202,-31,-777], +[1,3,10447], +[0,0,0,10448,10], +[0,-1519,-132,-202,-31,-1218,-849], +[1,3,10450], +[0,0,10451,10452,4], +[0,-5442,-54,-117,-236,-978,-112,-3135,-3982,-7418,-302,-656,-177,-347], +[0,-2774,-95,-1605,-1899,-668,-2289,-91,-663,-7417,-7416], +[1,3,10454], +[0,10455,10456,10457,4], +[0,-3421], +[0,-8,-1,-57,-4,-2,-29,-5,-5388,-12,-19,-22], +[0,-7415,-7414,-24], +[1,3,10459], +[0,10460,92,10461,6], +[0,-677,-3858,-6229,-3095,-7413,-7412,-7411], +[0,-165,-31,-1055,-1243,-1051,-457], +[1,3,10463], +[0,0,0,10464,4], +[0,-38,-1945,-270,-1378,-6,-24,-7410], +[1,3,10466], +[0,10467,130,10468,5], +[0,-1471], +[0,-24,-370,-38], +[1,3,10470], +[0,0,10471,10472,9], +[0,-11,-21,-7409,-3693,-7408,-1,-199,-78,-139,-612,-212,-400,-755,-702,-2316,-2193,-157,-14,-273,-2139,-1298,-226,-4820, +-1242], +[0,-4958,-157,-398,-544,-7407,-7406,-1713,-61,-840,-2193,-933,-1242,-4136], +[1,3,10474], +[0,10475,10476,10477,9], +[0,-291,-3969,-121], +[0,-59,-2905,-20,-151,-32,-3979,-3976,-314,-7405,-653,-363,-1132,-7404,-6,-35,-883], +[0,-6,-108,-85,-7403,-414,-7402,-3969,-95], +[1,3,10479], +[0,10480,10481,10482,8], +[0,-7401,-2273,-7400,-2935,-3704,-5513,-193,-837,-20,-504,-1178,-36,-708,-469,-101,-3637,-344,-1812,-6370,-324,-397,-16, +-600,-747,-2136,-734,-1974,-7399,-284,-3574], +[0,-320,-49,-62,-2658,-7398,-3073,-7397,-80,-231,-63,-232,-162,-411,-1089,-788,-137,-7396,-7395,-103,-2298,-9,-811,-198, +-1723,-2058,-4,-14,-1223,-153,-210,-2,-30], +[0,-99,-1579,-3072,-42,-1601,-3067,-1812,-681,-3068,-3071,-3069,-3070,-2330,-1728,-545], +[1,3,10484], +[0,0,10485,10486,11], +[0,-673,-122,-29,-47,-87,-4268,-22,-19,-618,-237,-1,-12,-25,-64,-190,-348,-7394,-8,-7393,-701,-2959,-7392,-4,-6,-35,-4267, +-321,-57,-2,-7391], +[0,-6,-4459,-108,-3274,-2299,-2285,-224,-184,-7390,-2960,-2817,-1248,-3056,-951,-7389], +[1,3,10488], +[0,10489,10490,10491,4], +[0,-1101], +[0,-21,-136,-47,-445,-1022,-8,-694,-286,-14,-273,-463,-341], +[0,-2774,-95,-1605,-1899,-668,-2289,-91,-7388,-7387,-663,-1673,-194], +[1,3,10493], +[0,0,10494,10495,4], +[0,-49,-5,-47,-87,-3836,-22,-4904,-1,-12,-3240,-10,-115,-25,-67,-64,-9,-8,-18,-701,-4,-441,-6,-35,-559,-3907], +[0,-6,-1937,-434,-897,-559,-7386,-241], +[1,3,10497], +[0,0,10498,10499,4], +[0,-15,-79,-78,-3,-6,-322,-27,-293,-1,-23,-491,-175,-862,-152,-159,-287,-17,-110,-35,-7385,-2,-11,-5,-189,-898,-47,-98, +-3080,-526,-366,-1017,-87,-21,-3837,-64,-286,-7384,-330,-418,-139,-909,-212,-4169,-19,-2625], +[0,-508,-1664,-6,-1402,-7383,-830], +[1,3,10501], +[0,0,0,10502,4], +[0,-234,-95,-282,-333,-722,-126,-2979,-2963,-7382,-1064,-678], +[1,3,10504], +[0,0,10505,10506,4], +[0,-90,-47,-2151,-6,-234,-2], +[0,-234,-108,-932,-6,-95,-282,-333,-102,-1901,-1365,-7381,-281,-7380], +[1,3,10508], +[0,94,10509,10510,5], +[0,-94,-1,-266,-12,-10,-148,-25,-64,-4,-2956], +[0,-234,-108,-932,-6,-95,-282,-102,-361,-7379,-7378,-7377,-3107,-7376,-7375,-2011,-485], +[1,3,10512], +[0,10513,10514,10515,4], +[0,-2240,-7374,-2239,-2894,-121], +[0,-7373,-1440,-3513,-1081,-7372,-94,-86,-4168,-1174,-1,-84,-10,-76,-67,-64,-7371,-131,-9,-8,-18,-4,-441,-6,-234,-2956, +-286], +[0,-234,-108,-932,-6,-95,-282,-333,-1203,-3472,-2974,-1175], +[1,3,10517], +[0,10518,10519,10520,6], +[0,-422], +[0,-6130,-1,-1908], +[0,-234,-108,-932,-6,-2741,-95,-282,-333,-102,-4843,-7370,-7369], +[1,3,10522], +[0,10523,10524,10525,8], +[0,-2757,-595], +[0,-4100,-50,-11,-391,-480,-21,-1068,-136,-4055,-1894,-790,-80,-63,-232,-122,-1477,-47,-94,-86,-26,-1,-12,-500,-145,-67, +-64,-190,-420,-1598,-348,-7368,-8,-2959,-4,-441,-6,-35,-7367,-286,-7,-14,-273,-226,-2], +[0,-6,-2756,-4523,-129,-1637,-2130,-2683], +[1,3,10527], +[0,10528,10529,10530,8], +[0,-7366,-6232,-267], +[0,-2955,-673,-330,-155,-122,-7365,-2155,-5,-47,-87,-537,-960,-502,-79,-459,-6,-35,-321,-371,-44,-2,-30], +[0,-6,-636,-1444,-95,-3047], +[1,3,10532], +[0,10533,10534,10535,10], +[0,-44,-7364], +[0,-2954,-673,-321,-6,-35], +[0,-6,-225,-24], +[1,3,10537], +[0,0,10538,10539,4], +[0,-927,-3,-235], +[0,-24,-224,-2285,-183], +[1,3,10541], +[0,10542,0,77,5], +[0,-6190,-2269,-7363,-7362,-7361,-7360,-7359,-7358,-7357,-7356,-7355,-7354,-7353], +[1,3,10544], +[0,0,10545,272,5], +[0,-11,-21,-140,-49,-62,-203,-4138,-232,-204,-29,-5,-22,-19,-1892,-1639,-94,-86,-1387,-289,-26,-1,-84,-10,-76,-67,-825, +-348,-9,-569,-8,-176,-18,-7,-14,-301,-2,-979], +[1,3,10547], +[0,0,10548,259,8], +[0,-2689,-1878,-535,-144,-277,-1092,-377,-4,-2807,-77,-462,-211,-2,-438,-17,-92,-519], +[1,3,10550], +[0,33,10551,10552,4], +[0,-673,-321,-155,-122,-2954,-176], +[0,-6,-3243,-7352,-7351,-7350], +[1,3,10554], +[0,10555,10556,10557,6], +[0,-7349,-44], +[0,-673,-321,-2954,-7348,-1022,-6,-35], +[0,-7347,-6,-7346], +[1,3,10559], +[0,10560,10561,10562,5], +[0,-159,-90,-7345,-7344], +[0,-222,-220,-17,-144,-2,-11,-1143,-92,-98,-154,-7343,-519,-21,-2784,-170,-140,-173,-278,-2147,-216,-306,-1038], +[0,-194,-36,-95], +[1,3,10564], +[0,0,10565,10566,10], +[0,-5,-2656,-1104,-104], +[0,-104,-52,-939], +[1,3,10568], +[0,0,10569,10570,5], +[0,-169,-98,-328,-26,-144,-277,-1315,-2767,-462,-7342,-154,-74,-1103,-882,-2173,-1480,-17,-170], +[0,-1369,-3058,-7341,-7340,-7339,-7338,-7337,-53,-7336], +[1,3,10572], +[0,10573,0,271,8], +[0,-925,-1863,-6241,-1197,-596,-6236,-2141], +[1,3,10575], +[0,0,10576,10577,5], +[0,-50,-11,-216,-306,-21,-140,-359,-7335,-29,-5,-1220,-22,-19,-169,-86,-278,-1,-191,-12,-10,-25,-8,-5759,-4,-120,-2], +[0,-8,-350,-785,-60,-629,-172,-857,-61,-388], +[1,3,10579], +[0,10580,10581,10582,5], +[0,-1599,-1115], +[0,-1040,-1919,-32,-2310,-199,-644,-4118,-2], +[0,-61,-840,-1367,-933,-2046], +[1,3,10584], +[0,10585,10586,10587,4], +[0,-2268,-20,-151,-28,-758,-88,-522,-113,-7,-16,-551], +[0,-3579,-3773,-7334,-458,-2325,-1040,-843,-725,-5,-4471,-2426,-1204,-1599,-137,-2332,-1919,-32,-2310,-199,-983,-1115,-2], +[0,-192,-75,-61,-2193,-840,-1367,-933,-1115], +[1,3,10589], +[0,117,55,10590,4], +[0,-163,-1055,-455,-2010,-3000,-2008,-4280,-4279,-4278,-2999,-240,-482,-2048,-37,-294,-174,-194,-2998,-2997,-2996,-2995, +-4277], +[1,3,10592], +[0,169,10593,10594,5], +[0,-5,-89,-7333,-495,-7332,-2,-1104], +[0,-7331,-4908,-52,-4907,-1959,-105,-99], +[1,3,10596], +[0,10597,0,10598,8], +[0,-276,-4099,-101,-3821], +[0,-1364,-1898,-353,-42,-1363,-1362], +[1,3,10600], +[0,0,10601,278,6], +[0,-13,-109,-5,-4098], +[1,3,10603], +[0,10604,0,95,10], +[0,-7329,-7328,-326,-562], +[1,3,10606], +[0,39,0,10607,5], +[0,-6,-108,-953,-635], +[0,23,0,98,4], +[0,23,0,99,6], +[1,3,10611], +[0,10612,10613,10614,4], +[0,-7327,-3114], +[0,-1678,-59,-4253,-39], +[0,-1212,-1637,-3361,-5272,-7326,-585,-7325,-53,-59], +[1,3,10616], +[0,10617,10618,10619,4], +[0,-7324,-7323,-7322,-7321,-7320,-299,-20,-1568,-215,-1024,-422,-229,-2971,-499,-402,-469,-200,-1401,-276,-7319,-7318, +-1676,-287,-16,-689,-372,-2,-7317,-7316,-7315], +[0,-74,-7314,-7313,-7312,-7311], +[0,-6208,-7310,-52], +[1,3,10621], +[0,10622,10623,10624,9], +[0,-90,-7309], +[0,-8,-77,-9,-6,-445,-1,-17,-4,-26,-35,-50,-144,-521,-2,-11,-18,-65,-462,-92,-47,-98,-154,-7308,-7307,-3719,-7306,-950, +-21,-3001,-136,-64,-2934,-7305,-12,-148,-25,-176,-140,-1440,-7304,-2093,-19,-1715,-173,-22,-4423,-4146], +[0,-6,-129,-7303,-4255,-7302,-95,-4143,-2,-7301,-7300], +[1,3,10626], +[0,10627,10628,7,4], +[0,-20,-661,-58,-228,-2020,-16,-2950], +[0,-2131,-4625,-5,-137,-7299], +[1,3,10630], +[0,10631,10632,7,4], +[0,-7298,-258,-304,-207,-7297,-598,-104,-208,-1348,-36,-863,-483,-352,-2243,-2083,-374,-16,-3855,-504,-2084,-89,-7296, +-7295,-101,-1749,-1125,-397,-7294,-7293,-1093,-2746,-7292,-323,-3123,-3880,-7291,-7290,-1433,-311,-6051,-4097,-2872,-297, +-518,-824,-7289,-3299,-486,-1595,-7288,-340,-7287,-7286,-7285,-3261,-728,-1758,-5899,-7284,-3503,-1462,-7283,-7282], +[0,-4897,-77,-14,-284,-30,-238,-133,-7281,-2962,-7280,-2,-246,-823,-2811,-162,-4330,-4500,-137,-7279,-2551,-411,-788, +-2616,-3933,-357,-623,-3649,-1611,-7278,-6017,-2404,-1801,-7277,-7276], +[1,3,10634], +[0,10635,0,7,5], +[0,-474,-7275,-565,-112], +[1,3,10637], +[0,10638,10639,10640,10], +[0,-135,-40,-200], +[0,-1,-145,-8], +[0,-2682,-114,-958,-37,-4611], +[1,3,10642], +[0,0,10643,10644,10], +[0,-80,-63,-20,-573,-1,-12,-10,-7274,-5561,-759,-9,-18,-3,-1750,-4,-7,-14,-463,-7273,-146,-312,-3093], +[0,-1466,-271,-387], +[1,3,10646], +[0,0,10647,7,8], +[0,-22,-19,-1,-1020,-12,-251,-10,-148,-25,-64,-190,-9,-18,-4,-6,-2], +[1,3,10649], +[0,10650,10651,10652,4], +[0,-7272], +[0,-69,-326,-3], +[0,-111,-75,-456,-7271,-3,-52], +[1,3,10654], +[0,0,10655,10656,4], +[0,-673,-29,-22,-19,-7270,-4772,-2989,-224,-1,-12,-25,-28,-8,-4,-14,-226,-301,-321,-1107,-57,-33,-44,-2], +[0,-224,-73,-452,-2299,-2285,-726,-4516,-7269,-4515,-1144,-7268,-4464,-24,-7267,-951,-7266,-7265,-227,-7264], +[1,3,10658], +[0,106,10659,280,6], +[0,-2955,-49,-62,-3853,-861,-257,-29,-5,-22,-19,-1,-12,-9,-8,-4,-373,-57,-2], +[0,23,0,97,8], +[1,3,10662], +[0,10663,10664,10665,8], +[0,-3503,-3504,-5534,-7263,-246,-411,-408,-6198,-7262,-1281,-1842,-760,-1159,-1156,-101,-4192,-297,-7261,-3105,-2053, +-3849,-374,-5906,-2052,-3880,-133,-340,-483], +[0,-357,-5,-103,-1280,-7260,-30], +[0,-390,-42,-1280,-4093,-4092], +[1,3,10667], +[0,10668,10669,280,4], +[0,-41,-602], +[0,-2955,-49,-62,-6207,-3853,-861,-257,-29,-5,-22,-19,-1,-12,-9,-8,-4,-373,-57,-2], +[1,3,10671], +[0,10672,10673,10674,4], +[0,-602,-33], +[0,-49,-62,-861,-257,-29,-5,-22,-19,-20,-1,-12,-9,-8,-4,-373,-57,-2], +[0,-4096,-335,-2,-4095,-4094,-52,-3055,-46,-369], +[1,3,10676], +[0,23,0,97,4], +[0,23,0,98,11], +[1,3,10679], +[0,262,10680,10681,4], +[0,-478,-858], +[0,-74,-1783,-952,-1768,-7259,-7258,-3025,-99,-2465,-2406,-2,-436,-540,-1376], +[1,3,10683], +[0,10684,10685,151,5], +[0,-7257,-4054,-7256], +[0,-136,-7255,-7254,-155,-122,-317,-47,-87,-537,-304,-6,-35,-3908,-559,-1118,-3760,-7253,-353], +[1,3,10687], +[0,10688,10689,10690,8], +[0,-6197], +[0,-1280,-118,-4091], +[0,-4092,-4090,-42,-2949,-863,-4089,-4093], +[0,0,0,10692,5], +[0,-1900,-2284,-46], +[1,3,10694], +[0,10695,10696,10697,9], +[0,-2949], +[0,-408,-677,-1611,-750,-601,-804,-863,-133,-483,-4091], +[0,-4090,-42,-2949,-863,-4089], +[1,3,10699], +[0,10700,10701,10702,8], +[0,-4165,-4164,-2238,-823,-210], +[0,-7252,-4163,-877,-1274,-43,-4162,-2], +[0,-4161,-2105,-132,-141,-91,-46,-53,-293,-75,-13,-4160,-4159], +[1,3,10704], +[0,0,10705,10706,5], +[0,-1883,-59,-56,-66,-3,-82,-112], +[0,-1623,-1282,-941,-2980,-336,-667,-482,-777,-719,-437,-31,-24,-2026,-4184], +[1,3,10708], +[0,10709,0,10710,5], +[0,-7251], +[0,-961,-1761,-2984,-6,-53,-184,-46,-2094,-111,-91,-45,-270,-2,-141,-335,-369,-7250,-674], +[1,3,10712], +[0,10713,0,73,9], +[0,-3839,-6185,-3565,-210], +[1,3,10715], +[0,269,0,95,10], +[1,3,10717], +[0,10718,0,77,4], +[0,-2269,-6246,-6211,-6194,-6244,-6243,-6178,-6177,-6172,-6242], +[1,3,10720], +[0,0,0,10721,4], +[0,-961,-1761,-2984,-6,-53,-184,-46,-2094,-111,-91,-45,-270,-2,-141,-335,-369,-7248,-674], +[0,23,0,97,6], +[1,3,10724], +[0,10725,0,246,4], +[0,-205,-28,-1476,-96,-16,-172,-1884,-58,-704,-982,-1190,-86,-4451,-2205,-792,-4450,-695,-692,-1354,-4449,-1920,-4448, +-3158,-342,-4447,-816,-4446,-4445,-4444,-4443,-4442,-4441,-4440,-7247], +[1,3,10727], +[0,10728,0,77,10], +[0,-6195,-2269,-6165,-6189,-6245,-6199,-6200,-6210,-6202,-6201,-6209,-7246,-7245,-6193,-6247,-6166,-7244,-6204,-7243, +-6203,-6206,-7242,-7241,-6191,-6160,-6192], +[1,3,10730], +[0,10731,10732,268,5], +[0,-44,-6253], +[0,-6,-1,-7,-14,-4,-35,-2,-5,-47,-897,-87,-559,-7240,-2118,-2117,-3836,-319,-19,-22], +[1,3,10734], +[0,10735,10736,10737,9], +[0,-7239,-7238,-7237,-168,-41,-7236,-2870,-552,-2167], +[0,-7235,-7234,-7233,-7232,-7231,-257,-954,-810,-125], +[0,-7230,-1397,-7229,-7228,-7227,-46], +[1,3,10739], +[0,23,0,98,5], +[1,3,10741], +[0,0,10742,10743,4], +[0,-927,-3], +[0,-6188,-240,-224,-671,-20,-24,-2285,-726,-7226], +[1,3,10745], +[0,10746,10747,10748,10], +[0,-3686], +[0,-5,-47,-87,-537,-241,-6,-35,-104,-847,-30,-3687], +[0,-99,-42,-1608,-399,-681,-545], +[1,3,10750], +[0,10751,0,10752,5], +[0,-1002,-1211,-473,-4106], +[0,-1900,-2284,-46,-1981], +[1,3,10754], +[0,0,10755,10756,4], +[0,-664,-43,-4,-147,-260,-7,-39,-233,-2,-34], +[0,-24,-31,-255,-111,-1671,-4305,-2575,-4985], +[1,3,10758], +[0,10759,10760,285,10], +[0,-915,-258], +[0,-7225,-49,-62,-1244,-2948,-458,-5,-22,-19,-3698,-89,-1,-191,-12,-4088,-251,-10,-25,-28,-9,-18,-4,-4087,-7,-795,-153,-2], +[1,3,10762], +[0,10763,10764,285,4], +[0,-119,-6187], +[0,-836,-153,-28,-9,-1,-7,-89,-4,-2,-458,-5,-18,-2948,-795,-49,-4087,-10,-3698,-12,-25,-19,-191,-62,-22,-251,-4088], +[1,3,10766], +[0,10767,10768,10769,6], +[0,-205,-193,-153,-1691,-1307,-123,-1569,-2896,-7222,-284,-504,-88,-2162,-326,-1331,-1926,-562,-7221,-1840,-6425,-3052, +-1327,-1121,-4212,-7220,-4223,-563,-2185,-7219,-7218,-3306], +[0,-689,-7,-14,-89,-454,-660,-26,-680,-7217,-725,-1686,-6347,-4615,-415,-633,-7216,-7215,-7214,-7213], +[0,-4126,-99,-1982,-7212,-2335,-52,-7211,-1199,-45,-1608,-141,-6186,-6,-4125,-2], +[1,24,10771], +[0,25,10772], +1743292800000, +[1,3,10774], +[0,10775,10776,10777,9], +[0,-7210,-7209,-7208,-7207,-7206], +[0,-21,-7205,-7204,-7203,-203,-80,-63,-232,-185,-5,-7202,-22,-4387,-19,-160,-98,-268,-289,-159,-56,-5828,-7201,-1,-10, +-181,-3556,-40,-348,-3787,-7200,-7199,-9,-7198,-7197,-65,-7196,-696,-7195,-7194,-7193,-14,-2420,-1246,-7192,-1956,-226, +-301,-640,-77,-3553,-7191,-3660,-44,-196,-7190,-2,-5099], +[0,-1366,-7189,-1198,-2302,-414,-1200,-95,-6,-74,-192,-491,-1365,-2294,-2991,-7188], +[1,3,10779], +[0,0,10780,10781,4], +[0,-366,-2,-104,-5823,-847], +[0,-4117,-4116,-7187,-4115,-4114,-1369,-3108,-4113,-2524,-4112,-4111,-1444,-1901,-6,-4110,-192,-74,-282,-95,-1200,-1899, +-4109], +[1,3,10783], +[0,10784,10785,10786,5], +[0,-7186], +[0,-7185,-29,-5,-13,-3038,-823], +[0,-7184,-2559,-4033,-7183,-7182,-7181,-7180], +[1,3,10788], +[0,10789,10790,7,4], +[0,-7179,-309,-251,-1626,-115,-67,-64,-349,-55,-7178,-83], +[0,-5,-4758,-1,-9,-1451,-811,-7177,-343,-233,-2], +[1,3,10792], +[0,10793,0,73,4], +[0,-650], +[1,3,10795], +[0,10796,10797,286,4], +[0,-957,-1183,-1758,-23,-468,-7176], +[0,-7175,-5,-1324,-2,-7174,-7173,-7172], +[1,3,10799], +[0,10800,0,7,6], +[0,-677], +[1,3,10802], +[0,0,10803,7,8], +[0,-555,-1,-30,-4,-2,-5,-115,-103,-150,-12,-19,-22], +[1,3,10805], +[0,10806,10807,10808,9], +[0,-20,-647,-523,-598], +[0,-54,-167,-243,-1539,-34], +[0,-253,-256,-1203,-3476,-281,-580,-227], +[1,3,10810], +[0,10811,10812,286,5], +[0,-89,-957,-6184], +[0,-8,-2,-29,-5,-7169,-7168], +[1,3,10814], +[0,10815,10816,10817,5], +[0,-1352], +[0,-15,-13,-171,-3,-7,-41,-33,-2,-109,-5,-69,-1578,-257,-357], +[0,-951,-388,-61,-543,-591,-1248,-3540,-398,-1352], +[1,3,10819], +[0,10820,10821,7,5], +[0,-1580,-925,-1653,-2297,-2983,-7167,-2082,-323,-975,-1997,-16,-1093,-311,-687,-7166,-7165], +[0,-2950,-4086,-7164,-7163,-7162,-5,-623,-137,-1047,-7161,-7160,-103,-964,-1714,-1387,-534,-1,-2436,-1452,-262,-1462, +-1660,-4,-459,-7159,-7158,-2,-7157,-7156,-7155,-4085,-104,-30], +[1,3,10823], +[0,10824,10825,10826,4], +[0,-36,-2892,-40,-402,-1401,-372], +[0,-162,-7154,-185,-13,-1,-3], +[0,-1340,-943,-3096,-1419,-126,-105,-195,-667,-46], +[1,3,10828], +[0,0,10829,10830,4], +[0,-357,-5,-47,-2376,-4,-6,-35,-2133,-2], +[0,-6,-3571,-3027,-4431,-2303], +[1,3,10832], +[0,10833,0,10834,5], +[0,-207,-1464,-290,-2710,-426,-331,-1360,-1192,-590,-356,-448,-1358,-4084,-3466,-4083], +[0,-4082,-290,-876,-4081,-4080,-183,-4079,-2470,-412,-966,-31,-1461,-1460,-1748,-1747,-1459,-771,-5551,-52], +[1,3,10836], +[0,0,287,134,4], +[1,3,10838], +[0,10839,10840,10841,11], +[0,-7153,-121,-691], +[0,-50,-11,-161,-216,-622,-1196,-1038,-2570,-306,-173,-21,-136,-90,-330,-155,-122,-98,-159,-26,-1,-266,-12,-10,-148,-25, +-64,-8,-176,-911,-235,-4,-6,-35,-17,-520,-92,-170], +[0,-6,-516,-485,-108], +[1,3,10843], +[0,0,122,10844,5], +[0,-28,-948,-1075,-73,-7152,-593], +[1,3,10846], +[0,10847,0,10848,5], +[0,-290,-515,-426,-7151,-331,-356,-448,-4084,-3466,-4083,-1037,-7150,-3791,-7149,-7148], +[0,-4082,-290,-876,-4081,-4080,-183,-4079,-2470,-412,-966,-31,-1461,-1460,-1748,-1747,-1459,-771,-52], +[1,3,10850], +[0,0,37,288,8], +[1,3,10852], +[0,10853,10854,10855,4], +[0,-7147,-1354,-36,-188], +[0,-162,-5,-955,-7146], +[0,-2990,-3362,-99,-337,-52,-369,-6179], +[1,3,10857], +[0,23,0,289,4], +[0,23,0,289,5], +[1,3,10860], +[0,10861,0,170,5], +[0,-5746,-5745,-6536,-7145,-5744,-5743], +[1,3,10863], +[0,10864,0,10865,9], +[0,-7144,-7143,-7142,-7141,-7140,-7139,-7138,-7137], +[0,-7136,-746,-7135,-61,-75,-4078,-4078,-234,-6,-95,-282,-333,-111], +[1,3,10867], +[0,10868,0,10869,6], +[0,-1002,-1211,-2266,-2265,-2286,-2267], +[0,-1900,-2284,-46,-1397], +[1,3,10871], +[0,0,10872,10873,5], +[0,-59,-419,-744], +[0,-85,-5106,-95,-414,-783,-3449], +[1,3,10875], +[0,10876,10877,10878,9], +[0,-7134,-1290], +[0,-378,-78,-139,-612,-400,-4631,-93,-157,-112], +[0,-1929,-3100,-95,-91], +[1,3,10880], +[0,10881,10882,7,4], +[0,-5105,-7133,-4634,-3685,-7132,-7131,-564,-2706,-197,-1394,-5102,-7130,-7129,-205], +[0,-4299,-3237,-4298,-7128,-662,-7127,-5,-454,-3277,-1766,-289,-2761,-1,-1164,-380,-1013,-7126,-791,-235,-180,-16,-27, +-889,-81,-2,-284,-2164], +[1,3,10884], +[0,10885,10886,10887,11], +[0,-1462,-164,-1707,-4086], +[0,-788,-2962,-397,-30], +[0,-717,-217], +[1,3,10889], +[0,10890,10891,7,4], +[0,-427,-20,-1300,-128,-96], +[0,-94,-7125,-7124,-4797,-157,-2188,-1792,-97,-39,-156], +[1,3,10893], +[0,10894,132,58,5], +[0,-7123,-1018,-2287,-2958], +[1,3,10896], +[0,0,0,10897,4], +[0,-7122,-46,-4227,-3057,-386,-6], +[1,3,10899], +[0,0,0,10900,6], +[0,-1,-368,-6,-692,-5729], +[1,3,10902], +[0,10903,10904,10905,8], +[0,-477,-3202,-36,-264,-1771,-166,-999,-156], +[0,-11,-21,-178,-94,-13,-56,-1,-827,-32,-615,-530,-1161,-1008,-364,-313,-3,-7121,-15,-235], +[0,-32,-166,-2475,-45,-68,-42], +[1,3,10907], +[0,10908,0,10909,4], +[0,-758,-4105,-93,-2863], +[0,-1900,-2284,-46,-4104,-4103], +[1,3,10911], +[0,10912,10913,7,4], +[0,-4127,-43,-118,-349,-28,-259], +[0,-7120,-2329,-7119,-662,-5,-7118,-16,-1,-791,-2], +[1,3,10915], +[0,0,91,10916,10], +[0,-2049,-856,-720,-3849,-2318,-630], +[1,3,10918], +[0,0,10919,10920,10], +[0,-171,-1768], +[0,-74,-1783,-952,-1768,-1090,-307,-61], +[1,3,10922], +[0,0,10923,10924,4], +[0,-169,-32,-1844,-7117,-654,-3974,-314,-1537,-313,-653,-4,-273], +[0,-7116,-7115,-7114,-7113,-7112,-7111,-95,-1369], +[1,3,10926], +[0,10927,10928,7,4], +[0,-4077], +[0,-74,-858,-7110], +[1,3,10930], +[0,0,10931,10932,6], +[0,-2950,-48,-7109,-7108,-5,-103,-848,-1,-12,-181,-150,-527,-3429,-18,-1385,-4,-7107,-7106,-459,-120,-371,-210,-2,-83,-30], +[0,-7105,-3112,-3042,-2327,-727,-4221,-23,-642,-2351,-1094,-436,-635,-2,-247,-132,-939,-202,-674], +[1,3,10934], +[0,10935,10936,10937,6], +[0,-2976,-2057], +[0,-3655,-4569,-7104,-231,-1184,-1346,-118,-28,-4910,-606,-3848,-1997,-14,-891,-130,-2,-2158,-975], +[0,-2464,-89,-3348,-975,-14,-17], +[1,3,10939], +[0,0,10940,10941,5], +[0,-48,-103,-1,-10,-181,-7103,-826,-762,-79,-371,-7102,-2,-83,-104,-30], +[0,-5036,-2,-318,-409,-723,-7101,-5121,-1368], +[1,3,10943], +[0,0,0,10944,6], +[0,-387,-3243,-1202], +[1,3,10946], +[0,10947,10948,10949,10], +[0,-2684,-7100,-7099,-7098,-7097,-7096,-7095,-7094,-7093,-1762,-5059,-3688,-7092,-4077,-7091,-7090,-7089,-7088,-7087, +-7086,-7085,-7084,-7083,-7082,-7081,-7080,-7079,-7078,-7077,-7076,-7075,-5826,-1714,-4205,-7074,-7073,-1346,-1653,-7072, +-7071,-7070,-7069,-7068,-7067,-7066,-1849,-2983,-7065,-297,-1518,-7064,-4488,-606,-7063,-2531,-2781,-7062,-557,-311, +-2341,-2748,-7061,-7060, +-7059,-7058], +[0,-7057,-7056,-7055,-861,-7054,-949,-858,-2947,-3846,-1,-1324,-3408,-373,-1287,-30,-4141,-7053,-74,-1424], +[0,-7052,-3408,-873,-557,-2591,-74,-1238,-2717,-2,-5867,-102,-1292,-52,-7051], +[1,3,10951], +[0,0,10952,10953,11], +[0,-29,-8,-57,-33,-171,-2], +[0,-46,-860,-4867,-7050,-7049,-7048,-7047,-7046,-7045,-7044,-7043,-24,-1428,-53,-7042,-7041,-7040,-7039,-7038,-7037,-7036, +-7035,-7034,-7033,-7032,-7031,-2,-7030,-7029,-7028,-7027,-7026,-7025,-7024,-7023,-7022], +[1,3,10955], +[0,10956,10957,134,6], +[0,-3846,-6181], +[0,-8,-1,-14,-57,-4,-2,-29,-47,-12,-25,-176,-19,-22], +[1,3,10959], +[0,0,10960,10961,5], +[0,-47,-87,-6,-35,-2], +[0,-6,-3266,-336,-2960], +[1,3,10963], +[0,10964,10965,10966,5], +[0,-7021,-7020,-7019], +[0,-7018,-7017,-7016,-7015,-7014,-7013,-7012,-7011,-7010,-7009,-7008,-7007,-7006,-7005,-7004,-7003,-7002,-7001,-7000, +-6999,-6998,-6997,-6996], +[0,-6174,-75,-61,-3102,-543,-13,-293,-42,-6995,-6994,-6993,-166,-628,-1628], +[1,3,10968], +[0,0,287,134,5], +[1,3,10970], +[0,10971,10972,10973,5], +[0,-6992,-6991,-6990,-6989,-6988,-6987,-6986,-6985,-6984,-4286,-6983,-6982,-6981,-646,-2768,-258,-1475], +[0,-633,-5,-47,-87,-6,-35,-30,-6980], +[0,-4076,-399,-2175,-6979,-6,-127,-102,-53,-1292,-3841,-6978,-2946,-2947,-6071,-4075,-6977,-6976,-6975,-6974,-6973,-4074, +-6972,-6971,-6970,-6969], +[1,3,10975], +[0,0,0,10976,4], +[0,-4520,-24], +[1,3,10978], +[0,10979,10980,10981,4], +[0,-4720,-4719,-4718,-4714,-4717,-566], +[0,-29,-5,-56,-8,-4,-602,-373,-489,-57,-33,-371,-2179,-2], +[0,-1684,-545,-42], +[1,3,10983], +[0,10984,10985,10986,5], +[0,-1475,-2664], +[0,-104,-6,-380,-35,-847,-330,-537,-122,-155,-2608], +[0,-6,-380,-6968,-107,-42,-4796], +[1,3,10988], +[0,10989,10990,10991,5], +[0,-915,-564,-215,-6967,-3008,-442,-6966,-708,-6965,-650,-4097,-6964,-6963,-6962,-6961,-6960,-6959,-6958,-1755,-6957, +-6956,-1381], +[0,-258,-171,-1,-206,-14,-30,-796,-964,-2,-11,-5,-6955,-6954,-6953,-6952,-1017,-729,-633,-6951,-6950,-103,-6949,-6948, +-6947], +[0,-2947,-6946,-6945,-1609,-6944,-6943,-6942,-6941,-6940,-935,-1269,-2,-6939,-52], +[1,3,10993], +[0,0,10994,10995,5], +[0,-366,-122,-29,-1025,-8,-241,-4,-6,-35,-286,-7,-57,-2], +[0,-6,-241,-1608,-399,-434,-307,-75,-61], +[1,3,10997], +[0,0,10998,10999,6], +[0,-478,-513,-80,-63,-232,-673,-6938,-29,-586,-6937,-949,-1640,-858,-2589,-152,-404,-26,-8,-176,-79,-18,-5499,-4,-14,-226, +-301,-321,-3867,-557,-57,-2,-104,-74,-882,-1783,-2454], +[0,-74,-873,-6936,-4073,-6935,-4140,-3867,-6934,-6173,-3361,-4139,-6933,-2,-6932,-414,-95,-45,-129,-102], +[1,3,11001], +[0,94,0,11002,4], +[0,-234,-108,-932,-6,-95,-282,-333,-102,-1901,-1365,-281], +[1,3,11004], +[0,11005,11006,261,6], +[0,-6931,-1245,-1452,-323,-38,-975,-311], +[0,-427,-1757,-1099,-2976,-2296,-2057,-513,-80,-3423,-728,-2362,-2656,-4209,-2539,-925,-119,-223,-472,-383,-230,-2082, +-215,-1024,-1595,-89,-501,-824,-922,-4206,-4207,-3338,-297,-1518,-2083,-646,-149,-607,-606,-4208,-164,-561,-902,-2977, +-3029,-1914,-1997,-14,-894,-77,-1457,-748,-2978,-175,-2746,-2341,-205], +[1,3,11008], +[0,0,0,11009,4], +[0,-234,-108,-282,-333,-4607,-659,-95,-60,-2803,-4605,-4604,-5398,-6930,-6929,-123], +[1,3,11011], +[0,0,37,288,9], +[1,3,11013], +[0,11014,11015,11016,9], +[0,-2740,-6928,-6927,-3829,-1268,-3084,-6926,-5634,-6925,-6924,-6923,-6922,-3577,-6921,-2425,-1088,-6920,-6919,-6918, +-6917,-6916,-6915,-6914,-6913,-6912,-6911,-6910,-6909,-6908,-6907,-6906,-6905,-6904,-6903,-6902,-6901,-6900,-6899,-6898, +-6897,-6896,-6895,-6894,-6893,-6892,-6891,-1381,-6890,-6889,-6888,-6887,-6886,-6885,-6884,-6883,-6882,-6548,-6881,-6880, +-6879,-2948,-6878,-6877, +-6876,-6875,-6874,-6873,-4128,-1034,-3581,-6872,-2989,-352,-6871,-574,-36,-6870,-207,-4072,-6869,-6227,-1017,-2971,-1331, +-6275,-6868,-708,-1530,-1156,-4887,-6867,-4540,-1004,-1691,-6866,-6865,-2860,-6864,-6863,-6862,-468,-6861,-6394,-6860, +-228,-3105,-6859,-6858,-646,-241,-6384,-6857,-6856,-4571,-2832,-6855,-6854,-6853,-6852,-2946,-4487,-6851,-6850,-6849, +-2317,-6362,-605, +-1307,-6848,-1505,-6847,-5113,-6846,-3916,-1804,-6,-6845,-35,-2632,-6844,-6344,-6843,-5486,-6842,-3908,-6841,-559,-6840, +-6839,-6838,-274,-521,-2810,-6837,-6836,-16,-689,-863,-6835,-3893,-3889,-6834,-2165,-1790,-6833,-6832,-1101,-6831,-2178, +-6830,-123,-6829,-205,-259,-258,-1475,-6828], +[0,-49,-4201,-6827,-6826,-6825,-6824,-6823,-6822,-4709,-6821,-357,-5657,-2126,-155,-122,-317,-6820,-6819,-162,-185,-6818, +-633,-142,-1278,-5,-6817,-6816,-6815,-2945,-47,-87,-6814,-137,-4175,-3013,-677,-454,-1047,-103,-2607,-1179,-1346,-26, +-2895,-6813,-215,-1024,-6812,-6811,-6810,-1,-6809,-6808,-40,-28,-1324,-9,-4620,-6807,-18,-23,-1137,-6806, +-261,-188,-610,-4484,-564,-4,-147,-864,-6805,-601,-4619,-120,-6804,-179,-153,-210,-2,-133,-340,-104,-30], +[0,-52,-4075,-4074,-399,-6803,-2946,-6802,-6801,-6800,-6799], +[1,3,11018], +[0,291,135,63,5], +[1,3,11020], +[0,11021,131,11022,5], +[0,-1381,-257,-58,-41,-1691,-284,-258], +[0,-6798,-6797,-6796,-6795,-6794,-42,-3102], +[1,3,11024], +[0,11025,11026,11027,4], +[0,-2640,-4291], +[0,-748,-606,-6,-285,-16,-30,-2297,-35,-687,-2705,-515,-362,-164,-311,-2,-5,-137,-4203,-634,-1705,-6793,-1469], +[0,-746,-5802,-30,-61,-75,-129,-127,-4284,-6,-74,-220,-1713], +[1,3,11029], +[0,11030,11031,11032,5], +[0,-422,-6792,-6791], +[0,-17,-29,-5,-92], +[0,-588,-5114,-75,-61,-6790,-3557], +[1,3,11034], +[0,0,11035,11036,4], +[0,-182,-169,-98,-328,-1187,-447,-291,-6789,-13,-6788,-4307,-298,-36,-1342,-1,-84,-67,-131,-919,-277,-40,-1532,-346,-78, +-703,-139,-212,-6787,-3353,-1145,-189,-418,-6786,-2862,-909,-812,-526,-3,-288,-645,-7,-2975,-1233,-120,-112,-2970,-438, +-17,-170], +[0,-636,-2419,-6785,-1366,-1198,-414,-2294,-3076,-95], +[1,3,11038], +[0,11039,11040,11041,5], +[0,-6784,-6783], +[0,-47,-87,-2688,-22,-19,-289,-1,-12,-25,-64,-6782,-6781,-4,-14,-301,-33,-44,-2], +[0,-6780,-6779,-6778,-6,-282,-333,-95,-6777], +[1,3,11043], +[0,0,11044,11045,6], +[0,-6,-234,-1908,-6776], +[0,-234,-5037,-282,-333,-6775,-6774,-6773,-6772,-52,-6,-6771,-484,-370,-508,-6770,-2133,-959,-271,-4953], +[1,3,11047], +[0,11048,0,11049,6], +[0,-6170,-3845], +[0,-224,-24,-73], +[1,3,11051], +[0,0,0,11052,9], +[0,-135,-24], +[1,3,11054], +[0,11055,11056,11057,6], +[0,-4071,-11,-427,-1095,-140,-6769,-1381,-6768,-305,-58,-403,-534,-326,-207,-118,-229,-40,-4467,-759,-495,-810,-188,-149, +-324,-38,-560,-397,-1300,-6767,-2781,-796,-795,-1285,-258,-3261], +[0,-729,-185,-788,-6766,-7,-171,-210,-2], +[0,-127,-102,-1292,-4076,-3841], +[1,3,11059], +[0,0,0,11060,6], +[0,-6,-74,-2381,-1375,-6765,-6764], +[1,3,11062], +[0,0,11063,11064,6], +[0,-29,-5,-22,-19,-1,-2236,-12,-10,-25,-67,-762,-150,-28,-8,-4,-7,-14,-895,-4371,-301,-57,-33,-124,-794,-3405,-2], +[0,-6763,-3266,-6762,-6761,-6760,-6759,-6758,-6757,-683,-6756,-141,-91,-53,-46], +[1,3,11066], +[0,0,0,11067,6], +[0,-6755,-546,-6754,-6753,-6752,-6751,-4070,-6750,-6749,-6748,-6747,-6746,-6745,-6744,-3036,-6743,-6742,-106,-650,-6741, +-4070,-1682,-53,-45,-2], +[1,3,11069], +[0,11070,0,73,4], +[0,-3839,-3565,-2750,-1228,-928,-201,-6740,-116,-6739,-4151,-657,-498,-28,-3220,-3250,-2040,-23,-647,-236,-752,-3134, +-1305,-562,-1802,-641,-2185,-16,-749,-461,-5635,-210,-123,-219,-977], +[1,3,11072], +[0,11073,11074,11075,4], +[0,-4135,-4134], +[0,-5,-4133,-4132,-4131,-7,-371,-2,-30], +[0,-2961,-1041,-99,-46,-1157,-1607], +[1,3,11077], +[0,11078,11079,11080,4], +[0,-915,-606,-3848,-1411,-2158,-4538,-4485,-1635,-2534,-1244,-2221,-6738,-2425,-4483,-5069,-6737,-6736], +[0,-171,-30,-1680,-1660,-2,-5,-5162,-6735,-310,-2331], +[0,-3918,-842,-6734,-1044,-684,-1398,-61], +[1,3,11082], +[0,11083,11084,11085,6], +[0,-6733,-6732], +[0,-6731,-26,-1,-344,-6730,-15,-180,-6729,-39], +[0,-1227,-2045,-2037,-1902,-1073,-6728,-6727,-3546,-1070,-3547,-6726,-52], +[1,3,11087], +[0,11088,11089,7,4], +[0,-6725], +[0,-1172,-2,-5270], +[1,3,11091], +[0,11092,11093,11094,10], +[0,-6,-35,-6724], +[0,-694,-7,-196,-211,-121,-2,-11,-5,-47,-98,-87,-972,-4029], +[0,-3885,-967,-6723,-6,-412,-31,-789,-3000,-2318,-862], +[1,3,11096], +[0,0,11097,11098,5], +[0,-4498,-48,-2664,-6722,-6721,-3688,-6720,-155,-122,-317,-1754,-735,-874,-5,-47,-87,-6719,-2967,-475,-304,-384,-764,-1, +-190,-3851,-55,-9,-79,-18,-221,-228,-38,-4,-3258,-6,-6718,-35,-1100,-6717,-559,-226,-640,-6716,-689,-748,-2781,-557,-175, +-6715,-33,-153,-2,-83,-3074,-104,-847,-4101,-30,-6714,-1475], +[0,-6,-516,-1375,-3491,-6713,-1256,-4428,-4427,-4426,-734,-1718,-2405], +[1,3,11100], +[0,11101,11102,11103,5], +[0,-728,-4453,-1581,-238,-472,-36,-1595,-229,-40,-1148,-297,-606,-164,-692,-14,-489], +[0,-6712,-6711,-513,-80,-231,-63,-1582,-5063,-6710,-3823,-162,-185,-2636,-6709,-5,-47,-87,-22,-19,-537,-949,-119,-89, +-4311,-1,-64,-1435,-65,-2992,-6,-35,-7,-415,-1223,-220,-210,-2,-104,-6708,-30,-74], +[0,-716,-2623,-1373,-6707,-1690,-6706,-6705,-91,-6704], +[1,3,11105], +[0,11106,11107,7,5], +[0,-1175,-6703,-6702], +[0,-43,-6701,-153,-104,-79,-3,-327,-1,-14,-55,-4,-796,-6700,-793,-48,-2,-5,-1001,-69,-6699,-5363,-283,-6698,-231,-6697, +-5362,-204,-1318,-12,-80,-19,-63,-22], +[1,3,11109], +[0,11110,11111,11112,6], +[0,-1960,-1543,-759,-6696], +[0,-1244,-5,-6695,-915,-198,-156], +[0,-327,-4256,-6694,-6693,-1199,-3476,-1661,-281,-1704,-6692,-844,-6691,-6690,-1064,-256,-5774], +[1,3,11114], +[0,11115,11116,11117,8], +[0,-4069], +[0,-211,-2,-17,-92,-6,-35,-47,-87], +[0,-6,-4069,-126,-625,-1202,-6689,-281,-412,-1053,-6688,-2037,-1070,-1421,-3272], +[1,3,11119], +[0,11120,11121,11122,5], +[0,-4204,-3004,-1079], +[0,-30,-398], +[0,-91,-398,-129,-1405,-75,-61], +[1,3,11124], +[0,11125,11126,11127,4], +[0,-836,-20,-119,-499,-1328,-708,-379,-470,-2211,-228,-157,-16,-1225], +[0,-6687,-2131,-137,-1903,-51,-327,-15,-2317,-4,-1122,-4610,-33,-81,-2,-34], +[0,-6686,-37,-6685,-42,-6684,-6683,-100,-1064,-157,-4662,-6682], +[1,3,11129], +[0,11130,11131,278,5], +[0,-20,-96,-6681,-2753,-2944], +[0,-5,-6680], +[1,3,11133], +[0,11134,91,11135,5], +[0,-16,-2753,-2944,-4068], +[0,-2953,-2952,-2951,-544,-61,-1090], +[1,3,11137], +[0,11138,11139,11140,4], +[0,-6679,-2944,-4068,-2753], +[0,-6167,-6678,-4098,-2046,-991,-840], +[0,-2953,-2952,-2951,-544,-61,-1090,-4543], +[1,3,11142], +[0,11143,11144,11145,4], +[0,-58,-3864,-6212,-6677], +[0,-4099,-6676,-6675,-6163], +[0,-1364,-37,-114,-42,-1363,-1362], +[1,3,11147], +[0,11148,0,11149,4], +[0,-4067], +[0,-1364,-1898,-6674,-6673,-42,-1363,-1362], +[1,3,11151], +[0,94,11152,11153,8], +[0,-62,-3030,-861,-29,-142,-47,-2151,-22,-19,-1179,-1,-12,-25,-9,-8,-6672,-4,-6,-234,-1908,-373,-2], +[0,-234,-108,-282,-333,-6671,-6670,-95,-484,-129,-1067,-3428,-4194,-3085,-85], +[1,3,11155], +[0,11156,11157,11158,10], +[0,-2182], +[0,-2945,-605], +[0,-842,-1066,-61,-1983,-2182], +[1,3,11160], +[0,11161,11162,7,6], +[0,-1757,-323,-5910], +[0,-3578,-4071,-6669,-6668,-4836,-2361,-5,-623,-1047,-1580,-1387,-6667,-89,-1,-6666,-527,-18,-297,-975,-14,-970,-371,-2, +-6665,-4085,-104,-30,-17,-92,-2748], +[1,3,11164], +[0,72,0,11165,6], +[0,-1364,-1898,-6664,-42,-1363,-1362], +[1,3,11167], +[0,11168,0,11169,10], +[0,-6663], +[0,-1364,-1898,-6662,-625,-42,-1363,-1362], +[1,3,11171], +[0,11172,0,73,5], +[0,-2647,-23,-442,-3119], +[1,3,11174], +[0,0,11175,11176,5], +[0,-366,-48,-109,-103,-193,-1,-12,-4,-7,-894,-27,-175,-81,-44,-124,-794,-83,-104,-4066,-4065,-4064,-6661,-793,-30], +[0,-6660,-585,-45,-2,-4063,-6659,-1059,-4062,-95], +[1,3,11178], +[0,0,11179,11180,5], +[0,-366,-5,-22,-19,-1640,-1,-12,-421,-3,-4,-4061,-894,-6658,-27,-124,-794,-2,-104,-4066,-4065,-4064], +[0,-585,-4063,-4944,-679,-1059,-4062,-327,-1215,-111,-95], +[1,3,11182], +[0,11183,0,11184,4], +[0,-3884], +[0,-1254,-45,-6657,-2157,-4,-2], +[1,3,11186], +[0,0,0,11187,4], +[0,-685,-6656,-1525,-4124,-1931,-158,-1313,-1676,-1987,-3924,-16,-1632,-2133,-6655,-6654,-4577,-3708,-686], +[1,3,11189], +[0,0,11190,7,4], +[0,-6653,-6652,-930,-6651,-6650,-80,-231,-63,-1998,-957,-4624,-6649,-6648,-4570,-58,-1341,-6647,-1462,-164,-640,-6646, +-6645], +[1,3,11192], +[0,11193,0,73,11], +[0,-3840,-2750,-1228,-3262,-5636,-201,-116,-168,-41,-1916,-2221,-23,-442,-2204,-700,-563,-1793,-210], +[1,3,11195], +[0,291,135,63,11], +[1,3,11197], +[0,11198,135,63,11], +[0,-3747,-2277,-3844,-1767], +[1,3,11200], +[0,11201,11202,11203,10], +[0,-258,-1653,-5522,-6644,-6643,-6642,-3889,-6641,-6640,-4072,-6639,-6638,-6637,-6636,-6635,-1240,-6634,-3563,-2583], +[0,-810,-2945,-3784,-2,-5,-6633,-257,-6632,-2425,-6631,-4482,-6630], +[0,-6629,-6628,-4149,-6627,-6626,-46,-6625,-6624,-6623,-4544,-6622,-6621,-6620,-6619,-6618], +[1,3,11205], +[0,11206,11207,11208,10], +[0,-349,-164,-1305], +[0,-2333,-47,-237,-6368,-1908,-2], +[0,-234,-282,-333,-2304,-722,-4439,-108,-932,-6,-95,-102,-741,-961,-1203,-1944,-1086], +[1,3,11210], +[0,11211,0,11212,8], +[0,-70,-344,-3864,-4067], +[0,-1364,-1898,-1427,-42,-1363,-1362], +[1,3,11214], +[0,0,11215,11216,9], +[0,-6617,-4100,-50,-11,-971,-173,-21,-6616,-6615,-203,-232,-94,-86,-4839,-2363,-4142,-6614,-3054,-289,-215,-1,-500,-10, +-2375,-420,-1598,-4235,-9,-8,-5763,-4429,-1435,-2634,-1306,-6613,-4,-441,-157,-4061,-14,-6612,-894,-226,-640,-801,-2], +[0,-2130,-2683,-2129,-2128,-6611,-6610], +[1,3,11218], +[0,0,11219,11220,9], +[0,-204,-69,-5,-1031,-13,-3,-288,-14,-1109,-2], +[0,-6609,-6159,-6608,-5402,-485,-6607,-4144,-4073,-4137,-1059,-1369,-6606,-6605,-2305,-6604,-2494,-3106,-6603,-6602,-6601], +[1,3,11222], +[0,0,70,11223,9], +[0,-3005,-6600], +[1,3,11225], +[0,11226,11227,11228,9], +[0,-6599,-6598,-6597,-6596,-6595], +[0,-576,-1,-6594,-6593,-375,-179,-558,-175], +[0,-414,-636,-6592,-1198,-1366,-1365,-4222,-91], +[1,3,11230], +[0,0,11231,11232,9], +[0,-13,-151,-32,-654,-4987,-820,-819,-314,-653,-6591,-3], +[0,-588,-4652,-4651,-236,-907,-956], +[1,3,11234], +[0,0,0,11235,9], +[0,-6158,-3420,-631,-1925,-6590,-3284,-2138,-5096,-73], +[0,25,9], +[1,3,11238], +[0,11239,0,7,9], +[0,-1881], +[1,3,11241], +[0,0,11242,11243,9], +[0,-1332,-39], +[0,-6155,-4783,-2348,-6589,-4532], +[1,3,11245], +[0,0,11246,11247,9], +[0,-3,-421,-3446,-6588,-4060,-808,-60], +[0,-1673,-808,-4060,-3446], +[1,3,11249], +[0,0,0,11250,9], +[0,-6587,-2979], +[1,3,11252], +[0,11253,0,7,9], +[0,-522,-4712,-96,-552,-566,-247,-1029,-5397,-135,-978], +[1,3,11255], +[0,11256,11257,11258,9], +[0,-121,-6586], +[0,-50,-11,-306,-21,-136,-178,-927,-56,-445,-1022,-1,-6585,-2462,-265,-64,-79,-3,-15,-6,-35,-2956,-6584], +[0,-256,-234,-6154,-6583,-1374,-6], +[1,3,11260], +[0,0,11261,7,9], +[0,-11,-21,-80,-3538,-63,-278,-833,-59,-378,-78,-910,-139,-612,-400,-2140,-702,-157,-14,-273,-6582,-2420,-6581,-1956,-226, +-744], +[1,3,11263], +[0,0,11264,7,9], +[0,-7,-72,-6580,-6579], +[1,3,11266], +[0,0,11267,11268,9], +[0,-50,-11,-21,-94,-765,-1,-191,-12,-10,-25,-8,-4], +[0,-452,-1207,-475,-6578,-73,-6577,-773,-5550,-1964,-3045,-450,-761,-126,-1206,-202,-452,-1413,-637] +] diff --git a/packages/flatpack-json/fixtures/cspell-cache-flatpack.json b/packages/flatpack-json/fixtures/cspell-cache-flatpack.json index 662201a59554..115671a19730 100644 --- a/packages/flatpack-json/fixtures/cspell-cache-flatpack.json +++ b/packages/flatpack-json/fixtures/cspell-cache-flatpack.json @@ -1433,7 +1433,77 @@ [1,10,8935], [1,7,8954], [1,7,8959], -[0,1435,327,1436,1437,1438,328,222,183,224,621,622,623,625,1442,630,631,1446,634,636,225,330,1454,1455,1457,638,639,640,642,1463,1465,1467,226,646,1469,1471,647,1474,1477,333,1481,1484,648,1486,1487,1488,650,185,1491,1492,1493,651,1497,334,1500,1501,652,336,1505,1508,1510,655,1513,1514,338,656,1518,340,1522,230,1525,343,1527,344,1530,1532,1534,1536,659,1540,660,1544,1546,186,1548,1550,661,662,1556,1558,1560,231,1563,663,1567,664,1569,665,1574,666,1576,667,1579,1580,1582,669,1584,1585,349,1588,670,1591,351,1593,352,1597,673,1601,1603,675,1606,676,1611,1612,233,1614,677,1618,679,1620,680,1623,357,681,1628,358,1632,359,683,684,1639,685,1641,686,1644,235,1646,360,1650,688,1653,689,1656,1657,692,693,1660,695,1662,238,1664,697,1667,1669,698,1671,699,1673,1674,364,700,1679,366,702,1684,368,1688,1692,1693,1695,239,1698,1700,1701,370,1704,371,1708,1711,1712,705,1716,1719,707,708,709,1725,710,1729,1731,711,712,1733,1734,375,1739,715,719,1742,1743,1744,242,721,1746,1747,377,1749,723,1751,378,1754,379,1757,726,1761,727,1763,1765,728,730,1771,1772,382,1776,384,731,1781,732,1783,733,734,1788,735,736,1790,1791,385,1793,737,1796,1798,1799,739,1801,387,1805,741,742,1811,244,1813,744,746,1817,1819,1820,747,1823,748,749,1828,750,1831,389,1834,1836,1837,751,1840,752,390,1848,1851,391,1854,1856,755,1859,756,757,1864,1865,393,758,394,1869,759,760,761,762,763,1877,1878,765,1880,766,1883,1885,395,768,1889,1891,1894,396,1896,397,1898,399,1901,1902,400,1905,1907,1909,772,1911,774,1915,1918,1919,1921,1923,401,1926,775,402,1930,778,1934,403,1940,1941,779,1943,781,1945,782,247,783,1953,1955,1957,1960,1961,786,787,788,405,1969,790,1971,791,1975,1977,1978,792,1981,409,1984,794,1986,410,1990,795,1993,1994,249,1997,798,1999,2000,801,802,2006,2007,2008,2011,250,2015,805,2017,806,807,808,2022,2023,2025,251,2028,2030,810,2035,413,2038,2040,812,2044,813,815,2053,816,2055,2057,817,818,2061,2062,820,2064,821,2068,2070,415,822,2074,2075,824,2078,2081,254,825,2085,2088,2090,152,2092,2095,828,2097,830,2100,420,2104,2106,2108,2109,831,2113,2116,832,2120,833,2123,834,2128,2129,835,2133,836,2138,424,2140,425,2145,839,2148,840,2152,841,2155,842,843,2159,844,2164,846,2166,427,2170,2173,849,2175,850,2180,2182,852,2186,428,2190,256,2194,257,2199,2201,853,2204,2205,429,2210,855,856,2215,857,2218,859,2221,861,2225,258,862,2230,2232,863,2236,2238,2240,2241,432,2245,433,865,2252,866,2257,867,435,2261,868,2265,869,2268,871,2272,2275,437,2279,872,2283,873,2287,876,2290,877,2294,259,2298,878,2303,879,2308,438,2311,440,2313,441,2317,881,2322,882,2325,883,2328,884,2331,885,2335,442,2337,887,2341,888,2344,890,2346,891,893,2348,895,2352,443,2356,896,2361,260,2364,444,2368,2370,446,2374,898,899,2379,900,2382,2384,901,2387,447,2389,903,2393,904,905,2397,2400,907,2403,908,2407,910,2410,2412,913,2416,2417,915,2421,916,2425,2426,450,2430,451,2433,918,2436,262,2438,919,2442,920,2448,921,2453,2454,452,2456,2459,263,2462,922,2466,923,2470,924,925,2475,264,2478,926,2482,453,2486,927,2488,928,2491,929,2494,930,2497,932,2499,933,2502,265,2505,934,2509,2511,935,2514,936,937,2519,938,2521,939,2525,940,2528,2530,942,2534,2535,455,2538,456,2542,2545,457,2547,2548,458,2552,945,2555,2557,2559,2561,2563,946,2565,459,2567,948,949,950,2576,2577,952,2580,2581,460,2585,2586,955,2590,2591,268,2593,2594,958,959,2596,960,461,2598,2601,961,2604,201,2607,269,2612,2614,462,2619,966,2622,967,2626,2627,463,2630,968,2635,969,970,2639,971,464,2646,2649,974,2653,976,2658,465,2661,977,2665,978,2667,270,2672,979,2675,2678,2681,466,2685,982,2687,2688,2692,469,2696,2697,985,2701,470,2706,2708,2709,471,2712,2713,988,2716,472,2719,2722,2724,2726,474,2730,2732,2733,2735,271,2739,2740,2741,2742,475,2744,477,992,2748,2749,2751,995,2754,272,2757,2760,996,2764,479,2767,273,2771,480,2774,999,2778,2780,2781,1001,2783,1002,2786,1003,2790,481,2792,1004,1005,2797,202,2800,483,2804,1006,2807,1007,2810,1008,2813,485,2817,1009,2821,2824,2826,486,2830,1010,1011,2835,1012,2839,2840,2842,1015,2845,2847,488,2850,2851,489,2853,2855,490,1018,492,2860,1020,2864,1021,1022,2870,1024,1026,2876,1028,2879,2880,1029,2884,1030,2888,494,2892,2895,1032,2898,276,2901,2903,1035,1036,2906,1037,2908,1038,2910,2912,1039,2915,278,1041,2919,203,2924,1043,2926,495,1044,2931,1046,496,2935,1048,1049,2941,1050,2943,2944,2946,497,2950,1051,2954,1052,1053,2958,1054,2961,1055,2967,2969,499,2974,1056,1057,2978,501,2980,2982,1058,1060,2987,2989,2992,2994,502,1061,3000,1062,3003,3005,1063,1064,3010,279,3012,1065,3015,1066,3022,3025,1067,3027,1068,3031,503,3033,1069,3038,1070,3040,504,3042,3043,505,3045,3047,506,3051,3053,3055,3058,1072,3063,3065,1074,3071,3073,3077,3078,1075,3081,3082,3083,1076,3085,1077,3088,3089,1079,1080,3093,1081,1082,3099,509,1085,3101,3105,1087,3108,1088,1089,3111,1090,3116,1091,3119,3120,1092,3124,3125,1093,3128,3129,510,3132,1095,3135,1096,3139,1097,3141,3143,1098,3146,3147,1099,1100,3150,3151,3152,3153,3154,206,3157,1101,3161,511,3164,512,1102,3170,3171,3173,3176,3178,514,1105,3183,1107,3187,3190,515,3195,3197,1108,3199,516,3201,1109,1111,3206,1112,3211,3213,1113,3218,3220,3222,3223,1114,207,1115,3229,3232,517,3236,3239,1116,3243,3244,1117,3248,1118,3252,518,3256,3258,1120,3260,1121,3264,1122,3267,3269,519,3272,1123,3277,1124,3281,520,3284,1125,3288,521,3291,3293,3294,522,3297,1127,3300,1128,3304,1129,3309,3311,3312,1131,3316,3317,1132,1134,1135,3322,1136,3325,3326,3327,1138,3329,3330,1139,525,3336,3339,1140,3341,1141,3344,3346,526,3349,3352,3354,3356,1142,3359,1143,3361,527,3365,283,3368,1145,3372,1146,3375,529,3378,3380,530,3383,3385,531,3388,1148,3391,1149,3394,532,3397,533,3401,3404,1150,3407,1151,3409,3411,1153,3415,3416,3417,210,3420,3422,3423,1155,3427,1156,3431,1157,3435,3438,534,3442,1158,3446,3448,1159,1160,3452,3455,3456,535,3459,3461,1161,3463,3465,3466,3467,3468,3469,3470,536,3471,1163,3476,3479,1165,538,3482,3484,539,3490,3495,1168,3501,1169,3505,1170,3510,1171,3512,3513,3514,3516,1173,3521,3523,3524,1175,3526,3528,3530,171,1176,3533,3534,3535,3536,1177,3538,287,1178,3545,3546,3547,3548,1179,3550,541,1180,3555,3556,3557,3558,1181,3560,542,1182,3564,3565,3566,3567,1183,3569,174,3571,544,3574,3576,3577,3578,1187,3580,546,3583,3584,3585,549,3587,1189,3589,550,1190,3594,3597,3598,3599,3600,1191,3603,1194,3607,1196,3610,3611,3612,3615,552,3617,3618,1197,3620,554,3623,3624,3625,3626,1198,3628,293,3632,3633,1200,3635,556,3638,3639,3640,3641,1201,3643,557,1203,3651,3652,3653,3654,1204,3656,558,559,1206,1207,3662,3663,560,1209,3667,3668,3669,3670,1210,3672,299,3674,3675,562,3677,1212,3682,563,3684,3685,3686,3687,1214,3690,3691,565,3693,1215,3696,566,3698,3699,3700,3701,1216,3703,1218,3709,302,3712,3713,3714,176,3718,1220,3721,3722,3723,1221,3724,1223,3730,3731,3732,3734,1224,1225,3739,3740,306,1229,3744,3745,3748,1231,568,1232,3754,3755,569,3758,570,3763,3764,1234,1235,571,3772,3773,1236,3775,1238,3777,3778,1239,3780,574,3782,3783,3784,3785,1240,3787,1241,3789,3790,3791,1242,309,3796,575,3802,1245,1246,3807,3809,3812,1248,3815,3817,3819,3821,577,3822,3824,3826,310,3830,1252,3832,3834,1253,3839,3841,3843,3846,1254,3852,3853,3857,3859,1257,3862,3864,3866,3868,3871,3874,3875,1259,311,3881,3884,1260,1261,3890], +[0,1435,327,1436,1437,1438,328,222,183,224,621,622,623,625,1442,630,631,1446,634,636,225,330,1454,1455,1457,638,639,640, +642,1463,1465,1467,226,646,1469,1471,647,1474,1477,333,1481,1484,648,1486,1487,1488,650,185,1491,1492,1493,651,1497,334, +1500,1501,652,336,1505,1508,1510,655,1513,1514, +338,656,1518,340,1522,230,1525,343,1527,344,1530,1532,1534,1536,659,1540,660,1544,1546,186,1548,1550,661,662,1556,1558, +1560,231,1563,663,1567,664,1569,665,1574,666,1576,667,1579,1580,1582,669,1584,1585,349,1588,670,1591,351,1593,352,1597, +673,1601,1603,675,1606,676,1611,1612,233,1614,677,1618, +679,1620,680,1623,357,681,1628,358,1632,359,683,684,1639,685,1641,686,1644,235,1646,360,1650,688,1653,689,1656,1657,692, +693,1660,695,1662,238,1664,697,1667,1669,698,1671,699,1673,1674,364,700,1679,366,702,1684,368,1688,1692,1693,1695,239, +1698,1700,1701,370,1704,371,1708,1711,1712,705,1716, +1719,707,708,709,1725,710,1729,1731,711,712,1733,1734,375,1739,715,719,1742,1743,1744,242,721,1746,1747,377,1749,723, +1751,378,1754,379,1757,726,1761,727,1763,1765,728,730,1771,1772,382,1776,384,731,1781,732,1783,733,734,1788,735,736,1790, +1791,385,1793,737,1796,1798,1799,739,1801,387,1805, +741,742,1811,244,1813,744,746,1817,1819,1820,747,1823,748,749,1828,750,1831,389,1834,1836,1837,751,1840,752,390,1848, +1851,391,1854,1856,755,1859,756,757,1864,1865,393,758,394,1869,759,760,761,762,763,1877,1878,765,1880,766,1883,1885,395, +768,1889,1891,1894,396,1896,397,1898,399,1901,1902, +400,1905,1907,1909,772,1911,774,1915,1918,1919,1921,1923,401,1926,775,402,1930,778,1934,403,1940,1941,779,1943,781,1945, +782,247,783,1953,1955,1957,1960,1961,786,787,788,405,1969,790,1971,791,1975,1977,1978,792,1981,409,1984,794,1986,410, +1990,795,1993,1994,249,1997,798,1999,2000,801,802,2006, +2007,2008,2011,250,2015,805,2017,806,807,808,2022,2023,2025,251,2028,2030,810,2035,413,2038,2040,812,2044,813,815,2053, +816,2055,2057,817,818,2061,2062,820,2064,821,2068,2070,415,822,2074,2075,824,2078,2081,254,825,2085,2088,2090,152,2092, +2095,828,2097,830,2100,420,2104,2106,2108,2109,831,2113, +2116,832,2120,833,2123,834,2128,2129,835,2133,836,2138,424,2140,425,2145,839,2148,840,2152,841,2155,842,843,2159,844, +2164,846,2166,427,2170,2173,849,2175,850,2180,2182,852,2186,428,2190,256,2194,257,2199,2201,853,2204,2205,429,2210,855, +856,2215,857,2218,859,2221,861,2225,258,862,2230,2232, +863,2236,2238,2240,2241,432,2245,433,865,2252,866,2257,867,435,2261,868,2265,869,2268,871,2272,2275,437,2279,872,2283, +873,2287,876,2290,877,2294,259,2298,878,2303,879,2308,438,2311,440,2313,441,2317,881,2322,882,2325,883,2328,884,2331,885, +2335,442,2337,887,2341,888,2344,890,2346,891,893, +2348,895,2352,443,2356,896,2361,260,2364,444,2368,2370,446,2374,898,899,2379,900,2382,2384,901,2387,447,2389,903,2393, +904,905,2397,2400,907,2403,908,2407,910,2410,2412,913,2416,2417,915,2421,916,2425,2426,450,2430,451,2433,918,2436,262, +2438,919,2442,920,2448,921,2453,2454,452,2456,2459,263, +2462,922,2466,923,2470,924,925,2475,264,2478,926,2482,453,2486,927,2488,928,2491,929,2494,930,2497,932,2499,933,2502,265, +2505,934,2509,2511,935,2514,936,937,2519,938,2521,939,2525,940,2528,2530,942,2534,2535,455,2538,456,2542,2545,457,2547, +2548,458,2552,945,2555,2557,2559,2561,2563,946,2565, +459,2567,948,949,950,2576,2577,952,2580,2581,460,2585,2586,955,2590,2591,268,2593,2594,958,959,2596,960,461,2598,2601, +961,2604,201,2607,269,2612,2614,462,2619,966,2622,967,2626,2627,463,2630,968,2635,969,970,2639,971,464,2646,2649,974, +2653,976,2658,465,2661,977,2665,978,2667,270,2672,979, +2675,2678,2681,466,2685,982,2687,2688,2692,469,2696,2697,985,2701,470,2706,2708,2709,471,2712,2713,988,2716,472,2719, +2722,2724,2726,474,2730,2732,2733,2735,271,2739,2740,2741,2742,475,2744,477,992,2748,2749,2751,995,2754,272,2757,2760, +996,2764,479,2767,273,2771,480,2774,999,2778,2780,2781,1001,2783, +1002,2786,1003,2790,481,2792,1004,1005,2797,202,2800,483,2804,1006,2807,1007,2810,1008,2813,485,2817,1009,2821,2824,2826, +486,2830,1010,1011,2835,1012,2839,2840,2842,1015,2845,2847,488,2850,2851,489,2853,2855,490,1018,492,2860,1020,2864,1021, +1022,2870,1024,1026,2876,1028,2879,2880,1029,2884,1030,2888,494,2892, +2895,1032,2898,276,2901,2903,1035,1036,2906,1037,2908,1038,2910,2912,1039,2915,278,1041,2919,203,2924,1043,2926,495,1044, +2931,1046,496,2935,1048,1049,2941,1050,2943,2944,2946,497,2950,1051,2954,1052,1053,2958,1054,2961,1055,2967,2969,499, +2974,1056,1057,2978,501,2980,2982,1058,1060,2987,2989,2992,2994,502,1061, +3000,1062,3003,3005,1063,1064,3010,279,3012,1065,3015,1066,3022,3025,1067,3027,1068,3031,503,3033,1069,3038,1070,3040, +504,3042,3043,505,3045,3047,506,3051,3053,3055,3058,1072,3063,3065,1074,3071,3073,3077,3078,1075,3081,3082,3083,1076, +3085,1077,3088,3089,1079,1080,3093,1081,1082,3099,509,1085,3101,3105,1087,3108, +1088,1089,3111,1090,3116,1091,3119,3120,1092,3124,3125,1093,3128,3129,510,3132,1095,3135,1096,3139,1097,3141,3143,1098, +3146,3147,1099,1100,3150,3151,3152,3153,3154,206,3157,1101,3161,511,3164,512,1102,3170,3171,3173,3176,3178,514,1105,3183, +1107,3187,3190,515,3195,3197,1108,3199,516,3201,1109,1111,3206,1112,3211, +3213,1113,3218,3220,3222,3223,1114,207,1115,3229,3232,517,3236,3239,1116,3243,3244,1117,3248,1118,3252,518,3256,3258, +1120,3260,1121,3264,1122,3267,3269,519,3272,1123,3277,1124,3281,520,3284,1125,3288,521,3291,3293,3294,522,3297,1127,3300, +1128,3304,1129,3309,3311,3312,1131,3316,3317,1132,1134,1135,3322,1136,3325, +3326,3327,1138,3329,3330,1139,525,3336,3339,1140,3341,1141,3344,3346,526,3349,3352,3354,3356,1142,3359,1143,3361,527, +3365,283,3368,1145,3372,1146,3375,529,3378,3380,530,3383,3385,531,3388,1148,3391,1149,3394,532,3397,533,3401,3404,1150, +3407,1151,3409,3411,1153,3415,3416,3417,210,3420,3422,3423,1155,3427,1156, +3431,1157,3435,3438,534,3442,1158,3446,3448,1159,1160,3452,3455,3456,535,3459,3461,1161,3463,3465,3466,3467,3468,3469, +3470,536,3471,1163,3476,3479,1165,538,3482,3484,539,3490,3495,1168,3501,1169,3505,1170,3510,1171,3512,3513,3514,3516, +1173,3521,3523,3524,1175,3526,3528,3530,171,1176,3533,3534,3535,3536,1177,3538, +287,1178,3545,3546,3547,3548,1179,3550,541,1180,3555,3556,3557,3558,1181,3560,542,1182,3564,3565,3566,3567,1183,3569,174, +3571,544,3574,3576,3577,3578,1187,3580,546,3583,3584,3585,549,3587,1189,3589,550,1190,3594,3597,3598,3599,3600,1191,3603, +1194,3607,1196,3610,3611,3612,3615,552,3617,3618,1197,3620,554,3623, +3624,3625,3626,1198,3628,293,3632,3633,1200,3635,556,3638,3639,3640,3641,1201,3643,557,1203,3651,3652,3653,3654,1204, +3656,558,559,1206,1207,3662,3663,560,1209,3667,3668,3669,3670,1210,3672,299,3674,3675,562,3677,1212,3682,563,3684,3685, +3686,3687,1214,3690,3691,565,3693,1215,3696,566,3698,3699,3700,3701,1216, +3703,1218,3709,302,3712,3713,3714,176,3718,1220,3721,3722,3723,1221,3724,1223,3730,3731,3732,3734,1224,1225,3739,3740, +306,1229,3744,3745,3748,1231,568,1232,3754,3755,569,3758,570,3763,3764,1234,1235,571,3772,3773,1236,3775,1238,3777,3778, +1239,3780,574,3782,3783,3784,3785,1240,3787,1241,3789,3790,3791,1242,309, +3796,575,3802,1245,1246,3807,3809,3812,1248,3815,3817,3819,3821,577,3822,3824,3826,310,3830,1252,3832,3834,1253,3839, +3841,3843,3846,1254,3852,3853,3857,3859,1257,3862,3864,3866,3868,3871,3874,3875,1259,311,3881,3884,1260,1261,3890], "../bin.mjs", "../CODE_OF_CONDUCT.md", "../codecov.yaml", @@ -3890,13 +3960,85 @@ [3,1261,28], "odule.css", [2,3888,3889], -[0,3892,4285,4300,4303,4313,4316,4319,4322,4332,4344,4346,4348,4350,4356,4359,4362,4371,4377,4380,4385,4394,4399,4402,4405,4422,4425,4428,4431,4434,4437,4440,4443,4446,4449,4452,4455,4458,4461,4464,4467,4470,4473,4476,4479,4484,4489,4492,4500,4503,4508,4513,4516,4528,123,4532,4535,4538,4541,4544,4547,4550,123,4553,4556,4559,4562,4565,4568,4571,4574,4577,4580,4583,4586,4589,4592,4595,4598,4601,4604,4607,4610,4613,4616,4619,4622,4625,4628,4631,4634,4637,4640,4643,4646,4649,4652,4655,4658,4661,4664,4667,4670,4673,4676,4679,4682,4685,4688,4691,4694,4697,4700,4703,4706,4709,4712,4715,4718,4721,4724,4727,4730,4733,4736,4739,4742,4745,4748,4751,4754,4757,4760,4763,4766,4769,4772,4775,4778,4781,4784,4787,4790,4793,4796,4799,4802,4805,4808,4811,4814,4817,4820,4823,4825,4827,4830,4833,4836,4839,4842,4845,4848,4851,4854,4857,4860,4868,4873,4876,4879,4884,4889,4892,4895,4898,4901,4904,4907,4910,4913,4916,4919,4922,4925,4928,4931,4934,4937,4940,4943,4946,4949,4952,4955,4958,4961,4964,4967,4970,4973,4976,601,4981,4984,4987,4990,4993,4996,4999,5002,1345,5007,123,5010,5013,5016,5019,5022,5025,5028,5031,5034,5037,5040,5043,5046,5049,5052,5055,123,5058,5061,5064,5067,5070,5073,5076,5079,5082,5085,5088,1345,5091,123,5094,5097,5100,5103,5106,5109,5112,5115,5118,5121,5124,5127,5130,5133,5136,5139,5142,5145,5148,5151,5154,5157,5160,5163,5166,5169,5172,5175,5178,5181,5184,5187,5190,5193,5196,5199,5202,5205,5208,5211,5214,5217,5220,5223,5226,123,5229,5232,5235,5238,5241,5244,5247,5250,5253,5256,5259,5262,5265,5268,5271,5274,5277,5280,5283,5286,5289,5292,5295,5298,5301,5304,5307,5310,5313,5316,5319,5322,5325,5328,5331,5334,5337,5340,5343,5346,5349,5352,5355,5358,5361,5364,5367,5370,5373,5376,5379,5382,5385,5388,5391,5394,5397,5400,5403,5406,5409,5412,5415,5418,5421,5424,5427,5430,5433,5436,5439,5442,5445,5448,5450,5453,5456,5459,5462,5465,5468,5471,5474,5477,1347,5482,5492,5495,5500,5502,5508,5511,5514,5517,5522,5525,5528,5531,5534,5537,5540,5543,5546,5549,5552,5555,5558,5561,5564,5567,5570,5573,5575,5578,5581,5584,5587,5590,5593,5596,5599,5602,5605,5608,5611,5614,5617,5620,5623,5626,5629,5632,5635,5638,5641,5644,5647,5650,5653,5656,5659,5662,5665,5668,5671,5674,5677,5680,5683,5686,5689,5692,5695,5698,5701,5704,5707,5710,5713,5716,5719,5722,5725,5728,5731,5734,5737,5740,5743,5746,5749,5752,5755,5758,5761,5764,5767,5770,5773,5776,5779,5782,5785,5788,5791,5794,5797,5800,5803,5806,5809,5812,5815,5818,5821,5824,5827,5830,5833,5836,5839,5842,5845,5848,5851,5854,5857,5860,5863,5866,5869,5872,5875,5878,5881,5884,5887,5890,5893,5896,5899,5902,5905,5908,5911,5914,5917,5920,5923,5926,5929,5932,5935,5938,5941,5944,5947,5950,5953,5956,5959,5962,5965,5968,5971,5974,5977,5980,5983,5986,5989,5992,5995,5998,6001,6004,6007,6010,6013,6016,6019,6022,6025,6028,6031,6034,6037,6040,6043,6046,6049,6052,6054,6057,6060,6063,6066,6069,6072,6075,6078,6081,6083,6086,6088,6091,6094,6097,6100,6103,6106,6109,6112,6115,6118,6121,6124,6127,6130,6133,6136,6139,6142,6145,6148,6151,6154,6157,6160,6163,6166,6169,6172,6175,6178,6181,6184,6187,6190,6193,6196,6199,6202,601,6205,6208,6211,6214,123,6217,1351,6222,6225,6228,6231,6234,6237,6240,6243,6246,6249,6252,6255,6258,6261,6264,6267,6270,6273,6276,6279,6282,6285,6288,6291,6294,6297,6300,6303,6306,6309,6312,6315,6318,6321,6324,6327,6330,6333,6336,6339,6342,6345,6348,6351,6354,6357,6360,6363,6366,6369,6372,6375,6378,6381,6384,6387,1351,6390,6393,6396,6399,6402,6405,6408,6411,6414,6417,6420,6423,6426,123,6429,6432,6435,6438,6441,6444,6447,6450,6453,6456,6459,6462,6465,6468,6471,6474,6477,1347,6480,123,6483,6486,6489,6492,6495,6498,6501,6504,6507,6510,6513,6521,6526,6531,6534,6537,6540,6543,6546,6549,6552,6555,6558,6561,6564,6567,6570,6573,6576,6579,6582,6585,6588,6591,6594,6597,6600,6603,6606,6609,6612,6615,6618,6621,6624,6627,6630,6633,6636,6639,6642,6645,6648,6651,6654,6657,6660,6663,6666,6669,6672,6675,6678,6681,6684,6686,6689,6692,6695,6698,6701,6704,6707,6710,6713,6716,6719,6722,6725,6728,6730,6733,6736,6739,6742,6745,6748,6751,6754,6766,6771,6774,6779,6782,6785,6788,6791,6794,6797,6800,6803,6806,6809,6812,6815,6818,6821,6824,6827,6830,6833,6836,6839,6842,6845,6848,6851,6854,6857,6860,6863,6866,6869,6872,6875,6878,6881,6884,6887,6890,6893,6896,6899,6902,6905,6908,6911,6914,6917,6920,6923,6926,6929,6932,6935,6938,6941,6944,6947,6950,6953,6956,6959,6962,6965,6968,6971,6974,1354,6979,6982,6985,6988,6991,6994,6997,7000,7003,7006,7009,7012,7015,7018,7021,7024,7027,7030,7033,7036,7039,7042,7045,7048,7051,7054,7057,7060,7063,7075,7078,7081,7084,7087,7090,7093,7096,7099,7102,7105,7108,7111,7114,7117,7120,7123,7126,7129,7132,7135,7138,7141,7144,7147,7150,7153,7156,7159,7162,7165,7168,7171,7174,7177,7180,7183,7186,7189,7192,7195,7198,7201,7204,7207,7210,7213,7216,7219,7222,7225,7228,7231,7234,7237,7240,7243,7246,7249,7252,7255,7258,7261,7264,7267,7270,7273,7276,7279,7282,7285,7288,7291,7294,7296,7299,7302,7305,7308,7311,7314,7317,7320,7323,7326,1354,7329,7332,7335,7338,7341,7344,7347,7350,7353,7356,7359,7362,7365,7368,7371,7374,7376,7379,123,7382,7385,7388,7391,123,7394,7397,7400,7403,7406,7409,7412,7415,7418,7421,7424,7427,7430,1355,7435,7438,7441,7444,1355,7447,7450,7453,7456,7459,7462,123,7465,7470,7473,7476,7479,7482,7485,7488,7491,7494,7497,7500,7503,7506,7514,7517,7522,7528,7532,7543,7546,7549,7552,7555,7558,7561,7564,7567,7570,7573,7576,7579,7582,7585,7588,7591,7594,7597,7600,7603,7606,7609,7612,7615,7618,7621,7624,7627,7630,7633,7636,7639,7642,7645,7648,7651,7654,7657,7660,7663,7666,7669,7672,7675,7678,7681,7684,7687,7690,7693,7696,7699,7702,7705,7708,7711,7714,7717,7720,7723,7726,7729,7732,7735,7738,7741,7744,7747,7750,7753,7756,7759,7762,7765,7768,7771,7774,7777,7780,7783,7786,7789,7792,7795,7798,7801,7804,123,7807,7810,7813,7816,7819,7822,7825,7828,7831,7834,601,7837,7840,7843,7846,7849,7852,7855,7858,7861,7864,7867,7870,7873,7876,7879,7882,7885,7888,7896,7901,7904,7907,7910,7913,7916,7919,7922,7925,7928,7931,7934,7937,7940,7943,7946,7949,7952,7955,7958,7961,7964,7967,7970,7973,7976,7979,7982,7985,7988,7991,7994,7997,8002,8005,8008,8011,8014,8017,8020,8023,8026,8029,8032,8035,8038,8041,8044,8047,8050,8053,8056,8059,8062,8065,8068,8071,8074,8077,8080,8083,8086,8089,8092,8095,8098,8101,8104,8107,8110,8113,8116,8119,8128,8140,8143,8146,8149,8152,8155,8158,8161,8164,8167,8170,8173,8179,8182,8185,8188,8191,8194,8197,8200,8203,8206,8209,8212,8215,8218,8221,8224,8227,8230,8233,1362,8238,1362,8241,1363,606,8248,8251,1364,8256,1364,8259,8262,606,8265,8268,8271,8274,8277,8280,1363,606,8283,8286,8289,8291,8293,8302,8305,8307,608,8311,8319,8322,8324,608,1372,8329,8331,8334,8337,8340,8343,8346,8349,608,8352,1372,8355,8364,8369,8372,8375,8378,8381,8384,8387,8390,8393,8396,8399,1374,8404,8407,8410,8413,8416,8419,1374,1375,8424,8427,1376,1377,8434,1375,8437,8440,8443,1376,1377,8446,1378,1379,8453,611,1380,8460,8463,8466,8481,8483,8485,8487,8490,8496,1378,1379,8499,611,1380,8502,8505,8508,8511,8514,8517,612,8522,1391,8527,8530,8533,612,8536,8539,8542,611,1392,8547,8550,1391,8553,8556,8559,8562,8565,1392,612,8568,8571,8574,8586,8589,8594,8600,8607,8609,8619,8621,8626,8628,8636,8639,8642,8645,8647,8650,8653,8664,8667,8670,8673,8686,8690,8692,8695,8698,8711,8715,8717,8719,8722,8725,8728,8731,8734,8737,8740,8743,8746,8749,8752,8755,8758,8761,8764,8767,1412,8772,8775,8778,8781,8784,1412,8787,8790,8797,8802,8804,8807,8816,8839,8845,8869,8875,8878,8881,8884,8887,8890,8893,8896,8899,8902,8905,8913,8919,8922,8925,8930,8933,8938,8941,8944,8947,8950,8965,8968,8971,8974,8977,8980,8983,8986,8989,8992,8995,9001,9004,9007,9010,9013,9016,9019,9024,9027,9030,9033], +[0,3892,4285,4300,4303,4313,4316,4319,4322,4332,4344,4346,4348,4350,4356,4359,4362,4371,4377,4380,4385,4394,4399,4402, +4405,4422,4425,4428,4431,4434,4437,4440,4443,4446,4449,4452,4455,4458,4461,4464,4467,4470,4473,4476,4479,4484,4489,4492, +4500,4503,4508,4513,4516,4528,123,4532,4535,4538,4541,4544,4547,4550,123,4553, +4556,4559,4562,4565,4568,4571,4574,4577,4580,4583,4586,4589,4592,4595,4598,4601,4604,4607,4610,4613,4616,4619,4622,4625, +4628,4631,4634,4637,4640,4643,4646,4649,4652,4655,4658,4661,4664,4667,4670,4673,4676,4679,4682,4685,4688,4691,4694,4697, +4700,4703,4706,4709,4712,4715,4718,4721,4724,4727,4730,4733,4736,4739,4742,4745, +4748,4751,4754,4757,4760,4763,4766,4769,4772,4775,4778,4781,4784,4787,4790,4793,4796,4799,4802,4805,4808,4811,4814,4817, +4820,4823,4825,4827,4830,4833,4836,4839,4842,4845,4848,4851,4854,4857,4860,4868,4873,4876,4879,4884,4889,4892,4895,4898, +4901,4904,4907,4910,4913,4916,4919,4922,4925,4928,4931,4934,4937,4940,4943,4946, +4949,4952,4955,4958,4961,4964,4967,4970,4973,4976,601,4981,4984,4987,4990,4993,4996,4999,5002,1345,5007,123,5010,5013, +5016,5019,5022,5025,5028,5031,5034,5037,5040,5043,5046,5049,5052,5055,123,5058,5061,5064,5067,5070,5073,5076,5079,5082, +5085,5088,1345,5091,123,5094,5097,5100,5103,5106,5109,5112,5115,5118,5121,5124, +5127,5130,5133,5136,5139,5142,5145,5148,5151,5154,5157,5160,5163,5166,5169,5172,5175,5178,5181,5184,5187,5190,5193,5196, +5199,5202,5205,5208,5211,5214,5217,5220,5223,5226,123,5229,5232,5235,5238,5241,5244,5247,5250,5253,5256,5259,5262,5265, +5268,5271,5274,5277,5280,5283,5286,5289,5292,5295,5298,5301,5304,5307,5310,5313, +5316,5319,5322,5325,5328,5331,5334,5337,5340,5343,5346,5349,5352,5355,5358,5361,5364,5367,5370,5373,5376,5379,5382,5385, +5388,5391,5394,5397,5400,5403,5406,5409,5412,5415,5418,5421,5424,5427,5430,5433,5436,5439,5442,5445,5448,5450,5453,5456, +5459,5462,5465,5468,5471,5474,5477,1347,5482,5492,5495,5500,5502,5508,5511,5514, +5517,5522,5525,5528,5531,5534,5537,5540,5543,5546,5549,5552,5555,5558,5561,5564,5567,5570,5573,5575,5578,5581,5584,5587, +5590,5593,5596,5599,5602,5605,5608,5611,5614,5617,5620,5623,5626,5629,5632,5635,5638,5641,5644,5647,5650,5653,5656,5659, +5662,5665,5668,5671,5674,5677,5680,5683,5686,5689,5692,5695,5698,5701,5704,5707, +5710,5713,5716,5719,5722,5725,5728,5731,5734,5737,5740,5743,5746,5749,5752,5755,5758,5761,5764,5767,5770,5773,5776,5779, +5782,5785,5788,5791,5794,5797,5800,5803,5806,5809,5812,5815,5818,5821,5824,5827,5830,5833,5836,5839,5842,5845,5848,5851, +5854,5857,5860,5863,5866,5869,5872,5875,5878,5881,5884,5887,5890,5893,5896,5899, +5902,5905,5908,5911,5914,5917,5920,5923,5926,5929,5932,5935,5938,5941,5944,5947,5950,5953,5956,5959,5962,5965,5968,5971, +5974,5977,5980,5983,5986,5989,5992,5995,5998,6001,6004,6007,6010,6013,6016,6019,6022,6025,6028,6031,6034,6037,6040,6043, +6046,6049,6052,6054,6057,6060,6063,6066,6069,6072,6075,6078,6081,6083,6086,6088, +6091,6094,6097,6100,6103,6106,6109,6112,6115,6118,6121,6124,6127,6130,6133,6136,6139,6142,6145,6148,6151,6154,6157,6160, +6163,6166,6169,6172,6175,6178,6181,6184,6187,6190,6193,6196,6199,6202,601,6205,6208,6211,6214,123,6217,1351,6222,6225, +6228,6231,6234,6237,6240,6243,6246,6249,6252,6255,6258,6261,6264,6267,6270,6273, +6276,6279,6282,6285,6288,6291,6294,6297,6300,6303,6306,6309,6312,6315,6318,6321,6324,6327,6330,6333,6336,6339,6342,6345, +6348,6351,6354,6357,6360,6363,6366,6369,6372,6375,6378,6381,6384,6387,1351,6390,6393,6396,6399,6402,6405,6408,6411,6414, +6417,6420,6423,6426,123,6429,6432,6435,6438,6441,6444,6447,6450,6453,6456,6459, +6462,6465,6468,6471,6474,6477,1347,6480,123,6483,6486,6489,6492,6495,6498,6501,6504,6507,6510,6513,6521,6526,6531,6534, +6537,6540,6543,6546,6549,6552,6555,6558,6561,6564,6567,6570,6573,6576,6579,6582,6585,6588,6591,6594,6597,6600,6603,6606, +6609,6612,6615,6618,6621,6624,6627,6630,6633,6636,6639,6642,6645,6648,6651,6654, +6657,6660,6663,6666,6669,6672,6675,6678,6681,6684,6686,6689,6692,6695,6698,6701,6704,6707,6710,6713,6716,6719,6722,6725, +6728,6730,6733,6736,6739,6742,6745,6748,6751,6754,6766,6771,6774,6779,6782,6785,6788,6791,6794,6797,6800,6803,6806,6809, +6812,6815,6818,6821,6824,6827,6830,6833,6836,6839,6842,6845,6848,6851,6854,6857, +6860,6863,6866,6869,6872,6875,6878,6881,6884,6887,6890,6893,6896,6899,6902,6905,6908,6911,6914,6917,6920,6923,6926,6929, +6932,6935,6938,6941,6944,6947,6950,6953,6956,6959,6962,6965,6968,6971,6974,1354,6979,6982,6985,6988,6991,6994,6997,7000, +7003,7006,7009,7012,7015,7018,7021,7024,7027,7030,7033,7036,7039,7042,7045,7048, +7051,7054,7057,7060,7063,7075,7078,7081,7084,7087,7090,7093,7096,7099,7102,7105,7108,7111,7114,7117,7120,7123,7126,7129, +7132,7135,7138,7141,7144,7147,7150,7153,7156,7159,7162,7165,7168,7171,7174,7177,7180,7183,7186,7189,7192,7195,7198,7201, +7204,7207,7210,7213,7216,7219,7222,7225,7228,7231,7234,7237,7240,7243,7246,7249, +7252,7255,7258,7261,7264,7267,7270,7273,7276,7279,7282,7285,7288,7291,7294,7296,7299,7302,7305,7308,7311,7314,7317,7320, +7323,7326,1354,7329,7332,7335,7338,7341,7344,7347,7350,7353,7356,7359,7362,7365,7368,7371,7374,7376,7379,123,7382,7385, +7388,7391,123,7394,7397,7400,7403,7406,7409,7412,7415,7418,7421,7424,7427,7430, +1355,7435,7438,7441,7444,1355,7447,7450,7453,7456,7459,7462,123,7465,7470,7473,7476,7479,7482,7485,7488,7491,7494,7497, +7500,7503,7506,7514,7517,7522,7528,7532,7543,7546,7549,7552,7555,7558,7561,7564,7567,7570,7573,7576,7579,7582,7585,7588, +7591,7594,7597,7600,7603,7606,7609,7612,7615,7618,7621,7624,7627,7630,7633,7636, +7639,7642,7645,7648,7651,7654,7657,7660,7663,7666,7669,7672,7675,7678,7681,7684,7687,7690,7693,7696,7699,7702,7705,7708, +7711,7714,7717,7720,7723,7726,7729,7732,7735,7738,7741,7744,7747,7750,7753,7756,7759,7762,7765,7768,7771,7774,7777,7780, +7783,7786,7789,7792,7795,7798,7801,7804,123,7807,7810,7813,7816,7819,7822,7825, +7828,7831,7834,601,7837,7840,7843,7846,7849,7852,7855,7858,7861,7864,7867,7870,7873,7876,7879,7882,7885,7888,7896,7901, +7904,7907,7910,7913,7916,7919,7922,7925,7928,7931,7934,7937,7940,7943,7946,7949,7952,7955,7958,7961,7964,7967,7970,7973, +7976,7979,7982,7985,7988,7991,7994,7997,8002,8005,8008,8011,8014,8017,8020,8023, +8026,8029,8032,8035,8038,8041,8044,8047,8050,8053,8056,8059,8062,8065,8068,8071,8074,8077,8080,8083,8086,8089,8092,8095, +8098,8101,8104,8107,8110,8113,8116,8119,8128,8140,8143,8146,8149,8152,8155,8158,8161,8164,8167,8170,8173,8179,8182,8185, +8188,8191,8194,8197,8200,8203,8206,8209,8212,8215,8218,8221,8224,8227,8230,8233, +1362,8238,1362,8241,1363,606,8248,8251,1364,8256,1364,8259,8262,606,8265,8268,8271,8274,8277,8280,1363,606,8283,8286, +8289,8291,8293,8302,8305,8307,608,8311,8319,8322,8324,608,1372,8329,8331,8334,8337,8340,8343,8346,8349,608,8352,1372, +8355,8364,8369,8372,8375,8378,8381,8384,8387,8390,8393,8396,8399,1374,8404,8407, +8410,8413,8416,8419,1374,1375,8424,8427,1376,1377,8434,1375,8437,8440,8443,1376,1377,8446,1378,1379,8453,611,1380,8460, +8463,8466,8481,8483,8485,8487,8490,8496,1378,1379,8499,611,1380,8502,8505,8508,8511,8514,8517,612,8522,1391,8527,8530, +8533,612,8536,8539,8542,611,1392,8547,8550,1391,8553,8556,8559,8562,8565,1392, +612,8568,8571,8574,8586,8589,8594,8600,8607,8609,8619,8621,8626,8628,8636,8639,8642,8645,8647,8650,8653,8664,8667,8670, +8673,8686,8690,8692,8695,8698,8711,8715,8717,8719,8722,8725,8728,8731,8734,8737,8740,8743,8746,8749,8752,8755,8758,8761, +8764,8767,1412,8772,8775,8778,8781,8784,1412,8787,8790,8797,8802,8804,8807,8816, +8839,8845,8869,8875,8878,8881,8884,8887,8890,8893,8896,8899,8902,8905,8913,8919,8922,8925,8930,8933,8938,8941,8944,8947, +8950,8965,8968,8971,8974,8977,8980,8983,8986,8989,8992,8995,9001,9004,9007,9010,9013,9016,9019,9024,9027,9030,9033], [1,2,3894], "data", [0,3,4284], "d", [0,3897,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86], "h", [0,3901,3902], "dict.txt", @@ -4287,7 +4429,9 @@ true, [1,2,4286], [0,8,4299], [0,4288,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], [0,4292,4293], [3,588,109], "entities.txt.gz", @@ -4305,7 +4449,9 @@ true, [1,2,4304], [0,1320,4312], [0,4306,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,596,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,596,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70, +71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], [0,4310,4311], [3,589,76], "dict/k8s.txt", @@ -4324,7 +4470,9 @@ true, [1,2,4323], [0,318,4331], [0,4325,87,88], -[0,11,12,13,1321,1323,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,596,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,1321,1323,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44, +45,46,47,48,49,50,51,52,596,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], [0,4328,4329], [3,183,13], [2,4327,1322], @@ -4334,7 +4482,9 @@ true, [1,2,4333], [0,319,1327], [0,4335,87,88], -[0,11,12,13,1325,1326,1328,1330,1332,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,1325,1326,1328,1330,1332,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39, +40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66, +67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], [0,4338,4339], "cspell", [2,624,597], @@ -4353,7 +4503,9 @@ true, [0,4352,4355], [1,10,4353], [0,4354,87,88], -[0,11,12,13,1325,1326,1328,1330,1332,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,1325,1326,1328,1330,1332,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39, +40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63, +64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], "37468914003753d7b1a07b8df9928548", [1,2,4357], [0,318,4358], @@ -4365,7 +4517,9 @@ true, [0,4364,4370], [1,10,4365], [0,4366,87,88], -[0,11,12,13,1334,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86], +[0,11,12,13,1334,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44, +45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67, +68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86], [0,1335,4369], [3,183,18,27], "8d9fe7a81bc2ad3641b0aa505d6000f2", @@ -4374,7 +4528,9 @@ true, [0,4373,4376], [1,10,4374], [0,4375,87,88], -[0,11,12,13,1334,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,1334,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46, +47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67, +68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], "a62ed8a89a26760f4a2a3362c90c1d0a", [1,2,4378], [0,318,4379], @@ -4383,11 +4539,15 @@ true, [0,4382,1324], [1,10,4383], [0,4384,87,88], -[0,11,12,13,1321,1323,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,1321,1323,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44, +45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69, +70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], [1,2,4386], [0,1336,4393], [0,4388,87,88], -[0,11,12,13,598,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,598,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46, +47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67, +68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], [0,4391,4392], [3,330,22], [2,4390,1322], @@ -4396,7 +4556,9 @@ true, [1,2,4395], [0,108,4398], [0,4397,87,88], -[0,11,12,13,598,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86], +[0,11,12,13,598,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45, +46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67, +68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86], "dc8af609b0ce16051759f6d633f152f6", [1,2,4400], [0,108,4401], @@ -4408,7 +4570,9 @@ true, [0,4407,4421], [1,10,4408], [0,4409,87,88], -[0,11,12,13,598,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,1337,1340,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,598,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70, +71,72,1337,1340,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], [0,1339,4414], [3,1312,79], "dict/bash", @@ -4481,12 +4645,16 @@ true, [1,2,4480], [0,133,4483], [0,4482,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69, +70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], "f9d14dc28980c04a05383da7ba1a76cf", [1,2,4485], [0,161,4488], [0,4487,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, +72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], "a19e4a6ecd68176a64769769fca6a7bc", [1,95,4490], [0,4491], @@ -4494,7 +4662,9 @@ true, [1,2,4493], [0,1341,1318], [0,4495,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,320], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,320], [0,4498,4499], [3,185,39], [2,4497,312], @@ -4506,11 +4676,15 @@ true, [0,4505,162], [1,10,4506], [0,4507,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,320], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, +72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,320], [1,2,4509], [0,1342,4512], [0,4511,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,320], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,320], "42c270afd74ad4193ddaa89e21800c86", [1,2,4514], [0,1342,4515], @@ -4519,7 +4693,9 @@ true, [0,4518,4527], [1,10,4519], [0,4520,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,4521,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,320], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,4521,69,70, +71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,320], [1,7,4522], [0,4525,4526], [3,593,71], @@ -4862,7 +5038,9 @@ true, [1,2,4861], [0,600,4867], [0,4863,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,321], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,321], [0,4865,4866], [2,188,218], "c2bba43310e2e6f219b8b643caacbb25", @@ -4871,7 +5049,9 @@ true, [0,4870,162], [1,10,4871], [0,4872,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,321], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, +72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,321], [1,2,4874], [0,600,4875], "b32314bec757e3dff081df2efd038322", @@ -4881,12 +5061,16 @@ true, [1,2,4880], [0,100,4883], [0,4882,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,321], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,321], "861d3005e14d97f586e36b14ea3edbb8", [1,2,4885], [0,1344,4888], [0,4887,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,321], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69, +70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,321], "ff223fcf8699bd0394341064a95425c7", [1,2,4890], [0,100,4891], @@ -5484,7 +5668,9 @@ true, [1,2,5483], [0,5,5491], [0,5485,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,322], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,322], [0,5489,5490], [3,597,14], [2,5487,317], @@ -5497,7 +5683,9 @@ true, [1,2,5496], [0,135,5499], [0,5498,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,322], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,322], "dd13d4fe84707af342d03b344a5e08c0", [1,2,5501], [0,135,1348], @@ -5505,7 +5693,9 @@ true, [0,5504,5507], [1,10,5505], [0,5506,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,322], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69, +70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,322], "c33d162a934a26bcf9e770d203a802d0", [1,2,5509], [0,135,5510], @@ -5520,7 +5710,9 @@ true, [0,5519,162], [1,10,5520], [0,5521,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,322], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, +72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,322], [1,2,5523], [0,135,5524], "1a20908467e66a6a06e185ca981ad994", @@ -6515,7 +6707,9 @@ true, [1,2,6514], [0,92,6520], [0,6516,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,602], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,602], [0,6518,6519], [2,168,1352], "874d2ef214a58fc4e6b553a2ee7b8132", @@ -6523,13 +6717,17 @@ true, [1,2,6522], [0,603,6525], [0,6524,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,602], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,602], "943cb5c9b43bee3cdcba4608cd5786de", [1,2,6527], [0,6528,162], [1,10,6529], [0,6530,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,602], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, +72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,602], [1,2,6532], [0,603,6533], "d411dda5f9b9801b6bed379d7a1445b5", @@ -6756,7 +6954,9 @@ true, [1,2,6755], [0,6,6765], [0,6757,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,323,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,324], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,323,37,38,39,40,41,42,105,43,44,45, +46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67, +68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,324], [0,1353,6761], "s-es@3.0.3/node_modules/@cspell/dict-es-", [2,6759,585], @@ -6768,7 +6968,9 @@ true, [1,2,6767], [0,325,6770], [0,6769,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,323,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,324], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,323,37,38,39,40,41,42,43,44,45,46, +47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67, +68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,324], "454a35eb556a84a72f057104ea472ac8", [1,2,6772], [0,325,6773], @@ -6777,7 +6979,9 @@ true, [0,6776,162], [1,10,6777], [0,6778,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,323,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,324], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,323,37,38,39,40,41,42,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70, +71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,324], [1,2,6780], [0,325,6781], "117c1ed2deff5ea85f7e2e6ae2a62d02", @@ -7066,7 +7270,9 @@ true, [0,7065,7074], [1,10,7066], [0,7067,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,7068,323,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,324], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,7068,323,37,38,39,40,41,42,105,43, +44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66, +67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,324], [1,7,7069], [0,7072,7073], [3,1353,79], @@ -7467,7 +7673,9 @@ true, [1,2,7466], [0,1356,7469], [0,7468,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,106,84,85,86], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,106,84,85,86], "d4415a1755e4ecb6bf5538670c8e698c", [1,2,7471], [0,3,7472], @@ -7508,7 +7716,9 @@ true, [1,2,7507], [0,9,7513], [0,7509,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,220], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,220], [0,7511,7512], [2,138,219], "32902c14646906e4e1498d8d3d2dfbd2", @@ -7520,22 +7730,30 @@ true, [0,7519,1348], [1,10,7520], [0,7521,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], [1,2,7523], [0,7524,7527], [1,10,7525], [0,7526,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69, +70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], "c275e4bb3458c70f1eebb5cae6899831", [1,2,7529], [0,604,162], [0,7531,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, +72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], [1,2,7533], [0,7534,7542], [1,10,7535], [0,7536,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,1357,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,1357,56,57,58,59,60,61,62,94,63,64,65,66,67, +68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], [0,7540,7541], [3,1300,91], "dict/lorem.txt", @@ -7890,7 +8108,9 @@ true, [1,2,7889], [0,104,7895], [0,7891,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,605], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,605], [0,7893,7894], [2,158,1352], "a41b90bf27684a094f4a19ce328d9f35", @@ -7898,7 +8118,9 @@ true, [1,2,7897], [0,1358,7900], [0,7899,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,605], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,605], "3969c896131782db6f649426928239eb", [1,95,7902], [0,7903], @@ -7999,7 +8221,9 @@ true, [1,2,7998], [0,1359,8001], [0,8000,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,605], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, +72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,605], "008be8b1263ad5d61395b87b8c0d0681", [1,2,8003], [0,1358,8004], @@ -8121,7 +8345,9 @@ true, [1,2,8120], [0,1360,8127], [0,8122,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1361], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, +72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1361], [0,8125,8126], [3,538,37], [2,8124,218], @@ -8131,7 +8357,9 @@ true, [0,8130,8139], [1,10,8131], [0,8132,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,8133,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1361], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,8133,36,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, +72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1361], [1,7,8134], [0,8137,8138], [3,1282,80], @@ -8176,7 +8404,9 @@ true, [0,8175,8178], [1,10,8176], [0,8177,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,1337,1340,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, +72,1337,1340,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], "3fcc6658a4dd79be6390db9c96660048", [1,2,8180], [0,133,8181], @@ -8295,7 +8525,9 @@ true, [1,2,8294], [0,1367,607], [0,8296,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8297], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8297], [1,7,8298], [0,8300,8301], [3,544,56], @@ -8313,7 +8545,9 @@ true, [1,2,8312], [0,1369,1370], [0,8314,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8315], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8315], [1,7,8316], [0,8317,8318], [2,1188,181], @@ -8358,7 +8592,9 @@ true, [0,8357,8363], [1,10,8358], [0,8359,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1373], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1373], [0,8361,8362], [2,551,181], "6bf7f382ba45975e4f3a86d398130acb", @@ -8366,7 +8602,9 @@ true, [1,2,8365], [0,610,8368], [0,8367,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1373], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1373], "1f754e82a21913a3b26ad702ee33db18", [1,2,8370], [0,610,8371], @@ -8468,7 +8706,9 @@ true, [1,2,8467], [0,1381,8480], [0,8469,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1382,1384,1385,1387,1389], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1382,1384,1385,1387,1389], [0,1383,8471], "388dfb8a44ebfe383d53df52ca11652f", [0,8475,8476], @@ -8493,7 +8733,9 @@ true, [0,8492,8495], [1,10,8493], [0,8494,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1382,1384,1385,1387,1389], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1382,1384,1385,1387,1389], "72d3b341308b69ea59cb47e9c9d492db", [1,2,8497], [0,3,8498], @@ -8577,7 +8819,9 @@ true, [0,8576,8585], [1,10,8577], [0,8578,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,613], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,613], [0,8583,8584], [3,1335,19,25], ".config", @@ -8592,17 +8836,23 @@ true, [0,8591,1393], [1,10,8592], [0,8593,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,613], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, +72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,613], [1,2,8595], [0,8596,8599], [1,10,8597], [0,8598,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,613], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,613], "fd8efa07131f2a6277ec65fbac472cdb", [1,2,8601], [0,614,1365], [0,8603,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1394], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1394], [0,8605,8606], [2,304,181], "ccc2d1066420a0959711f42a13de76a3", @@ -8612,7 +8862,9 @@ true, [0,8611,607], [1,10,8612], [0,8613,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8614], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8614], [1,7,8615], [0,8617,8618], [3,1220,52], @@ -8623,14 +8875,18 @@ true, [1,2,8622], [0,1395,8625], [0,8624,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1394], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1394], "8c37bbd1f947a25559f0847619ba776f", [1,2,8627], [0,1395,609], [1,2,8629], [0,1396,1370], [0,8631,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8632], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8632], [1,7,8633], [0,8634,8635], [2,1222,181], @@ -8656,7 +8912,9 @@ true, [0,8655,8663], [1,10,8656], [0,8657,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,8658], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,8658], [1,7,8659], [0,8661,8662], [3,1224,42], @@ -8675,7 +8933,9 @@ true, [1,2,8674], [0,1397,8685], [0,8676,87,88], -[0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1398,1401,1402], +[0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48, +102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69, +70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1398,1401,1402], [0,1400,8679], [3,180,15,75], "801dd6efb9e1cf30b06c8a095f6e31f4", @@ -8688,7 +8948,9 @@ true, [1,2,8687], [0,615,1403], [0,8689,87,88], -[0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1398,1401,1402], +[0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48, +49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72, +73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1398,1401,1402], [1,2,8691], [0,615,1404], [1,2,8693], @@ -8700,7 +8962,9 @@ true, [1,2,8699], [0,616,8710], [0,8701,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,1405,1407,1408,1410], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,1405,1407,1408,1410], [0,1406,8703], "234ab67fcae73e97a1a40888d8725f84", [0,8706,8707], @@ -8713,7 +8977,9 @@ true, [1,2,8712], [0,140,1409], [0,8714,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,1405,1407,1408,1410], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, +72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,1405,1407,1408,1410], [1,2,8716], [0,140,1411], [1,2,8718], @@ -8792,14 +9058,18 @@ true, [1,2,8791], [0,1413,1371], [0,8793,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1414], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1414], [0,8795,8796], [2,308,219], "8a80554c91d9fca8acb82f023de02f11", [1,2,8798], [0,1415,8801], [0,8800,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1414], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1414], "9a4e247bc261ef5a8b0b22cc7ddf0eae", [1,2,8803], [0,1415,609], @@ -8810,7 +9080,9 @@ true, [0,8809,8815], [1,10,8810], [0,8811,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221], [0,8813,8814], [2,1243,219], "a09d0b2ea2069aac912249c0f5c1d20c", @@ -8819,7 +9091,9 @@ true, [0,8818,1424], [1,10,8819], [0,8820,87,88], -[0,1416,1419,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1420,1422,1423], +[0,1416,1419,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44, +45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69, +70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1420,1422,1423], [0,1418], [3,1287,21,52], [0,8826], @@ -8842,13 +9116,17 @@ true, [0,8841,8844], [1,10,8842], [0,8843,87,88], -[0,1416,1419,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1420,1422,1423], +[0,1416,1419,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44, +45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66, +67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1420,1422,1423], "88bcb91b13ca0e0e6a818a0c213ad0af", [1,2,8846], [0,8847,1424], [1,10,8848], [0,8849,87,88], -[0,1425,1427,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1428,1430], +[0,1425,1427,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44, +45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69, +70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1428,1430], [0,1426], [3,1417,28], [3,1283,18,39], @@ -8872,7 +9150,9 @@ true, [0,8871,8874], [1,10,8872], [0,8873,87,88], -[0,1425,1427,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1428,1430], +[0,1425,1427,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44, +45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66, +67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1428,1430], "42a4067531f558c933e7e82a2e9c540e", [1,2,8876], [0,3,8877], @@ -8907,7 +9187,9 @@ true, [1,2,8906], [0,182,8912], [0,8908,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,163], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, +47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,163], [0,8910,8911], [2,177,218], "859964b96e4ff5ac6122b109744b8ea0", @@ -8916,7 +9198,9 @@ true, [0,8915,8918], [1,10,8916], [0,8917,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69, +70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], "ffb11ec2753d2ea4e800d803eab86424", [1,2,8920], [0,182,8921], @@ -8927,7 +9211,9 @@ true, [1,2,8926], [0,114,8929], [0,8928,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], "85a8af0906b9e0336a929ede6d5b9e93", [1,2,8931], [0,114,8932], @@ -8935,7 +9221,9 @@ true, [1,2,8934], [0,1431,8937], [0,8936,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,596,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,49,50,51,52,596,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70, +71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], "24f4c98cfe88b1df417949cb9b7f76ef", [1,95,8939], [0,8940], @@ -8952,7 +9240,9 @@ true, [1,2,8951], [0,618,8964], [0,8953,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,1432,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,1433,41,42,105,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,106,84,85,86,163], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,1432,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,1433,41,42,105,43, +44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64, +65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,106,84,85,86,163], [0,8957,8958], [3,1274,76], "dict/css.txt", @@ -8998,7 +9288,9 @@ true, [0,8997,9000], [1,10,8998], [0,8999,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,1357,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, +48,102,49,103,50,51,52,53,54,55,1357,56,57,58,59,60,61,62,94,63,64,65,66,67, +68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], "fa7374ccdef4a314104b7d7910c08e76", [1,2,9002], [0,114,9003], @@ -9021,7 +9313,9 @@ true, [1,2,9020], [0,619,9023], [0,9022,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,1432,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,1433,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,1432,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,1433,41,42,105,43, +44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68, +69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], "1908952e54fff1991de634178bb8acb4", [1,2,9025], [0,619,9026], diff --git a/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileList.jsonc b/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileList.jsonc index c7fc36ede7d1..96759a2e418a 100644 --- a/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileList.jsonc +++ b/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileList.jsonc @@ -1,6 +1,35 @@ [ "Flatpack JSON v1", -[0,2,3,4,7,10,12,15,17,20,22,24,26,28,31,33,35,37,39,42,44,46,48,50,52,55,57,59,62,64,67,71,73,76,79,81,83,85,88,90,93,95,96,99,101,103,106,108,111,112,114,116,120,122,125,127,132,134,136,138,140,142,144,146,148,150,152,154,156,159,161,163,165,166,169,170,172,174,176,179,181,183,186,188,191,193,195,198,200,203,206,209,211,214,216,218,220,222,223,225,227,229,231,233,236,238,240,242,246,249,250,253,255,258,260,262,264,266,268,271,273,275,278,280,282,285,287,289,292,295,298,300,301,305,307,310,312,313,316,318,320,322,324,326,328,330,332,335,337,339,341,344,346,348,350,353,355,358,360,362,364,366,368,370,372,374,376,378,381,384,385,387,389,391,393,395,397,400,402,405,407,409,411,413,415,417,419,422,424,426,429,431,433,435,437,439,442,444,446,448,451,453,456,458,460,462,464,467,469,471,473,474,476,478,481,483,485,487,489,491,493,495,497,499,501,503,505,507,509,511,513,515,517,519,521,523,525,527,529,531,533,535,537,539,541,543,545,547,549,551,553,555,557,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599,601,603,605,607,609,611,613,615,617,619,621,623,625,627,629,631,633,635,637,639,641,643,645,647,649,651,653,655,657,659,661,663,665,667,669,671,673,675,677,679,681,683,685,687,689,691,693,695,696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734,736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798,800,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862,864,866,868,870,872,874,876,879,881,883,885,886,888,890,892,894,896,898,899,901,903,904,907,910,912,914,915,916,919,922,924,928,931,935,937,939,941,943,946,948,950,952,954,957,959,961,963,965,967,970,972,974,977,979,982,985,987,990,993,995,997,999,1001,1003,1006,1008,1009,1011,1013,1015,1018,1020,1023,1024,1026,1028,1032,1034,1037,1039,1041,1043,1045,1047,1049,1051,1052,1054,1056,1058,1061,1063,1065,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1089,1091,1093,1096,1098,1101,1103,1105,1109,1111,1114,1117,1120,1122,1125,1127,1129,1131,1133,1134,1136,1138,1140,1142,1144,1147,1149,1151,1153,1156,1159,1160,1162,1164,1166,1168,1171,1173,1175,1177,1179,1181,1184,1186,1188,1191,1193,1195,1198,1200,1202,1205,1208,1211,1213,1214,1217,1219,1222,1224,1225,1228,1230,1232,1234,1236,1238,1240,1243,1245,1248,1250,1253,1255,1258,1260,1262,1264,1267,1269,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1295,1297,1299,1301,1303,1306,1308,1310,1312,1315,1317,1320,1322,1324,1326,1328,1330,1332,1334,1337,1339,1341,1344,1346,1348,1350,1352,1354,1357,1359,1361,1363,1366,1368,1371,1373,1375,1377,1379,1381,1384,1386,1389,1391,1393,1395,1397,1399], +[0,2,3,4,7,10,12,15,17,20,22,24,26,28,31,33,35,37,39,42,44,46,48,50,52,55,57,59,62,64,67,71,73,76,79,81,83,85,88,90,93,95, +96,99,101,103,106,108,111,112,114,116,120,122,125,127,132,134,136,138,140,142,144,146, +148,150,152,154,156,159,161,163,165,166,169,170,172,174,176,179,181,183,186,188,191,193,195,198,200,203,206,209,211,214, +216,218,220,222,223,225,227,229,231,233,236,238,240,242,246,249,250,253,255,258,260,262,264,266,268,271,273,275,278,280, +282,285,287,289, +292,295,298,300,301,305,307,310,312,313,316,318,320,322,324,326,328,330,332,335,337,339,341,344,346,348,350,353,355,358, +360,362,364,366,368,370,372,374,376,378,381,384,385,387,389,391,393,395,397,400,402,405,407,409,411,413,415,417,419,422, +424,426,429,431, +433,435,437,439,442,444,446,448,451,453,456,458,460,462,464,467,469,471,473,474,476,478,481,483,485,487,489,491,493,495, +497,499,501,503,505,507,509,511,513,515,517,519,521,523,525,527,529,531,533,535,537,539,541,543,545,547,549,551,553,555, +557,559,561,563, +565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599,601,603,605,607,609,611,613,615,617,619,621,623, +625,627,629,631,633,635,637,639,641,643,645,647,649,651,653,655,657,659,661,663,665,667,669,671,673,675,677,679,681,683, +685,687,689,691, +693,695,696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734,736,738,740,742,744,746,748,750, +752,754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798,800,802,804,806,808,810, +812,814,816,818, +820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862,864,866,868,870,872,874,876,879, +881,883,885,886,888,890,892,894,896,898,899,901,903,904,907,910,912,914,915,916,919,922,924,928,931,935,937,939,941,943, +946,948,950,952, +954,957,959,961,963,965,967,970,972,974,977,979,982,985,987,990,993,995,997,999,1001,1003,1006,1008,1009,1011,1013,1015, +1018,1020,1023,1024,1026,1028,1032,1034,1037,1039,1041,1043,1045,1047,1049,1051,1052,1054,1056,1058,1061,1063,1065,1068, +1070,1072,1074,1076,1078,1080,1082,1084,1086,1089,1091,1093, +1096,1098,1101,1103,1105,1109,1111,1114,1117,1120,1122,1125,1127,1129,1131,1133,1134,1136,1138,1140,1142,1144,1147,1149, +1151,1153,1156,1159,1160,1162,1164,1166,1168,1171,1173,1175,1177,1179,1181,1184,1186,1188,1191,1193,1195,1198,1200,1202, +1205,1208,1211,1213,1214,1217,1219,1222,1224,1225,1228,1230,1232,1234,1236,1238, +1240,1243,1245,1248,1250,1253,1255,1258,1260,1262,1264,1267,1269,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292, +1295,1297,1299,1301,1303,1306,1308,1310,1312,1315,1317,1320,1322,1324,1326,1328,1330,1332,1334,1337,1339,1341,1344,1346, +1348,1350,1352,1354,1357,1359,1361,1363,1366,1368,1371,1373,1375,1377,1379,1381, +1384,1386,1389,1391,1393,1395,1397,1399], "api/api.d.ts", "dist/esm/Cache/cspell.cache.d.ts", [2,5,6], diff --git a/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileObjects.jsonc b/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileObjects.jsonc index f82a87084dd3..275e319bad3f 100644 --- a/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileObjects.jsonc +++ b/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileObjects.jsonc @@ -1,6 +1,35 @@ [ "Flatpack JSON v1", -[0,2,10,13,18,23,27,32,36,41,45,49,53,57,62,66,70,74,78,83,87,91,95,99,103,108,112,116,121,125,130,136,140,145,150,154,158,162,167,171,176,180,183,188,192,196,201,205,210,213,217,221,227,231,236,240,247,251,255,259,263,267,271,275,279,283,287,291,295,300,304,308,312,315,320,323,327,331,335,340,344,348,353,357,362,366,370,375,379,384,389,394,398,403,407,411,415,419,422,426,430,434,438,442,447,451,455,459,465,470,473,478,482,487,491,495,499,503,507,512,516,520,525,529,533,538,542,546,551,556,561,565,568,574,578,583,587,590,595,599,603,607,611,615,619,623,627,632,636,640,644,649,653,657,661,666,670,675,679,683,687,691,695,699,703,707,711,715,720,725,728,732,736,740,744,748,752,757,761,766,770,774,778,782,786,790,794,799,803,807,812,816,820,824,828,832,837,841,845,849,854,858,863,867,871,875,879,884,888,892,896,899,903,907,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1343,1347,1351,1355,1359,1363,1367,1371,1375,1379,1383,1387,1391,1395,1399,1403,1407,1411,1415,1419,1423,1427,1431,1435,1439,1443,1447,1451,1455,1459,1463,1467,1471,1475,1479,1483,1487,1491,1495,1499,1503,1507,1511,1515,1519,1523,1527,1531,1535,1539,1543,1547,1551,1555,1559,1563,1567,1571,1575,1579,1583,1587,1591,1595,1599,1603,1607,1611,1615,1619,1623,1627,1631,1635,1639,1643,1647,1651,1655,1659,1663,1667,1671,1675,1679,1683,1687,1691,1695,1699,1703,1708,1712,1716,1720,1723,1727,1731,1735,1739,1743,1747,1750,1754,1758,1761,1766,1771,1775,1779,1782,1785,1790,1795,1799,1805,1810,1816,1820,1824,1828,1832,1837,1841,1845,1849,1853,1858,1862,1866,1870,1874,1878,1883,1887,1891,1896,1900,1905,1910,1914,1919,1924,1928,1932,1936,1940,1944,1949,1953,1956,1960,1964,1968,1973,1977,1982,1985,1989,1993,1999,2003,2008,2012,2016,2020,2024,2028,2032,2036,2039,2043,2047,2051,2056,2060,2064,2069,2073,2077,2081,2085,2089,2093,2097,2101,2105,2110,2114,2118,2123,2127,2132,2136,2140,2146,2150,2155,2160,2165,2169,2174,2178,2182,2186,2190,2193,2197,2201,2205,2209,2213,2218,2222,2226,2230,2235,2240,2243,2247,2251,2255,2259,2264,2268,2272,2276,2280,2284,2289,2293,2297,2302,2306,2310,2315,2319,2323,2328,2333,2338,2342,2345,2350,2354,2359,2363,2366,2371,2375,2379,2383,2387,2391,2395,2400,2404,2409,2413,2418,2422,2427,2431,2435,2439,2444,2448,2453,2457,2461,2465,2469,2473,2477,2481,2485,2489,2493,2498,2502,2506,2510,2514,2519,2523,2527,2531,2536,2540,2545,2549,2553,2557,2561,2565,2569,2573,2578,2582,2586,2591,2595,2599,2603,2607,2611,2616,2620,2624,2628,2633,2637,2642,2646,2650,2654,2658,2662,2667,2671,2676,2680,2684,2688,2692,2696], +[0,2,10,13,18,23,27,32,36,41,45,49,53,57,62,66,70,74,78,83,87,91,95,99,103,108,112,116,121,125,130,136,140,145,150,154, +158,162,167,171,176,180,183,188,192,196,201,205,210,213,217,221,227,231,236,240,247,251,255,259,263,267,271,275, +279,283,287,291,295,300,304,308,312,315,320,323,327,331,335,340,344,348,353,357,362,366,370,375,379,384,389,394,398,403, +407,411,415,419,422,426,430,434,438,442,447,451,455,459,465,470,473,478,482,487,491,495,499,503,507,512,516,520,525,529, +533,538,542,546, +551,556,561,565,568,574,578,583,587,590,595,599,603,607,611,615,619,623,627,632,636,640,644,649,653,657,661,666,670,675, +679,683,687,691,695,699,703,707,711,715,720,725,728,732,736,740,744,748,752,757,761,766,770,774,778,782,786,790,794,799, +803,807,812,816, +820,824,828,832,837,841,845,849,854,858,863,867,871,875,879,884,888,892,896,899,903,907,912,916,920,924,928,932,936,940, +944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048, +1052,1056,1060,1064,1068,1072,1076, +1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172, +1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268, +1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332, +1336,1340,1343,1347,1351,1355,1359,1363,1367,1371,1375,1379,1383,1387,1391,1395,1399,1403,1407,1411,1415,1419,1423,1427, +1431,1435,1439,1443,1447,1451,1455,1459,1463,1467,1471,1475,1479,1483,1487,1491,1495,1499,1503,1507,1511,1515,1519,1523, +1527,1531,1535,1539,1543,1547,1551,1555,1559,1563,1567,1571,1575,1579,1583,1587, +1591,1595,1599,1603,1607,1611,1615,1619,1623,1627,1631,1635,1639,1643,1647,1651,1655,1659,1663,1667,1671,1675,1679,1683, +1687,1691,1695,1699,1703,1708,1712,1716,1720,1723,1727,1731,1735,1739,1743,1747,1750,1754,1758,1761,1766,1771,1775,1779, +1782,1785,1790,1795,1799,1805,1810,1816,1820,1824,1828,1832,1837,1841,1845,1849, +1853,1858,1862,1866,1870,1874,1878,1883,1887,1891,1896,1900,1905,1910,1914,1919,1924,1928,1932,1936,1940,1944,1949,1953, +1956,1960,1964,1968,1973,1977,1982,1985,1989,1993,1999,2003,2008,2012,2016,2020,2024,2028,2032,2036,2039,2043,2047,2051, +2056,2060,2064,2069,2073,2077,2081,2085,2089,2093,2097,2101,2105,2110,2114,2118, +2123,2127,2132,2136,2140,2146,2150,2155,2160,2165,2169,2174,2178,2182,2186,2190,2193,2197,2201,2205,2209,2213,2218,2222, +2226,2230,2235,2240,2243,2247,2251,2255,2259,2264,2268,2272,2276,2280,2284,2289,2293,2297,2302,2306,2310,2315,2319,2323, +2328,2333,2338,2342,2345,2350,2354,2359,2363,2366,2371,2375,2379,2383,2387,2391, +2395,2400,2404,2409,2413,2418,2422,2427,2431,2435,2439,2444,2448,2453,2457,2461,2465,2469,2473,2477,2481,2485,2489,2493, +2498,2502,2506,2510,2514,2519,2523,2527,2531,2536,2540,2545,2549,2553,2557,2561,2565,2569,2573,2578,2582,2586,2591,2595, +2599,2603,2607,2611,2616,2620,2624,2628,2633,2637,2642,2646,2650,2654,2658,2662, +2667,2671,2676,2680,2684,2688,2692,2696], [1,3,6], [0,4,5], "filename", diff --git a/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.jsonc b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.jsonc index 77430005794a..752f7e4747d5 100644 --- a/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.jsonc +++ b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.jsonc @@ -1,6 +1,35 @@ [ "Flatpack JSON v2", -[0,2,3,4,7,10,12,15,17,20,22,24,26,28,31,33,35,37,39,42,44,46,48,50,52,55,57,59,62,64,67,71,73,76,79,81,83,85,88,90,93,95,96,99,101,103,106,108,111,112,114,116,120,122,125,127,132,134,136,138,140,142,144,146,148,150,152,154,156,159,161,163,165,166,169,170,172,174,176,179,181,183,186,188,191,193,195,198,200,203,206,209,211,214,216,218,220,222,223,225,227,229,231,233,236,238,240,242,246,249,250,253,255,258,260,262,264,266,268,271,273,275,278,280,282,285,287,289,292,295,298,300,301,305,307,310,312,313,316,318,320,322,324,326,328,330,332,335,337,339,341,344,346,348,350,353,355,358,360,362,364,366,368,370,372,374,376,378,381,384,385,387,389,391,393,395,397,400,402,405,407,409,411,413,415,417,419,422,424,426,429,431,433,435,437,439,442,444,446,448,451,453,456,458,460,462,464,467,469,471,473,474,476,478,481,483,485,487,489,491,493,495,497,499,501,503,505,507,509,511,513,515,517,519,521,523,525,527,529,531,533,535,537,539,541,543,545,547,549,551,553,555,557,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599,601,603,605,607,609,611,613,615,617,619,621,623,625,627,629,631,633,635,637,639,641,643,645,647,649,651,653,655,657,659,661,663,665,667,669,671,673,675,677,679,681,683,685,687,689,691,693,695,696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734,736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798,800,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862,864,866,868,870,872,874,876,879,881,883,885,886,888,890,892,894,896,898,899,901,903,904,907,910,912,914,915,916,919,922,924,928,931,935,937,939,941,943,946,948,950,952,954,957,959,961,963,965,967,970,972,974,977,979,982,985,987,990,993,995,997,999,1001,1003,1006,1008,1009,1011,1013,1015,1018,1020,1023,1024,1026,1028,1032,1034,1037,1039,1041,1043,1045,1047,1049,1051,1052,1054,1056,1058,1061,1063,1065,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1089,1091,1093,1096,1098,1101,1103,1105,1109,1111,1114,1117,1120,1122,1125,1127,1129,1131,1133,1134,1136,1138,1140,1142,1144,1147,1149,1151,1153,1156,1159,1160,1162,1164,1166,1168,1171,1173,1175,1177,1179,1181,1184,1186,1188,1191,1193,1195,1198,1200,1202,1205,1208,1211,1213,1214,1217,1219,1222,1224,1225,1228,1230,1232,1234,1236,1238,1240,1243,1245,1248,1250,1253,1255,1258,1260,1262,1264,1267,1269,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1295,1297,1299,1301,1303,1306,1308,1310,1312,1315,1317,1320,1322,1324,1326,1328,1330,1332,1334,1337,1339,1341,1344,1346,1348,1350,1352,1354,1357,1359,1361,1363,1366,1368,1371,1373,1375,1377,1379,1381,1384,1386,1389,1391,1393,1395,1397,1399], +[0,2,3,4,7,10,12,15,17,20,22,24,26,28,31,33,35,37,39,42,44,46,48,50,52,55,57,59,62,64,67,71,73,76,79,81,83,85,88,90,93,95, +96,99,101,103,106,108,111,112,114,116,120,122,125,127,132,134,136,138,140,142,144,146, +148,150,152,154,156,159,161,163,165,166,169,170,172,174,176,179,181,183,186,188,191,193,195,198,200,203,206,209,211,214, +216,218,220,222,223,225,227,229,231,233,236,238,240,242,246,249,250,253,255,258,260,262,264,266,268,271,273,275,278,280, +282,285,287,289, +292,295,298,300,301,305,307,310,312,313,316,318,320,322,324,326,328,330,332,335,337,339,341,344,346,348,350,353,355,358, +360,362,364,366,368,370,372,374,376,378,381,384,385,387,389,391,393,395,397,400,402,405,407,409,411,413,415,417,419,422, +424,426,429,431, +433,435,437,439,442,444,446,448,451,453,456,458,460,462,464,467,469,471,473,474,476,478,481,483,485,487,489,491,493,495, +497,499,501,503,505,507,509,511,513,515,517,519,521,523,525,527,529,531,533,535,537,539,541,543,545,547,549,551,553,555, +557,559,561,563, +565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599,601,603,605,607,609,611,613,615,617,619,621,623, +625,627,629,631,633,635,637,639,641,643,645,647,649,651,653,655,657,659,661,663,665,667,669,671,673,675,677,679,681,683, +685,687,689,691, +693,695,696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734,736,738,740,742,744,746,748,750, +752,754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798,800,802,804,806,808,810, +812,814,816,818, +820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862,864,866,868,870,872,874,876,879, +881,883,885,886,888,890,892,894,896,898,899,901,903,904,907,910,912,914,915,916,919,922,924,928,931,935,937,939,941,943, +946,948,950,952, +954,957,959,961,963,965,967,970,972,974,977,979,982,985,987,990,993,995,997,999,1001,1003,1006,1008,1009,1011,1013,1015, +1018,1020,1023,1024,1026,1028,1032,1034,1037,1039,1041,1043,1045,1047,1049,1051,1052,1054,1056,1058,1061,1063,1065,1068, +1070,1072,1074,1076,1078,1080,1082,1084,1086,1089,1091,1093, +1096,1098,1101,1103,1105,1109,1111,1114,1117,1120,1122,1125,1127,1129,1131,1133,1134,1136,1138,1140,1142,1144,1147,1149, +1151,1153,1156,1159,1160,1162,1164,1166,1168,1171,1173,1175,1177,1179,1181,1184,1186,1188,1191,1193,1195,1198,1200,1202, +1205,1208,1211,1213,1214,1217,1219,1222,1224,1225,1228,1230,1232,1234,1236,1238, +1240,1243,1245,1248,1250,1253,1255,1258,1260,1262,1264,1267,1269,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292, +1295,1297,1299,1301,1303,1306,1308,1310,1312,1315,1317,1320,1322,1324,1326,1328,1330,1332,1334,1337,1339,1341,1344,1346, +1348,1350,1352,1354,1357,1359,1361,1363,1366,1368,1371,1373,1375,1377,1379,1381, +1384,1386,1389,1391,1393,1395,1397,1399], "api/api.d.ts", "dist/esm/Cache/cspell.cache.d.ts", [2,5,6], diff --git a/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.jsonc b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.jsonc index 8b2f33daec5d..32e4f196992e 100644 --- a/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.jsonc +++ b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.jsonc @@ -1,6 +1,35 @@ [ "Flatpack JSON v2", -[0,2,10,13,18,23,27,32,36,41,45,49,53,57,62,66,70,74,78,83,87,91,95,99,103,108,112,116,121,125,130,136,140,145,150,154,158,162,167,171,176,180,183,188,192,196,201,205,210,213,217,221,227,231,236,240,247,251,255,259,263,267,271,275,279,283,287,291,295,300,304,308,312,315,320,323,327,331,335,340,344,348,353,357,362,366,370,375,379,384,389,394,398,403,407,411,415,419,422,426,430,434,438,442,447,451,455,459,465,470,473,478,482,487,491,495,499,503,507,512,516,520,525,529,533,538,542,546,551,556,561,565,568,574,578,583,587,590,595,599,603,607,611,615,619,623,627,632,636,640,644,649,653,657,661,666,670,675,679,683,687,691,695,699,703,707,711,715,720,725,728,732,736,740,744,748,752,757,761,766,770,774,778,782,786,790,794,799,803,807,812,816,820,824,828,832,837,841,845,849,854,858,863,867,871,875,879,884,888,892,896,899,903,907,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1343,1347,1351,1355,1359,1363,1367,1371,1375,1379,1383,1387,1391,1395,1399,1403,1407,1411,1415,1419,1423,1427,1431,1435,1439,1443,1447,1451,1455,1459,1463,1467,1471,1475,1479,1483,1487,1491,1495,1499,1503,1507,1511,1515,1519,1523,1527,1531,1535,1539,1543,1547,1551,1555,1559,1563,1567,1571,1575,1579,1583,1587,1591,1595,1599,1603,1607,1611,1615,1619,1623,1627,1631,1635,1639,1643,1647,1651,1655,1659,1663,1667,1671,1675,1679,1683,1687,1691,1695,1699,1703,1708,1712,1716,1720,1723,1727,1731,1735,1739,1743,1747,1750,1754,1758,1761,1766,1771,1775,1779,1782,1785,1790,1795,1799,1805,1810,1816,1820,1824,1828,1832,1837,1841,1845,1849,1853,1858,1862,1866,1870,1874,1878,1883,1887,1891,1896,1900,1905,1910,1914,1919,1924,1928,1932,1936,1940,1944,1949,1953,1956,1960,1964,1968,1973,1977,1982,1985,1989,1993,1999,2003,2008,2012,2016,2020,2024,2028,2032,2036,2039,2043,2047,2051,2056,2060,2064,2069,2073,2077,2081,2085,2089,2093,2097,2101,2105,2110,2114,2118,2123,2127,2132,2136,2140,2146,2150,2155,2160,2165,2169,2174,2178,2182,2186,2190,2193,2197,2201,2205,2209,2213,2218,2222,2226,2230,2235,2240,2243,2247,2251,2255,2259,2264,2268,2272,2276,2280,2284,2289,2293,2297,2302,2306,2310,2315,2319,2323,2328,2333,2338,2342,2345,2350,2354,2359,2363,2366,2371,2375,2379,2383,2387,2391,2395,2400,2404,2409,2413,2418,2422,2427,2431,2435,2439,2444,2448,2453,2457,2461,2465,2469,2473,2477,2481,2485,2489,2493,2498,2502,2506,2510,2514,2519,2523,2527,2531,2536,2540,2545,2549,2553,2557,2561,2565,2569,2573,2578,2582,2586,2591,2595,2599,2603,2607,2611,2616,2620,2624,2628,2633,2637,2642,2646,2650,2654,2658,2662,2667,2671,2676,2680,2684,2688,2692,2696], +[0,2,10,13,18,23,27,32,36,41,45,49,53,57,62,66,70,74,78,83,87,91,95,99,103,108,112,116,121,125,130,136,140,145,150,154, +158,162,167,171,176,180,183,188,192,196,201,205,210,213,217,221,227,231,236,240,247,251,255,259,263,267,271,275, +279,283,287,291,295,300,304,308,312,315,320,323,327,331,335,340,344,348,353,357,362,366,370,375,379,384,389,394,398,403, +407,411,415,419,422,426,430,434,438,442,447,451,455,459,465,470,473,478,482,487,491,495,499,503,507,512,516,520,525,529, +533,538,542,546, +551,556,561,565,568,574,578,583,587,590,595,599,603,607,611,615,619,623,627,632,636,640,644,649,653,657,661,666,670,675, +679,683,687,691,695,699,703,707,711,715,720,725,728,732,736,740,744,748,752,757,761,766,770,774,778,782,786,790,794,799, +803,807,812,816, +820,824,828,832,837,841,845,849,854,858,863,867,871,875,879,884,888,892,896,899,903,907,912,916,920,924,928,932,936,940, +944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048, +1052,1056,1060,1064,1068,1072,1076, +1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172, +1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268, +1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332, +1336,1340,1343,1347,1351,1355,1359,1363,1367,1371,1375,1379,1383,1387,1391,1395,1399,1403,1407,1411,1415,1419,1423,1427, +1431,1435,1439,1443,1447,1451,1455,1459,1463,1467,1471,1475,1479,1483,1487,1491,1495,1499,1503,1507,1511,1515,1519,1523, +1527,1531,1535,1539,1543,1547,1551,1555,1559,1563,1567,1571,1575,1579,1583,1587, +1591,1595,1599,1603,1607,1611,1615,1619,1623,1627,1631,1635,1639,1643,1647,1651,1655,1659,1663,1667,1671,1675,1679,1683, +1687,1691,1695,1699,1703,1708,1712,1716,1720,1723,1727,1731,1735,1739,1743,1747,1750,1754,1758,1761,1766,1771,1775,1779, +1782,1785,1790,1795,1799,1805,1810,1816,1820,1824,1828,1832,1837,1841,1845,1849, +1853,1858,1862,1866,1870,1874,1878,1883,1887,1891,1896,1900,1905,1910,1914,1919,1924,1928,1932,1936,1940,1944,1949,1953, +1956,1960,1964,1968,1973,1977,1982,1985,1989,1993,1999,2003,2008,2012,2016,2020,2024,2028,2032,2036,2039,2043,2047,2051, +2056,2060,2064,2069,2073,2077,2081,2085,2089,2093,2097,2101,2105,2110,2114,2118, +2123,2127,2132,2136,2140,2146,2150,2155,2160,2165,2169,2174,2178,2182,2186,2190,2193,2197,2201,2205,2209,2213,2218,2222, +2226,2230,2235,2240,2243,2247,2251,2255,2259,2264,2268,2272,2276,2280,2284,2289,2293,2297,2302,2306,2310,2315,2319,2323, +2328,2333,2338,2342,2345,2350,2354,2359,2363,2366,2371,2375,2379,2383,2387,2391, +2395,2400,2404,2409,2413,2418,2422,2427,2431,2435,2439,2444,2448,2453,2457,2461,2465,2469,2473,2477,2481,2485,2489,2493, +2498,2502,2506,2510,2514,2519,2523,2527,2531,2536,2540,2545,2549,2553,2557,2561,2565,2569,2573,2578,2582,2586,2591,2595, +2599,2603,2607,2611,2616,2620,2624,2628,2633,2637,2642,2646,2650,2654,2658,2662, +2667,2671,2676,2680,2684,2688,2692,2696], [1,3,6], [0,4,5], "filename", diff --git a/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap b/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap index 29b99ec99eaf..a5df792e3e12 100644 --- a/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap +++ b/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap @@ -1621,14 +1621,14 @@ exports[`dehydrate > dehydrate useStringTable /[\\p{L}\\p{M}]+/gu undefined > op "Flatpack JSON v2", [ 128, + "gu", "[\\p{L}\\p{M}]+", ], [ 6, + -2, -1, - 3, ], - "gu", ] `; @@ -1638,13 +1638,13 @@ exports[`dehydrate > dehydrate useStringTable /[\\p{L}\\p{M}]+/gu undefined 1`] [ 128, "[\\p{L}\\p{M}]+", + "gu", ], [ 6, -1, - 3, + -2, ], - "gu", ] `; @@ -1743,6 +1743,7 @@ exports[`dehydrate > dehydrate useStringTable [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p "Flatpack JSON v2", [ 128, + "gu", "[\\p{Lu}\\p{M}]+", "[\\p{L}\\p{M}]+", ], @@ -1750,18 +1751,17 @@ exports[`dehydrate > dehydrate useStringTable [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p 0, 3, 3, - 5, + 4, ], [ 6, - -2, - 4, + -3, + -1, ], - "gu", [ 6, + -2, -1, - 4, ], ] `; @@ -1772,24 +1772,24 @@ exports[`dehydrate > dehydrate useStringTable [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p [ 128, "[\\p{L}\\p{M}]+", + "gu", "[\\p{Lu}\\p{M}]+", ], [ 0, 3, 3, - 5, + 4, ], [ 6, -1, - 4, + -2, ], - "gu", [ 6, + -3, -2, - 4, ], ] `; @@ -1799,75 +1799,75 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'a', b: "Flatpack JSON v2", [ 128, + "b", + "a", ], [ 0, - 5, - 8, - 11, - 14, + 3, + 6, + 9, + 12, ], - "a", - "b", [ 1, - 6, - 7, + 4, + 5, ], [ 0, - 3, - 4, + -2, + -1, ], [ 0, - 3, - 4, + -2, + -1, ], [ 1, - 9, - 10, + 7, + 8, ], [ 0, - 3, - 4, + -2, + -1, ], [ 0, - 3, - 4, + -2, + -1, ], [ 1, - 12, - 13, + 10, + 11, ], [ 0, - 3, - 4, + -2, + -1, ], [ 0, - 3, - 4, + -2, + -1, ], [ 1, - 15, - 16, + 13, + 14, ], [ 0, - 3, - 4, + -2, + -1, ], [ 0, - 3, - 4, + -2, + -1, ], ] `; @@ -1877,75 +1877,75 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'a', b: "Flatpack JSON v2", [ 128, + "a", + "b", ], [ 0, 3, - 8, - 11, - 14, + 6, + 9, + 12, ], [ 1, 4, - 7, + 5, ], [ 0, - 5, - 6, + -1, + -2, ], - "a", - "b", [ 0, - 5, - 6, + -1, + -2, ], [ 1, - 9, - 10, + 7, + 8, ], [ 0, - 5, - 6, + -1, + -2, ], [ 0, - 5, - 6, + -1, + -2, ], [ 1, - 12, - 13, + 10, + 11, ], [ 0, - 5, - 6, + -1, + -2, ], [ 0, - 5, - 6, + -1, + -2, ], [ 1, - 15, - 16, + 13, + 14, ], [ 0, - 5, - 6, + -1, + -2, ], [ 0, - 5, - 6, + -1, + -2, ], ] `; @@ -1955,19 +1955,23 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'c', b: "Flatpack JSON v2", [ 128, + "d", + "c", + "b", + "a", ], [ 0, 4, - 8, + 6, 4, 3, 5, ], [ 0, - 6, - 7, + -4, + -3, ], [ 1, @@ -1976,18 +1980,14 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'c', b: ], [ 0, - 9, - 10, + -2, + -1, ], - "a", - "b", [ 1, 3, 5, ], - "c", - "d", ] `; @@ -1996,14 +1996,18 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'c', b: "Flatpack JSON v2", [ 128, + "a", + "b", + "c", + "d", ], [ 0, 3, - 7, + 5, 3, 4, - 8, + 6, ], [ 1, @@ -2012,23 +2016,19 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'c', b: ], [ 0, - 5, - 6, + -1, + -2, ], - "a", - "b", [ 1, 4, - 8, + 6, ], [ 0, - 9, - 10, + -3, + -4, ], - "c", - "d", ] `; @@ -2101,6 +2101,8 @@ exports[`dehydrate > dehydrate useStringTable [ 1n, 'hello', /\\w+/g, {}, [], 'h "Flatpack JSON v2", [ 128, + "g", + "\\w+", "hello", ], [ @@ -2108,14 +2110,14 @@ exports[`dehydrate > dehydrate useStringTable [ 1n, 'hello', /\\w+/g, {}, [], 'h 4, 3, 7, - 10, - 11, + 8, + 9, 3, ], [ 1, 0, - -1, + -3, ], [ 1, @@ -2129,11 +2131,9 @@ exports[`dehydrate > dehydrate useStringTable [ 1n, 'hello', /\\w+/g, {}, [], 'h 1, [ 6, - 8, - 9, + -2, + -1, ], - "\\w+", - "g", {}, [ 0, @@ -2147,14 +2147,16 @@ exports[`dehydrate > dehydrate useStringTable [ 1n, 'hello', /\\w+/g, {}, [], 'h [ 128, "hello", + "\\w+", + "g", ], [ 0, 3, 6, 7, - 10, - 11, + 8, + 9, 6, ], [ @@ -2174,11 +2176,9 @@ exports[`dehydrate > dehydrate useStringTable [ 1n, 'hello', /\\w+/g, {}, [], 'h ], [ 6, - 8, - 9, + -2, + -3, ], - "\\w+", - "g", {}, [ 0, @@ -2361,24 +2361,24 @@ exports[`dehydrate > dehydrate useStringTable { a: [ 1 ] } undefined > optimized "Flatpack JSON v2", [ 128, + "a", ], [ 1, 3, - 5, + 4, ], [ 0, - 4, + -1, ], - "a", [ 0, - 6, + 5, ], [ 0, - 7, + 6, ], 1, ] @@ -2389,24 +2389,24 @@ exports[`dehydrate > dehydrate useStringTable { a: [ 1 ] } undefined 1`] = ` "Flatpack JSON v2", [ 128, + "a", ], [ 1, 3, - 5, + 4, ], [ 0, - 4, + -1, ], - "a", [ 0, - 6, + 5, ], [ 0, - 7, + 6, ], 1, ] @@ -2420,25 +2420,39 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' "pineapple", "banana", "apple", + "r", + "b", + "a", + "rr", + "gu", "[\\p{L}\\p{M}]+", + "d", + "c", "values", + "ss", + "s", "rValues", + "nnn", + "nn", + "n", + "mm", + "m", "cValues", ], [ 1, - 16, - 24, + 13, + 14, ], [ 0, - 9, - 10, + -6, + -5, ], [ 6, - -4, - 27, + -9, + -8, ], [ 1, @@ -2452,8 +2466,8 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' ], [ 0, - 25, - 26, + -11, + -10, ], [ 0, @@ -2463,11 +2477,8 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' 3, 7, 4, - 14, + 11, ], - "a", - "b", - "r", [ 0, -3, @@ -2481,61 +2492,50 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' ], [ 1, - 28, - 30, + 15, + 16, ], [ 4, - 33, + 19, ], [ 0, - 9, - 10, - -7, - 17, - 18, - 19, - 20, - 21, - 11, -6, - 22, - 23, -5, + -21, + -20, + -19, + -18, + -17, + -16, + -4, + -15, + -14, + -13, + -12, ], - "m", - "mm", - "n", - "nn", - "nnn", - "s", - "ss", [ 0, 5, 6, - 12, - 13, - 13, + 9, + 10, + 10, 8, 8, 8, 4, - 31, - 15, - 15, + 17, 12, + 12, + 9, ], - "c", - "d", - "gu", [ 0, - 11, - 29, + -4, + -7, ], - "rr", [ 0, 4, @@ -2556,11 +2556,11 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' 0, 5, 6, - 32, + 18, 3, 7, 4, - 14, + 11, ], ] `; @@ -2570,150 +2570,150 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' "Flatpack JSON v2", [ 128, + "a", + "b", "cValues", + "m", + "mm", + "n", + "nn", + "nnn", + "r", "rValues", + "s", + "ss", "values", + "c", + "d", "apple", "banana", "pineapple", "[\\p{L}\\p{M}]+", + "gu", + "rr", ], [ 1, 3, - 14, + 4, ], [ 0, - 4, - 5, -1, - 6, - 7, - 8, - 9, - 10, - 11, -2, - 12, - 13, -3, + -4, + -5, + -6, + -7, + -8, + -9, + -10, + -11, + -12, + -13, ], - "a", - "b", - "m", - "mm", - "n", - "nn", - "nnn", - "r", - "s", - "ss", [ 0, - 15, + 5, + 7, + 9, + 10, + 10, + 11, + 11, + 11, + 12, + 16, 17, - 21, - 22, - 22, - 23, - 23, - 23, - 24, - 30, - 31, - 31, - 21, + 17, + 9, ], [ 1, - 16, - 16, + 6, + 6, ], [ 0, - 4, - 5, + -1, + -2, ], [ 1, - 16, - 18, + 6, + 8, ], [ 0, - 19, - 20, + -14, + -15, ], - "c", - "d", [ 0, - -4, - -5, - -6, + -16, + -17, + -18, ], [ 5, - 16, - 16, + 6, + 6, ], [ 0, - 15, - 17, - 15, - 16, - 18, - 24, - 26, + 5, + 7, + 5, + 6, + 8, + 12, + 13, ], [ 6, - -7, - 25, + -19, + -20, ], - "gu", [ 1, - 27, - 29, + 14, + 15, ], [ 0, - 11, - 28, + -9, + -21, ], - "rr", [ 0, - 24, - 24, + 12, + 12, ], [ 0, - -6, - -5, - -4, + -18, + -17, + -16, ], [ 4, - 33, + 19, ], [ 1, - 16, - 16, + 6, + 6, ], [ 0, - 15, - 17, - 32, - 16, + 5, + 7, 18, - 24, - 26, + 6, + 8, + 12, + 13, ], ] `; @@ -2723,36 +2723,36 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 42 } } undefined "Flatpack JSON v2", [ 128, + "a", + "b", ], [ 1, + 3, 4, - 5, ], - "a", [ 0, - 3, + -1, ], [ 0, - 6, + 5, ], [ 1, + 6, 7, - 9, ], [ 0, - 3, - 8, + -1, + -2, ], - "b", [ 0, - 3, - 10, + -1, + 8, ], 42, ] @@ -2763,36 +2763,36 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 42 } } undefined "Flatpack JSON v2", [ 128, + "a", + "b", ], [ 1, 3, - 5, + 4, ], [ 0, - 4, + -1, ], - "a", [ 0, - 6, + 5, ], [ 1, + 6, 7, - 9, ], [ 0, - 4, - 8, + -1, + -2, ], - "b", [ 0, - 4, - 10, + -1, + 8, ], 42, ] @@ -2803,34 +2803,34 @@ exports[`dehydrate > dehydrate useStringTable { a: { b: 1 } } undefined > optimi "Flatpack JSON v2", [ 128, + "b", + "a", ], [ 1, 3, - 5, + 4, ], [ 0, - 4, + -2, ], - "a", [ 0, - 6, + 5, ], [ 1, + 6, 7, - 9, ], [ 0, - 8, + -1, ], - "b", [ 0, - 10, + 8, ], 1, ] @@ -2841,34 +2841,34 @@ exports[`dehydrate > dehydrate useStringTable { a: { b: 1 } } undefined 1`] = ` "Flatpack JSON v2", [ 128, + "a", + "b", ], [ 1, 3, - 5, + 4, ], [ 0, - 4, + -1, ], - "a", [ 0, - 6, + 5, ], [ 1, + 6, 7, - 9, ], [ 0, - 8, + -2, ], - "b", [ 0, - 10, + 8, ], 1, ] @@ -2879,20 +2879,20 @@ exports[`dehydrate > dehydrate useStringTable { a: 1 } undefined > optimized 1`] "Flatpack JSON v2", [ 128, + "a", ], [ 1, 3, - 5, + 4, ], [ 0, - 4, + -1, ], - "a", [ 0, - 6, + 5, ], 1, ] @@ -2903,20 +2903,20 @@ exports[`dehydrate > dehydrate useStringTable { a: 1 } undefined 1`] = ` "Flatpack JSON v2", [ 128, + "a", ], [ 1, 3, - 5, + 4, ], [ 0, - 4, + -1, ], - "a", [ 0, - 6, + 5, ], 1, ] @@ -3016,27 +3016,28 @@ exports[`dehydrate > dehydrate useStringTable { values: [ '', 'apple', 'banana', "pineapple", "banana", "apple", + "", "values", + "set", ], [ 1, 3, - 5, + 4, ], [ 0, - 4, - -4, + -6, + -5, ], - "set", [ 0, - 6, - 8, + 5, + 7, ], [ 4, - 7, + 6, ], [ 0, @@ -3046,12 +3047,11 @@ exports[`dehydrate > dehydrate useStringTable { values: [ '', 'apple', 'banana', ], [ 0, - 9, + -4, -3, -2, -1, ], - "", ] `; @@ -3060,45 +3060,45 @@ exports[`dehydrate > dehydrate useStringTable { values: [ '', 'apple', 'banana', "Flatpack JSON v2", [ 128, + "set", "values", "apple", "banana", "pineapple", + "", ], [ 1, 3, - 5, + 4, ], [ 0, - 4, -1, + -2, ], - "set", [ 0, - 6, - 8, + 5, + 7, ], [ 4, - 7, + 6, ], [ 0, - -2, -3, -4, + -5, ], [ 0, - 9, - -2, + -6, -3, -4, + -5, ], - "", ] `; @@ -3111,11 +3111,12 @@ exports[`dehydrate > dehydrate useStringTable { values: [ 'apple', 'banana', 'pi "banana", "apple", "values", + "set", ], [ 1, 4, - 6, + 5, ], [ 0, @@ -3125,13 +3126,12 @@ exports[`dehydrate > dehydrate useStringTable { values: [ 'apple', 'banana', 'pi ], [ 0, - 5, + -5, -4, ], - "set", [ 0, - 7, + 6, 3, ], [ @@ -3146,6 +3146,7 @@ exports[`dehydrate > dehydrate useStringTable { values: [ 'apple', 'banana', 'pi "Flatpack JSON v2", [ 128, + "set", "values", "apple", "banana", @@ -3154,28 +3155,27 @@ exports[`dehydrate > dehydrate useStringTable { values: [ 'apple', 'banana', 'pi [ 1, 3, - 5, + 4, ], [ 0, - 4, -1, + -2, ], - "set", [ 0, + 5, 6, - 7, ], [ 4, - 7, + 6, ], [ 0, - -2, -3, -4, + -5, ], ] `; diff --git a/packages/flatpack-json/src/__snapshots__/storage_fileList.jsonc b/packages/flatpack-json/src/__snapshots__/storage_fileList.jsonc index b24a5080b811..22810c92005b 100644 --- a/packages/flatpack-json/src/__snapshots__/storage_fileList.jsonc +++ b/packages/flatpack-json/src/__snapshots__/storage_fileList.jsonc @@ -1,6 +1,35 @@ [ "Flatpack JSON v1", -[0,2,3,6,9,11,14,16,19,21,23,27,31,34,36,40,42,44,47,49,51,54,56,58,61,63,65,68,70,73,78,80,83,86,88,92,94,98,100,102,104,105,109,111,114,117,119,122,123,127,129,134,136,139,141,143,145,148,150,153,155,158,160,162,164,167,169,173,176,178,180,182,183,186,187,189,191,193,196,200,202,205,207,211,213,215,217,219,222,225,228,230,233,235,237,241,243,244,247,249,251,253,255,258,260,262,266,271,274,275,277,281,284,286,288,290,292,294,299,301,303,306,308,310,315,317,319,323,327,330,332,334,338,340,343,345,346,349,351,353,355,357,359,361,365,367,370,372,376,378,381,383,385,387,390,392,395,397,399,401,403,405,407,409,411,414,416,419,424,425,427,429,431,433,435,437,440,442,445,447,449,451,453,455,457,459,462,464,466,469,471,473,475,479,481,484,486,488,490,493,495,498,500,502,504,506,509,511,513,515,516,518,520,523,525,527,529,531,533,535,537,539,541,543,545,547,549,551,553,555,557,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599,601,603,605,606,608,609,611,613,614,616,618,620,622,624,626,628,630,632,634,636,638,640,642,644,646,648,650,652,654,656,658,660,662,663,665,666,668,670,671,673,675,677,679,681,683,685,687,689,691,693,695,697,699,701,703,705,707,709,711,713,715,717,719,721,723,725,727,729,731,733,734,736,738,739,741,742,744,746,748,749,751,753,755,757,759,761,763,765,767,769,771,773,775,777,779,781,783,785,787,789,790,792,794,795,797,799,801,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,849,851,852,854,856,858,860,862,864,866,867,869,871,873,875,877,878,880,882,883,885,886,888,890,892,893,895,897,899,902,903,905,907,908,910,912,914,915,917,918,919,920,922,923,926,929,931,933,934,935,937,940,942,943,946,951,953,957,960,961,964,966,967,969,970,974,976,979,982,984,987,990,991,993,997,999,1003,1007,1009,1013,1016,1018,1021,1023,1026,1028,1033,1036,1037,1040,1042,1045,1048,1051,1054,1055,1058,1060,1064,1066,1070,1072,1076,1078,1081,1083,1086,1088,1091,1093,1096,1098,1101,1103,1106,1109,1111,1114,1117,1119,1121,1123,1125,1128,1130,1133,1136,1138,1142,1144,1148,1150,1152,1156,1158,1162,1165,1169,1171,1175,1177,1179,1181,1183,1184,1185,1187,1188,1190,1192,1193,1195,1196,1199,1202,1206,1209,1211,1212,1213,1214,1217,1219,1221,1223,1224,1226,1227,1229,1230,1234,1237,1239,1243,1246,1249,1253,1257,1261,1263,1266,1269,1271,1275,1277,1278,1282,1284,1287,1289,1292,1294,1297,1300,1302,1306,1308,1311,1313,1314,1316,1317,1319,1323,1325,1329,1331,1334,1336,1339,1342,1344,1347,1349,1351,1353,1356,1358,1360,1362,1364,1366,1368,1371,1373,1376,1378,1381,1383,1386,1388,1390,1392,1395,1397,1400,1402,1405,1408,1410,1413,1415,1418,1420,1424,1426,1429,1431,1434,1436,1439,1441,1443,1445,1447,1449,1452,1454,1458,1460,1462,1463,1466,1468,38], +[0,2,3,6,9,11,14,16,19,21,23,27,31,34,36,40,42,44,47,49,51,54,56,58,61,63,65,68,70,73,78,80,83,86,88,92,94,98,100,102,104, +105,109,111,114,117,119,122,123,127,129,134,136,139,141,143,145,148,150,153,155,158,160,162, +164,167,169,173,176,178,180,182,183,186,187,189,191,193,196,200,202,205,207,211,213,215,217,219,222,225,228,230,233,235, +237,241,243,244,247,249,251,253,255,258,260,262,266,271,274,275,277,281,284,286,288,290,292,294,299,301,303,306,308,310, +315,317,319,323, +327,330,332,334,338,340,343,345,346,349,351,353,355,357,359,361,365,367,370,372,376,378,381,383,385,387,390,392,395,397, +399,401,403,405,407,409,411,414,416,419,424,425,427,429,431,433,435,437,440,442,445,447,449,451,453,455,457,459,462,464, +466,469,471,473, +475,479,481,484,486,488,490,493,495,498,500,502,504,506,509,511,513,515,516,518,520,523,525,527,529,531,533,535,537,539, +541,543,545,547,549,551,553,555,557,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599, +601,603,605,606, +608,609,611,613,614,616,618,620,622,624,626,628,630,632,634,636,638,640,642,644,646,648,650,652,654,656,658,660,662,663, +665,666,668,670,671,673,675,677,679,681,683,685,687,689,691,693,695,697,699,701,703,705,707,709,711,713,715,717,719,721, +723,725,727,729, +731,733,734,736,738,739,741,742,744,746,748,749,751,753,755,757,759,761,763,765,767,769,771,773,775,777,779,781,783,785, +787,789,790,792,794,795,797,799,801,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842, +844,846,848,849, +851,852,854,856,858,860,862,864,866,867,869,871,873,875,877,878,880,882,883,885,886,888,890,892,893,895,897,899,902,903, +905,907,908,910,912,914,915,917,918,919,920,922,923,926,929,931,933,934,935,937,940,942,943,946,951,953,957,960,961,964, +966,967,969,970, +974,976,979,982,984,987,990,991,993,997,999,1003,1007,1009,1013,1016,1018,1021,1023,1026,1028,1033,1036,1037,1040,1042, +1045,1048,1051,1054,1055,1058,1060,1064,1066,1070,1072,1076,1078,1081,1083,1086,1088,1091,1093,1096,1098,1101,1103,1106, +1109,1111,1114,1117,1119,1121,1123,1125,1128,1130,1133,1136,1138,1142, +1144,1148,1150,1152,1156,1158,1162,1165,1169,1171,1175,1177,1179,1181,1183,1184,1185,1187,1188,1190,1192,1193,1195,1196, +1199,1202,1206,1209,1211,1212,1213,1214,1217,1219,1221,1223,1224,1226,1227,1229,1230,1234,1237,1239,1243,1246,1249,1253, +1257,1261,1263,1266,1269,1271,1275,1277,1278,1282,1284,1287,1289,1292,1294,1297, +1300,1302,1306,1308,1311,1313,1314,1316,1317,1319,1323,1325,1329,1331,1334,1336,1339,1342,1344,1347,1349,1351,1353,1356, +1358,1360,1362,1364,1366,1368,1371,1373,1376,1378,1381,1383,1386,1388,1390,1392,1395,1397,1400,1402,1405,1408,1410,1413, +1415,1418,1420,1424,1426,1429,1431,1434,1436,1439,1441,1443,1445,1447,1449,1452, +1454,1458,1460,1462,1463,1466,1468,38], "api/api.d.ts", "dist/esm/Cache/cspell.cache.d.ts", [3,3,28], diff --git a/packages/flatpack-json/src/__snapshots__/storage_fileObjects.jsonc b/packages/flatpack-json/src/__snapshots__/storage_fileObjects.jsonc index c59d1ce224aa..18f04f651d80 100644 --- a/packages/flatpack-json/src/__snapshots__/storage_fileObjects.jsonc +++ b/packages/flatpack-json/src/__snapshots__/storage_fileObjects.jsonc @@ -1,6 +1,35 @@ [ "Flatpack JSON v1", -[0,2,10,13,18,23,27,32,36,41,45,49,55,59,64,68,74,78,82,87,91,95,100,104,108,113,117,121,126,130,135,142,146,151,156,160,166,170,176,180,184,188,191,197,201,206,211,215,220,223,227,231,238,242,247,251,255,259,264,268,273,277,282,286,290,294,299,303,309,314,318,322,326,329,334,337,341,345,349,354,360,364,369,373,378,382,386,391,395,400,405,410,414,419,423,427,431,435,438,443,447,451,455,459,464,468,472,478,485,490,493,497,501,506,510,514,518,522,526,531,535,539,544,548,552,559,563,567,572,578,583,587,591,597,601,606,610,613,618,622,626,630,634,638,642,648,652,657,661,667,671,676,680,684,688,693,697,702,706,710,714,718,722,726,730,734,739,743,748,755,758,762,766,770,774,778,782,787,791,796,800,804,808,812,816,820,824,829,833,837,842,846,850,854,860,864,869,873,877,881,886,890,895,899,903,907,911,916,920,924,928,931,935,939,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1239,1243,1247,1250,1254,1258,1262,1266,1270,1274,1278,1282,1286,1290,1294,1298,1302,1306,1310,1314,1318,1322,1326,1330,1334,1338,1342,1346,1350,1354,1358,1362,1366,1370,1374,1377,1381,1385,1388,1392,1395,1399,1403,1407,1410,1414,1418,1422,1426,1430,1434,1438,1442,1446,1450,1454,1458,1462,1466,1470,1474,1478,1482,1486,1490,1494,1498,1502,1506,1510,1514,1518,1522,1526,1530,1534,1538,1542,1546,1550,1554,1558,1562,1566,1570,1574,1578,1582,1586,1590,1594,1598,1602,1606,1610,1614,1617,1621,1624,1628,1632,1636,1640,1644,1648,1652,1655,1659,1663,1667,1671,1675,1678,1682,1686,1689,1693,1696,1700,1704,1708,1711,1715,1719,1723,1728,1731,1735,1739,1742,1746,1750,1754,1757,1761,1764,1767,1770,1774,1777,1782,1787,1791,1795,1798,1801,1805,1810,1814,1817,1822,1829,1833,1839,1844,1847,1852,1856,1859,1863,1866,1872,1876,1881,1886,1890,1895,1900,1903,1907,1913,1917,1923,1929,1933,1938,1943,1947,1952,1956,1961,1965,1970,1975,1978,1983,1987,1992,1997,2002,2007,2010,2015,2019,2025,2029,2035,2039,2045,2049,2054,2058,2063,2067,2072,2076,2081,2085,2090,2094,2099,2104,2108,2113,2118,2122,2126,2130,2134,2139,2143,2148,2153,2157,2160,2164,2170,2174,2178,2184,2188,2194,2199,2205,2209,2215,2219,2223,2227,2231,2234,2237,2241,2244,2248,2252,2255,2259,2262,2267,2272,2278,2283,2287,2290,2293,2296,2301,2305,2309,2313,2316,2320,2323,2327,2330,2336,2341,2345,2351,2356,2361,2367,2373,2379,2383,2388,2393,2397,2403,2407,2410,2416,2420,2425,2429,2434,2438,2443,2448,2452,2458,2462,2467,2471,2474,2478,2481,2485,2491,2495,2501,2505,2510,2514,2519,2524,2528,2533,2537,2541,2545,2550,2554,2558,2562,2566,2570,2574,2579,2583,2588,2592,2597,2601,2606,2610,2614,2618,2623,2627,2632,2636,2641,2646,2650,2655,2659,2664,2668,2674,2678,2683,2687,2692,2696,2701,2705,2709,2713,2717,2721,2726,2730,2736,2740,2744,2747,2752,2756], +[0,2,10,13,18,23,27,32,36,41,45,49,55,59,64,68,74,78,82,87,91,95,100,104,108,113,117,121,126,130,135,142,146,151,156,160, +166,170,176,180,184,188,191,197,201,206,211,215,220,223,227,231,238,242,247,251,255,259,264,268,273,277,282,286, +290,294,299,303,309,314,318,322,326,329,334,337,341,345,349,354,360,364,369,373,378,382,386,391,395,400,405,410,414,419, +423,427,431,435,438,443,447,451,455,459,464,468,472,478,485,490,493,497,501,506,510,514,518,522,526,531,535,539,544,548, +552,559,563,567, +572,578,583,587,591,597,601,606,610,613,618,622,626,630,634,638,642,648,652,657,661,667,671,676,680,684,688,693,697,702, +706,710,714,718,722,726,730,734,739,743,748,755,758,762,766,770,774,778,782,787,791,796,800,804,808,812,816,820,824,829, +833,837,842,846, +850,854,860,864,869,873,877,881,886,890,895,899,903,907,911,916,920,924,928,931,935,939,944,948,952,956,960,964,968,972, +976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072, +1076,1080,1084,1088,1092,1096,1100,1104,1108, +1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204, +1208,1212,1216,1220,1224,1228,1232,1236,1239,1243,1247,1250,1254,1258,1262,1266,1270,1274,1278,1282,1286,1290,1294,1298, +1302,1306,1310,1314,1318,1322,1326,1330,1334,1338,1342,1346,1350,1354,1358,1362, +1366,1370,1374,1377,1381,1385,1388,1392,1395,1399,1403,1407,1410,1414,1418,1422,1426,1430,1434,1438,1442,1446,1450,1454, +1458,1462,1466,1470,1474,1478,1482,1486,1490,1494,1498,1502,1506,1510,1514,1518,1522,1526,1530,1534,1538,1542,1546,1550, +1554,1558,1562,1566,1570,1574,1578,1582,1586,1590,1594,1598,1602,1606,1610,1614, +1617,1621,1624,1628,1632,1636,1640,1644,1648,1652,1655,1659,1663,1667,1671,1675,1678,1682,1686,1689,1693,1696,1700,1704, +1708,1711,1715,1719,1723,1728,1731,1735,1739,1742,1746,1750,1754,1757,1761,1764,1767,1770,1774,1777,1782,1787,1791,1795, +1798,1801,1805,1810,1814,1817,1822,1829,1833,1839,1844,1847,1852,1856,1859,1863, +1866,1872,1876,1881,1886,1890,1895,1900,1903,1907,1913,1917,1923,1929,1933,1938,1943,1947,1952,1956,1961,1965,1970,1975, +1978,1983,1987,1992,1997,2002,2007,2010,2015,2019,2025,2029,2035,2039,2045,2049,2054,2058,2063,2067,2072,2076,2081,2085, +2090,2094,2099,2104,2108,2113,2118,2122,2126,2130,2134,2139,2143,2148,2153,2157, +2160,2164,2170,2174,2178,2184,2188,2194,2199,2205,2209,2215,2219,2223,2227,2231,2234,2237,2241,2244,2248,2252,2255,2259, +2262,2267,2272,2278,2283,2287,2290,2293,2296,2301,2305,2309,2313,2316,2320,2323,2327,2330,2336,2341,2345,2351,2356,2361, +2367,2373,2379,2383,2388,2393,2397,2403,2407,2410,2416,2420,2425,2429,2434,2438, +2443,2448,2452,2458,2462,2467,2471,2474,2478,2481,2485,2491,2495,2501,2505,2510,2514,2519,2524,2528,2533,2537,2541,2545, +2550,2554,2558,2562,2566,2570,2574,2579,2583,2588,2592,2597,2601,2606,2610,2614,2618,2623,2627,2632,2636,2641,2646,2650, +2655,2659,2664,2668,2674,2678,2683,2687,2692,2696,2701,2705,2709,2713,2717,2721, +2726,2730,2736,2740,2744,2747,2752,2756], [1,3,6], [0,4,5], "filename", diff --git a/packages/flatpack-json/src/__snapshots__/unpack_fileList.jsonc b/packages/flatpack-json/src/__snapshots__/unpack_fileList.jsonc index b24a5080b811..22810c92005b 100644 --- a/packages/flatpack-json/src/__snapshots__/unpack_fileList.jsonc +++ b/packages/flatpack-json/src/__snapshots__/unpack_fileList.jsonc @@ -1,6 +1,35 @@ [ "Flatpack JSON v1", -[0,2,3,6,9,11,14,16,19,21,23,27,31,34,36,40,42,44,47,49,51,54,56,58,61,63,65,68,70,73,78,80,83,86,88,92,94,98,100,102,104,105,109,111,114,117,119,122,123,127,129,134,136,139,141,143,145,148,150,153,155,158,160,162,164,167,169,173,176,178,180,182,183,186,187,189,191,193,196,200,202,205,207,211,213,215,217,219,222,225,228,230,233,235,237,241,243,244,247,249,251,253,255,258,260,262,266,271,274,275,277,281,284,286,288,290,292,294,299,301,303,306,308,310,315,317,319,323,327,330,332,334,338,340,343,345,346,349,351,353,355,357,359,361,365,367,370,372,376,378,381,383,385,387,390,392,395,397,399,401,403,405,407,409,411,414,416,419,424,425,427,429,431,433,435,437,440,442,445,447,449,451,453,455,457,459,462,464,466,469,471,473,475,479,481,484,486,488,490,493,495,498,500,502,504,506,509,511,513,515,516,518,520,523,525,527,529,531,533,535,537,539,541,543,545,547,549,551,553,555,557,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599,601,603,605,606,608,609,611,613,614,616,618,620,622,624,626,628,630,632,634,636,638,640,642,644,646,648,650,652,654,656,658,660,662,663,665,666,668,670,671,673,675,677,679,681,683,685,687,689,691,693,695,697,699,701,703,705,707,709,711,713,715,717,719,721,723,725,727,729,731,733,734,736,738,739,741,742,744,746,748,749,751,753,755,757,759,761,763,765,767,769,771,773,775,777,779,781,783,785,787,789,790,792,794,795,797,799,801,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,849,851,852,854,856,858,860,862,864,866,867,869,871,873,875,877,878,880,882,883,885,886,888,890,892,893,895,897,899,902,903,905,907,908,910,912,914,915,917,918,919,920,922,923,926,929,931,933,934,935,937,940,942,943,946,951,953,957,960,961,964,966,967,969,970,974,976,979,982,984,987,990,991,993,997,999,1003,1007,1009,1013,1016,1018,1021,1023,1026,1028,1033,1036,1037,1040,1042,1045,1048,1051,1054,1055,1058,1060,1064,1066,1070,1072,1076,1078,1081,1083,1086,1088,1091,1093,1096,1098,1101,1103,1106,1109,1111,1114,1117,1119,1121,1123,1125,1128,1130,1133,1136,1138,1142,1144,1148,1150,1152,1156,1158,1162,1165,1169,1171,1175,1177,1179,1181,1183,1184,1185,1187,1188,1190,1192,1193,1195,1196,1199,1202,1206,1209,1211,1212,1213,1214,1217,1219,1221,1223,1224,1226,1227,1229,1230,1234,1237,1239,1243,1246,1249,1253,1257,1261,1263,1266,1269,1271,1275,1277,1278,1282,1284,1287,1289,1292,1294,1297,1300,1302,1306,1308,1311,1313,1314,1316,1317,1319,1323,1325,1329,1331,1334,1336,1339,1342,1344,1347,1349,1351,1353,1356,1358,1360,1362,1364,1366,1368,1371,1373,1376,1378,1381,1383,1386,1388,1390,1392,1395,1397,1400,1402,1405,1408,1410,1413,1415,1418,1420,1424,1426,1429,1431,1434,1436,1439,1441,1443,1445,1447,1449,1452,1454,1458,1460,1462,1463,1466,1468,38], +[0,2,3,6,9,11,14,16,19,21,23,27,31,34,36,40,42,44,47,49,51,54,56,58,61,63,65,68,70,73,78,80,83,86,88,92,94,98,100,102,104, +105,109,111,114,117,119,122,123,127,129,134,136,139,141,143,145,148,150,153,155,158,160,162, +164,167,169,173,176,178,180,182,183,186,187,189,191,193,196,200,202,205,207,211,213,215,217,219,222,225,228,230,233,235, +237,241,243,244,247,249,251,253,255,258,260,262,266,271,274,275,277,281,284,286,288,290,292,294,299,301,303,306,308,310, +315,317,319,323, +327,330,332,334,338,340,343,345,346,349,351,353,355,357,359,361,365,367,370,372,376,378,381,383,385,387,390,392,395,397, +399,401,403,405,407,409,411,414,416,419,424,425,427,429,431,433,435,437,440,442,445,447,449,451,453,455,457,459,462,464, +466,469,471,473, +475,479,481,484,486,488,490,493,495,498,500,502,504,506,509,511,513,515,516,518,520,523,525,527,529,531,533,535,537,539, +541,543,545,547,549,551,553,555,557,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599, +601,603,605,606, +608,609,611,613,614,616,618,620,622,624,626,628,630,632,634,636,638,640,642,644,646,648,650,652,654,656,658,660,662,663, +665,666,668,670,671,673,675,677,679,681,683,685,687,689,691,693,695,697,699,701,703,705,707,709,711,713,715,717,719,721, +723,725,727,729, +731,733,734,736,738,739,741,742,744,746,748,749,751,753,755,757,759,761,763,765,767,769,771,773,775,777,779,781,783,785, +787,789,790,792,794,795,797,799,801,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842, +844,846,848,849, +851,852,854,856,858,860,862,864,866,867,869,871,873,875,877,878,880,882,883,885,886,888,890,892,893,895,897,899,902,903, +905,907,908,910,912,914,915,917,918,919,920,922,923,926,929,931,933,934,935,937,940,942,943,946,951,953,957,960,961,964, +966,967,969,970, +974,976,979,982,984,987,990,991,993,997,999,1003,1007,1009,1013,1016,1018,1021,1023,1026,1028,1033,1036,1037,1040,1042, +1045,1048,1051,1054,1055,1058,1060,1064,1066,1070,1072,1076,1078,1081,1083,1086,1088,1091,1093,1096,1098,1101,1103,1106, +1109,1111,1114,1117,1119,1121,1123,1125,1128,1130,1133,1136,1138,1142, +1144,1148,1150,1152,1156,1158,1162,1165,1169,1171,1175,1177,1179,1181,1183,1184,1185,1187,1188,1190,1192,1193,1195,1196, +1199,1202,1206,1209,1211,1212,1213,1214,1217,1219,1221,1223,1224,1226,1227,1229,1230,1234,1237,1239,1243,1246,1249,1253, +1257,1261,1263,1266,1269,1271,1275,1277,1278,1282,1284,1287,1289,1292,1294,1297, +1300,1302,1306,1308,1311,1313,1314,1316,1317,1319,1323,1325,1329,1331,1334,1336,1339,1342,1344,1347,1349,1351,1353,1356, +1358,1360,1362,1364,1366,1368,1371,1373,1376,1378,1381,1383,1386,1388,1390,1392,1395,1397,1400,1402,1405,1408,1410,1413, +1415,1418,1420,1424,1426,1429,1431,1434,1436,1439,1441,1443,1445,1447,1449,1452, +1454,1458,1460,1462,1463,1466,1468,38], "api/api.d.ts", "dist/esm/Cache/cspell.cache.d.ts", [3,3,28], diff --git a/packages/flatpack-json/src/__snapshots__/unpack_fileObjects.jsonc b/packages/flatpack-json/src/__snapshots__/unpack_fileObjects.jsonc index c59d1ce224aa..18f04f651d80 100644 --- a/packages/flatpack-json/src/__snapshots__/unpack_fileObjects.jsonc +++ b/packages/flatpack-json/src/__snapshots__/unpack_fileObjects.jsonc @@ -1,6 +1,35 @@ [ "Flatpack JSON v1", -[0,2,10,13,18,23,27,32,36,41,45,49,55,59,64,68,74,78,82,87,91,95,100,104,108,113,117,121,126,130,135,142,146,151,156,160,166,170,176,180,184,188,191,197,201,206,211,215,220,223,227,231,238,242,247,251,255,259,264,268,273,277,282,286,290,294,299,303,309,314,318,322,326,329,334,337,341,345,349,354,360,364,369,373,378,382,386,391,395,400,405,410,414,419,423,427,431,435,438,443,447,451,455,459,464,468,472,478,485,490,493,497,501,506,510,514,518,522,526,531,535,539,544,548,552,559,563,567,572,578,583,587,591,597,601,606,610,613,618,622,626,630,634,638,642,648,652,657,661,667,671,676,680,684,688,693,697,702,706,710,714,718,722,726,730,734,739,743,748,755,758,762,766,770,774,778,782,787,791,796,800,804,808,812,816,820,824,829,833,837,842,846,850,854,860,864,869,873,877,881,886,890,895,899,903,907,911,916,920,924,928,931,935,939,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1239,1243,1247,1250,1254,1258,1262,1266,1270,1274,1278,1282,1286,1290,1294,1298,1302,1306,1310,1314,1318,1322,1326,1330,1334,1338,1342,1346,1350,1354,1358,1362,1366,1370,1374,1377,1381,1385,1388,1392,1395,1399,1403,1407,1410,1414,1418,1422,1426,1430,1434,1438,1442,1446,1450,1454,1458,1462,1466,1470,1474,1478,1482,1486,1490,1494,1498,1502,1506,1510,1514,1518,1522,1526,1530,1534,1538,1542,1546,1550,1554,1558,1562,1566,1570,1574,1578,1582,1586,1590,1594,1598,1602,1606,1610,1614,1617,1621,1624,1628,1632,1636,1640,1644,1648,1652,1655,1659,1663,1667,1671,1675,1678,1682,1686,1689,1693,1696,1700,1704,1708,1711,1715,1719,1723,1728,1731,1735,1739,1742,1746,1750,1754,1757,1761,1764,1767,1770,1774,1777,1782,1787,1791,1795,1798,1801,1805,1810,1814,1817,1822,1829,1833,1839,1844,1847,1852,1856,1859,1863,1866,1872,1876,1881,1886,1890,1895,1900,1903,1907,1913,1917,1923,1929,1933,1938,1943,1947,1952,1956,1961,1965,1970,1975,1978,1983,1987,1992,1997,2002,2007,2010,2015,2019,2025,2029,2035,2039,2045,2049,2054,2058,2063,2067,2072,2076,2081,2085,2090,2094,2099,2104,2108,2113,2118,2122,2126,2130,2134,2139,2143,2148,2153,2157,2160,2164,2170,2174,2178,2184,2188,2194,2199,2205,2209,2215,2219,2223,2227,2231,2234,2237,2241,2244,2248,2252,2255,2259,2262,2267,2272,2278,2283,2287,2290,2293,2296,2301,2305,2309,2313,2316,2320,2323,2327,2330,2336,2341,2345,2351,2356,2361,2367,2373,2379,2383,2388,2393,2397,2403,2407,2410,2416,2420,2425,2429,2434,2438,2443,2448,2452,2458,2462,2467,2471,2474,2478,2481,2485,2491,2495,2501,2505,2510,2514,2519,2524,2528,2533,2537,2541,2545,2550,2554,2558,2562,2566,2570,2574,2579,2583,2588,2592,2597,2601,2606,2610,2614,2618,2623,2627,2632,2636,2641,2646,2650,2655,2659,2664,2668,2674,2678,2683,2687,2692,2696,2701,2705,2709,2713,2717,2721,2726,2730,2736,2740,2744,2747,2752,2756], +[0,2,10,13,18,23,27,32,36,41,45,49,55,59,64,68,74,78,82,87,91,95,100,104,108,113,117,121,126,130,135,142,146,151,156,160, +166,170,176,180,184,188,191,197,201,206,211,215,220,223,227,231,238,242,247,251,255,259,264,268,273,277,282,286, +290,294,299,303,309,314,318,322,326,329,334,337,341,345,349,354,360,364,369,373,378,382,386,391,395,400,405,410,414,419, +423,427,431,435,438,443,447,451,455,459,464,468,472,478,485,490,493,497,501,506,510,514,518,522,526,531,535,539,544,548, +552,559,563,567, +572,578,583,587,591,597,601,606,610,613,618,622,626,630,634,638,642,648,652,657,661,667,671,676,680,684,688,693,697,702, +706,710,714,718,722,726,730,734,739,743,748,755,758,762,766,770,774,778,782,787,791,796,800,804,808,812,816,820,824,829, +833,837,842,846, +850,854,860,864,869,873,877,881,886,890,895,899,903,907,911,916,920,924,928,931,935,939,944,948,952,956,960,964,968,972, +976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072, +1076,1080,1084,1088,1092,1096,1100,1104,1108, +1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204, +1208,1212,1216,1220,1224,1228,1232,1236,1239,1243,1247,1250,1254,1258,1262,1266,1270,1274,1278,1282,1286,1290,1294,1298, +1302,1306,1310,1314,1318,1322,1326,1330,1334,1338,1342,1346,1350,1354,1358,1362, +1366,1370,1374,1377,1381,1385,1388,1392,1395,1399,1403,1407,1410,1414,1418,1422,1426,1430,1434,1438,1442,1446,1450,1454, +1458,1462,1466,1470,1474,1478,1482,1486,1490,1494,1498,1502,1506,1510,1514,1518,1522,1526,1530,1534,1538,1542,1546,1550, +1554,1558,1562,1566,1570,1574,1578,1582,1586,1590,1594,1598,1602,1606,1610,1614, +1617,1621,1624,1628,1632,1636,1640,1644,1648,1652,1655,1659,1663,1667,1671,1675,1678,1682,1686,1689,1693,1696,1700,1704, +1708,1711,1715,1719,1723,1728,1731,1735,1739,1742,1746,1750,1754,1757,1761,1764,1767,1770,1774,1777,1782,1787,1791,1795, +1798,1801,1805,1810,1814,1817,1822,1829,1833,1839,1844,1847,1852,1856,1859,1863, +1866,1872,1876,1881,1886,1890,1895,1900,1903,1907,1913,1917,1923,1929,1933,1938,1943,1947,1952,1956,1961,1965,1970,1975, +1978,1983,1987,1992,1997,2002,2007,2010,2015,2019,2025,2029,2035,2039,2045,2049,2054,2058,2063,2067,2072,2076,2081,2085, +2090,2094,2099,2104,2108,2113,2118,2122,2126,2130,2134,2139,2143,2148,2153,2157, +2160,2164,2170,2174,2178,2184,2188,2194,2199,2205,2209,2215,2219,2223,2227,2231,2234,2237,2241,2244,2248,2252,2255,2259, +2262,2267,2272,2278,2283,2287,2290,2293,2296,2301,2305,2309,2313,2316,2320,2323,2327,2330,2336,2341,2345,2351,2356,2361, +2367,2373,2379,2383,2388,2393,2397,2403,2407,2410,2416,2420,2425,2429,2434,2438, +2443,2448,2452,2458,2462,2467,2471,2474,2478,2481,2485,2491,2495,2501,2505,2510,2514,2519,2524,2528,2533,2537,2541,2545, +2550,2554,2558,2562,2566,2570,2574,2579,2583,2588,2592,2597,2601,2606,2610,2614,2618,2623,2627,2632,2636,2641,2646,2650, +2655,2659,2664,2668,2674,2678,2683,2687,2692,2696,2701,2705,2709,2713,2717,2721, +2726,2730,2736,2740,2744,2747,2752,2756], [1,3,6], [0,4,5], "filename", diff --git a/packages/flatpack-json/src/optimizeFlatpacked.mts b/packages/flatpack-json/src/optimizeFlatpacked.mts index 5cbe58a2fb57..3935e5f17ffe 100644 --- a/packages/flatpack-json/src/optimizeFlatpacked.mts +++ b/packages/flatpack-json/src/optimizeFlatpacked.mts @@ -41,6 +41,9 @@ export function optimizeFlatpacked(data: Flatpacked): Flatpacked { stringTableRefCounts.set(index, (stringTableRefCounts.get(index) || 0) + 1); continue; } + if (!index) { + continue; + } const ref = indexToRefElement.get(index); assert(ref, `Invalid reference index: ${index}`); ref.refCount++; diff --git a/packages/flatpack-json/src/storage.mts b/packages/flatpack-json/src/storage.mts index f987ae38f453..80c4137dd455 100644 --- a/packages/flatpack-json/src/storage.mts +++ b/packages/flatpack-json/src/storage.mts @@ -155,13 +155,14 @@ export class CompactStorage { private addStringPrimitive(value: string): number { const strTableIdx = this.stringTableLookup.get(value); if (strTableIdx) { - return -strTableIdx; + return strTableIdx; } const stringTable = this.stringTable as string[] | undefined; - if (stringTable && value.length >= minSubStringLen && value.length > Math.log10(stringTable.length)) { - const idx = stringTable.push(value) - 1; + if (stringTable) { + const idx = -(stringTable.push(value) - 1); this.stringTableLookup.set(value, idx); - return -idx; + this.addToKnownStrings(idx, value); + return idx; } const idx = this.data.push(value) - 1; this.addToKnownStrings(idx, value); @@ -181,7 +182,12 @@ export class CompactStorage { return found; } - if (forceStringPrimitives || value.length < minSubStringLen || blockSplitRegex.test(value)) { + if ( + forceStringPrimitives || + value.length < minSubStringLen || + blockSplitRegex.test(value) || + this.stringTable + ) { return this.addStringPrimitive(value); } diff --git a/packages/flatpack-json/src/storage.test.mts b/packages/flatpack-json/src/storage.test.mts index 19b185f13d09..5dc81a45e931 100644 --- a/packages/flatpack-json/src/storage.test.mts +++ b/packages/flatpack-json/src/storage.test.mts @@ -1,4 +1,4 @@ -import { readFile } from 'node:fs/promises'; +import fs from 'node:fs/promises'; import { findMatchingFileTypes } from '@cspell/filetypes'; import { describe, expect, test } from 'vitest'; @@ -7,7 +7,9 @@ import { stringify, toJSON } from './storage.mjs'; import { stringifyFlatpacked } from './stringify.mjs'; import { fromJSON } from './unpack.mjs'; -const urlFileList = new URL('../fixtures/fileList.txt', import.meta.url); +const urlFixtures = new URL('../fixtures/', import.meta.url); +const urlFileList = new URL('fileList.txt', urlFixtures); +const urlNpmV1 = new URL('.npm-packages-info-v1.json', urlFixtures); const baseFilename = new URL(import.meta.url).pathname.split('/').slice(-1).join('').split('.').slice(0, -2).join('.'); describe('dehydrate', async () => { @@ -159,8 +161,21 @@ describe('dehydrate', async () => { }); }); +describe('v1 to v2', async () => { + const contentNpmV1 = await fs.readFile(urlNpmV1, 'utf8'); + + test('npmV1 to V2', async () => { + const data = fromJSON(JSON.parse(contentNpmV1)); + expect(fromJSON(toJSON(data, { useStringTable: true, dedupe: true }))).toEqual(data); + const jsonStr = stringify(data, true, { optimize: true, useStringTable: true, dedupe: true }); + await fs.writeFile(new URL('.npm-packages-info-v2.json', urlFixtures), jsonStr); + + expect(fromJSON(JSON.parse(jsonStr))).toEqual(data); + }); +}); + async function sampleFileList() { - const data = await readFile(urlFileList, 'utf8'); + const data = await fs.readFile(urlFileList, 'utf8'); const files = data.split('\n'); return files; } diff --git a/packages/flatpack-json/src/stringify.mts b/packages/flatpack-json/src/stringify.mts index 8458ec037601..6973bb1a23f5 100644 --- a/packages/flatpack-json/src/stringify.mts +++ b/packages/flatpack-json/src/stringify.mts @@ -1,18 +1,45 @@ import type { Flatpacked } from './types.mjs'; +const maxLineLength = 120; +const maxBatchSize = 64; + export function stringifyFlatpacked(input: Flatpacked): string { let result = '[\n' + JSON.stringify(input[0]); let prev = ''; for (let i = 1; i < input.length; i++) { - const next = JSON.stringify(input[i]); + const next = formatLine(input[i]); result += prev === next ? ',' : ',\n'; result += next; prev = next; } result += '\n]\n'; - return result; } + +function formatLine(elem: unknown): string { + if (!Array.isArray(elem)) { + return JSON.stringify(elem); + } + const input = elem; + const result: string[] = []; + + let line = ''; + for (let i = 0; i < input.length; i++) { + if (line) line += ','; + const next = JSON.stringify(input[i]); + if (line.length + next.length > maxLineLength || (i && i % maxBatchSize === 0)) { + result.push(line); + line = ''; + } + line += next; + } + + if (line) { + result.push(line); + } + + return '[' + result.join('\n') + ']'; +} diff --git a/packages/flatpack-json/src/types.mts b/packages/flatpack-json/src/types.mts index 7223cead7f08..eee172736cef 100644 --- a/packages/flatpack-json/src/types.mts +++ b/packages/flatpack-json/src/types.mts @@ -156,3 +156,10 @@ export interface FlatpackApi { stringify(): string; toValue(): Unpacked; } + +export function isStringTableElement(elem: FlattenedElement): elem is StringTableElement { + if (!Array.isArray(elem)) { + return false; + } + return elem[0] === ElementType.StringTable; +} From 6de2bf5fc32a2c8dbdac954b82e43d91c6f112a2 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Fri, 6 Mar 2026 06:42:44 +0100 Subject: [PATCH 06/26] keep a copy of v1 --- .../fixtures/.npm-packages-info-v2.json | 19550 ++++++++-------- packages/flatpack-json/src/CompactStorage.mts | 13 + packages/flatpack-json/src/Trie.mts | 36 +- .../src/__snapshots__/storage.test.mts.snap | 252 +- .../src/__snapshots__/storageV1.test.mts.snap | 795 + .../storageV2_fileList.data.json | 1 + .../src/__snapshots__/storageV2_fileList.json | 1 + .../__snapshots__/storageV2_fileList.jsonc | 679 + .../storageV2_fileObjects.data.json | 1 + .../__snapshots__/storageV2_fileObjects.json | 1 + .../__snapshots__/storageV2_fileObjects.jsonc | 1980 ++ .../flatpack-json/src/optimizeFlatpacked.mts | 16 +- packages/flatpack-json/src/storage.mts | 608 +- packages/flatpack-json/src/storageV1.mts | 556 + packages/flatpack-json/src/storageV1.test.mts | 170 + packages/flatpack-json/src/storageV2.mts | 431 + packages/flatpack-json/src/stringTable.mts | 139 + packages/flatpack-json/src/types.mts | 4 +- packages/flatpack-json/src/unpack.mts | 7 +- 19 files changed, 14850 insertions(+), 10390 deletions(-) create mode 100644 packages/flatpack-json/src/CompactStorage.mts create mode 100644 packages/flatpack-json/src/__snapshots__/storageV1.test.mts.snap create mode 100644 packages/flatpack-json/src/__snapshots__/storageV2_fileList.data.json create mode 100644 packages/flatpack-json/src/__snapshots__/storageV2_fileList.json create mode 100644 packages/flatpack-json/src/__snapshots__/storageV2_fileList.jsonc create mode 100644 packages/flatpack-json/src/__snapshots__/storageV2_fileObjects.data.json create mode 100644 packages/flatpack-json/src/__snapshots__/storageV2_fileObjects.json create mode 100644 packages/flatpack-json/src/__snapshots__/storageV2_fileObjects.jsonc create mode 100644 packages/flatpack-json/src/storageV1.mts create mode 100644 packages/flatpack-json/src/storageV1.test.mts create mode 100644 packages/flatpack-json/src/storageV2.mts create mode 100644 packages/flatpack-json/src/stringTable.mts diff --git a/packages/flatpack-json/fixtures/.npm-packages-info-v2.json b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json index b53a37582b5b..87d0fd123795 100644 --- a/packages/flatpack-json/fixtures/.npm-packages-info-v2.json +++ b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json @@ -1,2686 +1,2696 @@ [ "Flatpack JSON v2", -[128,"eslint","typescript","mocha","prettier","@types/node","react","rimraf","jest","husky","eslint-plugin-import", -"@babel/core","eslint-config-prettier","chai","rollup","nyc","semver","webpack","lint-staged", -"@typescript-eslint/parser","chalk","@babel/preset-env","@typescript-eslint/eslint-plugin","lodash","css", -"eslint-plugin-prettier","cross-env","sinon","glob","@types/jest","vitest","html","gulp","ts-node","xo","react-dom", -"debug","cli","postcss","tape","fs-extra","express","documentation","c8","tslib","javascript","backend","@types/react", -"@eslint/js","@commitlint/cli","@babel/cli","ava","framework","frontend","grunt","globals","coveralls","ts-jest", -"commander","browserify","async","testing","@commitlint/config-conventional","@rollup/plugin-node-resolve", -"eslint-plugin-react","npm-run-all","istanbul","eslint-plugin-promise","gulpplugin","@types/mocha","vinyl","through2", -"mkdirp","parser","vue","test","eslint-plugin-node","sass","karma","jsdom","@rollup/plugin-commonjs","tsd","should", -"typescript-eslint","eslint-config-standard","tap","babel-jest","@types/react-dom","minimist","esbuild","@babel/runtime", -"browser","webpack-cli","minimatch","babel-eslint","mobile","yargs","standard","babel-loader","api","markdown","js-yaml", -"ui","@vitest/coverage-v8","vite","http","json","plugin","react-component","@types/chai","benchmark","web","uglify-js", -"request","generator","eslint-plugin-n","bluebird","jshint","execa","chokidar","semantic-release","prop-types", -"@testing-library/react","uuid","typedoc","supertest","file","components", -"resolve","component","source-map","eslint-plugin-standard","util","unified","standard-version","colors", -"@babel/preset-react","@types/semver","strip-ansi","karma-chrome-launcher","@babel/preset-typescript","node", -"@types/lodash","plugin-error","css-loader","eslint-plugin-jest","source-map-support","remark-cli", -"eslint-plugin-jsx-a11y","open","eslint-plugin-unicorn","del","codecov","tsx","style-loader","@testing-library/jest-dom", -"tmp","puppeteer","npm","core-js","autoprefixer","@babel/eslint-parser","@types/debug","string","picocolors","parse", -"jsdoc","grunt-cli","body-parser","babel-core","webpack-dev-server","tsup","promise","@babel/plugin-transform-runtime", -"terminal","terser","jest-environment-jsdom","grunt-contrib-jshint","@babel/register","stylelint","proxyquire", -"eslint-plugin-jsdoc","babel-cli","text","front-end","@types/fs-extra","sinon-chai","safe-publish-latest","node-fetch", -"karma-mocha","eslint-plugin-react-hooks","eslint-config-airbnb-base", -"angular","ajv","console","url","tslint","readable-stream","nock","jasmine","inquirer","axios","utility", -"@rollup/plugin-babel","@rollup/plugin-terser","ws","globby","diff","acorn","server","type-fest","ts-loader", -"karma-firefox-launcher","in-publish","eslint-plugin-markdown","dotenv","@babel/plugin-proposal-class-properties","lint", -"postcss-plugin","which","svelte","markdown-it","less","connect","color","style","rollup-plugin-terser","minify", -"marked","fast-glob","cross-spawn","@rollup/plugin-json","@rollup/plugin-replace","type-coverage","react-native", -"pre-commit","moment","del-cli","cheerio","@ljharb/eslint-config","ansi","next","object-assign","grunt-contrib-clean", -"chai-as-promised","stream","@types/hast","underscore","path","jquery","handlebars","eslint-import-resolver-typescript", -"@swc/core","gruntplugin","shell","dom", -"svg","@types/express","zod","yaml","remark-preset-wooorm","mime","memfs","log","fancy-log","eslint-plugin-mocha", -"eslint-config-airbnb","classnames","babel-preset-env","@types/sinon","js","template","shelljs","rollup-plugin-babel", -"remark","npmignore","json5","file-loader","babel-plugin-add-module-exports","auto-changelog","check","image","ios", -"@eslint/eslintrc","undici","slash","react-test-renderer","process","nodemon","concurrently","ckeditor5","babel-runtime", -"babel","assert","command-line","@semantic-release/git","@semantic-release/changelog","magic-string", -"cz-conventional-changelog","buffer","app","rollup-plugin-typescript2","grunt-contrib-watch","fs","clsx","browserslist", -"@babel/plugin-proposal-object-rest-spread","mock","command","@stylistic/eslint-plugin","@arethetypeswrong/cli", -"tinyglobby","tar","gulp-sourcemaps","gulp-rename","concat-stream","coffeescript","@testing-library/user-event","schema", -"@rollup/plugin-typescript", -"@biomejs/biome","size-limit","redux","picomatch","ora","graceful-fs","deepmerge","canvas","babel-preset-es2015", -"@types/estree","@testing-library/dom","@ckeditor/ckeditor5-core","middleware","android","eslintplugin","nodejs","input", -"client","ecmascript","es6","unist-util-visit","rollup-plugin-node-resolve","regenerator-runtime","npm-run-all2", -"mime-types","load-grunt-tasks","html-webpack-plugin","grunt-contrib-uglify","gh-pages","find-up","expect","ejs", -"cookie","config","code","babel-plugin-istanbul","@ckeditor/ckeditor5-utils","@playwright/test","module","@types/eslint", -"ast","progress","micromatch","gulp-util","gulp-mocha","grunt-contrib-nodeunit","@changesets/cli","logging", -"eslint-plugin","library","modules","tsdown","tempy","release-it","rehype","qunit","mongodb","mini-css-extract-plugin", -"jasmine-core","highlight.js","graphql","esm","cssnano","cors", -"compression","lodash-modularized","database","git","unit","syntax","docs","@babel/plugin-transform-modules-commonjs", -"terser-webpack-plugin","stylus","string-width","shx","serve-static","prompts","playwright","nextjs","karma-jasmine", -"https","got","cosmiconfig","conventional-changelog-cli","directory","object","require","@types/mdast","validation", -"rest","@types/js-yaml","editor","@types/yargs","touch","rollup-plugin-dts","requirejs","np","karma-mocha-reporter", -"http-server","flow-bin","expect.js","events","event-stream","escape-string-regexp","cspell","@ckeditor/ckeditor5-ui", -"@babel/parser","hast","stringify","es2015","tty","scss","cache","router","design","ts","validator","url-loader", -"react-is","prismjs","pretty-quick","lru-cache","koa","extend","enzyme","camelcase","babel-register", -"@ckeditor/ckeditor5-engine","karma-plugin","data","package","convert","node.js","@types/ws","unicode","runner", -"entities","@types/glob","publint","through","supports-color","sass-loader","rollup-plugin-commonjs","qs", -"postcss-value-parser","nopt","meow","lodash-es","ignore","iconv-lite","electron","convert-source-map","common-tags", -"coffee-script","bytes","bootstrap","ansi-colors","@microsoft/api-extractor","@babel/types","@babel/polyfill","promises", -"escape","vfile","native","animation","github-slugger","@eslint/compat","safe-buffer","rxjs","prompt","preact", -"postcss-loader","path-exists","merge","kleur","jest-cli","htmlparser2","get-stream","get-port","eslint-plugin-flowtype", -"escape-html","cypress","commitizen","ci-info","unist","xml","transform","fast","validate","encoding","match", -"web framework","@rollup/plugin-alias","@eslint/markdown","es-toolkit","reactjs","@types/webpack","yargs-parser", -"webpack-merge","webpack-bundle-analyzer","remark-gfm","q","pretty-bytes","mustache","markdownlint-cli","karma-webpack", -"jiti","inherits","immutable","gulp-eslint","grunt-eslint","grunt-contrib-copy","figures","dedent","copy-webpack-plugin", -"clone","@vitejs/plugin-react","@babel/code-frame","linter","type","compress","performance","tdd","automation","swagger", -"form","generate","styles","polyfill","format","xml2js","winston","vinyl-sourcemaps-apply","vinyl-fs","tshy","tap-spec", -"tailwindcss","stylelint-config-standard","react-router-dom","postcss-selector-parser","postcss-import","pluralize", -"path-to-regexp","p-map","optimist","mysql","ms","mock-fs","is-ci","grunt-bump","github","eslint-plugin-eslint-plugin", -"enquirer","dayjs","conventional-changelog", -"clean-css","@babel/traverse","hast-util","png","optimize","checker","@semantic-release/npm","eslint-config-webpack", -"formatting","html5","@types/jsdom","args","time","tool","@ckeditor/ckeditor5-icons","bdd","preprocessor","compiler", -"watch","warning","update-notifier","temp","svgo","strip-json-comments","simple-git","remark-parse","reflect-metadata", -"read","proxy","pg","pathe","parse5","opener","object.assign","node-gyp","mocha-lcov-reporter","karma-coverage","jscs", -"http-proxy","gulp-babel","grunt-contrib-connect","espree","cpy-cli","cookie-parser","babel-polyfill", -"@ckeditor/ckeditor5-typing","@babel/plugin-proposal-decorators","@types/picomatch","gulpfriendly","files","remove", -"error","import","await","find","simple","w3c","@types/json-schema","@types/micromatch","types","responsive","pretty", -"xterm","schema-utils", -"rollup-plugin-visualizer","resolve-from","ramda","pug","portfinder","phantomjs-prebuilt","nanoid","log-symbols", -"karma-sourcemap-loader","jsonc-parser","json-schema","is","http-errors","gulp-uglify","gulp-concat","grunt-npm", -"grunt-contrib-concat","form-data","delay","crypto","copyfiles","cli-table3","@sinonjs/fake-timers","version", -"@types/tape","compile","build","security","detect","copy","array","colour","shim","@size-limit/preset-small-lib", -"utils","tinyhttp","query","@types/unist","doc","layout","@types/uuid","openapi","hooks","authentication","development", -"dependencies","yarn","tree-kill","superagent","sharp","redis","react-transition-group","react-refresh","raw-loader", -"raf","pretty-format","postcss-cli","path-browserify","once","nodeunit","morgan","microbundle","karma-spec-reporter", -"karma-chai", -"invariant","html-entities","hasown","gulp-format-md","gray-matter","fresh","eslint-doc-generator","bindings", -"babel-preset-react","@octokit/rest","@nx/devkit","@jest/types","rollup-plugin","publish","db","filter","search", -"optimise","windows","parsing","cli-app","@types/minimist","rgb","functional","@rollup/pluginutils","@types/babel__core", -"@npmcli/template-oss","@npmcli/eslint-config","@types/chai-as-promised","TypeScript","table","@types/compression", -"@types/tmp","@semantic-release/github","logger","@types/benchmark","templates","icon","xtend","xhr","watchify","walk", -"storybook","slugify","sirv","shell-quote","rehype-stringify","parseurl","ncp","make-dir","loader-utils", -"karma-rollup-preprocessor","joi","install","ini","https-proxy-agent","hast-util-to-string","filesize", -"eslint-plugin-security","eslint-plugin-html","csstype","babel-preset-airbnb","aud","ansi-styles", -"airtap","@eslint-community/eslint-utils","@babel/helper-plugin-utils","realtime","recursive","binary","map","delete", -"minifier","encode","auth","loader","changelog","@babel/node","environment","event","CLI","wait","task","coverage", -"@types/prompts","wysiwyg","@popperjs/core","neostandard","whatwg-fetch","vitepress","typedoc-plugin-markdown", -"tsconfig-paths","ts-morph","sqlite3","split","source-map-js","socket.io","serve","send","rollup-plugin-uglify", -"remark-rehype","postcss-preset-env","pngjs","outdent","orm","nan","msw","knip","karma-sauce-launcher","jsonwebtoken", -"jsonschema","jsdoc-to-markdown","jest-environment-node","indent-string","hosted-git-info","gulp-jshint","gulp-header", -"grunt-shell","father","expect-type","estree-walker","eslint-plugin-vue","eslint-plugin-regexp","eslint-plugin-babel", -"eslint-config-gulp","enhanced-resolve","deep-equal","csv", -"copy-to-clipboard","babelify","babel-plugin-transform-react-remove-prop-types", -"babel-plugin-transform-object-rest-spread","arg","ajv-formats","after","@typescript-eslint/utils","webdriver","mdast", -"postgres","@types/minimatch","render","@semantic-release/commit-analyzer","ES6","vite-plugin-dts", -"@vitest/eslint-plugin","name","random","serialize","parallel","value","option","zip","static","integration", -"@vue/test-utils","eslint-plugin-simple-import-sort","commonjs","@release-it/conventional-changelog","builder","shiki", -"remark-frontmatter","fetch","jsx","ui-kit","ascii","term","rollup-plugin-copy","forms","@types/graceful-fs","vue3", -"@types/markdown-it","rich text","ckeditor 5","@web/test-runner","website","@babel/generator","wrap-ansi","websocket", -"vue-router","vinyl-source-stream","toml","text-table","tar-stream","sugarss","styled-components","split2", -"source-map-loader","signal-exit","rollup-pluginutils","rollup-plugin-replace","rollup-plugin-license", -"rollup-plugin-cleanup", -"replace-ext","react-router","react-redux","pretty-ms","prettier-plugin-packagejson","postcss-scss", -"postcss-load-config","phantomjs","p-event","oauth","node-addon-api","moment-timezone","mdast-util-from-markdown", -"karma-safari-launcher","karma-browserify","json-loader","jest-util","jest-diff","is-wsl","hono","gulp-plugin-extras", -"grunt-contrib-internal","global","extract-text-webpack-plugin","express-session","exit","etag","eslint-plugin-compat", -"content-type","cac","babylon","assume","archiver","ansi-escapes","@npmcli/arborist","rehype-plugin", -"react-native-component","selenium","tree","memory","devlop","@commitlint/config-angular","uglify","utilities","streams", -"sanitize","folder","extract","@webpack-contrib/eslint-config-webpack","@types/cross-spawn","reporter","pattern","regex", -"@vitejs/plugin-vue","@storybook/react","a11y","store","mui","@types/supertest","@types/node-fetch","date", -"@swc/helpers","yeoman","scaffold", -"@vitest/coverage-istanbul","icons","@babel/plugin-external-helpers","@types/prismjs","@vitest/ui","@stackblitz/sdk", -"editing","ckeditor","comments","md","simple-git-hooks","@babel/plugin-transform-flow-strip-types","@types/prop-types", -"material design","@babel/plugin-syntax-jsx","rolldown","zuul","yauzl","wordwrap","vue-eslint-parser","vary","type-is", -"scheduler","run-sequence","rollup-plugin-buble","regenerate","queue","querystring","punycode","proc-log","plur", -"pixelmatch","on-finished","nunjucks","npm-package-arg","mocha-junit-reporter","markdownlint","markdown-toc", -"markdown-it-anchor","map-stream","jshint-stylish","js-beautify","js-base64","is-stream","immer","identity-obj-proxy", -"hoist-non-react-statics","gulp-replace","gulp-istanbul","gulp-clean-css","grunt-mocha-test","grunt-karma", -"grunt-browserify","graphql-tag","formidable","for-each","finalhandler","fast-deep-equal","eventemitter3", -"eslint-visitor-keys","eslint-config-airbnb-typescript","es6-promise","enzyme-adapter-react-16","doxdox", -"dotenv-expand","doctoc","cordova","content-disposition","co","cli-table","call-bind","browser-sync", -"babel-plugin-transform-runtime","aws-sdk","antd","@nx/js","@ckeditor/ckeditor5-image", -"@ckeditor/ckeditor5-cloud-services","@babel/plugin-proposal-export-namespace-from","karma-launcher","@types/jasmine", -"application","jpeg","commonmark","local","exec","replace","@typescript/native-preview","code style","quality","es5", -"entity","enforce","upload","templating","character","property","@swc/jest","@semantic-release/release-notes-generator", -"engine","bash","strip","argument","line","pdf","parents","postgresql","view","@babel/preset-flow","storage","s3", -"@sindresorhus/tsconfig","assertion","cloud","restful","regexp","findup","whatwg","unist-util-visit-parents", -"@vitest/browser","network","@storybook/addon-links","spec","Monorepo","bundle","configuration","font","API", -"@emotion/react","@types/mime-types","tests","properties","lunr","tinyexec","toolkit", -"@babel/plugin-transform-typescript","@babel/plugin-transform-class-properties","@babel/helper-module-imports", -"@types/resolve","@jridgewell/trace-mapping","react-error-boundary","ua-parser-js","walk-sync","vue-loader","uvu", -"uglifyjs-webpack-plugin","tough-cookie","tinycolor2","tinybench","three","start-server-and-test", -"space-separated-tokens","server-destroy","serve-index","serialize-javascript","selenium-webdriver","sax", -"rollup-plugin-json","resize-observer-polyfill","remarkable","react-copy-to-clipboard","range-parser", -"prettier-plugin-organize-imports","pkg-up","pify","p-queue","object.entries","npm-package-json-lint","node-forge", -"mongoose","mockdate","methods","merge-stream","memory-fs","mdast-util-to-hast","md5","material-ui","markdown-table", -"markdown-it-emoji","lodash.clonedeep","lockfile-lint","livereload","leven","less-loader","lab","karma-ie-launcher", -"JSONStream","json-stringify-safe","jsesc","jest-watch-typeahead","jest-junit","isarray", -"is-plain-object","is-plain-obj","is-glob","inflection","i18next","i18n","he","hastscript","gzip-size","gulp-if", -"gulp-filter","grunt-conventional-changelog","fastify","extract-zip","evalmd","estraverse","esprima","eslint-scope", -"eslint-plugin-tsdoc","each","dtslint","depd","date-fns","d3","css-tree","cron","configstore","commitlint","colorette", -"codemirror","clipboard","caniuse-lite","buble","bower","beautify-benchmark","babel-preset-stage-0", -"babel-plugin-module-resolver","arrify","ansi-regex","accepts","@ckeditor/ckeditor5-list","@ckeditor/ckeditor5-heading", -"@ckeditor/ckeditor5-clipboard","@babel/plugin-syntax-dynamic-import","@babel/plugin-proposal-export-default-from", -"@vuepress/types","slider","headless","desktop","@types/diff","manager","vector","@types/rimraf","file system", -"readable","size","gif","@eslint-community/eslint-plugin-eslint-comments","nosql","semaphore","drag","structure","cmd", -"cross-platform", -"mongo","env","tag","clean","@types/prettier","child","deep","rollup-plugin-esbuild","minification","serve-handler", -"function","aws","@colors/colors","push","@babel/plugin-transform-object-assign", -"@babel/plugin-proposal-optional-chaining","256","saucelabs","service","background","css3","angularjs","vuejs", -"@jest/globals","@opentelemetry/api","patch-package","webdriverio","reference","@hono/node-server","fdir", -"rollup-plugin-postcss","@xmldom/xmldom","accessibility","res","argv","Node","Web","JSON","formatter","state","list", -"@inquirer/prompts","customization","uischema","renderengine","jsonforms","stdout","menu","esbuild-loader","css-in-js", -"babel-plugin-macros","sqlite","@aws-sdk/client-s3","tools","@types/sinon-chai","yup","contentEditable", -"@babel/plugin-transform-react-jsx","@web/test-runner-playwright","stylesheet","babel-plugin","transpiler", -"@types/lodash-es","@types/enzyme", -"astro","hast-util-from-html","xss","xmlbuilder","web3","validate-npm-package-name","underscore.string","unbuild", -"uglify-es","tslint-config-prettier","tar-fs","tapable","tailwind","strip-bom","statuses","socket.io-client","rsvp", -"rollup-plugin-typescript","rollup-plugin-sourcemaps","rollup-plugin-node-globals","recast","readline","react-dev-utils", -"rc-util","pump","plist","pinst","pino","path-is-absolute","pacote","opn","open-cli","object-inspect","nx","nprogress", -"node-sass","monitor","mobx","markdown-it-container","lodash.merge","karma-sinon","jest-worker","jackspeak", -"has-symbols","happy-dom","gulp-less","grunt-jscs","get-tsconfig","get-stdin","flux","fixturify","file-type","faucet", -"fast-check","eslint-plugin-jsonc","eslint-config-xo","eslint-config-react-app","eslint-config-oclif","es-check", -"encodeurl","download","detect-indent","dependency-check","css-minimizer-webpack-plugin", -"cookie-signature","conventional-changelog-conventionalcommits","consola","bunyan","boxen","babel-types", -"babel-plugin-transform-es2015-modules-commonjs","babel-plugin-external-helpers","axe-core","argparse", -"abort-controller","@npmcli/run-script","@jsonforms/core","@istanbuljs/nyc-config-typescript", -"@ckeditor/ckeditor5-widget","@ckeditor/ckeditor5-paragraph","@ckeditor/ckeditor5-link","decap-cms","web publishing", -"static site","antora","gallery","carousel","webdriverjs","runtime","scroll","reload","link","package.json","chrome", -"element","virtual","safe","@ungap/structured-clone","inline","make","concat","@modelcontextprotocol/sdk","parent","jpg", -"stub","pkg-pr-new","bin","bumpp","rules","hint","verify","eslintconfig","@ljharb/tsconfig","oxlint", -"safe-stable-stringify","@types/vinyl","unist-builder","gitlab","dev","collection","filesystem","is-path-inside", -"compare","batch","visualization","mocks","ponyfill","gzip", -"array-back","select","rm","std-env","@faker-js/faker","converter","pretty-hrtime","es2017","decode","number", -"asynchronous","hash","ajax","azure","http2","@types/tar","vue-tsc","job","archive","content","flags","react-ui","uikit", -"particle","jest-mock","aria-query","kcd-scripts","jest-image-snapshot","@types/warning","end-to-end","e2e", -"@size-limit/file","@storybook/addon-actions","Backend","@npmcli/package-json","@types/cors","modal","theme","stdin", -"interface","google","@types/ms","@typescript-eslint/types","installed-check","lightningcss","read-package-up", -"variables","custom","selector","sass-embedded","os-name","real-time","ot","operational transformation", -"package-manager-detector","markdown-it-attrs","luxon","jwt","scaffolding","core","@types/react-transition-group", -"@vitest/browser-playwright","tsparticles","icss-utils", -"hast-util-is-element","comma-separated-tokens","@mui/utils","zustand","anser","@testing-library/react-hooks", -"yeoman-generator","webpack-sources","vue-template-compiler","vows","untildify","uiw","uid-safe","typings","tiny-lr", -"time-grunt","test-runner","stylelint-order","stream-assert","ssri","shallowequal","seedrandom","rewire", -"react-lifecycles-compat","rc","raw-body","qunitjs","qrcode-terminal","property-information","power-assert", -"postcss-safe-parser","postcss-nested","postcss-flexbugs-fixes","polished","performance-now","os","object-keys", -"normalize-path","node-notifier","node-html-parser","mz","multimatch","multer","mockery","mock-stdin","mock-require", -"mlly","micromark","matcha","loose-envify","loglevel","log-update","lodash.template","lerna","karma-detect-browsers", -"karma-browserstack-launcher","jest-canvas-mock","ionic","html-to-text","html-minifier","html-loader","history", -"hast-util-to-html","hallmark", -"gulp-typescript","gulp-sass","gulp-postcss","grunt-simple-mocha","grunt-conventional-github-releaser", -"grunt-auto-release","glob-parent","follow-redirects","flat","firebase","findup-sync","find-cache-dir", -"eslint-remote-tester","eslint-plugin-testing-library","eslint-plugin-eslint-comments","eslint-config-xo-lass", -"eslint-config-unjs","es5-shim","es5-ext","es-value-fixtures","ember-cli","eclint","duplexer","dumi","dot","docco", -"dirty-chai","depcheck","connect-history-api-fallback","columnify","cli-color","changelogen","change-case","busboy", -"bundle-collapser","builtin-modules","brfs","bcrypt","basic-auth","babel-template", -"babel-plugin-transform-class-properties","async-retry","async-listen","apidoc","ansis","acorn-walk", -"@sveltejs/vite-plugin-svelte","@ckeditor/ckeditor5-table","@ckeditor/ckeditor5-paste-from-office", -"@ckeditor/ckeditor5-media-embed","@ckeditor/ckeditor5-indent","@ckeditor/ckeditor5-essentials", -"@ckeditor/ckeditor5-easy-image","@ckeditor/ckeditor5-ckfinder","@ckeditor/ckeditor5-ckbox", -"@ckeditor/ckeditor5-block-quote","@ckeditor/ckeditor5-basic-styles","@ckeditor/ckeditor5-autoformat", -"@ckeditor/ckeditor5-adapter-ckfinder","es-module-lexer","tslint-eslint-rules","selectors","flow-copy-source", -"@types/selenium-webdriver", -"monitoring","microservice","document","word","make-fetch-happen","phone","interactive","internationalization","next.js", -"agent","attribute","mdast-util-mdx-jsx","@types/ungap__structured-clone","streaming","sprite","linux","min","minipass", -"get","fake","deployment","deploy","tap-parser","sanitization","from","@types/babel__code-frame", -"eslint-plugin-import-x","@changesets/changelog-github","export","doctrine","expression","has","sort-package-json", -"installer","editorconfig","proper-lockfile","expand","drop","JavaScript","all-contributors-cli","@vue/compiler-sfc", -"key","assign","eslint-plugin-yml","arguments","sort","pad","optimisation","optimizer","spawn","@types/bun","qrcode", -"cookies","defu","emit","normalize","multiline","language","@types/react-is","domhandler","pkg-types","graphics", -"call-bound","es", -"equal","acorn-jsx","broccoli-plugin","asset","promises-aplus","write","hmr","platform","di","model", -"babel-plugin-transform-replace-object-assign","memoizee","package-json","commit","babel-minify","cli-progress", -"env-paths","remark-stringify","client-side","flow","nestjs","blockchain","@types/pluralize","estree-util-to-js", -"react.js","uiw-react","extension","jose","animated","webdesign","web-design","particles.ts","particles-ts", -"particles-js","xparticles","jsparticles","particles","particles.js","password","img","images","istanbul-lib-report", -"web components","sade","xhr-mock","lz-string","jest-axe","@types/jquery","@types/jest-axe","web-components", -"@vueuse/core","@storybook/addon-essentials","upath","inspect","grid","remark-toc","remark-github","management", -"command line","oclif","Cypress","Jest","React","Angular", -"readme","spy","prism-react-renderer","notification","@jest/transform","@swc/cli","wrap","confirm","base","ask", -"@ctrl/tinycolor","@types/jsonwebtoken","REST","@wojtekmaj/enzyme-adapter-react-17","stylis","sitemap","@types/shelljs", -"bundlewatch","decache","collaborative","collaboration","p-limit","mri","@babel/runtime-corejs3", -"@typescript-eslint/scope-manager","stringifier","@types/bytes","@sindresorhus/slugify","harmony", -"@jridgewell/remapping","import-meta-resolve","ant","metro-react-native-babel-preset","material","@standard-schema/spec", -"@jridgewell/sourcemap-codec","@types/react-copy-to-clipboard","@types/react-test-renderer","borp","@inquirer/type", -"pinia","@mui/types","vuepress","ink-docstrap","enzyme-to-json","csso","css.escape","browserstack","yo","xlsx", -"write-file-atomic","winston-transport","webpack-node-externals","webpack-dev-middleware","wd","vuex","vinyl-buffer", -"validate-commit-msg","utf8","unzip","throttle-debounce","testdouble","systemjs","stylus-loader", -"snazzy","serve-favicon","sanitize-html","run-series","rollup-plugin-node-builtins","rfdc","request-promise", -"replace-in-file","remark-preset-github","rehype-autolink-headings","read-pkg","react-intl","random-words","protobufjs", -"promises-aplus-tests","promise-polyfill","postcss-custom-properties","passport","pako","object-hash","oas","npmcli", -"npm-registry-fetch","npm-packlist","nodemailer","needle","mysql2","mssql","mock-property","mocha-headless-chrome", -"memorystream","lws","lodash.throttle","lodash.memoize","lodash.isequal","lodash.defaults","lodash.camelcase","listr2", -"karma-qunit","karma-edge-launcher","jest-resolve","jade","itwcw-package-analytics","isobject","is-promise", -"is-installed-globally","ionicons","import-local","image-size","hoek","hast-util-select","hast-util-raw", -"gulp-autoprefixer","grunt-saucelabs","get-package-type","gaze","fuzzy","fuse.js","functions-have-names","fs-jetpack", -"front-matter","fork-ts-checker-webpack-plugin","fixpack","figlet", -"fbjs","fast-xml-parser","eventemitter2","eslint-plugin-es5","eslint-loader","eslint-config-semistandard","es6-shim", -"envinfo","end-of-stream","emotion","dom-helpers","docusaurus","detect-port","deep-extend","decamelize","debounce", -"dateformat","dargs","cucumber","crypto-browserify","cli-cursor","clear-module","clean-webpack-plugin", -"case-sensitive-paths-webpack-plugin","buffer-equal","bson","broccoli-test-helper","blanket","base64-js", -"babel-preset-react-app","babel-plugin-transform-es2015-template-literals","babel-plugin-transform-es2015-block-scoping", -"babel-plugin-lodash","babel-plugin-dynamic-import-node","babel-helper-fixtures","array.prototype.flatmap", -"@vue/eslint-config-typescript","@microsoft/tsdoc","@emotion/styled","@csstools/css-tokenizer", -"@csstools/css-parser-algorithms","@ckeditor/ckeditor5-upload","antora-component","tablet","netlify","lightbox", -"serverless","@types/serve-handler","mvc","watchpack","remark-plugin","abstract","react-native-builder-bob", -"use-sync-external-store","hot","csswg","graceful","concurrency","resolve.exports","registry","fastest-levenshtein", -"trim","unix","clang-format", -"stacktrace-parser","pipe","rule","decorator","mongodb-memory-server","micro","ipaddr.js","dir","micromark-util-types", -"emoji","is-docker","monorepo","sql","resize","vanilla","driver","cluster","routing","l10n","screenshot","vdom","zwitch", -"unist-util-position","neo-async","retina","postcss-runner","csslint","connect-livereload","wget","curl","globbing", -"wildcard","chai-string","tsconfig","errors","wrapper","rollup-plugin-serve","walking","look","worker","detect-libc", -"dequal","setimmediate","protocol","human","babel-plugin-transform-define","@vercel/ncc","kind-of","authn", -"eslint-remote-tester-repositories","@webpack-contrib/defaults","confusing-browser-globals","es2016","extensions", -"tmp-promise","exe","@types/through2","@eslint/core","ts-jest-resolver","filenamify","class","bitbucket","cms","docker", -"walk-back","Node.js","@eslint/json","packages","unused","cleanup","prop","keys","obj","jsonc-eslint-parser","throttle", -"executable","minimize","rolldown-plugin-dts","@swc-node/register","@mdn/browser-compat-data","cpy","load","sourcemap", -"tempfile","conventional","cson","indent","options","column","codecov.io","width","spinner","address","case","caching", -"multipart","@rollup/plugin-buble","browsers","sync","box","marked-terminal","foreach","addon","websockets", -"microservices","speed","injection","dependency","crypt","encryption","node-gyp-build","base64","grunt-template", -"@babel/plugin-proposal-nullish-coalescing-operator","es7","conventional-github-releaser","private","amazon","matcher", -"automatic","lockfile","audit","callback","object-is","flatten","lambda","appium","cursor", -"codes","jamstack","zx","@types/hosted-git-info","remark-directive","mdast-util-to-string","html2sketch","pkgroll", -"@tsconfig/node20","@rolldown/pluginutils","openapi-types","natural-compare","canvas-confetti","fireworksjs", -"confettijs","confetti-js","fireworks-js","fireworks","confetti","preactjs","particleground","angular-particles", -"ngx-particles","vue-particles","react-particles","react-particles.js","react-particles-js","particles-bg-vue", -"particles-bg","particlesjs","net","istanbul-reports","istanbul-lib-coverage","patterns","obug","mrmime","devalue", -"eslint-config","remark-preset-lint-recommended","dekko","@types/qs","scroll-into-view-if-needed","rc-motion", -"styleguide","locate-character","@storybook/react-webpack5","back-end","specification","req","@oclif/prettier-config", -"Testing","Front-end","Nest","gfm","cacache","git-url-parse","@mdx-js/mdx","helper","mdx","highlight","idle","busy", -"loading","strip-indent", -"renderer","snapshot","facebook","@jest/test-utils","webapp","@ionic/prettier-config","@ionic/eslint-config","zsh", -"question","promptly","iterm","answer","superstruct","comment-parser","@semantic-release/exec","variable","popup", -"dropdown","tooltip","@types/marked","dot-prop","turbo","@types/github-slugger","@types/sinonjs__fake-timers", -"string-argv","error-stack-parser","tokenizer","rollup-plugin-istanbul","karma-jasmine-html-reporter", -"opencollective-postinstall","color-convert","@ckeditor/ckeditor5-enter","@babel/plugin-transform-template-literals", -"@babel/plugin-transform-property-literals","@babel/plugin-syntax-import-assertions", -"@babel/plugin-transform-block-scoping","@babel/helper-plugin-test-runner","classes","transpile","@types/react-native", -"jsonml.js","sdk","stylelint-config-recommended","@types/classnames","@types/inquirer","oxfmt","valibot", -"hast-util-whitespace","@svgr/core","@pmmmwh/react-refresh-webpack-plugin","@next/env","synckit","wait-on","swr","yosay", -"yn","yamljs","xpath","xmlhttprequest","word-wrap","when","vue-style-loader","verror","vercel", -"utils-merge","user","url-join","typeorm","traverse","tildify","testcontainers","style-to-js","semistandard", -"sanitize-filename","retry","rehype-parse","recursive-readdir","rechoir","read-pkg-up","react-hot-loader","rc-tooltip", -"protractor","posthtml","postcss-modules-local-by-default","postcss-custom-media","pkg-dir","p-timeout", -"optimize-css-assets-webpack-plugin","npm-run-path","normalize.css","node.extend","mobx-react","method-override", -"memoize-one","make-node","long","log4js","lodash.debounce","lodash.assign","listr","lilconfig","latest-version", -"jasmine-node","jake","ioredis","interpret","inferno","import-fresh","imagemin","http-status-codes","hbs", -"hast-util-to-estree","hash-sum","hapi","gulp-plumber","gulp-load-plugins","gulp-clean","gts","grunt-contrib-cssmin", -"fsevents","faker","eslint-plugin-vitest","eslint-plugin-ava","eslint-config-oclif-typescript","eslint-config-google", -"envify","deep-eql","d3-scale", -"d3-array","csv-parse","csv-generate","cssesc","cross-fetch","create-react-class","connect-redis","cli-truncate","clear", -"child_process","chai-subset","chai-passport-strategy","bufferutil","broccoli-merge-trees","boom","bl","bignumber.js", -"backbone","babel-traverse","babel-plugin-transform-regenerator","babel-plugin-transform-async-to-generator", -"babel-plugin-syntax-jsx","babel-helper-plugin-test-runner","babel-generator","async-validator","apollo-link-http", -"apollo-client","apollo-cache-inmemory","adm-zip","@tsparticles/engine","@tinyhttp/app","@svgr/webpack", -"@reduxjs/toolkit","@oclif/core","@nx/eslint","@mswjs/interceptors","@microsoft/tsdoc-config","@inquirer/core", -"@emotion/css","@ant-design/web3-icons","@ant-design/web3-common","@angular/core","@angular/compiler-cli", -"@angular/compiler","netlify-cms","hex","apollo-link-context","@walletconnect/types","tsparticles-plugin","device", -"@phenomnomnominal/tsquery","@vue/devtools-api","@vue/shared","streamx","slideshow","jest-preset-stylelint", -"@polka/compression","empathic","@vitest/expect","tiny","clean-publish","string-hash","mouse","message", -"osx","spring","title","eslint-import-resolver-webpack","synchronous","vrsource-tslint-rules","gulp-clang-format", -"serialization","cssnano-utils","postcss-less","caniuse-api","postcss-reporter","npm-watch","pdfjs-dist","page", -"metadata","home","module-alias","script","run","mutate-fs","@types/ini","throat","fp","oauth2","@matteo.collina/tspl", -"postman","@types/proper-lockfile","@types/xml2js","@types/plist","then","dashboard","aws4","remark-preset-remcohaszing", -"ender","gulp-coveralls","reactive","ufo","mime-db","mdast-util-gfm","markdown-it-plugin","postcss-simple-vars", -"@types/which","sqlserver","math","update","defaults","stdlib","prettier-standard","oracledb","tedious","escalade", -"os-homedir","karma-preprocessor","current-module-paths","serial","@types/babel__traverse","@rspack/core", -"@types/escape-html","babel-plugin-annotate-pure-calls","braces","hybrid","@types/split2","@ionic/utils-fs", -"align","scalable","charset","iconv","localization","titleize","status","eslint-plugin-unused-imports","bunchee", -"rollup-plugin-polyfill-node","compressor","@types/source-map-support","abbrev","solid","typeof","grunt-contrib-qunit", -"yazl","stack","@types/fancy-log","vinyl-file","stream-combiner2","index","istanbul-coveralls","stat","gulp-plugin", -"spritesheet","spritesmith","preprocess","notify","report","grunt-istanbul","grunt-coveralls","hooker","site","uri", -"@sindresorhus/is","@types/yargs-parser","spreadsheet","typed","onetime","tcp","yeoman-assert","yeoman-test", -"monaco-editor","create","mkdir","mini-svg-data-uri","remote","tasks","ssh","devops","lightweight", -"rollup-plugin-livereload","nested","detect-newline","triple-beam","proxy-agent","@electric-sql/pglite","@types/request", -"google-auth-library","look-up","up","unicorn-magic","symbols", -"loader-runner","transformer","@types/node-forge","fork","is-in-ci","stream-spec","it-is","nano-spawn","@types/stylus", -"eslint-plugin-node-dependencies","eslint-import-resolver-node","@tsconfig/node16","style linter","style checker", -"standard style","policy","code standards","code linter","code checker","JavaScript Standard Style", -"eslint-config-xo-space","jslint","yorkie","characters","set","promisify","object.fromentries","object.values", -"ember-cli-dependency-checker","email","eslint-plugin-json","wonderful-fetch","bundler","setup","pkg","pack","gulp-tap", -"karma-sinon-chai","richtext","webpack-stream","repository","to-vfile","filepath","jsdoc3","@ffmpeg-installer/ffmpeg", -"productivity","stl","datastructure","range","timeout","time-span","in-range","rmdir","destroy","values", -"npm-package-json-lint-config-default","eslint-plugin-perfectionist","eslint-plugin-no-only-tests","d3-module","id", -"guid","tokens","CSS","cssnano-preset-default", -"webpack-plugin","postcss-modules-scope","postcss-modules-extract-imports","order","scale","crop","postcss-url", -"data-uri-to-buffer","ES2017","ES2015","move","transfer","source","normalize-package-data","eta","is-unicode-supported", -"settings","conf","buffer-from","brotli","deflate","on-headers","emitter","single","multi","chalk-template","growl", -"string-length","toggle","opts","ci","vfile-message","jsonlint","whatwg-mimetype","@rollup/plugin-inject","scule", -"chai-plugin","camel-case","foreground-child","byte","mv","@clack/prompts","names","baseline-browser-mapping", -"coffeeify","timers-browserify","stream-browserify","querystring-es3","string_decoder","duplexer2","defined", -"mocha-eslint","fs-tree-diff","heimdalljs","browserify-transform","@astrojs/check","future","d3-color","c++","c", -"global-modules","ansi-to-html","qunit-extras","authorization", -"esutils","babel-preset-flow","babel-plugin-transform-es2015-spread", -"babel-plugin-transform-es2015-shorthand-properties","babel-plugin-transform-es2015-parameters", -"babel-plugin-transform-es2015-destructuring","babel-plugin-transform-es2015-computed-properties", -"babel-plugin-transform-es2015-classes","babel-plugin-transform-es2015-arrow-functions","babel-plugin-tester", -"@babel/plugin-proposal-function-bind","eslint-config-babel","formdata-node","concurrent","temp-dir","prefix","change", -"@types/tap","asserts","has-strict-mode","es-abstract","define-properties","apm","@opentelemetry/sdk-trace-base", -"zen-observable","programmatic","@types/css-tree","mermaid","webpackbar","@vue/vue3-jest","sequence","component library", -"silent-error","get-caller-file","fullstack","negotiator","signal","git-repo-info","umi","sucrase", -"mdast-util-find-and-replace","file-system-cache","estree-util-visit","codesandbox","@umijs/utils","@umijs/core", -"@umijs/bundler-utils","ajv-keywords","babel-plugin-react-compiler","avif","webp","ast-types", -"@types/hoist-non-react-statics","estree","@typescript-eslint/typescript-estree","@typescript-eslint/rule-tester", -"mdast-util-mdx","@eslint-community/regexpp","header","rollup-plugin-filesize","istanbul-lib-source-maps","widget", -"collections","vite-plugin", -"@types/cookie","@svitejs/changesets-changelog-github-compact","@stylistic/eslint-plugin-js","@ava/typescript", -"@types/tinycolor2","vanilla-jsoneditor","stylelint-declaration-block-no-ignored-properties","remark-lint", -"react-fast-marquee","rc-tween-one","jest-puppeteer","fetch-jsonp","@types/jest-image-snapshot","rc-tree","rc-tabs", -"style guide","@storybook/icons","esbuild-register","is-reference","slice","@storybook/addon-interactions", -"eslint-plugin-storybook","interfaces","console-control-strings","gauge","babel-preset-minify","specs","specifications", -"stack-utils","otterhttp","esno","@types/supports-color","@types/pnpapi","@types/ejs","@oclif/test","@types/proxyquire", -"tcp-port-used","@zkochan/js-yaml","libnpm","ethereum","@headlessui/react","express-fileupload","strict-event-emitter", -"design system","@types/aws-lambda","@rushstack/heft","serializer","picker","indicator","mocking","jest-validate", -"@istanbuljs/schema","pwa","@rollup/plugin-virtual","inquire","answers","mute-stream","class-validator","boilerplate", -"popover","@floating-ui/dom","JSON-Schema","license-checker","@types/webpack-env", -"@types/styled-components","@types/lunr","@cypress/webpack-preprocessor","mark.js","@emotion/is-prop-valid", -"@emotion/cache","@emotion/serialize","@dnd-kit/utilities","@dnd-kit/sortable","@dnd-kit/core","@types/express-session", -"workerpool","selfsigned","threads","eslint-formatter-pretty","markdown-it-testgen","@types/markdown-it-attrs", -"ts-dedent","quick-lru","markdown-it-sup","chai-exclude","@types/progress","@types/luxon","has-ansi","vars","matches", -"clean-css-cli","@docsearch/js","polka","vue.js","@ckeditor/ckeditor5-undo","user interface", -"@fortawesome/fontawesome-free","transport","stylelint-config-standard-scss", -"@babel/plugin-transform-member-expression-literals","@babel/plugin-proposal-private-property-in-object", -"@babel/plugin-transform-private-methods","@babel/plugin-transform-arrow-functions","derequire", -"babel-plugin-polyfill-regenerator","babel-plugin-polyfill-corejs3","asyncapi","blog","@vue/server-renderer", -"markdown-it-abbr","@babel/helper-compilation-targets","@babel/helpers","@babel/helper-validator-identifier","js-tokens", -"@types/set-cookie-parser","set-cookie-parser","@ant-design/icons","react native","@ant-design/tools", -"eslint-plugin-cypress","react-draggable","sass-true","tsconfck","devDependencies","unplugin","css-what","@appium/types", -"@floating-ui/react", -"colord","@applitools/utils","widest-line","wait-for-expect","react-popper","react-fast-compare", -"postcss-modules-values","nth-check","inferno-vnode-flags","docsify-cli","docsify","color-string","client-only", -"@vuepress/shared-utils","@docusaurus/core","perfect-scrollbar","react-textarea-autosize","@enact/core", -"supports-hyperlinks","zone.js","webpack-manifest-plugin","webpack-hot-middleware","useragent","twitter", -"tribe-leaving-basket","traffic-carry-opinion","tinyspy","throw-did-darkness4","testcafe","tailwind-merge", -"swam-darkness-weak","svg-sprite","svelte-preprocess","svelte-check","surrounded-characteristic-or-rain", -"support-vessels-web3-vessels","supervisor","sun-grass-circle0","stylelint-scss","stock-independent-balloon", -"star-location","ssh2","sprintf-js","spirit-labor-cheese","speech-section-part-frozen","slug","slice-ansi", -"sky-buy-web3-rock","sink-rod-lamp","similar-cheese-loss","sick-typical-court7","sha1","serialport", -"science-knowledge-truth","rtlcss","resolve-url-loader","reselect","require-dir","remark-html","rehype-slug", -"react-toastify","react-styleguidist","react-intersection-observer","react-dnd-html5-backend", -"react-dnd","react-color","react-app-polyfill","publish-please","prettyjson","prettier-plugin-jsdoc","prepare-package", -"postcss-discard-comments","postcss-calc","political-plan-careful","pitch-somehow-earth-brave","phonegap", -"passport-strategy","outline-slowly","one-how-hand","observe-food-motion-hidden","numeral","nsp","npmlog","node-pty", -"node-emoji","nine-yes-merely6","nightwatch","nails-wild-interest-garden","mud-slowly-five3","mqtt", -"movie-obtain-tail-prepare","missing-sport-living","metalsmith","memcached","mdn-data","matter-view-web3-fence", -"markdown-to-jsx","many-favorite6","manifest","luck-rubber-do","lodash.uniq","level","lead-alike-web3-applied", -"late-dress-mail5","language-perfectly-blow-series","label-lungs-court4","koa-compose","known-css-properties","keyv", -"keypress","karma-phantomjs-launcher","jwt-decode","jsonfile","json-stable-stringify","js-cookie","jodit", -"isomorphic-fetch","ip","http-proxy-middleware","http-proxy-agent","html-escaper","html-dom-parser", -"hit-running-special8","hast-util-to-text","has-parts-ice-fact","hard-cool-rhythm-continued","gulp-watch","gulp-newer", -"gulp-flatten","grunt-sass","graph-these","gentle-party-other","extend-shallow","excellent-difficult-good", -"eslint-plugin-svelte","eslint-plugin-sonarjs","escodegen","difference-mile-pocket5","did-enter-lay","depth-clay-tax7", -"decompress","dance-you-thou","d3-shape","crypto-js","croner","cookie-session","command-line-usage","command-line-args", -"cli-spinners","cli-boxes","chance-able-necessary-bell","caught-brain-service0","careful-faster-dirty-matter", -"browserify-shim","brought-tried-whether8","broccoli-funnel","branch-camera-web3-organization","bn.js", -"blockchain-happily","blockchain-egg","blockchain-directly","blockchain-closely","blockchain-back1","blockchain-baby", -"blockchain-am5","bfj","between-cry-additional","best-valley2","best-lips-shoulder","believed-usually-greater-passage", -"bcryptjs","base-individual-comfortable-crop","babel-preset-stage-3","babel-preset-stage-2", -"babel-helper-vue-jsx-merge-props","atob","assert-plus","arrangement-tell-arrange","apple-transportation-web3-locate", -"app-root-path","amqplib","although-line-wall-corn","@storybook/addon-docs","@oclif/plugin-help","@mdx-js/react", -"@fortawesome/free-solid-svg-icons","@fortawesome/fontawesome-svg-core","@emotion/babel-plugin", -"@csstools/selector-specificity","@adobe/css-tools","@angular/forms","@angular-devkit/schematics", -"@applitools/logger","@types/pg","openai","ai","@trpc/server","expressive-code","@arethetypeswrong/core", -"visual regression","test automation","applitools","@theuiteam/lib-builder","@codecov/vite-plugin","react-native-svg", -"replacement","@walletconnect/utils","parcel-bundler","accessible","intlayer","fs-fixture","preview", -"@storybook/addon-a11y","katex","rollup-plugin-vue","@vitejs/plugin-react-swc","@types/webpack-bundle-analyzer", -"@yeoman/adapter","unminified-webpack-plugin","fflate","break","RFC-6455","chart","sauce-connect-launcher", -"@oxc-project/types","postcss-modules","strip-literal","viewer","sanitisation","user-agent","bail","hookable", -"material-design","eslint-config-xo-typescript","dprint","testcafe-reporter-xunit","es8","chroma-js","telegram","swipe", -"playwright-chromium","stylelint-plugin","utf-8-validate","korean","japanese","chinese","cjk","full","visual", -"@storybook/blocks","@discoveryjs/json-ext","bundle-require","@vitest/mocker","encrypt","favicon","fast-safe-stringify", -"p-retry","RxJS","Rx","server-only","async-sema","@types/ua-parser-js","@types/text-table", -"@types/express-serve-static-core","@types/babel__generator","sourcemap-validator","fast-copy","deep-copy","shutdown", -"cls-hooked","hast-util-from-html-isomorphic","snapshot-fixtures","eslint-config-remcohaszing","composition", -"tiny-invariant","toast","multiselect","premove","@react-native/eslint-config","transition","dialog","observer", -"eslint-plugin-jest-dom","live","form-validation","@babel/plugin-proposal-do-expressions","chai-spies","rc-test", -"@rc-component/father-plugin","words","curried","danger","exception","humanized","postcss-syntax","flex", -"@csstools/cascade-layer-name-parser","@types/caniuse-api","@csstools/utilities","strong-pm","pino-pretty","fastbench", -"babel-plugin-transform-inline-environment-variables","server-side","aria","ratelimit","scrollbar","tmpdir","urls", -"default","xdg","start","launch","ES8","Object.keys","oai","openapi document","openapi spec","openapi specification", -"openapi initiative", -"apis","@readme/oas-examples","typescript-json-schema","@types/update-notifier","jQuery","rfc4122","iot","container", -"jsdom-global","devtools-protocol","enqueue","profiling","@aws-sdk/s3-request-presigner","double","email-validator", -"@esm-bundle/chai","basic-auth-connect","distributed","pidtree","sorted","efficient","tiny-glob", -"micromark-extension-gfm","decode-named-character-reference","checksum","markup","esbuild-plugin-umd-wrapper","heading", -"emoticon","anchor","context","eslint-config-next","baas","mdast-util-to-markdown","SVG","bar","lock","resolve-pkg", -"faye-websocket","edit","algorithm","fast-levenshtein","run-parallel","less.js","multi-package", -"conventional-changelog-angular","conventional-recommended-bump","set-blocking","route","body","analysis","smol-toml", -"better-sqlite3","pg-connection-string","lru","timekeeper","keyboard","karma-adapter","lie","stable","cssom", -"decimal.js","package-directory","grunt-exec", -"grunt-compare-size","rte","contenteditable","rich text editor","rich editor","preact-render-to-string", -"@types/babel__template","pnp","plugnplay","web-vitals","eslint-webpack-plugin","@jest/environment-jsdom-abstract", -"@jest/environment","jasmine-reporters","esmock","is-object","@types/svgo","@types/elementtree","@ionic/utils-terminal", -"@ionic/utils-array","elementtree","telephone","react-devtools-core","user interfaces","inferno-shared","lazy", -"resolution","spawn-sync","safer-buffer","globalization","translation","singularize","dasherize","plural","singular", -"duplex","plain","void","tags","uglifier","packer","relateurl","unescape","pojo","@size-limit/preset-big-lib", -"util-deprecate","mdast-util-mdxjs-esm","raw","flag","elements","bounce","remark-lint-unordered-list-marker-style", -"remark-lint-table-pipes","remark-lint-table-cell-padding","remark-lint-strong-marker","remark-lint-rule-style", -"remark-lint-no-heading-content-indent","remark-lint-no-duplicate-definitions","remark-lint-fenced-code-marker", -"remark-lint-emphasis-marker","remark-lint-definition-case","remark-lint-code-block-style", -"remark-lint-checkbox-content-indent","remark-lint-checkbox-character-style", -"remark-lint-blockquote-indentation","zlib","beeper","array-differ","uncss","@types/through","source maps","hook-std", -"measure","sourcemaps","sort-keys","restart","kew","has-gulplog","gulplog","scripts","inject","@types/gulp","htmlmin", -"stream-to-array","jsftp","prettify","relative","include","from2-string","utf-8","codegen","transformation","pipeline", -"@types/write-file-atomic","grunt-mocha-cli","sauce-tunnel","libsass","notify-send","newer","release","temporary", -"@graphql-tools/schema","@types/ncp","ky","eslint-config-standard-with-typescript","gitignore","globs","hook", -"eslint-config-tschaub","dir-compare","iterator","socket","ie","mac","klaw","universalify","conditional","tsdx", -"browserify-istanbul","sysadmin","fault tolerant","lolex","prettier-plugin-tailwindcss","inference","byline", -"zod-to-json-schema","async-lock","admin", -"@fastify/busboy","locate-path","otp","epub","bmp","photo","picture","uint8array-extras","blob","symbol","colorpicker", -"array.prototype.map","babel-plugin-styled-components","autocannon","ajv-i18n","parse-node-version","@types/yauzl", -"endpoint","handler","@docusaurus/preset-classic","token","automatically","merge-descriptors","yoctocolors","subscribe", -"emits","ubelt","eval","karma-tap","xml-name-validator","find-up-simple","@types/less","scslre","refa", -"@tsconfig/strictest","axobject-query","vite-plugin-eslint4b","eslint-plugin-json-schema-validator","env-cmd", -"@ota-meshi/site-kit-eslint-editor-vue","@ota-meshi/eslint-plugin","open-editor","json-schema-to-typescript", -"jsdoc-type-pratt-parser","typescript-eslint-parser","npm-which","array-includes","@types/eslint-scope", -"@types/lodash.memoize","eslint-typegen","strict","es2018","airbnb","babel-tape-runner","imurmurhash","esquery", -"regular","@types/isarray","string.prototype.trim","info","safe-regex-test","eslint-plugin-qunit","loader.js", -"ember-cli-inject-live-reload", -"broccoli-babel-transpiler","release-plan","eslint-plugin-chai-expect","heimdalljs-logger","ensure-posix-path", -"console-ui","broccoli-stew","broccoli-source","broccoli-debug","broccoli-concat","launch-editor-middleware", -"babel-plugin-transform-vue-jsx","grunt-banner","packager","@electron/get","grunt-webpack","grunt-run","apache", -"iteration","tsutils","parcel","just-extend","eslint-config-fbjs","dox","simple-update-notifier", -"karma-html2js-preprocessor","open source","imagemin-jpegtran","imagemin-svgo","tunnel","dependency-cruiser", -"@grpc/grpc-js","rpc","dnd","bot","OOP","Collections","Collection","STL","System.Collections.Generic", -"Python collections","c++ std","c++ stl","java.util","esmodule","UMD","CommonJS","DataStructures","DataStructure", -"in data structure","in data structures","data-structures","datastructures","data structures","data-structure", -"data structure","structures","sorting","traversal","edge","type script","java script","patch","tshy-after", -"space","is-core-module","random-int","rmrf","directories","folders","which-typed-array","is-regex","lcov-result-merger", -"debugger","rate","limited","gzip-size-cli","typedoc-plugin-missing-exports","jscodeshift","bun","nuxt","tailwind css", -"d3-time-format","d3-time","request-progress","hasha","ansi-html","serialize-error","stacktrace-js","duration","csrf", -"@domenic/eslint-config","lexer","boolbase","functions","@rollup/plugin-dynamic-import-vars","flatted", -"fast-json-stable-stringify","execute","path-key","zoom","jsr","@stryker-mutator/core","schedule","optimization", -"stream-array","http2-wrapper","contents","file-system","Observable","ES2016","ES7","ES5","@types/serialize-javascript", -"preset","@types/normalize-package-data","session","persistent","persist","eslint-config-flat-gitignore", -"@types/shell-quote","listener","typical","wcwidth","@codemirror/language","@codemirror/commands","@codemirror/state", -"@codemirror/view", -"ignore-walk","@yarnpkg/fslib","limit","lerna-changelog","tabular","spinners","prettier-elastic", -"github-release-from-cc-changelog","git-list-updated","eslint-config-medikoo","@ckeditor/ckeditor5-theme-lark", -"@types/faker","scraper","htmlparser","@types/whatwg-mimetype","domutils","charts","param-case","contains","assertions", -"graphic","prebuild-install","support","pascal-case","dash","bind","call","get-intrinsic","ttl","@vitest/spy", -"@babel/plugin-syntax-typescript","profiler","bump","flexbox","arraybuffer","window","make-generator-function", -"browser-unpack","constants-browserify","https-browserify","browserify-zlib","tty-browserify","domain-browser", -"vm-browserify","os-browserify","stream-http","border","@astrojs/markdown-remark","@astrojs/mdx","@types/mime", -"deferred","loop","block","falafel","buffers","@types/readable-stream","@umijs/fabric","@storybook/addon-knobs", -"isomorphic","universal","resolve-package-path","concat-with-sourcemaps","beautify","prebuildify", -"sinatra","@types/validator","@babel/plugin-proposal-private-methods","babel-plugin-transform-es2015-typeof-symbol", -"babel-plugin-transform-es2015-modules-umd","babel-plugin-syntax-trailing-function-commas", -"babel-plugin-check-es2015-constants","@babel/plugin-proposal-optional-catch-binding", -"@babel/plugin-proposal-numeric-separator","prettier-eslint-cli","@babel/preset-stage-0","test-exclude", -"istanbul-lib-instrument","babel-plugin-transform-export-extensions","babel-helper-transform-fixture-test-runner", -"babel-messages","babel-code-frame","v8flags","@rollup/plugin-multi-entry","abortcontroller-polyfill","axe", -"eslint-plugin-mocha-no-only","conventional-commits-parser","css-selector-parser","clean-jsdoc-theme","grunt-babel", -"dynamodb","sns","hash-test-vectors","generators","resolve-cwd","memoize","@vercel/nft","sync-exec","is-builtin-module", -"auto","eslint-plugin-prefer-arrow","unit testing","is-buffer","es-shim API","@es-shims/api", -"@babel/plugin-syntax-class-properties","constructs","@opentelemetry/resources","@types/bluebird","@appium/tsconfig", -"portscanner","root","symbol-observable","ts-invariant","apollo-utilities","notifications","portable","klaw-sync", -"unzipper","remark-lint-no-undefined-references","@ianvs/prettier-plugin-sort-imports","@codesandbox/sandpack-react", -"@antfu/eslint-config","@types/adm-zip","@types/pngjs","antd-style","p-all","merge2", -"colorful","ali-oss","@vitejs/plugin-vue-jsx","screen","script-loader","denodeify","tsify","require-from-string", -"humanize-duration","weigh-flew-web3-farm","warn-clothing-whose0","typical-recall-industry-exchange", -"trunk-darkness-believed-corner","truck-hospital-equator-hurt","supper-term-including-snake","speed-wing-eat", -"sentence-won-little-western","product-slight-adult-settlers","office-deal-mostly1","information-fruit-web3-perfect", -"grass-dollar-crew-floating","face-eventually-bound","crop-birthday-web3-children","coach-organized-notice", -"bow-swam-troops-care","delayed","control","rollup-plugin-node-externals","controller","cancel","dts-bundle-generator", -"@mysticatea/eslint-plugin","oracle","decentralized","cryptography","static site generator","highlight-words-core", -"@umijs/plugins","@umijs/lint","@types/lodash.throttle","@types/highlight-words-core","dumi-assets-types", -"v8-compile-cache","rehype-remove-comments","react-simple-code-editor","prism-themes","heti","dumi-afx-deps", -"animated-scroll-to","@makotot/ghostui","@ant-design/icons-svg","swagger-parser","lit","json-schema-to-ts","button", -"tsc-alias","micromark-extension-mdxjs","@typescript-eslint/type-utils","ts-api-utils","proxy-addr","regexparam", -"jest-matcher-utils","rollup-plugin-delete","redent", -"jest-in-case","@types/aria-query","@types/content-type","pubsub","shadow dom","custom elements","tsc","@napi-rs/cli", -"@swc/types","webpack-loader","@types/connect","esm-env","tsconfig-paths-webpack-plugin","string.prototype.matchall", -"async-mutex","stylelint-config-rational-order","stylelint-config-prettier","react-sticky-box","react-resizable", -"react-infinite-scroll-component","react-highlight-words","rc-virtual-list","rc-footer","jsonml-to-react-element", -"antd-token-previewer","antd-img-crop","@types/throttle-debounce","@types/react-highlight-words", -"@types/jest-environment-puppeteer","@types/gtag.js","@qixian.cs/github-contributors-list","@emotion/server", -"@babel/eslint-plugin","qrcode.react","@ant-design/colors","@sinonjs/eslint-config","@sinonjs/commons","fastify-plugin", -"@scalar/core","@scalar/build-tooling","@tailwindcss/vite","@types/mkdirp","reducer","widgets","google-closure-compiler", -"@webcomponents/webcomponentsjs","quibble","global-jsdom","git-cz","eslint-plugin-chai-friendly", -"commit-and-tag-version","@types/nock","@types/http-proxy","header-range-parser","madge","fancy-test", -"@oclif/plugin-plugins","similarity","innertext","@npmcli/promise-spawn","workspaces","@npmcli/mock-registry", -"walk-up-path","npm-pick-manifest", -"@npmcli/redact","@npmcli/installed-package-contents","@types/bn.js","hardhat","ethers","hast-util-heading-rank", -"react-helmet-async","@mdx-js/loader","socket.io-parser","@types/superagent","AWS Lambda","AWS","Framework","Serverless", -"Middleware","Lambda","tsdoc-build-rig","dts","declaration","TSDoc","JSDoc","@microsoft/api-documenter","styling", -"react-hooks","calendar","tasklist","multipipe","@types/object-hash","jest-config","@jest/test-result", -"progressive web app","capacitor","scaffolder","hyper","@types/mute-stream","@inquirer/ansi","vite-tsconfig-paths", -"vest","typanion","effect","class-transformer","ajv-errors","@hapi/lab","@hapi/code","@hapi/accept", -"remove-files-webpack-plugin","@docusaurus/utils","fontawesome","use-isomorphic-layout-effect","OpenAPI", -"@types/mark.js","swagger2openapi","@definitelytyped/dtslint","find-root","@emotion/hash","@types/lodash.camelcase", -"@tsconfig/node22","mixin","@dnd-kit/modifiers","@types/formidable","@types/tar-stream","@types/chalk", -"@types/json-stringify-safe","@octokit/core", -"generated","discord","@discordjs/collection","terminal-link","jest-serializer-html","markdown-it-deflist", -"@types/mock-fs","stream-to-string","genversion","stylelint-config-twbs-bootstrap","karma-coverage-istanbul-reporter", -"hammer-simulator","actor","graph","@commitlint/types","@ckeditor/ckeditor5-editor-multi-root", -"@ckeditor/ckeditor5-font","@ckeditor/ckeditor5-editor-balloon","@ckeditor/ckeditor5-integrations-common", -"ckeditor5-dll","feed","rollup-plugin-peer-deps-external","swagger-ui-dist","markdown-it-task-lists", -"@apidevtools/json-schema-ref-parser","clone-deep","@babel/plugin-transform-react-display-name", -"@babel/plugin-transform-nullish-coalescing-operator","@babel/plugin-transform-async-generator-functions", -"@babel/plugin-transform-exponentiation-operator","@babel/plugin-transform-export-namespace-from", -"@babel/plugin-transform-object-rest-spread","@babel/plugin-transform-class-static-block", -"@babel/plugin-syntax-import-attributes","@babel/plugin-transform-modules-amd","@babel/plugin-transform-classes", -"@babel/plugin-transform-for-of","@babel/helper-validator-option","core-js-compat","object.getownpropertydescriptors", -"@babel/plugin-syntax-decorators","@web/dev-server","lit-html","jekyll","zod-validation-error","@iarna/toml", -"@babel/helper-fixtures","@types/convert-source-map","@babel/plugin-syntax-flow","@babel/template", -"fs-readdir-recursive","sveltekit","@sveltejs/package","@auth/core","@types/lodash.mergewith","react-native-web", -"lodash.mergewith","xhr2","kit","cdk","@types/react-router-dom","@types/react-redux","chrome-launcher","@appium/logger", -"@appium/support","shadcn","@csstools/css-color-parser","@inquirer/confirm","@inquirer/figures","@csstools/css-calc", -"embla-carousel","lefthook","remeda","pagefind","gulp-jsdoc3","eslint-plugin-react-refresh","cssfilter", -"@expressots/shared","webdriver-manager","vitefu","html-void-elements","escape-goat","character-entities-legacy", -"character-entities","broccoli","@vuepress/plugin-search","@vuepress/plugin-register-components","@vuepress/markdown", -"@antora/logger","@mantine/store","fontsource","sortablejs","void-elements","yeoman-environment","xml2json","wrench", -"world-toy-kill","workbox-webpack-plugin","vue-i18n","vue-class-component","vhost","vasync","urllib","url-parse", -"ultrahtml","typescript-formatter","turndown","tocbot","tinypool","tinymce","testem","systeminformation", -"swagger-autogen","superjson","stylehacks","styled-jsx","style-to-object","stripe","stringify-entities", -"stream-transform","statsd","stack-trace","soap","showdown","shinning-continued-becoming","salt-type-oldest-faster","rx", -"rehype-raw", -"recompose","recently-building-save","react-tools","react-scripts","react-responsive","react-property","react-icons", -"react-hook-form","react-helmet","react-docgen","rc-slider","randombytes","query-string","qr-image","prisma", -"postcss-normalize","postcss-nesting","postcss-html","postcss-custom-selectors","popper.js","pnpm","phantom", -"passport-oauth2","osenv","optionator","nvm","npm-check-updates","node-watch","node-schedule","node-mocks-http", -"node-cache","nib","newman","natural","nano","multiparty","lowdb","load-grunt-config","lit-element","libnpmexec", -"leftpad","keycode","jszip","json-server","jotai","jimp","jest-pnp-resolver","jest-extended","is-url","intl", -"inside-throw","inline-style-parser","immutability-helper","imagemin-pngquant","html-validate","html-tags", -"html-react-parser","html-minifier-terser","html-encoding-sniffer","html-element-attributes","hogan.js", -"history-brass-sound","helmet","heapdump", -"has-flag","hammerjs","gulp-tslint","gulp-stylus","gulp-size","gulp-rev","gulp-minify-css","gulp-jasmine","gulp-git", -"gulp-data","gulp-connect","gulp-bump","gulp-browserify","grunt-notify","grunt-jsdoc","gm","ghooks","ftp", -"friendly-errors-webpack-plugin","formik","forever","font-awesome","fibers","fetch-mock","fair-tower-web3-store", -"facing-cook","es6-promisify","enzyme-shallow-equal","echarts","doxdox-renderer-markdown","doxdox-renderer-json", -"doxdox-renderer-bootstrap","doxdox-parser-jsdoc","doxdox-core","dompurify","dom-serializer","dockerode","dmd", -"discord.js","daisyui","csvtojson","cssstyle","css-select","create-hash","consolidate","cliui","clipboardy", -"child-process-promise","chance","caniuse","built-who-entire","btoa","blockchain-scientist","blockchain-record", -"blockchain-own8","blockchain-language","babel-preset-stage-1","babel-plugin-transform-react-jsx", -"babel-plugin-syntax-dynamic-import","babel-plugin-named-asset-import","babel-plugin-import","awesome-typescript-loader", -"apollo-link","api-console", -"anyway-south-boy-pilot","acl","@vitejs/plugin-legacy","@uiw/utils","@uiw/react-icon","@tinyhttp/req","@tinyhttp/cookie", -"@testing-library/cypress","@sveltejs/kit","@otterhttp/cookie","@nx/workspace","@nx/node","@npmcli/node-gyp", -"@npmcli/map-workspaces","@mui/system","@middy/core","@jsonforms/react","@jest/core","@ionic/core","@hapi/hapi", -"@grandlinex/core","@fortawesome/react-fontawesome","@floating-ui/react-dom","@emotion/core", -"@csstools/postcss-progressive-custom-properties","@csstools/media-query-list-parser","@angular/platform-browser", -"@angular/cdk","jugglingdb","replace-in-files-cli","2d","game","vite-plugin-typescript","vite-plugin-pages", -"vite-plugin-dts-bundle-generator","@antora/asciidoc-loader","@applitools/snippets","flmngr","survey-renderer", -"@antfu/ni","drizzle-orm","draggable","chatgpt","chatbot","radix-ui","@tanstack/vue-virtual","visual testing", -"rich-text","WYSIWYW","WYSIWYG","CKEditor","@ckeditor/ckeditor5-track-changes","@ckeditor/ckeditor5-comments", -"unplugin-unused","@publint/pack","resolve-tspaths","eslint-import-resolver-custom-alias","syntax-highlighting", -"code-blocks","@internal/test-utils","astro-integration","withastro","typescript-framework","clean-architecture", -"expressots","xxhash-wasm","@applitools/test-utils","convict","@atomico/rollup-plugin-sizes","vite-plugin-svgr", -"creator","gateway","git-gateway","gotrue-js","what-the-diff","verb","broccoli-node-info","bsl","vanilla-js","overflow", -"disable","freeze","react scroll","react scroll lock","body scroll lock","body scroll","selenium-mock","center", -"@walletconnect/legacy-utils","@walletconnect/legacy-types","@types/lodash.isnumber","vuepress-plugin-container", -"lernajs","self hosted","admin panel","@reporters/github","ahooks","ilib","@enact/i18n","@utils/tsdown-config", -"@utils/ts-config-types","@utils/ts-config","@intlayer/types","@intlayer/config","codeceptjs","scope", -"@rollup/plugin-eslint","reorder","sortable","vitest-axe","babel-plugin-dev-expression","customizable","animatable", -"chromatic","@storybook/addon-webpack5-compiler-babel","@chromatic-com/storybook","slide","gdpr","minimal", -"bplist-parser","vue 3","eslint-plugin-prettier-vue","@vue/cli-service","@vue/cli-plugin-typescript", -"@vue/cli-plugin-babel","svg-url-loader","@svgr/babel-preset","augment-vir", -"vir","augment","istanbul-smart-text-reporter","@web/dev-server-esbuild","@date-vir/duration","@augment-vir/core", -"textarea","get-pkg-repo","babel-preset-react-native","@testing-library/preact","@docusaurus/module-type-aliases", -"waapi","framer","react pose","pose","@types/systemjs","@types/morgan","@types/cookie-parser","esmocha","@yeoman/eslint", -"mem-fs-editor","@yeoman/types","@yeoman/transform","@yeoman/namespace","whitelist","jsonpath","WebSockets","Push", -"winston-compat","@dabh/eslint-config-populist","logform","taffydb","klona","ansi-html-community","zoomable", -"cache-loader","eslint-plugin-vue-libs","@types/cheerio","BDD","eyes","@antfu/install-pkg","@edge-runtime/vm", -"local-pkg","@vitest/runner","tinyrainbow","@vueuse/integrations","host-validation-middleware","http-proxy-3", -"periscopic","artichokie","@vercel/routing-utils","@vue/runtime-core","@types/busboy","ecosystem:jquery","jquery-plugin", -"unist-util","retext","azure-devops-node-api","latex","typedocplugin","typedoc-plugin","generics","DOM","ts-essentials", -"fix-dts-default-cjs-exports","Microsoft","@tsd/typescript","migrations","make-error","bs-logger","tldts","collapse", -"tilde","homedir","streams2","get-port-cli","webgl","3d","jpeg-js","codeclimate-test-reporter","@types/tar-fs", -"automated","elegant-spinner","charm","unique","tmpfile","tempdir","tdlib","back end","actor-system","DDD", -"actor system","brittle","ecstatic","resolve-import","audio","gpu","processes","cpu","sync-rpc","framework7", -"sw-precache","cookiejar","eslint-config-stylelint","@stylelint/remark-preset","@stylelint/prettier-config", -"@changesets/get-github-info","react-frame-component","@types/react-frame-component","@types/stylis","response","npmrc", -"metrics","core-util-is","strong-supervisor","strong-agent","east-asian-width","fixed-width","full-width","fullwidth", -"columns","django","@storybook/test","@storybook/addon-onboarding","component-testing","@types/pretty-hrtime", -"@radix-ui/react-slot","@types/detect-port", -"unique-string","launch-editor","@vitest/utils","@storybook/global","modern-syslog","std-mocks","run-parallel-limit", -"imageinfo","json-stringify-pretty-compact","graphql-scalars","@graphql-tools/utils","@graphql-tools/merge","separated", -"sockjs","eventsource","@types/sax","totalist","vendor","rollup-plugin-analyzer","custom-event","shelljs-release", -"shelljs-changelog","quote","esbuild-runner","aws-cdk-lib","@aws-sdk/util-dynamodb","@aws-sdk/lib-dynamodb", -"@aws-sdk/client-sts","@aws-sdk/client-sqs","@aws-sdk/client-sns","@aws-sdk/client-dynamodb","is-port-reachable", -"hardware","mariadb","ibm_db","standard-engine","eslint-config-standard-jsx","applications","experimentation","teaching", -"opensourcesoftware","helpful","parse-srcset","sails.js","rttc","parley","flaverr","@sailshq/lodash","Stream","Streams", -"@types/source-map","unistore","taskr","native-url","lodash.curry","ignore-loader","edge-runtime","comment-json", -"cli-select","@types/send","@types/platform","@types/path-to-regexp","@types/lodash.curry","@types/fresh", -"@types/content-disposition","@types/ci-info","@taskr/esnext","@taskr/clear","@next/swc","@next/react-refresh-utils", -"@next/polyfill-nomodule","@next/polyfill-module","@napi-rs/triples","@edge-runtime/primitives","@edge-runtime/ponyfill", -"@edge-runtime/cookies","@capsizecss/metrics","@babel/plugin-syntax-bigint","treemap","@types/d3-shape","graphlib", -"process-es6","buffer-es6","rollup-plugin-prettier","bundling","date-time","machine","prebuild","rm -fr","rm -rf", -"fast-deep-clone","fast-clone","performant","deepclone","kill","sigterm","spdy","copy-dir","ResizeObserver", -"@typescript-eslint/eslint-plugin-tslint","thenable","request-promise-core","stealthy-require","karma-cli", -"http-signature","retext-english","remark-retext","remark-lint-table-pipe-alignment", -"remark-lint-ordered-list-marker-value","remark-lint-no-tabs","remark-lint-no-table-indentation", -"remark-lint-no-shell-dollars","remark-lint-no-multiple-toplevel-headings","remark-lint-no-missing-blank-lines", -"remark-lint-no-heading-indent","remark-lint-no-file-name-outer-dashes","remark-lint-no-file-name-mixed-case", -"remark-lint-no-file-name-irregular-characters","remark-lint-no-file-name-consecutive-dashes", -"remark-lint-no-file-name-articles","remark-lint-no-emphasis-as-heading","remark-lint-no-consecutive-blank-lines", -"remark-lint-heading-style","remark-lint-first-heading-level","remark-lint-final-definition", -"remark-lint-file-extension","remark-lint-fenced-code-flag","remark-lint-definition-spacing", -"remark-comment-config","mermaid-isomorphic","is-hidden","thunk","flux-standard-action","replay","netlify-plugin-cache", -"@cfaester/enzyme-adapter-react-18","repl","@storybook/addon-storysource","virtualized","infinite","scrolling", -"jest-environment-puppeteer","esprima-fb","snackbar","@types/hash-sum","listify","slick", -"@playwright/experimental-ct-react","combobox","wireit","@types/use-sync-external-store","macos", -"@react-native/community-cli-plugin","babel-plugin-syntax-hermes-parser","@jest/create-cache-key-function", -"@react-native/normalize-colors","@react-native/assets-registry","@react-native/gradle-plugin", -"@react-native/js-polyfills","@react-native/codegen","flow-enums-runtime","metro-source-map","metro-runtime", -"nullthrows","isparta-loader","@webcomponents/custom-elements","viewport","yarn-deduplicate", -"@babel/plugin-proposal-pipeline-operator","@types/doctrine","dnd-core","color picker", -"babel-plugin-transform-rename-import","exceptions","fantasy-land","tacit","xyz","browserstack-runner","grunt-search", -"fuzzysort","item","filter-obj","puppeteer-core","@types/q","protocol-buffers","git-semver-tags","mdast-zone", -"alpha-sort","uglifyjs","uglifyify","MariaDB","MySQL", -"PostgreSQL","SQLite","@types/better-sqlite3","@prisma/get-platform","openapi-typescript","get-port-please", -"xdg-app-paths","openapi-fetch","ohash","vcs","@pkgr/core","error-handling","locale","jest-light-runner","virtual dom", -"precommit","processor","transformations","@csstools/postcss-oklab-function","@csstools/selector-resolve-nested", -"@types/cssesc","declarative","queries","media","atrule","at-rule","cssnext","postcss-selector-not", -"postcss-replace-overflow-wrap","postcss-pseudo-class-any-link","postcss-font-variant","postcss-color-rebeccapurple", -"postcss-color-hex-alpha","postcss-attribute-case-insensitive","pleeease-filters","hwb","hsl","comma", -"eslint-config-problems","read-cache","calc","manipulation","ports","popperjs","uninstall","hardlinks", -"dependency manager","tap-dot","keymetrics","kubernetes","logs","pidusage","count","plurals","sonic-boom","rdbms", -"postgre","png-js","zeptomatch","exist","idb-keyval","para","screengrab","screenshots", -"compliance","proclaim","fifo","vscode","@types/yauzl-promise","yauzl-promise","livescript","hashish","xdg-open","opens", -"define-lazy-prop","wrappy","entries","Object.values","_.extend","$.extend","Object.assign","es-object-atoms","notation", -"access","util.inspect","globalthis","gulp-exec","@readme/openapi-parser","Mobile","@napi-rs/wasm-runtime", -"@yarnpkg/parsers","node-machine-id","node-libs-browser","asap","babel-preset-latest","minizlib", -"esbuild-node-externals","versions","vite-bundle-analyzer","jsonlines","updater","rc-config-loader","package manager", -"@npmcli/git","json-parse-even-better-errors","@npmcli/config","fs-minipass","archy","new-github-release-url", -"is-interactive","normalization","backslash","absolute","jsonpath-plus","express-ws","webkit","xls","excel","daemon", -"pty","biased-opener","require-inject","maps","messaging","sha512","sha256","gcm","aes", -"worker-loader","karma-tap-reporter","tap-xunit","skeleton","internal","mochify","@sinonjs/referee","@types/nodemailer", -"@edge-runtime/jest-environment","debugging","git-raw-commits","require-in-the-middle","import-in-the-middle","nest", -"sentiment analysis","pegjs","@types/npmcli__arborist","@types/marked-terminal","@types/archiver","@types/byline", -"couchdb","thenify","timezone-mock","karma-story-reporter","pend","json-bigint","@fastify/websocket","@types/mongodb", -"remote control","node-monitor","backbone-callbacks","datastore","odm","mongodb-runner","@aws-sdk/credential-providers", -"mongodb-client-encryption","socks","UI","GUI","@cypress/code-coverage","@codemirror/lang-javascript","vscode-uri", -"vscode-languageserver-types","tz","timezone","services","v8-natives","unittest","define","descriptor", -"has-property-descriptors","gopd","junit","test-console","headless-chrome","expose-gc","mobx-react-lite","mobservable", -"conditional-type-checks","make dir","brace-expansion","searching","priority","priorityqueue", -"heap","min heap","runmd","release-please","@types/mime-db","expansion","fill-range","@babel/plugin-syntax-import-meta", -"nanocolors","fast-memoize","fsa","in-memory","hashing","hashring","mozilla","micromark-util-sanitize-uri","mdast-util", -"commonmark.json","micromark-util-symbol","micromark-util-normalize-identifier", -"micromark-util-decode-numeric-character-reference","charenc","numeric","sylvester","ndarray","inline-style-prefixer", -"recheck","jsonpointer","micromark-core-commonmark","links","repeat-string","theredoc","rows","emoticons","ndoc", -"markdown-it-sub","markdown-it-for-inline","@next/eslint-plugin-next","startup","prototype","yaml-config","crud", -"@nestjs/testing","@codecov/bundle-analyzer","@yarnpkg/lockfile","@nestjs/typeorm","@nestjs/swagger","@nestjs/core", -"@nestjs/common","office","open-source","y18n","load-module","opacity","fade","mirror","flip","embedded","embed", -"@commitlint/prompt-cli","mBaaS","StrongLoop","loopback-datasource-juggler","strong-remoting", -"uid2","grunt-open","refresh","event-emitter","omit","isequal","grunt-ts","grunt-rollup","full-stack","lws-static", -"livereload-js","autolink","promise-retry","matching","comparison","levenshtein-edit-distance","levenshtein", -"airtap-sauce","queue-microtask","level-concat-iterator","async-each","leveldb","@voxpelli/tsconfig","airtap-playwright", -"bootstrap less","bootstrap css","nested css","lesscss","less mixins","less css","gradients css3","css variable", -"compile less","mocha-teamcity-reporter","less-plugin-autoprefix","jit-grunt","benny","copy-anything", -"validate-npm-package-license","init-package-json","load-json-file","libnpmpublish","libnpmaccess","has-unicode", -"byte-size","p-reduce","cmd-shim","numbers","padding","eslint-config-mourner","prosthetic-hand","karma-expect","latest", -"semver-regex","cpr","mount","compose","urlencoded","co-body","gen-esm-wrapper","explorer","lodash.sortby","workspace", -"duplicate", -"analyze","pg-query-stream","tarn","key-value","lru.min","global-agent","safari","firefox","karma-reporter", -"browserstack-local","browserify-tool","hat","karma-script-launcher","karma-junit-reporter","inflate","trees", -"jsonparse","dummy","sort-on","stylish","selenium-standalone","saxes","reserved-words","cst", -"rollup-plugin-node-polyfills","gzip-js","eslint-config-jquery","grunt-git-authors","commitplease","usb","rpi", -"robotics","raspberry pi","Joystick","firmata","solid-js","@rspack/cli","vite-plugin-node-polyfills","worker-farm", -"babel-plugin-add-import-extension","jest-serializer-ansi-escapes","@jest/fake-timers","eslint-plugin-jasmine","youtube", -"stop","jstransformer-verbatim","jstransformer-stylus","jstransformer-less","jstransformer-coffee-script", -"jstransformer-cdata","compression-webpack-plugin","is-inside-container","writable","kind","pure","globstar","extglob", -"denque","custom element","@ionic/cli-framework-prompts","@ionic/utils-subprocess","@ionic/utils-process", -"@ionic/utils-network","@ionic/cli-framework", -"@ionic/utils-stream","ssh-config","leek","country","prettier-eslint","babel-preset-es2015-rollup", -"babel-plugin-transform-es3-property-literals","babel-plugin-transform-es3-member-expression-literals","yml","reify", -"run-async","eslint-config-xo-react","@types/signal-exit","humanize","renderToString","every","deep-freeze", -"image-dimensions","p-pipe","ow","tiff","identity","unorm","i18next-browser-languagedetector","gh-release","foreign_key", -"classify","tableize","ordinalize","demodulize","camelize","post","@types/async-retry","eol","agent-base", -"requires-port","postproccessor","pug-loader","mail","capture","commitlint-config-non-conventional","@types/he", -"@exodus/bytes","workers","cloudflare","wrangler","oxc-parser","grunt-gh-pages","moize","js-yaml-js-types", -"@vue/compiler-dom","hyperscript","esast-util-from-js","mdast-util-mdx-expression","estree-util-is-identifier-name", -"web-namespaces","hast-util-from-parse5","hasOwn","function-bind","sham","@types/core-js","getopt","vision","wreck", -"shot","ammo","grunt-contrib-requirejs","gestures","grunt-string-replace","remark-validate-links", -"remark-lint-list-item-indent","remark-lint-hard-break-spaces","catering","proxy-middleware","anymatch", -"lodash.templatesettings","lodash._reinterpolate","array-uniq","eslint-plugin-no-use-extend-native","@types/ansi-colors", -"rendering","rwd","brotli-size","@types/lodash.template","sftp","source-maps","revision","rev","precompile","views", -"easy-transform-stream","ng-annotate","plugins","isparta","webcomponents","stylesheets","strip-color","imagemin-webp", -"exclude","ternary-stream","gulp-match","metapak-nfroidure","metapak","nid","any-shell-escape", -"@shinnn/eslint-config-node-legacy","separate","streamfilter","balanced-match","rcloader","csscomb","webserver", -"conflict","rework","mtime","change-file-extension","object.pick","versioning","mark","bom","rewriting","prefixes", -"atom","gulp-footer","series","@types/json5","usemin","foundry-release-npm", -"foundry-release-git","foundry","eslint-config-twolfson","url2","spritesheet-templates","grunt-release","TDD", -"@commitlint/travis-cli","vow","less-plugin-clean-css","maxmin","compass","perf","grunt-known-options","google-protobuf", -"coffee","assemble","strip-bom-string","gulp-cli","requests","@hapi/bourne","p-cancelable","lowercase-keys","pdfmake", -"linkinator","js-green-licenses","@types/nunjucks","google drive","java","paths","fnmatch","glob-stream","min-document", -"@primer/octicons","eslint-config-kentcdodds","opt-cli","lodash.clone","deno","readablestream","scan","available", -"reduce","iterable","pooling","modular","nitro","insight","globule","thenify-all","any-promise","output","mkdirs", -"extra","read-dir-files","hoc","formdata-polyfill","@paralleldrive/cuid2","combined-stream","jest-circus","cli-testlab", -"getopts","forever-monitor","@types/is-callable","location", -"redirect","react-addons-test-utils","cjs","@tailwindcss/postcss","fabric","sequential","util-extend","@types/acorn", -"matcher-collection","cdn","universal-analytics","stream-json","gaxios","@electric-sql/pglite-tools","@types/bcrypt", -"Firebase","@firebase/database-compat","@firebase/auth-compat","@firebase/app-compat","jar","xlsm","icc","jxl","cur", -"heic","ods","jp2","docx","cfb","ico","psd","icns","video","pic","fallback","figure","banner","art","glob-to-regexp", -"@types/glob-to-regexp","scanner","web component","babel-plugin-minify-dead-code-elimination", -"typescript-transform-paths","piscina","markdownlint-cli2","secure-json-parse","process-warning","find-my-way", -"@fastify/error","click","json2xml","js2xml","snap-shot-it","hereby","@nodelib/fs.walk","jsverify","pure-rand", -"timestamp","color-support","gulp-mustache","shallow","benchmarked","covert", -"unit-testing","type-safe","helpers","authz","autogenerated","autogenerator","autogenerate","setprototypeof", -"pbkdf2-password","type-check","@jest/get-type","@jest/expect-utils","stdio","binaries","subprocess","is-running", -"@sindresorhus/merge-streams","listeners","eventDispatcher","eventEmitter","Events","on","pub/sub","addListener", -"addEventListener","eventemitter","join","flatmap","stream-combiner","qs-iconv","os-tmpdir","karma-typescript", -"@types/assert","ethereum-cryptography","karma-safaritechpreview-launcher","json-diff","regexp-tree", -"@types/postcss-safe-parser","nodesecurity","eslint-config-nodesecurity","safe-regex","mocha-chai-jest-snapshot", -"@types/pako","regexp-ast-analysis","@types/estree-jsx","ls-engines","string.prototype.repeat","to-ast","jsx-ast-utils", -"jsonc","stylelint-config-recommended-vue","@types/natural-compare","spdx-expression-parse", -"@angular-eslint/template-parser","markdown-link-check","eslint-config-canonical","gitdown","@types/espree","directive", -"comment","@vuepress/plugin-pwa","eslint-ava-rule-tester","commitlint-azure-pipelines-cli","unrs-resolver", -"happiness","happy","xoxo","automd","eslint config","eslint-find-rules","npm-license","node-polyfill-webpack-plugin", -"fs-teardown","eslump","eslint-release","eslint-plugin-expect-type","@types/esquery","file-entry-cache", -"@eslint/plugin-kit","__proto__","futures","babel-plugin-transform-es2015-constants", -"babel6-plugin-strip-class-callcheck","broccoli-uglify-js","broccoli-watchify","git-repo-version","broccoli-rollup", -"extras","addons","next-tick","fixtures","@types/object.assign","@types/make-generator-function", -"@types/make-async-function","@types/make-arrow-function","@types/has-symbols","@types/has-bigints","@types/call-bind", -"make-arrow-function","has-bigints","lodash.escape","is-callable","function.prototype.name","array.prototype.flat", -"reporting","enum","js-string-escape","ember-addon","eslint-plugin-ember","ember-source-channel-url","ember-source", -"ember-resolver","ember-qunit","ember-load-initializers","ember-auto-import","code-equality-assertions", -"@ember/test-helpers","@ember/optional-features","babel-plugin-debug-macros","ember","fixturify-project","chai-files", -"watch-detector","tree-sync","symlink-or-copy","sane","quick-temp","promise-map-series", -"p-defer","core-object","calculate-cache-key-for-tree","smtp-server","lass","lad","markdown-it-chain","rcedit","junk", -"@electron/asar","flatpak","Windows","dmg","grunt-contrib-compress","null-loader","fix","@types/vinyl-fs","os-locale", -"eslint-plugin-lodash","@types/pixelmatch","@types/strip-json-comments","@definitelytyped/typescript-versions", -"@definitelytyped/header-parser","@definitelytyped/utils","drag and drop","dragndrop","cypress-file-upload", -"babel-preset-fbjs","alex","spawn-please","tarball","repo","interpolation",".env","purify","sanitizer","secure", -"qunit-tap","@types/trusted-types","domelementtype","height","simulant","unist-util-is","websites","glob-promise", -"imagemin-gifsicle","imagemin-optipng","tree-node-cli","chdir","parse-filepath","micromark-util-character","ghost", -"dpdm","content management system","valid-directory","projectz","kava","assert-helpers","jschardet","istextorbinary", -"@grpc/proto-loader","@balena/dockerignore","geckodriver","@puppeteer/browsers", -"doc-detective-resolver","doc-detective-common","jsonify","file-set","cache-point","backend-manager","deletion", -"insertion","iterative","matrix","Edge","eslint-import-resolver-alias","handlebars-loader","jsdiff","port", -"@eggjs/tsconfig","tab","identify","infer","read-package-json","callsite","temp-write","cleaning","unlink","trash", -"presentable-error","equality","has-proto","side-channel","is-date-object","is-arguments","difference", -"yaml-eslint-parser","should-semantic-release","prettier-plugin-curly","eslint-plugin-deprecation","console-fail-test", -"tar.gz","bz2","decompress-unzip","switch","reverse","tailwind laravel","tailwind astro","tailwind svelte", -"tailwind nuxt","tailwind next","tailwind vue","tailwind react","statistics","@observablehq/runtime","topojson-client", -"d3-scale-chromatic","d3-interpolate","d3-hierarchy","d3-polygon","d3-random","d3-format","d3-force","d3-path","d3-dsv", -"conventional-commit-types","stubs","spies", -"uid","stack-chain","@types/lodash.set","tsv","@types/chokidar","StyleSheet","CSSStyleDeclaration","@webref/css", -"@csstools/css-syntax-patches-for-csstree","identifier","stages","features","@types/boolbase","@types/csso", -"write-json-file","version-changelog","github-release-from-changelog","eslint-config-nitpick","changelog-verify", -"source-map-resolve","Base64","MD5","pbkdf2","shebang","rotate","crontab","timer","node-cron","@fast-check/jest", -"normalize-newline","sha.js","hpagent","parse-json","setImmediate","queueMicrotask","URLSearchParams","URL", -"AsyncIterator","Symbol","TypedArray","WeakSet","WeakMap","Set","Map","ECMAScript 2023","ECMAScript 2022", -"ECMAScript 2021","ECMAScript 2019","ECMAScript 2017","ECMAScript 2016","ECMAScript 2015","ECMAScript 6","ECMAScript 3", -"ES2023","ES2022","ES2021","ES2020","ES2018","ES3","qr","@types/normalize-path","@types/glob-parent", -"@borderless/ts-scripts","conventional-changelog-writer", -"dustjs-linkedin","twig","mote","eco","elegant","flash","rack","xdg-basedir","x2js","sh","coveralls-next","strings", -"singleline","one","mocha-multi-reporters","find-node-modules","cachedir","is-utf8","find-replace","exists","jison", -"google-closure-compiler-js","@codemirror/search","mask","coroutine","progress bar","copy-paste","powershell-utils", -"tiny-emitter","rollup-plugin-multi-input","jest-runner-eslint","git-rev","show","display","tad","es6-iterator","d", -"autocomplete","uncached","uncache","parent-module","classname","watching","watcher","readdirp","intersection-observer", -"react-lazy-load","querystringify","eslint-plugin-es","c12","includes","similar","like","strategy","assertion-error", -"check-error","pathval","scraping","assert-rejects","pascalcase","separator","hyphen","camel","bound", -"callbind","inspector","v8","chai-jest-snapshot","webrtc","@mscdex/eslint-config","log4j","dtrace-provider","mergician", -"@oclif/plugin-warn-if-update-available","built-in","uint8array","esnext","transpilation","test262-stream", -"typescript-cached-transpile","decoding","ts-standard","base-x","update-browserslist-db","isstream","console-browserify", -"browser-pack","module-deps","subarg","tslint-plugin-prettier","release-it-lerna-changelog","boxes","eyeglass-module", -"prettier-plugin-astro","@astrojs/sitemap","standardx","dsl","flow control","deferreds","promises-a","sparkline", -"memory-streams","awesomesauce","imports-loader","git-directory-deploy","@storybook/addon-options","react-reconciler", -"@antv/g2plot","gyp","bignumber","decimal","real time","micro services","spa","dependency injection","esm2umd", -"sorted-object","encoder","decoder","backend-as-a-service","babel-plugin-transform-flow-strip-types","home-or-tmp", -"electron-to-chromium","babel-plugin-transform-exponentiation-operator","babel-plugin-transform-es2015-unicode-regex", -"babel-plugin-transform-es2015-sticky-regex","babel-plugin-transform-es2015-object-super", -"babel-plugin-transform-es2015-modules-systemjs", -"babel-plugin-transform-es2015-modules-amd","babel-plugin-transform-es2015-literals", -"babel-plugin-transform-es2015-function-name","babel-plugin-transform-es2015-for-of", -"babel-plugin-transform-es2015-duplicate-keys","babel-plugin-transform-es2015-block-scoped-functions","pkgfiles", -"babel-plugin-flow-react-proptypes","babel-plugin-syntax-object-rest-spread","babel-plugin-syntax-async-functions", -"mapping","rewrite","alias","resolver","find-babel-config","require-package-name","instrumentation", -"@istanbuljs/load-nyc-config","babel-preset-umi","@umijs/test","airbnb-js-shims","babel-preset-power-assert", -"babel-helpers","md5.js","istanbul-instrumenter-loader","rollup-plugin-bundle-size","proxy-from-env","revalidator", -"emoji-regex","typedarray","colorjs.io","waf","workflow","swf","ses","sqs","insert-module-globals","jmespath","ieee754", -"observable","ignore-by-default","emittery","common-path-prefix","code-excerpt","callsites","fraction.js","detective", -"babel-plugin-rewire","parse-github-url","shrinkwrap","rollup-plugin-npm","is-nan","ensure","Array.prototype.flatten", -"Array.prototype.flatMap","buffer-crc32","gql","projen","@aws-sdk/types","analytics","microsoft", -"@opentelemetry/exporter-metrics-otlp-proto","@opentelemetry/sdk-metrics","@opentelemetry/sdk-logs", -"@opentelemetry/api-logs","@opentelemetry/core","@azure/core-auth","teen_process","asyncbox","node_modules", -"@types/graphql","jsnext","@types/zen-observable","apollo-cache","iOS","apple", -"@madccc/duplicate-package-checker-webpack-plugin","@ant-design/happy-work-theme","circular-dependency-plugin", -"@microflash/rehype-figure","dumi-plugin-color-chunk","@types/isomorphic-fetch","@ant-design/compatible", -"@types/cli-progress","@types/http-server","lunar-typescript","@types/nprogress","@types/spinnies","@types/ali-oss", -"@prettier/sync","react-countup","vanilla-tilt","spinnies","runes2","@rc-component/trigger","string-replace-loader", -"rucksack-css","reqwest","remark-yaml-config","markdown-it-table-of-contents","majo","less-plugin-npm-import", -"json-templater","is-windows","gulp-strip-code","enquire-js","docsearch.js","babel-plugin-inline-import-data-uri", -"@webpack-cli/serve","@vue/babel-plugin-jsx","@types/lru-cache","@types/koa","shallow-equal","dom-scroll-into-view", -"array-tree-filter","@emotion/unitless","vt100","escapes","strikethrough","red","inverse","gray","isbinaryfile", -"ember-cli-string-utils","ember-cli-normalize-entity-name","longjohn","json-schema-validator","json-schema-test", -"if-node-version","@ajv-validator/config","json-schema-traverse","simple-get","make-promises-safe","load-script", -"globs-to-files","find-nearest-file","engine.io-client","engine.io","stay-including","scientific-exist-event2", -"recently-done-should-moon","meat-think-stove8","material-balance-trade-solar","lay-rest-hour","exchange-known-bend", -"course-whenever-merely","correct-home-silent7","closer-composed-particularly-shout","cent-matter-to","blockchain-meat7", -"blockchain-bend4","cron-parser","arch","accept","negotiation","rollup-watch","rollup-plugin-babel-minify", -"dumi-theme-mobile","codesandbox-import-utils","react-loading-skeleton","comlink","fast refresh", -"@babel/plugin-transform-react-jsx-source","browserslist-to-esbuild","file uploader","uploadcare", -"@csstools/postcss-cascade-layers","@happy-dom/global-registrator","@total-typescript/ts-reset","@biomejs/wasm-nodejs", -"@biomejs/js-api","shipjs","@uploadcare/cname-prefix","prom-client","@uiw/react-overlay","@udecode/react-hotkeys", -"@udecode/react-utils","@udecode/utils","@udecode/slate","@types/raf","mini-store","component-classes","title-case", -"@typescript-eslint/visitor-keys","ebs","params","@tinyhttp/content-type","headers","supertest-fetch","@tinyhttp/vary", -"eslint-plugin-local-rules","jest-serializer-ansi", -"@types/jest-in-case","dotenv-cli","testing-library","jest-environment-jsdom-sixteen","jest-watch-select-projects", -"dom-accessibility-api","@tanstack/query-test-utils","tanem-scripts","MIT","shadow root","microfrontends","symbiote.js", -"ui library","stylelint-prettier","rust","swc","svgr","@svgr/plugin-svgo","official","dts-buddy", -"@sveltejs/acorn-typescript","trash-cli","parse-color","color2k","abab","@supernova-studio/model", -"@supernova-studio/client","sylvanas","duplicate-package-checker-webpack-plugin","bundlesize2","@types/react-resizable", -"@storybook/theming","@storybook/addons","rc-trigger","rc-progress","rc-menu","rc-drawer","rc-dialog", -"@rc-component/tour","@ant-design/react-slick","@ant-design/cssinjs","essentials","storybook-addon","memoizerific", -"telejson","@mochify/driver-webdriver","@mochify/driver-puppeteer","@mochify/cli","@wdio/types","@wdio/spec-reporter", -"@wdio/local-runner","@wdio/cli","screenplay-pattern","screenplay","serenity-js","serenity","mocha-multi", -"@types/html-minifier","@integration/testing-tools","tiny-types","@serenity-js/web","@serenity-js/rest", -"@serenity-js/core","vite-plugin-banner", -"@scalar/openapi-types","@scalar/openapi-parser","@unhead/vue","sanity","cpx","string-capitalize","is-module", -"require-relative","redux-toolkit","starter","esbuild-extra","@types/babel__helper-module-imports", -"@testing-library/react-render-stream","@size-limit/webpack","glb","@types/testing-library__jest-dom", -"@storybook/testing-library","@types/three","bootstrap-icons","animate.css","@mdi/font","mixins","gui", -"eslint-formatter-codeframe","@metalsmith/markdown","better-ajv-errors","app-module-path","github-api","ps-tree", -"fontkit","@webcomponents/shadycss","typography","information","annotate","typedoc-plugin-no-inherit","putout", -"glob-bin","@types/stack-utils","@types/ramda","randexp","send-file","@otterhttp/errors","@otterhttp/content-type", -"vue-components","octokit","@types/clean-stack","clean-stack","@types/wrap-ansi","@types/indent-string","@oclif/parser", -"@oclif/errors","@nestjs/schematics","ESLint","intercept-stdout","oniguruma","markdown-it-lazy-headers", -"markdown-it-expand-tabs","github-url-to-object","atom-language-nginx","atom-language-diff","highlights-tokens", -"language-stylus","language-erlang","lodash.pickby", -"language-rust","language-haxe","language-glsl","language-dart","property-ttl","language-ini","highlights","spawk", -"treeverse","parse-conflict-json","npm-install-checks","common-ancestor-path","bin-links","@npmcli/name-from-folder", -"@npmcli/metavuln-calculator","@npmcli/fs","@isaacs/string-locale-compare","hast-util-has-property","rehype-format", -"posthtml-parser","posthtml-render","@types/color","webpack-virtual-modules","rehype-pretty-code", -"@theguild/remark-npm2yarn","@shikijs/transformers","datetimepicker","datepicker","system","webpack-http-server", -"vitest-environment-miniflare","@types/follow-redirects","@types/express-fileupload","@ossjs/release", -"@open-draft/test-server","outvariant","is-node-process","@open-draft/deferred-promise","HTTP","jju","alpha", -"@microsoft/api-extractor-model","@types/mdx","json-api","syntax-highlight","@inquirer/input","opn-cli", -"babel-plugin-transform-builtin-extend","glob2base","docopt","rollup-plugin-import-css","redux-mock-store", -"@types/istanbul-reports","@types/istanbul-lib-coverage","@jest/schemas","immersive","easy","jest-watcher", -"jest-regex-util","jest-message-util","jest-haste-map","exit-x","@jest/reporters","@jest/pattern", -"ux","design-system","eslint-plugin-require-extensions","@tanstack/react-virtual","playwright-core","@stencil/core", -"@inquirer/testing","vue 3.x","translate","TypeBox","nope","scheme","io-ts","fp-ts","fluentvalidation-ts", -"computed-types","arktype","@vinejs/vine","@sinclair/typebox","@standard-schema/utils","@hapi/wreck", -"@hapi/eslint-plugin","@hapi/topo","@hapi/hoek","filemanager-webpack-plugin","basename","@tailwindcss/typography", -"@docusaurus/types","graphql-markdown","graphql-schema","@graphql-markdown/types","@graphql-markdown/utils", -"@graphql-markdown/logger","node-abi","awesome","typeface","inter","google fonts","font family","Swagger", -"OpenAPI Specification","unfetch","lodash.noop","@types/tapable","@types/json-pointer","@types/enzyme-to-json", -"@types/dompurify","@hot-loader/react-dom","url-template","stickyfill","react-tabs","openapi-sampler","json-pointer", -"decko","@emotion/utils","@emotion/sheet","definitions",".d.ts","swc-loader", -"@wordpress/dependency-extraction-webpack-plugin","esbuild-wasm","@types/body-parser","sql.js","minisearch", -"memorystore","@types/html-escaper","@apidevtools/swagger-parser","discordapp","@discordjs/api-extractor", -"@favware/cliff-jumper","@discordjs/scripts","@sapphire/snowflake","discord-api-types","@discordjs/util", -"magic-bytes.js","yfm","esbuild-sass-plugin","@types/sanitize-html","markdownlint-rule-helpers","get-root-node-polyfill", -"@diplodoc/tabs-extension","signale","jest-mock-process","@types/signale","gherkin","dependency-lint","@types/mz", -"@types/mustache","util-arity","knuth-shuffle-seeded","assertion-error-formatter","progressive","declarations", -"media query","mobile-first","vnu-jar","find-unused-sass-variables","@docsearch/css","messages","neotraverse", -"loglevel-plugin-prefix","@compodoc/ngd-transformer","@compodoc/live-server","@commitlint/utils","@commitlint/test", -"@commitlint/load","@commitlint/lint","@types/color-convert","@ckeditor/ckeditor5-select-all", -"@ckeditor/ckeditor5-watchdog","ckeditor5-lib","@ckeditor/ckeditor5-editor-inline", -"@ckeditor/ckeditor5-editor-decoupled","@ckeditor/ckeditor5-alignment","@ckeditor/ckeditor5-editor-classic", -"ckeditor5-build","ng","angular2","social","chat","chokidar-cli","@changesets/get-release-plan","async-exit-hook", -"feature","svg-pan-zoom","markdown-it-footnote","json-schema-merge-allof","@cucumber/gherkin-streams", -"pirates","@babel/plugin-transform-logical-assignment-operators","@babel/plugin-transform-private-property-in-object", -"@babel/plugin-transform-optional-catch-binding","@babel/plugin-transform-async-to-generator", -"@babel/plugin-transform-optional-chaining","@babel/plugin-transform-numeric-separator", -"@babel/plugin-transform-modules-systemjs","@babel/plugin-transform-dynamic-import", -"@babel/plugin-transform-destructuring","@babel/plugin-transform-regenerator","@babel/plugin-transform-modules-umd", -"@babel/plugin-transform-spread","babel-plugin-polyfill-corejs2","@babel/plugin-transform-parameters", -"@babel/compat-data","decorators","@asyncapi/parser","apollo","optimism","@graphql-typed-document-node/core", -"typescript-lit-html-plugin","@open-wc/testing","@open-wc/eslint-config","@api-components/api-request", -"@api-components/api-navigation","@api-components/api-model-generator","@anypoint-web-components/anypoint-styles", -"@advanced-rest-client/oauth-authorization","@api-components/amf-helper-mixin", -"@anypoint-web-components/anypoint-listbox","@anypoint-web-components/anypoint-item", -"@anypoint-web-components/anypoint-dropdown","@anypoint-web-components/anypoint-button", -"@advanced-rest-client/arc-marked","@advanced-rest-client/arc-icons","static-site","static-site-generator", -"please-upgrade-node","dependency-graph","@babel/helper-create-class-features-plugin","@babel/helper-string-parser", -"var","const","@babel/helper-module-transforms","charcodes","6to5","@babel/helper-transform-fixture-test-runner","oidc", -"@sveltejs/adapter-auto","@react-native-community/eslint-config","@testing-library/react-native","react-document-title", -"react-github-button","enquire.js","bisheng","utility-types","rc-field-form","code generation","devkit","Angular DevKit", -"Angular CLI","babel-plugin-transform-object-assign","karma-webdriver-launcher", -"css-split-webpack-plugin","es6-promise-polyfill","babel-plugin-espower","markdown-it-prism","console-polyfill", -"simulate-event","mochawesome","@types/md5","jsonp","twbs","svgs","nums","mongoid","mapboxgl","lexxy","animejs", -"@tsparticles/interaction-particles-attract","@inquirer/select","@inquirer/expand","@antora/site-publisher", -"@testcontainers/postgresql","@tsparticles/shape-line","@tsparticles/interaction-external-slow","@applitools/driver", -"@observablehq/plot","@prisma/dev","@csstools/color-helpers","@storybook/addon-vitest","@tsparticles/plugin-rgb-color", -"vue-draggable-next","zoroaster","@headlessui/vue","loki","@tsparticles/plugin-hsl-color", -"@tsparticles/plugin-hex-color","grammy","globrex","embla-carousel-reactive-utils","@axe-core/playwright","grunt-svgmin", -"@modern-js/utils","@appium/schema","payload","@busy-hour/blaze","kuler","@tsparticles/shape-star","@tsparticles/slim", -"@tsparticles/interaction-external-repulse","@tsparticles/interaction-particles-collisions", -"@tsparticles/interaction-external-grab","@tsparticles/updater-size","@tsparticles/basic","@augment-vir/assert", -"rehype-expressive-code","astro-expressive-code","@tsparticles/shape-image","@tsparticles/shape-square", -"@tsparticles/shape-polygon","@tsparticles/move-parallax","@tsparticles/interaction-external-remove", -"@tsparticles/interaction-external-bounce","@astrojs/starlight","@tsparticles/interaction-particles-links", -"@expressots/core", -"plasmo","@tsparticles/updater-rotate","@tsparticles/updater-life","@tsparticles/shape-circle", -"@antora/playbook-builder","webdriver-js-extender","react-colorful","query-selector-shadow-dom","postcss-js", -"micromark-util-encode","lws-index","jest-preview","jasminewd2","inferno-create-element","html-parse-stringify", -"hast-util-to-parse5","hast-util-parse-selector","globals-docs","esdoc","epub2","dom7","character-reference-invalid", -"character-entities-html4","broccoli-middleware","body-scroll-lock","blocking-proxy","ansi-align", -"@walletconnect/legacy-modal","@vuepress/theme-default","@vuepress/plugin-nprogress","@vuepress/plugin-last-updated", -"@vuepress/plugin-active-header-links","@vuepress/markdown-loader","@vuepress/core","@tsparticles/updater-out-modes", -"@tsparticles/updater-opacity","@tsparticles/updater-color","@tsparticles/shape-emoji","@tsparticles/move-base", -"@tsparticles/interaction-external-push","@tinyhttp/logger","@tinyhttp/encode-url","@storybook/addon-backgrounds", -"@mui/private-theming","@juggle/resize-observer","@ionic/react","titanium","zarm","@enact/webos","@enact/ui", -"@mantine/code-highlight","tstyche","weui","recharts","react-native-collapsible","rapidoc","postcss-opacity-percentage", -"html-url-attributes","grommet","foundation-sites","rehype-katex","@jsonforms/vue","postcss-focus-visible","downshift", -"@commercetools-frontend/constants","jsdoc-parse","@mui/styled-engine","framer-motion","@nx/jest","@nx/cypress","zmq", -"yonode","yarnrc","xregexp","xml-js","wiredep","winreg","webtorrent","web3-compass","web3-capital","waterline", -"vue-hot-reload-api","vsce","viewerjs","victory-mouth","user-home","unusual-rope","typescript-plugin-css-modules","tv4", -"tslint-react","ts-pnp","toastify-react-native","tinper-bee","tdl","tail-iron-became5","sync-request","swiper","swig", -"swagger-ui-express","swagger-themes","sugar-policeman-entire","strongloop","strftime","st.db","sprity", -"spring-dust-wall-size","sockjs-client","snake-seven-recall-interior","small-grow-mix4","slow-voice-spell-pass", -"sink-mighty-orbit0","shortid","sentiment","secp256k1","seblakhotspicy","sat-local","sand-have-metal6","sails","routes", -"robotjs","restore-cursor","restify","require-all","request-promise-native","remap-istanbul","rehype-external-links", -"redux-thunk","redux-logger", -"redux-form","redoc","reactstrap","react-virtualized","react-tap-event-plugin","react-slick","react-number-format", -"react-native-vector-icons","react-i18next","react-error-overlay","react-dropzone","react-datepicker","react-bootstrap", -"raven","qunit-dom","quill","purgecss","progress-bar-webpack-plugin","pretty-error","prettier-plugin-svelte","pouchdb", -"postcss-prefix-selector","postcss-image-set-function","postcss-color-functional-notation","pm2","pie-case-nor-great", -"pdfkit","para-client-js","pa11y","overlayscrollbars","orchestrator","opencv","onchange","object-path","oas-normalize", -"nvmrc","nuke-cli","npm-check","normalize-wheel","nomnom","nolangjs","node-uuid","node-static","node-pre-gyp", -"node-inspector","node-dir","nightmare","ngrok","next-auth","nedb","nativescript","multiple-cucumber-html-reporter", -"move-wolf-throughout","motor-positive-spirit","monk","mockjs","meteor","memory-cache","mammoth","magmastream", -"loopback","lodash.map","lodash.isstring","lodash.isplainobject", -"lodash.flatten","localtunnel","localforage","local-web-server","live-server","liftoff","libnpmfund","libnpmdiff", -"levelup","leveldown","koa-static","knex","json-2-csv","jsdoc-api","jscpd","johnny-five","iview", -"is-potential-custom-element-name","ink","inert","imap","imagemagick","i","hyphenate-style-name","hyperquest", -"http-status","hope-slight-walk1","highland","hexo","hay-against-any-hurry","hast-util-to-jsx-runtime", -"hast-util-sanitize","happy-meant","gulp-zip","gulp-webserver","gulp-vinyl-zip","gulp-usemin","gulp-tsb","gulp-shell", -"gulp-notify","gulp-json-editor","gulp-jscs","gulp-inject","gulp-imagemin","gulp-htmlmin","gulp-gh-pages","gulp-csso", -"gulp-cssnano","gulp-concat-css","gulp-changed","gulp-buffer","guarapi","grunt-usemin","grunt-newer", -"grunt-contrib-less","grunt-contrib-csslint","grunt-concurrent","gradually-current-chief","government-letter-web3-till", -"googleapis","gmll","getmac","generic-pool","fur-race-web3-pale", -"fstream","fresh-dangerous","fluent-ffmpeg","flowbite","firan-logging","feature-rising-small7","fastclick", -"ethereumjs-util","eslintrc","es6-error","errorhandler","enzyme-adapter-utils","emmet","ember-cli-htmlbars", -"ember-cli-babel","elliptic","eleventy","element-resize-detector","electron-packager","electricity-death-web3-story", -"elasticsearch","dubnium","dropzone","doxdox-cli","documentdb","doc-detective-core","distance-its-clear-rate","dist", -"diff2html","deep-diff","dedupe","deasync","d3-selection","csv-stringify","csurf","cssdb","css-functions-list","cronnor", -"critical","crc","crawler","corcojs-qrcode","component-emitter","command-exists","clui","cli-ux","cli-table2", -"cli-spinner","chicken-fell-spread","cache-manager","bytebuffer","bulma","bs58","branch-body-web3-feel","bootstrap-sass", -"blessed","bizcharts","bip39","bark-needs-visit4","baqend","babel-plugin-transform-decorators-legacy","apn", -"angular-material","angular-cli", -"analsorhost-simple-bs","amqp","aid-guard1","action-cli","@wesleytodd/openapi","@uiw/react-overlay-trigger", -"@uiw/react-input","@uiw/react-button","@udecode/plate-core","@tinyhttp/url","@tinyhttp/type-is","@tinyhttp/send", -"@tinyhttp/router","@tinyhttp/res","@tinyhttp/proxy-addr","@tinyhttp/forwarded","@tinyhttp/etag","@tinyhttp/cors", -"@tinyhttp/cookie-signature","@testing-library/jest-native","@tanstack/react-query","@tanem/svg-injector", -"@scalar/api-reference","@otterhttp/send","@otterhttp/request","@oclif/config","@nomicfoundation/hardhat-chai-matchers", -"@ng-doc/core","@mui/x-date-pickers","@mui/material","@mui/icons-material","@middy/util","@mantine/utils", -"@mantine/notifications","@mantine/hooks","@mantine/core","@isaacs/cliui","@idux/cdk","@doc-tools/transform", -"@discordjs/rest","@cucumber/cucumber","@csstools/postcss-is-pseudo-class","@asyncapi/generator-react-sdk", -"@11ty/eleventy","@angular/platform-browser-dynamic","@angular/material","@angular/common","@angular/animations", -"@angular-devkit/core","iec","bits","gethub","testit","rollup-plugin-sass","rollup-plugin-eslint","compatiblity", -"setup-env","eslint-config-godaddy-react","rip-out","panorama","persist-schema","maths","lex","gulp-wrap-commonjs", -"flick","jquery-bridget","eslint-plugin-metafizzy","unidragger","imagesloaded","get-size","fizzy-ui-utils","ev-emitter", -"decrypt","WebGL","Canvas","WAAPI","splitText","cubic-bezier","easings","timeline","anime.js","anime", -"positioning engine","popper","rollup-plugin-flow-entry","poster","babel-plugin-inline-replace-variables", -"@khanacademy/flow-to-ts","@fezvrasta/tsc-silent","@ampproject/rollup-plugin-closure-compiler","consent-banner","cmp", -"consent-management-platform","cookie-banner","data-protection","user-privacy","consent-management","self-host","lgpd", -"ccpa","privacy","consent","@c15t/typescript-config","@libsql/kysely-libsql","@c15t/vitest-config","kysely-pglite", -"@opentelemetry/sdk-node","@c15t/translations","@orpc/contract","@orpc/openapi","@orpc/server","@c15t/logger", -"neverthrow","@orpc/otel","@orpc/zod","kysely","fumadb","@nolyfill/promise.any","@nolyfill/internal","fast-npm-meta", -"@types/yarnpkg__lockfile","@types/treeverse","@pnpm/workspace.find-packages","@pnpm/list","@napi-rs/magic-string", -"@jsdevtools/ez-spawn","version-linter","turborepo", -"exact-versions","oxc","sandboxed-module","physics","box2d","vite-plugin-typescript-transform","publisher", -"@antora/file-publisher","redirects","unloader","eslint-plugin-format","bun-types-no-globals","@farmfe/core", -"@farmfe/cli","pinch","pinch-to-zoom","pod-install","asciidoc","navigation","@asciidoctor/core","kapok-js", -"@antora/user-require-helper","@applitools/spec-driver-webdriver","@applitools/image","@applitools/req", -"@applitools/core","html-to-pdf","homework","assignments","pdf-generation","markdown-to-pdf","@types/listr","unsplash", -"imgpen","metal","vulkan","compositing","offscreen","skia","cargo-cp-artifact","string-split-by","@observablehq/stdlib", -"d3-geo-projection","apache-arrow","@types/d3","htl","interval-tree-1d","isoformat","browser-extension","webextension", -"webext","chrome-extension","vite-plugin-inspect","@types/jsesc","@types/chrome","@extend-chrome/storage", -"@extend-chrome/messages","windowed","vitest-fail-on-console","ts-blank-space","rollup-preserve-directives", -"react-lib-tools","react-docgen-typescript","@types/sharp", -"@tailwindplus/elements","@heroicons/react","@headlessui/tailwindcss","n1ed","@tinymce/tinymce-react","@webgpu/types", -"api gateway","apigateway","cloudfunctions","tap-arc","mock-tmp","@architect/eslint-config","@aws-lite/s3", -"@aws-lite/client","accelerate","common-stuff","@prisma/query-plan-executor","@electric-sql/pglite-socket", -"@mrleebo/prisma-ast","bplist-creator","base64-stream","schema-form","ui-component","input-validation","data-validation", -"data-collection","questionnaire","form-management","form-library","interactive-form","dynamic-form","form-rendering", -"form-component","survey-library","surveyjs","survey","2 factor","one-time-password","one time password","authenticator", -"google authenticator","topt","hotp","2fa","datagrid","virtual-core","@types/stringify-object","stringify-object", -"@types/validate-npm-package-name","@dotenvx/dotenvx","jsi","swift","cpp","macOS","tvOS","visionOS", -"react-native-worklets","webRTC","cam","webcam","camera","prepend-file","install-peers-cli","detectrtc", -"@types/webrtc","minimalistic","karma-opera-launcher","karma-fixture","clamp.js","better-npm-run","label", -"@walletconnect/events","@walletconnect/time","@types/istanbul-lib-report","developer tools","vibe-coding","context7", -"mcp","modelcontextprotocol","stt","tts","visual-model","azure-openai","vercel-ai","serwist","remark-mdx", -"mcp-hello-world","just-diff","fake-indexeddb","eslint-plugin-mdx","drizzle-kit","drizzle-dbml-generator","dpdm-fast", -"dbdocs","@types/rtl-detect","@types/pdfkit","@types/oidc-provider","@types/numeral","@types/ip","@types/crypto-js", -"@types/chroma-js","@peculiar/webcrypto","@next/bundle-analyzer","@lobehub/seo-cli","@lobehub/market-types", -"@lobehub/lint","@lobehub/i18n-cli","@huggingface/tasks","zustand-utils","word-extractor","use-merge-value", -"unstructured-client","ts-md5","tokenx","svix","ssrf-safe-fetch","rtl-detect","resolve-accept-language", -"react-wrap-balancer","react-virtuoso","react-scan","react-rnd","react-pdf","react-layout-kit","react-hotkeys-hook", -"react-confetti","pwa-install-handler","posthog-js", -"plaiceholder","pdf-parse","path-browserify-esm","partial-json","ollama","oidc-provider","officeparser","nuqs", -"nextjs-toploader","next-mdx-remote","modern-screenshot","model-bank","markdown-to-txt","lucide-react","langfuse-core", -"langfuse","langchain","jsonl-parse-stringify","js-sha256","i18next-resources-to-backend","gpt-tokenizer","drizzle-zod", -"dexie","countries-and-timezones","brotli-wasm","@xterm/xterm","@virtuoso.dev/masonry","@vercel/speed-insights", -"@vercel/functions","@vercel/edge-config","@vercel/analytics","@trpc/react-query","@trpc/next","@trpc/client", -"@t3-oss/env-nextjs","@serwist/next","@saintno/comfyui-sdk","@react-spring/web","@react-pdf/renderer", -"@opentelemetry/winston-transport","@opentelemetry/exporter-jaeger","@next/third-parties","@neondatabase/serverless", -"@lobehub/ui","@lobehub/tts","@lobehub/market-sdk","@lobehub/icons","@lobehub/editor","@lobehub/chat-plugins-gateway", -"@lobehub/chat-plugin-sdk","@lobehub/charts","@lobehub/analytics","@lobechat/web-crawler","@lobechat/utils", -"@lobechat/python-interpreter","@lobechat/prompts","@lobechat/observability-otel","@lobechat/model-runtime", -"@lobechat/file-loaders","@lobechat/fetch-sse","@lobechat/electron-server-ipc","@lobechat/electron-client-ipc", -"@lobechat/database","@lobechat/context-engine", -"@lobechat/const","@lobechat/agent-runtime","@langchain/community","@khmyznikov/pwa-install", -"@icons-pack/react-simple-icons","@huggingface/inference","@google/genai","@formkit/auto-animate","@fal-ai/client", -"@cyntler/react-doc-viewer","@clerk/themes","@clerk/nextjs","@clerk/localizations","@cfworker/json-schema", -"@azure-rest/ai-inference","@anthropic-ai/sdk","@ant-design/pro-components","hmac512","hmac256","@oxc-project/runtime", -"composition-api","kanban","vue-draggable","drag-and-drop","vue-next","@types/sortablejs","@tailwindcss/ui","otel", -"evals","rag","embeddings","vectorstore","agents","llms","llm","@openrouter/ai-sdk-provider","@internal/external-types", -"@internal/types-builder","@internal/ai-sdk-v5","@internal/ai-sdk-v4","@internal/ai-v6","@internal/lint", -"@ai-sdk/openai","@ai-sdk/azure","@ai-sdk/provider-utils-v6","@ai-sdk/provider-utils-v5","@mastra/schema-compat", -"@ai-sdk/ui-utils-v5","@ai-sdk/provider-v6","@ai-sdk/provider-v5","@isaacs/ttlcache","hono-openapi","@lukeed/uuid", -"js-tiktoken","@a2a-js/sdk","radash","graphiql","conversational-ai","conversational-ui","gpt-4","gpt4","ai-copilot", -"ai-assistant","ai-chatbot", -"ai-chat","copilot","assistant","ai-sdk","@assistant-ui/x-buildutils","assistant-stream", -"@radix-ui/react-use-escape-keydown","@radix-ui/react-use-callback-ref","@radix-ui/react-primitive", -"@radix-ui/react-popover","@radix-ui/react-dropdown-menu","@radix-ui/react-context","@radix-ui/react-compose-refs", -"@radix-ui/primitive","@assistant-ui/store","@assistant-ui/tap","assistant-cloud","intellisense","suggestions","IDE", -"yarn-s","usually","temp-context","spawncommand","snapshot-context","reloquent","promto","makepromise", -"eslint-config-artdeco","erotic","documentary","catchment","argufy","@zoroaster/types","@zoroaster/reducer","@wrote/rm", -"@wrote/exists","@depack/render","@artdeco/scripts.json","@artdeco/erte","@artdeco/clean-stack","@a-la/fixture-babel", -"@a-la/fixture-alamode","alamode","@zoroaster/mask","@zoroaster/assert","world-iso-country-names", -"world-iso-country-codes","world-iso-codes","world-country-telephone-prefixes","world-country-telephone-codes", -"world-country-names","world-country-flags","world-country-codes","world-countries","telephone-prefixes", -"telephone-codes","phone-prefixes","phone-codes","emoji-flags","iso-countries","iso-country-telephone-prefixes", -"iso-country-telephone-codes","iso-country-names", -"iso-country-codes","iso-codes","iso","country-iso-codes","countries","country-telephone-prefixes", -"country-telephone-codes","country-names","country-flags","country-codes","country-code","ui-framework","nuxt-ui", -"vitest-environment-nuxt","@tanstack/table-core","@nuxt/test-utils","@nuxt/module-builder","@nuxt/eslint-config", -"vue-component-type-helpers","vaul-vue","unplugin-vue-components","unplugin-auto-import","tailwind-variants","reka-ui", -"motion-v","knitwork","embla-carousel-wheel-gestures","embla-carousel-vue","embla-carousel-fade", -"embla-carousel-class-names","embla-carousel-autoplay","embla-carousel-auto-scroll","embla-carousel-auto-height", -"colortranslator","@vueuse/shared","@tiptap/vue-3","@tiptap/suggestion","@tiptap/starter-kit","@tiptap/pm", -"@tiptap/markdown","@tiptap/extension-placeholder","@tiptap/extension-node-range","@tiptap/extension-mention", -"@tiptap/extension-image","@tiptap/extension-horizontal-rule","@tiptap/extension-floating-menu", -"@tiptap/extension-drag-handle-vue-3","@tiptap/extension-drag-handle","@tiptap/extension-collaboration", -"@tiptap/extension-code","@tiptap/extension-bubble-menu","@tiptap/core","@tanstack/vue-table","@nuxtjs/color-mode", -"@nuxt/schema","@nuxt/kit","@nuxt/icon","@nuxt/fonts","@internationalized/number","@internationalized/date", -"@iconify/vue","bundle-size","tsm","eslint-plugin-redos-detector", -"@oxc-node/cli","algo","prettier-plugin-sh","prettier-plugin-pkg","@types/eslint-config-prettier","@fast-check/vitest", -"@testing-library/vue","fingers","two","Handling","Gesture","Maps","Leaflet","gulp-better-rollup","desm", -"@reporters/silent","@fastify/pre-commit","mock-spawn","convex","xhr2-cookies","events.once","blue-tape","graphql-ws", -"@types/isomorphic-form-data","@matteo.collina/snap","tiny-lru","single-user-cache","mqemitter","graphql-jit", -"@fastify/static","emoji-datasource","react-storybook","storybook-addons","@loki/target-native-ios-simulator", -"@loki/target-native-android-emulator","@loki/target-chrome-docker","@loki/target-chrome-app","@loki/runner", -"@loki/integration-vue","@loki/integration-react-native","@loki/integration-react","@udecode/plate-utils","deno2node", -"@grammyjs/types","@ckeditor/ckeditor-cloud-services-collaboration","@ckeditor/ckeditor5-operations-compressor", -"@ckeditor/ckeditor5-revision-history","ckeditor5-collaboration","glob2regx","fast-equals","@types/decompress", -"unplugin-lightningcss","unplugin-ast","unocss","rolldown-plugin-require-cjs","rolldown-plugin-dts-snapshot", -"@vitejs/devtools","@unocss/eslint-plugin","@sxzz/test-utils","@sxzz/prettier-config","@sxzz/eslint-config","unrun", -"unconfig-core","import-without-cache", -"@scripts/jest-config","@scripts/build","modern.js","modern","@scripts/rstest-config","@modern-js/types", -"@modern-js/rslib","@rslib/core","rslog","list-dependents-cli","peowly","@humanwhocodes/gitignore-to-minimatch","cancan", -"ibac","rbac","abac","permissions","@casl/dx","@ucast/mongo2js","body scroll lock upgrade","egjs","flicking", -"ttypescript","ts-mock-imports","rollup-plugin-prototype-minify","pvu","print-sizes","print-coveralls","postcss-clean", -"karma-typescript-es6-transform","jsdoc-to-mdx","http-serve","html-to-react","egjs-jsdoc-template", -"@types/resize-observer-browser","@egjs/release-helper","@egjs/flicking-plugins","@daybrush/jsdoc","@egjs/list-differ", -"@egjs/imready","@egjs/component","@egjs/axes","@cfcs/core","graphQL","content management", -"@hyrious/esbuild-plugin-commonjs","@payloadcms/eslint-config","@monaco-editor/react","@types/range-parser", -"graphql-http","@payloadcms/translations","console-table-printer","bson-objectid","dataloader","qs-esm","blaze", -"event-driven","@asteasolutions/zod-to-openapi","rgv","immobiliarelabs","immobiliare","ci/cd","backstage", -"@backstage/plugin-catalog-node", -"@backstage/plugin-catalog-common","@backstage/cli","@backstage/catalog-model","@backstage/backend-test-utils", -"express-promise-router","@backstage/integration","@backstage/config","@backstage/backend-plugin-api", -"@types/react-router","@tsparticles/interaction-external-connect","@tsparticles/interaction-external-attract", -"@tsparticles/interaction-external-bubble","@tsparticles/interaction-external-pause","@tsparticles/updater-stroke-color", -"@tsparticles/plugin-easing-quad","@react-native-macos/virtualized-lists","onesy","firefoxos","amaui","@amaui/ui-react", -"@types/deep-eql","vitest-browser-react","@radix-ui/react-icons","@radix-ui/react-checkbox","@floating-ui/utils", -"tabbable","pigna","piña","linkedom","mdast-util-directive","bcp-47","@pagefind/default-ui","harmonies","mix","cmyk", -"color-names","lch","hsv","ac-colors","testrunner","@web/test-runner-core","sander","fuzzysearch","strata", -"@types/http-cache-semantics","@types/common-ancestor-path","remark-code-titles","astro-scripts","rehype-toc", -"@types/dlv","deterministic-object-hash","@astrojs/internal-helpers","http-cache-semantics","@capsizecss/unpack", -"@astrojs/telemetry","@astrojs/compiler","@oslojs/encoding","yocto-spinner","zod-to-ts","unstorage","piccolore", -"magicast","unifont","fontace", -"flattie","dset","dlv","ts-expose-internals","eme","mse","player","music","@storybook/addon-mdx-gfm", -"less-plugin-sass2less","@storybook/cli","static-server","@types/events","@iconify/react","browser-extensions", -"@plasmo/framework-shared","@plasmo/utils","@plasmo/constants","@plasmo/config","@plasmohq/init","@plasmohq/parcel-core", -"@plasmohq/parcel-config","node-object-hash","mnemonic-id","@parcel/watcher","@parcel/package-manager","@parcel/fs", -"@parcel/core","@expo/spawn-async","drag & drop","drag drop","blob-to-buffer","@dataui/crud-util","@dataui/crud-request", -"eyes-sdk","serviceworker","rewrite-imports","is-uuid","@types/form-data","@types/eslint-plugin-prettier","滚动条", -"vue-plugin","vue-scrollbar","vue-scroll","vue-perfect-scroll","perfect-scroll","scss-loader","svelte-loader", -"copy-text-to-clipboard","mutation-observer","sidecar","code spliting","@types/enzyme-adapter-react-16","detect-node-es", -"merge refs","createRef","useRef","@tsparticles/plugin-emitters-shape-square", -"@tsparticles/plugin-emitters-shape-circle","@tsparticles/interaction-external-trail","@tsparticles/plugin-absorbers", -"@tsparticles/updater-twinkle","@tsparticles/updater-destroy","@tsparticles/plugin-emitters", -"@tsparticles/updater-wobble","@tsparticles/updater-tilt","@tsparticles/updater-roll","@tsparticles/shape-text", -"get-nonce","@types/body-scroll-lock","@bedrock-layout/use-forwarded-ref","react-spring","git-branch-is","iframe", -"youtube-iframe","eslint-plugin-react-native","@storybook/react-native","@react-native-community/bob", -"d3-interpolate-path","indeterminate","progressbar","pie","circle","progressindicator","image-viewer","image-gallery", -"quicklook","shouldComponentUpdate","shallow-equal-fuzzy","nano-equal","simple-routing","smarttv","smart-tv","wai-aria", -"color-picker","use-throttled-effect","parcel-plugin-css-to-string","jest-esm-jsx-transform","goober","@types/unzipper", -"@types/toposort","@readme/standards","@readme/better-ajv-errors","toposort","@oclif/plugin-autocomplete", -"@actions/core","hammer","tappable","rc-tools","gulp-streamify","shadowdom","queryselector","babelrc-rollup", -"@wdio/selenium-standalone-service","cssinjs","is-hexadecimal","is-decimal","is-alphanumerical","nth","nth-child", -"sniff","mobilegrade","grunt-jasmine-node","dangerous","tagfilter","micromark-extension","lws-middleware", -"serve-index-75lb", -"lo-dash","lo","engine-handlebars","engine-base","log-utils","preview jest","postcss-trolling","animate-sass", -"@stitches/react","github-files-fetcher","angular-eslint","@angular-devkit/build-angular","docstrap","bootswatch", -"dark mode","postcss-preset-infima","gulp-rtlcss","createVNode","vnode","inferno-hyperscript","icss","prometheus", -"http-terminate","http-shutdown","graceful-shutdown","force","tagname","whitespace","white-space","inter-element", -"developer","mdc","proposal","ECMAScript2017","ECMAScript8","ECMAScript2016","ECMAScript7","ECMAScript2015", -"ECMAScript6","esdoc-importpath-plugin","ice-cap","color-logger","🐐","goat","interpolate","escaping","volume","novel", -"node-novel","epub-maker2","epub-maker","comic","chapter","books","book","crlf-normalize","array-hyper-unique", -"prettier-check","eslint-config-standard-react","ssr-window","rollup-plugin-executable","cli-prompts-test", -"docsify-server-renderer","yargonaut", -"cp-file","eslint-plugin-playwright","rollup-plugin-async","autoprefixer-stylus","medium-zoom","tweezer.js","tinydate", -"detector","napa","aws-cognito","completion","csstree","mediaquery","is-whitespace","color-name","invalid","html4", -"babel-plugin-optimize-starts-with","mocha-jshint","broccoli-node-api","@types/underscore.string","@types/sane", -"@types/findup-sync","@types/esm","@types/console-ui","resolve-path","jasmine-ts","jasmine-co","gutenberg","wordpress", -"@wordpress/element","ethereum-test-network","@walletconnect/jsonrpc-http-connection","@walletconnect/jsonrpc-provider", -"@walletconnect/legacy-client","@types/qrcode","@walletconnect/crypto","dapp","cryptocurrency","jsonrpc","walletconnect", -"wallet","@ethersproject/address","@walletconnect/window-metadata","@walletconnect/window-getters", -"@walletconnect/safe-json","detect-browser","vuepress-plugin-smooth-scroll","@types/diacritics", -"vuepress-html-webpack-plugin","@vue/babel-preset-app","vue-server-renderer","webpack-chain","dropbox","tus", -"resumable uploads","webdav","tus-js-client","grant","express-prom-bundle","express-interceptor", -"@aws-sdk/s3-presigned-post","@aws-sdk/lib-storage","@tsparticles/updater", -"tsparticles-shape","@tsparticles/move","@tsparticles/interaction","http-status-emojis","@types/svg-parser","snake-case", -"infrastructure","graphqL","jam","koajs","content management framework","cmf","strapi","@types/webpack-hot-middleware", -"eslint-config-custom","@strapi/ts-zen","@strapi/content-type-builder","@strapi/typescript-utils", -"@strapi/review-workflows","@strapi/content-releases","@strapi/content-manager","@strapi/data-transfer", -"@strapi/permissions","get-latest-version","@strapi/generators","@strapi/cloud-cli","@strapi/database","@strapi/openapi", -"@types/nodemon","@strapi/upload","@strapi/logger","@strapi/utils","@strapi/types","@strapi/email","@strapi/admin", -"@strapi/i18n","@strapi/core","yalc","pothos","@pothos/test-utils","hotreload","webpack-plugin-serve", -"@types/module-alias","jest-location-mock","core-js-pure","hugo","gatsby","package-manager","npmjs", -"continuous-integration","dependency-management","p-locate","p-filter","@zmotivat0r/o0","frameworks","crud-generator", -"@nestjsx/util","@nestjsx/crud-request","unstyled","Vue","@types/react-router-config","@total-typescript/shoehorn", -"react-loadable-ssr-addon-v5-slorber","@docusaurus/utils-validation", -"@docusaurus/utils-common","@docusaurus/mdx-loader","react-router-config","@docusaurus/bundler","@docusaurus/logger", -"@docusaurus/babel","combine-promises","react-loadable","unixify","requireg","global-dirs","fs.extra", -"@asyncapi/multi-parser","@asyncapi/generator-hooks","@asyncapi/generator-helpers","@asyncapi/generator-components", -"@antora/expand-path-helper","iphone","tidev","titanium-sdk","accessible react select","react dropdown","react select", -"eslint-config-enact-proxy","@enact/ui-test-utils","@enact/docs-utils","@enact/spotlight","zarm-mobile","zarm-ui", -"@zarm-design/cli","@floating-ui/react-dom-interactions","@zarm-design/icons","@use-gesture/react","@zarm-design/bem", -"better-scroll","backendless.com","bannerize","backendless-console-sdk","backendless-rt-client","backendless-request", -"control-panel","eslint-plugin-astro","stability","bugsnag","iserror","@bugsnag/plugin-react-native-unhandled-rejection", -"@bugsnag/plugin-react-native-session","@bugsnag/plugin-react-native-hermes", -"@bugsnag/plugin-react-native-global-error-handler","@bugsnag/plugin-react-native-event-sync", -"@bugsnag/plugin-react-native-client-sync","@bugsnag/plugin-react","@bugsnag/plugin-network-breadcrumbs", -"@bugsnag/plugin-console-breadcrumbs","@bugsnag/delivery-react-native","@bugsnag/core","unist-util-remove-position", -"user-agents","@types/cls-hooked","@intlayer/core","@intlayer/chokidar","testops","allure","eslint-plugin-no-null", -"@types/babel__preset-env","tiptap","rich-text-editor","command-center","evaluation","template-expression", -"template-syntax","expressions","ibyar","aurora","@ibyar/decorators","synchronize","sync-threads","make-synchronous", -"make-synchronized","esbuild-react-compiler-plugin","esbuild-plugin-svgr","@types/negotiator", -"unist-util-visit-children","unist-util-remove","remark-smartypants","remark-reading-time","remark-math", -"react-medium-image-zoom","react-compiler-runtime","estree-util-value-to-estree","better-react-mathjax", -"@theguild/remark-mermaid","@shikijs/twoslash","@napi-rs/simple-git","@formatjs/intl-localematcher","weixin","wechat", -"picklog","gulp-convert-css-var","win32","ready","sockets","image-edit","chunk","uploader","rollup-plugin-string", -"rollup-plugin-module-replacement","postcss-prefixer","postcss-hexrgba","postcss-css-variables","babel-plugin-html-tag", -"tdesign","vite-plugin-tdoc","tdesign-publish-cli","rollup-plugin-styles","rollup-plugin-static-import", -"rollup-plugin-ignore-import","qrcode.vue","lodash.upperfirst","dom-parser","@tdesign/theme-generator", -"@tdesign/site-components","@soerenmartius/vue3-clipboard","@rollup/plugin-url","tdesign-icons-vue-next", -"@use-gesture/vanilla","ng-sortable","testcafe-browser-provider-saucelabs", -"riot.js","riotjs","data binding","minimalist","custom tags","rollup-plugin-riot","eslint-config-riot","curri","cumpa", -"bianco.query","bianco.attr","@wdio/sauce-service","@wdio/mocha-framework","@riotjs/util","@riotjs/register", -"@riotjs/prettier-config","@riotjs/compiler","@riotjs/dom-bindings","eslint-plugin-react-perf", -"eslint-config-airbnb-extended","@types/d3-time-format","@types/d3-interpolate","@stryker-mutator/vitest-runner", -"@stryker-mutator/typescript-checker","@storybook/react-vite","@storybook/builder-vite","@recharts/devtools", -"victory-vendor","decimal.js-light","@types/common-tags","md-writer","grow","autosize","@preconstruct/cli","use-latest", -"use-composed-ref","swipe-actions","swipe-to-delete","listview","touchscreen","swipeable","rollup-plugin-local-resolve", -"accordion","collapsible","@react-native/babel-preset","swagger themes","openapi explorer","openapi renderer", -"openapi viewer","openapi themes","openapi ui","swagger ui","Web Component","Custom Element","inspectpack", -"babel-plugin-template-html-minifier","xml-but-prettier","base64-arraybuffer","@apitools/openapi-parser","pwa-assets", -"mstile","image-generation","splash-screen","splashscreen", -"launch-image","chromium","@types/pretty","find-process","@storybook/addon-webpack5-compiler-swc", -"@base-ui-components/react","@storybook/test-runner","axe-playwright","@next/font","zepto","grunt-jekyll","dart-sass", -"graphical user interface","interaction","screen reader tags","keyboard navigation","WCAG 2.1","atomic design", -"app templates","design patterns","sticker sheets","theming","grommetux","grommet.io","testcafe-react-selectors", -"tarball-extract","react-shadow","jest-styled-components","grommet-theme-hpe","babel-plugin-transform-imports", -"@testing-library/testcafe","@storybook/source-loader","@storybook/manager-api","@storybook/addon-toolbars", -"grommet-icons","gradients","gradient","@bokub/prettier-config","tinygradient","handlebars-helper-slugify", -"handlebars-helper-rel","vinyl-named","undertaker-forward-reference","sassy-lists","motion-ui","is-empty-object", -"gulp4-run-sequence","gulp-sass-lint","gulp-check-deps","gulp-cache-bust","gulp-add-src","doiuse","corejs-typeahead", -"chai-jquery","@pouchlab/ui","pane","cupertino","gulp-open","elapsed-time-logger","aws-lambda","@smithy/types", -"accessor","valid","RegExp#flags", -"defineProperty","length","pnpm9","Uint8ClampedArray","description","robust","findLast","regular expressions", -"code points","positive","sameValueZero","collection.es6","some","group","Float64Array","reuse","handlers","groupBy", -"interrupts","toobject","enumerable","Array.prototype.findLast","negative","-0","tostringtag","0","Object.fromEntries", -"private data","ArrayBuffer","Function.prototype.name","coercible","operating-system","Symbol.toStringTag","censor", -"byteLength","workspace:*","take","Float32Array","rangeerror","Int32Array","Int16Array","last","findLastIndex", -"Array.prototype.contains","getter","trimRight","ArrayBuffer#slice","zero","byteOffset","ArrayBuffer.prototype.slice", -"tester","[[Prototype]]","negative zero","preserve-symlinks","typesafe","toSorted","Array.prototype.flat","Object", -"sharedarraybuffer","syntaxerror","weakmap","isConcatSpreadable","exit-code","Uint16Array", -"setter","Array.prototype.filter","Uint32Array","matchAll","channel","descriptors","configurable","Array","Int8Array", -"Reflect.getPrototypeOf","typeerror","@drftgyhuji7npm/repellendus-eum-et-itaque", -"@drftgyhuji7npm/rem-sint-necessitatibus-possimus","@asdfgertyjhnpm/nesciunt-molestias-reprehenderit-occaecati", -"docz-theme-default","docz-utils","docz","ng-packagr","@angular-eslint/schematics", -"@angular-eslint/eslint-plugin-template","@angular-eslint/eslint-plugin","@ionic/cli-framework-output", -"@whatwg-node/promise-helpers","@envelop/instrumentation","@envelop/types","webOS","splash screen","resources", -"@types/slice-ansi","@trapezedev/project","@capacitor/cli","@aneuhold/main-scripts","@aneuhold/local-npm-registry", -"@aneuhold/core-ts-lib","@aneuhold/core-ts-api-lib","adonisjs","@adonisjs/prettier-config","@adonisjs/eslint-config", -"@types/test-console","@adonisjs/assembler","ts-node-maintained","@adonisjs/tsconfig","@japa/file-system", -"@japa/expect-type","@japa/snapshot","@japa/runner","@japa/assert","edge.js","argon2","error-stack-parser-es", -"@adonisjs/http-server","@adonisjs/application","@adonisjs/encryption","@adonisjs/bodyparser","@poppinss/macroable", -"@poppinss/dumper","@poppinss/colors","@adonisjs/logger","@adonisjs/health","@adonisjs/events","@adonisjs/config", -"@poppinss/utils","youch-terminal","@adonisjs/repl", -"@adonisjs/hash","@adonisjs/fold","parse-imports","@adonisjs/env","@adonisjs/ace","youch","crawler-detection", -"app-detection","ai-detection","bot-detection","os-detection","device-detection","browser-detection","client-hints", -"ua-is-frozen","is-standalone-pwa","detect-europe-js","deserialize","deserialization","@type-challenges/utils", -"hyperlink","tex","@types/katex","software quality","architecture decision record","architecture decision", -"architectural decision record","architectural decision","any decision record","decision record","adr","telegraf", -"datadog","dogstatsd","tokenize","symlink-dir","@vue/cli-plugin-unit-mocha","@types/moment-locales-webpack-plugin", -"@commercetools/composable-commerce-test-data","thread-loader","moment-locales-webpack-plugin","graphql-request", -"babel-plugin-formatjs","@rollup/plugin-graphql","@formatjs/cli-lib","@commercetools/http-user-agent", -"@commercetools-frontend/mc-html-template","@commercetools-frontend/mc-dev-authentication", -"@commercetools-frontend/babel-preset-mc-app","@commercetools-frontend/assets", -"@commercetools-frontend/application-config","@commercetools-frontend/application-components","GraphQL","TSX","JSX", -"JSONC","toolchain","runstorm","execute-in-browser","typed-event-target","deepcopy-esm","trackpad","ring","pseudos", -"pointer","pen","mice","keyboards","focus","multiple selection","WAI-ARIA","omnibox","typeahead","autosuggest", -"enhanced input","flow-coverage-report","babel-plugin-no-side-effect-class-properties","compute-scroll-into-view", -"sort-array","tehtarik3","rengginangbasi","belalangkayu","popmotion","react animation","@thednp/dommatrix", -"@radix-ui/react-dialog","motion-utils","motion-dom","Storybook","Unit Testing","zuul-ngrok","bulk-require","browzers", -"zuul-localtunnel","tap-finished","stack-mapper","shallow-copy","istanbul-middleware","firefox-profile","express-state", -"char-split","JSON2","@externs/nodejs","DSL","runtime types","schemas","express-useragent","@types/express-useragent", -"binding","libzmq","ømq","0mq","zeromq","say","cowsay","pad-component","@jonahsnider/benchmark","registry-url", -"yeoman-character","humanize-string","yeoman-doctor","npm-keyword","root-check","parse-help","fullname","cli-list", -"lenient","false", -"true","no","yes","github-username","sinon-test","which-package-manager","mem-fs","grouped-queue","fly-import", -"@yeoman/conflicter","eslint-plugin-no-async-without-await","eslint-plugin-flow-vars","eslint-config-kittens", -"eslint-config-fb-strict","babel-preset-node5","babel-preset-es2015-node4","roadrunner","request-capture-har", -"repeating","loud-rejection","death","babel-plugin-transform-inline-imports-commonjs","yargs-test-extends", -"browserslist-generator","json2yaml","yaml2json","YAML","jest-ts-webcompat-resolver","terminal-emulator", -"xterm-benchmark","@types/utf8","@types/express-ws","@types/deep-equal","interpreter","scxml","finite automata", -"finite state machine","state machine","statechart","@scion-scxml/test-framework","regular expression", -"unicode-property-value-aliases","babel-plugin-transform-xregexp","babel-plugin-array-includes", -"@unicode/unicode-14.0.0","@babel/plugin-proposal-unicode-property-regex","func-xml","find-cache-directory", -"XMLSerializer","DOMParser","xmltest","dom-js","node-expat","conversion","converting","convertor","transforming", -"Javascript","processing instruction","doctype","CDATA","cdata","XML","globify", -"codacy-coverage","cash-cat","sylk","dif","dbf","xlsb","markdown-spellcheck","@sheetjs/uglify-js","exit-on-epipe", -"codepage","adler-32","crc-32","wmf","ssf","parse-headers","is-function","scrape","x-ray-parse","x-ray-crawler", -"enstore","WebSocket","HyBi","atomic","writeFile","linewrap","wordbreak","file manifest","offline","fetch requests", -"service worker","workboxjs","workbox","workbox-build","soft","return","newline","new-line","carriage","wiredep-cli", -"propprop","bower-config","winston3","logrotate","log-rotate","daily-rotate-file", -"@alcalzone/release-script-plugin-license","@alcalzone/release-script","file-stream-rotator","hock","cross-spawn-async", -"abstract-winston-transport","one-time","@dabh/diagnostics","unit.js","isexe","Promises/A+","cujo","microtime", -"exorcist","buster","poly","url-search-params","a gogo","web worker", -"webrtc data","web torrent","torrent","swarm","peers","peer-to-peer","p2p","mad science","bittorrent client", -"bittorrent","webtorrent-fixtures","path-esm","network-address","disc","chrome-net","bittorrent-tracker","airtap-system", -"airtap-manual","@webtorrent/semantic-release-config","ut_pex","ut_metadata","unordered-array-remove","uint8-util", -"torrent-piece","torrent-discovery","throughput","speed-limiter","random-iterate","parse-torrent","memory-chunk-store", -"lt_donthave","load-ip-set","join-async-iterator","immediate-chunk-store","fsa-chunk-store","fs-chunk-store", -"cross-fetch-ponyfill","create-torrent","cpus","chunk-store-iterator","cache-chunk-store","bittorrent-protocol", -"bittorrent-dht","bitfield","addr-to-ip-port","@webtorrent/http-node","@thaunknown/simple-peer","@silentbot1/nat-api", -"comet","networking","yaeti","typedarray-to-buffer","externals","@types/flat","dts-cli","prettier-plugin-package", -"eslint-config-shellscape","@types/webpack-sources","hot-reloading","reloading","@types/sockjs-client", -"@types/connect-history-api-fallback","@types/serve-static","@types/serve-index", -"bonjour-service","@types/bonjour","@types/sockjs","@types/on-finished","@fastify/express","@types/envinfo", -"@webpack-cli/configtest","@webpack-cli/info","analyzer","eslint-config-th0r-react","@carrotsearch/foamtree", -"postcss-icss-values","eslint-config-th0r","lodash.partial","xxhashjs","webassembly-feature","wast-loader", -"rehype-sanitize","meriyah","hash-wasm","coffee-loader","bundle-loader","assemblyscript","@types/xxhashjs", -"@types/neo-async","@codspeed/core","chrome-trace-event","acorn-import-phases","@webassemblyjs/wasm-parser", -"@webassemblyjs/wasm-edit","@webassemblyjs/ast","sol","web3-react-task","telegram-assistant", -"tailwind-animation-extension","ssl-http-with-docker","micro-ed25519-hdkey","kva-email-service","@solana/web3.js", -"@solana/spl-token","Ethereum","@truffle/hdwallet-provider","eslint-config-base-web3","web3-providers-ipc","ganache", -"in3","web3-providers-http","web3-rpc-providers","web3-providers-ws","web3-eth-personal","web3-eth-contract", -"web3-eth-accounts","web3-rpc-methods","web3-validator","web3-eth-iban","web3-eth-ens","web3-eth-abi","web3-errors", -"web3-utils","web3-types","web3-core","web3-net","web3-eth","sv-selenium", -"spawn-mocha-parallel","promise-simple","mu2","gulp-debug","bdd-with-opts","vargs","active-record","waterline-utils", -"waterline-schema","lodash.issafeinteger","encrypted-attr","win-spawn","outpipe","exec-sh","walkSync","sys", -"foreachasync","todomvc-app-css","de-indent","nightwatch-helpers","faked-promise","chromedriver","@vue/language-core", -"@types/nightwatch","@pinia/colada","unplugin-utils","muggle-string","ast-walker-scope","@vue-macros/common", -"pug-plain-loader","markdown-loader","@types/webpack-merge","@types/mini-css-extract-plugin","@intlify/vue-i18n-loader", -"intlify","@intlify/devtools-types","@intlify/core-base","@intlify/shared","@babel/plugin-syntax-pipeline-operator", -"@vue/runtime-dom","vscode-oniguruma","@types/iconv-lite","@types/clone","@types/url-join","@types/yazl","@types/read", -"typed-rest-client","parse-semver","keytar","load-plugins","vorpal-repl","vorpal-less","gulp-xo","node-localstorage", -"birpc","@vitest/pretty-format","why-is-node-running","@vitest/snapshot","@types/postcss-prefix-selector", -"@types/markdown-it-container","@mdit-vue/plugin-frontmatter","@mdit-vue/plugin-component","@types/markdown-it-emoji", -"@mdit-vue/plugin-headers", -"@mdit-vue/plugin-title","markdown-it-mathjax3","@mdit-vue/plugin-toc","@mdit-vue/plugin-sfc","@mdit-vue/shared", -"@iconify/utils","@iconify-json/simple-icons","@shikijs/types","@shikijs/core","focus-trap","Next.js","Remix","api-rest", -"rest-api","file-system-based","express-router","vite-plugin-rest-api","vite-plugin-api","api-routers","api-router", -"vite-plugin-builder","slash-path","dotenv-local","build-tool","dev-server","vtree","run-browser","x-is-string", -"x-is-array","ev-store","browser-split","classic","vinyl-adapter","vinyl-sourcemap","value-or-function","to-through", -"stream-composer","resolve-options","lead","is-valid-glob","fs-mkdirp-stream","remove-trailing-separator","teex", -"viewer.js","postcss-header","create-banner","err","extsprintf","@vercel-internals/get-package-json", -"@types/json-parse-better-errors","@alex_neo/jest-expect-message","@vercel-internals/constants", -"@types/jest-expect-message","json-parse-better-errors","@edge-runtime/node-utils","@vercel-internals/types", -"@types/write-json-file","@types/npm-package-arg","@types/load-json-file","@vercel/fs-detectors","line-async-iterator", -"@vercel/error-utils","@vercel/frameworks","@inquirer/password", -"@inquirer/checkbox","http-proxy-node16","@tootallnate/once","@inquirer/search","git-last-commit","pcre-to-regexp", -"@vercel/client","@types/dotenv","@types/chance","jaro-winkler","@types/title","@sentry/node","promisepipe","epipebomb", -"@vercel/remix-builder","@vercel/static-build","@vercel/detect-agent","@vercel/build-utils","@vercel/hydrogen", -"@vercel/backends","@vercel/redwood","@vercel/fastify","@vercel/express","@vercel/python","@vercel/nestjs", -"@vercel/elysia","@vercel/rust","@vercel/ruby","@vercel/node","@vercel/next","@vercel/hono","@vercel/blob","@vercel/koa", -"@vercel/fun","@vercel/h3","@vercel/go","@vant/icons","@vant/eslint-config","@vant/cli","@vant/area-data", -"vitest-canvas-mock","diffable-html","@vant/popperjs","@vant/use","sanitise","githook","find-parent-dir","diffs","bundt", -"rfc9562","is-async-supported","is-typed-array","is-generator-function","user agent","ua-parser","ua-parse","ua", -"browserscope","yamlparser","userprofile","urlopen","string.prototype.towellformed","@types/selfsigned","@types/proxy", -"@tsconfig/node18","@eggjs/oxlint-config","ylru","formstream","sauce-test","sauce-browsers","RFC6570","RFC 6570", -"RFC3986","RFC 3986","query string","unified resource identifier","unified resource locator","url template", -"uri template","url manipulation","uri manipulation","url mutation","uri mutation","urn","notifier","fixture-stdout", -"is-npm","pupa","uncompress","match-stream","pullstream","visit","nlcst","xast","non-repeating","unique-random", -"@types/extend","trough","jsondiffpatch","dns-packet","@metcoder95/https-pem","browserify-header","pretty-bytes-cli", -"untyped","mkdist","citty","parsel-js","media-query-fns","@uiw/react-tree-checked","@uiw/react-tree", -"@uiw/react-transfer","@uiw/react-tooltip","@uiw/react-time-picker","@uiw/react-textarea","@uiw/react-tag", -"@uiw/react-tabs","@uiw/react-table","@uiw/react-switch","@uiw/react-steps","@uiw/react-split","@uiw/react-slider", -"@uiw/react-select","@uiw/react-search-tree","@uiw/react-search-select","@uiw/react-rate","@uiw/react-radio", -"@uiw/react-progress","@uiw/react-portal", -"@uiw/react-popover","@uiw/react-pin-code","@uiw/react-pagination","@uiw/react-notify","@uiw/react-month-picker", -"@uiw/react-modal","@uiw/react-message","@uiw/react-menu","@uiw/react-loader","@uiw/react-list","@uiw/react-layout", -"@uiw/react-grid","@uiw/react-form","@uiw/react-file-input","@uiw/react-empty","@uiw/react-dropdown","@uiw/react-drawer", -"@uiw/react-divider","@uiw/react-descriptions","@uiw/react-date-picker","@uiw/react-date-input", -"@uiw/react-copy-to-clipboard","@uiw/react-collapse","@uiw/react-checkbox","@uiw/react-cascader","@uiw/react-carousel", -"@uiw/react-card","@uiw/react-calendar","@uiw/react-button-group","@uiw/react-breadcrumb","@uiw/react-badge", -"@uiw/react-back-top","@uiw/react-avatar","@uiw/react-auto-link","@uiw/react-alert","@uiw/react-affix","@uiw/formatter", -"random-bytes","jsmin","ecma","definition","tslint-config-standard","typings-core","promise-finally","sass-svg", -"postcss-import-sync2","jest-environment-node-single-context","@types/reserved-words", -"@types/postcss-modules-extract-imports","@types/icss-utils","@types/postcss-modules-scope", -"@types/postcss-modules-local-by-default","intelli-espower-loader","@types/power-assert","commandpost", -"eslint-formatter-autolinkable-stylish","mocha-fivemat-progress-reporter","monocart-coverage-reports", -"@dprint/typescript","@esfx/canceltoken","@dprint/formatter","@types/gulp-sourcemaps","@google-cloud/spanner", -"standard-changelog", -"@types/gulp-rename","@sap/hana-client","@types/sha.js","gulpclass","@sqltools/formatter","sql-highlight", -"prettier-tslint","mongoose-findorcreate","mongodb-memory-server-global","@types/mongoose","kindlegen","pandoc","ebook", -"concatenate","cli-prompt","JsDocs","material-3","typedoc-theme","@material/material-color-utilities", -"@gerrit0/mini-shiki","checking","media-typer","@typescript/vfs","tagged-tag","type-coverage-core","Twitter", -"twemoji-parser","signatures","salsa20","public","poly1305","nacl","ed25519","curve25519","tweetnacl-util", -"tap-browser-color","grunt-concat-sourcemap","mocha-unfunk-reporter","jshint-path-reporter","grunt-regex-replace", -"grunt-push-release","grunt-component-io","grunt-markdown","grunt-mocha","turndown-attendant","@mixmark-io/domino", -"typescript runner","joycon","typescript-tslint-plugin","ts-lint","tslint-consistent-codestyle", -"tslint-microsoft-contrib","tslint-misc-rules","tslint-immutable","@types/make-dir","tslint-divid","codelyzer", -"sync-content","polite-json","jsonc-simple-parser","typedefinitions","typedefs","@types/strip-bom","inference system", -"js rule engine","javascript rule engine","rules engine","rule engine","rete","bre","power-assign","omit-deep", -"fast-json-patch","util.promisify","ntypescript","@swc/wasm","@cspotcode/source-map-support","v8-compile-cache-lib", -"@tsconfig/node14","@tsconfig/node12","@tsconfig/node10","create-require","code refactor","static analysis", -"code-block-writer","@ts-morph/common","cli-tool","migration","migrate","typescript-loader","babel-preset-es2016", -"aggregate","html-tokenize","html-select","forEach","typedarray.prototype.slice","trace","tinytim","RFC2965","RFC6265", -"set-cookie","of","processmd","node-resemble-js","Typescript","expo","react-native-notification","toastify", -"react-native-toastify","react-native toast","pushalert","@types/react-native-vector-icons","method","thread pool", -"worker threads","tinycolor","@deno/shim-deno-test","tinylibs","bee","tinper","less-plugin-inline-urls", -"tinper-bee-core","gulp-css-wrap","gulp-cleancss","bee-input-group-addon","bee-loading-state","bee-search-panel", -"bee-progress-bar", -"bee-notification","bee-input-number","bee-form-control","bee-complex-grid","bee-button-group","bee-autocomplete", -"bee-tree-select","bee-page-layout","bee-input-group","bee-colorpicker","bee-transition","bee-timepicker", -"bee-popconfirm","bee-pagination","bee-form-group","bee-datepicker","bee-breadcrumb","bee-clipboard","bee-transfer", -"bee-timeline","bee-dropdown","bee-collapse","bee-checkbox","bee-cascader","bee-carousel","bee-calendar","bee-tooltip", -"bee-svgicon","bee-popover","bee-overlay","bee-message","bee-loading","bee-backtop","bee-animate","bee-upload", -"bee-switch","bee-slider","bee-select","bee-navbar","bee-locale","bee-layout","bee-drawer","bee-button","bee-anchor", -"bee-table","bee-radio","bee-panel","bee-modal","bee-menus","bee-label","bee-badge","bee-alert","bee-affix","bee-tree", -"bee-tile","bee-tabs","bee-step","bee-rate","bee-icon","bee-form","bee-tag","bee-dnd","stats","profile", -"number-is-nan","unexpand","stream-spigot","polendina","hundreds","user-streams","node-stdlib-browser","webxr","webgpu", -"webaudio","webgl2","augmented-reality","virtual-reality","three.js","eslint-config-mdcs","saucie", -"chai-shallow-deep-equal","bluebird-retry","styled_string","spawn-args","printf","fireworm","test double", -"teenytest-promise","teenytest","is-number","headerify","cross-conf-env","stringify-object-es5", -"@types/properties-reader","@types/async-lock","ssh-remote-port-forward","properties-reader","docker-compose", -"@types/dockerode","QA","testcafe-browser-provider-browserstack","recursive-copy","openssl-self-signed-certificate", -"mocha-reporter-spec-with-retries","gulp-step","gulp-mocha-simple","gulp-ll-next","gulp-clone","express-ntlm", -"eslint-plugin-hammerhead","dom-walk","caller","browserstack-connector","@types/useragent","@types/dedent", -"@types/callsite","@testcafe/publish-please","@ffprobe-installer/ffprobe","@devexpress/gulp-qunit-harness", -"url-to-options","unquote","time-limit-promise","testcafe-selector-generator","testcafe-reporter-spec", -"testcafe-reporter-minimal","testcafe-reporter-list","testcafe-reporter-json","testcafe-legacy-api", -"testcafe-hammerhead","testcafe-browser-tools","replicator","read-file-relative","promisify-event","pinkie","os-family", -"moment-duration-format-commonjs","log-update-async-hook","is-podman","import-lazy","get-os-info","device-specs", -"chrome-remote-interface","bowser","@devexpress/callsite-record","@devexpress/bin-v8-flags-filter","example","unlinted", -"sinon-mocha-test","sinon-assert-stub","only-allow","spawn-process","multiline-ts","@test-runner/tom", -"@test-runner/oneline-view","@test-runner/live-view","@test-runner/default-view","@test-runner/core","@types/uglify-js", -"astring","@ls-lint/ls-lint","@jridgewell/source-map","ibm","80s","visualwidth","resumer","32-bit","textbuffer", -"screenbuffer","gpm","input field","true color","256 colors","@cronvel/get-pixels","nextgen-events","string-kit", -"tree-kit","lazyness","seventh","node-addon","tglib","telegram-client-api","telegram-api","cz-format-extension", -"@parcel/transformer-typescript-types","@parcel/packager-ts","front end","fast-fifo","b4a","events-to-array","chmodr", -"@isaacs/fs-minipass","yallist", -"chownr","harness","npm-run-posix-or-windows","has-dynamic-import","dotignore","array.prototype.every","@ljharb/through", -"@ljharb/resumer","tapes","tap-out","tapjs plugin","tapjs","@tapjs/worker","@tapjs/typescript","@tapjs/test", -"@tapjs/stdin","@tapjs/spawn","@tapjs/snapshot","@tapjs/run","@tapjs/node-serialize","@tapjs/mock","@tapjs/intercept", -"@tapjs/fixture","@tapjs/filter","@tapjs/core","@tapjs/chdir","@tapjs/before-each","@tapjs/before","@tapjs/asserts", -"@tapjs/after-each","@tapjs/after","@tailwindcss/oxide","override","classList","className","@codspeed/vitest-plugin", -"cqrs","cqs","json-lines-client","assertthat","roboter","nodeenv","commands-events","flaschenpost","stethoskop", -"processenv","json-lines","datasette","nocache","crypto2","uuidv4","timer2","partof","lusca","limes","draht","hase", -"construct-style-sheets-polyfill","@jsenv/file-size-impact","symbol-es6","chassis","BIOS","vm","virtualbox", -"virtual box","wifinetworks","wifi","bluetooth","disk layout","smart","graphic controller","graphic card", -"docker processes","docker stats","battery","internet","users","printer","iface","network stats","network connections", -"network interfaces","netstats","block devices","diskio","fsstats","socket type","cores","logical cores", -"physical cores","cpuload","netbsd","openbsd","freebsd","sysinfo","system information","flowgen2","then-request", -"http-response-object","jinja","travis-cov","mocha-phantomjs","still","nodelint","istanbul-badges-readme","swagger UI", -"swagger-templates","swagger-nestjs","readmeio","@readme/eslint-config","multilang-extract-comments","promise.any", -"autogen","tape-promise","precache","git-release-notes","eslint-plugin-jest-formatting","@resvg/resvg-js","prettysize", -"postcss-easy-import","@types/pug","@kiwi/prettier-config","@kiwi/eslint-config","svelte-language-server","svelte2tsx", -"vscode-languageserver-protocol","vscode-languageserver","@types/sade", -"zimmerframe","esrap","16m","truecolor","capability","supports","promised","super","frisbee","tinyify","should-http", -"bootstrap-styl","github-contributors-list","postcss-resolve-nested-selector","postcss-media-query-parser", -"prettier-config-hudochenkov","postcss-styled-syntax","eslint-config-hudochenkov","postcss-sorting","z-index","keyword", -"delaration-strict-value","babel-register-ts","css-values","shortcss","stylelint-config","postcss-sass", -"@types/svg-tags","@types/postcss-less","@types/imurmurhash","@types/globjoin","@types/global-modules", -"@types/file-entry-cache","@types/balanced-match","svg-tags","mathml-tag-names","globjoin","hacks","hack","zeit", -"stylis-rule-sheet","ts-toolbelt","stylis-plugin-rtl","@types/shallowequal","@types/js-beautify","css-to-react-native", -"Android","dictionary","style dictionary","starlight-links-validator","jsdoc-tsimport-plugin","jsdoc-escape-at","hanbi", -"@web/test-runner-commands","@shoelace-style/shoelace","@rollup/browser","@esm-bundle/chai-as-promised","path-unified", -"@zip.js/zip.js","@bundled-es-modules/memfs","@bundled-es-modules/glob","@bundled-es-modules/deepmerge","upstart", -"strongops", -"strong-cluster-control","strong-cli","slowest functions","slc","pm","ops","openshift","nodeops","master","heroku", -"event loop","alerts","Platform","LoopBack","swagger-ui","strong-swagger-ui","strong-debugger","strong-start", -"strong-registry","strong-mesh-models","strong-deploy","strong-build","strong-arc","nodefly-register", -"loopback-sdk-angular-cli","generator-loopback","credit cards","payment processing","undici-types","wcswidth", -"get-east-asian-width","xhtml","stri","mixed","jsp","ranges-invert","ast-monkey-traverse","string-left-right", -"ranges-push","ranges-apply","codsen-utils","s","S","stringjs","string.js","gulp-rimraf","livestreaming","livestream", -"music-metadata","Assert","into-stream","funsert","inside","findit2","jinja2","django-templates", -"django-pattern-library","patternlab","storybookjs","eslint-config-torchbox","@storybook/addon-storyshots-puppeteer", -"@storybook/addon-storyshots","@glen/jest-raw-loader","design-systems", -"@fal-works/esbuild-plugin-global-externals","@aw-web-design/x-default-browser","@types/react-syntax-highlighter", -"@devtools-ds/object-inspector","@radix-ui/react-scroll-area","react-syntax-highlighter","@react-aria/interactions", -"@react-stately/overlays","react-transition-state","lazy-universal-dotenv","@react-aria/overlays","@react-aria/landmark", -"use-resize-observer","get-npm-tarball-url","@storybook/docs-mdx","@react-types/shared","@react-stately/tabs", -"@react-aria/toolbar","@ngard/tiny-isequal","@react-aria/utils","deep-object-diff","@react-aria/tabs","react-inspector", -"browser-dtector","@yarnpkg/libzip","flush-promises","@types/npmlog","fetch-retry","modern-tar","picoquery","exsolve", -"store2","aggregation","metric","etsy","winser","simple-commit-message","pre-git","git-issues","dont-crack","deps-ok", -"ban-sensitive-files","lazy-ass","check-more-types","recommended","stringify-package","dotgitignore", -"conventional-changelog-config-spec","version-guard","long-stack-traces","shuruhatik","firestore","st","sri generator", -"sri string","sri hash","sri","subresource integrity","integrity","bcrypt-pbkdf","asn1","css-sprite","coordinates", -"sprites", -"through2-spy","object-stream","sprity-lwip","sprity-css","prettydiff","gulp-benchmark","callback-stream","binary-split", -"string-to-stream","introspection-query","introspection","bdd-lazy-var","microfiber","@graphql-tools/load-files", -"@anvilco/apollo-server-plugin-introspection-metadata","@socket.io/component-emitter","io","socket.io-adapter", -"base64id","xml-crypto","axios-ntlm","stylish standard","stylish reporter","stylish formatter","stylish for standard", -"standard pretty","snazzy standard","pretty output","standard-json","urlify","github-changes","slow","tablify", -"prettier-bytes","math-sum","js-extend","get-folder-size","random-item","is-fullwidth-code-point","seperator","skapi", -"basic-node-server","amazon-cognito-identity-js","qpass","get size","directory size","file size","performance budget", -"budget","nanospinner","bytes-iec","@polka/url","browserify-handlebars","sinopia-htpasswd","render-readme", -"express-json5","fs-ext","crypt3","mocks-and-spies","clock","esbuild-plugin-istanbul","@studio/changes", -"@sinonjs/eslint-plugin-no-prototype-methods","@sinonjs/samsam", -"eslint-config-important-stuff","js-correct-lockfile","source control","@simple-git/babel-config", -"@kwsites/promise-result","@kwsites/promise-deferred","@kwsites/file-exists","transforms","shelljs-plugin-open", -"semver-sort","quiet-grunt","grunt-endline","eslint-config-shouldjs","should-util","should-type-adaptors","should-type", -"should-format","should-equal","tinyid","shorten","bitly","short","makefile","travis-check-changes","vips","libvips", -"thumbnail","dzi","@img/sharp-libvips-win32-arm64","@img/sharp-libvips-win32-ia32","@img/sharp-libvips-dev-wasm32", -"@img/sharp-libvips-win32-x64","@img/sharp-libvips-dev","@emnapi/runtime","@cpplint/cli","exif-reader","emnapi", -"@img/colour","isequalwith","flow-remove-types","eventbridge","jsii-pacmak","jsii-docgen","jsii-diff","jsii", -"@types/aws4","@types/aws-iot-device-sdk","json-format-highlight","caporal","aws-iot-device-sdk", -"@aws-sdk/client-lambda","@aws-sdk/client-eventbridge","@aws-cdk/aws-lambda-python-alpha","serverless.com", -"amazon web services","aws lambda","serverless plugins","@serverless/test","@commitlint/cz-commitlint", -"@serverless/utils","temp-path","@vercel/style-guide","@zeit/schemas","update-check", -"UART","sms","sms gateway","serial port","sensor","RFID","nodebots","modem","data logging","COM","com port","ccTalk", -"@serialport/parser-inter-byte-timeout","@serialport/parser-packet-length","@serialport/parser-slip-encoder", -"@serialport/parser-spacepacket","@serialport/parser-byte-length","@serialport/parser-delimiter", -"@serialport/parser-readline","@serialport/parser-cctalk","@serialport/parser-regex","@serialport/parser-ready", -"@serialport/bindings-cpp","@serialport/binding-mock","@serialport/stream","object relational mapper","snowflake","db2", -"semantic-release-fail-on-major-bump","esdoc-ecmascript-proposal-plugin","esdoc-inject-style-plugin", -"esdoc-standard-plugin","js-combinatorics","@octokit/types","snowflake-sdk","chai-datetime","pg-hstore","node-hook", -"p-settle","p-props","retry-as-promised","toposort-class","sequelize-pool","dottie","wkx","nlp","Sentimental","product", -"viable","minimum","micro service","micro-services","micro-service","summary","seneca-promisify","seneca-joi", -"seneca-error-test","seneca-entity","lab-transform-typescript","gex","bench","@seneca/test-plugin","use-plugin", -"seneca-transport", -"rolling-stats","patrun","ordu","optioner","lodash.defaultsdeep","jsonic","gubu","gate-executor","eraro","@hapi/joi", -"semicolon","bikeshed","terser-webpack-plugin-legacy","ta-scripts","semantic-ui-css","satisfied", -"react-universal-component","react-static-routes","react-static","react-source-render","react-codesandboxer","react-ace", -"chai-enzyme","babel-plugin-universal-import","babel-plugin-transform-react-handled-props","babel-plugin-filter-imports", -"anchor-js","@percy/cypress","@percy/cli","@babel/standalone","@artsy/fresnel","keyboard-key", -"@semantic-ui-react/event-stack","@fluentui/react-component-ref","@fluentui/react-component-event-listener","author", -"stream-buffers","mockserver-client","file-url","p-each-series","import-from-esm","git-log-parser","find-versions", -"env-ci","aggregate-error","@semantic-release/error","@bazel/runfiles","seed","ecdsa","ecdh","ec","drink","food", -"element-model","bare-script","markdown-model","node-sass-glob-importer","material-components-web", -"eslint-config-apostrophe","filename","mktemp","truncate-utf8-bytes","sailsjs","web-framework", -"session-file-store","sails.io.js","sails-hook-sockets","sails-hook-orm","root-require","@sailshq/request", -"machinepack-fs","whelk","sort-route-addresses","skipper","sails-stringfile","sails-generate","merge-dictionaries", -"merge-defaults","machinepack-redis","machinepack-process","machine-as-action","include-all","i18n-2","@sailshq/csurf", -"common-js-file-extensions","captains-log","@sailshq/router","prepublish","dist-tag","mock-env","uninitialized", -"node security","buffer allocate","Observables","ReactiveExtensions","ReactiveX","web-streams-polyfill", -"tslint-no-unused-expression-chai","tslint-no-toplevel-property-access","tslint-etc","rollup-plugin-inject", -"rollup-plugin-alias","check-side-effects","@angular-devkit/build-optimizer","Reactive","FRP","LINQ","run series","ltr", -"rtl","ember-cli-progress","amphtml-validator","@types/amphtml-validator","@ampproject/toolbox-optimizer","diagram", -"sunburst","visualizer","@types/d3-scale","@types/d3-hierarchy","@types/d3-force","@types/d3-color","@types/d3-array", -"rollup-plugin-re","@types/graphlib","@types/find-cache-dir","sourceMappingURL","browserify-fs", -"rollup-plugin-strip-banner", -"gulp-conventional-changelog","spdx-satisfies","spdx-expression-validate","package-name-regex","commenting","@types", -"@types/d3-drag","removal","rollup-plugin-jsx","js-cleanup","wasm-pack","npm-audit-resolver","flru", -"acorn-import-assertions","@vue/language-server","@shikijs/vitepress-twoslash","@mermaid-js/mermaid-cli","learning", -"autohotkey","recognition","pixel","Automation","targetpractice","run-script-os","package-json-from-dist", -"fast-deep-copy","fastcopy","fastclone","deepcopy","deep-clone","plain-object-clone","nano-copy","fastest-json-copy", -"leak","query language","reql","NoSQL","terminate","sigint","quit","DTrace","autocannon-compare","restify-clients", -"watershed","escape-regexp-component","restify-errors","ewma","autodocumentate","documentate","vesta", -"semantic-release-telegram","node-package-tester","fatum","eslint-plugin-scanjs-rules","eslint-plugin-no-secrets", -"eslint-plugin-censor","eslint-config-incredible","conventional-changelog-eslint","myrmidon","adjust-sourcemap-loader", -"supports-preserve-symlinks-flag","path-parse","micro-memoize","eslint-plugin-typescript", -"@typescript/analyze-trace","index.js","taper","is-typedarray","har-validator","forever-agent","tunnel-agent", -"oauth-sign","aws-sign2","caseless","autolinker","wooorm","retext-preset-wooorm", -"remark-lint-no-unneeded-full-reference-link","remark-lint-no-unneeded-full-reference-image", -"remark-lint-no-reference-like-url","remark-lint-no-paragraph-content-indent","remark-lint-no-html", -"remark-lint-no-hidden-table-cell","remark-lint-no-heading-like-paragraph","remark-lint-no-empty-url", -"remark-lint-no-duplicate-headings-in-section","remark-lint-no-duplicate-defined-urls","remark-lint-media-style", -"remark-lint-mdx-jsx-unique-attribute-name","remark-lint-mdx-jsx-shorthand-attribute","remark-lint-mdx-jsx-self-close", -"remark-lint-mdx-jsx-quote-style","remark-lint-mdx-jsx-no-void-children","remark-lint-mdx-jsx-attribute-sort", -"remark-lint-maximum-line-length","remark-lint-maximum-heading-length","remark-lint-link-title-style", -"remark-lint-definition-sort","remark-lint-correct-media-syntax","retext-preset-github", -"remark-lint-no-heading-punctuation","remark-license","remark-heading-gap","remark-contributors","mermaidjs", -"remark-slug","footnote","unified-args","markdown-extensions","intern","distribution","remark-preset-webpro", -"mock-stdio","mentoss","@octokit/request-error","wildcard-match","issue-parser","@phun-ky/typeof", -"@nodeutils/defaults-deep","hast-util-properties-to-mdx-jsx-attributes","external","is-absolute-url","regenerator", -"reflect","gulp-sequence","gulp-live-server","gulp-emu","ecmarkup", -"redux-middleware","side effects","effects","saga","@redux-saga/core","lodash-webpack-plugin","redux-immutable", -"insert-line","actions","eslint-config-unicorn-camelcase","@vitest/coverage-c8","reduce-reducers","just-curry-it","elm", -"predictable","docusaurus-preset","api-doc","@docusaurus/theme-common","docusaurus-plugin-redoc", -"docusaurus-theme-redoc","@redocly/openapi-core","@redis/time-series","@redis/search","@redis/json","@redis/client", -"@redis/bloom","lister","microcomponentization","higher-order","change-emitter","prepare","pretty-printing", -"refactoring","flow-parser","@types/esprima","line by line","tap-mocha-reporter","esbuild-plugin-alias","react-prism", -"holderjs","customize-cra","es6-module-jstransform","fixed","@babel/plugin-transform-flow-comments", -"@babel/preset-stage-2","eslint-plugin-relay","eslint-config-react","react-codemirror","transitions","transition-group", -"populist","jasmine-tapreporter","grunt-jest","es3ify","coverify","jstransform","commoner","alert", -"vite-plugin-istanbul","@4tw/cypress-drag-drop","react-testing","300ms","TapEventPlugin","svginjector", -"scalable vector graphics","strip-shebang","keymirror","eslint-config-tamia","dog-names","deepfreeze","deabsdeep", -"@types/webpack-dev-server","@types/type-detect","@types/terser-webpack-plugin","@types/markdown-to-jsx", -"@types/keymirror","@types/escodegen","@types/copy-webpack-plugin","@types/buble","type-detect","strip-html-comments", -"react-group","react-docgen-displayname-handler","react-docgen-annotation-resolver","qss","q-i", -"mini-html-webpack-plugin","jss-plugin-nested","jss-plugin-isolate","jss-plugin-global","jss-plugin-default-unit", -"jss-plugin-compose","jss-plugin-camel-case","jss","javascript-stringify","glogg","function.name-polyfill", -"es6-object-assign","common-dir","clipboard-copy","@vxna/mini-html-webpack-template","@tippyjs/react","orbit", -"Image slider","why-did-you-update","slick-carousel","foundation-apps","json2mq","redux-devtools-log-monitor", -"redux-devtools-dock-monitor","redux-devtools","matchMedia","respond","media queries","match-media-mock", -"@types/matchmediaquery","@types/match-media-mock","@types/hyphenate-style-name","matchmediaquery","hermes-eslint", -"eslint-plugin-ft-flow","@rollup/plugin-sucrase","onclickoutside","outside","onclick","require-hijack","number-format", -"currency", -"react-transform-hmr","@cmfcmf/docusaurus-search-local","css-social-buttons","@entypo-icons/core","simple-line-icons", -"svgicons2svgfont","oslllo-svg-fixer","feather-icons","evil-icons","fontisto","svg2ttf","keychain", -"@react-native/typescript-config","@react-native-community/cli","mobile-development","app-framework", -"@react-native/virtualized-lists","hermes-compiler","motion","tween","transitiongroup","lodash.range", -"karma-jasmine-diff-reporter","inject-loader","babel-browser-transform","exenv","rehype-starry-night", -"eslint-config-es5","intl-messageformat","@formatjs/intl","@formatjs/icu-messageformat-parser", -"@formatjs/ecma402-abstract","useIntersectionObserver","useInView","inview","lazy load","intersection", -"@babel/plugin-proposal-async-generator-functions","react-mount","enzyme-adapter-react-15","jest-fixed-jsdom","noscript", -"meta","head","nfl","karma-html-reporter","karma-chai-sinon","eslint-config-nfl","react-side-effect","crash","redbox", -"overlay","settle-promise","jest-fetch-mock","webpack-blocks","imagemin-cli","@size-limit/webpack-why", -"@commitlint/prompt","@babel/plugin-proposal-logical-assignment-operators","file-selector","attr-accept", -"documentation-generation","@react-dnd/shallowequal","@react-dnd/invariant", -"detect-port-alt","is-root","date-fns-tz","@react-docgen/cli","copy to clipboard","html-webpack-tags-plugin","photoshop", -"sketch","testdom","react-mark","react-context","jsx-loader","@storybook/addon-centered","@case/eslint-config", -"reactcss","material-colors","@icons/material","ecosystem-react","prop-types-extra","uncontrollable","@restart/hooks", -"@restart/ui","@apollo/react-ssr","@apollo/react-hooks","@apollo/react-hoc","@apollo/react-components", -"@apollo/react-common","react-addon","@types/responselike","react-tooltip","react-slider","father-build","unpipe", -"sentry","timed-out","sample","point-free","sanctuary-identity","sanctuary","envvar","babel-plugin-import-export-rename", -"requestAnimationFrame","testling","js-reporters","exists-stat","qunit-plugin","@release-it-plugins/lerna-changelog", -"@types/qunit","dom-element-descriptors","@qunitjs/browserstack-runner","eslint-plugin-json-es", -"transpile-webpack-plugin","@types/highlight.js","quill-delta","parchment","shift","dequeue","linked list","iterate", -"ordered","task queue","job scheduling","job queue","queue js", -"work","LIFO","lifo","FIFO","tap-esm","retape","searchparams","parameter","param","split-on-first", -"decode-uri-component","unassertify","has-override-mistake","common-shakeify","@browserify/uglifyify", -"@browserify/envify","qr code","fluent","purge","typed-query-selector","chromium-bidi","domain","dns","idna","idn", -"tap-bail","jstransformer-markdown-it","jstransformer-uglify-js","pug-strip-comments","pug-code-gen","pug-runtime", -"pug-filters","pug-parser","pug-linker","pug-lexer","pug-load","elegant-status","cp-sugar","native-hello-world", -"module-not-found-error","fill-keys","x-forwarded-for","via","mod_proxy","privoxy","squid","@types/args", -"basic-auth-parser","natives","@types/jasminewd2","protobuf","browserify-wrap","@protobufjs/utf8","@protobufjs/pool", -"@protobufjs/path","@protobufjs/inquire","@protobufjs/float","@protobufjs/fetch","@protobufjs/eventemitter", -"@protobufjs/codegen","@protobufjs/base64","@protobufjs/aspromise","svg-event-attributes","svg-element-attributes", -"html-event-attributes","interact","sisteransi","customize","svn","URIjs","node-rest-client","prism","webfont","regexpp", -"gulp-terser","docdash","MCP","MongoDB","SQLServer","SQL Server","MSSQL","CockroachDB","Postgres","SQL","TS","JS", -"prisma2","Prisma CLI","Prisma","ORM","@opentelemetry/context-async-hooks","@prisma/client-generator-registry", -"@prisma/driver-adapter-utils","@prisma/management-api-sdk","@prisma/credentials-store","@prisma/adapter-libsql", -"@prisma/fetch-engine","checkpoint-client","@prisma/internals","@prisma/generator","@prisma/migrate","@prisma/client", -"@libsql/client","@prisma/debug","line-replace","@prisma/dmmf","ts-pattern","package-up","@prisma/studio-core", -"@prisma/engines","@prisma/config","hg","mercurial","hrtime","period","milliseconds","parse-ms","jitter","renderkid", -"localized","si","glob-fs","organize-imports","imports","prettier-plugin","@vue/language-plugin-pug", -"jest-specific-snapshot","binary-searching", -"dom diff","kolorist","errorstacks","babel-plugin-transform-rename-properties","@actions/glob","@actions/github", -"package-json-filterify","licensify","dereserve","universal-deep-strict-equal","power-assert-formatter","empower", -"level-write-stream","double-ended-queue","fetch-cookie","level-codec","spark-md5","vuvuzela","ltgt","putil-varhelpers", -"putil-promisify","power-tasks","postgres-bytea","lightning-pool","doublylinked","@jsopen/objects","lists", -"postcss-place","postcss-page-break","postcss-overflow-shorthand","postcss-logical","postcss-lab-function", -"postcss-gap-properties","postcss-focus-within","postcss-double-position-gradients","postcss-dir-pseudo-class", -"postcss-clamp","css-prefers-color-scheme","css-has-pseudo","css-blank-pseudo","@csstools/postcss-unset-value", -"@csstools/postcss-trigonometric-functions","@csstools/postcss-text-decoration-shorthand", -"@csstools/postcss-system-ui-font-family","@csstools/postcss-syntax-descriptor-syntax-production", -"@csstools/postcss-stepped-value-functions","@csstools/postcss-sign-functions","@csstools/postcss-scope-pseudo-class", -"@csstools/postcss-relative-color-syntax","@csstools/postcss-random-function", -"@csstools/postcss-property-rule-prelude-list","@csstools/postcss-position-area-property", -"@csstools/postcss-normalize-display-values","@csstools/postcss-nested-calc","@csstools/postcss-mixins", -"@csstools/postcss-media-queries-aspect-ratio-number-values","@csstools/postcss-media-minmax", -"@csstools/postcss-logical-viewport-units","@csstools/postcss-logical-resize", -"@csstools/postcss-logical-overscroll-behavior","@csstools/postcss-logical-overflow", -"@csstools/postcss-logical-float-and-clear","@csstools/postcss-light-dark-function","@csstools/postcss-initial", -"@csstools/postcss-ic-unit","@csstools/postcss-hwb-function","@csstools/postcss-gradients-interpolation-method", -"@csstools/postcss-gamut-mapping","@csstools/postcss-font-format-keywords","@csstools/postcss-exponential-functions", -"@csstools/postcss-contrast-color-function","@csstools/postcss-content-alt-text", -"@csstools/postcss-color-mix-variadic-function-arguments","@csstools/postcss-color-mix-function", -"@csstools/postcss-color-function-display-p3-linear","@csstools/postcss-color-function", -"@csstools/postcss-alpha-function","fixes","normalizes","@csstools/postcss-tape","sanitize.css", -"postcss-browser-comments","@csstools/normalize.css","nestings","children","atrules","css-modules","font-weight", -"font-family","postcss-dark-theme-class","postcss-short","midas","postcss.config.js","postcssrc","node modules", -"image-set","sss","PHP","quickapp","postcss-styl","flexbugs","@counter-style","@keyframes","at-rules","empty", -"webpack-nano-logs","to-slug-case","react-svg-inline","postcss-browser-reporter","npmpub","nano-logger", -"metalsmith-watch","metalsmith-url","metalsmith-rss","metalsmith-rename","metalsmith-react","metalsmith-md", -"metalsmith-filenames","metalsmith-collections","markdown-it-toc-and-anchor","isogram","eslint-config-i-am-meticulous", -"cssrecipes-vertical-rhythm","cssrecipes-utils","cssrecipes-grid","cssrecipes-defaults", -"cssrecipes-custom-media-queries","postcss-selector-matches", -"postcss-pseudoelements","postcss-media-minmax","postcss-initial","postcss-image-set-polyfill", -"postcss-font-family-system-ui","postcss-color-rgba-fallback","postcss-color-rgb","postcss-color-hwb", -"postcss-color-hsl","postcss-color-gray","postcss-color-function","postcss-apply","pixrem","rgba","hsla","calculation", -"jison-gho","source map","attached","position","nuget-publish","@popperjs/test-utils","@popperjs/test", -"@popperjs/eslint-config-popper","@popperjs/bundle","curried color manipulation","color manipulation","color manipulate", -"inline-styles","glamor","tsgen","pushstate-server","babel-plugin-preval","poe.ninja api","poe.watch api", -"path of exile api","poe economy api","path of exile ninja","path of exile economy","path of exile","poe economy", -"poe.ninja","ninja","economy","poe","symlinks","rapid","prune","pnpm10","png-parse","node-png","js-png","PNG","dev ops", -"cluster cli","clustering","process configuration","keep process alive","probes","process manager","ghost production", -"pm2.io","supervisord","node.js monitoring", -"production","node-pm2","pm2-docker","k8s","load-balancer","lb","load balancer","kraken","vizion","pm2-multimeter", -"pm2-deploy","pm2-axon-rpc","pm2-axon","fclone","cli-tableau","@pm2/blessed","@pm2/pm2-version-check","@pm2/io", -"@pm2/js-api","@pm2/agent","nouns","noun","irregular","irregular-plurals","entry","devpostinstall","lifecycle", -"postinstall","steed","midnight-smoker","flush-write-stream","bole","@types/flush-write-stream","thread-stream", -"@pinojs/redact","real-require","quick-format-unescaped","pino-std-serializers","pino-abstract-transport", -"on-exit-leak-free","atomic-sleep","denodify","pinkie-promise","phonegap/build","phonegap build","phonegap-build", -"connect-phonegap","libpq","pg-copy-streams","@cloudflare/workers-types","@cloudflare/vitest-pool-workers", -"pg-cloudflare","pgpass","pg-types","pg-protocol","pg-pool","chai-increasing","call-delayed","pdf generator", -"pdf writer","brace","blob-stream","linebreak","jpeg-exif", -"opentype.js","@rkusa/linebreak","is-absolute","isabsolute","base64url","passport-oauth1","username", -"chai-connect-middleware","pause","fast-url-parser","htmlserializer","html serializer","html5 parser","html parser", -"WHATWG","vite-plugin-commonjs","parse-server","jsdoc-babel","jasmine-spec-reporter","@types/facebook-js-sdk", -"@saithodev/semantic-release-backmerge","react-native-crypto-js","striptags","png.js","@types/png.js","unused-filename", -"filenamify-url","capture-website","npm-registry-mock","sigstore","WCAG","standards","htmlcs","eslint-config-pa11y", -"@pa11y/html_codesniffer","plunder","out","invalidate","fulfilled","race","resolved","waits","addeventlistener", -"addlistener","limiter","@types/is-ci","@vscode/vsce","scrollbars","styleable","template literal","template string", -"ps1","redshift","sql-query","sql-ddl-sync","stream-consume","sequencify","transform-tty","stdin-discarder", -"option parsing","levn","deep-is","prelude-ls","last-call-webpack-plugin", -"countrynames","quadrocopter","computer","open api","json-schema-deref-sync","axios-mock-adapter", -"dereference-json-schema","bath-es5","wsl-utils","is-in-ssh","default-browser","beaglebone-black","beaglebone","pi", -"raspi","raspberry","interrupt","gpio","@types/mock-require","epoll","@blakeembrey/template","@blakeembrey/deque", -"ee-first","Object.entries","Underscore","segment","bean","@mariocasciaro/benchpress","indexof","has-tostringtag", -"error-cause","@pkgjs/support","prollyfill","@types/swagger2openapi","@readme/postman-to-openapi","@types/memoizee", -"@types/json-schema-merge-allof","remove-undefined-objects","any-path","spawn-wrap","process-on-spawn","node-preload", -"istanbul-lib-processinfo","istanbul-lib-hook","caching-transform","lines-and-columns","css4","mocha-phantomjs-istanbul", -"mocha-phantomjs-core","a-sync-waterfall","percentage","money","nuke","gluegun","nodesecurity-npm-utils","cvss", -"mocha-jsdom","are-we-there-yet","npm-cli","npm upgrade","yarn to npm","string convert","read-package-json-fast", -"npm-scripts", -"commandline","eslint-config-mysticatea","string.prototype.padend","minipass-fetch","auditor", -"npm-package-json-lint-config-tc","eslint-config-typescript-tc","eslint-config-tc","upgrade","vite-node","verdaccio", -"semver-utils","prompts-ncu","fp-and-or","eslint-config-raine","@types/semver-utils","@types/parse-github-url", -"@types/npm-registry-fetch","@types/jsonlines","@types/cli-table","@types/chai-string", -"@trivago/prettier-plugin-sort-imports","updating","updates","outdated","callsite-record","preferred-pm","semver-diff", -"giturl","ajv-formats-draft2019","@npmcli/mock-globals","@tufjs/repo-mock","@npmcli/docs","tiny-relative-date", -"npm-user-validate","minipass-pipeline","npm-audit-report","libnpmversion","@sigstore/tuf","libnpmsearch","npm-profile", -"libnpmteam","libnpmpack","libnpmorg","is-cidr","write-package","map-obj","p-memoize","npm-name","listr-input", -"issue-regex","is-scoped","github-url-from-git","exit-hook","mouse wheel","canonical","simplify","normalisation","urix", -"trailing","slashes","forward","file-path","delimiter", -"option parser","Mehdi Salartayefeh","json schema","5GL","descriptive","programming language","Programming","nolang", -"uuid-random","stjs","promise-mysql","node-ipc","mocker-data-generator","line-reader","json-sql","json-logic-js", -"express-ipfilter","async-redis","node-webkit","multimeter","autoload","undefsafe","pstree.remy","Nodemailer", -"proxy-test-server","nodemailer-ntlm-auth","libqp","libmime","libbase64","@aws-sdk/client-sesv2","git2","libgit2", -"clean-for-publish","combyne","inherit","jQuery extend","@tsconfig/node-lts","@mgcrea/eslint-config-node","sudo", -"elevate","event logging","ngn","watchfile","fs.watch","recurrent","sorted-array-functions","long-timeout", -"unique-temp-dir","true-case-path","stdout-stream","async-foreach","sass-graph","node-red-admin","@node-red/nodes", -"@node-red/util","@node-red/runtime","@node-red/editor-api","openpty","forkpty","pseudoterminal","ps-list","toaster", -"windows 8 notification","terminal-notifier", -"mac os x 10.8","notification center","nexe","shellwords","growly","http mock","v8-profiler","v8-debug", -"strong-data-uri","neutron-html5parser","mocha-each","htmlparser-benchmark","htmljs-parser","html5parser","html-parser", -"high5","exponential-backoff","tomtom","arcgis","agol","mapquest","geo","geocoding","geocoder","fcm","c2dm","x509", -"x.509","tls","sha384","rsa","rc2","prng","pki","pkcs","hmac","des","csr","cbc","asn.1","asn","nodejs-websocket", -"eslint-config-digitalbazaar","stream-consumers","chai-iterator","fetch-blob","ideograms","ideogram","smilies","smileys", -"smiley","emojis","sentences-per-line","skin-tone","emojilib","char-regex","subdir","filewatcher","dynamic-dedupe", -"formate","used-deps-analyzer","check-version-modules","grunt-include-replace","grunt-contrib-coffee", -"coffee-coverage","napi","n-api","propagate","proxyquireify","proxyquire-universal","@sinonjs/text-encoding", -"automated-testing","nightwatchjs","mochawesome-report-generator","mochawesome-merge","nightwatch-axe-verbose", -"didyoumean","chai-nightwatch","@nightwatch/nightwatch-inspector","@nightwatch/html-reporter-template", -"@nightwatch/chai","mocha-generators","sliced","minstache","function-source","deep-defaults","webhook","tunneling", -"localhost","@ant-design/icons-angular","how-to","TestBed","provider","async functions","async handler","nextauth", -"babel-preset-preact","babel-plugin-jsx-pragmatic","@types/oauth","openid-client","@panva/hkdf","self-cert", -"@smithy/util-utf8","@smithy/eventstream-codec","@slack/bolt","@newrelic/test-utilities","@newrelic/newrelic-oss-cli", -"@newrelic/eslint-config","module-details-from-path","@tyriar/fibonacci-heap","@newrelic/security-agent", -"@apm-js-collab/tracing-hooks","rest-client","parse-gitignore","dockerfile_lint","@postman/shipit","serialised-error", -"postman-runtime","postman-request","postman-collection-transformer","postman-collection","liquid-json","chardet", -"@postman/tough-cookie","@golevelup/nestjs-discovery","@fig/complete-commander","exec-time","binary-search-tree", -"near","bridge","near social","plugabble","key value store","nconf-yaml","secure-keys","maximum entropy modelling", -"Brill tagger","Eric Brill","part-of-speech tagger","string distance","levenshtein distance","jaro-winkler distance", -"doublemetaphone","logistic regression","tf-idf","Wordnet","inflector","metaphone","phonetic","classifier","bayes", -"stemmer","ngram","quadgram","trigram","bigram","Lancaster stemmer","Porter stemmer","artifical intelligence", -"natural language processing","uubench","gulp-jasmine-browser","browserfs","wordnet-db","stopwords-iso","memjs", -"apparatus","afinn-165-financialmarketnews","afinn-165","@types/universal-analytics","@types/qr-image","@types/tunnel", -"@types/tabtab","@types/pacote","@types/retry","@rigor789/resolve-package-path","@nstudio/trapezedev-project", -"ios-mobileprovision-finder","nativescript-dev-xcode","@nativescript/doctor","@nativescript/hook","plist-merge-patch", -"ios-sim-portable","ios-device-lib","simple-plist","@foxt/js-srp","pbxproj-dom","font-finder","proxy-lib", -"@types/page-icon","@types/hasbin","page-icon", -"hasbin","gitcloud","jsxstyle","styled","in-js","lite","pico","libreact","iconista","rtl-css-js", -"fastest-stable-stringify","switcher","bats","eslint-plugin-async-await","assert-diff","poku","named-placeholders", -"generate-function","aws-ssl-profiles","sql-escaper","utest","urun","sqlstring","bin-packing","web-animations-js","mezr", -"json to html","html report","test report","release-it-pnpm","array-union","formdata","testdata-w3c-json-form","fs-temp", -"append-field","page-with","@types/serviceworker","@types/json-bigint","@epic-web/test-server","until-async","rettime", -"headers-polyfill","@types/statuses","node-mssql","msnodesqlv8","node-sqlserver","node-tds","tds","msnodesql", -"@tediousjs/connection-string","publish/subscribe","esbuild-plugin-polyfill-node","mqtt-level-store","mqtt-connection", -"leaked-handles","aedes-cli","number-allocator","worker-timers","mqtt-packet","help-me","commist", -"monk-middleware-debug","gitbook-plugin-prism","gitbook-plugin-github", -"gitbook-plugin-edit-link","gitbook-plugin-custom-favicon","gitbook-plugin-anker-enable","gitbook-cli", -"monk-middleware-wait-for-connection","monk-middleware-query","monk-middleware-options", -"monk-middleware-handle-callback","monk-middleware-fields","monk-middleware-cast-ids","control panel","core-monitor", -"JMX","probe","lodash.isequalwith","acquit-require","acquit-ignore","acquit","@mongodb-js/mongodb-downloader", -"@ark/attest","sift","mquery","mpath","kareem","@types/chai-subset","@types/whatwg-url","@mongodb-js/zstd", -"v8-heapsnapshot","@types/saslprep","@types/kerberos","gcp-metadata","mocha-sinon","snappy", -"mongodb-connection-string-url","@mongodb-js/saslprep","web-based","phpmyadmin","manage-mongo","manage","administration", -"express-openid-connect","assets-webpack-plugin","renderjson-2","mongodb-query-parser","gridfs-stream","free-swig", -"bootstrap-paginator-2","@lezer/highlight","@json2csv/plainjs","@codemirror/theme-one-dark","result","maybe","either", -"monads","monaco","yaml-language-server","@remcohaszing/eslint","vscode-languageserver-textdocument", -"monaco-worker-manager","monaco-types","monaco-marker-data-provider","monaco-languageserver-types","zone","iana", -"olson","messagebus","@icebob/node-memwatch","node-nats-streaming","event-loop-stats","winston-context","moleculer-repl", -"@types/ioredis","jaeger-client","@types/bunyan","rhea-promise","benchmarkify","notepack.io","@types/pino","kafka-node", -"fakerator","msgpack5","gc-stats","dd-trace","redlock","thrift","cbor-x","etcd3","nats","avsc","fastest-validator", -"recursive-watch","mockAjax","mockJSON","gulp-mocha-phantomjs","unix-dgram","swap","@types/object-inspect", -"@types/has-property-descriptors","@types/gopd","@types/get-intrinsic","@types/functions-have-names","@types/for-each", -"@types/es-value-fixtures","define-data-property","lcov","xmllint","chai-xml","@11ty/eleventy-plugin-inclusive-language", -"fail-on-errors-webpack-plugin","unexpected-eventemitter","remark-inline-links","unexpected-sinon","unexpected-set", -"unexpected-map","jsdoc-ts-utils","@mocha/docdash","unexpected","rewiremock","uslug","yargs-unparser","browser-stdout", -"data flow","state management","functional-reactive-programming","frp","@types/brace-expansion","cert","certificate", -"signed","supertape","madrun","eslint-plugin-putout","escover","try-to-catch","try-catch","readjson","montag", -"html-minifier-next","css-b64-images","@putout/minify","increase key","decrease key","queue priority","element priority", -"priority-based processing","priority-based","dynamic resizing","ordering property","efficient priority", -"min priority queue","extract min","complete binary","priorityQ","priority q","priority-queue","priority queue", -"Priority Queue","heapify down","heapify up","heap sort","heapify","complete binary tree","min heap data structure", -"heap data structure","binary-heap","Binary Heap","min-heap","maxheap","Min Heap","mimetypes","mime-score","star", -"posix","negation","negate","lookbehind","lookaround","lookahead","extglobs","character-class","bracket", -"micromark-util-subtokenize","micromark-util-resolve-all","micromark-util-combine-extensions","micromark-util-chunked", -"micromark-factory-space","micro library","npm-merge-driver-install","eslint-config-developit","directory-tree", -"@babel/plugin-proposal-throw-expressions","babel-plugin-transform-replace-expressions", -"babel-plugin-transform-async-to-promises","asyncro","@surma/rollup-plugin-off-main-thread","node-downloader-helper", -"node-7z","7zip-bin","assert-dir-equal","@metalsmith/drafts","ware","stat-mode","lodash.clonedeepwith","from2","kitten", -"cat","trim-newlines","minimist-options","delete_comments","decamelize-keys","camelcase-keys","errno","ram","gulp-exit", -"memoization","mem","@types/lodash.isequal","content addressable storage","casfs","opfs","crudfs","webfs", -"native file system","file system access","fs.js","tslint-config-common","isomorphic-git","tree-dump","thingies", -"glob-to-regex.js","@jsonjoy.com/util","@jsonjoy.com/json-pack","@jsonjoy.com/fs-snapshot","@jsonjoy.com/fs-print", -"@jsonjoy.com/fs-node-utils","@jsonjoy.com/fs-node-to-fsa","@jsonjoy.com/fs-node-builtins","@jsonjoy.com/fs-node", -"@jsonjoy.com/fs-fsa","@jsonjoy.com/fs-core","nMemcached","memcache","membase","failover","InnoDB memcached API", -"jackpot","mdn","trim-lines","micromark-build","unist-util-stringify-position","micromark-util-decode-string","md5sum", -"fraction","complex","algebra","mathematics", -"zeros","numericjs","ndarray-pack","ndarray-ops","ndarray-gemm","ndarray-determinant","jsep","expr-eval","eigen", -"typed-function","javascript-natural-sort","escape-latex","complex.js","simple-assign","react-event-listener","v8-argv", -"marked-man","marked-highlight","@markedjs/testutils","@markedjs/eslint-config","run-con","CommonMark", -"markdownlint-rule-extended-ascii","gemoji","micromark-extension-math","micromark-extension-gfm-table", -"micromark-extension-gfm-footnote","micromark-extension-gfm-autolink-literal","micromark-extension-directive","toc", -"table-of-contents","table of contents","remarkableplugin","glossary","mixin-deep","markdown-link","list-item", -"lazy-cache","diacritics-map","solidjs","markdown parser","bunup","pdf-text","stream-from-to","emojies", -"markdown-it-mark","markdown-it-ins","uc.micro","punycode.js","mdurl","linkify-it","text processing","legend","mapbox", -"mapbox-gl","usability","user experience","react server components","context menu","context-menu","mantine", -"postcss-preset-mantine","@tabler/icons-react","mvp", -"no-code","low-code","api-generator","file-upload","rapid-development","micro-backend","backend-framework", -"headless-cms","admin-panel","@types/dasherize","@testcontainers/mysql","@nestjs/cli","uniqid","@nestjs/throttler", -"@nestjs/platform-express","@nestjs/config","hamjest","duck","browserify-prepend-licenses","lop","dingbat-to-unicode", -"recursively","intermediate","path-type","lavalink","community support","seamless integration","feature-rich", -"easy-to-use","high performance","discord integration","voice chat","music bot","audio streaming","lavalink client", -"@favware/rollup-type-bundler","string manipulation","task graph","wizard","@types/make-fetch-happen","@types/json-diff", -"@types/columnify","short-unique-id","hast-util-to-mdast","expand-home-dir","sleep-anywhere","create-mixin", -"ansi-escape-sequences","@75lb/deep-merge","cover","contain","transparency","lightness","saturation","hue","sharpen", -"blur","manipulate","decree","Font Awesome","Fontawesome","Feather Icons","Icon","Icons", -"Feather","HTML","Lucide","@lucide/rollup-plugins","@lucide/shared","@lucide/build-icons","mru","sessionStorage", -"localStorage","@typicode/eslint-config","express-async-handler","steno","eslint-config-loopback","strong-error-handler", -"strong-task-emitter","loopback-context","karma-es6-shim","loopback-boot","nodemailer-direct-transport", -"nodemailer-stub-transport","loopback-connector-remote","strong-globalize","loopback-filters","loopback-phase", -"canonical-json","isemail","int64","grunt-preprocess","grunt-contrib-jasmine","@log4js-node/sandboxed-module", -"streamroller","date-format","overwrite","terminal.js","tape-index","ncjsm","sprintf-kit","uni-global","uniq","pick", -"isstring","isplainobject","isfunction","isempty","clonedeep","lockfile lint","lockfile check","lockfile-lint-api", -"openurl","websql","localstorage","indexeddb","rollupify","grunt-es3-safe-recast","browserify-derequire", -"babel-preset-es2015-loose","lws-spa","lws-rewrite","lws-request-monitor","lws-range","lws-mime","lws-log","lws-json", -"lws-cors", -"lws-conditional-get","lws-compress","lws-body-parser","lws-blacklist","lws-basic-auth","matchdep","http-auth", -"connect-logger","@webcomponents/template","@lit-labs/testing","@lit-internal/scripts","@lit/reactive-element", -"@lit-labs/ssr-dom-shim","listr-verbose-renderer","listr-update-renderer","listr-silent-renderer","is-observable", -"@samverschueren/stream-to-observable","staged","consolemock","mention","hashtag","flagged-respawn","fined", -"libphonenumber","renamer","libphonenumber-metadata-generator","jest-codemods","gmail-send","crlf","gitfund","fund", -"just-safe-set","binary-extensions","distance","talisman","levenshtein-component","levdist","ld","simple-concat", -"encoding-down","trickle","memdown","level-iterator-stream","deferred-leveldown","level-supports","level-errors", -"prebuildify-cross","prebuildify-ci","readfiletree","mkfiletree","du","abstract-leveldown","napi-macros", -"abstract-level","classic-level","browser-level","less-plugin-glob","css less","variables in css","less compiler", -"gradients css","css nesting","read-glob", -"phin","html-template-tag","bootstrap-less-port","@octokit/plugin-enterprise-rest","conventional-changelog-core", -"read-cmd-shim","@lerna/create","p-map-series","p-waterfall","wide-align","write-pkg","aproba","repeat","left","gis", -"@mapbox/eslint-plugin-script-tags","rollup-plugin-git-version","git-rev-sync","bundlemon","leafdoc","happen", -"string-table","race.js","jasmine-async","deft","autodoc","current","lab-event-reporter","will-call","find-rc", -"eslint-plugin-hapi","eslint-config-hapi","bossy","node-redis-warlock","reds","sendfile","koa-send","@ladjs/env", -"mounting","koa-route","koa-compress","passthrough-counter","humanize-number","bodyParser","copy-to", -"@types/koa__router","@koa/router","@types/co-body","http-assert","delegates","stream-counter","uc-browser", -"samsung-internet","opera","unresolved","unreferenced","namespace","missing","members","maintenance","entropy", -"dead code","codeclimate-types","oxc-resolver", -"formatly","querybuilder","cockroachdb","toxiproxy-node-client","@tsconfig/recommended","chai-subset-in-order","adapter", -"@keyv/memcache","@keyv/compress-lz4","@keyv/compress-brotli","@keyv/mongo","@keyv/test-suite","@keyv/sqlite", -"@keyv/compress-gzip","@keyv/serialize","keyname","metakey","keyup","keydown","keyboardevent", -"rollup-sourcemap-path-transform","karma-brief-reporter","labs","sauce","@types/global-agent","karma-rollup","chai-fs", -"edge-launcher","Opera","Firefox","Chromium","Chrome Headless","Chrome Canary","Chrome","IE","SafariTechPreview", -"Safari Tech Preview","Safari","karma-requirejs","karma-coffee-preprocessor","ibrik","browser-stack","os-shim", -"execution","spectacular","timer-shim","dom-serialize","qjobs","package-json-versionify","jszip-utils","states","amaro", -"@jspm/plugin-rollup","@jspm/generator","lodash.isinteger","lodash.isboolean","lodash.isnumber","lodash.includes", -"lodash.once","jws","json-metaschema","@stryker-mutator/mocha-runner","unicode-10.0.0","circular", -"deterministic","@types/object-keys","prototyping","milliparsec","csv-2-json","csv2json","json2csv","to","doc-path", -"deeks","unicode-11.0.0","unicode-5.2.0","results-interpreter","unicode-13.0.0","nwmatcher","browser-request", -"webidl2js","webidl2","mocha-sugar-free","whatwg-url","webidl-conversions","w3c-xmlserializer","symbol-tree","data-urls", -"@bramus/specificity","@asamuzakjp/dom-selector","@acemir/cssom","config-master","object-to-spawn-args","requizzle", -"js2xmlparser","catharsis","@jsdoc/salty","unit-coverage","unicode-7.0.0","vow-fs","to-single-quotes","to-double-quotes", -"jscs-preset-wikimedia","jscs-jsdoc","jscpd-sarif-reporter","@jscpd/html-reporter","@jscpd/tokenizer","@jscpd/finder", -"@jscpd/core","@jscpd/badge-reporter","gitignore-to-glob","architecture","yerror","knifecycle","pyyaml","amd", -"code-quality","beautifier","config-chain","jquery-test-runner","grunt-bowercopy","grunt-html","recoil","@hapi/tlds", -"@hapi/pinpoint","@hapi/formula","@hapi/address","Weather Shield Photon", -"Weather Shield Arduino","VKEY","Ultrasonic Range Finder","TSL2561","TMP36","TINKERKIT","Thumb Joystick","tessel 2", -"Temperature","Speed controller","SparkFun Sensor Kit","SparkFun Essential Sensor Kit","spark","spark-io","spark core", -"SI7020","Shift Register","Shift Register 8-Bit SN74HC595","Servo","robot","RGB LED","RedBoard","raspi-io","raspberrypi", -"QTOUCH","PIR Motion Sensor","photon","PCF8591","PCF8575","PCF8574T","PCF8574AT","PCF8574A","PCF8574","pcduino", -"PCA9685","PARALLEL","OA41SK","NXT","MUXSHIELD2","MPU6050","MPU-6050","MPR121QR2","MPR121","MPL3115A2","MPL115A2", -"MMA8462Q","MMA7660","MMA7361","MJKDZ","Metal Gear","MCP9808","MCP23017","MCP23008","LV-MaxSonar-EZ3","LV-MaxSonar-EZ0", -"Ludus Protoshield","Ludus Protoshield Wireless","LIDAR-Lite v2","LED","LCM1602","LCD2004","LCD1602","JHD1313M1", -"ISL29125", -"intel galileo","intel edison","Infrared Sensor","Infrared Proximity Sensor","i2c","HTU21D","HT16K33", -"HRLV-MaxSonar-EZ0","Hobby Motor","HMC6352","HMC5883L","Hitec HS-85MG","Hitec HS-805BB","Hitec HS-755HB", -"Hitec HS-646WP","Hitec HS-625MG","Hitec HS-425BB","Hitec HS-422","Hitec HS-35HD","High Torque","HD44780","GY521", -"GY-521","GP2Y0A41SK0F","GP2Y0A21YK","GP2Y0A02YK0F","GP2D120XJ00F","galileo","galileo-io","EV3","ESPLORA","edison", -"Edison PWM Block","Edison I2C Block","Edison GPIO Block","Edison Arduino Block","DS18B20","Diffused LED","DEFAULT", -"Continuous Rotation","BMP180","BLINKM","AT42QT1070","Ardumoto","arduino","ANALOG","ALSPT19","ALS-PT19","ADXL345", -"ADXL335","74HC595","2Y0A21","2Y0A02","2D120X","20x4 LCD","16x2 LCD","0A21","0A02","grunt-jsbeautifier", -"browser-serialport","nanotimer","temporal","wysisyg","vanillajs", -"wysiwyg html editor","wysiwyg editor","nano-jsx","destr","babel-plugin-parameter-decorator", -"@types/babel__helper-plugin-utils","@babel/helper-simple-access","image manipulation","image processing","node-self", -"@jimp/test-utils","@jimp/config-vitest","@jimp/config-typescript","@jimp/config-eslint","@jimp/utils","@jimp/types", -"@jimp/plugin-threshold","@jimp/plugin-rotate","@jimp/plugin-resize","@jimp/plugin-quantize","@jimp/plugin-print", -"@jimp/plugin-mask","@jimp/plugin-hash","@jimp/plugin-flip","@jimp/plugin-fisheye","@jimp/plugin-dither", -"@jimp/plugin-displace","@jimp/plugin-crop","@jimp/plugin-cover","@jimp/plugin-contain","@jimp/plugin-color", -"@jimp/plugin-circle","@jimp/plugin-blur","@jimp/plugin-blit","@jimp/js-tiff","@jimp/js-png","@jimp/js-jpeg", -"@jimp/js-gif","@jimp/js-bmp","@jimp/diff","@jimp/core","jest-leak-detector","@types/merge-stream","libxmljs2", -"randomcolor","jump.js","@types/randomcolor","@types/jump.js","extended","matchers","@jest/diff-sequences", -"babel-plugin-version","moo-color","cssfontparser","jasmine-growl-reporter","walkdir","css-url-embed", -"@jasminejs/reporters","vimeo","parallax","prettier-config-nk","json-file","eslint-config-nk","browserslist-config-nk", -"video-worker","rake","filelist","pull-request","lsr","less-file","jstransformer-marked","jade-highlighter", -"jade-code-mirror","inconsolata","highlight-codemirror","handle","github-basic","code-mirror","browserify-middleware", -"with","transformers","jstransformer","constantinople","character-parser","vue-html-loader", -"babel-plugin-transform-es5-property-mutators","autoprefixer-loader","v-click-outside-x","js-calendar","JS coverage", -"JS code coverage","code coverage","lintspaces-cli","kindof","subsystem","wsl","custom element name","locally", -"installed","globally","global-directory","is-extglob","ansi-color","node-icu-charset-detector","irc-colors", -"pipelining","sentinel","@types/redis-errors","@types/lodash.isarguments","@types/lodash.defaults", -"@ioredis/interface-generator","standard-as-callback","redis-parser","redis-errors","lodash.isarguments", -"cluster-key-slot","@ioredis/commands","icon pack","jest-stencil-runner","ionicframework","ionic framework", -"@types/os-name","@types/open","superagent-proxy","@ionic/discover","ioc","inversion of control container", -"dependency inversion", -"@inversifyjs/core","@inversifyjs/container","@inversifyjs/common","dial code","international","grunt-replace", -"google-closure-library","flag-icons","@vue/tsconfig","ecma402","rollup-plugin-memory","grunt-zip","grunt-curl", -"estraverse-fb","cldr-numbers-full","cldr-dates-full","cldr-core","cldr-cal-roc-full","cldr-cal-persian-full", -"cldr-cal-japanese-full","cldr-cal-islamic-full","cldr-cal-indian-full","cldr-cal-hebrew-full","cldr-cal-ethiopic-full", -"cldr-cal-dangi-full","cldr-cal-coptic-full","cldr-cal-chinese-full","cldr-cal-buddhist-full","litcoffee","coffee.md", -"remark-code-import","packaging","exports","ig","instagram","fwk","innosetup","inno","inline-style","print", -"@vdemedes/prettier-config","@types/scheduler","@types/react-reconciler","yoga-layout","terminal-size","patch-console", -"auto-bind","@alcalzone/ansi-tokenize","object-oriented","oop","klass","inheritance","capitalize","inflection-js", -"inflections","inferno-utils","stateful","soa","enterprise","isolation","eslint-config-metarhia","metawatch","metavm", -"metautil", -"metaschema","metalog","metaconfiguration","metacom","prefer","bypass","stateless","immutability","@types/invariant", -"copy-on-write","mutable","type-plus","seamless-immutable","import-size","cpx2","reader","utf7","pngquant", -"imageminplugin","pngquant-bin","is-png","tga","heif","dimensions","regular-expression","asterisks",".gitignore", -"pre-suf","eslint-config-ostai","proxies","harmony-reflect","icu","bench-node","errto","gridly","gettext", -"i18next-sprintf-postprocessor","i18next-localstorage-cache","i18next-http-backend","i18next-fs-backend", -"@arktype/attest","math-interval-parser","make-plural","fast-printf","@messageformat/core","uncountable","hyphenate", -"eslint-config-sanity","put","mediation","httpclient","HttpStatus","@types/markdown-table","@types/eslint__js", -"@types/should","https-server","eslint-config-populist","secure-compare","corser","union","mockttp","@types/is-glob", -"sse","toidentifier", -"rss","posthtml-plugin","srcset","@types/relateurl","webpack-recompilation-simulator","@types/html-minifier-terser", -"@sidvind/better-ajv-errors","@html-validate/stylish","selderee","@selderee/plugin-htmlparser2", -"@bubkoo/semantic-release-config","@bubkoo/commitlint-config","@bubkoo/rollup-config","@bubkoo/eslint-config", -"@bubkoo/tsconfig","self-closing","alpinejs","unescape-unicode","posthtml-webp","ascjs","entities decode", -"entities encode","html entities decode","html entities encode","html entities","flowgen","@types/jscodeshift","tutor", -"tutorial","adventure","workshop","workshopper-adventure","compute","fastly","vite-plugin-fastly-js-compute", -"editorconfig-checker","bun-types","@hono/eslint-config","eslint-plugin-import-newlines","hap-nodejs","step", -"dependency-resolver","deep-freeze-es6","css-color-names","wcag-contrast","tiny-worker","transducers-js","scrawl", -"hexo-renderer-marked","eslint-config-hexo","0x","@types/abbrev","warehouse","titlecase","hexo-util","hexo-log", -"hexo-i18n","hexo-fs","hexo-front-matter","hexo-cli","fast-text-table","fast-archy","x-xss-protection","x-powered-by", -"x-permitted-cross-domain-policies","x-frame-options","x-download-options","x-dns-prefetch-control", -"x-content-type-options","strict-transport-security","referrer-policy","origin-agent-cluster", -"cross-origin-resource-policy","cross-origin-opener-policy","cross-origin-embedder-policy","content-security-policy", -"sort-object","regexgen","svg-tag-names","estree-util-build-jsx","unist-util-find-after","sval","tostring","ccount", -"estree-util-attach-comments","selectall","direction","bcp-47-match","html-tag-names","aria-attributes","remark-api", -"in","own","has-own","hasOwnProperty","@types/mock-property","@types/function-bind","get-own-property-symbols", -"catbox-memory","statehood","teamwork","subtext","somever","podium","catbox","mimos","heavy","topo","chai-diff", -"jquery-hammerjs","git-tags","changelogplease","fixer","git-pull-or-clone","vfile-reporter-shiny","unified-engine", -"remark-lint-no-unused-definitions","remark-lint-no-literal-urls","remark-lint-no-inline-padding", -"remark-lint-no-blockquote-without-marker","remark-lint-no-auto-link-without-protocol", -"remark-lint-list-item-bullet-indent","remark-lint-final-newline","remark-common-changelog","remark-autolink-references", -"find-githost","find-file-up","deglob", -"compressed","phantomjssmith","pngparse","vinyl-assign","vinyl-zip","yazul","lodash._reevaluate","lodash._reescape", -"mock-gulp-dest","async-once","useref","source-list-map","tape-catch","make-error-cause","array-each", -"incremental compilation","@types/plugin-error","gulp-diff","incremental","svg2png","looks-same","accord","strip-debug", -"mississippi","debug-fabulous","@gulp-sourcemaps/map-sources","@gulp-sourcemaps/identity-map","ruby","md5-hex", -"each-async","assets","expire","revving","rev-path","rev-hash","modify-filename","replacestream","src","eslint-watch", -"ifndef","ifdef","echo","ENV","notify-osd","mac notification","windows notification","develop","bufferstreams", -"vinyl-bufferstream","capture-stream","array-unique","jasmine-terminal-reporter","unit test", -"istanbul-threshold-checker","lodash.groupby","inline-css","group-array","gulp-gm","ternary","if","stream-exhaust", -"streamtest","gulp-svgicons2svgfont","gulp-ttf2woff2", -"gulp-ttf2woff","gulp-ttf2eot","gulp-svg2ttf","gulp-spawn","htm","eventstream","nsdeclare","gulp-wrap", -"gulp-define-module","gulp-declare","gulpgit","strip-bom-stream","branch","read-remove-file","octonode","wrap-promise", -"gift","ftp-test-server","jsftp-mkdirp","sections","pretty-remarkable","divide","to-absolute-glob","flatnest","warnings", -"@shinnn/eslint-config-node","node-version-check","csslint-stylish","dest","slush","rework-plugin-url","rework-import", -"parse-import","jshint-reporter-jscs","minify-css","passthrough","cached","updated","modification","modified","changed", -"cache-swap","gulp-version","plugin-log","bump-regex","gulp-codecov.io","prepend","add","desugaring","streamifier", -"delayed-stream","@azure/storage-blob","concurrent-transform","lodash.chunk","atom-shell","gulp-symdest","templatecache", -"html2js","undertaker","glob-watcher","@swc/register","@guarapi/eslint-config-guarapi","inline-fixtures","@npm/types", -"gmsmith","get-pixels","yui","grunt-sauce-tunnel","requestretry","mavericks","mountain lion","grunt-templates-dylang", -"stack-parser","grunt-cafe-mocha","grunt-istanbul-coverage","grunt-env","grunt-continue","releases","gh", -"grunt-github-remove-all-releases","uri-path","nodeunit-x","cssmin","file-sync-cmp","bin-version-check","faster", -"simultaneous","grunt-nodemon","pad-stream","liftup","browserify-incremental","init","eslint-config-grunt","difflet", -"grunt-legacy-util","grunt-legacy-log","poisson-process","electron-mocha","@types/bytebuffer","@mapbox/node-pre-gyp", -"matter","frontmatter","front","extracting","delimiter-regex","ansi-green","section-matter","test-all-versions", -"graphql-js","EACCESS","EPERM","EINVAL","EAGAIN","EMFILE","handling","retries","reading","govuk","govuk-prototype-kit", -"sass-color-helpers","sassdoc","human-friendly","zstandard","zstd","then-busboy","slow-stream","pem", -"create-test-server", -"create-cert","chunk-data","@types/pem","responselike","form-data-encoder","decompress-response","cacheable-request", -"cacheable-lookup","byte-counter","client library","google apis","jsdoc-region-tag","jsdoc-fresh","@types/url-template", -"@types/mv","@types/execa","googleapis-common","google docs","drive","gdata","sheets","spreadsheets","google sheets", -"google spreadsheets","varlock","eslint-plugin-no-floating-promise","skin fix","jarmods","nbt","extendable", -"modpack-api","modpack","mc-mods","mc-mod","mods","mod","instances","instances-management","forge","arm-support","arm", -"java edition","launcher","minecraft","mc","msmc","gfsl","graphicsmagick","magick","array-parallel","array-series", -"wildcards","multiple","all","environments","identifiers","is-identifier","dirname","path-scurry","@rollup/plugin-html", -"@primer/primitives","travis-after-all","spawn-command","manage-path", -"email-addresses","mac-address","ipconfig","ifconfig","export-default","es2022","denoland","deno-entry","deno-edition", -"make-deno-edition","eslint-config-bevry","tsconfig.json","resolve-pkg-maps","consume","precise-now", -"@sec-ant/readable-stream","std","chosen","preferred","connection","free","finder","libtap","if-ver","@cfware/nyc", -"@cfware/lint","semantic-release-conventional-commits","install-deps-postmerge","@werkzeugkiste/release-config", -"@werkzeugkiste/eslint-config","iterators","ts2mjs","inject-markdown","pool","@merkle-open/eslint-config", -"find-git-root","git-config","haml","traceur","foundation","ui-router","restangular","grunt-benchmark","sublime text", -"sublime","bitap","vuepress-plugin-google-adsense2","@vuepress/plugin-google-analytics", -"@snippetors/vuepress-plugin-tabs","@sapphire/utilities","@sapphire/stopwatch","@monaco-editor/loader","release-assist", -"meta data","front matter","check-dts","friendly","higher order component","render props","react hooks", -"just-debounce-it","tiny-warning","ulpoad","www", -"@tunnckocore/prettier-config","prettier-plugin-pkgjson","dezalgo","obake","js-randomness-predictor","is-node-modern", -"far","es-set-tostringtag","asynckit","increment","@types/babel-code-frame","typecheck","karton","node-abort-controller", -"nssocket","flatiron","shush","cliff","dispatcher","fbemitter","ffmpeg","umd","tailwind flask","tailwind ruby on rails", -"tailwind django","tailwind angular","tailwind ui","tailwind sections","tailwind library","tailwind elements", -"tailwind components","ui components","windicss","flowbite-typography","eslint-plugin-tailwindcss","@tailwindcss/cli", -"flowbite-datepicker","commands","markdox","unflatten","extend-object","alce","synchronization","hosting","ssl", -"update-notifier-cjs","superstatic","stream-chain","sql-formatter","pglite-2","pg-gateway","lsofi","libsodium-wrappers", -"exegesis-express","exegesis","deep-equal-in-any-order","cjson","@google-cloud/pubsub", -"@google-cloud/cloud-sql-connector","@apphosting/common","@apphosting/build","http-message-parser", -"firebase-token-generator","@types/request-promise", -"@types/firebase-token-generator","@firebase/auth-types","@firebase/api-documenter","jwks-rsa","farmhash-modern", -"@firebase/database-types","remote-config","@firebase/remote-config-compat","@firebase/installations-compat", -"@firebase/performance-compat","@firebase/messaging-compat","@firebase/functions-compat","@firebase/firestore-compat", -"@firebase/app-check-compat","@firebase/analytics-compat","@firebase/storage-compat","@firebase/remote-config", -"@firebase/installations","@firebase/data-connect","@firebase/performance","@firebase/messaging","@firebase/functions", -"@firebase/firestore","@firebase/app-types","@firebase/app-check","@firebase/analytics","@firebase/database", -"@firebase/storage","@firebase/util","@firebase/auth","@firebase/app","@firebase/ai","homedir-polyfill","resolve-dir", -"detect-file","dat","reg","ppsx","ppsm","sav","jmp","pptm","potm","dotm","docm","ott","otg","odg","ots","xltm","dotx", -"xltx","potx","lz4","drc","apk","vtt","vsdx","fbx","avro","ace","cpio","arj","parquet", -"dwg","pst","jls","vcf","zst","3mf","chm","asar","pgp","lzh","eps","skp","xm","s3m","it","mp1","aac","shp","arrow","mpc", -"dcm","ktx","crx","nes","wv","ape","ogx","spx","oga","ogm","ogv","asf","qcp","mie","f4v","f4p","f4b","f4a","m4v","m4p", -"m4b","3g2","ac3","voc","lnk","dsf","pcap","ics","odp","odt","aif","mj2","jpx","jpm","j2c","3gp","pptx","bpg","blend", -"webassembly","wasm","mts","mxf","lz", -"Z","rpm","ar","deb","cab","xpi","xz","ps","flv","ttc","otf","ttf","eot","woff2","woff","rtf","mobi","amr","wav","flac", -"opus","ogg","m4a","mp3","mp2","mpg","avi","mov","webm","mkv","mid","mp4","7z","gz","rar","indd","jxr","tif","rw2","nef", -"dng","arw","orf","cr3","cr2","xcf","flif","apng","macho","elf","exif","magic","noop-stream","@tokenizer/token", -"token-types","strtok3","@tokenizer/inflate","saveas","filesaver","thread","fiber","data management", -"functional program","View360", -"NetworkMonitor","SnapScanner","VoiceRecognition","TextToSpeech","NetworkConnection","WhatsappShare","wakelock", -"detectmylocation","livelocationtracking","share","autofillotp","voice","phonebook","advanced feature", -"advanced component","ui component","react components","Plug & Play","in react","in javascript","in web", -"@skypack/package-check","fbjs-css-vars","anything","string.prototype.split","array.prototype.slice", -"array.prototype.push","array.prototype.join","array.prototype.foreach","@types/loader-runner","@utoo/pack", -"@umijs/case-sensitive-paths-webpack-plugin","@umijs/bundler-webpack","@umijs/babel-preset-umi","h2url", -"fluent-json-schema","fast-json-body","branch-comparer","ajv-merge-patch","@jsumners/line-reporter","toad-cache", -"light-my-request","fast-json-stringify","avvio","abstract-logging","@fastify/proxy-addr", -"@fastify/fast-json-stringify-compiler","@fastify/ajv-compiler","strnum","implementation","eslint-config-mrmlnc", -"bencho","@types/merge2","@nodelib/fs.macchiato","@nodelib/fs.stat","CSV","csv writer","writer","@fast-csv/format", -"@fast-csv/parse","fuzz","fuzzer","jscheck","quickcheck", -"end-to-end testing","property-based testing","@fast-check/poisoning","@fast-check/expect-type","console.log", -"vinyl-transform","webpack-defaults","props","for-own","array-slice","is-extendable","assign-symbols", -"swagger-documentation","openapi-specification","schema-validation","documentation-tool","dts-plugin","snakify-ts", -"camelize-ts","@types/http-errors","@types/depd","@express-zod-api/zod-plugin","openapi3-ts", -"@docusaurus/plugin-client-redirects","web-api","web-development","browser-client","client-server","http-api", -"express-api","typed-api","fully-typed","code-generation","express.js","RPC","tRPC","cjs-mock","hoare","expressjs", -"express-unless","partials","express3","array-flatten","eslint-plugin-mmkal","3584","flush","drain","stderr","execfile", -"log-process-errors","get-node","strip-final-newline","human-signals","reactor","EventEmitter3","EventEmitter2", -"EventEmitter","asynct","pause-stream","evaulate","es-lookup-scope","@types/secp256k1","rlp","transactions", -"typestrict","contributor","@ethereumjs/config-tslint","@ethereumjs/config-tsc","@ethereumjs/config-prettier", -"@ethereumjs/config-nyc","ethereumjs-common","gulp-tag-version","unicode-8.0.0","node-tick-processor","everything.js", -"escomplex-js","eslint-plugin-requirejs","esrecurse","@types/esrecurse","eslint-test","ink-testing-library","importx", -"eslint-plugin-markdown-preferences","@types/xml-name-validator","eslint plugin","vitest eslint plugin", -"@veritem/eslint-config","unicorn","node-style-text","@lubien/fixture-beta-package","regjsparser","clean-regexp", -"sveltejs","svelte-i18n","@types/esutils","@types/eslint-utils","svelte-eslint-parser","sonarjs", -"functional-red-black-tree","jsx-ast-utils-x","eslint-snapshot-rule-tester","eslint-plugin-pere","hermes-parser", -"gfm-footnotes","@babel/plugin-syntax-function-bind","@babel/plugin-syntax-do-expressions","es-iterator-helpers", -"array.prototype.tosorted","array.prototype.findlast","prettier-linter-helpers","eslint-utils","ts-ignore-import", -"@types/globrex","ts-declaration-location","eslint-plugin-es-x","eslint-config-eslint","string.prototype.includes", -"language-tags","damerau-levenshtein","ast-types-flow","stylelint-stylus","stylelint-config-standard-vue", -"eslint-plugin-eslint-rule-tester","eslint-json-compat-utils","diff-sequences","@ota-meshi/ast-token-store", -"babel-plugin-transform-import-meta","@types/spdx-expression-parse", -"@hkdobrev/run-if-changed","@es-joy/jsdoc-eslint-parser","@es-joy/escodegen","to-valid-identifier", -"parse-imports-exports","object-deep-merge","are-docs-informative","@es-joy/resolve.exports","@es-joy/jsdoccomment", -"babel-plugin-replace-ts-export-assignment","@schemastore/package","lodash.isarray","linklocal","fs-copy-file-sync", -"escope","string.prototype.trimend","object.groupby","eslint-module-utils","array.prototype.findlastindex","@rtsao/scc", -"@html-eslint/parser","@html-eslint/eslint-plugin","flowtype","string-natural-compare","eslint-config-not-an-aardvark", -"@types/estraverse","eslint-disable-next-line","eslint-disable-line","eslint-disable","eslint-enable","eslint-env", -"exported","vue-eslint-editor","eslint4b","kangax","browserslist-config-erb","@types/caniuse-lite", -"ast-metadata-inferer","eslint-rule-composer","micro-spelling-correcter","espurify","enhance-visitors", -"eslint-friendly-formatter","stable-hash-x","is-bun-module","eslint-import-context","cabin","kisses","hugs", -"@eslint/css","obuild","@eslint/config-inspector","@rushstack/eslint-patch","eslint-prettier","prettier-package-json", -"metascraper-title","metascraper-logo-favicon","metascraper-logo","metascraper-image","metascraper-description", -"metascraper","eslint-rule-extender","@trunkio/launcher","json-stable-stringify-without-jsonify", -"@humanwhocodes/retry","@humanwhocodes/module-importer","@humanfs/node","@eslint/config-helpers","@eslint/config-array", -"commonjs-everywhere","bower-registry-client","special","setPrototypeOf","promises-es6-tests", -"promises-aplus-tests-phantom","json3","es5 shim","ext","ecmascript6","ecmascript5","plain-promise","esniff", -"es6-symbol","fixture","well-known-symbols","symbol.prototype.description","reflect.ownkeys","@types/reflect.ownkeys", -"@types/foreach","@types/array.prototype.flatmap","make-async-function","intl-fallback-symbol","test ecmascript version", -"test js version","js version matching","js version check","js version","ecmascript version","ecmascript matching", -"ecmascript check","es version","es matching","es check","check for modules","check for es6","pastoralist", -"codependence","airbnb-prop-types","assertion helpers","test utils","shallowRender","shallow rendering", -"rst-selector-parser","is-subset","is-string","is-number-object","is-boolean-object","html-element-map","diagnostics", -"issues","yamlify-object","github-release-cli","datatype","enumeration","entitify","es-errors","end","close", -"finish","coding","snippets","@emmetio/css-abbreviation","@emmetio/abbreviation","ember-try","ember-template-lint", -"ember-styleguide","ember-cli-clean-css","@embroider/test-setup","broccoli-persistent-filter", -"babel-plugin-ember-template-compilation","@ember/edition-utils","@glimmer/tracking","@glimmer/component", -"@ember/string","ember-cli-version-checker","ember-cli-babel-plugin-helpers","babel-plugin-ember-modules-api-polyfill", -"babel-plugin-ember-data-packages-polyfill","amd-name-resolver","ember.js","ember-app-kit","app-kit","yuidocjs", -"yuidoc-ember-cli-theme","ember-cli-internal-test-helpers","ember-cli-blueprint-test-helpers", -"@ember-tooling/classic-build-app-blueprint","@ember-tooling/classic-build-addon-blueprint","yam","promise.hash.helper", -"markdown-it-terminal","is-language-code","is-git-url","heimdalljs-graph","heimdalljs-fs-monitor", -"find-yarn-workspace-root","ember-cli-preprocess-registry","ember-cli-is-package-missing","dag-map","content-tag", -"clean-base-url","capture-exit","broccoli-slow-trees","broccoli-funnel-reducer","broccoli-config-replace", -"broccoli-config-loader","babel-remove-types","@pnpm/find-workspace-dir","@ember/app-blueprint", -"@ember-tooling/blueprint-model","@ember-tooling/blueprint-blueprint","mailparser","@types/smtp-server", -"@types/mailparser","sendgrid","postmark","moonmail","mandrill","mailgun","mailchimp","preview-email", -"nodemailer-sendgrid", -"juice","get-paths","@ladjs/i18n","@ladjs/consolidate","Cryptography","curve","Elliptic","EC","grunt-mocha-istanbul", -"minimalistic-crypto-utils","minimalistic-assert","hmac-drbg","hash.js","brorand","eleme","vue-template-es2015-compiler", -"uppercamelcase","transliteration","select-version-cli","gulp-cssmin","file-save","eslint-config-elemefe","cp-cli", -"babel-regenerator-runtime","algoliasearch","@vue/component-compiler-utils","batch-processor","home-path", -"electron-download","parse-author","get-package-info","galactus","cross-spawn-windows-exe","@electron/universal", -"@electron/osx-sign","@electron/notarize","snap","appx","Mac","MacOS","OS X","msi","nsis","builder-util-runtime", -"app-builder-lib","builder-util","dmg-builder","lazy-val","through2-map","backport","aliasify","agentkeepalive", -"@types/get-stream","linez","gulp-reporter","gulp-exclude-gitignore","data-viz","charting-library","data-visualization", -"@lang/rollup-plugin-dts","zrender","control flow","@antv/g6","dw-neit-rc-upload", -"dw-neit-rc-tree-select","dw-neit-rc-tooltip","dw-neit-rc-table","dw-neit-rc-util","dw-neit-rc-tree", -"dw-neit-rc-textarea","dw-neit-rc-tabs","dw-neit-rc-switch","dw-neit-rc-steps","dw-neit-rc-slider","dw-neit-rc-select", -"dw-neit-rc-segmented","dw-neit-rc-resize-observer","dw-neit-rc-rate","dw-neit-rc-progress","dw-neit-rc-picker", -"dw-neit-rc-pagination","dw-neit-rc-notification","dw-neit-rc-motion","dw-neit-rc-menu","dw-neit-rc-mentions", -"dw-neit-rc-input-number","dw-neit-rc-input","dw-neit-rc-image","dw-neit-rc-field-form","dw-neit-rc-dropdown", -"dw-neit-rc-drawer","dw-neit-rc-dialog","dw-neit-rc-collapse","dw-neit-rc-checkbox","dw-neit-rc-cascader", -"dw-neit-rc-component-trigger","dw-neit-rc-component-tour","dw-neit-rc-component-qrcode", -"dw-neit-rc-component-mutate-observer","dw-neit-rc-component-color-picker","dw-neit-ant-design-react-slick", -"dw-neit-icons","dw-neit-cssinjs-utils","dw-neit-cssinjs","dw-neit-colors","elementscript", -"@types/json-stable-stringify","dts-critic","file upload","@parcel/transformer-sass","@parcel/transformer-inline-string", -"draftjs","stats-webpack-plugin","gulp-derequire","fbjs-scripts","@types/temp","parse-cmd-args","import-from", -"git-clone","random-buffer","is-zip","archive-type","ext-name","substitution","mathml","rollup-plugin-includepaths", -"lodash.sample","raster", -"classlist","cross-browser","@react-bootstrap/eslint-config-typescript","@react-bootstrap/eslint-config", -"@react-bootstrap/babel-preset","@4c/tsconfig","@4c/rollout","offline-search","lunr-languages","autocomplete.js", -"truncate-html","crowdin-cli","document database","cosmos db","cosmosdb","priorityqueuejs","int64-buffer", -"binary-search-bounds","big-integer","documentation-schema","vfile-sort","vfile-reporter","remark-reference-links", -"mdast-util-inject","konan","doctrine-temporary-fork","update-section","anchor-markdown-header", -"@textlint/markdown-to-ast","tabs","docsify.js","web development","language agnostic","document management system","dms", -"build and deployment","coffeelint","@bevry/update-contributors","watchr","unbounded","typechecker","taskgroup", -"scandirectory","safeps","safefs","rfc-log-levels","query-engine","progress-title","lazy-require","ignorefs", -"extract-opts","extendr","event-emitter-grouped","errlop","envfile","eachr","docpad-baseplugin","docmatter", -"caterpillar","bal-util","ansistyles","ambi","@bevry/pluginloader","docker.io", -"docker-modem","parameters","mecano","literate","posthog-node","json-schema-faker","jq-web","appium-safari-driver", -"appium-geckodriver","appium-chromium-driver","callbacks","weak","dnode-protocol","agnostic","jsdoc2md", -"dmd-plugin-example","common-sequence","@discordjs/docgen","@discordjs/formatters","@discordjs/builders", -"lodash.snakecase","@discordjs/ws","@discordjs/voice","directed weighted edge","weighted digraph", -"strongly connected components","topological","topologic","DAG","directed acyclic graph","directed cycle","dense graph", -"sparse graph","node degree","adjacency matrix","adjacency list","connectivity matrix","graph representation", -"graph algorithms","BFS","bfs","breadth-first search","breadth first search","DFS","dfs","depth first search","first", -"Breadth","breadth","Depth","depth","acyclic","cycle","connectivity","Adjacency","adjacency","Unweighted","unweighted", -"Weighted","weighted","graph structure","Graph Theory","graph theory","Vertex", -"vertex","digraph","Directed","directed","directed-graph","directedgraph","directed graph","Directed Graph", -"data-structure-typed","colorized","difftohtml","line-by-line","side-by-side","side","is-ci-cli","image-webpack-loader", -"@types/nopt","@types/hogan.js","@profoundlogic/hogan","mm","eslint-config-egg","egg-bin","indentation","detective-cjs", -"is-relative","deprecated","deprecate","patch-version","deps-regex","threshold","tick","settimeout","stall","defer", -"unlimited-timeout","is-path-cwd","jsmd","is-mergeable-object","has-typed-arrays","available-typed-arrays", -"which-collection","which-boxed-primitive","regexp.prototype.flags","is-shared-array-buffer","is-array-buffer", -"es-get-iterator","array-buffer-byte-length","object equal","deep equal","chai util","eslint-plugin-filenames", -"@js-temporal/polyfill","eslint-config-strict","simple-assert","kewlr","change-tracking","json-ptr","is-obj", -"deduplication","deduplicate","distinct","remove duplicates","dupes","duplicates", -"multi-line string","@types/babel-plugin-macros","tar.bz","bzip2","is-jpg","strip-dirs","decompress-targz", -"decompress-tarbz2","decompress-tar","lowercase","decamelcase","rate-limit","interval","invoke","debouncing", -"async wrapper","sleep","require-directory","babel-plugin-replace-import-extension","@size-limit/esbuild", -"@date-fns/docs","@date-fns/utc","@date-fns/tz","js-fns","cloc","swagger-express-middleware","rss-parser", -"request-debug","json-schema-faker-bb","@captemulation/get-parameter-names","construct","invert","opposite", -"css library","laravel","tailwind rails","tailwind css plugin","tailwind component","tailwind plugin","dable", -"data-join","selection","shuffle","bisect","histogram","internmap","d3-transition","d3-quadtree","d3-dispatch", -"d3-delaunay","d3-contour","d3-timer","d3-fetch","d3-chord","d3-brush","d3-zoom","d3-ease","d3-drag","d3-axis","d3-geo", -"longest","cypress.io","@cypress/request","@types/sizzle", -"@cypress/xvfb","blob-util","ospath","unique id","updtr","riteway","eslint-plugin-testcafe","cucumber-tag-expressions", -"cucumber-expressions","is-generator","csv-json","convert csv to json","tojson","csv convert","csv to json","parse csv", -"csv parser","csv-spectrum","generation","@types/turndown","@tsconfig/node24","@asamuzakjp/css-color", -"cssnano-preset-lite","cssnano-preset-advanced","web-features","walker","json-to-ast","clap","sizzle", -"cheerio-soupselect","minimizer","cssnano-preset-simple","@types/clean-css","@parcel/css","@swc/css", -"isomorphic-unfetch","sorter","spelling checker","spell checker","spelling","spell","cspell-lib","cspell-io", -"cspell-glob","cspell-gitignore","cspell-dictionary","cspell-config-lib","@cspell/url","@cspell/dynamic-import", -"@cspell/cspell-worker","@cspell/cspell-types","@cspell/cspell-pipe","@cspell/cspell-performance-monitor", -"@cspell/cspell-json-reporter","nlm","eslint-config-groupon","Base64url","CBC","CTR","CFB","OFB","HMAC","PBKDF2","DES", -"AES","Rabbit","RC4","SHA-256","SHA256","SHA-1","SHA1","Hash","pseudorandombytes","randomfill","public-encrypt", -"hash-base","diffie-hellman","create-hmac","create-ecdh","browserify-sign","browserify-cipher","path-ext","spawnSync", -"eslint-config-moxy","babel-preset-moxy","shebang-command","rollup-plugin-esbuild-minify","environment variable", -"cross-environment","zshy","@epic-web/config","@epic-web/invariant","web-component","custom-element","cropper-element", -"image-processing","image-viewing","image-cropping","cropper.js","cropper","@cropper/utils","@cropper/elements", -"yaml-lint","secretlint","metalint","eslint-plugin-no-unsanitized","eslint-plugin-array-func", -"@stryker-mutator/tap-runner","@secretlint/secretlint-rule-npm","@secretlint/secretlint-rule-github", -"@prettier/plugin-xml","@prantlf/jsonlint","cron job","cronjob","node cron","@insurgent/conventional-changelog-preset", -"@insurgent/commitlint-config","postcss-image-inliner","postcss-discard","penthouse","oust","inline-critical", -"group-args","css-url-parser","async-traverse-tree","ripemd160","cipher-base","crcjam", -"crc8dvbs2","crc8","crc81wire","crc32","crc24","crc1","crc16xmodem","crc16","crc16modbus","crc16kermit","crc16ccitt", -"spider","@types/got","seenreq","tslog","quick","cp","log-driver","lcov-parse","remark-preset-davidtheclark", -"eslint-config-davidtheclark-node","@types/parse-json","structuredClone","Iterator","Promise","ECMAScript 2024", -"ECMAScript 2020","ECMAScript 2018","ECMAScript 7","ECMAScript 5","ES2024","ES2019","@cordova/eslint-config", -"cordova-lib","cordova-create","cordova-common","simple qrcode","logo","corcojs-qrcode-sample","js qr code", -"npm qr JavaScript","simple qr","noms","is-gzip","selenium-server-standalone-jar","@brettz9/node-static", -"toggle-selection","unsign","sign","top-sites","inline-source-map","conventionalcommits.org","compare-func","add-stream", -"conventional-changelog-preset-loader","@conventional-changelog/git-client","fd-package-json","rfc7231","rfc6266", -"bracket-template","swig-templates","dustjs-helpers","arc-templates","liquid-node", -"haml-coffee","velocityjs","tinyliquid","whiskers","ractive","htmling","walrus","toffee","teacup","plates","liquor", -"hamljs","hamlet","twing","jqtpl","vash","qejs","just","jazz","dust","slm","ect","stacktrace","clack","sentencer", -"kruptein","save","preferences","is-safe-filename","atomically","config-node","node-config","hjson","faceoff", -"eslint-plugin-import-lite","@hirez_io/observer-spy","ctrlc-wrapper","compressible","observe","tagged","oneline", -"literal","indents","heredoc","es6-tag","es2015-tag","conventional changelog","cz-conventional-changelog-default-export", -"@istanbuljs/nyc-config-babel","usage","table-layout","@codemirror/buildhelper","@codemirror/autocomplete", -"@codemirror/lint","code-coverage","urlgrey","teeny-request","coro","istanbul-harmony","command line interface","xsel", -"xclip","clip","pbcopy", -"pasteboard","paste","is64bit","is-wayland","clipboard-image","cut","good-listener","eslint-plugin-arca","@yarnpkg/core", -"@types/rollup","@types/extract-stack","@types/ansi-styles","@types/strip-ansi","password-prompt","natural-orderby", -"@oclif/linewrap","object-treeify","extract-stack","@oclif/screen","hyperlinker","cardinal","ellipsis","truncate", -"tables","ansi-256-colors","expresso","hide","timers-ext","autocompletion","optparse","argsparse","opt","parseopt", -"unrequire","temp-sandbox","@types/read-pkg-up","@chrisblossom/eslint-config","@ckeditor/ckeditor5-special-characters", -"@ckeditor/ckeditor5-restricted-editing","@ckeditor/ckeditor5-find-and-replace","@ckeditor/ckeditor5-horizontal-line", -"@ckeditor/ckeditor5-source-editing","@ckeditor/ckeditor5-remove-format","@ckeditor/ckeditor5-markdown-gfm", -"@ckeditor/ckeditor5-html-support","@ckeditor/ckeditor5-show-blocks","@ckeditor/ckeditor5-word-count", -"@ckeditor/ckeditor5-page-break","@ckeditor/ckeditor5-html-embed","@ckeditor/ckeditor5-fullscreen", -"@ckeditor/ckeditor5-code-block","@ckeditor/ckeditor5-highlight","@ckeditor/ckeditor5-language", -"@ckeditor/ckeditor5-bookmark","@ckeditor/ckeditor5-autosave","@ckeditor/ckeditor5-minimap", -"@ckeditor/ckeditor5-mention","@ckeditor/ckeditor5-style","@ckeditor/ckeditor5-emoji","continuous","watchFile", -"@paulmillr/jsbt","choerodon","webpack-filter-warnings-plugin", -"values.js","scrollama","react-sublime-video","react-infinite-scroller","rc-scroll-anim","rc-queue-anim","mark-twain", -"eslint-tinker","bisheng-plugin-toc","bisheng-plugin-react","bisheng-plugin-description","bisheng-plugin-choerodon-ui", -"@types/react-slick","@types/react-beautiful-dnd","@types/qrcode.react","@types/jsbarcode","@types/insert-css", -"@types/element-resize-event","@types/codemirror","@babel/plugin-transform-proto-to-assign", -"smooth-scroll-into-view-if-needed","rmc-feedback","react-quill","react-image-lightbox","react-easy-crop", -"react-codemirror2","react-beautiful-dnd","quill-delta-to-html","mutationobserver-shim","jsonlint-mod","jsbarcode", -"insert-css","htmlhint","element-resize-event","dom-lib","dom-closest","css-unit-converter","css-animation", -"choerodon-ui-font","add-dom-event-listener","@better-scroll/core","node-version","@octokit/graphql","@imgix/js-core", -"parse5-htmlparser2-tree-adapter","parse5-parser-stream","encoding-sniffer","cheerio-select","graphs", -"rollup-plugin-swc3","karma-safari-private-launcher","eslint-config-chartjs","chartjs-test-utils", -"chartjs-adapter-moment","chartjs-adapter-luxon","@types/offscreencanvas","@kurkle/color","ofetch","node-fetch-native", -"convert-gitmoji","confbox","header-case","kebab-case","dice", -"mersenne","gulp-uglify-es","gulp-ava","git-update-ghpages","docpress","yoctodelay","superset","containSubset","subset", -"objects","@debitoor/eslint-config-debitoor","@web/dev-server-rollup","loupe","slimerjs","case sensitive","cairo", -"pixman","callbound","set-function-length","es-define-property","call-bind-apply-helpers","cache wrapper", -"cache strategies","cache middleware","cache abstraction","caching layer","multi-store cache","in-memory cache", -"cache manager","cacheable","cache-manager-redis-yet","@keyv/redis","@cacheable/utils","eslint-config-rem","@types/mri", -"v8-to-istanbul","@bcoe/v8-coverage","typed array","utfx","testjs","metascript","lxiv","closurecompiler","uploads", -"streamsearch","ben","safe-json-stringify","@types/jsonpath","jsonpathly","@stoplight/yaml","@asyncapi/specs","bundled", -"builtins","builtin","dataview","compatible","compilation","console-group","regexpu-core","acorn-dynamic-import", -"litecoin","crytography","bitcoin","base58", -"target","node-releases","test-peer-range","rename-function-calls","mothership","exposify","commonj-esque", -"has-template-literals","has-object-spread","seq","labeled-stream-splicer","cached-path-relative","read-only-stream", -"browser-resolve","mkdirp-classic","shasum-object","syntax-error","htmlescape","deps-sort","live reload","browser sync", -"generate-changelog","bs-snippet-injector","resp-modifier","eazy-logger","easy-extender","dev-ip","bs-recipes", -"browser-sync-ui","browser-sync-client","ts-docs-gen","multidep","broccoli-fixturify","broccoli-fixture","merge-trees", -"array-equal","readFileSync","static-module","quote-stream","mincer","astro-auto-import","@astrojs/prism", -"active record","datamapper","bookshelf-jsdoc-theme","create-error","Montgomery","Modulo","BigNum","Big number","BN", -"fluent interface","baconjs","kefir","@types/blessed","x256","term-canvas","picture-tuber","map-canvas", -"drawille-canvas-blessed-contrib","ansi-term","termcap","terminfo","tput", -"tui","curses","uglify-save-license","coffee-react","g2","snapshot-diff","react-with-styles-interface-css-compiler", -"react-with-styles-interface-aphrodite","moment-jalaali","declaration-bundler-webpack-plugin","bx-jest-electron", -"babel-plugin-inline-svg","babel-plugin-inline-react-svg","aphrodite","@welldone-software/why-did-you-render", -"@storybook/addon-info","@babel/preset-es2015","@antv/data-set","@antv/util","@antv/g2","@antv/component", -"@noble/hashes","file-uri-to-path","bignum","bigint","bigdecimal","biginteger","float","big","arithmetic","precision", -"arbitrary","serialise","streamify","spooks","please-release-me","tryer","hoopy","check-types","ssr svelte framework", -"svelte framework","ssr vue framework","vue framework","ssr react framework","react framework","JAMStack", -"typescript packager","server side rendering","ssr","hot module replacement","micro frontend","microfrontend", -"modular development","sigle page","isomorphic typescript","isomorphic javascript","universal typescript", -"universal javascript","uimport","json-format","@beyond-js/bee","@beyond-js/fs","@beyond-js/specifier-parser","docdown", -"simplehttpserver","dotpathlookup","jsl","find-global-packages","script-injector","response-stream","ignorepatterns", -"ansicolors","whether-dangerous","web3-automobile7","we-hunt-process","tool-invented-girl-jungle","tiny-dream-supply5", -"stretch-onto-driver7","spider-melted-chemical","shade-swim-shells1","seldom-fire-web3-running", -"rocket-location-calm-valley","percent-impossible-score","needs-supper-anything","mouse-bat-web3-present", -"mountain-quarter-sit8","mainly-cent","listen-private-thee6","known-wet-thirty-gave","is-straight-web3-attack", -"industrial-public-immediately-until","gain-pleasant-prepare","excitement-tonight-dead","did-straight-sister-sail", -"compare-breeze-mad2","column-wore-meet-war","brush-bigger-afternoon0","bring-water-silence","born-greatly-explain3", -"blanket-line","art-near-room-catch","magic, self-described javaScript objects","asynchronous script loading", -"sharable codes","front-backend","hot reload","consistent","AOP","IoC","pomelo-logger","orange sms","ministructure", -"basicauth","basic","codec","otpauth","@web/test-runner-junit-reporter","@web/test-runner-browserstack", -"@purtuga/esm-webpack-plugin","unicode-9.0.0","babel-plugin-transform-node-env-inline","lodash.zipobject", -"to-fast-properties","babel-plugin-transform-async-generator-functions","babel-plugin-transform-decorators", -"babel-plugin-transform-class-constructor-call","babel-plugin-transform-function-bind", -"babel-plugin-transform-do-expressions", -"babel-plugin-transform-react-jsx-self","babel-plugin-transform-react-jsx-source", -"babel-plugin-transform-react-display-name","@babel/plugin-transform-property-mutators","regenerator-transform", -"propTypes","babel-helper-builder-react-jsx","babel-plugin-transform-strict-mode","babel-plugin-syntax-decorators", -"babel-plugin-syntax-class-properties","babel-helper-function-name","babel-helper-remap-async-to-generator","rename", -"cherry-pick","lodash-compat","lodash-bound","pmock","react-toolbox","dynamic","module.exports","babel-preset-jest", -"try-resolve","trim-right","output-file-sync","karma-env-preprocessor","factor-bundle","batchflow","json-edm-parser", -"browserify-mime","rollup-plugin-auto-external","string-replace-async","karma-jasmine-ajax","stream-throttle","dev-null", -"Accessibility","@axe-core/webdriverjs","weakmap-polyfill","grunt-bytesize","sri-toolbox","@deque/dot","cloudtrail", -"kinesis","glacier","beanstalk","vpc","storagegateway","importexport","mapreduce","emr","loadbalancing","elb", -"cloudsearch","autoscaling","iam","cloudwatch","cloudformation","fps","cloudfront","elasticache","rds","route53", -"simpledb","ec2","ps-node", -"empty-module","webpack-log","observables","yield","🦄","supertap","package-config","currently-unhandled","concordance", -"ci-parallel-vars","chunkd","cbor","arrgv","detective-es6","commits","import-cwd","find-package-json","npm-lockfile", -"node-cleanup","libnpx","pika-plugin-ts-types","pika-plugin-build-web-babel","@pika/pack","then-sleep","listen", -"babel-plugin-syntax-async-generators","native-promise-only","babel-preset-es2017","shouldjs","pruddy-error","propget", -"fn.name","array-fill","arrayify","ESnext","flatMap","es-shim-unscopables","stream-bench","archiver-jsdoc-theme", -"zip-stream","readdir-glob","archiver-utils","xray","appsync","prettier-plugin-organize-attributes", -"@aws-amplify/amplify-appsync-simulator","aws-xray-sdk-core","@aws-sdk/signature-v4","@aws-sdk/protocol-http", -"@aws-sdk/hash-node","@aws-sdk/credential-provider-node","telemetry","tracing","application insights", -"performance monitoring","request monitoring","exception monitoring","@types/microsoft__typescript-etw","@types/long", -"@azure/opentelemetry-instrumentation-azure-sdk","@opentelemetry/exporter-metrics-otlp-http", -"@opentelemetry/exporter-trace-otlp-http","@opentelemetry/exporter-logs-otlp-http", -"@azure/monitor-opentelemetry-exporter", -"@opentelemetry/semantic-conventions","@opentelemetry/otlp-exporter-base","diagnostic-channel-publishers", -"@opentelemetry/sdk-trace-node","@azure/monitor-opentelemetry","@azure/functions-old","diagnostic-channel", -"@azure/functions","@azure/identity","mobile testing","@types/portscanner","@appium/eslint-config-appium-ts", -"io.appium.settings","appium-chromedriver","appium-adb","cracks","object-to-querystring","apollo-fetch", -"apollo-link-http-common","zen-observable-ts","relay","apns","push notifications","markdown-documentation", -"api-documentation","apidoc-light","eslint-config-recommended","expose-loader","diff-match-patch","amf","raml", -"rollup-plugin-cpy","amf-client-js","@web/test-runner-visual-regression","@polymer/iron-test-helpers", -"@open-wc/building-rollup","@anypoint-web-components/anypoint-menu-mixin","@polymer/paper-toast", -"@polymer/iron-media-query","@polymer/app-layout","@api-components/api-summary","@api-components/api-documentation", -"@api-components/api-console-ext-comm","cypress-image-diff-html-report","@eslint-react/eslint-plugin", -"@rc-component/virtual-list","@codecov/webpack-plugin","csstree-validator","@ant-design/x-sdk","@blazediff/core", -"@ant-design/x","domparser-rs","@rc-component/resize-observer","@rc-component/mutate-observer", -"@rc-component/notification","@rc-component/input-number","@rc-component/color-picker","@rc-component/tree-select", -"@ant-design/cssinjs-utils","@rc-component/pagination","@rc-component/segmented","@rc-component/textarea", -"@rc-component/progress","@rc-component/mentions", -"@rc-component/dropdown","@rc-component/collapse","@rc-component/checkbox","@rc-component/cascader", -"@ant-design/fast-color","@rc-component/tooltip","@rc-component/upload","@rc-component/switch","@rc-component/slider", -"@rc-component/select","@rc-component/qrcode","@rc-component/picker","@rc-component/motion","@rc-component/drawer", -"@rc-component/dialog","@rc-component/table","@rc-component/steps","@rc-component/input","@rc-component/image", -"@rc-component/util","@rc-component/tree","@rc-component/tabs","@rc-component/rate","@rc-component/menu", -"@rc-component/form","vueComponent","vue-request","vue-infinite-scroll","vue-drag-resize","vue-clipboard2","umi-request", -"selenium-server","less-vars-to-js","jest-transform-stub","jest-serializer-vue","ignore-emit-webpack-plugin", -"eslint-plugin-no-explicit-type-exports","diacritics","cz-git","compare-versions", -"babel-plugin-transform-require-context","@vue/eslint-config-prettier","@vue/cli-plugin-eslint", -"@types/postcss-load-config","vue-types","dom-align","@simonwep/pickr","@ant-design/icons-vue","svg-term-cli","re", -"scrollback","erase","iterm2","yellow","white","underline","str","reset","magenta","italic","hidden","grey","green", -"dim", -"cyan","clorox","bold","blue","black","bgYellow","bgyellow","bgWhite","bgwhite","bgRed","bgred","bgMagenta","bgmagenta", -"bgGreen","bggreen","bgCyan","bgcyan","bgBlue","bgblue","bgBlack","bgblack","justified", -"sourcemap-istanbul-instrumenter-loader","node-modules-path","exists-sync","@ngtools/webpack","@ngtools/json-schema", -"@angular-cli/base-href-webpack","@angular-cli/ast-tools","ux bootstrap","RabbitMQ","AMQP 0-9-1","AMQP","claire", -"buffer-more-ints","Ajv","json-schema-validation","uri-js","re2","module-from-string","dayjs-plugin-utc", -"@types/require-from-string","fast-uri","abstract-browser","transient-error","thunky-with-args","tap-completed", -"run-parallel-settled","on-stream-close","nanoresource-collection","nanoresource","maybe-combine-errors", -"bruce-millis-option","airtap-multi","airtap-default","@airtap/browserify-istanbul","jobs","@types/human-interval", -"human-interval","date.js","flowcontrol","@types/git-clone","@types/figlet","progress-estimator", -"abortsignal","abortcontroller","abort","type-tester","karma-growl-reporter","@mysticatea/spy","event-target-shim", -"zero-knowledge","aleo","merge-deep","create-eslint-config","create-vue","@babel/plugin-transform-react-jsx-self", -"meta applications","css context properties","transformation api","cloud file platform","smart cdn","integrations", -"uc-blocks","lr-blocks","blocks","building blocks","upload api client","cloud image editor","image size","image editing", -"image optimization","adaptive image","lighter","esbuild-minify-templates","@size-limit/esbuild-why", -"vitest-browser-lit","eslint-plugin-lit","@types/svg-sprite","eslint-plugin-wc","ts-lit-plugin","lit-analyzer", -"render-jsx","@uploadcare/quality-insights","@uploadcare/upload-client","@uploadcare/image-shrink","@lit/context", -"nanostores","keyux","Unleash","@types/type-is","ts-node-dev","unleash-client","react-utils","react-overlay-trigger", -"overlay-trigger","react-input","react-icon","@uiw/icons","react-button","slate","plate","slate-hyperscript", -"use-deep-compare","jotai-optics","slate-react","zustand-x","optics-ts", -"is-hotkey","jotai-x","ucloud","stylelint-processor-styled-components","stylelint-config-styled-components", -"jsdom-screenshot","jest-emotion","css-hot-loader","babel-plugin-webpack-alias","babel-plugin-typescript-to-proptypes", -"babel-plugin-emotion","@ucloud-fe/recodo-gen","z-use-drag","rc-form","rc-animate","file-bytes-formatter", -"emotion-theming","create-react-context","@ucloud-fe/calendar","@typescript-eslint/rule-schema-to-typescript-types", -"twitch","@twurple/common","@twurple/api-call","@d-fischer/shared-utils","@tinyhttp/content-disposition", -"@tinyhttp/accepts","forwarded","dom-testing-library","react-testing-library","@esbuild-plugins/node-modules-polyfill", -"@ph.fritsche/scripts-config","esbuild-plugin-globals","@ph.fritsche/toolbox","shared-scripts", -"@relmify/jest-serializer-strip-ansi","@callstack/eslint-config","jest-snapshot-serializer-ansi","passcode","webauthn", -"passkey","hanko","eslint-config-preact","better-docs","@github/webauthn-json","@types/js-cookie","tanstack", -"@testing-library/svelte","@tanstack/query-persist-client-core","@tanstack/query-core","scalable-vector-graphics","JSDA", -"reactive html attributes","https imports","cdn imports","import maps","css custom properties","adopted stylesheets", -"constructable stylesheets","meta application","symbiote","stylelint-config-sass-guidelines", -"@swisspost/design-system-tokens","@swisspost/design-system-icons","swcpack", -"@rstest/core","@swc/counter","@svgr/plugin-jsx","@babel/plugin-transform-react-constant-elements","vite plugin", -"@sveltejs/vite-plugin-svelte-inspector","postcss-calc-ast-parser","ml-matrix","expr-eval-fork","CMS","Markdown", -"Documentation","Components","Assets","Tokens","Design Tokens","SDK","Supernovaio","Design Systems","Supernova", -"yaml-front-matter","rome","react-window","array-move","@types/react-window","@types/react-color","@types/puppeteer", -"@storybook/manager-webpack5","@storybook/builder-webpack5","@emotion/babel-preset-css-prop","react-superellipse", -"react-qrcode-logo","react-pin-input","rc-upload","rc-tree-select","rc-textarea","rc-table","rc-switch","rc-steps", -"rc-select","rc-segmented","rc-resize-observer","rc-rate","rc-picker","rc-pagination","rc-notification","rc-mentions", -"rc-input-number","rc-input","rc-image","rc-dropdown","rc-collapse","rc-checkbox","rc-cascader","phosphor-react","jsqr", -"flatlist-react","boring-avatars","@zxing/library","@zxing/browser","@polkadot/wasm-crypto","@polkadot/util-crypto", -"@polkadot/react-identicon","@fortawesome/free-regular-svg-icons", -"autodocs","MDX","organize","@storybook/react-dom-shim","@storybook/csf-plugin","@sinonjs/referee-sinon","wdio-reporter", -"wdio","mocha-testdata","@wdio/dot-reporter","@wdio/reporter","@serenity-js/mocha","@serenity-js/local-server", -"@serenity-js/jasmine","@serenity-js/cucumber","@serenity-js/assertions","@fastify/swagger","@fastify/http-proxy", -"@fastify/basic-auth","@scalar/react-renderer","@scalar/galaxy","vite-plugin-css-injected-by-js", -"rollup-plugin-webpack-stats","@scalar/workspace-store","@scalar/use-toasts","@scalar/themes","@scalar/use-hooks", -"@scalar/snippetz","@scalar/types","@scalar/sidebar","@scalar/oas-utils","@scalar/helpers","@scalar/components", -"@scalar/icons","@scalar/api-client","@scalar/code-highlight","@scalar/agent-chat","microdiff","API reference", -"@sanity/semantic-release-preset","@sanity/ui-workshop","@portabletext/toolkit","@portabletext/react", -"@sanity/pkg-utils","react-refractor","@sanity/client","@sanity/icons","@sanity/color","dotenv-flow","@types/cpx", -"@sanity/ui","refractor","groq-js","commondir","@types/query-string","@types/nanoid","@phryneas/ts-version","avatars", -"3D","ready-player-me","react-three-fiber","threejs","@storybook/preset-create-react-app","@react-three/postprocessing", -"@react-three/test-renderer","@storybook/node-logger","cypress-image-diff-js","@react-three/fiber","@react-three/drei", -"postprocessing","suspend-react","three-stdlib","r3f-perf","detect-gpu","gltfpack","animations","fonts","quasar", -"eslint-config-quasar","line-awesome","eva-icons","@mdi/svg","databinding","fontend","qooxdoo","dirsum", -"@babel/plugin-proposal-optional-chaining-assign","@qooxdoo/eslint-config-jsdoc-disable","@qooxdoo/eslint-plugin-qx", -"@qooxdoo/eslint-config-qx","@metalsmith/layouts","jstransformer-dot","es6-promise-pool","core-js-bundle","tap-colorize", -"unset-value","set-value","get-value","cldr","wct-browser-legacy","polymer-cli","polymer-build","lazypipe", -"gulp-vulcanize","dom5","@polymer/test-fixture","@polymer/iron-component-page","@polymer/gen-closure-declarations", -"stories","speccer","spacing","pin","html-elements","grid-layout","dissection","dissect","annotation","anatomy", -"vitepress-plugin-group-icons","unified-prettier","typedoc-vitepress-theme","typedoc-plugin-rename-defaults", -"typedoc-plugin-remark","typedoc-plugin-mdn-links","typedoc-plugin-frontmatter","eslint-config-phun-ky","cobertura", -"@phosphor/virtualdom", -"@phosphor/signaling","@phosphor/properties","@phosphor/messaging","@phosphor/keyboard","@phosphor/dragdrop", -"@phosphor/domutils","@phosphor/disposable","@phosphor/coreutils","@phosphor/commands","@phosphor/algorithm", -"consumer driven testing","contract testing","pact-js","pact","@pact-foundation/pact-js-prettier-config", -"@pact-foundation/pact-core","@otterhttp/etag","@otterhttp/vary","@otterhttp/encode-url", -"@otterhttp/content-disposition","es-escape-html","@otterhttp/router","@otterhttp/url","@otterhttp/type-is", -"@otterhttp/proxy-address","@otterhttp/accepts","gulp-transform","gulp-svg-inline","@opentiny/vue-hooks", -"@opentiny/utils","headless-components","renderless-components","opentiny","component-library", -"@opentiny/vue-year-table","@opentiny/vue-year-range","@opentiny/vue-wizard","@opentiny/vue-watermark", -"@opentiny/vue-virtual-tree","@opentiny/vue-virtual-scroll-box","@opentiny/vue-user-link", -"@opentiny/vue-user-head-group","@opentiny/vue-user-head","@opentiny/vue-user-contact","@opentiny/vue-user-account", -"@opentiny/vue-user","@opentiny/vue-upload-list","@opentiny/vue-upload-dragger","@opentiny/vue-upload", -"@opentiny/vue-tree-select","@opentiny/vue-tree-menu","@opentiny/vue-tree","@opentiny/vue-transfer-panel", -"@opentiny/vue-transfer","@opentiny/vue-top-box","@opentiny/vue-tooltip","@opentiny/vue-toggle-menu", -"@opentiny/vue-timeline-item","@opentiny/vue-time-spinner","@opentiny/vue-time-select","@opentiny/vue-time-range", -"@opentiny/vue-time-picker-mobile","@opentiny/vue-time-picker","@opentiny/vue-time-panel", -"@opentiny/vue-time-line","@opentiny/vue-time","@opentiny/vue-text-popup","@opentiny/vue-tag-input", -"@opentiny/vue-tag-group","@opentiny/vue-tag","@opentiny/vue-tabs","@opentiny/vue-table","@opentiny/vue-tabbar-item", -"@opentiny/vue-tabbar","@opentiny/vue-tab-item","@opentiny/vue-switch","@opentiny/vue-sticky","@opentiny/vue-steps", -"@opentiny/vue-statistic","@opentiny/vue-standard-list-item","@opentiny/vue-split","@opentiny/vue-space", -"@opentiny/vue-slider-button-group","@opentiny/vue-slider-button","@opentiny/vue-slider","@opentiny/vue-skeleton-item", -"@opentiny/vue-skeleton","@opentiny/vue-signature","@opentiny/vue-selected-box","@opentiny/vue-select-wrapper", -"@opentiny/vue-select-view","@opentiny/vue-select-mobile","@opentiny/vue-select-dropdown","@opentiny/vue-select", -"@opentiny/vue-search","@opentiny/vue-scrollbar","@opentiny/vue-scroll-text","@opentiny/vue-row","@opentiny/vue-roles", -"@opentiny/vue-river","@opentiny/vue-recycle-scroller","@opentiny/vue-record","@opentiny/vue-rate", -"@opentiny/vue-radio-group","@opentiny/vue-radio-button","@opentiny/vue-radio","@opentiny/vue-query-builder", -"@opentiny/vue-quarter-panel","@opentiny/vue-qr-code","@opentiny/vue-pull-refresh","@opentiny/vue-progress", -"@opentiny/vue-popup","@opentiny/vue-popover","@opentiny/vue-popeditor","@opentiny/vue-popconfirm", -"@opentiny/vue-pop-upload","@opentiny/vue-picker","@opentiny/vue-panel","@opentiny/vue-pager-item","@opentiny/vue-pager", -"@opentiny/vue-option-group","@opentiny/vue-option","@opentiny/vue-numeric","@opentiny/vue-number-animation", -"@opentiny/vue-notify","@opentiny/vue-nav-menu","@opentiny/vue-month-table","@opentiny/vue-month-range", -"@opentiny/vue-modal","@opentiny/vue-mind-map","@opentiny/vue-milestone","@opentiny/vue-message","@opentiny/vue-menu", -"@opentiny/vue-logout","@opentiny/vue-logon-user","@opentiny/vue-locales","@opentiny/vue-loading", -"@opentiny/vue-load-list","@opentiny/vue-link-menu","@opentiny/vue-link","@opentiny/vue-layout", -"@opentiny/vue-ip-address","@opentiny/vue-input","@opentiny/vue-image-viewer","@opentiny/vue-image", -"@opentiny/vue-hrapprover","@opentiny/vue-guide","@opentiny/vue-grid-toolbar","@opentiny/vue-grid-select", -"@opentiny/vue-grid-manager","@opentiny/vue-grid-column","@opentiny/vue-grid","@opentiny/vue-fullscreen", -"@opentiny/vue-form-item","@opentiny/vue-form","@opentiny/vue-fluent-editor","@opentiny/vue-flowchart", -"@opentiny/vue-floating-button","@opentiny/vue-floatbar","@opentiny/vue-float-button","@opentiny/vue-filter-panel", -"@opentiny/vue-filter-box","@opentiny/vue-filter-bar","@opentiny/vue-filter","@opentiny/vue-file-upload", -"@opentiny/vue-fall-menu","@opentiny/vue-exception","@opentiny/vue-espace","@opentiny/vue-dynamic-scroller-item", -"@opentiny/vue-dynamic-scroller","@opentiny/vue-dropdown-menu","@opentiny/vue-dropdown-item","@opentiny/vue-dropdown", -"@opentiny/vue-drop-times","@opentiny/vue-drop-roles","@opentiny/vue-drawer","@opentiny/vue-divider", -"@opentiny/vue-dialog-select","@opentiny/vue-dialog-box","@opentiny/vue-dept","@opentiny/vue-date-table", -"@opentiny/vue-date-range","@opentiny/vue-date-picker-mobile-first","@opentiny/vue-date-picker", -"@opentiny/vue-date-panel","@opentiny/vue-currency","@opentiny/vue-crop","@opentiny/vue-country", -"@opentiny/vue-container","@opentiny/vue-config-provider","@opentiny/vue-company","@opentiny/vue-column-list-item", -"@opentiny/vue-column-list-group","@opentiny/vue-color-select-panel","@opentiny/vue-color-picker", -"@opentiny/vue-collapse-transition","@opentiny/vue-collapse-item","@opentiny/vue-collapse","@opentiny/vue-col", -"@opentiny/vue-checkbox-group","@opentiny/vue-checkbox-button","@opentiny/vue-checkbox","@opentiny/vue-cell", -"@opentiny/vue-cascader-view","@opentiny/vue-cascader-select","@opentiny/vue-cascader-panel", -"@opentiny/vue-cascader-node","@opentiny/vue-cascader-mobile","@opentiny/vue-cascader-menu","@opentiny/vue-cascader", -"@opentiny/vue-carousel-item","@opentiny/vue-carousel","@opentiny/vue-card-template","@opentiny/vue-card-group", -"@opentiny/vue-card","@opentiny/vue-calendar-view","@opentiny/vue-calendar-bar","@opentiny/vue-calendar", -"@opentiny/vue-button-group","@opentiny/vue-button","@opentiny/vue-bulletin-board","@opentiny/vue-breadcrumb-item", -"@opentiny/vue-breadcrumb","@opentiny/vue-base-select","@opentiny/vue-badge","@opentiny/vue-autocomplete", -"@opentiny/vue-async-flowchart","@opentiny/vue-area","@opentiny/vue-anchor","@opentiny/vue-amount","@opentiny/vue-alert", -"@opentiny/vue-action-sheet","@opentiny/vue-action-menu","api-client","semantic-release-plugin-update-version-in-files", -"@octokit/tsconfig","@octokit/request","@octokit/fixtures-server","@octokit/auth-app","@octokit/auth-action", -"@octokit/plugin-rest-endpoint-methods","@octokit/plugin-request-log","@octokit/plugin-paginate-rest","oclif-plugin", -"@types/wordwrap","@oclif/help","@nx/docker","kill-port","Tsc","Swc","babel-plugin-transform-typescript-metadata", -"babel-plugin-const-enum","Express","Lint","EsBuild","syntax highlighting", -"formatted","map-workspaces","tcompare","minify-registry-metadata","promise-call-limit","promise-all-reject-late", -"proggy","json-stringify-nice","@npmcli/query","smart-contracts","@nomicfoundation/eslint-plugin-hardhat-internal-rules", -"@nomicfoundation/eslint-plugin-slow-imports","@nomicfoundation/hardhat-ethers","ordinal","@shikijs/rehype", -"unist-util-filter","rehype-minify-whitespace","ng-doc","demo","guides","esthetic","@repo/prettier-config", -"@repo/typescript-config","@repo/eslint-config","@types/git-url-parse","@types/extra-watch-webpack-plugin", -"tailwindcss-themer","remark-link-rewrite","remark-heading-id","rehype-extract-excerpt","next-seo","mdast-util-phrasing", -"flexsearch","extra-watch-webpack-plugin","approximate-number","@vcarl/remark-headings","@iconify-icon/react", -"timepicker","mui-x","@mui/x-internals","@mui/core-downloads-tracker","low-level","intercept","web-encoding", -"express-rate-limit","engine.io-parser","@open-draft/until","@open-draft/logger","moj","aws-xray-sdk", -"@aws-sdk/client-ssm","JSON Body Parser","Body Parser","Middy","Durable function","Function URL","@datastream/core", -"@aws/durable-execution-sdk-js-testing","@aws/durable-execution-sdk-js","@types/jju","beta","AEDoc", -"local-eslint-config","decoupled-local-node-rig", -"@rushstack/rig-package","@rushstack/ts-command-line","@rushstack/terminal","@rushstack/node-core-library","normalizer", -"json:api","@material-ui/system","@material-ui/styles","@material-ui/utils","@material-ui/types","notification-system", -"notification-manager","react-remove-scroll","api-connect-tiwtter","api-connect-x","chatfanpage","vinyl-string", -"scss-comment-parser","@kobedevi/sassdoc-theme-default","sass-convert","safe-wipe","lodash.difference", -"@jupyterlab/testing","@lumino/widgets","@lumino/signaling","@lumino/properties","@lumino/polling","@lumino/messaging", -"@lumino/disposable","@lumino/coreutils","@lumino/commands","@lumino/application","@lumino/algorithm", -"@jupyterlab/ui-components","@jupyterlab/translation","@jupyterlab/statedb","@jupyterlab/services", -"@jupyterlab/rendermime-interfaces","@jupyterlab/rendermime","@jupyterlab/docregistry","@jupyterlab/coreutils", -"@jupyterlab/apputils","@date-io/dayjs","document-register-element","@types/redux-mock-store","sandboxed","painless", -"instant","@jest/test-sequencer","jest-snapshot","jest-runtime","jest-runner","jest-resolve-dependencies", -"jest-changed-files","@jest/console","itwinui","itwin","react-table","@itwin/itwinui-illustrations-react","stencil", -"@stencil/angular-output-target","@stencil/react-output-target","@stencil/vue-output-target","@capacitor/status-bar", -"@capacitor/keyboard","@capacitor/haptics","@capacitor/core","@stencil/sass","domino","fast-wrap-ansi","cli-width", -"@atlaskit/pragmatic-drag-and-drop-hitbox","@atlaskit/pragmatic-drag-and-drop-auto-scroll", -"@atlaskit/pragmatic-drag-and-drop","translate api","google api","google translate","google translate api", -"standard-schema","vine","typeschema","effect-ts","hookform","scheme-validation","nope-validator","newtype-ts", -"monocle-ts","io-ts-types","check-export-map","@typeschema/zod","@typeschema/main","@typeschema/core","leasot", -"@homer0/prettier-config","@homer0/eslint-plugin","@hapi/vision","@hapi/inert","@hapi/validate","@hapi/teamwork", -"@hapi/subtext","@hapi/statehood","@hapi/somever","@hapi/shot","@hapi/podium","@hapi/mimos","@hapi/heavy", -"@hapi/catbox-memory","@hapi/catbox","@hapi/call","@hapi/bounce","@hapi/boom","@hapi/ammo","sass-lint", -"@tailwindcss/forms","@tailwindcss/aspect-ratio","@graphql-markdown/cli","@graphql-markdown/graphql", -"@fastify/deepmerge","@grandlinex/swagger-mate","electron-devtools-installer","@electron-forge/cli","@electron/rebuild", -"@fortawesome/free-brands-svg-icons","@fortawesome/fontawesome-common-types","Roboto","roboto","Inter","positioning", -"React.js","@size-limit/preset-app","@fakeyanss/redocly-openapi-core","@eslint-community/eslint-plugin-mysticatea", -"warun","@emotion/use-insertion-effect-with-fallbacks","babel-check-duplicated-nodes","@emotion/memoize", -"@types/pretty-ms","WordPress","@wordpress/api-fetch","@stylistic/stylelint-plugin","aspx","razor","@types/workerpool", -"@types/sql.js","@types/sass","greenlock-express","github-markdown-css","cookie-encrypter","@tinyhttp/cookie-parser", -"@yandex-cloud/tsconfig","@yandex-cloud/prettier-config","@yandex-cloud/eslint-config","@types/markdownlint", -"markdown-it-meta","@types/async","threads-plugin","bem-cn-lite","@yandex-cloud/nodejs-sdk","@doc-tools/yfm2xliff", -"@diplodoc/openapi-extension","@diplodoc/mermaid-extension","@diplodoc/markdown-translation","@diplodoc/client","tsdoc", -"discordjs","esbuild-plugin-version-injector","eslint-config-neon","@vladfrangu/async_event_emitter", -"@sapphire/async-queue","yandex","@types/css","@diplodoc/tsconfig","@diplodoc/lint","@diplodoc/babel-preset", -"@diplodoc/utils","@diplodoc/file-extension","@diplodoc/cut-extension","deven","semver-compare","@types/semver-compare", -"reindent-template-literals","@types/stream-buffers","@types/lodash.merge","@types/has-ansi","@types/dirty-chai", -"@cucumber/query","@cucumber/compatibility-kit","capital-case","@cucumber/tag-expressions","@cucumber/pretty-formatter", -"@cucumber/messages","@cucumber/message-streams", -"@cucumber/junit-xml-formatter","@cucumber/html-formatter","@cucumber/gherkin-utils","@cucumber/gherkin", -"@cucumber/cucumber-expressions","@cucumber/ci-environment","specificity","pseudo", -"postcss-combine-duplicated-selectors","hugo-bin","nf","semantic","@comunica/types","vis-network","tablesort", -"bootstrap.native","@polka/send-type","@commitlint/read","@commitlint/format","vue.js component","vue component", -"vanilla-colorful","color-parse","blurhash","angular 5","ckeditor5-plugin","ckeditor5-feature","talk","reusable", -"conversation","communication","ui kit","@chatscope/chat-ui-kit-styles","human-id","@changesets/assemble-release-plan", -"@changesets/get-dependents-graph","@changesets/should-skip-package","@changesets/apply-release-plan", -"@inquirer/external-editor","@changesets/changelog-git","@manypkg/get-packages","@changesets/logger", -"@changesets/errors","@changesets/config","@changesets/write","@changesets/types","@changesets/read","@changesets/pre", -"@changesets/git","spawndamnit","term-size","bpmn","web-resource-inliner","prince","pdfjs-viewer-element", -"markdown-it-plantuml-ex","markdown-it-multimd-table","markdown-it-codetabs","bpmn-js","awilix","@iframe-resizer/parent", -"@iframe-resizer/child","@biz-dev-ops/web-components","@babel/helper-globals", -"babel-preset","@babel/plugin-transform-react-pure-annotations","@babel/plugin-transform-react-jsx-development", -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", -"@babel/plugin-transform-duplicate-named-capturing-groups-regex", -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", +[128,"@alifd/next","@angular-devkit/core","@angular-devkit/schematics","@angular/animations","@angular/cdk", +"@angular/common","@angular/compiler","@angular/compiler-cli","@angular/core","@angular/forms","@angular/http", +"@angular/material","@angular/platform-browser","@angular/platform-browser-dynamic","@angular/platform-server", +"@angular/router","@ant-design/react-native","@ant-design/web3-common","@ant-design/web3-icons","@auth/sveltekit", +"@babel/cli","@babel/code-frame","@babel/core","@babel/helper-plugin-utils","@babel/parser", +"@babel/plugin-proposal-class-properties","@11ty/eleventy","@adobe/css-tools","@api-components/api-method-documentation", +"@apollo/client","@asyncapi/generator-react-sdk","@babel/eslint-parser","@babel/plugin-proposal-decorators", +"@babel/plugin-proposal-export-default-from","@babel/plugin-proposal-export-namespace-from", +"@babel/plugin-proposal-object-rest-spread","@babel/plugin-syntax-dynamic-import","@babel/plugin-transform-runtime", +"@babel/polyfill","@babel/preset-env","@babel/preset-react","@babel/preset-typescript","@babel/register", +"@babel/runtime","@babel/runtime-corejs2","@babel/traverse","@babel/types","@biz-dev-ops/md-docs","@bwcr_/winston-loki", +"@changesets/cli","@chatscope/chat-ui-kit-react","@ckeditor/ckeditor5-adapter-ckfinder","@ckeditor/ckeditor5-angular", +"@ckeditor/ckeditor5-autoformat","@ckeditor/ckeditor5-basic-styles","@ckeditor/ckeditor5-block-quote", +"@ckeditor/ckeditor5-build-balloon","@ckeditor/ckeditor5-build-balloon-block","@ckeditor/ckeditor5-build-classic", +"@ckeditor/ckeditor5-build-decoupled-document","@ckeditor/ckeditor5-build-inline","@ckeditor/ckeditor5-ckbox", +"@ckeditor/ckeditor5-ckfinder", +"@ckeditor/ckeditor5-clipboard","@ckeditor/ckeditor5-cloud-services","@ckeditor/ckeditor5-core", +"@ckeditor/ckeditor5-easy-image","@ckeditor/ckeditor5-engine","@ckeditor/ckeditor5-essentials", +"@ckeditor/ckeditor5-heading","@ckeditor/ckeditor5-image","@ckeditor/ckeditor5-indent","@ckeditor/ckeditor5-link", +"@ckeditor/ckeditor5-list","@ckeditor/ckeditor5-media-embed","@ckeditor/ckeditor5-paragraph", +"@ckeditor/ckeditor5-paste-from-office","@ckeditor/ckeditor5-react","@ckeditor/ckeditor5-table", +"@ckeditor/ckeditor5-typing","@ckeditor/ckeditor5-ui","@ckeditor/ckeditor5-upload","@ckeditor/ckeditor5-utils", +"@ckeditor/ckeditor5-vue","@ckeditor/ckeditor5-widget","@commitlint/cli","@compodoc/compodoc","@comunica/core", +"@contenthook/browser","@contenthook/cli","@contenthook/node","@coreui/coreui","@csstools/css-parser-algorithms", +"@csstools/css-tokenizer","@csstools/media-query-list-parser","@csstools/postcss-is-pseudo-class", +"@csstools/postcss-progressive-custom-properties","@csstools/selector-specificity","@cucumber/cucumber", +"@deven-org/documentation-skeleton","@devtea2026/aspernatur-ea-non-porro","@devtea2026/consectetur-ab-unde-quisquam", +"@devtea2026/cupiditate-dolorem-excepturi-impedit","@devtea2026/distinctio-soluta-illo-eaque", +"@devtea2026/eum-ullam-est-distinctio","@devtea2026/explicabo-alias-architecto-sed","@devtea2026/improved-journey", +"@devtea2026/inventore-facilis-corporis-cum","@devtea2026/ipsa-omnis-in-molestiae", +"@devtea2026/literate-computing-machine","@devtea2026/maxime-sequi-est-rem", +"@devtea2026/necessitatibus-dolorem-esse-atque","@devtea2026/odit-enim-reiciendis-pariatur", +"@devtea2026/odit-maxime-porro-asperiores","@devtea2026/possimus-ipsa-sint-consequuntur", +"@devtea2026/qui-quos-laborum-amet","@devtea2026/quia-ducimus-placeat-minima", +"@devtea2026/quidem-voluptate-repudiandae-necessitatibus","@devtea2026/rerum-quaerat-porro-animi", +"@devtea2026/ubiquitous-octo-memory","@diotoborg/adipisci-placeat-iure","@diotoborg/amet-architecto-est", +"@diotoborg/at-totam-perspiciatis","@diotoborg/commodi-voluptatum-libero", +"@diotoborg/delectus-necessitatibus-voluptatum","@diotoborg/deserunt-illo-tempora","@diotoborg/dicta-recusandae-veniam", +"@diotoborg/dolor-earum-quia","@diotoborg/dolor-tempora-fuga","@diotoborg/dolores-praesentium-assumenda", +"@diotoborg/eligendi-est-unde","@diotoborg/esse-accusantium-ratione","@diotoborg/illo-amet-architecto", +"@diotoborg/laudantium-itaque-esse","@diotoborg/libero-asperiores-at","@diotoborg/neque-inventore-corporis", +"@diotoborg/nostrum-eveniet-officiis","@diotoborg/odio-dolores-officia","@diotoborg/porro-modi-accusamus", +"@diotoborg/psychic-bassoon","@diotoborg/quasi-repellat-odit","@diotoborg/qui-ullam-ipsum", +"@diotoborg/quo-dolorem-ducimus","@diotoborg/ratione-error-odio","@diotoborg/repellat-blanditiis-quis", +"@diotoborg/tempora-voluptas-distinctio","@diotoborg/ullam-dignissimos-repudiandae","@diotoborg/velit-reiciendis-velit", +"@diotoborg/verbose-robot","@diplodoc/transform","@discordjs/rest","@disqada/workspace","@doc-tools/docs", +"@doc-tools/transform","@dramaorg/esse-praesentium-eligendi","@dramaorg/quae-dolore-nostrum","@eas-framework/server", +"@eightshift/frontend-libs","@electron/docs-parser","@emotion/babel-plugin","@emotion/core","@emotion/css", +"@emotion/styled","@erboladaiorg/ad-exercitationem-ducimus","@erboladaiorg/asperiores-earum-quaerat", +"@erboladaiorg/asperiores-fuga-sint","@erboladaiorg/asperiores-nam-adipisci","@erboladaiorg/autem-dolores-ipsam", +"@erboladaiorg/cupiditate-consectetur-porro","@erboladaiorg/cupiditate-pariatur-optio", +"@erboladaiorg/distinctio-tempora-quis","@erboladaiorg/error-atque-ea","@erboladaiorg/esse-ipsa-numquam", +"@erboladaiorg/ex-hic-molestias","@erboladaiorg/explicabo-eius-adipisci", +"@erboladaiorg/molestiae-voluptatibus-perferendis","@erboladaiorg/molestias-nulla-dolor","@erboladaiorg/nisi-culpa-cum", +"@erboladaiorg/officia-illum-aperiam","@erboladaiorg/perspiciatis-magni-ut","@erboladaiorg/quae-in-veniam", +"@erboladaiorg/quaerat-mollitia-adipisci","@erboladaiorg/quibusdam-itaque-tempora","@erboladaiorg/sint-deleniti-dolorem", +"@erboladaiorg/sit-nesciunt-amet","@erboladaiorg/tenetur-architecto-dolore","@erboladaiorg/ut-dignissimos-laborum", +"@erboladaiorg/velit-fugit-harum","@eslint-community/eslint-utils","@eslint/js","@fakeyanss/redoc", +"@floating-ui/react-dom","@fontsource/inter","@fontsource/roboto","@fortawesome/fontawesome-svg-core", +"@fortawesome/free-solid-svg-icons","@fortawesome/react-fontawesome","@grandlinex/core","@grandlinex/e-kernel", +"@grandlinex/kernel","@graphql-markdown/core","@graphql-markdown/docusaurus","@hajtech/webpack-config","@hapi/hapi", +"@hishprorg/aliquid-ad-vero","@hishprorg/autem-sint-quas","@hishprorg/cum-rem-consequuntur", +"@hishprorg/earum-sint-veritatis","@hishprorg/eius-vero-dicta","@hishprorg/est-dicta-quis", +"@hishprorg/incidunt-quibusdam-tempore","@hishprorg/itaque-esse-accusamus","@hishprorg/iure-optio-nihil", +"@hishprorg/magni-amet-id","@hishprorg/magni-nisi-aperiam","@hishprorg/maxime-voluptates-enim", +"@hishprorg/nihil-ad-ratione","@hishprorg/perspiciatis-ratione-unde","@hishprorg/quis-perferendis-culpa", +"@hishprorg/reprehenderit-excepturi-sed","@hishprorg/sint-nam-consequuntur","@hishprorg/sunt-officia-eligendi", +"@hishprorg/sunt-voluptatem-nobis","@hishprorg/unde-vitae-reprehenderit","@hishprorg/wafflejs", +"@homer0/prettier-plugin-jsdoc","@hookform/resolvers","@iamtraction/google-translate","@idux/cdk","@idux/components", +"@inquirer/core","@ionic/core","@isaacs/cliui","@istanbuljs/nyc-config-typescript","@itwin/itwinui-react","@jest/core", +"@jest/types","@jsonforms/core","@jsonforms/material-renderers","@jsonforms/react","@juigorg/nisi-molestiae-ut", +"@juigorg/sit-nam-neque","@jupyterlab/application","@kobedevi/sassdoc","@kollorg/dicta-itaque-nemo", +"@kollorg/nihil-veniam-deserunt","@libphamton/chatfanpage","@libphamton/fb-group","@listr2/prompt-adapter-inquirer", +"@mantine/core","@mantine/dates","@mantine/hooks","@mantine/modals","@mantine/notifications","@mantine/prism", +"@mantine/styles","@mantine/utils","@material-ui/core","@material-ui/icons","@mathematikoi/jsonapi","@mdx-js/react", +"@microsoft/api-extractor","@microsoft/tsdoc","@microsoft/tsdoc-config","@middy/core","@middy/http-json-body-parser", +"@middy/util","@ministryofjustice/frontend","@mswjs/interceptors","@mui/icons-material","@mui/lab","@mui/material", +"@mui/system","@mui/x-date-pickers","@neato/guider","@ng-doc/core","@ng-doc/ui-kit","@ng-doc/utils", +"@nomicfoundation/hardhat-chai-matchers","@npmcli/arborist","@npmcli/map-workspaces","@npmcli/node-gyp", +"@npmcli/run-script","@npmcorp/marky-markdown","@npmtuanmap/ex-vel-expedita-impedit","@npmtuanmap/psychic-guide", +"@npmtuanmap/recusandae-recusandae-nam-et","@npmtuanmap/sed-quo-nemo-rerum","@npmtuanmap/velit-esse-velit-magnam", +"@nrwl/devkit","@nrwl/tao","@nrwl/workspace","@nx/devkit","@nx/esbuild","@nx/eslint","@nx/express","@nx/js","@nx/nest", +"@nx/node","@nx/workspace","@oclif/command","@oclif/config","@oclif/core","@oclif/plugin-help","@octokit/rest", +"@opentiny/vue","@opentiny/vue-renderless","@opentiny/vue-theme","@opentiny/vue-theme-mobile","@otterhttp/cookie", +"@otterhttp/request","@otterhttp/response","@otterhttp/send","@pact-foundation/pact","@patrtorg/a-ad-expedita", +"@patrtorg/a-ut-amet","@patrtorg/asperiores-vel-accusantium","@patrtorg/aspernatur-dolorum-ducimus", +"@patrtorg/autem-et-hic", +"@patrtorg/consectetur-culpa-non","@patrtorg/consectetur-repudiandae-consequuntur", +"@patrtorg/consequatur-voluptatum-officiis","@patrtorg/ducimus-magni-quibusdam","@patrtorg/enim-magni-hic", +"@patrtorg/est-corrupti-deleniti","@patrtorg/eveniet-tempore-maiores","@patrtorg/illum-sapiente-quos", +"@patrtorg/laborum-doloribus-voluptate","@patrtorg/libero-doloribus-omnis","@patrtorg/libero-voluptas-sequi", +"@patrtorg/magnam-aut-adipisci","@patrtorg/maiores-quidem-quo","@patrtorg/molestias-molestias-ut", +"@patrtorg/nam-eius-unde","@patrtorg/pariatur-deleniti-quaerat","@patrtorg/porro-labore-eos","@patrtorg/quae-earum-eius", +"@patrtorg/quos-quasi-ipsa","@patrtorg/sapiente-eos-magnam","@patrtorg/sapiente-exercitationem-sit", +"@patrtorg/tenetur-animi-reprehenderit","@perseid/store","@phosphor/widgets","@phun-ky/speccer","@polymer/polymer", +"@qooxdoo/framework","@quasar/extras","@readyplayerme/visage","@reduxjs/toolkit","@rollup/plugin-commonjs", +"@rollup/plugin-node-resolve","@sanity/tsdoc","@scalar/api-reference","@scalar/fastify-api-reference", +"@serenity-js/protractor","@serenity-js/webdriverio","@sinonjs/fake-timers","@storybook/addon-docs", +"@subwallet/react-ui","@supernovaio/sdk","@supernovaio/sdk-exporters","@supernovaio/supernova-sdk", +"@sveltejs/eslint-config","@sveltejs/kit","@sveltejs/vite-plugin-svelte","@svgr/webpack","@swc/core", +"@swenkerorg/maiores-voluptatibus-nemo","@swenkerorg/modi-dolorum-provident","@swenkerorg/nulla-voluptates-voluptates", +"@swisspost/design-system-styles","@symbiotejs/symbiote","@synion/md-docs","@taktikorg/aut-distinctio-repellat", +"@taktikorg/consectetur-quo-quos","@taktikorg/corporis-nihil-odit","@taktikorg/deleniti-qui-dolorem", +"@taktikorg/dolor-ratione-quibusdam","@taktikorg/harum-reprehenderit-perferendis","@taktikorg/illum-accusamus-possimus", +"@taktikorg/ipsa-totam-aperiam","@taktikorg/iste-ex-tempore","@taktikorg/itaque-nam-eos", +"@taktikorg/itaque-tempore-exercitationem","@taktikorg/maiores-dolores-aut","@taktikorg/molestias-fuga-possimus", +"@taktikorg/nam-esse-animi","@taktikorg/necessitatibus-repudiandae-officia","@taktikorg/nisi-reprehenderit-amet", +"@taktikorg/placeat-voluptates-dolorum","@taktikorg/praesentium-dolorum-quis","@taktikorg/praesentium-neque-ipsam", +"@taktikorg/quo-reiciendis-quibusdam","@taktikorg/recusandae-ratione-veniam","@taktikorg/similique-natus-officia", +"@taktikorg/suscipit-modi-ratione","@taktikorg/tempore-veniam-in","@taktikorg/unde-animi-omnis", +"@taktikorg/velit-nobis-blanditiis","@taktikorg/voluptatem-pariatur-tenetur","@tanem/svg-injector", +"@tanstack/react-query","@tanstack/svelte-query","@teamhanko/hanko-frontend-sdk","@testing-library/cypress", +"@testing-library/dom","@testing-library/jest-dom","@testing-library/jest-native","@testing-library/react", +"@testing-library/user-event","@tinyhttp/app","@tinyhttp/cookie","@tinyhttp/cookie-signature","@tinyhttp/cors", +"@tinyhttp/etag","@tinyhttp/forwarded","@tinyhttp/proxy-addr","@tinyhttp/req","@tinyhttp/res","@tinyhttp/router", +"@tinyhttp/send","@tinyhttp/type-is","@tinyhttp/url","@tsparticles/engine","@twurple/ebs-helper","@types/estree", +"@typescript-eslint/eslint-plugin","@typescript-eslint/parser","@typescript-eslint/utils","@ucloud-fe/react-components", +"@udecode/plate-core","@uiw/react-button","@uiw/react-icon","@uiw/react-input","@uiw/react-overlay-trigger","@uiw/utils", +"@unleash/proxy","@uploadcare/file-uploader","@vitejs/plugin-legacy","@vitejs/plugin-react", +"@vue/eslint-config-typescript","@wesleytodd/openapi","@wuxh/dumi","@zitterorg/adipisci-quae-eius", +"@zitterorg/aspernatur-pariatur-occaecati","@zitterorg/at-esse-odit","@zitterorg/cum-ipsum-beatae", +"@zitterorg/doloremque-ut-omnis","@zitterorg/est-sunt-quos","@zitterorg/eum-veritatis-placeat", +"@zitterorg/fluffy-waddle","@zitterorg/glowing-barnacle","@zitterorg/illum-perferendis-consectetur", +"@zitterorg/itaque-nisi-veritatis","@zitterorg/probable-octo","@zitterorg/upgraded-fishstick", +"@zkportal/aleo-oracle-sdk","abort-controller","accepts","acl","acorn","acorn-walk","action-cli","adm-zip","after", +"agenda","aid-guard1","airtap","ajv","ajv-formats","although-line-wall-corn","amqp","amqplib","analsorhost-simple-bs", +"angular","angular-animate","angular-cli","angular-material","ansi-colors","ansi-escapes","ansi-regex","ansi-styles", +"ansis","ant-design-vue","antd","antfu","anyway-south-boy-pilot","api-console","apidoc","apidoc-markdown","apn", +"apollo-cache-inmemory","apollo-client","apollo-link","apollo-link-http","app-root-path","appium-android-driver", +"apple-transportation-web3-locate","applicationinsights","appsync-client-node","archiver","arg","argparse", +"arrangement-tell-arrange","array.prototype.flatmap","arrify","assert","assert-plus","assume","async","async-listen", +"async-retry","async-validator","atob","aud","auto-changelog","auto-install","autoprefixer","ava", +"awesome-typescript-loader","aws-sdk","axe-core","axios","azure-storage","babel","babel-cli","babel-core","babel-eslint", +"babel-generator","babel-helper-fixtures","babel-helper-plugin-test-runner","babel-helper-vue-jsx-merge-props", +"babel-jest","babel-loader","babel-plugin-add-module-exports","babel-plugin-dynamic-import-node", +"babel-plugin-external-helpers","babel-plugin-import","babel-plugin-istanbul","babel-plugin-lodash", +"babel-plugin-module-resolver","babel-plugin-named-asset-import","babel-plugin-syntax-dynamic-import", +"babel-plugin-syntax-jsx","babel-plugin-transform-async-to-generator","babel-plugin-transform-class-properties", +"babel-plugin-transform-decorators-legacy","babel-plugin-transform-es2015-block-scoping", +"babel-plugin-transform-es2015-modules-commonjs","babel-plugin-transform-es2015-template-literals", +"babel-plugin-transform-object-rest-spread","babel-plugin-transform-react-jsx", +"babel-plugin-transform-react-remove-prop-types","babel-plugin-transform-regenerator","babel-plugin-transform-runtime", +"babel-polyfill","babel-preset-airbnb","babel-preset-env","babel-preset-es2015","babel-preset-react", +"babel-preset-react-app","babel-preset-stage-0","babel-preset-stage-1","babel-preset-stage-2","babel-preset-stage-3", +"babel-register","babel-runtime","babel-template","babel-traverse","babel-types","babelify","babylon","backbone", +"baqend","bark-needs-visit4", +"base-64","base-individual-comfortable-crop","base64-js","basic-auth","batuta","bcrypt","bcrypt-nodejs","bcryptjs", +"bearcat","beautify-benchmark","beauty-foot-compass5","beefy","believed-usually-greater-passage","benchmark", +"best-lips-shoulder","best-valley2","between-cry-additional","beyond","bfj","bignumber.js","bindings","bip39", +"bizcharts","bl","blanket","blessed","blessed-contrib","blockchain-am5","blockchain-baby","blockchain-back1", +"blockchain-closely","blockchain-directly","blockchain-egg","blockchain-happily","blockchain-language","blockchain-own8", +"blockchain-record","blockchain-scientist","blocked","bluebird","bn.js","body-parser","bookshelf","boom","bootstrap", +"bootstrap-sass","bower","boxen","brain","branch-body-web3-feel","branch-camera-web3-organization","brfs", +"broccoli-funnel","broccoli-merge-trees","broccoli-test-helper","brought-tried-whether8","browser-sync","browserify", +"browserify-shim","browserslist","bs58","bson","btoa","buble", +"buffer","buffer-equal","bufferutil","built-who-entire","builtin-modules","bulma","bump-cli","bundle-collapser","bunyan", +"busboy","bytebuffer","bytes","c8","cac","cache-manager","call-bind","camelcase","caniuse","caniuse-lite","canvas", +"careful-faster-dirty-matter","case-sensitive-paths-webpack-plugin","casperjs","caught-brain-service0","chai", +"chai-as-promised","chai-passport-strategy","chai-subset","chalk","chance","chance-able-necessary-bell","change-case", +"changelogen","chart.js","cheerio","chicken-fell-spread","child_process","child-process-promise","choerodon-ui", +"chokidar","ci-info","ckeditor5","classnames","clean-css","clean-webpack-plugin","clear","clear-module","cli", +"cli-boxes","cli-color","cli-cursor","cli-spinner","cli-spinners","cli-table","cli-table2","cli-table3","cli-truncate", +"cli-ux","clipanion","clipboard","clipboardy","cliui","clone","clsx", +"clui","co","co-prompt","code","codecov","codemirror","coffee-script","coffeescript","color","colorette","colors", +"columnify","command-exists","command-line-args","command-line-usage","commander","commitizen","commitlint", +"common-tags","component-emitter","compression","concat-stream","concurrently","config","configstore","connect", +"connect-flash","connect-history-api-fallback","connect-mongo","connect-redis","consola","consolidate", +"content-disposition","content-type","contenthook","conventional-changelog","conventional-changelog-cli", +"conventional-changelog-conventionalcommits","convert-source-map","cookie","cookie-parser","cookie-session", +"cookie-signature","copy-to-clipboard","copy-webpack-plugin","copyfiles","corcojs-qrcode","corcojs-qrcode-logo", +"cordova","core-js","cors","cosmiconfig","coveralls","cpy-cli","crawler","crc","create-hash","create-react-class", +"critical","cron","croner","cronnor","cropperjs","cross-env", +"cross-fetch","cross-spawn","crypto","crypto-browserify","crypto-js","cson-parser","cspell","css", +"css-declaration-sorter","css-functions-list","css-loader","css-minimizer-webpack-plugin","css-select","css-tree", +"cssdb","cssesc","cssnano","cssstyle","csstype","csurf","csv","csv-generate","csv-parse","csv-stringify","csvtojson", +"cucumber","cuid","cypress","cz-conventional-changelog","d3","d3-array","d3-scale","d3-selection","d3-shape", +"dable-effect","daisyui","dance-you-thou","dargs","datafire","date-fns","dateformat","dayjs","deasync","debounce", +"debug","decamelize","decompress","dedent","dedupe","deep-assign","deep-consist-ability3","deep-diff","deep-eql", +"deep-equal","deep-extend","deepmerge","del","del-cli","delay","depcheck","depd","dependency-check","depth-clay-tax7", +"detect-indent", +"detect-port","did-enter-lay","diff","diff2html","difference-mile-pocket5","directed-graph-typed","dirty-chai", +"discord-backend-manager","discord.js","dist","distance-its-clear-rate","dmd","dmd-grunt-jsdoc2md","dnd-multi-backend", +"dnode","doc-detective","doc-detective-core","docco","docgen","dockerode","docpad","docschema","docsify-tabs","doctoc", +"documentation","documentdb","docusaurus","docusaurus-lunr-search","dom-helpers","dom-serializer","dom-to-image-more", +"dompurify","dot","dotenv","dotenv-expand","download","download-git-repo","doxdox","doxdox-cli","doxdox-core", +"doxdox-parser-dox","doxdox-parser-jsdoc","doxdox-renderer-bootstrap","doxdox-renderer-json","doxdox-renderer-markdown", +"draft-js","dropzone","dtslint","dubnium","dumi","dumi-cm","duplexer","dw-neit-antd","each","echarts","eclint","ejs", +"elasticsearch","electricity-death-web3-story","electron","electron-builder","electron-packager","electron-prebuilt", +"electron-rebuilder", +"element-resize-detector","element-ui","eleventy","elliptic","email-templates","emailjs","ember-cli","ember-cli-babel", +"ember-cli-htmlbars","emmet","emotion","encodeurl","end-of-stream","enhanced-resolve","enquirer","ent","enumtype", +"envify","envinfo","enzyme","enzyme-adapter-react-16","enzyme-adapter-utils","enzyme-shallow-equal","errorhandler", +"es-check","es-value-fixtures","es5-ext","es5-shim","es6-error","es6-promise","es6-promisify","es6-shim","esbuild", +"escape-html","escape-string-regexp","escodegen","eslint","eslint-config-airbnb","eslint-config-airbnb-base", +"eslint-config-airbnb-typescript","eslint-config-google","eslint-config-gulp","eslint-config-oclif", +"eslint-config-oclif-typescript","eslint-config-prettier","eslint-config-react-app","eslint-config-semistandard", +"eslint-config-standard","eslint-config-unjs","eslint-config-xo","eslint-config-xo-lass","eslint-doc-generator", +"eslint-import-resolver-typescript","eslint-loader","eslint-plugin-ava","eslint-plugin-babel","eslint-plugin-compat", +"eslint-plugin-es5","eslint-plugin-eslint-comments","eslint-plugin-eslint-plugin","eslint-plugin-flowtype", +"eslint-plugin-html","eslint-plugin-import","eslint-plugin-jest", +"eslint-plugin-jsdoc","eslint-plugin-jsonc","eslint-plugin-jsx-a11y","eslint-plugin-markdown","eslint-plugin-mocha", +"eslint-plugin-n","eslint-plugin-node","eslint-plugin-prettier","eslint-plugin-promise","eslint-plugin-react", +"eslint-plugin-react-hooks","eslint-plugin-regexp","eslint-plugin-security","eslint-plugin-sonarjs", +"eslint-plugin-standard","eslint-plugin-svelte","eslint-plugin-testing-library","eslint-plugin-tsdoc", +"eslint-plugin-unicorn","eslint-plugin-vitest","eslint-plugin-vue","eslint-remote-tester","eslint-scope", +"eslint-visitor-keys","eslintrc","esm","espree","esprima","estraverse","estree-walker","etag","ethereumjs-tx", +"ethereumjs-util","evalmd","event-stream","eventemitter2","eventemitter3","events","excellent-difficult-good","execa", +"exit","expect","expect-type","expect.js","express","express-adexe","express-autodoc","express-generator", +"express-handlebars","express-jwt","express-session","express-tools","express-typed-rpc","express-validator", +"express-zod-api","extend","extend-shallow","extract-text-webpack-plugin","extract-zip","facing-cook", +"fair-tower-web3-store","faker","fancy-log","fast-check", +"fast-csv","fast-deep-equal","fast-glob","fast-plist","fast-xml-parser","fastclick","fastify","father","faucet","fbjs", +"fe-pilot","feature-rising-small7","femo","fetch-mock","fibers","figlet","figures","file-loader","file-saver", +"file-type","filesize","finalhandler","find-cache-dir","find-up","findup-sync","firan-logging","firebase", +"firebase-admin","firebase-tools","fixpack","fixturify","flat","flatpak-bundler","flatpickr","flightplan","flow-bin", +"flowbite","fluent-ffmpeg","flux","follow-redirects","font-awesome","for-each","forever", +"fork-ts-checker-webpack-plugin","fork-ts-checker-webpack-plugin-alt","form-data","formidable","formik","fresh", +"fresh-dangerous","friendly-errors-webpack-plugin","front-matter","fs","fs-extra","fs-jetpack","fs-promise","fsevents", +"fstream","ftp","functions-have-names","fur-race-web3-pale","fuse.js","futen","fuzzy", +"gaze","gc-signals","generator-angular","generator-gulp-angular","generator-nitro","generic-pool","gensequence", +"gentle-party-other","geolib","get-package-type","get-port","get-stdin","get-stream","get-tsconfig","getmac","gh-pages", +"ghooks","github","github-buttons","glob","glob-parent","global","globals","globby","gm","gmll","google-spreadsheet", +"googleapis","got","government-letter-web3-till","govuk-frontend","graceful-fs","gradually-current-chief","graph-these", +"graphql","graphql-tag","graphql-tools","gray-matter","grpc","grunt","grunt-angular-templates","grunt-auto-release", +"grunt-browserify","grunt-bump","grunt-cli","grunt-concurrent","grunt-contrib-clean","grunt-contrib-compass", +"grunt-contrib-concat","grunt-contrib-connect","grunt-contrib-copy","grunt-contrib-csslint","grunt-contrib-cssmin", +"grunt-contrib-htmlmin","grunt-contrib-imagemin","grunt-contrib-internal","grunt-contrib-jshint","grunt-contrib-less", +"grunt-contrib-nodeunit","grunt-contrib-sass","grunt-contrib-uglify","grunt-contrib-watch", +"grunt-conventional-changelog","grunt-conventional-github-releaser", +"grunt-eslint","grunt-jscs","grunt-jsdoc","grunt-karma","grunt-mocha-test","grunt-newer","grunt-notify","grunt-npm", +"grunt-sass","grunt-saucelabs","grunt-shell","grunt-simple-mocha","grunt-spritesmith","grunt-usemin","gts","guarapi", +"gulp","gulp-angular-templatecache","gulp-atom-electron","gulp-autoprefixer","gulp-awspublish","gulp-azure-storage", +"gulp-babel","gulp-bom","gulp-bower","gulp-browserify","gulp-buffer","gulp-bump","gulp-cache","gulp-cached", +"gulp-changed","gulp-clean","gulp-clean-css","gulp-coffee","gulp-compass","gulp-concat","gulp-concat-css", +"gulp-conflict","gulp-connect","gulp-copy","gulp-csscomb","gulp-csslint","gulp-cssnano","gulp-csso","gulp-data", +"gulp-eslint","gulp-file-include","gulp-filter","gulp-flatmap","gulp-flatten","gulp-format-md","gulp-ftp", +"gulp-gh-pages","gulp-git","gulp-gzip","gulp-handlebars","gulp-header","gulp-html-replace","gulp-htmlmin", +"gulp-iconfont","gulp-if","gulp-ignore","gulp-image-resize","gulp-imagemin", +"gulp-include","gulp-inject","gulp-inline-css","gulp-install","gulp-istanbul","gulp-jade","gulp-jasmine","gulp-jscs", +"gulp-jshint","gulp-json-editor","gulp-less","gulp-livereload","gulp-load-plugins","gulp-minify-css","gulp-minify-html", +"gulp-mocha","gulp-newer","gulp-ng-annotate","gulp-nodemon","gulp-notify","gulp-plugin-extras","gulp-plumber", +"gulp-postcss","gulp-preprocess","gulp-prompt","gulp-react","gulp-remote-src","gulp-rename","gulp-replace","gulp-rev", +"gulp-rev-replace","gulp-ruby-sass","gulp-sass","gulp-sftp","gulp-shell","gulp-size","gulp-sourcemaps", +"gulp-strip-debug","gulp-stylus","gulp-svg-sprite","gulp-svgmin","gulp-svgstore","gulp-template","gulp-tsb", +"gulp-tslint","gulp-typescript","gulp-uglify","gulp-uncss","gulp-usemin","gulp-useref","gulp-util","gulp-vinyl-zip", +"gulp-watch","gulp-webpack","gulp-webserver","gulp-zip","gulp.spritesmith","gzip-size","hallmark","hammerjs", +"handlebars","hapi","happy-dom","happy-meant", +"hard-cool-rhythm-continued","has-flag","has-parts-ice-fact","has-symbols","hash-sum","hasown","hast-util-raw", +"hast-util-sanitize","hast-util-select","hast-util-to-estree","hast-util-to-html","hast-util-to-jsx-runtime", +"hast-util-to-string","hast-util-to-text","hastscript","hay-against-any-hurry","hbs","he","heapdump","helmet", +"heroicons","hexlet-pairs","hexo","highland","highlight.js","hiredis","history","history-brass-sound", +"hit-running-special8","hoek","hogan.js","hoist-non-react-statics","homebridge","hono","hope-slight-walk1", +"hosted-git-info","how-to-npm","html-dom-parser","html-element-attributes","html-encoding-sniffer","html-entities", +"html-escaper","html-loader","html-minifier","html-minifier-terser","html-pdf","html-react-parser","html-tags", +"html-to-image","html-to-text","html-validate","html-webpack-plugin","htmlnano","htmlparser2","http","http-errors", +"http-proxy","http-proxy-agent","http-proxy-middleware","http-server","http-status","http-status-codes","https", +"https-proxy-agent", +"husky","hyperquest","hyphenate-style-name","i","i18n","i18next","i18next-gridly-backend","iconv-lite", +"identity-obj-proxy","ignore","image-size","imagemagick","imagemin","imagemin-pngquant","imap","immer", +"immutability-helper","immutable","import-fresh","import-local","impress","in-publish","indent-string","inert","inferno", +"inflection","inherits","ini","iniparser","ink","inline-style-parser","innosetup-compiler","inquirer", +"inquirer-autocomplete-prompt","inside-throw","instagram-node","install","interpret","intl","intl-tel-input","invariant", +"inversify","ionic","ionicons","ioredis","ip","irc","is","is-ci","is-glob","is-installed-globally","is-plain-obj", +"is-plain-object","is-potential-custom-element-name","is-promise","is-stream","is-url","is-wsl","isarray","isobject", +"isomorphic-fetch","istanbul","itwcw-package-analytics","iview", +"jackspeak","jade","jake","jarallax","jasmine","jasmine-core","jasmine-node","jest","jest-canvas-mock","jest-cli", +"jest-diff","jest-environment-jsdom","jest-environment-jsdom-fourteen","jest-environment-node","jest-extended", +"jest-html-reporters","jest-junit","jest-pnp-resolver","jest-resolve","jest-util","jest-watch-typeahead","jest-worker", +"jimp","jiti","jodit","jodit-react","johnny-five","joi","jotai","jquery","jquery-ui","js-base64","js-beautify", +"js-cookie","js-yaml","jsarch","jscpd","jscs","jsdoc","jsdoc-api","jsdoc-to-markdown","jsdom","jsdom-no-contextify", +"jsesc","jshint","jshint-stylish","json-2-csv","json-loader","json-schema","json-server","json-stable-stringify", +"json-stringify-safe","json5","jsonc-parser","jsonfile","jsonschema","JSONStream","jsonwebtoken","jspm","jstates", +"jszip","jwt-decode","jwt-simple","karma", +"karma-browserify","karma-browserstack-launcher","karma-chai","karma-chrome-launcher","karma-coverage", +"karma-detect-browsers","karma-edge-launcher","karma-firefox-launcher","karma-ie-launcher","karma-jasmine","karma-mocha", +"karma-mocha-reporter","karma-phantomjs-launcher","karma-qunit","karma-rollup-preprocessor","karma-safari-launcher", +"karma-sauce-launcher","karma-sinon","karma-sourcemap-loader","karma-spec-reporter","karma-webpack","keycode","keypress", +"keyv","kleur","knex","knip","known-css-properties","knox","koa","koa-body","koa-bodyparser","koa-compose","koa-logger", +"koa-mount","koa-router","koa-static","kue","lab","label-lungs-court4","language-perfectly-blow-series", +"late-dress-mail5","latest-version","lazy.js","lead-alike-web3-applied","leaflet","left-pad","leftpad","lerna","less", +"less-loader","level","leveldown","levelup","leven","libnpmdiff","libnpmexec","libnpmfund","libphonenumber-js","liftoff", +"lilconfig","linkifyjs","lint-staged","listr", +"listr2","lit-element","lite-server","live-server","livereload","load-grunt-config","load-grunt-tasks","loader-utils", +"local-web-server","localforage","localtunnel","lockfile-lint","lodash","lodash-es","lodash.assign","lodash.camelcase", +"lodash.clonedeep","lodash.debounce","lodash.defaults","lodash.flatten","lodash.foreach","lodash.get","lodash.isempty", +"lodash.isequal","lodash.isfunction","lodash.isobject","lodash.isplainobject","lodash.isstring","lodash.map", +"lodash.memoize","lodash.merge","lodash.omit","lodash.pick","lodash.set","lodash.template","lodash.throttle", +"lodash.uniq","log","log-symbols","log-update","log4js","loglevel","long","loopback","loose-envify","lowdb","lru-cache", +"lucide","luck-rubber-do","lwip","lws","madwizard","magic-string","magmastream","main-bower-files","make-dir", +"make-node","mammoth","manifest","mantine-contextmenu","many-favorite6","map-stream","mapboxgl-legend","markdown", +"markdown-it","markdown-it-anchor","markdown-it-container","markdown-it-emoji","markdown-pdf","markdown-table", +"markdown-to-jsx","markdown-toc","markdownlint","markdownlint-cli","marked","marky-markdown","matcha","material-ui", +"mathjs","matter-view-web3-fence","md5","md5-file","mdast-util-from-markdown","mdast-util-to-hast","mdn-data","mdxts", +"memcached","memfs","memoize-one","memory-cache","memory-fs","memorystream","memwatch","mental-oxygen-dozen","meow", +"merge","merge-stream","metalsmith","meteor","method-override","methods","microbundle","micromark","micromatch","mime", +"mime-types","min-heap-typed","mini-css-extract-plugin","minify","minimatch","minimist","mirror-jet-printed-supper", +"missing-sport-living","mkcert","mkdirp","mlly","mobx","mobx-react","mocha","mocha-headless-chrome", +"mocha-junit-reporter","mocha-lcov-reporter","mock-fs","mock-property","mock-require","mock-stdin","mockdate","mockery", +"mockjs","moleculer","moment","moment-timezone","monaco-yaml","monads-io","mongo-express","mongodb","mongoose","monitor", +"monitor-dashboard","monk","morgan","motor-positive-spirit","move-wolf-throughout","movie-obtain-tail-prepare","mqtt", +"ms","mssql","msw","mud-slowly-five3","multer","multimatch","multiparty","multiple-cucumber-html-reporter","mustache", +"muuri","mysql","mysql2","mz","n","nails-wild-interest-garden","nan","nano","nano-css","nanoid","native-keymap", +"nativefier","nativescript","natural","nconf","ncp","near-social-bridge","nedb","needle","nest-commander","newman", +"newrelic","next-auth","nextjs","ng-mocks","ng-zorro-antd","ngrok","nib","nightmare","nightwatch","nine-yes-merely6", +"nise","nock","node-addon-api","node-cache","node-containerpattern","node-dev","node-dir", +"node-emoji","node-fetch","node-forge","node-gcm","node-geocoder","node-gyp","node-html-parser","node-inspector", +"node-mocks-http","node-notifier","node-oauth2-server","node-powertools","node-pre-gyp","node-pty","node-red", +"node-sass","node-schedule","node-static","node-uuid","node-watch","node-windows","node-xlsx","node.extend","nodegit", +"nodemailer","nodemon","nodeunit","nodewebkit","nolangjs","nomnom","nopt","normalize-path","normalize-url", +"normalize-wheel","normalize.css","np","npm","npm-check","npm-check-updates","npm-package-arg","npm-package-json-lint", +"npm-packlist","npm-registry-fetch","npm-run-all","npm-run-all2","npm-run-path","npm-to-yarn","npm-windows-upgrade", +"npmcli","npmignore","npmlog","nprogress","nsp","nuke-cli","numeral","nunjucks","nvm","nvmrc","nwsapi","nx","nyc","oas", +"oas-normalize","oauth", +"object-assign","object-hash","object-inspect","object-keys","object-path","object.assign","object.entries", +"observe-food-motion-hidden","on-finished","once","onchange","one-how-hand","onoff","open","open-cli", +"openapi-client-axios","openapi2html","opencv","opener","openweather","opn","optimist", +"optimize-css-assets-webpack-plugin","optionator","ora","orchestrator","orm","os","osenv","outdent","outline-slowly", +"overlayscrollbars","ovsx","p-event","p-map","p-queue","p-timeout","p23","pa11y","pacote","pageres","paintor","pako", +"para-cli","para-client-js","parallelshell","parse","parse5","parseurl","passport","passport-facebook","passport-local", +"passport-oauth","passport-oauth2","passport-strategy","path","path-browserify","path-exists","path-is-absolute", +"path-to-regexp","pathe","paypal-server-api","pdfjs","pdfkit", +"performance-now","pg","phantom","phantomjs","phantomjs-prebuilt","phonegap","pi-gpio","picocolors","picomatch", +"pie-case-nor-great","pify","pino","pinst","pitch-somehow-earth-brave","pixelmatch","pkg-dir","pkg-up","pkginfo", +"playwright","plist","plugin-error","plur","pluralize","pm2","pngjs","pnp-webpack-plugin","pnpm","pnpx", +"poe-api-manager","polished","political-plan-careful","popper.js","portfinder","postcss","postcss-calc","postcss-cli", +"postcss-color-functional-notation","postcss-colormin","postcss-convert-values","postcss-cssnext","postcss-custom-media", +"postcss-custom-properties","postcss-custom-selectors","postcss-discard-comments","postcss-discard-duplicates", +"postcss-discard-empty","postcss-discard-overridden","postcss-flexbugs-fixes","postcss-html", +"postcss-image-set-function","postcss-import","postcss-load-config","postcss-loader","postcss-merge-longhand", +"postcss-merge-rules","postcss-minify-font-values","postcss-minify-gradients","postcss-minify-params", +"postcss-minify-selectors","postcss-modules-local-by-default","postcss-nested","postcss-nesting","postcss-normalize", +"postcss-normalize-charset", +"postcss-normalize-positions","postcss-normalize-string","postcss-normalize-unicode","postcss-normalize-url", +"postcss-normalize-whitespace","postcss-ordered-values","postcss-prefix-selector","postcss-preset-env", +"postcss-reduce-initial","postcss-safe-parser","postcss-scss","postcss-selector-parser","postcss-svgo", +"postcss-unique-selectors","postcss-value-parser","postgrejs","posthtml","pouchdb","power-assert","pre-commit","preact", +"prepare-package","prettier","prettier-plugin-jsdoc","prettier-plugin-organize-imports","prettier-plugin-packagejson", +"prettier-plugin-svelte","prettierrc","pretty-bytes","pretty-error","pretty-format","pretty-ms","pretty-quick", +"prettyjson","prisma","prismjs","private-bower","proc-log","process","progress","progress-bar-webpack-plugin","promise", +"promise-polyfill","promises-aplus-tests","promo-server","prompt","prompts","prop-types","property-information", +"protobufjs","protractor","proxy","proxyquire","publish-please","pug","pull-stream","pump","punycode","puppeteer", +"purgecss","q","qr-image","qrcode-terminal","qs", +"query-string","querystring","queue","queue-typed","quill","qunit","qunit-dom","qunitjs","raf","ramda","random-words", +"randombytes","randomstring","range-parser","raven","raw-body","raw-loader","rc","rc-slider","rc-tooltip","rc-util", +"rcw-plugin","react","react-addons-css-transition-group","react-addons-shallow-compare","react-apollo", +"react-app-polyfill","react-bootstrap","react-color","react-copy-to-clipboard","react-datepicker","react-dev-utils", +"react-dnd","react-dnd-html5-backend","react-docgen","react-dom","react-dropzone","react-error-overlay","react-helmet", +"react-hook-form","react-hot-loader","react-i18next","react-icons","react-intersection-observer","react-intl","react-is", +"react-lifecycles-compat","react-markdown","react-modal","react-motion","react-native","react-native-keychain", +"react-native-vector-icons","react-number-format","react-onclickoutside","react-property","react-redux","react-refresh", +"react-responsive","react-router","react-router-dom","react-router-redux","react-scripts","react-select", +"react-slick","react-styleguidist","react-svg","react-tap-event-plugin","react-test-renderer","react-toastify", +"react-tools","react-transition-group","react-virtualized","reactify","reactstrap","read","read-pkg","read-pkg-up", +"readable-stream","readline","readline-sync","recall-shut-say","recast","recently-building-save","rechoir","recompose", +"recursive-readdir","redis","redoc","redocusaurus","redux","redux-actions","redux-form","redux-logger","redux-saga", +"redux-thunk","reflect-metadata","regenerate","regenerator-runtime","rehype","rehype-autolink-headings", +"rehype-external-links","rehype-mdx-code-props","rehype-parse","rehype-raw","rehype-slug","rehype-stringify", +"release-it","remap-istanbul","remark","remark-cli","remark-gfm","remark-html","remark-mermaidjs","remark-parse", +"remark-preset-github","remark-preset-wooorm","remark-rehype","remarkable","replace-ext","replace-in-file","request", +"request-promise","request-promise-native","require-all","require-dir","requireindex","requirejs", +"reselect","resize-observer-polyfill","resolve","resolve-from","resolve-url-loader","rest-chronicle","restify","restler", +"restore-cursor","rethinkdb","retry","rewire","rfdc","rimraf","robotjs","rollup","rollup-plugin-babel", +"rollup-plugin-buble","rollup-plugin-cleanup","rollup-plugin-commonjs","rollup-plugin-dts","rollup-plugin-json", +"rollup-plugin-license","rollup-plugin-node-builtins","rollup-plugin-node-globals","rollup-plugin-node-resolve", +"rollup-plugin-replace","rollup-plugin-sourcemaps","rollup-plugin-terser","rollup-plugin-typescript", +"rollup-plugin-typescript2","rollup-plugin-uglify","rollup-plugin-visualizer","rollup-pluginutils","routes","rsnext", +"rsvp","rtlcss","run-sequence","run-series","rx","rxjs","rxjs-compat","safe-buffer","safe-publish-latest","sails", +"salt-type-oldest-faster","sand-have-metal6","sanitize-filename","sanitize-html","sass","sass-loader","sat-local","sax", +"scheduler","schema-markdown-doc","schema-utils","science-knowledge-truth","seblakhotspicy","secp256k1","seedrandom", +"selenium-webdriver","semantic-release","semantic-ui-react", +"semistandard","semver","send","seneca","sentiment","sequelize","serialize-javascript","serialport","serve", +"serve-favicon","serve-index","serve-static","server-destroy","serverless-finch","serverless-spy","sha1","shallowequal", +"sharp","shell-quote","shelljs","shinning-continued-becoming","shortid","should","showdown","shx","sick-typical-court7", +"signal-exit","similar-cheese-loss","simple-assi-animation","simple-git","simple-prompts-web3","single-spa", +"sink-mighty-orbit0","sink-rod-lamp","sinon","sinon-chai","sinopia","sirv","size-limit","sizeitup","skapi-js", +"sky-buy-web3-rock","slash","slice-ansi","slow-deps","slow-voice-spell-pass","slug","slugify","small-grow-mix4", +"snake-seven-recall-interior","snazzy","soap","socket.io","socket.io-client","sockjs-client","source-map", +"source-map-js","source-map-loader","source-map-support","space-separated-tokens","spectaql", +"speech-section-part-frozen","spirit-labor-cheese","split", +"split2","spring-dust-wall-size","sprintf","sprintf-js","sprity","sqlite3","ssh2","ssri","st.db","stack-trace", +"standard","standard-version","star-location","start-server-and-test","statsd","statuses","stock-independent-balloon", +"storybook","storybook-django","straiforos-compodoc","strange-lady-riding9","stream-assert","stream-transform", +"streamii","strftime","string","string-strip-html","string-width","stringify-entities","strip-ansi","strip-bom", +"strip-json-comments","stripe","strongloop","style-dictionary","style-loader","style-to-js","style-to-object", +"styled-components","styled-jsx","stylehacks","stylelint","stylelint-config-standard", +"stylelint-declaration-strict-value","stylelint-order","stylelint-scss","stylus","stylus-loader", +"sugar-policeman-entire","sugarss","sun-grass-circle0","superagent","superjson","supertest","supertest-as-promised", +"supervisor","support-vessels-web3-vessels","supports-color","surrounded-characteristic-or-rain","svelte","svelte-check", +"svelte-preprocess","svg-sprite","svgo", +"sw-precache-webpack-plugin","swagger-autogen","swagger-inline","swagger-themes","swagger-ui-express", +"swam-darkness-weak","swig","swiper","sync-request","systeminformation","systemjs","tail-iron-became5","tailwind", +"tailwind-merge","tailwindcss","tap","tap-spec","tapable","tape","tar","tar-fs","tar-stream","tarant", +"tarant-sync-router-express","tdl","tdlib-native","temp","tempy","terminal-kit","terminal-menu","terser", +"terser-webpack-plugin","test-cutting","test-runner","test-snippets","testcafe","testcontainers","testdouble","testem", +"text-table","three","throttle-debounce","through","through2","throw-did-darkness4","thunkify","tildify","time-grunt", +"tinper-bee","tiny-lr","tinybench","tinycolor2","tinymce","tinypool","tinyspy","tmp","toastify-react-native","tocbot", +"toml","touch","tough-cookie","tracer","traffic-carry-opinion","train-stick-swept7", +"traverse","tree-kill","tribe-leaving-basket","trpc","trumpet","ts-cache-mongoose","ts-japi","ts-jest","ts-loader", +"ts-migrate-mongoose","ts-morph","ts-node","ts-patch-mongoose","ts-pnp","ts-rule-engine","tsconfig-paths","tsd", +"tsd-lite","tshy","tslib","tslint","tslint-config-prettier","tslint-react","tsup","tsx","turndown","tv4","tweetnacl", +"twemoji","twit","twitter","type-coverage","type-fest","type-is","typedoc","typedoc-material-theme", +"typedoc-plugin-extras","typedoc-plugin-markdown","typedocs","typegen","typegoose","typeorm","typescript", +"typescript-eslint","typescript-formatter","typescript-plugin-css-modules","typings","uglify-es","uglify-js", +"uglifyjs-webpack-plugin","uid-safe","uiw","uj-apidoc-core","ulid","ultrahtml","unbuild","underscore", +"underscore.string","undici","unified","unique-random-array","unist-util-visit","untildify","unusual-rope", +"unzip","update-notifier","urijs","url","url-join","url-loader","url-parse","urllib","user","user-home","useragent", +"utf8","util","utils-merge","uuid","uvu","valid-url","validate-commit-msg","validate-npm-package-name","validator", +"vant","vary","vasync","vercel","verror","vhost","victory-mouth","viewerjs","vinyl","vinyl-buffer","vinyl-fs", +"vinyl-source-stream","vinyl-sourcemaps-apply","virtual-dom","vite","vite-plugin-api-routes","vitepress","vitest", +"vorpal","vows","vsce","vscode-debugprotocol","vscode-nls-dev","vscode-textmate","vue","vue-class-component", +"vue-eslint-parser","vue-hot-reload-api","vue-i18n","vue-loader","vue-property-decorator","vue-router", +"vue-style-loader","vue-template-compiler","vuex","walk","walk-sync","warning","watch","watchify","waterline","wd", +"web3","web3-be", +"web3-capital","web3-compass","web3-eve-cli","web3-exactly6","web3-fruit","webpack","webpack-bundle-analyzer", +"webpack-cli","webpack-dev-middleware","webpack-dev-server","webpack-hot-middleware","webpack-manifest-plugin", +"webpack-merge","webpack-node-externals","webpack-sources","webshot","websocket","webtorrent","webworker-threads", +"weinre","whatwg-fetch","when","which","winreg","winston","winston-daily-rotate-file","winston-transport","wiredep", +"word-wrap","wordwrap","workbox-webpack-plugin","world-toy-kill","wrap-ansi","wrench","write-file-atomic","ws","x-ray", +"xhr","xlsx","xml-js","xml2js","xml2json","xmlbuilder","xmldom","xmlhttprequest","xo","xpath","xregexp","xss","xstate", +"xtend","xterm","yaml","yamljs","yargs","yargs-parser","yarn","yarnpkg","yarnrc","yauzl","yeoman-environment", +"yeoman-generator","yn","yo", +"yoctocolors-cjs","yonode","yosay","zmq","zod","zod-http-schemas","zombie","zone.js","zuul","@nx/cypress", +"@nx/eslint-plugin","@nx/jest","@nx/storybook","framer-motion","teajusgula","@mui/styled-engine","jsdoc-parse", +"@commercetools-frontend/constants","downshift","postcss-focus-visible","@augment-vir/common","@biomejs/biome", +"@commercetools-frontend/mc-scripts","@jsonforms/vanilla-renderers","@jsonforms/vue","@jsonforms/vue-vanilla", +"hast-util-from-html","hot-shots","madr","native-run","rehype-katex","supports-hyperlinks","swr","typed-binary", +"ua-parser-js","void-elements","@adonisjs/core","@aneuhold/be-ts-lib","@capacitor/assets", +"@devtea2025/blanditiis-numquam-expedita-neque","@devtea2025/doloremque-voluptas-facere-nemo", +"@devtea2025/quisquam-quod-ab-aut","@devtea2025/suscipit-assumenda-a-assumenda", +"@devtea2025/voluptatibus-vero-magni-rerum","@diahkomalasarinpm/odio-facilis-beatae", +"@diahkomalasarinpm/praesentium-sint-dolorem","@enact/core","@envelop/core","@ionic/cli","@jsonforms/angular", +"@jsonforms/examples","@npmtea2024/quasi-nisi-doloremque-fugit","@ptkhanh94npm/iusto-libero-aperiam", +"@ptkhanh94npm/quis-saepe-velit","@renyii/vue-renderless","@teamteanpm2024/aperiam-fugit-error", +"@teamteanpm2024/architecto-alias-quod","@teamteanpm2024/aut-voluptatum-vero","@teamteanpm2024/beatae-aliquid-id", +"@teamteanpm2024/expedita-labore-ipsum","@teamteanpm2024/odio-fugiat-in", +"@teamteanpm2024/voluptatibus-reprehenderit-odit","@testing-library/react-hooks","@zibuthe7j11/deserunt-quasi-impedit", +"anser","aws-sdk-client-mock","cupertino-pane","eruda","fasteejs","foundation-sites","gradient-string","grommet", +"html-url-attributes","magnific-popup","next","postcss-opacity-percentage","pwa-asset-generator","rapidoc", +"react-native-animatable","react-native-collapsible","react-swipeable-list","react-textarea-autosize","readme-md", +"recharts","riot","sortablejs","tdesign-mobile-vue","uploadcare-widget","wait-on","weui","zustand","fontsource","nextra", +"synckit","tinyglobby","tstyche","@ibyar/expressions","@mantine/carousel","@mantine/code-highlight","@mantine/dropzone", +"@mantine/nprogress","@mantine/spotlight","@mantine/store","@mantine/tiptap","allure-js-commons","express-intlayer", +"is-mobile","rehype-mermaid","@bugsnag/react-native","@enact/ui","@enact/webos","@ionic/angular", +"@npmtuanmap/velit-nobis-nostrum-nam","@skylernpm/hic-inventore-dolores","@skylernpm/reiciendis-non-corrupti", +"admin-lte","backendless","smartbanner.js","zarm","@enact/sandstone","perfect-scrollbar","react-responsive-select", +"titanium","@antora/logger","@asyncapi/generator","@docusaurus/core","@ionic/react","@juggle/resize-observer", +"@mui/base","@mui/private-theming","@mui/utils","@nestjsx/crud","@nestjsx/crud-typeorm","@netlify/framework-info", +"@next/env","@pmmmwh/react-refresh-webpack-plugin","@pothos/core","@storybook/addon-backgrounds","@strapi/strapi", +"@svgr/core","@svgr/hast-util-to-babel-ast","@tinyhttp/encode-url","@tinyhttp/logger", +"@tsparticles/interaction-external-push","@tsparticles/move-base","@tsparticles/shape-emoji", +"@tsparticles/updater-color","@tsparticles/updater-opacity","@tsparticles/updater-out-modes","@uppy/companion", +"@vuepress/core","@vuepress/markdown","@vuepress/markdown-loader","@vuepress/plugin-active-header-links", +"@vuepress/plugin-last-updated","@vuepress/plugin-nprogress","@vuepress/plugin-register-components", +"@vuepress/plugin-search","@vuepress/shared-utils","@vuepress/theme-default","@walletconnect/browser-utils", +"@walletconnect/iso-crypto","@walletconnect/legacy-modal","@walletconnect/legacy-provider", +"@walletconnect/socket-transport","@wordpress/primitives","angular-messages","angular-mocks","ansi-align", +"blocking-proxy","body-scroll-lock","broccoli","broccoli-builder","broccoli-middleware","browserstack","camelcase-css", +"character-entities","character-entities-html4","character-entities-legacy","character-reference-invalid","client-only", +"color-string","comma-separated-tokens","condense-newlines","css-mediaquery","css.escape","csso","dashdash", +"decap-cms-backend-aws-cognito-github-proxy","decap-cms-backend-azure","decap-cms-backend-bitbucket", +"decap-cms-backend-git-gateway", +"decap-cms-backend-github","decap-cms-backend-gitlab","decap-cms-backend-proxy","decap-cms-backend-test", +"device-detector-js","docsify","docsify-cli","dom7","enzyme-to-json","epub2","escape-goat","esdoc", +"eslint-rule-documentation","globals-docs","hast-util-is-element","hast-util-parse-selector","hast-util-to-parse5", +"hast-util-whitespace","html-parse-stringify","html-void-elements","http-graceful-shutdown","icss-utils", +"inferno-create-element","inferno-hydrate","inferno-vnode-flags","infima","ink-docstrap","jasminewd2", +"jest-preset-angular","jest-preview","logging-helpers","lws-index","micromark-extension-gfm-tagfilter", +"micromark-util-encode","micromark-util-html-tag-name","mobile-detect","nth-check","parse-entities","postcss-js", +"postcss-modules-values","query-selector-shadow-dom","rc-hammerjs","rdme","react-colorful","react-device-detect", +"react-easy-router","react-fast-compare","react-native-file-viewer","react-native-lightbox-v2","react-native-progress", +"react-native-svg-charts","react-native-youtube-iframe","react-popper","react-responsive-modal","react-style-singleton", +"text-hex","tsparticles","tua-body-scroll-lock","typedoc-default-themes","use-callback-ref","use-sidecar","vconsole", +"vitefu","vue-perfect-scrollbar", +"vuepress","wait-for-expect","webdriver-js-extender","webdriver-manager","widest-line","worktop", +"@antora/playbook-builder","@applitools/utils","@dataui/crud","@mui/types","@tsparticles/shape-circle", +"@tsparticles/updater-life","@tsparticles/updater-rotate","drag-drop","plasmo","react-h5-audio-player", +"@arethetypeswrong/cli","arethetypeswrong","astro","astrojs","cookiecutter","degit","tseslint","@web/test-runner-mocha", +"colord","@expressots/core","@tsparticles/interaction-particles-links","@astrojs/starlight", +"@expressots/adapter-express","@expressots/shared","@tsparticles/interaction-external-bounce", +"@tsparticles/interaction-external-remove","@tsparticles/move-parallax","@tsparticles/shape-polygon", +"@tsparticles/shape-square","pinia","@floating-ui/react","@tsparticles/shape-image","astro-expressive-code", +"netlify-cms-backend-test","rehype-expressive-code","@augment-vir/assert","cssfilter", +"@amaui/icons-material-rounded-react","@appium/types","@dataui/crud-typeorm","@tsparticles/basic", +"@tsparticles/updater-size","@onesy/icons-material-rounded-react","@tsparticles/interaction-external-grab", +"@tsparticles/interaction-particles-collisions","react-native-macos","@tsparticles/interaction-external-repulse", +"@tsparticles/slim","@ionic/react-router","@immobiliarelabs/backstage-plugin-gitlab-backend","@tsparticles/shape-star", +"kuler","@scalar/nextjs-api-reference","netlify-cms-backend-bitbucket","vendors","@busy-hour/blaze", +"@busy-hour/blaze-types","payload", +"attw","@egjs/flicking","body-scroll-lock-upgrade","@casl/ability","neostandard","@appium/schema","@modern-js/utils", +"@types/xast","css-what","grunt-svgmin","@modern-js/node-bundle-require","@axe-core/playwright","tsdown", +"careful-downloader","sonner","@ckeditor/ckeditor5-collaboration-core","embla-carousel-reactive-utils","react-smooth", +"globrex","@ckeditor/ckeditor5-real-time-collaboration","@inquirer/type","grammy","@tsparticles/plugin-hex-color", +"@tsparticles/plugin-hsl-color","@udecode/plate","loki","netlify-cms-backend-gitlab","teeny-tap","emoji-js","mercurius", +"publint","unbundle","@walletconnect/http-connection","convex-helpers","eslint-plugin-react-refresh","gulp-jsdoc3", +"netlify-cms-backend-git-gateway","borp","pagefind","@pinia/testing","leaflet-gesture-handling","@headlessui/vue", +"remeda","rolldown","valibot","netlify-cms-backend-proxy","lefthook","@nuxt/ui","country-codes-flags-phone-codes", +"embla-carousel-react","input-otp","zoroaster","embla-carousel","@assistant-ui/react","@csstools/css-calc", +"@globalart/nestjs-swagger","@graphiql/plugin-doc-explorer","@mastra/core","next-router-mock","vue-draggable-next", +"@tsparticles/plugin-rgb-color","react-native-lightbox","rolldown-vite","react-native-aes-crypto", +"@inquirer/figures","@lobehub/chat","@inquirer/confirm","@upstash/context7-mcp","@storybook/addon-vitest", +"@walletconnect/heartbeat","lory.js","react-camera-pro","react-native-nitro-modules","@csstools/css-color-parser", +"@csstools/color-helpers","shadcn","@tanstack/virtual-core","otp-io","survey-core","@appium/support","@intlayer/api", +"@prisma/dev","@architect/asap","canvaskit-wasm","@edsdk/n1ed-react","react-error-boundary","@crxjs/vite-plugin", +"@observablehq/plot","skia-canvas","@flmngr/flmngr-react","@vitest/browser-playwright","md-to-pdf","@applitools/eyes", +"@applitools/driver","@applitools/screenshoter","@tsparticles/interaction-external-slow","@tsparticles/shape-line", +"@antora/cli","@antora/navigation-builder","@openspacelabs/react-native-zoomable-view","@testcontainers/postgresql", +"unplugin","@antora/redirect-producer","@antora/site-publisher","@appium/logger","planck","stage-js","oxfmt","syncpack", +"nolyfill","@appium/base-driver","@inquirer/expand","@inquirer/select","@c15t/backend", +"@react-native-vector-icons/common","@antora/content-classifier","@tsparticles/interaction-particles-attract", +"@popperjs/core","animejs","blurup","encryptor","flickity","jstz","lexxy","mapboxgl","mongoid","nums","orms", +"pannellum","psql","svgs","swiperjs","tributejs","twbs","xbytes","dependencies","devDependencies","keywords","ts", +"big.js","@alifd/field","@alifd/overlay","@alifd/validate","shallow-element-equals","@types/react-transition-group", +"jsonp","ts-mocha","tsconfck","@types/co","html5shiv","react-axe","sass-true","@types/md5","react-live","solarlunar", +"@types/chai","@types/glob","@types/node","mochawesome","@types/jsonp","@types/react","@types/yargs","@types/big.js", +"@types/enzyme","@types/lodash","react-cropper","@types/webpack","simulate-event","@types/fs-extra","@types/inquirer", +"chrome-launcher","react-draggable","@types/react-dom","@types/stylelint","console-polyfill","fast-sass-loader", +"@alifd/doc-parser","@alifd/meet-react","@types/babel-core","@types/classnames","markdown-it-prism","@alifd/sass-mapper", +"@types/react-redux","@alifd/sass-tracker","@types/postcss-calc","@alifd/api-extractor","@alifd/dts-generator", +"babel-plugin-espower","es6-promise-polyfill","@alifd/adaptor-helper","@alifd/sassdoc-parser","eslint-plugin-cypress", +"cypress-image-snapshot","@alifd/adaptor-generate","@types/lodash.clonedeep","@types/react-router-dom", +"@alifd/babel-preset-next","@babel/plugin-syntax-jsx","css-split-webpack-plugin","karma-webdriver-launcher", +"@alifd/eslint-config-next","@types/react-test-renderer","node-sass-package-importer","stylelint-csstree-validator", +"@alifd/stylelint-config-next","stylelint-config-recommended","@types/cypress-image-snapshot", +"@types/react-copy-to-clipboard","babel-plugin-generator-prettier","@types/postcss-custom-properties", +"babel-plugin-transform-object-assign","babel-plugin-transform-proto-to-assign", +"babel-plugin-transform-react-es6-displayname","fusion","fusion design","component","ui toolkit","react-components", +"components","design","frontend","Angular CLI","Angular DevKit","core","devkit","sdk","blueprints","code generation", +"scaffolding","schematics","template","tooling","cdk","development","kit","@jridgewell/sourcemap-codec","compiler", +"@standard-schema/spec","material","material design","xhr2","@types/dom-navigation","router","rc-field-form", +"utility-types","lodash.mergewith","lodash.assignwith","normalize-css-color","react-native-codegen", +"@floating-ui/react-native","@rc-component/mini-decimal","react-native-modal-popover", +"@bang88/react-native-ultimate-listview","bisheng","jsonml.js","enquire.js", +"@types/jest","shell-utils","react-native-web","@ant-design/tools","@types/prop-types","@types/react-native", +"ant-design-palettes","react-github-button","react-native-mocker","react-document-title","react-native-screens", +"antd-mobile-demo-data","@react-navigation/stack","@types/lodash.mergewith","react-native-reanimated", +"@react-navigation/native","react-native-gesture-handler","@testing-library/react-native", +"@ant-design/icons-react-native","react-native-safe-area-context","metro-react-native-babel-preset", +"@react-native-community/eslint-config","ant","react-component","ui","framework","mobile","react native", +"@types/lodash-es","@ant-design/icons","@inline-svg-unique-id/react","icon","@auth/core","set-cookie-parser", +"@sveltejs/package","@sveltejs/adapter-auto","@types/set-cookie-parser","authentication","authjs","jwt","sveltekit", +"oidc","passwordless","fs-readdir-recursive","@jridgewell/trace-mapping","@types/fs-readdir-recursive", +"@babel/helper-transform-fixture-test-runner","6to5","es6","transpile","transpiler","js-tokens", +"@babel/helper-validator-identifier","charcodes","import-meta-resolve","gensync","@babel/helpers","@babel/template", +"@babel/generator","@jridgewell/remapping","@babel/helper-module-transforms","@babel/helper-compilation-targets", +"@types/debug","@types/semver", +"@types/resolve","@babel/plugin-syntax-flow","@types/convert-source-map","@babel/plugin-transform-flow-strip-types", +"@babel/plugin-transform-modules-commonjs","classes","const","harmony","let","modules","var","@babel/helper-fixtures", +"@babel/helper-string-parser","@babel/helper-check-duplicate-nodes","javascript","parser","tc39","ecmascript", +"@babel/helper-create-class-features-plugin","@babel/helper-plugin-test-runner","babel-plugin","moo","luxon","entities", +"liquidjs","iso-639-1","bcp-47-normalize","dependency-graph","@11ty/lodash-custom","@11ty/posthtml-urls", +"please-upgrade-node","@11ty/eleventy-utils","@11ty/recursive-copy","@11ty/dependency-tree","@sindresorhus/slugify", +"node-retrieve-globals","posthtml-match-helper","@11ty/dependency-tree-esm","@11ty/eleventy-dev-server", +"@11ty/eleventy-plugin-bundle","pretty","@iarna/toml","nano-staged","@zachleat/noop","@eslint/eslintrc", +"markdown-it-abbr","simple-git-hooks","jsx-async-runtime","@11ty/eleventy-img","@mdx-js/node-loader", +"@vue/server-renderer","zod-validation-error","@11ty/eleventy-plugin-rss","@11ty/eleventy-plugin-webc", +"@11ty/eleventy-plugin-syntaxhighlight","static-site-generator","static-site","ssg","website","jekyll","blog", +"templates","generator","11ty", +"html","liquid","@rollup/plugin-terser","@rollup/plugin-typescript","@types/benchmark","@types/bytes","stringifier", +"stylesheet","ast","css-parser","css-ast","css-tools","format","preprocessor","@advanced-rest-client/arc-icons", +"@advanced-rest-client/arc-marked","@advanced-rest-client/clipboard-copy","@advanced-rest-client/http-code-snippets", +"@advanced-rest-client/markdown-styles","@anypoint-web-components/anypoint-button", +"@anypoint-web-components/anypoint-collapse","@anypoint-web-components/anypoint-dropdown", +"@anypoint-web-components/anypoint-item","@anypoint-web-components/anypoint-listbox","@api-components/amf-helper-mixin", +"@api-components/api-annotation-document","@api-components/api-body-document","@api-components/api-example-generator", +"@api-components/api-headers-document","@api-components/api-parameters-document", +"@api-components/api-responses-document","@api-components/api-security-documentation", +"@api-components/http-method-label","lit-html","@advanced-rest-client/arc-demo-helper", +"@advanced-rest-client/oauth-authorization","@anypoint-web-components/anypoint-checkbox", +"@anypoint-web-components/anypoint-input","@anypoint-web-components/anypoint-styles", +"@api-components/api-model-generator","@api-components/api-navigation","@api-components/api-request", +"@api-components/api-server-selector","@commitlint/config-conventional","@open-wc/eslint-config","@open-wc/testing", +"@web/dev-server","@web/test-runner","@web/test-runner-playwright","typescript-lit-html-plugin","api-components", +"method-documentation","@graphql-typed-document-node/core","@wry/caches","@wry/equality","@wry/trie","optimism","apollo", +"hooks","client","cache","@asyncapi/parser","@rollup/plugin-babel","babel-plugin-source-map-support", +"asyncapi","@nicolo-ribaudo/eslint-scope-5-internals","@types/eslint","@typescript-eslint/scope-manager", +"@babel/plugin-syntax-decorators","array.prototype.concat","babel-plugin-polyfill-es-shims", +"object.getownpropertydescriptors","decorators","@babel/plugin-syntax-export-namespace-from","@babel/compat-data", +"@babel/plugin-syntax-object-rest-spread","@babel/plugin-transform-parameters","@babel/helper-module-imports", +"babel-plugin-polyfill-corejs2","babel-plugin-polyfill-corejs3","babel-plugin-polyfill-regenerator", +"@babel/runtime-corejs3","derequire","core-js-compat","@babel/preset-modules","@babel/helper-validator-option", +"@babel/plugin-transform-for-of","@babel/plugin-transform-spread","@babel/plugin-transform-classes", +"@babel/plugin-transform-literals","@babel/plugin-transform-new-target","@babel/plugin-transform-modules-amd", +"@babel/plugin-transform-modules-umd","@babel/plugin-transform-regenerator","@babel/plugin-transform-dotall-regex", +"@babel/plugin-transform-json-strings","@babel/plugin-transform-object-super","@babel/plugin-transform-sticky-regex", +"@babel/plugin-transform-block-scoping","@babel/plugin-transform-destructuring","@babel/plugin-transform-function-name", +"@babel/plugin-transform-typeof-symbol","@babel/plugin-transform-unicode-regex","@babel/plugin-syntax-import-assertions", +"@babel/plugin-syntax-import-attributes","@babel/plugin-transform-duplicate-keys", +"@babel/plugin-transform-dynamic-import","@babel/plugin-transform-reserved-words", +"@babel/plugin-syntax-unicode-sets-regex","@babel/plugin-transform-arrow-functions", +"@babel/plugin-transform-private-methods","@babel/plugin-transform-unicode-escapes", +"@babel/plugin-transform-class-properties","@babel/plugin-transform-modules-systemjs", +"@babel/plugin-transform-regexp-modifiers","@babel/plugin-transform-numeric-separator", +"@babel/plugin-transform-optional-chaining","@babel/plugin-transform-property-literals", +"@babel/plugin-transform-template-literals","@babel/plugin-transform-async-to-generator", +"@babel/plugin-transform-class-static-block","@babel/plugin-transform-object-rest-spread", +"@babel/plugin-transform-unicode-sets-regex","@babel/plugin-transform-computed-properties", +"@babel/plugin-transform-shorthand-properties","@babel/plugin-transform-export-namespace-from", +"@babel/plugin-transform-block-scoped-functions","@babel/plugin-transform-optional-catch-binding", +"@babel/plugin-transform-unicode-property-regex","@babel/plugin-transform-exponentiation-operator", +"@babel/plugin-proposal-private-property-in-object","@babel/plugin-transform-async-generator-functions", +"@babel/plugin-transform-member-expression-literals","@babel/plugin-transform-private-property-in-object", +"@babel/plugin-transform-nullish-coalescing-operator","@babel/plugin-transform-explicit-resource-management", +"@babel/plugin-transform-logical-assignment-operators","@babel/plugin-transform-named-capturing-groups-regex", +"@babel/plugin-bugfix-firefox-class-in-computed-class-key","@babel/plugin-bugfix-safari-class-field-initializer-scope", "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", -"@babel/plugin-bugfix-safari-class-field-initializer-scope","@babel/plugin-bugfix-firefox-class-in-computed-class-key", -"@babel/plugin-transform-named-capturing-groups-regex","@babel/plugin-transform-explicit-resource-management", -"@babel/plugin-transform-unicode-property-regex","@babel/plugin-transform-block-scoped-functions", -"@babel/plugin-transform-shorthand-properties","@babel/plugin-transform-computed-properties", -"@babel/plugin-transform-unicode-sets-regex","@babel/plugin-transform-regexp-modifiers", -"@babel/plugin-transform-unicode-escapes","@babel/plugin-syntax-unicode-sets-regex", -"@babel/plugin-transform-reserved-words","@babel/plugin-transform-duplicate-keys", -"@babel/plugin-transform-unicode-regex","@babel/plugin-transform-typeof-symbol","@babel/plugin-transform-function-name", -"@babel/plugin-transform-sticky-regex","@babel/plugin-transform-object-super","@babel/plugin-transform-json-strings", -"@babel/plugin-transform-dotall-regex","@babel/plugin-transform-new-target","@babel/plugin-transform-literals", -"@babel/preset-modules","@babel/plugin-syntax-object-rest-spread","@babel/plugin-syntax-export-namespace-from", -"babel-plugin-polyfill-es-shims","array.prototype.concat","@nicolo-ribaudo/eslint-scope-5-internals", -"babel-plugin-source-map-support","@wry/trie","@wry/equality","@wry/caches","method-documentation","api-components", -"@api-components/api-server-selector","@anypoint-web-components/anypoint-input", -"@anypoint-web-components/anypoint-checkbox","@advanced-rest-client/arc-demo-helper","@api-components/http-method-label", -"@api-components/api-security-documentation","@api-components/api-responses-document", -"@api-components/api-parameters-document","@api-components/api-headers-document","@api-components/api-example-generator", -"@api-components/api-body-document","@api-components/api-annotation-document", -"@anypoint-web-components/anypoint-collapse","@advanced-rest-client/markdown-styles", -"@advanced-rest-client/http-code-snippets","@advanced-rest-client/clipboard-copy","css-tools","css-ast","css-parser", -"liquid","11ty","ssg", -"@11ty/eleventy-plugin-syntaxhighlight","@11ty/eleventy-plugin-webc","@11ty/eleventy-plugin-rss","@mdx-js/node-loader", -"@11ty/eleventy-img","jsx-async-runtime","@zachleat/noop","nano-staged","@11ty/eleventy-plugin-bundle", -"@11ty/eleventy-dev-server","@11ty/dependency-tree-esm","posthtml-match-helper","node-retrieve-globals", -"@11ty/dependency-tree","@11ty/recursive-copy","@11ty/eleventy-utils","@11ty/posthtml-urls","@11ty/lodash-custom", -"bcp-47-normalize","iso-639-1","liquidjs","moo","tc39","@babel/helper-check-duplicate-nodes","let","gensync", -"@types/fs-readdir-recursive","passwordless","authjs","@inline-svg-unique-id/react","react-native-safe-area-context", -"@ant-design/icons-react-native","react-native-gesture-handler","@react-navigation/native","react-native-reanimated", -"@react-navigation/stack","antd-mobile-demo-data","react-native-screens","react-native-mocker","ant-design-palettes", -"shell-utils","@bang88/react-native-ultimate-listview","react-native-modal-popover","@rc-component/mini-decimal", -"@floating-ui/react-native","react-native-codegen","normalize-css-color","lodash.assignwith","@types/dom-navigation", -"tooling","schematics","blueprints","react-components","ui toolkit","fusion design","fusion", -"babel-plugin-transform-react-es6-displayname","babel-plugin-transform-proto-to-assign", -"@types/postcss-custom-properties","babel-plugin-generator-prettier","@types/cypress-image-snapshot", -"@alifd/stylelint-config-next","stylelint-csstree-validator","node-sass-package-importer", -"@alifd/eslint-config-next","@alifd/babel-preset-next","@types/lodash.clonedeep","@alifd/adaptor-generate", -"cypress-image-snapshot","@alifd/sassdoc-parser","@alifd/adaptor-helper","@alifd/dts-generator","@alifd/api-extractor", -"@types/postcss-calc","@alifd/sass-tracker","@alifd/sass-mapper","@types/babel-core","@alifd/meet-react", -"@alifd/doc-parser","fast-sass-loader","@types/stylelint","react-cropper","@types/big.js","@types/jsonp","solarlunar", -"react-live","react-axe","html5shiv","@types/co","ts-mocha","shallow-element-equals","@alifd/validate","@alifd/overlay", -"@alifd/field","big.js","keywords","xbytes","tributejs","swiperjs","psql","pannellum","orms","jstz","flickity", -"encryptor","blurup","@antora/content-classifier","@react-native-vector-icons/common","@c15t/backend", -"@appium/base-driver","nolyfill","syncpack","stage-js","planck","@antora/redirect-producer", -"@openspacelabs/react-native-zoomable-view","@antora/navigation-builder","@antora/cli","@applitools/screenshoter", -"@applitools/eyes","md-to-pdf","@flmngr/flmngr-react","skia-canvas","@crxjs/vite-plugin","@edsdk/n1ed-react", -"canvaskit-wasm","@architect/asap","@intlayer/api", -"survey-core","otp-io","@tanstack/virtual-core","react-native-nitro-modules","react-camera-pro","lory.js", -"@walletconnect/heartbeat","@upstash/context7-mcp","@lobehub/chat","react-native-aes-crypto","rolldown-vite", -"react-native-lightbox","next-router-mock","@mastra/core","@graphiql/plugin-doc-explorer","@globalart/nestjs-swagger", -"@assistant-ui/react","input-otp","embla-carousel-react","country-codes-flags-phone-codes","@nuxt/ui", -"netlify-cms-backend-proxy","leaflet-gesture-handling","@pinia/testing","netlify-cms-backend-git-gateway", -"convex-helpers","@walletconnect/http-connection","unbundle","mercurius","emoji-js","teeny-tap", -"netlify-cms-backend-gitlab","@udecode/plate","@ckeditor/ckeditor5-real-time-collaboration","react-smooth", -"@ckeditor/ckeditor5-collaboration-core","sonner","careful-downloader","@modern-js/node-bundle-require","@types/xast", -"@casl/ability","body-scroll-lock-upgrade","@egjs/flicking","attw","@busy-hour/blaze-types","vendors", -"netlify-cms-backend-bitbucket","@scalar/nextjs-api-reference","@immobiliarelabs/backstage-plugin-gitlab-backend", -"@ionic/react-router","react-native-macos","@onesy/icons-material-rounded-react","@dataui/crud-typeorm", -"@amaui/icons-material-rounded-react","netlify-cms-backend-test","@expressots/adapter-express","@web/test-runner-mocha", -"tseslint","degit","cookiecutter","astrojs","arethetypeswrong","react-h5-audio-player","drag-drop", -"@dataui/crud","worktop","vue-perfect-scrollbar","vconsole","use-sidecar","use-callback-ref","typedoc-default-themes", -"tua-body-scroll-lock","text-hex","react-style-singleton","react-responsive-modal","react-native-youtube-iframe", -"react-native-svg-charts","react-native-progress","react-native-lightbox-v2","react-native-file-viewer", -"react-easy-router","react-device-detect","rdme","rc-hammerjs","parse-entities","mobile-detect", -"micromark-util-html-tag-name","micromark-extension-gfm-tagfilter","logging-helpers","jest-preset-angular","infima", -"inferno-hydrate","http-graceful-shutdown","eslint-rule-documentation","device-detector-js","decap-cms-backend-test", -"decap-cms-backend-proxy","decap-cms-backend-gitlab","decap-cms-backend-github","decap-cms-backend-git-gateway", -"decap-cms-backend-bitbucket","decap-cms-backend-azure","decap-cms-backend-aws-cognito-github-proxy","dashdash", -"css-mediaquery","condense-newlines","camelcase-css","broccoli-builder","angular-mocks","angular-messages", -"@wordpress/primitives","@walletconnect/socket-transport","@walletconnect/legacy-provider","@walletconnect/iso-crypto", -"@walletconnect/browser-utils","@uppy/companion","@svgr/hast-util-to-babel-ast","@strapi/strapi","@pothos/core", -"@netlify/framework-info","@nestjsx/crud-typeorm","@nestjsx/crud","@mui/base","@asyncapi/generator", -"react-responsive-select","@enact/sandstone","smartbanner.js","backendless", -"admin-lte","@skylernpm/reiciendis-non-corrupti","@skylernpm/hic-inventore-dolores", -"@npmtuanmap/velit-nobis-nostrum-nam","@ionic/angular","@bugsnag/react-native","rehype-mermaid","is-mobile", -"express-intlayer","allure-js-commons","@mantine/tiptap","@mantine/spotlight","@mantine/nprogress","@mantine/dropzone", -"@mantine/carousel","@ibyar/expressions","nextra","uploadcare-widget","tdesign-mobile-vue","riot","readme-md", -"react-swipeable-list","react-native-animatable","pwa-asset-generator","magnific-popup","gradient-string","fasteejs", -"eruda","cupertino-pane","aws-sdk-client-mock","@zibuthe7j11/deserunt-quasi-impedit", -"@teamteanpm2024/voluptatibus-reprehenderit-odit","@teamteanpm2024/odio-fugiat-in", -"@teamteanpm2024/expedita-labore-ipsum","@teamteanpm2024/beatae-aliquid-id","@teamteanpm2024/aut-voluptatum-vero", -"@teamteanpm2024/architecto-alias-quod","@teamteanpm2024/aperiam-fugit-error","@renyii/vue-renderless", -"@ptkhanh94npm/quis-saepe-velit","@ptkhanh94npm/iusto-libero-aperiam","@npmtea2024/quasi-nisi-doloremque-fugit", -"@jsonforms/examples","@jsonforms/angular","@ionic/cli","@envelop/core","@diahkomalasarinpm/praesentium-sint-dolorem", -"@diahkomalasarinpm/odio-facilis-beatae","@devtea2025/voluptatibus-vero-magni-rerum", -"@devtea2025/suscipit-assumenda-a-assumenda","@devtea2025/quisquam-quod-ab-aut", -"@devtea2025/doloremque-voluptas-facere-nemo","@devtea2025/blanditiis-numquam-expedita-neque","@capacitor/assets", -"@aneuhold/be-ts-lib","@adonisjs/core","typed-binary","native-run","madr","hot-shots","@jsonforms/vue-vanilla", -"@jsonforms/vanilla-renderers","@commercetools-frontend/mc-scripts","@augment-vir/common", -"teajusgula","@nx/storybook","@nx/eslint-plugin","zombie","zod-http-schemas","yoctocolors-cjs","yarnpkg","xstate", -"xmldom","x-ray","winston-daily-rotate-file","weinre","webworker-threads","webshot","web3-fruit","web3-exactly6", -"web3-eve-cli","web3-be","vue-property-decorator","vscode-textmate","vscode-nls-dev","vscode-debugprotocol","vorpal", -"vite-plugin-api-routes","virtual-dom","vant","valid-url","urijs","unique-random-array","ulid","uj-apidoc-core", -"typegoose","typegen","typedocs","typedoc-plugin-extras","typedoc-material-theme","twit","twemoji","tweetnacl", -"tsd-lite","ts-rule-engine","ts-patch-mongoose","ts-migrate-mongoose","ts-japi","ts-cache-mongoose","trumpet","trpc", -"train-stick-swept7","tracer","thunkify","test-snippets","test-cutting","terminal-menu","terminal-kit","tdlib-native", -"tarant-sync-router-express","tarant","swagger-inline","sw-precache-webpack-plugin","supertest-as-promised", -"stylelint-declaration-strict-value","style-dictionary","string-strip-html","streamii", -"strange-lady-riding9","straiforos-compodoc","storybook-django","sprintf","spectaql","slow-deps","skapi-js","sizeitup", -"sinopia","single-spa","simple-prompts-web3","simple-assi-animation","serverless-spy","serverless-finch","sequelize", -"seneca","semantic-ui-react","schema-markdown-doc","rxjs-compat","rsnext","rethinkdb","restler","rest-chronicle", -"requireindex","remark-mermaidjs","rehype-mdx-code-props","redux-saga","redux-actions","redocusaurus","recall-shut-say", -"readline-sync","reactify","react-svg","react-select","react-router-redux","react-onclickoutside", -"react-native-keychain","react-motion","react-modal","react-markdown","react-apollo","react-addons-shallow-compare", -"react-addons-css-transition-group","rcw-plugin","randomstring","queue-typed","pull-stream","promo-server", -"private-bower","prettierrc","postgrejs","postcss-unique-selectors","postcss-svgo","postcss-reduce-initial", -"postcss-ordered-values","postcss-normalize-whitespace","postcss-normalize-url","postcss-normalize-unicode", -"postcss-normalize-string","postcss-normalize-positions","postcss-normalize-charset","postcss-minify-selectors", -"postcss-minify-params","postcss-minify-gradients", -"postcss-minify-font-values","postcss-merge-rules","postcss-merge-longhand","postcss-discard-overridden", -"postcss-discard-empty","postcss-discard-duplicates","postcss-cssnext","postcss-convert-values","postcss-colormin", -"poe-api-manager","pnpx","pnp-webpack-plugin","pkginfo","pi-gpio","pdfjs","paypal-server-api","passport-oauth", -"passport-local","passport-facebook","parallelshell","para-cli","paintor","pageres","p23","ovsx","openweather", -"openapi2html","openapi-client-axios","onoff","nwsapi","npm-windows-upgrade","npm-to-yarn","normalize-url","nodewebkit", -"nodegit","node-xlsx","node-windows","node-red","node-powertools","node-oauth2-server","node-geocoder","node-gcm", -"node-dev","node-containerpattern","nise","ng-zorro-antd","ng-mocks","newrelic","nest-commander","near-social-bridge", -"nconf","nativefier","native-keymap","nano-css","n","muuri","monitor-dashboard","mongo-express","monads-io", -"monaco-yaml","moleculer","mkcert","mirror-jet-printed-supper","min-heap-typed", -"mental-oxygen-dozen","memwatch","mdxts","md5-file","mathjs","marky-markdown","markdown-pdf","mapboxgl-legend", -"mantine-contextmenu","main-bower-files","madwizard","lwip","lucide","lodash.set","lodash.pick","lodash.omit", -"lodash.isobject","lodash.isfunction","lodash.isempty","lodash.get","lodash.foreach","lite-server","linkifyjs", -"libphonenumber-js","left-pad","leaflet","lazy.js","kue","koa-router","koa-mount","koa-logger","koa-bodyparser", -"koa-body","knox","jwt-simple","jstates","jspm","jsdom-no-contextify","jsarch","jquery-ui","jodit-react", -"jest-html-reporters","jest-environment-jsdom-fourteen","jarallax","irc","inversify","intl-tel-input","instagram-node", -"inquirer-autocomplete-prompt","innosetup-compiler","iniparser","impress","i18next-gridly-backend","htmlnano", -"html-to-image","html-pdf","how-to-npm","homebridge","hiredis","hexlet-pairs","heroicons","gulp.spritesmith", -"gulp-webpack","gulp-useref", -"gulp-uncss","gulp-template","gulp-svgstore","gulp-svgmin","gulp-svg-sprite","gulp-strip-debug","gulp-sftp", -"gulp-ruby-sass","gulp-rev-replace","gulp-remote-src","gulp-react","gulp-prompt","gulp-preprocess","gulp-nodemon", -"gulp-ng-annotate","gulp-minify-html","gulp-livereload","gulp-jade","gulp-install","gulp-inline-css","gulp-include", -"gulp-image-resize","gulp-ignore","gulp-iconfont","gulp-html-replace","gulp-handlebars","gulp-gzip","gulp-ftp", -"gulp-flatmap","gulp-file-include","gulp-csslint","gulp-csscomb","gulp-copy","gulp-conflict","gulp-compass", -"gulp-coffee","gulp-cached","gulp-cache","gulp-bower","gulp-bom","gulp-azure-storage","gulp-awspublish", -"gulp-atom-electron","gulp-angular-templatecache","grunt-spritesmith","grunt-contrib-sass","grunt-contrib-imagemin", -"grunt-contrib-htmlmin","grunt-contrib-compass","grunt-angular-templates","grpc","graphql-tools","govuk-frontend", -"google-spreadsheet","github-buttons","geolib","gensequence","generator-nitro","generator-gulp-angular", -"generator-angular","gc-signals","futen","fs-promise","fork-ts-checker-webpack-plugin-alt", -"flightplan","flatpickr","flatpak-bundler","firebase-tools","firebase-admin","file-saver","femo","fe-pilot","fast-plist", -"fast-csv","express-zod-api","express-validator","express-typed-rpc","express-tools","express-jwt","express-handlebars", -"express-generator","express-autodoc","express-adexe","ethereumjs-tx","enumtype","ent","emailjs","email-templates", -"element-ui","electron-rebuilder","electron-prebuilt","electron-builder","dw-neit-antd","dumi-cm","draft-js", -"doxdox-parser-dox","download-git-repo","dom-to-image-more","docusaurus-lunr-search","docsify-tabs","docschema","docpad", -"docgen","doc-detective","dnode","dnd-multi-backend","dmd-grunt-jsdoc2md","discord-backend-manager", -"directed-graph-typed","deep-consist-ability3","deep-assign","datafire","dable-effect","cuid","css-declaration-sorter", -"cson-parser","cropperjs","corcojs-qrcode-logo","contenthook","connect-mongo","connect-flash","co-prompt","clipanion", -"choerodon-ui","chart.js","casperjs","bump-cli","brain", -"bookshelf","blocked","blessed-contrib","beyond","beefy","beauty-foot-compass5","bearcat","bcrypt-nodejs","batuta", -"base-64","azure-storage","auto-install","appsync-client-node","applicationinsights","appium-android-driver", -"apidoc-markdown","antfu","ant-design-vue","angular-animate","agenda","@zkportal/aleo-oracle-sdk", -"@zitterorg/upgraded-fishstick","@zitterorg/probable-octo","@zitterorg/itaque-nisi-veritatis", -"@zitterorg/illum-perferendis-consectetur","@zitterorg/glowing-barnacle","@zitterorg/fluffy-waddle", -"@zitterorg/eum-veritatis-placeat","@zitterorg/est-sunt-quos","@zitterorg/doloremque-ut-omnis", -"@zitterorg/cum-ipsum-beatae","@zitterorg/at-esse-odit","@zitterorg/aspernatur-pariatur-occaecati", -"@zitterorg/adipisci-quae-eius","@wuxh/dumi","@uploadcare/file-uploader","@unleash/proxy","@ucloud-fe/react-components", -"@twurple/ebs-helper","@teamhanko/hanko-frontend-sdk","@tanstack/svelte-query","@taktikorg/voluptatem-pariatur-tenetur", -"@taktikorg/velit-nobis-blanditiis","@taktikorg/unde-animi-omnis","@taktikorg/tempore-veniam-in", -"@taktikorg/suscipit-modi-ratione","@taktikorg/similique-natus-officia","@taktikorg/recusandae-ratione-veniam", -"@taktikorg/quo-reiciendis-quibusdam","@taktikorg/praesentium-neque-ipsam","@taktikorg/praesentium-dolorum-quis", -"@taktikorg/placeat-voluptates-dolorum","@taktikorg/nisi-reprehenderit-amet", -"@taktikorg/necessitatibus-repudiandae-officia","@taktikorg/nam-esse-animi","@taktikorg/molestias-fuga-possimus", -"@taktikorg/maiores-dolores-aut","@taktikorg/itaque-tempore-exercitationem","@taktikorg/itaque-nam-eos", -"@taktikorg/iste-ex-tempore","@taktikorg/ipsa-totam-aperiam","@taktikorg/illum-accusamus-possimus", -"@taktikorg/harum-reprehenderit-perferendis","@taktikorg/dolor-ratione-quibusdam", -"@taktikorg/deleniti-qui-dolorem","@taktikorg/corporis-nihil-odit","@taktikorg/consectetur-quo-quos", -"@taktikorg/aut-distinctio-repellat","@synion/md-docs","@symbiotejs/symbiote","@swisspost/design-system-styles", -"@swenkerorg/nulla-voluptates-voluptates","@swenkerorg/modi-dolorum-provident","@swenkerorg/maiores-voluptatibus-nemo", -"@sveltejs/eslint-config","@supernovaio/supernova-sdk","@supernovaio/sdk-exporters","@supernovaio/sdk", -"@subwallet/react-ui","@serenity-js/webdriverio","@serenity-js/protractor","@scalar/fastify-api-reference", -"@sanity/tsdoc","@readyplayerme/visage","@quasar/extras","@qooxdoo/framework","@polymer/polymer","@phun-ky/speccer", -"@phosphor/widgets","@perseid/store","@patrtorg/tenetur-animi-reprehenderit","@patrtorg/sapiente-exercitationem-sit", -"@patrtorg/sapiente-eos-magnam","@patrtorg/quos-quasi-ipsa","@patrtorg/quae-earum-eius","@patrtorg/porro-labore-eos", -"@patrtorg/pariatur-deleniti-quaerat","@patrtorg/nam-eius-unde","@patrtorg/molestias-molestias-ut", -"@patrtorg/maiores-quidem-quo","@patrtorg/magnam-aut-adipisci","@patrtorg/libero-voluptas-sequi", -"@patrtorg/libero-doloribus-omnis","@patrtorg/laborum-doloribus-voluptate","@patrtorg/illum-sapiente-quos", -"@patrtorg/eveniet-tempore-maiores","@patrtorg/est-corrupti-deleniti","@patrtorg/enim-magni-hic", -"@patrtorg/ducimus-magni-quibusdam","@patrtorg/consequatur-voluptatum-officiis", -"@patrtorg/consectetur-repudiandae-consequuntur","@patrtorg/consectetur-culpa-non","@patrtorg/autem-et-hic", -"@patrtorg/aspernatur-dolorum-ducimus","@patrtorg/asperiores-vel-accusantium","@patrtorg/a-ut-amet", -"@patrtorg/a-ad-expedita","@pact-foundation/pact","@otterhttp/response","@opentiny/vue-theme-mobile", -"@opentiny/vue-theme","@opentiny/vue-renderless","@opentiny/vue","@oclif/command","@nx/nest","@nx/express","@nx/esbuild", -"@nrwl/workspace", -"@nrwl/tao","@nrwl/devkit","@npmtuanmap/velit-esse-velit-magnam","@npmtuanmap/sed-quo-nemo-rerum", -"@npmtuanmap/recusandae-recusandae-nam-et","@npmtuanmap/psychic-guide","@npmtuanmap/ex-vel-expedita-impedit", -"@npmcorp/marky-markdown","@ng-doc/utils","@ng-doc/ui-kit","@neato/guider","@mui/lab","@ministryofjustice/frontend", -"@middy/http-json-body-parser","@mathematikoi/jsonapi","@material-ui/icons","@material-ui/core","@mantine/styles", -"@mantine/prism","@mantine/modals","@mantine/dates","@listr2/prompt-adapter-inquirer","@libphamton/fb-group", -"@libphamton/chatfanpage","@kollorg/nihil-veniam-deserunt","@kollorg/dicta-itaque-nemo","@kobedevi/sassdoc", -"@jupyterlab/application","@juigorg/sit-nam-neque","@juigorg/nisi-molestiae-ut","@jsonforms/material-renderers", -"@itwin/itwinui-react","@idux/components","@iamtraction/google-translate","@hookform/resolvers", -"@homer0/prettier-plugin-jsdoc","@hishprorg/wafflejs","@hishprorg/unde-vitae-reprehenderit", -"@hishprorg/sunt-voluptatem-nobis","@hishprorg/sunt-officia-eligendi","@hishprorg/sint-nam-consequuntur", -"@hishprorg/reprehenderit-excepturi-sed","@hishprorg/quis-perferendis-culpa","@hishprorg/perspiciatis-ratione-unde", -"@hishprorg/nihil-ad-ratione","@hishprorg/maxime-voluptates-enim","@hishprorg/magni-nisi-aperiam", -"@hishprorg/magni-amet-id","@hishprorg/iure-optio-nihil","@hishprorg/itaque-esse-accusamus", -"@hishprorg/incidunt-quibusdam-tempore","@hishprorg/est-dicta-quis","@hishprorg/eius-vero-dicta", -"@hishprorg/earum-sint-veritatis","@hishprorg/cum-rem-consequuntur","@hishprorg/autem-sint-quas", -"@hishprorg/aliquid-ad-vero","@hajtech/webpack-config","@graphql-markdown/docusaurus","@graphql-markdown/core", -"@grandlinex/kernel","@grandlinex/e-kernel","@fontsource/roboto","@fontsource/inter", -"@fakeyanss/redoc","@erboladaiorg/velit-fugit-harum","@erboladaiorg/ut-dignissimos-laborum", -"@erboladaiorg/tenetur-architecto-dolore","@erboladaiorg/sit-nesciunt-amet","@erboladaiorg/sint-deleniti-dolorem", -"@erboladaiorg/quibusdam-itaque-tempora","@erboladaiorg/quaerat-mollitia-adipisci","@erboladaiorg/quae-in-veniam", -"@erboladaiorg/perspiciatis-magni-ut","@erboladaiorg/officia-illum-aperiam","@erboladaiorg/nisi-culpa-cum", -"@erboladaiorg/molestias-nulla-dolor","@erboladaiorg/molestiae-voluptatibus-perferendis", -"@erboladaiorg/explicabo-eius-adipisci","@erboladaiorg/ex-hic-molestias","@erboladaiorg/esse-ipsa-numquam", -"@erboladaiorg/error-atque-ea","@erboladaiorg/distinctio-tempora-quis","@erboladaiorg/cupiditate-pariatur-optio", -"@erboladaiorg/cupiditate-consectetur-porro","@erboladaiorg/autem-dolores-ipsam","@erboladaiorg/asperiores-nam-adipisci", -"@erboladaiorg/asperiores-fuga-sint","@erboladaiorg/asperiores-earum-quaerat","@erboladaiorg/ad-exercitationem-ducimus", -"@electron/docs-parser","@eightshift/frontend-libs","@eas-framework/server","@dramaorg/quae-dolore-nostrum", -"@dramaorg/esse-praesentium-eligendi","@doc-tools/docs","@disqada/workspace","@diplodoc/transform", -"@diotoborg/verbose-robot","@diotoborg/velit-reiciendis-velit","@diotoborg/ullam-dignissimos-repudiandae", -"@diotoborg/tempora-voluptas-distinctio","@diotoborg/repellat-blanditiis-quis","@diotoborg/ratione-error-odio", -"@diotoborg/quo-dolorem-ducimus","@diotoborg/qui-ullam-ipsum","@diotoborg/quasi-repellat-odit", -"@diotoborg/psychic-bassoon","@diotoborg/porro-modi-accusamus","@diotoborg/odio-dolores-officia", -"@diotoborg/nostrum-eveniet-officiis","@diotoborg/neque-inventore-corporis","@diotoborg/libero-asperiores-at", -"@diotoborg/laudantium-itaque-esse","@diotoborg/illo-amet-architecto","@diotoborg/esse-accusantium-ratione", -"@diotoborg/eligendi-est-unde","@diotoborg/dolores-praesentium-assumenda","@diotoborg/dolor-tempora-fuga", -"@diotoborg/dolor-earum-quia","@diotoborg/dicta-recusandae-veniam","@diotoborg/deserunt-illo-tempora", -"@diotoborg/delectus-necessitatibus-voluptatum","@diotoborg/commodi-voluptatum-libero", -"@diotoborg/at-totam-perspiciatis","@diotoborg/amet-architecto-est","@diotoborg/adipisci-placeat-iure", -"@devtea2026/ubiquitous-octo-memory", -"@devtea2026/rerum-quaerat-porro-animi","@devtea2026/quidem-voluptate-repudiandae-necessitatibus", -"@devtea2026/quia-ducimus-placeat-minima","@devtea2026/qui-quos-laborum-amet", -"@devtea2026/possimus-ipsa-sint-consequuntur","@devtea2026/odit-maxime-porro-asperiores", -"@devtea2026/odit-enim-reiciendis-pariatur","@devtea2026/necessitatibus-dolorem-esse-atque", -"@devtea2026/maxime-sequi-est-rem","@devtea2026/literate-computing-machine","@devtea2026/ipsa-omnis-in-molestiae", -"@devtea2026/inventore-facilis-corporis-cum","@devtea2026/improved-journey","@devtea2026/explicabo-alias-architecto-sed", -"@devtea2026/eum-ullam-est-distinctio","@devtea2026/distinctio-soluta-illo-eaque", -"@devtea2026/cupiditate-dolorem-excepturi-impedit","@devtea2026/consectetur-ab-unde-quisquam", -"@devtea2026/aspernatur-ea-non-porro","@deven-org/documentation-skeleton","@coreui/coreui","@contenthook/node", -"@contenthook/cli","@contenthook/browser","@comunica/core","@compodoc/compodoc","@ckeditor/ckeditor5-vue", -"@ckeditor/ckeditor5-react","@ckeditor/ckeditor5-build-inline","@ckeditor/ckeditor5-build-decoupled-document", -"@ckeditor/ckeditor5-build-classic","@ckeditor/ckeditor5-build-balloon-block","@ckeditor/ckeditor5-build-balloon", -"@ckeditor/ckeditor5-angular","@chatscope/chat-ui-kit-react","@bwcr_/winston-loki","@biz-dev-ops/md-docs", -"@babel/runtime-corejs2","@apollo/client","@api-components/api-method-documentation","@auth/sveltekit", -"@ant-design/react-native","@angular/router","@angular/platform-server","@angular/http","@alifd/next"], +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", +"@babel/plugin-transform-duplicate-named-capturing-groups-regex", +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression","@babel/plugin-transform-react-jsx", +"@babel/plugin-transform-react-display-name","@babel/plugin-transform-react-jsx-development", +"@babel/plugin-transform-react-pure-annotations","@babel/plugin-transform-typescript","babel-preset","pirates", +"clone-deep","@babel/helper-globals","@apidevtools/json-schema-ref-parser","@biz-dev-ops/web-components", +"@cucumber/gherkin-streams","@iframe-resizer/child","@iframe-resizer/parent","awilix","bpmn-js", +"json-schema-merge-allof","markdown-it-attrs","markdown-it-codetabs","markdown-it-footnote","markdown-it-multimd-table", +"markdown-it-plantuml-ex","markdown-it-task-lists","pdfjs-viewer-element","prince","svg-pan-zoom","swagger-ui-dist", +"web-resource-inliner","stylelint-config-standard-scss","md","openapi","bpmn","bdd","feature","async-exit-hook", +"transport","logger","backend","mri","p-limit","term-size","spawndamnit","@changesets/git","@changesets/pre", +"@changesets/read","@changesets/types","@changesets/write","@changesets/config", +"@changesets/errors","@changesets/logger","@manypkg/get-packages","package-manager-detector","@changesets/changelog-git", +"@inquirer/external-editor","@changesets/get-release-plan","@changesets/apply-release-plan", +"@changesets/should-skip-package","@changesets/get-dependents-graph","@changesets/assemble-release-plan","human-id", +"@chatscope/chat-ui-kit-styles","@fortawesome/fontawesome-free","@semantic-release/changelog","@semantic-release/git", +"@semantic-release/github","chokidar-cli","rollup-plugin-peer-deps-external","chat","reactjs","user interface","ui kit", +"communication","conversation","toolkit","library","reusable","feed","comments","social","talk","ckeditor","ckeditor 5", +"ckeditor5-feature","ckeditor5-plugin","ckeditor5-dll","@ckeditor/ckeditor5-integrations-common","wysiwyg","rich text", +"editor","contentEditable","editing","angular2","angular 5","ng","@ckeditor/ckeditor5-icons","@ckeditor/ckeditor5-enter", +"@ckeditor/ckeditor5-editor-balloon","operational transformation","ot","collaboration","collaborative","real-time", +"ckeditor5-build","@ckeditor/ckeditor5-editor-classic","@ckeditor/ckeditor5-font","@ckeditor/ckeditor5-alignment", +"@ckeditor/ckeditor5-editor-decoupled","@ckeditor/ckeditor5-editor-inline","blurhash","es-toolkit","ckeditor5-lib", +"@ckeditor/ckeditor5-watchdog", +"@ckeditor/ckeditor5-undo","@ckeditor/ckeditor5-select-all","color-parse","color-convert","vanilla-colorful", +"@types/color-convert","@ckeditor/ckeditor5-editor-multi-root","vue.js","vue component","vue.js component", +"@commitlint/format","@commitlint/lint","@commitlint/load","@commitlint/read","@commitlint/types","tinyexec", +"@commitlint/test","@commitlint/utils","@compodoc/live-server","@compodoc/ngd-transformer","@polka/send-type", +"bootstrap.native","decache","loglevel-plugin-prefix","lunr","neotraverse","opencollective-postinstall","os-name", +"polka","tablesort","vis-network","module","graph","@comunica/types","semantic","actor","messages","nf","@docsearch/css", +"@docsearch/js","@eslint/markdown","@rollup/plugin-replace","@stackblitz/sdk","bundlewatch","clean-css-cli", +"find-unused-sass-variables","hammer-simulator","hugo-bin","karma-coverage-istanbul-reporter", +"karma-jasmine-html-reporter","postcss-combine-duplicated-selectors","rollup-plugin-istanbul","sass-embedded", +"stylelint-config-twbs-bootstrap","vnu-jar","mobile-first","responsive","front-end","web","tokenizer","media query", +"matches","polyfill","postcss-plugin", +"pseudo","selector","custom","declarations","progressive","properties","utility","variables","vars","specificity", +"@cucumber/ci-environment","@cucumber/cucumber-expressions","@cucumber/gherkin","@cucumber/gherkin-utils", +"@cucumber/html-formatter","@cucumber/junit-xml-formatter","@cucumber/message-streams","@cucumber/messages", +"@cucumber/pretty-formatter","@cucumber/tag-expressions","assertion-error-formatter","capital-case","error-stack-parser", +"has-ansi","knuth-shuffle-seeded","read-package-up","string-argv","util-arity","yup","@cucumber/compatibility-kit", +"@cucumber/query","@eslint/compat","@types/dirty-chai","@types/express","@types/has-ansi","@types/lodash.merge", +"@types/luxon","@types/mocha","@types/mustache","@types/mz","@types/progress","@types/sinon-chai", +"@types/sinonjs__fake-timers","@types/stream-buffers","@types/tmp","chai-exclude","dependency-lint","genversion", +"reindent-template-literals","stream-to-string","testing","gherkin","tests","@types/mock-fs","@types/semver-compare", +"@types/signale","jest-mock-process","semver-compare","signale","deven","@diplodoc/cut-extension", +"@diplodoc/file-extension","@diplodoc/tabs-extension","@diplodoc/utils", +"get-root-node-polyfill","github-slugger","markdown-it-deflist","markdown-it-sup","markdownlint-rule-helpers", +"quick-lru","ts-dedent","@diplodoc/babel-preset","@diplodoc/lint","@diplodoc/tsconfig","@types/css", +"@types/github-slugger","@types/js-yaml","@types/markdown-it","@types/markdown-it-attrs","@types/sanitize-html", +"@vitest/coverage-v8","@vitest/ui","esbuild-sass-plugin","jest-serializer-html","markdown-it-testgen","terminal-link", +"yandex","docs","yfm","tool","tools","magic-bytes.js","@discordjs/util","discord-api-types","@sapphire/snowflake", +"@discordjs/collection","@sapphire/async-queue","@vladfrangu/async_event_emitter","turbo","@discordjs/scripts", +"eslint-config-neon","@favware/cliff-jumper","eslint-formatter-pretty","@discordjs/api-extractor", +"esbuild-plugin-version-injector","discord","api","rest","discordapp","discordjs","types","tsdoc","generated", +"@apidevtools/swagger-parser","@aws-sdk/client-s3","@diplodoc/client","@diplodoc/markdown-translation", +"@diplodoc/mermaid-extension","@diplodoc/openapi-extension","@doc-tools/yfm2xliff","@octokit/core", +"@types/json-stringify-safe","@yandex-cloud/nodejs-sdk","bem-cn-lite","threads","threads-plugin","@types/async", +"@types/chalk", +"@types/html-escaper","@types/mime-types","@types/shelljs","@types/tar-stream","markdown-it-meta","@types/markdownlint", +"@yandex-cloud/eslint-config","@yandex-cloud/prettier-config","@yandex-cloud/tsconfig","@tinyhttp/cookie-parser", +"cookie-encrypter","github-markdown-css","greenlock-express","memorystore","minisearch","selfsigned","sitemap","sql.js", +"workerpool","@types/body-parser","@types/compression","@types/express-session","@types/formidable","@types/prompts", +"@types/sass","@types/sql.js","@types/uuid","@types/workerpool","esbuild-wasm","razor","sqlite","aspx","@dnd-kit/core", +"@dnd-kit/modifiers","@dnd-kit/sortable","@dnd-kit/utilities","@stylistic/eslint-plugin","@stylistic/stylelint-plugin", +"@wordpress/dependency-extraction-webpack-plugin","lightningcss","swc-loader","@wordpress/api-fetch","scss","mixin","js", +"WordPress","@tsconfig/node22","@types/lodash.camelcase","@types/pretty-ms",".d.ts","definitions","@emotion/hash", +"@emotion/memoize","@emotion/serialize","babel-plugin-macros","find-root","stylis","babel-check-duplicated-nodes", +"styles","css-in-js","@emotion/cache","@emotion/sheet","@emotion/utils","@definitelytyped/dtslint", +"@emotion/is-prop-valid","@emotion/use-insertion-effect-with-fallbacks","@emotion/react","warun","dot-prop", +"installed-check","@typescript-eslint/types","@eslint-community/eslint-plugin-mysticatea","eslint-plugin", +"@fakeyanss/redocly-openapi-core","decko","json-pointer","mark.js","openapi-sampler","react-tabs","stickyfill", +"swagger2openapi","url-template","@cypress/webpack-preprocessor","@hot-loader/react-dom","@size-limit/preset-app", +"@types/dompurify","@types/enzyme-to-json","@types/json-pointer","@types/lunr","@types/mark.js","@types/marked", +"@types/prismjs","@types/styled-components","@types/tapable","@types/webpack-env","@wojtekmaj/enzyme-adapter-react-17", +"esbuild-loader","license-checker","lodash.noop","unfetch","OpenAPI","OpenAPI Specification","Swagger","JSON-Schema", +"API","REST","React.js","@floating-ui/dom","use-isomorphic-layout-effect","tooltip","popover","dropdown","menu","popup", +"positioning","font","font family","google fonts","inter","Inter","typeface","variable","roboto","Roboto", +"@fortawesome/fontawesome-common-types","awesome","fontawesome","svg", +"@babel/plugin-external-helpers","@fortawesome/free-brands-svg-icons","@semantic-release/exec","icons","server", +"@electron/rebuild","node-abi","@electron-forge/cli","electron-devtools-installer","@grandlinex/swagger-mate", +"@types/jsonwebtoken","@types/ms","@fastify/deepmerge","@graphql-markdown/graphql","@graphql-markdown/logger", +"@graphql-markdown/utils","@graphql-markdown/types","graphql-schema","graphql-markdown","@docusaurus/utils", +"@graphql-markdown/cli","@docusaurus/types","plugin","@tailwindcss/aspect-ratio","@tailwindcss/forms", +"@tailwindcss/typography","basename","filemanager-webpack-plugin","remove-files-webpack-plugin","sass-lint", +"configuration","boilerplate","@hapi/accept","@hapi/ammo","@hapi/boom","@hapi/bounce","@hapi/call","@hapi/catbox", +"@hapi/catbox-memory","@hapi/heavy","@hapi/hoek","@hapi/mimos","@hapi/podium","@hapi/shot","@hapi/somever", +"@hapi/statehood","@hapi/subtext","@hapi/teamwork","@hapi/topo","@hapi/validate","@hapi/code","@hapi/eslint-plugin", +"@hapi/inert","@hapi/lab","@hapi/vision","@hapi/wreck","comment-parser","@homer0/eslint-plugin", +"@homer0/prettier-config","@vitest/coverage-istanbul","leasot","@standard-schema/utils","@sinclair/typebox", +"@typeschema/core", +"@typeschema/main","@typeschema/zod","@vinejs/vine","ajv-errors","arktype","check-export-map","class-transformer", +"class-validator","computed-types","effect","fluentvalidation-ts","fp-ts","io-ts","io-ts-types","monocle-ts", +"newtype-ts","nope-validator","superstruct","typanion","vest","vite-tsconfig-paths","scheme","validation", +"scheme-validation","hookform","effect-ts","nope","TypeBox","typeschema","vine","standard-schema","google translate api", +"google translate","google api","translate api","google","translate","@atlaskit/pragmatic-drag-and-drop", +"@atlaskit/pragmatic-drag-and-drop-auto-scroll","@atlaskit/pragmatic-drag-and-drop-hitbox","vue3","vue 3.x", +"@ctrl/tinycolor","@inquirer/ansi","cli-width","fast-wrap-ansi","mute-stream","@inquirer/testing","@types/mute-stream", +"answer","answers","ask","base","command","command-line","confirm","generate","hyper","input","inquire","interface", +"iterm","node","nodejs", +"promptly","question","scaffold","scaffolder","stdin","stdout","terminal","tty","yeoman","zsh","@stencil/core","domino", +"@stencil/sass","@capacitor/core","playwright-core","@playwright/test","@capacitor/haptics","@capacitor/keyboard", +"@ionic/eslint-config","@capacitor/status-bar","@ionic/prettier-config","@rollup/plugin-virtual", +"@stencil/vue-output-target","@stencil/react-output-target","@stencil/angular-output-target","stencil","app","webapp", +"capacitor","progressive web app","pwa","layout","console","wrap","table","@istanbuljs/schema","test","coverage", +"@itwin/itwinui-illustrations-react","@swc/helpers","@tanstack/react-virtual","react-table","@swc/cli", +"eslint-plugin-require-extensions","design-system","itwin","itwinui","ux","@jest/console","@jest/pattern", +"@jest/reporters","@jest/test-result","@jest/transform","exit-x","jest-changed-files","jest-config","jest-haste-map", +"jest-message-util","jest-regex-util","jest-resolve-dependencies","jest-runner","jest-runtime","jest-snapshot", +"jest-validate", +"jest-watcher","@jest/test-sequencer","@jest/test-utils","@types/graceful-fs","@types/micromatch","easy","facebook", +"immersive","instant","mocking","painless","runner","sandboxed","snapshot","@jest/schemas", +"@types/istanbul-lib-coverage","@types/istanbul-reports","@types/json-schema","@types/redux-mock-store", +"document-register-element","redux-mock-store","form","forms","json","jsonforms","renderengine","schema","uischema", +"customization","@date-io/dayjs","@rollup/plugin-json","rollup-plugin-copy","rollup-plugin-import-css","renderer", +"@rollup/plugin-alias","@types/object-hash","@jupyterlab/apputils","@jupyterlab/coreutils","@jupyterlab/docregistry", +"@jupyterlab/rendermime","@jupyterlab/rendermime-interfaces","@jupyterlab/services","@jupyterlab/statedb", +"@jupyterlab/translation","@jupyterlab/ui-components","@lumino/algorithm","@lumino/application","@lumino/commands", +"@lumino/coreutils","@lumino/disposable","@lumino/messaging","@lumino/polling","@lumino/properties","@lumino/signaling", +"@lumino/widgets","@jupyterlab/testing","docopt","glob2base","lodash.difference","multipipe","safe-wipe","sass-convert", +"@kobedevi/sassdoc-theme-default","scss-comment-parser", +"strip-indent","vinyl-string","babel-plugin-transform-builtin-extend","opn-cli","doc","theme","chatfanpage", +"api-connect-x","api-connect-tiwtter","@inquirer/input","@inquirer/prompts","task","list","tasklist","term","ascii", +"unicode","loading","indicator","busy","wait","idle","react-remove-scroll","ui-kit","calendar","date","picker","time", +"react-hooks","state","modal","notification","notification-manager","notification-system","prism-react-renderer", +"highlight","syntax","syntax-highlight","styling","@material-ui/types","@material-ui/utils","@material-ui/styles", +"@material-ui/system","@microsoft/api-documenter","json-api","json:api","serializer","normalizer","formatter", +"@types/mdx","jsx","mdx","@rushstack/node-core-library","@microsoft/api-extractor-model","@rushstack/terminal", +"@rushstack/ts-command-line","@rushstack/rig-package","@rushstack/heft","decoupled-local-node-rig","local-eslint-config", +"JSDoc","AEDoc","TSDoc","declaration", +"dts","bundle","alpha","beta","tsdoc-build-rig","TypeScript","jju","@types/jju","@aws/durable-execution-sdk-js", +"@aws/durable-execution-sdk-js-testing","@datastream/core","@types/aws-lambda","Lambda","Middleware","Serverless", +"Framework","AWS","AWS Lambda","Function URL","Durable function","Middy","HTTP","JSON","Body Parser","JSON Body Parser", +"@aws-sdk/client-ssm","aws-xray-sdk","helper","moj","design system","@open-draft/deferred-promise","@open-draft/logger", +"@open-draft/until","is-node-process","outvariant","strict-event-emitter","@open-draft/test-server","@ossjs/release", +"@types/cors","@types/express-fileupload","@types/follow-redirects","@types/node-fetch","@types/superagent", +"@types/supertest","@types/ws","engine.io-parser","express-fileupload","express-rate-limit","socket.io-parser", +"vitest-environment-miniflare","web-encoding","webpack-http-server","intercept","fetch","low-level","mock","spy","mui", +"@mui/core-downloads-tracker","system","@mui/x-internals","mui-x","datepicker","timepicker", +"datetimepicker","@headlessui/react","@iconify-icon/react","@mdx-js/loader","@mdx-js/mdx","@shikijs/transformers", +"@theguild/remark-npm2yarn","@types/unist","@vcarl/remark-headings","approximate-number","extra-watch-webpack-plugin", +"flexsearch","git-url-parse","mdast-util-phrasing","next-seo","react-helmet-async","rehype-extract-excerpt", +"rehype-pretty-code","remark-frontmatter","remark-heading-id","remark-link-rewrite","shiki","tailwindcss-themer", +"webpack-virtual-modules","@types/color","@types/extra-watch-webpack-plugin","@types/git-url-parse","@types/mdast", +"@repo/eslint-config","@repo/typescript-config","@repo/prettier-config","posthtml-render","posthtml-parser","esthetic", +"builder","guides","demo","ng-doc","rehype-format","hast-util-has-property","hast-util-heading-rank", +"rehype-minify-whitespace","unist-util-filter","@shikijs/rehype","ordinal","@types/chai-as-promised","ethers","hardhat", +"@types/bn.js","@nomicfoundation/hardhat-ethers","@nomicfoundation/eslint-plugin-slow-imports", +"@nomicfoundation/eslint-plugin-hardhat-internal-rules","ethereum","smart-contracts","@isaacs/string-locale-compare", +"@npmcli/fs","@npmcli/installed-package-contents","@npmcli/metavuln-calculator","@npmcli/name-from-folder", +"@npmcli/package-json","@npmcli/query","@npmcli/redact","bin-links","cacache", +"common-ancestor-path","json-stringify-nice","npm-install-checks","npm-pick-manifest","parse-conflict-json","proggy", +"promise-all-reject-late","promise-call-limit","treeverse","walk-up-path","@npmcli/eslint-config", +"@npmcli/mock-registry","@npmcli/template-oss","minify-registry-metadata","tcompare","libnpm","workspaces", +"map-workspaces","@npmcli/promise-spawn","spawk","innertext","highlights","similarity","language-ini","property-ttl", +"language-dart","language-glsl","language-haxe","language-rust","lodash.pickby","language-erlang","language-stylus", +"highlights-tokens","atom-language-diff","atom-language-nginx","github-url-to-object","markdown-it-expand-tabs", +"markdown-it-lazy-headers","oniguruma","intercept-stdout","readme","gfm","formatted","syntax highlighting","Monorepo", +"Angular","React","Web","Node","Nest","Jest","Cypress","CLI","@zkochan/js-yaml","EsBuild","Front-end","Backend","Lint", +"ESLint","Testing","Express","babel-plugin-const-enum","babel-plugin-transform-typescript-metadata","Swc", +"Tsc","@nestjs/schematics","kill-port","@nx/docker","tcp-port-used","@oclif/errors","@oclif/parser","@oclif/help", +"@oclif/plugin-plugins","fancy-test","oclif","@types/indent-string","@types/proxyquire","@types/wrap-ansi","clean-stack", +"@oclif/prettier-config","@oclif/test","@types/clean-stack","@types/ejs","@types/pnpapi","@types/sinon", +"@types/supports-color","@types/wordwrap","madge","command line","args","argv","oclif-plugin", +"@octokit/plugin-paginate-rest","@octokit/plugin-request-log","@octokit/plugin-rest-endpoint-methods", +"@octokit/auth-action","@octokit/auth-app","@octokit/fixtures-server","@octokit/request","@octokit/tsconfig", +"semantic-release-plugin-update-version-in-files","octokit","api-client","@opentiny/vue-action-menu", +"@opentiny/vue-action-sheet","@opentiny/vue-alert","@opentiny/vue-amount","@opentiny/vue-anchor","@opentiny/vue-area", +"@opentiny/vue-async-flowchart","@opentiny/vue-autocomplete","@opentiny/vue-badge","@opentiny/vue-base-select", +"@opentiny/vue-breadcrumb","@opentiny/vue-breadcrumb-item","@opentiny/vue-bulletin-board","@opentiny/vue-button", +"@opentiny/vue-button-group","@opentiny/vue-calendar","@opentiny/vue-calendar-bar","@opentiny/vue-calendar-view", +"@opentiny/vue-card","@opentiny/vue-card-group","@opentiny/vue-card-template","@opentiny/vue-carousel", +"@opentiny/vue-carousel-item","@opentiny/vue-cascader","@opentiny/vue-cascader-menu", +"@opentiny/vue-cascader-mobile","@opentiny/vue-cascader-node","@opentiny/vue-cascader-panel", +"@opentiny/vue-cascader-select","@opentiny/vue-cascader-view","@opentiny/vue-cell","@opentiny/vue-checkbox", +"@opentiny/vue-checkbox-button","@opentiny/vue-checkbox-group","@opentiny/vue-col","@opentiny/vue-collapse", +"@opentiny/vue-collapse-item","@opentiny/vue-collapse-transition","@opentiny/vue-color-picker", +"@opentiny/vue-color-select-panel","@opentiny/vue-column-list-group","@opentiny/vue-column-list-item", +"@opentiny/vue-company","@opentiny/vue-config-provider","@opentiny/vue-container","@opentiny/vue-country", +"@opentiny/vue-crop","@opentiny/vue-currency","@opentiny/vue-date-panel","@opentiny/vue-date-picker", +"@opentiny/vue-date-picker-mobile-first","@opentiny/vue-date-range","@opentiny/vue-date-table","@opentiny/vue-dept", +"@opentiny/vue-dialog-box","@opentiny/vue-dialog-select","@opentiny/vue-divider","@opentiny/vue-drawer", +"@opentiny/vue-drop-roles","@opentiny/vue-drop-times","@opentiny/vue-dropdown","@opentiny/vue-dropdown-item", +"@opentiny/vue-dropdown-menu","@opentiny/vue-dynamic-scroller","@opentiny/vue-dynamic-scroller-item", +"@opentiny/vue-espace","@opentiny/vue-exception","@opentiny/vue-fall-menu","@opentiny/vue-file-upload", +"@opentiny/vue-filter","@opentiny/vue-filter-bar","@opentiny/vue-filter-box","@opentiny/vue-filter-panel", +"@opentiny/vue-float-button","@opentiny/vue-floatbar","@opentiny/vue-floating-button","@opentiny/vue-flowchart", +"@opentiny/vue-fluent-editor","@opentiny/vue-form","@opentiny/vue-form-item","@opentiny/vue-fullscreen", +"@opentiny/vue-grid","@opentiny/vue-grid-column","@opentiny/vue-grid-manager","@opentiny/vue-grid-select", +"@opentiny/vue-grid-toolbar","@opentiny/vue-guide","@opentiny/vue-hrapprover","@opentiny/vue-image", +"@opentiny/vue-image-viewer","@opentiny/vue-input","@opentiny/vue-ip-address","@opentiny/vue-layout", +"@opentiny/vue-link","@opentiny/vue-link-menu","@opentiny/vue-load-list","@opentiny/vue-loading","@opentiny/vue-locales", +"@opentiny/vue-logon-user","@opentiny/vue-logout","@opentiny/vue-menu","@opentiny/vue-message","@opentiny/vue-milestone", +"@opentiny/vue-mind-map","@opentiny/vue-modal","@opentiny/vue-month-range","@opentiny/vue-month-table", +"@opentiny/vue-nav-menu","@opentiny/vue-notify","@opentiny/vue-number-animation","@opentiny/vue-numeric", +"@opentiny/vue-option","@opentiny/vue-option-group","@opentiny/vue-pager","@opentiny/vue-pager-item", +"@opentiny/vue-panel","@opentiny/vue-picker","@opentiny/vue-pop-upload","@opentiny/vue-popconfirm", +"@opentiny/vue-popeditor","@opentiny/vue-popover","@opentiny/vue-popup","@opentiny/vue-progress", +"@opentiny/vue-pull-refresh","@opentiny/vue-qr-code","@opentiny/vue-quarter-panel","@opentiny/vue-query-builder", +"@opentiny/vue-radio","@opentiny/vue-radio-button","@opentiny/vue-radio-group","@opentiny/vue-rate", +"@opentiny/vue-record","@opentiny/vue-recycle-scroller","@opentiny/vue-river","@opentiny/vue-roles","@opentiny/vue-row", +"@opentiny/vue-scroll-text","@opentiny/vue-scrollbar","@opentiny/vue-search","@opentiny/vue-select", +"@opentiny/vue-select-dropdown","@opentiny/vue-select-mobile","@opentiny/vue-select-view","@opentiny/vue-select-wrapper", +"@opentiny/vue-selected-box","@opentiny/vue-signature","@opentiny/vue-skeleton","@opentiny/vue-skeleton-item", +"@opentiny/vue-slider","@opentiny/vue-slider-button","@opentiny/vue-slider-button-group","@opentiny/vue-space", +"@opentiny/vue-split", +"@opentiny/vue-standard-list-item","@opentiny/vue-statistic","@opentiny/vue-steps","@opentiny/vue-sticky", +"@opentiny/vue-switch","@opentiny/vue-tab-item","@opentiny/vue-tabbar","@opentiny/vue-tabbar-item","@opentiny/vue-table", +"@opentiny/vue-tabs","@opentiny/vue-tag","@opentiny/vue-tag-group","@opentiny/vue-tag-input","@opentiny/vue-text-popup", +"@opentiny/vue-time","@opentiny/vue-time-line","@opentiny/vue-time-panel","@opentiny/vue-time-picker", +"@opentiny/vue-time-picker-mobile","@opentiny/vue-time-range","@opentiny/vue-time-select","@opentiny/vue-time-spinner", +"@opentiny/vue-timeline-item","@opentiny/vue-toggle-menu","@opentiny/vue-tooltip","@opentiny/vue-top-box", +"@opentiny/vue-transfer","@opentiny/vue-transfer-panel","@opentiny/vue-tree","@opentiny/vue-tree-menu", +"@opentiny/vue-tree-select","@opentiny/vue-upload","@opentiny/vue-upload-dragger","@opentiny/vue-upload-list", +"@opentiny/vue-user","@opentiny/vue-user-account","@opentiny/vue-user-contact","@opentiny/vue-user-head", +"@opentiny/vue-user-head-group","@opentiny/vue-user-link","@opentiny/vue-virtual-scroll-box", +"@opentiny/vue-virtual-tree","@opentiny/vue-watermark","@opentiny/vue-wizard","@opentiny/vue-year-range", +"@opentiny/vue-year-table","component-library","vue-components","opentiny","renderless-components","headless-components", +"@opentiny/utils","@opentiny/vue-hooks","esno","gulp-svg-inline","gulp-transform","otterhttp","node.js","web framework", +"header-range-parser","@otterhttp/accepts","@otterhttp/content-type","@otterhttp/proxy-address","@otterhttp/type-is", +"@otterhttp/url","@otterhttp/router","req","es-escape-html","@otterhttp/content-disposition","@otterhttp/encode-url", +"@otterhttp/errors","@otterhttp/vary","res","@otterhttp/etag","send-file","@pact-foundation/pact-core","randexp", +"stack-utils","@pact-foundation/pact-js-prettier-config","@types/http-proxy","@types/nock","@types/ramda", +"@types/stack-utils","commit-and-tag-version","eslint-plugin-chai-friendly","pact","pact-js","contract testing", +"consumer driven testing","management","store","@phosphor/algorithm","@phosphor/commands","@phosphor/coreutils", +"@phosphor/disposable","@phosphor/domutils","@phosphor/dragdrop","@phosphor/keyboard","@phosphor/messaging", +"@phosphor/properties","@phosphor/signaling","@phosphor/virtualdom","@release-it/conventional-changelog","@types/jsdom", +"cobertura","eslint-config-phun-ky","git-cz","glob-bin","global-jsdom","putout","quibble","remark-github","remark-toc", +"typedoc-plugin-frontmatter","typedoc-plugin-mdn-links","typedoc-plugin-no-inherit","typedoc-plugin-remark", +"typedoc-plugin-rename-defaults","typedoc-vitepress-theme","unified-prettier","vitepress-plugin-group-icons","a11y", +"accessibility","anatomy","annotate","annotation","dissect","dissection", +"grid","grid-layout","html-elements","information","inspect","pin","spacing","spec","speccer","specification", +"specifications","specs","typography","stories","@webcomponents/shadycss","@polymer/gen-closure-declarations", +"@polymer/iron-component-page","@polymer/test-fixture","@webcomponents/webcomponentsjs","babel-preset-minify","dom5", +"google-closure-compiler","gulp-vulcanize","lazypipe","polymer-build","polymer-cli","wct-browser-legacy","cldr","gauge", +"upath","fontkit","ps-tree","get-value","set-value","github-api","unset-value","tap-colorize","core-js-bundle", +"app-module-path","es6-promise-pool","better-ajv-errors","jstransformer-dot","@metalsmith/layouts", +"@metalsmith/markdown","console-control-strings","@qooxdoo/eslint-config-qx","@qooxdoo/eslint-plugin-qx", +"eslint-formatter-codeframe","@qooxdoo/eslint-config-jsdoc-disable","@babel/plugin-proposal-optional-chaining-assign", +"dirsum","qooxdoo","fontend","back-end","widgets","gui","databinding","interfaces","mixins","@mdi/font","@mdi/svg", +"@xmldom/xmldom","animate.css","bootstrap-icons", +"eva-icons","line-awesome","eslint-config-quasar","quasar","fonts","animations","gltfpack","detect-gpu","r3f-perf", +"@types/three","three-stdlib","suspend-react","postprocessing","@storybook/react","@react-three/drei", +"@react-three/fiber","cypress-image-diff-js","rollup-plugin-postcss","@storybook/addon-links","@storybook/node-logger", +"eslint-plugin-storybook","@storybook/addon-actions","@storybook/react-webpack5","@react-three/test-renderer", +"@storybook/testing-library","@react-three/postprocessing","@storybook/addon-essentials","@storybook/addon-interactions", +"@types/testing-library__jest-dom","@storybook/preset-create-react-app","threejs","react-three-fiber","ready-player-me", +"3D","avatars","glb","@phryneas/ts-version","@size-limit/file","@size-limit/webpack", +"@testing-library/react-render-stream","@types/babel__core","@types/babel__helper-module-imports","@types/nanoid", +"@types/query-string","esbuild-extra","starter","reducer","slice","redux-toolkit","@rollup/pluginutils","commondir", +"fdir","is-reference","locate-character","require-relative","commonjs","require","is-module","string-capitalize", +"es2015","groq-js","refractor","@sanity/ui","@types/cpx", +"dotenv-flow","@sanity/color","@sanity/icons","@sanity/client","react-refractor","esbuild-register","@sanity/pkg-utils", +"@portabletext/react","@portabletext/toolkit","cpx","sanity","@types/mkdirp","@sanity/ui-workshop", +"@sanity/semantic-release-preset","eslint-plugin-simple-import-sort","API reference","@unhead/vue","@vueuse/core", +"microdiff","@scalar/agent-chat","@scalar/code-highlight","@scalar/api-client","@scalar/icons","@scalar/components", +"@scalar/helpers","@scalar/openapi-parser","@scalar/oas-utils","@scalar/openapi-types","@scalar/sidebar","@scalar/types", +"@scalar/snippetz","@scalar/use-hooks","@scalar/themes","@scalar/use-toasts","@scalar/workspace-store", +"@hono/node-server","@tailwindcss/vite","@vitejs/plugin-vue","@vue/test-utils","rollup-plugin-webpack-stats", +"vite-plugin-banner","vite-plugin-css-injected-by-js","@scalar/build-tooling","@scalar/core","@scalar/galaxy", +"@scalar/react-renderer","reference","swagger","fastify-plugin","@fastify/basic-auth","@fastify/http-proxy", +"@fastify/swagger","@serenity-js/core","@serenity-js/rest","@serenity-js/web","tiny-types","@integration/testing-tools", +"@serenity-js/assertions","@serenity-js/cucumber","@serenity-js/jasmine","@serenity-js/local-server", +"@serenity-js/mocha","@types/html-minifier","mocha-multi", +"automation","browser","e2e","end-to-end","integration","serenity","serenity-js","screenplay","screenplay-pattern","tdd", +"@wdio/reporter","@wdio/cli","@wdio/dot-reporter","@wdio/local-runner","@wdio/spec-reporter","@wdio/types", +"mocha-testdata","webdriverio","wdio","wdio-reporter","@sinonjs/commons","@mochify/cli","@mochify/driver-puppeteer", +"@mochify/driver-webdriver","@sinonjs/eslint-config","@sinonjs/referee-sinon","@storybook/icons","@storybook/csf-plugin", +"@storybook/react-dom-shim","telejson","memoizerific","storybook-addon","essentials","organize","MDX","autodocs", +"styleguide","style guide","web-components","@ant-design/colors","@ant-design/cssinjs","@ant-design/react-slick", +"@fortawesome/free-regular-svg-icons","@polkadot/react-identicon","@polkadot/util-crypto","@polkadot/wasm-crypto", +"@rc-component/tour","@zxing/browser","@zxing/library","boring-avatars","flatlist-react","jsqr","patch-package", +"phosphor-react","qrcode.react","rc-cascader","rc-checkbox","rc-collapse","rc-dialog","rc-drawer","rc-dropdown", +"rc-image","rc-input","rc-input-number", +"rc-mentions","rc-menu","rc-motion","rc-notification","rc-pagination","rc-picker","rc-progress","rc-rate", +"rc-resize-observer","rc-segmented","rc-select","rc-steps","rc-switch","rc-table","rc-tabs","rc-textarea","rc-tree", +"rc-tree-select","rc-trigger","rc-upload","react-pin-input","react-qrcode-logo","react-superellipse", +"scroll-into-view-if-needed","@babel/eslint-plugin","@emotion/babel-preset-css-prop","@emotion/server", +"@qixian.cs/github-contributors-list","@storybook/addons","@storybook/builder-webpack5","@storybook/manager-webpack5", +"@storybook/theming","@types/gtag.js","@types/jest-axe","@types/jest-environment-puppeteer","@types/jest-image-snapshot", +"@types/jquery","@types/puppeteer","@types/qs","@types/react-color","@types/react-highlight-words", +"@types/react-resizable","@types/react-window","@types/throttle-debounce","@types/warning","antd-img-crop", +"antd-token-previewer","array-move","bundlesize2","dekko","duplicate-package-checker-webpack-plugin","fetch-jsonp", +"jest-axe","jest-image-snapshot","jest-puppeteer","jsonml-to-react-element","lz-string","rc-footer","rc-tween-one", +"rc-virtual-list","react-fast-marquee","react-highlight-words","react-infinite-scroll-component","react-resizable", +"react-sticky-box","react-window","remark-lint","remark-preset-lint-recommended","rome","stylelint-config-prettier", +"stylelint-config-rational-order","stylelint-declaration-block-no-ignored-properties","sylvanas","vanilla-jsoneditor", +"xhr-mock","yaml-front-matter","@supernova-studio/client","@supernova-studio/model","abab","async-mutex","color2k", +"parse-color","string.prototype.matchall","@types/tinycolor2","trash-cli","tsconfig-paths-webpack-plugin","Supernova", +"Design Systems","Supernovaio","SDK","Design Tokens","Tokens","Assets","Components","Documentation","Markdown","CMS", +"expr-eval-fork","ml-matrix","postcss-calc-ast-parser","@ava/typescript","@stylistic/eslint-plugin-js", +"@svitejs/changesets-changelog-github-compact","eslint-config","@sveltejs/acorn-typescript","@types/cookie","devalue", +"esm-env","mrmime","sade","@opentelemetry/api","@types/connect","dts-buddy","official","obug", +"@sveltejs/vite-plugin-svelte-inspector","vite-plugin","vite plugin","@babel/plugin-transform-react-constant-elements", +"@svgr/plugin-jsx","@svgr/plugin-svgo","svgr","webpack-loader","@swc/counter","@swc/types","@napi-rs/cli","@rstest/core", +"swc", +"swcpack","rust","tsc","stylelint-prettier","@swisspost/design-system-icons","@swisspost/design-system-tokens", +"stylelint-config-sass-guidelines","collections","patterns","web components","ui library","symbiote.js","symbiote", +"widget","microfrontends","meta application","custom elements","shadow dom","shadow root","constructable stylesheets", +"adopted stylesheets","css custom properties","pubsub","import maps","cdn imports","https imports", +"reactive html attributes","MIT","JSDA","@types/content-type","istanbul-lib-coverage","istanbul-lib-report", +"istanbul-lib-source-maps","istanbul-reports","rollup-plugin-filesize","tanem-scripts","dom","images","img", +"scalable-vector-graphics","@tanstack/query-core","@tanstack/query-persist-client-core","@tanstack/query-test-utils", +"@testing-library/svelte","tanstack","query","@types/js-cookie","@github/webauthn-json","better-docs", +"eslint-config-preact","hanko","passkey","webauthn","passcode","password","kcd-scripts","functional","aria-query", +"@types/aria-query","dom-accessibility-api","jest-in-case","jest-watch-select-projects","jest-snapshot-serializer-ansi", +"unit", +"redent","@jest/globals","rollup-plugin-delete","jest-environment-jsdom-sixteen","jest-matcher-utils", +"@callstack/eslint-config","@relmify/jest-serializer-strip-ansi","testing-library","dotenv-cli","jest-mock", +"shared-scripts","@types/jest-in-case","@ph.fritsche/toolbox","jest-serializer-ansi","esbuild-plugin-globals", +"eslint-plugin-local-rules","@ph.fritsche/scripts-config","@esbuild-plugins/node-modules-polyfill", +"react-testing-library","dom-testing-library","regexparam","tinyhttp","static","@tinyhttp/vary","supertest-fetch", +"forwarded","headers","header","proxy-addr","net","network","@tinyhttp/accepts","@tinyhttp/content-disposition", +"@tinyhttp/content-type","params","particles.js","particlesjs","particles","particle","jsparticles","xparticles", +"particles-js","particles-bg","particles-bg-vue","particles-ts","particles.ts","react-particles-js","react-particles.js", +"react-particles","vue-particles","ngx-particles","angular-particles","particleground","vuejs","preactjs","angularjs", +"animation","html5","web-design","webdesign","css3","animated","background","confetti", +"fireworks","fireworks-js","confetti-js","confettijs","fireworksjs","canvas-confetti","@d-fischer/shared-utils", +"@twurple/api-call","@twurple/common","jose","twitch","extension","service","ebs","ts-api-utils","natural-compare", +"@eslint-community/regexpp","@typescript-eslint/type-utils","@typescript-eslint/visitor-keys","title-case", +"mdast-util-mdx","micromark-extension-mdxjs","@typescript-eslint/rule-tester", +"@typescript-eslint/rule-schema-to-typescript-types","eslintplugin","@typescript-eslint/typescript-estree","estree", +"@ucloud-fe/calendar","component-classes","create-react-context","emotion-theming","file-bytes-formatter","mini-store", +"rc-animate","rc-form","z-use-drag","@types/hoist-non-react-statics","@types/raf","@ucloud-fe/recodo-gen","ast-types", +"babel-plugin-emotion","babel-plugin-typescript-to-proptypes","babel-plugin-webpack-alias","css-hot-loader", +"jest-emotion","jsdom-screenshot","stylelint-config-styled-components","stylelint-processor-styled-components", +"tsc-alias","ucloud","jotai-x","is-hotkey","optics-ts","zustand-x","slate-react","jotai-optics","@udecode/slate", +"@udecode/utils","use-deep-compare","slate-hyperscript","@udecode/react-utils","@udecode/react-hotkeys","plate","slate", +"button","react-button","uiw-react","react.js","uikit","react-ui","@uiw/icons","react-icon","react-input", +"@uiw/react-overlay","overlay-trigger","react-overlay-trigger","utils","react-utils","prom-client","openapi-types", +"unleash-client","json-schema-to-ts","ts-node-dev","@types/type-is","Unleash","native","ios","android","flags","lit", +"keyux","nanostores","@lit/context","@uploadcare/cname-prefix","@uploadcare/image-shrink","@uploadcare/upload-client", +"@uploadcare/quality-insights","shipjs","render-jsx","lit-analyzer","ts-lit-plugin","@biomejs/js-api","@vitest/browser", +"eslint-plugin-wc","@types/svg-sprite","eslint-plugin-lit","vitest-browser-lit","@biomejs/wasm-nodejs", +"@size-limit/esbuild-why","esbuild-minify-templates","@total-typescript/ts-reset","@size-limit/preset-small-lib", +"@happy-dom/global-registrator","@csstools/postcss-cascade-layers","uploadcare","lighter","file uploader", +"adaptive image","image optimization","image editing","image size","cloud image editor","upload api client", +"building blocks","blocks","lr-blocks","uc-blocks","integrations", +"smart cdn","cloud file platform","transformation api","webp","avif","css context properties","meta applications", +"browserslist-to-esbuild","@babel/plugin-transform-react-jsx-self","@babel/plugin-transform-react-jsx-source", +"@rolldown/pluginutils","babel-plugin-react-compiler","fast refresh","@tsconfig/node20","pkgroll","create-vue", +"create-eslint-config","ajv-keywords","merge-deep","swagger-parser","@ant-design/icons-svg","@makotot/ghostui", +"@types/hast","@umijs/bundler-utils","@umijs/core","@umijs/utils","animated-scroll-to","codesandbox","comlink", +"dumi-afx-deps","estree-util-to-js","estree-util-visit","file-system-cache","heti","html2sketch", +"mdast-util-find-and-replace","mdast-util-to-string","prism-themes","react-loading-skeleton","react-simple-code-editor", +"rehype-remove-comments","remark-directive","sucrase","umi","unist-util-visit-parents","v8-compile-cache","vfile", +"dumi-assets-types","@types/highlight-words-core","@types/hosted-git-info","@types/lodash.throttle","@types/pluralize", +"@umijs/lint","@umijs/plugins","codesandbox-import-utils","git-repo-info","highlight-words-core","zx", +"dumi-theme-mobile","static site generator","jamstack","aleo","cryptography","blockchain", +"decentralized","zero-knowledge","oracle","event-target-shim","@mysticatea/eslint-plugin","@mysticatea/spy", +"dts-bundle-generator","karma-growl-reporter","rollup-plugin-babel-minify","rollup-watch","type-tester","w3c","whatwg", +"event","abort","cancel","abortcontroller","abortsignal","controller","signal","shim","negotiator","content", +"negotiation","accept","middleware","progress-estimator","@types/figlet","@types/git-clone", +"rollup-plugin-node-externals","nestjs","fullstack","zip","archive","flowcontrol","flow","control","arch","cron-parser", +"date.js","human-interval","@types/human-interval","job","jobs","delayed","blockchain-bend4","blockchain-meat7", +"bow-swam-troops-care","cent-matter-to","closer-composed-particularly-shout","coach-organized-notice", +"correct-home-silent7","course-whenever-merely","crop-birthday-web3-children","exchange-known-bend", +"face-eventually-bound","grass-dollar-crew-floating","information-fruit-web3-perfect","lay-rest-hour", +"material-balance-trade-solar","meat-think-stove8","office-deal-mostly1","product-slight-adult-settlers", +"recently-done-should-moon", +"scientific-exist-event2","sentence-won-little-western","speed-wing-eat","stay-including","supper-term-including-snake", +"truck-hospital-equator-hurt","trunk-darkness-believed-corner","typical-recall-industry-exchange","warn-clothing-whose0", +"weigh-flew-web3-farm","@airtap/browserify-istanbul","airtap-default","airtap-multi","bruce-millis-option","engine.io", +"engine.io-client","find-nearest-file","globs-to-files","humanize-duration","load-script","make-promises-safe", +"maybe-combine-errors","nanoresource","nanoresource-collection","on-stream-close","run-parallel-settled","tap-completed", +"thunky-with-args","transient-error","abstract-browser","simple-get","saucelabs","fast-uri","json-schema-traverse", +"require-from-string","@ajv-validator/config","@types/require-from-string","dayjs-plugin-utc","if-node-version", +"json-schema-test","module-from-string","re2","tsify","uri-js","json-schema-validator","json-schema-validation","Ajv", +"longjohn","buffer-more-ints","claire","AMQP","AMQP 0-9-1","RabbitMQ","simple","ux bootstrap","client-side", +"@angular-cli/ast-tools","@angular-cli/base-href-webpack","@ngtools/json-schema","@ngtools/webpack","denodeify", +"ember-cli-normalize-entity-name","ember-cli-string-utils","exists-sync", +"findup","get-caller-file","isbinaryfile","node-modules-path","script-loader","silent-error", +"sourcemap-istanbul-instrumenter-loader","component library","justified","256","ansi","bgblack","bgBlack","bgblue", +"bgBlue","bgcyan","bgCyan","bggreen","bgGreen","bgmagenta","bgMagenta","bgred","bgRed","bgwhite","bgWhite","bgyellow", +"bgYellow","black","blue","bold","clorox","colour","cyan","dim","formatting","gray","green","grey","hidden","inverse", +"italic","logging","magenta","red","reset","rgb","shell","str","strikethrough","style","text","underline","white", +"yellow","environment","escape","escapes","vt100","sequence","codes","cursor","iterm2","screen","erase", +"scrollback","regex","regexp","re","match","find","pattern","svg-term-cli","@ant-design/icons-vue","@emotion/unitless", +"@simonwep/pickr","array-tree-filter","dom-align","dom-scroll-into-view","shallow-equal","vue-types", +"@babel/plugin-proposal-optional-chaining","@babel/plugin-transform-object-assign","@types/koa","@types/lru-cache", +"@types/postcss-load-config","@vitejs/plugin-vue-jsx","@vue/babel-plugin-jsx","@vue/cli-plugin-eslint", +"@vue/eslint-config-prettier","@vue/vue3-jest","@webpack-cli/serve","ali-oss","babel-plugin-inline-import-data-uri", +"babel-plugin-transform-require-context","colorful","compare-versions","cz-git","diacritics","docsearch.js","enquire-js", +"eslint-plugin-no-explicit-type-exports","gulp-strip-code","ignore-emit-webpack-plugin","is-windows", +"jest-serializer-vue","jest-transform-stub","json-templater","less-plugin-npm-import","less-vars-to-js","majo", +"markdown-it-table-of-contents","merge2","remark-stringify","remark-yaml-config","reqwest","rucksack-css", +"selenium-server","string-replace-loader","umi-request","vue-clipboard2","vue-drag-resize","vue-infinite-scroll", +"vue-request","vue-tsc","webpackbar","vueComponent","@rc-component/form","@rc-component/menu", +"@rc-component/rate","@rc-component/tabs","@rc-component/tree","@rc-component/util","@rc-component/image", +"@rc-component/input","@rc-component/steps","@rc-component/table","@rc-component/dialog","@rc-component/drawer", +"@rc-component/motion","@rc-component/picker","@rc-component/qrcode","@rc-component/select","@rc-component/slider", +"@rc-component/switch","@rc-component/upload","@rc-component/tooltip","@rc-component/trigger","@ant-design/fast-color", +"@rc-component/cascader","@rc-component/checkbox","@rc-component/collapse","@rc-component/dropdown", +"@rc-component/mentions","@rc-component/progress","@rc-component/textarea","@rc-component/segmented", +"@rc-component/pagination","@ant-design/cssinjs-utils","@rc-component/tree-select","@rc-component/color-picker", +"@rc-component/input-number","@rc-component/notification","@rc-component/mutate-observer", +"@rc-component/resize-observer","p-all","runes2","mermaid","spinnies","env-paths","@types/tar","antd-style", +"@types/pngjs","cli-progress","domparser-rs","vanilla-tilt","@ant-design/x","react-countup","@prettier/sync", +"@types/adm-zip","@types/ali-oss","@blazediff/core","@types/css-tree","@types/minimist","@types/spinnies", +"@types/nprogress","lunar-typescript","@ant-design/x-sdk","csstree-validator","@types/http-server","@types/cli-progress", +"@antfu/eslint-config","@ant-design/compatible", +"@codecov/webpack-plugin","@types/isomorphic-fetch","dumi-plugin-color-chunk","@microflash/rehype-figure", +"@rc-component/virtual-list","circular-dependency-plugin","@codesandbox/sandpack-react","@eslint-react/eslint-plugin", +"@ant-design/happy-work-theme","cypress-image-diff-html-report","@ianvs/prettier-plugin-sort-imports", +"remark-lint-no-undefined-references","@madccc/duplicate-package-checker-webpack-plugin", +"@api-components/api-console-ext-comm","@api-components/api-documentation","@api-components/api-summary", +"@polymer/app-layout","@polymer/iron-media-query","@polymer/paper-toast","@anypoint-web-components/anypoint-menu-mixin", +"@open-wc/building-rollup","@polymer/iron-test-helpers","@web/test-runner-visual-regression","amf-client-js", +"rollup-plugin-cpy","unzipper","raml","amf","diff-match-patch","expose-loader","klaw-sync","eslint-config-recommended", +"restful","apidoc-light","portable","programmatic","cli-app","api-documentation","markdown-documentation","http2", +"apple","push","push notifications","iOS","apns","notifications","apollo-cache","apollo-utilities","ts-invariant", +"@types/zen-observable","symbol-observable","zen-observable","jsnext","relay","zen-observable-ts","@types/graphql", +"apollo-link-http-common","apollo-fetch","object-to-querystring","cracks","root","node_modules","@colors/colors", +"appium-adb", +"appium-chromedriver","asyncbox","io.appium.settings","portscanner","teen_process","@appium/eslint-config-appium-ts", +"@appium/tsconfig","@types/bluebird","@types/portscanner","appium","mobile testing","@azure/identity","@azure/core-auth", +"@azure/functions","diagnostic-channel","@opentelemetry/core","@azure/functions-old","@opentelemetry/api-logs", +"@opentelemetry/sdk-logs","@opentelemetry/resources","@opentelemetry/sdk-metrics","@azure/monitor-opentelemetry", +"@opentelemetry/sdk-trace-base","@opentelemetry/sdk-trace-node","diagnostic-channel-publishers", +"@opentelemetry/otlp-exporter-base","@opentelemetry/semantic-conventions","@azure/monitor-opentelemetry-exporter", +"@opentelemetry/exporter-logs-otlp-http","@opentelemetry/exporter-trace-otlp-http", +"@opentelemetry/exporter-metrics-otlp-http","@opentelemetry/exporter-metrics-otlp-proto", +"@azure/opentelemetry-instrumentation-azure-sdk","@types/long","@types/microsoft__typescript-etw","exception monitoring", +"request monitoring","performance monitoring","application insights","microsoft","azure","cloud","tracing","telemetry", +"analytics","apm","@aws-sdk/credential-provider-node","@aws-sdk/hash-node","@aws-sdk/protocol-http", +"@aws-sdk/signature-v4","@aws-sdk/types","aws-xray-sdk-core","@aws-amplify/amplify-appsync-simulator","constructs", +"prettier-plugin-organize-attributes","projen","appsync","aws","gql","lambda","xray","archiver-utils","buffer-crc32", +"readdir-glob", +"zip-stream","archiver-jsdoc-theme","stream-bench","stream","@babel/plugin-syntax-class-properties","option", +"define-properties","es-abstract","es-shim-unscopables","@es-shims/api","@ljharb/eslint-config","encoding", +"has-strict-mode","Array.prototype.flatMap","flatMap","array","ESnext","flatten","Array.prototype.flatten","es-shim API", +"arrayify","convert","value","ensure","is-nan","object-is","array-fill","fn.name","is-buffer","propget","pruddy-error", +"assertion","asserts","shouldjs","unit testing","babel-minify","rollup-plugin-npm","babel-preset-es2017", +"native-promise-only","eslint-plugin-prefer-arrow","babel-plugin-syntax-async-generators","callback","@types/tap", +"await","listen","then-sleep","@babel/node","@pika/pack","pika-plugin-build-web-babel","pika-plugin-ts-types","validate", +"libnpx","node-cleanup","npm-lockfile","find-package-json","audit","lockfile","shrinkwrap","import-cwd", +"parse-github-url","babel-plugin-rewire","auto","automatic","changelog", +"change","git","commit","commits","detective","detective-es6","is-builtin-module","package-json","sync-exec","package", +"fraction.js","prefix","@vercel/nft","arrgv","callsites","cbor","chunkd","ci-parallel-vars","code-excerpt", +"common-path-prefix","concordance","currently-unhandled","emittery","ignore-by-default","matcher","memoize", +"package-config","resolve-cwd","supertap","temp-dir","@sindresorhus/tsconfig","🦄","concurrent","parallel","fast", +"promises","function","generators","yield","observable","observables","webpack-log","empty-module","ps-node","loader", +"ieee754","jmespath","hash-test-vectors","insert-module-globals","amazon","ec2","simpledb","s3","sqs","ses","sns", +"route53","rds","elasticache","cloudfront","fps","cloudformation","cloudwatch","dynamodb", +"iam","swf","autoscaling","cloudsearch","elb","loadbalancing","emr","mapreduce","importexport","storagegateway", +"workflow","vpc","beanstalk","glacier","kinesis","cloudtrail","waf","memoizee","@deque/dot","colorjs.io","typedarray", +"emoji-regex","grunt-babel","revalidator","sri-toolbox","serve-handler","grunt-bytesize","weakmap-polyfill", +"clean-jsdoc-theme","css-selector-parser","@axe-core/webdriverjs","conventional-commits-parser", +"eslint-plugin-mocha-no-only","Accessibility","axe","proxy-from-env","dev-null","formdata-node","stream-throttle", +"karma-jasmine-ajax","string-replace-async","abortcontroller-polyfill","rollup-plugin-bundle-size", +"@rollup/plugin-multi-entry","rollup-plugin-auto-external","istanbul-instrumenter-loader","ajax","browserify-mime", +"json-edm-parser","md5.js","batchflow","factor-bundle","karma-env-preprocessor","storage","output-file-sync","v8flags", +"babel-code-frame","babel-helpers","babel-messages","private","babel-helper-transform-fixture-test-runner", +"eslint-config-babel","trim-right","try-resolve", +"babel-preset-jest","babel-plugin-transform-export-extensions","babel-preset-power-assert", +"conventional-github-releaser","module.exports","airbnb-js-shims","babel-plugin-transform-replace-object-assign", +"dynamic","import","@umijs/test","babel-preset-umi","react-toolbox","@istanbuljs/load-nyc-config", +"istanbul-lib-instrument","test-exclude","pmock","instrumentation","require-package-name", +"@babel/plugin-proposal-function-bind","@babel/preset-stage-0","lodash-bound","lodash-compat","cherry-pick", +"find-babel-config","prettier-eslint-cli","resolver","alias","rewrite","rename","mapping","babel-plugin-tester", +"babel-helper-remap-async-to-generator","babel-plugin-syntax-async-functions","babel-helper-function-name", +"babel-plugin-syntax-class-properties","babel-plugin-syntax-decorators","es7","babel-plugin-transform-strict-mode", +"babel-plugin-syntax-object-rest-spread","babel-helper-builder-react-jsx","@babel/preset-flow", +"babel-plugin-flow-react-proptypes","pkgfiles","minification","propTypes","regenerator-transform", +"@babel/plugin-proposal-numeric-separator","@babel/plugin-transform-property-mutators", +"@babel/plugin-proposal-optional-catch-binding","@babel/plugin-proposal-nullish-coalescing-operator", +"babel-plugin-check-es2015-constants","babel-plugin-syntax-trailing-function-commas", +"babel-plugin-transform-es2015-arrow-functions","babel-plugin-transform-es2015-block-scoped-functions", +"babel-plugin-transform-es2015-classes","babel-plugin-transform-es2015-computed-properties", +"babel-plugin-transform-es2015-destructuring","babel-plugin-transform-es2015-duplicate-keys", +"babel-plugin-transform-es2015-for-of","babel-plugin-transform-es2015-function-name", +"babel-plugin-transform-es2015-literals","babel-plugin-transform-es2015-modules-amd", +"babel-plugin-transform-es2015-modules-systemjs","babel-plugin-transform-es2015-modules-umd", +"babel-plugin-transform-es2015-object-super","babel-plugin-transform-es2015-parameters", +"babel-plugin-transform-es2015-shorthand-properties","babel-plugin-transform-es2015-spread", +"babel-plugin-transform-es2015-sticky-regex","babel-plugin-transform-es2015-typeof-symbol", +"babel-plugin-transform-es2015-unicode-regex","babel-plugin-transform-exponentiation-operator","electron-to-chromium", +"babel-preset-flow","babel-plugin-transform-react-display-name","babel-plugin-transform-react-jsx-source", +"babel-plugin-transform-react-jsx-self","@babel/plugin-proposal-private-methods","babel-plugin-transform-do-expressions", +"babel-plugin-transform-function-bind","babel-plugin-transform-class-constructor-call", +"babel-plugin-transform-decorators","babel-plugin-transform-async-generator-functions","home-or-tmp","esutils", +"to-fast-properties","lodash.zipobject","babel-plugin-transform-node-env-inline", +"babel-plugin-transform-flow-strip-types","unicode-9.0.0","model","view","@purtuga/esm-webpack-plugin", +"@types/validator","@web/test-runner-browserstack","@web/test-runner-junit-reporter","otpauth","backend-as-a-service", +"grunt-template","codec","decoder","encoder","base64","basic","auth","authorization","basicauth","sorted-object", +"ministructure","sinatra","orange sms","node-gyp-build","prebuildify","encryption","crypt","hash","esm2umd", +"pomelo-logger","di","IoC","AOP","dependency","injection","consistent","hot reload","front-backend","sharable codes", +"dependency injection", +"asynchronous script loading","magic, self-described javaScript objects","beautify","art-near-room-catch","blanket-line", +"born-greatly-explain3","bring-water-silence","brush-bigger-afternoon0","column-wore-meet-war","compare-breeze-mad2", +"did-straight-sister-sail","excitement-tonight-dead","gain-pleasant-prepare","industrial-public-immediately-until", +"is-straight-web3-attack","known-wet-thirty-gave","listen-private-thee6","mainly-cent","mountain-quarter-sit8", +"mouse-bat-web3-present","needs-supper-anything","percent-impossible-score","rocket-location-calm-valley", +"seldom-fire-web3-running","shade-swim-shells1","spider-melted-chemical","stretch-onto-driver7","tiny-dream-supply5", +"tool-invented-girl-jungle","we-hunt-process","web3-automobile7","whether-dangerous","ansicolors","ignorepatterns", +"response-stream","script-injector","find-global-packages","jsl","dotpathlookup","simplehttpserver","platform","docdown", +"qunit-extras","performance","speed","@beyond-js/specifier-parser","@beyond-js/fs","@beyond-js/bee","ansi-to-html", +"concat-with-sourcemaps","json-format","resolve-package-path","uimport","global-modules","universal", +"universal javascript","universal typescript","isomorphic","isomorphic javascript","isomorphic typescript","sigle page", +"spa","modular development","microfrontend", +"micro frontend","microservices","micro services","hmr","hot module replacement","ssr","server side rendering", +"typescript packager","JAMStack","real time","react framework","ssr react framework","vue framework","ssr vue framework", +"svelte framework","ssr svelte framework","websockets","check-types","hoopy","tryer","please-release-me","spooks", +"streamify","stringify","serialise","serialize","write","asynchronous","arbitrary","precision","arithmetic","big", +"number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum","file-uri-to-path","addon","gyp","c", +"c++","@noble/hashes","@antv/component","@antv/g2","@antv/g2plot","@antv/util","d3-color","react-reconciler", +"@antv/data-set","@babel/preset-es2015","@storybook/addon-info","@storybook/addon-knobs","@storybook/addon-options", +"@umijs/fabric","@welldone-software/why-did-you-render","aphrodite","babel-plugin-inline-react-svg", +"babel-plugin-inline-svg","bx-jest-electron","declaration-bundler-webpack-plugin", +"git-directory-deploy","imports-loader","moment-jalaali","react-with-styles-interface-aphrodite", +"react-with-styles-interface-css-compiler","snapshot-diff","g2","@types/readable-stream","buffers","awesomesauce", +"falafel","foreach","coffee-react","uglify-save-license","curses","tui","tput","terminfo","termcap","ansi-term", +"drawille-canvas-blessed-contrib","map-canvas","marked-terminal","memory-streams","picture-tuber","sparkline", +"term-canvas","x256","@types/blessed","block","loop","kefir","baconjs","promises-a","promises-aplus","deferred", +"deferreds","future","flow control","dsl","fluent interface","standardx","BN","Big number","BigNum","Modulo", +"Montgomery","create-error","bookshelf-jsdoc-theme","postgresql","datamapper","active record","error","@types/mime", +"@astrojs/mdx","@astrojs/check","@astrojs/prism","@astrojs/sitemap","astro-auto-import","prettier-plugin-astro", +"@astrojs/markdown-remark","mincer","eyeglass-module","box", +"boxes","border","quote-stream","static-module","browserify-transform","readFileSync","asset","heimdalljs","array-equal", +"fs-tree-diff","broccoli-plugin","mocha-eslint","release-it-lerna-changelog","merge-trees","broccoli-fixture","copy", +"broccoli-fixturify","multidep","ts-docs-gen","tslint-plugin-prettier","browser-sync-client","browser-sync-ui", +"bs-recipes","dev-ip","easy-extender","eazy-logger","resp-modifier","bs-snippet-injector","generate-changelog", +"browser sync","live reload","sync","subarg","defined","parents","deps-sort","duplexer2","htmlescape","module-deps", +"stream-http","browser-pack","syntax-error","os-browserify","shasum-object","vm-browserify","domain-browser", +"mkdirp-classic","string_decoder","tty-browserify","browser-resolve","browserify-zlib","querystring-es3", +"https-browserify","read-only-stream","stream-browserify","timers-browserify","console-browserify", +"cached-path-relative","constants-browserify","labeled-stream-splicer","seq","isstream","coffeeify","browser-unpack", +"has-object-spread","has-template-literals","make-generator-function","commonj-esque","exposify","mothership", +"rename-function-calls","test-peer-range","transform","window","baseline-browser-mapping","node-releases", +"update-browserslist-db","browsers","target","base-x","ts-standard","base58","bitcoin","crytography","decode","decoding", +"encode","litecoin","typescript-cached-transpile","acorn-dynamic-import","acorn-jsx","regexpu-core","console-group", +"@rollup/plugin-buble","test262-stream","transpilation","compilation","esnext","es2017","arraybuffer","compatible", +"dataview","uint8array","equal","builtin","built-in","builtins","bundled","names","flexbox","@asyncapi/specs", +"@clack/prompts","@oclif/plugin-warn-if-update-available","@stoplight/yaml","jsonpathly","mergician","@types/jsonpath", +"bump","compress","mv","dtrace-provider","safe-json-stringify","ben","log4j","streamsearch","@mscdex/eslint-config", +"uploads","multipart", +"closurecompiler","lxiv","metascript","pretty-hrtime","testjs","utfx","typed array","webrtc","byte","converter", +"@bcoe/v8-coverage","foreground-child","v8-to-istanbul","chai-jest-snapshot","v8","profiler","inspector","@types/mri", +"eslint-config-rem","rollup-plugin-esbuild","@babel/plugin-syntax-typescript","@cacheable/utils","@faker-js/faker", +"@keyv/redis","@vitest/spy","cache-manager-redis-yet","cacheable","caching","cache manager","in-memory cache", +"multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper", +"call-bind-apply-helpers","es-define-property","get-intrinsic","set-function-length","es","callbind","callbound","call", +"bind","bound","call-bound","camel-case","camel","case","dash","hyphen","separator","pascalcase","pascal-case","support", +"prebuild-install","assert-rejects","graphic","graphics","pixman","cairo","image", +"pdf","case sensitive","slimerjs","scraping","loupe","pathval","check-error","assertion-error","@web/dev-server-rollup", +"chai-plugin","assertions","strategy","@debitoor/eslint-config-debitoor","objects","subset","contains","containSubset", +"deep","like","similar","includes","superset","yoctodelay","docpress","git-update-ghpages","gulp-ava","gulp-uglify-es", +"random","mersenne","name","address","dice","param-case","kebab-case","header-case","c12","confbox","convert-gitmoji", +"node-fetch-native","ofetch","pkg-types","scule","std-env","@kurkle/color","@rollup/plugin-inject", +"@types/offscreencanvas","chartjs-adapter-luxon","chartjs-adapter-moment","chartjs-test-utils","eslint-config-chartjs", +"eslint-plugin-es","karma-safari-private-launcher","rollup-plugin-swc3","charts","data","graphs","domutils","domhandler", +"cheerio-select","whatwg-mimetype","encoding-sniffer","parse5-parser-stream","parse5-htmlparser2-tree-adapter", +"@imgix/js-core", +"@octokit/graphql","@vitest/eslint-plugin","@types/whatwg-mimetype","htmlparser","scraper","xml","node-version","child", +"@better-scroll/core","add-dom-event-listener","choerodon-ui-font","css-animation","css-unit-converter","dom-closest", +"dom-lib","element-resize-event","htmlhint","insert-css","jsbarcode","jsonlint","jsonlint-mod","mutationobserver-shim", +"querystringify","quill-delta-to-html","react-beautiful-dnd","react-codemirror2","react-easy-crop", +"react-image-lightbox","react-lazy-load","react-quill","rmc-feedback","smooth-scroll-into-view-if-needed", +"@babel/plugin-transform-proto-to-assign","@types/codemirror","@types/element-resize-event","@types/faker", +"@types/insert-css","@types/jsbarcode","@types/prettier","@types/qrcode.react","@types/react-beautiful-dnd", +"@types/react-is","@types/react-slick","bisheng-plugin-choerodon-ui","bisheng-plugin-description","bisheng-plugin-react", +"bisheng-plugin-toc","eslint-tinker","intersection-observer","mark-twain","rc-queue-anim","rc-scroll-anim", +"react-infinite-scroller","react-sublime-video","scrollama","values.js","vfile-message","webpack-filter-warnings-plugin", +"choerodon","readdirp","@paulmillr/jsbt","watchFile","watcher","watching", +"file","ci","continuous","detect","@ckeditor/ckeditor5-emoji","@ckeditor/ckeditor5-style","@ckeditor/ckeditor5-mention", +"@ckeditor/ckeditor5-minimap","@ckeditor/ckeditor5-autosave","@ckeditor/ckeditor5-bookmark", +"@ckeditor/ckeditor5-language","@ckeditor/ckeditor5-highlight","@ckeditor/ckeditor5-code-block", +"@ckeditor/ckeditor5-fullscreen","@ckeditor/ckeditor5-html-embed","@ckeditor/ckeditor5-page-break", +"@ckeditor/ckeditor5-theme-lark","@ckeditor/ckeditor5-word-count","@ckeditor/ckeditor5-show-blocks", +"@ckeditor/ckeditor5-html-support","@ckeditor/ckeditor5-markdown-gfm","@ckeditor/ckeditor5-remove-format", +"@ckeditor/ckeditor5-source-editing","@ckeditor/ckeditor5-horizontal-line","@ckeditor/ckeditor5-find-and-replace", +"@ckeditor/ckeditor5-restricted-editing","@ckeditor/ckeditor5-special-characters","classname","minifier", +"@chrisblossom/eslint-config","@types/read-pkg-up","temp-sandbox","clean","parent-module","uncache","uncached", +"unrequire","delete","remove","rm","opts","parseopt","opt","argsparse","optparse","autocomplete","autocompletion","d", +"es6-iterator","timers-ext","eslint-config-medikoo","git-list-updated","github-release-from-cc-changelog", +"prettier-elastic","tad","toggle","display","show","hide","string-length","spinner","spinners","expresso", +"ansi-256-colors", +"git-rev","growl","line","tables","tabular","jest-runner-eslint","lerna-changelog","truncate","ellipsis","limit","width", +"cardinal","hyperlinker","@oclif/screen","extract-stack","object-treeify","@oclif/linewrap","natural-orderby", +"password-prompt","@types/strip-ansi","@types/ansi-styles","@types/extract-stack","@types/rollup","@yarnpkg/core", +"@yarnpkg/fslib","eslint-plugin-arca","rollup-plugin-multi-input","parsing","argument","good-listener","select", +"tiny-emitter","cut","clipboard-image","is-wayland","is64bit","powershell-utils","paste","copy-paste","pasteboard", +"pbcopy","clip","xclip","xsel","command line interface","progress bar","istanbul-harmony","coro","coroutine","mask", +"ignore-walk","teeny-request","urlgrey","code-coverage","codecov.io","@codemirror/lint","@codemirror/view", +"@codemirror/state","@codemirror/search","@codemirror/commands","@codemirror/language","@codemirror/autocomplete", +"@codemirror/buildhelper","google-closure-compiler-js", +"language","jison","wcwidth","column","exists","array-back","find-replace","typical","options","chalk-template", +"table-layout","usage","is-utf8","cachedir","find-node-modules","mocha-multi-reporters","@istanbuljs/nyc-config-babel", +"cz-conventional-changelog-default-export","conventional changelog","es2015-tag","es6-tag","heredoc","indent","indents", +"literal","multi","multiline","normalize","one","oneline","single","singleline","strings","strip","tag","tagged", +"emitter","emit","listener","observe","compressible","on-headers","gzip","deflate","brotli","buffer-from", +"ctrlc-wrapper","coveralls-next","@types/shell-quote","@hirez_io/observer-spy","eslint-plugin-import-lite", +"eslint-config-flat-gitignore","bash","sh","cson","faceoff","hjson","x2js","conf","node-config","config-node","env", +"atomically","is-safe-filename", +"xdg-basedir","settings","preferences","persist","persistent","save","rack","flash","kruptein","mongo","session", +"vite-plugin-dts","defu","is-unicode-supported","sentencer","reporter","elegant","clack","stacktrace","eco","ect","eta", +"slm","dust","jazz","just","mote","qejs","twig","vash","jqtpl","twing","hamlet","hamljs","liquor","plates","teacup", +"toffee","walrus","htmling","ractive","whiskers","tinyliquid","velocityjs","haml-coffee","liquid-node","arc-templates", +"dustjs-helpers","swig-templates","dustjs-linkedin","bracket-template","engine","rfc6266","rfc7231", +"@types/normalize-package-data","fd-package-json","normalize-package-data","@conventional-changelog/git-client", +"conventional-changelog-writer","conventional-changelog-preset-loader","conventional","tempfile","add-stream", +"compare-func", +"conventionalcommits.org","preset","inline-source-map","sourcemap","source","map","@borderless/ts-scripts","top-sites", +"cookies","sign","unsign","toggle-selection","@brettz9/node-static","selenium-server-standalone-jar","is-gzip", +"@types/glob-parent","@types/normalize-path","eslint-config-webpack","@types/serialize-javascript","transfer","move", +"noms","qr","qrcode","simple qr","npm qr JavaScript","js qr code","corcojs-qrcode-sample","logo","simple qrcode", +"cordova-common","cordova-create","cordova-lib","@cordova/eslint-config","ES3","ES5","ES6","ES7","ES2015","ES2016", +"ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6", +"ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019", +"ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set", +"WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams", +"queueMicrotask","setImmediate","structuredClone","ponyfill","parse-json","@types/parse-json", +"eslint-config-davidtheclark-node","remark-preset-davidtheclark","load","lcov-parse","log-driver","cpy","cp","files", +"file-system","quick","contents","tslog","hpagent","seenreq","http2-wrapper","@types/got","spider","crc16ccitt", +"crc16kermit","crc16modbus","crc16","crc16xmodem","crc1","crc24","crc32","crc81wire","crc8","crc8dvbs2","crcjam", +"cipher-base","ripemd160","sha.js","async-traverse-tree","css-url-parser","data-uri-to-buffer","group-args", +"inline-critical","oust","penthouse","postcss-discard","postcss-image-inliner","postcss-url","normalize-newline", +"stream-array","optimization","@fast-check/jest","@insurgent/commitlint-config", +"@insurgent/conventional-changelog-preset", +"@semantic-release/commit-analyzer","@semantic-release/npm","@semantic-release/release-notes-generator","@swc/jest", +"node cron","node-cron","schedule","cronjob","cron job","timer","crontab","@prantlf/jsonlint","@prettier/plugin-xml", +"@secretlint/secretlint-rule-github","@secretlint/secretlint-rule-npm","@stryker-mutator/core", +"@stryker-mutator/tap-runner","@types/bun","eslint-plugin-array-func","eslint-plugin-no-unsanitized","jsr","metalint", +"secretlint","yaml-lint","@cropper/elements","@cropper/utils","crop","zoom","rotate","scale","cropper","cropper.js", +"image-cropping","image-viewing","image-processing","cropper-element","custom-element","web-component", +"@epic-web/invariant","@epic-web/config","@types/cross-spawn","zshy","cross-environment","environment variable", +"windows","cross-platform","rollup-plugin-esbuild-minify","path-key","shebang-command","babel-preset-moxy", +"eslint-config-moxy","spawn","spawnSync","path-ext","shebang","cmd","execute","browserify-cipher","browserify-sign", +"create-ecdh","create-hmac","diffie-hellman","hash-base","pbkdf2", +"public-encrypt","randomfill","pseudorandombytes","security","Hash","MD5","SHA1","SHA-1","SHA256","SHA-256","RC4", +"Rabbit","AES","DES","PBKDF2","HMAC","OFB","CFB","CTR","CBC","Base64","Base64url","eslint-config-groupon","nlm", +"@cspell/cspell-json-reporter","@cspell/cspell-performance-monitor","@cspell/cspell-pipe","@cspell/cspell-types", +"@cspell/cspell-worker","@cspell/dynamic-import","@cspell/url","cspell-config-lib","cspell-dictionary", +"cspell-gitignore","cspell-glob","cspell-io","cspell-lib","fast-json-stable-stringify","flatted","spell","checker", +"spelling","spell checker","spelling checker","lint","source-map-resolve","@mdn/browser-compat-data", +"@rollup/plugin-dynamic-import-vars","sorter","property","order","@swc-node/register","changelog-verify", +"eslint-config-nitpick","github-release-from-changelog","isomorphic-unfetch","rolldown-plugin-dts","version-changelog", +"write-json-file","functions","postcss-modules-extract-imports","postcss-modules-scope", +"@webpack-contrib/eslint-config-webpack","@swc/css", +"@parcel/css","@types/csso","@types/clean-css","cssnano-preset-simple","webpack-plugin","minimize","minimizer", +"optimize","optimizer","boolbase","@types/boolbase","cheerio-soupselect","sizzle","clap","json-to-ast","walker","lexer", +"web-features","features","stages","identifier","cssnano-preset-default","cssnano-preset-advanced","cssnano-preset-lite", +"optimise","optimisation","@asamuzakjp/css-color","@csstools/css-syntax-patches-for-csstree","@domenic/eslint-config", +"@webref/css","CSS","CSSStyleDeclaration","StyleSheet","@tsconfig/node24","@types/chokidar","@types/turndown","csrf", +"tokens","tsv","generation","object","csv-spectrum","pad","@types/lodash.set","csv parser","parse csv","csv to json", +"csv convert","tojson","convert csv to json","csv-json","duration","stack-chain","is-generator","stacktrace-js", +"serialize-error","cucumber-expressions","cucumber-tag-expressions","ansi-html","eslint-plugin-testcafe","riteway", +"updtr","guid","id", +"uid","unique id","hasha","ospath","blob-util","executable","@cypress/xvfb","@types/sizzle","@cypress/request", +"request-progress","cypress.io","mocks","spies","stubs","longest","conventional-commit-types","d3-dsv","d3-geo", +"d3-axis","d3-drag","d3-ease","d3-path","d3-time","d3-zoom","d3-brush","d3-chord","d3-fetch","d3-force","d3-timer", +"d3-format","d3-random","d3-contour","d3-polygon","d3-delaunay","d3-dispatch","d3-quadtree","d3-hierarchy", +"d3-transition","d3-interpolate","d3-time-format","d3-scale-chromatic","topojson-client","@observablehq/runtime", +"visualization","internmap","d3-module","histogram","bisect","shuffle","statistics","search","sort","selection", +"data-join","dable","tailwind css","tailwind react","tailwind vue","tailwind plugin","tailwind component", +"tailwind next","tailwind nuxt","tailwind svelte","tailwind css plugin", +"tailwind astro","tailwind laravel","tailwind rails","laravel","nuxt","css library","reverse","arguments","binary", +"opposite","invert","switch","construct","@captemulation/get-parameter-names","json-schema-faker-bb","request-debug", +"rss-parser","swagger-express-middleware","bun","cloc","js-fns","jscodeshift","@date-fns/tz","@date-fns/utc", +"@date-fns/docs","@size-limit/esbuild","typedoc-plugin-missing-exports","babel-plugin-replace-import-extension", +"gzip-size-cli","require-directory","sleep","async wrapper","debouncing","throttle","invoke","limited","interval","rate", +"batch","rate-limit","debugger","decamelcase","lowercase","decompress-tar","decompress-tarbz2","decompress-targz", +"decompress-unzip","strip-dirs","is-jpg","bz2","bzip2","extract","tar.bz","tar.gz","@types/babel-plugin-macros", +"console-fail-test","eslint-plugin-deprecation","eslint-plugin-no-only-tests","eslint-plugin-perfectionist", +"eslint-plugin-yml","jsonc-eslint-parser","npm-package-json-lint-config-default","prettier-plugin-curly", +"should-semantic-release", +"yaml-eslint-parser","multi-line string","duplicates","dupes","remove duplicates","distinct","deduplicate", +"deduplication","is-obj","obj","assign","recursive","key","keys","values","prop","json-ptr","difference","compare", +"change-tracking","kewlr","simple-assert","lcov-result-merger","eslint-config-strict","@js-temporal/polyfill", +"eslint-plugin-filenames","chai util","deep equal","object equal","array-buffer-byte-length","es-get-iterator", +"is-arguments","is-array-buffer","is-date-object","is-regex","is-shared-array-buffer","regexp.prototype.flags", +"side-channel","which-boxed-primitive","which-collection","which-typed-array","available-typed-arrays","has-proto", +"has-typed-arrays","equality","is-mergeable-object","jsmd","is-path-cwd","is-path-inside","presentable-error","folders", +"directories","destroy","trash","unlink","cleaning","cleanup","rmrf","rmdir","gulpfriendly","folder","directory", +"filesystem","temp-write", +"random-int","unlimited-timeout","in-range","time-span","defer","stall","timeout","settimeout","tick","threshold", +"range","callsite","deps-regex","is-core-module","@vue/compiler-sfc","patch-version","check","unused","packages", +"deprecate","deprecated","is-relative","read-package-json","detective-cjs","indentation","infer","identify","space", +"tab","@eggjs/tsconfig","egg-bin","eslint-config-egg","mm","tshy-after","port","jsdiff","patch","@profoundlogic/hogan", +"@eslint/json","@types/hogan.js","@types/nopt","all-contributors-cli","handlebars-loader","image-webpack-loader", +"is-ci-cli","side","side-by-side","line-by-line","character","difftohtml","colorized","data-structure-typed", +"eslint-import-resolver-alias","Directed Graph","directed graph","directedgraph","directed-graph","directed","Directed", +"digraph","java script","JavaScript","type script","vertex", +"Vertex","edge","Edge","graph theory","Graph Theory","graph structure","weighted","Weighted","unweighted","Unweighted", +"adjacency","Adjacency","connectivity","cycle","acyclic","traversal","depth","Depth","breadth","Breadth","first", +"depth first search","dfs","DFS","breadth first search","breadth-first search","bfs","BFS","graph algorithms", +"graph representation","connectivity matrix","adjacency list","adjacency matrix","matrix","node degree","sparse graph", +"dense graph","directed cycle","directed acyclic graph","DAG","topologic","topological","sorting", +"strongly connected components","weighted digraph","directed weighted edge","structure","structures","data structure", +"datastructure","data-structure","data structures","datastructures","data-structures","in data structures", +"in data structure","DataStructure","DataStructures","iterative","Node.js","CommonJS","UMD","esmodule","java.util", +"c++ stl","c++ std","Python collections","System.Collections.Generic","STL","stl","collection","Collection", +"Collections","insertion","deletion","OOP","@discordjs/voice","backend-manager","productivity","@discordjs/ws", +"lodash.snakecase","@discordjs/builders","@discordjs/formatters","@discordjs/docgen","bot","cache-point", +"common-sequence","file-set","walk-back","dmd-plugin-example","jsdoc2md","agnostic","dnd","drag","drop","dnode-protocol", +"jsonify","weak","rpc","callbacks","doc-detective-common","doc-detective-resolver","@ffmpeg-installer/ffmpeg", +"@puppeteer/browsers","appium-chromium-driver","appium-geckodriver","appium-safari-driver","geckodriver","jq-web", +"json-schema-faker","posthog-node","literate","mecano","parameters","@balena/dockerignore","@grpc/grpc-js", +"@grpc/proto-loader","docker-modem","docker","docker.io","@bevry/pluginloader","ambi","ansistyles","bal-util", +"caterpillar","docmatter","docpad-baseplugin","eachr", +"envfile","errlop","event-emitter-grouped","extendr","extract-opts","ignorefs","istextorbinary","jschardet", +"lazy-require","progress-title","query-engine","rfc-log-levels","safefs","safeps","scandirectory","taskgroup", +"typechecker","unbounded","watchr","@bevry/update-contributors","assert-helpers","coffeelint","kava","projectz", +"valid-directory","build","build and deployment","cms","compile","content management system","dev","dms", +"document management system","language agnostic","render","templating","web development","dependency-cruiser","dpdm", +"docsify.js","tabs","@textlint/markdown-to-ast","anchor-markdown-header","update-section","bitbucket","gitlab","ghost", +"doctrine-temporary-fork","konan","mdast-util-inject","micromark-util-character","parse-filepath", +"remark-reference-links","unist-builder","vfile-reporter","vfile-sort","chdir","documentation-schema","jsdoc3", +"big-integer","binary-search-bounds","int64-buffer","priorityqueuejs","semaphore", +"tunnel","cosmosdb","cosmos db","document database","nosql","database","crowdin-cli","imagemin-svgo","tree-node-cli", +"truncate-html","imagemin-optipng","imagemin-gifsicle","imagemin-jpegtran","filepath","glob-promise","websites", +"open source","autocomplete.js","lunr-languages","to-vfile","unist-util-is","offline-search","@4c/rollout", +"@4c/tsconfig","@react-bootstrap/babel-preset","@react-bootstrap/eslint-config", +"@react-bootstrap/eslint-config-typescript","karma-html2js-preprocessor","simulant","cross-browser","height","class", +"classlist","domelementtype","raster","png","@types/trusted-types","lodash.sample","qunit-tap", +"rollup-plugin-includepaths","mathml","secure","sanitizer","sanitize","filter","purify",".env","expand","interpolation", +"substitution","ext-name","filenamify","archive-type","is-zip","random-buffer","git-clone","repo","repository","tarball", +"import-from","parse-cmd-args","simple-update-notifier","ts-jest-resolver","dox", +"spawn-please","@types/temp","alex","babel-preset-fbjs","eslint-config-fbjs","fbjs-scripts","gulp-derequire", +"stats-webpack-plugin","webpack-stream","draftjs","richtext","just-extend","@parcel/transformer-inline-string", +"@parcel/transformer-sass","cypress-file-upload","karma-sinon-chai","parcel","dragndrop","drag and drop","file upload", +"upload","tsutils","dts-critic","@definitelytyped/utils","@definitelytyped/header-parser", +"@definitelytyped/typescript-versions","@types/strip-json-comments","@types/json-stable-stringify","proper-lockfile", +"db","elementscript","dw-neit-colors","dw-neit-cssinjs","dw-neit-cssinjs-utils","dw-neit-icons", +"dw-neit-ant-design-react-slick","dw-neit-rc-component-color-picker","dw-neit-rc-component-mutate-observer", +"dw-neit-rc-component-qrcode","dw-neit-rc-component-tour","dw-neit-rc-component-trigger","dw-neit-rc-cascader", +"dw-neit-rc-checkbox","dw-neit-rc-collapse","dw-neit-rc-dialog","dw-neit-rc-drawer","dw-neit-rc-dropdown", +"dw-neit-rc-field-form","dw-neit-rc-image","dw-neit-rc-input","dw-neit-rc-input-number","dw-neit-rc-mentions", +"dw-neit-rc-menu","dw-neit-rc-motion","dw-neit-rc-notification","dw-neit-rc-pagination","dw-neit-rc-picker", +"dw-neit-rc-progress","dw-neit-rc-rate","dw-neit-rc-resize-observer","dw-neit-rc-segmented","dw-neit-rc-select", +"dw-neit-rc-slider","dw-neit-rc-steps", +"dw-neit-rc-switch","dw-neit-rc-tabs","dw-neit-rc-textarea","dw-neit-rc-tree","dw-neit-rc-util","dw-neit-rc-table", +"dw-neit-rc-tooltip","dw-neit-rc-tree-select","dw-neit-rc-upload","@antv/g6","@types/pixelmatch","eslint-plugin-lodash", +"@eslint/core","control flow","iteration","zrender","@lang/rollup-plugin-dts","data-visualization","charting-library", +"apache","data-viz","editorconfig","gulp-exclude-gitignore","gulp-reporter","gulp-tap","linez","os-locale", +"@types/get-stream","@types/through2","@types/vinyl","@types/vinyl-fs","fix","enforce","gulpplugin","agentkeepalive", +"aliasify","backport","grunt-run","null-loader","through2-map","grunt-webpack","grunt-contrib-compress","@electron/get", +"lazy-val","dmg-builder","builder-util","app-builder-lib","builder-util-runtime","installer","packager","pack","nsis", +"dmg","pkg","msi","exe","setup","Windows","OS X","MacOS","Mac","appx","snap","flatpak", +"@electron/asar","@electron/notarize","@electron/osx-sign","@electron/universal","cross-spawn-windows-exe","galactus", +"get-package-info","junk","parse-author","rcedit","bundler","electron-download","home-path","wonderful-fetch", +"batch-processor","grunt-banner","@vue/component-compiler-utils","algoliasearch","babel-plugin-transform-vue-jsx", +"babel-regenerator-runtime","cp-cli","eslint-config-elemefe","eslint-plugin-json","file-save","gulp-cssmin", +"launch-editor-middleware","markdown-it-chain","select-version-cli","transliteration","uppercamelcase", +"vue-template-es2015-compiler","eleme","brorand","hash.js","hmac-drbg","minimalistic-assert","minimalistic-crypto-utils", +"grunt-mocha-istanbul","EC","Elliptic","curve","Cryptography","@ladjs/consolidate","@ladjs/i18n","get-paths","juice", +"nodemailer-sendgrid","preview-email","email","lad","lass","mailchimp","mailgun","mandrill","moonmail","postmark", +"sendgrid","@types/mailparser","@types/smtp-server","mailparser","smtp-server","@ember-tooling/blueprint-blueprint", +"@ember-tooling/blueprint-model","@ember/app-blueprint", +"@pnpm/find-workspace-dir","babel-remove-types","broccoli-concat","broccoli-config-loader","broccoli-config-replace", +"broccoli-debug","broccoli-funnel-reducer","broccoli-slow-trees","broccoli-source","broccoli-stew", +"calculate-cache-key-for-tree","capture-exit","clean-base-url","console-ui","content-tag","core-object","dag-map", +"ember-cli-is-package-missing","ember-cli-preprocess-registry","ensure-posix-path","find-yarn-workspace-root", +"heimdalljs-fs-monitor","heimdalljs-graph","heimdalljs-logger","is-git-url","is-language-code","markdown-it-terminal", +"p-defer","promise-map-series","promise.hash.helper","quick-temp","safe-stable-stringify","sane","sort-package-json", +"symlink-or-copy","tree-sync","watch-detector","yam","@ember-tooling/classic-build-addon-blueprint", +"@ember-tooling/classic-build-app-blueprint","chai-files","ember-cli-blueprint-test-helpers", +"ember-cli-internal-test-helpers","eslint-plugin-chai-expect","fixturify-project","release-plan","tmp-promise", +"yuidoc-ember-cli-theme","yuidocjs","app-kit","ember","ember-app-kit","ember.js","amd-name-resolver", +"babel-plugin-debug-macros","babel-plugin-ember-data-packages-polyfill","babel-plugin-ember-modules-api-polyfill", +"broccoli-babel-transpiler","ember-cli-babel-plugin-helpers","ember-cli-version-checker","@ember/optional-features", +"@ember/string","@ember/test-helpers","@glimmer/component", +"@glimmer/tracking","code-equality-assertions","ember-auto-import","ember-cli-dependency-checker", +"ember-cli-inject-live-reload","ember-load-initializers","ember-qunit","ember-resolver","ember-source", +"ember-source-channel-url","eslint-plugin-ember","loader.js","ember-addon","@ember/edition-utils", +"babel-plugin-ember-template-compilation","broccoli-persistent-filter","js-string-escape","@embroider/test-setup", +"ember-cli-clean-css","ember-styleguide","ember-template-lint","ember-try","eslint-plugin-qunit","@emmetio/abbreviation", +"@emmetio/css-abbreviation","snippets","coding","streams","finish","close","end","es-errors","safe-regex-test", +"entitify","entity","enum","enumeration","datatype","type","github-release-cli","yamlify-object","info","issues", +"reporting","diagnostics","array.prototype.flat","function.prototype.name","has","html-element-map","is-boolean-object", +"is-callable","is-number-object","is-string","is-subset","lodash.escape","object.values","rst-selector-parser", +"string.prototype.trim","shallow rendering","shallowRender","test utils","assertion helpers","airbnb-prop-types", +"object.fromentries", +"codependence","oxlint","pastoralist","check for es6","check for modules","es check","es matching","es version", +"ecmascript check","ecmascript matching","ecmascript version","js version","js version check","js version matching", +"test js version","test ecmascript version","has-bigints","intl-fallback-symbol","make-arrow-function", +"make-async-function","@ljharb/tsconfig","@types/array.prototype.flatmap","@types/call-bind","@types/foreach", +"@types/has-bigints","@types/has-symbols","@types/isarray","@types/make-arrow-function","@types/make-async-function", +"@types/make-generator-function","@types/object.assign","@types/reflect.ownkeys","@types/tape","reflect.ownkeys", +"symbol.prototype.description","well-known-symbols","fixture","fixtures","es6-symbol","esniff","next-tick", +"plain-promise","ecmascript5","ecmascript6","es5","extensions","ext","addons","extras","utilities","es5 shim","json3", +"broccoli-rollup","git-repo-version","broccoli-watchify","broccoli-uglify-js","promises-aplus-tests-phantom", +"babel6-plugin-strip-class-callcheck","babel-plugin-transform-es2015-constants","futures","promisify", +"promises-es6-tests","setPrototypeOf","set", +"__proto__","regular","expression","special","characters","bower-registry-client","commonjs-everywhere", +"@eslint/config-array","@eslint/config-helpers","@eslint/plugin-kit","@humanfs/node","@humanwhocodes/module-importer", +"@humanwhocodes/retry","esquery","file-entry-cache","imurmurhash","json-stable-stringify-without-jsonify", +"@trunkio/launcher","@types/esquery","eslint-plugin-expect-type","eslint-release","eslint-rule-extender","eslump", +"fs-teardown","metascraper","metascraper-description","metascraper-image","metascraper-logo","metascraper-logo-favicon", +"metascraper-title","node-polyfill-webpack-plugin","npm-license","yorkie","babel-tape-runner","eslint-find-rules", +"eslintconfig","airbnb","es2016","es2018","confusing-browser-globals","prettier-package-json","quality","linter", +"jslint","code style","strict","verify","hint","eslint config","eslint-config-xo-space","eslint-prettier", +"@rushstack/eslint-patch","JavaScript Standard Style","code checker","code linter","code standards","policy", +"standard style","style checker","style linter","@eslint/config-inspector","automd","eslint-typegen","obuild", +"@eslint/css","xoxo","hugs","kisses","happy","happiness","cabin","rules","@typescript/native-preview", +"eslint-import-context","is-bun-module","stable-hash-x","unrs-resolver","@webpack-contrib/defaults", +"commitlint-azure-pipelines-cli","eslint-friendly-formatter","enhance-visitors","espurify","micro-spelling-correcter", +"eslint-ava-rule-tester","eslint-rule-composer","ast-metadata-inferer","@tsconfig/node16","@types/caniuse-lite", +"@types/lodash.memoize","browserslist-config-erb","kangax","@vuepress/plugin-pwa","eslint4b","vue-eslint-editor", +"comment","directive","exported","eslint-env","eslint-enable","eslint-disable","eslint-disable-line", +"eslint-disable-next-line","@eslint-community/eslint-plugin-eslint-comments","@types/eslint-scope","@types/espree", +"@types/estraverse","eslint-config-not-an-aardvark","string-natural-compare","gitdown","eslint-config-canonical", +"flowtype","@html-eslint/eslint-plugin","@html-eslint/parser","markdown-link-check","@rtsao/scc","array-includes", +"array.prototype.findlastindex","doctrine","eslint-import-resolver-node","eslint-module-utils","object.groupby", +"string.prototype.trimend","@angular-eslint/template-parser","escope","fs-copy-file-sync","linklocal","lodash.isarray", +"npm-which", +"typescript-eslint-parser","export","@schemastore/package","babel-plugin-replace-ts-export-assignment", +"eslint-remote-tester-repositories","@es-joy/jsdoccomment","@es-joy/resolve.exports","are-docs-informative", +"object-deep-merge","parse-imports-exports","spdx-expression-parse","to-valid-identifier","@es-joy/escodegen", +"@es-joy/jsdoc-eslint-parser","@hkdobrev/run-if-changed","@types/spdx-expression-parse", +"babel-plugin-transform-import-meta","jsdoc-type-pratt-parser","json-schema-to-typescript","open-editor","replace", +"@ota-meshi/ast-token-store","diff-sequences","eslint-json-compat-utils","@changesets/changelog-github", +"@ota-meshi/eslint-plugin","@ota-meshi/site-kit-eslint-editor-vue","@types/natural-compare","env-cmd", +"eslint-plugin-eslint-rule-tester","eslint-plugin-json-schema-validator","eslint-plugin-node-dependencies", +"stylelint-config-recommended-vue","stylelint-config-standard-vue","stylelint-stylus","vite-plugin-eslint4b","jsonc", +"ast-types-flow","axobject-query","damerau-levenshtein","jsx-ast-utils","language-tags","string.prototype.includes", +"to-ast","eslint-config-eslint","eslint-plugin-es-x","ts-declaration-location","@types/globrex","ts-ignore-import", +"eslint-utils","prettier-linter-helpers","array.prototype.findlast","array.prototype.tosorted","es-iterator-helpers", +"string.prototype.repeat","@babel/plugin-syntax-do-expressions","@babel/plugin-syntax-function-bind","gfm-footnotes", +"ls-engines","hermes-parser","@types/estree-jsx","@tsconfig/strictest","refa","regexp-ast-analysis", +"scslre","@types/pako","eslint-plugin-pere","eslint-snapshot-rule-tester","mocha-chai-jest-snapshot","safe-regex", +"eslint-config-nodesecurity","nodesecurity","jsx-ast-utils-x","functional-red-black-tree","sonarjs", +"svelte-eslint-parser","@types/eslint-utils","@types/esutils","@types/less","@types/postcss-safe-parser","@types/stylus", +"svelte-i18n","sveltejs","eslint-plugin-import-x","clean-regexp","find-up-simple","regexp-tree","regjsparser", +"@lubien/fixture-beta-package","nano-spawn","node-style-text","unicorn","@veritem/eslint-config","bumpp", +"vitest eslint plugin","eslint plugin","xml-name-validator","@types/xml-name-validator", +"eslint-plugin-markdown-preferences","@types/babel__code-frame","importx","ink-testing-library","eslint-test", +"@types/esrecurse","esrecurse","eslint-plugin-requirejs","escomplex-js","everything.js","json-diff", +"karma-safaritechpreview-launcher","node-tick-processor","unicode-8.0.0","gulp-tag-version","ethereumjs-common", +"@ethereumjs/config-nyc","@ethereumjs/config-prettier","@ethereumjs/config-tsc","@ethereumjs/config-tslint", +"contributor","karma-tap","typestrict","transactions","ethereum-cryptography","rlp","@types/assert","@types/secp256k1", +"karma-typescript","os-tmpdir", +"es-lookup-scope","qs-iconv","eval","evaulate","from","pause-stream","stream-combiner","asynct","it-is","stream-spec", +"ubelt","flatmap","join","eventemitter","addEventListener","addListener","pub/sub","emits","on","publish","subscribe", +"EventEmitter","EventEmitter2","EventEmitter3","Events","reactor","eventEmitter","eventDispatcher","listeners", +"@sindresorhus/merge-streams","human-signals","strip-final-newline","yoctocolors","get-node","is-in-ci","is-running", +"log-process-errors","exec","subprocess","fork","execfile","bin","binaries","local","stdio","stderr","drain","flush", +"3584","@jest/expect-utils","@jest/get-type","eslint-plugin-mmkal","pkg-pr-new","type-check","merge-descriptors", +"pbkdf2-password","array-flatten","setprototypeof","automatically","autogenerate","autogenerator","autogenerated", +"express3","partials", +"express-unless","authn","authz","token","expressjs","helpers","hoare","cjs-mock","tRPC","RPC","express.js", +"code-generation","fully-typed","type-safe","typed-api","express-api","http-api","client-server","unit-testing", +"browser-client","web-development","web-api","@docusaurus/plugin-client-redirects","@docusaurus/preset-classic", +"sanitization","openapi3-ts","@express-zod-api/zod-plugin","@types/depd","@types/http-errors","@types/node-forge", +"camelize-ts","snakify-ts","dts-plugin","handler","documentation-tool","schema-validation","endpoint", +"openapi-specification","swagger-documentation","covert","assign-symbols","is-extendable","array-slice","benchmarked", +"for-own","kind-of","props","shallow","webpack-defaults","@types/yauzl","gulp-mustache","vinyl-transform", +"color-support","parse-node-version","console.log","timestamp","pure-rand","@fast-check/expect-type", +"@fast-check/poisoning","property-based testing","end-to-end testing","quickcheck","jscheck","jsverify", +"fuzzer","fuzz","@fast-csv/parse","@fast-csv/format","writer","csv writer","CSV","@nodelib/fs.stat","@nodelib/fs.walk", +"@nodelib/fs.macchiato","@types/merge2","@types/picomatch","bencho","eslint-config-mrmlnc","hereby","snap-shot-it", +"implementation","strnum","transformer","js2xml","json2xml","click","@fastify/ajv-compiler","@fastify/error", +"@fastify/fast-json-stringify-compiler","@fastify/proxy-addr","abstract-logging","avvio","fast-json-stringify", +"find-my-way","light-my-request","process-warning","secure-json-parse","toad-cache","@jsumners/line-reporter","ajv-i18n", +"ajv-merge-patch","autocannon","branch-comparer","fast-json-body","fluent-json-schema","h2url","markdownlint-cli2", +"@umijs/babel-preset-umi","@umijs/bundler-webpack","@umijs/case-sensitive-paths-webpack-plugin","@utoo/pack", +"@vercel/ncc","babel-plugin-styled-components","babel-plugin-transform-define","loader-runner","piscina", +"typescript-transform-paths","@types/loader-runner","@types/minimatch","array.prototype.foreach","array.prototype.join", +"array.prototype.map","array.prototype.push","array.prototype.slice","string.prototype.split","tap-parser","human", +"anything", +"protocol","fbjs-css-vars","setimmediate","@skypack/package-check","babel-plugin-minify-dead-code-elimination","in web", +"in javascript","in react","Plug & Play","web component","react components","ui component","advanced component", +"advanced feature","scanner","phonebook","voice","autofillotp","share","livelocationtracking","detectmylocation", +"colorpicker","wakelock","WhatsappShare","NetworkConnection","TextToSpeech","VoiceRecognition","SnapScanner", +"NetworkMonitor","View360","functional program","data management","@types/glob-to-regexp","dequal","glob-to-regexp", +"stub","detect-libc","fiber","thread","worker","art","banner","symbol","symbols","figure","fallback","filesaver", +"saveas","blob","@tokenizer/inflate","strtok3","token-types","uint8array-extras","@tokenizer/token","commonmark", +"noop-stream","magic","pic","picture","photo","video","exif","elf","macho", +"jpg","apng","gif","flif","xcf","cr2","cr3","orf","arw","dng","nef","rw2","tif","bmp","icns","jxr","psd","indd","rar", +"gz","7z","mp4","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","epub","mobi", +"rtf","woff","woff2","eot","ttf","otf","ttc","ico","flv","ps","xz","xpi","cab","deb","ar","rpm","Z","lz","cfb","mxf", +"mts","wasm","webassembly","blend","bpg","docx", +"pptx","3gp","j2c","jp2","jpm","jpx","mj2","aif","odt","ods","odp","heic","ics","pcap","dsf","lnk","voc","ac3","3g2", +"m4b","m4p","m4v","f4a","f4b","f4p","f4v","mie","qcp","asf","ogv","ogm","oga","spx","ogx","ape","wv","cur","nes","crx", +"ktx","dcm","mpc","arrow","shp","aac","mp1","it","s3m","xm","skp","eps","lzh","pgp","asar","chm","3mf","zst","jxl","vcf", +"jls","pst","dwg","parquet","arj", +"cpio","ace","avro","icc","fbx","vsdx","vtt","apk","drc","lz4","potx","xltx","dotx","xltm","ots","odg","otg","otp","ott", +"xlsm","docm","dotm","potm","pptm","jar","jmp","sav","ppsm","ppsx","reg","dat","size","readable","file system", +"locate-path","unicorn-magic","up","look-up","look","parent","walking","detect-file","resolve-dir","homedir-polyfill", +"@firebase/ai","@firebase/app","@firebase/auth","@firebase/util","@firebase/storage","@firebase/database", +"@firebase/analytics","@firebase/app-check","@firebase/app-types","@firebase/firestore","@firebase/functions", +"@firebase/messaging","@firebase/app-compat","@firebase/auth-compat","@firebase/performance","@firebase/data-connect", +"@firebase/installations","@firebase/remote-config","@firebase/storage-compat","@firebase/database-compat", +"@firebase/analytics-compat","@firebase/app-check-compat","@firebase/firestore-compat","@firebase/functions-compat", +"@firebase/messaging-compat","@firebase/performance-compat","@firebase/installations-compat", +"@firebase/remote-config-compat","Firebase","realtime","remote-config","@fastify/busboy","@firebase/database-types", +"farmhash-modern","google-auth-library","jwks-rsa","@firebase/api-documenter","@firebase/auth-types","@types/bcrypt", +"@types/firebase-token-generator","@types/request","@types/request-promise","firebase-token-generator", +"http-message-parser","admin","@apphosting/build","@apphosting/common","@electric-sql/pglite", +"@electric-sql/pglite-tools","@google-cloud/cloud-sql-connector","@google-cloud/pubsub","@modelcontextprotocol/sdk", +"async-lock","cjson","deep-equal-in-any-order","exegesis","exegesis-express","gaxios","libsodium-wrappers","lsofi", +"pg-gateway","pglite-2","proxy-agent","sql-formatter","stream-chain","stream-json","superstatic","triple-beam", +"universal-analytics","update-notifier-cjs","zod-to-json-schema","cdn","ssl","hosting","synchronization","alce", +"detect-newline","extend-object","@types/rimraf","matcher-collection","unflatten","nested","@types/acorn", +"rollup-plugin-livereload", +"rollup-plugin-serve","lightweight","byline","util-extend","markdox","deploy","deployment","commands","devops","ssh", +"tasks","sequential","remote","fabric","inference","wrapper","flowbite-datepicker","mini-svg-data-uri", +"@tailwindcss/cli","@tailwindcss/postcss","eslint-plugin-tailwindcss","flowbite-typography", +"prettier-plugin-tailwindcss","windicss","ui components","tailwind components","tailwind elements","tailwind library", +"tailwind sections","tailwind ui","tailwind angular","tailwind django","tailwind ruby on rails","tailwind flask","cjs", +"umd","ffmpeg","fbemitter","react-addons-test-utils","dispatcher","lolex","redirect","location","@types/is-callable", +"cliff","shush","flatiron","nssocket","forever-monitor","getopts","cli-testlab","fault tolerant","sysadmin", +"node-abort-controller","jest-circus","karton","typecheck","@types/babel-code-frame","increment","asynckit", +"combined-stream","es-set-tostringtag","browserify-istanbul","fake", +"far","is-node-modern","js-randomness-predictor","obake","dezalgo","@paralleldrive/cuid2","formdata-polyfill", +"prettier-plugin-pkgjson","@tunnckocore/prettier-config","www","ulpoad","tiny-warning","just-debounce-it","tsdx", +"react hooks","render props","higher order component","hoc","conditional","friendly","errors","check-dts","front matter", +"meta data","universalify","klaw","read-dir-files","extra","mkdir","mkdirs","create","output","release-assist", +"any-promise","thenify-all","mac","ie","@monaco-editor/loader","@sapphire/stopwatch","@sapphire/utilities", +"@snippetors/vuepress-plugin-tabs","@vuepress/plugin-google-analytics","monaco-editor","vuepress-plugin-google-adsense2", +"bitap","socket","sublime","sublime text","globule","grunt-benchmark","yeoman-test","yeoman-assert","insight", +"restangular","ui-router","foundation","traceur","haml","git-config","find-git-root","@merkle-open/eslint-config", +"nitro","modular","pool", +"pooling","inject-markdown","ts2mjs","iterator","iterators","iterable","reduce","@werkzeugkiste/eslint-config", +"@werkzeugkiste/release-config","install-deps-postmerge","semantic-release-conventional-commits","@cfware/lint", +"@cfware/nyc","if-ver","libtap","finder","free","available","connection","tcp","scan","preferred","chosen","std", +"concat","@sec-ant/readable-stream","onetime","precise-now","get","consume","readablestream","resolve-pkg-maps", +"tsconfig","tsconfig.json","eslint-config-bevry","make-deno-edition","deno","deno-edition","deno-entry","denoland", +"es2022","export-default","ifconfig","ipconfig","mac-address","typed","email-addresses","dir-compare", +"eslint-config-tschaub","lodash.clone","manage-path","opt-cli","spawn-command","chai-string","eslint-config-kentcdodds", +"travis-after-all","hook","@primer/octicons","@primer/primitives","@rollup/plugin-html","minipass","path-scurry", +"dirname","wildcard", +"min-document","is-identifier","identifiers","environments","glob-stream","all","fnmatch","globbing","globs","multiple", +"paths","wildcards","gitignore","array-series","array-parallel","magick","graphicsmagick","gfsl", +"eslint-config-standard-with-typescript","msmc","mc","minecraft","launcher","java","java edition","arm","arm-support", +"forge","instances-management","instances","mod","mods","mc-mod","mc-mods","modpack","modpack-api","extendable","nbt", +"jarmods","skin fix","ky","eslint-plugin-no-floating-promise","varlock","google spreadsheets","google sheets", +"spreadsheet","spreadsheets","sheets","gdata","drive","google docs","google drive","googleapis-common","@types/execa", +"@types/mv","@types/ncp","@types/nunjucks","@types/url-template","@types/yargs-parser","js-green-licenses","jsdoc-fresh", +"jsdoc-region-tag","linkinator","pdfmake", +"google apis","client library","@sindresorhus/is","byte-counter","cacheable-lookup","cacheable-request", +"decompress-response","form-data-encoder","lowercase-keys","p-cancelable","responselike","@hapi/bourne","@types/pem", +"chunk-data","create-cert","create-test-server","pem","slow-stream","then-busboy","uri","curl","wget","zstd","zstandard", +"requests","human-friendly","sassdoc","gulp-cli","sass-color-helpers","govuk-prototype-kit","govuk","reading","retries", +"handling","EMFILE","EAGAIN","EINVAL","EPERM","EACCESS","graphql-js","test-all-versions","@graphql-tools/schema", +"section-matter","strip-bom-string","ansi-green","delimiter-regex","assemble","coffee","extracting","front", +"frontmatter","matter","site","@mapbox/node-pre-gyp","@types/bytebuffer","electron-mocha","google-protobuf", +"poisson-process","grunt-legacy-log","grunt-legacy-util","grunt-known-options","difflet","temporary", +"eslint-config-grunt", +"uglify","init","make","gruntplugin","browserify-incremental","liftup","pad-stream","grunt-nodemon","simultaneous", +"perf","faster","bin-version-check","compass","connect-livereload","file-sync-cmp","csslint","maxmin","cssmin","min", +"jpeg","hooker","less-plugin-clean-css","nodeunit-x","uri-path","grunt-coveralls","grunt-istanbul", +"grunt-github-remove-all-releases","gh","release","releases","report","vow","@commitlint/travis-cli","TDD", +"grunt-continue","grunt-env","grunt-istanbul-coverage","grunt-cafe-mocha","newer","stack-parser","grunt-release", +"grunt-templates-dylang","notify","mountain lion","mavericks","linux","notify-send","preprocess","libsass", +"requestretry","sauce-tunnel","grunt-sauce-tunnel","yui","spritesheet-templates","spritesmith","url2", +"eslint-config-twolfson","foundry","foundry-release-git","foundry-release-npm","get-pixels","gmsmith","sprite", +"spritesheet", +"grunt-mocha-cli","usemin","@npm/types","@types/json5","@types/write-file-atomic","inline-fixtures", +"@guarapi/eslint-config-guarapi","@swc/register","glob-watcher","undertaker","pipeline","series","streaming", +"gulp-footer","html2js","templatecache","gulp-symdest","atom","atom-shell","prefixes","postcss-runner","lodash.chunk", +"concurrent-transform","@azure/storage-blob","delayed-stream","streamifier","rewriting","transformation","codegen", +"desugaring","bom","mark","utf-8","add","prepend","gulp-codecov.io","bump-regex","plugin-log","version","versioning", +"gulp-version","gulp-plugin","cache-swap","object.pick","change-file-extension","changed","modified","modification", +"updated","mtime","stat","cached","passthrough","minify-css","jshint-reporter-jscs","parse-import","rework", +"rework-import","rework-plugin-url","inline","slush","dest","conflict","webserver", +"csscomb","rcloader","csslint-stylish","node-version-check","from2-string","@shinnn/eslint-config-node","warnings", +"flatnest","balanced-match","include","streamfilter","to-absolute-glob","divide","separate","relative", +"pretty-remarkable","sections","prettify","jsftp","jsftp-mkdirp","ftp-test-server","gift","wrap-promise","octonode", +"read-remove-file","@shinnn/eslint-config-node-legacy","branch","any-shell-escape","strip-bom-stream","gulpgit", +"stream-to-array","nid","gulp-declare","gulp-define-module","gulp-wrap","nsdeclare","eventstream","istanbul-coveralls", +"htm","htmlmin","gulp-spawn","gulp-svg2ttf","gulp-ttf2eot","gulp-ttf2woff","gulp-ttf2woff2","gulp-svgicons2svgfont", +"metapak","streamtest","@types/gulp","metapak-nfroidure","gulp-match","ternary-stream","stream-exhaust","if","ternary", +"exclude","gulp-gm","imagemin-webp","group-array","strip-color","@commitlint/config-angular","inject","stylesheets", +"webcomponents", +"scripts","index","inline-css","lodash.groupby","istanbul-threshold-checker","isparta","unit test", +"jasmine-terminal-reporter","gulplog","has-gulplog","array-unique","capture-stream","plugins","vinyl-bufferstream", +"stream-combiner2","kew","bufferstreams","ng-annotate","develop","restart","windows notification","mac notification", +"notify-osd","easy-transform-stream","ENV","echo","ifdef","ifndef","eslint-watch","views","precompile","src", +"replacestream","modify-filename","rev-hash","rev-path","sort-keys","vinyl-file","rev","revving","revision","expire", +"assets","each-async","md5-hex","ruby","source-maps","sourcemaps","sftp","@types/fancy-log","@types/lodash.template", +"brotli-size","measure","@gulp-sourcemaps/identity-map","@gulp-sourcemaps/map-sources","debug-fabulous","hook-std", +"mississippi","source maps","strip-debug","accord","looks-same","svg2png","stack", +"vector","rwd","retina","rendering","@types/through","incremental","@types/ansi-colors","gulp-diff", +"@types/plugin-error","incremental compilation","array-each","make-error-cause","tape-catch","source-list-map", +"eslint-plugin-no-use-extend-native","uncss","useref","async-once","mock-gulp-dest","array-differ","array-uniq","beeper", +"lodash._reescape","lodash._reevaluate","lodash._reinterpolate","lodash.templatesettings","yazl","yazul","vinyl-zip", +"anymatch","proxy-middleware","vinyl-assign","pngparse","phantomjssmith","zlib","compressed","catering","deglob", +"find-file-up","find-githost","remark-autolink-references","remark-common-changelog", +"remark-lint-blockquote-indentation","remark-lint-checkbox-character-style","remark-lint-checkbox-content-indent", +"remark-lint-code-block-style","remark-lint-definition-case","remark-lint-emphasis-marker", +"remark-lint-fenced-code-marker","remark-lint-final-newline","remark-lint-hard-break-spaces", +"remark-lint-list-item-bullet-indent","remark-lint-list-item-indent","remark-lint-no-auto-link-without-protocol", +"remark-lint-no-blockquote-without-marker","remark-lint-no-duplicate-definitions", +"remark-lint-no-heading-content-indent","remark-lint-no-inline-padding","remark-lint-no-literal-urls", +"remark-lint-no-unused-definitions","remark-lint-rule-style","remark-lint-strong-marker", +"remark-lint-table-cell-padding","remark-lint-table-pipes", +"remark-lint-unordered-list-marker-style","remark-validate-links","unified-engine","vfile-reporter-shiny", +"git-pull-or-clone","fixer","changelogplease","git-tags","grunt-contrib-qunit","grunt-string-replace","jquery-hammerjs", +"gestures","neo-async","chai-diff","grunt-contrib-requirejs","ammo","shot","topo","heavy","mimos","bounce","catbox", +"podium","somever","subtext","teamwork","statehood","catbox-memory","wreck","vision","elements","flag","getopt", +"@types/core-js","get-own-property-symbols","typeof","sham","function-bind","@types/function-bind", +"@types/mock-property","hasOwnProperty","hasOwn","has-own","own","in","@ungap/structured-clone","hast-util-from-parse5", +"unist-util-position","web-namespaces","zwitch","@types/ungap__structured-clone","remark-api","hast-util","hast","unist", +"raw","aria-attributes","html-tag-names","safe","bcp-47-match","devlop","direction","selectall", +"estree-util-attach-comments", +"estree-util-is-identifier-name","mdast-util-mdx-expression","mdast-util-mdx-jsx","mdast-util-mdxjs-esm", +"esast-util-from-js","ccount","tostring","sval","solid","unist-util-find-after","estree-util-build-jsx","svg-tag-names", +"hyperscript","vdom","virtual","regexgen","sort-object","content-security-policy","cross-origin-embedder-policy", +"cross-origin-opener-policy","cross-origin-resource-policy","origin-agent-cluster","referrer-policy", +"strict-transport-security","x-content-type-options","x-dns-prefetch-control","x-download-options","x-frame-options", +"x-permitted-cross-domain-policies","x-powered-by","x-xss-protection","@vue/compiler-dom","abbrev","fast-archy", +"fast-text-table","hexo-cli","hexo-front-matter","hexo-fs","hexo-i18n","hexo-log","hexo-util","js-yaml-js-types","moize", +"titlecase","warehouse","@types/abbrev","0x","eslint-config-hexo","hexo-renderer-marked","util-deprecate", +"grunt-gh-pages","scrawl","transducers-js","tiny-worker","wcag-contrast","css-color-names","deep-freeze-es6", +"dependency-resolver","step","hap-nodejs","@types/source-map-support","eslint-plugin-import-newlines", +"@hono/eslint-config","bun-types", +"editorconfig-checker","oxc-parser","vite-plugin-fastly-js-compute","wrangler","application","cloudflare","workers", +"fastly","compute","workshopper-adventure","workshop","adventure","tutorial","tutor","@size-limit/preset-big-lib", +"@types/jscodeshift","pojo","attribute","element","@exodus/bytes","@types/he","flowgen","html entities", +"html entities encode","html entities decode","entities encode","entities decode","ascjs","unescape","posthtml-webp", +"unescape-unicode","relateurl","compressor","packer","uglifier","alpinejs","commitlint-config-non-conventional", +"rollup-plugin-polyfill-node","tags","void","self-closing","@types/jasmine","@bubkoo/tsconfig","@bubkoo/eslint-config", +"@bubkoo/rollup-config","@bubkoo/commitlint-config","@bubkoo/semantic-release-config","screenshot","capture", +"@selderee/plugin-htmlparser2","selderee","mail","plain","@html-validate/stylish","@sidvind/better-ajv-errors", +"@types/html-minifier-terser","pug-loader","webpack-recompilation-simulator","@types/relateurl","bunchee", +"eslint-plugin-unused-imports","srcset","posthtml-plugin","postproccessor", +"rss","toidentifier","requires-port","sse","agent-base","agent","@types/is-glob","mockttp","next.js","union","corser", +"secure-compare","eol","eslint-config-populist","https-server","@types/should","@types/eslint__js","status", +"@types/markdown-table","HttpStatus","httpclient","mediation","@types/async-retry","post","put","duplex", +"eslint-config-sanity","hyphenate","singular","plural","camelize","dasherize","demodulize","ordinalize","uncountable", +"singularize","titleize","tableize","classify","foreign_key","@messageformat/core","fast-printf","make-plural", +"math-interval-parser","l10n","@arktype/attest","gh-release","i18next-browser-languagedetector","i18next-fs-backend", +"i18next-http-backend","i18next-localstorage-cache","i18next-sprintf-postprocessor","internationalization","translation", +"localization","globalization","gettext","gridly","safer-buffer","errto","iconv","unorm","bench-node","charset", +"icu","harmony-reflect","proxies","identity","eslint-config-ostai","pre-suf","spawn-sync",".gitignore","manager", +"asterisks","regular-expression","dimensions","resolution","heif","tga","tiff","ow","p-pipe","image-dimensions","is-png", +"pngquant-bin","imageminplugin","pngquant","utf7","reader","cpx2","deep-freeze","import-size","seamless-immutable", +"type-plus","mutable","copy-on-write","@types/invariant","immutability","lazy","stateless","bypass","prefer","metacom", +"metaconfiguration","metalog","metaschema","metautil","metavm","metawatch","eslint-config-metarhia","isolation", +"enterprise","scalable","soa","stateful","routing","cluster","interactive","align","every","inferno-shared", +"inferno-utils","user interfaces","renderToString","inflections","inflection-js","humanize","capitalize", +"inheritance","klass","oop","object-oriented","@alcalzone/ansi-tokenize","auto-bind","patch-console","terminal-size", +"yoga-layout","@types/react-reconciler","@types/scheduler","@types/signal-exit","@vdemedes/prettier-config", +"eslint-config-xo-react","react-devtools-core","print","inline-style","inno","innosetup","run-async","fwk","instagram", +"ig","driver","reify","exports","packaging","remark-code-import","coffee.md","litcoffee","yml", +"babel-plugin-transform-es3-member-expression-literals","babel-plugin-transform-es3-property-literals", +"babel-preset-es2015-rollup","cldr-cal-buddhist-full","cldr-cal-chinese-full","cldr-cal-coptic-full", +"cldr-cal-dangi-full","cldr-cal-ethiopic-full","cldr-cal-hebrew-full","cldr-cal-indian-full","cldr-cal-islamic-full", +"cldr-cal-japanese-full","cldr-cal-persian-full","cldr-cal-roc-full","cldr-core","cldr-dates-full","cldr-numbers-full", +"estraverse-fb","grunt-curl","grunt-zip","rollup-plugin-memory","ecma402","@vue/tsconfig","flag-icons", +"google-closure-library","grunt-replace","prettier-eslint","international","country","dial code","telephone","phone", +"@inversifyjs/common", +"@inversifyjs/container","@inversifyjs/core","dependency inversion","inversion of control container","ioc","leek", +"ssh-config","elementtree","@ionic/discover","@ionic/utils-fs","superagent-proxy","@ionic/utils-array", +"@ionic/utils-stream","@ionic/cli-framework","@ionic/utils-network","@ionic/utils-process","@ionic/utils-terminal", +"@ionic/utils-subprocess","@ionic/cli-framework-prompts","@types/diff","@types/open","@types/split2","@types/os-name", +"@types/elementtree","ionic framework","ionicframework","hybrid","@types/svgo","jest-stencil-runner","icon pack", +"custom element","@ioredis/commands","cluster-key-slot","denque","lodash.isarguments","redis-errors","redis-parser", +"standard-as-callback","@ioredis/interface-generator","@types/lodash.defaults","@types/lodash.isarguments", +"@types/redis-errors","sentinel","pipelining","irc-colors","node-icu-charset-detector","ansi-color","is-extglob", +"braces","extglob","globstar","global-directory","globally","installed","locally","vanilla","pure","is-object","kind", +"custom element name","writable","is-inside-container","esmock","wsl", +"subsystem","kindof","lintspaces-cli","code coverage","JS code coverage","JS coverage","js-calendar","v-click-outside-x", +"autoprefixer-loader","babel-plugin-transform-es5-property-mutators","compression-webpack-plugin","vue-html-loader", +"character-parser","constantinople","jstransformer","transformers","with","browserify-middleware","code-mirror", +"github-basic","handle","highlight-codemirror","inconsolata","jade-code-mirror","jade-highlighter","jstransformer-cdata", +"jstransformer-coffee-script","jstransformer-less","jstransformer-marked","jstransformer-stylus", +"jstransformer-verbatim","less-file","lsr","pull-request","stop","filelist","rake","video-worker", +"babel-plugin-annotate-pure-calls","browserslist-config-nk","eslint-config-nk","json-file","prettier-config-nk", +"parallax","youtube","vimeo","@jasminejs/reporters","eslint-plugin-jasmine","css-url-embed","walkdir", +"jasmine-reporters","jasmine-growl-reporter","cssfontparser","moo-color","babel-plugin-version","@jest/diff-sequences", +"@jest/environment","@jest/environment-jsdom-abstract","@jest/fake-timers","jest-serializer-ansi-escapes","matchers", +"extended","@types/escape-html","@types/jump.js", +"@types/randomcolor","eslint-webpack-plugin","jump.js","randomcolor","web-vitals","libxmljs2","plugnplay","pnp", +"babel-plugin-add-import-extension","@types/merge-stream","jest-leak-detector","worker-farm","@jimp/core","@jimp/diff", +"@jimp/js-bmp","@jimp/js-gif","@jimp/js-jpeg","@jimp/js-png","@jimp/js-tiff","@jimp/plugin-blit","@jimp/plugin-blur", +"@jimp/plugin-circle","@jimp/plugin-color","@jimp/plugin-contain","@jimp/plugin-cover","@jimp/plugin-crop", +"@jimp/plugin-displace","@jimp/plugin-dither","@jimp/plugin-fisheye","@jimp/plugin-flip","@jimp/plugin-hash", +"@jimp/plugin-mask","@jimp/plugin-print","@jimp/plugin-quantize","@jimp/plugin-resize","@jimp/plugin-rotate", +"@jimp/plugin-threshold","@jimp/types","@jimp/utils","@jimp/config-eslint","@jimp/config-typescript", +"@jimp/config-vitest","@jimp/test-utils","node-self","vite-plugin-node-polyfills","image processing", +"image manipulation","resize","@babel/helper-simple-access","@rspack/cli","@rspack/core", +"@types/babel__helper-plugin-utils","@types/babel__template","@types/babel__traverse","babel-plugin-parameter-decorator", +"destr","nano-jsx","preact-render-to-string","solid-js","wysiwyg editor","wysiwyg html editor","rich editor", +"rich text editor","contenteditable", +"vanillajs","wysisyg","rte","firmata","temporal","nanotimer","browser-serialport","grunt-jsbeautifier","0A02","0A21", +"16x2 LCD","20x4 LCD","2D120X","2Y0A02","2Y0A21","74HC595","ADXL335","ADXL345","ALS-PT19","ALSPT19","ANALOG","arduino", +"Ardumoto","AT42QT1070","BLINKM","BMP180","Continuous Rotation","DEFAULT","Diffused LED","DS18B20", +"Edison Arduino Block","Edison GPIO Block","Edison I2C Block","Edison PWM Block","edison","ESPLORA","EV3","galileo-io", +"galileo","GP2D120XJ00F","GP2Y0A02YK0F","GP2Y0A21YK","GP2Y0A41SK0F","GY-521","GY521","HD44780","High Torque", +"Hitec HS-35HD","Hitec HS-422","Hitec HS-425BB","Hitec HS-625MG","Hitec HS-646WP","Hitec HS-755HB","Hitec HS-805BB", +"Hitec HS-85MG","HMC5883L","HMC6352","Hobby Motor","HRLV-MaxSonar-EZ0","HT16K33","HTU21D","i2c", +"Infrared Proximity Sensor","Infrared Sensor", +"intel edison","intel galileo","ISL29125","JHD1313M1","Joystick","LCD1602","LCD2004","LCM1602","LED","LIDAR-Lite v2", +"Ludus Protoshield Wireless","Ludus Protoshield","LV-MaxSonar-EZ0","LV-MaxSonar-EZ3","MCP23008","MCP23017","MCP9808", +"Metal Gear","MJKDZ","MMA7361","MMA7660","MMA8462Q","MPL115A2","MPL3115A2","MPR121","MPR121QR2","MPU-6050","MPU6050", +"MUXSHIELD2","NXT","OA41SK","PARALLEL","PCA9685","pcduino","PCF8574","PCF8574A","PCF8574AT","PCF8574T","PCF8575", +"PCF8591","photon","PIR Motion Sensor","QTOUCH","raspberry pi","raspberrypi","raspi-io","RedBoard","RGB LED","robot", +"robotics","rpi","serial","Servo","Shift Register 8-Bit SN74HC595","Shift Register","SI7020","spark core","spark-io", +"spark","SparkFun Essential Sensor Kit","SparkFun Sensor Kit","Speed controller","Temperature","tessel 2", +"Thumb Joystick","TINKERKIT","TMP36","TSL2561","Ultrasonic Range Finder","usb","VKEY","Weather Shield Arduino", +"Weather Shield Photon","@hapi/address","@hapi/formula","@hapi/pinpoint","@hapi/tlds","recoil","grunt-html", +"commitplease","grunt-bowercopy","grunt-git-authors","grunt-compare-size","jquery-test-runner","eslint-config-jquery", +"config-chain","beautifier","code-quality","grunt-exec","gzip-js","amd","rollup-plugin-node-polyfills","pyyaml", +"knifecycle","package-directory","yerror","architecture","gitignore-to-glob","@jscpd/badge-reporter","@jscpd/core", +"@jscpd/finder","@jscpd/tokenizer","@jscpd/html-reporter","jscpd-sarif-reporter","cst","jscs-jsdoc", +"jscs-preset-wikimedia","reserved-words","to-double-quotes","to-single-quotes","vow-fs","unicode-7.0.0","unit-coverage", +"@jsdoc/salty","catharsis","js2xmlparser","requizzle","current-module-paths","object-to-spawn-args","config-master", +"@acemir/cssom","@asamuzakjp/dom-selector","@bramus/specificity","data-urls","decimal.js","saxes","symbol-tree", +"w3c-xmlserializer", +"webidl-conversions","whatwg-url","mocha-sugar-free","webidl2","webidl2js","browser-request","cssom","nwmatcher", +"selenium-standalone","unicode-13.0.0","results-interpreter","unicode-5.2.0","unicode-11.0.0","stylish","deeks", +"doc-path","to","json2csv","csv2json","csv-2-json","milliparsec","sort-on","prototyping","dummy","@types/object-keys", +"deterministic","stable","circular","unicode-10.0.0","@stryker-mutator/mocha-runner","json-metaschema","jsonparse", +"trees","jws","lodash.once","lodash.includes","lodash.isnumber","lodash.isboolean","lodash.isinteger","@jspm/generator", +"@jspm/plugin-rollup","amaro","states","lie","jszip-utils","package-json-versionify","inflate","qjobs","dom-serialize", +"timer-shim","karma-junit-reporter","karma-script-launcher","spectacular","execution","hat","os-shim","karma-plugin", +"karma-preprocessor","browserify-tool","browserstack-local","karma-launcher","browser-stack","chrome","ibrik", +"karma-coffee-preprocessor","karma-requirejs","karma-reporter","Safari","Safari Tech Preview","SafariTechPreview","IE", +"Chrome","Chrome Canary","Chrome Headless","Chromium","Firefox","Opera","edge-launcher","chai-fs","os-homedir","firefox", +"karma-adapter","karma-rollup","safari","global-agent","@types/global-agent","sauce","labs","karma-brief-reporter", +"rollup-sourcemap-path-transform","keyboard","keyboardevent","keydown","keyup","metakey","keyname","@keyv/serialize", +"lru.min","timekeeper","@keyv/compress-gzip","@keyv/sqlite","@keyv/test-suite","@keyv/mongo","@keyv/compress-brotli", +"@keyv/compress-lz4","@keyv/memcache","key-value","adapter","memory","lru","tarn","escalade","pg-connection-string", +"tedious","oracledb","better-sqlite3","pg-query-stream","chai-subset-in-order","@tsconfig/recommended", +"toxiproxy-node-client","sql","postgres","cockroachdb","querybuilder","formatly","oxc-resolver","smol-toml", +"codeclimate-types", +"analysis","analyze","dead code","duplicate","entropy","maintenance","members","missing","monorepo","namespace", +"unreferenced","unresolved","workspace","lodash.sortby","explorer","opera","samsung-internet","uc-browser", +"stream-counter","delegates","http-assert","gen-esm-wrapper","@types/co-body","co-body","@koa/router", +"@types/koa__router","urlencoded","body","copy-to","bodyParser","compose","humanize-number","passthrough-counter", +"koa-compress","koa-route","mount","mounting","@ladjs/env","route","koa-send","sendfile","reds","node-redis-warlock", +"bossy","eslint-config-hapi","eslint-plugin-hapi","find-rc","will-call","cpr","lab-event-reporter","semver-regex", +"latest","package.json","current","autodoc","deft","jasmine-async","race.js","string-table","happen","leafdoc", +"bundlemon","git-rev-sync","karma-expect", +"prosthetic-hand","eslint-config-mourner","rollup-plugin-git-version","@mapbox/eslint-plugin-script-tags","gis","left", +"padding","repeat","numbers","aproba","cmd-shim","p-reduce","byte-size","write-pkg","wide-align","has-unicode", +"p-waterfall","libnpmaccess","p-map-series","set-blocking","@lerna/create","libnpmpublish","read-cmd-shim", +"load-json-file","init-package-json","make-fetch-happen","conventional-changelog-core","validate-npm-package-license", +"conventional-recommended-bump","conventional-changelog-angular","@octokit/plugin-enterprise-rest","multi-package", +"copy-anything","benny","bootstrap-less-port","html-template-tag","jit-grunt","less-plugin-autoprefix", +"mocha-teamcity-reporter","phin","read-glob","compile less","css nesting","css variable","gradients css", +"gradients css3","less compiler","less css","less mixins","less.js","lesscss","nested css","bootstrap css", +"bootstrap less","variables in css","css less","less-plugin-glob","browser-level","classic-level","abstract-level", +"airtap-playwright","@voxpelli/tsconfig","leveldb","napi-macros", +"abstract-leveldown","du","async-each","mkfiletree","readfiletree","prebuildify-ci","prebuildify-cross", +"level-concat-iterator","level-errors","level-supports","queue-microtask","deferred-leveldown","level-iterator-stream", +"memdown","trickle","airtap-sauce","run-parallel","encoding-down","simple-concat","fast-levenshtein","ld","levdist", +"levenshtein","levenshtein-component","levenshtein-edit-distance","talisman","distance","algorithm","comparison","edit", +"matching","binary-extensions","promise-retry","just-safe-set","fund","gitfund","crlf","gmail-send","jest-codemods", +"libphonenumber-metadata-generator","renamer","libphonenumber","fined","flagged-respawn","autolink","hashtag","link", +"mention","consolemock","staged","@samverschueren/stream-to-observable","is-observable","listr-silent-renderer", +"listr-update-renderer","listr-verbose-renderer","@lit-labs/ssr-dom-shim","@lit/reactive-element", +"@lit-internal/scripts","@lit-labs/testing","@webcomponents/template","connect-logger","http-auth","faye-websocket", +"livereload-js", +"resolve-pkg","matchdep","lws-basic-auth","lws-blacklist","lws-body-parser","lws-compress","lws-conditional-get", +"lws-cors","lws-json","lws-log","lws-mime","lws-range","lws-request-monitor","lws-rewrite","lws-spa","lws-static", +"full-stack","babel-preset-es2015-loose","browserify-derequire","grunt-es3-safe-recast","grunt-rollup","grunt-ts", +"rollupify","indexeddb","localstorage","websql","openurl","lockfile-lint-api","prettier-standard","lockfile check", +"lockfile lint","lock","stdlib","lodash-modularized","clonedeep","defaults","isempty","isequal","isfunction", +"isplainobject","isstring","omit","pick","uniq","uni-global","sprintf-kit","event-emitter","ncjsm","tape-index", +"terminal.js","update","refresh","overwrite","bar","date-format","streamroller","@log4js-node/sandboxed-module", +"grunt-contrib-jasmine","grunt-open","grunt-preprocess","math","int64","uid2","isemail", +"canonical-json","loopback-phase","strong-remoting","loopback-filters","strong-globalize","loopback-connector-remote", +"nodemailer-stub-transport","loopback-datasource-juggler","nodemailer-direct-transport","is-docker","loopback-boot", +"karma-es6-shim","loopback-context","strong-task-emitter","strong-error-handler","eslint-config-loopback","sqlserver", +"StrongLoop","mBaaS","steno","express-async-handler","@commitlint/prompt-cli","@typicode/eslint-config","embed", +"embedded","localStorage","sessionStorage","mru","@lucide/build-icons","@lucide/shared","@lucide/rollup-plugins", +"Lucide","HTML","Feather","Icons","Icon","SVG","Feather Icons","Fontawesome","Font Awesome","decree","manipulate","blur", +"sharpen","flip","mirror","hue","saturation","lightness","transparency","fade","opacity","contain","cover", +"@75lb/deep-merge","ansi-escape-sequences","create-mixin","load-module","sleep-anywhere","expand-home-dir", +"hast-util-to-mdast","mdast-util-to-markdown","short-unique-id","y18n", +"@types/columnify","@types/json-diff","@types/make-fetch-happen","@types/which","wizard","task graph", +"string manipulation","@favware/rollup-type-bundler","lavalink client","audio streaming","music bot","voice chat", +"discord integration","high performance","easy-to-use","feature-rich","seamless integration","community support", +"open-source","lavalink","path-type","intermediate","recursively","dingbat-to-unicode","lop", +"browserify-prepend-licenses","duck","hamjest","office","word","@nestjs/common","@nestjs/config","@nestjs/core", +"@nestjs/platform-express","@nestjs/swagger","@nestjs/throttler","@nestjs/typeorm","@yarnpkg/lockfile","uniqid", +"@codecov/bundle-analyzer","@nestjs/cli","@nestjs/testing","@testcontainers/mysql","@types/dasherize","crud", +"admin-panel","headless-cms","backend-framework","micro-backend","rapid-development","yaml-config","file-upload", +"api-generator","low-code","no-code","prototype","mvp","startup","baas","@next/eslint-plugin-next","@tabler/icons-react", +"eslint-config-next","postcss-preset-mantine","postcss-simple-vars", +"mantine","context","context-menu","context menu","react server components","user experience","usability","mapbox-gl", +"mapbox","legend","text processing","linkify-it","mdurl","punycode.js","uc.micro","markdown-it-for-inline", +"markdown-it-ins","markdown-it-mark","markdown-it-sub","ndoc","markdown-it-plugin","anchor","emoji","emojies","emoticon", +"emoticons","stream-from-to","pdf-text","rows","bunup","theredoc","markdown parser","solidjs","diacritics-map", +"lazy-cache","list-item","markdown-link","mixin-deep","repeat-string","document","glossary","heading","links", +"remarkableplugin","table of contents","table-of-contents","toc","micromark-core-commonmark", +"micromark-extension-directive","micromark-extension-gfm-autolink-literal","micromark-extension-gfm-footnote", +"micromark-extension-gfm-table","micromark-extension-math","micromark-util-types","gemoji", +"markdownlint-rule-extended-ascii","CommonMark","jsonpointer","run-con","@markedjs/eslint-config","@markedjs/testutils", +"esbuild-plugin-umd-wrapper","marked-highlight","marked-man", +"recheck","markup","v8-argv","inline-style-prefixer","react-event-listener","simple-assign","complex.js","escape-latex", +"javascript-natural-sort","typed-function","eigen","expr-eval","jsep","ndarray","ndarray-determinant","ndarray-gemm", +"ndarray-ops","ndarray-pack","numericjs","sylvester","zeros","mathematics","numeric","algebra","complex","fraction", +"charenc","md5sum","checksum","decode-named-character-reference","micromark-util-decode-numeric-character-reference", +"micromark-util-decode-string","micromark-util-normalize-identifier","micromark-util-symbol", +"unist-util-stringify-position","commonmark.json","micromark-build","mdast-util","mdast","tree", +"micromark-util-sanitize-uri","trim-lines","mdast-util-gfm","micromark-extension-gfm","mdn","mozilla","hashring", +"jackpot","InnoDB memcached API","failover","hashing","membase","memcache","nMemcached","@jsonjoy.com/fs-core", +"@jsonjoy.com/fs-fsa","@jsonjoy.com/fs-node","@jsonjoy.com/fs-node-builtins","@jsonjoy.com/fs-node-to-fsa", +"@jsonjoy.com/fs-node-utils","@jsonjoy.com/fs-print","@jsonjoy.com/fs-snapshot","@jsonjoy.com/json-pack", +"@jsonjoy.com/util", +"glob-to-regex.js","thingies","tree-dump","isomorphic-git","tslint-config-common","fs.js","in-memory","fsa", +"file system access","native file system","webfs","crudfs","opfs","casfs","content addressable storage", +"@types/lodash.isequal","fast-memoize","mem","nanocolors","memoization","gulp-exit","ram","errno","camelcase-keys", +"decamelize-keys","delete_comments","minimist-options","trim-newlines","cat","kitten","from2","lodash.clonedeepwith", +"stat-mode","ware","@metalsmith/drafts","assert-dir-equal","7zip-bin","node-7z","node-downloader-helper", +"@babel/plugin-syntax-import-meta","@surma/rollup-plugin-off-main-thread","asyncro", +"babel-plugin-transform-async-to-promises","babel-plugin-transform-replace-expressions","tiny-glob", +"@babel/plugin-proposal-throw-expressions","directory-tree","eslint-config-developit","npm-merge-driver-install", +"micro library","micromark-factory-space","micromark-util-chunked","micromark-util-combine-extensions", +"micromark-util-resolve-all","micromark-util-subtokenize","fill-range","bracket","character-class","expansion", +"extglobs","lookahead","lookaround","lookbehind","negate", +"negation","posix","star","@types/mime-db","mime-score","release-please","runmd","mime-db","mimetypes","Min Heap", +"min heap","maxheap","min-heap","heap","Binary Heap","binary-heap","heap data structure","min heap data structure", +"complete binary tree","heapify","heap sort","heapify up","heapify down","Priority Queue","priority queue", +"priorityqueue","priority-queue","priority q","priorityQ","efficient","priority","complete binary","extract min", +"min priority queue","efficient priority","ordering property","dynamic resizing","priority-based", +"priority-based processing","element priority","queue priority","sorted","decrease key","increase key","searching", +"@putout/minify","css-b64-images","html-minifier-next","montag","readjson","try-catch","try-to-catch","escover", +"eslint-plugin-putout","madrun","supertape","brace-expansion","signed","certificate","cert","@types/brace-expansion", +"make dir","dir","ufo", +"conditional-type-checks","mobservable","reactive","frp","functional-reactive-programming","state management", +"data flow","mobx-react-lite","expose-gc","browser-stdout","yargs-unparser","uslug","pidtree","rewiremock","unexpected", +"@mocha/docdash","jsdoc-ts-utils","unexpected-map","unexpected-set","unexpected-sinon","remark-inline-links", +"unexpected-eventemitter","fail-on-errors-webpack-plugin","@11ty/eleventy-plugin-inclusive-language","headless-chrome", +"chai-xml","test-console","xmllint","junit","lcov","define-data-property","gopd","has-property-descriptors", +"@types/es-value-fixtures","@types/for-each","@types/functions-have-names","@types/get-intrinsic","@types/gopd", +"@types/has-property-descriptors","@types/object-inspect","descriptor","define","swap","unix-dgram","unittest", +"gulp-coveralls","gulp-mocha-phantomjs","mockJSON","mockAjax","ipaddr.js","recursive-watch","fastest-validator","avsc", +"nats","etcd3","cbor-x","thrift","redlock","dd-trace","gc-stats","msgpack5","fakerator","kafka-node","v8-natives", +"@types/pino","notepack.io","benchmarkify","rhea-promise","@types/bunyan","jaeger-client","@types/ioredis", +"moleculer-repl","winston-context","event-loop-stats","node-nats-streaming","@icebob/node-memwatch","microservice", +"messagebus","services","micro","distributed","ender","timezone","olson","iana","zone","tz", +"monaco-languageserver-types","monaco-marker-data-provider","monaco-types","monaco-worker-manager", +"vscode-languageserver-textdocument","vscode-languageserver-types","vscode-uri","@remcohaszing/eslint", +"remark-preset-remcohaszing","yaml-language-server","monaco","monads","either","maybe","result", +"@codemirror/lang-javascript","@codemirror/theme-one-dark","@json2csv/plainjs","@lezer/highlight","basic-auth-connect", +"bootstrap-paginator-2","free-swig","gridfs-stream","mongodb-query-parser","renderjson-2","@cypress/code-coverage", +"assets-webpack-plugin","express-openid-connect","mongodb-memory-server","administration","GUI","manage","manage-mongo", +"phpmyadmin","UI","web-based","@mongodb-js/saslprep","mongodb-connection-string-url","aws4","socks","snappy", +"mocha-sinon","gcp-metadata","@types/kerberos","@types/saslprep","v8-heapsnapshot","@mongodb-js/zstd", +"@types/whatwg-url","@types/chai-subset","mongodb-client-encryption","@aws-sdk/credential-providers","kareem","mpath", +"mquery","sift","@ark/attest","@mongodb-js/mongodb-downloader","acquit","acquit-ignore","acquit-require", +"lodash.isequalwith","mongodb-runner","odm","datastore","backbone-callbacks","node-monitor","remote control","probe", +"JMX","core-monitor","dashboard","monitoring","control panel","@types/mongodb","monk-middleware-cast-ids", +"monk-middleware-fields","monk-middleware-handle-callback","monk-middleware-options","monk-middleware-query", +"monk-middleware-wait-for-connection","gitbook-cli","gitbook-plugin-anker-enable","gitbook-plugin-custom-favicon", +"gitbook-plugin-edit-link","gitbook-plugin-github","gitbook-plugin-prism","monk-middleware-debug","commist","help-me", +"mqtt-packet","worker-timers","number-allocator","aedes-cli","leaked-handles","mqtt-connection","@esm-bundle/chai", +"mqtt-level-store","esbuild-plugin-polyfill-node","publish/subscribe","@tediousjs/connection-string","msnodesql","tds", +"node-tds","node-sqlserver","msnodesqlv8", +"node-mssql","@types/statuses","headers-polyfill","rettime","until-async","@epic-web/test-server","@fastify/websocket", +"@types/json-bigint","@types/serviceworker","json-bigint","page-with","append-field","fs-temp","testdata-w3c-json-form", +"formdata","array-union","pend","release-it-pnpm","test report","html report","json to html","karma-story-reporter", +"mezr","web-animations-js","bin-packing","sqlstring","timezone-mock","urun","utest","sql-escaper","aws-ssl-profiles", +"generate-function","named-placeholders","poku","assert-diff","eslint-plugin-async-await","thenify","then","bats", +"switcher","couchdb","fastest-stable-stringify","rtl-css-js","iconista","libreact","pico","lite","in-js","styled", +"decorator","jsxstyle","rule","gitcloud","hasbin","page-icon","@types/hasbin","@types/page-icon","desktop","proxy-lib", +"font-finder","pbxproj-dom","@foxt/js-srp","simple-plist","ios-device-lib", +"email-validator","ios-sim-portable","plist-merge-patch","@nativescript/hook","@nativescript/doctor", +"nativescript-dev-xcode","ios-mobileprovision-finder","@nstudio/trapezedev-project","@rigor789/resolve-package-path", +"@types/plist","@types/retry","@types/byline","@types/pacote","@types/tabtab","@types/tunnel","@types/xml2js", +"@types/archiver","@types/qr-image","@types/marked-terminal","@types/proper-lockfile","@types/npmcli__arborist", +"@types/universal-analytics","afinn-165","afinn-165-financialmarketnews","apparatus","memjs","stopwords-iso", +"wordnet-db","browserfs","gulp-jasmine-browser","pegjs","uubench","natural language processing","artifical intelligence", +"Porter stemmer","Lancaster stemmer","bigram","trigram","quadgram","ngram","stemmer","bayes","classifier","phonetic", +"metaphone","inflector","Wordnet","tf-idf","logistic regression","doublemetaphone","double","jaro-winkler distance", +"levenshtein distance","string distance","part-of-speech tagger","Eric Brill","Brill tagger","sentiment analysis", +"maximum entropy modelling","secure-keys","nconf-yaml","key value store","plugabble","near social", +"bridge","near","binary-search-tree","exec-time","@fig/complete-commander","@golevelup/nestjs-discovery","nest", +"@postman/tough-cookie","chardet","liquid-json","postman-collection","postman-collection-transformer","postman-request", +"postman-runtime","serialised-error","@postman/shipit","dockerfile_lint","parse-gitignore","postman","rest-client", +"@apm-js-collab/tracing-hooks","@newrelic/security-agent","@tyriar/fibonacci-heap","import-in-the-middle", +"module-details-from-path","require-in-the-middle","@aws-sdk/s3-request-presigner","@matteo.collina/tspl", +"@newrelic/eslint-config","@newrelic/newrelic-oss-cli","@newrelic/test-utilities","@slack/bolt", +"@smithy/eventstream-codec","@smithy/util-utf8","git-raw-commits","self-cert","debugging","profiling","@panva/hkdf", +"openid-client","@edge-runtime/jest-environment","@types/nodemailer","@types/oauth","babel-plugin-jsx-pragmatic", +"babel-preset-preact","oauth2","nextauth","async handler","async functions","pipe","provider","TestBed","how-to", +"@ant-design/icons-angular","localhost","tunneling","webhook","deep-defaults","enqueue","function-source","minstache", +"sliced","mocha-generators","@nightwatch/chai", +"@nightwatch/html-reporter-template","@nightwatch/nightwatch-inspector","@types/selenium-webdriver","chai-nightwatch", +"devtools-protocol","didyoumean","nightwatch-axe-verbose","stacktrace-parser","mochawesome-merge", +"mochawesome-report-generator","nightwatchjs","selenium","webdriver","automated-testing","@sinonjs/text-encoding", +"@sinonjs/referee","jsdom-global","mochify","proxyquire-universal","proxyquireify","propagate","clang-format","n-api", +"napi","coffee-coverage","grunt-contrib-coffee","grunt-include-replace","internal","check-version-modules", +"used-deps-analyzer","container","skeleton","formate","dynamic-dedupe","filewatcher","tap-xunit","reload","subdir", +"char-regex","emojilib","skin-tone","sentences-per-line","emojis","smiley","smileys","smilies","ideogram","ideograms", +"fetch-blob","chai-iterator","stream-consumers","eslint-config-digitalbazaar","karma-tap-reporter","nodejs-websocket", +"worker-loader","aes","asn","asn.1","cbc","csr","des","gcm","hmac","pkcs", +"pki","prng","rc2","rsa","sha256","sha384","sha512","tls","x.509","x509","c2dm","fcm","messaging","geocoder","geocoding", +"geo","maps","mapquest","agol","arcgis","tomtom","exponential-backoff","require-inject","high5","html-parser", +"html5parser","htmljs-parser","htmlparser-benchmark","mocha-each","neutron-html5parser","biased-opener", +"strong-data-uri","v8-debug","v8-profiler","http mock","growly","shellwords","nexe","notification center", +"mac os x 10.8","terminal-notifier","windows 8 notification","toaster","ps-list","pty","pseudoterminal","forkpty", +"openpty","@node-red/editor-api","@node-red/runtime","@node-red/util","@node-red/nodes","node-red-admin","iot", +"sass-graph","async-foreach","stdout-stream","true-case-path","unique-temp-dir","long-timeout","sorted-array-functions", +"recurrent","rfc4122","fs.watch", +"watchfile","ngn","daemon","event logging","elevate","sudo","@mgcrea/eslint-config-node","@tsconfig/node-lts","excel", +"xls","jQuery","jQuery extend","inherit","combyne","clean-for-publish","libgit2","git2","@aws-sdk/client-sesv2", +"libbase64","libmime","libqp","nodemailer-ntlm-auth","proxy-test-server","Nodemailer","pstree.remy","undefsafe", +"autoload","multimeter","node-webkit","webkit","async-redis","express-ipfilter","express-ws","json-logic-js","json-sql", +"jsonpath-plus","line-reader","mocker-data-generator","node-ipc","promise-mysql","stjs","uuid-random","nolang", +"Programming","programming language","descriptive","5GL","json schema","Mehdi Salartayefeh","option parser","absolute", +"backslash","delimiter","file-path","forward","fp","slashes","trailing","unix","urix","normalization","normalisation", +"simplify","trim", +"canonical","mouse wheel","exit-hook","github-url-from-git","is-interactive","is-scoped","issue-regex","listr-input", +"new-github-release-url","npm-name","p-memoize","map-obj","write-package","archy","is-cidr","libnpmorg","libnpmpack", +"libnpmteam","fs-minipass","npm-profile","libnpmsearch","@sigstore/tuf","libnpmversion","@npmcli/config", +"npm-audit-report","minipass-pipeline","npm-user-validate","tiny-relative-date","fastest-levenshtein", +"json-parse-even-better-errors","@npmcli/git","@npmcli/docs","@tufjs/repo-mock","@npmcli/mock-globals", +"ajv-formats-draft2019","package manager","giturl","throat","semver-diff","preferred-pm","callsite-record", +"rc-config-loader","outdated","updates","updating","updater","@trivago/prettier-plugin-sort-imports", +"@types/chai-string","@types/cli-table","@types/ini","@types/jsonlines","@types/npm-registry-fetch", +"@types/parse-github-url","@types/semver-utils","@types/update-notifier","eslint-config-raine","fp-and-or","jsonlines", +"prompts-ncu","semver-utils","typescript-json-schema","verdaccio","vite-bundle-analyzer","vite-node", +"upgrade","versions","esbuild-node-externals","eslint-config-tc","eslint-config-typescript-tc", +"npm-package-json-lint-config-tc","auditor","mutate-fs","minipass-fetch","minizlib","registry","string.prototype.padend", +"eslint-config-mysticatea","commandline","npm-scripts","run","read-package-json-fast","script","string convert", +"yarn to npm","npm upgrade","babel-preset-latest","npm-cli","are-we-there-yet","mocha-jsdom","cvss", +"nodesecurity-npm-utils","gluegun","nuke","money","percentage","a-sync-waterfall","asap","mocha-phantomjs-core", +"mocha-phantomjs-istanbul","module-alias","node-libs-browser","css4","node-machine-id","resolve.exports", +"@yarnpkg/parsers","lines-and-columns","@napi-rs/wasm-runtime","Mobile","caching-transform","istanbul-lib-hook", +"istanbul-lib-processinfo","node-preload","process-on-spawn","spawn-wrap","any-path","@readme/openapi-parser", +"remove-undefined-objects","@readme/oas-examples","@types/json-schema-merge-allof","@types/memoizee","apis", +"openapi initiative","openapi specification","openapi spec","openapi document","oai","@readme/postman-to-openapi", +"@types/swagger2openapi", +"prollyfill","gulp-exec","@pkgjs/support","error-cause","globalthis","has-tostringtag","util.inspect","indexof", +"Object.keys","@mariocasciaro/benchpress","access","bean","notation","segment","es-object-atoms","Object.assign", +"$.extend","_.extend","Underscore","Object.entries","Object.values","entries","ES8","ee-first","wrappy", +"@blakeembrey/deque","@blakeembrey/template","epoll","@types/mock-require","gpio","interrupt","raspberry","raspi","pi", +"beaglebone","beaglebone-black","default-browser","define-lazy-prop","is-in-ssh","wsl-utils","opens","launch","start", +"xdg-open","xdg","default","urls","bath-es5","dereference-json-schema","axios-mock-adapter","json-schema-deref-sync", +"open api","computer","quadrocopter","countrynames","hashish","last-call-webpack-plugin","prelude-ls","deep-is","levn", +"livescript","option parsing","stdin-discarder","transform-tty", +"sequencify","stream-consume","sql-ddl-sync","sql-query","redshift","home","tmpdir","ps1","template string", +"template literal","styleable","scrollbar","scrollbars","scroll","@vscode/vsce","yauzl-promise","@types/is-ci", +"@types/yauzl-promise","limiter","vscode","addlistener","addeventlistener","waits","resolved","race","fulfilled", +"concurrency","ratelimit","fifo","invalidate","out","plunder","metadata","@pa11y/html_codesniffer","eslint-config-pa11y", +"proclaim","aria","compliance","headless","htmlcs","standards","WCAG","sigstore","npm-registry-mock","capture-website", +"filenamify-url","unused-filename","@types/png.js","png.js","page","screenshots","screengrab","striptags","para", +"server-side","idb-keyval","react-native-crypto-js","@saithodev/semantic-release-backmerge","@types/facebook-js-sdk", +"babel-plugin-transform-inline-environment-variables","jasmine-spec-reporter","jsdoc-babel","parse-server", +"vite-plugin-commonjs", +"WHATWG","html parser","html5 parser","html serializer","htmlserializer","fast-url-parser","pause", +"chai-connect-middleware","username","passport-oauth1","base64url","exist","isabsolute","is-absolute","zeptomatch", +"@rkusa/linebreak","opentype.js","jpeg-exif","linebreak","png-js","blob-stream","brace","pdfjs-dist","pdf writer", +"pdf generator","call-delayed","chai-increasing","pg-pool","pg-protocol","pg-types","pgpass","pg-cloudflare", +"@cloudflare/vitest-pool-workers","@cloudflare/workers-types","pg-copy-streams","libpq","postgre","rdbms", +"flow-copy-source","npm-watch","connect-phonegap","phonegap-build","phonegap build","phonegap/build","pinkie-promise", +"denodify","atomic-sleep","on-exit-leak-free","pino-abstract-transport","pino-std-serializers","quick-format-unescaped", +"real-require","@pinojs/redact","sonic-boom","thread-stream","@types/flush-write-stream","bole","fastbench", +"flush-write-stream","midnight-smoker","pino-pretty","steed","postinstall","lifecycle", +"devpostinstall","entry","irregular-plurals","plurals","count","irregular","noun","nouns","@pm2/agent","@pm2/js-api", +"@pm2/io","@pm2/pm2-version-check","@pm2/blessed","cli-tableau","fclone","pidusage","pm2-axon","pm2-axon-rpc", +"pm2-deploy","pm2-multimeter","vizion","logs","kraken","load balancer","lb","load-balancer","kubernetes","k8s", +"pm2-docker","runtime","graceful","node-pm2","production","keymetrics","node.js monitoring","strong-pm","supervisord", +"pm2.io","ghost production","process manager","probes","keep process alive","process configuration","clustering", +"cluster cli","dev ops","tap-dot","PNG","js-png","node-png","png-parse","pnpm10","dependency manager","hardlinks", +"prune","rapid","symlinks","uninstall","poe","economy","ninja","poe.ninja","poe economy","path of exile", +"path of exile economy","path of exile ninja","poe economy api","path of exile api","poe.watch api","poe.ninja api", +"babel-plugin-preval","pushstate-server","tsgen","glamor","inline-styles","color manipulate","color manipulation", +"curried color manipulation","@popperjs/bundle","@popperjs/eslint-config-popper","@popperjs/test","@popperjs/test-utils", +"nuget-publish","popperjs","position","attached","ports","source map","manipulation","jison-gho","calculation","calc", +"postcss-reporter","read-cache","eslint-config-problems","@csstools/utilities","comma","hsl","hsla","hwb","rgba", +"caniuse-api","@types/caniuse-api","pixrem","pleeease-filters","postcss-apply","postcss-attribute-case-insensitive", +"postcss-color-function","postcss-color-gray","postcss-color-hex-alpha","postcss-color-hsl","postcss-color-hwb", +"postcss-color-rebeccapurple","postcss-color-rgb","postcss-color-rgba-fallback","postcss-font-family-system-ui", +"postcss-font-variant","postcss-image-set-polyfill","postcss-initial","postcss-media-minmax", +"postcss-pseudo-class-any-link","postcss-pseudoelements","postcss-replace-overflow-wrap","postcss-selector-matches", +"postcss-selector-not","cssrecipes-custom-media-queries","cssrecipes-defaults","cssrecipes-grid", +"cssrecipes-utils","cssrecipes-vertical-rhythm","eslint-config-i-am-meticulous","isogram","markdown-it-toc-and-anchor", +"metalsmith-collections","metalsmith-filenames","metalsmith-md","metalsmith-react","metalsmith-rename","metalsmith-rss", +"metalsmith-url","metalsmith-watch","nano-logger","npmpub","postcss-browser-reporter","react-svg-inline","to-slug-case", +"webpack-nano-logs","cssnext","@csstools/cascade-layer-name-parser","at-rule","atrule","csswg","media","queries", +"declarative","selectors","empty","at-rules","@keyframes","@counter-style","flexbugs","flex","postcss-less", +"postcss-styl","quickapp","PHP","sss","image-set","node modules","postcssrc","postcss.config.js","midas","postcss-short", +"postcss-dark-theme-class","cssnano-utils","font-family","font-weight","@types/cssesc","css-modules", +"@csstools/selector-resolve-nested","atrules","children","nestings","@csstools/normalize.css","postcss-browser-comments", +"sanitize.css","@csstools/postcss-tape","normalizes","fixes","@csstools/postcss-alpha-function", +"@csstools/postcss-color-function","@csstools/postcss-color-function-display-p3-linear", +"@csstools/postcss-color-mix-function","@csstools/postcss-color-mix-variadic-function-arguments", +"@csstools/postcss-content-alt-text","@csstools/postcss-contrast-color-function", +"@csstools/postcss-exponential-functions","@csstools/postcss-font-format-keywords","@csstools/postcss-gamut-mapping", +"@csstools/postcss-gradients-interpolation-method","@csstools/postcss-hwb-function","@csstools/postcss-ic-unit", +"@csstools/postcss-initial","@csstools/postcss-light-dark-function","@csstools/postcss-logical-float-and-clear", +"@csstools/postcss-logical-overflow","@csstools/postcss-logical-overscroll-behavior","@csstools/postcss-logical-resize", +"@csstools/postcss-logical-viewport-units","@csstools/postcss-media-minmax", +"@csstools/postcss-media-queries-aspect-ratio-number-values","@csstools/postcss-mixins","@csstools/postcss-nested-calc", +"@csstools/postcss-normalize-display-values","@csstools/postcss-oklab-function", +"@csstools/postcss-position-area-property","@csstools/postcss-property-rule-prelude-list", +"@csstools/postcss-random-function","@csstools/postcss-relative-color-syntax","@csstools/postcss-scope-pseudo-class", +"@csstools/postcss-sign-functions","@csstools/postcss-stepped-value-functions", +"@csstools/postcss-syntax-descriptor-syntax-production","@csstools/postcss-system-ui-font-family", +"@csstools/postcss-text-decoration-shorthand","@csstools/postcss-trigonometric-functions", +"@csstools/postcss-unset-value","css-blank-pseudo","css-has-pseudo","css-prefers-color-scheme","postcss-clamp", +"postcss-dir-pseudo-class","postcss-double-position-gradients","postcss-focus-within","postcss-gap-properties", +"postcss-lab-function","postcss-logical","postcss-overflow-shorthand","postcss-page-break","postcss-place","lists", +"postcss-syntax","@jsopen/objects","doublylinked","lightning-pool","postgres-bytea","power-tasks","putil-promisify", +"putil-varhelpers","transformations","processor","ltgt","vuvuzela","spark-md5","level-codec","fetch-cookie", +"double-ended-queue","level-write-stream","empower","power-assert-formatter","universal-deep-strict-equal","dereserve", +"licensify","package-json-filterify","precommit","@actions/github","@actions/glob", +"babel-plugin-transform-rename-properties","errorstacks","kolorist","virtual dom","dom diff","binary-searching", +"jest-light-runner","jest-specific-snapshot","@vue/language-plugin-pug","prettier-plugin","imports","organize-imports", +"glob-fs","humanized","si","locale","localized","renderkid","jitter","exception","error-handling","parse-ms", +"milliseconds","period","hrtime","@pkgr/core","mercurial","hg","vcs","@prisma/config","@prisma/engines", +"@prisma/studio-core","ohash","package-up","ts-pattern","@prisma/dmmf","line-replace","@prisma/debug","openapi-fetch", +"xdg-app-paths","@libsql/client","@prisma/client","@prisma/migrate","get-port-please","@prisma/generator", +"@prisma/internals","checkpoint-client","openapi-typescript","@prisma/fetch-engine","@prisma/get-platform", +"@types/better-sqlite3","@prisma/adapter-libsql","@prisma/credentials-store", +"@prisma/management-api-sdk","@prisma/driver-adapter-utils","@prisma/client-generator-registry", +"@opentelemetry/context-async-hooks","ORM","Prisma","Prisma CLI","prisma2","JS","TS","SQL","SQLite","Postgres", +"PostgreSQL","CockroachDB","MySQL","MariaDB","MSSQL","SQL Server","SQLServer","MongoDB","MCP","danger","docdash", +"gulp-terser","regexpp","webfont","prism","node-rest-client","URIjs","svn","customize","sisteransi","interact", +"uglifyify","uglifyjs","alpha-sort","html-event-attributes","mdast-zone","svg-element-attributes","svg-event-attributes", +"@protobufjs/aspromise","@protobufjs/base64","@protobufjs/codegen","@protobufjs/eventemitter","@protobufjs/fetch", +"@protobufjs/float","@protobufjs/inquire","@protobufjs/path","@protobufjs/pool","@protobufjs/utf8","browserify-wrap", +"git-semver-tags","protobuf","protocol-buffers","serialization","@types/q","@types/jasminewd2","gulp-clang-format", +"natives","tslint-eslint-rules","vrsource-tslint-rules","webdriverjs","basic-auth-parser", +"@types/args","squid","privoxy","mod_proxy","via","x-forwarded-for","fill-keys","module-not-found-error", +"native-hello-world","cp-sugar","elegant-status","pug-load","pug-lexer","pug-linker","pug-parser","pug-filters", +"pug-runtime","pug-code-gen","pug-strip-comments","jstransformer-uglify-js","jstransformer-markdown-it","tap-bail","idn", +"idna","dns","domain","chromium-bidi","puppeteer-core","typed-query-selector","purge","fluent","qr code", +"@browserify/envify","@browserify/uglifyify","common-shakeify","has-override-mistake","unassertify", +"decode-uri-component","filter-obj","split-on-first","param","parameter","searchparams","retape","tap-esm","synchronous", +"FIFO","lifo","LIFO","work","queue js","job queue","job scheduling","task queue","ordered","iterate","linked list", +"dequeue","shift","item","parchment","quill-delta","@types/highlight.js","transpile-webpack-plugin", +"eslint-import-resolver-webpack","fuzzysort","grunt-search","eslint-plugin-json-es","@qunitjs/browserstack-runner", +"dom-element-descriptors","@types/qunit","@release-it-plugins/lerna-changelog","qunit-plugin","exists-stat", +"js-reporters","browserstack-runner","testling","requestAnimationFrame","babel-plugin-import-export-rename","envvar", +"sanctuary","sanctuary-identity","xyz","tacit","point-free","curried","fantasy-land","words","sample","timed-out", +"exceptions","sentry","unpipe","@rc-component/father-plugin","father-build","rc-test","react-slider","slider", +"react-tooltip","@types/responselike","react-addon","@apollo/react-common","@apollo/react-components", +"@apollo/react-hoc","@apollo/react-hooks","@apollo/react-ssr","@restart/ui","@restart/hooks","uncontrollable", +"prop-types-extra","ecosystem-react","@icons/material","material-colors","reactcss","@case/eslint-config", +"@storybook/addon-centered","babel-plugin-transform-rename-import","chai-spies","jsx-loader","react-context", +"react-mark","testdom","color picker","sketch","photoshop","html-webpack-tags-plugin","copy to clipboard", +"@react-docgen/cli", +"date-fns-tz","is-root","detect-port-alt","@react-dnd/invariant","@react-dnd/shallowequal","dnd-core","@types/doctrine", +"documentation-generation","attr-accept","file-selector","@babel/plugin-proposal-do-expressions", +"@babel/plugin-proposal-logical-assignment-operators","@babel/plugin-proposal-pipeline-operator","@commitlint/prompt", +"@size-limit/webpack-why","imagemin-cli","webpack-blocks","jest-fetch-mock","settle-promise","overlay","redbox","crash", +"react-side-effect","eslint-config-nfl","karma-chai-sinon","karma-html-reporter","nfl","head","title","meta","noscript", +"jest-fixed-jsdom","form-validation","enzyme-adapter-react-15","react-mount","yarn-deduplicate","live","hot", +"use-sync-external-store","@babel/plugin-proposal-async-generator-functions","eslint-plugin-jest-dom","viewport", +"intersection","observer","lazy load","inview","useInView","useIntersectionObserver","@formatjs/ecma402-abstract", +"@formatjs/icu-messageformat-parser","@formatjs/intl","intl-messageformat","eslint-config-es5","rehype-starry-night", +"exenv","@webcomponents/custom-elements","dialog","babel-browser-transform","inject-loader","isparta-loader", +"karma-jasmine-diff-reporter","lodash.range","transitiongroup","spring", +"tween","motion","transition","nullthrows","metro-runtime","hermes-compiler","metro-source-map","flow-enums-runtime", +"@react-native/codegen","@react-native/js-polyfills","@react-native/gradle-plugin","@react-native/assets-registry", +"@react-native/normalize-colors","@jest/create-cache-key-function","@react-native/virtualized-lists", +"babel-plugin-syntax-hermes-parser","@react-native/community-cli-plugin","app-framework","mobile-development", +"@react-native-community/cli","@react-native/eslint-config","@react-native/typescript-config","react-native-builder-bob", +"react-native-component","keychain","svg2ttf","fontisto","evil-icons","feather-icons","oslllo-svg-fixer", +"svgicons2svgfont","simple-line-icons","@entypo-icons/core","css-social-buttons","osx","macos", +"@cmfcmf/docusaurus-search-local","react-transform-hmr","currency","number-format","require-hijack","onclick","outside", +"onclickoutside","@rollup/plugin-sucrase","eslint-plugin-ft-flow","hermes-eslint","@types/use-sync-external-store", +"matchmediaquery","@types/hyphenate-style-name","@types/match-media-mock","@types/matchmediaquery","match-media-mock", +"media queries","respond","matchMedia","wireit","premove","redux-devtools","redux-devtools-dock-monitor", +"redux-devtools-log-monitor","combobox","multiselect","json2mq", +"@playwright/experimental-ct-react","foundation-apps","slick-carousel","why-did-you-update","slick","carousel", +"Image slider","orbit","@tippyjs/react","@vxna/mini-html-webpack-template","clipboard-copy","common-dir", +"es6-object-assign","function.name-polyfill","glogg","javascript-stringify","jss","jss-plugin-camel-case", +"jss-plugin-compose","jss-plugin-default-unit","jss-plugin-global","jss-plugin-isolate","jss-plugin-nested","listify", +"mini-html-webpack-plugin","q-i","qss","react-docgen-annotation-resolver","react-docgen-displayname-handler", +"react-group","strip-html-comments","type-detect","@types/buble","@types/copy-webpack-plugin","@types/escodegen", +"@types/hash-sum","@types/keymirror","@types/markdown-to-jsx","@types/terser-webpack-plugin","@types/type-detect", +"@types/webpack-dev-server","deabsdeep","deepfreeze","dog-names","eslint-config-tamia","keymirror","strip-shebang", +"scalable vector graphics","svginjector","TapEventPlugin","300ms","react-testing","@4tw/cypress-drag-drop", +"vite-plugin-istanbul","toast","alert","snackbar","message","commoner","jstransform","coverify","es3ify","esprima-fb", +"grunt-jest", +"jasmine-tapreporter","populist","transition-group","transitions","react-codemirror","eslint-config-react", +"eslint-plugin-relay","@babel/preset-stage-2","jest-environment-puppeteer","@babel/plugin-transform-flow-comments", +"scrolling","infinite","virtualized","fixed","es6-module-jstransform","@storybook/addon-storysource","customize-cra", +"holderjs","react-prism","esbuild-plugin-alias","tap-mocha-reporter","line by line","repl","tiny-invariant", +"@types/esprima","flow-parser","refactoring","pretty-printing","prepare","change-emitter","higher-order", +"microcomponentization","composition","lister","@redis/bloom","@redis/client","@redis/json","@redis/search", +"@redis/time-series","@redocly/openapi-core","@cfaester/enzyme-adapter-react-18","docusaurus-theme-redoc", +"docusaurus-plugin-redoc","@docusaurus/theme-common","api-doc","docusaurus-preset","netlify-plugin-cache","predictable", +"replay","elm","just-curry-it","reduce-reducers","@vitest/coverage-c8","eslint-config-unicorn-camelcase", +"flux-standard-action","actions","insert-line","redux-immutable","lodash-webpack-plugin","@redux-saga/core","saga", +"effects","side effects","thunk", +"redux-middleware","ecmarkup","gulp-emu","gulp-live-server","gulp-sequence","reflect","regenerator","abstract", +"is-hidden","rehype-plugin","is-absolute-url","external","hast-util-properties-to-mdx-jsx-attributes", +"eslint-config-remcohaszing","snapshot-fixtures","@nodeutils/defaults-deep","@phun-ky/typeof","issue-parser", +"wildcard-match","@octokit/request-error","mentoss","mock-stdio","remark-preset-webpro","distribution","intern", +"markdown-extensions","unified-args","footnote","remark-plugin","remark-slug","mermaid-isomorphic", +"hast-util-from-html-isomorphic","mermaidjs","remark-comment-config","remark-contributors","remark-heading-gap", +"remark-license","remark-lint-definition-spacing","remark-lint-fenced-code-flag","remark-lint-file-extension", +"remark-lint-final-definition","remark-lint-first-heading-level","remark-lint-heading-style", +"remark-lint-no-consecutive-blank-lines","remark-lint-no-emphasis-as-heading","remark-lint-no-file-name-articles", +"remark-lint-no-file-name-consecutive-dashes","remark-lint-no-file-name-irregular-characters", +"remark-lint-no-file-name-mixed-case","remark-lint-no-file-name-outer-dashes","remark-lint-no-heading-indent", +"remark-lint-no-heading-punctuation","remark-lint-no-missing-blank-lines","remark-lint-no-multiple-toplevel-headings", +"remark-lint-no-shell-dollars","remark-lint-no-table-indentation","remark-lint-no-tabs", +"remark-lint-ordered-list-marker-value","remark-lint-table-pipe-alignment","remark-retext","retext-english", +"retext-preset-github","remark-lint-correct-media-syntax","remark-lint-definition-sort", +"remark-lint-link-title-style","remark-lint-maximum-heading-length","remark-lint-maximum-line-length", +"remark-lint-mdx-jsx-attribute-sort","remark-lint-mdx-jsx-no-void-children","remark-lint-mdx-jsx-quote-style", +"remark-lint-mdx-jsx-self-close","remark-lint-mdx-jsx-shorthand-attribute","remark-lint-mdx-jsx-unique-attribute-name", +"remark-lint-media-style","remark-lint-no-duplicate-defined-urls","remark-lint-no-duplicate-headings-in-section", +"remark-lint-no-empty-url","remark-lint-no-heading-like-paragraph","remark-lint-no-hidden-table-cell", +"remark-lint-no-html","remark-lint-no-paragraph-content-indent","remark-lint-no-reference-like-url", +"remark-lint-no-unneeded-full-reference-image","remark-lint-no-unneeded-full-reference-link","retext-preset-wooorm", +"wooorm","autolinker","caseless","aws-sign2","oauth-sign","tunnel-agent","forever-agent","har-validator","is-typedarray", +"http-signature","taper","karma-cli","stealthy-require","request-promise-core","thenable","index.js", +"@typescript-eslint/eslint-plugin-tslint","@typescript/analyze-trace","eslint-plugin-typescript","micro-memoize", +"ResizeObserver","path-parse","supports-preserve-symlinks-flag","copy-dir","adjust-sourcemap-loader","cls-hooked", +"myrmidon","conventional-changelog-eslint","eslint-config-incredible","eslint-plugin-censor","eslint-plugin-no-secrets", +"eslint-plugin-scanjs-rules","fatum","node-package-tester","semantic-release-telegram","vesta","documentate", +"autodocumentate","ewma","spdy","restify-errors","escape-regexp-component","watershed", +"restify-clients","autocannon-compare","DTrace","quit","shutdown","sigterm","sigint","terminate","kill","NoSQL","reql", +"query language","leak","deep-copy","fast-copy","fastest-json-copy","nano-copy","plain-object-clone","deep-clone", +"deepclone","deepcopy","performant","fastclone","fastcopy","fast-clone","fast-deep-clone","fast-deep-copy", +"package-json-from-dist","rm -rf","rm -fr","prebuild","run-script-os","targetpractice","Automation","mouse","pixel", +"recognition","autohotkey","machine","learning","@mermaid-js/mermaid-cli","@shikijs/vitepress-twoslash", +"@vue/language-server","acorn-import-assertions","date-time","flru","npm-audit-resolver","wasm-pack","bundling", +"rollup-plugin","js-cleanup","rollup-plugin-jsx","sourcemap-validator","removal","@types/d3-drag","@types","commenting", +"package-name-regex","spdx-expression-validate","spdx-satisfies","gulp-conventional-changelog","rollup-plugin-prettier", +"rollup-plugin-strip-banner","browserify-fs", +"buffer-es6","process-es6","sourceMappingURL","@types/find-cache-dir","@types/graphlib","graphlib","rollup-plugin-re", +"@types/d3-array","@types/d3-color","@types/d3-force","@types/d3-hierarchy","@types/d3-scale","@types/d3-shape", +"visualizer","treemap","sunburst","diagram","@ampproject/toolbox-optimizer","@babel/plugin-syntax-bigint", +"@capsizecss/metrics","@edge-runtime/cookies","@edge-runtime/ponyfill","@edge-runtime/primitives","@napi-rs/triples", +"@next/polyfill-module","@next/polyfill-nomodule","@next/react-refresh-utils","@next/swc","@taskr/clear","@taskr/esnext", +"@types/amphtml-validator","@types/babel__generator","@types/ci-info","@types/content-disposition", +"@types/express-serve-static-core","@types/fresh","@types/lodash.curry","@types/path-to-regexp","@types/platform", +"@types/send","@types/text-table","@types/ua-parser-js","amphtml-validator","async-sema","cli-select","comment-json", +"edge-runtime","ignore-loader","lodash.curry","native-url","server-only","string-hash","taskr","unistore","watchpack", +"ember-cli-progress","rtl","ltr","run series","LINQ","FRP","Reactive","Rx","RxJS", +"@angular-devkit/build-optimizer","@types/source-map","check-side-effects","rollup-plugin-alias","rollup-plugin-inject", +"tslint-etc","tslint-no-toplevel-property-access","tslint-no-unused-expression-chai","web-streams-polyfill","ReactiveX", +"ReactiveExtensions","Streams","Observables","Stream","buffer allocate","node security","uninitialized","mock-env", +"dist-tag","prepublish","@sailshq/lodash","@sailshq/router","captains-log","common-js-file-extensions","@sailshq/csurf", +"flaverr","i18n-2","include-all","machine-as-action","machinepack-process","machinepack-redis","merge-defaults", +"merge-dictionaries","parley","rttc","sails-generate","sails-stringfile","skipper","sort-route-addresses","whelk", +"machinepack-fs","@sailshq/request","root-require","sails-hook-orm","sails-hook-sockets","sails.io.js", +"session-file-store","mvc","web-framework","sailsjs","sails.js","truncate-utf8-bytes","mktemp","filename","parse-srcset", +"eslint-config-apostrophe","material-components-web","node-sass-glob-importer","markdown-model","bare-script", +"element-model","food","drink","helpful", +"opensourcesoftware","teaching","experimentation","applications","ec","ecdh","ecdsa","seed","@bazel/runfiles", +"@semantic-release/error","aggregate-error","env-ci","find-versions","git-log-parser","import-from-esm","p-each-series", +"file-url","mockserver-client","p-retry","stream-buffers","author","@fluentui/react-component-event-listener", +"@fluentui/react-component-ref","@semantic-ui-react/event-stack","keyboard-key","@artsy/fresnel","@babel/standalone", +"@percy/cli","@percy/cypress","anchor-js","babel-plugin-filter-imports","babel-plugin-transform-react-handled-props", +"babel-plugin-universal-import","chai-enzyme","react-ace","react-codesandboxer","react-source-render","react-static", +"react-static-routes","react-universal-component","satisfied","semantic-ui-css","ta-scripts", +"terser-webpack-plugin-legacy","eslint-config-standard-jsx","standard-engine","bikeshed","semicolon","@hapi/joi","eraro", +"fast-safe-stringify","gate-executor","gubu","jsonic","lodash.defaultsdeep","optioner","ordu","patrun","rolling-stats", +"seneca-transport","use-plugin","@seneca/test-plugin","bench","gex", +"lab-transform-typescript","seneca-entity","seneca-error-test","seneca-joi","seneca-promisify","summary","micro-service", +"micro-services","micro service","minimum","viable","product","Sentimental","nlp","wkx","dottie","sequelize-pool", +"toposort-class","retry-as-promised","ibm_db","mariadb","p-props","p-settle","node-hook","pg-hstore","chai-datetime", +"snowflake-sdk","@octokit/types","js-combinatorics","esdoc-standard-plugin","esdoc-inject-style-plugin", +"esdoc-ecmascript-proposal-plugin","semantic-release-fail-on-major-bump","db2","snowflake","object relational mapper", +"@serialport/stream","@serialport/binding-mock","@serialport/bindings-cpp","@serialport/parser-ready", +"@serialport/parser-regex","@serialport/parser-cctalk","@serialport/parser-readline","@serialport/parser-delimiter", +"@serialport/parser-byte-length","@serialport/parser-spacepacket","@serialport/parser-slip-encoder", +"@serialport/parser-packet-length","@serialport/parser-inter-byte-timeout","ccTalk","com port","COM","data logging", +"hardware","modem","nodebots","RFID","sensor","serial port","sms gateway","sms","UART","update-check","@zeit/schemas", +"is-port-reachable","@vercel/style-guide","@types/serve-handler","temp-path","favicon","@serverless/utils", +"@commitlint/cz-commitlint","@serverless/test","serverless","serverless plugins","aws lambda","amazon web services", +"serverless.com","@aws-cdk/aws-lambda-python-alpha","@aws-sdk/client-dynamodb","@aws-sdk/client-eventbridge", +"@aws-sdk/client-lambda","@aws-sdk/client-sns","@aws-sdk/client-sqs","@aws-sdk/client-sts","@aws-sdk/lib-dynamodb", +"@aws-sdk/util-dynamodb","aws-cdk-lib","aws-iot-device-sdk","caporal","json-format-highlight", +"@types/aws-iot-device-sdk","@types/aws4","esbuild-runner","jsii","jsii-diff","jsii-docgen","jsii-pacmak","eventbridge", +"flow-remove-types","isequalwith","@img/colour","emnapi","exif-reader","@cpplint/cli","@emnapi/runtime", +"@img/sharp-libvips-dev","@img/sharp-libvips-win32-x64","@img/sharp-libvips-dev-wasm32","@img/sharp-libvips-win32-ia32", +"@img/sharp-libvips-win32-arm64","dzi","thumbnail","libvips","vips","quote","shelljs-changelog","shelljs-release", +"travis-check-changes","makefile","clean-publish","short","tiny","bitly","shorten","tinyid","should-equal", +"should-format","should-type", +"should-type-adaptors","should-util","eslint-config-shouldjs","grunt-endline","quiet-grunt","semver-sort", +"shelljs-plugin-open","transforms","@kwsites/file-exists","@kwsites/promise-deferred","@kwsites/promise-result", +"@simple-git/babel-config","source control","custom-event","js-correct-lockfile","rollup-plugin-analyzer", +"eslint-config-important-stuff","@sinonjs/samsam","@sinonjs/eslint-plugin-no-prototype-methods","@studio/changes", +"esbuild-plugin-istanbul","clock","vendor","mocks-and-spies","crypt3","fs-ext","express-json5","render-readme", +"sinopia-htpasswd","browserify-handlebars","@polka/url","totalist","bytes-iec","nanospinner","budget", +"performance budget","file size","directory size","get size","qpass","amazon-cognito-identity-js","basic-node-server", +"skapi","seperator","is-fullwidth-code-point","random-item","get-folder-size","js-extend","math-sum","prettier-bytes", +"tablify","slow","github-changes","urlify","standard-json","pretty output","snazzy standard","standard pretty", +"stylish for standard","stylish formatter","stylish reporter","stylish standard","axios-ntlm","xml-crypto", +"@types/sax","base64id","socket.io-adapter","io","@socket.io/component-emitter","eventsource","sockjs","separated", +"@anvilco/apollo-server-plugin-introspection-metadata","@graphql-tools/load-files","@graphql-tools/merge", +"@graphql-tools/utils","graphql-scalars","json-stringify-pretty-compact","microfiber","bdd-lazy-var","introspection", +"introspection-query","string-to-stream","binary-split","callback-stream","gulp-benchmark","imageinfo","prettydiff", +"sprity-css","sprity-lwip","object-stream","through2-spy","sprites","coordinates","css-sprite","asn1","bcrypt-pbkdf", +"integrity","subresource integrity","sri","sri hash","sri string","sri generator","encrypt","st","firestore", +"shuruhatik","long-stack-traces","version-guard","run-parallel-limit","conventional-changelog-config-spec", +"dotgitignore","stringify-package","std-mocks","recommended","check-more-types","lazy-ass","ban-sensitive-files", +"deps-ok","dont-crack","git-issues","pre-git","simple-commit-message","winser","modern-syslog","etsy","metric", +"aggregation", +"@vitest/expect","@storybook/global","store2","exsolve","empathic","picoquery","modern-tar","fetch-retry", +"@types/npmlog","@vitest/utils","launch-editor","unique-string","@vitest/mocker","bundle-require","flush-promises", +"@yarnpkg/libzip","browser-dtector","react-inspector","@react-aria/tabs","deep-object-diff","@react-aria/utils", +"@polka/compression","@types/detect-port","@ngard/tiny-isequal","@react-aria/toolbar","@react-stately/tabs", +"@react-types/shared","@storybook/docs-mdx","get-npm-tarball-url","use-resize-observer","@radix-ui/react-slot", +"@react-aria/landmark","@react-aria/overlays","@types/pretty-hrtime","@discoveryjs/json-ext","lazy-universal-dotenv", +"react-transition-state","@react-stately/overlays","@react-aria/interactions","react-syntax-highlighter", +"@radix-ui/react-scroll-area","@devtools-ds/object-inspector","@types/react-syntax-highlighter", +"@aw-web-design/x-default-browser","@fal-works/esbuild-plugin-global-externals","design-systems","component-testing", +"@glen/jest-raw-loader","@storybook/addon-onboarding","@storybook/addon-storyshots", +"@storybook/addon-storyshots-puppeteer","@storybook/blocks","@storybook/test","eslint-config-torchbox","storybookjs", +"patternlab","django","django-pattern-library","django-templates","jinja2","findit2","inside","funsert","into-stream", +"Assert","music-metadata","livestream","livestreaming","gulp-rimraf","string.js","stringjs","S","s","codsen-utils", +"ranges-apply","ranges-push","string-left-right","ast-monkey-traverse","ranges-invert","jsp","mixed","stri","xhtml", +"get-east-asian-width","visual","columns","fullwidth","full-width","wcswidth","full","cjk","chinese","japanese","korean", +"fixed-width","east-asian-width","undici-types","payment processing","credit cards","generator-loopback", +"loopback-sdk-angular-cli","nodefly-register","strong-agent","strong-arc","strong-build","strong-deploy", +"strong-mesh-models","strong-registry","strong-start","strong-supervisor","core-util-is","strong-debugger", +"strong-swagger-ui","swagger-ui","utf-8-validate","LoopBack","Platform","alerts","event loop","heroku","master", +"metrics","nodeops","npmrc","openshift","ops","pm","response", +"slc","slowest functions","strong-cli","strong-cluster-control","strongops","upstart","@bundled-es-modules/deepmerge", +"@bundled-es-modules/glob","@bundled-es-modules/memfs","@zip.js/zip.js","path-unified","@esm-bundle/chai-as-promised", +"@rollup/browser","@shoelace-style/shoelace","@web/test-runner-commands","hanbi","jsdoc-escape-at", +"jsdoc-tsimport-plugin","starlight-links-validator","style dictionary","dictionary","Android","@types/stylis", +"css-to-react-native","@types/js-beautify","@types/react-frame-component","@types/shallowequal","react-frame-component", +"stylis-plugin-rtl","ts-toolbelt","stylis-rule-sheet","zeit","hack","hacks","globjoin","mathml-tag-names","svg-tags", +"@changesets/get-github-info","@stylelint/prettier-config","@stylelint/remark-preset","@types/balanced-match", +"@types/file-entry-cache","@types/global-modules","@types/globjoin","@types/imurmurhash","@types/postcss-less", +"@types/svg-tags","eslint-config-stylelint","jest-preset-stylelint","postcss-sass","stylelint-config","shortcss", +"css-values","babel-register-ts","stylelint-plugin","delaration-strict-value","keyword","z-index","postcss-sorting", +"eslint-config-hudochenkov","postcss-styled-syntax","prettier-config-hudochenkov","postcss-media-query-parser", +"postcss-resolve-nested-selector", +"github-contributors-list","bootstrap-styl","cookiejar","should-http","tinyify","frisbee","super","promised","supports", +"capability","truecolor","16m","esrap","zimmerframe","@types/sade","vscode-languageserver", +"vscode-languageserver-protocol","svelte2tsx","svelte-language-server","@kiwi/eslint-config","@kiwi/prettier-config", +"@types/pug","postcss-easy-import","prettysize","@resvg/resvg-js","playwright-chromium","eslint-plugin-jest-formatting", +"sw-precache","git-release-notes","precache","tape-promise","autogen","promise.any","multilang-extract-comments", +"@readme/eslint-config","readmeio","swagger-nestjs","swagger-templates","swagger UI","istanbul-badges-readme","nodelint", +"still","mocha-phantomjs","travis-cov","jinja","swipe","framework7","gallery","slideshow","http-response-object", +"sync-rpc","then-request","flowgen2","system information","sysinfo","freebsd","openbsd","netbsd","cpu","cpuload", +"physical cores","logical cores","cores","socket type", +"fsstats","diskio","block devices","netstats","network interfaces","network connections","network stats","iface", +"printer","processes","users","internet","battery","docker stats","docker processes","graphic card","graphic controller", +"gpu","smart","disk layout","audio","bluetooth","wifi","wifinetworks","virtual box","virtualbox","vm","BIOS","chassis", +"symbol-es6","@jsenv/file-size-impact","construct-style-sheets-polyfill","hase","draht","limes","lusca","partof", +"timer2","uuidv4","crypto2","nocache","datasette","json-lines","processenv","stethoskop","flaschenpost", +"commands-events","nodeenv","roboter","assertthat","json-lines-client","cqs","cqrs","@codspeed/vitest-plugin", +"className","classList","override","@tailwindcss/oxide","@tapjs/after","@tapjs/after-each","@tapjs/asserts", +"@tapjs/before","@tapjs/before-each","@tapjs/chdir", +"@tapjs/core","@tapjs/filter","@tapjs/fixture","@tapjs/intercept","@tapjs/mock","@tapjs/node-serialize","@tapjs/run", +"@tapjs/snapshot","@tapjs/spawn","@tapjs/stdin","@tapjs/test","@tapjs/typescript","@tapjs/worker","resolve-import", +"tapjs","tapjs plugin","tap-out","tapes","@ljharb/resumer","@ljharb/through","array.prototype.every","dotignore", +"has-dynamic-import","ecstatic","npm-run-posix-or-windows","harness","chownr","yallist","@isaacs/fs-minipass","chmodr", +"events-to-array","brittle","b4a","streamx","fast-fifo","actor system","DDD","actor-system","front end","back end", +"@parcel/packager-ts","@parcel/transformer-typescript-types","cz-format-extension","telegram","telegram-api", +"telegram-client-api","tdlib","tglib","node-addon","tempdir","tmpfile","unique","seventh","lazyness","tree-kit", +"chroma-js","string-kit","nextgen-events","@cronvel/get-pixels","256 colors","true color","input field","gpm", +"screenbuffer", +"textbuffer","32-bit","charm","resumer","visualwidth","80s","ibm","@jridgewell/source-map","@ls-lint/ls-lint","astring", +"es8","@types/uglify-js","@test-runner/core","@test-runner/default-view","@test-runner/live-view", +"@test-runner/oneline-view","@test-runner/tom","multiline-ts","spawn-process","only-allow","sinon-assert-stub", +"sinon-mocha-test","unlinted","example","@devexpress/bin-v8-flags-filter","@devexpress/callsite-record","bowser", +"chrome-remote-interface","device-specs","elegant-spinner","get-os-info","import-lazy","is-podman", +"log-update-async-hook","moment-duration-format-commonjs","os-family","pinkie","promisify-event","read-file-relative", +"replicator","testcafe-browser-tools","testcafe-hammerhead","testcafe-legacy-api","testcafe-reporter-json", +"testcafe-reporter-list","testcafe-reporter-minimal","testcafe-reporter-spec","testcafe-reporter-xunit", +"testcafe-selector-generator","time-limit-promise","unquote","url-to-options","@devexpress/gulp-qunit-harness", +"@ffprobe-installer/ffprobe","@testcafe/publish-please","@types/callsite","@types/dedent","@types/useragent", +"browserstack-connector","caller","dom-walk","eslint-plugin-hammerhead","express-ntlm","gulp-clone", +"gulp-ll-next","gulp-mocha-simple","gulp-step","mocha-reporter-spec-with-retries","openssl-self-signed-certificate", +"recursive-copy","testcafe-browser-provider-browserstack","automated","QA","@types/dockerode","docker-compose", +"properties-reader","ssh-remote-port-forward","@types/async-lock","@types/properties-reader","@types/tar-fs", +"stringify-object-es5","codeclimate-test-reporter","cross-conf-env","headerify","is-number","teenytest", +"teenytest-promise","test double","fireworm","printf","spawn-args","styled_string","bluebird-retry", +"chai-shallow-deep-equal","saucie","eslint-config-mdcs","jpeg-js","three.js","3d","virtual-reality","augmented-reality", +"webgl","webgl2","webaudio","webgpu","webxr","get-port-cli","node-stdlib-browser","user-streams","hundreds","polendina", +"stream-spigot","streams2","unexpand","homedir","tilde","collapse","number-is-nan","profile","stats","bee-dnd","bee-tag", +"bee-form","bee-icon","bee-rate","bee-step","bee-tabs","bee-tile", +"bee-tree","bee-affix","bee-alert","bee-badge","bee-label","bee-menus","bee-modal","bee-panel","bee-radio","bee-table", +"bee-anchor","bee-button","bee-drawer","bee-layout","bee-locale","bee-navbar","bee-select","bee-slider","bee-switch", +"bee-upload","bee-animate","bee-backtop","bee-loading","bee-message","bee-overlay","bee-popover","bee-svgicon", +"bee-tooltip","bee-calendar","bee-carousel","bee-cascader","bee-checkbox","bee-collapse","bee-dropdown","bee-timeline", +"bee-transfer","bee-clipboard","bee-breadcrumb","bee-datepicker","bee-form-group","bee-pagination","bee-popconfirm", +"bee-timepicker","bee-transition","bee-colorpicker","bee-input-group","bee-page-layout","bee-tree-select", +"bee-autocomplete","bee-button-group","bee-complex-grid","bee-form-control","bee-input-number","bee-notification", +"bee-progress-bar","bee-search-panel","bee-loading-state","bee-input-group-addon","gulp-cleancss","gulp-css-wrap", +"tinper-bee-core","less-plugin-inline-urls","tinper","bee", +"tinylibs","@deno/shim-deno-test","tinycolor","worker threads","thread pool","method","@types/react-native-vector-icons", +"pushalert","react-native toast","react-native-toastify","toastify","react-native-notification","expo","Typescript", +"node-resemble-js","processmd","of","tldts","set-cookie","RFC6265","RFC2965","tinytim","trace", +"typedarray.prototype.slice","forEach","html-select","html-tokenize","aggregate","bs-logger","make-error", +"babel-preset-es2016","typescript-loader","migrate","migration","migrations","cli-tool","@ts-morph/common", +"code-block-writer","static analysis","code refactor","create-require","@tsconfig/node10","@tsconfig/node12", +"@tsconfig/node14","v8-compile-cache-lib","@cspotcode/source-map-support","dprint","@swc/wasm","ntypescript", +"util.promisify","fast-json-patch","omit-deep","power-assign","bre","rete","rule engine","rules engine", +"javascript rule engine","js rule engine","inference system","@types/strip-bom","@tsd/typescript", +"eslint-config-xo-typescript","typedefs", +"typedefinitions","jsonc-simple-parser","polite-json","sync-content","Microsoft","codelyzer","tslint-divid", +"@types/make-dir","tslint-immutable","tslint-misc-rules","tslint-microsoft-contrib","tslint-consistent-codestyle", +"ts-lint","typescript-tslint-plugin","fix-dts-default-cjs-exports","joycon","ts-essentials","typescript runner", +"@mixmark-io/domino","turndown-attendant","grunt-mocha","grunt-markdown","grunt-component-io","grunt-push-release", +"grunt-regex-replace","jshint-path-reporter","mocha-unfunk-reporter","grunt-concat-sourcemap","tap-browser-color", +"tweetnacl-util","curve25519","ed25519","nacl","poly1305","public","salsa20","signatures","twemoji-parser","DOM", +"Twitter","type-coverage-core","tagged-tag","@typescript/vfs","generics","media-typer","checking","@gerrit0/mini-shiki", +"@material/material-color-utilities","typedoc-theme","typedoc-plugin","material-design","material-3","typedocplugin", +"JsDocs","cli-prompt","concatenate","ebook","pandoc","kindlegen","latex","@types/mongoose", +"mongodb-memory-server-global","mongoose-findorcreate","prettier-tslint", +"sql-highlight","@sqltools/formatter","gulpclass","@types/sha.js","@sap/hana-client","@types/gulp-rename", +"standard-changelog","@google-cloud/spanner","@types/gulp-sourcemaps","@dprint/formatter","@esfx/canceltoken", +"@dprint/typescript","azure-devops-node-api","monocart-coverage-reports","mocha-fivemat-progress-reporter", +"eslint-formatter-autolinkable-stylish","commandpost","@types/power-assert","intelli-espower-loader", +"@types/postcss-modules-local-by-default","@types/postcss-modules-scope","@types/icss-utils", +"@types/postcss-modules-extract-imports","@types/reserved-words","jest-environment-node-single-context", +"postcss-import-sync2","sass-svg","promise-finally","typings-core","tslint-config-standard","definition","ecma","jsmin", +"random-bytes","@uiw/formatter","@uiw/react-affix","@uiw/react-alert","@uiw/react-auto-link","@uiw/react-avatar", +"@uiw/react-back-top","@uiw/react-badge","@uiw/react-breadcrumb","@uiw/react-button-group","@uiw/react-calendar", +"@uiw/react-card","@uiw/react-carousel","@uiw/react-cascader","@uiw/react-checkbox","@uiw/react-collapse", +"@uiw/react-copy-to-clipboard","@uiw/react-date-input","@uiw/react-date-picker","@uiw/react-descriptions", +"@uiw/react-divider","@uiw/react-drawer","@uiw/react-dropdown","@uiw/react-empty","@uiw/react-file-input", +"@uiw/react-form","@uiw/react-grid","@uiw/react-layout","@uiw/react-list","@uiw/react-loader","@uiw/react-menu", +"@uiw/react-message","@uiw/react-modal","@uiw/react-month-picker","@uiw/react-notify","@uiw/react-pagination", +"@uiw/react-pin-code","@uiw/react-popover","@uiw/react-portal","@uiw/react-progress","@uiw/react-radio", +"@uiw/react-rate","@uiw/react-search-select","@uiw/react-search-tree","@uiw/react-select","@uiw/react-slider", +"@uiw/react-split","@uiw/react-steps","@uiw/react-switch","@uiw/react-table","@uiw/react-tabs","@uiw/react-tag", +"@uiw/react-textarea","@uiw/react-time-picker","@uiw/react-tooltip","@uiw/react-transfer","@uiw/react-tree", +"@uiw/react-tree-checked","media-query-fns","parsel-js","citty","hookable","mkdist","untyped","pretty-bytes-cli", +"browserify-header","@metcoder95/https-pem","dns-packet","jsondiffpatch","bail","trough","@types/extend","retext", +"unique-random","non-repeating","unist-util","xast","nlcst","visit","pullstream","match-stream","uncompress","pupa", +"is-npm","fixture-stdout","notifier","urn","uri mutation","url mutation","uri manipulation","url manipulation", +"uri template","url template","unified resource locator","unified resource identifier", +"query string","RFC 3986","RFC3986","RFC 6570","RFC6570","jquery-plugin","ecosystem:jquery","sauce-browsers", +"sauce-test","formstream","ylru","@eggjs/oxlint-config","@tsconfig/node18","@types/busboy","@types/proxy", +"@types/selfsigned","string.prototype.towellformed","urlopen","userprofile","yamlparser","browserscope","ua","ua-parse", +"ua-parser","user agent","user-agent","is-generator-function","is-typed-array","is-async-supported","rfc9562","bundt", +"diffs","find-parent-dir","githook","sanitisation","sanitise","@vue/shared","@vant/use","@vant/popperjs", +"@vue/runtime-core","diffable-html","vitest-canvas-mock","@vant/area-data","@vant/cli","@vant/eslint-config", +"@vant/icons","@vercel/go","@vercel/h3","@vercel/fun","@vercel/koa","@vercel/blob","@vercel/hono","@vercel/next", +"@vercel/node","@vercel/ruby","@vercel/rust","@vercel/elysia","@vercel/nestjs","@vercel/python","@vercel/express", +"@vercel/fastify","@vercel/redwood","@vercel/backends","@vercel/hydrogen", +"@vercel/build-utils","@vercel/detect-agent","@vercel/static-build","@vercel/remix-builder","epipebomb","promisepipe", +"@sentry/node","@types/title","jaro-winkler","@types/chance","@types/dotenv","@vercel/client","pcre-to-regexp", +"git-last-commit","@inquirer/search","@tootallnate/once","http-proxy-node16","@inquirer/checkbox","@inquirer/password", +"@vercel/frameworks","@vercel/error-utils","line-async-iterator","@vercel/fs-detectors","@types/load-json-file", +"@vercel/routing-utils","@types/npm-package-arg","@types/write-json-file","@vercel-internals/types", +"@edge-runtime/node-utils","json-parse-better-errors","@types/jest-expect-message","@vercel-internals/constants", +"@alex_neo/jest-expect-message","@types/json-parse-better-errors","@vercel-internals/get-package-json","extsprintf", +"err","create-banner","postcss-header","viewer","viewer.js","teex","remove-trailing-separator","fs-mkdirp-stream", +"is-valid-glob","lead","resolve-options","stream-composer","to-through","value-or-function","vinyl-sourcemap", +"vinyl-adapter","classic","browser-split","ev-store","x-is-array","x-is-string","run-browser","vtree","artichokie", +"periscopic","http-proxy-3","strip-literal","es-module-lexer", +"postcss-modules","@oxc-project/types","host-validation-middleware","dev-server","build-tool","dotenv-local", +"slash-path","vite-plugin-builder","api-router","api-routers","vite-plugin-api","vite-plugin-rest-api","express-router", +"file-system-based","rest-api","api-rest","Remix","Next.js","focus-trap","@shikijs/core","@shikijs/types", +"@vue/devtools-api","@vueuse/integrations","@iconify-json/simple-icons","@iconify/utils","@mdit-vue/shared", +"@mdit-vue/plugin-sfc","@mdit-vue/plugin-toc","markdown-it-mathjax3","@mdit-vue/plugin-title","@mdit-vue/plugin-headers", +"@types/markdown-it-emoji","@mdit-vue/plugin-component","@mdit-vue/plugin-frontmatter","@types/markdown-it-container", +"@types/postcss-prefix-selector","tinyrainbow","@vitest/runner","@vitest/snapshot","why-is-node-running", +"@vitest/pretty-format","birpc","local-pkg","@edge-runtime/vm","@antfu/install-pkg","node-localstorage","gulp-xo", +"vorpal-less","vorpal-repl","load-plugins","eyes","BDD","keytar","parse-semver","typed-rest-client","@types/read", +"@types/yazl","@types/cheerio","@types/url-join","@types/clone","@types/iconv-lite","vscode-oniguruma", +"@vue/runtime-dom","eslint-plugin-vue-libs", +"@babel/plugin-syntax-pipeline-operator","@intlify/shared","@intlify/core-base","@intlify/devtools-types","intlify", +"@intlify/vue-i18n-loader","@types/mini-css-extract-plugin","@types/webpack-merge","cache-loader","markdown-loader", +"pug-plain-loader","@vue-macros/common","ast-walker-scope","muggle-string","unplugin-utils","@pinia/colada", +"@types/nightwatch","@vue/language-core","chromedriver","faked-promise","nightwatch-helpers","de-indent", +"todomvc-app-css","foreachasync","sys","walkSync","exec-sh","outpipe","win-spawn","encrypted-attr", +"lodash.issafeinteger","waterline-schema","waterline-utils","active-record","vargs","bdd-with-opts","gulp-debug","mu2", +"promise-simple","sauce-connect-launcher","spawn-mocha-parallel","sv-selenium","web3-eth","web3-net","web3-core", +"web3-types","web3-utils","web3-errors","web3-eth-abi","web3-eth-ens","web3-eth-iban","web3-validator", +"web3-rpc-methods","web3-eth-accounts","web3-eth-contract","web3-eth-personal","web3-providers-ws","web3-rpc-providers", +"web3-providers-http","in3","ganache","web3-providers-ipc","eslint-config-base-web3","@truffle/hdwallet-provider", +"Ethereum","@solana/spl-token","@solana/web3.js","kva-email-service","micro-ed25519-hdkey","ssl-http-with-docker", +"tailwind-animation-extension","telegram-assistant","web3-react-task","sol","@webassemblyjs/ast", +"@webassemblyjs/wasm-edit","@webassemblyjs/wasm-parser","acorn-import-phases","chrome-trace-event","@codspeed/core", +"@types/neo-async","@types/xxhashjs","assemblyscript","bundle-loader","coffee-loader","hash-wasm","meriyah", +"rehype-sanitize","wast-loader","webassembly-feature","xxhashjs","lodash.partial","eslint-config-th0r", +"postcss-icss-values","@carrotsearch/foamtree","eslint-config-th0r-react","analyzer","chart","zoomable", +"@webpack-cli/info","@webpack-cli/configtest","@types/envinfo","@fastify/express","@types/on-finished","@types/sockjs", +"@types/bonjour","bonjour-service","@types/serve-index","@types/serve-static","ansi-html-community", +"@types/connect-history-api-fallback","klona","@types/sockjs-client","reloading","hot-reloading", +"@types/webpack-sources","eslint-config-shellscape","prettier-plugin-package","dts-cli","@types/flat","externals", +"typedarray-to-buffer","yaeti","networking","comet","RFC-6455","@silentbot1/nat-api","@thaunknown/simple-peer", +"@webtorrent/http-node","addr-to-ip-port","bitfield","bittorrent-dht","bittorrent-protocol","cache-chunk-store", +"chunk-store-iterator","cpus","create-torrent","cross-fetch-ponyfill","fs-chunk-store","fsa-chunk-store", +"immediate-chunk-store","join-async-iterator","load-ip-set","lt_donthave","memory-chunk-store","parse-torrent", +"random-iterate","speed-limiter","throughput","torrent-discovery","torrent-piece","uint8-util","unordered-array-remove", +"ut_metadata","ut_pex","@webtorrent/semantic-release-config","airtap-manual","airtap-system","bittorrent-tracker", +"chrome-net","disc","network-address","path-esm","webtorrent-fixtures","bittorrent","bittorrent client","mad science", +"p2p","peer-to-peer","peers","swarm","torrent","web torrent","webrtc data","web worker","a gogo","url-search-params", +"poly","buster","exorcist","microtime","cujo","Promises/A+","isexe","taffydb","unit.js","@dabh/diagnostics","logform", +"one-time","@dabh/eslint-config-populist","abstract-winston-transport","cross-spawn-async", +"hock","winston-compat","file-stream-rotator","@alcalzone/release-script","@alcalzone/release-script-plugin-license", +"daily-rotate-file","log-rotate","logrotate","winston3","bower-config","propprop","wiredep-cli","break","carriage", +"new-line","newline","return","soft","workbox-build","workbox","workboxjs","service worker","fetch requests","offline", +"file manifest","wordbreak","linewrap","writeFile","atomic","HyBi","Push","WebSocket","WebSockets","enstore", +"x-ray-crawler","x-ray-parse","scrape","is-function","parse-headers","ssf","wmf","crc-32","adler-32","codepage","fflate", +"exit-on-epipe","@sheetjs/uglify-js","markdown-spellcheck","xlsb","dbf","dif","sylk","cash-cat","codacy-coverage", +"globify","jsonpath","unminified-webpack-plugin","XML","cdata","CDATA","doctype","processing instruction","Javascript", +"transforming", +"convertor","converting","conversion","node-expat","dom-js","xmltest","DOMParser","XMLSerializer","find-cache-directory", +"func-xml","@babel/plugin-proposal-unicode-property-regex","@unicode/unicode-14.0.0","babel-plugin-array-includes", +"babel-plugin-transform-xregexp","unicode-property-value-aliases","regular expression","whitelist", +"@scion-scxml/test-framework","statechart","state machine","finite state machine","finite automata","scxml", +"interpreter","@types/deep-equal","@types/express-ws","@types/utf8","xterm-benchmark","terminal-emulator", +"jest-ts-webcompat-resolver","YAML","yaml2json","json2yaml","browserslist-generator","yargs-test-extends", +"babel-plugin-transform-inline-imports-commonjs","death","loud-rejection","repeating","request-capture-har","roadrunner", +"babel-preset-es2015-node4","babel-preset-node5","eslint-config-fb-strict","eslint-config-kittens", +"eslint-plugin-flow-vars","eslint-plugin-no-async-without-await","@yeoman/adapter","@yeoman/conflicter", +"@yeoman/namespace","@yeoman/transform","@yeoman/types","fly-import","grouped-queue","mem-fs","mem-fs-editor", +"which-package-manager","@yeoman/eslint","esmocha","sinon-test","github-username","yes","no","true", +"false","lenient","cli-list","fullname","parse-help","root-check","npm-keyword","yeoman-doctor","humanize-string", +"yeoman-character","registry-url","@jonahsnider/benchmark","pad-component","cowsay","say","zeromq","0mq","ømq","libzmq", +"binding","@types/cookie-parser","@types/express-useragent","@types/morgan","express-useragent","schemas", +"runtime types","DSL","@externs/nodejs","@types/systemjs","JSON2","char-split","express-state","firefox-profile", +"istanbul-middleware","shallow-copy","stack-mapper","tap-finished","zuul-localtunnel","browzers","bulk-require", +"zuul-ngrok","@phenomnomnominal/tsquery","Unit Testing","Storybook","motion-dom","motion-utils","@radix-ui/react-dialog", +"@thednp/dommatrix","react animation","pose","react pose","popmotion","framer","waapi","belalangkayu","rengginangbasi", +"tehtarik3","sort-array","compute-scroll-into-view","@docusaurus/module-type-aliases","@testing-library/preact", +"babel-plugin-no-side-effect-class-properties","babel-preset-react-native","flow-coverage-report", +"get-pkg-repo","enhanced input","autosuggest","typeahead","omnibox","WAI-ARIA","multiple selection","focus","keyboards", +"mice","pen","pointer","pseudos","ring","textarea","trackpad","@augment-vir/core","@date-vir/duration","deepcopy-esm", +"typed-event-target","@web/dev-server-esbuild","execute-in-browser","istanbul-smart-text-reporter","runstorm","augment", +"vir","augment-vir","toolchain","JSONC","JSX","TSX","GraphQL","@commercetools-frontend/application-components", +"@commercetools-frontend/application-config","@commercetools-frontend/assets", +"@commercetools-frontend/babel-preset-mc-app","@commercetools-frontend/mc-dev-authentication", +"@commercetools-frontend/mc-html-template","@commercetools/http-user-agent","@formatjs/cli-lib","@rollup/plugin-graphql", +"@svgr/babel-preset","@types/webpack-bundle-analyzer","@vitejs/plugin-react-swc","babel-plugin-formatjs", +"graphql-request","moment-locales-webpack-plugin","svg-url-loader","thread-loader", +"@commercetools/composable-commerce-test-data","@types/moment-locales-webpack-plugin","@vue/cli-plugin-babel", +"@vue/cli-plugin-typescript","@vue/cli-service","eslint-plugin-prettier-vue","rollup-plugin-vue","vue 3", +"@vue/cli-plugin-unit-mocha","symlink-dir","tokenize","dogstatsd","datadog","telegraf","adr", +"decision record","any decision record","architectural decision","architectural decision record","architecture decision", +"architecture decision record","software quality","bplist-parser","@types/katex","katex","tex","hyperlink", +"@type-challenges/utils","deserialization","deserialize","detect-europe-js","is-standalone-pwa","ua-is-frozen", +"client-hints","device","browser-detection","device-detection","os-detection","bot-detection","ai-detection", +"app-detection","crawler-detection","youch","@adonisjs/ace","@adonisjs/env","parse-imports","@adonisjs/fold", +"@adonisjs/hash","@adonisjs/repl","youch-terminal","@poppinss/utils","@adonisjs/config","@adonisjs/events", +"@adonisjs/health","@adonisjs/logger","@poppinss/colors","@poppinss/dumper","@poppinss/macroable","@adonisjs/bodyparser", +"@adonisjs/encryption","@adonisjs/application","@adonisjs/http-server","error-stack-parser-es","argon2","edge.js", +"@japa/assert","@japa/runner","@japa/snapshot","@japa/expect-type","@japa/file-system","@adonisjs/tsconfig", +"ts-node-maintained","@adonisjs/assembler","@types/test-console","@adonisjs/eslint-config","@adonisjs/prettier-config", +"adonisjs","@aneuhold/core-ts-api-lib","@aneuhold/core-ts-lib", +"@aneuhold/local-npm-registry","@aneuhold/main-scripts","@capacitor/cli","@trapezedev/project","@types/slice-ansi", +"resources","splash screen","webOS","@envelop/types","@envelop/instrumentation","@whatwg-node/promise-helpers", +"@ionic/cli-framework-output","@angular-eslint/eslint-plugin","@angular-eslint/eslint-plugin-template", +"@angular-eslint/schematics","ng-packagr","docz","docz-utils","docz-theme-default", +"@asdfgertyjhnpm/nesciunt-molestias-reprehenderit-occaecati","@drftgyhuji7npm/rem-sint-necessitatibus-possimus", +"@drftgyhuji7npm/repellendus-eum-et-itaque","typeerror","Reflect.getPrototypeOf","Int8Array","Array","configurable", +"minimal","descriptors","channel","matchAll","Uint32Array","Array.prototype.filter","setter","Uint16Array","exit-code", +"isConcatSpreadable","weakmap","syntaxerror","sharedarraybuffer","Object","Array.prototype.flat","toSorted","typesafe", +"preserve-symlinks","negative zero","[[Prototype]]","tester","ArrayBuffer.prototype.slice","byteOffset","zero", +"ArrayBuffer#slice","trimRight","getter","Array.prototype.contains","findLastIndex","last","Int16Array","Int32Array", +"rangeerror","Float32Array","take","workspace:*","byteLength", +"censor","Symbol.toStringTag","operating-system","coercible","Function.prototype.name","gdpr","ArrayBuffer", +"private data","Object.fromEntries","0","tostringtag","-0","negative","Array.prototype.findLast","enumerable","toobject", +"interrupts","groupBy","handlers","reuse","Float64Array","group","some","collection.es6","sameValueZero","positive", +"code points","regular expressions","findLast","robust","description","Uint8ClampedArray","pnpm9","length", +"defineProperty","RegExp#flags","valid","accessor","@smithy/types","aws-lambda","elapsed-time-logger","gulp-open", +"cupertino","pane","slide","@pouchlab/ui","chai-jquery","corejs-typeahead","doiuse","gulp-add-src","gulp-cache-bust", +"gulp-check-deps","gulp-sass-lint","gulp4-run-sequence","is-empty-object","motion-ui","sassy-lists", +"undertaker-forward-reference","vinyl-named","handlebars-helper-rel","handlebars-helper-slugify","tinygradient", +"@bokub/prettier-config","gradient", +"gradients","grommet-icons","@chromatic-com/storybook","@storybook/addon-a11y","@storybook/addon-toolbars", +"@storybook/addon-webpack5-compiler-babel","@storybook/manager-api","@storybook/source-loader", +"@testing-library/testcafe","babel-plugin-transform-imports","chromatic","grommet-theme-hpe","jest-styled-components", +"react-shadow","tarball-extract","testcafe-react-selectors","grommet.io","grommetux","theming","sticker sheets", +"design patterns","app templates","atomic design","WCAG 2.1","keyboard navigation","screen reader tags","interaction", +"graphical user interface","dart-sass","grunt-jekyll","zepto","lightbox","@next/font","axe-playwright", +"@storybook/test-runner","@base-ui-components/react","@storybook/addon-webpack5-compiler-swc","find-process", +"@types/pretty","chromium","launch-image","splashscreen","splash-screen","image-generation","mstile","pwa-assets", +"@apitools/openapi-parser","base64-arraybuffer","xml-but-prettier","babel-plugin-template-html-minifier","inspectpack", +"Custom Element","Web Component","swagger ui","openapi ui","openapi themes","openapi viewer","openapi renderer", +"openapi explorer","swagger themes","animatable","@react-native/babel-preset","collapsible","accordion", +"rollup-plugin-local-resolve","swipeable","customizable","touchscreen","listview","swipe-to-delete","swipe-actions", +"use-composed-ref","use-latest","@preconstruct/cli","autosize","grow","md-writer","@types/common-tags", +"decimal.js-light","victory-vendor","@recharts/devtools","@storybook/builder-vite","@storybook/react-vite", +"@stryker-mutator/typescript-checker","@stryker-mutator/vitest-runner","@types/d3-interpolate","@types/d3-time-format", +"babel-plugin-dev-expression","eslint-config-airbnb-extended","eslint-plugin-react-perf","vitest-axe", +"@riotjs/dom-bindings","@riotjs/compiler","@riotjs/prettier-config","@riotjs/register","@riotjs/util", +"@wdio/mocha-framework","@wdio/sauce-service","bianco.attr","bianco.query","cumpa","curri","eslint-config-riot", +"rollup-plugin-riot","custom tags","minimalist","data binding","riotjs","riot.js","testcafe-browser-provider-saucelabs", +"sortable","reorder","ng-sortable","@use-gesture/vanilla","tdesign-icons-vue-next","@rollup/plugin-eslint", +"@rollup/plugin-url","@soerenmartius/vue3-clipboard","@tdesign/site-components","@tdesign/theme-generator","dom-parser", +"lodash.upperfirst","qrcode.vue","rollup-plugin-ignore-import","rollup-plugin-static-import","rollup-plugin-styles", +"tdesign-publish-cli","vite-plugin-tdoc", +"tdesign","babel-plugin-html-tag","postcss-css-variables","postcss-hexrgba","postcss-prefixer", +"rollup-plugin-module-replacement","rollup-plugin-string","uploader","preview","chunk","image-edit","sockets","ready", +"win32","gulp-convert-css-var","picklog","wechat","weixin","@formatjs/intl-localematcher","@napi-rs/simple-git", +"@shikijs/twoslash","@theguild/remark-mermaid","better-react-mathjax","estree-util-value-to-estree", +"react-compiler-runtime","react-medium-image-zoom","remark-math","remark-reading-time","remark-smartypants", +"unist-util-remove","unist-util-visit-children","@types/negotiator","esbuild-plugin-svgr", +"esbuild-react-compiler-plugin","make-synchronized","make-synchronous","sync-threads","synchronize","fs-fixture", +"@ibyar/decorators","aurora","ibyar","expressions","template-syntax","template-expression","scope","evaluation", +"command-center","rich-text-editor","tiptap","@types/babel__preset-env","eslint-plugin-no-null","allure","codeceptjs", +"testops","@intlayer/chokidar","@intlayer/config","@intlayer/core","@intlayer/types","intlayer","@types/cls-hooked", +"@utils/ts-config","@utils/ts-config-types","@utils/tsdown-config", +"user-agents","unist-util-remove-position","@bugsnag/core","@bugsnag/delivery-react-native", +"@bugsnag/plugin-console-breadcrumbs","@bugsnag/plugin-network-breadcrumbs","@bugsnag/plugin-react", +"@bugsnag/plugin-react-native-client-sync","@bugsnag/plugin-react-native-event-sync", +"@bugsnag/plugin-react-native-global-error-handler","@bugsnag/plugin-react-native-hermes", +"@bugsnag/plugin-react-native-session","@bugsnag/plugin-react-native-unhandled-rejection","iserror","bugsnag", +"stability","@enact/i18n","ilib","eslint-plugin-astro","control-panel","backendless-request","backendless-rt-client", +"backendless-console-sdk","bannerize","backendless.com","ahooks","better-scroll","@zarm-design/bem","@use-gesture/react", +"@zarm-design/icons","@floating-ui/react-dom-interactions","@zarm-design/cli","zarm-ui","zarm-mobile","@enact/spotlight", +"@enact/docs-utils","@enact/ui-test-utils","eslint-config-enact-proxy","react select","react dropdown", +"accessible react select","accessible","@reporters/github","titanium-sdk","tidev","iphone","@antora/expand-path-helper", +"antora","static site","web publishing","@asyncapi/generator-components","@asyncapi/generator-helpers", +"@asyncapi/generator-hooks","@asyncapi/multi-parser","fs.extra","global-dirs","requireg","unixify","react-loadable", +"combine-promises","@docusaurus/babel","@docusaurus/logger","@docusaurus/bundler","react-router-config", +"@docusaurus/mdx-loader","@docusaurus/utils-common","@docusaurus/utils-validation","react-loadable-ssr-addon-v5-slorber", +"@total-typescript/shoehorn","@types/react-router-config","parcel-bundler","Vue","unstyled","@nestjsx/crud-request", +"@nestjsx/util","crud-generator","frameworks","@zmotivat0r/o0","p-filter","p-locate","dependency-management", +"continuous-integration","npmjs","package-manager","gatsby","hugo","netlify","core-js-pure","jest-location-mock", +"@types/module-alias","webpack-plugin-serve","hotreload","@pothos/test-utils","pothos","yalc","@strapi/core", +"@strapi/i18n","@strapi/admin","@strapi/email","@strapi/types","@strapi/utils","@strapi/logger","@strapi/upload", +"@types/nodemon","@strapi/openapi","@strapi/database","@strapi/cloud-cli","@strapi/generators","get-latest-version", +"@strapi/permissions","@strapi/data-transfer","@strapi/content-manager","@strapi/content-releases", +"@strapi/review-workflows","@strapi/typescript-utils","@strapi/content-type-builder","@strapi/ts-zen", +"eslint-config-custom","@types/webpack-hot-middleware","strapi","cmf","content management framework","admin panel", +"koajs","jam","graphqL","infrastructure","self hosted", +"lernajs","snake-case","@types/svg-parser","http-status-emojis","tsparticles-plugin","@tsparticles/interaction", +"@tsparticles/move","tsparticles-shape","@tsparticles/updater","@aws-sdk/lib-storage","@aws-sdk/s3-presigned-post", +"express-interceptor","express-prom-bundle","grant","tus-js-client","webdav","resumable uploads","tus","dropbox", +"webpack-chain","@vuepress/types","vue-server-renderer","@vue/babel-preset-app","vuepress-plugin-container", +"vuepress-html-webpack-plugin","@types/diacritics","vuepress-plugin-smooth-scroll","detect-browser", +"@walletconnect/types","@walletconnect/safe-json","@walletconnect/window-getters","@walletconnect/window-metadata", +"@ethersproject/address","@types/lodash.isnumber","wallet","walletconnect","jsonrpc","cryptocurrency","dapp", +"@walletconnect/utils","@walletconnect/crypto","@walletconnect/legacy-types","@walletconnect/legacy-utils", +"@types/qrcode","@walletconnect/legacy-client","@walletconnect/jsonrpc-provider", +"@walletconnect/jsonrpc-http-connection","ethereum-test-network","@wordpress/element","wordpress","gutenberg","center", +"jasmine-co","jasmine-ts","selenium-mock","body scroll","body scroll lock","react scroll lock","react scroll","freeze", +"disable","overflow","vanilla-js","tablet", +"bsl","broccoli-node-info","resolve-path","@types/console-ui","@types/esm","@types/findup-sync","@types/sane", +"@types/underscore.string","broccoli-node-api","mocha-jshint","babel-plugin-optimize-starts-with","replacement","html4", +"invalid","color-name","is-whitespace","verb","mediaquery","csstree","completion","apollo-link-context","decap-cms", +"aws-cognito","what-the-diff","gotrue-js","git-gateway","gateway","napa","detector","tinydate","tweezer.js", +"medium-zoom","autoprefixer-stylus","rollup-plugin-async","eslint-plugin-playwright","creator","cp-file","yargonaut", +"docsify-server-renderer","cli-prompts-test","rollup-plugin-executable","ssr-window","eslint-config-standard-react", +"prettier-check","array-hyper-unique","crlf-normalize","book","books","chapter","comic","epub-maker","epub-maker2", +"node-novel","novel","volume","escaping","interpolate","goat","🐐","color-logger","ice-cap","esdoc-importpath-plugin", +"ECMAScript6","ECMAScript2015", +"ECMAScript7","ECMAScript2016","ECMAScript8","ECMAScript2017","proposal","mdc","developer","inter-element","white-space", +"whitespace","tagname","force","graceful-shutdown","http-shutdown","http-terminate","prometheus","icss", +"inferno-hyperscript","vnode","createVNode","gulp-rtlcss","postcss-preset-infima","dark mode","bootswatch","docstrap", +"@angular-devkit/build-angular","angular-eslint","github-files-fetcher","@stitches/react","animate-sass", +"postcss-trolling","vite-plugin-svgr","preview jest","log-utils","engine-base","engine-handlebars","lo","lo-dash", +"serve-index-75lb","lws-middleware","micromark-extension","tagfilter","dangerous","grunt-jasmine-node","mobilegrade", +"sniff","nth-child","nth","is-alphanumerical","is-decimal","is-hexadecimal","cssinjs", +"@wdio/selenium-standalone-service","babelrc-rollup","queryselector","shadowdom","gulp-streamify","rc-tools","tappable", +"hammer","@actions/core","@oclif/plugin-autocomplete","toposort","@readme/better-ajv-errors", +"@readme/standards","@types/toposort","@types/unzipper","goober","jest-esm-jsx-transform","parcel-plugin-css-to-string", +"use-throttled-effect","hex","color-picker","wai-aria","smart-tv","smarttv","simple-routing","nano-equal", +"shallow-equal-fuzzy","shouldComponentUpdate","quicklook","image-gallery","image-viewer","react-native-svg", +"progressindicator","circle","pie","progressbar","indeterminate","d3-interpolate-path","@react-native-community/bob", +"@storybook/react-native","eslint-plugin-react-native","youtube-iframe","iframe","@atomico/rollup-plugin-sizes", +"git-branch-is","react-spring","@bedrock-layout/use-forwarded-ref","@codecov/vite-plugin","@types/body-scroll-lock", +"get-nonce","@theuiteam/lib-builder","@tsparticles/shape-text","@tsparticles/updater-roll","@tsparticles/updater-tilt", +"@tsparticles/updater-wobble","@tsparticles/plugin-emitters","@tsparticles/updater-destroy", +"@tsparticles/updater-twinkle","@tsparticles/plugin-absorbers","@tsparticles/interaction-external-trail", +"@tsparticles/plugin-emitters-shape-circle","@tsparticles/plugin-emitters-shape-square","useRef","createRef", +"merge refs","detect-node-es","@types/enzyme-adapter-react-16","code spliting","sidecar","mutation-observer", +"copy-text-to-clipboard","svelte-loader","scss-loader","perfect-scroll","vue-perfect-scroll","vue-scroll", +"vue-scrollbar","vue-plugin","滚动条","@types/eslint-plugin-prettier","@types/form-data","is-uuid","rewrite-imports", +"serviceworker","convict","antora-component","@applitools/test-utils","applitools","eyes-sdk","test automation", +"visual regression","@dataui/crud-request","@dataui/crud-util","blob-to-buffer","drag drop","drag & drop", +"@expo/spawn-async","@parcel/core","@parcel/fs","@parcel/package-manager","@parcel/watcher","mnemonic-id", +"node-object-hash","@plasmohq/parcel-config","@plasmohq/parcel-core","@plasmohq/init","@plasmo/config", +"@plasmo/constants","@plasmo/utils","@plasmo/framework-shared","browser-extensions","@iconify/react","@types/events", +"static-server","@storybook/cli","less-plugin-sass2less","@storybook/addon-mdx-gfm","music","player","mse","eme", +"@arethetypeswrong/core","ts-expose-internals","dlv","dset","flattie","fontace","unifont","magicast","piccolore", +"unstorage","zod-to-ts","xxhash-wasm","yocto-spinner","@oslojs/encoding","@astrojs/compiler","@astrojs/telemetry", +"@capsizecss/unpack","http-cache-semantics","@astrojs/internal-helpers", +"deterministic-object-hash","@types/dlv","rehype-toc","astro-scripts","remark-code-titles","@types/common-ancestor-path", +"@types/http-cache-semantics","strata","fuzzysearch","sander","@web/test-runner-core","testrunner","ac-colors","hsv", +"lch","color-names","cmyk","mix","harmonies","expressots","clean-architecture","typescript-framework", +"@pagefind/default-ui","bcp-47","mdast-util-directive","linkedom","withastro","astro-integration","piña","pigna", +"tabbable","@floating-ui/utils","@radix-ui/react-checkbox","@radix-ui/react-icons","vitest-browser-react", +"@internal/test-utils","code-blocks","expressive-code","syntax-highlighting","netlify-cms","@types/deep-eql", +"@amaui/ui-react","amaui","firefoxos","onesy","@react-native-macos/virtualized-lists","@tsparticles/plugin-easing-quad", +"@tsparticles/updater-stroke-color","@tsparticles/interaction-external-pause","@tsparticles/interaction-external-bubble", +"@tsparticles/interaction-external-attract","@tsparticles/interaction-external-connect","@types/react-router", +"@backstage/backend-plugin-api","@backstage/config","@backstage/integration","express-promise-router", +"@backstage/backend-test-utils","@backstage/catalog-model","@backstage/cli","@backstage/plugin-catalog-common", +"@backstage/plugin-catalog-node","backstage","ci/cd", +"immobiliare","immobiliarelabs","rgv","@asteasolutions/zod-to-openapi","@trpc/server", +"eslint-import-resolver-custom-alias","resolve-tspaths","event-driven","blaze","qs-esm","dataloader","bson-objectid", +"console-table-printer","@payloadcms/translations","graphql-http","@types/range-parser","@monaco-editor/react", +"@payloadcms/eslint-config","@hyrious/esbuild-plugin-commonjs","content management","graphQL","@cfcs/core","@egjs/axes", +"@egjs/component","@egjs/imready","@egjs/list-differ","@daybrush/jsdoc","@egjs/flicking-plugins","@egjs/release-helper", +"@types/resize-observer-browser","egjs-jsdoc-template","html-to-react","http-serve","jsdoc-to-mdx", +"karma-typescript-es6-transform","postcss-clean","print-coveralls","print-sizes","pvu","rollup-plugin-prototype-minify", +"ts-mock-imports","ttypescript","flicking","egjs","body scroll lock upgrade","@ucast/mongo2js","@casl/dx","permissions", +"abac","rbac","ibac","cancan","@humanwhocodes/gitignore-to-minimatch","peowly","list-dependents-cli","rslog", +"@rslib/core","@modern-js/rslib","@modern-js/types","@scripts/rstest-config","modern","modern.js","@scripts/build", +"@scripts/jest-config", +"import-without-cache","unconfig-core","unrun","@publint/pack","@sxzz/eslint-config","@sxzz/prettier-config", +"@sxzz/test-utils","@unocss/eslint-plugin","@vitejs/devtools","rolldown-plugin-dts-snapshot", +"rolldown-plugin-require-cjs","unocss","unplugin-ast","unplugin-lightningcss","unplugin-unused","@types/decompress", +"@ckeditor/ckeditor5-comments","@ckeditor/ckeditor5-track-changes","CKEditor","WYSIWYG","WYSIWYW","rich-text", +"fast-equals","glob2regx","ckeditor5-collaboration","@ckeditor/ckeditor5-revision-history", +"@ckeditor/ckeditor5-operations-compressor","@ckeditor/ckeditor-cloud-services-collaboration","@grammyjs/types", +"deno2node","@udecode/plate-utils","@loki/integration-react","@loki/integration-react-native","@loki/integration-vue", +"@loki/runner","@loki/target-chrome-app","@loki/target-chrome-docker","@loki/target-native-android-emulator", +"@loki/target-native-ios-simulator","storybook-addons","react-storybook","visual testing","emoji-datasource", +"@fastify/static","graphql-jit","mqemitter","single-user-cache","tiny-lru","@matteo.collina/snap", +"@types/isomorphic-form-data","graphql-ws","blue-tape","events.once","xhr2-cookies","convex","mock-spawn", +"@fastify/pre-commit","@reporters/silent","desm","gulp-better-rollup","Leaflet","Maps","Gesture","Handling", +"two","fingers","@tanstack/vue-virtual","@testing-library/vue","@fast-check/vitest","@types/eslint-config-prettier", +"prettier-plugin-pkg","prettier-plugin-sh","algo","@oxc-node/cli","eslint-plugin-redos-detector","tsm","bundle-size", +"@iconify/vue","@internationalized/date","@internationalized/number","@nuxt/fonts","@nuxt/icon","@nuxt/kit", +"@nuxt/schema","@nuxtjs/color-mode","@tanstack/vue-table","@tiptap/core","@tiptap/extension-bubble-menu", +"@tiptap/extension-code","@tiptap/extension-collaboration","@tiptap/extension-drag-handle", +"@tiptap/extension-drag-handle-vue-3","@tiptap/extension-floating-menu","@tiptap/extension-horizontal-rule", +"@tiptap/extension-image","@tiptap/extension-mention","@tiptap/extension-node-range","@tiptap/extension-placeholder", +"@tiptap/markdown","@tiptap/pm","@tiptap/starter-kit","@tiptap/suggestion","@tiptap/vue-3","@vueuse/shared", +"colortranslator","embla-carousel-auto-height","embla-carousel-auto-scroll","embla-carousel-autoplay", +"embla-carousel-class-names","embla-carousel-fade","embla-carousel-vue","embla-carousel-wheel-gestures","knitwork", +"motion-v","reka-ui","tailwind-variants","unplugin-auto-import","unplugin-vue-components","vaul-vue", +"vue-component-type-helpers","@nuxt/eslint-config","@nuxt/module-builder","@nuxt/test-utils","@tanstack/table-core","ai", +"vitest-environment-nuxt","nuxt-ui","ui-framework", +"country-code","country-codes","country-flags","country-names","country-telephone-codes","country-telephone-prefixes", +"countries","country-iso-codes","iso","iso-codes","iso-country-codes","iso-country-names","iso-country-telephone-codes", +"iso-country-telephone-prefixes","iso-countries","emoji-flags","phone-codes","phone-prefixes","telephone-codes", +"telephone-prefixes","world-countries","world-country-codes","world-country-flags","world-country-names", +"world-country-telephone-codes","world-country-telephone-prefixes","world-iso-codes","world-iso-country-codes", +"world-iso-country-names","@zoroaster/assert","@zoroaster/mask","alamode","@a-la/fixture-alamode","@a-la/fixture-babel", +"@artdeco/clean-stack","@artdeco/erte","@artdeco/scripts.json","@depack/render","@wrote/exists","@wrote/rm", +"@zoroaster/reducer","@zoroaster/types","argufy","catchment","documentary","erotic","eslint-config-artdeco", +"makepromise","promto","reloquent","snapshot-context","spawncommand","temp-context","usually","yarn-s","IDE", +"suggestions","intellisense","assistant-cloud","@assistant-ui/tap","@assistant-ui/store","@radix-ui/primitive", +"@radix-ui/react-compose-refs","@radix-ui/react-context", +"@radix-ui/react-dropdown-menu","@radix-ui/react-popover","@radix-ui/react-primitive","@radix-ui/react-use-callback-ref", +"@radix-ui/react-use-escape-keydown","assistant-stream","@assistant-ui/x-buildutils","radix-ui","ai-sdk","assistant", +"openai","chatbot","copilot","ai-chat","ai-chatbot","ai-assistant","ai-copilot","chatgpt","gpt4","gpt-4", +"conversational-ui","conversational-ai","graphiql","radash","@a2a-js/sdk","js-tiktoken","@lukeed/uuid","hono-openapi", +"@isaacs/ttlcache","@ai-sdk/provider-v5","@ai-sdk/provider-v6","@ai-sdk/ui-utils-v5","@mastra/schema-compat", +"@ai-sdk/provider-utils-v5","@ai-sdk/provider-utils-v6","@ai-sdk/azure","@ai-sdk/openai","@internal/lint", +"@internal/ai-v6","@internal/ai-sdk-v4","@internal/ai-sdk-v5","@internal/types-builder","@internal/external-types", +"@openrouter/ai-sdk-provider","llm","llms","agents","vectorstore","embeddings","rag","evals","otel","@tailwindcss/ui", +"@types/sortablejs","vue-next","draggable","drag-and-drop","vue-draggable","kanban","composition-api", +"@oxc-project/runtime","hmac256","hmac512","@ant-design/pro-components", +"@anthropic-ai/sdk","@azure-rest/ai-inference","@cfworker/json-schema","@clerk/localizations","@clerk/nextjs", +"@clerk/themes","@cyntler/react-doc-viewer","@fal-ai/client","@formkit/auto-animate","@google/genai", +"@huggingface/inference","@icons-pack/react-simple-icons","@khmyznikov/pwa-install","@langchain/community", +"@lobechat/agent-runtime","@lobechat/const","@lobechat/context-engine","@lobechat/database", +"@lobechat/electron-client-ipc","@lobechat/electron-server-ipc","@lobechat/fetch-sse","@lobechat/file-loaders", +"@lobechat/model-runtime","@lobechat/observability-otel","@lobechat/prompts","@lobechat/python-interpreter", +"@lobechat/utils","@lobechat/web-crawler","@lobehub/analytics","@lobehub/charts","@lobehub/chat-plugin-sdk", +"@lobehub/chat-plugins-gateway","@lobehub/editor","@lobehub/icons","@lobehub/market-sdk","@lobehub/tts","@lobehub/ui", +"@neondatabase/serverless","@next/third-parties","@opentelemetry/exporter-jaeger","@opentelemetry/winston-transport", +"@react-pdf/renderer","@react-spring/web","@saintno/comfyui-sdk","@serwist/next","@t3-oss/env-nextjs","@trpc/client", +"@trpc/next","@trpc/react-query","@vercel/analytics","@vercel/edge-config","@vercel/functions","@vercel/speed-insights", +"@virtuoso.dev/masonry","@xterm/xterm","brotli-wasm","countries-and-timezones","dexie","drizzle-orm","drizzle-zod", +"gpt-tokenizer","i18next-resources-to-backend","js-sha256","jsonl-parse-stringify", +"langchain","langfuse","langfuse-core","lucide-react","markdown-to-txt","model-bank","modern-screenshot", +"next-mdx-remote","nextjs-toploader","nuqs","officeparser","oidc-provider","ollama","partial-json","path-browserify-esm", +"pdf-parse","plaiceholder","posthog-js","pwa-install-handler","react-confetti","react-hotkeys-hook","react-layout-kit", +"react-pdf","react-rnd","react-scan","react-virtuoso","react-wrap-balancer","resolve-accept-language","rtl-detect", +"ssrf-safe-fetch","svix","tokenx","ts-md5","unstructured-client","use-merge-value","word-extractor","zustand-utils", +"@huggingface/tasks","@lobehub/i18n-cli","@lobehub/lint","@lobehub/market-types","@lobehub/seo-cli", +"@next/bundle-analyzer","@peculiar/webcrypto","@types/chroma-js","@types/crypto-js","@types/ip","@types/numeral", +"@types/oidc-provider","@types/pdfkit","@types/pg","@types/rtl-detect","dbdocs","dpdm-fast","drizzle-dbml-generator", +"drizzle-kit","eslint-plugin-mdx","fake-indexeddb","just-diff","mcp-hello-world","remark-mdx","serwist","vercel-ai", +"azure-openai", +"visual-model","tts","stt","modelcontextprotocol","mcp","context7","vibe-coding","developer tools", +"@types/istanbul-lib-report","@walletconnect/time","@walletconnect/events","label","better-npm-run","clamp.js", +"karma-fixture","karma-opera-launcher","minimalistic","@types/webrtc","detectrtc","install-peers-cli","prepend-file", +"camera","webcam","cam","webRTC","react-native-worklets","visionOS","tvOS","macOS","cpp","swift","jsi","@antfu/ni", +"@dotenvx/dotenvx","@types/validate-npm-package-name","stringify-object","@types/stringify-object","virtual-core", +"datagrid","2fa","hotp","topt","google authenticator","authenticator","one time password","one-time-password","2 factor", +"survey","surveyjs","survey-library","form-component","form-rendering","survey-renderer","dynamic-form", +"interactive-form","form-library","form-management","questionnaire","data-collection","data-validation", +"input-validation","ui-component","schema-form","base64-stream", +"bplist-creator","@mrleebo/prisma-ast","@electric-sql/pglite-socket","@prisma/query-plan-executor","common-stuff", +"accelerate","@aws-lite/client","@aws-lite/s3","@architect/eslint-config","mock-tmp","tap-arc","cloudfunctions", +"apigateway","api gateway","@webgpu/types","@tinymce/tinymce-react","n1ed","@headlessui/tailwindcss","@heroicons/react", +"@tailwindplus/elements","@types/sharp","react-docgen-typescript","react-lib-tools","rollup-preserve-directives", +"ts-blank-space","vitest-fail-on-console","windowed","@extend-chrome/messages","@extend-chrome/storage","@types/chrome", +"@types/jsesc","vite-plugin-inspect","chrome-extension","webext","webextension","browser-extension","isoformat", +"interval-tree-1d","htl","@types/d3","apache-arrow","d3-geo-projection","@observablehq/stdlib","string-split-by", +"cargo-cp-artifact","skia","offscreen","compositing","vulkan","metal","flmngr","imgpen","unsplash","@types/listr", +"markdown-to-pdf","pdf-generation","assignments","homework","html-to-pdf","@applitools/core","@applitools/logger", +"@applitools/req","@applitools/snippets","@applitools/image", +"@applitools/spec-driver-webdriver","@antora/user-require-helper","kapok-js","@asciidoctor/core", +"@antora/asciidoc-loader","navigation","asciidoc","pod-install","pinch-to-zoom","pinch","@farmfe/cli","@farmfe/core", +"bun-types-no-globals","eslint-plugin-format","unloader","redirects","@antora/file-publisher","publisher", +"vite-plugin-dts-bundle-generator","vite-plugin-pages","vite-plugin-typescript","vite-plugin-typescript-transform", +"box2d","game","physics","2d","replace-in-files-cli","sandboxed-module","oxc","exact-versions","turborepo", +"version-linter","@jsdevtools/ez-spawn","@napi-rs/magic-string","@pnpm/list","@pnpm/workspace.find-packages", +"@types/treeverse","@types/yarnpkg__lockfile","fast-npm-meta","@nolyfill/internal","@nolyfill/promise.any","fumadb", +"kysely","@orpc/zod","@orpc/otel","neverthrow","@c15t/logger","@orpc/server","@orpc/openapi","@orpc/contract", +"@c15t/translations","@opentelemetry/sdk-node","kysely-pglite","@c15t/vitest-config","@libsql/kysely-libsql", +"@c15t/typescript-config","consent","privacy","ccpa","lgpd","self-host","consent-management","user-privacy", +"data-protection", +"cookie-banner","consent-management-platform","cmp","consent-banner","@ampproject/rollup-plugin-closure-compiler", +"@fezvrasta/tsc-silent","@khanacademy/flow-to-ts","babel-plugin-inline-replace-variables","poster", +"rollup-plugin-flow-entry","popper","positioning engine","anime","anime.js","timeline","easings","cubic-bezier", +"splitText","WAAPI","Canvas","WebGL","decrypt","ev-emitter","fizzy-ui-utils","get-size","imagesloaded","unidragger", +"eslint-plugin-metafizzy","jquery-bridget","flick","gulp-wrap-commonjs","lex","maths","persist-schema","jugglingdb", +"panorama","rip-out","eslint-config-godaddy-react","setup-env","compatiblity","rollup-plugin-eslint", +"rollup-plugin-sass","testit","gethub","bits","iec"], [5,293,294], -[0,-685,-2747,-15519,-436], +[0,-3015,-3016,-3017,-3018], 1771718400000, 1771113600000, 1770508800000, @@ -2691,505 +2701,491 @@ 1771804800000, [1,24,619], [1,3,621], -[0,-51,-81,-34], -[0,-47,-87,-822,-6,-35,-2], -[0,-129,-127,-435,-52,-53,-6,-108,-102,-1284], +[0,-519,-2384,-2541], +[0,-3040,-3052,-1031,-2006,-2019,-2410], +[0,-3095,-3098,-3099,-3161,-3100,-2006,-3159,-3160,-2494], [1,3,440], [1,3,1832], -[0,-967,-290,-876,-15322,-15321,-3795], +[0,-3488,-681,-3489,-3490,-3491,-3492], [1,3,1826], -[0,-1276], -[0,-38], -[0,-2269], -[0,-15306,-436], +[0,-3220], +[0,-1889], +[0,-424], +[0,-3557,-3018], true, [1,3,622], -[0,-3], -[0,-6,-35], -[0,-731,-730,-85], +[0,-1654], +[0,-2006,-2019], +[0,-4298,-4300,-2319], [1,3,1783], -[0,-39], +[0,-2322], [1,24,585], +[0,-2387], +[0,-1548], +[0,-531], +[0,-7841], +[0,-2410], +[0,-932], [0,-44], -[0,-23], -[0,-2262], -[0,-68], -[0,-2], -[0,-1], -[0,-90], -[0,-1313], -[0,-6], -[0,-42,-114,-74,-1770], +[0,-1787], +[0,-2006], +[0,-856,-3262,-2476,-2816], [1,3,674], -[0,-2280,-2279,-2933,-4032,-2930,-2929,-2923,-2921,-2920,-2919,-2918,-2916,-2915,-2914,-5718,-2913,-2912,-2911,-2910, --4023,-5717,-4022,-4021,-4020,-3608,-2908,-2906,-4018,-2904,-2903,-5716,-2902,-2249,-5715,-3607,-5714,-5713,-3606,-2893, --2891,-2890,-2889,-2885,-5712,-3605,-3993,-3992,-2883,-2882,-3604,-2877,-2876,-3965,-2874,-3603,-3954,-2857,-2856,-2855, --5711,-2854,-2851,-2849, --5710,-2847,-5709,-2843,-2842,-2840,-2839,-2837,-2831,-3602,-2830,-2829,-2826,-2825,-3601,-1804,-3905,-5708,-3901,-2805, --5707,-3600,-3900,-2802,-2801,-2800,-2799,-2796,-3599,-2795,-2792,-5706,-2791,-2789,-3598,-2787,-2786,-2782,-2779,-2777, --2776,-3597,-3596,-3595,-284,-3594,-3593,-3872], -[0,-2280,-2279,-2249,-1804,-284], +[0,-18,-19,-471,-487,-498,-504,-577,-588,-590,-591,-592,-603,-604,-605,-5421,-606,-607,-608,-609,-610,-5422,-611,-612, +-613,-5423,-626,-631,-643,-660,-663,-5424,-670,-676,-5425,-5426,-5427,-5428,-5429,-804,-830,-833,-836,-998,-5430,-5431, +-1019,-1020,-1095,-1121,-5432,-1280,-1282,-1307,-1308,-5433,-1378,-1511,-1512,-1513,-5434,-1516,-1584,-1596, +-5435,-1615,-5436,-1648,-1679,-1684,-1695,-1720,-1799,-5437,-1803,-1822,-1869,-1886,-5438,-1994,-2067,-5439,-2158,-2169, +-5440,-5441,-2196,-2201,-2203,-2209,-2217,-2237,-5442,-2238,-2252,-5443,-2256,-2290,-5444,-2296,-2298,-2309,-2348,-2366, +-2370,-5445,-5446,-5447,-2426,-5448,-5449,-2527], +[0,-18,-19,-676,-1994,-2426], [1,3,1519], [1,3,2972], -[0,-17], -[0,-253], -[0,-24,-38,-218], -[0,-11,-2148], +[0,-2501], +[0,-9219], +[0,-775,-1889,-3583], +[0,-23,-3219], [1,3,1044], [1,3,1396], [1,3,1875], -[0,-51,-34], -[0,-3,-2822], -[0,-1721,-46,-53,-2477], -[0,-7529,-7528,-2663,-7527,-95,-1651,-1284,-659,-7526,-7525], -[0,-967,-290,-876,-6062,-3795], -[0,-465], +[0,-519,-2541], +[0,-1654,-1941], +[0,-4633,-3445,-3100,-7566], +[0,-15394,-15395,-4276,-15396,-3162,-6935,-2494,-770,-15397,-15398], +[0,-3488,-681,-3489,-3518,-3492], +[0,-1934], [1,3,623], [1,24,645], -[0,-2123,-2679,-1737,-1736,-37,-308,-294,-1735,-573,-547,-114,-3745,-336,-2678,-200,-1447,-2122,-45,-1263,-141,-335,-490, --2121,-397,-2120,-1301,-959,-3744,-1466,-1446,-1262,-174,-431,-102,-958,-1776,-2119], -[0,-1083,-1727,-1726,-1252,-1251,-2100,-1725,-1724,-784], -[0,-74,-873,-53,-14817,-127,-5867,-14816,-14815,-14814], +[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3960,-3262,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966, +-3967,-1965,-3968,-1966,-3969,-2063,-3970,-3971,-3108,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], +[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340], +[0,-2476,-3944,-3100,-4590,-3098,-4591,-4592,-4593,-4594], [1,3,1380], -[0,-2280,-2279,-2933,-2930,-2929,-2923,-2921,-2920,-2919,-2918,-2916,-2915,-2914,-2913,-2912,-2911,-2910,-3608,-2908, --2906,-2904,-2903,-2902,-2249,-3607,-3606,-2893,-2891,-2890,-2889,-2885,-3605,-2883,-2882,-3604,-2877,-2876,-2874,-3603, --2857,-2856,-2855,-2854,-2851,-2849,-2847,-2843,-2842,-2840,-2839,-2837,-2831,-3602,-2830,-2829,-2826,-2825,-3601,-1804, --2805,-3600,-2802,-2801, --2800,-2799,-2796,-3599,-2795,-2792,-2791,-2789,-3598,-2787,-2786,-2782,-2779,-2777,-2776,-3597,-3596,-3595,-284,-3594, --3593], -[0,-2280,-2279,-6530,-2933,-4032,-2930,-2929,-14116,-6522,-2923,-2921,-2920,-2919,-2918,-14115,-2916,-2915,-2914,-5718, --2913,-2912,-2911,-2910,-4023,-5717,-4022,-4021,-4020,-14114,-3608,-6517,-2908,-14113,-2906,-14112,-4018,-2904,-2903, --5716,-2902,-6512,-2249,-5715,-3607,-14111,-14110,-5714,-5713,-3606,-2893,-2891,-2890,-14109,-2889,-6490,-6483,-2885, --5712,-14108,-3605,-3993,-3992,-6469, --6465,-6463,-14107,-2883,-6458,-6457,-2882,-3604,-6432,-2877,-2876,-6429,-3965,-2874,-6426,-14106,-3603,-3954,-14105, --14104,-2857,-2856,-2855,-5711,-2854,-14103,-2851,-14102,-2849,-5710,-2847,-5709,-2843,-6389,-14101,-14100,-6388,-2842, --2840,-2839,-14099,-2837,-2831,-3602,-2830,-2829,-14098,-6361,-2826,-2825,-3601,-1804,-3905,-5708,-14097,-3901,-6324, --6323,-2805,-5707,-14096,-3600,-14095,-3900, --2802,-2801,-6318,-2800,-2799,-6317,-6316,-6315,-2796,-3599,-14094,-2795,-6313,-2792,-5706,-2791,-14093,-6308,-2789, --3598,-2787,-2786,-2782,-6302,-2779,-14092,-14091,-2777,-2776,-3597,-3596,-3595,-284,-6294,-6292,-3594,-14090,-14089, --6287,-6286,-3593,-14088,-3872], +[0,-18,-19,-471,-498,-504,-577,-588,-590,-591,-592,-603,-604,-605,-606,-607,-608,-609,-5423,-626,-631,-660,-663,-670,-676, +-5426,-5429,-804,-830,-833,-836,-998,-5431,-1095,-1121,-5432,-1280,-1282,-1308,-5433,-1511,-1512,-1513,-1516,-1584,-1596, +-1615,-1648,-1679,-1684,-1695,-1720,-1799,-5437,-1803,-1822,-1869,-1886,-5438,-1994,-2169,-5441,-2201,-2203, +-2209,-2217,-2237,-5442,-2238,-2252,-2256,-2290,-5444,-2296,-2298,-2309,-2348,-2366,-2370,-5445,-5446,-5447,-2426,-5448, +-5449], +[0,-18,-19,-467,-471,-487,-498,-504,-6147,-575,-577,-588,-590,-591,-592,-6148,-603,-604,-605,-5421,-606,-607,-608,-609, +-610,-5422,-611,-612,-613,-6149,-5423,-625,-626,-6150,-631,-6151,-643,-660,-663,-5424,-670,-675,-676,-5425,-5426,-6152, +-6153,-5427,-5428,-5429,-804,-830,-833,-6154,-836,-842,-890,-998,-5430,-6155,-5431,-1019,-1020,-1035, +-1073,-1084,-6156,-1095,-1117,-1120,-1121,-5432,-1279,-1280,-1282,-1295,-1307,-1308,-1314,-6157,-5433,-1378,-6158,-6159, +-1511,-1512,-1513,-5434,-1516,-6160,-1584,-6161,-1596,-5435,-1615,-5436,-1648,-1677,-6162,-6163,-1678,-1679,-1684,-1695, +-6164,-1720,-1799,-5437,-1803,-1822,-6165,-1865,-1869,-1886,-5438,-1994,-2067,-5439,-6166,-2158,-2159,-2164,-2169,-5440, +-6167,-5441,-6168,-2196, +-2201,-2203,-2208,-2209,-2217,-2221,-2224,-2225,-2237,-5442,-6169,-2238,-2241,-2252,-5443,-2256,-6170,-2288,-2290,-5444, +-2296,-2298,-2309,-2315,-2348,-6171,-6172,-2366,-2370,-5445,-5446,-5447,-2426,-2431,-2458,-5448,-6173,-6174,-2496,-2497, +-5449,-6175,-2527], [1,3,2681], -[0,-3,-82], -[0,-85], -[0,-70], -[0,-544,-45,-933,-840,-282,-333,-7249,-61], +[0,-1654,-2198], +[0,-2319], +[0,-2460], +[0,-4864,-3214,-11467,-11468,-5270,-5271,-15723,-3634], [1,3,308], -[0,-58], -[0,-1723], -[0,-184,-53,-1470,-1701,-2077,-1700,-1431,-327,-1699,-1698,-1697,-2076,-2075,-1696,-1695,-2074,-2073,-2072,-6,-516,-2071, --2070,-2069,-2068,-74,-1238,-491,-2067,-249,-1237,-192,-2,-45,-485,-111,-585,-1694,-1693,-24,-31,-1236,-1692,-1235,-2066, --327,-2065,-2064,-2063,-2062,-2061,-2060], +[0,-719], +[0,-4362], +[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, +-5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, +-5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189], [1,3,1342], [1,3,1453], [1,3,1877], -[0,-1,-84,-10,-214,-76,-67,-131,-3,-15,-125], +[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], [1,3,2054], -[0,-699], -[0,-1481], -[0,-45,-13039,-13038,-75,-516,-6,-1329,-61,-13037,-13036,-543,-3], -[0,-97], -[0,-246], -[0,-707,-3], -[0,-1834], -[0,-560], -[0,-5], -[0,-5,-43,-4,-147,-260,-233,-2,-34], -[0,-52,-1094,-127,-95,-7961], -[0,-121], -[0,-2,-2179,-4621,-1684,-410,-1074,-99,-4713,-7607,-46,-7606], +[0,-1754], +[0,-2471], +[0,-3214,-8058,-8059,-4004,-3476,-2006,-1062,-3634,-8060,-8061,-4873,-1654], +[0,-2250], +[0,-5334], +[0,-1202,-1654], +[0,-1406], +[0,-1931], +[0,-3037], +[0,-3037,-652,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-3161,-3481,-3098,-3162,-14919], +[0,-1967], +[0,-2410,-2409,-11398,-5406,-3691,-5728,-3690,-10796,-15307,-3445,-15308], [1,3,10143], -[0,-184,-53,-1470,-1701,-2077,-1700,-1431,-327,-1699,-1698,-1697,-2076,-2075,-1696,-1695,-2074,-2073,-2072,-6,-516,-2071, --2070,-2069,-2068,-74,-1238,-491,-2067,-249,-1237,-192,-2,-45,-485,-111,-585,-1694,-1693,-24,-31,-1236,-1692,-1235,-2066, --327,-2065,-2064,-2063,-2062,-2061,-2060,-2288,-7554], -[0,-184,-53,-1470,-1700,-1431,-327,-1699,-1698,-1697,-1701,-1696,-1695,-2,-45,-485,-111,-585,-1694,-1693,-24,-31,-1236, --1692,-1235,-7552], -[0,-184,-53,-1470,-1701,-2077,-1700,-1431,-327,-1699,-1698,-1697,-2076,-2075,-1696,-1695,-2074,-2073,-2072,-6,-516,-2071, --2070,-2069,-2068,-74,-1238,-491,-2067,-249,-1237,-192,-2,-45,-485,-111,-585,-1694,-1693,-24,-31,-1236,-1692,-1235,-2066, --327,-2065,-2064,-2063,-2062,-2061,-2060,-2288,-7551], +[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, +-5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, +-5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15365], +[0,-3577,-3100,-2808,-5157,-5158,-659,-5159,-5160,-5161,-5155,-5164,-5165,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775, +-3264,-5180,-5181,-5182,-15367], +[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, +-5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, +-5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15368], [1,3,10608], -[0,-11], -[0,-6067,-967,-290,-876,-789,-875,-412,-31,-1272,-966,-1461,-1460,-1748,-1747,-1459,-52], +[0,-23], +[0,-3510,-3488,-681,-3489,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161], [1,24,583], -[0,-100,-15273,-390,-6027,-42,-589,-1269,-114], -[0,-548,-1865,-6,-24,-1265], -[0,-602], -[0,-51,-292,-787,-5944,-350,-2114,-5943,-15151,-199,-8,-79,-3,-2673,-15150,-375,-456,-15149,-2113,-85,-39,-75,-61,-2,-594], -[0,-304], -[0,-192,-42,-114,-862,-15059,-99,-15058,-15057], -[0,-1759,-129,-127,-435,-52,-53,-6,-108,-102], -[0,-14611,-14610,-14609,-14608,-14607,-14606,-14605,-14604,-14603,-14602,-14601], -[0,-30,-103], -[0,-114,-2598,-17,-6,-3619,-2049,-100,-127,-42], -[0,-3,-13], -[0,-5,-51,-81,-34], -[0,-291], -[0,-394], -[0,-34], -[0,-13384], -[0,-29,-5,-22,-19,-1,-12,-5323,-251,-10,-8,-4,-57,-171,-124,-2], -[0,-8,-1,-7,-57,-48,-2,-29,-5,-1978,-83,-19,-22], -[0,-556,-39], -[0,-1,-3], -[0,-93], -[0,-1,-828,-350,-3,-15], -[0,-54,-243,-177,-917,-365], -[0,-54,-243,-917,-177,-365], -[0,-13,-3], -[0,-1,-84,-10,-214,-76,-67,-131,-3,-15], -[0,-56,-1,-12,-9,-8,-18,-38,-4], -[0,-5,-2], -[0,-13,-3,-33,-17,-50,-11,-781,-109,-29,-5,-65,-92,-69,-480,-178,-21,-4122,-140], -[0,-664,-2982,-43,-315,-4,-147,-260,-7,-39,-233,-2,-34], -[0,-1198,-1366,-2294,-1365,-2419,-414,-45,-2,-6,-74,-220,-2381], -[0,-5958,-2], +[0,-1599,-3670,-3671,-3672,-856,-3673,-3674,-3262], +[0,-3770,-906,-2006,-775,-3771], +[0,-2080], +[0,-519,-525,-4005,-4037,-1001,-4038,-4039,-4040,-1412,-1415,-1449,-1654,-4041,-4042,-1989,-4043,-4044,-4045,-2319,-2322, +-4004,-3634,-2410,-2490], +[0,-703], +[0,-475,-856,-3262,-4258,-4259,-3690,-4260,-4261], +[0,-3158,-3095,-3098,-3099,-3161,-3100,-2006,-3159,-3160], +[0,-5014,-5015,-5016,-5017,-5018,-5019,-5020,-5021,-5022,-5023,-5024], +[0,-2469,-3664], +[0,-3262,-5355,-2501,-2006,-5371,-5372,-1599,-3098,-856], +[0,-1654,-664], +[0,-3037,-519,-2384,-2541], +[0,-567], +[0,-2267], +[0,-2541], +[0,-7475], +[0,-3136,-3037,-427,-428,-932,-940,-7476,-948,-958,-1415,-1942,-2375,-2391,-2402,-2410], +[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-427], +[0,-2320,-2322], +[0,-932,-1654], +[0,-1645], +[0,-932,-937,-1001,-1654,-1788], +[0,-1127,-1134,-1144,-1143,-1146], +[0,-1127,-1134,-1143,-1144,-1146], +[0,-664,-1654], +[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788], +[0,-756,-932,-940,-1344,-1415,-1534,-1889,-1942], +[0,-3037,-2410], +[0,-664,-1654,-2379,-2501,-21,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40,-15393,-42], +[0,-8096,-14182,-652,-725,-1942,-2094,-2100,-2125,-2322,-2399,-2410,-2541], +[0,-12449,-12613,-13616,-13615,-8897,-2363,-3214,-2410,-2006,-2476,-2299,-9608], +[0,-3951,-2410], [1,3,313], -[0,-6126,-292,-339,-2150,-1277,-182,-593], -[0,-6126,-292,-2149,-6123,-339,-1756,-15448,-370,-2150,-1277,-6122,-169,-593], -[0,-770], -[0,-159,-342], -[0,-3800,-15358,-6079,-15357,-15356,-15355,-15354,-135,-1857,-1855,-28,-101,-79,-6078,-221,-2733,-998,-1463,-15353,-1318, --6077,-15352,-15351,-3799,-1135,-524,-15350,-15349,-440,-643,-157,-6076,-3798,-123,-15348,-96], -[0,-179,-2722,-1489], -[0,-37,-100,-969,-681,-2730,-15347,-591,-6075,-42,-114], -[0,-789,-875,-412,-31,-1272,-966,-1461,-1460,-1748,-1747,-1459,-52,-6067,-967,-290,-876], -[0,-789,-875,-412,-31,-1272,-966,-1461,-1460,-1748,-1747,-1459,-52,-967,-290,-876,-6062,-3795], -[0,-575,-1179,-37], -[0,-6069,-192,-42,-127,-358,-3789,-685,-100], -[0,-24,-77,-6046,-636,-184,-52,-111], -[0,-61,-591,-1874,-6036,-1090], -[0,-3761,-5992,-5991,-2685,-1087,-1740,-42,-15232], -[0,-2130,-2683,-2129,-1263,-2128,-15231,-6,-35], -[0,-15227], -[0,-1086,-5986,-3759,-741,-256,-476], -[0,-29,-5,-22,-19,-1,-266,-1020,-12,-10,-145,-148,-25,-8,-1150,-4,-57,-211,-33,-124,-2], -[0,-52,-105,-99,-111], -[0,-5,-89,-4,-85,-555,-124], -[0,-37,-294,-679,-435,-194,-1734,-734], -[0,-2211,-1829,-37,-786,-1256,-3737,-174,-869,-194,-868,-455,-2110,-2672,-361,-2109,-785,-2108], +[0,-3183,-525,-3184,-3185,-3186,-526,-3116], +[0,-3183,-525,-3205,-3206,-3184,-3207,-3208,-3209,-3185,-3186,-3210,-527,-3116], +[0,-24], +[0,-753,-2082], +[0,-3417,-3418,-3419,-3420,-3421,-3422,-3423,-714,-1028,-1039,-1107,-1442,-1449,-3424,-1600,-3245,-1601,-3425,-3426,-1602, +-3427,-3428,-3429,-3430,-1616,-1689,-3431,-3432,-1955,-1974,-1978,-3433,-3434,-2446,-3435,-2550], +[0,-2281,-3436,-2284], +[0,-687,-1599,-3437,-3438,-3328,-3439,-3440,-3441,-856,-3262], +[0,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161,-3510,-3488,-681,-3489], +[0,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161,-3488,-681,-3489,-3518,-3492], +[0,-739,-721,-687], +[0,-3499,-475,-856,-3098,-3551,-3552,-3015,-1599], +[0,-775,-2162,-3575,-3576,-3577,-3161,-3578], +[0,-3634,-3440,-793,-3635,-3636], +[0,-3812,-3813,-3814,-3815,-3816,-3817,-856,-3818], +[0,-3821,-3822,-3823,-3824,-3825,-3826,-2006,-2019], +[0,-3836], +[0,-3827,-3837,-3838,-3167,-3839,-620], +[0,-3136,-3037,-427,-428,-932,-933,-935,-940,-958,-959,-962,-967,-1415,-1424,-1942,-2375,-2376,-2379,-2402,-2410], +[0,-3161,-1334,-3690,-3578], +[0,-3037,-928,-1942,-2319,-2386,-2402], +[0,-687,-3958,-3999,-3099,-4000,-4001,-4002], +[0,-1535,-1536,-687,-4107,-4108,-4109,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], [1,3,825], -[0,-6,-108,-973,-1136], -[0,-106,-99,-5931,-15109,-2670,-15108,-1254,-2,-436,-46,-184], -[0,-733,-42,-678,-968,-3732,-73,-97], -[0,-1728,-2101,-571,-15040,-100,-969,-42,-15039,-31,-158], -[0,-1083,-1252,-15037,-5876,-784,-2098], -[0,-1083,-1251,-2100,-1725,-1724,-784,-1441], -[0,-1357,-142,-2628,-680,-215,-381,-65,-15,-5781,-211,-3660,-153,-30,-92,-1780], -[0,-14576], -[0,-675,-453,-512,-111,-46], -[0,-3644], -[0,-1272,-412,-52,-31,-14521,-107,-875,-14520,-789], -[0,-4036,-4035], -[0,-15,-3,-1,-830,-76,-10,-67,-84,-214,-131], -[0,-192,-52,-91,-1682], -[0,-99,-1579,-678,-42,-410,-1074], -[0,-349], +[0,-2006,-3159,-3119,-1613], +[0,-4055,-3690,-4140,-4141,-4142,-4143,-4144,-2410,-3018,-3445,-3577], +[0,-4165,-856,-4100,-3485,-4156,-3215,-2250], +[0,-4328,-4329,-1105,-4330,-1599,-3437,-856,-4331,-3264,-1764], +[0,-4332,-4335,-4345,-4346,-4340,-4347], +[0,-4332,-4336,-4337,-4338,-4339,-4340,-4344], +[0,-234,-3044,-5011,-3738,-865,-985,-1771,-1788,-5012,-2376,-5013,-2392,-2469,-2503,-2509], +[0,-5096], +[0,-5141,-4601,-4602,-3578,-3445], +[0,-5140], +[0,-3497,-3496,-3161,-3264,-5246,-3862,-3495,-5247,-3494], +[0,-433,-436], +[0,-1788,-1654,-932,-821,-966,-958,-968,-943,-963,-974], +[0,-475,-3161,-4865,-5495], +[0,-3690,-489,-4100,-856,-3691,-5728], +[0,-1047], [1,3,1788], -[0,-488], -[0,-1573,-1702,-778,-683,-2029,-2028,-659], +[0,-2155], +[0,-581,-5110,-6120,-3173,-6129,-6130,-770], [1,3,1820], [1,3,1876], [1,3,1878], -[0,-1841], -[0,-2206,-3,-13], -[0,-2526,-13819,-857,-75,-668], -[0,-130], -[0,-5480,-641], -[0,-135], -[0,-141,-308,-1063,-37,-734,-13783,-3460,-455,-135,-1718], -[0,-45,-1657,-316,-593], -[0,-1488], -[0,-838,-1,-84,-10,-214,-76,-67,-131,-3,-15,-125], -[0,-316], -[0,-42,-100], -[0,-215], -[0,-471], -[0,-782,-1454,-59,-2550,-507,-2508,-1085], -[0,-1,-1391,-353,-3316,-45,-2091,-430,-1972,-1415,-3315], -[0,-1,-334,-368], -[0,-839], -[0,-1,-334,-368,-141,-335,-338,-5399,-126,-248,-628,-407], -[0,-1,-368,-334,-6], -[0,-329], -[0,-41,-52,-3520,-111,-105,-410,-1074,-434,-300,-99], -[0,-28,-2081,-508,-12785], -[0,-754,-639], -[0,-3,-7,-97], -[0,-54,-177], -[0,-60,-7], -[0,-253,-3,-75], -[0,-54,-167,-34], -[0,-51,-32,-904,-70,-34], -[0,-71], -[0,-313,-3,-82,-70], -[0,-71,-143], -[0,-143,-71], -[0,-51,-904,-70,-34], -[0,-5,-43,-1159,-4,-147,-260,-233,-2,-34], -[0,-809,-711], -[0,-354,-1144], -[0,-1521], -[0,-1529,-11896,-11895,-95,-300,-2365,-1026,-484,-2827], -[0,-51,-3150,-81,-34], -[0,-75,-61,-199,-543,-591], -[0,-2115], -[0,-255,-31,-1077,-632], -[0,-117], -[0,-219], -[0,-88], -[0,-2853,-4757,-245,-386,-718,-952,-1069,-106], -[0,-203,-63,-204,-43,-1,-84,-221,-2703,-3,-14], -[0,-407,-2027,-2026,-1672,-3216,-11039,-75,-307,-1384], -[0,-54], -[0,-37,-308,-10560,-589,-158,-10559,-2323,-5061,-2359,-852,-786], -[0,-300,-149,-608,-4553,-3064,-3063,-4552,-3062,-3061,-1214,-91,-412,-1995,-1975,-195,-3060,-1644,-587,-1649,-1045,-1221, --287,-878,-126], -[0,-1062,-587,-854,-73,-723,-37,-308], -[0,-3,-13,-2251], -[0,-1809,-778,-1968,-683,-5123,-2559,-905,-2328], -[0,-34,-51,-81], -[0,-903,-1199,-4595], +[0,-1309], +[0,-1592,-1654,-664], +[0,-6657,-6658,-4868,-4004,-6659], +[0,-2231], +[0,-6689,-2115], +[0,-714], +[0,-3966,-3957,-6722,-687,-4002,-6723,-6724,-4112,-714,-4672], +[0,-3214,-6784,-711,-3116], +[0,-2337], +[0,-465,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], +[0,-711], +[0,-856,-1599], +[0,-865], +[0,-891], +[0,-5558,-3591,-633,-6340,-6408,-6916,-3870], +[0,-932,-8163,-727,-8164,-3214,-4900,-4795,-8165,-6434,-8166], +[0,-932,-5208,-3784], +[0,-429], +[0,-932,-5208,-3784,-3966,-3967,-3217,-7094,-6656,-1847,-6024,-4792], +[0,-932,-3784,-5208,-2006], +[0,-426], +[0,-1004,-3161,-6125,-3578,-1334,-3691,-5728,-3122,-3994,-3690], +[0,-1107,-5064,-5922,-8528], +[0,-1543,-2168], +[0,-1654,-2125,-2250], +[0,-1127,-1144], +[0,-510,-2125], +[0,-9219,-1654,-4004], +[0,-1127,-1132,-2541], +[0,-519,-1168,-1825,-2460,-2541], +[0,-2347], +[0,-1252,-1654,-2198,-2460], +[0,-2347,-1876], +[0,-1876,-2347], +[0,-519,-1825,-2460,-2541], +[0,-3037,-652,-1294,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-1696,-596], +[0,-707,-1510], +[0,-1580], +[0,-1386,-9944,-9945,-3162,-3994,-9946,-752,-5269,-1861], +[0,-519,-9982,-2384,-2541], +[0,-4004,-3634,-1412,-4873,-3440], +[0,-4034], +[0,-5092,-3264,-5388,-5387], +[0,-1452], +[0,-2518], +[0,-1646], +[0,-1523,-10558,-5827,-7685,-7773,-4634,-6005,-4055], +[0,-3326,-351,-3266,-652,-932,-943,-1600,-3668,-1654,-2127], +[0,-4792,-6137,-6138,-6134,-9405,-11114,-4004,-4215,-8611], +[0,-1127], +[0,-687,-3957,-11725,-3673,-1764,-11726,-11727,-8907,-10227,-5921,-4107], +[0,-3994,-1805,-1810,-11816,-11817,-11818,-11819,-11820,-11821,-7095,-4865,-3496,-7237,-7863,-2435,-11822,-7303,-4377, +-7091,-8421,-6599,-1958,-3258,-6656], +[0,-6748,-4377,-5829,-3215,-6747,-687,-3957], +[0,-1654,-664,-666], +[0,-1841,-6120,-8449,-3173,-8450,-6121,-1791,-11437], +[0,-2541,-519,-2384], +[0,-1859,-11878,-11613], [1,3,6920], -[0,-201], -[0,-305,-465], +[0,-523], +[0,-635,-1934], [1,3,7131], [1,3,7300], -[0,-6,-10011], -[0,-6,-234,-333,-282,-95,-1215,-9935,-9934], +[0,-2006,-12452], +[0,-2006,-2034,-5271,-5270,-3162,-7085,-12561,-12562], [1,3,7605], -[0,-6,-434,-3120,-1937,-1533,-1371], +[0,-2006,-3122,-10470,-9843,-1306,-10606], [1,3,7706], [1,3,7712], -[0,-81,-34], -[0,-716], -[0,-14,-716,-430,-158,-370], -[0,-6,-52,-399,-111,-209,-141,-184,-46,-37,-2175], +[0,-2384,-2541], +[0,-12913], +[0,-2127,-12913,-4795,-1764,-3209], +[0,-2006,-3161,-1713,-3578,-3844,-3966,-3577,-3445,-687,-2455], [1,3,8114], [1,3,8321], [1,3,8373], -[0,-3236,-156,-597,-4246,-2003,-3059,-4245], -[0,-2,-42,-114], -[0,-132], -[0,-53,-52,-1670,-8472,-8471,-104], -[0,-2291], -[0,-684,-1398,-666,-589,-37,-959,-1466,-547,-114,-958,-300], -[0,-45,-53,-6,-1094], +[0,-9214,-2359,-2330,-13745,-6909,-11846,-13746], +[0,-2410,-856,-3262], +[0,-2444], +[0,-3100,-3161,-6211,-14339,-14340,-2466], +[0,-14357], +[0,-3113,-7646,-7641,-3673,-687,-3970,-3108,-3960,-3262,-3976,-3994], +[0,-3214,-3100,-2006,-3481], [1,24,9789], -[0,-3865], +[0,-2662], [1,24,10023], -[0,-1529,-52,-6,-95,-300,-2365,-2116,-1026,-3742,-2676], -[0,-7605], +[0,-1386,-3161,-2006,-3162,-3994,-9946,-3995,-752,-3997,-3998], +[0,-15309], [1,3,10151], -[0,-42,-114,-74], -[0,-4117,-4116,-4115,-4114,-1369,-3108,-4113,-2524,-4112,-4111,-1444,-1901,-6,-4110,-192,-74,-282,-95,-1200,-1899,-4109], -[0,-862,-666,-53,-91,-1667,-3228], -[0,-1361,-46], -[0,-5,-43,-4,-147,-260,-81,-233,-2,-34], -[0,-2218], -[0,-292,-6,-2218,-52,-2646,-3159,-1940], -[0,-2953,-4199,-7330,-2952,-2951,-544,-61,-1090], +[0,-856,-3262,-2476], +[0,-15415,-15416,-15417,-15418,-11853,-10655,-15419,-6711,-15420,-15421,-4126,-15071,-2006,-15422,-475,-2476,-5270,-3162, +-11321,-15423,-15424], +[0,-4258,-7641,-3100,-4865,-6342,-9290], +[0,-15445,-3445], +[0,-3037,-652,-1942,-2094,-2100,-2384,-2399,-2410,-2541], +[0,-1368], +[0,-525,-2006,-1368,-3161,-4729,-9850,-9613], +[0,-15627,-14386,-15628,-15629,-15630,-4864,-3634,-3636], [1,3,10609], -[0,-4096,-335,-2024,-2,-4095,-4094,-52,-3055], +[0,-15699,-3967,-6209,-2410,-15700,-15701,-3161,-11894], [1,3,10660], [1,3,10677], [1,3,10691], [1,3,10722], -[0,-915,-46,-7224,-7223,-52,-2369], -[0,-6,-52,-7171,-7170], -[0,-8,-1,-14,-57,-4,-2,-29,-12,-25,-176,-19,-22], -[0,-2123,-2679,-1737,-1736,-37,-308,-294,-1735,-573,-547,-114,-3745,-336,-2678,-200,-1447,-2122,-45,-1263,-141,-335,-490, --2121,-397,-2120,-1301,-959,-3744,-1466,-1446,-1262,-174,-431,-635,-2,-102,-958,-1776,-2119], -[0,-184,-53,-1470,-1701,-2077,-1700,-1431,-327,-1699,-1698,-1697,-2076,-2075,-1696,-1695,-2074,-2073,-2072,-6,-516,-2071, --2070,-2069,-2068,-74,-1238,-491,-2067,-249,-1237,-192,-2,-45,-485,-111,-585,-1694,-1693,-24,-31,-1236,-1692,-1235,-2066, --327,-2065,-2064,-2063,-2062,-2061,-2060,-2288], +[0,-1313,-3445,-15751,-15752,-3161,-9840], +[0,-2006,-3161,-15804,-15805], +[0,-1415,-932,-2127,-2375,-1942,-2410,-3136,-940,-967,-1419,-428,-427], +[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3960,-3262,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966, +-3967,-1965,-3968,-1966,-3969,-2063,-3970,-3971,-3108,-3972,-3973,-3974,-3975,-3694,-2410,-3160,-3976,-2559,-3977], +[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, +-5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, +-5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364], [1,3,10858], -[0,-2277,-1767], +[0,-231,-2900], [1,24,11236], -[0,-16429,-6576,-2943,-6575,-4059,-6574,-2283,-2282,-2281,-2942,-16428,-6573,-4058,-6572,-16427,-16426,-16425,-2280,-2279, --16424,-50,-538,-11,-770,-427,-216,-6571,-2941,-16423,-16422,-6570,-161,-622,-1196,-1038,-306,-1195,-173,-480,-21,-136, --140,-178,-90,-16421,-577,-479,-16420,-16419,-366,-16418,-1594,-16417,-1593,-1592,-1591,-16416,-16415,-16414,-16413, --16412,-1590,-1589, --1194,-1037,-331,-1588,-448,-1587,-1193,-1036,-1586,-1360,-1192,-1585,-1359,-1584,-16411,-1583,-621,-426,-1897,-356, --16410,-1358,-49,-16409,-16408,-16407,-16406,-16405,-16404,-1896,-1895,-4057,-6569,-4056,-2940,-6568,-16403,-16402, --16401,-16400,-16399,-16398,-16397,-16396,-16395,-16394,-16393,-16392,-16391,-16390,-16389,-16388,-16387,-16386,-16385, --16384,-16383,-16382,-16381,-16380,-16379,-16378,-16377,-16376, --16375,-16374,-16373,-16372,-16371,-16370,-16369,-16368,-16367,-16366,-16365,-16364,-16363,-16362,-16361,-16360,-16359, --16358,-16357,-16356,-16355,-16354,-16353,-6567,-16352,-16351,-6566,-16350,-16349,-16348,-16347,-16346,-2939,-4055,-2278, --1894,-16345,-16344,-16343,-16342,-16341,-16340,-16339,-16338,-16337,-16336,-16335,-16334,-16333,-16332,-16331,-16330, --16329,-16328,-16327,-16326,-16325,-16324,-16323,-16322,-16321,-769,-48,-16320, --4054,-16319,-16318,-2938,-2937,-4053,-4052,-16317,-16316,-16315,-16314,-16313,-4051,-16312,-16311,-16310,-16309,-16308, --16307,-16306,-16305,-16304,-16303,-16302,-16301,-16300,-16299,-16298,-16297,-16296,-16295,-16294,-16293,-16292,-16291, --16290,-16289,-6565,-16288,-2277,-4050,-6564,-1357,-16287,-4049,-715,-1356,-16286,-4048,-16285,-16284,-16283,-16282, --16281,-16280,-16279,-16278,-16277,-6563,-16276,-6562,-16275,-6561,-16274, --16273,-6560,-16272,-16271,-16270,-2936,-478,-1893,-2276,-4047,-16269,-6559,-16268,-2275,-6558,-16267,-6557,-4046,-6556, --16266,-6555,-16265,-16264,-6554,-930,-4045,-4044,-1355,-16263,-16262,-16261,-16260,-16259,-16258,-16257,-16256,-16255, --714,-16254,-2274,-16253,-1035,-16252,-4043,-4042,-16251,-6553,-2273,-2935,-713,-16250,-16249,-16248,-16247,-4041,-6552, --16246,-6551,-16245,-16244,-16243,-16242,-16241,-16240, --16239,-16238,-16237,-16236,-16235,-16234,-16233,-16232,-16231,-16230,-16229,-16228,-16227,-16226,-16225,-16224,-16223, --16222,-16221,-16220,-16219,-16218,-16217,-16216,-16215,-16214,-16213,-16212,-16211,-2272,-80,-63,-16210,-6550,-16209, --16208,-16207,-662,-2934,-16206,-16205,-16204,-16203,-16202,-4040,-1582,-2271,-252,-16201,-16200,-16199,-16198,-16197, --16196,-16195,-16194,-16193,-16192,-16191,-16190,-16189,-16188,-16187,-16186, --16185,-16184,-16183,-16182,-16181,-16180,-16179,-16178,-16177,-16176,-16175,-16174,-16173,-16172,-16171,-16170,-16169, --6549,-6548,-16168,-16167,-4039,-330,-155,-6547,-122,-317,-2270,-4038,-6546,-6545,-6544,-6543,-6542,-4037,-6541,-6540, --6539,-6538,-6537,-2269,-16166,-329,-22,-19,-839,-16165,-6536,-6535,-4036,-6534,-6533,-4035,-16164,-16163,-4034,-537, --1892,-6532,-16162,-16161,-16160,-16159,-16158, --16157,-16156,-16155,-16154,-16153,-16152,-16151,-16150,-16149,-16148,-1354,-1191,-4033,-208,-1581,-6531,-2268,-838, --16147,-6530,-768,-193,-837,-2933,-6529,-2932,-6528,-192,-16146,-6527,-6526,-477,-929,-1190,-767,-1580,-16145,-1034, --16144,-4032,-4031,-1579,-16143,-6525,-2267,-2266,-4030,-2265,-2931,-16142,-2930,-16141,-16140,-928,-836,-1353,-2929, --1891,-1189,-293,-2928,-927,-60,-1578, --1577,-2264,-2927,-766,-279,-16139,-160,-51,-4029,-1033,-1352,-201,-16138,-292,-182,-169,-94,-2263,-1890,-2262,-2926,-86, --98,-278,-1889,-1351,-4028,-355,-1888,-1188,-4027,-4026,-2261,-2260,-1576,-6524,-1887,-1350,-1886,-835,-4025,-834,-2259, --1032,-620,-765,-268,-328,-712,-1885,-1187,-4024,-2925,-2924,-447,-291,-1575,-2258,-1349,-833,-926,-2257,-6523,-6522, --16137,-2923,-1884,-1574,-16136,-1573,-16135,-2922,-16134,-1186,-16133,-16132,-2921,-110,-2920,-2919,-2918,-16131,-2917, --2256,-711,-6521,-6520,-2255,-1883,-6519,-16130,-2916,-2915,-2914,-2913,-2912,-2911,-2910,-4023,-4022,-4021,-4020,-16129, --116,-2909,-168,-16128,-2254,-476,-6518,-1185,-1348,-16127,-6517,-2908,-1572,-2907,-2253,-1882,-2906,-1031,-59,-2905, --305,-6516,-1881,-4019,-1184, --299,-1880,-2252,-4018,-1571,-6515,-16126,-1570,-1347,-1569,-6514,-475,-43,-925,-6513,-1030,-446,-4017,-1183,-327,-2904, --1879,-16125,-2903,-13,-244,-2251,-2250,-20,-4016,-2902,-1568,-1567,-16124,-238,-6512,-2249,-4015,-16123,-119,-504,-290, --267,-576,-1878,-2248,-1877,-37,-2901,-1566,-1876,-6511,-2900,-1029,-6510,-661,-2247,-6509,-16122,-1182,-4014,-4013,-536, --304, --6508,-1028,-16121,-354,-152,-1181,-474,-316,-224,-1180,-135,-1565,-6507,-2899,-2898,-58,-503,-1179,-473,-6506,-384,-315, --289,-353,-1178,-223,-16120,-1564,-16119,-2246,-1346,-4012,-1027,-924,-16118,-575,-404,-1345,-472,-352,-619,-2897,-1344, --832,-535,-660,-6505,-16117,-1026,-159,-383,-403,-56,-618,-6504,-6503,-4011,-2245,-6502,-1177,-2896,-6501,-16116,-26, --2244,-230,-659,-1875,-2895,-16115,-425,-24,-16114,-6500,-144,-1343,-4010,-1176,-6499,-2243,-382,-4009,-764,-6498,-831, --2242,-2241,-6497,-4008,-1874,-16113,-502,-298,-1175,-2240,-2239,-6496,-2894,-16112,-4007,-2893,-1873,-16111,-1174,-1872, --574,-6495,-1871,-36,-1870,-2892,-534,-6494,-16110,-16109,-6493,-2238,-830,-1869,-326,-151,-237,-658,-1563,-1173,-1342, --2891,-1341, --1868,-2890,-207,-6492,-2889,-16108,-1562,-16107,-4006,-6491,-6490,-4005,-16106,-16105,-16104,-16103,-6489,-1561,-16102, --4004,-16101,-16100,-16099,-1025,-42,-6488,-1867,-16098,-1866,-4003,-16097,-4002,-1560,-215,-1024,-1340,-16096,-1023, --6487,-4001,-16095,-4000,-3999,-3998,-3997,-16094,-6486,-1172,-6485,-1559,-16093,-1558,-16092,-1171,-3996,-1557,-351, --6484,-6483,-471,-16091,-6482,-16090,-16089, --6481,-16088,-6480,-6479,-16087,-16086,-1556,-6478,-6477,-6476,-1865,-1339,-1864,-829,-573,-16085,-16084,-2237,-1863, --445,-1022,-6475,-3995,-6474,-1338,-1555,-1554,-1553,-6473,-1021,-3994,-1862,-89,-501,-424,-2888,-1,-266,-191,-1020, --2236,-828,-1337,-2235,-12,-1336,-1861,-84,-1552,-1335,-1551,-710,-251,-1860,-2234,-827,-923,-1859,-1550,-572,-500,-763, --10,-145, --181,-1334,-148,-214,-265,-115,-76,-25,-67,-64,-190,-826,-762,-2887,-131,-2886,-1549,-1170,-150,-2233,-825,-1548,-1169, --1019,-6472,-381,-617,-1168,-1167,-824,-922,-16083,-6471,-1166,-423,-1858,-1018,-422,-2885,-118,-921,-350,-823,-421,-41, --16082,-16081,-16080,-16079,-16078,-920,-16077,-16076,-16075,-16074,-444,-2884,-919,-1165,-3993,-3992,-2232,-264,-1333, --16073,-1017,-229,-16072,-1857,-6470,-1164,-822,-1332,-1856,-16071,-6469,-16070,-3991,-3990,-1855,-533,-277,-16069,-1331, --761,-1016,-1547,-349,-1546,-6468,-1545,-16068,-16067,-1854,-1330,-1544,-16066,-16065,-16064,-420,-6467,-6466,-1329, --1543,-3989,-1015,-3988,-1853,-16063,-657,-1014,-3987,-709,-6465,-3986,-1852,-303,-40,-1851,-16062,-2231,-6464,-3985, --1850,-6463,-1849,-16061,-1848, --1847,-16060,-16059,-16058,-16057,-6462,-16056,-2883,-16055,-1846,-499,-1328,-498,-1327,-6461,-348,-3984,-571,-16054,-28, --1542,-918,-55,-206,-3983,-6460,-16053,-6459,-402,-6458,-16052,-325,-6457,-2882,-380,-1013,-16051,-708,-16050,-54,-16049, --1541,-1012,-570,-167,-6456,-243,-16048,-656,-616,-532,-6455,-2230,-16047,-16046,-917,-177,-6454,-365,-16045,-347,-302, --1163,-1540, --531,-1326,-3982,-1011,-1010,-6453,-3981,-655,-2881,-1845,-821,-1539,-16044,-6452,-2229,-6451,-32,-16043,-16042,-1844, --16041,-16040,-615,-16039,-16038,-3980,-6450,-3979,-16037,-16036,-6449,-2228,-1009,-16035,-16034,-654,-6448,-16033,-3978, --16032,-16031,-16030,-6447,-6446,-3977,-530,-16029,-1162,-16028,-2880,-707,-16027,-6445,-3976,-16026,-16025,-820,-16024, --6444,-16023,-1161,-16022,-16021,-6443, --16020,-6442,-16019,-16018,-1008,-16017,-3975,-6441,-819,-6440,-1325,-16016,-2227,-3974,-16015,-364,-2879,-16014,-16013, --6439,-916,-2226,-1538,-16012,-16011,-16010,-16009,-314,-1007,-3973,-16008,-16007,-1537,-16006,-6438,-3972,-313,-16005, --3971,-16004,-16003,-16002,-16001,-6437,-3970,-1536,-653,-16000,-6436,-15999,-363,-6435,-2878,-15998,-6434,-6433,-15997, --1160,-1535,-3969,-250,-2225,-1324,-6432, --2877,-3968,-2876,-1323,-2224,-706,-1843,-6431,-1842,-2223,-1534,-6430,-760,-2875,-1159,-6429,-2222,-1158,-3967,-3966, --15996,-15995,-6428,-6427,-379,-15994,-1533,-3965,-2874,-1841,-3964,-1006,-15993,-915,-6426,-818,-15992,-2873,-3963, --3962,-705,-2872,-1532,-1531,-3961,-15991,-3960,-3959,-15990,-1530,-3958,-346,-15989,-497,-105,-652,-614,-2871,-2870, --419,-6425,-2221,-401,-759, --9,-6424,-6423,-6422,-1157,-1156,-15988,-470,-1005,-469,-1840,-6421,-2220,-3957,-6420,-1004,-3956,-529,-2219,-1839, --15987,-213,-817,-6419,-2218,-1155,-528,-758,-15986,-6418,-3955,-15985,-200,-15984,-3954,-15983,-757,-2217,-3953,-15982, --704,-15981,-1529,-1838,-2216,-2869,-15980,-651,-569,-1154,-1837,-1153,-1152,-6417,-1836,-1003,-3952,-914,-1151,-1835, --2868,-66,-1834,-6416, --1322,-1833,-2215,-15979,-199,-378,-2214,-8,-1528,-496,-913,-176,-15978,-816,-3951,-15977,-1150,-3950,-1832,-912,-1149, --1321,-3949,-527,-2867,-15976,-6415,-756,-3948,-249,-15975,-1002,-1001,-2866,-101,-15974,-6414,-613,-166,-6413,-815,-79, --15973,-1148,-117,-1000,-6412,-911,-650,-3947,-2865,-1147,-276,-649,-2864,-814,-1146,-813,-15972,-15971,-3946,-2863, --15970,-78, --910,-1527,-703,-139,-612,-1526,-1831,-212,-1145,-400,-189,-418,-2862,-1830,-755,-909,-812,-1320,-648,-702,-526,-3945, --2861,-2860,-495,-6411,-811,-2859,-15969,-443,-15968,-15967,-2858,-15966,-15965,-15964,-6410,-15963,-1144,-2857,-2856, --2855,-2213,-15962,-2854,-15961,-15960,-3944,-1525,-222,-1143,-2853,-6409,-6408,-1142,-6407,-3943,-6406,-15959,-6405, --2212,-15958,-18,-2211, --1829,-3942,-15957,-6404,-1141,-3941,-345,-754,-6403,-6402,-6401,-1140,-23,-468,-2210,-1828,-1139,-2209,-1827,-6400, --15956,-15955,-15954,-1826,-15953,-15952,-6399,-6398,-6397,-1825,-1319,-15951,-15950,-15949,-1524,-1824,-2852,-263,-647, --1523,-2208,-1522,-2207,-6396,-1521,-3940,-442,-15948,-2851,-15947,-1823,-15946,-297,-6395,-15945,-753,-2206,-6394,-2850, --15944,-2849,-999,-15943,-100, --221,-998,-1318,-1138,-15942,-1137,-2848,-997,-996,-525,-228,-15941,-1520,-1136,-15940,-2847,-1135,-15939,-908,-1134, --2846,-15938,-2845,-262,-2205,-6393,-1133,-1822,-15937,-15936,-467,-494,-1132,-2844,-6392,-2204,-1131,-701,-1519,-362, --261,-344,-15935,-377,-227,-93,-88,-15934,-2843,-15933,-72,-1518,-1317,-2203,-3,-1821,-995,-611,-568,-1820,-1517,-1516, --1130,-1515, --6391,-15932,-236,-907,-15931,-15930,-15929,-376,-1129,-1316,-15928,-6390,-700,-6389,-6388,-2842,-2841,-567,-1819,-810, --2840,-1514,-1513,-3939,-6387,-524,-15927,-566,-1818,-1512,-15926,-2839,-809,-3938,-15925,-646,-15924,-15923,-6386,-3937, --15922,-752,-15921,-6385,-1817,-15920,-3936,-15919,-6384,-399,-15918,-15917,-6383,-3935,-6382,-2838,-2837,-15916,-198, --906,-3934,-15915,-15914,-6381, --2836,-188,-1128,-15913,-15912,-610,-1511,-6380,-3933,-1510,-15911,-15910,-6379,-2835,-15909,-1315,-3932,-6378,-6377, --3931,-15908,-15907,-2202,-15906,-1816,-288,-699,-15905,-6376,-6375,-466,-1509,-15904,-6374,-2201,-417,-158,-6373,-3930, --994,-1127,-1815,-1814,-65,-343,-2200,-15903,-15902,-1813,-275,-2834,-1314,-2833,-6372,-2832,-993,-3929,-6371,-15901, --1313,-15,-1812,-6370,-905, --242,-1811,-1312,-1508,-6369,-609,-1126,-2831,-992,-698,-6368,-2830,-15900,-149,-1311,-15899,-15898,-6367,-608,-15897, --1310,-565,-2199,-3928,-324,-6366,-808,-1507,-3927,-807,-2829,-6365,-15896,-904,-564,-1125,-2198,-15895,-6364,-1309, --15894,-15893,-1810,-15892,-6363,-15891,-165,-607,-751,-1809,-15890,-15889,-15888,-3926,-2828,-248,-697,-493,-1308,-563, --606,-15887,-15886,-6362, --1506,-605,-3925,-903,-645,-2827,-15885,-164,-323,-6361,-1124,-1307,-1306,-2826,-991,-2197,-1123,-15884,-398,-1305,-143, --990,-562,-6360,-806,-15883,-3924,-15882,-15881,-1505,-2825,-3923,-644,-38,-2824,-696,-6359,-15880,-15879,-15878,-2196, --1808,-3922,-2823,-15877,-15876,-15875,-1504,-3921,-6358,-561,-902,-492,-15874,-15873,-15872,-15871,-15870,-15869,-2195, --1503,-3920,-3919,-15868, --15867,-15866,-15865,-15864,-15863,-15862,-6357,-805,-15861,-1502,-901,-560,-15860,-15859,-465,-15858,-2194,-6356,-1501, --235,-491,-2822,-4,-2821,-1122,-900,-6355,-15857,-523,-6354,-695,-899,-441,-2820,-3918,-440,-15856,-989,-287,-361,-6353, --172,-1807,-1806,-15855,-490,-397,-121,-1500,-1805,-2193,-604,-180,-2819,-643,-15854,-1304,-988,-157,-6352,-522,-3917, --1499,-464, --3916,-987,-986,-15853,-6351,-375,-6350,-1498,-694,-642,-1804,-3915,-15852,-1121,-6349,-1497,-693,-1496,-3914,-2192, --1303,-15851,-6,-15850,-15849,-15848,-2818,-6348,-2817,-1120,-6347,-1302,-2816,-2815,-3913,-35,-6346,-6345,-3912,-3911, --2191,-6344,-3910,-2814,-1803,-439,-1495,-15847,-15846,-15845,-234,-15844,-6343,-6342,-15843,-3909,-898,-692,-3908,-897, --559,-15842,-3907,-15841, --6341,-2813,-15840,-6340,-286,-2812,-3906,-691,-6339,-15839,-6338,-603,-1802,-2190,-197,-1301,-15838,-15837,-1300,-3905, --2189,-3904,-2188,-690,-6337,-15836,-322,-15835,-6336,-6335,-15834,-6334,-602,-985,-342,-374,-1801,-6333,-15833,-2187, --3903,-2811,-750,-373,-6332,-274,-147,-521,-2810,-15832,-601,-1800,-260,-804,-1119,-896,-1799,-113,-1798,-6331,-6330, --2809,-15831,-416, --2808,-1118,-128,-641,-2807,-15830,-6329,-15829,-6328,-15828,-2186,-1494,-1797,-7,-6327,-14,-273,-984,-895,-463,-415, --1117,-894,-1796,-1299,-341,-893,-1298,-226,-1297,-301,-803,-640,-892,-6326,-15827,-1296,-2806,-983,-1795,-3902,-489, --15826,-488,-187,-6325,-3901,-6324,-2185,-1794,-77,-462,-6323,-1116,-982,-15825,-639,-2805,-6322,-6321,-1493,-1115,-120, --15824, --2184,-16,-802,-15823,-6320,-15822,-1114,-2804,-801,-1793,-1113,-396,-1112,-15821,-15820,-2803,-1492,-689,-749,-272, --3900,-6319,-82,-3899,-395,-2802,-891,-2801,-15819,-600,-15818,-15817,-6318,-2800,-27,-186,-15816,-748,-321,-15815, --15814,-2799,-285,-2798,-15813,-6317,-2797,-747,-6316,-6315,-1792,-3898,-800,-1295,-6314,-130,-799,-890,-146,-1111, --15812,-2796,-2795,-798, --889,-6313,-15811,-2794,-6312,-797,-2793,-1491,-6311,-3897,-97,-134,-2792,-1110,-3896,-1294,-2791,-746,-15810,-15809, --15808,-1490,-3895,-15807,-6310,-163,-15806,-394,-3894,-138,-1293,-599,-3893,-6309,-15805,-154,-2183,-3892,-888,-3891, --3890,-179,-558,-15804,-1489,-2790,-393,-1791,-6308,-887,-2789,-688,-3889,-125,-15803,-2788,-2787,-461,-2786,-220,-2785, --2784,-2783,-598, --15802,-3888,-15801,-6307,-6306,-2782,-6305,-6304,-6303,-3887,-1790,-6302,-1292,-2781,-557,-85,-556,-1291,-39,-312,-1290, --886,-15800,-15799,-6301,-15798,-597,-372,-15797,-15796,-175,-392,-15795,-1488,-15794,-2780,-2182,-1789,-3886,-885,-1109, --1788,-460,-71,-2779,-15793,-2181,-1487,-6300,-1486,-1108,-1107,-3885,-3884,-2778,-156,-6299,-3883,-884,-414,-1106, --15792,-2777,-15791, --2180,-687,-2776,-15790,-15789,-15788,-15787,-57,-211,-15786,-796,-33,-15785,-6298,-15784,-795,-81,-15783,-555,-44,-196, --1289,-6297,-171,-153,-3882,-6296,-15782,-15781,-15780,-2775,-233,-210,-981,-124,-15779,-15778,-794,-15777,-15776,-15775, --2179,-2,-83,-3881,-6295,-1485,-1288,-112,-1105,-1484,-1483,-15774,-15773,-3880,-1287,-247,-1286,-284,-133,-15772,-340, --1482,-6294, --1787,-596,-15771,-195,-2178,-438,-3879,-3878,-2177,-6293,-2774,-1786,-132,-2176,-123,-1104,-15770,-1785,-1285,-437, --15769,-980,-3877,-2175,-2174,-3876,-6292,-6291,-70,-1784,-554,-883,-553,-15768,-104,-15767,-793,-30,-15766,-1481,-6290, --15765,-15764,-15763,-74,-3875,-979,-6289,-3874,-1103,-15762,-882,-2173,-1480,-1783,-745,-1102,-595,-594,-744,-6288, --1782,-1284,-15761, --6287,-6286,-15760,-15759,-15758,-17,-520,-92,-1781,-170,-2773,-2772,-519,-1780,-1479,-15757,-881,-6285,-15756,-15755, --792,-2172,-219,-6284,-552,-15754,-1779,-6283,-2171,-978,-3873,-3872,-880,-3871,-1778,-205,-15753,-743,-1777,-6282,-551, --3870,-1283,-15752,-2170,-34,-2169,-6281,-1282,-15751,-742,-638,-259,-2168,-96,-518,-686,-15750,-6280,-977,-3869,-1478, --2167,-1776, --15749,-6279,-2166,-6278,-258,-15748,-15747,-2771,-976,-6277,-15746,-6276,-15745,-6275,-15744,-6274,-6273,-6272,-6271, --6270,-15743,-320,-15742,-15741,-6269,-15740,-1281,-15739,-15738,-15737,-6268,-2770,-2165,-15736,-1101,-3868,-15735, --15734,-15733,-15732,-15731,-15730,-15729,-15728,-15727,-15726,-2769,-15725,-15724,-15723,-15722,-15721,-15720,-15719, --15718,-15717,-15716,-15715,-15714,-15713,-15712,-15711,-1477,-15710, --1476,-15709,-15708,-15707,-15706,-6267,-15705,-6266,-6265,-15704,-241,-6264,-15703,-6263,-15702,-6262,-15701,-2768, --15700,-6261,-15699,-3867,-15698,-15697,-2164,-6260,-1475,-3866,-15696,-2163,-311,-6259,-15695,-15694,-6258,-15693, --15692,-15691,-3865,-15690,-15689,-15688,-15687,-15686,-15685,-6257,-6256,-15684,-15683,-15682,-15681,-15680,-15679, --15678,-6255,-15677,-2767,-15676,-6254,-3864,-15675,-2766,-6253,-6252, --15674,-6251,-1474,-15673,-15672,-15671,-2162,-2161,-15670,-6250,-15669,-2160,-15668,-6249,-6248,-6247,-6246,-6245,-6244, --6243,-6242,-15667,-6241,-3863,-6240,-6239,-6238,-6237,-3862,-3861,-2765,-6236,-15666,-15665,-6235,-15664,-15663,-15662, --15661,-15660,-6234,-6233,-6232,-3860,-15659,-6231,-1775,-15658,-3859,-6230,-3858,-6229,-2764,-2763,-1473,-15657,-15656, --1774,-1773,-15655,-15654,-15653,-15652,-15651, --15650,-15649,-15648,-15647,-15646,-2762,-2761,-6228,-1772,-6227,-3857,-6226,-15645,-6225,-1472,-6224,-6223,-2159,-6222, --3856,-15644,-1471,-6221,-15643,-2760,-15642,-1771,-6220,-15641,-6219,-15640,-6218,-15639,-6217,-15638,-15637,-2759, --15636,-6216,-2758,-6215,-15635,-15634,-6214,-15633,-15632,-2757,-15631,-15630,-15629,-15628,-15627,-2756,-15626,-15625, --15624,-1470,-15623,-15622,-15621,-15620,-15619,-3855,-15618, --1770,-2755,-6213,-3854,-2754,-15617,-6212,-2753,-15616,-1769,-6211,-6210,-6209,-15615,-6208,-15614,-310,-15613,-1280, --15612,-15611,-15610,-15609,-15608,-2752,-6207,-6206,-6205,-15607,-3853,-6204,-6203,-6202,-6201,-6200,-1768,-2751,-6199, --6198,-15606,-6197,-6196,-3852,-15605,-2750,-15604,-6195,-6194,-15603,-6193,-6192,-15602,-6191,-6190,-15601,-15600,-6189, --6188,-15599,-15598,-15597,-6187,-15596,-6186, --15595,-15594,-15593,-15592,-791,-6185,-6184,-15591,-2749,-6183,-15590,-6182,-371,-15589,-15588,-15587,-6181,-15586, --6180,-15585,-1767,-6179,-6178,-6177,-15584,-6176,-15583,-15582,-15581,-15580,-459,-15579,-15578,-15577,-3851,-3850, --15576,-1766,-3849,-15575,-15574,-6175,-3848,-975,-2158,-15573,-3847,-15572,-15571,-15570,-15569,-6174,-3846,-15568, --3845,-15567,-15566,-15565,-15564,-6173,-6172,-15563,-15562,-15561, --3844,-15560,-3843,-15559,-6171,-15558,-15557,-15556,-15555,-3842,-6170,-3841,-15554,-15553,-15552,-3840,-15551,-6169, --15550,-15549,-15548,-1100,-15547,-6168,-15546,-15545,-1469,-15544,-15543,-6167,-15542,-6166,-6165,-15541,-15540,-15539, --6164,-2748,-15538,-6163,-3839,-15537,-15536,-2157,-15535,-15534,-15533,-6162,-6161,-15532,-15531,-15530,-6160,-790, --6159,-15529,-15528,-15527,-15526,-6158,-6157,-6156,-6155,-15525, --15524,-15523,-6154,-15522,-15521,-6153,-15520], +[0,-1,-2,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-23,-24,-25,-26,-27,-28,-29,-30,-31,-32, +-33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62, +-63, +-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93, +-94,-95,-96,-97,-98,-99,-100,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-113,-114,-115,-116,-117,-118, +-119,-120,-121,-122,-123,-124,-125,-126,-127, +-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139,-140,-141,-142,-143,-144,-145,-146,-147,-148,-149,-150,-151, +-152,-153,-154,-155,-156,-157,-158,-159,-160,-161,-162,-163,-164,-165,-166,-167,-168,-169,-170,-171,-172,-173,-174,-175, +-176,-177,-178,-179,-180,-181,-182,-183,-184,-185,-186,-187,-188,-189,-190,-191, +-192,-193,-194,-195,-196,-197,-198,-199,-200,-201,-202,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-215, +-216,-217,-218,-219,-220,-221,-222,-223,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,-235,-236,-237,-238,-239, +-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255, +-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-274,-275,-276,-277,-278,-279, +-280,-281,-282,-283,-284,-285,-286,-287,-288,-289,-290,-291,-292,-293,-294,-295,-296,-297,-298,-299,-300,-301,-302,-303, +-304,-305,-306,-307,-308,-309,-310,-311,-312,-313,-314,-315,-316,-317,-318,-319, +-320,-321,-322,-323,-324,-325,-326,-327,-328,-329,-330,-331,-332,-333,-334,-335,-336,-337,-338,-339,-340,-341,-342,-343, +-344,-345,-346,-347,-348,-349,-350,-351,-352,-353,-354,-355,-356,-357,-358,-359,-360,-361,-362,-363,-364,-365,-366,-367, +-368,-369,-370,-371,-372,-373,-374,-375,-376,-377,-378,-379,-380,-381,-382,-383, +-384,-385,-386,-387,-388,-389,-390,-391,-392,-393,-394,-395,-396,-397,-398,-399,-400,-401,-402,-403,-404,-405,-406,-407, +-408,-409,-410,-411,-412,-413,-414,-415,-416,-417,-418,-419,-420,-421,-422,-423,-424,-425,-426,-427,-428,-429,-430,-431, +-432,-433,-434,-435,-436,-437,-438,-439,-440,-441,-442,-443,-444,-445,-446,-447, +-448,-449,-450,-451,-452,-453,-454,-455,-456,-457,-458,-459,-460,-461,-462,-463,-464,-465,-466,-467,-468,-469,-470,-471, +-472,-473,-474,-475,-476,-477,-478,-479,-480,-481,-482,-483,-484,-485,-486,-487,-488,-489,-490,-491,-492,-493,-494,-495, +-496,-497,-498,-499,-500,-501,-502,-503,-504,-505,-506,-507,-508,-509,-510,-511, +-512,-513,-514,-515,-516,-517,-518,-519,-520,-521,-522,-523,-524,-525,-526,-527,-528,-529,-530,-531,-532,-533,-534,-535, +-536,-537,-538,-539,-540,-541,-542,-543,-544,-545,-546,-547,-548,-549,-550,-551,-552,-553,-554,-555,-556,-557,-558,-559, +-560,-561,-562,-563,-564,-565,-566,-567,-568,-569,-570,-571,-572,-573,-574,-575, +-576,-577,-578,-579,-580,-581,-582,-583,-584,-585,-586,-587,-588,-589,-590,-591,-592,-593,-594,-595,-596,-597,-598,-599, +-600,-601,-602,-603,-604,-605,-606,-607,-608,-609,-610,-611,-612,-613,-614,-615,-616,-617,-618,-619,-620,-621,-622,-623, +-624,-625,-626,-627,-628,-629,-630,-631,-632,-633,-634,-635,-636,-637,-638,-639, +-640,-641,-642,-643,-644,-645,-646,-647,-648,-649,-650,-651,-652,-653,-654,-655,-656,-657,-658,-659,-660,-661,-662,-663, +-664,-665,-666,-667,-668,-669,-670,-671,-672,-673,-674,-675,-676,-677,-678,-679,-680,-681,-682,-683,-684,-685,-686,-687, +-688,-689,-690,-691,-692,-693,-694,-695,-696,-697,-698,-699,-700,-701,-702,-703, +-704,-705,-706,-707,-708,-709,-710,-711,-712,-713,-714,-715,-716,-717,-718,-719,-720,-721,-722,-723,-724,-725,-726,-727, +-728,-729,-730,-731,-732,-733,-734,-735,-736,-737,-738,-739,-740,-741,-742,-743,-744,-745,-746,-747,-748,-749,-750,-751, +-752,-753,-754,-755,-756,-757,-758,-759,-760,-761,-762,-763,-764,-765,-766,-767, +-768,-769,-770,-771,-772,-773,-774,-775,-776,-777,-778,-779,-780,-781,-782,-783,-784,-785,-786,-787,-788,-789,-790,-791, +-792,-793,-794,-795,-796,-797,-798,-799,-800,-801,-802,-803,-804,-805,-806,-807,-808,-809,-810,-811,-812,-813,-814,-815, +-816,-817,-818,-819,-820,-821,-822,-823,-824,-825,-826,-827,-828,-829,-830,-831, +-832,-833,-834,-835,-836,-837,-838,-839,-840,-841,-842,-843,-844,-845,-846,-847,-848,-849,-850,-851,-852,-853,-854,-855, +-856,-857,-858,-859,-860,-861,-862,-863,-864,-865,-866,-867,-868,-869,-870,-871,-872,-873,-874,-875,-876,-877,-878,-879, +-880,-881,-882,-883,-884,-885,-886,-887,-888,-889,-890,-891,-892,-893,-894,-895, +-896,-897,-898,-899,-900,-901,-902,-903,-904,-905,-906,-907,-908,-909,-910,-911,-912,-913,-914,-915,-916,-917,-918,-919, +-920,-921,-922,-923,-924,-925,-926,-927,-928,-929,-930,-931,-932,-933,-934,-935,-936,-937,-938,-939,-940,-941,-942,-943, +-944,-945,-946,-947,-948,-949,-950,-951,-952,-953,-954,-955,-956,-957,-958,-959, +-960,-961,-962,-963,-964,-965,-966,-967,-968,-969,-970,-971,-972,-973,-974,-975,-976,-977,-978,-979,-980,-981,-982,-983, +-984,-985,-986,-987,-988,-989,-990,-991,-992,-993,-994,-995,-996,-997,-998,-999,-1000,-1001,-1002,-1003,-1004,-1005, +-1006,-1007,-1008,-1009,-1010,-1011,-1012,-1013,-1014,-1015,-1016,-1017,-1018,-1019,-1020,-1021,-1022,-1023, +-1024,-1025,-1026,-1027,-1028,-1029,-1030,-1031,-1032,-1033,-1034,-1035,-1036,-1037,-1038,-1039,-1040,-1041,-1042,-1043, +-1044,-1045,-1046,-1047,-1048,-1049,-1050,-1051,-1052,-1053,-1054,-1055,-1056,-1057,-1058,-1059,-1060,-1061,-1062,-1063, +-1064,-1065,-1066,-1067,-1068,-1069,-1070,-1071,-1072,-1073,-1074,-1075,-1076,-1077,-1078,-1079,-1080,-1081,-1082,-1083, +-1084,-1085,-1086,-1087, +-1088,-1089,-1090,-1091,-1092,-1093,-1094,-1095,-1096,-1097,-1098,-1099,-1100,-1101,-1102,-1103,-1104,-1105,-1106,-1107, +-1108,-1109,-1110,-1111,-1112,-1113,-1114,-1115,-1116,-1117,-1118,-1119,-1120,-1121,-1122,-1123,-1124,-1125,-1126,-1127, +-1128,-1129,-1130,-1131,-1132,-1133,-1134,-1135,-1136,-1137,-1138,-1139,-1140,-1141,-1142,-1143,-1144,-1145,-1146,-1147, +-1148,-1149,-1150,-1151, +-1152,-1153,-1154,-1155,-1156,-1157,-1158,-1159,-1160,-1161,-1162,-1163,-1164,-1165,-1166,-1167,-1168,-1169,-1170,-1171, +-1172,-1173,-1174,-1175,-1176,-1177,-1178,-1179,-1180,-1181,-1182,-1183,-1184,-1185,-1186,-1187,-1188,-1189,-1190,-1191, +-1192,-1193,-1194,-1195,-1196,-1197,-1198,-1199,-1200,-1201,-1202,-1203,-1204,-1205,-1206,-1207,-1208,-1209,-1210,-1211, +-1212,-1213,-1214,-1215, +-1216,-1217,-1218,-1219,-1220,-1221,-1222,-1223,-1224,-1225,-1226,-1227,-1228,-1229,-1230,-1231,-1232,-1233,-1234,-1235, +-1236,-1237,-1238,-1239,-1240,-1241,-1242,-1243,-1244,-1245,-1246,-1247,-1248,-1249,-1250,-1251,-1252,-1253,-1254,-1255, +-1256,-1257,-1258,-1259,-1260,-1261,-1262,-1263,-1264,-1265,-1266,-1267,-1268,-1269,-1270,-1271,-1272,-1273,-1274,-1275, +-1276,-1277,-1278,-1279, +-1280,-1281,-1282,-1283,-1284,-1285,-1286,-1287,-1288,-1289,-1290,-1291,-1292,-1293,-1294,-1295,-1296,-1297,-1298,-1299, +-1300,-1301,-1302,-1303,-1304,-1305,-1306,-1307,-1308,-1309,-1310,-1311,-1312,-1313,-1314,-1315,-1316,-1317,-1318,-1319, +-1320,-1321,-1322,-1323,-1324,-1325,-1326,-1327,-1328,-1329,-1330,-1331,-1332,-1333,-1334,-1335,-1336,-1337,-1338,-1339, +-1340,-1341,-1342,-1343, +-1344,-1345,-1346,-1347,-1348,-1349,-1350,-1351,-1352,-1353,-1354,-1355,-1356,-1357,-1358,-1359,-1360,-1361,-1362,-1363, +-1364,-1365,-1366,-1367,-1368,-1369,-1370,-1371,-1372,-1373,-1374,-1375,-1376,-1377,-1378,-1379,-1380,-1381,-1382,-1383, +-1384,-1385,-1386,-1387,-1388,-1389,-1390,-1391,-1392,-1393,-1394,-1395,-1396,-1397,-1398,-1399,-1400,-1401,-1402,-1403, +-1404,-1405,-1406,-1407, +-1408,-1409,-1410,-1411,-1412,-1413,-1414,-1415,-1416,-1417,-1418,-1419,-1420,-1421,-1422,-1423,-1424,-1425,-1426,-1427, +-1428,-1429,-1430,-1431,-1432,-1433,-1434,-1435,-1436,-1437,-1438,-1439,-1440,-1441,-1442,-1443,-1444,-1445,-1446,-1447, +-1448,-1449,-1450,-1451,-1452,-1453,-1454,-1455,-1456,-1457,-1458,-1459,-1460,-1461,-1462,-1463,-1464,-1465,-1466,-1467, +-1468,-1469,-1470,-1471, +-1472,-1473,-1474,-1475,-1476,-1477,-1478,-1479,-1480,-1481,-1482,-1483,-1484,-1485,-1486,-1487,-1488,-1489,-1490,-1491, +-1492,-1493,-1494,-1495,-1496,-1497,-1498,-1499,-1500,-1501,-1502,-1503,-1504,-1505,-1506,-1507,-1508,-1509,-1510,-1511, +-1512,-1513,-1514,-1515,-1516,-1517,-1518,-1519,-1520,-1521,-1522,-1523,-1524,-1525,-1526,-1527,-1528,-1529,-1530,-1531, +-1532,-1533,-1534,-1535, +-1536,-1537,-1538,-1539,-1540,-1541,-1542,-1543,-1544,-1545,-1546,-1547,-1548,-1549,-1550,-1551,-1552,-1553,-1554,-1555, +-1556,-1557,-1558,-1559,-1560,-1561,-1562,-1563,-1564,-1565,-1566,-1567,-1568,-1569,-1570,-1571,-1572,-1573,-1574,-1575, +-1576,-1577,-1578,-1579,-1580,-1581,-1582,-1583,-1584,-1585,-1586,-1587,-1588,-1589,-1590,-1591,-1592,-1593,-1594,-1595, +-1596,-1597,-1598,-1599, +-1600,-1601,-1602,-1603,-1604,-1605,-1606,-1607,-1608,-1609,-1610,-1611,-1612,-1613,-1614,-1615,-1616,-1617,-1618,-1619, +-1620,-1621,-1622,-1623,-1624,-1625,-1626,-1627,-1628,-1629,-1630,-1631,-1632,-1633,-1634,-1635,-1636,-1637,-1638,-1639, +-1640,-1641,-1642,-1643,-1644,-1645,-1646,-1647,-1648,-1649,-1650,-1651,-1652,-1653,-1654,-1655,-1656,-1657,-1658,-1659, +-1660,-1661,-1662,-1663, +-1664,-1665,-1666,-1667,-1668,-1669,-1670,-1671,-1672,-1673,-1674,-1675,-1676,-1677,-1678,-1679,-1680,-1681,-1682,-1683, +-1684,-1685,-1686,-1687,-1688,-1689,-1690,-1691,-1692,-1693,-1694,-1695,-1696,-1697,-1698,-1699,-1700,-1701,-1702,-1703, +-1704,-1705,-1706,-1707,-1708,-1709,-1710,-1711,-1712,-1713,-1714,-1715,-1716,-1717,-1718,-1719,-1720,-1721,-1722,-1723, +-1724,-1725,-1726,-1727, +-1728,-1729,-1730,-1731,-1732,-1733,-1734,-1735,-1736,-1737,-1738,-1739,-1740,-1741,-1742,-1743,-1744,-1745,-1746,-1747, +-1748,-1749,-1750,-1751,-1752,-1753,-1754,-1755,-1756,-1757,-1758,-1759,-1760,-1761,-1762,-1763,-1764,-1765,-1766,-1767, +-1768,-1769,-1770,-1771,-1772,-1773,-1774,-1775,-1776,-1777,-1778,-1779,-1780,-1781,-1782,-1783,-1784,-1785,-1786,-1787, +-1788,-1789,-1790,-1791, +-1792,-1793,-1794,-1795,-1796,-1797,-1798,-1799,-1800,-1801,-1802,-1803,-1804,-1805,-1806,-1807,-1808,-1809,-1810,-1811, +-1812,-1813,-1814,-1815,-1816,-1817,-1818,-1819,-1820,-1821,-1822,-1823,-1824,-1825,-1826,-1827,-1828,-1829,-1830,-1831, +-1832,-1833,-1834,-1835,-1836,-1837,-1838,-1839,-1840,-1841,-1842,-1843,-1844,-1845,-1846,-1847,-1848,-1849,-1850,-1851, +-1852,-1853,-1854,-1855, +-1856,-1857,-1858,-1859,-1860,-1861,-1862,-1863,-1864,-1865,-1866,-1867,-1868,-1869,-1870,-1871,-1872,-1873,-1874,-1875, +-1876,-1877,-1878,-1879,-1880,-1881,-1882,-1883,-1884,-1885,-1886,-1887,-1888,-1889,-1890,-1891,-1892,-1893,-1894,-1895, +-1896,-1897,-1898,-1899,-1900,-1901,-1902,-1903,-1904,-1905,-1906,-1907,-1908,-1909,-1910,-1911,-1912,-1913,-1914,-1915, +-1916,-1917,-1918,-1919, +-1920,-1921,-1922,-1923,-1924,-1925,-1926,-1927,-1928,-1929,-1930,-1931,-1932,-1933,-1934,-1935,-1936,-1937,-1938,-1939, +-1940,-1941,-1942,-1943,-1944,-1945,-1946,-1947,-1948,-1949,-1950,-1951,-1952,-1953,-1954,-1955,-1956,-1957,-1958,-1959, +-1960,-1961,-1962,-1963,-1964,-1965,-1966,-1967,-1968,-1969,-1970,-1971,-1972,-1973,-1974,-1975,-1976,-1977,-1978,-1979, +-1980,-1981,-1982,-1983, +-1984,-1985,-1986,-1987,-1988,-1989,-1990,-1991,-1992,-1993,-1994,-1995,-1996,-1997,-1998,-1999,-2000,-2001,-2002,-2003, +-2004,-2005,-2006,-2007,-2008,-2009,-2010,-2011,-2012,-2013,-2014,-2015,-2016,-2017,-2018,-2019,-2020,-2021,-2022,-2023, +-2024,-2025,-2026,-2027,-2028,-2029,-2030,-2031,-2032,-2033,-2034,-2035,-2036,-2037,-2038,-2039,-2040,-2041,-2042,-2043, +-2044,-2045,-2046,-2047, +-2048,-2049,-2050,-2051,-2052,-2053,-2054,-2055,-2056,-2057,-2058,-2059,-2060,-2061,-2062,-2063,-2064,-2065,-2066,-2067, +-2068,-2069,-2070,-2071,-2072,-2073,-2074,-2075,-2076,-2077,-2078,-2079,-2080,-2081,-2082,-2083,-2084,-2085,-2086,-2087, +-2088,-2089,-2090,-2091,-2092,-2093,-2094,-2095,-2096,-2097,-2098,-2099,-2100,-2101,-2102,-2103,-2104,-2105,-2106,-2107, +-2108,-2109,-2110,-2111, +-2112,-2113,-2114,-2115,-2116,-2117,-2118,-2119,-2120,-2121,-2122,-2123,-2124,-2125,-2126,-2127,-2128,-2129,-2130,-2131, +-2132,-2133,-2134,-2135,-2136,-2137,-2138,-2139,-2140,-2141,-2142,-2143,-2144,-2145,-2146,-2147,-2148,-2149,-2150,-2151, +-2152,-2153,-2154,-2155,-2156,-2157,-2158,-2159,-2160,-2161,-2162,-2163,-2164,-2165,-2166,-2167,-2168,-2169,-2170,-2171, +-2172,-2173,-2174,-2175, +-2176,-2177,-2178,-2179,-2180,-2181,-2182,-2183,-2184,-2185,-2186,-2187,-2188,-2189,-2190,-2191,-2192,-2193,-2194,-2195, +-2196,-2197,-2198,-2199,-2200,-2201,-2202,-2203,-2204,-2205,-2206,-2207,-2208,-2209,-2210,-2211,-2212,-2213,-2214,-2215, +-2216,-2217,-2218,-2219,-2220,-2221,-2222,-2223,-2224,-2225,-2226,-2227,-2228,-2229,-2230,-2231,-2232,-2233,-2234,-2235, +-2236,-2237,-2238,-2239, +-2240,-2241,-2242,-2243,-2244,-2245,-2246,-2247,-2248,-2249,-2250,-2251,-2252,-2253,-2254,-2255,-2256,-2257,-2258,-2259, +-2260,-2261,-2262,-2263,-2264,-2265,-2266,-2267,-2268,-2269,-2270,-2271,-2272,-2273,-2274,-2275,-2276,-2277,-2278,-2279, +-2280,-2281,-2282,-2283,-2284,-2285,-2286,-2287,-2288,-2289,-2290,-2291,-2292,-2293,-2294,-2295,-2296,-2297,-2298,-2299, +-2300,-2301,-2302,-2303, +-2304,-2305,-2306,-2307,-2308,-2309,-2310,-2311,-2312,-2313,-2314,-2315,-2316,-2317,-2318,-2319,-2320,-2321,-2322,-2323, +-2324,-2325,-2326,-2327,-2328,-2329,-2330,-2331,-2332,-2333,-2334,-2335,-2336,-2337,-2338,-2339,-2340,-2341,-2342,-2343, +-2344,-2345,-2346,-2347,-2348,-2349,-2350,-2351,-2352,-2353,-2354,-2355,-2356,-2357,-2358,-2359,-2360,-2361,-2362,-2363, +-2364,-2365,-2366,-2367, +-2368,-2369,-2370,-2371,-2372,-2373,-2374,-2375,-2376,-2377,-2378,-2379,-2380,-2381,-2382,-2383,-2384,-2385,-2386,-2387, +-2388,-2389,-2390,-2391,-2392,-2393,-2394,-2395,-2396,-2397,-2398,-2399,-2400,-2401,-2402,-2403,-2404,-2405,-2406,-2407, +-2408,-2409,-2410,-2411,-2412,-2413,-2414,-2415,-2416,-2417,-2418,-2419,-2420,-2421,-2422,-2423,-2424,-2425,-2426,-2427, +-2428,-2429,-2430,-2431, +-2432,-2433,-2434,-2435,-2436,-2437,-2438,-2439,-2440,-2441,-2442,-2443,-2444,-2445,-2446,-2447,-2448,-2449,-2450,-2451, +-2452,-2453,-2454,-2455,-2456,-2457,-2458,-2459,-2460,-2461,-2462,-2463,-2464,-2465,-2466,-2467,-2468,-2469,-2470,-2471, +-2472,-2473,-2474,-2475,-2476,-2477,-2478,-2479,-2480,-2481,-2482,-2483,-2484,-2485,-2486,-2487,-2488,-2489,-2490,-2491, +-2492,-2493,-2494,-2495, +-2496,-2497,-2498,-2499,-2500,-2501,-2502,-2503,-2504,-2505,-2506,-2507,-2508,-2509,-2510,-2511,-2512,-2513,-2514,-2515, +-2516,-2517,-2518,-2519,-2520,-2521,-2522,-2523,-2524,-2525,-2526,-2527,-2528,-2529,-2530,-2531,-2532,-2533,-2534,-2535, +-2536,-2537,-2538,-2539,-2540,-2541,-2542,-2543,-2544,-2545,-2546,-2547,-2548,-2549,-2550,-2551,-2552,-2553,-2554,-2555, +-2556,-2557,-2558,-2559, +-2560,-2561,-2562,-2563,-2564,-2565,-2566,-2567,-2568,-2569,-2570,-2571,-2572,-2573,-2574,-2575,-2576,-2577,-2578,-2579, +-2580,-2581,-2582,-2583,-2584,-2585,-2586,-2587,-2588,-2589,-2590,-2591,-2592,-2593,-2594,-2595,-2596,-2597,-2598,-2599, +-2600,-2601,-2602,-2603,-2604,-2605,-2606,-2607,-2608,-2609,-2610,-2611,-2612,-2613,-2614,-2615,-2616,-2617,-2618,-2619, +-2620,-2621,-2622,-2623, +-2624,-2625,-2626,-2627,-2628,-2629,-2630,-2631,-2632,-2633,-2634,-2635,-2636,-2637,-2638,-2639,-2640,-2641,-2642,-2643, +-2644,-2645,-2646,-2647,-2648,-2649,-2650,-2651,-2652,-2653,-2654,-2655,-2656,-2657,-2658,-2659,-2660,-2661,-2662,-2663, +-2664,-2665,-2666,-2667,-2668,-2669,-2670,-2671,-2672,-2673,-2674,-2675,-2676,-2677,-2678,-2679,-2680,-2681,-2682,-2683, +-2684,-2685,-2686,-2687, +-2688,-2689,-2690,-2691,-2692,-2693,-2694,-2695,-2696,-2697,-2698,-2699,-2700,-2701,-2702,-2703,-2704,-2705,-2706,-2707, +-2708,-2709,-2710,-2711,-2712,-2713,-2714,-2715,-2716,-2717,-2718,-2719,-2720,-2721,-2722,-2723,-2724,-2725,-2726,-2727, +-2728,-2729,-2730,-2731,-2732,-2733,-2734,-2735,-2736,-2737,-2738,-2739,-2740,-2741,-2742,-2743,-2744,-2745,-2746,-2747, +-2748,-2749,-2750,-2751, +-2752,-2753,-2754,-2755,-2756,-2757,-2758,-2759,-2760,-2761,-2762,-2763,-2764,-2765,-2766,-2767,-2768,-2769,-2770,-2771, +-2772,-2773,-2774,-2775,-2776,-2777,-2778,-2779,-2780,-2781,-2782,-2783,-2784,-2785,-2786,-2787,-2788,-2789,-2790,-2791, +-2792,-2793,-2794,-2795,-2796,-2797,-2798,-2799,-2800,-2801,-2802,-2803,-2804,-2805,-2806,-2807,-2808,-2809,-2810,-2811, +-2812,-2813,-2814,-2815, +-2816,-2817,-2818,-2819,-2820,-2821,-2822,-2823,-2824,-2825,-2826,-2827,-2828,-2829,-2830,-2831,-2832,-2833,-2834,-2835, +-2836,-2837,-2838,-2839,-2840,-2841,-2842,-2843,-2844,-2845,-2846,-2847,-2848,-2849,-2850,-2851,-2852,-2853,-2854,-2855, +-2856,-2857,-2858,-2859,-2860,-2861,-2862,-2863,-2864,-2865,-2866,-2867,-2868,-2869,-2870,-2871,-2872,-2873,-2874,-2875, +-2876,-2877,-2878,-2879, +-2880,-2881,-2882,-2883,-2884,-2885,-2886,-2887,-2888,-2889,-2890,-2891,-2892,-2893,-2894,-2895,-2896,-2897,-2898,-2899, +-2900,-2901,-2902,-2903,-2904,-2905,-2906,-2907,-2908,-2909,-2910,-2911,-2912,-2913,-2914,-2915,-2916,-2917,-2918,-2919, +-2920,-2921,-2922,-2923,-2924,-2925,-2926,-2927,-2928,-2929,-2930,-2931,-2932,-2933,-2934,-2935,-2936,-2937,-2938,-2939, +-2940,-2941,-2942,-2943, +-2944,-2945,-2946,-2947,-2948,-2949,-2950,-2951,-2952,-2953,-2954,-2955,-2956,-2957,-2958,-2959,-2960,-2961,-2962,-2963, +-2964,-2965,-2966,-2967,-2968,-2969,-2970,-2971,-2972,-2973,-2974,-2975,-2976,-2977,-2978,-2979,-2980,-2981,-2982,-2983, +-2984,-2985,-2986,-2987,-2988,-2989,-2990,-2991,-2992,-2993,-2994,-2995,-2996,-2997,-2998,-2999,-3000,-3001,-3002,-3003, +-3004,-3005,-3006,-3007, +-3008,-3009,-3010,-3011,-3012,-3013,-3014], [0,295,300,304,74,309,136,136,314,74,318,74,321,324,74,326,329,333,338,343,348,353,357,361,365,367,372,375,380,384,389, 393,398,402,407,409,412,416,418,422,425,429,432,436,17,441,444,447,451,453,458,462,467,470,474,477,480,483,486,489,492, 495,498,501, @@ -3335,357 +3331,358 @@ true, 11248,11251,11254,292,11259,11262,11265], [1,3,296], [0,297,298,299,10], -[0,-574,-44,-15518,-267,-121,-15517,-291,-15516,-15515,-1139,-691,-15514,-1006,-1495,-1118,-1468], -[0,-1028,-351,-1135,-13,-28,-222,-77,-104,-20,-9,-6152,-78,-3,-6,-322,-27,-96,-445,-1,-23,-236,-274,-16,-196,-3878,-238, --502,-89,-38,-33,-17,-1352,-119,-1553,-40,-200,-88,-993,-4,-15513,-796,-2746,-15512,-421,-15511,-157,-15510,-2816,-35, --2745,-179,-211,-6151,-169,-144,-15509,-15508,-2,-11,-109,-458,-5,-189, --18,-221,-6150,-898,-15507,-47,-413,-160,-94,-98,-754,-297,-2824,-1501,-897,-154,-792,-713,-15506,-1279,-142,-526,-15505, --517,-620,-561,-492,-6149,-2790,-49,-185,-2156,-3838,-1302,-2744,-1893,-87,-15504,-268,-6148,-15503,-1807,-559,-15502, --15501,-15500,-2155,-6147,-15499,-3837,-712,-998,-170,-15498,-15497,-64,-1170,-702,-286,-15496,-15495,-537,-6146,-1187, --6145,-10,-15494,-15493,-355,-2743,-139,-575,-15492,-12,-148,-214,-648,-15491,-15490,-3836,-1022,-1120,-2815,-15489,-974, --6144,-6143,-2823,-15488,-19,-1808,-1765,-15487,-919,-15486,-15485,-2154,-15484,-1764,-1032,-278,-15483,-15482,-22,-1879, --6142,-15481,-216,-6524,-1345,-15480], -[0,-15479,-15478,-241,-129,-15477,-6,-15476,-127,-435,-53], +[0,-809,-2387,-3019,-682,-1967,-3020,-567,-3021,-3022,-1552,-2055,-3023,-1311,-2030,-2113,-3024], +[0,-705,-888,-1616,-664,-1107,-1521,-2162,-2466,-668,-1344,-3025,-1471,-1654,-2006,-2074,-2210,-2550,-915,-932,-1548, +-1666,-2093,-2177,-2388,-2439,-674,-795,-928,-1889,-2379,-2501,-522,-679,-923,-1077,-1376,-1646,-1783,-1942,-3026,-2378, +-3027,-3028,-1003,-3029,-1978,-3030,-2016,-2019,-3031,-2281,-2376,-3032,-527,-778,-3033,-3034,-2410,-23,-3035,-3036, +-3037,-1482, +-1534,-1600,-3038,-2040,-3039,-3040,-3041,-518,-528,-534,-1543,-1588,-1890,-1938,-2043,-2275,-2516,-305,-3042,-3043, +-3044,-1492,-3045,-3046,-556,-1906,-1908,-3047,-2285,-86,-3048,-3049,-3050,-2015,-3051,-263,-3052,-3053,-558,-3054,-3055, +-1962,-2044,-3056,-3057,-3058,-3059,-3060,-3061,-3062,-560,-1601,-2505,-3063,-3064,-969,-977,-1491,-2052,-3065,-3066, +-440,-3067,-562, +-3068,-958,-3069,-3070,-539,-3071,-1475,-739,-3072,-940,-962,-963,-1490,-3073,-3074,-3075,-916,-2013,-2017,-3076,-3077, +-3078,-3079,-1899,-3080,-428,-1897,-3081,-3082,-1017,-3083,-3084,-3085,-3086,-3087,-555,-535,-3088,-3089,-427,-661,-3090, +-3091,-26,-547,-741,-3092], +[0,-3093,-3094,-2634,-3095,-3096,-2006,-3097,-3098,-3099,-3100], [1,3,301], [0,302,0,303,11], -[0,-193,-489,-323,-130,-837,-649], -[0,-6141,-6140,-192,-1467,-6139,-2153], +[0,-469,-2153,-1864,-2231,-470,-1461], +[0,-3101,-3102,-475,-3103,-3104,-3105], [1,3,305], [0,306,0,307,9], -[0,-324,-489,-649,-297,-6576], -[0,-6141,-6140,-192,-15475,-6138,-6139,-1466,-15474,-2153,-271,-15473], +[0,-1816,-2153,-1461,-1588,-2], +[0,-3101,-3102,-475,-3106,-3107,-3104,-3108,-3109,-3105,-3110,-3111], [0,33,0,7,5], [1,3,310], [0,311,0,312,4], -[0,-44,-607], -[0,-192,-3835,-129,-684,-3834], +[0,-2387,-1839], +[0,-475,-3112,-3095,-3113,-3114], [0,33,0,7,4], [1,3,315], [0,316,37,317,4], -[0,-44,-96,-16,-119,-11,-602,-472,-1763], -[0,-192,-593], +[0,-2387,-2550,-2177,-679,-23,-2080,-742,-3115], +[0,-475,-3116], [1,3,319], [0,320,0,7,11], -[0,-44,-1762], +[0,-2387,-3117], [1,3,322], [0,33,0,323,9], -[0,-192,-1761,-973,-127], +[0,-475,-3118,-3119,-3098], [1,3,325], [0,33,0,7,6], [1,3,327], [0,328,0,7,4], -[0,-3833,-44], +[0,-3120,-2387], [1,3,330], [0,33,331,332,10], -[0,-15472], -[0,-192,-434], +[0,-3121], +[0,-475,-3122], [1,3,334], [0,335,336,337,5], -[0,-574,-1303,-267,-291,-6137,-6136,-3832,-15471,-15470,-15469,-6262,-15468,-15467,-15466,-15465], -[0,-1034,-28,-8,-6,-1,-196,-6135,-57,-1130,-26,-2152,-35,-86,-6134,-235,-1803,-2,-11,-29,-18,-15464,-47,-94,-289,-234,-90, --3831,-2742,-972,-2151,-15463,-6133,-15462,-286,-6132,-15461,-15460,-15459,-3830,-1120,-15458,-15457,-19,-6547,-15456, --6131,-15455,-15454,-1760,-6130], -[0,-1759,-435,-6,-108,-129,-127,-102,-52,-53,-95,-2741], +[0,-809,-2004,-682,-567,-3123,-3124,-3125,-3126,-3127,-3128,-2639,-3129,-3130,-3131,-3132], +[0,-485,-1107,-1415,-2006,-932,-2388,-3133,-2375,-1662,-767,-3134,-2019,-533,-3135,-1939,-2028,-2410,-23,-3136,-1534, +-3137,-3040,-528,-726,-2034,-44,-3138,-3139,-3140,-3141,-3142,-3143,-3144,-2052,-3145,-3146,-3147,-3148,-3149,-2013, +-3150,-3151,-428,-408,-3152,-3153,-3154,-3155,-3156,-3157], +[0,-3158,-3099,-2006,-3159,-3095,-3098,-3160,-3161,-3100,-3162,-3163], [1,3,339], [0,340,341,342,4], -[0,-468], -[0,-1034,-6,-822,-35,-2,-47,-1278,-87], -[0,-1759,-435,-1284,-1034,-129,-127,-52,-53,-6,-108,-102], +[0,-1549], +[0,-485,-2006,-1031,-2019,-2410,-3040,-3164,-3052], +[0,-3158,-3099,-2494,-485,-3095,-3098,-3161,-3100,-2006,-3159,-3160], [1,3,344], [0,345,346,347,5], -[0,-267,-2740,-15453], -[0,-1034,-28,-6,-822,-35,-2,-47,-87], -[0,-1759,-435,-1284,-1034,-129,-127,-52,-53,-6,-108,-102,-741], +[0,-682,-3165,-3166], +[0,-485,-1107,-2006,-1031,-2019,-2410,-3040,-3052], +[0,-3158,-3099,-2494,-485,-3095,-3098,-3161,-3100,-2006,-3159,-3160,-3167], [1,3,349], [0,350,351,352,4], -[0,-3829,-2739], -[0,-44,-220,-124,-2785,-4040,-3828,-6129,-794,-2738,-1582], -[0,-683,-15452,-1465,-3827,-905,-6128,-15451,-220], +[0,-3168,-3169], +[0,-2387,-2299,-2402,-2300,-364,-3170,-3171,-2405,-3172,-365], +[0,-3173,-3174,-3175,-3176,-1791,-3177,-3178,-2299], [1,3,354], [0,355,356,137,4], -[0,-28,-285,-753,-58,-472,-3826,-1099], -[0,-16,-11,-458,-15450,-6127], +[0,-1107,-2218,-1591,-719,-742,-3179,-3180], +[0,-2177,-23,-3036,-3181,-3182], [1,3,358], [0,359,360,7,4], -[0,-2737,-164,-2736], -[0,-6125,-138,-1758], +[0,-3187,-1863,-3188], +[0,-3189,-2269,-3190], [1,3,362], [0,363,364,138,4], -[0,-36,-276,-16,-15449,-479,-427,-2735,-3825,-577,-879,-538,-472,-1757,-6124,-2734], -[0,-153,-7,-33,-162,-137,-1098,-21,-140,-3824,-1099,-3823,-971,-391,-6127], +[0,-812,-1460,-2177,-3191,-47,-25,-3192,-3193,-46,-3194,-22,-742,-3195,-3196,-3197], +[0,-2392,-2125,-2379,-3198,-3199,-3200,-40,-42,-3201,-3180,-3202,-3203,-3204,-3182], [1,3,366], [0,0,101,7,5], [1,3,368], [0,369,370,371,5], -[0,-479], -[0,-6125,-538,-3822,-6121,-2736,-15447], -[0,-292,-45,-73,-15446,-338,-427], +[0,-47], +[0,-3189,-22,-3211,-3212,-3188,-3213], +[0,-525,-3214,-3215,-3216,-3217,-25], [1,3,373], [0,374,51,21,4], -[0,-6120,-770], +[0,-3218,-24], [1,3,376], [0,377,378,379,5], -[0,-15445,-36,-495,-1464,-16,-101,-747,-119,-457,-761,-15444,-88,-993,-2194,-15443,-323,-311,-708,-221,-15442,-6119, --15441,-15440,-6118,-15439,-15438,-15437,-1755,-15436,-15435,-15434,-15433,-15432], -[0,-43,-51,-153,-74,-258,-77,-6,-1,-228,-637,-7,-55,-4,-35,-48,-2,-3821,-5,-15431,-15430,-283,-2733,-970,-15429,-1138, --15428,-15427,-2732,-3820,-12,-15426,-15425,-15424], -[0,-6117,-6116,-15423,-42,-878,-3819,-2731,-740,-114,-52,-6480,-15422,-31,-100,-15421,-993], +[0,-3221,-812,-1496,-3222,-2177,-1442,-2223,-679,-3223,-1044,-3224,-1646,-1783,-1936,-3225,-1864,-2654,-1125,-1600,-3226, +-3227,-3228,-3229,-3230,-3231,-3232,-3233,-3234,-3235,-3236,-3237,-3238,-3239], +[0,-652,-519,-2392,-2476,-2564,-2162,-2006,-932,-1610,-3240,-2125,-1110,-1942,-2019,-190,-2410,-3241,-3037,-3242,-3243, +-3244,-3245,-3246,-3247,-1603,-3248,-3249,-3250,-3251,-940,-3252,-3253,-3254], +[0,-3255,-3256,-3257,-856,-3258,-3259,-3260,-3261,-3262,-3161,-898,-3263,-3264,-1599,-3265,-1783], [1,3,381], [0,0,382,383,4], -[0,-310,-320,-80,-63,-204,-319,-739,-1754,-29,-5,-110,-475,-8,-14,-415,-57,-44,-2], -[0,-24,-73,-1753,-1275,-360,-2,-15420,-15419,-15418,-227,-550,-592], +[0,-2832,-2581,-350,-351,-3266,-3267,-3268,-3269,-3136,-3037,-589,-651,-1415,-2127,-2132,-2375,-2387,-2410], +[0,-775,-3215,-3270,-3271,-3272,-2410,-3273,-3274,-3275,-1644,-3276,-3277], [1,3,385], [0,386,387,388,4], -[0,-6115,-6114,-15417,-15416,-15415,-6113,-15414,-6112,-6111,-6110,-6109,-15413,-15412,-15411,-15410,-15409,-15408,-15407, --15406,-3942,-3818], -[0,-15405,-6108,-15404,-15403,-6107,-6106,-6105,-6104,-15402,-49,-62,-6103,-6102,-3817,-877,-1274,-1,-12,-9,-18,-27,-2, --6101], -[0,-15401,-4031,-42,-15400], +[0,-3278,-3279,-3280,-3281,-3282,-3283,-3284,-3285,-3286,-3287,-3288,-3289,-3290,-3291,-3292,-3293,-3294,-3295,-3296, +-1537,-3297], +[0,-3298,-3299,-3300,-3301,-3302,-3303,-3304,-3305,-3306,-86,-3307,-3308,-3309,-3310,-3311,-3312,-932,-940,-1344,-1534, +-2210,-2410,-3313], +[0,-3314,-488,-856,-3315], [1,3,390], [0,391,0,392,9], -[0,-6100,-15399,-15398,-15397,-1013,-6099,-44], -[0,-6098,-380,-6,-682,-337,-433], +[0,-3316,-3317,-3318,-3319,-1123,-3320,-2387], +[0,-3321,-1122,-2006,-3322,-3323,-3324], [1,3,394], [0,395,396,397,6], -[0,-6,-14,-121,-11,-6097,-21,-146,-136,-203,-15396], -[0,-8,-1,-57,-26,-2,-29,-47,-815,-64,-2887,-762], -[0,-2730,-42,-114,-6,-2153,-271], +[0,-2006,-2127,-1967,-23,-3325,-40,-2234,-41,-3326,-3327], +[0,-1415,-932,-2375,-767,-2410,-3136,-3040,-1448,-969,-973,-972], +[0,-3328,-856,-3262,-2006,-3105,-3110], [1,3,399], [0,400,401,7,10], -[0,-16,-1019,-15395], -[0,-534,-1,-11,-359,-329,-83,-3822,-1752], +[0,-2177,-983,-3329], +[0,-815,-932,-23,-3330,-426,-2411,-3211,-3331], [1,3,403], [0,404,405,406,5], -[0,-770,-3816,-6120], -[0,-11,-577,-15394,-15393,-2148,-3815], -[0,-292,-1276,-6096], +[0,-24,-3332,-3218], +[0,-23,-46,-3333,-3334,-3219,-3335], +[0,-525,-3220,-3336], [1,3,408], [0,139,51,21,10], [1,3,410], [0,411,51,21,11], -[0,-770,-15392], +[0,-24,-3337], [1,3,413], [0,414,415,21,4], -[0,-6095,-2734,-770,-15391,-6094], -[0,-11,-2148,-427], +[0,-3338,-3197,-24,-3339,-3340], +[0,-23,-3219,-25], [1,3,417], [0,139,101,21,5], [1,3,419], [0,420,421,21,10], -[0,-16,-770,-1097,-6093,-2729,-2728], -[0,-753,-11,-2735,-90,-21,-1751,-2729,-2148], +[0,-2177,-24,-3341,-3342,-3343,-3344], +[0,-1591,-23,-3192,-44,-40,-3345,-3343,-3219], [1,3,423], [0,140,424,7,8], -[0,-59,-1570,-2727,-112], +[0,-633,-647,-3346,-2416], [1,3,426], [0,427,428,7,4], -[0,-16,-3814,-6095,-15390,-770,-6093,-2729,-3813,-3812,-6092,-3811,-15389,-2734,-2728,-15388,-6094,-3810,-6091,-6090, --15387,-15386,-15385,-15384,-2147,-6089,-15383,-15382,-15381,-2146,-3809,-15380,-6088,-15379,-15378,-2726,-2725,-15377, --1096,-391,-6087,-15376,-6086,-6085,-2145,-2144,-6084,-3808,-3807,-15375,-15374,-15373,-3806,-15372,-6083,-15371,-3805, --2724,-3804,-2723,-6082,-3803,-15370,-6081, --15369,-15368,-15367,-15366,-15365,-15364,-15363], -[0,-11,-577,-2148], +[0,-2177,-3347,-3338,-3348,-24,-3342,-3343,-3349,-3350,-3351,-3352,-3353,-3197,-3344,-3354,-3340,-3355,-3356,-3357,-3358, +-3359,-3360,-3361,-3362,-3363,-3364,-3365,-3366,-3367,-3368,-3369,-3370,-3371,-3372,-3373,-3374,-3375,-3376,-3204,-3377, +-3378,-3379,-3380,-3381,-3382,-3383,-3384,-3385,-3386,-3387,-3388,-3389,-3390,-3391,-3392,-3393,-3394,-3395,-3396,-3397, +-3398,-3399,-3400, +-3401,-3402,-3403,-3404,-3405,-3406,-3407], +[0,-23,-46,-3219], [1,3,430], [0,431,51,7,4], -[0,-770,-3813,-1273,-3802,-15362,-15361], +[0,-24,-3349,-3408,-3409,-3410,-3411], [1,3,433], [0,434,51,435,8], -[0,-974,-770,-3813,-1095,-391], -[0,-15360,-2], +[0,-3077,-24,-3349,-3412,-3204], +[0,-3413,-2410], [1,3,437], [0,438,439,7,4], -[0,-6080,-753,-3801,-1547,-146], -[0,-59,-11,-2726,-391], +[0,-3414,-1591,-3415,-1046,-2234], +[0,-633,-23,-3373,-3204], [0,0,0,7,5], [1,3,442], [0,443,0,7,5], -[0,-159], +[0,-753], [1,3,445], [0,446,51,7,4], -[0,-36,-479,-427,-3825,-879,-538,-15359], +[0,-812,-47,-25,-3193,-3194,-22,-3416], [1,3,448], [0,449,450,7,6], -[0,-6121,-2736], -[0,-427,-879,-3822], +[0,-3212,-3188], +[0,-25,-3194,-3211], [1,3,452], [0,141,142,143,8], [1,3,454], [0,455,456,457,4], -[0,-6074,-402,-236,-1805,-1779], -[0,-56,-1,-12,-84,-10,-76,-25,-67,-131,-97], -[0,-552,-6176,-2721,-738,-46], +[0,-3442,-1116,-1666,-1969,-2522], +[0,-756,-932,-940,-943,-958,-966,-967,-968,-974,-2250], +[0,-2520,-2905,-3443,-3444,-3445], [1,3,459], [0,460,461,7,4], -[0,-1750,-16,-504,-1749,-573,-40,-15346,-164,-477,-15345,-641,-15344,-15343,-15342,-15341,-15340,-15339,-15338,-15337, --15336,-1462,-15335,-15334,-6073,-15333,-15332,-15331,-15330], -[0,-807,-15329,-138,-137], +[0,-3446,-2177,-680,-3447,-910,-1077,-3448,-1863,-479,-3449,-2115,-3450,-3451,-3452,-3453,-3454,-3455,-3456,-3457,-3458, +-3459,-3460,-3461,-3462,-3463,-3464,-3465,-3466], +[0,-1821,-3467,-2269,-3199], [1,3,463], [0,464,465,466,4], -[0,-15328,-2720,-2938,-2937,-4053,-267,-121], -[0,-50,-11,-216,-21,-136,-49,-62,-203,-80,-63,-296,-295,-737,-22,-19,-94,-834,-6072,-1,-148,-64,-190,-9,-18,-4,-6,-35,-14, --3797,-226,-120,-2], -[0,-6071,-6,-516,-102,-2719,-127,-15327,-15326,-15325,-1094,-369,-53,-15324,-3796,-968,-6070,-15323], +[0,-3468,-3469,-195,-196,-197,-682,-1967], +[0,-21,-23,-26,-40,-41,-86,-3307,-3326,-350,-351,-3470,-3471,-3472,-427,-428,-528,-553,-3473,-932,-962,-969,-970,-1344, +-1534,-1942,-2006,-2019,-2127,-3474,-2140,-2174,-2410], +[0,-3475,-2006,-3476,-3160,-3477,-3098,-3478,-3479,-3480,-3481,-3482,-3100,-3483,-3484,-3485,-3486,-3487], [1,3,468], [0,469,0,19,4], -[0,-290,-331,-1897], +[0,-681,-66,-82], [1,3,471], [0,472,0,473,6], -[0,-3794,-44], -[0,-789,-875,-412,-31,-1272,-966,-192,-6069,-15320,-6068,-129,-967,-290,-876], +[0,-3493,-2387], +[0,-3494,-3495,-3496,-3264,-3497,-3498,-475,-3499,-3500,-3501,-3095,-3488,-681,-3489], [1,3,475], [0,476,0,19,5], -[0,-290,-331,-356,-448,-621,-1193], +[0,-681,-66,-83,-68,-80,-70], [1,3,478], [0,479,0,19,5], -[0,-290,-426,-331,-590,-356,-448,-621], +[0,-681,-81,-66,-3502,-83,-68,-80], [1,3,481], [0,482,0,19,4], -[0,-290,-426,-331,-2143,-590,-356,-621], +[0,-681,-81,-66,-3503,-3502,-83,-80], [1,3,484], [0,485,0,144,5], -[0,-1360,-1192,-1590,-1036,-1583,-1586,-621,-1193,-1589,-1359,-1593,-1588,-1587,-1591,-1585,-1592,-1037,-3793,-1594,-1584], +[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3504,-52,-77], [1,3,487], [0,488,0,144,4], -[0,-426,-1360,-1192,-1590,-1036,-1583,-1586,-621,-1193,-1589,-1359,-1593,-1588,-1587,-1591,-1585,-1592,-1037,-3793,-1594, --1584], +[0,-81,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3504,-52,-77], [1,3,490], [0,491,0,102,4], -[0,-1360,-1192,-1590,-1036,-1583,-1586,-621,-1193,-1589,-1359,-1593,-1588,-1587,-1591,-1585,-1592,-1037,-6066,-1594,-1584], +[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3511,-52,-77], [1,3,493], [0,494,0,102,8], -[0,-3792,-1360,-1192,-1590,-1036,-1583,-1586,-621,-1193,-1589,-6065,-1359,-1593,-1588,-1587,-1591,-1585,-1592,-1037,-1594, --6064,-1584], +[0,-3512,-73,-74,-62,-71,-79,-72,-80,-70,-63,-3513,-76,-54,-67,-69,-56,-75,-55,-65,-52,-3514,-77], [1,3,496], [0,497,0,102,8], -[0,-1360,-1192,-1590,-1036,-1583,-1586,-621,-1193,-1589,-1359,-1593,-1588,-1587,-1591,-1585,-1592,-6063,-1037,-1594,-1584], +[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-3515,-65,-52,-77], [1,3,499], [0,500,0,19,6], -[0,-15319,-290,-515,-426,-331,-590,-1036,-356,-448,-1897,-1037], +[0,-3516,-681,-3517,-81,-66,-3502,-71,-83,-68,-82,-65], [1,3,502], [0,503,0,19,4], -[0,-290,-426,-331,-590,-1036,-356], +[0,-681,-81,-66,-3502,-71,-83], [1,3,505], [0,506,0,19,8], -[0,-515,-426,-331,-356,-448,-1358], +[0,-3517,-81,-66,-83,-68,-85], [1,3,508], [0,509,0,59,6], -[0,-290,-331,-356], +[0,-681,-66,-83], [1,3,511], [0,512,0,145,11], -[0,-515,-426,-356,-448,-6061], +[0,-3517,-81,-83,-68,-3519], [1,3,514], [0,515,0,19,8], -[0,-290,-331,-356,-1897,-1037], +[0,-681,-66,-83,-82,-65], [1,3,517], [0,518,0,145,10], -[0,-515,-356], +[0,-3517,-83], [1,3,520], [0,521,0,19,4], -[0,-290,-426,-331,-2718,-2143,-621,-1194,-6060], +[0,-681,-81,-66,-3520,-3503,-80,-64,-3521], [1,3,523], [0,524,0,19,10], -[0,-290,-426,-331,-590,-356,-448,-1359], +[0,-681,-81,-66,-3502,-83,-68,-76], [1,3,526], [0,527,0,19,5], -[0,-290,-515,-426,-331,-2718,-590,-356,-448,-621,-1897,-1358,-1194], +[0,-681,-3517,-81,-66,-3520,-3502,-83,-68,-80,-82,-85,-64], [1,3,529], [0,530,0,19,8], -[0,-290,-426,-331,-1192,-590,-356,-448,-1193], +[0,-681,-81,-66,-74,-3502,-83,-68,-70], [1,3,532], [0,533,0,19,11], -[0,-290,-515,-426,-331,-590,-1036,-356,-448,-621,-1358,-1194], +[0,-681,-3517,-81,-66,-3502,-71,-83,-68,-80,-85,-64], [1,3,535], [0,536,0,19,4], -[0,-290,-426,-331,-3792,-2143,-590,-356,-448,-621,-1194], +[0,-681,-81,-66,-3512,-3503,-3502,-83,-68,-80,-64], [1,3,538], [0,539,0,19,4], -[0,-290,-426,-331,-2718,-590,-356,-448,-621,-1358,-1194], +[0,-681,-81,-66,-3520,-3502,-83,-68,-80,-85,-64], [1,3,541], [0,542,0,19,4], -[0,-426,-331,-590,-356,-448], +[0,-81,-66,-3502,-83,-68], [1,3,544], [0,545,0,19,6], -[0,-290,-331,-448,-1194], +[0,-681,-66,-68,-64], [1,3,547], [0,548,0,549,8], -[0,-3794], -[0,-789,-875,-412,-31,-1272,-966,-6,-108,-967,-290,-876], +[0,-3493], +[0,-3494,-3495,-3496,-3264,-3497,-3498,-2006,-3159,-3488,-681,-3489], [1,3,551], [0,552,0,19,6], -[0,-290,-515,-426,-331,-590,-356,-448,-1358,-1194], +[0,-681,-3517,-81,-66,-3502,-83,-68,-85,-64], [1,3,554], [0,555,0,19,11], -[0,-515,-331,-356,-448], +[0,-3517,-66,-83,-68], [1,3,557], [0,558,0,59,11], -[0,-515,-15318,-2142,-15317,-6059,-331,-590,-356,-448,-3791], +[0,-3517,-3522,-3523,-3524,-3525,-66,-3502,-83,-68,-3526], [1,3,560], [0,561,0,59,11], -[0,-331,-356], +[0,-66,-83], [1,3,563], [0,564,0,59,4], -[0,-515,-426], +[0,-3517,-81], [1,3,566], [0,567,0,568,4], -[0,-3794,-468], -[0,-789,-875,-412,-31,-1272,-966,-74,-2717,-15316,-15315,-967,-290,-876], +[0,-3493,-1549], +[0,-3494,-3495,-3496,-3264,-3497,-3498,-2476,-3527,-3528,-3529,-3488,-681,-3489], [1,3,570], [0,571,0,59,4], -[0,-515,-426,-331,-2143,-590,-356,-448,-621], +[0,-3517,-81,-66,-3503,-3502,-83,-68,-80], [1,3,573], [0,574,575,146,5], -[0,-15314,-6058,-6057,-15313,-3790,-1093,-96], -[0,-6056,-6055,-3830,-5,-413,-40,-3832], +[0,-3530,-3531,-3532,-3533,-3534,-3535,-2550], +[0,-3536,-3537,-3149,-3037,-3041,-1077,-3125], [1,3,577], [0,578,0,147,5], -[0,-2943,-11,-2725,-21,-6054,-6053,-15312,-168,-15311,-238,-119,-135,-58,-403,-1746,-1862,-264,-229,-40,-28,-250,-705, --1156,-276,-23,-1522,-6052,-1092,-228,-88,-6051,-2141,-1458,-164,-2716,-440,-16,-748,-6076,-15310,-796,-123,-15309], +[0,-3,-23,-3374,-40,-3538,-3539,-3540,-617,-3541,-674,-679,-714,-719,-755,-3542,-927,-1022,-1026,-1077,-1107,-1276,-1320, +-1349,-1460,-1548,-1577,-3543,-3544,-1610,-1646,-3545,-3546,-3547,-1863,-3548,-1955,-2177,-2213,-3433,-3549,-2378,-2446, +-3550], [1,3,580], [0,581,0,582,4], -[0,-15308,-529], -[0,-15307,-3788,-52,-422,-6050], +[0,-3553,-1361], +[0,-3554,-3555,-3161,-997,-3556], [0,25,584], 1732406400000, [0,25,586], 1733011200000, [1,3,588], [0,589,590,148,9], -[0,-705], -[0,-50,-11,-21,-6049,-2715,-514,-790,-203,-80,-63,-232,-965,-160,-476,-1745,-2714,-1182,-26,-1,-1335,-763,-10,-150,-6048, --55,-206,-3787,-705,-15305,-2869,-199,-249,-78,-1527,-139,-3786,-1526,-212,-400,-2140,-755,-1140,-288,-65,-38,-696, --15304,-7,-14,-2139,-1457,-2745,-272,-179,-3785,-175,-6047], +[0,-1320], +[0,-21,-23,-40,-3558,-3559,-3560,-2997,-3326,-350,-351,-3561,-3562,-518,-620,-3563,-3564,-699,-767,-932,-945,-957,-958, +-978,-3565,-1110,-1111,-3566,-1320,-3567,-1389,-1412,-1437,-1471,-1473,-1475,-3568,-1477,-1479,-1481,-3569,-1486,-1547, +-1753,-1771,-1889,-1891,-3570,-2125,-2127,-3571,-3572,-3031,-2195,-2281,-3573,-2334,-3574], [1,3,592], [0,0,0,593,4], -[0,-24,-73], +[0,-775,-3215], [1,3,595], [0,0,0,596,6], -[0,-24,-2138], +[0,-775,-3579], [1,3,598], [0,0,0,599,4], -[0,-24,-6045,-73], +[0,-775,-3580,-3215], [1,3,601], [0,602,0,603,4], -[0,-2940,-560], -[0,-24,-651,-2713,-549,-38,-218,-15303,-1456], +[0,-98,-1931], +[0,-775,-1391,-3581,-3582,-1889,-3583,-3584,-3585], [1,3,605], [0,60,0,606,9], -[0,-24,-1455,-6044,-38,-218,-6043,-1091,-202,-1454,-2712], +[0,-775,-3586,-3587,-1889,-3583,-3588,-3589,-3590,-3591,-3592], [1,3,608], [0,0,0,609,4], -[0,-24,-560,-15302], +[0,-775,-1931,-3593], [1,3,611], [0,612,613,149,5], -[0,-15301,-15300,-15299,-6079,-15298,-15297,-15296,-15295,-15294,-15293,-15292,-6042,-15291,-20,-661,-58,-36,-2137,-533, --28,-2711,-817,-1837,-1003,-6041,-1319,-3832,-1464,-261,-72,-1512,-361,-1453,-16,-2136,-461,-210,-6040,-259,-1271], -[0,-15290,-15289,-487,-283,-48,-478,-662,-109,-162,-15288,-257,-185,-15287,-15286,-3830,-2710,-69,-6039,-6038,-5,-2709, --137,-1270,-2135,-15285,-736,-22,-19,-13,-2708,-316,-6037,-1562,-1,-10,-115,-150,-41,-40,-3784,-3,-524,-15,-4,-15284, --395,-27,-186,-3783,-156,-33,-81,-124,-2], +[0,-3594,-3595,-3596,-3419,-3597,-3598,-3599,-3600,-3601,-3602,-3603,-3604,-3605,-668,-695,-719,-812,-3606,-1040,-1107, +-3607,-1366,-1394,-1399,-3608,-1566,-3125,-3222,-1640,-1650,-1693,-1959,-3609,-2177,-3610,-2297,-2400,-3611,-2548,-3612], +[0,-3613,-3614,-3615,-3244,-190,-262,-357,-3035,-3198,-3616,-3617,-3048,-3618,-3619,-3149,-3620,-3621,-3622,-3623,-3037, +-3624,-3199,-3625,-3626,-3627,-3628,-427,-428,-664,-3629,-711,-3630,-838,-932,-958,-965,-978,-1004,-1077,-3631,-1654, +-1689,-1788,-1942,-3632,-2200,-2210,-2211,-3633,-2359,-2379,-2384,-2402,-2410], [1,3,615], [0,616,617,618,4], -[0,-925,-20,-2248,-661,-40,-57], -[0,-49,-62,-185,-2156,-29,-3782,-15283,-6035,-22,-19,-1190,-1029,-573,-1,-12,-25,-9,-8,-6034,-701,-568,-248,-4,-15282, --6033,-2], -[0,-15281,-42], +[0,-653,-668,-685,-695,-1077,-2375], +[0,-86,-3307,-3048,-3049,-3136,-3637,-3638,-3639,-427,-428,-481,-693,-910,-932,-940,-967,-1344,-1415,-3640,-1637,-1658, +-1847,-1942,-3641,-3642,-2410], +[0,-3643,-856], [0,25,620], 1730419200000, [0,0,0,7,4], @@ -3693,6971 +3690,7065 @@ true, [0,0,0,7,11], [1,3,625], [0,626,627,104,8], -[0,-15280,-15279,-6032,-15278,-20,-238,-24,-3852,-6031,-486,-101,-23,-221,-1463,-3781,-2707,-996,-6030,-2706,-1794,-747, --598,-2705], -[0,-15277,-15276,-15275,-15274,-2134,-411,-142,-874,-2704,-5,-6029,-103,-964,-160,-89,-6028,-379,-3780,-2703,-65,-38,-805, --77,-3779,-2,-30], +[0,-3644,-3645,-3646,-3647,-668,-674,-775,-2858,-3648,-3649,-1442,-1548,-1600,-3425,-3650,-3651,-1608,-3652,-3653,-2161, +-2223,-2303,-3654], +[0,-3655,-3656,-3657,-3658,-3659,-3660,-3044,-3661,-3662,-3037,-3663,-3664,-3665,-518,-928,-3666,-1304,-3667,-3668,-1771, +-1889,-1927,-2162,-3669,-2410,-2469], [1,3,629], [0,630,631,632,9], -[0,-44,-284,-6026,-6025,-6024,-6023,-3778,-15272,-15271], -[0,-171,-2133,-1,-30,-4,-26,-2,-5,-6022,-15270,-103,-6021,-2702,-6020,-15269], -[0,-3777,-99,-410,-6019,-15268], +[0,-2387,-2426,-3675,-3676,-3677,-3678,-3679,-3680,-3681], +[0,-2391,-3682,-932,-2469,-1942,-767,-2410,-3037,-3683,-3684,-3664,-3685,-3686,-3687,-3688], +[0,-3689,-3690,-3691,-3692,-3693], [1,3,634], [0,75,635,636,4], -[0,-3,-4], -[0,-635,-1485,-166,-15267,-124,-390,-42,-3776], +[0,-1654,-1942], +[0,-3694,-2414,-1446,-3695,-2402,-3671,-856,-3696], [1,3,638], [0,639,640,104,5], -[0,-6018,-1268,-15266,-15265,-15264,-15263,-6566,-15262,-3775,-458,-3774,-15261,-193,-60,-1033,-15260,-20,-215,-1857,-28, --379,-2872,-2221,-101,-1147,-344,-93,-1511,-272,-600,-747,-886,-2701,-15259,-1102,-96], -[0,-15258,-3773,-6017,-411,-142,-1089,-5,-1744,-3772,-413,-22,-19,-94,-89,-1,-762,-9,-18,-23,-57,-33,-2], +[0,-3697,-3698,-3699,-3700,-3701,-3702,-154,-3703,-3704,-3036,-3705,-3706,-469,-510,-521,-3707,-668,-865,-1028,-1107, +-1304,-1321,-1341,-1442,-1459,-1641,-1645,-1734,-2195,-2205,-2223,-2325,-3708,-3709,-2488,-2550], +[0,-3710,-3711,-3712,-3660,-3044,-3713,-3037,-3714,-3715,-3041,-427,-428,-528,-928,-932,-972,-1344,-1534,-1548,-2375, +-2379,-2410], [1,3,642], [0,643,644,104,6], -[0,-6032,-20,-6031,-486,-101,-23,-221,-1463,-3781,-15257,-2707,-996,-6030,-1794,-747], -[0,-11,-391,-21,-2134,-29,-411,-142,-874,-2704,-15256,-5,-6029,-15255,-15254,-15253,-160,-94,-89,-6028,-1,-762,-379,-8, --2703,-38,-805,-4,-342,-57,-2], +[0,-3646,-668,-3648,-3649,-1442,-1548,-1600,-3425,-3650,-3716,-3651,-1608,-3652,-2161,-2223], +[0,-23,-3204,-40,-3659,-3136,-3660,-3044,-3661,-3662,-3717,-3037,-3663,-3718,-3719,-3720,-518,-528,-928,-3666,-932,-972, +-1304,-1415,-3668,-1889,-1927,-1942,-2082,-2375,-2410], [0,25,646], 1734825600000, [1,3,648], [0,649,650,651,4], -[0,-1755,-252,-2270,-15252,-168,-20,-1877,-384,-15251,-920,-1857,-1014,-15250,-15249,-379,-276,-221,-2733,-998,-1463, --6016,-6015,-1511,-397,-77,-2700,-1743,-130,-799,-146,-6014,-220,-123,-2699], -[0,-49,-62,-296,-295,-6013,-735,-2698,-3771,-185,-874,-2704,-5,-788,-15248,-15247,-680,-15246,-22,-19,-43,-6012,-40,-9, --157,-602,-120,-2], -[0,-434,-46,-105,-52,-15245,-1267,-15244], +[0,-3234,-367,-411,-3721,-617,-668,-686,-724,-3722,-1010,-1028,-1070,-3723,-3724,-1304,-1460,-1600,-3245,-1601,-3425, +-3725,-3726,-1734,-1966,-2162,-3727,-3728,-2231,-2232,-2234,-3729,-2299,-2446,-3730], +[0,-86,-3307,-3470,-3471,-3731,-3732,-3733,-3734,-3048,-3661,-3662,-3037,-3735,-3736,-3737,-3738,-3739,-427,-428,-652, +-3740,-1077,-1344,-1978,-2080,-2174,-2410], +[0,-3122,-3445,-1334,-3161,-3741,-3742,-3743], [1,3,653], [0,654,655,656,10], -[0,-2697,-3770,-2696,-2695,-309,-15243,-252,-6011,-160,-305,-144,-1343,-1,-12,-25,-64,-190,-55,-9,-1452,-377,-38,-492, --901,-77,-462,-154,-179,-558,-2722,-6010,-392,-17,-92,-2772,-519], -[0,-15242,-18], -[0,-53,-432,-3769,-270,-202,-358,-15241], +[0,-3744,-3745,-3746,-3747,-3748,-3749,-367,-3750,-518,-635,-778,-779,-932,-940,-967,-969,-970,-1110,-1344,-3751,-1643, +-1889,-1908,-1930,-2162,-2163,-2275,-2281,-2282,-3436,-3752,-2335,-2501,-2503,-2507,-2508], +[0,-3753,-1534], +[0,-3100,-3754,-3755,-3756,-3590,-3551,-3757], [1,3,658], [0,659,660,661,9], -[0,-874,-13,-20,-1828,-221,-324,-899], -[0,-3768,-109,-3767,-5,-15240,-9,-18,-4,-2,-30], -[0,-471,-390,-42,-99,-2,-6009,-6008], +[0,-3661,-664,-668,-1551,-1600,-1816,-1951], +[0,-3758,-3035,-3759,-3037,-3760,-1344,-1534,-1942,-2410,-2469], +[0,-891,-3671,-856,-3690,-2410,-3761,-3762], [1,3,663], [0,664,665,105,5], -[0,-1097,-90,-3766,-15239,-2694,-1266,-472,-424,-3765,-130,-1742], -[0,-11,-15238], +[0,-3341,-44,-3763,-3764,-3765,-3766,-742,-930,-3767,-2231,-3768], +[0,-23,-3769], [1,3,667], [0,668,669,105,4], -[0,-2939,-2693,-2694,-6007,-6006], -[0,-3764,-2], +[0,-160,-3772,-3765,-3773,-3774], +[0,-3775,-2410], [1,3,671], [0,672,673,7,5], -[0,-90,-2939,-2692,-2694,-15237,-6006], -[0,-3764,-1088,-6,-2], +[0,-44,-160,-3776,-3765,-3777,-3774], +[0,-3775,-3778,-2006,-2410], [0,0,0,7,8], [1,3,676], [0,677,678,38,5], -[0,-1019], -[0,-43,-811,-3,-15236,-1,-608,-7,-14,-16,-2132,-4,-793,-2,-343,-359,-329,-1451,-415,-1450,-1298,-19,-15235], +[0,-983], +[0,-652,-1498,-1654,-3779,-932,-1810,-2125,-2127,-2177,-3780,-1942,-2468,-2410,-1772,-3330,-426,-3781,-2132,-3782,-2139, +-428,-3783], [1,3,680], [0,0,0,681,5], -[0,-45,-368,-1], +[0,-3214,-3784,-932], [1,3,683], [0,684,685,150,4], -[0,-15234,-267,-6005,-4002,-1018,-6004,-1092,-2691,-228,-2203,-6003,-697,-2767,-1505,-440,-121,-6002,-747,-6001,-3763, --6000], -[0,-2690,-5999,-15233,-109,-5998,-1279,-5997,-29,-5996,-2689,-3762,-2131,-5,-963,-972,-47,-87,-2688,-5995,-517,-2687,-413, --22,-19,-1741,-1186,-404,-535,-159,-56,-144,-502,-445,-1772,-1264,-1,-10,-64,-190,-1853,-346,-9,-8,-101,-2686,-5994, --1317,-807,-4,-441,-694,-6,-35,-2191,-7,-272,-321,-154,-888,-57,-33,-44,-2, --5993,-195,-17,-92,-170,-1780], +[0,-3785,-682,-3786,-863,-996,-3787,-3544,-3788,-1610,-1653,-3789,-1848,-2680,-1885,-1955,-1967,-3790,-2223,-3791,-3792, +-3793], +[0,-3794,-3795,-3796,-3035,-3797,-3043,-3798,-3136,-3799,-3800,-3801,-3802,-3037,-3803,-3140,-3040,-3052,-3804,-3805, +-3046,-3806,-3041,-427,-428,-3807,-585,-740,-748,-753,-756,-778,-795,-915,-2760,-3808,-932,-958,-969,-970,-1067,-1331, +-1344,-1415,-1442,-3809,-3810,-1652,-1821,-1942,-1952,-1992,-2006,-2019,-2024,-2125,-2195,-2214,-2275,-2278,-2375,-2379, +-2387,-2410, +-3811,-2435,-2501,-2503,-2505,-2509], [1,3,687], [0,688,689,151,4], -[0,-2684], -[0,-136,-122,-47,-87,-537,-6,-35,-3760,-353], +[0,-3819], +[0,-41,-409,-3040,-3052,-440,-2006,-2019,-3820,-727], [1,3,691], [0,0,0,692,4], -[0,-3866,-1086,-5990,-5989,-5988,-15230,-24,-77,-184,-111,-5987,-2127], +[0,-2651,-3827,-3828,-3829,-3830,-3831,-775,-2162,-3577,-3578,-3832,-3833], [1,3,694], [0,0,0,695,9], -[0,-3866,-1086,-5990,-5989,-15229,-15228,-24,-77,-184,-111,-5987,-2127], +[0,-2651,-3827,-3828,-3829,-3834,-3835,-775,-2162,-3577,-3578,-3832,-3833], [1,3,697], [0,152,0,153,8], [1,3,699], [0,152,0,153,4], [1,3,701], [0,0,702,703,6], -[0,-11,-962,-21,-136,-140,-49,-62,-48,-2938,-15226,-2937,-296,-2126,-295,-330,-155,-122,-29,-47,-87,-305,-1183,-1345,-26, --1,-12,-10,-145,-148,-25,-64,-190,-1549,-150,-55,-9,-8,-176,-4,-441,-6,-35,-7,-120,-57,-33,-171,-2,-83], -[0,-3759,-3989,-6,-45,-256,-961], +[0,-23,-3840,-40,-41,-42,-86,-3307,-190,-195,-3841,-196,-3470,-3842,-3471,-406,-407,-409,-3136,-3040,-3052,-635,-658,-741, +-767,-932,-940,-958,-959,-962,-967,-969,-970,-976,-978,-1110,-1344,-1415,-1419,-1942,-1952,-2006,-2019,-2125,-2174,-2375, +-2379,-2391,-2410,-2411], +[0,-3838,-1064,-2006,-3214,-3839,-3843], [1,3,705], [0,106,154,706,9], -[0,-2,-52,-209,-46,-808], +[0,-2410,-3161,-3844,-3445,-1818], [1,3,708], [0,709,710,711,8], -[0,-15225,-4052,-471,-5985], -[0,-15224,-5,-22,-19,-26,-471,-15223,-1,-266,-1020,-12,-10,-148,-25,-4,-211,-33,-124,-2], -[0,-2,-52,-471,-209,-46], +[0,-3845,-198,-891,-3846], +[0,-3847,-3037,-427,-428,-767,-891,-3848,-932,-933,-935,-940,-958,-962,-967,-1942,-2376,-2379,-2402,-2410], +[0,-2410,-3161,-891,-3844,-3445], [1,3,713], [0,714,154,715,9], -[0,-4052,-15222,-1739,-1449,-168,-813,-602], -[0,-2,-52,-41,-808,-209,-46], +[0,-198,-3849,-3850,-3851,-617,-1465,-2080], +[0,-2410,-3161,-1004,-1818,-3844,-3445], [1,3,717], [0,718,719,720,6], -[0,-15221,-15220,-5984,-5983], -[0,-5982], -[0,-380,-5981,-42,-100,-5980], +[0,-3852,-3853,-3854,-3855], +[0,-3856], +[0,-1122,-3857,-856,-1599,-3858], [1,3,722], [0,723,724,725,5], -[0,-3758,-15219,-5983,-5984], -[0,-5979,-5982], -[0,-1867,-380,-5981,-42,-107,-100,-5980], +[0,-3859,-3860,-3855,-3854], +[0,-3861,-3856], +[0,-858,-1122,-3857,-856,-3862,-1599,-3858], [1,3,727], [0,728,0,729,4], -[0,-11,-21,-15218,-15217,-5978,-160,-98,-5977,-159,-26,-144,-1343,-277,-5976,-377,-38,-492,-3757,-77,-15216,-462,-557, --438,-17,-92], -[0,-17,-1085,-2682,-53], +[0,-23,-40,-3863,-3864,-3865,-518,-534,-3866,-753,-767,-778,-779,-1041,-3867,-1643,-1889,-1908,-3868,-2162,-3869,-2163, +-2318,-2437,-2501,-2503], +[0,-2501,-3870,-3871,-3100], [1,3,731], [0,732,733,155,6], -[0,-3756,-15215,-15214,-15213,-15212,-15211,-15210,-15209,-5975,-15208,-15207,-15206,-15205,-15204,-15203,-15202,-5974, --15201], -[0,-3755,-5973,-15200,-3754,-15199,-5972,-5,-250,-756,-2], +[0,-3872,-3873,-3874,-3875,-3876,-3877,-3878,-3879,-3880,-3881,-3882,-3883,-3884,-3885,-3886,-3887,-3888,-3889], +[0,-3890,-3891,-3892,-3893,-3894,-3895,-3037,-1276,-1435,-2410], [1,24,735], [0,25,736], 1724872768784, [1,3,738], [0,739,740,741,5], -[0,-2125,-642], -[0,-49,-62,-15198,-15197,-296,-295,-960,-1,-9,-569,-15196,-18,-4,-120,-30], -[0,-166,-4,-968,-42,-45], +[0,-3896,-1993], +[0,-86,-3307,-3897,-3898,-3470,-3471,-3899,-932,-1344,-1392,-3900,-1534,-1942,-2174,-2469], +[0,-1446,-1942,-3485,-856,-3214], [1,3,743], [0,744,745,746,4], -[0,-5971], -[0,-320,-5970,-1762,-330,-155,-122,-317,-5,-47,-15195,-15194,-15193,-5969,-537,-193,-3753,-837,-5968,-15192,-3752,-2681, --5967,-26,-3751,-5966,-5965,-5964,-15191,-756,-79,-3847,-701,-15190,-15189,-15188,-65,-6,-35,-3911,-602,-2124,-3750,-2, --2158,-3749,-104,-3748,-30,-1271,-258], -[0,-5963,-409,-15187,-15186,-3911,-1271,-756,-2124,-2,-258,-3749,-2681,-5964,-15185,-5962,-5967,-3750,-193,-5961,-5968, --15184,-15183,-5966,-15182], +[0,-3901], +[0,-2581,-3902,-3117,-406,-407,-409,-410,-3037,-3040,-3903,-3904,-3905,-3906,-440,-469,-3907,-470,-3908,-3909,-3910,-3911, +-3912,-767,-3913,-3914,-3915,-3916,-3917,-1435,-1449,-2926,-1637,-3918,-3919,-3920,-1771,-2006,-2019,-2023,-2080,-3921, +-3922,-2410,-2924,-3923,-2466,-3924,-2469,-3612,-2564], +[0,-3925,-3926,-3927,-3928,-2023,-3612,-1435,-3921,-2410,-2564,-3923,-3911,-3916,-3929,-3930,-3912,-3922,-469,-3931,-3908, +-3932,-3933,-3914,-3934], [1,3,748], [0,749,38,750,4], -[0,-284], -[0,-15181,-15180,-15179,-15178,-1448,-5960,-99], +[0,-2426], +[0,-3935,-3936,-3937,-3938,-3939,-3940,-3690], [1,3,752], [0,753,754,755,5], -[0,-15177,-15176,-15175,-2684,-468], -[0,-7,-74,-882], -[0,-74,-873,-5959,-53,-52,-102,-3835,-129,-127,-684,-3834], +[0,-3941,-3942,-3943,-3819,-1549], +[0,-2125,-2476,-2483], +[0,-2476,-3944,-3945,-3100,-3161,-3160,-3112,-3095,-3098,-3113,-3114], [1,3,757], [0,758,759,760,4], -[0,-3766,-6565,-1174,-468], -[0,-1738,-7,-74,-882], -[0,-74,-873,-5959,-53,-52,-102,-129,-127], +[0,-3763,-229,-807,-1549], +[0,-3946,-2125,-2476,-2483], +[0,-2476,-3944,-3945,-3100,-3161,-3160,-3095,-3098], [1,3,762], [0,763,764,63,4], -[0,-3747,-3844,-1767,-15174,-15173,-2680,-891], -[0,-5958,-3746,-5,-2], +[0,-3947,-2944,-2900,-3948,-3949,-3950,-2202], +[0,-3951,-3952,-3037,-2410], [1,3,766], [0,767,768,769,10], -[0,-44,-1838,-5957], -[0,-8,-77,-20,-118,-801,-15172,-1,-14,-40,-496,-4,-179,-29,-5,-15171,-2714,-15170,-5956,-1489,-357,-15169,-15168,-6182, --2118,-15167,-2117,-2677,-12,-19,-15166,-63,-15165,-15164,-22], -[0,-1529,-52,-15163,-95,-300,-2116,-3743,-1026,-471,-3742,-2676], +[0,-2387,-1387,-3978], +[0,-1415,-2162,-668,-999,-2184,-3979,-932,-2127,-1077,-1417,-1942,-2281,-3136,-3037,-3980,-3564,-3981,-3982,-2284,-3983, +-3984,-3985,-2891,-3986,-3987,-3988,-3989,-940,-428,-3990,-351,-3991,-3992,-427], +[0,-1386,-3161,-3993,-3162,-3994,-3995,-3996,-752,-891,-3997,-3998], [1,3,771], [0,0,156,157,4], [1,3,773], [0,774,0,775,4], -[0,-2675], -[0,-2,-353,-15,-75,-787], +[0,-4003], +[0,-2410,-727,-1788,-4004,-4005], [1,3,777], [0,778,779,780,4], -[0,-2751,-15162,-957,-5955,-267,-15161], -[0,-1733,-252,-155,-122,-317,-103,-1,-12,-5954,-79,-6,-35,-2,-104,-30], -[0,-129,-127,-5953,-435,-52,-53,-15160,-15159,-108,-6,-102,-5952], +[0,-2852,-4006,-4007,-4008,-682,-4009], +[0,-4010,-367,-407,-409,-410,-3664,-932,-940,-4011,-1449,-2006,-2019,-2410,-2466,-2469], +[0,-3095,-3098,-4012,-3099,-3161,-3100,-4013,-4014,-3159,-2006,-3160,-4015], [1,3,782], [0,783,784,107,4], -[0,-15158,-5951,-5950,-3741,-1732,-715,-5,-929,-20,-504,-5949,-325,-15157,-3740,-5948,-5947,-5946,-1832,-15156,-15155, --15154,-15153,-912,-2674,-5945,-362,-695,-285], -[0,-15152,-2115,-872,-634], +[0,-4016,-4017,-4018,-4019,-4020,-237,-3037,-480,-668,-680,-4021,-1119,-4022,-4023,-4024,-4025,-4026,-1426,-4027,-4028, +-4029,-4030,-1427,-4031,-4032,-1639,-1950,-2218], +[0,-4033,-4034,-4035,-4036], [1,3,786], [0,787,0,7,4], -[0,-5951,-5942,-5941,-5940,-5,-413,-20], +[0,-4017,-4046,-4047,-4048,-3037,-3041,-668], [1,3,789], [0,790,791,792,6], -[0,-633,-193,-837,-23], -[0,-1357,-15148,-22,-19,-51,-15147,-1,-12,-10,-25,-79,-15,-4,-322,-5939,-7,-14,-895,-301,-640,-146,-33,-44,-124,-2], -[0,-546,-871,-106,-1261,-53,-114,-336,-409,-1260,-814,-318,-1259,-679,-1258], +[0,-4049,-469,-470,-1548], +[0,-234,-4050,-427,-428,-519,-4051,-932,-940,-958,-967,-1449,-1788,-1942,-2074,-4052,-2125,-2127,-2130,-2142,-2144,-2234, +-2379,-2387,-2402,-2410], +[0,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-3926,-4057,-1463,-4058,-4059,-3999,-4060], [1,3,794], [0,795,796,797,5], -[0,-15146,-574,-23], -[0,-1088,-1894,-6558,-6557,-6556,-80,-231,-63,-232,-1279,-29,-47,-87,-22,-19,-1741,-535,-445,-1,-12,-10,-25,-64,-8,-176, --79,-15,-4,-6,-35,-7,-14,-895,-870,-5938,-301,-640,-890,-57,-211,-44,-124,-2,-17,-92,-170,-1356,-4048], -[0,-1761,-2112,-546,-871,-106,-1261,-53,-114,-336,-1260,-814,-318,-1259,-679,-1258], +[0,-4061,-809,-1548], +[0,-3778,-163,-270,-272,-274,-350,-4062,-351,-3561,-3043,-3136,-3040,-3052,-427,-428,-3807,-748,-915,-932,-940,-958,-967, +-969,-1415,-1419,-1449,-1788,-1942,-2006,-2019,-2125,-2127,-2130,-4063,-4064,-2142,-2144,-2233,-2375,-2376,-2387,-2402, +-2410,-2501,-2503,-2505,-238,-240], +[0,-3118,-4065,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], [1,3,799], [0,34,800,801,6], -[0,-513,-1279,-29,-3739,-47,-3837,-22,-19,-1741,-26,-445,-1,-12,-10,-25,-64,-8,-79,-15,-4,-6,-35,-898,-322,-5939,-7,-14, --895,-301,-640,-57,-44,-124,-2,-1356], -[0,-6,-546,-871,-106,-1261,-53,-114,-336,-1260,-814,-318,-1259,-679,-1258], +[0,-4066,-3043,-3136,-4067,-3040,-3062,-427,-428,-3807,-767,-915,-932,-940,-958,-967,-969,-1415,-1449,-1788,-1942,-2006, +-2019,-2040,-2074,-4052,-2125,-2127,-2130,-2142,-2144,-2375,-2387,-2402,-2410,-238], +[0,-2006,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], [1,3,803], [0,804,805,7,4], -[0,-2720,-15145,-15144,-15143,-15142,-15141,-15140,-15139,-15138,-15137,-15136,-15135,-15134,-15133,-15132,-15131,-15130, --15129,-15128,-15127], -[0,-15126,-29,-8,-7,-2], +[0,-3469,-4068,-4069,-4070,-4071,-4072,-4073,-4074,-4075,-4076,-4077,-4078,-4079,-4080,-4081,-4082,-4083,-4084,-4085, +-4086], +[0,-4087,-3136,-1415,-2125,-2410], [1,3,807], [0,808,809,810,9], -[0,-767,-291,-20,-315,-5937,-28,-5936,-101,-15125,-2852,-93,-72,-3738,-7,-15124,-15123,-15122,-15121,-2111,-71,-596,-554, --883,-15120], -[0,-182,-5935,-1032,-268,-56,-1872,-1148,-3,-15,-5934,-488,-27,-97,-70], -[0,-77,-432,-24,-678,-42,-968,-1445], +[0,-482,-567,-668,-725,-4088,-1107,-4089,-1442,-4090,-1572,-1645,-1650,-4091,-2125,-4092,-4093,-4094,-4095,-4096,-2347, +-2433,-2462,-2463,-4097], +[0,-526,-4098,-555,-558,-756,-808,-1451,-1654,-1788,-4099,-2155,-2210,-2250,-2460], +[0,-2162,-3754,-775,-4100,-856,-3485,-4101], [1,3,812], [0,0,0,813,10], -[0,-15119,-15118,-15117], +[0,-4102,-4103,-4104], [1,3,815], [0,816,817,158,5], -[0,-1767], -[0,-2277,-5933,-1257,-1829], +[0,-2900], +[0,-231,-4105,-4106,-1536], [1,3,819], [0,820,28,821,6], -[0,-2751,-304,-6342,-15116,-2768,-210], -[0,-127,-435,-53,-369,-241,-399,-6,-102,-867], +[0,-2852,-703,-2037,-4118,-2641,-2400], +[0,-3098,-3099,-3100,-3482,-2634,-1713,-2006,-3160,-4119], [1,3,823], [0,108,28,824,8], -[0,-3736,-127,-956,-53,-369,-241,-399,-2671,-6,-588,-102,-867], +[0,-4120,-3098,-4121,-3100,-3482,-2634,-1713,-4122,-2006,-4123,-3160,-4119], [0,0,0,826,5], -[0,-53,-682,-369,-241,-399,-6,-3735,-1255], +[0,-3100,-3322,-3482,-2634,-1713,-2006,-4124,-4125], [1,3,828], [0,0,28,829,6], -[0,-127,-1735,-53,-369,-1444,-241,-399,-6,-102,-867], +[0,-3098,-3959,-3100,-3482,-4126,-2634,-1713,-2006,-3160,-4119], [1,3,831], [0,832,28,833,6], -[0,-3865,-691], -[0,-127,-53,-369,-241,-399,-1731,-15115,-15114,-6,-102,-867], +[0,-2662,-2055], +[0,-3098,-3100,-3482,-2634,-1713,-4127,-4128,-4129,-2006,-3160,-4119], [1,3,835], [0,836,0,837,4], -[0,-1730,-6560], -[0,-6,-241,-399,-102,-127,-867,-369,-53,-354,-2107,-389,-5932], +[0,-4130,-257], +[0,-2006,-2634,-1713,-3160,-3098,-4119,-3482,-3100,-707,-4131,-4132,-4133], [1,3,839], [0,840,0,841,10], -[0,-304,-764], -[0,-6,-241,-399,-102,-369,-53,-1865,-1265,-3734], +[0,-703,-786], +[0,-2006,-2634,-1713,-3160,-3482,-3100,-906,-3771,-4134], [1,3,843], [0,0,0,844,5], -[0,-6,-241,-399,-369,-53,-3735,-682,-1255], +[0,-2006,-2634,-1713,-3482,-3100,-4124,-3322,-4125], [1,3,846], [0,847,0,160,4], -[0,-304,-439,-3923,-121,-90,-15113,-15112,-15111,-15110,-691,-1006,-1468], +[0,-703,-2029,-1887,-1967,-44,-4135,-4136,-4137,-4138,-2055,-1311,-3024], [1,3,849], [0,39,0,850,4], -[0,-6,-108,-973,-1136,-961], +[0,-2006,-3159,-3119,-1613,-3843], [1,3,852], [0,0,853,161,4], -[0,-8,-123,-9,-1,-23,-159,-33,-124,-4,-110,-50,-86,-2,-11,-29,-680,-65,-142,-366,-49,-739,-21,-1170,-342,-12,-25,-794, --140,-478,-3733,-19,-62,-22,-216,-306,-1038], +[0,-1415,-2446,-1344,-932,-1548,-753,-2379,-2402,-1942,-589,-21,-533,-2410,-23,-3136,-3738,-1771,-3044,-50,-86,-3268,-40, +-977,-2082,-940,-967,-2405,-42,-262,-4139,-428,-3307,-427,-26,-36,-35], [1,3,855], [0,856,0,857,5], -[0,-5930], -[0,-866,-100,-2106,-6,-274], +[0,-4145], +[0,-4146,-1599,-4147,-2006,-2093], [1,3,859], [0,860,861,862,10], -[0,-2276,-1893,-207,-23,-93,-128,-16,-130,-2,-15107,-5929,-15106,-15105,-15104], -[0,-2669,-142,-1098,-137,-1,-15103,-15102], -[0,-2,-1087,-3732,-15101,-3731,-547,-42,-3730,-3729,-6009,-14,-1084,-593,-5928,-15100], +[0,-264,-263,-834,-1548,-1645,-2114,-2177,-2231,-2410,-4148,-4149,-4150,-4151,-4152], +[0,-4153,-3044,-3200,-3199,-932,-4154,-4155], +[0,-2410,-3816,-4156,-4157,-4158,-3960,-856,-4159,-4160,-3761,-2127,-4161,-3116,-4162,-4163], [1,3,864], [0,0,865,162,4], -[0,-1,-2669,-3728], +[0,-932,-4153,-4164], [1,3,867], [0,868,869,162,4], -[0,-193,-5927,-128,-1893], -[0,-1,-15099,-1098,-2669,-3728], +[0,-469,-4166,-2114,-263], +[0,-932,-4167,-3200,-4153,-4164], [1,3,871], [0,0,872,873,5], -[0,-15098,-15097,-15096,-2668,-5], -[0,-3727,-3726,-3725,-3724,-3723,-3722,-15095,-15094], +[0,-4168,-4169,-4170,-4171,-3037], +[0,-4172,-4173,-4174,-4175,-4176,-4177,-4178,-4179], [1,3,875], [0,876,877,878,8], -[0,-6559], -[0,-4047,-2668,-210], -[0,-3727,-3726,-3725,-3724,-3723,-3722,-15093,-5926,-1087,-1253,-15092,-15091], +[0,-267], +[0,-265,-4171,-2400], +[0,-4172,-4173,-4174,-4175,-4176,-4177,-4180,-4181,-3816,-4182,-4183,-4184], [1,3,880], [0,0,881,882,4], -[0,-15090,-4047,-2668,-5,-15089], -[0,-3727,-3726,-3725,-3724,-3723,-3722,-2105,-132], +[0,-4185,-265,-4171,-3037,-4186], +[0,-4172,-4173,-4174,-4175,-4176,-4177,-4187,-2444], [1,3,884], [0,0,0,885,5], -[0,-15088,-53,-2667,-271], +[0,-4188,-3100,-4189,-3110], [1,3,887], [0,888,889,890,4], -[0,-5925,-15087,-15086,-5924,-5923,-2666], -[0,-49,-62,-5922,-5921,-357,-1443,-257,-5920,-5919,-5,-955,-3721,-954,-454,-201,-168,-503,-383,-26,-298,-15085,-41,-2665, --15084,-1543,-402,-1324,-79,-188,-970,-800,-1295,-3720,-688,-125,-371,-2,-284,-30,-5918,-2755,-15083,-17,-5917,-205], -[0,-113,-15082,-105,-401,-2170,-743,-865,-15081,-307,-1729,-61], +[0,-4190,-4191,-4192,-4193,-4194,-4195], +[0,-86,-3307,-4196,-4197,-3983,-4198,-3617,-4199,-4200,-3037,-4201,-4202,-4203,-4204,-523,-617,-720,-754,-767,-796,-4205, +-1004,-4206,-4207,-1063,-1116,-1278,-1449,-1729,-3246,-2228,-2229,-4208,-2291,-2293,-2892,-2410,-2426,-2469,-4209,-2817, +-4210,-2501,-4211,-2531], +[0,-2105,-4212,-1334,-1342,-2540,-2533,-4213,-4214,-4215,-4216,-3634], [1,3,892], [0,39,0,893,4], -[0,-6,-108,-953,-1136,-973,-961], +[0,-2006,-3159,-4217,-1613,-3119,-3843], [1,3,895], [0,896,0,897,6], -[0,-304,-1769,-1474,-121,-4046,-90], -[0,-6,-108,-953,-1136,-973,-1144], +[0,-703,-2825,-2690,-1967,-273,-44], +[0,-2006,-3159,-4217,-1613,-3119,-1510], [1,3,899], [0,900,0,901,4], -[0,-304,-764,-439,-1769,-1474,-121,-4046,-90,-790,-691,-15080,-1468], -[0,-6,-108,-953,-1136,-973], +[0,-703,-786,-2029,-2825,-2690,-1967,-273,-44,-2997,-2055,-4218,-3024], +[0,-2006,-3159,-4217,-1613,-3119], [1,3,903], [0,904,0,905,9], -[0,-304,-764,-1769,-1474,-121,-90,-6274,-6251], -[0,-6,-108,-953,-5916], +[0,-703,-786,-2825,-2690,-1967,-44,-2575,-2689], +[0,-2006,-3159,-4217,-4219], [1,3,907], [0,908,0,909,4], -[0,-90,-1474,-1468,-304,-121,-691,-15079], -[0,-6,-108,-953,-15078,-1136,-973,-5915,-15077,-5914], +[0,-44,-2690,-3024,-703,-1967,-2055,-4220], +[0,-2006,-3159,-4217,-4221,-1613,-3119,-4222,-4223,-4224], [1,3,911], [0,912,913,914,5], -[0,-2664,-15076,-3719,-2104,-5913,-5912,-677,-15075,-15074,-267,-224,-15073,-15072,-2103,-28,-708,-15071,-15070,-3718, --15069,-5911,-864,-521,-15068,-15067,-863,-15066,-210,-133,-340,-17,-5910,-1475], -[0,-5909,-15065,-15064,-408,-47,-517,-160,-289,-241,-561,-6,-35,-374,-557,-171,-2,-15063,-15062,-15061], -[0,-2106,-42,-399,-100], +[0,-4225,-4226,-4227,-4228,-4229,-4230,-4231,-4232,-4233,-682,-712,-4234,-4235,-4236,-1107,-1125,-4237,-4238,-4239,-4240, +-4241,-4242,-2095,-4243,-4244,-4245,-4246,-2400,-2427,-2429,-2501,-4247,-2650], +[0,-4248,-4249,-4250,-4251,-3040,-3046,-518,-726,-2634,-1906,-2006,-2019,-2083,-2318,-2391,-2410,-4252,-4253,-4254], +[0,-4147,-856,-1713,-1599], [1,3,916], [0,917,0,109,9], -[0,-5908,-5907,-2749,-15060], +[0,-4255,-4256,-2888,-4257], [1,3,919], [0,920,0,109,11], -[0,-44,-6555], +[0,-2387,-276], [1,3,922], [0,923,0,109,5], -[0,-374,-5906,-2187,-750,-486,-5905,-3717,-760,-340,-15056,-15055,-15054,-20,-863,-133,-3894], +[0,-2083,-4262,-2087,-2090,-3649,-4263,-4264,-1292,-2429,-4265,-4266,-4267,-668,-4245,-2427,-2268], [1,3,925], [0,926,927,928,5], -[0,-15053,-2238,-244,-732], -[0,-13,-2909,-3,-1,-3716,-7,-3715,-33,-499,-4,-2,-109,-5,-3714,-2256,-265,-10,-12,-25,-19,-15052,-22,-6554,-15051,-15050], -[0,-2663,-15049,-3715,-61], +[0,-4268,-820,-665,-4269], +[0,-664,-616,-1654,-932,-4270,-2125,-4271,-2379,-1098,-1942,-2410,-3035,-3037,-4272,-595,-964,-958,-940,-967,-428,-4273, +-427,-279,-4274,-4275], +[0,-4276,-4277,-4271,-3634], [1,3,930], [0,931,932,7,5], -[0,-5904,-5903,-3713,-4045,-5902,-5901,-4044,-1442,-15048,-3712,-1355,-5900,-2102,-5899,-818,-15047,-442,-93,-466,-5898, --994,-3711,-1814,-1309,-5897,-989,-15046,-15045,-15044,-16,-1491,-5896,-3710], -[0,-731,-3709,-730,-110,-15043,-198,-85,-886,-15042], +[0,-4278,-4279,-4280,-281,-4281,-4282,-282,-4283,-4284,-4285,-283,-4286,-4287,-4288,-1315,-4289,-1582,-1645,-1758,-4290, +-1767,-4291,-1770,-1831,-4292,-1957,-4293,-4294,-4295,-2177,-2247,-4296,-4297], +[0,-4298,-4299,-4300,-589,-4301,-1722,-2319,-2325,-4302], [1,3,934], [0,935,29,936,5], -[0,-5901,-1442,-28,-93], -[0,-158,-1813,-2662,-37,-3708,-15041], +[0,-4282,-4283,-1107,-1645], +[0,-1764,-1776,-4303,-687,-4304,-4305], [1,3,938], [0,0,29,939,10], -[0,-158,-37,-610], +[0,-1764,-687,-1733], [1,3,941], [0,942,943,7,6], -[0,-4044,-1442,-3707,-610,-989,-219], -[0,-731,-730,-5895,-85], +[0,-282,-4283,-4306,-1733,-1957,-2518], +[0,-4298,-4300,-4307,-2319], [1,3,945], [0,946,947,163,5], -[0,-3706,-5894,-3705,-221,-1153,-5893,-5892,-5891,-5890,-5889,-5888,-2210,-5887,-1794,-486,-5886,-5885,-1827,-5884,-1138, --5883,-5882,-5881,-3799,-5880,-5879], -[0,-28,-3,-238,-97,-5878,-59,-5877,-134], +[0,-4308,-4309,-4310,-1600,-1395,-4311,-4312,-4313,-4314,-4315,-4316,-1550,-4317,-2161,-3649,-4318,-4319,-1554,-4320, +-1603,-4321,-4322,-4323,-3430,-4324,-4325], +[0,-1107,-1654,-674,-2250,-4326,-633,-4327,-2251], [1,24,949], [0,25,950], 1734998400000, [1,3,952], [0,953,0,64,4], -[0,-714], +[0,-293], [1,3,955], [0,956,0,64,10], -[0,-1313,-44], +[0,-1787,-2387], [1,3,958], [0,959,0,64,4], -[0,-4042], +[0,-300], [1,3,961], [0,962,963,64,5], -[0,-2661,-351,-44,-16,-518,-93,-573], -[0,-8,-1313], +[0,-4341,-888,-2387,-2177,-2551,-1645,-910], +[0,-1415,-1787], [1,3,965], [0,966,40,967,4], -[0,-44,-1035,-714,-164,-311,-795], -[0,-1083,-15038,-1252,-784,-2099,-1441], +[0,-2387,-297,-293,-1863,-2654,-2383], +[0,-4332,-4342,-4335,-4340,-4343,-4344], [1,3,969], [0,970,40,164,4], -[0,-44,-1035,-16,-714,-2], +[0,-2387,-297,-2177,-293,-2410], [1,3,972], [0,973,0,974,9], -[0,-44,-1035,-4043,-714], -[0,-1083,-1251,-15036,-1725,-1724,-784,-1441], +[0,-2387,-297,-299,-293], +[0,-4332,-4336,-4348,-4338,-4339,-4340,-4344], [1,3,976], [0,977,40,978,11], -[0,-20,-44,-469,-16,-1565,-2737,-323,-714,-164,-311,-11,-1868,-649,-2200,-4042,-90,-2661,-21,-146,-1266,-15035,-140,-173, --622,-1096,-15034], -[0,-1083,-1252,-1251,-15033,-15032,-784,-2099,-1441], +[0,-668,-2387,-1353,-2177,-715,-3187,-1864,-293,-1863,-2654,-23,-832,-1461,-1773,-300,-44,-4341,-40,-2234,-3766,-4349,-42, +-38,-33,-3376,-4350], +[0,-4332,-4335,-4336,-4351,-4352,-4340,-4343,-4344], [1,3,980], [0,981,0,165,4], -[0,-44,-1035,-4043,-714,-2274,-5875], +[0,-2387,-297,-299,-293,-295,-4353], [1,3,983], [0,984,40,165,8], -[0,-44,-1035,-6276,-15031,-714,-15030,-2274,-2660], +[0,-2387,-297,-2571,-4354,-293,-4355,-295,-4356], [1,3,986], [0,987,40,64,9], -[0,-1313,-20,-44,-16,-573,-323,-714,-518,-2661], +[0,-1787,-668,-2387,-2177,-910,-1864,-293,-2551,-4341], [1,3,989], [0,990,991,76,4], -[0,-6553,-5874,-5873,-15029,-36,-16], -[0,-3704,-109,-69,-5,-137,-13,-6509,-404,-1,-1337,-2235,-3703,-206,-3,-27,-33,-2], +[0,-302,-4357,-4358,-4359,-812,-2177], +[0,-4360,-3035,-3621,-3037,-3199,-664,-697,-740,-932,-938,-939,-4361,-1111,-1654,-2210,-2379,-2410], [1,3,993], [0,994,995,76,5], -[0,-5874,-5873,-36,-206,-914,-44], -[0,-109,-5872,-142,-69,-5,-2659,-5871,-13,-404,-1,-1337,-2235,-3703,-23,-3,-180,-33,-2], +[0,-4357,-4358,-812,-1111,-1401,-2387], +[0,-3035,-4363,-3044,-3621,-3037,-4364,-4365,-664,-740,-932,-938,-939,-4361,-1548,-1654,-1972,-2379,-2410], [1,3,997], [0,998,999,1000,4], -[0,-929,-1580,-5870,-2900,-36,-351,-1846,-817,-914,-2212,-93,-16,-394,-461,-311,-2754,-978,-880], -[0,-62,-487,-2935,-3704,-2097,-2658,-739,-109,-732,-5869,-162,-2657,-5872,-69,-5,-2656,-269,-2655,-15028,-5871,-110,-13, --244,-1179,-26,-1,-1337,-12,-9,-18,-3702,-3,-15,-4,-395,-27,-33,-81,-2], -[0,-1723,-37,-308,-1722,-73,-587,-1250], +[0,-480,-483,-4366,-692,-812,-888,-1097,-1366,-1401,-1532,-1645,-2177,-2267,-2297,-2654,-2820,-2525,-2528], +[0,-3307,-3615,-304,-4360,-4367,-4368,-3268,-3035,-4269,-4369,-3198,-4370,-4363,-3621,-3037,-4371,-4372,-4373,-4374,-4365, +-589,-664,-665,-721,-767,-932,-938,-940,-1344,-1534,-4375,-1654,-1788,-1942,-2200,-2210,-2379,-2384,-2410], +[0,-4362,-687,-3957,-4376,-3215,-4377,-4378], [1,3,1002], [0,1003,1004,1005,6], -[0,-2273], -[0,-62,-487,-2097,-2658,-109,-69,-5,-13,-1179,-1,-1337,-12,-9,-18,-3,-1723,-4,-395,-33,-2], -[0,-15027], +[0,-303], +[0,-3307,-3615,-4367,-4368,-3035,-3621,-3037,-664,-721,-932,-938,-940,-1344,-1534,-1654,-4362,-1942,-2200,-2379,-2410], +[0,-4379], [1,3,1007], [0,1008,1009,1010,4], -[0,-3775,-15026,-15025,-15024], -[0,-15023,-15022,-15021,-15020,-15019,-5,-103,-89,-3991,-28,-198,-4,-15018,-2,-284,-30], -[0,-5868,-571,-410,-15017], +[0,-3704,-4380,-4381,-4382], +[0,-4383,-4384,-4385,-4386,-4387,-3037,-3664,-928,-1037,-1107,-1722,-1942,-4388,-2410,-2426,-2469], +[0,-4389,-1105,-3691,-4390], [1,3,1012], [0,1013,0,65,4], -[0,-15016,-15015,-15014,-15013,-15012,-15011,-15010,-15009,-15008,-15007,-15006,-15005,-15004,-15003,-15002,-15001,-15000, --14999,-14998,-14997,-14996,-14995,-14994,-14993,-14992,-14991,-14990,-14989,-14988,-14987,-14986,-14985,-14984,-14983, --14982,-14981,-14980,-14979,-14978,-14977,-14976,-14975,-14974,-14973,-14972,-14971,-14970,-14969,-14968,-14967,-14966, --14965,-14964,-14963,-14962,-14961,-14960,-14959,-14958,-14957,-14956,-14955,-14954, --14953,-14952,-14951,-14950,-14949,-14948,-14947,-14946,-14945,-14944,-14943,-14942,-14941,-14940,-14939,-14938,-14937, --14936,-14935,-14934,-14933,-14932,-14931,-14930,-14929,-14928,-14927,-14926,-14925,-14924,-14923,-14922,-14921,-14920, --14919,-14918,-14917,-14916,-14915,-14914,-14913,-14912,-14911,-14910,-14909,-14908,-14907,-14906,-14905,-14904,-14903, --14902,-14901,-14900,-14899,-14898,-14897,-14896,-14895,-14894,-14893,-14892,-14891,-14890, --14889,-14888,-14887,-14886,-14885,-14884,-14883,-14882,-14881,-14880,-14879,-14878,-14877,-14876,-14875,-14874,-14873, --14872,-14871,-14870,-14869,-14868,-14867,-14866,-14865,-14864,-14863,-14862,-14861,-14860,-14859,-14858,-14857,-14856, --14855,-14854,-14853,-14852,-14851,-14850,-14849,-14848,-14847,-14846,-14845,-14844,-14843,-14842,-14841,-14840,-14839, --14838,-14837,-14836,-14835,-14834,-14833,-14832,-14831,-14830,-14829,-14828,-14827,-14826, --14825,-14824,-14823,-14822,-14821,-14820,-14819,-14818], +[0,-4391,-4392,-4393,-4394,-4395,-4396,-4397,-4398,-4399,-4400,-4401,-4402,-4403,-4404,-4405,-4406,-4407,-4408,-4409, +-4410,-4411,-4412,-4413,-4414,-4415,-4416,-4417,-4418,-4419,-4420,-4421,-4422,-4423,-4424,-4425,-4426,-4427,-4428,-4429, +-4430,-4431,-4432,-4433,-4434,-4435,-4436,-4437,-4438,-4439,-4440,-4441,-4442,-4443,-4444,-4445,-4446,-4447,-4448,-4449, +-4450,-4451,-4452,-4453, +-4454,-4455,-4456,-4457,-4458,-4459,-4460,-4461,-4462,-4463,-4464,-4465,-4466,-4467,-4468,-4469,-4470,-4471,-4472,-4473, +-4474,-4475,-4476,-4477,-4478,-4479,-4480,-4481,-4482,-4483,-4484,-4485,-4486,-4487,-4488,-4489,-4490,-4491,-4492,-4493, +-4494,-4495,-4496,-4497,-4498,-4499,-4500,-4501,-4502,-4503,-4504,-4505,-4506,-4507,-4508,-4509,-4510,-4511,-4512,-4513, +-4514,-4515,-4516,-4517, +-4518,-4519,-4520,-4521,-4522,-4523,-4524,-4525,-4526,-4527,-4528,-4529,-4530,-4531,-4532,-4533,-4534,-4535,-4536,-4537, +-4538,-4539,-4540,-4541,-4542,-4543,-4544,-4545,-4546,-4547,-4548,-4549,-4550,-4551,-4552,-4553,-4554,-4555,-4556,-4557, +-4558,-4559,-4560,-4561,-4562,-4563,-4564,-4565,-4566,-4567,-4568,-4569,-4570,-4571,-4572,-4573,-4574,-4575,-4576,-4577, +-4578,-4579,-4580,-4581, +-4582,-4583,-4584,-4585,-4586,-4587,-4588,-4589], [1,3,1015], [0,1016,1017,65,5], -[0,-14813,-14812,-224], -[0,-2654,-171], +[0,-4595,-4596,-712], +[0,-4597,-2391], [1,3,1019], [0,0,1020,65,8], -[0,-50,-11,-21,-229,-32,-1844,-1009,-654,-1325,-14811,-14810,-7,-179,-558,-598], +[0,-21,-23,-40,-1026,-1168,-1171,-1184,-1187,-1226,-4598,-4599,-2125,-2281,-2282,-2303], [1,3,1022], [0,0,1023,65,8], -[0,-50,-11,-21,-32,-1844,-1009,-1325,-7,-179,-558], +[0,-21,-23,-40,-1168,-1171,-1184,-1226,-2125,-2281,-2282], [1,3,1025], [0,0,0,1026,4], -[0,-2653,-453,-512,-111,-46,-352], +[0,-4600,-4601,-4602,-3578,-3445,-743], [1,3,1028], [0,1029,0,1030,4], -[0,-3701,-14809,-4041,-5866,-14808,-14807,-14806,-14805], -[0,-2653,-453,-512,-111,-46,-2096,-113], +[0,-4603,-4604,-310,-4605,-4606,-4607,-4608,-4609], +[0,-4600,-4601,-4602,-3578,-3445,-4610,-2105], [1,3,1032], [0,1033,0,1034,5], -[0,-14804,-261,-14803,-5866,-4041,-14802,-5865,-6552,-6551,-14801], -[0,-2653,-453,-512,-111,-46,-1249], +[0,-4611,-1640,-4612,-4605,-310,-4613,-4614,-311,-313,-4615], +[0,-4600,-4601,-4602,-3578,-3445,-4616], [1,3,1036], [0,1037,0,1038,4], -[0,-261,-14800,-5865], -[0,-2653,-453,-512,-111,-46,-1249,-802,-5864], +[0,-1640,-4617,-4614], +[0,-4600,-4601,-4602,-3578,-3445,-4616,-2178,-4618], [1,3,1040], [0,1041,1042,1043,4], -[0,-14799,-201,-168,-20,-41,-380,-1013,-614,-759,-1002,-23,-642,-5863,-434,-2652], -[0,-50,-11,-21,-14798,-109,-732,-257,-3700,-142,-69,-3699,-5,-5862,-269,-1270,-5861,-22,-19,-13,-244,-3698,-660,-1,-191, --1020,-12,-251,-3697,-10,-265,-3,-198,-15,-4,-180,-7,-27,-186,-146,-153,-2], -[0,-14797,-14796,-45,-14795,-61,-14794], +[0,-4619,-523,-617,-668,-1004,-1122,-1123,-1336,-1343,-1439,-1548,-1993,-4620,-3122,-4621], +[0,-21,-23,-40,-4622,-3035,-4269,-3617,-4623,-3044,-3621,-4624,-3037,-4625,-4372,-3625,-4626,-427,-428,-664,-665,-4627, +-749,-932,-934,-935,-940,-948,-4628,-958,-964,-1654,-1722,-1788,-1942,-1972,-2125,-2210,-2211,-2234,-2392,-2410], +[0,-4629,-4630,-3214,-4631,-3634,-4632], [0,0,0,7,10], [1,3,1046], [0,1047,0,1048,6], -[0,-563], -[0,-1255,-1721,-6,-74,-220,-952,-2,-45,-53,-46,-918,-102,-1329,-434], +[0,-1851], +[0,-4125,-4633,-2006,-2476,-2299,-4634,-2410,-3214,-3100,-3445,-1109,-3160,-1062,-3122], [1,3,1050], [0,1051,1052,7,4], -[0,-14793,-14792,-14791,-14790,-14789,-14788,-14787,-14786,-14785,-14784,-14783], -[0,-109,-69,-13,-144,-1021,-78,-139,-212,-1145,-189,-418,-3,-7,-6149,-154,-124,-2,-17], +[0,-4635,-4636,-4637,-4638,-4639,-4640,-4641,-4642,-4643,-4644,-4645], +[0,-3035,-3621,-664,-778,-925,-1471,-1475,-1479,-1480,-1482,-1483,-1654,-2125,-3047,-2275,-2402,-2410,-2501], [1,3,1054], [0,0,1055,1056,4], -[0,-357,-861,-63,-204,-330,-155,-586,-5,-14782,-382,-1,-14781,-3696,-5860,-3695,-55,-79,-38,-696,-4,-5859,-3694,-373, --1720,-1719,-14,-415,-301,-393,-33,-44,-153,-124,-14780,-794,-14779,-5858,-14778,-14777,-14776,-2,-14775,-793,-14774], -[0,-951,-1248,-14773,-5857,-14772,-24,-435,-2667,-14771,-14770,-42,-1718,-14769,-31,-14768,-5856,-1717,-45,-14767,-14766, --1082,-14765,-2095,-2651,-2650,-2,-5855,-746,-14764,-6,-682], +[0,-3983,-4646,-351,-3266,-406,-407,-4647,-3037,-4648,-784,-932,-4649,-4650,-4651,-4652,-1110,-1449,-1889,-1891,-1942, +-4653,-4654,-2091,-4655,-4656,-2127,-2132,-2142,-2286,-2379,-2387,-2392,-2402,-4657,-2405,-4658,-4659,-4660,-4661,-4662, +-2410,-4663,-2468,-4664], +[0,-4665,-4666,-4667,-4668,-4669,-775,-3099,-4189,-4670,-4671,-856,-4672,-4673,-3264,-4674,-4675,-4676,-3214,-4677,-4678, +-4679,-4680,-4681,-4682,-4683,-2410,-4684,-2257,-4685,-2006,-3322], [1,3,1058], [0,1059,1060,7,4], -[0,-5854], -[0,-14763,-14762,-14761,-3693,-94,-2649,-151,-14760,-763,-40,-3692,-32,-615,-530,-1161,-1007,-3972,-14759,-14758,-1132, --607,-14757,-14756,-71,-2,-14755], +[0,-4686], +[0,-4687,-4688,-4689,-4690,-528,-4691,-824,-4692,-957,-1077,-4693,-1168,-1174,-1197,-1212,-1244,-1251,-4694,-4695,-1632, +-1839,-4696,-4697,-2347,-2410,-4698], [1,3,1062], [0,1063,1064,1065,8], -[0,-193,-1560,-156,-14754,-28,-77,-60,-2648,-1716,-96,-1,-7,-16,-175,-551,-41,-5853,-5852,-833,-119,-1340,-200,-4,-3899, --1565,-14753,-14752,-59,-5851,-1840,-2844,-188,-11,-1811,-14751,-479,-14750,-427,-713,-799,-14749,-577,-5850,-1799,-596, --879,-14748,-21,-5849,-14747,-136,-14746,-181,-342,-161,-5848,-2865,-2647,-974,-140,-14745,-14744,-5847, --1273,-14743,-2147,-14742,-3803], -[0,-39,-14741,-146], -[0,-14740,-593,-37,-52,-184,-14739,-95,-2094,-46,-3691,-5846,-14738,-2149,-2646,-5845,-1277], +[0,-469,-864,-2359,-4699,-1107,-2162,-510,-4700,-4701,-2550,-932,-2125,-2177,-2334,-2536,-1004,-4702,-4703,-571,-679,-867, +-1376,-1942,-2199,-715,-4704,-4705,-633,-4706,-1354,-1633,-1729,-23,-1793,-4707,-47,-4708,-25,-305,-2232,-4709,-46,-4710, +-2104,-2433,-3194,-4711,-40,-4712,-4713,-41,-4714,-960,-2082,-32,-4715,-1458,-4716,-3077,-42,-4717,-4718,-4719, +-3408,-4720,-3362,-4721,-3398], +[0,-2322,-4722,-2234], +[0,-4723,-3116,-687,-3161,-3577,-4724,-3162,-4725,-3445,-4726,-4727,-4728,-3205,-4729,-4730,-3186], [1,3,1067], [0,0,1068,1069,9], -[0,-1,-2720,-5844,-14737,-1247,-5843,-5842,-2244,-230,-14736,-40,-1838,-14735,-311,-14734], -[0,-14733,-52,-14732,-961,-14731], +[0,-932,-3469,-4731,-4732,-4733,-4734,-4735,-768,-769,-4736,-1077,-1387,-4737,-2654,-4738], +[0,-4739,-3161,-4740,-3843,-4741], [1,3,1071], [0,1072,1073,1074,9], -[0,-464,-3948,-14730,-14729,-1528], -[0,-9,-6,-1109,-1,-14,-502,-17,-4,-14728,-35,-746,-2,-29,-5,-47,-5841,-14727,-3907,-14726,-14725,-49,-950,-87,-559,-14724, --415,-14723,-1005,-64,-266,-10,-226,-14722,-1246,-1081,-14721,-122,-12,-148,-25,-80,-2645,-1440,-1118,-319,-2093,-155, --19,-190,-14720,-5840,-14719,-63,-1715,-317,-2644,-6295,-62,-1020,-5839,-22,-3797,-14718, --2724], -[0,-6,-1109,-14717,-14716,-14715,-14714,-14713,-5838,-53], +[0,-1983,-1436,-4742,-4743,-1416], +[0,-1344,-2006,-2344,-932,-2127,-795,-2501,-1942,-4744,-2019,-2257,-2410,-3136,-3037,-3040,-4745,-4746,-2046,-4747,-4748, +-86,-4749,-3052,-2044,-4750,-2132,-4751,-1352,-969,-933,-958,-2140,-4752,-4753,-4754,-4755,-409,-940,-962,-967,-350, +-4756,-4757,-2113,-3267,-4758,-407,-428,-970,-4759,-4760,-4761,-351,-4762,-410,-4763,-2413,-3307,-935,-4764,-427,-3474, +-4765, +-3394], +[0,-2006,-2344,-4766,-4767,-4768,-4769,-4770,-4771,-3100], [1,3,1076], [0,1077,1078,1079,5], -[0,-1762,-5971,-1004,-322,-6334,-2808], -[0,-310,-11,-1097,-478,-14712,-1439,-5837,-330,-122,-5836,-317,-729,-5835,-3774,-14711,-5,-14710,-47,-87,-413,-22,-19, --201,-89,-5834,-1,-12,-1336,-500,-10,-148,-25,-64,-190,-40,-704,-79,-1147,-810,-188,-4,-3916,-6,-35,-7,-321,-44,-171, --153,-2,-2158,-3748,-30,-96], -[0,-322,-6,-5833,-1094,-3690,-2643,-1004,-529,-5832], +[0,-3117,-3901,-1359,-2074,-2079,-2112], +[0,-2832,-23,-3341,-262,-4772,-4773,-4774,-406,-409,-4775,-410,-4776,-4777,-3705,-4778,-3037,-4779,-3040,-3052,-3041,-427, +-428,-523,-928,-4780,-932,-940,-941,-956,-958,-962,-967,-969,-970,-1077,-1384,-1449,-1459,-1683,-1729,-1942,-1984,-2006, +-2019,-2125,-2214,-2387,-2391,-2392,-2410,-2924,-3924,-2469,-2550], +[0,-2074,-2006,-4781,-3481,-4782,-4783,-1359,-1361,-4784], [1,3,1081], [0,1082,1083,1084,4], -[0,-728,-14709,-824,-1245,-2642,-297,-323], -[0,-231,-63,-2092,-5831,-14,-130,-146,-2], -[0,-14,-107,-158,-370,-860,-407], +[0,-4785,-4786,-989,-4787,-4788,-1588,-1864], +[0,-4062,-351,-4789,-4790,-2127,-2231,-2234,-2410], +[0,-2127,-3862,-1764,-3209,-4791,-4792], [1,3,1086], [0,1087,1088,1089,10], -[0,-728,-1098,-326,-5830,-128], -[0,-11,-1095,-203,-80,-231,-1554,-14,-130,-5829], -[0,-14,-107,-430,-158,-370], +[0,-4785,-3200,-823,-4793,-2114], +[0,-23,-3412,-3326,-350,-4062,-922,-2127,-2231,-4794], +[0,-2127,-3862,-4795,-1764,-3209], [1,3,1091], [0,1092,1093,1094,4], -[0,-925,-156,-383,-104,-20,-206,-72,-1123,-89,-41,-14708,-1533,-747,-119,-14707,-14706,-14705,-14704,-649,-14703,-14702, --14701,-14700,-1893,-2641,-14699,-14698,-537,-14697,-2276,-478,-5929], -[0,-5828,-123,-6,-1,-7,-5827,-30,-4,-35,-736,-2,-1443,-5,-680,-18,-47,-413,-343,-3689,-257,-87,-120,-888,-14696,-64,-12, --148,-25,-19,-190,-900,-14695,-22,-859], -[0,-5827,-3731,-733,-1087,-14694,-547,-42], +[0,-653,-2359,-754,-2466,-668,-1111,-1650,-1872,-928,-1004,-4796,-1306,-2223,-679,-4797,-4798,-4799,-4800,-1461,-4801, +-4802,-4803,-4804,-263,-4805,-4806,-4807,-440,-4808,-264,-262,-4149], +[0,-4809,-2446,-2006,-932,-2125,-4810,-2469,-1942,-2019,-3628,-2410,-4198,-3037,-3738,-1534,-3040,-3041,-1772,-4811,-3617, +-3052,-2174,-2278,-4812,-969,-940,-962,-967,-428,-970,-1945,-4813,-427,-4814], +[0,-4810,-4158,-4165,-3816,-4815,-3960,-856], [1,3,1096], [0,1097,1098,1099,5], -[0,-6175,-5826,-1714,-1849,-486,-14693,-646,-74,-14692,-14691,-14690,-14689,-14688,-14687,-5825,-14686,-5824,-14685, --14684,-14683,-14682,-14681,-14680,-14679], -[0,-1244,-357,-3688,-949,-2732,-858,-915,-79,-6,-14678,-557,-104,-5823,-14677,-30,-3687,-3686,-14676,-14675], -[0,-129,-42,-681,-1243,-1082,-545,-74,-873], +[0,-2921,-4816,-4817,-1085,-3649,-4818,-1699,-2476,-4819,-4820,-4821,-4822,-4823,-4824,-4825,-4826,-4827,-4828,-4829, +-4830,-4831,-4832,-4833,-4834], +[0,-4835,-3983,-4836,-4837,-3250,-4838,-1313,-1449,-2006,-4839,-2318,-2466,-4840,-4841,-2469,-4842,-4843,-4844,-4845], +[0,-3095,-856,-3438,-4846,-4679,-4847,-2476,-3944], [1,3,1101], [0,1102,1103,1104,4], -[0,-3685,-486,-5825,-5824,-3686], -[0,-14674,-14673,-14672,-1164,-104,-30,-259,-6550,-3687], -[0,-99,-42,-1164,-681,-545], +[0,-4848,-3649,-4825,-4827,-4843], +[0,-4849,-4850,-4851,-1030,-2466,-2469,-2548,-353,-4842], +[0,-3690,-856,-1030,-3438,-4847], [1,3,1106], [0,1107,1108,1109,4], -[0,-5822,-5821,-5820,-326,-6215,-5819], -[0,-5818,-14671,-14670,-14669,-14668,-14667,-109,-257,-5817,-69,-201,-168,-43,-26,-41,-1531,-3,-5816,-2193,-1110,-33,-2], -[0,-544,-91,-1438,-1437,-857,-5815,-5814,-5813,-5812,-456,-102,-53,-192,-6,-74,-591,-543,-75,-61], +[0,-4852,-4853,-4854,-823,-2792,-4855], +[0,-4856,-4857,-4858,-4859,-4860,-4861,-3035,-3617,-4862,-3621,-523,-617,-652,-767,-1004,-1323,-1654,-4863,-1970,-2253, +-2379,-2410], +[0,-4864,-4865,-4866,-4867,-4868,-4869,-4870,-4871,-4872,-4043,-3160,-3100,-475,-2006,-2476,-3440,-4873,-4004,-3634], [1,3,1111], [0,1112,1113,1114,10], -[0,-5822,-5821,-5820,-14666,-326,-5819], -[0,-5818,-69,-5811,-14665,-5810,-5809,-5808,-201,-43,-26,-3,-5816,-14664,-1110,-1242], -[0,-544,-91,-1438,-1437,-857,-5815,-5814,-5813,-5812,-456,-102,-53,-591,-543,-75,-61,-1242,-14663,-14662], +[0,-4852,-4853,-4854,-4874,-823,-4855], +[0,-4856,-3621,-4875,-4876,-4877,-4878,-4879,-523,-652,-767,-1654,-4863,-4880,-2253,-4881], +[0,-4864,-4865,-4866,-4867,-4868,-4869,-4870,-4871,-4872,-4043,-3160,-3100,-3440,-4873,-4004,-3634,-4881,-4882,-4883], [1,3,1116], [0,1117,1118,7,4], -[0,-3684], -[0,-5807,-5806,-5805,-3683,-14661,-89,-9,-79,-18,-3,-15,-4], +[0,-4884], +[0,-4885,-4886,-4887,-4888,-4889,-928,-1344,-1449,-1534,-1654,-1788,-1942], [1,3,1120], [0,1121,1122,1123,4], -[0,-6,-35,-2705,-2936,-2640,-14660,-14659], -[0,-104,-6,-3883,-1505,-5804,-35,-515,-2,-2104,-2811,-47,-5803,-2142,-486,-6214,-2848,-728,-6059,-6333], -[0,-390,-42,-746,-5802,-5801,-14658,-14657,-100,-14656,-2091,-2639,-129,-127,-6,-74,-192,-220,-1713], +[0,-2006,-2019,-3654,-261,-4890,-4891,-4892], +[0,-2466,-2006,-2361,-1885,-4893,-2019,-3517,-2410,-4228,-2089,-3040,-4894,-3523,-3649,-2795,-1606,-4785,-3525,-2085], +[0,-3671,-856,-2257,-4895,-4896,-4897,-4898,-1599,-4899,-4900,-4901,-3095,-3098,-2006,-2476,-475,-2299,-4902], [1,3,1125], [0,1126,1127,110,6], -[0,-3682,-5800,-2740,-5799,-90,-1738,-2938,-14655,-2937,-4053,-14654,-14653,-14652,-5798,-14651,-14650,-2256,-14649,-267, --832,-574,-14648,-14647,-1241,-14646,-3681,-14645,-14644,-14643,-5797,-5796,-14642,-6137,-14641,-14640,-14639,-14638, --5795,-2090,-14637,-14636,-14635,-5794,-14634,-14633,-14632,-14631,-3914,-14630,-14629,-14628,-2638,-14627,-2192,-2637, --14626,-5793,-14625,-1303,-1120,-14624,-14623,-14622, --2812,-2089,-1109,-1788], -[0,-2742,-11,-3680,-14621,-2278,-1088,-3679,-3678,-1439,-965,-1440,-1715,-2644,-1081,-5792,-14620,-14619,-950,-5840,-5791, --330,-155,-122,-317,-3677,-29,-1712,-3676,-2636,-1711,-142,-963,-14618,-2088,-47,-14617,-1764,-87,-3675,-5790,-14616, --3674,-1436,-22,-19,-3673,-3672,-14615,-98,-5789,-20,-238,-26,-2087,-1559,-5788,-1264,-1,-266,-12,-251,-923,-10, --145,-148,-214,-64,-190,-2645,-150,-229,-2635,-40,-348,-28,-419,-9,-1005,-1004,-3956,-200,-2868,-8,-1710,-1528,-176,-816, --1435,-2634,-249,-79,-3671,-2152,-18,-23,-1709,-1130,-149,-4,-2821,-695,-440,-361,-464,-3670,-2633,-3669,-6,-2817,-2816, --2815,-35,-2744,-2632,-3668,-3667,-3666,-559,-3665,-14614,-274,-147,-2631,-2086,-14613,-16,-600, --321,-179,-3664,-3663,-558,-2630,-5787,-175,-33,-124,-2,-2629,-520,-1708,-14612], +[0,-4903,-4904,-3165,-4905,-44,-3946,-195,-4906,-196,-197,-4907,-4908,-4909,-4910,-4911,-4912,-595,-4913,-682,-747,-809, +-4914,-4915,-4916,-4917,-4918,-4919,-4920,-4921,-4922,-4923,-4924,-3123,-4925,-4926,-4927,-4928,-4929,-4930,-4931,-4932, +-4933,-4934,-4935,-4936,-4937,-4938,-2002,-4939,-4940,-4941,-4942,-4943,-2003,-4944,-4945,-4946,-4947,-2004,-2013,-4948, +-4949,-4950, +-2053,-4951,-2344,-2345], +[0,-3139,-23,-4952,-4953,-162,-3778,-4954,-4955,-4773,-3562,-4757,-4762,-4763,-4754,-4956,-4957,-4958,-4749,-4760,-4959, +-406,-407,-409,-410,-4960,-3136,-4961,-4962,-4963,-4964,-3044,-3803,-4965,-4966,-3040,-4967,-3087,-3052,-4968,-4969, +-4970,-4971,-4972,-427,-428,-4973,-4974,-4975,-534,-4976,-668,-674,-767,-4977,-881,-4978,-3808,-932,-933,-940,-948,-952, +-958, +-959,-962,-963,-969,-970,-4756,-978,-1026,-4979,-1077,-1103,-1107,-1339,-1344,-1352,-1359,-1360,-1376,-1404,-1415,-4980, +-1416,-1419,-1421,-4981,-4982,-1437,-1449,-4983,-3134,-1534,-1548,-4984,-1662,-1805,-1942,-1943,-1950,-1955,-1959,-1983, +-4985,-4986,-4987,-2006,-2012,-2016,-2017,-2019,-3051,-4988,-4989,-4990,-4991,-2044,-4992,-4993,-2093,-2094,-4994,-4995, +-4996,-2177,-2205, +-2214,-2281,-4997,-4998,-2282,-4999,-5000,-2334,-2379,-2402,-2410,-5001,-2502,-5002,-5003], [1,3,1129], [0,1130,166,111,4], -[0,-5786,-5785,-5784,-3662,-2763,-5783,-1849,-23,-5782,-3661,-1107,-123], +[0,-5004,-5005,-5006,-5007,-2741,-5008,-1085,-1548,-5009,-5010,-2355,-2446], [1,3,1132], [0,1133,166,111,5], -[0,-5786,-5785], +[0,-5004,-5005], [1,3,1135], [0,1136,1137,111,4], -[0,-5784,-3662,-2763,-5783,-14600,-1849,-759,-23,-14599,-188,-5782,-14598,-3661,-1107,-123], -[0,-2627,-142,-5,-2628,-680,-51,-215,-65,-4,-5781,-211,-33,-3660,-196,-1289,-2,-17,-92,-1780], +[0,-5006,-5007,-2741,-5008,-5025,-1085,-1343,-1548,-5026,-1729,-5009,-5027,-5010,-2355,-2446], +[0,-5028,-3044,-3037,-5011,-3738,-519,-865,-1771,-1942,-5012,-2376,-2379,-5013,-2388,-2389,-2410,-2501,-2503,-2509], [1,3,1139], [0,1140,1141,1142,6], -[0,-55], -[0,-366,-2626,-2625,-1,-12,-115,-2886,-220,-2,-83], -[0,-1,-353,-2085,-220], +[0,-1110], +[0,-50,-5029,-5030,-932,-940,-965,-975,-2299,-2410,-2411], +[0,-932,-727,-5031,-2299], [1,3,1144], [0,1145,1146,1147,5], -[0,-1762,-5780,-2624,-208,-352,-2084,-3659,-495,-297,-2083,-1707,-2739,-748], -[0,-1240,-357,-1582,-3658,-5,-2738,-5779,-14,-220,-2784,-2,-104,-30], -[0,-52,-5778,-220,-3827,-104], +[0,-3117,-5032,-5033,-461,-743,-5034,-5035,-1496,-1588,-5036,-5037,-3169,-2213], +[0,-5038,-3983,-365,-5039,-3037,-3172,-5040,-2127,-2299,-2301,-2410,-2466,-2469], +[0,-3161,-5041,-2299,-3176,-2466], [1,3,1149], [0,1150,1151,1152,5], -[0,-2082,-3855,-326,-297,-14597], -[0,-77,-104,-220,-162], -[0,-2623,-14596,-104,-220], +[0,-5042,-2814,-823,-1588,-5043], +[0,-2162,-2466,-2299,-3198], +[0,-5044,-5045,-2466,-2299], [1,3,1154], [0,1155,1156,1157,5], -[0,-11,-14595,-21,-136,-140,-2160,-14594,-5777], -[0,-98,-1133,-438,-17], -[0,-5776,-256,-6,-17,-3657], +[0,-23,-5046,-40,-41,-42,-2699,-5047,-5048], +[0,-534,-1626,-2437,-2501], +[0,-5049,-3839,-2006,-2501,-5050], [1,3,1159], [0,1160,1161,1162,5], -[0,-14593,-3656], -[0,-3655,-14592,-26,-2], -[0,-5775,-14591,-292,-2,-5774,-17,-3654], +[0,-5051,-5052], +[0,-5053,-5054,-767,-2410], +[0,-5055,-5056,-525,-2410,-5057,-2501,-5058], [1,3,1164], [0,1165,1166,1167,5], -[0,-476,-790], -[0,-28,-32,-8,-77,-7,-38,-4,-660,-1537,-179,-2879,-2,-5,-160,-1538,-901,-2790,-5773,-14590,-14589,-14588], -[0,-432,-127,-1713,-2622,-2081,-369,-5953,-102,-53], +[0,-620,-2997], +[0,-1107,-1168,-1415,-2162,-2125,-1889,-1942,-749,-1248,-2281,-1232,-2410,-3037,-518,-1238,-1930,-2285,-5059,-5060,-5061, +-5062], +[0,-3754,-3098,-4902,-5063,-5064,-3482,-4012,-3160,-3100], [1,3,1169], [0,0,37,1170,10], -[0,-1706,-5772,-5771,-14587,-2621,-5770,-14586,-53,-2,-45,-3653,-3652,-5769,-14585,-14584,-14583,-3651,-14582,-14581, --14580,-14579,-5768,-14578], +[0,-5065,-5066,-5067,-5068,-5069,-5070,-5071,-3100,-2410,-3214,-5072,-5073,-5074,-5075,-5076,-5077,-5078,-5079,-5080, +-5081,-5082,-5083,-5084], [1,3,1172], [0,141,142,143,4], [1,3,1174], [0,1175,1176,1177,9], -[0,-90,-924,-44], -[0,-11,-173,-21,-140,-283,-48,-357,-203,-80,-63,-232,-204,-3650,-5,-22,-19,-355,-1,-12,-2080,-1705,-2620,-2079,-343,-4, --14,-2619,-395,-5767,-2], -[0,-255,-31,-1704,-1703,-45,-14577,-256,-2], +[0,-44,-737,-2387], +[0,-23,-38,-40,-42,-3244,-190,-3983,-3326,-350,-351,-3561,-3266,-5085,-3037,-427,-428,-539,-932,-940,-5086,-5087,-5088, +-5089,-1772,-1942,-2127,-5090,-2200,-5091,-2410], +[0,-5092,-3264,-5093,-5094,-3214,-5095,-3839,-2410], [1,3,1179], [0,167,1180,7,4], -[0,-122,-5836,-47,-87,-537,-618,-343,-6,-35,-1100,-14575,-5766], +[0,-409,-4775,-3040,-3052,-440,-757,-1772,-2006,-2019,-2965,-5097,-5098], [1,3,1182], [0,167,1183,1184,5], -[0,-220,-2785,-3828,-2886,-14574,-19,-5766,-1582], -[0,-14573,-676,-220], +[0,-2299,-2300,-3170,-975,-5099,-428,-5098,-365], +[0,-5100,-5101,-2299], [1,3,1186], [0,1187,1188,1189,4], -[0,-14572], -[0,-14571,-29,-22,-14570,-1,-2236,-14569,-12,-25,-67,-8,-176,-2866,-166,-701,-57,-211,-2], -[0,-14568,-14567,-14566,-14565,-1702,-53,-337,-2153], +[0,-5102], +[0,-5103,-3136,-427,-5104,-932,-936,-5105,-940,-967,-968,-1415,-1419,-1441,-1446,-1637,-2375,-2376,-2410], +[0,-5106,-5107,-5108,-5109,-5110,-3100,-3323,-3105], [1,3,1191], [0,1192,1193,1194,5], -[0,-90,-330], -[0,-502,-2,-1434,-65], -[0,-61,-502,-102,-255,-857,-727,-1437,-1438], +[0,-44,-406], +[0,-795,-2410,-5111,-1771], +[0,-3634,-795,-3160,-5092,-4868,-5112,-4867,-4866], [1,3,1196], [0,1197,1198,1199,4], -[0,-1709,-1433,-164,-695,-90,-538,-3649,-5765], -[0,-79,-2,-1434,-305,-1183,-3648,-155,-5764,-14564], -[0,-61,-102,-255,-79,-388,-857,-727,-1437,-1438], +[0,-4984,-5113,-1863,-1950,-44,-22,-5114,-5115], +[0,-1449,-2410,-5111,-635,-658,-5116,-407,-5117,-5118], +[0,-3634,-3160,-5092,-1449,-5119,-4868,-5112,-4867,-4866], [1,3,1201], [0,1202,1203,1204,4], -[0,-3647,-1433,-1774,-164,-2941,-5765], -[0,-79,-350,-14,-30,-2,-1434,-1239,-695,-3646,-80,-5764,-5763], -[0,-61,-255,-8,-79], +[0,-5120,-5113,-2745,-1863,-28,-5115], +[0,-1449,-1001,-2127,-2469,-2410,-5111,-5121,-1950,-5122,-350,-5117,-5123], +[0,-3634,-5092,-1415,-1449], [1,3,1206], [0,1207,1208,1209,10], -[0,-20,-3647,-913,-695,-3645], -[0,-8,-9,-6,-1,-4,-50,-503,-2,-11,-29,-47,-441,-234,-90,-120,-2151,-286,-14563,-298,-1765,-6131,-1760,-14562], -[0,-61,-5762,-8,-234], +[0,-668,-5120,-1418,-1950,-5124], +[0,-1415,-1344,-2006,-932,-1942,-21,-720,-2410,-23,-3136,-3040,-1952,-2034,-44,-2174,-3141,-2052,-5125,-796,-3081,-3153, +-3156,-5126], +[0,-3634,-5127,-1415,-2034], [1,3,1211], [0,39,1212,1213,5], -[0,-330,-155,-47,-87,-20,-5761,-913,-1434,-343,-6,-35,-7,-2], -[0,-61,-6,-102,-255,-79,-388,-857,-727,-1437,-1438], +[0,-406,-407,-3040,-3052,-668,-5128,-1418,-5111,-1772,-2006,-2019,-2125,-2410], +[0,-3634,-2006,-3160,-5092,-1449,-5119,-4868,-5112,-4867,-4866], [1,3,1215], [0,0,1216,1217,4], -[0,-569,-79,-6,-350,-89,-33,-1432,-35,-1774,-2,-1434,-47,-3648,-14561,-2079,-5760,-1705,-14560,-330,-5759,-2080,-122, --14559,-2620,-155,-5758,-14558,-2135,-251,-14557], -[0,-14556,-14555,-6,-61], +[0,-1392,-1449,-2006,-1001,-928,-2379,-5129,-2019,-2745,-2410,-5111,-3040,-5116,-5130,-5089,-5131,-5087,-5132,-406,-5133, +-5086,-409,-5134,-5088,-407,-5135,-5136,-3626,-948,-5137], +[0,-5138,-5139,-2006,-3634], [1,3,1219], [0,1220,0,1221,6], -[0,-3701,-3644,-4038,-6542,-4037,-6541,-6540], -[0,-675,-434,-46,-105,-52,-99], +[0,-4603,-5140,-412,-417,-418,-419,-420], +[0,-5141,-3122,-3445,-1334,-3161,-3690], [1,3,1223], [0,0,0,1224,9], -[0,-675,-453,-512,-111,-46,-352], +[0,-5141,-4601,-4602,-3578,-3445,-743], [1,3,1226], [0,0,0,1227,11], -[0,-675,-453,-512,-111,-46,-856,-352], +[0,-5141,-4601,-4602,-3578,-3445,-5142,-743], [1,3,1229], [0,1230,1231,168,4], -[0,-5757], -[0,-43,-153,-9,-2,-5,-2270,-320,-49,-5756,-62], +[0,-5143], +[0,-652,-2392,-1344,-2410,-3037,-411,-2581,-86,-5144,-3307], [1,3,1233], [0,0,0,1234,6], -[0,-675,-453,-512,-111,-46,-922], +[0,-5141,-4601,-4602,-3578,-3445,-990], [1,3,1236], [0,0,0,1237,9], -[0,-675,-453,-512,-111,-46,-14554,-5755,-2618], +[0,-5141,-4601,-4602,-3578,-3445,-5145,-5146,-5147], [1,3,1239], [0,1240,0,1241,4], -[0,-6543], -[0,-675,-453,-512,-111,-46,-3643,-2869,-2078,-1080], +[0,-416], +[0,-5141,-4601,-4602,-3578,-3445,-5148,-1389,-5149,-5150], [1,3,1243], [0,1244,0,1245,6], -[0,-3701,-14553,-6538,-6537], -[0,-675,-453,-512,-111,-46,-2096,-113], +[0,-4603,-5151,-422,-423], +[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105], [1,3,1247], [0,1248,0,1249,4], -[0,-5757,-261,-14552,-4038,-6546,-6249,-4037,-6539], -[0,-675,-453,-512,-111,-46,-1249], +[0,-5143,-1640,-5152,-412,-413,-2701,-418,-421], +[0,-5141,-4601,-4602,-3578,-3445,-4616], [1,3,1251], [0,169,0,1252,8], -[0,-675,-453,-512,-111,-46,-434], +[0,-5141,-4601,-4602,-3578,-3445,-3122], [1,3,1254], [0,1255,0,1256,5], -[0,-261,-6544,-5754], -[0,-675,-453,-512,-111,-46,-1249,-802,-5864], +[0,-1640,-415,-5153], +[0,-5141,-4601,-4602,-3578,-3445,-4616,-2178,-4618], [1,3,1258], [0,1259,0,1260,9], -[0,-261,-5754], -[0,-675,-453,-512,-111,-46,-2096,-113,-981,-45], +[0,-1640,-5153], +[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105,-2401,-3214], [1,3,1262], [0,0,0,1263,6], -[0,-675,-453,-512,-111,-46,-2096,-113,-195,-5753,-676], +[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105,-2435,-5154,-5101], [1,3,1265], [0,0,0,77,5], [1,3,1267], [0,1268,0,1269,9], -[0,-14551,-14550,-14549,-1691,-44], -[0,-14548,-1690,-46,-1234,-5752,-99], +[0,-5190,-5191,-5192,-5193,-2387], +[0,-5194,-5195,-3445,-5196,-5197,-3690], [1,3,1271], [0,1272,1273,1274,11], -[0,-469,-3642,-2059,-839,-2617,-3641,-5751,-1752], -[0,-193,-228,-30,-4,-5750,-408,-47,-1137,-2616,-340,-633,-103,-908,-3640,-2615,-14547], -[0,-1,-334,-368,-2], +[0,-1353,-5198,-5199,-429,-5200,-5201,-5202,-3331], +[0,-469,-1610,-2469,-1942,-5203,-4251,-3040,-1605,-5204,-2429,-4049,-3664,-1618,-5205,-5206,-5207], +[0,-932,-5208,-3784,-2410], [1,3,1276], [0,1277,112,1278,6], -[0,-36,-1450,-5751,-1752,-2614], -[0,-360,-338,-45,-2,-73,-389,-1], +[0,-812,-3782,-5202,-3331,-5209], +[0,-3272,-3217,-3214,-2410,-3215,-4132,-932], [1,3,1280], [0,1281,112,1282,5], -[0,-1450,-769,-1752,-2614], -[0,-1,-2,-2613], +[0,-3782,-189,-3331,-5209], +[0,-932,-2410,-5210], [1,3,1284], [0,1285,1286,1287,8], -[0,-4055,-1894,-14546,-267,-5749,-14545,-1865,-14544,-14543,-1006,-23,-5748,-236,-121,-14542,-5797,-14541,-5795,-5794, --3914,-1303,-1495,-3666,-691,-1118,-1492,-595,-14540], -[0,-50,-11,-216,-622,-173,-480,-21,-136,-140,-49,-62,-155,-122,-2155,-2612,-142,-5747,-47,-87,-22,-19,-14539,-2611,-201, --94,-86,-98,-14538,-1888,-14537,-14536,-503,-14535,-144,-298,-445,-1022,-1772,-1,-64,-190,-277,-40,-346,-9,-8,-14534, --1435,-14533,-18,-377,-907,-2199,-4,-693,-6,-35,-2813,-286,-134,-154,-179,-2154, --14532,-14531,-3639,-2,-1105,-438,-17,-520,-92], -[0,-6,-108,-129,-127,-53,-14530], +[0,-161,-163,-5211,-682,-5212,-5213,-906,-5214,-5215,-1311,-1548,-5216,-1666,-1967,-5217,-4922,-5218,-4929,-4934,-2002, +-2004,-2030,-4991,-2055,-2113,-2192,-2489,-5219], +[0,-21,-23,-26,-33,-38,-39,-40,-41,-42,-86,-3307,-407,-409,-3059,-5220,-3044,-5221,-3040,-3052,-427,-428,-5222,-5223,-523, +-528,-533,-534,-5224,-540,-5225,-5226,-720,-5227,-778,-796,-915,-916,-2760,-932,-969,-970,-1041,-1077,-1331,-1344,-1415, +-5228,-4981,-5229,-1534,-1643,-1667,-1814,-1942,-2000,-2006,-2019,-2049,-2052,-2251,-2275,-2281,-3085, +-5230,-5231,-5232,-2410,-2417,-2437,-2501,-2502,-2503], +[0,-2006,-3159,-3095,-3098,-3100,-5233], [1,3,1289], [0,1290,0,170,5], -[0,-304,-3948,-23,-646,-14529,-1475,-14528,-14527,-14526,-14525,-14524,-705,-5746,-5745,-14523,-14522,-5744,-5743], +[0,-703,-1436,-1548,-1699,-5234,-2650,-5235,-5236,-5237,-5238,-5239,-1320,-5240,-5241,-5242,-5243,-5244,-5245], [1,3,1292], [0,171,0,1293,5], -[0,-3638,-14519,-435,-1483,-1689,-1688,-6,-108,-129,-127,-102,-24,-1430,-1429,-52,-184,-53], +[0,-5248,-5249,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], [1,3,1295], [0,1296,0,1297,4], -[0,-14518], -[0,-741,-14517,-435,-1483,-1689,-1688,-6,-108,-129,-127,-102,-24,-1430,-1429,-52,-184,-53], +[0,-5254], +[0,-3167,-5255,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], [1,3,1299], [0,171,0,1300,4], -[0,-336,-14516,-435,-1483,-1689,-1688,-6,-108,-129,-127,-102,-24,-1430,-1429,-52,-184,-53], +[0,-3962,-5256,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], [1,3,1302], [0,1303,0,1304,8], -[0,-5742,-4035], -[0,-14515,-14514,-435,-1483,-1689,-1688,-6,-108,-129,-127,-102,-24,-1430,-1429,-52,-184,-53], +[0,-5257,-436], +[0,-5258,-5259,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], [1,3,1306], [0,0,0,1307,6], -[0,-674,-14513,-435,-1483,-1689,-1688,-6,-108,-129,-127,-102,-24,-1430,-1429,-52,-184,-53], +[0,-5260,-5261,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], [1,3,1309], [0,1310,1311,1312,5], -[0,-464,-383,-41,-981,-384,-5741,-2058,-14512,-3637,-6532], -[0,-8,-16,-57,-125,-86,-2,-11,-1443,-29,-5,-14511,-320,-257,-14510,-954,-735,-6018], -[0,-14509,-53,-484,-282,-333,-6075,-1428], +[0,-1983,-754,-1004,-2401,-724,-5262,-5263,-5264,-5265,-442], +[0,-1415,-2177,-2375,-2293,-533,-2410,-23,-4198,-3136,-3037,-5266,-2581,-3617,-5267,-4203,-3732,-3697], +[0,-5268,-3100,-5269,-5270,-5271,-3441,-5272], [1,3,1314], [0,1315,1316,1317,4], -[0,-3636,-14508,-14507,-14506,-5740,-14505,-14504,-14503], -[0,-81,-153,-171,-104,-9,-1,-7,-5739,-30,-89,-38,-459,-179,-3931,-398,-14502,-321,-2783,-2,-5,-18,-65,-47,-14501,-14500, --320,-5738,-1079,-1489,-14499,-14498,-14497,-83,-14496,-103,-5737,-310,-14495,-14494,-558,-5736,-1469,-673,-5735,-5734, --2630], -[0,-1706,-5733,-14493,-5732,-14492,-14491,-14490,-14489,-14488,-5771,-14487,-14486,-14485,-14484,-14483,-2621,-14482,-53, --2,-14481,-14480,-14479,-2610,-2609,-3653,-3652,-5769,-14478,-14477,-5768], +[0,-5273,-5274,-5275,-5276,-5277,-5278,-5279,-5280], +[0,-2384,-2392,-2391,-2466,-1344,-932,-2125,-5281,-2469,-928,-1889,-2910,-2281,-1747,-1874,-5282,-2214,-2302,-2410,-3037, +-1534,-1771,-3040,-5283,-5284,-2581,-5285,-5286,-2284,-5287,-5288,-5289,-2411,-5290,-3664,-5291,-2832,-5292,-5293,-2282, +-5294,-2970,-5295,-5296,-5297,-4999], +[0,-5065,-5298,-5299,-5300,-5301,-5302,-5303,-5304,-5305,-5067,-5306,-5307,-5308,-5309,-5310,-5069,-5311,-3100,-2410, +-5312,-5313,-5314,-5315,-5316,-5072,-5073,-5074,-5317,-5318,-5083], [1,3,1319], [0,1320,1321,1322,5], -[0,-159,-1790,-11,-305,-297,-21,-342,-5731,-2729,-2728,-6088,-6087], -[0,-1245,-104,-208,-371,-164], -[0,-53,-104,-2623,-4034], +[0,-753,-2314,-23,-635,-1588,-40,-2082,-5319,-3343,-3344,-3370,-3377], +[0,-4787,-2466,-461,-2892,-1863], +[0,-3100,-2466,-5044,-439], [1,3,1324], [0,1325,1326,1327,6], -[0,-11,-14476,-5730,-2057,-729,-692], -[0,-2608,-6,-35,-975,-371], -[0,-292,-5729,-6,-692,-104,-2623], +[0,-23,-5320,-5321,-5322,-4776,-2041], +[0,-5323,-2006,-2019,-2923,-2892], +[0,-525,-5324,-2006,-2041,-2466,-5044], [1,3,1329], [0,1330,1331,1332,5], -[0,-839,-229,-83,-979], -[0,-2056,-5,-1,-825,-118,-2055,-4,-153,-2,-30,-74], -[0,-74,-14475,-14474,-1,-2], +[0,-429,-1026,-2411,-2478], +[0,-5325,-3037,-932,-980,-999,-5326,-1942,-2392,-2410,-2469,-2476], +[0,-2476,-5327,-5328,-932,-2410], [1,3,1334], [0,1335,1336,1337,10], -[0,-193,-837,-2607,-652,-14473,-563,-434,-396,-3635,-3798,-259], -[0,-41,-3,-97,-125], -[0,-41,-681,-545,-42], +[0,-469,-470,-5329,-1335,-5330,-1851,-3122,-2187,-5331,-3434,-2548], +[0,-1004,-1654,-2250,-2293], +[0,-1004,-3438,-4847,-856], [1,3,1339], [0,1340,1341,113,5], -[0,-3634,-3633,-965,-252,-246,-408,-2606,-2605,-2604,-3632,-267,-2603,-5728,-832,-326,-3631,-829,-1687,-2602,-2601,-486, --1472,-1843,-2223,-760,-3630,-818,-1530,-2054,-101,-1824,-2600,-2053,-1314,-562,-1730,-3629,-440,-693,-2090,-2638,-2192, --2637,-1303,-1120,-1100,-1803,-5727,-3628,-1801,-3627,-750,-2052,-864,-521,-601,-804,-77,-1743,-2599,-2598,-133,-340, --1078,-195,-3626,-483,-3625], -[0,-49,-62,-2134,-3624,-2051,-411,-3623,-5,-1686,-963,-47,-1764,-87,-3622,-3621,-5726,-1,-2654,-229,-822,-2597,-3620,-9, --18,-4,-1122,-900,-6,-35,-179,-33,-2,-30,-2050,-5725], +[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5339,-5340,-747,-823,-5341,-909,-5342,-5343,-5344, +-3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, +-4942,-2003,-4944,-2004,-2013,-2965,-2028,-5350,-5351,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5354, +-5355,-2427,-2429, +-5356,-2435,-5357,-5358,-5359], +[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3803,-3040,-3087,-3052,-5364,-5365,-5366,-932,-4597,-1026,-1031, +-5367,-5368,-1344,-1534,-1942,-1944,-1945,-2006,-2019,-2281,-2379,-2410,-2469,-5369,-5370], [0,0,0,7,9], [1,3,1344], [0,0,1345,1346,4], -[0,-5,-22,-19,-1,-191,-10,-7,-14,-301,-2], -[0,-46,-14472,-3618,-1685,-3617,-14471,-3616], +[0,-3037,-427,-428,-932,-934,-958,-2125,-2127,-2142,-2410], +[0,-3445,-5373,-5374,-5375,-5376,-5377,-5378], [1,3,1348], [0,1349,1350,1351,4], -[0,-14470], -[0,-11,-391,-21,-178,-3615,-14469,-69,-5,-293,-152,-3614,-1,-78,-139,-612,-212,-14468,-1145,-189,-755,-3,-65,-15,-608,-7, --14,-273,-5724,-463,-341,-1298,-1297,-5723,-33,-14467,-2], -[0,-632,-1077,-783,-422,-14466,-3613,-14465,-14464,-3612,-2596,-672], +[0,-5379], +[0,-23,-3204,-40,-43,-5380,-5381,-3621,-3037,-507,-708,-5382,-932,-1471,-1475,-1476,-1479,-5383,-1480,-1482,-1486,-1654, +-1771,-1788,-1810,-2125,-2127,-2128,-5384,-2131,-2137,-2139,-2141,-5385,-2379,-5386,-2410], +[0,-5387,-5388,-5389,-997,-5390,-5391,-5392,-5393,-5394,-5395,-5396], [1,3,1353], [0,1354,172,1355,5], -[0,-344,-2595], -[0,-1427,-5722,-5721,-1191], +[0,-1641,-5397], +[0,-5398,-5399,-5400,-459], [1,3,1357], [0,1358,114,1359,5], -[0,-60,-116,-23,-376,-690], -[0,-332,-4033,-111], +[0,-510,-615,-1548,-1671,-2071], +[0,-5401,-460,-3578], [1,3,1361], [0,1362,0,7,10], -[0,-208], +[0,-461], [1,3,1364], [0,1365,1366,1367,8], -[0,-201,-20,-58,-1855,-40,-200,-324,-14463,-600], -[0,-80,-231,-63,-204,-14462,-185,-14461,-2156,-5,-7,-14,-870,-3611,-301,-3639,-44,-196,-2], -[0,-37,-6531,-74,-6,-1684,-2594,-2,-335], +[0,-523,-668,-719,-1039,-1077,-1376,-1816,-5402,-2205], +[0,-350,-4062,-351,-3266,-5403,-3048,-5404,-3049,-3037,-2125,-2127,-4063,-5405,-2142,-5232,-2387,-2388,-2410], +[0,-687,-463,-2476,-2006,-5406,-5407,-2410,-3967], [1,3,1369], [0,0,1370,1371,4], -[0,-13,-470,-3,-4,-7], -[0,-855,-1131,-1426,-1787], +[0,-664,-1351,-1654,-1942,-2125], +[0,-5408,-1636,-5409,-2432], [1,3,1373], [0,0,27,1374,5], -[0,-14460,-838,-1683,-3610,-5720], +[0,-5410,-465,-5411,-5412,-5413], [1,3,1376], [0,1377,1378,1379,8], -[0,-5719,-14459,-36,-14458,-1464], -[0,-162,-14457,-2710,-5,-103,-27,-33,-153,-30], -[0,-1425,-14456,-1177,-3609,-982,-456], +[0,-5414,-5415,-812,-5416,-3222], +[0,-3198,-5417,-3620,-3037,-3664,-2210,-2379,-2392,-2469], +[0,-5418,-5419,-763,-5420,-2166,-4043], [0,44,15,16,6], [1,3,1382], [0,1383,1384,1385,4], -[0,-14455,-14454,-14453,-59,-14452,-384,-36,-5705,-5704,-41,-5703,-5702,-614,-3592,-101,-5701,-5700,-14451,-88,-14450, --14449,-14448,-197,-14447,-1112,-749,-14446,-14445,-14444,-123,-744], -[0,-14443,-26,-1535,-15,-5699,-97,-39,-372], -[0,-768,-91,-1233,-85,-39,-61], +[0,-5450,-5451,-5452,-633,-5453,-724,-812,-5454,-5455,-1004,-5456,-5457,-1336,-5458,-1442,-5459,-5460,-5461,-1646,-5462, +-5463,-5464,-2062,-5465,-2188,-2194,-5466,-5467,-5468,-2446,-2491], +[0,-5469,-767,-1274,-1788,-5470,-2250,-2322,-2331], +[0,-468,-4865,-5471,-2319,-2322,-3634], [1,3,1387], [0,1388,1389,1390,5], -[0,-1017,-14442,-5698,-3591], -[0,-5697,-80,-231,-63,-319,-109,-69,-5,-14441,-22,-19,-837,-59,-13,-26,-574,-14440,-1,-12,-28,-9,-5696,-3949,-1001,-5695, --78,-139,-189,-18,-3,-14439,-188,-15,-4,-14438,-14,-226,-33,-3590,-2,-14437], -[0,-1253,-318,-437,-409,-814,-650,-5694,-14436], +[0,-1025,-5472,-5473,-5474], +[0,-5475,-350,-4062,-351,-3267,-3035,-3621,-3037,-5476,-427,-428,-470,-633,-664,-767,-809,-5477,-932,-940,-1107,-1344, +-5478,-1430,-1440,-5479,-1471,-1475,-1482,-1534,-1654,-5480,-1729,-1788,-1942,-5481,-2127,-2140,-2379,-5482,-2410,-5483], +[0,-4182,-4058,-2451,-3926,-1463,-1456,-5484,-5485], [1,3,1392], [0,1393,1394,1395,4], -[0,-193], -[0,-5697,-29,-5,-22,-19,-193,-1,-12,-9,-8,-5695,-18,-4,-57,-2], -[0,-14435,-2685,-550,-409], +[0,-469], +[0,-5475,-3136,-3037,-427,-428,-469,-932,-940,-1344,-1415,-5479,-1534,-1942,-2375,-2410], +[0,-5486,-3815,-3276,-3926], [0,45,15,16,10], [1,3,1398], [0,34,1399,1400,6], -[0,-565,-5693], -[0,-6529], +[0,-1813,-5487], +[0,-472], [1,3,1402], [0,1403,1404,1405,4], -[0,-14434,-3879], -[0,-14433,-3,-15,-112], -[0,-14432,-14431,-14430], +[0,-5488,-2438], +[0,-5489,-1654,-1788,-2416], +[0,-5490,-5491,-5492], [1,3,1407], [0,0,1408,1409,6], -[0,-77], -[0,-24,-77,-102,-636,-184,-631,-14429], +[0,-2162], +[0,-775,-2162,-3160,-3576,-3577,-5493,-5494], [1,3,1411], [0,0,0,173,5], [1,3,1413], [0,0,0,1414,5], -[0,-192,-52,-91,-485,-1682], +[0,-475,-3161,-4865,-5176,-5495], [1,3,1416], [0,1417,0,1418,5], -[0,-14428,-14427,-2283,-2282,-2281,-14426,-14425,-60,-160,-20,-473,-144,-382,-36,-3589,-207,-5692,-5691,-14424,-919,-277, --1076,-40,-2593,-28,-346,-1155,-200,-5690,-911,-648,-526,-222,-1143,-23,-93,-14423,-1315,-466,-1310,-324,-644,-492,-693, --6332,-128,-7,-1296,-462,-3588,-16,-2592,-890,-14422,-154,-393,-1791,-597,-460,-2,-438,-1102,-17, --170,-519,-1479,-2771], -[0,-192,-6527], +[0,-5496,-5497,-7,-8,-9,-5498,-5499,-510,-518,-668,-722,-778,-784,-812,-5500,-834,-5501,-5502,-5503,-1017,-1041,-5504, +-1077,-5505,-1107,-1331,-1369,-1376,-5506,-1455,-1490,-1492,-1521,-1522,-1548,-1645,-5507,-1743,-1758,-1812,-1816,-1888, +-1908,-2000,-2092,-2114,-2125,-2148,-2163,-5508,-2177,-5509,-2233,-5510,-2275,-2286,-2287,-2330,-2346,-2410,-2437,-2488, +-2501, +-2505,-2508,-2510,-2567], +[0,-475,-477], [1,3,1420], [0,0,0,1421,4], -[0,-1237,-1761,-91,-1682,-973,-2591,-127], +[0,-5175,-3118,-4865,-5495,-3119,-5511,-3098], [1,3,1423], [0,0,1424,1425,9], -[0,-1746,-707,-14421,-3,-885], -[0,-1232,-240,-14420,-14419,-14418,-14417,-14416,-14415,-14414,-14413,-14412,-14411,-14410,-14409,-14408,-14407,-14406, --14405,-14404,-14403,-14402,-37,-14401,-224,-135,-671,-1722,-294,-194,-14400,-14399,-584,-5689,-14398,-14397,-14396, --5688,-14395,-495,-263,-367,-14394,-5687,-14393,-726,-254,-14392,-5686,-163,-225,-548,-174,-183,-431,-14391,-14390,-638, --14389], +[0,-3542,-1202,-5512,-1654,-2343], +[0,-5513,-5514,-5515,-5516,-5517,-5518,-5519,-5520,-5521,-5522,-5523,-5524,-5525,-5526,-5527,-5528,-5529,-5530,-5531, +-5532,-5533,-687,-5534,-712,-714,-5535,-4376,-3958,-4000,-5536,-5537,-5538,-5539,-5540,-5541,-5542,-5543,-5544,-1496, +-1573,-5545,-5546,-5547,-5548,-5549,-5550,-5551,-5552,-2265,-5553,-3770,-3974,-5554,-3975,-5555,-5556,-2547,-5557], [1,3,1427], [0,1428,115,1429,6], -[0,-782], -[0,-240,-174,-194,-37,-163,-431,-482,-5685,-584,-254,-638,-263,-367,-294,-183,-5684,-2590,-3610,-354,-2048,-2047,-2122, --14388,-2248,-3587,-14387,-14386], +[0,-5558], +[0,-5514,-3974,-4000,-687,-2265,-3975,-5559,-5560,-5538,-5550,-2547,-1573,-5545,-3958,-5554,-5561,-5562,-5412,-707,-5563, +-5564,-3965,-5565,-685,-5566,-5567,-5568], [1,3,1431], [0,0,1432,1433,10], -[0,-34,-51,-81,-929], -[0,-240,-548,-224,-671,-135,-174,-194,-37,-163,-431,-482,-584,-726,-1232,-254,-638,-294,-183,-948,-1075,-14385,-511,-75, --630,-947], +[0,-2541,-519,-2384,-480], +[0,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-3958,-5554,-5569,-5570, +-5571,-5572,-4004,-5573,-5574], [1,3,1435], [0,0,1436,1437,5], -[0,-34,-51,-81,-14384], -[0,-240,-548,-224,-671,-135,-174,-194,-37,-163,-431,-482,-584,-726,-1232,-254,-638,-263,-367,-294,-183], +[0,-2541,-519,-2384,-5575], +[0,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958,-5554], [1,3,1439], [0,0,0,1440,6], -[0,-240,-135,-37], +[0,-5514,-714,-687], [1,3,1442], [0,1443,1444,1445,11], -[0,-3682,-14383,-90,-1738,-3766,-5683,-14382,-5682,-2264,-764,-574,-14381,-5681,-23,-468,-1118,-2089,-5680,-1742,-1788, --14380,-595], -[0,-50,-11,-216,-1196,-1038,-306,-1231,-1195,-2723,-1230,-2145,-173,-2144,-1095,-480,-21,-140,-49,-62,-713,-203,-735,-185, --29,-5679,-1278,-5678,-874,-5,-14379,-22,-19,-4034,-949,-3586,-5677,-14378,-14377,-1892,-858,-2589,-1714,-5676,-208, --3585,-160,-201,-94,-86,-98,-4028,-5675,-355,-14376,-1879,-20,-238,-152,-2603,-3584,-58,-14375,-26, --144,-1343,-14374,-1174,-14373,-5674,-5788,-5673,-89,-1264,-501,-1,-12,-763,-10,-145,-214,-14372,-25,-825,-229,-2635,-40, --28,-206,-708,-32,-615,-5672,-1536,-346,-9,-14371,-5671,-8,-176,-816,-14370,-14369,-1002,-5670,-6152,-222,-1143,-5669, --14368,-18,-5668,-221,-998,-1318,-1138,-5667,-228,-3583,-377,-88,-72,-1130,-236,-1314,-38,-492,-4, --441,-440,-361,-693,-864,-601,-1681,-5666,-3757,-5665,-7,-5664,-14367,-16,-285,-5663,-154,-179,-3664,-3663,-558,-2630, --1489,-392,-71,-1107,-57,-211,-153,-124,-2,-14366,-133,-438,-2629,-104,-74,-14365,-14364,-979,-3874,-14363,-1103,-14362, --882,-2173,-1424,-1783,-17,-520,-92,-170,-519,-2588,-1708], -[0,-74,-873,-1759,-435,-1034,-14361,-129,-127,-102,-52,-53], +[0,-4903,-5576,-44,-3946,-3763,-5577,-5578,-5579,-513,-786,-809,-5580,-5581,-1548,-1549,-2113,-4951,-5582,-3768,-2345, +-5583,-2489], +[0,-21,-23,-26,-34,-35,-36,-5584,-37,-3396,-5585,-3381,-38,-3382,-3412,-39,-40,-42,-86,-3307,-305,-3326,-3732,-3048,-3136, +-5586,-3164,-5587,-3661,-3037,-5588,-427,-428,-439,-4837,-5589,-5590,-5591,-5592,-441,-4838,-5593,-4817,-5594,-461,-5595, +-518,-523,-528,-533,-534,-538,-5596,-539,-5597,-661,-668,-674,-708,-5339,-5598,-719,-5599,-767, +-778,-779,-5600,-807,-5601,-5602,-4978,-5603,-928,-3808,-929,-932,-940,-957,-958,-959,-963,-5604,-967,-980,-1026,-4979, +-1077,-1107,-1111,-1125,-1168,-1174,-5605,-1261,-1331,-1344,-5606,-5607,-1415,-1419,-1421,-5608,-5609,-1439,-5610,-3025, +-1521,-1522,-5611,-5612,-1534,-5613,-1600,-1601,-1602,-1603,-5614,-1610,-5615,-1643,-1646,-1650,-1662,-1666,-1779,-1889, +-1908,-1942, +-1952,-1955,-1959,-2000,-4242,-2098,-5616,-5617,-3868,-5618,-2125,-5619,-5620,-2177,-2218,-5621,-2275,-2281,-4997,-4998, +-2282,-4999,-2284,-2335,-2347,-2355,-2375,-2376,-2392,-2402,-2410,-5622,-2427,-2437,-5001,-2466,-2476,-5623,-5624,-2478, +-2480,-5625,-2481,-5626,-2483,-2484,-5627,-2486,-2501,-2502,-2503,-2505,-2508,-5628,-5002], +[0,-2476,-3944,-3158,-3099,-485,-5629,-3095,-3098,-3160,-3161,-3100], [1,3,1447], [0,1448,1449,110,4], -[0,-304,-574,-90,-2740,-1788,-3682,-14360,-14359,-14358,-14357,-5798,-14356,-14355,-5800,-14354,-14353,-14352,-14351, --14350,-14349,-14348,-14347,-14346,-14345,-14344,-14343,-14342,-14341,-5662,-14340,-14339,-14338,-14337,-14336,-14335, --14334,-14333,-5799,-14332,-14331,-14330,-14329,-14328,-14327,-14326,-2089,-14325,-14324], -[0,-193,-324,-2165,-312,-153,-1559,-28,-8,-149,-201,-20,-2087,-9,-1004,-569,-79,-3582,-806,-6,-689,-215,-1,-822,-249,-23, --274,-7,-5661,-16,-2268,-3585,-2587,-440,-124,-17,-1176,-40,-348,-1710,-88,-1130,-4,-5660,-1708,-26,-1680,-229,-2152, --1709,-157,-3670,-35,-1423,-3581,-188,-644,-147,-521,-600,-321,-2,-29,-5, --2054,-419,-18,-3910,-2631,-2278,-586,-3580,-47,-1679,-14323,-2633,-5659,-14322,-2697,-713,-1711,-142,-137,-3673,-1510, --695,-5658,-804,-320,-1088,-5657,-3579,-5656,-3677,-963,-1436,-486,-2634,-14321,-3679,-965,-2586,-185,-1712,-725,-2709, --5655,-2744,-1439,-5654,-87,-2868,-1528,-5653,-559,-3665,-750,-2742,-14320,-2696,-1257,-14319,-3770,-2695,-1355,-5652, --145,-1005, --2632,-2629,-5651,-760,-1435,-3578,-330,-3672,-923,-816,-3668,-5650,-122,-148,-176,-14318,-5649,-5648,-3671,-520,-3674, --1462,-5647,-155,-190,-14317,-2636,-5646,-3577,-14316,-317,-3851,-5645,-3675,-14315,-2086,-3667,-3676,-3576,-3678,-3575, --5644], +[0,-703,-809,-44,-3165,-2345,-4903,-5630,-5631,-5632,-5633,-4910,-5634,-5635,-4904,-5636,-5637,-5638,-5639,-5640,-5641, +-5642,-5643,-5644,-5645,-5646,-5647,-5648,-5649,-5650,-5651,-5652,-5653,-5654,-5655,-5656,-5657,-5658,-4905,-5659,-5660, +-5661,-5662,-5663,-5664,-5665,-4951,-5666,-5667], +[0,-469,-1816,-2592,-2323,-2392,-881,-1107,-1415,-1805,-523,-668,-4977,-1344,-1359,-1392,-1449,-5668,-1880,-2006,-2193, +-865,-932,-1031,-1437,-1548,-2093,-2125,-5669,-2177,-464,-5595,-5670,-1955,-2402,-2501,-781,-1077,-1103,-4980,-1646, +-1662,-1942,-5671,-5002,-767,-5672,-1026,-3134,-4984,-1978,-4985,-2019,-5673,-5674,-1729,-1888,-2094,-2095,-2205,-2214, +-2410,-3136,-3037, +-5346,-1339,-1534,-2026,-4994,-162,-4647,-5675,-3040,-5676,-5677,-4986,-5678,-5679,-3744,-305,-4964,-3044,-3199,-4973, +-1737,-1950,-5680,-2101,-2581,-3778,-5681,-5682,-5683,-4960,-3803,-4972,-3649,-4982,-5684,-4954,-3562,-5685,-3048,-4961, +-5686,-3624,-5687,-3051,-4773,-5688,-3052,-1404,-1416,-5689,-2044,-4992,-2090,-3139,-5690,-3746,-4106,-5691,-3745,-3747, +-283,-5692,-959,-1352, +-4988,-5001,-5693,-1292,-4981,-5694,-406,-4974,-952,-1421,-4989,-5695,-409,-962,-1419,-5696,-5697,-5698,-4983,-2502, +-4971,-3459,-5699,-407,-970,-5700,-4963,-5701,-5702,-5703,-410,-2914,-5704,-4968,-5705,-4995,-4990,-4962,-5706,-4955, +-5707,-5708], [1,3,1451], [0,1452,0,7,5], -[0,-149], +[0,-1805], [0,67,15,16,4], [1,3,1455], [0,1456,1457,1458,9], -[0,-6115,-6114,-6108,-6113,-6109,-14314,-14313,-6105,-6104,-14312,-14311,-14310,-14309,-3942,-3818], -[0,-6112,-6111,-6110,-14308,-6107,-6106,-49,-62,-14307,-6103,-6102,-14306,-3817,-877,-1274,-14305,-14304,-168,-326,-1,-12, --381,-41,-40,-9,-101,-18,-1514,-3934,-38,-7,-14,-14303,-1246,-27,-156,-2,-6101,-112,-3574,-123], -[0,-1713,-14302,-99,-4031,-42,-14301,-1812], +[0,-3278,-3279,-3299,-3283,-3288,-5709,-5710,-3304,-3305,-5711,-5712,-5713,-5714,-1537,-3297], +[0,-3285,-3286,-3287,-5715,-3302,-3303,-86,-3307,-5716,-3308,-3309,-5717,-3310,-3311,-3312,-5718,-5719,-617,-823,-932, +-940,-985,-1004,-1077,-1344,-1442,-1534,-1685,-1724,-1889,-2125,-2127,-5720,-4753,-2210,-2359,-2410,-3313,-2416,-5721, +-2446], +[0,-4902,-5722,-3690,-488,-856,-5723,-1789], [1,3,1460], [0,1461,1462,174,4], -[0,-476,-58,-14300,-1264,-14299,-40,-28,-250,-470,-249,-3573,-23,-221,-288,-440,-16,-154,-17,-92,-552], -[0,-142,-69,-5,-1,-14298,-84,-10,-76,-67,-3], +[0,-620,-719,-5724,-3808,-5725,-1077,-1107,-1276,-1351,-1437,-5726,-1548,-1600,-1753,-1955,-2177,-2275,-2501,-2503,-2520], +[0,-3044,-3621,-3037,-932,-5727,-943,-958,-966,-968,-1654], [1,3,1464], [0,1465,1466,1467,4], -[0,-14297,-351,-16,-596,-96], -[0,-2657,-5,-137,-413,-51,-40,-2], -[0,-1579,-100,-3572,-99,-678,-42,-114,-2585,-37,-724,-294,-410,-1074,-14296,-14295], +[0,-5729,-888,-2177,-2433,-2550], +[0,-4370,-3037,-3199,-3041,-519,-1077,-2410], +[0,-489,-1599,-5730,-3690,-4100,-856,-3262,-5731,-687,-5732,-3958,-3691,-5728,-5733,-5734], [1,3,1469], [0,1470,1471,1472,5], -[0,-36,-1422,-1128,-813,-2174], -[0,-13,-244,-3,-27,-186], -[0,-5643,-1229,-14294,-5642,-14293,-3571], +[0,-812,-5735,-1730,-1465,-2456], +[0,-664,-665,-1654,-2210,-2211], +[0,-5736,-5737,-5738,-5739,-5740,-5741], [1,3,1474], [0,1475,0,7,4], -[0,-5641,-3570,-6099,-3569,-44], +[0,-5742,-5743,-3320,-5744,-2387], [1,3,1477], [0,1478,0,1479,8], -[0,-5640,-5641,-4030,-3570,-3568,-3569,-44,-2584], -[0,-338,-430,-5639,-45,-14292,-158,-6], +[0,-5745,-5742,-494,-5743,-5746,-5744,-2387,-5747], +[0,-3217,-4795,-5748,-3214,-5749,-1764,-2006], [1,3,1481], [0,1482,1483,7,6], -[0,-3570,-3569,-44,-14291], -[0,-5638,-29,-5,-380,-1013,-8,-7,-14,-57,-196,-2], +[0,-5743,-5744,-2387,-5750], +[0,-5751,-3136,-3037,-1122,-1123,-1415,-2125,-2127,-2375,-2388,-2410], [1,3,1485], [0,1486,1487,7,6], -[0,-4030,-14290,-44], -[0,-5638,-29,-14289,-3991,-380,-1013,-8,-14288,-7,-14,-57,-196,-2], +[0,-494,-5752,-2387], +[0,-5751,-3136,-5753,-1037,-1122,-1123,-1415,-5754,-2125,-2127,-2375,-2388,-2410], [1,3,1489], [0,0,1490,1491,5], -[0,-152,-56,-14287,-298,-3984,-66,-3,-611,-1515,-15,-120,-1785], -[0,-3567,-248,-202,-132,-141,-358,-370,-5637,-407,-300], +[0,-708,-756,-5755,-796,-1104,-1405,-1654,-1657,-1663,-1788,-2174,-2449], +[0,-5756,-1847,-3590,-2444,-3966,-3551,-3209,-5757,-4792,-3994], [1,3,1493], [0,1494,1495,1496,4], -[0,-3840,-1228,-14286,-14285,-5636,-201,-116,-14284,-23,-442,-236,-907,-3566,-16,-5635,-205], -[0,-14283,-3565,-2750,-296,-295,-3564,-142,-69,-5,-14282,-137,-454,-1247,-13,-244,-1345,-3,-4,-120,-27,-33,-2,-2169], -[0,-2046,-333,-61,-544,-95,-14281], +[0,-2959,-5758,-5759,-5760,-5761,-523,-615,-5762,-1548,-1582,-1666,-1667,-5763,-2177,-5764,-2531], +[0,-5765,-5766,-2860,-3470,-3471,-5767,-3044,-3621,-3037,-5768,-3199,-4204,-4733,-664,-665,-741,-1654,-1942,-2174,-2210, +-2379,-2410,-2542], +[0,-5769,-5271,-3634,-4864,-3162,-5770], [1,3,1498], [0,1499,1500,1501,10], -[0,-14280,-5634,-14279,-1240,-14278,-5633,-14277,-5632,-5631,-3563,-5630,-14276,-2583,-14275,-14274,-14273,-14272,-14271, --14270,-14269,-14268,-5629,-14267], -[0,-15,-198,-3,-27,-1,-4,-2,-14266,-5,-69,-269,-137,-76,-19,-14265,-22], -[0,-14264,-14263,-14262,-14261,-5628,-1421,-1073,-14260,-14259,-5627,-2582], +[0,-5771,-5772,-5773,-5038,-5774,-5775,-5776,-5777,-5778,-5779,-5780,-5781,-5782,-5783,-5784,-5785,-5786,-5787,-5788, +-5789,-5790,-5791,-5792], +[0,-1788,-1722,-1654,-2210,-932,-1942,-2410,-5793,-3037,-3621,-4372,-3199,-966,-428,-5794,-427], +[0,-5795,-5796,-5797,-5798,-5799,-5800,-5801,-5802,-5803,-5804,-5805], [1,3,1503], [0,1504,1505,1506,5], -[0,-14258,-14257,-14256,-14255,-5626,-14254], -[0,-14253,-29,-5,-22,-19,-3562,-1,-12,-251,-10,-25,-380,-8,-4,-14252,-1122,-5625,-134,-57,-33,-2], -[0,-14251,-1227,-46,-5624,-380,-2045,-335,-2,-14250], +[0,-5806,-5807,-5808,-5809,-5810,-5811], +[0,-5812,-3136,-3037,-427,-428,-5813,-932,-940,-948,-958,-967,-1122,-1415,-1942,-5814,-1944,-5815,-2251,-2375,-2379,-2410], +[0,-5816,-5817,-3445,-5818,-1122,-5819,-3967,-2410,-5820], [1,3,1508], [0,1509,1510,1511,4], -[0,-14249,-60,-5623,-197,-14248,-886,-14247], -[0,-14246,-13,-166,-72,-3,-7,-14245,-312,-977], -[0,-1426,-928,-245,-855,-312], +[0,-5821,-510,-5822,-2062,-5823,-2325,-5824], +[0,-5825,-664,-1446,-1650,-1654,-2125,-5826,-2323,-2555], +[0,-5409,-501,-5827,-5408,-2323], [1,3,1513], [0,0,1514,7,8], -[0,-13,-8,-4], +[0,-664,-1415,-1942], [1,3,1516], [0,0,1517,1518,10], -[0,-161,-3561,-1,-3,-15], -[0,-37,-73,-1353,-854,-587], +[0,-32,-5828,-932,-1654,-1788], +[0,-687,-3215,-503,-5829,-4377], [0,45,15,16,6], [1,3,1521], [0,1522,1523,1524,6], -[0,-1030,-2581,-2580,-14244], -[0,-3560,-239,-279,-510,-1,-1166,-1015,-2579,-213,-275,-15,-1312,-187,-39], -[0,-5622,-14243,-670,-14242,-672,-549,-2044,-5621,-3559], +[0,-655,-5830,-5831,-5832], +[0,-5833,-5834,-516,-5835,-932,-993,-1065,-5836,-1365,-1777,-1788,-1794,-2156,-2322], +[0,-5837,-5838,-5839,-5840,-5396,-3582,-5841,-5842,-5843], [1,3,1526], [0,0,14,1527,6], -[0,-670,-1189,-14241,-452,-853,-5620], +[0,-5839,-506,-5844,-5845,-5846,-5847], [1,3,1529], [0,1530,1531,1532,5], -[0,-132,-5619,-1030,-2043,-609], -[0,-39,-768,-159,-26,-50,-14240,-11,-1126,-21,-3815], -[0,-293,-91], +[0,-2444,-5848,-655,-5849,-1797], +[0,-2322,-468,-753,-767,-21,-5850,-23,-1798,-40,-3335], +[0,-507,-4865], [1,3,1534], [0,0,1535,7,4], -[0,-39,-1332], +[0,-2322,-1032], [1,3,1537], [0,1538,1539,1540,4], -[0,-2238,-14239,-3558,-1312,-14238,-14237], -[0,-59,-66,-3,-235], -[0,-293,-1072,-2578,-927,-591,-350,-421,-82,-14236,-1082,-543,-75,-61,-1090,-3557,-388], +[0,-820,-5851,-5852,-1794,-5853,-5854], +[0,-633,-1405,-1654,-1939], +[0,-507,-5855,-5856,-509,-3440,-1001,-1003,-2198,-5857,-4679,-4873,-4004,-3634,-3636,-5858,-5119], [1,3,1542], [0,0,1543,1544,4], -[0,-15,-13,-1296,-166,-78,-3,-96,-1,-14,-16,-238,-833,-116,-40,-110,-59,-11,-1021,-189,-1678,-447,-910,-5618,-328,-14235, --14234,-161,-418,-355,-909,-212,-3556,-341,-278,-14233,-1350], -[0,-60,-2042,-358,-202], +[0,-1788,-664,-2148,-1446,-1471,-1654,-2550,-932,-2127,-2177,-674,-571,-615,-1077,-589,-633,-23,-925,-1482,-5859,-566, +-1472,-5860,-559,-5861,-5862,-32,-1483,-539,-1487,-1479,-5863,-2137,-535,-5864,-549], +[0,-510,-5865,-3551,-3590], [1,3,1546], [0,0,1547,1548,9], -[0,-5,-2577,-85,-33,-2], -[0,-60,-629,-339,-105,-14232,-2078,-172,-209], +[0,-3037,-5866,-2319,-2379,-2410], +[0,-510,-5867,-3184,-1334,-5868,-5149,-1961,-3844], [1,3,1550], [0,1551,1552,7,4], -[0,-2186], -[0,-51,-1,-4,-188,-235,-14231,-18,-64,-266,-10,-12,-148], +[0,-2122], +[0,-519,-932,-1942,-1729,-1939,-5869,-1534,-969,-933,-958,-940,-962], [1,3,1554], [0,0,1555,1556,4], -[0,-11,-781,-21,-140,-14230,-29,-86,-56,-8,-18,-417,-14229,-14228,-235,-4,-33,-2], -[0,-437,-509,-60], +[0,-23,-5870,-40,-42,-5871,-3136,-533,-756,-1415,-1534,-1763,-5872,-5873,-1939,-1942,-2379,-2410], +[0,-2451,-5874,-510], [1,3,1558], [0,0,0,1559,5], -[0,-2927,-91], +[0,-514,-4865], [1,3,1561], [0,1562,1563,1564,6], -[0,-156,-135,-14227,-16,-14226,-14225,-14224], -[0,-15,-39,-1,-275,-279,-187,-239], -[0,-2041,-2040,-5617,-158,-2041], +[0,-2359,-714,-5875,-2177,-5876,-5877,-5878], +[0,-1788,-2322,-932,-1777,-516,-2156,-5834], +[0,-5879,-5880,-5881,-1764,-5879], [1,3,1566], [0,1567,1568,1569,6], -[0,-58,-250,-14223,-188,-5616,-16], -[0,-11,-178,-355,-5615,-13,-152,-26,-525,-3,-15,-1792,-97], -[0,-3555,-2039,-780,-2576,-263,-114,-387,-1677,-14222,-1533], +[0,-719,-1276,-5882,-1729,-5883,-2177], +[0,-23,-43,-539,-5884,-664,-708,-767,-1609,-1654,-1788,-2226,-2250], +[0,-5885,-5886,-5887,-5888,-1573,-3262,-5889,-5890,-5891,-1306], [1,3,1571], [0,1572,1573,1574,5], -[0,-119,-135,-5614,-14221,-28,-3554,-647,-324,-1676,-113,-3553,-96], -[0,-182,-328,-13,-1,-266,-10,-148,-64,-3], -[0,-3555,-685,-757,-451,-594], +[0,-679,-714,-5892,-5893,-1107,-5894,-1574,-1816,-5895,-2105,-5896,-2550], +[0,-526,-559,-664,-932,-933,-958,-962,-969,-1654], +[0,-5885,-3015,-1380,-5897,-2490], [1,3,1576], [0,1577,0,1578,10], -[0,-305,-1183,-5613,-164,-465], -[0,-160,-24,-2575,-38,-218], +[0,-635,-658,-5898,-1863,-1934], +[0,-518,-775,-5899,-1889,-3583], [1,3,1580], [0,1581,1582,1583,8], -[0,-3552,-208,-1581,-767,-14220,-1189,-5612,-14219,-20,-14218,-504,-14217,-2247,-5611,-5610,-14216,-14215,-36,-5609,-533, --206,-5608,-817,-1152,-1836,-2038,-3551,-567,-564,-14214,-323,-990,-899,-3550,-2652,-14213,-2574,-1778,-96], -[0,-2627,-1071,-5,-929,-43,-118,-350,-27,-85,-372,-81,-2,-34,-2584], -[0,-14212,-75,-456,-61,-51,-2573,-852,-508,-543,-724,-37,-8,-3,-39,-85,-375,-199,-293,-1072,-172,-481,-60,-1226,-629,-114, --3549,-14211,-5607,-14210,-388,-2113,-350,-2], +[0,-5900,-461,-462,-482,-5901,-506,-5902,-5903,-668,-5904,-680,-5905,-696,-5906,-5907,-5908,-5909,-812,-5910,-1040,-1111, +-5911,-1366,-1396,-1398,-5912,-5913,-1681,-1826,-5914,-1864,-1877,-1951,-5915,-4621,-5916,-5917,-2530,-2550], +[0,-5028,-5918,-3037,-480,-652,-999,-1001,-2210,-2319,-2331,-2384,-2410,-2541,-5747], +[0,-5919,-4004,-4043,-3634,-519,-5920,-5921,-5922,-4873,-5732,-687,-1415,-1654,-2322,-2319,-1989,-1412,-507,-5855,-1961, +-5923,-510,-5924,-5867,-3262,-5925,-5926,-5927,-5928,-5119,-4045,-1001,-2410], [1,3,1585], [0,1586,1587,1588,4], -[0,-20,-829,-754,-23,-362,-72,-146,-14209], -[0,-109,-142,-634,-69,-5,-1744,-269,-517,-116,-13,-14208,-40,-9,-18,-3,-4,-14207,-7,-272,-134,-597,-196,-2,-17,-92], -[0,-17,-779,-3657,-2], +[0,-668,-909,-1543,-1548,-1639,-1650,-2234,-5929], +[0,-3035,-3044,-4036,-3621,-3037,-3714,-4372,-3046,-615,-664,-5930,-1077,-1344,-1534,-1654,-1942,-5931,-2125,-2195,-2251, +-2330,-2388,-2410,-2501,-2503], +[0,-2501,-5932,-5050,-2410], [1,3,1590], [0,1591,1592,1593,5], -[0,-1116,-195,-132,-123,-299,-422,-551,-5606,-5605,-987], -[0,-13,-78,-3,-1,-152,-199,-17,-1874,-112,-59,-2,-5,-911,-316,-378,-400,-3548,-5604,-139], -[0,-99,-2037,-1227,-14206,-14205,-1070,-5603,-5602,-3547,-14204,-14203,-14202,-14201,-14200,-14199,-14198,-3546,-14197, --5601,-14196,-14195,-14194,-14193,-14192,-14191,-14190,-14189,-5600,-5752,-14188,-14187,-14186,-14185,-14184,-5599], +[0,-2165,-2435,-2444,-2446,-640,-997,-2536,-5933,-5934,-1985], +[0,-664,-1471,-1654,-932,-708,-1412,-2501,-793,-2416,-633,-2410,-3037,-1455,-711,-1413,-1481,-5935,-5936,-1475], +[0,-3690,-5937,-5817,-5938,-5939,-5940,-5941,-5942,-5943,-5944,-5945,-5946,-5947,-5948,-5949,-5950,-5951,-5952,-5953, +-5954,-5955,-5956,-5957,-5958,-5959,-5960,-5961,-5962,-5197,-5963,-5964,-5965,-5966,-5967,-5968], [1,3,1595], [0,0,1596,1597,4], -[0,-13,-28,-20,-536,-118,-54,-9,-166,-79,-78,-3,-27,-1,-249,-159,-89,-55,-807,-200,-1675,-4,-112,-14183,-1433,-5598,-703, --5597,-2,-11,-5,-5596,-1021,-3545,-419,-189,-1320,-18,-65,-5595,-14182,-705,-1510,-1241,-1225,-14181,-134,-14180,-21, --3544,-1145,-1115,-3543,-243,-302,-702,-656,-347,-14179,-139,-1110,-1751,-12,-212, --3542,-3541,-306], -[0,-14178,-951,-61,-388,-543,-591,-3540], +[0,-664,-1107,-668,-702,-999,-1127,-1344,-1446,-1449,-1471,-1654,-2210,-932,-1437,-753,-928,-1110,-1821,-1376,-5969,-1942, +-2416,-5970,-5113,-5971,-1474,-5972,-2410,-23,-3037,-5973,-925,-5974,-1339,-1482,-1489,-1534,-1771,-5975,-5976,-1320, +-1737,-4916,-5977,-5978,-2251,-5979,-40,-5980,-1480,-2173,-5981,-1134,-1149,-1491,-1136,-1148,-5982,-1475,-2253,-3345, +-940,-1479, +-5983,-5984,-36], +[0,-5985,-4665,-3634,-5119,-4873,-3440,-5986], [1,3,1599], [0,1600,1601,1602,4], -[0,-657,-5594,-1543], -[0,-43,-32,-20,-9,-78,-3,-27,-1,-1514,-1309,-14,-41,-14177,-40,-1675,-88,-56,-26,-1014,-498,-250,-2700,-886,-2,-11,-168, --1021,-1320,-378,-523,-2572,-400,-279,-49,-14176,-21,-14175,-231,-513,-203,-812,-226,-14174,-139,-909,-212,-648,-80, --3539,-755,-5593,-3538,-63,-14173,-5592,-62], -[0,-743,-105,-1420,-172,-141,-91,-865,-410,-99,-337], +[0,-1069,-5987,-1063], +[0,-652,-1168,-668,-1344,-1471,-1654,-2210,-932,-1685,-1831,-2127,-1004,-5988,-1077,-5969,-1646,-756,-767,-1070,-1100, +-1276,-3727,-2325,-2410,-23,-617,-925,-1489,-1413,-1948,-5989,-1481,-516,-86,-5990,-40,-5991,-4062,-4066,-3326,-1488, +-2140,-5992,-1475,-1487,-1479,-1490,-350,-5993,-1486,-5994,-5995,-351,-5996,-5997,-3307], +[0,-2533,-1334,-5998,-1961,-3966,-4865,-4213,-3691,-3690,-3323], [1,3,1604], [0,1605,1606,1607,4], -[0,-14172,-444,-14171,-5591,-197,-113,-247,-123,-437,-551,-1283,-650], -[0,-14170,-59,-56,-14169,-54,-3982,-1771,-66,-78,-139,-1831,-14168,-212,-1145,-189,-418,-3,-611,-198,-82,-112,-744], -[0,-141,-1421,-1069], +[0,-5999,-1015,-6000,-6001,-2062,-2105,-2424,-2446,-2451,-2536,-2538,-1456], +[0,-6002,-633,-756,-6003,-1127,-1154,-2778,-1405,-1471,-1475,-1478,-6004,-1479,-1480,-1482,-1483,-1654,-1657,-1722,-2198, +-2416,-2491], +[0,-3966,-5800,-6005], [1,3,1609], [0,1610,1611,137,4], -[0,-169,-620,-447,-291,-58,-472,-3826,-28,-23,-14167,-1308,-285,-130,-3537,-119], -[0,-1890], +[0,-527,-556,-566,-567,-719,-742,-3179,-1107,-1548,-6006,-1850,-2218,-2231,-6007,-679], +[0,-530], [1,3,1613], [0,1614,1615,138,9], -[0,-3536,-2263,-5590,-3535,-447,-291,-1575,-2258,-1349,-926,-472,-36,-276,-23,-93,-1308,-2036,-285,-130], -[0,-1890,-3534,-620], +[0,-6008,-529,-6009,-6010,-566,-567,-568,-569,-570,-572,-742,-812,-1460,-1548,-1645,-1850,-6011,-2218,-2231], +[0,-530,-6012,-556], [1,3,1617], [0,1618,1619,7,5], -[0,-128,-479,-427,-577,-538,-1019], -[0,-9,-3,-534,-1,-617,-4,-18,-94,-2571,-10,-500,-25], +[0,-2114,-47,-25,-46,-22,-983], +[0,-1344,-1654,-815,-932,-986,-1942,-1534,-528,-6013,-958,-956,-967], [1,3,1621], [0,1622,1623,7,5], -[0,-3535,-291,-1349,-1341,-1148,-23,-130,-14166], -[0,-1890,-926], +[0,-6010,-567,-570,-831,-1451,-1548,-2231,-6014], +[0,-530,-572], [1,3,1625], [0,1626,0,7,4], -[0,-291,-23,-14165,-16], +[0,-567,-1548,-6015,-2177], [1,3,1628], [0,1629,0,7,5], -[0,-291,-3534], +[0,-567,-6012], [1,3,1631], [0,0,0,1632,6], -[0,-292,-74,-866], +[0,-525,-2476,-4146], [1,3,1634], [0,1635,1636,7,4], -[0,-1732,-729,-355,-14164,-20,-325,-285], -[0,-11,-2115,-872], +[0,-4020,-4776,-539,-6016,-668,-1119,-2218], +[0,-23,-4034,-4035], [1,3,1638], [0,175,1639,1640,8], -[0,-50,-11,-161,-21,-43,-1,-12,-25,-55,-9,-18,-4,-17], -[0,-17,-779,-292,-339,-1277,-358], +[0,-21,-23,-32,-40,-652,-932,-940,-967,-1110,-1344,-1534,-1942,-2501], +[0,-2501,-5932,-525,-3184,-3186,-3551], [1,3,1642], [0,0,1643,1644,8], -[0,-11,-1196,-21,-182,-169,-94,-5615,-3533,-268,-5589,-712,-1575,-1349,-2035,-1,-12,-84,-10,-76,-25,-67,-131,-3,-1501,-4, --7,-187], -[0,-1276,-14163], +[0,-23,-34,-40,-526,-527,-528,-5884,-6017,-558,-6018,-560,-568,-570,-6019,-932,-940,-943,-958,-966,-967,-968,-974,-1654, +-1938,-1942,-2125,-2156], +[0,-3220,-6020], [1,3,1646], [0,1647,1648,1649,4], -[0,-609], -[0,-39,-1,-7,-182,-169,-213,-11,-94,-447,-5588,-21,-765,-328,-187,-10,-191,-1351,-962,-278,-2144,-1674,-1886], -[0,-292,-107,-14162,-628,-141], +[0,-1797], +[0,-2322,-932,-2125,-526,-527,-1365,-23,-528,-566,-6021,-40,-557,-559,-2156,-958,-934,-537,-3840,-535,-3382,-6022,-550], +[0,-525,-3862,-6023,-6024,-3966], [1,3,1651], [0,116,35,21,5], [1,3,1653], [0,1654,1655,1656,10], -[0,-1097], -[0,-11,-136,-5587,-169,-5586,-56,-1,-266,-12,-10,-25,-822,-9,-18,-1136,-417,-4,-14161], -[0,-1276,-1034], +[0,-3341], +[0,-23,-41,-6025,-527,-6026,-756,-932,-933,-940,-958,-967,-1031,-1344,-1534,-1613,-1763,-1942,-6027], +[0,-3220,-485], [1,3,1658], [0,1659,1660,1661,4], -[0,-770,-5585,-2675,-3532,-3531], -[0,-50,-11,-2147,-391,-178,-13,-56,-26,-3,-15,-14160,-97], -[0,-66,-292,-107,-5584], +[0,-24,-6028,-4003,-6029,-6030], +[0,-21,-23,-3362,-3204,-43,-664,-756,-767,-1654,-1788,-6031,-2250], +[0,-1405,-525,-3862,-6032], [1,3,1663], [0,1664,1665,1666,4], -[0,-1097,-479,-28,-23,-5583], -[0,-50,-11,-2570,-306,-3824,-974,-173,-21,-136,-3530,-178,-1081,-60,-278,-1888,-13,-14159,-14158,-468,-3,-642,-6348], -[0,-1276,-14157,-23,-370], +[0,-3341,-47,-1107,-1548,-6033], +[0,-21,-23,-6034,-36,-3201,-3077,-38,-40,-41,-6035,-43,-4754,-510,-535,-540,-664,-6036,-6037,-1549,-1654,-1993,-2011], +[0,-3220,-6038,-1548,-3209], [1,3,1668], [0,1669,1670,1671,6], -[0,-5582,-28,-1123,-2808,-128], -[0,-50,-11,-1195,-391,-21,-169,-86,-473,-1,-191,-12,-10,-9,-8,-18,-3529,-134], -[0,-292,-1276,-358,-5581,-5580,-5579,-128,-14156,-5578,-407,-628], +[0,-6039,-1107,-1872,-2112,-2114], +[0,-21,-23,-37,-3204,-40,-527,-533,-722,-932,-934,-940,-958,-1344,-1415,-1534,-6040,-2251], +[0,-525,-3220,-3551,-6041,-6042,-6043,-2114,-6044,-6045,-4792,-6024], [1,3,1673], [0,0,1674,7,5], -[0,-8,-2569], +[0,-1415,-6046], [1,3,1676], [0,0,0,21,5], [1,3,1678], [0,0,0,21,4], [1,3,1680], [0,1681,35,21,5], -[0,-14155,-5577,-291], +[0,-6047,-6048,-567], [1,3,1683], [0,1684,35,21,5], -[0,-14154,-14153,-291,-1575], +[0,-6049,-6050,-567,-568], [1,3,1686], [0,1687,1688,1689,6], -[0,-14152,-291,-1575], -[0,-182,-1576,-1032,-328,-13,-3], -[0,-292,-1276,-2034,-6096], +[0,-6051,-567,-568], +[0,-526,-546,-555,-559,-664,-1654], +[0,-525,-3220,-6052,-3336], [1,3,1691], [0,1692,35,21,5], -[0,-291,-1575,-2258,-1349,-23], +[0,-567,-568,-569,-570,-1548], [1,3,1694], [0,1695,1696,21,6], -[0,-14151,-291,-1575,-1349], -[0,-2262,-5576], +[0,-6053,-567,-568,-570], +[0,-531,-6054], [1,3,1698], [0,116,35,21,10], [1,3,1700], [0,1701,35,21,4], -[0,-5576,-291], +[0,-6054,-567], [1,3,1703], [0,1704,35,21,5], -[0,-291,-14150,-2261], +[0,-567,-6055,-544], [1,3,1706], [0,0,1707,1708,4], -[0,-50,-11,-879,-962,-216,-971,-21,-1068,-136,-178,-94,-5575,-13,-1,-266,-827,-500,-10,-148,-265,-25,-64,-206,-3,-5574,-4], -[0,-292,-1276,-6,-1224,-14149], +[0,-21,-23,-3194,-3840,-26,-3203,-40,-6056,-41,-43,-528,-6057,-664,-932,-933,-951,-956,-958,-962,-964,-967,-969,-1111, +-1654,-6058,-1942], +[0,-525,-3220,-2006,-6059,-6060], [1,3,1710], [0,1711,35,7,4], -[0,-14148], +[0,-6061], [1,3,1713], [0,116,35,21,4], [1,3,1715], [0,1716,0,7,6], -[0,-291,-159,-342], +[0,-567,-753,-2082], [1,3,1718], [0,1719,1720,1721,6], -[0,-21,-136,-770,-3811,-173,-3528,-1231,-306,-2145,-14147,-2144,-3527,-834,-3805,-2033,-2723], -[0,-1,-11,-90,-187,-10,-191], -[0,-292,-339,-430,-45], +[0,-40,-41,-24,-3352,-38,-6062,-5584,-36,-3381,-6063,-3382,-6064,-553,-3393,-6065,-3396], +[0,-932,-23,-44,-2156,-958,-934], +[0,-525,-3184,-4795,-3214], [1,3,1723], [0,1724,1725,7,5], -[0,-3526,-3525,-2260,-2568,-5573,-1887,-2567,-2566,-2565,-5572,-5571,-5570,-5569,-5568,-1350,-5567,-3524,-5566,-2564, --2563,-2562,-5565,-1886,-3523,-5564,-5563,-2259,-305,-704,-16], -[0,-182,-94,-1890,-2262,-355,-268,-447,-13,-152,-1,-2571,-500,-40,-23,-3,-15,-5562,-7], +[0,-6066,-6067,-545,-6068,-6069,-548,-6070,-6071,-6072,-6073,-6074,-6075,-6076,-6077,-549,-6078,-6079,-6080,-6081,-6082, +-6083,-6084,-550,-6085,-6086,-6087,-554,-635,-1384,-2177], +[0,-526,-528,-530,-531,-539,-558,-566,-664,-708,-932,-6013,-956,-1077,-1548,-1654,-1788,-6088,-2125], [1,3,1727], [0,1728,1729,7,6], -[0,-3526,-2568,-5573,-1887,-2567,-2566,-2565,-5572,-5571,-5570,-5569,-5568,-1350,-5567,-3524,-5566,-2564,-2563,-2562, --5565,-1886,-3523,-5564,-2259], -[0,-3534,-2262], +[0,-6066,-6068,-6069,-548,-6070,-6071,-6072,-6073,-6074,-6075,-6076,-6077,-549,-6078,-6079,-6080,-6081,-6082,-6083,-6084, +-550,-6085,-6086,-554], +[0,-6012,-531], [1,3,1731], [0,1732,0,7,8], -[0,-2561,-2261,-14146,-4025,-14145,-14144], +[0,-6089,-544,-6090,-552,-6091,-6092], [1,3,1734], [0,1735,0,7,4], -[0,-11,-216,-622,-2033,-3528,-1231,-3522,-2724,-971,-3802,-173,-21,-136,-140,-90,-1266,-834], +[0,-23,-26,-33,-6065,-6062,-5584,-6093,-3394,-3203,-3409,-38,-40,-41,-42,-44,-3766,-553], [1,3,1737], [0,1738,0,7,9], -[0,-14143,-14142,-4024], +[0,-6094,-6095,-563], [1,3,1740], [0,1741,0,7,5], -[0,-14141,-3533,-2925], +[0,-6096,-6017,-564], [1,3,1743], [0,1744,0,7,4], -[0,-2924,-14140,-4026,-1576], +[0,-565,-6097,-543,-546], [1,3,1746], [0,1747,0,7,5], -[0,-3525,-14139,-2260,-5563,-835], +[0,-6067,-6098,-545,-6087,-551], [1,3,1749], [0,1750,1751,7,4], -[0,-169,-291,-159,-5561,-23,-72,-146], -[0,-1746], +[0,-527,-567,-753,-6099,-1548,-1650,-2234], +[0,-3542], [1,3,1753], [0,140,1754,7,8], -[0,-5590,-1032], +[0,-6009,-555], [1,3,1756], [0,1757,0,7,4], -[0,-291,-2258,-1349,-926,-23], +[0,-567,-569,-570,-572,-1548], [1,3,1759], [0,1760,1761,7,5], -[0,-3536,-3535,-291,-1349,-926,-36,-55,-704,-23], -[0,-2263], +[0,-6008,-6010,-567,-570,-572,-812,-1110,-1384,-1548], +[0,-529], [1,3,1763], [0,1764,1765,7,6], -[0,-291,-2560,-23,-14138], -[0,-2263,-926], +[0,-567,-6100,-1548,-6101], +[0,-529,-572], [1,3,1767], [0,0,1768,7,5], -[0,-85,-59,-11,-14137,-21,-1068,-472,-136,-14136,-2145,-3802], +[0,-2319,-633,-23,-6102,-40,-6056,-742,-41,-6103,-3381,-3409], [1,3,1770], [0,0,1771,1772,6], -[0,-51,-182,-94,-1890,-1351,-355,-5560,-328,-1187,-20,-152,-26,-1,-2571,-500,-420,-15,-7,-14,-273,-341,-5723,-14135], -[0,-292,-45,-73,-926], +[0,-519,-526,-528,-530,-537,-539,-6104,-559,-562,-668,-708,-767,-932,-6013,-956,-1059,-1788,-2125,-2127,-2128,-2137,-5385, +-6105], +[0,-525,-3214,-3215,-572], [1,3,1774], [0,1775,1776,1777,4], -[0,-247], -[0,-316,-618,-1561,-1,-10,-78,-1830,-375,-1799,-14,-112], -[0,-1673,-1067,-3612,-434,-209,-337,-91], +[0,-2424], +[0,-711,-757,-849,-932,-958,-1471,-1485,-1989,-2104,-2127,-2416], +[0,-6106,-6107,-5394,-3122,-3844,-3323,-4865], [1,3,1779], [0,1780,1781,1782,11], -[0,-58,-28,-200,-149,-7,-44,-123,-437], -[0,-14134,-458,-2156,-5,-680,-3521,-517,-22,-19,-877,-14133,-14132,-1274,-13,-1,-10,-76,-3,-995,-14131,-272,-395,-392, --211,-33,-124,-2,-674,-17,-92], -[0,-46,-6523,-376,-2153,-5559], +[0,-719,-1107,-1376,-1805,-2125,-2387,-2446,-2451], +[0,-6108,-3036,-3049,-3037,-3738,-6109,-3046,-427,-428,-3311,-6110,-6111,-3312,-664,-932,-958,-966,-1654,-1656,-6112, +-2195,-2200,-2335,-2376,-2379,-2402,-2410,-5260,-2501,-2503], +[0,-3445,-574,-1671,-3105,-6113], [0,44,15,16,4], [1,3,1785], [0,0,1786,1787,5], -[0,-56,-54,-167,-821,-2032,-66,-3,-985], -[0,-14130,-5558,-5557,-2031,-2927,-4019], +[0,-756,-1127,-1132,-1162,-6114,-1405,-1654,-2081], +[0,-6115,-6116,-6117,-6118,-514,-638], [0,45,15,16,11], [1,3,1790], [0,0,1791,1792,8], -[0,-1678,-110,-59,-39], -[0,-2031], +[0,-5859,-589,-633,-2322], +[0,-6118], [1,3,1794], [0,177,1795,1796,5], -[0,-3,-1,-66,-76,-10,-67,-84,-214,-131], -[0,-14129,-778,-2559,-14128], +[0,-1654,-932,-1405,-966,-958,-968,-943,-963,-974], +[0,-6119,-6120,-6121,-6122], [1,3,1798], [0,1799,1800,1801,4], -[0,-351,-93,-88,-72,-5556], -[0,-1,-84,-10,-76,-67,-131,-3,-7,-125,-687,-1484,-1285], -[0,-41,-52,-14127,-3520,-14126,-1816,-111,-410,-1074,-434,-300,-3918,-46,-99], +[0,-888,-1645,-1646,-1650,-6123], +[0,-932,-943,-958,-966,-968,-974,-1654,-2125,-2293,-2369,-2418,-2450], +[0,-1004,-3161,-6124,-6125,-6126,-1752,-3578,-3691,-5728,-3122,-3994,-1954,-3445,-3690], [1,3,1803], [0,1804,1805,178,4], -[0,-906,-2030], -[0,-8,-3519], +[0,-1723,-6127], +[0,-1415,-6128], [1,3,1807], [0,0,0,1808,4], -[0,-1573,-45,-270,-1419,-1702,-778,-683,-2029,-2028,-659], +[0,-581,-3214,-3756,-6131,-5110,-6120,-3173,-6129,-6130,-770], [1,3,1810], [0,0,1811,178,8], -[0,-1573,-5555,-4,-2], +[0,-581,-6132,-1942,-2410], [1,3,1813], [0,1814,1815,1816,9], -[0,-14125,-58,-119], -[0,-421,-54,-1883,-1012,-1010,-243,-347], -[0,-1672,-14124,-14123,-2027,-2026,-14122,-1085,-14121,-14120,-14119,-5554,-14118,-14117], +[0,-6133,-719,-679], +[0,-1003,-1127,-600,-1130,-1156,-1134,-1148], +[0,-6134,-6135,-6136,-6137,-6138,-6139,-3870,-6140,-6141,-6142,-6143,-6144,-6145], [1,3,1818], [0,0,0,1819,5], -[0,-110,-3518], +[0,-589,-6146], [0,68,15,16,8], [1,3,1822], [0,1823,1824,1825,8], -[0,-261,-149,-219,-742,-3944,-128,-460,-119,-88,-14087,-644,-523,-315,-14086,-197,-14085,-14084,-14083], -[0,-14082,-307,-39,-414,-66,-744,-59,-14081], -[0,-14080,-59], +[0,-1640,-1805,-2518,-2546,-1519,-2114,-2346,-679,-1646,-6176,-1888,-1948,-725,-6177,-2062,-6178,-6179,-6180], +[0,-6181,-4215,-2322,-2363,-1405,-2491,-633,-6182], +[0,-6183,-633], [0,45,15,16,4], [1,3,1828], [0,1829,1830,1831,11], -[0,-23,-1671], -[0,-56,-14079,-66,-2558,-1498,-416], -[0,-110,-542,-2025], +[0,-1548,-6184], +[0,-756,-6185,-1405,-6186,-1991,-2111], +[0,-589,-6187,-6188], [0,45,15,16,5], [1,3,1834], [0,1835,0,1836,9], -[0,-14078,-14077,-14076,-11,-879,-427,-216,-3522,-3561,-3810,-391,-1273,-21,-140,-577,-2104,-5930,-5,-193,-2557,-928,-60, --238,-119,-576,-135,-3517,-472,-1014,-1531,-14075,-188,-248,-4,-3516,-77,-800,-130,-797,-220,-2,-112,-14074,-74,-96,-200, --2556], -[0,-3515,-14073,-14072,-3514,-14071,-14070,-52,-2,-45,-436,-1706,-3691,-46,-14069,-5553,-14068,-14067,-14066,-2024,-5552, --1670,-14065,-14064,-14063,-14062,-3729,-14061,-5551,-6,-14060,-14059,-74,-14058,-14057,-3691,-220,-14056,-14055,-800, --2023], +[0,-6189,-6190,-6191,-23,-3194,-25,-26,-6093,-5828,-3355,-3204,-3408,-40,-42,-46,-4228,-4145,-3037,-469,-6192,-501,-510, +-674,-679,-683,-714,-6193,-742,-1070,-1323,-6194,-1729,-1847,-1942,-6195,-2162,-2228,-2231,-2245,-2299,-2410,-2416,-6196, +-2476,-2550,-1376,-6197], +[0,-6198,-6199,-6200,-6201,-6202,-6203,-3161,-2410,-3214,-3018,-5065,-4726,-3445,-6204,-6205,-6206,-6207,-6208,-6209, +-6210,-6211,-6212,-6213,-6214,-6215,-4160,-6216,-6217,-2006,-6218,-6219,-2476,-6220,-6221,-4726,-2299,-6222,-6223,-2228, +-6224], [1,3,1838], [0,1839,1840,1841,10], -[0,-14054,-14053,-14052], -[0,-201,-13,-1,-3,-14051,-180,-14050], -[0,-106,-14049,-429,-745,-165,-73,-14048,-851,-603,-1669,-60,-1418], +[0,-6225,-6226,-6227], +[0,-523,-664,-932,-1654,-6228,-1972,-6229], +[0,-4055,-6230,-6231,-2487,-1838,-3215,-6232,-6233,-2059,-6234,-510,-6235], [1,3,1843], [0,0,0,1844,5], -[0,-14047,-14046,-14045,-14044,-1417,-5550,-14043,-14042,-14041,-5549,-14040,-14039], +[0,-6236,-6237,-6238,-6239,-6240,-6241,-6242,-6243,-6244,-6245,-6246,-6247], [1,3,1846], [0,1847,0,1848,8], -[0,-14038], -[0,-484,-2022,-711,-5548,-5599,-2555,-2554], +[0,-6248], +[0,-5269,-6249,-596,-6250,-5968,-6251,-6252], [1,3,1850], [0,1851,1852,7,4], -[0,-14037], -[0,-15,-39,-196,-4,-188,-180,-2,-5], +[0,-6253], +[0,-1788,-2322,-2388,-1942,-1729,-1972,-2410,-3037], [1,3,1854], [0,1855,1856,1857,9], -[0,-14036,-14035,-5547,-14034,-391,-173,-6252,-1674,-2553,-1100,-5546,-595], -[0,-14033,-50,-11,-391,-21,-14032,-178,-90,-1440,-6250,-2934,-14031,-3513,-1081,-5545,-5792,-950,-5791,-122,-29,-87,-3512, --14030,-5588,-14029,-86,-98,-14028,-14027,-355,-765,-712,-5586,-291,-14026,-576,-56,-26,-2239,-14025,-1,-5544,-32,-1536, --363,-5543,-213,-8,-3951,-1001,-236,-14024,-1315,-417,-65,-2832,-15,-235,-4,-693,-6,-35,-14023, --14022,-7,-187,-462,-14021,-154,-57,-211,-2,-17,-520,-92], -[0,-6520,-14020], +[0,-6254,-6255,-6256,-6257,-3204,-38,-2687,-6022,-6258,-2965,-6259,-2489], +[0,-6260,-21,-23,-3204,-40,-6261,-43,-44,-4757,-2697,-358,-6262,-6263,-4754,-6264,-4956,-4749,-4959,-409,-3136,-3052, +-6265,-6266,-6021,-6267,-533,-534,-6268,-6269,-539,-557,-560,-6026,-567,-6270,-683,-756,-767,-799,-6271,-932,-6272,-1168, +-1261,-1266,-6273,-1365,-1415,-1422,-1440,-1666,-6274,-1743,-1763,-1771,-1782,-1788,-1939,-1942,-2000,-2006,-2019,-6275, +-6276,-2125,-2156,-2163,-6277,-2275,-2375,-2376,-2410,-2501,-2502,-2503], +[0,-598,-6278], [1,3,1859], [0,1860,1861,1862,8], -[0,-3511,-299,-528,-197], -[0,-1332,-97,-39,-2], -[0,-299,-3510,-245,-5542], +[0,-6279,-640,-1370,-2062], +[0,-1032,-2250,-2322,-2410], +[0,-640,-6280,-5827,-6281], [1,3,1864], [0,1865,1866,1867,5], -[0,-208,-3509,-2021,-1151,-1508,-742], -[0,-60,-14019,-474,-54,-167,-243,-656,-177,-347,-345,-3,-903,-416,-6,-14018], -[0,-787], +[0,-461,-6282,-6283,-1402,-1795,-2546], +[0,-510,-6284,-710,-1127,-1132,-1134,-1136,-1144,-1148,-1542,-1654,-1859,-2111,-2006,-6285], +[0,-4005], [1,3,1869], [0,0,0,1870,5], -[0,-14017,-14016,-14015,-14014,-14013], +[0,-6286,-6287,-6288,-6289,-6290], [1,3,1872], [0,1873,1874,7,6], -[0,-14012,-20,-14011,-23,-14010,-228,-2020,-5541,-1822,-14009,-5540,-138,-14008,-14007], -[0,-14006,-6519,-135,-1,-84,-10,-76,-67,-131], +[0,-6291,-668,-6292,-1548,-6293,-1610,-6294,-6295,-1627,-6296,-6297,-2269,-6298,-6299], +[0,-6300,-601,-714,-932,-943,-958,-966,-968,-974], [0,45,15,16,8], [0,67,15,16,10], [0,67,15,16,5], [0,67,15,16,6], [1,3,1880], [0,0,1881,1882,5], -[0,-66], -[0,-3508,-783,-3507,-542], +[0,-1405], +[0,-6301,-5389,-6302,-6187], [1,3,1884], [0,0,1885,1886,5], -[0,-1028,-3902,-28,-149,-208,-14005,-3,-27,-117,-72,-7,-14004,-116,-6427,-66,-565,-1029,-112,-1581,-59,-168,-230,-396, --1000,-1845], -[0,-172,-542,-481,-5539,-1668,-60,-629,-3506,-5538,-2552,-5537,-5536,-14003], +[0,-705,-2152,-1107,-1805,-461,-6303,-1654,-2210,-1452,-1650,-2125,-6304,-615,-1303,-1405,-1813,-693,-2416,-462,-633,-617, +-769,-2187,-1453,-1161], +[0,-1961,-6187,-5923,-6305,-6306,-510,-5867,-6307,-6308,-6309,-6310,-6311,-6312], [1,3,1888], [0,0,1889,1890,6], -[0,-3,-5535,-1859], -[0,-14002,-14001,-14000,-13999,-13998], +[0,-1654,-6313,-953], +[0,-6314,-6315,-6316,-6317,-6318], [1,3,1892], [0,1893,81,7,6], -[0,-475,-924,-36,-652,-470,-992,-464,-1497,-981], +[0,-651,-737,-812,-1335,-1351,-1800,-1983,-1999,-2401], [1,3,1895], [0,1896,1897,1898,4], -[0,-116,-13997,-1155,-23], -[0,-13996,-13,-1,-12,-25,-9,-166,-6411,-18,-3,-566,-15,-605,-4,-27,-186,-797,-123], -[0,-808,-566,-1066,-1267,-13995,-13994], +[0,-615,-6319,-1369,-1548], +[0,-6320,-664,-932,-940,-967,-1344,-1446,-1497,-1534,-1654,-1691,-1788,-1857,-1942,-2210,-2211,-2245,-2446], +[0,-1818,-1691,-6321,-3742,-6322,-6323], [1,3,1900], [0,182,1901,1902,4], -[0,-354,-1144,-997], -[0,-627,-105], +[0,-707,-1510,-1607], +[0,-6324,-1334], [1,3,1904], [0,0,1905,148,4], -[0,-2869,-258,-261,-77,-1280,-78,-1,-206,-249,-274,-14,-2806,-175,-199,-101,-288,-38,-272,-6047,-4,-1182,-26,-2745,-179, --50,-1840,-11,-3505,-1745,-497,-696,-2810,-3504,-160,-343,-2715,-2714,-400,-1140,-2551,-13993,-790,-411,-963,-486,-965, --5534,-1335,-3787,-340,-21,-13992,-763,-203,-10,-150,-139,-1526,-5533,-232,-214,-212,-2139, --80,-3503,-1801,-755,-6048,-63,-1527,-2140,-3785,-3786], +[0,-1389,-2564,-1640,-2162,-2834,-1471,-932,-1111,-1437,-2093,-2127,-2149,-2334,-1412,-1442,-1753,-1889,-2195,-3574,-1942, +-699,-767,-3031,-2281,-21,-1354,-23,-6325,-3563,-1333,-1891,-2096,-6326,-518,-1772,-3559,-3564,-1481,-1547,-6327,-6328, +-2997,-3660,-3803,-3649,-3562,-6329,-945,-3566,-2429,-40,-6330,-957,-3326,-958,-978,-1475,-1477,-6331,-3561,-963,-1479, +-3571, +-350,-6332,-2084,-1486,-3565,-351,-1473,-3569,-3573,-3568], [1,3,1907], [0,0,1908,1909,4], -[0,-77,-13991,-351], -[0,-476,-77,-24,-5532], +[0,-2162,-6333,-888], +[0,-620,-2162,-775,-6334], [1,3,1911], [0,0,0,1912,4], -[0,-1185], +[0,-622], [1,3,1914], [0,1915,1916,1917,8], -[0,-6234,-446,-20,-2901,-394,-210,-2754,-880], -[0,-51,-15,-81,-34], -[0,-37,-2019,-5531,-174,-869,-194,-868,-455,-3502,-183], +[0,-2728,-656,-668,-688,-2267,-2400,-2820,-2528], +[0,-519,-1788,-2384,-2541], +[0,-687,-6335,-6336,-3974,-4110,-4000,-4111,-4112,-6337,-5554], [1,3,1919], [0,1920,1921,1922,4], -[0,-13990,-128,-13989,-71], -[0,-59,-315,-85,-460], -[0,-59,-2550,-303,-13988,-107,-856,-1667,-1084,-2031], +[0,-6338,-2114,-6339,-2347], +[0,-633,-725,-2319,-2346], +[0,-633,-6340,-1076,-6341,-3862,-5142,-6342,-4161,-6118], [1,3,1924], [0,1925,1926,1927,4], -[0,-36,-93,-1102,-2549,-13987,-2548,-1666], -[0,-13,-3,-7,-40,-373,-2547,-265,-1882,-5530], -[0,-1666,-45], +[0,-812,-1645,-2488,-6343,-6344,-6345,-6346], +[0,-664,-1654,-2125,-1077,-2091,-6347,-964,-630,-6348], +[0,-6346,-3214], [1,3,1929], [0,1930,1931,1932,4], -[0,-1666,-13986], -[0,-13985,-1882,-13,-3,-2547], -[0,-1666,-494,-669], +[0,-6346,-6349], +[0,-6350,-630,-664,-1654,-6347], +[0,-6346,-1631,-6351], [1,3,1934], [0,1935,1936,7,6], -[0,-736,-3860,-1330,-2548,-156,-1102], -[0,-109,-69,-5,-13984,-13,-289,-3,-13983,-15,-4,-13982,-196,-1289,-5529,-2], +[0,-3628,-2731,-1054,-6345,-2359,-2488], +[0,-3035,-3621,-3037,-6352,-664,-726,-1654,-6353,-1788,-1942,-6354,-2388,-2389,-6355,-2410], [1,3,1938], [0,1939,1940,1941,6], -[0,-13981,-13980,-13979,-20,-119,-223,-1564,-13978,-13977,-13976,-922,-709,-40,-614,-529,-362,-1310,-3566,-1497,-13975, --3902,-802,-1113,-396,-1112,-800,-1101,-96], -[0,-5,-13974,-13,-13973,-325,-1422,-3,-4,-522,-113,-416,-7,-27,-1295,-146,-138,-125,-2,-70], -[0,-13972,-24,-13971,-2018], +[0,-6356,-6357,-6358,-668,-679,-729,-731,-6359,-6360,-6361,-990,-1072,-1077,-1336,-1361,-1639,-1812,-5763,-1999,-6362, +-2152,-2178,-2186,-2187,-2188,-2228,-2594,-2550], +[0,-3037,-6363,-664,-6364,-1119,-5735,-1654,-1942,-1980,-2105,-2111,-2125,-2210,-2229,-2234,-2269,-2293,-2410,-2460], +[0,-6365,-775,-6366,-6367], [1,3,1943], [0,1944,1945,1946,5], -[0,-195,-28,-132,-742,-293,-299,-422,-706,-5528,-2546,-1065,-287,-128,-528,-988,-71,-13970,-2545,-1146,-13969,-5527,-749, --3501,-5526,-13968,-315,-3500,-13967,-3499,-3498,-13966,-2544,-3497,-13965,-3496,-697,-2543,-197,-3495,-13964,-1875, --2542,-2541,-5525,-13963,-3494,-5604,-13962], -[0,-13961,-85,-597,-16,-460,-2257,-5524,-2540,-474,-3493,-13960,-13959,-3492], -[0,-91,-407,-860,-13958,-1084,-158,-45], +[0,-2435,-1107,-2444,-2546,-507,-640,-997,-1285,-6368,-6369,-6370,-1958,-2114,-1370,-1977,-2347,-6371,-6372,-1464,-6373, +-6374,-2194,-6375,-6376,-6377,-725,-6378,-6379,-6380,-6381,-6382,-6383,-6384,-6385,-6386,-1848,-6387,-2062,-6388,-6389, +-771,-6390,-6391,-6392,-6393,-6394,-5936,-6395], +[0,-6396,-2319,-2330,-2177,-2346,-573,-6397,-6398,-710,-6399,-6400,-6401,-6402], +[0,-4865,-4792,-4791,-6403,-4161,-1764,-3214], [1,3,1948], [0,1949,1950,1951,9], -[0,-13957,-13956,-13955,-128,-460], -[0,-79,-752,-180,-113,-7,-85,-13954], -[0,-59,-2550,-672,-918,-55,-507,-3491,-860], +[0,-6404,-6405,-6406,-2114,-2346], +[0,-1449,-1705,-1972,-2105,-2125,-2319,-6407], +[0,-633,-6340,-5396,-1109,-1110,-6408,-6409,-4791], [1,3,1953], [0,1954,0,1955,9], -[0,-2539,-1183,-5562,-13953,-5523], -[0,-4017,-2017,-13952], +[0,-6410,-658,-6088,-6411,-6412], +[0,-657,-6413,-6414], [1,3,1957], [0,1958,1959,1960,11], -[0,-5522], -[0,-39,-7,-2,-5,-5521], -[0,-13951,-13950,-659,-13949,-1416,-5520,-777,-510,-13948], +[0,-6415], +[0,-2322,-2125,-2410,-3037,-6416], +[0,-6417,-6418,-770,-6419,-6420,-6421,-6422,-5835,-6423], [1,3,1962], [0,0,1963,1964,10], -[0,-15,-312,-81,-13,-123,-20,-3,-27,-1,-14,-33,-4,-110,-188,-186,-2,-109,-5,-69,-269,-297,-1270,-146,-1170,-12,-25,-478, --319,-19,-63,-5519,-22,-1357], -[0,-376,-1881,-73], +[0,-1788,-2323,-2384,-664,-2446,-668,-1654,-2210,-932,-2127,-2379,-1942,-589,-1729,-2211,-2410,-3035,-3037,-3621,-4372, +-1588,-3625,-2234,-977,-940,-967,-262,-3267,-428,-351,-6424,-427,-234], +[0,-1671,-637,-3215], [1,3,1966], [0,0,0,1967,6], -[0,-4019,-91], +[0,-638,-4865], [1,3,1969], [0,1970,1971,1972,8], -[0,-208,-13947,-1665,-20,-297,-88,-13946], -[0,-13945,-1,-28,-3,-7,-14,-2016,-80,-231,-63,-130,-146,-5518], -[0,-45,-5517,-13944,-5516,-430,-1415,-339,-2034], +[0,-461,-6425,-6426,-668,-1588,-1646,-6427], +[0,-6428,-932,-1107,-1654,-2125,-2127,-6429,-350,-4062,-351,-2231,-2234,-6430], +[0,-3214,-6431,-6432,-6433,-4795,-6434,-3184,-6052], [1,3,1974], [0,1975,1976,1977,11], -[0,-1884,-5606], -[0,-768,-110,-59,-315,-6424,-3558,-5619,-798,-39,-71,-112], -[0,-3490,-91,-59,-299,-13943,-13942,-5515], +[0,-578,-5933], +[0,-468,-589,-633,-725,-1345,-5852,-5848,-2239,-2322,-2347,-2416], +[0,-6435,-4865,-633,-640,-6436,-6437,-6438], [1,3,1979], [0,0,1980,1981,4], -[0,-239,-766,-279,-1,-213,-275,-187,-39], -[0,-299,-1664], +[0,-5834,-515,-516,-932,-1365,-1777,-2156,-2322], +[0,-640,-6439], [1,3,1983], [0,1984,1985,1986,4], -[0,-2030], -[0,-3,-610,-3519], -[0,-2252], +[0,-6127], +[0,-1654,-1733,-6128], +[0,-642], [1,3,1988], [0,0,14,1989,5], -[0,-13941,-5514,-13940,-141,-370,-1467,-13939,-1256,-670,-2538], +[0,-6440,-6441,-6442,-3966,-3209,-3103,-6443,-4108,-5839,-6444], [1,3,1991], [0,0,1992,1993,5], -[0,-382,-696,-4,-7,-77], -[0,-24,-77,-432,-3489,-1718,-636,-52], +[0,-784,-1891,-1942,-2125,-2162], +[0,-775,-2162,-3754,-6445,-4672,-3576,-3161], [1,3,1995], [0,1996,1997,1998,5], -[0,-3800,-13938,-2537,-2273,-2935,-5513,-13937,-3662,-201,-20,-36,-13936,-5512,-149], -[0,-2097,-2658,-109,-162,-13935,-69,-5,-269,-22,-13,-1,-1337,-2235,-12,-25,-3,-1516,-198,-417,-15,-1723,-395,-27,-33,-2], -[0,-99,-42,-681,-2730,-3488,-37], +[0,-3417,-6446,-6447,-303,-304,-6448,-6449,-5007,-523,-668,-812,-6450,-6451,-1805], +[0,-4367,-4368,-3035,-3198,-6452,-3621,-3037,-4372,-427,-664,-932,-938,-939,-940,-967,-1654,-1661,-1722,-1763,-1788,-4362, +-2200,-2210,-2379,-2410], +[0,-3690,-856,-3438,-3328,-6453,-687], [1,3,2000], [0,2001,31,2002,5], -[0,-5526,-3493,-315,-3509,-88,-71], -[0,-59,-1084,-541,-227,-407], +[0,-6376,-6399,-725,-6282,-1646,-2347], +[0,-633,-4161,-6454,-1644,-4792], [1,3,2004], [0,2005,2006,2007,6], -[0,-2536,-236,-5511,-13934], -[0,-13933,-85,-3877,-2174,-997], -[0,-263,-367,-5510,-106,-1347], +[0,-6455,-1666,-6456,-6457], +[0,-6458,-2319,-2454,-2456,-1607], +[0,-1573,-5545,-6459,-4055,-648], [1,3,2009], [0,2010,2011,2012,6], -[0,-13932], -[0,-5509,-1], -[0,-13931,-871,-2015,-657], +[0,-6460], +[0,-6461,-932], +[0,-6462,-4054,-6463,-1069], [1,3,2014], [0,2015,2016,2017,4], -[0,-2207], -[0,-13930,-13929,-13928,-1414,-13927,-13926], -[0,-2078,-670,-299,-3490,-13925,-6514,-106,-881,-5508], +[0,-1578], +[0,-6464,-6465,-6466,-6467,-6468,-6469], +[0,-5149,-5839,-640,-6435,-6470,-650,-4055,-2512,-6471], [1,3,2019], [0,0,2020,2021,4], -[0,-1,-214,-3,-15], -[0,-2535,-475,-202,-165,-73,-452,-1413], +[0,-932,-963,-1654,-1788], +[0,-6472,-651,-3590,-1838,-3215,-5845,-6473], [1,3,2023], [0,2024,2025,2026,4], -[0,-13924,-2675,-349,-2534,-2080,-1705,-2079,-3531,-13923,-96,-518], -[0,-5,-13,-5507,-26,-3,-97,-33,-2], -[0,-787,-5506,-75,-66,-3487,-5505,-141], +[0,-6474,-4003,-1047,-6475,-5086,-5087,-5089,-6030,-6476,-2550,-2551], +[0,-3037,-664,-6477,-767,-1654,-2250,-2379,-2410], +[0,-4005,-6478,-4004,-1405,-6479,-6480,-3966], [1,3,2028], [0,0,2029,7,5], -[0,-1750,-8,-118,-9,-206,-14,-89,-2599,-57,-33,-124,-40,-4,-13922,-2,-11,-29,-18,-997,-185,-120,-13921,-415,-1223,-80, --298,-63,-3486], +[0,-3446,-1415,-999,-1344,-1111,-2127,-928,-5354,-2375,-2379,-2402,-1077,-1942,-6481,-2410,-23,-3136,-1534,-1607,-3048, +-2174,-6482,-2132,-6483,-350,-796,-351,-6484], [1,3,2031], [0,2032,2033,2034,11], -[0,-2860,-13920], -[0,-320,-1412,-13919,-5,-103,-3485,-13918,-7,-171,-2,-30,-13917], -[0,-433,-2014,-13916,-141,-453,-13915,-690,-2845,-13914,-3484,-13913,-13912,-13911,-13910,-13909], +[0,-1495,-6485], +[0,-2581,-6486,-6487,-3037,-3664,-6488,-6489,-2125,-2391,-2410,-2469,-6490], +[0,-3324,-6491,-6492,-3966,-4601,-6493,-2071,-1622,-6494,-6495,-6496,-6497,-6498,-6499,-6500], [1,3,2036], [0,2037,2038,2039,4], -[0,-13908,-13907,-3483,-13906], -[0,-239,-279,-510,-1555,-1,-1166,-1015,-2579,-213,-275,-15,-1312,-187,-39], -[0,-45,-338,-1663,-270,-5504,-13905,-3482,-3481,-5503,-1030,-1662,-1226,-2580], +[0,-6501,-6502,-6503,-6504], +[0,-5834,-516,-5835,-921,-932,-993,-1065,-5836,-1365,-1777,-1788,-1794,-2156,-2322], +[0,-3214,-3217,-6505,-3756,-6506,-6507,-6508,-6509,-6510,-655,-6511,-5924,-5831], [1,3,2041], [0,0,14,2042,4], -[0,-446,-2533,-5502,-2013,-3480,-5501,-1560,-247,-5500,-163,-183,-452,-5499,-3479], +[0,-656,-6512,-6513,-6514,-6515,-6516,-864,-2424,-6517,-2265,-5554,-5845,-6518,-6519], [1,3,2044], [0,0,0,2045,4], -[0,-1236,-585,-256,-91], +[0,-5180,-5177,-3839,-4865], [1,3,2047], [0,0,0,2048,5], -[0,-3478], +[0,-6520], [1,3,2050], [0,2051,2052,2053,9], -[0,-906,-3477], -[0,-5,-5498,-41,-101,-3,-991,-97,-81,-2], -[0,-327,-3476,-1661,-13904,-13903,-281,-1704,-1064], +[0,-1723,-6521], +[0,-3037,-6522,-1004,-1442,-1654,-1870,-2250,-2384,-2410], +[0,-659,-6523,-6524,-6525,-6526,-6527,-5093,-6528], [0,45,15,16,9], [1,3,2056], [0,0,2057,2058,4], -[0,-279,-1,-191,-10,-40,-3,-17], -[0,-17,-107,-13902,-628,-407], +[0,-516,-932,-934,-958,-1077,-1654,-2501], +[0,-2501,-3862,-6529,-6024,-4792], [1,3,2060], [0,0,0,2061,5], -[0,-903,-13901,-75,-61,-5497], +[0,-1859,-6530,-4004,-3634,-6531], [1,3,2063], [0,0,2064,2065,5], -[0,-43,-13900,-3,-1,-89,-55,-5496,-2238,-4,-48,-2,-5495,-5494,-877,-181,-13899,-80,-1274], -[0,-75,-1072,-293,-61,-13], +[0,-652,-6532,-1654,-932,-928,-1110,-6533,-820,-1942,-190,-2410,-6534,-6535,-3311,-960,-6536,-350,-3312], +[0,-4004,-5855,-507,-3634,-664], [1,3,2067], [0,2068,2069,2070,5], -[0,-5495], -[0,-43,-13,-3,-1,-55,-4,-48], -[0,-13,-2532,-91,-60,-61,-3475,-481,-1668], +[0,-6534], +[0,-652,-664,-1654,-932,-1110,-1942,-190], +[0,-664,-6537,-4865,-510,-3634,-6538,-5923,-6306], [1,3,2072], [0,0,183,2073,9], -[0,-13,-1809,-5493], +[0,-664,-1841,-6539], [1,3,2075], [0,0,2076,2077,9], -[0,-13,-3,-66,-56,-2547,-13898], -[0,-13,-2532,-13897,-13896,-3474,-107,-13895,-1222,-5492,-511,-5491,-5490,-13894], +[0,-664,-1654,-1405,-756,-6347,-6540], +[0,-664,-6537,-6541,-6542,-6543,-3862,-6544,-6545,-6546,-5572,-6547,-6548,-6549], [1,3,2079], [0,0,2080,2081,8], -[0,-43,-34,-51,-81,-118,-1520,-1523,-13893,-5,-2142], -[0,-224,-671,-135,-174,-194,-37,-163,-240,-225,-548,-431,-584,-726,-1232,-254,-638,-263,-367,-294,-183], +[0,-652,-2541,-519,-2384,-999,-1612,-1575,-6550,-3037,-3523], +[0,-712,-5535,-714,-3974,-4000,-687,-2265,-5514,-5553,-3770,-3975,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958,-5554], [1,3,2083], [0,0,2084,2085,10], -[0,-51,-94,-56,-13892,-1,-13891,-32,-13890,-530,-314,-313,-13889,-23,-15,-1304], -[0,-4016,-850,-114,-75,-13888,-849,-2012,-13887], +[0,-519,-528,-756,-6551,-932,-6552,-1168,-6553,-1197,-1243,-1252,-6554,-1548,-1788,-1976], +[0,-669,-6555,-3262,-4004,-6556,-6557,-6558,-6559], [1,3,2087], [0,0,0,2088,5], -[0,-2576,-2013,-452,-507,-2533,-3479,-3473,-13886,-13885], +[0,-5888,-6514,-5845,-6408,-6512,-6519,-6560,-6561,-6562], [1,3,2090], [0,2091,2092,7,4], -[0,-5489,-13884,-1346,-13883,-1750,-13882,-13881,-149,-606,-1660,-2531,-16,-1411], -[0,-5,-137,-103,-1,-1552,-527,-4,-134,-2,-1287,-30], +[0,-6563,-6564,-734,-6565,-3446,-6566,-6567,-1805,-1852,-6568,-6569,-2177,-6570], +[0,-3037,-3199,-3664,-932,-944,-1431,-1942,-2251,-2410,-2423,-2469], [1,3,2094], [0,2095,2096,2097,4], -[0,-13880], -[0,-80,-2530,-231,-63,-252,-329,-13879,-22,-19,-13878,-13877,-13876,-289,-56,-26,-1,-13875,-5488,-763,-214,-381,-28,-199, --378,-78,-139,-612,-1831,-212,-400,-2140,-755,-13874,-702,-1464,-236,-907,-991,-14,-895,-2139,-13873,-226,-2,-96], -[0,-327,-3472,-450,-13872,-585,-636], +[0,-6571], +[0,-350,-6572,-4062,-351,-367,-426,-6573,-427,-428,-6574,-6575,-6576,-726,-756,-767,-932,-6577,-6578,-957,-963,-985,-1107, +-1412,-1413,-1471,-1475,-1476,-1478,-1479,-1481,-3569,-1486,-6579,-1491,-3222,-1666,-1667,-1870,-2127,-2130,-3571,-6580, +-2140,-2410,-2550], +[0,-659,-6581,-6582,-6583,-5177,-3576], [1,3,2099], [0,2100,2101,2102,11], -[0,-607,-284,-3471,-1659,-497,-13871,-4003,-2529,-13870,-13869,-13868], -[0,-153,-555,-9,-79,-1,-249,-30,-55,-4,-1108,-48,-2,-5,-18,-586,-487,-13867,-115,-13866,-83,-103,-181,-848,-150,-2821, --3470,-12], -[0,-3469,-249,-1456,-3468,-73,-255,-506,-31], +[0,-1839,-2426,-6584,-6585,-1333,-6586,-861,-6587,-6588,-6589,-6590], +[0,-2392,-2386,-1344,-1449,-932,-1437,-2469,-1110,-1942,-2354,-190,-2410,-3037,-1534,-4647,-3615,-6591,-965,-6592,-2411, +-3664,-960,-6593,-978,-1943,-6594,-940], +[0,-6595,-1437,-3585,-6596,-3215,-5092,-6597,-3264], [1,3,2104], [0,2105,2106,2107,5], -[0,-230,-13865,-1807], -[0,-182,-3526,-1887,-328,-13,-1,-117,-3], -[0,-1221,-287,-481], +[0,-769,-6598,-1962], +[0,-526,-6066,-548,-559,-664,-932,-1452,-1654], +[0,-6599,-1958,-5923], [1,3,2109], [0,2110,2111,2112,4], -[0,-90,-13864,-1738,-13863,-5682,-2264,-2256,-13862,-267,-1181,-5749,-832,-159,-2245,-13861,-13860,-13859,-13858,-5681, --13857,-6134,-13856,-13855,-1836,-101,-13854,-117,-2528,-13853,-5748,-236,-13852,-4,-3681,-5487,-13851,-694,-2090,-3669, --13850,-13849,-13848,-13847,-2814,-439,-5486,-13846,-898,-6341,-6339,-1118,-13845,-2089,-1492,-13844,-44,-247,-595,-123], -[0,-11,-216,-622,-1196,-1038,-306,-2723,-1230,-2145,-13843,-173,-6092,-2144,-21,-136,-2697,-2696,-2695,-965,-2155,-13842, --13841,-1279,-3467,-13840,-29,-13839,-142,-1220,-13838,-5747,-47,-13837,-87,-1658,-13836,-1436,-22,-19,-767,-160,-201, --169,-94,-86,-98,-4028,-5675,-6135,-13835,-13834,-13833,-13832,-1879,-20,-3584,-58,-26,-144,-6144,-764,-2087,-5673, --445,-1022,-1772,-1,-266,-12,-827,-10,-145,-148,-214,-64,-13831,-919,-2232,-2635,-277,-3986,-348,-28,-32,-615,-313,-5672, --1536,-9,-1005,-3956,-5485,-8,-79,-2152,-222,-5669,-18,-23,-1709,-5668,-13830,-3583,-377,-88,-72,-1317,-2203,-1130,-6391, --907,-242,-2199,-38,-492,-441,-5796,-13829,-13828,-2633,-6,-2817,-1120,-2816,-2815,-6132,-6133, --13827,-1803,-13826,-864,-601,-1681,-5666,-3757,-5665,-7,-5664,-13825,-179,-3664,-3663,-558,-2630,-1489,-392,-71,-211,-2, --133,-438,-13824,-2527,-17,-13823,-519,-2588,-1708,-3833,-1777], -[0,-13822,-435,-6,-108,-129,-127,-102,-52,-53], +[0,-44,-6600,-3946,-6601,-5579,-513,-595,-6602,-682,-709,-5212,-747,-753,-761,-6603,-6604,-6605,-6606,-5581,-6607,-3135, +-6608,-6609,-1398,-1442,-6610,-1452,-6611,-6612,-5216,-1666,-6613,-1942,-4918,-6614,-6615,-1992,-4930,-4987,-6616,-6617, +-6618,-6619,-2027,-2029,-6620,-6621,-2040,-2048,-2056,-2113,-6622,-4951,-2192,-6623,-2387,-2424,-2489,-2446], +[0,-23,-26,-33,-34,-35,-36,-3396,-5585,-3381,-6624,-38,-3351,-3382,-40,-41,-3744,-3746,-3747,-3562,-3059,-6625,-6626, +-3043,-6627,-6628,-3136,-6629,-3044,-6630,-6631,-5221,-3040,-6632,-3052,-6633,-6634,-4972,-427,-428,-482,-518,-523,-527, +-528,-533,-534,-538,-5596,-3133,-6635,-6636,-6637,-6638,-661,-668,-5598,-719,-767,-778,-3078,-786,-4977,-5603, +-915,-916,-2760,-932,-933,-940,-951,-958,-959,-962,-963,-969,-6639,-1017,-1021,-4979,-1041,-1074,-1103,-1107,-1168,-1174, +-1252,-5605,-1261,-1344,-1352,-1360,-6640,-1415,-1449,-3134,-1521,-5611,-1534,-1548,-4984,-5613,-6641,-5615,-1643,-1646, +-1650,-1652,-1653,-1662,-1664,-1667,-1792,-1814,-1889,-1908,-1952,-4923,-6642,-6643,-4986,-2006,-2012,-2013,-2016,-2017, +-3145,-3143, +-6644,-2028,-6645,-4242,-2098,-5616,-5617,-3868,-5618,-2125,-5619,-6646,-2281,-4997,-4998,-2282,-4999,-2284,-2335,-2347, +-2376,-2410,-2427,-2437,-6647,-6648,-2501,-6649,-2508,-5628,-5002,-3120,-2534], +[0,-6650,-3099,-2006,-3159,-3095,-3098,-3160,-3161,-3100], [1,3,2114], [0,2115,2116,2117,4], -[0,-5484], -[0,-13821,-5,-4,-2778,-2,-1716], -[0,-303,-594,-13820,-5483,-5482,-126,-2231], +[0,-6651], +[0,-6652,-3037,-1942,-2358,-2410,-4701], +[0,-1076,-2490,-6653,-6654,-6655,-6656,-1080], [1,3,2119], [0,0,2120,184,5], -[0,-1877,-9,-459,-97,-39], +[0,-686,-1344,-2910,-2250,-2322], [1,3,2122], [0,2123,0,2124,5], -[0,-426,-331,-3792,-1360,-1192,-2718,-1590,-13818,-2143,-590,-1036,-13817,-1583,-356,-448,-1586,-621,-1897,-1358,-1193, --13816,-13815,-13814,-13813,-1589,-13812,-6061,-6065,-1194,-13811,-1359,-1593,-13810,-1588,-1587,-13809,-13808,-13807, --6060,-3466,-13806,-1591,-1585,-13805,-1592,-13804,-13803,-6063,-13802,-1037,-3793,-6066,-13801,-13800,-1594,-6064, --13799,-3791,-1584,-13798,-13797], -[0,-967,-290,-876,-789,-875,-412,-31,-1272,-966,-1461,-1460,-1748,-1747,-1459,-52], +[0,-81,-66,-3512,-73,-74,-3520,-62,-6660,-3503,-3502,-71,-6661,-79,-83,-68,-72,-80,-82,-85,-70,-6662,-6663,-6664,-6665, +-63,-6666,-3519,-3513,-64,-6667,-76,-54,-6668,-67,-69,-6669,-6670,-6671,-3521,-6672,-6673,-56,-75,-6674,-55,-6675,-6676, +-3515,-6677,-65,-3504,-3511,-6678,-6679,-52,-3514,-6680,-3526,-77,-6681,-6682], +[0,-3488,-681,-3489,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161], [1,3,2126], [0,0,2127,2128,5], -[0,-81,-14,-1108,-419,-1137,-231,-80,-63], -[0,-6,-24,-2149,-5481,-267,-132,-202], +[0,-2384,-2127,-2354,-1339,-1605,-4062,-350,-351], +[0,-2006,-775,-3205,-6683,-682,-2444,-3590], [1,3,2130], [0,185,2131,2132,5], -[0,-59,-1,-191,-614,-198,-1112,-1481], -[0,-24,-776], +[0,-633,-932,-934,-1336,-1722,-2188,-2471], +[0,-775,-6684], [1,3,2134], [0,2135,2136,2137,10], -[0,-151], -[0,-50,-11,-21,-140,-13796,-29,-5,-13795,-86,-152,-26,-237,-1,-118,-9,-8,-18,-2211,-417,-4,-2190,-16,-13794,-2,-17], -[0,-17,-107,-1219,-141], +[0,-824], +[0,-21,-23,-40,-42,-6685,-3136,-3037,-6686,-533,-708,-767,-825,-932,-999,-1344,-1415,-1534,-1535,-1763,-1942,-2061,-2177, +-6687,-2410,-2501], +[0,-2501,-3862,-6688,-3966], [1,3,2139], [0,0,0,2140,5], -[0,-240,-2248,-174], +[0,-5514,-685,-3974], [1,3,2142], [0,186,14,2143,8], -[0,-2248,-358,-407,-628,-433,-5479,-5478,-13793,-2727,-775,-626,-1410,-709], +[0,-685,-3551,-4792,-6024,-3324,-6690,-6691,-6692,-3346,-6693,-6694,-6695,-1072], [1,3,2145], [0,2146,0,2147,5], -[0,-28,-921], -[0,-37,-1722,-2525,-13792,-13791,-587,-194,-13790,-13789,-5477,-308,-13788], +[0,-1107,-1000], +[0,-687,-4376,-6696,-6697,-6698,-4377,-4000,-6699,-6700,-6701,-3957,-6702], [1,3,2149], [0,0,2150,2151,8], -[0,-51,-2,-34], -[0,-37,-2019,-5531,-174,-869,-194,-868,-455,-3502,-183,-106], +[0,-519,-2410,-2541], +[0,-687,-6335,-6336,-3974,-4110,-4000,-4111,-4112,-6337,-5554,-4055], [1,3,2153], [0,2154,2155,2156,4], -[0,-5476,-1554,-5475,-1675,-13787], -[0,-1,-3465,-3464,-3463,-9,-18,-15,-3462,-5474], -[0,-240,-224,-194,-174,-37,-254,-263,-367,-638], +[0,-6703,-922,-6704,-5969,-6705], +[0,-932,-6706,-6707,-6708,-1344,-1534,-1788,-6709,-6710], +[0,-5514,-712,-4000,-3974,-687,-5550,-1573,-5545,-2547], [1,3,2158], [0,2159,2160,2161,11], -[0,-6328], -[0,-5,-51,-2,-34], -[0,-37,-2047,-240,-2524,-5473,-5472,-13786,-869,-174,-194,-431,-254,-294], +[0,-2120], +[0,-3037,-519,-2410,-2541], +[0,-687,-5564,-5514,-6711,-6712,-6713,-6714,-4110,-3974,-4000,-3975,-5550,-3958], [1,3,2163], [0,0,0,2164,9], -[0,-37], +[0,-687], [1,3,2166], [0,0,2167,2168,4], -[0,-51,-1523,-2523,-2,-34], -[0,-37,-2011,-3461,-174,-869,-194,-868,-455,-2110,-2672,-361,-2109,-785,-2108,-106], +[0,-519,-1575,-6715,-2410,-2541], +[0,-687,-6716,-6717,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117,-4055], [1,3,2170], [0,187,2171,2172,10], -[0,-82,-13785], -[0,-37,-135,-734], +[0,-2198,-6718], +[0,-687,-714,-4002], [1,3,2174], [0,2175,2176,188,5], -[0,-23,-394,-135], -[0,-13784,-13,-1029,-56,-5471,-2522,-32,-1008,-364,-363,-27,-186], +[0,-1548,-2267,-714], +[0,-6719,-664,-693,-756,-6720,-6721,-1168,-1220,-1231,-1266,-2210,-2211], [1,3,2178], [0,117,2179,188,10], -[0,-1029,-1,-12,-25,-8,-5470,-3459,-4], +[0,-693,-932,-940,-967,-1415,-6725,-6726,-1942], [1,3,2181], [0,2182,14,2183,10], -[0,-2798,-394], -[0,-13782,-13781,-183,-3458,-2643,-37,-174,-869,-254,-2010,-240,-163], +[0,-2219,-2267], +[0,-6727,-6728,-5554,-6729,-4783,-687,-3974,-4110,-5550,-6730,-5514,-2265], [1,3,2185], [0,2186,2187,76,4], -[0,-20,-44,-914,-23,-16,-101,-13780,-40,-138,-2273,-767,-5870,-13779,-929,-1679,-394,-13778,-13777,-817,-13776,-461, --13775,-13774,-13773,-2770], -[0,-13,-201,-3,-1,-33,-3703,-2,-109,-5,-69,-142,-137,-411,-185,-244,-13772,-13771,-5869,-1337,-13770,-2655,-732,-2235], +[0,-668,-2387,-1401,-1548,-2177,-1442,-6731,-1077,-2269,-303,-482,-4366,-6732,-480,-5676,-2267,-6733,-6734,-1366,-6735, +-2297,-6736,-6737,-6738,-2591], +[0,-664,-523,-1654,-932,-2379,-4361,-2410,-3035,-3037,-3621,-3044,-3199,-3660,-3048,-665,-6739,-6740,-4369,-938,-6741, +-4373,-4269,-939], [1,3,2189], [0,2190,2191,2192,5], -[0,-3750], -[0,-63,-319,-29,-142,-5,-13769,-22,-19,-13768,-3457,-1,-13767,-64,-498,-8,-23,-14,-5469,-57,-33,-2], -[0,-37,-2,-73,-723,-1062,-587,-854,-308], +[0,-3922], +[0,-351,-3267,-3136,-3044,-3037,-6742,-427,-428,-6743,-6744,-932,-6745,-969,-1100,-1415,-1548,-2127,-6746,-2375,-2379, +-2410], +[0,-687,-2410,-3215,-6747,-6748,-4377,-5829,-3957], [1,3,2194], [0,2195,2196,2197,5], -[0,-13766,-1409,-5468], -[0,-11,-21,-98,-13,-26,-1,-191,-12,-10,-25,-9,-78,-703,-139,-189,-1320,-526,-18,-3,-4,-27,-81,-1105,-17,-92], -[0,-1182,-669,-13765], +[0,-6749,-6750,-6751], +[0,-23,-40,-534,-664,-767,-932,-934,-940,-958,-967,-1344,-1471,-1474,-1475,-1482,-1489,-1492,-1534,-1654,-1942,-2210, +-2384,-2417,-2501,-2503], +[0,-699,-6351,-6752], [1,3,2199], [0,2200,55,2201,4], -[0,-13764,-118,-13763,-914,-13762,-5467], -[0,-1182,-669,-13761,-5466,-13760,-603,-1669,-13759,-13758,-13757,-13756], +[0,-6753,-999,-6754,-1401,-6755,-6756], +[0,-699,-6351,-6757,-6758,-6759,-2059,-6234,-6760,-6761,-6762,-6763], [1,3,2203], [0,2204,2205,157,4], -[0,-394,-138,-880], -[0,-5,-22,-19,-43,-13,-20,-26,-1,-10,-115,-2229,-3,-7,-5535,-2], +[0,-2267,-2269,-2528], +[0,-3037,-427,-428,-652,-664,-668,-767,-932,-958,-965,-1166,-1654,-2125,-6313,-2410], [1,3,2207], [0,0,83,7,6], [1,3,2209], [0,0,2210,2211,10], -[0,-381,-1104,-175], -[0,-2149,-5481,-267], +[0,-985,-2447,-2334], +[0,-3205,-6683,-682], [1,3,2213], [0,2214,0,2215,5], -[0,-1566], -[0,-13755,-784,-5540,-5465,-2011,-2648,-1063,-194,-299], +[0,-689], +[0,-6764,-4340,-6297,-6765,-6716,-4700,-6722,-4000,-640], [1,3,2217], [0,0,2218,2219,6], -[0,-59,-13754,-3,-1512], -[0,-60,-1683,-114,-13753,-5464], +[0,-633,-6766,-1654,-1693], +[0,-510,-5411,-3262,-6767,-6768], [1,3,2221], [0,2222,2223,2224,4], -[0,-2861], -[0,-82,-3,-1028], -[0,-174,-194,-490,-1735,-1702,-5463,-1028], +[0,-1494], +[0,-2198,-1654,-705], +[0,-3974,-4000,-1965,-3959,-5110,-6769,-705], [1,3,2226], [0,182,2227,2228,5], -[0,-1144,-997], -[0,-75,-350,-1072], +[0,-1510,-1607], +[0,-4004,-1001,-5855], [1,3,2230], [0,2231,2232,2233,11], -[0,-1250,-3456,-101,-13752,-13751], -[0,-1,-12,-9,-8,-18,-568,-4], -[0,-787,-13750,-2009,-152], +[0,-4378,-6770,-1442,-6771,-6772], +[0,-932,-940,-1344,-1415,-1534,-1658,-1942], +[0,-4005,-6773,-6774,-708], [1,3,2235], [0,2236,2237,2238,6], -[0,-13749,-3455,-3454,-5462,-3453,-3452,-13748], -[0,-13747], -[0,-412,-354], +[0,-6775,-6776,-6777,-6778,-6779,-6780,-6781], +[0,-6782], +[0,-3496,-707], [1,3,2240], [0,0,2241,189,10], -[0,-1561,-5461,-379,-221,-247], +[0,-849,-6783,-1304,-1600,-2424], [1,3,2243], [0,0,2244,189,4], -[0,-11,-21,-2649,-1181,-1561,-379,-5460,-221,-157,-247,-17], +[0,-23,-40,-4691,-709,-849,-1304,-6785,-1600,-1978,-2424,-2501], [1,3,2246], [0,2247,2248,2249,4], -[0,-2142,-2763], -[0,-3,-81,-34], -[0,-224,-671,-24], +[0,-3523,-2741], +[0,-1654,-2384,-2541], +[0,-712,-5535,-775], [1,3,2251], [0,0,0,2252,5], -[0,-174,-548,-224,-240], +[0,-3974,-3770,-712,-5514], [1,3,2254], [0,0,2255,2256,5], -[0,-1,-2236], -[0,-240,-174,-135], +[0,-932,-936], +[0,-5514,-3974,-714], [1,3,2258], [0,2259,2260,2261,11], -[0,-138,-3451], -[0,-182,-328,-20,-556,-39], -[0,-2008,-183,-240,-194,-174,-1734,-734], +[0,-2269,-6786], +[0,-526,-559,-668,-2320,-2322], +[0,-6787,-5554,-5514,-4000,-3974,-4001,-4002], [1,3,2263], [0,0,2264,2265,6], -[0,-421,-117,-3], -[0,-37,-308,-5459], +[0,-1003,-1452,-1654], +[0,-687,-3957,-6788], [1,3,2267], [0,2268,190,2269,11], -[0,-1408,-5458,-1828,-3450], -[0,-1250,-165,-1062,-587,-854,-2007,-73,-723,-37,-308,-1063], +[0,-6789,-6790,-1551,-6791], +[0,-4378,-1838,-6748,-4377,-5829,-6792,-3215,-6747,-687,-3957,-6722], [1,3,2271], [0,2272,2273,2274,4], -[0,-1408,-2521,-13746,-3450], -[0,-80,-63,-815,-14,-1488], -[0,-174,-1722,-13745,-114], +[0,-6789,-6793,-6794,-6791], +[0,-350,-351,-1448,-2127,-2337], +[0,-3974,-4376,-6795,-3262], [1,3,2276], [0,0,2277,2278,4], -[0,-81,-8,-1,-55,-57,-4,-48,-2,-29,-5,-83,-145,-12], -[0,-58,-308,-854,-73,-37,-1062,-587,-1250], +[0,-2384,-1415,-932,-1110,-2375,-1942,-190,-2410,-3136,-3037,-2411,-959,-940], +[0,-719,-3957,-5829,-3215,-687,-6748,-4377,-4378], [1,3,2280], [0,2281,2282,2283,5], -[0,-28,-534,-23,-5457,-5456,-40,-200,-88,-3765,-1293,-1341,-5455,-599,-298], -[0,-15,-13,-123,-3,-27,-3984,-16,-152,-288,-50,-213,-180,-11,-178,-120,-21,-995,-355,-5454,-13744,-13743,-306,-1345], -[0,-1677,-637,-550,-13742,-503], +[0,-1107,-815,-1548,-6796,-6797,-1077,-1376,-1646,-3767,-2270,-831,-6798,-2271,-796], +[0,-1788,-664,-2446,-1654,-2210,-1104,-2177,-708,-1753,-21,-1365,-1972,-23,-43,-2174,-40,-1656,-539,-6799,-6800,-6801,-36, +-741], +[0,-5890,-3240,-3276,-6802,-720], [1,3,2285], [0,2286,2287,146,4], -[0,-49,-3790], -[0,-6056,-6055,-1093], +[0,-86,-3534], +[0,-3536,-3537,-3535], [1,3,2289], [0,0,2290,2291,6], -[0,-182,-94,-278,-1576,-3533,-268,-447,-152,-26,-1025,-1,-12,-25,-8,-362,-4,-7,-14,-273,-341,-803,-2172], -[0,-670,-292,-430,-13741,-339,-13740,-13739,-31,-2006,-13738,-1063,-13737,-2520,-1656,-1655,-5453,-13736,-2519,-5452,-163, --5451,-1061,-1218,-13735,-271], +[0,-526,-528,-535,-546,-6017,-558,-566,-708,-767,-855,-932,-940,-967,-1415,-1639,-1942,-2125,-2127,-2128,-2137,-2143, +-2517], +[0,-5839,-525,-4795,-6803,-3184,-6804,-6805,-3264,-6806,-6807,-6722,-6808,-6809,-6810,-6811,-6812,-6813,-6814,-6815,-2265, +-6816,-6817,-6818,-6819,-3110], [1,3,2293], [0,0,55,2294,6], -[0,-783,-2518,-422,-1654,-3449,-3651,-13734], +[0,-5389,-6820,-997,-6821,-6822,-5078,-6823], [1,3,2296], [0,2297,191,2298,5], -[0,-475,-13733,-36,-2595,-2517,-488,-980], -[0,-384,-1407,-2516,-332,-41,-2515,-105,-245], +[0,-651,-6824,-812,-5397,-6825,-2155,-2453], +[0,-724,-6826,-6827,-5401,-1004,-6828,-1334,-5827], [1,3,2300], [0,2301,31,7,4], -[0,-2514,-528,-197,-5597], +[0,-6829,-1370,-2062,-5972], [1,3,2303], [0,2304,2305,2306,4], -[0,-489,-20,-96,-687,-749,-461], -[0,-9,-1,-30,-89,-55,-4,-48,-2,-5,-18,-2136,-413,-13732,-5450,-83,-3448,-103,-187,-2655,-848,-13731,-12,-25,-13730,-3447, --859], -[0,-1060,-2573,-852,-289,-308,-5449], +[0,-2153,-668,-2550,-2369,-2194,-2297], +[0,-1344,-932,-2469,-928,-1110,-1942,-190,-2410,-3037,-1534,-3610,-3041,-6830,-6831,-2411,-6832,-3664,-2156,-4373,-6593, +-6833,-940,-967,-6834,-6835,-4814], +[0,-6836,-5920,-5921,-726,-3957,-6837], [1,3,2308], [0,2309,2310,2311,4], -[0,-276], -[0,-5,-43,-316,-2005,-13729,-13728,-1091,-113,-16,-884,-33,-2,-247,-5448,-259], -[0,-2513,-353,-1085,-13727,-13726,-1217,-782], +[0,-1460], +[0,-3037,-652,-711,-6838,-6839,-6840,-3589,-2105,-2177,-2362,-2379,-2410,-2424,-6841,-2548], +[0,-6842,-727,-3870,-6843,-6844,-6845,-5558], [1,3,2313], [0,2314,55,2315,4], -[0,-13725,-2132,-325,-13724,-5447], -[0,-353,-952,-1069,-1085,-2512,-13723,-106,-450,-3446,-3445,-13722], +[0,-6846,-3780,-1119,-6847,-6848], +[0,-727,-4634,-6005,-3870,-6849,-6850,-4055,-6582,-6851,-6852,-6853], [1,3,2317], [0,2318,2319,2320,4], -[0,-36,-1016,-751,-2176], -[0,-1,-3,-15,-125], -[0,-52,-111,-332,-223,-5446], +[0,-812,-1045,-1840,-2445], +[0,-932,-1654,-1788,-2293], +[0,-3161,-3578,-5401,-729,-6854], [1,3,2322], [0,0,84,2323,11], -[0,-223,-41,-5445,-6050], +[0,-729,-1004,-6855,-3556], [1,3,2325], [0,0,2326,7,4], -[0,-1,-8,-27], +[0,-932,-1415,-2210], [1,3,2328], [0,2329,2330,2331,4], -[0,-36,-13721], -[0,-2627,-49,-62,-283,-48,-162,-257,-2698,-5,-954,-22,-19,-51,-43,-152,-1,-12,-1550,-25,-41,-920,-348,-9,-18,-376,-65, --1311,-4,-134,-125,-371,-124,-2], -[0,-223,-1216,-376,-3444,-41], +[0,-812,-6856], +[0,-5028,-86,-3307,-3244,-190,-3198,-3617,-3733,-3037,-4203,-427,-428,-519,-652,-708,-932,-940,-954,-967,-1004,-1010, +-1103,-1344,-1534,-1671,-1771,-1806,-1942,-2251,-2293,-2892,-2402,-2410], +[0,-729,-6857,-1671,-6858,-1004], [1,3,2333], [0,0,2334,2335,5], -[0,-320,-2698,-5,-103,-920,-33,-2,-104,-847,-30], -[0,-223,-690,-3444,-41], +[0,-2581,-3733,-3037,-3664,-1010,-2379,-2410,-2466,-6859,-2469], +[0,-729,-2071,-6858,-1004], [1,3,2337], [0,0,2338,2339,8], -[0,-2537,-5,-103,-1567,-1653,-1,-1552,-2511,-4,-13720,-1411,-394,-2,-1287,-30], -[0,-194,-738,-946,-5444,-37,-3515,-133,-490,-13719,-550,-627,-13718], +[0,-6447,-3037,-3664,-672,-6860,-932,-944,-6861,-1942,-6862,-6570,-2267,-2410,-2423,-2469], +[0,-4000,-3444,-6863,-6864,-687,-6198,-2427,-1965,-6865,-3276,-6324,-6866], [1,3,2341], [0,0,2342,2343,5], -[0,-34,-51,-1560,-5443,-13717,-351,-2510,-643,-13716,-13715,-13714,-13713,-5442,-13712,-6305,-5441,-13711,-9,-13710,-6, --13709,-1,-13708,-13707,-13706,-23,-13705,-16,-13704,-13703,-13702,-1854,-13701,-13700,-3964,-524,-993,-13699,-35,-250, --147,-13698,-247,-13697,-11,-13696,-18,-13695,-13694,-474,-13693,-13692,-5440,-13691,-136,-1800,-1551], -[0,-1059,-271,-1067], +[0,-2541,-519,-864,-6867,-6868,-888,-6869,-1974,-6870,-6871,-6872,-6873,-6874,-6875,-2310,-6876,-6877,-1344,-6878,-2006, +-6879,-932,-6880,-6881,-6882,-1548,-6883,-2177,-6884,-6885,-6886,-1053,-6887,-6888,-1310,-1689,-1783,-6889,-2019,-1276, +-2094,-6890,-2424,-6891,-23,-6892,-1534,-6893,-6894,-710,-6895,-6896,-6897,-6898,-41,-2099,-946], +[0,-6899,-3110,-6107], [1,3,2345], [0,0,2346,2347,6], -[0,-43,-1,-84,-10,-214,-76,-67,-131], -[0,-1027,-105,-13690,-1249], +[0,-652,-932,-943,-958,-963,-966,-968,-974], +[0,-736,-1334,-6900,-4616], [1,3,2349], [0,0,2350,2351,5], -[0,-15,-3,-1,-830,-76,-10,-67,-84,-131], -[0,-924,-105,-2096,-1249,-13689], +[0,-1788,-1654,-932,-821,-966,-958,-968,-943,-974], +[0,-737,-1334,-4610,-4616,-6901], [1,3,2353], [0,2354,0,2355,4], -[0,-3443,-13688,-467,-2509,-13687,-3542,-5439,-13686], -[0,-575,-2004,-780,-263,-37], +[0,-6902,-6903,-1630,-6904,-6905,-5983,-6906,-6907], +[0,-739,-6908,-5887,-1573,-687], [1,3,2357], [0,2358,0,2359,9], -[0,-467,-2003,-13685,-575], -[0,-37,-724,-575,-2004,-780,-263], +[0,-1630,-6909,-6910,-739], +[0,-687,-5732,-739,-6908,-5887,-1573], [1,3,2361], [0,2362,0,2363,11], -[0,-13684], -[0,-575,-13683,-3442], +[0,-6911], +[0,-739,-6912,-6913], [1,3,2365], [0,0,2366,2367,4], -[0,-13682,-85], -[0,-452,-2002,-2508,-774,-91,-36], +[0,-6914,-2319], +[0,-5845,-6915,-6916,-6917,-4865,-812], [1,3,2369], [0,0,2370,2371,5], -[0,-5438,-103,-13681,-2,-30], -[0,-352,-1652], +[0,-6918,-3664,-6919,-2410,-2469], +[0,-743,-6920], [1,3,2373], [0,2374,81,2375,4], -[0,-352,-1344], -[0,-352,-332], +[0,-743,-746], +[0,-743,-5401], [1,3,2377], [0,2378,2379,2380,10], -[0,-1652,-36,-2517,-488], -[0,-223,-1,-84,-10,-214,-76,-67,-131,-3,-15,-125], -[0,-223,-41,-332,-3444], +[0,-6920,-812,-6825,-2155], +[0,-729,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], +[0,-729,-1004,-5401,-6858], [1,3,2382], [0,0,0,2383,4], -[0,-352,-13680,-13679], +[0,-743,-6921,-6922], [1,3,2385], [0,2386,2387,2388,4], -[0,-13678], -[0,-59,-88,-2838,-13677,-565,-13676,-112], -[0,-1182,-669,-91], +[0,-6923], +[0,-633,-1646,-1719,-6924,-1813,-6925,-2416], +[0,-699,-6351,-4865], [1,3,2390], [0,2391,2392,2393,4], -[0,-311,-1542,-639,-1509,-1114], -[0,-151,-8,-9,-262,-425,-1,-237,-55,-13675,-17,-4,-26,-50,-48,-86,-2,-11,-5,-277,-18,-65,-49,-115,-514,-134,-21,-83,-5437, --145,-181,-161,-10,-5436,-583,-150,-12,-25,-309,-3441,-62], -[0,-17,-107,-2507,-2506,-669], +[0,-2654,-1108,-2168,-1759,-2182], +[0,-824,-1415,-1344,-1623,-774,-932,-825,-1110,-6926,-2501,-1942,-767,-21,-190,-533,-2410,-23,-3037,-1041,-1534,-1771,-86, +-965,-3560,-2251,-40,-2411,-6927,-959,-960,-32,-958,-6928,-6929,-978,-940,-967,-3748,-6930,-3307], +[0,-2501,-3862,-6931,-6932,-6351], [1,3,2395], [0,2396,2397,7,4], -[0,-28,-93,-72,-13674,-71,-1482,-96], -[0,-7,-39,-556], +[0,-1107,-1645,-1650,-6933,-2347,-2430,-2550], +[0,-2125,-2322,-2320], [1,3,2399], [0,0,27,2400,4], -[0,-5435,-1651,-114,-13673,-13672,-13671], +[0,-6934,-6935,-3262,-6936,-6937,-6938], [1,3,2402], [0,2403,2404,2405,4], -[0,-1826,-6505,-13670], -[0,-47,-87,-2,-6,-35], -[0,-6,-2,-1651,-13669,-13668], +[0,-1559,-750,-6939], +[0,-3040,-3052,-2410,-2006,-2019], +[0,-2006,-2410,-6935,-6940,-6941], [1,3,2407], [0,2408,2409,2410,4], -[0,-1178,-13667,-13666,-13665,-412,-118,-466,-16,-3887], -[0,-13664,-43,-199,-1494], -[0,-1026,-337,-37], +[0,-728,-6942,-6943,-6944,-3496,-999,-1758,-2177,-2313], +[0,-6945,-652,-1412,-2123], +[0,-752,-3323,-687], [1,3,2412], [0,0,0,2413,5], -[0,-5434,-3440,-846,-3439,-2505,-3438,-2504,-5433,-13663,-5432,-5431,-5430,-5429,-13662,-5428,-13661,-5427,-13660,-5426, --5425,-5424,-13659,-5423,-13658,-5422,-5421,-5420,-13657,-5419,-5418,-5417,-5416,-5415,-13656,-3437,-5414,-13655,-5413, --5412,-5411,-5410,-5409,-13654,-549,-1406,-672], +[0,-6946,-6947,-6948,-6949,-6950,-6951,-6952,-6953,-6954,-6955,-6956,-6957,-6958,-6959,-6960,-6961,-6962,-6963,-6964, +-6965,-6966,-6967,-6968,-6969,-6970,-6971,-6972,-6973,-6974,-6975,-6976,-6977,-6978,-6979,-6980,-6981,-6982,-6983,-6984, +-6985,-6986,-6987,-6988,-3582,-6989,-5396], [1,3,2415], [0,2416,2417,2418,4], -[0,-242,-980], -[0,-838,-1,-41,-3,-15,-125], -[0,-383,-41,-223,-332], +[0,-1792,-2453], +[0,-465,-932,-1004,-1654,-1788,-2293], +[0,-754,-1004,-729,-5401], [1,3,2420], [0,2421,2422,2423,6], -[0,-1680,-2219,-101,-5408], -[0,-411,-5,-13653,-22,-19,-960,-26,-1,-13652,-12,-251,-10,-76,-2233,-9,-18,-5480,-4,-13651,-2,-30], -[0,-2001,-1085,-353], +[0,-5672,-1362,-1442,-6990], +[0,-3660,-3037,-6991,-427,-428,-3899,-767,-932,-6992,-940,-948,-958,-966,-979,-1344,-1534,-6689,-1942,-6993,-2410,-2469], +[0,-6994,-3870,-727], [1,3,2425], [0,2426,2427,2428,4], -[0,-101,-13650,-13649,-88,-113], -[0,-3,-15,-82,-395,-27,-34], -[0,-787,-56], +[0,-1442,-6995,-6996,-1646,-2105], +[0,-1654,-1788,-2198,-2200,-2210,-2541], +[0,-4005,-756], [1,3,2430], [0,2431,2432,2433,4], -[0,-2000,-206,-467], -[0,-51,-118,-493,-2003,-34], -[0,-724,-37,-669,-13648,-2000,-126,-625,-536,-303,-245,-28,-3436,-752,-508,-13647,-450,-1427,-3435], +[0,-6997,-1111,-1630], +[0,-519,-999,-1849,-6909,-2541], +[0,-5732,-687,-6351,-6998,-6997,-6656,-6999,-702,-1076,-5827,-1107,-7000,-1705,-5922,-7001,-6582,-5398,-7002], [1,3,2435], [0,2436,2437,2438,4], -[0,-402,-13646,-238,-5407,-13645,-470,-3434], -[0,-43,-51,-153,-198,-27,-1,-55,-48,-13644,-2,-5,-1106,-83], -[0,-45,-6504,-13643,-3468,-5497,-249,-335,-105,-401,-1422,-402,-113,-195,-1080,-1407], +[0,-1116,-7003,-674,-7004,-7005,-1351,-7006], +[0,-652,-519,-2392,-1722,-2210,-932,-1110,-190,-7007,-2410,-3037,-2364,-2411], +[0,-3214,-758,-7008,-6596,-6531,-1437,-3967,-1334,-1342,-5735,-1116,-2105,-2435,-5150,-6826], [1,3,2440], [0,0,0,2441,11], -[0,-6503,-13642,-13641,-13640,-13639,-13638,-13637,-13636,-13635,-13634,-13633,-13632,-13631], +[0,-759,-7009,-7010,-7011,-7012,-7013,-7014,-7015,-7016,-7017,-7018,-7019,-7020], [1,3,2443], [0,2444,2445,2446,5], -[0,-13630,-528,-5591,-13629,-5406], -[0,-3548,-488,-97,-556,-39], -[0,-659], +[0,-7021,-1370,-6001,-7022,-7023], +[0,-5935,-2155,-2250,-2320,-2322], +[0,-770], [1,3,2448], [0,2449,2450,41,5], -[0,-1521,-242], -[0,-8,-121,-6,-35,-17], +[0,-1580,-1792], +[0,-1415,-1967,-2006,-2019,-2501], [1,3,2452], [0,2453,2454,2455,10], -[0,-2941,-13628,-576,-473,-13627,-2503,-36,-349,-1328,-206,-402,-13626,-817,-13625,-1154,-756,-23,-468,-753,-467,-13624, --3582,-13623,-164,-143,-38,-13622,-13621,-2502,-896,-285,-372,-71,-70], -[0,-60,-26,-1016,-499,-8,-198,-5405,-396,-3433,-1490,-883,-34], -[0,-6502,-248,-24,-3432], +[0,-28,-7024,-683,-722,-7025,-7026,-812,-1047,-1099,-1111,-1116,-7027,-1366,-7028,-1393,-1435,-1548,-1549,-1591,-1630, +-7029,-5668,-7030,-1863,-1876,-1889,-7031,-7032,-7033,-2103,-2218,-2331,-2347,-2460], +[0,-510,-767,-1045,-1098,-1415,-1722,-7034,-2187,-7035,-2261,-2463,-2541], +[0,-762,-1847,-775,-7036], [1,3,2457], [0,2458,2459,2460,8], -[0,-2710,-1464], -[0,-49,-48,-5404,-13620,-13619,-296,-845,-295,-737,-582,-1058,-252,-1057,-29,-5,-269,-26,-1,-12,-145,-25,-9,-8,-18,-4, --120,-27,-2,-83], -[0,-1177,-13618,-5403,-3431,-982,-13617,-13616], +[0,-3620,-3222], +[0,-86,-190,-7037,-7038,-7039,-3470,-7040,-3471,-3472,-7041,-7042,-367,-7043,-3136,-3037,-4372,-767,-932,-940,-959,-967, +-1344,-1415,-1534,-1942,-2174,-2210,-2410,-2411], +[0,-763,-7044,-7045,-7046,-2166,-7047,-7048], [1,3,2462], [0,0,0,2463,4], -[0,-1177,-184,-46,-73,-2896,-3431,-982,-5402,-786,-1425,-3514,-5401], +[0,-763,-3577,-3445,-3215,-764,-7046,-2166,-7049,-4107,-5418,-6201,-7050], [1,3,2465], [0,0,2466,2467,4], -[0,-5738,-5737,-13615,-13614,-13613,-13612,-3430,-13611,-1650,-5,-1,-13610,-1550,-10,-181,-265,-115,-13609,-67,-826,-150, --55,-3429,-996,-13608,-1127,-4,-459,-13607,-124,-2,-13606], -[0,-1177,-5401,-982,-6501,-184,-46], +[0,-5285,-5291,-7051,-7052,-7053,-7054,-7055,-7056,-7057,-3037,-932,-7058,-954,-958,-960,-964,-965,-7059,-968,-971,-978, +-1110,-7060,-1608,-7061,-1768,-1942,-2910,-7062,-2402,-2410,-7063], +[0,-763,-7050,-2166,-765,-3577,-3445], [1,3,2469], [0,2470,0,2471,4], -[0,-13605,-13604], -[0,-281,-2501,-2506,-3428,-5400,-2500,-13603,-13602,-13601,-13600,-13599,-13598,-13597,-13596,-31,-24,-45,-184,-111], +[0,-7064,-7065], +[0,-6527,-7066,-6932,-7067,-7068,-7069,-7070,-7071,-7072,-7073,-7074,-7075,-7076,-7077,-3264,-775,-3214,-3577,-3578], [1,3,2473], [0,2474,2475,2476,5], -[0,-13595,-230], -[0,-13594,-945,-5,-103,-964,-1,-4,-2,-30,-13593], -[0,-13592,-13591,-722,-1215], +[0,-7078,-769], +[0,-7079,-7080,-3037,-3664,-3665,-932,-1942,-2410,-2469,-7081], +[0,-7082,-7083,-7084,-7085], [1,3,2478], [0,2479,2480,2481,5], -[0,-188], -[0,-15,-13,-198,-9,-3,-96,-7,-14,-16,-152,-41,-17,-97,-503,-2,-109,-5,-168,-18,-1113,-92,-69,-792,-49,-134,-870,-1821, --1223,-298,-13590,-62], -[0,-865,-105,-195,-172,-60,-629,-3514,-3515,-141,-6,-484,-91,-1406,-1077,-743,-1420], +[0,-1729], +[0,-1788,-664,-1722,-1344,-1654,-2550,-2125,-2127,-2177,-708,-1004,-2501,-2250,-720,-2410,-3035,-3037,-617,-1534,-2186, +-2503,-3621,-2516,-86,-2251,-4063,-1655,-6483,-796,-7086,-3307], +[0,-4213,-1334,-2435,-1961,-510,-5867,-6201,-6198,-3966,-2006,-5269,-4865,-6989,-5388,-2533,-5998], [1,3,2483], [0,2484,2485,2486,6], -[0,-219,-3427,-13589], -[0,-8,-9,-1,-72,-7,-169,-86,-18,-49,-134,-13588,-13587,-62], -[0,-1649,-13586,-722,-1215,-13585,-5399,-1214,-3426], +[0,-2518,-7087,-7088], +[0,-1415,-1344,-932,-1650,-2125,-527,-533,-1534,-86,-2251,-7089,-7090,-3307], +[0,-7091,-7092,-7084,-7085,-7093,-7094,-7095,-7096], [1,3,2488], [0,2489,2490,7,5], -[0,-13584,-13583,-13582,-4011,-13581,-13580,-13579,-528,-5398,-13578,-3915,-13577], -[0,-239,-1,-3548,-15,-1126,-13576,-488,-16,-39], +[0,-7097,-7098,-7099,-760,-7100,-7101,-7102,-1370,-7103,-7104,-1995,-7105], +[0,-5834,-932,-5935,-1788,-1798,-7106,-2155,-2177,-2322], [1,3,2492], [0,0,0,2493,5], -[0,-667,-659,-13575,-5397,-13574,-13573,-13572,-13571,-13570,-13569,-13568,-13567,-13566,-13565,-13564,-13563,-13562, --13561,-5396,-13560], +[0,-7107,-770,-7108,-7109,-7110,-7111,-7112,-7113,-7114,-7115,-7116,-7117,-7118,-7119,-7120,-7121,-7122,-7123,-7124,-7125], [1,3,2495], [0,192,2496,2497,4], -[0,-43,-1,-13559,-10,-265,-76,-25,-3,-13558,-65,-4], -[0,-2005,-73], +[0,-652,-932,-7126,-958,-964,-966,-967,-1654,-7127,-1771,-1942], +[0,-6838,-3215], [1,3,2499], [0,2500,2501,2502,4], -[0,-13557,-13556,-13555,-13554,-13553,-13552,-13551,-1190,-20,-2521,-58,-13550,-13549,-13548,-13547,-13546,-13545,-3425, --3424,-16,-311], -[0,-634,-137,-362,-93], -[0,-13544,-581,-354,-5502,-2013,-13543,-13542,-13541,-217], +[0,-7128,-7129,-7130,-7131,-7132,-7133,-7134,-481,-668,-6793,-719,-7135,-7136,-7137,-7138,-7139,-7140,-7141,-7142,-2177, +-2654], +[0,-4036,-3199,-1639,-1645], +[0,-7143,-7144,-707,-6513,-6514,-7145,-7146,-7147,-7148], [1,3,2504], [0,2505,2506,2507,4], -[0,-528,-130,-5395], -[0,-3,-82,-1520,-475], -[0,-24,-73,-1753,-1275], +[0,-1370,-2231,-7149], +[0,-1654,-2198,-1612,-651], +[0,-775,-3215,-3270,-3271], [1,3,2509], [0,0,2510,2511,9], -[0,-48,-1999,-3423,-1,-38,-14,-1104], -[0,-38,-218,-24,-3730,-13540,-1056,-2499], +[0,-190,-7150,-7151,-932,-1889,-2127,-2447], +[0,-1889,-3583,-775,-4159,-7152,-7153,-7154], [1,3,2513], [0,0,2514,2515,5], -[0,-1998,-586,-69,-5,-955,-5394,-1,-5393,-12,-25,-5392,-9,-13539,-79,-18,-3,-417,-4,-975,-1997,-2,-5391,-5390], -[0,-24,-3422,-1256], +[0,-7155,-4647,-3621,-3037,-4201,-7156,-932,-7157,-940,-967,-7158,-1344,-7159,-1449,-1534,-1654,-1763,-1942,-2923,-7160, +-2410,-7161,-7162], +[0,-775,-7163,-4108], [1,3,2517], [0,2518,2519,2520,4], -[0,-1471,-38,-2498,-2195,-2497,-2758,-465,-16], -[0,-50,-11,-21,-49,-62,-944,-86,-26,-425,-237,-1338,-1,-12,-10,-277,-9,-8,-176,-222,-1143,-18,-262,-377,-65,-492,-805,-4, --77,-462,-134,-138,-154,-393,-1791,-438,-17], -[0,-17,-24,-779,-195,-628], +[0,-2773,-1889,-7164,-1915,-7165,-2791,-1934,-2177], +[0,-21,-23,-40,-86,-3307,-7166,-533,-767,-774,-825,-920,-932,-940,-958,-1041,-1344,-1415,-1419,-1521,-1522,-1534,-1623, +-1643,-1771,-1908,-1927,-1942,-2162,-2163,-2251,-2269,-2275,-2286,-2287,-2437,-2501], +[0,-2501,-775,-5932,-2435,-6024], [1,3,2522], [0,2523,2524,2525,5], -[0,-382,-38,-1321,-639,-1114,-1099], -[0,-151,-1773,-8,-77,-9,-262,-425,-1,-237,-89,-55,-887,-17,-13538,-4,-576,-26,-50,-48,-86,-144,-2,-11,-13537,-5389,-5,-18, --65,-462,-1452,-49,-115,-514,-13536,-134,-21,-145,-535,-181,-10,-13535,-583,-150,-12,-25,-377,-309,-3441,-62], -[0,-382,-24,-1773,-576,-5775,-89,-17,-2496,-1996,-13534,-227,-776,-580,-1648], +[0,-784,-1889,-1429,-2168,-2182,-3180], +[0,-824,-2746,-1415,-2162,-1344,-1623,-774,-932,-825,-928,-1110,-2289,-2501,-7167,-1942,-683,-767,-21,-190,-533,-778, +-2410,-23,-7168,-7169,-3037,-1534,-1771,-2163,-3751,-86,-965,-3560,-7170,-2251,-40,-959,-748,-960,-958,-7171,-6929,-978, +-940,-967,-1643,-3748,-6930,-3307], +[0,-784,-775,-2746,-683,-5055,-928,-2501,-7172,-7173,-7174,-1644,-6684,-7175,-7176], [1,3,2527], [0,2528,2529,2530,4], -[0,-3421,-2749,-3471,-2759,-1659], -[0,-555,-30,-2,-5,-497,-320,-5388,-13533,-103], -[0,-24,-1456,-13532], +[0,-7177,-2888,-6584,-2788,-6585], +[0,-2386,-2469,-2410,-3037,-1333,-2581,-7178,-7179,-3664], +[0,-775,-3585,-7180], [1,3,2532], [0,2533,2534,2535,4], -[0,-2846,-799], -[0,-43,-13531,-89,-1,-13530,-3,-14], -[0,-24,-360,-2138,-73,-13529,-3420,-114,-674,-389,-409], +[0,-1620,-2232], +[0,-652,-7181,-928,-932,-7182,-1654,-2127], +[0,-775,-3272,-3579,-3215,-7183,-7184,-3262,-5260,-4132,-3926], [1,3,2537], [0,0,2538,2539,4], -[0,-1999,-305,-28,-38,-696,-805,-16,-179,-558,-13528], -[0,-24,-5387,-2651,-5386], +[0,-7150,-635,-1107,-1889,-1891,-1927,-2177,-2281,-2282,-7185], +[0,-775,-7186,-4682,-7187], [1,3,2541], [0,0,2542,2543,4], -[0,-182,-268,-152,-54,-2032,-66,-3,-985,-416], -[0,-24,-482,-5385,-163,-589], +[0,-526,-558,-708,-1127,-6114,-1405,-1654,-2081,-2111], +[0,-775,-5559,-7188,-2265,-3673], [1,3,2545], [0,2546,2547,2548,4], -[0,-2212,-2495], -[0,-160,-38,-13527,-13526], -[0,-24,-541,-227,-721,-1647,-38,-218], +[0,-1532,-7189], +[0,-518,-1889,-7190,-7191], +[0,-775,-6454,-1644,-7192,-7193,-1889,-3583], [1,3,2550], [0,2551,2552,2553,11], -[0,-13525,-5384,-1176,-442], -[0,-3419,-5383,-1,-12,-25,-55,-4], -[0,-2494,-5382,-5381], +[0,-7194,-7195,-781,-1582], +[0,-7196,-7197,-932,-940,-967,-1110,-1942], +[0,-7198,-7199,-7200], [1,3,2555], [0,0,2556,2557,4], -[0,-11,-21,-140,-48,-1999,-13524,-5380,-2586,-29,-586,-5,-1220,-13523,-86,-20,-119,-1176,-12,-25,-420,-8,-79,-2846,-4, --373,-153,-3882,-2,-83], -[0,-24,-225,-2,-1683,-1485,-635,-6008], +[0,-23,-40,-42,-190,-7150,-7201,-7202,-5685,-3136,-4647,-3037,-6630,-7203,-533,-668,-679,-781,-940,-967,-1059,-1415,-1449, +-1620,-1942,-2091,-2392,-2393,-2410,-2411], +[0,-775,-5553,-2410,-5411,-2414,-3694,-3762], [1,3,2559], [0,2560,2561,2562,5], -[0,-3418,-352,-652,-1344], -[0,-15,-3,-1,-223,-125,-168,-619,-2897,-76,-10,-67,-84,-214,-131], -[0,-3418,-2493,-332,-41], +[0,-7204,-743,-1335,-746], +[0,-1788,-1654,-932,-729,-2293,-617,-744,-745,-966,-958,-968,-943,-963,-974], +[0,-7204,-7205,-5401,-1004], [1,3,2564], [0,2565,2566,2567,4], -[0,-2242,-2241,-6497,-3895], -[0,-63,-69,-5,-1171,-3,-4,-14,-1796,-1299,-82,-33,-2], -[0,-141,-831,-5379,-73,-165,-1753,-429,-507,-245,-547,-13522,-46,-53], +[0,-789,-790,-791,-2262], +[0,-351,-3621,-3037,-885,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], +[0,-3966,-788,-7206,-3215,-1838,-3270,-6231,-6408,-5827,-3960,-7207,-3445,-3100], [1,3,2569], [0,0,2570,2571,5], -[0,-63,-69,-5,-534,-1171,-3,-4,-14,-1796,-1299,-82,-33,-2], -[0,-245,-547,-831,-406,-46,-53], +[0,-351,-3621,-3037,-815,-885,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], +[0,-5827,-3960,-788,-7208,-3445,-3100], [1,3,2573], [0,0,2574,2575,5], -[0,-63,-69,-5,-2242,-13521,-534,-1171,-3,-1646,-4,-14,-1796,-1299,-82,-3895,-33,-2], -[0,-831,-165,-73,-452,-5379,-245,-46,-53], +[0,-351,-3621,-3037,-789,-7209,-815,-885,-1654,-7210,-1942,-2127,-2135,-2136,-2198,-2262,-2379,-2410], +[0,-788,-1838,-3215,-5845,-7206,-5827,-3445,-3100], [1,3,2577], [0,0,2578,2579,9], -[0,-63,-69,-5,-2242,-534,-1171,-41,-3,-4,-14,-1796,-1299,-82,-33,-2], -[0,-831,-429,-1753,-46,-53], +[0,-351,-3621,-3037,-789,-815,-885,-1004,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], +[0,-788,-6231,-3270,-3445,-3100], [1,3,2581], [0,34,2582,2583,4], -[0,-5378,-69,-5,-4026,-56,-88,-3,-15,-27,-57,-33,-2,-1105,-17,-92], -[0,-831,-13520,-13519,-4008,-106,-13518,-13517,-13516,-13515,-13514], +[0,-7211,-3621,-3037,-543,-756,-1646,-1654,-1788,-2210,-2375,-2379,-2410,-2417,-2501,-2503], +[0,-788,-7212,-7213,-792,-4055,-7214,-7215,-7216,-7217,-7218], [1,3,2585], [0,2586,2587,149,8], -[0,-1512,-28,-135,-23,-2174,-533,-6036,-128,-116,-3417,-361,-58,-1003,-661,-5750,-6040,-5377,-2136,-13513,-817,-3416, --3415,-13512,-424,-6041,-13511,-6042], -[0,-15,-156,-13,-3,-27,-1,-223,-159,-833,-40,-524,-4,-3414,-56,-50,-59,-186,-11,-94,-316,-396,-178,-6037,-3783,-21,-76, --827,-342,-10,-355,-67,-12,-84,-25,-131,-2570], +[0,-1693,-1107,-714,-1548,-2456,-1040,-3635,-2114,-615,-7219,-1959,-719,-1399,-695,-5203,-3611,-7220,-3610,-7221,-1366, +-7222,-7223,-7224,-930,-3608,-7225,-3604], +[0,-1788,-2359,-664,-1654,-2210,-932,-729,-753,-571,-1077,-1689,-1942,-7226,-756,-21,-633,-2211,-23,-528,-711,-2187,-43, +-3630,-3633,-40,-966,-951,-2082,-958,-539,-968,-940,-943,-967,-974,-6034], [1,3,2589], [0,0,2590,2591,4], -[0,-620,-268,-447,-59,-1,-13510,-419,-72,-13509,-39,-2780,-112,-13508,-744], -[0,-2492,-2491,-5376,-13507,-123], +[0,-556,-558,-566,-633,-932,-7227,-1339,-1650,-7228,-2322,-2339,-2416,-7229,-2491], +[0,-7230,-7231,-7232,-7233,-2446], [1,3,2593], [0,2594,0,2595,4], -[0,-156,-5720,-20,-574,-36,-118,-3413,-977,-299,-1829,-23,-13506,-504,-533,-287,-116,-5456,-573,-40,-88,-13505,-58,-687, --1482,-736,-1876,-661,-1995,-473,-1165,-647,-523,-13504,-13503,-1858,-5594,-461,-13502,-3412,-3887,-1837,-2135], -[0,-544,-91,-502,-13501,-1438,-1437,-857,-129,-1405,-456,-5375,-5374,-75,-61], +[0,-2359,-5413,-668,-809,-812,-999,-7234,-2555,-640,-1536,-1548,-7235,-680,-1040,-1958,-615,-6797,-910,-1077,-1646,-7236, +-719,-2369,-2430,-3628,-690,-695,-7237,-722,-1018,-1574,-1948,-7238,-7239,-995,-5987,-2297,-7240,-7241,-2313,-1394,-3626], +[0,-4864,-4865,-795,-7242,-4866,-4867,-4868,-3095,-7243,-4043,-7244,-7245,-4004,-3634], [1,3,2597], [0,2598,2599,7,5], -[0,-20,-13500,-2171,-503,-6397,-6057,-5373], -[0,-13,-3,-16,-4,-109,-403,-69,-1517,-120], +[0,-668,-7246,-2524,-720,-1564,-3532,-7247], +[0,-664,-1654,-2177,-1942,-3035,-755,-3621,-1660,-2174], [1,3,2601], [0,2602,2603,2604,5], -[0,-5372,-13499,-13498,-13497,-13496,-5371,-3411,-13495,-2240,-13494,-13493,-2553,-13492,-5370,-2239,-2894,-13491,-5369, --5368,-13490,-5367,-13489,-13488,-13487,-5366,-6496,-13486,-5365,-3410,-5364], -[0,-3,-1,-14,-793,-5363,-6168,-231,-5362,-204,-63], -[0,-1175,-255,-1404,-256,-485,-327], +[0,-7248,-7249,-7250,-7251,-7252,-7253,-7254,-7255,-798,-7256,-7257,-6258,-7258,-7259,-799,-801,-7260,-7261,-7262,-7263, +-7264,-7265,-7266,-7267,-7268,-800,-7269,-7270,-7271,-7272], +[0,-1654,-932,-2127,-2468,-7273,-2967,-4062,-7274,-3266,-351], +[0,-797,-5092,-7275,-3839,-5176,-659], [1,3,2606], [0,2607,2608,2609,8], -[0,-13485], -[0,-63,-5372,-5368,-1,-79,-3,-14,-226], -[0,-1175,-2490,-13484,-13483,-13482,-5361,-720,-1645,-670], +[0,-7276], +[0,-351,-7248,-7262,-932,-1449,-1654,-2127,-2140], +[0,-797,-7277,-7278,-7279,-7280,-7281,-7282,-7283,-5839], [1,3,2611], [0,2612,2613,2614,10], -[0,-2240,-5369,-5365,-3411,-3410], -[0,-2553,-1,-3,-14,-226], -[0,-1175,-2490,-2500,-1404], +[0,-798,-7261,-7270,-7254,-7271], +[0,-6258,-932,-1654,-2127,-2140], +[0,-797,-7277,-7069,-7275], [1,3,2616], [0,0,2617,2618,5], -[0,-1,-79,-3,-14,-226], -[0,-1175,-2490,-255,-13481,-13480], +[0,-932,-1449,-1654,-2127,-2140], +[0,-797,-7277,-5092,-7284,-7285], [1,3,2620], [0,2621,2622,2623,6], -[0,-5371], -[0,-5367,-1,-3,-14,-226], -[0,-1175,-2490,-1661,-1404,-327,-256], +[0,-7253], +[0,-7264,-932,-1654,-2127,-2140], +[0,-797,-7277,-6524,-7275,-659,-3839], [1,3,2625], [0,2626,0,2627,5], -[0,-6468], -[0,-184,-13479,-485,-3751], +[0,-1049], +[0,-3577,-7286,-5176,-3913], [1,3,2629], [0,0,0,2630,4], -[0,-4007,-1292,-557,-3409,-5360,-5359,-13478,-13477,-5358,-5357,-5356,-13476,-5355,-5354,-13475,-6,-24,-102,-74,-129,-52, --399,-184,-13474,-1445,-3408,-220,-1280,-2591,-13473], +[0,-803,-2316,-2318,-7287,-7288,-7289,-7290,-7291,-7292,-7293,-7294,-7295,-7296,-7297,-7298,-2006,-775,-3160,-2476,-3095, +-3161,-1713,-3577,-7299,-4101,-7300,-2299,-2834,-5511,-7301], [1,3,2632], [0,0,14,2633,9], -[0,-5353,-88,-2007,-1644,-587,-1428,-37,-466,-58,-773,-308,-5688,-13472,-13471,-5352,-13470,-165,-73,-1250], +[0,-7302,-1646,-6792,-7303,-4377,-5272,-687,-1758,-719,-7304,-3957,-5543,-7305,-7306,-7307,-7308,-1838,-3215,-4378], [1,3,2635], [0,2636,2637,7,4], -[0,-13469,-193,-60,-20,-1565,-383,-1177,-41,-200,-13468,-6393,-236,-2820,-113,-13467,-13466,-13465,-2168,-96], -[0,-182,-620,-328,-13,-3,-1798,-3635], +[0,-7309,-469,-510,-668,-715,-754,-763,-1004,-1376,-7310,-1625,-1666,-1953,-2105,-7311,-7312,-7313,-2549,-2550], +[0,-526,-556,-559,-664,-1654,-2106,-5331], [1,3,2639], [0,0,2640,7,10], -[0,-3407,-153,-13464,-5965,-27,-1,-13463,-23,-30,-124,-1545,-4,-56,-50,-1650,-398,-600,-321,-2,-11,-5,-3406,-13462,-269, --13461,-3775,-142,-13460,-1079,-1439,-21,-13459,-103,-310,-140,-19,-3405,-22,-13458], +[0,-7314,-2392,-7315,-3915,-2210,-932,-7316,-1548,-2469,-2402,-1050,-1942,-756,-21,-7057,-1874,-2205,-2214,-2410,-23, +-3037,-7317,-7318,-4372,-7319,-3704,-3044,-7320,-5286,-4773,-40,-7321,-3664,-2832,-42,-428,-7322,-427,-7323], [1,3,2642], [0,0,2643,7,5], -[0,-3,-112,-50,-11,-21], +[0,-1654,-2416,-21,-23,-40], [1,3,2645], [0,0,2646,2647,5], -[0,-50,-11,-781,-21,-737,-169,-86,-1351,-26,-1,-191,-10,-145,-3404,-378,-8,-78,-400,-812,-1130,-236,-907,-752,-235,-4,-14, --273,-226,-321,-2], -[0,-574,-956,-588,-529,-236], +[0,-21,-23,-5870,-40,-3472,-527,-533,-537,-767,-932,-934,-958,-959,-7324,-1413,-1415,-1471,-1481,-1488,-1662,-1666,-1667, +-1705,-1939,-1942,-2127,-2128,-2140,-2214,-2410], +[0,-809,-4121,-4123,-1361,-1666], [1,3,2649], [0,2650,2651,2652,4], -[0,-711,-906], -[0,-13457], -[0,-60,-2018,-13456,-13455], +[0,-596,-1723], +[0,-7325], +[0,-510,-6367,-7326,-7327], [1,3,2654], [0,0,118,2655,5], -[0,-1871,-13454,-1226,-1994,-13453,-3458,-3403,-13452,-3402,-1403,-13451], +[0,-811,-7328,-5924,-7329,-7330,-6729,-7331,-7332,-7333,-7334,-7335], [1,3,2657], [0,2658,2659,2660,4], -[0,-567], -[0,-1572,-59,-56,-78,-910,-139,-189,-3,-611,-27,-34], -[0,-36,-263,-3401], +[0,-1681], +[0,-627,-633,-756,-1471,-1472,-1475,-1482,-1654,-1657,-2210,-2541], +[0,-812,-1573,-7336], [1,3,2662], [0,0,14,2663,4], -[0,-1870,-13450,-446,-13449,-2013,-3480,-5501,-163,-183,-452], +[0,-813,-7337,-656,-7338,-6514,-6515,-6516,-2265,-5554,-5845], [1,3,2665], [0,2666,2667,2668,10], -[0,-13448,-13447,-13446,-5351,-325,-753,-1124,-13445], -[0,-381,-13444,-493,-1124,-7], -[0,-5350,-13443,-2892,-943,-312,-13442,-5349,-855,-1787], +[0,-7339,-7340,-7341,-7342,-1119,-1591,-1866,-7343], +[0,-985,-7344,-1849,-1866,-2125], +[0,-7345,-7346,-814,-7347,-2323,-7348,-7349,-5408,-2432], [1,3,2670], [0,0,2671,2672,8], -[0,-50,-21,-140,-861,-13441,-1650,-359,-29,-22,-19,-278,-2569,-5348,-425,-1,-5347,-1550,-145,-181,-1334,-214,-115,-2489, --2488,-826,-1643,-9,-8,-1993,-811,-18,-996,-525,-1127,-2487,-4,-5346,-900,-373,-5345,-171,-2,-5344], -[0,-534,-1218,-13440,-339], +[0,-21,-40,-42,-4646,-7350,-7057,-3330,-3136,-427,-428,-535,-6046,-7351,-774,-932,-7352,-954,-959,-960,-961,-963,-965, +-7353,-7354,-971,-7355,-1344,-1415,-7356,-1498,-1534,-1608,-1609,-1768,-7357,-1942,-7358,-1945,-2091,-7359,-2391,-2410, +-7360], +[0,-815,-6818,-7361,-3184], [1,3,2674], [0,0,2675,2676,5], -[0,-29,-701,-57], -[0,-13439,-13438,-670,-13437,-13436,-13435,-13434], +[0,-3136,-1637,-2375], +[0,-7362,-7363,-5839,-7364,-7365,-7366,-7367], [1,3,2678], [0,2679,0,2680,8], -[0,-13433], -[0,-406,-1992,-1642,-444,-1091,-494,-536,-669,-3769,-1222,-772,-1641,-1991,-2486,-1990,-1091], +[0,-7368], +[0,-7208,-7369,-7370,-1015,-3589,-1631,-702,-6351,-3755,-6545,-7371,-7372,-7373,-7374,-7375,-3589], [0,68,15,16,4], [1,3,2683], [0,0,2684,2685,5], -[0,-106,-3,-1,-23,-7,-288,-116,-13432,-421,-112,-830,-265,-995], -[0,-207,-5343,-1402,-13431], +[0,-4055,-1654,-932,-1548,-2125,-1753,-615,-7376,-1003,-2416,-821,-964,-1656], +[0,-834,-7377,-7378,-7379], [1,3,2687], [0,0,2688,2689,5], -[0,-13430,-3,-1,-66,-110,-56,-13429,-1826,-877,-3400,-13428,-13427,-80,-13426], -[0,-13425,-13424,-13423,-61], +[0,-7380,-1654,-932,-1405,-589,-756,-7381,-1559,-3311,-7382,-7383,-7384,-350,-7385], +[0,-7386,-7387,-7388,-3634], [1,3,2691], [0,2692,2693,2694,10], -[0,-13422,-1030,-13421,-3483,-5342,-13420,-5341,-3399,-13419,-1151,-2043,-1508,-609,-13418,-5340,-13417,-13416,-3398], -[0,-239,-766,-279,-13415,-1,-1015,-5339,-1323,-13414,-213,-275,-15,-3815,-187,-16,-39], -[0,-5338,-1664,-1402], +[0,-7389,-655,-7390,-6503,-7391,-7392,-7393,-7394,-7395,-1402,-5849,-1795,-1797,-7396,-7397,-7398,-7399,-7400], +[0,-5834,-515,-516,-7401,-932,-1065,-7402,-1283,-7403,-1365,-1777,-1788,-3335,-2156,-2177,-2322], +[0,-7404,-6439,-7378], [1,3,2696], [0,0,70,2697,4], -[0,-1869,-444,-1222,-772,-742,-536,-494,-106], +[0,-822,-1015,-6545,-7371,-2546,-702,-1631,-4055], [1,3,2699], [0,0,2700,2701,9], -[0,-5,-13413,-1152,-13412,-14,-463,-341,-39,-33,-2,-112], -[0,-494,-1222,-444,-669,-536,-772], +[0,-3037,-7405,-1396,-7406,-2127,-2131,-2137,-2322,-2379,-2410,-2416], +[0,-1631,-6545,-1015,-6351,-702,-7371], [1,3,2703], [0,2704,2705,2706,5], -[0,-206,-1154,-13411,-1401,-564,-5337,-285], -[0,-51,-110,-372,-81,-34], -[0,-775,-625,-3397,-3396,-626,-2485,-5336,-5335,-1219,-5334,-1989,-1410,-3395,-7,-2484,-28,-624,-126,-942,-405,-303,-1400], +[0,-1111,-1393,-7407,-7408,-1826,-7409,-2218], +[0,-519,-589,-2331,-2384,-2541], +[0,-6693,-6999,-7410,-7411,-6694,-7412,-7413,-7414,-6688,-7415,-7416,-6695,-7417,-2125,-7418,-1107,-7419,-6656,-7420, +-7421,-1076,-7422], [1,3,2708], [0,2709,2710,2711,10], -[0,-151,-467,-5337], -[0,-51,-118,-5333,-34], -[0,-724,-37,-775,-151,-626,-2485,-5336,-5335,-1219,-5334,-1989,-1410,-3395,-7,-2484,-28,-126,-625,-942,-405,-303,-1400, --1215], +[0,-824,-1630,-7409], +[0,-519,-999,-7423,-2541], +[0,-5732,-687,-6693,-824,-6694,-7412,-7413,-7414,-6688,-7415,-7416,-6695,-7417,-2125,-7418,-1107,-6656,-6999,-7420,-7421, +-1076,-7422,-7085], [1,3,2713], [0,2714,2715,2716,6], -[0,-3394,-13410], -[0,-2483,-2482,-81,-34], -[0,-172,-128,-658,-13409,-785,-13408,-2481,-13407,-783,-3507,-241,-13406,-658,-60,-629,-481,-116,-13405,-2480,-850], +[0,-7424,-7425], +[0,-7426,-7427,-2384,-2541], +[0,-1961,-2114,-826,-7428,-4116,-7429,-7430,-7431,-5389,-6302,-2634,-7432,-826,-510,-5867,-5923,-615,-7433,-7434,-6555], [1,3,2718], [0,2719,2720,2721,10], -[0,-36,-276,-96,-469,-23,-16,-101,-128,-5332,-5484,-446,-93,-13404,-1513,-403,-1546,-641,-427,-3393,-577,-1640,-6118, --5583], -[0,-15,-3,-1,-82,-220,-40,-4,-26,-50,-180,-2,-11,-94,-13403,-480,-178,-21,-265,-64,-266,-10,-355,-12,-148,-25,-278,-1230], -[0,-280,-1988,-451,-1987,-1563,-2027,-685,-2747], +[0,-812,-1460,-2550,-1353,-1548,-2177,-1442,-2114,-7435,-6651,-656,-1645,-7436,-1686,-755,-1048,-2115,-25,-7437,-46,-7438, +-3230,-6033], +[0,-1788,-1654,-932,-2198,-2299,-1077,-1942,-767,-21,-1972,-2410,-23,-528,-7439,-39,-43,-40,-964,-969,-933,-958,-539,-940, +-962,-967,-535,-5585], +[0,-7440,-7441,-5897,-7442,-827,-6137,-3015,-3016], [1,3,2723], [0,0,2724,2725,6], -[0,-110,-1186,-1,-84,-10,-214,-76,-67,-131,-66,-3,-488,-1484], -[0,-13402,-13401], +[0,-589,-585,-932,-943,-958,-963,-966,-968,-974,-1405,-1654,-2155,-2418], +[0,-7443,-7444], [1,3,2727], [0,2728,2729,7,4], -[0,-36,-5614,-206,-13400,-362,-88,-1123,-5331,-128], -[0,-13399,-9,-1451,-65,-97], +[0,-812,-5892,-1111,-7445,-1639,-1646,-1872,-7446,-2114], +[0,-7447,-1344,-3781,-1771,-2250], [1,3,2731], [0,0,14,2732,10], -[0,-2006,-13398,-668,-5330,-5329,-354,-163,-183,-2508,-3392,-5328], +[0,-6806,-7448,-6659,-7449,-7450,-707,-2265,-5554,-6916,-7451,-7452], [1,3,2734], [0,2735,2736,2737,5], -[0,-2012], -[0,-5327,-69,-5,-13397,-1,-13396,-118,-13395,-138,-555,-3391,-2], -[0,-668,-5326], +[0,-6558], +[0,-7453,-3621,-3037,-7454,-932,-7455,-999,-7456,-2269,-2386,-7457,-2410], +[0,-6659,-7458], [1,3,2739], [0,0,2740,2741,6], -[0,-15,-81,-13,-78,-3,-1,-14,-55,-17,-26,-112,-48,-2,-11,-189,-98,-526,-1228,-178,-21,-83,-170,-418,-310,-355,-648], -[0,-207,-5325,-1402,-3390,-183,-106,-24,-45], +[0,-1788,-2384,-664,-1471,-1654,-932,-2127,-1110,-2501,-767,-2416,-190,-2410,-23,-1482,-534,-1492,-5758,-43,-40,-2411, +-2505,-1483,-2832,-539,-1490], +[0,-834,-7459,-7378,-7460,-5554,-4055,-775,-3214], [1,3,2743], [0,2744,2745,2746,8], -[0,-207,-13394], -[0,-48,-1986,-13393,-29,-5,-13392,-1639,-160,-6515,-1182,-535,-144,-382,-1,-145,-67,-277,-55,-250,-5324,-346,-9,-13391, --13390,-8,-18,-997,-377,-72,-466,-38,-696,-561,-492,-805,-4,-57,-211,-33,-2,-83,-438,-17,-92,-170,-792], -[0,-387,-207,-637,-13389,-1063,-13388,-13387,-1055,-2107,-637,-224,-31,-6492,-13386,-13385], +[0,-834,-7461], +[0,-190,-7462,-7463,-3136,-3037,-7464,-7465,-518,-645,-699,-748,-778,-784,-932,-959,-968,-1041,-1110,-1276,-7466,-1331, +-1344,-7467,-7468,-1415,-1534,-1607,-1643,-1650,-1758,-1889,-1891,-1906,-1908,-1927,-1942,-2375,-2376,-2379,-2410,-2411, +-2437,-2501,-2503,-2505,-2516], +[0,-5889,-834,-3240,-7469,-6722,-7470,-7471,-7472,-4131,-3240,-712,-3264,-835,-7473,-7474], [1,3,2748], [0,119,120,2749,4], -[0,-13383,-13382,-13381,-13380,-13379,-13378,-13377,-45,-3389,-1638,-270,-2,-3388,-733,-436,-13376,-13375,-141,-1251, --3387,-5322,-13374,-13373,-13372,-13371,-13370,-13369,-13368,-3789,-13367,-13366,-13365,-248,-13364,-13363,-3386,-13362, --13361,-13360,-13359,-13358,-720,-13357,-13356,-13355,-13354,-13353,-13352,-13351,-13350,-13349,-13348,-13347,-13346, --5321,-1080,-13345,-13344,-13343,-13342,-13341,-13340,-13339, --13338,-3385,-13337,-13336,-13335,-450,-1213,-3384,-3383,-2479,-3382,-3381,-3380,-3379,-3378,-3377,-3376,-3375,-5320, --1985,-3374,-846,-3373,-3372,-3371,-3370,-3369,-3368,-3367,-3366,-2478,-132,-1399,-3365,-2622,-3364,-5319,-5318,-542, --3363,-42,-1404], +[0,-7477,-7478,-7479,-7480,-7481,-7482,-7483,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-7487,-7488,-3966,-4336, +-7489,-7490,-7491,-7492,-7493,-7494,-7495,-7496,-7497,-3552,-7498,-7499,-7500,-1847,-7501,-7502,-7503,-7504,-7505,-7506, +-7507,-7508,-7282,-7509,-7510,-7511,-7512,-7513,-7514,-7515,-7516,-7517,-7518,-7519,-7520,-7521,-5150,-7522,-7523,-7524, +-7525,-7526,-7527,-7528, +-7529,-7530,-7531,-7532,-7533,-6582,-7534,-7535,-7536,-7537,-7538,-7539,-7540,-7541,-7542,-7543,-7544,-7545,-7546,-7547, +-7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558,-7559,-5063,-7560,-7561,-7562,-6187,-7563, +-856,-7275], [1,3,2751], [0,0,2752,2753,6], -[0,-13,-244,-54,-177,-302,-1010,-117,-1000,-345,-3], -[0,-13,-2532,-91,-61], +[0,-664,-665,-1127,-1144,-1149,-1156,-1452,-1453,-1542,-1654], +[0,-664,-6537,-4865,-3634], [1,3,2755], [0,2756,56,57,4], -[0,-13334,-5317,-4006,-1834,-3932], +[0,-7564,-7565,-840,-1406,-1744], [1,3,2758], [0,2759,2760,2761,6], -[0,-44,-284,-13333,-6026,-6567,-6025,-1017,-13332,-6024,-13331,-6023,-3778,-13330], -[0,-81,-8,-2133,-1,-196,-1172,-4,-26,-2,-5,-13329,-6022,-6021,-2702,-6020,-19,-22], -[0,-3777,-99,-3362,-337,-141,-6019], +[0,-2387,-2426,-7567,-3675,-151,-3676,-1025,-7568,-3677,-7569,-3678,-3679,-7570], +[0,-2384,-1415,-3682,-932,-2388,-879,-1942,-767,-2410,-3037,-7571,-3683,-3685,-3686,-3687,-428,-427], +[0,-3689,-3690,-7572,-3323,-3966,-3692], [1,3,2763], [0,2764,0,7,4], -[0,-112,-761,-565], +[0,-2416,-1044,-1813], [1,3,2766], [0,2767,2768,193,8], -[0,-1408,-5316,-13328,-5315,-250,-228,-1984], -[0,-13327], +[0,-6789,-7573,-7574,-7575,-1276,-1610,-7576], +[0,-7577], [1,3,2770], [0,2771,0,2772,6], -[0,-815], -[0,-4005,-42,-166,-13326,-100,-107], +[0,-1448], +[0,-843,-856,-1446,-7578,-1599,-3862], [1,3,2774], [0,0,0,2775,9], -[0,-13325,-3361,-1212,-1637,-46,-2520], +[0,-7579,-7580,-7581,-7582,-3445,-6809], [1,3,2777], [0,2778,31,2779,10], -[0,-13324,-5314,-13323], -[0,-3360,-13322], +[0,-7583,-7584,-7585], +[0,-7586,-7587], [1,3,2781], [0,2782,2783,2784,8], -[0,-201,-96,-6489,-5313,-5312,-2476], -[0,-13,-3,-41,-168], -[0,-42,-388,-75,-678,-390], +[0,-523,-2550,-848,-7588,-7589,-7590], +[0,-664,-1654,-1004,-617], +[0,-856,-5119,-4004,-4100,-3671], [1,3,2786], [0,2787,2788,2789,10], -[0,-3800,-2476,-5311,-193,-2046,-13321,-13320,-13319,-201,-5313,-5312,-215,-5310,-13318,-13317,-991,-806,-13316,-687, --1242], -[0,-1563,-41,-3,-16], -[0,-42,-75,-678,-390], +[0,-3417,-7590,-7591,-469,-5769,-7592,-7593,-7594,-523,-7588,-7589,-865,-7595,-7596,-7597,-1870,-1880,-7598,-2369,-4881], +[0,-827,-1004,-1654,-2177], +[0,-856,-4004,-4100,-3671], [1,3,2791], [0,2792,0,2793,9], -[0,-58,-228,-40,-247,-379], -[0,-42,-390,-114,-13315,-316], +[0,-719,-1610,-1077,-2424,-1304], +[0,-856,-3671,-3262,-7599,-711], [1,3,2795], [0,2796,0,193,4], -[0,-1171,-13314,-13313], +[0,-885,-7600,-7601], [1,3,2798], [0,2799,2800,2801,10], -[0,-5309,-3359,-5308,-13312,-1805,-1290,-123], -[0,-116,-13,-1822,-3], -[0,-1983,-13311], +[0,-7602,-7603,-7604,-7605,-1969,-2324,-2446], +[0,-615,-664,-1627,-1654], +[0,-7606,-7607], [1,3,2803], [0,2804,2805,2806,4], -[0,-13310,-13309,-13308,-2257,-13307,-925,-13306,-2005,-13305,-13304,-13303,-510,-13302,-13301,-13300,-13299,-13298, --13297,-200,-5307,-5306,-13296,-261,-188,-13295,-13294,-13293,-7,-13292,-13291,-13290,-16,-13289,-13288,-13287,-247, --13286,-2168], -[0,-13285,-5305,-13284,-316,-5304,-236,-5303,-5302], -[0,-2731,-666,-13283,-862,-37,-1982,-316,-665,-593,-5301,-1398,-684,-13282,-13281,-5516,-52,-114,-13280,-141,-165,-73, --844,-2112,-959,-3619,-740,-1054,-589,-202,-111,-13279,-512], +[0,-7608,-7609,-7610,-573,-7611,-653,-7612,-6838,-7613,-7614,-7615,-5835,-7616,-7617,-7618,-7619,-7620,-7621,-1376,-7622, +-7623,-7624,-1640,-1729,-7625,-7626,-7627,-2125,-7628,-7629,-7630,-2177,-7631,-7632,-7633,-2424,-7634,-2549], +[0,-7635,-7636,-7637,-711,-7638,-1666,-7639,-7640], +[0,-3260,-7641,-7642,-4258,-687,-7643,-711,-7644,-3116,-7645,-7646,-3113,-7647,-7648,-6433,-3161,-3262,-7649,-3966,-1838, +-3215,-7650,-4065,-3970,-5371,-3261,-7651,-3673,-3590,-3578,-7652,-4602], [1,3,2808], [0,0,2809,2810,5], -[0,-739,-5,-103,-848,-110,-3358,-5300,-1,-10,-181,-2,-30], -[0,-53,-46,-318,-409,-166], +[0,-3268,-3037,-3664,-6593,-589,-7653,-7654,-932,-958,-960,-2410,-2469], +[0,-3100,-3445,-4058,-3926,-1446], [1,3,2812], [0,0,2813,2814,6], -[0,-11,-21,-48,-203,-80,-231,-63,-204,-160,-1031,-384,-1338,-1,-12,-55,-525,-5512,-65,-38,-1808,-1504,-561,-4,-7,-14, --1246,-77], -[0,-390,-2762,-13278,-42,-114,-45,-270,-100,-969,-107,-5328,-13277], +[0,-23,-40,-190,-3326,-350,-4062,-351,-3266,-518,-632,-724,-920,-932,-940,-1110,-1609,-6451,-1771,-1889,-1897,-1903,-1906, +-1942,-2125,-2127,-4753,-2162], +[0,-3671,-2757,-7655,-856,-3262,-3214,-3756,-1599,-3437,-3862,-7452,-7656], [1,3,2816], [0,2817,71,2818,8], -[0,-13276,-13275,-497,-88,-247,-13274], -[0,-571,-100,-42,-1728,-73,-1981,-1397,-5299], +[0,-7657,-7658,-1333,-1646,-2424,-7659], +[0,-1105,-1599,-856,-4328,-3215,-7660,-7661,-7662], [1,3,2820], [0,2821,2822,2823,8], -[0,-11,-879,-427,-577,-479,-20,-119,-207,-13273,-2103,-486,-28,-6225,-379,-758,-101,-13272,-23,-2600,-13271,-5298,-5297, --1124,-2190,-274,-521,-2810,-13270,-1719,-128,-599,-1396,-340,-483,-13269,-13268,-96], -[0,-5296,-298,-13267,-1,-12,-40,-9,-8,-650,-18,-568,-4,-134,-156], -[0,-42,-1254,-166,-2475,-73,-878], +[0,-23,-3194,-25,-46,-47,-668,-679,-834,-7663,-4236,-3649,-1107,-2765,-1304,-1371,-1442,-7664,-1548,-5347,-7665,-7666, +-7667,-1866,-2061,-2093,-2095,-2096,-7668,-4656,-2114,-2271,-7669,-2429,-5358,-7670,-7671,-2550], +[0,-7672,-796,-7673,-932,-940,-1077,-1344,-1415,-1456,-1534,-1658,-1942,-2251,-2359], +[0,-856,-4144,-1446,-7674,-3215,-3258], [1,3,2825], [0,2826,2827,2828,5], -[0,-13266,-13265,-36,-13264,-13263,-1211,-3357,-247], -[0,-5,-54,-531,-1010,-345,-995,-5454,-27,-1487], -[0,-13262,-13261,-6488,-13260,-1421,-1210,-386,-1073], +[0,-7675,-7676,-812,-7677,-7678,-7679,-7680,-2424], +[0,-3037,-1127,-1152,-1156,-1542,-1656,-6799,-2210,-2351], +[0,-7681,-7682,-857,-7683,-5800,-7684,-7685,-5801], [1,3,2830], [0,2831,2832,2833,4], -[0,-3796,-1847,-28,-20,-6,-445,-23,-72,-926,-382,-41,-38,-440,-113,-272,-1743,-1486,-40,-2220,-58,-35,-267,-644,-1119,-11, --13259,-479,-160,-379,-997,-3356,-2660,-5295,-13258,-486,-480,-178,-577,-1302,-5294,-21,-5293,-3355,-136,-424,-1022,-216, --306], -[0,-7,-2474,-1852,-5292], -[0,-42,-5291,-3354,-1867], +[0,-3484,-1088,-1107,-668,-2006,-915,-1548,-1650,-572,-784,-1004,-1889,-1955,-2105,-2195,-3728,-2353,-1077,-1356,-719, +-2019,-682,-1888,-2102,-23,-7686,-47,-518,-1304,-1607,-7687,-4356,-7688,-7689,-3649,-39,-43,-46,-2015,-7690,-40,-7691, +-7692,-41,-930,-916,-26,-36], +[0,-2125,-7693,-1075,-7694], +[0,-856,-7695,-7696,-858], [1,3,2835], [0,2836,27,2837,5], -[0,-13257,-304,-2648,-1842,-2875,-3964,-1092,-13256,-2691,-93,-2187,-2473,-133,-5290], -[0,-1867,-1092,-13255,-42], +[0,-7697,-703,-4700,-1288,-1293,-1310,-3544,-7698,-3788,-1645,-2087,-7699,-2427,-7700], +[0,-858,-3544,-7701,-856], [1,3,2839], [0,2840,2841,2842,6], -[0,-90,-764], -[0,-13254,-13253,-50,-11,-140,-13252,-13251,-13250,-22,-19,-94,-98,-1,-10,-148,-265,-64,-421,-28,-249,-78,-139,-212,-3353, --189,-418,-1320,-648,-526,-3,-7,-5289,-27,-2,-17], -[0,-1866,-108,-255,-99,-13249,-225,-783,-5288,-2010,-1866,-1980,-13248,-24], +[0,-44,-786], +[0,-7702,-7703,-21,-23,-42,-7704,-7705,-7706,-427,-428,-528,-534,-932,-958,-962,-964,-969,-1003,-1107,-1437,-1471,-1475, +-1479,-7707,-1482,-1483,-1489,-1490,-1492,-1654,-2125,-7708,-2210,-2410,-2501], +[0,-860,-3159,-5092,-3690,-7709,-5553,-5389,-7710,-6730,-860,-7711,-7712,-775], [1,3,2844], [0,2845,2846,2847,4], -[0,-457,-1659,-5287], -[0,-8,-1,-238,-57,-4,-2,-29,-5,-497,-12,-19,-22], -[0,-31,-506,-844], +[0,-3223,-6585,-7713], +[0,-1415,-932,-674,-2375,-1942,-2410,-3136,-3037,-1333,-940,-428,-427], +[0,-3264,-6597,-7650], [1,3,2849], [0,0,2850,2851,8], -[0,-13,-1,-54,-167,-177,-347,-302,-1011,-101,-78,-703,-139,-212,-189,-418,-3,-4,-16], -[0,-255,-281,-13247,-844,-31,-327,-256,-579], +[0,-664,-932,-1127,-1132,-1144,-1148,-1149,-1155,-1442,-1471,-1474,-1475,-1479,-1482,-1483,-1654,-1942,-2177], +[0,-5092,-6527,-7714,-7650,-3264,-659,-3839,-7715], [1,3,2853], [0,2854,2855,2856,6], -[0,-5286], -[0,-11,-21,-203,-63,-232,-204,-329,-5,-26,-12,-25,-249,-79,-78,-1527,-139,-212,-1830,-755,-13246,-88,-65,-235,-4,-375, --5285,-7,-14,-415,-13245,-301,-44,-2,-34], -[0,-255,-1282,-31,-256,-13244,-667,-5284,-5283,-941,-719,-5282], +[0,-7716], +[0,-23,-40,-3326,-351,-3561,-3266,-426,-3037,-767,-940,-967,-1437,-1449,-1471,-1473,-1475,-1479,-1485,-1486,-7717,-1646, +-1771,-1939,-1942,-1989,-7718,-2125,-2127,-2132,-7719,-2142,-2387,-2410,-2541], +[0,-5092,-2544,-3264,-3839,-7720,-7107,-7721,-7722,-7723,-7724,-7725], [1,3,2858], [0,0,2859,2860,10], -[0,-15,-1,-56,-235,-5696], -[0,-271,-508,-631,-1054], +[0,-1788,-932,-756,-1939,-5478], +[0,-3110,-5922,-5493,-7651], [1,3,2862], [0,0,2863,2864,4], -[0,-5,-1746,-27,-97,-134,-85,-2], -[0,-215,-1217,-5281,-782,-1454,-353,-2512], +[0,-3037,-3542,-2210,-2250,-2251,-2319,-2410], +[0,-865,-6845,-7726,-5558,-3591,-727,-6849], [1,3,2866], [0,194,2867,2868,5], -[0,-5,-97,-134,-85,-2], -[0,-215,-1636,-1454,-5280,-13243,-1217,-5281], +[0,-3037,-2250,-2251,-2319,-2410], +[0,-865,-7727,-3591,-7728,-7729,-6845,-7726], [1,3,2870], [0,2871,2872,2873,4], -[0,-402,-1124,-904,-13242,-753,-1331,-2892,-1979,-498,-13241,-1027], -[0,-34,-51,-198,-13240,-7,-493,-13239], -[0,-1340,-943,-105,-113,-195], +[0,-1116,-1866,-1825,-7730,-1591,-1043,-814,-7731,-1100,-7732,-736], +[0,-2541,-519,-1722,-7733,-2125,-1849,-7734], +[0,-867,-7347,-1334,-2105,-2435], [1,3,2875], [0,2876,2877,2878,9], -[0,-1340,-13238,-7], -[0,-3826,-9,-3,-1792,-97], -[0,-1340,-571,-1397,-1981,-5279,-2472,-312,-943,-5278], +[0,-867,-7735,-2125], +[0,-3179,-1344,-1654,-2226,-2250], +[0,-867,-1105,-7661,-7660,-7736,-7737,-2323,-7347,-7738], [1,3,2880], [0,2881,2882,2883,4], -[0,-6487,-4001,-4000,-3998,-3997,-3999], -[0,-1,-7,-48,-2,-5,-83,-19,-22], -[0,-1023,-42,-37,-166,-476,-100,-106], +[0,-870,-871,-873,-875,-876,-874], +[0,-932,-2125,-190,-2410,-3037,-2411,-428,-427], +[0,-869,-856,-687,-1446,-620,-1599,-4055], [1,3,2885], [0,2886,2887,2888,8], -[0,-206,-4001,-13237,-13236,-4000,-3998,-3352,-3997,-3999], -[0,-8,-1,-7,-288,-57,-48,-2,-29,-5,-1978,-83,-19,-22], -[0,-1023,-42,-37], +[0,-1111,-871,-7739,-7740,-873,-875,-7741,-876,-874], +[0,-1415,-932,-2125,-1753,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-427], +[0,-869,-856,-687], [1,3,2890], [0,2891,2892,2893,4], -[0,-2509], -[0,-8,-1,-7,-57,-48,-2,-29,-5,-1978,-83,-19,-3443,-22], -[0,-1023,-42], +[0,-6904], +[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-6902,-427], +[0,-869,-856], [1,3,2895], [0,2896,121,2897,4], -[0,-3351], -[0,-1023,-42,-271], +[0,-7743], +[0,-869,-856,-3110], [1,3,2899], [0,2900,2901,2902,4], -[0,-597,-166,-5277], -[0,-8,-1,-7,-57,-660,-48,-2,-29,-5,-13235,-1978,-83,-19,-22], -[0,-1023,-42,-166], +[0,-2330,-1446,-7744], +[0,-1415,-932,-2125,-2375,-749,-190,-2410,-3136,-3037,-7745,-7742,-2411,-428,-427], +[0,-869,-856,-1446], [1,3,2904], [0,2905,2906,2907,4], -[0,-221,-379,-1137], -[0,-8,-1,-7,-57,-48,-2,-29,-5,-1978,-83,-874,-19,-22], -[0,-1023,-42,-476], +[0,-1600,-1304,-1605], +[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-3661,-428,-427], +[0,-869,-856,-620], [1,3,2909], [0,0,121,2910,8], -[0,-1023,-42,-106], +[0,-869,-856,-4055], [1,3,2912], [0,2913,121,2914,5], -[0,-1137], -[0,-1023,-42,-100], +[0,-1605], +[0,-869,-856,-1599], [1,3,2916], [0,2917,2918,2919,4], -[0,-1856,-529,-242], -[0,-11,-2033,-1231,-5276,-94,-5275,-26,-151,-1862,-1,-3350,-12,-827,-500,-148,-25,-64,-13234,-420,-32,-615,-1009,-6448, --13233,-2880,-820,-1161,-314,-363,-8,-4,-6,-35,-286,-13232,-71,-1105,-2471], -[0,-13231,-412,-6,-2470], +[0,-1033,-1361,-1792], +[0,-23,-6065,-5584,-7746,-528,-7747,-767,-824,-927,-932,-7748,-940,-951,-956,-962,-967,-969,-7749,-1059,-1168,-1174,-1184, +-1188,-7750,-1201,-1208,-1212,-1243,-1266,-1415,-1942,-2006,-2019,-2052,-7751,-2347,-2417,-7752], +[0,-7753,-3496,-2006,-7754], [1,3,2921], [0,2922,2923,2924,5], -[0,-957,-3349], -[0,-13230,-13229,-13,-502,-5274,-78,-139,-189,-2469,-702,-3,-1821,-6378,-3348,-77,-27,-186], -[0,-5273,-5272,-13228,-1053], +[0,-4007,-7755], +[0,-7756,-7757,-664,-795,-7758,-1471,-1475,-1482,-7759,-1491,-1654,-1655,-1745,-7760,-2162,-2210,-2211], +[0,-7761,-7762,-7763,-7764], [1,3,2926], [0,2927,2928,7,5], -[0,-96,-196,-3347,-40,-13227,-599,-2865,-5271,-5270,-5269], -[0,-1,-5,-413,-185,-19,-5268,-13226,-22], +[0,-2550,-2388,-7765,-1077,-7766,-2271,-1458,-7767,-7768,-7769], +[0,-932,-3037,-3041,-3048,-428,-7770,-7771,-427], [1,3,2930], [0,2931,0,2932,4], -[0,-1635], -[0,-718,-6485,-450,-386,-46,-37,-13225,-332], +[0,-7772], +[0,-7773,-880,-6582,-7685,-3445,-687,-7774,-5401], [1,3,2934], [0,2935,2936,113,4], -[0,-3634,-3633,-965,-252,-246,-408,-2606,-2605,-2604,-3632,-267,-5726,-5728,-832,-326,-3631,-829,-1687,-2602,-2601,-486, --1472,-1843,-2223,-760,-3630,-818,-1530,-2054,-101,-1824,-2600,-2053,-1314,-562,-1730,-3629,-440,-693,-2090,-2638,-2192, --2637,-1303,-1120,-1100,-1803,-5727,-3628,-1801,-3627,-750,-2052,-864,-521,-601,-804,-77,-1743,-2599,-2598,-133,-340, --1078,-195,-3626,-483,-3625], -[0,-49,-62,-2134,-3624,-2051,-411,-3623,-5,-1686,-963,-47,-1764,-87,-3622,-3621,-1,-2654,-229,-822,-2597,-3620,-9,-18,-4, --1122,-900,-6,-35,-179,-33,-2,-30,-2050,-5725], +[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5366,-5340,-747,-823,-5341,-909,-5342,-5343,-5344, +-3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, +-4942,-2003,-4944,-2004,-2013,-2965,-2028,-5350,-5351,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5354, +-5355,-2427,-2429, +-5356,-2435,-5357,-5358,-5359], +[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3803,-3040,-3087,-3052,-5364,-5365,-932,-4597,-1026,-1031,-5367, +-5368,-1344,-1534,-1942,-1944,-1945,-2006,-2019,-2281,-2379,-2410,-2469,-5369,-5370], [1,3,2938], [0,2939,2940,113,6], -[0,-3634,-3633,-965,-252,-246,-408,-2606,-2605,-2604,-3632,-267,-2603,-832,-326,-3631,-3625,-829,-1687,-2602,-2601,-486, --1472,-1843,-2223,-760,-3630,-818,-1530,-2054,-101,-1824,-2600,-2053,-1314,-562,-1730,-3629,-440,-693,-2090,-2638,-2637, --1120,-1100,-1803,-1801,-3627,-750,-2052,-864,-521,-601,-804,-77,-1743,-2598,-133,-340,-1078,-195,-3626,-483], -[0,-49,-62,-2134,-3624,-2051,-411,-3623,-5,-1686,-47,-1764,-3622,-3621,-1,-229,-822,-3620,-9,-18,-4,-1122,-900,-6,-179, --33,-2,-30], +[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5339,-747,-823,-5341,-5359,-909,-5342,-5343,-5344, +-3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, +-4942,-4944,-2013,-2965,-2028,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5355,-2427,-2429,-5356,-2435, +-5357,-5358], +[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3040,-3087,-5364,-5365,-932,-1026,-1031,-5368,-1344,-1534,-1942, +-1944,-1945,-2006,-2281,-2379,-2410,-2469], [1,3,2942], [0,0,2943,7,5], -[0,-39,-460], +[0,-2322,-2346], [1,3,2945], [0,2946,2947,110,8], -[0,-13224,-13223,-13222,-13221,-13220,-90,-1738,-13219,-13218,-13217,-13216,-13215,-267,-832,-574,-13214,-13213,-13212, --13211,-13210,-13209,-13208,-13207,-13206,-13205,-13204,-13203,-13202,-13201,-13200,-13199,-13198,-13197,-13196,-13195, --13194,-13193,-13192,-13191,-13190,-13189,-13188,-13187,-13186,-13185,-13184,-13183,-2089,-1788], -[0,-5650,-5645,-2742,-13182,-3680,-320,-3577,-2697,-3770,-2696,-2695,-2278,-1088,-3679,-3576,-1257,-5644,-5647,-1355,-713, --3678,-1439,-965,-330,-155,-122,-317,-3579,-5656,-5651,-185,-3677,-5652,-5649,-29,-1712,-3676,-2636,-1711,-586,-142,-725, --5,-5654,-5267,-3580,-963,-2709,-2088,-47,-1764,-87,-3675,-5790,-137,-5655,-1423,-3674,-1436,-22,-19,-2268,-3585, --3673,-3581,-3672,-201,-20,-238,-5646,-1679,-26,-2244,-2087,-215,-1559,-5648,-1264,-1,-266,-12,-251,-923,-10,-145,-148, --5266,-214,-64,-190,-150,-229,-2635,-40,-348,-28,-2054,-419,-1005,-1004,-569,-2868,-8,-1710,-1528,-176,-816,-1435,-2634, --249,-79,-3671,-2152,-18,-23,-5653,-1709,-88,-1130,-188,-1510,-1314,-149,-324,-3582,-991,-806, --4,-2821,-695,-440,-157,-464,-3670,-2633,-3669,-6,-1120,-5658,-35,-2744,-2632,-3668,-3667,-2814,-3666,-559,-3665,-342, --750,-274,-147,-521,-2631,-3575,-2086,-804,-7,-5661,-16,-689,-600,-321,-5660,-5787,-312,-1290,-175,-153,-124,-2,-2629, --5659,-17,-520,-1708], +[0,-7775,-7776,-7777,-7778,-7779,-44,-3946,-7780,-7781,-7782,-7783,-7784,-682,-747,-809,-7785,-7786,-7787,-7788,-7789, +-7790,-7791,-7792,-7793,-7794,-7795,-7796,-7797,-7798,-7799,-7800,-7801,-7802,-7803,-7804,-7805,-7806,-7807,-7808,-7809, +-7810,-7811,-7812,-7813,-7814,-7815,-7816,-4951,-2345], +[0,-5695,-5704,-3139,-7817,-4952,-2581,-5702,-3744,-3745,-3746,-3747,-162,-3778,-4954,-5706,-4106,-5708,-5699,-283,-305, +-4955,-4773,-3562,-406,-407,-409,-410,-5682,-5683,-5693,-3048,-4960,-5692,-5697,-3136,-4961,-4962,-4963,-4964,-4647, +-3044,-5686,-3037,-5688,-7818,-5675,-3803,-3624,-4966,-3040,-3087,-3052,-4968,-4969,-3199,-5687,-5673,-4971,-4972,-427, +-428,-464,-5595, +-4973,-5674,-4974,-523,-668,-674,-5701,-5676,-767,-768,-4977,-865,-881,-5698,-3808,-932,-933,-940,-948,-952,-958,-959, +-962,-7819,-963,-969,-970,-978,-1026,-4979,-1077,-1103,-1107,-5346,-1339,-1352,-1359,-1392,-1404,-1415,-4980,-1416,-1419, +-1421,-4981,-4982,-1437,-1449,-4983,-3134,-1534,-1548,-5689,-4984,-1646,-1662,-1729,-1737,-1779,-1805,-1816,-5668,-1870, +-1880, +-1942,-1943,-1950,-1955,-1978,-1983,-4985,-4986,-4987,-2006,-2013,-5680,-2019,-3051,-4988,-4989,-4990,-2027,-4991,-2044, +-4992,-2082,-2090,-2093,-2094,-2095,-4994,-5707,-4995,-2101,-2125,-5669,-2177,-2193,-2205,-2214,-5671,-5000,-2323,-2324, +-2334,-2392,-2402,-2410,-5001,-5678,-2501,-2502,-5002], [1,3,2949], [0,0,2950,2951,10], -[0,-49,-62,-1977,-48,-1,-12,-265,-25,-9,-18,-3,-4,-14,-82,-134], -[0,-670,-60,-1418,-13181,-1171,-406,-172,-3346,-3507,-46,-53], +[0,-86,-3307,-7820,-190,-932,-940,-964,-967,-1344,-1534,-1654,-1942,-2127,-2198,-2251], +[0,-5839,-510,-6235,-7821,-885,-7208,-1961,-7822,-6302,-3445,-3100], [1,3,2953], [0,2954,2955,2956,11], -[0,-44,-13180], -[0,-538,-11,-479,-5269,-5271,-13179,-478,-80,-63,-232,-29,-22,-19,-20,-58,-1172,-89,-1,-40,-206,-9,-8,-1528,-117,-297, --149,-14,-226,-1493,-16,-175,-57,-2], -[0,-3996,-13178,-3472,-13177,-1404,-3345,-13176,-327,-256], +[0,-2387,-7823], +[0,-22,-23,-47,-7769,-7767,-7824,-262,-350,-351,-3561,-3136,-427,-428,-668,-719,-879,-928,-932,-1077,-1111,-1344,-1415, +-1416,-1452,-1588,-1805,-2127,-2140,-2172,-2177,-2334,-2375,-2410], +[0,-886,-7825,-6581,-7826,-7275,-7827,-7828,-659,-3839], [1,3,2958], [0,2959,2960,2961,4], -[0,-1634,-1331,-13175,-1162,-13174,-2468,-13173,-23,-93,-5265,-143,-71,-70,-554,-96], -[0,-109,-185,-13172,-142,-69,-5,-2659,-269,-1270,-1976,-1395,-5264,-413,-13,-423,-40,-498,-3,-15,-180,-7,-27,-186,-33, --196,-2], -[0,-1634,-1269,-509,-5263,-1052,-5330,-68], +[0,-7829,-1043,-7830,-1199,-7831,-7832,-7833,-1548,-1645,-7834,-1876,-2347,-2460,-2462,-2550], +[0,-3035,-3048,-7835,-3044,-3621,-3037,-4364,-4372,-3625,-7836,-7837,-7838,-3041,-664,-994,-1077,-1100,-1654,-1788,-1972, +-2125,-2210,-2211,-2379,-2388,-2410], +[0,-7829,-3674,-5874,-7839,-7840,-7449,-7841], [1,3,2963], [0,2964,2965,2966,4], -[0,-2215], -[0,-2,-161,-59,-1,-5544,-166,-442,-3,-112], -[0,-271,-1054,-1059,-351], +[0,-1410], +[0,-2410,-32,-633,-932,-6272,-1446,-1582,-1654,-2416], +[0,-3110,-7651,-6899,-888], [1,3,2968], [0,2969,2970,2971,4], -[0,-20,-23,-13171], -[0,-198,-208,-60,-54,-3,-27,-798,-1,-249,-236,-16,-1033,-1883,-17,-13170,-13169,-116,-565,-4,-71,-421,-229,-3765,-167, --3344,-59,-11,-5262,-94,-98,-13168,-3343,-21,-76,-532,-243,-10,-656,-347,-67,-12,-84,-25,-131,-5261], -[0,-6484,-5578,-1740], +[0,-668,-1548,-7842], +[0,-1722,-461,-510,-1127,-1654,-2210,-2239,-932,-1437,-1666,-2177,-521,-600,-2501,-7843,-7844,-615,-1813,-1942,-2347, +-1003,-1026,-3767,-1132,-7845,-633,-23,-7846,-528,-534,-7847,-7848,-40,-966,-1138,-1134,-958,-1136,-1148,-968,-940,-943, +-967,-974,-7849], +[0,-889,-6045,-3817], [0,44,15,16,5], [1,3,2974], [0,2975,0,195,6], -[0,-5,-1165,-3342], +[0,-3037,-1018,-7850], [1,3,2977], [0,2978,2979,2980,4], -[0,-20,-96,-504,-40,-13167,-13166,-13165,-13164,-13163,-3352], -[0,-413,-185], -[0,-471,-862,-666,-1633,-757,-3341,-2467,-13162,-300,-5260,-2466,-13161,-1975,-2465,-5259,-13160,-13159,-13158,-13157, --13156,-5258,-3572], +[0,-668,-2550,-680,-1077,-7851,-7852,-7853,-7854,-7855,-7741], +[0,-3041,-3048], +[0,-891,-4258,-7641,-7856,-1380,-7857,-7858,-7859,-3994,-7860,-7861,-7862,-7863,-7864,-7865,-7866,-7867,-7868,-7869,-7870, +-7871,-5730], [1,3,2982], [0,2983,2984,2985,4], -[0,-5257,-3342,-13155,-13154,-13153,-13152,-36,-1165,-1979,-40,-13151,-13150,-5256,-13149,-1305,-5255,-128,-16,-518], -[0,-22,-19,-51,-1880,-152,-1,-84,-2234,-10,-76,-67,-15,-1123,-27,-81,-124,-2], -[0,-471,-3341,-2464,-300], +[0,-7872,-7850,-7873,-7874,-7875,-7876,-812,-1018,-7731,-1077,-7877,-7878,-7879,-7880,-1875,-7881,-2114,-2177,-2551], +[0,-427,-428,-519,-641,-708,-932,-943,-950,-958,-966,-968,-1788,-1872,-2210,-2384,-2402,-2410], +[0,-891,-7857,-7882,-3994], [1,3,2987], [0,2988,2989,195,10], -[0,-1165,-13148], -[0,-39,-97,-13147,-493], +[0,-1018,-7883], +[0,-2322,-2250,-7884,-1849], [1,3,2991], [0,2992,56,57,6], -[0,-20,-1851,-1834,-2463], +[0,-668,-1078,-1406,-7885], [1,3,2994], [0,2995,2996,7,8], -[0,-13146], -[0,-54,-3340,-1012,-177,-347,-1011,-378,-249,-78,-139,-212,-400,-909,-345,-23], +[0,-7886], +[0,-1127,-7887,-1130,-1144,-1148,-1155,-1413,-1437,-1471,-1475,-1479,-1481,-1487,-1542,-1548], [1,3,2998], [0,2999,3000,3001,5], -[0,-2264,-2926,-326,-6374,-1118,-1788], -[0,-13145,-13144,-182,-169,-98,-278,-355,-1188,-2261,-3339,-268,-2925,-13143,-13,-119,-535,-56,-13142,-26,-144,-1021,-1, --13141,-1860,-763,-2462,-277,-13140,-32,-1844,-13139,-1537,-379,-346,-911,-5670,-78,-139,-612,-189,-2469,-648,-702,-526, --3338,-221,-998,-5254,-1318,-377,-3,-1315,-2199,-38,-6353,-7,-462,-13138,-27,-186,-154,-13137,-1105, --13136,-438,-74,-1103,-882,-1480,-13135,-17,-92,-170,-1780], -[0,-13134,-74,-127], +[0,-513,-532,-823,-1761,-2113,-2345], +[0,-7888,-7889,-526,-527,-534,-535,-539,-541,-544,-7890,-558,-564,-7891,-664,-679,-748,-756,-7892,-767,-778,-925,-932, +-7893,-949,-957,-7894,-1041,-7895,-1168,-1171,-7896,-1248,-1304,-1331,-1455,-5610,-1471,-1475,-1476,-1482,-7759,-1490, +-1491,-1492,-7897,-1600,-1601,-7898,-1602,-1643,-1654,-1743,-1814,-1889,-1960,-2125,-2163,-7899,-2210,-2211,-2275,-7900, +-2417, +-7901,-2437,-2476,-2481,-2483,-2485,-7902,-2501,-2503,-2505,-2509], +[0,-7903,-2476,-3098], [1,3,3003], [0,3004,3005,3006,4], -[0,-2909,-13133,-13132,-13131,-528,-13130,-13129], -[0,-1572,-56,-1,-54,-1012,-167,-616,-532,-347,-13128,-1845,-66,-3], -[0,-13127,-13126,-13125,-13124], +[0,-616,-7904,-7905,-7906,-1370,-7907,-7908], +[0,-627,-756,-932,-1127,-1130,-1132,-1137,-1138,-1148,-7909,-1161,-1405,-1654], +[0,-7910,-7911,-7912,-7913], [1,3,3008], [0,3009,3010,3011,4], -[0,-13123,-13122,-13121,-1530,-13120,-23,-1816], -[0,-49,-62,-51,-238,-26,-351,-1,-1551,-1854,-9,-18,-13119,-15,-13118,-643,-147,-1800,-34], -[0,-4012,-2461,-1059,-443,-5253,-5252,-13117,-13116,-13115,-13114,-1816,-13113,-643,-13112,-271,-740,-2721], +[0,-7914,-7915,-7916,-1329,-7917,-1548,-1752], +[0,-86,-3307,-519,-674,-767,-888,-932,-946,-1053,-1344,-1534,-7918,-1788,-7919,-1974,-2094,-2099,-2541], +[0,-735,-7920,-6899,-1501,-7921,-7922,-7923,-7924,-7925,-7926,-1752,-7927,-1974,-7928,-3110,-3261,-3443], [1,3,3013], [0,0,3014,7,5], -[0,-48,-13111,-5,-13110,-103,-1,-12,-25,-13109,-4,-5251,-33,-2,-83,-30], +[0,-190,-7929,-3037,-7930,-3664,-932,-940,-967,-7931,-1942,-7932,-2379,-2410,-2411,-2469], [1,3,3016], [0,3017,3018,3019,10], -[0,-13108,-13107,-13106,-13105,-13104,-3860,-3337,-13103,-13102,-3336,-2907,-13101,-2253,-6231,-13100,-3335,-3334,-5250, --13099,-20,-504,-13098,-384,-1178,-3333,-13097,-5249,-13096,-207,-13095,-5692,-13094,-5691,-3332,-118,-921,-41,-761,-349, --13093,-40,-2548,-2593,-2597,-28,-2549,-13092,-13091,-3331,-614,-1155,-200,-13090,-13089,-23,-221,-13088,-93,-700,-466, --994,-5265,-5248, --644,-5247,-13087,-5246,-128,-3516,-1394,-5245,-16,-2592,-1632,-5244,-597,-3886,-1486,-5243,-1102,-5242,-2699,-13086, --13085,-13084], -[0,-1666,-1882,-13,-244,-5241,-5507,-289,-13083,-13082,-1,-12,-3330,-265,-115,-1330,-5240,-79,-2213,-3,-198,-15,-4,-3329, --138,-125,-1789,-156,-1974,-881,-219,-13081,-13080], -[0,-300,-13079,-1685,-37,-5239,-13078,-13077,-3834], +[0,-7933,-7934,-7935,-7936,-7937,-2731,-7938,-7939,-7940,-7941,-628,-7942,-629,-2733,-7943,-7944,-7945,-7946,-7947,-668, +-680,-7948,-724,-728,-7949,-7950,-7951,-7952,-834,-7953,-5501,-7954,-5502,-7955,-999,-1000,-1004,-1044,-1047,-7956,-1077, +-6345,-5505,-5367,-1107,-6343,-7957,-7958,-7959,-1336,-1369,-1376,-7960,-7961,-1548,-1600,-7962,-1645,-1676,-1758,-1767, +-7834,-7963, +-1888,-7964,-7965,-7966,-2114,-6195,-7967,-7968,-2177,-5509,-7969,-7970,-2330,-2342,-2353,-7971,-2488,-7972,-3730,-7973, +-7974,-7975], +[0,-6346,-630,-664,-665,-7976,-6477,-726,-7977,-7978,-932,-940,-7979,-964,-965,-1054,-7980,-1449,-1514,-1654,-1722,-1788, +-1942,-7981,-2269,-2293,-2341,-2359,-7982,-2512,-2518,-7983,-7984], +[0,-3994,-7985,-5375,-687,-7986,-7987,-7988,-3114], [1,3,3021], [0,3022,3023,3024,4], -[0,-2734,-622,-1096,-3808,-3810,-2725,-6082,-173,-1095,-21,-90,-13076,-5238,-13075,-13074,-1188,-3328,-3336,-2907,-3335, --5250,-536,-13073,-13072,-3332,-3516,-16], -[0,-11,-5237,-13071,-5236,-13070,-13069,-94,-1882,-13,-1028,-5235,-473,-3333,-159,-5249,-5234,-1556,-2460,-6477,-3327, --5233,-5232,-5231,-5230,-5229,-1,-5228,-76,-5240,-3326,-3,-375,-342,-3329,-128,-7,-17], -[0,-292,-5239,-5227,-1556,-2150,-1277], +[0,-3197,-33,-3376,-3384,-3355,-3374,-3397,-38,-3412,-40,-44,-7989,-7990,-7991,-7992,-541,-7993,-7941,-628,-7944,-7946, +-702,-7994,-7995,-7955,-6195,-2177], +[0,-23,-7996,-7997,-7998,-7999,-8000,-528,-630,-664,-705,-8001,-722,-7949,-753,-7951,-8002,-902,-8003,-904,-8004,-8005, +-8006,-8007,-8008,-8009,-932,-8010,-966,-7980,-8011,-1654,-1989,-2082,-7981,-2114,-2125,-2501], +[0,-525,-7986,-8012,-902,-3185,-3186], [1,3,3026], [0,3027,3028,3029,6], -[0,-13068,-13067,-3336,-13066,-1666,-2548,-3331,-5226,-2592,-1102], -[0,-11,-161,-622,-1096,-173,-1095,-90,-5237,-5236,-13065,-5238,-2253,-1882,-13,-5235,-289,-5234,-1556,-6478,-13064,-2460, --3327,-5233,-5232,-5231,-5230,-5229,-13063,-13062,-13061,-1,-12,-5228,-265,-115,-25,-3325,-1330,-3326,-3,-4,-375,-6350, --373,-5530,-179,-558,-5773,-17], -[0,-5227,-1556], +[0,-8013,-8014,-7941,-8015,-6346,-6345,-7959,-8016,-5509,-2488], +[0,-23,-32,-33,-3376,-38,-3412,-44,-7996,-7998,-8017,-7990,-629,-630,-664,-8001,-726,-8002,-902,-903,-8018,-8003,-8004, +-8005,-8006,-8007,-8008,-8009,-8019,-8020,-8021,-932,-940,-8010,-964,-965,-967,-8022,-1054,-8011,-1654,-1942,-1989,-1990, +-2091,-6348,-2281,-2282,-5059,-2501], +[0,-8012,-902], [1,3,3031], [0,3032,3033,3034,8], -[0,-13060,-13059], -[0,-63,-319,-5,-1525,-7,-14,-153,-2], -[0,-6476,-31,-24,-13058,-13057], +[0,-8023,-8024], +[0,-351,-3267,-3037,-1520,-2125,-2127,-2392,-2410], +[0,-905,-3264,-775,-8025,-8026], [1,3,3036], [0,0,0,105,8], [1,3,3038], [0,0,3039,3040,8], -[0,-3,-1,-66,-76,-10,-67,-84,-131], -[0,-777,-1339,-195], +[0,-1654,-932,-1405,-966,-958,-968,-943,-974], +[0,-6422,-907,-2435], [1,3,3042], [0,3043,31,3044,4], -[0,-698], -[0,-245,-940,-2042,-13056,-13055,-13054,-785], +[0,-1801], +[0,-5827,-8027,-5865,-8028,-8029,-8030,-4116], [1,3,3046], [0,3047,3048,7,4], -[0,-325,-1291], -[0,-872,-29,-5,-425,-1,-583,-9,-8,-18,-262,-4,-2], +[0,-1119,-2321], +[0,-4035,-3136,-3037,-774,-932,-6929,-1344,-1415,-1534,-1623,-1942,-2410], [1,3,3050], [0,3051,3052,3053,4], -[0,-477,-138], -[0,-5,-707,-200,-3,-15,-397,-2], -[0,-2123,-2679,-1737,-1736,-37,-308,-294,-1735,-573,-114,-547,-3745,-336,-2678,-200,-1447,-2122,-45,-141,-335,-490,-397, --2121,-2120,-1301,-959,-1466,-3744,-1446,-1262,-174,-431,-102,-958,-1776,-2119], +[0,-479,-2269], +[0,-3037,-1202,-1376,-1654,-1788,-1966,-2410], +[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3262,-3960,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3966,-3967, +-1965,-1966,-3968,-3969,-2063,-3970,-3108,-3971,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], [1,3,3055], [0,3056,3057,3058,8], -[0,-1662,-13053,-988,-3324], -[0,-239,-279,-510,-1,-1166,-213,-275,-15,-187,-39], -[0,-457,-13052,-1051,-31,-777,-1416], +[0,-6511,-8031,-1977,-8032], +[0,-5834,-516,-5835,-932,-993,-1365,-1777,-1788,-2156,-2322], +[0,-3223,-8033,-8034,-3264,-6422,-6420], [1,3,3060], [0,0,3061,3062,9], -[0,-13,-9,-3,-2184], -[0,-5225,-13051,-13050,-540,-1213], +[0,-664,-1344,-1654,-2176], +[0,-8035,-8036,-8037,-8038,-7534], [1,3,3064], [0,3065,122,196,5], -[0,-1168,-460], +[0,-987,-2346], [1,3,3067], [0,0,3068,3069,4], -[0,-11,-1231,-480,-21,-49,-62,-1639,-169,-94,-86,-98,-1,-191,-12,-10,-25,-13049,-28,-9,-8,-88,-1458,-2466,-4,-3529,-17, --92,-219,-13048], -[0,-684,-1217,-782,-3323,-13047,-5224,-13046], +[0,-23,-5584,-39,-40,-86,-3307,-7465,-527,-528,-533,-534,-932,-934,-940,-958,-967,-8039,-1107,-1344,-1415,-1646,-3547, +-7861,-1942,-6040,-2501,-2503,-2518,-8040], +[0,-3113,-6845,-5558,-8041,-8042,-8043,-8044], [1,3,3071], [0,3072,3073,85,4], -[0,-5223,-238,-3995,-5222,-1631,-13045,-13044,-5221,-13043,-3399,-13042,-13041,-5220,-1826,-1312,-2043,-609,-1126,-2459, --694,-13040,-3322], -[0,-182,-1674,-765,-1,-266,-10,-148,-64,-213,-79,-7,-187], +[0,-8045,-674,-918,-8046,-8047,-8048,-8049,-8050,-8051,-7394,-8052,-8053,-8054,-1559,-1794,-5849,-1797,-1798,-8055,-1992, +-8056,-8057], +[0,-526,-6022,-557,-932,-933,-958,-962,-969,-1365,-1449,-2125,-2156], [1,3,3075], [0,3076,3077,85,11], -[0,-706,-16,-439,-121,-609,-2459,-286,-6475,-3995], -[0,-445,-1,-7,-275,-50,-213,-11,-765,-64,-187,-161,-266,-10,-148,-190,-278,-1674], +[0,-1285,-2177,-2029,-1967,-1797,-8055,-2052,-917,-918], +[0,-915,-932,-2125,-1777,-21,-1365,-23,-557,-969,-2156,-32,-933,-958,-962,-970,-535,-6022], [1,3,3079], [0,3080,3081,85,4], -[0,-706,-16,-121,-609,-13035,-2458,-5222], -[0,-1,-7,-275,-50,-213,-11,-765,-64,-187,-161,-266,-10,-148,-190,-278,-1674], +[0,-1285,-2177,-1967,-1797,-8062,-8063,-8046], +[0,-932,-2125,-1777,-21,-1365,-23,-557,-969,-2156,-32,-933,-958,-962,-970,-535,-6022], [1,3,3083], [0,3084,3085,85,6], -[0,-706,-2043], -[0,-1,-7,-275,-50,-213,-11,-765,-187,-161,-10,-191,-278,-1674], +[0,-1285,-5849], +[0,-932,-2125,-1777,-21,-1365,-23,-557,-2156,-32,-958,-934,-535,-6022], [1,3,3087], [0,3088,3089,7,9], -[0,-1191,-501], -[0,-838,-1,-84,-10,-214,-76,-67,-3,-15,-125], +[0,-459,-929], +[0,-465,-932,-943,-958,-963,-966,-968,-1654,-1788,-2293], [1,3,3091], [0,3092,3093,3094,4], -[0,-208,-229], -[0,-1999,-305,-13034,-3814,-1393,-13033,-4,-373], -[0,-13032,-13031,-1663,-13030,-13029,-13028,-338,-13027,-13026,-13025,-270,-13024,-13023,-13022,-13021,-13020], +[0,-461,-1026], +[0,-7150,-635,-8064,-3347,-8065,-8066,-1942,-2091], +[0,-8067,-8068,-6505,-8069,-8070,-8071,-3217,-8072,-8073,-8074,-3756,-8075,-8076,-8077,-8078,-8079], [1,3,3096], [0,3097,3098,3099,4], -[0,-5219,-1323,-13019,-5218,-13018,-3492,-609], -[0,-310,-239,-1392,-13017,-5217,-13016,-5216,-5215,-3321,-5214,-5213,-5212,-5211,-13015,-664,-1891,-279,-510,-1,-2021, --3483,-1151,-275,-15,-13014,-187,-13013,-39,-13012], -[0,-45,-338,-1663,-270,-2486,-853,-13011,-5210,-2580], +[0,-8080,-1283,-8081,-8082,-8083,-6402,-1797], +[0,-2832,-5834,-8084,-8085,-8086,-8087,-8088,-8089,-8090,-8091,-8092,-8093,-8094,-8095,-8096,-505,-516,-5835,-932,-6283, +-6503,-1402,-1777,-1788,-8097,-2156,-8098,-2322,-8099], +[0,-3214,-3217,-6505,-3756,-7374,-5846,-8100,-8101,-5831], [1,3,3101], [0,3102,3103,3104,11], -[0,-5475,-13010,-13009,-5209], -[0,-1,-3465,-3464,-3463,-9,-18,-15,-13008,-3462,-5474], -[0,-338,-13007,-13006,-1050,-339,-1973,-13005,-5208,-5207,-1756,-45,-549,-672,-132,-674,-939], +[0,-6704,-8102,-8103,-8104], +[0,-932,-6706,-6707,-6708,-1344,-1534,-1788,-8105,-6709,-6710], +[0,-3217,-8106,-8107,-8108,-3184,-8109,-8110,-8111,-8112,-3207,-3214,-3582,-5396,-2444,-5260,-8113], [1,3,3106], [0,0,3107,3108,4], -[0,-239,-766,-1,-213,-2214,-15,-187,-112], -[0,-672,-1050,-13004,-45,-338,-549], +[0,-5834,-515,-932,-1365,-1414,-1788,-2156,-2416], +[0,-5396,-8108,-8114,-3214,-3217,-3582], [1,3,3110], [0,0,3111,3112,5], -[0,-182,-169,-278,-5935,-268,-13,-26,-3,-7], -[0,-339,-627,-292], +[0,-526,-527,-535,-4098,-558,-664,-767,-1654,-2125], +[0,-3184,-6324,-525], [1,3,3114], [0,0,3115,3116,9], -[0,-13003,-3,-1556,-3334,-3337,-5206,-5205,-5204,-5203,-2253,-3328,-2460,-13002,-5202,-2562,-2567,-5201,-2564,-1887,-2565, --2568,-1886,-2566,-2563], -[0,-5200,-549,-172,-481], +[0,-8115,-1654,-902,-7945,-7938,-8116,-8117,-8118,-8119,-629,-7993,-8003,-8120,-8121,-6083,-6070,-8122,-6081,-548,-6072, +-6068,-550,-6071,-6082], +[0,-8123,-3582,-1961,-5923], [1,3,3118], [0,0,3119,3120,4], -[0,-50,-11,-21,-2649,-1021,-1,-12,-84,-10,-76,-67,-9,-15,-4,-27,-39], -[0,-172,-481,-339,-2457,-3994], +[0,-21,-23,-40,-4691,-925,-932,-940,-943,-958,-966,-968,-1344,-1788,-1942,-2210,-2322], +[0,-1961,-5923,-3184,-8124,-926], [1,3,3122], [0,0,3123,3124,8], -[0,-239,-766,-13,-1553,-1,-1166,-54,-616,-302,-1845,-213,-3,-15,-1806,-13001,-187,-39,-112], -[0,-338,-1756,-339,-672,-172,-481,-13000,-774,-2456,-5199], +[0,-5834,-515,-664,-923,-932,-993,-1127,-1137,-1149,-1161,-1365,-1654,-1788,-1963,-8125,-2156,-2322,-2416], +[0,-3217,-3207,-3184,-5396,-1961,-5923,-8126,-6917,-8127,-8128], [1,3,3126], [0,0,3127,3128,5], -[0,-110,-1186], -[0,-482,-31,-202], +[0,-589,-585], +[0,-5559,-3264,-3590], [1,3,3130], [0,0,14,3131,10], -[0,-482,-948,-1075,-3320,-1630,-163,-12999,-2455], +[0,-5559,-5569,-5570,-8129,-8130,-2265,-8131,-8132], [1,3,3133], [0,3134,3135,7,4], -[0,-1167,-2560,-1168,-130], -[0,-208,-116,-12998,-13,-2708,-12997,-32,-530,-364,-88,-3928,-16], +[0,-988,-6100,-987,-2231], +[0,-461,-615,-8133,-664,-3629,-8134,-1168,-1197,-1231,-1646,-1815,-2177], [1,3,3137], [0,3138,3139,3140,5], -[0,-769,-2617,-12996,-12995,-1977,-5198,-12994,-12993,-12992,-329,-193,-230,-36,-424,-1169,-1019,-617,-3319,-2560,-1017, --5197,-349,-1542,-469,-3318,-1154,-12991,-93,-2059,-3928], -[0,-310,-11,-21,-2690,-1986,-283,-12990,-5196,-5,-19,-98,-43,-13,-238,-473,-159,-502,-351,-572,-5195,-1643,-5194,-12989, --5193,-1168,-5192,-28,-55,-402,-708,-527,-811,-18,-221,-1318,-228,-12988,-12987,-12986,-12985,-12984,-12983,-3,-5191, --5190,-4,-361,-180,-1300,-342,-16,-272,-27,-2,-17,-92,-2454], -[0,-360,-217,-45,-338,-617], +[0,-189,-5200,-8135,-8136,-7820,-8137,-8138,-8139,-8140,-426,-469,-769,-812,-930,-982,-983,-986,-8141,-6100,-1025,-8142, +-1047,-1108,-1353,-8143,-1393,-8144,-1645,-5199,-1815], +[0,-2832,-23,-40,-3794,-7462,-3244,-8145,-8146,-3037,-428,-534,-652,-664,-674,-722,-753,-795,-888,-955,-8147,-7355,-8148, +-8149,-8150,-987,-8151,-1107,-1110,-1116,-1125,-1431,-1498,-1534,-1600,-1602,-1610,-8152,-8153,-8154,-8155,-8156,-8157, +-1654,-8158,-8159,-1942,-1959,-1972,-2066,-2082,-2177,-2195,-2210,-2410,-2501,-2503,-8160], +[0,-3272,-7148,-3214,-3217,-986], [1,3,3142], [0,3143,3144,197,5], -[0,-609,-1126,-191], -[0,-39,-1557,-1,-213,-90,-3317,-5189,-765,-64,-187,-10,-148,-190], +[0,-1797,-1798,-934], +[0,-2322,-887,-932,-1365,-44,-8161,-8162,-557,-969,-2156,-958,-962,-970], [1,3,3146], [0,3147,3148,197,4], -[0,-16,-609,-1126,-1971], -[0,-39,-1557,-1,-213,-90,-3317,-5189,-765,-187,-10], +[0,-2177,-1797,-1798,-8167], +[0,-2322,-887,-932,-1365,-44,-8161,-8162,-557,-2156,-958], [1,3,3150], [0,3151,3152,3153,10], -[0,-191], -[0,-22,-19,-1025,-1,-12,-10,-9,-18,-65,-4,-12982,-2], -[0,-3316,-353,-430,-1972,-1415,-3315,-1,-1391,-45,-2091,-2], +[0,-934], +[0,-427,-428,-855,-932,-940,-958,-1344,-1534,-1771,-1942,-8168,-2410], +[0,-8164,-727,-4795,-8165,-6434,-8166,-932,-8163,-3214,-4900,-2410], [1,3,3155], [0,0,38,3156,8], -[0,-1448,-354,-1049,-225,-217,-539,-613,-117,-2453,-1,-509,-1048,-3314,-280,-581,-1390,-1052,-1389], +[0,-3939,-707,-8169,-5553,-7148,-8170,-1445,-1452,-8171,-932,-5874,-8172,-8173,-7440,-7144,-8174,-7840,-8175], [1,3,3158], [0,3159,38,3160,4], -[0,-48,-55], -[0,-1,-2085,-5188], +[0,-190,-1110], +[0,-932,-5031,-8176], [1,3,3162], [0,3163,3164,3165,4], -[0,-487,-283,-48,-309,-22,-19,-1337,-1335,-2452,-251,-10,-181,-265,-115,-2488,-150,-83], -[0,-2097,-1,-2], -[0,-1723,-1,-2085,-5188], +[0,-3615,-3244,-190,-3748,-427,-428,-938,-945,-8177,-948,-958,-960,-964,-965,-7354,-978,-2411], +[0,-4367,-932,-2410], +[0,-4362,-932,-5031,-8176], [1,3,3167], [0,3168,3169,76,11], -[0,-115,-265,-10,-2452,-19,-2488,-22,-251], -[0,-1,-2,-2097], +[0,-965,-964,-958,-8177,-428,-7354,-427,-948], +[0,-932,-2410,-4367], [1,3,3171], [0,0,0,3172,6], -[0,-1,-1391,-2085,-12981,-4], +[0,-932,-8163,-5031,-8178,-1942], [1,3,3174], [0,3175,0,7,5], -[0,-11,-145,-64,-161,-10,-1885,-500,-148,-12980,-19,-1971,-190,-1549,-22], +[0,-23,-959,-969,-32,-958,-561,-956,-962,-8179,-428,-8167,-970,-976,-427], [1,3,3177], [0,0,3178,3179,5], -[0,-1,-84,-10,-115,-67,-39], -[0,-2451,-280,-581,-354,-2450,-2449,-2448,-1048,-1052,-1,-1391,-1389,-613,-117,-217,-2447,-1049,-631,-2184,-97,-2446,-225, --2445,-2444,-1390], +[0,-932,-943,-958,-965,-968,-2322], +[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8163,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2176,-2250, +-8185,-5553,-8186,-8187,-8174], [1,3,3181], [0,0,3182,3183,4], -[0,-359,-664,-1,-10,-115,-67,-39], -[0,-2451,-280,-581,-354,-2450,-2449,-2448,-1048,-1052,-1,-1391,-1389,-613,-117,-217,-2447,-1049,-631,-97,-2446,-225,-2445, --2444,-1390], +[0,-3330,-8096,-932,-958,-965,-968,-2322], +[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8163,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2250,-8185, +-5553,-8186,-8187,-8174], [1,3,3185], [0,3186,3187,7,9], -[0,-48,-514,-150,-55,-83], -[0,-12979,-359,-5,-5187,-1567,-1,-3313,-12978,-4,-2], +[0,-190,-3560,-978,-1110,-2411], +[0,-8188,-3330,-3037,-8189,-672,-932,-8190,-8191,-1942,-2410], [1,3,3189], [0,3190,3191,3192,4], -[0,-12977,-1986,-309,-1971,-55], -[0,-51,-1], -[0,-1391,-34,-5186,-12976,-12975,-5185,-5184,-354,-1049,-225,-217,-539,-613,-117,-2453,-1,-509,-1048,-97,-3314,-280,-581, --1390,-1052,-1389,-631], +[0,-8192,-7462,-3748,-8167,-1110], +[0,-519,-932], +[0,-8163,-2541,-8193,-8194,-8195,-8196,-8197,-707,-8169,-5553,-7148,-8170,-1445,-1452,-8171,-932,-5874,-8172,-2250,-8173, +-7440,-7144,-8174,-7840,-8175,-5493], [1,3,3194], [0,0,3195,3196,10], -[0,-49,-62,-26,-9,-18,-147,-1800,-34], -[0,-12974,-353,-1,-5253,-5252,-1388,-34], +[0,-86,-3307,-767,-1344,-1534,-2094,-2099,-2541], +[0,-8198,-727,-932,-7921,-7922,-8199,-2541], [1,3,3198], [0,3199,3200,3201,4], -[0,-839,-193,-1568,-58,-403,-326,-2132,-1634,-913,-650,-5698,-1137,-210], -[0,-48,-5,-269,-1047,-960,-848,-1,-12,-10,-115,-25,-150,-525,-1127,-65,-807,-4,-27,-1632,-2,-83,-30], -[0,-678,-390,-42,-1,-114,-107], +[0,-429,-469,-671,-719,-755,-823,-3780,-7829,-1418,-1456,-5473,-1605,-2400], +[0,-190,-3037,-4372,-8200,-3899,-6593,-932,-940,-958,-965,-967,-978,-1609,-1768,-1771,-1821,-1942,-2210,-7969,-2410,-2411, +-2469], +[0,-4100,-3671,-856,-932,-3262,-3862], [1,3,3203], [0,3204,0,3205,8], -[0,-36,-12973,-1327,-12972,-12971,-311,-5183], -[0,-2,-1,-628,-5581,-107], +[0,-812,-8201,-1101,-8202,-8203,-2654,-8204], +[0,-2410,-932,-6024,-6041,-3862], [1,3,3207], [0,3208,3209,3210,5], -[0,-1547,-40,-754,-1811,-639], -[0,-50,-11,-21,-49,-62,-1970,-944,-94,-86,-119,-5182,-26,-151,-237,-1,-12,-12970,-10,-9,-8,-1150,-18,-65,-4,-134,-17], -[0,-1,-217,-539,-779,-17], +[0,-1046,-1077,-1543,-1793,-2168], +[0,-21,-23,-40,-86,-3307,-8205,-7166,-528,-533,-679,-8206,-767,-824,-825,-932,-940,-8207,-958,-1344,-1415,-1424,-1534, +-1771,-1942,-2251,-2501], +[0,-932,-7148,-8170,-5932,-2501], [1,3,3212], [0,3213,3214,3215,4], -[0,-769,-1986,-12969,-617,-12968,-12967,-641], -[0,-19,-51,-43,-20,-1,-5181,-710,-572,-118,-65,-807,-1124,-2,-34], -[0,-1,-334,-368,-51,-75,-456,-293,-2578,-1072,-3], +[0,-189,-7462,-8208,-986,-8209,-8210,-2115], +[0,-428,-519,-652,-668,-932,-8211,-947,-955,-999,-1771,-1821,-1866,-2410,-2541], +[0,-932,-5208,-3784,-519,-4004,-4043,-507,-5856,-5855,-1654], [1,3,3217], [0,3218,3219,3220,9], -[0,-12966], -[0,-3,-1,-94,-1139], -[0,-292,-1,-334,-368,-94], +[0,-8212], +[0,-1654,-932,-528,-1552], +[0,-525,-932,-5208,-3784,-528], [1,3,3222], [0,3223,3224,3225,5], -[0,-1999,-12965,-305,-1183,-349,-55,-1825,-16], -[0,-11,-161,-49,-62,-487,-48,-296,-295,-2443,-739,-12964,-359,-29,-3312,-137,-110,-12963,-471,-1,-12,-572,-25,-823,-9,-8, --4,-120,-600,-57,-33,-2,-83], -[0,-1,-91,-3478,-99,-217,-4017,-12962], +[0,-7150,-8213,-635,-658,-1047,-1110,-1565,-2177], +[0,-23,-32,-86,-3307,-3615,-190,-3470,-3471,-8214,-3268,-8215,-3330,-3136,-8216,-3199,-589,-8217,-891,-932,-940,-955,-967, +-1002,-1344,-1415,-1942,-2174,-2205,-2375,-2379,-2410,-2411], +[0,-932,-4865,-6520,-3690,-7148,-657,-8218], [1,3,3227], [0,0,123,3228,5], -[0,-1,-334,-1050,-430], +[0,-932,-5208,-8108,-4795], [1,3,3230], [0,3231,3232,3233,4], -[0,-424,-469], -[0,-3615,-5,-5180,-94,-152,-230,-1,-12961,-40,-3,-15,-608,-7,-16,-5663,-12960,-1770], -[0,-1,-334,-368,-107,-5179,-968,-5178,-918,-55,-12959,-12958,-12957,-12956,-12955,-12954], +[0,-930,-1353], +[0,-5380,-3037,-8219,-528,-708,-769,-932,-8220,-1077,-1654,-1788,-1810,-2125,-2177,-5621,-8221,-2816], +[0,-932,-5208,-3784,-3862,-8222,-3485,-8223,-1109,-1110,-8224,-8225,-8226,-8227,-8228,-8229], [1,3,3235], [0,3236,3237,198,11], -[0,-769,-1167], -[0,-49,-62,-3790,-1209,-283,-48,-514,-3311,-5177,-12953,-329,-142,-5,-19,-839,-960,-1,-12952,-12,-710,-115,-150,-1548, --1169,-617,-9,-527,-18,-23,-525,-1127,-343,-4,-371,-2,-83,-30], +[0,-189,-988], +[0,-86,-3307,-3534,-8230,-3244,-190,-3560,-8231,-8232,-8233,-426,-3044,-3037,-428,-429,-3899,-932,-8234,-940,-947,-965, +-978,-981,-982,-986,-1344,-1431,-1534,-1548,-1609,-1768,-1772,-1942,-2892,-2410,-2411,-2469], [1,3,3239], [0,3240,3241,3242,4], -[0,-23,-12951], -[0,-193,-28,-9,-3,-1,-7,-5176,-2528,-50,-11,-781,-178,-120,-21,-161,-5175,-3824,-572,-278,-1273,-306], -[0,-1,-107,-12950], +[0,-1548,-8235], +[0,-469,-1107,-1344,-1654,-932,-2125,-8236,-6611,-21,-23,-5870,-43,-2174,-40,-32,-8237,-3201,-955,-535,-3408,-36], +[0,-932,-3862,-8238], [1,3,3244], [0,3245,3246,3247,8], -[0,-497], -[0,-12949,-12948,-1,-12,-5174,-4,-16], -[0,-368,-334,-1,-31], +[0,-1333], +[0,-8239,-8240,-932,-940,-8241,-1942,-2177], +[0,-3784,-5208,-932,-3264], [1,3,3249], [0,3250,3251,3252,9], -[0,-12947,-3310,-12946,-5223,-1891,-36,-1629,-2442,-12945,-706,-3393,-1154,-93,-2458,-12944,-2459,-16,-12943,-795], -[0,-5173,-359,-19,-182,-169,-94,-355,-1188,-765,-2561,-447,-926,-13,-26,-12942,-1,-710,-251,-572,-10,-2462,-5582,-12941, --28,-213,-1322,-649,-12940,-12939,-525,-3,-3309,-15,-322,-7,-187,-27,-156,-2,-3308], -[0,-1,-334,-368,-339,-5639,-370,-628,-1628], +[0,-8242,-8243,-8244,-8045,-505,-812,-8245,-8246,-8247,-1285,-7437,-1393,-1645,-8063,-8248,-8055,-2177,-8249,-2383], +[0,-8250,-3330,-428,-526,-527,-528,-539,-541,-557,-6089,-566,-572,-664,-767,-8251,-932,-947,-948,-955,-958,-7894,-6039, +-8252,-1107,-1365,-1408,-1461,-8253,-8254,-1609,-1654,-8255,-1788,-2074,-2125,-2156,-2210,-2359,-2410,-8256], +[0,-932,-5208,-3784,-3184,-5748,-3209,-6024,-8257], [1,3,3254], [0,199,3255,198,6], -[0,-50,-11,-21,-140,-49,-62,-1209,-12938,-296,-295,-2056,-359,-29,-5,-137,-22,-19,-839,-86,-12937,-534,-1,-12,-710,-572, --10,-115,-25,-1548,-1969,-9,-569,-8,-5470,-18,-5174,-1306,-4,-7,-120,-16,-33,-2], +[0,-21,-23,-40,-42,-86,-3307,-8230,-8258,-3470,-3471,-5325,-3330,-3136,-3037,-3199,-427,-428,-429,-533,-8259,-815,-932, +-940,-947,-955,-958,-965,-967,-981,-8260,-1344,-1392,-1415,-6725,-1534,-8241,-1868,-1942,-2125,-2174,-2177,-2379,-2410], [1,3,3257], [0,3258,3259,3260,4], -[0,-12936,-12935,-12934,-2125,-36,-424,-617,-3319,-705,-12933,-12932,-16,-5172,-12931], -[0,-310,-50,-11,-161,-971,-21,-12930,-12929,-1977,-12928,-63,-845,-737,-582,-109,-162,-5177,-5196,-329,-633,-69,-5,-137, --12927,-1450,-278,-355,-12926,-43,-446,-13,-1870,-1,-5175,-5176,-28,-55,-9,-3307,-650,-3306,-18,-3,-3305,-398,-1046,-7, --14,-120,-27,-3642,-2,-83], -[0,-1,-107,-166], +[0,-8261,-8262,-8263,-3896,-812,-930,-986,-8141,-1320,-8264,-8265,-2177,-8266,-8267], +[0,-2832,-21,-23,-32,-3203,-40,-8268,-8269,-7820,-8270,-351,-7040,-3472,-7041,-3035,-3198,-8232,-8146,-426,-4049,-3621, +-3037,-3199,-8271,-3782,-535,-539,-8272,-652,-656,-664,-813,-932,-8237,-8236,-1107,-1110,-1344,-8273,-1456,-8274,-1534, +-1654,-8275,-1874,-8276,-2125,-2127,-2174,-2210,-5198,-2410,-2411], +[0,-932,-3862,-1446], [1,3,3262], [0,3263,3264,3265,9], -[0,-769,-1977,-5198,-12925,-12924,-12923,-1993,-2059,-2163], -[0,-161,-1627,-366,-1209,-1986,-3304,-3303,-309,-1998,-69,-5171,-5,-137,-22,-19,-43,-3302,-89,-1,-12,-572,-12922,-181, --3301,-1334,-214,-115,-2441,-25,-826,-825,-1643,-1169,-422,-55,-3,-1810,-4,-16,-179,-5170,-558,-12921,-12920,-371,-153, --2,-83,-3300,-793,-979], -[0,-1,-334,-368,-217,-5169,-276,-106], +[0,-189,-7820,-8137,-8277,-8278,-8279,-7356,-5199,-2653], +[0,-32,-8280,-50,-8230,-7462,-8281,-8282,-3748,-7155,-3621,-8283,-3037,-3199,-427,-428,-652,-8284,-928,-932,-940,-955, +-8285,-960,-8286,-961,-963,-965,-8287,-967,-971,-980,-7355,-982,-997,-1110,-1654,-1834,-1942,-2177,-2281,-8288,-2282, +-8289,-8290,-2892,-2392,-2410,-2411,-8291,-2468,-2478], +[0,-932,-5208,-3784,-7148,-8292,-1460,-4055], [1,3,3267], [0,3268,3269,3270,4], -[0,-1433,-3310,-1891,-12919,-1352,-3299,-12918,-5596,-706,-5168,-12917,-93,-2458,-3324,-12916], -[0,-50,-11,-161,-971,-178,-279,-278,-765,-1,-191,-710,-572,-500,-10,-1167,-420,-213,-1322,-3406,-88,-275,-609,-1126,-7, --187,-16,-39,-5167], -[0,-1,-334,-368,-951,-1248,-866], +[0,-5113,-8243,-505,-8293,-522,-8294,-8295,-5973,-1285,-8296,-8297,-1645,-8063,-8032,-8298], +[0,-21,-23,-32,-3203,-43,-516,-535,-557,-932,-934,-947,-955,-956,-958,-988,-1059,-1365,-1408,-7317,-1646,-1777,-1797, +-1798,-2125,-2156,-2177,-2322,-8299], +[0,-932,-5208,-3784,-4665,-4666,-4146], [1,3,3272], [0,3273,3274,3275,4], -[0,-908], -[0,-15,-13,-3,-1,-55,-48,-5194,-12915], -[0,-1,-334,-100,-217,-539], +[0,-1618], +[0,-1788,-664,-1654,-932,-1110,-190,-8148,-8300], +[0,-932,-5208,-1599,-7148,-8170], [1,3,3277], [0,3278,0,3279,10], -[0,-55,-769], -[0,-1,-334,-368,-3], +[0,-1110,-189], +[0,-932,-5208,-3784,-1654], [1,3,3281], [0,3282,3283,200,9], -[0,-769,-829,-12914,-1327,-55,-6180,-469,-16,-12913], -[0,-48,-359,-329,-12912,-5,-19,-2614,-1,-12,-710,-572,-229,-9,-18,-525,-3,-343,-15,-608,-4,-988,-373,-7,-12911,-210,-2], +[0,-189,-909,-8301,-1101,-1110,-2898,-1353,-2177,-8302], +[0,-190,-3330,-426,-8303,-3037,-428,-5209,-932,-940,-947,-955,-1026,-1344,-1534,-1609,-1654,-1772,-1788,-1810,-1942,-1977, +-2091,-2125,-8304,-2400,-2410], [1,3,3285], [0,3286,3287,200,6], -[0,-5488,-12910,-469,-93,-128,-16], -[0,-3615,-152,-1,-229,-55,-3,-15,-608,-988,-7], +[0,-6578,-8305,-1353,-1645,-2114,-2177], +[0,-5380,-708,-932,-1026,-1110,-1654,-1788,-1810,-1977,-2125], [1,3,3289], [0,3290,0,3291,10], -[0,-12909,-2163], -[0,-1,-334,-368,-4], +[0,-8306,-2653], +[0,-932,-5208,-3784,-1942], [1,3,3293], [0,3294,3295,3296,4], -[0,-769], -[0,-19,-1025,-1,-12,-710,-572,-145,-115,-25,-55,-9,-8,-18,-343,-4,-2], -[0,-1,-334,-368,-172,-481], +[0,-189], +[0,-428,-855,-932,-940,-947,-955,-959,-965,-967,-1110,-1344,-1415,-1534,-1772,-1942,-2410], +[0,-932,-5208,-3784,-1961,-5923], [1,3,3298], [0,3299,3300,201,5], -[0,-3310,-12908,-1891,-12907,-1629,-12906,-1167,-706,-5168,-93,-1126,-2458,-2459,-121,-128,-16,-3661,-5166], -[0,-11,-161,-3816,-12905,-12904,-136,-359,-329,-5,-19,-94,-1,-191,-710,-572,-10,-1548,-1969,-1169,-617,-12903,-28,-66, --1322,-5165,-525,-3,-275,-27,-2,-3308], +[0,-8243,-8307,-505,-8308,-8245,-8309,-988,-1285,-8296,-1645,-1798,-8063,-8055,-1967,-2114,-2177,-5010,-8310], +[0,-23,-32,-3332,-8311,-8312,-41,-3330,-426,-3037,-428,-528,-932,-934,-947,-955,-958,-981,-8260,-982,-986,-8313,-1107, +-1405,-1408,-8314,-1609,-1654,-1777,-2210,-2410,-8256], [1,3,3302], [0,3303,3304,201,5], -[0,-258,-11,-427,-12902,-3820], -[0,-8,-2,-5,-479,-94,-359,-329,-5164,-3298,-161,-140], +[0,-2564,-23,-25,-8315,-3251], +[0,-1415,-2410,-3037,-47,-528,-3330,-426,-8316,-8317,-32,-42], [1,3,3306], [0,3307,3308,3309,6], -[0,-769,-2617,-2125,-3307,-3297,-5163,-3296], -[0,-366,-6073,-1209,-283,-48,-3304,-3303,-2625,-109,-359,-3311,-329,-69,-5,-5162,-22,-19,-293,-13,-3302,-1,-12,-710,-251, --572,-10,-181,-3301,-1334,-214,-115,-12901,-25,-826,-150,-825,-1643,-12900,-525,-3,-5161,-297,-343,-15,-1810,-4,-16,-179, --2154,-5170,-371,-153,-2,-83,-3300,-793,-979], -[0,-1,-334,-368,-1075,-948], +[0,-189,-5200,-3896,-8273,-8318,-8319,-8320], +[0,-50,-3462,-8230,-3244,-190,-8281,-8282,-5030,-3035,-3330,-8231,-426,-3621,-3037,-8321,-427,-428,-507,-664,-8284,-932, +-940,-947,-948,-955,-958,-960,-8286,-961,-963,-965,-8322,-967,-971,-978,-980,-7355,-8323,-1609,-1654,-8324,-1588,-1772, +-1788,-1834,-1942,-2177,-2281,-3085,-8288,-2892,-2392,-2410,-2411,-8291,-2468,-2478], +[0,-932,-5208,-3784,-5570,-5569], [1,3,3311], [0,3312,3313,3314,5], -[0,-5160], -[0,-48,-780,-1,-5159,-12,-710,-572,-18,-525,-3,-65,-4,-120,-2454], -[0,-1,-667,-5158], +[0,-8325], +[0,-190,-5887,-932,-8326,-940,-947,-955,-1534,-1609,-1654,-1771,-1942,-2174,-8160], +[0,-932,-7107,-8327], [1,3,3316], [0,3317,0,3318,9], -[0,-2,-16,-12899,-1319,-12898,-2617,-93,-3642,-3296,-475,-1571,-55], -[0,-12897,-1,-334], +[0,-2410,-2177,-8328,-1566,-8329,-5200,-1645,-5198,-8320,-651,-644,-1110], +[0,-8330,-932,-5208], [1,3,3320], [0,0,123,3321,11], -[0,-1,-334], +[0,-932,-5208], [1,3,3323], [0,3324,3325,3326,9], -[0,-769,-1763,-2560,-55,-2859,-38,-902,-1502,-16,-12896], -[0,-11,-161,-2570,-1209,-729,-12895,-12894,-633,-3295,-69,-5,-5157,-137,-2440,-1752,-1450,-208,-293,-89,-1169,-3313,-1019, --617,-527,-222,-3,-1503,-560,-77,-799,-393,-220,-12893,-153,-233,-259], -[0,-1,-368,-334,-220,-12892], +[0,-189,-3115,-6100,-1110,-1499,-1889,-1907,-1929,-2177,-8331], +[0,-23,-32,-6034,-8230,-4776,-8332,-8333,-4049,-8334,-3621,-3037,-8335,-3199,-8336,-3331,-3782,-461,-507,-928,-982,-8190, +-983,-986,-1431,-1521,-1654,-1916,-1931,-2162,-2232,-2286,-2299,-8337,-2392,-2399,-2548], +[0,-932,-3784,-5208,-2299,-8338], [1,3,3328], [0,3329,3330,3331,5], -[0,-1752,-839], -[0,-49,-62,-283,-48,-5,-2615,-103,-848,-964,-1,-12,-710,-251,-1626,-115,-67,-1548,-1969,-55,-9,-527,-18,-4,-459,-120,-371, --2,-83,-30], -[0,-1,-334,-368,-217,-5762,-61], +[0,-3331,-429], +[0,-86,-3307,-3244,-190,-3037,-5206,-3664,-6593,-3665,-932,-940,-947,-948,-8339,-965,-968,-981,-8260,-1110,-1344,-1431, +-1534,-1942,-2910,-2174,-2892,-2410,-2411,-2469], +[0,-932,-5208,-3784,-7148,-5127,-3634], [1,3,3333], [0,3334,3335,3336,4], -[0,-839,-2276,-1893], -[0,-2669,-359,-329,-1,-3728], -[0,-733,-42,-678,-968,-3732,-3731,-5876,-107], +[0,-429,-264,-263], +[0,-4153,-3330,-426,-932,-4164], +[0,-4165,-856,-4100,-3485,-4156,-4158,-4346,-3862], [1,3,3338], [0,3339,3340,3341,9], -[0,-2736,-769,-1568,-504,-12891,-3814,-3294,-55,-817,-3554,-1148,-562,-5156,-12890,-16,-2111], -[0,-538,-11,-161,-283,-12889,-19,-1450,-51,-43,-573,-1,-5181,-1335,-710,-572,-181,-150,-1548,-1969,-1169,-617,-1829,-525, --2439,-12888,-1127,-343,-3305,-807,-899,-2,-979,-259], -[0,-1,-334,-368,-12887,-539,-217,-225,-34], +[0,-3188,-189,-671,-680,-8340,-3347,-8341,-1110,-1366,-5894,-1451,-1878,-8342,-8343,-2177,-4096], +[0,-22,-23,-32,-3244,-8344,-428,-3782,-519,-652,-910,-932,-8211,-945,-947,-955,-960,-978,-981,-8260,-982,-986,-1536,-1609, +-8345,-8346,-1768,-1772,-8275,-1821,-1951,-2410,-2478,-2548], +[0,-932,-5208,-3784,-8347,-8170,-7148,-5553,-2541], [1,3,3343], [0,199,3344,3345,4], -[0,-309,-359,-69,-5,-22,-19,-2615,-12886,-1387,-289,-1,-710,-572,-2233,-1548,-1969,-33,-153,-2,-1287,-30], -[0,-1,-334,-368,-12885,-30,-12884], +[0,-3748,-3330,-3621,-3037,-427,-428,-5206,-8348,-8349,-726,-932,-947,-955,-979,-981,-8260,-2379,-2392,-2410,-2423,-2469], +[0,-932,-5208,-3784,-8350,-2469,-8351], [1,3,3347], [0,3348,3349,3350,5], -[0,-769,-2059,-2759,-560,-16,-3293], -[0,-366,-514,-3303,-309,-2625,-359,-5171,-5,-137,-12883,-22,-19,-1450,-103,-293,-3302,-89,-1,-3447,-12,-572,-10,-1334, --12882,-2441,-25,-150,-3313,-1019,-617,-422,-55,-79,-525,-606,-4,-371,-2,-3300,-793,-30,-979], -[0,-1,-368,-2085,-74,-1238,-1388], +[0,-189,-5199,-2788,-1931,-2177,-8352], +[0,-50,-3560,-8282,-3748,-5030,-3330,-8283,-3037,-3199,-8353,-427,-428,-3782,-3664,-507,-8284,-928,-932,-6835,-940,-955, +-958,-961,-8354,-8287,-967,-978,-8190,-983,-986,-997,-1110,-1449,-1609,-1852,-1942,-2892,-2410,-8291,-2468,-2469,-2478], +[0,-932,-3784,-5031,-2476,-5173,-8199], [1,3,3352], [0,3353,3354,3355,6], -[0,-538,-1146,-20,-6418,-1811,-6,-600], -[0,-283,-1625,-359,-5,-3739,-47,-404,-1,-5758,-12881,-12880,-527,-2835,-138,-2,-30], -[0,-1,-12879], +[0,-22,-1464,-668,-1373,-1793,-2006,-2205], +[0,-3244,-8355,-3330,-3037,-4067,-3040,-740,-932,-5135,-8356,-8357,-1431,-1741,-2269,-2410,-2469], +[0,-932,-8358], [1,3,3357], [0,3358,3359,38,9], -[0,-12878,-329,-12877,-1167], -[0,-19,-13,-1019,-617,-5190,-272], +[0,-8359,-426,-8360,-988], +[0,-428,-664,-983,-986,-8159,-2195], [1,3,3361], [0,0,3362,38,5], -[0,-608,-14,-415,-81,-2], +[0,-1810,-2127,-2132,-2384,-2410], [1,3,3364], [0,3365,0,3366,4], -[0,-1336,-12876], -[0,-6472], +[0,-941,-8361], +[0,-984], [1,3,3368], [0,0,0,3369,9], -[0,-860,-338,-1628,-628,-370,-141,-407], +[0,-4791,-3217,-8257,-6024,-3209,-3966,-4792], [1,3,3371], [0,3372,3373,3374,5], -[0,-208,-1665,-1019], -[0,-310,-14,-272,-81,-2], -[0,-360,-338,-45,-73,-389,-208], +[0,-461,-6426,-983], +[0,-2832,-2127,-2195,-2384,-2410], +[0,-3272,-3217,-3214,-3215,-4132,-461], [1,3,3376], [0,0,3377,3378,5], -[0,-2009,-12875,-12874,-28,-66,-5155,-78,-139,-1526,-1831,-212,-1145,-189,-909,-5154,-812,-23,-3,-12873,-985,-597,-196,-2, --3881,-12872,-17], -[0,-360,-338,-1168,-45,-73,-389], +[0,-6774,-8362,-8363,-1107,-1405,-8364,-1471,-1475,-1477,-1478,-1479,-1480,-1482,-1487,-8365,-1488,-1548,-1654,-8366, +-2081,-2330,-2388,-2410,-2412,-8367,-2501], +[0,-3272,-3217,-987,-3214,-3215,-4132], [1,3,3380], [0,0,3381,7,5], -[0,-268,-447,-13,-617,-32,-3979,-1162,-3976,-12871,-117,-3], +[0,-558,-566,-664,-986,-1168,-1179,-1199,-1205,-8368,-1452,-1654], [1,3,3383], [0,202,3384,7,6], -[0,-2,-1104], +[0,-2410,-2447], [1,3,3386], [0,0,3387,3388,6], -[0,-3,-1,-66,-110,-1493,-488,-1186,-76,-10,-67,-84,-214,-131], -[0,-922,-105,-1249], +[0,-1654,-932,-1405,-589,-2172,-2155,-585,-966,-958,-968,-943,-963,-974], +[0,-990,-1334,-4616], [1,3,3390], [0,3391,3392,3393,8], -[0,-12870,-6471], -[0,-12869,-12868,-12867,-12866,-3714,-725,-5,-664,-59,-12865,-56,-9,-66,-78,-910,-1526,-212,-3292,-88,-15,-4,-39,-33,-196, --124,-794,-2,-12864], -[0,-2663,-12863], +[0,-8369,-992], +[0,-8370,-8371,-8372,-8373,-4272,-5686,-3037,-8096,-633,-8374,-756,-1344,-1405,-1471,-1472,-1477,-1479,-8375,-1646,-1788, +-1942,-2322,-2379,-2388,-2402,-2405,-2410,-8376], +[0,-4276,-8377], [1,3,3395], [0,3396,3397,3398,5], -[0,-3714,-2909,-4011,-5153,-12862], -[0,-5152,-5,-12861,-664,-1,-78,-139,-212,-3292,-5151,-15,-4,-39,-33,-2], -[0,-2663,-939,-674], +[0,-4272,-616,-760,-8378,-8379], +[0,-8380,-3037,-8381,-8096,-932,-1471,-1475,-1479,-8375,-8382,-1788,-1942,-2322,-2379,-2410], +[0,-4276,-8113,-5260], [1,3,3400], [0,3401,3402,3403,5], -[0,-208,-20,-96,-23,-116,-40,-5150,-1167,-221,-12860,-1286], -[0,-464,-5149,-2,-5], -[0,-3291,-12859,-45,-100,-75], +[0,-461,-668,-2550,-1548,-615,-1077,-8383,-988,-1600,-8384,-2425], +[0,-1983,-8385,-2410,-3037], +[0,-8386,-8387,-3214,-1599,-4004], [1,3,3405], [0,3406,3407,3408,5], -[0,-1558,-1624,-999,-12858,-798,-5148,-460], -[0,-12857,-2438,-2437,-39,-3290], -[0,-245,-774,-5147,-719,-798,-5146,-494,-1046], +[0,-883,-8388,-1597,-8389,-2239,-8390,-2346], +[0,-8391,-8392,-8393,-2322,-8394], +[0,-5827,-6917,-8395,-7724,-2239,-8396,-1631,-8276], [1,3,3410], [0,0,3411,3412,9], -[0,-110,-116,-56,-3,-15], -[0,-783,-422,-2518,-5145,-5144,-5143,-5142,-1654,-3289,-5141,-698,-717,-3288], +[0,-589,-615,-756,-1654,-1788], +[0,-5389,-997,-6820,-8397,-8398,-8399,-8400,-6821,-8401,-8402,-1801,-8403,-8404], [1,3,3414], [0,0,3415,3416,4], -[0,-80,-204,-927,-43,-3,-14], -[0,-12856,-12855,-12854,-5140,-5144,-5143,-1654,-3289,-2518,-783,-698,-5142,-717,-12853,-3288], +[0,-350,-3266,-509,-652,-1654,-2127], +[0,-8405,-8406,-8407,-8408,-8398,-8399,-6821,-8401,-6820,-5389,-1801,-8400,-8403,-8409,-8404], [1,3,3418], [0,0,3419,3420,5], -[0,-768,-1850,-1631,-1323,-1151,-39], -[0,-422,-5139,-5138,-5137], +[0,-468,-1083,-8047,-1283,-1402,-2322], +[0,-997,-8410,-8411,-8412], [1,3,3422], [0,3423,3424,3425,4], -[0,-5136,-230,-533,-498,-12852,-1153,-1003,-2200,-899,-891,-12851,-3287], -[0,-5,-51,-43,-12850,-2436,-5135,-12849,-493,-3427,-2003,-81,-2,-219,-34], -[0,-1045,-1221,-287,-5134,-3426,-2435,-12848,-1649,-126,-254,-1386,-773,-5133,-158,-248,-1044,-2050], +[0,-8413,-769,-1040,-1100,-8414,-1395,-1399,-1773,-1951,-2202,-8415,-8416], +[0,-3037,-519,-652,-8417,-8418,-8419,-8420,-1849,-7087,-6909,-2384,-2410,-2518,-2541], +[0,-8421,-6599,-1958,-8422,-7096,-8423,-8424,-7091,-6656,-5550,-8425,-7304,-8426,-1764,-1847,-8427,-5369], [1,3,3427], [0,0,3428,3429,6], -[0,-177,-365,-302,-54,-219], -[0,-921,-287,-5132,-1262,-12847,-12846,-12845,-12844], +[0,-1144,-1146,-1149,-1127,-2518], +[0,-1000,-1958,-8428,-3973,-8429,-8430,-8431,-8432], [1,3,3431], [0,3432,3433,7,4], -[0,-5131,-5130,-3645,-5947,-1432,-912], -[0,-5404,-2115,-20,-529], +[0,-8433,-8434,-5124,-4025,-5129,-1427], +[0,-7037,-4034,-668,-1361], [1,3,3435], [0,0,3436,3437,4], -[0,-310,-5,-1047,-964,-1,-12843,-417,-1385,-138,-796,-2,-30], -[0,-2,-5129,-293,-635,-1485,-75,-61], +[0,-2832,-3037,-8200,-3665,-932,-8435,-1763,-8436,-2269,-2378,-2410,-2469], +[0,-2410,-8437,-507,-3694,-2414,-4004,-3634], [1,3,3439], [0,3440,3441,203,4], -[0,-464,-1173,-922,-698,-802,-980,-36,-709,-352,-434,-1191,-981,-751,-1294,-1339,-344,-3643,-168,-501,-652,-992,-924, --1016,-1121,-396,-1344,-3286,-1027], -[0,-351,-2222,-15,-838,-3,-3876,-1,-228,-700,-125,-2246,-619,-2897,-920,-2204,-5128], +[0,-1983,-828,-990,-1801,-2178,-2453,-812,-1072,-743,-3122,-459,-2401,-1840,-2255,-907,-1641,-5148,-617,-929,-1335,-1800, +-737,-1045,-1997,-2187,-746,-8438,-736], +[0,-888,-1296,-1788,-465,-1654,-2457,-932,-1610,-1676,-2293,-733,-744,-745,-1010,-1635,-8439], [1,3,3443], [0,3444,3445,203,4], -[0,-1191,-12842,-168,-1027,-924,-352,-1344,-36,-1173,-1339,-501,-922,-1016,-709,-652,-3286,-1131,-992,-751,-563,-3643, --464,-1121,-488,-802,-396,-5127,-1294,-981,-2176,-980], -[0,-838,-2246,-619,-2897,-351,-1,-920,-2222,-228,-2204,-3,-700,-15,-5128,-125,-3876], +[0,-459,-8440,-617,-736,-737,-743,-746,-812,-828,-907,-929,-990,-1045,-1072,-1335,-8438,-1636,-1800,-1840,-1851,-5148, +-1983,-1997,-2155,-2178,-2187,-8441,-2255,-2401,-2445,-2453], +[0,-465,-733,-744,-745,-888,-932,-1010,-1296,-1610,-1635,-1654,-1676,-1788,-8439,-2293,-2457], [1,3,3447], [0,3448,3449,3450,6], -[0,-11,-427,-577,-1629,-563], -[0,-29,-1,-8], -[0,-545,-41,-166,-678,-3776,-3285,-42,-3888,-2039,-114,-547,-5126,-5125,-5124], +[0,-23,-25,-46,-8245,-1851], +[0,-3136,-932,-1415], +[0,-4847,-1004,-1446,-4100,-3696,-8442,-856,-2305,-5886,-3262,-3960,-8443,-8444,-8445], [1,3,3452], [0,3453,3454,3455,4], -[0,-351,-72,-58,-93,-5556], -[0,-3,-1,-7,-1484,-125,-687,-76,-10,-67,-84,-131,-1285], -[0,-41,-52,-3520,-111,-410,-1074,-434,-300,-99], +[0,-888,-1650,-719,-1645,-6123], +[0,-1654,-932,-2125,-2418,-2293,-2369,-966,-958,-968,-943,-974,-2450], +[0,-1004,-3161,-6125,-3578,-3691,-5728,-3122,-3994,-3690], [1,3,3457], [0,3458,3459,3460,5], -[0,-28,-325,-250], -[0,-48,-296,-845,-295,-737,-582,-1058,-29,-5,-1,-55,-496,-120,-57,-2,-83], -[0,-41,-12841,-250,-1067,-679,-12840,-740], +[0,-1107,-1119,-1276], +[0,-190,-3470,-7040,-3471,-3472,-7041,-7042,-3136,-3037,-932,-1110,-1417,-2174,-2375,-2410,-2411], +[0,-1004,-8446,-1276,-6107,-3999,-8447,-3261], [1,3,3462], [0,3463,3464,3465,5], -[0,-813,-12839,-1739], -[0,-3,-1,-41,-33,-4,-2,-69,-257,-575,-19,-22], -[0,-778,-1968,-683,-5123,-2559,-105,-1465,-3284,-905,-41], +[0,-1465,-8448,-3850], +[0,-1654,-932,-1004,-2379,-1942,-2410,-3621,-3617,-739,-428,-427], +[0,-6120,-8449,-3173,-8450,-6121,-1334,-3175,-8451,-1791,-1004], [1,3,3467], [0,3468,3469,7,5], -[0,-352,-1344,-36,-1173,-2517,-751,-488,-1484], -[0,-838,-619,-1,-214,-41,-3,-15,-125], +[0,-743,-746,-812,-828,-6825,-1840,-2155,-2418], +[0,-465,-744,-932,-963,-1004,-1654,-1788,-2293], [1,3,3471], [0,3472,3473,3474,5], -[0,-193,-20,-58,-384,-383,-215,-41,-756,-14,-415,-2,-258], -[0,-48,-735,-1443,-257,-5,-22,-19,-1,-76,-55,-288,-4,-7,-33,-795,-83], -[0,-99,-46,-2014,-684,-2029,-41,-12838,-52,-5122,-367,-209,-409], +[0,-469,-668,-719,-724,-754,-865,-1004,-1435,-2127,-2132,-2410,-2564], +[0,-190,-3732,-4198,-3617,-3037,-427,-428,-932,-966,-1110,-1753,-1942,-2125,-2379,-2383,-2411], +[0,-3690,-3445,-6491,-3113,-6129,-1004,-8452,-3161,-8453,-5545,-3844,-3926], [1,3,3476], [0,0,3477,3478,5], -[0,-43,-12837,-27,-1,-41,-33,-12836,-2,-5,-269,-257,-19,-22], -[0,-12835,-12834,-106,-2,-99,-105,-41,-12833,-12832,-2,-332,-540,-12831,-5121,-12830,-12829,-12828,-5931,-453,-46,-12827, --5120,-6,-12826,-12825,-12824], +[0,-652,-8454,-2210,-932,-1004,-2379,-8455,-2410,-3037,-4372,-3617,-428,-427], +[0,-8456,-8457,-4055,-2410,-3690,-1334,-1004,-8458,-8459,-2410,-5401,-8038,-8460,-8461,-8462,-8463,-8464,-4140,-4601, +-3445,-8465,-8466,-2006,-8467,-8468,-8469], [1,3,3480], [0,3481,3482,3483,4], -[0,-23,-437], -[0,-2766,-12823,-3283,-29,-142,-22,-19,-1,-12,-10,-25,-8,-4,-57,-2], -[0,-41,-437,-409,-509,-941,-1623,-1282], +[0,-1548,-2451], +[0,-2685,-8470,-8471,-3136,-3044,-427,-428,-932,-940,-958,-967,-1415,-1942,-2375,-2410], +[0,-1004,-2451,-3926,-5874,-7723,-8472,-2544], [1,3,3485], [0,3486,3487,3488,5], -[0,-1580,-3933,-12822,-642,-12821], -[0,-735,-1443,-12820,-257,-5920,-12819,-2434,-5862,-12818,-384,-383,-1173,-41,-2665,-652,-1128,-12817,-2,-284,-258,-12816], -[0,-335,-99,-105,-332,-42,-106,-41,-2,-318,-209,-3282,-545,-12815,-681,-12814,-3281,-12813,-12812,-258,-409], +[0,-483,-1736,-8473,-1993,-8474], +[0,-3732,-4198,-8475,-3617,-4199,-8476,-8477,-4625,-8478,-724,-754,-828,-1004,-4206,-1335,-1730,-8479,-2410,-2426,-2564, +-8480], +[0,-3967,-3690,-1334,-5401,-856,-4055,-1004,-2410,-4058,-3844,-8481,-4847,-8482,-3438,-8483,-8484,-8485,-8486,-2564,-3926], [1,3,3490], [0,0,3491,3492,8], -[0,-239,-5119,-1,-613,-39], -[0,-444,-536,-494], +[0,-5834,-8487,-932,-1445,-2322], +[0,-1015,-702,-1631], [1,3,3494], [0,3495,3496,3497,8], -[0,-12811,-12810], -[0,-12809,-5118,-12808,-707,-1152,-1967,-88,-3,-242], -[0,-1642,-536,-444,-494,-1992,-406,-242,-609,-1990,-1091,-1056,-12807,-5117,-132,-202,-674,-853], +[0,-8488,-8489], +[0,-8490,-8491,-8492,-1202,-1396,-8493,-1646,-1654,-1792], +[0,-7370,-702,-1015,-1631,-7369,-7208,-1792,-1797,-7375,-3589,-7153,-8494,-8495,-2444,-3590,-5260,-5846], [1,3,3499], [0,3500,3501,7,5], -[0,-60,-754,-639,-1479], -[0,-182,-86,-835,-620,-268,-26,-144,-237,-1,-583,-10,-277,-8,-18,-2833,-235,-693,-134,-154,-17,-12806], +[0,-510,-1543,-2168,-2510], +[0,-526,-533,-551,-556,-558,-767,-778,-825,-932,-6929,-958,-1041,-1415,-1534,-1780,-1939,-2000,-2251,-2275,-2501,-8496], [1,3,3503], [0,3504,3505,3506,10], -[0,-36,-498,-977,-3280], -[0,-22,-19,-51,-1,-84,-2234,-10,-76,-67,-131,-40,-9,-18,-15,-81,-2], -[0,-1787,-855,-943], +[0,-812,-1100,-2555,-8497], +[0,-427,-428,-519,-932,-943,-950,-958,-966,-968,-974,-1077,-1344,-1534,-1788,-2384,-2410], +[0,-2432,-5408,-7347], [1,3,3508], [0,0,3509,7,9], -[0,-15,-32,-166,-3,-27,-1,-23,-565,-71,-56,-59,-3850,-314,-653,-18,-1771,-1784,-6445,-5116,-12805,-883], +[0,-1788,-1168,-1446,-1654,-2210,-932,-1548,-1813,-2347,-756,-633,-2915,-1243,-1262,-1534,-2778,-2461,-1204,-8498,-8499, +-2463], [1,3,3511], [0,3512,3513,3514,4], -[0,-5115], -[0,-1,-828,-76,-350,-3,-15,-3279,-27], -[0,-12804,-263,-738,-367,-637,-5114], +[0,-8500], +[0,-932,-937,-966,-1001,-1654,-1788,-8501,-2210], +[0,-8502,-1573,-3444,-5545,-3240,-8503], [1,3,3516], [0,3517,3518,3519,4], -[0,-5113], -[0,-478,-5,-26,-28,-5156,-1799,-124,-2,-30,-12803,-12802,-1333], -[0,-12801,-12800,-3557,-61,-12799,-12798,-5112,-2232,-12797,-12796,-8], +[0,-8504], +[0,-262,-3037,-767,-1107,-8342,-2104,-2402,-2410,-2469,-8505,-8506,-1023], +[0,-8507,-8508,-5858,-3634,-8509,-8510,-8511,-1021,-8512,-8513,-1415], [1,3,3521], [0,3522,0,3523,8], -[0,-12795,-12794], -[0,-831,-73,-508,-12793,-12792,-12791], +[0,-8514,-8515], +[0,-788,-3215,-5922,-8516,-8517,-8518], [1,3,3525], [0,0,3526,3527,4], -[0,-56,-1560,-1,-3,-15,-235,-6,-286,-27,-2], -[0,-508,-1664,-830], +[0,-756,-864,-932,-1654,-1788,-1939,-2006,-2052,-2210,-2410], +[0,-5922,-6439,-821], [1,3,3529], [0,3530,3531,204,4], -[0,-12790,-5111,-1542,-3583,-362], -[0,-12789,-5437,-12788,-634,-69,-5,-623,-269,-12787,-1,-12786,-118,-229,-1245,-28,-5110,-3,-7,-27,-5109,-2], +[0,-8519,-8520,-1108,-5615,-1639], +[0,-8521,-6927,-8522,-4036,-3621,-3037,-8523,-4372,-8524,-932,-8525,-999,-1026,-4787,-1107,-8526,-1654,-2125,-2210,-8527, +-2410], [1,3,3533], [0,0,3534,7,5], -[0,-69,-5,-3,-1116,-2], +[0,-3621,-3037,-1654,-2165,-2410], [1,3,3536], [0,3537,3538,3539,11], -[0,-12784], -[0,-11,-173,-21,-178,-5,-98,-43,-1,-1158,-199,-4,-2819,-2,-17,-92], -[0,-508,-506,-106,-73,-551,-5448,-3870,-270,-437,-509,-2433,-293,-5108,-5107,-31], +[0,-8529], +[0,-23,-38,-40,-43,-3037,-534,-652,-932,-1297,-1412,-1942,-1973,-2410,-2501,-2503], +[0,-5922,-6597,-4055,-3215,-2536,-6841,-2537,-3756,-2451,-5874,-8530,-507,-8531,-8532,-3264], [1,3,3541], [0,0,0,3542,10], -[0,-6470,-95,-414,-85,-5106,-658], +[0,-1029,-3162,-2363,-2319,-8533,-826], [1,3,3544], [0,3545,3546,3547,4], -[0,-12783,-5105,-12782,-12781,-12780,-12779,-12778,-5104,-12777,-1307,-5103,-1797,-5102,-16,-12776], -[0,-12775,-5970,-662,-309,-2626,-5,-193,-3753,-837,-3278,-12774,-3277,-1766,-12773,-289,-26,-1,-12772,-3685,-12771,-12770, --652,-756,-3637,-1146,-5101,-791,-1128,-180,-889,-81,-2,-284,-980,-1271], -[0,-111,-52,-106,-318,-149,-99], +[0,-8534,-8535,-8536,-8537,-8538,-8539,-8540,-8541,-8542,-1867,-8543,-2124,-8544,-2177,-8545], +[0,-8546,-3902,-357,-3748,-5029,-3037,-469,-3907,-470,-8547,-8548,-8549,-2917,-8550,-726,-767,-932,-8551,-4848,-8552, +-8553,-1335,-1435,-5265,-1464,-8554,-2884,-1730,-1972,-2240,-2384,-2410,-2426,-2453,-3612], +[0,-3578,-3161,-4055,-4058,-1805,-3690], [1,3,3549], [0,3550,3551,7,5], -[0,-478,-12769,-2606,-12768,-12767,-2605,-2604,-12766,-1966,-1889,-1188,-3276,-1965,-829,-89,-229,-2601,-2432,-93,-5100, --795,-2,-5099], -[0,-49,-62,-252,-29,-12765,-843,-5,-5587,-2597,-9,-8,-6034,-18,-4,-1122,-900,-7,-33,-153,-2050], +[0,-262,-8555,-5335,-8556,-8557,-5336,-5337,-8558,-8559,-536,-541,-8560,-8561,-909,-928,-1026,-5344,-8562,-1645,-8563, +-2383,-2410,-8564], +[0,-86,-3307,-367,-3136,-8565,-8566,-3037,-6025,-5367,-1344,-1415,-3640,-1534,-1942,-1944,-1945,-2125,-2379,-2392,-5369], [1,3,3553], [0,3554,3555,3556,10], -[0,-12764,-12763,-3275,-12762,-12761,-2546,-1558,-88,-3309,-197,-3324,-2794,-12760,-3322,-1622,-39,-71], -[0,-239,-766,-279,-1,-213,-275,-187], -[0,-85,-1964,-75,-12759,-1963,-637], +[0,-8567,-8568,-8569,-8570,-8571,-6369,-883,-1646,-8255,-2062,-8032,-2243,-8572,-8057,-8573,-2322,-2347], +[0,-5834,-515,-516,-932,-1365,-1777,-2156], +[0,-2319,-8574,-4004,-8575,-8576,-3240], [1,3,3558], [0,3559,3560,7,5], -[0,-2244,-12758,-1521,-242,-172,-1962,-1101], -[0,-11,-151,-420,-32,-615,-2880,-314,-529,-496,-1132], +[0,-768,-8577,-1580,-1792,-1961,-8578,-2594], +[0,-23,-824,-1059,-1168,-1174,-1201,-1243,-1361,-1417,-1632], [1,3,3562], [0,28,3563,3564,9], -[0,-50,-11,-21,-136,-296,-295,-12757,-1678,-5098,-834,-298,-1,-266,-18,-72,-120], -[0,-12756,-12755,-12754,-12753,-127,-5097,-53,-369,-6,-12752,-12751,-5772,-111,-12750,-12749,-5096,-12748,-12747,-12746, --12745,-12744,-12743,-3274,-12742,-12741,-12740,-12739,-12738,-12737,-12736,-12735], +[0,-21,-23,-40,-41,-3470,-3471,-8579,-5859,-8580,-553,-796,-932,-933,-1534,-1650,-2174], +[0,-8581,-8582,-8583,-8584,-3098,-8585,-3100,-3482,-2006,-8586,-8587,-5066,-3578,-8588,-8589,-8590,-8591,-8592,-8593, +-8594,-8595,-8596,-8597,-8598,-8599,-8600,-8601,-8602,-8603,-8604,-8605], [1,3,3566], [0,39,3567,3568,4], -[0,-50,-11,-173,-21,-136,-140,-203,-80,-63,-319,-155,-122,-1477,-29,-47,-87,-22,-19,-152,-289,-26,-1,-191,-12,-5323,-10, --145,-64,-190,-8,-6,-35,-342,-14,-226,-57,-44,-2], -[0,-12734,-53,-12733,-322], +[0,-21,-23,-38,-40,-41,-42,-3326,-350,-351,-3267,-407,-409,-2622,-3136,-3040,-3052,-427,-428,-708,-726,-767,-932,-934, +-940,-7476,-958,-959,-969,-970,-1415,-2006,-2019,-2082,-2127,-2140,-2375,-2387,-2410], +[0,-8606,-3100,-8607,-2074], [1,3,3570], [0,3571,0,3572,8], -[0,-5095,-1961,-5094,-3644], -[0,-865,-105,-307,-61,-1729,-1384], +[0,-8608,-8609,-8610,-5140], +[0,-4213,-1334,-4215,-3634,-4216,-8611], [1,3,3574], [0,3575,0,3576,10], -[0,-1960], -[0,-12732,-3990,-5464,-12731,-60,-852,-1959,-2552,-172], +[0,-8612], +[0,-8613,-1038,-6768,-8614,-510,-5921,-8615,-6309,-1961], [1,3,3578], [0,75,3579,3580,4], -[0,-5,-964,-60,-9,-18,-2,-104,-847,-30], -[0,-1855,-868,-5093,-5092,-240], +[0,-3037,-3665,-510,-1344,-1534,-2410,-2466,-6859,-2469], +[0,-1039,-4111,-8616,-8617,-5514], [1,3,3582], [0,3583,14,3584,9], -[0,-2511], -[0,-455,-37,-1214,-294,-2455,-3273,-2431,-5091,-533,-5090], +[0,-6861], +[0,-4112,-687,-7095,-3958,-8132,-8618,-8619,-8620,-1040,-8621], [1,3,3586], [0,205,3587,48,4], -[0,-50,-11,-21,-49,-62,-1970,-944,-86,-26,-151,-237,-1,-12,-10,-9,-8,-18,-262,-65,-4,-134,-438,-17], +[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-1344,-1415,-1534,-1623,-1771,-1942,-2251,-2437, +-2501], [1,3,3589], [0,0,3590,3591,8], -[0,-50,-11,-2649,-6091], -[0,-12730,-12729,-3272], +[0,-21,-23,-4691,-3356], +[0,-8622,-8623,-8624], [1,3,3593], [0,3594,3595,3596,4], -[0,-12728,-12727,-12726,-3271], -[0,-12725,-5,-51,-1043,-498,-12724,-81,-34], -[0,-261,-126,-540,-12723,-1426,-281,-1703,-5089,-3270,-5445,-3269,-5088,-668,-280,-651,-12722,-12721,-12720,-1975,-773, --299,-5515,-1383,-579,-12719,-1208,-2610,-12718,-12717,-12716,-12715,-12714,-12713,-12712,-12711,-12710,-694,-12709, --3268,-5087,-12708,-5086,-12707,-855,-312,-12706,-12705,-5350,-12704,-5260,-12703,-12702,-12701,-12700,-12699,-12698, --12697,-12696,-12695,-12694,-12693,-12692,-12691, --12690,-12689,-1064,-3267,-12688,-5601,-12687,-12686,-12685,-12684,-12683,-12682,-12681,-5085,-12680,-12679,-12678,-1267, --12677,-12676,-12675,-12674,-12673,-12672,-12671,-5084,-12670,-12669,-12668,-12667,-12666,-12665,-5083,-12664,-1777, --12663,-12662,-5082,-12661,-12660,-12659,-12658,-12657,-5081,-12656,-506,-5080,-12655,-5838,-12654,-12653,-12652,-5580, --12651,-12650,-12649,-12648,-12647,-12646,-12645,-12644,-12643,-12642,-12641, --12640,-12639,-12638,-12637,-12636,-12635,-12634,-12633,-12632,-5079,-12631,-12630,-12629,-12628,-12627,-12626,-12625, --12624,-12623,-12622,-12621,-12620,-12619,-2609,-12618,-12617,-12616,-12615,-2478,-12614,-12613,-12612,-5078,-12611, --12610,-12609,-12608,-12607,-1980,-12606,-12605,-12604,-12603,-5077,-12602,-12601,-12600,-12599,-12598,-12597,-12596, --12595,-12594,-12593,-12592,-12591,-12590,-3266,-12589,-5076,-12588,-12587,-12586,-12585, --5075,-12584,-1410,-12583,-12582,-12581,-5349,-12580,-12579], +[0,-8625,-8626,-8627,-8628], +[0,-8629,-3037,-519,-8630,-1100,-8631,-2384,-2541], +[0,-1640,-6656,-8038,-8632,-5409,-6527,-5094,-8633,-8634,-6855,-8635,-8636,-6659,-7440,-1391,-8637,-8638,-8639,-7863, +-7304,-640,-6438,-8640,-7715,-8641,-8642,-5315,-8643,-8644,-8645,-8646,-8647,-8648,-8649,-8650,-8651,-1992,-8652,-8653, +-8654,-8655,-8656,-8657,-5408,-2323,-8658,-8659,-7345,-8660,-7860,-8661,-8662,-8663,-8664,-8665,-8666,-8667,-8668,-8669, +-8670,-8671,-8672,-8673, +-8674,-8675,-6528,-8676,-8677,-5953,-8678,-8679,-8680,-8681,-8682,-8683,-8684,-8685,-8686,-8687,-8688,-3742,-8689,-8690, +-8691,-8692,-8693,-8694,-8695,-8696,-8697,-8698,-8699,-8700,-8701,-8702,-8703,-8704,-2534,-8705,-8706,-8707,-8708,-8709, +-8710,-8711,-8712,-8713,-8714,-6597,-8715,-8716,-4771,-8717,-8718,-8719,-6042,-8720,-8721,-8722,-8723,-8724,-8725,-8726, +-8727,-8728,-8729,-8730, +-8731,-8732,-8733,-8734,-8735,-8736,-8737,-8738,-8739,-8740,-8741,-8742,-8743,-8744,-8745,-8746,-8747,-8748,-8749,-8750, +-8751,-8752,-8753,-5316,-8754,-8755,-8756,-8757,-7557,-8758,-8759,-8760,-8761,-8762,-8763,-8764,-8765,-8766,-7711,-8767, +-8768,-8769,-8770,-8771,-8772,-8773,-8774,-8775,-8776,-8777,-8778,-8779,-8780,-8781,-8782,-8783,-8784,-8785,-8786,-8787, +-8788,-8789,-8790,-8791, +-8792,-8793,-6695,-8794,-8795,-8796,-7349,-8797,-8798], [1,3,3598], [0,0,3599,3600,9], -[0,-204,-279,-43,-1,-9,-3,-14], -[0,-126,-761,-1207,-1206,-1205,-475,-207], +[0,-3266,-516,-652,-932,-1344,-1654,-2127], +[0,-6656,-1044,-8799,-8800,-8801,-651,-834], [1,3,3602], [0,3603,81,7,6], -[0,-36,-1339,-501,-992,-751,-1294], +[0,-812,-907,-929,-1800,-1840,-2255], [1,3,3605], [0,3606,3607,3608,5], -[0,-2197,-5610], -[0,-34,-51,-151,-81,-372], -[0,-433,-405,-2014,-630,-720], +[0,-1871,-5907], +[0,-2541,-519,-824,-2384,-2331], +[0,-3324,-7421,-6491,-5573,-7282], [1,3,3610], [0,3611,3612,3613,4], -[0,-3265,-2430], -[0,-51,-1401,-372,-81,-34], -[0,-630,-2429,-349,-1076,-2428,-1958,-126,-720,-511,-451,-128,-1382,-1065,-942,-405,-745,-1957,-248], +[0,-8802,-8803], +[0,-519,-7408,-2331,-2384,-2541], +[0,-5573,-8804,-1047,-5504,-8805,-8806,-6656,-7282,-5572,-5897,-2114,-8807,-6370,-7420,-7421,-2487,-8808,-1847], [1,3,3615], [0,3616,3617,3618,4], -[0,-12578,-1154,-362,-12577], -[0,-1,-828,-76,-350,-12576,-3,-1509,-15,-128], -[0,-126,-630,-349,-1076,-28,-511,-947,-128,-720], +[0,-8809,-1393,-1639,-8810], +[0,-932,-937,-966,-1001,-8811,-1654,-1759,-1788,-2114], +[0,-6656,-5573,-1047,-5504,-1107,-5572,-5574,-2114,-7282], [1,3,3620], [0,3621,3622,3623,4], -[0,-12575,-12574,-12573,-12572,-12571,-12570,-12569,-12568,-12567,-12566,-12565,-12564,-5074,-5073,-12563,-12562,-12561, --12560,-12559,-5072,-12558,-12557,-12556,-12555,-12554,-12553,-12552,-12551], -[0,-32,-14,-2,-1007,-313,-803,-204,-894,-80,-1298,-301,-63], -[0,-683,-386,-5071,-1545,-771,-1069,-542,-12550], +[0,-8812,-8813,-8814,-8815,-8816,-8817,-8818,-8819,-8820,-8821,-8822,-8823,-8824,-8825,-8826,-8827,-8828,-8829,-8830, +-8831,-8832,-8833,-8834,-8835,-8836,-8837,-8838,-8839], +[0,-1168,-2127,-2410,-1244,-1252,-2143,-3266,-2134,-350,-2139,-2142,-351], +[0,-3173,-7685,-8840,-1050,-8841,-6005,-6187,-8842], [1,3,3625], [0,3626,3627,3628,10], -[0,-3264,-5072,-12549,-5,-12548,-1017,-2427,-813,-12547,-1128,-123], -[0,-12546,-5074,-5073,-12545,-478,-5070,-109,-732,-12544,-1739,-142,-725,-69,-3699,-2426,-12543,-269,-1270,-680,-22,-19, --1573,-13,-244,-2708,-20,-4015,-151,-1,-12542,-32,-1162,-820,-1536,-12541,-23,-88,-3,-1512,-198,-65,-15,-113,-1798,-983, --27,-186,-33,-2,-96], -[0,-3263,-386,-5071,-771,-683], +[0,-8843,-8831,-8844,-3037,-8845,-1025,-8846,-1465,-8847,-1730,-2446], +[0,-8848,-8824,-8825,-8849,-262,-8850,-3035,-4269,-8851,-3850,-3044,-5686,-3621,-4624,-8852,-8853,-4372,-3625,-3738,-427, +-428,-581,-664,-665,-3629,-668,-677,-824,-932,-8854,-1168,-1199,-1208,-1261,-8855,-1548,-1646,-1654,-1693,-1722,-1771, +-1788,-2105,-2106,-2150,-2210,-2211,-2379,-2410,-2550], +[0,-8856,-7685,-8840,-8841,-3173], [1,3,3630], [0,3631,0,3632,10], -[0,-12540,-12539,-2425,-5069,-12538,-12537,-1257,-1381,-1354,-193,-837,-928,-3262,-168,-119,-12536,-661,-1180,-58,-1178, --383,-26,-230,-2241,-12535,-12534,-12533,-41,-761,-657,-40,-1848,-5068,-28,-2427,-469,-101,-813,-1142,-12532,-23,-12531, --228,-2020,-261,-93,-700,-188,-149,-324,-1749,-605,-12530,-12529,-644,-361,-2424,-2186,-16,-12528,-12527,-5067,-12526, --2660,-156,-2423,-5066,-12525,-123,-552,-1779,-205,-259,-258,-3261], -[0,-5065,-37,-12524,-1073,-12523,-1545,-771,-2023,-12522], +[0,-8857,-8858,-8859,-8860,-8861,-8862,-4106,-8863,-458,-469,-470,-501,-8864,-617,-679,-8865,-695,-713,-719,-728,-754, +-767,-769,-790,-8866,-8867,-8868,-1004,-1044,-1069,-1077,-1087,-8869,-1107,-8846,-1353,-1442,-1465,-1526,-8870,-1548, +-8871,-1610,-6294,-1640,-1645,-1676,-1729,-1805,-1816,-3447,-1857,-8872,-8873,-1888,-1959,-8874,-2122,-2177,-8875,-8876, +-8877,-8878, +-4356,-2359,-8879,-8880,-8881,-2446,-2520,-2522,-2531,-2548,-2564,-8882], +[0,-8883,-687,-8884,-5801,-8885,-1050,-8841,-6224,-8886], [1,3,3634], [0,3635,86,3636,9], -[0,-12521,-20,-1341,-2422,-12520,-1496], -[0,-1989,-451], +[0,-8887,-668,-831,-8888,-8889,-2001], +[0,-7416,-5897], [1,3,3638], [0,3639,3640,7,5], -[0,-185,-843,-1204,-40,-5064,-1102], -[0,-5,-7,-85,-2], +[0,-3048,-8566,-8890,-1077,-8891,-2488], +[0,-3037,-2125,-2319,-2410], [1,3,3642], [0,0,86,3643,5], -[0,-1544,-106,-2044,-12519,-798,-406,-2421], +[0,-1055,-4055,-5841,-8892,-2239,-7208,-8893], [1,3,3645], [0,3646,206,3647,5], -[0,-36,-3994,-40,-23,-156], -[0,-5258], +[0,-812,-926,-1077,-1548,-2359], +[0,-7871], [1,3,3649], [0,0,3650,3651,4], -[0,-11,-306,-3527,-21,-5063,-185,-458,-29,-1711,-5,-2440,-835,-119,-56,-40,-28,-8,-4,-7,-14,-273,-2420,-1956,-1297,-175, --57,-33,-44,-2], -[0,-45,-5914,-3736,-956,-588,-2671,-2419], +[0,-23,-36,-6064,-40,-8894,-3048,-3036,-3136,-4964,-3037,-8336,-551,-679,-756,-1077,-1107,-1415,-1942,-2125,-2127,-2128, +-8895,-8896,-2141,-2334,-2375,-2379,-2387,-2410], +[0,-3214,-4224,-4120,-4121,-4123,-4122,-8897], [1,3,3653], [0,3654,3655,3656,9], -[0,-3260,-20,-3990,-2217,-6405,-466,-1414,-490,-16,-2793,-5062,-3537], -[0,-13,-56,-1,-66,-12518,-3,-235,-180,-27], -[0,-1621,-1620,-12517,-2418,-1045,-254,-1060,-2417,-2416,-852,-5061,-2415,-1044,-1073,-5060], +[0,-8898,-668,-1038,-1381,-1531,-1758,-6467,-1965,-2177,-2246,-8899,-6007], +[0,-664,-756,-932,-1405,-8900,-1654,-1939,-1972,-2210], +[0,-8901,-8902,-8903,-8904,-8421,-5550,-6836,-8905,-8906,-5921,-8907,-8908,-8427,-5801,-8909], [1,3,3658], [0,0,0,3659,4], -[0,-724,-37,-1386,-773,-1683,-2114,-540,-3259,-280,-581,-45,-270,-1955], +[0,-5732,-687,-8425,-7304,-5411,-4038,-8038,-8910,-7440,-7144,-3214,-3756,-8911], [1,3,3661], [0,3662,3663,3664,11], -[0,-790,-12516,-2414,-38,-557], -[0,-11,-21,-2715,-12515,-5059,-22,-19,-160,-98,-660,-159,-26,-144,-1343,-382,-1,-12,-25,-12514,-277,-12513,-377,-65,-4, --3258,-863,-395,-890,-154,-392,-211,-2,-17,-92,-170,-12512,-686], -[0,-6467,-2,-45,-17,-31,-24,-2591,-12511,-1292,-3409,-12510,-12509,-12508,-12507,-3409,-12506,-5360,-5359,-12505,-5356, --12504,-12503,-5354,-5357,-5358,-5355,-12502,-1,-4,-5058,-381,-12501], +[0,-2997,-8912,-8913,-1889,-2318], +[0,-23,-40,-3559,-8914,-8915,-427,-428,-518,-534,-749,-753,-767,-778,-779,-784,-932,-940,-967,-8916,-1041,-8917,-1643, +-1771,-1942,-8918,-4245,-2200,-2233,-2275,-2335,-2376,-2410,-2501,-2503,-2505,-8919,-2552], +[0,-1060,-2410,-3214,-2501,-3264,-775,-5511,-8920,-2316,-7287,-8921,-8922,-8923,-8924,-7287,-8925,-7288,-7289,-8926,-7294, +-8927,-8928,-7297,-7293,-7292,-7296,-8929,-932,-1942,-8930,-985,-8931], [1,3,3666], [0,3667,3668,3669,4], -[0,-60,-219], -[0,-15,-166,-3,-82], -[0,-12500], +[0,-510,-2518], +[0,-1788,-1446,-1654,-2198], +[0,-8932], [1,3,3671], [0,3672,3673,3674,4], -[0,-12499,-1856], -[0,-11,-98,-5275,-151,-32,-615,-2880,-820,-314,-363,-529,-8,-176,-242,-6,-5057,-35,-883,-17,-2471], -[0,-1329,-6,-2114,-12498], +[0,-8933,-1033], +[0,-23,-534,-7747,-824,-1168,-1174,-1201,-1208,-1243,-1266,-1361,-1415,-1419,-1792,-2006,-8934,-2019,-2463,-2501,-7752], +[0,-1062,-2006,-4038,-8935], [1,3,3676], [0,0,3677,3678,4], -[0,-315,-1,-41,-3257,-3,-15], -[0,-105,-401,-195,-5056,-337,-5055,-202], +[0,-725,-932,-1004,-8936,-1654,-1788], +[0,-1334,-1342,-2435,-8937,-3323,-8938,-3590], [1,3,3680], [0,0,0,3681,9], -[0,-1086,-5986,-3759,-741,-1086,-476], +[0,-3827,-3837,-3838,-3167,-3827,-620], [1,3,3683], [0,3684,3685,7,11], -[0,-5221], -[0,-310,-239,-1392,-5054,-664,-279,-1,-275,-15,-39], +[0,-8050], +[0,-2832,-5834,-8084,-8939,-8096,-516,-932,-1777,-1788,-2322], [1,3,3687], [0,3688,3689,3690,11], -[0,-60,-12497,-536,-12496,-135,-72,-552,-12495,-12494,-2820,-1178,-1858,-242,-5053], -[0,-13,-1481,-3,-1,-236,-5052,-113,-4,-5051,-12,-25], -[0,-37,-3256,-3255,-1269], +[0,-510,-8940,-702,-8941,-714,-1650,-2520,-8942,-8943,-1953,-728,-995,-1792,-8944], +[0,-664,-2471,-1654,-932,-1666,-8945,-2105,-1942,-8946,-940,-967], +[0,-687,-8947,-8948,-3674], [1,3,3692], [0,3693,3694,3695,8], -[0,-538,-20,-119,-403,-326,-40,-262,-93,-12493,-639,-16,-1291], -[0,-62,-845,-2126,-737,-582,-1058,-1625,-945,-185,-29,-633,-843,-3782,-5,-1204,-137,-22,-19,-1179,-26,-1,-10,-76,-25, --3696,-9,-8,-5050,-816,-650,-12492,-18,-568,-4,-7,-120,-138,-57,-2,-17], -[0,-17,-107,-2,-12491,-211,-17,-2435,-508], +[0,-22,-668,-679,-755,-823,-1077,-1623,-1645,-8949,-2168,-2177,-2321], +[0,-3307,-7040,-3842,-3472,-7041,-7042,-8355,-7080,-3048,-3136,-4049,-8566,-3637,-3037,-8890,-3199,-427,-428,-721,-767, +-932,-958,-966,-967,-4650,-1344,-1415,-8950,-1421,-1456,-8951,-1534,-1658,-1942,-2125,-2174,-2269,-2375,-2410,-2501], +[0,-2501,-3862,-2410,-8952,-2376,-2501,-8423,-5922], [1,3,3697], [0,3698,3699,3700,5], -[0,-3536,-20,-119,-23,-362,-93,-128,-1291], -[0,-12490,-5380,-142,-634,-843,-5,-1098,-517,-13,-144,-1,-9,-66,-18,-3,-568,-1517,-4,-7,-27,-211,-196,-1289,-2,-74,-3875, --1103,-1480,-17], -[0,-17,-107,-2,-540,-581,-539,-2435,-508,-2025,-211,-4029,-12489,-2496], +[0,-6008,-668,-679,-1548,-1639,-1645,-2114,-2321], +[0,-8953,-7202,-3044,-4036,-8566,-3037,-3200,-3046,-664,-778,-932,-1344,-1405,-1534,-1654,-1658,-1660,-1942,-2125,-2210, +-2376,-2388,-2389,-2410,-2476,-2477,-2481,-2485,-2501], +[0,-2501,-3862,-2410,-8038,-7144,-8170,-8423,-5922,-6188,-2376,-520,-8954,-7172], [1,3,3702], [0,3703,3704,7,6], -[0,-12488,-5049,-12487,-706,-344], -[0,-239,-279,-59,-3254,-56,-230,-1,-1619,-12486,-1014,-213,-12485,-66,-12484,-12483,-5574,-235,-157,-113,-7,-16,-39], +[0,-8955,-8956,-8957,-1285,-1641], +[0,-5834,-516,-633,-8958,-756,-769,-932,-8959,-8960,-1070,-1365,-8961,-1405,-8962,-8963,-6058,-1939,-1978,-2105,-2125, +-2177,-2322], [1,3,3706], [0,3707,3708,3709,4], -[0,-698,-12482,-5048], -[0,-443,-15,-8,-1,-14,-41,-4,-125,-5047,-10,-1755,-12,-25,-80,-12481,-191,-63,-12480], -[0,-2015,-546,-450,-987,-12479,-106,-12478,-126], +[0,-1801,-8964,-8965], +[0,-1501,-1788,-1415,-932,-2127,-1004,-1942,-2293,-8966,-958,-3234,-940,-967,-350,-8967,-934,-351,-8968], +[0,-6463,-4053,-6582,-1985,-8969,-4055,-8970,-6656], [1,3,3711], [0,3712,3713,3714,9], -[0,-2612,-326,-1006,-23,-468,-2757,-12477,-44], -[0,-122,-142,-47,-87,-1436,-12476,-6,-35,-3253,-2,-1271], -[0,-3987,-546,-871,-6,-35,-682,-12475,-409,-12474,-409,-12473,-5046], +[0,-5220,-823,-1311,-1548,-1549,-2798,-8971,-2387], +[0,-409,-3044,-3040,-3052,-4972,-8972,-2006,-2019,-8973,-2410,-3612], +[0,-1071,-4053,-4054,-2006,-2019,-3322,-8974,-3926,-8975,-3926,-8976,-8977], [1,3,3716], [0,0,3717,3718,6], -[0,-3,-1,-66,-110,-1186,-76,-10,-67,-84,-214,-131], -[0,-709,-105,-3252,-433], +[0,-1654,-932,-1405,-589,-585,-966,-958,-968,-943,-963,-974], +[0,-1072,-1334,-8978,-3324], [1,3,3720], [0,3721,3722,3723,4], -[0,-20,-2137,-394], -[0,-169,-94,-98,-2260,-712,-1,-1860,-350,-8,-1133,-17], -[0,-12472,-1954,-17,-107], +[0,-668,-3606,-2267], +[0,-527,-528,-534,-545,-560,-932,-949,-1001,-1415,-1626,-2501], +[0,-8979,-8980,-2501,-3862], [1,3,3725], [0,3726,3727,3728,4], -[0,-101], -[0,-1572,-12471,-56,-66,-97,-39,-976], -[0,-259,-12470,-12469], +[0,-1442], +[0,-627,-8981,-756,-1405,-2250,-2322,-2568], +[0,-2548,-8982,-8983], [1,3,3730], [0,3731,3732,3733,8], -[0,-325,-2864,-3251], -[0,-3250,-3573,-88,-3,-15,-180,-5045,-97], -[0,-303,-126,-1205,-669,-405,-5044,-72,-2413,-5043,-772,-106,-603,-1669,-5044,-775,-626,-414,-2412,-183,-5042,-2506,-172], +[0,-1119,-1462,-8984], +[0,-8985,-5726,-1646,-1654,-1788,-1972,-8986,-2250], +[0,-1076,-6656,-8801,-6351,-7421,-8987,-1650,-8988,-8989,-7371,-4055,-2059,-6234,-8987,-6693,-6694,-2363,-8990,-5554, +-8991,-6932,-1961], [1,3,3735], [0,124,3736,3737,4], -[0,-109,-185,-69,-5,-13,-40,-66,-3,-15,-4,-523,-12468,-33,-2], -[0,-303,-1205], +[0,-3035,-3048,-3621,-3037,-664,-1077,-1405,-1654,-1788,-1942,-1948,-8992,-2379,-2410], +[0,-1076,-8801], [1,3,3739], [0,3740,3741,3742,4], -[0,-5041,-40,-1512,-5040], -[0,-185,-6038,-3,-1021,-1296,-116,-2172,-522], -[0,-172,-303,-126,-1205], +[0,-8993,-1077,-1693,-8994], +[0,-3048,-3623,-1654,-925,-2148,-615,-2517,-1980], +[0,-1961,-1076,-6656,-8801], [1,3,3744], [0,0,3745,3746,5], -[0,-610], -[0,-2231,-3249], +[0,-1733], +[0,-1080,-8995], [1,3,3748], [0,3749,3750,7,11], -[0,-72,-7,-528,-325], -[0,-85,-97], +[0,-1650,-2125,-1370,-1119], +[0,-2319,-2250], [1,3,3752], [0,3753,0,3754,8], -[0,-6281,-197], -[0,-3985,-337,-2507], +[0,-2543,-2062], +[0,-1082,-3323,-6931], [1,3,3756], [0,0,3757,3758,5], -[0,-239,-766,-279,-1,-15,-187,-39], -[0,-1226,-849,-1050,-2538,-3422,-3248], +[0,-5834,-515,-516,-932,-1788,-2156,-2322], +[0,-5924,-6557,-8108,-6444,-7163,-8996], [1,3,3760], [0,0,3761,3762,4], -[0,-50,-11,-161,-306,-2146,-21,-140,-49,-62,-12467,-203,-63,-232,-12466,-12465,-12464,-12463,-5180,-3862,-3861,-98,-1,-12, --9,-2411,-4,-1799,-14,-415,-134,-175,-2,-30,-1770,-12462], -[0,-1848,-720,-12461], +[0,-21,-23,-32,-36,-3367,-40,-42,-86,-3307,-8997,-3326,-351,-3561,-8998,-8999,-9000,-9001,-8219,-2716,-2717,-534,-932, +-940,-1344,-9002,-1942,-2104,-2127,-2132,-2251,-2334,-2410,-2469,-2816,-9003], +[0,-1087,-7282,-9004], [1,3,3764], [0,0,3765,3766,11], -[0,-309,-739,-22,-19,-252,-110,-1,-84,-251,-10,-115,-67,-9,-171], -[0,-3407,-111,-105,-209,-3247,-46,-52], +[0,-3748,-3268,-427,-428,-367,-589,-932,-943,-948,-958,-965,-968,-1344,-2391], +[0,-7314,-3578,-1334,-3844,-9005,-3445,-3161], [1,3,3768], [0,0,0,3769,8], -[0,-1848,-720,-719,-12460,-12459], +[0,-1087,-7282,-7724,-9006,-9007], [1,3,3771], [0,3772,3773,3774,6], -[0,-5039], -[0,-60,-54,-12458,-167,-177,-365,-7,-2184], -[0,-594,-28], +[0,-9008], +[0,-510,-1127,-9009,-1132,-1144,-1146,-2125,-2176], +[0,-2490,-1107], [1,3,3776], [0,0,3777,7,6], -[0,-2,-5], +[0,-2410,-3037], [1,3,3779], [0,3780,3781,3782,5], -[0,-20,-2166,-6283,-1478], -[0,-54,-570,-2410,-2409,-345,-1286,-177,-1540], -[0,-1478,-959,-52,-129,-184,-300,-192], +[0,-668,-2562,-2523,-2557], +[0,-1127,-1131,-9010,-9011,-1542,-2425,-1144,-1151], +[0,-2557,-3970,-3161,-3095,-3577,-3994,-475], [1,3,3784], [0,3785,3786,3787,5], -[0,-20,-285,-2166,-23,-5038,-1478,-1286], -[0,-1512,-351,-13,-1185,-3,-27,-1,-72,-116,-66,-58,-186,-230,-1001,-244,-2188,-611], -[0,-1478,-192,-32,-12457,-12456,-476,-6526,-12455,-77,-222,-339,-292,-12454,-2,-316,-1833,-12453,-17,-1], +[0,-668,-2218,-2562,-1548,-9012,-2557,-2425], +[0,-1693,-888,-664,-622,-1654,-2210,-932,-1650,-615,-1405,-719,-2211,-769,-1440,-665,-2070,-1657], +[0,-2557,-475,-1168,-9013,-9014,-620,-478,-9015,-2162,-1521,-3184,-525,-9016,-2410,-711,-1409,-9017,-2501,-932], [1,3,3789], [0,3790,3791,3792,4], -[0,-402,-28,-2166,-353,-23,-1566,-12452,-12451,-1478], -[0,-351,-1,-199,-40,-2410,-2409,-10,-12450], -[0,-1478,-959,-53,-300,-5037,-129,-947,-5036], +[0,-1116,-1107,-2562,-727,-1548,-689,-9018,-9019,-2557], +[0,-888,-932,-1412,-1077,-9010,-9011,-958,-9020], +[0,-2557,-3970,-3100,-3994,-9021,-3095,-5574,-9022], [1,3,3794], [0,0,3795,3796,5], -[0,-5,-1,-12,-25,-67,-4,-85,-2], -[0,-12449,-5035,-1994], +[0,-3037,-932,-940,-967,-968,-1942,-2319,-2410], +[0,-9023,-9024,-7329], [1,3,3798], [0,0,3799,3800,10], -[0,-2056,-5,-960,-12448,-4,-395,-12447,-2,-30], -[0,-3549,-114,-3246,-12446,-5034,-727,-774,-5033], +[0,-5325,-3037,-3899,-9025,-1942,-2200,-9026,-2410,-2469], +[0,-5925,-3262,-9027,-9028,-9029,-5112,-6917,-9030], [1,3,3802], [0,0,3803,7,11], -[0,-50,-11,-21,-140,-296,-295,-582,-29,-5,-22,-19,-12445,-12444,-94,-86,-98,-1971,-1,-12,-251,-827,-10,-25,-64,-190,-762, --150,-9,-12443,-8,-18,-4,-7,-120,-12442,-2,-17,-92], +[0,-21,-23,-40,-42,-3470,-3471,-7041,-3136,-3037,-427,-428,-9031,-9032,-528,-533,-534,-8167,-932,-940,-948,-951,-958,-967, +-969,-970,-972,-978,-1344,-9033,-1415,-1534,-1942,-2125,-2174,-9034,-2410,-2501,-2503], [1,3,3805], [0,0,3806,7,4], -[0,-12441,-12440,-12439,-12438,-15], +[0,-9035,-9036,-9037,-9038,-1788], [1,3,3808], [0,0,115,3809,5], -[0,-5326,-630,-12437,-644,-12436,-5032,-12435,-223,-149,-2078,-2408,-5031,-850,-12434,-12433], +[0,-7458,-5573,-9039,-1888,-9040,-9041,-9042,-729,-1805,-5149,-9043,-9044,-6555,-9045,-9046], [1,3,3811], [0,0,3812,3813,4], -[0,-5,-658,-34], -[0,-12432,-1446,-5132,-1380,-299,-245,-287,-603], +[0,-3037,-826,-2541], +[0,-9047,-3972,-8428,-9048,-640,-5827,-1958,-2059], [1,3,3815], [0,3816,3817,3818,9], -[0,-12431,-1003], -[0,-5,-51,-2407,-12430,-5067,-81,-34], -[0,-1618,-245,-172,-1380,-163,-183,-299,-603,-450,-12429,-1206,-5030,-406,-1380], +[0,-9049,-1399], +[0,-3037,-519,-9050,-9051,-8877,-2384,-2541], +[0,-9052,-5827,-1961,-9048,-2265,-5554,-640,-2059,-6582,-9053,-8800,-9054,-7208,-9048], [1,3,3820], [0,3821,0,3822,4], -[0,-12428], -[0,-1327,-1618,-2,-1953,-12427], +[0,-9055], +[0,-1101,-9052,-2410,-9056,-9057], [1,3,3824], [0,0,3825,3826,5], -[0,-5,-22,-19,-5305,-1,-12426,-12,-25,-5304,-12425,-4,-5303,-124,-2,-5302], -[0,-5029,-12424,-12423,-12422,-12421,-12420,-6461,-12419,-12418,-3249,-12417,-141,-2406,-635,-2], +[0,-3037,-427,-428,-7636,-932,-9058,-940,-967,-7638,-9059,-1942,-7639,-2402,-2410,-7640], +[0,-9060,-9061,-9062,-9063,-9064,-9065,-1102,-9066,-9067,-8995,-9068,-3966,-9069,-3694,-2410], [1,3,3828], [0,3829,3830,3831,8], -[0,-60,-206,-40,-58,-1979,-1547,-12416], -[0,-156,-13,-3,-27,-1,-3245,-3244], -[0,-387,-348,-571], +[0,-510,-1111,-1077,-719,-7731,-1046,-9070], +[0,-2359,-664,-1654,-2210,-932,-9071,-9072], +[0,-5889,-1103,-1105], [1,3,3833], [0,3834,3835,3836,5], -[0,-1076,-5028,-12415,-5027,-493,-12414], -[0,-94,-13,-1952,-152,-503,-298,-1,-5026,-827,-10,-265,-3,-568,-15,-180,-120,-27,-186,-12413,-1785], -[0,-387,-682,-3243], +[0,-5504,-9073,-9074,-9075,-1849,-9076], +[0,-528,-664,-9077,-708,-720,-796,-932,-9078,-951,-958,-964,-1654,-1658,-1788,-1972,-2174,-2210,-2211,-9079,-2449], +[0,-5889,-3322,-9080], [1,3,3838], [0,0,3839,3840,8], -[0,-781,-21,-5025,-12412,-12411,-231,-63,-232,-204,-728,-13,-1,-84,-10,-76,-67,-78,-703,-139,-612,-212,-189,-418,-755, --909,-1320,-2469,-3,-14,-2139,-77,-27,-186], -[0,-571,-3638,-53,-129], +[0,-5870,-40,-9081,-9082,-9083,-4062,-351,-3561,-3266,-4785,-664,-932,-943,-958,-966,-968,-1471,-1474,-1475,-1476,-1479, +-1482,-1483,-1486,-1487,-1489,-7759,-1654,-2127,-3571,-2162,-2210,-2211], +[0,-1105,-5248,-3100,-3095], [1,3,3842], [0,3843,3844,7,4], -[0,-93,-1617,-12410], -[0,-5,-89,-262,-72,-4,-7,-85,-555,-124], +[0,-1645,-9084,-9085], +[0,-3037,-928,-1623,-1650,-1942,-2125,-2319,-2386,-2402], [1,3,3846], [0,3847,125,3848,9], -[0,-1154], -[0,-28,-1382,-1061,-248,-12409,-405,-1736,-1951], +[0,-1393], +[0,-1107,-8807,-6817,-1847,-9086,-7421,-3956,-9087], [1,3,3850], [0,3851,31,7,8], -[0,-5024,-287], +[0,-9088,-1958], [1,3,3853], [0,0,3854,3855,4], -[0,-848,-51,-238,-145,-499,-12408,-2439,-343,-807,-157,-272,-81,-210,-34], -[0,-55,-918,-12407,-1454,-2712,-117,-1,-12406], +[0,-6593,-519,-674,-959,-1098,-9089,-8345,-1772,-1821,-1978,-2195,-2384,-2400,-2541], +[0,-1110,-1109,-9090,-3591,-3592,-1452,-932,-9091], [1,3,3857], [0,3858,3859,3860,8], -[0,-5136,-229,-469,-1401,-285,-2430], -[0,-5,-51,-110,-5023,-372,-81,-34], -[0,-12405,-670,-3396,-1636,-625,-1400,-719,-630,-5022,-3397,-303,-28,-1950,-3242,-624,-511,-2038,-93,-2520,-12404,-5021, --947,-2081,-2180,-132,-202,-1951,-12403,-172,-3241,-387], +[0,-8413,-1026,-1353,-7408,-2218,-8803], +[0,-3037,-519,-589,-9092,-2331,-2384,-2541], +[0,-9093,-5839,-7411,-7727,-6999,-7422,-7724,-5573,-9094,-7410,-1076,-1107,-9095,-9096,-7419,-5572,-5912,-1645,-6809, +-9097,-9098,-5574,-5064,-2368,-2444,-3590,-9087,-9099,-1961,-9100,-5889], [1,3,3862], [0,3863,3864,3865,11], -[0,-36,-230,-12402,-12401], -[0,-60], -[0,-1661,-12400,-281,-12399,-6421,-3983,-452,-5329,-1402], +[0,-812,-769,-9101,-9102], +[0,-510], +[0,-6524,-9103,-6527,-9104,-1355,-1112,-5845,-7450,-7378], [1,3,3867], [0,3868,3869,3870,4], -[0,-188,-12398,-44], -[0,-5,-955,-22,-19,-1,-3240,-10,-115,-67,-4,-124,-2], -[0,-12397,-12396,-12395,-12394,-5020,-12393,-339,-860,-6460,-12392,-12391,-5060,-12390,-1721,-12389,-12388,-12387,-12386, --12385,-12384,-12383,-12382,-46,-12381,-12380,-12379,-12378], +[0,-1729,-9105,-2387], +[0,-3037,-4201,-427,-428,-932,-9106,-958,-965,-968,-1942,-2402,-2410], +[0,-9107,-9108,-9109,-9110,-9111,-9112,-3184,-4791,-1113,-9113,-9114,-8909,-9115,-4633,-9116,-9117,-9118,-9119,-9120, +-9121,-9122,-9123,-3445,-9124,-9125,-9126,-9127], [1,3,3872], [0,3873,3874,3875,9], -[0,-515,-3239], -[0,-366,-5,-22,-19,-2761,-1,-191,-1020,-10,-12377,-2427,-198,-371,-2,-12376,-30], -[0,-12375,-12374,-1448,-2405,-12373,-12372,-12371,-99,-6459,-12370,-12369,-5019], +[0,-3517,-9128], +[0,-50,-3037,-427,-428,-2758,-932,-934,-935,-958,-9129,-8846,-1722,-2892,-2410,-9130,-2469], +[0,-9131,-9132,-3939,-9133,-9134,-9135,-9136,-3690,-1115,-9137,-9138,-9139], [1,3,3877], [0,3878,3879,3880,8], -[0,-2427,-12368], -[0,-12367,-69,-12366,-3238,-5,-5018,-1220,-2659,-2088,-269,-736,-12365,-2404,-43,-152,-26,-118,-5068,-2229,-5017,-166, --12364,-12363,-5016,-3,-2536,-752,-198,-993,-149,-1125,-5015,-4,-180,-7,-1112,-27,-156,-2,-518], -[0,-1448,-99,-12362,-337,-12361], +[0,-8846,-9140], +[0,-9141,-3621,-9142,-9143,-3037,-9144,-6630,-4364,-4966,-4372,-3628,-9145,-9146,-652,-708,-767,-999,-8869,-1166,-9147, +-1446,-9148,-9149,-9150,-1654,-6455,-1705,-1722,-1783,-1805,-1827,-9151,-1942,-1972,-2125,-2188,-2210,-2359,-2410,-2551], +[0,-3939,-3690,-9152,-3323,-9153], [1,3,3882], [0,3883,3884,3885,5], -[0,-2403,-12360,-12359,-12358,-12357,-12356,-3434,-2860,-5014,-5013,-12355,-210], -[0,-5012,-1071,-662,-739,-257,-5,-12354,-3511,-2426,-269,-2135,-51,-201,-110,-116,-168,-43,-12353,-12352,-12351,-237,-658, --823,-41,-657,-2572,-498,-198,-188,-417,-904,-12350,-1124,-2706,-197,-113,-27,-12349,-372,-12348,-1106,-153,-2,-34], -[0,-105,-401,-1422,-1618,-402,-195,-2402,-113,-631,-1949,-1948,-865,-2078,-1080,-1407,-2515,-12347,-12346,-5011,-12345, --201,-688,-188,-3239], +[0,-9154,-9155,-9156,-9157,-9158,-9159,-7006,-1495,-9160,-9161,-9162,-2400], +[0,-9163,-5918,-357,-3268,-3617,-3037,-9164,-6279,-8852,-4372,-3626,-519,-523,-589,-615,-617,-652,-9165,-9166,-9167,-825, +-826,-1002,-1004,-1069,-5989,-1100,-1722,-1729,-1763,-1825,-9168,-1866,-3653,-2062,-2105,-2210,-9169,-2331,-9170,-2364, +-2392,-2410,-2541], +[0,-1334,-1342,-5735,-9052,-1116,-2435,-9171,-2105,-5493,-9172,-9173,-4213,-5149,-5150,-6826,-6828,-9174,-9175,-9176, +-9177,-523,-2291,-1729,-9128], [1,3,3887], [0,0,3888,3889,4], -[0,-32,-285,-14,-382,-807,-38,-12344,-5010,-993,-157,-179,-11,-160,-901,-3958,-1457,-21,-12343,-12342,-203,-204,-232, --2495], -[0,-12341,-53,-2667,-271], +[0,-1168,-2218,-2127,-784,-1821,-1889,-9178,-9179,-1783,-1978,-2281,-23,-518,-1930,-1330,-3572,-40,-9180,-9181,-3326, +-3266,-3561,-7189], +[0,-9182,-3100,-4189,-3110], [1,3,3891], [0,0,3892,3893,4], -[0,-2219,-72,-7,-85], -[0,-303,-358,-12340,-2186,-12339,-986,-627,-1954,-12338,-12337,-12336,-12335,-12334,-12333], +[0,-1362,-1650,-2125,-2319], +[0,-1076,-3551,-9183,-2122,-9184,-1986,-6324,-8980,-9185,-9186,-9187,-9188,-9189,-9190], [1,3,3895], [0,0,0,3896,8], -[0,-380,-12332], +[0,-1122,-9191], [1,3,3898], [0,33,3899,7,5], -[0,-109,-69,-5,-13,-380,-3,-7,-14,-1298,-146,-12331,-2], +[0,-3035,-3621,-3037,-664,-1122,-1654,-2125,-2127,-2139,-2234,-9192,-2410], [1,3,3901], [0,3902,0,7,9], -[0,-3237,-44], +[0,-9193,-2387], [1,3,3904], [0,3905,3906,3907,8], -[0,-101,-1967,-12330,-5009], -[0,-12329,-5118,-316,-12328,-2884,-1852,-707,-88,-3,-884,-70,-1669], -[0,-5008,-5007,-474,-450,-390,-42,-943,-12327,-12326,-1852,-12325,-547,-114,-348,-5689,-45,-3819,-270,-1253,-100,-12324, --165,-73,-723,-2401,-856,-271,-884,-259,-6027], +[0,-1442,-8493,-9194,-9195], +[0,-9196,-8491,-711,-9197,-1016,-1075,-1202,-1646,-1654,-2362,-2460,-6234], +[0,-9198,-9199,-710,-6582,-3671,-856,-7347,-9200,-9201,-1075,-9202,-3960,-3262,-1103,-5539,-3214,-3259,-3756,-4182,-1599, +-9203,-1838,-3215,-6747,-9204,-5142,-3110,-2362,-2548,-3672], [1,3,3909], [0,3910,3911,7,9], -[0,-12323,-12322,-1828,-5028,-809,-1805], -[0,-168,-12321,-41,-5006,-66,-23,-88,-1128,-12320], +[0,-9205,-9206,-1551,-9073,-1696,-1969], +[0,-617,-9207,-1004,-9208,-1405,-1548,-1646,-1730,-9209], [1,3,3913], [0,3914,3915,3916,11], -[0,-921,-28,-466,-101,-167,-93,-1872,-470,-1546,-1858,-12319,-12318,-5005], -[0,-12317,-71,-3236,-531,-12316,-302,-365], -[0,-786,-60,-37,-227,-938,-666,-23,-388,-75,-375,-699,-209,-12315,-959,-1379,-2215,-589], +[0,-1000,-1107,-1758,-1442,-1132,-1645,-808,-1351,-1048,-995,-9210,-9211,-9212], +[0,-9213,-2347,-9214,-1152,-9215,-1149,-1146], +[0,-4107,-510,-687,-1644,-9216,-7641,-1548,-5119,-4004,-1989,-1754,-3844,-9217,-3970,-9218,-1410,-3673], [1,3,3918], [0,3919,3920,3921,5], -[0,-1531], -[0,-54,-167,-2230,-243,-656,-177,-365,-347,-6452,-532], -[0,-253,-192,-271,-740,-1380], +[0,-1323], +[0,-1127,-1132,-1140,-1134,-1136,-1144,-1146,-1148,-1165,-1138], +[0,-9219,-475,-3110,-3261,-9048], [1,3,3923], [0,0,3924,49,4], -[0,-54,-655,-570,-1539,-13], +[0,-1127,-1159,-1131,-1163,-664], [1,3,3926], [0,3927,3928,3929,9], -[0,-60,-59,-12314,-28,-23,-128,-744], -[0,-54,-167,-243,-177,-3,-27], -[0,-253,-59,-54], +[0,-510,-633,-9220,-1107,-1548,-2114,-2491], +[0,-1127,-1132,-1134,-1144,-1654,-2210], +[0,-9219,-633,-1127], [1,3,3931], [0,3932,3933,49,6], -[0,-16], -[0,-54,-1541,-243,-177,-365,-1163,-655,-345], +[0,-2177], +[0,-1127,-1129,-1134,-1144,-1146,-1150,-1159,-1542], [1,3,3935], [0,3936,207,7,4], -[0,-466,-12313,-3537,-2217,-5005], +[0,-1758,-9221,-6007,-1381,-9212], [1,3,3938], [0,3939,3940,3941,5], -[0,-60,-1189,-12312,-817], -[0,-34,-54,-288,-167,-230,-493,-12311,-461,-1539,-243,-302], -[0,-253,-2573,-852,-12310,-580,-2025,-5004,-542,-508,-12309], +[0,-510,-506,-9222,-1366], +[0,-2541,-1127,-1753,-1132,-769,-1849,-9223,-2297,-1163,-1134,-1149], +[0,-9219,-5920,-5921,-9224,-7175,-6188,-9225,-6187,-5922,-9226], [1,3,3943], [0,208,3944,3945,10], -[0,-54,-3245,-177,-917,-365], -[0,-253,-1219,-1989,-626,-775,-151,-1410,-3395,-7], +[0,-1127,-9071,-1144,-1143,-1146], +[0,-9219,-6688,-7416,-6694,-6693,-824,-6695,-7417,-2125], [1,3,3947], [0,3948,3949,3950,8], -[0,-60,-12308,-1873,-2407,-156,-219], -[0,-54,-167,-243,-917,-177,-365,-821], -[0,-253,-5003,-432,-77,-24,-665,-592,-225], +[0,-510,-9227,-805,-9050,-2359,-2518], +[0,-1127,-1132,-1134,-1143,-1144,-1146,-1162], +[0,-9219,-9228,-3754,-2162,-775,-7644,-3277,-5553], [1,3,3952], [0,3953,126,49,4], -[0,-20,-130], +[0,-668,-2231], [1,3,3955], [0,3956,3957,3958,4], -[0,-149,-60,-700,-223,-3566,-1113,-396,-3434,-1947], -[0,-54,-177,-917,-365], -[0,-253,-209,-223,-105], +[0,-1805,-510,-1676,-729,-5763,-2186,-2187,-7006,-9229], +[0,-1127,-1144,-1143,-1146], +[0,-9219,-3844,-729,-1334], [1,3,3960], [0,3961,3962,49,4], -[0,-20,-12307], -[0,-54,-167,-243,-917,-177,-365], +[0,-668,-9230], +[0,-1127,-1132,-1134,-1143,-1144,-1146], [1,3,3964], [0,3965,127,3966,5], -[0,-20,-1946,-23,-599], -[0,-253,-24,-217,-1946], +[0,-668,-9231,-1548,-2271], +[0,-9219,-775,-7148,-9231], [1,3,3968], [0,3969,127,3970,8], -[0,-20,-576,-5002], -[0,-253,-12306,-24,-225,-548,-1275,-227,-541], +[0,-668,-683,-9232], +[0,-9219,-9233,-775,-5553,-3770,-3271,-1644,-6454], [1,3,3972], [0,3973,126,3974,4], -[0,-20,-523,-1531], -[0,-253,-31,-1616,-227,-541,-580], +[0,-668,-1948,-1323], +[0,-9219,-3264,-9234,-1644,-6454,-7175], [1,3,3976], [0,3977,3978,3979,8], -[0,-20,-2220,-564,-990,-523,-5293,-3355,-5294,-3356], -[0,-51,-237,-54,-34], -[0,-253,-541,-1208,-281,-1703,-1042,-1383,-227,-579,-256], +[0,-668,-1356,-1826,-1877,-1948,-7691,-7692,-7690,-7687], +[0,-519,-825,-1127,-2541], +[0,-9219,-6454,-8642,-6527,-5094,-9235,-8640,-1644,-7715,-3839], [1,3,3981], [0,3982,207,7,5], -[0,-5331], +[0,-7446], [1,3,3984], [0,3985,3986,49,8], -[0,-20,-2400,-117], -[0,-54,-917,-365], +[0,-668,-9236,-1452], +[0,-1127,-1143,-1146], [1,3,3988], [0,3989,3990,49,6], -[0,-222,-60,-20,-23], -[0,-54,-243,-177,-5001,-917,-365], +[0,-1521,-510,-668,-1548], +[0,-1127,-1134,-1144,-9237,-1143,-1146], [1,3,3992], [0,3993,3994,3995,6], -[0,-12305], -[0,-54,-243,-917,-177,-85], -[0,-253,-699,-75,-456], +[0,-9238], +[0,-1127,-1134,-1143,-1144,-2319], +[0,-9219,-1754,-4004,-4043], [1,3,3997], [0,3998,127,3999,8], -[0,-60,-20,-230,-1873,-219], -[0,-253,-432,-77,-24,-665,-592,-225], +[0,-510,-668,-769,-805,-2518], +[0,-9219,-3754,-2162,-775,-7644,-3277,-5553], [1,3,4001], [0,4002,126,49,4], -[0,-20,-5002,-12304,-112], +[0,-668,-9232,-9239,-2416], [1,3,4004], [0,4005,4006,4007,6], -[0,-1847,-60,-23,-1486], -[0,-54,-167,-1326,-1286,-177,-917,-365], -[0,-253,-594,-1141], +[0,-1088,-510,-1548,-2353], +[0,-1127,-1132,-1153,-2425,-1144,-1143,-1146], +[0,-9219,-2490,-1540], [1,3,4009], [0,4010,4011,4012,4], -[0,-20,-315,-575,-990,-522], -[0,-54,-570,-167,-243,-532,-177,-365,-1540,-2399,-2398,-1326,-655,-345], -[0,-54,-253,-575,-2004,-780,-263], +[0,-668,-725,-739,-1877,-1980], +[0,-1127,-1131,-1132,-1134,-1138,-1144,-1146,-1151,-9240,-9241,-1153,-1159,-1542], +[0,-1127,-9219,-739,-6908,-5887,-1573], [1,3,4014], [0,4015,4016,4017,10], -[0,-20,-2035,-990], -[0,-54,-570,-167,-243,-177,-365,-2399,-12303,-2398,-1326,-655,-345], -[0,-54,-253,-2035,-571,-12302,-3235,-12301,-575,-2004,-780,-263], +[0,-668,-6019,-1877], +[0,-1127,-1131,-1132,-1134,-1144,-1146,-9240,-9242,-9241,-1153,-1159,-1542], +[0,-1127,-9219,-6019,-1105,-9243,-9244,-9245,-739,-6908,-5887,-1573], [1,3,4019], [0,4020,4021,4022,5], -[0,-20,-1], -[0,-48,-54,-167,-821], -[0,-253,-1,-217,-509,-2397], +[0,-668,-932], +[0,-190,-1127,-1132,-1162], +[0,-9219,-932,-7148,-5874,-9246], [1,3,4024], [0,4025,4026,4027,4], -[0,-2400,-613,-23,-5000], -[0,-54,-177,-365,-345,-1487], -[0,-253,-613,-1048,-581], +[0,-9236,-1445,-1548,-9247], +[0,-1127,-1144,-1146,-1542,-2351], +[0,-9219,-1445,-8172,-7144], [1,3,4029], [0,4030,4031,4032,8], -[0,-230,-166], -[0,-54,-243,-365,-531,-1771,-345], -[0,-253,-54,-42,-678,-166,-2475], +[0,-769,-1446], +[0,-1127,-1134,-1146,-1152,-2778,-1542], +[0,-9219,-1127,-856,-4100,-1446,-7674], [1,3,4034], [0,34,4035,4036,11], -[0,-49,-4999,-62,-296,-295,-582,-1,-84,-10,-76,-67,-131,-421,-54,-570,-302,-1163,-1540,-531,-655,-9,-78,-139,-212,-189, --345,-3,-120], -[0,-253,-78,-54,-75,-388,-456,-4998], +[0,-86,-9248,-3307,-3470,-3471,-7041,-932,-943,-958,-966,-968,-974,-1003,-1127,-1131,-1149,-1150,-1151,-1152,-1159,-1344, +-1471,-1475,-1479,-1482,-1542,-1654,-2174], +[0,-9219,-1471,-1127,-4004,-5119,-4043,-9249], [1,3,4038], [0,4039,4040,209,10], -[0,-2400,-72], -[0,-13,-474,-54,-167,-12300,-243,-532,-177,-2399,-12299,-2398,-12298,-3,-7], +[0,-9236,-1650], +[0,-664,-710,-1127,-1132,-9250,-1134,-1138,-1144,-9240,-9251,-9241,-9252,-1654,-2125], [1,3,4042], [0,208,4043,4044,10], -[0,-13,-54,-12297,-167,-243,-177,-302,-568,-156,-3871], -[0,-625,-54,-253,-3234], +[0,-664,-1127,-9253,-1132,-1134,-1144,-1149,-1658,-2359,-2529], +[0,-6999,-1127,-9219,-9254], [1,3,4046], [0,4047,4048,4049,11], -[0,-16,-12296,-219], -[0,-13,-167,-177,-302,-1010,-4997,-12295,-345,-3,-180,-1487], -[0,-253,-1731,-2396,-2522,-12294,-12293,-1615,-3233,-627,-595,-2039], +[0,-2177,-9255,-2518], +[0,-664,-1132,-1144,-1149,-1156,-9256,-9257,-1542,-1654,-1972,-2351], +[0,-9219,-4127,-9258,-6721,-9259,-9260,-9261,-9262,-6324,-2489,-5886], [1,3,4051], [0,0,4052,7,10], -[0,-54,-570], +[0,-1127,-1131], [1,3,4054], [0,0,4055,4056,5], -[0,-54,-167,-243,-365,-77,-34], -[0,-253,-24,-77,-432,-225,-665,-2395,-3232], +[0,-1127,-1132,-1134,-1146,-2162,-2541], +[0,-9219,-775,-2162,-3754,-5553,-7644,-9263,-9264], [1,3,4058], [0,4059,4060,4061,4], -[0,-135,-23,-522,-12292,-3231,-1233], -[0,-54,-616,-177,-302,-1326,-12291,-3941,-494,-717], -[0,-253,-54,-1233,-75,-199,-3,-375,-12290], +[0,-714,-1548,-1980,-9265,-9266,-5471], +[0,-1127,-1137,-1144,-1149,-1153,-9267,-1541,-1631,-8403], +[0,-9219,-1127,-5471,-4004,-1412,-1654,-1989,-9268], [1,3,4063], [0,4064,210,4065,11], -[0,-20,-2200,-138], -[0,-253,-254,-308,-1214,-1045,-1649,-1221,-287,-37], +[0,-668,-1773,-2269], +[0,-9219,-5550,-3957,-7095,-8421,-7091,-6599,-1958,-687], [1,3,4067], [0,27,4068,209,9], -[0,-54,-177,-3], +[0,-1127,-1144,-1654], [1,3,4070], [0,4071,4072,4073,11], -[0,-60,-4996,-2394,-247,-4995], -[0,-1,-4994,-4993,-4992,-4991,-12289,-12288,-54,-167,-6453,-3,-7,-749], -[0,-54,-253,-1614,-281,-2393,-24,-2394,-1215], +[0,-510,-9269,-9270,-2424,-9271], +[0,-932,-9272,-9273,-9274,-9275,-9276,-9277,-1127,-1132,-1157,-1654,-2125,-2194], +[0,-1127,-9219,-9278,-6527,-9279,-775,-9270,-7085], [1,3,4075], [0,4076,4077,4078,4], -[0,-20,-36,-23,-493], -[0,-54,-72,-7,-167,-1326,-3230,-177], -[0,-253,-4990,-958,-31,-24,-580], +[0,-668,-812,-1548,-1849], +[0,-1127,-1650,-2125,-1132,-1153,-9280,-1144], +[0,-9219,-9281,-3976,-3264,-775,-7175], [1,3,4080], [0,4081,4082,4083,5], -[0,-48,-22,-19,-20,-1,-12,-115,-25,-118,-200,-276,-467,-752,-4,-83,-1778], -[0,-12287,-945,-359,-185,-2156,-4989,-69,-3238,-5,-269,-736,-3229,-43,-230,-40,-12286,-5017,-3,-27,-156,-2], -[0,-2,-539,-1254,-1448], +[0,-190,-427,-428,-668,-932,-940,-965,-967,-999,-1376,-1460,-1630,-1705,-1942,-2411,-2530], +[0,-9282,-7080,-3330,-3048,-3049,-9283,-3621,-9143,-3037,-4372,-3628,-9284,-652,-769,-1077,-9285,-9147,-1654,-2210,-2359, +-2410], +[0,-2410,-8170,-4144,-3939], [1,3,4085], [0,0,4086,4087,5], -[0,-12285,-1733,-252,-1057,-12284,-29,-5,-2434,-954,-1,-8,-1128,-4,-7,-125,-2], -[0,-6451,-111,-52,-335,-105,-99,-46], +[0,-9286,-4010,-367,-7043,-9287,-3136,-3037,-8477,-4203,-932,-1415,-1730,-1942,-2125,-2293,-2410], +[0,-1167,-3578,-3161,-3967,-1334,-3690,-3445], [1,3,4089], [0,4090,4091,4092,6], -[0,-12283,-5010,-12282,-554], -[0,-1,-828,-76,-350,-72,-3,-15,-7], -[0,-666,-245,-5916,-1379,-589,-1667,-3228,-4988,-852,-1613], +[0,-9288,-9179,-9289,-2462], +[0,-932,-937,-966,-1001,-1650,-1654,-1788,-2125], +[0,-7641,-5827,-4219,-9218,-3673,-6342,-9290,-9291,-5921,-9292], [1,3,4094], [0,4095,72,4096,4], -[0,-654,-4987,-820,-1148,-1524,-999,-5148,-71], -[0,-68,-32,-192,-1237,-6068,-12281,-12280], +[0,-1187,-9293,-1208,-1451,-1570,-1597,-8390,-2347], +[0,-7841,-1168,-475,-5175,-3501,-9294,-9295], [1,3,4098], [0,4099,4100,4101,4], -[0,-3342,-713,-423,-1162,-314,-12279,-6435,-72,-1305,-361,-5255,-7,-16,-597,-70,-554], -[0,-6450,-3], -[0,-68,-4986,-254,-12278,-471,-571], +[0,-7850,-305,-994,-1199,-1243,-9296,-1267,-1650,-1875,-1959,-7881,-2125,-2177,-2330,-2460,-2462], +[0,-1178,-1654], +[0,-7841,-9297,-5550,-9298,-891,-1105], [1,3,4103], [0,4104,4105,4106,4], -[0,-160,-916,-38,-553], -[0,-51,-313,-904,-70,-34], -[0,-68,-160,-38,-24,-2575,-4985,-1275,-2395,-1945], +[0,-518,-1236,-1889,-2464], +[0,-519,-1252,-1825,-2460,-2541], +[0,-7841,-518,-1889,-775,-5899,-9299,-3271,-9263,-9300], [1,3,4108], [0,4109,4110,4111,4], -[0,-1268,-477,-1568,-264,-12277,-344,-143,-70], -[0,-13,-12276,-1,-32,-314,-3,-4], -[0,-68,-1227,-1070,-717], +[0,-3698,-479,-671,-1022,-9301,-1641,-1876,-2460], +[0,-664,-9302,-932,-1168,-1243,-1654,-1942], +[0,-7841,-5817,-5940,-8403], [1,3,4113], [0,4114,0,4115,4], -[0,-12275,-12274,-423,-261,-361,-986,-12273,-70,-554,-96], -[0,-68,-1421,-3272,-1069], +[0,-9303,-9304,-994,-1640,-1959,-1986,-9305,-2460,-2462,-2550], +[0,-7841,-5800,-8624,-6005], [1,3,4117], [0,4118,4119,4120,6], -[0,-71,-896,-143,-553], -[0,-34,-3,-70,-235,-11,-313,-3811,-2147,-2726], -[0,-68,-292,-1277,-430,-1972,-1415,-4984,-3227,-389,-3226,-12272,-45,-593], +[0,-2347,-2103,-1876,-2464], +[0,-2541,-1654,-2460,-1939,-23,-1252,-3352,-3362,-3373], +[0,-7841,-525,-3186,-4795,-8165,-6434,-9306,-9307,-4132,-9308,-9309,-3214,-3116], [1,3,4122], [0,4123,211,4124,5], -[0,-916], -[0,-68,-4983,-2535,-2499,-4982,-1786,-3225,-12271,-12270], +[0,-1236], +[0,-7841,-9310,-6472,-7154,-9311,-2443,-9312,-9313,-9314], [1,3,4126], [0,4127,4128,4129,4], -[0,-477,-1185,-264,-200,-143,-71,-70,-745], -[0,-13,-423,-12269,-1008,-364,-117,-3,-7,-27,-186,-1490], -[0,-68,-1185], +[0,-479,-622,-1022,-1376,-1876,-2347,-2460,-2487], +[0,-664,-994,-9315,-1220,-1231,-1452,-1654,-2125,-2210,-2211,-2261], +[0,-7841,-622], [1,3,4131], [0,4132,4133,4134,5], -[0,-59,-363,-2905,-197,-71], -[0,-3,-13,-2540], -[0,-68,-624,-59], +[0,-633,-1266,-634,-2062,-2347], +[0,-1654,-664,-6398], +[0,-7841,-7419,-633], [1,3,4136], [0,212,4137,4138,4], -[0,-3,-70], -[0,-32,-68], +[0,-1654,-2460], +[0,-1168,-7841], [1,3,4140], [0,4141,72,4142,10], -[0,-12268,-143,-12267,-16,-71], -[0,-32,-3488,-16,-68,-663,-4981,-12266,-2392], +[0,-9316,-1876,-9317,-2177,-2347], +[0,-1168,-6453,-2177,-7841,-9318,-9319,-9320,-9321], [1,3,4144], [0,4145,0,4146,8], -[0,-90,-12265,-159,-4980,-143,-71,-70], -[0,-68,-32,-433], +[0,-44,-9322,-753,-9323,-1876,-2347,-2460], +[0,-7841,-1168,-3324], [1,3,4148], [0,4149,4150,36,4], -[0,-71,-1827], -[0,-3,-70,-82], +[0,-2347,-1554], +[0,-1654,-2460,-2198], [1,3,4152], [0,4153,4154,4155,9], -[0,-4979,-916,-414], -[0,-51,-20,-151,-533,-498,-32,-70,-34], -[0,-68,-126,-625,-12264,-3234,-12263,-12262,-12261,-588,-4978,-2391,-433,-12260,-12259], +[0,-9324,-1236,-2363], +[0,-519,-668,-824,-1040,-1100,-1168,-2460,-2541], +[0,-7841,-6656,-6999,-9325,-9254,-9326,-9327,-9328,-4123,-9329,-9330,-3324,-9331,-9332], [1,3,4157], [0,4158,114,4159,6], -[0,-264,-143,-7,-71,-70], -[0,-68,-1219,-626,-775], +[0,-1022,-1876,-2125,-2347,-2460], +[0,-7841,-6688,-6694,-6693], [1,3,4161], [0,4162,4163,4164,6], -[0,-576,-143,-71,-553], -[0,-13,-1952,-56,-41,-264,-32,-654,-314,-1537,-313,-3,-15,-70], -[0,-24,-1219,-227,-938,-576,-12258,-3974,-1009,-68,-624], +[0,-683,-1876,-2347,-2464], +[0,-664,-9077,-756,-1004,-1022,-1168,-1187,-1243,-1248,-1252,-1654,-1788,-2460], +[0,-775,-6688,-1644,-9216,-683,-9333,-1229,-1184,-7841,-7419], [1,3,4166], [0,4167,213,36,10], -[0,-316,-143,-896,-71,-553], +[0,-711,-1876,-2103,-2347,-2464], [1,3,4169], [0,4170,4171,4172,8], -[0,-363,-71,-219], -[0,-56,-151,-32,-1008,-6441,-819,-2227,-364,-470,-12257,-999,-3,-82], -[0,-32,-68,-5003,-432,-77,-24,-665,-592,-225], +[0,-1266,-2347,-2518], +[0,-756,-824,-1168,-1220,-1223,-1224,-1228,-1231,-1351,-9334,-1597,-1654,-2198], +[0,-1168,-7841,-9228,-3754,-2162,-775,-7644,-3277,-5553], [1,3,4174], [0,4175,4176,36,4], -[0,-70,-71,-3517], -[0,-32,-3,-82,-66,-3433,-1490,-313,-611], +[0,-2460,-2347,-6193], +[0,-1168,-1654,-2198,-1405,-7035,-2261,-1252,-1657], [1,3,4178], [0,4179,128,4180,4], -[0,-1827,-12256,-143,-4977,-12255,-12254,-71,-70], -[0,-68,-1380,-24,-628,-494,-1378], +[0,-1554,-9335,-1876,-9336,-9337,-9338,-2347,-2460], +[0,-7841,-9048,-775,-6024,-1631,-9339], [1,3,4182], [0,4183,128,4184,9], -[0,-71,-363,-200,-207], -[0,-68,-958,-12253,-12252,-1735,-1737,-4976], +[0,-2347,-1266,-1376,-834], +[0,-7841,-3976,-9340,-9341,-3959,-3955,-9342], [1,3,4186], [0,4187,4188,4189,4], -[0,-802,-223,-1486,-264,-999,-477,-1113,-396,-1947], -[0,-32,-3,-125,-3971,-474], -[0,-624,-223,-1141,-4975,-209], +[0,-2178,-729,-2353,-1022,-1597,-479,-2186,-2187,-9229], +[0,-1168,-1654,-2293,-1254,-710], +[0,-7419,-729,-1540,-9343,-3844], [1,3,4191], [0,214,4192,4193,4], -[0,-32,-8,-4,-5026], -[0,-68,-669,-32], +[0,-1168,-1415,-1942,-9078], +[0,-7841,-6351,-1168], [1,3,4195], [0,4196,4197,4198,4], -[0,-477,-4974,-264,-143,-71], -[0,-117,-3,-70], -[0,-68,-24,-4974,-217,-539,-592], +[0,-479,-9344,-1022,-1876,-2347], +[0,-1452,-1654,-2460], +[0,-7841,-775,-9344,-7148,-8170,-3277], [1,3,4200], [0,4201,4202,4203,4], -[0,-70,-1946,-4973,-71,-264,-143], -[0,-15,-3,-27,-1,-7,-82,-56,-12251,-12250,-67,-84,-131,-1861], -[0,-1946,-68], +[0,-2460,-9231,-9345,-2347,-1022,-1876], +[0,-1788,-1654,-2210,-932,-2125,-2198,-756,-9346,-9347,-968,-943,-974,-942], +[0,-9231,-7841], [1,3,4205], [0,4206,4207,4208,4], -[0,-382,-2514,-143,-242,-553], -[0,-39,-70,-556,-313], -[0,-382,-227,-1224,-721,-1647,-24,-68,-38], +[0,-784,-6829,-1876,-1792,-2464], +[0,-2322,-2460,-2320,-1252], +[0,-784,-1644,-6059,-7192,-7193,-775,-7841,-1889], [1,3,4210], [0,4211,4212,4213,4], -[0,-1773,-143,-553], -[0,-39,-70,-556], -[0,-68,-227,-24], +[0,-2746,-1876,-2464], +[0,-2322,-2460,-2320], +[0,-7841,-1644,-775], [1,3,4215], [0,4216,4217,4218,5], -[0,-143,-71,-5062], -[0,-117,-522,-82,-70], -[0,-68,-450,-106,-32], +[0,-1876,-2347,-8899], +[0,-1452,-1980,-2198,-2460], +[0,-7841,-6582,-4055,-1168], [1,3,4220], [0,4221,4222,4223,9], -[0,-1,-264,-143], -[0,-32,-3,-70,-82,-66,-94,-3224,-12249], -[0,-68,-1,-32,-1954,-12248,-280,-2508,-354,-1254,-270,-45,-786,-217,-107], +[0,-932,-1022,-1876], +[0,-1168,-1654,-2460,-2198,-1405,-528,-9348,-9349], +[0,-7841,-932,-1168,-8980,-9350,-7440,-6916,-707,-4144,-3756,-3214,-4107,-7148,-3862], [1,3,4225], [0,4226,4227,4228,8], -[0,-276,-70,-444,-12247,-71,-143,-315,-4972], -[0,-32,-3,-82,-66,-100], -[0,-68,-126,-3223,-1046,-32,-107], +[0,-1460,-2460,-1015,-9351,-2347,-1876,-725,-9352], +[0,-1168,-1654,-2198,-1405,-1599], +[0,-7841,-6656,-9353,-8276,-1168,-3862], [1,3,4230], [0,4231,4232,4233,6], -[0,-285,-1513,-143,-4971,-12246], -[0,-34,-51,-32,-70,-904], -[0,-68,-719,-469,-126,-625,-511,-93,-28,-1950,-70], +[0,-2218,-1686,-1876,-9354,-9355], +[0,-2541,-519,-1168,-2460,-1825], +[0,-7841,-7724,-1353,-6656,-6999,-5572,-1645,-1107,-9095,-2460], [1,3,4235], [0,215,72,4236,5], -[0,-68,-5147,-798,-2435,-12245,-4970,-774,-32], +[0,-7841,-8395,-2239,-8423,-9356,-9357,-6917,-1168], [1,3,4238], [0,214,4239,4240,4], -[0,-32,-3,-70,-82,-235,-266], -[0,-68,-32,-2044,-3222,-248], +[0,-1168,-1654,-2460,-2198,-1939,-933], +[0,-7841,-1168,-5841,-9358,-1847], [1,3,4242], [0,4243,27,4244,4], -[0,-12244,-1119,-12243,-71], -[0,-3518,-550,-1254,-32,-68,-100,-969,-107,-3221,-637,-1119], +[0,-9359,-2102,-9360,-2347], +[0,-6146,-3276,-4144,-1168,-7841,-1599,-3437,-3862,-9361,-3240,-2102], [1,3,4246], [0,4247,4248,4249,8], -[0,-20,-363,-3220,-12242,-242,-1065,-990,-71], -[0,-12241,-493], -[0,-68,-3985,-3220,-126,-625,-2507,-1963,-209,-337,-1053,-1621,-1620], +[0,-668,-1266,-9362,-9363,-1792,-6370,-1877,-2347], +[0,-9364,-1849], +[0,-7841,-1082,-9362,-6656,-6999,-6931,-8576,-3844,-3323,-7764,-8901,-8902], [1,3,4251], [0,4252,4253,4254,4], -[0,-12240,-7,-554,-363,-12239,-197], -[0,-3,-70,-1,-66,-12238,-6377,-325,-647,-12237,-4969], -[0,-387,-1229,-1677,-12236,-1621,-1620,-717,-2401,-878,-32,-68,-348,-6491,-571], +[0,-9365,-2125,-2462,-1266,-9366,-2062], +[0,-1654,-2460,-932,-1405,-9367,-1746,-1119,-1574,-9368,-9369], +[0,-5889,-5737,-5890,-9370,-8901,-8902,-8403,-9204,-3258,-1168,-7841,-1103,-841,-1105], [1,3,4256], [0,4257,4258,4259,5], -[0,-4968,-264,-23,-143,-2809,-12235,-70], -[0,-1,-3,-1517,-7,-82], -[0,-32,-387,-12234,-68,-2392], +[0,-9371,-1022,-1548,-1876,-2109,-9372,-2460], +[0,-932,-1654,-1660,-2125,-2198], +[0,-1168,-5889,-9373,-7841,-9321], [1,3,4261], [0,4262,4263,4264,9], -[0,-477,-475,-264,-143,-3219,-71], -[0,-32,-2228,-1162,-819,-364,-314,-2468,-2878,-1000,-3,-4967,-82], -[0,-541,-68,-1407], +[0,-479,-651,-1022,-1876,-9374,-2347], +[0,-1168,-1183,-1199,-1224,-1231,-1243,-7832,-1268,-1453,-1654,-9375,-2198], +[0,-6454,-7841,-6826], [1,3,4266], [0,4267,4268,4269,5], -[0,-250,-143,-896,-71], -[0,-70,-32,-654,-12233,-12232,-12231,-3,-12230,-82], -[0,-68,-250], +[0,-1276,-1876,-2103,-2347], +[0,-2460,-1168,-1187,-9376,-9377,-9378,-1654,-9379,-2198], +[0,-7841,-1276], [1,3,4271], [0,4272,4273,4274,4], -[0,-3517,-23,-999,-71], -[0,-13,-32], -[0,-2618,-68,-12229], +[0,-6193,-1548,-1597,-2347], +[0,-664,-1168], +[0,-5147,-7841,-9380], [1,3,4276], [0,4277,4278,4279,10], -[0,-536,-285,-116,-1784,-242,-197], -[0,-3,-70,-66,-363,-3224,-315,-2390,-883], -[0,-68,-31,-1046], +[0,-702,-2218,-615,-2461,-1792,-2062], +[0,-1654,-2460,-1405,-1266,-9348,-725,-9381,-2463], +[0,-7841,-3264,-8276], [1,3,4281], [0,4282,4283,4284,8], -[0,-71,-143,-1531], -[0,-32,-3,-70,-707], -[0,-550,-32,-68,-12228,-31,-3218,-1224,-776,-227], +[0,-2347,-1876,-1323], +[0,-1168,-1654,-2460,-1202], +[0,-3276,-1168,-7841,-9382,-3264,-9383,-6059,-6684,-1644], [1,3,4286], [0,4287,4288,4289,5], -[0,-3738,-12227,-1395,-12226,-12225,-4971,-12224,-12223,-12222], -[0,-32,-8,-1,-7,-4966,-1733,-4,-252,-1057,-48,-503,-12221,-2,-3217,-957,-4965,-83,-145,-12,-25,-298,-404], -[0,-68,-32,-741,-1086], +[0,-4091,-9384,-7837,-9385,-9386,-9354,-9387,-9388,-9389], +[0,-1168,-1415,-932,-2125,-9390,-4010,-1942,-367,-7043,-190,-720,-9391,-2410,-9392,-4007,-9393,-2411,-959,-940,-967,-796, +-740], +[0,-7841,-1168,-3167,-3827], [1,3,4291], [0,4292,4293,4294,9], -[0,-71,-4964,-4963], -[0,-3,-117,-72,-7,-82,-554,-325,-1864,-12220], -[0,-68,-3252,-12219,-12218], +[0,-2347,-9394,-9395], +[0,-1654,-1452,-1650,-2125,-2198,-2462,-1119,-908,-9396], +[0,-7841,-8978,-9397,-9398], [1,3,4296], [0,4297,4298,4299,11], -[0,-71,-4964], -[0,-117,-3,-82], -[0,-68,-719,-93,-3223,-4962,-1162], +[0,-2347,-9394], +[0,-1452,-1654,-2198], +[0,-7841,-7724,-1645,-9353,-9399,-1199], [1,3,4301], [0,4302,4303,36,4], -[0,-60,-23,-12217,-71], -[0,-3983,-32,-2228,-364,-819,-983,-1000], +[0,-510,-1548,-9400,-2347], +[0,-1112,-1168,-1183,-1231,-1224,-2150,-1453], [1,3,4305], [0,4306,4307,4308,4], -[0,-20,-916,-2220,-990,-523], -[0,-51,-3957,-4961,-70,-34], -[0,-68,-2220,-281,-1703,-3270,-3269,-227,-776,-541,-579,-1383,-1042,-1208,-256], +[0,-668,-1236,-1356,-1877,-1948], +[0,-519,-1357,-9401,-2460,-2541], +[0,-7841,-1356,-6527,-5094,-8634,-8635,-1644,-6684,-6454,-7715,-8640,-9235,-8642,-3839], [1,3,4310], [0,4311,4312,36,8], -[0,-477,-423,-28,-143,-130,-1293,-70,-553], -[0,-32,-313,-3,-82,-1490], +[0,-479,-994,-1107,-1876,-2231,-2270,-2460,-2464], +[0,-1168,-1252,-1654,-2198,-2261], [1,3,4314], [0,4315,4316,4317,4], -[0,-1189,-71,-264,-477,-12216,-143,-3219,-424], -[0,-34,-9,-3,-70,-82,-4960,-423,-49,-120,-937], -[0,-68,-3216,-4959,-4958,-3215,-2389], +[0,-506,-2347,-1022,-479,-9402,-1876,-9374,-930], +[0,-2541,-1344,-1654,-2460,-2198,-9403,-994,-86,-2174,-9404], +[0,-7841,-9405,-9406,-9407,-9408,-9409], [1,3,4319], [0,4320,4321,4322,4], -[0,-12215,-143,-71], -[0,-94,-56,-423,-32,-530,-364,-3,-15,-70], -[0,-68,-1378,-24,-31,-2461], +[0,-9410,-1876,-2347], +[0,-528,-756,-994,-1168,-1197,-1231,-1654,-1788,-2460], +[0,-7841,-9339,-775,-3264,-7920], [1,3,4324], [0,4325,4326,4327,9], -[0,-1873,-363,-12214,-1125,-71,-219], -[0,-13,-3,-134,-34], -[0,-68,-1185,-158,-757], +[0,-805,-1266,-9411,-1827,-2347,-2518], +[0,-664,-1654,-2251,-2541], +[0,-7841,-622,-1764,-1380], [1,3,4329], [0,4330,4331,4332,9], -[0,-66,-12213,-23,-143,-71,-553], -[0,-32,-364,-313,-4957,-117,-3,-7,-70], -[0,-68,-787,-66,-12212], +[0,-1405,-9412,-1548,-1876,-2347,-2464], +[0,-1168,-1231,-1252,-9413,-1452,-1654,-2125,-2460], +[0,-7841,-4005,-1405,-9414], [1,3,4334], [0,4335,4336,4337,10], -[0,-363,-1833,-71], -[0,-32,-85,-819], -[0,-1833,-68,-245,-665], +[0,-1266,-1409,-2347], +[0,-1168,-2319,-1224], +[0,-1409,-7841,-5827,-7644], [1,3,4339], [0,4340,4341,4342,10], -[0,-1189,-199,-12211,-143,-71], -[0,-32,-70], -[0,-591,-52,-68,-199,-375,-456,-1082,-85,-543,-75,-61,-388], +[0,-506,-1412,-9415,-1876,-2347], +[0,-1168,-2460], +[0,-3440,-3161,-7841,-1412,-1989,-4043,-4679,-2319,-4873,-4004,-3634,-5119], [1,3,4344], [0,4345,4346,4347,4], -[0,-613,-143,-71,-2181], -[0,-1490,-5333,-70], -[0,-68,-613,-45,-338,-270,-354,-225,-509,-217,-360,-280,-581], +[0,-1445,-1876,-2347,-2350], +[0,-2261,-7423,-2460], +[0,-7841,-1445,-3214,-3217,-3756,-707,-5553,-5874,-7148,-3272,-7440,-7144], [1,3,4349], [0,4350,4351,36,8], -[0,-23,-93,-143,-4973,-71], -[0,-32,-117,-3,-82,-70], +[0,-1548,-1645,-1876,-9345,-2347], +[0,-1168,-1452,-1654,-2198,-2460], [1,3,4353], [0,4354,4355,4356,5], -[0,-326,-1341,-1001,-143,-71], -[0,-1,-828,-32,-3,-82,-70], -[0,-68,-32,-106], +[0,-823,-831,-1440,-1876,-2347], +[0,-932,-937,-1168,-1654,-2198,-2460], +[0,-7841,-1168,-4055], [1,3,4358], [0,4359,4360,4361,5], -[0,-222,-242,-143,-896,-71,-553], -[0,-117,-3,-82,-70], -[0,-68,-32,-222], +[0,-1521,-1792,-1876,-2103,-2347,-2464], +[0,-1452,-1654,-2198,-2460], +[0,-7841,-1168,-1521], [1,3,4363], [0,4364,4365,4366,8], -[0,-20,-36,-70,-1486,-264,-2210,-197], -[0,-3,-27], -[0,-68,-1141], +[0,-668,-812,-2460,-2353,-1022,-1550,-2062], +[0,-1654,-2210], +[0,-7841,-1540], [1,3,4368], [0,4369,4370,4371,5], -[0,-3214,-128,-264,-362,-1546,-3213,-12210], -[0,-3,-27,-1,-180,-12209,-115,-76,-10,-67,-84,-131], -[0,-624,-32,-407,-2001,-4956], +[0,-9416,-2114,-1022,-1639,-1048,-9417,-9418], +[0,-1654,-2210,-932,-1972,-9419,-965,-966,-958,-968,-943,-974], +[0,-7419,-1168,-4792,-6994,-9420], [1,3,4373], [0,4374,4375,7,10], -[0,-576,-363,-242,-197,-12208,-553], -[0,-13,-3,-70,-1,-66,-3971,-3224,-313,-2388,-2390,-4969], +[0,-683,-1266,-1792,-2062,-9421,-2464], +[0,-664,-1654,-2460,-932,-1405,-1254,-9348,-1252,-9422,-9381,-9369], [1,3,4377], [0,4378,4379,4380,4], -[0,-1996,-71,-363], -[0,-13,-32,-3], -[0,-68,-227,-580,-721,-541,-31,-1996], +[0,-7173,-2347,-1266], +[0,-664,-1168,-1654], +[0,-7841,-1644,-7175,-7192,-6454,-3264,-7173], [1,3,4382], [0,4383,211,4384,5], -[0,-1873,-118,-916,-3,-461], -[0,-68,-3,-75,-61,-388,-52,-456,-543,-591,-375,-1082,-85], +[0,-805,-999,-1236,-1654,-2297], +[0,-7841,-1654,-4004,-3634,-5119,-3161,-4043,-4873,-3440,-1989,-4679,-2319], [1,3,4386], [0,4387,4388,4389,10], -[0,-3212,-28,-143], -[0,-13,-32,-3,-70,-1,-568,-3244], -[0,-32,-68,-3234,-4978], +[0,-9423,-1107,-1876], +[0,-664,-1168,-1654,-2460,-932,-1658,-9072], +[0,-1168,-7841,-9254,-9329], [1,3,4391], [0,4392,72,4393,5], -[0,-12207,-494,-4955,-143,-71,-553], -[0,-68,-192,-1237,-5857,-4955], +[0,-9424,-1631,-9425,-1876,-2347,-2464], +[0,-7841,-475,-5175,-4668,-9425], [1,3,4395], [0,4396,4397,4398,11], -[0,-135,-32,-288], -[0,-474,-819,-364,-5135,-117,-82], -[0,-32,-288,-12206,-209,-3211,-3285,-594,-624,-68], +[0,-714,-1168,-1753], +[0,-710,-1224,-1231,-8419,-1452,-2198], +[0,-1168,-1753,-9426,-3844,-9427,-8442,-2490,-7419,-7841], [1,3,4400], [0,4401,4402,4403,10], -[0,-23,-71,-264,-477,-2202,-143,-1510], -[0,-32,-3,-70,-82,-2226], -[0,-68,-2396,-32,-1731,-946,-12205,-12204,-3233,-12203,-2522], +[0,-1548,-2347,-1022,-479,-1750,-1876,-1737], +[0,-1168,-1654,-2460,-2198,-1237], +[0,-7841,-9258,-1168,-4127,-6863,-9428,-9429,-9262,-9430,-6721], [1,3,4405], [0,4406,4407,4408,4], -[0,-1395,-20,-4954], -[0,-51,-904,-2,-70,-34], -[0,-32,-107,-5207,-939], +[0,-7837,-668,-9431], +[0,-519,-1825,-2410,-2460,-2541], +[0,-1168,-3862,-8112,-8113], [1,3,4410], [0,4411,4412,36,9], -[0,-20,-71,-264,-143], -[0,-34,-32,-3,-82,-460,-66,-56,-423,-611], +[0,-668,-2347,-1022,-1876], +[0,-2541,-1168,-1654,-2198,-2346,-1405,-756,-994,-1657], [1,3,4414], [0,4415,4416,4417,9], -[0,-264,-143,-902,-553], -[0,-15,-3,-27,-70,-1,-38,-180,-313], -[0,-68,-38,-1945,-24], +[0,-1022,-1876,-1907,-2464], +[0,-1788,-1654,-2210,-2460,-932,-1889,-1972,-1252], +[0,-7841,-1889,-9300,-775], [1,3,4419], [0,4420,4421,4422,4], -[0,-2395], -[0,-3,-2157,-1393,-70], -[0,-12202,-316,-3252,-36,-12201,-782,-4962,-2392,-68,-31,-12200,-12199,-3223,-45,-592], +[0,-9263], +[0,-1654,-2987,-8065,-2460], +[0,-9432,-711,-8978,-812,-9433,-5558,-9399,-9321,-7841,-3264,-9434,-9435,-9353,-3214,-3277], [1,3,4424], [0,4425,4426,4427,5], -[0,-423,-200,-1524], -[0,-293,-1,-12198,-200,-3,-180,-883], -[0,-68,-490], +[0,-994,-1376,-1570], +[0,-507,-932,-9436,-1376,-1654,-1972,-2463], +[0,-7841,-1965], [1,3,4429], [0,4430,4431,4432,10], -[0,-363,-242,-3906,-71,-553], -[0,-313], -[0,-68,-6,-866,-507,-2433,-271,-740,-1067,-4953,-4952,-665], +[0,-1266,-1792,-2054,-2347,-2464], +[0,-1252], +[0,-7841,-2006,-4146,-6408,-8530,-3110,-3261,-6107,-9437,-9438,-7644], [1,3,4434], [0,4435,4436,4437,11], -[0,-423,-2202,-113,-71,-70], -[0,-32,-653,-2228], -[0,-68,-2415,-12197], +[0,-994,-1750,-2105,-2347,-2460], +[0,-1168,-1262,-1183], +[0,-7841,-8908,-9439], [1,3,4439], [0,0,4440,36,10], -[0,-32,-313,-999,-3,-4,-82,-70], +[0,-1168,-1252,-1597,-1654,-1942,-2198,-2460], [1,3,4442], [0,4443,4444,4445,9], -[0,-5,-1395,-518,-12196,-5307], -[0,-3,-70,-82,-33,-3309,-2,-315], -[0,-68,-1046], +[0,-3037,-7837,-2551,-9440,-7622], +[0,-1654,-2460,-2198,-2379,-8255,-2410,-725], +[0,-7841,-8276], [1,3,4447], [0,4448,4449,4450,8], -[0,-916,-12195,-12194,-12193,-3210,-70,-2387], -[0,-51,-904,-34], -[0,-68,-4951,-12192,-4950,-1419,-580,-663,-4981,-433,-12191,-856,-1667,-12190], +[0,-1236,-9441,-9442,-9443,-9444,-2460,-9445], +[0,-519,-1825,-2541], +[0,-7841,-9446,-9447,-9448,-6131,-7175,-9318,-9319,-3324,-9449,-5142,-6342,-9450], [1,3,4452], [0,215,4453,4454,4], -[0,-423,-1162,-3973,-3,-70], -[0,-68,-4951,-4950,-663,-1046,-1667], +[0,-994,-1199,-1245,-1654,-2460], +[0,-7841,-9446,-9448,-9318,-8276,-6342], [1,3,4456], [0,4457,4458,4459,5], -[0,-20,-472,-230,-1873,-12189,-424,-264,-28,-5936,-12188,-493,-143,-896,-7,-70], -[0,-32,-313,-2387], -[0,-68,-432,-77,-24,-665,-592,-225,-12187,-130,-4949,-2002,-3209], +[0,-668,-742,-769,-805,-9451,-930,-1022,-1107,-4089,-9452,-1849,-1876,-2103,-2125,-2460], +[0,-1168,-1252,-9445], +[0,-7841,-3754,-2162,-775,-7644,-3277,-5553,-9453,-2231,-9454,-6915,-9455], [1,3,4461], [0,4462,4463,4464,6], -[0,-164,-138,-896,-143,-1139,-553], -[0,-32,-77,-3,-70,-1,-7,-5039,-38,-2468,-1315,-160,-1538,-1457,-313,-10,-191], -[0,-68,-77,-32], +[0,-1863,-2269,-2103,-1876,-1552,-2464], +[0,-1168,-2162,-1654,-2460,-932,-2125,-9008,-1889,-7832,-1743,-518,-1238,-3572,-1252,-958,-934], +[0,-7841,-2162,-1168], [1,3,4466], [0,4467,0,4468,5], -[0,-60,-363,-242,-1065,-2793,-71], -[0,-68,-4948,-126,-625,-2507,-1963,-209,-337,-1053,-1621,-1620], +[0,-510,-1266,-1792,-6370,-2246,-2347], +[0,-7841,-9456,-6656,-6999,-6931,-8576,-3844,-3323,-7764,-8901,-8902], [1,3,4470], [0,4471,4472,4473,5], -[0,-20,-264,-1524,-143,-71,-44], -[0,-2386,-3217,-29,-4947,-5,-1976,-22,-19,-56,-1,-12,-145,-32,-8,-4,-57,-33,-2,-70], -[0,-68,-32,-254,-308], +[0,-668,-1022,-1570,-1876,-2347,-2387], +[0,-9457,-9392,-3136,-9458,-3037,-7836,-427,-428,-756,-932,-940,-959,-1168,-1415,-1942,-2375,-2379,-2410,-2460], +[0,-7841,-1168,-5550,-3957], [1,3,4475], [0,4476,216,4477,10], -[0,-4946,-20,-264,-916,-1160,-523], -[0,-68,-761,-126,-1207,-263,-3208,-1717,-36,-1407,-2515], +[0,-9459,-668,-1022,-1236,-1273,-1948], +[0,-7841,-1044,-6656,-8799,-1573,-9460,-4676,-812,-6826,-6828], [1,3,4479], [0,4480,4481,4482,4], -[0,-12186,-12185,-208,-472,-24,-12184,-2422,-325,-130,-5009,-71], -[0,-476,-1,-828,-350,-32,-654,-1161,-1325,-2227,-3207,-66,-2390,-12183,-3,-242,-7,-70], -[0,-68,-32,-3206,-3209], +[0,-9461,-9462,-461,-742,-775,-9463,-8888,-1119,-2231,-9195,-2347], +[0,-620,-932,-937,-1001,-1168,-1187,-1212,-1226,-1228,-9464,-1405,-9381,-9465,-1654,-1792,-2125,-2460], +[0,-7841,-1168,-9466,-9455], [1,3,4484], [0,4485,216,4486,4], -[0,-11,-916,-12182], -[0,-68,-1061,-626,-775,-1219,-36,-3401,-194,-263,-367,-270,-45,-338,-360,-1168], +[0,-23,-1236,-9467], +[0,-7841,-6817,-6694,-6693,-6688,-812,-7336,-4000,-1573,-5545,-3756,-3214,-3217,-3272,-987], [1,3,4488], [0,4489,213,4490,4], -[0,-12181,-2210,-143,-896,-393,-71,-553], -[0,-32,-393,-24,-592,-68,-2392], +[0,-9468,-1550,-1876,-2103,-2286,-2347,-2464], +[0,-1168,-2286,-775,-3277,-7841,-9321], [1,3,4492], [0,4493,4494,4495,4], -[0,-143,-2783], -[0,-28,-32,-12180,-3,-12179,-70,-34], -[0,-68,-741,-961,-256,-579,-1614,-2393,-2385,-114,-24,-77,-222,-393,-1275,-1378,-31,-1203,-4945,-1944,-524], +[0,-1876,-2302], +[0,-1107,-1168,-9469,-1654,-9470,-2460,-2541], +[0,-7841,-3167,-3843,-3839,-7715,-9278,-9279,-9471,-3262,-775,-2162,-1521,-2286,-3271,-9339,-3264,-9472,-9473,-9474,-1689], [1,3,4497], [0,4498,4499,4500,5], -[0,-1139,-143,-598], -[0,-50,-11,-21,-178,-51,-56,-26,-237,-15,-4,-70,-34], -[0,-68,-227,-256,-598], +[0,-1552,-1876,-2303], +[0,-21,-23,-40,-43,-519,-756,-767,-825,-1788,-1942,-2460,-2541], +[0,-7841,-1644,-3839,-2303], [1,3,4502], [0,4503,4504,4505,4], -[0,-238,-264,-143,-70], -[0,-1016,-32,-6442,-3,-157,-396,-27], -[0,-68,-256,-741,-1614], +[0,-674,-1022,-1876,-2460], +[0,-1045,-1168,-1217,-1654,-1978,-2187,-2210], +[0,-7841,-3839,-3167,-9278], [1,3,4507], [0,4508,4509,4510,9], -[0,-916,-23], -[0,-51,-3977,-70,-34], -[0,-68,-23,-247,-271,-665,-31,-844,-4944,-4952], +[0,-1236,-1548], +[0,-519,-1196,-2460,-2541], +[0,-7841,-1548,-2424,-3110,-7644,-3264,-7650,-9475,-9438], [1,3,4512], [0,4513,4514,4515,4], -[0,-477,-264,-460,-70], -[0,-3217,-5,-3205,-1395,-1204,-2386,-7,-32,-364,-2], -[0,-68,-2,-45,-12178], +[0,-479,-1022,-2346,-2460], +[0,-9392,-3037,-9476,-7837,-8890,-9457,-2125,-1168,-1231,-2410], +[0,-7841,-2410,-3214,-9477], [1,3,4517], [0,4518,4519,4520,9], -[0,-2386,-477,-264,-999,-143,-460], -[0,-4943,-5,-3205,-32,-654,-1536,-196,-2], -[0,-32,-2,-107,-436,-68,-624,-196,-539,-217], +[0,-9457,-479,-1022,-1597,-1876,-2346], +[0,-9478,-3037,-9476,-1168,-1187,-1261,-2388,-2410], +[0,-1168,-2410,-3862,-3018,-7841,-7419,-2388,-8170,-7148], [1,3,4522], [0,4523,4524,4525,4], -[0,-70,-71,-554,-130,-477,-143], -[0,-32,-7,-12177,-2,-5,-654,-820,-1395,-2226,-1132,-1976,-5264,-313,-12176], -[0,-2,-68,-12175,-436,-3654,-665,-593,-2150], +[0,-2460,-2347,-2462,-2231,-479,-1876], +[0,-1168,-2125,-9479,-2410,-3037,-1187,-1208,-7837,-1237,-1632,-7836,-7838,-1252,-9480], +[0,-2410,-7841,-9481,-3018,-5058,-7644,-3116,-3185], [1,3,4527], [0,4528,4529,36,9], -[0,-3214,-1835,-71,-112,-12174,-3213,-488,-2884,-12173,-553], -[0,-39,-70,-1,-4,-12172,-1789,-1501,-12171,-1335,-150,-12,-25,-4942], +[0,-9416,-1403,-2347,-2416,-9482,-9417,-2155,-1016,-9483,-2464], +[0,-2322,-2460,-932,-1942,-9484,-2341,-1938,-9485,-945,-978,-940,-967,-9486], [1,3,4531], [0,4532,122,4533,5], -[0,-363,-242,-3204], -[0,-1988,-24,-68], +[0,-1266,-1792,-9487], +[0,-7441,-775,-7841], [1,3,4535], [0,4536,4537,4538,5], -[0,-28,-654,-143,-71,-70], -[0,-423,-554,-32,-819,-364,-653,-6444,-1009,-3973,-1325,-117], -[0,-68,-4990,-6436], +[0,-1107,-1187,-1876,-2347,-2460], +[0,-994,-2462,-1168,-1224,-1231,-1262,-1210,-1184,-1245,-1226,-1452], +[0,-7841,-9281,-1264], [1,3,4540], [0,4541,4542,4543,4], -[0,-28,-444,-12170,-1161,-71,-554,-654,-423,-143], -[0,-15,-32,-3,-70,-56,-12169,-364,-530,-314,-94,-12168], -[0,-68,-31,-3215,-24,-580,-1380], +[0,-1107,-1015,-9488,-1212,-2347,-2462,-1187,-994,-1876], +[0,-1788,-1168,-1654,-2460,-756,-9489,-1231,-1197,-1243,-528,-9490], +[0,-7841,-3264,-9408,-775,-7175,-9048], [1,3,4545], [0,4546,4547,7,6], -[0,-3203,-4941,-3202,-20,-1872,-264,-3214,-3213,-12167,-12166,-4940,-1524,-88,-3738,-242,-896,-71,-70], -[0,-1880,-56,-423,-66,-2390,-117,-4939,-3,-7,-82], +[0,-9491,-9492,-9493,-668,-808,-1022,-9416,-9417,-9494,-9495,-9496,-1570,-1646,-4091,-1792,-2103,-2347,-2460], +[0,-641,-756,-994,-1405,-9381,-1452,-9497,-1654,-2125,-2198], [1,3,4549], [0,4550,4551,4552,8], -[0,-986,-460,-71,-70,-554,-977,-2384], -[0,-3,-97,-597], -[0,-32,-68,-2384,-12165,-855,-940,-70,-12164], +[0,-1986,-2346,-2347,-2460,-2462,-2555,-9498], +[0,-1654,-2250,-2330], +[0,-1168,-7841,-9498,-9499,-5408,-8027,-2460,-9500], [1,3,4554], [0,4555,4556,4557,4], -[0,-477,-4938,-119,-264,-1542,-242,-1308,-143,-197,-285,-70,-2387], -[0,-56,-66,-3,-611,-180,-7,-82,-27,-1490,-138,-34], -[0,-32,-594,-68], +[0,-479,-9501,-679,-1022,-1108,-1792,-1850,-1876,-2062,-2218,-2460,-9445], +[0,-756,-1405,-1654,-1657,-1972,-2125,-2198,-2210,-2261,-2269,-2541], +[0,-1168,-2490,-7841], [1,3,4559], [0,4560,0,4561,4], -[0,-1133,-70,-460,-17,-363], -[0,-68,-17], +[0,-1626,-2460,-2346,-2501,-1266], +[0,-7841,-2501], [1,3,4563], [0,4564,4565,4566,8], -[0,-223,-1947,-363,-1151,-2202,-149,-4937,-1113,-396,-71,-1486,-594], -[0,-3,-125], -[0,-68,-4975,-223,-1141], +[0,-729,-9229,-1266,-1402,-1750,-1805,-9502,-2186,-2187,-2347,-2353,-2490], +[0,-1654,-2293], +[0,-7841,-9343,-729,-1540], [1,3,4568], [0,4569,4570,4571,5], -[0,-498,-916,-70,-2384], -[0,-51,-5351,-4954,-32,-904,-12163,-2387,-34], -[0,-68,-855,-1426,-928,-541,-384,-126], +[0,-1100,-1236,-2460,-9498], +[0,-519,-7342,-9431,-1168,-1825,-9503,-9445,-2541], +[0,-7841,-5408,-5409,-501,-6454,-724,-6656], [1,3,4573], [0,4574,4575,4576,5], -[0,-4995,-60,-70,-71,-93,-247,-2394,-4996], -[0,-32,-3,-1,-7,-4993,-12162,-6446,-1132,-1784,-6443,-12161,-4992,-4991,-4994], -[0,-68,-2394,-1614,-2393], +[0,-9271,-510,-2460,-2347,-1645,-2424,-9270,-9269], +[0,-1168,-1654,-932,-2125,-9273,-9504,-1195,-1632,-2461,-1215,-9505,-9274,-9275,-9272], +[0,-7841,-9270,-9278,-9279], [1,3,4578], [0,4579,4580,4581,11], -[0,-1558], -[0,-51,-904,-81,-34], -[0,-300,-589,-3201,-1407,-12160,-1207,-163,-299], +[0,-883], +[0,-519,-1825,-2384,-2541], +[0,-3994,-3673,-9506,-6826,-9507,-8799,-2265,-640], [1,3,4583], [0,4584,4585,4586,4], -[0,-4936,-12159,-12158,-12157,-274,-12156,-12155,-521,-1720,-2631,-3200,-3199,-3198,-3197,-3196,-3195,-3194,-12154,-4935, --12153,-4934,-12152,-12151,-3193,-3192,-12150,-12149,-3575,-12148,-3191,-3190,-3189,-3188,-3187,-4933,-5528,-461,-12147, --12146], -[0,-80,-231,-63,-204,-1563,-12145,-14,-97,-39,-372], -[0,-100,-42,-390,-1728,-780,-280,-12144,-539,-217,-1049,-1535,-274,-133], +[0,-9508,-9509,-9510,-9511,-2093,-9512,-9513,-2095,-4655,-4994,-9514,-9515,-9516,-9517,-9518,-9519,-9520,-9521,-9522, +-9523,-9524,-9525,-9526,-9527,-9528,-9529,-9530,-5707,-9531,-9532,-9533,-9534,-9535,-9536,-9537,-6368,-2297,-9538,-9539], +[0,-350,-4062,-351,-3266,-827,-9540,-2127,-2250,-2322,-2331], +[0,-1599,-856,-3671,-4328,-5887,-7440,-9541,-8170,-7148,-8169,-1274,-2093,-2427], [1,3,4588], [0,0,4589,4590,10], -[0,-12143,-12142,-54,-3340,-656,-616,-177,-2383,-347,-302,-1326,-4932,-12141], -[0,-414,-4931], +[0,-9542,-9543,-1127,-7887,-1136,-1137,-1144,-9544,-1148,-1149,-1153,-9545,-9546], +[0,-2363,-9547], [1,3,4592], [0,4593,4594,4595,8], -[0,-88,-1943,-130,-978,-112], -[0,-357,-1033,-98,-291,-110,-13,-12140,-289,-1562,-1172,-5440,-5443,-1,-12,-923,-1859,-40,-54,-3545,-167,-243,-656,-616, --532,-4930,-347,-302,-821,-3343,-9,-5460,-18,-3,-1516,-524,-15,-4,-16,-27,-2,-247,-17,-170], -[0,-250,-524,-271,-31], +[0,-1646,-9548,-2231,-2525,-2416], +[0,-3983,-521,-534,-567,-589,-664,-9549,-726,-838,-879,-6897,-6867,-932,-940,-952,-953,-1077,-1127,-5974,-1132,-1134, +-1136,-1137,-1138,-9550,-1148,-1149,-1162,-7848,-1344,-6785,-1534,-1654,-1661,-1689,-1788,-1942,-2177,-2210,-2410,-2424, +-2501,-2505], +[0,-1276,-1689,-3110,-3264], [1,3,4597], [0,4598,4599,155,5], -[0,-756,-4929,-2254,-3482,-1841,-4928,-12139,-12138,-12137,-5721,-3186,-12136,-12135,-12134,-12133,-12132,-12131,-12130], -[0,-1144,-354,-6419,-4927,-4926,-250], +[0,-1435,-9551,-619,-6508,-1309,-9552,-9553,-9554,-9555,-5400,-9556,-9557,-9558,-9559,-9560,-9561,-9562,-9563], +[0,-1510,-707,-1367,-9564,-9565,-1276], [1,3,4601], [0,4602,4603,4604,6], -[0,-3470,-5,-454,-457,-2529,-205], -[0,-964,-5383,-2,-30,-3702], -[0,-79,-255,-91,-1455,-3185,-111,-127,-31,-1077,-632], +[0,-6594,-3037,-4204,-3223,-6587,-2531], +[0,-3665,-7197,-2410,-2469,-4375], +[0,-1449,-5092,-4865,-3586,-9566,-3578,-3098,-3264,-5388,-5387], [1,3,4606], [0,0,14,4607,4], -[0,-1631,-280,-668,-3474,-630,-3184,-37,-294,-1250,-287,-836,-587,-1062,-1644,-4925,-88,-565], +[0,-8047,-7440,-6659,-6543,-5573,-9567,-687,-3958,-4378,-1958,-502,-4377,-6748,-7303,-9568,-1646,-1813], [1,3,4609], [0,0,4610,4611,4], -[0,-310,-239,-1392,-4924,-664,-279,-159,-510,-1,-12129,-213,-275,-15,-187,-39], -[0,-5414,-2431,-2382,-4923,-549,-484,-159,-846], +[0,-2832,-5834,-8084,-9569,-8096,-516,-753,-5835,-932,-9570,-1365,-1777,-1788,-2156,-2322], +[0,-6981,-8619,-9571,-9572,-3582,-5269,-753,-6948], [1,3,4613], [0,0,4614,7,5], -[0,-117,-1000,-23,-39], +[0,-1452,-1453,-1548,-2322], [1,3,4616], [0,4617,4618,4619,10], -[0,-4922], -[0,-310,-239,-1392,-12128,-12127,-664,-766,-279,-1,-1166,-213,-1820,-275,-15,-187,-39], -[0,-1631,-12126,-4921,-12125,-12124,-1631,-1056,-12123,-45,-338], +[0,-9573], +[0,-2832,-5834,-8084,-9574,-9575,-8096,-515,-516,-932,-993,-1365,-1659,-1777,-1788,-2156,-2322], +[0,-8047,-9576,-9577,-9578,-9579,-8047,-7153,-9580,-3214,-3217], [1,3,4621], [0,4622,4623,4624,8], -[0,-246,-677,-1377,-4920,-6223,-3856,-1134,-607,-1942,-340,-483,-4919,-1941], -[0,-5,-1612,-43,-1534,-1159,-908,-4,-12122,-147,-260,-233,-2,-1396,-34], -[0,-578,-428,-31,-505,-202,-132,-165,-3183], +[0,-5334,-4231,-9581,-9582,-2768,-2771,-1619,-1839,-9583,-2429,-5358,-9584,-9585], +[0,-3037,-9586,-652,-1290,-1294,-1618,-1942,-9587,-2094,-2100,-2399,-2410,-7669,-2541], +[0,-9588,-9589,-3264,-9590,-3590,-2444,-1838,-9591], [1,3,4626], [0,4627,4628,4629,4], -[0,-246,-1377,-1942], -[0,-5,-1612,-12121,-43,-326,-1281,-1534,-1159,-3963,-12120,-4,-147,-260,-233,-2,-1396,-340,-34], -[0,-1219,-578,-428,-31,-1376,-941,-202,-132,-505,-1282], +[0,-5334,-9581,-9583], +[0,-3037,-9586,-9592,-652,-823,-2586,-1290,-1294,-1318,-9593,-1942,-2094,-2100,-2399,-2410,-7669,-2429,-2541], +[0,-6688,-9588,-9589,-3264,-9594,-7723,-3590,-2444,-9590,-2544], [1,3,4631], [0,4632,4633,4634,9], -[0,-246,-677,-12119,-1473,-3543,-936,-12118,-5905,-760,-2159,-2759,-1500,-1111,-340,-1941], -[0,-5,-43,-1159,-4,-147,-260,-233,-2,-1396,-34], -[0,-24,-578,-428,-31,-511,-2713,-676,-12117,-1456,-1409,-505,-202,-132], +[0,-5334,-4231,-9595,-2742,-5981,-9596,-9597,-4263,-1292,-2769,-2788,-1968,-2235,-2429,-9585], +[0,-3037,-652,-1294,-1942,-2094,-2100,-2399,-2410,-7669,-2541], +[0,-775,-9588,-9589,-3264,-5572,-3581,-5101,-9598,-3585,-6750,-9590,-3590,-2444], [1,3,4636], [0,4637,4638,4639,5], -[0,-329,-5164,-246,-1473,-936,-12116,-4918,-2159,-4917,-1611,-3182,-1500,-1111,-2183,-1942,-1941], -[0,-5,-1665,-43,-4916,-1687,-824,-1159,-908,-2616,-1134,-3640,-4,-147,-260,-233,-2,-340,-34], -[0,-2576,-338,-2613,-578,-428,-31,-45,-866,-2106,-374,-507,-505,-202,-132], +[0,-426,-8316,-5334,-2742,-9596,-9599,-9600,-2769,-9601,-9602,-9603,-1968,-2235,-2276,-9583,-9585], +[0,-3037,-6426,-652,-9604,-5342,-989,-1294,-1618,-5204,-1619,-5205,-1942,-2094,-2100,-2399,-2410,-2429,-2541], +[0,-5888,-3217,-5210,-9588,-9589,-3264,-3214,-4146,-4147,-2083,-6408,-9590,-3590,-2444], [1,3,4641], [0,4642,217,4643,6], -[0,-246,-677,-12115,-1473,-2159,-3856,-1134,-1500,-1111,-3894,-1941], -[0,-578,-428,-31,-851,-429,-12114,-505,-202,-132], +[0,-5334,-4231,-9605,-2742,-2769,-2771,-1619,-1968,-2235,-2268,-9585], +[0,-9588,-9589,-3264,-6233,-6231,-9606,-9590,-3590,-2444], [1,3,4645], [0,4646,4647,4648,4], -[0,-329,-246,-677,-1473,-936,-4918,-2159,-4917,-1611,-3182,-1500,-1111,-2183,-1942,-2527], -[0,-5,-47,-87,-43,-89,-2602,-1159,-4,-6,-35,-147,-260,-12113,-233,-2,-34], -[0,-578,-428,-31,-491,-6,-2381,-220,-505,-202,-132,-74], +[0,-426,-5334,-4231,-2742,-9596,-9600,-2769,-9601,-9602,-9603,-1968,-2235,-2276,-9583,-6648], +[0,-3037,-3040,-3052,-652,-928,-5343,-1294,-1942,-2006,-2019,-2094,-2100,-9607,-2399,-2410,-2541], +[0,-9588,-9589,-3264,-1940,-2006,-9608,-2299,-9590,-3590,-2444,-2476], [1,3,4650], [0,87,0,4651,4], -[0,-1427,-428,-578,-31,-851,-163,-429,-183,-505,-132,-202], +[0,-5398,-9589,-9588,-3264,-6233,-2265,-6231,-5554,-9590,-2444,-3590], [1,3,4653], [0,4654,217,4655,4], -[0,-246,-677,-1472,-12112], -[0,-505,-428,-578,-132,-202,-31,-163,-1427,-183,-3706], +[0,-5334,-4231,-2766,-9609], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-2265,-5398,-5554,-4308], [1,3,4657], [0,4658,4659,4660,4], -[0,-246,-1473,-6224,-1500,-1111], -[0,-5,-1665,-43,-4916,-12111,-1687,-4,-147,-260,-12110,-81,-233,-2,-34], -[0,-255,-5536,-578,-428,-31,-4915,-374,-505,-202,-132,-1940,-1375], +[0,-5334,-2742,-2767,-1968,-2235], +[0,-3037,-6426,-652,-9604,-9610,-5342,-1942,-2094,-2100,-9611,-2384,-2399,-2410,-2541], +[0,-5092,-6311,-9588,-9589,-3264,-9612,-2083,-9590,-3590,-2444,-9613,-9614], [1,3,4662], [0,4663,4664,7,8], -[0,-745,-250], -[0,-15,-3,-1,-7,-125,-214], +[0,-2487,-1276], +[0,-1788,-1654,-932,-2125,-2293,-963], [1,3,4666], [0,0,4667,4668,5], -[0,-2009,-54,-167,-821,-2032,-66,-1148,-23,-2558,-1498,-985,-12109,-416,-12108], -[0,-163,-457,-1051,-31,-777,-1416,-455], +[0,-6774,-1127,-1132,-1162,-6114,-1405,-1451,-1548,-6186,-1991,-2081,-9615,-2111,-9616], +[0,-2265,-3223,-8034,-3264,-6422,-6420,-4112], [1,3,4670], [0,4671,4672,7,4], -[0,-809], -[0,-272,-85], +[0,-1696], +[0,-2195,-2319], [1,3,4674], [0,0,0,4675,4], -[0,-41,-667,-5755,-46,-12107,-12106,-12105,-12104,-12103,-12102,-12101,-12100,-12099,-12098,-12097,-12096,-12095,-12094], +[0,-1004,-7107,-5146,-3445,-9617,-9618,-9619,-9620,-9621,-9622,-9623,-9624,-9625,-9626,-9627,-9628,-9629,-9630], [1,3,4677], [0,0,4678,7,9], -[0,-598,-7,-4,-446,-2160,-11,-4914,-1273], +[0,-2303,-2125,-1942,-656,-2699,-23,-9631,-3408], [1,3,4680], [0,0,4681,7,11], -[0,-178,-21,-1068,-3530,-169,-50,-11,-94,-86,-42,-1,-500,-10,-145,-8,-496], +[0,-43,-40,-6056,-6035,-527,-21,-23,-528,-533,-856,-932,-956,-958,-959,-1415,-1417], [1,3,4683], [0,4684,4685,4686,5], -[0,-2380,-116,-12093,-12092,-12091,-12090,-12089,-12088,-12087,-12086,-101,-4913,-362,-4912,-236,-907,-993,-164,-1414, --138,-2181,-12085,-12084], -[0,-12083,-3564,-109,-872,-411,-634,-69,-5,-5018,-269,-12082,-43,-13,-238,-1746,-1,-12081,-12080,-9,-18,-3,-27,-33,-2], -[0,-878,-2731,-1982,-52,-6428], +[0,-9632,-615,-9633,-9634,-9635,-9636,-9637,-9638,-9639,-9640,-1442,-9641,-1639,-9642,-1666,-1667,-1783,-1863,-6467,-2269, +-2350,-9643,-9644], +[0,-9645,-5767,-3035,-4035,-3660,-4036,-3621,-3037,-9144,-4372,-9646,-652,-664,-674,-3542,-932,-9647,-9648,-1344,-1534, +-1654,-2210,-2379,-2410], +[0,-3258,-3260,-7643,-3161,-1302], [1,3,4688], [0,4689,4690,7,8], -[0,-3181], -[0,-116,-59,-2905,-315,-1,-54,-1012,-570,-365,-347,-302,-531,-4911,-655,-250,-699,-1296,-12079,-3899,-27,-3433,-12078, --112], +[0,-9649], +[0,-615,-633,-634,-725,-932,-1127,-1130,-1131,-1146,-1148,-1149,-1152,-9650,-1159,-1276,-1754,-2148,-9651,-2199,-2210, +-7035,-9652,-2416], [1,3,4692], [0,0,4693,4694,4], -[0,-24,-151,-28,-3297,-79,-3,-1,-23,-14,-82,-175,-576,-1029,-58,-250,-2,-419,-12077,-69,-5292,-12076,-1228,-12075,-12074, --76,-231,-12073,-10,-67,-84,-80,-19,-63,-22], -[0,-2107,-389], +[0,-775,-824,-1107,-8318,-1449,-1654,-932,-1548,-2127,-2198,-2334,-683,-693,-719,-1276,-2410,-1339,-9653,-3621,-7694, +-9654,-5758,-9655,-9656,-966,-4062,-9657,-958,-968,-943,-350,-428,-351,-427], +[0,-4131,-4132], [1,3,4696], [0,218,0,7,4], [1,3,4698], [0,39,0,4699,5], -[0,-1533,-5055], +[0,-1306,-8938], [1,3,4701], [0,0,219,4702,4], -[0,-939], +[0,-8113], [1,3,4704], [0,4705,4706,4707,5], -[0,-466,-72], -[0,-112,-79,-12072,-7], -[0,-524,-271], +[0,-1758,-1650], +[0,-2416,-1449,-9658,-2125], +[0,-1689,-3110], [1,3,4709], [0,4710,4711,41,10], -[0,-439], -[0,-11,-216,-21,-136,-178,-13,-56,-2245,-1,-3,-15,-235,-121,-6,-7,-14,-273,-463,-341,-226], +[0,-2029], +[0,-23,-26,-40,-41,-43,-664,-756,-761,-932,-1654,-1788,-1939,-1967,-2006,-2125,-2127,-2128,-2131,-2137,-2140], [1,3,4713], [0,4714,4715,7,8], -[0,-20,-16,-40,-58,-12071,-1499,-146], -[0,-8,-1,-7,-288,-57,-33,-124,-2,-29,-5,-162,-137,-185,-145,-10,-2379,-19,-12070,-22], +[0,-668,-2177,-1077,-719,-9659,-1982,-2234], +[0,-1415,-932,-2125,-1753,-2375,-2379,-2402,-2410,-3136,-3037,-3198,-3199,-3048,-959,-958,-9660,-428,-9661,-427], [1,3,4717], [0,0,4718,4719,5], -[0,-12069,-1244,-458,-586,-5,-1047,-103,-836,-12068,-12067,-89,-1,-28,-79,-810,-417,-4910,-1385,-4,-459,-2,-284,-12066, --30,-4909,-205,-258], -[0,-915,-111,-300,-105,-1041,-52,-434,-4908,-4907,-12065,-12064,-5029,-3407,-2045,-335], +[0,-9662,-4835,-3036,-4647,-3037,-8200,-3664,-502,-9663,-9664,-928,-932,-1107,-1449,-1683,-1763,-9665,-8436,-1942,-2910, +-2410,-2426,-9666,-2469,-9667,-2531,-2564], +[0,-1313,-3578,-3994,-1334,-9668,-3161,-3122,-9669,-9670,-9671,-9672,-9060,-7314,-5819,-3967], [1,3,4721], [0,4722,29,4723,6], -[0,-442], -[0,-387,-571,-1981,-1397], +[0,-1582], +[0,-5889,-1105,-7660,-7661], [1,3,4725], [0,4726,86,4727,6], -[0,-315,-72,-7,-16,-596,-219,-12063], -[0,-12062,-12061,-12060,-12059,-158], +[0,-725,-1650,-2125,-2177,-2433,-2518,-9673], +[0,-9674,-9675,-9676,-9677,-1764], [1,3,4729], [0,4730,4731,4732,6], -[0,-1659,-497], -[0,-49,-62,-487,-48,-513,-80,-63,-204,-319,-3180,-5817,-12058,-5,-1079,-1469,-103,-1,-25,-859,-1170,-55,-1531,-9,-3406, --79,-18,-343,-398,-4,-459,-14,-321,-33,-2,-83,-30], -[0,-2873,-31,-255,-73,-497,-3179], +[0,-6585,-1333], +[0,-86,-3307,-3615,-190,-4066,-350,-351,-3266,-3267,-9678,-4862,-9679,-3037,-5286,-2970,-3664,-932,-967,-4814,-977,-1110, +-1323,-1344,-7317,-1449,-1534,-1772,-1874,-1942,-2910,-2127,-2214,-2379,-2410,-2411,-2469], +[0,-1317,-3264,-5092,-3215,-1333,-9680], [1,3,4734], [0,0,4735,4736,9], -[0,-5,-43,-1281,-1842,-760,-4,-147,-260,-233,-2,-284,-34], -[0,-1610,-1374,-31,-849,-1056,-1218,-632,-1077], +[0,-3037,-652,-2586,-1288,-1292,-1942,-2094,-2100,-2399,-2410,-2426,-2541], +[0,-9681,-9682,-3264,-6557,-7153,-6818,-5387,-5388], [1,3,4738], [0,4739,4740,4741,4], -[0,-4906], -[0,-3419,-1,-55], -[0,-510,-31], +[0,-9683], +[0,-7196,-932,-1110], +[0,-5835,-3264], [1,3,4743], [0,0,4744,4745,5], -[0,-49,-62,-739,-4905,-29,-5,-110,-457,-1,-12,-10,-12057,-1158,-9,-4,-134,-57,-555,-153,-2,-83], -[0,-31,-12056,-12055,-12054,-457,-12053,-12052], +[0,-86,-3307,-3268,-9684,-3136,-3037,-589,-3223,-932,-940,-958,-9685,-1297,-1344,-1942,-2251,-2375,-2386,-2392,-2410, +-2411], +[0,-3264,-9686,-9687,-9688,-3223,-9689,-9690], [1,3,4747], [0,0,4748,4749,11], -[0,-12051,-43,-56,-14,-1288], -[0,-31,-482,-777,-3178,-1416,-457], +[0,-9691,-652,-756,-2127,-2415], +[0,-3264,-5559,-6422,-9692,-6420,-3223], [1,3,4751], [0,4752,4753,4754,5], -[0,-607,-3961], -[0,-151,-8,-9,-262,-425,-1,-237,-17,-1338,-2194,-4,-26,-50,-86,-250,-11,-18,-65,-12050,-49,-134,-12049,-21,-346,-10,-12, --62,-944], -[0,-17,-31,-779], +[0,-1839,-1324], +[0,-824,-1415,-1344,-1623,-774,-932,-825,-2501,-920,-1936,-1942,-767,-21,-533,-1276,-23,-1534,-1771,-9693,-86,-2251,-9694, +-40,-1331,-958,-940,-3307,-7166], +[0,-2501,-3264,-5932], [1,3,4756], [0,4757,4758,4759,5], -[0,-2533,-576,-58,-1158,-3473,-3177,-112], -[0,-54,-1012,-347,-531,-645,-375], -[0,-37,-541,-2378,-24,-31,-3218,-45,-1616,-1224,-776,-227,-580,-1648,-2467,-3176,-165,-73,-3175,-938], +[0,-6512,-683,-719,-1297,-6560,-9695,-2416], +[0,-1127,-1130,-1148,-1152,-1860,-1989], +[0,-687,-6454,-9696,-775,-3264,-9383,-3214,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838,-3215,-9698,-9216], [1,3,4761], [0,4762,4763,4764,4], -[0,-2533,-576,-58,-457,-3473,-3177,-175], -[0,-49,-1239,-80,-231,-63,-204,-12048,-4904,-1,-84,-9,-569,-8,-176,-18,-14,-2377,-104], -[0,-37,-541,-2378,-24,-31,-3218,-45,-1616,-1224,-776,-227,-580,-1648,-2467,-3176,-165,-73,-175,-3175,-938], +[0,-6512,-683,-719,-3223,-6560,-9695,-2334], +[0,-86,-5121,-350,-4062,-351,-3266,-9699,-9700,-932,-943,-1344,-1392,-1415,-1419,-1534,-2127,-9701,-2466], +[0,-687,-6454,-9696,-775,-3264,-9383,-3214,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838,-3215,-2334,-9698,-9216], [1,3,4766], [0,4767,4768,4769,9], -[0,-645], -[0,-39,-97,-556,-645], -[0,-31,-1064,-3925,-903,-335], +[0,-1860], +[0,-2322,-2250,-2320,-1860], +[0,-3264,-6528,-1858,-1859,-3967], [1,3,4771], [0,4772,4773,4774,4], -[0,-1659,-2873,-3909,-2183], -[0,-49,-62,-487,-283,-48,-80,-63,-204,-319,-3180,-739,-5,-47,-87,-1079,-1469,-103,-110,-1,-25,-859,-1170,-55,-9,-18,-398, --491,-459,-6,-35,-14,-321,-33,-2,-83,-30], -[0,-3960,-31,-6,-73,-255], +[0,-6585,-1317,-2039,-2276], +[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3267,-9678,-3268,-3037,-3040,-3052,-5286,-2970,-3664,-589,-932,-967,-4814, +-977,-1110,-1344,-1534,-1874,-1940,-2910,-2006,-2019,-2127,-2214,-2379,-2410,-2411,-2469], +[0,-1326,-3264,-2006,-3215,-5092], [1,3,4776], [0,0,4777,4778,5], -[0,-51,-238,-34], -[0,-31,-585,-3174,-3185,-1256,-1077,-632,-3173,-12047], +[0,-519,-674,-2541], +[0,-3264,-5177,-9702,-9566,-4108,-5388,-5387,-9703,-9704], [1,3,4780], [0,0,4781,4782,10], -[0,-9,-569,-78,-44,-1,-7,-14,-4,-56,-991,-2,-65,-378,-441,-400,-1040,-612,-12046,-5151,-5267,-702,-12045,-12044,-139, --12043,-2720,-12042], -[0,-1939,-4903,-327,-31,-255,-281,-1203,-256], +[0,-1344,-1392,-1471,-2387,-932,-2125,-2127,-1942,-756,-1870,-2410,-1771,-1413,-1952,-1481,-9705,-1476,-9706,-8382,-7818, +-1491,-9707,-9708,-1475,-9709,-3469,-9710], +[0,-9711,-9712,-659,-3264,-5092,-6527,-9472,-3839], [1,3,4784], [0,4785,0,4786,5], -[0,-12041,-326,-4003,-497,-12040], -[0,-31,-141,-183,-4902,-3172,-1413], +[0,-9713,-823,-861,-1333,-9714], +[0,-3264,-3966,-5554,-9715,-9716,-6473], [1,3,4788], [0,4789,0,4790,5], -[0,-12039,-12038,-193,-28,-495,-88,-397,-16], -[0,-31,-217,-437,-3958], +[0,-9717,-9718,-469,-1107,-1496,-1646,-1966,-2177], +[0,-3264,-7148,-2451,-1330], [1,3,4792], [0,4793,4794,4795,9], -[0,-12037,-3961,-23,-6354,-1291], -[0,-49,-62,-5,-26,-425,-144,-298,-3245,-1,-5324,-1532,-9,-8,-18,-377,-65,-4,-643,-4901,-693,-7,-134,-154,-2,-17,-92, --12036], -[0,-17,-107,-31,-346], +[0,-9719,-1324,-1548,-1949,-2321], +[0,-86,-3307,-3037,-767,-774,-778,-796,-9071,-932,-7466,-1322,-1344,-1415,-1534,-1643,-1771,-1942,-1974,-9720,-2000,-2125, +-2251,-2275,-2410,-2501,-2503,-9721], +[0,-2501,-3862,-3264,-1331], [1,3,4797], [0,4798,4799,4800,4], -[0,-12035,-58,-403,-2194], -[0,-48,-309,-1998,-69,-5,-2376,-43,-382,-1,-3447,-10,-1626,-2375,-350,-55,-3,-38,-6352,-3177,-7,-12034,-598,-175,-2,-83, --3204], -[0,-2194,-12033,-31,-4900,-776], +[0,-9722,-719,-755,-1936], +[0,-190,-3748,-7155,-3621,-3037,-9723,-652,-784,-932,-6835,-958,-8339,-9724,-1001,-1110,-1654,-1889,-1979,-9695,-2125, +-9725,-2303,-2334,-2410,-2411,-9487], +[0,-1936,-9726,-3264,-9727,-6684], [1,3,4802], [0,4803,4804,4805,5], -[0,-5287,-1659,-3471,-457], -[0,-48,-5,-103,-1,-12,-115,-150,-55,-4,-555,-2,-83,-30], -[0,-31,-73,-940,-506,-255,-12032,-3796,-4986], +[0,-7713,-6585,-6584,-3223], +[0,-190,-3037,-3664,-932,-940,-965,-978,-1110,-1942,-2386,-2410,-2411,-2469], +[0,-3264,-3215,-8027,-6597,-5092,-9728,-3484,-9297], [1,3,4807], [0,4808,129,4809,6], -[0,-1173,-528,-5127,-1294,-12031], -[0,-105,-627], +[0,-828,-1370,-8441,-2255,-9729], +[0,-1334,-6324], [1,3,4811], [0,4812,4813,7,10], -[0,-1018,-4899,-1543], -[0,-205,-15,-12030,-60,-3,-16,-421,-800,-315,-279,-1295], +[0,-996,-9730,-1063], +[0,-2531,-1788,-9731,-510,-1654,-2177,-1003,-2228,-725,-516,-2229], [1,3,4815], [0,4816,4817,4818,5], -[0,-4898,-36], -[0,-162,-29,-5,-1578,-8,-57,-2,-604,-1953], -[0,-105,-604,-3281,-1609], +[0,-9732,-812], +[0,-3198,-3136,-3037,-511,-1415,-2375,-2410,-1971,-9056], +[0,-1334,-1971,-8484,-9733], [1,3,4820], [0,4821,4822,4823,4], -[0,-3700,-36,-614,-1154,-1152,-362], -[0,-49,-62,-48,-162,-359,-257,-12029,-29,-634,-5,-954,-454,-168,-1,-12,-25,-41,-499,-55,-9,-8,-18,-12028,-149,-1241,-1385, --4,-125,-57,-2,-83,-205], -[0,-5353,-604,-332,-105,-401,-223,-41,-1164,-2716,-1608,-1031,-32,-616,-881,-205,-383], +[0,-4623,-812,-1336,-1393,-1396,-1639], +[0,-86,-3307,-190,-3198,-3330,-3617,-9734,-3136,-4036,-3037,-4203,-4204,-617,-932,-940,-967,-1004,-1098,-1110,-1344,-1415, +-1534,-9735,-1805,-4916,-8436,-1942,-2293,-2375,-2410,-2411,-2531], +[0,-7302,-1971,-5401,-1334,-1342,-729,-1004,-1030,-3548,-9736,-632,-1168,-1137,-2512,-2531,-754], [1,3,4825], [0,4826,4827,4828,4], -[0,-1158,-261,-20,-12027,-12026,-608,-88,-2178,-1574,-614,-644,-12025,-3962], -[0,-4897,-85,-1,-41,-113,-12024], -[0,-37,-308,-856,-105,-401,-419,-12023,-209], +[0,-1297,-1640,-668,-9737,-9738,-1810,-1646,-2436,-579,-1336,-1888,-9739,-1319], +[0,-9740,-2319,-932,-1004,-2105,-9741], +[0,-687,-3957,-5142,-1334,-1342,-1339,-9742,-3844], [1,3,4830], [0,0,4831,4832,4], -[0,-171,-9,-3,-1,-82,-33,-4,-48,-1179,-2,-5,-18,-1977,-69,-12022,-49,-134,-12021,-83,-265,-12,-25,-62], -[0,-105,-223,-53,-2374,-41], +[0,-2391,-1344,-1654,-932,-2198,-2379,-1942,-190,-721,-2410,-3037,-1534,-7820,-3621,-9743,-86,-2251,-9744,-2411,-964,-940, +-967,-3307], +[0,-1334,-729,-3100,-9745,-1004], [1,3,4834], [0,0,4835,4836,8], -[0,-185,-29,-12020,-22,-19,-1,-1020,-10,-40,-8,-1137,-57,-796,-33,-2], -[0,-141,-105,-3345,-12019,-12018,-2374,-2048], +[0,-3048,-3136,-9746,-427,-428,-932,-935,-958,-1077,-1415,-1605,-2375,-2378,-2379,-2410], +[0,-3966,-1334,-7827,-9747,-9748,-9745,-5563], [1,3,4838], [0,0,0,4839,4], -[0,-401,-12017], +[0,-1342,-9749], [1,3,4841], [0,4842,4843,4844,4], -[0,-36,-4898], -[0,-8,-604,-57,-1953,-2,-29,-5,-1577,-162,-1578,-4896], -[0,-401,-604,-3281,-1609], +[0,-812,-9732], +[0,-1415,-1971,-2375,-9056,-2410,-3136,-3037,-512,-3198,-511,-9750], +[0,-1342,-1971,-8484,-9733], [1,3,4846], [0,0,0,4847,10], -[0,-387,-682,-235], +[0,-5889,-3322,-1939], [1,3,4849], [0,4850,31,4851,11], -[0,-2514,-2545,-71], -[0,-245,-105,-2721,-113,-1618,-4895,-12016,-775,-3171,-5035], +[0,-6829,-6372,-2347], +[0,-5827,-1334,-3443,-2105,-9052,-9751,-9752,-6693,-9753,-9024], [1,3,4853], [0,0,4854,4855,5], -[0,-296,-2126,-295,-1345,-1,-12,-12015,-4,-14,-120,-39], -[0,-12014,-225,-24,-446], +[0,-3470,-3842,-3471,-741,-932,-940,-9754,-1942,-2127,-2174,-2322], +[0,-9755,-5553,-775,-656], [1,3,4857], [0,0,84,4858,5], -[0,-3170,-3169,-4894,-247,-3168,-4893,-4892,-12013,-562,-3167,-2373,-4891,-4890,-4889], +[0,-9756,-9757,-9758,-2424,-9759,-9760,-9761,-9762,-1878,-9763,-9764,-9765,-9766,-9767], [1,3,4860], [0,4861,4862,4863,4], -[0,-12012,-36,-12011,-12010,-12009,-524], -[0,-60,-619,-1,-12,-84,-10,-76,-25,-67,-131,-41,-9,-18,-3,-15,-4,-82,-27,-259,-125], -[0,-271,-1157,-1938], +[0,-9768,-812,-9769,-9770,-9771,-1689], +[0,-510,-744,-932,-940,-943,-958,-966,-967,-968,-974,-1004,-1344,-1534,-1654,-1788,-1942,-2198,-2210,-2548,-2293], +[0,-3110,-1348,-9772], [1,3,4865], [0,39,4866,4867,5], -[0,-12008,-11,-3804,-391,-173,-480,-21,-136,-178,-203,-80,-63,-204,-5,-22,-19,-103,-833,-56,-618,-1,-191,-12,-251,-10, --4888,-9,-4887,-12007,-12006,-12005,-12004,-18,-4,-7,-14,-27,-2,-30], -[0,-1156,-1607,-1157,-3166,-2372,-1938,-3165,-12003], +[0,-9773,-23,-3395,-3204,-38,-39,-40,-41,-43,-3326,-350,-351,-3266,-3037,-427,-428,-3664,-571,-756,-757,-932,-934,-940, +-948,-958,-9774,-1344,-9775,-9776,-9777,-9778,-9779,-1534,-1942,-2125,-2127,-2210,-2410,-2469], +[0,-1349,-9780,-1348,-9781,-9782,-9772,-9783,-9784], [1,3,4869], [0,0,4870,4871,4], -[0,-48,-319,-296,-295,-22,-19,-1,-12,-25,-55,-4,-14,-415,-120,-2], -[0,-1156,-12002,-46,-107], +[0,-190,-3267,-3470,-3471,-427,-428,-932,-940,-967,-1110,-1942,-2127,-2132,-2174,-2410], +[0,-1349,-9785,-3445,-3862], [1,3,4873], [0,4874,4875,4876,4], -[0,-3164], -[0,-15,-60,-12001,-2371,-3,-4886,-1,-16,-113,-12000,-2,-5,-823,-791,-310,-309,-2626], -[0,-2371,-452,-2370,-11999], +[0,-9786], +[0,-1788,-510,-9787,-9788,-1654,-9789,-932,-2177,-2105,-9790,-2410,-3037,-1002,-2884,-2832,-3748,-5029], +[0,-9788,-5845,-9791,-9792], [1,3,4878], [0,4879,4880,4881,5], -[0,-11998], -[0,-169,-86,-328,-1187,-56,-1,-191,-10,-496], -[0,-604,-11997,-4885,-8,-307], +[0,-9793], +[0,-527,-533,-559,-562,-756,-932,-934,-958,-1417], +[0,-1971,-9794,-9795,-1415,-4215], [1,3,4883], [0,0,4884,4885,4], -[0,-50,-11,-21,-22,-36,-1,-11996,-10,-72,-11995,-7,-3163,-85,-156,-33,-2], -[0,-469,-11994,-3241,-275,-1388,-1202,-719,-1075,-948,-5022,-28,-11993,-11992], +[0,-21,-23,-40,-427,-812,-932,-9796,-958,-1650,-9797,-2125,-9798,-2319,-2359,-2379,-2410], +[0,-1353,-9799,-9100,-1777,-8199,-9800,-7724,-5570,-5569,-9094,-1107,-9801,-9802], [1,3,4887], [0,0,4888,4889,6], -[0,-43,-28,-171,-33,-124,-2,-458,-5,-320], -[0,-281,-1207,-11991,-3162,-2010,-5288,-2609,-3268,-5079,-1208,-5080,-11990,-5087,-5085,-1042,-5078,-579,-5086,-256, --11989,-4884,-2610], +[0,-652,-1107,-2391,-2379,-2402,-2410,-3036,-3037,-2581], +[0,-6527,-8799,-9803,-9804,-6730,-7710,-5316,-8653,-8740,-8642,-8715,-9805,-8654,-8685,-9235,-8761,-7715,-8656,-3839, +-9806,-9807,-5315], [1,3,4891], [0,4892,4893,4894,5], -[0,-4883,-5256,-285,-206,-4882,-1331,-782,-4881,-3271,-4979], -[0,-34,-51,-151,-372,-3356,-4961,-3355], -[0,-227,-541,-281,-1704,-1042,-1383,-579,-1208,-256], +[0,-9808,-7879,-2218,-1111,-9809,-1043,-5558,-9810,-8628,-9324], +[0,-2541,-519,-824,-2331,-7687,-9401,-7692], +[0,-1644,-6454,-6527,-5093,-9235,-8640,-7715,-8642,-3839], [1,3,4896], [0,4897,4898,4899,5], -[0,-4883,-118,-11988,-782,-11987,-3271], -[0,-43,-34,-51,-2,-5], -[0,-541,-281,-11986,-227,-580,-579,-11985], +[0,-9808,-999,-9811,-5558,-9812,-8628], +[0,-652,-2541,-519,-2410,-3037], +[0,-6454,-6527,-9813,-1644,-7175,-7715,-9814], [1,3,4901], [0,4902,0,4903,10], -[0,-11984,-197], -[0,-6420,-4902,-2461,-11983,-337], +[0,-9815,-2062], +[0,-1358,-9715,-7920,-9816,-3323], [1,3,4905], [0,0,4906,4907,9], -[0,-11,-5,-103,-56,-11982,-4880,-420,-9,-529,-11981,-23,-1139,-4,-441,-322,-7,-11980,-120,-171,-11979,-2,-104,-30], -[0,-529,-11978,-11977], +[0,-23,-3037,-3664,-756,-9817,-9818,-1059,-1344,-1361,-9819,-1548,-1552,-1942,-1952,-2074,-2125,-9820,-2174,-2391,-9821, +-2410,-2466,-2469], +[0,-1361,-9822,-9823], [1,3,4909], [0,0,4910,4911,8], -[0,-11976,-29,-56,-8,-7,-57,-196,-2], -[0,-11975], +[0,-9824,-3136,-756,-1415,-2125,-2375,-2388,-2410], +[0,-9825], [1,3,4913], [0,0,0,4914,4], -[0,-529,-3445,-3161,-450,-2479,-727,-1399,-11974,-2590,-3346], +[0,-1361,-6852,-9826,-6582,-7537,-5112,-7558,-9827,-5562,-7822], [1,3,4916], [0,186,4917,4918,5], -[0,-51,-3967,-81,-34], -[0,-407,-433,-5479,-5478,-358,-709,-11973], +[0,-519,-1298,-2384,-2541], +[0,-4792,-3324,-6690,-6691,-3551,-1072,-9828], [1,3,4920], [0,4921,4922,4923,6], -[0,-2197,-3550], -[0,-51,-2000,-151,-118,-34], -[0,-628,-1044,-407,-128,-918,-663,-11972,-37], +[0,-1871,-5915], +[0,-519,-6997,-824,-999,-2541], +[0,-6024,-8427,-4792,-2114,-1109,-9318,-9829,-687], [1,3,4925], [0,4926,4927,4928,5], -[0,-11971,-11970,-11969,-11968,-11967,-11966,-11965], -[0,-5,-454,-1,-11964,-4,-2], -[0,-1041,-209,-11963,-11962,-667,-2419,-2369,-99,-3360,-11961,-1234,-11960,-410,-1074,-111,-52,-434,-1937,-1936,-2036, --1073,-105,-401,-881,-2023,-1606,-300,-46,-2594], +[0,-9830,-9831,-9832,-9833,-9834,-9835,-9836], +[0,-3037,-4204,-932,-9837,-1942,-2410], +[0,-9668,-3844,-9838,-9839,-7107,-8897,-9840,-3690,-7586,-9841,-5196,-9842,-3691,-5728,-3578,-3161,-3122,-9843,-9844, +-6011,-5801,-1334,-1342,-2512,-6224,-9845,-3994,-3445,-5407], [1,3,4930], [0,0,14,4931,10], -[0,-2006,-163,-1646,-2368,-1063,-183,-1171,-4879], +[0,-6806,-2265,-7210,-9846,-6722,-5554,-885,-9847], [1,3,4933], [0,4934,4935,4936,8], -[0,-4929,-2254,-3186,-1841,-756,-442], -[0,-354,-2225,-1144], -[0,-126,-405,-3282,-2225,-107], +[0,-9551,-619,-9556,-1309,-1435,-1582], +[0,-707,-1277,-1510], +[0,-6656,-7421,-8481,-1277,-3862], [1,3,4938], [0,4939,4940,4941,6], -[0,-764,-2760,-2141], -[0,-3160,-11959], -[0,-2218,-542,-52,-2646,-3159,-31,-4878,-209,-255,-91,-14,-1940], +[0,-786,-2776,-3546], +[0,-9848,-9849], +[0,-1368,-6187,-3161,-4729,-9850,-3264,-9851,-3844,-5092,-4865,-2127,-9613], [1,3,4943], [0,0,4944,4945,4], -[0,-2,-30], -[0,-1155,-11958,-11957,-562,-3167,-4894,-247,-4877,-11956,-3168,-2373,-4893,-4891,-4890,-4889,-4892], +[0,-2410,-2469], +[0,-1369,-9852,-9853,-1878,-9763,-9758,-2424,-9854,-9855,-9759,-9764,-9760,-9765,-9766,-9767,-9761], [1,3,4947], [0,0,71,4948,10], -[0,-11955,-1980,-11954,-11953,-11952,-528,-91,-59], +[0,-9856,-7711,-9857,-9858,-9859,-1370,-4865,-633], [1,3,4950], [0,0,29,7,5], [1,3,4952], [0,4953,4954,4955,5], -[0,-11951,-929,-767,-11950,-20,-2901,-1876,-2247,-5611,-515,-817,-2436,-11949,-5546,-982,-891,-2798,-2652,-394,-11948, --210,-2754,-880,-205,-11947], -[0,-1412,-1071,-662,-1449,-5,-47,-11946,-11945,-4876,-269,-5861,-454,-11944,-51,-1348,-658,-4875,-64,-190,-567,-2835, --1125,-4,-6,-3158,-27,-138,-33,-2,-34], -[0,-6,-37,-866,-1262,-127,-294,-491,-322,-11943,-844,-135,-183], +[0,-9860,-480,-482,-9861,-668,-688,-690,-696,-5906,-3517,-1366,-8418,-9862,-6259,-2166,-2202,-2219,-4621,-2267,-9863, +-2400,-2820,-2528,-2531,-9864], +[0,-6486,-5918,-357,-3851,-3037,-3040,-9865,-9866,-9867,-4372,-4626,-4204,-9868,-519,-623,-826,-9869,-969,-970,-1681, +-1741,-1827,-1942,-2006,-9870,-2210,-2269,-2379,-2410,-2541], +[0,-2006,-687,-4146,-3973,-3098,-3958,-1940,-2074,-9871,-7650,-714,-5554], [1,3,4957], [0,0,4958,4959,11], -[0,-49,-62,-487,-283,-48,-80,-63,-204,-24,-1,-25,-859,-55,-9,-8,-18,-65,-4,-459,-14], -[0,-3955,-11942,-225,-73,-24], +[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-775,-932,-967,-4814,-1110,-1344,-1415,-1534,-1771,-1942,-2910,-2127], +[0,-1374,-9872,-5553,-3215,-775], [1,3,4961], [0,0,0,4962,6], -[0,-11941,-11940,-2465,-722,-1633,-253,-141,-37], +[0,-9873,-9874,-7864,-7084,-7856,-9219,-3966,-687], [1,3,4964], [0,4965,4966,63,4], -[0,-3747,-2277,-1257,-1767,-2680,-4874,-489], -[0,-3746,-2], +[0,-3947,-231,-4106,-2900,-3950,-9875,-2153], +[0,-3952,-2410], [1,3,4968], [0,4969,4970,4971,11], -[0,-929,-533,-164,-4874,-489], -[0,-420,-1848,-200], -[0,-2123,-2679,-1737,-1736,-37,-308,-294,-573,-336,-2678,-200,-1447,-2122,-45,-1263,-141,-335,-490,-2121,-397,-2120,-1301, --1446,-1262,-174,-431,-102,-958,-1776,-2119], +[0,-480,-1040,-1863,-9875,-2153], +[0,-1059,-1087,-1376], +[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-910,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966,-3967,-1965,-3968,-1966, +-3969,-2063,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], [1,3,4973], [0,4974,0,4975,8], -[0,-11939,-135], -[0,-11938,-141,-11937,-1935], +[0,-9876,-714], +[0,-9877,-3966,-9878,-9879], [1,3,4977], [0,0,4978,4979,6], -[0,-1561,-3,-4873,-175], -[0,-370,-407,-860,-11936,-91,-11935,-3341,-757], +[0,-849,-1654,-9880,-2334], +[0,-3209,-4792,-4791,-9881,-4865,-9882,-7857,-1380], [1,3,4981], [0,0,4982,4983,8], -[0,-1,-828,-76,-350,-101,-3,-15,-3279,-2189,-147,-11934,-272], -[0,-5007,-11933,-316,-1663,-339,-270,-106,-276,-866,-6,-11932,-884,-436,-2,-506,-259,-4872], +[0,-932,-937,-966,-1001,-1442,-1654,-1788,-8501,-2068,-2094,-9883,-2195], +[0,-9199,-9884,-711,-6505,-3184,-3756,-4055,-1460,-4146,-2006,-9885,-2362,-3018,-2410,-6597,-2548,-9886], [1,3,4985], [0,0,4986,4987,8], -[0,-60,-182,-94,-1350,-4871,-4870,-835,-620,-328,-4869,-447,-11931,-11930,-11929,-11928,-11927,-11926,-11925,-11924, --11923,-11922,-11921,-11920,-11919,-11918,-1566,-6508,-1,-11917,-1016,-28,-54,-167,-243,-532,-11916,-11915,-117,-72,-609, --7,-14,-273,-463,-11914,-5618,-893,-803,-3231,-396,-1782], -[0,-3953,-1157,-1607,-11913,-549], +[0,-510,-526,-528,-549,-9887,-9888,-551,-556,-559,-9889,-566,-9890,-9891,-9892,-9893,-9894,-9895,-9896,-9897,-9898,-9899, +-9900,-9901,-9902,-9903,-689,-704,-932,-9904,-1045,-1107,-1127,-1132,-1134,-1138,-9905,-9906,-1452,-1650,-1797,-2125, +-2127,-2128,-2131,-9907,-5860,-2138,-2143,-9266,-2187,-2493], +[0,-1382,-1348,-9780,-9908,-3582], [1,3,4989], [0,0,4990,4991,4], -[0,-2283,-2282,-2281,-2942,-4058,-391,-140,-357,-1582,-155,-317,-5,-47,-87,-22,-19,-949,-11912,-278,-425,-89,-1,-251,-10, --145,-64,-190,-1857,-11911,-3692,-11910,-54,-570,-167,-243,-616,-2230,-302,-11909,-2881,-821,-419,-8,-176,-249,-3941, --398,-4,-4868,-6,-35,-77,-689,-220,-1487,-33,-2,-104,-847,-74,-1424,-2771], -[0,-11908,-4867,-11907,-3157,-1605,-95,-336,-3184,-2129,-45,-107,-24,-31,-409,-584,-6,-74,-192,-220,-129,-2], +[0,-7,-8,-9,-10,-13,-3204,-42,-3983,-365,-407,-410,-3037,-3040,-3052,-427,-428,-4837,-9909,-535,-774,-928,-932,-948,-958, +-959,-969,-970,-1028,-9910,-4693,-9911,-1127,-1131,-1132,-1134,-1137,-1140,-1149,-9912,-1160,-1162,-1339,-1415,-1419, +-1437,-1541,-1874,-1942,-9913,-2006,-2019,-2162,-2193,-2299,-2351,-2379,-2410,-2466,-6859,-2476,-5627,-2567], +[0,-9914,-9915,-9916,-9917,-9918,-3162,-3962,-9567,-3823,-3214,-3862,-775,-3264,-3926,-5538,-2006,-2476,-475,-2299,-3095, +-2410], [1,3,4993], [0,220,4994,4995,5], -[0,-59,-420,-85], -[0,-75,-704], +[0,-633,-1059,-2319], +[0,-4004,-1384], [1,3,4997], [0,4998,4999,5000,6], -[0,-11906,-11905,-11904], -[0,-5,-103,-1,-4,-602,-7,-14,-211,-44,-2,-30], -[0,-5554,-11903,-1672,-11902,-11901,-45,-141,-2], +[0,-9919,-9920,-9921], +[0,-3037,-3664,-932,-1942,-2080,-2125,-2127,-2376,-2387,-2410,-2469], +[0,-6143,-9922,-6134,-9923,-9924,-3214,-3966,-2410], [1,3,5002], [0,5003,5004,221,5], -[0,-312,-207,-4866,-149,-123,-20,-36,-44,-23,-16,-889,-1458,-71,-4865,-688,-3156,-11900,-2367,-2388,-11899,-3155,-4864, --4863,-4862,-4861,-3154,-4860,-4859], -[0,-8,-7,-196,-57,-496,-1423,-130,-2,-1201,-29,-5,-11898,-680,-18,-162,-142,-137,-2366,-11897,-1976,-3721,-3153], +[0,-2323,-834,-9925,-1805,-2446,-668,-812,-2387,-1548,-2177,-2240,-3547,-2347,-9926,-2291,-9927,-9928,-9929,-9422,-9930, +-9931,-9932,-9933,-9934,-9935,-9936,-9937,-9938], +[0,-1415,-2125,-2388,-2375,-1417,-5673,-2231,-2410,-9939,-3136,-3037,-9940,-3738,-1534,-3198,-3044,-3199,-9941,-9942, +-7836,-4202,-9943], [1,3,5006], [0,5007,5008,5009,5], -[0,-5957], -[0,-357,-185,-29,-5,-3152,-40,-8,-496,-11894,-343,-4,-157,-7,-16,-801,-598,-153,-2], -[0,-11893,-1529,-741,-256,-95,-5097,-129,-4858,-973,-282], +[0,-3978], +[0,-3983,-3048,-3136,-3037,-9947,-1077,-1415,-1417,-9948,-1772,-1942,-1978,-2125,-2177,-2184,-2303,-2392,-2410], +[0,-9949,-1386,-3167,-3839,-3162,-8585,-3095,-9950,-3119,-5270], [1,3,5011], [0,5012,5013,5014,4], -[0,-11892,-11891,-36,-4857,-1827,-11890,-11889,-11888,-11887], -[0,-11886,-296,-845,-295,-109,-732,-162,-11885,-11884,-69,-5,-11883,-269,-22,-19,-13,-244,-1,-12,-3,-15,-4,-120,-1112,-27, --33,-81,-124,-2,-123], -[0,-690,-1936,-11882,-11881], +[0,-9951,-9952,-812,-9953,-1554,-9954,-9955,-9956,-9957], +[0,-9958,-3470,-7040,-3471,-3035,-4269,-3198,-9959,-9960,-3621,-3037,-9961,-4372,-427,-428,-664,-665,-932,-940,-1654, +-1788,-1942,-2174,-2188,-2210,-2379,-2384,-2402,-2410,-2446], +[0,-2071,-9844,-9962,-9963], [1,3,5016], [0,0,5017,7,8], -[0,-3,-1], +[0,-1654,-932], [1,3,5019], [0,5020,5021,7,5], -[0,-11880,-2371,-11879], -[0,-11878,-1332,-613,-39], +[0,-9964,-9788,-9965], +[0,-9966,-1032,-1445,-2322], [1,3,5023], [0,0,5024,5025,4], -[0,-766,-15,-39,-1,-2021,-213,-187,-239,-3492], -[0,-132,-540,-75], +[0,-515,-1788,-2322,-932,-6283,-1365,-2156,-5834,-6402], +[0,-2444,-8038,-4004], [1,3,5027], [0,5028,5029,184,9], -[0,-504], -[0,-1877,-97], +[0,-680], +[0,-686,-2250], [1,3,5031], [0,5032,88,5033,4], -[0,-11877], -[0,-1060,-2364,-280,-1045,-1630,-4856,-28,-1950,-4855,-651,-511,-2713,-947,-948,-3320,-163,-75], +[0,-9967], +[0,-6836,-9968,-7440,-8421,-8130,-9969,-1107,-9095,-9970,-1391,-5572,-3581,-5574,-5569,-8129,-2265,-4004], [1,3,5035], [0,5036,5037,5038,11], -[0,-11876,-1401], -[0,-51,-2000,-151,-118,-753,-81,-34], -[0,-918,-451,-11875,-358,-757,-11874,-158,-686,-651,-280,-668,-1044,-11873,-37,-1386,-773], +[0,-9971,-7408], +[0,-519,-6997,-824,-999,-1591,-2384,-2541], +[0,-1109,-5897,-9972,-3551,-1380,-9973,-1764,-2552,-1391,-7440,-6659,-8427,-9974,-687,-8425,-7304], [1,3,5040], [0,0,14,5041,6], -[0,-406,-651,-280,-75,-540,-3172,-1934,-4854,-631], +[0,-7208,-1391,-7440,-4004,-8038,-9716,-9975,-9976,-5493], [1,3,5043], [0,0,5044,5045,9], -[0,-13,-381,-707,-3,-1821,-14], -[0,-280,-651,-3151,-1835,-45,-4853,-1967,-406,-3172,-540,-2382,-853], +[0,-664,-985,-1202,-1654,-1655,-2127], +[0,-7440,-1391,-9977,-1403,-3214,-9978,-8493,-7208,-9716,-8038,-9571,-5846], [1,3,5047], [0,0,5048,5049,5], -[0,-3,-985], -[0,-31,-4858,-11872,-1706], +[0,-1654,-2081], +[0,-3264,-9950,-9979,-5065], [1,3,5051], [0,0,5052,5053,5], -[0,-5,-51,-372,-81,-34], -[0,-245,-540,-940,-4852,-1206,-3171,-507,-280,-668,-651], +[0,-3037,-519,-2331,-2384,-2541], +[0,-5827,-8038,-8027,-9980,-8800,-9753,-6408,-7440,-6659,-1391], [1,3,5055], [0,5056,222,5057,5], -[0,-4851], -[0,-280,-11871,-722,-11870,-1615,-668,-1060,-287,-194,-174,-651], +[0,-9981], +[0,-7440,-9983,-7084,-9984,-9261,-6659,-6836,-1958,-4000,-3974,-1391], [1,3,5059], [0,0,31,5060,11], -[0,-91,-1151,-670], +[0,-4865,-1402,-5839], [1,3,5062], [0,0,5063,5064,11], -[0,-381,-707,-3,-14], -[0,-280,-651,-3151,-1835,-4853,-1967,-11869,-484,-406,-540,-2382,-853], +[0,-985,-1202,-1654,-2127], +[0,-7440,-1391,-9977,-1403,-9978,-8493,-9985,-5269,-7208,-8038,-9571,-5846], [1,3,5066], [0,5067,5068,7,5], -[0,-188,-792], -[0,-13,-117,-11868,-3,-198], +[0,-1729,-2516], +[0,-664,-1452,-9986,-1654,-1722], [1,3,5070], [0,5071,5072,5073,4], -[0,-28,-466,-698,-60,-219,-2380,-72,-1168,-101,-128,-978,-2888,-250,-461], -[0,-117,-7,-699,-56,-416], -[0,-787,-11867,-11866,-11865], +[0,-1107,-1758,-1801,-510,-2518,-9632,-1650,-987,-1442,-2114,-2525,-931,-1276,-2297], +[0,-1452,-2125,-1754,-756,-2111], +[0,-4005,-9987,-9988,-9989], [1,3,5075], [0,5076,56,89,4], -[0,-1851,-123,-2463], +[0,-1078,-2446,-7885], [1,3,5078], [0,5079,5080,5081,5], -[0,-2264,-326,-6481,-11864,-1824,-3923,-1107,-11863], -[0,-11862,-182,-169,-2926,-98,-1889,-2261,-1576,-11861,-835,-1032,-3339,-268,-2924,-291,-13,-4850,-535,-26,-144,-1,-825, --919,-277,-3986,-32,-1844,-1009,-1325,-314,-1532,-346,-78,-139,-612,-189,-2469,-648,-702,-526,-222,-1143,-3257,-3,-27, --186,-154,-196,-2,-1105,-438,-74,-6289,-11860,-1103,-882,-2173,-1480,-17,-170,-519], -[0,-6416,-74,-2717,-129,-127,-102,-52], +[0,-513,-823,-896,-9990,-1571,-1887,-2355,-9991], +[0,-9992,-526,-527,-532,-534,-536,-544,-546,-9993,-551,-555,-7890,-558,-565,-567,-664,-9994,-748,-767,-778,-932,-980, +-1017,-1041,-1074,-1168,-1171,-1184,-1226,-1243,-1322,-1331,-1471,-1475,-1476,-1482,-7759,-1490,-1491,-1492,-1521,-1522, +-8936,-1654,-2210,-2211,-2275,-2388,-2410,-2417,-2437,-2476,-2479,-9995,-2481,-2483,-2484,-2485,-2501,-2505,-2508], +[0,-1407,-2476,-3527,-3095,-3098,-3160,-3161], [1,3,5083], [0,5084,156,5085,4], -[0,-6564], -[0,-1062,-73,-587,-854,-3184,-37,-308,-1063,-165,-723], +[0,-233], +[0,-6748,-3215,-4377,-5829,-9567,-687,-3957,-6722,-1838,-6747], [1,3,5087], [0,5088,5089,7,4], -[0,-11859,-576,-58,-11858,-11857,-72,-11856,-112,-3868,-11855], -[0,-11854,-11853,-56,-41,-11852,-11851,-11850,-11849,-11848,-11847,-4849,-4848,-4847,-11846,-4846,-4845,-11845,-11844, --228,-608,-11843,-7,-4844,-6153], +[0,-9996,-683,-719,-9997,-9998,-1650,-9999,-2416,-2595,-10000], +[0,-10001,-10002,-756,-1004,-10003,-10004,-10005,-10006,-10007,-10008,-10009,-10010,-10011,-10012,-10013,-10014,-10015, +-10016,-1610,-1810,-10017,-2125,-10018,-3013], [1,3,5091], [0,5092,5093,5094,5], -[0,-60,-11842,-164], -[0,-48,-1,-5847,-55,-3,-522], -[0,-666,-37,-1379,-11841], +[0,-510,-10019,-1863], +[0,-190,-932,-4719,-1110,-1654,-1980], +[0,-7641,-687,-9218,-10020], [1,3,5096], [0,5097,5098,5099,4], -[0,-11840], -[0,-203,-63,-232,-204,-1711,-2363,-11839,-576,-26,-11838,-9,-249,-11837,-18,-362,-11836,-14,-870,-1956], -[0,-11835,-281,-1235,-4843,-11834,-5088], +[0,-10021], +[0,-3326,-351,-3561,-3266,-4964,-10022,-10023,-683,-767,-10024,-1344,-1437,-10025,-1534,-1639,-10026,-2127,-4063,-8896], +[0,-10027,-6527,-5182,-10028,-10029,-8636], [1,3,5101], [0,5102,5103,223,6], -[0,-28,-378,-11833], -[0,-1,-4842], +[0,-1107,-1413,-10030], +[0,-932,-10031], [1,3,5105], [0,0,5106,223,5], -[0,-283,-48,-928,-11832,-351,-1,-923,-28,-55,-79,-4,-77], +[0,-3244,-190,-501,-10032,-888,-932,-952,-1107,-1110,-1449,-1942,-2162], [1,3,5108], [0,5109,0,5110,5], -[0,-1847,-72,-11831,-416,-247,-316,-3149,-11830], -[0,-61,-591], +[0,-1088,-1650,-10033,-2111,-2424,-711,-10034,-10035], +[0,-3634,-3440], [1,3,5112], [0,5113,0,107,4], -[0,-4049,-715,-1839,-496], +[0,-236,-237,-1363,-1417], [1,3,5115], [0,5116,5117,5118,6], -[0,-11829,-11828], -[0,-5547,-50,-11,-216,-21,-49,-937,-86,-11827,-56,-9,-8,-4], -[0,-307,-8,-1432,-3996,-327,-75,-388], +[0,-10036,-10037], +[0,-6256,-21,-23,-26,-40,-86,-9404,-533,-10038,-756,-1344,-1415,-1942], +[0,-4215,-1415,-5129,-886,-659,-4004,-5119], [1,3,5120], [0,5121,5122,107,6], -[0,-4049,-3741,-715,-20,-5949,-1839,-3740,-912,-2674,-96], -[0,-413], +[0,-236,-4019,-237,-668,-4021,-1363,-4023,-1427,-4031,-2550], +[0,-3041], [1,3,5124], [0,5125,224,7,6], -[0,-11826,-5130,-20,-695], +[0,-10039,-8434,-668,-1950], [1,3,5127], [0,5128,224,7,5], -[0,-3148,-3147,-586,-5,-79], +[0,-10040,-10041,-4647,-3037,-1449], [1,3,5130], [0,5131,5132,7,4], -[0,-3148,-4841,-715,-1432,-912,-79], -[0,-29,-586,-5,-9,-8,-72,-4,-441,-7,-57,-2], +[0,-10040,-10042,-237,-5129,-1427,-1449], +[0,-3136,-4647,-3037,-1344,-1415,-1650,-1942,-1952,-2125,-2375,-2410], [1,3,5134], [0,5135,5136,7,9], -[0,-3148,-4841,-715,-5,-1432,-912,-2674], -[0,-2115,-304], +[0,-10040,-10042,-237,-3037,-5129,-1427,-4031], +[0,-4034,-703], [1,3,5138], [0,5139,5140,5141,5], -[0,-913], -[0,-366,-487,-283,-48,-5131,-29,-22,-19,-1,-12,-251,-10,-145,-25,-55,-9,-8,-4840,-1149,-18,-4,-57,-3639,-2], -[0,-8,-11825,-444,-11824,-75,-61,-3475], +[0,-1418], +[0,-50,-3615,-3244,-190,-8433,-3136,-427,-428,-932,-940,-948,-958,-959,-967,-1110,-1344,-1415,-10043,-1428,-1534,-1942, +-2375,-5232,-2410], +[0,-1415,-10044,-1015,-10045,-4004,-3634,-6538], [1,3,5143], [0,5144,5145,5146,4], -[0,-40,-149], -[0,-11,-2161,-2271,-155,-122,-317,-2362,-29,-11823,-5,-11822,-47,-87,-2557,-1034,-86,-98,-4027,-1885,-2917,-305,-446, --1879,-832,-144,-1343,-298,-215,-1024,-501,-1,-1336,-3146,-919,-277,-40,-346,-1005,-8,-1832,-1149,-11821,-377,-2201,-38, --1504,-492,-3919,-805,-397,-11820,-6,-2818,-1302,-35,-692,-6261,-128,-2807,-77,-462,-16,-890, --154,-557,-392,-2,-438,-3145,-17,-520,-170,-2772,-3873], -[0,-8,-31,-946,-2397,-107], +[0,-1077,-1805], +[0,-23,-2695,-366,-407,-409,-410,-10046,-3136,-10047,-3037,-10048,-3040,-3052,-6192,-485,-533,-534,-542,-561,-594,-635, +-656,-661,-747,-778,-779,-796,-865,-866,-929,-932,-941,-10049,-1017,-1041,-1077,-1331,-1352,-1415,-1426,-1428,-10050, +-1643,-1762,-1889,-1903,-1908,-1918,-1927,-1966,-10051,-2006,-2010,-2015,-2019,-2041,-2643,-2114,-2116,-2162,-2163,-2177, +-2233, +-2275,-2318,-2335,-2410,-2437,-10052,-2501,-2502,-2505,-2507,-2526], +[0,-1415,-3264,-6863,-9246,-3862], [1,3,5148], [0,5149,5150,7,4], -[0,-72,-138,-123,-506], -[0,-8,-11819,-285], +[0,-1650,-2269,-2446,-6597], +[0,-1415,-10053,-2218], [1,3,5152], [0,0,0,5153,5], -[0,-8,-686,-3144,-3143], +[0,-1415,-2552,-10054,-10055], [1,3,5155], [0,5156,5157,7,6], -[0,-20,-325,-5948,-3950,-912,-2674,-285,-5183], -[0,-872,-195], +[0,-668,-1119,-4024,-1425,-1427,-4031,-2218,-8204], +[0,-4035,-2435], [1,3,5159], [0,5160,5161,7,8], -[0,-715,-5,-20,-504,-325,-323], -[0,-872,-623,-23], +[0,-237,-3037,-668,-680,-1119,-1864], +[0,-4035,-8523,-1548], [1,3,5163], [0,5164,5165,7,5], -[0,-929,-20,-5946,-5945,-285,-2523,-138], -[0,-50,-11,-21,-140,-48,-1239,-715,-296,-295,-5,-86,-4839,-26,-1,-12,-251,-1626,-145,-25,-55,-8,-4840,-4,-7,-120,-16,-2, --83], +[0,-480,-668,-4026,-4032,-2218,-6715,-2269], +[0,-21,-23,-40,-42,-190,-5121,-237,-3470,-3471,-3037,-533,-10056,-767,-932,-940,-948,-8339,-959,-967,-1110,-1415,-10043, +-1942,-2125,-2174,-2177,-2410,-2411], [1,3,5167], [0,5168,5169,7,6], -[0,-5,-1377,-912,-1132,-461], -[0,-11,-11818,-2655,-1612,-498,-11817,-4838], +[0,-3037,-9581,-1427,-1632,-2297], +[0,-23,-10057,-4373,-9586,-1100,-10058,-10059], [1,3,5171], [0,5172,5173,5174,4], -[0,-11816,-11815,-11814,-11813,-11812,-11811,-11810,-11809,-11808,-11807,-11806,-11805,-11804,-11803,-11802,-11801,-11800, --11799,-11798,-11797,-11796,-11795,-11794,-11793,-11792,-11791,-11790], -[0,-11789,-11788,-11787,-11786,-513,-80,-2530,-63,-204,-1079,-1,-11785,-697,-14,-415,-1223,-2377,-555,-2,-4837,-30], -[0,-281,-11784,-11783,-579,-1383,-1042,-3268,-1933,-2500,-2501], +[0,-10060,-10061,-10062,-10063,-10064,-10065,-10066,-10067,-10068,-10069,-10070,-10071,-10072,-10073,-10074,-10075,-10076, +-10077,-10078,-10079,-10080,-10081,-10082,-10083,-10084,-10085,-10086], +[0,-10087,-10088,-10089,-10090,-4066,-350,-6572,-351,-3266,-5286,-932,-10091,-1848,-2127,-2132,-6483,-9701,-2386,-2410, +-10092,-2469], +[0,-6527,-10093,-10094,-7715,-8640,-9235,-8653,-10095,-7069,-7066], [1,3,5176], [0,0,5177,7,6], -[0,-11,-1097,-6124,-770,-11782,-622,-3561,-2146,-974,-3806,-1273,-1095,-140,-3825,-577,-479,-4836,-2361,-729,-5835,-11781, --3142,-2360,-5,-103,-208,-11780,-1567,-353,-1346,-1653,-11779,-424,-1,-1552,-824,-922,-229,-1837,-261,-1518,-907,-11778, --606,-1660,-491,-3141,-4,-6,-35,-602,-4835,-1411,-392,-1093,-211,-2,-30,-74,-3287,-258], +[0,-23,-3341,-3196,-24,-10096,-33,-5828,-3367,-3077,-3389,-3408,-3412,-42,-3193,-46,-47,-10097,-10098,-4776,-4777,-10099, +-10100,-10101,-3037,-3664,-461,-10102,-672,-727,-734,-6860,-10103,-930,-932,-944,-989,-990,-1026,-1394,-1640,-1651,-1667, +-10104,-1852,-6568,-1940,-10105,-1942,-2006,-2019,-2080,-10106,-6570,-2335,-3535,-2376,-2410,-2469,-2476,-8416,-2564], [1,3,5179], [0,0,0,5180,6], -[0,-789,-11777,-11776,-875,-3140,-3139,-31,-183,-412,-3138,-45,-2,-11775,-2867], +[0,-3494,-10107,-10108,-3495,-10109,-10110,-3264,-5554,-3496,-10111,-3214,-2410,-10112,-1432], [1,3,5182], [0,5183,5184,5185,4], -[0,-2867], -[0,-487,-1998,-252,-330,-122,-317,-47,-87,-22,-19,-26,-144,-1,-12,-25,-64,-190,-2233,-346,-79,-4,-6,-35,-1046,-154,-6010, --33,-171,-2,-30,-17,-92,-170], -[0,-6,-2867,-31,-183,-412,-11774,-3140,-3139,-3137], +[0,-1432], +[0,-3615,-7155,-367,-406,-409,-410,-3040,-3052,-427,-428,-767,-778,-932,-940,-967,-969,-970,-979,-1331,-1449,-1942,-2006, +-2019,-8276,-2275,-3752,-2379,-2391,-2410,-2469,-2501,-2503,-2505], +[0,-2006,-1432,-3264,-5554,-3496,-10113,-10109,-10110,-10114], [1,3,5187], [0,5188,5189,5190,4], -[0,-20,-4834,-11773,-11772,-2804,-2142,-2209,-1139,-11771], -[0,-15,-60,-54,-27,-565,-56,-167,-5466,-1326,-473,-11770,-302,-177,-365], -[0,-11769,-11768,-11767,-11766,-11765,-11764,-11763,-11762,-11761,-11760,-11759,-11758,-11757,-11756,-11755,-11754,-11753, --11752,-11751,-11750,-11749,-11748,-11747,-11746,-11745,-11744,-11743,-11742,-11741,-4834,-11740,-11739,-11738,-11737, --11736,-11735,-11734,-11733,-11732,-11731,-11730,-11729,-11728,-11727,-11726,-11725,-11724,-11723,-11722,-11721,-11720, --11719,-11718,-11717,-11716,-11715,-11714,-11713,-11712,-11711,-11710,-4833,-4833, --11709,-11708,-11707,-11706,-11705,-11704,-11703,-11702,-11701,-11700,-11699,-11698,-11697,-11696,-11695,-11694,-11693, --11692,-11691,-11690,-11689,-11688,-11687,-11686,-11685,-11684,-11683,-1431,-11682,-11681,-11680,-11679,-11678,-11677, --11676,-11675,-11674,-11673,-11672,-4832,-4832,-11671,-11670,-11669,-11668,-11667,-4831,-4830,-2359,-2804,-11666,-11665, --11664,-11663,-11662,-11661,-11660,-11659,-11658,-11657,-11656,-11655,-11654,-11653, --11652,-11651,-11650,-4829,-11649,-11648,-11647], +[0,-668,-10115,-10116,-10117,-2183,-3523,-1553,-1552,-10118], +[0,-1788,-510,-1127,-2210,-1813,-756,-1132,-6758,-1153,-722,-10119,-1149,-1144,-1146], +[0,-10120,-10121,-10122,-10123,-10124,-10125,-10126,-10127,-10128,-10129,-10130,-10131,-10132,-10133,-10134,-10135,-10136, +-10137,-10138,-10139,-10140,-10141,-10142,-10143,-10144,-10145,-10146,-10147,-10148,-10115,-10149,-10150,-10151,-10152, +-10153,-10154,-10155,-10156,-10157,-10158,-10159,-10160,-10161,-10162,-10163,-10164,-10165,-10166,-10167,-10168,-10169, +-10170,-10171,-10172,-10173,-10174,-10175,-10176,-10177,-10178,-10179,-10180,-10180, +-10181,-10182,-10183,-10184,-10185,-10186,-10187,-10188,-10189,-10190,-10191,-10192,-10193,-10194,-10195,-10196,-10197, +-10198,-10199,-10200,-10201,-10202,-10203,-10204,-10205,-10206,-10207,-5158,-10208,-10209,-10210,-10211,-10212,-10213, +-10214,-10215,-10216,-10217,-10218,-10219,-10219,-10220,-10221,-10222,-10223,-10224,-10225,-10226,-10227,-2183,-10228, +-10229,-10230,-10231,-10232,-10233,-10234,-10235,-10236,-10237,-10238,-10239,-10240,-10241, +-10242,-10243,-10244,-10245,-10246,-10247,-10248], [1,3,5192], [0,5193,5194,5195,4], -[0,-11646,-11645,-5975,-11644,-11643,-5974,-1762], -[0,-5012,-3755,-5973,-3754,-5,-2], -[0,-318,-409], +[0,-10249,-10250,-3880,-10251,-10252,-3888,-3117], +[0,-9163,-3890,-3891,-3893,-3037,-2410], +[0,-4058,-3926], [1,3,5197], [0,0,0,5198,5], -[0,-6,-1255,-1202,-1721,-11642,-952], +[0,-2006,-4125,-9800,-4633,-10253,-4634], [1,3,5200], [0,0,0,5201,10], -[0,-249,-45,-91,-369], +[0,-1437,-3214,-4865,-3482], [1,3,5203], [0,5204,5205,7,4], -[0,-249], -[0,-54,-7,-55,-252,-11641,-4828,-531,-11640,-345,-4827,-3136,-11639,-4826,-656,-6455,-4930], +[0,-1437], +[0,-1127,-2125,-1110,-367,-10254,-10255,-1152,-10256,-1542,-10257,-10258,-10259,-10260,-1136,-1139,-9550], [1,3,5207], [0,0,5208,5209,11], -[0,-5,-3,-2], -[0,-2031,-773], +[0,-3037,-1654,-2410], +[0,-6118,-7304], [1,3,5211], [0,5212,5213,5214,4], -[0,-11638,-1634,-28,-2866,-466], -[0,-1190,-110,-1181,-249,-117,-88,-3,-524,-416,-801,-138,-17,-92], -[0,-3518,-11637,-11636], +[0,-10261,-7829,-1107,-1441,-1758], +[0,-481,-589,-709,-1437,-1452,-1646,-1654,-1689,-2111,-2184,-2269,-2501,-2503], +[0,-6146,-10262,-10263], [1,3,5216], [0,0,5217,5218,4], -[0,-204,-1,-84,-763,-214,-54,-3136,-616,-365,-2383,-302,-3135,-4825,-4,-375,-373,-14,-2619,-894,-97], -[0,-352,-1652,-91,-11635,-860,-337,-2866,-59], +[0,-3266,-932,-943,-957,-963,-1127,-10258,-1137,-1146,-9544,-1149,-10264,-10265,-1942,-1989,-2091,-2127,-5090,-2134,-2250], +[0,-743,-6920,-4865,-10266,-4791,-3323,-1441,-633], [1,3,5220], [0,5221,5222,5223,8], -[0,-1353], -[0,-15,-240,-3,-1,-14,-272,-348,-110,-1181,-1333,-226,-80,-63,-4824], -[0,-259,-73,-2670,-11634], +[0,-503], +[0,-1788,-5514,-1654,-932,-2127,-2195,-1103,-589,-709,-1023,-2140,-350,-351,-10267], +[0,-2548,-3215,-4142,-10268], [1,3,5225], [0,5226,5227,5228,10], -[0,-427,-2611,-58,-36,-1869,-28,-11633,-3134,-1496,-11632], -[0,-48,-1733,-252,-957,-1057,-5,-503,-404,-298,-1,-12,-145,-25,-8,-815,-4966,-4965,-4,-7,-2,-83], -[0,-11631,-42], +[0,-25,-5223,-719,-812,-822,-1107,-10269,-10270,-2001,-10271], +[0,-190,-4010,-367,-4007,-7043,-3037,-720,-740,-796,-932,-940,-959,-967,-1415,-1448,-9390,-9393,-1942,-2125,-2410,-2411], +[0,-10272,-856], [1,3,5230], [0,5231,5232,7,4], -[0,-135,-58,-40,-11630,-11629,-11628,-11627,-11626,-11625,-11624], -[0,-2056,-185,-5,-103,-288,-33,-171,-2,-30], +[0,-714,-719,-1077,-10273,-10274,-10275,-10276,-10277,-10278,-10279], +[0,-5325,-3048,-3037,-3664,-1753,-2379,-2391,-2410,-2469], [1,3,5234], [0,5235,5236,5237,6], -[0,-20,-1029,-58,-4823,-1167,-921,-28,-497,-101,-11623,-11622,-2528,-23,-93,-2059,-5496,-490,-4822,-128,-1293,-599,-11621, --11620,-5000,-11619,-1283], -[0,-13,-56,-2711,-117,-3,-985,-1494,-27,-186,-11618,-11617,-551], -[0,-1048,-1254,-217,-539,-2639,-509], +[0,-668,-693,-719,-10280,-988,-1000,-1107,-1333,-1442,-10281,-10282,-6611,-1548,-1645,-5199,-6533,-1965,-10283,-2114, +-2270,-2271,-10284,-10285,-9247,-10286,-2538], +[0,-664,-756,-3607,-1452,-1654,-2081,-2123,-2210,-2211,-10287,-10288,-2536], +[0,-8172,-4144,-7148,-8170,-4901,-5874], [1,3,5239], [0,5240,5241,5242,4], -[0,-427,-11616,-874,-116,-11615,-424,-11614,-3250,-221,-998,-228,-72,-11613,-599,-247], -[0,-193,-32,-530,-6440,-15], -[0,-42,-45], +[0,-25,-10289,-3661,-615,-10290,-930,-10291,-8985,-1600,-1601,-1610,-1650,-10292,-2271,-2424], +[0,-469,-1168,-1197,-1225,-1788], +[0,-856,-3214], [1,3,5244], [0,5245,0,5246,4], -[0,-1408,-5316,-2358,-5315,-166,-11612,-1984], -[0,-166,-99,-2585,-1447,-45,-42], +[0,-6789,-7573,-10293,-7575,-1446,-10294,-7576], +[0,-1446,-3690,-5731,-3964,-3214,-856], [1,3,5248], [0,5249,0,5250,5], -[0,-1408,-2899,-2898,-11611,-4005,-6413,-6273,-1984], -[0,-166,-100,-99,-114,-45,-270,-42], +[0,-6789,-717,-718,-10295,-843,-1447,-2576,-7576], +[0,-1446,-1599,-3690,-3262,-3214,-3756,-856], [1,3,5252], [0,5253,5254,225,5], -[0,-11610,-11609,-11608,-4906,-4009,-11607,-3133,-3962,-2871,-759,-6417,-607,-4821,-11606,-1106,-284,-11605,-11604,-2529, --11603,-3293], -[0,-3419,-1,-763,-115,-55,-101,-93,-3,-11602,-343,-608,-806,-16,-1112,-1108,-11601,-11600], +[0,-10296,-10297,-10298,-9683,-785,-10299,-10300,-1319,-1337,-1343,-1397,-1839,-10301,-10302,-2364,-2426,-10303,-10304, +-6587,-10305,-8352], +[0,-7196,-932,-957,-965,-1110,-1442,-1645,-1654,-10306,-1772,-1810,-1880,-2177,-2188,-2354,-10307,-10308], [1,3,5256], [0,5257,5258,225,5], -[0,-11599,-3132,-4009,-497,-11598,-607,-113,-3293,-2170], -[0,-59,-135,-419,-117,-1656,-699,-644,-522,-4820,-1782], +[0,-10309,-10310,-785,-1333,-10311,-1839,-2105,-8352,-2540], +[0,-633,-714,-1339,-1452,-6810,-1754,-1888,-1980,-10312,-2493], [1,3,5260], [0,0,5261,5262,4], -[0,-56,-54,-167,-2032,-66,-3,-985,-416,-11597], -[0,-299,-482,-45,-106,-774,-2456,-163,-429,-589], +[0,-756,-1127,-1132,-6114,-1405,-1654,-2081,-2111,-10313], +[0,-640,-5559,-3214,-4055,-6917,-8127,-2265,-6231,-3673], [1,3,5264], [0,5265,5266,7,8], -[0,-37,-5525,-921,-497,-23,-93,-599], -[0,-60,-59,-575,-2035,-56,-66,-613,-1516,-699,-157,-985,-11596,-27,-5518,-11595,-11594], +[0,-687,-6392,-1000,-1333,-1548,-1645,-2271], +[0,-510,-633,-739,-6019,-756,-1405,-1445,-1661,-1754,-1978,-2081,-10314,-2210,-6430,-10315,-10316], [1,3,5268], [0,5269,226,5270,5], -[0,-20,-647,-990,-2523,-885,-3202], -[0,-117,-946,-1254,-550,-217,-509,-4819,-5444,-637], +[0,-668,-1574,-1877,-6715,-2343,-9493], +[0,-1452,-6863,-4144,-3276,-7148,-5874,-10317,-6864,-3240], [1,3,5272], [0,5273,5274,5275,4], -[0,-11593,-11592], -[0,-69,-5,-22,-19,-1,-2236,-10,-3,-15,-33,-2], -[0,-106,-11591,-831,-1413,-1628,-11590,-11589,-165,-73,-6412,-11588,-37], +[0,-10318,-10319], +[0,-3621,-3037,-427,-428,-932,-936,-958,-1654,-1788,-2379,-2410], +[0,-4055,-10320,-788,-6473,-8257,-10321,-10322,-1838,-3215,-1454,-10323,-687], [1,3,5277], [0,0,5278,7,8], -[0,-134], +[0,-2251], [1,3,5280], [0,0,0,5281,9], -[0,-106,-318], +[0,-4055,-4058], [1,3,5283], [0,5284,5285,5286,4], -[0,-2270,-6545,-6248,-20,-119,-2132,-2510,-1155,-276,-3940,-11587,-748,-4818], -[0,-5,-289,-499,-9,-2157,-1393,-372,-210,-2], -[0,-1253,-209,-1619,-1740,-1087,-11586,-307,-2673,-75,-61,-410,-450,-4817], +[0,-411,-414,-2702,-668,-679,-3780,-6869,-1369,-1460,-1581,-10324,-2213,-10325], +[0,-3037,-726,-1098,-1344,-2987,-8065,-2331,-2400,-2410], +[0,-4182,-3844,-8959,-3817,-3816,-10326,-4215,-4041,-4004,-3634,-3691,-6582,-10327], [1,3,5288], [0,5289,5290,5291,10], -[0,-1030,-1662,-1151,-5314,-1508], -[0,-310,-239,-1392,-5217,-3321,-11585,-664,-279,-510,-1,-213,-275,-187,-39], -[0,-106,-429,-11584,-1419,-1645,-3131], +[0,-655,-6511,-1402,-7584,-1795], +[0,-2832,-5834,-8084,-8086,-8090,-10328,-8096,-516,-5835,-932,-1365,-1777,-2156,-2322], +[0,-4055,-6231,-10329,-6131,-7283,-10330], [1,3,5293], [0,0,0,5294,5], -[0,-106,-429,-11583,-1376], +[0,-4055,-6231,-10331,-9594], [1,3,5296], [0,0,5297,5298,11], -[0,-159,-1,-84,-10,-76,-67,-131,-65,-985,-14,-984,-463,-341,-226,-27,-85,-11582], -[0,-106,-276,-1050,-430,-338], +[0,-753,-932,-943,-958,-966,-968,-974,-1771,-2081,-2127,-2129,-2131,-2137,-2140,-2210,-2319,-10332], +[0,-4055,-1460,-8108,-4795,-3217], [1,3,5300], [0,0,5301,7,4], -[0,-3,-1,-7,-2,-5,-69,-19,-22], +[0,-1654,-932,-2125,-2410,-3037,-3621,-428,-427], [1,3,5303], [0,5304,206,5305,4], -[0,-3251], -[0,-603,-1669,-126,-106,-303,-40], +[0,-8984], +[0,-2059,-6234,-6656,-4055,-1076,-1077], [1,3,5307], [0,0,5308,5309,5], -[0,-3430,-11581,-13,-1,-11580,-3], -[0,-106,-318,-814,-437,-409], +[0,-7055,-10333,-664,-932,-10334,-1654], +[0,-4055,-4058,-1463,-2451,-3926], [1,3,5311], [0,5312,5313,5314,5], -[0,-460,-4816], -[0,-39,-2438,-4815,-844,-3475,-423], -[0,-106,-245,-1613,-73,-60,-723], +[0,-2346,-10335], +[0,-2322,-8392,-10336,-7650,-6538,-994], +[0,-4055,-5827,-9292,-3215,-510,-6747], [1,3,5316], [0,5317,5318,5319,8], -[0,-567,-11579,-16,-11578,-11577,-11576,-6398,-11575,-11574,-6399], -[0,-2833,-15,-2927,-13,-3,-27,-1,-575], -[0,-1465], +[0,-1681,-10337,-2177,-10338,-10339,-10340,-1563,-10341,-10342,-1562], +[0,-1780,-1788,-514,-664,-1654,-2210,-932,-739], +[0,-3175], [1,3,5321], [0,5322,5323,7,5], -[0,-11,-11573,-11572,-324,-164], -[0,-3578,-5,-11571,-925,-89,-1,-12,-261,-93,-149,-4,-14,-2778,-2], +[0,-23,-10343,-10344,-1816,-1863], +[0,-5694,-3037,-10345,-653,-928,-932,-940,-1640,-1645,-1805,-1942,-2127,-2358,-2410], [1,3,5325], [0,0,5326,5327,4], -[0,-5,-103,-1385,-171,-2,-30], -[0,-1255,-335,-46,-11570,-6,-484,-111,-234,-3831], +[0,-3037,-3664,-8436,-2391,-2410,-2469], +[0,-4125,-3967,-3445,-10346,-2006,-5269,-3578,-2034,-3138], [1,3,5329], [0,5330,5331,5332,6], -[0,-3130,-1810,-1962,-197], -[0,-156,-54,-375,-1,-110,-167,-59,-398,-2,-419,-11569,-1012,-347,-11568], -[0,-855,-2516,-4814], +[0,-10347,-1834,-8578,-2062], +[0,-2359,-1127,-1989,-932,-589,-1132,-633,-1874,-2410,-1339,-10348,-1130,-1148,-10349], +[0,-5408,-6827,-10350], [1,3,5334], [0,0,5335,5336,6], -[0,-395,-8,-9,-1,-459,-57,-33,-4,-2,-11,-18,-1031,-289,-10,-12,-25,-176,-19,-22,-251], -[0,-1465,-91], +[0,-2200,-1415,-1344,-932,-2910,-2375,-2379,-1942,-2410,-23,-1534,-632,-726,-958,-940,-967,-1419,-428,-427,-948], +[0,-3175,-4865], [1,3,5338], [0,0,5339,5340,4], -[0,-421,-66,-3], -[0,-1465,-777,-1416], +[0,-1003,-1405,-1654], +[0,-3175,-6422,-6420], [1,3,5342], [0,5343,5344,5345,6], -[0,-1672,-156,-28,-261,-11567,-96,-2364,-23,-2208,-72,-7,-223,-119,-93,-800,-614,-130,-168,-325,-5690,-1121,-1101,-11566, --1228], -[0,-13,-1422,-3,-1405,-27,-219,-1,-1874,-744,-157,-125,-59,-703,-180,-186,-11565,-2250,-189,-378,-400,-49,-244,-910,-120, --76,-10,-4813,-418,-295,-67,-139,-4812,-84,-131,-212,-937,-296,-1527], -[0,-78,-11564,-456,-78,-270,-45,-61,-75,-2415,-11563], +[0,-6134,-2359,-1107,-1640,-10351,-2550,-9968,-1548,-1576,-1650,-2125,-729,-679,-1645,-2228,-1336,-2231,-617,-1119,-5506, +-1997,-2594,-10352,-5758], +[0,-664,-5735,-1654,-7243,-2210,-2518,-932,-793,-2491,-1978,-2293,-633,-1474,-1972,-2211,-10353,-667,-1482,-1413,-1481, +-86,-665,-1472,-2174,-966,-958,-10354,-1483,-3471,-968,-1475,-10355,-943,-974,-1479,-9404,-3470,-1473], +[0,-1471,-10356,-4043,-1471,-3756,-3214,-3634,-4004,-8908,-10357], [1,3,5347], [0,5348,5349,5350,6], -[0,-4811,-23,-11562,-93,-5226,-472], -[0,-417,-1572,-13,-78,-3,-27,-414,-3590,-1,-128,-744,-59,-186,-2,-65,-378,-400,-3493,-265,-139], -[0,-449,-2357,-4810,-59], +[0,-10358,-1548,-10359,-1645,-8016,-742], +[0,-1763,-627,-664,-1471,-1654,-2210,-2363,-5482,-932,-2114,-2491,-633,-2211,-2410,-1771,-1413,-1481,-6399,-964,-1475], +[0,-10360,-10361,-10362,-633], [1,3,5352], [0,5353,5354,5355,4], -[0,-522,-1775,-4809], -[0,-54,-1,-655,-570,-531,-345,-76,-1541,-10,-67,-84,-131,-1163,-1540], -[0,-449,-1039,-1775,-11561], +[0,-1980,-2734,-10363], +[0,-1127,-932,-1159,-1131,-1152,-1542,-966,-1129,-958,-968,-943,-974,-1150,-1151], +[0,-10360,-10364,-2734,-10365], [1,3,5357], [0,0,0,5358,4], -[0,-78,-449,-13,-3,-82], +[0,-1471,-10360,-664,-1654,-2198], [1,3,5360], [0,227,5361,5362,9], -[0,-13,-78,-3,-27,-97,-189,-49,-120,-295,-937,-296], -[0,-449,-1039,-1373], +[0,-664,-1471,-1654,-2210,-2250,-1482,-86,-2174,-3471,-9404,-3470], +[0,-10360,-10364,-10366], [1,3,5364], [0,5365,5366,5367,5], -[0,-2080,-3532,-1705,-2620,-2079,-93], -[0,-49,-62,-4999,-296,-295,-582,-13,-316,-1,-84,-10,-76,-67,-131,-54,-167,-1011,-655,-9,-11560,-78,-11559,-212,-189, --11558,-3,-1405,-416,-120,-27,-186], -[0,-449,-2357,-4808,-787,-66], +[0,-5086,-6029,-5087,-5088,-5089,-1645], +[0,-86,-3307,-9248,-3470,-3471,-7041,-664,-711,-932,-943,-958,-966,-968,-974,-1127,-1132,-1155,-1159,-1344,-10367,-1471, +-10368,-1479,-1482,-10369,-1654,-7243,-2111,-2174,-2210,-2211], +[0,-10360,-10361,-10370,-4005,-1405], [1,3,5369], [0,227,5370,5371,4], -[0,-54,-532,-177,-1011,-378,-78,-400,-645], -[0,-449,-1039,-91,-2017,-11557,-11556,-11555,-11554,-5322,-11553,-11552,-11551,-11550,-11549,-11548], +[0,-1127,-1138,-1144,-1155,-1413,-1471,-1481,-1860], +[0,-10360,-10364,-4865,-6413,-10371,-10372,-10373,-10374,-7490,-10375,-10376,-10377,-10378,-10379,-10380], [1,3,5373], [0,5374,5375,5376,5], -[0,-11547], -[0,-13,-11546,-1672,-1,-84,-67,-131,-54,-570,-167,-531,-655,-1539,-78,-345,-2356,-180], -[0,-449,-1039,-5628,-3387], +[0,-10381], +[0,-664,-10382,-6134,-932,-943,-968,-974,-1127,-1131,-1132,-1152,-1159,-1163,-1471,-1542,-10383,-1972], +[0,-10360,-10364,-5799,-7489], [1,3,5378], [0,5379,5380,5381,4], -[0,-914,-219], -[0,-49,-62,-296,-295,-582,-9,-78,-189,-3,-1306,-120,-97], -[0,-78,-61,-449,-1039,-4807], +[0,-1401,-2518], +[0,-86,-3307,-3470,-3471,-7041,-1344,-1471,-1482,-1654,-1868,-2174,-2250], +[0,-1471,-3634,-10360,-10364,-10384], [1,3,5383], [0,34,5384,5385,5], -[0,-13,-1672,-1,-84,-67,-64,-131,-54,-1541,-570,-302,-1163,-1540,-531,-655,-1539,-78,-345,-1405,-27,-186], -[0,-449,-1039,-3248], +[0,-664,-6134,-932,-943,-968,-969,-974,-1127,-1129,-1131,-1149,-1150,-1151,-1152,-1159,-1163,-1471,-1542,-7243,-2210, +-2211], +[0,-10360,-10364,-8996], [1,3,5387], [0,5388,5389,5390,5], -[0,-378], -[0,-54,-9,-78,-1,-199,-49,-120,-76,-10,-295,-582,-67,-84,-131,-212,-737,-937,-296], -[0,-449,-3129,-199], +[0,-1413], +[0,-1127,-1344,-1471,-932,-1412,-86,-2174,-966,-958,-3471,-7041,-968,-943,-974,-1479,-3472,-9404,-3470], +[0,-10360,-10385,-1412], [1,3,5392], [0,228,5393,5394,6], -[0,-13,-1,-84,-67,-64,-131,-54,-1541,-570,-1163,-531,-1011,-655,-78,-703,-139,-212,-1320,-345,-3,-568,-27,-296,-295,-120, --49,-62,-9], -[0,-449,-3129,-3], +[0,-664,-932,-943,-968,-969,-974,-1127,-1129,-1131,-1150,-1152,-1155,-1159,-1471,-1474,-1475,-1479,-1489,-1542,-1654, +-1658,-2210,-3470,-3471,-2174,-86,-3307,-1344], +[0,-10360,-10385,-1654], [1,3,5396], [0,5397,5398,5399,4], -[0,-20,-647,-138], -[0,-13,-54,-570,-532,-177,-1163,-1011,-821,-378,-703,-1526,-345,-3,-645], -[0,-449,-4808,-3,-13,-207,-2431], +[0,-668,-1574,-2269], +[0,-664,-1127,-1131,-1138,-1144,-1150,-1155,-1162,-1413,-1474,-1477,-1542,-1654,-1860], +[0,-10360,-10370,-1654,-664,-834,-8619], [1,3,5401], [0,5402,5403,5404,4], -[0,-23,-645], -[0,-1,-84,-64,-131,-54,-1541,-570,-1163,-531,-1011,-655,-378,-78,-400,-345], -[0,-449,-1039,-903], +[0,-1548,-1860], +[0,-932,-943,-969,-974,-1127,-1129,-1131,-1150,-1152,-1155,-1159,-1413,-1471,-1481,-1542], +[0,-10360,-10364,-1859], [1,3,5406], [0,0,5407,5408,10], -[0,-13,-54,-78,-3,-375,-1,-655,-570,-400,-76,-10,-67,-84,-131,-212], -[0,-78,-449,-3129,-375], +[0,-664,-1127,-1471,-1654,-1989,-932,-1159,-1131,-1481,-966,-958,-968,-943,-974,-1479], +[0,-1471,-10360,-10385,-1989], [1,3,5410], [0,5411,5412,5413,6], -[0,-119,-1871], -[0,-11,-1095,-21,-1,-378,-78,-139,-400,-418,-14,-273,-984,-463,-341], -[0,-1663,-430,-78,-370,-628,-1628,-107,-592,-2357,-449,-11545,-14], +[0,-679,-811], +[0,-23,-3412,-40,-932,-1413,-1471,-1475,-1481,-1483,-2127,-2128,-2129,-2131,-2137], +[0,-6505,-4795,-1471,-3209,-6024,-8257,-3862,-3277,-10361,-10360,-10386,-2127], [1,3,5415], [0,0,5416,5417,8], -[0,-655,-54,-570,-1541], -[0,-449,-1039,-4806], +[0,-1159,-1127,-1131,-1129], +[0,-10360,-10364,-10387], [1,3,5419], [0,5420,5421,5422,4], -[0,-4805,-1233,-1242], -[0,-49,-62,-296,-295,-582,-185,-11544,-5,-9,-199,-78,-400,-120,-2], -[0,-449,-1039,-11543,-11542,-1233], +[0,-10388,-5471,-4881], +[0,-86,-3307,-3470,-3471,-7041,-3048,-10389,-3037,-1344,-1412,-1471,-1481,-2174,-2410], +[0,-10360,-10364,-10390,-10391,-5471], [1,3,5424], [0,0,0,5425,4], -[0,-78,-449,-27,-307], +[0,-1471,-10360,-2210,-4215], [1,3,5427], [0,5428,5429,5430,5], -[0,-325], -[0,-872,-43,-1,-378,-78,-11541,-139,-400,-4,-14,-11540], -[0,-449,-2357,-4949,-45], +[0,-1119], +[0,-4035,-652,-932,-1413,-1471,-10392,-1475,-1481,-1942,-2127,-10393], +[0,-10360,-10361,-9454,-3214], [1,3,5432], [0,187,5433,5434,11], -[0,-13,-56,-3,-65,-15,-27,-186], -[0,-449,-946], +[0,-664,-756,-1654,-1771,-1788,-2210,-2211], +[0,-10360,-6863], [1,3,5436], [0,5437,5438,48,8], -[0,-28,-93,-519], -[0,-50,-11,-480,-21,-49,-62,-944,-86,-13,-244,-26,-1,-10,-25,-9,-66,-199,-8,-78,-703,-139,-189,-702,-18,-1133,-3,-235,-4, --157,-134,-17], +[0,-1107,-1645,-2508], +[0,-21,-23,-39,-40,-86,-3307,-7166,-533,-664,-665,-767,-932,-958,-967,-1344,-1405,-1412,-1415,-1471,-1474,-1475,-1482, +-1491,-1534,-1626,-1654,-1939,-1942,-1978,-2251,-2501], [1,3,5440], [0,0,27,5441,8], -[0,-3128,-3945,-11539,-868,-11538,-11537,-11536,-11535,-2861], +[0,-10394,-1493,-10395,-4111,-10396,-10397,-10398,-10399,-1494], [1,3,5443], [0,0,0,5444,6], -[0,-2861,-1301,-1467], +[0,-1494,-2063,-3103], [1,3,5446], [0,5447,5448,5449,6], -[0,-11534], -[0,-4804,-2706,-320,-1412,-103,-7,-3127,-81,-30,-11533,-11532,-11531,-11530,-11529,-11528,-11527], -[0,-1641,-853,-952,-433,-3484,-4803,-1069,-46,-11526,-690,-376,-1267,-566,-1066,-935,-3934,-442,-3126,-6513], +[0,-10400], +[0,-10401,-3653,-2581,-6486,-3664,-2125,-10402,-2384,-2469,-10403,-10404,-10405,-10406,-10407,-10408,-10409], +[0,-7372,-5846,-4634,-3324,-6495,-10410,-6005,-3445,-10411,-2071,-1671,-3742,-1691,-6321,-10412,-1724,-1582,-10413,-654], [1,3,5451], [0,0,5452,5453,4], -[0,-381,-1104], -[0,-240,-37,-224,-135,-194,-174], +[0,-985,-2447], +[0,-5514,-687,-712,-714,-4000,-3974], [1,3,5455], [0,5456,5457,5458,5], -[0,-381,-4802,-36,-23,-5052,-2189,-2181,-2355,-1180,-58,-2217,-641,-1846,-3125], -[0,-605,-15,-81,-13,-2215,-39,-9,-3,-566,-27,-1,-1818,-7,-1172,-568,-797,-2354,-33,-2353,-4,-556,-56,-26,-1146,-186,-2,-5, --5051,-18,-3124,-4801,-244,-146,-11525,-10,-11524,-11523,-12,-25,-3541], -[0,-1932,-676,-1066,-842,-566,-11522,-797,-3616,-1819,-862,-11521,-666,-718,-386], +[0,-985,-10414,-812,-1548,-8945,-2068,-2350,-10415,-713,-719,-1381,-2115,-1097,-10416], +[0,-1857,-1788,-2384,-664,-1410,-2322,-1344,-1654,-1691,-2210,-932,-1692,-2125,-879,-1658,-2245,-10417,-2379,-10418,-1942, +-2320,-756,-767,-1464,-2211,-2410,-3037,-8946,-1534,-10419,-10420,-665,-2234,-10421,-958,-10422,-10423,-940,-967,-5984], +[0,-10424,-5101,-6321,-10425,-1691,-10426,-2245,-5378,-1682,-4258,-10427,-7641,-7773,-7685], [1,3,5460], [0,5461,5462,5463,4], -[0,-5111,-229,-11520,-527,-101,-88,-11519,-164,-323,-3123,-599,-258], -[0,-715,-1650,-411,-725,-623,-517,-5808,-11518,-5860,-153,-2], -[0,-3122,-4800,-1980,-37,-11517,-685,-668,-2747,-4799,-11516,-5225,-1628,-625,-630,-45,-217,-11515,-11514,-11513,-1931, --11512,-451,-5031,-635,-2,-11511,-11510,-1988,-4798], +[0,-8520,-1026,-10428,-1431,-1442,-1646,-10429,-1863,-1864,-10430,-2271,-2564], +[0,-237,-7057,-3660,-5686,-8523,-3046,-4879,-10431,-4651,-2392,-2410], +[0,-10432,-10433,-7711,-687,-10434,-3015,-6659,-3016,-10435,-10436,-8035,-8257,-6999,-5573,-3214,-7148,-10437,-10438, +-10439,-10440,-10441,-5897,-9044,-3694,-2410,-10442,-10443,-7441,-10444], [1,3,5465], [0,0,5466,5467,6], -[0,-1,-206,-4797,-2852], -[0,-24,-1091,-632,-1373,-4807,-4796,-3387,-4806,-11509,-11508,-11507], +[0,-932,-1111,-10445,-1572], +[0,-775,-3589,-5387,-10366,-10384,-10446,-7489,-10387,-10447,-10448,-10449], [1,3,5469], [0,5470,0,5471,4], -[0,-261,-551,-36,-11506,-698], -[0,-1227,-2037,-1070], +[0,-1640,-2536,-812,-10450,-1801], +[0,-5817,-5937,-5940], [1,3,5473], [0,5474,5475,5476,4], -[0,-1191,-1027,-924,-1652,-11505,-2485,-1339,-501,-709,-11504,-652,-2858,-344,-992,-751,-1294,-981,-980], -[0,-43,-4795,-1792,-97,-125], -[0,-111,-300,-105,-1041,-52,-332,-5446], +[0,-459,-736,-737,-6920,-10451,-7412,-907,-929,-1072,-10452,-1335,-1504,-1641,-1800,-1840,-2255,-2401,-2453], +[0,-652,-10453,-2226,-2250,-2293], +[0,-3578,-3994,-1334,-9668,-3161,-5401,-6854], [1,3,5478], [0,5479,5480,5481,5], -[0,-11503,-3771,-5679,-4794,-1014,-210,-258], -[0,-310,-320,-366,-1627,-11502,-3768,-3298,-11501,-954,-443,-125,-555,-3391,-153,-2], -[0,-443,-4793,-2015,-106,-3121,-73,-546], +[0,-10454,-3734,-5586,-10455,-1070,-2400,-2564], +[0,-2832,-2581,-50,-8280,-10456,-3758,-8317,-10457,-4203,-1501,-2293,-2386,-7457,-2392,-2410], +[0,-1501,-10458,-6463,-4055,-10459,-3215,-4053], [1,3,5483], [0,5484,5485,5486,11], -[0,-4794,-11500,-981], -[0,-1551,-9,-443,-3,-15,-82,-125,-34], -[0,-11499,-106,-4793,-443,-3121], +[0,-10455,-10460,-2401], +[0,-946,-1344,-1501,-1654,-1788,-2198,-2293,-2541], +[0,-10461,-4055,-10458,-1501,-10459], [1,3,5488], [0,0,5489,5490,5], -[0,-152,-8,-1520,-97], -[0,-443,-332,-4792], +[0,-708,-1415,-1612,-2250], +[0,-1501,-5401,-10462], [1,3,5492], [0,5493,5494,5495,6], -[0,-475,-20,-11498,-992,-11497], -[0,-2254,-43,-1551,-443,-11496,-11495,-27,-125,-34], -[0,-443,-332,-738,-263], +[0,-651,-668,-10463,-1800,-10464], +[0,-619,-652,-946,-1501,-10465,-10466,-2210,-2293,-2541], +[0,-1501,-5401,-3444,-1573], [1,3,5497], [0,5498,5499,5500,4], -[0,-36,-2858], -[0,-1,-84,-67,-131,-66,-443,-6410,-3,-82,-125], -[0,-443,-332,-4791,-11494], +[0,-812,-1504], +[0,-932,-943,-968,-974,-1405,-1501,-1508,-1654,-2198,-2293], +[0,-1501,-5401,-10467,-10468], [1,3,5502], [0,5503,5504,5505,10], -[0,-36,-652,-2858,-563], -[0,-443,-15,-20,-9,-3,-1,-1854,-125,-11493,-147,-18,-49,-815,-1800,-150,-62], -[0,-443,-332,-3120,-434], +[0,-812,-1335,-1504,-1851], +[0,-1501,-1788,-668,-1344,-1654,-932,-1053,-2293,-10469,-2094,-1534,-86,-1448,-2099,-978,-3307], +[0,-1501,-5401,-10470,-3122], [1,3,5507], [0,5508,5509,5510,11], -[0,-36,-11492], -[0,-1,-84,-10,-76,-67,-131,-66,-443,-3,-125], -[0,-443,-332,-126,-856,-11491], +[0,-812,-10471], +[0,-932,-943,-958,-966,-968,-974,-1405,-1501,-1654,-2293], +[0,-1501,-5401,-6656,-5142,-10472], [1,3,5512], [0,5513,5514,5515,4], -[0,-3935,-643,-11490,-690,-96,-23,-393,-41,-168,-11489], -[0,-13,-60,-3,-27,-82,-125,-474], -[0,-1425,-986,-1959,-690], +[0,-1717,-1974,-10473,-2071,-2550,-1548,-2286,-1004,-617,-10474], +[0,-664,-510,-1654,-2210,-2198,-2293,-710], +[0,-5418,-1986,-8615,-2071], [1,3,5517], [0,5518,5519,5520,4], -[0,-11488,-207,-1,-11487,-11486,-617,-11485,-250,-1841,-2865,-1147,-72,-1493,-130,-146,-461,-11484], -[0,-354,-4790,-214,-11483,-7,-16], -[0,-75], +[0,-10475,-834,-932,-10476,-10477,-986,-10478,-1276,-1309,-1458,-1459,-1650,-2172,-2231,-2234,-2297,-10479], +[0,-707,-10480,-963,-10481,-2125,-2177], +[0,-4004], [1,3,5522], [0,5523,5524,5525,5], -[0,-1676], -[0,-51,-16,-4789,-81,-34], -[0,-4788,-663,-158,-2466,-451,-1372,-11482,-358], +[0,-5895], +[0,-519,-2177,-10482,-2384,-2541], +[0,-10483,-9318,-1764,-7861,-5897,-10484,-10485,-3551], [1,3,5527], [0,0,5528,5529,4], -[0,-1146,-11481,-110,-11480,-11479,-2214,-166,-23,-1822,-1806,-11478,-416,-11477,-247], -[0,-3161,-727,-542,-2025,-132], +[0,-1464,-10486,-589,-10487,-10488,-1414,-1446,-1548,-1627,-1963,-10489,-2111,-10490,-2424], +[0,-9826,-5112,-6187,-6188,-2444], [1,3,5531], [0,0,5532,5533,9], -[0,-1491,-9,-78,-3,-27,-1,-11476,-14,-11475,-11474,-112,-189,-1320,-18,-11473,-4787,-4786,-1145,-231,-1831,-4785,-139, --909,-212,-755,-11472,-11471], -[0,-11470,-774], +[0,-2247,-1344,-1471,-1654,-2210,-932,-10491,-2127,-10492,-10493,-2416,-1482,-1489,-1534,-10494,-10495,-10496,-1480,-4062, +-1478,-10497,-1475,-1487,-1479,-1486,-10498,-10499], +[0,-10500,-6917], [1,3,5535], [0,0,5536,5537,10], -[0,-110,-1333], -[0,-3944,-11469,-1646,-4784,-163,-11468], +[0,-589,-1023], +[0,-1519,-10501,-7210,-10502,-2265,-10503], [1,3,5539], [0,0,5540,5541,6], -[0,-5112], -[0,-1646,-4783,-584,-550], +[0,-8511], +[0,-7210,-10504,-5538,-3276], [1,3,5543], [0,5544,0,5545,8], -[0,-1313,-758,-312,-1124,-1491,-123,-20,-118,-569,-564,-285,-1716,-96,-11467,-534,-4882,-1309,-7,-16,-1863,-101,-1125, --460,-4782,-40,-499,-200,-753,-4781,-2574,-4780,-1565,-1003,-913,-93,-11466,-714,-498,-1513,-311,-2,-11465,-403,-1542, --4779,-11464,-891,-1839,-4778,-1815,-11463,-641,-3119,-394,-518,-11462,-713,-5115,-2103,-4777,-11461,-4776,-994, --930,-4775,-1604,-1778,-1355,-1814,-1442,-2647,-1285,-11460,-4774,-3118,-3117,-11459], -[0,-1525,-1931,-3116], +[0,-1787,-1371,-2323,-1866,-2247,-2446,-668,-999,-1392,-1826,-2218,-4701,-2550,-10505,-815,-9809,-1831,-2125,-2177,-914, +-1442,-1827,-2346,-10506,-1077,-1098,-1376,-1591,-10507,-5917,-10508,-715,-1399,-1418,-1645,-10509,-293,-1100,-1686, +-2654,-2410,-10510,-755,-1108,-10511,-10512,-2202,-1363,-10513,-1769,-10514,-2115,-10515,-2267,-2551,-10516,-305,-8500, +-4236,-10517,-10518,-10519,-1767, +-280,-10520,-10521,-2530,-283,-1770,-4283,-4716,-2450,-10522,-10523,-10524,-10525,-10526], +[0,-1520,-10440,-10527], [1,3,5547], [0,5548,5549,5550,6], -[0,-4773,-3279,-44], -[0,-80,-231,-63,-22,-19,-4772,-11458,-13,-43,-20,-403,-26,-1,-40,-5471,-28,-206,-54,-167,-243,-616,-531,-1845,-821,-11457, --913,-4771,-4770,-5001,-88,-3,-4769,-65,-1506,-11456,-398,-172,-11455,-128,-14,-226,-301,-16,-395,-1487,-33,-2,-1430], -[0,-4768,-11454,-4767,-24,-11453,-4766,-11452,-4765,-4764,-222,-3115,-4763,-5845,-4762,-73,-592,-4761,-4760,-225,-548, --1275,-11451,-11450], +[0,-10528,-8501,-2387], +[0,-350,-4062,-351,-427,-428,-10529,-10530,-664,-652,-668,-755,-767,-932,-1077,-6720,-1107,-1111,-1127,-1132,-1134,-1137, +-1152,-1161,-1162,-10531,-1418,-10532,-10533,-9237,-1646,-1654,-10534,-1771,-1856,-10535,-1874,-1961,-10536,-2114,-2127, +-2140,-2142,-2177,-2200,-2351,-2379,-2410,-5252], +[0,-10537,-10538,-10539,-775,-10540,-10541,-10542,-10543,-10544,-1521,-10545,-10546,-4730,-10547,-3215,-3277,-10548, +-10549,-5553,-3770,-3271,-10550,-10551], [1,3,5552], [0,0,5553,5554,4], -[0,-50,-11,-21,-49,-62,-48,-514,-309,-86,-26,-425,-151,-237,-1,-12,-583,-10,-145,-115,-25,-150,-55,-9,-8,-222,-11449,-18, --262,-65,-4,-134,-138,-83,-17], -[0,-17,-779,-222,-4763,-3115,-24,-592], +[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-533,-767,-774,-824,-825,-932,-940,-6929,-958,-959,-965,-967,-978,-1110,-1344, +-1415,-1521,-10552,-1534,-1623,-1771,-1942,-2251,-2269,-2411,-2501], +[0,-2501,-5932,-1521,-10546,-10545,-775,-3277], [1,3,5556], [0,5557,5558,229,4], -[0,-11448,-11447,-11446], -[0,-15,-39,-123,-768,-833,-1535,-97,-2,-5,-21,-4759,-4758], +[0,-10553,-10554,-10555], +[0,-1788,-2322,-2446,-468,-571,-1274,-2250,-2410,-3037,-40,-10556,-10557], [1,3,5560], [0,5561,5562,5563,8], -[0,-11445,-2030,-11444], -[0,-11443,-15,-28,-39,-372,-1332,-7,-3609,-471,-1535,-610,-97,-26,-4756,-11442,-3519,-11441,-11440,-1342,-11439,-4755], -[0,-4757,-2853], +[0,-10559,-6127,-10560], +[0,-10561,-1788,-1107,-2322,-2331,-1032,-2125,-5420,-891,-1274,-1733,-2250,-767,-10562,-10563,-6128,-10564,-10565,-829, +-10566,-10567], +[0,-10558,-1523], [1,3,5565], [0,5566,5567,229,11], -[0,-4936,-11438,-11437,-4754,-11436,-11435], -[0,-15,-39,-838,-27,-768,-1332,-3609,-11434,-11433,-1535,-97,-4756,-59,-1795,-4753,-3114,-315,-11432,-11431,-1342,-4759, --4755], +[0,-9508,-10568,-10569,-10570,-10571,-10572], +[0,-1788,-2322,-465,-2210,-468,-1032,-5420,-10573,-10574,-1274,-2250,-10562,-633,-2151,-10575,-10576,-725,-10577,-10578, +-829,-10556,-10567], [1,3,5569], [0,0,5570,5571,11], -[0,-51,-3113,-11430,-11429,-4752,-11428,-4751,-3937,-11427,-1108,-34], -[0,-1142,-4752,-11426,-3112,-163,-5343,-207,-508,-1848,-5491,-3705,-1402,-4750,-3111,-183,-511,-4749], +[0,-519,-10579,-10580,-10581,-10582,-10583,-10584,-1703,-10585,-2354,-2541], +[0,-1526,-10582,-10586,-10587,-2265,-7377,-834,-5922,-1087,-6547,-4310,-7378,-10588,-10589,-5554,-5572,-10590], [1,3,5573], [0,5574,29,5575,10], -[0,-930,-3713,-11425,-207,-93,-994,-1309,-312], -[0,-158,-1813,-2662,-37,-207], +[0,-280,-4280,-10591,-834,-1645,-1767,-1831,-2323], +[0,-1764,-1776,-4303,-687,-834], [1,3,5577], [0,5578,5579,5580,5], -[0,-930,-1442,-1355,-504,-994,-1309,-989,-4748,-603,-16,-891,-3710], -[0,-731,-3709,-730,-5900,-20,-3349,-11424,-85], -[0,-158,-1813,-2662,-37,-3708,-3943], +[0,-280,-4283,-283,-680,-1767,-1831,-1957,-10592,-2059,-2177,-2202,-4297], +[0,-4298,-4299,-4300,-4286,-668,-7755,-10593,-2319], +[0,-1764,-1776,-4303,-687,-4304,-1528], [1,3,5582], [0,5583,29,5584,5], -[0,-930], -[0,-158,-1813,-2662,-37,-387,-11423,-11422], +[0,-280], +[0,-1764,-1776,-4303,-687,-5889,-10594,-10595], [1,3,5586], [0,0,5587,5588,4], -[0,-50,-11,-2146,-3812,-21,-178,-231,-204,-355,-13,-618,-11421,-26,-11420,-66,-8,-11419,-11418,-88,-3,-65,-15,-11417, --1799,-7,-14,-44], -[0,-3157,-1605,-1417,-336,-95,-11416], +[0,-21,-23,-3367,-3350,-40,-43,-4062,-3266,-539,-664,-757,-10596,-767,-10597,-1405,-1415,-10598,-10599,-1646,-1654,-1771, +-1788,-10600,-2104,-2125,-2127,-2387], +[0,-9917,-9918,-6240,-3962,-3162,-10601], [1,3,5590], [0,5591,5592,5593,6], -[0,-444,-1546,-11415,-11414,-1152,-2189,-128], -[0,-316,-1,-828,-12,-76,-350,-3,-15,-27], -[0,-1722], +[0,-1015,-1048,-10602,-10603,-1396,-2068,-2114], +[0,-711,-932,-937,-940,-966,-1001,-1654,-1788,-2210], +[0,-4376], [1,3,5595], [0,0,5596,5597,4], -[0,-320,-29,-5,-2687,-403,-8,-2,-1104], -[0,-403,-353,-1085,-720], +[0,-2581,-3136,-3037,-3806,-755,-1415,-2410,-2447], +[0,-755,-727,-3870,-7282], [1,3,5599], [0,0,0,5600,6], -[0,-4747,-2461,-11413,-31,-249,-1371,-11412,-6,-2775,-195], +[0,-10604,-7920,-10605,-3264,-1437,-10606,-10607,-2006,-2398,-2435], [1,3,5602], [0,5603,5604,5605,8], -[0,-58,-1829,-362,-2136,-1093,-259], -[0,-1627,-366,-49,-62,-48,-103,-848,-11411,-26,-1,-12,-115,-25,-859,-9,-1516,-4,-16,-2,-30], -[0,-217,-387,-11410,-1,-4,-179,-354,-1049,-280,-550,-509], +[0,-719,-1536,-1639,-3610,-3535,-2548], +[0,-8280,-50,-86,-3307,-190,-3664,-6593,-10608,-767,-932,-940,-965,-967,-4814,-1344,-1661,-1942,-2177,-2410,-2469], +[0,-7148,-5889,-10609,-932,-1942,-2281,-707,-8169,-7440,-3276,-5874], [1,3,5607], [0,5608,5609,5610,4], -[0,-11409,-11408,-1836,-1003,-11407,-11406,-11405,-564,-489], -[0,-152,-658,-3207,-18,-647,-15,-235,-798,-2584], -[0,-37,-786,-1256,-3737,-174,-869,-194,-868,-455,-2110,-2672,-361,-2109,-785,-2108], +[0,-10610,-10611,-1398,-1399,-10612,-10613,-10614,-1826,-2153], +[0,-708,-826,-9464,-1534,-1574,-1788,-1939,-2239,-5747], +[0,-687,-4107,-4108,-4109,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], [1,3,5612], [0,5613,5614,158,6], -[0,-2247,-1180,-1018,-1523,-1797,-880], -[0,-5640,-489,-2584], +[0,-696,-713,-996,-1575,-2124,-2528], +[0,-5745,-2153,-5747], [1,3,5616], [0,5617,5618,7,8], -[0,-11404,-11403,-3818], -[0,-11402,-11401,-5854,-11400,-3693,-44], +[0,-10615,-10616,-3297], +[0,-10617,-10618,-4686,-10619,-4690,-2387], [1,3,5620], [0,5621,5622,5623,5], -[0,-23,-88,-1031,-11399,-1564], -[0,-3,-27,-1,-1515,-66], -[0,-192,-5553,-856,-209,-684], +[0,-1548,-1646,-632,-10620,-731], +[0,-1654,-2210,-932,-1663,-1405], +[0,-475,-6205,-5142,-3844,-3113], [1,3,5625], [0,5626,5627,5628,6], -[0,-1310,-383,-802,-135,-700,-223,-119,-11398,-1113,-423,-242,-3110,-4937], -[0,-3,-1,-117,-125], -[0,-184,-684,-589,-209,-105,-37], +[0,-1812,-754,-2178,-714,-1676,-729,-679,-10621,-2186,-994,-1792,-10622,-9502], +[0,-1654,-932,-1452,-2293], +[0,-3577,-3113,-3673,-3844,-1334,-687], [1,3,5630], [0,5631,5632,7,4], -[0,-119,-4746,-2525,-205], -[0,-316,-3,-82,-27], +[0,-679,-10623,-6696,-2531], +[0,-711,-1654,-2198,-2210], [1,3,5634], [0,5635,5636,5637,4], -[0,-2005,-28,-4771,-101,-4913,-345,-23], -[0,-54,-177,-302,-4911,-3230,-3981,-180,-27], -[0,-253,-259,-2005,-54,-353], +[0,-6838,-1107,-10532,-1442,-9641,-1542,-1548], +[0,-1127,-1144,-1149,-9650,-9280,-1158,-1972,-2210], +[0,-9219,-2548,-6838,-1127,-727], [1,3,5639], [0,5640,5641,5642,4], -[0,-1189,-1513,-1123,-3109], -[0,-54,-167,-6183,-34], -[0,-685,-28,-54,-2001,-511,-11397,-947,-407,-2416], +[0,-506,-1686,-1872,-10624], +[0,-1127,-1132,-2889,-2541], +[0,-3015,-1107,-1127,-6994,-5572,-10625,-5574,-4792,-8906], [1,3,5644], [0,0,5645,7,6], -[0,-56,-1,-76,-8,-4,-134], +[0,-756,-932,-966,-1415,-1942,-2251], [1,3,5647], [0,5648,5649,5650,4], -[0,-2358,-1823,-11396,-11395,-11394,-11393,-11392,-11391,-6218,-11390,-11389,-11388,-11387,-11386,-11385,-11384,-4745], -[0,-188,-1488], -[0,-1398,-209,-111,-589,-184,-684,-383,-261,-410,-307,-99,-604,-1823,-46,-53,-4744,-419,-105,-1422,-401], +[0,-10293,-1586,-10626,-10627,-10628,-10629,-10630,-10631,-2783,-10632,-10633,-10634,-10635,-10636,-10637,-10638,-10639], +[0,-1729,-2337], +[0,-7646,-3844,-3578,-3673,-3577,-3113,-754,-1640,-3691,-4215,-3690,-1971,-1586,-3445,-3100,-10640,-1339,-1334,-5735, +-1342], [1,3,5652], [0,5653,5654,5655,4], -[0,-3130], -[0,-169,-94,-98,-278,-3524,-328,-11383,-833,-11382,-1570,-383,-12,-54,-3545,-1012,-656,-616,-347,-302,-11381,-531,-1821, --4743,-3344,-1845,-4742,-3343,-9,-18,-345,-3,-4,-11380,-3588,-2,-112,-17,-170], -[0,-11379,-11378,-1069,-11377], +[0,-10347], +[0,-527,-528,-534,-535,-6079,-559,-10641,-571,-10642,-647,-754,-940,-1127,-5974,-1130,-1136,-1137,-1148,-1149,-10643, +-1152,-1655,-10644,-7845,-1161,-10645,-7848,-1344,-1534,-1542,-1654,-1942,-10646,-5508,-2410,-2416,-2501,-2505], +[0,-10647,-10648,-6005,-10649], [1,3,5657], [0,5658,27,7,11], -[0,-201,-36,-11376,-96], +[0,-523,-812,-10650,-2550], [1,3,5660], [0,5661,5662,5663,4], -[0,-403,-36,-229,-11375,-96], -[0,-94,-5577,-2259,-268,-328,-1561,-1023,-1,-84,-10,-145,-76,-67,-762,-131,-8,-1311,-2352,-16], -[0,-11374,-11373,-2040,-3108,-217,-686,-158,-539,-667,-165], +[0,-755,-812,-1026,-10651,-2550], +[0,-528,-6048,-554,-558,-559,-849,-869,-932,-943,-958,-959,-966,-968,-972,-974,-1415,-1806,-10652,-2177], +[0,-10653,-10654,-5880,-10655,-7148,-2552,-1764,-8170,-7107,-1838], [1,3,5665], [0,0,0,5666,4], -[0,-370,-2351,-132], +[0,-3209,-10656,-2444], [1,3,5668], [0,0,0,5669,4], -[0,-339,-370,-2351,-132], +[0,-3184,-3209,-10656,-2444], [1,3,5671], [0,0,0,5672,10], -[0,-385,-1642], +[0,-10657,-7370], [1,3,5674], [0,0,0,5675,4], -[0,-385,-446], +[0,-10657,-656], [1,3,5677], [0,0,0,5678,5], -[0,-385,-11372], +[0,-10657,-10658], [1,3,5680], [0,0,0,5681,4], -[0,-385,-1871], +[0,-10657,-811], [1,3,5683], [0,0,0,5684,5], -[0,-385,-2350], +[0,-10657,-10659], [1,3,5686], [0,0,0,5687,5], -[0,-385,-2044], +[0,-10657,-5841], [1,3,5689], [0,0,0,5690,5], -[0,-385,-2021], +[0,-10657,-6283], [1,3,5692], [0,0,0,5693,9], -[0,-385,-1618], +[0,-10657,-9052], [1,3,5695], [0,0,0,5696,9], -[0,-385,-11371], +[0,-10657,-10660], [1,3,5698], [0,0,0,5699,4], -[0,-385,-4741], +[0,-10657,-10661], [1,3,5701], [0,0,0,5702,4], -[0,-385,-11370], +[0,-10657,-10662], [1,3,5704], [0,0,0,5705,4], -[0,-23,-385,-2351,-132], +[0,-1548,-10657,-10656,-2444], [1,3,5707], [0,0,0,5708,5], -[0,-385,-11369], +[0,-10657,-10663], [1,3,5710], [0,0,0,5711,4], -[0,-385,-11368], +[0,-10657,-10664], [1,3,5713], [0,0,0,5714,4], -[0,-385,-774], +[0,-10657,-6917], [1,3,5716], [0,0,0,5717,10], -[0,-385,-3551], +[0,-10657,-5913], [1,3,5719], [0,0,0,5720,4], -[0,-385,-494], +[0,-10657,-1631], [1,3,5722], [0,0,0,5723,4], -[0,-385,-4740], +[0,-10657,-10665], [1,3,5725], [0,0,0,5726,5], -[0,-385,-11367], +[0,-10657,-10666], [1,3,5728], [0,0,0,5729,5], -[0,-385,-2456], +[0,-10657,-8127], [1,3,5731], [0,5732,0,5733,4], -[0,-4940,-4939], -[0,-385,-271], +[0,-9496,-9497], +[0,-10657,-3110], [1,3,5735], [0,0,0,5736,5], -[0,-385,-1994], +[0,-10657,-7329], [1,3,5738], [0,0,0,5739,4], -[0,-385,-11366], +[0,-10657,-10667], [1,3,5741], [0,5742,5743,5744,5], -[0,-5476,-540,-1554,-3417,-11365,-11364,-4739], -[0,-15,-39,-9,-11363,-1,-5801,-11362,-18,-3464,-3462,-3465,-3463], -[0,-263,-738,-36,-1347,-552], +[0,-6703,-8038,-922,-7219,-10668,-10669,-10670], +[0,-1788,-2322,-1344,-10671,-932,-4896,-10672,-1534,-6707,-6709,-6706,-6708], +[0,-1573,-3444,-812,-648,-2520], [1,3,5746], [0,5747,5748,5749,5], -[0,-3287,-2511], -[0,-34,-51,-81,-138], -[0,-455,-37,-1214,-294,-2455,-3273,-2431,-5091,-533,-5090,-722,-263,-367,-174,-1262], +[0,-8416,-6861], +[0,-2541,-519,-2384,-2269], +[0,-4112,-687,-7095,-3958,-8132,-8618,-8619,-8620,-1040,-8621,-7084,-1573,-5545,-3974,-3973], [1,3,5751], [0,5752,5753,5754,4], -[0,-929,-1876,-2798,-138,-880], -[0,-5,-394,-11361,-81,-3451,-34], -[0,-263,-738,-367,-37,-174,-869,-194,-254,-2349,-4738,-11360,-5042,-1262,-361,-3107,-485], +[0,-480,-690,-2219,-2269,-2528], +[0,-3037,-2267,-10673,-2384,-6786,-2541], +[0,-1573,-3444,-5545,-687,-3974,-4110,-4000,-5550,-10674,-10675,-10676,-8991,-3973,-1959,-10677,-5176], [1,3,5756], [0,5757,5758,5759,5], -[0,-11359,-36,-3424,-1797,-11358], -[0,-49,-62,-11357,-5612,-4880,-1,-191,-12,-2442,-10,-25,-40,-9,-569,-15,-4,-180,-85,-2], -[0,-367,-263,-5510,-141], +[0,-10678,-812,-7142,-2124,-10679], +[0,-86,-3307,-10680,-5902,-9818,-932,-934,-940,-8246,-958,-967,-1077,-1344,-1392,-1788,-1942,-1972,-2319,-2410], +[0,-5545,-1573,-6459,-3966], [1,3,5761], [0,0,5762,5763,5], -[0,-4924,-5,-54,-167,-243,-656,-616,-11356,-177,-347,-302,-4737,-11355,-199,-33,-2], -[0,-263,-738,-367,-91], +[0,-9569,-3037,-1127,-1132,-1134,-1136,-1137,-10681,-1144,-1148,-1149,-10682,-10683,-1412,-2379,-2410], +[0,-1573,-3444,-5545,-4865], [1,3,5765], [0,0,5766,5767,10], -[0,-5555,-4,-2], -[0,-2348,-2207,-11354], +[0,-6132,-1942,-2410], +[0,-10684,-1578,-10685], [1,3,5769], [0,5770,5771,5772,6], -[0,-351,-1173,-4736,-60,-36,-3131,-41,-11353,-2922,-116,-1155,-1816,-168,-1793,-11352,-11351,-4735,-11350,-11349,-1286, --11348,-11347,-4734,-11346], -[0,-15,-13,-54,-78,-3,-27,-219,-1,-56,-167,-1930,-125,-59,-1562,-186,-1011,-189,-531,-619,-11345,-11344,-920,-1012,-1010, --910,-11343,-302,-11342,-347,-4813,-11341,-139,-4812,-11340,-212,-3353], -[0,-111,-1074,-410,-99,-41,-6329,-443,-778,-667,-3616,-566,-1210,-1216,-376,-2347,-1819,-842,-1066,-3898,-4733,-52,-95, --4732], +[0,-888,-828,-10686,-510,-812,-10330,-1004,-10687,-583,-615,-1369,-1752,-617,-2185,-10688,-10689,-10690,-10691,-10692, +-2425,-10693,-10694,-10695,-10696], +[0,-1788,-664,-1127,-1471,-1654,-2210,-2518,-932,-756,-1132,-10697,-2293,-633,-838,-2211,-1155,-1482,-1152,-744,-10698, +-10699,-1010,-1130,-1156,-1472,-10700,-1149,-10701,-1148,-10354,-10702,-1475,-10355,-10703,-1479,-7707], +[0,-3578,-5728,-3691,-3690,-1004,-2118,-1501,-6120,-7107,-5378,-1691,-7684,-6857,-1671,-10704,-1682,-10425,-6321,-2227, +-10705,-3161,-3162,-10706], [1,3,5774], [0,5775,5776,196,5], -[0,-2737], -[0,-59,-2237,-85], +[0,-3187], +[0,-633,-913,-2319], [1,3,5778], [0,5779,5780,5781,9], -[0,-11339], -[0,-153,-9,-372,-1,-23,-237,-33,-2,-5,-142,-257,-49,-11338,-4731,-1071,-11337,-62], -[0,-386,-718,-471,-4730,-4729,-1544,-1253,-1044,-11336,-11335,-91,-381], +[0,-10707], +[0,-2392,-1344,-2331,-932,-1548,-825,-2379,-2410,-3037,-3044,-3617,-86,-10708,-10709,-5918,-10710,-3307], +[0,-7685,-7773,-891,-10711,-10712,-1055,-4182,-8427,-10713,-10714,-4865,-985], [1,3,5783], [0,0,5784,5785,5], -[0,-5,-110,-89,-228,-72,-4,-85,-555,-124], -[0,-11334,-3126,-433], +[0,-3037,-589,-928,-1610,-1650,-1942,-2319,-2386,-2402], +[0,-10715,-10413,-3324], [1,3,5787], [0,0,5788,5789,10], -[0,-232,-155,-3780,-14,-415,-2,-104,-30,-11333,-11332,-11331], -[0,-11330,-11329,-11328,-11327,-11326,-3106,-11325,-11324,-11323], +[0,-3561,-407,-3667,-2127,-2132,-2410,-2466,-2469,-10716,-10717,-10718], +[0,-10719,-10720,-10721,-10722,-10723,-10724,-10725,-10726,-10727], [1,3,5791], [0,5792,5793,5794,9], -[0,-60,-711,-11322,-809], -[0,-56,-66,-72,-3,-611,-82], -[0,-281,-299,-11321,-287,-1933,-2500,-5400,-1042,-1383,-579,-1208,-2501,-11320,-11319,-1403,-4728,-4727,-3502,-4784, --11318,-11317,-11316,-5928,-11315,-4726,-4725,-11314,-11313], +[0,-510,-596,-10728,-1696], +[0,-756,-1405,-1650,-1654,-1657,-2198], +[0,-6527,-640,-10729,-1958,-10095,-7069,-7068,-9235,-8640,-7715,-8642,-7066,-10730,-10731,-7334,-10732,-10733,-6337, +-10502,-10734,-10735,-10736,-4162,-10737,-10738,-10739,-10740,-10741], [1,3,5796], [0,5797,5798,5799,5], -[0,-11312,-11311,-1408,-4780,-2899,-2898,-11310,-2358,-443,-4724,-149,-1499,-3450,-1984], -[0,-815,-4745,-188,-11309,-1488], -[0,-1823,-209,-105,-1422,-401,-46,-419,-1398,-111], +[0,-10742,-10743,-6789,-10508,-717,-718,-10744,-10293,-1501,-10745,-1805,-1982,-6791,-7576], +[0,-1448,-10639,-1729,-10746,-2337], +[0,-1586,-3844,-1334,-5735,-1342,-3445,-1339,-7646,-3578], [1,3,5801], [0,5802,5803,5804,8], -[0,-20,-1565,-36,-573,-1680,-2355,-11308,-533,-1852,-1843,-11307,-760,-757,-101,-1604,-3105,-72,-324,-899,-2052,-864,-601, --804,-11306,-3779,-156,-2473,-133,-1396,-340,-1078,-123,-483,-219,-1778,-4723,-96], -[0,-11305,-162,-246,-411,-11304,-11303,-5,-736,-677,-680,-2346,-3229,-413,-26,-5155,-285,-138,-2,-1104], -[0,-100,-11302,-11301,-61,-42], +[0,-668,-715,-812,-910,-5672,-10415,-10747,-1040,-1075,-1286,-10748,-1292,-1380,-1442,-10521,-10749,-1650,-1816,-1951, +-5353,-4242,-2098,-2101,-10750,-3669,-2359,-7699,-2427,-7669,-2429,-5356,-2446,-5358,-2518,-2530,-10751,-2550], +[0,-10752,-3198,-5334,-3660,-10753,-10754,-3037,-3628,-4231,-3738,-10755,-9284,-3041,-767,-8364,-2218,-2269,-2410,-2447], +[0,-1599,-10756,-10757,-3634,-856], [1,3,5806], [0,5807,5808,5809,8], -[0,-1763], -[0,-48,-63,-232,-110,-1387,-404,-1,-4,-459,-14,-799,-146,-30], -[0,-163,-11300,-2002,-1054,-5517], +[0,-3115], +[0,-190,-351,-3561,-589,-8349,-740,-932,-1942,-2910,-2127,-2232,-2234,-2469], +[0,-2265,-10758,-6915,-7651,-6431], [1,3,5811], [0,5812,5813,5814,6], -[0,-205,-201,-79,-44,-422,-23,-2216,-3778,-1394], -[0,-1,-124,-454,-2,-5,-65,-586,-142,-19,-5858,-11299,-22], -[0,-11298,-1955,-2,-4006,-453,-5020,-45,-11297,-11296,-11295,-11294,-11293,-2369,-11292,-11291,-1215,-11290,-11289,-42, --4722,-11288,-6395], +[0,-2531,-523,-1449,-2387,-997,-1548,-1388,-3679,-7967], +[0,-932,-2402,-4204,-2410,-3037,-1771,-4647,-3044,-428,-4659,-10759,-427], +[0,-10760,-8911,-2410,-840,-4601,-9111,-3214,-10761,-10762,-10763,-10764,-10765,-9840,-10766,-10767,-7085,-10768,-10769, +-856,-10770,-10771,-1589], [1,3,5816], [0,5817,5818,5819,4], -[0,-20,-444,-206,-554,-1513,-493,-599], -[0,-54,-3,-82,-167], -[0,-1185,-32,-624,-253], +[0,-668,-1015,-1111,-2462,-1686,-1849,-2271], +[0,-1127,-1654,-2198,-1132], +[0,-622,-1168,-7419,-9219], [1,3,5821], [0,0,5822,5823,4], -[0,-872,-5,-51,-325,-11287,-372,-81,-34], -[0,-2413,-72,-1379,-3396,-3397,-405,-942,-248,-1382,-1065,-11286,-11285,-772,-2412,-303,-1400,-3436], +[0,-4035,-3037,-519,-1119,-10772,-2331,-2384,-2541], +[0,-8988,-1650,-9218,-7411,-7410,-7421,-7420,-1847,-8807,-6370,-10773,-10774,-7371,-8990,-1076,-7422,-7000], [1,3,5825], [0,0,0,5826,5], -[0,-1379], +[0,-9218], [1,3,5828], [0,5829,5830,5831,4], -[0,-1247,-1353,-1884,-116,-11284,-3946,-11283,-1308,-247,-1283], -[0,-5,-59,-11282,-11281,-1,-11280,-3,-597,-2,-112], -[0,-5083,-31,-4721,-1603,-100,-969], +[0,-4733,-503,-578,-615,-10775,-1468,-10776,-1850,-2424,-2538], +[0,-3037,-633,-10777,-10778,-932,-10779,-1654,-2330,-2410,-2416], +[0,-8703,-3264,-10780,-10781,-1599,-3437], [1,3,5833], [0,5834,5835,5836,6], -[0,-1268,-1412,-4720,-11279,-4719,-11278,-4718,-11277,-4717,-4716,-193,-2922,-20,-3752,-2681,-1029,-1947,-3168,-101,-813, --1141,-568,-1818,-188,-288,-563,-605,-562,-602,-489,-689,-747,-797,-2179,-11276,-195], -[0,-4715,-11275,-5875,-4714,-11274,-6164,-5070,-11273,-257,-411,-955,-1686,-954,-22,-19,-1,-12,-25,-303,-8,-248,-4,-146, --125,-57,-211,-795,-2], -[0,-46,-99,-410,-335,-2,-386,-4713,-11272,-1982,-11271,-11270,-11269,-11268,-4712,-1267,-842,-566,-2179,-1684,-778,-683, --11267,-1069,-1070,-11266,-11265,-11264,-4711,-11263,-4710,-5559,-3104,-2850], +[0,-3698,-6486,-10782,-10783,-10784,-10785,-10786,-10787,-10788,-10789,-469,-583,-668,-3910,-3911,-693,-9229,-9759,-1442, +-1465,-1540,-1658,-1692,-1729,-1753,-1851,-1857,-1878,-2080,-2153,-2193,-2223,-2245,-2409,-10790,-2435], +[0,-10791,-10792,-4353,-10793,-10794,-2980,-8850,-10795,-3617,-3660,-4201,-5363,-4203,-427,-428,-932,-940,-967,-1076, +-1415,-1847,-1942,-2234,-2293,-2375,-2376,-2383,-2410], +[0,-3445,-3690,-3691,-3967,-2410,-7685,-10796,-10797,-7643,-10798,-10799,-10800,-10801,-10802,-3742,-10425,-1691,-2409, +-5406,-6120,-3173,-10803,-6005,-5940,-10804,-10805,-10806,-10807,-10808,-10809,-6113,-10810,-1594], [1,3,5838], [0,0,5839,5840,5], -[0,-283,-6258,-6563,-6562,-6561,-4709,-11262,-142,-5,-47,-87,-22,-19,-304,-382,-1,-3103,-190,-23,-241,-38,-696,-561, --11261,-2345,-4,-6,-35,-689,-863,-2165,-171,-2], -[0,-102,-11260,-3102,-1263,-11259,-11258,-6,-11257,-2,-45,-184,-53,-2719,-102,-11256,-5952,-2477,-11255,-129], +[0,-3244,-2658,-250,-252,-254,-10811,-10812,-3044,-3037,-3040,-3052,-427,-428,-703,-784,-932,-10813,-970,-1548,-2634, +-1889,-1891,-1906,-10814,-10815,-1942,-2006,-2019,-2193,-4245,-2592,-2391,-2410], +[0,-3160,-10816,-10817,-3824,-10818,-10819,-2006,-10820,-2410,-3214,-3577,-3100,-3477,-3160,-10821,-4015,-7566,-10822, +-3095], [1,3,5842], [0,0,5843,7,5], -[0,-2438,-3290,-2437,-423,-1624], +[0,-8392,-8394,-8393,-994,-8388], [1,3,5845], [0,0,5846,5847,6], -[0,-5,-22,-19,-103,-160,-43,-1,-1020,-251,-79,-11254,-77,-179,-2722,-2,-104,-847,-30], -[0,-11253,-6157,-107,-11252,-225], +[0,-3037,-427,-428,-3664,-518,-652,-932,-935,-948,-1449,-10823,-2162,-2281,-3436,-2410,-2466,-6859,-2469], +[0,-10824,-3004,-3862,-10825,-5553], [1,3,5849], [0,5850,71,5851,4], -[0,-466], -[0,-100,-11251,-360], +[0,-1758], +[0,-1599,-10826,-3272], [1,3,5853], [0,5854,5855,5856,5], -[0,-1353,-457,-11250,-11249,-11248,-11247], -[0,-203,-80,-63,-204,-240,-110,-43,-13,-1,-84,-41,-348,-379,-1321,-2733,-1318,-3781,-1138,-6077,-4708,-11246,-11245,-4707, --2707,-2703,-3,-4706,-1817,-14,-272,-125], -[0,-100,-73,-1043,-221,-2344], +[0,-503,-3223,-10827,-10828,-10829,-10830], +[0,-3326,-350,-351,-3266,-5514,-589,-652,-664,-932,-943,-1004,-1103,-1304,-1429,-3245,-1602,-3650,-1603,-3427,-10831, +-10832,-10833,-10834,-3651,-3668,-1654,-10835,-1708,-2127,-2195,-2293], +[0,-1599,-3215,-8630,-1600,-10836], [1,3,5858], [0,0,5859,5860,8], -[0,-1755,-51,-1463,-701,-146,-97], -[0,-100,-221,-2344,-2618,-3101], +[0,-3234,-519,-3425,-1637,-2234,-2250], +[0,-1599,-1600,-10836,-5147,-10837], [1,3,5862], [0,0,230,5863,5], -[0,-2344,-221,-100], +[0,-10836,-1600,-1599], [1,3,5865], [0,0,230,5866,8], -[0,-2344,-221,-100,-1929,-11244,-3100,-4705], +[0,-10836,-1600,-1599,-10838,-10839,-10840,-10841], [1,3,5868], [0,5869,5870,5871,4], -[0,-58,-1558,-444,-379,-645,-1119,-11243,-71,-156], -[0,-56,-66,-11242,-97,-39], -[0,-100,-1064,-452,-271], +[0,-719,-883,-1015,-1304,-1860,-2102,-10842,-2347,-2359], +[0,-756,-1405,-10843,-2250,-2322], +[0,-1599,-6528,-5845,-3110], [1,3,5873], [0,0,5874,5875,4], -[0,-5,-43,-20,-4,-147,-260,-138,-233,-2,-34], -[0,-2368,-100,-4704,-734,-3460,-183], +[0,-3037,-652,-668,-1942,-2094,-2100,-2269,-2399,-2410,-2541], +[0,-9846,-1599,-10844,-4002,-6724,-5554], [1,3,5877], [0,0,5878,5879,11], -[0,-1650,-5,-47,-87,-11241,-89,-6,-35,-234,-4835,-4703,-2,-74], -[0,-100,-11240,-6,-491,-866,-74,-1238,-873,-2381,-11239,-234,-31], +[0,-7057,-3037,-3040,-3052,-10845,-928,-2006,-2019,-2034,-10106,-10846,-2410,-2476], +[0,-1599,-10847,-2006,-1940,-4146,-2476,-5173,-3944,-9608,-10848,-2034,-3264], [1,3,5881], [0,5882,88,5883,4], -[0,-315,-11238,-708,-11237,-11236,-11235,-88,-11234,-4980,-1119,-4702,-4960], -[0,-3101,-1043,-390,-1602,-42,-11233,-3099,-2389,-4701,-100,-969,-107,-1728,-1243,-1119,-11232,-844,-2112,-734,-11231, --11230,-11229,-1669], +[0,-725,-10849,-1125,-10850,-10851,-10852,-1646,-10853,-9323,-2102,-10854,-9403], +[0,-10837,-8630,-3671,-10855,-856,-10856,-10857,-9409,-10858,-1599,-3437,-3862,-4328,-4846,-2102,-10859,-7650,-4065,-4002, +-10860,-10861,-10862,-6234], [1,3,5885], [0,5886,5887,5888,5], -[0,-1519,-4700,-11228,-11227,-11226,-11225,-11224,-1928,-394], -[0,-48,-309,-193,-51,-43,-3859,-1,-181,-115,-826,-150,-11223,-206,-101,-3306,-649,-221,-4708,-4707,-2707,-11222,-2439,-65, --392,-884,-2,-17,-92], -[0,-100,-217,-969,-11221,-996], +[0,-1638,-10863,-10864,-10865,-10866,-10867,-10868,-10869,-2267], +[0,-190,-3748,-469,-519,-652,-2736,-932,-960,-965,-971,-978,-10870,-1111,-1442,-8274,-1461,-1600,-10831,-10834,-3651, +-10871,-8345,-1771,-2335,-2362,-2410,-2501,-2503], +[0,-1599,-7148,-3437,-10872,-1608], [1,3,5890], [0,5891,5892,5893,10], -[0,-58,-1869,-469,-101,-649,-4699,-996,-221,-93,-11220,-3123,-311], -[0,-51,-2439,-34], -[0,-100,-996,-37,-724], +[0,-719,-822,-1353,-1442,-1461,-10873,-1608,-1600,-1645,-10874,-10430,-2654], +[0,-519,-8345,-2541], +[0,-1599,-1608,-687,-5732], [1,3,5895], [0,0,5896,5897,4], -[0,-310,-11219,-11218,-845,-295,-737,-582,-1058,-238,-1043,-26,-3614,-89,-3098,-1,-379,-221,-11217,-11216,-4698,-7,-120, --2373,-44,-2], -[0,-100,-3097,-31], +[0,-2832,-10875,-10876,-7040,-3471,-3472,-7041,-7042,-674,-8630,-767,-5382,-928,-10877,-932,-1304,-1600,-10878,-10879, +-10880,-2125,-2174,-9764,-2387,-2410], +[0,-1599,-10881,-3264], [1,3,5899], [0,5900,5901,163,4], -[0,-5883,-5882,-486,-5881,-5894,-5884,-3706,-1153,-5891,-5886,-5890,-5889,-5893,-5888,-5885,-2210,-1827,-5887,-221,-1138, --5880,-5879,-3799,-5892,-1794,-3705], -[0,-59,-238,-28,-5877,-3,-5878,-97,-134], +[0,-4321,-4322,-3649,-4323,-4309,-4320,-4308,-1395,-4313,-4318,-4314,-4315,-4311,-4316,-4319,-1550,-1554,-4317,-1600, +-1603,-4324,-4325,-3430,-4312,-2161,-4310], +[0,-633,-674,-1107,-4327,-1654,-4326,-2250,-2251], [1,3,5903], [0,5904,0,7,4], -[0,-471,-11215], +[0,-891,-10882], [1,3,5906], [0,5907,0,160,10], -[0,-291,-4697,-3945,-1319,-1824,-121,-11214,-691,-3904,-11213,-595], +[0,-567,-10883,-1493,-1566,-1571,-1967,-10884,-2055,-2069,-10885,-2489], [1,3,5909], [0,5910,5911,5912,8], -[0,-90,-11212,-3133,-11211,-5613,-11210,-1493,-5468,-11209], -[0,-11,-1230,-6083,-173,-21,-178,-5152,-69,-22,-19,-293,-98,-43,-152,-151,-11208,-1338,-1,-12,-84,-10,-265,-115,-25,-67, --823,-11207,-264,-28,-32,-615,-250,-11206,-78,-212,-189,-418,-702,-6143,-526,-72,-3,-995,-4696,-11205,-11204,-11203, --11202,-11201,-4,-287,-27,-4695,-1108,-33,-2,-17,-11200], -[0,-2348,-11199,-3422,-4694,-11198,-73,-1630,-1417,-5549,-11197,-11196,-5321,-388], +[0,-44,-10886,-10300,-10887,-5898,-10888,-2172,-6751,-10889], +[0,-23,-5585,-3391,-38,-40,-43,-8380,-3621,-427,-428,-507,-534,-652,-708,-824,-10890,-920,-932,-940,-943,-958,-964,-965, +-967,-968,-1002,-10891,-1022,-1107,-1168,-1174,-1276,-10892,-1471,-1479,-1482,-1483,-1491,-3079,-1492,-1650,-1654,-1656, +-10893,-10894,-10895,-10896,-10897,-10898,-1942,-1958,-2210,-10899,-2354,-2379,-2410,-2501,-10900], +[0,-10684,-10901,-7163,-10902,-10903,-3215,-8130,-6240,-6245,-10904,-10905,-7521,-5119], [1,3,5914], [0,5915,5916,7,10], -[0,-2028,-4693,-3558], -[0,-3,-17], +[0,-6130,-10906,-5852], +[0,-1654,-2501], [1,3,5918], [0,0,5919,5920,9], -[0,-3,-97], -[0,-1135,-11195,-3096], +[0,-1654,-2250], +[0,-1616,-10907,-10908], [1,3,5922], [0,5923,5924,5925,4], -[0,-408,-677,-3095,-936,-2053,-1519,-4692,-11194,-4691,-4690,-1928,-11193], -[0,-5,-43,-4689,-89,-3404,-1281,-1534,-1134,-11192,-4,-147,-260,-175,-233,-2,-34], -[0,-360,-100,-3097,-4688,-841,-165,-389,-934,-505,-202,-132], +[0,-4251,-4231,-10909,-9596,-5348,-1638,-10910,-10911,-10912,-10913,-10869,-10914], +[0,-3037,-652,-10915,-928,-7324,-2586,-1290,-1619,-10916,-1942,-2094,-2100,-2334,-2399,-2410,-2541], +[0,-3272,-1599,-10881,-10917,-10918,-1838,-4132,-10919,-9590,-3590,-2444], [1,3,5927], [0,5928,5929,5930,5], -[0,-246,-408,-1377,-936,-4687,-11191,-1942,-340,-483], -[0,-5,-1612,-43,-1534,-1159,-908,-2343,-3094,-4,-147,-260,-233,-2,-34], -[0,-505,-841,-4688,-428,-578,-132,-202,-100,-31], +[0,-5334,-4251,-9581,-9596,-10920,-10921,-9583,-2429,-5358], +[0,-3037,-9586,-652,-1290,-1294,-1618,-10922,-10923,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-9590,-10918,-10917,-9589,-9588,-2444,-3590,-1599,-3264], [1,3,5932], [0,0,5933,5934,6], -[0,-193,-5849], -[0,-450,-11190,-4686,-24], +[0,-469,-4712], +[0,-6582,-10924,-10925,-775], [1,3,5936], [0,5937,0,5938,5], -[0,-4685,-11189], -[0,-11188,-433,-337,-1936,-11187,-4684,-11186,-11185,-2845,-11184,-1210], +[0,-10926,-10927], +[0,-10928,-3324,-3323,-9844,-10929,-10930,-10931,-10932,-1622,-10933,-7684], [1,3,5940], [0,5941,5942,5943,4], -[0,-11183,-11182,-11181,-11180,-11179,-11178,-11177,-11176,-11175,-11174,-11173,-11172,-11171,-44], -[0,-29,-3505,-5,-2931,-293,-299,-346,-9,-11170,-8,-697,-4,-287,-197,-7,-886,-57,-211,-33,-196,-11169,-2,-195,-132,-17,-92, --170], -[0,-303,-1400,-11168,-1133,-262,-126,-1205,-4791,-935,-4683,-1375,-75,-61,-307,-4682,-11167,-11166,-11165,-11164,-11163, --11162,-11161], +[0,-10934,-10935,-10936,-10937,-10938,-10939,-10940,-10941,-10942,-10943,-10944,-10945,-10946,-2387], +[0,-3136,-6325,-3037,-496,-507,-640,-1331,-1344,-10947,-1415,-1848,-1942,-1958,-2062,-2125,-2325,-2375,-2376,-2379,-2388, +-10948,-2410,-2435,-2444,-2501,-2503,-2505], +[0,-1076,-7422,-10949,-1626,-1623,-6656,-8801,-10467,-10412,-10950,-9614,-4004,-3634,-4215,-10951,-10952,-10953,-10954, +-10955,-10956,-10957,-10958], [1,3,5945], [0,0,5946,5947,5], -[0,-673,-739,-29,-11160,-3312,-5,-22,-19,-110,-26,-1,-12,-145,-25,-823,-4681,-8,-1826,-1825,-1137,-11159,-1675,-4912, --4680,-324,-4,-7,-14,-893,-226,-1297,-321,-57,-33,-44,-2], -[0,-3551,-11158,-433,-542], +[0,-5295,-3268,-3136,-10959,-8216,-3037,-427,-428,-589,-767,-932,-940,-959,-967,-1002,-10960,-1415,-1559,-1565,-1605, +-10961,-5969,-9642,-10962,-1816,-1942,-2125,-2127,-2138,-2140,-2141,-2214,-2375,-2379,-2387,-2410], +[0,-5913,-10963,-3324,-6187], [1,3,5949], [0,0,5950,5951,5], -[0,-13,-32,-27,-11157,-364,-186,-819,-1008,-1000], -[0,-433,-11156,-631,-1069], +[0,-664,-1168,-2210,-10964,-1231,-2211,-1224,-1220,-1453], +[0,-3324,-10965,-5493,-6005], [1,3,5953], [0,5954,5955,5956,8], -[0,-11155,-197], -[0,-2255,-2009,-56,-1,-66,-3,-82], -[0,-303,-935], +[0,-10966,-2062], +[0,-599,-6774,-756,-932,-1405,-1654,-2198], +[0,-1076,-10412], [1,3,5958], [0,0,5959,5960,5], -[0,-421,-3,-54,-167,-1010,-177,-522], -[0,-935,-75,-245,-1269,-940,-299], +[0,-1003,-1654,-1127,-1132,-1156,-1144,-1980], +[0,-10412,-4004,-5827,-3674,-8027,-640], [1,3,5962], [0,0,5963,7,4], -[0,-3,-82,-610], +[0,-1654,-2198,-1733], [1,3,5965], [0,68,15,16,6], [1,3,5967], [0,0,5968,5969,5], -[0,-80,-231,-63,-1071,-725,-51,-11154,-473,-1870,-11153,-11152,-118,-206,-817,-11151,-2509,-1453,-1802,-3647,-14,-415, --894,-2652,-11150,-81,-210,-2,-34,-518], -[0,-37,-1386,-132,-202,-2105,-1250,-308,-1063,-467,-11149,-11148,-73,-854,-1428,-336,-1214,-194], +[0,-350,-4062,-351,-5918,-5686,-519,-10967,-722,-813,-10968,-10969,-999,-1111,-1366,-10970,-6904,-3609,-2060,-5120,-2127, +-2132,-2134,-4621,-10971,-2384,-2400,-2410,-2541,-2551], +[0,-687,-8425,-2444,-3590,-4187,-4378,-3957,-6722,-1630,-10972,-10973,-3215,-5829,-5272,-3962,-7095,-4000], [1,3,5971], [0,0,5972,5973,4], -[0,-109,-69,-5,-13,-289,-3,-2,-17,-92], -[0,-494,-772,-444,-536,-406,-91], +[0,-3035,-3621,-3037,-664,-726,-1654,-2410,-2501,-2503], +[0,-1631,-7371,-1015,-702,-7208,-4865], [1,3,5975], [0,0,5976,7,4], -[0,-11147,-66], +[0,-10974,-1405], [1,3,5978], [0,5979,5980,5981,4], -[0,-119,-58,-36,-708,-5457,-11146,-362,-11145,-11144], -[0,-283,-48,-11143,-5848,-162,-634,-5,-11142,-43,-1,-10,-115,-55,-3,-4,-373,-884,-2], -[0,-856,-2049,-126,-2401,-878,-2731,-114,-100,-3819,-2844,-259], +[0,-679,-719,-812,-1125,-6796,-10975,-1639,-10976,-10977], +[0,-3244,-190,-10978,-4715,-3198,-4036,-3037,-10979,-652,-932,-958,-965,-1110,-1654,-1942,-2091,-2362,-2410], +[0,-5142,-5372,-6656,-9204,-3258,-3260,-3262,-1599,-3259,-1633,-2548], [1,3,5983], [0,5984,0,7,10], -[0,-11141,-1679,-759,-11140,-11139,-7,-16,-312,-156], +[0,-10980,-5676,-1343,-10981,-10982,-2125,-2177,-2323,-2359], [1,3,5986], [0,5987,5988,7,8], -[0,-980,-36,-1131,-751], -[0,-3,-1,-66,-125,-76,-10,-67,-84,-214,-131], +[0,-2453,-812,-1636,-1840], +[0,-1654,-932,-1405,-2293,-966,-958,-968,-943,-963,-974], [1,3,5990], [0,0,5991,5992,5], -[0,-3,-66], -[0,-105,-1131], +[0,-1654,-1405], +[0,-1334,-1636], [1,3,5994], [0,5995,5996,5997,11], -[0,-11,-216,-4679,-974,-971,-1273,-6090,-21,-1068,-136,-513,-203,-80,-231,-63,-11138,-11137,-160,-1266,-11136,-11135, --4946,-1571,-446,-424,-761,-1160,-495,-1319,-38,-523,-14,-5593,-1246,-226,-301,-640,-1707,-175,-3093,-44,-2], -[0,-50,-781,-11134,-1627,-366,-86,-26,-11133,-1,-11132,-12,-25,-381,-40,-9,-8,-18,-11131,-4,-342,-7,-749,-138], -[0,-1084,-14,-11130], +[0,-23,-26,-10983,-3077,-3203,-3408,-3357,-40,-6056,-41,-4066,-3326,-350,-4062,-351,-10984,-10985,-518,-3766,-10986, +-10987,-9459,-644,-656,-930,-1044,-1273,-1496,-1566,-1889,-1948,-2127,-5994,-4753,-2140,-2142,-2144,-5037,-2334,-10988, +-2387,-2410], +[0,-21,-5870,-10989,-8280,-50,-533,-767,-10990,-932,-10991,-940,-967,-985,-1077,-1344,-1415,-1534,-10992,-1942,-2082, +-2125,-2194,-2269], +[0,-4161,-2127,-10993], [1,3,5999], [0,6000,0,6001,4], -[0,-162,-36,-3095,-936,-4700,-11129,-5298,-11128,-11127,-4692,-6217,-4691,-11126,-4687,-11125,-4690,-1928], -[0,-1043,-593,-2101,-31,-3420,-100,-3097,-969,-133,-165,-73,-107,-287,-274,-844,-2112,-3284,-2138], +[0,-3198,-812,-10909,-9596,-10863,-10994,-7666,-10995,-10996,-10910,-2785,-10912,-10997,-10920,-10998,-10913,-10869], +[0,-8630,-3116,-4329,-3264,-7184,-1599,-10881,-3437,-2427,-1838,-3215,-3862,-1958,-2093,-7650,-4065,-8451,-3579], [1,3,6003], [0,6004,6005,6006,5], -[0,-2364,-323], -[0,-3,-93,-4678,-707], -[0,-1060,-11124,-11123,-1636,-4677,-1630,-4856,-11122,-126,-625,-719,-630,-28,-1950,-3242,-4855,-11121,-11120,-11119,-511, --2038,-2713,-4749,-362,-93,-1513,-11118,-11117,-248,-947,-2081,-11116,-948,-1075,-3320,-254,-11115,-1951], +[0,-9968,-1864], +[0,-1654,-1645,-10999,-1202], +[0,-6836,-11000,-11001,-7727,-11002,-8130,-9969,-11003,-6656,-6999,-7724,-5573,-1107,-9095,-9096,-9970,-11004,-11005, +-11006,-5572,-5912,-3581,-10590,-1639,-1645,-1686,-11007,-11008,-1847,-5574,-5064,-11009,-5569,-5570,-8129,-5550,-11010, +-9087], [1,3,6008], [0,0,6009,6010,4], -[0,-4676,-1089,-5,-22,-19,-20,-11114,-344,-4,-4675,-4674,-2], -[0,-1690,-126,-261,-2342,-11113,-132], +[0,-11011,-3713,-3037,-427,-428,-668,-11012,-1641,-1942,-11013,-11014,-2410], +[0,-5195,-6656,-1640,-11015,-11016,-2444], [1,3,6012], [0,6013,129,6014,10], -[0,-2342], -[0,-261,-635], +[0,-11015], +[0,-1640,-3694], [1,3,6016], [0,119,120,6017,4], -[0,-11112,-4673,-11111,-11110,-4672,-11109,-11108,-11107,-11106,-4673,-11105,-11104,-11103,-11102,-11101,-11100,-11099, --4671,-11098,-11097,-11096,-1616,-3092,-4670,-11095,-11094,-11093,-11092,-11091,-11090,-11089,-11088,-3385,-11087,-11086, --5319,-5318,-45,-3389,-1638,-270,-2,-3388,-733,-436,-3091,-1645,-450,-1213,-3384,-3383,-2479,-3382,-3381,-3380,-3379, --3378,-3377,-3376,-3375,-1382,-1221,-3567, --11085,-11084,-3386,-772,-5320,-1985,-3374,-846,-3373,-3372,-3371,-3370,-3369,-3368,-3367,-3366,-2478,-132,-1399,-3365, --2622,-3364,-4669,-542,-3363,-42,-1404], +[0,-11017,-11018,-11019,-11020,-11021,-11022,-11023,-11024,-11025,-11018,-11026,-11027,-11028,-11029,-11030,-11031,-11032, +-11033,-11034,-11035,-11036,-9234,-11037,-11038,-11039,-11040,-11041,-11042,-11043,-11044,-11045,-11046,-7530,-11047, +-11048,-7561,-7562,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-11049,-7283,-6582,-7534,-7535,-7536,-7537,-7538, +-7539,-7540,-7541,-7542,-7543,-7544,-7545,-8807,-6599,-5756, +-11050,-11051,-7503,-7371,-7546,-7547,-7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558, +-7559,-5063,-7560,-11052,-6187,-7563,-856,-7275], [1,3,6019], [0,6020,6021,6022,11], -[0,-639,-1291], -[0,-50,-11,-21,-49,-62,-48,-514,-309,-5,-476,-26,-425,-144,-151,-237,-1338,-1,-12,-583,-10,-145,-181,-115,-25,-150,-277, --55,-9,-8,-176,-79,-18,-262,-65,-4,-77,-462,-134,-2,-83,-17,-92,-170], -[0,-17,-24,-943,-1670], +[0,-2168,-2321], +[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-3037,-620,-767,-774,-778,-824,-825,-920,-932,-940,-6929,-958,-959,-960,-965, +-967,-978,-1041,-1110,-1344,-1415,-1419,-1449,-1534,-1623,-1771,-1942,-2162,-2163,-2251,-2410,-2411,-2501,-2503,-2505], +[0,-2501,-775,-7347,-6211], [1,3,6024], [0,6025,6026,6027,5], -[0,-11083,-252,-576,-11082,-36,-89,-349,-11081,-1452,-11080,-11079,-175,-11078,-11077], -[0,-11076,-1,-11075,-11074,-5859,-11073], -[0,-227,-1996,-270,-24,-1703,-31,-2031], +[0,-11053,-367,-683,-11054,-812,-928,-1047,-11055,-3751,-11056,-11057,-2334,-11058,-11059], +[0,-11060,-932,-11061,-11062,-4653,-11063], +[0,-1644,-7173,-3756,-775,-5094,-3264,-6118], [1,3,6029], [0,6030,6031,7,11], -[0,-4668], -[0,-85,-555,-72,-124,-4,-5], +[0,-11064], +[0,-2319,-2386,-1650,-2402,-1942,-3037], [1,3,6033], [0,0,6034,6035,4], -[0,-766,-15,-39,-1,-275,-213,-279,-187,-239], -[0,-1250,-4925,-73,-565], +[0,-515,-1788,-2322,-932,-1777,-1365,-516,-2156,-5834], +[0,-4378,-9568,-3215,-1813], [1,3,6037], [0,6038,6039,6040,4], -[0,-58,-1128], -[0,-2434,-8,-4,-57,-2], -[0,-11072,-11071,-11070], +[0,-719,-1730], +[0,-8477,-1415,-1942,-2375,-2410], +[0,-11065,-11066,-11067], [1,3,6042], [0,0,6043,6044,9], -[0,-11069,-5,-2577,-43,-12,-4,-85,-33,-124,-2], -[0,-2413,-405,-4667,-1379,-1927,-772,-484], +[0,-11068,-3037,-5866,-652,-940,-1942,-2319,-2379,-2402,-2410], +[0,-8988,-7421,-11069,-9218,-11070,-7371,-5269], [1,3,6046], [0,6047,6048,7,5], -[0,-208,-606,-1660,-2341], -[0,-5,-103,-1567,-1,-1552,-1758,-527,-4,-1411,-2,-1287,-30], +[0,-461,-1852,-6568,-11071], +[0,-3037,-3664,-672,-932,-944,-3190,-1431,-1942,-6570,-2410,-2423,-2469], [1,3,6050], [0,0,6051,6052,4], -[0,-11,-216,-622,-173,-21,-140,-90,-4666,-420], -[0,-1317,-4665,-5607,-108,-6,-516,-2340,-1673,-11068,-11067,-11066,-11065], +[0,-23,-26,-33,-38,-40,-42,-44,-11072,-1059], +[0,-1652,-11073,-5927,-3159,-2006,-3476,-11074,-6106,-11075,-11076,-11077,-11078], [1,3,6054], [0,6055,6056,6057,5], -[0,-4664], -[0,-1317,-4664,-4663], -[0,-1317,-4665,-108,-6,-516,-2340], +[0,-11079], +[0,-1652,-11079,-11080], +[0,-1652,-11073,-3159,-2006,-3476,-11074], [1,3,6059], [0,6060,6061,6062,4], -[0,-1158,-567,-207,-28,-36,-96,-349,-101,-119,-93,-164,-2699,-647,-518,-11064,-1401,-461,-11063,-599,-424,-1114], -[0,-15,-13,-811,-166,-78,-27,-11062,-1,-1817,-274,-7,-14,-16,-55,-3090,-17,-4,-26,-48,-11061,-2,-11060,-5,-419,-189,-221, --92,-413,-316,-997,-343,-1720,-6571,-11059,-11058,-11057,-11056,-115,-1451,-525,-11055,-1463,-1138,-6147,-998,-231, --11054,-513,-418,-812,-139,-80,-11053,-640,-3538,-1299,-63,-2377,-11052,-11051], -[0,-3,-75,-591,-543,-85,-61,-13,-1072,-51,-8,-39,-199,-78], +[0,-1297,-1681,-834,-1107,-812,-2550,-1047,-1442,-679,-1645,-1863,-3730,-1574,-2551,-11081,-7408,-2297,-11082,-2271,-930, +-2182], +[0,-1788,-664,-1498,-1446,-1471,-2210,-11083,-932,-1708,-2093,-2125,-2127,-2177,-1110,-11084,-2501,-1942,-767,-190,-11085, +-2410,-11086,-3037,-1339,-1482,-1600,-2503,-3041,-711,-1607,-1772,-4655,-27,-11087,-11088,-11089,-11090,-965,-3781,-1609, +-11091,-3425,-1603,-3060,-1601,-4062,-11092,-4066,-1483,-1488,-1475,-350,-11093,-2144,-5995,-2136,-351,-9701,-11094, +-11095], +[0,-1654,-4004,-3440,-4873,-2319,-3634,-664,-5855,-519,-1415,-2322,-1412,-1471], [1,3,6064], [0,6065,6066,6067,6], -[0,-587,-157], -[0,-13,-3,-4769,-2], -[0,-3,-1090,-157,-4662], +[0,-4377,-1978], +[0,-664,-1654,-10534,-2410], +[0,-1654,-3636,-1978,-11096], [1,3,6069], [0,6070,6071,6072,5], -[0,-36,-1135,-72,-138,-506], -[0,-662,-13,-11050,-1,-3,-7,-4661,-11049], -[0,-3,-4660,-946], +[0,-812,-1616,-1650,-2269,-6597], +[0,-357,-664,-11097,-932,-1654,-2125,-11098,-11099], +[0,-1654,-11100,-6863], [1,3,6074], [0,0,0,6075,11], -[0,-3,-946,-11048,-787], +[0,-1654,-6863,-11101,-4005], [1,3,6077], [0,0,6078,6079,5], -[0,-13,-1,-3244,-3,-7,-16], -[0,-307,-303,-75,-5210,-1205,-935], +[0,-664,-932,-9072,-1654,-2125,-2177], +[0,-4215,-1076,-4004,-8101,-8801,-10412], [1,3,6081], [0,6082,6083,6084,8], -[0,-11047,-1850,-4659,-4658,-706,-1151,-1312], -[0,-310,-239,-1392,-11046,-11045,-11044,-11043,-11042,-5216,-11041,-5215,-5054,-3321,-5214,-5213,-5212,-5,-11040,-5211, --664,-279,-510,-1555,-1,-1166,-1015,-1323,-213,-275,-15,-187,-39], -[0,-61,-307,-406,-1056,-853,-4657,-75,-775,-4656], +[0,-11102,-1083,-11103,-11104,-1285,-1402,-1794], +[0,-2832,-5834,-8084,-11105,-11106,-11107,-11108,-11109,-8088,-11110,-8089,-8939,-8090,-8091,-8092,-8093,-3037,-11111, +-8094,-8096,-516,-5835,-921,-932,-993,-1065,-1283,-1365,-1777,-1788,-2156,-2322], +[0,-3634,-4215,-7208,-7153,-5846,-11112,-4004,-6693,-11113], [1,3,6086], [0,6087,6088,231,4], -[0,-2593,-1509], -[0,-26,-1,-3], +[0,-5505,-1759], +[0,-767,-932,-1654], [1,3,6090], [0,0,27,6091,6], -[0,-75,-307,-141,-303,-1446], +[0,-4004,-4215,-3966,-1076,-3972], [1,3,6093], [0,0,6094,6095,5], -[0,-3,-14,-301,-82,-2], -[0,-956,-307,-75], +[0,-1654,-2127,-2142,-2198,-2410], +[0,-4121,-4215,-4004], [1,3,6097], [0,0,6098,6099,6], -[0,-66,-117,-27,-11038,-1481], -[0,-307,-1384,-407,-358,-433,-388,-75,-4655,-61,-543], +[0,-1405,-1452,-2210,-11115,-2471], +[0,-4215,-8611,-4792,-3551,-3324,-5119,-4004,-11116,-3634,-4873], [1,3,6101], [0,75,6102,6103,5], -[0,-32,-3978,-2339,-1008,-819,-364,-11037,-117,-1000,-17], -[0,-307,-11036,-11035], +[0,-1168,-1190,-11117,-1220,-1224,-1231,-11118,-1452,-1453,-2501], +[0,-4215,-11119,-11120], [1,3,6105], [0,6106,6107,6108,4], -[0,-587,-28,-495,-23,-1926,-442,-188,-1858,-11034,-11033], -[0,-756,-81,-11032,-8,-2841,-11031,-1307,-36,-11030,-1347,-11029,-215,-1,-2208,-11028,-2932,-2216,-288,-11027,-33,-552, --11026,-11025,-496,-11024,-4,-56,-11023,-913,-6373,-125,-11022,-1805,-2,-4654,-5,-11021,-11020,-11019,-11018,-11017, --11016,-11015,-11014,-4795,-11013,-11012,-76,-11011,-662,-11010,-67,-12,-25,-762], -[0,-1601,-2024,-52,-46,-11009,-3360,-4653,-1925,-3651,-2369,-3089], +[0,-4377,-1107,-1496,-1548,-11121,-1582,-1729,-995,-11122,-11123], +[0,-1435,-2384,-11124,-1415,-1680,-11125,-1867,-812,-11126,-648,-11127,-865,-932,-1576,-11128,-473,-1388,-1753,-11129, +-2379,-2520,-11130,-11131,-1417,-11132,-1942,-756,-11133,-1418,-1765,-2293,-11134,-1969,-2410,-11135,-3037,-11136,-11137, +-11138,-11139,-11140,-11141,-11142,-11143,-10453,-11144,-11145,-966,-11146,-357,-11147,-968,-940,-967,-972], +[0,-11148,-6209,-3161,-3445,-11149,-7586,-11150,-11151,-5078,-9840,-11152], [1,3,6110], [0,0,6111,6112,5], -[0,-375,-14,-26,-2,-5,-812], -[0,-236,-956,-588,-165,-550,-509,-1157,-1938,-2338], +[0,-1989,-2127,-767,-2410,-3037,-1488], +[0,-1666,-4121,-4123,-1838,-3276,-5874,-1348,-9772,-11153], [1,3,6114], [0,6115,6116,6117,4], -[0,-236], -[0,-54,-243,-177,-365,-347,-3135,-2], -[0,-236,-956,-588,-4652,-11008,-11007,-11006,-4651], +[0,-1666], +[0,-1127,-1134,-1144,-1146,-1148,-10264,-2410], +[0,-1666,-4121,-4123,-11154,-11155,-11156,-11157,-11158], [1,3,6119], [0,6120,6121,6122,5], -[0,-649,-11005,-11004,-11003,-11002,-697,-4,-11001,-4650,-4649,-259], -[0,-11000,-1469,-103,-89,-2411,-398,-147,-2337,-2,-30,-10999], -[0,-412,-53,-184,-10998,-2411,-259], +[0,-1461,-11159,-11160,-11161,-11162,-1848,-1942,-11163,-11164,-11165,-2548], +[0,-11166,-2970,-3664,-928,-9002,-1874,-2094,-11167,-2410,-2469,-11168], +[0,-3496,-3100,-3577,-11169,-9002,-2548], [1,3,6124], [0,0,6125,6126,10], -[0,-48,-5,-103,-1,-12,-762,-150,-4,-7,-124,-794,-3405,-2,-83,-104,-847,-30], -[0,-10997,-10996,-10995,-854,-10994,-184,-46], +[0,-190,-3037,-3664,-932,-940,-972,-978,-1942,-2125,-2402,-2405,-7322,-2410,-2411,-2466,-6859,-2469], +[0,-11170,-11171,-11172,-5829,-11173,-3577,-3445], [1,3,6128], [0,6129,6130,6131,8], -[0,-3453,-4648,-3452,-3454,-10993,-3455,-3264,-10992,-10991,-790,-3088,-168,-476,-10990,-1881,-1181,-58,-619,-26,-6498, --215,-6474,-41,-2665,-920,-1544,-10989,-10988,-705,-249,-6016,-2204,-376,-10987,-700,-164,-10986,-1793], -[0,-11,-161,-21,-4647,-10985,-98,-13,-1878,-289,-535,-144,-502,-1,-191,-10,-150,-10984,-277,-9,-3,-1924,-1511,-288,-154, --125,-17,-92], -[0,-3263,-10983,-1399,-386,-4646,-1447,-10982,-10981,-1216,-376,-10980,-4645,-10979], +[0,-6779,-11174,-6780,-6777,-11175,-6776,-8843,-11176,-11177,-2997,-11178,-617,-620,-11179,-637,-709,-719,-744,-767,-787, +-865,-919,-1004,-4206,-1010,-1055,-11180,-11181,-1320,-1437,-3725,-1635,-1671,-11182,-1676,-1863,-11183,-2185], +[0,-23,-32,-40,-11184,-11185,-534,-664,-684,-726,-748,-778,-795,-932,-934,-958,-978,-11186,-1041,-1344,-1654,-11187,-1734, +-1753,-2275,-2293,-2501,-2503], +[0,-8856,-11188,-7558,-7685,-11189,-3964,-11190,-11191,-6857,-1671,-11192,-11193,-11194], [1,3,6133], [0,6134,6135,6136,8], -[0,-1881,-10978,-10977], -[0,-15,-81,-2336,-13,-20,-3,-27,-4644,-96,-1,-16,-10976,-41,-101,-33,-4,-186,-2,-3821,-109,-5,-2250,-10975,-69,-269, --10974,-137,-257,-10973,-10972,-10971,-10970,-1270,-10969,-10968,-146,-265,-1170,-12,-25,-2276,-478,-19,-4643,-5519, --2375,-4642,-22,-859,-1357], -[0,-376,-1935,-5778], +[0,-637,-11195,-11196], +[0,-1788,-2384,-11197,-664,-668,-1654,-2210,-11198,-2550,-932,-2177,-11199,-1004,-1442,-2379,-1942,-2211,-2410,-3241, +-3035,-3037,-667,-11200,-3621,-4372,-11201,-3199,-3617,-11202,-11203,-11204,-11205,-3625,-11206,-11207,-2234,-964,-977, +-940,-967,-264,-262,-428,-11208,-6424,-9724,-11209,-427,-4814,-234], +[0,-1671,-9879,-5041], [1,3,6138], [0,6139,6140,6141,10], -[0,-10967,-376,-10966,-10965,-567,-10964], -[0,-10963,-10962,-5,-10961,-10960,-10959,-193,-43,-238,-3351,-1,-3541,-41,-40,-379,-5016,-1826,-10958,-5101,-228,-72,-3, --236,-4643,-1924,-4641,-752,-643,-27,-6259,-2,-83,-123], -[0,-376,-1602,-1673,-318,-386,-4640,-450,-4639,-676,-1210,-808,-718], +[0,-11210,-1671,-11211,-11212,-1681,-11213], +[0,-11214,-11215,-3037,-11216,-11217,-11218,-469,-652,-674,-7743,-932,-5984,-1004,-1077,-1304,-9150,-1559,-11219,-8554, +-1610,-1650,-1654,-1666,-11208,-11187,-11220,-1705,-1974,-2210,-2655,-2410,-2411,-2446], +[0,-1671,-10855,-6106,-4058,-7685,-11221,-6582,-11222,-5101,-7684,-1818,-7773], [1,3,6143], [0,6144,232,6145,5], -[0,-1177,-353,-2257,-800,-247,-1295,-4638], -[0,-1316,-4637,-4636,-771,-10957,-10956], +[0,-763,-727,-573,-2228,-2424,-2229,-11223], +[0,-1673,-11224,-11225,-8841,-11226,-11227], [1,3,6147], [0,6148,232,6149,5], -[0,-353,-223,-1316,-10955,-4638], -[0,-1316,-2335,-4637,-4636,-1600,-3610,-771,-10954], +[0,-727,-729,-1673,-11228,-11223], +[0,-1673,-11229,-11224,-11225,-11230,-5412,-8841,-11231], [1,3,6151], [0,6152,6153,6154,8], -[0,-4635,-36,-376,-10953,-10952,-10951,-10950,-10949,-10948,-242], -[0,-51,-152,-1,-84,-2234,-10,-76,-67,-131,-10947,-10946,-10945,-10944,-10943,-10942,-10941,-15], -[0,-6390,-376,-1216,-1935], +[0,-11232,-812,-1671,-11233,-11234,-11235,-11236,-11237,-11238,-1792], +[0,-519,-708,-932,-943,-950,-958,-966,-968,-974,-11239,-11240,-11241,-11242,-11243,-11244,-11245,-1788], +[0,-1675,-1671,-6857,-9879], [1,3,6156], [0,6157,6158,6159,5], -[0,-1574,-36,-1173,-992,-2517], -[0,-1,-84,-10,-214,-76,-67,-131,-3,-15,-798,-125], -[0,-41,-105,-738,-332], +[0,-579,-812,-828,-1800,-6825], +[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2239,-2293], +[0,-1004,-1334,-3444,-5401], [1,3,6161], [0,44,15,16,10], [1,3,6163], [0,6164,6165,6166,10], -[0,-205,-1797,-36,-4644,-889,-10940,-10939,-88,-454,-442,-10938,-315,-10937,-197,-10936,-3511], -[0,-15,-13,-39,-27,-1,-918,-72,-7,-82,-1792,-89,-55,-33,-119,-4,-10935,-48,-235,-373,-2,-109,-5,-664,-269,-1864,-10934, --10933,-283,-3087,-2056,-877,-2641,-10932,-10,-12,-25,-19,-404,-1274,-10931,-22,-861], -[0,-2841,-10930,-717,-3288], +[0,-2531,-2124,-812,-11198,-2240,-11246,-11247,-1646,-4204,-1582,-11248,-725,-11249,-2062,-11250,-6279], +[0,-1788,-664,-2322,-2210,-932,-1109,-1650,-2125,-2198,-2226,-928,-1110,-2379,-679,-1942,-11251,-190,-1939,-2091,-2410, +-3035,-3037,-8096,-4372,-908,-11252,-11253,-3244,-11254,-5325,-3311,-4805,-11255,-958,-940,-967,-428,-740,-3312,-11256, +-427,-4646], +[0,-1680,-11257,-8403,-8404], [1,3,6168], [0,0,6169,7,8], -[0,-9,-3,-1,-4,-421,-18], +[0,-1344,-1654,-932,-1942,-1003,-1534], [1,3,6171], [0,6172,6173,6174,10], -[0,-10929,-58,-36,-4802,-2354], -[0,-49,-62,-845,-737,-582,-1058,-3,-120,-97], -[0,-386,-1819,-1932,-209,-10928,-2347,-10927,-10926,-2354,-10925,-2347,-10924,-1421,-10923], +[0,-11258,-719,-812,-10414,-10417], +[0,-86,-3307,-7040,-3472,-7041,-7042,-1654,-2174,-2250], +[0,-7685,-1682,-10424,-3844,-11259,-10704,-11260,-11261,-10417,-11262,-10704,-11263,-5800,-11264], [1,3,6176], [0,6177,6178,6179,11], -[0,-3843,-2275,-5925,-10922,-352,-380,-10921,-5924,-5923,-563,-164,-10920,-1294,-2666,-1106,-210,-10919,-96], -[0,-49,-62,-10918,-283,-48,-4634,-6100,-5922,-5921,-357,-257,-10917,-5,-10916,-22,-19,-3817,-201,-1678,-503,-26,-2244, --298,-89,-1264,-1,-12,-25,-41,-1164,-5192,-28,-79,-4633,-811,-18,-10915,-4,-459,-342,-7,-970,-171,-2,-83,-284,-438,-30, --5918,-17,-5917,-810], -[0,-99,-307,-2673,-1959,-4711,-209,-1234,-3282,-61,-184,-2094], +[0,-2946,-269,-4190,-11265,-743,-1122,-11266,-4193,-4194,-1851,-1863,-11267,-2255,-4195,-2364,-2400,-11268,-2550], +[0,-86,-3307,-11269,-3244,-190,-11270,-3316,-4196,-4197,-3983,-3617,-11271,-3037,-11272,-427,-428,-3310,-523,-5859,-720, +-767,-768,-796,-928,-3808,-932,-940,-967,-1004,-1030,-8151,-1107,-1449,-11273,-1498,-1534,-11274,-1942,-2910,-2082,-2125, +-3246,-2391,-2410,-2411,-2426,-2437,-2469,-4209,-2501,-4211,-1683], +[0,-3690,-4215,-4041,-8615,-10807,-3844,-5196,-8481,-3634,-3577,-4725], [1,3,6181], [0,6182,6183,6184,4], -[0,-10914,-1569,-315,-72,-242,-981,-742], -[0,-830,-41,-657,-10913,-3,-15,-7,-97,-10912], -[0,-546,-4895,-2015,-657,-10911,-41,-332], +[0,-11275,-649,-725,-1650,-1792,-2401,-2546], +[0,-821,-1004,-1069,-11276,-1654,-1788,-2125,-2250,-11277], +[0,-4053,-9751,-6463,-1069,-11278,-1004,-5401], [1,3,6186], [0,6187,14,6188,4], -[0,-3203,-10910,-93], -[0,-1636,-630,-28,-1950,-3242,-511,-2038,-93,-947,-2081,-1951], +[0,-9491,-11279,-1645], +[0,-7727,-5573,-1107,-9095,-9096,-5572,-5912,-1645,-5574,-5064,-9087], [1,3,6190], [0,6191,6192,6193,5], -[0,-1484,-652,-488], -[0,-15,-4632,-3,-1,-72,-7,-688,-6330,-214], -[0,-126,-1053,-1014,-245,-1070], +[0,-2418,-1335,-2155], +[0,-1788,-11280,-1654,-932,-1650,-2125,-2291,-2108,-963], +[0,-6656,-7764,-1070,-5827,-5940], [1,3,6195], [0,6196,6197,6198,4], -[0,-630,-40,-2864,-23,-1464,-149,-123], -[0,-199,-15,-10909,-373], -[0,-1874,-31,-10908,-6387,-10907,-10906], +[0,-5573,-1077,-1462,-1548,-3222,-1805,-2446], +[0,-1412,-1788,-11281,-2091], +[0,-793,-3264,-11282,-1688,-11283,-11284], [1,3,6200], [0,0,6201,6202,4], -[0,-381,-13,-976,-3,-1,-117,-14,-157,-112], -[0,-524,-271,-740,-351], +[0,-985,-664,-2568,-1654,-932,-1452,-2127,-1978,-2416], +[0,-1689,-3110,-3261,-888], [1,3,6204], [0,0,6205,6206,10], -[0,-215,-32,-530,-3972,-9,-78,-139,-1830,-812,-4631,-10905,-4,-4786,-375,-7,-14,-175,-10904], -[0,-1718,-679,-10903,-719,-1645,-1212], +[0,-865,-1168,-1197,-1251,-1344,-1471,-1475,-1485,-1488,-11285,-11286,-1942,-10496,-1989,-2125,-2127,-2334,-11287], +[0,-4672,-3999,-11288,-7724,-7283,-7581], [1,3,6208], [0,6209,6210,7,11], -[0,-2256,-197,-488,-10902], -[0,-838,-1,-1493,-4630,-10901,-10900], +[0,-595,-2062,-2155,-11289], +[0,-465,-932,-2172,-11290,-11291,-11292], [1,3,6212], [0,6213,6214,6215,4], -[0,-2207,-4857,-4804,-470,-10899,-10898,-10897,-10896], -[0,-43,-153,-10895,-55,-4,-110,-26,-48,-644,-2,-5,-10894,-283,-514,-2137,-12,-25,-19,-10893,-22,-3576], -[0,-566,-337,-209], +[0,-1578,-9953,-10401,-1351,-11293,-11294,-11295,-11296], +[0,-652,-2392,-11297,-1110,-1942,-589,-767,-190,-1888,-2410,-3037,-11298,-3244,-3560,-3606,-940,-967,-428,-11299,-427, +-5706], +[0,-1691,-3323,-3844], [1,3,6217], [0,6218,6219,6220,11], -[0,-5041,-242,-5040], -[0,-66,-116,-3], -[0,-2457,-172,-4629,-2334,-339], +[0,-8993,-1792,-8994], +[0,-1405,-615,-1654], +[0,-8124,-1961,-11300,-11301,-3184], [1,3,6222], [0,0,6223,6224,4], -[0,-10892], -[0,-3929,-141,-663,-1202,-10891,-141,-773,-1217], +[0,-11302], +[0,-1784,-3966,-9318,-9800,-11303,-3966,-7304,-6845], [1,3,6226], [0,0,6227,7,4], -[0,-711,-58,-28,-113,-197,-85,-742], +[0,-596,-719,-1107,-2105,-2062,-2319,-2546], [1,3,6229], [0,0,6230,6231,4], -[0,-284,-5,-2], -[0,-4628,-450,-113,-106,-1210,-1925,-3938,-386], +[0,-2426,-3037,-2410], +[0,-11304,-6582,-2105,-4055,-7684,-11151,-1697,-7685], [1,3,6233], [0,6234,6235,6236,5], -[0,-1763,-1176,-764,-10890,-4697,-10889,-3416,-1742], -[0,-1440,-1081,-950,-29,-5,-972,-47,-1,-3696,-9,-10888,-8,-1525,-10887,-18,-4,-121,-6,-35,-286,-7,-146,-211,-44,-2,-17, --520,-170,-686], -[0,-24,-225,-548,-10886,-3938,-10885,-6,-270,-10884,-1265,-10883,-1923,-129,-888,-10882,-1922,-1275], +[0,-3115,-781,-786,-11305,-10883,-11306,-7222,-3768], +[0,-4757,-4754,-4749,-3136,-3037,-3140,-3040,-932,-4650,-1344,-11307,-1415,-1520,-11308,-1534,-1942,-1967,-2006,-2019, +-2052,-2125,-2234,-2376,-2387,-2410,-2501,-2502,-2505,-2552], +[0,-775,-5553,-3770,-11309,-1697,-11310,-2006,-3756,-11311,-3771,-11312,-11313,-3095,-2278,-11314,-11315,-3271], [1,3,6238], [0,0,0,6239,8], -[0,-123,-850,-2491,-195], +[0,-2446,-6555,-7231,-2435], [1,3,6241], [0,6242,6243,6244,4], -[0,-5257,-201,-6482,-40,-10881,-10880,-1522,-752,-10879,-2185,-146,-156,-96], -[0,-162,-185,-10878,-29,-3238,-5,-10877,-736,-413,-22,-19,-471,-1,-12,-25,-8,-398,-4,-7,-211,-2,-17,-92], -[0,-1200,-471,-300,-484,-1955], +[0,-7872,-523,-893,-1077,-11316,-11317,-1577,-1705,-11318,-2160,-2234,-2359,-2550], +[0,-3198,-3048,-11319,-3136,-9143,-3037,-11320,-3628,-3041,-427,-428,-891,-932,-940,-967,-1415,-1874,-1942,-2125,-2376, +-2410,-2501,-2503], +[0,-11321,-891,-3994,-5269,-8911], [1,3,6246], [0,6247,6248,6249,6], -[0,-205,-324,-312,-3949,-149,-123,-201,-224,-1305,-96,-3260,-23,-2208,-228,-72,-1309,-16,-3357,-6284,-551,-1168,-397,-272, --928,-119,-4,-3917,-796,-93,-10876,-661,-600,-130,-2,-10875,-2680,-10874,-10873,-10872,-2422,-10871,-3086,-2020,-1635, --1499,-930,-10870,-10869,-10868,-472,-5066,-10867,-10866,-10865,-10864,-10863], -[0,-13,-54,-9,-3,-27,-4742,-66,-454,-1423,-109,-5,-680,-821,-18,-5909,-2333,-10862,-269,-413,-4627,-142,-10861,-137, --10860,-10859,-2332,-788,-1744,-2032,-4626,-10858,-244,-532,-146,-243,-302,-4625,-2331,-732,-4624,-3823,-10857,-404], -[0,-6386,-2,-45], +[0,-2531,-1816,-2323,-1430,-1805,-2446,-523,-712,-1875,-2550,-8898,-1548,-1576,-1610,-1650,-1831,-2177,-7680,-2519,-2536, +-987,-1966,-2195,-501,-679,-1942,-1981,-2378,-1645,-11322,-695,-2205,-2231,-2410,-11323,-3950,-11324,-11325,-11326,-8888, +-11327,-11328,-6294,-7772,-1982,-280,-11329,-11330,-11331,-742,-8880,-11332,-11333,-11334,-11335,-11336], +[0,-664,-1127,-1344,-1654,-2210,-10645,-1405,-4204,-5673,-3035,-3037,-3738,-1162,-1534,-4248,-11337,-11338,-4372,-3041, +-11339,-3044,-11340,-3199,-11341,-11342,-11343,-3735,-3714,-6114,-11344,-11345,-665,-1138,-2234,-1134,-1149,-11346, +-11347,-4269,-11348,-3202,-11349,-740], +[0,-1702,-2410,-3214], [1,3,6251], [0,6252,6253,6254,6], -[0,-10856,-10855,-10854,-215,-419,-10853,-1129,-605,-690,-1394,-10852,-4695,-247,-123,-10851], -[0,-80,-231,-63,-1040,-5,-22,-10850,-26,-1,-3240,-10,-115,-67,-32,-3975,-10849,-199,-378,-217,-752,-15,-4623,-180,-7,-14, --27,-146,-97,-33,-5521,-2,-10848,-17,-2471], -[0,-10847,-10846,-5361,-10845,-10844,-2138,-10843,-10842,-10841,-10840,-10839,-10838,-10837,-10836,-10835,-10834,-10833, --10832,-10831,-10830,-3085,-10829,-10828,-10827,-10826,-10825,-10824,-4622,-10823], +[0,-11350,-11351,-11352,-865,-1339,-11353,-1672,-1857,-2071,-7967,-11354,-10899,-2424,-2446,-11355], +[0,-350,-4062,-351,-9705,-3037,-427,-11356,-767,-932,-9106,-958,-965,-968,-1168,-1222,-11357,-1412,-1413,-7148,-1705, +-1788,-11358,-1972,-2125,-2127,-2210,-2234,-2250,-2379,-6416,-2410,-11359,-2501,-7752], +[0,-11360,-11361,-7281,-11362,-11363,-3579,-11364,-11365,-11366,-11367,-11368,-11369,-11370,-11371,-11372,-11373,-11374, +-11375,-11376,-11377,-11378,-11379,-11380,-11381,-11382,-11383,-11384,-11385,-11386], [1,3,6256], [0,6257,6258,6259,9], -[0,-758,-60,-96,-10822], -[0,-15,-1481,-1,-56,-10821,-373,-861], -[0,-1085,-10820,-10819], +[0,-1371,-510,-2550,-11387], +[0,-1788,-2471,-932,-756,-11388,-2091,-4646], +[0,-3870,-11389,-11390], [1,3,6261], [0,0,6262,6263,5], -[0,-3,-7,-5045], -[0,-37,-669], +[0,-1654,-2125,-8986], +[0,-687,-6351], [1,3,6265], [0,0,6266,6267,5], -[0,-5,-47,-22,-19,-660,-1,-12,-25,-64,-190,-757,-4,-44,-2], -[0,-10818,-6070,-6,-300,-10817,-10816,-2621,-46], +[0,-3037,-3040,-427,-428,-749,-932,-940,-967,-969,-970,-1380,-1942,-2387,-2410], +[0,-11391,-3486,-2006,-3994,-11392,-11393,-5069,-3445], [1,3,6269], [0,6270,6271,6272,4], -[0,-60,-72,-247,-6402,-10815], -[0,-13,-3,-27,-113,-58,-10814], -[0,-386,-4639,-4729], +[0,-510,-1650,-2424,-1545,-11394], +[0,-664,-1654,-2210,-2105,-719,-11395], +[0,-7685,-11222,-10712], [1,3,6274], [0,6275,6276,6277,5], -[0,-470,-1116], -[0,-1146,-5306,-3,-1304,-522,-82,-27,-551], -[0,-105,-401,-631,-113,-337,-2015,-1053,-604,-2516,-2481,-2370,-2371,-352,-5056], +[0,-1351,-2165], +[0,-1464,-7623,-1654,-1976,-1980,-2198,-2210,-2536], +[0,-1334,-1342,-5493,-2105,-3323,-6463,-7764,-1971,-6827,-7430,-9791,-9788,-743,-8937], [1,3,6279], [0,6280,0,6281,5], -[0,-10813,-10812,-58,-403,-200], -[0,-37,-1684,-1041,-308,-294,-4621,-1923], +[0,-11396,-11397,-719,-755,-1376], +[0,-687,-5406,-9668,-3957,-3958,-11398,-11313], [1,3,6283], [0,6284,6285,6286,8], -[0,-10811,-60,-10810,-1679,-661,-135,-58,-2241,-761,-10809,-23,-72,-10808,-10807,-10806,-10805,-899,-16,-10804,-2171, --1283], -[0,-10803,-13,-1342,-10802,-1634,-1,-181,-5266,-265,-762,-101,-3,-198,-15,-10801,-2188,-1112,-272,-27,-551], -[0,-3936,-2330,-99,-61,-2526,-10800,-410], +[0,-11399,-510,-11400,-5676,-695,-714,-719,-790,-1044,-11401,-1548,-1650,-11402,-11403,-11404,-11405,-1951,-2177,-11406, +-2524,-2538], +[0,-11407,-664,-829,-11408,-7829,-932,-960,-7819,-964,-972,-1442,-1654,-1722,-1788,-11409,-2070,-2188,-2195,-2210,-2536], +[0,-1710,-11410,-3690,-3634,-6657,-11411,-3691], [1,3,6288], [0,6289,6290,6291,4], -[0,-10799,-3359,-5308,-10798,-1240,-5632,-5633,-5629,-3563,-5631,-5630,-2583,-10797,-315,-759,-4620,-4633,-1147,-10796, --197,-4619,-16,-1779], -[0,-1268,-3084,-2329,-10795,-10794,-10793,-713,-10792,-10791,-10790,-193,-60,-1033,-1766,-43,-3544,-58,-1345,-5439,-3542, --1,-181,-4618,-28,-402,-9,-166,-18,-1140,-198,-1805,-180,-7,-10789,-27,-688], -[0,-2582,-542,-1600,-5584,-4617,-3083], +[0,-11412,-7603,-7604,-11413,-5038,-5777,-5775,-5791,-5779,-5778,-5780,-5782,-11414,-725,-1343,-11415,-11273,-1459,-11416, +-2062,-11417,-2177,-2522], +[0,-3698,-11418,-11419,-11420,-11421,-11422,-305,-11423,-11424,-11425,-469,-510,-521,-2917,-652,-5980,-719,-741,-6906, +-5983,-932,-960,-11426,-1107,-1116,-1344,-1446,-1534,-1547,-1722,-1969,-1972,-2125,-11427,-2210,-2291], +[0,-5805,-6187,-11230,-6032,-11428,-11429], [1,3,6293], [0,6294,6295,6296,5], -[0,-90,-10788,-352,-1691,-905,-10787,-491,-3141,-123], -[0,-3829,-50,-11,-3527,-173,-21,-136,-140,-4616,-252,-1057,-330,-155,-122,-1477,-317,-29,-5,-4615,-10786,-47,-87,-160, --10785,-10784,-289,-382,-8,-176,-1149,-810,-241,-38,-696,-1503,-6,-35,-792], -[0,-6,-335,-905,-1465,-2328,-683,-399,-3418,-6128,-10783], +[0,-44,-11430,-743,-5193,-1791,-11431,-1940,-10105,-2446], +[0,-3168,-21,-23,-6064,-38,-40,-41,-42,-11432,-367,-7043,-406,-407,-409,-2622,-410,-3136,-3037,-11433,-11434,-3040,-3052, +-518,-11435,-11436,-726,-784,-1415,-1419,-1428,-1683,-2634,-1889,-1891,-1916,-2006,-2019,-2516], +[0,-2006,-3967,-1791,-3175,-11437,-3173,-1713,-7204,-3177,-11438], [1,3,6298], [0,0,0,6299,5], -[0,-241,-60,-10782,-10781], +[0,-2634,-510,-11439,-11440], [1,3,6301], [0,0,0,6302,10], -[0,-192,-75,-61,-307,-2673,-129,-5178,-1921,-10780,-1234,-10779,-10778,-53,-184,-8,-199,-445,-1384,-2027], +[0,-475,-4004,-3634,-4215,-4041,-3095,-8223,-11441,-11442,-5196,-11443,-11444,-3100,-3577,-1415,-1412,-915,-8611,-6137], [1,3,6304], [0,6305,0,6306,4], -[0,-4059,-10777,-1738,-1174,-44], -[0,-1759,-435,-192,-102,-52,-53], +[0,-5,-11445,-3946,-807,-2387], +[0,-3158,-3099,-475,-3160,-3161,-3100], [1,3,6308], [0,6309,6310,6311,4], -[0,-402,-123,-259,-5407,-1165,-1139], -[0,-13,-20,-3,-27,-5], -[0,-6383,-10776,-10775,-6401,-10774], +[0,-1116,-2446,-2548,-7004,-1018,-1552], +[0,-664,-668,-1654,-2210,-3037], +[0,-1716,-11446,-11447,-1546,-11448], [1,3,6313], [0,0,6314,7,10], -[0,-13,-223,-3,-643,-396,-393], +[0,-664,-729,-1654,-1974,-2187,-2286], [1,3,6316], [0,6317,6318,6319,6], -[0,-36,-10773,-2350,-471,-3082,-10772,-1148,-10771,-72,-1656,-698,-7,-10770,-889], -[0,-60,-1574,-3088,-116,-13,-244,-1,-12,-25,-41,-9,-3,-10769,-1514,-806,-4,-396,-798], -[0,-6382,-471], +[0,-812,-11449,-10659,-891,-11450,-11451,-1451,-11452,-1650,-6810,-1801,-2125,-11453,-2240], +[0,-510,-579,-11178,-615,-664,-665,-932,-940,-967,-1004,-1344,-1654,-11454,-1685,-1880,-1942,-2187,-2239], +[0,-1718,-891], [1,3,6321], [0,6322,6323,6324,6], -[0,-10768,-10767,-10766,-109,-1599,-2557,-1433,-5494,-1348,-10765,-20,-504,-661,-3081,-10764,-215,-351,-1863,-28,-79,-23, --93,-88,-3,-10763,-149,-324,-5100,-1115,-16,-1920,-138,-1482,-123], -[0,-6568,-252,-5,-22,-19,-660,-26,-1,-9,-569,-101,-18,-995,-6150,-10762,-10761,-1515,-198,-15,-6,-35,-7,-801,-33,-81, --2164], -[0,-2838,-10760,-933,-61,-840,-1775,-1437,-10759,-1438,-129,-857,-75,-91,-95,-456,-2046,-1874,-3,-544], +[0,-11455,-11456,-11457,-3035,-11458,-6192,-5113,-6535,-623,-11459,-668,-680,-695,-11460,-11461,-865,-888,-914,-1107, +-1449,-1548,-1645,-1646,-1654,-11462,-1805,-1816,-8563,-2173,-2177,-11463,-2269,-2430,-2446], +[0,-99,-367,-3037,-427,-428,-749,-767,-932,-1344,-1392,-1442,-1534,-1656,-3038,-11464,-11465,-1663,-1722,-1788,-2006, +-2019,-2125,-2184,-2379,-2384,-2648], +[0,-1719,-11466,-11467,-3634,-11468,-2734,-4867,-11469,-4866,-3095,-4868,-4004,-4865,-3162,-4043,-5769,-793,-1654,-4864], [1,3,6326], [0,6327,6328,6329,8], -[0,-3684,-662,-10758,-3349,-563], -[0,-3683,-4614,-59,-9,-79,-3080,-18,-3,-4613,-15,-4,-180,-10757,-10756], -[0,-75,-61,-1619,-307,-743,-209], +[0,-4884,-357,-11470,-7755,-1851], +[0,-4888,-11471,-633,-1344,-1449,-11472,-1534,-1654,-11473,-1788,-1942,-1972,-11474,-11475], +[0,-4004,-3634,-8959,-4215,-2533,-3844], [1,3,6331], [0,6332,6333,7,4], -[0,-10755,-2275,-1147], -[0,-402,-15,-13,-8,-3,-27,-1,-7,-4,-657,-1562,-180,-186,-2,-65,-5498,-120,-76,-265,-662,-10,-67,-12,-84,-3764], +[0,-11476,-269,-1459], +[0,-1116,-1788,-664,-1415,-1654,-2210,-932,-2125,-1942,-1069,-838,-1972,-2211,-2410,-1771,-6522,-2174,-966,-964,-357,-958, +-968,-940,-943,-3775], [1,3,6335], [0,0,6336,6337,11], -[0,-110,-711,-1919,-1,-40,-791,-235,-16], -[0,-10754,-10753,-2022,-484,-711,-2555,-2554,-809,-906], +[0,-589,-596,-11477,-932,-1077,-2884,-1939,-2177], +[0,-11478,-11479,-6249,-5269,-596,-6251,-6252,-1696,-1723], [1,3,6339], [0,6340,6341,6342,4], -[0,-536], -[0,-15,-54,-3,-82,-56,-167,-3344,-2,-5,-3340,-474,-10752,-3230,-243,-302,-10751,-10750], -[0,-433,-2014,-1044,-2127,-2520,-935,-4612,-141,-2845,-406], +[0,-702], +[0,-1788,-1127,-1654,-2198,-756,-1132,-7845,-2410,-3037,-7887,-710,-11480,-9280,-1134,-1149,-11481,-11482], +[0,-3324,-6491,-8427,-3833,-6809,-10412,-11483,-3966,-1622,-7208], [1,3,6344], [0,0,6345,6346,4], -[0,-5,-10749,-40,-9,-3,-15,-7,-2,-10748], -[0,-141,-3079,-947,-1213,-4611,-772,-5419,-450,-5620,-10747,-42], +[0,-3037,-11484,-1077,-1344,-1654,-1788,-2125,-2410,-11485], +[0,-3966,-11486,-5574,-7534,-11487,-7371,-6974,-6582,-5847,-11488,-856], [1,3,6348], [0,6349,6350,6351,6], -[0,-1872,-10746,-10745,-1846,-88,-1510,-128,-16], -[0,-5,-1,-10,-9,-18,-4,-85,-4610,-414,-33,-2], -[0,-3211,-1370,-2788,-1316,-594], +[0,-808,-11489,-11490,-1097,-1646,-1737,-2114,-2177], +[0,-3037,-932,-958,-1344,-1534,-1942,-2319,-11491,-2363,-2379,-2410], +[0,-9427,-11492,-2295,-1673,-2490], [1,3,6353], [0,124,70,6354,11], -[0,-6381,-405,-1927,-10744,-126,-1418,-1985,-303], +[0,-1727,-7421,-11070,-11493,-6656,-6235,-7547,-1076], [1,3,6356], [0,6357,6358,6359,4], -[0,-2403,-10743,-10742,-10741], -[0,-861,-252,-359,-22,-19,-103,-5348,-425,-1,-5347,-1550,-181,-1334,-214,-115,-2489,-2488,-826,-2233,-1643,-9,-1993,-811, --18,-996,-525,-1127,-2487,-4,-5346,-900,-373,-10740,-5345,-171,-2,-30,-5344], -[0,-1929,-631,-4705,-3100,-10739,-10738,-10737,-10736,-10735,-10734], +[0,-9154,-11494,-11495,-11496], +[0,-4646,-367,-3330,-427,-428,-3664,-7351,-774,-932,-7352,-954,-960,-961,-963,-965,-7353,-7354,-971,-979,-7355,-1344, +-7356,-1498,-1534,-1608,-1609,-1768,-7357,-1942,-7358,-1945,-2091,-11497,-7359,-2391,-2410,-2469,-7360], +[0,-10838,-5493,-10841,-10840,-11498,-11499,-11500,-11501,-11502,-11503], [1,3,6361], [0,6362,6363,6364,4], -[0,-2503,-10733,-5047], -[0,-1354,-3539,-1569,-43,-13,-244,-10732,-1952,-56,-657,-2572,-3,-2198,-10731,-81,-34], -[0,-865,-105,-172,-113,-1949,-1948,-743,-1077], +[0,-7026,-11504,-8966], +[0,-458,-5993,-649,-652,-664,-665,-11505,-9077,-756,-1069,-5989,-1654,-1828,-11506,-2384,-2541], +[0,-4213,-1334,-1961,-2105,-9172,-9173,-2533,-5388], [1,3,6366], [0,0,6367,6368,6], -[0,-59,-58,-26,-1,-10730,-41,-78,-910,-139,-1831,-212,-1145,-189,-418,-909,-812,-648,-4609,-526,-3,-611,-10729,-15,-2525, --17,-92,-4608], -[0,-4607,-10728,-10727,-10726,-659,-3618,-10725,-10724,-4606,-10723,-105,-401,-1135,-1080,-10722,-10721,-10720,-10719, --10718,-2803,-4605,-10717,-4604,-2417,-10716,-10715,-10714], +[0,-633,-719,-767,-932,-11507,-1004,-1471,-1472,-1475,-1478,-1479,-1480,-1482,-1483,-1487,-1488,-1490,-11508,-1492,-1654, +-1657,-11509,-1788,-6696,-2501,-2503,-11510], +[0,-11511,-11512,-11513,-11514,-770,-5374,-11515,-11516,-11517,-11518,-1334,-1342,-1616,-5150,-11519,-11520,-11521,-11522, +-11523,-2191,-11524,-11525,-11526,-8905,-11527,-11528,-11529], [1,3,6370], [0,6371,6372,6373,9], -[0,-201,-36,-23], -[0,-13,-3,-180,-27], -[0,-1448,-1073,-1229,-3571,-333,-10713,-4606,-10712,-1545,-282,-6525,-4603], +[0,-523,-812,-1548], +[0,-664,-1654,-1972,-2210], +[0,-3939,-5801,-5737,-5741,-5271,-11530,-11517,-11531,-1050,-5270,-491,-11532], [1,3,6375], [0,6376,6377,6378,9], -[0,-116,-188], -[0,-13,-1,-8,-27], -[0,-10711,-10710,-10709,-1448,-4602,-10708,-10707,-10706,-10705], +[0,-615,-1729], +[0,-664,-932,-1415,-2210], +[0,-11533,-11534,-11535,-3939,-11536,-11537,-11538,-11539,-11540], [1,3,6380], [0,6381,6382,6383,4], -[0,-1680,-10704,-325,-1604,-466,-989,-16,-312,-311,-219], -[0,-711,-26,-1,-3,-809,-791,-4601], -[0,-484,-2022,-358,-2555,-2554,-711,-5548], +[0,-5672,-11541,-1119,-10521,-1758,-1957,-2177,-2323,-2654,-2518], +[0,-596,-767,-932,-1654,-1696,-2884,-11542], +[0,-5269,-6249,-3551,-6251,-6252,-596,-6250], [1,3,6385], [0,6386,6387,6388,5], -[0,-4010,-1158], -[0,-3421,-238,-26,-1,-10703,-2873,-10702,-10701,-10700,-3469,-10699,-497,-10698,-10697,-607,-7,-4821,-134,-33,-686], -[0,-31,-73,-335,-2], +[0,-780,-1297], +[0,-7177,-674,-767,-932,-11543,-1317,-11544,-11545,-11546,-6595,-11547,-1333,-11548,-11549,-1839,-2125,-10301,-2251,-2379, +-2552], +[0,-3264,-3215,-3967,-2410], [1,3,6390], [0,6391,6392,6393,5], -[0,-60,-4600,-36,-41,-28,-1308,-1496,-16,-1793,-10696,-10695,-10694,-219,-205,-96], -[0,-13,-40,-757,-117,-3,-158,-172,-7], -[0,-36,-3401,-5505,-3487], +[0,-510,-11550,-812,-1004,-1107,-1850,-2001,-2177,-2185,-11551,-11552,-11553,-2518,-2531,-2550], +[0,-664,-1077,-1380,-1452,-1654,-1764,-1961,-2125], +[0,-812,-7336,-6480,-6479], [1,3,6395], [0,6396,6397,6398,11], -[0,-1191,-1027,-1173,-709,-3286,-1131,-261,-751,-1121,-981], -[0,-109,-69,-22,-19,-13,-1,-191,-12,-10,-9,-3,-15,-4,-27,-186,-33,-81,-2], -[0,-307,-1384,-4817,-335,-270,-61,-75,-105,-10693], +[0,-459,-736,-828,-1072,-8438,-1636,-1640,-1840,-1997,-2401], +[0,-3035,-3621,-427,-428,-664,-932,-934,-940,-958,-1344,-1654,-1788,-1942,-2210,-2211,-2379,-2384,-2410], +[0,-4215,-8611,-10327,-3967,-3756,-3634,-4004,-1334,-11554], [1,3,6400], [0,6401,6402,6403,10], -[0,-10692,-914,-16,-10691,-123,-219], -[0,-660,-26,-1,-1861,-84,-10,-76,-67,-9,-8,-18,-10690,-4,-7], -[0,-10689,-10688,-2396,-10687,-3233,-2522,-10686,-10685,-1731], +[0,-11555,-1401,-2177,-11556,-2446,-2518], +[0,-749,-767,-932,-942,-943,-958,-966,-968,-1344,-1415,-1534,-11557,-1942,-2125], +[0,-11558,-11559,-9258,-11560,-9262,-6721,-11561,-11562,-4127], [1,3,6405], [0,6406,6407,6408,5], -[0,-1574], -[0,-168,-41,-3,-82,-125], -[0,-905,-2328], +[0,-579], +[0,-617,-1004,-1654,-2198,-2293], +[0,-1791,-11437], [1,3,6410], [0,89,56,57,8], [1,3,6412], [0,6413,6414,6415,8], -[0,-1960,-72,-1817,-466,-1815,-2834,-1496,-7,-16,-312], -[0,-1033,-117,-198,-39], -[0,-484,-2022,-358,-2555,-2554,-711,-773], +[0,-8612,-1650,-1708,-1758,-1769,-1778,-2001,-2125,-2177,-2323], +[0,-521,-1452,-1722,-2322], +[0,-5269,-6249,-3551,-6251,-6252,-596,-7304], [1,3,6417], [0,6418,6419,6420,4], -[0,-906], -[0,-3,-1,-10684,-610,-26,-2,-5,-69,-19,-22], -[0,-4599,-431,-174,-10683,-10682,-10681], +[0,-1723], +[0,-1654,-932,-11563,-1733,-767,-2410,-3037,-3621,-428,-427], +[0,-11564,-3975,-3974,-11565,-11566,-11567], [1,3,6422], [0,6423,0,6424,8], -[0,-10680,-10679,-10678,-10677,-1574,-2922,-383,-41,-40,-10676,-466,-16], -[0,-412,-4603,-3078,-1683], +[0,-11568,-11569,-11570,-11571,-579,-583,-754,-1004,-1077,-11572,-1758,-2177], +[0,-3496,-11532,-11573,-5411], [1,3,6426], [0,6427,6428,6429,10], -[0,-809,-1847,-28,-467,-20,-23,-610,-1328,-10675,-230,-10674,-10673,-10672,-1604], -[0,-15,-3,-1,-7,-40,-10671], -[0,-24,-3232,-592,-77,-432,-225], +[0,-1696,-1088,-1107,-1630,-668,-1548,-1733,-1099,-11574,-769,-11575,-11576,-11577,-10521], +[0,-1788,-1654,-932,-2125,-1077,-11578], +[0,-775,-9264,-3277,-2162,-3754,-5553], [1,3,6431], [0,6432,6433,6434,4], -[0,-5719,-10670,-10669], -[0,-15,-39,-27,-768,-1], -[0,-3431,-786,-1425,-1177,-10668,-4683], +[0,-5414,-11579,-11580], +[0,-1788,-2322,-2210,-468,-932], +[0,-7046,-4107,-5418,-763,-11581,-10950], [1,3,6436], [0,6437,0,6438,4], -[0,-565,-135,-261], -[0,-105,-856,-126,-209], +[0,-1813,-714,-1640], +[0,-1334,-5142,-6656,-3844], [1,3,6440], [0,0,6441,6442,5], -[0,-15], -[0,-2492,-3077,-123], +[0,-1788], +[0,-7230,-11582,-2446], [1,3,6444], [0,0,6445,6446,10], -[0,-40,-3], -[0,-10667,-594,-10666], +[0,-1077,-1654], +[0,-11583,-2490,-11584], [1,3,6448], [0,6449,0,6450,8], -[0,-506,-96], -[0,-10665,-722,-1234,-4598,-367,-783,-10664,-10663,-10662,-786], +[0,-6597,-2550], +[0,-11585,-7084,-5196,-11586,-5545,-5389,-11587,-11588,-11589,-4107], [1,3,6452], [0,6453,6454,6455,4], -[0,-1777], -[0,-10661,-10660,-5,-1,-4,-1122,-171,-2,-3748,-30], -[0,-4597,-73,-862,-1777,-4596], +[0,-2534], +[0,-11590,-11591,-3037,-932,-1942,-1944,-2391,-2410,-3924,-2469], +[0,-11592,-3215,-4258,-2534,-11593], [1,3,6457], [0,6458,6459,6460,11], -[0,-706,-651], -[0,-239,-766,-1,-213,-5341,-275,-15,-609,-187,-39], -[0,-444,-3076,-10659,-536,-669,-10658], +[0,-1285,-1391], +[0,-5834,-515,-932,-1365,-7393,-1777,-1788,-1797,-2156,-2322], +[0,-1015,-11594,-11595,-702,-6351,-11596], [1,3,6462], [0,6463,6464,6465,5], -[0,-402,-809,-276,-642,-23,-1290,-40,-610,-6379], -[0,-745,-3,-117,-1033,-238,-10657,-66,-182,-56,-1001,-10656,-3400,-328], -[0,-10655,-10654,-387,-484], +[0,-1116,-1696,-1460,-1993,-1548,-2324,-1077,-1733,-1740], +[0,-2487,-1654,-1452,-521,-674,-11597,-1405,-526,-756,-1440,-11598,-7382,-559], +[0,-11599,-11600,-5889,-5269], [1,3,6467], [0,0,6468,6469,6], -[0,-10653,-1347,-43,-1,-12,-55,-10652,-10651,-10650,-10649,-4,-604,-10648,-5251], -[0,-10647], +[0,-11601,-648,-652,-932,-940,-1110,-11602,-11603,-11604,-11605,-1942,-1971,-11606,-7932], +[0,-11607], [1,3,6471], [0,6472,6473,6474,5], -[0,-119,-36,-5608,-93,-10646,-16,-3352,-461,-414,-10645], -[0,-49,-62,-60,-474,-1,-9,-3,-15,-180,-120,-82], -[0,-37,-1316,-1316,-684,-3211,-10644,-1370,-174], +[0,-679,-812,-5911,-1645,-11608,-2177,-7741,-2297,-2363,-11609], +[0,-86,-3307,-510,-710,-932,-1344,-1654,-1788,-1972,-2174,-2198], +[0,-687,-1673,-1673,-3113,-9427,-11610,-11492,-3974], [1,3,6476], [0,6477,0,7,5], -[0,-351,-85], +[0,-888,-2319], [1,3,6479], [0,6480,6481,6482,4], -[0,-7,-1340,-10643,-96,-16], -[0,-113,-39], -[0,-10642,-4595,-1633,-1200,-1041], +[0,-2125,-867,-11611,-2550,-2177], +[0,-2105,-2322], +[0,-11612,-11613,-7856,-11321,-9668], [1,3,6484], [0,6485,0,6486,5], -[0,-3359,-193,-837,-3278,-2607,-2932,-10641,-201,-168,-119,-619,-383,-4008,-41,-2665,-10640,-4594,-28,-3966,-10639,-10638, --276,-4593,-813,-10637,-3940,-5700,-10636,-376,-2841,-6385,-5403,-10635,-1816,-149,-605,-10634,-690,-1370,-6331,-10633, --10632,-552,-2699,-259,-96], -[0,-10631,-6376,-45,-335,-52,-46,-53,-2594,-10630,-10629,-10628,-10627,-106,-10626,-318,-276,-259,-300,-10625], +[0,-7603,-469,-470,-8547,-5329,-473,-11614,-523,-617,-679,-744,-754,-792,-1004,-4206,-11615,-11616,-1107,-1299,-11617, +-11618,-1460,-11619,-1465,-11620,-1581,-5460,-11621,-1671,-1680,-1707,-7045,-11622,-1752,-1805,-1857,-11623,-2071,-11492, +-2107,-11624,-11625,-2520,-3730,-2548,-2550], +[0,-11626,-1756,-3214,-3967,-3161,-3445,-3100,-5407,-11627,-11628,-11629,-11630,-4055,-11631,-4058,-1460,-2548,-3994, +-11632], [1,3,6488], [0,6489,83,6490,4], -[0,-247,-20], -[0,-1644,-10624,-1722,-2007,-73], +[0,-2424,-668], +[0,-7303,-11633,-4376,-6792,-3215], [1,3,6492], [0,6493,29,7,5], -[0,-2380], +[0,-9632], [1,3,6495], [0,0,6496,6497,8], -[0,-707,-88,-3], -[0,-4592,-4591,-10623,-126,-10622,-2474,-5263,-10621,-2327,-303,-1655,-248,-3222,-5500,-285,-10620,-10619,-1918,-10618], +[0,-1202,-1646,-1654], +[0,-11634,-11635,-11636,-6656,-11637,-7693,-7839,-11638,-11639,-1076,-6811,-1847,-9358,-6517,-2218,-11640,-11641,-11642, +-11643], [1,3,6499], [0,0,14,6500,4], -[0,-1655,-195,-2402,-2012,-163,-4590,-10617,-676,-987,-10616,-1061,-1917,-10615], +[0,-6811,-2435,-9171,-6558,-2265,-11644,-11645,-5101,-1985,-11646,-6817,-11647,-11648], [1,3,6502], [0,0,0,6503,5], -[0,-10614,-4590,-91], +[0,-11649,-11644,-4865], [1,3,6505], [0,6506,6507,6508,4], -[0,-20,-2521,-4014,-403,-151,-3857,-424,-118,-10613,-10612,-818,-3456,-1839,-200,-1837,-4589,-10611,-10610,-2211,-10609, --647,-467,-4588,-10608,-2407,-149,-10607,-3134,-493,-1453,-1802,-489,-16,-3568,-3779,-596], -[0,-2403,-137,-51,-473,-3150,-40,-10606,-27,-138,-372,-10605,-34], -[0,-724,-37,-158,-717,-387,-1229,-663,-3488,-1677], +[0,-668,-6793,-700,-755,-824,-2762,-930,-999,-11650,-11651,-1315,-6770,-1363,-1376,-1394,-11652,-11653,-11654,-1535, +-11655,-1574,-1630,-11656,-11657,-9050,-1805,-11658,-10270,-1849,-3609,-2060,-2153,-2177,-5746,-3669,-2433], +[0,-9154,-3199,-519,-722,-9982,-1077,-11659,-2210,-2269,-2331,-11660,-2541], +[0,-5732,-687,-1764,-8403,-5889,-5737,-9318,-6453,-5890], [1,3,6510], [0,6511,6512,6513,4], -[0,-567,-758,-312,-28,-466,-603,-1491,-4587,-20,-564,-219,-2380,-1309,-16,-2102,-504,-10604,-1617,-610,-989,-10603,-93, --5896,-5903,-6407,-3943,-6406,-10602,-10601,-885,-4586,-325,-10600,-4778,-10599,-10598,-4777,-10597,-4585,-3712,-461, --818,-994,-1499,-930,-10596,-4775,-1604,-10595,-3711,-10594,-1355,-5898,-1814,-10593,-1916,-5897,-1442,-3707,-5172,-4045, --1285,-5902, --5904,-4584], -[0,-193,-85,-207,-198,-5895,-274,-7,-661,-521,-4583,-837,-10592,-1815,-1720,-10591,-10590,-730,-731,-3709,-10589], -[0,-757,-370,-4582,-1372], +[0,-1681,-1371,-2323,-1107,-1758,-2059,-2247,-11661,-668,-1826,-2518,-9632,-1831,-2177,-4287,-680,-11662,-9084,-1733, +-1957,-11663,-1645,-4296,-4279,-1527,-1528,-1529,-11664,-11665,-2343,-11666,-1119,-11667,-10513,-11668,-11669,-10517, +-11670,-11671,-4285,-2297,-1315,-1767,-1982,-280,-11672,-10520,-10521,-11673,-4291,-11674,-283,-4290,-1770,-11675,-11676, +-4292,-4283,-4306,-8266,-281,-2450,-4281, +-4278,-11677], +[0,-469,-2319,-834,-1722,-4307,-2093,-2125,-695,-2095,-11678,-470,-11679,-1769,-4655,-11680,-11681,-4300,-4298,-4299, +-11682], +[0,-1380,-3209,-11683,-10484], [1,3,6515], [0,6516,6517,6518,4], -[0,-1028,-324,-467,-20,-118,-569,-742,-10588,-206,-23,-16,-2326,-2197,-1563,-200,-93,-2836,-138,-885,-493,-10587,-1676, --10586,-2556,-10585,-596,-4581], -[0,-34,-182,-291,-328,-1032,-835], -[0,-158,-10584,-685,-1988,-780,-280,-10583,-99,-1606,-37,-1376,-10582,-4580,-1633,-2747], +[0,-705,-1816,-1630,-668,-999,-1392,-2546,-11684,-1111,-1548,-2177,-11685,-1871,-827,-1376,-1645,-1728,-2269,-2343,-1849, +-11686,-5895,-11687,-6197,-11688,-2433,-11689], +[0,-2541,-526,-567,-559,-555,-551], +[0,-1764,-11690,-3015,-7441,-5887,-7440,-11691,-3690,-9845,-687,-9594,-11692,-11693,-7856,-3016], [1,3,6520], [0,0,6521,6522,4], -[0,-10581,-1650,-109,-732,-10580,-10579,-2051,-2325,-411,-10578,-142,-69,-5,-10577,-10576,-623,-2709,-788,-137,-10575, --269,-3075,-22,-19,-446,-13,-244,-1952,-20,-661,-58,-26,-1961,-1,-12,-10574,-84,-10,-181,-115,-67,-229,-4681,-349,-10573, --818,-758,-101,-649,-4579,-1140,-23,-525,-3,-1814,-65,-564,-5616,-323,-4,-361,-10572,-4581, --1797,-7,-3611,-16,-10571,-82,-27,-146,-5277,-138,-33,-2,-3074,-1482,-596,-10570,-104,-4578,-10569,-847,-686], -[0,-685,-158,-1372,-2349,-10568,-4577], +[0,-11694,-7057,-3035,-4269,-11695,-11696,-5361,-11697,-3660,-11698,-3044,-3621,-3037,-11699,-11700,-8523,-3624,-3735, +-3199,-11701,-4372,-11702,-427,-428,-656,-664,-665,-9077,-668,-695,-719,-767,-8609,-932,-940,-11703,-943,-958,-960,-965, +-968,-1026,-10960,-1047,-11704,-1315,-1371,-1442,-1461,-11705,-1547,-1548,-1609,-1654,-1770,-1771,-1826,-5883,-1864, +-1942,-1959,-11706,-11689, +-2124,-2125,-5405,-2177,-11707,-2198,-2210,-2234,-7744,-2269,-2379,-2410,-11708,-2430,-2433,-11709,-2466,-11710,-11711, +-6859,-2552], +[0,-3015,-1764,-10484,-10674,-11712,-11713], [1,3,6524], [0,6525,29,7,5], -[0,-818,-989,-16,-1285], +[0,-1315,-1957,-2177,-2450], [1,3,6527], [0,6528,6529,6530,6], -[0,-193,-3753,-20,-403,-36,-206,-469,-1153,-649,-647,-467,-990,-16,-285,-599,-210,-1285], -[0,-29,-5,-22,-19,-89,-4576,-1,-10567,-10566,-1550,-10,-145,-25,-150,-533,-8,-2487,-10565,-4,-57,-2], -[0,-217,-539,-1372,-2041,-10564,-1127], +[0,-469,-3907,-668,-755,-812,-1111,-1353,-1395,-1461,-1574,-1630,-1877,-2177,-2218,-2271,-2400,-2450], +[0,-3136,-3037,-427,-428,-928,-11714,-932,-11715,-11716,-954,-958,-959,-967,-978,-1040,-1415,-7357,-11717,-1942,-2375, +-2410], +[0,-7148,-8170,-10484,-5879,-11718,-1768], [1,3,6532], [0,6533,6534,7,8], -[0,-3456,-989], -[0,-930,-731,-730,-2324,-85], +[0,-6770,-1957], +[0,-280,-4298,-4300,-11719,-2319], [1,3,6536], [0,6537,6538,6539,10], -[0,-3712,-4816,-1604,-1617,-10563,-4575,-994,-989], -[0,-731,-730,-2102,-198,-4601,-1491,-85], -[0,-158,-1915,-865], +[0,-4285,-10335,-10521,-9084,-11720,-11721,-1767,-1957], +[0,-4298,-4300,-4287,-1722,-11542,-2247,-2319], +[0,-1764,-11722,-4213], [1,3,6541], [0,6542,6543,233,4], -[0,-20,-3090,-1802,-93,-767,-230,-749,-1822,-10562], -[0,-15,-686,-3,-1,-7,-152,-1125,-40,-5,-1501,-447,-10561,-5589,-2260], +[0,-668,-11084,-2060,-1645,-482,-769,-2194,-1627,-11723], +[0,-1788,-2552,-1654,-932,-2125,-708,-1827,-1077,-3037,-1938,-566,-11724,-6018,-545], [1,3,6545], [0,6546,6547,233,11], -[0,-219,-3090,-323,-767,-230,-749,-1822,-10558], -[0,-43,-811,-686,-166,-3,-1,-4888,-791,-279,-1451], +[0,-2518,-11084,-1864,-482,-769,-2194,-1627,-11728], +[0,-652,-1498,-2552,-1446,-1654,-932,-9774,-2884,-516,-3781], [1,3,6549], [0,6550,14,6551,5], -[0,-3427,-2430], -[0,-158,-2323,-248,-451,-1386,-773,-5133,-2322,-37,-294,-3426,-1995], +[0,-7087,-8803], +[0,-1764,-11727,-1847,-5897,-8425,-7304,-8426,-11729,-687,-3958,-7096,-7237], [1,3,6553], [0,0,6554,6555,5], -[0,-29,-5,-22,-19,-319,-1,-12,-8,-18,-2352,-7,-14,-57,-2], -[0,-10557,-42,-10556], +[0,-3136,-3037,-427,-428,-3267,-932,-940,-1415,-1534,-10652,-2125,-2127,-2375,-2410], +[0,-11730,-856,-11731], [1,3,6557], [0,6558,6559,6560,4], -[0,-20,-6511,-58,-36,-200,-490], -[0,-13,-3,-1515,-97], -[0,-5259,-158,-10555], +[0,-668,-691,-719,-812,-1376,-1965], +[0,-664,-1654,-1663,-2250], +[0,-7865,-1764,-11732], [1,3,6562], [0,6563,6564,6565,6], -[0,-200,-642], -[0,-182,-1188,-835,-4574,-447,-65], -[0,-158,-37,-1214,-308,-3215,-456,-1606,-1813,-10554], +[0,-1376,-1993], +[0,-526,-541,-551,-11733,-566,-1771], +[0,-1764,-687,-7095,-3957,-9408,-4043,-9845,-1776,-11734], [1,3,6567], [0,6568,6569,6570,6], -[0,-706,-88], -[0,-239,-279,-510,-1,-213,-527,-15,-187,-39], -[0,-275,-3241], +[0,-1285,-1646], +[0,-5834,-516,-5835,-932,-1365,-1431,-1788,-2156,-2322], +[0,-1777,-9100], [1,3,6572], [0,6573,6574,7,6], -[0,-2648,-3119,-10553,-2647], -[0,-85,-730,-731], +[0,-4700,-10515,-11735,-4716], +[0,-2319,-4300,-4298], [1,3,6576], [0,0,6577,7,4], -[0,-13,-249,-79,-3,-10552], +[0,-664,-1437,-1449,-1654,-11736], [1,3,6579], [0,6580,6581,6582,4], -[0,-20,-6510,-10551,-759,-200,-10550,-16,-4927,-96], -[0,-2254,-354,-5159,-2225,-1144,-568], -[0,-667,-2833,-5158], +[0,-668,-694,-11737,-1343,-1376,-11738,-2177,-9564,-2550], +[0,-619,-707,-8326,-1277,-1510,-1658], +[0,-7107,-1780,-8327], [1,3,6584], [0,6585,6586,6587,5], -[0,-10549], -[0,-29,-5,-22,-19,-660,-1,-12,-25,-9,-8,-4,-441,-7,-57,-33,-2], -[0,-6372,-10548,-37,-111,-2682,-2465,-6,-141,-2,-45,-17,-8,-53,-46,-2594], +[0,-11739], +[0,-3136,-3037,-427,-428,-749,-932,-940,-967,-1344,-1415,-1942,-1952,-2125,-2375,-2379,-2410], +[0,-1781,-11740,-687,-3578,-3871,-7864,-2006,-3966,-2410,-3214,-2501,-1415,-3100,-3445,-5407], [1,3,6589], [0,0,6590,6591,6], -[0,-13,-532,-365,-1011,-1010,-4932,-78,-703,-139,-212,-189,-418,-812,-345,-3], -[0,-2832,-1417,-550,-588,-10547,-10546], +[0,-664,-1138,-1146,-1155,-1156,-9545,-1471,-1474,-1475,-1479,-1482,-1483,-1488,-1542,-1654], +[0,-1782,-6240,-3276,-4123,-11741,-11742], [1,3,6593], [0,6594,6595,6596,5], -[0,-10545,-4573,-58], -[0,-50,-11,-21,-178,-98,-355,-1188,-223,-159,-26,-1,-191,-10,-41,-40,-499,-10544,-10543,-2321,-4572,-15,-645,-396,-112, --1105,-17], -[0,-271,-1054], +[0,-11743,-11744,-719], +[0,-21,-23,-40,-43,-534,-539,-541,-729,-753,-767,-932,-934,-958,-1004,-1077,-1098,-11745,-11746,-11747,-11748,-1788,-1860, +-2187,-2416,-2417,-2501], +[0,-3110,-7651], [1,3,6598], [0,0,0,6599,5], -[0,-1044,-141], +[0,-8427,-3966], [1,3,6601], [0,0,6602,6603,10], -[0,-310,-239,-1392,-664,-279,-43,-510,-1,-527,-213,-275,-187,-39], -[0,-3929,-6371,-509], +[0,-2832,-5834,-8084,-8096,-516,-652,-5835,-932,-1431,-1365,-1777,-2156,-2322], +[0,-1784,-1785,-5874], [1,3,6605], [0,0,0,6606,10], -[0,-24,-1236,-10542,-2038,-1456], +[0,-775,-5180,-11749,-5912,-3585], [1,3,6608], [0,6609,0,6610,4], -[0,-351,-324,-156,-1544,-149,-259,-201,-4013,-44,-96,-215,-469,-16,-533,-573,-913,-93,-687,-1876,-164,-886,-2900,-1852, --649,-2200,-394,-518,-1024,-795,-4571,-1914,-4570,-2661,-4716,-10541,-4569], -[0,-1083,-1727,-1726,-1252,-1251,-2100,-1725,-1724,-784,-2098,-2099,-1441,-4568], +[0,-888,-1816,-2359,-1055,-1805,-2548,-523,-701,-2387,-2550,-865,-1353,-2177,-1040,-910,-1418,-1645,-2369,-690,-1863, +-2325,-692,-1075,-1461,-1773,-2267,-2551,-866,-2383,-11750,-11751,-11752,-4341,-10789,-11753,-11754], +[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340,-4347,-4343,-4344,-11755], [1,3,6612], [0,6613,6614,6615,4], -[0,-5585,-2675,-10540,-472,-1870,-1547,-349,-2534,-1846,-28,-2080,-10539,-3532,-10538,-1705,-2620,-2079,-753,-10537,-564, --10536,-641,-7,-891,-10535,-3531,-96], -[0,-10534,-5671,-416,-146,-97,-134,-85,-123,-219], -[0,-787,-946,-5134,-61], +[0,-6028,-4003,-11756,-742,-813,-1046,-1047,-6475,-1097,-1107,-5086,-11757,-6029,-11758,-5087,-5088,-5089,-1591,-11759, +-1826,-11760,-2115,-2125,-2202,-11761,-6030,-2550], +[0,-11762,-5607,-2111,-2234,-2250,-2251,-2319,-2446,-2518], +[0,-4005,-6863,-8422,-3634], [1,3,6617], [0,6618,6619,6620,5], -[0,-4567,-633,-6078,-4593,-4699,-1675,-2058,-563,-10533], -[0,-3073,-10532,-10531,-5,-171,-2,-30], -[0,-99,-3072,-681,-3071,-3070,-3069,-3068,-3067,-1812,-1579,-1601,-42], +[0,-11763,-4049,-3424,-11619,-10873,-5969,-5263,-1851,-11764], +[0,-11765,-11766,-11767,-3037,-2391,-2410,-2469], +[0,-3690,-11768,-3438,-11769,-11770,-11771,-11772,-11773,-1789,-489,-11148,-856], [1,3,6622], [0,6623,6624,6625,4], -[0,-4567,-10530,-101,-2058,-3763], -[0,-3073,-411,-10529,-198,-171,-2,-30], -[0,-99,-1579,-3072,-42,-1601,-3067,-1812,-681,-3068,-3071,-3069,-3070,-2330,-545], +[0,-11763,-11774,-1442,-5263,-3792], +[0,-11765,-3660,-11775,-1722,-2391,-2410,-2469], +[0,-3690,-489,-11768,-856,-11148,-11773,-1789,-3438,-11772,-11769,-11771,-11770,-11410,-4847], [1,3,6627], [0,0,84,7,8], [1,3,6629], [0,0,6630,6631,5], -[0,-34,-51,-23,-1520], -[0,-406,-1642,-444,-1091,-430,-338,-1756,-1406,-10528,-549,-672,-91], +[0,-2541,-519,-1548,-1612], +[0,-7208,-7370,-1015,-3589,-4795,-3217,-3207,-6989,-11776,-3582,-5396,-4865], [1,3,6633], [0,0,6634,6635,4], -[0,-59,-32,-3980,-2339,-4566,-1008,-819,-364,-314,-1007,-653,-117,-1000,-78,-139,-189,-3], -[0,-406,-1419,-2803,-1135], +[0,-633,-1168,-1177,-11117,-11777,-1220,-1224,-1231,-1243,-1244,-1262,-1452,-1453,-1471,-1475,-1482,-1654], +[0,-7208,-6131,-2191,-1616], [1,3,6637], [0,0,6638,6639,6], -[0,-239,-10527,-279,-159,-10526,-1555,-1,-1015,-1850,-28,-4565,-1323,-10525,-213,-1322,-5218,-1820,-275,-15,-187,-3164, --16,-5166,-39], -[0,-1717,-4564,-406,-429,-637], +[0,-5834,-11778,-516,-753,-11779,-921,-932,-1065,-1083,-1107,-11780,-1283,-11781,-1365,-1408,-8082,-1659,-1777,-1788, +-2156,-9786,-2177,-8310,-2322], +[0,-4676,-11782,-7208,-6231,-3240], [1,3,6641], [0,0,6642,6643,4], -[0,-239,-5119,-1,-2021,-10524,-651,-39], -[0,-3066,-1991,-3440,-672], +[0,-5834,-8487,-932,-6283,-11783,-1391,-2322], +[0,-11784,-7373,-6947,-5396], [1,3,6645], [0,0,6646,6647,8], -[0,-15,-13,-3,-56,-611,-10523], -[0,-1222,-248,-4563,-10522,-1618,-1056,-1560,-1990,-406,-1992,-4562,-10521,-853,-2421,-1641], +[0,-1788,-664,-1654,-756,-1657,-11785], +[0,-6545,-1847,-11786,-11787,-9052,-7153,-864,-7375,-7208,-7369,-11788,-11789,-5846,-8893,-7372], [1,3,6649], [0,6650,6651,6652,6], -[0,-1030,-1662,-2581,-4561,-1323,-1508], -[0,-3560,-239,-59,-1,-1015,-1850,-2579,-706,-1820,-275,-15,-187,-5602,-39], -[0,-4560,-1642,-846,-444,-4559,-3076,-4558,-10520,-3559,-549,-672], +[0,-655,-6511,-5830,-11790,-1283,-1795], +[0,-5833,-5834,-633,-932,-1065,-1083,-5836,-1285,-1659,-1777,-1788,-2156,-5942,-2322], +[0,-11791,-7370,-6948,-1015,-11792,-11594,-11793,-11794,-5843,-3582,-5396], [1,3,6654], [0,6655,6656,6657,6], -[0,-1030,-1662,-2581,-4561], -[0,-3560,-239,-3275,-279,-510,-1,-1850,-2579,-213,-275,-15,-187,-39], -[0,-10519,-4557,-3066,-4556,-2486,-3439,-3065,-2504,-672,-406,-1991,-549,-3559], +[0,-655,-6511,-5830,-11790], +[0,-5833,-5834,-8569,-516,-5835,-932,-1083,-5836,-1365,-1777,-1788,-2156,-2322], +[0,-11795,-11796,-11784,-11797,-7374,-6949,-11798,-6952,-5396,-7208,-7373,-3582,-5843], [1,3,6659], [0,6660,6661,7,9], -[0,-10518], -[0,-15,-3,-1,-76,-10,-67,-84,-214,-131], +[0,-11799], +[0,-1788,-1654,-932,-966,-958,-968,-943,-963,-974], [1,3,6663], [0,6664,71,6665,4], -[0,-4555], -[0,-698,-1226,-5453,-2519], +[0,-11800], +[0,-1801,-5924,-6812,-6814], [1,3,6667], [0,6668,6669,6670,4], -[0,-10517,-10516,-836,-119,-230,-469,-687], -[0,-945,-5,-9,-18,-4,-7,-2], -[0,-28,-594,-2576], +[0,-11801,-11802,-502,-679,-769,-1353,-2369], +[0,-7080,-3037,-1344,-1534,-1942,-2125,-2410], +[0,-1107,-2490,-5888], [1,3,6672], [0,6673,6674,6675,5], -[0,-10515,-2209], -[0,-69,-10514,-152,-117,-3,-568,-1517,-15,-33,-2], -[0,-10513,-3078,-10512,-10511,-10510,-4830,-10509,-10508,-10507,-1615], +[0,-11803,-1553], +[0,-3621,-11804,-708,-1452,-1654,-1658,-1660,-1788,-2379,-2410], +[0,-11805,-11573,-11806,-11807,-11808,-10226,-11809,-11810,-11811,-9261], [1,3,6677], [0,6678,115,234,5], -[0,-10506,-4554,-10505,-4851,-5467,-10504], +[0,-11812,-11813,-11814,-9981,-6756,-11815], [1,3,6680], [0,6681,6682,6683,5], -[0,-1331,-1328,-467,-149,-372], -[0,-51,-118,-34], -[0,-724,-37,-300,-149,-608,-4553,-3064,-3063,-4552,-3062,-3061,-1214,-91,-412,-1995,-1975,-195,-3060,-1644,-1649,-1045, --1221,-287,-878,-126], +[0,-1043,-1099,-1630,-1805,-2331], +[0,-519,-999,-2541], +[0,-5732,-687,-3994,-1805,-1810,-11816,-11817,-11818,-11819,-11820,-11821,-7095,-4865,-3496,-7237,-7863,-2435,-11822, +-7303,-7091,-8421,-6599,-1958,-3258,-6656], [1,3,6685], [0,6686,6687,6688,6], -[0,-10503,-10502,-2058], -[0,-29,-411,-633,-201,-10501,-8,-650,-10500,-810,-4,-146,-57,-33,-2], -[0,-681,-545,-337,-201,-53,-91,-307,-2], +[0,-11823,-11824,-5263], +[0,-3136,-3660,-4049,-523,-11825,-1415,-1456,-11826,-1683,-1942,-2234,-2375,-2379,-2410], +[0,-3438,-4847,-3323,-523,-3100,-4865,-4215,-2410], [1,3,6690], [0,6691,6692,6693,5], -[0,-1870,-3960,-1147,-221,-121,-6,-35,-437], -[0,-161,-4051,-182,-4025,-2364,-56,-1,-266,-191,-10,-148,-67,-64,-1542,-705,-8,-288,-65,-113,-1798,-3635], -[0,-545,-681,-10499,-31,-42,-114], +[0,-813,-1326,-1459,-1600,-1967,-2006,-2019,-2451], +[0,-32,-204,-526,-552,-9968,-756,-932,-933,-934,-958,-962,-968,-969,-1108,-1320,-1415,-1753,-1771,-2105,-2106,-5331], +[0,-4847,-3438,-11827,-3264,-856,-3262], [1,3,6695], [0,6696,6697,6698,11], -[0,-3510,-809], -[0,-28,-113,-39], -[0,-6367,-10498,-4926,-10497], +[0,-6280,-1696], +[0,-1107,-2105,-2322], +[0,-1809,-11828,-9565,-11829], [1,3,6700], [0,0,38,7,6], [1,3,6702], [0,6703,6704,7,8], -[0,-10496,-113], -[0,-182,-328,-1,-266,-10,-148,-64], +[0,-11830,-2105], +[0,-526,-559,-932,-933,-958,-962,-969], [1,3,6706], [0,6707,55,234,9], -[0,-914], +[0,-1401], [1,3,6709], [0,6710,6711,235,4], -[0,-978,-88], -[0,-4551,-85], +[0,-2525,-1646], +[0,-11831,-2319], [1,3,6713], [0,6714,6715,6716,8], -[0,-382,-10495,-38], -[0,-169,-86,-835,-620,-268,-144,-8,-154,-17], -[0,-2494,-4799,-919,-1996,-580,-626,-17], +[0,-784,-11832,-1889], +[0,-527,-533,-551,-556,-558,-778,-1415,-2275,-2501], +[0,-7198,-10435,-1017,-7173,-7175,-6694,-2501], [1,3,6718], [0,6719,6720,6721,11], -[0,-10494,-10493,-2171,-5129,-10492,-3113], -[0,-4550,-3], -[0,-2007,-1428,-10491,-37], +[0,-11833,-11834,-2524,-8437,-11835,-10579], +[0,-11836,-1654], +[0,-6792,-5272,-11837,-687], [1,3,6723], [0,6724,6725,6726,8], -[0,-20,-1876,-2900,-4589,-2511,-647,-10490,-394], -[0,-5,-51,-498,-10489,-81,-34], -[0,-37,-2011,-3461,-174,-869,-194,-868,-455,-2110,-2672,-361,-2109,-785,-2108], +[0,-668,-690,-692,-11652,-6861,-1574,-11838,-2267], +[0,-3037,-519,-1100,-11839,-2384,-2541], +[0,-687,-6716,-6717,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], [1,3,6728], [0,6729,6730,6731,10], -[0,-1864,-10488,-10487], -[0,-423,-653,-117,-999,-1132,-3,-522,-82,-554], -[0,-60,-786,-852,-4792], +[0,-908,-11840,-11841], +[0,-994,-1262,-1452,-1597,-1632,-1654,-1980,-2198,-2462], +[0,-510,-4107,-5921,-10462], [1,3,6733], [0,6734,6735,6736,11], -[0,-60,-116,-1052,-4811,-23,-1308,-10486,-10485], -[0,-43,-20,-28,-3,-376,-566,-605,-16,-82,-27,-797], -[0,-808,-4640,-386,-566,-842,-10484,-1267,-376], +[0,-510,-615,-7840,-10358,-1548,-1850,-11842,-11843], +[0,-652,-668,-1107,-1654,-1671,-1691,-1857,-2177,-2198,-2210,-2245], +[0,-1818,-11221,-7685,-1691,-10425,-11844,-3742,-1671], [1,3,6738], [0,0,0,6739,4], -[0,-141,-1507,-1467,-358], +[0,-3966,-1819,-3103,-3551], [1,3,6741], [0,6742,71,6743,6], -[0,-5150,-2356], -[0,-782,-2127,-2320,-3059,-248,-490,-10483], +[0,-8383,-10383], +[0,-5558,-3833,-11845,-11846,-1847,-1965,-11847], [1,3,6745], [0,0,6746,6747,4], -[0,-109,-185,-69,-5,-517,-2346,-13,-118,-40,-3,-417,-33,-17,-219], -[0,-339,-430,-10482,-10481,-5280,-163,-271,-2006], +[0,-3035,-3048,-3621,-3037,-3046,-10755,-664,-999,-1077,-1654,-1763,-2379,-2501,-2518], +[0,-3184,-4795,-11848,-11849,-7728,-2265,-3110,-6806], [1,3,6749], [0,0,0,6750,5], -[0,-6365,-1455,-10480,-3058,-10479,-1369,-53,-91], +[0,-1823,-3586,-11850,-11851,-11852,-11853,-3100,-4865], [1,3,6752], [0,6753,6754,6755,5], -[0,-10478,-58,-1543,-569,-1142,-16,-156,-4549], -[0,-283,-48,-309,-5919,-10477,-5,-137,-736,-4548,-22,-19,-1,-10476,-7,-2], -[0,-37,-4547,-1973,-717], +[0,-11854,-719,-1063,-1392,-1526,-2177,-2359,-11855], +[0,-3244,-190,-3748,-4200,-11856,-3037,-3199,-3628,-11857,-427,-428,-932,-11858,-2125,-2410], +[0,-687,-11859,-8109,-8403], [1,3,6757], [0,6758,6759,6760,5], -[0,-2198], -[0,-5,-51,-658,-81,-34], -[0,-172,-422,-783,-2518,-5145,-4739,-1654,-3289,-3449,-2457,-10475,-10474,-785,-10473,-5141,-91,-255,-60,-629,-481,-116], +[0,-1828], +[0,-3037,-519,-826,-2384,-2541], +[0,-1961,-997,-5389,-6820,-8397,-10670,-6821,-8401,-6822,-8124,-11860,-11861,-4116,-11862,-8402,-4865,-5092,-510,-5867, +-5923,-615], [1,3,6762], [0,0,6763,6764,5], -[0,-51,-20,-658,-2483,-3394,-2482,-81,-34], -[0,-172,-774,-10472,-785,-1399,-5034,-3246,-10471,-10470,-60,-629,-481,-289,-1913,-852,-116], +[0,-519,-668,-826,-7426,-7424,-7427,-2384,-2541], +[0,-1961,-6917,-11863,-4116,-7558,-9029,-9027,-11864,-11865,-510,-5867,-5923,-726,-11866,-5921,-615], [1,3,6766], [0,6767,6768,6769,4], -[0,-1018,-2198], -[0,-1071,-739,-5,-110,-237,-658,-2483,-5248,-3394,-2482,-81,-153,-2,-34], -[0,-172,-986,-3082,-3458,-3403,-1913,-1994,-2326,-3402,-1403,-3057,-4670,-4671,-4546,-1425,-786,-60,-629,-481,-116], +[0,-996,-1828], +[0,-5918,-3268,-3037,-589,-825,-826,-7426,-7963,-7424,-7427,-2384,-2392,-2410,-2541], +[0,-1961,-1986,-11450,-6729,-7331,-11866,-7329,-11685,-7333,-7334,-11867,-11038,-11033,-11868,-5418,-4107,-510,-5867, +-5923,-615], [1,3,6771], [0,0,6772,6773,11], -[0,-51,-658,-2483,-5013,-27,-2482,-81,-34], -[0,-172,-2481,-627,-10469,-60,-629,-481,-588,-10468,-3613,-116], +[0,-519,-826,-7426,-9161,-2210,-7427,-2384,-2541], +[0,-1961,-7430,-6324,-11869,-510,-5867,-5923,-4123,-11870,-5391,-615], [1,3,6775], [0,6776,6777,6778,4], -[0,-28], -[0,-8,-4,-1716], -[0,-42,-220,-10467,-2319], +[0,-1107], +[0,-1415,-1942,-4701], +[0,-856,-2299,-11871,-11872], [1,3,6780], [0,6781,6782,6783,5], -[0,-10466,-1352,-2917,-58,-1863,-495,-524,-2202,-157,-16], -[0,-43,-1,-10465,-3,-4545,-3694,-27], -[0,-951,-1248,-3122,-3056,-2041,-544,-3540,-1352,-581,-37,-4544,-1199,-10464,-4722,-6364,-157,-2397,-10463,-61,-437, --10462], +[0,-11873,-522,-594,-719,-914,-1496,-1689,-1750,-1978,-2177], +[0,-652,-932,-11874,-1654,-11875,-4654,-2210], +[0,-4665,-4666,-10432,-11876,-5879,-4864,-5986,-522,-7144,-687,-11877,-11878,-11879,-10770,-1830,-1978,-9246,-11880,-3634, +-2451,-11881], [1,3,6785], [0,6786,6787,6788,4], -[0,-4583,-3713,-1442,-3707,-1355,-2102,-4586,-1617,-994,-1815,-3711,-1814,-989,-4748,-10461,-1491,-312], -[0,-930,-731,-730,-818,-2324,-198,-10460,-7,-85], -[0,-1987,-158,-387], +[0,-11678,-4280,-4283,-4306,-283,-4287,-11666,-9084,-1767,-1769,-4291,-1770,-1957,-10592,-11882,-2247,-2323], +[0,-280,-4298,-4300,-1315,-11719,-1722,-11883,-2125,-2319], +[0,-7442,-1764,-5889], [1,3,6790], [0,6791,6792,6793,8], -[0,-3203,-4941,-10459,-1174,-1979,-10458,-23,-647,-753,-564,-990,-210,-10457], -[0,-1071,-2624,-142,-5,-10456,-352,-237,-1331,-499,-4881,-493,-10455,-153,-2,-34], -[0,-2318,-878,-2401,-111,-195,-3162,-1207,-1939,-4543,-4542,-3587,-2113,-4928,-636,-624,-157,-1373,-281,-256,-844,-31, --1199,-4903,-5089,-3270,-579,-1383,-1042], +[0,-9491,-9492,-11884,-807,-7731,-11885,-1548,-1574,-1591,-1826,-1877,-2400,-11886], +[0,-5918,-5033,-3044,-3037,-11887,-743,-825,-1043,-1098,-9810,-1849,-11888,-2392,-2410,-2541], +[0,-11889,-3258,-9204,-3578,-2435,-9804,-8799,-9711,-11890,-11891,-5566,-4045,-9552,-3576,-7419,-1978,-10366,-6527,-3839, +-7650,-3264,-11878,-9712,-8633,-8634,-7715,-8640,-9235], [1,3,6795], [0,0,6796,6797,4], -[0,-5,-103,-848,-3358,-5300,-1,-10,-181,-79,-2,-104,-30], -[0,-53,-46,-740,-127,-102,-1067,-1934,-4915,-2340], +[0,-3037,-3664,-6593,-7653,-7654,-932,-958,-960,-1449,-2410,-2466,-2469], +[0,-3100,-3445,-3261,-3098,-3160,-6107,-9975,-9612,-11074], [1,3,6799], [0,0,6800,6801,11], -[0,-21,-203,-80,-63,-1,-348,-3,-3939,-4706,-15,-14,-226,-272], -[0,-3201,-2516,-4814,-1407], +[0,-40,-3326,-350,-351,-932,-1103,-1654,-1687,-10835,-1788,-2127,-2140,-2195], +[0,-9506,-6827,-10350,-6826], [1,3,6803], [0,6804,38,6805,6], -[0,-4668,-20,-2513,-921,-1855,-1328,-206,-497,-813,-467,-344,-6363,-128,-10454,-596,-518], -[0,-4541,-46,-37,-3104,-99], +[0,-11064,-668,-6842,-1000,-1039,-1099,-1111,-1333,-1465,-1630,-1641,-1836,-2114,-11892,-2433,-2551], +[0,-11893,-3445,-687,-10810,-3690], [1,3,6807], [0,6808,6809,6810,5], -[0,-2336,-442,-688], -[0,-48,-215,-1,-12,-10,-115,-25,-67,-55,-23,-3,-4,-2182,-371,-2], -[0,-4541,-337,-2094,-3055,-209,-46,-99,-410,-106], +[0,-11197,-1582,-2291], +[0,-190,-865,-932,-940,-958,-965,-967,-968,-1110,-1548,-1654,-1942,-2340,-2892,-2410], +[0,-11893,-3323,-4725,-11894,-3844,-3445,-3690,-3691,-4055], [1,3,6812], [0,0,6813,6814,6], -[0,-116,-13,-474,-3], -[0,-852,-254], +[0,-615,-664,-710,-1654], +[0,-5921,-5550], [1,3,6816], [0,6817,6818,6819,9], -[0,-90,-1751,-2895,-4540,-10453,-205], -[0,-11,-216,-173,-21,-136,-140,-48,-204,-10452,-296,-845,-295,-737,-582,-1058,-10451,-86,-5098,-3054,-152,-159,-26,-1, --5195,-181,-41,-32,-615,-2878,-199,-3149,-10450,-8,-176,-166,-10449,-18,-3702,-1760,-4641,-10448,-157,-342,-120,-83,-104, --10447,-4837], -[0,-1073,-95,-99], +[0,-44,-3345,-772,-11895,-11896,-2531], +[0,-23,-26,-38,-40,-41,-42,-190,-3266,-11897,-3470,-7040,-3471,-3472,-7041,-7042,-11898,-533,-8580,-11899,-708,-753,-767, +-932,-8147,-960,-1004,-1168,-1174,-1268,-1412,-10034,-11900,-1415,-1419,-1446,-11901,-1534,-4375,-3156,-11220,-11902, +-1978,-2082,-2174,-2411,-2466,-11903,-10092], +[0,-5801,-3162,-3690], [1,3,6821], [0,6822,0,6823,5], -[0,-457], -[0,-31,-73,-585,-10446,-2095,-508,-10445,-10444,-3469,-607,-2670,-10443,-10442,-165,-851], +[0,-3223], +[0,-3264,-3215,-5177,-11904,-4681,-5922,-11905,-11906,-6595,-1839,-4142,-11907,-11908,-1838,-6233], [1,3,6825], [0,0,6826,7,6], -[0,-3,-1,-66,-110,-10441,-1186,-76,-10,-67,-84,-131], +[0,-1654,-932,-1405,-589,-11909,-585,-966,-958,-968,-943,-974], [1,3,6828], [0,6829,6830,6831,10], -[0,-10440,-2176,-2828], -[0,-13,-3,-2206,-180,-2251,-10439], -[0,-41,-223,-778,-1968,-683], +[0,-11910,-2445,-1846], +[0,-664,-1654,-1592,-1972,-666,-11911], +[0,-1004,-729,-6120,-8449,-3173], [1,3,6833], [0,6834,6835,6836,8], -[0,-3926], -[0,-2206,-3,-13,-2251], -[0,-1809,-2114,-778,-1968,-683,-4885], +[0,-1845], +[0,-1592,-1654,-664,-666], +[0,-1841,-4038,-6120,-8449,-3173,-9795], [1,3,6838], [0,6839,236,6840,4], -[0,-2828], -[0,-1809,-1044,-778,-1968,-683,-10438,-1702], +[0,-1846], +[0,-1841,-8427,-6120,-8449,-3173,-11912,-5110], [1,3,6842], [0,6843,236,237,8], -[0,-10437,-3926], +[0,-11913,-1845], [1,3,6845], [0,6846,6847,237,5], -[0,-10436,-905,-2828,-4736,-2176], -[0,-2206,-3,-13,-180,-2251], +[0,-11914,-1791,-1846,-10686,-2445], +[0,-1592,-1654,-664,-1972,-666], [1,3,6849], [0,0,114,6850,4], -[0,-1809,-5493], +[0,-1841,-6539], [1,3,6852], [0,6853,0,6854,5], -[0,-287,-132], -[0,-2338,-248], +[0,-1958,-2444], +[0,-11153,-1847], [1,3,6856], [0,0,31,6857,8], -[0,-91,-59,-248], +[0,-4865,-633,-1847], [1,3,6859], [0,0,238,6860,5], -[0,-248,-5459,-4539,-126,-2474,-303,-1400,-3436,-4563,-2391], +[0,-1847,-6788,-11915,-6656,-7693,-1076,-7422,-7000,-11786,-9330], [1,3,6862], [0,0,118,6863,4], -[0,-248,-5021,-126,-1927,-4592,-10435,-10434,-5514,-132,-674,-1467,-1406,-549,-672,-651,-668,-280], +[0,-1847,-9098,-6656,-11070,-11634,-11916,-11917,-6441,-2444,-5260,-3103,-6989,-3582,-5396,-1391,-6659,-7440], [1,3,6865], [0,0,6866,6867,8], -[0,-5438,-673,-5,-137,-103,-4698,-321,-2,-30], -[0,-41,-1075,-3120,-1937], +[0,-6918,-5295,-3037,-3199,-3664,-10880,-2214,-2410,-2469], +[0,-1004,-5570,-10470,-9843], [1,3,6869], [0,0,6870,7,5], -[0,-5,-103,-1567,-89,-1,-1552,-527,-4,-2,-1287,-30,-4538], +[0,-3037,-3664,-672,-928,-932,-944,-1431,-1942,-2410,-2423,-2469,-11918], [1,3,6872], [0,6873,6874,57,4], -[0,-1834,-276,-2463], -[0,-1851,-3,-2822], +[0,-1406,-1460,-7885], +[0,-1078,-1654,-1941], [1,3,6876], [0,6877,6878,6879,4], -[0,-10433,-10432,-1810,-197,-4886,-123], -[0,-5,-299,-422,-4,-39,-2], -[0,-1064,-114], +[0,-11919,-11920,-1834,-2062,-9789,-2446], +[0,-3037,-640,-997,-1942,-2322,-2410], +[0,-6528,-3262], [1,3,6881], [0,6882,6883,6884,10], -[0,-2895,-5853,-10431,-10430,-4537], -[0,-11,-962,-21,-48,-203,-86,-10429,-10428,-1572,-59,-327,-1181,-1,-348,-55,-8,-176,-1435,-100,-2317,-4,-643,-14,-870], -[0,-1064,-10427,-10426,-1661,-1602,-1203], +[0,-772,-4702,-11921,-11922,-11923], +[0,-23,-3840,-40,-190,-3326,-533,-11924,-11925,-627,-633,-659,-709,-932,-1103,-1110,-1415,-1419,-4981,-1599,-11926,-1942, +-1974,-2127,-4063], +[0,-6528,-11927,-11928,-6524,-10855,-9472], [1,3,6886], [0,0,6887,7,4], -[0,-116,-10425,-13,-10424,-474,-3,-235], +[0,-615,-11929,-664,-11930,-710,-1654,-1939], [1,3,6889], [0,6890,6891,6892,4], -[0,-3125,-10423,-10422,-10421,-10420,-10419], -[0,-10418,-10417,-60,-116,-1028,-10416,-2,-30,-4909], -[0,-386,-10415,-605,-4536,-842,-1066,-4535], +[0,-10416,-11931,-11932,-11933,-11934,-11935], +[0,-11936,-11937,-510,-615,-705,-11938,-2410,-2469,-9667], +[0,-7685,-11939,-1857,-11940,-10425,-6321,-11941], [1,3,6894], [0,6895,6896,6897,5], -[0,-645,-798,-552], -[0,-182,-169,-94,-620,-268,-328,-2561,-1,-191,-500,-10,-420,-1598,-8,-496,-2316,-4868,-7], -[0,-3925,-903,-1935], +[0,-1860,-2239,-2520], +[0,-526,-527,-528,-556,-558,-559,-6089,-932,-934,-956,-958,-1059,-11942,-1415,-1417,-11943,-9913,-2125], +[0,-1858,-1859,-9879], [1,3,6899], [0,6900,6901,239,11], -[0,-1165,-40,-3413,-3212,-361,-113,-3412,-219], -[0,-1,-699], +[0,-1018,-1077,-7234,-9423,-1959,-2105,-7241,-2518], +[0,-932,-1754], [1,3,6903], [0,6904,6905,239,5], -[0,-1021,-1165,-40,-3413,-3212,-361,-113,-3412,-219], -[0,-1,-699,-1242], +[0,-925,-1018,-1077,-7234,-9423,-1959,-2105,-7241,-2518], +[0,-932,-1754,-4881], [1,3,6907], [0,6908,6909,6910,5], -[0,-928,-135,-1178,-10414,-1026,-5038,-199,-88,-608,-1310,-1458,-10413,-562,-490,-1499,-113,-272,-596], -[0,-5296,-1,-1861,-84,-10,-76,-67,-131,-66], -[0,-37,-1026,-2827,-10412,-10411], +[0,-501,-714,-728,-11944,-752,-9012,-1412,-1646,-1810,-1812,-3547,-11945,-1878,-1965,-1982,-2105,-2195,-2433], +[0,-7672,-932,-942,-943,-958,-966,-968,-974,-1405], +[0,-687,-752,-1861,-11946,-11947], [1,3,6912], [0,0,70,7,11], [1,3,6914], [0,0,0,6915,8], -[0,-174,-135,-584,-37,-194], +[0,-3974,-714,-5538,-687,-4000], [1,3,6917], [0,0,6918,6919,5], -[0,-1,-4678,-707,-3,-15], -[0,-28,-511,-323], +[0,-932,-10999,-1202,-1654,-1788], +[0,-1107,-5572,-1864], [0,44,15,16,8], [1,3,6922], [0,0,6923,6924,9], -[0,-51,-10410,-81,-4654,-34], -[0,-2457,-2042,-172,-481,-10409,-3589,-141,-2334,-4629,-452,-507,-1734,-1955,-3481,-60,-629,-430,-116], +[0,-519,-11948,-2384,-11135,-2541], +[0,-8124,-5865,-1961,-5923,-11949,-5500,-3966,-11301,-11300,-5845,-6408,-4001,-8911,-6509,-510,-5867,-4795,-615], [1,3,6926], [0,6927,6928,6929,10], -[0,-10408,-10407,-10406,-10405,-5103,-10404,-10403,-1394,-10402,-4534,-10401], -[0,-310,-2329,-10400,-5,-768,-10399,-1766,-1347,-36,-2761,-1,-10,-115,-76,-67,-118,-3053,-10398,-2219,-8,-263,-1522, --10397,-791,-3052,-235,-180,-1304,-7,-16,-889,-10396,-138,-39,-71,-33,-81,-2,-552], -[0,-508,-738,-245,-106], +[0,-11950,-11951,-11952,-11953,-8543,-11954,-11955,-7967,-11956,-11957,-11958], +[0,-2832,-11419,-11959,-3037,-468,-11960,-2917,-648,-812,-2758,-932,-958,-965,-966,-968,-999,-11961,-11962,-1362,-1415, +-1573,-1577,-11963,-2884,-11964,-1939,-1972,-1976,-2125,-2177,-2240,-11965,-2269,-2322,-2347,-2379,-2384,-2410,-2520], +[0,-5922,-3444,-5827,-4055], [1,3,6931], [0,0,6932,6933,4], -[0,-1,-12,-2452,-76,-25,-9,-8,-4,-372], -[0,-158,-10395,-10394,-1398,-10393], +[0,-932,-940,-8177,-966,-967,-1344,-1415,-1942,-2331], +[0,-1764,-11966,-11967,-7646,-11968], [1,3,6935], [0,6936,6937,6938,5], -[0,-806], -[0,-1,-4785,-2], -[0,-281,-4750,-207], +[0,-1880], +[0,-932,-10497,-2410], +[0,-6527,-10588,-834], [1,3,6940], [0,6941,6942,6943,6], -[0,-3294], -[0,-34,-51,-81,-372], -[0,-451,-106,-3567,-158,-10392,-630,-2429,-349,-1076,-2428,-1958,-126,-720,-511,-128,-1382,-1065,-942,-405,-745,-1957, --248], +[0,-8341], +[0,-2541,-519,-2384,-2331], +[0,-5897,-4055,-5756,-1764,-11969,-5573,-8804,-1047,-5504,-8805,-8806,-6656,-7282,-5572,-2114,-8807,-6370,-7420,-7421, +-2487,-8808,-1847], [1,3,6945], [0,175,14,6946,5], -[0,-2466,-451,-126,-630,-2429,-349,-1076,-2428,-1958,-720,-511,-128,-1382,-1065,-942,-405,-745,-1957,-248], +[0,-7861,-5897,-6656,-5573,-8804,-1047,-5504,-8805,-8806,-7282,-5572,-2114,-8807,-6370,-7420,-7421,-2487,-8808,-1847], [1,3,6948], [0,0,84,6949,5], -[0,-3323,-1269,-1372], +[0,-8041,-3674,-10484], [1,3,6951], [0,6952,0,7,5], -[0,-5956], +[0,-3982], [1,3,6954], [0,6955,6956,6957,11], -[0,-1247,-1884,-1283], -[0,-59,-3,-1656,-976], -[0,-5643,-91,-3249,-1305,-73,-506], +[0,-4733,-578,-2538], +[0,-633,-1654,-6810,-2568], +[0,-5736,-4865,-8995,-1875,-3215,-6597], [1,3,6959], [0,6960,6961,6962,4], -[0,-477], -[0,-1,-828,-76,-350,-3,-15,-2], -[0,-627,-107,-363], +[0,-479], +[0,-932,-937,-966,-1001,-1654,-1788,-2410], +[0,-6324,-3862,-1266], [1,3,6964], [0,6965,14,6966,8], -[0,-10391], -[0,-3169,-4533,-562,-3170,-4532,-1603,-163,-10390,-10389,-10388], +[0,-11970], +[0,-9757,-11971,-1878,-9756,-11972,-10781,-2265,-11973,-11974,-11975], [1,3,6968], [0,0,6969,6970,9], -[0,-13,-66,-3,-2184], -[0,-3169,-4533,-562,-3170,-3167,-1155], +[0,-664,-1405,-1654,-2176], +[0,-9757,-11971,-1878,-9756,-9763,-1369], [1,3,6972], [0,6973,70,6974,8], -[0,-10387,-10386,-10385,-10384,-1580,-60,-10383,-119,-10382,-58,-2896,-574,-36,-573,-1858,-10381,-72,-1817,-4531,-10380, --10379,-10378,-10377,-2121,-16,-146,-2794,-10376,-101], -[0,-37,-3256,-3255,-1269,-6360,-4530,-263,-106,-41,-2225,-10375,-1370,-10374,-10373,-10372,-4529,-10371,-10370,-1368, --3206,-1912,-1601,-2585,-1756,-10369,-10368,-4528,-10367,-3051,-1621,-1620,-4598,-2788,-10366,-288,-10365,-5299,-10364, --1600,-4528,-10363,-3988,-3083,-10362,-2582,-3079,-5053,-10361,-10360,-10359,-10358,-1936,-1983,-1177,-2418,-10357], +[0,-11976,-11977,-11978,-11979,-483,-510,-11980,-679,-11981,-719,-764,-809,-812,-910,-995,-11982,-1650,-1708,-11983, +-11984,-11985,-11986,-11987,-3968,-2177,-2234,-2243,-11988,-1442], +[0,-687,-8947,-8948,-3674,-1879,-11989,-1573,-4055,-1004,-1277,-11990,-11492,-11991,-11992,-11993,-11994,-11995,-11996, +-11997,-9466,-11998,-11148,-5731,-3207,-11999,-12000,-12001,-12002,-12003,-8901,-8902,-11586,-2295,-12004,-1753,-12005, +-7662,-12006,-11230,-12001,-12007,-1066,-11429,-12008,-5805,-11486,-8944,-12009,-12010,-12011,-12012,-9844,-7606,-763, +-8904,-12013], [1,3,6976], [0,0,6977,6978,4], -[0,-59,-1880,-223,-1,-12,-15,-4,-157,-396,-4527,-39], -[0,-10356,-5558,-5557,-10355,-10354,-73,-579,-4537,-10353,-806], +[0,-633,-641,-729,-932,-940,-1788,-1942,-1978,-2187,-12014,-2322], +[0,-12015,-6116,-6117,-12016,-12017,-3215,-7715,-11923,-12018,-1880], [1,3,6980], [0,6981,6982,6983,9], -[0,-6298], -[0,-829,-8,-816,-3950,-130], -[0,-17,-686,-3144,-3143], +[0,-2381], +[0,-909,-1415,-1421,-1425,-2231], +[0,-2501,-2552,-10054,-10055], [1,3,6985], [0,0,0,6986,4], -[0,-3924,-10352,-685,-4526,-3092,-508,-4525,-757,-1633,-1371,-2040,-370,-1931,-3116,-158,-4582,-1372,-1987,-10351,-10350, --626,-5617,-10349,-4524,-4798], +[0,-1882,-12019,-3015,-12020,-11037,-5922,-12021,-1380,-7856,-10606,-5880,-3209,-10440,-10527,-1764,-11683,-10484,-7442, +-12022,-12023,-6694,-5881,-12024,-12025,-10444], [1,3,6988], [0,241,6989,6990,5], -[0,-175,-33,-2], -[0,-10348,-10347,-10346,-10345,-10344,-10343,-10342,-10341,-99,-10340,-10339,-10338,-10337,-46,-53,-2], +[0,-2334,-2379,-2410], +[0,-12026,-12027,-12028,-12029,-12030,-12031,-12032,-12033,-3690,-12034,-12035,-12036,-12037,-3445,-3100,-2410], [1,3,6992], [0,39,6993,6994,4], -[0,-50,-11,-161,-173,-480,-21,-1068,-203,-63,-232,-94,-86,-278,-10336,-26,-298,-42,-1,-191,-10,-420,-1598,-9,-8,-18,-2316, --4,-10335,-642,-14,-1298,-226,-120,-395,-10334,-2,-1785], -[0,-888,-1505,-1865,-10333,-1265,-10332,-6,-1683,-2,-10331,-10330,-10329,-224,-671], +[0,-21,-23,-32,-38,-39,-40,-6056,-3326,-351,-3561,-528,-533,-535,-12038,-767,-796,-856,-932,-934,-958,-1059,-11942,-1344, +-1415,-1534,-11943,-1942,-12039,-1993,-2127,-2139,-2140,-2174,-2200,-12040,-2410,-2449], +[0,-2278,-1885,-906,-12041,-3771,-12042,-2006,-5411,-2410,-12043,-12044,-12045,-712,-5535], [1,3,6996], [0,0,6997,6998,5], -[0,-10328,-10327,-10326,-10325,-1,-10324,-2], -[0,-4523,-129,-1637,-2130,-2683,-10323,-10322], +[0,-12046,-12047,-12048,-12049,-932,-12050,-2410], +[0,-12051,-3095,-7582,-3821,-3822,-12052,-12053], [1,3,7000], [0,7001,7002,7003,6], -[0,-60,-36], -[0,-8], -[0,-105,-4522,-939], +[0,-510,-812], +[0,-1415], +[0,-1334,-12054,-8113], [1,3,7005], [0,7006,0,7007,8], -[0,-646,-164,-799], -[0,-24,-38,-4977,-592,-73,-10321,-507,-4521,-1277], +[0,-1699,-1863,-2232], +[0,-775,-1889,-9336,-3277,-3215,-12055,-6408,-12056,-3186], [1,3,7009], [0,7010,7011,7012,8], -[0,-560,-465], -[0,-5,-1,-12,-10320,-38,-4,-2], -[0,-24,-38,-218,-10319,-4520], +[0,-1931,-1934], +[0,-3037,-932,-940,-12057,-1889,-1942,-2410], +[0,-775,-1889,-3583,-12058,-12059], [1,3,7014], [0,7015,7016,7017,4], -[0,-119,-6119,-40,-164,-902,-2315,-1414,-4519,-285,-311,-96], -[0,-51,-43,-56,-1,-4518,-55,-38,-561,-4,-887,-123], -[0,-37,-38,-1945], +[0,-679,-3227,-1077,-1863,-1907,-12060,-6467,-12061,-2218,-2654,-2550], +[0,-519,-652,-756,-932,-12062,-1110,-1889,-1906,-1942,-2289,-2446], +[0,-687,-1889,-9300], [1,3,7019], [0,7020,0,7021,6], -[0,-3842,-1896,-1895,-4056,-3050], -[0,-224,-4517,-24,-435,-727,-4516,-10318,-4515,-4562,-38,-218,-726,-10317,-3392,-389], +[0,-2953,-93,-94,-97,-12063], +[0,-712,-12064,-775,-3099,-5112,-12065,-12066,-12067,-11788,-1889,-3583,-5549,-12068,-7451,-4132], [1,3,7023], [0,7024,7025,7026,6], -[0,-305,-2314,-2752,-465], -[0,-3049,-38], -[0,-224,-135,-384,-24,-227,-38,-218], +[0,-635,-12069,-2840,-1934], +[0,-12070,-1889], +[0,-712,-714,-724,-775,-1644,-1889,-3583], [1,3,7028], [0,242,22,7029,9], -[0,-24,-1647,-38,-218], +[0,-775,-7193,-1889,-3583], [1,3,7031], [0,7032,7033,7034,5], -[0,-160,-2314,-20,-10316,-4514,-38,-10315,-4513,-2824,-10314,-10313,-4512,-10312,-10311,-4511,-10310,-10309,-2196,-1808, --3922,-10308,-4510,-10307,-10306,-10305,-3920,-4509,-10304,-4508,-10303,-4507], -[0,-182,-169,-98,-268,-712,-2924,-3317,-267,-144,-10302,-10301,-10300,-10299,-10298,-1,-10297,-1860,-64,-919,-277,-379, --10296,-101,-911,-221,-10295,-2844,-10294,-10293,-10292,-10291,-10290,-10289,-10288,-10287,-10286,-4572,-2201,-10285, --242,-1310,-10284,-561,-492,-2315,-2502,-121,-6,-35,-10283,-7,-138,-154,-39,-10282,-17,-170,-10281], -[0,-38,-218,-24,-632,-4506], +[0,-518,-12069,-668,-12071,-12072,-1889,-12073,-12074,-1890,-12075,-12076,-12077,-12078,-12079,-12080,-12081,-12082,-1896, +-1897,-1898,-12083,-12084,-12085,-12086,-12087,-1917,-12088,-12089,-12090,-12091,-12092], +[0,-526,-527,-534,-558,-560,-565,-8161,-682,-778,-12093,-12094,-12095,-12096,-12097,-932,-12098,-949,-969,-1017,-1041, +-1304,-12099,-1442,-1455,-1600,-12100,-1633,-12101,-12102,-12103,-12104,-12105,-12106,-12107,-12108,-12109,-11748,-1762, +-12110,-1792,-1812,-12111,-1906,-1908,-12060,-7033,-1967,-2006,-2019,-12112,-2125,-2269,-2275,-2322,-12113,-2501,-2505, +-12114], +[0,-1889,-3583,-775,-5387,-12115], [1,3,7036], [0,7037,0,7038,5], -[0,-3048,-1896,-1895,-4057], -[0,-4505,-4504,-24,-1911,-1455,-4503,-38,-218,-4502,-676,-2095,-632], +[0,-12116,-93,-94,-95], +[0,-12117,-12118,-775,-12119,-3586,-12120,-1889,-3583,-12121,-5101,-4681,-5387], [1,3,7040], [0,7041,0,7042,4], -[0,-3048,-1896,-1895,-3050,-465], -[0,-24,-1911,-1455,-6044,-38,-218,-1091,-2095,-1454,-2712,-632], +[0,-12116,-93,-94,-12063,-1934], +[0,-775,-12119,-3586,-3587,-1889,-3583,-3589,-4681,-3591,-3592,-5387], [1,3,7044], [0,7045,0,7046,4], -[0,-3048,-1896,-1895,-560], -[0,-4505,-4504,-24,-1911,-1455,-4501,-1973,-38,-218,-1922,-1597,-2095,-632], +[0,-12116,-93,-94,-1931], +[0,-12117,-12118,-775,-12119,-3586,-12122,-8109,-1889,-3583,-11315,-12123,-4681,-5387], [1,3,7048], [0,90,7049,7050,6], -[0,-38,-901,-2345], -[0,-24,-968,-38,-218], +[0,-1889,-1930,-10815], +[0,-775,-3485,-1889,-3583], [1,3,7052], [0,0,22,7053,9], -[0,-24,-6494,-721,-38,-218], +[0,-775,-816,-7192,-1889,-3583], [1,3,7055], [0,0,22,7056,4], -[0,-541,-24,-10280,-227,-1647,-38,-218], +[0,-6454,-775,-12124,-1644,-7193,-1889,-3583], [1,3,7058], [0,0,7059,7060,6], -[0,-207,-164,-38], -[0,-38,-24,-218,-10279,-10278,-10277], +[0,-834,-1863,-1889], +[0,-1889,-775,-3583,-12125,-12126,-12127], [1,3,7062], [0,0,7063,7064,8], -[0,-13,-32,-530,-364], -[0,-38,-24,-218,-10276,-3489,-3047], +[0,-664,-1168,-1197,-1231], +[0,-1889,-775,-3583,-12128,-6445,-12129], [1,3,7066], [0,7067,7068,7069,9], -[0,-497,-2737,-38,-1502], -[0,-3304,-160,-13,-152,-1,-12,-1550,-3301,-1334,-115,-2441,-25,-826,-825,-1643,-3,-5161,-15,-2313,-901,-10275,-4,-179, --558,-887], -[0,-38,-389,-31,-74,-10274,-10273,-24,-222,-77,-432,-10272,-887], +[0,-1333,-3187,-1889,-1929], +[0,-8281,-518,-664,-708,-932,-940,-954,-8286,-961,-965,-8287,-967,-971,-980,-7355,-1654,-8324,-1788,-12130,-1930,-12131, +-1942,-2281,-2282,-2289], +[0,-1889,-4132,-3264,-2476,-12132,-12133,-775,-1521,-2162,-3754,-12134,-2289], [1,3,7071], [0,7072,0,7073,10], -[0,-3050,-465], -[0,-1235,-24,-281,-10271,-5722,-3432,-38,-218,-3162,-636], +[0,-12063,-1934], +[0,-5182,-775,-6527,-12135,-5399,-7036,-1889,-3583,-9804,-3576], [1,3,7075], [0,7076,7077,7078,10], -[0,-465,-4519,-128], -[0,-51,-43,-1,-4518,-25,-55,-38,-901,-4,-887], -[0,-24,-38,-218,-628,-10270,-158], +[0,-1934,-12061,-2114], +[0,-519,-652,-932,-12062,-967,-1110,-1889,-1930,-1942,-2289], +[0,-775,-1889,-3583,-6024,-12136,-1764], [1,3,7080], [0,7081,0,7082,4], -[0,-2212], -[0,-38,-10269,-10268], +[0,-1532], +[0,-1889,-12137,-12138], [1,3,7084], [0,7085,7086,7087,5], -[0,-527,-16,-403], -[0,-151,-8,-222,-77,-9,-262,-10267,-425,-1,-382,-237,-55,-38,-887,-57,-33,-17,-4,-26,-50,-48,-86,-6216,-138,-11,-1143,-18, --65,-462,-10266,-561,-1503,-49,-115,-514,-134,-21,-83,-145,-902,-10,-583,-150,-12,-25,-309,-10265,-62], -[0,-24,-38,-1945,-17,-3657], +[0,-1431,-2177,-755], +[0,-824,-1415,-1521,-2162,-1344,-1623,-12139,-774,-932,-784,-825,-1110,-1889,-2289,-2375,-2379,-2501,-1942,-767,-21,-190, +-533,-2790,-2269,-23,-1522,-1534,-1771,-2163,-12140,-1906,-1916,-86,-965,-3560,-2251,-40,-2411,-959,-1907,-958,-6929, +-978,-940,-967,-3748,-12141,-3307], +[0,-775,-1889,-9300,-2501,-5050], [1,3,7089], [0,7090,22,7091,6], -[0,-465,-3890], -[0,-24,-227,-721,-38,-218], +[0,-1934,-2280], +[0,-775,-1644,-7192,-1889,-3583], [1,3,7093], [0,7094,7095,7096,8], -[0,-305,-2314,-560,-2312], -[0,-3049,-38,-2345,-2823], -[0,-24,-721,-38,-218], +[0,-635,-12069,-1931,-12142], +[0,-12070,-1889,-10815,-1899], +[0,-775,-7192,-1889,-3583], [1,3,7098], [0,60,22,7099,5], -[0,-24,-1086,-10264,-10263,-721,-218], +[0,-775,-3827,-12143,-12144,-7192,-3583], [1,3,7101], [0,7102,22,50,10], -[0,-2752,-465,-2312], +[0,-2840,-1934,-12142], [1,3,7104], [0,7105,22,7106,10], -[0,-305,-465,-2312], -[0,-38,-24,-218,-227,-721,-5753], +[0,-635,-1934,-12142], +[0,-1889,-775,-3583,-1644,-7192,-5154], [1,3,7108], [0,7109,7110,7111,4], -[0,-2243,-560], -[0,-4500,-38], -[0,-24,-227,-721,-38,-218,-1597], +[0,-783,-1931], +[0,-12145,-1889], +[0,-775,-1644,-7192,-1889,-3583,-12123], [1,3,7113], [0,7114,130,7115,10], -[0,-1471,-560,-465], -[0,-10262,-38,-24,-218], +[0,-2773,-1931,-1934], +[0,-12146,-1889,-775,-3583], [1,3,7117], [0,90,0,7118,11], -[0,-38,-24,-218,-77,-2421], +[0,-1889,-775,-3583,-2162,-8893], [1,3,7120], [0,7121,0,7122,11], -[0,-4499,-2940,-560], -[0,-10261,-1221,-10260,-24,-4506,-1911,-2421,-10259,-38,-218,-1388,-1597,-2651,-2650,-389,-632], +[0,-12147,-98,-1931], +[0,-12148,-6599,-12149,-775,-12115,-12119,-8893,-12150,-1889,-3583,-8199,-12123,-4682,-4683,-4132,-5387], [1,3,7124], [0,7125,7126,7127,5], -[0,-10258,-10257,-10256], -[0,-10255,-305,-38,-561,-14], -[0,-38,-24,-218,-10254,-2017,-10253], +[0,-12151,-12152,-12153], +[0,-12154,-635,-1889,-1906,-2127], +[0,-1889,-775,-3583,-12155,-6413,-12156], [1,3,7129], [0,0,22,7130,6], -[0,-38,-24,-218,-2370], +[0,-1889,-775,-3583,-9791], [0,60,22,50,4], [1,3,7133], [0,60,22,50,11], @@ -10665,3186 +10756,3293 @@ true, [0,242,22,50,8], [1,3,7137], [0,60,22,7138,4], -[0,-24,-1655,-721,-1647,-38,-218,-195], +[0,-775,-6811,-7192,-7193,-1889,-3583,-2435], [1,3,7140], [0,7141,22,50,5], -[0,-465,-2312], +[0,-1934,-12142], [1,3,7143], [0,0,7144,7145,4], -[0,-9,-3,-38,-66,-4,-18,-1503], -[0,-38,-2575,-1597,-218,-24,-1456,-107], +[0,-1344,-1654,-1889,-1405,-1942,-1534,-1916], +[0,-1889,-5899,-12123,-3583,-775,-3585,-3862], [1,3,7147], [0,7148,0,7149,5], -[0,-10252,-5734,-10251,-10250,-10249,-10248,-10247,-10246,-10245,-10244,-10243,-10242,-10241,-10240,-10239,-6569,-10238, --10237,-10236,-10235,-10234,-10233,-10232,-10231,-10230,-10229,-10228,-4498,-10227,-4056,-10226,-10225,-10224,-10223, --10222,-10221,-10220,-10219,-10218,-10217,-10216,-160,-305,-10215,-10214,-10213,-6499,-4513,-10212,-6359,-4512,-4511, --2196,-1808,-3922,-10211,-10210,-6270,-10209,-4510,-10208,-6358,-10207, --10206,-3920,-6264,-10205,-10204,-10203,-4509,-4508,-4507], -[0,-24,-1911,-5387,-2552,-10202,-241,-38,-218,-2651,-2650,-5386,-632], +[0,-12157,-5297,-12158,-12159,-12160,-12161,-12162,-12163,-12164,-12165,-12166,-12167,-12168,-12169,-12170,-96,-12171, +-12172,-12173,-12174,-12175,-12176,-12177,-12178,-12179,-12180,-12181,-12182,-12183,-97,-12184,-12185,-12186,-12187, +-12188,-12189,-12190,-12191,-12192,-12193,-12194,-518,-635,-12195,-12196,-12197,-782,-12074,-12198,-1892,-12077,-12080, +-1896,-1897,-1898,-12199,-12200,-2579,-12201,-12084,-12202,-1905,-12203, +-12204,-1917,-2635,-12205,-12206,-12207,-12088,-12090,-12092], +[0,-775,-12119,-7186,-6309,-12208,-2634,-1889,-3583,-4682,-4683,-7187,-5387], [1,3,7151], [0,7152,7153,50,8], -[0,-305,-2314], -[0,-3049,-1530,-38], +[0,-635,-12069], +[0,-12070,-1329,-1889], [1,3,7155], [0,0,0,7156,4], -[0,-24,-38,-3046,-73,-3256], +[0,-775,-1889,-12209,-3215,-8947], [1,3,7158], [0,0,0,7159,4], -[0,-24,-38,-3046,-73,-432,-77], +[0,-775,-1889,-12209,-3215,-3754,-2162], [1,3,7161], [0,7162,7163,7,11], -[0,-2243,-3181], -[0,-50,-11,-161,-3680,-216,-21,-178,-51,-278,-5450,-237,-1,-10,-28,-88,-15,-38,-16,-2], +[0,-783,-9649], +[0,-21,-23,-32,-4952,-26,-40,-43,-519,-535,-6831,-825,-932,-958,-1107,-1646,-1788,-1889,-2177,-2410], [1,3,7165], [0,7166,7167,7168,8], -[0,-465,-598], -[0,-4514,-38], -[0,-24,-227,-721,-38,-218,-256,-598], +[0,-1934,-2303], +[0,-12072,-1889], +[0,-775,-1644,-7192,-1889,-3583,-3839,-2303], [1,3,7170], [0,90,22,50,4], [1,3,7172], [0,0,7173,7174,4], -[0,-1,-9,-18,-4,-556,-39], -[0,-38,-853,-73], +[0,-932,-1344,-1534,-1942,-2320,-2322], +[0,-1889,-5846,-3215], [1,3,7176], [0,7177,0,7178,4], -[0,-10201,-10200,-10199,-10198,-10197,-10196,-10195,-44], -[0,-1066,-842,-4536,-605,-386,-718,-1935,-337,-46,-4535,-1932,-2,-436,-381], +[0,-12210,-12211,-12212,-12213,-12214,-12215,-12216,-2387], +[0,-6321,-10425,-11940,-1857,-7685,-7773,-9879,-3323,-3445,-11941,-10424,-2410,-3018,-985], [1,3,7180], [0,7181,7182,7183,4], -[0,-5907,-5908], -[0,-49,-937,-43,-13,-244,-2250,-404,-9,-815,-18,-3,-97], -[0,-31,-506,-4900,-73,-507,-4497,-4521,-592,-4496], +[0,-4256,-4255], +[0,-86,-9404,-652,-664,-665,-667,-740,-1344,-1448,-1534,-1654,-2250], +[0,-3264,-6597,-9727,-3215,-6408,-12217,-12056,-3277,-12218], [1,3,7185], [0,7186,0,7187,5], -[0,-10194,-123,-2853,-6408,-71,-10193,-6409,-10192,-188,-10191,-10190,-197,-10189,-10188], -[0,-718,-4628,-6356], +[0,-12219,-2446,-1523,-1525,-2347,-12220,-1524,-12221,-1729,-12222,-12223,-2062,-12224,-12225], +[0,-7773,-11304,-1937], [1,3,7189], [0,7190,7191,7192,4], -[0,-2581,-10187,-10186,-10185,-742], -[0,-182,-447,-6146,-835,-268,-59,-2727,-10184,-421,-78,-139,-4787,-212,-189,-10183,-3,-10182,-5285,-1498,-416,-16], -[0,-1501,-293,-1072,-75,-61,-338,-360], +[0,-5830,-12226,-12227,-12228,-2546], +[0,-526,-566,-3067,-551,-558,-633,-3346,-12229,-1003,-1471,-1475,-10495,-1479,-1482,-12230,-1654,-12231,-7718,-1991,-2111, +-2177], +[0,-1938,-507,-5855,-4004,-3634,-3217,-3272], [1,3,7194], [0,7195,7196,7197,6], -[0,-230,-3163,-219], -[0,-927,-66,-3], -[0,-387,-682,-158,-235,-4495,-2323,-75,-684], +[0,-769,-9798,-2518], +[0,-509,-1405,-1654], +[0,-5889,-3322,-1764,-1939,-12232,-11727,-4004,-3113], [1,3,7199], [0,0,7200,7201,11], -[0,-10181,-10180,-11,-1273,-5730,-21,-178,-320,-109,-69,-5,-269,-1079,-960,-10179,-13,-56,-26,-10178,-89,-9,-10177,-701, --3,-343,-1393,-3141,-121,-1707,-27,-186,-175,-2,-284,-104,-30,-1242], -[0,-491,-6,-102,-2719,-4494,-1940,-127,-10176,-184,-52], +[0,-12233,-12234,-23,-3408,-5321,-40,-43,-2581,-3035,-3621,-3037,-4372,-5286,-3899,-12235,-664,-756,-767,-12236,-928, +-1344,-12237,-1637,-1654,-1772,-8065,-10105,-1967,-5037,-2210,-2211,-2334,-2410,-2426,-2466,-2469,-4881], +[0,-1940,-2006,-3160,-3477,-12238,-9613,-3098,-12239,-3577,-3161], [1,3,7203], [0,7204,27,57,5], -[0,-20,-119,-1851,-2463], +[0,-668,-679,-1078,-7885], [1,3,7206], [0,7207,7208,7209,4], -[0,-10175,-2125,-908], -[0,-3258,-62,-80,-231,-63,-29,-408,-22,-19,-1179,-1,-12,-25,-9,-8,-4493,-10174,-4,-14,-134,-175,-33,-2], -[0,-4,-107,-166,-5179], +[0,-12240,-3896,-1618], +[0,-8918,-3307,-350,-4062,-351,-3136,-4251,-427,-428,-721,-932,-940,-967,-1344,-1415,-12241,-12242,-1942,-2127,-2251, +-2334,-2379,-2410], +[0,-1942,-3862,-1446,-8222], [1,3,7211], [0,0,7212,7213,6], -[0,-5,-10173,-51,-4,-2,-1424], -[0,-4,-10172,-2,-10171,-10170], +[0,-3037,-12243,-519,-1942,-2410,-5627], +[0,-1942,-12244,-2410,-12245,-12246], [1,3,7215], [0,7216,7217,7218,8], -[0,-1632], -[0,-343,-4], -[0,-1372,-107,-4], +[0,-7969], +[0,-1772,-1942], +[0,-10484,-3862,-1942], [1,3,7220], [0,0,7221,7222,6], -[0,-513,-80,-63,-5,-51,-4,-14,-1297,-220,-33,-44,-2], -[0,-4,-220], +[0,-4066,-350,-351,-3037,-519,-1942,-2127,-2141,-2299,-2379,-2387,-2410], +[0,-1942,-2299], [1,3,7224], [0,7225,0,7226,6], -[0,-10169,-23,-1496], -[0,-4,-353], +[0,-12247,-1548,-2001], +[0,-1942,-727], [1,3,7228], [0,0,14,7229,4], -[0,-637,-475,-2535,-761,-1207,-126,-1964,-3045,-1206,-10168,-450,-4492,-2372,-10167], +[0,-3240,-651,-6472,-1044,-8799,-6656,-8574,-12248,-8800,-12249,-6582,-12250,-9782,-12251], [1,3,7231], [0,7232,7233,7234,8], -[0,-23,-10166], -[0,-13,-474,-316,-10165,-3], -[0,-637,-627,-3044,-36,-4491,-1206,-3584,-3221,-550,-1964], +[0,-1548,-12252], +[0,-664,-710,-711,-12253,-1654], +[0,-3240,-6324,-12254,-812,-12255,-8800,-5598,-9361,-3276,-8574], [1,3,7236], [0,7237,7238,7,5], -[0,-5942,-767,-439], -[0,-47,-1658,-1765,-529,-912,-6,-35,-286], +[0,-4046,-482,-2029], +[0,-3040,-6633,-3081,-1361,-1427,-2006,-2019,-2052], [1,3,7240], [0,7241,14,7242,6], -[0,-10164], -[0,-637,-3221,-1964,-4877,-3045,-1206,-588,-567,-10163,-3417,-10162,-2480,-183,-163,-1417,-10161], +[0,-12256], +[0,-3240,-9361,-8574,-9854,-12248,-8800,-4123,-1681,-12257,-7219,-12258,-7434,-5554,-2265,-6240,-12259], [1,3,7244], [0,7245,0,7246,6], -[0,-1750,-44,-469,-1093,-323,-4490,-164], -[0,-387,-10160,-10159,-4,-441,-584,-354,-4489,-4495], +[0,-3446,-2387,-1353,-3535,-1864,-12260,-1863], +[0,-5889,-12261,-12262,-1942,-1952,-5538,-707,-12263,-12232], [1,3,7248], [0,7249,7250,7251,5], -[0,-135,-88], -[0,-3,-117,-82,-66,-56,-611], -[0,-106,-37,-584,-135], +[0,-714,-1646], +[0,-1654,-1452,-2198,-1405,-756,-1657], +[0,-4055,-687,-5538,-714], [1,3,7253], [0,7254,7255,7256,5], -[0,-1818,-842,-6169,-10158,-10157,-10156], -[0,-324,-258,-915,-8,-149,-118,-495,-4488,-606,-215,-3751,-1411,-119,-40,-252,-1057,-1680,-1150,-1523,-188,-10155,-138, --10154,-2,-29,-5,-3109,-10153,-1578,-1327,-10152,-1815,-10151,-4487,-4486,-10150,-10149,-3124,-10148,-185,-4485,-1244, --1257,-10147,-10146,-10145,-1240,-4484,-10144,-4483,-4482,-10143,-1381,-10142,-10141,-10140,-2583,-10139,-10138], -[0,-784,-10137,-10136,-10135,-10134,-386,-718,-1638,-10133,-733,-10132,-10131,-4481,-605,-10130,-4480,-10129,-4479,-4478, --10128,-10127,-10126,-10125,-10124], +[0,-1692,-10425,-2961,-12264,-12265,-12266], +[0,-1816,-2564,-1313,-1415,-1805,-999,-1496,-12267,-1852,-865,-3913,-6570,-679,-1077,-367,-7043,-5672,-1424,-1575,-1729, +-12268,-2269,-12269,-2410,-3136,-3037,-10624,-12270,-511,-1101,-12271,-1769,-12272,-12273,-12274,-12275,-12276,-10419, +-12277,-3048,-12278,-4835,-4106,-12279,-12280,-12281,-5038,-12282,-12283,-12284,-12285,-12286,-8863,-12287,-12288,-12289, +-5782,-12290,-12291], +[0,-4340,-12292,-12293,-12294,-12295,-7685,-7773,-7485,-12296,-4165,-12297,-12298,-12299,-1857,-12300,-12301,-12302, +-12303,-12304,-12305,-12306,-12307,-12308,-12309], [1,3,7258], [0,0,7259,7260,4], -[0,-955,-110,-13,-3043,-151,-10123,-1,-181,-826,-32,-1009,-654,-820,-3850,-314,-1007,-10122,-1160,-497,-419,-79,-3,-188, --65,-4,-1304,-3297,-5163,-10121,-373,-3296,-600,-10120,-96], -[0,-10119,-2107], +[0,-4201,-589,-664,-12310,-824,-12311,-932,-960,-971,-1168,-1184,-1187,-1208,-2915,-1243,-1244,-12312,-1273,-1333,-1339, +-1449,-1654,-1729,-1771,-1942,-1976,-8318,-8319,-12313,-2091,-8320,-2205,-12314,-2550], +[0,-12315,-4131], [1,3,7262], [0,7263,7264,7265,8], -[0,-116,-168,-135,-41,-2208,-72,-236,-10118,-565,-1308,-10117], -[0,-13,-32,-364,-1515,-983,-27,-186,-688], -[0,-1185,-2036,-1915,-2472,-5279,-433,-387,-10116,-451], +[0,-615,-617,-714,-1004,-1576,-1650,-1666,-12316,-1813,-1850,-12317], +[0,-664,-1168,-1231,-1663,-2150,-2210,-2211,-2291], +[0,-622,-6011,-11722,-7737,-7736,-3324,-5889,-12318,-5897], [1,3,7267], [0,0,29,7,4], [1,3,7269], [0,0,7270,7271,6], -[0,-976,-3], -[0,-287], +[0,-2568,-1654], +[0,-1958], [1,3,7273], [0,0,0,7274,7275], -[0,-37,-361], +[0,-687,-1959], 1769904000000, [1,3,7277], [0,7278,0,7279,4], -[0,-20,-361], -[0,-17,-107,-361,-3107], +[0,-668,-1959], +[0,-2501,-3862,-1959,-10677], [1,3,7281], [0,7282,7283,7,8], -[0,-4573], -[0,-208,-7,-66], +[0,-11744], +[0,-461,-2125,-1405], [1,3,7285], [0,0,7286,7287,6], -[0,-59,-26,-1,-3692,-9,-78,-910,-139,-189,-18,-3,-65,-4,-7,-14,-803,-27,-744,-2], -[0,-172,-1807,-846,-1668], +[0,-633,-767,-932,-4693,-1344,-1471,-1472,-1475,-1482,-1534,-1654,-1771,-1942,-2125,-2127,-2143,-2210,-2491,-2410], +[0,-1961,-1962,-6948,-6306], [1,3,7289], [0,7290,226,7291,4], -[0,-3,-27,-247], -[0,-481,-1668], +[0,-1654,-2210,-2424], +[0,-5923,-6306], [1,3,7293], [0,89,7294,57,6], -[0,-471,-1545,-3,-2822], +[0,-891,-1050,-1654,-1941], [1,3,7296], [0,7297,7298,7299,6], -[0,-1228,-60,-603,-5595,-552], -[0,-1,-1481], -[0,-490,-294,-10115,-409], +[0,-5758,-510,-2059,-5975,-2520], +[0,-932,-2471], +[0,-1965,-3958,-12319,-3926], [0,7301,7302,7303,6], -[0,-495,-10114], -[0,-50,-11,-306,-21,-556,-39], -[0,-102,-397,-37,-490,-1447,-294,-336,-308,-1446,-1263,-1737,-10113], +[0,-1496,-12320], +[0,-21,-23,-36,-40,-2320,-2322], +[0,-3160,-1966,-687,-1965,-3964,-3958,-3962,-3957,-3972,-3824,-3955,-12321], [1,3,7305], [0,7306,7307,41,5], -[0,-1521,-242,-439], -[0,-86,-712,-59,-1570,-1,-213,-8,-6,-4477,-4476], +[0,-1580,-1792,-2029], +[0,-533,-560,-633,-647,-932,-1365,-1415,-2006,-12322,-12323], [1,3,7309], [0,0,7310,7311,11], -[0,-408,-5,-4475,-43,-3963,-10112,-4474,-4,-147,-260,-10111,-10110,-233,-2,-1396,-34], -[0,-3056,-1610,-31,-5856,-3323,-1056,-256], +[0,-4251,-3037,-12324,-652,-1318,-12325,-12326,-1942,-2094,-2100,-12327,-12328,-2399,-2410,-7669,-2541], +[0,-11876,-9681,-3264,-4675,-8041,-7153,-3839], [1,3,7313], [0,7314,7315,7316,5], -[0,-10109,-10108,-10107,-10106,-10105,-10104,-10103,-10102,-10101,-10100,-5,-2207], -[0,-110,-59,-10099,-1570,-20,-2888,-1,-617,-1167,-348,-4618,-4473,-5006,-32,-820,-1161,-313,-653,-166,-88,-15,-602,-39, --196,-2,-112,-1784,-554,-883], -[0,-10098,-4472,-2311,-2], +[0,-12329,-12330,-12331,-12332,-12333,-12334,-12335,-12336,-12337,-12338,-3037,-1578], +[0,-589,-633,-12339,-647,-668,-931,-932,-986,-988,-1103,-11426,-12340,-9208,-1168,-1208,-1212,-1252,-1262,-1446,-1646, +-1788,-2080,-2322,-2388,-2410,-2416,-2461,-2462,-2463], +[0,-12341,-12342,-12343,-2410], [1,3,7318], [0,7319,7320,7321,5], -[0,-4471,-1599,-6233,-1775,-20,-28,-199,-6220,-522,-1233,-1115,-146,-6213,-3854,-96], -[0,-3773,-458,-1040,-10097,-843,-5,-168,-13,-244,-1919,-421,-41,-32,-2310,-3970,-117,-23,-228,-3,-10096,-7,-983,-16,-196, --1596,-2,-2309], -[0,-192,-75,-61,-840,-1367,-933], +[0,-12344,-11458,-2729,-2734,-668,-1107,-1412,-2779,-1980,-5471,-2173,-2234,-2818,-2819,-2550], +[0,-3711,-3036,-9705,-12345,-8566,-3037,-617,-664,-665,-11477,-1003,-1004,-1168,-12346,-1260,-1452,-1548,-1610,-1654, +-12347,-2125,-2150,-2177,-2388,-12348,-2410,-12349], +[0,-475,-4004,-3634,-11468,-12350,-11467], [1,3,7323], [0,7324,7325,7326,4], -[0,-587,-10095,-36], -[0,-10094,-162,-29,-5,-1578,-8,-57,-2,-1953], -[0,-105,-401,-604,-223,-3357,-10093,-10092,-3345,-10091,-10090,-10089], +[0,-4377,-12351,-812], +[0,-12352,-3198,-3136,-3037,-511,-1415,-2375,-2410,-9056], +[0,-1334,-1342,-1971,-729,-7680,-12353,-12354,-7827,-12355,-12356,-12357], [1,3,7328], [0,7329,7330,231,4], -[0,-10088,-10087,-128], -[0,-3,-10086,-82,-27,-97], +[0,-12358,-12359,-2114], +[0,-1654,-12360,-2198,-2210,-2250], [1,3,7332], [0,7333,7334,7335,5], -[0,-20,-10085,-10084,-200,-569,-23,-362,-2836,-3927,-16], -[0,-182,-1032,-268,-151,-1,-12,-2219,-66,-72,-3,-1516,-4,-7,-82], -[0,-32,-158,-717,-451,-358], +[0,-668,-12361,-12362,-1376,-1392,-1548,-1639,-1728,-1820,-2177], +[0,-526,-555,-558,-824,-932,-940,-1362,-1405,-1650,-1654,-1661,-1942,-2125,-2198], +[0,-1168,-1764,-8403,-5897,-3551], [1,3,7337], [0,7338,7339,7340,10], -[0,-10083,-10082,-10081,-10080,-10079,-10078,-10077,-10076], -[0,-72,-7,-4847,-4849,-4846,-4845,-10075,-10074,-4848], -[0,-31,-1833,-643,-271], +[0,-12363,-12364,-12365,-12366,-12367,-12368,-12369,-12370], +[0,-1650,-2125,-10011,-10009,-10013,-10014,-12371,-12372,-10010], +[0,-3264,-1409,-1974,-3110], [1,3,7342], [0,0,7343,7,4], -[0,-110,-4663,-2232,-523,-10073,-556,-39], +[0,-589,-11080,-1021,-1948,-12373,-2320,-2322], [1,3,7345], [0,7346,0,7347,4], -[0,-1864,-698], -[0,-940,-1921,-2485,-2042], +[0,-908,-1801], +[0,-8027,-11441,-7412,-5865], [1,3,7349], [0,0,7350,7351,4], -[0,-152,-15,-3], -[0,-988,-455,-10072,-10071,-10070,-195,-10069], +[0,-708,-1788,-1654], +[0,-1977,-4112,-12374,-12375,-12376,-2435,-12377], [1,3,7353], [0,7354,91,7355,5], -[0,-5311,-10068,-403,-3081,-4470,-10067], -[0,-157,-1373,-1199,-544], +[0,-7591,-12378,-755,-11460,-12379,-12380], +[0,-1978,-10366,-11878,-4864], [1,3,7357], [0,7358,0,7359,8], -[0,-58,-229,-38,-560], -[0,-580,-3432,-626,-1988,-24,-31,-1388,-10066,-3204,-5282], +[0,-719,-1026,-1889,-1931], +[0,-7175,-7036,-6694,-7441,-775,-3264,-8199,-12381,-9487,-7725], [1,3,7361], [0,0,7362,7363,9], -[0,-54,-117,-1520,-167,-2214,-347,-1806], -[0,-522,-172,-481,-5539,-1668,-3506,-2552,-60,-5537,-10065,-91,-141], +[0,-1127,-1452,-1612,-1132,-1414,-1148,-1963], +[0,-1980,-1961,-5923,-6305,-6306,-6307,-6309,-510,-6310,-12382,-4865,-3966], [1,3,7365], [0,0,0,7366,10], -[0,-1651,-10064,-5435,-579,-256,-281], +[0,-6935,-12383,-6934,-7715,-3839,-6527], [1,3,7368], [0,0,0,7369,4], -[0,-240,-868,-1651,-194], +[0,-5514,-4111,-6935,-4000], [1,3,7371], [0,7372,7373,7374,4], -[0,-5340], -[0,-10063,-10062,-239,-59,-1570,-10061,-1557,-1555,-1,-1166,-1015,-28,-5219,-10060,-4658,-5339,-1323,-470,-213,-1322,-527, --72,-1820,-5527,-275,-15,-1312,-5149,-187,-3164,-39,-10059], -[0,-987,-464,-676,-195,-165,-429], +[0,-7397], +[0,-12384,-12385,-5834,-633,-647,-12386,-887,-921,-932,-993,-1065,-1107,-8080,-12387,-11104,-7402,-1283,-1351,-1365,-1408, +-1431,-1650,-1659,-6374,-1777,-1788,-1794,-8385,-2156,-9786,-2322,-12388], +[0,-1985,-1983,-5101,-2435,-1838,-6231], [1,3,7376], [0,7377,7378,7379,4], -[0,-10058,-4469,-10057], -[0,-51,-110,-830,-1333,-81,-34], -[0,-91,-987,-676,-163,-464,-10056,-10055,-195,-165,-429,-777,-1416,-10054,-719], +[0,-12389,-12390,-12391], +[0,-519,-589,-821,-1023,-2384,-2541], +[0,-4865,-1985,-5101,-2265,-1983,-12392,-12393,-2435,-1838,-6231,-6422,-6420,-12394,-7724], [1,3,7381], [0,0,7382,7383,4], -[0,-75,-10053,-39], -[0,-860,-676,-987], +[0,-4004,-12395,-2322], +[0,-4791,-5101,-1985], [1,3,7385], [0,0,7386,7387,4], -[0,-43,-419,-10052], -[0,-986,-60,-1418,-2308,-1425,-786,-1913,-2573], +[0,-652,-1339,-12396], +[0,-1986,-510,-6235,-12397,-5418,-4107,-11866,-5920], [1,3,7389], [0,119,120,7390,4], -[0,-986,-4546,-10051,-10050,-10049,-45,-3389,-1638,-270,-2,-3388,-733,-436,-1425,-10048,-986,-10047,-10046,-10045,-3112, --1913,-10044,-3091,-3385,-1645,-10043,-450,-1213,-3384,-3383,-2479,-3382,-3381,-3380,-3379,-3378,-3377,-3376,-3375,-3386, --10042,-1985,-3374,-846,-3373,-3372,-3371,-3370,-3369,-3368,-3367,-3366,-2478,-132,-1399,-3365,-2622,-3364,-522,-10041, --670,-3082,-10040, --1229,-10039,-241,-141,-4468,-4669,-542,-3363,-42,-1404], +[0,-1986,-11868,-12398,-12399,-12400,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-5418,-12401,-1986,-12402,-12403, +-12404,-10587,-11866,-12405,-11049,-7530,-7283,-12406,-6582,-7534,-7535,-7536,-7537,-7538,-7539,-7540,-7541,-7542,-7543, +-7544,-7545,-7503,-12407,-7547,-7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558,-7559,-5063, +-7560,-1980,-12408,-5839,-11450,-12409, +-5737,-12410,-2634,-3966,-12411,-11052,-6187,-7563,-856,-7275], [1,3,7392], [0,7393,7394,7395,4], -[0,-468,-10038,-10037,-1018], -[0,-28,-598,-79,-1,-393,-30,-33,-17,-4,-211,-50,-144,-2,-11,-5,-1532,-92,-98,-379,-154,-1791,-519,-517,-1079,-357,-1278, --21,-890,-170,-10036,-346,-10,-392,-12,-148,-25,-377,-140,-10035,-19,-1965,-2307,-22,-5954,-251], -[0,-6351,-412,-875,-789,-1461,-1460,-52], +[0,-1549,-12412,-12413,-996], +[0,-1107,-2303,-1449,-932,-2286,-2469,-2379,-2501,-1942,-2376,-21,-778,-2410,-23,-3037,-1322,-2503,-534,-1304,-2275,-2287, +-2508,-3046,-5286,-3983,-3164,-40,-2233,-2505,-12414,-1331,-958,-2335,-940,-962,-967,-1643,-42,-12415,-428,-8561,-12416, +-427,-4011,-948], +[0,-1988,-3496,-3495,-3494,-3505,-3506,-3161], [1,3,7397], [0,7398,7399,7400,11], -[0,-58,-3093,-3931], -[0,-15,-54,-495,-1,-7,-14,-16,-110,-1330,-4467,-416,-180,-1622,-11,-4466,-21,-763,-76,-532,-3325,-2383,-203,-923,-10, --10034,-67,-616,-232,-84,-214,-80,-1861,-63,-10033,-962], -[0,-61,-388,-293,-1072,-85,-39,-78,-249], +[0,-719,-10988,-1747], +[0,-1788,-1127,-1496,-932,-2125,-2127,-2177,-589,-1054,-12417,-2111,-1972,-8573,-23,-12418,-40,-957,-966,-1138,-8022, +-9544,-3326,-952,-958,-12419,-968,-1137,-3561,-943,-963,-350,-942,-351,-12420,-3840], +[0,-3634,-5119,-507,-5855,-2319,-2322,-1471,-1437], [1,3,7402], [0,7403,7404,7405,8], -[0,-10032], -[0,-310,-10031,-22,-19,-103,-1350,-268,-289,-1,-12,-25,-3459,-3326,-4,-459,-375,-373,-10030,-14,-870,-301,-2,-30,-17], -[0,-91,-255,-31,-375,-10029,-61], +[0,-12421], +[0,-2832,-12422,-427,-428,-3664,-549,-558,-726,-932,-940,-967,-6726,-8011,-1942,-2910,-1989,-2091,-12423,-2127,-4063, +-2142,-2410,-2469,-2501], +[0,-4865,-5092,-3264,-1989,-12424,-3634], [1,3,7407], [0,7408,7409,7410,4], -[0,-119,-58,-10028,-1546,-10027,-128,-1102], -[0,-60,-1351,-328,-4465,-1028,-4828,-4826,-763,-3325,-118,-1330,-40,-54,-167,-6456,-616,-532,-2383,-302,-2399,-531,-4827, --2398,-4743,-4466,-345,-180,-416,-273,-16], -[0,-61,-388,-249], +[0,-679,-719,-12425,-1048,-12426,-2114,-2488], +[0,-510,-537,-559,-12427,-705,-10255,-10260,-957,-8022,-999,-1054,-1077,-1127,-1132,-1133,-1137,-1138,-9544,-1149,-9240, +-1152,-10257,-9241,-10644,-12418,-1542,-1972,-2111,-2128,-2177], +[0,-3634,-5119,-1437], [1,3,7412], [0,7413,7414,7415,9], -[0,-1506], -[0,-10026,-59,-39], -[0,-10025,-549], +[0,-1856], +[0,-12428,-633,-2322], +[0,-12429,-3582], [1,3,7417], [0,0,7418,7419,5], -[0,-50,-11,-21,-178,-479,-203,-2363,-10024,-833,-110,-1029,-26,-10023,-1,-10,-1333,-250,-101,-3,-65,-15,-7,-14,-803, --10022,-10021,-27,-3886,-4464], -[0,-642,-727,-674,-939,-1094,-2327,-4463,-10020,-3042,-4854,-4462], +[0,-21,-23,-40,-43,-47,-3326,-10022,-12430,-571,-589,-693,-767,-12431,-932,-958,-1023,-1276,-1442,-1654,-1771,-1788,-2125, +-2127,-2143,-12432,-12433,-2210,-2342,-12434], +[0,-1993,-5112,-5260,-8113,-3481,-11639,-12435,-12436,-12437,-9976,-12438], [1,3,7421], [0,7422,27,7423,6], -[0,-1493], -[0,-850,-3041,-3041,-1603,-114,-10019,-183], +[0,-2172], +[0,-6555,-12439,-12439,-10781,-3262,-12440,-5554], [1,3,7425], [0,177,7426,7427,5], -[0,-903,-97,-556,-39,-976], -[0,-659,-850], +[0,-1859,-2250,-2320,-2322,-2568], +[0,-770,-6555], [1,3,7429], [0,7430,27,7,10], -[0,-3915], +[0,-1995], [1,3,7432], [0,0,172,7433,9], -[0,-2480,-73,-105], +[0,-7434,-3215,-1334], [1,3,7435], [0,7436,7437,7438,6], -[0,-1135,-123,-352,-10018,-3897], -[0,-28,-198,-3,-27,-1,-82,-66,-4,-474,-12], -[0,-4617,-1954,-4461,-367,-6349,-10017], +[0,-1616,-2446,-743,-12441,-2249], +[0,-1107,-1722,-1654,-2210,-932,-2198,-1405,-1942,-710,-940], +[0,-11428,-8980,-12442,-5545,-1998,-12443], [1,3,7440], [0,7441,7442,7,5], -[0,-475,-10016,-470,-652], -[0,-15,-3,-1,-116,-791,-488,-197,-309,-2626], +[0,-651,-12444,-1351,-1335], +[0,-1788,-1654,-932,-615,-2884,-2155,-2062,-3748,-5029], [1,3,7444], [0,205,7445,48,5], -[0,-50,-11,-21,-49,-62,-1970,-944,-86,-26,-151,-237,-1,-12,-10,-25,-9,-8,-18,-262,-65,-4,-134,-17], +[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-967,-1344,-1415,-1534,-1623,-1771,-1942,-2251, +-2501], [1,3,7447], [0,7448,0,7449,4], -[0,-758,-88,-1869,-599], -[0,-353,-1496,-1918,-2350], +[0,-1371,-1646,-822,-2271], +[0,-727,-2001,-11642,-10659], [1,3,7451], [0,7452,7453,7454,5], -[0,-90,-267,-1303], -[0,-3040,-155,-122,-2155,-29,-5,-47,-87,-3512,-26,-1559,-1,-145,-150,-822,-10015,-348,-28,-222,-417,-3039,-2192,-5793,-6, --35,-342,-2], -[0,-6,-108,-10014,-1198,-336,-2480], +[0,-44,-682,-2004], +[0,-12445,-407,-409,-3059,-3136,-3037,-3040,-3052,-6265,-767,-881,-932,-959,-978,-1031,-12446,-1103,-1107,-1521,-1763, +-12447,-2003,-4946,-2006,-2019,-2082,-2410], +[0,-2006,-3159,-12448,-12449,-3962,-7434], [1,3,7456], [0,7457,7458,7459,5], -[0,-90,-5662,-267,-1303], -[0,-3040,-122,-29,-47,-87,-1436,-26,-1559,-1,-150,-822,-348,-222,-417,-3039,-6,-35,-2], -[0,-6,-108,-10013,-2130], +[0,-44,-5650,-682,-2004], +[0,-12445,-409,-3136,-3040,-3052,-4972,-767,-881,-932,-978,-1031,-1103,-1521,-1763,-12447,-2006,-2019,-2410], +[0,-2006,-3159,-12450,-3821], [1,3,7461], [0,7462,7463,7464,5], -[0,-90,-439], -[0,-3040,-122,-29,-5,-47,-87,-1658,-10012,-1436,-3512,-2245,-26,-1559,-1,-145,-150,-822,-28,-9,-18,-417,-4,-3039,-6,-35, --2], -[0,-6,-132], +[0,-44,-2029], +[0,-12445,-409,-3136,-3037,-3040,-3052,-6633,-12451,-4972,-6265,-761,-767,-881,-932,-959,-978,-1031,-1107,-1344,-1534, +-1763,-1942,-12447,-2006,-2019,-2410], +[0,-2006,-2444], [1,3,7466], [0,0,0,41,10], [1,3,7468], [0,7469,0,245,10], -[0,-691], +[0,-2055], [1,3,7471], [0,7472,7473,245,5], -[0,-242], -[0,-8,-6,-35,-17], +[0,-1792], +[0,-1415,-2006,-2019,-2501], [1,3,7475], [0,7476,7477,7478,5], -[0,-10010,-10009,-10008,-10007,-10006], -[0,-14,-2], -[0,-6098,-380,-6,-682,-5046,-127], +[0,-12453,-12454,-12455,-12456,-12457], +[0,-2127,-2410], +[0,-3321,-1122,-2006,-3322,-8977,-3098], [1,3,7480], [0,7481,0,7,11], -[0,-694,-159,-172,-792,-242,-342], +[0,-1992,-753,-1961,-2516,-1792,-2082], [1,3,7483], [0,7484,0,7485,4], -[0,-595,-704,-267,-121,-10005,-1866,-90,-10004,-10003,-10002,-972,-691,-1468], -[0,-476,-6,-129,-127,-10001,-108], +[0,-2489,-1384,-682,-1967,-12458,-860,-44,-12459,-12460,-12461,-3140,-2055,-3024], +[0,-620,-2006,-3095,-3098,-12462,-3159], [1,3,7487], [0,7488,7489,7490,5], -[0,-10000,-23,-468,-9999,-121,-9998,-1107], -[0,-9997,-9996,-3513,-5545,-950,-182,-169,-86,-98,-4460,-328,-712,-1187,-447,-13,-3038,-144,-445,-423,-1856,-379,-1532, --346,-6422,-8,-496,-9995,-3,-2201,-158,-242,-6,-5057,-9994,-35,-2191,-9993,-286,-1119,-2809,-7,-154,-9992,-17,-170], -[0,-6,-4459,-108,-3274,-2671,-9991,-1373,-9990,-973,-2128], +[0,-12463,-1548,-1549,-12464,-1967,-12465,-2355], +[0,-12466,-12467,-6263,-6264,-4749,-526,-527,-533,-534,-12468,-559,-560,-562,-566,-664,-12469,-778,-915,-994,-1033,-1304, +-1322,-1331,-1347,-1415,-1417,-12470,-1654,-1762,-1764,-1792,-2006,-8934,-12471,-2019,-2024,-12472,-2052,-2102,-2109, +-2125,-2275,-12473,-2501,-2505], +[0,-2006,-12474,-3159,-8597,-4122,-12475,-10366,-12476,-3119,-3825], [1,3,7492], [0,7493,7494,7495,9], -[0,-832,-121], -[0,-50,-11,-161,-216,-306,-21,-136,-178,-98,-834,-144,-1563,-1,-266,-10,-148,-64,-190,-348,-346,-9989,-377,-6,-35,-154, --39,-17,-92,-170], -[0,-129,-108,-6,-9988,-1182], +[0,-747,-1967], +[0,-21,-23,-32,-26,-36,-40,-41,-43,-534,-553,-778,-827,-932,-933,-958,-962,-969,-970,-1103,-1331,-12477,-1643,-2006,-2019, +-2275,-2322,-2501,-2503,-2505], +[0,-3095,-3159,-2006,-12478,-699], [1,3,7497], [0,7498,7499,7500,9], -[0,-2751,-304,-1174], -[0,-11,-161,-2735,-962,-216,-21,-136,-140,-48,-9987,-203,-80,-63,-204,-319,-330,-122,-317,-359,-29,-1712,-5,-47,-87,-22, --19,-1352,-86,-834,-159,-9986,-1,-12,-10,-145,-64,-190,-2375,-9,-8,-1710,-1528,-176,-18,-23,-4,-6,-35,-14,-2619,-77,-747, --179,-558,-2722,-2790,-57,-44,-2,-83], -[0,-6,-5915,-3736,-956,-108], +[0,-2852,-703,-807], +[0,-23,-32,-3192,-3840,-26,-40,-41,-42,-190,-12479,-3326,-350,-351,-3266,-3267,-406,-409,-410,-3330,-3136,-4961,-3037, +-3040,-3052,-427,-428,-522,-533,-553,-753,-12480,-932,-940,-958,-959,-969,-970,-9724,-1344,-1415,-4980,-1416,-1419,-1534, +-1548,-1942,-2006,-2019,-2127,-5090,-2162,-2223,-2281,-2282,-3436,-2285,-2375,-2387,-2410,-2411], +[0,-2006,-4222,-4120,-4121,-3159], [1,3,7502], [0,7503,7504,7,5], -[0,-149,-20,-1004,-206,-1123,-2012,-349,-9985,-397,-761,-1160,-138,-885,-230,-749,-305,-754,-2556,-9984,-538,-2188,-6345, --424,-1853], -[0,-8,-26], +[0,-1805,-668,-1359,-1111,-1872,-6558,-1047,-12481,-1966,-1044,-1273,-2269,-2343,-769,-2194,-635,-1543,-6197,-12482,-22, +-2070,-2021,-930,-1067], +[0,-1415,-767], [1,3,7506], [0,7507,7508,7,6], -[0,-9983,-9982,-4458,-1017,-1006], -[0,-1733,-252,-122,-2612,-29,-5,-47,-87,-8,-1432,-65,-6,-35,-395,-2], +[0,-12483,-12484,-12485,-1025,-1311], +[0,-4010,-367,-409,-5220,-3136,-3037,-3040,-3052,-1415,-5129,-1771,-2006,-2019,-2200,-2410], [1,3,7510], [0,7511,7512,7,8], -[0,-4458], -[0,-1733,-252,-29,-65,-395,-2], +[0,-12485], +[0,-4010,-367,-3136,-1771,-2200,-2410], [1,3,7514], [0,7515,0,7516,4], -[0,-128,-1629,-11,-479,-2111,-1098,-577,-4457,-729,-2360], -[0,-6,-42,-9981], +[0,-2114,-8245,-23,-47,-4096,-3200,-46,-12486,-4776,-10101], +[0,-2006,-856,-12487], [1,3,7518], [0,7519,0,41,4], -[0,-982], +[0,-2166], [1,3,7521], [0,7522,7523,7524,4], -[0,-9980,-9979,-121], -[0,-50,-11,-161,-962,-3037,-1196,-9978,-2033,-1231,-4456,-173,-21,-136,-178,-49,-937,-9977,-4731,-203,-80,-63,-296,-845, --737,-582,-1058,-673,-5837,-9976,-330,-155,-122,-1477,-47,-87,-22,-19,-86,-278,-1889,-503,-26,-1,-12,-10,-148,-76,-25, --64,-190,-9,-9975,-3957,-8,-18,-525,-1306,-4,-6,-35,-2813,-286,-7, --14,-226,-120,-321,-154,-888,-2,-17,-9974], -[0,-108,-6,-1212,-1637,-1053], +[0,-12488,-12489,-1967], +[0,-21,-23,-32,-3840,-12490,-34,-12491,-6065,-5584,-12492,-38,-40,-41,-43,-86,-9404,-12493,-10709,-3326,-350,-351,-3470, +-7040,-3472,-7041,-7042,-5295,-4774,-12494,-406,-407,-409,-2622,-3040,-3052,-427,-428,-533,-535,-536,-720,-767,-932,-940, +-958,-962,-966,-967,-969,-970,-1344,-12495,-1357,-1415,-1534,-1609,-1868,-1942,-2006,-2019,-2049,-2052,-2125, +-2127,-2140,-2174,-2214,-2275,-2278,-2410,-2501,-12496], +[0,-3159,-2006,-7581,-7582,-7764], [1,3,7526], [0,0,7527,7528,4], -[0,-538,-11,-1476,-86,-98,-1885,-20,-119,-26,-420,-705,-8,-9973,-242,-172,-693,-6,-2818,-35,-7,-9972,-130,-17], -[0,-9971,-389,-627,-5687,-2019,-9970,-9969,-595], +[0,-22,-23,-2624,-533,-534,-561,-668,-679,-767,-1059,-1320,-1415,-12497,-1792,-1961,-2000,-2006,-2010,-2019,-2125,-12498, +-2231,-2501], +[0,-12499,-4132,-6324,-5547,-6335,-12500,-12501,-2489], [1,3,7530], [0,7531,7532,7533,4], -[0,-242,-121,-2757,-9968], -[0,-169,-94,-1351,-355,-1576,-835,-268,-712,-13,-152,-404,-298,-1,-9967,-12,-10,-148,-265,-25,-64,-66,-78,-703,-9966,-139, --612,-212,-9965,-189,-755,-648,-702,-4609,-3,-4,-6,-35,-7,-14,-273,-463,-341,-893,-27,-186], -[0,-3912,-9964,-6,-1602,-9963,-2306,-9962,-1371,-2322,-1736,-9961,-225], +[0,-1792,-1967,-2798,-12502], +[0,-527,-528,-537,-539,-546,-551,-558,-560,-664,-708,-740,-796,-932,-12503,-940,-958,-962,-964,-967,-969,-1405,-1471, +-1474,-12504,-1475,-1476,-1479,-12505,-1482,-1486,-1490,-1491,-11508,-1654,-1942,-2006,-2019,-2125,-2127,-2128,-2131, +-2137,-2138,-2210,-2211], +[0,-2022,-12506,-2006,-10855,-12507,-12508,-12509,-10606,-11729,-3956,-12510,-5553], [1,3,7535], [0,0,7536,7537,4], -[0,-487,-478,-80,-63,-204,-252,-1057,-155,-122,-29,-5,-47,-87,-1745,-502,-1,-12,-2743,-25,-64,-190,-859,-9,-8,-176,-9960, --6219,-18,-4,-6,-35,-7,-14,-301,-81,-2,-83,-792,-258], -[0,-6,-682,-546,-871,-3036,-409,-2,-3735], +[0,-3615,-262,-350,-351,-3266,-367,-7043,-407,-409,-3136,-3037,-3040,-3052,-3563,-795,-932,-940,-3071,-967,-969,-970, +-4814,-1344,-1415,-1419,-12511,-2781,-1534,-1942,-2006,-2019,-2125,-2127,-2142,-2384,-2410,-2411,-2516,-2564], +[0,-2006,-3322,-4053,-4054,-12512,-3926,-2410,-4124], [1,3,7539], [0,7540,7541,7542,6], -[0,-3113,-918,-1006,-754,-121,-1495,-1492,-130], -[0,-5999,-47,-1741,-182,-169,-94,-86,-1889,-1351,-1576,-835,-620,-268,-712,-152,-2035,-2245,-26,-445,-9959,-1022,-1,-266, --12,-10,-148,-64,-9,-8,-18,-4,-6,-35,-9958,-286,-3904,-7,-14,-273,-463,-1117,-341,-893,-803,-134,-4455], -[0,-6,-45,-17,-1670,-1141,-3035,-3111,-1910,-779,-1370], +[0,-10579,-1109,-1311,-1543,-1967,-2030,-2192,-2231], +[0,-3795,-3040,-3807,-526,-527,-528,-533,-536,-537,-546,-551,-556,-558,-560,-708,-6019,-761,-767,-915,-12513,-916,-932, +-933,-940,-958,-962,-969,-1344,-1415,-1534,-1942,-2006,-2019,-12514,-2052,-2069,-2125,-2127,-2128,-2131,-2133,-2137, +-2138,-2143,-2251,-12515], +[0,-2006,-3214,-2501,-6211,-1540,-12516,-10589,-12517,-5932,-11492], [1,3,7544], [0,7545,7546,7547,6], -[0,-90,-6222,-1909], -[0,-50,-11,-161,-9957,-306,-391,-173,-480,-21,-136,-178,-203,-80,-63,-232,-204,-330,-155,-122,-29,-47,-103,-1639,-169, --1266,-2569,-56,-618,-26,-1,-266,-12,-10,-3034,-148,-64,-1549,-1324,-9,-1156,-18,-72,-4,-6,-35,-286,-7,-14,-2,-30,-96], -[0,-1156,-1607,-1157,-3166,-2372,-1938,-3165,-6,-516], +[0,-44,-2770,-12518], +[0,-21,-23,-32,-12519,-36,-3204,-38,-39,-40,-41,-43,-3326,-350,-351,-3561,-3266,-406,-407,-409,-3136,-3040,-3664,-7465, +-527,-3766,-6046,-756,-757,-767,-932,-933,-940,-958,-12520,-962,-969,-976,-1278,-1344,-1349,-1534,-1650,-1942,-2006, +-2019,-2052,-2125,-2127,-2410,-2469,-2550], +[0,-1349,-9780,-1348,-9781,-9782,-9772,-9783,-2006,-3476], [1,3,7549], [0,0,7550,7551,10], -[0,-310,-320,-673,-155,-122,-5,-47,-87,-537,-1469,-960,-1387,-18,-701,-65,-398,-459,-6,-35,-970,-321,-171,-2,-30], -[0,-6,-129,-682,-4454,-9956,-3033,-9955,-9954,-9953,-9952], +[0,-2832,-2581,-5295,-407,-409,-3037,-3040,-3052,-440,-2970,-3899,-8349,-1534,-1637,-1771,-1874,-2910,-2006,-2019,-3246, +-2214,-2391,-2410,-2469], +[0,-2006,-3095,-3322,-12521,-12522,-12523,-12524,-12525,-12526,-12527], [1,3,7553], [0,7554,0,7555,4], -[0,-2612,-1006,-44,-9951,-9950,-9949,-9948], -[0,-550,-584,-3165,-1157,-1607,-3953,-4492,-2372,-6,-516,-5960,-3166], +[0,-5220,-1311,-2387,-12528,-12529,-12530,-12531], +[0,-3276,-5538,-9783,-1348,-9780,-1382,-12250,-9782,-2006,-3476,-3940,-9781], [1,3,7557], [0,0,0,41,6], [1,3,7559], [0,0,7560,7,5], -[0,-446,-20,-1,-9947,-8,-496,-4,-14,-893,-803], +[0,-656,-668,-932,-12532,-1415,-1417,-1942,-2127,-2138,-2143], [1,3,7562], [0,7563,7564,7565,6], -[0,-246,-408,-936,-6430,-6265,-1134,-601,-804,-133,-340,-483], -[0,-122,-5,-47,-87,-43,-315,-89,-64,-3695,-4,-6,-35,-3903,-9946,-147,-521,-260,-1719,-233,-2,-34], -[0,-360,-1043,-129,-2101,-100,-6,-108,-274,-133], +[0,-5334,-4251,-9596,-1291,-2632,-1619,-2098,-2101,-2427,-2429,-5358], +[0,-409,-3037,-3040,-3052,-652,-725,-928,-969,-4652,-1942,-2006,-2019,-2088,-12533,-2094,-2095,-2100,-4656,-2399,-2410, +-2541], +[0,-3272,-8630,-3095,-4329,-1599,-2006,-3159,-2093,-2427], [1,3,7567], [0,7568,7569,7570,5], -[0,-9945,-121,-1495,-595], -[0,-4453,-182,-169,-94,-98,-278,-268,-712,-2925,-56,-26,-1,-12,-2307,-10,-148,-25,-64,-5592,-78,-139,-612,-212,-189,-418, --648,-526,-3,-65,-4,-6,-35,-897,-559,-82,-112,-17,-92,-170], -[0,-6,-108,-1444,-3032], +[0,-12534,-1967,-2030,-2489], +[0,-12535,-526,-527,-528,-534,-535,-558,-560,-564,-756,-767,-932,-940,-12416,-958,-962,-967,-969,-5997,-1471,-1475,-1476, +-1479,-1482,-1483,-1490,-1492,-1654,-1771,-1942,-2006,-2019,-2043,-2044,-2198,-2416,-2501,-2503,-2505], +[0,-2006,-3159,-4126,-12536], [1,3,7572], [0,7573,7574,7575,5], -[0,-1506,-121,-694], -[0,-292,-9944,-169,-94,-98,-1181,-144,-1,-266,-1860,-10,-148,-64,-420,-1598,-9943,-4452,-378,-78,-612,-400,-9942,-2862, --526,-9941,-903,-2191,-154,-17,-170], -[0,-6,-129,-108,-9940,-2305,-9939,-9938,-485,-3031,-102], +[0,-1856,-1967,-1992], +[0,-525,-12537,-527,-528,-534,-709,-778,-932,-933,-949,-958,-962,-969,-1059,-11942,-12538,-12539,-1413,-1471,-1476,-1481, +-12540,-1484,-1492,-12541,-1859,-2024,-2275,-2501,-2505], +[0,-2006,-3095,-3159,-12542,-12543,-12544,-12545,-5176,-12546,-3160], [1,3,7577], [0,7578,0,246,4], -[0,-205,-1476,-96,-16,-172,-1884,-58,-704,-982,-1190,-86,-4451,-311,-2205,-792,-4450,-695,-692,-9937,-1354,-4449,-1920, --4448,-3158,-342,-4447,-816,-4446,-4445,-4444,-4443,-4442,-9936,-4441,-4440], +[0,-2531,-2624,-2550,-2177,-1961,-578,-719,-1384,-2166,-481,-533,-12547,-2654,-1624,-2516,-12548,-1950,-2041,-12549,-458, +-12550,-11463,-12551,-9870,-2082,-12552,-1421,-12553,-12554,-12555,-12556,-12557,-12558,-12559,-12560], [1,3,7580], [0,0,7581,7582,4], -[0,-9933,-3030,-9932,-1,-25,-4,-6,-234,-1908,-2], -[0,-234,-108,-932,-6,-95,-282,-333,-9931], +[0,-12563,-12564,-12565,-932,-967,-1942,-2006,-2034,-12566,-2410], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-12568], [1,3,7584], [0,7585,7586,7587,6], -[0,-96,-121], -[0,-6,-1,-9930,-9929,-1838,-4,-5844,-50,-9928,-11,-94,-3989,-9927,-5025,-9926,-9925,-9924,-9923,-9922,-64,-266,-10,-12, --148,-25,-190,-1760], -[0,-234,-108,-932,-6,-95,-282,-333,-2304,-722,-4439,-102,-741,-961,-1203,-1944,-1086], +[0,-2550,-1967], +[0,-2006,-932,-12569,-12570,-1387,-1942,-4731,-21,-12571,-23,-528,-1064,-12572,-9081,-12573,-12574,-12575,-12576,-12577, +-969,-933,-958,-940,-962,-967,-970,-3156], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-12578,-7084,-12579,-3160,-3167,-3843,-9472,-9474,-3827], [1,3,7589], [0,0,7590,7591,9], -[0,-50,-11,-216,-306,-971,-21,-136,-178,-9921,-2766,-3283,-2936,-2016,-319,-155,-122,-317,-47,-19,-94,-98,-278,-6142,-267, --304,-26,-1,-12,-1860,-10,-64,-348,-79,-1136,-3479,-4,-1730,-6,-35,-9920,-14,-273,-463,-2619,-894,-341,-893,-803,-211,-2, --30,-17,-92,-170], -[0,-108,-6,-9919,-336,-1417,-9918,-5463], +[0,-21,-23,-26,-36,-3203,-40,-41,-43,-12580,-2685,-8471,-261,-6429,-3267,-407,-409,-410,-3040,-428,-528,-534,-535,-3090, +-682,-703,-767,-932,-940,-949,-958,-969,-1103,-1449,-1613,-6519,-1942,-4130,-2006,-2019,-12581,-2127,-2128,-2131,-5090, +-2134,-2137,-2138,-2143,-2376,-2410,-2469,-2501,-2503,-2505], +[0,-3159,-2006,-12582,-3962,-6240,-12583,-6769], [1,3,7593], [0,0,7594,7595,4], -[0,-11,-216,-306,-21,-3530,-203,-94,-98,-13,-1,-9,-18,-3,-65,-4,-6,-35,-286,-9917,-7,-14,-17], -[0,-6,-9916,-9915,-9914], +[0,-23,-26,-36,-40,-6035,-3326,-528,-534,-664,-932,-1344,-1534,-1654,-1771,-1942,-2006,-2019,-2052,-12584,-2125,-2127, +-2501], +[0,-2006,-12585,-12586,-12587], [1,3,7597], [0,0,7598,7599,4], -[0,-513,-9913,-1,-9912,-25,-9911,-8,-4,-14,-2], -[0,-3909,-31,-256,-255,-1056,-1610,-353,-6,-35], +[0,-4066,-12588,-932,-12589,-967,-12590,-1415,-1942,-2127,-2410], +[0,-2039,-3264,-3839,-5092,-7153,-9681,-727,-2006,-2019], [1,3,7601], [0,7602,7603,7604,5], -[0,-4438,-1909], -[0,-478,-2272,-330,-155,-122,-5,-972,-47,-87,-152,-26,-1,-12,-251,-10,-25,-64,-79,-4,-6,-35,-322,-7,-171,-2,-83,-30], -[0,-6,-516,-322], +[0,-12591,-12518], +[0,-262,-349,-406,-407,-409,-3037,-3140,-3040,-3052,-708,-767,-932,-940,-948,-958,-967,-969,-1449,-1942,-2006,-2019,-2074, +-2125,-2391,-2410,-2411,-2469], +[0,-2006,-3476,-2074], [0,0,0,41,4], [1,3,7607], [0,7608,7609,7610,4], -[0,-6423,-9910,-121,-5680], -[0,-319,-109,-9909,-586,-9908,-9907,-69,-47,-87,-269,-22,-19,-13,-26,-1,-923,-348,-79,-9906,-3,-4,-6,-35,-7,-14,-3611,-82, --27,-44,-153,-124,-2], -[0,-24,-108,-4454,-6,-95,-9905,-9904,-6045,-9903,-636,-129], +[0,-1346,-12592,-1967,-5582], +[0,-3267,-3035,-12593,-4647,-12594,-12595,-3621,-3040,-3052,-4372,-427,-428,-664,-767,-932,-952,-1103,-1449,-12596,-1654, +-1942,-2006,-2019,-2125,-2127,-5405,-2198,-2210,-2387,-2392,-2402,-2410], +[0,-775,-3159,-12521,-2006,-3162,-12597,-12598,-3580,-12599,-3576,-3095], [1,3,7612], [0,7613,7614,248,6], -[0,-352,-2739], -[0,-171,-6,-284,-4437,-3029,-35,-2,-286,-122,-176,-2738,-155,-317], +[0,-743,-3169], +[0,-2391,-2006,-2426,-12600,-12601,-2019,-2410,-2052,-409,-1419,-3172,-407,-410], [1,3,7616], [0,7617,7618,248,10], -[0,-897], -[0,-171,-6,-4437,-35,-2], +[0,-2043], +[0,-2391,-2006,-12600,-2019,-2410], [1,3,7620], [0,0,7621,7622,4], -[0,-182,-169,-94,-98,-4871,-4870,-620,-328,-712,-4024,-447,-1,-1336,-500,-10,-148,-64,-350,-1533,-4957,-4452,-78,-612, --212,-189,-418,-648,-526,-3,-6,-35,-898,-897,-322,-9902,-9901,-9900,-17], -[0,-6,-322,-434], +[0,-526,-527,-528,-534,-9887,-9888,-556,-559,-560,-563,-566,-932,-941,-956,-958,-962,-969,-1001,-1306,-9413,-12539,-1471, +-1476,-1479,-1482,-1483,-1490,-1492,-1654,-2006,-2019,-2040,-2043,-2074,-12602,-12603,-12604,-2501], +[0,-2006,-2074,-3122], [1,3,7624], [0,7625,28,7,4], -[0,-2917,-8,-215,-1,-16,-38,-397,-128,-17,-40,-2231,-446,-86,-144,-11,-277,-462,-557,-98,-305,-1832,-154,-2271,-1024,-692, --492,-1302,-3919,-890,-1005,-805,-2818,-2807,-170,-346,-1149,-3146,-392,-1885,-1504,-3873,-1336,-377,-2772,-1343,-4027, --1879,-2161], +[0,-594,-1415,-865,-932,-2177,-1889,-1966,-2114,-2501,-1077,-1080,-656,-533,-778,-23,-1041,-2163,-2318,-534,-635,-1426, +-2275,-366,-866,-2041,-1908,-2015,-1918,-2233,-1352,-1927,-2010,-2116,-2505,-1331,-1428,-10049,-2335,-561,-1903,-2526, +-941,-1643,-2507,-779,-542,-661,-2695], [1,3,7627], [0,7628,7629,7630,11], -[0,-90,-2693,-1088,-2684,-1468,-2205,-121,-691,-3760], -[0,-5760,-445,-1772,-3648,-6,-35], -[0,-4436,-546,-336,-3028,-6,-108,-1409,-102], +[0,-44,-3772,-3778,-3819,-3024,-1624,-1967,-2055,-3820], +[0,-5131,-915,-2760,-5116,-2006,-2019], +[0,-12605,-4053,-3962,-12606,-2006,-3159,-6750,-3160], [1,3,7632], [0,7633,7634,7635,5], -[0,-267,-9899,-2209,-1118], -[0,-50,-11,-161,-216,-480,-21,-136,-4435,-155,-122,-317,-5,-160,-169,-86,-98,-765,-144,-326,-151,-1553,-1,-10,-64,-41, --9898,-32,-314,-9,-8,-176,-1001,-911,-18,-1310,-492,-4,-694,-6,-35,-342,-27,-9897,-154,-1105,-17,-92,-170,-9896], -[0,-4434,-1366,-9895,-9894,-1198,-108], +[0,-682,-12607,-1553,-2113], +[0,-21,-23,-32,-26,-39,-40,-41,-12608,-407,-409,-410,-3037,-518,-527,-533,-534,-557,-778,-823,-824,-923,-932,-958,-969, +-1004,-12609,-1168,-1243,-1344,-1415,-1419,-1440,-1455,-1534,-1812,-1908,-1942,-1992,-2006,-2019,-2082,-2210,-12610, +-2275,-2417,-2501,-2503,-2505,-12611], +[0,-12612,-12613,-12614,-12615,-12449,-3159], [1,3,7637], [0,7638,7639,7640,5], -[0,-9893,-1765,-9892,-208,-1665,-293,-2611,-1184,-1878,-9891,-304,-9890,-535,-159,-1629,-9889,-1021,-424,-2888,-824,-1916, --1076,-9888,-486,-28,-9887,-2224,-1153,-9886,-9885,-9884,-9883,-9882,-9881,-9880,-9879,-495,-4433,-23,-5014,-2848,-9878, --1750,-324,-440,-121,-9877,-9876,-1302,-3913,-9875,-9874,-9873,-3910,-3628,-1300,-274,-9872,-392,-5167,-9871,-340,-170, --519], -[0,-50,-11,-216,-21,-1068,-136,-140,-155,-122,-9870,-9869,-4457,-9868,-329,-4432,-29,-9867,-142,-9866,-5,-963,-47,-87, --9865,-9864,-517,-9863,-2687,-22,-19,-169,-94,-86,-98,-144,-3043,-9862,-9861,-9860,-1,-9859,-251,-923,-10,-148,-64,-277, --40,-9,-8,-9858,-18,-262,-4,-694,-6,-35,-286,-9857,-154,-2,-438,-17, --92], -[0,-6,-866,-2091,-2639,-42,-390,-114,-129,-127], +[0,-12616,-3081,-12617,-461,-6426,-507,-5223,-639,-684,-12618,-703,-12619,-748,-753,-8245,-12620,-925,-930,-931,-989, +-11676,-5504,-12621,-3649,-1107,-12622,-1284,-1395,-12623,-12624,-12625,-12626,-12627,-12628,-12629,-12630,-1496,-12631, +-1548,-9160,-1606,-12632,-3446,-1816,-1955,-1967,-12633,-12634,-2015,-2018,-12635,-12636,-12637,-2026,-5351,-2066,-2093, +-12638,-2335,-8299,-12639,-2429,-2505, +-2508], +[0,-21,-23,-26,-40,-6056,-41,-42,-407,-409,-12640,-12641,-12486,-12642,-426,-12643,-3136,-12644,-3044,-12645,-3037,-3803, +-3040,-3052,-12646,-12647,-3046,-12648,-3806,-427,-428,-527,-528,-533,-534,-778,-12310,-12649,-12650,-12651,-932,-12652, +-948,-952,-958,-962,-969,-1041,-1077,-1344,-1415,-12653,-1534,-1623,-1942,-1992,-2006,-2019,-2052,-12654,-2275,-2410, +-2437,-2501, +-2503], +[0,-2006,-4146,-4900,-4901,-856,-3671,-3262,-3095,-3098], [1,3,7642], [0,7643,7644,7645,4], -[0,-90,-6549,-972,-121], -[0,-11,-173,-21,-136,-48,-1412,-203,-80,-63,-232,-204,-122,-29,-586,-5,-47,-87,-1744,-834,-1774,-1,-12,-64,-190,-859,-55, --8,-176,-198,-343,-4,-6,-35,-14,-272,-395,-5767,-57,-33,-2,-83], -[0,-255,-31,-1704,-1703,-45,-6,-9856,-256,-9855,-2], +[0,-44,-401,-3140,-1967], +[0,-23,-38,-40,-41,-190,-6486,-3326,-350,-351,-3561,-3266,-409,-3136,-4647,-3037,-3040,-3052,-3714,-553,-2745,-932,-940, +-969,-970,-4814,-1110,-1415,-1419,-1722,-1772,-1942,-2006,-2019,-2127,-2195,-2200,-5091,-2375,-2379,-2410,-2411], +[0,-5092,-3264,-5093,-5094,-3214,-2006,-12655,-3839,-12656,-2410], [1,3,7647], [0,7648,0,7649,6], -[0,-1856], -[0,-9854,-6,-414,-658,-9853,-6340], +[0,-1033], +[0,-12657,-2006,-2363,-826,-12658,-2051], [1,3,7651], [0,7652,0,7653,8], -[0,-439,-982], -[0,-6,-234,-9852], +[0,-2029,-2166], +[0,-2006,-2034,-12659], [1,3,7655], [0,108,7656,7657,5], -[0,-9851,-4647,-1357,-4039,-5,-47,-87,-537,-56,-502,-3847,-18,-38,-4,-6,-35,-171,-2,-104,-9850], -[0,-6,-1731,-3027,-108,-2812,-1229,-9849,-4431,-2303], +[0,-12660,-11184,-234,-405,-3037,-3040,-3052,-440,-756,-795,-2926,-1534,-1889,-1942,-2006,-2019,-2391,-2410,-2466,-12661], +[0,-2006,-4127,-12662,-3159,-2053,-5737,-12663,-12664,-12665], [1,3,7659], [0,7660,7661,7662,5], -[0,-9848,-9847], -[0,-110,-59,-1570,-474,-9846,-2727,-2237,-9845,-1553,-1,-4430,-54,-167,-3136,-243,-5261,-616,-177,-9844,-4825,-9843,-496, --565,-903,-1671,-9842,-1300,-3231,-156,-2,-112,-4477,-1782], -[0,-6,-866,-2433,-1067], +[0,-12666,-12667], +[0,-589,-633,-647,-710,-12668,-3346,-913,-12669,-923,-932,-12670,-1127,-1132,-10258,-1134,-7849,-1137,-1144,-12671,-10265, +-12672,-1417,-1813,-1859,-6184,-12673,-2066,-9266,-2359,-2410,-2416,-12322,-2493], +[0,-2006,-4146,-8530,-6107], [1,3,7664], [0,7665,0,7666,10], -[0,-90,-1866,-1521,-121], -[0,-6,-3031,-5208,-9841,-485,-24,-9840], +[0,-44,-860,-1580,-1967], +[0,-2006,-12546,-8111,-12674,-5176,-775,-12675], [1,3,7668], [0,7669,7670,7671,6], -[0,-304,-121,-1866,-1521,-90,-1495], -[0,-8,-9,-6,-594,-1,-7,-14,-152,-38,-17,-420,-348,-4,-26,-529,-157,-35,-50,-86,-1181,-144,-11,-277,-18,-696,-92,-160,-94, --98,-441,-897,-154,-492,-480,-1598,-9839,-559,-21,-1068,-3350,-170,-136,-9838,-827,-64,-9837,-346,-286,-273,-803,-9836, --893,-12,-500,-148,-25,-463,-4429,-341,-919,-962,-173,-5575, --9835,-216,-391,-834], -[0,-6,-516,-108,-1375,-1256,-4428,-4427,-4426,-734,-9834,-2618,-3047,-3489,-1718,-2405], +[0,-703,-1967,-860,-1580,-44,-2030], +[0,-1415,-1344,-2006,-2490,-932,-2125,-2127,-708,-1889,-2501,-1059,-1103,-1942,-767,-1361,-1978,-2019,-21,-533,-709,-778, +-23,-1041,-1534,-1891,-2503,-518,-528,-534,-1952,-2043,-2275,-1908,-39,-11942,-12676,-2044,-40,-6056,-7748,-2505,-41, +-12677,-951,-969,-12678,-1331,-2052,-2128,-2143,-12679,-2138,-940,-956,-962,-967,-2131,-12680,-2137,-1017,-3840,-38, +-6057, +-12681,-26,-3204,-553], +[0,-2006,-3476,-3159,-9614,-4108,-12682,-12683,-12684,-4002,-12685,-5147,-12129,-6445,-4672,-9133], [1,3,7673], [0,7674,7675,7676,10], -[0,-460,-3906], -[0,-3,-117,-16,-2540,-59,-315,-9833], -[0,-6,-59,-2550,-866,-270,-107,-507], +[0,-2346,-2054], +[0,-1654,-1452,-2177,-6398,-633,-725,-12686], +[0,-2006,-633,-6340,-4146,-3756,-3862,-6408], [1,3,7678], [0,7679,7680,7681,5], -[0,-90,-790,-267,-121,-2756,-691], -[0,-50,-11,-161,-1196,-1038,-306,-391,-21,-136,-1440,-1715,-1081,-4425,-950,-155,-122,-317,-47,-94,-86,-98,-1885,-476, --289,-404,-3118,-26,-9832,-1172,-351,-1,-266,-12,-500,-10,-148,-64,-2645,-9831,-8,-176,-79,-911,-701,-4,-6,-35,-3912, --9830,-897,-286,-2,-17], -[0,-6338,-476,-6,-129,-127,-108,-102], +[0,-44,-2997,-682,-1967,-2804,-2055], +[0,-21,-23,-32,-34,-35,-36,-3204,-40,-41,-4757,-4762,-4754,-12687,-4749,-407,-409,-410,-3040,-528,-533,-534,-561,-620, +-726,-740,-10524,-767,-12688,-879,-888,-932,-933,-940,-956,-958,-962,-969,-4756,-12689,-1415,-1419,-1449,-1455,-1637, +-1942,-2006,-2019,-2022,-12690,-2043,-2052,-2410,-2501], +[0,-2058,-620,-2006,-3095,-3098,-3159,-3160], [1,3,7683], [0,7684,7685,7,4], -[0,-2680], -[0,-731,-730,-3746,-2577,-19,-43,-251,-85,-33,-555,-2], +[0,-3950], +[0,-4298,-4300,-3952,-5866,-428,-652,-948,-2319,-2379,-2386,-2410], [1,3,7687], [0,7688,118,7689,8], -[0,-3443,-2509,-5408,-210,-2430], -[0,-106,-603,-165,-126,-303,-1912,-2001,-451,-1655], +[0,-6902,-6904,-6990,-2400,-8803], +[0,-4055,-2059,-1838,-6656,-1076,-11998,-6994,-5897,-6811], [1,3,7691], [0,7692,14,7693,4], -[0,-3294,-1802,-210], -[0,-106,-603,-165,-126,-303,-1912,-2001,-451,-630,-2429,-349,-1076,-2428,-1958,-720,-511,-128,-1382,-1065,-942,-405,-745, --1957,-248], +[0,-8341,-2060,-2400], +[0,-4055,-2059,-1838,-6656,-1076,-11998,-6994,-5897,-5573,-8804,-1047,-5504,-8805,-8806,-7282,-5572,-2114,-8807,-6370, +-7420,-7421,-2487,-8808,-1847], [1,3,7695], [0,7696,7697,7698,9], -[0,-1354,-299,-422,-287,-2544], -[0,-11,-2033,-1231,-283,-80,-2530,-63,-662,-59,-43,-89,-9829,-1,-84,-10,-115,-67,-398,-4,-14,-2377,-85,-9828,-39,-312, --284,-17,-92], -[0,-1206,-245,-1921], +[0,-458,-640,-997,-1958,-6383], +[0,-23,-6065,-5584,-3244,-350,-6572,-351,-357,-633,-652,-928,-12691,-932,-943,-958,-965,-968,-1874,-1942,-2127,-9701, +-2319,-12692,-2322,-2323,-2426,-2501,-2503], +[0,-8800,-5827,-11441], [1,3,7700], [0,0,7701,7702,8], -[0,-85,-470], -[0,-1301,-9827,-126], +[0,-2319,-1351], +[0,-2063,-12693,-6656], [1,3,7704], [0,0,0,7705,9], -[0,-1301,-2308,-1606,-490,-2120,-1702,-37,-431,-308,-4424,-3128,-785,-3508], +[0,-2063,-12397,-9845,-1965,-3969,-5110,-687,-3975,-3957,-12694,-10394,-4116,-6301], [0,68,15,16,5], [1,3,7708], [0,7709,7710,7711,5], -[0,-2611,-1168,-130,-3026,-44], -[0,-11,-427,-21,-9826,-458,-69,-5,-19,-1,-4430,-9825,-28,-18,-3,-4,-4873,-2], -[0,-360,-4984,-9824,-3226,-389,-3227,-723,-9823], +[0,-5223,-987,-2231,-12695,-2387], +[0,-23,-25,-40,-12696,-3036,-3621,-3037,-428,-932,-12670,-12697,-1107,-1534,-1654,-1942,-9880,-2410], +[0,-3272,-9306,-12698,-9308,-4132,-9307,-6747,-12699], [0,67,15,16,8], [1,3,7714], [0,7715,125,7716,4], -[0,-128], -[0,-407,-779,-1690,-1973,-9822], +[0,-2114], +[0,-4792,-5932,-5195,-8109,-12700], [1,3,7718], [0,7719,0,7720,4], -[0,-90,-9821,-1856,-1006,-1495,-3568], -[0,-6,-9820,-127,-9819,-1094,-939,-3025], +[0,-44,-12701,-1033,-1311,-2030,-5746], +[0,-2006,-12702,-3098,-12703,-3481,-8113,-12704], [1,3,7722], [0,124,27,7723,8], -[0,-405,-9818], +[0,-7421,-12705], [1,3,7725], [0,7726,0,7727,6], -[0,-9817,-9816,-9815,-9814,-9813], -[0,-690], +[0,-12706,-12707,-12708,-12709,-12710], +[0,-2071], [1,3,7729], [0,7730,7731,150,10], -[0,-1092,-6005,-228,-2691,-440,-747,-1505,-4002,-267,-2203,-121,-6002,-6001,-6004,-6000,-1018,-6003,-697,-3763,-2767, --9812], -[0,-694,-195,-8,-1317,-9,-6,-44,-445,-1,-7,-159,-502,-101,-807,-272,-57,-33,-5993,-17,-4,-35,-144,-321,-2,-109,-29,-2689, --5,-5994,-92,-47,-413,-441,-154,-1279,-2131,-3762,-963,-5995,-517,-1772,-1264,-2686,-1439,-5998,-87,-972,-888,-2687, --1186,-170,-5996,-535,-64,-346,-10,-5997,-176,-1780,-2688,-19,-190,-404, --2690,-1853,-22,-4423], +[0,-3544,-3786,-1610,-3788,-1955,-2223,-1885,-863,-682,-1653,-1967,-3790,-3791,-3787,-3793,-996,-3789,-1848,-3792,-2680, +-12711], +[0,-1992,-2435,-1415,-1652,-1344,-2006,-2387,-915,-932,-2125,-753,-795,-1442,-1821,-2195,-2375,-2379,-3811,-2501,-1942, +-2019,-778,-2214,-2410,-3035,-3136,-3800,-3037,-3810,-2503,-3040,-3041,-1952,-2275,-3043,-3802,-3801,-3803,-3805,-3046, +-2760,-3808,-3809,-4773,-3797,-3052,-3140,-2278,-3806,-585,-2505,-3799,-748,-969,-1331,-958,-3798,-1419,-2509,-3804,-428, +-970,-740, +-3794,-1067,-427,-12712], [1,3,7733], [0,7734,7735,7736,4], -[0,-9811,-9810], -[0,-6,-17,-35,-2,-47,-87,-3758,-9809], -[0,-6337,-681,-99,-545,-42,-9808,-1867,-9807], +[0,-12713,-12714], +[0,-2006,-2501,-2019,-2410,-3040,-3052,-3859,-12715], +[0,-2072,-3438,-3690,-4847,-856,-12716,-858,-12717], [1,3,7738], [0,0,7739,7740,5], -[0,-11,-5,-22,-19,-26,-5834,-1,-1336,-251,-10,-64,-190,-28,-4422,-4,-7,-489,-171,-2,-30], -[0,-322,-3690,-1255,-9806,-727,-529,-1910,-3035,-4421,-1329,-9805], +[0,-23,-3037,-427,-428,-767,-4780,-932,-941,-948,-958,-969,-970,-1107,-12718,-1942,-2125,-2153,-2391,-2410,-2469], +[0,-2074,-4782,-4125,-12719,-5112,-1361,-12517,-12516,-12720,-1062,-12721], [1,3,7742], [0,7743,7744,7745,5], -[0,-9804,-9803], -[0,-9802,-9801,-4420,-9,-18,-65,-4,-104,-30,-34], -[0,-1329,-322,-4682,-9800], +[0,-12722,-12723], +[0,-12724,-12725,-12726,-1344,-1534,-1771,-1942,-2466,-2469,-2541], +[0,-1062,-2074,-10951,-12727], [1,3,7747], [0,7748,7749,7750,5], -[0,-23,-439,-6473,-704,-1836,-121,-90,-1006], -[0,-156,-8,-9,-6,-322,-1,-7,-152,-17,-420,-4,-26,-529,-35,-50,-830,-321,-11,-9799,-18,-898,-92,-94,-98,-9798,-21,-136, --1888,-827,-64,-3529,-286,-10,-4420,-9797,-500,-148,-1336,-520,-190,-673,-2307,-173,-216,-971], -[0,-6,-516,-1329,-322,-898,-6336,-546,-1923], +[0,-1548,-2029,-924,-1384,-1398,-1967,-44,-1311], +[0,-2359,-1415,-1344,-2006,-2074,-932,-2125,-708,-2501,-1059,-1942,-767,-1361,-2019,-21,-821,-2214,-23,-12728,-1534,-2040, +-2503,-528,-534,-12729,-40,-41,-540,-951,-969,-6040,-2052,-958,-12726,-12730,-956,-962,-941,-2502,-970,-5295,-12416,-38, +-26,-3203], +[0,-2006,-3476,-1062,-2074,-2040,-2076,-4053,-11313], [1,3,7752], [0,7753,7754,7755,6], -[0,-6493], -[0,-169,-1351,-3054,-328,-13,-152,-1,-266,-10,-148,-64,-419,-9,-3,-15,-322,-7,-14,-273,-463,-341,-803,-27], -[0,-322,-738,-6335,-332], +[0,-819], +[0,-527,-537,-11899,-559,-664,-708,-932,-933,-958,-962,-969,-1339,-1344,-1654,-1788,-2074,-2125,-2127,-2128,-2131,-2137, +-2143,-2210], +[0,-2074,-3444,-2077,-5401], [1,3,7757], [0,7758,7759,7760,10], -[0,-9796], -[0,-11,-173,-480,-21], -[0,-45,-322,-332,-9795,-9794,-9793], +[0,-12731], +[0,-23,-38,-39,-40], +[0,-3214,-2074,-5401,-12732,-12733,-12734], [1,3,7762], [0,0,7763,7764,5], -[0,-22,-19,-26,-1,-12,-4,-322,-7,-171,-2,-30], -[0,-322,-4419,-332,-9792,-1329], +[0,-427,-428,-767,-932,-940,-1942,-2074,-2125,-2391,-2410,-2469], +[0,-2074,-12735,-5401,-12736,-1062], [1,3,7766], [0,0,7767,7768,4], -[0,-109,-69,-5,-13,-151,-9791,-32,-9790,-9789,-364,-314,-9788,-6437,-3,-2], -[0,-1923,-2319,-45,-9787], +[0,-3035,-3621,-3037,-664,-824,-12737,-1168,-12738,-12739,-1231,-1243,-12740,-1259,-1654,-2410], +[0,-11313,-11872,-3214,-12741], [1,3,7770], [0,0,7771,7772,8], -[0,-152,-54,-821,-66,-2558,-1498,-416], -[0,-948,-1075,-45,-455,-114,-589], +[0,-708,-1127,-1162,-1405,-6186,-1991,-2111], +[0,-5569,-5570,-3214,-4112,-3262,-3673], [1,3,7774], [0,0,0,7775,4], -[0,-9786,-1368,-114,-60], +[0,-12742,-11997,-3262,-510], [1,3,7777], [0,7778,0,7779,6], -[0,-246,-2187,-750,-133], -[0,-1907,-360,-31,-165,-287,-374,-851,-429,-389,-934,-133], +[0,-5334,-2087,-2090,-2427], +[0,-12743,-3272,-3264,-1838,-1958,-2083,-6233,-6231,-4132,-10919,-2427], [1,3,7781], [0,7782,7783,7784,5], -[0,-246,-1377,-3717,-1472,-133,-340], -[0,-5,-1612,-43,-4418,-4,-374,-147,-260,-233,-2,-34], -[0,-133,-374,-931,-107,-3099,-1371,-31], +[0,-5334,-9581,-4264,-2766,-2427,-2429], +[0,-3037,-9586,-652,-12744,-1942,-2083,-2094,-2100,-2399,-2410,-2541], +[0,-2427,-2083,-12745,-3862,-10857,-10606,-3264], [1,3,7786], [0,7787,7788,7789,4], -[0,-246,-1377,-1472,-9785,-1111,-340], -[0,-5,-1612,-43,-4,-374,-147,-260,-233,-2,-34], -[0,-133,-374,-931,-107,-428,-31,-100,-9784,-1371,-195], +[0,-5334,-9581,-2766,-12746,-2235,-2429], +[0,-3037,-9586,-652,-1942,-2083,-2094,-2100,-2399,-2410,-2541], +[0,-2427,-2083,-12745,-3862,-9589,-3264,-1599,-12747,-10606,-2435], [1,3,7791], [0,7792,7793,7794,11], -[0,-246,-9783,-908,-2616,-3640,-133,-1078], -[0,-2104,-5,-47,-43,-1,-3024,-148,-64,-1611,-4,-147,-2337,-3023,-2], -[0,-428,-31,-100,-2106,-374,-931,-133], +[0,-5334,-12748,-1618,-5204,-5205,-2427,-5356], +[0,-4228,-3037,-3040,-652,-932,-12749,-962,-969,-9602,-1942,-2094,-11167,-12750,-2410], +[0,-9589,-3264,-1599,-4147,-2083,-12745,-2427], [1,3,7796], [0,7797,0,7798,5], -[0,-246,-1281,-133], -[0,-1907,-360,-31,-165,-107,-374,-931,-389,-934,-133], +[0,-5334,-2586,-2427], +[0,-12743,-3272,-3264,-1838,-3862,-2083,-12745,-4132,-10919,-2427], [1,3,7800], [0,7801,7802,7803,8], -[0,-246,-1843,-483], -[0,-5,-43,-4,-750,-147,-601,-260,-804,-233,-2,-133,-340,-34], -[0,-31,-107,-3183,-374,-931,-133], +[0,-5334,-1286,-5358], +[0,-3037,-652,-1942,-2090,-2094,-2098,-2100,-2101,-2399,-2410,-2427,-2429,-2541], +[0,-3264,-3862,-9591,-2083,-12745,-2427], [1,3,7805], [0,7806,7807,7808,4], -[0,-246,-486,-3717,-760,-340], -[0,-5,-43,-4,-374,-147,-260,-233,-2,-34], -[0,-3099,-31,-2491,-107,-374,-931,-2797,-133], +[0,-5334,-3649,-4264,-1292,-2429], +[0,-3037,-652,-1942,-2083,-2094,-2100,-2399,-2410,-2541], +[0,-10857,-3264,-7231,-3862,-2083,-12745,-2222,-2427], [1,3,7810], [0,7811,0,7812,6], -[0,-246,-1534,-133], -[0,-1907,-360,-665,-31,-107,-374,-931,-851,-429,-389,-934,-133], +[0,-5334,-1290,-2427], +[0,-12743,-3272,-7644,-3264,-3862,-2083,-12745,-6233,-6231,-4132,-10919,-2427], [1,3,7814], [0,7815,7816,7817,5], -[0,-9782,-713,-9781,-1577,-5489,-504,-2510,-2103,-200,-9780,-1319,-344,-4588,-149,-324,-1458,-2424,-16,-311,-284,-2178, --9779,-518], -[0,-48,-9778,-5,-1,-1626,-55,-1451,-811,-9777,-9776,-4,-147,-9775,-312,-2], -[0,-666,-780,-1677,-9774,-387,-571,-1397,-1606,-2526,-158,-717,-1229,-3235,-373,-2472,-2322,-254,-1218,-589,-663,-16,-107], +[0,-12751,-305,-12752,-512,-6563,-680,-6869,-4236,-1376,-12753,-1566,-1641,-11656,-1805,-1816,-3547,-8874,-2177,-2654, +-2426,-2436,-12754,-2551], +[0,-190,-12755,-3037,-932,-8339,-1110,-3781,-1498,-12756,-12757,-1942,-2094,-12758,-2323,-2410], +[0,-7641,-5887,-5890,-12759,-5889,-1105,-7661,-9845,-6657,-1764,-8403,-5737,-9244,-2091,-7737,-11729,-5550,-6818,-3673, +-9318,-2177,-3862], [1,3,7819], [0,7820,7821,7822,4], -[0,-66,-93,-143,-130,-71], -[0,-1,-191,-10,-54,-32,-9773,-7], -[0,-68,-253,-130,-66,-787], +[0,-1405,-1645,-1876,-2231,-2347], +[0,-932,-934,-958,-1127,-1168,-12760,-2125], +[0,-7841,-9219,-2231,-1405,-4005], [1,3,7824], [0,7825,0,7826,4], -[0,-133,-408,-601,-1681], -[0,-1907,-360,-665,-100,-841,-165,-287,-274,-851,-429,-389,-934,-133], +[0,-2427,-4251,-2098,-5616], +[0,-12743,-3272,-7644,-1599,-10918,-1838,-1958,-2093,-6233,-6231,-4132,-10919,-2427], [1,3,7828], [0,7829,0,7830,11], -[0,-1758,-9772,-274,-9771], -[0,-1386,-37,-100,-841,-274,-133], +[0,-3190,-12761,-2093,-12762], +[0,-8425,-687,-1599,-10918,-2093,-2427], [1,3,7832], [0,7833,7834,7835,10], -[0,-408,-2343,-3094,-601,-1681,-133], -[0,-5,-43,-4418,-4,-274,-147,-260,-394,-2473,-233,-2,-34], -[0,-4747,-9770,-2101,-571,-100,-841,-107,-274,-1906,-5686,-734,-3737,-133], +[0,-4251,-10922,-10923,-2098,-5616,-2427], +[0,-3037,-652,-12744,-1942,-2093,-2094,-2100,-2267,-7699,-2399,-2410,-2541], +[0,-10604,-12763,-4329,-1105,-1599,-10918,-3862,-2093,-12764,-5552,-4002,-4109,-2427], [1,3,7837], [0,7838,7839,7840,4], -[0,-408,-6431,-1134,-1534,-133], -[0,-246,-5,-43,-4689,-1281,-4,-147,-864,-521,-1720,-601,-260,-9769,-1719,-233,-2,-483,-34], -[0,-665,-31,-100,-841,-107,-274,-1906,-429,-133], +[0,-4251,-1287,-1619,-1290,-2427], +[0,-5334,-3037,-652,-10915,-2586,-1942,-2094,-4242,-2095,-4655,-2098,-2100,-12765,-4656,-2399,-2410,-5358,-2541], +[0,-7644,-3264,-1599,-10918,-3862,-2093,-12764,-6231,-2427], [1,3,7842], [0,7843,7844,7845,9], -[0,-483,-133,-408,-4417,-1078,-3022], -[0,-43,-1,-274,-4,-398,-147,-2,-246,-804,-750,-3023,-3024,-2337], -[0,-42,-2587,-9768,-107,-274,-1906,-133], +[0,-5358,-2427,-4251,-12766,-5356,-12767], +[0,-652,-932,-2093,-1942,-1874,-2094,-2410,-5334,-2101,-2090,-12750,-12749,-11167], +[0,-856,-5670,-12768,-3862,-2093,-12764,-2427], [1,3,7847], [0,7848,0,7849,5], -[0,-408,-908,-1928,-133], -[0,-1907,-360,-100,-841,-165,-107,-274,-1906,-389,-934,-133], +[0,-4251,-1618,-10869,-2427], +[0,-12743,-3272,-1599,-10918,-1838,-3862,-2093,-12764,-4132,-10919,-2427], [1,3,7851], [0,7852,7853,7854,9], -[0,-4416,-9767,-521,-9766,-9765,-3200,-3199,-3198,-3197,-3196,-4415,-3195,-4414,-3194,-4413,-4412,-4411,-4410,-4934,-4409, --3193,-4408,-4407,-4406,-4405,-4404,-4403,-3192,-4402,-9764,-4401,-4400,-4399,-4398,-4397,-4396,-3191,-3190,-3189,-4395, --3188,-3187,-2086,-4394,-1719,-4393,-9763,-133], -[0,-49,-62,-1,-1551,-1854,-9,-18,-4,-147,-34], -[0,-571,-3442,-274], +[0,-12769,-12770,-2095,-12771,-12772,-9514,-9515,-9516,-9517,-9518,-12773,-9519,-12774,-9520,-12775,-12776,-12777,-12778, +-9524,-12779,-9527,-12780,-12781,-12782,-12783,-12784,-12785,-9528,-12786,-12787,-12788,-12789,-12790,-12791,-12792, +-12793,-9532,-9533,-9534,-12794,-9535,-9536,-4995,-12795,-4656,-12796,-12797,-2427], +[0,-86,-3307,-932,-946,-1053,-1344,-1534,-1942,-2094,-2541], +[0,-1105,-6913,-2093], [1,3,7856], [0,7857,7858,7859,4], -[0,-4416,-521,-1720,-3200,-3199,-3198,-3197,-9762,-3196,-9761,-4415,-3195,-4414,-3194,-4413,-4412,-4411,-4935,-4410,-9760, --9759,-9758,-9757,-9756,-9755,-9754,-9753,-9752,-9751,-4409,-9750,-3193,-9749,-4408,-9748,-4407,-4406,-4405,-4404,-4403, --3192,-4402,-9747,-9746,-9745,-4401,-4400,-9744,-9743,-4399,-4398,-4397,-9742,-9741,-4396,-3191,-3190,-3189,-4395,-3188, --3187,-2086,-4394, --1681,-1719,-4933,-4393,-9740,-394,-133], -[0,-4,-147,-233,-2,-34], -[0,-3442,-274,-9739], +[0,-12769,-2095,-4655,-9514,-9515,-9516,-9517,-12798,-9518,-12799,-12773,-9519,-12774,-9520,-12775,-12776,-12777,-9522, +-12778,-12800,-12801,-12802,-12803,-12804,-12805,-12806,-12807,-12808,-12809,-12779,-12810,-9527,-12811,-12780,-12812, +-12781,-12782,-12783,-12784,-12785,-9528,-12786,-12813,-12814,-12815,-12788,-12789,-12816,-12817,-12790,-12791,-12792, +-12818,-12819,-12793,-9532,-9533,-9534,-12794,-9535,-9536,-4995,-12795, +-5616,-4656,-9537,-12796,-12820,-2267,-2427], +[0,-1942,-2094,-2399,-2410,-2541], +[0,-6913,-2093,-12821], [1,3,7861], [0,7862,7863,7864,8], -[0,-246,-408,-1134,-133,-483], -[0,-5,-43,-4,-2811,-750,-147,-601,-260,-1681,-233,-2,-34], -[0,-428,-31,-100,-841,-107,-931,-374,-1906,-274,-133], +[0,-5334,-4251,-1619,-2427,-5358], +[0,-3037,-652,-1942,-2089,-2090,-2094,-2098,-2100,-5616,-2399,-2410,-2541], +[0,-9589,-3264,-1599,-10918,-3862,-12745,-2083,-12764,-2093,-2427], [1,3,7866], [0,7867,7868,7869,6], -[0,-1353,-9738], -[0,-240,-110,-1043,-1,-1859,-381,-707,-379,-228,-3,-15,-14,-1117,-341,-226,-801], -[0,-1043,-100,-969,-165,-73,-287,-1119,-844,-2112,-183], +[0,-503,-12822], +[0,-5514,-589,-8630,-932,-953,-985,-1202,-1304,-1610,-1654,-1788,-2127,-2133,-2137,-2140,-2184], +[0,-8630,-1599,-3437,-1838,-3215,-1958,-2102,-7650,-4065,-5554], [1,3,7871], [0,0,125,7872,5], -[0,-32,-1973,-2474,-5977], +[0,-1168,-8109,-7693,-3866], [1,3,7874], [0,7875,7876,7877,4], -[0,-20,-28,-96], -[0,-48,-43,-13,-244,-1,-3], -[0,-1046,-183,-3435,-126], +[0,-668,-1107,-2550], +[0,-190,-652,-664,-665,-932,-1654], +[0,-8276,-5554,-7002,-6656], [1,3,7879], [0,7880,7881,7882,10], -[0,-464,-2336,-123,-444,-9737,-5524,-9736,-657,-344,-9735,-488,-1106,-9734,-9733,-9732,-9731,-4392,-5049,-1506,-1147], -[0,-15,-39,-78,-9730,-7,-152,-116,-97,-56,-4391,-3292,-59,-1880,-4922,-612,-1112,-910,-645,-3254,-2862], -[0,-105,-631,-132,-202], +[0,-1983,-11197,-2446,-1015,-12823,-6397,-12824,-1069,-1641,-12825,-2155,-2364,-12826,-12827,-12828,-12829,-12830,-8956, +-1856,-1459], +[0,-1788,-2322,-1471,-12831,-2125,-708,-615,-2250,-756,-12832,-8375,-633,-641,-9573,-1476,-2188,-1472,-1860,-8958,-1484], +[0,-1334,-5493,-2444,-3590], [1,3,7884], [0,7885,7886,7887,4], -[0,-116,-1106,-4390,-4389], -[0,-13,-32,-20,-23,-7,-113,-364,-168,-530,-983,-1008,-2339,-2819], -[0,-743,-105,-401,-172,-113,-2334,-4388,-116], +[0,-615,-2364,-12833,-12834], +[0,-664,-1168,-668,-1548,-2125,-2105,-1231,-617,-1197,-2150,-1220,-11117,-1973], +[0,-2533,-1334,-1342,-1961,-2105,-11301,-12835,-615], [1,3,7889], [0,7890,7891,7892,9], -[0,-4389,-4390,-1106], -[0,-168,-13,-20,-32,-2339,-530,-1008,-364,-23,-2819,-113,-7,-983], -[0,-743,-105,-401,-172,-113,-2334,-4388,-484], +[0,-12834,-12833,-2364], +[0,-617,-664,-668,-1168,-11117,-1197,-1220,-1231,-1548,-1973,-2105,-2125,-2150], +[0,-2533,-1334,-1342,-1961,-2105,-11301,-12835,-5269], [1,3,7894], [0,0,7895,7,10], -[0,-33,-2,-474], +[0,-2379,-2410,-710], [1,3,7897], [0,0,7898,7899,4], -[0,-2578], -[0,-407,-2389,-9729], +[0,-5856], +[0,-4792,-9409,-12836], [1,3,7901], [0,0,7902,7903,5], -[0,-2272,-122,-142,-47,-87,-1744,-22,-4387,-19,-9728,-1,-64,-9727,-79,-23,-1825,-2205,-9726,-4422,-4,-6,-35,-898,-7,-272, --171,-2,-30], -[0,-6,-322], +[0,-349,-409,-3044,-3040,-3052,-3714,-427,-12837,-428,-12838,-932,-969,-12839,-1449,-1548,-1565,-1624,-12840,-12718,-1942, +-2006,-2019,-2040,-2125,-2195,-2391,-2410,-2469], +[0,-2006,-2074], [1,3,7905], [0,0,7906,7907,4], -[0,-94,-618,-1,-199,-378,-78,-139,-212,-400,-2140,-755,-812,-648,-702,-1807,-14,-1297,-2], -[0,-4386,-1933,-3033,-132,-337,-91,-549,-1406], +[0,-528,-757,-932,-1412,-1413,-1471,-1475,-1479,-1481,-3569,-1486,-1488,-1490,-1491,-1962,-2127,-2141,-2410], +[0,-12841,-10095,-12523,-2444,-3323,-4865,-3582,-6989], [1,3,7909], [0,7910,7911,7912,10], -[0,-9725,-3393,-9724], -[0,-2536,-85,-156,-39,-1557,-1,-72,-7,-16,-4385,-275,-213,-1508,-3275,-187,-239], -[0,-128,-407,-141,-358], +[0,-12842,-7437,-12843], +[0,-6455,-2319,-2359,-2322,-887,-932,-1650,-2125,-2177,-12844,-1777,-1365,-1795,-8569,-2156,-5834], +[0,-2114,-4792,-3966,-3551], [1,3,7914], [0,0,14,7915,5], -[0,-407,-128,-248,-358,-1624,-5492,-628], +[0,-4792,-2114,-1847,-3551,-8388,-6546,-6024], [1,3,7917], [0,7918,0,7919,10], -[0,-9723,-472,-754,-38,-130], -[0,-17,-779,-24,-1655,-5579,-128,-195,-77,-3222,-126], +[0,-12845,-742,-1543,-1889,-2231], +[0,-2501,-5932,-775,-6811,-6043,-2114,-2435,-2162,-9358,-6656], [1,3,7921], [0,7922,7923,7924,5], -[0,-3021,-2132,-40,-250,-101,-9722,-123], -[0,-50,-11,-781,-216,-622,-306,-1231,-480,-21,-90,-49,-6058,-296,-295,-51,-201,-94,-355,-1188,-168,-13,-9721,-56,-3043, --207,-5937,-1,-9720,-9719,-10,-214,-265,-9718,-76,-67,-826,-9717,-762,-2887,-150,-41,-9716,-9,-6414,-3947,-1140,-3,-995, --9715,-15,-120,-9714,-125,-9713], -[0,-547,-1579,-114,-42,-9712,-1090,-9711,-410,-99,-105], +[0,-12846,-3780,-1077,-1276,-1442,-12847,-2446], +[0,-21,-23,-5870,-26,-33,-36,-5584,-39,-40,-44,-86,-3531,-3470,-3471,-519,-523,-528,-539,-541,-617,-664,-12848,-756, +-12310,-834,-4088,-932,-12849,-12850,-958,-963,-964,-12851,-966,-968,-971,-12852,-972,-973,-978,-1004,-12853,-1344,-1444, +-1457,-1547,-1654,-1656,-12854,-1788,-2174,-12855,-2293,-12856], +[0,-3960,-489,-3262,-856,-12857,-3636,-12858,-3691,-3690,-1334], [1,3,7926], [0,7927,7928,7929,4], -[0,-464,-831,-9710,-261,-698,-1307,-802,-4384,-123,-23,-16,-3877,-4531,-442,-1014,-2595,-2928,-5104,-4392,-9709,-5511, --9708], -[0,-15,-324,-13,-28,-3,-27,-1,-72,-7,-200,-699,-4,-56,-437,-9707,-3277,-235,-180,-42,-9706,-9705,-181,-12,-25], -[0,-1740,-52,-41,-9704], +[0,-1983,-788,-12859,-1640,-1801,-1867,-2178,-12860,-2446,-1548,-2177,-2454,-11983,-1582,-1070,-5397,-508,-8541,-12830, +-12861,-6456,-12862], +[0,-1788,-1816,-664,-1107,-1654,-2210,-932,-1650,-2125,-1376,-1754,-1942,-756,-2451,-12863,-8549,-1939,-1972,-856,-12864, +-12865,-960,-940,-967], +[0,-3817,-3161,-1004,-12866], [1,3,7931], [0,7932,83,7,4], -[0,-464,-551,-259,-470], +[0,-1983,-2536,-2548,-1351], [1,3,7934], [0,7935,251,7936,8], -[0,-2407,-891], -[0,-921,-9703,-287,-1912,-3020,-4383,-9702,-9701,-4382,-4844,-37,-2047,-240,-5472,-869,-174,-194,-431,-254,-294], +[0,-9050,-2202], +[0,-1000,-12867,-1958,-11998,-12868,-12869,-12870,-12871,-12872,-10018,-687,-5564,-5514,-6713,-4110,-3974,-4000,-3975, +-5550,-3958], [1,3,7938], [0,7939,0,7940,8], -[0,-116], -[0,-386,-9700,-9699,-9698], +[0,-615], +[0,-7685,-12873,-12874,-12875], [1,3,7942], [0,0,7943,7,5], -[0,-1619,-66,-39], +[0,-8959,-1405,-2322], [1,3,7945], [0,7946,7947,7948,5], -[0,-1,-6080], -[0,-5,-421,-3,-15,-33,-2], -[0,-2027,-2026,-307,-672,-358,-388,-75,-9697,-1717,-1619,-407], +[0,-932,-3414], +[0,-3037,-1003,-1654,-1788,-2379,-2410], +[0,-6137,-6138,-4215,-5396,-3551,-5119,-4004,-12876,-4676,-8959,-4792], [1,3,7950], [0,0,7951,7952,4], -[0,-3801,-152,-3019,-3018,-3053,-9696,-1139,-9695,-9694,-642,-97,-85,-81], -[0,-406,-1992,-1091,-536,-669,-1222,-772,-1641,-1991,-2486,-1990,-9693,-4381,-3019,-9692,-508,-542,-4380,-9691,-9690, --4379,-4378,-3018,-9689], +[0,-3415,-708,-12877,-12878,-11961,-12879,-1552,-12880,-12881,-1993,-2250,-2319,-2384], +[0,-7208,-7369,-3589,-702,-6351,-6545,-7371,-7372,-7373,-7374,-7375,-12882,-12883,-12877,-12884,-5922,-6187,-12885,-12886, +-12887,-12888,-12889,-12878,-12890], [1,3,7954], [0,7955,7956,7957,4], -[0,-28,-9688], -[0,-5,-72,-4,-85,-555,-124], -[0,-1410,-4377,-4376,-626,-405,-37,-2484,-772], +[0,-1107,-12891], +[0,-3037,-1650,-1942,-2319,-2386,-2402], +[0,-6695,-12892,-12893,-6694,-7421,-687,-7418,-7371], [1,3,7959], [0,7960,7961,7962,4], -[0,-809,-5985,-3477], -[0,-199,-4375,-9687,-9686], -[0,-9685,-4646,-2302,-3128,-1939,-281,-9684,-1200,-6327,-3587,-9683,-9682,-4374,-9681,-224], +[0,-1696,-3846,-6521], +[0,-1412,-12894,-12895,-12896], +[0,-12897,-11189,-12898,-10394,-9711,-6527,-12899,-11321,-2126,-5566,-12900,-12901,-12902,-12903,-712], [1,3,7964], [0,202,7965,7966,4], -[0,-3453,-4648,-3452,-5462,-3454,-3455,-48,-1257,-1763,-9680,-3655,-513,-2016,-80,-231,-63,-232,-204,-319,-728,-9679,-69, --5,-623,-137,-2404,-9678,-208,-9677,-1665,-1184,-1571,-119,-289,-159,-26,-4373,-1553,-1862,-1,-12,-25,-150,-825,-1330, --9676,-40,-5851,-55,-9,-2642,-18,-2092,-297,-262,-3,-288,-9675,-15,-1241,-164,-323,-1768, --4,-1122,-523,-899,-416,-14,-894,-16,-395,-891,-130,-146,-1790,-175,-44,-2,-83,-104,-793,-74,-979,-1424,-9674,-518], -[0,-370,-2464,-4372,-339,-1648], +[0,-6779,-11174,-6780,-6778,-6777,-6776,-190,-4106,-3115,-12904,-5053,-4066,-6429,-350,-4062,-351,-3561,-3266,-3267,-4785, +-12905,-3621,-3037,-8523,-3199,-9146,-12906,-461,-12907,-6426,-639,-644,-679,-726,-753,-767,-12908,-923,-927,-932,-940, +-967,-978,-980,-1054,-12909,-1077,-4706,-1110,-1344,-4788,-1534,-4789,-1588,-1623,-1654,-1753,-12910,-1788,-4916,-1863, +-1864,-2851, +-1942,-1944,-1948,-1951,-2111,-2127,-2134,-2177,-2200,-2202,-2231,-2234,-2314,-2334,-2387,-2410,-2411,-2466,-2468,-2476, +-2478,-5627,-12911,-2551], +[0,-3209,-7882,-12912,-3184,-7176], [1,3,7968], [0,7969,7970,7971,4], -[0,-1097,-892], -[0,-11,-962,-622,-173,-21,-1184,-1,-12,-25,-9,-18,-3,-4,-14,-984,-1117,-130,-146], -[0,-716,-292,-430,-339], +[0,-3341,-2145], +[0,-23,-3840,-33,-38,-40,-639,-932,-940,-967,-1344,-1534,-1654,-1942,-2127,-2129,-2133,-2231,-2234], +[0,-12913,-525,-4795,-3184], [1,3,7973], [0,7974,7975,7,11], -[0,-1184,-892], -[0,-1,-3,-14], +[0,-639,-2145], +[0,-932,-1654,-2127], [1,3,7977], [0,7978,7979,7980,5], -[0,-9673,-892], -[0,-2016,-1,-350,-3,-15,-7,-14,-9672,-3017], -[0,-14,-716,-45,-339,-370,-968,-9671,-1989], +[0,-12914,-2145], +[0,-6429,-932,-1001,-1654,-1788,-2125,-2127,-12915,-12916], +[0,-2127,-12913,-3214,-3184,-3209,-3485,-12917,-7416], [1,3,7982], [0,7983,7984,7,4], -[0,-824,-2642,-297,-128,-892], -[0,-11,-21,-178,-208,-1,-10,-9,-18,-2092,-3,-4,-5831,-14,-273,-1117,-341,-395,-130,-146,-2], +[0,-989,-4788,-1588,-2114,-2145], +[0,-23,-40,-43,-461,-932,-958,-1344,-1534,-4789,-1654,-1942,-4790,-2127,-2128,-2133,-2137,-2200,-2231,-2234,-2410], [1,3,7986], [0,7987,7988,7989,4], -[0,-297], -[0,-538,-1625,-9670,-329,-5,-47,-43,-14,-2], -[0,-716,-2,-3729,-9669], +[0,-1588], +[0,-22,-8355,-12918,-426,-3037,-3040,-652,-2127,-2410], +[0,-12913,-2410,-4160,-12919], [1,3,7991], [0,7992,7993,7,11], -[0,-892], -[0,-1,-10,-9,-18,-3,-4,-14,-984,-341,-146], +[0,-2145], +[0,-932,-958,-1344,-1534,-1654,-1942,-2127,-2129,-2137,-2234], [1,3,7995], [0,7996,7997,7998,5], -[0,-9668,-1245,-23,-297,-236,-9667,-9666,-9665], -[0,-11,-21,-178,-203,-80,-63,-2677,-22,-19,-477,-278,-1,-191,-10,-264,-40,-4565,-32,-9664,-3975,-199,-378,-4,-7,-14,-4371, --9663,-156,-2], -[0,-14,-716], +[0,-12920,-4787,-1548,-1588,-1666,-12921,-12922,-12923], +[0,-23,-40,-43,-3326,-350,-351,-3989,-427,-428,-479,-535,-932,-934,-958,-1022,-1077,-11780,-1168,-12924,-1222,-1412,-1413, +-1942,-2125,-2127,-12925,-12926,-2359,-2410], +[0,-2127,-12913], [1,3,8000], [0,8001,8002,252,6], -[0,-9662,-4370,-1875,-4369], -[0,-4869,-36,-3,-14,-273,-1299,-801], +[0,-12927,-12928,-771,-12929], +[0,-9889,-812,-1654,-2127,-2128,-2136,-2184], [1,3,8004], [0,8005,8006,252,6], -[0,-208,-4370,-824,-297,-4369,-892], -[0,-169,-268,-59,-8,-72,-3,-7,-14,-273,-341], +[0,-461,-12928,-989,-1588,-12929,-2145], +[0,-527,-558,-633,-1415,-1650,-1654,-2125,-2127,-2128,-2137], [1,3,8008], [0,8009,8010,253,5], -[0,-1098,-1571,-5830,-128,-892], -[0,-11,-21,-178,-1554,-1,-3,-14,-273,-463,-1117,-5829,-2], +[0,-3200,-644,-4793,-2114,-2145], +[0,-23,-40,-43,-922,-932,-1654,-2127,-2128,-2131,-2133,-4794,-2410], [1,3,8012], [0,8013,8014,253,9], -[0,-297,-892], -[0,-1,-10,-9,-18,-2092,-3,-4,-14,-984,-395,-130,-2], +[0,-1588,-2145], +[0,-932,-958,-1344,-1534,-4789,-1654,-1942,-2127,-2129,-2200,-2231,-2410], [1,3,8016], [0,8017,8018,8019,10], -[0,-728,-5395], -[0,-319,-5,-22,-19,-1,-12,-25,-8,-4,-7,-14,-57,-2], -[0,-14,-716,-2002,-130,-9661], +[0,-4785,-7149], +[0,-3267,-3037,-427,-428,-932,-940,-967,-1415,-1942,-2125,-2127,-2375,-2410], +[0,-2127,-12913,-6915,-2231,-12930], [1,3,8021], [0,8022,8023,8024,6], -[0,-538,-1321,-1114,-175], -[0,-11,-8,-4,-14], -[0,-14,-716,-175,-227], +[0,-22,-1429,-2182,-2334], +[0,-23,-1415,-1942,-2127], +[0,-2127,-12913,-2334,-1644], [1,3,8026], [0,8027,8028,8029,5], -[0,-128,-892], -[0,-1184,-1,-3,-7,-14,-984,-463,-44,-2], -[0,-716,-2,-430], +[0,-2114,-2145], +[0,-639,-932,-1654,-2125,-2127,-2129,-2131,-2387,-2410], +[0,-12913,-2410,-4795], [1,3,8031], [0,8032,8033,8034,4], -[0,-728,-1547,-40,-16,-44], -[0,-1239,-80,-63,-9660,-185,-9659,-29,-142,-5,-3739,-137,-22,-19,-135,-1,-4368,-8,-23,-1811,-7,-14,-9658,-301,-57,-2], -[0,-301,-1297,-716,-2,-430,-14,-158], +[0,-4785,-1046,-1077,-2177,-2387], +[0,-5121,-350,-351,-12931,-3048,-12932,-3136,-3044,-3037,-4067,-3199,-427,-428,-714,-932,-12933,-1415,-1548,-1793,-2125, +-2127,-12934,-2142,-2375,-2410], +[0,-2142,-2141,-12913,-2410,-4795,-2127,-1764], [1,3,8036], [0,8037,8038,8039,6], -[0,-538,-1321,-1114,-112], -[0,-11,-21,-86,-8,-4,-14], -[0,-14,-716,-938,-227], +[0,-22,-1429,-2182,-2416], +[0,-23,-40,-533,-1415,-1942,-2127], +[0,-2127,-12913,-9216,-1644], [1,3,8041], [0,8042,8043,8044,4], -[0,-149,-323,-130,-96], -[0,-80,-63,-204,-319,-1754,-9657,-9656,-9655,-9654,-9653,-4367,-5,-623,-413,-475,-2240,-2553,-5370,-5366,-2239,-2894,-237, --65,-1393,-38,-2502,-491,-4,-975,-14,-1246,-77,-44,-2,-104,-30], -[0,-716,-9652,-1080,-4366,-9651,-9650], +[0,-1805,-1864,-2231,-2550], +[0,-350,-351,-3266,-3267,-3269,-12935,-12936,-12937,-12938,-12939,-12940,-3037,-8523,-3041,-651,-798,-6258,-7259,-7268, +-799,-801,-825,-1771,-8065,-1889,-7033,-1940,-1942,-2923,-2127,-4753,-2162,-2387,-2410,-2466,-2469], +[0,-12913,-12941,-5150,-12942,-12943,-12944], [1,3,8046], [0,8047,8048,8049,5], -[0,-824], -[0,-329,-29,-634,-5,-9,-8,-18,-362,-4,-14,-463,-341,-1297,-395,-57,-196,-2,-3308], -[0,-14,-674], +[0,-989], +[0,-426,-3136,-4036,-3037,-1344,-1415,-1534,-1639,-1942,-2127,-2131,-2137,-2141,-2200,-2375,-2388,-2410,-8256], +[0,-2127,-5260], [1,3,8051], [0,0,8052,7,5], -[0,-59], +[0,-633], [1,3,8054], [0,8055,8056,254,10], -[0,-2162,-957,-1569,-1183,-325,-38,-146,-3891,-2361,-829,-689], -[0,-9649,-538,-11,-161,-879,-216,-1038,-3528,-306,-4365,-1195,-3809,-974,-391,-173,-21,-136,-140,-90,-577,-479,-4364, --4363,-4362,-4361,-3756,-1732,-715,-2275,-4360,-4359,-4358,-4357,-4356,-1240,-357,-252,-3656,-4355,-4354,-9648,-1625, --729,-3016,-3142,-2360,-1754,-4353,-735,-4352,-3650,-2624,-945,-162,-3015,-4351,-458,-872,-1739,-142,-4350,-5678,-4349, --623,-4348,-47,-87,-1658,-137,-4347,-3448,-1423,-3014,-3013,-454,-1966,-3552,-208,-9647,-1476,-836,-293,-1577,-3012, --1965,-834,-3496,-305,-299,-475,-4346,-2764,-58,-4345,-384,-2513,-3494,-1027,-924,-352,-230,-1875,-1774,-2495,-2503,-36, --2084,-3498,-4344,-422,-349,-709,-28,-1160,-614,-2871,-3495,-759,-1471,-4343,-1840,-1930,-914,-1321,-276,-813,-2432, --4342,-442,-377,-810,-646,-4341,-1943,-1511,-324,-3500,-1749,-1125,-697,-563,-323,-1671,-1504,-2498,-2195,-2497,-2758, --805,-1502,-901,-465,-287,-988,-2543,-1497,-692,-342,-462,-16,-802,-3011,-1962,-749,-130,-890,-1920,-2542,-3501,-2666, --2301,-2544,-138,-2124,-312,-4340,-175,-392,-885,-2541,-3497,-1101,-4339,-132,-3499,-1905,-3145,-17,-205,-258], +[0,-2694,-4007,-649,-658,-1119,-1889,-2234,-2279,-10098,-909,-2193], +[0,-12945,-22,-23,-32,-3194,-26,-35,-6062,-36,-12946,-37,-3368,-3077,-3204,-38,-40,-41,-42,-44,-46,-47,-12947,-12948, +-12949,-12950,-3872,-4020,-237,-269,-12951,-12952,-12953,-12954,-12955,-5038,-3983,-367,-5052,-12956,-12957,-12958,-8355, +-4776,-12959,-10100,-10101,-3269,-12960,-3732,-12961,-5085,-5033,-7080,-3198,-12962,-12963,-3036,-4035,-3850,-3044, +-12964,-5587,-12965, +-8523,-12966,-3040,-3052,-6633,-3199,-12967,-6832,-5673,-12968,-12969,-4204,-8559,-5900,-461,-12970,-2624,-502,-507,-512, +-12971,-8561,-553,-6386,-635,-640,-651,-12972,-2740,-719,-12973,-724,-6842,-6394,-736,-737,-743,-769,-771,-2745,-7189, +-7026,-812,-5034,-6381,-12974,-997,-1047,-1072,-1107,-1273,-1336,-1337,-6388,-1343,-2773,-12975,-1354,-10697,-1401,-1429, +-1460,-1465,-8562, +-12976,-1582,-1643,-1683,-1699,-12977,-9548,-1734,-1816,-6378,-3447,-1827,-1848,-1851,-1864,-6184,-1903,-7164,-1915, +-7165,-2791,-1927,-1929,-1930,-1934,-1958,-1977,-6387,-1999,-2041,-2082,-2163,-2177,-2178,-12978,-8578,-2194,-2231,-2233, +-11463,-6390,-6375,-4195,-12979,-6383,-2269,-3921,-2323,-12980,-2334,-2335,-2343,-6391,-6384,-2594,-12981,-2444,-6380, +-12982,-10052,-2501,-2531,-2564], [1,3,8058], [0,0,8059,8060,9], -[0,-2568,-1887,-2567,-2566,-5201,-2565,-2564,-2563,-2562,-1886,-268,-5202,-3328,-3337,-2907,-2253,-5206,-3334,-5203,-5204, --1556,-2460,-3327,-9646,-5205,-3,-1806], -[0,-5200,-481], +[0,-6068,-548,-6070,-6071,-8122,-6072,-6081,-6082,-6083,-550,-558,-8121,-7993,-7938,-628,-629,-8116,-7945,-8119,-8118, +-902,-8003,-8004,-12983,-8117,-1654,-1963], +[0,-8123,-5923], [1,3,8062], [0,8063,8064,8065,5], -[0,-2355,-164,-38,-599], -[0,-43,-3,-97], -[0,-9645,-24,-9644,-2806,-52,-225,-4727,-4728,-452,-507], +[0,-10415,-1863,-1889,-2271], +[0,-652,-1654,-2250], +[0,-12984,-775,-12985,-2149,-3161,-5553,-10733,-10732,-5845,-6408], [1,3,8067], [0,8068,8069,8070,8], -[0,-20,-264,-143], -[0,-32,-3,-82], -[0,-624,-1921,-2590,-32,-6366], +[0,-668,-1022,-1876], +[0,-1168,-1654,-2198], +[0,-7419,-11441,-5562,-1168,-1817], [1,3,8072], [0,0,8073,8074,5], -[0,-768,-39], -[0,-4988,-60,-1226,-2042,-1418,-2323,-670,-9643], +[0,-468,-2322], +[0,-9291,-510,-5924,-5865,-6235,-11727,-5839,-12986], [1,3,8076], [0,0,0,8077,4], -[0,-9642,-9641,-9640,-5140,-3010,-3009], +[0,-12987,-12988,-12989,-8408,-12990,-12991], [1,3,8079], [0,33,8080,8081,9], -[0,-9639,-2943,-252,-957,-109,-142,-69,-5,-1744,-269,-1270,-4338,-22,-19,-620,-13,-9638,-224,-135,-26,-298,-3358,-424,-1, --4842,-657,-40,-28,-5461,-9,-3573,-18,-23,-88,-3,-288,-65,-5934,-1671,-4,-172,-14,-9637,-9636,-341,-272,-395,-27,-186, --146,-1790,-33,-196,-1289,-9635,-9634,-9633,-2,-1785,-9632,-17], -[0,-3010,-3009,-9631,-9630,-4337,-9629,-3437,-4336,-846,-2505], +[0,-12992,-3,-367,-4007,-3035,-3044,-3621,-3037,-3714,-4372,-3625,-12993,-427,-428,-556,-664,-12994,-712,-714,-767,-796, +-7653,-930,-932,-10031,-1069,-1077,-1107,-6783,-1344,-5726,-1534,-1548,-1646,-1654,-1753,-1771,-4099,-6184,-1942,-1961, +-2127,-12995,-12996,-2137,-2195,-2200,-2210,-2211,-2234,-2314,-2379,-2388,-2389,-12997,-12998,-12999,-2410,-2449,-13000, +-2501], +[0,-12990,-12991,-13001,-13002,-13003,-13004,-6980,-13005,-6948,-6950], [1,3,8083], [0,0,31,8084,9], -[0,-299,-9628,-9627,-1376,-488,-667,-9626], +[0,-640,-13006,-13007,-9594,-2155,-7107,-13008], [1,3,8086], [0,8087,8088,8089,4], -[0,-213,-16,-96], -[0,-239,-766,-279,-1557,-1,-9625,-15,-39], -[0,-717,-4788,-158,-9624,-1218,-1376,-9623], +[0,-1365,-2177,-2550], +[0,-5834,-515,-516,-887,-932,-13009,-1788,-2322], +[0,-8403,-10483,-1764,-13010,-6818,-9594,-13011], [1,3,8091], [0,8092,8093,8094,4], -[0,-4335,-9622,-60,-9621,-20,-58,-9620,-384,-223,-352,-619,-1344,-9619,-351,-41,-920,-4334,-28,-9618,-9617,-4374,-9616, --9615,-9614,-9613,-9612,-88,-4333,-751,-563,-562,-490,-4332,-9611,-9610,-16,-1793,-396,-9609,-9608,-1484,-980,-9607], -[0,-110,-2246,-1,-421,-40,-9606,-3,-993,-644,-9605,-9604,-9603,-9602,-9601,-9600,-82,-1295,-125,-156], -[0,-1904,-9599,-41,-9598,-4331,-1740,-1087,-808,-800], +[0,-13012,-13013,-510,-13014,-668,-719,-13015,-724,-729,-743,-744,-746,-13016,-888,-1004,-1010,-13017,-1107,-13018,-13019, +-12902,-13020,-13021,-13022,-13023,-13024,-1646,-13025,-1840,-1851,-1878,-1965,-13026,-13027,-13028,-2177,-2185,-2187, +-13029,-13030,-2418,-2453,-13031], +[0,-589,-733,-932,-1003,-1077,-13032,-1654,-1783,-1888,-13033,-13034,-13035,-13036,-13037,-13038,-2198,-2229,-2293,-2359], +[0,-13039,-13040,-1004,-13041,-13042,-3817,-3816,-1818,-2228], [1,3,8096], [0,8097,8098,8099,5], -[0,-9597], -[0,-39,-768,-9596,-59,-315], -[0,-126,-849,-9595,-941,-509,-482], +[0,-13043], +[0,-2322,-468,-13044,-633,-725], +[0,-6656,-6557,-13045,-7723,-5874,-5559], [1,3,8101], [0,8102,8103,8104,8], -[0,-326,-424,-497,-1152,-4330,-38], -[0,-1,-3,-27,-9594], -[0,-31,-73,-5283,-941], +[0,-823,-930,-1333,-1396,-13046,-1889], +[0,-932,-1654,-2210,-13047], +[0,-3264,-3215,-7722,-7723], [1,3,8106], [0,8107,0,8108,5], -[0,-119,-529,-799], -[0,-225,-432,-77,-592,-24], +[0,-679,-1361,-2232], +[0,-5553,-3754,-2162,-3277,-775], [1,3,8110], [0,8111,8112,8113,5], -[0,-1943], -[0,-50,-11,-21,-49,-62,-48,-514,-309,-6518,-26,-425,-144,-151,-237,-829,-1,-12,-583,-10,-145,-181,-115,-25,-150,-277, --6267,-55,-9,-8,-18,-9593,-262,-1315,-9592,-65,-4,-77,-1457,-16,-134,-154,-2,-83,-17,-92,-170], -[0,-77,-3232,-17,-779], +[0,-9548], +[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-621,-767,-774,-778,-824,-825,-909,-932,-940,-6929,-958,-959,-960,-965,-967, +-978,-1041,-2629,-1110,-1344,-1415,-1534,-13048,-1623,-1743,-13049,-1771,-1942,-2162,-3572,-2177,-2251,-2275,-2410,-2411, +-2501,-2503,-2505], +[0,-2162,-9264,-2501,-5932], [0,44,15,16,9], [1,3,8116], [0,0,8117,7,8], -[0,-4,-85], +[0,-1942,-2319], [1,3,8119], [0,8120,8121,8122,9], -[0,-9591], -[0,-9590,-43,-9589,-1,-166], -[0,-318,-42], +[0,-13050], +[0,-13051,-652,-13052,-932,-1446], +[0,-4058,-856], [1,3,8124], [0,8125,8126,48,4], -[0,-193,-837,-2607,-633], -[0,-151,-8,-9,-1,-237,-55,-17,-4,-50,-48,-86,-2,-11,-5,-18,-65,-49,-115,-514,-134,-21,-145,-181,-10,-583,-150,-12,-25, --309,-62], +[0,-469,-470,-5329,-4049], +[0,-824,-1415,-1344,-932,-825,-1110,-2501,-1942,-21,-190,-533,-2410,-23,-3037,-1534,-1771,-86,-965,-3560,-2251,-40,-959, +-960,-958,-6929,-978,-940,-967,-3748,-3307], [1,3,8128], [0,8129,8130,8131,5], -[0,-6,-35,-241], -[0,-2,-5,-47,-87,-160,-38,-557,-1,-3103], -[0,-9588,-9587,-709,-1685,-659,-4329,-1685,-61,-1963,-4328,-358,-4327,-4326,-3617,-4325,-3089,-1080], +[0,-2006,-2019,-2634], +[0,-2410,-3037,-3040,-3052,-518,-1889,-2318,-932,-10813], +[0,-13053,-13054,-1072,-5375,-770,-13055,-5375,-3634,-8576,-13056,-3551,-13057,-13058,-5376,-13059,-11152,-5150], [1,3,8133], [0,8134,0,8135,5], -[0,-6479,-906,-2030], -[0,-9586,-9585,-9584,-6321], +[0,-899,-1723,-6127], +[0,-13060,-13061,-13062,-2171], [1,3,8137], [0,0,0,8138,4], -[0,-9583,-850,-659], +[0,-13063,-6555,-770], [1,3,8140], [0,8141,8142,8143,8], -[0,-9582,-3946,-156,-205], -[0,-48,-3544,-1,-12,-265,-115,-2489,-25,-41,-55,-3968,-166,-3,-995,-1514,-4,-1113,-27,-461], -[0,-544,-933,-61,-840,-1367], +[0,-13064,-1468,-2359,-2531], +[0,-190,-5980,-932,-940,-964,-965,-7353,-967,-1004,-1110,-1281,-1446,-1654,-1656,-1685,-1942,-2186,-2210,-2297], +[0,-4864,-11467,-3634,-11468,-12350], [1,3,8145], [0,8146,8147,8148,5], -[0,-845,-9581,-737,-582,-1058,-9580,-403,-36,-9579,-118,-533,-9578,-498,-9577,-3207,-818,-9576,-468,-228,-2020,-362,-9575, --4781,-1453,-641,-16,-6033,-96], -[0,-5,-6035,-51,-43,-1877,-298,-4004,-9574,-40,-402,-101,-1140,-5165,-9573,-198,-343,-3008,-4,-459,-27,-9572,-372,-1789], -[0,-9571,-544,-780,-358,-451,-717,-3235,-16,-663], +[0,-7040,-13065,-3472,-7041,-7042,-13066,-755,-812,-13067,-999,-1040,-13068,-1100,-13069,-9464,-1315,-13070,-1549,-1610, +-6294,-1639,-13071,-10507,-3609,-2115,-2177,-3642,-2550], +[0,-3037,-3639,-519,-652,-686,-796,-851,-13072,-1077,-1116,-1442,-1547,-8314,-13073,-1722,-1772,-13074,-1942,-2910,-2210, +-13075,-2331,-2341], +[0,-13076,-4864,-5887,-3551,-5897,-8403,-9244,-2177,-9318], [1,3,8150], [0,8151,8152,7,4], -[0,-90,-9570,-9569,-790,-9568,-304,-9567,-23,-468,-121,-439,-2756,-1492], -[0,-9566,-50,-11,-216,-1196,-1038,-1195,-173,-21,-136,-178,-9565,-3719,-9564,-9563,-1439,-47,-22,-19,-1741,-9562,-94,-98, --9561,-355,-1888,-9560,-834,-4460,-9559,-13,-9558,-832,-26,-502,-36,-1562,-1025,-1629,-445,-1,-266,-12,-2743,-10,-148, --265,-64,-190,-2232,-348,-32,-2227,-363,-9,-5543,-78,-139,-4391,-612,-189,-418,-526, --1142,-18,-3,-4,-440,-157,-693,-6,-9557,-9556,-3913,-35,-2191,-2814,-897,-559,-9555,-9554,-9553,-286,-9552,-7,-9551, --9550,-5289,-27,-186,-321,-1110,-9549,-392,-9548,-71,-2,-70,-17,-520,-92,-1781], +[0,-44,-13077,-13078,-2997,-13079,-703,-13080,-1548,-1549,-1967,-2029,-2804,-2192], +[0,-13081,-21,-23,-26,-34,-35,-37,-38,-40,-41,-43,-13082,-4227,-13083,-13084,-4773,-3040,-427,-428,-3807,-13085,-528,-534, +-13086,-539,-540,-13087,-553,-12468,-13088,-664,-13089,-747,-767,-795,-812,-838,-855,-8245,-915,-932,-933,-940,-3071, +-958,-962,-964,-969,-970,-1021,-1103,-1168,-1228,-1266,-1344,-6273,-1471,-1475,-12832,-1476,-1482,-1483,-1492, +-1526,-1534,-1654,-1942,-1955,-1978,-2000,-2006,-13090,-13091,-2018,-2019,-2024,-2027,-2043,-2044,-13092,-13093,-13094, +-2052,-13095,-2125,-13096,-13097,-7708,-2210,-2211,-2214,-2253,-13098,-2335,-13099,-2347,-2410,-2460,-2501,-2502,-2503, +-2504], [1,3,8154], [0,8155,8156,8157,4], -[0,-1,-1861,-84,-4324,-10,-115,-67,-64,-4323], -[0,-1451,-494,-72,-7,-1795,-39], -[0,-2451,-9547,-280,-581,-354,-2450,-2449,-2448,-1048,-1052,-1,-1389,-613,-117,-217,-2447,-1049,-9546,-631,-97,-2446,-225, --2445,-2444,-1390], +[0,-932,-942,-943,-13100,-958,-965,-968,-969,-13101], +[0,-3781,-1631,-1650,-2125,-2151,-2322], +[0,-8180,-13102,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8175,-1445,-1452,-7148,-8184,-8169,-13103,-5493, +-2250,-8185,-5553,-8186,-8187,-8174], [1,3,8159], [0,0,8160,7,5], -[0,-731,-730,-110,-85], +[0,-4298,-4300,-589,-2319], [1,3,8162], [0,8163,191,8164,4], -[0,-36,-1339,-501,-922,-709,-652,-344,-567,-992,-1121,-1294], -[0,-856,-126,-209], +[0,-812,-907,-929,-990,-1072,-1335,-1641,-1681,-1800,-1997,-2255], +[0,-5142,-6656,-3844], [1,3,8166], [0,8167,8168,8169,5], -[0,-9545,-5972,-9544,-3007,-9543,-9542,-9541,-9540,-6400,-2852,-88,-4967,-9539,-9538,-9537,-464,-9536,-9535,-9534], -[0,-3755,-3754,-9533,-5,-60,-9532,-56,-9531,-250,-9530,-3257,-4,-9529,-9528,-9527,-9526,-9525,-2], -[0,-1925,-1234,-1601,-9524,-2024,-9523,-4653,-5552,-9522,-52,-9521,-9520,-9519,-1094,-4710], +[0,-13104,-3895,-13105,-13106,-13107,-13108,-13109,-13110,-1555,-1572,-1646,-9375,-13111,-13112,-13113,-1983,-13114, +-13115,-13116], +[0,-3890,-3893,-13117,-3037,-510,-13118,-756,-13119,-1276,-13120,-8936,-1942,-13121,-13122,-13123,-13124,-13125,-2410], +[0,-11151,-5196,-11148,-13126,-6209,-13127,-11150,-6210,-13128,-3161,-13129,-13130,-13131,-3481,-10809], [1,3,8171], [0,0,8172,8173,11], -[0,-9518,-60,-110,-1,-1517,-85], -[0,-6320,-3122,-9517,-4622], +[0,-13132,-510,-589,-932,-1660,-2319], +[0,-2180,-10432,-13133,-11385], [1,3,8175], [0,8176,8177,8178,5], -[0,-9516,-123,-36,-9515,-23,-236,-16,-437,-1155,-162,-9514,-9513,-907,-3521,-9512,-3125], -[0,-605,-15,-13,-208,-658,-6226,-9,-3,-564,-27,-1,-4322,-1818,-7,-238,-89,-4321,-9511,-797,-2354,-2353,-9510,-660,-26, --229,-9509,-2198,-9508,-3021,-1851,-186,-2,-109,-5,-823,-18,-69,-269,-2321,-713,-142,-9507,-9506,-9505,-49,-244,-9504, --525,-120,-3400,-146,-181,-265,-9503,-19,-9502,-937,-22,-9501,-9500], -[0,-566,-4321,-1267,-1066,-842,-605,-1819,-9499,-4322,-1932,-2353,-2347,-9498,-808,-335,-9497,-386,-718], +[0,-13134,-2446,-812,-13135,-1548,-1666,-2177,-2451,-1369,-3198,-13136,-13137,-1667,-6109,-13138,-10416], +[0,-1857,-1788,-664,-461,-826,-2763,-1344,-1654,-1826,-2210,-932,-13139,-1692,-2125,-674,-928,-13140,-13141,-2245,-10417, +-10418,-13142,-749,-767,-1026,-13143,-1828,-13144,-12846,-1078,-2211,-2410,-3035,-3037,-1002,-1534,-3621,-4372,-11747, +-305,-3044,-13145,-13146,-13147,-86,-665,-13148,-1609,-2174,-7382,-2234,-960,-964,-13149,-428,-13150,-9404,-427,-13151, +-13152], +[0,-1691,-13140,-3742,-6321,-10425,-1857,-1682,-13153,-13139,-10424,-10418,-10704,-13154,-1818,-3967,-13155,-7685,-7773], [1,3,8180], [0,0,8181,8182,4], -[0,-110], -[0,-851,-2311,-45,-270,-106], +[0,-589], +[0,-6233,-12343,-3214,-3756,-4055], [1,3,8184], [0,8185,37,8186,6], -[0,-36,-9496,-9495,-9494,-9493,-9492,-9491,-9490,-9489,-9488,-9487,-9486,-9485,-9484], -[0,-9483,-9482,-9481,-9480,-4320,-3078,-6415,-9479,-9478,-9477,-4831,-9476,-9475,-2359,-2804,-9474,-9473,-245,-431,-9472], +[0,-812,-13156,-13157,-13158,-13159,-13160,-13161,-13162,-13163,-13164,-13165,-13166,-13167,-13168], +[0,-13169,-13170,-13171,-13172,-13173,-11573,-1434,-13174,-13175,-13176,-10225,-13177,-13178,-10227,-2183,-13179,-13180, +-5827,-3975,-13181], [1,3,8188], [0,8189,8190,8191,4], -[0,-193,-836,-1348,-20,-4014,-384,-9471,-9470,-1225,-2521,-4319], -[0,-402,-153,-171,-9,-1,-30,-4,-2,-18,-366,-735,-9469,-103,-1903], -[0,-2175,-801,-1925,-419], +[0,-469,-502,-623,-668,-700,-724,-13182,-13183,-5977,-6793,-13184], +[0,-1116,-2392,-2391,-1344,-932,-2469,-1942,-2410,-1534,-50,-3732,-13185,-3664,-13186], +[0,-2455,-2184,-11151,-1339], [1,3,8193], [0,8194,8195,8196,6], -[0,-922,-709,-567,-751,-488], -[0,-1,-84,-10,-214,-76,-67,-131,-3,-15,-125,-9468], -[0,-41,-3006,-332], +[0,-990,-1072,-1681,-1840,-2155], +[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293,-13187], +[0,-1004,-13188,-5401], [1,3,8198], [0,8199,8200,7,11], -[0,-1191,-1403,-36,-501,-652,-344,-751], -[0,-838,-1,-214,-3,-15,-125], +[0,-459,-7334,-812,-929,-1335,-1641,-1840], +[0,-465,-932,-963,-1654,-1788,-2293], [1,3,8202], [0,8203,81,7,5], -[0,-1339,-501,-751,-802], +[0,-907,-929,-1840,-2178], [1,3,8205], [0,8206,8207,8208,4], -[0,-9467,-261,-93], -[0,-49,-62,-9466,-9465,-1033,-13,-244,-503,-1,-12,-40,-9,-18,-263,-1675,-3,-188,-15,-4,-180,-1902,-27,-186,-312], -[0,-1902,-9464,-2045,-1227,-9463,-2037,-9462,-1070,-878,-53,-9461], +[0,-13189,-1640,-1645], +[0,-86,-3307,-13190,-13191,-521,-664,-665,-720,-932,-940,-1077,-1344,-1534,-1573,-5969,-1654,-1729,-1788,-1942,-1972, +-13192,-2210,-2211,-2323], +[0,-13192,-13193,-5819,-5817,-13194,-5937,-13195,-5940,-3258,-3100,-13196], [1,3,8210], [0,8211,8212,8213,5], -[0,-9460,-4318,-9459,-9458,-1268,-4317,-4316,-4315,-4642,-4314,-5626,-4313,-4312,-9457,-2336,-476,-5842,-9456,-3562,-9455, --149,-3415,-205], -[0,-9454,-2668,-9453,-29,-5,-680,-454,-22,-19,-4312,-3562,-89,-4311,-1,-12,-2442,-251,-10,-25,-9,-8,-9452,-9451,-9450, --9449,-650,-3930,-4,-5625,-134,-57,-33,-371,-2,-123], -[0,-3835,-1227,-61,-8,-1902,-1729,-30,-2045,-5603,-3547,-3546,-9448], +[0,-13197,-13198,-13199,-13200,-3698,-13201,-13202,-13203,-11209,-13204,-5810,-13205,-13206,-13207,-11197,-620,-4735, +-13208,-5813,-13209,-1805,-7223,-2531], +[0,-13210,-4171,-13211,-3136,-3037,-3738,-4204,-427,-428,-13206,-5813,-928,-13212,-932,-940,-8246,-948,-958,-967,-1344, +-1415,-13213,-13214,-13215,-13216,-1456,-1766,-1942,-5815,-2251,-2375,-2379,-2892,-2410,-2446], +[0,-3112,-5817,-3634,-1415,-13192,-4216,-2469,-5819,-5941,-5943,-5951,-13217], [1,3,8215], [0,8216,0,7,4], -[0,-4693,-2028], +[0,-10906,-6130], [1,3,8218], [0,0,8219,8220,11], -[0,-94,-268,-447,-13,-1,-420,-9447,-9,-18,-3,-4], -[0,-1492,-5117,-1664,-4741,-1402,-9446], +[0,-528,-558,-566,-664,-932,-1059,-13218,-1344,-1534,-1654,-1942], +[0,-2192,-8495,-6439,-10661,-7378,-13219], [1,3,8222], [0,8223,8224,8225,4], -[0,-16,-9445,-1960], -[0,-5077,-81,-9444,-1290,-610,-9443,-1165,-9442,-320,-906,-9441,-815,-9440,-9439,-9438,-9437,-9436], -[0,-1042,-579,-2610,-2609,-4884,-1208,-256,-5082,-9435,-281,-1933,-9434,-2501,-4730,-9433,-9432], +[0,-2177,-13220,-8612], +[0,-8771,-2384,-13221,-2324,-1733,-13222,-1018,-13223,-2581,-1723,-13224,-1448,-13225,-13226,-13227,-13228,-13229], +[0,-9235,-7715,-5315,-5316,-9807,-8642,-3839,-8707,-13230,-6527,-10095,-13231,-7066,-10711,-13232,-13233], [1,3,8227], [0,0,8228,8229,5], -[0,-239,-279,-510,-1,-1166,-213,-1322,-275,-15,-187,-39], -[0,-308,-165,-4310,-254], +[0,-5834,-516,-5835,-932,-993,-1365,-1408,-1777,-1788,-2156,-2322], +[0,-3957,-1838,-13234,-5550], [1,3,8231], [0,8232,8233,8234,4], -[0,-118,-229], -[0,-51,-20,-474,-1,-191,-10,-101,-15,-4309,-4308,-395,-9431], -[0,-272,-1060,-1918,-254,-9430,-1379,-2215,-2308], +[0,-999,-1026], +[0,-519,-668,-710,-932,-934,-958,-1442,-1788,-13235,-13236,-2200,-13237], +[0,-2195,-6836,-11642,-5550,-13238,-9218,-1410,-12397], [1,3,8236], [0,8237,8238,8239,8], -[0,-646], -[0,-13,-54,-3,-2237,-167,-4737,-1487,-3981,-2300,-4997,-1012,-1010,-345,-656,-177,-347,-673], -[0,-9429,-2299,-2491,-123,-9428,-9427,-6156,-6319,-9426], +[0,-1699], +[0,-664,-1127,-1654,-913,-1132,-10682,-2351,-1158,-13239,-9256,-1130,-1156,-1542,-1136,-1144,-1148,-5295], +[0,-13240,-13241,-7231,-2446,-13242,-13243,-3005,-2197,-13244], [1,3,8241], [0,8242,8243,8244,4], -[0,-9425,-9424,-9423,-9422,-9421], -[0,-116,-1,-9420,-3,-4,-14,-341,-196,-2], -[0,-75,-591,-293,-82], +[0,-13245,-13246,-13247,-13248,-13249], +[0,-615,-932,-13250,-1654,-1942,-2127,-2137,-2388,-2410], +[0,-4004,-3440,-507,-2198], [1,3,8246], [0,75,8247,8248,4], -[0,-54,-243,-656,-177,-347,-1163,-1540,-9419,-531,-1539,-79,-345,-1506,-9418,-16,-9417,-146], -[0,-100,-1413], +[0,-1127,-1134,-1136,-1144,-1148,-1150,-1151,-13251,-1152,-1163,-1449,-1542,-1856,-13252,-2177,-13253,-2234], +[0,-1599,-6473], [1,3,8250], [0,8251,8252,8253,8], -[0,-88,-272], -[0,-182,-268,-447,-1,-191,-2442,-10,-101,-3,-15,-7,-4309,-9416,-4308,-82], -[0,-272,-254,-1918,-1060,-5449,-1045,-37,-2119], +[0,-1646,-2195], +[0,-526,-558,-566,-932,-934,-8246,-958,-1442,-1654,-1788,-2125,-13235,-13254,-13236,-2198], +[0,-2195,-5550,-11642,-6836,-6837,-8421,-687,-3977], [1,3,8255], [0,0,8256,8257,9], -[0,-945,-5,-4876,-2577,-43,-4,-85,-33,-124,-2], -[0,-2596,-921], +[0,-7080,-3037,-9867,-5866,-652,-1942,-2319,-2379,-2402,-2410], +[0,-5395,-1000], [1,3,8259], [0,8260,8261,8262,5], -[0,-6528], -[0,-1160,-523,-14,-984,-112], -[0,-485,-9415,-3106,-327], +[0,-474], +[0,-1273,-1948,-2127,-2129,-2416], +[0,-5176,-13255,-10724,-659], [1,3,8264], [0,8265,8266,8267,8], -[0,-9414,-9413,-36], -[0,-9412,-9411,-162,-29,-5,-89,-4576,-8,-33,-2], -[0,-387,-9410,-4489], +[0,-13256,-13257,-812], +[0,-13258,-13259,-3198,-3136,-3037,-928,-11714,-1415,-2379,-2410], +[0,-5889,-13260,-12263], [1,3,8269], [0,0,8270,8271,5], -[0,-81,-8,-9,-1306,-1,-7,-14,-4,-26,-86,-11,-29,-289,-4307,-441,-90,-366,-21,-1859,-9409,-161,-203,-226,-232,-4306,-80, --63,-1627,-9408,-1889,-1195], -[0,-5770,-2519,-2318,-1041,-52,-6,-192,-74,-434,-2024,-53], +[0,-2384,-1415,-1344,-1868,-932,-2125,-2127,-1942,-767,-533,-23,-3136,-726,-13261,-1952,-44,-50,-40,-953,-13262,-32,-3326, +-2140,-3561,-13263,-350,-351,-8280,-13264,-536,-37], +[0,-5070,-6814,-11889,-9668,-3161,-2006,-475,-2476,-3122,-6209,-3100], [1,3,8273], [0,8274,8275,8276,4], -[0,-3684,-662,-9407,-207,-461], -[0,-11,-5807,-5806,-5805,-3683,-9406,-4614,-9405,-355,-36,-1342,-89,-9404,-3098,-1328,-18,-3,-15,-4,-157,-7,-16,-272], -[0,-27,-75,-61,-388,-1384,-1729,-1619,-588,-9403,-307,-743,-293], +[0,-4884,-357,-13265,-834,-2297], +[0,-23,-4885,-4886,-4887,-4888,-13266,-11471,-13267,-539,-812,-829,-928,-13268,-10877,-1099,-1534,-1654,-1788,-1942,-1978, +-2125,-2177,-2195], +[0,-2210,-4004,-3634,-5119,-8611,-4216,-8959,-4123,-13269,-4215,-2533,-507], [1,3,8278], [0,0,8279,8280,9], -[0,-48,-43,-13,-1,-3,-4,-27], -[0,-13,-2532,-91,-4305,-9402,-27,-61,-5375,-5374,-1405], +[0,-190,-652,-664,-932,-1654,-1942,-2210], +[0,-664,-6537,-4865,-13270,-13271,-2210,-3634,-7244,-7245,-7243], [1,3,8282], [0,8283,8284,8285,5], -[0,-5927,-1092,-60,-1347,-9401,-9400,-72,-16,-1652,-41,-101,-113,-1862,-58,-93,-1146,-250,-168,-384,-652,-379,-9399,-9398, --197,-9397], -[0,-3,-116,-59,-9396], -[0,-2036,-451,-2472,-1915,-370,-604,-209], +[0,-4166,-3544,-510,-648,-13272,-13273,-1650,-2177,-6920,-1004,-1442,-2105,-927,-719,-1645,-1464,-1276,-617,-724,-1335, +-1304,-13274,-13275,-2062,-13276], +[0,-1654,-615,-633,-13277], +[0,-6011,-5897,-7737,-11722,-3209,-1971,-3844], [1,3,8287], [0,8288,0,7,6], -[0,-9395,-2083,-4304], +[0,-13278,-5036,-13279], [1,3,8290], [0,8291,0,8292,11], -[0,-9394,-2212,-9393,-164,-311], -[0,-321,-37,-381,-542,-9392,-9391], +[0,-13280,-1532,-13281,-1863,-2654], +[0,-2214,-687,-985,-6187,-13282,-13283], [1,3,8294], [0,89,56,8295,5], -[0,-9390,-9389,-9388,-46,-53,-2477], +[0,-13284,-13285,-13286,-3445,-3100,-7566], [1,3,8297], [0,8298,8299,8300,10], -[0,-9387,-9386], -[0,-17,-211,-2,-92,-9385,-520], -[0,-46,-9384,-99,-1902,-386], +[0,-13287,-13288], +[0,-2501,-2376,-2410,-2503,-13289,-2502], +[0,-3445,-13290,-3690,-13192,-7685], [1,3,8302], [0,0,14,8303,5], -[0,-248,-9383,-285,-4591,-722,-452], +[0,-1847,-13291,-2218,-11635,-7084,-5845], [1,3,8305], [0,8306,8307,8308,4], -[0,-767,-9382], -[0,-51,-20,-9381,-138,-34], -[0,-2643,-163,-240,-548,-224,-671,-135,-174,-194,-37,-431,-482,-584,-726,-1232,-254,-638,-263,-367,-294,-183], +[0,-482,-13292], +[0,-519,-668,-13293,-2269,-2541], +[0,-4783,-2265,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958, +-5554], [1,3,8310], [0,8311,86,8312,4], -[0,-4968,-4015,-3589,-9380,-9379,-3130,-9378,-752,-1506,-9377,-899,-361,-9376,-597,-96], -[0,-9375,-685,-3208,-158,-757], +[0,-9371,-677,-5500,-13294,-13295,-10347,-13296,-1705,-1856,-13297,-1951,-1959,-13298,-2330,-2550], +[0,-13299,-3015,-9460,-1764,-1380], [1,3,8314], [0,0,8315,8316,5], -[0,-3087,-296,-295,-877,-43,-3,-120,-97], -[0,-747,-2797,-163,-1786,-3225,-455,-195], +[0,-11254,-3470,-3471,-3311,-652,-1654,-2174,-2250], +[0,-2223,-2222,-2265,-2443,-9312,-4112,-2435], [1,3,8318], [0,0,8319,8320,4], -[0,-56,-9374,-3,-15], -[0,-747,-2797,-195,-9373], +[0,-756,-13300,-1654,-1788], +[0,-2223,-2222,-2435,-13301], [0,44,15,16,11], [1,3,8323], [0,8324,0,8325,4], -[0,-20,-528,-88,-197,-9372,-138,-885], -[0,-637,-9371,-9370,-97,-9369,-4819,-9368,-9367,-9366,-9365], +[0,-668,-1370,-1646,-2062,-13302,-2269,-2343], +[0,-3240,-13303,-13304,-2250,-13305,-10317,-13306,-13307,-13308,-13309], [1,3,8327], [0,8328,8329,8330,5], -[0,-201,-9364,-36,-1543,-1014,-498,-23,-1116,-1293,-2529,-9363], -[0,-48,-162,-3771,-142,-5,-4303,-3470,-168,-135,-207,-1025,-1558,-1,-41,-1016,-28,-3,-15,-4,-197,-16,-396,-82,-27,-146, --3127,-124,-2,-83], -[0,-3898], +[0,-523,-13310,-812,-1063,-1070,-1100,-1548,-2165,-2270,-6587,-13311], +[0,-190,-3198,-3734,-3044,-3037,-13312,-6594,-617,-714,-834,-855,-883,-932,-1004,-1045,-1107,-1654,-1788,-1942,-2062, +-2177,-2187,-2198,-2210,-2234,-10402,-2402,-2410,-2411], +[0,-2227], [1,3,8332], [0,8333,0,8334,4], -[0,-1191,-9362,-383,-36,-5705,-9361,-3720], -[0,-771,-52,-881,-2408,-422,-3247,-9360], +[0,-459,-13313,-754,-812,-5454,-13314,-4208], +[0,-8841,-3161,-2512,-9043,-997,-9005,-13315], [1,3,8336], [0,8337,0,8338,4], -[0,-9359,-36,-5704,-3720], -[0,-771,-52,-881,-2408,-422,-337], +[0,-13316,-812,-5455,-4208], +[0,-8841,-3161,-2512,-9043,-997,-3323], [1,3,8340], [0,8341,8342,8343,4], -[0,-36,-4302,-3110,-528,-3879], -[0,-59,-2237,-1,-421,-32,-820,-314,-1007,-313,-653,-78,-910,-1527,-139,-189,-3,-180,-1304,-396,-4301,-1784,-883], -[0,-2023,-881], +[0,-812,-13317,-10622,-1370,-2438], +[0,-633,-913,-932,-1003,-1168,-1208,-1243,-1244,-1252,-1262,-1471,-1472,-1473,-1475,-1482,-1654,-1972,-1976,-2187,-13318, +-2461,-2463], +[0,-6224,-2512], [1,3,8345], [0,0,8346,7,8], -[0,-43,-1025,-1,-4,-12], +[0,-652,-855,-932,-1942,-940], [1,3,8348], [0,0,8349,7,6], -[0,-2300,-1025,-17], +[0,-13239,-855,-2501], [1,3,8351], [0,8352,8353,48,6], -[0,-470,-799], -[0,-50,-11,-21,-49,-62,-944,-86,-26,-425,-151,-237,-1,-12,-10,-9,-8,-18,-262,-65,-4,-134,-17], +[0,-1351,-2232], +[0,-21,-23,-40,-86,-3307,-7166,-533,-767,-774,-824,-825,-932,-940,-958,-1344,-1415,-1534,-1623,-1771,-1942,-2251,-2501], [1,3,8355], [0,8356,8357,7,4], -[0,-2514,-130], -[0,-59,-316,-419,-3,-17], +[0,-6829,-2231], +[0,-633,-711,-1339,-1654,-2501], [1,3,8359], [0,0,92,8360,5], -[0,-255,-31,-3392,-4300,-2493,-165,-429], +[0,-5092,-3264,-7451,-13319,-7205,-1838,-6231], [1,3,8362], [0,8363,8364,8365,8], -[0,-9358,-9357,-4299,-3237,-4298,-238,-316,-58,-229,-325,-380,-4297,-54,-243,-656,-616,-532,-2230,-347,-302,-2881,-250, --379,-497,-1001,-101,-4296,-276,-23,-228,-9356,-38,-77,-6303,-156], -[0,-50,-11,-21,-178,-5850,-9355,-13,-244,-2708,-1,-265,-76,-131,-3,-288,-4,-1494,-7,-27,-186], -[0,-380,-390,-42,-9354,-9353,-99,-862,-114], +[0,-13320,-13321,-13322,-9193,-13323,-674,-711,-719,-1026,-1119,-1122,-13324,-1127,-1134,-1136,-1137,-1138,-1140,-1148, +-1149,-1160,-1276,-1304,-1333,-1440,-1442,-13325,-1460,-1548,-1610,-13326,-1889,-2162,-2312,-2359], +[0,-21,-23,-40,-43,-4710,-13327,-664,-665,-3629,-932,-964,-966,-974,-1654,-1753,-1942,-2123,-2125,-2210,-2211], +[0,-1122,-3671,-856,-13328,-13329,-3690,-4258,-3262], [1,3,8367], [0,8368,8369,7,8], -[0,-460], -[0,-423,-2438,-2437,-3290,-9352], +[0,-2346], +[0,-994,-8392,-8393,-8394,-13330], [1,3,8371], [0,0,8372,7,5], -[0,-9351,-9350,-3053,-15,-235,-97,-39], +[0,-13331,-13332,-11961,-1788,-1939,-2250,-2322], [0,0,83,7,5], [1,3,8375], [0,0,8376,7,4], -[0,-32,-3,-1,-110,-364,-530,-820,-314,-653,-9349,-313], +[0,-1168,-1654,-932,-589,-1231,-1197,-1208,-1243,-1262,-13333,-1252], [1,3,8378], [0,8379,8380,8381,5], -[0,-116,-224,-135,-2243,-40,-250,-4295,-679,-23,-6375,-5297,-9348,-4963,-71,-70,-554,-9347,-9346], -[0,-13,-56,-66,-3,-611,-9345,-9344], -[0,-9343,-1614,-9342,-24,-432,-222,-77,-6312,-9341,-624], +[0,-615,-712,-714,-783,-1077,-1276,-13334,-3999,-1548,-1757,-7667,-13335,-9395,-2347,-2460,-2462,-13336,-13337], +[0,-664,-756,-1405,-1654,-1657,-13338,-13339], +[0,-13340,-9278,-13341,-775,-3754,-1521,-2162,-2244,-13342,-7419], [1,3,8383], [0,8384,8385,8386,4], -[0,-711,-906,-3477,-312], -[0,-1,-3,-4375], -[0,-1932,-1267,-797,-386], +[0,-596,-1723,-6521,-2323], +[0,-932,-1654,-12894], +[0,-10424,-3742,-2245,-7685], [1,3,8388], [0,8389,8390,8391,5], -[0,-9340,-9339], -[0,-1,-5509], -[0,-2417,-2793,-4948,-5284,-254,-1045,-2415,-337], +[0,-13343,-13344], +[0,-932,-6461], +[0,-8905,-2246,-9456,-7721,-5550,-8421,-8908,-3323], [1,3,8393], [0,8394,8395,8396,10], -[0,-1617], -[0,-731,-730,-110], -[0,-632,-111,-667,-9338,-3096,-4684,-9337,-9336,-9335,-9334,-9333,-31], +[0,-9084], +[0,-4298,-4300,-589], +[0,-5387,-3578,-7107,-13345,-10908,-10930,-13346,-13347,-13348,-13349,-13350,-3264], [1,3,8398], [0,8399,91,8400,9], -[0,-259], -[0,-6311,-106,-259,-4872,-4803,-718,-2029,-3005,-9332,-3777,-386,-42,-46,-1216,-376,-1545,-566,-797,-506,-9331,-842,-106, --774,-9330], +[0,-2548], +[0,-2248,-4055,-2548,-9886,-10410,-7773,-6129,-13351,-13352,-3689,-7685,-856,-3445,-6857,-1671,-1050,-1691,-2245,-6597, +-13353,-10425,-4055,-6917,-13354], [1,3,8402], [0,0,8403,7,11], -[0,-21,-86,-8,-9329], +[0,-40,-533,-1415,-13355], [1,3,8405], [0,8406,8407,8408,6], -[0,-1,-84,-4324,-10,-115,-67,-64,-4323,-9328], -[0,-230,-1535,-88,-4294,-1795,-5699,-39], -[0,-2451,-280,-581,-354,-2450,-2449,-2448,-1048,-1052,-1,-1389,-613,-117,-217,-2447,-1049,-631,-97,-2446,-225,-2445,-2444, --1390], +[0,-932,-943,-13100,-958,-965,-968,-969,-13101,-13356], +[0,-769,-1274,-1646,-13357,-2151,-5470,-2322], +[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2250,-8185,-5553, +-8186,-8187,-8174], [1,3,8410], [0,8411,8412,8413,5], -[0,-20,-575,-9327,-1345,-3118,-1341,-2422,-9326,-533,-349,-4473,-16,-9325,-96], -[0,-13,-1,-84,-10,-76,-67,-3,-568,-1515,-15,-272,-4293], -[0,-575,-9324,-780,-2039,-5600,-663,-192,-97], +[0,-668,-739,-13358,-741,-10524,-831,-8888,-13359,-1040,-1047,-12340,-2177,-13360,-2550], +[0,-664,-932,-943,-958,-966,-968,-1654,-1658,-1663,-1788,-2195,-13361], +[0,-739,-13362,-5887,-5886,-5962,-9318,-475,-2250], [1,3,8415], [0,8416,8417,8418,4], -[0,-836,-116,-9323,-36,-118,-9322,-5852,-2164], -[0,-5,-9321,-13,-26,-1342,-9320,-9319,-9318,-402,-3947,-2686,-88,-3,-9317,-2352,-120,-9316,-27,-186,-5109,-97], -[0,-2526,-852,-209,-3063,-75,-202,-785], +[0,-502,-615,-13363,-812,-999,-13364,-4703,-2648], +[0,-3037,-13365,-664,-767,-829,-13366,-13367,-13368,-1116,-1457,-3809,-1646,-1654,-13369,-10652,-2174,-13370,-2210,-2211, +-8527,-2250], +[0,-6657,-5921,-3844,-11818,-4004,-3590,-4116], [1,3,8420], [0,8421,8422,8423,5], -[0,-9315,-4685,-6462,-4292], -[0,-597,-699,-247], -[0,-3896,-9314,-9313,-9312,-771], +[0,-13371,-10926,-1093,-13372], +[0,-2330,-1754,-2424], +[0,-2254,-13373,-13374,-13375,-8841], [1,3,8425], [0,0,8426,8427,5], -[0,-2241,-1,-84,-10,-214,-76,-67,-131,-3,-15,-1497,-3219], -[0,-105,-2374,-354], +[0,-790,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-1999,-9374], +[0,-1334,-9745,-707], [1,3,8429], [0,8430,8431,8432,4], -[0,-205,-149,-1300,-16,-89,-3485,-2298,-2640,-4291,-1909,-155,-317], -[0,-351,-258,-13,-207,-28,-527,-748,-118,-1142,-262,-2716,-6,-285,-1961,-206,-646,-2834,-9311,-89,-9310,-1849,-101,-1749, --128,-2778,-2297,-1505,-4,-5804,-454,-446,-58,-6271,-323,-9309,-35,-2705,-210,-1905,-880,-2657,-515,-9308,-164,-130,-138, --2,-11,-1201,-5,-230,-1868,-9307,-479,-2557,-5803,-3681,-427,-9306,-137,-4290,-1341,-4289, --1414,-4288,-2537,-2693,-1088,-411,-788,-3004,-3457,-3003,-2125,-9305,-3026,-795,-577,-1894,-1220,-9304,-9303,-9302, --1914,-879,-9301,-623,-9300,-559,-9299,-832,-2296,-945,-4287,-3718,-9298,-9297,-9296,-9295,-9294,-9293,-3591,-599,-9292, --4286,-9291,-9290,-330,-4285,-3002,-2057,-9289,-2692,-122,-9288,-9287,-5955,-3307,-2768,-9286,-1462,-9285,-9284,-9283, --5735,-9282,-9281, --9280], -[0,-746,-129,-127,-9279,-4284,-6,-241,-1608,-234,-3831,-74,-192,-220,-3827,-1713], +[0,-2531,-1805,-2066,-2177,-928,-6488,-13376,-4890,-13377,-12518,-407,-410], +[0,-888,-2564,-664,-834,-1107,-1431,-2213,-999,-1526,-1623,-3548,-2006,-2218,-8609,-1111,-1699,-1778,-13378,-928,-13379, +-1085,-1442,-3447,-2114,-2358,-13380,-1885,-1942,-4893,-4204,-656,-719,-2578,-1864,-13381,-2019,-3654,-2400,-12982,-2528, +-4370,-3517,-13382,-1863,-2231,-2269,-2410,-23,-9939,-3037,-769,-832,-13383,-47,-6192,-4894,-4918,-25,-13384,-3199, +-13385,-831,-13386, +-6467,-13387,-6447,-3772,-3778,-3660,-3735,-13388,-6744,-13389,-3896,-13390,-12695,-2383,-46,-163,-6630,-13391,-13392, +-13393,-11751,-3194,-13394,-8523,-13395,-2044,-13396,-747,-13397,-7080,-13398,-4239,-13399,-13400,-13401,-13402,-13403, +-13404,-5474,-2271,-13405,-13406,-13407,-13408,-406,-13409,-13410,-5322,-13411,-3776,-409,-13412,-13413,-4008,-8273, +-2641,-13414,-3459,-13415,-13416,-13417,-5296,-13418,-13419, +-13420], +[0,-2257,-3095,-3098,-13421,-13422,-2006,-2634,-9736,-2034,-3138,-2476,-475,-2299,-3176,-4902], [1,3,8434], [0,8435,8436,8437,8], -[0,-2870], -[0,-9278,-1715,-2644,-1081,-4283,-9277,-9276,-3001,-950,-2093,-4282,-155,-122,-29,-1712,-47,-1,-9275,-8,-1710,-176,-4, --121,-157,-6,-35,-77,-462,-746,-57,-2,-792,-259], -[0,-2091,-746,-9274,-127,-42,-53,-9273,-4281,-9272,-9271,-9270,-993], +[0,-1338], +[0,-13423,-4762,-4763,-4754,-13424,-13425,-13426,-13427,-4749,-4758,-13428,-407,-409,-3136,-4961,-3040,-932,-13429,-1415, +-4980,-1419,-1942,-1967,-1978,-2006,-2019,-2162,-2163,-2257,-2375,-2410,-2516,-2548], +[0,-4900,-2257,-13430,-3098,-856,-3100,-13431,-13432,-13433,-13434,-13435,-1783], [1,3,8439], [0,8440,0,147,5], -[0,-2943,-11,-21,-6054,-6053,-20,-238,-119,-135,-58,-403,-1746,-264,-9269,-40,-28,-250,-705,-1156,-9268,-276,-23,-1522, --6052,-1092,-228,-88,-2141,-1458,-2317,-5015,-16,-2180,-796,-123], +[0,-3,-23,-40,-3538,-3539,-668,-674,-679,-714,-719,-755,-3542,-1022,-13436,-1077,-1107,-1276,-1320,-1349,-13437,-1460, +-1548,-1577,-3543,-3544,-1610,-1646,-3546,-3547,-11926,-9151,-2177,-2368,-2378,-2446], [1,3,8442], [0,68,15,16,11], [1,3,8444], [0,212,8445,8446,5], -[0,-9267,-9266,-3,-82], -[0,-9265,-245], +[0,-13438,-13439,-1654,-2198], +[0,-13440,-5827], [1,3,8448], [0,0,8449,8450,4], -[0,-63,-69,-5,-2242,-1171,-3,-1646,-4,-14,-1796,-1299,-82,-33,-153,-2], -[0,-245,-507,-831,-406,-46,-53], +[0,-351,-3621,-3037,-789,-885,-1654,-7210,-1942,-2127,-2135,-2136,-2198,-2379,-2392,-2410], +[0,-5827,-6408,-788,-7208,-3445,-3100], [1,3,8452], [0,8453,56,8454,5], -[0,-2476,-713,-5317,-6466,-1834,-9264,-3574], -[0,-9263,-9262,-46], +[0,-7590,-305,-7565,-1061,-1406,-13441,-5721], +[0,-13442,-13443,-3445], [1,3,8456], [0,0,0,8457,9], -[0,-6310,-550,-163,-588,-956], +[0,-2264,-3276,-2265,-4123,-4121], [1,3,8459], [0,0,8460,8461,4], -[0,-32,-3980,-364,-314,-9261,-653,-4613,-112], -[0,-163,-5451,-9260,-9259,-9258,-9257,-831,-31,-457,-165,-31,-3174,-1061,-1917,-777,-1416,-482,-3178], +[0,-1168,-1177,-1231,-1243,-13444,-1262,-11473,-2416], +[0,-2265,-6816,-13445,-13446,-13447,-13448,-788,-3264,-3223,-1838,-3264,-9702,-6817,-11647,-6422,-6420,-5559,-9692], [1,3,8463], [0,8464,8465,8466,4], -[0,-1278,-9256,-705,-468,-9255,-9254,-9253], -[0,-9252,-9251,-2306], -[0,-354,-943,-1624,-31,-9250,-9249,-626,-4970,-9248,-163,-1061,-3174,-1054,-183,-9247], +[0,-3164,-13449,-1320,-1549,-13450,-13451,-13452], +[0,-13453,-13454,-12508], +[0,-707,-7347,-8388,-3264,-13455,-13456,-6694,-9357,-13457,-2265,-6817,-9702,-7651,-5554,-13458], [1,3,8468], [0,8469,14,8470,4], -[0,-9246,-138], -[0,-163,-1055,-455,-2010,-3000,-2008,-4280,-4279,-4278,-3451,-9245,-2999,-240,-482,-2048,-37,-294,-174,-194,-2998,-2997, --2996,-2995,-4277,-4276], +[0,-13459,-2269], +[0,-2265,-7472,-4112,-6730,-13460,-6787,-13461,-13462,-13463,-6786,-13464,-13465,-5514,-5559,-5563,-687,-3958,-3974,-4000, +-13466,-13467,-13468,-13469,-13470,-13471], [1,3,8472], [0,8473,8474,8475,5], -[0,-6230,-3858], -[0,-5,-43,-3859,-4,-147,-260,-233,-2,-34], -[0,-429,-777,-482,-31,-1055,-1243,-1051,-457], +[0,-2737,-2738], +[0,-3037,-652,-2736,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-6231,-6422,-5559,-3264,-7472,-4846,-8034,-3223], [1,3,8477], [0,8478,238,8479,4], -[0,-1190], -[0,-1061,-1917,-626,-240,-548,-224,-671,-135,-174,-194,-163,-431,-482,-584,-726,-1232,-254,-638,-263,-367,-294,-183], +[0,-481], +[0,-6817,-11647,-6694,-5514,-3770,-712,-5535,-714,-3974,-4000,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545, +-3958,-5554], [1,3,8481], [0,0,14,8482,4], -[0,-1061,-4983,-2535,-2499,-4982,-455,-1786,-3225,-626,-775,-1917,-183,-163], +[0,-6817,-9310,-6472,-7154,-9311,-4112,-2443,-9312,-6694,-6693,-11647,-5554,-2265], [1,3,8484], [0,0,8485,8486,4], -[0,-51,-1520,-81,-34], -[0,-106,-1061,-968,-626,-775,-1917,-1656,-165,-353,-1085,-2512,-132,-1217,-782,-5169], +[0,-519,-1612,-2384,-2541], +[0,-4055,-6817,-3485,-6694,-6693,-11647,-6810,-1838,-727,-3870,-6849,-2444,-6845,-5558,-8292], [1,3,8488], [0,0,8489,8490,4], -[0,-15,-13,-198,-3,-1,-33,-4,-188,-2,-109,-5,-69,-9244,-244,-10,-995,-12,-25,-732,-19,-3697,-22], -[0,-3893,-9243,-9242,-99], +[0,-1788,-664,-1722,-1654,-932,-2379,-1942,-1729,-2410,-3035,-3037,-3621,-13472,-665,-958,-1656,-940,-967,-4269,-428, +-4628,-427], +[0,-2272,-13473,-13474,-3690], [1,3,8492], [0,8493,8494,8495,5], -[0,-60,-36,-9241,-9240,-6380,-9239,-466,-565,-603,-4275,-9238,-9237,-9236,-9235,-3051,-9234,-9233,-4274,-219,-1146,-2252, --4273,-1175,-3967,-528,-222,-23,-6396,-4734,-2342,-4292,-236,-197,-3163,-797,-9232,-4735,-9231,-9230,-2994,-4555,-205], -[0,-1,-613,-85], -[0,-1441,-9229,-4568,-9228,-4733,-9227,-5627,-1609,-2582,-666,-1084,-1936,-353,-685,-1621,-2418,-9226,-3988,-387,-4672, --9225,-367,-4732,-1202,-9224,-935,-4272,-1600,-9223,-158,-4271,-9222,-9221,-542,-9220,-287,-3487,-3083,-1915,-4270,-456, --1234,-9219,-9218,-940,-4275,-9217,-9216,-3051,-4274,-6309,-9215,-2788,-5352,-588,-9214], +[0,-510,-812,-13475,-13476,-1735,-13477,-1758,-1813,-2059,-13478,-13479,-13480,-13481,-13482,-12003,-13483,-13484,-13485, +-2518,-1464,-642,-13486,-797,-1298,-1370,-1521,-1548,-1579,-10695,-11015,-13372,-1666,-2062,-9798,-2245,-13487,-10690, +-13488,-13489,-13490,-11800,-2531], +[0,-932,-1445,-2319], +[0,-4344,-13491,-11755,-13492,-10705,-13493,-5804,-9733,-5805,-7641,-4161,-9844,-727,-3015,-8901,-8904,-13494,-1066,-5889, +-11021,-13495,-5545,-10706,-9800,-13496,-10412,-13497,-11230,-13498,-1764,-13499,-13500,-13501,-6187,-13502,-1958,-6479, +-11429,-11722,-13503,-4043,-5196,-13504,-13505,-8027,-13478,-13506,-13507,-12003,-13485,-2273,-13508,-2295,-7307,-4123, +-13509], [1,3,8497], [0,8498,8499,8500,4], -[0,-9213,-9212,-9211,-9210,-20,-1568,-5598,-58,-1153,-276,-9209,-4,-1107], -[0,-2551,-6205,-366,-49,-62,-9208,-9207,-2677,-9206,-109,-5,-2628,-680,-19,-877,-9205,-1274,-208,-1280,-13,-1,-265,-64, --824,-40,-9204,-9,-9203,-815,-9202,-222,-18,-3636,-841,-2587,-3,-2411,-65,-1241,-77,-16,-689,-9201,-393,-2,-340,-123, --259], -[0,-9200,-225,-9199,-24,-435,-2493,-77,-432,-5642,-9198,-6,-2741,-2639], +[0,-13510,-13511,-13512,-13513,-668,-671,-5971,-719,-1395,-1460,-13514,-1942,-2355], +[0,-6327,-2843,-50,-86,-3307,-13515,-13516,-3989,-13517,-3035,-3037,-5011,-3738,-428,-3311,-13518,-3312,-461,-2834,-664, +-932,-964,-969,-989,-1077,-13519,-1344,-13520,-1448,-13521,-1521,-1534,-5273,-10918,-5670,-1654,-9002,-1771,-4916,-2162, +-2177,-2193,-13522,-2286,-2410,-2429,-2446,-2548], +[0,-13523,-5553,-13524,-775,-3099,-7205,-2162,-3754,-5739,-13525,-2006,-3163,-4901], [1,3,8502], [0,0,8503,48,4], -[0,-8,-77,-9,-79,-262,-425,-1,-16,-237,-17,-1338,-4,-26,-50,-86,-144,-11,-277,-18,-65,-462,-92,-49,-134,-21,-170,-10,-12, --176,-62,-944], +[0,-1415,-2162,-1344,-1449,-1623,-774,-932,-2177,-825,-2501,-920,-1942,-767,-21,-533,-778,-23,-1041,-1534,-1771,-2163, +-2503,-86,-2251,-40,-2505,-958,-940,-1419,-3307,-7166], [1,3,8505], [0,8506,8507,8508,5], -[0,-3892], -[0,-49,-62,-487,-283,-48,-80,-63,-204,-29,-22,-19,-1,-25,-859,-55,-9,-8,-18,-4,-14,-57,-33,-2], -[0,-2183,-24,-225,-45,-406,-3179], +[0,-2277], +[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3136,-427,-428,-932,-967,-4814,-1110,-1344,-1415,-1534,-1942,-2127,-2375, +-2379,-2410], +[0,-2276,-775,-5553,-3214,-7208,-9680], [1,3,8510], [0,8511,8512,8513,6], -[0,-3955], -[0,-49,-62,-487,-283,-48,-80,-63,-204,-319,-29,-5,-22,-19,-1,-25,-859,-55,-9,-8,-18,-65,-4,-459,-14,-57,-33,-44,-2], -[0,-3892,-1378,-225,-73,-24,-406,-3179], +[0,-1374], +[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3267,-3136,-3037,-427,-428,-932,-967,-4814,-1110,-1344,-1415,-1534,-1771, +-1942,-2910,-2127,-2375,-2379,-2387,-2410], +[0,-2277,-9339,-5553,-3215,-775,-7208,-9680], [1,3,8515], [0,8516,8517,8518,11], -[0,-2692,-5683,-4269,-9197,-764,-38,-1492,-1742,-44], -[0,-11,-1097,-962,-216,-306,-971,-21,-136,-140,-319,-330,-155,-122,-317,-1279,-29,-9196,-5,-47,-87,-4268,-2151,-1765, --9195,-86,-278,-3276,-2569,-1745,-8,-176,-3780,-1149,-1001,-4,-121,-6,-35,-4267,-234,-286,-14,-463,-1117,-341,-893,-1298, --226,-9194,-9193,-2], -[0,-6,-24,-1265,-888,-3734], +[0,-3776,-5577,-13526,-13527,-786,-1889,-2192,-3768,-2387], +[0,-23,-3341,-3840,-26,-36,-3203,-40,-41,-42,-3267,-406,-407,-409,-410,-3043,-3136,-13528,-3037,-3040,-3052,-13529,-3141, +-3081,-13530,-533,-535,-8560,-6046,-3563,-1415,-1419,-3667,-1428,-1440,-1942,-1967,-2006,-2019,-13531,-2034,-2052,-2127, +-2131,-2133,-2137,-2138,-2139,-2140,-13532,-13533,-2410], +[0,-2006,-775,-3771,-2278,-4134], [1,3,8520], [0,8521,8522,8523,11], -[0,-2764], -[0,-50,-11,-306,-974,-2726,-391,-173,-21,-136,-178,-90,-479,-47,-51,-1266,-2376,-472,-1,-12,-9,-754,-4,-441,-6,-35,-120, --130,-2301,-1742,-9192,-2], -[0,-1266,-2175,-9191,-1265,-24], +[0,-2740], +[0,-21,-23,-36,-3077,-3373,-3204,-38,-40,-41,-43,-44,-47,-3040,-519,-3766,-9723,-742,-932,-940,-1344,-1543,-1942,-1952, +-2006,-2019,-2174,-2231,-12979,-3768,-13534,-2410], +[0,-3766,-2455,-13535,-3771,-775], [1,3,8525], [0,8526,22,8527,10], -[0,-305,-560], -[0,-2017,-24,-9190,-9189,-721,-38,-218,-3890], +[0,-635,-1931], +[0,-6413,-775,-13536,-13537,-7192,-1889,-3583,-2280], [1,3,8529], [0,8530,8531,8532,6], -[0,-1896,-5384,-1895,-4057,-4499,-2940,-4972,-2752,-403,-6500,-1176,-36,-229,-1916,-5197,-2556,-206,-9188,-3959,-469, --1758,-3318,-1152,-2859,-9187,-467,-362,-1509,-164,-38,-1502,-560,-465,-394,-2770,-9186,-734,-1778], -[0,-366,-4266,-1239,-4265,-4264,-9185,-2586,-162,-9184,-9183,-9182,-9181,-634,-5436,-9180,-5157,-9179,-3229,-110,-473, --326,-1,-4263,-10,-145,-9,-8,-2295,-1149,-18,-1709,-65,-1241,-3921,-561,-2313,-9178,-901,-4,-147,-887,-2], -[0,-1265,-24,-222,-217,-539,-100,-77,-432,-179,-887], +[0,-93,-7195,-94,-95,-12147,-98,-9352,-2840,-755,-777,-781,-812,-1026,-11676,-8142,-6197,-1111,-13538,-1327,-1353,-3190, +-8143,-1396,-1499,-13539,-1630,-1639,-1759,-1863,-1889,-1929,-1931,-1934,-2267,-2591,-13540,-4002,-2530], +[0,-50,-13541,-5121,-13542,-13543,-13544,-5685,-3198,-13545,-13546,-13547,-13548,-4036,-6928,-13549,-8335,-13550,-9284, +-589,-722,-823,-932,-13551,-958,-959,-1344,-1415,-13552,-1428,-1534,-4984,-1771,-4916,-1904,-1906,-12130,-13553,-1930, +-1942,-2094,-2289,-2410], +[0,-3771,-775,-1521,-7148,-8170,-1599,-2162,-3754,-2281,-2289], [1,3,8534], [0,8535,8536,8537,9], -[0,-2154], -[0,-4265,-4264,-1,-4263,-9,-18,-65,-4,-147,-179], -[0,-179,-9177,-97], +[0,-3085], +[0,-13542,-13543,-932,-13551,-1344,-1534,-1771,-1942,-2094,-2281], +[0,-2281,-13554,-2250], [1,3,8539], [0,0,8540,8541,5], -[0,-15,-8,-9,-1306,-1025,-1,-152,-124,-4,-9176,-26,-179,-50,-86,-9175,-5761,-2,-11,-781,-18,-701,-178,-49,-120,-21,-9174, --145,-1170,-10,-295,-2295,-2126,-12,-25,-794,-140,-19,-296,-62,-1020,-22,-6089,-1230,-216,-306], -[0,-2993,-179,-24,-432,-222,-217,-9173,-2127,-1226,-9172,-224,-9171], +[0,-1788,-1415,-1344,-1868,-855,-932,-708,-2402,-1942,-13555,-767,-2281,-21,-533,-13556,-5128,-2410,-23,-5870,-1534,-1637, +-43,-86,-2174,-40,-13557,-959,-977,-958,-3471,-13552,-3842,-940,-967,-2405,-42,-428,-3470,-3307,-935,-427,-3363,-5585, +-26,-36], +[0,-13558,-2281,-775,-3754,-1521,-7148,-13559,-3833,-5924,-13560,-712,-13561], [1,3,8543], [0,8544,8545,8546,4], -[0,-38,-9170], -[0,-1,-9169,-12,-55,-9,-8,-4493,-2295,-1149,-18,-3921,-2313,-9168,-4,-9167,-179], -[0,-2993,-179,-24,-217,-2499], +[0,-1889,-13562], +[0,-932,-13563,-940,-1110,-1344,-1415,-12241,-13552,-1428,-1534,-1904,-12130,-13564,-1942,-13565,-2281], +[0,-13558,-2281,-775,-7148,-7154], [1,3,8548], [0,8549,8550,8551,4], -[0,-1176,-1152,-2859,-2846,-9166,-9165,-560,-465], -[0,-473,-26,-1,-9164,-9,-8,-2295,-18,-417,-38,-2313,-901,-4,-179], -[0,-24,-1946,-217,-539,-432,-179,-2993], +[0,-781,-1396,-1499,-1620,-13566,-13567,-1931,-1934], +[0,-722,-767,-932,-13568,-1344,-1415,-13552,-1534,-1763,-1889,-12130,-1930,-1942,-2281], +[0,-775,-9231,-7148,-8170,-3754,-2281,-13558], [1,3,8553], [0,8554,128,8555,6], -[0,-2941,-36,-28,-1116,-130], -[0,-24,-73,-225,-4959,-1833,-1657], +[0,-28,-812,-1107,-2165,-2231], +[0,-775,-3215,-5553,-9406,-1409,-6784], [1,3,8557], [0,8558,8559,8560,6], -[0,-229,-1509], -[0,-50,-11,-21,-49,-62,-48,-514,-309,-110,-9163,-26,-425,-144,-151,-237,-1,-12,-583,-10,-145,-181,-115,-25,-150,-55,-9,-8, --18,-262,-3935,-65,-4,-693,-134,-154,-393,-83,-17], -[0,-17,-779,-393], +[0,-1026,-1759], +[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-589,-13569,-767,-774,-778,-824,-825,-932,-940,-6929,-958,-959,-960,-965,-967, +-978,-1110,-1344,-1415,-1534,-1623,-1717,-1771,-1942,-2000,-2251,-2275,-2286,-2411,-2501], +[0,-2501,-5932,-2286], [1,3,8562], [0,0,0,8563,11], -[0,-24,-38,-3046,-389,-2006,-73], +[0,-775,-1889,-12209,-4132,-6806,-3215], [1,3,8565], [0,8566,8567,8568,5], -[0,-6506,-4262,-36,-3007,-657,-1014,-1131,-261,-464], -[0,-50,-11,-173,-21,-90,-49,-62,-833,-5396,-3088,-168,-59,-619,-26,-1,-1551,-923,-76,-41,-920,-1854,-499,-9,-18,-228,-3, --1514,-15,-147,-1800,-7,-82,-9162,-9161,-34,-976], -[0,-1609,-1420,-1420,-99,-60,-629,-201,-3613,-337,-9160,-402,-105,-105,-401,-3239,-172,-172,-481,-113,-113,-5011,-4270, --410,-2186,-9159,-688,-2481,-507,-743,-2170], +[0,-723,-13570,-812,-13106,-1069,-1070,-1636,-1640,-1983], +[0,-21,-23,-38,-40,-44,-86,-3307,-571,-7124,-11178,-617,-633,-744,-767,-932,-946,-952,-966,-1004,-1010,-1053,-1098,-1344, +-1534,-1610,-1654,-1685,-1788,-2094,-2099,-2125,-2198,-13571,-13572,-2541,-2568], +[0,-9733,-5998,-5998,-3690,-510,-5867,-523,-5391,-3323,-13573,-1116,-1334,-1334,-1342,-9128,-1961,-1961,-5923,-2105,-2105, +-9176,-13503,-3691,-2122,-13574,-2291,-7430,-6408,-2533,-2540], [1,3,8570], [0,8571,8572,7,6], -[0,-4773], -[0,-162,-4635,-5,-110,-3133,-376,-3253,-2,-30], +[0,-10528], +[0,-3198,-11232,-3037,-589,-10300,-1671,-8973,-2410,-2469], [1,3,8574], [0,8575,8576,8577,5], -[0,-1131,-688,-1344], -[0,-15,-198,-3,-27,-1,-82,-41,-180,-168,-619,-49,-10,-191,-62], -[0,-591,-105,-113,-688,-543,-75,-61], +[0,-1636,-2291,-746], +[0,-1788,-1722,-1654,-2210,-932,-2198,-1004,-1972,-617,-744,-86,-958,-934,-3307], +[0,-3440,-1334,-2105,-2291,-4873,-4004,-3634], [1,3,8579], [0,8580,8581,8582,4], -[0,-116,-1131], -[0,-13,-244,-1494,-2172,-168,-619,-41,-3,-82], -[0,-125,-688,-113,-543,-591,-105,-75,-61,-172,-9158], +[0,-615,-1636], +[0,-664,-665,-2123,-2517,-617,-744,-1004,-1654,-2198], +[0,-2293,-2291,-2105,-4873,-3440,-1334,-4004,-3634,-1961,-13575], [1,3,8584], [0,0,8585,8586,5], -[0,-34,-51,-81,-5], -[0,-224,-671,-135,-174,-194,-37,-240,-548,-431,-726,-1232,-254,-638,-294,-3478,-9157,-9156,-668,-9155,-9154], +[0,-2541,-519,-2384,-3037], +[0,-712,-5535,-714,-3974,-4000,-687,-5514,-3770,-3975,-5549,-5513,-5550,-2547,-3958,-6520,-13576,-13577,-6659,-13578, +-13579], [1,3,8588], [0,8589,8590,8591,6], -[0,-1757,-1763,-5780,-329,-208,-1433,-3299,-304,-2084,-3659,-9153,-2642,-2092,-297,-9152], -[0,-1099,-357,-80,-63,-204,-2677,-3649,-5,-5779,-89,-14,-130,-311,-2,-30], -[0,-220,-4645,-52,-740,-1054], +[0,-3195,-3115,-5032,-426,-461,-5113,-8294,-703,-5034,-5035,-13580,-4788,-4789,-1588,-13581], +[0,-3180,-3983,-350,-351,-3266,-3989,-5114,-3037,-5040,-928,-2127,-2231,-2654,-2410,-2469], +[0,-2299,-11193,-3161,-3261,-7651], [1,3,8593], [0,8594,8595,8596,4], -[0,-1099,-119,-1245,-164,-1707], -[0,-80,-231,-63,-232,-319,-9151,-1571,-14,-895,-870,-220,-2,-9150,-9149,-4650,-4649,-9148,-9147], -[0,-220,-37], +[0,-3180,-679,-4787,-1863,-5037], +[0,-350,-4062,-351,-3561,-3267,-13582,-644,-2127,-2130,-4063,-2299,-2410,-13583,-13584,-11164,-11165,-13585,-13586], +[0,-2299,-687], [1,3,8598], [0,0,8599,8600,4], -[0,-11,-21,-49,-62,-9146,-9145,-729,-5,-9144,-2440,-160,-1678,-316,-404,-1,-222,-38,-9143,-902,-4,-643,-77,-393,-887,-220, --2,-30], -[0,-220,-2395,-2,-222,-393,-77,-432,-643,-316], +[0,-23,-40,-86,-3307,-13587,-13588,-4776,-3037,-13589,-8336,-518,-5859,-711,-740,-932,-1521,-1889,-13590,-1907,-1942, +-1974,-2162,-2286,-2289,-2299,-2410,-2469], +[0,-2299,-9263,-2410,-1521,-2286,-2162,-3754,-1974,-711], [1,3,8602], [0,8603,8604,8605,4], -[0,-1773,-28,-598,-60,-3132,-70,-2169,-96,-101,-552,-524,-9142,-1319,-5220,-1247,-9141,-3543], -[0,-34,-8,-222,-77,-806,-393,-991,-145,-181,-2992,-9140], -[0,-741,-961,-256,-579,-1614,-2393,-2385,-114,-24,-77,-222,-393,-1275,-1378,-31,-1203,-4945,-1944,-524,-624], +[0,-2746,-1107,-2303,-510,-10310,-2460,-2542,-2550,-1442,-2520,-1689,-13591,-1566,-8054,-4733,-13592,-5981], +[0,-2541,-1415,-1521,-2162,-1880,-2286,-1870,-959,-960,-13593,-13594], +[0,-3167,-3843,-3839,-7715,-9278,-9279,-9471,-3262,-775,-2162,-1521,-2286,-3271,-9339,-3264,-9472,-9473,-9474,-1689,-7419], [1,3,8607], [0,8608,8609,8610,4], -[0,-58,-4010,-1176,-2749,-1773,-164,-1116], -[0,-48,-1239,-80,-63,-204,-2586,-5389,-29,-5,-4303,-3772,-26,-1,-55,-8,-991,-398,-806,-4,-7,-14,-886,-81,-2], -[0,-598,-256,-580,-227], +[0,-719,-780,-781,-2888,-2746,-1863,-2165], +[0,-190,-5121,-350,-351,-3266,-5685,-7169,-3136,-3037,-13312,-3715,-767,-932,-1110,-1415,-1870,-1874,-1880,-1942,-2125, +-2127,-2325,-2384,-2410], +[0,-2303,-3839,-7175,-1644], [1,3,8612], [0,8613,8614,8615,4], -[0,-151,-1524,-4261,-1288], -[0,-51,-182,-94,-620,-4574,-1187,-447,-116,-1,-9139,-1133,-72,-27,-17], -[0,-17,-107,-9138,-4261,-1234,-1959], +[0,-824,-1570,-13595,-2415], +[0,-519,-526,-528,-556,-11733,-562,-566,-615,-932,-13596,-1626,-1650,-2210,-2501], +[0,-2501,-3862,-13597,-13595,-5196,-8615], [1,3,8617], [0,8618,8619,8620,8], -[0,-208,-326,-28,-276], -[0,-1,-4,-39,-9137], -[0,-545,-9136,-3776,-3285,-42,-3888,-3555,-2039,-114,-547,-5126,-5125,-5124,-681], +[0,-461,-823,-1107,-1460], +[0,-932,-1942,-2322,-13598], +[0,-4847,-13599,-3696,-8442,-856,-2305,-5885,-5886,-3262,-3960,-8443,-8444,-8445,-3438], [1,3,8622], [0,8623,8624,8625,4], -[0,-206,-101,-58,-9135,-9134], -[0,-1,-30,-4,-103,-9133], -[0,-545,-390,-9132,-42,-99,-1378,-968], +[0,-1111,-1442,-719,-13600,-13601], +[0,-932,-2469,-1942,-3664,-13602], +[0,-4847,-3671,-13603,-856,-3690,-9339,-3485], [1,3,8627], [0,0,131,8628,4], -[0,-3761,-545,-102,-6306,-41,-42,-390,-9131,-1684,-6307,-1445,-9130,-9129], +[0,-3812,-4847,-3160,-2308,-1004,-856,-3671,-13604,-5406,-2307,-4101,-13605,-13606], [1,3,8630], [0,8631,8632,8633,4], -[0,-3798], -[0,-1862,-41,-9128,-3,-15,-157], -[0,-545,-41,-102,-106,-42], +[0,-3434], +[0,-927,-1004,-13607,-1654,-1788,-1978], +[0,-4847,-1004,-3160,-4055,-856], [1,3,8635], [0,8636,8637,8638,6], -[0,-112,-565], -[0,-23,-41,-9127,-3,-421,-9126,-222,-9125,-1883,-9124,-903,-59,-126,-166], -[0,-271,-1054,-31,-4281,-9123,-5441,-41,-3508], +[0,-2416,-1813], +[0,-1548,-1004,-13608,-1654,-1003,-13609,-1521,-13610,-600,-13611,-1859,-633,-6656,-1446], +[0,-3110,-7651,-3264,-13432,-13612,-6876,-1004,-6301], [1,3,8640], [0,0,0,8641,9], -[0,-6304,-2991,-1198,-414,-282,-95,-1026,-2827,-300,-52,-4260,-1366,-1365,-107,-6,-74,-2294], +[0,-2311,-13613,-12449,-2363,-5270,-3162,-752,-1861,-3994,-3161,-13614,-12613,-13615,-3862,-2006,-2476,-13616], [1,3,8643], [0,8644,8645,8646,4], -[0,-9122,-4259,-9121], -[0,-168,-26,-41,-9120,-8,-700,-7,-2], -[0,-113,-105,-401,-433,-59,-2308,-2018], +[0,-13617,-13618,-13619], +[0,-617,-767,-1004,-13620,-1415,-1676,-2125,-2410], +[0,-2105,-1334,-1342,-3324,-633,-12397,-6367], [1,3,8648], [0,0,0,8649,9], -[0,-9119,-9118,-1316,-1600,-1507,-1615,-2304,-722,-9117,-9116,-9115,-4258,-9114,-9113,-9112,-4496,-9111,-2701,-9110,-935, --1205,-9109,-9108,-9107,-9106,-1080,-9105,-9104,-9103,-9102,-9101,-4257,-9100,-9099,-9098,-1983,-9097,-9096,-1661,-9095, --9094,-4256,-5473,-9093,-9092,-4829,-4255,-9091,-9090,-9089,-9088,-9087,-9086,-46,-4320,-9085,-9084], +[0,-13621,-13622,-1673,-11230,-1819,-9261,-12578,-7084,-13623,-13624,-13625,-13626,-13627,-13628,-13629,-12218,-13630, +-3708,-13631,-10412,-8801,-13632,-13633,-13634,-13635,-5150,-13636,-13637,-13638,-13639,-13640,-13641,-13642,-13643, +-13644,-7606,-13645,-13646,-6524,-13647,-13648,-13649,-6712,-13650,-13651,-10245,-13652,-13653,-13654,-13655,-13656, +-13657,-13658,-3445,-13173,-13659,-13660], [1,3,8651], [0,0,8652,7,4], -[0,-149,-495,-3,-72,-7,-14,-175,-116,-188,-9083,-1966,-792,-146,-231,-226,-232,-9082,-63,-9081], +[0,-1805,-1496,-1654,-1650,-2125,-2127,-2334,-615,-1729,-13661,-8559,-2516,-2234,-4062,-2140,-3561,-13662,-351,-13663], [1,3,8654], [0,8655,8656,8657,4], -[0,-205,-193,-383,-9080,-9079,-9078,-9077,-23,-700,-9076,-9075,-9074,-9073,-41,-9072,-9071,-9070,-9069,-9068,-1577,-168, --384,-924,-9067,-2931,-90,-9066], -[0,-1817,-2932,-9065,-9064,-272,-9063,-473,-9062], -[0,-9061,-9060], +[0,-2531,-469,-754,-13664,-13665,-13666,-13667,-1548,-1676,-13668,-13669,-13670,-13671,-1004,-13672,-13673,-13674,-13675, +-13676,-512,-617,-724,-737,-13677,-496,-44,-13678], +[0,-1708,-473,-13679,-13680,-2195,-13681,-722,-13682], +[0,-13683,-13684], [1,3,8659], [0,0,8660,8661,9], -[0,-2050,-44,-1,-206,-14,-30,-4,-2,-11,-5,-21,-415,-83,-103,-203,-10,-3646,-848,-9059,-319,-63,-2363,-2728], -[0,-557,-1292,-24,-2149,-9058,-9057,-494,-4976,-9056], +[0,-5369,-2387,-932,-1111,-2127,-2469,-1942,-2410,-23,-3037,-40,-2132,-2411,-3664,-3326,-958,-5122,-6593,-13685,-3267, +-351,-10022,-3344], +[0,-2318,-2316,-775,-3205,-13686,-13687,-1631,-9342,-13688], [1,3,8663], [0,0,8664,7,4], -[0,-534,-5,-1452,-297,-799,-9055,-1757], +[0,-815,-3037,-3751,-1588,-2232,-13689,-3195], [1,3,8666], [0,8667,0,8668,10], -[0,-9054,-9053,-9052,-9051,-9050,-9049,-9048,-9047,-9046,-9045,-9044,-9043,-9042,-9041,-9040,-9039,-9038,-9037,-9036, --4254], -[0,-293,-85,-75,-61,-52,-37,-9035,-9034], +[0,-13690,-13691,-13692,-13693,-13694,-13695,-13696,-13697,-13698,-13699,-13700,-13701,-13702,-13703,-13704,-13705,-13706, +-13707,-13708,-13709], +[0,-507,-2319,-4004,-3634,-3161,-687,-13710,-13711], [1,3,8670], [0,8671,8672,8673,9], -[0,-20,-1558,-533,-23,-899,-4702,-9033,-71], -[0,-9032], -[0,-39,-85,-3,-1082,-946], +[0,-668,-883,-1040,-1548,-1951,-10854,-13712,-2347], +[0,-13713], +[0,-2322,-2319,-1654,-4679,-6863], [1,3,8675], [0,0,8676,7,6], -[0,-8,-1,-55,-4,-48,-86,-11,-115,-514,-21,-145,-10,-583,-150,-12,-25,-309], +[0,-1415,-932,-1110,-1942,-190,-533,-23,-965,-3560,-40,-959,-958,-6929,-978,-940,-967,-3748], [1,3,8678], [0,8679,8680,8681,9], -[0,-9031,-9030,-9029,-1030,-830,-2546,-9028,-1015,-1846,-28,-9027,-706,-528,-3399,-88,-1820,-1312,-2043,-1508,-609,-128, --3322], -[0,-239,-1891,-279,-315,-26,-1557,-4253,-510,-1555,-1,-3509,-1322,-101,-9026,-275,-15,-187,-16,-85,-1622], -[0,-85,-75,-9025,-293,-91], +[0,-13714,-13715,-13716,-655,-821,-6369,-13717,-1065,-1097,-1107,-13718,-1285,-1370,-7394,-1646,-1659,-1794,-5849,-1795, +-1797,-2114,-8057], +[0,-5834,-505,-516,-725,-767,-887,-13719,-5835,-921,-932,-6282,-1408,-1442,-13720,-1777,-1788,-2156,-2177,-2319,-8573], +[0,-2319,-4004,-13721,-507,-4865], [1,3,8683], [0,8684,8685,7,5], -[0,-9024,-9023,-1617,-4575,-9022], -[0,-85,-198,-555,-9021,-7,-124,-4,-2324,-5,-1864,-9020], +[0,-13722,-13723,-9084,-11721,-13724], +[0,-2319,-1722,-2386,-13725,-2125,-2402,-1942,-11719,-3037,-908,-13726], [1,3,8687], [0,8688,8689,8690,5], -[0,-1304,-886], -[0,-7,-4252,-97], -[0,-312,-303,-126,-5278,-405,-245], +[0,-1976,-2325], +[0,-2125,-13727,-2250], +[0,-2323,-1076,-6656,-7738,-7421,-5827], [1,3,8692], [0,8693,8694,7,6], -[0,-9019,-2293,-9018], -[0,-4252,-97,-315], +[0,-13728,-13729,-13730], +[0,-13727,-2250,-725], [1,3,8696], [0,33,8697,8698,6], -[0,-1412,-3467,-29,-5,-22,-19,-56,-89,-1,-84,-10,-76,-67,-8,-4,-57,-2], -[0,-4251,-3788,-4250,-4249,-53,-9017,-46,-4248,-2340,-1418], +[0,-6486,-6627,-3136,-3037,-427,-428,-756,-928,-932,-943,-958,-966,-968,-1415,-1942,-2375,-2410], +[0,-13731,-3555,-13732,-13733,-3100,-13734,-3445,-13735,-11074,-6235], [1,3,8700], [0,0,8701,8702,4], -[0,-1412,-9016,-9015,-257,-3467,-29,-5,-954,-22,-19,-168,-503,-298,-9014,-1,-84,-10,-76,-67,-9,-8,-18,-288,-3348,-4,-125, --57,-2], -[0,-4251,-3788,-4250,-4249,-46,-4248,-2018,-41], +[0,-6486,-13736,-13737,-3617,-6627,-3136,-3037,-4203,-427,-428,-617,-720,-796,-13738,-932,-943,-958,-966,-968,-1344,-1415, +-1534,-1753,-7760,-1942,-2293,-2375,-2410], +[0,-13731,-3555,-13732,-13733,-3445,-13735,-6367,-1004], [1,3,8704], [0,8705,0,8706,8], -[0,-36,-906,-2030], -[0,-2990,-9013,-9012,-4247,-9011,-711,-9010,-46], +[0,-812,-1723,-6127], +[0,-13739,-13740,-13741,-13742,-13743,-596,-13744,-3445], [1,3,8708], [0,8709,8710,8711,8], -[0,-36,-906], -[0,-48,-232,-162,-5,-1960,-215,-1,-12,-762,-150,-610,-4,-124,-794,-2,-83,-104,-847,-30], -[0,-2990,-4247,-6301,-141,-46], +[0,-812,-1723], +[0,-190,-3561,-3198,-3037,-8612,-865,-932,-940,-972,-978,-1733,-1942,-2402,-2405,-2410,-2411,-2466,-6859,-2469], +[0,-13739,-13742,-2328,-3966,-3445], [1,3,8713], [0,8714,27,258,5], -[0,-7,-72], +[0,-2125,-1650], [1,3,8716], [0,8717,8718,8719,4], -[0,-1003,-2574,-210,-4288], -[0,-5,-51,-493,-414,-81,-34], -[0,-597,-3236,-248,-126,-405,-942,-2003,-4246,-3059,-4245,-850,-4244], +[0,-1399,-5917,-2400,-13387], +[0,-3037,-519,-1849,-2363,-2384,-2541], +[0,-2330,-9214,-1847,-6656,-7421,-7420,-6909,-13745,-11846,-13746,-6555,-13747], [1,3,8721], [0,8722,0,8723,9], -[0,-4696,-9009,-9008,-9007,-2989,-9006,-9005,-9004], -[0,-174,-194,-240,-37,-638,-224,-9003,-9002,-225,-336,-9001,-2302,-9000,-2047,-1263,-2011,-5465,-8999,-8998,-8997,-3025, --281,-579,-1042,-1208], +[0,-10893,-13748,-13749,-13750,-13751,-13752,-13753,-13754], +[0,-3974,-4000,-5514,-687,-2547,-712,-13755,-13756,-5553,-3962,-13757,-12898,-13758,-5564,-3824,-6716,-6765,-13759,-13760, +-13761,-12704,-6527,-7715,-9235,-8642], [1,3,8725], [0,8726,0,8727,11], -[0,-4243,-2545,-528,-8996,-71,-8995], -[0,-1263,-174,-240,-8994,-8993], +[0,-13762,-6372,-1370,-13763,-2347,-13764], +[0,-3824,-3974,-5514,-13765,-13766], [1,3,8729], [0,8730,8731,8732,6], -[0,-8992,-208,-58,-146], -[0,-8991,-8990,-1,-5193,-381,-3,-235,-14,-16,-130], -[0,-938,-175,-1288,-112,-227,-776,-45,-338,-1050,-339,-2034,-2988,-430,-1972,-1415,-60,-629], +[0,-13767,-461,-719,-2234], +[0,-13768,-13769,-932,-8150,-985,-1654,-1939,-2127,-2177,-2231], +[0,-9216,-2334,-2415,-2416,-1644,-6684,-3214,-3217,-8108,-3184,-6052,-13770,-4795,-8165,-6434,-510,-5867], [1,3,8734], [0,8735,8736,8737,5], -[0,-175,-1321,-639,-1114,-1099], -[0,-151,-8,-9,-262,-425,-1,-237,-89,-17,-4,-252,-26,-112,-50,-48,-2,-11,-5,-277,-18,-65,-92,-4608,-49,-115,-514,-8989, --134,-21,-83,-145,-535,-181,-10,-583,-150,-12,-25,-309,-3441,-62], -[0,-938,-112,-1288,-175,-17,-2496,-1224,-541,-2378,-1616,-1224,-776,-227,-580,-1648], +[0,-2334,-1429,-2168,-2182,-3180], +[0,-824,-1415,-1344,-1623,-774,-932,-825,-928,-2501,-1942,-367,-767,-2416,-21,-190,-2410,-23,-3037,-1041,-1534,-1771, +-2503,-11510,-86,-965,-3560,-13771,-2251,-40,-2411,-959,-748,-960,-958,-6929,-978,-940,-967,-3748,-6930,-3307], +[0,-9216,-2416,-2415,-2334,-2501,-7172,-6059,-6454,-9696,-9234,-6059,-6684,-1644,-7175,-7176], [1,3,8739], [0,8740,8741,8742,4], -[0,-8988,-8987,-8986,-8985,-8984,-2899,-2898,-2358,-229,-4724,-1984], -[0,-815,-188], -[0,-1488,-75,-456,-37,-388,-61,-589,-39,-85,-51,-3], +[0,-13772,-13773,-13774,-13775,-13776,-717,-718,-10293,-1026,-10745,-7576], +[0,-1448,-1729], +[0,-2337,-4004,-4043,-687,-5119,-3634,-3673,-2322,-2319,-519,-1654], [1,3,8744], [0,8745,8746,8747,11], -[0,-116,-20,-28,-23,-228,-72,-8983,-8982], -[0,-283,-48,-5736,-3564,-458,-142,-5,-269,-22,-19,-103,-1563,-1,-2528,-8981,-27,-8980,-8979,-171,-153,-2,-8978,-30], -[0,-100,-75,-388,-8977,-42,-390], +[0,-615,-668,-1107,-1548,-1610,-1650,-13777,-13778], +[0,-3244,-190,-5294,-5767,-3036,-3044,-3037,-4372,-427,-428,-3664,-827,-932,-6611,-13779,-2210,-13780,-13781,-2391,-2392, +-2410,-13782,-2469], +[0,-1599,-4004,-5119,-13783,-856,-3671], [1,3,8749], [0,8750,8751,8752,4], -[0,-11,-622,-1195,-4679,-3804,-6084,-1096,-3808,-3805,-3812,-3807,-2725,-173,-21,-1068,-136,-90,-8976,-8975,-5,-2012, --6074,-1188,-3525,-8974,-5332,-13,-20,-8973,-316,-58,-36,-534,-151,-8972,-3081,-207,-4242,-3086,-5609,-2137,-118,-8971, --206,-325,-4368,-2221,-3592,-8970,-817,-569,-1930,-1154,-8969,-1003,-276,-23,-8968,-753,-2342,-236,-8967,-524, --646,-8966,-607,-1124,-8965,-806,-1414,-8964,-397,-1499,-8963,-8962,-3550,-641,-2185,-16,-2739,-146,-1293,-8961,-8960, --8959,-8958,-8957,-8956,-8955,-2987,-8954,-8953,-156,-687,-2,-8952,-8951], -[0,-8950,-2476,-8949,-513,-80,-2530,-63,-8948,-8947,-109,-162,-8946,-1201,-4989,-4676,-6039,-788,-137,-2738,-2379,-8945, --22,-19,-278,-1574,-168,-8944,-8943,-244,-1952,-3838,-223,-383,-26,-8942,-424,-1,-8941,-2489,-41,-8940,-32,-615,-8939, --3977,-530,-1325,-8938,-8937,-5116,-314,-8936,-653,-2686,-996,-1132,-88,-8935,-1514,-8934,-180,-6,-8933, --14,-301,-396,-27,-5377,-138,-8932,-44,-112], -[0,-4241,-727,-91,-2017,-878,-2116,-61,-544,-75,-456,-543,-293,-1072,-8931,-846,-2505,-60,-629], +[0,-23,-33,-37,-10983,-3395,-3383,-3376,-3384,-3393,-3350,-3385,-3374,-38,-40,-6056,-41,-44,-13784,-13785,-3037,-6558, +-3442,-541,-6067,-13786,-7435,-664,-668,-13787,-711,-719,-812,-815,-824,-13788,-11460,-834,-13789,-11328,-5910,-3606, +-999,-13790,-1111,-1119,-12933,-1341,-5458,-13791,-1366,-1392,-10697,-1393,-13792,-1399,-1460,-1548,-13793,-1591,-11015, +-1666,-13794,-1689, +-1699,-13795,-1839,-1866,-13796,-1880,-6467,-13797,-1966,-1982,-13798,-13799,-5915,-2115,-2160,-2177,-3169,-2234,-2270, +-13800,-13801,-13802,-13803,-13804,-13805,-13806,-13807,-13808,-13809,-2359,-2369,-2410,-13810,-13811], +[0,-13812,-7590,-13813,-4066,-350,-6572,-351,-13814,-13815,-3035,-3198,-13816,-9939,-9283,-11011,-3622,-3735,-3199,-3172, +-9660,-13817,-427,-428,-535,-579,-617,-13818,-13819,-665,-9077,-3050,-729,-754,-767,-13820,-930,-932,-13821,-7353,-1004, +-13822,-1168,-1174,-13823,-1196,-1197,-1226,-13824,-13825,-8498,-1243,-13826,-1262,-3809,-1608,-1632,-1646,-13827,-1685, +-13828,-1972,-2006,-13829, +-2127,-2142,-2187,-2210,-7220,-2269,-13830,-2387,-2416], +[0,-13831,-5112,-4865,-6413,-3258,-3995,-3634,-4864,-4004,-4043,-4873,-507,-5855,-13832,-6948,-6950,-510,-5867], [1,3,8754], [0,8755,8756,8757,6], -[0,-5309,-8930,-928,-3262,-3260,-36,-8929,-4004,-499,-1635,-8928,-8927,-1290,-156,-284], -[0,-4626,-8926,-4627,-162,-2331,-8925,-4240,-736], -[0,-2182,-1983,-61], +[0,-7602,-13833,-501,-8864,-8898,-812,-13834,-851,-1098,-7772,-13835,-13836,-2324,-2359,-2426], +[0,-11344,-13837,-11339,-3198,-11347,-13838,-13839,-3628], +[0,-2340,-7606,-3634], [1,3,8759], [0,8760,8761,8762,5], -[0,-23,-3694,-8924,-4703], -[0,-5,-22,-19,-59,-4239,-8923,-26,-534,-8922,-8921,-1836,-72,-65,-15,-7,-97,-8920,-8919,-1789,-33,-3590,-2], -[0,-543,-591,-307,-1384,-1729,-8918,-3085], +[0,-1548,-4654,-13840,-10846], +[0,-3037,-427,-428,-633,-13841,-13842,-767,-815,-13843,-13844,-1398,-1650,-1771,-1788,-2125,-2250,-13845,-13846,-2341, +-2379,-5482,-2410], +[0,-4873,-3440,-4215,-8611,-4216,-13847,-11378], [1,3,8764], [0,8765,8766,8767,4], -[0,-1247,-2257,-116,-4243,-58,-384,-4012,-118,-41,-8917,-28,-614,-101,-23,-72,-524,-1510,-2834,-8916,-7,-800,-8915,-8914, --1622,-156], -[0,-8913,-59,-13,-5241,-8912,-238,-1562,-1,-3330,-265,-3,-113,-8911,-272,-27,-186,-1295,-39], -[0,-45,-61,-4655,-91], +[0,-4733,-573,-615,-13762,-719,-724,-735,-999,-1004,-13848,-1107,-1336,-1442,-1548,-1650,-1689,-1737,-1778,-13849,-2125, +-2228,-13850,-13851,-8573,-2359], +[0,-13852,-633,-664,-7976,-13853,-674,-838,-932,-7979,-964,-1654,-2105,-13854,-2195,-2210,-2211,-2229,-2322], +[0,-3214,-3634,-11116,-4865], [1,3,8769], [0,0,8770,8771,4], -[0,-85,-39,-1566], -[0,-183,-734,-2368,-868,-4704,-3460], +[0,-2319,-2322,-689], +[0,-5554,-4002,-9846,-4111,-10844,-6724], [1,3,8773], [0,0,8774,8775,4], -[0,-48,-63,-204,-1,-8910,-923,-763,-181,-55,-4238,-166,-297,-806,-157,-375,-14,-3882], -[0,-1109,-8909,-45,-4237,-8908,-8907,-4236,-8906,-8905,-8904,-8903,-327,-256,-585], +[0,-190,-351,-3266,-932,-13855,-952,-957,-960,-1110,-13856,-1446,-1588,-1880,-1978,-1989,-2127,-2393], +[0,-2344,-13857,-3214,-13858,-13859,-13860,-13861,-13862,-13863,-13864,-13865,-659,-3839,-5177], [1,3,8777], [0,0,8778,8779,4], -[0,-50,-11,-173,-21,-90,-203,-98,-5394,-159,-1,-5393,-12,-25,-381,-499,-4235,-5392,-9,-78,-1527,-139,-212,-418,-1830,-648, --526,-18,-88,-8902,-417,-4,-1498,-14,-5391,-17], -[0,-1871,-1994], +[0,-21,-23,-38,-40,-44,-3326,-534,-7156,-753,-932,-7157,-940,-967,-985,-1098,-13866,-7158,-1344,-1471,-1473,-1475,-1479, +-1483,-1485,-1490,-1492,-1534,-1646,-13867,-1763,-1942,-1991,-2127,-7161,-2501], +[0,-811,-7329], [1,3,8781], [0,0,8782,8783,9], -[0,-1624,-39,-2437], -[0,-245,-940,-8901,-1921], +[0,-8388,-2322,-8393], +[0,-5827,-8027,-13868,-11441], [1,3,8785], [0,8786,8787,8788,4], -[0,-197], -[0,-2255,-299,-13,-8900,-3,-8899,-97,-8898], -[0,-245,-4234,-460,-507], +[0,-2062], +[0,-599,-640,-664,-13869,-1654,-13870,-2250,-13871], +[0,-5827,-13872,-2346,-6408], [1,3,8790], [0,0,0,8791,11], -[0,-4419,-1028,-114,-3549,-172], +[0,-12735,-705,-3262,-5925,-1961], [1,3,8793], [0,0,14,8794,6], -[0,-8897,-4233,-4232,-2181,-4231,-248,-2320,-405,-2177,-1636,-452], +[0,-13873,-13874,-13875,-2350,-13876,-1847,-11845,-7421,-2440,-7727,-5845], [1,3,8796], [0,8797,210,8798,4], -[0,-20,-4373,-533,-2400,-8896,-899,-885], -[0,-54,-2416,-3208,-588,-8895,-2391,-8894,-5004,-542,-2416], +[0,-668,-12908,-1040,-9236,-13877,-1951,-2343], +[0,-1127,-8906,-9460,-4123,-13878,-9330,-13879,-9225,-6187,-8906], [1,3,8800], [0,8801,8802,8803,4], -[0,-8893,-8892,-8891,-8890,-8889,-8888,-8887,-8886,-8885,-8884,-8883,-8882,-8881,-8880,-8879,-8878,-8877,-8876,-8875, --8874,-8873,-8872,-8871,-8870,-8869,-8868,-8867,-8866,-8865,-8864,-8863,-8862,-8861,-8860,-8859,-8858,-8857,-8856,-8855, --8854,-8853,-8852,-8851,-8850,-8849,-8848,-8847,-8846,-8845,-8844,-8843,-8842,-8841,-8840,-8839,-8838,-8837,-8836,-8835, --8834,-8833,-8832,-8831, --8830,-8829,-8828], -[0,-303,-28,-32,-248,-77,-3,-6,-1,-23,-7,-382,-38,-17,-1553,-40,-66,-26,-421,-1537,-1315,-35,-144,-2228,-121,-654,-462, --160,-1538,-1007,-154,-8827,-8826,-242,-519,-1009,-2213,-492,-8825,-6148,-64,-266,-10,-148,-4770,-8824,-298,-919], -[0,-6,-108,-129,-127,-102,-52,-53,-8823,-6300,-8822], +[0,-13880,-13881,-13882,-13883,-13884,-13885,-13886,-13887,-13888,-13889,-13890,-13891,-13892,-13893,-13894,-13895,-13896, +-13897,-13898,-13899,-13900,-13901,-13902,-13903,-13904,-13905,-13906,-13907,-13908,-13909,-13910,-13911,-13912,-13913, +-13914,-13915,-13916,-13917,-13918,-13919,-13920,-13921,-13922,-13923,-13924,-13925,-13926,-13927,-13928,-13929,-13930, +-13931,-13932,-13933,-13934,-13935,-13936,-13937,-13938,-13939,-13940,-13941,-13942, +-13943,-13944,-13945], +[0,-1076,-1107,-1168,-1847,-2162,-1654,-2006,-932,-1548,-2125,-784,-1889,-2501,-923,-1077,-1405,-767,-1003,-1248,-1743, +-2019,-778,-1183,-1967,-1187,-2163,-518,-1238,-1244,-2275,-13946,-13947,-1792,-2508,-1184,-1514,-1908,-13948,-3054,-969, +-933,-958,-962,-10533,-13949,-796,-1017], +[0,-2006,-3159,-3095,-3098,-3160,-3161,-3100,-13950,-2352,-13951], [1,3,8805], [0,8806,8807,7,6], -[0,-3121,-36,-3110,-4746,-242,-464], -[0,-182,-278,-2259,-328,-1,-84,-67,-131,-41,-1847,-3,-2316,-134,-125], +[0,-10459,-812,-10622,-10623,-1792,-1983], +[0,-526,-535,-554,-559,-932,-943,-968,-974,-1004,-1088,-1654,-11943,-2251,-2293], [1,3,8809], [0,0,0,8810,5], -[0,-110,-8821,-2299], +[0,-589,-13952,-13241], [1,3,8812], [0,0,8813,8814,5], -[0,-8820], -[0,-224,-73,-8819], +[0,-13953], +[0,-712,-3215,-13954], [1,3,8816], [0,0,0,8817,11], -[0,-789,-3885,-2470,-45,-31,-183,-3140,-3139,-3137,-875,-3138,-966], +[0,-3494,-2356,-7754,-3214,-3264,-5554,-10109,-10110,-10114,-3495,-10111,-3498], [1,3,8819], [0,0,8820,8821,4], -[0,-5,-2300,-1,-12,-25,-150,-4,-371,-2,-83,-104,-30], -[0,-508,-8818,-8817], +[0,-3037,-13239,-932,-940,-967,-978,-1942,-2892,-2410,-2411,-2466,-2469], +[0,-5922,-13955,-13956], [1,3,8823], [0,0,0,8824,8], -[0,-1729,-307,-2,-8816], +[0,-4216,-4215,-2410,-13957], [1,3,8826], [0,0,8827,258,4], -[0,-3,-1,-66,-3459,-265], +[0,-1654,-932,-1405,-6726,-964], [1,3,8829], [0,8830,8831,8832,4], -[0,-6343], -[0,-11,-8815,-1760,-4,-2], -[0,-6,-108,-8814,-3027,-2128,-8813,-8812,-234,-2812,-8811,-8810,-6299,-1731,-2671,-8809,-37,-95,-282,-333,-111,-8808], +[0,-2036], +[0,-23,-13958,-3156,-1942,-2410], +[0,-2006,-3159,-13959,-12662,-3825,-13960,-13961,-2034,-2053,-13962,-13963,-2360,-4127,-4122,-13964,-687,-3162,-5270, +-5271,-3578,-13965], [1,3,8834], [0,0,8835,8836,10], -[0,-50,-11,-1195,-21,-136,-320,-3087,-877,-98,-13,-1,-41,-40,-348,-206,-101,-79,-228,-72,-3,-241,-8807,-65,-8806,-6,-35, --77,-97,-17,-92], -[0,-3883,-45,-734,-8805,-3435,-547,-31,-1213,-1934], +[0,-21,-23,-37,-40,-41,-2581,-11254,-3311,-534,-664,-932,-1004,-1077,-1103,-1111,-1442,-1449,-1610,-1650,-1654,-2634, +-13966,-1771,-13967,-2006,-2019,-2162,-2250,-2501,-2503], +[0,-2361,-3214,-4002,-13968,-7002,-3960,-3264,-7534,-9975], [1,3,8838], [0,0,8839,8840,6], -[0,-699,-4623], -[0,-884,-73], +[0,-1754,-11358], +[0,-2362,-3215], [1,3,8842], [0,0,8843,7,6], -[0,-2324,-85], +[0,-11719,-2319], [1,3,8845], [0,8846,8847,8848,6], -[0,-4230], -[0,-310,-48,-3733,-478,-5,-848,-1,-12,-251,-10,-25,-3784,-55,-4,-171,-2,-83,-30], -[0,-5926,-352,-1652,-8804,-4262,-5075,-8803,-8802], +[0,-13969], +[0,-2832,-190,-4139,-262,-3037,-6593,-932,-940,-948,-958,-967,-3631,-1110,-1942,-2391,-2410,-2411,-2469], +[0,-4181,-743,-6920,-13970,-13570,-8792,-13971,-13972], [1,3,8850], [0,8851,8852,8853,4], -[0,-135,-1872,-72,-8801], -[0,-109,-69,-13,-1566,-1172,-1,-3,-15,-33,-196,-2], -[0,-263,-738,-8800,-36], +[0,-714,-808,-1650,-13973], +[0,-3035,-3621,-664,-689,-879,-932,-1654,-1788,-2379,-2388,-2410], +[0,-1573,-3444,-13974,-812], [1,3,8855], [0,8856,8857,8858,5], -[0,-4659,-8799,-3398], -[0,-239,-279,-510,-1555,-1,-213,-275,-187,-39], -[0,-2180,-745,-772,-774,-8798,-1222,-536], +[0,-11103,-13975,-7400], +[0,-5834,-516,-5835,-921,-932,-1365,-1777,-2156,-2322], +[0,-2368,-2487,-7371,-6917,-13976,-6545,-702], [1,3,8860], [0,0,27,8861,5], -[0,-934,-4815,-287,-4257,-4382,-2596], +[0,-10919,-10336,-1958,-13641,-12872,-5395], [1,3,8863], [0,241,8864,7,5], -[0,-735,-1443,-257,-29,-384,-383,-41,-8,-288,-4,-57,-2,-258], +[0,-3732,-4198,-3617,-3136,-724,-754,-1004,-1415,-1753,-1942,-2375,-2410,-2564], [1,3,8866], [0,8867,8868,8869,4], -[0,-528,-71,-2545,-8797,-8796,-197], -[0,-39,-460,-315], -[0,-31,-1613,-73,-507,-1597,-24], +[0,-1370,-2347,-6372,-13977,-13978,-2062], +[0,-2322,-2346,-725], +[0,-3264,-9292,-3215,-6408,-12123,-775], [1,3,8871], [0,8872,8873,8874,4], -[0,-1449,-137,-2216,-567,-16,-3210], -[0,-320,-5,-103,-1881,-1924,-1129,-1311,-2055,-970,-2,-30], -[0,-46,-1216,-376,-1129,-107,-318,-718,-1210,-436,-2,-433,-690,-952,-935,-3484,-676,-8795], +[0,-3851,-3199,-1388,-1681,-2177,-9444], +[0,-2581,-3037,-3664,-637,-11187,-1672,-1806,-5326,-3246,-2410,-2469], +[0,-3445,-6857,-1671,-1672,-3862,-4058,-7773,-7684,-3018,-2410,-3324,-2071,-4634,-10412,-6495,-5101,-13979], [1,3,8876], [0,0,8877,161,11], -[0,-50,-11,-216,-1038,-306,-21,-140,-366,-49,-62,-3733,-478,-739,-29,-142,-680,-22,-19,-86,-110,-159,-1,-12,-25,-1170,-9, --8,-23,-65,-4,-342,-33,-124,-794,-2,-123], +[0,-21,-23,-26,-35,-36,-40,-42,-50,-86,-3307,-4139,-262,-3268,-3136,-3044,-3738,-427,-428,-533,-589,-753,-932,-940,-967, +-977,-1344,-1415,-1548,-1771,-1942,-2082,-2379,-2402,-2405,-2410,-2446], [1,3,8879], [0,8880,8881,8882,5], -[0,-4229,-3425,-250,-276,-1825,-4228,-16,-210,-518], -[0,-49,-937,-487,-283,-48,-1239,-1732,-715,-729,-185,-29,-411,-3767,-3312,-5378,-634,-5,-137,-413,-2404,-22,-19,-86,-3117, --575,-89,-1,-12,-10,-145,-181,-25,-118,-229,-40,-55,-9,-8,-101,-18,-262,-4,-7,-33,-2,-83], -[0,-8,-2,-2002,-6,-61], +[0,-13980,-7141,-1276,-1460,-1565,-13981,-2177,-2400,-2551], +[0,-86,-9404,-3615,-3244,-190,-5121,-4020,-237,-4776,-3048,-3136,-3660,-3759,-8216,-7211,-4036,-3037,-3199,-3041,-9146, +-427,-428,-533,-10525,-739,-928,-932,-940,-958,-959,-960,-967,-999,-1026,-1077,-1110,-1344,-1415,-1442,-1534,-1623,-1942, +-2125,-2379,-2410,-2411], +[0,-1415,-2410,-6915,-2006,-3634], [1,3,8884], [0,8885,8886,8887,5], -[0,-20,-829,-362,-16,-130], -[0,-634,-137,-22,-19,-292,-169,-98,-620,-328,-8794,-712,-424,-1,-12,-76,-25,-40,-28,-9,-378,-78,-139,-400,-418,-648,-526, --18,-997,-72,-3,-4,-7,-2,-17,-92], -[0,-211,-8793,-17,-779,-2,-436], +[0,-668,-909,-1639,-2177,-2231], +[0,-4036,-3199,-427,-428,-525,-527,-534,-556,-559,-13982,-560,-930,-932,-940,-966,-967,-1077,-1107,-1344,-1413,-1471, +-1475,-1481,-1483,-1490,-1492,-1534,-1607,-1650,-1654,-1942,-2125,-2410,-2501,-2503], +[0,-2376,-13983,-2501,-5932,-2410,-3018], [1,3,8889], [0,8890,8891,8892,9], -[0,-1257,-58,-215,-1129,-153], -[0,-320,-5,-103,-1924,-417,-1311,-2055,-970,-2,-30], -[0,-46,-8792,-8791,-4227,-1129,-376,-1216,-318,-718,-1210,-436,-2,-37,-724,-8790,-2585], +[0,-4106,-719,-865,-1672,-2392], +[0,-2581,-3037,-3664,-11187,-1763,-1806,-5326,-3246,-2410,-2469], +[0,-3445,-13984,-13985,-13986,-1672,-1671,-6857,-4058,-7773,-7684,-3018,-2410,-687,-5732,-13987,-5731], [1,3,8894], [0,8895,8896,8897,6], -[0,-8789,-8788], -[0,-319,-109,-1201,-69,-5,-13,-4666,-26,-207,-3,-7,-14,-33,-2], -[0,-2,-360,-8787,-6138,-8786], +[0,-13988,-13989], +[0,-3267,-3035,-9939,-3621,-3037,-664,-11072,-767,-834,-1654,-2125,-2127,-2379,-2410], +[0,-2410,-3272,-13990,-3107,-13991], [1,3,8899], [0,8900,8901,8902,5], -[0,-2167,-836,-207,-208,-1581,-4228,-8785,-8784,-8783,-8782,-2443,-8781,-8780], -[0,-51,-15,-201,-6,-2986,-350,-23,-7,-16,-2326,-807,-124,-252,-8779,-498,-180,-2,-1201,-5,-8778,-47,-142,-1204,-137,-3457, --8777,-1635,-2659,-2331,-3074,-478], -[0,-2,-141,-1368,-782,-436,-593], +[0,-2558,-502,-834,-461,-462,-13981,-13992,-13993,-13994,-13995,-8214,-13996,-13997], +[0,-519,-1788,-523,-2006,-13998,-1001,-1548,-2125,-2177,-11685,-1821,-2402,-367,-13999,-1100,-1972,-2410,-9939,-3037, +-14000,-3040,-3044,-8890,-3199,-6744,-14001,-7772,-4364,-11347,-11708,-262], +[0,-2410,-3966,-11997,-5558,-3018,-3116], [1,3,8904], [0,8905,8906,8907,5], -[0,-142,-1449,-137,-8776,-23,-567,-8775,-8774,-16], -[0,-320,-5,-103,-1924,-1129,-1311,-2055,-970,-2,-30], -[0,-46,-1129,-107,-1216,-318,-718,-1210,-436,-2,-3390,-1533,-783,-1654,-2412,-2349,-775,-2041,-263], +[0,-3044,-3851,-3199,-14002,-1548,-1681,-14003,-14004,-2177], +[0,-2581,-3037,-3664,-11187,-1672,-1806,-5326,-3246,-2410,-2469], +[0,-3445,-1672,-3862,-6857,-4058,-7773,-7684,-3018,-2410,-7460,-1306,-5389,-6821,-8990,-10674,-6693,-5879,-1573], [1,3,8909], [0,0,37,8910,8], -[0,-2,-686,-3144,-3143], +[0,-2410,-2552,-10054,-10055], [1,3,8912], [0,8913,8914,8915,5], -[0,-23,-142], -[0,-320,-5,-103,-1311,-2055,-970,-2,-30], -[0,-46,-436,-2,-8773,-8772,-1922,-1388,-1059,-8771,-8770,-8769,-8768,-8767], +[0,-1548,-3044], +[0,-2581,-3037,-3664,-1806,-5326,-3246,-2410,-2469], +[0,-3445,-3018,-2410,-14005,-14006,-11315,-8199,-6899,-14007,-14008,-14009,-14010,-14011], [1,3,8917], [0,8918,8919,7,9], -[0,-276,-88,-1293], -[0,-8,-9,-1,-7,-57,-33,-4,-2,-29,-5,-18,-725,-8766,-181,-10,-12,-19,-5268,-22], +[0,-1460,-1646,-2270], +[0,-1415,-1344,-932,-2125,-2375,-2379,-1942,-2410,-3136,-3037,-1534,-5686,-14012,-960,-958,-940,-428,-7770,-427], [1,3,8921], [0,8922,8923,8924,5], -[0,-4226,-2702,-206,-913,-467,-493,-2190], -[0,-2627,-5,-47,-22,-19,-51,-618,-237,-1,-1335,-2985,-118,-6,-641,-489,-2], -[0,-2,-81,-280,-1485,-635,-8765,-8764], +[0,-14013,-3686,-1111,-1418,-1630,-1849,-2061], +[0,-5028,-3037,-3040,-427,-428,-519,-757,-825,-932,-945,-14014,-999,-2006,-2115,-2153,-2410], +[0,-2410,-2384,-7440,-2414,-3694,-14015,-14016], [1,3,8926], [0,0,8927,8928,4], -[0,-11,-21,-140,-1239,-2443,-4226,-5,-22,-19,-86,-425,-1,-12,-8,-4,-2], -[0,-2,-81,-5944,-280,-581,-75,-1485,-635], +[0,-23,-40,-42,-5121,-8214,-14013,-3037,-427,-428,-533,-774,-932,-940,-1415,-1942,-2410], +[0,-2410,-2384,-4037,-7440,-7144,-4004,-2414,-3694], [1,3,8930], [0,8931,8932,8933,10], -[0,-1047,-20,-119,-2534,-8763,-93,-72,-8762,-4254,-7,-8761,-2,-3710], -[0,-5,-89,-4,-85,-124], -[0,-2,-3654,-2365,-381,-860,-666], +[0,-8200,-668,-679,-6475,-14017,-1645,-1650,-14018,-13709,-2125,-14019,-2410,-4297], +[0,-3037,-928,-1942,-2319,-2402], +[0,-2410,-5058,-9946,-985,-4791,-7641], [1,3,8935], [0,0,0,8936,6], -[0,-733,-4225,-593,-1657,-45,-44,-1368], +[0,-4165,-14020,-3116,-6784,-3214,-2387,-11997], [1,3,8938], [0,8939,8940,8941,8], -[0,-538,-1571,-20,-58,-207,-28,-101,-93,-72,-128,-16,-44,-3347], -[0,-713,-1625,-109,-1201,-458,-411,-843,-3689,-69,-5,-1098,-1204,-137,-13,-9,-4296,-3,-65,-15,-4,-7,-33,-196,-1289,-5529, --2,-4455], -[0,-37,-2,-539], +[0,-22,-644,-668,-719,-834,-1107,-1442,-1645,-1650,-2114,-2177,-2387,-7765], +[0,-305,-8355,-3035,-9939,-3036,-3660,-8566,-4811,-3621,-3037,-3200,-8890,-3199,-664,-1344,-13325,-1654,-1771,-1788,-1942, +-2125,-2379,-2388,-2389,-6355,-2410,-12515], +[0,-687,-2410,-8170], [1,3,8943], [0,0,8944,8945,5], -[0,-8,-9,-23,-7,-196,-57,-753,-4,-8760,-503,-2,-29,-5,-8759,-6297,-8758,-1220,-120,-8757,-8756,-1596,-1785,-2309,-8755, --298,-8754], -[0,-217,-196,-8753,-4,-353,-2], +[0,-1415,-1344,-1548,-2125,-2388,-2375,-1591,-1942,-14021,-720,-2410,-3136,-3037,-14022,-2390,-14023,-6630,-2174,-14024, +-14025,-12348,-2449,-12349,-14026,-796,-14027], +[0,-7148,-2388,-14028,-1942,-727,-2410], [1,3,8947], [0,8948,8949,7,6], -[0,-3347], -[0,-458,-5,-135,-28,-65,-248,-196,-8752,-2], +[0,-7765], +[0,-3036,-3037,-714,-1107,-1771,-1847,-2388,-14029,-2410], [1,3,8951], [0,8952,8953,7,4], -[0,-3003,-925,-119,-1346,-36,-89,-4224,-8751,-164,-902,-641,-14,-130,-2599,-1093,-311,-687], -[0,-478,-231,-252,-162,-5,-1098,-1387,-1544,-38,-2345,-4,-128,-415,-77,-599,-220,-2784,-175,-4223,-171,-2,-30,-2755], +[0,-13389,-653,-679,-734,-812,-928,-14030,-14031,-1863,-1907,-2115,-2127,-2231,-5354,-3535,-2654,-2369], +[0,-262,-4062,-367,-3198,-3037,-3200,-8349,-1055,-1889,-10815,-1942,-2114,-2132,-2162,-2271,-2299,-2301,-2334,-14032, +-2391,-2410,-2469,-2817], [1,3,8955], [0,8956,0,8957,4], -[0,-89,-1327], -[0,-37,-1368,-141,-5058,-860,-381,-2,-8750], +[0,-928,-1101], +[0,-687,-11997,-3966,-8930,-4791,-985,-2410,-14033], [1,3,8959], [0,8960,8961,8962,6], -[0,-8749], -[0,-80,-63,-232,-59,-1494,-14,-97,-8748], -[0,-1413,-31,-100], +[0,-14034], +[0,-350,-351,-3561,-633,-2123,-2127,-2250,-14035], +[0,-6473,-3264,-1599], [1,3,8964], [0,0,8965,8966,10], -[0,-54,-3,-4545,-167,-416,-8747,-8746,-1010,-8745,-532,-8744,-146,-243,-8743,-177,-347,-8742,-8741,-8740], -[0,-650,-318,-437,-6296], +[0,-1127,-1654,-11875,-1132,-2111,-14036,-14037,-1156,-14038,-1138,-14039,-2234,-1134,-14040,-1144,-1148,-14041,-14042, +-14043], +[0,-1456,-4058,-2451,-2394], [1,3,8968], [0,0,8969,8970,5], -[0,-59,-1,-1332,-8739,-39,-8738,-112], -[0,-659,-3618,-8737,-8736,-3005,-1419,-1641,-8735,-8734,-8733,-8732,-8731], +[0,-633,-932,-1032,-14044,-2322,-14045,-2416], +[0,-770,-5374,-14046,-14047,-13351,-6131,-7372,-14048,-14049,-14050,-14051,-14052], [1,3,8972], [0,8973,8974,8975,5], -[0,-40,-2864,-8730,-3251], -[0,-65,-645,-112], -[0,-1929,-4222,-73,-1704,-1944,-8729,-455], +[0,-1077,-1462,-14053,-8984], +[0,-1771,-1860,-2416], +[0,-10838,-14054,-3215,-5093,-9474,-14055,-4112], [1,3,8977], [0,8978,8979,8980,9], -[0,-116,-261,-113], -[0,-60,-135,-58,-3,-1494,-27], -[0,-2775,-99,-410,-245,-1613,-905], +[0,-615,-1640,-2105], +[0,-510,-714,-719,-1654,-2123,-2210], +[0,-2398,-3690,-3691,-5827,-9292,-1791], [1,3,8982], [0,8983,8984,8985,11], -[0,-113,-1869], -[0,-198,-3,-1], -[0,-2775,-1613,-905], +[0,-2105,-822], +[0,-1722,-1654,-932], +[0,-2398,-9292,-1791], [1,3,8987], [0,8988,0,7,4], -[0,-88,-8728,-20], +[0,-1646,-14056,-668], [1,3,8990], [0,8991,8992,8993,9], -[0,-8727], -[0,-1071,-19,-1,-8726,-534,-823,-343,-81,-2,-83,-34], -[0,-2,-436,-635,-202,-132,-939,-4740,-494,-106,-4221], +[0,-14057], +[0,-5918,-428,-932,-14058,-815,-1002,-1772,-2384,-2410,-2411,-2541], +[0,-2410,-3018,-3694,-3590,-2444,-8113,-10665,-1631,-4055,-14059], [1,3,8995], [0,8996,129,8997,4], -[0,-924,-8725,-344], -[0,-1427,-540,-8724], +[0,-737,-14060,-1641], +[0,-5398,-8038,-14061], [1,3,8999], [0,9000,9001,259,4], -[0,-8723,-1092,-221,-93,-259], -[0,-48,-2689,-874,-69,-5,-43,-2986,-89,-1,-3,-157,-16,-153,-2,-83], +[0,-14062,-3544,-1600,-1645,-2548], +[0,-190,-3800,-3661,-3621,-3037,-652,-13998,-928,-932,-1654,-1978,-2177,-2392,-2410,-2411], [1,3,9003], [0,9004,9005,9006,11], -[0,-8722], -[0,-5,-124,-2], -[0,-8721,-4220,-1761,-2984,-8720,-4219,-2,-42], +[0,-14063], +[0,-3037,-2402,-2410], +[0,-14064,-14065,-3118,-14066,-14067,-14068,-2410,-856], [1,3,9008], [0,0,131,9009,6], -[0,-956,-588,-3006,-2,-42,-4219,-124], +[0,-4121,-4123,-13188,-2410,-856,-14068,-2402], [1,3,9011], [0,0,0,9012,4], -[0,-99,-42,-100,-124,-2,-4220], +[0,-3690,-856,-1599,-2402,-2410,-14065], [1,3,9014], [0,9015,9016,9017,4], -[0,-228,-2], -[0,-2131,-69,-5,-736,-56,-66,-3,-611,-156], -[0,-733,-42,-8719,-45], +[0,-1610,-2410], +[0,-3802,-3621,-3037,-3628,-756,-1405,-1654,-1657,-2359], +[0,-4165,-856,-14069,-3214], [1,3,9019], [0,9020,9021,9022,4], -[0,-58,-551,-752,-2536,-8718,-60,-135,-236,-72,-2484,-8717], -[0,-13], -[0,-8716,-100,-8715,-8714,-4218,-3267,-271,-1413,-114], +[0,-719,-2536,-1705,-6455,-14070,-510,-714,-1666,-1650,-7418,-14071], +[0,-664], +[0,-14072,-1599,-14073,-14074,-14075,-8676,-3110,-6473,-3262], [1,3,9024], [0,106,9025,7,5], -[0,-1357,-109,-732,-69,-8713,-5,-13,-244,-56,-3,-8712,-1129,-8711,-4,-8710,-146,-33,-1289,-1596], +[0,-234,-3035,-4269,-3621,-14076,-3037,-664,-665,-756,-1654,-14077,-1672,-14078,-1942,-14079,-2234,-2379,-2389,-12348], [1,3,9027], [0,9028,9029,7,10], -[0,-28,-123,-1580,-574,-36,-44,-96,-299,-534,-215,-5406,-2931,-8709,-602,-8708], -[0,-43,-605,-13,-32,-9,-569,-3,-1819,-566,-690,-27,-1,-1818,-7,-6014,-55,-376,-797,-33,-2353,-4,-8707,-48,-6438,-1385, --186,-2,-109,-5,-314,-18,-162,-69,-269,-413,-1007,-8706,-3124,-313,-1536,-4801,-8705,-2443,-244,-1270,-3752,-1632,-83, --8704,-146,-8703,-181,-8702,-8701,-732,-2379], +[0,-1107,-2446,-483,-809,-812,-2387,-2550,-640,-815,-865,-7023,-496,-14080,-2080,-14081], +[0,-652,-1857,-664,-1168,-1344,-1392,-1654,-1682,-1691,-2071,-2210,-932,-1692,-2125,-3729,-1110,-1671,-2245,-2379,-10418, +-1942,-14082,-190,-1250,-8436,-2211,-2410,-3035,-3037,-1243,-1534,-3198,-3621,-4372,-3041,-1244,-14083,-10419,-1252, +-1261,-10420,-14084,-8214,-665,-3625,-3910,-7969,-2411,-14085,-2234,-14086,-960,-14087,-14088,-4269,-9660], [1,3,9031], [0,0,9032,9033,5], -[0,-43,-567,-13,-207,-28,-811,-3,-44,-219,-2986,-1,-5110,-89,-55,-119,-88,-1449,-48,-164,-398,-2,-109,-1201,-69,-2346, --649,-713,-725,-1857,-8700,-8699,-83,-8698,-146,-826,-4217,-839,-2379,-8697,-3641,-2615,-8696,-8695], -[0,-733,-4225,-593,-1657,-45], +[0,-652,-1681,-664,-834,-1107,-1498,-1654,-2387,-2518,-13998,-932,-8526,-928,-1110,-679,-1646,-3851,-190,-1863,-1874, +-2410,-3035,-9939,-3621,-10755,-1461,-305,-5686,-1028,-14089,-14090,-2411,-14091,-2234,-971,-14092,-429,-9660,-14093, +-5201,-5206,-14094,-14095], +[0,-4165,-14020,-3116,-6784,-3214], [1,3,9035], [0,9036,112,9037,4], -[0,-839,-19,-22,-2614], -[0,-360,-338,-45,-2,-73,-389,-1,-334,-368], +[0,-429,-428,-427,-5209], +[0,-3272,-3217,-3214,-2410,-3215,-4132,-932,-5208,-3784], [1,3,9039], [0,9040,9041,9042,10], -[0,-8694,-1634], -[0,-3689,-69,-5,-8693,-404,-8692,-72,-3,-1501,-196,-2,-3881], -[0,-733], +[0,-14096,-7829], +[0,-4811,-3621,-3037,-14097,-740,-14098,-1650,-1654,-1938,-2388,-2410,-2412], +[0,-4165], [1,3,9044], [0,9045,9046,9047,6], -[0,-8691,-8690,-215,-1471,-222,-1828,-38,-902,-2498,-2195,-2497,-4822,-77,-799,-795,-393], -[0,-8689,-29,-3295,-3767,-5,-8688,-8687,-2440,-22,-19,-476,-1,-12,-9,-8,-8686,-18,-8685,-1503,-805,-4,-8684,-57,-2], -[0,-24,-432,-77,-222,-393,-370,-107,-38,-2], +[0,-14099,-14100,-865,-2773,-1521,-1551,-1889,-1907,-7164,-1915,-7165,-10283,-2162,-2232,-2383,-2286], +[0,-14101,-3136,-8334,-3759,-3037,-14102,-14103,-8336,-427,-428,-620,-932,-940,-1344,-1415,-14104,-1534,-14105,-1916, +-1927,-1942,-14106,-2375,-2410], +[0,-775,-3754,-2162,-1521,-2286,-3209,-3862,-1889,-2410], [1,3,9049], [0,9050,9051,9052,8], -[0,-4587,-116,-20,-2247,-1565,-4242,-4779,-4433,-1523,-88,-8683,-8682,-596,-978,-742], -[0,-1342,-198,-7,-33,-196,-8681,-2], -[0,-1485,-2,-8680,-3730,-451,-1202,-2406], +[0,-11661,-615,-668,-696,-715,-13789,-10511,-12631,-1575,-1646,-14107,-14108,-2433,-2525,-2546], +[0,-829,-1722,-2125,-2379,-2388,-14109,-2410], +[0,-2414,-2410,-14110,-4159,-5897,-9800,-9069], [1,3,9054], [0,9055,9056,9057,8], -[0,-58,-130], -[0,-208,-3,-16], -[0,-938,-1288,-112,-227,-776,-45,-338,-1050,-339,-2034,-2988,-430,-1972,-1415,-60,-629], +[0,-719,-2231], +[0,-461,-1654,-2177], +[0,-9216,-2415,-2416,-1644,-6684,-3214,-3217,-8108,-3184,-6052,-13770,-4795,-8165,-6434,-510,-5867], [1,3,9059], [0,0,9060,9061,11], -[0,-208,-16], -[0,-37,-541,-2378,-8679,-338,-1663,-1050,-45,-270,-8678,-1616,-1224,-776,-227,-580,-1648,-2467,-3176,-165,-73,-3175,-938], +[0,-461,-2177], +[0,-687,-6454,-9696,-14111,-3217,-6505,-8108,-3214,-3756,-14112,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838, +-3215,-9698,-9216], [1,3,9063], [0,9064,9065,9066,9], -[0,-2102,-1547,-914,-639,-1114,-130,-112,-1479,-4838], -[0,-50,-11,-21,-49,-62,-1970,-944,-86,-5182,-26,-151,-237,-1,-12,-10,-9,-8,-1150,-18,-1133,-65,-4,-134,-175,-17], -[0,-938,-112,-1288,-17,-2496], +[0,-4287,-1046,-1401,-2168,-2182,-2231,-2416,-2510,-10059], +[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-8206,-767,-824,-825,-932,-940,-958,-1344,-1415,-1424,-1534,-1626,-1771,-1942, +-2251,-2334,-2501], +[0,-9216,-2416,-2415,-2501,-7172], [1,3,9068], [0,9069,9070,9071,5], -[0,-8677], -[0,-3,-1,-116,-66,-76,-10,-67,-84,-131], -[0,-850,-114,-5376,-1376], +[0,-14113], +[0,-1654,-932,-615,-1405,-966,-958,-968,-943,-974], +[0,-6555,-3262,-7232,-9594], [1,3,9073], [0,9074,0,9075,4], -[0,-90,-47,-87,-8676,-8675,-8674,-8673,-8672,-8671,-8670,-8669,-6535,-8668,-8667,-8666,-8665,-8664,-8663,-8662,-8661, --8660,-8659,-8658,-8657,-8656,-8655,-8654,-8653,-8652,-8651,-4036,-6534,-8650,-8649,-8648,-8647,-8646,-8645,-8644,-8643, --5742,-6533,-8642,-8641,-8640,-8639,-8638,-8637,-8636,-8635,-8634,-8633,-8632,-8631,-8630,-8629,-8628,-8627,-8626,-8625, --8624,-8623,-8622, --8621,-8620], -[0,-435,-1483,-1689,-1688,-6,-108,-129,-127,-102,-24,-1430,-1429,-52,-184,-53], +[0,-44,-3040,-3052,-14114,-14115,-14116,-14117,-14118,-14119,-14120,-14121,-432,-14122,-14123,-14124,-14125,-14126,-14127, +-14128,-14129,-14130,-14131,-14132,-14133,-14134,-14135,-14136,-14137,-14138,-14139,-433,-434,-14140,-14141,-14142, +-14143,-14144,-14145,-14146,-14147,-5257,-435,-14148,-14149,-14150,-14151,-14152,-14153,-14154,-14155,-14156,-14157, +-14158,-14159,-14160,-14161,-14162,-14163,-14164,-14165,-14166,-14167,-14168, +-14169,-14170], +[0,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], [1,3,9077], [0,9078,9079,174,10], -[0,-28,-470,-23,-16,-3871], -[0,-117,-221,-3,-3930,-82], +[0,-1107,-1351,-1548,-2177,-2529], +[0,-1452,-1600,-1654,-1766,-2198], [1,3,9081], [0,0,9082,7,10], -[0,-513,-80,-63,-319,-5,-110,-4,-14,-44,-2,-30], +[0,-4066,-350,-351,-3267,-3037,-589,-1942,-2127,-2387,-2410,-2469], [1,3,9084], [0,0,9085,9086,5], -[0,-320,-366,-4269,-20,-3614,-89,-206,-1160,-221,-8619,-65,-8618,-523,-1742,-30], -[0,-31,-271,-941], +[0,-2581,-50,-13526,-668,-5382,-928,-1111,-1273,-1600,-14171,-1771,-14172,-1948,-3768,-2469], +[0,-3264,-3110,-7723], [1,3,9088], [0,9089,9090,7,5], -[0,-513,-80,-231,-63,-232,-728,-8617,-1346,-1653,-89,-4224,-2983,-527,-297,-8616,-1518,-606,-1660,-523,-14,-415,-2531, --311,-8615], -[0,-1096,-5,-103,-5187,-1567,-1,-1552,-4,-2,-30], +[0,-4066,-350,-4062,-351,-3561,-4785,-14173,-734,-6860,-928,-14030,-14174,-1431,-1588,-14175,-1651,-1852,-6568,-1948, +-2127,-2132,-6569,-2654,-14176], +[0,-3376,-3037,-3664,-8189,-672,-932,-944,-1942,-2410,-2469], [1,3,9092], [0,0,9093,9094,4], -[0,-15,-28,-1561,-9,-78,-375,-1,-14,-175,-618,-56,-1830,-3404,-1241,-8614,-10,-812], -[0,-132,-727,-209,-337,-91], +[0,-1788,-1107,-849,-1344,-1471,-1989,-932,-2127,-2334,-757,-756,-1485,-7324,-4916,-14177,-958,-1488], +[0,-2444,-5112,-3844,-3323,-4865], [1,3,9096], [0,9097,9098,9099,4], -[0,-2794,-3181], -[0,-59,-8613,-1,-66,-3,-611,-1046,-4476,-247], -[0,-247,-163], +[0,-2243,-9649], +[0,-633,-14178,-932,-1405,-1654,-1657,-8276,-12323,-2424], +[0,-2424,-2265], [1,3,9101], [0,0,9102,9103,5], -[0,-3264,-2329,-8612,-662,-5,-1354,-1766,-43,-26,-8611,-89,-1,-1333,-9,-8,-8610,-791,-1128,-604,-81,-2,-205], -[0,-865,-105,-401,-172,-113,-1949,-1948,-743,-1077], +[0,-8843,-11419,-14179,-357,-3037,-458,-2917,-652,-767,-14180,-928,-932,-1023,-1344,-1415,-14181,-2884,-1730,-1971,-2384, +-2410,-2531], +[0,-4213,-1334,-1342,-1961,-2105,-9172,-9173,-2533,-5388], [1,3,9105], [0,9106,9107,9108,4], -[0,-677,-2982,-936,-444,-1153,-8609,-483], -[0,-8608,-246,-408,-5,-43,-4,-147,-260,-81,-233,-2,-34], -[0,-360,-665,-1427,-4823,-165,-287,-374,-274,-4216,-851,-429,-389,-507,-934,-133], +[0,-4231,-14182,-9596,-1015,-1395,-14183,-5358], +[0,-14184,-5334,-4251,-3037,-652,-1942,-2094,-2100,-2384,-2399,-2410,-2541], +[0,-3272,-7644,-5398,-10280,-1838,-1958,-2083,-2093,-14185,-6233,-6231,-4132,-6408,-10919,-2427], [1,3,9110], [0,9111,14,9112,4], -[0,-8607], -[0,-4244,-850,-1417,-2519,-547,-8606,-670,-4468,-1374], +[0,-14186], +[0,-13747,-6555,-6240,-6814,-3960,-14187,-5839,-12411,-9682], [1,3,9114], [0,9115,9116,9117,5], -[0,-677,-5290,-1078], -[0,-408,-5,-43,-908,-2343,-3094,-4,-147,-260,-81,-233,-2,-34], -[0,-505,-4215,-132,-202,-274,-4216,-374,-841,-428,-8605,-8604,-3937,-1657,-100,-31,-506,-934,-360,-141,-8603,-745], +[0,-4231,-7700,-5356], +[0,-4251,-3037,-652,-1618,-10922,-10923,-1942,-2094,-2100,-2384,-2399,-2410,-2541], +[0,-9590,-14188,-2444,-3590,-2093,-14185,-2083,-10918,-9589,-14189,-14190,-1703,-6784,-1599,-3264,-6597,-10919,-3272, +-3966,-14191,-2487], [1,3,9119], [0,0,222,9120,5], -[0,-4232,-4677,-1636,-1482,-248,-2320,-405,-2177,-254,-1060], +[0,-13875,-11002,-7727,-2430,-1847,-11845,-7421,-2440,-5550,-6836], [1,3,9122], [0,9123,0,9124,8], -[0,-773,-6464,-8602,-8601,-1962,-197], -[0,-855,-1787,-3201,-8600,-1426,-245,-943], +[0,-7304,-1081,-14192,-14193,-8578,-2062], +[0,-5408,-2432,-9506,-14194,-5409,-5827,-7347], [1,3,9126], [0,9127,9128,9129,6], -[0,-8599,-1348,-20,-8598,-16,-2436,-1178,-5447,-2213,-1837], -[0,-34,-51,-3150,-138,-1877,-8597], -[0,-158,-2349,-4580,-2396,-8596,-280,-581,-37,-358,-451,-663], +[0,-14195,-623,-668,-14196,-2177,-8418,-728,-6848,-1514,-1394], +[0,-2541,-519,-9982,-2269,-686,-14197], +[0,-1764,-10674,-11693,-9258,-14198,-7440,-7144,-687,-3551,-5897,-9318], [1,3,9131], [0,0,0,9132,4], -[0,-2402,-195,-8595,-8594,-8593,-8592,-8591,-8590,-8589,-8588,-8587,-8586,-8585,-8584,-8583,-8582,-4214,-4213], +[0,-9171,-2435,-14199,-14200,-14201,-14202,-14203,-14204,-14205,-14206,-14207,-14208,-14209,-14210,-14211,-14212,-14213, +-14214], [1,3,9134], [0,9135,9136,9137,10], -[0,-464,-988], -[0,-766,-15,-976,-208,-3,-1,-239], -[0,-723,-195,-4800], +[0,-1983,-1977], +[0,-515,-1788,-2568,-461,-1654,-932,-5834], +[0,-6747,-2435,-10433], [1,3,9139], [0,0,9140,9141,5], -[0,-575,-3,-82], -[0,-195,-5146], +[0,-739,-1654,-2198], +[0,-2435,-8396], [1,3,9143], [0,9144,9145,48,10], -[0,-754,-344,-639], -[0,-50,-11,-21,-49,-62,-1970,-944,-86,-26,-151,-237,-1,-12,-10,-277,-9,-8,-18,-262,-2414,-65,-4,-134,-17], +[0,-1543,-1641,-2168], +[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-1041,-1344,-1415,-1534,-1623,-8913,-1771,-1942, +-2251,-2501], [1,3,9147], [0,9148,9149,9150,5], -[0,-5487,-4899], -[0,-927,-59,-43,-3,-235,-8581,-8580,-112], -[0,-5412,-73,-2402,-195,-165,-676,-163,-987,-429], +[0,-6614,-9730], +[0,-509,-633,-652,-1654,-1939,-14215,-14216,-2416], +[0,-6984,-3215,-9171,-2435,-1838,-5101,-2265,-1985,-6231], [1,3,9152], [0,9153,9154,9155,9], -[0,-657,-8579,-344,-464,-210,-284,-8578], -[0,-310,-8577,-5327,-8576,-3298,-4212,-1089,-5,-8575,-2088,-8574,-3772,-1047,-1377,-103,-1569,-26,-470,-2157,-1393,-604, --2700,-8573,-886,-555,-3391,-2,-30], -[0,-3878,-105,-8572,-1949,-1948,-113,-401,-284,-865], +[0,-1069,-14217,-1641,-1983,-2400,-2426,-14218], +[0,-2832,-14219,-7453,-14220,-8317,-14221,-3713,-3037,-14222,-4966,-14223,-3715,-8200,-9581,-3664,-649,-767,-1351,-2987, +-8065,-1971,-3727,-14224,-2325,-2386,-7457,-2410,-2469], +[0,-2439,-1334,-14225,-9172,-9173,-2105,-1342,-2426,-4213], [1,3,9157], [0,9158,9159,9160,4], -[0,-2356], -[0,-493], -[0,-2177,-2320,-4233,-2356,-1927,-405,-942,-248,-1217,-2712,-782,-1454,-8571], +[0,-10383], +[0,-1849], +[0,-2440,-11845,-13874,-10383,-11070,-7421,-7420,-1847,-6845,-3592,-5558,-3591,-14226], [1,3,9162], [0,9163,9164,9165,6], -[0,-442,-156], -[0,-927,-3,-235,-113,-16,-8570], -[0,-1609,-91,-8569,-1507,-165,-73,-8568,-8567,-8566,-8565,-2177,-2981,-2774,-663], +[0,-1582,-2359], +[0,-509,-1654,-1939,-2105,-2177,-14227], +[0,-9733,-4865,-14228,-1819,-1838,-3215,-14229,-14230,-14231,-14232,-2440,-14233,-2442,-9318], [1,3,9167], [0,0,9168,9169,4], -[0,-56,-66,-2558,-1498], -[0,-2370,-510,-455,-1786], +[0,-756,-1405,-6186,-1991], +[0,-9791,-5835,-4112,-2443], [1,3,9171], [0,9172,9173,260,5], -[0,-528,-5342,-8564,-8563,-3398], -[0,-768,-159,-8562,-609,-1126,-1795,-488,-39], +[0,-1370,-7391,-14234,-14235,-7400], +[0,-468,-753,-14236,-1797,-1798,-2151,-2155,-2322], [1,3,9175], [0,0,183,260,8], [1,3,9177], [0,0,9178,9179,4], -[0,-161,-49,-62,-48,-1745,-58,-1,-12,-25,-55,-9,-8,-18,-791,-65,-4,-4675,-4674,-134,-2,-83], -[0,-123,-2492,-3077,-8561], +[0,-32,-86,-3307,-190,-3563,-719,-932,-940,-967,-1110,-1344,-1415,-1534,-2884,-1771,-1942,-11013,-11014,-2251,-2410,-2411], +[0,-2446,-7230,-11582,-14237], [1,3,9181], [0,9182,9183,9184,10], -[0,-1961,-207,-495,-1707], -[0,-8560,-381,-2321,-4304], -[0,-293,-8559,-456,-2113,-75], +[0,-8609,-834,-1496,-5037], +[0,-14238,-985,-11747,-13279], +[0,-507,-14239,-4043,-4045,-4004], [1,3,9186], [0,0,9187,9188,5], -[0,-85,-117], -[0,-195,-409,-280,-581,-947], +[0,-2319,-1452], +[0,-2435,-3926,-7440,-7144,-5574], [1,3,9190], [0,9191,9192,9193,5], -[0,-5373,-8558,-1076,-4789], -[0,-1639,-13,-2009,-503,-298,-9,-66,-72,-3,-5027,-7,-120,-27], -[0,-8557,-1677,-2303,-387,-2004,-780], +[0,-7247,-14240,-5504,-10482], +[0,-7465,-664,-6774,-720,-796,-1344,-1405,-1650,-1654,-9075,-2125,-2174,-2210], +[0,-14241,-5890,-12665,-5889,-6908,-5887], [1,3,9195], [0,0,9196,9197,8], -[0,-731,-730], -[0,-158,-451,-2538,-409], +[0,-4298,-4300], +[0,-1764,-5897,-6444,-3926], [1,3,9199], [0,0,9200,9201,4], -[0,-50,-11,-21,-178,-94,-278,-1,-191,-10,-3,-65,-15,-7,-14,-273,-4630,-112], -[0,-437,-409,-509,-1623,-941,-2980,-8556,-293], +[0,-21,-23,-40,-43,-528,-535,-932,-934,-958,-1654,-1771,-1788,-2125,-2127,-2128,-11290,-2416], +[0,-2451,-3926,-5874,-8472,-7723,-14242,-14243,-507], [1,3,9203], [0,9204,9205,9206,11], -[0,-2292,-8555,-8554], -[0,-5,-949,-3586,-960,-4211,-858,-764,-8553,-79,-2,-104,-30,-8552,-74,-882,-8551,-8550,-8549,-8548], -[0,-102,-74,-873,-95,-53,-129,-127], +[0,-14244,-14245,-14246], +[0,-3037,-4837,-5589,-3899,-14247,-4838,-786,-14248,-1449,-2410,-2466,-2469,-14249,-2476,-2483,-14250,-14251,-14252, +-14253], +[0,-3160,-2476,-3944,-3162,-3100,-3095,-3098], [1,3,9208], [0,0,9209,9210,5], -[0,-3,-1,-66,-110,-125,-1186,-76,-10,-67,-84,-214,-131], -[0,-105,-1249,-980], +[0,-1654,-932,-1405,-589,-2293,-585,-966,-958,-968,-943,-963,-974], +[0,-1334,-4616,-2453], [1,3,9212], [0,9213,9214,7,4], -[0,-2174], -[0,-85,-699], +[0,-2456], +[0,-2319,-1754], [1,3,9216], [0,9217,9218,7,6], -[0,-1691,-89,-119,-657,-8547,-8546,-8545,-8544,-8543,-8542,-8541,-8540,-8539,-8538,-8537,-8536,-8535,-8534,-8533,-8532, --8531,-8530,-8529,-8528,-8527,-8526], -[0,-567,-193,-836,-1560,-381,-758,-324,-149,-104,-475,-20,-36,-118,-262,-604,-2306,-4230,-219,-4016,-215,-350,-3952,-7, --16,-889,-1290,-30,-504,-152,-41,-349,-568,-33,-1174,-40,-499,-3917,-1497,-2162,-252,-1449,-2088,-8525,-1930,-4579,-93, --562,-687,-2325,-4475,-1190,-3012,-661,-1150,-344,-188,-138,-2,-29,-5,-1577,-501,-8524, --2424,-1974,-8523,-1754,-162,-8522,-2346,-929,-1578,-8521,-8520,-8519,-137,-2366,-4240,-1225,-6136,-4486,-4549,-3782, --8518,-2298,-4776,-8517,-5933,-185,-3086,-1017,-8516,-994,-5390,-6162,-8515,-6161,-843,-1686,-3843,-8514,-1089,-955, --8513,-4319,-8512,-8511,-4896,-2362,-8510,-3645,-8509,-8508,-2770,-4548,-8507,-1755,-8506,-4210,-8505,-3075,-8504,-8503, --8502,-8501,-8500,-8499, --8498,-8497,-8496], +[0,-5193,-928,-679,-1069,-14254,-14255,-14256,-14257,-14258,-14259,-14260,-14261,-14262,-14263,-14264,-14265,-14266, +-14267,-14268,-14269,-14270,-14271,-14272,-14273,-14274,-14275], +[0,-1681,-469,-502,-864,-985,-1371,-1816,-1805,-2466,-651,-668,-812,-999,-1623,-1971,-12508,-13969,-2518,-669,-865,-1001, +-1400,-2125,-2177,-2240,-2324,-2469,-680,-708,-1004,-1047,-1658,-2379,-807,-1077,-1098,-1981,-1999,-2694,-367,-3851, +-4966,-14276,-10697,-11705,-1645,-1878,-2369,-11697,-12324,-481,-12971,-695,-1424,-1641,-1729,-2269,-2410,-3136,-3037, +-512,-929,-14277, +-8874,-7982,-14278,-3269,-3198,-14279,-10755,-480,-511,-14280,-14281,-14282,-3199,-9941,-13839,-5977,-3124,-12274,-11855, +-3637,-14283,-13376,-10519,-14284,-4105,-3048,-11328,-1025,-14285,-1767,-7162,-2991,-14286,-2992,-8566,-5363,-2946, +-14287,-3713,-4201,-14288,-13184,-14289,-14290,-9750,-10046,-14291,-5124,-14292,-14293,-2591,-11857,-14294,-3234,-14295, +-14296,-14297,-11702,-14298,-14299,-14300,-14301,-14302,-14303, +-14304,-14305,-14306], [1,3,9220], [0,9221,0,9222,4], -[0,-8495,-2928,-4273], -[0,-627,-1954,-8494,-3044,-4461,-1455], +[0,-14307,-508,-13486], +[0,-6324,-8980,-14308,-12254,-12442,-3586], [1,3,9224], [0,0,9225,7,4], -[0,-3,-66,-125], +[0,-1654,-1405,-2293], [1,3,9227], [0,0,9228,9229,4], -[0,-11,-21,-49,-62,-203,-355,-13,-1568,-152,-618,-8493,-382,-237,-1,-191,-10,-9,-78,-703,-139,-3786,-189,-418,-755,-18,-3, --65,-38,-696,-8492,-561,-805,-2502,-157,-14,-179,-558,-1489,-112], -[0,-281,-2979,-6291,-8491,-31,-24,-45,-184,-111], +[0,-23,-40,-86,-3307,-3326,-539,-664,-671,-708,-757,-14309,-784,-825,-932,-934,-958,-1344,-1471,-1474,-1475,-3568,-1482, +-1483,-1486,-1534,-1654,-1771,-1889,-1891,-14310,-1906,-1927,-7033,-1978,-2127,-2281,-2282,-2284,-2416], +[0,-6527,-14311,-2459,-14312,-3264,-775,-3214,-3577,-3578], [1,3,9231], [0,9232,9233,9234,5], -[0,-8490,-536,-896,-8489], -[0,-15,-3,-1,-350,-2293,-197,-828,-76], -[0,-1375,-1400,-126,-405,-2391,-248], +[0,-14313,-702,-2103,-14314], +[0,-1788,-1654,-932,-1001,-13729,-2062,-937,-966], +[0,-9614,-7422,-6656,-7421,-9330,-1847], [1,3,9236], [0,9237,9238,9239,4], -[0,-2255,-71], -[0,-39,-883], -[0,-70,-624,-452,-299,-245], +[0,-599,-2347], +[0,-2322,-2463], +[0,-2460,-7419,-5845,-640,-5827], [1,3,9241], [0,9242,9243,9244,11], -[0,-8488,-5023,-325,-470,-8487,-8486,-1509,-8485,-8484,-2293,-8483,-8482,-70,-8481], -[0,-1,-828,-350,-3,-15,-197,-7,-27], -[0,-32,-8480,-70,-126,-1205,-303,-940], +[0,-14315,-9092,-1119,-1351,-14316,-14317,-1759,-14318,-14319,-13729,-14320,-14321,-2460,-14322], +[0,-932,-937,-1001,-1654,-1788,-2062,-2125,-2210], +[0,-1168,-14323,-2460,-6656,-8801,-1076,-8027], [1,3,9246], [0,9247,9248,9249,9], -[0,-70,-71], -[0,-314,-39,-554], -[0,-70,-32,-624,-1934,-245,-163,-183,-8479], +[0,-2460,-2347], +[0,-1243,-2322,-2462], +[0,-2460,-1168,-7419,-9975,-5827,-2265,-5554,-14324], [1,3,9251], [0,185,0,9252,4], -[0,-70,-3209,-3206,-32], +[0,-2460,-9455,-9466,-1168], [1,3,9254], [0,9255,9256,9257,5], -[0,-8478,-627,-8477,-918,-3151,-5209,-8476,-8475], -[0,-59,-66,-5024,-1310,-8474,-4527,-556,-39,-976], -[0,-1375,-255,-1940,-8473,-207,-3390,-91], +[0,-14325,-6324,-14326,-1109,-9977,-8104,-14327,-14328], +[0,-633,-1405,-9088,-1812,-14329,-12014,-2320,-2322,-2568], +[0,-9614,-5092,-9613,-14330,-834,-7460,-4865], [1,3,9259], [0,9260,9261,261,6], -[0,-1245,-14,-89,-38,-323,-311], -[0,-205,-925,-2341,-383,-922,-1518,-2082,-149,-77,-748,-606,-215,-2083,-646,-607,-175,-223,-3029,-119,-975,-2746,-4209, --4208,-164,-230,-501,-4207,-1452,-297,-427,-2656,-1024,-824,-1457,-2978,-561,-1595,-2977,-1914,-2976,-2296,-2362,-472, --728,-902,-1997,-513,-1757,-2057,-894,-80,-2539,-3338,-1099,-4206,-3423], +[0,-4787,-2127,-928,-1889,-1864,-2654], +[0,-2531,-653,-11071,-754,-990,-1651,-5042,-1805,-2162,-2213,-1852,-865,-5036,-1699,-1839,-2334,-729,-12601,-679,-2923, +-3027,-14331,-14332,-1863,-769,-929,-14333,-3751,-1588,-25,-4371,-866,-989,-3572,-14334,-1906,-14335,-14336,-11751, +-14337,-13397,-10046,-742,-4785,-1907,-7160,-4066,-3195,-5322,-2134,-350,-6410,-7897,-3180,-14338,-7151], [1,3,9263], [0,9264,9265,9266,4], -[0,-8470,-229,-40,-8469,-8468], -[0,-257,-185,-5,-41,-171,-2,-104], -[0,-104,-99,-8467,-8466,-8465,-8464,-41,-8463,-209,-8462,-1937,-8461,-8460,-107,-1087,-6326,-46,-8459,-8458], +[0,-14341,-1026,-1077,-14342,-14343], +[0,-3617,-3048,-3037,-1004,-2391,-2410,-2466], +[0,-2466,-3690,-14344,-14345,-14346,-14347,-1004,-14348,-3844,-14349,-9843,-14350,-14351,-3862,-3816,-2146,-3445,-14352, +-14353], [1,3,9268], [0,9269,9270,9271,4], -[0,-74,-104,-863,-2691,-8457,-6015,-2292,-1714,-2715,-8456,-6049,-8455,-2291,-874,-949,-4205,-5913,-8454], -[0,-324,-748,-36,-118,-564,-2716,-646,-7,-14,-16,-30,-89,-2197,-397,-1743,-2163,-1424,-2164,-119,-40,-499,-88,-4,-988, --442,-362,-164,-311,-2,-5,-230,-708,-18,-221,-162,-2537,-8453,-3762,-788,-563,-185,-725,-1524,-8452,-970,-634,-1463, --1138,-415,-2296,-945,-998,-231,-2992,-8451,-8450,-513,-8449,-1318,-1223,-8448,-232,-4947, --80,-6357,-8447,-2704,-8446,-8445,-404,-63,-8444,-8443,-8442], -[0,-104,-74,-793], +[0,-2476,-2466,-4245,-3788,-14354,-3726,-14244,-4817,-3559,-14355,-3558,-14356,-14357,-3661,-4837,-14358,-4229,-14359], +[0,-1816,-2213,-812,-999,-1826,-3548,-1699,-2125,-2127,-2177,-2469,-928,-1871,-1966,-3728,-2653,-5627,-2648,-679,-1077, +-1098,-1646,-1942,-1977,-1582,-1639,-1863,-2654,-2410,-3037,-769,-1125,-1534,-1600,-3198,-6447,-14360,-3801,-3735,-1851, +-3048,-5686,-1570,-14361,-3246,-4036,-3425,-1603,-2132,-13397,-7080,-1601,-4062,-13593,-14362,-14363,-4066,-14364,-1602, +-6483,-14365,-3561,-9458, +-350,-1926,-14366,-3662,-14367,-14368,-740,-351,-14369,-14370,-14371], +[0,-2466,-2476,-2468], [1,3,9273], [0,9274,9275,9276,8], -[0,-2082,-104,-606,-1411,-1093,-323,-1108,-311,-3485,-823,-4204,-297,-4290,-2298,-3004,-4203,-1595,-8441,-8440,-8439], -[0,-205,-925,-261,-8438,-79,-3424,-397,-2297,-1324,-4202,-1581,-5,-586,-329,-2978,-788,-4201,-623,-4200,-1240,-662,-5940, --1099,-2135,-5941], -[0,-104,-30,-75,-8], +[0,-5042,-2466,-1852,-6570,-3535,-1864,-2354,-2654,-6488,-1002,-14372,-1588,-13385,-13376,-13388,-14373,-14335,-14374, +-14375,-14376], +[0,-2531,-653,-1640,-14377,-1449,-7142,-1966,-13380,-1278,-14378,-462,-3037,-4647,-426,-14334,-3735,-14379,-8523,-14380, +-5038,-357,-4048,-3180,-3626,-4047], +[0,-2466,-2469,-4004,-1415], [1,3,9278], [0,9279,9280,9281,5], -[0,-20,-23,-200,-88,-880,-213,-1523,-138,-620,-8437], -[0,-34,-32,-292,-3,-236,-82,-8436,-113,-116,-169,-615,-530,-8435,-8434,-6449,-8433,-328], -[0,-99,-37,-4424,-254,-5943,-52,-300,-1041,-308,-58,-4241,-490,-200], +[0,-668,-1548,-1376,-1646,-2528,-1365,-1575,-2269,-556,-14381], +[0,-2541,-1168,-525,-1654,-1666,-2198,-14382,-2105,-615,-527,-1174,-1197,-14383,-14384,-1182,-14385,-559], +[0,-3690,-687,-12694,-5550,-4039,-3161,-3994,-9668,-3957,-719,-13831,-1965,-1376], [1,3,9283], [0,9284,0,9285,4], -[0,-207,-4199,-28], -[0,-61,-1082,-75,-4198], +[0,-834,-14386,-1107], +[0,-3634,-4679,-4004,-14387], [1,3,9287], [0,9288,9289,9290,6], -[0,-156,-28,-261,-603,-2384,-20,-1142,-977,-8432,-16,-551,-238,-2178,-58,-93,-221,-8431,-818,-8430,-4217], -[0,-9,-3,-33,-4,-736,-2,-458,-3505,-5,-8429,-8428,-65,-69,-3280,-441,-137,-2332,-4197,-49,-8427,-843,-120,-874,-146,-2051, --62], -[0,-4547,-6290,-1690], +[0,-2359,-1107,-1640,-2059,-9498,-668,-1526,-2555,-14388,-2177,-2536,-674,-2436,-719,-1645,-1600,-14389,-1315,-14390, +-14092], +[0,-1344,-1654,-2379,-1942,-3628,-2410,-3036,-6325,-3037,-14391,-14392,-1771,-3621,-8497,-1952,-3199,-11343,-14393,-86, +-14394,-8566,-2174,-3661,-2234,-5361,-3307], +[0,-11859,-2472,-5195], [1,3,9292], [0,0,37,7,4], [1,3,9294], [0,9295,9296,7,4], -[0,-477,-536,-423,-264,-28,-470,-651,-130,-2,-70,-551,-96], -[0,-4943,-8426,-2386,-458,-8425,-843,-69,-5,-4338,-3205,-1395,-517,-2332,-413,-22,-19,-1,-3,-7], +[0,-479,-702,-994,-1022,-1107,-1351,-1391,-2231,-2410,-2460,-2536,-2550], +[0,-9478,-14395,-9457,-3036,-14396,-8566,-3621,-3037,-12993,-9476,-7837,-3046,-11343,-3041,-427,-428,-932,-1654,-2125], [1,3,9298], [0,0,9299,7,9], -[0,-3,-72,-17,-2,-5,-92,-69,-8424,-535,-478], +[0,-1654,-1650,-2501,-2410,-3037,-2503,-3621,-14397,-748,-262], [1,3,9301], [0,9302,0,9303,6], -[0,-2292,-8423,-4914,-1640,-2732], -[0,-74], +[0,-14244,-14398,-9631,-7438,-3250], +[0,-2476], [1,3,9305], [0,0,9306,9307,5], -[0,-11,-216,-622,-974,-21,-109,-69,-5,-19,-2926,-98,-3339,-13,-144,-1,-4196,-3,-602,-7,-14,-273,-893,-1789,-211,-2,-1288, --74,-1103,-1480,-1770,-1783,-17,-92], -[0,-74,-1980,-292,-2], +[0,-23,-26,-33,-3077,-40,-3035,-3621,-3037,-428,-532,-534,-7890,-664,-778,-932,-14399,-1654,-2080,-2125,-2127,-2128,-2138, +-2341,-2376,-2410,-2415,-2476,-2481,-2485,-2816,-2486,-2501,-2503], +[0,-2476,-7711,-525,-2410], [1,3,9309], [0,9310,9311,7,9], -[0,-36,-1169,-1019,-617,-3319,-16], -[0,-11,-161,-3816,-8422,-3486,-283,-48,-162,-329,-5,-137,-22,-19,-103,-964,-1,-1209,-1334,-115,-2441,-25,-150,-1993,-4, --33,-371,-2,-104,-30], +[0,-812,-982,-983,-986,-8141,-2177], +[0,-23,-32,-3332,-14400,-6484,-3244,-190,-3198,-426,-3037,-3199,-427,-428,-3664,-3665,-932,-8230,-961,-965,-8287,-967, +-978,-7356,-1942,-2379,-2892,-2410,-2466,-2469], [1,3,9313], [0,0,9314,9315,5], -[0,-1184,-8,-74], -[0,-74,-1910,-1370], +[0,-639,-1415,-2476], +[0,-2476,-12517,-11492], [1,3,9317], [0,9318,9319,9320,6], -[0,-8421,-2291,-8420], -[0,-8419], -[0,-1157,-1607,-8418,-107,-74,-2717], +[0,-14401,-14357,-14402], +[0,-14403], +[0,-1348,-9780,-14404,-3862,-2476,-3527], [1,3,9322], [0,9323,9324,7,4], -[0,-20,-2224,-1905], -[0,-11,-21,-8417,-329,-4432,-29,-586,-8416,-8415,-98,-4195,-404,-144,-277,-346,-8,-79,-18,-8414,-262,-377,-5405,-5262, --492,-4,-643,-8413,-130,-154,-393,-1791,-887,-57,-211,-2,-438,-74,-3874,-17,-92,-170,-519,-2454], +[0,-668,-1284,-12982], +[0,-23,-40,-14405,-426,-12643,-3136,-4647,-14406,-14407,-534,-14408,-740,-778,-1041,-1331,-1415,-1449,-1534,-14409,-1623, +-1643,-7034,-7846,-1908,-1942,-1974,-14410,-2231,-2275,-2286,-2287,-2289,-2375,-2376,-2410,-2437,-2476,-2480,-2501,-2503, +-2505,-2508,-8160], [1,3,9326], [0,0,9327,9328,4], -[0,-29,-5,-8,-602,-14,-57,-2,-74,-3875], -[0,-74,-2,-1923], +[0,-3136,-3037,-1415,-2080,-2127,-2375,-2410,-2476,-2477], +[0,-2476,-2410,-11313], [1,3,9330], [0,9331,9332,7,5], -[0,-879,-8412,-2291,-8411,-119,-276,-4202,-297,-1518,-8410,-606,-323,-2531,-311,-2748,-8409,-259], -[0,-479,-8408,-357,-80,-63,-232,-204,-3016,-8407,-623,-1047,-949,-1640,-8406,-2732,-858,-4809,-8405,-1564,-215,-8404, --5310,-1324,-2838,-8403,-1768,-7,-14,-301,-371,-171,-104,-74], +[0,-3194,-14411,-14357,-14412,-679,-1460,-14378,-1588,-1651,-14413,-1852,-1864,-6569,-2654,-2981,-14414,-2548], +[0,-47,-14415,-3983,-350,-351,-3561,-3266,-12959,-14416,-8523,-8200,-4837,-7438,-14417,-3250,-4838,-10363,-14418,-731, +-865,-14419,-7595,-1278,-1719,-14420,-2851,-2125,-2127,-2142,-2892,-2391,-2466,-2476], [1,3,9334], [0,9335,9336,7,9], -[0,-2224,-754], -[0,-169,-86,-1350,-404,-8], +[0,-1284,-1543], +[0,-527,-533,-549,-740,-1415], [1,3,9338], [0,9339,0,9340,4], -[0,-8402,-1158], -[0,-74,-593], +[0,-14421,-1297], +[0,-2476,-3116], [1,3,9342], [0,262,9343,7,8], -[0,-74,-8,-20,-118,-2515,-1,-14,-16,-41,-17,-573,-40,-26,-157,-793,-86,-144,-2,-1103,-11,-5,-98,-8401,-2173,-21,-1640, --342,-2016,-226,-1110,-232,-4196,-1781,-2773,-80,-404,-63], +[0,-2476,-1415,-668,-999,-6828,-932,-2127,-2177,-1004,-2501,-910,-1077,-767,-1978,-2468,-533,-778,-2410,-2481,-23,-3037, +-534,-14422,-2484,-40,-7438,-2082,-6429,-2140,-2253,-3561,-14399,-2504,-2506,-350,-740,-351], [1,3,9345], [0,9346,0,9347,5], -[0,-8400], -[0,-132,-1507,-8399,-303,-745,-8398], +[0,-14423], +[0,-2444,-1819,-14424,-1076,-2487,-14425], [1,3,9349], [0,9350,9351,7,4], -[0,-843,-3332,-5064,-93], -[0,-29,-5,-28,-8,-262,-7,-57,-2], +[0,-8566,-7955,-8891,-1645], +[0,-3136,-3037,-1107,-1415,-1623,-2125,-2375,-2410], [1,3,9353], [0,220,9354,9355,4], -[0,-49,-62,-59,-503,-298,-9,-8,-112], -[0,-595,-2114,-6,-704], +[0,-86,-3307,-633,-720,-796,-1344,-1415,-2416], +[0,-2489,-4038,-2006,-1384], [1,3,9357], [0,9358,0,9359,8], -[0,-8397,-88], -[0,-132,-202,-303,-625], +[0,-14426,-1646], +[0,-2444,-3590,-1076,-6999], [1,3,9361], [0,9362,9363,9364,6], -[0,-4938,-59,-119,-2546,-8396,-71,-742], -[0,-1572,-72,-798,-39,-112,-8395], -[0,-59,-4810,-594,-1084,-666,-91], +[0,-9501,-633,-679,-6369,-14427,-2347,-2546], +[0,-627,-1650,-2239,-2322,-2416,-14428], +[0,-633,-10362,-2490,-4161,-7641,-4865], [1,3,9366], [0,9367,123,9368,4], -[0,-4335,-3101,-60,-8394,-4334,-8393,-4333,-4332,-8392,-8391], -[0,-1904,-808,-566,-1066,-690,-376,-8390,-6288,-6325,-4331], +[0,-13012,-10837,-510,-14429,-13017,-14430,-13025,-13026,-14431,-14432], +[0,-13039,-1818,-1691,-6321,-2071,-1671,-14433,-2492,-2157,-13042], [1,3,9370], [0,9371,9372,9373,8], -[0,-928,-60,-23,-72,-522,-113,-8389], -[0,-8388,-13,-244,-135,-3351,-41,-264,-32,-8387,-530,-1161,-364,-2222,-614,-4295,-66,-3,-8386,-198,-8385,-983,-2975,-8384, --8383,-1286,-123,-96], -[0,-61,-544,-840,-1367,-933], +[0,-501,-510,-1548,-1650,-1980,-2105,-14434], +[0,-14435,-664,-665,-714,-7743,-1004,-1022,-1168,-14436,-1197,-1212,-1231,-1296,-1336,-13334,-1405,-1654,-14437,-1722, +-14438,-2150,-14439,-14440,-14441,-2425,-2446,-2550], +[0,-3634,-4864,-11468,-12350,-11467], [1,3,9375], [0,9376,9377,9378,4], -[0,-8382,-8381,-8380,-8379,-8378,-8377,-8376,-8375,-8374,-8373,-8372,-8371,-8370,-8369,-8368,-8367,-8366], -[0,-8365,-8,-1,-8364,-3715,-57,-4,-110,-2,-29,-3951,-739,-8363,-10,-5153,-12,-8362,-19,-8361,-22], -[0,-8360,-1638,-1087], +[0,-14442,-14443,-14444,-14445,-14446,-14447,-14448,-14449,-14450,-14451,-14452,-14453,-14454,-14455,-14456,-14457,-14458], +[0,-14459,-1415,-932,-14460,-4271,-2375,-1942,-589,-2410,-3136,-1422,-3268,-14461,-958,-8378,-940,-14462,-428,-14463,-427], +[0,-14464,-7485,-3816], [1,3,9380], [0,9381,194,9382,8], -[0,-8359,-8358,-6521,-6516,-8357,-8356,-8355,-8354,-8353,-8352,-96], -[0,-1284,-589,-37,-8351,-3716], +[0,-14465,-14466,-597,-636,-14467,-14468,-14469,-14470,-14471,-14472,-2550], +[0,-2494,-3673,-687,-14473,-4270], [1,3,9384], [0,9385,9386,7,11], -[0,-3311,-329,-633,-8350,-8349,-8348,-208,-8347,-305,-8346,-829,-1595,-1169,-422,-5094,-325,-4584,-2432,-344,-1943,-639, --1291,-392,-1905,-1479], -[0,-11,-136,-366,-4266,-8345,-5095,-872,-29,-1089,-8344,-5,-8343,-8342,-98,-8341,-8340,-316,-159,-425,-144,-1174,-1554, --6145,-1,-583,-277,-1853,-55,-8339,-1532,-9,-66,-8,-5050,-496,-913,-816,-1150,-911,-276,-222,-1143,-18,-23,-468,-262, --8338,-377,-2414,-610,-15,-1311,-1385,-4,-695,-643,-4901,-693,-6,-35,-8337,-750,-864, --521,-601,-804,-7,-3588,-600,-138,-154,-175,-1109,-1108,-884,-211,-2,-133,-438,-8336,-8335,-92,-8334,-2168], +[0,-8231,-426,-4049,-14474,-14475,-14476,-461,-14477,-635,-14478,-909,-14335,-982,-997,-8610,-1119,-11677,-8562,-1641, +-9548,-2168,-2321,-2335,-12982,-2510], +[0,-23,-41,-50,-13541,-14479,-8608,-4035,-3136,-3713,-14480,-3037,-14481,-14482,-534,-14483,-14484,-711,-753,-774,-778, +-807,-922,-3068,-932,-6929,-1041,-1067,-1110,-14485,-1322,-1344,-1405,-1415,-8950,-1417,-1418,-1421,-1424,-1455,-1460, +-1521,-1522,-1534,-1548,-1549,-1623,-14486,-1643,-8913,-1733,-1788,-1806,-8436,-1942,-1950,-1974,-9720,-2000,-2006,-2019, +-14487,-2090,-4242, +-2095,-2098,-2101,-2125,-5508,-2205,-2269,-2275,-2334,-2344,-2354,-2362,-2376,-2410,-2427,-2437,-14488,-14489,-2503, +-14490,-2549], [1,3,9388], [0,9389,9390,9391,10], -[0,-205,-748,-208,-608,-1871,-58,-1581,-164,-2872,-424,-3002], -[0,-151,-13,-32,-8,-1317,-1,-206,-491,-159,-382,-38,-17,-761,-157,-267,-144,-615,-2203,-438,-11,-2250,-92,-160,-94,-98, --1319,-154,-90,-1825,-8333,-492,-2388,-21,-8332,-170,-136,-1888,-64,-8331,-392,-8330,-8329,-173,-622,-1096], -[0,-17,-1084,-8328,-370,-1207,-1606,-2974,-4366,-4194,-3428], +[0,-2531,-2213,-461,-1810,-811,-719,-462,-1863,-1321,-930,-13410], +[0,-824,-664,-1168,-1415,-1652,-932,-1111,-1940,-753,-784,-1889,-2501,-1044,-1978,-682,-778,-1174,-1653,-2437,-23,-667, +-2503,-518,-528,-534,-1566,-2275,-44,-1565,-14491,-1908,-9422,-40,-14492,-2505,-41,-540,-969,-14493,-2335,-14494,-14495, +-38,-33,-3376], +[0,-2501,-4161,-14496,-3209,-8799,-9845,-14497,-12942,-14498,-7067], [1,3,9393], [0,9394,9395,9396,10], -[0,-1863,-2189,-1180,-58,-2217,-230,-1839,-519,-8327,-5676,-1916,-3002,-8326], -[0,-8325], -[0,-17,-37,-1466,-358,-2464,-111], +[0,-914,-2068,-713,-719,-1381,-769,-1363,-2508,-14499,-5594,-11676,-13410,-14500], +[0,-14501], +[0,-2501,-687,-3108,-3551,-7882,-3578], [1,3,9398], [0,9399,9400,9401,9], -[0,-262,-1180,-344,-992,-1121,-639], -[0,-443,-915,-8,-118,-9,-425,-1,-434,-223,-237,-41,-1164,-55,-17,-4,-26,-326,-125,-50,-48,-4051,-86,-2,-11,-5,-277,-18, --65,-1016,-3658,-257,-49,-115,-514,-8324,-134,-21,-1244,-1089,-8323,-145,-181,-10,-583,-150,-12,-25,-309,-62], -[0,-17,-332,-684], +[0,-1623,-713,-1641,-1800,-1997,-2168], +[0,-1501,-1313,-1415,-999,-1344,-774,-932,-3122,-729,-825,-1004,-1030,-1110,-2501,-1942,-767,-823,-2293,-21,-190,-204, +-533,-2410,-23,-3037,-1041,-1534,-1771,-1045,-5039,-3617,-86,-965,-3560,-14502,-2251,-40,-4835,-3713,-14503,-959,-960, +-958,-6929,-978,-940,-967,-3748,-3307], +[0,-2501,-5401,-3113], [1,3,9403], [0,9404,9405,7,9], -[0,-205,-149,-4384,-4301,-41,-3008,-119,-454,-1180,-1926,-2700,-384,-325,-1113,-639,-8322,-4289,-8321,-257,-8320,-8319, --8318,-4193,-2870,-1781,-1564,-3015,-8317], -[0,-915,-8,-222,-208,-118,-9,-4192,-262,-425,-1,-228,-7,-223,-159,-17,-4,-157,-125,-50,-86,-144,-614,-2,-11,-5,-1143,-18, --65,-92,-98,-154,-6314,-2660,-519,-90,-49,-115,-197,-2755,-514,-134,-21,-1244,-2434,-83,-735,-872,-145,-181,-346,-3591, --161,-8316,-5286,-10,-583,-12,-176,-173,-62,-1230], +[0,-2531,-1805,-12860,-13318,-1004,-13074,-679,-4204,-713,-11121,-3727,-724,-1119,-2186,-2168,-14504,-13386,-14505,-3617, +-14506,-14507,-14508,-14509,-1338,-2504,-731,-12962,-14510], +[0,-1313,-1415,-1521,-461,-999,-1344,-14511,-1623,-774,-932,-1610,-2125,-729,-753,-2501,-1942,-1978,-2293,-21,-533,-778, +-1336,-2410,-23,-3037,-1522,-1534,-1771,-2503,-534,-2275,-2230,-4356,-2508,-44,-86,-965,-2062,-2817,-3560,-2251,-40, +-4835,-8477,-2411,-3732,-4035,-959,-960,-1331,-5474,-32,-14512,-7716,-958,-6929,-940,-1419,-38,-3307,-5585], [1,3,9407], [0,9408,9409,9410,5], -[0,-138,-705,-4193], -[0,-15,-3,-27,-1,-41,-17,-4,-125,-25,-1781], -[0,-17,-1670,-1910,-358,-8315,-8314,-332,-41], +[0,-2269,-1320,-14509], +[0,-1788,-1654,-2210,-932,-1004,-2501,-1942,-2293,-967,-2504], +[0,-2501,-6211,-12517,-3551,-14513,-14514,-5401,-1004], [1,3,9412], [0,9413,9414,7,5], -[0,-1291,-1479], -[0,-2271,-5,-517,-8313,-6011,-535,-151,-1,-8312,-251,-277,-9,-18,-1133,-235,-4,-8311,-6,-154,-44,-2,-30,-17,-519], +[0,-2321,-2510], +[0,-366,-3037,-3046,-14515,-3750,-748,-824,-932,-14516,-948,-1041,-1344,-1534,-1626,-1939,-1942,-14517,-2006,-2275,-2387, +-2410,-2469,-2501,-2508], [1,3,9416], [0,9417,9418,9419,5], -[0,-1544,-1951,-3801], -[0,-9,-44,-8310,-17,-4,-2,-8309,-329], -[0,-17,-494], +[0,-1055,-9087,-3415], +[0,-1344,-2387,-14518,-2501,-1942,-2410,-14519,-426], +[0,-2501,-1631], [1,3,9421], [0,0,9422,9423,5], -[0,-13,-1,-10,-3,-568,-752,-17], -[0,-17,-5637,-141,-1084,-8308], +[0,-664,-932,-958,-1654,-1658,-1705,-2501], +[0,-2501,-5757,-3966,-4161,-14520], [1,3,9425], [0,0,9426,9427,5], -[0,-8,-1,-55,-17,-66,-4,-56,-48,-130,-2,-29,-115,-514,-145,-181,-3017,-10,-583,-150,-12,-25,-309], -[0,-17,-130], +[0,-1415,-932,-1110,-2501,-1405,-1942,-756,-190,-2231,-2410,-3136,-965,-3560,-959,-960,-12916,-958,-6929,-978,-940,-967, +-3748], +[0,-2501,-2231], [1,3,9429], [0,9430,0,9431,4], -[0,-325,-230,-156,-645], -[0,-1939,-4542], +[0,-1119,-769,-2359,-1860], +[0,-9711,-11891], [1,3,9433], [0,9434,9435,9436,8], -[0,-2252,-36,-1554,-8307,-2994,-8306], -[0,-1880,-32,-819,-1000,-117,-39], -[0,-881,-2023,-3247,-8305,-8304,-1229,-2973,-771,-209,-337], +[0,-642,-812,-922,-14521,-13490,-14522], +[0,-641,-1168,-1224,-1453,-1452,-2322], +[0,-2512,-6224,-9005,-14523,-14524,-5737,-14525,-8841,-3844,-3323], [1,3,9438], [0,9439,9440,9441,5], -[0,-8303,-8302,-8301,-8300,-8299,-8298,-8297,-8296,-8295,-8294,-8293,-8292,-36,-501,-8291,-8290,-8289,-8288,-8287,-8286, --8285,-261,-698,-8284,-1304,-4754,-8283,-1121,-3114,-4294,-8282,-2293,-8281,-8280,-8279,-8278,-8277,-8276,-8275], -[0,-11,-161,-2146,-21,-8274,-768,-8273,-4753,-8272,-833,-8271,-299,-8270,-1875,-8269,-1,-84,-10,-115,-67,-1016,-8268, --1810,-8267,-987,-1795,-120,-396,-2542,-1622,-556,-39,-392,-2541,-17,-92,-8266], -[0,-8265,-8264,-1340,-8263,-8262,-8261,-8260,-1613,-8259,-8258,-8257,-5508,-8256,-6285], +[0,-14526,-14527,-14528,-14529,-14530,-14531,-14532,-14533,-14534,-14535,-14536,-14537,-812,-929,-14538,-14539,-14540, +-14541,-14542,-14543,-14544,-1640,-1801,-14545,-1976,-10570,-14546,-1997,-10576,-13357,-14547,-13729,-14548,-14549, +-14550,-14551,-14552,-14553,-14554], +[0,-23,-32,-3367,-40,-14555,-468,-14556,-10575,-14557,-571,-14558,-640,-14559,-771,-14560,-932,-943,-958,-965,-968,-1045, +-14561,-1834,-14562,-1985,-2151,-2174,-2187,-6390,-8573,-2320,-2322,-2335,-6391,-2501,-2503,-14563], +[0,-14564,-14565,-867,-14566,-14567,-14568,-14569,-9292,-14570,-14571,-14572,-6471,-14573,-2513], [1,3,9443], [0,9444,9445,9446,10], -[0,-711,-809], -[0,-4550,-85], -[0,-2701,-8255,-8254], +[0,-596,-1696], +[0,-11836,-2319], +[0,-3708,-14574,-14575], [1,3,9448], [0,9449,9450,7,5], -[0,-41,-466,-247], -[0,-474], +[0,-1004,-1758,-2424], +[0,-710], [1,3,9452], [0,0,9453,7,4], -[0,-13,-78,-3,-1,-14,-4,-703,-189,-279,-1807,-8253,-139,-1526,-909,-212,-3539,-5154], +[0,-664,-1471,-1654,-932,-2127,-1942,-1474,-1482,-516,-1962,-14576,-1475,-1477,-1487,-1479,-5993,-8365], [1,3,9455], [0,0,9456,9457,6], -[0,-1782,-28,-8252,-410,-276,-8251,-117,-72,-8250,-565,-110,-8249,-112,-59,-1806,-2975], -[0,-8248,-8247,-1668,-172,-481,-3506,-5538,-2172,-60,-1418,-2338], +[0,-2493,-1107,-14577,-3691,-1460,-14578,-1452,-1650,-14579,-1813,-589,-14580,-2416,-633,-1963,-14439], +[0,-14581,-14582,-6306,-1961,-5923,-6307,-6308,-2517,-510,-6235,-11153], [1,3,9459], [0,9460,29,7,5], -[0,-8246], +[0,-14583], [1,3,9462], [0,0,9463,9464,10], -[0,-1771,-166,-3,-236,-4191,-8245], -[0,-722,-1915], +[0,-2778,-1446,-1654,-1666,-14584,-14585], +[0,-7084,-11722], [1,3,9466], [0,9467,9468,9469,8], -[0,-8244,-1228,-60,-1003,-4190,-8243,-197,-1394,-3897,-2423,-1779], -[0,-50,-11,-21,-4189,-5,-8242,-927,-8241,-1,-8240,-8,-7,-889,-4293,-71,-4188], -[0,-552,-738,-367,-4530,-3255,-1347,-1307,-1522,-1269,-106,-245], +[0,-14586,-5758,-510,-1399,-14587,-14588,-2062,-7967,-2249,-8879,-2522], +[0,-21,-23,-40,-14589,-3037,-14590,-509,-14591,-932,-14592,-1415,-2125,-2240,-13361,-2347,-14593], +[0,-2520,-3444,-5545,-11989,-8948,-648,-1867,-1577,-3674,-4055,-5827], [1,3,9471], [0,9472,9473,9474,6], -[0,-8239,-1811,-2423,-1779], -[0,-8238,-8237,-13,-1,-76,-3,-7,-2701], -[0,-552,-8236,-8235,-8234], +[0,-14594,-1793,-8879,-2522], +[0,-14595,-14596,-664,-932,-966,-1654,-2125,-3708], +[0,-2520,-14597,-14598,-14599], [1,3,9476], [0,9477,9478,9479,4], -[0,-4190,-197,-2423], -[0,-5,-927,-182,-268,-830,-1,-4189,-3,-15,-7,-4188], -[0,-552,-2721,-8233], +[0,-14587,-2062,-8879], +[0,-3037,-509,-526,-558,-821,-932,-14589,-1654,-1788,-2125,-14593], +[0,-2520,-3443,-14600], [1,3,9481], [0,9482,9483,9484,4], -[0,-8232,-28,-23,-8231,-71,-8230], -[0,-13,-40,-66], -[0,-1185,-451,-1721,-3216,-2322,-685], +[0,-14601,-1107,-1548,-14602,-2347,-14603], +[0,-664,-1077,-1405], +[0,-622,-5897,-4633,-9405,-11729,-3015], [1,3,9486], [0,0,88,9487,11], -[0,-2972,-8229,-1063,-8228,-8227,-8226,-8225,-183,-1603,-2171,-3041,-1734], +[0,-14604,-14605,-6722,-14606,-14607,-14608,-14609,-5554,-10781,-2524,-12439,-4001], [1,3,9489], [0,0,31,9490,8], -[0,-1603,-1734,-1922,-550,-2008], +[0,-10781,-4001,-11315,-3276,-6787], [1,3,9492], [0,9493,9494,9495,9], -[0,-3425,-523,-1716,-1479,-8224], -[0,-5,-517], -[0,-8223,-8222,-17,-8221,-2014,-8220,-8219,-8218], +[0,-7141,-1948,-4701,-2510,-14610], +[0,-3037,-3046], +[0,-14611,-14612,-2501,-14613,-6491,-14614,-14615,-14616], [1,3,9497], [0,9498,9499,9500,4], -[0,-767,-394,-138], -[0,-51,-20,-56,-2711,-15,-81,-34], -[0,-1734,-2972,-978,-8217,-8216,-240,-548,-224,-671,-135,-174,-194,-37,-163,-431,-482,-584,-726,-1232,-254,-638,-263,-367, --294,-183], +[0,-482,-2267,-2269], +[0,-519,-668,-756,-3607,-1788,-2384,-2541], +[0,-4001,-14604,-2525,-14617,-14618,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513, +-5550,-2547,-1573,-5545,-3958,-5554], [1,3,9502], [0,9503,29,9504,6], -[0,-3318,-891], -[0,-8215,-8214], +[0,-8143,-2202], +[0,-14619,-14620], [1,3,9506], [0,0,9507,9508,4], -[0,-110,-2252,-1,-12,-25,-55,-3,-15,-4,-2994], -[0,-8213,-4187,-2973,-8212,-4186,-1459], +[0,-589,-642,-932,-940,-967,-1110,-1654,-1788,-1942,-13490], +[0,-14621,-14622,-14525,-14623,-14624,-3509], [1,3,9510], [0,9511,9512,9513,9], -[0,-1403,-116,-20,-238,-36,-8211,-3952,-1835,-242,-3783,-8210,-8209], -[0,-56,-66,-3,-611,-1656,-7,-27,-97], -[0,-99,-238,-8208,-3468,-1213,-111], +[0,-7334,-615,-668,-674,-812,-14625,-1400,-1403,-1792,-3633,-14626,-14627], +[0,-756,-1405,-1654,-1657,-6810,-2125,-2210,-2250], +[0,-3690,-674,-14628,-6596,-7534,-3578], [1,3,9515], [0,9516,9517,9518,8], -[0,-918,-8207,-8206,-742], -[0,-1015,-235,-556,-39], -[0,-743,-105,-2170,-3833,-59], +[0,-1109,-14629,-14630,-2546], +[0,-1065,-1939,-2320,-2322], +[0,-2533,-1334,-2540,-3120,-633], [1,3,9520], [0,9521,9522,9523,6], -[0,-5084,-8205,-8204,-1603,-8203,-8202,-8201], -[0,-5276,-208,-79,-3,-27,-1,-2971,-1883,-1172,-58,-2,-5,-8200,-8199,-763,-2462,-8198], -[0,-4597,-4596,-1777,-8197,-5076,-5081,-831,-8196,-8195,-8194,-4721,-2405], +[0,-8696,-14631,-14632,-10781,-14633,-14634,-14635], +[0,-7746,-461,-1449,-1654,-2210,-932,-14636,-600,-879,-719,-2410,-3037,-14637,-14638,-957,-7894,-14639], +[0,-11592,-11593,-2534,-14640,-8787,-8713,-788,-14641,-14642,-14643,-10780,-9133], [1,3,9525], [0,9526,9527,9528,4], -[0,-1116], -[0,-169,-98,-268,-4600,-1031,-8193,-8192,-4239,-152,-56,-26,-1,-8191,-66,-199,-8,-496,-4185,-288,-65,-440,-2,-2970,-594, --17], -[0,-8190,-506,-270,-1253,-106,-8189,-8188,-8187,-8186,-8185,-5108,-5107,-551,-3870,-507,-2433,-8184,-3227,-452,-8183, --8182,-8181,-165,-73,-723], +[0,-2165], +[0,-527,-534,-558,-11550,-632,-14644,-14645,-13841,-708,-756,-767,-932,-14646,-1405,-1412,-1415,-1417,-14647,-1753,-1771, +-1955,-2410,-14648,-2490,-2501], +[0,-14649,-6597,-3756,-4182,-4055,-14650,-14651,-14652,-14653,-14654,-8531,-8532,-2536,-2537,-6408,-8530,-14655,-9307, +-5845,-14656,-14657,-14658,-1838,-3215,-6747], [1,3,9530], [0,9531,9532,9533,8], -[0,-1116,-1283], -[0,-56], -[0,-506,-106], +[0,-2165,-2538], +[0,-756], +[0,-6597,-4055], [1,3,9535], [0,9536,219,7,4], -[0,-1841,-756,-8180], +[0,-1309,-1435,-14659], [1,3,9538], [0,0,192,9539,4], -[0,-506,-1283], +[0,-6597,-2538], [1,3,9541], [0,0,9542,9543,4], -[0,-8,-977,-8179,-1,-288,-8178,-4,-498,-65,-1859,-3430,-12,-25], -[0,-632,-255,-506,-73,-45,-8177,-8176], +[0,-1415,-2555,-14660,-932,-1753,-14661,-1942,-1100,-1771,-953,-7055,-940,-967], +[0,-5387,-5092,-6597,-3215,-3214,-14662,-14663], [1,3,9545], [0,0,0,9546,4], -[0,-743,-1420], +[0,-2533,-5998], [1,3,9548], [0,9549,9550,9551,4], -[0,-467,-1189,-1,-206,-55,-4,-1328,-210,-362,-403,-3305,-493,-1327,-115,-4554,-2234,-83,-8175,-67,-150,-1071,-12,-4875, --1626,-25,-2702,-309,-19,-2985,-4942,-1209], -[0,-417,-51,-118,-9,-534,-2574,-18,-359,-49,-1220,-634,-1127,-900,-62,-2487], -[0,-724,-37,-34,-5186,-5185,-5184,-354,-1049,-225,-217,-539,-117,-2453,-1,-509,-1048,-97,-3314,-280,-581,-1390,-1052, --1389,-631,-45,-2], +[0,-1630,-506,-932,-1111,-1110,-1942,-1099,-2400,-1639,-755,-8275,-1849,-1101,-965,-11813,-950,-2411,-14664,-968,-978, +-5918,-940,-9869,-8339,-967,-3686,-3748,-428,-14014,-9486,-8230], +[0,-1763,-519,-999,-1344,-815,-5917,-1534,-3330,-86,-6630,-4036,-1768,-1945,-3307,-7357], +[0,-5732,-687,-2541,-8193,-8196,-8197,-707,-8169,-5553,-7148,-8170,-1452,-8171,-932,-5874,-8172,-2250,-8173,-7440,-7144, +-8174,-7840,-8175,-5493,-3214,-2410], [1,3,9553], [0,0,9554,9555,4], -[0,-1247,-1338,-8174,-3], -[0,-2169,-506], +[0,-4733,-920,-14665,-1654], +[0,-2542,-6597], [1,3,9557], [0,9558,9559,9560,10], -[0,-1751], -[0,-50,-11,-8173,-173,-21,-8172,-278,-8171,-8170,-59,-1,-199,-1148,-15,-8169], -[0,-948,-1075,-8168,-455], +[0,-3345], +[0,-21,-23,-14666,-38,-40,-14667,-535,-14668,-14669,-633,-932,-1412,-1451,-1788,-14670], +[0,-5569,-5570,-14671,-4112], [1,3,9562], [0,9563,9564,9565,4], -[0,-58,-3852], -[0,-15,-36,-3,-1,-56,-112,-59], -[0,-1623,-1282,-941,-2980,-336,-667,-482,-777,-719,-437,-31,-2026,-4184], +[0,-719,-2858], +[0,-1788,-812,-1654,-932,-756,-2416,-633], +[0,-8472,-2544,-7723,-14242,-3962,-7107,-5559,-6422,-7724,-2451,-3264,-6138,-14672], [1,3,9567], [0,0,9568,9569,4], -[0,-8167,-193,-1123,-489,-6282], -[0,-8166,-8165,-8164,-8163,-8162,-1255,-8161,-3789], +[0,-14673,-469,-1872,-2153,-2535], +[0,-14674,-14675,-14676,-14677,-14678,-4125,-14679,-3552], [1,3,9571], [0,0,31,9572,10], -[0,-444,-494,-2007,-2525,-406,-670], +[0,-1015,-1631,-6792,-6696,-7208,-5839], [1,3,9574], [0,0,9575,9576,5], -[0,-357,-109,-162,-8160,-257,-8159,-458,-586,-69,-5,-8158,-517,-454,-22,-19,-13,-26,-830,-1,-181,-41,-4594,-28,-79,-3, --524,-2835,-15,-890,-146,-211,-2,-1786,-17,-92,-205,-8157], -[0,-37,-294,-194,-4599,-254,-2417,-548,-8156,-174,-431,-5684,-4236,-638], +[0,-3983,-3035,-3198,-14680,-3617,-14681,-3036,-4647,-3621,-3037,-14682,-3046,-4204,-427,-428,-664,-767,-821,-932,-960, +-1004,-11616,-1107,-1449,-1654,-1689,-1741,-1788,-2233,-2234,-2376,-2410,-2443,-2501,-2503,-2531,-14683], +[0,-687,-3958,-4000,-11564,-5550,-8905,-3770,-14684,-3974,-3975,-5561,-13861,-2547], [1,3,9578], [0,0,9579,9580,8], -[0,-8,-44,-1,-14,-4,-48,-86,-1333,-2,-11,-29,-5,-1832,-21,-83,-203,-232,-12,-319,-8155,-1095], -[0,-8154,-73,-1753], +[0,-1415,-2387,-932,-2127,-1942,-190,-533,-1023,-2410,-23,-3136,-3037,-1426,-40,-2411,-3326,-3561,-940,-3267,-14685,-3412], +[0,-14686,-3215,-3270], [1,3,9582], [0,9583,9584,9585,10], -[0,-28,-1353], -[0,-110,-2540,-2214], -[0,-259,-106,-8153,-8152], +[0,-1107,-503], +[0,-589,-6398,-1414], +[0,-2548,-4055,-14687,-14688], [1,3,9587], [0,9588,9589,235,5], -[0,-4013,-2355,-2593,-394,-4723,-518], -[0,-161,-140,-109,-69,-5,-22,-8151,-43,-13,-20,-4790,-26,-230,-1,-25,-2229,-4551,-3,-7,-2,-219,-8150], +[0,-701,-10415,-5505,-2267,-10751,-2551], +[0,-32,-42,-3035,-3621,-3037,-427,-14689,-652,-664,-668,-10480,-767,-769,-932,-967,-1166,-11831,-1654,-2125,-2410,-2518, +-14690], [1,3,9591], [0,0,9592,9593,4], -[0,-161,-140,-109,-69,-5,-22,-19,-43,-13,-26,-1,-2229,-3,-157,-7,-801,-1110,-2], -[0,-1062,-73,-96,-308,-37,-723,-854,-587,-1062], +[0,-32,-42,-3035,-3621,-3037,-427,-428,-652,-664,-767,-932,-1166,-1654,-1978,-2125,-2184,-2253,-2410], +[0,-6748,-3215,-2550,-3957,-687,-6747,-5829,-4377,-6748], [1,3,9595], [0,9596,9597,7,4], -[0,-8149,-291,-475,-446,-20,-4782,-58,-8148,-36,-2350,-207,-571,-758,-704,-3554,-1142,-8147,-93,-72,-2836,-610,-6369, --1635,-603,-8146,-113,-8145,-7,-8144,-16,-1293,-312,-886,-6293,-4774], -[0,-169,-94,-86,-98,-3523,-1032,-328,-8143,-8142,-712,-1187,-926,-1,-8141,-3350,-8140,-827,-8139,-500,-8138,-64,-420,-32, --615,-2879,-2226,-363,-2878,-8,-911,-1516,-597,-17], +[0,-14691,-567,-651,-656,-668,-10506,-719,-14692,-812,-10659,-834,-1105,-1371,-1384,-5894,-1526,-14693,-1645,-1650,-1728, +-1733,-1796,-7772,-2059,-14694,-2105,-14695,-2125,-14696,-2177,-2270,-2323,-2325,-2441,-10523], +[0,-527,-528,-533,-534,-6085,-555,-559,-14697,-14698,-560,-562,-572,-932,-14699,-7748,-14700,-951,-14701,-956,-14702,-969, +-1059,-1168,-1174,-1232,-1237,-1266,-1268,-1415,-1455,-1661,-2330,-2501], [1,3,9599], [0,0,0,9600,8], -[0,-686,-6280,-202,-254,-158,-4271], +[0,-2552,-2554,-3590,-5550,-1764,-13499], [1,3,9602], [0,9603,9604,9605,11], -[0,-5623,-4632], -[0,-2255], -[0,-1787,-855,-245,-1426,-126], +[0,-5822,-11280], +[0,-599], +[0,-2432,-5408,-5827,-5409,-6656], [1,3,9607], [0,9608,9609,263,5], -[0,-2969,-8137,-4183,-4182,-4181,-1189,-20,-58,-36,-118,-8136,-206,-8135,-3265,-468,-8134,-4180,-16,-285,-1482,-8133], -[0,-162,-1278,-5,-137,-4179,-43,-618,-1,-4178,-40,-166,-4,-900,-7,-27,-8132,-138,-2,-2409,-2410], +[0,-14703,-14704,-14705,-14706,-14707,-506,-668,-719,-812,-999,-14708,-1111,-14709,-8802,-1549,-14710,-14711,-2177,-2218, +-2430,-14712], +[0,-3198,-3164,-3037,-3199,-14713,-652,-757,-932,-14714,-1077,-1446,-1942,-1945,-2125,-2210,-14715,-2269,-2410,-9011, +-9010], [1,3,9611], [0,9612,9613,263,6], -[0,-20,-36,-118,-16,-88,-468,-3210,-600,-885,-650,-4180,-2213,-8131,-1453,-1278,-4183], -[0,-351,-166,-27,-30,-618,-200,-4,-210,-2657,-2,-2410,-162,-269,-137,-2409,-4179,-725,-2969,-3014,-4182,-633,-3869,-103, --900], +[0,-668,-812,-999,-2177,-1646,-1549,-9444,-2205,-2343,-1456,-14711,-1514,-14716,-3609,-3164,-14705], +[0,-888,-1446,-2210,-2469,-757,-1376,-1942,-2400,-4370,-2410,-9010,-3198,-4372,-3199,-9011,-14713,-5686,-14703,-12968, +-14706,-4049,-2556,-3664,-1945], [1,3,9615], [0,0,14,9616,4], -[0,-2167,-8130,-8129,-37,-490,-509,-336,-2123,-8128,-8127,-165,-8126], +[0,-2558,-14717,-14718,-687,-1965,-5874,-3962,-3953,-14719,-14720,-1838,-14721], [1,3,9618], [0,9619,9620,9621,11], -[0,-467,-149,-20,-2166,-23,-533,-4818,-8125,-8124,-2373,-8123,-8122,-1178,-230,-8121,-4805,-1676,-4181,-2523,-8120,-2969, --8119,-1453,-596,-8118,-3869], -[0,-43,-34,-198,-27,-4178,-55,-56,-8117], -[0,-724,-37,-184,-684,-1398,-666,-111,-589,-959,-2385,-958,-114,-547,-300,-2682], +[0,-1630,-1805,-668,-2562,-1548,-1040,-10325,-14722,-14723,-9764,-14724,-14725,-728,-769,-14726,-10388,-5895,-14707,-6715, +-14727,-14703,-14728,-3609,-2433,-14729,-2556], +[0,-652,-2541,-1722,-2210,-14714,-1110,-756,-14730], +[0,-5732,-687,-3577,-3113,-7646,-7641,-3578,-3673,-3970,-9471,-3976,-3262,-3960,-3994,-3871], [1,3,9623], [0,0,9624,9625,4], -[0,-8116,-477,-51,-20,-1566,-1180,-495,-4680,-164,-81,-34], -[0,-224,-671,-135,-174,-194,-37,-163,-240,-225,-548,-431,-584,-254,-638,-263,-367,-294,-183], +[0,-14731,-479,-519,-668,-689,-713,-1496,-10962,-1863,-2384,-2541], +[0,-712,-5535,-714,-3974,-4000,-687,-2265,-5514,-5553,-3770,-3975,-5538,-5550,-2547,-1573,-5545,-3958,-5554], [1,3,9627], [0,9628,101,9629,6], -[0,-58,-200], -[0,-6279,-99,-209,-46], +[0,-719,-1376], +[0,-2561,-3690,-3844,-3445], [1,3,9631], [0,9632,9633,9634,4], -[0,-467,-20,-2901,-880,-1190,-138,-767,-394,-8115], -[0,-34,-3], -[0,-724,-37,-958,-1776,-8114,-8113,-2019,-2303,-240], +[0,-1630,-668,-688,-2528,-481,-2269,-482,-2267,-14732], +[0,-2541,-1654], +[0,-5732,-687,-3976,-2559,-14733,-14734,-6335,-12665,-5514], [1,3,9636], [0,218,9637,9638,5], -[0,-82,-16,-3], -[0,-8112,-6278,-8111,-8110,-8109,-484,-8108,-2022], +[0,-2198,-2177,-1654], +[0,-14735,-2563,-14736,-14737,-14738,-5269,-14739,-6249], [1,3,9640], [0,0,0,9641,11], -[0,-2,-318,-409,-540,-3259], +[0,-2410,-4058,-3926,-8038,-8910], [1,3,9643], [0,9644,9645,9646,6], -[0,-201,-41,-563,-258], -[0,-6013,-109,-732,-735,-4177,-257,-8107,-69,-4176,-168,-13,-244,-503,-384,-619,-298,-1,-8106,-757,-3,-700,-158,-4,-134, --33,-2], -[0,-258,-41,-99,-8105,-8104,-46], +[0,-523,-1004,-1851,-2564], +[0,-3731,-3035,-4269,-3732,-14740,-3617,-14741,-3621,-14742,-617,-664,-665,-720,-724,-744,-796,-932,-14743,-1380,-1654, +-1676,-1764,-1942,-2251,-2379,-2410], +[0,-2564,-1004,-3690,-14744,-14745,-3445], [1,3,9648], [0,9649,9650,9651,10], -[0,-291,-116,-36,-4302,-470,-79,-23,-261,-567,-113,-1106,-205], -[0,-182,-94,-1032,-268,-168,-619,-151,-1,-41,-32,-615,-530,-4566,-6439,-313,-363,-3,-700,-3939,-4421,-416], -[0,-75,-1090,-61,-4998,-1082,-2650,-4198,-1199,-91,-31,-585,-255,-24,-45,-857,-1420,-4744,-8103], +[0,-567,-615,-812,-13317,-1351,-1449,-1548,-1640,-1681,-2105,-2364,-2531], +[0,-526,-528,-555,-558,-617,-744,-824,-932,-1004,-1168,-1174,-1197,-11777,-1235,-1252,-1266,-1654,-1676,-1687,-12720, +-2111], +[0,-4004,-3636,-3634,-9249,-4679,-4683,-14387,-11878,-4865,-3264,-5177,-5092,-775,-3214,-4868,-5998,-10640,-14746], [1,3,9653], [0,0,9654,7,4], -[0,-3845,-3842,-8102,-1040,-5,-4175,-116,-3098,-176,-816,-8,-3,-1517,-199,-146,-378,-3149,-489,-1790,-44,-30], +[0,-2934,-2953,-14747,-9705,-3037,-14748,-615,-10877,-1419,-1421,-1415,-1654,-1660,-1412,-2234,-1413,-10034,-2153,-2314, +-2387,-2469], [1,3,9656], [0,9657,9658,9659,8], -[0,-8101,-1403,-59,-3254,-8100,-135,-58,-384,-472,-36,-41,-8099,-5703,-8098,-5702,-2222,-379,-614,-3592,-8097,-5701,-23, --608,-3927,-8096,-749,-8095,-3416,-688,-8094,-1622,-744,-1782,-742,-2168,-8093], -[0,-838,-8092,-8091,-3,-645,-39,-71,-8090], -[0,-976,-61,-91,-375,-3,-1233], +[0,-14749,-7334,-633,-8958,-14750,-714,-719,-724,-742,-812,-1004,-14751,-5456,-14752,-5457,-1296,-1304,-1336,-5458,-14753, +-5459,-1548,-1810,-1820,-14754,-2194,-14755,-7222,-2291,-14756,-8573,-2491,-2493,-2546,-2549,-14757], +[0,-465,-14758,-14759,-1654,-1860,-2322,-2347,-14760], +[0,-2568,-3634,-4865,-1989,-1654,-5471], [1,3,9661], [0,9662,40,9663,5], -[0,-714,-2274,-1035,-2290,-1868,-16,-687,-44], -[0,-1083,-1727,-1726,-1252,-1251,-2100,-1725,-1724,-784,-2099,-2098], +[0,-293,-295,-297,-14761,-832,-2177,-2369,-2387], +[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340,-4343,-4347], [1,3,9665], [0,9666,40,164,6], -[0,-20,-44,-1035,-16,-55,-714,-1993,-839,-2290,-1971,-3641], +[0,-668,-2387,-297,-2177,-1110,-293,-7356,-429,-14761,-8167,-5201], [1,3,9668], [0,9669,40,9670,4], -[0,-44,-1035,-16,-912,-93,-714,-164,-3740,-1832,-518,-5950,-1914,-3741,-1005,-2290], -[0,-1083,-1727,-1726,-1252,-1251,-2100,-1725,-8089,-784,-2098], +[0,-2387,-297,-2177,-1427,-1645,-293,-1863,-4023,-1426,-2551,-4018,-11751,-4019,-1352,-14761], +[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-14762,-4340,-4347], [1,3,9672], [0,9673,9674,9675,9], -[0,-44,-1035,-16,-714,-2274,-6277,-2290], -[0,-1313,-746], -[0,-1727,-1726,-1252,-8088,-1724,-784,-2099,-2098], +[0,-2387,-297,-2177,-293,-295,-2569,-14761], +[0,-1787,-2257], +[0,-4333,-4334,-4335,-14763,-4339,-4340,-4343,-4347], [1,3,9677], [0,9678,9679,9680,11], -[0,-8087,-8086,-44], -[0,-8085,-8084,-5841,-1109], -[0,-8083,-6,-4174,-4173,-485,-4931,-1212,-2305,-8082,-4172,-4171], +[0,-14764,-14765,-2387], +[0,-14766,-14767,-4745,-2344], +[0,-14768,-2006,-14769,-14770,-5176,-9547,-7581,-12543,-14771,-14772,-14773], [1,3,9682], [0,9683,9684,9685,11], -[0,-8081,-241,-6,-35,-8080,-6322,-8079], -[0,-5,-47,-87,-1,-3103,-38,-557,-2], -[0,-1685,-659,-4329,-1685,-61,-1963,-4328,-358,-4327,-4326,-3617,-4325,-3089,-1080], +[0,-14774,-2634,-2006,-2019,-14775,-2170,-14776], +[0,-3037,-3040,-3052,-932,-10813,-1889,-2318,-2410], +[0,-5375,-770,-13055,-5375,-3634,-8576,-13056,-3551,-13057,-13058,-5376,-13059,-11152,-5150], [1,3,9687], [0,9688,0,9689,4], -[0,-764,-121,-90,-2693,-6007,-2694], -[0,-6,-108,-953,-1865], +[0,-786,-1967,-44,-3772,-3773,-3765], +[0,-2006,-3159,-4217,-906], [1,3,9691], [0,9692,190,9693,11], -[0,-1408,-5458,-8078], -[0,-45,-166,-165,-1602,-42], +[0,-6789,-6790,-14777], +[0,-3214,-1446,-1838,-10855,-856], [1,3,9695], [0,9696,9697,264,4], -[0,-90,-1751], -[0,-29,-8], +[0,-44,-3345], +[0,-3136,-1415], [1,3,9699], [0,9700,9701,9702,4], -[0,-90,-8077,-121,-439,-44], -[0,-2735,-3522,-2724,-2690,-2766,-4170,-3283,-2936,-203,-80,-4039,-330,-155,-4169,-122,-317,-29,-972,-47,-22,-19,-1266, --8076,-4168,-1184,-618,-26,-502,-1,-2743,-64,-420,-8075,-4167,-1434,-5191,-65,-491,-1730,-6,-35,-439,-234,-286,-801, --1110,-2], -[0,-8074,-6,-5477,-8073,-8072,-2129,-1409,-4436,-8071,-1248,-8070,-3028,-8069], +[0,-44,-14778,-1967,-2029,-2387], +[0,-3192,-6093,-3394,-3794,-2685,-14779,-8471,-261,-3326,-350,-405,-406,-407,-14780,-409,-410,-3136,-3140,-3040,-427,-428, +-3766,-14781,-14782,-639,-757,-767,-795,-932,-3071,-969,-1059,-14783,-14784,-5111,-8158,-1771,-1940,-4130,-2006,-2019, +-2029,-2034,-2052,-2184,-2253,-2410], +[0,-14785,-2006,-6701,-14786,-14787,-3823,-6750,-12605,-14788,-4666,-14789,-12606,-14790], [1,3,9704], [0,90,0,9705,9], -[0,-951,-1248,-3638,-3138,-24,-2047,-8068,-336,-45,-270,-8067,-8066,-2302,-8065,-8064,-38,-218,-8063,-8062,-1409,-1597, --4166,-414,-8061], +[0,-4665,-4666,-5248,-10111,-775,-5564,-14791,-3962,-3214,-3756,-14792,-14793,-12898,-14794,-14795,-1889,-3583,-14796, +-14797,-6750,-12123,-14798,-2363,-14799], [1,3,9707], [0,9708,9709,9710,9], -[0,-6196,-4165,-4164,-767,-8060,-276,-210,-8059], -[0,-4163,-877,-1274,-8058,-4162,-8057,-2], -[0,-4161,-2105,-132,-141,-91,-46,-53,-4160,-4159], +[0,-2857,-14800,-14801,-482,-14802,-1460,-2400,-14803], +[0,-14804,-3311,-3312,-14805,-14806,-14807,-2410], +[0,-14808,-4187,-2444,-3966,-4865,-3445,-3100,-14809,-14810], [1,3,9712], [0,0,0,9713,8], -[0,-550,-217,-8056,-1638,-733,-1253,-8055,-8054,-8053,-2494,-8052], +[0,-3276,-7148,-14811,-7485,-4165,-4182,-14812,-14813,-14814,-7198,-14815], [1,3,9715], [0,9716,9717,264,5], -[0,-11,-3037,-90,-1751,-8051,-8050,-8049,-8048,-6272,-8047,-8046,-8045,-2939,-8044,-2161,-8043,-728,-4158,-2160,-2271, --788,-3152,-2968,-537,-2967,-160,-98,-8042,-2608,-305,-20,-58,-159,-144,-1343,-215,-1024,-40,-28,-380,-8041,-1013,-346, --911,-2863,-23,-377,-236,-8040,-188,-149,-38,-2196,-1808,-561,-492,-2315,-4,-397,-2543,-1302,-692,-640, --1225,-689,-272,-154,-4157,-392,-8039,-195,-104,-4578,-17,-520,-170,-2588], -[0,-8038,-3768,-185,-142,-8037,-955,-1220,-1903,-1432,-262,-810,-157,-7], +[0,-23,-12490,-44,-3345,-14816,-14817,-14818,-14819,-2577,-14820,-14821,-14822,-160,-14823,-2695,-14824,-4785,-14825, +-2699,-366,-3735,-9947,-14826,-440,-14827,-518,-534,-14828,-5323,-635,-668,-719,-753,-778,-779,-865,-866,-1077,-1107, +-1122,-14829,-1123,-1331,-1455,-1469,-1548,-1643,-1666,-14830,-1729,-1805,-1889,-1896,-1897,-1906,-1908,-12060,-1942, +-1966,-6387,-2015,-2041,-2144, +-5977,-2193,-2195,-2275,-14831,-2335,-14832,-2435,-2466,-11710,-2501,-2502,-2505,-5628], +[0,-14833,-3758,-3048,-3044,-14834,-4201,-6630,-13186,-5129,-1623,-1683,-1978,-2125], [1,3,9719], [0,34,9720,9721,5], -[0,-1357,-80,-231,-63,-232,-1279,-29,-47,-22,-19,-1741,-535,-445,-1,-12,-10,-25,-64,-8,-176,-79,-15,-4,-6,-35,-7,-14,-895, --870,-5938,-301,-640,-890,-57,-211,-33,-44,-124,-17,-92,-170,-1356,-4048], -[0,-1934,-546,-871,-106,-1261,-53,-114,-336,-1260,-814,-318,-1259,-679,-1258], +[0,-234,-350,-4062,-351,-3561,-3043,-3136,-3040,-427,-428,-3807,-748,-915,-932,-940,-958,-967,-969,-1415,-1419,-1449, +-1788,-1942,-2006,-2019,-2125,-2127,-2130,-4063,-4064,-2142,-2144,-2233,-2375,-2376,-2379,-2387,-2402,-2501,-2503,-2505, +-238,-240], +[0,-9975,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], [1,3,9723], [0,34,9724,9725,4], -[0,-11,-21,-140,-513,-29,-5,-22,-19,-4156,-4155,-4154,-1892,-858,-2589,-159,-26,-1,-12,-10,-4153,-825,-8,-176,-4,-7,-14, --273,-895,-301,-640,-2966,-57,-44,-124,-2,-74,-1356], -[0,-74,-873,-4152,-546,-871,-106,-1261,-53,-114,-336,-1260,-814,-318,-1259,-679,-1258], +[0,-23,-40,-42,-4066,-3136,-3037,-427,-428,-14835,-14836,-14837,-441,-4838,-5593,-753,-767,-932,-940,-958,-14838,-980, +-1415,-1419,-1942,-2125,-2127,-2128,-2130,-2142,-2144,-14839,-2375,-2387,-2402,-2410,-2476,-238], +[0,-2476,-3944,-14840,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], [1,3,9727], [0,34,9728,9729,8], -[0,-11,-21,-140,-109,-29,-69,-5,-22,-19,-4156,-4155,-8036,-4154,-1892,-858,-2589,-13,-26,-1,-12,-10,-4153,-825,-65,-4,-7, --14,-273,-895,-301,-640,-2966,-8035,-44,-124,-2,-74,-1356,-6269], -[0,-74,-873,-4152,-546,-871,-106,-1261,-53,-114,-336,-1260,-814,-318,-1259,-679,-1258,-585,-24,-1292], +[0,-23,-40,-42,-3035,-3136,-3621,-3037,-427,-428,-14835,-14836,-14841,-14837,-441,-4838,-5593,-664,-767,-932,-940,-958, +-14838,-980,-1771,-1942,-2125,-2127,-2128,-2130,-2142,-2144,-14839,-14842,-2387,-2402,-2410,-2476,-238,-2584], +[0,-2476,-3944,-14840,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060,-5177,-775,-2316], [1,3,9731], [0,9732,9733,9734,5], -[0,-246,-936,-4920,-607,-483,-2527], -[0,-408,-5,-43,-4474,-4,-147,-260,-2473,-233,-210,-2,-1396,-34], -[0,-505,-428,-578,-132,-202,-31,-165,-8034], +[0,-5334,-9596,-9582,-1839,-5358,-6648], +[0,-4251,-3037,-652,-12326,-1942,-2094,-2100,-7699,-2399,-2400,-2410,-7669,-2541], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-1838,-14843], [1,3,9736], [0,0,9737,9738,4], -[0,-1,-3,-15,-27], -[0,-3896,-8033,-8032,-4272,-8031,-46], +[0,-932,-1654,-1788,-2210], +[0,-2254,-14844,-14845,-13497,-14846,-3445], [1,3,9740], [0,0,0,9741,4], -[0,-8030,-8029,-8028,-8027,-8026,-8025,-8024,-8023,-42,-100], +[0,-14847,-14848,-14849,-14850,-14851,-14852,-14853,-14854,-856,-1599], [1,3,9743], [0,9744,9745,9746,6], -[0,-2367,-3154,-4151,-36,-3156,-758,-1305,-889,-71,-44,-977], -[0,-2118,-2117,-296,-295,-162,-3153,-2325,-29,-5,-2333,-2366,-1976,-3280,-1,-8,-4,-120,-57,-2], -[0,-333,-282,-37,-95,-300,-2365,-484], +[0,-9929,-9936,-14855,-812,-9927,-1371,-1875,-2240,-2347,-2387,-2555], +[0,-3986,-3988,-3470,-3471,-3198,-9943,-11697,-3136,-3037,-11337,-9941,-7836,-8497,-932,-1415,-1942,-2174,-2375,-2410], +[0,-5271,-5270,-687,-3162,-3994,-9946,-5269], [1,3,9748], [0,9749,0,9750,5], -[0,-246,-8022,-3022,-2875,-2965,-1078,-483], -[0,-428,-31,-2965,-4218,-100,-2348,-841,-107,-374,-931,-274,-8021,-133], +[0,-5334,-14856,-12767,-1293,-14857,-5356,-5358], +[0,-9589,-3264,-14857,-14075,-1599,-10684,-10918,-3862,-2083,-12745,-2093,-14858,-2427], [1,3,9752], [0,9753,9754,9755,5], -[0,-3968,-461], -[0,-51,-152,-2,-34], -[0,-1371,-174,-8020,-37,-668,-280,-240,-5685,-194], +[0,-1281,-2297], +[0,-519,-708,-2410,-2541], +[0,-10606,-3974,-14859,-687,-6659,-7440,-5514,-5560,-4000], [1,3,9757], [0,9758,9759,9760,11], -[0,-1961,-1909], -[0,-310,-4616,-487,-283,-48,-357,-252,-1057,-330,-155,-122,-8019,-29,-5,-47,-4438,-22,-19,-2376,-1,-12,-3034,-64,-190, --1549,-55,-9,-8,-176,-18,-241,-4,-6,-35,-1100,-7,-16,-2,-83], -[0,-2165,-6,-682,-113,-433,-865], +[0,-8609,-12518], +[0,-2832,-11432,-3615,-3244,-190,-3983,-367,-7043,-406,-407,-409,-14860,-3136,-3037,-3040,-12591,-427,-428,-9723,-932, +-940,-12520,-969,-970,-976,-1110,-1344,-1415,-1419,-1534,-2634,-1942,-2006,-2019,-2965,-2125,-2177,-2410,-2411], +[0,-2592,-2006,-3322,-2105,-3324,-4213], [1,3,9762], [0,0,9763,9764,5], -[0,-5,-800,-1295,-171,-2], -[0,-2,-540,-635,-2406,-773,-1386,-450,-1213,-318,-46,-184,-106,-3490,-299,-510,-5520,-2359,-851,-2311,-8018,-8017], +[0,-3037,-2228,-2229,-2391,-2410], +[0,-2410,-8038,-3694,-9069,-7304,-8425,-6582,-7534,-4058,-3445,-3577,-4055,-6435,-640,-5835,-6421,-10227,-6233,-12343, +-14861,-14862], [1,3,9766], [0,9767,9768,9769,4], -[0,-8016,-8015,-8014], -[0,-427,-577,-357,-1,-117,-1140,-3,-416,-5160,-81,-112], -[0,-2981,-8013,-91,-1059,-1507,-2289,-4258,-1101,-8012,-8011,-8010,-8009,-8008,-8007,-8006], +[0,-14863,-14864,-14865], +[0,-25,-46,-3983,-932,-1452,-1547,-1654,-2111,-8325,-2384,-2416], +[0,-14233,-14866,-4865,-6899,-1819,-14867,-13626,-2594,-14868,-14869,-14870,-14871,-14872,-14873,-14874], [1,3,9771], [0,0,9772,9773,4], -[0,-79,-113,-1798], -[0,-31,-3173,-3185], +[0,-1449,-2105,-2106], +[0,-3264,-9703,-9566], [1,3,9775], [0,9776,9777,9778,4], -[0,-1158,-8005,-4905,-394,-8004,-8003,-8002,-1414,-8001,-8000,-7999,-7998,-7997,-7996,-7995,-7994,-7993,-7992,-7991,-2403, --4200,-7990,-7989,-7988,-5048,-7987,-7986,-7985], -[0,-43,-118,-27,-7984,-1573,-1,-237,-7983,-499,-4,-252,-660,-26,-125,-373,-3127,-2,-5,-7982,-7981,-269,-5969,-4661,-7980, --954,-7979,-7978,-7977,-7976,-7975,-7974,-4285,-7973,-7972,-861], -[0,-7971,-52,-1904], +[0,-1297,-14875,-9684,-2267,-14876,-14877,-14878,-6467,-14879,-14880,-14881,-14882,-14883,-14884,-14885,-14886,-14887, +-14888,-14889,-9154,-14380,-14890,-14891,-14892,-8965,-14893,-14894,-14895], +[0,-652,-999,-2210,-14896,-581,-932,-825,-14897,-1098,-1942,-367,-749,-767,-2293,-2091,-10402,-2410,-3037,-14898,-14899, +-4372,-3906,-11098,-14900,-4203,-14901,-14902,-14903,-14904,-14905,-14906,-13409,-14907,-14908,-4646], +[0,-14909,-3161,-13039], [1,3,9780], [0,9781,9782,9783,4], -[0,-7970,-7969,-215,-649,-188,-5868], -[0,-7968,-7967,-5,-955,-1,-3429,-4,-7,-153,-2,-30], -[0,-1441,-1985,-733], +[0,-14910,-14911,-865,-1461,-1729,-4389], +[0,-14912,-14913,-3037,-4201,-932,-7060,-1942,-2125,-2392,-2410,-2469], +[0,-4344,-7547,-4165], [1,3,9785], [0,9786,9787,9788,8], -[0,-36,-689,-44,-96,-40,-58,-188,-7966,-2367,-1511,-3155,-7965], -[0,-417,-8,-9,-372,-1,-7,-57,-4,-2,-29,-5,-162,-2333,-1204,-366,-185,-955,-7964,-2118,-2117,-22], -[0,-1529,-3743,-7963,-95,-484,-741,-7962], +[0,-812,-2193,-2387,-2550,-1077,-719,-1729,-14914,-9929,-1734,-9931,-14915], +[0,-1763,-1415,-1344,-2331,-932,-2125,-2375,-1942,-2410,-3136,-3037,-3198,-11337,-8890,-50,-3048,-4201,-14916,-3986,-3988, +-427], +[0,-1386,-3996,-14917,-3162,-5269,-3167,-14918], [0,25,9790], 1753574400000, [1,3,9792], [0,9793,0,93,4], -[0,-267,-704,-121,-642,-6,-35,-439,-595], +[0,-682,-1384,-1967,-1993,-2006,-2019,-2029,-2489], [1,3,9795], [0,9796,0,9797,10], -[0,-44,-7960,-7959,-7958], -[0,-5624,-380,-209,-52,-141,-335,-2], +[0,-2387,-14920,-14921,-14922], +[0,-5818,-1122,-3844,-3161,-3966,-3967,-2410], [1,3,9799], [0,9800,9801,221,5], -[0,-4863,-7957,-4859,-3155,-2367,-4862,-4861,-4864,-4860,-3154,-20,-36,-207,-3156,-4866,-23,-149,-1458,-2424,-16,-889, --4865,-2388,-688,-312,-44], -[0,-162,-1201,-3153,-29,-142,-5,-137,-2366,-3721,-1423,-8,-496,-18,-7,-130,-57,-2], +[0,-9933,-14923,-9938,-9931,-9929,-9934,-9935,-9932,-9937,-9936,-668,-812,-834,-9927,-9925,-1548,-1805,-3547,-8874,-2177, +-2240,-9926,-9422,-2291,-2323,-2387], +[0,-3198,-9939,-9943,-3136,-3044,-3037,-3199,-9941,-4202,-5673,-1415,-1417,-1534,-2125,-2231,-2375,-2410], [1,3,9803], [0,34,9804,9805,5], -[0,-7956,-7955,-7954,-5173,-2283,-2282,-2281,-2942,-22,-19,-51,-535,-1,-12,-10,-25,-7953,-15,-4,-7,-489,-146,-44,-124,-2, --1356], -[0,-192,-546,-871,-106,-1261,-53,-114,-336,-1260,-814,-318,-1259,-679,-1258], +[0,-14924,-14925,-14926,-8250,-7,-8,-9,-10,-427,-428,-519,-748,-932,-940,-958,-967,-14927,-1788,-1942,-2125,-2153,-2234, +-2387,-2402,-2410,-238], +[0,-475,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], [1,3,9807], [0,9808,9809,9810,4], -[0,-3278,-23], -[0,-5,-22,-19,-1,-12,-10,-25,-4,-7,-14,-895,-301,-640,-44,-124,-2,-1356], -[0,-546,-871,-106,-1261,-53,-114,-336,-1260,-814,-318,-1259,-679,-1258], +[0,-8547,-1548], +[0,-3037,-427,-428,-932,-940,-958,-967,-1942,-2125,-2127,-2130,-2142,-2144,-2387,-2402,-2410,-238], +[0,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], [1,3,9812], [0,9813,9814,65,5], -[0,-224,-1282], -[0,-2654,-171,-1287], +[0,-712,-2544], +[0,-4597,-2391,-2423], [1,24,9816], [0,25,9817], 1738454400000, [1,3,9819], [0,9820,9821,9822,4], -[0,-90,-1100], -[0,-7952,-6,-1,-152,-33,-4,-26,-35,-7951,-2,-1434,-47,-4167,-87,-7950,-286,-1639,-19,-1765,-22], -[0,-61,-6,-682,-388,-857], +[0,-44,-2965], +[0,-14928,-2006,-932,-708,-2379,-1942,-767,-2019,-14929,-2410,-5111,-3040,-14784,-3052,-14930,-2052,-7465,-428,-3081,-427], +[0,-3634,-2006,-3322,-5119,-4868], [1,3,9824], [0,9825,0,9826,8], -[0,-7949,-7948,-7947], -[0,-4765,-2374,-4557,-3171,-5432,-5033,-39,-7946,-389,-7945,-592,-4185,-4667,-2029,-3092,-2040,-1990,-7944,-7943,-126, --7942,-4150,-3115,-436,-6122,-7941,-444,-270,-593,-4173,-5428,-4656,-3019,-318,-7940,-7939,-1410,-4174,-4383,-627,-865, --258,-2034,-1938,-1654,-1420,-2413,-7938,-3077,-7937,-1662,-5622,-987,-1467,-7936,-7935,-254,-494,-921,-1957,-2456,-202, --361, --3402,-745,-942,-2578,-2382,-2036,-2124,-1929,-7934,-163,-3066,-5433,-868,-7933,-1373,-5030,-5503,-1271,-2326,-2008, --3065,-4491,-7932,-1975,-7931,-2311,-485,-58,-360,-2580,-1991,-4171,-5138,-3246,-3060,-2512,-5427,-5382,-99,-853,-37, --2972,-7930,-1633,-1212,-7929,-245,-7928,-73,-1690,-2681,-7927,-44,-685,-4852,-5542,-5832,-7926,-5490,-4762,-3438,-5426, --1221,-2998, --3116,-1913,-1226,-756,-4337,-814,-540,-111,-240,-3690,-1399,-511,-5139,-869,-778,-5423,-1353,-7925,-7924,-1415,-5429, --774,-878,-1067,-261,-300,-78,-2995,-3009,-7923,-1277,-1428,-7922,-7921,-851,-4472,-3259,-4768,-1573,-542,-6123,-727, --2180,-2506,-1645,-7920,-2319,-4560,-5961,-5422,-1217,-60,-509,-7919,-1265,-2110,-4559,-7918,-2685,-4657,-3461,-3403, --940,-61, --1391,-5416,-3510,-7917,-682,-4526,-4760,-7916,-2613,-638,-4764,-1050,-7915,-2338,-255,-5043,-3346,-529,-8,-199,-1094, --1065,-1030,-1756,-1109,-5420,-3315,-4564,-5325,-158,-659,-603,-1649,-546,-407,-5434,-5137,-549,-3482,-7914,-7913,-430, --7912,-4376,-5504,-3316,-183,-305,-5431,-267,-849,-7911,-4187,-7910,-1927,-7909,-5962,-2988,-5409,-1403,-5621,-2996, --2973,-7908, --2231,-4767,-219,-3440,-1931,-4377,-2455,-1045,-5338,-437,-2997,-7907,-172,-2670,-380,-5424,-4310,-1082,-4381,-726,-2596, --1605,-5421,-7906,-3248,-2305,-854,-4556,-608,-5482,-7905,-7904,-7903,-7902,-4379,-1642,-5093,-1995,-85,-1062,-7901, --1664,-303,-322,-948,-683,-2492,-464,-4149,-548,-642,-4558,-786,-2999,-1855,-3126,-3042,-1644,-1948,-1406,-3010,-7900, --5415,-225, --1753,-2150,-3131,-338,-7899,-1164,-1949,-3157,-106,-951,-3061,-433,-2048,-1657,-5425,-405,-1004,-3,-1717,-113,-7898, --1222,-1465,-4766,-2028,-5430,-550,-7897,-4524,-5381,-7896,-595,-236,-1615,-24,-3474,-1987,-4372,-4276,-7895,-5833,-4336, --116,-141,-79,-2109,-4378,-5963,-7894,-5483,-7893,-1624,-1623,-846,-1380,-4186,-4172,-3036,-1958,-431,-370,-7892,-2643, --5418, --7891,-3481,-2538,-4879,-3057,-5411,-7890,-2327,-7889,-409,-2025,-95,-850,-3091,-159,-339,-7888,-13,-5410,-5199,-7887, --1419,-3445,-4463,-1641,-7886,-263,-4525,-7885,-7884,-650,-7883,-3749,-7882,-3734,-2590,-676,-1631,-3161,-7881,-978, --7880,-7879,-4921,-7878,-7877,-672,-334,-7876,-4761,-128,-4234,-4462,-223,-1992,-5694,-669,-3273,-135,-2108,-4923,-4380, --4237,-5413, --3062,-7875,-7874,-349,-1368,-401,-353,-7873,-674,-7872,-2412,-1253,-1630,-2504,-160,-3018,-986,-7871,-3064,-471,-698, --5417,-2044,-4612,-280,-7870,-7869,-3437], +[0,-14931,-14932,-14933], +[0,-10543,-9745,-11796,-9753,-6955,-9030,-2322,-14934,-4132,-14935,-3277,-14647,-11069,-6129,-11037,-5880,-7375,-14936, +-14937,-6656,-14938,-14939,-10545,-3018,-3210,-14940,-1015,-3756,-3116,-14770,-6960,-11113,-12877,-4058,-14941,-14942, +-6695,-14769,-12869,-6324,-4213,-2564,-6052,-9772,-6821,-5998,-8988,-14943,-11582,-14944,-6511,-5837,-1985,-3103,-14945, +-14946,-5550,-1631,-1000,-8808,-8127,-3590,-1959, +-7333,-2487,-7420,-5856,-9571,-6011,-3921,-10838,-14947,-2265,-11784,-6953,-4111,-14948,-10366,-9054,-6510,-3612,-11685, +-6787,-11798,-12255,-14949,-7863,-14950,-12343,-5176,-719,-3272,-5831,-7373,-14773,-8411,-9027,-11822,-6849,-6962,-7199, +-3690,-5846,-687,-14604,-14951,-7856,-7581,-14952,-5827,-14953,-3215,-5195,-3911,-14954,-2387,-3015,-9980,-6281,-4784, +-14955,-6548,-10547,-6951,-6964,-6599,-13466, +-10527,-11866,-5924,-1435,-13003,-1463,-8038,-3578,-5514,-4782,-7558,-5572,-8410,-4110,-6120,-6968,-503,-14956,-14957, +-6434,-6958,-6917,-3258,-6107,-1640,-3994,-1471,-13469,-12991,-14958,-3186,-5272,-14959,-14960,-6233,-12342,-8910,-10537, +-581,-6187,-3206,-5112,-2368,-6932,-7283,-14961,-11872,-11791,-3931,-6970,-6845,-510,-5874,-14962,-3771,-4113,-11792, +-14963,-3815,-11112,-6717,-7331,-8027,-3634, +-8163,-6977,-6280,-14964,-3322,-12020,-10549,-14965,-5210,-2547,-10544,-8108,-14966,-11153,-5092,-8989,-7822,-1361,-1415, +-1412,-3481,-6370,-655,-3207,-2344,-6972,-8166,-11782,-7459,-1764,-770,-2059,-7091,-4053,-4792,-6946,-8412,-3582,-6508, +-14967,-14968,-4795,-14969,-12893,-6506,-8164,-5554,-635,-6956,-682,-6557,-14970,-14622,-14971,-11070,-14972,-3930, +-13770,-6987,-7334,-5842,-13468,-14525,-14973, +-1080,-10539,-2518,-6947,-10440,-12892,-8132,-8421,-7404,-2451,-13467,-14974,-1961,-4142,-1122,-6966,-13234,-4679,-12883, +-5549,-5395,-9918,-6971,-14975,-8996,-12543,-5829,-11797,-1810,-6655,-14976,-14977,-14978,-14979,-12888,-7370,-8616, +-7237,-2319,-6748,-14980,-6439,-1076,-2074,-5569,-3173,-7230,-1983,-14981,-3770,-1993,-11793,-4107,-13465,-1039,-10413, +-12437,-7303,-9173,-6989,-12990,-14982,-6978,-5553, +-3270,-3185,-10330,-3217,-14983,-1030,-9172,-9917,-4055,-4665,-11821,-3324,-5563,-6784,-6965,-7421,-1359,-1654,-4676, +-2105,-14984,-6545,-3175,-10541,-6130,-6957,-3276,-14985,-12025,-7200,-14986,-2489,-1666,-9261,-775,-6543,-7442,-12912, +-13471,-14987,-4781,-13005,-615,-3966,-1449,-4115,-12889,-3925,-14988,-6654,-14989,-8388,-8472,-6948,-9048,-14624,-14772, +-12512,-8806,-3975,-3209,-14990,-4783,-6975, +-14991,-6509,-6444,-9847,-11867,-6985,-14992,-11639,-14993,-3926,-6188,-3162,-6555,-11049,-753,-3184,-14994,-664,-6986, +-8128,-14995,-6131,-6852,-12435,-7372,-14996,-1573,-12021,-14997,-14998,-1456,-14999,-3923,-15000,-4134,-5562,-5101, +-8047,-9826,-15001,-2525,-15002,-15003,-9577,-15004,-15005,-5396,-5208,-15006,-10548,-2114,-13872,-12438,-729,-7369, +-5484,-6351,-8618,-714,-4117,-9572,-12885,-13858,-6983, +-11820,-15007,-15008,-1047,-11997,-1342,-727,-15009,-5260,-15010,-8990,-4182,-8130,-6952,-518,-12878,-1986,-15011,-11817, +-891,-1801,-6976,-5841,-11483,-7440,-15012,-15013,-6980], [1,3,9828], [0,0,9829,9830,4], -[0,-117,-2453,-3], -[0,-240,-31], +[0,-1452,-8171,-1654], +[0,-5514,-3264], [1,3,9832], [0,9833,9834,9835,5], -[0,-269,-27,-44], -[0,-4318,-1268,-4317,-4316,-4314,-4313,-7868,-124], -[0,-1227,-1033,-61,-307,-5120,-7867], +[0,-4372,-2210,-2387], +[0,-13198,-3698,-13201,-13202,-13204,-13205,-15014,-2402], +[0,-5817,-521,-3634,-4215,-8466,-15015], [1,3,9837], [0,0,9838,9839,8], -[0,-232,-20,-7866,-40,-28,-32,-3978,-7865,-7,-14,-415,-301,-175,-44,-196,-2], -[0,-300,-1444,-7864,-7863,-111,-282,-4602,-45,-414,-4148,-95,-1026,-107,-1284,-6043], +[0,-3561,-668,-15016,-1077,-1107,-1168,-1190,-15017,-2125,-2127,-2132,-2142,-2334,-2387,-2388,-2410], +[0,-3994,-4126,-15018,-15019,-3578,-5270,-11536,-3214,-2363,-15020,-3162,-752,-3862,-2494,-3588], [1,3,9841], [0,0,0,9842,5], -[0,-194,-95,-36], +[0,-4000,-3162,-812], [1,3,9844], [0,9845,9846,9847,8], -[0,-168,-384,-36,-1868,-3659,-1018,-495,-748,-258], -[0,-357,-7862,-6129,-4040,-3828,-1582,-5978,-359,-160,-4007,-1,-12,-2886,-55,-38,-4,-6355,-459,-220,-2785,-557,-2,-104, --30], -[0,-99,-46,-105,-881,-205,-410,-335], +[0,-617,-724,-812,-832,-5035,-996,-1496,-2213,-2564], +[0,-3983,-15021,-3171,-364,-3170,-365,-3865,-3330,-518,-803,-932,-940,-975,-1110,-1889,-1942,-1946,-2910,-2299,-2300, +-2318,-2410,-2466,-2469], +[0,-3690,-3445,-1334,-2512,-2531,-3691,-3967], [1,3,9849], [0,0,9850,9851,6], -[0,-11,-21,-49,-62,-160,-98,-1031,-4465,-13,-7861,-1182,-7860,-298,-7859,-32,-7858,-615,-7857,-7856,-1009,-654,-530,-1162, --1161,-2227,-2879,-2226,-1538,-314,-1007,-1537,-7855,-313,-653,-6433,-7854,-9,-7853,-101,-495,-3,-1821,-7852,-1241,-38, --2820,-2809,-416,-14,-273,-1457,-2745,-7851,-27,-2111,-7850,-70,-7849,-17,-2471], -[0,-24,-432,-77,-270,-636,-6046,-52,-5532,-7848,-7847], +[0,-23,-40,-86,-3307,-518,-534,-632,-12427,-664,-15022,-699,-15023,-796,-15024,-1168,-15025,-1174,-15026,-15027,-1184, +-1187,-1197,-1199,-1212,-1228,-1232,-1237,-1238,-1243,-1244,-1248,-15028,-1252,-1262,-1271,-15029,-1344,-15030,-1442, +-1496,-1654,-1655,-15031,-4916,-1889,-1953,-2109,-2111,-2127,-2128,-3572,-3031,-15032,-2210,-4096,-15033,-2460,-15034, +-2501,-7752], +[0,-775,-3754,-2162,-3756,-3576,-3575,-3161,-6334,-15035,-15036], [1,3,9853], [0,9854,9855,9856,9], -[0,-20,-7846], -[0,-7845,-103,-9,-18,-4,-2,-30], -[0,-37,-224,-135,-671,-294,-194,-584,-7844,-7843,-263,-367,-254,-163,-225,-548,-174], +[0,-668,-15037], +[0,-15038,-3664,-1344,-1534,-1942,-2410,-2469], +[0,-687,-712,-714,-5535,-3958,-4000,-5538,-15039,-15040,-1573,-5545,-5550,-2265,-5553,-3770,-3974], [1,3,9858], [0,9859,9860,9861,8], -[0,-2692,-7842,-2848,-121], -[0,-50,-11,-161,-781,-216,-3037,-1196,-4456,-1096,-6081,-3803,-6085,-21,-136,-4147,-487,-283,-48,-2964,-4425,-7841,-4146, --7840,-950,-2093,-7839,-330,-155,-122,-7838,-317,-29,-1712,-5,-47,-87,-2688,-169,-86,-98,-3276,-7837,-5789,-4145,-1878, --535,-660,-159,-26,-151,-1,-266,-12,-827,-10,-148,-25,-64,-190,-1549,-40,-55,-7836, --8,-1710,-496,-176,-7835,-79,-38,-235,-4,-441,-6,-1302,-35,-439,-7834,-342,-600,-746,-888,-7833,-2780,-7832,-2987,-57, --211,-2,-17,-92,-170], -[0,-6266,-7831,-7830,-129,-369,-2667,-52,-6,-1445,-7829,-740,-7828,-7827,-7826,-7825,-1248,-7824,-7823,-7822,-224,-540, --679,-5855,-7821,-102,-2719,-5846,-7820,-888], +[0,-3776,-15041,-1606,-1967], +[0,-21,-23,-32,-5870,-26,-12490,-34,-12492,-3376,-3400,-3398,-3380,-40,-41,-15042,-3615,-3244,-190,-15043,-12687,-15044, +-15045,-15046,-4749,-4758,-15047,-406,-407,-409,-15048,-410,-3136,-4961,-3037,-3040,-3052,-3804,-527,-533,-534,-8560, +-15049,-4976,-15050,-684,-748,-749,-753,-767,-824,-932,-933,-940,-951,-958,-962,-967,-969,-970,-976,-1077,-1110,-15051, +-1415,-4980,-1417,-1419,-15052,-1449,-1889,-1939,-1942,-1952,-2006,-2015,-2019,-2029,-15053,-2082,-2205,-2257,-2278, +-15054,-2339,-15055,-13807,-2375,-2376,-2410,-2501,-2503,-2505], +[0,-2631,-15056,-15057,-3095,-3482,-4189,-3161,-2006,-4101,-15058,-3261,-15059,-15060,-15061,-15062,-4666,-15063,-15064, +-15065,-712,-8038,-3999,-4684,-15066,-3160,-3477,-4727,-15067,-2278], [1,3,9863], [0,0,0,9864,4], -[0,-1610,-1610,-31,-1056,-195], +[0,-9681,-9681,-3264,-7153,-2435], [1,3,9866], [0,0,9867,9868,4], -[0,-7819,-54,-243,-656,-532,-2230,-177,-347,-302,-7818,-2881], -[0,-4213,-4214,-7817,-1901,-2128,-1444,-3491,-3032,-1365,-249,-3269,-636,-95], +[0,-15068,-1127,-1134,-1136,-1138,-1140,-1144,-1148,-1149,-15069,-1160], +[0,-14214,-14213,-15070,-15071,-3825,-4126,-6409,-12536,-13615,-1437,-8635,-3576,-3162], [1,3,9870], [0,9871,9872,254,11], -[0,-38,-2162,-3891,-957,-1183,-2539], -[0,-205,-836,-810,-324,-312,-258,-2513,-28,-802,-132,-208,-1476,-475,-36,-709,-276,-4340,-293,-299,-1569,-352,-422,-914, --646,-1300,-16,-175,-2084,-349,-1749,-1125,-287,-17,-988,-1497,-4339,-4356,-252,-454,-58,-26,-1160,-1926,-1930,-1943, --323,-746,-1905,-7816,-3656,-1423,-3012,-4346,-144,-1774,-614,-1471,-1840,-4341,-130,-138,-885,-2, --3145,-11,-715,-458,-4347,-1966,-3552,-1577,-2764,-384,-230,-1321,-462,-3011,-749,-3501,-2301,-2124,-479,-3756,-2361, --4355,-1754,-162,-4351,-47,-98,-305,-4345,-924,-4344,-813,-4342,-901,-1962,-154,-1101,-4354,-2624,-142,-137,-4343,-2432, --3500,-692,-1225,-3499,-90,-4353,-7815,-3498,-563,-2544,-3497,-577,-1732,-4282,-4348,-1658,-3496,-697,-2543,-879,-4360, --357,-950,-623,-87,-2871,-3495,-1511,-538,-21,-3001,-3014,-1875,-759,-890,-1920,-2542,-2541,-1240,-729,-735,-945,-3448, --2503,-805,-136,-4364,-2275,-3650,-1739,-4350,-3013,-1027,-1502,-342,-161,-1903,-3494,-465,-2666,-3820,-4363,-4359,-2964, --4349,-4210,-2497,-1394,-392,-4362,-7814,-3142,-2360,-2495,-1504,-2758,-4358,-3016,-377,-974,-140,-4361,-1625,-7813, --1381, --4357,-2093,-4352,-4365,-1715,-2608,-2644,-1965,-3486,-173,-2498,-3015,-2195,-1195,-3809,-7812,-1096,-391,-6086,-3807, --3806,-834], +[0,-1889,-2694,-2279,-4007,-658,-6410], +[0,-2531,-502,-1683,-1816,-2323,-2564,-6842,-1107,-2178,-2444,-461,-2624,-651,-812,-1072,-1460,-12980,-507,-640,-649,-743, +-997,-1401,-1699,-2066,-2177,-2334,-5034,-1047,-3447,-1827,-1958,-2501,-1977,-1999,-12981,-12955,-367,-4204,-719,-767, +-1273,-11121,-10697,-9548,-1864,-2257,-12982,-15072,-5052,-5673,-12971,-12972,-778,-2745,-1336,-2773,-1354,-12977,-2231, +-2269,-2343,-2410, +-10052,-23,-237,-3036,-12967,-8559,-5900,-512,-2740,-724,-769,-1429,-2163,-12978,-2194,-6375,-12979,-3921,-47,-3872, +-10098,-12956,-3269,-3198,-12963,-3040,-534,-635,-12973,-737,-12974,-1465,-12976,-1930,-8578,-2275,-2594,-12957,-5033, +-3044,-3199,-12975,-8562,-6378,-2041,-5977,-6380,-44,-12960,-15073,-6381,-1851,-6383,-6384,-46,-4020,-13428,-12966,-6633, +-6386,-1848,-6387,-3194,-12951, +-3983,-4749,-8523,-3052,-1337,-6388,-1734,-22,-40,-13427,-12968,-771,-1343,-2233,-11463,-6390,-6391,-5038,-4776,-3732, +-7080,-6832,-7026,-1927,-41,-12947,-269,-5085,-3850,-12964,-12969,-736,-1929,-2082,-32,-13186,-6394,-1934,-4195,-3251, +-12948,-12952,-15043,-12965,-14296,-7165,-7967,-2335,-12949,-15074,-10100,-10101,-7189,-1903,-2791,-12953,-12959,-1643, +-3077,-42,-12950,-8355,-15075,-8863, +-12954,-4758,-12961,-12946,-4762,-5323,-4763,-8561,-6484,-38,-7164,-12962,-1915,-37,-3368,-15076,-3376,-3204,-3379,-3385, +-3389,-553], [1,3,9874], [0,0,9875,9876,10], -[0,-43,-2300,-9,-18,-38,-34], -[0,-38,-24,-218,-4725], +[0,-652,-13239,-1344,-1534,-1889,-2541], +[0,-1889,-775,-3583,-10739], [1,3,9878], [0,9879,9880,9881,9], -[0,-238,-3838,-7811,-467,-344,-164,-637,-4470,-285], -[0,-49,-62,-48,-296,-845,-295,-737,-582,-1058,-1089,-5,-3580,-7810,-22,-19,-26,-1,-115,-118,-55,-9,-4238,-18,-991,-4,-7, --120,-2,-30], -[0,-2676,-157,-7809,-741,-7808,-282,-333,-7807,-7806,-7805,-281,-2850,-95,-3006,-7804,-7803], +[0,-674,-3050,-15077,-1630,-1641,-1863,-3240,-12379,-2218], +[0,-86,-3307,-190,-3470,-7040,-3471,-3472,-7041,-7042,-3713,-3037,-5675,-15078,-427,-428,-767,-932,-965,-999,-1110,-1344, +-13856,-1534,-1870,-1942,-2125,-2174,-2410,-2469], +[0,-3998,-1978,-15079,-3167,-15080,-5270,-5271,-15081,-15082,-15083,-6527,-1594,-3162,-13188,-15084,-15085], [1,3,9883], [0,9884,9885,9886,9], -[0,-7802,-7801,-299,-3636,-228,-440,-5863,-7800], -[0,-11,-161,-21,-98,-7799,-1878,-4850,-144,-1,-266,-2307,-10,-3146,-277,-5976,-346,-7798,-154,-392,-2970,-17,-520,-92, --170], -[0,-3761,-5992,-5991,-2685,-1087,-1740,-42,-7797,-7796,-6263,-545,-7795,-7794,-7793,-7792,-7791,-7790,-7789], +[0,-15086,-15087,-640,-5273,-1610,-1955,-4620,-15088], +[0,-23,-32,-40,-534,-15089,-684,-9994,-778,-932,-933,-12416,-958,-10049,-1041,-3867,-1331,-15090,-2275,-2335,-14648,-2501, +-2502,-2503,-2505], +[0,-3812,-3813,-3814,-3815,-3816,-3817,-856,-15091,-15092,-2637,-4847,-15093,-15094,-15095,-15096,-15097,-15098,-15099], [1,3,9888], [0,94,9889,9890,5], -[0,-11,-161,-90,-1,-266,-12,-10,-148,-25,-64,-190,-8,-1760,-4,-6,-234], -[0,-234,-108,-932,-6,-95,-282,-333,-102,-4726,-3186,-4148,-4144,-3031,-485], +[0,-23,-32,-44,-932,-933,-940,-958,-962,-967,-969,-970,-1415,-3156,-1942,-2006,-2034], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-10738,-9556,-15020,-15100,-12546,-5176], [1,3,9892], [0,0,9893,9894,5], -[0,-11,-21,-90,-7788,-3030,-1,-9,-18,-6,-234,-2], -[0,-234,-108,-932,-6,-95,-282,-333,-102,-4231,-7787,-2524,-7786], +[0,-23,-40,-44,-15101,-12564,-932,-1344,-1534,-2006,-2034,-2410], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-13876,-15102,-6711,-15103], [1,3,9896], [0,0,9897,9898,11], -[0,-11,-161,-216,-391,-173,-21,-136,-203,-80,-63,-155,-122,-160,-304,-298,-1,-12,-3034,-25,-64,-190,-1549,-9,-1005,-8,-18, --38,-4,-121,-6,-35,-14,-870,-7785,-3797,-1246,-179,-558], -[0,-6,-2991,-7784,-1256,-6,-129,-4143,-95,-282,-333,-7783,-7782,-7781,-7780], +[0,-23,-32,-26,-3204,-38,-40,-41,-3326,-350,-351,-407,-409,-518,-703,-796,-932,-940,-12520,-967,-969,-970,-976,-1344, +-1352,-1415,-1534,-1889,-1942,-1967,-2006,-2019,-2127,-4063,-15104,-3474,-4753,-2281,-2282], +[0,-2006,-13613,-15105,-4108,-2006,-3095,-15106,-3162,-5270,-5271,-15107,-15108,-15109,-15110], [1,3,9900], [0,9901,9902,9903,9], -[0,-90,-7779,-7778], -[0,-11,-306,-173,-21,-136,-140,-1627,-366,-7777,-155,-122,-47,-87,-22,-19,-537,-94,-475,-26,-1,-12,-25,-64,-9,-8,-176,-18, --4,-6,-35,-7,-2,-104], -[0,-7776,-7775,-6,-108,-4166], +[0,-44,-15111,-15112], +[0,-23,-36,-38,-40,-41,-42,-8280,-50,-15113,-407,-409,-3040,-3052,-427,-428,-440,-528,-651,-767,-932,-940,-967,-969,-1344, +-1415,-1419,-1534,-1942,-2006,-2019,-2125,-2410,-2466], +[0,-15114,-15115,-2006,-3159,-14798], [1,3,9905], [0,9906,9907,9908,6], -[0,-446,-7774,-210], -[0,-310,-487,-48,-7773,-1040,-43,-20,-6507,-473,-89,-1,-12,-25,-118,-55,-9,-199,-18,-647,-4,-7,-1632,-2,-83], -[0,-1043,-390,-42,-114,-100,-969,-1728], +[0,-656,-15116,-2400], +[0,-2832,-3615,-190,-15117,-9705,-652,-668,-716,-722,-928,-932,-940,-967,-999,-1110,-1344,-1412,-1534,-1574,-1942,-2125, +-7969,-2410,-2411], +[0,-8630,-3671,-856,-3262,-1599,-3437,-4328], [1,3,9910], [0,9911,9912,9913,11], -[0,-2272,-304,-7772,-515,-1018,-1004,-898,-2808,-3026,-1909,-7771], -[0,-50,-11,-21,-136,-140,-90,-4147,-4715,-1209,-487,-48,-4435,-7770,-2272,-965,-2964,-2934,-1081,-4283,-6171,-7769,-2640, --7768,-7767,-7766,-155,-122,-317,-7765,-4367,-7764,-5,-47,-87,-1658,-537,-1079,-103,-98,-4142,-1965,-305,-4145,-26,-5364, --3411,-3410,-207,-1,-7763,-12,-251,-10,-181,-148,-25,-64,-190,-7762,-2645,-28,-55,-9, --79,-18,-228,-398,-4,-6,-35,-439,-898,-7,-746,-392,-211,-796,-2,-83,-5523,-30,-4141,-17,-520,-92], -[0,-6,-516,-2974,-108], +[0,-349,-703,-15118,-3517,-996,-1359,-2040,-2112,-12695,-12518,-15119], +[0,-21,-23,-40,-41,-42,-44,-15042,-10791,-8230,-3615,-190,-12608,-15120,-349,-3562,-15043,-358,-4754,-13424,-2948,-15121, +-4890,-15122,-15123,-15124,-407,-409,-410,-15125,-12940,-15126,-3037,-3040,-3052,-6633,-440,-5286,-3664,-534,-15127, +-8561,-635,-15050,-767,-7272,-7254,-7271,-834,-932,-15128,-940,-948,-958,-960,-962,-967,-969,-970,-15129,-4756,-1107, +-1110,-1344, +-1449,-1534,-1610,-1874,-1942,-2006,-2019,-2029,-2040,-2125,-2257,-2335,-2376,-2378,-2410,-2411,-6412,-2469,-15130,-2501, +-2502,-2503], +[0,-2006,-3476,-14497,-3159], [1,3,9915], [0,9916,9917,9918,4], -[0,-7761], -[0,-7760,-7759,-7758,-7757,-80,-63,-317,-5811,-5810,-7756,-7755,-5809,-7754,-7753,-43,-13,-7752,-7751,-1,-7750,-10,-79, --3080,-3,-4,-14,-7749,-801,-27,-186,-1110,-175,-2], -[0,-7748,-3653,-1706,-4494,-3652,-4150,-7747,-1682,-52,-4501,-1054,-271,-7746,-1904,-1673,-1067,-3612,-7745,-7744], +[0,-15131], +[0,-15132,-15133,-15134,-15135,-350,-351,-410,-4875,-4877,-15136,-15137,-4878,-15138,-15139,-652,-664,-15140,-15141,-932, +-15142,-958,-1449,-11472,-1654,-1942,-2127,-15143,-2184,-2210,-2211,-2253,-2334,-2410], +[0,-15144,-5072,-5065,-12238,-5073,-14939,-15145,-5495,-3161,-12122,-7651,-3110,-15146,-13039,-6106,-6107,-5394,-15147, +-15148], [1,3,9920], [0,0,9921,9922,6], -[0,-11,-1230,-21,-14,-273,-1117,-341,-2780,-7743,-2987,-112], -[0,-4140,-4139,-1212,-6392,-192,-7742,-6,-74,-3769], +[0,-23,-5585,-40,-2127,-2128,-2133,-2137,-2339,-15149,-13807,-2416], +[0,-15150,-15151,-7581,-1634,-475,-15152,-2006,-2476,-3755], [1,3,9924], [0,9925,9926,9927,4], -[0,-90,-7741,-1714,-574,-468,-7740,-1107,-437], -[0,-1097,-216,-173,-21,-140,-49,-62,-790,-203,-80,-4138,-231,-63,-232,-7739,-7738,-7737,-7736,-1278,-5,-963,-2628,-3521, --22,-19,-949,-3586,-103,-964,-5677,-1892,-4211,-2292,-858,-160,-201,-446,-2603,-503,-289,-26,-502,-298,-36,-7735,-89,-1, --191,-12,-10,-25,-825,-708,-9,-79,-222,-18,-1828,-7734,-1130,-38,-4,-440, --7733,-342,-7,-14,-4306,-870,-3646,-1223,-7732,-5469,-1246,-7731,-7730,-226,-2966,-892,-7729,-44,-2,-104,-7728,-30,-74, --979,-882,-1424], -[0,-74,-95,-7727], +[0,-44,-15153,-4817,-809,-1549,-15154,-2355,-2451], +[0,-3341,-26,-38,-40,-42,-86,-3307,-2997,-3326,-350,-15155,-4062,-351,-3561,-15156,-15157,-15158,-15159,-3164,-3037,-3803, +-5011,-6109,-427,-428,-4837,-5589,-3664,-3665,-5590,-441,-14247,-14244,-4838,-518,-523,-656,-5339,-720,-726,-767,-795, +-796,-812,-15160,-928,-932,-934,-940,-958,-967,-980,-1125,-1344,-1449,-1521,-1534,-1551,-15161,-1662,-1889,-1942,-1955, +-15162,-2082,-2125,-2127,-13263,-4063,-5122,-6483,-15163,-6746,-4753,-15164,-15165,-2140,-14839,-2145,-15166,-2387,-2410, +-2466,-15167,-2469,-2476,-2478,-2483,-5627], +[0,-2476,-3162,-15168], [1,3,9929], [0,9930,9931,9932,5], -[0,-5740,-501,-249], -[0,-11,-21,-3180,-1711,-160,-1033,-7726,-618,-26,-382,-502,-5274,-215,-1,-12,-84,-10,-76,-25,-67,-131,-288,-38,-2824,-696, --7725,-2196,-1504,-7724,-561,-1503,-7723,-2315,-4,-7,-14,-273,-463,-1117,-2420,-7722,-341,-1956,-7721,-226,-5739,-321, --179,-2154,-2783], -[0,-5733,-126,-7720,-2963,-7719,-1212,-1637,-281,-7718,-2621,-95,-3032,-1053,-952,-4497,-5065,-249], +[0,-5277,-929,-1437], +[0,-23,-40,-9678,-4964,-518,-521,-15169,-757,-767,-784,-795,-7758,-865,-932,-940,-943,-958,-966,-967,-968,-974,-1753, +-1889,-1890,-1891,-15170,-1896,-1903,-15171,-1906,-1916,-15172,-12060,-1942,-2125,-2127,-2128,-2131,-2133,-8895,-15173, +-2137,-8896,-15174,-2140,-5281,-2214,-2281,-3085,-2302], +[0,-5298,-6656,-15175,-15176,-15177,-7581,-7582,-6527,-15178,-5069,-3162,-12536,-7764,-4634,-12217,-8883,-1437], [1,3,9934], [0,9935,9936,9937,5], -[0,-201,-756,-23,-88,-489], -[0,-13,-1,-3697,-72,-3,-597], -[0,-785,-658,-37,-625,-2408,-4522,-7717,-105,-4539,-7716,-5032,-3572,-1215,-1918,-1615,-722,-7715,-2304], +[0,-523,-1435,-1548,-1646,-2153], +[0,-664,-932,-4628,-1650,-1654,-2330], +[0,-4116,-826,-687,-6999,-9043,-12054,-15179,-1334,-11915,-15180,-9041,-5730,-7085,-11642,-9261,-7084,-15181,-12578], [1,3,9939], [0,0,9940,9941,4], -[0,-160,-1031,-32,-7714,-6447,-820,-1325,-1538,-314,-1007,-313,-2468,-7713,-2823,-179,-558,-96], -[0,-6260,-7712,-7711,-24,-222,-95], +[0,-518,-632,-1168,-15182,-1194,-1208,-1226,-1238,-1243,-1244,-1252,-7832,-15183,-1899,-2281,-2282,-2550], +[0,-2649,-15184,-15185,-775,-1521,-3162], [1,3,9943], [0,0,0,9944,6], -[0,-6,-1255,-1202,-1721,-322,-952], +[0,-2006,-4125,-9800,-4633,-2074,-4634], [1,24,9946], [0,25,9947], 1731196800000, [1,3,9949], [0,9950,9951,7,8], -[0,-7710,-2664,-2104,-7709,-7708,-7707,-5912,-7706,-304,-1687,-7705,-229,-486,-2223,-2965,-908,-2343,-1134,-2595,-7704, --7703,-6268,-5911,-3903,-864,-521,-7702,-7701,-7700,-3011,-863,-285,-2306,-796,-7699,-340,-7698,-259,-258], -[0,-5777,-122,-329,-246,-408,-7697,-47,-517,-537,-7696,-1611,-3182,-241,-6,-35,-133,-30,-7695], +[0,-15186,-4225,-4228,-15187,-15188,-15189,-4230,-15190,-703,-5342,-15191,-1026,-3649,-1289,-14857,-1618,-10922,-1619, +-5397,-15192,-15193,-2590,-4241,-2088,-4242,-2095,-15194,-15195,-15196,-12978,-4245,-2218,-12508,-2378,-15197,-2429, +-15198,-2548,-2564], +[0,-5048,-409,-426,-5334,-4251,-15199,-3040,-3046,-440,-15200,-9602,-9603,-2634,-2006,-2019,-2427,-2469,-15201], [1,3,9953], [0,9954,0,9955,4], -[0,-4490], -[0,-6495,-7694,-7693,-2018,-3553,-4259,-7692,-7691,-2163], +[0,-12260], +[0,-810,-15202,-15203,-6367,-5896,-13618,-15204,-15205,-2653], [1,3,9957], [0,9958,9959,204,4], -[0,-1245,-323], -[0,-320,-5,-623,-229,-2962,-28,-1108,-371,-2], +[0,-4787,-1864], +[0,-2581,-3037,-8523,-1026,-15206,-1107,-2354,-2892,-2410], [1,3,9961], [0,0,0,9962,8], -[0,-2,-635,-75,-456,-350], +[0,-2410,-3694,-4004,-4043,-1001], [1,3,9964], [0,9965,37,9966,4], -[0,-7690,-44], -[0,-7689,-7688,-7687,-7686,-7685,-2,-2613,-73,-5506,-2385,-4137,-1630,-270,-3291,-7684,-46,-184], +[0,-15207,-2387], +[0,-15208,-15209,-15210,-15211,-15212,-2410,-5210,-3215,-6478,-9471,-15213,-8130,-3756,-8386,-15214,-3445,-3577], [1,3,9968], [0,0,28,9969,10], -[0,-1366,-127,-53,-369,-241,-399,-6,-4434,-1198,-102,-867], +[0,-12613,-3098,-3100,-3482,-2634,-1713,-2006,-12612,-12449,-3160,-4119], [1,3,9971], [0,108,28,9972,8], -[0,-354,-127,-53,-2107,-369,-241,-399,-6,-389,-5932,-102,-867], +[0,-707,-3098,-3100,-4131,-3482,-2634,-1713,-2006,-4132,-4133,-3160,-4119], [1,3,9974], [0,9975,28,9976,5], -[0,-6346], -[0,-127,-5273,-6486,-53,-369,-241,-399,-6,-102,-867,-1053], +[0,-2020], +[0,-3098,-7761,-878,-3100,-3482,-2634,-1713,-2006,-3160,-4119,-7764], [1,3,9978], [0,266,28,9979,8], -[0,-127,-53,-369,-241,-399,-1314,-361,-6,-102,-867], +[0,-3098,-3100,-3482,-2634,-1713,-1779,-1959,-2006,-3160,-4119], [1,3,9981], [0,266,28,9982,4], -[0,-7683,-127,-53,-369,-241,-399,-6,-720,-102,-867], +[0,-15215,-3098,-3100,-3482,-2634,-1713,-2006,-7282,-3160,-4119], [1,3,9984], [0,0,28,9985,4], -[0,-127,-53,-369,-241,-399,-6,-7682,-3137,-7681,-102,-867], +[0,-3098,-3100,-3482,-2634,-1713,-2006,-15216,-10114,-15217,-3160,-4119], [1,3,9987], [0,9988,9989,9990,4], -[0,-1135], -[0,-50,-11,-391,-21,-140,-309,-729,-7680,-359,-6151,-5,-22,-19,-1,-12,-10,-181,-115,-7679,-3556,-343,-7,-2,-30], -[0,-7678,-398,-502,-3,-30,-8,-199,-3936,-2330,-4136,-4660,-75,-2397,-946,-61,-7677], +[0,-1616], +[0,-21,-23,-3204,-40,-42,-3748,-4776,-15218,-3330,-3032,-3037,-427,-428,-932,-940,-958,-960,-965,-15219,-5863,-1772,-2125, +-2410,-2469], +[0,-15220,-1874,-795,-1654,-2469,-1415,-1412,-1710,-11410,-15221,-11100,-4004,-9246,-6863,-3634,-15222], [1,3,9992], [0,9993,9994,9995,6], -[0,-7676,-4135,-7675,-4134,-3021,-2961], -[0,-7674,-257,-5,-4133,-4132,-4131,-41,-7,-371,-2,-30], -[0,-2961,-41,-46,-627,-99,-1041,-2,-45,-332], +[0,-15223,-15224,-15225,-15226,-12846,-15227], +[0,-15228,-3617,-3037,-15229,-15230,-15231,-1004,-2125,-2892,-2410,-2469], +[0,-15227,-1004,-3445,-6324,-3690,-9668,-2410,-3214,-5401], [1,3,9997], [0,0,9998,9999,11], -[0,-417,-2352,-97,-75,-7673], -[0,-95,-1200,-280,-91], +[0,-1763,-10652,-2250,-4004,-15232], +[0,-3162,-11321,-7440,-4865], [1,3,10001], [0,10002,10003,10004,5], -[0,-483,-133,-246,-2875,-2414,-4417,-1111,-1078,-3022], -[0,-43,-1,-374,-4,-398,-147,-2,-5,-2527,-3023,-3024,-2337,-7672], -[0,-42,-2106,-2587,-107,-374,-931,-274,-133], +[0,-5358,-2427,-5334,-1293,-8913,-12766,-2235,-5356,-12767], +[0,-652,-932,-2083,-1942,-1874,-2094,-2410,-3037,-6648,-12750,-12749,-11167,-15233], +[0,-856,-4147,-5670,-3862,-2083,-12745,-2093,-2427], [1,3,10006], [0,10007,10008,10009,5], -[0,-7671,-7670,-7669,-7668,-7667,-7666,-7665,-7664,-7663,-7662,-7661,-7660], -[0,-50,-196,-2], -[0,-7659,-2741,-3044,-627,-45,-1600,-5224,-7658,-95], +[0,-15234,-15235,-15236,-15237,-15238,-15239,-15240,-15241,-15242,-15243,-15244,-15245], +[0,-21,-2388,-2410], +[0,-15246,-3163,-12254,-6324,-3214,-11230,-8043,-15247,-3162], [1,3,10011], [0,10012,0,93,11], -[0,-2769,-4130,-267,-4129,-704,-121,-642,-6,-35,-439,-595], +[0,-2606,-15248,-682,-15249,-1384,-1967,-1993,-2006,-2019,-2029,-2489], [1,3,10014], [0,10015,0,93,10], -[0,-6,-35,-121,-2769], +[0,-2006,-2019,-1967,-2606], [1,3,10017], [0,10018,0,10019,8], -[0,-44,-1838,-4050,-649], -[0,-1529,-52,-192,-95,-300,-2116,-3743,-1026,-3742,-2676], +[0,-2387,-1387,-232,-1461], +[0,-1386,-3161,-475,-3162,-3994,-3995,-3996,-752,-3997,-3998], [1,24,10021], [0,25,10022], 1733616000000, @@ -13855,134 +14053,139 @@ true, 1734220800000, [1,3,10029], [0,0,10030,10031,4], -[0,-395,-77,-1280,-44,-1,-7,-14,-2806,-175,-288,-38,-40,-4,-476,-26,-179,-2,-1745,-65,-696,-3504,-160,-289,-2714,-1140, --2551,-1335,-7657,-10,-150,-5533,-319,-19,-2985,-3785,-22], -[0,-24,-77,-636,-3263,-271,-1445,-52,-7656,-2335], +[0,-2200,-2162,-2834,-2387,-932,-2125,-2127,-2149,-2334,-1753,-1889,-1077,-1942,-620,-767,-2281,-2410,-3563,-1771,-1891, +-6326,-518,-726,-3564,-1547,-6327,-945,-15250,-958,-978,-6331,-3267,-428,-14014,-3573,-427], +[0,-775,-2162,-3576,-8856,-3110,-4101,-3161,-15251,-11229], [1,3,10033], [0,10034,10035,10036,4], -[0,-90,-7655,-7654], -[0,-50,-11,-216,-622,-1230,-173,-480,-21,-178,-109,-69,-5,-94,-98,-355,-833,-7653,-7652,-59,-13,-244,-3038,-26,-1,-41, --3695,-79,-3,-15,-113,-7,-800,-392,-2,-594,-744,-17,-92], -[0,-1073,-95,-99,-3104,-7651], +[0,-44,-15252,-15253], +[0,-21,-23,-26,-33,-5585,-38,-39,-40,-43,-3035,-3621,-3037,-528,-534,-539,-571,-15254,-15255,-633,-664,-665,-12469,-767, +-932,-1004,-4652,-1449,-1654,-1788,-2105,-2125,-2228,-2335,-2410,-2490,-2491,-2501,-2503], +[0,-5801,-3162,-3690,-10810,-15256], [1,3,10038], [0,0,10039,10040,11], -[0,-43,-13,-289,-56,-89,-1,-79,-6403,-3,-77], -[0,-45,-95,-282,-333,-5092], +[0,-652,-664,-726,-756,-928,-932,-1449,-1544,-1654,-2162], +[0,-3214,-3162,-5270,-5271,-8617], [1,3,10042], [0,10043,10044,10045,6], -[0,-694,-224,-574,-4128,-23,-267,-7650,-2201,-7649,-7648,-7647,-5485,-691,-7646], -[0,-2087,-6,-35,-47,-142,-90,-87,-7645,-122,-155,-317,-1477,-1468], -[0,-6,-1429,-108,-6255,-7644,-7643,-129,-127,-102,-52,-53,-95], +[0,-1992,-712,-809,-15257,-1548,-682,-15258,-1762,-15259,-15260,-15261,-6640,-2055,-15262], +[0,-4977,-2006,-2019,-3040,-3044,-44,-3052,-15263,-409,-407,-410,-2622,-3024], +[0,-2006,-5253,-3159,-2678,-15264,-15265,-3095,-3098,-3160,-3161,-3100,-3162], [1,3,10047], [0,10048,10049,93,4], -[0,-2769,-4130,-7642,-6257,-6256,-267,-704,-121,-642,-6,-35,-595,-4129], -[0,-7641,-7640,-7639], +[0,-2606,-15248,-15266,-2669,-2670,-682,-1384,-1967,-1993,-2006,-2019,-2489,-15249], +[0,-15267,-15268,-15269], [1,3,10051], [0,0,10052,10053,4], -[0,-6072,-4,-14,-273,-5724,-984], -[0,-53,-1369,-3058], +[0,-3473,-1942,-2127,-2128,-5384,-2129], +[0,-3100,-11853,-11851], [1,3,10055], [0,10056,10057,10058,4], -[0,-5452], -[0,-122,-47,-87,-144,-3987,-9,-6,-35,-2813,-154,-211,-3253,-44,-2,-17,-1271], -[0,-1409,-7638,-7637,-7636,-129,-636,-95,-414,-1409,-2129,-2960,-3028], +[0,-6815], +[0,-409,-3040,-3052,-778,-1071,-1344,-2006,-2019,-2049,-2275,-2376,-8973,-2387,-2410,-2501,-3612], +[0,-6750,-15270,-15271,-15272,-3095,-3576,-3162,-2363,-6750,-3823,-15273,-12606], [1,3,10060], [0,10061,10062,10063,10], -[0,-1247,-20,-58,-118,-40,-523,-397,-16,-284,-219,-880,-2169,-977], -[0,-4127,-960,-43,-28,-55,-5541,-1393,-604], -[0,-6254,-7635,-7634,-95,-282,-7633,-333], +[0,-4733,-668,-719,-999,-1077,-1948,-1966,-2177,-2426,-2518,-2528,-2542,-2555], +[0,-15274,-3899,-652,-1107,-1110,-6295,-8065,-1971], +[0,-2682,-15275,-15276,-3162,-5270,-15277,-5271], [1,3,10065], [0,10066,0,10067,4], -[0,-1307,-4534,-3052,-7632], -[0,-1364,-738,-367,-114,-42,-1363,-1362], +[0,-1867,-11957,-11964,-15278], +[0,-15279,-3444,-5545,-3262,-856,-15280,-15281], [1,3,10069], [0,10070,10071,10072,9], -[0,-7631,-7630,-7629,-6570,-7628,-6097,-930,-4585,-193,-58,-1979,-7627,-7626,-5605,-101,-4751,-1522,-93,-188,-7625,-641, --3109,-16,-600,-33,-2], -[0,-1,-145,-64,-2887,-40,-8,-815,-997,-7,-7624], -[0,-2730,-42,-114,-100,-3226], +[0,-15282,-15283,-15284,-31,-15285,-3325,-280,-11671,-469,-719,-7731,-15286,-15287,-5934,-1442,-10584,-1577,-1645,-1729, +-15288,-2115,-10624,-2177,-2205,-2379,-2410], +[0,-932,-959,-969,-973,-1077,-1415,-1448,-1607,-2125,-15289], +[0,-3328,-856,-3262,-1599,-9308], [1,3,10074], [0,10075,10076,10077,5], -[0,-2510,-3291,-149,-1348,-20,-118,-1142,-564,-44,-23,-16,-159,-397,-17,-119,-40,-3884,-58,-3959,-661,-1868,-501,-897, --1225,-519,-7623,-596,-7622,-559,-7621,-3758,-7620,-3718,-170,-7619,-346,-7618,-7617,-520,-7616,-7615,-7614], -[0,-1974,-5295,-87,-5979,-4287,-286,-1903,-3075,-7613,-7612,-2968,-4170], -[0,-6,-3619,-17,-42,-5291,-3354,-1867], +[0,-6869,-8386,-1805,-623,-668,-999,-1526,-1826,-2387,-1548,-2177,-753,-1966,-2501,-679,-1077,-2357,-719,-1327,-695,-832, +-929,-2043,-5977,-2508,-15290,-2433,-15291,-2044,-15292,-3859,-15293,-4239,-2505,-15294,-1331,-15295,-15296,-2502,-15297, +-15298,-15299], +[0,-7982,-7688,-3052,-3861,-13398,-2052,-13186,-11702,-15300,-15301,-14826,-14779], +[0,-2006,-5371,-2501,-856,-7695,-7696,-858], [1,3,10079], [0,10080,10081,268,11], -[0,-44,-1838,-4050], -[0,-417,-8,-6,-1,-7,-14,-57,-40,-4,-35,-2,-29,-5,-47,-87,-2118,-2117,-122,-176,-319,-155,-19,-1477,-22], +[0,-2387,-1387,-232], +[0,-1763,-1415,-2006,-932,-2125,-2127,-2375,-1077,-1942,-2019,-2410,-3136,-3037,-3040,-3052,-3986,-3988,-409,-1419,-3267, +-407,-428,-2622,-427], [1,3,10083], [0,0,10084,10085,4], -[0,-29,-22,-19,-159,-56,-382,-1,-8,-496,-1150,-79,-2959,-14,-57,-2], -[0,-4386,-549,-1406,-783,-1933,-3033,-2,-45,-1374,-129,-3079,-4502,-1706,-184,-31,-1727,-1726,-7611], +[0,-3136,-427,-428,-753,-756,-784,-932,-1415,-1417,-1424,-1449,-15302,-2127,-2375,-2410], +[0,-12841,-3582,-6989,-5389,-10095,-12523,-2410,-3214,-9682,-3095,-11486,-12121,-5065,-3577,-3264,-4333,-4334,-15303], [1,3,10087], [0,10088,0,10089,4], -[0,-304,-1769,-1474,-121,-90,-790,-4054], -[0,-6,-108,-953,-7610,-951], +[0,-703,-2825,-2690,-1967,-44,-2997,-192], +[0,-2006,-3159,-4217,-15304,-4665], [1,3,10091], [0,10092,0,10093,6], -[0,-1474,-121,-90], -[0,-6,-108,-953,-1445], +[0,-2690,-1967,-44], +[0,-2006,-3159,-4217,-4101], [1,3,10095], [0,10096,0,10097,8], -[0,-304,-439,-1769,-121,-90,-972], -[0,-6,-108,-953,-674], +[0,-703,-2029,-2825,-1967,-44,-3140], +[0,-2006,-3159,-4217,-5260], [1,3,10099], [0,10100,0,95,5], -[0,-7609,-7608,-326,-562], +[0,-15305,-15306,-823,-1878], [1,3,10102], [0,269,0,95,5], [1,3,10104], [0,10105,10106,10107,4], -[0,-193,-16,-349,-7604,-7603,-4469,-3265,-1153,-1453], -[0,-2000,-104,-30,-618,-229,-2,-1974,-343,-4824], -[0,-7602,-7601,-1620,-339,-52,-32,-45,-31,-369,-100,-335,-7600,-7599,-2116,-2049,-6117,-6116,-7598,-7597,-1900], +[0,-469,-2177,-1047,-15310,-15311,-12390,-8802,-1395,-3609], +[0,-6997,-2466,-2469,-757,-1026,-2410,-7982,-1772,-10267], +[0,-15312,-15313,-8902,-3184,-3161,-1168,-3214,-3264,-3482,-1599,-3967,-15314,-15315,-3995,-5372,-3255,-3256,-15316, +-15317,-15318], [1,3,10109], [0,0,10110,10111,5], -[0,-215,-1966,-1024], -[0,-6,-241,-1608,-215], +[0,-865,-8559,-866], +[0,-2006,-2634,-9736,-865], [1,3,10113], [0,10114,10115,10116,4], -[0,-1476,-130,-7596,-639,-705,-2137], -[0,-2167,-8,-262,-1,-646,-237,-17,-40,-499,-4,-26,-157,-210,-1150,-2,-11,-29,-5,-230,-92,-98,-2321,-343,-692,-517,-185, --945,-633,-7595,-170,-7594,-3017,-7593,-816,-392,-12,-25,-176,-2773,-391], -[0,-6,-45,-17,-4738,-1670,-7592,-1141,-3035,-3111,-1910,-1370], +[0,-2624,-2231,-15319,-2168,-1320,-3606], +[0,-2558,-1415,-1623,-932,-1699,-825,-2501,-1077,-1098,-1942,-767,-1978,-2400,-1424,-2410,-23,-3136,-3037,-769,-2503,-534, +-11747,-1772,-2041,-3046,-3048,-7080,-4049,-15320,-2505,-15321,-12916,-15322,-1421,-2335,-940,-967,-1419,-2506,-3204], +[0,-2006,-3214,-2501,-10675,-6211,-15323,-1540,-12516,-10589,-12517,-11492], [1,3,10118], [0,0,10119,10120,11], -[0,-4297,-1013,-7591], -[0,-7590,-380,-318,-635,-2,-862,-52,-107], +[0,-13324,-1123,-15324], +[0,-15325,-1122,-4058,-3694,-2410,-4258,-3161,-3862], [1,3,10122], [0,10123,10124,10125,5], -[0,-324,-1271,-104,-7589,-1348,-20,-118,-215,-23,-1123,-16,-504,-288,-807,-17,-119,-40,-200,-4,-58,-660,-661,-144,-2, --2190,-7588,-7587,-305,-1679,-289,-641,-154,-7586,-7585,-7584,-7583,-2103,-692,-7582,-7581,-7580,-1264,-7579,-7578,-2641, --7577,-7576,-7575,-7574,-346,-7573,-1781,-2773,-7572,-5731,-377,-520,-7571,-7570,-7569,-2967,-7568,-1853, --2161], -[0,-8,-6,-1953,-35,-29,-5,-142,-7567,-185,-7566,-7565,-2968], -[0,-7564,-1982,-7563,-5301,-7562,-4126,-2335,-99,-778,-52,-105,-106,-443,-7561,-1904,-905,-2328,-808,-410,-1074,-667, --7560,-2049,-45,-1199,-4479,-4478,-4480,-4481,-7559,-7558,-46,-3354,-4125,-1525,-4124,-6,-516], +[0,-1816,-3612,-2466,-15326,-623,-668,-999,-865,-1548,-1872,-2177,-680,-1753,-1821,-2501,-679,-1077,-1376,-1942,-719,-749, +-695,-778,-2410,-2061,-15327,-15328,-635,-5676,-726,-2115,-2275,-15329,-15330,-15331,-15332,-4236,-2041,-15333,-15334, +-15335,-3808,-15336,-15337,-4805,-15338,-15339,-15340,-15341,-1331,-15342,-2504,-2506,-15343,-5319,-1643,-2502,-15344, +-15345,-15346,-14827,-15347,-1067, +-2695], +[0,-1415,-2006,-9056,-2019,-3136,-3037,-3044,-15348,-3048,-15349,-15350,-14826], +[0,-15351,-7643,-15352,-7645,-15353,-15354,-11229,-3690,-6120,-3161,-1334,-4055,-1501,-15355,-13039,-1791,-11437,-1818, +-3691,-5728,-7107,-15356,-5372,-3214,-11878,-12303,-12304,-12301,-12299,-15357,-15358,-3445,-7696,-15359,-1520,-15360, +-2006,-3476], [1,3,10127], [0,10128,10129,10130,4], -[0,-11,-4158,-446,-403,-7557], -[0,-598], -[0,-5776,-256,-6,-1467,-99], +[0,-23,-14825,-656,-755,-15361], +[0,-2303], +[0,-5049,-3839,-2006,-3103,-3690], [1,3,10132], [0,10133,10134,10135,4], -[0,-479,-457], -[0,-7556], -[0,-31,-428,-292,-578,-4215,-505], +[0,-47,-3223], +[0,-15362], +[0,-3264,-9589,-525,-9588,-14188,-9590], [1,3,10137], [0,0,0,10138,4], -[0,-675,-453,-512,-111,-46,-383], +[0,-5141,-4601,-4602,-3578,-3445,-754], [1,3,10140], [0,10141,10142,168,5], -[0,-574,-1180,-7555], -[0,-9,-30,-2,-5,-2270,-320,-49,-5756,-103,-62], +[0,-809,-713,-15363], +[0,-1344,-2469,-2410,-3037,-411,-2581,-86,-5144,-3664,-3307], [0,23,0,97,5], [1,3,10145], [0,23,0,10146,9], -[0,-184,-53,-1470,-1701,-2077,-1700,-1431,-327,-1699,-1698,-1697,-2076,-2075,-1696,-1695,-2074,-2073,-2072,-6,-516,-2071, --2070,-2069,-2068,-74,-1238,-491,-2067,-249,-1237,-192,-2,-45,-485,-111,-585,-1694,-1693,-24,-31,-1236,-1692,-1235,-2066, --327,-2065,-2064,-2063,-2062,-2061,-2060,-2288,-7553], +[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, +-5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, +-5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15366], [1,3,10148], [0,23,0,98,9], [1,3,10150], @@ -13992,1191 +14195,1226 @@ true, [0,23,0,99,11], [1,3,10155], [0,10156,10157,10158,6], -[0,-1268,-4315,-7550,-7549,-3084,-168,-473,-2246,-1027,-619,-383,-3857,-424,-41,-7548,-7547,-920,-3007,-2572,-402,-7546, --3966,-2216,-1926,-813,-23,-344,-236,-907,-700,-567,-3932,-564,-5741,-3415,-1114,-461,-7545,-437,-7544,-205], -[0,-735,-4177,-1443,-359,-2698,-3700,-1739,-142,-4176,-1449,-5,-2426,-517,-454,-118,-614,-198,-125,-2,-30], -[0,-5732,-361,-2963,-7543,-7542,-1070,-5019,-7541,-2019,-46,-881,-41,-771], +[0,-3698,-13203,-15369,-15370,-11418,-617,-722,-733,-736,-744,-754,-2762,-930,-1004,-15371,-15372,-1010,-13106,-5989, +-1116,-15373,-1299,-1388,-11121,-1465,-1548,-1641,-1666,-1667,-1676,-1681,-1744,-1826,-5262,-7223,-2182,-2297,-15374, +-2451,-15375,-2531], +[0,-3732,-14740,-4198,-3330,-3733,-4623,-3850,-3044,-14742,-3851,-3037,-8852,-3046,-4204,-999,-1336,-1722,-2293,-2410, +-2469], +[0,-5300,-1959,-15176,-15376,-15377,-5940,-9139,-15378,-6335,-3445,-2512,-1004,-8841], [1,3,10160], [0,10161,0,271,9], -[0,-74,-884,-159,-89,-101,-17,-119,-442,-144,-644,-438,-1103,-882,-2588,-11,-230,-277,-160,-98,-4195,-7540,-519,-3003, --492,-1197,-3863,-170,-535,-1502,-7539,-7538,-1480,-2765,-377,-6240,-4123,-1564,-7537,-6238,-2199,-3862], +[0,-2476,-2362,-753,-928,-1442,-2501,-679,-1582,-778,-1888,-2437,-2481,-2483,-5628,-23,-769,-1041,-518,-534,-14408,-15379, +-2508,-13389,-1908,-15380,-2711,-2505,-748,-1929,-15381,-15382,-2485,-2718,-1643,-2712,-15383,-731,-15384,-2714,-1814, +-2716], [1,3,10163], [0,10164,0,10165,6], -[0,-440,-221,-5254,-1138,-998,-2765,-5667], -[0,-42,-114,-100,-74,-1770], +[0,-1955,-1600,-7898,-1603,-1601,-2718,-5614], +[0,-856,-3262,-1599,-2476,-2816], [1,3,10167], [0,10168,0,42,5], -[0,-3863,-754,-442], +[0,-2711,-1543,-1582], [1,3,10170], [0,10171,0,42,9], -[0,-1197,-2209], +[0,-15380,-1553], [1,3,10173], [0,10174,0,42,9], -[0,-1197,-230], +[0,-15380,-769], [1,3,10176], [0,10177,0,42,8], -[0,-1314,-1197], +[0,-1779,-15380], [1,3,10179], [0,10180,0,42,5], -[0,-1197,-2765], +[0,-15380,-2718], [1,3,10182], [0,10183,0,42,4], -[0,-1197], +[0,-15380], [1,3,10185], [0,10186,10187,42,5], -[0,-20,-501,-40,-206,-708,-2224,-16,-884,-1716], -[0,-7536], +[0,-668,-929,-1077,-1111,-1125,-1284,-2177,-2362,-4701], +[0,-15385], [1,3,10189], [0,10190,0,42,4], -[0,-23,-393,-5674,-1791,-1197,-3861,-4123,-6237,-7535,-6239], +[0,-1548,-2286,-5602,-2287,-15380,-2717,-15383,-2715,-15386,-2713], [1,3,10192], [0,10193,10194,58,4], -[0,-7534,-2287,-7533,-7532,-7531], -[0,-13,-3,-33,-17,-50,-11,-781,-109,-29,-5,-65,-92,-69,-480,-178,-21,-7530,-4122,-140], +[0,-15387,-15388,-15389,-15390,-15391], +[0,-664,-1654,-2379,-2501,-21,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40,-15392,-15393,-42], [1,3,10196], [0,10197,132,58,8], -[0,-2287,-2958,-7524], +[0,-15388,-15399,-15400], [1,3,10199], [0,10200,10201,58,9], -[0,-491,-1651,-832,-4121,-4120], -[0,-13,-3,-1,-159,-33,-17,-211,-50,-144,-2,-11,-781,-109,-29,-5,-701,-65,-92,-69,-47,-154,-7523,-4157,-480,-178,-21,-76, --64,-10,-67,-12,-84,-25,-131,-140], +[0,-1940,-6935,-747,-15401,-15402], +[0,-664,-1654,-932,-753,-2379,-2501,-2376,-21,-778,-2410,-23,-5870,-3035,-3136,-3037,-1637,-1771,-2503,-3621,-3040,-2275, +-15403,-14831,-39,-43,-40,-966,-969,-958,-968,-940,-943,-967,-974,-42], [1,3,10203], [0,10204,10205,58,11], -[0,-6235,-4121,-4120,-7522,-7521,-7520], -[0,-13,-1284,-3,-1,-3716,-159,-33,-17,-4,-50,-2,-11,-781,-109,-29,-5,-65,-92,-69,-480,-178,-21,-76,-64,-10,-67,-7519,-12, --84,-25,-131,-140], +[0,-2722,-15401,-15402,-15404,-15405,-15406], +[0,-664,-2494,-1654,-932,-4270,-753,-2379,-2501,-1942,-21,-2410,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40, +-966,-969,-958,-968,-15407,-940,-943,-967,-974,-42], [1,3,10207], [0,10208,132,58,11], -[0,-205,-2287,-2958], +[0,-2531,-15388,-15399], [1,3,10210], [0,10211,0,10212,6], -[0,-304,-7518], -[0,-7517,-7516,-95,-1671], +[0,-703,-15408], +[0,-15409,-15410,-3162,-6184], [1,3,10214], [0,0,0,173,4], [1,3,10216], [0,0,0,10217,5], -[0,-192,-52,-91,-1405,-61,-1682], +[0,-475,-3161,-4865,-7243,-3634,-5495], [1,3,10219], [0,117,10220,10221,4], -[0,-51,-20,-56,-15,-97,-134], -[0,-240,-2368,-37,-4119,-1646], +[0,-519,-668,-756,-1788,-2250,-2251], +[0,-5514,-9846,-687,-15411,-7210], [1,3,10223], [0,228,10224,10225,5], -[0,-1040,-725,-3699,-5,-1204,-1599,-168,-1919,-32,-2310,-3970,-199,-7515,-7514,-117,-198,-7,-983,-4118,-1115,-33,-196, --1596,-2,-2309,-3854], -[0,-75,-61,-840,-1367,-933], +[0,-9705,-5686,-4624,-3037,-8890,-11458,-617,-11477,-1168,-12346,-1260,-1412,-15412,-15413,-1452,-1722,-2125,-2150,-15414, +-2173,-2379,-2388,-12348,-2410,-12349,-2819], +[0,-4004,-3634,-11468,-12350,-11467], [1,3,10227], [0,0,10228,272,5], -[0,-182,-94,-5560,-268,-2561,-1187,-1,-191,-2571,-12,-500,-10,-420,-9,-8,-18,-4,-7,-112], +[0,-526,-528,-6104,-558,-6089,-562,-932,-934,-6013,-940,-956,-958,-1059,-1344,-1415,-1534,-1942,-2125,-2416], [1,3,10230], [0,10231,10232,10233,8], -[0,-3414,-4108,-3335,-58,-223,-3333,-1546,-250,-2549,-3331,-344,-7513,-7,-5245,-156,-5243,-1286,-5242], -[0,-48,-109,-732,-7512,-7511,-257,-7510,-1089,-5,-7509,-736,-7508,-22,-19,-7507,-13,-244,-660,-1,-12,-265,-76,-25,-118, --1330,-402,-5693,-3,-644,-4,-3329,-1296,-16,-27,-186,-5244,-33,-2], -[0,-1667,-91,-666,-862,-53,-3228], +[0,-7226,-15425,-7944,-719,-729,-7949,-1048,-1276,-6343,-7959,-1641,-15426,-2125,-7968,-2359,-7971,-2425,-7972], +[0,-190,-3035,-4269,-15427,-15428,-3617,-15429,-3713,-3037,-15430,-3628,-15431,-427,-428,-15432,-664,-665,-749,-932,-940, +-964,-966,-967,-999,-1054,-1116,-5487,-1654,-1888,-1942,-7981,-2148,-2177,-2210,-2211,-7970,-2379,-2410], +[0,-6342,-4865,-7641,-4258,-3100,-9290], [1,3,10235], [0,10236,10237,273,4], -[0,-4108,-2549,-5247,-5246,-7,-1296,-2592], -[0,-13,-244,-3,-7506], +[0,-15425,-6343,-7964,-7966,-2125,-2148,-5509], +[0,-664,-665,-1654,-15433], [1,3,10239], [0,10240,10241,273,4], -[0,-3414,-250,-2711,-344], -[0,-13,-3330,-41,-117,-3,-2547,-1798,-1296], +[0,-7226,-1276,-3607,-1641], +[0,-664,-7979,-1004,-1452,-1654,-6347,-2106,-2148], [1,3,10243], [0,10244,10245,10246,4], -[0,-759], -[0,-613,-117,-3,-82], -[0,-544,-91,-1775,-1939,-61], +[0,-1343], +[0,-1445,-1452,-1654,-2198], +[0,-4864,-4865,-2734,-9711,-3634], [1,3,10248], [0,0,10249,10250,4], -[0,-182,-169,-7505,-268,-13,-3], -[0,-446,-2013,-24,-255], +[0,-526,-527,-15434,-558,-664,-1654], +[0,-656,-6514,-775,-5092], [1,3,10252], [0,0,133,10253,4], -[0,-31,-1051,-457,-1055,-1243,-849,-2957], +[0,-3264,-8034,-3223,-7472,-4846,-6557,-15435], [1,3,10255], [0,0,133,10256,5], -[0,-31,-7504,-1051,-457,-1055,-1243,-849,-2957], +[0,-3264,-15436,-8034,-3223,-7472,-4846,-6557,-15435], [1,3,10258], [0,0,133,10259,4], -[0,-31,-1051,-457,-1055,-1243,-849], +[0,-3264,-8034,-3223,-7472,-4846,-6557], [1,3,10261], [0,0,10262,10263,4], -[0,-664,-2982,-43,-315,-1842,-760,-4,-2187,-147,-260,-7,-39,-233,-2,-133,-34], -[0,-31,-1051,-4694,-1055,-1243,-2957,-7503,-849], +[0,-8096,-14182,-652,-725,-1288,-1292,-1942,-2087,-2094,-2100,-2125,-2322,-2399,-2410,-2427,-2541], +[0,-3264,-8034,-10902,-7472,-4846,-15435,-15437,-6557], [1,3,10265], [0,0,0,41,9], [1,3,10267], [0,10268,251,10269,4], -[0,-7502], -[0,-224,-671,-726,-24], +[0,-15438], +[0,-712,-5535,-5549,-775], [1,3,10271], [0,0,92,10272,5], -[0,-255,-31,-4517,-4300,-2493,-165,-429], +[0,-5092,-3264,-12064,-13319,-7205,-1838,-6231], [1,3,10274], [0,10275,88,10276,4], -[0,-2884,-7501,-1967], -[0,-390,-42,-547,-114,-100,-740,-4107], +[0,-1016,-15439,-8493], +[0,-3671,-856,-3960,-3262,-1599,-3261,-15440], [1,3,10278], [0,0,10279,10280,5], -[0,-3,-13,-66], -[0,-24,-4503,-676,-7500,-95,-165,-511], +[0,-1654,-664,-1405], +[0,-775,-12120,-5101,-15441,-3162,-1838,-5572], [1,3,10282], [0,0,10283,10284,6], -[0,-56,-66], -[0,-163,-455,-5385,-24,-3132,-549], +[0,-756,-1405], +[0,-2265,-4112,-7188,-775,-10310,-3582], [1,3,10286], [0,10287,10288,10289,4], -[0,-1176], -[0,-43,-89,-1,-3,-14,-799], -[0,-24,-541,-776,-227,-721,-1647,-7499], +[0,-781], +[0,-652,-928,-932,-1654,-2127,-2232], +[0,-775,-6454,-6684,-1644,-7192,-7193,-15442], [1,3,10291], [0,10292,10293,10294,4], -[0,-2928], -[0,-1,-12,-25,-4,-85], -[0,-854,-73,-723,-37,-308,-587,-1060,-7498], +[0,-508], +[0,-932,-940,-967,-1942,-2319], +[0,-5829,-3215,-6747,-687,-3957,-4377,-6836,-15443], [1,3,10296], [0,10297,0,10298,8], -[0,-2267,-2266,-2286,-2265,-473,-380,-1013,-1002,-1211], -[0,-1361,-46,-571,-7497], +[0,-492,-493,-15444,-495,-722,-1122,-1123,-1439,-7679], +[0,-15445,-3445,-1105,-15446], [1,3,10300], [0,10301,0,10302,4], -[0,-1002,-697,-1211], -[0,-1361,-46,-1421,-2418], +[0,-1439,-1848,-7679], +[0,-15445,-3445,-5800,-8904], [1,3,10304], [0,10305,0,10306,4], -[0,-473,-1002,-93,-697,-1211,-4106], -[0,-1361,-46,-1981], +[0,-722,-1439,-1645,-1848,-7679,-15447], +[0,-15445,-3445,-7660], [1,3,10308], [0,10309,0,10310,4], -[0,-4105,-758,-2863,-93], -[0,-1361,-46,-4104,-4103], +[0,-15448,-1371,-1469,-1645], +[0,-15445,-3445,-15449,-15450], [1,3,10312], [0,10313,0,10314,5], -[0,-2267,-2266,-2286,-2265,-473,-380,-1013,-1002,-697,-1211], -[0,-1361,-46,-571], +[0,-492,-493,-15444,-495,-722,-1122,-1123,-1439,-1848,-7679], +[0,-15445,-3445,-1105], [1,3,10316], [0,10317,0,10318,4], -[0,-2267,-2266,-2286,-2265,-1002,-697,-1211], -[0,-1361,-46,-1397], +[0,-492,-493,-15444,-495,-1439,-1848,-7679], +[0,-15445,-3445,-7661], [1,3,10320], [0,0,0,274,4], [1,3,10322], [0,10323,0,274,10], -[0,-697], +[0,-1848], [1,3,10325], [0,0,10326,10327,9], -[0,-29,-5,-56,-28,-8,-101,-7496,-57,-196,-1289,-1596,-2], -[0,-2981,-723,-73,-2289,-95,-1899,-1605,-1200,-1507,-3362,-91,-7495], +[0,-3136,-3037,-756,-1107,-1415,-1442,-15451,-2375,-2388,-2389,-12348,-2410], +[0,-14233,-6747,-3215,-14867,-3162,-15423,-9918,-11321,-1819,-7572,-4865,-15452], [1,3,10329], [0,10330,10331,10332,6], -[0,-228,-440,-7494,-7493,-7492,-2111,-2141], -[0,-8,-201,-9,-1525,-1,-72,-7,-14,-393,-382,-119,-4385,-4,-1708,-26,-86,-11,-473,-18,-6404,-65,-1031,-1225,-357,-21,-145, --7491,-7490,-984,-161,-10,-803,-893,-12,-25,-463,-7489,-404,-341], -[0,-678,-390,-42,-4102,-114], +[0,-1610,-1955,-15453,-15454,-15455,-4096,-3546], +[0,-1415,-523,-1344,-1520,-932,-1650,-2125,-2127,-2286,-784,-679,-12844,-1942,-5002,-767,-533,-23,-722,-1534,-1539,-1771, +-632,-5977,-3983,-40,-959,-15456,-15457,-2129,-32,-958,-2143,-2138,-940,-967,-2131,-15458,-740,-2137], +[0,-4100,-3671,-856,-15459,-3262], [1,3,10334], [0,10335,10336,10337,10], -[0,-149,-20,-96,-223,-7488,-2762,-573,-40,-499,-442,-7487,-1141,-396,-596,-1947,-7486,-1564], -[0,-51,-383,-118,-9,-1,-7,-14,-18,-7485,-134,-2452,-7484], -[0,-2762,-678,-390,-42,-4102,-114,-37], +[0,-1805,-668,-2550,-729,-15460,-2757,-910,-1077,-1098,-1582,-15461,-1540,-2187,-2433,-9229,-15462,-731], +[0,-519,-754,-999,-1344,-932,-2125,-2127,-1534,-15463,-2251,-8177,-15464], +[0,-2757,-4100,-3671,-856,-15459,-3262,-687], [1,3,10339], [0,10340,0,10341,5], -[0,-7483], -[0,-255,-6228,-249,-95,-4260], +[0,-15465], +[0,-5092,-2759,-1437,-3162,-13614], [1,3,10343], [0,10344,10345,10346,4], -[0,-4197,-23,-439], -[0,-50,-11,-21,-136,-86,-152,-445,-1022,-1,-12,-84,-7482,-10,-76,-67,-64,-131,-8,-4,-7481,-121,-694,-6,-35,-286], -[0,-445,-8,-2113,-1955,-695,-238,-452,-61,-388,-75], +[0,-14393,-1548,-2029], +[0,-21,-23,-40,-41,-533,-708,-915,-916,-932,-940,-943,-15466,-958,-966,-968,-969,-974,-1415,-1942,-15467,-1967,-1992, +-2006,-2019,-2052], +[0,-915,-1415,-4045,-8911,-1950,-674,-5845,-3634,-5119,-4004], [1,3,10348], [0,10349,0,10350,5], -[0,-2268,-7480,-116,-7479,-44,-551], -[0,-1426,-60,-7478,-7477,-7476,-7475,-3267,-7474,-7473,-943,-126,-281,-2850,-2319,-95,-7472,-7471,-165,-172,-3183,-7470, --855], +[0,-464,-15468,-615,-15469,-2387,-2536], +[0,-5409,-510,-15470,-15471,-15472,-15473,-8676,-15474,-15475,-7347,-6656,-6527,-1594,-11872,-3162,-15476,-15477,-1838, +-1961,-9591,-15478,-5408], [1,3,10352], [0,0,14,10353,9], -[0,-482,-3178,-31,-1051,-457,-7469,-941,-1623,-202,-271,-1610,-853,-7468,-1282,-7467,-7466], +[0,-5559,-9692,-3264,-8034,-3223,-15479,-7723,-8472,-3590,-3110,-9681,-5846,-15480,-2544,-15481,-15482], [1,3,10355], [0,10356,10357,10358,5], -[0,-238,-7465,-501,-926,-2263,-2258,-40,-7464,-228,-88,-4191], -[0,-182,-355,-1350,-447,-152,-7463,-1,-3,-15], -[0,-166,-99,-1602,-42,-846,-7462,-2505,-7461,-3439,-7460,-3438,-7459,-3065,-7458,-2504,-7457,-7456], +[0,-674,-15483,-929,-572,-529,-569,-1077,-15484,-1610,-1646,-14584], +[0,-526,-539,-549,-566,-708,-15485,-932,-1654,-1788], +[0,-1446,-3690,-10855,-856,-6948,-15486,-6950,-15487,-6949,-15488,-6951,-15489,-11798,-15490,-6952,-15491,-15492], [1,3,10360], [0,0,55,10361,4], -[0,-1,-334,-368,-107,-4956,-1922,-1388,-678,-42], +[0,-932,-5208,-3784,-3862,-9420,-11315,-8199,-4100,-856], [1,3,10363], [0,0,10364,10365,4], -[0,-402,-134,-39], -[0,-42,-4701,-7455,-4686,-7454,-4119,-141], +[0,-1116,-2251,-2322], +[0,-856,-10858,-15493,-10925,-15494,-15411,-3966], [1,3,10367], [0,87,275,10368,4], -[0,-505,-428,-578,-132,-202,-31,-651,-1374], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-1391,-9682], [1,3,10370], [0,87,275,10371,6], -[0,-505,-428,-578,-132,-202,-31,-24,-1456,-165], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-775,-3585,-1838], [1,3,10373], [0,10374,10375,10376,4], -[0,-246,-1473,-936,-1500,-1111,-4919,-1941], -[0,-3774,-5,-43,-1147,-607,-4,-147,-260,-233,-2,-34], -[0,-505,-428,-578,-132,-202,-31,-607,-360,-934], +[0,-5334,-2742,-9596,-1968,-2235,-9584,-9585], +[0,-3705,-3037,-652,-1459,-1839,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-1839,-3272,-10919], [1,3,10378], [0,87,92,10379,5], -[0,-505,-428,-578,-132,-202,-31,-5988,-1374,-7453,-7452,-7451], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-3830,-9682,-15495,-15496,-15497], [1,3,10381], [0,10382,10383,10384,8], -[0,-3868], -[0,-381,-701,-4,-556,-39], -[0,-360,-31,-165,-429], +[0,-2595], +[0,-985,-1637,-1942,-2320,-2322], +[0,-3272,-3264,-1838,-6231], [1,3,10386], [0,0,10387,10388,5], -[0,-5,-43,-1281,-1842,-760,-188,-4,-147,-260,-233,-2,-34], -[0,-31,-3173,-1218,-849,-1374,-7450,-632,-1077], +[0,-3037,-652,-2586,-1288,-1292,-1729,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-3264,-9703,-6818,-6557,-9682,-15498,-5387,-5388], [1,3,10390], [0,10391,0,10392,5], -[0,-36], -[0,-105,-401,-443,-41,-1164,-3020,-1912,-7449,-7448,-7447,-7446,-3020,-4529,-7445,-46], +[0,-812], +[0,-1334,-1342,-1501,-1004,-1030,-12868,-11998,-15499,-15500,-15501,-15502,-12868,-11994,-15503,-3445], [1,3,10394], [0,0,130,10395,4], -[0,-24,-370,-7444,-38], +[0,-775,-3209,-15504,-1889], [1,3,10397], [0,276,10398,277,4], -[0,-3160,-2760], +[0,-9848,-2776], [1,3,10400], [0,276,10401,277,6], -[0,-6221,-7443,-3160,-2760], +[0,-2774,-15505,-9848,-2776], [1,3,10403], [0,0,0,10404,4], -[0,-292,-6,-2218,-52,-2646,-3159,-31,-4878,-209,-255,-91,-14,-7442,-7441,-1428], +[0,-525,-2006,-1368,-3161,-4729,-9850,-3264,-9851,-3844,-5092,-4865,-2127,-15506,-15507,-5272], [1,3,10406], [0,0,10407,10408,4], -[0,-151,-32,-382,-38,-314,-7440,-1538,-6434,-7439], -[0,-24,-636,-184,-52,-111,-7438], +[0,-824,-1168,-784,-1889,-1243,-15508,-1238,-1270,-15509], +[0,-775,-3576,-3577,-3161,-3578,-15510], [1,3,10410], [0,10411,10412,10413,4], -[0,-236,-1794], -[0,-60,-54,-532,-6454,-347,-821,-166,-23,-113], -[0,-476,-7437,-7436,-42,-166,-2475,-1445], +[0,-1666,-2161], +[0,-510,-1127,-1138,-1145,-1148,-1162,-1446,-1548,-2105], +[0,-620,-15511,-15512,-856,-1446,-7674,-4101], [1,3,10415], [0,0,10416,10417,6], -[0,-1040,-5,-1599,-199,-117,-1115,-196,-1596,-2,-2309], -[0,-75,-61,-840,-1367,-933,-199], +[0,-9705,-3037,-11458,-1412,-1452,-2173,-2388,-12348,-2410,-12349], +[0,-4004,-3634,-11468,-12350,-11467,-1412], [1,3,10419], [0,10420,10421,10422,5], -[0,-3147,-4229,-6012,-912,-695,-57], -[0,-7435,-6575,-4059,-6574,-2283,-2282,-2281,-2942,-6573,-4058,-6572,-11,-21,-49,-937,-283,-48,-3147,-1732,-715,-185,-29, --5,-137,-22,-19,-7434,-86,-20,-3117,-404,-26,-2641,-1,-12,-10,-145,-181,-25,-118,-40,-7433,-28,-55,-9,-8,-176,-79,-1306, --4,-7,-489,-16,-44,-153,-210,-2,-83,-2771], -[0,-8,-2,-192,-61], +[0,-10041,-13980,-3740,-1427,-1950,-2375], +[0,-15513,-4,-5,-6,-7,-8,-9,-10,-12,-13,-14,-23,-40,-86,-9404,-3244,-190,-10041,-4020,-237,-3048,-3136,-3037,-3199,-427, +-428,-15514,-533,-668,-10525,-740,-767,-4805,-932,-940,-958,-959,-960,-967,-999,-1077,-15515,-1107,-1110,-1344,-1415, +-1419,-1449,-1868,-1942,-2125,-2153,-2177,-2387,-2392,-2400,-2410,-2411,-2567], +[0,-1415,-2410,-475,-3634], [1,3,10424], [0,10425,10426,10427,5], -[0,-2160,-446,-20,-119,-58,-223,-5455,-149,-561,-902,-748,-285,-2301,-596,-205], -[0,-11,-2278,-1088,-1894,-715,-80,-63,-7432,-252,-1057,-330,-155,-122,-317,-3658,-29,-3295,-5,-47,-87,-3152,-5839,-454, --22,-19,-537,-7431,-5843,-160,-26,-1,-12,-84,-10,-115,-67,-64,-8,-1149,-222,-288,-65,-38,-2977,-7430,-4,-6,-35,-439,-7, --14,-870,-415,-1223,-77,-888,-557,-2,-104,-4101], -[0,-61,-8,-53,-2477,-36,-7429], +[0,-2699,-656,-668,-679,-719,-729,-6798,-1805,-1906,-1907,-2213,-2218,-12979,-2433,-2531], +[0,-23,-162,-3778,-163,-237,-350,-351,-15516,-367,-7043,-406,-407,-409,-410,-5039,-3136,-8334,-3037,-3040,-3052,-9947, +-4764,-4204,-427,-428,-440,-15517,-4734,-518,-767,-932,-940,-943,-958,-965,-968,-969,-1415,-1428,-1521,-1753,-1771,-1889, +-14336,-15518,-1942,-2006,-2019,-2029,-2125,-2127,-4063,-2132,-6483,-2162,-2278,-2318,-2410,-2466,-15519], +[0,-3634,-1415,-3100,-7566,-812,-15520], [1,3,10429], [0,10430,10431,10432,8], -[0,-1835,-7428], -[0,-7427,-7426,-707,-250,-3,-740], -[0,-5008,-3480,-36,-390,-42,-1059,-547,-114,-250,-2105,-5122,-1717,-7425,-7424,-23,-367,-100,-271,-740,-4107], +[0,-1403,-15521], +[0,-15522,-15523,-1202,-1276,-1654,-3261], +[0,-9198,-6515,-812,-3671,-856,-6899,-3960,-3262,-1276,-4187,-8453,-4676,-15524,-15525,-1548,-5545,-1599,-3110,-3261, +-15440], [1,3,10434], [0,10435,10436,10437,10], -[0,-7423], -[0,-1823,-188,-1488], -[0,-1823,-7422,-2389,-209,-46], +[0,-15526], +[0,-1586,-1729,-2337], +[0,-1586,-15527,-9409,-3844,-3445], [1,3,10439], [0,10440,10441,10442,8], -[0,-1928], -[0,-5,-43,-1519,-4,-147,-260,-233,-2,-34], -[0,-1519,-7421,-7420,-1218,-719,-7419,-31,-2101,-100,-133], +[0,-10869], +[0,-3037,-652,-1638,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-1638,-15528,-15529,-6818,-7724,-15530,-3264,-4329,-1599,-2427], [1,3,10444], [0,0,0,10445,4], -[0,-1519,-132,-202,-31,-777], +[0,-1638,-2444,-3590,-3264,-6422], [1,3,10447], [0,0,0,10448,10], -[0,-1519,-132,-202,-31,-1218,-849], +[0,-1638,-2444,-3590,-3264,-6818,-6557], [1,3,10450], [0,0,10451,10452,4], -[0,-5442,-54,-117,-236,-978,-112,-3135,-3982,-7418,-302,-656,-177,-347], -[0,-2774,-95,-1605,-1899,-668,-2289,-91,-663,-7417,-7416], +[0,-6874,-1127,-1452,-1666,-2525,-2416,-10264,-1154,-15531,-1149,-1136,-1144,-1148], +[0,-2442,-3162,-9918,-15423,-6659,-14867,-4865,-9318,-15532,-15533], [1,3,10454], [0,10455,10456,10457,4], -[0,-3421], -[0,-8,-1,-57,-4,-2,-29,-5,-5388,-12,-19,-22], -[0,-7415,-7414,-24], +[0,-7177], +[0,-1415,-932,-2375,-1942,-2410,-3136,-3037,-7178,-940,-428,-427], +[0,-15534,-15535,-775], [1,3,10459], [0,10460,92,10461,6], -[0,-677,-3858,-6229,-3095,-7413,-7412,-7411], -[0,-165,-31,-1055,-1243,-1051,-457], +[0,-4231,-2738,-2739,-10909,-15536,-15537,-15538], +[0,-1838,-3264,-7472,-4846,-8034,-3223], [1,3,10463], [0,0,0,10464,4], -[0,-38,-1945,-270,-1378,-6,-24,-7410], +[0,-1889,-9300,-3756,-9339,-2006,-775,-15539], [1,3,10466], [0,10467,130,10468,5], -[0,-1471], -[0,-24,-370,-38], +[0,-2773], +[0,-775,-3209,-1889], [1,3,10470], [0,0,10471,10472,9], -[0,-11,-21,-7409,-3693,-7408,-1,-199,-78,-139,-612,-212,-400,-755,-702,-2316,-2193,-157,-14,-273,-2139,-1298,-226,-4820, --1242], -[0,-4958,-157,-398,-544,-7407,-7406,-1713,-61,-840,-2193,-933,-1242,-4136], +[0,-23,-40,-15540,-4690,-15541,-932,-1412,-1471,-1475,-1476,-1479,-1481,-1486,-1491,-11943,-1970,-1978,-2127,-2128,-3571, +-2139,-2140,-10312,-4881], +[0,-9407,-1978,-1874,-4864,-15542,-15543,-4902,-3634,-11468,-1970,-11467,-4881,-15221], [1,3,10474], [0,10475,10476,10477,9], -[0,-291,-3969,-121], -[0,-59,-2905,-20,-151,-32,-3979,-3976,-314,-7405,-653,-363,-1132,-7404,-6,-35,-883], -[0,-6,-108,-85,-7403,-414,-7402,-3969,-95], +[0,-567,-1275,-1967], +[0,-633,-634,-668,-824,-1168,-1179,-1205,-1243,-15544,-1262,-1266,-1632,-15545,-2006,-2019,-2463], +[0,-2006,-3159,-2319,-15546,-2363,-15547,-1275,-3162], [1,3,10479], [0,10480,10481,10482,8], -[0,-7401,-2273,-7400,-2935,-3704,-5513,-193,-837,-20,-504,-1178,-36,-708,-469,-101,-3637,-344,-1812,-6370,-324,-397,-16, --600,-747,-2136,-734,-1974,-7399,-284,-3574], -[0,-320,-49,-62,-2658,-7398,-3073,-7397,-80,-231,-63,-232,-162,-411,-1089,-788,-137,-7396,-7395,-103,-2298,-9,-811,-198, --1723,-2058,-4,-14,-1223,-153,-210,-2,-30], -[0,-99,-1579,-3072,-42,-1601,-3067,-1812,-681,-3068,-3071,-3069,-3070,-2330,-1728,-545], +[0,-15548,-303,-15549,-304,-4360,-6448,-469,-470,-668,-680,-728,-812,-1125,-1353,-1442,-5265,-1641,-1789,-1790,-1816, +-1966,-2177,-2205,-2223,-3610,-4002,-7982,-15550,-2426,-5721], +[0,-2581,-86,-3307,-4368,-15551,-11765,-15552,-350,-4062,-351,-3561,-3198,-3660,-3713,-3735,-3199,-15553,-15554,-3664, +-13376,-1344,-1498,-1722,-4362,-5263,-1942,-2127,-6483,-2392,-2400,-2410,-2469], +[0,-3690,-489,-11768,-856,-11148,-11773,-1789,-3438,-11772,-11769,-11771,-11770,-11410,-4328,-4847], [1,3,10484], [0,0,10485,10486,11], -[0,-673,-122,-29,-47,-87,-4268,-22,-19,-618,-237,-1,-12,-25,-64,-190,-348,-7394,-8,-7393,-701,-2959,-7392,-4,-6,-35,-4267, --321,-57,-2,-7391], -[0,-6,-4459,-108,-3274,-2299,-2285,-224,-184,-7390,-2960,-2817,-1248,-3056,-951,-7389], +[0,-5295,-409,-3136,-3040,-3052,-13529,-427,-428,-757,-825,-932,-940,-967,-969,-970,-1103,-15555,-1415,-15556,-1637, +-15302,-15557,-1942,-2006,-2019,-13531,-2214,-2375,-2410,-15558], +[0,-2006,-12474,-3159,-8597,-13241,-15559,-712,-3577,-15560,-15273,-2012,-4666,-11876,-4665,-15561], [1,3,10488], [0,10489,10490,10491,4], -[0,-1101], -[0,-21,-136,-47,-445,-1022,-8,-694,-286,-14,-273,-463,-341], -[0,-2774,-95,-1605,-1899,-668,-2289,-91,-7388,-7387,-663,-1673,-194], +[0,-2594], +[0,-40,-41,-3040,-915,-916,-1415,-1992,-2052,-2127,-2128,-2131,-2137], +[0,-2442,-3162,-9918,-15423,-6659,-14867,-4865,-15562,-15563,-9318,-6106,-4000], [1,3,10493], [0,0,10494,10495,4], -[0,-49,-5,-47,-87,-3836,-22,-4904,-1,-12,-3240,-10,-115,-25,-67,-64,-9,-8,-18,-701,-4,-441,-6,-35,-559,-3907], -[0,-6,-1937,-434,-897,-559,-7386,-241], +[0,-86,-3037,-3040,-3052,-3075,-427,-9700,-932,-940,-9106,-958,-965,-967,-968,-969,-1344,-1415,-1534,-1637,-1942,-1952, +-2006,-2019,-2044,-2046], +[0,-2006,-9843,-3122,-2043,-2044,-15564,-2634], [1,3,10497], [0,0,10498,10499,4], -[0,-15,-79,-78,-3,-6,-322,-27,-293,-1,-23,-491,-175,-862,-152,-159,-287,-17,-110,-35,-7385,-2,-11,-5,-189,-898,-47,-98, --3080,-526,-366,-1017,-87,-21,-3837,-64,-286,-7384,-330,-418,-139,-909,-212,-4169,-19,-2625], -[0,-508,-1664,-6,-1402,-7383,-830], +[0,-1788,-1449,-1471,-1654,-2006,-2074,-2210,-507,-932,-1548,-1940,-2334,-4258,-708,-753,-1958,-2501,-589,-2019,-15565, +-2410,-23,-3037,-1482,-2040,-3040,-534,-11472,-1492,-50,-1025,-3052,-40,-3062,-969,-2052,-15566,-406,-1483,-1475,-1487, +-1479,-14780,-428,-5030], +[0,-5922,-6439,-2006,-7378,-15567,-821], [1,3,10501], [0,0,0,10502,4], -[0,-234,-95,-282,-333,-722,-126,-2979,-2963,-7382,-1064,-678], +[0,-2034,-3162,-5270,-5271,-7084,-6656,-14311,-15176,-15568,-6528,-4100], [1,3,10504], [0,0,10505,10506,4], -[0,-90,-47,-2151,-6,-234,-2], -[0,-234,-108,-932,-6,-95,-282,-333,-102,-1901,-1365,-7381,-281,-7380], +[0,-44,-3040,-3141,-2006,-2034,-2410], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-15071,-13615,-15569,-6527,-15570], [1,3,10508], [0,94,10509,10510,5], -[0,-94,-1,-266,-12,-10,-148,-25,-64,-4,-2956], -[0,-234,-108,-932,-6,-95,-282,-102,-361,-7379,-7378,-7377,-3107,-7376,-7375,-2011,-485], +[0,-528,-932,-933,-940,-958,-962,-967,-969,-1942,-15571], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-3160,-1959,-15572,-15573,-15574,-10677,-15575,-15576,-6716,-5176], [1,3,10512], [0,10513,10514,10515,4], -[0,-2240,-7374,-2239,-2894,-121], -[0,-7373,-1440,-3513,-1081,-7372,-94,-86,-4168,-1174,-1,-84,-10,-76,-67,-64,-7371,-131,-9,-8,-18,-4,-441,-6,-234,-2956, --286], -[0,-234,-108,-932,-6,-95,-282,-333,-1203,-3472,-2974,-1175], +[0,-798,-15577,-799,-801,-1967], +[0,-15578,-4757,-6263,-4754,-15579,-528,-533,-14782,-807,-932,-943,-958,-966,-968,-969,-15580,-974,-1344,-1415,-1534, +-1942,-1952,-2006,-2034,-15571,-2052], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-9472,-6581,-14497,-797], [1,3,10517], [0,10518,10519,10520,6], -[0,-422], -[0,-6130,-1,-1908], -[0,-234,-108,-932,-6,-2741,-95,-282,-333,-102,-4843,-7370,-7369], +[0,-997], +[0,-3157,-932,-12566], +[0,-2034,-3159,-12567,-2006,-3163,-3162,-5270,-5271,-3160,-10028,-15581,-15582], [1,3,10522], [0,10523,10524,10525,8], -[0,-2757,-595], -[0,-4100,-50,-11,-391,-480,-21,-1068,-136,-4055,-1894,-790,-80,-63,-232,-122,-1477,-47,-94,-86,-26,-1,-12,-500,-145,-67, --64,-190,-420,-1598,-348,-7368,-8,-2959,-4,-441,-6,-35,-7367,-286,-7,-14,-273,-226,-2], -[0,-6,-2756,-4523,-129,-1637,-2130,-2683], +[0,-2798,-2489], +[0,-15583,-21,-23,-3204,-39,-40,-6056,-41,-161,-163,-2997,-350,-351,-3561,-409,-2622,-3040,-528,-533,-767,-932,-940,-956, +-959,-968,-969,-970,-1059,-11942,-1103,-15584,-1415,-15302,-1942,-1952,-2006,-2019,-15585,-2052,-2125,-2127,-2128,-2140, +-2410], +[0,-2006,-2804,-12051,-3095,-7582,-3821,-3822], [1,3,10527], [0,10528,10529,10530,8], -[0,-7366,-6232,-267], -[0,-2955,-673,-330,-155,-122,-7365,-2155,-5,-47,-87,-537,-960,-502,-79,-459,-6,-35,-321,-371,-44,-2,-30], -[0,-6,-636,-1444,-95,-3047], +[0,-15586,-2730,-682], +[0,-15587,-5295,-406,-407,-409,-15588,-3059,-3037,-3040,-3052,-440,-3899,-795,-1449,-2910,-2006,-2019,-2214,-2892,-2387, +-2410,-2469], +[0,-2006,-3576,-4126,-3162,-12129], [1,3,10532], [0,10533,10534,10535,10], -[0,-44,-7364], -[0,-2954,-673,-321,-6,-35], -[0,-6,-225,-24], +[0,-2387,-15589], +[0,-15590,-5295,-2214,-2006,-2019], +[0,-2006,-5553,-775], [1,3,10537], [0,0,10538,10539,4], -[0,-927,-3,-235], -[0,-24,-224,-2285,-183], +[0,-509,-1654,-1939], +[0,-775,-712,-15559,-5554], [1,3,10541], [0,10542,0,77,5], -[0,-6190,-2269,-7363,-7362,-7361,-7360,-7359,-7358,-7357,-7356,-7355,-7354,-7353], +[0,-2869,-424,-15591,-15592,-15593,-15594,-15595,-15596,-15597,-15598,-15599,-15600,-15601], [1,3,10544], [0,0,10545,272,5], -[0,-11,-21,-140,-49,-62,-203,-4138,-232,-204,-29,-5,-22,-19,-1892,-1639,-94,-86,-1387,-289,-26,-1,-84,-10,-76,-67,-825, --348,-9,-569,-8,-176,-18,-7,-14,-301,-2,-979], +[0,-23,-40,-42,-86,-3307,-3326,-15155,-3561,-3266,-3136,-3037,-427,-428,-441,-7465,-528,-533,-8349,-726,-767,-932,-943, +-958,-966,-968,-980,-1103,-1344,-1392,-1415,-1419,-1534,-2125,-2127,-2142,-2410,-2478], [1,3,10547], [0,0,10548,259,8], -[0,-2689,-1878,-535,-144,-277,-1092,-377,-4,-2807,-77,-462,-211,-2,-438,-17,-92,-519], +[0,-3800,-684,-748,-778,-1041,-3544,-1643,-1942,-2116,-2162,-2163,-2376,-2410,-2437,-2501,-2503,-2508], [1,3,10550], [0,33,10551,10552,4], -[0,-673,-321,-155,-122,-2954,-176], -[0,-6,-3243,-7352,-7351,-7350], +[0,-5295,-2214,-407,-409,-15590,-1419], +[0,-2006,-9080,-15602,-15603,-15604], [1,3,10554], [0,10555,10556,10557,6], -[0,-7349,-44], -[0,-673,-321,-2954,-7348,-1022,-6,-35], -[0,-7347,-6,-7346], +[0,-15605,-2387], +[0,-5295,-2214,-15590,-15606,-916,-2006,-2019], +[0,-15607,-2006,-15608], [1,3,10559], [0,10560,10561,10562,5], -[0,-159,-90,-7345,-7344], -[0,-222,-220,-17,-144,-2,-11,-1143,-92,-98,-154,-7343,-519,-21,-2784,-170,-140,-173,-278,-2147,-216,-306,-1038], -[0,-194,-36,-95], +[0,-753,-44,-15609,-15610], +[0,-1521,-2299,-2501,-778,-2410,-23,-1522,-2503,-534,-2275,-15611,-2508,-40,-2301,-2505,-42,-38,-535,-3362,-26,-36,-35], +[0,-4000,-812,-3162], [1,3,10564], [0,0,10565,10566,10], -[0,-5,-2656,-1104,-104], -[0,-104,-52,-939], +[0,-3037,-4371,-2447,-2466], +[0,-2466,-3161,-8113], [1,3,10568], [0,0,10569,10570,5], -[0,-169,-98,-328,-26,-144,-277,-1315,-2767,-462,-7342,-154,-74,-1103,-882,-2173,-1480,-17,-170], -[0,-1369,-3058,-7341,-7340,-7339,-7338,-7337,-53,-7336], +[0,-527,-534,-559,-767,-778,-1041,-1743,-2680,-2163,-15612,-2275,-2476,-2481,-2483,-2484,-2485,-2501,-2505], +[0,-11853,-11851,-15613,-15614,-15615,-15616,-15617,-3100,-15618], [1,3,10572], [0,10573,0,271,8], -[0,-925,-1863,-6241,-1197,-596,-6236,-2141], +[0,-653,-914,-2710,-15380,-2433,-2719,-3546], [1,3,10575], [0,0,10576,10577,5], -[0,-50,-11,-216,-306,-21,-140,-359,-7335,-29,-5,-1220,-22,-19,-169,-86,-278,-1,-191,-12,-10,-25,-8,-5759,-4,-120,-2], -[0,-8,-350,-785,-60,-629,-172,-857,-61,-388], +[0,-21,-23,-26,-36,-40,-42,-3330,-15619,-3136,-3037,-6630,-427,-428,-527,-533,-535,-932,-934,-940,-958,-967,-1415,-5133, +-1942,-2174,-2410], +[0,-1415,-1001,-4116,-510,-5867,-1961,-4868,-3634,-5119], [1,3,10579], [0,10580,10581,10582,5], -[0,-1599,-1115], -[0,-1040,-1919,-32,-2310,-199,-644,-4118,-2], -[0,-61,-840,-1367,-933,-2046], +[0,-11458,-2173], +[0,-9705,-11477,-1168,-12346,-1412,-1888,-15414,-2410], +[0,-3634,-11468,-12350,-11467,-5769], [1,3,10584], [0,10585,10586,10587,4], -[0,-2268,-20,-151,-28,-758,-88,-522,-113,-7,-16,-551], -[0,-3579,-3773,-7334,-458,-2325,-1040,-843,-725,-5,-4471,-2426,-1204,-1599,-137,-2332,-1919,-32,-2310,-199,-983,-1115,-2], -[0,-192,-75,-61,-2193,-840,-1367,-933,-1115], +[0,-464,-668,-824,-1107,-1371,-1646,-1980,-2105,-2125,-2177,-2536], +[0,-5682,-3711,-15620,-3036,-11697,-9705,-8566,-5686,-3037,-12344,-8852,-8890,-11458,-3199,-11343,-11477,-1168,-12346, +-1412,-2150,-2173,-2410], +[0,-475,-4004,-3634,-1970,-11468,-12350,-11467,-2173], [1,3,10589], [0,117,55,10590,4], -[0,-163,-1055,-455,-2010,-3000,-2008,-4280,-4279,-4278,-2999,-240,-482,-2048,-37,-294,-174,-194,-2998,-2997,-2996,-2995, --4277], +[0,-2265,-7472,-4112,-6730,-13460,-6787,-13461,-13462,-13463,-13465,-5514,-5559,-5563,-687,-3958,-3974,-4000,-13466, +-13467,-13468,-13469,-13470], [1,3,10592], [0,169,10593,10594,5], -[0,-5,-89,-7333,-495,-7332,-2,-1104], -[0,-7331,-4908,-52,-4907,-1959,-105,-99], +[0,-3037,-928,-15621,-1496,-15622,-2410,-2447], +[0,-15623,-9669,-3161,-9670,-8615,-1334,-3690], [1,3,10596], [0,10597,0,10598,8], -[0,-276,-4099,-101,-3821], -[0,-1364,-1898,-353,-42,-1363,-1362], +[0,-1460,-15624,-1442,-3241], +[0,-15279,-15625,-727,-856,-15280,-15281], [1,3,10600], [0,0,10601,278,6], -[0,-13,-109,-5,-4098], +[0,-664,-3035,-3037,-15626], [1,3,10603], [0,10604,0,95,10], -[0,-7329,-7328,-326,-562], +[0,-15631,-15632,-823,-1878], [1,3,10606], [0,39,0,10607,5], -[0,-6,-108,-953,-635], +[0,-2006,-3159,-4217,-3694], [0,23,0,98,4], [0,23,0,99,6], [1,3,10611], [0,10612,10613,10614,4], -[0,-7327,-3114], -[0,-1678,-59,-4253,-39], -[0,-1212,-1637,-3361,-5272,-7326,-585,-7325,-53,-59], +[0,-15633,-10576], +[0,-5859,-633,-13719,-2322], +[0,-7581,-7582,-7580,-7762,-15634,-5177,-15635,-3100,-633], [1,3,10616], [0,10617,10618,10619,4], -[0,-7324,-7323,-7322,-7321,-7320,-299,-20,-1568,-215,-1024,-422,-229,-2971,-499,-402,-469,-200,-1401,-276,-7319,-7318, --1676,-287,-16,-689,-372,-2,-7317,-7316,-7315], -[0,-74,-7314,-7313,-7312,-7311], -[0,-6208,-7310,-52], +[0,-15636,-15637,-15638,-15639,-15640,-640,-668,-671,-865,-866,-997,-1026,-14636,-1098,-1116,-1353,-1376,-7408,-1460, +-15641,-15642,-5895,-1958,-2177,-2193,-2331,-2410,-15643,-15644,-15645], +[0,-2476,-15646,-15647,-15648,-15649], +[0,-2830,-15650,-3161], [1,3,10621], [0,10622,10623,10624,9], -[0,-90,-7309], -[0,-8,-77,-9,-6,-445,-1,-17,-4,-26,-35,-50,-144,-521,-2,-11,-18,-65,-462,-92,-47,-98,-154,-7308,-7307,-3719,-7306,-950, --21,-3001,-136,-64,-2934,-7305,-12,-148,-25,-176,-140,-1440,-7304,-2093,-19,-1715,-173,-22,-4423,-4146], -[0,-6,-129,-7303,-4255,-7302,-95,-4143,-2,-7301,-7300], +[0,-44,-15651], +[0,-1415,-2162,-1344,-2006,-915,-932,-2501,-1942,-767,-2019,-21,-778,-2095,-2410,-23,-1534,-1771,-2163,-2503,-3040,-534, +-2275,-15652,-15653,-4227,-15654,-4749,-40,-13427,-41,-969,-358,-15655,-940,-962,-967,-1419,-42,-4757,-15656,-4758,-428, +-4762,-38,-427,-12712,-15045], +[0,-2006,-3095,-15657,-13652,-15658,-3162,-15106,-2410,-15659,-15660], [1,3,10626], [0,10627,10628,7,4], -[0,-20,-661,-58,-228,-2020,-16,-2950], -[0,-2131,-4625,-5,-137,-7299], +[0,-668,-695,-719,-1610,-6294,-2177,-15661], +[0,-3802,-11346,-3037,-3199,-15662], [1,3,10630], [0,10631,10632,7,4], -[0,-7298,-258,-304,-207,-7297,-598,-104,-208,-1348,-36,-863,-483,-352,-2243,-2083,-374,-16,-3855,-504,-2084,-89,-7296, --7295,-101,-1749,-1125,-397,-7294,-7293,-1093,-2746,-7292,-323,-3123,-3880,-7291,-7290,-1433,-311,-6051,-4097,-2872,-297, --518,-824,-7289,-3299,-486,-1595,-7288,-340,-7287,-7286,-7285,-3261,-728,-1758,-5899,-7284,-3503,-1462,-7283,-7282], -[0,-4897,-77,-14,-284,-30,-238,-133,-7281,-2962,-7280,-2,-246,-823,-2811,-162,-4330,-4500,-137,-7279,-2551,-411,-788, --2616,-3933,-357,-623,-3649,-1611,-7278,-6017,-2404,-1801,-7277,-7276], +[0,-15663,-2564,-703,-834,-15664,-2303,-2466,-461,-623,-812,-4245,-5358,-743,-783,-5036,-2083,-2177,-2814,-680,-5034,-928, +-15665,-15666,-1442,-3447,-1827,-1966,-15667,-15668,-3535,-3027,-15669,-1864,-10430,-2422,-15670,-15671,-5113,-2654, +-3545,-15672,-1321,-1588,-2551,-989,-15673,-8294,-3649,-14335,-15674,-2429,-15675,-15676,-15677,-8882,-4785,-3190,-4288, +-15678,-6332,-3459,-15679,-15680], +[0,-9740,-2162,-2127,-2426,-2469,-674,-2427,-15681,-15206,-15682,-2410,-5334,-1002,-2089,-3198,-13046,-12145,-3199,-15683, +-6327,-3660,-3735,-5204,-1736,-3983,-8523,-5114,-9602,-15684,-3712,-9146,-2084,-15685,-15686], [1,3,10634], [0,10635,0,7,5], -[0,-474,-7275,-565,-112], +[0,-710,-15687,-1813,-2416], [1,3,10637], [0,10638,10639,10640,10], -[0,-135,-40,-200], -[0,-1,-145,-8], -[0,-2682,-114,-958,-37,-4611], +[0,-714,-1077,-1376], +[0,-932,-959,-1415], +[0,-3871,-3262,-3976,-687,-11487], [1,3,10642], [0,0,10643,10644,10], -[0,-80,-63,-20,-573,-1,-12,-10,-7274,-5561,-759,-9,-18,-3,-1750,-4,-7,-14,-463,-7273,-146,-312,-3093], -[0,-1466,-271,-387], +[0,-350,-351,-668,-910,-932,-940,-958,-15688,-6099,-1343,-1344,-1534,-1654,-3446,-1942,-2125,-2127,-2131,-15689,-2234, +-2323,-10988], +[0,-3108,-3110,-5889], [1,3,10646], [0,0,10647,7,8], -[0,-22,-19,-1,-1020,-12,-251,-10,-148,-25,-64,-190,-9,-18,-4,-6,-2], +[0,-427,-428,-932,-935,-940,-948,-958,-962,-967,-969,-970,-1344,-1534,-1942,-2006,-2410], [1,3,10649], [0,10650,10651,10652,4], -[0,-7272], -[0,-69,-326,-3], -[0,-111,-75,-456,-7271,-3,-52], +[0,-15690], +[0,-3621,-823,-1654], +[0,-3578,-4004,-4043,-15691,-1654,-3161], [1,3,10654], [0,0,10655,10656,4], -[0,-673,-29,-22,-19,-7270,-4772,-2989,-224,-1,-12,-25,-28,-8,-4,-14,-226,-301,-321,-1107,-57,-33,-44,-2], -[0,-224,-73,-452,-2299,-2285,-726,-4516,-7269,-4515,-1144,-7268,-4464,-24,-7267,-951,-7266,-7265,-227,-7264], +[0,-5295,-3136,-427,-428,-15692,-10529,-13751,-712,-932,-940,-967,-1107,-1415,-1942,-2127,-2140,-2142,-2214,-2355,-2375, +-2379,-2387,-2410], +[0,-712,-3215,-5845,-13241,-15559,-5549,-12065,-15693,-12067,-1510,-15694,-12434,-775,-15695,-4665,-15696,-15697,-1644, +-15698], [1,3,10658], [0,106,10659,280,6], -[0,-2955,-49,-62,-3853,-861,-257,-29,-5,-22,-19,-1,-12,-9,-8,-4,-373,-57,-2], +[0,-15587,-86,-3307,-2845,-4646,-3617,-3136,-3037,-427,-428,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], [0,23,0,97,8], [1,3,10662], [0,10663,10664,10665,8], -[0,-3503,-3504,-5534,-7263,-246,-411,-408,-6198,-7262,-1281,-1842,-760,-1159,-1156,-101,-4192,-297,-7261,-3105,-2053, --3849,-374,-5906,-2052,-3880,-133,-340,-483], -[0,-357,-5,-103,-1280,-7260,-30], -[0,-390,-42,-1280,-4093,-4092], +[0,-6332,-6326,-6329,-15702,-5334,-3660,-4251,-2854,-15703,-2586,-1288,-1292,-1294,-1349,-1442,-14511,-1588,-15704,-10749, +-5348,-2918,-2083,-4262,-5353,-2422,-2427,-2429,-5358], +[0,-3983,-3037,-3664,-2834,-15705,-2469], +[0,-3671,-856,-2834,-15706,-15707], [1,3,10667], [0,10668,10669,280,4], -[0,-41,-602], -[0,-2955,-49,-62,-6207,-3853,-861,-257,-29,-5,-22,-19,-1,-12,-9,-8,-4,-373,-57,-2], +[0,-1004,-2080], +[0,-15587,-86,-3307,-2841,-2845,-4646,-3617,-3136,-3037,-427,-428,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], [1,3,10671], [0,10672,10673,10674,4], -[0,-602,-33], -[0,-49,-62,-861,-257,-29,-5,-22,-19,-20,-1,-12,-9,-8,-4,-373,-57,-2], -[0,-4096,-335,-2,-4095,-4094,-52,-3055,-46,-369], +[0,-2080,-2379], +[0,-86,-3307,-4646,-3617,-3136,-3037,-427,-428,-668,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], +[0,-15699,-3967,-2410,-15700,-15701,-3161,-11894,-3445,-3482], [1,3,10676], [0,23,0,97,4], [0,23,0,98,11], [1,3,10679], [0,262,10680,10681,4], -[0,-478,-858], -[0,-74,-1783,-952,-1768,-7259,-7258,-3025,-99,-2465,-2406,-2,-436,-540,-1376], +[0,-262,-4838], +[0,-2476,-2486,-4634,-2851,-15708,-15709,-12704,-3690,-7864,-9069,-2410,-3018,-8038,-9594], [1,3,10683], [0,10684,10685,151,5], -[0,-7257,-4054,-7256], -[0,-136,-7255,-7254,-155,-122,-317,-47,-87,-537,-304,-6,-35,-3908,-559,-1118,-3760,-7253,-353], +[0,-15710,-192,-15711], +[0,-41,-15712,-15713,-407,-409,-410,-3040,-3052,-440,-703,-2006,-2019,-2042,-2044,-2113,-3820,-15714,-727], [1,3,10687], [0,10688,10689,10690,8], -[0,-6197], -[0,-1280,-118,-4091], -[0,-4092,-4090,-42,-2949,-863,-4089,-4093], +[0,-2856], +[0,-2834,-999,-15715], +[0,-15707,-15716,-856,-15717,-4245,-15718,-15706], [0,0,0,10692,5], -[0,-1900,-2284,-46], +[0,-15318,-15719,-3445], [1,3,10694], [0,10695,10696,10697,9], -[0,-2949], -[0,-408,-677,-1611,-750,-601,-804,-863,-133,-483,-4091], -[0,-4090,-42,-2949,-863,-4089], +[0,-15717], +[0,-4251,-4231,-9602,-2090,-2098,-2101,-4245,-2427,-5358,-15715], +[0,-15716,-856,-15717,-4245,-15718], [1,3,10699], [0,10700,10701,10702,8], -[0,-4165,-4164,-2238,-823,-210], -[0,-7252,-4163,-877,-1274,-43,-4162,-2], -[0,-4161,-2105,-132,-141,-91,-46,-53,-293,-75,-13,-4160,-4159], +[0,-14800,-14801,-820,-1002,-2400], +[0,-15720,-14804,-3311,-3312,-652,-14806,-2410], +[0,-14808,-4187,-2444,-3966,-4865,-3445,-3100,-507,-4004,-664,-14809,-14810], [1,3,10704], [0,0,10705,10706,5], -[0,-1883,-59,-56,-66,-3,-82,-112], -[0,-1623,-1282,-941,-2980,-336,-667,-482,-777,-719,-437,-31,-24,-2026,-4184], +[0,-600,-633,-756,-1405,-1654,-2198,-2416], +[0,-8472,-2544,-7723,-14242,-3962,-7107,-5559,-6422,-7724,-2451,-3264,-775,-6138,-14672], [1,3,10708], [0,10709,0,10710,5], -[0,-7251], -[0,-961,-1761,-2984,-6,-53,-184,-46,-2094,-111,-91,-45,-270,-2,-141,-335,-369,-7250,-674], +[0,-15721], +[0,-3843,-3118,-14066,-2006,-3100,-3577,-3445,-4725,-3578,-4865,-3214,-3756,-2410,-3966,-3967,-3482,-15722,-5260], [1,3,10712], [0,10713,0,73,9], -[0,-3839,-6185,-3565,-210], +[0,-2984,-2885,-5766,-2400], [1,3,10715], [0,269,0,95,10], [1,3,10717], [0,10718,0,77,4], -[0,-2269,-6246,-6211,-6194,-6244,-6243,-6178,-6177,-6172,-6242], +[0,-424,-2704,-2826,-2863,-2706,-2707,-2902,-2903,-2940,-2708], [1,3,10720], [0,0,0,10721,4], -[0,-961,-1761,-2984,-6,-53,-184,-46,-2094,-111,-91,-45,-270,-2,-141,-335,-369,-7248,-674], +[0,-3843,-3118,-14066,-2006,-3100,-3577,-3445,-4725,-3578,-4865,-3214,-3756,-2410,-3966,-3967,-3482,-15724,-5260], [0,23,0,97,6], [1,3,10724], [0,10725,0,246,4], -[0,-205,-28,-1476,-96,-16,-172,-1884,-58,-704,-982,-1190,-86,-4451,-2205,-792,-4450,-695,-692,-1354,-4449,-1920,-4448, --3158,-342,-4447,-816,-4446,-4445,-4444,-4443,-4442,-4441,-4440,-7247], +[0,-2531,-1107,-2624,-2550,-2177,-1961,-578,-719,-1384,-2166,-481,-533,-12547,-1624,-2516,-12548,-1950,-2041,-458,-12550, +-11463,-12551,-9870,-2082,-12552,-1421,-12553,-12554,-12555,-12556,-12557,-12559,-12560,-15725], [1,3,10727], [0,10728,0,77,10], -[0,-6195,-2269,-6165,-6189,-6245,-6199,-6200,-6210,-6202,-6201,-6209,-7246,-7245,-6193,-6247,-6166,-7244,-6204,-7243, --6203,-6206,-7242,-7241,-6191,-6160,-6192], +[0,-2862,-424,-2976,-2872,-2705,-2853,-2850,-2827,-2848,-2849,-2828,-15726,-15727,-2865,-2703,-2975,-15728,-2846,-15729, +-2847,-2842,-15730,-15731,-2868,-2996,-2866], [1,3,10730], [0,10731,10732,268,5], -[0,-44,-6253], -[0,-6,-1,-7,-14,-4,-35,-2,-5,-47,-897,-87,-559,-7240,-2118,-2117,-3836,-319,-19,-22], +[0,-2387,-2686], +[0,-2006,-932,-2125,-2127,-1942,-2019,-2410,-3037,-3040,-2043,-3052,-2044,-15732,-3986,-3988,-3075,-3267,-428,-427], [1,3,10734], [0,10735,10736,10737,9], -[0,-7239,-7238,-7237,-168,-41,-7236,-2870,-552,-2167], -[0,-7235,-7234,-7233,-7232,-7231,-257,-954,-810,-125], -[0,-7230,-1397,-7229,-7228,-7227,-46], +[0,-15733,-15734,-15735,-617,-1004,-15736,-1338,-2520,-2558], +[0,-15737,-15738,-15739,-15740,-15741,-3617,-4203,-1683,-2293], +[0,-15742,-7661,-15743,-15744,-15745,-3445], [1,3,10739], [0,23,0,98,5], [1,3,10741], [0,0,10742,10743,4], -[0,-927,-3], -[0,-6188,-240,-224,-671,-20,-24,-2285,-726,-7226], +[0,-509,-1654], +[0,-2873,-5514,-712,-5535,-668,-775,-15559,-5549,-15746], [1,3,10745], [0,10746,10747,10748,10], -[0,-3686], -[0,-5,-47,-87,-537,-241,-6,-35,-104,-847,-30,-3687], -[0,-99,-42,-1608,-399,-681,-545], +[0,-4843], +[0,-3037,-3040,-3052,-440,-2634,-2006,-2019,-2466,-6859,-2469,-4842], +[0,-3690,-856,-9736,-1713,-3438,-4847], [1,3,10750], [0,10751,0,10752,5], -[0,-1002,-1211,-473,-4106], -[0,-1900,-2284,-46,-1981], +[0,-1439,-7679,-722,-15447], +[0,-15318,-15719,-3445,-7660], [1,3,10754], [0,0,10755,10756,4], -[0,-664,-43,-4,-147,-260,-7,-39,-233,-2,-34], -[0,-24,-31,-255,-111,-1671,-4305,-2575,-4985], +[0,-8096,-652,-1942,-2094,-2100,-2125,-2322,-2399,-2410,-2541], +[0,-775,-3264,-5092,-3578,-6184,-13270,-5899,-9299], [1,3,10758], [0,10759,10760,285,10], -[0,-915,-258], -[0,-7225,-49,-62,-1244,-2948,-458,-5,-22,-19,-3698,-89,-1,-191,-12,-4088,-251,-10,-25,-28,-9,-18,-4,-4087,-7,-795,-153,-2], +[0,-1313,-2564], +[0,-15747,-86,-3307,-4835,-15748,-3036,-3037,-427,-428,-4627,-928,-932,-934,-940,-15749,-948,-958,-967,-1107,-1344,-1534, +-1942,-15750,-2125,-2383,-2392,-2410], [1,3,10762], [0,10763,10764,285,4], -[0,-119,-6187], -[0,-836,-153,-28,-9,-1,-7,-89,-4,-2,-458,-5,-18,-2948,-795,-49,-4087,-10,-3698,-12,-25,-19,-191,-62,-22,-251,-4088], +[0,-679,-2877], +[0,-502,-2392,-1107,-1344,-932,-2125,-928,-1942,-2410,-3036,-3037,-1534,-15748,-2383,-86,-15750,-958,-4627,-940,-967,-428, +-934,-3307,-427,-948,-15749], [1,3,10766], [0,10767,10768,10769,6], -[0,-205,-193,-153,-1691,-1307,-123,-1569,-2896,-7222,-284,-504,-88,-2162,-326,-1331,-1926,-562,-7221,-1840,-6425,-3052, --1327,-1121,-4212,-7220,-4223,-563,-2185,-7219,-7218,-3306], -[0,-689,-7,-14,-89,-454,-660,-26,-680,-7217,-725,-1686,-6347,-4615,-415,-633,-7216,-7215,-7214,-7213], -[0,-4126,-99,-1982,-7212,-2335,-52,-7211,-1199,-45,-1608,-141,-6186,-6,-4125,-2], +[0,-2531,-469,-2392,-5193,-1867,-2446,-649,-764,-15753,-2426,-680,-1646,-2694,-823,-1043,-11121,-1878,-15754,-1354,-1340, +-11964,-1101,-1997,-14221,-15755,-14032,-1851,-2160,-15756,-15757,-8274], +[0,-2193,-2125,-2127,-928,-4204,-749,-767,-3738,-15758,-5686,-5363,-2014,-11433,-2132,-4049,-15759,-15760,-15761,-15762], +[0,-15354,-3690,-7643,-15763,-11229,-3161,-15764,-11878,-3214,-9736,-3966,-2879,-2006,-15359,-2410], [1,24,10771], [0,25,10772], 1743292800000, [1,3,10774], [0,10775,10776,10777,9], -[0,-7210,-7209,-7208,-7207,-7206], -[0,-21,-7205,-7204,-7203,-203,-80,-63,-232,-185,-5,-7202,-22,-4387,-19,-160,-98,-268,-289,-159,-56,-5828,-7201,-1,-10, --181,-3556,-40,-348,-3787,-7200,-7199,-9,-7198,-7197,-65,-7196,-696,-7195,-7194,-7193,-14,-2420,-1246,-7192,-1956,-226, --301,-640,-77,-3553,-7191,-3660,-44,-196,-7190,-2,-5099], -[0,-1366,-7189,-1198,-2302,-414,-1200,-95,-6,-74,-192,-491,-1365,-2294,-2991,-7188], +[0,-15765,-15766,-15767,-15768,-15769], +[0,-40,-15770,-15771,-15772,-3326,-350,-351,-3561,-3048,-3037,-15773,-427,-12837,-428,-518,-534,-558,-726,-753,-756,-4809, +-15774,-932,-958,-960,-5863,-1077,-1103,-3566,-15775,-15776,-1344,-15777,-15778,-1771,-15779,-1891,-15780,-15781,-15782, +-2127,-8895,-4753,-15783,-8896,-2140,-2142,-2144,-2162,-5896,-15784,-5013,-2387,-2388,-15785,-2410,-8564], +[0,-12613,-15786,-12449,-12898,-2363,-11321,-3162,-2006,-2476,-475,-1940,-13615,-13616,-13613,-15787], [1,3,10779], [0,0,10780,10781,4], -[0,-366,-2,-104,-5823,-847], -[0,-4117,-4116,-7187,-4115,-4114,-1369,-3108,-4113,-2524,-4112,-4111,-1444,-1901,-6,-4110,-192,-74,-282,-95,-1200,-1899, --4109], +[0,-50,-2410,-2466,-4840,-6859], +[0,-15415,-15416,-15788,-15417,-15418,-11853,-10655,-15419,-6711,-15420,-15421,-4126,-15071,-2006,-15422,-475,-2476,-5270, +-3162,-11321,-15423,-15424], [1,3,10783], [0,10784,10785,10786,5], -[0,-7186], -[0,-7185,-29,-5,-13,-3038,-823], -[0,-7184,-2559,-4033,-7183,-7182,-7181,-7180], +[0,-15789], +[0,-15790,-3136,-3037,-664,-12469,-1002], +[0,-15791,-6121,-460,-15792,-15793,-15794,-15795], [1,3,10788], [0,10789,10790,7,4], -[0,-7179,-309,-251,-1626,-115,-67,-64,-349,-55,-7178,-83], -[0,-5,-4758,-1,-9,-1451,-811,-7177,-343,-233,-2], +[0,-15796,-3748,-948,-8339,-965,-968,-969,-1047,-1110,-15797,-2411], +[0,-3037,-10557,-932,-1344,-3781,-1498,-15798,-1772,-2399,-2410], [1,3,10792], [0,10793,0,73,4], -[0,-650], +[0,-1456], [1,3,10795], [0,10796,10797,286,4], -[0,-957,-1183,-1758,-23,-468,-7176], -[0,-7175,-5,-1324,-2,-7174,-7173,-7172], +[0,-4007,-658,-3190,-1548,-1549,-15799], +[0,-15800,-3037,-1278,-2410,-15801,-15802,-15803], [1,3,10799], [0,10800,0,7,6], -[0,-677], +[0,-4231], [1,3,10802], [0,0,10803,7,8], -[0,-555,-1,-30,-4,-2,-5,-115,-103,-150,-12,-19,-22], +[0,-2386,-932,-2469,-1942,-2410,-3037,-965,-3664,-978,-940,-428,-427], [1,3,10805], [0,10806,10807,10808,9], -[0,-20,-647,-523,-598], -[0,-54,-167,-243,-1539,-34], -[0,-253,-256,-1203,-3476,-281,-580,-227], +[0,-668,-1574,-1948,-2303], +[0,-1127,-1132,-1134,-1163,-2541], +[0,-9219,-3839,-9472,-6523,-6527,-7175,-1644], [1,3,10810], [0,10811,10812,286,5], -[0,-89,-957,-6184], -[0,-8,-2,-29,-5,-7169,-7168], +[0,-928,-4007,-2886], +[0,-1415,-2410,-3136,-3037,-15806,-15807], [1,3,10814], [0,10815,10816,10817,5], -[0,-1352], -[0,-15,-13,-171,-3,-7,-41,-33,-2,-109,-5,-69,-1578,-257,-357], -[0,-951,-388,-61,-543,-591,-1248,-3540,-398,-1352], +[0,-522], +[0,-1788,-664,-2391,-1654,-2125,-1004,-2379,-2410,-3035,-3037,-3621,-511,-3617,-3983], +[0,-4665,-5119,-3634,-4873,-3440,-4666,-5986,-1874,-522], [1,3,10819], [0,10820,10821,7,5], -[0,-1580,-925,-1653,-2297,-2983,-7167,-2082,-323,-975,-1997,-16,-1093,-311,-687,-7166,-7165], -[0,-2950,-4086,-7164,-7163,-7162,-5,-623,-137,-1047,-7161,-7160,-103,-964,-1714,-1387,-534,-1,-2436,-1452,-262,-1462, --1660,-4,-459,-7159,-7158,-2,-7157,-7156,-7155,-4085,-104,-30], +[0,-483,-653,-6860,-13380,-14174,-15808,-5042,-1864,-2923,-7160,-2177,-3535,-2654,-2369,-15809,-15810], +[0,-15661,-15811,-15812,-15813,-15814,-3037,-8523,-3199,-8200,-15815,-15816,-3664,-3665,-4817,-8349,-815,-932,-8418,-3751, +-1623,-3459,-6568,-1942,-2910,-15817,-15818,-2410,-15819,-15820,-15821,-15822,-2466,-2469], [1,3,10823], [0,10824,10825,10826,4], -[0,-36,-2892,-40,-402,-1401,-372], -[0,-162,-7154,-185,-13,-1,-3], -[0,-1340,-943,-3096,-1419,-126,-105,-195,-667,-46], +[0,-812,-814,-1077,-1116,-7408,-2331], +[0,-3198,-15823,-3048,-664,-932,-1654], +[0,-867,-7347,-10908,-6131,-6656,-1334,-2435,-7107,-3445], [1,3,10828], [0,0,10829,10830,4], -[0,-357,-5,-47,-2376,-4,-6,-35,-2133,-2], -[0,-6,-3571,-3027,-4431,-2303], +[0,-3983,-3037,-3040,-9723,-1942,-2006,-2019,-3682,-2410], +[0,-2006,-5741,-12662,-12664,-12665], [1,3,10832], [0,10833,0,10834,5], -[0,-207,-1464,-290,-2710,-426,-331,-1360,-1192,-590,-356,-448,-1358,-4084,-3466,-4083], -[0,-4082,-290,-876,-4081,-4080,-183,-4079,-2470,-412,-966,-31,-1461,-1460,-1748,-1747,-1459,-771,-5551,-52], +[0,-834,-3222,-681,-3620,-81,-66,-73,-74,-3502,-83,-68,-85,-15824,-6672,-15825], +[0,-15826,-681,-3489,-15827,-15828,-5554,-15829,-7754,-3496,-3498,-3264,-3505,-3506,-3507,-3508,-3509,-8841,-6217,-3161], [1,3,10836], [0,0,287,134,4], [1,3,10838], [0,10839,10840,10841,11], -[0,-7153,-121,-691], -[0,-50,-11,-161,-216,-622,-1196,-1038,-2570,-306,-173,-21,-136,-90,-330,-155,-122,-98,-159,-26,-1,-266,-12,-10,-148,-25, --64,-8,-176,-911,-235,-4,-6,-35,-17,-520,-92,-170], -[0,-6,-516,-485,-108], +[0,-15830,-1967,-2055], +[0,-21,-23,-32,-26,-33,-34,-35,-6034,-36,-38,-40,-41,-44,-406,-407,-409,-534,-753,-767,-932,-933,-940,-958,-962,-967,-969, +-1415,-1419,-1455,-1939,-1942,-2006,-2019,-2501,-2502,-2503,-2505], +[0,-2006,-3476,-5176,-3159], [1,3,10843], [0,0,122,10844,5], -[0,-28,-948,-1075,-73,-7152,-593], +[0,-1107,-5569,-5570,-3215,-15831,-3116], [1,3,10846], [0,10847,0,10848,5], -[0,-290,-515,-426,-7151,-331,-356,-448,-4084,-3466,-4083,-1037,-7150,-3791,-7149,-7148], -[0,-4082,-290,-876,-4081,-4080,-183,-4079,-2470,-412,-966,-31,-1461,-1460,-1748,-1747,-1459,-771,-52], +[0,-681,-3517,-81,-15832,-66,-83,-68,-15824,-6672,-15825,-65,-15833,-3526,-15834,-15835], +[0,-15826,-681,-3489,-15827,-15828,-5554,-15829,-7754,-3496,-3498,-3264,-3505,-3506,-3507,-3508,-3509,-8841,-3161], [1,3,10850], [0,0,37,288,8], [1,3,10852], [0,10853,10854,10855,4], -[0,-7147,-1354,-36,-188], -[0,-162,-5,-955,-7146], -[0,-2990,-3362,-99,-337,-52,-369,-6179], +[0,-15836,-458,-812,-1729], +[0,-3198,-3037,-4201,-15837], +[0,-13739,-7572,-3690,-3323,-3161,-3482,-2901], [1,3,10857], [0,23,0,289,4], [0,23,0,289,5], [1,3,10860], [0,10861,0,170,5], -[0,-5746,-5745,-6536,-7145,-5744,-5743], +[0,-5240,-5241,-431,-15838,-5244,-5245], [1,3,10863], [0,10864,0,10865,9], -[0,-7144,-7143,-7142,-7141,-7140,-7139,-7138,-7137], -[0,-7136,-746,-7135,-61,-75,-4078,-4078,-234,-6,-95,-282,-333,-111], +[0,-15839,-15840,-15841,-15842,-15843,-15844,-15845,-15846], +[0,-15847,-2257,-15848,-3634,-4004,-15849,-15849,-2034,-2006,-3162,-5270,-5271,-3578], [1,3,10867], [0,10868,0,10869,6], -[0,-1002,-1211,-2266,-2265,-2286,-2267], -[0,-1900,-2284,-46,-1397], +[0,-1439,-7679,-493,-495,-15444,-492], +[0,-15318,-15719,-3445,-7661], [1,3,10871], [0,0,10872,10873,5], -[0,-59,-419,-744], -[0,-85,-5106,-95,-414,-783,-3449], +[0,-633,-1339,-2491], +[0,-2319,-8533,-3162,-2363,-5389,-6822], [1,3,10875], [0,10876,10877,10878,9], -[0,-7134,-1290], -[0,-378,-78,-139,-612,-400,-4631,-93,-157,-112], -[0,-1929,-3100,-95,-91], +[0,-15850,-2324], +[0,-1413,-1471,-1475,-1476,-1481,-11285,-1645,-1978,-2416], +[0,-10838,-10840,-3162,-4865], [1,3,10880], [0,10881,10882,7,4], -[0,-5105,-7133,-4634,-3685,-7132,-7131,-564,-2706,-197,-1394,-5102,-7130,-7129,-205], -[0,-4299,-3237,-4298,-7128,-662,-7127,-5,-454,-3277,-1766,-289,-2761,-1,-1164,-380,-1013,-7126,-791,-235,-180,-16,-27, --889,-81,-2,-284,-2164], +[0,-8535,-15851,-11270,-4848,-15852,-15853,-1826,-3653,-2062,-7967,-8544,-15854,-15855,-2531], +[0,-13322,-9193,-13323,-15856,-357,-15857,-3037,-4204,-8549,-2917,-726,-2758,-932,-1030,-1122,-1123,-15858,-2884,-1939, +-1972,-2177,-2210,-2240,-2384,-2410,-2426,-2648], [1,3,10884], [0,10885,10886,10887,11], -[0,-1462,-164,-1707,-4086], -[0,-788,-2962,-397,-30], -[0,-717,-217], +[0,-3459,-1863,-5037,-15811], +[0,-3735,-15206,-1966,-2469], +[0,-8403,-7148], [1,3,10889], [0,10890,10891,7,4], -[0,-427,-20,-1300,-128,-96], -[0,-94,-7125,-7124,-4797,-157,-2188,-1792,-97,-39,-156], +[0,-25,-668,-2066,-2114,-2550], +[0,-528,-15859,-15860,-10445,-1978,-2070,-2226,-2250,-2322,-2359], [1,3,10893], [0,10894,132,58,5], -[0,-7123,-1018,-2287,-2958], +[0,-15861,-996,-15388,-15399], [1,3,10896], [0,0,0,10897,4], -[0,-7122,-46,-4227,-3057,-386,-6], +[0,-15862,-3445,-13986,-11867,-7685,-2006], [1,3,10899], [0,0,0,10900,6], -[0,-1,-368,-6,-692,-5729], +[0,-932,-3784,-2006,-2041,-5324], [1,3,10902], [0,10903,10904,10905,8], -[0,-477,-3202,-36,-264,-1771,-166,-999,-156], -[0,-11,-21,-178,-94,-13,-56,-1,-827,-32,-615,-530,-1161,-1008,-364,-313,-3,-7121,-15,-235], -[0,-32,-166,-2475,-45,-68,-42], +[0,-479,-9493,-812,-1022,-2778,-1446,-1597,-2359], +[0,-23,-40,-43,-528,-664,-756,-932,-951,-1168,-1174,-1197,-1212,-1220,-1231,-1252,-1654,-15863,-1788,-1939], +[0,-1168,-1446,-7674,-3214,-7841,-856], [1,3,10907], [0,10908,0,10909,4], -[0,-758,-4105,-93,-2863], -[0,-1900,-2284,-46,-4104,-4103], +[0,-1371,-15448,-1645,-1469], +[0,-15318,-15719,-3445,-15449,-15450], [1,3,10911], [0,10912,10913,7,4], -[0,-4127,-43,-118,-349,-28,-259], -[0,-7120,-2329,-7119,-662,-5,-7118,-16,-1,-791,-2], +[0,-15274,-652,-999,-1047,-1107,-2548], +[0,-15864,-11419,-15865,-357,-3037,-15866,-2177,-932,-2884,-2410], [1,3,10915], [0,0,91,10916,10], -[0,-2049,-856,-720,-3849,-2318,-630], +[0,-5372,-5142,-7282,-2918,-11889,-5573], [1,3,10918], [0,0,10919,10920,10], -[0,-171,-1768], -[0,-74,-1783,-952,-1768,-1090,-307,-61], +[0,-2391,-2851], +[0,-2476,-2486,-4634,-2851,-3636,-4215,-3634], [1,3,10922], [0,0,10923,10924,4], -[0,-169,-32,-1844,-7117,-654,-3974,-314,-1537,-313,-653,-4,-273], -[0,-7116,-7115,-7114,-7113,-7112,-7111,-95,-1369], +[0,-527,-1168,-1171,-15867,-1187,-1229,-1243,-1248,-1252,-1262,-1942,-2128], +[0,-15868,-15869,-15870,-15871,-15872,-15873,-3162,-11853], [1,3,10926], [0,10927,10928,7,4], -[0,-4077], -[0,-74,-858,-7110], +[0,-15874], +[0,-2476,-4838,-15875], [1,3,10930], [0,0,10931,10932,6], -[0,-2950,-48,-7109,-7108,-5,-103,-848,-1,-12,-181,-150,-527,-3429,-18,-1385,-4,-7107,-7106,-459,-120,-371,-210,-2,-83,-30], -[0,-7105,-3112,-3042,-2327,-727,-4221,-23,-642,-2351,-1094,-436,-635,-2,-247,-132,-939,-202,-674], +[0,-15661,-190,-15876,-15877,-3037,-3664,-6593,-932,-940,-960,-978,-1431,-7060,-1534,-8436,-1942,-15878,-15879,-2910, +-2174,-2892,-2400,-2410,-2411,-2469], +[0,-15880,-10587,-12437,-11639,-5112,-14059,-1548,-1993,-10656,-3481,-3018,-3694,-2410,-2424,-2444,-8113,-3590,-5260], [1,3,10934], [0,10935,10936,10937,6], -[0,-2976,-2057], -[0,-3655,-4569,-7104,-231,-1184,-1346,-118,-28,-4910,-606,-3848,-1997,-14,-891,-130,-2,-2158,-975], -[0,-2464,-89,-3348,-975,-14,-17], +[0,-14337,-5322], +[0,-5053,-11754,-15881,-4062,-639,-734,-999,-1107,-9665,-1852,-2922,-7160,-2127,-2202,-2231,-2410,-2924,-2923], +[0,-7882,-928,-7760,-2923,-2127,-2501], [1,3,10939], [0,0,10940,10941,5], -[0,-48,-103,-1,-10,-181,-7103,-826,-762,-79,-371,-7102,-2,-83,-104,-30], -[0,-5036,-2,-318,-409,-723,-7101,-5121,-1368], +[0,-190,-3664,-932,-958,-960,-15882,-971,-972,-1449,-2892,-15883,-2410,-2411,-2466,-2469], +[0,-9022,-2410,-4058,-3926,-6747,-15884,-8461,-11997], [1,3,10943], [0,0,0,10944,6], -[0,-387,-3243,-1202], +[0,-5889,-9080,-9800], [1,3,10946], [0,10947,10948,10949,10], -[0,-2684,-7100,-7099,-7098,-7097,-7096,-7095,-7094,-7093,-1762,-5059,-3688,-7092,-4077,-7091,-7090,-7089,-7088,-7087, --7086,-7085,-7084,-7083,-7082,-7081,-7080,-7079,-7078,-7077,-7076,-7075,-5826,-1714,-4205,-7074,-7073,-1346,-1653,-7072, --7071,-7070,-7069,-7068,-7067,-7066,-1849,-2983,-7065,-297,-1518,-7064,-4488,-606,-7063,-2531,-2781,-7062,-557,-311, --2341,-2748,-7061,-7060, --7059,-7058], -[0,-7057,-7056,-7055,-861,-7054,-949,-858,-2947,-3846,-1,-1324,-3408,-373,-1287,-30,-4141,-7053,-74,-1424], -[0,-7052,-3408,-873,-557,-2591,-74,-1238,-2717,-2,-5867,-102,-1292,-52,-7051], +[0,-3819,-15885,-15886,-15887,-15888,-15889,-15890,-15891,-15892,-3117,-8915,-4836,-15893,-15874,-15894,-15895,-15896, +-15897,-15898,-15899,-15900,-15901,-15902,-15903,-15904,-15905,-15906,-15907,-15908,-15909,-15910,-4816,-4817,-14358, +-15911,-15912,-734,-6860,-15913,-15914,-15915,-15916,-15917,-15918,-15919,-1085,-14174,-15920,-1588,-1651,-15921,-12267, +-1852,-15922,-6569,-2317,-15923,-2318,-2654,-11071,-2981,-15924,-15925, +-15926,-15927], +[0,-15928,-15929,-15930,-4646,-15931,-4837,-4838,-15932,-2932,-932,-1278,-7300,-2091,-2423,-2469,-15130,-15933,-2476, +-5627], +[0,-15934,-7300,-3944,-2318,-5511,-2476,-5173,-3527,-2410,-4591,-3160,-2316,-3161,-15935], [1,3,10951], [0,0,10952,10953,11], -[0,-29,-8,-57,-33,-171,-2], -[0,-46,-860,-4867,-7050,-7049,-7048,-7047,-7046,-7045,-7044,-7043,-24,-1428,-53,-7042,-7041,-7040,-7039,-7038,-7037,-7036, --7035,-7034,-7033,-7032,-7031,-2,-7030,-7029,-7028,-7027,-7026,-7025,-7024,-7023,-7022], +[0,-3136,-1415,-2375,-2379,-2391,-2410], +[0,-3445,-4791,-9915,-15936,-15937,-15938,-15939,-15940,-15941,-15942,-15943,-775,-5272,-3100,-15944,-15945,-15946,-15947, +-15948,-15949,-15950,-15951,-15952,-15953,-15954,-15955,-2410,-15956,-15957,-15958,-15959,-15960,-15961,-15962,-15963, +-15964], [1,3,10955], [0,10956,10957,134,6], -[0,-3846,-6181], -[0,-8,-1,-14,-57,-4,-2,-29,-47,-12,-25,-176,-19,-22], +[0,-2932,-2896], +[0,-1415,-932,-2127,-2375,-1942,-2410,-3136,-3040,-940,-967,-1419,-428,-427], [1,3,10959], [0,0,10960,10961,5], -[0,-47,-87,-6,-35,-2], -[0,-6,-3266,-336,-2960], +[0,-3040,-3052,-2006,-2019,-2410], +[0,-2006,-8785,-3962,-15273], [1,3,10963], [0,10964,10965,10966,5], -[0,-7021,-7020,-7019], -[0,-7018,-7017,-7016,-7015,-7014,-7013,-7012,-7011,-7010,-7009,-7008,-7007,-7006,-7005,-7004,-7003,-7002,-7001,-7000, --6999,-6998,-6997,-6996], -[0,-6174,-75,-61,-3102,-543,-13,-293,-42,-6995,-6994,-6993,-166,-628,-1628], +[0,-15965,-15966,-15967], +[0,-15968,-15969,-15970,-15971,-15972,-15973,-15974,-15975,-15976,-15977,-15978,-15979,-15980,-15981,-15982,-15983,-15984, +-15985,-15986,-15987,-15988,-15989,-15990], +[0,-2931,-4004,-3634,-10817,-4873,-664,-507,-856,-15991,-15992,-15993,-1446,-6024,-8257], [1,3,10968], [0,0,287,134,5], [1,3,10970], [0,10971,10972,10973,5], -[0,-6992,-6991,-6990,-6989,-6988,-6987,-6986,-6985,-6984,-4286,-6983,-6982,-6981,-646,-2768,-258,-1475], -[0,-633,-5,-47,-87,-6,-35,-30,-6980], -[0,-4076,-399,-2175,-6979,-6,-127,-102,-53,-1292,-3841,-6978,-2946,-2947,-6071,-4075,-6977,-6976,-6975,-6974,-6973,-4074, --6972,-6971,-6970,-6969], +[0,-15994,-15995,-15996,-15997,-15998,-15999,-16000,-16001,-16002,-13406,-16003,-16004,-16005,-1699,-2641,-2564,-2650], +[0,-4049,-3037,-3040,-3052,-2006,-2019,-2469,-16006], +[0,-16007,-1713,-2455,-16008,-2006,-3098,-3160,-3100,-2316,-2955,-16009,-16010,-15932,-3475,-16011,-16012,-16013,-16014, +-16015,-16016,-16017,-16018,-16019,-16020,-16021], [1,3,10975], [0,0,0,10976,4], -[0,-4520,-24], +[0,-12059,-775], [1,3,10978], [0,10979,10980,10981,4], -[0,-4720,-4719,-4718,-4714,-4717,-566], -[0,-29,-5,-56,-8,-4,-602,-373,-489,-57,-33,-371,-2179,-2], -[0,-1684,-545,-42], +[0,-10782,-10784,-10786,-10793,-10788,-1691], +[0,-3136,-3037,-756,-1415,-1942,-2080,-2091,-2153,-2375,-2379,-2892,-2409,-2410], +[0,-5406,-4847,-856], [1,3,10983], [0,10984,10985,10986,5], -[0,-1475,-2664], -[0,-104,-6,-380,-35,-847,-330,-537,-122,-155,-2608], -[0,-6,-380,-6968,-107,-42,-4796], +[0,-2650,-4225], +[0,-2466,-2006,-1122,-2019,-6859,-406,-440,-409,-407,-5323], +[0,-2006,-1122,-16022,-3862,-856,-10446], [1,3,10988], [0,10989,10990,10991,5], -[0,-915,-564,-215,-6967,-3008,-442,-6966,-708,-6965,-650,-4097,-6964,-6963,-6962,-6961,-6960,-6959,-6958,-1755,-6957, --6956,-1381], -[0,-258,-171,-1,-206,-14,-30,-796,-964,-2,-11,-5,-6955,-6954,-6953,-6952,-1017,-729,-633,-6951,-6950,-103,-6949,-6948, --6947], -[0,-2947,-6946,-6945,-1609,-6944,-6943,-6942,-6941,-6940,-935,-1269,-2,-6939,-52], +[0,-1313,-1826,-865,-16023,-13074,-1582,-16024,-1125,-16025,-1456,-15672,-16026,-16027,-16028,-16029,-16030,-16031,-16032, +-3234,-16033,-16034,-8863], +[0,-2564,-2391,-932,-1111,-2127,-2469,-2378,-3665,-2410,-23,-3037,-16035,-16036,-16037,-16038,-1025,-4776,-4049,-16039, +-16040,-3664,-16041,-16042,-16043], +[0,-15932,-16044,-16045,-9733,-16046,-16047,-16048,-16049,-16050,-10412,-3674,-2410,-16051,-3161], [1,3,10993], [0,0,10994,10995,5], -[0,-366,-122,-29,-1025,-8,-241,-4,-6,-35,-286,-7,-57,-2], -[0,-6,-241,-1608,-399,-434,-307,-75,-61], +[0,-50,-409,-3136,-855,-1415,-2634,-1942,-2006,-2019,-2052,-2125,-2375,-2410], +[0,-2006,-2634,-9736,-1713,-3122,-4215,-4004,-3634], [1,3,10997], [0,0,10998,10999,6], -[0,-478,-513,-80,-63,-232,-673,-6938,-29,-586,-6937,-949,-1640,-858,-2589,-152,-404,-26,-8,-176,-79,-18,-5499,-4,-14,-226, --301,-321,-3867,-557,-57,-2,-104,-74,-882,-1783,-2454], -[0,-74,-873,-6936,-4073,-6935,-4140,-3867,-6934,-6173,-3361,-4139,-6933,-2,-6932,-414,-95,-45,-129,-102], +[0,-262,-4066,-350,-351,-3561,-5295,-16052,-3136,-4647,-16053,-4837,-7438,-4838,-5593,-708,-740,-767,-1415,-1419,-1449, +-1534,-6518,-1942,-2127,-2140,-2142,-2214,-2645,-2318,-2375,-2410,-2466,-2476,-2483,-2486,-8160], +[0,-2476,-3944,-16054,-16055,-16056,-15150,-2645,-16057,-2939,-7580,-15151,-16058,-2410,-16059,-2363,-3162,-3214,-3095, +-3160], [1,3,11001], [0,94,0,11002,4], -[0,-234,-108,-932,-6,-95,-282,-333,-102,-1901,-1365,-281], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-15071,-13615,-6527], [1,3,11004], [0,11005,11006,261,6], -[0,-6931,-1245,-1452,-323,-38,-975,-311], -[0,-427,-1757,-1099,-2976,-2296,-2057,-513,-80,-3423,-728,-2362,-2656,-4209,-2539,-925,-119,-223,-472,-383,-230,-2082, --215,-1024,-1595,-89,-501,-824,-922,-4206,-4207,-3338,-297,-1518,-2083,-646,-149,-607,-606,-4208,-164,-561,-902,-2977, --3029,-1914,-1997,-14,-894,-77,-1457,-748,-2978,-175,-2746,-2341,-205], +[0,-16060,-4787,-3751,-1864,-1889,-2923,-2654], +[0,-25,-3195,-3180,-14337,-13397,-5322,-4066,-350,-7151,-4785,-10046,-4371,-14331,-6410,-653,-679,-729,-742,-754,-769, +-5042,-865,-866,-14335,-928,-929,-989,-990,-14338,-14333,-7897,-1588,-1651,-5036,-1699,-1805,-1839,-1852,-14332,-1863, +-1906,-1907,-14336,-12601,-11751,-7160,-2127,-2134,-2162,-3572,-2213,-14334,-2334,-3027,-11071,-2531], [1,3,11008], [0,0,0,11009,4], -[0,-234,-108,-282,-333,-4607,-659,-95,-60,-2803,-4605,-4604,-5398,-6930,-6929,-123], +[0,-2034,-3159,-5270,-5271,-11511,-770,-3162,-510,-2191,-11524,-11526,-7103,-16061,-16062,-2446], [1,3,11011], [0,0,37,288,9], [1,3,11013], [0,11014,11015,11016,9], -[0,-2740,-6928,-6927,-3829,-1268,-3084,-6926,-5634,-6925,-6924,-6923,-6922,-3577,-6921,-2425,-1088,-6920,-6919,-6918, --6917,-6916,-6915,-6914,-6913,-6912,-6911,-6910,-6909,-6908,-6907,-6906,-6905,-6904,-6903,-6902,-6901,-6900,-6899,-6898, --6897,-6896,-6895,-6894,-6893,-6892,-6891,-1381,-6890,-6889,-6888,-6887,-6886,-6885,-6884,-6883,-6882,-6548,-6881,-6880, --6879,-2948,-6878,-6877, --6876,-6875,-6874,-6873,-4128,-1034,-3581,-6872,-2989,-352,-6871,-574,-36,-6870,-207,-4072,-6869,-6227,-1017,-2971,-1331, --6275,-6868,-708,-1530,-1156,-4887,-6867,-4540,-1004,-1691,-6866,-6865,-2860,-6864,-6863,-6862,-468,-6861,-6394,-6860, --228,-3105,-6859,-6858,-646,-241,-6384,-6857,-6856,-4571,-2832,-6855,-6854,-6853,-6852,-2946,-4487,-6851,-6850,-6849, --2317,-6362,-605, --1307,-6848,-1505,-6847,-5113,-6846,-3916,-1804,-6,-6845,-35,-2632,-6844,-6344,-6843,-5486,-6842,-3908,-6841,-559,-6840, --6839,-6838,-274,-521,-2810,-6837,-6836,-16,-689,-863,-6835,-3893,-3889,-6834,-2165,-1790,-6833,-6832,-1101,-6831,-2178, --6830,-123,-6829,-205,-259,-258,-1475,-6828], -[0,-49,-4201,-6827,-6826,-6825,-6824,-6823,-6822,-4709,-6821,-357,-5657,-2126,-155,-122,-317,-6820,-6819,-162,-185,-6818, --633,-142,-1278,-5,-6817,-6816,-6815,-2945,-47,-87,-6814,-137,-4175,-3013,-677,-454,-1047,-103,-2607,-1179,-1346,-26, --2895,-6813,-215,-1024,-6812,-6811,-6810,-1,-6809,-6808,-40,-28,-1324,-9,-4620,-6807,-18,-23,-1137,-6806, --261,-188,-610,-4484,-564,-4,-147,-864,-6805,-601,-4619,-120,-6804,-179,-153,-210,-2,-133,-340,-104,-30], -[0,-52,-4075,-4074,-399,-6803,-2946,-6802,-6801,-6800,-6799], +[0,-3165,-16063,-16064,-3168,-3698,-11418,-16065,-5772,-16066,-16067,-16068,-16069,-5702,-16070,-8859,-3778,-16071,-16072, +-16073,-16074,-16075,-16076,-16077,-16078,-16079,-16080,-16081,-16082,-16083,-16084,-16085,-16086,-16087,-16088,-16089, +-16090,-16091,-16092,-16093,-16094,-16095,-16096,-16097,-16098,-16099,-16100,-8863,-16101,-16102,-16103,-16104,-16105, +-16106,-16107,-16108,-16109,-402,-16110,-16111,-16112,-15748,-16113,-16114, +-16115,-16116,-16117,-16118,-15257,-485,-5674,-16119,-13751,-743,-16120,-809,-812,-16121,-834,-16122,-16123,-2761,-1025, +-14636,-1043,-2573,-16124,-1125,-1329,-1349,-9775,-16125,-11895,-1359,-5193,-16126,-16127,-1495,-16128,-16129,-16130, +-1549,-16131,-1593,-16132,-1610,-10749,-16133,-16134,-1699,-2634,-1712,-16135,-16136,-11750,-1782,-16137,-16138,-16139, +-16140,-16010,-12273,-16141,-16142,-16143,-11926,-1855,-1857, +-1867,-16144,-1885,-16145,-8504,-16146,-1984,-1994,-2006,-16147,-2019,-4988,-16148,-2025,-16149,-6620,-16150,-2042, +-16151,-2044,-16152,-16153,-16154,-2093,-2095,-2096,-16155,-16156,-2177,-2193,-4245,-16157,-2272,-2292,-16158,-2592, +-2314,-16159,-16160,-2594,-16161,-2436,-16162,-2446,-16163,-2531,-2548,-2564,-2650,-16164], +[0,-86,-14379,-16165,-16166,-16167,-16168,-16169,-16170,-10811,-16171,-3983,-5681,-3842,-407,-409,-410,-16172,-16173, +-3198,-3048,-16174,-4049,-3044,-3164,-3037,-16175,-16176,-16177,-16178,-3040,-3052,-16179,-3199,-14748,-12969,-4231, +-4204,-8200,-3664,-5329,-721,-734,-767,-772,-16180,-865,-866,-16181,-16182,-16183,-932,-16184,-16185,-1077,-1107,-1278, +-1344,-11415,-16186,-1534,-1548,-1605,-16187, +-1640,-1729,-1733,-12282,-1826,-1942,-2094,-4242,-16188,-2098,-11417,-2174,-16189,-2281,-2392,-2400,-2410,-2427,-2429, +-2466,-2469], +[0,-3161,-16011,-16017,-1713,-16190,-16010,-16191,-16192,-16193,-16194], [1,3,11018], [0,291,135,63,5], [1,3,11020], [0,11021,131,11022,5], -[0,-1381,-257,-58,-41,-1691,-284,-258], -[0,-6798,-6797,-6796,-6795,-6794,-42,-3102], +[0,-8863,-3617,-719,-1004,-5193,-2426,-2564], +[0,-16195,-16196,-16197,-16198,-16199,-856,-10817], [1,3,11024], [0,11025,11026,11027,4], -[0,-2640,-4291], -[0,-748,-606,-6,-285,-16,-30,-2297,-35,-687,-2705,-515,-362,-164,-311,-2,-5,-137,-4203,-634,-1705,-6793,-1469], -[0,-746,-5802,-30,-61,-75,-129,-127,-4284,-6,-74,-220,-1713], +[0,-4890,-13377], +[0,-2213,-1852,-2006,-2218,-2177,-2469,-13380,-2019,-2369,-3654,-3517,-1639,-1863,-2654,-2410,-3037,-3199,-14373,-4036, +-5087,-16200,-2970], +[0,-2257,-4895,-2469,-3634,-4004,-3095,-3098,-13422,-2006,-2476,-2299,-4902], [1,3,11029], [0,11030,11031,11032,5], -[0,-422,-6792,-6791], -[0,-17,-29,-5,-92], -[0,-588,-5114,-75,-61,-6790,-3557], +[0,-997,-16201,-16202], +[0,-2501,-3136,-3037,-2503], +[0,-4123,-8503,-4004,-3634,-16203,-5858], [1,3,11034], [0,0,11035,11036,4], -[0,-182,-169,-98,-328,-1187,-447,-291,-6789,-13,-6788,-4307,-298,-36,-1342,-1,-84,-67,-131,-919,-277,-40,-1532,-346,-78, --703,-139,-212,-6787,-3353,-1145,-189,-418,-6786,-2862,-909,-812,-526,-3,-288,-645,-7,-2975,-1233,-120,-112,-2970,-438, --17,-170], -[0,-636,-2419,-6785,-1366,-1198,-414,-2294,-3076,-95], +[0,-526,-527,-534,-559,-562,-566,-567,-16204,-664,-16205,-13261,-796,-812,-829,-932,-943,-968,-974,-1017,-1041,-1077, +-1322,-1331,-1471,-1474,-1475,-1479,-16206,-7707,-1480,-1482,-1483,-16207,-1484,-1487,-1488,-1492,-1654,-1753,-1860, +-2125,-14439,-5471,-2174,-2416,-14648,-2437,-2501,-2505], +[0,-3576,-8897,-16208,-12613,-12449,-2363,-13616,-11594,-3162], [1,3,11038], [0,11039,11040,11041,5], -[0,-6784,-6783], -[0,-47,-87,-2688,-22,-19,-289,-1,-12,-25,-64,-6782,-6781,-4,-14,-301,-33,-44,-2], -[0,-6780,-6779,-6778,-6,-282,-333,-95,-6777], +[0,-16209,-16210], +[0,-3040,-3052,-3804,-427,-428,-726,-932,-940,-967,-969,-16211,-16212,-1942,-2127,-2142,-2379,-2387,-2410], +[0,-16213,-16214,-16215,-2006,-5270,-5271,-3162,-16216], [1,3,11043], [0,0,11044,11045,6], -[0,-6,-234,-1908,-6776], -[0,-234,-5037,-282,-333,-6775,-6774,-6773,-6772,-52,-6,-6771,-484,-370,-508,-6770,-2133,-959,-271,-4953], +[0,-2006,-2034,-12566,-16217], +[0,-2034,-9021,-5270,-5271,-16218,-16219,-16220,-16221,-3161,-2006,-16222,-5269,-3209,-5922,-16223,-3682,-3970,-3110, +-9437], [1,3,11047], [0,11048,0,11049,6], -[0,-6170,-3845], -[0,-224,-24,-73], +[0,-2954,-2934], +[0,-712,-775,-3215], [1,3,11051], [0,0,0,11052,9], -[0,-135,-24], +[0,-714,-775], [1,3,11054], [0,11055,11056,11057,6], -[0,-4071,-11,-427,-1095,-140,-6769,-1381,-6768,-305,-58,-403,-534,-326,-207,-118,-229,-40,-4467,-759,-495,-810,-188,-149, --324,-38,-560,-397,-1300,-6767,-2781,-796,-795,-1285,-258,-3261], -[0,-729,-185,-788,-6766,-7,-171,-210,-2], -[0,-127,-102,-1292,-4076,-3841], +[0,-16224,-23,-25,-3412,-42,-16225,-8863,-16226,-635,-719,-755,-815,-823,-834,-999,-1026,-1077,-12417,-1343,-1496,-1683, +-1729,-1805,-1816,-1889,-1931,-1966,-2066,-16227,-2317,-2378,-2383,-2450,-2564,-8882], +[0,-4776,-3048,-3735,-16228,-2125,-2391,-2400,-2410], +[0,-3098,-3160,-2316,-16007,-2955], [1,3,11059], [0,0,0,11060,6], -[0,-6,-74,-2381,-1375,-6765,-6764], +[0,-2006,-2476,-9608,-9614,-16229,-16230], [1,3,11062], [0,0,11063,11064,6], -[0,-29,-5,-22,-19,-1,-2236,-12,-10,-25,-67,-762,-150,-28,-8,-4,-7,-14,-895,-4371,-301,-57,-33,-124,-794,-3405,-2], -[0,-6763,-3266,-6762,-6761,-6760,-6759,-6758,-6757,-683,-6756,-141,-91,-53,-46], +[0,-3136,-3037,-427,-428,-932,-936,-940,-958,-967,-968,-972,-978,-1107,-1415,-1942,-2125,-2127,-2130,-12925,-2142,-2375, +-2379,-2402,-2405,-7322,-2410], +[0,-16231,-8785,-16232,-16233,-16234,-16235,-16236,-16237,-3173,-16238,-3966,-4865,-3100,-3445], [1,3,11066], [0,0,0,11067,6], -[0,-6755,-546,-6754,-6753,-6752,-6751,-4070,-6750,-6749,-6748,-6747,-6746,-6745,-6744,-3036,-6743,-6742,-106,-650,-6741, --4070,-1682,-53,-45,-2], +[0,-16239,-4053,-16240,-16241,-16242,-16243,-16244,-16245,-16246,-16247,-16248,-16249,-16250,-16251,-12512,-16252,-16253, +-4055,-1456,-16254,-16244,-5495,-3100,-3214,-2410], [1,3,11069], [0,11070,0,73,4], -[0,-3839,-3565,-2750,-1228,-928,-201,-6740,-116,-6739,-4151,-657,-498,-28,-3220,-3250,-2040,-23,-647,-236,-752,-3134, --1305,-562,-1802,-641,-2185,-16,-749,-461,-5635,-210,-123,-219,-977], +[0,-2984,-5766,-2860,-5758,-501,-523,-16255,-615,-16256,-14855,-1069,-1100,-1107,-9362,-8985,-5880,-1548,-1574,-1666, +-1705,-10270,-1875,-1878,-2060,-2115,-2160,-2177,-2194,-2297,-5764,-2400,-2446,-2518,-2555], [1,3,11072], [0,11073,11074,11075,4], -[0,-4135,-4134], -[0,-5,-4133,-4132,-4131,-7,-371,-2,-30], -[0,-2961,-1041,-99,-46,-1157,-1607], +[0,-15224,-15226], +[0,-3037,-15229,-15230,-15231,-2125,-2892,-2410,-2469], +[0,-15227,-9668,-3690,-3445,-1348,-9780], [1,3,11077], [0,11078,11079,11080,4], -[0,-915,-606,-3848,-1411,-2158,-4538,-4485,-1635,-2534,-1244,-2221,-6738,-2425,-4483,-5069,-6737,-6736], -[0,-171,-30,-1680,-1660,-2,-5,-5162,-6735,-310,-2331], -[0,-3918,-842,-6734,-1044,-684,-1398,-61], +[0,-1313,-1852,-2922,-6570,-2924,-11918,-12278,-7772,-6475,-4835,-1341,-16257,-8859,-12284,-8860,-16258,-16259], +[0,-2391,-2469,-5672,-6568,-2410,-3037,-8321,-16260,-2832,-11347], +[0,-1954,-10425,-16261,-8427,-3113,-7646,-3634], [1,3,11082], [0,11083,11084,11085,6], -[0,-6733,-6732], -[0,-6731,-26,-1,-344,-6730,-15,-180,-6729,-39], -[0,-1227,-2045,-2037,-1902,-1073,-6728,-6727,-3546,-1070,-3547,-6726,-52], +[0,-16262,-16263], +[0,-16264,-767,-932,-1641,-16265,-1788,-1972,-16266,-2322], +[0,-5817,-5819,-5937,-13192,-5801,-16267,-16268,-5951,-5940,-5943,-16269,-3161], [1,3,11087], [0,11088,11089,7,4], -[0,-6725], -[0,-1172,-2,-5270], +[0,-16270], +[0,-879,-2410,-7768], [1,3,11091], [0,11092,11093,11094,10], -[0,-6,-35,-6724], -[0,-694,-7,-196,-211,-121,-2,-11,-5,-47,-98,-87,-972,-4029], -[0,-3885,-967,-6723,-6,-412,-31,-789,-3000,-2318,-862], +[0,-2006,-2019,-16271], +[0,-1992,-2125,-2388,-2376,-1967,-2410,-23,-3037,-3040,-534,-3052,-3140,-520], +[0,-2356,-3488,-16272,-2006,-3496,-3264,-3494,-13460,-11889,-4258], [1,3,11096], [0,0,11097,11098,5], -[0,-4498,-48,-2664,-6722,-6721,-3688,-6720,-155,-122,-317,-1754,-735,-874,-5,-47,-87,-6719,-2967,-475,-304,-384,-764,-1, --190,-3851,-55,-9,-79,-18,-221,-228,-38,-4,-3258,-6,-6718,-35,-1100,-6717,-559,-226,-640,-6716,-689,-748,-2781,-557,-175, --6715,-33,-153,-2,-83,-3074,-104,-847,-4101,-30,-6714,-1475], -[0,-6,-516,-1375,-3491,-6713,-1256,-4428,-4427,-4426,-734,-1718,-2405], +[0,-12182,-190,-4225,-16273,-16274,-4836,-16275,-407,-409,-410,-3269,-3732,-3661,-3037,-3040,-3052,-16276,-14827,-651, +-703,-724,-786,-932,-970,-2914,-1110,-1344,-1449,-1534,-1600,-1610,-1889,-1942,-8918,-2006,-16277,-2019,-2965,-16278, +-2044,-2140,-2144,-16279,-2193,-2213,-2317,-2318,-2334,-16280,-2379,-2392,-2410,-2411,-11708,-2466,-6859,-15519,-2469, +-16281,-2650], +[0,-2006,-3476,-9614,-6409,-16282,-4108,-12682,-12683,-12684,-4002,-4672,-9133], [1,3,11100], [0,11101,11102,11103,5], -[0,-728,-4453,-1581,-238,-472,-36,-1595,-229,-40,-1148,-297,-606,-164,-692,-14,-489], -[0,-6712,-6711,-513,-80,-231,-63,-1582,-5063,-6710,-3823,-162,-185,-2636,-6709,-5,-47,-87,-22,-19,-537,-949,-119,-89, --4311,-1,-64,-1435,-65,-2992,-6,-35,-7,-415,-1223,-220,-210,-2,-104,-6708,-30,-74], -[0,-716,-2623,-1373,-6707,-1690,-6706,-6705,-91,-6704], +[0,-4785,-12535,-462,-674,-742,-812,-14335,-1026,-1077,-1451,-1588,-1852,-1863,-2041,-2127,-2153], +[0,-16283,-16284,-4066,-350,-4062,-351,-365,-8894,-16285,-3202,-3198,-3048,-4963,-16286,-3037,-3040,-3052,-427,-428,-440, +-4837,-679,-928,-13212,-932,-969,-4981,-1771,-13593,-2006,-2019,-2125,-2132,-6483,-2299,-2400,-2410,-2466,-16287,-2469, +-2476], +[0,-12913,-5044,-10366,-16288,-5195,-16289,-16290,-4865,-16291], [1,3,11105], [0,11106,11107,7,5], -[0,-1175,-6703,-6702], -[0,-43,-6701,-153,-104,-79,-3,-327,-1,-14,-55,-4,-796,-6700,-793,-48,-2,-5,-1001,-69,-6699,-5363,-283,-6698,-231,-6697, --5362,-204,-1318,-12,-80,-19,-63,-22], +[0,-797,-16292,-16293], +[0,-652,-16294,-2392,-2466,-1449,-1654,-659,-932,-2127,-1110,-1942,-2378,-16295,-2468,-190,-2410,-3037,-1440,-3621,-16296, +-7273,-3244,-16297,-4062,-16298,-7274,-3266,-1602,-940,-350,-428,-351,-427], [1,3,11109], [0,11110,11111,11112,6], -[0,-1960,-1543,-759,-6696], -[0,-1244,-5,-6695,-915,-198,-156], -[0,-327,-4256,-6694,-6693,-1199,-3476,-1661,-281,-1704,-6692,-844,-6691,-6690,-1064,-256,-5774], +[0,-8612,-1063,-1343,-16299], +[0,-4835,-3037,-16300,-1313,-1722,-2359], +[0,-659,-13649,-16301,-16302,-11878,-6523,-6524,-6527,-5093,-16303,-7650,-16304,-16305,-6528,-3839,-5057], [1,3,11114], [0,11115,11116,11117,8], -[0,-4069], -[0,-211,-2,-17,-92,-6,-35,-47,-87], -[0,-6,-4069,-126,-625,-1202,-6689,-281,-412,-1053,-6688,-2037,-1070,-1421,-3272], +[0,-16306], +[0,-2376,-2410,-2501,-2503,-2006,-2019,-3040,-3052], +[0,-2006,-16306,-6656,-6999,-9800,-16307,-6527,-3496,-7764,-16308,-5937,-5940,-5800,-8624], [1,3,11119], [0,11120,11121,11122,5], -[0,-4204,-3004,-1079], -[0,-30,-398], -[0,-91,-398,-129,-1405,-75,-61], +[0,-14372,-13388,-5286], +[0,-2469,-1874], +[0,-4865,-1874,-3095,-7243,-4004,-3634], [1,3,11124], [0,11125,11126,11127,4], -[0,-836,-20,-119,-499,-1328,-708,-379,-470,-2211,-228,-157,-16,-1225], -[0,-6687,-2131,-137,-1903,-51,-327,-15,-2317,-4,-1122,-4610,-33,-81,-2,-34], -[0,-6686,-37,-6685,-42,-6684,-6683,-100,-1064,-157,-4662,-6682], +[0,-502,-668,-679,-1098,-1099,-1125,-1304,-1351,-1535,-1610,-1978,-2177,-5977], +[0,-16309,-3802,-3199,-13186,-519,-659,-1788,-11926,-1942,-1944,-11491,-2379,-2384,-2410,-2541], +[0,-16310,-687,-16311,-856,-16312,-16313,-1599,-6528,-1978,-11096,-16314], [1,3,11129], [0,11130,11131,278,5], -[0,-20,-96,-6681,-2753,-2944], -[0,-5,-6680], +[0,-668,-2550,-16315,-2823,-16316], +[0,-3037,-16317], [1,3,11133], [0,11134,91,11135,5], -[0,-16,-2753,-2944,-4068], -[0,-2953,-2952,-2951,-544,-61,-1090], +[0,-2177,-2823,-16316,-16318], +[0,-15627,-15629,-15630,-4864,-3634,-3636], [1,3,11137], [0,11138,11139,11140,4], -[0,-6679,-2944,-4068,-2753], -[0,-6167,-6678,-4098,-2046,-991,-840], -[0,-2953,-2952,-2951,-544,-61,-1090,-4543], +[0,-16319,-16316,-16318,-2823], +[0,-2973,-16320,-15626,-5769,-1870,-11468], +[0,-15627,-15629,-15630,-4864,-3634,-3636,-11890], [1,3,11142], [0,11143,11144,11145,4], -[0,-58,-3864,-6212,-6677], -[0,-4099,-6676,-6675,-6163], -[0,-1364,-37,-114,-42,-1363,-1362], +[0,-719,-2683,-2822,-16321], +[0,-15624,-16322,-16323,-2983], +[0,-15279,-687,-3262,-856,-15280,-15281], [1,3,11147], [0,11148,0,11149,4], -[0,-4067], -[0,-1364,-1898,-6674,-6673,-42,-1363,-1362], +[0,-16324], +[0,-15279,-15625,-16325,-16326,-856,-15280,-15281], [1,3,11151], [0,94,11152,11153,8], -[0,-62,-3030,-861,-29,-142,-47,-2151,-22,-19,-1179,-1,-12,-25,-9,-8,-6672,-4,-6,-234,-1908,-373,-2], -[0,-234,-108,-282,-333,-6671,-6670,-95,-484,-129,-1067,-3428,-4194,-3085,-85], +[0,-3307,-12564,-4646,-3136,-3044,-3040,-3141,-427,-428,-721,-932,-940,-967,-1344,-1415,-16327,-1942,-2006,-2034,-12566, +-2091,-2410], +[0,-2034,-3159,-5270,-5271,-16328,-16329,-3162,-5269,-3095,-6107,-7067,-14498,-11378,-2319], [1,3,11155], [0,11156,11157,11158,10], -[0,-2182], -[0,-2945,-605], -[0,-842,-1066,-61,-1983,-2182], +[0,-2340], +[0,-16178,-1857], +[0,-10425,-6321,-3634,-7606,-2340], [1,3,11160], [0,11161,11162,7,6], -[0,-1757,-323,-5910], -[0,-3578,-4071,-6669,-6668,-4836,-2361,-5,-623,-1047,-1580,-1387,-6667,-89,-1,-6666,-527,-18,-297,-975,-14,-970,-371,-2, --6665,-4085,-104,-30,-17,-92,-2748], +[0,-3195,-1864,-4247], +[0,-5694,-16224,-16330,-16331,-10097,-10098,-3037,-8523,-8200,-483,-8349,-16332,-928,-932,-16333,-1431,-1534,-1588,-2923, +-2127,-3246,-2892,-2410,-16334,-15822,-2466,-2469,-2501,-2503,-2981], [1,3,11164], [0,72,0,11165,6], -[0,-1364,-1898,-6664,-42,-1363,-1362], +[0,-15279,-15625,-16335,-856,-15280,-15281], [1,3,11167], [0,11168,0,11169,10], -[0,-6663], -[0,-1364,-1898,-6662,-625,-42,-1363,-1362], +[0,-16336], +[0,-15279,-15625,-16337,-6999,-856,-15280,-15281], [1,3,11171], [0,11172,0,73,5], -[0,-2647,-23,-442,-3119], +[0,-4716,-1548,-1582,-10515], [1,3,11174], [0,0,11175,11176,5], -[0,-366,-48,-109,-103,-193,-1,-12,-4,-7,-894,-27,-175,-81,-44,-124,-794,-83,-104,-4066,-4065,-4064,-6661,-793,-30], -[0,-6660,-585,-45,-2,-4063,-6659,-1059,-4062,-95], +[0,-50,-190,-3035,-3664,-469,-932,-940,-1942,-2125,-2134,-2210,-2334,-2384,-2387,-2402,-2405,-2411,-2466,-16338,-16339, +-16340,-16341,-2468,-2469], +[0,-16342,-5177,-3214,-2410,-16343,-16344,-6899,-16345,-3162], [1,3,11178], [0,0,11179,11180,5], -[0,-366,-5,-22,-19,-1640,-1,-12,-421,-3,-4,-4061,-894,-6658,-27,-124,-794,-2,-104,-4066,-4065,-4064], -[0,-585,-4063,-4944,-679,-1059,-4062,-327,-1215,-111,-95], +[0,-50,-3037,-427,-428,-7438,-932,-940,-1003,-1654,-1942,-16346,-2134,-16347,-2210,-2402,-2405,-2410,-2466,-16338,-16339, +-16340], +[0,-5177,-16343,-9475,-3999,-6899,-16345,-659,-7085,-3578,-3162], [1,3,11182], [0,11183,0,11184,4], -[0,-3884], -[0,-1254,-45,-6657,-2157,-4,-2], +[0,-2357], +[0,-4144,-3214,-16348,-2987,-1942,-2410], [1,3,11186], [0,0,0,11187,4], -[0,-685,-6656,-1525,-4124,-1931,-158,-1313,-1676,-1987,-3924,-16,-1632,-2133,-6655,-6654,-4577,-3708,-686], +[0,-3015,-16349,-1520,-15360,-10440,-1764,-1787,-5895,-7442,-1882,-2177,-7969,-3682,-16350,-16351,-11713,-4304,-2552], [1,3,11189], [0,0,11190,7,4], -[0,-6653,-6652,-930,-6651,-6650,-80,-231,-63,-1998,-957,-4624,-6649,-6648,-4570,-58,-1341,-6647,-1462,-164,-640,-6646, --6645], +[0,-16352,-16353,-280,-16354,-16355,-350,-4062,-351,-7155,-4007,-11348,-16356,-16357,-11752,-719,-831,-16358,-3459,-1863, +-2144,-16359,-16360], [1,3,11192], [0,11193,0,73,11], -[0,-3840,-2750,-1228,-3262,-5636,-201,-116,-168,-41,-1916,-2221,-23,-442,-2204,-700,-563,-1793,-210], +[0,-2959,-2860,-5758,-8864,-5761,-523,-615,-617,-1004,-11676,-1341,-1548,-1582,-1635,-1676,-1851,-2185,-2400], [1,3,11195], [0,291,135,63,11], [1,3,11197], [0,11198,135,63,11], -[0,-3747,-2277,-3844,-1767], +[0,-3947,-231,-2944,-2900], [1,3,11200], [0,11201,11202,11203,10], -[0,-258,-1653,-5522,-6644,-6643,-6642,-3889,-6641,-6640,-4072,-6639,-6638,-6637,-6636,-6635,-1240,-6634,-3563,-2583], -[0,-810,-2945,-3784,-2,-5,-6633,-257,-6632,-2425,-6631,-4482,-6630], -[0,-6629,-6628,-4149,-6627,-6626,-46,-6625,-6624,-6623,-4544,-6622,-6621,-6620,-6619,-6618], +[0,-2564,-6860,-6415,-16361,-16362,-16363,-2292,-16364,-16365,-16122,-16366,-16367,-16368,-16369,-16370,-5038,-16371, +-5779,-5782], +[0,-1683,-16178,-3631,-2410,-3037,-16372,-3617,-16373,-8859,-16374,-12285,-16375], +[0,-16376,-16377,-14981,-16378,-16379,-3445,-16380,-16381,-16382,-11877,-16383,-16384,-16385,-16386,-16387], [1,3,11205], [0,11206,11207,11208,10], -[0,-349,-164,-1305], -[0,-2333,-47,-237,-6368,-1908,-2], -[0,-234,-282,-333,-2304,-722,-4439,-108,-932,-6,-95,-102,-741,-961,-1203,-1944,-1086], +[0,-1047,-1863,-1875], +[0,-11337,-3040,-825,-1802,-12566,-2410], +[0,-2034,-5270,-5271,-12578,-7084,-12579,-3159,-12567,-2006,-3162,-3160,-3167,-3843,-9472,-9474,-3827], [1,3,11210], [0,11211,0,11212,8], -[0,-70,-344,-3864,-4067], -[0,-1364,-1898,-1427,-42,-1363,-1362], +[0,-2460,-1641,-2683,-16324], +[0,-15279,-15625,-5398,-856,-15280,-15281], [1,3,11214], [0,0,11215,11216,9], -[0,-6617,-4100,-50,-11,-971,-173,-21,-6616,-6615,-203,-232,-94,-86,-4839,-2363,-4142,-6614,-3054,-289,-215,-1,-500,-10, --2375,-420,-1598,-4235,-9,-8,-5763,-4429,-1435,-2634,-1306,-6613,-4,-441,-157,-4061,-14,-6612,-894,-226,-640,-801,-2], -[0,-2130,-2683,-2129,-2128,-6611,-6610], +[0,-16388,-15583,-21,-23,-3203,-38,-40,-16389,-16390,-3326,-3561,-528,-533,-10056,-10022,-15127,-16391,-11899,-726,-865, +-932,-956,-958,-9724,-1059,-11942,-13866,-1344,-1415,-5123,-12680,-4981,-4982,-1868,-16392,-1942,-1952,-1978,-16346, +-2127,-16393,-2134,-2140,-2144,-2184,-2410], +[0,-3821,-3822,-3823,-3825,-16394,-16395], [1,3,11218], [0,0,11219,11220,9], -[0,-204,-69,-5,-1031,-13,-3,-288,-14,-1109,-2], -[0,-6609,-6159,-6608,-5402,-485,-6607,-4144,-4073,-4137,-1059,-1369,-6606,-6605,-2305,-6604,-2494,-3106,-6603,-6602,-6601], +[0,-3266,-3621,-3037,-632,-664,-1654,-1753,-2127,-2344,-2410], +[0,-16396,-2998,-16397,-7049,-5176,-16398,-15100,-16055,-15213,-6899,-11853,-16399,-16400,-12543,-16401,-7198,-10724, +-16402,-16403,-16404], [1,3,11222], [0,0,70,11223,9], -[0,-3005,-6600], +[0,-13351,-16405], [1,3,11225], [0,11226,11227,11228,9], -[0,-6599,-6598,-6597,-6596,-6595], -[0,-576,-1,-6594,-6593,-375,-179,-558,-175], -[0,-414,-636,-6592,-1198,-1366,-1365,-4222,-91], +[0,-16406,-16407,-16408,-16409,-16410], +[0,-683,-932,-16411,-16412,-1989,-2281,-2282,-2334], +[0,-2363,-3576,-16413,-12449,-12613,-13615,-14054,-4865], [1,3,11230], [0,0,11231,11232,9], -[0,-13,-151,-32,-654,-4987,-820,-819,-314,-653,-6591,-3], -[0,-588,-4652,-4651,-236,-907,-956], +[0,-664,-824,-1168,-1187,-9293,-1208,-1224,-1243,-1262,-16414,-1654], +[0,-4123,-11154,-11158,-1666,-1667,-4121], [1,3,11234], [0,0,0,11235,9], -[0,-6158,-3420,-631,-1925,-6590,-3284,-2138,-5096,-73], +[0,-3003,-7184,-5493,-11151,-16415,-8451,-3579,-8590,-3215], [0,25,9], [1,3,11238], [0,11239,0,7,9], -[0,-1881], +[0,-637], [1,3,11241], [0,0,11242,11243,9], -[0,-1332,-39], -[0,-6155,-4783,-2348,-6589,-4532], +[0,-1032,-2322], +[0,-3006,-10504,-10684,-16416,-11972], [1,3,11245], [0,0,11246,11247,9], -[0,-3,-421,-3446,-6588,-4060,-808,-60], -[0,-1673,-808,-4060,-3446], +[0,-1654,-1003,-6851,-16417,-16418,-1818,-510], +[0,-6106,-1818,-16418,-6851], [1,3,11249], [0,0,0,11250,9], -[0,-6587,-2979], +[0,-16419,-14311], [1,3,11252], [0,11253,0,7,9], -[0,-522,-4712,-96,-552,-566,-247,-1029,-5397,-135,-978], +[0,-1980,-10802,-2550,-2520,-1691,-2424,-693,-7109,-714,-2525], [1,3,11255], [0,11256,11257,11258,9], -[0,-121,-6586], -[0,-50,-11,-306,-21,-136,-178,-927,-56,-445,-1022,-1,-6585,-2462,-265,-64,-79,-3,-15,-6,-35,-2956,-6584], -[0,-256,-234,-6154,-6583,-1374,-6], +[0,-1967,-16420], +[0,-21,-23,-36,-40,-41,-43,-509,-756,-915,-916,-932,-16421,-7894,-964,-969,-1449,-1654,-1788,-2006,-2019,-15571,-16422], +[0,-3839,-2034,-3010,-16423,-9682,-2006], [1,3,11260], [0,0,11261,7,9], -[0,-11,-21,-80,-3538,-63,-278,-833,-59,-378,-78,-910,-139,-612,-400,-2140,-702,-157,-14,-273,-6582,-2420,-6581,-1956,-226, --744], +[0,-23,-40,-350,-5995,-351,-535,-571,-633,-1413,-1471,-1472,-1475,-1476,-1481,-3569,-1491,-1978,-2127,-2128,-16424,-8895, +-16425,-8896,-2140,-2491], [1,3,11263], [0,0,11264,7,9], -[0,-7,-72,-6580,-6579], +[0,-2125,-1650,-16426,-16427], [1,3,11266], [0,0,11267,11268,9], -[0,-50,-11,-21,-94,-765,-1,-191,-12,-10,-25,-8,-4], -[0,-452,-1207,-475,-6578,-73,-6577,-773,-5550,-1964,-3045,-450,-761,-126,-1206,-202,-452,-1413,-637] +[0,-21,-23,-40,-528,-557,-932,-934,-940,-958,-967,-1415,-1942], +[0,-5845,-8799,-651,-16428,-3215,-16429,-7304,-6241,-8574,-12248,-6582,-1044,-6656,-8800,-3590,-5845,-6473,-3240] ] diff --git a/packages/flatpack-json/src/CompactStorage.mts b/packages/flatpack-json/src/CompactStorage.mts new file mode 100644 index 000000000000..bcc45eb3d501 --- /dev/null +++ b/packages/flatpack-json/src/CompactStorage.mts @@ -0,0 +1,13 @@ +import type { Flatpacked, FlatpackOptions, Serializable } from './types.mjs'; + +export interface CompactStorageApi { + toJSON(json: V): Flatpacked; +} + +export abstract class CompactStorage implements CompactStorageApi { + readonly options?: FlatpackOptions | undefined; + constructor(options?: FlatpackOptions | undefined) { + this.options = options; + } + abstract toJSON(json: V): Flatpacked; +} diff --git a/packages/flatpack-json/src/Trie.mts b/packages/flatpack-json/src/Trie.mts index 3105b619c560..7fc7a5c7b158 100644 --- a/packages/flatpack-json/src/Trie.mts +++ b/packages/flatpack-json/src/Trie.mts @@ -1,7 +1,7 @@ export class Trie { root: RootNode = { d: undefined, c: new Map() }; - add(key: string | Iterable, data: T): void { + add(key: string | Iterable, data: T): TrieNode { let node: TrieNode = this.root; for (const k of key) { let c = node.c; @@ -14,9 +14,19 @@ export class Trie { } node = n; } + return node; } find(key: string | Iterable): { data: T | undefined; found: string } | undefined { + const foundNode = this.findNode(key); + if (!foundNode) { + return undefined; + } + const { node, found } = foundNode; + return { data: node.d, found }; + } + + findNode(key: string | Iterable): FoundNode | undefined { let node: TrieNode = this.root; let found = ''; for (const k of key) { @@ -31,9 +41,26 @@ export class Trie { found += k; node = n; } - return { data: node.d, found }; + + return { node, found }; + } + + *walk(prefix = ''): Iterable> { + const found = this.findNode(prefix); + if (found?.found !== prefix) return; + yield* walkTrie(found.node, found.found); } } + +export function* walkTrie(node: TrieNode, prefix = ''): Iterable> { + yield { node, found: prefix }; + if (node.c) { + for (const [k, n] of node.c) { + yield* walkTrie(n, prefix + k); + } + } +} + type ChildMap = Map>; interface TrieNode { d?: T | undefined; @@ -42,3 +69,8 @@ interface TrieNode { interface RootNode extends TrieNode { d: undefined; } + +interface FoundNode { + node: TrieNode; + found: string; +} diff --git a/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap b/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap index a5df792e3e12..c722b864f2d4 100644 --- a/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap +++ b/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap @@ -1621,13 +1621,13 @@ exports[`dehydrate > dehydrate useStringTable /[\\p{L}\\p{M}]+/gu undefined > op "Flatpack JSON v2", [ 128, - "gu", "[\\p{L}\\p{M}]+", + "gu", ], [ 6, - -2, -1, + -2, ], ] `; @@ -1695,21 +1695,21 @@ exports[`dehydrate > dehydrate useStringTable [ 'pineapple', 'apple', 'grape', ' "Flatpack JSON v2", [ 128, - "apple", - "banana", "pineapple", + "apple", "grape", + "banana", ], [ 0, - -3, -1, + -2, + -3, -4, -2, - -1, + -4, -2, -1, - -3, ], ] `; @@ -1743,9 +1743,9 @@ exports[`dehydrate > dehydrate useStringTable [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p "Flatpack JSON v2", [ 128, + "[\\p{L}\\p{M}]+", "gu", "[\\p{Lu}\\p{M}]+", - "[\\p{L}\\p{M}]+", ], [ 0, @@ -1755,13 +1755,13 @@ exports[`dehydrate > dehydrate useStringTable [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p ], [ 6, - -3, -1, + -2, ], [ 6, + -3, -2, - -1, ], ] `; @@ -1799,8 +1799,8 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'a', b: "Flatpack JSON v2", [ 128, - "b", "a", + "b", ], [ 0, @@ -1816,13 +1816,13 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'a', b: ], [ 0, - -2, -1, + -2, ], [ 0, - -2, -1, + -2, ], [ 1, @@ -1831,13 +1831,13 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'a', b: ], [ 0, - -2, -1, + -2, ], [ 0, - -2, -1, + -2, ], [ 1, @@ -1846,13 +1846,13 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'a', b: ], [ 0, - -2, -1, + -2, ], [ 0, - -2, -1, + -2, ], [ 1, @@ -1861,13 +1861,13 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'a', b: ], [ 0, - -2, -1, + -2, ], [ 0, - -2, -1, + -2, ], ] `; @@ -1955,10 +1955,10 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'c', b: "Flatpack JSON v2", [ 128, - "d", - "c", - "b", "a", + "b", + "c", + "d", ], [ 0, @@ -1970,8 +1970,8 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'c', b: ], [ 0, - -4, - -3, + -1, + -2, ], [ 1, @@ -1980,8 +1980,8 @@ exports[`dehydrate > dehydrate useStringTable [ { a: 'a', b: 'b' }, { a: 'c', b: ], [ 0, - -2, - -1, + -3, + -4, ], [ 1, @@ -2101,9 +2101,9 @@ exports[`dehydrate > dehydrate useStringTable [ 1n, 'hello', /\\w+/g, {}, [], 'h "Flatpack JSON v2", [ 128, - "g", - "\\w+", "hello", + "\\w+", + "g", ], [ 0, @@ -2117,7 +2117,7 @@ exports[`dehydrate > dehydrate useStringTable [ 1n, 'hello', /\\w+/g, {}, [], 'h [ 1, 0, - -3, + -1, ], [ 1, @@ -2132,7 +2132,7 @@ exports[`dehydrate > dehydrate useStringTable [ 1n, 'hello', /\\w+/g, {}, [], 'h [ 6, -2, - -1, + -3, ], {}, [ @@ -2191,8 +2191,8 @@ exports[`dehydrate > dehydrate useStringTable [ 1n, 2n, 1n, 2n, 9007199254740991 "Flatpack JSON v2", [ 128, - "-9007199254740992", "9007199254740992", + "-9007199254740992", ], [ 0, @@ -2227,11 +2227,11 @@ exports[`dehydrate > dehydrate useStringTable [ 1n, 2n, 1n, 2n, 9007199254740991 -9007199254740991, [ 8, - -2, + -1, ], [ 8, - -1, + -2, ], ] `; @@ -2417,27 +2417,27 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' "Flatpack JSON v2", [ 128, - "pineapple", - "banana", - "apple", - "r", - "b", "a", - "rr", - "gu", - "[\\p{L}\\p{M}]+", - "d", - "c", - "values", - "ss", - "s", - "rValues", - "nnn", - "nn", - "n", - "mm", - "m", + "b", "cValues", + "m", + "mm", + "n", + "nn", + "nnn", + "r", + "rValues", + "s", + "ss", + "values", + "c", + "d", + "apple", + "banana", + "pineapple", + "[\\p{L}\\p{M}]+", + "gu", + "rr", ], [ 1, @@ -2446,13 +2446,13 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' ], [ 0, - -6, - -5, + -1, + -2, ], [ 6, - -9, - -8, + -19, + -20, ], [ 1, @@ -2466,8 +2466,8 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' ], [ 0, - -11, - -10, + -14, + -15, ], [ 0, @@ -2481,9 +2481,9 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' ], [ 0, - -3, - -2, - -1, + -16, + -17, + -18, ], [ 5, @@ -2501,19 +2501,19 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' ], [ 0, - -6, - -5, - -21, - -20, - -19, - -18, - -17, - -16, + -1, + -2, + -3, -4, - -15, - -14, - -13, + -5, + -6, + -7, + -8, + -9, + -10, + -11, -12, + -13, ], [ 0, @@ -2533,8 +2533,8 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' ], [ 0, - -4, - -7, + -9, + -21, ], [ 0, @@ -2543,9 +2543,9 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' ], [ 0, - -1, - -2, - -3, + -18, + -17, + -16, ], [ 1, @@ -2803,8 +2803,8 @@ exports[`dehydrate > dehydrate useStringTable { a: { b: 1 } } undefined > optimi "Flatpack JSON v2", [ 128, - "b", "a", + "b", ], [ 1, @@ -2813,7 +2813,7 @@ exports[`dehydrate > dehydrate useStringTable { a: { b: 1 } } undefined > optimi ], [ 0, - -2, + -1, ], [ 0, @@ -2826,7 +2826,7 @@ exports[`dehydrate > dehydrate useStringTable { a: { b: 1 } } undefined > optimi ], [ 0, - -1, + -2, ], [ 0, @@ -2927,14 +2927,14 @@ exports[`dehydrate > dehydrate useStringTable { fruit: [ 'apple', 'banana', 'app "Flatpack JSON v2", [ 128, + "fruit", + "joinFruit", + "sentence", "apple", "banana", - "There is a bit of fruit on the table. Some banana, apple, and pineapple.", - "apple-banana-apple-banana-apple-pineapple", "pineapple", - "sentence", - "joinFruit", - "fruit", + "apple-banana-apple-banana-apple-pineapple", + "There is a bit of fruit on the table. Some banana, apple, and pineapple.", ], [ 1, @@ -2943,24 +2943,24 @@ exports[`dehydrate > dehydrate useStringTable { fruit: [ 'apple', 'banana', 'app ], [ 0, - -8, - -7, - -6, + -1, + -2, + -3, ], [ 0, 5, - -4, - -3, + -7, + -8, ], [ 0, - -1, - -2, - -1, - -2, - -1, + -4, -5, + -4, + -5, + -4, + -6, ], ] `; @@ -3013,12 +3013,12 @@ exports[`dehydrate > dehydrate useStringTable { values: [ '', 'apple', 'banana', "Flatpack JSON v2", [ 128, - "pineapple", - "banana", + "set", + "values", "apple", + "banana", + "pineapple", "", - "values", - "set", ], [ 1, @@ -3027,8 +3027,8 @@ exports[`dehydrate > dehydrate useStringTable { values: [ '', 'apple', 'banana', ], [ 0, - -6, - -5, + -1, + -2, ], [ 0, @@ -3042,15 +3042,15 @@ exports[`dehydrate > dehydrate useStringTable { values: [ '', 'apple', 'banana', [ 0, -3, - -2, - -1, + -4, + -5, ], [ 0, - -4, + -6, -3, - -2, - -1, + -4, + -5, ], ] `; @@ -3107,11 +3107,11 @@ exports[`dehydrate > dehydrate useStringTable { values: [ 'apple', 'banana', 'pi "Flatpack JSON v2", [ 128, - "pineapple", - "banana", - "apple", - "values", "set", + "values", + "apple", + "banana", + "pineapple", ], [ 1, @@ -3121,13 +3121,13 @@ exports[`dehydrate > dehydrate useStringTable { values: [ 'apple', 'banana', 'pi [ 0, -3, - -2, - -1, + -4, + -5, ], [ 0, - -5, - -4, + -1, + -2, ], [ 0, @@ -3245,9 +3245,9 @@ exports[`dehydrate > dehydrate useStringTable Map{ 'apple' => 1, 'banana' => 2, "Flatpack JSON v2", [ 128, - "pineapple", - "banana", "apple", + "banana", + "pineapple", ], [ 5, @@ -3256,9 +3256,9 @@ exports[`dehydrate > dehydrate useStringTable Map{ 'apple' => 1, 'banana' => 2, ], [ 0, - -3, - -2, -1, + -2, + -3, ], [ 0, @@ -3309,9 +3309,9 @@ exports[`dehydrate > dehydrate useStringTable Set{ 'apple', 'banana', 'pineapple "Flatpack JSON v2", [ 128, - "pineapple", - "banana", "apple", + "banana", + "pineapple", ], [ 4, @@ -3319,9 +3319,9 @@ exports[`dehydrate > dehydrate useStringTable Set{ 'apple', 'banana', 'pineapple ], [ 0, - -3, - -2, -1, + -2, + -3, ], ] `; @@ -3353,9 +3353,9 @@ exports[`dehydrate > dehydrate useStringTable Set{ 'pineapple', 'apple', 'banana "Flatpack JSON v2", [ 128, - "banana", - "apple", "pineapple", + "apple", + "banana", ], [ 4, @@ -3363,9 +3363,9 @@ exports[`dehydrate > dehydrate useStringTable Set{ 'pineapple', 'apple', 'banana ], [ 0, - -3, - -2, -1, + -2, + -3, ], ] `; diff --git a/packages/flatpack-json/src/__snapshots__/storageV1.test.mts.snap b/packages/flatpack-json/src/__snapshots__/storageV1.test.mts.snap new file mode 100644 index 000000000000..8e8ff8c911a1 --- /dev/null +++ b/packages/flatpack-json/src/__snapshots__/storageV1.test.mts.snap @@ -0,0 +1,795 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`dehydrate > dehydrate 'string' undefined 1`] = ` +[ + "Flatpack JSON v1", + "string", +] +`; + +exports[`dehydrate > dehydrate /[\\p{L}\\p{M}]+/gu undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 6, + 2, + 3, + ], + "[\\p{L}\\p{M}]+", + "gu", +] +`; + +exports[`dehydrate > dehydrate [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ] undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 2, + 3, + 2, + 3, + 2, + 4, + ], + "apple", + "banana", + "pineapple", +] +`; + +exports[`dehydrate > dehydrate [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p{M}]+/gu, /[\\p{Lu}\\p{M}]+/gu ] undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 2, + 2, + 5, + ], + [ + 6, + 3, + 4, + ], + "[\\p{L}\\p{M}]+", + "gu", + [ + 6, + 6, + 4, + ], + "[\\p{Lu}\\p{M}]+", +] +`; + +exports[`dehydrate > dehydrate [ { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, …(1) ] { dedupe: false } 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 2, + 7, + 10, + 13, + ], + [ + 1, + 3, + 6, + ], + [ + 0, + 4, + 5, + ], + "a", + "b", + [ + 0, + 4, + 5, + ], + [ + 1, + 8, + 9, + ], + [ + 0, + 4, + 5, + ], + [ + 0, + 4, + 5, + ], + [ + 1, + 11, + 12, + ], + [ + 0, + 4, + 5, + ], + [ + 0, + 4, + 5, + ], + [ + 1, + 14, + 15, + ], + [ + 0, + 4, + 5, + ], + [ + 0, + 4, + 5, + ], +] +`; + +exports[`dehydrate > dehydrate [ { a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b', a: 'a' }, …(2) ] undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 2, + 6, + 2, + 3, + 7, + ], + [ + 1, + 3, + 3, + ], + [ + 0, + 4, + 5, + ], + "a", + "b", + [ + 1, + 3, + 7, + ], + [ + 0, + 8, + 9, + ], + "c", + "d", +] +`; + +exports[`dehydrate > dehydrate [ {}, {}, {} ] undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 2, + 2, + 2, + ], + {}, +] +`; + +exports[`dehydrate > dehydrate [ 1, 2 ] undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 2, + 3, + ], + 1, + 2, +] +`; + +exports[`dehydrate > dehydrate [ 1n, 'hello', /\\w+/g, {}, [], 'hello' ] undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 2, + 5, + 7, + 10, + 11, + 5, + ], + [ + 1, + 0, + 3, + ], + [ + 8, + 4, + ], + 1, + [ + 1, + 0, + 6, + ], + "hello", + [ + 6, + 8, + 9, + ], + "\\w+", + "g", + {}, + [ + 0, + ], +] +`; + +exports[`dehydrate > dehydrate [ 1n, 2n, 1n, 2n, 9007199254740991n, -9007199254740991n, …(2) ] undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 2, + 4, + 2, + 4, + 6, + 8, + 10, + 12, + ], + [ + 8, + 3, + ], + 1, + [ + 8, + 5, + ], + 2, + [ + 8, + 7, + ], + 9007199254740991, + [ + 8, + 9, + ], + -9007199254740991, + [ + 8, + 11, + ], + "9007199254740992", + [ + 8, + 14, + ], + "-", + [ + 2, + 13, + 11, + ], +] +`; + +exports[`dehydrate > dehydrate [ Array(3) ] undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + 2, + 2, + 3, + ], + [ + 7, + 1704067200000, + ], + [ + 7, + 1704153600000, + ], +] +`; + +exports[`dehydrate > dehydrate [] undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 0, + ], +] +`; + +exports[`dehydrate > dehydrate { a: [ 1 ] } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 2, + 4, + ], + [ + 0, + 3, + ], + "a", + [ + 0, + 5, + ], + [ + 0, + 6, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate { a: { a: 'a', b: 'b' }, b: { a: 'c', b: 'd' }, …(11) } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 2, + 16, + ], + [ + 0, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + ], + "a", + "b", + "cValues", + "m", + "mm", + "n", + "nn", + "nnn", + "r", + "rValues", + "s", + "ss", + "values", + [ + 0, + 17, + 19, + 23, + 27, + 27, + 28, + 28, + 28, + 29, + 36, + 37, + 37, + 23, + ], + [ + 1, + 18, + 18, + ], + [ + 0, + 3, + 4, + ], + [ + 1, + 18, + 20, + ], + [ + 0, + 21, + 22, + ], + "c", + "d", + [ + 0, + 24, + 25, + 26, + ], + "apple", + "banana", + "pineapple", + [ + 5, + 18, + 18, + ], + [ + 0, + 17, + 19, + 17, + 18, + 20, + 29, + 32, + ], + [ + 6, + 30, + 31, + ], + "[\\p{L}\\p{M}]+", + "gu", + [ + 1, + 33, + 35, + ], + [ + 0, + 11, + 34, + ], + "rr", + [ + 0, + 29, + 29, + ], + [ + 0, + 26, + 25, + 24, + ], + [ + 4, + 39, + ], + [ + 1, + 18, + 18, + ], + [ + 0, + 17, + 19, + 38, + 18, + 20, + 29, + 32, + ], +] +`; + +exports[`dehydrate > dehydrate { a: { a: 'a', b: 42 } } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 2, + 4, + ], + [ + 0, + 3, + ], + "a", + [ + 0, + 5, + ], + [ + 1, + 6, + 8, + ], + [ + 0, + 3, + 7, + ], + "b", + [ + 0, + 3, + 9, + ], + 42, +] +`; + +exports[`dehydrate > dehydrate { a: { b: 1 } } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 2, + 4, + ], + [ + 0, + 3, + ], + "a", + [ + 0, + 5, + ], + [ + 1, + 6, + 8, + ], + [ + 0, + 7, + ], + "b", + [ + 0, + 9, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate { a: 1 } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 2, + 4, + ], + [ + 0, + 3, + ], + "a", + [ + 0, + 5, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate { fruit: [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ], …(2) } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 2, + 6, + ], + [ + 0, + 3, + 4, + 5, + ], + "fruit", + "joinFruit", + "sentence", + [ + 0, + 7, + 13, + 14, + ], + [ + 0, + 8, + 9, + 8, + 9, + 8, + 10, + ], + "apple", + "banana", + "pineapple", + "-banana-apple-banana-apple-", + [ + 2, + 11, + 10, + ], + [ + 2, + 8, + 12, + ], + "There is a bit of fruit on the table. Some banana, apple, and pineapple.", +] +`; + +exports[`dehydrate > dehydrate { values: [ 'apple', 'banana', 'pineapple' ], …(1) } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 1, + 2, + 5, + ], + [ + 0, + 3, + 4, + ], + "set", + "values", + [ + 0, + 6, + 7, + ], + [ + 4, + 7, + ], + [ + 0, + 8, + 9, + 10, + ], + "apple", + "banana", + "pineapple", +] +`; + +exports[`dehydrate > dehydrate {} undefined 1`] = ` +[ + "Flatpack JSON v1", + {}, +] +`; + +exports[`dehydrate > dehydrate 1 undefined 1`] = ` +[ + "Flatpack JSON v1", + 1, +] +`; + +exports[`dehydrate > dehydrate 1.1 undefined 1`] = ` +[ + "Flatpack JSON v1", + 1.1, +] +`; + +exports[`dehydrate > dehydrate Map{ 'apple' => 1, 'banana' => 2, 'pineapple' => 3 } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 5, + 2, + 6, + ], + [ + 0, + 3, + 4, + 5, + ], + "apple", + "banana", + "pineapple", + [ + 0, + 7, + 8, + 9, + ], + 1, + 2, + 3, +] +`; + +exports[`dehydrate > dehydrate Set{ 'apple', 'banana', 'pineapple' } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 4, + 2, + ], + [ + 0, + 3, + 4, + 5, + ], + "apple", + "banana", + "pineapple", +] +`; + +exports[`dehydrate > dehydrate Set{ 'pineapple', 'apple', 'banana' } undefined 1`] = ` +[ + "Flatpack JSON v1", + [ + 4, + 2, + ], + [ + 0, + 3, + 4, + 5, + ], + "pineapple", + "apple", + "banana", +] +`; + +exports[`dehydrate > dehydrate false undefined 1`] = ` +[ + "Flatpack JSON v1", + false, +] +`; + +exports[`dehydrate > dehydrate null undefined 1`] = ` +[ + "Flatpack JSON v1", + null, +] +`; + +exports[`dehydrate > dehydrate true undefined 1`] = ` +[ + "Flatpack JSON v1", + true, +] +`; + +exports[`dehydrate > dehydrate undefined undefined 1`] = ` +[ + "Flatpack JSON v1", +] +`; diff --git a/packages/flatpack-json/src/__snapshots__/storageV2_fileList.data.json b/packages/flatpack-json/src/__snapshots__/storageV2_fileList.data.json new file mode 100644 index 000000000000..8eb6fa009b4c --- /dev/null +++ b/packages/flatpack-json/src/__snapshots__/storageV2_fileList.data.json @@ -0,0 +1 @@ +["api/api.d.ts","dist/esm/Cache/cspell.cache.d.ts","dist/esm/Cache/cspell.cache.test.d.ts","dist/esm/Cache/index.d.ts","dist/esm/Cache/index.test.d.ts","dist/esm/Document/Document.d.ts","dist/esm/Document/index.d.ts","dist/esm/Document/isBinaryDoc.d.ts","dist/esm/Document/isBinaryDoc.test.d.ts","dist/esm/Document/normalizeLanguageIds.d.ts","dist/esm/Document/resolveDocument.d.ts","dist/esm/FeatureFlags/FeatureFalgs.test.d.ts","dist/esm/FeatureFlags/FeatureFlags.d.ts","dist/esm/FeatureFlags/index.d.ts","dist/esm/LanguageIds.d.ts","dist/esm/LanguageIds.test.d.ts","dist/esm/Models/CSpellSettingsInternalDef.d.ts","dist/esm/Models/PatternRegExp.d.ts","dist/esm/Models/PatternRegExp.test.d.ts","dist/esm/Models/Suggestion.d.ts","dist/esm/Models/TextDocument.d.ts","dist/esm/Models/TextDocument.test.d.ts","dist/esm/Models/ValidationIssue.d.ts","dist/esm/Models/ValidationResult.d.ts","dist/esm/Settings/CSpellSettingsServer.d.ts","dist/esm/Settings/CSpellSettingsServer.test.d.ts","dist/esm/Settings/Controller/ImportError.d.ts","dist/esm/Settings/Controller/ImportError.test.d.ts","dist/esm/Settings/Controller/configLoader/PnPSettings.d.ts","dist/esm/Settings/Controller/configLoader/configLoader.d.ts","dist/esm/Settings/Controller/configLoader/configLoader.test.d.ts","dist/esm/Settings/Controller/configLoader/configLocations.d.ts","dist/esm/Settings/Controller/configLoader/configSearch.d.ts","dist/esm/Settings/Controller/configLoader/configSearch.test.d.ts","dist/esm/Settings/Controller/configLoader/configToRawSettings.d.ts","dist/esm/Settings/Controller/configLoader/configToRawSettings.test.d.ts","dist/esm/Settings/Controller/configLoader/defaultConfigLoader.d.ts","dist/esm/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts","dist/esm/Settings/Controller/configLoader/defaultSettings.d.ts","dist/esm/Settings/Controller/configLoader/extractImportErrors.d.ts","dist/esm/Settings/Controller/configLoader/index.d.ts","dist/esm/Settings/Controller/configLoader/normalizeRawSettings.d.ts","dist/esm/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts","dist/esm/Settings/Controller/configLoader/readSettings.d.ts","dist/esm/Settings/Controller/configLoader/readSettingsFiles.d.ts","dist/esm/Settings/Controller/configLoader/toGlobDef.d.ts","dist/esm/Settings/Controller/configLoader/types.d.ts","dist/esm/Settings/Controller/index.d.ts","dist/esm/Settings/Controller/pnpLoader.d.ts","dist/esm/Settings/Controller/pnpLoader.test.d.ts","dist/esm/Settings/DefaultSettings.d.ts","dist/esm/Settings/DefaultSettings.test.d.ts","dist/esm/Settings/DictionaryReferenceCollection.d.ts","dist/esm/Settings/DictionaryReferenceCollection.test.d.ts","dist/esm/Settings/DictionarySettings.d.ts","dist/esm/Settings/DictionarySettings.test.d.ts","dist/esm/Settings/GlobalSettings.d.ts","dist/esm/Settings/GlobalSettings.test.d.ts","dist/esm/Settings/InDocSettings.d.ts","dist/esm/Settings/InDocSettings.test.d.ts","dist/esm/Settings/LanguageSettings.d.ts","dist/esm/Settings/LanguageSettings.test.d.ts","dist/esm/Settings/RegExpPatterns.d.ts","dist/esm/Settings/RegExpPatterns.test.d.ts","dist/esm/Settings/TextDocumentSettings.d.ts","dist/esm/Settings/TextDocumentSettings.test.d.ts","dist/esm/Settings/calcOverrideSettings.d.ts","dist/esm/Settings/cfgStore.d.ts","dist/esm/Settings/cfgStore.test.d.ts","dist/esm/Settings/checkFilenameMatchesGlob.d.ts","dist/esm/Settings/constants.d.ts","dist/esm/Settings/index.d.ts","dist/esm/Settings/index.link.d.ts","dist/esm/Settings/link.d.ts","dist/esm/Settings/link.test.d.ts","dist/esm/Settings/mergeCache.d.ts","dist/esm/Settings/mergeCache.test.d.ts","dist/esm/Settings/mergeList.d.ts","dist/esm/Settings/patterns.d.ts","dist/esm/Settings/patterns.test.d.ts","dist/esm/SpellingDictionary/Dictionaries.d.ts","dist/esm/SpellingDictionary/Dictionaries.test.d.ts","dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts","dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts","dist/esm/SpellingDictionary/DictionaryController/index.d.ts","dist/esm/SpellingDictionary/DictionaryLoader.d.ts","dist/esm/SpellingDictionary/DictionaryLoader.test.d.ts","dist/esm/SpellingDictionary/SpellingDictionary.d.ts","dist/esm/SpellingDictionary/SpellingDictionaryError.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/entities.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/helpers.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/helpers.test.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/suggest.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/suggest.test.d.ts","dist/esm/SpellingDictionary/index.d.ts","dist/esm/clearCachedFiles.d.ts","dist/esm/clearCachedFiles.test.d.ts","dist/esm/events/events.d.ts","dist/esm/events/events.test.d.ts","dist/esm/events/index.d.ts","dist/esm/exclusionHelper.d.ts","dist/esm/exclusionHelper.test.d.ts","dist/esm/fileSystem.d.ts","dist/esm/getDictionary.d.ts","dist/esm/globs/checkFilenameMatchesGlob.d.ts","dist/esm/globs/getGlobMatcher.d.ts","dist/esm/index.d.ts","dist/esm/index.test.d.ts","dist/esm/perf/index.d.ts","dist/esm/perf/perf.d.ts","dist/esm/perf/perf.test.d.ts","dist/esm/perf/timer.d.ts","dist/esm/perf/timer.test.d.ts","dist/esm/spellCheckFile.d.ts","dist/esm/spellCheckFile.test.d.ts","dist/esm/suggestions.d.ts","dist/esm/suggestions.test.d.ts","dist/esm/test/bugs.spec.d.ts","dist/esm/test/dutch.spec.d.ts","dist/esm/test/english.spec.d.ts","dist/esm/test/fa.spec.d.ts","dist/esm/test/french.spec.d.ts","dist/esm/test/golang.spec.d.ts","dist/esm/test/python.spec.d.ts","dist/esm/textValidation/ValidateTextOptions.d.ts","dist/esm/textValidation/ValidationTypes.d.ts","dist/esm/textValidation/checkText.d.ts","dist/esm/textValidation/checkText.test.d.ts","dist/esm/textValidation/defaultConstants.d.ts","dist/esm/textValidation/determineTextDocumentSettings.d.ts","dist/esm/textValidation/determineTextDocumentSettings.test.d.ts","dist/esm/textValidation/docValidator.d.ts","dist/esm/textValidation/docValidator.test.d.ts","dist/esm/textValidation/index.d.ts","dist/esm/textValidation/isWordValid.d.ts","dist/esm/textValidation/isWordValid.test.d.ts","dist/esm/textValidation/lineValidatorFactory.d.ts","dist/esm/textValidation/lineValidatorFactory.test.d.ts","dist/esm/textValidation/parsedText.d.ts","dist/esm/textValidation/parsedText.test.d.ts","dist/esm/textValidation/settingsToValidateOptions.d.ts","dist/esm/textValidation/textValidator.d.ts","dist/esm/textValidation/textValidator.test.d.ts","dist/esm/textValidation/traceWord.d.ts","dist/esm/textValidation/traceWord.test.d.ts","dist/esm/textValidation/validator.d.ts","dist/esm/textValidation/validator.test.d.ts","dist/esm/trace.d.ts","dist/esm/trace.test.d.ts","dist/esm/util/AutoResolve.d.ts","dist/esm/util/AutoResolve.test.d.ts","dist/esm/util/AutoResolveLRUCache.d.ts","dist/esm/util/AutoResolveLRUCache.test.d.ts","dist/esm/util/Comparable.d.ts","dist/esm/util/Comparable.test.d.ts","dist/esm/util/FreqCounter.d.ts","dist/esm/util/FreqCounter.test.d.ts","dist/esm/util/IterableLike.d.ts","dist/esm/util/MinHeapQueue.d.ts","dist/esm/util/MinHeapQueue.test.d.ts","dist/esm/util/PairingHeap.d.ts","dist/esm/util/PairingHeap.test.d.ts","dist/esm/util/TextMap.d.ts","dist/esm/util/TextMap.test.d.ts","dist/esm/util/TextRange.d.ts","dist/esm/util/TextRange.regexp.test.d.ts","dist/esm/util/TextRange.test.d.ts","dist/esm/util/Uri.d.ts","dist/esm/util/Uri.test.d.ts","dist/esm/util/errors.d.ts","dist/esm/util/errors.test.d.ts","dist/esm/util/fileReader.d.ts","dist/esm/util/fileReader.test.d.ts","dist/esm/util/findUp.d.ts","dist/esm/util/findUp.test.d.ts","dist/esm/util/findUpFromUrl.d.ts","dist/esm/util/findUpFromUrl.test.d.ts","dist/esm/util/iterableIteratorLib.d.ts","dist/esm/util/iterableIteratorLib.test.d.ts","dist/esm/util/logger.d.ts","dist/esm/util/logger.test.d.ts","dist/esm/util/memorizeLastCall.d.ts","dist/esm/util/memorizeLastCall.test.d.ts","dist/esm/util/memorizerWeak.d.ts","dist/esm/util/memorizerWeak.test.d.ts","dist/esm/util/regexHelper.d.ts","dist/esm/util/repMap.d.ts","dist/esm/util/repMap.test.d.ts","dist/esm/util/resolveFile.d.ts","dist/esm/util/resolveFile.test.d.ts","dist/esm/util/search.d.ts","dist/esm/util/search.test.d.ts","dist/esm/util/simpleCache.d.ts","dist/esm/util/simpleCache.test.d.ts","dist/esm/util/templates.d.ts","dist/esm/util/templates.test.d.ts","dist/esm/util/text.d.ts","dist/esm/util/text.test.d.ts","dist/esm/util/textRegex.d.ts","dist/esm/util/textRegex.test.d.ts","dist/esm/util/types.d.ts","dist/esm/util/url.d.ts","dist/esm/util/url.test.d.ts","dist/esm/util/util.d.ts","dist/esm/util/util.test.d.ts","dist/esm/util/wordSplitter.d.ts","dist/esm/util/wordSplitter.test.d.ts","dist/esm/validator.d.ts","dist/esm/wordListHelper.d.ts","dist/esm/wordListHelper.test.d.ts","dist/lib/Cache/cspell.cache.d.ts","dist/lib/Cache/cspell.cache.test.d.ts","dist/lib/Cache/index.d.ts","dist/lib/Cache/index.test.d.ts","dist/lib/Document/Document.d.ts","dist/lib/Document/index.d.ts","dist/lib/Document/isBinaryDoc.d.ts","dist/lib/Document/isBinaryDoc.test.d.ts","dist/lib/Document/normalizeLanguageIds.d.ts","dist/lib/Document/resolveDocument.d.ts","dist/lib/FeatureFlags/FeatureFalgs.test.d.ts","dist/lib/FeatureFlags/FeatureFlags.d.ts","dist/lib/FeatureFlags/index.d.ts","dist/lib/LanguageIds.d.ts","dist/lib/LanguageIds.test.d.ts","dist/lib/Models/CSpellSettingsInternalDef.d.ts","dist/lib/Models/PatternRegExp.d.ts","dist/lib/Models/PatternRegExp.test.d.ts","dist/lib/Models/Suggestion.d.ts","dist/lib/Models/TextDocument.d.ts","dist/lib/Models/TextDocument.test.d.ts","dist/lib/Models/ValidationIssue.d.ts","dist/lib/Models/ValidationResult.d.ts","dist/lib/Settings/CSpellSettingsServer.d.ts","dist/lib/Settings/CSpellSettingsServer.test.d.ts","dist/lib/Settings/Controller/ImportError.d.ts","dist/lib/Settings/Controller/ImportError.test.d.ts","dist/lib/Settings/Controller/configLoader/PnPSettings.d.ts","dist/lib/Settings/Controller/configLoader/configLoader.d.ts","dist/lib/Settings/Controller/configLoader/configLoader.test.d.ts","dist/lib/Settings/Controller/configLoader/configLocations.d.ts","dist/lib/Settings/Controller/configLoader/configSearch.d.ts","dist/lib/Settings/Controller/configLoader/configSearch.test.d.ts","dist/lib/Settings/Controller/configLoader/configToRawSettings.d.ts","dist/lib/Settings/Controller/configLoader/configToRawSettings.test.d.ts","dist/lib/Settings/Controller/configLoader/defaultConfigLoader.d.ts","dist/lib/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts","dist/lib/Settings/Controller/configLoader/defaultSettings.d.ts","dist/lib/Settings/Controller/configLoader/extractImportErrors.d.ts","dist/lib/Settings/Controller/configLoader/index.d.ts","dist/lib/Settings/Controller/configLoader/normalizeRawSettings.d.ts","dist/lib/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts","dist/lib/Settings/Controller/configLoader/readSettings.d.ts","dist/lib/Settings/Controller/configLoader/readSettingsFiles.d.ts","dist/lib/Settings/Controller/configLoader/toGlobDef.d.ts","dist/lib/Settings/Controller/configLoader/types.d.ts","dist/lib/Settings/Controller/index.d.ts","dist/lib/Settings/Controller/pnpLoader.d.ts","dist/lib/Settings/Controller/pnpLoader.test.d.ts","dist/lib/Settings/DefaultSettings.d.ts","dist/lib/Settings/DefaultSettings.test.d.ts","dist/lib/Settings/DictionaryReferenceCollection.d.ts","dist/lib/Settings/DictionaryReferenceCollection.test.d.ts","dist/lib/Settings/DictionarySettings.d.ts","dist/lib/Settings/DictionarySettings.test.d.ts","dist/lib/Settings/GlobalSettings.d.ts","dist/lib/Settings/GlobalSettings.test.d.ts","dist/lib/Settings/InDocSettings.d.ts","dist/lib/Settings/InDocSettings.test.d.ts","dist/lib/Settings/LanguageSettings.d.ts","dist/lib/Settings/LanguageSettings.test.d.ts","dist/lib/Settings/RegExpPatterns.d.ts","dist/lib/Settings/RegExpPatterns.test.d.ts","dist/lib/Settings/TextDocumentSettings.d.ts","dist/lib/Settings/TextDocumentSettings.test.d.ts","dist/lib/Settings/calcOverrideSettings.d.ts","dist/lib/Settings/cfgStore.d.ts","dist/lib/Settings/cfgStore.test.d.ts","dist/lib/Settings/checkFilenameMatchesGlob.d.ts","dist/lib/Settings/constants.d.ts","dist/lib/Settings/index.d.ts","dist/lib/Settings/index.link.d.ts","dist/lib/Settings/link.d.ts","dist/lib/Settings/link.test.d.ts","dist/lib/Settings/mergeCache.d.ts","dist/lib/Settings/mergeCache.test.d.ts","dist/lib/Settings/mergeList.d.ts","dist/lib/Settings/patterns.d.ts","dist/lib/Settings/patterns.test.d.ts","dist/lib/SpellingDictionary/Dictionaries.d.ts","dist/lib/SpellingDictionary/Dictionaries.test.d.ts","dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts","dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts","dist/lib/SpellingDictionary/DictionaryController/index.d.ts","dist/lib/SpellingDictionary/DictionaryLoader.d.ts","dist/lib/SpellingDictionary/DictionaryLoader.test.d.ts","dist/lib/SpellingDictionary/SpellingDictionary.d.ts","dist/lib/SpellingDictionary/SpellingDictionaryError.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/entities.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/helpers.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/helpers.test.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/suggest.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/suggest.test.d.ts","dist/lib/SpellingDictionary/index.d.ts","dist/lib/clearCachedFiles.d.ts","dist/lib/clearCachedFiles.test.d.ts","dist/lib/events/events.d.ts","dist/lib/events/events.test.d.ts","dist/lib/events/index.d.ts","dist/lib/exclusionHelper.d.ts","dist/lib/exclusionHelper.test.d.ts","dist/lib/fileSystem.d.ts","dist/lib/getDictionary.d.ts","dist/lib/globs/checkFilenameMatchesGlob.d.ts","dist/lib/globs/getGlobMatcher.d.ts","dist/lib/index.d.ts","dist/lib/index.test.d.ts","dist/lib/perf/index.d.ts","dist/lib/perf/perf.d.ts","dist/lib/perf/perf.test.d.ts","dist/lib/perf/timer.d.ts","dist/lib/perf/timer.test.d.ts","dist/lib/spellCheckFile.d.ts","dist/lib/spellCheckFile.test.d.ts","dist/lib/suggestions.d.ts","dist/lib/suggestions.test.d.ts","dist/lib/test/bugs.spec.d.ts","dist/lib/test/dutch.spec.d.ts","dist/lib/test/english.spec.d.ts","dist/lib/test/fa.spec.d.ts","dist/lib/test/french.spec.d.ts","dist/lib/test/golang.spec.d.ts","dist/lib/test/python.spec.d.ts","dist/lib/textValidation/ValidateTextOptions.d.ts","dist/lib/textValidation/ValidationTypes.d.ts","dist/lib/textValidation/checkText.d.ts","dist/lib/textValidation/checkText.test.d.ts","dist/lib/textValidation/defaultConstants.d.ts","dist/lib/textValidation/determineTextDocumentSettings.d.ts","dist/lib/textValidation/determineTextDocumentSettings.test.d.ts","dist/lib/textValidation/docValidator.d.ts","dist/lib/textValidation/docValidator.test.d.ts","dist/lib/textValidation/index.d.ts","dist/lib/textValidation/isWordValid.d.ts","dist/lib/textValidation/isWordValid.test.d.ts","dist/lib/textValidation/lineValidatorFactory.d.ts","dist/lib/textValidation/lineValidatorFactory.test.d.ts","dist/lib/textValidation/parsedText.d.ts","dist/lib/textValidation/parsedText.test.d.ts","dist/lib/textValidation/settingsToValidateOptions.d.ts","dist/lib/textValidation/textValidator.d.ts","dist/lib/textValidation/textValidator.test.d.ts","dist/lib/textValidation/traceWord.d.ts","dist/lib/textValidation/traceWord.test.d.ts","dist/lib/textValidation/validator.d.ts","dist/lib/textValidation/validator.test.d.ts","dist/lib/trace.d.ts","dist/lib/trace.test.d.ts","dist/lib/util/AutoResolve.d.ts","dist/lib/util/AutoResolve.test.d.ts","dist/lib/util/AutoResolveLRUCache.d.ts","dist/lib/util/AutoResolveLRUCache.test.d.ts","dist/lib/util/Comparable.d.ts","dist/lib/util/Comparable.test.d.ts","dist/lib/util/FreqCounter.d.ts","dist/lib/util/FreqCounter.test.d.ts","dist/lib/util/IterableLike.d.ts","dist/lib/util/MinHeapQueue.d.ts","dist/lib/util/MinHeapQueue.test.d.ts","dist/lib/util/PairingHeap.d.ts","dist/lib/util/PairingHeap.test.d.ts","dist/lib/util/TextMap.d.ts","dist/lib/util/TextMap.test.d.ts","dist/lib/util/TextRange.d.ts","dist/lib/util/TextRange.regexp.test.d.ts","dist/lib/util/TextRange.test.d.ts","dist/lib/util/Uri.d.ts","dist/lib/util/Uri.test.d.ts","dist/lib/util/errors.d.ts","dist/lib/util/errors.test.d.ts","dist/lib/util/fileReader.d.ts","dist/lib/util/fileReader.test.d.ts","dist/lib/util/findUp.d.ts","dist/lib/util/findUp.test.d.ts","dist/lib/util/findUpFromUrl.d.ts","dist/lib/util/findUpFromUrl.test.d.ts","dist/lib/util/iterableIteratorLib.d.ts","dist/lib/util/iterableIteratorLib.test.d.ts","dist/lib/util/logger.d.ts","dist/lib/util/logger.test.d.ts","dist/lib/util/memorizeLastCall.d.ts","dist/lib/util/memorizeLastCall.test.d.ts","dist/lib/util/memorizerWeak.d.ts","dist/lib/util/memorizerWeak.test.d.ts","dist/lib/util/regexHelper.d.ts","dist/lib/util/repMap.d.ts","dist/lib/util/repMap.test.d.ts","dist/lib/util/resolveFile.d.ts","dist/lib/util/resolveFile.test.d.ts","dist/lib/util/search.d.ts","dist/lib/util/search.test.d.ts","dist/lib/util/simpleCache.d.ts","dist/lib/util/simpleCache.test.d.ts","dist/lib/util/templates.d.ts","dist/lib/util/templates.test.d.ts","dist/lib/util/text.d.ts","dist/lib/util/text.test.d.ts","dist/lib/util/textApi.d.ts","dist/lib/util/textRegex.d.ts","dist/lib/util/textRegex.test.d.ts","dist/lib/util/types.d.ts","dist/lib/util/url.d.ts","dist/lib/util/url.test.d.ts","dist/lib/util/util.d.ts","dist/lib/util/util.test.d.ts","dist/lib/util/wordSplitter.d.ts","dist/lib/util/wordSplitter.perf.d.ts","dist/lib/util/wordSplitter.test.d.ts","dist/lib/validator.d.ts","dist/lib/wordListHelper.d.ts","dist/lib/wordListHelper.test.d.ts","fixtures/docValidator/parser/sample.ts","fixtures/docValidator/sample-with-cspell-directives.ts","fixtures/docValidator/sample-with-directives-errors.ts","fixtures/docValidator/sample-with-errors.ts","fixtures/docValidator/sample-with-many-errors.ts","samples/bug-fixes/bug345.ts","src/lib/Cache/cspell.cache.test.ts","src/lib/Cache/cspell.cache.ts","src/lib/Cache/index.test.ts","src/lib/Cache/index.ts","src/lib/Document/Document.ts","src/lib/Document/index.ts","src/lib/Document/isBinaryDoc.test.ts","src/lib/Document/isBinaryDoc.ts","src/lib/Document/normalizeLanguageIds.ts","src/lib/Document/resolveDocument.ts","src/lib/FeatureFlags/FeatureFalgs.test.ts","src/lib/FeatureFlags/FeatureFlags.ts","src/lib/FeatureFlags/index.ts","src/lib/LanguageIds.test.ts","src/lib/LanguageIds.ts","src/lib/Models/CSpellSettingsInternalDef.ts","src/lib/Models/PatternRegExp.test.ts","src/lib/Models/PatternRegExp.ts","src/lib/Models/Suggestion.ts","src/lib/Models/TextDocument.test.ts","src/lib/Models/TextDocument.ts","src/lib/Models/ValidationIssue.ts","src/lib/Models/ValidationResult.ts","src/lib/Settings/CSpellSettingsServer.test.ts","src/lib/Settings/CSpellSettingsServer.ts","src/lib/Settings/Controller/ImportError.test.ts","src/lib/Settings/Controller/ImportError.ts","src/lib/Settings/Controller/configLoader/PnPSettings.ts","src/lib/Settings/Controller/configLoader/configLoader.test.ts","src/lib/Settings/Controller/configLoader/configLoader.ts","src/lib/Settings/Controller/configLoader/configLocations.ts","src/lib/Settings/Controller/configLoader/configSearch.test.ts","src/lib/Settings/Controller/configLoader/configSearch.ts","src/lib/Settings/Controller/configLoader/configToRawSettings.test.ts","src/lib/Settings/Controller/configLoader/configToRawSettings.ts","src/lib/Settings/Controller/configLoader/defaultConfigLoader.test.ts","src/lib/Settings/Controller/configLoader/defaultConfigLoader.ts","src/lib/Settings/Controller/configLoader/defaultSettings.ts","src/lib/Settings/Controller/configLoader/extractImportErrors.ts","src/lib/Settings/Controller/configLoader/index.ts","src/lib/Settings/Controller/configLoader/normalizeRawSettings.test.ts","src/lib/Settings/Controller/configLoader/normalizeRawSettings.ts","src/lib/Settings/Controller/configLoader/readSettings.ts","src/lib/Settings/Controller/configLoader/readSettingsFiles.ts","src/lib/Settings/Controller/configLoader/toGlobDef.ts","src/lib/Settings/Controller/configLoader/types.ts","src/lib/Settings/Controller/index.ts","src/lib/Settings/Controller/pnpLoader.test.ts","src/lib/Settings/Controller/pnpLoader.ts","src/lib/Settings/DefaultSettings.test.ts","src/lib/Settings/DefaultSettings.ts","src/lib/Settings/DictionaryReferenceCollection.test.ts","src/lib/Settings/DictionaryReferenceCollection.ts","src/lib/Settings/DictionarySettings.test.ts","src/lib/Settings/DictionarySettings.ts","src/lib/Settings/GlobalSettings.test.ts","src/lib/Settings/GlobalSettings.ts","src/lib/Settings/InDocSettings.test.ts","src/lib/Settings/InDocSettings.ts","src/lib/Settings/LanguageSettings.test.ts","src/lib/Settings/LanguageSettings.ts","src/lib/Settings/RegExpPatterns.test.ts","src/lib/Settings/RegExpPatterns.ts","src/lib/Settings/TextDocumentSettings.test.ts","src/lib/Settings/TextDocumentSettings.ts","src/lib/Settings/calcOverrideSettings.ts","src/lib/Settings/cfgStore.test.ts","src/lib/Settings/cfgStore.ts","src/lib/Settings/checkFilenameMatchesGlob.ts","src/lib/Settings/constants.ts","src/lib/Settings/index.link.ts","src/lib/Settings/index.ts","src/lib/Settings/link.test.ts","src/lib/Settings/link.ts","src/lib/Settings/mergeCache.test.ts","src/lib/Settings/mergeCache.ts","src/lib/Settings/mergeList.ts","src/lib/Settings/patterns.test.ts","src/lib/Settings/patterns.ts","src/lib/SpellingDictionary/Dictionaries.test.ts","src/lib/SpellingDictionary/Dictionaries.ts","src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.ts","src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.ts","src/lib/SpellingDictionary/DictionaryController/index.ts","src/lib/SpellingDictionary/DictionaryLoader.test.ts","src/lib/SpellingDictionary/DictionaryLoader.ts","src/lib/SpellingDictionary/SpellingDictionary.ts","src/lib/SpellingDictionary/SpellingDictionaryError.ts","src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.ts","src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.ts","src/lib/SpellingDictionary/SuggestExperimental/entities.ts","src/lib/SpellingDictionary/SuggestExperimental/helpers.test.ts","src/lib/SpellingDictionary/SuggestExperimental/helpers.ts","src/lib/SpellingDictionary/SuggestExperimental/suggest.test.ts","src/lib/SpellingDictionary/SuggestExperimental/suggest.ts","src/lib/SpellingDictionary/index.ts","src/lib/clearCachedFiles.test.ts","src/lib/clearCachedFiles.ts","src/lib/events/events.test.ts","src/lib/events/events.ts","src/lib/events/index.ts","src/lib/exclusionHelper.test.ts","src/lib/exclusionHelper.ts","src/lib/fileSystem.ts","src/lib/getDictionary.ts","src/lib/globs/checkFilenameMatchesGlob.ts","src/lib/globs/getGlobMatcher.ts","src/lib/index.test.ts","src/lib/index.ts","src/lib/leaked-handles.d.ts","src/lib/node-namespace.d.ts","src/lib/perf/index.ts","src/lib/perf/perf.test.ts","src/lib/perf/perf.ts","src/lib/perf/timer.test.ts","src/lib/perf/timer.ts","src/lib/spellCheckFile.test.ts","src/lib/spellCheckFile.ts","src/lib/suggestions.test.ts","src/lib/suggestions.ts","src/lib/test/bugs.spec.ts","src/lib/test/dutch.spec.ts","src/lib/test/english.spec.ts","src/lib/test/fa.spec.ts","src/lib/test/french.spec.ts","src/lib/test/golang.spec.ts","src/lib/test/python.spec.ts","src/lib/textValidation/ValidateTextOptions.ts","src/lib/textValidation/ValidationTypes.ts","src/lib/textValidation/checkText.test.ts","src/lib/textValidation/checkText.ts","src/lib/textValidation/defaultConstants.ts","src/lib/textValidation/determineTextDocumentSettings.test.ts","src/lib/textValidation/determineTextDocumentSettings.ts","src/lib/textValidation/docValidator.test.ts","src/lib/textValidation/docValidator.ts","src/lib/textValidation/index.ts","src/lib/textValidation/isWordValid.test.ts","src/lib/textValidation/isWordValid.ts","src/lib/textValidation/lineValidatorFactory.test.ts","src/lib/textValidation/lineValidatorFactory.ts","src/lib/textValidation/parsedText.test.ts","src/lib/textValidation/parsedText.ts","src/lib/textValidation/settingsToValidateOptions.ts","src/lib/textValidation/textValidator.test.ts","src/lib/textValidation/textValidator.ts","src/lib/textValidation/traceWord.test.ts","src/lib/textValidation/traceWord.ts","src/lib/textValidation/validator.test.ts","src/lib/textValidation/validator.ts","src/lib/trace.test.ts","src/lib/trace.ts","src/lib/util/AutoResolve.test.ts","src/lib/util/AutoResolve.ts","src/lib/util/AutoResolveLRUCache.test.ts","src/lib/util/AutoResolveLRUCache.ts","src/lib/util/Comparable.test.ts","src/lib/util/Comparable.ts","src/lib/util/FreqCounter.test.ts","src/lib/util/FreqCounter.ts","src/lib/util/IterableLike.ts","src/lib/util/MinHeapQueue.test.ts","src/lib/util/MinHeapQueue.ts","src/lib/util/PairingHeap.test.ts","src/lib/util/PairingHeap.ts","src/lib/util/TextMap.test.ts","src/lib/util/TextMap.ts","src/lib/util/TextRange.regexp.test.ts","src/lib/util/TextRange.test.ts","src/lib/util/TextRange.ts","src/lib/util/Uri.test.ts","src/lib/util/Uri.ts","src/lib/util/errors.test.ts","src/lib/util/errors.ts","src/lib/util/fileReader.test.ts","src/lib/util/fileReader.ts","src/lib/util/findUp.test.ts","src/lib/util/findUp.ts","src/lib/util/findUpFromUrl.test.ts","src/lib/util/findUpFromUrl.ts","src/lib/util/iterableIteratorLib.test.ts","src/lib/util/iterableIteratorLib.ts","src/lib/util/logger.test.ts","src/lib/util/logger.ts","src/lib/util/memorizeLastCall.test.ts","src/lib/util/memorizeLastCall.ts","src/lib/util/memorizerWeak.test.ts","src/lib/util/memorizerWeak.ts","src/lib/util/regexHelper.ts","src/lib/util/repMap.test.ts","src/lib/util/repMap.ts","src/lib/util/resolveFile.test.ts","src/lib/util/resolveFile.ts","src/lib/util/search.test.ts","src/lib/util/search.ts","src/lib/util/simpleCache.test.ts","src/lib/util/simpleCache.ts","src/lib/util/templates.test.ts","src/lib/util/templates.ts","src/lib/util/text.test.ts","src/lib/util/text.ts","src/lib/util/textApi.ts","src/lib/util/textRegex.test.ts","src/lib/util/textRegex.ts","src/lib/util/types.ts","src/lib/util/url.test.ts","src/lib/util/url.ts","src/lib/util/util.test.ts","src/lib/util/util.ts","src/lib/util/wordSplitter.perf.ts","src/lib/util/wordSplitter.test.ts","src/lib/util/wordSplitter.ts","src/lib/validator.ts","src/lib/wordListHelper.test.ts","src/lib/wordListHelper.ts",""] diff --git a/packages/flatpack-json/src/__snapshots__/storageV2_fileList.json b/packages/flatpack-json/src/__snapshots__/storageV2_fileList.json new file mode 100644 index 000000000000..e57a888783a8 --- /dev/null +++ b/packages/flatpack-json/src/__snapshots__/storageV2_fileList.json @@ -0,0 +1 @@ +["Flatpack JSON v1",[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648],"api/api.d.ts","dist/esm/Cache/cspell.cache.d.ts","dist/esm/Cache/cspell.cache.test.d.ts","dist/esm/Cache/index.d.ts","dist/esm/Cache/index.test.d.ts","dist/esm/Document/Document.d.ts","dist/esm/Document/index.d.ts","dist/esm/Document/isBinaryDoc.d.ts","dist/esm/Document/isBinaryDoc.test.d.ts","dist/esm/Document/normalizeLanguageIds.d.ts","dist/esm/Document/resolveDocument.d.ts","dist/esm/FeatureFlags/FeatureFalgs.test.d.ts","dist/esm/FeatureFlags/FeatureFlags.d.ts","dist/esm/FeatureFlags/index.d.ts","dist/esm/LanguageIds.d.ts","dist/esm/LanguageIds.test.d.ts","dist/esm/Models/CSpellSettingsInternalDef.d.ts","dist/esm/Models/PatternRegExp.d.ts","dist/esm/Models/PatternRegExp.test.d.ts","dist/esm/Models/Suggestion.d.ts","dist/esm/Models/TextDocument.d.ts","dist/esm/Models/TextDocument.test.d.ts","dist/esm/Models/ValidationIssue.d.ts","dist/esm/Models/ValidationResult.d.ts","dist/esm/Settings/CSpellSettingsServer.d.ts","dist/esm/Settings/CSpellSettingsServer.test.d.ts","dist/esm/Settings/Controller/ImportError.d.ts","dist/esm/Settings/Controller/ImportError.test.d.ts","dist/esm/Settings/Controller/configLoader/PnPSettings.d.ts","dist/esm/Settings/Controller/configLoader/configLoader.d.ts","dist/esm/Settings/Controller/configLoader/configLoader.test.d.ts","dist/esm/Settings/Controller/configLoader/configLocations.d.ts","dist/esm/Settings/Controller/configLoader/configSearch.d.ts","dist/esm/Settings/Controller/configLoader/configSearch.test.d.ts","dist/esm/Settings/Controller/configLoader/configToRawSettings.d.ts","dist/esm/Settings/Controller/configLoader/configToRawSettings.test.d.ts","dist/esm/Settings/Controller/configLoader/defaultConfigLoader.d.ts","dist/esm/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts","dist/esm/Settings/Controller/configLoader/defaultSettings.d.ts","dist/esm/Settings/Controller/configLoader/extractImportErrors.d.ts","dist/esm/Settings/Controller/configLoader/index.d.ts","dist/esm/Settings/Controller/configLoader/normalizeRawSettings.d.ts","dist/esm/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts","dist/esm/Settings/Controller/configLoader/readSettings.d.ts","dist/esm/Settings/Controller/configLoader/readSettingsFiles.d.ts","dist/esm/Settings/Controller/configLoader/toGlobDef.d.ts","dist/esm/Settings/Controller/configLoader/types.d.ts","dist/esm/Settings/Controller/index.d.ts","dist/esm/Settings/Controller/pnpLoader.d.ts","dist/esm/Settings/Controller/pnpLoader.test.d.ts","dist/esm/Settings/DefaultSettings.d.ts","dist/esm/Settings/DefaultSettings.test.d.ts","dist/esm/Settings/DictionaryReferenceCollection.d.ts","dist/esm/Settings/DictionaryReferenceCollection.test.d.ts","dist/esm/Settings/DictionarySettings.d.ts","dist/esm/Settings/DictionarySettings.test.d.ts","dist/esm/Settings/GlobalSettings.d.ts","dist/esm/Settings/GlobalSettings.test.d.ts","dist/esm/Settings/InDocSettings.d.ts","dist/esm/Settings/InDocSettings.test.d.ts","dist/esm/Settings/LanguageSettings.d.ts","dist/esm/Settings/LanguageSettings.test.d.ts","dist/esm/Settings/RegExpPatterns.d.ts","dist/esm/Settings/RegExpPatterns.test.d.ts","dist/esm/Settings/TextDocumentSettings.d.ts","dist/esm/Settings/TextDocumentSettings.test.d.ts","dist/esm/Settings/calcOverrideSettings.d.ts","dist/esm/Settings/cfgStore.d.ts","dist/esm/Settings/cfgStore.test.d.ts","dist/esm/Settings/checkFilenameMatchesGlob.d.ts","dist/esm/Settings/constants.d.ts","dist/esm/Settings/index.d.ts","dist/esm/Settings/index.link.d.ts","dist/esm/Settings/link.d.ts","dist/esm/Settings/link.test.d.ts","dist/esm/Settings/mergeCache.d.ts","dist/esm/Settings/mergeCache.test.d.ts","dist/esm/Settings/mergeList.d.ts","dist/esm/Settings/patterns.d.ts","dist/esm/Settings/patterns.test.d.ts","dist/esm/SpellingDictionary/Dictionaries.d.ts","dist/esm/SpellingDictionary/Dictionaries.test.d.ts","dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts","dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts","dist/esm/SpellingDictionary/DictionaryController/index.d.ts","dist/esm/SpellingDictionary/DictionaryLoader.d.ts","dist/esm/SpellingDictionary/DictionaryLoader.test.d.ts","dist/esm/SpellingDictionary/SpellingDictionary.d.ts","dist/esm/SpellingDictionary/SpellingDictionaryError.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/entities.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/helpers.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/helpers.test.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/suggest.d.ts","dist/esm/SpellingDictionary/SuggestExperimental/suggest.test.d.ts","dist/esm/SpellingDictionary/index.d.ts","dist/esm/clearCachedFiles.d.ts","dist/esm/clearCachedFiles.test.d.ts","dist/esm/events/events.d.ts","dist/esm/events/events.test.d.ts","dist/esm/events/index.d.ts","dist/esm/exclusionHelper.d.ts","dist/esm/exclusionHelper.test.d.ts","dist/esm/fileSystem.d.ts","dist/esm/getDictionary.d.ts","dist/esm/globs/checkFilenameMatchesGlob.d.ts","dist/esm/globs/getGlobMatcher.d.ts","dist/esm/index.d.ts","dist/esm/index.test.d.ts","dist/esm/perf/index.d.ts","dist/esm/perf/perf.d.ts","dist/esm/perf/perf.test.d.ts","dist/esm/perf/timer.d.ts","dist/esm/perf/timer.test.d.ts","dist/esm/spellCheckFile.d.ts","dist/esm/spellCheckFile.test.d.ts","dist/esm/suggestions.d.ts","dist/esm/suggestions.test.d.ts","dist/esm/test/bugs.spec.d.ts","dist/esm/test/dutch.spec.d.ts","dist/esm/test/english.spec.d.ts","dist/esm/test/fa.spec.d.ts","dist/esm/test/french.spec.d.ts","dist/esm/test/golang.spec.d.ts","dist/esm/test/python.spec.d.ts","dist/esm/textValidation/ValidateTextOptions.d.ts","dist/esm/textValidation/ValidationTypes.d.ts","dist/esm/textValidation/checkText.d.ts","dist/esm/textValidation/checkText.test.d.ts","dist/esm/textValidation/defaultConstants.d.ts","dist/esm/textValidation/determineTextDocumentSettings.d.ts","dist/esm/textValidation/determineTextDocumentSettings.test.d.ts","dist/esm/textValidation/docValidator.d.ts","dist/esm/textValidation/docValidator.test.d.ts","dist/esm/textValidation/index.d.ts","dist/esm/textValidation/isWordValid.d.ts","dist/esm/textValidation/isWordValid.test.d.ts","dist/esm/textValidation/lineValidatorFactory.d.ts","dist/esm/textValidation/lineValidatorFactory.test.d.ts","dist/esm/textValidation/parsedText.d.ts","dist/esm/textValidation/parsedText.test.d.ts","dist/esm/textValidation/settingsToValidateOptions.d.ts","dist/esm/textValidation/textValidator.d.ts","dist/esm/textValidation/textValidator.test.d.ts","dist/esm/textValidation/traceWord.d.ts","dist/esm/textValidation/traceWord.test.d.ts","dist/esm/textValidation/validator.d.ts","dist/esm/textValidation/validator.test.d.ts","dist/esm/trace.d.ts","dist/esm/trace.test.d.ts","dist/esm/util/AutoResolve.d.ts","dist/esm/util/AutoResolve.test.d.ts","dist/esm/util/AutoResolveLRUCache.d.ts","dist/esm/util/AutoResolveLRUCache.test.d.ts","dist/esm/util/Comparable.d.ts","dist/esm/util/Comparable.test.d.ts","dist/esm/util/FreqCounter.d.ts","dist/esm/util/FreqCounter.test.d.ts","dist/esm/util/IterableLike.d.ts","dist/esm/util/MinHeapQueue.d.ts","dist/esm/util/MinHeapQueue.test.d.ts","dist/esm/util/PairingHeap.d.ts","dist/esm/util/PairingHeap.test.d.ts","dist/esm/util/TextMap.d.ts","dist/esm/util/TextMap.test.d.ts","dist/esm/util/TextRange.d.ts","dist/esm/util/TextRange.regexp.test.d.ts","dist/esm/util/TextRange.test.d.ts","dist/esm/util/Uri.d.ts","dist/esm/util/Uri.test.d.ts","dist/esm/util/errors.d.ts","dist/esm/util/errors.test.d.ts","dist/esm/util/fileReader.d.ts","dist/esm/util/fileReader.test.d.ts","dist/esm/util/findUp.d.ts","dist/esm/util/findUp.test.d.ts","dist/esm/util/findUpFromUrl.d.ts","dist/esm/util/findUpFromUrl.test.d.ts","dist/esm/util/iterableIteratorLib.d.ts","dist/esm/util/iterableIteratorLib.test.d.ts","dist/esm/util/logger.d.ts","dist/esm/util/logger.test.d.ts","dist/esm/util/memorizeLastCall.d.ts","dist/esm/util/memorizeLastCall.test.d.ts","dist/esm/util/memorizerWeak.d.ts","dist/esm/util/memorizerWeak.test.d.ts","dist/esm/util/regexHelper.d.ts","dist/esm/util/repMap.d.ts","dist/esm/util/repMap.test.d.ts","dist/esm/util/resolveFile.d.ts","dist/esm/util/resolveFile.test.d.ts","dist/esm/util/search.d.ts","dist/esm/util/search.test.d.ts","dist/esm/util/simpleCache.d.ts","dist/esm/util/simpleCache.test.d.ts","dist/esm/util/templates.d.ts","dist/esm/util/templates.test.d.ts","dist/esm/util/text.d.ts","dist/esm/util/text.test.d.ts","dist/esm/util/textRegex.d.ts","dist/esm/util/textRegex.test.d.ts","dist/esm/util/types.d.ts","dist/esm/util/url.d.ts","dist/esm/util/url.test.d.ts","dist/esm/util/util.d.ts","dist/esm/util/util.test.d.ts","dist/esm/util/wordSplitter.d.ts","dist/esm/util/wordSplitter.test.d.ts","dist/esm/validator.d.ts","dist/esm/wordListHelper.d.ts","dist/esm/wordListHelper.test.d.ts","dist/lib/Cache/cspell.cache.d.ts","dist/lib/Cache/cspell.cache.test.d.ts","dist/lib/Cache/index.d.ts","dist/lib/Cache/index.test.d.ts","dist/lib/Document/Document.d.ts","dist/lib/Document/index.d.ts","dist/lib/Document/isBinaryDoc.d.ts","dist/lib/Document/isBinaryDoc.test.d.ts","dist/lib/Document/normalizeLanguageIds.d.ts","dist/lib/Document/resolveDocument.d.ts","dist/lib/FeatureFlags/FeatureFalgs.test.d.ts","dist/lib/FeatureFlags/FeatureFlags.d.ts","dist/lib/FeatureFlags/index.d.ts","dist/lib/LanguageIds.d.ts","dist/lib/LanguageIds.test.d.ts","dist/lib/Models/CSpellSettingsInternalDef.d.ts","dist/lib/Models/PatternRegExp.d.ts","dist/lib/Models/PatternRegExp.test.d.ts","dist/lib/Models/Suggestion.d.ts","dist/lib/Models/TextDocument.d.ts","dist/lib/Models/TextDocument.test.d.ts","dist/lib/Models/ValidationIssue.d.ts","dist/lib/Models/ValidationResult.d.ts","dist/lib/Settings/CSpellSettingsServer.d.ts","dist/lib/Settings/CSpellSettingsServer.test.d.ts","dist/lib/Settings/Controller/ImportError.d.ts","dist/lib/Settings/Controller/ImportError.test.d.ts","dist/lib/Settings/Controller/configLoader/PnPSettings.d.ts","dist/lib/Settings/Controller/configLoader/configLoader.d.ts","dist/lib/Settings/Controller/configLoader/configLoader.test.d.ts","dist/lib/Settings/Controller/configLoader/configLocations.d.ts","dist/lib/Settings/Controller/configLoader/configSearch.d.ts","dist/lib/Settings/Controller/configLoader/configSearch.test.d.ts","dist/lib/Settings/Controller/configLoader/configToRawSettings.d.ts","dist/lib/Settings/Controller/configLoader/configToRawSettings.test.d.ts","dist/lib/Settings/Controller/configLoader/defaultConfigLoader.d.ts","dist/lib/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts","dist/lib/Settings/Controller/configLoader/defaultSettings.d.ts","dist/lib/Settings/Controller/configLoader/extractImportErrors.d.ts","dist/lib/Settings/Controller/configLoader/index.d.ts","dist/lib/Settings/Controller/configLoader/normalizeRawSettings.d.ts","dist/lib/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts","dist/lib/Settings/Controller/configLoader/readSettings.d.ts","dist/lib/Settings/Controller/configLoader/readSettingsFiles.d.ts","dist/lib/Settings/Controller/configLoader/toGlobDef.d.ts","dist/lib/Settings/Controller/configLoader/types.d.ts","dist/lib/Settings/Controller/index.d.ts","dist/lib/Settings/Controller/pnpLoader.d.ts","dist/lib/Settings/Controller/pnpLoader.test.d.ts","dist/lib/Settings/DefaultSettings.d.ts","dist/lib/Settings/DefaultSettings.test.d.ts","dist/lib/Settings/DictionaryReferenceCollection.d.ts","dist/lib/Settings/DictionaryReferenceCollection.test.d.ts","dist/lib/Settings/DictionarySettings.d.ts","dist/lib/Settings/DictionarySettings.test.d.ts","dist/lib/Settings/GlobalSettings.d.ts","dist/lib/Settings/GlobalSettings.test.d.ts","dist/lib/Settings/InDocSettings.d.ts","dist/lib/Settings/InDocSettings.test.d.ts","dist/lib/Settings/LanguageSettings.d.ts","dist/lib/Settings/LanguageSettings.test.d.ts","dist/lib/Settings/RegExpPatterns.d.ts","dist/lib/Settings/RegExpPatterns.test.d.ts","dist/lib/Settings/TextDocumentSettings.d.ts","dist/lib/Settings/TextDocumentSettings.test.d.ts","dist/lib/Settings/calcOverrideSettings.d.ts","dist/lib/Settings/cfgStore.d.ts","dist/lib/Settings/cfgStore.test.d.ts","dist/lib/Settings/checkFilenameMatchesGlob.d.ts","dist/lib/Settings/constants.d.ts","dist/lib/Settings/index.d.ts","dist/lib/Settings/index.link.d.ts","dist/lib/Settings/link.d.ts","dist/lib/Settings/link.test.d.ts","dist/lib/Settings/mergeCache.d.ts","dist/lib/Settings/mergeCache.test.d.ts","dist/lib/Settings/mergeList.d.ts","dist/lib/Settings/patterns.d.ts","dist/lib/Settings/patterns.test.d.ts","dist/lib/SpellingDictionary/Dictionaries.d.ts","dist/lib/SpellingDictionary/Dictionaries.test.d.ts","dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts","dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts","dist/lib/SpellingDictionary/DictionaryController/index.d.ts","dist/lib/SpellingDictionary/DictionaryLoader.d.ts","dist/lib/SpellingDictionary/DictionaryLoader.test.d.ts","dist/lib/SpellingDictionary/SpellingDictionary.d.ts","dist/lib/SpellingDictionary/SpellingDictionaryError.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/entities.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/helpers.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/helpers.test.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/suggest.d.ts","dist/lib/SpellingDictionary/SuggestExperimental/suggest.test.d.ts","dist/lib/SpellingDictionary/index.d.ts","dist/lib/clearCachedFiles.d.ts","dist/lib/clearCachedFiles.test.d.ts","dist/lib/events/events.d.ts","dist/lib/events/events.test.d.ts","dist/lib/events/index.d.ts","dist/lib/exclusionHelper.d.ts","dist/lib/exclusionHelper.test.d.ts","dist/lib/fileSystem.d.ts","dist/lib/getDictionary.d.ts","dist/lib/globs/checkFilenameMatchesGlob.d.ts","dist/lib/globs/getGlobMatcher.d.ts","dist/lib/index.d.ts","dist/lib/index.test.d.ts","dist/lib/perf/index.d.ts","dist/lib/perf/perf.d.ts","dist/lib/perf/perf.test.d.ts","dist/lib/perf/timer.d.ts","dist/lib/perf/timer.test.d.ts","dist/lib/spellCheckFile.d.ts","dist/lib/spellCheckFile.test.d.ts","dist/lib/suggestions.d.ts","dist/lib/suggestions.test.d.ts","dist/lib/test/bugs.spec.d.ts","dist/lib/test/dutch.spec.d.ts","dist/lib/test/english.spec.d.ts","dist/lib/test/fa.spec.d.ts","dist/lib/test/french.spec.d.ts","dist/lib/test/golang.spec.d.ts","dist/lib/test/python.spec.d.ts","dist/lib/textValidation/ValidateTextOptions.d.ts","dist/lib/textValidation/ValidationTypes.d.ts","dist/lib/textValidation/checkText.d.ts","dist/lib/textValidation/checkText.test.d.ts","dist/lib/textValidation/defaultConstants.d.ts","dist/lib/textValidation/determineTextDocumentSettings.d.ts","dist/lib/textValidation/determineTextDocumentSettings.test.d.ts","dist/lib/textValidation/docValidator.d.ts","dist/lib/textValidation/docValidator.test.d.ts","dist/lib/textValidation/index.d.ts","dist/lib/textValidation/isWordValid.d.ts","dist/lib/textValidation/isWordValid.test.d.ts","dist/lib/textValidation/lineValidatorFactory.d.ts","dist/lib/textValidation/lineValidatorFactory.test.d.ts","dist/lib/textValidation/parsedText.d.ts","dist/lib/textValidation/parsedText.test.d.ts","dist/lib/textValidation/settingsToValidateOptions.d.ts","dist/lib/textValidation/textValidator.d.ts","dist/lib/textValidation/textValidator.test.d.ts","dist/lib/textValidation/traceWord.d.ts","dist/lib/textValidation/traceWord.test.d.ts","dist/lib/textValidation/validator.d.ts","dist/lib/textValidation/validator.test.d.ts","dist/lib/trace.d.ts","dist/lib/trace.test.d.ts","dist/lib/util/AutoResolve.d.ts","dist/lib/util/AutoResolve.test.d.ts","dist/lib/util/AutoResolveLRUCache.d.ts","dist/lib/util/AutoResolveLRUCache.test.d.ts","dist/lib/util/Comparable.d.ts","dist/lib/util/Comparable.test.d.ts","dist/lib/util/FreqCounter.d.ts","dist/lib/util/FreqCounter.test.d.ts","dist/lib/util/IterableLike.d.ts","dist/lib/util/MinHeapQueue.d.ts","dist/lib/util/MinHeapQueue.test.d.ts","dist/lib/util/PairingHeap.d.ts","dist/lib/util/PairingHeap.test.d.ts","dist/lib/util/TextMap.d.ts","dist/lib/util/TextMap.test.d.ts","dist/lib/util/TextRange.d.ts","dist/lib/util/TextRange.regexp.test.d.ts","dist/lib/util/TextRange.test.d.ts","dist/lib/util/Uri.d.ts","dist/lib/util/Uri.test.d.ts","dist/lib/util/errors.d.ts","dist/lib/util/errors.test.d.ts","dist/lib/util/fileReader.d.ts","dist/lib/util/fileReader.test.d.ts","dist/lib/util/findUp.d.ts","dist/lib/util/findUp.test.d.ts","dist/lib/util/findUpFromUrl.d.ts","dist/lib/util/findUpFromUrl.test.d.ts","dist/lib/util/iterableIteratorLib.d.ts","dist/lib/util/iterableIteratorLib.test.d.ts","dist/lib/util/logger.d.ts","dist/lib/util/logger.test.d.ts","dist/lib/util/memorizeLastCall.d.ts","dist/lib/util/memorizeLastCall.test.d.ts","dist/lib/util/memorizerWeak.d.ts","dist/lib/util/memorizerWeak.test.d.ts","dist/lib/util/regexHelper.d.ts","dist/lib/util/repMap.d.ts","dist/lib/util/repMap.test.d.ts","dist/lib/util/resolveFile.d.ts","dist/lib/util/resolveFile.test.d.ts","dist/lib/util/search.d.ts","dist/lib/util/search.test.d.ts","dist/lib/util/simpleCache.d.ts","dist/lib/util/simpleCache.test.d.ts","dist/lib/util/templates.d.ts","dist/lib/util/templates.test.d.ts","dist/lib/util/text.d.ts","dist/lib/util/text.test.d.ts","dist/lib/util/textApi.d.ts","dist/lib/util/textRegex.d.ts","dist/lib/util/textRegex.test.d.ts","dist/lib/util/types.d.ts","dist/lib/util/url.d.ts","dist/lib/util/url.test.d.ts","dist/lib/util/util.d.ts","dist/lib/util/util.test.d.ts","dist/lib/util/wordSplitter.d.ts","dist/lib/util/wordSplitter.perf.d.ts","dist/lib/util/wordSplitter.test.d.ts","dist/lib/validator.d.ts","dist/lib/wordListHelper.d.ts","dist/lib/wordListHelper.test.d.ts","fixtures/docValidator/parser/sample.ts","fixtures/docValidator/sample-with-cspell-directives.ts","fixtures/docValidator/sample-with-directives-errors.ts","fixtures/docValidator/sample-with-errors.ts","fixtures/docValidator/sample-with-many-errors.ts","samples/bug-fixes/bug345.ts","src/lib/Cache/cspell.cache.test.ts","src/lib/Cache/cspell.cache.ts","src/lib/Cache/index.test.ts","src/lib/Cache/index.ts","src/lib/Document/Document.ts","src/lib/Document/index.ts","src/lib/Document/isBinaryDoc.test.ts","src/lib/Document/isBinaryDoc.ts","src/lib/Document/normalizeLanguageIds.ts","src/lib/Document/resolveDocument.ts","src/lib/FeatureFlags/FeatureFalgs.test.ts","src/lib/FeatureFlags/FeatureFlags.ts","src/lib/FeatureFlags/index.ts","src/lib/LanguageIds.test.ts","src/lib/LanguageIds.ts","src/lib/Models/CSpellSettingsInternalDef.ts","src/lib/Models/PatternRegExp.test.ts","src/lib/Models/PatternRegExp.ts","src/lib/Models/Suggestion.ts","src/lib/Models/TextDocument.test.ts","src/lib/Models/TextDocument.ts","src/lib/Models/ValidationIssue.ts","src/lib/Models/ValidationResult.ts","src/lib/Settings/CSpellSettingsServer.test.ts","src/lib/Settings/CSpellSettingsServer.ts","src/lib/Settings/Controller/ImportError.test.ts","src/lib/Settings/Controller/ImportError.ts","src/lib/Settings/Controller/configLoader/PnPSettings.ts","src/lib/Settings/Controller/configLoader/configLoader.test.ts","src/lib/Settings/Controller/configLoader/configLoader.ts","src/lib/Settings/Controller/configLoader/configLocations.ts","src/lib/Settings/Controller/configLoader/configSearch.test.ts","src/lib/Settings/Controller/configLoader/configSearch.ts","src/lib/Settings/Controller/configLoader/configToRawSettings.test.ts","src/lib/Settings/Controller/configLoader/configToRawSettings.ts","src/lib/Settings/Controller/configLoader/defaultConfigLoader.test.ts","src/lib/Settings/Controller/configLoader/defaultConfigLoader.ts","src/lib/Settings/Controller/configLoader/defaultSettings.ts","src/lib/Settings/Controller/configLoader/extractImportErrors.ts","src/lib/Settings/Controller/configLoader/index.ts","src/lib/Settings/Controller/configLoader/normalizeRawSettings.test.ts","src/lib/Settings/Controller/configLoader/normalizeRawSettings.ts","src/lib/Settings/Controller/configLoader/readSettings.ts","src/lib/Settings/Controller/configLoader/readSettingsFiles.ts","src/lib/Settings/Controller/configLoader/toGlobDef.ts","src/lib/Settings/Controller/configLoader/types.ts","src/lib/Settings/Controller/index.ts","src/lib/Settings/Controller/pnpLoader.test.ts","src/lib/Settings/Controller/pnpLoader.ts","src/lib/Settings/DefaultSettings.test.ts","src/lib/Settings/DefaultSettings.ts","src/lib/Settings/DictionaryReferenceCollection.test.ts","src/lib/Settings/DictionaryReferenceCollection.ts","src/lib/Settings/DictionarySettings.test.ts","src/lib/Settings/DictionarySettings.ts","src/lib/Settings/GlobalSettings.test.ts","src/lib/Settings/GlobalSettings.ts","src/lib/Settings/InDocSettings.test.ts","src/lib/Settings/InDocSettings.ts","src/lib/Settings/LanguageSettings.test.ts","src/lib/Settings/LanguageSettings.ts","src/lib/Settings/RegExpPatterns.test.ts","src/lib/Settings/RegExpPatterns.ts","src/lib/Settings/TextDocumentSettings.test.ts","src/lib/Settings/TextDocumentSettings.ts","src/lib/Settings/calcOverrideSettings.ts","src/lib/Settings/cfgStore.test.ts","src/lib/Settings/cfgStore.ts","src/lib/Settings/checkFilenameMatchesGlob.ts","src/lib/Settings/constants.ts","src/lib/Settings/index.link.ts","src/lib/Settings/index.ts","src/lib/Settings/link.test.ts","src/lib/Settings/link.ts","src/lib/Settings/mergeCache.test.ts","src/lib/Settings/mergeCache.ts","src/lib/Settings/mergeList.ts","src/lib/Settings/patterns.test.ts","src/lib/Settings/patterns.ts","src/lib/SpellingDictionary/Dictionaries.test.ts","src/lib/SpellingDictionary/Dictionaries.ts","src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.ts","src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.ts","src/lib/SpellingDictionary/DictionaryController/index.ts","src/lib/SpellingDictionary/DictionaryLoader.test.ts","src/lib/SpellingDictionary/DictionaryLoader.ts","src/lib/SpellingDictionary/SpellingDictionary.ts","src/lib/SpellingDictionary/SpellingDictionaryError.ts","src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.ts","src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.ts","src/lib/SpellingDictionary/SuggestExperimental/entities.ts","src/lib/SpellingDictionary/SuggestExperimental/helpers.test.ts","src/lib/SpellingDictionary/SuggestExperimental/helpers.ts","src/lib/SpellingDictionary/SuggestExperimental/suggest.test.ts","src/lib/SpellingDictionary/SuggestExperimental/suggest.ts","src/lib/SpellingDictionary/index.ts","src/lib/clearCachedFiles.test.ts","src/lib/clearCachedFiles.ts","src/lib/events/events.test.ts","src/lib/events/events.ts","src/lib/events/index.ts","src/lib/exclusionHelper.test.ts","src/lib/exclusionHelper.ts","src/lib/fileSystem.ts","src/lib/getDictionary.ts","src/lib/globs/checkFilenameMatchesGlob.ts","src/lib/globs/getGlobMatcher.ts","src/lib/index.test.ts","src/lib/index.ts","src/lib/leaked-handles.d.ts","src/lib/node-namespace.d.ts","src/lib/perf/index.ts","src/lib/perf/perf.test.ts","src/lib/perf/perf.ts","src/lib/perf/timer.test.ts","src/lib/perf/timer.ts","src/lib/spellCheckFile.test.ts","src/lib/spellCheckFile.ts","src/lib/suggestions.test.ts","src/lib/suggestions.ts","src/lib/test/bugs.spec.ts","src/lib/test/dutch.spec.ts","src/lib/test/english.spec.ts","src/lib/test/fa.spec.ts","src/lib/test/french.spec.ts","src/lib/test/golang.spec.ts","src/lib/test/python.spec.ts","src/lib/textValidation/ValidateTextOptions.ts","src/lib/textValidation/ValidationTypes.ts","src/lib/textValidation/checkText.test.ts","src/lib/textValidation/checkText.ts","src/lib/textValidation/defaultConstants.ts","src/lib/textValidation/determineTextDocumentSettings.test.ts","src/lib/textValidation/determineTextDocumentSettings.ts","src/lib/textValidation/docValidator.test.ts","src/lib/textValidation/docValidator.ts","src/lib/textValidation/index.ts","src/lib/textValidation/isWordValid.test.ts","src/lib/textValidation/isWordValid.ts","src/lib/textValidation/lineValidatorFactory.test.ts","src/lib/textValidation/lineValidatorFactory.ts","src/lib/textValidation/parsedText.test.ts","src/lib/textValidation/parsedText.ts","src/lib/textValidation/settingsToValidateOptions.ts","src/lib/textValidation/textValidator.test.ts","src/lib/textValidation/textValidator.ts","src/lib/textValidation/traceWord.test.ts","src/lib/textValidation/traceWord.ts","src/lib/textValidation/validator.test.ts","src/lib/textValidation/validator.ts","src/lib/trace.test.ts","src/lib/trace.ts","src/lib/util/AutoResolve.test.ts","src/lib/util/AutoResolve.ts","src/lib/util/AutoResolveLRUCache.test.ts","src/lib/util/AutoResolveLRUCache.ts","src/lib/util/Comparable.test.ts","src/lib/util/Comparable.ts","src/lib/util/FreqCounter.test.ts","src/lib/util/FreqCounter.ts","src/lib/util/IterableLike.ts","src/lib/util/MinHeapQueue.test.ts","src/lib/util/MinHeapQueue.ts","src/lib/util/PairingHeap.test.ts","src/lib/util/PairingHeap.ts","src/lib/util/TextMap.test.ts","src/lib/util/TextMap.ts","src/lib/util/TextRange.regexp.test.ts","src/lib/util/TextRange.test.ts","src/lib/util/TextRange.ts","src/lib/util/Uri.test.ts","src/lib/util/Uri.ts","src/lib/util/errors.test.ts","src/lib/util/errors.ts","src/lib/util/fileReader.test.ts","src/lib/util/fileReader.ts","src/lib/util/findUp.test.ts","src/lib/util/findUp.ts","src/lib/util/findUpFromUrl.test.ts","src/lib/util/findUpFromUrl.ts","src/lib/util/iterableIteratorLib.test.ts","src/lib/util/iterableIteratorLib.ts","src/lib/util/logger.test.ts","src/lib/util/logger.ts","src/lib/util/memorizeLastCall.test.ts","src/lib/util/memorizeLastCall.ts","src/lib/util/memorizerWeak.test.ts","src/lib/util/memorizerWeak.ts","src/lib/util/regexHelper.ts","src/lib/util/repMap.test.ts","src/lib/util/repMap.ts","src/lib/util/resolveFile.test.ts","src/lib/util/resolveFile.ts","src/lib/util/search.test.ts","src/lib/util/search.ts","src/lib/util/simpleCache.test.ts","src/lib/util/simpleCache.ts","src/lib/util/templates.test.ts","src/lib/util/templates.ts","src/lib/util/text.test.ts","src/lib/util/text.ts","src/lib/util/textApi.ts","src/lib/util/textRegex.test.ts","src/lib/util/textRegex.ts","src/lib/util/types.ts","src/lib/util/url.test.ts","src/lib/util/url.ts","src/lib/util/util.test.ts","src/lib/util/util.ts","src/lib/util/wordSplitter.perf.ts","src/lib/util/wordSplitter.test.ts","src/lib/util/wordSplitter.ts","src/lib/validator.ts","src/lib/wordListHelper.test.ts","src/lib/wordListHelper.ts",""] diff --git a/packages/flatpack-json/src/__snapshots__/storageV2_fileList.jsonc b/packages/flatpack-json/src/__snapshots__/storageV2_fileList.jsonc new file mode 100644 index 000000000000..6e8114f33105 --- /dev/null +++ b/packages/flatpack-json/src/__snapshots__/storageV2_fileList.jsonc @@ -0,0 +1,679 @@ +[ +"Flatpack JSON v1", +[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43, +44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64, +65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103, +104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128, +129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158, +159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188, +189,190,191,192, +193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, +223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252, +253,254,255,256, +257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286, +287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316, +317,318,319,320, +321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350, +351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380, +381,382,383,384, +385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414, +415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444, +445,446,447,448, +449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478, +479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508, +509,510,511,512, +513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542, +543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572, +573,574,575,576, +577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606, +607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636, +637,638,639,640, +641,642,643,644,645,646,647,648], +"api/api.d.ts", +"dist/esm/Cache/cspell.cache.d.ts", +"dist/esm/Cache/cspell.cache.test.d.ts", +"dist/esm/Cache/index.d.ts", +"dist/esm/Cache/index.test.d.ts", +"dist/esm/Document/Document.d.ts", +"dist/esm/Document/index.d.ts", +"dist/esm/Document/isBinaryDoc.d.ts", +"dist/esm/Document/isBinaryDoc.test.d.ts", +"dist/esm/Document/normalizeLanguageIds.d.ts", +"dist/esm/Document/resolveDocument.d.ts", +"dist/esm/FeatureFlags/FeatureFalgs.test.d.ts", +"dist/esm/FeatureFlags/FeatureFlags.d.ts", +"dist/esm/FeatureFlags/index.d.ts", +"dist/esm/LanguageIds.d.ts", +"dist/esm/LanguageIds.test.d.ts", +"dist/esm/Models/CSpellSettingsInternalDef.d.ts", +"dist/esm/Models/PatternRegExp.d.ts", +"dist/esm/Models/PatternRegExp.test.d.ts", +"dist/esm/Models/Suggestion.d.ts", +"dist/esm/Models/TextDocument.d.ts", +"dist/esm/Models/TextDocument.test.d.ts", +"dist/esm/Models/ValidationIssue.d.ts", +"dist/esm/Models/ValidationResult.d.ts", +"dist/esm/Settings/CSpellSettingsServer.d.ts", +"dist/esm/Settings/CSpellSettingsServer.test.d.ts", +"dist/esm/Settings/Controller/ImportError.d.ts", +"dist/esm/Settings/Controller/ImportError.test.d.ts", +"dist/esm/Settings/Controller/configLoader/PnPSettings.d.ts", +"dist/esm/Settings/Controller/configLoader/configLoader.d.ts", +"dist/esm/Settings/Controller/configLoader/configLoader.test.d.ts", +"dist/esm/Settings/Controller/configLoader/configLocations.d.ts", +"dist/esm/Settings/Controller/configLoader/configSearch.d.ts", +"dist/esm/Settings/Controller/configLoader/configSearch.test.d.ts", +"dist/esm/Settings/Controller/configLoader/configToRawSettings.d.ts", +"dist/esm/Settings/Controller/configLoader/configToRawSettings.test.d.ts", +"dist/esm/Settings/Controller/configLoader/defaultConfigLoader.d.ts", +"dist/esm/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts", +"dist/esm/Settings/Controller/configLoader/defaultSettings.d.ts", +"dist/esm/Settings/Controller/configLoader/extractImportErrors.d.ts", +"dist/esm/Settings/Controller/configLoader/index.d.ts", +"dist/esm/Settings/Controller/configLoader/normalizeRawSettings.d.ts", +"dist/esm/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts", +"dist/esm/Settings/Controller/configLoader/readSettings.d.ts", +"dist/esm/Settings/Controller/configLoader/readSettingsFiles.d.ts", +"dist/esm/Settings/Controller/configLoader/toGlobDef.d.ts", +"dist/esm/Settings/Controller/configLoader/types.d.ts", +"dist/esm/Settings/Controller/index.d.ts", +"dist/esm/Settings/Controller/pnpLoader.d.ts", +"dist/esm/Settings/Controller/pnpLoader.test.d.ts", +"dist/esm/Settings/DefaultSettings.d.ts", +"dist/esm/Settings/DefaultSettings.test.d.ts", +"dist/esm/Settings/DictionaryReferenceCollection.d.ts", +"dist/esm/Settings/DictionaryReferenceCollection.test.d.ts", +"dist/esm/Settings/DictionarySettings.d.ts", +"dist/esm/Settings/DictionarySettings.test.d.ts", +"dist/esm/Settings/GlobalSettings.d.ts", +"dist/esm/Settings/GlobalSettings.test.d.ts", +"dist/esm/Settings/InDocSettings.d.ts", +"dist/esm/Settings/InDocSettings.test.d.ts", +"dist/esm/Settings/LanguageSettings.d.ts", +"dist/esm/Settings/LanguageSettings.test.d.ts", +"dist/esm/Settings/RegExpPatterns.d.ts", +"dist/esm/Settings/RegExpPatterns.test.d.ts", +"dist/esm/Settings/TextDocumentSettings.d.ts", +"dist/esm/Settings/TextDocumentSettings.test.d.ts", +"dist/esm/Settings/calcOverrideSettings.d.ts", +"dist/esm/Settings/cfgStore.d.ts", +"dist/esm/Settings/cfgStore.test.d.ts", +"dist/esm/Settings/checkFilenameMatchesGlob.d.ts", +"dist/esm/Settings/constants.d.ts", +"dist/esm/Settings/index.d.ts", +"dist/esm/Settings/index.link.d.ts", +"dist/esm/Settings/link.d.ts", +"dist/esm/Settings/link.test.d.ts", +"dist/esm/Settings/mergeCache.d.ts", +"dist/esm/Settings/mergeCache.test.d.ts", +"dist/esm/Settings/mergeList.d.ts", +"dist/esm/Settings/patterns.d.ts", +"dist/esm/Settings/patterns.test.d.ts", +"dist/esm/SpellingDictionary/Dictionaries.d.ts", +"dist/esm/SpellingDictionary/Dictionaries.test.d.ts", +"dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts", +"dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts", +"dist/esm/SpellingDictionary/DictionaryController/index.d.ts", +"dist/esm/SpellingDictionary/DictionaryLoader.d.ts", +"dist/esm/SpellingDictionary/DictionaryLoader.test.d.ts", +"dist/esm/SpellingDictionary/SpellingDictionary.d.ts", +"dist/esm/SpellingDictionary/SpellingDictionaryError.d.ts", +"dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts", +"dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts", +"dist/esm/SpellingDictionary/SuggestExperimental/entities.d.ts", +"dist/esm/SpellingDictionary/SuggestExperimental/helpers.d.ts", +"dist/esm/SpellingDictionary/SuggestExperimental/helpers.test.d.ts", +"dist/esm/SpellingDictionary/SuggestExperimental/suggest.d.ts", +"dist/esm/SpellingDictionary/SuggestExperimental/suggest.test.d.ts", +"dist/esm/SpellingDictionary/index.d.ts", +"dist/esm/clearCachedFiles.d.ts", +"dist/esm/clearCachedFiles.test.d.ts", +"dist/esm/events/events.d.ts", +"dist/esm/events/events.test.d.ts", +"dist/esm/events/index.d.ts", +"dist/esm/exclusionHelper.d.ts", +"dist/esm/exclusionHelper.test.d.ts", +"dist/esm/fileSystem.d.ts", +"dist/esm/getDictionary.d.ts", +"dist/esm/globs/checkFilenameMatchesGlob.d.ts", +"dist/esm/globs/getGlobMatcher.d.ts", +"dist/esm/index.d.ts", +"dist/esm/index.test.d.ts", +"dist/esm/perf/index.d.ts", +"dist/esm/perf/perf.d.ts", +"dist/esm/perf/perf.test.d.ts", +"dist/esm/perf/timer.d.ts", +"dist/esm/perf/timer.test.d.ts", +"dist/esm/spellCheckFile.d.ts", +"dist/esm/spellCheckFile.test.d.ts", +"dist/esm/suggestions.d.ts", +"dist/esm/suggestions.test.d.ts", +"dist/esm/test/bugs.spec.d.ts", +"dist/esm/test/dutch.spec.d.ts", +"dist/esm/test/english.spec.d.ts", +"dist/esm/test/fa.spec.d.ts", +"dist/esm/test/french.spec.d.ts", +"dist/esm/test/golang.spec.d.ts", +"dist/esm/test/python.spec.d.ts", +"dist/esm/textValidation/ValidateTextOptions.d.ts", +"dist/esm/textValidation/ValidationTypes.d.ts", +"dist/esm/textValidation/checkText.d.ts", +"dist/esm/textValidation/checkText.test.d.ts", +"dist/esm/textValidation/defaultConstants.d.ts", +"dist/esm/textValidation/determineTextDocumentSettings.d.ts", +"dist/esm/textValidation/determineTextDocumentSettings.test.d.ts", +"dist/esm/textValidation/docValidator.d.ts", +"dist/esm/textValidation/docValidator.test.d.ts", +"dist/esm/textValidation/index.d.ts", +"dist/esm/textValidation/isWordValid.d.ts", +"dist/esm/textValidation/isWordValid.test.d.ts", +"dist/esm/textValidation/lineValidatorFactory.d.ts", +"dist/esm/textValidation/lineValidatorFactory.test.d.ts", +"dist/esm/textValidation/parsedText.d.ts", +"dist/esm/textValidation/parsedText.test.d.ts", +"dist/esm/textValidation/settingsToValidateOptions.d.ts", +"dist/esm/textValidation/textValidator.d.ts", +"dist/esm/textValidation/textValidator.test.d.ts", +"dist/esm/textValidation/traceWord.d.ts", +"dist/esm/textValidation/traceWord.test.d.ts", +"dist/esm/textValidation/validator.d.ts", +"dist/esm/textValidation/validator.test.d.ts", +"dist/esm/trace.d.ts", +"dist/esm/trace.test.d.ts", +"dist/esm/util/AutoResolve.d.ts", +"dist/esm/util/AutoResolve.test.d.ts", +"dist/esm/util/AutoResolveLRUCache.d.ts", +"dist/esm/util/AutoResolveLRUCache.test.d.ts", +"dist/esm/util/Comparable.d.ts", +"dist/esm/util/Comparable.test.d.ts", +"dist/esm/util/FreqCounter.d.ts", +"dist/esm/util/FreqCounter.test.d.ts", +"dist/esm/util/IterableLike.d.ts", +"dist/esm/util/MinHeapQueue.d.ts", +"dist/esm/util/MinHeapQueue.test.d.ts", +"dist/esm/util/PairingHeap.d.ts", +"dist/esm/util/PairingHeap.test.d.ts", +"dist/esm/util/TextMap.d.ts", +"dist/esm/util/TextMap.test.d.ts", +"dist/esm/util/TextRange.d.ts", +"dist/esm/util/TextRange.regexp.test.d.ts", +"dist/esm/util/TextRange.test.d.ts", +"dist/esm/util/Uri.d.ts", +"dist/esm/util/Uri.test.d.ts", +"dist/esm/util/errors.d.ts", +"dist/esm/util/errors.test.d.ts", +"dist/esm/util/fileReader.d.ts", +"dist/esm/util/fileReader.test.d.ts", +"dist/esm/util/findUp.d.ts", +"dist/esm/util/findUp.test.d.ts", +"dist/esm/util/findUpFromUrl.d.ts", +"dist/esm/util/findUpFromUrl.test.d.ts", +"dist/esm/util/iterableIteratorLib.d.ts", +"dist/esm/util/iterableIteratorLib.test.d.ts", +"dist/esm/util/logger.d.ts", +"dist/esm/util/logger.test.d.ts", +"dist/esm/util/memorizeLastCall.d.ts", +"dist/esm/util/memorizeLastCall.test.d.ts", +"dist/esm/util/memorizerWeak.d.ts", +"dist/esm/util/memorizerWeak.test.d.ts", +"dist/esm/util/regexHelper.d.ts", +"dist/esm/util/repMap.d.ts", +"dist/esm/util/repMap.test.d.ts", +"dist/esm/util/resolveFile.d.ts", +"dist/esm/util/resolveFile.test.d.ts", +"dist/esm/util/search.d.ts", +"dist/esm/util/search.test.d.ts", +"dist/esm/util/simpleCache.d.ts", +"dist/esm/util/simpleCache.test.d.ts", +"dist/esm/util/templates.d.ts", +"dist/esm/util/templates.test.d.ts", +"dist/esm/util/text.d.ts", +"dist/esm/util/text.test.d.ts", +"dist/esm/util/textRegex.d.ts", +"dist/esm/util/textRegex.test.d.ts", +"dist/esm/util/types.d.ts", +"dist/esm/util/url.d.ts", +"dist/esm/util/url.test.d.ts", +"dist/esm/util/util.d.ts", +"dist/esm/util/util.test.d.ts", +"dist/esm/util/wordSplitter.d.ts", +"dist/esm/util/wordSplitter.test.d.ts", +"dist/esm/validator.d.ts", +"dist/esm/wordListHelper.d.ts", +"dist/esm/wordListHelper.test.d.ts", +"dist/lib/Cache/cspell.cache.d.ts", +"dist/lib/Cache/cspell.cache.test.d.ts", +"dist/lib/Cache/index.d.ts", +"dist/lib/Cache/index.test.d.ts", +"dist/lib/Document/Document.d.ts", +"dist/lib/Document/index.d.ts", +"dist/lib/Document/isBinaryDoc.d.ts", +"dist/lib/Document/isBinaryDoc.test.d.ts", +"dist/lib/Document/normalizeLanguageIds.d.ts", +"dist/lib/Document/resolveDocument.d.ts", +"dist/lib/FeatureFlags/FeatureFalgs.test.d.ts", +"dist/lib/FeatureFlags/FeatureFlags.d.ts", +"dist/lib/FeatureFlags/index.d.ts", +"dist/lib/LanguageIds.d.ts", +"dist/lib/LanguageIds.test.d.ts", +"dist/lib/Models/CSpellSettingsInternalDef.d.ts", +"dist/lib/Models/PatternRegExp.d.ts", +"dist/lib/Models/PatternRegExp.test.d.ts", +"dist/lib/Models/Suggestion.d.ts", +"dist/lib/Models/TextDocument.d.ts", +"dist/lib/Models/TextDocument.test.d.ts", +"dist/lib/Models/ValidationIssue.d.ts", +"dist/lib/Models/ValidationResult.d.ts", +"dist/lib/Settings/CSpellSettingsServer.d.ts", +"dist/lib/Settings/CSpellSettingsServer.test.d.ts", +"dist/lib/Settings/Controller/ImportError.d.ts", +"dist/lib/Settings/Controller/ImportError.test.d.ts", +"dist/lib/Settings/Controller/configLoader/PnPSettings.d.ts", +"dist/lib/Settings/Controller/configLoader/configLoader.d.ts", +"dist/lib/Settings/Controller/configLoader/configLoader.test.d.ts", +"dist/lib/Settings/Controller/configLoader/configLocations.d.ts", +"dist/lib/Settings/Controller/configLoader/configSearch.d.ts", +"dist/lib/Settings/Controller/configLoader/configSearch.test.d.ts", +"dist/lib/Settings/Controller/configLoader/configToRawSettings.d.ts", +"dist/lib/Settings/Controller/configLoader/configToRawSettings.test.d.ts", +"dist/lib/Settings/Controller/configLoader/defaultConfigLoader.d.ts", +"dist/lib/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts", +"dist/lib/Settings/Controller/configLoader/defaultSettings.d.ts", +"dist/lib/Settings/Controller/configLoader/extractImportErrors.d.ts", +"dist/lib/Settings/Controller/configLoader/index.d.ts", +"dist/lib/Settings/Controller/configLoader/normalizeRawSettings.d.ts", +"dist/lib/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts", +"dist/lib/Settings/Controller/configLoader/readSettings.d.ts", +"dist/lib/Settings/Controller/configLoader/readSettingsFiles.d.ts", +"dist/lib/Settings/Controller/configLoader/toGlobDef.d.ts", +"dist/lib/Settings/Controller/configLoader/types.d.ts", +"dist/lib/Settings/Controller/index.d.ts", +"dist/lib/Settings/Controller/pnpLoader.d.ts", +"dist/lib/Settings/Controller/pnpLoader.test.d.ts", +"dist/lib/Settings/DefaultSettings.d.ts", +"dist/lib/Settings/DefaultSettings.test.d.ts", +"dist/lib/Settings/DictionaryReferenceCollection.d.ts", +"dist/lib/Settings/DictionaryReferenceCollection.test.d.ts", +"dist/lib/Settings/DictionarySettings.d.ts", +"dist/lib/Settings/DictionarySettings.test.d.ts", +"dist/lib/Settings/GlobalSettings.d.ts", +"dist/lib/Settings/GlobalSettings.test.d.ts", +"dist/lib/Settings/InDocSettings.d.ts", +"dist/lib/Settings/InDocSettings.test.d.ts", +"dist/lib/Settings/LanguageSettings.d.ts", +"dist/lib/Settings/LanguageSettings.test.d.ts", +"dist/lib/Settings/RegExpPatterns.d.ts", +"dist/lib/Settings/RegExpPatterns.test.d.ts", +"dist/lib/Settings/TextDocumentSettings.d.ts", +"dist/lib/Settings/TextDocumentSettings.test.d.ts", +"dist/lib/Settings/calcOverrideSettings.d.ts", +"dist/lib/Settings/cfgStore.d.ts", +"dist/lib/Settings/cfgStore.test.d.ts", +"dist/lib/Settings/checkFilenameMatchesGlob.d.ts", +"dist/lib/Settings/constants.d.ts", +"dist/lib/Settings/index.d.ts", +"dist/lib/Settings/index.link.d.ts", +"dist/lib/Settings/link.d.ts", +"dist/lib/Settings/link.test.d.ts", +"dist/lib/Settings/mergeCache.d.ts", +"dist/lib/Settings/mergeCache.test.d.ts", +"dist/lib/Settings/mergeList.d.ts", +"dist/lib/Settings/patterns.d.ts", +"dist/lib/Settings/patterns.test.d.ts", +"dist/lib/SpellingDictionary/Dictionaries.d.ts", +"dist/lib/SpellingDictionary/Dictionaries.test.d.ts", +"dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts", +"dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts", +"dist/lib/SpellingDictionary/DictionaryController/index.d.ts", +"dist/lib/SpellingDictionary/DictionaryLoader.d.ts", +"dist/lib/SpellingDictionary/DictionaryLoader.test.d.ts", +"dist/lib/SpellingDictionary/SpellingDictionary.d.ts", +"dist/lib/SpellingDictionary/SpellingDictionaryError.d.ts", +"dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts", +"dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts", +"dist/lib/SpellingDictionary/SuggestExperimental/entities.d.ts", +"dist/lib/SpellingDictionary/SuggestExperimental/helpers.d.ts", +"dist/lib/SpellingDictionary/SuggestExperimental/helpers.test.d.ts", +"dist/lib/SpellingDictionary/SuggestExperimental/suggest.d.ts", +"dist/lib/SpellingDictionary/SuggestExperimental/suggest.test.d.ts", +"dist/lib/SpellingDictionary/index.d.ts", +"dist/lib/clearCachedFiles.d.ts", +"dist/lib/clearCachedFiles.test.d.ts", +"dist/lib/events/events.d.ts", +"dist/lib/events/events.test.d.ts", +"dist/lib/events/index.d.ts", +"dist/lib/exclusionHelper.d.ts", +"dist/lib/exclusionHelper.test.d.ts", +"dist/lib/fileSystem.d.ts", +"dist/lib/getDictionary.d.ts", +"dist/lib/globs/checkFilenameMatchesGlob.d.ts", +"dist/lib/globs/getGlobMatcher.d.ts", +"dist/lib/index.d.ts", +"dist/lib/index.test.d.ts", +"dist/lib/perf/index.d.ts", +"dist/lib/perf/perf.d.ts", +"dist/lib/perf/perf.test.d.ts", +"dist/lib/perf/timer.d.ts", +"dist/lib/perf/timer.test.d.ts", +"dist/lib/spellCheckFile.d.ts", +"dist/lib/spellCheckFile.test.d.ts", +"dist/lib/suggestions.d.ts", +"dist/lib/suggestions.test.d.ts", +"dist/lib/test/bugs.spec.d.ts", +"dist/lib/test/dutch.spec.d.ts", +"dist/lib/test/english.spec.d.ts", +"dist/lib/test/fa.spec.d.ts", +"dist/lib/test/french.spec.d.ts", +"dist/lib/test/golang.spec.d.ts", +"dist/lib/test/python.spec.d.ts", +"dist/lib/textValidation/ValidateTextOptions.d.ts", +"dist/lib/textValidation/ValidationTypes.d.ts", +"dist/lib/textValidation/checkText.d.ts", +"dist/lib/textValidation/checkText.test.d.ts", +"dist/lib/textValidation/defaultConstants.d.ts", +"dist/lib/textValidation/determineTextDocumentSettings.d.ts", +"dist/lib/textValidation/determineTextDocumentSettings.test.d.ts", +"dist/lib/textValidation/docValidator.d.ts", +"dist/lib/textValidation/docValidator.test.d.ts", +"dist/lib/textValidation/index.d.ts", +"dist/lib/textValidation/isWordValid.d.ts", +"dist/lib/textValidation/isWordValid.test.d.ts", +"dist/lib/textValidation/lineValidatorFactory.d.ts", +"dist/lib/textValidation/lineValidatorFactory.test.d.ts", +"dist/lib/textValidation/parsedText.d.ts", +"dist/lib/textValidation/parsedText.test.d.ts", +"dist/lib/textValidation/settingsToValidateOptions.d.ts", +"dist/lib/textValidation/textValidator.d.ts", +"dist/lib/textValidation/textValidator.test.d.ts", +"dist/lib/textValidation/traceWord.d.ts", +"dist/lib/textValidation/traceWord.test.d.ts", +"dist/lib/textValidation/validator.d.ts", +"dist/lib/textValidation/validator.test.d.ts", +"dist/lib/trace.d.ts", +"dist/lib/trace.test.d.ts", +"dist/lib/util/AutoResolve.d.ts", +"dist/lib/util/AutoResolve.test.d.ts", +"dist/lib/util/AutoResolveLRUCache.d.ts", +"dist/lib/util/AutoResolveLRUCache.test.d.ts", +"dist/lib/util/Comparable.d.ts", +"dist/lib/util/Comparable.test.d.ts", +"dist/lib/util/FreqCounter.d.ts", +"dist/lib/util/FreqCounter.test.d.ts", +"dist/lib/util/IterableLike.d.ts", +"dist/lib/util/MinHeapQueue.d.ts", +"dist/lib/util/MinHeapQueue.test.d.ts", +"dist/lib/util/PairingHeap.d.ts", +"dist/lib/util/PairingHeap.test.d.ts", +"dist/lib/util/TextMap.d.ts", +"dist/lib/util/TextMap.test.d.ts", +"dist/lib/util/TextRange.d.ts", +"dist/lib/util/TextRange.regexp.test.d.ts", +"dist/lib/util/TextRange.test.d.ts", +"dist/lib/util/Uri.d.ts", +"dist/lib/util/Uri.test.d.ts", +"dist/lib/util/errors.d.ts", +"dist/lib/util/errors.test.d.ts", +"dist/lib/util/fileReader.d.ts", +"dist/lib/util/fileReader.test.d.ts", +"dist/lib/util/findUp.d.ts", +"dist/lib/util/findUp.test.d.ts", +"dist/lib/util/findUpFromUrl.d.ts", +"dist/lib/util/findUpFromUrl.test.d.ts", +"dist/lib/util/iterableIteratorLib.d.ts", +"dist/lib/util/iterableIteratorLib.test.d.ts", +"dist/lib/util/logger.d.ts", +"dist/lib/util/logger.test.d.ts", +"dist/lib/util/memorizeLastCall.d.ts", +"dist/lib/util/memorizeLastCall.test.d.ts", +"dist/lib/util/memorizerWeak.d.ts", +"dist/lib/util/memorizerWeak.test.d.ts", +"dist/lib/util/regexHelper.d.ts", +"dist/lib/util/repMap.d.ts", +"dist/lib/util/repMap.test.d.ts", +"dist/lib/util/resolveFile.d.ts", +"dist/lib/util/resolveFile.test.d.ts", +"dist/lib/util/search.d.ts", +"dist/lib/util/search.test.d.ts", +"dist/lib/util/simpleCache.d.ts", +"dist/lib/util/simpleCache.test.d.ts", +"dist/lib/util/templates.d.ts", +"dist/lib/util/templates.test.d.ts", +"dist/lib/util/text.d.ts", +"dist/lib/util/text.test.d.ts", +"dist/lib/util/textApi.d.ts", +"dist/lib/util/textRegex.d.ts", +"dist/lib/util/textRegex.test.d.ts", +"dist/lib/util/types.d.ts", +"dist/lib/util/url.d.ts", +"dist/lib/util/url.test.d.ts", +"dist/lib/util/util.d.ts", +"dist/lib/util/util.test.d.ts", +"dist/lib/util/wordSplitter.d.ts", +"dist/lib/util/wordSplitter.perf.d.ts", +"dist/lib/util/wordSplitter.test.d.ts", +"dist/lib/validator.d.ts", +"dist/lib/wordListHelper.d.ts", +"dist/lib/wordListHelper.test.d.ts", +"fixtures/docValidator/parser/sample.ts", +"fixtures/docValidator/sample-with-cspell-directives.ts", +"fixtures/docValidator/sample-with-directives-errors.ts", +"fixtures/docValidator/sample-with-errors.ts", +"fixtures/docValidator/sample-with-many-errors.ts", +"samples/bug-fixes/bug345.ts", +"src/lib/Cache/cspell.cache.test.ts", +"src/lib/Cache/cspell.cache.ts", +"src/lib/Cache/index.test.ts", +"src/lib/Cache/index.ts", +"src/lib/Document/Document.ts", +"src/lib/Document/index.ts", +"src/lib/Document/isBinaryDoc.test.ts", +"src/lib/Document/isBinaryDoc.ts", +"src/lib/Document/normalizeLanguageIds.ts", +"src/lib/Document/resolveDocument.ts", +"src/lib/FeatureFlags/FeatureFalgs.test.ts", +"src/lib/FeatureFlags/FeatureFlags.ts", +"src/lib/FeatureFlags/index.ts", +"src/lib/LanguageIds.test.ts", +"src/lib/LanguageIds.ts", +"src/lib/Models/CSpellSettingsInternalDef.ts", +"src/lib/Models/PatternRegExp.test.ts", +"src/lib/Models/PatternRegExp.ts", +"src/lib/Models/Suggestion.ts", +"src/lib/Models/TextDocument.test.ts", +"src/lib/Models/TextDocument.ts", +"src/lib/Models/ValidationIssue.ts", +"src/lib/Models/ValidationResult.ts", +"src/lib/Settings/CSpellSettingsServer.test.ts", +"src/lib/Settings/CSpellSettingsServer.ts", +"src/lib/Settings/Controller/ImportError.test.ts", +"src/lib/Settings/Controller/ImportError.ts", +"src/lib/Settings/Controller/configLoader/PnPSettings.ts", +"src/lib/Settings/Controller/configLoader/configLoader.test.ts", +"src/lib/Settings/Controller/configLoader/configLoader.ts", +"src/lib/Settings/Controller/configLoader/configLocations.ts", +"src/lib/Settings/Controller/configLoader/configSearch.test.ts", +"src/lib/Settings/Controller/configLoader/configSearch.ts", +"src/lib/Settings/Controller/configLoader/configToRawSettings.test.ts", +"src/lib/Settings/Controller/configLoader/configToRawSettings.ts", +"src/lib/Settings/Controller/configLoader/defaultConfigLoader.test.ts", +"src/lib/Settings/Controller/configLoader/defaultConfigLoader.ts", +"src/lib/Settings/Controller/configLoader/defaultSettings.ts", +"src/lib/Settings/Controller/configLoader/extractImportErrors.ts", +"src/lib/Settings/Controller/configLoader/index.ts", +"src/lib/Settings/Controller/configLoader/normalizeRawSettings.test.ts", +"src/lib/Settings/Controller/configLoader/normalizeRawSettings.ts", +"src/lib/Settings/Controller/configLoader/readSettings.ts", +"src/lib/Settings/Controller/configLoader/readSettingsFiles.ts", +"src/lib/Settings/Controller/configLoader/toGlobDef.ts", +"src/lib/Settings/Controller/configLoader/types.ts", +"src/lib/Settings/Controller/index.ts", +"src/lib/Settings/Controller/pnpLoader.test.ts", +"src/lib/Settings/Controller/pnpLoader.ts", +"src/lib/Settings/DefaultSettings.test.ts", +"src/lib/Settings/DefaultSettings.ts", +"src/lib/Settings/DictionaryReferenceCollection.test.ts", +"src/lib/Settings/DictionaryReferenceCollection.ts", +"src/lib/Settings/DictionarySettings.test.ts", +"src/lib/Settings/DictionarySettings.ts", +"src/lib/Settings/GlobalSettings.test.ts", +"src/lib/Settings/GlobalSettings.ts", +"src/lib/Settings/InDocSettings.test.ts", +"src/lib/Settings/InDocSettings.ts", +"src/lib/Settings/LanguageSettings.test.ts", +"src/lib/Settings/LanguageSettings.ts", +"src/lib/Settings/RegExpPatterns.test.ts", +"src/lib/Settings/RegExpPatterns.ts", +"src/lib/Settings/TextDocumentSettings.test.ts", +"src/lib/Settings/TextDocumentSettings.ts", +"src/lib/Settings/calcOverrideSettings.ts", +"src/lib/Settings/cfgStore.test.ts", +"src/lib/Settings/cfgStore.ts", +"src/lib/Settings/checkFilenameMatchesGlob.ts", +"src/lib/Settings/constants.ts", +"src/lib/Settings/index.link.ts", +"src/lib/Settings/index.ts", +"src/lib/Settings/link.test.ts", +"src/lib/Settings/link.ts", +"src/lib/Settings/mergeCache.test.ts", +"src/lib/Settings/mergeCache.ts", +"src/lib/Settings/mergeList.ts", +"src/lib/Settings/patterns.test.ts", +"src/lib/Settings/patterns.ts", +"src/lib/SpellingDictionary/Dictionaries.test.ts", +"src/lib/SpellingDictionary/Dictionaries.ts", +"src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.ts", +"src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.ts", +"src/lib/SpellingDictionary/DictionaryController/index.ts", +"src/lib/SpellingDictionary/DictionaryLoader.test.ts", +"src/lib/SpellingDictionary/DictionaryLoader.ts", +"src/lib/SpellingDictionary/SpellingDictionary.ts", +"src/lib/SpellingDictionary/SpellingDictionaryError.ts", +"src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.ts", +"src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.ts", +"src/lib/SpellingDictionary/SuggestExperimental/entities.ts", +"src/lib/SpellingDictionary/SuggestExperimental/helpers.test.ts", +"src/lib/SpellingDictionary/SuggestExperimental/helpers.ts", +"src/lib/SpellingDictionary/SuggestExperimental/suggest.test.ts", +"src/lib/SpellingDictionary/SuggestExperimental/suggest.ts", +"src/lib/SpellingDictionary/index.ts", +"src/lib/clearCachedFiles.test.ts", +"src/lib/clearCachedFiles.ts", +"src/lib/events/events.test.ts", +"src/lib/events/events.ts", +"src/lib/events/index.ts", +"src/lib/exclusionHelper.test.ts", +"src/lib/exclusionHelper.ts", +"src/lib/fileSystem.ts", +"src/lib/getDictionary.ts", +"src/lib/globs/checkFilenameMatchesGlob.ts", +"src/lib/globs/getGlobMatcher.ts", +"src/lib/index.test.ts", +"src/lib/index.ts", +"src/lib/leaked-handles.d.ts", +"src/lib/node-namespace.d.ts", +"src/lib/perf/index.ts", +"src/lib/perf/perf.test.ts", +"src/lib/perf/perf.ts", +"src/lib/perf/timer.test.ts", +"src/lib/perf/timer.ts", +"src/lib/spellCheckFile.test.ts", +"src/lib/spellCheckFile.ts", +"src/lib/suggestions.test.ts", +"src/lib/suggestions.ts", +"src/lib/test/bugs.spec.ts", +"src/lib/test/dutch.spec.ts", +"src/lib/test/english.spec.ts", +"src/lib/test/fa.spec.ts", +"src/lib/test/french.spec.ts", +"src/lib/test/golang.spec.ts", +"src/lib/test/python.spec.ts", +"src/lib/textValidation/ValidateTextOptions.ts", +"src/lib/textValidation/ValidationTypes.ts", +"src/lib/textValidation/checkText.test.ts", +"src/lib/textValidation/checkText.ts", +"src/lib/textValidation/defaultConstants.ts", +"src/lib/textValidation/determineTextDocumentSettings.test.ts", +"src/lib/textValidation/determineTextDocumentSettings.ts", +"src/lib/textValidation/docValidator.test.ts", +"src/lib/textValidation/docValidator.ts", +"src/lib/textValidation/index.ts", +"src/lib/textValidation/isWordValid.test.ts", +"src/lib/textValidation/isWordValid.ts", +"src/lib/textValidation/lineValidatorFactory.test.ts", +"src/lib/textValidation/lineValidatorFactory.ts", +"src/lib/textValidation/parsedText.test.ts", +"src/lib/textValidation/parsedText.ts", +"src/lib/textValidation/settingsToValidateOptions.ts", +"src/lib/textValidation/textValidator.test.ts", +"src/lib/textValidation/textValidator.ts", +"src/lib/textValidation/traceWord.test.ts", +"src/lib/textValidation/traceWord.ts", +"src/lib/textValidation/validator.test.ts", +"src/lib/textValidation/validator.ts", +"src/lib/trace.test.ts", +"src/lib/trace.ts", +"src/lib/util/AutoResolve.test.ts", +"src/lib/util/AutoResolve.ts", +"src/lib/util/AutoResolveLRUCache.test.ts", +"src/lib/util/AutoResolveLRUCache.ts", +"src/lib/util/Comparable.test.ts", +"src/lib/util/Comparable.ts", +"src/lib/util/FreqCounter.test.ts", +"src/lib/util/FreqCounter.ts", +"src/lib/util/IterableLike.ts", +"src/lib/util/MinHeapQueue.test.ts", +"src/lib/util/MinHeapQueue.ts", +"src/lib/util/PairingHeap.test.ts", +"src/lib/util/PairingHeap.ts", +"src/lib/util/TextMap.test.ts", +"src/lib/util/TextMap.ts", +"src/lib/util/TextRange.regexp.test.ts", +"src/lib/util/TextRange.test.ts", +"src/lib/util/TextRange.ts", +"src/lib/util/Uri.test.ts", +"src/lib/util/Uri.ts", +"src/lib/util/errors.test.ts", +"src/lib/util/errors.ts", +"src/lib/util/fileReader.test.ts", +"src/lib/util/fileReader.ts", +"src/lib/util/findUp.test.ts", +"src/lib/util/findUp.ts", +"src/lib/util/findUpFromUrl.test.ts", +"src/lib/util/findUpFromUrl.ts", +"src/lib/util/iterableIteratorLib.test.ts", +"src/lib/util/iterableIteratorLib.ts", +"src/lib/util/logger.test.ts", +"src/lib/util/logger.ts", +"src/lib/util/memorizeLastCall.test.ts", +"src/lib/util/memorizeLastCall.ts", +"src/lib/util/memorizerWeak.test.ts", +"src/lib/util/memorizerWeak.ts", +"src/lib/util/regexHelper.ts", +"src/lib/util/repMap.test.ts", +"src/lib/util/repMap.ts", +"src/lib/util/resolveFile.test.ts", +"src/lib/util/resolveFile.ts", +"src/lib/util/search.test.ts", +"src/lib/util/search.ts", +"src/lib/util/simpleCache.test.ts", +"src/lib/util/simpleCache.ts", +"src/lib/util/templates.test.ts", +"src/lib/util/templates.ts", +"src/lib/util/text.test.ts", +"src/lib/util/text.ts", +"src/lib/util/textApi.ts", +"src/lib/util/textRegex.test.ts", +"src/lib/util/textRegex.ts", +"src/lib/util/types.ts", +"src/lib/util/url.test.ts", +"src/lib/util/url.ts", +"src/lib/util/util.test.ts", +"src/lib/util/util.ts", +"src/lib/util/wordSplitter.perf.ts", +"src/lib/util/wordSplitter.test.ts", +"src/lib/util/wordSplitter.ts", +"src/lib/validator.ts", +"src/lib/wordListHelper.test.ts", +"src/lib/wordListHelper.ts", +"" +] diff --git a/packages/flatpack-json/src/__snapshots__/storageV2_fileObjects.data.json b/packages/flatpack-json/src/__snapshots__/storageV2_fileObjects.data.json new file mode 100644 index 000000000000..bdd1c2800aaa --- /dev/null +++ b/packages/flatpack-json/src/__snapshots__/storageV2_fileObjects.data.json @@ -0,0 +1 @@ +[{"filename":"api/api.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Cache/cspell.cache.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Cache/cspell.cache.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Cache/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Cache/index.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Document/Document.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Document/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Document/isBinaryDoc.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Document/isBinaryDoc.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Document/normalizeLanguageIds.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Document/resolveDocument.d.ts","fileType":["typescript"]},{"filename":"dist/esm/FeatureFlags/FeatureFalgs.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/FeatureFlags/FeatureFlags.d.ts","fileType":["typescript"]},{"filename":"dist/esm/FeatureFlags/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/LanguageIds.d.ts","fileType":["typescript"]},{"filename":"dist/esm/LanguageIds.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/CSpellSettingsInternalDef.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/PatternRegExp.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/PatternRegExp.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/Suggestion.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/TextDocument.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/TextDocument.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/ValidationIssue.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Models/ValidationResult.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/CSpellSettingsServer.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/CSpellSettingsServer.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/ImportError.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/ImportError.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/PnPSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/configLoader.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/configLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/configLocations.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/configSearch.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/configSearch.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/configToRawSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/configToRawSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/defaultConfigLoader.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/defaultSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/extractImportErrors.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/normalizeRawSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/readSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/readSettingsFiles.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/toGlobDef.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/configLoader/types.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/pnpLoader.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/Controller/pnpLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/DefaultSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/DefaultSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/DictionaryReferenceCollection.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/DictionaryReferenceCollection.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/DictionarySettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/DictionarySettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/GlobalSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/GlobalSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/InDocSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/InDocSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/LanguageSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/LanguageSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/RegExpPatterns.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/RegExpPatterns.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/TextDocumentSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/TextDocumentSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/calcOverrideSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/cfgStore.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/cfgStore.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/checkFilenameMatchesGlob.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/constants.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/index.link.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/link.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/link.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/mergeCache.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/mergeCache.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/mergeList.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/patterns.d.ts","fileType":["typescript"]},{"filename":"dist/esm/Settings/patterns.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/Dictionaries.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/Dictionaries.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/DictionaryController/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/DictionaryLoader.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/DictionaryLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SpellingDictionary.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SpellingDictionaryError.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SuggestExperimental/entities.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SuggestExperimental/helpers.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SuggestExperimental/helpers.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SuggestExperimental/suggest.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/SuggestExperimental/suggest.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/SpellingDictionary/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/clearCachedFiles.d.ts","fileType":["typescript"]},{"filename":"dist/esm/clearCachedFiles.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/events/events.d.ts","fileType":["typescript"]},{"filename":"dist/esm/events/events.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/events/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/exclusionHelper.d.ts","fileType":["typescript"]},{"filename":"dist/esm/exclusionHelper.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/fileSystem.d.ts","fileType":["typescript"]},{"filename":"dist/esm/getDictionary.d.ts","fileType":["typescript"]},{"filename":"dist/esm/globs/checkFilenameMatchesGlob.d.ts","fileType":["typescript"]},{"filename":"dist/esm/globs/getGlobMatcher.d.ts","fileType":["typescript"]},{"filename":"dist/esm/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/index.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/perf/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/perf/perf.d.ts","fileType":["typescript"]},{"filename":"dist/esm/perf/perf.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/perf/timer.d.ts","fileType":["typescript"]},{"filename":"dist/esm/perf/timer.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/spellCheckFile.d.ts","fileType":["typescript"]},{"filename":"dist/esm/spellCheckFile.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/suggestions.d.ts","fileType":["typescript"]},{"filename":"dist/esm/suggestions.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/test/bugs.spec.d.ts","fileType":["typescript"]},{"filename":"dist/esm/test/dutch.spec.d.ts","fileType":["typescript"]},{"filename":"dist/esm/test/english.spec.d.ts","fileType":["typescript"]},{"filename":"dist/esm/test/fa.spec.d.ts","fileType":["typescript"]},{"filename":"dist/esm/test/french.spec.d.ts","fileType":["typescript"]},{"filename":"dist/esm/test/golang.spec.d.ts","fileType":["typescript"]},{"filename":"dist/esm/test/python.spec.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/ValidateTextOptions.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/ValidationTypes.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/checkText.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/checkText.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/defaultConstants.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/determineTextDocumentSettings.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/determineTextDocumentSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/docValidator.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/docValidator.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/index.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/isWordValid.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/isWordValid.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/lineValidatorFactory.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/lineValidatorFactory.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/parsedText.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/parsedText.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/settingsToValidateOptions.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/textValidator.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/textValidator.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/traceWord.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/traceWord.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/validator.d.ts","fileType":["typescript"]},{"filename":"dist/esm/textValidation/validator.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/trace.d.ts","fileType":["typescript"]},{"filename":"dist/esm/trace.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/AutoResolve.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/AutoResolve.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/AutoResolveLRUCache.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/AutoResolveLRUCache.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/Comparable.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/Comparable.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/FreqCounter.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/FreqCounter.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/IterableLike.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/MinHeapQueue.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/MinHeapQueue.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/PairingHeap.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/PairingHeap.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/TextMap.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/TextMap.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/TextRange.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/TextRange.regexp.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/TextRange.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/Uri.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/Uri.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/errors.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/errors.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/fileReader.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/fileReader.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/findUp.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/findUp.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/findUpFromUrl.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/findUpFromUrl.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/iterableIteratorLib.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/iterableIteratorLib.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/logger.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/logger.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/memorizeLastCall.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/memorizeLastCall.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/memorizerWeak.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/memorizerWeak.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/regexHelper.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/repMap.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/repMap.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/resolveFile.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/resolveFile.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/search.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/search.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/simpleCache.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/simpleCache.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/templates.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/templates.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/text.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/text.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/textRegex.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/textRegex.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/types.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/url.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/url.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/util.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/util.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/wordSplitter.d.ts","fileType":["typescript"]},{"filename":"dist/esm/util/wordSplitter.test.d.ts","fileType":["typescript"]},{"filename":"dist/esm/validator.d.ts","fileType":["typescript"]},{"filename":"dist/esm/wordListHelper.d.ts","fileType":["typescript"]},{"filename":"dist/esm/wordListHelper.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Cache/cspell.cache.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Cache/cspell.cache.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Cache/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Cache/index.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Document/Document.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Document/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Document/isBinaryDoc.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Document/isBinaryDoc.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Document/normalizeLanguageIds.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Document/resolveDocument.d.ts","fileType":["typescript"]},{"filename":"dist/lib/FeatureFlags/FeatureFalgs.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/FeatureFlags/FeatureFlags.d.ts","fileType":["typescript"]},{"filename":"dist/lib/FeatureFlags/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/LanguageIds.d.ts","fileType":["typescript"]},{"filename":"dist/lib/LanguageIds.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/CSpellSettingsInternalDef.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/PatternRegExp.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/PatternRegExp.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/Suggestion.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/TextDocument.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/TextDocument.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/ValidationIssue.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Models/ValidationResult.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/CSpellSettingsServer.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/CSpellSettingsServer.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/ImportError.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/ImportError.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/PnPSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/configLoader.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/configLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/configLocations.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/configSearch.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/configSearch.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/configToRawSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/configToRawSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/defaultConfigLoader.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/defaultSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/extractImportErrors.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/normalizeRawSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/readSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/readSettingsFiles.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/toGlobDef.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/configLoader/types.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/pnpLoader.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/Controller/pnpLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/DefaultSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/DefaultSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/DictionaryReferenceCollection.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/DictionaryReferenceCollection.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/DictionarySettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/DictionarySettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/GlobalSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/GlobalSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/InDocSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/InDocSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/LanguageSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/LanguageSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/RegExpPatterns.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/RegExpPatterns.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/TextDocumentSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/TextDocumentSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/calcOverrideSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/cfgStore.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/cfgStore.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/checkFilenameMatchesGlob.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/constants.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/index.link.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/link.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/link.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/mergeCache.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/mergeCache.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/mergeList.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/patterns.d.ts","fileType":["typescript"]},{"filename":"dist/lib/Settings/patterns.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/Dictionaries.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/Dictionaries.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/DictionaryController/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/DictionaryLoader.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/DictionaryLoader.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SpellingDictionary.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SpellingDictionaryError.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SuggestExperimental/entities.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SuggestExperimental/helpers.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SuggestExperimental/helpers.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SuggestExperimental/suggest.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/SuggestExperimental/suggest.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/SpellingDictionary/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/clearCachedFiles.d.ts","fileType":["typescript"]},{"filename":"dist/lib/clearCachedFiles.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/events/events.d.ts","fileType":["typescript"]},{"filename":"dist/lib/events/events.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/events/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/exclusionHelper.d.ts","fileType":["typescript"]},{"filename":"dist/lib/exclusionHelper.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/fileSystem.d.ts","fileType":["typescript"]},{"filename":"dist/lib/getDictionary.d.ts","fileType":["typescript"]},{"filename":"dist/lib/globs/checkFilenameMatchesGlob.d.ts","fileType":["typescript"]},{"filename":"dist/lib/globs/getGlobMatcher.d.ts","fileType":["typescript"]},{"filename":"dist/lib/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/index.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/perf/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/perf/perf.d.ts","fileType":["typescript"]},{"filename":"dist/lib/perf/perf.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/perf/timer.d.ts","fileType":["typescript"]},{"filename":"dist/lib/perf/timer.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/spellCheckFile.d.ts","fileType":["typescript"]},{"filename":"dist/lib/spellCheckFile.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/suggestions.d.ts","fileType":["typescript"]},{"filename":"dist/lib/suggestions.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/test/bugs.spec.d.ts","fileType":["typescript"]},{"filename":"dist/lib/test/dutch.spec.d.ts","fileType":["typescript"]},{"filename":"dist/lib/test/english.spec.d.ts","fileType":["typescript"]},{"filename":"dist/lib/test/fa.spec.d.ts","fileType":["typescript"]},{"filename":"dist/lib/test/french.spec.d.ts","fileType":["typescript"]},{"filename":"dist/lib/test/golang.spec.d.ts","fileType":["typescript"]},{"filename":"dist/lib/test/python.spec.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/ValidateTextOptions.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/ValidationTypes.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/checkText.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/checkText.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/defaultConstants.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/determineTextDocumentSettings.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/determineTextDocumentSettings.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/docValidator.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/docValidator.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/index.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/isWordValid.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/isWordValid.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/lineValidatorFactory.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/lineValidatorFactory.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/parsedText.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/parsedText.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/settingsToValidateOptions.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/textValidator.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/textValidator.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/traceWord.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/traceWord.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/validator.d.ts","fileType":["typescript"]},{"filename":"dist/lib/textValidation/validator.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/trace.d.ts","fileType":["typescript"]},{"filename":"dist/lib/trace.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/AutoResolve.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/AutoResolve.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/AutoResolveLRUCache.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/AutoResolveLRUCache.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/Comparable.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/Comparable.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/FreqCounter.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/FreqCounter.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/IterableLike.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/MinHeapQueue.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/MinHeapQueue.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/PairingHeap.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/PairingHeap.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/TextMap.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/TextMap.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/TextRange.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/TextRange.regexp.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/TextRange.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/Uri.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/Uri.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/errors.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/errors.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/fileReader.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/fileReader.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/findUp.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/findUp.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/findUpFromUrl.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/findUpFromUrl.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/iterableIteratorLib.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/iterableIteratorLib.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/logger.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/logger.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/memorizeLastCall.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/memorizeLastCall.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/memorizerWeak.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/memorizerWeak.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/regexHelper.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/repMap.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/repMap.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/resolveFile.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/resolveFile.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/search.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/search.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/simpleCache.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/simpleCache.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/templates.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/templates.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/text.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/text.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/textApi.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/textRegex.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/textRegex.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/types.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/url.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/url.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/util.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/util.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/wordSplitter.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/wordSplitter.perf.d.ts","fileType":["typescript"]},{"filename":"dist/lib/util/wordSplitter.test.d.ts","fileType":["typescript"]},{"filename":"dist/lib/validator.d.ts","fileType":["typescript"]},{"filename":"dist/lib/wordListHelper.d.ts","fileType":["typescript"]},{"filename":"dist/lib/wordListHelper.test.d.ts","fileType":["typescript"]},{"filename":"fixtures/docValidator/parser/sample.ts","fileType":["typescript"]},{"filename":"fixtures/docValidator/sample-with-cspell-directives.ts","fileType":["typescript"]},{"filename":"fixtures/docValidator/sample-with-directives-errors.ts","fileType":["typescript"]},{"filename":"fixtures/docValidator/sample-with-errors.ts","fileType":["typescript"]},{"filename":"fixtures/docValidator/sample-with-many-errors.ts","fileType":["typescript"]},{"filename":"samples/bug-fixes/bug345.ts","fileType":["typescript"]},{"filename":"src/lib/Cache/cspell.cache.test.ts","fileType":["typescript"]},{"filename":"src/lib/Cache/cspell.cache.ts","fileType":["typescript"]},{"filename":"src/lib/Cache/index.test.ts","fileType":["typescript"]},{"filename":"src/lib/Cache/index.ts","fileType":["typescript"]},{"filename":"src/lib/Document/Document.ts","fileType":["typescript"]},{"filename":"src/lib/Document/index.ts","fileType":["typescript"]},{"filename":"src/lib/Document/isBinaryDoc.test.ts","fileType":["typescript"]},{"filename":"src/lib/Document/isBinaryDoc.ts","fileType":["typescript"]},{"filename":"src/lib/Document/normalizeLanguageIds.ts","fileType":["typescript"]},{"filename":"src/lib/Document/resolveDocument.ts","fileType":["typescript"]},{"filename":"src/lib/FeatureFlags/FeatureFalgs.test.ts","fileType":["typescript"]},{"filename":"src/lib/FeatureFlags/FeatureFlags.ts","fileType":["typescript"]},{"filename":"src/lib/FeatureFlags/index.ts","fileType":["typescript"]},{"filename":"src/lib/LanguageIds.test.ts","fileType":["typescript"]},{"filename":"src/lib/LanguageIds.ts","fileType":["typescript"]},{"filename":"src/lib/Models/CSpellSettingsInternalDef.ts","fileType":["typescript"]},{"filename":"src/lib/Models/PatternRegExp.test.ts","fileType":["typescript"]},{"filename":"src/lib/Models/PatternRegExp.ts","fileType":["typescript"]},{"filename":"src/lib/Models/Suggestion.ts","fileType":["typescript"]},{"filename":"src/lib/Models/TextDocument.test.ts","fileType":["typescript"]},{"filename":"src/lib/Models/TextDocument.ts","fileType":["typescript"]},{"filename":"src/lib/Models/ValidationIssue.ts","fileType":["typescript"]},{"filename":"src/lib/Models/ValidationResult.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/CSpellSettingsServer.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/CSpellSettingsServer.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/ImportError.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/ImportError.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/PnPSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/configLoader.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/configLoader.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/configLocations.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/configSearch.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/configSearch.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/configToRawSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/configToRawSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/defaultConfigLoader.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/defaultConfigLoader.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/defaultSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/extractImportErrors.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/index.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/normalizeRawSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/normalizeRawSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/readSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/readSettingsFiles.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/toGlobDef.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/configLoader/types.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/index.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/pnpLoader.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/Controller/pnpLoader.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/DefaultSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/DefaultSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/DictionaryReferenceCollection.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/DictionaryReferenceCollection.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/DictionarySettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/DictionarySettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/GlobalSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/GlobalSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/InDocSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/InDocSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/LanguageSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/LanguageSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/RegExpPatterns.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/RegExpPatterns.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/TextDocumentSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/TextDocumentSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/calcOverrideSettings.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/cfgStore.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/cfgStore.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/checkFilenameMatchesGlob.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/constants.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/index.link.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/index.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/link.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/link.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/mergeCache.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/mergeCache.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/mergeList.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/patterns.test.ts","fileType":["typescript"]},{"filename":"src/lib/Settings/patterns.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/Dictionaries.test.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/Dictionaries.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/DictionaryController/index.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/DictionaryLoader.test.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/DictionaryLoader.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SpellingDictionary.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SpellingDictionaryError.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SuggestExperimental/entities.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SuggestExperimental/helpers.test.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SuggestExperimental/helpers.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SuggestExperimental/suggest.test.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/SuggestExperimental/suggest.ts","fileType":["typescript"]},{"filename":"src/lib/SpellingDictionary/index.ts","fileType":["typescript"]},{"filename":"src/lib/clearCachedFiles.test.ts","fileType":["typescript"]},{"filename":"src/lib/clearCachedFiles.ts","fileType":["typescript"]},{"filename":"src/lib/events/events.test.ts","fileType":["typescript"]},{"filename":"src/lib/events/events.ts","fileType":["typescript"]},{"filename":"src/lib/events/index.ts","fileType":["typescript"]},{"filename":"src/lib/exclusionHelper.test.ts","fileType":["typescript"]},{"filename":"src/lib/exclusionHelper.ts","fileType":["typescript"]},{"filename":"src/lib/fileSystem.ts","fileType":["typescript"]},{"filename":"src/lib/getDictionary.ts","fileType":["typescript"]},{"filename":"src/lib/globs/checkFilenameMatchesGlob.ts","fileType":["typescript"]},{"filename":"src/lib/globs/getGlobMatcher.ts","fileType":["typescript"]},{"filename":"src/lib/index.test.ts","fileType":["typescript"]},{"filename":"src/lib/index.ts","fileType":["typescript"]},{"filename":"src/lib/leaked-handles.d.ts","fileType":["typescript"]},{"filename":"src/lib/node-namespace.d.ts","fileType":["typescript"]},{"filename":"src/lib/perf/index.ts","fileType":["typescript"]},{"filename":"src/lib/perf/perf.test.ts","fileType":["typescript"]},{"filename":"src/lib/perf/perf.ts","fileType":["typescript"]},{"filename":"src/lib/perf/timer.test.ts","fileType":["typescript"]},{"filename":"src/lib/perf/timer.ts","fileType":["typescript"]},{"filename":"src/lib/spellCheckFile.test.ts","fileType":["typescript"]},{"filename":"src/lib/spellCheckFile.ts","fileType":["typescript"]},{"filename":"src/lib/suggestions.test.ts","fileType":["typescript"]},{"filename":"src/lib/suggestions.ts","fileType":["typescript"]},{"filename":"src/lib/test/bugs.spec.ts","fileType":["typescript"]},{"filename":"src/lib/test/dutch.spec.ts","fileType":["typescript"]},{"filename":"src/lib/test/english.spec.ts","fileType":["typescript"]},{"filename":"src/lib/test/fa.spec.ts","fileType":["typescript"]},{"filename":"src/lib/test/french.spec.ts","fileType":["typescript"]},{"filename":"src/lib/test/golang.spec.ts","fileType":["typescript"]},{"filename":"src/lib/test/python.spec.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/ValidateTextOptions.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/ValidationTypes.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/checkText.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/checkText.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/defaultConstants.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/determineTextDocumentSettings.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/determineTextDocumentSettings.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/docValidator.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/docValidator.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/index.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/isWordValid.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/isWordValid.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/lineValidatorFactory.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/lineValidatorFactory.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/parsedText.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/parsedText.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/settingsToValidateOptions.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/textValidator.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/textValidator.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/traceWord.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/traceWord.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/validator.test.ts","fileType":["typescript"]},{"filename":"src/lib/textValidation/validator.ts","fileType":["typescript"]},{"filename":"src/lib/trace.test.ts","fileType":["typescript"]},{"filename":"src/lib/trace.ts","fileType":["typescript"]},{"filename":"src/lib/util/AutoResolve.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/AutoResolve.ts","fileType":["typescript"]},{"filename":"src/lib/util/AutoResolveLRUCache.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/AutoResolveLRUCache.ts","fileType":["typescript"]},{"filename":"src/lib/util/Comparable.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/Comparable.ts","fileType":["typescript"]},{"filename":"src/lib/util/FreqCounter.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/FreqCounter.ts","fileType":["typescript"]},{"filename":"src/lib/util/IterableLike.ts","fileType":["typescript"]},{"filename":"src/lib/util/MinHeapQueue.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/MinHeapQueue.ts","fileType":["typescript"]},{"filename":"src/lib/util/PairingHeap.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/PairingHeap.ts","fileType":["typescript"]},{"filename":"src/lib/util/TextMap.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/TextMap.ts","fileType":["typescript"]},{"filename":"src/lib/util/TextRange.regexp.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/TextRange.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/TextRange.ts","fileType":["typescript"]},{"filename":"src/lib/util/Uri.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/Uri.ts","fileType":["typescript"]},{"filename":"src/lib/util/errors.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/errors.ts","fileType":["typescript"]},{"filename":"src/lib/util/fileReader.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/fileReader.ts","fileType":["typescript"]},{"filename":"src/lib/util/findUp.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/findUp.ts","fileType":["typescript"]},{"filename":"src/lib/util/findUpFromUrl.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/findUpFromUrl.ts","fileType":["typescript"]},{"filename":"src/lib/util/iterableIteratorLib.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/iterableIteratorLib.ts","fileType":["typescript"]},{"filename":"src/lib/util/logger.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/logger.ts","fileType":["typescript"]},{"filename":"src/lib/util/memorizeLastCall.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/memorizeLastCall.ts","fileType":["typescript"]},{"filename":"src/lib/util/memorizerWeak.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/memorizerWeak.ts","fileType":["typescript"]},{"filename":"src/lib/util/regexHelper.ts","fileType":["typescript"]},{"filename":"src/lib/util/repMap.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/repMap.ts","fileType":["typescript"]},{"filename":"src/lib/util/resolveFile.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/resolveFile.ts","fileType":["typescript"]},{"filename":"src/lib/util/search.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/search.ts","fileType":["typescript"]},{"filename":"src/lib/util/simpleCache.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/simpleCache.ts","fileType":["typescript"]},{"filename":"src/lib/util/templates.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/templates.ts","fileType":["typescript"]},{"filename":"src/lib/util/text.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/text.ts","fileType":["typescript"]},{"filename":"src/lib/util/textApi.ts","fileType":["typescript"]},{"filename":"src/lib/util/textRegex.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/textRegex.ts","fileType":["typescript"]},{"filename":"src/lib/util/types.ts","fileType":["typescript"]},{"filename":"src/lib/util/url.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/url.ts","fileType":["typescript"]},{"filename":"src/lib/util/util.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/util.ts","fileType":["typescript"]},{"filename":"src/lib/util/wordSplitter.perf.ts","fileType":["typescript"]},{"filename":"src/lib/util/wordSplitter.test.ts","fileType":["typescript"]},{"filename":"src/lib/util/wordSplitter.ts","fileType":["typescript"]},{"filename":"src/lib/validator.ts","fileType":["typescript"]},{"filename":"src/lib/wordListHelper.test.ts","fileType":["typescript"]},{"filename":"src/lib/wordListHelper.ts","fileType":["typescript"]},{"filename":"","fileType":[]}] diff --git a/packages/flatpack-json/src/__snapshots__/storageV2_fileObjects.json b/packages/flatpack-json/src/__snapshots__/storageV2_fileObjects.json new file mode 100644 index 000000000000..1cb254989fc6 --- /dev/null +++ b/packages/flatpack-json/src/__snapshots__/storageV2_fileObjects.json @@ -0,0 +1 @@ +["Flatpack JSON v1",[0,2,10,13,16,19,22,25,28,31,34,37,40,43,46,49,52,55,58,61,64,67,70,73,76,79,82,85,88,91,94,97,100,103,106,109,112,115,118,121,124,127,130,133,136,139,142,145,148,151,154,157,160,163,166,169,172,175,178,181,184,187,190,193,196,199,202,205,208,211,214,217,220,223,226,229,232,235,238,241,244,247,250,253,256,259,262,265,268,271,274,277,280,283,286,289,292,295,298,301,304,307,310,313,316,319,322,325,328,331,334,337,340,343,346,349,352,355,358,361,364,367,370,373,376,379,382,385,388,391,394,397,400,403,406,409,412,415,418,421,424,427,430,433,436,439,442,445,448,451,454,457,460,463,466,469,472,475,478,481,484,487,490,493,496,499,502,505,508,511,514,517,520,523,526,529,532,535,538,541,544,547,550,553,556,559,562,565,568,571,574,577,580,583,586,589,592,595,598,601,604,607,610,613,616,619,622,625,628,631,634,637,640,643,646,649,652,655,658,661,664,667,670,673,676,679,682,685,688,691,694,697,700,703,706,709,712,715,718,721,724,727,730,733,736,739,742,745,748,751,754,757,760,763,766,769,772,775,778,781,784,787,790,793,796,799,802,805,808,811,814,817,820,823,826,829,832,835,838,841,844,847,850,853,856,859,862,865,868,871,874,877,880,883,886,889,892,895,898,901,904,907,910,913,916,919,922,925,928,931,934,937,940,943,946,949,952,955,958,961,964,967,970,973,976,979,982,985,988,991,994,997,1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039,1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111,1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153,1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417,1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489,1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873,1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921,1924,1927,1930,1933,1936,1939,1942,1945],[1,3,6],[0,4,5],"filename","fileType",[0,7,8],"api/api.d.ts",[0,9],"typescript",[1,3,11],[0,12,8],"dist/esm/Cache/cspell.cache.d.ts",[1,3,14],[0,15,8],"dist/esm/Cache/cspell.cache.test.d.ts",[1,3,17],[0,18,8],"dist/esm/Cache/index.d.ts",[1,3,20],[0,21,8],"dist/esm/Cache/index.test.d.ts",[1,3,23],[0,24,8],"dist/esm/Document/Document.d.ts",[1,3,26],[0,27,8],"dist/esm/Document/index.d.ts",[1,3,29],[0,30,8],"dist/esm/Document/isBinaryDoc.d.ts",[1,3,32],[0,33,8],"dist/esm/Document/isBinaryDoc.test.d.ts",[1,3,35],[0,36,8],"dist/esm/Document/normalizeLanguageIds.d.ts",[1,3,38],[0,39,8],"dist/esm/Document/resolveDocument.d.ts",[1,3,41],[0,42,8],"dist/esm/FeatureFlags/FeatureFalgs.test.d.ts",[1,3,44],[0,45,8],"dist/esm/FeatureFlags/FeatureFlags.d.ts",[1,3,47],[0,48,8],"dist/esm/FeatureFlags/index.d.ts",[1,3,50],[0,51,8],"dist/esm/LanguageIds.d.ts",[1,3,53],[0,54,8],"dist/esm/LanguageIds.test.d.ts",[1,3,56],[0,57,8],"dist/esm/Models/CSpellSettingsInternalDef.d.ts",[1,3,59],[0,60,8],"dist/esm/Models/PatternRegExp.d.ts",[1,3,62],[0,63,8],"dist/esm/Models/PatternRegExp.test.d.ts",[1,3,65],[0,66,8],"dist/esm/Models/Suggestion.d.ts",[1,3,68],[0,69,8],"dist/esm/Models/TextDocument.d.ts",[1,3,71],[0,72,8],"dist/esm/Models/TextDocument.test.d.ts",[1,3,74],[0,75,8],"dist/esm/Models/ValidationIssue.d.ts",[1,3,77],[0,78,8],"dist/esm/Models/ValidationResult.d.ts",[1,3,80],[0,81,8],"dist/esm/Settings/CSpellSettingsServer.d.ts",[1,3,83],[0,84,8],"dist/esm/Settings/CSpellSettingsServer.test.d.ts",[1,3,86],[0,87,8],"dist/esm/Settings/Controller/ImportError.d.ts",[1,3,89],[0,90,8],"dist/esm/Settings/Controller/ImportError.test.d.ts",[1,3,92],[0,93,8],"dist/esm/Settings/Controller/configLoader/PnPSettings.d.ts",[1,3,95],[0,96,8],"dist/esm/Settings/Controller/configLoader/configLoader.d.ts",[1,3,98],[0,99,8],"dist/esm/Settings/Controller/configLoader/configLoader.test.d.ts",[1,3,101],[0,102,8],"dist/esm/Settings/Controller/configLoader/configLocations.d.ts",[1,3,104],[0,105,8],"dist/esm/Settings/Controller/configLoader/configSearch.d.ts",[1,3,107],[0,108,8],"dist/esm/Settings/Controller/configLoader/configSearch.test.d.ts",[1,3,110],[0,111,8],"dist/esm/Settings/Controller/configLoader/configToRawSettings.d.ts",[1,3,113],[0,114,8],"dist/esm/Settings/Controller/configLoader/configToRawSettings.test.d.ts",[1,3,116],[0,117,8],"dist/esm/Settings/Controller/configLoader/defaultConfigLoader.d.ts",[1,3,119],[0,120,8],"dist/esm/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts",[1,3,122],[0,123,8],"dist/esm/Settings/Controller/configLoader/defaultSettings.d.ts",[1,3,125],[0,126,8],"dist/esm/Settings/Controller/configLoader/extractImportErrors.d.ts",[1,3,128],[0,129,8],"dist/esm/Settings/Controller/configLoader/index.d.ts",[1,3,131],[0,132,8],"dist/esm/Settings/Controller/configLoader/normalizeRawSettings.d.ts",[1,3,134],[0,135,8],"dist/esm/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts",[1,3,137],[0,138,8],"dist/esm/Settings/Controller/configLoader/readSettings.d.ts",[1,3,140],[0,141,8],"dist/esm/Settings/Controller/configLoader/readSettingsFiles.d.ts",[1,3,143],[0,144,8],"dist/esm/Settings/Controller/configLoader/toGlobDef.d.ts",[1,3,146],[0,147,8],"dist/esm/Settings/Controller/configLoader/types.d.ts",[1,3,149],[0,150,8],"dist/esm/Settings/Controller/index.d.ts",[1,3,152],[0,153,8],"dist/esm/Settings/Controller/pnpLoader.d.ts",[1,3,155],[0,156,8],"dist/esm/Settings/Controller/pnpLoader.test.d.ts",[1,3,158],[0,159,8],"dist/esm/Settings/DefaultSettings.d.ts",[1,3,161],[0,162,8],"dist/esm/Settings/DefaultSettings.test.d.ts",[1,3,164],[0,165,8],"dist/esm/Settings/DictionaryReferenceCollection.d.ts",[1,3,167],[0,168,8],"dist/esm/Settings/DictionaryReferenceCollection.test.d.ts",[1,3,170],[0,171,8],"dist/esm/Settings/DictionarySettings.d.ts",[1,3,173],[0,174,8],"dist/esm/Settings/DictionarySettings.test.d.ts",[1,3,176],[0,177,8],"dist/esm/Settings/GlobalSettings.d.ts",[1,3,179],[0,180,8],"dist/esm/Settings/GlobalSettings.test.d.ts",[1,3,182],[0,183,8],"dist/esm/Settings/InDocSettings.d.ts",[1,3,185],[0,186,8],"dist/esm/Settings/InDocSettings.test.d.ts",[1,3,188],[0,189,8],"dist/esm/Settings/LanguageSettings.d.ts",[1,3,191],[0,192,8],"dist/esm/Settings/LanguageSettings.test.d.ts",[1,3,194],[0,195,8],"dist/esm/Settings/RegExpPatterns.d.ts",[1,3,197],[0,198,8],"dist/esm/Settings/RegExpPatterns.test.d.ts",[1,3,200],[0,201,8],"dist/esm/Settings/TextDocumentSettings.d.ts",[1,3,203],[0,204,8],"dist/esm/Settings/TextDocumentSettings.test.d.ts",[1,3,206],[0,207,8],"dist/esm/Settings/calcOverrideSettings.d.ts",[1,3,209],[0,210,8],"dist/esm/Settings/cfgStore.d.ts",[1,3,212],[0,213,8],"dist/esm/Settings/cfgStore.test.d.ts",[1,3,215],[0,216,8],"dist/esm/Settings/checkFilenameMatchesGlob.d.ts",[1,3,218],[0,219,8],"dist/esm/Settings/constants.d.ts",[1,3,221],[0,222,8],"dist/esm/Settings/index.d.ts",[1,3,224],[0,225,8],"dist/esm/Settings/index.link.d.ts",[1,3,227],[0,228,8],"dist/esm/Settings/link.d.ts",[1,3,230],[0,231,8],"dist/esm/Settings/link.test.d.ts",[1,3,233],[0,234,8],"dist/esm/Settings/mergeCache.d.ts",[1,3,236],[0,237,8],"dist/esm/Settings/mergeCache.test.d.ts",[1,3,239],[0,240,8],"dist/esm/Settings/mergeList.d.ts",[1,3,242],[0,243,8],"dist/esm/Settings/patterns.d.ts",[1,3,245],[0,246,8],"dist/esm/Settings/patterns.test.d.ts",[1,3,248],[0,249,8],"dist/esm/SpellingDictionary/Dictionaries.d.ts",[1,3,251],[0,252,8],"dist/esm/SpellingDictionary/Dictionaries.test.d.ts",[1,3,254],[0,255,8],"dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts",[1,3,257],[0,258,8],"dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts",[1,3,260],[0,261,8],"dist/esm/SpellingDictionary/DictionaryController/index.d.ts",[1,3,263],[0,264,8],"dist/esm/SpellingDictionary/DictionaryLoader.d.ts",[1,3,266],[0,267,8],"dist/esm/SpellingDictionary/DictionaryLoader.test.d.ts",[1,3,269],[0,270,8],"dist/esm/SpellingDictionary/SpellingDictionary.d.ts",[1,3,272],[0,273,8],"dist/esm/SpellingDictionary/SpellingDictionaryError.d.ts",[1,3,275],[0,276,8],"dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts",[1,3,278],[0,279,8],"dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts",[1,3,281],[0,282,8],"dist/esm/SpellingDictionary/SuggestExperimental/entities.d.ts",[1,3,284],[0,285,8],"dist/esm/SpellingDictionary/SuggestExperimental/helpers.d.ts",[1,3,287],[0,288,8],"dist/esm/SpellingDictionary/SuggestExperimental/helpers.test.d.ts",[1,3,290],[0,291,8],"dist/esm/SpellingDictionary/SuggestExperimental/suggest.d.ts",[1,3,293],[0,294,8],"dist/esm/SpellingDictionary/SuggestExperimental/suggest.test.d.ts",[1,3,296],[0,297,8],"dist/esm/SpellingDictionary/index.d.ts",[1,3,299],[0,300,8],"dist/esm/clearCachedFiles.d.ts",[1,3,302],[0,303,8],"dist/esm/clearCachedFiles.test.d.ts",[1,3,305],[0,306,8],"dist/esm/events/events.d.ts",[1,3,308],[0,309,8],"dist/esm/events/events.test.d.ts",[1,3,311],[0,312,8],"dist/esm/events/index.d.ts",[1,3,314],[0,315,8],"dist/esm/exclusionHelper.d.ts",[1,3,317],[0,318,8],"dist/esm/exclusionHelper.test.d.ts",[1,3,320],[0,321,8],"dist/esm/fileSystem.d.ts",[1,3,323],[0,324,8],"dist/esm/getDictionary.d.ts",[1,3,326],[0,327,8],"dist/esm/globs/checkFilenameMatchesGlob.d.ts",[1,3,329],[0,330,8],"dist/esm/globs/getGlobMatcher.d.ts",[1,3,332],[0,333,8],"dist/esm/index.d.ts",[1,3,335],[0,336,8],"dist/esm/index.test.d.ts",[1,3,338],[0,339,8],"dist/esm/perf/index.d.ts",[1,3,341],[0,342,8],"dist/esm/perf/perf.d.ts",[1,3,344],[0,345,8],"dist/esm/perf/perf.test.d.ts",[1,3,347],[0,348,8],"dist/esm/perf/timer.d.ts",[1,3,350],[0,351,8],"dist/esm/perf/timer.test.d.ts",[1,3,353],[0,354,8],"dist/esm/spellCheckFile.d.ts",[1,3,356],[0,357,8],"dist/esm/spellCheckFile.test.d.ts",[1,3,359],[0,360,8],"dist/esm/suggestions.d.ts",[1,3,362],[0,363,8],"dist/esm/suggestions.test.d.ts",[1,3,365],[0,366,8],"dist/esm/test/bugs.spec.d.ts",[1,3,368],[0,369,8],"dist/esm/test/dutch.spec.d.ts",[1,3,371],[0,372,8],"dist/esm/test/english.spec.d.ts",[1,3,374],[0,375,8],"dist/esm/test/fa.spec.d.ts",[1,3,377],[0,378,8],"dist/esm/test/french.spec.d.ts",[1,3,380],[0,381,8],"dist/esm/test/golang.spec.d.ts",[1,3,383],[0,384,8],"dist/esm/test/python.spec.d.ts",[1,3,386],[0,387,8],"dist/esm/textValidation/ValidateTextOptions.d.ts",[1,3,389],[0,390,8],"dist/esm/textValidation/ValidationTypes.d.ts",[1,3,392],[0,393,8],"dist/esm/textValidation/checkText.d.ts",[1,3,395],[0,396,8],"dist/esm/textValidation/checkText.test.d.ts",[1,3,398],[0,399,8],"dist/esm/textValidation/defaultConstants.d.ts",[1,3,401],[0,402,8],"dist/esm/textValidation/determineTextDocumentSettings.d.ts",[1,3,404],[0,405,8],"dist/esm/textValidation/determineTextDocumentSettings.test.d.ts",[1,3,407],[0,408,8],"dist/esm/textValidation/docValidator.d.ts",[1,3,410],[0,411,8],"dist/esm/textValidation/docValidator.test.d.ts",[1,3,413],[0,414,8],"dist/esm/textValidation/index.d.ts",[1,3,416],[0,417,8],"dist/esm/textValidation/isWordValid.d.ts",[1,3,419],[0,420,8],"dist/esm/textValidation/isWordValid.test.d.ts",[1,3,422],[0,423,8],"dist/esm/textValidation/lineValidatorFactory.d.ts",[1,3,425],[0,426,8],"dist/esm/textValidation/lineValidatorFactory.test.d.ts",[1,3,428],[0,429,8],"dist/esm/textValidation/parsedText.d.ts",[1,3,431],[0,432,8],"dist/esm/textValidation/parsedText.test.d.ts",[1,3,434],[0,435,8],"dist/esm/textValidation/settingsToValidateOptions.d.ts",[1,3,437],[0,438,8],"dist/esm/textValidation/textValidator.d.ts",[1,3,440],[0,441,8],"dist/esm/textValidation/textValidator.test.d.ts",[1,3,443],[0,444,8],"dist/esm/textValidation/traceWord.d.ts",[1,3,446],[0,447,8],"dist/esm/textValidation/traceWord.test.d.ts",[1,3,449],[0,450,8],"dist/esm/textValidation/validator.d.ts",[1,3,452],[0,453,8],"dist/esm/textValidation/validator.test.d.ts",[1,3,455],[0,456,8],"dist/esm/trace.d.ts",[1,3,458],[0,459,8],"dist/esm/trace.test.d.ts",[1,3,461],[0,462,8],"dist/esm/util/AutoResolve.d.ts",[1,3,464],[0,465,8],"dist/esm/util/AutoResolve.test.d.ts",[1,3,467],[0,468,8],"dist/esm/util/AutoResolveLRUCache.d.ts",[1,3,470],[0,471,8],"dist/esm/util/AutoResolveLRUCache.test.d.ts",[1,3,473],[0,474,8],"dist/esm/util/Comparable.d.ts",[1,3,476],[0,477,8],"dist/esm/util/Comparable.test.d.ts",[1,3,479],[0,480,8],"dist/esm/util/FreqCounter.d.ts",[1,3,482],[0,483,8],"dist/esm/util/FreqCounter.test.d.ts",[1,3,485],[0,486,8],"dist/esm/util/IterableLike.d.ts",[1,3,488],[0,489,8],"dist/esm/util/MinHeapQueue.d.ts",[1,3,491],[0,492,8],"dist/esm/util/MinHeapQueue.test.d.ts",[1,3,494],[0,495,8],"dist/esm/util/PairingHeap.d.ts",[1,3,497],[0,498,8],"dist/esm/util/PairingHeap.test.d.ts",[1,3,500],[0,501,8],"dist/esm/util/TextMap.d.ts",[1,3,503],[0,504,8],"dist/esm/util/TextMap.test.d.ts",[1,3,506],[0,507,8],"dist/esm/util/TextRange.d.ts",[1,3,509],[0,510,8],"dist/esm/util/TextRange.regexp.test.d.ts",[1,3,512],[0,513,8],"dist/esm/util/TextRange.test.d.ts",[1,3,515],[0,516,8],"dist/esm/util/Uri.d.ts",[1,3,518],[0,519,8],"dist/esm/util/Uri.test.d.ts",[1,3,521],[0,522,8],"dist/esm/util/errors.d.ts",[1,3,524],[0,525,8],"dist/esm/util/errors.test.d.ts",[1,3,527],[0,528,8],"dist/esm/util/fileReader.d.ts",[1,3,530],[0,531,8],"dist/esm/util/fileReader.test.d.ts",[1,3,533],[0,534,8],"dist/esm/util/findUp.d.ts",[1,3,536],[0,537,8],"dist/esm/util/findUp.test.d.ts",[1,3,539],[0,540,8],"dist/esm/util/findUpFromUrl.d.ts",[1,3,542],[0,543,8],"dist/esm/util/findUpFromUrl.test.d.ts",[1,3,545],[0,546,8],"dist/esm/util/iterableIteratorLib.d.ts",[1,3,548],[0,549,8],"dist/esm/util/iterableIteratorLib.test.d.ts",[1,3,551],[0,552,8],"dist/esm/util/logger.d.ts",[1,3,554],[0,555,8],"dist/esm/util/logger.test.d.ts",[1,3,557],[0,558,8],"dist/esm/util/memorizeLastCall.d.ts",[1,3,560],[0,561,8],"dist/esm/util/memorizeLastCall.test.d.ts",[1,3,563],[0,564,8],"dist/esm/util/memorizerWeak.d.ts",[1,3,566],[0,567,8],"dist/esm/util/memorizerWeak.test.d.ts",[1,3,569],[0,570,8],"dist/esm/util/regexHelper.d.ts",[1,3,572],[0,573,8],"dist/esm/util/repMap.d.ts",[1,3,575],[0,576,8],"dist/esm/util/repMap.test.d.ts",[1,3,578],[0,579,8],"dist/esm/util/resolveFile.d.ts",[1,3,581],[0,582,8],"dist/esm/util/resolveFile.test.d.ts",[1,3,584],[0,585,8],"dist/esm/util/search.d.ts",[1,3,587],[0,588,8],"dist/esm/util/search.test.d.ts",[1,3,590],[0,591,8],"dist/esm/util/simpleCache.d.ts",[1,3,593],[0,594,8],"dist/esm/util/simpleCache.test.d.ts",[1,3,596],[0,597,8],"dist/esm/util/templates.d.ts",[1,3,599],[0,600,8],"dist/esm/util/templates.test.d.ts",[1,3,602],[0,603,8],"dist/esm/util/text.d.ts",[1,3,605],[0,606,8],"dist/esm/util/text.test.d.ts",[1,3,608],[0,609,8],"dist/esm/util/textRegex.d.ts",[1,3,611],[0,612,8],"dist/esm/util/textRegex.test.d.ts",[1,3,614],[0,615,8],"dist/esm/util/types.d.ts",[1,3,617],[0,618,8],"dist/esm/util/url.d.ts",[1,3,620],[0,621,8],"dist/esm/util/url.test.d.ts",[1,3,623],[0,624,8],"dist/esm/util/util.d.ts",[1,3,626],[0,627,8],"dist/esm/util/util.test.d.ts",[1,3,629],[0,630,8],"dist/esm/util/wordSplitter.d.ts",[1,3,632],[0,633,8],"dist/esm/util/wordSplitter.test.d.ts",[1,3,635],[0,636,8],"dist/esm/validator.d.ts",[1,3,638],[0,639,8],"dist/esm/wordListHelper.d.ts",[1,3,641],[0,642,8],"dist/esm/wordListHelper.test.d.ts",[1,3,644],[0,645,8],"dist/lib/Cache/cspell.cache.d.ts",[1,3,647],[0,648,8],"dist/lib/Cache/cspell.cache.test.d.ts",[1,3,650],[0,651,8],"dist/lib/Cache/index.d.ts",[1,3,653],[0,654,8],"dist/lib/Cache/index.test.d.ts",[1,3,656],[0,657,8],"dist/lib/Document/Document.d.ts",[1,3,659],[0,660,8],"dist/lib/Document/index.d.ts",[1,3,662],[0,663,8],"dist/lib/Document/isBinaryDoc.d.ts",[1,3,665],[0,666,8],"dist/lib/Document/isBinaryDoc.test.d.ts",[1,3,668],[0,669,8],"dist/lib/Document/normalizeLanguageIds.d.ts",[1,3,671],[0,672,8],"dist/lib/Document/resolveDocument.d.ts",[1,3,674],[0,675,8],"dist/lib/FeatureFlags/FeatureFalgs.test.d.ts",[1,3,677],[0,678,8],"dist/lib/FeatureFlags/FeatureFlags.d.ts",[1,3,680],[0,681,8],"dist/lib/FeatureFlags/index.d.ts",[1,3,683],[0,684,8],"dist/lib/LanguageIds.d.ts",[1,3,686],[0,687,8],"dist/lib/LanguageIds.test.d.ts",[1,3,689],[0,690,8],"dist/lib/Models/CSpellSettingsInternalDef.d.ts",[1,3,692],[0,693,8],"dist/lib/Models/PatternRegExp.d.ts",[1,3,695],[0,696,8],"dist/lib/Models/PatternRegExp.test.d.ts",[1,3,698],[0,699,8],"dist/lib/Models/Suggestion.d.ts",[1,3,701],[0,702,8],"dist/lib/Models/TextDocument.d.ts",[1,3,704],[0,705,8],"dist/lib/Models/TextDocument.test.d.ts",[1,3,707],[0,708,8],"dist/lib/Models/ValidationIssue.d.ts",[1,3,710],[0,711,8],"dist/lib/Models/ValidationResult.d.ts",[1,3,713],[0,714,8],"dist/lib/Settings/CSpellSettingsServer.d.ts",[1,3,716],[0,717,8],"dist/lib/Settings/CSpellSettingsServer.test.d.ts",[1,3,719],[0,720,8],"dist/lib/Settings/Controller/ImportError.d.ts",[1,3,722],[0,723,8],"dist/lib/Settings/Controller/ImportError.test.d.ts",[1,3,725],[0,726,8],"dist/lib/Settings/Controller/configLoader/PnPSettings.d.ts",[1,3,728],[0,729,8],"dist/lib/Settings/Controller/configLoader/configLoader.d.ts",[1,3,731],[0,732,8],"dist/lib/Settings/Controller/configLoader/configLoader.test.d.ts",[1,3,734],[0,735,8],"dist/lib/Settings/Controller/configLoader/configLocations.d.ts",[1,3,737],[0,738,8],"dist/lib/Settings/Controller/configLoader/configSearch.d.ts",[1,3,740],[0,741,8],"dist/lib/Settings/Controller/configLoader/configSearch.test.d.ts",[1,3,743],[0,744,8],"dist/lib/Settings/Controller/configLoader/configToRawSettings.d.ts",[1,3,746],[0,747,8],"dist/lib/Settings/Controller/configLoader/configToRawSettings.test.d.ts",[1,3,749],[0,750,8],"dist/lib/Settings/Controller/configLoader/defaultConfigLoader.d.ts",[1,3,752],[0,753,8],"dist/lib/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts",[1,3,755],[0,756,8],"dist/lib/Settings/Controller/configLoader/defaultSettings.d.ts",[1,3,758],[0,759,8],"dist/lib/Settings/Controller/configLoader/extractImportErrors.d.ts",[1,3,761],[0,762,8],"dist/lib/Settings/Controller/configLoader/index.d.ts",[1,3,764],[0,765,8],"dist/lib/Settings/Controller/configLoader/normalizeRawSettings.d.ts",[1,3,767],[0,768,8],"dist/lib/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts",[1,3,770],[0,771,8],"dist/lib/Settings/Controller/configLoader/readSettings.d.ts",[1,3,773],[0,774,8],"dist/lib/Settings/Controller/configLoader/readSettingsFiles.d.ts",[1,3,776],[0,777,8],"dist/lib/Settings/Controller/configLoader/toGlobDef.d.ts",[1,3,779],[0,780,8],"dist/lib/Settings/Controller/configLoader/types.d.ts",[1,3,782],[0,783,8],"dist/lib/Settings/Controller/index.d.ts",[1,3,785],[0,786,8],"dist/lib/Settings/Controller/pnpLoader.d.ts",[1,3,788],[0,789,8],"dist/lib/Settings/Controller/pnpLoader.test.d.ts",[1,3,791],[0,792,8],"dist/lib/Settings/DefaultSettings.d.ts",[1,3,794],[0,795,8],"dist/lib/Settings/DefaultSettings.test.d.ts",[1,3,797],[0,798,8],"dist/lib/Settings/DictionaryReferenceCollection.d.ts",[1,3,800],[0,801,8],"dist/lib/Settings/DictionaryReferenceCollection.test.d.ts",[1,3,803],[0,804,8],"dist/lib/Settings/DictionarySettings.d.ts",[1,3,806],[0,807,8],"dist/lib/Settings/DictionarySettings.test.d.ts",[1,3,809],[0,810,8],"dist/lib/Settings/GlobalSettings.d.ts",[1,3,812],[0,813,8],"dist/lib/Settings/GlobalSettings.test.d.ts",[1,3,815],[0,816,8],"dist/lib/Settings/InDocSettings.d.ts",[1,3,818],[0,819,8],"dist/lib/Settings/InDocSettings.test.d.ts",[1,3,821],[0,822,8],"dist/lib/Settings/LanguageSettings.d.ts",[1,3,824],[0,825,8],"dist/lib/Settings/LanguageSettings.test.d.ts",[1,3,827],[0,828,8],"dist/lib/Settings/RegExpPatterns.d.ts",[1,3,830],[0,831,8],"dist/lib/Settings/RegExpPatterns.test.d.ts",[1,3,833],[0,834,8],"dist/lib/Settings/TextDocumentSettings.d.ts",[1,3,836],[0,837,8],"dist/lib/Settings/TextDocumentSettings.test.d.ts",[1,3,839],[0,840,8],"dist/lib/Settings/calcOverrideSettings.d.ts",[1,3,842],[0,843,8],"dist/lib/Settings/cfgStore.d.ts",[1,3,845],[0,846,8],"dist/lib/Settings/cfgStore.test.d.ts",[1,3,848],[0,849,8],"dist/lib/Settings/checkFilenameMatchesGlob.d.ts",[1,3,851],[0,852,8],"dist/lib/Settings/constants.d.ts",[1,3,854],[0,855,8],"dist/lib/Settings/index.d.ts",[1,3,857],[0,858,8],"dist/lib/Settings/index.link.d.ts",[1,3,860],[0,861,8],"dist/lib/Settings/link.d.ts",[1,3,863],[0,864,8],"dist/lib/Settings/link.test.d.ts",[1,3,866],[0,867,8],"dist/lib/Settings/mergeCache.d.ts",[1,3,869],[0,870,8],"dist/lib/Settings/mergeCache.test.d.ts",[1,3,872],[0,873,8],"dist/lib/Settings/mergeList.d.ts",[1,3,875],[0,876,8],"dist/lib/Settings/patterns.d.ts",[1,3,878],[0,879,8],"dist/lib/Settings/patterns.test.d.ts",[1,3,881],[0,882,8],"dist/lib/SpellingDictionary/Dictionaries.d.ts",[1,3,884],[0,885,8],"dist/lib/SpellingDictionary/Dictionaries.test.d.ts",[1,3,887],[0,888,8],"dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts",[1,3,890],[0,891,8],"dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts",[1,3,893],[0,894,8],"dist/lib/SpellingDictionary/DictionaryController/index.d.ts",[1,3,896],[0,897,8],"dist/lib/SpellingDictionary/DictionaryLoader.d.ts",[1,3,899],[0,900,8],"dist/lib/SpellingDictionary/DictionaryLoader.test.d.ts",[1,3,902],[0,903,8],"dist/lib/SpellingDictionary/SpellingDictionary.d.ts",[1,3,905],[0,906,8],"dist/lib/SpellingDictionary/SpellingDictionaryError.d.ts",[1,3,908],[0,909,8],"dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts",[1,3,911],[0,912,8],"dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts",[1,3,914],[0,915,8],"dist/lib/SpellingDictionary/SuggestExperimental/entities.d.ts",[1,3,917],[0,918,8],"dist/lib/SpellingDictionary/SuggestExperimental/helpers.d.ts",[1,3,920],[0,921,8],"dist/lib/SpellingDictionary/SuggestExperimental/helpers.test.d.ts",[1,3,923],[0,924,8],"dist/lib/SpellingDictionary/SuggestExperimental/suggest.d.ts",[1,3,926],[0,927,8],"dist/lib/SpellingDictionary/SuggestExperimental/suggest.test.d.ts",[1,3,929],[0,930,8],"dist/lib/SpellingDictionary/index.d.ts",[1,3,932],[0,933,8],"dist/lib/clearCachedFiles.d.ts",[1,3,935],[0,936,8],"dist/lib/clearCachedFiles.test.d.ts",[1,3,938],[0,939,8],"dist/lib/events/events.d.ts",[1,3,941],[0,942,8],"dist/lib/events/events.test.d.ts",[1,3,944],[0,945,8],"dist/lib/events/index.d.ts",[1,3,947],[0,948,8],"dist/lib/exclusionHelper.d.ts",[1,3,950],[0,951,8],"dist/lib/exclusionHelper.test.d.ts",[1,3,953],[0,954,8],"dist/lib/fileSystem.d.ts",[1,3,956],[0,957,8],"dist/lib/getDictionary.d.ts",[1,3,959],[0,960,8],"dist/lib/globs/checkFilenameMatchesGlob.d.ts",[1,3,962],[0,963,8],"dist/lib/globs/getGlobMatcher.d.ts",[1,3,965],[0,966,8],"dist/lib/index.d.ts",[1,3,968],[0,969,8],"dist/lib/index.test.d.ts",[1,3,971],[0,972,8],"dist/lib/perf/index.d.ts",[1,3,974],[0,975,8],"dist/lib/perf/perf.d.ts",[1,3,977],[0,978,8],"dist/lib/perf/perf.test.d.ts",[1,3,980],[0,981,8],"dist/lib/perf/timer.d.ts",[1,3,983],[0,984,8],"dist/lib/perf/timer.test.d.ts",[1,3,986],[0,987,8],"dist/lib/spellCheckFile.d.ts",[1,3,989],[0,990,8],"dist/lib/spellCheckFile.test.d.ts",[1,3,992],[0,993,8],"dist/lib/suggestions.d.ts",[1,3,995],[0,996,8],"dist/lib/suggestions.test.d.ts",[1,3,998],[0,999,8],"dist/lib/test/bugs.spec.d.ts",[1,3,1001],[0,1002,8],"dist/lib/test/dutch.spec.d.ts",[1,3,1004],[0,1005,8],"dist/lib/test/english.spec.d.ts",[1,3,1007],[0,1008,8],"dist/lib/test/fa.spec.d.ts",[1,3,1010],[0,1011,8],"dist/lib/test/french.spec.d.ts",[1,3,1013],[0,1014,8],"dist/lib/test/golang.spec.d.ts",[1,3,1016],[0,1017,8],"dist/lib/test/python.spec.d.ts",[1,3,1019],[0,1020,8],"dist/lib/textValidation/ValidateTextOptions.d.ts",[1,3,1022],[0,1023,8],"dist/lib/textValidation/ValidationTypes.d.ts",[1,3,1025],[0,1026,8],"dist/lib/textValidation/checkText.d.ts",[1,3,1028],[0,1029,8],"dist/lib/textValidation/checkText.test.d.ts",[1,3,1031],[0,1032,8],"dist/lib/textValidation/defaultConstants.d.ts",[1,3,1034],[0,1035,8],"dist/lib/textValidation/determineTextDocumentSettings.d.ts",[1,3,1037],[0,1038,8],"dist/lib/textValidation/determineTextDocumentSettings.test.d.ts",[1,3,1040],[0,1041,8],"dist/lib/textValidation/docValidator.d.ts",[1,3,1043],[0,1044,8],"dist/lib/textValidation/docValidator.test.d.ts",[1,3,1046],[0,1047,8],"dist/lib/textValidation/index.d.ts",[1,3,1049],[0,1050,8],"dist/lib/textValidation/isWordValid.d.ts",[1,3,1052],[0,1053,8],"dist/lib/textValidation/isWordValid.test.d.ts",[1,3,1055],[0,1056,8],"dist/lib/textValidation/lineValidatorFactory.d.ts",[1,3,1058],[0,1059,8],"dist/lib/textValidation/lineValidatorFactory.test.d.ts",[1,3,1061],[0,1062,8],"dist/lib/textValidation/parsedText.d.ts",[1,3,1064],[0,1065,8],"dist/lib/textValidation/parsedText.test.d.ts",[1,3,1067],[0,1068,8],"dist/lib/textValidation/settingsToValidateOptions.d.ts",[1,3,1070],[0,1071,8],"dist/lib/textValidation/textValidator.d.ts",[1,3,1073],[0,1074,8],"dist/lib/textValidation/textValidator.test.d.ts",[1,3,1076],[0,1077,8],"dist/lib/textValidation/traceWord.d.ts",[1,3,1079],[0,1080,8],"dist/lib/textValidation/traceWord.test.d.ts",[1,3,1082],[0,1083,8],"dist/lib/textValidation/validator.d.ts",[1,3,1085],[0,1086,8],"dist/lib/textValidation/validator.test.d.ts",[1,3,1088],[0,1089,8],"dist/lib/trace.d.ts",[1,3,1091],[0,1092,8],"dist/lib/trace.test.d.ts",[1,3,1094],[0,1095,8],"dist/lib/util/AutoResolve.d.ts",[1,3,1097],[0,1098,8],"dist/lib/util/AutoResolve.test.d.ts",[1,3,1100],[0,1101,8],"dist/lib/util/AutoResolveLRUCache.d.ts",[1,3,1103],[0,1104,8],"dist/lib/util/AutoResolveLRUCache.test.d.ts",[1,3,1106],[0,1107,8],"dist/lib/util/Comparable.d.ts",[1,3,1109],[0,1110,8],"dist/lib/util/Comparable.test.d.ts",[1,3,1112],[0,1113,8],"dist/lib/util/FreqCounter.d.ts",[1,3,1115],[0,1116,8],"dist/lib/util/FreqCounter.test.d.ts",[1,3,1118],[0,1119,8],"dist/lib/util/IterableLike.d.ts",[1,3,1121],[0,1122,8],"dist/lib/util/MinHeapQueue.d.ts",[1,3,1124],[0,1125,8],"dist/lib/util/MinHeapQueue.test.d.ts",[1,3,1127],[0,1128,8],"dist/lib/util/PairingHeap.d.ts",[1,3,1130],[0,1131,8],"dist/lib/util/PairingHeap.test.d.ts",[1,3,1133],[0,1134,8],"dist/lib/util/TextMap.d.ts",[1,3,1136],[0,1137,8],"dist/lib/util/TextMap.test.d.ts",[1,3,1139],[0,1140,8],"dist/lib/util/TextRange.d.ts",[1,3,1142],[0,1143,8],"dist/lib/util/TextRange.regexp.test.d.ts",[1,3,1145],[0,1146,8],"dist/lib/util/TextRange.test.d.ts",[1,3,1148],[0,1149,8],"dist/lib/util/Uri.d.ts",[1,3,1151],[0,1152,8],"dist/lib/util/Uri.test.d.ts",[1,3,1154],[0,1155,8],"dist/lib/util/errors.d.ts",[1,3,1157],[0,1158,8],"dist/lib/util/errors.test.d.ts",[1,3,1160],[0,1161,8],"dist/lib/util/fileReader.d.ts",[1,3,1163],[0,1164,8],"dist/lib/util/fileReader.test.d.ts",[1,3,1166],[0,1167,8],"dist/lib/util/findUp.d.ts",[1,3,1169],[0,1170,8],"dist/lib/util/findUp.test.d.ts",[1,3,1172],[0,1173,8],"dist/lib/util/findUpFromUrl.d.ts",[1,3,1175],[0,1176,8],"dist/lib/util/findUpFromUrl.test.d.ts",[1,3,1178],[0,1179,8],"dist/lib/util/iterableIteratorLib.d.ts",[1,3,1181],[0,1182,8],"dist/lib/util/iterableIteratorLib.test.d.ts",[1,3,1184],[0,1185,8],"dist/lib/util/logger.d.ts",[1,3,1187],[0,1188,8],"dist/lib/util/logger.test.d.ts",[1,3,1190],[0,1191,8],"dist/lib/util/memorizeLastCall.d.ts",[1,3,1193],[0,1194,8],"dist/lib/util/memorizeLastCall.test.d.ts",[1,3,1196],[0,1197,8],"dist/lib/util/memorizerWeak.d.ts",[1,3,1199],[0,1200,8],"dist/lib/util/memorizerWeak.test.d.ts",[1,3,1202],[0,1203,8],"dist/lib/util/regexHelper.d.ts",[1,3,1205],[0,1206,8],"dist/lib/util/repMap.d.ts",[1,3,1208],[0,1209,8],"dist/lib/util/repMap.test.d.ts",[1,3,1211],[0,1212,8],"dist/lib/util/resolveFile.d.ts",[1,3,1214],[0,1215,8],"dist/lib/util/resolveFile.test.d.ts",[1,3,1217],[0,1218,8],"dist/lib/util/search.d.ts",[1,3,1220],[0,1221,8],"dist/lib/util/search.test.d.ts",[1,3,1223],[0,1224,8],"dist/lib/util/simpleCache.d.ts",[1,3,1226],[0,1227,8],"dist/lib/util/simpleCache.test.d.ts",[1,3,1229],[0,1230,8],"dist/lib/util/templates.d.ts",[1,3,1232],[0,1233,8],"dist/lib/util/templates.test.d.ts",[1,3,1235],[0,1236,8],"dist/lib/util/text.d.ts",[1,3,1238],[0,1239,8],"dist/lib/util/text.test.d.ts",[1,3,1241],[0,1242,8],"dist/lib/util/textApi.d.ts",[1,3,1244],[0,1245,8],"dist/lib/util/textRegex.d.ts",[1,3,1247],[0,1248,8],"dist/lib/util/textRegex.test.d.ts",[1,3,1250],[0,1251,8],"dist/lib/util/types.d.ts",[1,3,1253],[0,1254,8],"dist/lib/util/url.d.ts",[1,3,1256],[0,1257,8],"dist/lib/util/url.test.d.ts",[1,3,1259],[0,1260,8],"dist/lib/util/util.d.ts",[1,3,1262],[0,1263,8],"dist/lib/util/util.test.d.ts",[1,3,1265],[0,1266,8],"dist/lib/util/wordSplitter.d.ts",[1,3,1268],[0,1269,8],"dist/lib/util/wordSplitter.perf.d.ts",[1,3,1271],[0,1272,8],"dist/lib/util/wordSplitter.test.d.ts",[1,3,1274],[0,1275,8],"dist/lib/validator.d.ts",[1,3,1277],[0,1278,8],"dist/lib/wordListHelper.d.ts",[1,3,1280],[0,1281,8],"dist/lib/wordListHelper.test.d.ts",[1,3,1283],[0,1284,8],"fixtures/docValidator/parser/sample.ts",[1,3,1286],[0,1287,8],"fixtures/docValidator/sample-with-cspell-directives.ts",[1,3,1289],[0,1290,8],"fixtures/docValidator/sample-with-directives-errors.ts",[1,3,1292],[0,1293,8],"fixtures/docValidator/sample-with-errors.ts",[1,3,1295],[0,1296,8],"fixtures/docValidator/sample-with-many-errors.ts",[1,3,1298],[0,1299,8],"samples/bug-fixes/bug345.ts",[1,3,1301],[0,1302,8],"src/lib/Cache/cspell.cache.test.ts",[1,3,1304],[0,1305,8],"src/lib/Cache/cspell.cache.ts",[1,3,1307],[0,1308,8],"src/lib/Cache/index.test.ts",[1,3,1310],[0,1311,8],"src/lib/Cache/index.ts",[1,3,1313],[0,1314,8],"src/lib/Document/Document.ts",[1,3,1316],[0,1317,8],"src/lib/Document/index.ts",[1,3,1319],[0,1320,8],"src/lib/Document/isBinaryDoc.test.ts",[1,3,1322],[0,1323,8],"src/lib/Document/isBinaryDoc.ts",[1,3,1325],[0,1326,8],"src/lib/Document/normalizeLanguageIds.ts",[1,3,1328],[0,1329,8],"src/lib/Document/resolveDocument.ts",[1,3,1331],[0,1332,8],"src/lib/FeatureFlags/FeatureFalgs.test.ts",[1,3,1334],[0,1335,8],"src/lib/FeatureFlags/FeatureFlags.ts",[1,3,1337],[0,1338,8],"src/lib/FeatureFlags/index.ts",[1,3,1340],[0,1341,8],"src/lib/LanguageIds.test.ts",[1,3,1343],[0,1344,8],"src/lib/LanguageIds.ts",[1,3,1346],[0,1347,8],"src/lib/Models/CSpellSettingsInternalDef.ts",[1,3,1349],[0,1350,8],"src/lib/Models/PatternRegExp.test.ts",[1,3,1352],[0,1353,8],"src/lib/Models/PatternRegExp.ts",[1,3,1355],[0,1356,8],"src/lib/Models/Suggestion.ts",[1,3,1358],[0,1359,8],"src/lib/Models/TextDocument.test.ts",[1,3,1361],[0,1362,8],"src/lib/Models/TextDocument.ts",[1,3,1364],[0,1365,8],"src/lib/Models/ValidationIssue.ts",[1,3,1367],[0,1368,8],"src/lib/Models/ValidationResult.ts",[1,3,1370],[0,1371,8],"src/lib/Settings/CSpellSettingsServer.test.ts",[1,3,1373],[0,1374,8],"src/lib/Settings/CSpellSettingsServer.ts",[1,3,1376],[0,1377,8],"src/lib/Settings/Controller/ImportError.test.ts",[1,3,1379],[0,1380,8],"src/lib/Settings/Controller/ImportError.ts",[1,3,1382],[0,1383,8],"src/lib/Settings/Controller/configLoader/PnPSettings.ts",[1,3,1385],[0,1386,8],"src/lib/Settings/Controller/configLoader/configLoader.test.ts",[1,3,1388],[0,1389,8],"src/lib/Settings/Controller/configLoader/configLoader.ts",[1,3,1391],[0,1392,8],"src/lib/Settings/Controller/configLoader/configLocations.ts",[1,3,1394],[0,1395,8],"src/lib/Settings/Controller/configLoader/configSearch.test.ts",[1,3,1397],[0,1398,8],"src/lib/Settings/Controller/configLoader/configSearch.ts",[1,3,1400],[0,1401,8],"src/lib/Settings/Controller/configLoader/configToRawSettings.test.ts",[1,3,1403],[0,1404,8],"src/lib/Settings/Controller/configLoader/configToRawSettings.ts",[1,3,1406],[0,1407,8],"src/lib/Settings/Controller/configLoader/defaultConfigLoader.test.ts",[1,3,1409],[0,1410,8],"src/lib/Settings/Controller/configLoader/defaultConfigLoader.ts",[1,3,1412],[0,1413,8],"src/lib/Settings/Controller/configLoader/defaultSettings.ts",[1,3,1415],[0,1416,8],"src/lib/Settings/Controller/configLoader/extractImportErrors.ts",[1,3,1418],[0,1419,8],"src/lib/Settings/Controller/configLoader/index.ts",[1,3,1421],[0,1422,8],"src/lib/Settings/Controller/configLoader/normalizeRawSettings.test.ts",[1,3,1424],[0,1425,8],"src/lib/Settings/Controller/configLoader/normalizeRawSettings.ts",[1,3,1427],[0,1428,8],"src/lib/Settings/Controller/configLoader/readSettings.ts",[1,3,1430],[0,1431,8],"src/lib/Settings/Controller/configLoader/readSettingsFiles.ts",[1,3,1433],[0,1434,8],"src/lib/Settings/Controller/configLoader/toGlobDef.ts",[1,3,1436],[0,1437,8],"src/lib/Settings/Controller/configLoader/types.ts",[1,3,1439],[0,1440,8],"src/lib/Settings/Controller/index.ts",[1,3,1442],[0,1443,8],"src/lib/Settings/Controller/pnpLoader.test.ts",[1,3,1445],[0,1446,8],"src/lib/Settings/Controller/pnpLoader.ts",[1,3,1448],[0,1449,8],"src/lib/Settings/DefaultSettings.test.ts",[1,3,1451],[0,1452,8],"src/lib/Settings/DefaultSettings.ts",[1,3,1454],[0,1455,8],"src/lib/Settings/DictionaryReferenceCollection.test.ts",[1,3,1457],[0,1458,8],"src/lib/Settings/DictionaryReferenceCollection.ts",[1,3,1460],[0,1461,8],"src/lib/Settings/DictionarySettings.test.ts",[1,3,1463],[0,1464,8],"src/lib/Settings/DictionarySettings.ts",[1,3,1466],[0,1467,8],"src/lib/Settings/GlobalSettings.test.ts",[1,3,1469],[0,1470,8],"src/lib/Settings/GlobalSettings.ts",[1,3,1472],[0,1473,8],"src/lib/Settings/InDocSettings.test.ts",[1,3,1475],[0,1476,8],"src/lib/Settings/InDocSettings.ts",[1,3,1478],[0,1479,8],"src/lib/Settings/LanguageSettings.test.ts",[1,3,1481],[0,1482,8],"src/lib/Settings/LanguageSettings.ts",[1,3,1484],[0,1485,8],"src/lib/Settings/RegExpPatterns.test.ts",[1,3,1487],[0,1488,8],"src/lib/Settings/RegExpPatterns.ts",[1,3,1490],[0,1491,8],"src/lib/Settings/TextDocumentSettings.test.ts",[1,3,1493],[0,1494,8],"src/lib/Settings/TextDocumentSettings.ts",[1,3,1496],[0,1497,8],"src/lib/Settings/calcOverrideSettings.ts",[1,3,1499],[0,1500,8],"src/lib/Settings/cfgStore.test.ts",[1,3,1502],[0,1503,8],"src/lib/Settings/cfgStore.ts",[1,3,1505],[0,1506,8],"src/lib/Settings/checkFilenameMatchesGlob.ts",[1,3,1508],[0,1509,8],"src/lib/Settings/constants.ts",[1,3,1511],[0,1512,8],"src/lib/Settings/index.link.ts",[1,3,1514],[0,1515,8],"src/lib/Settings/index.ts",[1,3,1517],[0,1518,8],"src/lib/Settings/link.test.ts",[1,3,1520],[0,1521,8],"src/lib/Settings/link.ts",[1,3,1523],[0,1524,8],"src/lib/Settings/mergeCache.test.ts",[1,3,1526],[0,1527,8],"src/lib/Settings/mergeCache.ts",[1,3,1529],[0,1530,8],"src/lib/Settings/mergeList.ts",[1,3,1532],[0,1533,8],"src/lib/Settings/patterns.test.ts",[1,3,1535],[0,1536,8],"src/lib/Settings/patterns.ts",[1,3,1538],[0,1539,8],"src/lib/SpellingDictionary/Dictionaries.test.ts",[1,3,1541],[0,1542,8],"src/lib/SpellingDictionary/Dictionaries.ts",[1,3,1544],[0,1545,8],"src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.ts",[1,3,1547],[0,1548,8],"src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.ts",[1,3,1550],[0,1551,8],"src/lib/SpellingDictionary/DictionaryController/index.ts",[1,3,1553],[0,1554,8],"src/lib/SpellingDictionary/DictionaryLoader.test.ts",[1,3,1556],[0,1557,8],"src/lib/SpellingDictionary/DictionaryLoader.ts",[1,3,1559],[0,1560,8],"src/lib/SpellingDictionary/SpellingDictionary.ts",[1,3,1562],[0,1563,8],"src/lib/SpellingDictionary/SpellingDictionaryError.ts",[1,3,1565],[0,1566,8],"src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.ts",[1,3,1568],[0,1569,8],"src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.ts",[1,3,1571],[0,1572,8],"src/lib/SpellingDictionary/SuggestExperimental/entities.ts",[1,3,1574],[0,1575,8],"src/lib/SpellingDictionary/SuggestExperimental/helpers.test.ts",[1,3,1577],[0,1578,8],"src/lib/SpellingDictionary/SuggestExperimental/helpers.ts",[1,3,1580],[0,1581,8],"src/lib/SpellingDictionary/SuggestExperimental/suggest.test.ts",[1,3,1583],[0,1584,8],"src/lib/SpellingDictionary/SuggestExperimental/suggest.ts",[1,3,1586],[0,1587,8],"src/lib/SpellingDictionary/index.ts",[1,3,1589],[0,1590,8],"src/lib/clearCachedFiles.test.ts",[1,3,1592],[0,1593,8],"src/lib/clearCachedFiles.ts",[1,3,1595],[0,1596,8],"src/lib/events/events.test.ts",[1,3,1598],[0,1599,8],"src/lib/events/events.ts",[1,3,1601],[0,1602,8],"src/lib/events/index.ts",[1,3,1604],[0,1605,8],"src/lib/exclusionHelper.test.ts",[1,3,1607],[0,1608,8],"src/lib/exclusionHelper.ts",[1,3,1610],[0,1611,8],"src/lib/fileSystem.ts",[1,3,1613],[0,1614,8],"src/lib/getDictionary.ts",[1,3,1616],[0,1617,8],"src/lib/globs/checkFilenameMatchesGlob.ts",[1,3,1619],[0,1620,8],"src/lib/globs/getGlobMatcher.ts",[1,3,1622],[0,1623,8],"src/lib/index.test.ts",[1,3,1625],[0,1626,8],"src/lib/index.ts",[1,3,1628],[0,1629,8],"src/lib/leaked-handles.d.ts",[1,3,1631],[0,1632,8],"src/lib/node-namespace.d.ts",[1,3,1634],[0,1635,8],"src/lib/perf/index.ts",[1,3,1637],[0,1638,8],"src/lib/perf/perf.test.ts",[1,3,1640],[0,1641,8],"src/lib/perf/perf.ts",[1,3,1643],[0,1644,8],"src/lib/perf/timer.test.ts",[1,3,1646],[0,1647,8],"src/lib/perf/timer.ts",[1,3,1649],[0,1650,8],"src/lib/spellCheckFile.test.ts",[1,3,1652],[0,1653,8],"src/lib/spellCheckFile.ts",[1,3,1655],[0,1656,8],"src/lib/suggestions.test.ts",[1,3,1658],[0,1659,8],"src/lib/suggestions.ts",[1,3,1661],[0,1662,8],"src/lib/test/bugs.spec.ts",[1,3,1664],[0,1665,8],"src/lib/test/dutch.spec.ts",[1,3,1667],[0,1668,8],"src/lib/test/english.spec.ts",[1,3,1670],[0,1671,8],"src/lib/test/fa.spec.ts",[1,3,1673],[0,1674,8],"src/lib/test/french.spec.ts",[1,3,1676],[0,1677,8],"src/lib/test/golang.spec.ts",[1,3,1679],[0,1680,8],"src/lib/test/python.spec.ts",[1,3,1682],[0,1683,8],"src/lib/textValidation/ValidateTextOptions.ts",[1,3,1685],[0,1686,8],"src/lib/textValidation/ValidationTypes.ts",[1,3,1688],[0,1689,8],"src/lib/textValidation/checkText.test.ts",[1,3,1691],[0,1692,8],"src/lib/textValidation/checkText.ts",[1,3,1694],[0,1695,8],"src/lib/textValidation/defaultConstants.ts",[1,3,1697],[0,1698,8],"src/lib/textValidation/determineTextDocumentSettings.test.ts",[1,3,1700],[0,1701,8],"src/lib/textValidation/determineTextDocumentSettings.ts",[1,3,1703],[0,1704,8],"src/lib/textValidation/docValidator.test.ts",[1,3,1706],[0,1707,8],"src/lib/textValidation/docValidator.ts",[1,3,1709],[0,1710,8],"src/lib/textValidation/index.ts",[1,3,1712],[0,1713,8],"src/lib/textValidation/isWordValid.test.ts",[1,3,1715],[0,1716,8],"src/lib/textValidation/isWordValid.ts",[1,3,1718],[0,1719,8],"src/lib/textValidation/lineValidatorFactory.test.ts",[1,3,1721],[0,1722,8],"src/lib/textValidation/lineValidatorFactory.ts",[1,3,1724],[0,1725,8],"src/lib/textValidation/parsedText.test.ts",[1,3,1727],[0,1728,8],"src/lib/textValidation/parsedText.ts",[1,3,1730],[0,1731,8],"src/lib/textValidation/settingsToValidateOptions.ts",[1,3,1733],[0,1734,8],"src/lib/textValidation/textValidator.test.ts",[1,3,1736],[0,1737,8],"src/lib/textValidation/textValidator.ts",[1,3,1739],[0,1740,8],"src/lib/textValidation/traceWord.test.ts",[1,3,1742],[0,1743,8],"src/lib/textValidation/traceWord.ts",[1,3,1745],[0,1746,8],"src/lib/textValidation/validator.test.ts",[1,3,1748],[0,1749,8],"src/lib/textValidation/validator.ts",[1,3,1751],[0,1752,8],"src/lib/trace.test.ts",[1,3,1754],[0,1755,8],"src/lib/trace.ts",[1,3,1757],[0,1758,8],"src/lib/util/AutoResolve.test.ts",[1,3,1760],[0,1761,8],"src/lib/util/AutoResolve.ts",[1,3,1763],[0,1764,8],"src/lib/util/AutoResolveLRUCache.test.ts",[1,3,1766],[0,1767,8],"src/lib/util/AutoResolveLRUCache.ts",[1,3,1769],[0,1770,8],"src/lib/util/Comparable.test.ts",[1,3,1772],[0,1773,8],"src/lib/util/Comparable.ts",[1,3,1775],[0,1776,8],"src/lib/util/FreqCounter.test.ts",[1,3,1778],[0,1779,8],"src/lib/util/FreqCounter.ts",[1,3,1781],[0,1782,8],"src/lib/util/IterableLike.ts",[1,3,1784],[0,1785,8],"src/lib/util/MinHeapQueue.test.ts",[1,3,1787],[0,1788,8],"src/lib/util/MinHeapQueue.ts",[1,3,1790],[0,1791,8],"src/lib/util/PairingHeap.test.ts",[1,3,1793],[0,1794,8],"src/lib/util/PairingHeap.ts",[1,3,1796],[0,1797,8],"src/lib/util/TextMap.test.ts",[1,3,1799],[0,1800,8],"src/lib/util/TextMap.ts",[1,3,1802],[0,1803,8],"src/lib/util/TextRange.regexp.test.ts",[1,3,1805],[0,1806,8],"src/lib/util/TextRange.test.ts",[1,3,1808],[0,1809,8],"src/lib/util/TextRange.ts",[1,3,1811],[0,1812,8],"src/lib/util/Uri.test.ts",[1,3,1814],[0,1815,8],"src/lib/util/Uri.ts",[1,3,1817],[0,1818,8],"src/lib/util/errors.test.ts",[1,3,1820],[0,1821,8],"src/lib/util/errors.ts",[1,3,1823],[0,1824,8],"src/lib/util/fileReader.test.ts",[1,3,1826],[0,1827,8],"src/lib/util/fileReader.ts",[1,3,1829],[0,1830,8],"src/lib/util/findUp.test.ts",[1,3,1832],[0,1833,8],"src/lib/util/findUp.ts",[1,3,1835],[0,1836,8],"src/lib/util/findUpFromUrl.test.ts",[1,3,1838],[0,1839,8],"src/lib/util/findUpFromUrl.ts",[1,3,1841],[0,1842,8],"src/lib/util/iterableIteratorLib.test.ts",[1,3,1844],[0,1845,8],"src/lib/util/iterableIteratorLib.ts",[1,3,1847],[0,1848,8],"src/lib/util/logger.test.ts",[1,3,1850],[0,1851,8],"src/lib/util/logger.ts",[1,3,1853],[0,1854,8],"src/lib/util/memorizeLastCall.test.ts",[1,3,1856],[0,1857,8],"src/lib/util/memorizeLastCall.ts",[1,3,1859],[0,1860,8],"src/lib/util/memorizerWeak.test.ts",[1,3,1862],[0,1863,8],"src/lib/util/memorizerWeak.ts",[1,3,1865],[0,1866,8],"src/lib/util/regexHelper.ts",[1,3,1868],[0,1869,8],"src/lib/util/repMap.test.ts",[1,3,1871],[0,1872,8],"src/lib/util/repMap.ts",[1,3,1874],[0,1875,8],"src/lib/util/resolveFile.test.ts",[1,3,1877],[0,1878,8],"src/lib/util/resolveFile.ts",[1,3,1880],[0,1881,8],"src/lib/util/search.test.ts",[1,3,1883],[0,1884,8],"src/lib/util/search.ts",[1,3,1886],[0,1887,8],"src/lib/util/simpleCache.test.ts",[1,3,1889],[0,1890,8],"src/lib/util/simpleCache.ts",[1,3,1892],[0,1893,8],"src/lib/util/templates.test.ts",[1,3,1895],[0,1896,8],"src/lib/util/templates.ts",[1,3,1898],[0,1899,8],"src/lib/util/text.test.ts",[1,3,1901],[0,1902,8],"src/lib/util/text.ts",[1,3,1904],[0,1905,8],"src/lib/util/textApi.ts",[1,3,1907],[0,1908,8],"src/lib/util/textRegex.test.ts",[1,3,1910],[0,1911,8],"src/lib/util/textRegex.ts",[1,3,1913],[0,1914,8],"src/lib/util/types.ts",[1,3,1916],[0,1917,8],"src/lib/util/url.test.ts",[1,3,1919],[0,1920,8],"src/lib/util/url.ts",[1,3,1922],[0,1923,8],"src/lib/util/util.test.ts",[1,3,1925],[0,1926,8],"src/lib/util/util.ts",[1,3,1928],[0,1929,8],"src/lib/util/wordSplitter.perf.ts",[1,3,1931],[0,1932,8],"src/lib/util/wordSplitter.test.ts",[1,3,1934],[0,1935,8],"src/lib/util/wordSplitter.ts",[1,3,1937],[0,1938,8],"src/lib/validator.ts",[1,3,1940],[0,1941,8],"src/lib/wordListHelper.test.ts",[1,3,1943],[0,1944,8],"src/lib/wordListHelper.ts",[1,3,1946],[0,1947,1948],"",[0]] diff --git a/packages/flatpack-json/src/__snapshots__/storageV2_fileObjects.jsonc b/packages/flatpack-json/src/__snapshots__/storageV2_fileObjects.jsonc new file mode 100644 index 000000000000..5f5a5987c850 --- /dev/null +++ b/packages/flatpack-json/src/__snapshots__/storageV2_fileObjects.jsonc @@ -0,0 +1,1980 @@ +[ +"Flatpack JSON v1", +[0,2,10,13,16,19,22,25,28,31,34,37,40,43,46,49,52,55,58,61,64,67,70,73,76,79,82,85,88,91,94,97,100,103,106,109,112,115, +118,121,124,127,130,133,136,139,142,145,148,151,154,157,160,163,166,169,172,175,178,181,184,187,190,193, +196,199,202,205,208,211,214,217,220,223,226,229,232,235,238,241,244,247,250,253,256,259,262,265,268,271,274,277,280,283, +286,289,292,295,298,301,304,307,310,313,316,319,322,325,328,331,334,337,340,343,346,349,352,355,358,361,364,367,370,373, +376,379,382,385, +388,391,394,397,400,403,406,409,412,415,418,421,424,427,430,433,436,439,442,445,448,451,454,457,460,463,466,469,472,475, +478,481,484,487,490,493,496,499,502,505,508,511,514,517,520,523,526,529,532,535,538,541,544,547,550,553,556,559,562,565, +568,571,574,577, +580,583,586,589,592,595,598,601,604,607,610,613,616,619,622,625,628,631,634,637,640,643,646,649,652,655,658,661,664,667, +670,673,676,679,682,685,688,691,694,697,700,703,706,709,712,715,718,721,724,727,730,733,736,739,742,745,748,751,754,757, +760,763,766,769, +772,775,778,781,784,787,790,793,796,799,802,805,808,811,814,817,820,823,826,829,832,835,838,841,844,847,850,853,856,859, +862,865,868,871,874,877,880,883,886,889,892,895,898,901,904,907,910,913,916,919,922,925,928,931,934,937,940,943,946,949, +952,955,958,961, +964,967,970,973,976,979,982,985,988,991,994,997,1000,1003,1006,1009,1012,1015,1018,1021,1024,1027,1030,1033,1036,1039, +1042,1045,1048,1051,1054,1057,1060,1063,1066,1069,1072,1075,1078,1081,1084,1087,1090,1093,1096,1099,1102,1105,1108,1111, +1114,1117,1120,1123,1126,1129,1132,1135,1138,1141,1144,1147,1150,1153, +1156,1159,1162,1165,1168,1171,1174,1177,1180,1183,1186,1189,1192,1195,1198,1201,1204,1207,1210,1213,1216,1219,1222,1225, +1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1258,1261,1264,1267,1270,1273,1276,1279,1282,1285,1288,1291,1294,1297, +1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345, +1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1381,1384,1387,1390,1393,1396,1399,1402,1405,1408,1411,1414,1417, +1420,1423,1426,1429,1432,1435,1438,1441,1444,1447,1450,1453,1456,1459,1462,1465,1468,1471,1474,1477,1480,1483,1486,1489, +1492,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537, +1540,1543,1546,1549,1552,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609, +1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1663,1666,1669,1672,1675,1678,1681, +1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729, +1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801, +1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834,1837,1840,1843,1846,1849,1852,1855,1858,1861,1864,1867,1870,1873, +1876,1879,1882,1885,1888,1891,1894,1897,1900,1903,1906,1909,1912,1915,1918,1921, +1924,1927,1930,1933,1936,1939,1942,1945], +[1,3,6], +[0,4,5], +"filename", +"fileType", +[0,7,8], +"api/api.d.ts", +[0,9], +"typescript", +[1,3,11], +[0,12,8], +"dist/esm/Cache/cspell.cache.d.ts", +[1,3,14], +[0,15,8], +"dist/esm/Cache/cspell.cache.test.d.ts", +[1,3,17], +[0,18,8], +"dist/esm/Cache/index.d.ts", +[1,3,20], +[0,21,8], +"dist/esm/Cache/index.test.d.ts", +[1,3,23], +[0,24,8], +"dist/esm/Document/Document.d.ts", +[1,3,26], +[0,27,8], +"dist/esm/Document/index.d.ts", +[1,3,29], +[0,30,8], +"dist/esm/Document/isBinaryDoc.d.ts", +[1,3,32], +[0,33,8], +"dist/esm/Document/isBinaryDoc.test.d.ts", +[1,3,35], +[0,36,8], +"dist/esm/Document/normalizeLanguageIds.d.ts", +[1,3,38], +[0,39,8], +"dist/esm/Document/resolveDocument.d.ts", +[1,3,41], +[0,42,8], +"dist/esm/FeatureFlags/FeatureFalgs.test.d.ts", +[1,3,44], +[0,45,8], +"dist/esm/FeatureFlags/FeatureFlags.d.ts", +[1,3,47], +[0,48,8], +"dist/esm/FeatureFlags/index.d.ts", +[1,3,50], +[0,51,8], +"dist/esm/LanguageIds.d.ts", +[1,3,53], +[0,54,8], +"dist/esm/LanguageIds.test.d.ts", +[1,3,56], +[0,57,8], +"dist/esm/Models/CSpellSettingsInternalDef.d.ts", +[1,3,59], +[0,60,8], +"dist/esm/Models/PatternRegExp.d.ts", +[1,3,62], +[0,63,8], +"dist/esm/Models/PatternRegExp.test.d.ts", +[1,3,65], +[0,66,8], +"dist/esm/Models/Suggestion.d.ts", +[1,3,68], +[0,69,8], +"dist/esm/Models/TextDocument.d.ts", +[1,3,71], +[0,72,8], +"dist/esm/Models/TextDocument.test.d.ts", +[1,3,74], +[0,75,8], +"dist/esm/Models/ValidationIssue.d.ts", +[1,3,77], +[0,78,8], +"dist/esm/Models/ValidationResult.d.ts", +[1,3,80], +[0,81,8], +"dist/esm/Settings/CSpellSettingsServer.d.ts", +[1,3,83], +[0,84,8], +"dist/esm/Settings/CSpellSettingsServer.test.d.ts", +[1,3,86], +[0,87,8], +"dist/esm/Settings/Controller/ImportError.d.ts", +[1,3,89], +[0,90,8], +"dist/esm/Settings/Controller/ImportError.test.d.ts", +[1,3,92], +[0,93,8], +"dist/esm/Settings/Controller/configLoader/PnPSettings.d.ts", +[1,3,95], +[0,96,8], +"dist/esm/Settings/Controller/configLoader/configLoader.d.ts", +[1,3,98], +[0,99,8], +"dist/esm/Settings/Controller/configLoader/configLoader.test.d.ts", +[1,3,101], +[0,102,8], +"dist/esm/Settings/Controller/configLoader/configLocations.d.ts", +[1,3,104], +[0,105,8], +"dist/esm/Settings/Controller/configLoader/configSearch.d.ts", +[1,3,107], +[0,108,8], +"dist/esm/Settings/Controller/configLoader/configSearch.test.d.ts", +[1,3,110], +[0,111,8], +"dist/esm/Settings/Controller/configLoader/configToRawSettings.d.ts", +[1,3,113], +[0,114,8], +"dist/esm/Settings/Controller/configLoader/configToRawSettings.test.d.ts", +[1,3,116], +[0,117,8], +"dist/esm/Settings/Controller/configLoader/defaultConfigLoader.d.ts", +[1,3,119], +[0,120,8], +"dist/esm/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts", +[1,3,122], +[0,123,8], +"dist/esm/Settings/Controller/configLoader/defaultSettings.d.ts", +[1,3,125], +[0,126,8], +"dist/esm/Settings/Controller/configLoader/extractImportErrors.d.ts", +[1,3,128], +[0,129,8], +"dist/esm/Settings/Controller/configLoader/index.d.ts", +[1,3,131], +[0,132,8], +"dist/esm/Settings/Controller/configLoader/normalizeRawSettings.d.ts", +[1,3,134], +[0,135,8], +"dist/esm/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts", +[1,3,137], +[0,138,8], +"dist/esm/Settings/Controller/configLoader/readSettings.d.ts", +[1,3,140], +[0,141,8], +"dist/esm/Settings/Controller/configLoader/readSettingsFiles.d.ts", +[1,3,143], +[0,144,8], +"dist/esm/Settings/Controller/configLoader/toGlobDef.d.ts", +[1,3,146], +[0,147,8], +"dist/esm/Settings/Controller/configLoader/types.d.ts", +[1,3,149], +[0,150,8], +"dist/esm/Settings/Controller/index.d.ts", +[1,3,152], +[0,153,8], +"dist/esm/Settings/Controller/pnpLoader.d.ts", +[1,3,155], +[0,156,8], +"dist/esm/Settings/Controller/pnpLoader.test.d.ts", +[1,3,158], +[0,159,8], +"dist/esm/Settings/DefaultSettings.d.ts", +[1,3,161], +[0,162,8], +"dist/esm/Settings/DefaultSettings.test.d.ts", +[1,3,164], +[0,165,8], +"dist/esm/Settings/DictionaryReferenceCollection.d.ts", +[1,3,167], +[0,168,8], +"dist/esm/Settings/DictionaryReferenceCollection.test.d.ts", +[1,3,170], +[0,171,8], +"dist/esm/Settings/DictionarySettings.d.ts", +[1,3,173], +[0,174,8], +"dist/esm/Settings/DictionarySettings.test.d.ts", +[1,3,176], +[0,177,8], +"dist/esm/Settings/GlobalSettings.d.ts", +[1,3,179], +[0,180,8], +"dist/esm/Settings/GlobalSettings.test.d.ts", +[1,3,182], +[0,183,8], +"dist/esm/Settings/InDocSettings.d.ts", +[1,3,185], +[0,186,8], +"dist/esm/Settings/InDocSettings.test.d.ts", +[1,3,188], +[0,189,8], +"dist/esm/Settings/LanguageSettings.d.ts", +[1,3,191], +[0,192,8], +"dist/esm/Settings/LanguageSettings.test.d.ts", +[1,3,194], +[0,195,8], +"dist/esm/Settings/RegExpPatterns.d.ts", +[1,3,197], +[0,198,8], +"dist/esm/Settings/RegExpPatterns.test.d.ts", +[1,3,200], +[0,201,8], +"dist/esm/Settings/TextDocumentSettings.d.ts", +[1,3,203], +[0,204,8], +"dist/esm/Settings/TextDocumentSettings.test.d.ts", +[1,3,206], +[0,207,8], +"dist/esm/Settings/calcOverrideSettings.d.ts", +[1,3,209], +[0,210,8], +"dist/esm/Settings/cfgStore.d.ts", +[1,3,212], +[0,213,8], +"dist/esm/Settings/cfgStore.test.d.ts", +[1,3,215], +[0,216,8], +"dist/esm/Settings/checkFilenameMatchesGlob.d.ts", +[1,3,218], +[0,219,8], +"dist/esm/Settings/constants.d.ts", +[1,3,221], +[0,222,8], +"dist/esm/Settings/index.d.ts", +[1,3,224], +[0,225,8], +"dist/esm/Settings/index.link.d.ts", +[1,3,227], +[0,228,8], +"dist/esm/Settings/link.d.ts", +[1,3,230], +[0,231,8], +"dist/esm/Settings/link.test.d.ts", +[1,3,233], +[0,234,8], +"dist/esm/Settings/mergeCache.d.ts", +[1,3,236], +[0,237,8], +"dist/esm/Settings/mergeCache.test.d.ts", +[1,3,239], +[0,240,8], +"dist/esm/Settings/mergeList.d.ts", +[1,3,242], +[0,243,8], +"dist/esm/Settings/patterns.d.ts", +[1,3,245], +[0,246,8], +"dist/esm/Settings/patterns.test.d.ts", +[1,3,248], +[0,249,8], +"dist/esm/SpellingDictionary/Dictionaries.d.ts", +[1,3,251], +[0,252,8], +"dist/esm/SpellingDictionary/Dictionaries.test.d.ts", +[1,3,254], +[0,255,8], +"dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts", +[1,3,257], +[0,258,8], +"dist/esm/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts", +[1,3,260], +[0,261,8], +"dist/esm/SpellingDictionary/DictionaryController/index.d.ts", +[1,3,263], +[0,264,8], +"dist/esm/SpellingDictionary/DictionaryLoader.d.ts", +[1,3,266], +[0,267,8], +"dist/esm/SpellingDictionary/DictionaryLoader.test.d.ts", +[1,3,269], +[0,270,8], +"dist/esm/SpellingDictionary/SpellingDictionary.d.ts", +[1,3,272], +[0,273,8], +"dist/esm/SpellingDictionary/SpellingDictionaryError.d.ts", +[1,3,275], +[0,276,8], +"dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts", +[1,3,278], +[0,279,8], +"dist/esm/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts", +[1,3,281], +[0,282,8], +"dist/esm/SpellingDictionary/SuggestExperimental/entities.d.ts", +[1,3,284], +[0,285,8], +"dist/esm/SpellingDictionary/SuggestExperimental/helpers.d.ts", +[1,3,287], +[0,288,8], +"dist/esm/SpellingDictionary/SuggestExperimental/helpers.test.d.ts", +[1,3,290], +[0,291,8], +"dist/esm/SpellingDictionary/SuggestExperimental/suggest.d.ts", +[1,3,293], +[0,294,8], +"dist/esm/SpellingDictionary/SuggestExperimental/suggest.test.d.ts", +[1,3,296], +[0,297,8], +"dist/esm/SpellingDictionary/index.d.ts", +[1,3,299], +[0,300,8], +"dist/esm/clearCachedFiles.d.ts", +[1,3,302], +[0,303,8], +"dist/esm/clearCachedFiles.test.d.ts", +[1,3,305], +[0,306,8], +"dist/esm/events/events.d.ts", +[1,3,308], +[0,309,8], +"dist/esm/events/events.test.d.ts", +[1,3,311], +[0,312,8], +"dist/esm/events/index.d.ts", +[1,3,314], +[0,315,8], +"dist/esm/exclusionHelper.d.ts", +[1,3,317], +[0,318,8], +"dist/esm/exclusionHelper.test.d.ts", +[1,3,320], +[0,321,8], +"dist/esm/fileSystem.d.ts", +[1,3,323], +[0,324,8], +"dist/esm/getDictionary.d.ts", +[1,3,326], +[0,327,8], +"dist/esm/globs/checkFilenameMatchesGlob.d.ts", +[1,3,329], +[0,330,8], +"dist/esm/globs/getGlobMatcher.d.ts", +[1,3,332], +[0,333,8], +"dist/esm/index.d.ts", +[1,3,335], +[0,336,8], +"dist/esm/index.test.d.ts", +[1,3,338], +[0,339,8], +"dist/esm/perf/index.d.ts", +[1,3,341], +[0,342,8], +"dist/esm/perf/perf.d.ts", +[1,3,344], +[0,345,8], +"dist/esm/perf/perf.test.d.ts", +[1,3,347], +[0,348,8], +"dist/esm/perf/timer.d.ts", +[1,3,350], +[0,351,8], +"dist/esm/perf/timer.test.d.ts", +[1,3,353], +[0,354,8], +"dist/esm/spellCheckFile.d.ts", +[1,3,356], +[0,357,8], +"dist/esm/spellCheckFile.test.d.ts", +[1,3,359], +[0,360,8], +"dist/esm/suggestions.d.ts", +[1,3,362], +[0,363,8], +"dist/esm/suggestions.test.d.ts", +[1,3,365], +[0,366,8], +"dist/esm/test/bugs.spec.d.ts", +[1,3,368], +[0,369,8], +"dist/esm/test/dutch.spec.d.ts", +[1,3,371], +[0,372,8], +"dist/esm/test/english.spec.d.ts", +[1,3,374], +[0,375,8], +"dist/esm/test/fa.spec.d.ts", +[1,3,377], +[0,378,8], +"dist/esm/test/french.spec.d.ts", +[1,3,380], +[0,381,8], +"dist/esm/test/golang.spec.d.ts", +[1,3,383], +[0,384,8], +"dist/esm/test/python.spec.d.ts", +[1,3,386], +[0,387,8], +"dist/esm/textValidation/ValidateTextOptions.d.ts", +[1,3,389], +[0,390,8], +"dist/esm/textValidation/ValidationTypes.d.ts", +[1,3,392], +[0,393,8], +"dist/esm/textValidation/checkText.d.ts", +[1,3,395], +[0,396,8], +"dist/esm/textValidation/checkText.test.d.ts", +[1,3,398], +[0,399,8], +"dist/esm/textValidation/defaultConstants.d.ts", +[1,3,401], +[0,402,8], +"dist/esm/textValidation/determineTextDocumentSettings.d.ts", +[1,3,404], +[0,405,8], +"dist/esm/textValidation/determineTextDocumentSettings.test.d.ts", +[1,3,407], +[0,408,8], +"dist/esm/textValidation/docValidator.d.ts", +[1,3,410], +[0,411,8], +"dist/esm/textValidation/docValidator.test.d.ts", +[1,3,413], +[0,414,8], +"dist/esm/textValidation/index.d.ts", +[1,3,416], +[0,417,8], +"dist/esm/textValidation/isWordValid.d.ts", +[1,3,419], +[0,420,8], +"dist/esm/textValidation/isWordValid.test.d.ts", +[1,3,422], +[0,423,8], +"dist/esm/textValidation/lineValidatorFactory.d.ts", +[1,3,425], +[0,426,8], +"dist/esm/textValidation/lineValidatorFactory.test.d.ts", +[1,3,428], +[0,429,8], +"dist/esm/textValidation/parsedText.d.ts", +[1,3,431], +[0,432,8], +"dist/esm/textValidation/parsedText.test.d.ts", +[1,3,434], +[0,435,8], +"dist/esm/textValidation/settingsToValidateOptions.d.ts", +[1,3,437], +[0,438,8], +"dist/esm/textValidation/textValidator.d.ts", +[1,3,440], +[0,441,8], +"dist/esm/textValidation/textValidator.test.d.ts", +[1,3,443], +[0,444,8], +"dist/esm/textValidation/traceWord.d.ts", +[1,3,446], +[0,447,8], +"dist/esm/textValidation/traceWord.test.d.ts", +[1,3,449], +[0,450,8], +"dist/esm/textValidation/validator.d.ts", +[1,3,452], +[0,453,8], +"dist/esm/textValidation/validator.test.d.ts", +[1,3,455], +[0,456,8], +"dist/esm/trace.d.ts", +[1,3,458], +[0,459,8], +"dist/esm/trace.test.d.ts", +[1,3,461], +[0,462,8], +"dist/esm/util/AutoResolve.d.ts", +[1,3,464], +[0,465,8], +"dist/esm/util/AutoResolve.test.d.ts", +[1,3,467], +[0,468,8], +"dist/esm/util/AutoResolveLRUCache.d.ts", +[1,3,470], +[0,471,8], +"dist/esm/util/AutoResolveLRUCache.test.d.ts", +[1,3,473], +[0,474,8], +"dist/esm/util/Comparable.d.ts", +[1,3,476], +[0,477,8], +"dist/esm/util/Comparable.test.d.ts", +[1,3,479], +[0,480,8], +"dist/esm/util/FreqCounter.d.ts", +[1,3,482], +[0,483,8], +"dist/esm/util/FreqCounter.test.d.ts", +[1,3,485], +[0,486,8], +"dist/esm/util/IterableLike.d.ts", +[1,3,488], +[0,489,8], +"dist/esm/util/MinHeapQueue.d.ts", +[1,3,491], +[0,492,8], +"dist/esm/util/MinHeapQueue.test.d.ts", +[1,3,494], +[0,495,8], +"dist/esm/util/PairingHeap.d.ts", +[1,3,497], +[0,498,8], +"dist/esm/util/PairingHeap.test.d.ts", +[1,3,500], +[0,501,8], +"dist/esm/util/TextMap.d.ts", +[1,3,503], +[0,504,8], +"dist/esm/util/TextMap.test.d.ts", +[1,3,506], +[0,507,8], +"dist/esm/util/TextRange.d.ts", +[1,3,509], +[0,510,8], +"dist/esm/util/TextRange.regexp.test.d.ts", +[1,3,512], +[0,513,8], +"dist/esm/util/TextRange.test.d.ts", +[1,3,515], +[0,516,8], +"dist/esm/util/Uri.d.ts", +[1,3,518], +[0,519,8], +"dist/esm/util/Uri.test.d.ts", +[1,3,521], +[0,522,8], +"dist/esm/util/errors.d.ts", +[1,3,524], +[0,525,8], +"dist/esm/util/errors.test.d.ts", +[1,3,527], +[0,528,8], +"dist/esm/util/fileReader.d.ts", +[1,3,530], +[0,531,8], +"dist/esm/util/fileReader.test.d.ts", +[1,3,533], +[0,534,8], +"dist/esm/util/findUp.d.ts", +[1,3,536], +[0,537,8], +"dist/esm/util/findUp.test.d.ts", +[1,3,539], +[0,540,8], +"dist/esm/util/findUpFromUrl.d.ts", +[1,3,542], +[0,543,8], +"dist/esm/util/findUpFromUrl.test.d.ts", +[1,3,545], +[0,546,8], +"dist/esm/util/iterableIteratorLib.d.ts", +[1,3,548], +[0,549,8], +"dist/esm/util/iterableIteratorLib.test.d.ts", +[1,3,551], +[0,552,8], +"dist/esm/util/logger.d.ts", +[1,3,554], +[0,555,8], +"dist/esm/util/logger.test.d.ts", +[1,3,557], +[0,558,8], +"dist/esm/util/memorizeLastCall.d.ts", +[1,3,560], +[0,561,8], +"dist/esm/util/memorizeLastCall.test.d.ts", +[1,3,563], +[0,564,8], +"dist/esm/util/memorizerWeak.d.ts", +[1,3,566], +[0,567,8], +"dist/esm/util/memorizerWeak.test.d.ts", +[1,3,569], +[0,570,8], +"dist/esm/util/regexHelper.d.ts", +[1,3,572], +[0,573,8], +"dist/esm/util/repMap.d.ts", +[1,3,575], +[0,576,8], +"dist/esm/util/repMap.test.d.ts", +[1,3,578], +[0,579,8], +"dist/esm/util/resolveFile.d.ts", +[1,3,581], +[0,582,8], +"dist/esm/util/resolveFile.test.d.ts", +[1,3,584], +[0,585,8], +"dist/esm/util/search.d.ts", +[1,3,587], +[0,588,8], +"dist/esm/util/search.test.d.ts", +[1,3,590], +[0,591,8], +"dist/esm/util/simpleCache.d.ts", +[1,3,593], +[0,594,8], +"dist/esm/util/simpleCache.test.d.ts", +[1,3,596], +[0,597,8], +"dist/esm/util/templates.d.ts", +[1,3,599], +[0,600,8], +"dist/esm/util/templates.test.d.ts", +[1,3,602], +[0,603,8], +"dist/esm/util/text.d.ts", +[1,3,605], +[0,606,8], +"dist/esm/util/text.test.d.ts", +[1,3,608], +[0,609,8], +"dist/esm/util/textRegex.d.ts", +[1,3,611], +[0,612,8], +"dist/esm/util/textRegex.test.d.ts", +[1,3,614], +[0,615,8], +"dist/esm/util/types.d.ts", +[1,3,617], +[0,618,8], +"dist/esm/util/url.d.ts", +[1,3,620], +[0,621,8], +"dist/esm/util/url.test.d.ts", +[1,3,623], +[0,624,8], +"dist/esm/util/util.d.ts", +[1,3,626], +[0,627,8], +"dist/esm/util/util.test.d.ts", +[1,3,629], +[0,630,8], +"dist/esm/util/wordSplitter.d.ts", +[1,3,632], +[0,633,8], +"dist/esm/util/wordSplitter.test.d.ts", +[1,3,635], +[0,636,8], +"dist/esm/validator.d.ts", +[1,3,638], +[0,639,8], +"dist/esm/wordListHelper.d.ts", +[1,3,641], +[0,642,8], +"dist/esm/wordListHelper.test.d.ts", +[1,3,644], +[0,645,8], +"dist/lib/Cache/cspell.cache.d.ts", +[1,3,647], +[0,648,8], +"dist/lib/Cache/cspell.cache.test.d.ts", +[1,3,650], +[0,651,8], +"dist/lib/Cache/index.d.ts", +[1,3,653], +[0,654,8], +"dist/lib/Cache/index.test.d.ts", +[1,3,656], +[0,657,8], +"dist/lib/Document/Document.d.ts", +[1,3,659], +[0,660,8], +"dist/lib/Document/index.d.ts", +[1,3,662], +[0,663,8], +"dist/lib/Document/isBinaryDoc.d.ts", +[1,3,665], +[0,666,8], +"dist/lib/Document/isBinaryDoc.test.d.ts", +[1,3,668], +[0,669,8], +"dist/lib/Document/normalizeLanguageIds.d.ts", +[1,3,671], +[0,672,8], +"dist/lib/Document/resolveDocument.d.ts", +[1,3,674], +[0,675,8], +"dist/lib/FeatureFlags/FeatureFalgs.test.d.ts", +[1,3,677], +[0,678,8], +"dist/lib/FeatureFlags/FeatureFlags.d.ts", +[1,3,680], +[0,681,8], +"dist/lib/FeatureFlags/index.d.ts", +[1,3,683], +[0,684,8], +"dist/lib/LanguageIds.d.ts", +[1,3,686], +[0,687,8], +"dist/lib/LanguageIds.test.d.ts", +[1,3,689], +[0,690,8], +"dist/lib/Models/CSpellSettingsInternalDef.d.ts", +[1,3,692], +[0,693,8], +"dist/lib/Models/PatternRegExp.d.ts", +[1,3,695], +[0,696,8], +"dist/lib/Models/PatternRegExp.test.d.ts", +[1,3,698], +[0,699,8], +"dist/lib/Models/Suggestion.d.ts", +[1,3,701], +[0,702,8], +"dist/lib/Models/TextDocument.d.ts", +[1,3,704], +[0,705,8], +"dist/lib/Models/TextDocument.test.d.ts", +[1,3,707], +[0,708,8], +"dist/lib/Models/ValidationIssue.d.ts", +[1,3,710], +[0,711,8], +"dist/lib/Models/ValidationResult.d.ts", +[1,3,713], +[0,714,8], +"dist/lib/Settings/CSpellSettingsServer.d.ts", +[1,3,716], +[0,717,8], +"dist/lib/Settings/CSpellSettingsServer.test.d.ts", +[1,3,719], +[0,720,8], +"dist/lib/Settings/Controller/ImportError.d.ts", +[1,3,722], +[0,723,8], +"dist/lib/Settings/Controller/ImportError.test.d.ts", +[1,3,725], +[0,726,8], +"dist/lib/Settings/Controller/configLoader/PnPSettings.d.ts", +[1,3,728], +[0,729,8], +"dist/lib/Settings/Controller/configLoader/configLoader.d.ts", +[1,3,731], +[0,732,8], +"dist/lib/Settings/Controller/configLoader/configLoader.test.d.ts", +[1,3,734], +[0,735,8], +"dist/lib/Settings/Controller/configLoader/configLocations.d.ts", +[1,3,737], +[0,738,8], +"dist/lib/Settings/Controller/configLoader/configSearch.d.ts", +[1,3,740], +[0,741,8], +"dist/lib/Settings/Controller/configLoader/configSearch.test.d.ts", +[1,3,743], +[0,744,8], +"dist/lib/Settings/Controller/configLoader/configToRawSettings.d.ts", +[1,3,746], +[0,747,8], +"dist/lib/Settings/Controller/configLoader/configToRawSettings.test.d.ts", +[1,3,749], +[0,750,8], +"dist/lib/Settings/Controller/configLoader/defaultConfigLoader.d.ts", +[1,3,752], +[0,753,8], +"dist/lib/Settings/Controller/configLoader/defaultConfigLoader.test.d.ts", +[1,3,755], +[0,756,8], +"dist/lib/Settings/Controller/configLoader/defaultSettings.d.ts", +[1,3,758], +[0,759,8], +"dist/lib/Settings/Controller/configLoader/extractImportErrors.d.ts", +[1,3,761], +[0,762,8], +"dist/lib/Settings/Controller/configLoader/index.d.ts", +[1,3,764], +[0,765,8], +"dist/lib/Settings/Controller/configLoader/normalizeRawSettings.d.ts", +[1,3,767], +[0,768,8], +"dist/lib/Settings/Controller/configLoader/normalizeRawSettings.test.d.ts", +[1,3,770], +[0,771,8], +"dist/lib/Settings/Controller/configLoader/readSettings.d.ts", +[1,3,773], +[0,774,8], +"dist/lib/Settings/Controller/configLoader/readSettingsFiles.d.ts", +[1,3,776], +[0,777,8], +"dist/lib/Settings/Controller/configLoader/toGlobDef.d.ts", +[1,3,779], +[0,780,8], +"dist/lib/Settings/Controller/configLoader/types.d.ts", +[1,3,782], +[0,783,8], +"dist/lib/Settings/Controller/index.d.ts", +[1,3,785], +[0,786,8], +"dist/lib/Settings/Controller/pnpLoader.d.ts", +[1,3,788], +[0,789,8], +"dist/lib/Settings/Controller/pnpLoader.test.d.ts", +[1,3,791], +[0,792,8], +"dist/lib/Settings/DefaultSettings.d.ts", +[1,3,794], +[0,795,8], +"dist/lib/Settings/DefaultSettings.test.d.ts", +[1,3,797], +[0,798,8], +"dist/lib/Settings/DictionaryReferenceCollection.d.ts", +[1,3,800], +[0,801,8], +"dist/lib/Settings/DictionaryReferenceCollection.test.d.ts", +[1,3,803], +[0,804,8], +"dist/lib/Settings/DictionarySettings.d.ts", +[1,3,806], +[0,807,8], +"dist/lib/Settings/DictionarySettings.test.d.ts", +[1,3,809], +[0,810,8], +"dist/lib/Settings/GlobalSettings.d.ts", +[1,3,812], +[0,813,8], +"dist/lib/Settings/GlobalSettings.test.d.ts", +[1,3,815], +[0,816,8], +"dist/lib/Settings/InDocSettings.d.ts", +[1,3,818], +[0,819,8], +"dist/lib/Settings/InDocSettings.test.d.ts", +[1,3,821], +[0,822,8], +"dist/lib/Settings/LanguageSettings.d.ts", +[1,3,824], +[0,825,8], +"dist/lib/Settings/LanguageSettings.test.d.ts", +[1,3,827], +[0,828,8], +"dist/lib/Settings/RegExpPatterns.d.ts", +[1,3,830], +[0,831,8], +"dist/lib/Settings/RegExpPatterns.test.d.ts", +[1,3,833], +[0,834,8], +"dist/lib/Settings/TextDocumentSettings.d.ts", +[1,3,836], +[0,837,8], +"dist/lib/Settings/TextDocumentSettings.test.d.ts", +[1,3,839], +[0,840,8], +"dist/lib/Settings/calcOverrideSettings.d.ts", +[1,3,842], +[0,843,8], +"dist/lib/Settings/cfgStore.d.ts", +[1,3,845], +[0,846,8], +"dist/lib/Settings/cfgStore.test.d.ts", +[1,3,848], +[0,849,8], +"dist/lib/Settings/checkFilenameMatchesGlob.d.ts", +[1,3,851], +[0,852,8], +"dist/lib/Settings/constants.d.ts", +[1,3,854], +[0,855,8], +"dist/lib/Settings/index.d.ts", +[1,3,857], +[0,858,8], +"dist/lib/Settings/index.link.d.ts", +[1,3,860], +[0,861,8], +"dist/lib/Settings/link.d.ts", +[1,3,863], +[0,864,8], +"dist/lib/Settings/link.test.d.ts", +[1,3,866], +[0,867,8], +"dist/lib/Settings/mergeCache.d.ts", +[1,3,869], +[0,870,8], +"dist/lib/Settings/mergeCache.test.d.ts", +[1,3,872], +[0,873,8], +"dist/lib/Settings/mergeList.d.ts", +[1,3,875], +[0,876,8], +"dist/lib/Settings/patterns.d.ts", +[1,3,878], +[0,879,8], +"dist/lib/Settings/patterns.test.d.ts", +[1,3,881], +[0,882,8], +"dist/lib/SpellingDictionary/Dictionaries.d.ts", +[1,3,884], +[0,885,8], +"dist/lib/SpellingDictionary/Dictionaries.test.d.ts", +[1,3,887], +[0,888,8], +"dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.d.ts", +[1,3,890], +[0,891,8], +"dist/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.d.ts", +[1,3,893], +[0,894,8], +"dist/lib/SpellingDictionary/DictionaryController/index.d.ts", +[1,3,896], +[0,897,8], +"dist/lib/SpellingDictionary/DictionaryLoader.d.ts", +[1,3,899], +[0,900,8], +"dist/lib/SpellingDictionary/DictionaryLoader.test.d.ts", +[1,3,902], +[0,903,8], +"dist/lib/SpellingDictionary/SpellingDictionary.d.ts", +[1,3,905], +[0,906,8], +"dist/lib/SpellingDictionary/SpellingDictionaryError.d.ts", +[1,3,908], +[0,909,8], +"dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.d.ts", +[1,3,911], +[0,912,8], +"dist/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.d.ts", +[1,3,914], +[0,915,8], +"dist/lib/SpellingDictionary/SuggestExperimental/entities.d.ts", +[1,3,917], +[0,918,8], +"dist/lib/SpellingDictionary/SuggestExperimental/helpers.d.ts", +[1,3,920], +[0,921,8], +"dist/lib/SpellingDictionary/SuggestExperimental/helpers.test.d.ts", +[1,3,923], +[0,924,8], +"dist/lib/SpellingDictionary/SuggestExperimental/suggest.d.ts", +[1,3,926], +[0,927,8], +"dist/lib/SpellingDictionary/SuggestExperimental/suggest.test.d.ts", +[1,3,929], +[0,930,8], +"dist/lib/SpellingDictionary/index.d.ts", +[1,3,932], +[0,933,8], +"dist/lib/clearCachedFiles.d.ts", +[1,3,935], +[0,936,8], +"dist/lib/clearCachedFiles.test.d.ts", +[1,3,938], +[0,939,8], +"dist/lib/events/events.d.ts", +[1,3,941], +[0,942,8], +"dist/lib/events/events.test.d.ts", +[1,3,944], +[0,945,8], +"dist/lib/events/index.d.ts", +[1,3,947], +[0,948,8], +"dist/lib/exclusionHelper.d.ts", +[1,3,950], +[0,951,8], +"dist/lib/exclusionHelper.test.d.ts", +[1,3,953], +[0,954,8], +"dist/lib/fileSystem.d.ts", +[1,3,956], +[0,957,8], +"dist/lib/getDictionary.d.ts", +[1,3,959], +[0,960,8], +"dist/lib/globs/checkFilenameMatchesGlob.d.ts", +[1,3,962], +[0,963,8], +"dist/lib/globs/getGlobMatcher.d.ts", +[1,3,965], +[0,966,8], +"dist/lib/index.d.ts", +[1,3,968], +[0,969,8], +"dist/lib/index.test.d.ts", +[1,3,971], +[0,972,8], +"dist/lib/perf/index.d.ts", +[1,3,974], +[0,975,8], +"dist/lib/perf/perf.d.ts", +[1,3,977], +[0,978,8], +"dist/lib/perf/perf.test.d.ts", +[1,3,980], +[0,981,8], +"dist/lib/perf/timer.d.ts", +[1,3,983], +[0,984,8], +"dist/lib/perf/timer.test.d.ts", +[1,3,986], +[0,987,8], +"dist/lib/spellCheckFile.d.ts", +[1,3,989], +[0,990,8], +"dist/lib/spellCheckFile.test.d.ts", +[1,3,992], +[0,993,8], +"dist/lib/suggestions.d.ts", +[1,3,995], +[0,996,8], +"dist/lib/suggestions.test.d.ts", +[1,3,998], +[0,999,8], +"dist/lib/test/bugs.spec.d.ts", +[1,3,1001], +[0,1002,8], +"dist/lib/test/dutch.spec.d.ts", +[1,3,1004], +[0,1005,8], +"dist/lib/test/english.spec.d.ts", +[1,3,1007], +[0,1008,8], +"dist/lib/test/fa.spec.d.ts", +[1,3,1010], +[0,1011,8], +"dist/lib/test/french.spec.d.ts", +[1,3,1013], +[0,1014,8], +"dist/lib/test/golang.spec.d.ts", +[1,3,1016], +[0,1017,8], +"dist/lib/test/python.spec.d.ts", +[1,3,1019], +[0,1020,8], +"dist/lib/textValidation/ValidateTextOptions.d.ts", +[1,3,1022], +[0,1023,8], +"dist/lib/textValidation/ValidationTypes.d.ts", +[1,3,1025], +[0,1026,8], +"dist/lib/textValidation/checkText.d.ts", +[1,3,1028], +[0,1029,8], +"dist/lib/textValidation/checkText.test.d.ts", +[1,3,1031], +[0,1032,8], +"dist/lib/textValidation/defaultConstants.d.ts", +[1,3,1034], +[0,1035,8], +"dist/lib/textValidation/determineTextDocumentSettings.d.ts", +[1,3,1037], +[0,1038,8], +"dist/lib/textValidation/determineTextDocumentSettings.test.d.ts", +[1,3,1040], +[0,1041,8], +"dist/lib/textValidation/docValidator.d.ts", +[1,3,1043], +[0,1044,8], +"dist/lib/textValidation/docValidator.test.d.ts", +[1,3,1046], +[0,1047,8], +"dist/lib/textValidation/index.d.ts", +[1,3,1049], +[0,1050,8], +"dist/lib/textValidation/isWordValid.d.ts", +[1,3,1052], +[0,1053,8], +"dist/lib/textValidation/isWordValid.test.d.ts", +[1,3,1055], +[0,1056,8], +"dist/lib/textValidation/lineValidatorFactory.d.ts", +[1,3,1058], +[0,1059,8], +"dist/lib/textValidation/lineValidatorFactory.test.d.ts", +[1,3,1061], +[0,1062,8], +"dist/lib/textValidation/parsedText.d.ts", +[1,3,1064], +[0,1065,8], +"dist/lib/textValidation/parsedText.test.d.ts", +[1,3,1067], +[0,1068,8], +"dist/lib/textValidation/settingsToValidateOptions.d.ts", +[1,3,1070], +[0,1071,8], +"dist/lib/textValidation/textValidator.d.ts", +[1,3,1073], +[0,1074,8], +"dist/lib/textValidation/textValidator.test.d.ts", +[1,3,1076], +[0,1077,8], +"dist/lib/textValidation/traceWord.d.ts", +[1,3,1079], +[0,1080,8], +"dist/lib/textValidation/traceWord.test.d.ts", +[1,3,1082], +[0,1083,8], +"dist/lib/textValidation/validator.d.ts", +[1,3,1085], +[0,1086,8], +"dist/lib/textValidation/validator.test.d.ts", +[1,3,1088], +[0,1089,8], +"dist/lib/trace.d.ts", +[1,3,1091], +[0,1092,8], +"dist/lib/trace.test.d.ts", +[1,3,1094], +[0,1095,8], +"dist/lib/util/AutoResolve.d.ts", +[1,3,1097], +[0,1098,8], +"dist/lib/util/AutoResolve.test.d.ts", +[1,3,1100], +[0,1101,8], +"dist/lib/util/AutoResolveLRUCache.d.ts", +[1,3,1103], +[0,1104,8], +"dist/lib/util/AutoResolveLRUCache.test.d.ts", +[1,3,1106], +[0,1107,8], +"dist/lib/util/Comparable.d.ts", +[1,3,1109], +[0,1110,8], +"dist/lib/util/Comparable.test.d.ts", +[1,3,1112], +[0,1113,8], +"dist/lib/util/FreqCounter.d.ts", +[1,3,1115], +[0,1116,8], +"dist/lib/util/FreqCounter.test.d.ts", +[1,3,1118], +[0,1119,8], +"dist/lib/util/IterableLike.d.ts", +[1,3,1121], +[0,1122,8], +"dist/lib/util/MinHeapQueue.d.ts", +[1,3,1124], +[0,1125,8], +"dist/lib/util/MinHeapQueue.test.d.ts", +[1,3,1127], +[0,1128,8], +"dist/lib/util/PairingHeap.d.ts", +[1,3,1130], +[0,1131,8], +"dist/lib/util/PairingHeap.test.d.ts", +[1,3,1133], +[0,1134,8], +"dist/lib/util/TextMap.d.ts", +[1,3,1136], +[0,1137,8], +"dist/lib/util/TextMap.test.d.ts", +[1,3,1139], +[0,1140,8], +"dist/lib/util/TextRange.d.ts", +[1,3,1142], +[0,1143,8], +"dist/lib/util/TextRange.regexp.test.d.ts", +[1,3,1145], +[0,1146,8], +"dist/lib/util/TextRange.test.d.ts", +[1,3,1148], +[0,1149,8], +"dist/lib/util/Uri.d.ts", +[1,3,1151], +[0,1152,8], +"dist/lib/util/Uri.test.d.ts", +[1,3,1154], +[0,1155,8], +"dist/lib/util/errors.d.ts", +[1,3,1157], +[0,1158,8], +"dist/lib/util/errors.test.d.ts", +[1,3,1160], +[0,1161,8], +"dist/lib/util/fileReader.d.ts", +[1,3,1163], +[0,1164,8], +"dist/lib/util/fileReader.test.d.ts", +[1,3,1166], +[0,1167,8], +"dist/lib/util/findUp.d.ts", +[1,3,1169], +[0,1170,8], +"dist/lib/util/findUp.test.d.ts", +[1,3,1172], +[0,1173,8], +"dist/lib/util/findUpFromUrl.d.ts", +[1,3,1175], +[0,1176,8], +"dist/lib/util/findUpFromUrl.test.d.ts", +[1,3,1178], +[0,1179,8], +"dist/lib/util/iterableIteratorLib.d.ts", +[1,3,1181], +[0,1182,8], +"dist/lib/util/iterableIteratorLib.test.d.ts", +[1,3,1184], +[0,1185,8], +"dist/lib/util/logger.d.ts", +[1,3,1187], +[0,1188,8], +"dist/lib/util/logger.test.d.ts", +[1,3,1190], +[0,1191,8], +"dist/lib/util/memorizeLastCall.d.ts", +[1,3,1193], +[0,1194,8], +"dist/lib/util/memorizeLastCall.test.d.ts", +[1,3,1196], +[0,1197,8], +"dist/lib/util/memorizerWeak.d.ts", +[1,3,1199], +[0,1200,8], +"dist/lib/util/memorizerWeak.test.d.ts", +[1,3,1202], +[0,1203,8], +"dist/lib/util/regexHelper.d.ts", +[1,3,1205], +[0,1206,8], +"dist/lib/util/repMap.d.ts", +[1,3,1208], +[0,1209,8], +"dist/lib/util/repMap.test.d.ts", +[1,3,1211], +[0,1212,8], +"dist/lib/util/resolveFile.d.ts", +[1,3,1214], +[0,1215,8], +"dist/lib/util/resolveFile.test.d.ts", +[1,3,1217], +[0,1218,8], +"dist/lib/util/search.d.ts", +[1,3,1220], +[0,1221,8], +"dist/lib/util/search.test.d.ts", +[1,3,1223], +[0,1224,8], +"dist/lib/util/simpleCache.d.ts", +[1,3,1226], +[0,1227,8], +"dist/lib/util/simpleCache.test.d.ts", +[1,3,1229], +[0,1230,8], +"dist/lib/util/templates.d.ts", +[1,3,1232], +[0,1233,8], +"dist/lib/util/templates.test.d.ts", +[1,3,1235], +[0,1236,8], +"dist/lib/util/text.d.ts", +[1,3,1238], +[0,1239,8], +"dist/lib/util/text.test.d.ts", +[1,3,1241], +[0,1242,8], +"dist/lib/util/textApi.d.ts", +[1,3,1244], +[0,1245,8], +"dist/lib/util/textRegex.d.ts", +[1,3,1247], +[0,1248,8], +"dist/lib/util/textRegex.test.d.ts", +[1,3,1250], +[0,1251,8], +"dist/lib/util/types.d.ts", +[1,3,1253], +[0,1254,8], +"dist/lib/util/url.d.ts", +[1,3,1256], +[0,1257,8], +"dist/lib/util/url.test.d.ts", +[1,3,1259], +[0,1260,8], +"dist/lib/util/util.d.ts", +[1,3,1262], +[0,1263,8], +"dist/lib/util/util.test.d.ts", +[1,3,1265], +[0,1266,8], +"dist/lib/util/wordSplitter.d.ts", +[1,3,1268], +[0,1269,8], +"dist/lib/util/wordSplitter.perf.d.ts", +[1,3,1271], +[0,1272,8], +"dist/lib/util/wordSplitter.test.d.ts", +[1,3,1274], +[0,1275,8], +"dist/lib/validator.d.ts", +[1,3,1277], +[0,1278,8], +"dist/lib/wordListHelper.d.ts", +[1,3,1280], +[0,1281,8], +"dist/lib/wordListHelper.test.d.ts", +[1,3,1283], +[0,1284,8], +"fixtures/docValidator/parser/sample.ts", +[1,3,1286], +[0,1287,8], +"fixtures/docValidator/sample-with-cspell-directives.ts", +[1,3,1289], +[0,1290,8], +"fixtures/docValidator/sample-with-directives-errors.ts", +[1,3,1292], +[0,1293,8], +"fixtures/docValidator/sample-with-errors.ts", +[1,3,1295], +[0,1296,8], +"fixtures/docValidator/sample-with-many-errors.ts", +[1,3,1298], +[0,1299,8], +"samples/bug-fixes/bug345.ts", +[1,3,1301], +[0,1302,8], +"src/lib/Cache/cspell.cache.test.ts", +[1,3,1304], +[0,1305,8], +"src/lib/Cache/cspell.cache.ts", +[1,3,1307], +[0,1308,8], +"src/lib/Cache/index.test.ts", +[1,3,1310], +[0,1311,8], +"src/lib/Cache/index.ts", +[1,3,1313], +[0,1314,8], +"src/lib/Document/Document.ts", +[1,3,1316], +[0,1317,8], +"src/lib/Document/index.ts", +[1,3,1319], +[0,1320,8], +"src/lib/Document/isBinaryDoc.test.ts", +[1,3,1322], +[0,1323,8], +"src/lib/Document/isBinaryDoc.ts", +[1,3,1325], +[0,1326,8], +"src/lib/Document/normalizeLanguageIds.ts", +[1,3,1328], +[0,1329,8], +"src/lib/Document/resolveDocument.ts", +[1,3,1331], +[0,1332,8], +"src/lib/FeatureFlags/FeatureFalgs.test.ts", +[1,3,1334], +[0,1335,8], +"src/lib/FeatureFlags/FeatureFlags.ts", +[1,3,1337], +[0,1338,8], +"src/lib/FeatureFlags/index.ts", +[1,3,1340], +[0,1341,8], +"src/lib/LanguageIds.test.ts", +[1,3,1343], +[0,1344,8], +"src/lib/LanguageIds.ts", +[1,3,1346], +[0,1347,8], +"src/lib/Models/CSpellSettingsInternalDef.ts", +[1,3,1349], +[0,1350,8], +"src/lib/Models/PatternRegExp.test.ts", +[1,3,1352], +[0,1353,8], +"src/lib/Models/PatternRegExp.ts", +[1,3,1355], +[0,1356,8], +"src/lib/Models/Suggestion.ts", +[1,3,1358], +[0,1359,8], +"src/lib/Models/TextDocument.test.ts", +[1,3,1361], +[0,1362,8], +"src/lib/Models/TextDocument.ts", +[1,3,1364], +[0,1365,8], +"src/lib/Models/ValidationIssue.ts", +[1,3,1367], +[0,1368,8], +"src/lib/Models/ValidationResult.ts", +[1,3,1370], +[0,1371,8], +"src/lib/Settings/CSpellSettingsServer.test.ts", +[1,3,1373], +[0,1374,8], +"src/lib/Settings/CSpellSettingsServer.ts", +[1,3,1376], +[0,1377,8], +"src/lib/Settings/Controller/ImportError.test.ts", +[1,3,1379], +[0,1380,8], +"src/lib/Settings/Controller/ImportError.ts", +[1,3,1382], +[0,1383,8], +"src/lib/Settings/Controller/configLoader/PnPSettings.ts", +[1,3,1385], +[0,1386,8], +"src/lib/Settings/Controller/configLoader/configLoader.test.ts", +[1,3,1388], +[0,1389,8], +"src/lib/Settings/Controller/configLoader/configLoader.ts", +[1,3,1391], +[0,1392,8], +"src/lib/Settings/Controller/configLoader/configLocations.ts", +[1,3,1394], +[0,1395,8], +"src/lib/Settings/Controller/configLoader/configSearch.test.ts", +[1,3,1397], +[0,1398,8], +"src/lib/Settings/Controller/configLoader/configSearch.ts", +[1,3,1400], +[0,1401,8], +"src/lib/Settings/Controller/configLoader/configToRawSettings.test.ts", +[1,3,1403], +[0,1404,8], +"src/lib/Settings/Controller/configLoader/configToRawSettings.ts", +[1,3,1406], +[0,1407,8], +"src/lib/Settings/Controller/configLoader/defaultConfigLoader.test.ts", +[1,3,1409], +[0,1410,8], +"src/lib/Settings/Controller/configLoader/defaultConfigLoader.ts", +[1,3,1412], +[0,1413,8], +"src/lib/Settings/Controller/configLoader/defaultSettings.ts", +[1,3,1415], +[0,1416,8], +"src/lib/Settings/Controller/configLoader/extractImportErrors.ts", +[1,3,1418], +[0,1419,8], +"src/lib/Settings/Controller/configLoader/index.ts", +[1,3,1421], +[0,1422,8], +"src/lib/Settings/Controller/configLoader/normalizeRawSettings.test.ts", +[1,3,1424], +[0,1425,8], +"src/lib/Settings/Controller/configLoader/normalizeRawSettings.ts", +[1,3,1427], +[0,1428,8], +"src/lib/Settings/Controller/configLoader/readSettings.ts", +[1,3,1430], +[0,1431,8], +"src/lib/Settings/Controller/configLoader/readSettingsFiles.ts", +[1,3,1433], +[0,1434,8], +"src/lib/Settings/Controller/configLoader/toGlobDef.ts", +[1,3,1436], +[0,1437,8], +"src/lib/Settings/Controller/configLoader/types.ts", +[1,3,1439], +[0,1440,8], +"src/lib/Settings/Controller/index.ts", +[1,3,1442], +[0,1443,8], +"src/lib/Settings/Controller/pnpLoader.test.ts", +[1,3,1445], +[0,1446,8], +"src/lib/Settings/Controller/pnpLoader.ts", +[1,3,1448], +[0,1449,8], +"src/lib/Settings/DefaultSettings.test.ts", +[1,3,1451], +[0,1452,8], +"src/lib/Settings/DefaultSettings.ts", +[1,3,1454], +[0,1455,8], +"src/lib/Settings/DictionaryReferenceCollection.test.ts", +[1,3,1457], +[0,1458,8], +"src/lib/Settings/DictionaryReferenceCollection.ts", +[1,3,1460], +[0,1461,8], +"src/lib/Settings/DictionarySettings.test.ts", +[1,3,1463], +[0,1464,8], +"src/lib/Settings/DictionarySettings.ts", +[1,3,1466], +[0,1467,8], +"src/lib/Settings/GlobalSettings.test.ts", +[1,3,1469], +[0,1470,8], +"src/lib/Settings/GlobalSettings.ts", +[1,3,1472], +[0,1473,8], +"src/lib/Settings/InDocSettings.test.ts", +[1,3,1475], +[0,1476,8], +"src/lib/Settings/InDocSettings.ts", +[1,3,1478], +[0,1479,8], +"src/lib/Settings/LanguageSettings.test.ts", +[1,3,1481], +[0,1482,8], +"src/lib/Settings/LanguageSettings.ts", +[1,3,1484], +[0,1485,8], +"src/lib/Settings/RegExpPatterns.test.ts", +[1,3,1487], +[0,1488,8], +"src/lib/Settings/RegExpPatterns.ts", +[1,3,1490], +[0,1491,8], +"src/lib/Settings/TextDocumentSettings.test.ts", +[1,3,1493], +[0,1494,8], +"src/lib/Settings/TextDocumentSettings.ts", +[1,3,1496], +[0,1497,8], +"src/lib/Settings/calcOverrideSettings.ts", +[1,3,1499], +[0,1500,8], +"src/lib/Settings/cfgStore.test.ts", +[1,3,1502], +[0,1503,8], +"src/lib/Settings/cfgStore.ts", +[1,3,1505], +[0,1506,8], +"src/lib/Settings/checkFilenameMatchesGlob.ts", +[1,3,1508], +[0,1509,8], +"src/lib/Settings/constants.ts", +[1,3,1511], +[0,1512,8], +"src/lib/Settings/index.link.ts", +[1,3,1514], +[0,1515,8], +"src/lib/Settings/index.ts", +[1,3,1517], +[0,1518,8], +"src/lib/Settings/link.test.ts", +[1,3,1520], +[0,1521,8], +"src/lib/Settings/link.ts", +[1,3,1523], +[0,1524,8], +"src/lib/Settings/mergeCache.test.ts", +[1,3,1526], +[0,1527,8], +"src/lib/Settings/mergeCache.ts", +[1,3,1529], +[0,1530,8], +"src/lib/Settings/mergeList.ts", +[1,3,1532], +[0,1533,8], +"src/lib/Settings/patterns.test.ts", +[1,3,1535], +[0,1536,8], +"src/lib/Settings/patterns.ts", +[1,3,1538], +[0,1539,8], +"src/lib/SpellingDictionary/Dictionaries.test.ts", +[1,3,1541], +[0,1542,8], +"src/lib/SpellingDictionary/Dictionaries.ts", +[1,3,1544], +[0,1545,8], +"src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.test.ts", +[1,3,1547], +[0,1548,8], +"src/lib/SpellingDictionary/DictionaryController/DictionaryLoader.ts", +[1,3,1550], +[0,1551,8], +"src/lib/SpellingDictionary/DictionaryController/index.ts", +[1,3,1553], +[0,1554,8], +"src/lib/SpellingDictionary/DictionaryLoader.test.ts", +[1,3,1556], +[0,1557,8], +"src/lib/SpellingDictionary/DictionaryLoader.ts", +[1,3,1559], +[0,1560,8], +"src/lib/SpellingDictionary/SpellingDictionary.ts", +[1,3,1562], +[0,1563,8], +"src/lib/SpellingDictionary/SpellingDictionaryError.ts", +[1,3,1565], +[0,1566,8], +"src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.test.ts", +[1,3,1568], +[0,1569,8], +"src/lib/SpellingDictionary/SuggestExperimental/SuggestionCollector.ts", +[1,3,1571], +[0,1572,8], +"src/lib/SpellingDictionary/SuggestExperimental/entities.ts", +[1,3,1574], +[0,1575,8], +"src/lib/SpellingDictionary/SuggestExperimental/helpers.test.ts", +[1,3,1577], +[0,1578,8], +"src/lib/SpellingDictionary/SuggestExperimental/helpers.ts", +[1,3,1580], +[0,1581,8], +"src/lib/SpellingDictionary/SuggestExperimental/suggest.test.ts", +[1,3,1583], +[0,1584,8], +"src/lib/SpellingDictionary/SuggestExperimental/suggest.ts", +[1,3,1586], +[0,1587,8], +"src/lib/SpellingDictionary/index.ts", +[1,3,1589], +[0,1590,8], +"src/lib/clearCachedFiles.test.ts", +[1,3,1592], +[0,1593,8], +"src/lib/clearCachedFiles.ts", +[1,3,1595], +[0,1596,8], +"src/lib/events/events.test.ts", +[1,3,1598], +[0,1599,8], +"src/lib/events/events.ts", +[1,3,1601], +[0,1602,8], +"src/lib/events/index.ts", +[1,3,1604], +[0,1605,8], +"src/lib/exclusionHelper.test.ts", +[1,3,1607], +[0,1608,8], +"src/lib/exclusionHelper.ts", +[1,3,1610], +[0,1611,8], +"src/lib/fileSystem.ts", +[1,3,1613], +[0,1614,8], +"src/lib/getDictionary.ts", +[1,3,1616], +[0,1617,8], +"src/lib/globs/checkFilenameMatchesGlob.ts", +[1,3,1619], +[0,1620,8], +"src/lib/globs/getGlobMatcher.ts", +[1,3,1622], +[0,1623,8], +"src/lib/index.test.ts", +[1,3,1625], +[0,1626,8], +"src/lib/index.ts", +[1,3,1628], +[0,1629,8], +"src/lib/leaked-handles.d.ts", +[1,3,1631], +[0,1632,8], +"src/lib/node-namespace.d.ts", +[1,3,1634], +[0,1635,8], +"src/lib/perf/index.ts", +[1,3,1637], +[0,1638,8], +"src/lib/perf/perf.test.ts", +[1,3,1640], +[0,1641,8], +"src/lib/perf/perf.ts", +[1,3,1643], +[0,1644,8], +"src/lib/perf/timer.test.ts", +[1,3,1646], +[0,1647,8], +"src/lib/perf/timer.ts", +[1,3,1649], +[0,1650,8], +"src/lib/spellCheckFile.test.ts", +[1,3,1652], +[0,1653,8], +"src/lib/spellCheckFile.ts", +[1,3,1655], +[0,1656,8], +"src/lib/suggestions.test.ts", +[1,3,1658], +[0,1659,8], +"src/lib/suggestions.ts", +[1,3,1661], +[0,1662,8], +"src/lib/test/bugs.spec.ts", +[1,3,1664], +[0,1665,8], +"src/lib/test/dutch.spec.ts", +[1,3,1667], +[0,1668,8], +"src/lib/test/english.spec.ts", +[1,3,1670], +[0,1671,8], +"src/lib/test/fa.spec.ts", +[1,3,1673], +[0,1674,8], +"src/lib/test/french.spec.ts", +[1,3,1676], +[0,1677,8], +"src/lib/test/golang.spec.ts", +[1,3,1679], +[0,1680,8], +"src/lib/test/python.spec.ts", +[1,3,1682], +[0,1683,8], +"src/lib/textValidation/ValidateTextOptions.ts", +[1,3,1685], +[0,1686,8], +"src/lib/textValidation/ValidationTypes.ts", +[1,3,1688], +[0,1689,8], +"src/lib/textValidation/checkText.test.ts", +[1,3,1691], +[0,1692,8], +"src/lib/textValidation/checkText.ts", +[1,3,1694], +[0,1695,8], +"src/lib/textValidation/defaultConstants.ts", +[1,3,1697], +[0,1698,8], +"src/lib/textValidation/determineTextDocumentSettings.test.ts", +[1,3,1700], +[0,1701,8], +"src/lib/textValidation/determineTextDocumentSettings.ts", +[1,3,1703], +[0,1704,8], +"src/lib/textValidation/docValidator.test.ts", +[1,3,1706], +[0,1707,8], +"src/lib/textValidation/docValidator.ts", +[1,3,1709], +[0,1710,8], +"src/lib/textValidation/index.ts", +[1,3,1712], +[0,1713,8], +"src/lib/textValidation/isWordValid.test.ts", +[1,3,1715], +[0,1716,8], +"src/lib/textValidation/isWordValid.ts", +[1,3,1718], +[0,1719,8], +"src/lib/textValidation/lineValidatorFactory.test.ts", +[1,3,1721], +[0,1722,8], +"src/lib/textValidation/lineValidatorFactory.ts", +[1,3,1724], +[0,1725,8], +"src/lib/textValidation/parsedText.test.ts", +[1,3,1727], +[0,1728,8], +"src/lib/textValidation/parsedText.ts", +[1,3,1730], +[0,1731,8], +"src/lib/textValidation/settingsToValidateOptions.ts", +[1,3,1733], +[0,1734,8], +"src/lib/textValidation/textValidator.test.ts", +[1,3,1736], +[0,1737,8], +"src/lib/textValidation/textValidator.ts", +[1,3,1739], +[0,1740,8], +"src/lib/textValidation/traceWord.test.ts", +[1,3,1742], +[0,1743,8], +"src/lib/textValidation/traceWord.ts", +[1,3,1745], +[0,1746,8], +"src/lib/textValidation/validator.test.ts", +[1,3,1748], +[0,1749,8], +"src/lib/textValidation/validator.ts", +[1,3,1751], +[0,1752,8], +"src/lib/trace.test.ts", +[1,3,1754], +[0,1755,8], +"src/lib/trace.ts", +[1,3,1757], +[0,1758,8], +"src/lib/util/AutoResolve.test.ts", +[1,3,1760], +[0,1761,8], +"src/lib/util/AutoResolve.ts", +[1,3,1763], +[0,1764,8], +"src/lib/util/AutoResolveLRUCache.test.ts", +[1,3,1766], +[0,1767,8], +"src/lib/util/AutoResolveLRUCache.ts", +[1,3,1769], +[0,1770,8], +"src/lib/util/Comparable.test.ts", +[1,3,1772], +[0,1773,8], +"src/lib/util/Comparable.ts", +[1,3,1775], +[0,1776,8], +"src/lib/util/FreqCounter.test.ts", +[1,3,1778], +[0,1779,8], +"src/lib/util/FreqCounter.ts", +[1,3,1781], +[0,1782,8], +"src/lib/util/IterableLike.ts", +[1,3,1784], +[0,1785,8], +"src/lib/util/MinHeapQueue.test.ts", +[1,3,1787], +[0,1788,8], +"src/lib/util/MinHeapQueue.ts", +[1,3,1790], +[0,1791,8], +"src/lib/util/PairingHeap.test.ts", +[1,3,1793], +[0,1794,8], +"src/lib/util/PairingHeap.ts", +[1,3,1796], +[0,1797,8], +"src/lib/util/TextMap.test.ts", +[1,3,1799], +[0,1800,8], +"src/lib/util/TextMap.ts", +[1,3,1802], +[0,1803,8], +"src/lib/util/TextRange.regexp.test.ts", +[1,3,1805], +[0,1806,8], +"src/lib/util/TextRange.test.ts", +[1,3,1808], +[0,1809,8], +"src/lib/util/TextRange.ts", +[1,3,1811], +[0,1812,8], +"src/lib/util/Uri.test.ts", +[1,3,1814], +[0,1815,8], +"src/lib/util/Uri.ts", +[1,3,1817], +[0,1818,8], +"src/lib/util/errors.test.ts", +[1,3,1820], +[0,1821,8], +"src/lib/util/errors.ts", +[1,3,1823], +[0,1824,8], +"src/lib/util/fileReader.test.ts", +[1,3,1826], +[0,1827,8], +"src/lib/util/fileReader.ts", +[1,3,1829], +[0,1830,8], +"src/lib/util/findUp.test.ts", +[1,3,1832], +[0,1833,8], +"src/lib/util/findUp.ts", +[1,3,1835], +[0,1836,8], +"src/lib/util/findUpFromUrl.test.ts", +[1,3,1838], +[0,1839,8], +"src/lib/util/findUpFromUrl.ts", +[1,3,1841], +[0,1842,8], +"src/lib/util/iterableIteratorLib.test.ts", +[1,3,1844], +[0,1845,8], +"src/lib/util/iterableIteratorLib.ts", +[1,3,1847], +[0,1848,8], +"src/lib/util/logger.test.ts", +[1,3,1850], +[0,1851,8], +"src/lib/util/logger.ts", +[1,3,1853], +[0,1854,8], +"src/lib/util/memorizeLastCall.test.ts", +[1,3,1856], +[0,1857,8], +"src/lib/util/memorizeLastCall.ts", +[1,3,1859], +[0,1860,8], +"src/lib/util/memorizerWeak.test.ts", +[1,3,1862], +[0,1863,8], +"src/lib/util/memorizerWeak.ts", +[1,3,1865], +[0,1866,8], +"src/lib/util/regexHelper.ts", +[1,3,1868], +[0,1869,8], +"src/lib/util/repMap.test.ts", +[1,3,1871], +[0,1872,8], +"src/lib/util/repMap.ts", +[1,3,1874], +[0,1875,8], +"src/lib/util/resolveFile.test.ts", +[1,3,1877], +[0,1878,8], +"src/lib/util/resolveFile.ts", +[1,3,1880], +[0,1881,8], +"src/lib/util/search.test.ts", +[1,3,1883], +[0,1884,8], +"src/lib/util/search.ts", +[1,3,1886], +[0,1887,8], +"src/lib/util/simpleCache.test.ts", +[1,3,1889], +[0,1890,8], +"src/lib/util/simpleCache.ts", +[1,3,1892], +[0,1893,8], +"src/lib/util/templates.test.ts", +[1,3,1895], +[0,1896,8], +"src/lib/util/templates.ts", +[1,3,1898], +[0,1899,8], +"src/lib/util/text.test.ts", +[1,3,1901], +[0,1902,8], +"src/lib/util/text.ts", +[1,3,1904], +[0,1905,8], +"src/lib/util/textApi.ts", +[1,3,1907], +[0,1908,8], +"src/lib/util/textRegex.test.ts", +[1,3,1910], +[0,1911,8], +"src/lib/util/textRegex.ts", +[1,3,1913], +[0,1914,8], +"src/lib/util/types.ts", +[1,3,1916], +[0,1917,8], +"src/lib/util/url.test.ts", +[1,3,1919], +[0,1920,8], +"src/lib/util/url.ts", +[1,3,1922], +[0,1923,8], +"src/lib/util/util.test.ts", +[1,3,1925], +[0,1926,8], +"src/lib/util/util.ts", +[1,3,1928], +[0,1929,8], +"src/lib/util/wordSplitter.perf.ts", +[1,3,1931], +[0,1932,8], +"src/lib/util/wordSplitter.test.ts", +[1,3,1934], +[0,1935,8], +"src/lib/util/wordSplitter.ts", +[1,3,1937], +[0,1938,8], +"src/lib/validator.ts", +[1,3,1940], +[0,1941,8], +"src/lib/wordListHelper.test.ts", +[1,3,1943], +[0,1944,8], +"src/lib/wordListHelper.ts", +[1,3,1946], +[0,1947,1948], +"", +[0] +] diff --git a/packages/flatpack-json/src/optimizeFlatpacked.mts b/packages/flatpack-json/src/optimizeFlatpacked.mts index 3935e5f17ffe..71430acd92fb 100644 --- a/packages/flatpack-json/src/optimizeFlatpacked.mts +++ b/packages/flatpack-json/src/optimizeFlatpacked.mts @@ -32,13 +32,11 @@ export function optimizeFlatpacked(data: Flatpacked): Flatpacked { const indexToRefElement = new Map( elementRefs.map((refElement) => [refElement.origIndex, refElement]), ); - const stringTableRefCounts = new Map(); for (const refElement of elementRefs) { const indexes = getRefIndexes(refElement.element); for (const index of indexes) { if (index < 0) { - stringTableRefCounts.set(index, (stringTableRefCounts.get(index) || 0) + 1); continue; } if (!index) { @@ -67,18 +65,7 @@ export function optimizeFlatpacked(data: Flatpacked): Flatpacked { indexMap.set(refElement.origIndex, idx); } - const sortedStringTableIndexes = [...stringTableRefCounts.entries()].sort((a, b) => b[1] - a[1] || a[0] - b[0]); - sortedStringTableIndexes.forEach(([index], i) => { - indexMap.set(index, -(i + 1)); - }); - - const stringTableElements: FlattenedElement[] = []; - - // sort the string table. - if (stringTable) { - const strings = sortedStringTableIndexes.map(([index]) => stringTable[-index] as string); - stringTableElements.push([ElementType.StringTable, ...strings]); - } + const stringTableElements = stringTable ? [stringTable] : []; const result: Flatpacked = [header, ...stringTableElements]; @@ -92,6 +79,7 @@ export function optimizeFlatpacked(data: Flatpacked): Flatpacked { function patchIndexes(elem: FlattenedElement, indexMap: Map): FlattenedElement { function mapIndex(index: number): number { + if (index < 0) return index; const v = indexMap.get(index); assert(v !== undefined, `Invalid index: ${index}`); return v; diff --git a/packages/flatpack-json/src/storage.mts b/packages/flatpack-json/src/storage.mts index 80c4137dd455..10250679b584 100644 --- a/packages/flatpack-json/src/storage.mts +++ b/packages/flatpack-json/src/storage.mts @@ -1,597 +1,29 @@ -import assert from 'node:assert'; - -import { optimizeFlatpacked } from './optimizeFlatpacked.mjs'; +import { CompactStorageV1 } from './storageV1.mjs'; +import { CompactStorageV2 } from './storageV2.mjs'; import { stringifyFlatpacked } from './stringify.mjs'; -import { Trie } from './Trie.mjs'; -import type { - ArrayElement, - BigIntElement, - DateElement, - Flatpacked, - FlatpackOptions, - Index, - MapElement, - ObjectElement, - ObjectWrapper, - Primitive, - PrimitiveArray, - PrimitiveObject, - RegExpElement, - Serializable, - SetElement, - StringTableElement, - SubStringElement, - Unpacked, -} from './types.mjs'; -import { blockSplitRegex, dataHeader, dataHeaderV1_0, dataHeaderV2_0, ElementType } from './types.mjs'; - -const collator = new Intl.Collator('en', { - usage: 'sort', - numeric: true, - sensitivity: 'variant', - caseFirst: 'upper', - ignorePunctuation: false, -}); -const compare = collator.compare; - -const forceStringPrimitives = false; -const minSubStringLen = 4; - -interface FoundSubString { - idx: number; - subStr: string; - offset: number | undefined; - cost: number; -} - -export class CompactStorage { - private data = [dataHeader] as Flatpacked; - private stringTable: StringTableElement | undefined; - private dedupe = true; - private sortKeys = true; - private emptyObjIdx = 0; - /** - * Cache of primitives and objects that have been added to the data. - */ - private cache = new Map([[undefined, 0]]); - /** - * Set of indexes that have been referenced by other indexes. - */ - private referenced = new Set(); - /** - * Cache of arrays that have been deduped. - * The key is a hash of the array elements as a function of the index of the element. - */ - private cachedArrays = new Map(); - /** - * Cache of strings used for prefix matching. - */ - private knownStrings = new Trie(); - /** - * Cache of reversed strings used for suffix matching. - */ - private knownStringsRev = new Trie(); - private cachedElements = new Map(); - private stringTableLookup = new Map(); - - constructor(readonly options?: FlatpackOptions | undefined) { - this.dedupe = options?.dedupe ?? true; - this.sortKeys = options?.sortKeys || this.dedupe; - let stringTableAllowed = dataHeader !== dataHeaderV1_0; - if (options?.format === 'V1') { - this.data[0] = dataHeaderV1_0; - stringTableAllowed = false; - } - if (options?.format === 'V2') { - this.data[0] = dataHeaderV2_0; - stringTableAllowed = true; - } - if (options?.useStringTable && !options.format) { - this.data[0] = dataHeaderV2_0; - stringTableAllowed = true; - } - if (options?.useStringTable || (options?.useStringTable !== false && stringTableAllowed)) { - this.stringTable = [ElementType.StringTable]; - this.data[1] = this.stringTable; - } - } - - private primitiveToIdx(value: Primitive): number { - if (typeof value === 'string') return this.stringToIdx(value); - if (typeof value === 'bigint') return this.bigintToIdx(value); - - const found = this.cache.get(value); - if (found !== undefined) { - return found; - } - - const idx = this.data.push(value) - 1; - this.cache.set(value, idx); - return idx; - } - - private addSubStringRef(idxString: number, value: string, offset: number | undefined): number { - const found = this.cache.get(value); - if (found !== undefined) { - return found; - } - - const sub: SubStringElement = offset - ? [ElementType.SubString, idxString, value.length, offset] - : [ElementType.SubString, idxString, value.length]; - const idx = this.data.push(sub) - 1; - this.cache.set(value, idx); - return idx; - } - - private estimateSubStringCost(idxString: number, value: string, offset: number | undefined): number { - if (this.cache.has(value)) { - return 0; - } - let cost = 5; - cost += Math.ceil(Math.log10(idxString)); - cost += Math.ceil(Math.log10(value.length)); - if (offset) { - cost += Math.ceil(Math.log10(offset)) + 1; - } - return cost; - } - - private addToKnownStrings(idx: number, value: string) { - if (value.length >= minSubStringLen) { - const data = { idx, value }; - const chars = [...value]; - if (chars.length > 256) { - this.knownStrings.add(chars.slice(0, 256), data); - this.knownStringsRev.add(chars.slice(-256).reverse(), data); - return; - } - - this.knownStrings.add(chars, data); - this.knownStringsRev.add(chars.reverse(), data); - } - } - - private addStringPrimitive(value: string): number { - const strTableIdx = this.stringTableLookup.get(value); - if (strTableIdx) { - return strTableIdx; - } - const stringTable = this.stringTable as string[] | undefined; - if (stringTable) { - const idx = -(stringTable.push(value) - 1); - this.stringTableLookup.set(value, idx); - this.addToKnownStrings(idx, value); - return idx; - } - const idx = this.data.push(value) - 1; - this.addToKnownStrings(idx, value); - this.cache.set(value, idx); - return idx; - } - - private duplicateIndex(idx: number): number { - const element = this.data[idx]; - const duplicate = this.data.push(element) - 1; - return duplicate; - } - - private stringToIdx(value: string): number { - const found = this.cache.get(value); - if (found !== undefined) { - return found; - } - - if ( - forceStringPrimitives || - value.length < minSubStringLen || - blockSplitRegex.test(value) || - this.stringTable - ) { - return this.addStringPrimitive(value); - } - - const foundPrefix = this.findPrefix(value); - const foundSuffix = this.findSuffix(value); - if (!foundPrefix && !foundSuffix) { - return this.addStringPrimitive(value); - } +import type { Flatpacked, FlatpackOptions, Serializable, Unpacked } from './types.mjs'; +import { dataHeader, dataHeaderV1_0, dataHeaderV2_0 } from './types.mjs'; - if ( - foundPrefix && - (!foundSuffix || - foundPrefix.subStr.length - foundPrefix.cost >= foundSuffix.subStr.length - foundSuffix.cost) - ) { - const { idx: pfIdx, subStr, offset } = foundPrefix; - const sIdx = this.addSubStringRef(pfIdx, subStr, offset); - if (subStr === value) return sIdx; - const v = [sIdx, this.stringToIdx(value.slice(subStr.length))]; - const idx = this.data.push([ElementType.String, ...v]) - 1; - this.cache.set(value, idx); - this.addToKnownStrings(idx, value); - return idx; - } - - if (!foundSuffix) { - return this.addStringPrimitive(value); - } - - const { idx: pfIdx, subStr, offset } = foundSuffix; - const sIdx = this.addSubStringRef(pfIdx, subStr, offset); - const v = [this.stringToIdx(value.slice(0, -subStr.length)), sIdx]; - const idx = this.data.push([ElementType.String, ...v]) - 1; - this.cache.set(value, idx); - this.addToKnownStrings(idx, value); - return idx; - } - - private findPrefix(value: string): FoundSubString | undefined { - const trieFound = this.knownStrings.find(value); - if (!trieFound || !trieFound.data || trieFound.found.length < minSubStringLen) { - return undefined; - } - - const { data: tData, found: subStr } = trieFound; - const cost = this.estimateSubStringCost(tData.idx, subStr, undefined); - if (cost > subStr.length) { - return undefined; - } - return { idx: tData.idx, subStr, offset: undefined, cost }; - } - - private findSuffix(value: string): FoundSubString | undefined { - const rev = revStr(value, 256); - const trieFound = this.knownStringsRev.find(rev); - if (!trieFound || !trieFound.data || trieFound.found.length < minSubStringLen) { - return undefined; - } - - const { data: tData, found: subStrRev } = trieFound; - const offset = tData.value.length - subStrRev.length; - const cost = this.estimateSubStringCost(tData.idx, subStrRev, offset); - if (cost > subStrRev.length) { - return undefined; - } - const srcStr = tData.value; - const subStr = srcStr.slice(-subStrRev.length); - return { idx: tData.idx, subStr, offset, cost }; - } - - private objSetToIdx(value: Set): number { - const found = this.cache.get(value); - if (found !== undefined) { - this.referenced.add(found); - return found; - } - - const idx = this.data.push(0) - 1; - this.cache.set(value, idx); - const keys = [...value]; - - const k = this.createUniqueKeys(keys, false); - const element: SetElement = [ElementType.Set, k]; - return this.storeElement(value, idx, element); - } - - private createUniqueKeys(keys: Serializable[], cacheValue = true): Index { - let k = this.arrToIdx(keys, cacheValue); - const elementKeys = this.data[k] as ArrayElement; - const uniqueKeys = new Set(elementKeys.slice(1)); - if (uniqueKeys.size !== keys.length) { - // one or more of the keys got deduped. We need to duplicate it. - uniqueKeys.clear(); - const indexes = elementKeys.slice(1).map((idx) => { - if (uniqueKeys.has(idx)) { - return this.duplicateIndex(idx); - } - uniqueKeys.add(idx); - return idx; - }); - k = this.createArrayElementFromIndexValues(this.data.length, indexes); - } - return k; - } - - private objMapToIdx(value: Map): number { - const found = this.cache.get(value); - if (found !== undefined) { - this.referenced.add(found); - return found; - } - - const idx = this.data.push(0) - 1; - this.cache.set(value, idx); - const entries = [...value.entries()]; - - const k = this.createUniqueKeys( - entries.map(([key]) => key), - false, - ); - const v = this.arrToIdx( - entries.map(([, value]) => value), - false, - ); - - const element: MapElement = [ElementType.Map, k, v]; - return this.storeElement(value, idx, element); - } - - private objRegExpToIdx(value: RegExp): number { - const found = this.cache.get(value); - if (found !== undefined) { - return found; - } - - const idx = this.data.push(0) - 1; - this.cache.set(value, idx); - const element: RegExpElement = [ - ElementType.RegExp, - this.stringToIdx(value.source), - this.stringToIdx(value.flags), - ]; - return this.storeElement(value, idx, element); - } - - private objDateToIdx(value: Date): number { - const found = this.cache.get(value); - if (found !== undefined) { - return found; - } - - const idx = this.data.push(0) - 1; - this.cache.set(value, idx); - const element: DateElement = [ElementType.Date, value.getTime()]; - return this.storeElement(value, idx, element); - } - - private bigintToIdx(value: bigint): number { - const found = this.cache.get(value); - if (found !== undefined) { - return found; - } - - const idx = this.data.push(0) - 1; - this.cache.set(value, idx); - const element: BigIntElement = [ - ElementType.BigInt, - this.primitiveToIdx( - value <= Number.MAX_SAFE_INTEGER && value >= -Number.MAX_SAFE_INTEGER - ? Number(value) - : value.toString(), - ), - ]; - return this.storeElement(value, idx, element); - } - - private objToIdx(value: PrimitiveObject | ObjectWrapper): number { - const found = this.cache.get(value); - if (found !== undefined) { - this.referenced.add(found); - return found; - } - - if (isObjectWrapper(value)) { - const idx = this.data.push({}) - 1; - this.cache.set(value, idx); - const element: ObjectElement = [ElementType.Object, 0, this.valueToIdx(value.valueOf())]; - return this.storeElement(value, idx, element); - } - - const entries = Object.entries(value); - - if (!entries.length) { - if (this.emptyObjIdx) { - return this.emptyObjIdx; - } - const idx = this.data.push({}) - 1; - this.emptyObjIdx = idx; - return idx; - } - - const idx = this.data.push(0) - 1; - this.cache.set(value, idx); - - if (this.sortKeys) { - entries.sort(([a], [b]) => compare(a, b)); - } - - const k = this.arrToIdx(entries.map(([key]) => key)); - const v = this.arrToIdx(entries.map(([, value]) => value)); - - const element: ObjectElement = [ElementType.Object, k, v]; - return this.storeElement(value, idx, element); - } - - private storeElement(value: Serializable | ObjectWrapper, idx: Index, element: CachedElements): number { - const useIdx = this.dedupe ? this.cacheElement(idx, element) : idx; - - if (useIdx !== idx && idx === this.data.length - 1) { - this.data.length = idx; - this.cache.set(value, useIdx); - return useIdx; - } - - this.data[idx] = element; - return idx; - } - - private cacheElement(elemIdx: Index, element: CachedElements): number { - let map: CacheMap = this.cachedElements; - for (let i = 0; i < element.length - 1; i++) { - const idx = element[i]; - let found = map.get(idx); - if (!found) { - found = new Map(); - map.set(idx, found); - } - assert(found instanceof Map); - map = found; - } - const idx = element[element.length - 1]; - const foundIdx = map.get(idx); - if (typeof foundIdx === 'number') { - return this.referenced.has(elemIdx) ? elemIdx : foundIdx; - } - map.set(idx, elemIdx); - return elemIdx; - } - - private stashArray(idx: number, element: ArrayElement): number { - const indexHash = simpleHash(element); - let found = this.cachedArrays.get(indexHash); - if (!found) { - found = []; - this.cachedArrays.set(indexHash, found); - } - const foundIdx = found.find((entry) => isEqual(entry.v, element)); - if (foundIdx) { - return this.referenced.has(idx) ? idx : foundIdx.idx; - } - found.push({ idx, v: element }); - return idx; - } - - private createArrayElementFromIndexValues(idx: Index, indexValues: Index[]): Index { - const element: ArrayElement = [ElementType.Array, ...indexValues]; - const useIdx = this.dedupe ? this.stashArray(idx, element) : idx; - - if (useIdx !== idx) { - assert(this.data.length === idx + 1, `Expected ${idx + 1} but got ${this.data.length}`); - this.data.length = idx; - return useIdx; - } - - this.data[idx] = element; - - return idx; - } - - /** - * Convert an array to an index. - * @param value - The array to convert to an index. - * @param cacheValue - Whether to cache the value. - * @returns the index of the array. - */ - private arrToIdx(value: PrimitiveArray, cacheValue = true): number { - const found = this.cache.get(value); - if (found !== undefined) { - this.referenced.add(found); - return found; - } - - const idx = this.data.push(0) - 1; - this.cache.set(value, idx); - - const useIdx = this.createArrayElementFromIndexValues( - idx, - value.map((idx) => this.valueToIdx(idx)), - ); - - if (cacheValue) { - this.cache.set(value, useIdx); - } - return useIdx; - } - - private valueToIdx(value: Serializable): number { - if (value === null) { - return this.primitiveToIdx(value); - } - - if (typeof value === 'object') { - if (value instanceof Set) { - return this.objSetToIdx(value); - } - if (value instanceof Map) { - return this.objMapToIdx(value); - } - if (value instanceof RegExp) { - return this.objRegExpToIdx(value); - } - if (Array.isArray(value)) { - return this.arrToIdx(value); - } - if (value instanceof Date) { - return this.objDateToIdx(value); - } - return this.objToIdx(value as PrimitiveObject); - } - - return this.primitiveToIdx(value); - } - - /** - * Reset things in a way that allows for reuse. - */ - private softReset(): void { - this.cache.clear(); - this.cache.set(undefined, 0); - } - - toJSON(json: V): Flatpacked { - this.softReset(); - const lastIdx = this.valueToIdx(json); - if (lastIdx < 0) { - this.data.push([ElementType.String, lastIdx]); - } - return this.options?.optimize ? optimizeFlatpacked(this.data) : this.data; - } -} - -function* revStr(str: string, limit: number): Generator { - let i = str.length - 1; - let n = 0; - while (i >= 0 && n < limit) { - // eslint-disable-next-line unicorn/prefer-code-point - const code = str.charCodeAt(i); - if (code & 0xfc00) { - // surrogate pair - i -= 1; - yield str.slice(i, i + 2); - } else { - yield str[i]; - } - i -= 1; - n += 1; +export function toJSON(json: V, options?: FlatpackOptions): Flatpacked { + let header = dataHeader; + let stringTableAllowed = dataHeader !== dataHeaderV1_0; + if (options?.format === 'V1') { + header = dataHeaderV1_0; + stringTableAllowed = false; } -} - -interface TrieData { - idx: number; - value: string; -} - -type CacheMap = Map; -type CachedElements = ObjectElement | SetElement | MapElement | RegExpElement | DateElement | BigIntElement; - -function isEqual(a: readonly number[], b: readonly number[]): boolean { - if (a === b) return true; - if (a.length !== b.length) return false; - for (let i = 0; i < a.length; i++) { - if (a[i] !== b[i]) return false; + if (options?.format === 'V2') { + header = dataHeaderV2_0; + stringTableAllowed = true; } - return true; -} - -function simpleHash(values: readonly number[]): number { - let hash = Math.sqrt(values.length); - for (const value of values) { - hash += value * value; + if (options?.useStringTable && !options.format) { + header = dataHeaderV2_0; + stringTableAllowed = true; } - return hash; -} + const useStringTable = stringTableAllowed && (options?.useStringTable || header === dataHeaderV2_0); + options = { ...options, format: header === dataHeaderV1_0 ? 'V1' : 'V2', useStringTable }; + const v1 = header === dataHeaderV1_0; -function isObjectWrapper(value: unknown): value is ObjectWrapper { - return ( - typeof value === 'object' && - value !== null && - typeof (value as ObjectWrapper).valueOf === 'function' && - value.valueOf() !== value - ); -} - -export function toJSON(json: V, options?: FlatpackOptions): Flatpacked { - return new CompactStorage(options).toJSON(json); + return v1 ? new CompactStorageV1(options).toJSON(json) : new CompactStorageV2(options).toJSON(json); } export function stringify(data: Unpacked, pretty = true, options?: FlatpackOptions): string { diff --git a/packages/flatpack-json/src/storageV1.mts b/packages/flatpack-json/src/storageV1.mts new file mode 100644 index 000000000000..400676241220 --- /dev/null +++ b/packages/flatpack-json/src/storageV1.mts @@ -0,0 +1,556 @@ +import assert from 'node:assert'; + +import { CompactStorage } from './CompactStorage.mjs'; +import { optimizeFlatpacked } from './optimizeFlatpacked.mjs'; +import { stringifyFlatpacked } from './stringify.mjs'; +import { Trie } from './Trie.mjs'; +import type { + ArrayElement, + BigIntElement, + DateElement, + Flatpacked, + FlatpackOptions, + Index, + MapElement, + ObjectElement, + ObjectWrapper, + Primitive, + PrimitiveArray, + PrimitiveObject, + RegExpElement, + Serializable, + SetElement, + SubStringElement, + Unpacked, +} from './types.mjs'; +import { blockSplitRegex, dataHeader, ElementType } from './types.mjs'; + +const collator = new Intl.Collator('en', { + usage: 'sort', + numeric: true, + sensitivity: 'variant', + caseFirst: 'upper', + ignorePunctuation: false, +}); +const compare = collator.compare; + +const forceStringPrimitives = false; +const minSubStringLen = 4; + +interface FoundSubString { + idx: number; + subStr: string; + offset: number | undefined; + cost: number; +} + +export class CompactStorageV1 extends CompactStorage { + private data = [dataHeader] as Flatpacked; + private dedupe = true; + private sortKeys = true; + private emptyObjIdx = 0; + /** + * Cache of primitives and objects that have been added to the data. + */ + private cache = new Map([[undefined, 0]]); + /** + * Set of indexes that have been referenced by other indexes. + */ + private referenced = new Set(); + /** + * Cache of arrays that have been deduped. + * The key is a hash of the array elements as a function of the index of the element. + */ + private cachedArrays = new Map(); + /** + * Cache of strings used for prefix matching. + */ + private knownStrings = new Trie(); + /** + * Cache of reversed strings used for suffix matching. + */ + private knownStringsRev = new Trie(); + private cachedElements = new Map(); + + constructor(options?: FlatpackOptions | undefined) { + super(options); + this.dedupe = options?.dedupe ?? true; + this.sortKeys = options?.sortKeys || this.dedupe; + } + + private primitiveToIdx(value: Primitive): number { + if (typeof value === 'string') return this.stringToIdx(value); + if (typeof value === 'bigint') return this.bigintToIdx(value); + + const found = this.cache.get(value); + if (found !== undefined) { + return found; + } + + const idx = this.data.push(value) - 1; + this.cache.set(value, idx); + return idx; + } + + private addSubStringRef(idxString: number, value: string, offset: number | undefined): number { + const found = this.cache.get(value); + if (found !== undefined) { + return found; + } + + const sub: SubStringElement = offset + ? [ElementType.SubString, idxString, value.length, offset] + : [ElementType.SubString, idxString, value.length]; + const idx = this.data.push(sub) - 1; + this.cache.set(value, idx); + return idx; + } + + private estimateSubStringCost(idxString: number, value: string, offset: number | undefined): number { + if (this.cache.has(value)) { + return 0; + } + let cost = 5; + cost += Math.ceil(Math.log10(idxString)); + cost += Math.ceil(Math.log10(value.length)); + if (offset) { + cost += Math.ceil(Math.log10(offset)) + 1; + } + return cost; + } + + private addKnownString(idx: number, value: string) { + if (value.length >= minSubStringLen) { + const data = { idx, value }; + this.knownStrings.add(value.length > 256 ? [...value].slice(0, 256) : value, data); + this.knownStringsRev.add(revStr(value, 256), data); + } + } + + private addStringPrimitive(value: string): number { + const idx = this.data.push(value) - 1; + this.addKnownString(idx, value); + this.cache.set(value, idx); + return idx; + } + + private duplicateIndex(idx: number): number { + const element = this.data[idx]; + const duplicate = this.data.push(element) - 1; + return duplicate; + } + + private stringToIdx(value: string): number { + const found = this.cache.get(value); + if (found !== undefined) { + return found; + } + + if (forceStringPrimitives || value.length < minSubStringLen || blockSplitRegex.test(value)) { + return this.addStringPrimitive(value); + } + + const foundPrefix = this.findPrefix(value); + const foundSuffix = this.findSuffix(value); + if (!foundPrefix && !foundSuffix) { + return this.addStringPrimitive(value); + } + + if ( + foundPrefix && + (!foundSuffix || + foundPrefix.subStr.length - foundPrefix.cost >= foundSuffix.subStr.length - foundSuffix.cost) + ) { + const { idx: pfIdx, subStr, offset } = foundPrefix; + const sIdx = this.addSubStringRef(pfIdx, subStr, offset); + if (subStr === value) return sIdx; + const v = [sIdx, this.stringToIdx(value.slice(subStr.length))]; + const idx = this.data.push([ElementType.String, ...v]) - 1; + this.cache.set(value, idx); + this.addKnownString(idx, value); + return idx; + } + + if (!foundSuffix) { + return this.addStringPrimitive(value); + } + + const { idx: pfIdx, subStr, offset } = foundSuffix; + const sIdx = this.addSubStringRef(pfIdx, subStr, offset); + const v = [this.stringToIdx(value.slice(0, -subStr.length)), sIdx]; + const idx = this.data.push([ElementType.String, ...v]) - 1; + this.cache.set(value, idx); + this.addKnownString(idx, value); + return idx; + } + + private findPrefix(value: string): FoundSubString | undefined { + const trieFound = this.knownStrings.find(value); + if (!trieFound || !trieFound.data || trieFound.found.length < minSubStringLen) { + return undefined; + } + + const { data: tData, found: subStr } = trieFound; + const cost = this.estimateSubStringCost(tData.idx, subStr, undefined); + if (cost > subStr.length) { + return undefined; + } + return { idx: tData.idx, subStr, offset: undefined, cost }; + } + + private findSuffix(value: string): FoundSubString | undefined { + const rev = revStr(value, 256); + const trieFound = this.knownStringsRev.find(rev); + if (!trieFound || !trieFound.data || trieFound.found.length < minSubStringLen) { + return undefined; + } + + const { data: tData, found: subStrRev } = trieFound; + const offset = tData.value.length - subStrRev.length; + const cost = this.estimateSubStringCost(tData.idx, subStrRev, offset); + if (cost > subStrRev.length) { + return undefined; + } + const srcStr = tData.value; + const subStr = srcStr.slice(-subStrRev.length); + return { idx: tData.idx, subStr, offset, cost }; + } + + private objSetToIdx(value: Set): number { + const found = this.cache.get(value); + if (found !== undefined) { + this.referenced.add(found); + return found; + } + + const idx = this.data.push(0) - 1; + this.cache.set(value, idx); + const keys = [...value]; + + const k = this.createUniqueKeys(keys, false); + const element: SetElement = [ElementType.Set, k]; + return this.storeElement(value, idx, element); + } + + private createUniqueKeys(keys: Serializable[], cacheValue = true): Index { + let k = this.arrToIdx(keys, cacheValue); + const elementKeys = this.data[k] as ArrayElement; + const uniqueKeys = new Set(elementKeys.slice(1)); + if (uniqueKeys.size !== keys.length) { + // one or more of the keys got deduped. We need to duplicate it. + uniqueKeys.clear(); + const indexes = elementKeys.slice(1).map((idx) => { + if (uniqueKeys.has(idx)) { + return this.duplicateIndex(idx); + } + uniqueKeys.add(idx); + return idx; + }); + k = this.createArrayElementFromIndexValues(this.data.length, indexes); + } + return k; + } + + private objMapToIdx(value: Map): number { + const found = this.cache.get(value); + if (found !== undefined) { + this.referenced.add(found); + return found; + } + + const idx = this.data.push(0) - 1; + this.cache.set(value, idx); + const entries = [...value.entries()]; + + const k = this.createUniqueKeys( + entries.map(([key]) => key), + false, + ); + const v = this.arrToIdx( + entries.map(([, value]) => value), + false, + ); + + const element: MapElement = [ElementType.Map, k, v]; + return this.storeElement(value, idx, element); + } + + private objRegExpToIdx(value: RegExp): number { + const found = this.cache.get(value); + if (found !== undefined) { + return found; + } + + const idx = this.data.push(0) - 1; + this.cache.set(value, idx); + const element: RegExpElement = [ + ElementType.RegExp, + this.stringToIdx(value.source), + this.stringToIdx(value.flags), + ]; + return this.storeElement(value, idx, element); + } + + private objDateToIdx(value: Date): number { + const found = this.cache.get(value); + if (found !== undefined) { + return found; + } + + const idx = this.data.push(0) - 1; + this.cache.set(value, idx); + const element: DateElement = [ElementType.Date, value.getTime()]; + return this.storeElement(value, idx, element); + } + + private bigintToIdx(value: bigint): number { + const found = this.cache.get(value); + if (found !== undefined) { + return found; + } + + const idx = this.data.push(0) - 1; + this.cache.set(value, idx); + const element: BigIntElement = [ + ElementType.BigInt, + this.primitiveToIdx( + value <= Number.MAX_SAFE_INTEGER && value >= -Number.MAX_SAFE_INTEGER + ? Number(value) + : value.toString(), + ), + ]; + return this.storeElement(value, idx, element); + } + + private objToIdx(value: PrimitiveObject | ObjectWrapper): number { + const found = this.cache.get(value); + if (found !== undefined) { + this.referenced.add(found); + return found; + } + + if (isObjectWrapper(value)) { + const idx = this.data.push({}) - 1; + this.cache.set(value, idx); + const element: ObjectElement = [ElementType.Object, 0, this.valueToIdx(value.valueOf())]; + return this.storeElement(value, idx, element); + } + + const entries = Object.entries(value); + + if (!entries.length) { + if (this.emptyObjIdx) { + return this.emptyObjIdx; + } + const idx = this.data.push({}) - 1; + this.emptyObjIdx = idx; + return idx; + } + + const idx = this.data.push(0) - 1; + this.cache.set(value, idx); + + if (this.sortKeys) { + entries.sort(([a], [b]) => compare(a, b)); + } + + const k = this.arrToIdx(entries.map(([key]) => key)); + const v = this.arrToIdx(entries.map(([, value]) => value)); + + const element: ObjectElement = [ElementType.Object, k, v]; + return this.storeElement(value, idx, element); + } + + private storeElement(value: Serializable | ObjectWrapper, idx: Index, element: CachedElements): number { + const useIdx = this.dedupe ? this.cacheElement(idx, element) : idx; + + if (useIdx !== idx && idx === this.data.length - 1) { + this.data.length = idx; + this.cache.set(value, useIdx); + return useIdx; + } + + this.data[idx] = element; + return idx; + } + + private cacheElement(elemIdx: Index, element: CachedElements): number { + let map: CacheMap = this.cachedElements; + for (let i = 0; i < element.length - 1; i++) { + const idx = element[i]; + let found = map.get(idx); + if (!found) { + found = new Map(); + map.set(idx, found); + } + assert(found instanceof Map); + map = found; + } + const idx = element[element.length - 1]; + const foundIdx = map.get(idx); + if (typeof foundIdx === 'number') { + return this.referenced.has(elemIdx) ? elemIdx : foundIdx; + } + map.set(idx, elemIdx); + return elemIdx; + } + + private stashArray(idx: number, element: ArrayElement): number { + const indexHash = simpleHash(element); + let found = this.cachedArrays.get(indexHash); + if (!found) { + found = []; + this.cachedArrays.set(indexHash, found); + } + const foundIdx = found.find((entry) => isEqual(entry.v, element)); + if (foundIdx) { + return this.referenced.has(idx) ? idx : foundIdx.idx; + } + found.push({ idx, v: element }); + return idx; + } + + private createArrayElementFromIndexValues(idx: Index, indexValues: Index[]): Index { + const element: ArrayElement = [ElementType.Array, ...indexValues]; + const useIdx = this.dedupe ? this.stashArray(idx, element) : idx; + + if (useIdx !== idx) { + assert(this.data.length === idx + 1, `Expected ${idx + 1} but got ${this.data.length}`); + this.data.length = idx; + return useIdx; + } + + this.data[idx] = element; + + return idx; + } + + /** + * Convert an array to an index. + * @param value - The array to convert to an index. + * @param cacheValue - Whether to cache the value. + * @returns the index of the array. + */ + private arrToIdx(value: PrimitiveArray, cacheValue = true): number { + const found = this.cache.get(value); + if (found !== undefined) { + this.referenced.add(found); + return found; + } + + const idx = this.data.push(0) - 1; + this.cache.set(value, idx); + + const useIdx = this.createArrayElementFromIndexValues( + idx, + value.map((idx) => this.valueToIdx(idx)), + ); + + if (cacheValue) { + this.cache.set(value, useIdx); + } + return useIdx; + } + + private valueToIdx(value: Serializable): number { + if (value === null) { + return this.primitiveToIdx(value); + } + + if (typeof value === 'object') { + if (value instanceof Set) { + return this.objSetToIdx(value); + } + if (value instanceof Map) { + return this.objMapToIdx(value); + } + if (value instanceof RegExp) { + return this.objRegExpToIdx(value); + } + if (Array.isArray(value)) { + return this.arrToIdx(value); + } + if (value instanceof Date) { + return this.objDateToIdx(value); + } + return this.objToIdx(value as PrimitiveObject); + } + + return this.primitiveToIdx(value); + } + + /** + * Reset things in a way that allows for reuse. + */ + private softReset(): void { + this.cache.clear(); + this.cache.set(undefined, 0); + } + + toJSON(json: V): Flatpacked { + this.softReset(); + this.valueToIdx(json); + return this.options?.optimize ? optimizeFlatpacked(this.data) : this.data; + } +} + +function* revStr(str: string, limit: number): Generator { + let i = str.length - 1; + let n = 0; + while (i >= 0 && n < limit) { + // eslint-disable-next-line unicorn/prefer-code-point + const code = str.charCodeAt(i); + if (code & 0xfc00) { + // surrogate pair + i -= 1; + yield str.slice(i, i + 2); + } else { + yield str[i]; + } + i -= 1; + n += 1; + } +} + +interface TrieData { + idx: number; + value: string; +} + +type CacheMap = Map; +type CachedElements = ObjectElement | SetElement | MapElement | RegExpElement | DateElement | BigIntElement; + +function isEqual(a: readonly number[], b: readonly number[]): boolean { + if (a === b) return true; + if (a.length !== b.length) return false; + for (let i = 0; i < a.length; i++) { + if (a[i] !== b[i]) return false; + } + return true; +} + +function simpleHash(values: readonly number[]): number { + let hash = Math.sqrt(values.length); + for (const value of values) { + hash += value * value; + } + return hash; +} + +function isObjectWrapper(value: unknown): value is ObjectWrapper { + return ( + typeof value === 'object' && + value !== null && + typeof (value as ObjectWrapper).valueOf === 'function' && + value.valueOf() !== value + ); +} + +export function toJSON(json: V, options?: FlatpackOptions): Flatpacked { + return new CompactStorageV1(options).toJSON(json); +} + +export function stringify(data: Unpacked, pretty = true, options?: FlatpackOptions): string { + const json = toJSON(data, options); + return pretty ? stringifyFlatpacked(json) : JSON.stringify(json); +} diff --git a/packages/flatpack-json/src/storageV1.test.mts b/packages/flatpack-json/src/storageV1.test.mts new file mode 100644 index 000000000000..d4594eb30774 --- /dev/null +++ b/packages/flatpack-json/src/storageV1.test.mts @@ -0,0 +1,170 @@ +import { readFile } from 'node:fs/promises'; + +import { findMatchingFileTypes } from '@cspell/filetypes'; +import { describe, expect, test } from 'vitest'; + +import { stringify, toJSON } from './storageV1.mjs'; +import { stringifyFlatpacked } from './stringify.mjs'; +import { fromJSON } from './unpack.mjs'; + +const urlFileList = new URL('../fixtures/fileList.txt', import.meta.url); +const baseFilename = 'storage'; + +describe('dehydrate', async () => { + test.each` + data + ${undefined} + ${'string'} + ${1} + ${1.1} + ${null} + ${true} + ${false} + ${[]} + ${[1, 2]} + ${['a', 'b', 'a', 'b']} + ${{}} + ${{ a: 1 }} + ${{ a: { b: 1 } }} + ${{ a: { a: 'a', b: 42 } }} + ${{ a: [1] }} + `('dehydrate/hydrate $data', ({ data }) => { + const v = toJSON(data); + expect(fromJSON(v)).toEqual(data); + }); + + const biMaxSafe = BigInt(Number.MAX_SAFE_INTEGER); + + test.each` + data | options + ${undefined} | ${undefined} + ${'string'} | ${undefined} + ${1} | ${undefined} + ${1.1} | ${undefined} + ${null} | ${undefined} + ${true} | ${undefined} + ${false} | ${undefined} + ${[]} | ${undefined} + ${[1, 2]} | ${undefined} + ${['apple', 'banana', 'apple', 'banana', 'apple', 'pineapple']} | ${undefined} + ${new Set(['apple', 'banana', 'pineapple'])} | ${undefined} + ${new Set(['pineapple', 'apple', 'banana'])} | ${undefined} + ${new Map([['apple', 1], ['banana', 2], ['pineapple', 3]])} | ${undefined} + ${{}} | ${undefined} + ${[{}, {}, {}]} | ${undefined} + ${{ a: 1 }} | ${undefined} + ${{ a: { b: 1 } }} | ${undefined} + ${{ a: { a: 'a', b: 42 } }} | ${undefined} + ${{ a: [1] }} | ${undefined} + ${{ values: ['apple', 'banana', 'pineapple'], set: new Set(['apple', 'banana', 'pineapple']) }} | ${undefined} + ${[{ a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b', a: 'a' }, ['a', 'b'], ['c', 'd']]} | ${undefined} + ${[{ a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }]} | ${{ dedupe: false }} + ${sampleNestedData()} | ${undefined} + ${sampleRepeatedStrings()} | ${undefined} + ${/[\p{L}\p{M}]+/gu} | ${undefined} + ${[/[\p{L}\p{M}]+/gu, /[\p{L}\p{M}]+/gu, /[\p{Lu}\p{M}]+/gu]} | ${undefined} + ${[new Date('2024-01-01'), new Date('2024-01-01'), new Date('2024-01-02')]} | ${undefined} + ${[1n, 2n, 1n, 2n, biMaxSafe, -biMaxSafe, biMaxSafe + 1n, -biMaxSafe - 1n]} | ${undefined} + ${[Object(1n), Object('hello'), Object(/\w+/g), Object(null), Object([]), Object('hello')]} | ${undefined} + `('dehydrate $data $options', ({ data, options }) => { + const v = toJSON(data, { dedupe: options?.dedupe }); + expect(v).toMatchSnapshot(); + expect(fromJSON(v)).toEqual(data); + expect(fromJSON(JSON.parse(JSON.stringify(v)))).toEqual(data); + expect(fromJSON(JSON.parse(stringify(data)))).toEqual(data); + expect(fromJSON(JSON.parse(stringify(data, false)))).toEqual(data); + }); + + test.each` + name | data | options + ${'fileList'} | ${await sampleFileList()} | ${undefined} + ${'fileObjects'} | ${await sampleFileListObjects()} | ${undefined} + `('dehydrate $data $options', async ({ name, data, options }) => { + const v = toJSON(data, { dedupe: options?.dedupe }); + await expect(stringifyFlatpacked(v)).toMatchFileSnapshot(`__snapshots__/${baseFilename}_${name}.jsonc`); + await expect(JSON.stringify(v) + '\n').toMatchFileSnapshot(`__snapshots__/${baseFilename}_${name}.json`); + await expect(JSON.stringify(data) + '\n').toMatchFileSnapshot( + `__snapshots__/${baseFilename}_${name}.data.json`, + ); + expect(fromJSON(v)).toEqual(data); + }); + + test("make sure dedupe doesn't break Sets", () => { + const data = sampleNestedData(); + const value = { ...data, s: new Set(data.n) }; + + const v = toJSON(value, { dedupe: true }); + const hv = fromJSON(v) as typeof value; + expect(hv.s).toEqual(value.s); + expect(hv.n).toEqual(value.n); + }); + + test("make sure dedupe doesn't break Maps", () => { + const data = sampleNestedData(); + const value = { ...data, m: new Map(data.n.map((a) => [a, a])) }; + + const v = toJSON(value, { dedupe: true }); + const hv = fromJSON(v) as typeof value; + expect(hv.m).toEqual(value.m); + expect(hv.n).toEqual(value.n); + }); +}); + +async function sampleFileList() { + const data = await readFile(urlFileList, 'utf8'); + const files = data.split('\n'); + return files; +} + +async function sampleFileListObjects() { + const list = await sampleFileList(); + return list.map((filename) => ({ filename, fileType: getFileType(filename) })); +} + +function getFileType(filename: string) { + const baseName = filename.split('/').slice(-1).join(''); + return findMatchingFileTypes(baseName); +} + +function sampleRepeatedStrings() { + const fruit = ['apple', 'banana', 'apple', 'banana', 'apple', 'pineapple']; + const sentence = 'There is a bit of fruit on the table. Some banana, apple, and pineapple.'; + const joinFruit = fruit.join('-'); + return { + fruit, + joinFruit, + sentence, + }; +} + +function sampleNestedData() { + const a = { a: 'a', b: 'b' }; + const b = { a: 'c', b: 'd' }; + const r = /[\p{L}\p{M}]+/gu; + const n = [a, b, { b: 'b', a: 'a' }, ['a', 'b'], ['c', 'd'], r, { r, rr: new RegExp(r) }]; + const s = new Set(n); + const m = new Map([ + ['a', 'a'], + ['b', 'b'], + ]); + + const values = ['apple', 'banana', 'pineapple']; + const rValues = [...values].reverse(); + const cValues = [...values]; + + return { + a, + b, + n, + nn: n, + nnn: [...n], + s, + r, + m, + ss: s, + mm: m, + values, + rValues, + cValues, + }; +} diff --git a/packages/flatpack-json/src/storageV2.mts b/packages/flatpack-json/src/storageV2.mts new file mode 100644 index 000000000000..46faca2b4bf5 --- /dev/null +++ b/packages/flatpack-json/src/storageV2.mts @@ -0,0 +1,431 @@ +import assert from 'node:assert'; + +import { CompactStorage } from './CompactStorage.mjs'; +import { optimizeFlatpacked } from './optimizeFlatpacked.mjs'; +import { StringTableBuilder } from './stringTable.mjs'; +import type { + ArrayElement, + BigIntElement, + DateElement, + Flatpacked, + FlatpackOptions, + Index, + MapElement, + ObjectElement, + ObjectWrapper, + Primitive, + PrimitiveArray, + PrimitiveObject, + RegExpElement, + Serializable, + SetElement, +} from './types.mjs'; +import { dataHeader, dataHeaderV1_0, dataHeaderV2_0, ElementType } from './types.mjs'; + +const collator = new Intl.Collator('en', { + usage: 'sort', + numeric: true, + sensitivity: 'variant', + caseFirst: 'upper', + ignorePunctuation: false, +}); +const compare = collator.compare; + +export class CompactStorageV2 extends CompactStorage { + private data = [dataHeader] as Flatpacked; + private stringTable: StringTableBuilder | undefined; + private dedupe = true; + private sortKeys = true; + private emptyObjIdx = 0; + /** + * Cache of primitives and objects that have been added to the data. + */ + private cache = new Map([[undefined, 0]]); + /** + * Set of indexes that have been referenced by other indexes. + */ + private referenced = new Set(); + /** + * Cache of arrays that have been deduped. + * The key is a hash of the array elements as a function of the index of the element. + */ + private cachedArrays = new Map(); + private cachedElements = new Map(); + private stringTableLookup = new Map(); + + constructor(options?: FlatpackOptions | undefined) { + super(options); + this.dedupe = options?.dedupe ?? true; + this.sortKeys = options?.sortKeys || this.dedupe; + let stringTableAllowed = dataHeader !== dataHeaderV1_0; + if (options?.format === 'V2') { + this.data[0] = dataHeaderV2_0; + stringTableAllowed = true; + } + if (options?.useStringTable && !options.format) { + this.data[0] = dataHeaderV2_0; + stringTableAllowed = true; + } + if (options?.useStringTable || (options?.useStringTable !== false && stringTableAllowed)) { + this.stringTable = new StringTableBuilder(); + this.data[1] = [ElementType.StringTable]; + } + } + + private primitiveToIdx(value: Primitive): number { + if (typeof value === 'string') return this.stringToIdx(value); + if (typeof value === 'bigint') return this.bigintToIdx(value); + + const found = this.cache.get(value); + if (found !== undefined) { + return found; + } + + const idx = this.data.push(value) - 1; + this.cache.set(value, idx); + return idx; + } + + private addStringPrimitive(value: string): number { + const strTableIdx = this.stringTableLookup.get(value); + if (strTableIdx) { + return strTableIdx; + } + const stringTable = this.stringTable; + if (stringTable) { + const idx = -stringTable.add(value); + this.stringTableLookup.set(value, idx); + return idx; + } + const idx = this.data.push(value) - 1; + this.cache.set(value, idx); + return idx; + } + + private duplicateIndex(idx: number): number { + const element = this.data[idx]; + const duplicate = this.data.push(element) - 1; + return duplicate; + } + + private stringToIdx(value: string): number { + const found = this.cache.get(value); + if (found !== undefined) { + return found; + } + + return this.addStringPrimitive(value); + } + + private objSetToIdx(value: Set): number { + const found = this.cache.get(value); + if (found !== undefined) { + this.referenced.add(found); + return found; + } + + const idx = this.data.push(0) - 1; + this.cache.set(value, idx); + const keys = [...value]; + + const k = this.createUniqueKeys(keys, false); + const element: SetElement = [ElementType.Set, k]; + return this.storeElement(value, idx, element); + } + + private createUniqueKeys(keys: Serializable[], cacheValue = true): Index { + let k = this.arrToIdx(keys, cacheValue); + const elementKeys = this.data[k] as ArrayElement; + const uniqueKeys = new Set(elementKeys.slice(1)); + if (uniqueKeys.size !== keys.length) { + // one or more of the keys got deduped. We need to duplicate it. + uniqueKeys.clear(); + const indexes = elementKeys.slice(1).map((idx) => { + if (uniqueKeys.has(idx)) { + return this.duplicateIndex(idx); + } + uniqueKeys.add(idx); + return idx; + }); + k = this.createArrayElementFromIndexValues(this.data.length, indexes); + } + return k; + } + + private objMapToIdx(value: Map): number { + const found = this.cache.get(value); + if (found !== undefined) { + this.referenced.add(found); + return found; + } + + const idx = this.data.push(0) - 1; + this.cache.set(value, idx); + const entries = [...value.entries()]; + + const k = this.createUniqueKeys( + entries.map(([key]) => key), + false, + ); + const v = this.arrToIdx( + entries.map(([, value]) => value), + false, + ); + + const element: MapElement = [ElementType.Map, k, v]; + return this.storeElement(value, idx, element); + } + + private objRegExpToIdx(value: RegExp): number { + const found = this.cache.get(value); + if (found !== undefined) { + return found; + } + + const idx = this.data.push(0) - 1; + this.cache.set(value, idx); + const element: RegExpElement = [ + ElementType.RegExp, + this.stringToIdx(value.source), + this.stringToIdx(value.flags), + ]; + return this.storeElement(value, idx, element); + } + + private objDateToIdx(value: Date): number { + const found = this.cache.get(value); + if (found !== undefined) { + return found; + } + + const idx = this.data.push(0) - 1; + this.cache.set(value, idx); + const element: DateElement = [ElementType.Date, value.getTime()]; + return this.storeElement(value, idx, element); + } + + private bigintToIdx(value: bigint): number { + const found = this.cache.get(value); + if (found !== undefined) { + return found; + } + + const idx = this.data.push(0) - 1; + this.cache.set(value, idx); + const element: BigIntElement = [ + ElementType.BigInt, + this.primitiveToIdx( + value <= Number.MAX_SAFE_INTEGER && value >= -Number.MAX_SAFE_INTEGER + ? Number(value) + : value.toString(), + ), + ]; + return this.storeElement(value, idx, element); + } + + private objToIdx(value: PrimitiveObject | ObjectWrapper): number { + const found = this.cache.get(value); + if (found !== undefined) { + this.referenced.add(found); + return found; + } + + if (isObjectWrapper(value)) { + const idx = this.data.push({}) - 1; + this.cache.set(value, idx); + const element: ObjectElement = [ElementType.Object, 0, this.valueToIdx(value.valueOf())]; + return this.storeElement(value, idx, element); + } + + const entries = Object.entries(value); + + if (!entries.length) { + if (this.emptyObjIdx) { + return this.emptyObjIdx; + } + const idx = this.data.push({}) - 1; + this.emptyObjIdx = idx; + return idx; + } + + const idx = this.data.push(0) - 1; + this.cache.set(value, idx); + + if (this.sortKeys) { + entries.sort(([a], [b]) => compare(a, b)); + } + + const k = this.arrToIdx(entries.map(([key]) => key)); + const v = this.arrToIdx(entries.map(([, value]) => value)); + + const element: ObjectElement = [ElementType.Object, k, v]; + return this.storeElement(value, idx, element); + } + + private storeElement(value: Serializable | ObjectWrapper, idx: Index, element: CachedElements): number { + const useIdx = this.dedupe ? this.cacheElement(idx, element) : idx; + + if (useIdx !== idx && idx === this.data.length - 1) { + this.data.length = idx; + this.cache.set(value, useIdx); + return useIdx; + } + + this.data[idx] = element; + return idx; + } + + private cacheElement(elemIdx: Index, element: CachedElements): number { + let map: CacheMap = this.cachedElements; + for (let i = 0; i < element.length - 1; i++) { + const idx = element[i]; + let found = map.get(idx); + if (!found) { + found = new Map(); + map.set(idx, found); + } + assert(found instanceof Map); + map = found; + } + const idx = element[element.length - 1]; + const foundIdx = map.get(idx); + if (typeof foundIdx === 'number') { + return this.referenced.has(elemIdx) ? elemIdx : foundIdx; + } + map.set(idx, elemIdx); + return elemIdx; + } + + private stashArray(idx: number, element: ArrayElement): number { + const indexHash = simpleHash(element); + let found = this.cachedArrays.get(indexHash); + if (!found) { + found = []; + this.cachedArrays.set(indexHash, found); + } + const foundIdx = found.find((entry) => isEqual(entry.v, element)); + if (foundIdx) { + return this.referenced.has(idx) ? idx : foundIdx.idx; + } + found.push({ idx, v: element }); + return idx; + } + + private createArrayElementFromIndexValues(idx: Index, indexValues: Index[]): Index { + const element: ArrayElement = [ElementType.Array, ...indexValues]; + const useIdx = this.dedupe ? this.stashArray(idx, element) : idx; + + if (useIdx !== idx) { + assert(this.data.length === idx + 1, `Expected ${idx + 1} but got ${this.data.length}`); + this.data.length = idx; + return useIdx; + } + + this.data[idx] = element; + + return idx; + } + + /** + * Convert an array to an index. + * @param value - The array to convert to an index. + * @param cacheValue - Whether to cache the value. + * @returns the index of the array. + */ + private arrToIdx(value: PrimitiveArray, cacheValue = true): number { + const found = this.cache.get(value); + if (found !== undefined) { + this.referenced.add(found); + return found; + } + + const idx = this.data.push(0) - 1; + this.cache.set(value, idx); + + const useIdx = this.createArrayElementFromIndexValues( + idx, + value.map((idx) => this.valueToIdx(idx)), + ); + + if (cacheValue) { + this.cache.set(value, useIdx); + } + return useIdx; + } + + private valueToIdx(value: Serializable): number { + if (value === null) { + return this.primitiveToIdx(value); + } + + if (typeof value === 'object') { + if (value instanceof Set) { + return this.objSetToIdx(value); + } + if (value instanceof Map) { + return this.objMapToIdx(value); + } + if (value instanceof RegExp) { + return this.objRegExpToIdx(value); + } + if (Array.isArray(value)) { + return this.arrToIdx(value); + } + if (value instanceof Date) { + return this.objDateToIdx(value); + } + return this.objToIdx(value as PrimitiveObject); + } + + return this.primitiveToIdx(value); + } + + /** + * Reset things in a way that allows for reuse. + */ + private softReset(): void { + this.cache.clear(); + this.cache.set(undefined, 0); + } + + toJSON(json: V): Flatpacked { + this.softReset(); + const lastIdx = this.valueToIdx(json); + if (lastIdx < 0) { + this.data.push([ElementType.String, lastIdx]); + } + if (this.stringTable) { + this.data[1] = this.stringTable.build(); + } + return this.options?.optimize ? optimizeFlatpacked(this.data) : this.data; + } +} + +type CacheMap = Map; +type CachedElements = ObjectElement | SetElement | MapElement | RegExpElement | DateElement | BigIntElement; + +function isEqual(a: readonly number[], b: readonly number[]): boolean { + if (a === b) return true; + if (a.length !== b.length) return false; + for (let i = 0; i < a.length; i++) { + if (a[i] !== b[i]) return false; + } + return true; +} + +function simpleHash(values: readonly number[]): number { + let hash = Math.sqrt(values.length); + for (const value of values) { + hash += value * value; + } + return hash; +} + +function isObjectWrapper(value: unknown): value is ObjectWrapper { + return ( + typeof value === 'object' && + value !== null && + typeof (value as ObjectWrapper).valueOf === 'function' && + value.valueOf() !== value + ); +} diff --git a/packages/flatpack-json/src/stringTable.mts b/packages/flatpack-json/src/stringTable.mts new file mode 100644 index 000000000000..dc40893dc163 --- /dev/null +++ b/packages/flatpack-json/src/stringTable.mts @@ -0,0 +1,139 @@ +import { Trie } from './Trie.mjs'; +import { ElementType, type StringTableElement, type StringTableEntry } from './types.mjs'; + +export class StringTable { + constructor(readonly stringTableElement: StringTableElement) {} + + get(index: number): string { + if (!index) return ''; + index = index < 0 ? -index : index; + return this.#getCompoundString(index); + } + + #getCompoundString(index: number, visited = new Set()): string { + if (visited.has(index)) { + throw new Error(`Circular reference in string table at index ${index}`); + } + visited.add(index); + const entry = this.stringTableElement[index]; + if (typeof entry === 'string') { + return entry; + } + if (Array.isArray(entry)) { + return entry.map((i) => this.#getCompoundString(i, visited)).join(''); + } + throw new Error(`Invalid string table entry at index ${index}`); + } +} + +interface TrieData { + idx: number; + value: string; +} + +interface BuilderEntry { + value: string; + entry: StringTableEntry; +} + +const useSplits = false; + +export class StringTableBuilder { + private stringToIndex = new Map(); + private entries: BuilderEntry[] = [{ value: '', entry: '' }]; + private knownStrings = new Trie(); + + add(str: string): number { + const found = this.stringToIndex.get(str); + if (found !== undefined) { + return found; + } + if (!str) { + return this.#append(''); + } + const foundInTrie = this.knownStrings.find(str); + if (!foundInTrie) { + const idx = this.#append(str); + return idx; + } + const idx = this.#append(str); + this.#splitStrings(foundInTrie.found); + return idx; + } + + get(str: string): number | undefined { + return this.stringToIndex.get(str); + } + + #append(str: string): number { + const found = this.stringToIndex.get(str); + if (found !== undefined) { + return found; + } + const entry: BuilderEntry = { value: str, entry: str }; + const idx = this.entries.push(entry) - 1; + this.stringToIndex.set(str, idx); + this.knownStrings.add(str, { idx, value: str }); + return idx; + } + + #splitStrings(prefix: string): void { + if (!prefix) return; + console.log(`Splitting strings with prefix: ${prefix}`); + if (!useSplits) return; + const indexes = stringIndexesToSplit(this.knownStrings, prefix); + for (const idx of indexes) { + const entry = this.entries[idx]; + if (entry.value === prefix) { + continue; + } + this.#splitEntry(this.entries[idx], prefix); + } + } + + #splitEntry(entry: BuilderEntry, prefix: string): void { + let prefixIdx = this.stringToIndex.get(prefix) ?? this.entries.length; + const suffix = entry.value.slice(prefix.length); + + const currentCost = entryCost(entry.entry); + const suffixCost = this.stringToIndex.get(suffix) ? 0 : entryCost(suffix); + const prefixCost = this.stringToIndex.get(prefix) ? 0 : entryCost(prefix); + + if (typeof entry.entry === 'string') { + const cost = entryCost([prefixIdx, this.entries.length]) + suffixCost + prefixCost; + if (cost > currentCost) return; + prefixIdx = this.#append(prefix); + const suffixIdx = this.add(suffix); + entry.entry = [prefixIdx, suffixIdx]; + return; + } + + const cost = entryCost([prefixIdx, ...entry.entry]) + suffixCost; + if (cost > currentCost) return; + // @todo: split concatenated entries. + } + + build(): StringTableElement { + return [ElementType.StringTable, ...this.entries.slice(1).map((e) => e.entry)]; + } +} + +function entryCost(entry: StringTableEntry): number { + if (typeof entry === 'string') { + return entry.length + 2; + } + let cost = 1 + entry.length; // array overhead + index size + for (const idx of entry) { + cost += Math.log10(idx); // index size + } + return cost; +} + +function stringIndexesToSplit(trie: Trie, prefix: string): number[] { + const result: number[] = []; + for (const { node, found } of trie.walk(prefix)) { + if (node.d?.value !== found) continue; + result.push(node.d.idx); + } + return result; +} diff --git a/packages/flatpack-json/src/types.mts b/packages/flatpack-json/src/types.mts index eee172736cef..bdb62cdfc548 100644 --- a/packages/flatpack-json/src/types.mts +++ b/packages/flatpack-json/src/types.mts @@ -94,7 +94,9 @@ export type BigIntElement = readonly [type: ElementType.BigInt, value: Index]; */ export type ArrayElement = readonly [type: ElementType.Array, ...Index[]]; -export type StringTableElement = readonly [type: ElementType.StringTable, ...string[]]; +export type StringTableEntry = string | number[]; + +export type StringTableElement = readonly [type: ElementType.StringTable, ...StringTableEntry[]]; export type FlattenedElement = Readonly< PrimitiveElement | ObjectBasedElements | ArrayBasedElements | StringTableElement diff --git a/packages/flatpack-json/src/unpack.mts b/packages/flatpack-json/src/unpack.mts index 1b2d292d1ab0..723e98877fae 100644 --- a/packages/flatpack-json/src/unpack.mts +++ b/packages/flatpack-json/src/unpack.mts @@ -1,5 +1,6 @@ import assert from 'node:assert'; +import { StringTable } from './stringTable.mjs'; import type { ArrayBasedElements, ArrayElement, @@ -27,7 +28,7 @@ import { ElementType, supportedHeaders } from './types.mjs'; export function fromJSON(data: Flatpacked): Unpacked { const [header] = data; - let stringTable: StringTableElement | undefined; + let stringTable: StringTable | undefined; if (!supportedHeaders.has(header)) { throw new Error('Invalid header'); @@ -168,7 +169,7 @@ export function fromJSON(data: Flatpacked): Unpacked { return toBigInt(idx, element as BigIntElement); } case ElementType.StringTable: { - stringTable = element as StringTableElement; + stringTable = new StringTable(element as StringTableElement); return idxToValue(idx + 1); } } @@ -186,7 +187,7 @@ export function fromJSON(data: Flatpacked): Unpacked { function idxToValue(idx: number): Serializable { if (!idx) return undefined; if (idx < 0) { - return stringTable ? (stringTable[-idx] as string) : undefined; + return stringTable ? stringTable.get(-idx) : undefined; } const found = cache.get(idx); if (found !== undefined) { From 05a108095e868b686ba5323a601228e21ace1550 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 05:47:19 +0000 Subject: [PATCH 07/26] [autofix.ci] apply automated fixes --- .../fixtures/.npm-packages-info-v1.json | 78516 ++++++++-------- .../fixtures/.npm-packages-info-v2.json | 47038 ++++++--- 2 files changed, 73265 insertions(+), 52289 deletions(-) diff --git a/packages/flatpack-json/fixtures/.npm-packages-info-v1.json b/packages/flatpack-json/fixtures/.npm-packages-info-v1.json index 1fe72091b400..6f619003bef9 100644 --- a/packages/flatpack-json/fixtures/.npm-packages-info-v1.json +++ b/packages/flatpack-json/fixtures/.npm-packages-info-v1.json @@ -1,36873 +1,41647 @@ [ -"Flatpack JSON v1", -[5,2,25598], -[0,3,4,7,10,13,16,19,21,24,26,28,30,32,34,37,39,40,43,46,47,48,51,53,56,58,61,62,63,64,65,66,68,71,73,76,78,81,83,85,87,90,92,94,97,99,101,104,105,106,107,110,111,114,116,119,122,124,126,129,133,135,137,140,143,146,148,150,153,155,157,159,162,164,167,169,171,174,175,177,180,182,185,187,189,191,192,195,197,198,201,203,204,205,208,213,215,218,220,221,222,225,228,231,233,235,238,240,243,245,247,249,251,253,258,260,262,265,267,269,271,272,275,277,280,282,285,288,290,293,296,298,301,303,305,308,310,313,315,319,322,324,327,329,331,334,338,340,342,345,346,347,350,351,354,355,358,359,360,361,362,365,368,370,371,374,377,379,381,384,387,392,394,399,401,404,406,409,411,413,415,419,422,425,427,430,432,434,438,439,442,443,444,445,448,449,452,456,457,460,462,465,468,469,470,471,478,481,483,486,488,490,493,495,497,502,505,507,513,516,518,525,528,533,536,538,539,540,541,542,545,546,547,548,549,550,551,554,555,559,560,561,564,565,566,567,572,573,576,577,578,581,583,585,587,589,593,595,596,598,601,602,603,606,608,609,613,615,616,617,618,621,622,624,626,627,628,631,633,634,635,638,641,643,646,649,652,654,656,659,660,663,665,666,669,672,675,677,679,682,683,684,687,688,691,692,693,697,700,702,703,706,709,711,712,713,716,721,724,727,732,735,738,740,742,745,749,751,753,758,763,767,770,773,776,782,785,790,793,795,798,802,803,804,805,806,807,808,809,810,811,816,817,818,821,822,825,826,827,828,829,831,834,835,838,840,841,842,843,846,849,850,851,852,853,857,860,864,870,872,876,881,885,891,896,898,905,910,913,915,917,920,925,929,933,935,938,944,948,951,954,955,958,961,962,963,966,968,971,972,974,975,978,980,983,985,987,989,991,993,996,997,1001,1003,1004,1005,1006,1009,1011,1012,1013,1014,1015,1018,1021,1023,1025,1026,1027,1028,1030,1031,1032,1033,1034,1043,1045,1050,1054,1056,1059,1061,1063,1066,1073,1075,1077,1078,1079,1080,1081,1082,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1096,1097,1098,1100,1102,1103,1104,1107,1109,1110,1112,1113,1114,1115,1116,1117,1118,1120,1121,1122,1125,1127,1129,1130,1131,1132,1135,1136,1137,1138,1139,1140,1143,1144,1145,1147,1148,1149,1151,1154,1156,1157,1158,1159,1162,1165,1166,1167,1168,1169,1170,1171,1172,1173,1175,1178,1180,1184,1189,1191,1193,1195,1198,1201,1203,1205,1208,1210,1212,1216,1217,1220,1225,1230,1233,1235,1240,1244,1245,1248,1251,1253,1255,1257,1261,1264,1267,1268,1270,1272,1275,1277,1279,1280,1282,1284,1287,1288,1290,1291,1292,1293,1294,1295,1298,1301,1304,1305,1306,1308,1309,1310,1311,1314,1315,1316,1317,1318,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1335,1336,1339,1342,1344,1346,1348,1350,1352,1354,1356,1358,1361,1362,1363,1364,1365,1366,1367,1369,1370,1371,1372,1373,1376,1377,1378,1381,1385,1386,1387,1389,1391,1393,1394,1395,1396,1397,1398,1400,1401,1402,1405,1406,1407,1408,1409,1410,1411,1413,1414,1415,1416,1417,1420,1421,1423,1424,1425,1426,1427,1428,1429,1431,1434,1436,1437,1438,1440,1443,1446,1447,1448,1449,1450,1455,1456,1457,1458,1459,1461,1462,1465,1468,1470,200,1471,1474,1477,1479,1480,1481,1482,1483,1486,1488,1489,1492,1494,1495,1496,1497,1498,1499,1500,1501,1503,1505,1506,1509,1473,1511,1512,1513,1516,1519,1522,1525,1527,1529,1532,1533,1536,1537,1540,1541,1543,1544,1546,1549,1551,1553,1556,1559,1560,1562,1565,1566,1567,1570,1573,977,1575,1578,1581,1582,1584,1587,1588,1590,1591,1593,1594,1595,1596,1597,1598,1599,1600,1603,1604,1605,1606,1608,1609,1610,1613,1615,1616,1618,1620,1621,1622,1623,1624,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1645,1647,1648,1649,1650,1651,1652,1653,1654,1655,1658,1660,1661,1662,1663,1664,1665,1668,1672,1673,1674,1675,1676,1677,1679,1680,1681,1682,1686,1688,1690,1693,1696,1699,1700,1701,1702,1703,1704,1705,1706,1707,1710,1711,1687,1713,1715,1718,1719,1720,1723,1724,1726,1727,1728,1729,1730,1731,1733,1734,1735,1736,1737,1738,1741,1742,1745,1748,467,1750,1751,1754,1756,1757,1758,1759,1763,1764,1766,1767,1768,1770,1774,1777,1779,1782,1784,1785,1786,1787,1788,1789,1791,1792,1793,1794,1795,1796,1797,1798,1801,1804,1806,1809,1812,1816,1817,1819,1820,1821,1822,1824,1825,1827,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1842,1843,1845,1847,1850,1853,1854,1855,1856,1859,1860,1863,1865,1866,668,1869,1874,1875,1177,1879,1881,1883,1886,1889,1891,1893,1895,1898,1900,1903,1905,1907,1909,1912,1915,1916,1920,1922,1924,1926,1930,1933,1935,1937,1938,1939,1942,1945,1947,1948,1951,1953,1954,1955,1958,1959,1961,1964,1966,1969,1970,1972,1976,1978,1982,1985,1988,1992,1994,1996,1998,1999,2000,2003,2004,2007,984,2008,2010,2011,2012,2015,2017,2018,2019,2020,2021,2022,2024,2025,2026,2028,2031,2033,2037,2039,2040,2042,2045,2046,2048,2051,2053,2054,2057,2058,2059,2060,2061,2064,2067,2069,2071,2073,2075,2077,2078,2079,2080,2081,2082,2083,2084,2086,2087,2088,2089,2092,2095,2096,2098,2099,2102,2105,2107,2108,2109,2111,2113,2114,2116,2117,2119,2122,2123,2126,2128,2129,2130,2131,2132,2133,2134,2135,2137,2139,2141,2144,2145,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2159,2160,2161,2162,2163,2164,2165,2167,2170,2172,2175,2176,2177,2178,2179,2182,2185,2188,2191,2192,2193,2194,2195,2197,2070,2200,2202,2203,2205,2206,2207,2209,2211,2212,2213,2214,2215,2216,2217,2220,2222,2225,2226,2227,2228,2231,2234,2236,2239,2240,2243,2247,2250,2253,2256,2258,2260,2263,2266,2268,2271,2273,2274,2277,2279,2281,2283,2285,2290,2291,2293,2296,2298,2300,2302,2305,2307,2308,2311,2314,2316,2318,2320,2321,2322,2323,2327,2330,2332,2334,2336,2338,2341,2344,2346,2348,2351,2352,2354,2357,2359,2361,2363,2366,2367,2368,2371,2372,2373,2375,2377,2379,2381,2383,2384,2387,2390,2393,2396,2398,2400,2401,2404,2405,2406,2409,2411,2413,2416,2419,2421,2423,2425,2427,2430,2433,2435,2436,2438,2441,2444,2447,2449,2450,2453,2455,2459,2461,2463,2464,2467,2469,2472,2476,2479,2482,2486,2489,2490,2493,2494,2496,2498,2500,2503,2504,2506,2507,2508,2510,2512,2515,2517,2519,2520,2521,2524,2526,2529,2530,2533,2536,2539,2541,2543,2544,2547,2549,2550,2552,2553,2554,2555,2036,2556,2559,2562,2563,2564,2567,2569,2570,2571,2572,2575,2577,2579,2581,2583,2584,2586,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2600,2601,2602,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2616,2620,2623,2626,2628,2629,2633,2635,2637,2639,2641,2644,2646,2650,2651,2652,2654,27,2657,2659,2661,2664,2665,2668,2670,2671,2674,2675,2676,2677,2678,2679,2681,2683,2685,2686,2687,2689,2692,2267,2694,2695,2696,2697,2700,2702,2704,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2718,2719,2720,2722,2723,2726,1161,2727,2728,2730,2731,2732,2733,2735,2738,2739,2740,2741,2742,2743,2744,2745,2747,2750,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2437,2763,2764,2765,2766,2768,1192,2771,2774,2777,2780,2782,2784,2787,2792,2794,2796,2797,2798,2802,2805,2806,2807,2808,2810,2811,2812,2813,2814,2816,2817,2820,2821,2822,2823,2824,2292,1776,2826,2829,2832,2834,2835,2272,2839,2841,2843,2845,2848,2851,2854,2856,2858,2859,2860,2861,2863,2864,2865,2866,2867,2870,2297,2871,2876,2878,2881,2886,2889,2891,2895,2897,2898,2900,2904,2906,2908,2910,2912,2915,2918,2921,2923,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2941,2943,2945,2946,2948,2949,620,2950,2954,2957,2960,2961,2962,2963,2964,2967,2968,695,2969,2970,2972,2973,2975,2976,2979,2981,2982,2983,2984,2986,2990,2991,2992,2993,2996,2997,3000,3003,3006,3008,3010,3012,3014,3019,1209,3021,3023,3025,3028,3029,3032,3034,3037,3039,3041,3044,3047,3049,3051,3052,3054,3057,3060,3062,3064,3066,3067,3070,3072,3073,3074,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3095,3096,3097,3098,3099,3102,3103,1783,3105,3107,3112,3114,3116,3117,3120,3123,3124,3125,3127,3129,3130,3132,3133,3134,3135,3136,3137,3140,3141,3142,3143,3144,3145,3148,3150,3152,3153,3156,3157,1698,3159,3160,3161,3162,3164,3165,3167,3170,3171,3173,3174,3177,3178,3181,3183,3185,3186,3187,3188,3189,3190,3191,2899,3198,3200,3202,3203,3206,3210,3211,3213,3215,3216,3219,3220,3222,3223,3226,3229,3230,3232,3233,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3249,3253,3256,3257,3258,3259,3260,3261,1952,3262,3263,2378,3264,3266,3268,3270,3271,3273,3274,3275,3276,3277,3278,3282,3283,3284,3285,3287,3288,3289,3290,3291,3292,3294,3295,3296,3297,3299,3300,3303,3305,3308,3309,3310,3313,3316,3318,640,3322,3324,3327,3330,3332,3334,3337,3339,3341,3342,3345,3347,3349,3350,3353,3355,3357,3359,3361,3363,2276,3365,3366,3367,3368,3369,3371,3373,3376,3377,3378,3379,3381,3386,3390,3393,3397,3400,3401,3404,3406,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3427,3429,3431,3433,3434,3435,3438,3439,3440,3441,3442,3443,3444,3445,3446,3451,3453,3455,3456,3458,3459,3460,3463,3466,3467,3468,3469,888,3470,3471,3472,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3488,3490,3492,1644,3493,3494,3495,3498,3499,3500,3501,1433,3403,3502,3505,3507,3509,3510,3511,3512,3513,3518,3519,3520,3521,3524,3525,3526,3527,3530,3531,3532,3533,3534,3535,3536,3537,3539,3540,3541,2072,3544,3545,3547,3548,3549,3551,3552,3553,3554,3555,3558,3559,3560,3561,3564,3566,3570,3572,3575,3577,3579,3584,3587,3591,3598,3600,3603,3605,3606,3611,3613,3616,3618,3622,3625,3628,3633,3635,3636,3638,3640,3643,3647,3649,3652,3653,3657,3660,3662,3664,3668,3672,3674,3676,3678,3681,3683,3686,3688,3691,3692,3693,3696,3697,3698,3699,1894,3703,3706,3708,3710,3711,3714,3716,3717,3718,3720,3722,3724,3725,3726,3727,3729,3730,3732,1862,3734,3736,3739,3741,3742,3744,3746,3747,3750,2658,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3765,3767,3768,3770,3771,2907,3773,3774,3775,3776,3777,3779,3780,3781,3783,3784,3786,1997,3787,3788,3789,3790,89,3793,3799,3802,3803,3804,3807,3810,3813,3816,3817,3820,3822,3824,3826,3829,3830,3833,3836,3837,3839,3843,3846,3847,3849,3850,3853,3856,3857,3861,3864,3867,3869,3872,3876,3878,3882,3884,3885,3887,3889,3891,3893,3895,3897,3899,3904,3906,3909,3911,3913,3914,3916,3917,3919,3921,3923,3925,3927,3928,3930,3931,3932,3935,3938,1552,3939,3941,3875,3943,3945,3946,3948,3950,3951,3954,3957,3958,3963,3968,3970,3971,3973,3975,3978,3980,3981,3984,3985,3988,3989,3991,3992,3995,3998,3999,4001,4002,4005,705,4008,4010,4012,4015,4018,4019,4022,4023,814,4025,4028,4029,4031,4033,4035,4036,1153,4037,4038,4039,4041,4042,4045,4048,4052,4055,4057,4058,4060,4064,4066,4067,4069,4071,4073,4075,4076,4077,4079,4081,4083,4084,4085,4086,4089,4092,4093,4094,4098,4100,4103,4104,4105,4106,4108,4110,2278,4111,4112,4113,4116,4119,4121,4124,4125,4126,4127,4130,4131,4134,1899,4135,710,4136,4137,4140,4143,4145,4146,4148,4150,4151,4153,4156,4159,4160,4163,4164,4165,4167,4168,4169,4170,4171,4172,4173,4174,4177,4181,4183,4187,4188,4189,4192,4193,4196,4199,4200,4201,4204,4205,4206,4207,4208,4209,4212,3974,4213,4214,4215,4216,4217,4218,4220,4224,4227,4228,4230,4232,4233,4234,4235,4236,4237,4238,4239,4242,4243,4245,4246,4247,4248,4249,4252,4255,4257,4258,4261,4264,4266,4267,4270,4272,4275,4277,4278,4280,4282,4283,1871,4288,4290,4292,4294,4296,4300,4302,4303,4305,4307,4309,4311,4315,4317,4319,4320,4323,4326,4328,4330,4333,4334,4335,4337,4338,4339,4341,4342,4343,4345,4347,4351,4352,3709,4355,4359,4360,4361,4362,4363,4365,4367,4369,4370,4371,4372,4373,4375,4376,4377,4380,4382,4383,4384,4387,4388,4389,4390,4391,4393,4394,4397,4398,4399,1241,4400,4401,4404,4072,4409,4411,1187,4413,4415,4419,4421,4423,4425,4426,4427,4430,4431,4433,4434,4435,4436,4437,4438,4441,4443,4445,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,100,4459,4461,4462,4463,4464,4465,4468,4469,4470,4473,4474,4475,4477,4478,4480,4481,4482,4483,4484,4487,4490,4492,4493,4494,4495,4496,4497,4498,4499,4500,4505,4507,1000,4508,4510,4512,4514,4515,4517,4520,4521,91,4523,4526,4531,4532,4533,4535,4537,4538,4539,4540,4541,4542,4543,4545,4547,4548,4549,4554,4555,4558,4559,4560,4562,4563,1002,4566,4027,4567,4568,4569,4572,4576,4577,614,4578,3348,4579,4582,4585,4588,1155,4589,4590,4591,4592,4593,4594,4595,4596,4597,4599,4600,4603,4606,4608,1983,4612,4614,1984,4615,4616,4617,4618,4621,4624,188,4629,4630,4632,4633,4634,4638,4639,4640,4645,4646,4647,4648,4649,2282,4650,4651,4652,4653,4656,4659,4662,4664,4667,4669,2924,4676,4677,4679,4681,4684,4686,4689,4693,4695,4696,4699,4702,4703,4704,4705,4706,4707,4708,4709,4711,4715,4716,4717,4720,4723,4724,4726,4727,4728,4729,4730,4731,3354,4733,4734,4735,4736,4737,4738,1906,4739,4740,4741,4742,1695,4744,4745,4746,4747,4748,4749,4751,4752,4753,4754,4756,4757,4758,4759,4760,4761,4762,4763,4767,4768,4769,4770,4771,4772,4774,4775,4776,4777,4782,4783,4786,4788,4791,639,11976,662,3405,5010,6781,23276,6974,15279,15484,17429,15887,26713,18240,11804,24566,475,24782,25169,25219,25266,25307,25432,25443,25395,25490,25766,25775,25798,25809,25833,25882,25931,29350,29385,29389,29407,29414,29394,29435,29448,29460,20562,29477,31705,29524,29537,29546,29560,33408,29564,29610,31821,29626,3286,30757,29683,29729,29754,5065,29805,9011,29821,24737,29850,29889,29942,29955,28519,29993,9355,8199,680,19571,27921,29998,30145,30165,26706,30182,30196,30218,9041,30233,30252,30257,30281,30312,906,30405,30458,30463,30469,30477,30488,30607,30612,30624,30731,907,8119,30798,30829,940,26636,20202,29755,14673,9274,9293,9273,30926,30957,30972,33145,24723,30979,14684,31064,11518,31086,12016,15951,31198,31231,31244,31262,31272,31282,31289,31290,31332,31347,31314,31353,31375,21287,21288,31343,31386,31421,31430,31465,31473,31485,31501,31509,31521,14904,31180,31528,14959,18699,18717,14336,31544,26854,34576,34578,31644,33204,11421,23288,31677,31713,11890,16858,31728,31749,31760,31782,31793,31805,31816,31822,31827,31835,17964,21594,31838,8160,31930,29013,33653,31961,17988,12421,23352,23250,23292,31752,23253,32029,16837,32144,32166,24114,32182,13896,31182,32201,31734,32238,26180,32265,27263,32294,32311,16870,32319,17167,16842,11071,32347,32397,32415,32443,32456,21174,32468,32493,32499,32506,32531,32225,32546,32564,32577,12042,32634,32747,32760,32766,32778,11501,32790,19469,9252,31184,31186,9731,32816,999,32884,32892,9272,32914,32926,32934,32939,32940,32962,5517,1083,34683,33053,8392,10572,11960,24509,30299,1300,30527,34676,1302,30535,26450,26482,26483,26489,26495,32977,8703,1418,26414,1419,28763,2115,7606,1441,13412,26273,28880,28909,1442,28458,28479,28493,1445,32733,1466,1475,29032,26257,1476,28595,28885,1491,1502,28323,1510,5290,26241,1526,29197,28873,4090,1530,9378,26158,3845,8654,1531,1761,26082,1535,26699,29865,1555,2245,8605,28450,28899,28901,1558,5993,28354,29834,1607,1667,23535,1670,1790,26644,7585,20304,28327,28400,26421,1678,2221,10973,1689,28865,8550,22378,8540,1691,26032,29417,1692,26591,29304,1694,28069,31474,31486,31507,31524,1802,28906,1813,29853,1814,8604,1841,27959,1857,28466,1918,32834,32863,32890,30286,31680,31400,1979,31833,33277,13387,1980,21374,2001,2035,5666,5564,2049,17110,5287,2362,32818,25810,2050,2065,25762,29012,29031,2066,25802,34043,28092,29161,2094,34032,28872,2097,34161,33479,2106,2140,2142,36878,36879,2186,28117,2219,29019,6372,2238,7995,9107,12097,13676,17199,26746,33929,18012,20093,34468,20362,21610,23755,23769,24602,19617], -"@alifd/next", -"@angular-devkit/core", -[3,4,16], -"schematics", -[2,5,6], -[3,4,8], -"/animations", -[2,8,9], -[3,10,9], -"cdk", -[2,11,12], -[3,13,10], -"ommon", -[2,14,15], -[3,16,12], -"piler", -[2,17,18], -"-cli", -[2,19,20], -[3,16,11], -"re", -[2,22,23], -"forms", -[2,11,25], -"http", -[2,11,27], -"material", -[2,11,29], -"platform-browser", -[2,11,31], -"-dynamic", -[2,32,33], -[3,32,18], -"server", -[2,35,36], -"router", -[2,11,38], -"@ant-design/react-native", -[3,40,12], -"web3-common", -[2,41,42], -[3,43,17], -"icons", -[2,44,45], -"@auth/sveltekit", -"@babel/cli", -[3,48,8], -"ode-frame", -[2,49,50], -[3,51,9], -[2,52,23], -[3,48,7], -"helper-plugin-utils", -[2,54,55], -"parser", -[2,54,57], -[3,58,8], -"lugin-proposal-class-properties", -[2,59,60], -"@11ty/eleventy", -"@adobe/css-tools", -"@api-components/api-method-documentation", -"@apollo/client", -"@asyncapi/generator-react-sdk", -"eslint-parser", -[2,54,67], -[3,61,23], -"decorators", -[2,69,70], -"export-default-from", -[2,69,72], -[3,73,30], -"namespace-from", -[2,74,75], -"object-rest-spread", -[2,69,77], -[3,61,14], -"syntax-dynamic-import", -[2,79,80], -"transform-runtime", -[2,79,82], -"olyfill", -[2,59,84], -"reset-env", -[2,59,86], -[3,87,14], -"react", -[2,88,89], -"typescript", -[2,88,91], -"register", -[2,54,93], -[3,94,8], -"untime", -[2,95,96], -"-corejs2", -[2,97,98], -"traverse", -[2,54,100], -[3,101,8], -"ypes", -[2,102,103], -"@biz-dev-ops/md-docs", -"@bwcr_/winston-loki", -"@changesets/cli", -"@cha", -"tscope/chat-ui-kit-react", -[2,108,109], -"@ckeditor/ckeditor5-adapter-ckfinder", -[3,111,21], -"ngular", -[2,112,113], -"utoformat", -[2,112,115], -[3,111,20], -"basic-styles", -[2,117,118], -[3,119,21], -"lock-quote", -[2,120,121], -"uild-balloon", -[2,120,123], -"-block", -[2,124,125], -[3,124,26], -"classic", -[2,127,128], -"deco", -"upled-document", -[2,130,131], -[2,127,132], -"inline", -[2,127,134], -"ckbox", -[2,117,136], -[3,137,22], -"finder", -[2,138,139], -[3,137,21], -"lipboard", -[2,141,142], -[3,143,22], -"oud-services", -[2,144,145], -"ore", -[2,141,147], -"easy-image", -[2,117,149], -[3,150,21], -"ngine", -[2,151,152], -"ssentials", -[2,151,154], -"heading", -[2,117,156], -"image", -[2,117,158], -[3,159,21], -"ndent", -[2,160,161], -"link", -[2,117,163], -[3,164,22], -"st", -[2,165,166], -"media-embed", -[2,117,168], -"paragraph", -[2,117,170], -[3,171,22], -"ste-from-office", -[2,172,173], -[2,117,89], -"table", -[2,117,176], -[3,177,21], -"yping", -[2,178,179], -"ui", -[2,117,181], -[3,182,21], -"pload", -[2,183,184], -"tils", -[2,183,186], -"vue", -[2,117,188], -"widget", -[2,117,190], -"@commitlint/cli", -"@com", -"podoc/compodoc", -[2,193,194], -"unica/core", -[2,193,196], -"@contenthook/browser", -[3,198,13], -"cli", -[2,199,200], -"node", -[2,199,202], -"@coreui/coreui", -"@csstools/css-parser-algorithms", -[3,205,14], -"tokenizer", -[2,206,207], -[3,205,10], -"media-", -"query-list-parser", -[2,210,211], -[2,209,212], -"postcss-is-pseudo-class", -[2,209,214], -[3,215,18], -"progressive-custom-properties", -[2,216,217], -"selector-specificity", -[2,209,219], -"@cucumber/cucumber", -"@deven-org/documentation-skeleton", -"@dev", -"tea2026/aspernatur-ea-non-porro", -[2,223,224], -[3,225,12], -"consectetur-ab-unde-quisquam", -[2,226,227], -[3,228,13], -"upiditate-dolorem-excepturi-impedit", -[2,229,230], -"distinctio-soluta-illo-eaque", -[2,226,232], -"eum-ullam-est-distinctio", -[2,226,234], -[3,235,13], -"xplicabo-alias-architecto-sed", -[2,236,237], -"improved-journey", -[2,226,239], -[3,240,13], -"nventore-facilis-corporis-cum", -[2,241,242], -"psa-omnis-in-molestiae", -[2,241,244], -"literate-computing-machine", -[2,226,246], -"maxime-sequi-est-rem", -[2,226,248], -"necessitatibus-dolorem-esse-atque", -[2,226,250], -"odit-enim-reiciendis-pariatur", -[2,226,252], -[3,253,17], -"maxime-", -"porro-asperiores", -[2,255,256], -[2,254,257], -"possimus-ipsa-sint-consequuntur", -[2,226,259], -"qui-quos-laborum-amet", -[2,226,261], -[3,262,15], -"a-ducimus-placeat-minima", -[2,263,264], -"dem-voluptate-repudiandae-necessitatibus", -[2,263,266], -"rerum-quaerat-porro-animi", -[2,226,268], -"ubiquitous-octo-memory", -[2,226,270], -"@diotoborg/adipisci-placeat-iure", -[3,272,12], -"met-architecto-est", -[2,273,274], -"t-totam-perspiciatis", -[2,273,276], -[3,272,11], -"commodi-voluptatum-libero", -[2,278,279], -"delectus-necessitatibus-voluptatum", -[2,278,281], -[3,282,13], -"serunt-illo-tempora", -[2,283,284], -[3,282,12], -"icta-recusandae-veniam", -[2,286,287], -"olor-earum-quia", -[2,286,289], -[3,290,17], -"tempora-fuga", -[2,291,292], -[3,290,16], -"es-praesentium-assumenda", -[2,294,295], -"eligendi-est-unde", -[2,278,297], -[3,298,12], -"sse-accusantium-ratione", -[2,299,300], -"illo-amet-architecto", -[2,278,302], -"laudantium-itaque-esse", -[2,278,304], -[3,305,12], -"ibero-asperiores-at", -[2,306,307], -"neque-inventore-corporis", -[2,278,309], -[3,310,12], -"ostrum-eveniet-officiis", -[2,311,312], -"odio-dolores-officia", -[2,278,314], -"porro-", -"modi-accusamus", -[2,316,317], -[2,278,318], -[3,319,12], -"sychic-bassoon", -[2,320,321], -"quasi-repellat-odit", -[2,278,323], -[3,324,13], -"i-ullam-ipsum", -[2,325,326], -"o-dolorem-ducimus", -[2,325,328], -"ratione-error-odio", -[2,278,330], -[3,331,12], -"epellat-blanditiis-quis", -[2,332,333], -[3,292,8], -"voluptas-distinctio", -[2,335,336], -[2,278,337], -"ullam-dignissimos-repudiandae", -[2,278,339], -"velit-reiciendis-velit", -[2,278,341], -[3,342,13], -"rbose-robot", -[2,343,344], -"@diplodoc/transform", -"@discordjs/rest", -"@dis", -"qada/workspace", -[2,348,349], -"@doc-tools/docs", -[3,351,11], -[3,82,9], -[2,352,353], -"@dramaorg/esse-praesentium-eligendi", -[3,355,10], -"quae-dolore-nostrum", -[2,356,357], -"@eas-framework/server", -"@eightshift/frontend-libs", -"@electron/docs-parser", -"@emotion/babel-plugin", -[3,362,9], -"core", -[2,363,364], -[3,365,10], -"ss", -[2,366,367], -"styled", -[2,363,369], -"@erboladaiorg/ad-exercitationem-ducimus", -[3,371,15], -"speriores-earum-quaerat", -[2,372,373], -[3,374,25], -"fuga-sint", -[2,375,376], -"nam-adipisci", -[2,375,378], -"utem-dolores-ipsam", -[2,372,380], -[3,371,14], -"cupiditate-consectetur-porro", -[2,382,383], -[3,384,25], -"pariatur-optio", -[2,385,386], -[3,232,11], -"quis", -[2,335,389], -[2,388,390], -[2,382,391], -"error-atque-ea", -[2,382,393], -[3,394,15], -"sse-", -"ipsa-numquam", -[2,396,397], -[2,395,398], -"x-hic-molestias", -[2,395,400], -[3,401,16], -"plicabo-eius-adipisci", -[2,402,403], -"molestiae-voluptatibus-perferendis", -[2,382,405], -[3,406,22], -"s-nulla-dolor", -[2,407,408], -"nisi-culpa-cum", -[2,382,410], -"officia-illum-aperiam", -[2,382,412], -"perspiciatis-magni-ut", -[2,382,414], -"quae-", -"in-veniam", -[2,416,417], -[2,382,418], -[3,419,18], -"rat-mollitia-adipisci", -[2,420,421], -[3,419,16], -"ibusdam-itaque-tempora", -[2,423,424], -"sint-deleniti-dolorem", -[2,382,426], -[3,427,16], -"t-nesciunt-amet", -[2,428,429], -"tenetur-architecto-dolore", -[2,382,431], -"ut-dignissimos-laborum", -[2,382,433], -"velit-", -"fugit-harum", -[2,435,436], -[2,382,437], -"@eslint-community/eslint-utils", -"@eslint", -"/js", -[2,440,441], -"@fakeyanss/redoc", -"@floating-ui/react-dom", -"@fontsource/inter", -[3,445,12], -"roboto", -[2,446,447], -"@fortawesome/fontawesome-svg-core", -[3,449,14], -"ree-solid-svg-icons", -[2,450,451], -[3,449,13], -"-fontawesome", -[2,89,454], -[2,453,455], -"@grandlinex/core", -[3,457,12], -"e-kernel", -[2,458,459], -"kernel", -[2,458,461], -"@gra", -"phql-markdown/core", -[2,463,464], -[3,465,18], -"docusaurus", -[2,466,467], -"@hajtech/webpack-config", -"@hapi/hapi", -"@hishprorg/aliquid-ad-vero", -[3,471,12], -"utem-", -"sint-", -"@adonisjs/core", -"sint-quas", -[2,473,476], -[2,472,477], -[3,471,11], -"cum-rem-consequuntur", -[2,479,480], -"earum-sint-veritatis", -[2,479,482], -[3,483,12], -"ius-vero-dicta", -[2,484,485], -"st-dicta-quis", -[2,484,487], -"incidunt-quibusdam-tempore", -[2,479,489], -[3,490,12], -"taque-esse-accusamus", -[2,491,492], -"ure-optio-nihil", -[2,491,494], -"magni-amet-id", -[2,479,496], -[3,497,17], -"nisi-", -"aperiam", -[2,499,500], -[2,498,501], -[3,497,13], -"xime-voluptates-enim", -[2,503,504], -"nihil-ad-ratione", -[2,479,506], -[3,414,13], -[3,330,8], -"unde", -[2,509,510], -[2,508,511], -[2,479,512], -"-perferendis-culpa", -[2,389,514], -[2,479,515], -"reprehenderit-excepturi-sed", -[2,479,517], -"nam-", -"conse", -"quuntur", -[2,520,521], -[2,519,522], -[2,474,523], -[2,479,524], -[3,525,12], -"unt-officia-eligendi", -[2,526,527], -[3,528,16], -"volupta", -"tem-nobis", -[2,530,531], -[2,529,532], -"-vitae-reprehenderit", -[2,510,534], -[2,479,535], -"wafflejs", -[2,479,537], -"@homer0/prettier-plugin-jsdoc", -"@hookform/resolvers", -"@iamtraction/google-translate", -"@idux/cdk", -"@idux/c", -"omponents", -[2,543,544], -"@inquirer/core", -"@ionic/core", -"@isaacs/cliui", -"@istanbuljs/nyc-config-typescript", -"@itwin/itwinui-react", -"@jest/core", -"@jest/", -"types", -[2,552,553], -"@jsonforms/core", -[3,555,11], -"-renderers", -[2,29,557], -[2,556,558], -[2,556,89], -"@juigorg/nisi-molestiae-ut", -[3,561,9], -"sit-nam-neque", -[2,562,563], -"@jupyterlab/application", -"@kobedevi/sassdoc", -"@kollorg/dicta-itaque-nemo", -[3,567,9], -"nihil-", -"veniam-deserunt", -[2,569,570], -[2,568,571], -"@libphamton/chatfanpage", -[3,573,12], -"fb-group", -[2,574,575], -"@listr2/prompt-adapter-inquirer", -"@mantine/core", -[3,578,9], -"dates", -[2,579,580], -"hooks", -[2,579,582], -"modals", -[2,579,584], -"notifications", -[2,579,586], -"prism", -[2,579,588], -"style", -"s", -"styles", -[2,579,592], -"utils", -[2,579,594], -"@material-ui/core", -[3,596,13], -[2,597,45], -"@mat", -"hematikoi/jsonapi", -[2,599,600], -"@mdx-js/react", -"@microsoft/api-extractor", -[3,603,11], -"tsdoc", -[2,604,605], -"-config", -[2,606,607], -"@middy/core", -"@middy/", -"-json-body-parser", -[2,27,611], -[2,610,612], -"util", -[2,610,614], -"@ministryofjustice/frontend", -"@mswjs/interceptors", -"@mui/icons-material", -"@mui/", -"lab", -"@mui/lab", -[2,619,29], -"system", -[2,619,623], -"x-date-pickers", -[2,619,625], -"@neato/guider", -"@ng-doc/core", -[3,628,8], -"ui-kit", -[2,629,630], -[3,631,9], -[2,632,186], -"@nomicfoundation/hardhat-chai-matchers", -"@npmcli/arborist", -[3,635,8], -"map-workspaces", -[2,636,637], -"@augment-vir/common", -"node-gyp", -[2,636,640], -"run-script", -[2,636,642], -"@npmc", -"orp/marky-markdown", -[2,644,645], -"@npm", -"tuanmap/ex-vel-expedita-impedit", -[2,647,648], -[3,649,12], -"psychic-guide", -[2,650,651], -"recusandae-recusandae-nam-et", -[2,650,653], -"sed-quo-nemo-rerum", -[2,650,655], -"esse-velit-magnam", -[2,435,657], -[2,650,658], -"@nrwl/devkit", -"@nrwl/", -[2,3388,3399], -"@nrwl/tao", -"workspace", -[2,661,664], -"@nx/devkit", -"@nx/", -"esbuild", -[2,667,668], -"@nx/es", -"lint", -[2,670,671], -"@nx/e", -"xpress", -[2,673,674], -"js", -"@nx/js", -"nest", -"@nx/nest", -"nextra", -"ode", -"@nx/node", -[2,667,664], -"@oclif/command", -[3,684,9], -"nfig", -[2,685,686], -[2,685,23], -"@oclif/", -"plugin-help", -[2,689,690], -"@octokit/rest", -"@opentiny/vue", -"-render", -"less", -[2,694,695], -[2,693,696], -[3,697,14], -"theme", -[2,698,699], -"-mobile", -[2,700,701], -"@otterhttp/cookie", -[3,703,11], -"request", -[2,704,705], -[3,706,13], -"sponse", -[2,707,708], -"send", -[2,704,710], -"@pact-foundation/pact", -"@patrtorg/a-ad-expedita", -[3,713,12], -"ut-amet", -[2,714,715], -[3,713,11], -[3,373,10], -"vel-accusantium", -[2,718,719], -[2,717,720], -[3,721,15], -"natur-dolorum-ducimus", -[2,722,723], -"et-hic", -[2,473,725], -[2,717,726], -[3,713,10], -[3,227,12], -"culpa-non", -[2,729,730], -[2,728,731], -[3,732,22], -"repudiandae-consequuntur", -[2,733,734], -[3,732,15], -"quatur-voluptatum-officiis", -[2,736,737], -"ducimus-magni-quibusdam", -[2,728,739], -"enim-magni-hic", -[2,728,741], -[3,742,11], -"st-corrupti-deleniti", -[2,743,744], -"veni", -"et-tempore-maiores", -[2,746,747], -[2,743,748], -"illum-sapiente-quos", -[2,728,750], -"laborum-doloribus-voluptate", -[2,728,752], -[3,753,11], -"ibero-", -"doloribus-omnis", -[2,755,756], -[2,754,757], -[3,758,17], -[3,336,9], -"sequi", -[2,760,761], -[2,759,762], -"magn", -"am-aut-adipisci", -[2,764,765], -[2,728,766], -[3,767,12], -"iores-quidem-quo", -[2,768,769], -[3,767,11], -"olestias-molestias-ut", -[2,771,772], -"eius-unde", -[2,519,774], -[2,728,775], -[3,386,9], -"dele", -"niti-quaerat", -[2,778,779], -[2,777,780], -[2,728,781], -[3,782,11], -"orro-labore-eos", -[2,783,784], -"earum-", -"eius", -[2,786,787], -[2,416,788], -[2,728,789], -[3,790,12], -"os-quasi-ipsa", -[2,791,792], -"sapiente-eos-magnam", -[2,728,794], -[3,795,20], -"xercitationem-sit", -[2,796,797], -[3,431,9], -"nimi-reprehenderit", -[2,799,800], -[2,728,801], -"@perseid/store", -"@phosphor/widgets", -"@phun-ky/speccer", -"@polymer/polymer", -"@qooxdoo/framework", -"@quasar/extras", -"@readyplayerme/visage", -"@reduxjs/toolkit", -"@rollup/plugin-commonjs", -[3,811,15], -"node-", -"resolve", -[2,813,814], -[2,812,815], -"@sanity/tsdoc", -"@scalar/api-reference", -[3,818,8], -"fastify-api-reference", -[2,819,820], -"@serenity-js/protractor", -[3,822,13], -"webdriverio", -[2,823,824], -"@sinonjs/fake-timers", -"@storybook/addon-docs", -"@subwallet/react-ui", -"@supernovaio/sdk", -"-exporters", -[2,829,830], -[3,829,14], -"upernova-sdk", -[2,832,833], -"@sveltejs/eslint-config", -[3,835,10], -"kit", -[2,836,837], -"vite-plugin-svelte", -[2,836,839], -"@svgr/webpack", -"@swc/core", -"@swenkerorg/maiores-voluptatibus-nemo", -[3,843,13], -"odi-dolorum-provident", -[2,844,845], -[3,843,12], -"nulla-voluptates-voluptates", -[2,847,848], -"@swisspost/design-system-styles", -"@symbiotejs/symbiote", -"@synion/md-docs", -"@taktikorg/aut-distinctio-repellat", -[3,853,11], -"quo-quos", -[2,729,855], -[2,854,856], -[3,857,13], -"rporis-nihil-odit", -[2,858,859], -[3,780,11], -"i-dolorem", -[2,861,862], -[2,854,863], -[3,864,12], -"olor-", -"quibusdam", -[2,509,867], -[2,866,868], -[2,865,869], -"harum-reprehenderit-perferendis", -[2,854,871], -"illum-", -"accusamus-possimus", -[2,873,874], -[2,854,875], -[3,876,12], -"psa-", -"totam-aperiam", -[2,878,879], -[2,877,880], -"ste-", -"ex-tempore", -[2,882,883], -[2,877,884], -"taque-", -"nam-e", -"os", -"nam-eos", -[2,886,889], -[2,877,890], -[3,891,18], -"tempor", -"e-exercitationem", -[2,893,894], -[2,892,895], -"maiores-dolores-aut", -[2,854,897], -[3,898,12], -[3,772,9], -"fuga-", -[3,259,8], -[2,901,902], -[2,900,903], -[2,899,904], -"@bugsnag/react-native", -"@enact/sandstone", -"sse-animi", -[2,887,908], -[2,854,909], -[3,910,12], -"ecessitatibus-repudiandae-officia", -[2,911,912], -"isi-reprehenderit-amet", -[2,911,914], -"placeat-voluptates-dolorum", -[2,854,916], -[3,917,12], -"raesentium-dolorum-quis", -[2,918,919], -[3,920,23], -"neque-i", -"psam", -[2,922,923], -[2,921,924], -"quo-", -"reiciendis-quibusdam", -[2,926,927], -[2,854,928], -[3,653,12], -"atione-veniam", -[2,930,931], -[2,854,932], -"similique-natus-officia", -[2,854,934], -[3,935,12], -"uscipit-modi-ratione", -[2,936,937], -[3,895,8], -"@antora/logger", -"in", -"veniam-in", -[2,939,942], -[2,854,943], -"unde-", -"animi-omnis", -[2,945,946], -[2,854,947], -"nobis-blanditiis", -[2,435,949], -[2,854,950], -[3,951,12], -"oluptatem-pariatur-tenetur", -[2,952,953], -"@tanem/svg-injector", -"@tan", -"stack/react-query", -[2,956,957], -[3,958,10], -"svelte-query", -[2,959,960], -"@teamhanko/hanko-frontend-sdk", -"@testing-library/cypress", -[3,963,17], -"dom", -[2,964,965], -"jest-dom", -[2,964,967], -[3,968,22], -"native", -[2,969,970], -[2,964,89], -"user-event", -[2,964,973], -"@tinyhttp/app", -[3,975,10], -"cookie", -[2,976,977], -"-signature", -[2,978,979], -[3,978,12], -"rs", -[2,981,982], -"etag", -[2,976,984], -"forwarded", -[2,976,986], -"proxy-addr", -[2,976,988], -"req", -[2,976,990], -[3,991,12], -[2,992,591], -[3,991,11], -"outer", -[2,994,995], -[2,976,710], -"type", -[2,29611,30768], -"type-is", -[2,976,1000], -"url", -[2,976,1002], -"@tsparticles/engine", -"@twurple/ebs-helper", -"@types/estree", -"@types", -"cript-eslint/eslint-plugin", -[2,1007,1008], -[3,1009,19], -[2,1010,57], -[2,1010,594], -"@ucloud-fe/react-components", -"@udecode/plate-core", -"@uiw/react-button", -[3,1015,11], -"icon", -[2,1016,1017], -[3,1018,12], -"nput", -[2,1019,1020], -"overlay-trigger", -[2,1016,1022], -"@uiw/", -"@uiw/utils", -"@unleash/proxy", -"@uploadcare/file-uploader", -"@vitejs/plugin-legacy", -[3,1028,15], -[2,1029,89], -"@vue/eslint-config-typescript", -"@wesleytodd/openapi", -"@wuxh/dumi", -"@zitterorg/adipisci-quae-eius", -[3,1034,12], -"sper", -"natur-", -[3,386,10], -"ccaecati", -[2,1038,1039], -[2,1037,1040], -[2,1036,1041], -[2,1035,1042], -"t-esse-odit", -[2,1035,1044], -[3,1034,11], -"cum-", -"ipsum-beatae", -[2,1047,1048], -[2,1046,1049], -"dolor", -"emque-ut-omnis", -[2,1051,1052], -[2,1046,1053], -"est-sunt-quos", -[2,1046,1055], -[3,1056,12], -"um-veritatis-placeat", -[2,1057,1058], -"fluffy-waddle", -[2,1046,1060], -"glowing-barnacle", -[2,1046,1062], -"perferendis-consectetur", -[2,873,1064], -[2,1046,1065], -[3,1066,12], -"taque-n", -"isi-", -"veritatis", -[2,1069,1070], -[2,1068,1071], -[2,1067,1072], -"probable-octo", -[2,1046,1074], -"upgraded-fishstick", -[2,1046,1076], -"@zkportal/aleo-oracle-sdk", -"abort-controller", -"accepts", -"acl", -"acorn", -"arethetypeswrong", -"acorn-walk", -"action-cli", -"adm-zip", -"after", -"agenda", -"aid-guard1", -"airtap", -"ajv", -"ajv-formats", -"although-line-wall-corn", -"amqp", -"lib", -"amqplib", -"analsorhost-simple-bs", -"angular", -"-animate", -[2,1098,1099], -"angular-", -[2,1101,200], -[2,1101,29], -"ansi-colors", -"ansi-", -"escapes", -[2,1105,1106], -"regex", -"ansi-regex", -[2,1105,592], -"ansi", -"ansis", -"ant-design-vue", -"antd", -"antfu", -"anyway-south-boy-pilot", -"api-console", -"apidoc", -"-markdown", -[2,1118,1119], -"apn", -"apollo-cache-inmemory", -"apollo-c", -"lient", -[2,1123,1124], -"apollo-", -[2,1126,163], -"-http", -[2,1127,1128], -"app-root-path", -"appium-android-driver", -"apple-transportation-web3-locate", -"appl", -"icationinsights", -[2,1133,1134], -"appsync-client-node", -"archiver", -"arg", -"argparse", -"arrangement-tell-arrange", -"arra", -"y.prototype.flatmap", -[2,1141,1142], -"arrify", -"assert", -"-plus", -"assert-plus", -"assume", -"async", -"-listen", -[2,1149,1150], -"async-", -"retry", -"async-retry", -"validator", -[2,1152,1155], -"atob", -"aud", -"auto-changelog", -"auto-", -"install", -[2,1160,1161], -"auto", -"prefixer", -[2,1163,1164], -"ava", -"awesome-typescript-loader", -"aws-sdk", -"axe-core", -"axios", -"azure-storage", -"babel", -"babel-cli", -"babel-c", -"babel-core", -"babel-", -"eslint", -[2,1176,1177], -"generator", -[2,1176,1179], -[3,55,7], -"fixtures", -[2,1181,1182], -[2,1176,1183], -[3,1184,13], -"plugin-", -"test-runner", -[2,1186,1187], -[2,1185,1188], -"vue-jsx-merge-props", -[2,1185,1190], -"jest", -"babel-jest", -"loader", -[2,1176,1194], -"add-module-exports", -[2,1186,1196], -[2,1176,1197], -[3,1198,13], -"dynamic-import-node", -[2,1199,1200], -"external-helpers", -[2,1199,1202], -"import", -[2,1199,1204], -[3,1205,14], -"stanbul", -[2,1206,1207], -"lodash", -[2,1199,1209], -"module-resolver", -[2,1199,1211], -"name", -"d-asset-import", -[2,1213,1214], -[2,1199,1215], -[2,1199,80], -[3,1217,20], -"jsx", -[2,1218,1219], -[3,82,10], -"to-generator", -[2,1152,1222], -[2,1221,1223], -[2,1199,1224], -[3,1225,23], -"class", -"-properties", -[2,1227,1228], -[2,1226,1229], -"-legacy", -[2,70,1231], -[2,1226,1232], -"es2015-block-scoping", -[2,1226,1234], -[3,1235,30], -"module", -"s-commonjs", -[2,1237,1238], -[2,1236,1239], -"temp", -"late-literals", -[2,1241,1242], -[2,1236,1243], -[2,1226,77], -"react-", -"react-jsx", -[2,1226,1247], -[3,1248,29], -"remove-prop-types", -[2,1249,1250], -[3,1248,25], -[2,1252,1179], -[3,1248,24], -[2,1254,96], -"babel-p", -[2,1256,84], -"reset-", -"airbnb", -[2,1258,1259], -[2,1256,1260], -[3,1261,13], -"env", -[2,1262,1263], -[3,1264,14], -"s2015", -[2,1265,1266], -[2,1262,89], -"-app", -[2,1268,1269], -"stage-0", -[2,1262,1271], -[3,1272,19], -"1", -[2,1273,1274], -"2", -[2,1273,1276], -"3", -[2,1273,1278], -[2,1176,93], -"babel-r", -[2,1281,96], -"template", -[2,1176,1283], -"babel-t", -"raverse", -[2,1285,1286], -[2,1285,103], -"ify", -"babelify", -"babylon", -"backbone", -"baqend", -"bark-needs-visit4", -"base-64", -"base-", -"individual-comfortable-crop", -[2,1296,1297], -"base", -"@expressots/core", -"base64-js", -[2,30536,26449,2026], -"auth", -"basic-auth", -"batuta", -"bcrypt", -"-nodejs", -[2,1306,1307], -"bcryptjs", -"bearcat", -"beautify-benchmark", -"beaut", -"y-foot-compass5", -[2,1312,1313], -"beefy", -"believed-usually-greater-passage", -"benchmark", -"best-lips-shoulder", -"best-", -"valley2", -[2,1319,1320], -"between-cry-additional", -"beyond", -"bfj", -"bignumber.js", -"bindings", -"bip39", -"bizcharts", -"bl", -"blanket", -"blessed", -"-con", -"trib", -"-contrib", -[2,1331,1334], -"blockchain-am5", -[3,1336,11], -"baby", -[2,1337,1338], -[3,1339,13], -"ck1", -[2,1340,1341], -"closely", -[2,1337,1343], -"directly", -[2,1337,1345], -"egg", -[2,1337,1347], -"happily", -[2,1337,1349], -"language", -[2,1337,1351], -"own8", -[2,1337,1353], -"record", -[2,1337,1355], -"scientist", -[2,1337,1357], -"block", -"ed", -"blocked", -"bluebird", -"bn.js", -"body-parser", -"bookshelf", -"boom", -"bootstrap", -"-sass", -[2,1367,1368], -"bower", -"boxen", -"brain", -"branch-body-web3-feel", -"branch-", -"camera-web3-organization", -[2,1374,1375], -"brfs", -"broccoli-funnel", -[3,1378,9], -"merge-trees", -[2,1379,1380], -"test-", -"helper", -"test-helper", -[2,1379,1384], -"brought-tried-whether8", -"browser-sync", -"browser", -"browserify", -"-shim", -[2,1389,1390], -"slist", -[2,1388,1392], -"bs58", -"bson", -"btoa", -"buble", -"buffer", -"-equal", -[2,1398,1399], -"bufferutil", -"built-who-entire", -"built", -"in-modules", -[2,1403,1404], -"bulma", -"bump-cli", -"bundle-collapser", -"bunyan", -"busboy", -"bytebuffer", -"byte", -"bytes", -"c8", -"cac", -"cache-manager", -"call-bind", -[2,32731,158], -[2,30999,28513], -"camelcase", -"caniuse", -"-lite", -[2,1421,1422], -"canvas", -"careful-faster-dirty-matter", -"case-sensitive-paths-webpack-plugin", -"casperjs", -"caught-brain-service0", -"chai", -"-as-promised", -[2,1429,1430], -"chai-", -"passport-strategy", -[2,1432,1433], -"subset", -"chai-subset", -"chalk", -"chance", -"-able-necessary-bell", -[2,1438,1439], -"@amaui/icons-material-rounded-react", -[2,26909,26910], -"change-case", -"change", -[2,27056,28675], -"changelogen", -"chart.js", -"cheerio", -"chicken-fell-spread", -"child_process", -"child", -"-pro", -"cess-promise", -[2,1452,1453], -[2,1451,1454], -"choerodon-ui", -"chokidar", -"ci-info", -"ckeditor5", -"names", -"classnames", -"clean-css", -"clean-", -"webpack-plugin", -[2,1463,1464], -[2,29755,25720], -"r", -"clear", -"-module", -[2,1468,1469], -"cli-boxes", -"cli-", -"color", -"cli-color", -"@immobiliarelabs/backstage-plugin-gitlab-backend", -[2,819,28594], -"cli-cursor", -"spinner", -"cli-spinner", -[2,1479,591], -"cli-table", -"cli-table2", -"cli-table3", -"cli-t", -"runcate", -[2,1484,1485], -"ux", -"cli-ux", -"clipanion", -"clip", -"@busy-hour/blaze", -"clipboard", -"y", -"clipboardy", -"cliui", -"clone", -"clsx", -"clui", -"co", -"co-prompt", -"code", -[2,1491,3172], -"codecov", -"mirror", -"codemirror", -"coffee-script", -"coffee", -"script", -[2,1507,1508], -"attw", -"colorette", -"colors", -"columnify", -"comm", -"and-exists", -[2,1514,1515], -"command-", -"line-args", -[2,1517,1518], -[3,1519,13], -"usage", -[2,1520,1521], -"command", -"er", -"commander", -"@casl/ability", -"commitizen", -"commit", -"commitlint", -"@types/xast", -"tsdown", -"common-tags", -"component-emitter", -"comp", -[2,15679,26697], -"compression", -"concat-stream", -"conc", -"urrently", -[2,1538,1539], -"config", -"store", -"configstore", -"connect", -"-flash", -[2,1544,1545], -"connect-", -"history-api-fallback", -[2,1547,1548], -"mongo", -[2,1547,1550], -"redis", -[2,1547,1552], -"cons", -"globrex", -"consola", -"consol", -[3,1014,14], -"consolidate", -"content-disposition", -"content-", -[2,1561,998], -"content", -"hook", -"contenthook", -"conventional-changelog", -[2,1566,20], -[3,1567,24], -"onventionalcommits", -[2,1568,1569], -"conve", -"rt-source-map", -[2,1571,1572], -"-parser", -[2,977,1574], -"cookie-", -"session", -[2,1576,1577], -"cookie-s", -"ignature", -[2,1579,1580], -"copy-to-clipboard", -"copy-", -[2,1583,1464], -"copy", -"files", -"copyfiles", -"corcojs-qrcode", -"-logo", -[2,1588,1589], -"cordova", -"-js", -"core-js", -"cors", -"cosmiconfig", -"coveralls", -"cpy-cli", -"crawler", -"crc", -"create-hash", -"create-", -"react-class", -[2,1601,1602], -"critical", -"cron", -"croner", -"emoji-js", -"cronnor", -"cropperjs", -"cross-env", -"cross-", -"fetch", -"cross-fetch", -"spawn", -"cross-spawn", -"crypto", -"-browserify", -[2,1616,1617], -"crypto-", -"crypto-js", -"cson-parser", -"cspell", -"css", -"css-declaration-sorter", -"css-", -"functions-list", -[2,1625,1626], -"css-loader", -"minimizer-webpack-plugin", -[2,1625,1629], -"select", -"css-select", -"tree", -"css-tree", -"cssdb", -"cssesc", -"cssnano", -"cssstyle", -"csstype", -"csurf", -"csv", -"csv-generate", -"csv-", -"parse", -"csv-parse", -"stringify", -[2,1643,1646], -"csvtojson", -"cucumber", -"cuid", -"cypress", -"cz-conventional-changelog", -"d3", -"d3-array", -"d3-scale", -"d3-s", -"election", -[2,1656,1657], -"hape", -"d3-shape", -"dable-effect", -"daisyui", -"dance-you-thou", -"dargs", -"datafire", -"date", -"mercurius", -"date-fns", -"form", -"unbundle", -"format", -"dateformat", -"dayjs", -"deasync", -"debounce", -"debug", -"decamelize", -"@pinia/testing", -"decompress", -"dedent", -"dedupe", -"deep-assign", -"deep-", -"ist-ability3", -[2,1554,1684], -[2,1683,1685], -"diff", -"deep-diff", -"remeda", -"deep-eql", -"@nuxt/ui", -"input-otp", -"deep-equal", -"@assistant-ui/react", -"xtend", -"deep-extend", -"deep", -"merge", -"deepmerge", -"del", -"del-cli", -"delay", -"depcheck", -"depd", -"dependency-check", -"depth-clay-tax7", -"detect-indent", -"detect-", -"port", -"detect-port", -"did-enter-lay", -"2html", -"diff2html", -"erence-mile-pocket5", -[2,1687,1714], -"direct", -"ed-graph-typed", -[2,1716,1717], -"dirty-chai", -"discord-backend-manager", -"discord", -".js", -"discord.js", -"dist", -"ance-its-clear-rate", -[2,1724,1725], -"dmd", -"dmd-grunt-jsdoc2md", -"dnd-multi-backend", -"dnode", -"doc-detective", -"-core", -[2,1731,1732], -"docco", -"docgen", -"dockerode", -"docpad", -"docschema", -"docs", -"ify-tabs", -[2,1739,1740], -"doctoc", -"docu", -"mentation", -[2,1743,1744], -"document", -"db", -"documentdb", -"-lunr-search", -[2,467,1749], -"dom-helpers", -"dom-", -"serializer", -[2,1752,1753], -"to-image-more", -[2,1752,1755], -"dompurify", -"dot", -"dotenv", -"-exp", -[2,26024,1764,1524], -"-expand", -[2,1759,1762], -"download", -"-git-repo", -[2,1764,1765], -"doxdox", -[2,1767,20], -"doxdox-c", -[2,1769,147], -"doxdox-", -"-dox", -[2,57,1772], -[2,1771,1773], -[3,1774,14], -"jsdoc", -[2,1775,1776], -"renderer-bootstrap", -[2,1771,1778], -[3,1779,16], -"json", -[2,1780,1781], -"markdown", -[2,1780,1783], -"draft-js", -"dropzone", -"dtslint", -"dubnium", -"dumi", -[2,31436,31494], -"dumi-cm", -"duplexer", -"dw-neit-antd", -"each", -"echarts", -"eclint", -"ejs", -"elasticsearch", -"elect", -"ricity-death-web3-story", -[2,1799,1800], -[2,28004,28078], -"on", -"electron", -"-builder", -[2,1804,1805], -[3,1806,9], -"packager", -[2,1807,1808], -[3,1809,10], -"rebuilt", -[2,1810,1811], -[3,32493,21], -[2,28080,31811], -"rebuilder", -[2,1807,1815], -"element-resize-detector", -"element-", -"element-ui", -"eleventy", -"elliptic", -"email-templates", -"email", -"emailjs", -"ember-cli", -"-babel", -[2,1825,1826], -[3,1827,10], -"htmlbars", -[2,1828,1829], -"emmet", -"emotion", -"encodeurl", -"end-of-stream", -"enhanced-resolve", -"enquirer", -"ent", -"enumtype", -"envify", -"envi", -"@lobehub/chat", -"envinfo", -"enzyme", -"-adapter-react-16", -[2,1843,1844], -[3,1845,15], -[2,1846,594], -"enzyme-", -"shallow-equal", -[2,1848,1849], -"error", -"handler", -[2,1851,1852], -"es-check", -"es-value-fixtures", -"es5-ext", -"@upstash/context7-mcp", -"shim", -"es5-shim", -"es6-error", -"es6-", -"promise", -"es6-promise", -[3,1863,10], -[2,1864,1289], -"es6-shim", -"escape", -"-html", -"escape-html", -"escape-", -"string", -"-regexp", -[2,1871,1872], -[2,1870,1873], -"escodegen", -[3,67,7], -"-airbnb", -[2,1541,1877], -[2,1876,1878], -"-base", -[2,1879,1880], -[3,1881,21], -[2,1882,91], -[3,1879,14], -"google", -[2,1884,1885], -[3,1886,15], -"ulp", -[2,1887,1888], -"oclif", -[2,1884,1890], -"-typescript", -[2,1891,1892], -"prettier", -[2,1884,1894], -"app", -"react-app", -[2,1884,1897], -"semistandard", -[2,1884,1899], -[3,1900,15], -"tandard", -[2,1901,1902], -"unjs", -[2,1884,1904], -"xo", -[2,1884,1906], -"-lass", -[2,1907,1908], -"doc-", -[2,1910,1179], -[2,1876,1911], -"-resolver-typescript", -[2,1204,1913], -[2,1876,1914], -[2,1876,1194], -[3,67,8], -[2,32825,32833], -"lugin-ava", -[2,1917,1919], -[3,1920,14], -[2,1921,1172], -"compat", -[2,1921,1923], -"es5", -[2,1921,1925], -[3,1926,16], -"-comments", -[2,671,1928], -[2,1927,1929], -[3,1930,21], -"plugin", -[2,1931,1932], -"flowtype", -[2,1921,1934], -"html", -[2,1921,1936], -[2,1921,1204], -[2,1921,1192], -[3,1939,15], -"sdoc", -[2,1940,1941], -[3,1942,16], -"onc", -[2,1943,1944], -"x-a11y", -[2,1943,1946], -[2,1921,1783], -[3,1948,15], -"ocha", -[2,1949,1950], -"n", -[2,1921,1952], -[2,1953,681], -[2,1921,1894], -[3,1955,16], -"omise", -[2,1956,1957], -[2,1921,89], -"-hooks", -[2,1959,1960], -[3,1959,16], -"gexp", -[2,1962,1963], -"security", -[2,1921,1965], -[3,1966,15], -"onarjs", -[2,1967,1968], -[2,1967,1902], -"velte", -[2,1967,1971], -"test", -"ing-library", -[2,1973,1974], -[2,1921,1975], -[3,1976,15], -[2,1977,1941], -[2,26374,26377], -[2,30307,5592], -"unicorn", -[2,1921,1981], -"vite", -"vitest", -[2,1921,1984], -[3,1985,15], -"ue", -[2,1986,1987], -"remo", -"te-tester", -[2,1989,1990], -[2,1876,1991], -"scope", -[2,1876,1993], -"visitor-keys", -[2,1876,1995], -"rc", -"eslintrc", -"esm", -"espree", -"@architect/asap", -"ima", -"esprima", -"estraverse", -"estr", -"ee-walker", -[2,2005,2006], -"ethereumjs-tx", -[3,2008,11], -[2,2009,614], -"evalmd", -"event-stream", -"event", -"emitter2", -[2,2013,2014], -[3,2015,12], -[2,2016,1278], -"events", -"excellent-difficult-good", -"execa", -"exit", -"expect", -"-type", -"expect-type", -"expect.js", -"express", -"-adexe", -[2,2026,2027], -[3,2028,9], -"utodoc", -[2,2029,2030], -"express-", -[2,2032,1179], -"handle", -"canvaskit-wasm", -"handlebars", -[2,2032,2036], -"jwt", -"express-jwt", -[2,2032,1577], -"tools", -[2,2032,2041], -[3,2042,9], -"yped-rpc", -[2,2043,2044], -[2,2032,1155], -"zod-api", -[2,2032,2047], -"@crxjs/vite-plugin", -[2,32904,37123], -"extend", -"-shallow", -[2,2051,2052], -"extract-text-webpack-plugin", -"extract-", -"zip", -"extract-zip", -"facing-cook", -"fair-tower-web3-store", -"faker", -"fancy-log", -"fast", -"-check", -"fast-check", -[2,32904,13392], -"@antora/cli", -"fast-csv", -"fast-", -[2,2068,1693], -"glob", -"fast-glob", -"plist", -"fast-plist", -"xml-parser", -[2,2068,2074], -"click", -"fastclick", -"fastify", -"father", -"faucet", -"fbjs", -"fe-pilot", -"feature-rising-small7", -"femo", -"-mock", -"fetch-mock", -"fibers", -"figlet", -"figures", -"file", -"-loader", -"file-loader", -"file-", -[2,29611,7436,26391], -"file-saver", -"file-type", -"planck", -"filesize", -"finalhandler", -"find", -"-cache-dir", -[2,2100,2101], -"find-", -"up", -"find-up", -"syncpack", -"findup-sync", -"firan-logging", -"firebase", -"-admin", -[2,2109,2110], -[3,2111,9], -[2,2112,2041], -"fixpack", -[2,2120,1145], -"fixturify", -"flat", -"pak-bundler", -[2,2117,2118], -[3,639,13], -[2,2125,23], -"flatpickr", -"flightplan", -"flow", -[3,639,15], -"flow-bin", -"@date-vir/duration", -"flowbite", -"fluent-ffmpeg", -"flux", -"follow-redirects", -"font-awesome", -"for-each", -"forever", -"fork-ts-checker-webpack-plugin", -"-alt", -[2,2135,2136], -"-data", -"form-data", -"nolyfill", -"formidable", -[2,13402,31197], -"k", -"formik", -"fresh", -"-dangerous", -[2,2145,2146], -"friendly-errors-webpack-plugin", -"front-matter", -"fs", -"fs-extra", -"fs-jetpack", -"fs-promise", -"fsevents", -"fstream", -"ftp", -[3,1626,10], -"have-names", -[2,2157,2158], -"fur-race-web3-pale", -"fuse.js", -"futen", -"fuzzy", -"gaze", -"gc-signals", -"-angular", -[2,1179,2166], -[3,2167,10], -"gulp-angular", -[2,2168,2169], -"nitro", -[2,2168,2171], -"gener", -"ic-pool", -[2,2173,2174], -"gensequence", -"gentle-party-other", -"geolib", -"get-package-type", -[2,2181,668], -[3,15376,16], -"get-port", -"get-", -"stdin", -"get-stdin", -"@c15t/backend", -"ream", -"get-stream", -"execute-in-browser", -"tsconfig", -[2,2183,2190], -"getmac", -"gh-pages", -"ghooks", -"github", -"-buttons", -[2,2195,2196], -[2,11941,2201], -"-parent", -"glob-parent", -"smart-text-reporter", -"global", -"globals", -"by", -"globby", -"gm", -"gmll", -"-spreadsheet", -[2,1885,2208], -"apis", -"googleapis", -"got", -"government-letter-web3-till", -"govuk-frontend", -"graceful-fs", -"gradually-current-chief", -"graph-these", -"graph", -[2,25849,25854], -"graphql", -"leaflet-gesture-handling", -"graphql-tag", -[3,2222,9], -"ools", -[2,2223,2224], -"gray-matter", -"grpc", -"grunt", -"-templates", -[2,2166,2229], -[2,2228,2230], -"grunt-a", -"uto-release", -[2,2232,2233], -"grunt-", -[2,2235,1389], -"grunt-b", -"animejs", -"grunt-bump", -"grunt-cli", -"grunt-c", -"oncurrent", -[2,2241,2242], -[3,2243,9], -[2,26107,26938], -"trib-clean", -[2,2244,2246], -[3,2247,15], -"ompass", -[2,2248,2249], -[3,2250,16], -"ncat", -[2,2251,2252], -[3,2253,17], -"nect", -[2,2254,2255], -"py", -[2,2251,2257], -"sslint", -[2,2248,2259], -[3,2260,17], -"min", -[2,2261,2262], -[3,2247,14], -"htmlmin", -[2,2264,2265], -"imagemin", -[2,2264,2267], -[3,2268,15], -"nternal", -[2,2269,2270], -"jshint", -[2,2264,2272], -[2,2264,695], -"unit", -"nodeunit", -[2,2264,2276], -"sass", -[2,2264,2278], -"uglify", -[2,2264,2280], -"watch", -[2,2264,2282], -"ventional-changelog", -[2,2244,2284], -[3,2285,19], -"github-", -"releaser", -[2,2287,2288], -[2,2286,2289], -[2,2235,1177], -"jscs", -"grunt-jscs", -"grunt-js", -"doc", -"grunt-jsdoc", -"karma", -"grunt-karma", -"mocha-test", -[2,2235,2299], -"newer", -"grunt-newer", -"grunt-n", -"otify", -[2,2303,2304], -"pm", -"grunt-npm", -"grunt-sass", -"grunt-sa", -"ucelabs", -[2,2309,2310], -"grunt-s", -"augment", -"grunt-shell", -"imple-mocha", -[2,2312,2315], -"pritesmith", -[2,2312,2317], -"usemin", -[2,2235,2319], -"gts", -"guarapi", -"gulp", -[3,2229,9], -"cache", -[2,2324,2325], -[2,2169,2326], -"gulp-a", -"tom-electron", -[2,2328,2329], -"utoprefixer", -[2,2328,2331], -"wspublish", -[2,2328,2333], -"zure-storage", -[2,2328,2335], -"gulp-", -"gulp-babel", -"gulp-b", -"vir", -"gulp-bom", -[1,2343,2349], -[0,4796,4797,4798,4799], -"gulp-bower", -"rowserify", -[2,2339,2345], -"uffer", -"gulp-buffer", -[0,2358,2380,2388,2399], -"augment-vir", -"gulp-bump", -"gulp-cache", -"d", -"gulp-cached", -"gulp-c", -"hanged", -[2,2355,2356], -[0,1673,4484,4809,1461,3744,4804,1282,4805,4806,3028,3911,4812,2609,3849,4023,4808], -"gulp-clean", -"-css", -[2,2359,2360], -"@flmngr/flmngr-react", -"gulp-coffee", -"gulp-co", -"mpass", -[2,2364,2365], -"gulp-concat", -[2,2367,2360], -"gulp-con", -"flict", -[2,2369,2370], -[2,2369,2255], -"gulp-copy", -"sscomb", -[2,2355,2374], -"gulp-css", -[2,2376,671], -"nano", -[2,2376,2378], -[0,1499,1797,3135,1429,2070,695,2278,1983,1437,2675,4868,2297,2899,89,3875,4193,4747,1843,1177,1209,3220,3984,4135,4487,4568,1448,1651,668,3561,4474,2924,1169,1457,1859,2151,2720,3183,3416,1894,4952,4473,4955,4860,2025,4919,3758,4929,3817,3824,4939,4320,4469,4873,1175,1628,4937,4941,91,53,4856,4865,4874,2900,2990,3105,4925,3876,4869,4880,4892,1165,1178,1195,3008,3090,3564,3696,3884,4307,4705,692,4855,4863,4870,2925,4931,4891,1257,3613,3618,4940,4330,192,4864,4866,4907,3816,4934,606,4883,4890,1264,4909,4917,3734,3885,4824,4831,4852,4859,4923,4835,4884,1268,3107,4681,4840,4875,1959,1978,2923,3904,4820,4827,1030,4895,1272,4913,1938,4817,4842,1208,4916,2881,1566,32965,1895,1947,1948,2921,4815,4872,4887,1845,3810,3820,4822,4851,4912,4922,3591,4829,1011,3584,4889,4927,2054,4949,4849,4946,33009,4882,1255,1198,4897,4879,1009,1426,4899,4903,61,1233,1570,4906], -"gulp-csso", -"data", -"gulp-data", -"gulp-eslint", -"include", -[2,2093,2385], -[2,2337,2386], -[0,4957,4959,3286,4627,4960,89,4962,4963,4964,4967], -"ter", -"gulp-filter", -"gulp-f", -"latmap", -[2,2391,2392], -[3,2393,9], -"ten", -[2,2394,2395], -"ormat-md", -[2,2391,2397], -1772064000000, -"gulp-ftp", -[2,2337,2193], -[1,2343,2418], -"it", -"gulp-git", -"gulp-gzip", -[2,2337,2036], -"gulp-h", -"eader", -"gulp-header", -"tml-replace", -[2,2407,2410], -[3,2411,9], -[2,2412,2262], -"font", -"iconfont", -[2,2337,2415], -"gulp-i", -[0,2431,0,2442,2443], -"gulp-if", -"gnore", -"gulp-ignore", -"mage-resize", -[2,2417,2422], -[3,2423,10], -[2,2424,2262], -"nclude", -[2,2417,2426], -"gulp-in", -"ject", -"gulp-inject", -[0,1091,4094,3530,4227,1092,2858], -"line-css", -[2,2428,2432], -"stall", -[2,2428,2434], -[2,2417,1207], -"jade", -"gulp-jade", -"gulp-ja", -"smine", -[2,2439,2440], -[0,4973,4976,1098,364,4977,4978], -1771804800000, -"gulp-jscs", -"gulp-js", -"hint", -"gulp-jshint", -"on-editor", -[2,2445,2448], -"gulp-less", -"gulp-l", -"ivereload", -[2,2451,2452], -"oad-plugins", -[2,2451,2454], -"mini", -[1,2343,2470], -"minify-css", -[2,2337,2458], -[3,2459,12], -[2,2460,1936], -"gulp-m", -"gulp-mocha", -"gulp-newer", -"gulp-n", -"g-annotate", -[2,2465,2466], -"odemon", -[2,2465,2468], -[0,2471,0,2483,34352], -[0,3467,4094,2858,3090,4], -"gulp-notify", -"extra", -"extras", -[2,1186,2474], -[2,2337,2475], -"gulp-plu", -"mber", -[2,2477,2478], -"gulp-p", -"ostcss", -[2,2480,2481], -[0,4973,4976,1098,4986,4988,4977,4989,6,4978,1283,4991], -"ocess", -"reprocess", -[2,2480,2485], -1770508800000, -[1,2343,2497], -"gulp-prompt", -[2,2337,89], -"gulp-re", -"mote-src", -[2,2491,2492], -"gulp-rename", -"place", -[2,2491,2495], -[0,2513,0,2514,2523], -"gulp-rev", -"-replace", -[2,2498,2499], -"gulp-r", -"uby-sass", -[2,2501,2502], -"gulp-sass", -"gulp-s", -"gulp-sftp", -"gulp-shell", -"gulp-size", -"ourcemaps", -[2,2505,2509], -"trip-debug", -[2,2505,2511], -[0,4484], -[0], -"gulp-stylus", -"vg-sprite", -[2,2505,2516], -"gulp-svg", -"gulp-svgmin", -[2,2518,1542], -[2,2337,1283], -"gulp-t", -1771113600000, -"gulp-tsb", -"gulp-ts", -[2,2525,671], -"cript", -"ypescript", -[2,2522,2528], -"gulp-uglify", -[1,2343,2532], -[0,2534,0,2535,2537], -"gulp-uncss", -[0,4484,3493], -[0,1098,12,4627,5001,837], -"gulp-usemin", -1771718400000, -"ref", -"gulp-useref", -[1,2343,2561], -"gulp-util", -"vinyl-zip", -[2,2337,2542], -"gulp-watch", -"gulp-w", -"ebpack", -[2,2545,2546], -"gulp-web", -[2,2548,36], -"gulp-zip", -".spritesmith", -[2,2323,2551], -"gzip-size", -"hallmark", -"hammerjs", -"hapi", -[2,5323,33498], -[2,5340,6374], -"happy-dom", -"happy-", -[0,2513,0,2514,2537], -"happy-meant", -"hard-cool-rhythm-continued", -"has-flag", -"has-", -"parts-ice-fact", -[2,2565,2566], -"symbols", -"has-symbols", -"hash-sum", -"hasown", -"hast-util-raw", -[3,2572,10], -"sanitize", -[2,2573,2574], -[3,2575,11], -[2,2576,1799], -"to-estree", -[2,2573,2578], -[3,2579,13], -[2,2580,1936], -"jsx-runtime", -[2,2580,2582], -[2,2580,1871], -"text", -[2,2580,2585], -"hast", -"hastscript", -"hay-against-any-hurry", -"hbs", -"he", -"heapdump", -"helmet", -"heroicons", -"hexlet-pairs", -"hexo", -"highland", -"highl", -"ight.js", -[2,2598,2599], -"hiredis", -"history", -"history-", -"brass-sound", -[2,2603,2604], -"hit-running-special8", -"hoek", -"hogan.js", -"hoist-non-react-statics", -"homebridge", -"hono", -"hope-slight-walk1", -"hosted-git-info", -"how-to-npm", -"-dom-parser", -[2,1936,2615], -"html-", -"attributes", -[2,1818,2618], -[2,2617,2619], -"html-e", -"ncoding-sniffer", -[2,2621,2622], -"html-en", -"tities", -[2,2624,2625], -"scaper", -[2,2621,2627], -"html-loader", -[1,2343,2647], -"ier", -"minifier", -[2,2617,2632], -"-terser", -[2,2633,2634], -"pdf", -"html-pdf", -[2,1246,57], -[2,2617,2638], -"tags", -"html-tags", -"html-t", -"o-image", -[2,2642,2643], -"html-to-", -[2,2645,2585], -[0,2648,2667,2684,2537], -[0,4484,4747,4135,1457,53,3951,1573,5012], -"validate", -[2,2617,2649], -[2,2617,1464], -"htmlnano", -"parser2", -"htmlparser2", -"http-", -"errors", -"http-errors", -"proxy", -"http-proxy", -"-agent", -[2,2659,2660], -[3,2661,11], -"middleware", -[2,2662,2663], -[2,2655,36], -"http-s", -[0,91], -"http-status", -"-codes", -[2,2668,2669], -"https", -"xy-agent", -[2,1452,2672], -[2,2671,2673], -"husky", -"hyperquest", -"hyphenate-style-name", -"i", -"i18n", -"ext", -"i18next", -"-gridly-backend", -[2,2681,2682], -[0,1098,4643], -"iconv-lite", -"identity-obj-proxy", -"ignore", -[1,2343,2690], -"image-size", -[0,2691,0,2514,2443], -[0,4484,26364], -"imagemagick", -"-pngquant", -[2,2267,2693], -"imap", -"immer", -"immutability-helper", -[1,2343,2705], -"le", -"immutable", -"import-", -[2,2701,2145], -"local", -[2,2701,2703], -[0,2513,0,2736,34352], -"ess", -"impress", -"in-publish", -"indent-string", -"inert", -"inferno", -"inflection", -"inherits", -"ini", -"iniparser", -"ink", -"-style-parser", -[2,134,2717], -"innosetup-compiler", -"inquirer", -"-autocomplete-prompt", -[2,2720,2721], -"inside-throw", -"insta", -"gram-node", -[2,2724,2725], -"interpret", -"intl", -"-tel-input", -[2,2728,2729], -"invariant", -"inversify", -"ionic", -[2,34017,34020], -"ionicons", -[0,1098,29,5027,4963], -[1,2343,2773], -"ioredis", -"ip", -"irc", -"is", -"is-ci", -"is-glob", -"is-installed-globally", -"is-plain-obj", -"ect", -[2,2745,2746], -"is-p", -"otential-custom-element-name", -[2,2748,2749], -"romise", -"is-promise", -"is-stream", -"is-url", -"is-wsl", -"isarray", -"isobject", -"isomorphic-fetch", -"istanbul", -"itwcw-package-analytics", -"iview", -"jackspeak", -"jake", -"jarallax", -"jasmine", -[2,2765,1732], -"jasmine-", -[2,2767,202], -"jest-", -"canvas-mock", -[2,2769,2770], -"jest-c", -[0,2513,0,2514,2487], -"jest-cli", -[1,2343,2776], -[0,2789,0,2514,2537], -"jest-diff", -"ronment-jsdom", -[2,1840,2778], -[2,2769,2779], -"-fourteen", -[2,2780,2781], -[3,2780,17], -[2,2783,202], -"jest-e", -"xtended", -[2,2785,2786], -"html-re", -[0,5038,4484], -"porters", -[2,2788,2790], -[2,2769,2791], -"junit", -"jest-junit", -"pnp-resolver", -[2,2769,2795], -[2,2769,814], -"jest-util", -[1,2343,2803], -"-typeahead", -[2,2282,2800], -[2,2769,2801], -[0,2513,2804,2815,2399], -[0,2734], -"jest-worker", -"jimp", -"jiti", -"jodit", -"-react", -"jodit-react", -"johnny-five", -"joi", -"jotai", -"jquery", -[0,1098,38], -"jquery-ui", -"js-base64", -[1,2343,2819], -[0,2830,2836,2837,2523], -"js-beautify", -"js-cookie", -"js-yaml", -"jsarch", -"jscpd", -"-api", -"jsdoc-api", -"jsdoc-", -"to-markdown", -[2,2827,2828], -[0,1673,3789,1461,1282,5060,5071,6476,5057,5059,5062,5065,5049,5050,5069,5047], -"m", -"jsdom", -"-no-contextify", -[2,2832,2833], -"jsesc", -[0,1114,2070,1192,89,1177,4487,5098,4468,3213,1610,5102,3824,1193,5100,3697,3846,91,53,5087,2990,5125,4880,1178,1540,3857,97,5123,5076,5090,5091,5094,5108,5113,3904,5106,5121,5097,5084,6498,3810,5115,5082,1011,971,5110,5085,5075,5118,5103,5079], -[0,5127,4964,89,5128,4627,4963,181,5130,4967,5131,5133], -"-stylish", -[2,2272,2838], -[1,2343,2868], -"json-2-csv", -"json-", -"json-loader", -[3,6,6], -"json-schema", -"json-s", -"erver", -"json-server", -"-stringify", -[2,176,2849], -[2,2846,2850], -"json-st", -"ringify-safe", -[2,2852,2853], -"5", -"json5", -"c-parser", -[2,1781,2857], -"jsonfile", -"jsonschema", -"JSONStream", -"webtoken", -[2,1781,2862], -"jspm", -"jstates", -"jszip", -"jwt-decode", -[0,2884,2901,2938,2537], -"simple", -"jwt-simple", -[2,2297,1617], -[3,2871,13], -"stack", -"-launcher", -[2,2873,2874], -[2,2872,2875], -"karma-", -"karma-chai", -"karma-ch", -"rome-launcher", -[2,2879,2880], -"karma-c", -"over", -[0,3021], -"overage", -[2,2882,2885], -"browsers", -[2,1708,2887], -[2,2877,2888], -"edge-launcher", -[2,2877,2890], -"fire", -"fox-launcher", -[2,2892,2893], -[2,2877,2894], -"ie-launcher", -[2,2877,2896], -[2,2877,2765], -"mocha", -"karma-mocha", -[0,1114,89,2079,3824,91,4880,5139,4883], -"orter", -"-reporter", -[2,2900,2903], -"phantomjs-launcher", -[2,2877,2905], -"qunit", -"karma-qunit", -"rollup-preprocessor", -[2,2877,2909], -"safari-launcher", -[2,2877,2911], -"karma-sa", -"uce-launcher", -[2,2913,2914], -"karma-s", -"inon", -"karma-sinon", -"ourcemap", -[2,2919,2091], -[2,2916,2920], -"pec-reporter", -[2,2916,2922], -"webpack", -[2,2877,2924], -"keycode", -"keypress", -"keyv", -"kleur", -"knex", -"knip", -"known-css-properties", -"knox", -"koa", -"koa-body", -[2,2935,57], -"koa-", -[0,5127,4964,4653,1114,4627,4963,5130,4967,89,5128,181], -[1,2343,2974], -"compose", -"koa-compose", -"logger", -"koa-logger", -"mount", -"koa-mount", -[2,2937,38], -"static", -"koa-static", -"kue", -"label-lungs-court4", -"-perfe", -"ctly-blow-series", -[2,2951,2952], -[2,1351,2953], -"late-", -"dress-mail5", -[2,2955,2956], -"late", -"st-version", -[2,2958,2959], -"lazy.js", -"lead-alike-web3-applied", -"leaflet", -"left-pad", -"left", -"pad", -"leftpad", -"lerna", -[2,695,2091], -"level", -"down", -"leveldown", -"levelup", -[0,2985,2988,3011,2523], -"leven", -"libnpmdiff", -"libnpm", -"exec", -"libnpmexec", -"fund", -"libnpmfund", -"libphonenumber-js", -"liftoff", -"lilconfig", -[0,1461,5145,5146], -"linkifyjs", -"lint-", -[0,1114,2070,89,2079,3824,91,4880,4883], -"staged", -"lint-staged", -"listr", -"listr2", -"lit-element", -"lite", -"-server", -"lite-server", -"live-server", -"live", -"reload", -"livereload", -"load", -"-grunt-config", -[2,3001,3002], -[3,3003,11], -"tasks", -[2,3004,3005], -"-utils", -[2,1194,3007], -"-web-server", -[2,2703,3009], -[0,5127,4964,4653,1114,4627,4963,5130,4967,89,5128,181,1017], -"localforage", -"tunnel", -"localtunnel", -"lock", -[1,2343,3017], -[0,3075,3100,3104,2537], -"file-lint", -[2,3015,3018], -"-es", -"lodash-es", -".assign", -[2,1209,3022], -"lodash.", -[2,3024,1420], -"lodash.c", -"lonedeep", -[2,3026,3027], -[2,3024,1675], -[3,3029,9], -"faults", -[2,3030,3031], -"flatten", -[2,3024,3033], -"lodash.f", -"oreach", -[2,3035,3036], -"get", -"lodash.get", -"isempty", -[2,3024,3040], -[3,3041,10], -"qual", -[2,3042,3043], -[3,3041,9], -"function", -[2,3045,3046], -"object", -[2,3045,3048], -"plainobject", -[2,3045,3050], -[2,3045,1871], -"map", -"lodash.map", -"lodash.m", -"emoize", -[2,3055,3056], -[3,3057,9], -"rge", -[2,3058,3059], -"omit", -"lodash.omit", -"pick", -"lodash.pick", -"set", -"lodash.set", -[2,3024,1283], -"lodash.t", -"hrottle", -[2,3068,3069], -"uniq", -"lodash.uniq", -"log", -"log-symbols", -[0,5154,5152], -"update", -"log-update", -"log4js", -"loglevel", -"long", -"loopback", -"loose-envify", -"lowdb", -"lru-cache", -"lucide", -"luck-rubber-do", -"lwip", -"lws", -"madwizard", -"magic-string", -"magmastream", -"main-bower-files", -"make-dir", -"make-", -"make-node", -"mammoth", -"manifest", -"mantine-contextmenu", -"many-favorite6", -[0,4484,3709,4508,4355,838,5160,5159,4514,5162,840], -"stream", -"map-stream", -"mapboxgl-legend", -[0,5165,5166,2038,5167,3424,5168,5170,3709], -"markdown-it", -"-anchor", -[2,3105,3106], -[3,3107,12], -"cont", -[1,2343,3168], -"container", -[2,3108,3111], -"emoji", -[2,3108,3113], -[3,3105,9], -[2,3115,2636], -[2,3115,176], -[3,3117,10], -"o-jsx", -[2,3118,3119], -[3,3120,11], -"c", -[2,3121,3122], -[2,1783,671], -[2,3124,20], -"mark", -"marked", -"y-markdown", -[2,3126,3128], -"matcha", -[3,558,9], -[2,3131,181], -"mathjs", -"matter-view-web3-fence", -"md5", -"md5-file", -"mdast-util-from-markdown", -[3,3137,11], -"to-hast", -[2,3138,3139], -"mdn-data", -"mdxts", -"memcached", -"memfs", -"memoize-one", -"memo", -"ry-cache", -[2,3146,3147], -"memory-", -"memory-fs", -"memory", -[2,3151,3101], -"memwatch", -"menta", -"l-oxygen-dozen", -[2,3154,3155], -"meow", -"merge-", -[2,3158,3101], -"metalsmith", -"meteor", -"method-override", -"method", -"methods", -"microbundle", -"micro", -"micromark", -[0,3169,3179,3182,2537], -[0,2070,4207,3093,1525,1573,5175,5180], -"micromatch", -"mime", -"-types", -"mime-types", -"min-heap-typed", -"-extract-plugin", -[2,2360,3175], -[2,2456,3176], -"minify", -[0,4135,53,4865,5185,5191], -"atch", -"minimatch", -[0,5193,1172,5194,5197,5198,1173,4643], -"minimist", -"-jet-printed-supper", -[2,1504,3184], -"missing-sport-living", -"mkcert", -"mkdirp", -"mlly", -"mobx", -"mobx-react", -"mocha-", -"head", -"less-", -"chrome", -"less-chrome", -[2,3193,3196], -[2,3192,3197], -[2,2793,2903], -[2,3192,3199], -"lcov-reporter", -[2,3192,3201], -"mock-fs", -"mock-", -"property", -[2,3204,3205], -[1,2343,3208], -[0,3214,3217,2514,2537], -"require", -[2,3204,3209], -"mock-stdin", -"mock", -"mockdate", -[0,9673,3527,5279], -"mockery", -"mockjs", -[0,5282,4294,5210], -[2,3224,3225], -"moleculer", -"moment", -"-timezone", -[2,3220,3221], -"monaco-yaml", -[3,5838,28], -"xp-modifiers", -"monads-io", -"ress", -"-express", -[2,1550,3228], -"mongodb", -"ose", -"mongoose", -"monitor", -"-dashboard", -[2,3233,3234], -"monk", -"morgan", -"motor-positive-spirit", -"move-wolf-throughout", -"movie-obtain-tail-prepare", -"mqtt", -"ms", -"mssql", -"msw", -"mud-slowly-five3", -"multer", -[1,2343,3248], -[0,3252,3269,3272,2537], -"multimatch", -"multi", -"part", -[0,1676,2856,4135,5233,104,58,5228,5230,101,5216,51,1573,31292,5226,5222], -"multiparty", -"multip", -"le-cucumber-html-reporter", -[2,3254,3255], -"mustache", -"muuri", -"mysql", -"mysql2", -"mz", -"nails-wild-interest-garden", -"nan", -"nano-css", -"id", -"nanoid", -"-keymap", -[2,970,3267], -[0,4494,4039,4474,5245,5254,5251,87,92,5235,5180,5244,5240,5241,5191], -"nativefier", -[2,970,1508], -[0,5193,1172,5256,5257,5194,5258,5259,5260,5197,5198,5261,1175,4643], -"natural", -"nconf", -"ncp", -"near-social-bridge", -"nedb", -"needle", -[1,2343,3280], -[0,0,3293,2514,2523], -"-commander", -[2,678,3281], -"newman", -"newrelic", -"next-auth", -"next", -"nextjs", -"ng-mocks", -"ng-zorro-antd", -"ngrok", -"nib", -"nightmare", -[0,53], -"nightwatch", -"nine-yes-merely6", -"nise", -"nock", -"addon-api", -[2,813,3298], -"node-cache", -"node-c", -"ontainerpattern", -[2,3301,3302], -"dev", -"node-dev", -"node-d", -[1,2343,3311], -"node-dir", -"node-emoji", -"node-fetch", -[0,3328,3338,3398,2523], -"orge", -"node-forge", -"node-g", -"toolchain", -"node-gcm", -"eocoder", -[2,3314,3317], -"JSONC", -"arser", -"html-parser", -[2,813,3321], -"inspector", -[2,813,3323], -"JSX", -"mocks-http", -[2,813,3326], -[0,104], -"notifier", -[2,813,3329], -"oauth2-server", -[2,813,3331], -"powertools", -[2,813,3333], -"node-p", -"re-gyp", -[2,3335,3336], -[0,5282,51,5274,5276,5279,5273], -"node-pty", -"node-re", -"node-red", -"node-sass", -"node-s", -"chedule", -[2,3343,3344], -"tatic", -"node-static", -"uuid", -"node-uuid", -"node-watch", -"node-w", -"indows", -[2,3351,3352], -"xlsx", -"node-xlsx", -".extend", -[2,202,3356], -"git", -"nodegit", -"mailer", -"nodemailer", -"TSX", -"nodemon", -"webkit", -"nodewebkit", -"nolangjs", -"nomnom", -"nopt", -"normalize-path", -[3,3369,10], -[2,3370,1002], -"wheel", -[2,3370,3372], -[3,3369,9], -".css", -[2,3374,3375], -"np", -"npm", -"npm-check", -"-updates", -[2,3379,3380], -"npm-", -"package", -"GraphQL", -"package-arg", -[2,3382,3385], -[3,3386,12], -[3,4786,24], -"json-lint", -[2,3387,3389], -"npm-pack", -"list", -[2,3391,3392], -"regist", -"ry-fetch", -[2,3394,3395], -[2,3382,3396], -[0,1172,5284,57,5285,5286,58], -"mc-scripts", -"npm-run-all", -[2,3400,1276], -"npm-run-", -"path", -[2,3402,3403], -[2,556,11398,3902,591], -"npm-to-yarn", -"windows-upgrade", -[2,3382,3407], -"npmcli", -"npmignore", -"npmlog", -"nprogress", -"nsp", -"nuke-cli", -"numeral", -"nunjucks", -"nvm", -"nvmrc", -"nwsapi", -"nx", -"nyc", -"oas", -"oas-normalize", -"oauth", -[3,77,7], -"assign", -[2,3425,3426], -"hash", -"object-hash", -"inspect", -[2,3425,3430], -"keys", -"object-keys", -"object-path", -[2,3048,3022], -"object.", -"entries", -[2,3436,3437], -"observe-food-motion-hidden", -"on-finished", -"once", -"onchange", -"one-how-hand", -"onoff", -"open", -"open-cli", -"api-c", -[1,2343,3454], -"lient-axios", -[2,3447,3449], -[2,3445,3450], -"openapi", -[2,3452,1712], -[0,3457,3464,3465,2537], -"opencv", -"opener", -[0,5292,56], -"openweather", -"opn", -"optimist", -"optimi", -"ze-css-assets-webpack-plugin", -[2,3461,3462], -[0,53,5295], -[0,5297], -"optionator", -"ora", -"orchestrator", -"orm", -"osenv", -"outdent", -"outline-slowly", -"overlay", -"scrollbars", -[2,3473,3474], -"ovsx", -"p-event", -"p-map", -"p-queue", -"p-timeout", -"p23", -"pa11y", -"pacote", -"pageres", -"paintor", -"pako", -"para", -"para-cli", -"ent-js", -[2,3488,3489], -"llelshell", -[2,3487,3491], -"parse5", -"parseurl", -"passport", -[3,1433,9], -"facebook", -[2,3496,3497], -[2,3496,2703], -[2,3496,3424], -[2,3500,1276], -[2,3403,1617], -"path-", -"exists", -"path-exists", -"is-absolute", -[2,3503,3506], -"to-regexp", -[2,3503,3508], -"pathe", -"paypal-server-api", -"pdfjs", -"pdfkit", -"perf", -[1,2343,3516], -[0,3538,3546,3581,2523], -"ormance-now", -[2,3514,3517], -"pg", -"phantom", -[3,2905,9], -[3,2905,10], -"prebuilt", -[2,3522,3523], -"phonegap", -"pi-gpio", -"picocolors", -"pico", -"match", -"picomatch", -"pie-case-nor-great", -"pify", -"pino", -"pinst", -"pitch-somehow-earth-brave", -"pixelmatch", -"pkg-dir", -[0,5302,1676,2929,5303,4135,2822,4213,1457,18089,2098,5305,3183,3416,3692,5306,3530,27921,2226,3105,5312,5314,5319,27482,5320,5321,27512,5323,5328,27513,27514,2557,5332,2558], -"pkg-up", -"pkginfo", -"playwright", -"plugin-e", -"rror", -[2,3542,3543], -"plur", -[0,1414,1166,4494,188,4763,2278,89,1177,3127,3721,4039,2203,1894,3824,442,91,5307,4874,29549,27521,19181,5944,9245,30864,3114,27517,27519,5337,25652,1895,27518,30114,5344], -"pluralize", -"pm2", -"pngjs", -"pnp-", -[2,3550,1464], -"pnpm", -"pnpx", -"poe-api-manager", -"polished", -"poli", -"tical-plan-careful", -[2,3556,3557], -"popper.js", -"portfinder", -"postcss", -[3,214,8], -"calc", -[2,3562,3563], -[3,3564,9], -"postcss-cli", -"al-notation", -[2,3046,3567], -[2,866,3568], -[2,3565,3569], -[3,3570,13], -[2,3571,2262], -[3,3570,10], -"nvert-values", -[2,3573,3574], -"ssnext", -[2,3565,3576], -"ustom-media", -[2,3565,3578], -[3,3579,15], -[0,5347,5348,5349,1745,5351,5352,5353,5354,1179,5130,1820,5355,1936,1783,5356,3416], -"ies", -"properties", -[2,3580,3583], -[3,219,8], -"selectors", -[2,3580,3586], -"disc", -"ard-comments", -[2,3588,3589], -[2,3562,3590], -[3,3591,16], -[1,2343,3594], -[0,0,3596,3601,2537], -"es", -[0,5517,11976,811,816,10615,10817,5366,5364,5087,4874,1317,1413,1192,4042,4057,4468,4484,91], -"duplicates", -[2,3592,3597], -"empty", -[2,3592,3599], -[0,1623,57,5374,5376,6892,91,31130,31139,31177,3178,1671,7121], -"overridden", -[2,3592,3602], -"flexbugs-fixes", -[2,3562,3604], -[2,3562,1936], -[3,214,9], -"mage-", -"set-function", -[2,3608,3609], -[2,3607,3610], -[3,3611,10], -[2,3612,1709], -"load-", -"load-config", -[2,3562,3615], -[3,3616,12], -[2,3617,1524], -"hand", -"longhand", -[2,3158,3620], -[2,3562,3621], -[3,3622,14], -"rules", -[2,3623,3624], -[3,3622,9], -"inify-font-values", -[2,3626,3627], -[3,3628,15], -"grad", -[1,2343,3645], -"gradients", -[2,3629,3632], -"params", -[2,3629,3634], -[2,3629,3586], -"odules-local-by-default", -[2,3626,3637], -"nested", -[2,3562,3639], -[3,3640,12], -"ing", -[2,3641,3642], -[3,3640,9], -[0,3654,3655,3690,2537], -"ormalize", -[2,3644,3646], -"-charset", -[2,3647,3648], -[3,3649,18], -"positions", -[2,3650,3651], -[2,3650,1871], -[0,5381,5383,5387,5391,5393,5394,5397,5400,5402,5405,5408,5411,5414,5416,5419,5423,5425,5430,5436,2993,5438], -[0,5441,5446,5450,5452,5453,5456,5458,5461,5464,192,5467,5470,5473,5474,5476,5478,1177,1895,2675,2990,4193,91,5480], -"unicode", -[2,3650,3656], -[3,3657,19], -"rl", -[2,3658,3659], -"whitespace", -[2,3650,3661], -"ordered-values", -[2,3562,3663], -"prefix", -"-selector", -[2,3665,3666], -[2,3562,3667], -[3,3668,11], -"set-", -"set-env", -[2,3669,3671], -"reduce-initial", -[2,3562,3673], -"safe-parser", -[2,3562,3675], -[3,3676,9], -[2,3677,1623], -"or-parser", -[2,1799,3679], -[2,3677,3680], -"vgo", -[2,3677,3682], -"ue-selectors", -[2,3071,3684], -[2,3562,3685], -"value-parser", -[2,3562,3687], -"post", -[0,5483,1117,1745,5484], -"postgrejs", -"posthtml", -"pouchdb", -"power", -"-assert", -[2,3694,3695], -"pre-commit", -"preact", -"prepare-package", -"-plu", -"gin-jsdoc", -[2,3700,3701], -[2,1894,3702], -[3,3703,16], -"organize-imports", -[2,3704,3705], -"packagejson", -[2,3704,3707], -"svelte", -[2,3704,3709], -"prettierrc", -"prett", -"y-bytes", -[2,3712,3713], -"pretty-", -[2,3715,1851], -[2,3715,1671], -"pretty-ms", -"quick", -[2,3715,3719], -"pretty", -"prettyjson", -[1,2343,3728], -"prisma", -"prismjs", -"private-bower", -"proc-log", -[0,3740,0,3748,34352], -"process", -[3,217,8], -"-bar-webpack-plugin", -[2,3730,3731], -"-polyfill", -[2,1862,3733], -"s-aplus-tests", -[2,1862,3735], -"prom", -"o-server", -[2,3737,3738], -[0,5497,5498,5502,5504,2222,5506,4484], -"prompt", -"prompts", -"prop", -"prop-types", -"-information", -[2,3205,3745], -"protobufjs", -[0,5575,2220,89,582,5576,2325], -[2,38087,27470], -"protractor", -"quire", -"proxyquire", -"publish-please", -"pug", -"pull-stream", -"pump", -"punycode", -"puppeteer", -"purgecss", -"q", -"qr-image", -"qrcode-terminal", -"qs", -"query-", -[2,3764,1871], -"query", -"querystring", -"queue", -"-typed", -"queue-typed", -"quill", -"-dom", -"qunit-dom", -"qunitjs", -"raf", -"ramda", -"random-words", -"random", -"randombytes", -[2,3778,1871], -"range-parser", -[1,2343,3785], -"raven", -"raw-body", -[0,3796,3806,3823,2487], -"raw-loader", -"rc-slider", -"rc-tooltip", -"rc-util", -"rcw-plugin", -"react-a", -"ddons-css-transition-group", -[2,3791,3792], -[3,3793,13], -"shallow-", -[0,89,4042,3744,53,5582,87,4232,90,5583,5589], -"compare", -[2,3795,3797], -[2,3794,3798], -"react-ap", -"ollo", -[2,3800,3801], -[2,1897,3733], -[2,1246,1367], -"react-c", -[0,1192,1177,4468,1610,91,5087,4880,2829,1959,1969,1966], -"react-color", -"react-co", -"py-to-clipboard", -[2,3808,3809], -"picker", -"datepicker", -[2,1246,3812], -"react-d", -"ev-utils", -[2,3814,3815], -"react-dnd", -"5-backend", -[2,1868,3818], -[2,3817,3819], -"ocgen", -[2,3814,3821], -[0,5593,1745,1179,89,4978,1283], -"react-dom", -"ropzone", -[2,3814,3825], -"error-", -[2,3827,3473], -[2,1246,3828], -[2,1246,2593], -"react-h", -"ook-form", -[2,3831,3832], -"react-ho", -"t-loader", -[2,3834,3835], -[2,1246,2681], -"react-i", -"react-icons", -"nter", -"section-observer", -[2,3840,3841], -[2,3838,3842], -[1,2343,3851], -[2,28573,26849], -"react-intl", -"react-is", -"lifecycles-compat", -[2,1246,3848], -[2,1246,1783], -[0,3859,3873,2514,2399], -"odal", -"react-modal", -"react-mo", -"tion", -[2,3854,3855], -[2,1246,970], -"-key", -[0,4135,1996,5598], -"-keychain", -[2,3857,3860], -[3,3861,13], -"vector-icons", -[2,3862,3863], -"react-n", -"umber-format", -[2,3865,3866], -"onclickoutside", -[2,1246,3868], -"react-p", -"roperty", -[2,3870,3871], -[0,1680,1177,53,5601,1006,4523,5274,5604], -"x", -"redux", -"react-redux", -"react-re", -[2,3877,2145], -[1,2343,3880], -[0,3892,3896,3907,2523], -"sponsive", -[2,3877,3881], -"react-r", -[2,3883,995], -[2,3884,3772], -[3,3885,13], -[2,3886,3875], -"scripts", -[2,1246,3888], -"react-s", -[2,3890,1799], -[0,56,5611,5292], -"react-slick", -"tyleguidist", -[2,3890,3894], -[0,53,101,5615,5617,5295,5619], -"react-svg", -"tap-event-plugin", -[2,1246,3898], -"react-t", -"est-", -"renderer", -[2,3901,3902], -[2,3900,3903], -"oastify", -[2,3900,3905], -[0,1172,5297,70], -[1,2343,3918], -"react-tools", -"ransition-group", -[2,3900,3910], -"virtualized", -[2,1246,3912], -"reactify", -"strap", -[2,89,3915], -"read", -[0,3920,3464,3465,2399], -"read-pkg", -[0,56], -"read-pkg-up", -"able-stream", -[2,3917,3922], -"line", -"readline", -"-sync", -[2,3925,3926], -"recall-shut-say", -[1,2343,3933], -"recast", -"recently-building-save", -"rechoir", -[0,3934,3464,3465,2443], -[0,56,5631], -"recompose", -"recu", -"rsive-readdir", -[2,3936,3937], -"redoc", -"usaurus", -[2,3939,3940], -"-actions", -[2,3875,3942], -"redux-", -"redux-form", -[2,3944,2942], -"saga", -"redux-saga", -"thunk", -"redux-thunk", -"reflect-metadata", -[1,2343,3953], -[0,3982,3983,3465,2537], -"regenerate", -[3,3954,9], -"or-runtime", -[2,3955,3956], -"rehype", -"-auto", -"-headings", -[2,163,3960], -[2,3959,3961], -[2,3958,3962], -"rehype-", -[3,1202,9], -"links", -[2,3965,3966], -[2,3964,3967], -"mdx-code-props", -[2,3964,3969], -[2,3964,1644], -"raw", -"rehype-raw", -"slug", -"rehype-slug", -"rehype-s", -"tringify", -[2,3976,3977], -"release", -"release-it", -"remap-istanbul", -[0,5637,5222,56,5638,5640], -[0,53,5295,58], -"remark", -[2,3984,20], -"remark-", -"gfm", -"remark-gfm", -"remark-html", -"mermaidjs", -[2,3986,3990], -[2,3986,1644], -"remark-p", -[2,1258,2195], -[2,3993,3994], -[3,3995,14], -"wooorm", -[2,3996,3997], -[2,3986,3958], -"able", -"remarkable", -"replace-ext", -"replace-", -"in-file", -[2,4003,4004], -[1,2343,4011], -"-promise", -[2,705,4007], -"-native", -[2,4008,4009], -[0,3920,3293,3465,2523], -"require-all", -"require-", -"dir", -"require-dir", -[1,2343,4032], -"index", -[2,3209,4017], -"requirejs", -"rese", -"lect", -"reselect", -"resize-observer-polyfill", -"-from", -[2,814,4024], -"resolve-", -"url-loader", -[2,4026,4027], -"rest-chronicle", -"rest", -"restify", -[0,4091,4095,3465,2399], -"restler", -"ore-cursor", -[2,4030,4034], -"rethinkdb", -"rewire", -"rfdc", -"rimraf", -"robot", -"robotjs", -"rollup", -"rollup-p", -"lugin-babel", -[2,4043,4044], -[3,4045,15], -"uble", -[2,4046,4047], -[3,4045,14], -"clean", -"cleanup", -[2,4049,4051], -[3,4052,15], -"ommonjs", -[2,4053,4054], -"dts", -[2,4049,4056], -[2,4049,1781], -"license", -[2,4049,4059], -"builtin", -"builtins", -[2,813,4062], -[2,4049,4063], -[3,4064,19], -[2,4065,2203], -[2,4065,814], -"replace", -[2,4049,4068], -"sourcemaps", -[2,4049,4070], -"terser", -[2,4049,4072], -[3,4073,15], -[2,4074,2528], -[2,4075,1276], -[2,4049,2280], -"visualizer", -[2,4049,4078], -[3,4045,13], -[2,4080,594], -"route", -"routes", -"rsnext", -"rsvp", -"rtlcss", -"run-s", -"equence", -[2,4087,4088], -"@modern-js/utils", -[0,4135,56,5652,5656,5658,5660], -"run-series", -"rx", -"rxjs", -[0,3093,53,5228,97,87,5663,5658,5295], -[1,2343,4114], -"-compat", -"rxjs-compat", -"safe-", -"safe-buffer", -"safe-p", -"ublish-latest", -[2,4101,4102], -"sails", -"salt-type-oldest-faster", -"sand-have-metal6", -"-filename", -[2,2574,4107], -[3,4108,9], -[2,4109,1936], -"sass-loader", -"sat-local", -"sax", -[0,4115,4138,2514,4139], -[0,1593,3957], -"scheduler", -"-doc", -[2,1119,4117], -[2,2844,4118], -"schema-", -[2,4120,594], -"scien", -"ce-knowledge-truth", -[2,4122,4123], -"seblakhotspicy", -"secp256k1", -"seedrandom", -"sele", -"nium-webdriver", -[2,4128,4129], -"semantic-release", -[3,4131,9], -"ui-react", -[2,4132,4133], -"semver", -"seneca", -"sentiment", -[0,1389,1408,5669,4535], -1772323200000, -"sequelize", -[3,1753,9], -"-javascript", -[2,4141,4142], -"serial", -"serialport", -"serve", -"-favicon", -[2,4146,4147], -"serve-", -"serve-index", -[2,4149,2947], -"-destroy", -[2,36,4152], -[1,2343,4194], -"less-finch", -[2,36,4155], -[3,4156,11], -"spy", -[2,4157,4158], -"sha1", -"shallow", -"equal", -[2,4161,4162], -"sharp", -"shell-quote", -"shell", -"shelljs", -"shinning-continued-becoming", -"shortid", -"should", -"showdown", -"shx", -"sick-typical-court7", -"signal-exit", -"simil", -"ar-cheese-loss", -[2,4175,4176], -"-ass", -"i-animation", -[2,4178,4179], -[2,2869,4180], -"simple-", -"simple-git", -"-web", -"-web3", -[2,3742,4185], -[2,4182,4186], -"single-spa", -"sink-mighty-orbit0", -"sink-", -"rod-lamp", -[2,4190,4191], -"sinon", -[0,4197,4198,2514,2537], -"-chai", -"sinon-chai", -[0,4135,5867,5637,5866,56,5656,5658,5676,5788,5850,5761,5797,5222,5660,5816,5640,5809,5812,5838,5769,5793,5823,5852,5756,5766,5790,5856,5863,5712,5715,5771,5778,5842,5741,5743,5830,5859,5757,5241,5810,3218,5820,5827,5835,5853,5751,5759,5821,5865,5764,5846,5785,5754,5825,5862,5782,5700,5749,5806,5832,5818,29299,5800,5813,5678,5685,5694,5690,5776,5688], -[0,53,101,5295], -"sinopia", -"sirv", -"size-limit", -"size", -[1,2343,4222], -"sizeitup", -"skapi-js", -"sky-buy-web3-rock", -"slash", -"slice-ansi", -"slow-deps", -"slow-", -"voice-spell-pass", -[2,4210,4211], -"slugify", -"small-grow-mix4", -"snake-seven-recall-interior", -"snazzy", -"soap", -"socket.io", -"-client", -[2,4218,4219], -"sock", -[0,4240,3464,2514,2537], -"js-client", -[2,4221,4223], -"source", -"-map", -"source-map", -[2,4227,1592], -[3,4228,11], -[2,4229,1194], -"support", -[2,4229,4231], -"space-separated-tokens", -"spectaql", -"speech-section-part-frozen", -"spirit-labor-cheese", -"split", -"split2", -"spring-dust-wall-size", -[0,56,5676,5874,5879,5881,5883], -[1,2343,4244], -"sprintf", -"sprintf-js", -[0,4253,3464,4254,4139], -"sprity", -"sqlite3", -"ssh2", -"ssri", -"st.db", -"stack-", -"trace", -"stack-trace", -[0,4851,56,5676,5889,5241], -[0,5891,91], -"standard", -"-version", -[2,4255,4256], -"star-location", -"star", -"t-server-and-test", -[2,4259,4260], -"stat", -[1,2343,4265], -"statsd", -[0,4269,4281,2514,2537], -"statuses", -"stock-independent-balloon", -"stor", -[0,5896,3093,5898,2102,4232], -"storybook", -"-django", -[2,4270,4271], -"stra", -"iforos-compodoc", -[2,4273,4274], -"nge-lady-riding9", -[2,4273,4276], -[2,3101,3695], -"stream-", -[2,4279,353], -[0,1389,53,5743,5241], -"streamii", -"strftime", -"string-", -"stri", -[1,2343,4297], -"strip-html", -[2,4284,4287], -"width", -[2,4284,4289], -"-entities", -[2,1646,4291], -"strip-", -"strip-ansi", -"bom", -"strip-bom", -[0,0,0,2514,2523], -"comments", -[2,2842,4298], -[2,4293,4299], -"strip", -"stripe", -"strongloop", -"-dictionary", -[2,590,4304], -"style-", -[2,4306,1194], -[1,2343,4313], -"style-to-js", -[3,4309,9], -[2,4310,3048], -"-comp", -[0,4316,0,2514,2523], -"-components", -[2,369,4314], -[0,1593], -"styled-jsx", -"hacks", -"stylehacks", -"stylelint", -"-standard", -[2,607,4321], -[2,4320,4322], -[3,4323,10], -"declaration-strict-value", -[2,4324,4325], -"order", -[2,4324,4327], -"scss", -[2,4324,4329], -[1,2343,4336], -"us", -"stylus", -[2,4333,2091], -"sugar-policeman-entire", -[0,4344,3464,2514,2537], -"sugarss", -"sun-grass-circle0", -"superagent", -"super", -"superjson", -"supertest", -[2,4342,1430], -[0,1676,104,58,5230,5216,51,30873], -"supervisor", -"-vessels-web3-vessels", -[2,4231,4346], -[1,2343,4356], -"lor", -"s-color", -[2,4231,4350], -"surrounded-characteristic-or-rain", -"svelte-", -"check", -[2,4353,4354], -[0,4379,4392,2514,2487], -"rocess", -"preprocess", -[2,4353,4358], -"svg-sprite", -"svgo", -"sw-precache-webpack-plugin", -"swagger-autogen", -"swagger-", -[2,4364,134], -"themes", -[2,4364,4366], -"ui-express", -[2,4364,4368], -"swam-darkness-weak", -"swig", -"swiper", -"sync-request", -"information", -[2,623,4374], -"systemjs", -"tail-iron-became5", -"tail", -[0,5276,5279], -"tailwind", -"-merge", -[2,4380,4381], -"tailwindcss", -"tap", -"tap-", -"spec", -"tap-spec", -"tapable", -"tape", -"tar", -"tar-fs", -[0,58,5216,5274], -"tar-stream", -"tarant", -"-router-express", -[2,3926,4395], -[2,4394,4396], -"tdl", -"tdlib-native", -"tempy", -"terminal-kit", -[3,4401,9], -"menu", -[2,4402,4403], -"pack", -"-plugin", -"pack-plugin", -[2,4184,4407], -[2,4072,4408], -"cutting", -[2,1382,4410], -"snippets", -[2,1382,4412], -"cafe", -"testcafe", -"testc", -[1,2343,4422], -"ontainers", -[2,4416,4418], -"double", -"testdouble", -[0,4424,4429,4442,4139], -"testem", -[0,5923,5927,5930,5931,5934,5935,5936,1512,2075,2088,2070,2822,2832,5941,3105,5944,3107,5946,5949,3112,26767,5953,5956,5961,3135,3257,5963,5966,3725,3754,3758,5969,5971,3348,5975,4747], -"text-table", -"three", -"throttle-debounce", -"thro", -[0,4320,5978,4328], -"through", -"through2", -"w-did-darkness4", -[2,4428,4432], -"thunkify", -"tildify", -"time-grunt", -"tinper-bee", -"tiny-lr", -"tiny", -"bench", -"tinybench", -[0,200,1783,5980,3452,5593,5981,5982,5983,1745,1179], -"tinycolor2", -[1,2343,4458], -"tinymce", -"pool", -"tinypool", -"tinyspy", -"tmp", -"toastify-react-native", -"tocbot", -"toml", -"touch", -"tough-cookie", -"tracer", -"traffic-carry-opinion", -"train-stick-swept7", -[0,4466,4471,4472,2537], -"tree-kill", -"e-leaving-basket", -[2,1333,4460], -"trpc", -"trumpet", -"ts-cache-mongoose", -"ts-japi", -[0,5990,2212,3220,3747,4715], -"est", -"ts-jest", -"ts-loader", -"ts-migrate-mongoose", -[0,1596,1177,1895,1903,1938,1954,1955,1958,1970,4255], -[0,4709,5993,4714,2942,5995], -"ts-morph", -"ts-node", -"ts-patch-mongoose", -[1,2343,4485], -"ts-pnp", -"ts-rule-engine", -"-paths", -[2,2190,4479], -"tsd", -"tsd-lite", -"tshy", -"tslib", -[0,4502,4503,2514,2537], -"nt", -"tslint", -"-config-", -[2,4488,1894], -[2,4487,4489], -"tslint-", -[2,4491,89], -"tsup", -"tsx", -"turndown", -"tv4", -"tweetnacl", -"twemoji", -"twit", -"twitter", -"type-", -[0,6041,4135,1458,6042,1836,2151,6049,3527,1104,6047,4025,6024,6027,6028,6032,6034,6009,6010,6025,6037,3749,6007,6039,6022,6003,6031,6017,6006], -[0,3471,6040,4294,5254], -"coverage", -[2,4501,4504], -[1,2343,4516], -"type-fest", -"typedoc", -"-material-theme", -[2,4508,4509], -"typedoc-", -[2,4511,2475], -[3,4512,15], -[2,4513,1783], -"typedocs", -[0,4518,4519,4527,2537], -"typegen", -[0,6056,6059,449,452,456,1461,3744], -[0,48,53,61,87,90,192,5467,5583,811,816,6061,6063,6065,1009,1011,1178,1251,6066,1177,1947,1959,1961,2675,2990,1894,89,3824,4042,6068,4073,4131,91], -"typegoose", -"typeorm", -"-eslint", -[2,91,4522], -[3,4523,11], -"formatter", -[2,4524,4525], -[0,6070,89,6071,181,6073,4963,6074,6077,6080,6081,6082,4967,6083,6084,4298,6085,6086], -[1,2343,4544], -"css-modules", -[2,1186,4529], -[2,4524,4530], -"typings", -"uglify-es", -"uglify-", -"uglify-js", -"js-webpack-plugin", -[2,2280,4536], -"uid-safe", -"uiw", -"uj-apidoc-core", -"ulid", -"ultrahtml", -"unbuild", -[0,4556,0,4557,2537], -"underscore", -".string", -[2,4545,4546], -"undici", -"unified", -"unique-", -"random-", -"array", -[2,4551,4552], -[2,4550,4553], -"unist-util-visit", -[0,1459,148,185], -[0,6092,1459,6094,6096,6098,6100], -"untildify", -"unusual-rope", -"unzip", -"-notifier", -[2,3076,4561], -"urijs", -"url-", -"join", -"url-join", -"url-parse", -"urllib", -"user", -"user-", -"home", -"user-home", -[1,2343,4574], -[0,4583,0,4642,2487], -"agent", -"useragent", -"utf8", -[2,594,4381], -"uvu", -"valid", -"-url", -"valid-url", -[0,27715,4484], -"-commit-msg", -[2,2649,4584], -[3,4585,9], -[2,3387,1213], -[2,4586,4587], -"vant", -"vary", -"vasync", -"vercel", -"verror", -"vhost", -"victory-mouth", -"viewerjs", -"vinyl", -"vinyl-", -[2,4598,1398], -"vinyl-fs", -"source-", -[2,4601,3101], -[2,4598,4602], -[3,4603,12], -"maps-apply", -[2,4604,4605], -"virtual", -"virtual-dom", -[3,839,12], -"api-", -"api-routes", -[2,4609,4611], -"press", -"vitepress", -"vorpal", -"vows", -"vsce", -"vscode-debugprotocol", -"vscode-", -"nls-dev", -[2,4619,4620], -"mate", -"textmate", -[2,4619,4623], -"vue-", -"class-", -[3,1533,9], -[2,4626,4627], -[2,4625,4628], -[2,4625,67], -"hot-reload-api", -[2,4625,4631], -"vue-i18n", -"vue-loader", -[3,3746,9], -[3,70,9], -[2,4635,4636], -[2,4625,4637], -[2,4625,38], -[2,4625,4307], -[3,1243,9], -[0,6105,6106,6038,1936,6108,6110,1098,6111,6112,6113,4627,6092,1459,6094], -"compiler", -[2,4641,4643], -[2,4625,4644], -"vuex", -"walk", -"walk-sync", -"warning", -"watchify", -"waterline", -"wd", -"web3", -"web3-", -[1,2343,4668], -"web3-be", -"web3-c", -"apital", -[2,4657,4658], -[3,42,8], -"pass", -[2,4660,4661], -"eve-cli", -[2,4654,4663], -"web3-e", -"xactly6", -[2,4665,4666], -[0,4672,0,4557,2523], -"web3-fruit", -"webpack-", -"bundle-", -[0,1459,148,187,153,180,157], -[1,2343,4697], -"analyzer", -[2,4671,4674], -[2,4670,4675], -[2,4670,200], -"dev-middleware", -[2,4670,4678], -[3,4679,12], -[2,4680,36], -"hot-", -[2,4682,2663], -[2,4670,4683], -[2,3097,4406], -[2,4670,4685], -[3,4686,9], -"erge", -[2,4687,4688], -"node-e", -"xternals", -[2,4690,4691], -[2,4670,4692], -"sources", -[2,4670,4694], -"webshot", -[0,4698,0,4557,2523], -[0,1459,182,148,29468,187,153,180], -"websocket", -[1,2343,4701], -[0,4725,0,4557,2537], -"webtorrent", -"webworker-threads", -"weinre", -"whatwg-fetch", -"when", -"which", -"winreg", -"winston", -"-daily-rotate-file", -[2,4709,4710], -"winston-", -"trans", -"transport", -[2,4712,4714], -"wiredep", -"word-wrap", -"word", -"wrap", -"wordwrap", -"work", -"box-webpack-plugin", -[2,4721,4722], -"world-toy-kill", -[0,1459,182,148,6127,29468,187,180], -"wrap-ansi", -"wrench", -"write-file-atomic", -"ws", -"x-ray", -"xhr", -"xml-", -"xml-js", -"xml2js", -"xml2json", -"xmlbuilder", -"xmldom", -"xmlhttprequest", -"xpath", -"xregexp", -"xss", -"xstate", -[1,2343,4773], -"xterm", -"yaml", -"yamljs", -"yargs", -[2,4747,1574], -"yarn", -"pkg", -"yarnpkg", -"yarnrc", -"yauzl", -"yeoman-environment", -"yeoman-", -[2,4755,1179], -"yn", -"yo", -"yoctocolors-cjs", -"yonode", -"yosay", -"zmq", -"zod", -"zod-", -"chemas", -[2,2666,4765], -[2,4764,4766], -"zombie", -"zone.js", -"zuul", -[2,667,1651], -[2,672,4406], -[0,4792,0,4801,2523], -"@nx/jest", -[2,667,4270], -"framer-motion", -"teajusgula", -"@mui/s", -"tyle", -"d-engine", -[2,4779,4780], -[2,4778,4781], -"jsdoc-parse", -"@comm", -"ercetools-frontend/constants", -[2,4784,4785], -"shift", -"downshift", -[3,3605,9], -"ocus-visible", -[2,4789,4790], -[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6133,111,174], -[2,3388,4794,4963], -[3,18878,12], -[3,1705,9], -[2,4795,3582], -"devDependencies", -"keywords", -"ts", -[2,4837,686], -[0,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130,6148,6092,1459,6094], -[3,3,7], -"field", -[2,4802,4803], -[2,4802,3473], -[2,4802,2649], -"@types/", -[2,4807,3911], -"big.js", -[3,1849,9], -"lement-equals", -[2,4810,4811], -[1,2343,4918], -"adaptor-generate", -[2,4802,4814], -[3,4815,15], -[2,4816,1383], -"@alifd/a", -"pi-extractor", -[2,4818,4819], -[2,1262,3286], -[2,4802,4821], -[2,1910,57], -[2,4802,4823], -"@alifd/d", -"ts-generator", -[2,4825,4826], -[2,1884,3286], -[2,4802,4828], -"meet-react", -[2,4802,4830], -"sass-", -"mapper", -"sass-mapper", -[2,4802,4834], -[3,4835,12], -[3,4793,38], -[2,4867,4924], -"tracker", -[2,4836,4839], -[3,4835,11], -[2,4841,4823], -"@alifd/s", -"lint-co", -"-next", -"nfig-next", -[2,4844,4846], -[2,4779,4847], -[2,4843,4848], -[3,81,21], -[2,4850,1219], -[2,4807,1175], -"@types/b", -"ig.js", -[2,4853,4854], -"@types/chai", -"@types/c", -"lassnames", -[2,4857,4858], -"@types/co", -"@types/e", -"nzyme", -[2,4861,4862], -[2,4807,2151], -"@types/glob", -[2,4807,2720], -[3,4793,25], -"jsonp", -[2,4807,4868], -[2,4807,1209], -".clonedeep", -[2,4870,4871], -"@types/md5", -[2,4807,202], -[2,4807,3564], -[3,4875,16], -"ustom-", -[2,4877,3583], -[2,4876,4878], -[3,4808,12], -[3,4808,13], -[2,4881,1582], -[2,4881,965], -[2,4881,3875], -[3,4884,14], -"outer-dom", -[2,4885,4886], -[3,4808,14], -[2,4888,3903], -[2,4807,4320], -[2,4807,2924], -[2,4807,4747], -[3,1203,14], -"spower", -[2,4893,4894], -[2,2168,1894], -[2,1199,4896], -[3,1245,30], -[2,4898,3426], -"proto", -"-to-assign", -[2,4900,4901], -[2,1226,4902], -"displayname", -[2,1861,4904], -[2,1249,4905], -[2,3195,2874], -"e-polyfill", -[2,1557,4908], -"css-s", -"plit-webpack-plugin", -[2,4910,4911], -[2,1863,3733], -[3,1924,15], -"ypress", -[2,4914,4915], -[2,2068,4111], -[0,4943,0,4801,2537], -"html5shiv", -[3,2925,9], -"driver-launcher", -[2,4920,4921], -[2,3108,588], -"ssets", -"mochawesome", -"-package-importer", -[2,3342,4926], -[2,3388,16690,4935], -"react-axe", -"ropper", -[2,3805,4930], -"react-dr", -"aggable", -[2,4932,4933], -"c-app", -"ve", -"react-live", -"true", -"sass-true", -"simulate-event", -"solarlunar", -[3,4323,17], -[0,182,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6133,111,174], -[2,4950,4951], -"recommended", -[2,4942,4945], -[3,4323,11], -"sstree-validator", -[2,4947,4948], -[3,662,27], -"dev-authentication", -"ts-mocha", -[1,2343,4969], -[2,4950,4956], -"tsconfck", -[3,25922,13], -"fusion", -" design", -[2,4957,4958], -"ui toolkit", -"mponents", -[2,3808,4961], -"components", -"design", -"front", -"end", -"frontend", -[2,4970,4971], -[0,4979,0,4983,2537], -[3,4786,14], -"/http-user-agent", -[2,31787,4980], -"Angular CLI", -"Angular ", -"DevKit", -[2,4974,4975], -"devkit", -"sdk", -[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6158,111,174], -"cli-lib", -[2,812,2220], -"@svgr/babel-preset", -[0,6148,6092,1459,6094,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130], -"blue", -[2,4807,4676], -"blueprints", -" generation", -[2,1501,4987], -"scaffolding", -"tool", -"tooling", -[2,1030,4993], -"-swc", -[1,2343,4998], -[2,5559,705], -[2,4997,4999], -"moment-loca", -[0,5003,0,4983,4139], -[3,8303,18,2], -"svg-url-loader", -"development", -"thread-loader", -[0,6164,164,167,137,159,177,162,180,157,140,6166,171,116,150,155,122,169,119,146,111,6168,174], -[1,2343,5005], -[0,5006,0,4983,4139], -[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,6173,146,111,174], -[1,2343,5008], -[0,5011,0,4557,2487], -[2,4807,4996], -[2,6776,1987], -[0,6178,1459,16485,182,148,29468,159,187,153,185,146], -"@jridgewell/sourcemap-codec", -[1,2343,5014], -[0,5015,0,4557,2537], -[0,1459,182,148,29468,159,187], -[1,2343,5017], -[0,5018,0,4557,4139], -[0,16485,182,148,187,153,191], -[1,2343,5020], -[0,5021,0,5022,2487], -[0,1459,148,187], -[0,6092,1459,6094,6192,6100], -[1,2343,5024], -[0,5025,0,5026,2443], -[0,16485,182,187,153,6200], -[0,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130,6092,1459,6094,6192,6100], -[2,29,4958], -[1,2343,5029], -[0,5030,0,4557,4139], -[0,1459,148,187,185,146], -[1,2343,5032], -[0,5033,0,5026,2399], -[0,16485,187], -[1,2343,5035], -[0,5036,0,4557,2537], -[0,1459,182,148,6215,6127,180,143,6217], -[1,2343,5039], -"xhr2", -[0,5040,0,4557,2399], -[0,1459,182,148,29468,187,153,171], -[1,2343,5042], -[0,5043,0,4557,2523], -[0,1459,16485,182,148,6215,29468,187,153,180,185,191,143], -[1,2343,5045], -[0,5046,0,4557,4139], -[0,1459,182,148,167,29468,187,153,157], -"@bang88/react-native-ultimate-listview", -[3,444,19], -[2,5048,970], -"@rc-component/mini-decimal", -"@types/s", -[1,2343,5053], -[0,5072,0,4557,2443], -"hallowequal", -[2,5051,5054], -"with", -[2,3023,5056], -"css-color", -[2,3370,5058], -"rc-field-form", -"codegen", -[2,3862,5061], -[3,5062,15], -"llapsible", -[2,5063,5064], -"modal", -"-popover", -[2,5066,5067], -[2,3862,5068], -"ity-types", -[2,614,5070], -[0,1459,16485,182,148,29468,159,187,153,180,191,143], -[2,2809,4009], -[2,45,5073], -[2,41,5074], -[2,41,2041], -"@rea", -"ct-native-community/eslint-config", -[2,5077,5078], -[3,5079,9], -"vigation/native", -[2,5080,5081], -[3,5082,18], -[2,5083,2873], -[2,972,4009], -"@types/j", -"@types/jest", -"@types/p", -"rop-types", -[2,5088,5089], -[2,4881,970], -[3,1113,11], -"palettes", -[2,5092,5093], -"-demo-data", -[2,701,5095], -[2,1114,5096], -"bisheng", -[1,2343,5101], -"enquire.js", -[0,5126,0,4557,2537], -"jsonml.js", -"metro-react-native-babel-preset", -[3,3822,9], -"ument-title", -[2,5104,5105], -[3,2197,13], -[2,1246,5107], -"gesture-handler", -[2,3862,5109], -[3,5069,15], -"cker", -[2,5111,5112], -"reanimated", -[2,3862,5114], -"area-context", -[2,4099,5116], -[2,3862,5117], -[3,5118,14], -"creens", -[2,5119,5120], -"web", -[2,3862,5122], -"shell-", -[2,5124,594], -[0,1459,182,148,6164,6127,29468,187,153,180,143], -"ant", -[3,4962,15], -"frame", -"framework", -"mobile", -" native", -[2,89,5132], -[1,2343,5135], -[0,5136,0,4557,2537], -[0,1459,182,148,6215,29468,187,153,180,191,143], -[1,2343,5138], -[0,5140,0,4557,2537], -[2,4870,3020], -[0,182,148,29468,187,153], -[1,2343,5142], -[0,5143,0,4557,2487], -[0,1459,148,153,143], -[1,2343,5147], -[3,5075,17], -"@inline-svg-unique-id/react", -[0,5148,0,5149,4139], -[0,27715], -[0,6105,6106,6038,1936,6108,6110,89,5128,6092,1459,6094], -[1,2343,5151], -[0,5163,0,4557,2487], -[2,3670,1575], -[2,5928,5155], -"@auth/core", -"junit-xml-formatter", -"adapt", -"er-auto", -[2,5156,5157], -[2,836,5158], -[2,836,3383], -"et-cookie-parser", -[2,5051,5161], -[0,1459,16485,182,148,29468,187,153,191,143], -"entication", -[2,1303,5164], -"authjs", -"sveltekit", -"oidc", -"wordless", -[2,4661,5169], -[1,2343,5172], -[0,5173,0,4557,2443], -[0,16485,148,187,153], -[1,2343,5177], -"fs-readdir-recursive", -[3,5012,12], -[0,5181,0,5022,2443], -"-mapping", -[2,4251,5178], -[2,5176,5179], -[0,16485,6268,6271,6272,28829,148,29468,187,153,15716], -[3,4864,10], -"dir-recursive", -[2,3917,5183], -[2,5182,5184], -[3,56,14], -"fixture", -"-test-runner", -[2,5187,5188], -[2,1221,5189], -[2,5186,5190], -[2,5195,5196], -"6to5", -"es6", -[3,7710,11], -"ut-extension", -"transpile", -"transpiler", -[1,2343,5201], -[2,7623,671], -[0,5202,0,5022,2443], -[0,148,187], -[1,2343,5205], -"ighlight", -[0,5206,0,5022,2537], -[0,16485,182], -"meta", -"-resolve", -[2,5207,5208], -[2,2701,5209], -[1,2343,5212], -[0,5213,0,5214,2537], -[0,27715,3021], -[0,6105,6106,6038,1936,6108,6110,188,6284,6285,6287,6092,1459,6094], -"@ampproject/remapping", -[2,54,1179], -"compil", -"ation", -"-targets", -[2,5218,5219], -[2,5217,5220], -[2,5186,5221], -"module-", -[2,353,591], -[2,5223,5224], -[2,5186,5225], -[3,56,13], -[2,5227,591], -"emplate", -[2,102,5229], -[1,2343,5232], -[0,5234,0,5022,2537], -"gensync", -[0,16485,182,148,6127,29468,187,153,180], -[2,4850,2124], -[3,83,24], -"flow-", -[2,4293,553], -[2,5237,5238], -[2,5236,5239], -[2,5236,1239], -"nvert-", -[2,5242,4227], -[2,4860,5243], -[2,4807,1676], -"@types/g", -"ensync", -[2,5246,5247], -[3,4808,9], -"solve", -[2,5249,5250], -[3,5162,9], -"mver", -[2,5252,5253], -[1,2343,5262], -"classes", -"const", -"harmony", -"let", -"modules", -"var", -[0,5263,5264,5265,2523], -[0,6297,6298,6301,6302,6303,26379,4747], -[0,6306,6307,6498,4874,4892,2151,6476], -[0,1566,1529,200], -[1,2343,5267], -[0,5268,0,5269,2523], -[0,7,53,5830,87,6316,6318,31736,1364,6320,1448,1457,1512,1525,1595,6323,1866,2061,2071,2151,2070,2036,2626,2681,2856,1209,3079,6326,6327,3127,3183,5732,6330,6331,3527,23802,3725,4135,4200,5969,6334,4473,3348,6335], -[0,6111,1098,1745,4963,1237,2218,4796,1783], -[1,2343,5280], -[3,5222,15], -"heck-duplicate-nodes", -[2,5271,5272], -[2,5186,1182], -[2,4284,57], -[2,5186,5275], -"-identifier", -[2,1155,5277], -[2,5186,5278], -[0,5283,0,5288,2537], -"codes", -"charcodes", -[0,6343,2700], -"javascript", -"tc39", -"ecmascript", -"skia-canvas", -[0,6345,6346,5130,2018,6347], -[1,5293,5296], -"@egjs/flicking", -"reate-class-features-plugin", -[2,5271,5291], -[0,8389,4799], -[3,56,21], -[2,5294,1187], -[0,8391,5298], -[3,1198,12], -1732406400000, -[1,5293,5300], -[0,8391,5301], -1733011200000, -"moo", -"luxon", -"hamljs", -"liquidjs", -"iso-639-1", -"@iarna/toml", -"-urls", -[2,3692,5308], -[3,3938,10], -[2,5310,1585], -"bcp-47-normalize", -[3,1705,11], -[2,5313,2218], -"@11ty/", -"lodash-", -"custom", -[2,5316,5317], -[2,5315,5318], -"please-upgrade-node", -[2,62,3007], -[2,5313,1633], -[2,5315,5322], -"@sin", -"dres", -"orhus/slugify", -[2,5325,5326], -[2,5324,5327], -[3,5321,15], -"dev-", -[2,5330,36], -[2,5329,5331], -[1,2343,5345], -"@vue/", -"server-", -[2,5335,3902], -[2,5334,5336], -"plugin-vue", -[2,5329,5338], -[3,5339,22], -"syntax", -[3,2600,9], -[2,5341,5342], -[2,5340,5343], -[0,5350,5358,5359,34352], -"-site-generator", -[2,2947,5346], -[3,5347,11], -"ssg", -[0,2626], -"website", -"jekyll", -"blog", -"templates", -"11ty", -"liquid", -"haml", -[0,48,53,87,37046,6371,27928,6372,5583,811,816,6373,11275,1165,1367,6375,6376,1492,1610,1177,1907,1937,1938,1982,6379,2203,2205,6382,2626,6383,2739,2765,2814,2297,2876,2881,6385,2889,2895,2898,6387,2910,3019,3363,3400,3561,3566,6389,4039,4042,6390,21688,4939,4167,4320,6392,4072,6393], -[0,1623,2278,6396,6398,6400,5130,5122], -[1,2343,5361], -[0,0,0,5372,2537], -"parcel", -"ytes", -[2,4853,5363], -"enchmark", -[2,4853,5365], -"@parcel/packager-ts", -"@parcel/", -"er-typescript-types", -[2,353,5369], -[2,5368,5370], -[0,1623,57], -[1,2343,5377], -"stringifier", -"heet", -"stylesheet", -[0,0,0,5378,2487], -[0,1623,207], -[1,2343,5380], -[0,0,0,5426,2537], -"@advanced-rest-client/arc-icons", -[3,5381,26], -[2,5382,3127], -[3,5381,22], -"-copy", -[2,1492,5385], -[2,5384,5386], -"-snippets", -[2,1501,5388], -[2,2655,5389], -[2,5384,5390], -[2,3115,592], -[2,5384,5392], -"@anypoint-web-components/anypoint-button", -[3,5394,34], -"collapse", -[2,5395,5396], -"drop", -"dropdown", -[2,5395,5399], -"item", -[2,5395,5401], -"box", -"listbox", -[2,5395,5404], -[3,64,17], -"mf-helper-mixin", -[2,5406,5407], -[3,64,20], -"annotation-document", -[2,5409,5410], -"body-", -[2,5412,1746], -[2,5409,5413], -"example-generator", -[2,5409,5415], -"ers-document", -[2,3193,5417], -[2,5409,5418], -"param", -"eters-document", -[2,5420,5421], -[2,5409,5422], -"responses-document", -[2,5409,5424], -[0,1623,6415,57], -"umentation", -[2,4117,5427], -[2,1965,5428], -[2,5409,5429], -[3,64,16], -"method-", -"label", -[2,5432,5433], -[2,2655,5434], -[2,5431,5435], -[1,2343,5448], -"lit-html", -[2,7623,594], -"demo-helper", -[2,5382,5440], -"-aut", -"horization", -[2,5442,5443], -[2,3424,5444], -[2,5384,5445], -[3,5397,35], -[0,5481,0,5485,2537], -"heckbox", -[2,5447,5449], -[3,5402,35], -[2,5451,1020], -[2,5395,592], -[3,64,21], -"odel-generator", -[2,5454,5455], -"navigation", -[2,5409,5457], -[3,5425,22], -"quest", -[2,5459,5460], -[3,5430,22], -"rver-selector", -[2,5462,5463], -[3,192,13], -"onfig-conventional", -[2,5465,5466], -"@open", -"-wc/eslint-config", -[2,5468,5469], -[3,5470,9], -"testing", -[2,5471,5472], -"@web/dev-server", -"@web/", -[2,5475,1187], -"-playwright", -[2,5476,5477], -[2,5438,4406], -[2,4524,5479], -[0,220,3681], -"api-co", -[2,5482,4961], -[2,5432,1745], -[0,1623,2741,6421,6422,3561,6425,6426,3585], -[1,2343,5487], -[0,5488,0,5492,34352], -[0,3688], -[3,465,9], -"typed", -[3,5428,9], -[0,1623,5317,6433,3561,6425,6434,3583,6435,6436,6437], -[1,2343,5503], -"-node/core", -[2,5491,5494], -[2,5490,5495], -[2,5489,5496], -"@wry/caches", -"@wry/", -"@hapi/eslint-plugin", -"equality", -[2,5499,5501], -[0,0,0,5507,2537], -"@wry/trie", -"optimis", -"optimism", -[0,1623,3681,6443], -"response", -"-iterator", -[2,5508,5509], -"symbol", -"-observable", -[2,5511,5512], -"ts-invariant", -"zen-observable-ts", -[1,2343,5524], -"@arethetypeswrong/cli", -[3,107,13], -"hange", -"log-github", -[2,5519,5520], -[2,5518,5521], -[3,5497,10], -[0,5538,5539,5543,2523], -"ools/merge", -[2,5523,5525], -[3,5526,15], -[2,5527,2844], -[2,5527,594], -"@size-limit/esbuild-why", -[3,5530,12], -"pres", -"et-small-lib", -[2,5532,5533], -[2,5531,5534], -"@tsconfig/node20", -"@types/f", -[0,6450,6452,6453,5930,6455,6457,5153,6463,6465,30874,6467,6470,6471,1437,1483,1525,1676,6473,2089,2070,6474,2709,2744,2753,6475,3060,6476,5303,3171,3188,3261,3730,27168,4135,6479,4351,4507,6481,4745,6482], -[0,6487,6488,19438,19181,442,603,826,4856,5245,6493,6494,4864,6497,6309,6498,6501,6503,6505,6507,4874,6510,5254,6512,6515,6519,6520,1009,1011,1429,6522,1509,6525,1719,1177,1938,1953,1982,2026,2151,6526,2899,3257,3421,1894,6527,4172,4193,4196,6530,4449,4474,4481,4508,91], -[2,4807,2609], -"-fetch", -[2,4874,5541], -[0,5472,5982,1649,6532,6533], -[1,2343,5548], -"use-sync-external-store", -[2,4807,5545], -"rule", -[0,5549,5553,5565,2537], -[0,1415,1437,1468,1483,2151,4468], -"rule-tester", -[2,1010,5550], -[2,1010,553], -[0,192,5467,4864,4866,5087,6541,6544,6547,1009,1011,1109,1481,1836,1177,1895,1955,2675,1192,6551,3165,3203,3403,1894,6552,6554,91], -"local-", -"local-rules", -[2,1921,5555], -[3,1961,20], -[2,5557,4643], -"graphql-", -"graphql-ws", -"patch-package", -[3,3829,12], -"boundary", -[2,5562,5563], -[0,6557,1745], -[1,5293,5567], -[0,8391,5568], -1730419200000, -"ts-api-utils", -[3,1913,9], -[2,4468,5570], -"wait-for-observables", -"web-streams-polyfill", -[1,2343,5577], -"apollo", -"client", -[0,0,0,2514,2537], -[1,2343,5579], -[0,0,0,2514,2487], -[1,2343,5590], -[3,66,10], -[2,5581,57], -[2,812,1172], -[3,1217,14], -"ource", -"-support", -[2,4226,5586], -[2,5585,5587], -[2,5584,5588], -[0,0,0,2514,2443], -[1,2343,5594], -"api", -"asyncapi", -[0,5595,5596,5597,4139], -[0,5192,27292,7605,5439,1437,1448,1623,7606,7608,7610,2822,1209,3105,5946,7612,7617,3124,7621,29457,4110,4213,4361,11143], -[0,7624,5200,7631,7632,7634,7637,4870,7639,7641,4874,7643,7677,23203,1165,668,7645,2600,26503,7648,3400,3561,3672,2278,26573,91,1984], -[0,1783,7650,1739,7651,1745,4990,2041,1179], -"@nicolo-ribaudo/eslint-scope-5-internals", -[1,2343,5605], -[3,1006,9], -[2,5600,671], -"-manager", -[2,1993,5602], -[2,1010,5603], -[0,5606,5607,5608,34352], -[0,4484,4548,7658,7660,7663,7664,7665,7668,7669], -[0,4493,7671,1177,1984,1894,1610,91,4874,7672,7674,7677,7678,7681,7685,7690], -[0,1721,5592,4030,7692,7693], -[3,81,22], -"ecorators", -[2,5609,5610], -[1,2343,5620], -[3,1143,16], -"concat", -[2,5613,5614], -"polyfill-es-shims", -[2,1199,5616], -"getownpropertydescriptors", -[2,3436,5618], -[0,5621,5622,5623,2537], -[0,1525], -[0,2899,1894], -[0,553,4532,1776,605,4508,1739,1745,7701], -[1,2343,5626], -[2,4850,72], -[0,5627,5628,5597,2523], -[0,7708,7709,7710,7715,7718,7721,354,7723,7725,4865,7729,7730,1091,1149,1168,7731,1437,1759,2075,2070,2600,2628,2670,2822,2854,3173,3181,3322,4167,4183,4213,4393,7734,7735,4648,4747], -[0,7737,7740,7744,7637,4870,7746,4874,7749,7752,4892,1009,1011,1178,668,1177,1966,2675,2990,1209,4468,4474,91], -[1,2343,5632], -[3,5625,28], -[2,5630,75], -[0,5633,5634,5597,2487], -[0,7605,1437,7608,7610,2822,1209,3105,5946,7612,7615,7617,3124,7621,4110,4213], -[0,53,5241,87,7634,5087,7637,4870,7639,7641,7759,4874,7643,7761,7762,7763,1165,1178,668,7645,1177,1966,2600,1192,7648,3561,3672,1894,3957,4468,91], -[1,5293,5641], -"mpat-data", -[2,52,5636], -[2,4850,77], -[3,5422,10], -[2,5236,5639], -[0,8391,5642], -1734825600000, -[1,2343,5644], -[0,5645,5646,5647,2537], -[0,5328,842,975,7788,1364,1437,1470,1536,7791,2040,2075,2141,7793,7794,2600,2856,3105,5944,3107,5946,7796,7797,3322,3742,2278,7798,7799,4227,4228,4232,7800,3709,3348,7801], -[0,192,5467,6061,6063,7804,7806,7808,7810,4864,7639,7641,4874,7812,7814,7816,7819,7822,1009,1011,1414,7824,2151,2675,3758,3951,4131,91], -[0,38,5995,27,5130,7826,7827,7828], -[1,2343,5649], -[0,5654,5661,5664,2399], -[3,5226,21], -"imports", -[2,5650,5651], -[3,5617,22], -[0,7833,7837,7839,7840,19344,7847,842,7858,1165,1393,1628,1630,1177,1895,1955,1959,1961,2203,2675,16860,3177,3561,3618,3678,2278,4111,4307,4320,4323,5978,7873,4409,2924,4677,4686,4689], -"corejs2", -[2,5653,5655], -[3,5656,28], -[2,5657,1278], -[3,3957,11], -[2,5653,5659], -[0,7849,2990], -[3,99,21], -[2,5662,1278], -[0,4967,4329,7880,676,6435,1237,7881], -[1,2343,5667], -"@edsdk/n1ed-react", -[0,5668,5670,5671,34352], -[0,7639,1429,1437,3025,3105,3467,3718], -"derequire", -[0,27134,4856,7889,4874,7895,2675,2990,1894,91,1984], -[0,1804,1739,1745,5592,91,7897,7900], -[1,2343,5673], -[0,5703,5705,5708,2523], -[3,5279,24], -"option", -[2,5674,5675], -"bugfix-firefox-class-in-computed-class-key", -[2,79,5677], -[3,5678,21], -"safari-", -"-initializer-scope", -[2,4803,5681], -[2,4626,5682], -[2,5680,5683], -[2,5679,5684], -[3,5685,28], -"id-destructuring-collision-in-function-expression", -[2,5686,5687], -"v8-spread-parameters-in-optional-chaining", -[2,5679,5689], -[3,5690,25], -"-class-fields-redefine-readonly", -[2,3346,5692], -[2,5691,5693], -"private-", -[3,3746,11], -"-object", -[2,5696,5697], -[2,5695,5698], -[2,69,5699], -"generators", -[2,1152,5701], -[0,5652,97,7905,7907,7910,7913,1573,1874,7915,4227,7917], -[2,4850,1229], -[0,53,7922], -"static-", -[2,5706,1359], -[0,592,1832,89,1623,7165], -"ions", -"assertions", -[2,2701,5710], -[2,4850,5711], -[3,5712,29], -"ttributes", -[2,5713,5714], -[3,5712,28], -[2,5716,5207], -[1,2343,5719], -[0,5720,5722,5708,2537], -[0,362,7931,7910,7932,7933], -"logical-assignment-operators", -[0,7935,91], -[1,2343,5724], -[0,5725,5726,2514,2523], -[0,97,362,7943,7910,7946,7933], -[0,7935,7948,89,91], -[1,2343,5729], -"meric-separator", -[0,0,0,2514,4139], -[1,2343,5733], -"ptional-catch-binding", -"neotraverse", -[0,5735,5794,5795,2523], -"haining", -[0,1996], -[2,4850,5699], -"top-level-await", -[2,4850,5737], -"-sets-regex", -[2,3656,5739], -[2,4850,5740], -"arrow-functions", -[2,5236,5742], -[3,5743,25], -"sync-", -[3,1626,9], -[2,2168,5746], -[2,5745,5747], -[2,5744,5748], -[3,5749,30], -[2,5750,1222], -"-scoped-functions", -[2,1359,5752], -[2,5236,5753], -[3,5754,34], -[2,5755,3642], -[2,5236,1229], -[3,5757,30], -[2,5758,5707], -[3,5757,29], -[2,5760,3595], -[3,5757,25], -"omputed-properties", -[2,5762,5763], -"destructuring", -[2,5236,5765], -[3,5766,25], -"otall-regex", -[2,5767,5768], -"uplicate-keys", -[2,5767,5770], -[3,5771,34], -"named-", -"capturing-groups-regex", -[2,5773,5774], -[2,5772,5775], -"ynamic-import", -[2,5767,5777], -"expo", -"nentiation-operator", -[2,5779,5780], -[2,5236,5781], -[3,5782,28], -"rt-namespace-from", -[2,5783,5784], -[3,5240,25], -"or-of", -[2,5786,5787], -"unction-name", -[2,5786,5789], -[3,2854,11], -[2,5791,591], -[2,5236,5792], -[0,1414,2931,2899,8099,1177,3456,4039,4042,4135,8098,1894,4614,91,3401,5601,1006,17529,4057,5552,4071,1011,8097], -[0,1177], -"literals", -[2,5236,5796], -[3,5797,25], -"ogical-assignment-operators", -[2,5798,5799], -[3,5241,25], -"ember-", -"ion-literals", -[2,2026,5803], -[2,5802,5804], -[2,5801,5805], -[3,5241,32], -"amd", -[2,5807,5808], -[2,5807,4376], -"umd", -[2,5807,5811], -[2,5236,5775], -[3,5813,25], -"ew-target", -[2,5814,5815], -"ullish-coalescing-operator", -[2,5814,5817], -[3,5818,26], -[2,5819,5728], -[2,5236,77], -[3,5821,31], -[2,5822,4340], -[3,5821,25], -[2,5824,5731], -[3,5825,34], -[2,5826,5734], -[3,5640,25], -"rivate-methods", -[2,5828,5829], -[3,5830,32], -[2,5831,5698], -[3,5830,26], -"operty-literals", -[2,5833,5834], -[3,83,25], -"egenerator", -[2,5836,5837], -[3,5838,26], -"d-words", -[2,4146,5840], -[2,5839,5841], -"short", -[2,3619,1228], -[2,5843,5844], -[2,5236,5845], -[3,5846,25], -[1,2343,5868], -"pread", -[2,5847,5849], -"ticky-regex", -[2,5847,5851], -[2,5236,1243], -[3,5853,25], -"ypeof-symbol", -[2,5854,5855], -"unicode-", -[2,5857,1106], -[2,5236,5858], -[3,5859,32], -[2,4635,1108], -[2,5860,5861], -[2,5860,1108], -"sets-regex", -[2,5860,5864], -[2,88,5260], -[2,1593,4097], -[0,0,0,5869,2523], -[0,5284,6939,1177], -[1,2343,5871], -[0,5872,5884,5885,2537], -[0,8110,1461,8111,1757,2017,8113,6327,8114,3127,3191,8116,3502,8119,3555,3725,3744,8122,4213,8123,8126,8127], -"act-jsx", -[2,5839,5873], -[3,5874,30], -"display", -"-name", -[2,5876,5877], -[2,5875,5878], -"-development", -[2,5874,5880], -"pure-annotations", -[2,5875,5882], -[0,8129,8130,8132,4856,8136,4863,8139,5087,8141,8144,8146,8147,4874,8149,5090,4880,4883,8152,8155,4891,8157,4892,1009,1011,8158,1311,1567,1584,1593,1596,1628,1651,1843,8160,8161,1177,1938,1959,1961,2135,2651,2675,1192,2822,8163,8165,3190,3471,1894,3720,3775,89,3824,3836,4039,4167,4201,4307,4315,4468,4474,4484,91,8166,1002,2924,4677,4681,4693], -[0,8168,8170,8171,6975,8172,8173,1745,8175], -[1,2343,5887], -[0,5890,5892,5893,2537], -[3,5856,28], -[2,5888,1508], -[0,8181], -[3,1261,12], -[0,90,972,4880,4883,1030,89,3824,8187,1541], -[0,8190,8191,5399,4403,8192,8194,89,3824], -[1,2343,5895], -[0,0,0,5897,2537], -"pirates", -[0,8199,2414,8201,8203,6941,8204,1623,2278,6400,5122,8206,6884], -"clone-deep", -[1,2343,5900], -[0,0,0,5901,34352], -[0,8199,2414,8201,8203,447,8211,1623,2278,6400,5122,8206,6884], -[1,2343,5903], -[0,5904,0,5905,4139], -[0,8218], -[0,2414,7176,8220,1017,8221,1367], -[1,2343,5907], -[0,5904,0,5905,2537], -[1,2343,5909], -[0,0,5910,5911,2487], -[0,53,8229,87,90,92,192,5467,442,449,7008,452,6061,21120,6063,966,968,972,5087,4880,4883,1393,1423,1570,1610,1177,1895,1938,1939,1947,1955,1959,1961,1976,1982,2203,2675,1192,2780,1894,3720,89,3824,4039,4131,4468,4474,4493,91,4523], -[0,8220,2132,89,5284,8221,45], -[1,2343,5913], -[0,5914,5916,5918,34352], -[0,3951], -"to-fast-properties", -[0,5087,4874,1009,1011,1177,1879,1883,1895,1938,1939,1947,1955,1192,2794,1894,4468,4469,4474,4508,91], -[2,29288,594], -[0,91,5130,36,5995,3469], -[1,2343,5920], -[0,5937,5958,5964,4139], -"@api", -"devtools/json-schema-ref-parser", -[2,5921,5922], -[3,105,13], -"web-", -[2,5925,4963], -[2,5924,5926], -[3,221,10], -"gherkin-streams", -[2,5928,5929], -"@iframe-resizer/child", -[3,5931,16], -"parent", -[2,5932,5933], -"awilix", -"bpmn-js", -[0,8245,457,1804,8248], -"of", -"-allof", -[2,4381,5939], -[2,2845,5940], -[3,3107,13], -"bbr", -[2,5942,5943], -"ttrs", -[2,5942,5945], -[3,3112,14], -"detabs", -[2,5947,5948], -"multim", -"d-table", -[2,5950,5951], -[2,3108,5952], -[3,4923,13], -"lantuml-ex", -[2,5954,5955], -"task", -[0,8252,4874,1009,1011,1610,1804,8256,1177,1879,1883,1895,1938,1947,1955,1894,4469,4474,4508,91], -"-lists", -"task-lists", -[2,3108,5960], -"-viewer-element", -[2,3512,5962], -[0,91,5130,1804,36,5995], -[1,2343,5976], -"prince", -"svg-", -"pan-zoom", -[2,5967,5968], -[3,4369,11], -[2,5970,1724], -"reso", -"urce-inliner", -[2,5972,5973], -[2,5925,5974], -[0,5979,5916,5984,34352], -"-scss", -[2,4323,5977], -[0,457,8263,8264,24156,1364,2863,3951], -"md", -"bpmn", -"bdd", -"feature", -[0,91,5130,2026,3469,36,5995], -[1,2343,5986], -[0,5987,5988,5991,2487], -[0,31740,8271,8272,8273], -[0,8275], -"exit-hook", -[2,1152,5989], -[0,2220,8277,1745,1783,8278], -[1,2343,5994], -"loki", -[0,5996,5997,5998,2523], -"backend", -[0,32359,6446,8273,8272], -[0,8286,8275], -[0,467,2220,8277,1745,1932,1783,8278], -[1,2343,6012], -[3,107,12], -"y-release-plan", -[2,1133,6001], -[2,6000,6002], -[3,6003,13], -"ssemble-release-plan", -[2,6004,6005], -[3,5522,25], -"onfig", -[2,5518,6008], -[2,6000,2656], -"dependen", -[0,6013,0,6046,2537], -[0,53,87,8292,8294,8296,1165,1195,8297,1593,1610,1628,1630,2092,8301,3177,3561,3618,8304,2278,8306,4111,4383,4027,2924,4677], -"ts-graph", -[2,6011,6014], -[2,2183,6015], -[2,6000,6016], -[3,6017,16], -"release-", -"plan", -[2,6019,6020], -[2,6018,6021], -[3,6017,13], -[2,6023,2403], -[2,6000,2942], -"pre", -[2,6000,6026], -[2,6000,3917], -"-skip-package", -[2,4170,6029], -[2,6000,6030], -[2,6000,553], -"write", -[2,6000,6033], -"@man", -"ypkg/get-packages", -[2,6035,6036], -"editor", -[2,26670,26671], -"human-id", -"mri", -"p-limit", -"pref", -"erred-pm", -[2,6043,6044], -[0,2924,8309,8310,4967], -"spawndamnit", -"term", -"term-size", -[1,2343,6051], -[0,6053,6054,6060,2487], -"@mui/x-internals", -[0,8317,8320,8321,8324,8325,8328,8330,8333,8335,8337,8339,8341,8344,8346,8348,8350,8353,8354], -[0,8357,5500,8358,8359,8362,8364,4874,2036,2812,91], -[3,110,23], -[2,6055,592], -[3,449,25], -"free", -[2,6057,6058], -[0,5130,27,5592,5122], -"@semantic-release/changelog", -[3,6061,18], -[2,6062,3358], -"hub", -[2,6063,6064], -[2,1457,20], -"peer-deps-external", -[2,4049,6067], -[1,5293,6075], -"chat", -"reactjs", -" interface", -[2,4569,6072], -"ui kit", -[0,8391,6087], -"unication", -[2,1514,6076], -"conver", -"sation", -[2,6078,6079], -"toolkit", -"library", -"reusable", -"feed", -"social", -"talk", -1724872768784, -[1,2343,6089], -[0,6090,6091,6093,2523], -[0,8506,3776], -[0,192,5467,8509,8511,6061,6063,16480,1177,2675,2742,8512,2990,1894,4131,1984], -"ckeditor", -[0,1776,1894,4298,1745,5284], -"ckeditor 5", -"-feature", -[2,1459,6095], -[3,6096,10], -[2,6097,1932], -"dll", -[2,6097,6099], -[1,2343,6102], -[0,6103,6104,6114,2537], -[0,5917], -[0,11976,8520,26364,966,968,972,974,4874,4880,8524,8527,8528,8529,1030,1091,8531,1092,6685,8534,8536,6809,7250,1610,8537,8556,8538,7091,8539,2812,2832,8540,3165,8543,8544,8547,3400,89,3824,3833,3951,7080,7103,91,8550,7114,1983,8552,1984,6482,4763], -"wysiwyg", -"rich text", -"Editable", -[2,1563,6107], -"edit", -"editing", -"angular2", -"angular 5", -"ng", -[0,6659,7020,7130,6663,3833,6482,2812,7080,91,4763,7114,6809,7091,8558,7209,7250,7103,1091,7196,6685,8560,8561,8556,29291], -[1,2343,6116], -[0,6117,5795,6118,2537], -[0,4548], -[0,8571,8572,8573,8570,1885,8574,5592], -[1,2343,6120], -[0,6121,6122,6123,2523], -[0,8579,8582,8585,8181,3021], -[0,4039,188,4639], -[0,188,8588,8591,4967,5130,181,12,4627,4963,5001,837], -[1,2343,6125], -[0,6128,6129,6130,2537], -[3,153,22], -[2,6126,2389], -[0,7905,542,1668,3021], -[0,8597,4039,188,4639], -[0,188,8588,8591,4967,5130,181,4627,4963], -[1,2343,6146], -"ditor-balloon", -[2,151,6132], -"@jest/pattern", -"oper", -"al transformation", -[2,5218,6136], -[2,6135,6137], -"ot", -"colla", -"boration", -[2,6140,6141], -[3,6142,11], -[2,6143,4936], -"real-time", -[0,6149,6150,6151,2537], -"build", -[2,6097,6147], -[0,31874,8604,8605,8611,34224,8612,4174], -[0,8616,8608,4874,91], -[0,8618,8619,8620,1299,200,1523,6876,8622,1836,8623,1179,8624,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,8632,8633,4989,2184,8634,7009,6621,181,8635,4758,8636], -[1,2343,6153], -[0,6154,6155,6156,2399], -[0,4484,2735,8641], -[0,1192,2278,1437,2020,4146,8643,1177,4042,2151,2774,1894,4320,5087,4874,8645,6376,8647,30071,4328,8648,8651,8653,8654,8656,8659,8660,8661,1895,1011,8665,816,8669,8671,1009], -[0,2733,5130,8673,5131,1896,8674,8675,1591,1804,8677,8678], -[3,6133,27], -[2,6157,128], -[1,2343,6160], -[0,0,6161,6162,2537], -[0,4874,668,1894,4384,4483,4508], -[0,200,6876,8691,4964,7201,4719,176], -[1,2343,6169], -[2,117,2414], -"lignment", -[2,112,6165], -[3,132,9], -[2,6157,6167], -[0,6170,0,6171,2537], -[0,8697], -[0,91,1541,3421,1973,4504], -[1,2343,6174], -[2,6157,134], -[0,6175,6176,6177,2537], -[0,8703,8710,8712,8714,1461,8716], -[0,8719,842,968,972,974,7677,1177,1895,8724,2832,89,3824,91,1983,1984], -[0,4627,4963,8727,4964,5130,4967,8728,8729,5128,89,181,1487], -"blurhash", -[1,2343,6180], -[0,6181,6182,6183,2537], -[0,8744,6134,8752,8762,8755,554,4874,1107,1437,1458,29680,2215,8769,8734,8750,8765,8758,2797,8771,8737,8739,8746,2798,8747,8741,3170,3717,4207], -[0,8782,8776,8780,8778], -[0,1166,1172,4504,8784,2022,3497,8786,8787,2765,1192,2832,2899,8788,8790,2907,8791,8795,8745,4384,4389,1973,5472,91,2282], -[1,2343,6185], -[0,6186,0,2514,2537], -[0,6134,8801,8809,8806,4874,4892,1437], -[1,2343,6188], -[0,6189,6190,6191,2487], -[0,8818,1091,1092,1209], -[0,549,8826,1009,1011,1166,8832,1177,1895,1938,1955,2832,3421,1894,3875,8824,4039,4042,4052,4076,4079,4232,4474,4484,4508,91], -[0,1669,25,1781,8836,4967,1179,6847,7020,8838,2860,2844,8839,8691,8841], -[2,6097,1095], -[1,2343,6194], -[0,6195,6196,6198,2523], -[0,8846,1673,1209], -[0,7948,370,618,622,626,811,8850,816,6373,4863,5087,4880,4883,1009,1011,8158,1584,1843,1177,1895,1938,1955,1959,1192,2780,2832,3421,1894,89,3824,4039,4042,4052,8849,8853,4076,4079,4230,4468,4469,4484,4508,91,2924,4677,4681,555,560], -[3,191,21], -[0,29,3902,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], -"atchdog", -[2,6197,6199], -[1,2343,6202], -[0,6203,6204,6205,2487], -[0,1209], -[0,8862,4863,5087,8860,4880,4884,1009,1011,8158,1610,1843,1177,1895,1938,1955,1959,1192,2832,3421,1894,89,3824,3876,3875,8824,4039,4042,4052,4076,4079,4468,4484,4508,91,555], -[0,89,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], -[1,2343,6207], -[0,6208,6209,2514,2537], -[0,6059,8918,8923,8928,8926,8934,8921,8913,8931,8932,8894,8916,8892,8897,8906,8900,8887,8910,8902,8890], -[0,8937,5087,1192,4039,91], -[1,2343,6211], -[0,6212,6213,6218,34352], -[0,1110,1282,1437,1537,8942,2070,8944,2822,8947,3072,3181,3188,8949,4039,8951,8952,8954,8957,8959,4431,4562,4600,4603,8962], -[0,1173,8966,1255,1264,1596,1672,2835,2899,3421,8967,4100,4193,4255,4597], -"ndo", -[2,183,6214], -"select-all", -[2,117,6216], -[0,2278,4329,1623,2295,1745,4298,699], -[1,2343,6220], -[0,0,0,6221,2399], -[0,8980,8984,8987], -[1,2343,6223], -[0,6224,6225,6226,2523], -[0,8605], -[0,546,8997,8998,2992], -[0,2991,2992,200,5957,3392,9000,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], -[1,2343,6228], -[0,6229,6230,6231,2487], -[0,8703,1497,3867,9008,9011,4507], -[0,89,3824], -[0,4963,4964,4967,6082,3286,3287,89,181,630], -[1,2343,6233], -[0,6234,6230,6235,4139], -[0,1497], -[0,9026,4963,1666,4967,6082,3286,3287,3811,89,6901,181,630], -[1,2343,6237], -[0,0,0,6238,2523], -[0,4967,582,6082,3286,3287,89,6687,6649], -[1,2343,6240], -[0,0,6230,6241,2487], -[0,4963,8622,4967,6082,5066,3286,3287,89,181,630], -[1,2343,6243], -[0,6244,6230,6245,2487], -[0,9041,3911], -[0,4963,4967,6082,3286,3287,9044,9045,9047,89,181,630], -[1,2343,6247], -[0,6248,0,6249,2537], -[0,9054,595], -[0,89,3286,3287,181,4963,630,6082,4967,1501,5342,5341,9057], -[1,2343,6251], -[0,6252,0,6253,2399], -[0,1497,1639], -[0,89,3286,3287,181,6082,4967,1832,7165,7297], -[1,2343,6255], -[0,0,0,6256,2523], -[0,89,3286,3287,6082,4967,6687,582,6649], -[1,2343,6258], -[0,6259,0,6260,2537], -[0,1497,3847,3559,3744,97,9075,9076,9071,9074,3911,2609,4808], -[0,89,5128,5027,3132], -[1,2343,6262], -[0,6263,0,6264,2537], -[0,97], -[0,89,5128,5027,3132,45], -[1,2343,6266], -[0,0,6267,6273,2537], -[0,1192,3348,2675,1177,1209,1593,4474,4508,1894,1317,48,1193,91,53,5087,7819,3400,4870,107,192,5366,87,1978,3957,1895,1955,4514,92,603,9089,1011,5467,1009,61,78,76], -"color-parse", -"color-", -"convert", -[2,6269,6270], -"vanilla-colorful", -[0,1781,5592,9091,9093,1753,9094,4525,91,4799,5995,6400], -[1,2343,6275], -[0,6276,0,6277,2523], -[0,9100], -[0,1219,1783,9102,89,3984], -[1,2343,6279], -[0,6280,6281,6282,2399], -[0,608,606,1687,1209,3181,814,4135,4227,91,9111,9110,9113,9119,9121], -[0,9125,4870,5251,5254,1177,29339,9130], -[0,91,8172,9132,9133,9134,8623,1745,6432,4056,7897,4042,6374,4643,9135,9136], -"@aws/durable-execution-sdk-js", -"vue.js", -"vue component", -" component", -[2,6284,6286], -[1,2343,6289], -[0,0,6290,6291,2537], -[0,1177,9125,9141], -[0,6869,1745,2295,4298,9132,57,4255], -[1,2343,6293], -[0,6294,6295,6291,2537], -[0,1091,9153,814,606], -[0,1177,9156,5251,9125,9141], -[3,192,12], -[2,6296,1671], -[2,6296,671], -[3,6298,13], -"oad", -[2,6299,6300], -[2,6296,3917], -[2,6296,553], -[1,2343,6310], -[3,6303,13], -[2,6305,4467], -[2,6296,594], -[3,4872,14], -[2,6308,1698], -[0,0,6311,6312,2523], -[0,6283,33639,9163,9167,4874], -[0,9169,9170,9171,9172,9173,9174,33959,33964], -[1,2343,6314], -[0,6321,6322,6340,4139], -[3,195,10], -[2,6315,2997], -"ngd-transformer", -[2,6315,6317], -".native", -[2,1367,6319], -[0,615], -[0,609,9167,4507], -"decache", -"-plugin-", -[2,6324,3665], -[2,3079,6325], -"lunr", -"openc", -"ollective-postinstall", -[2,6328,6329], -"os-name", -"pdfmake", -"sort", -"tablesort", -"vis-network", -[2,6337,6338], -[3,10088,18], -"-list", -[2,10217,6341], -[0,9169,9170,9171,9172,9173,9174,9182,9183,8172,6671,9184,9186], -"icky", -[3,197,10], -[2,6342,553], -[1,2343,6350], -"semantic", -"actor", -"messages", -[2,698,9352,6349,10029], -"scroll-b", -[0,0,6353,6356,2537], -[2,6352,1633], -[3,6348,22], -[0,9193,609,9167,4874,9196], -"cms", -"management", -[0,9169,9170,9171,9172,9173,9174,1383,614], -[1,2343,6358], -[0,0,0,6359,2523], -[0,9203,4967,9204,1283], -[1,2343,6361], -[0,6362,6363,6364,2537], -[0,9213,9215,9217,9218,9219,9221], -[0,192,5467,9225,9226,8648,9227,6494,9231,9237,4874,5542,24360,9240,9241,1170,1364,1527,1594,1610,1652,9242,2026,9243,9244,2131,2212,2559,2832,3310,9245,4218,4220,9247,4339,4342,1531,91,4548,1984,9250,9252,9255,2924,9258,4729], -[0,705,9261,27,2671,4738,4731,1612,9262,3212,4158,5472], -[1,2343,6366], -[0,6263,0,6367,2537], -[0,89,5128,9267,3132,5027,45], -[1,2343,6394], -"@doc", -"search/js", -[2,6369,6370], -"@popperjs/core", -[2,812,4068], -"bundle", -"bundlewatch", -[2,1462,20], -"find-u", -"nused-sass-variables", -[2,6377,6378], -"hammer", -"-simulator", -[2,6380,6381], -"hugo-bin", -"-istanbul-reporter", -[2,2886,6384], -[2,1868,2903], -[2,2898,6386], -"mbine-duplicated-selectors", -[2,3573,6388], -[2,4049,2759], -"twbs-bootstrap", -[2,4942,6391], -"vnu-jar", -[0,6397,0,6401,2487], -"-first", -[2,5131,6395], -[0,1497,9272,9273,3744,624,97], -"responsive", -"front-", -"front-end", -[0,89,5128,9267,3132,5027,620], -[1,2343,6403], -[0,6404,0,6405,2537], -[0,1497,1639,3847,9272,9273,3744,624,97,6372,3911,9284,4808], -[0,89,5128,9267,3132,5027], -[1,2343,6407], -[0,6408,0,6409,34352], -[0,1497,1639,9272,9273,3744,97,4782,9293], -[0,89,5128,9267,623], -[1,2343,6411], -[0,6412,0,6414,2537], -[0,97,9273,4808,1497,3744,3911,6052], -"media", -[0,89,5128,9267,9300,3132,5027,3812,9301,9302], -"media query", -[1,2343,6417], -[0,6418,6419,6420,2523], -[0,9307,9308,9310,9311,9312,9313,9315,9316,9317,1461,1473,9319,9321,9322,2070,2226,9324,9327,9329,9334,9337,9340,3988,9343,9347,9348,9351,4507,4549,4555,2924,9354,9355], -[0,9357,9359,9362,9363,4880,4891,1165,1540,3286,3613,89,3824,3958,4383,4493,91,9364,9367,9368], -[0,9102,1745,3287,1783], -"matches", -"polyfill", -[3,3668,9], -"lugin", -[2,6423,6424], -"pseudo", -[1,2343,6428], -[0,6429,0,6430,34352], -[0,9375,9376,9378,9379], -[0,1098,1745,1179,9381,9382,5592,9383,9384], -[1,2343,6438], -[3,4325,11], -[2,6432,591], -[3,217,11], -"utility", -"variables", -"vars", -[0,6439,0,6430,2443], -[0,4484,628], -[1,2343,6441], -[0,6442,0,6430,2523], -[0,3958,9393,3971,3978,7610,9396,9401,2584,4555,9405,9407,9409,1437,9348,4549,4292], -"specificity", -[1,2343,6445], -[0,6459,6460,6480,2523], -[2,6447,25240], -[3,465,19], -[3,221,11], -"i-environment", -[2,6448,6449], -[2,3228,5709], -[2,221,6451], -[3,5930,17], -[3,5930,18], -[2,6454,594], -[2,2617,4525], -[2,5928,6456], -"message", -[0,9414,1690,1431,9417], -[0,1429,1363,2899,1177,9420,4039,9422,4474,2182,1894,91,4856,4874,9424,1325,1951,1938,1895,1955,1011,9426,1009,634,9431,9437], -"-streams", -[2,6458,6461], -[2,5928,6462], -[3,6463,17], -[2,6464,591], -"tag-expressions", -[2,5928,6466], -[3,5710,9], -"-error-formatter", -[2,6468,6469], -"capital-case", -[2,4250,57], -[2,3827,6472], -"has-ansi", -"knuth-shuffle-seeded", -[2,3060,5056], -"resolve-pkg", -"argv", -"string-argv", -[0,9439,9440,9422,5472], -"util-arity", -"yup", -[1,2343,6506], -"ompa", -"tibility-kit", -[2,6484,6485], -[2,6448,6486], -[2,5928,3766], -"-xml", -[2,4856,6489], -"@types/d", -"irty-chai", -[2,6491,6492], -[2,4861,674], -"@types/h", -"as-ansi", -[2,6495,6496], -[2,6309,5056], -"@types/l", -"uxon", -[2,6499,6500], -"@types/m", -[2,6502,1950], -"ustache", -[2,6502,6504], -[0,6531,6534,2514,2523], -"@types/mz", -[3,5090,10], -"gress", -[2,6508,6509], -"inon-chai", -[2,5051,6511], -[3,6512,12], -"js__fake-timers", -[2,6513,6514], -[3,4890,9], -"-buffers", -[2,2187,6517], -[2,6516,6518], -"@types/tmp", -"exclude", -[2,1432,6521], -"xml", -"chai-xml", -[2,5313,671], -"genversion", -"reindent-template-literals", -"stream-t", -"o-string", -[2,6528,6529], -[0,9501,9452,9510,638,9496,9493,641,9479,9456,9459,643,9449,9448,9485,2613,9472,3084,3181,3368,9465,3386,9462,3397,3483,9476,3727,9447,9490,9469,4135,4248,9451,9455], -"gherkin", -"tests", -[0,9516,26037,9515,1317,9520,3297,4384,4393,9512], -[1,2343,6536], -[0,6537,6538,6542,2523], -[0,9493,9479,2070,3181], -[0,9516,9515,4384], -[3,6503,10], -"k-fs", -[2,6539,6540], -[0,3378,3409,2977,200,9527,637], -"-compare", -[2,5254,6543], -[3,6512,9], -"gnale", -[2,6545,6546], -"mock-pro", -"cess", -[2,6548,6549], -[2,2769,6550], -[2,4135,6543], -"signal", -"signale", -[1,2343,6556], -[0,0,6538,6558,2399], -"deven", -[0,3378,200,640], -[1,2343,6560], -[0,6561,6562,2514,2487], -[0,641,9479,9539,640,3727,4707], -[0,9516,9515,9542,4384], -"toobject", -[3,3568,10], -"urable", -[2,1541,6565], -"promises", -"ReactiveX", -"WeakSet", -"ES3", -[1,2343,6576], -"cloudsearch", -"uninstall", -"windows", -"cjk", -[0,6595,6603,6604,2523], -"negative", -"shar", -"shared", -"Symbol.toStringTag", -"full-width", -"Object", -"Array.prototype.flatMap", -"Uint8", -"ClampedArray", -[2,6584,6585], -"start", -"starter", -"infer", -"ence", -"inference", -[3,6583,17], -"indLast", -[2,6592,6593], -[0,9547,9548,9550,3105,2745,9552,9554,9556,9558,9560,9562,3023,9563,4110,7610,9565,9566,3032,9568,3114,9569,9573,9577,5961,9580,9584], -"replay", -"[[Prototype]]", -"es7", -"cloud", -"ion", -"formation", -[2,6599,6601], -[0,2070,2899,1448,4255,9586,1389,9588,4257], -[0,9591,3987,2195,9593,1783,5980,1745,9595,1936,3378], -"look", -"last", -"regular expression", -"ECMAScript 2023", -"hot", -"rm -fr", -"chinese", -[1,5293,6617], -"consume", -"look-up", -"ES8", -"rgb", -[0,8391,6628], -"deep-copy", -"iam", -"ES2022", -"tty", -"status", -"length", -"view", -"dom-t", -"esting-library", -[2,6625,6626], -1734998400000, -"elb", -[1,2343,6655], -"getter", -[3,6608,13], -"19", -[2,6632,6633], -"macos", -"__proto__", -"asserts", -"deepclone", -[3,2779,11], -[2,6639,591], -"crypt", -[3,6634,14], -"8", -[2,6642,6643], -"push", -"monorepo", -"lone", -"fast-clone", -"state", -"lru", -[2,1177,1541], -"endpoint", -"a11y", -"weakmap", -[0,6656,0,6658,2537], -[0,666], -"streams2", -[0,9621,9622,8174,9623,9624,9625,9626,9627,9628], -"scheme", -".json", -[2,3383,6660], -"ajax", -"hookform", -[1,2343,6672], -"autoscaling", -"packages", -"linux", -"rfc4122", -[3,2069,10], -[2,6669,1585], -"JSON", -[0,6675,0,6658,2399], -"matchAll", -"iterate", -[0,3420,4484], -[1,2343,6679], -"structuredClone", -"trim", -[0,6682,0,6658,2537], -"@cfcs/core", -[3,3518,11], -[0,683], -"findLast", -[1,2343,6699], -"arktype", -[3,3833,10], -[2,6686,591], -"prototype", -"sigint", -"sinatra", -"Object.", -"value", -"values", -[2,6691,6693], -"reduce", -"reducer", -"Function.prototype.name", -"lockfile", -[0,6712,6717,6658,2523], -"full", -"fullwidth", -"groupBy", -"wait", -"duplex", -"css less", -"helpers", -"optimize", -"optimizer", -"emr", -"nodejs", -"defineProperty", -[0,29309,1797,4484,4135,4748,3181,1836], -"pyyaml", -"call", -"bind", -"callbind", -[0,1192,3420], -"styleguide", -[1,2343,6722], -"watchFile", -"code ", -[0,6730,6736,6744,2537], -"code points", -"Index", -[2,6683,6724], -"Map", -"flatMap", -"l10n", -"WebSocket", -[0,4484,677,666,3527,27921,4480], -"utilities", -"high", -"er-order", -[2,6732,6733], -"dataview", -[0,3420], -"handling", -[2,3827,6737], -"define", -"ebs", -[2,1177,1932], -"estree", -[2,6642,2855], -[0,9621,9647,9623,9628,9648,9649], -[1,2343,6756], -"ES2015", -[3,6608,11], -[2,6747,1278], -"operati", -"ng-system", -[2,6749,6750], -"RegExp#flags", -"loading", -"range", -"rangeerror", -[0,6757,6736,6767,2537], -[0,4484,677,4135,666,91], -"accessor", -"ESnext", -"limited", -"RFC-6455", -"URLSearchParams", -"es-shim API", -"col-buffers", -[2,4900,6764], -"lesscss", -[0,9621,9623,9657,9658,9628,9659], -"nce", -"sequence", -" system", -"file system", -[1,2343,6785], -"pnpm9", -"metadata", -"YAML", -[3,3405,12], -"ES2023", -"es2015", -"simpledb", -"hasOwn", -[2,5010,6972], -"debugger", -" zero", -[2,6577,6783], -[0,6815,0,6819,34352], -"fast-copy", -"spinners", -"predictable", -"ES6", -"rm", -[3,6583,16], -"contain", -"contains", -[2,6791,6793], -"japanese", -[3,6608,14], -[2,6796,1274], -[2,20413,2659], -"byteOffset", -"setter", -"Object.keys", -"flags", -"key", -"ender", -"ponyfill", -[2,20413,8124], -"logging", -"sns", -[2,4626,1155], -"ses", -"output", -"worker", -"export", -[2,1204,6813], -[0,4484,677,682,666], -"tester", -"waf", -"setImmediate", -[0,9621,9624,9667,9626,9627,9628,9649], -"typedarrays", -"walking", -"descriptor", -[1,2343,6826], -"hardlinks", -"buffers", -[0,6833,6736,6851,2443], -"typesafe", -"Set", -"CSS", -"es-abstract", -"agegateway", -[2,4268,6831], -[0,1437,4484,2687,4135,1513,9673,3530,666,3527,27921,53,1710,2858,3404,683,97,29309,87,4232,7913,9676,92,83,71,5757,9678], -[2,6838,1172], -"cloudfront", -"7", -[2,6642,6836], -[3,13067,16], -"ES2019", -[2,6855,6872], -"reuse", -"acter", -"character", -"prese", -"rve-symlinks", -[2,6844,6845], -"input", -[3,1461,9], -"Underscore", -"ec2", -[0,9621,9623,9624,9680,9681,9628,9648,9649], -[1,2343,6861], -"indicator", -"AsyncIterator", -"@vue/cli", -"performant", -"folder", -"Stream", -"0", -"ES2020", -[0,6862,0,6880,2537], -[0,4484,677,682,666,672,9687], -[2,6822,591], -"te", -"delete", -"arraybuffer", -[2,6579,6866], -"emit", -"TypeScript", -"batch", -"rds", -[3,4075,18,6], -[2,6896,11100], -"Uint16Array", -"password", -[3,1519,12], -" manager", -[2,3383,6877], -"mru", -[0,9621,9624,9625,9626,9627,9628,9649], -"byteLength", -"rate", -"css ", -"variable", -[2,6883,6884], -[1,2343,6895], -"speed", -"own", -"has-own", -".env", -"elm", -"ast", -"6", -[2,6747,6893], -[0,6900,6736,6880,4139], -"@vue/cli-", -" compiler", -[2,695,6897], -[3,3938,9], -[0,4484,677,4774,29540,666,26784,672,18052], -"time", -[2,1955,12054], -"bundling", -[2,6916,1987], -"Uint32Array", -[1,2343,6908], -"minimal", -[0,6909,6736,6658,34352], -[0,3420,1437,4484,4135,1836,3530,666,4748,29309], -"collection", -" css", -"nested css", -"slice", -"has", -"sorted", -[3,4079,15], -"iteration", -"ES2021", -"Float32Array", -"regular", -"idle", -"column", -"Iterator", -[1,2343,6927], -"throttle", -"guid", -[0,6928,6934,6936,2537], -[0,687,9704,9706,9708,1676,4135], -"watching", -"sqs", -"vue 3", -"less css", -"glacier", -[0,9712,4856,6503,4874,5254,1429,1488,1567,1177,1891,1893,9714,2205,2899,4193,4474,91], -"sett", -[0,1890], -"settings", -"ascii", -[3,1920,13], -"break", -"inter", -[1,2343,6978], -"internal", -[2,6691,3437], -[2,6747,6836], -"Array", -"Buffer#slice", -[2,6946,6947], -"s3", -"shrinkwrap", -"sham", -"art", -"safe", -":*", -[2,664,6954], -[3,6677,9], -[2,2382,6956], -"Property", -[2,6780,6958], -"korean", -"regexp", -[2,1367,6911], -"beanstalk", -"ES5", -[2,3632,6911], -"take", -[3,6962,10], -[2,6967,695], -"tdd", -"jQuery", -"enum", -"-vanilla", -"enumerable", -"hot-shots", -"JSON-Schema", -"workflow", -"CSSStyleDeclaration", -[0,6982,6984,6936,2523], -"route53", -"wordbreak", -"columns", -[0,9704,9706,1676,2205,2755,4484], -"formatting", -[0,4856,9723,4870,6503,4874,9725,8610,1429,1567,1177,1891,1893,9714,1209,2899,3752,4474,91], -"one", -"fastclone", -"shebang", -"number", -[1,2343,6992], -"ache", -"elasticache", -[0,6995,6999,7000,2537], -[2,6838,7005], -"concurrency", -[0,1107,1112,9730,1480,1676,1797,2179,2709,2755,2984,3181,4135,4290,4351,27921,9731,4720,4726], -"bundler", -"amazon", -"toSorted", -[0,5467,19438,691,9712,9736,9737,5366,4856,9417,9740,5245,9741,9723,6503,4874,9743,6513,9746,9749,8610,1317,1429,1431,1529,1610,1177,1891,1895,2675,2990,9750,2899,3421,1894,4172,4193,4474,4481,91], -[0,1890,200,1523,9753,57,7058,6478], -"chromium", -"obj", -"await", -"move", -"unit-mocha", -"symlink-dir", -"persistent", -[2,11169,7036], -"terminal", -"coercible", -"ES2016", -[1,2343,7013], -[0,7030,7032,7034,2487], -"identifiers", -"includes", -"swf", -"readable", -"protobuf", -"form-", -"validation", -[2,7019,7020], -"RxJS", -"busy", -"fps", -[2,6965,1278], -"-0", -"Observable", -"mixins", -"parents", -[0,688], -"typeof", -[0,5467,19438,9736,9737,4856,6503,4874,1429,1529,1177,1891,1895,2675,2990,2899,1890,1894,4172,4474,91], -"interrupts", -[0,9760], -"fastcopy", -"brands-svg-icons", -"prune", -[3,6583,20], -[2,7038,2395], -[2,7027,591], -"Microtask", -[2,3768,7041], -[1,2343,7063], -"es2018", -"circular", -"streams", -"runtime", -"make", -"serializ", -[2,7049,5218], -"limit", -"Dispatcher", -[2,2013,7052], -"balancing", -[2,3001,7054], -"es2016", -"WebSockets", -"args", -"ath", -"jsonpath", -[2,6796,1276], -"visual", -[0,7066,7068,7079,2537], -"positive", -"es-shim", -[0,7725,9767,9771,9774], -"every", -[0,9778,9781,9783,9785,9786,4874,7677,668,2086,2070,3297,1894,9794,91,4548,1984], -"trimRight", -"mimetypes", -"handlers", -"ratelimit", -"signals", -"rmdir", -"es8", -"findup", -"stable", -"robust", -[0,9796,2195,4030,9797], -"superstruct", -".es6", -[2,6910,7081], -"intrinsic", -[3,6948,11], -"curl", -"symlinks", -"ES2018", -[1,2343,7093], -"writable", -"rapid", -"io-ts", -"weak", -[0,7095,0,7097,2537], -"throat", -[0,9804,9807,9810,9811,9813,9815,9819,9821,9829,9834,9838,9841,9843,9846,9848,9849,9850,9852,9855,9856,9858,9861,9862,9864,9866,9869,9871,9873,9874,9875,9878,9933,9935,9937,9938,9940,9941,9945,9949,9953,9955,9957,9960,9964,9967,9969,9971,9974,9977,9979,9983,9985,9986,9989,9991,9993,9996,9998,10001,10004,10006,10007,10009,10013,10014,10016,10019,10021,10024,10026,10027,10030,10032,10034,10037,10041,10044,10047,10048,10049,10051,10053,10055,10058,7127,10060,10063,10065,10066,10068,10075,10077,10081,10083,10084,6336,10088,10092,10094,10097,10102,10105,10107,10110,10114,10117,10119,10126,10128,28711,10130,10131,10132,10134,10135,10137,10139,10142,10144,10145,10146,10147,10149,10151,10153,10156,10159,10162,10163,10165,10167,10170,10173,10178,10180,10183,10186,10188,10191,10193,10195,10197,10198,33633,10200,10201,10203,10204,10206,10207,10208,33138,10210,10213,10216,10219,6339,10223,10226,10228,10229,10230,10231,10234,10235,34233,10237,10239,10241,10245,10247,10248,10249,10250,10253,10255,10260,10262,10264,10267,10269,10272,10273,10275,10276,10278,10280,10283,10285,10290,10291,10292,10293,6348,6351,10295,10300,10302,10304], -"restful", -[0,188,8588,4967,10307,4963,10309,10310,10313,10315], -"deep-clone", -"Rx", -"symlink", -"vpc", -"whatwg", -"typanion", -"Float", -"64Array", -[2,7104,7105], -"$.extend", -"Promise", -"Reactive", -"Extensions", -[2,7109,7110], -[1,2343,7113], -[0,7118,7124,7097,2523], -"vest", -"from", -"-package", -[2,3250,7116], -[0,28591,29506,1473], -"parsing", -"or", -[2,4358,7120], -".inspect", -[2,614,7122], -[0,10321,4493], -"fromEntries", -[2,6691,7125], -[2,10056,1631], -"getopt", -"-validation", -[2,6659,7129], -"filter", -"Emitter", -[2,2013,7132], -"URL", -"fixed-width", -[1,2343,7137], -[0,0,7138,7097,4139], -[0,48,53,87,2071,2323,2332,2361,2367,2450,10327,10328,4039,4320,4323,4361], -[1,2343,7140], -[0,0,7142,7097,4139], -"encryption", -[0,48,53,87,2323,2332,2361,2450,4039,4320,4323], -[1,2343,7154], -"TypedArray", -"isConcatSpreadable", -"StyleSheet", -"create", -"mkdir", -"mkdirs", -"zero", -"sameValueZero", -"linewrap", -"side", -[0,0,0,7156,2537], -"listeners", -[0,10337,10339,10340,5122,5995,977], -"censor", -"watcher", -"typeerror", -[1,2343,7166], -"make dir", -"bound", -"patch", -"in-js", -"css-in-js", -[0,7173,0,7186,2537], -"deepcopy", -"setPrototypeOf", -"characters", -"pipe", -[2,6747,2855], -"Push", -[0,10347,10348,703,10351,10353,10354,10355,10357], -"trail", -"cloudtrail", -"awesome", -"sauce", -[2,7176,7177], -"banner", -"redux-t", -"oolkit", -[2,7180,7181], -"dete", -"rministic", -[2,7183,7184], -[0,10337,10339,10340,5122,5995,990,705], -[1,2343,7195], -"extension", -"lazy", -[3,1705,10], -[2,7190,6877], -"es2017", -"search", -"ES2017", -[0,7203,0,7206,2523], -"TypeBox", -" in css", -[2,6436,7197], -"Streams", -"aws", -"console", -"Reflect.getPrototypeOf", -[0,10363,3171,10367,10351,703,10370,10373,706,711,10374], -"directory", -[2,6607,591], -[0,10337,10339,10340,5122,5995,10376], -[1,2343,7216], -"colour", -"nope", -"flag", -[3,2982,14], -"syntaxerror", -[3,3904,10], -[2,7213,1974], -"kinesis", -[0,7217,0,7225,2537], -[0,3171,10382,10373], -"rm -rf", -"exit-", -"exit-code", -"ES7", -"jsdiff", -"private", -"slot", -[0,10337,10339,10340,5122,5995,10376,710,10384], -"sigterm", -"group", -"less.js", -"gdpr", -"east-asian-width", -[3,6820,10], -"Int32Array", -"argument", -"compile", -" less", -[2,7234,7235], -[1,2343,7238], -[0,7240,7243,7246,2537], -"callbound", -[0,10389,1170,1364,1437,2026,2220,2222,2659,2674,2817,1209,3776,10397,38,13781], -"callback", -"installer", -[0,48,53,87,10401,4856,9417,6494,10406,4870,6503,10410,4874,10413,6513,6512,24164,1009,1011,1429,1431,10417,1587,1177,1881,1883,1895,1915,10419,1938,1951,2899,3297,3421,1894,3752,4039,4193,4196,4232,4494,91], -"256", -"tostringtag", -[0,10426,10427,5284,10430,5472,10432], -" data", -[2,7223,7247], -"uted-types", -[2,1534,7249], -"nel", -"channel", -"iterator", -"mapreduce", -[2,7017,3101], -[3,5804,10], -[1,2343,7261], -"less mixins", -[2,6796,6859], -"forEach", -[0,0,0,2514,2399], -"description", -"Symbol", -[1,2343,7266], -"generics", -[0,7267,0,7269,2487], -[0,3509], -"stdlib", -[0,6649,6355,89,188,3709,1542,91,5284,4967,5995,2202,181,2130,38], -"typed array", -[1,2343,7273], -"call-bound", -[0,7274,7277,2514,2537], -[0,10593,10594,10596,10597,10600,10602,10603,10604,10605,10606,10608], -"WeakMap", -[2,6691,3426], -[0,4856,6503,1429,1628,1863,2297,2881,2895,2897,2900,2904,2899,4039,4940,4307,4508,91,2924], -[1,2343,7279], -[0,0,7280,7281,2537], -[0,8648,10614,816,10615,966,968,13204,4874,10616,1637,1177,28727,10619,32765,10621,2203,2832,3561,3566,1894,10624,10627,3980,10630,10632,4042,4057,4076,4333,4474,4484,4494,4508,10633,4514,10636,10638,10639,10643,30098,91,10646,4614,32507], -[0,6653,7320,10655,10650,10648,1623,4964,9204,10657,10656,1745,10052,10667,1936,10661,4374,3430,5284,10651,10663,4386,10665,10658,10654,10659,91,8295,4270,28842,89,582], -"stateless", -[3,6670,11], -[2,7283,6647], -"telephone", -"some", -"efficient", -"_.extend", -"wget", -[3,6594,18], -"lter", -[2,7290,7291], -"remove", -[1,2343,7302], -"soft", -"Microsoft", -"styling", -"ie", -"HyBi", -"Int16Array", -"cloudwatch", -[0,7304,7306,2514,2537], -"css nesting", -[0,10675], -"mime-db", -[0,10708,10703,10691,10706,1178,10688,1700,10677,1937,2151,10697,2323,2338,2384,2419,2496,2508,10686,10678,3159,3493,10683,10681,4431,91,10687], -[1,2343,7312], -"dynamodb", -[2,6642,6893], -"phone", -"Int8Array", -[0,7314,7321,7322,4139], -".prototype.flags", -[0,1091,1758,4449,10739,2070,2278,1149,9892,10761,4747,1177,4039,4135,4072,4734,2026,10752,10756,1290,1457,1764,2720,1894,4171,1513,10753,10757,1389,10754,2689,3160,3310,53,3429,10760,104,10759,58,692,4228,10746,101,10737,4005,4562,5216,10748,87,10738,10755,90,10721,1942,3957,68,10723,2851,10744,4851,92,10731,10734,10751,5874,10728,5756,10720,5818], -[3,7313,11], -[2,7315,6913], -[2,7084,7316], -"access", -"ibility", -[2,7318,7319], -[0,4389,10763,4232], -[0,10765,4643,200,5130,6400,10766,5131,10768,5995,8889,10769,10771,5256,10772,7028,5198], -[1,2343,7324], -[0,0,7325,7326,34352], -[0,1177,6059,10777,10779,10780,10783,10785,1613,1615,10786,2151,2735,10788,27921,33050], -[0,10791,5130,10792,45,10793], -[1,2343,7328], -[0,7329,7330,7331,34352], -[0,3763,2813,10800,10799,2771], -[0,2675,89,4426,1177,4042,1651,2924,1894,10852,3824,4270,91,5087,4874,4880,10846,10858,3889,10855,10810,192,10837,4883,3885,10805,4057,10808,2686,1959,1879,1938,4073,10848,10854,10828,10831,972,1895,1947,1955,811,10851,10821,4023,10817,10840,968,1011,1961,10815,10841,10811,816,10825,974,10827,4531,5467,1883,10844,1009,6068,10836,5700], -[0,89,4426,10860,10863,10865,10866,10867,10868,4967], -[1,2343,7333], -[0,7334,7335,7337,2523], -[0,26364,5917,2696,3875,3950,4022], -[0,5517,53,5652,603,10874,10875,10876,966,972,30788,974,10879,10883,7729,10886,4874,10887,4880,4883,4892,1009,1011,1170,668,10888,1177,1895,1898,1935,1938,1947,1955,1959,1961,2151,2731,2832,2854,3244,3310,1894,3765,89,3824,4039,4201,4484,4493,4494,91,8550,8552,1984,4747], -"quote", -[0,3875,89,6588,6081,6696,6913,2696,2700,7182], -[1,2343,7339], -[0,7340,7341,7342,2537], -[0,10895,10897,2007,20378,10898,3090,3530], -[0,8850,816,10902,10904,4042,4227,4232,91], -[0,4042,1932,3378,5260,10906,3209], -[1,2343,7344], -[0,7345,7346,7347,2399], -[0,10895,5251,1699,10912,814], -[0,53,5889,5583,811,8850,1856,4042,4227,10916], -[0,4042,1932,6778,3378,5260], -[1,2343,7352], -[2,7350,7351], -[3,818,9], -"gent-chat", -[0,7354,7355,7356,2537], -"microdiff", -[0,1415,4449,1594,1983,1437,2205,3188,3539,668,2026,10923,2602,4213,1457,10947,10925,10927,10929,2858,10930,10931,10933,10935,606,10936,10939,10940,1030,10942,608,603,9110], -[0,10944,3348,89,1177,4039,10946,1984,1894,3824,6520,91,9227,4874,7819,2990,4880,4892,3401,10949,6494,4883,4131,4315,10951,1959,1895,1947,1955,1011,1961,3708,10960,1009,10964], -[0,10946,9134,6869,8172,10966,8623,1745], -[1,2343,7359], -[2,819,6706], -[0,7360,7361,7362,2523], -[0,10973,10981,10984,2161,7610,7353,3266,188,7349,10990,10992,28910,11005,7358,10975,10995,8079,29841,10996,10978,7374,10999,11003,28843], -[0,23531,8648,29273,11016,5337,11018,2611,2832,89,11022,4383,1983,11026,11033,1984,11039,7387,11041,28988], -[0,4627,1745,3452,11043,4386,8124,188,8588], -[1,2343,7364], -[0,7365,7366,7367,2537], -[0,11049,7610,10975,8079,7387], -[0,11051,6798,6806,2078,1983,1984,4745,818,11039], -[0,5592,1745,2078,3452,8124], -[1,2343,7369], -[0,7370,7371,7372,2537], -[0,11064,11065,11066,1699,11071,11073], -[0,11075,11076,11079,11080,11082,11083,4856,6494,11085,6503,1170,1364,1414,1610,2026,2633,2899,11086,3750,4261,4474,91], -[0,13428,1388,11862,11861,11857,8210,11088,8214,27718,8791,181,4967,1098,89,188,5982,6969,1973,5472], -[1,2343,7376], -[2,7375,582], -[3,11003,12], -[0,7377,7378,7379,2399], -[0,11064,11065,11066,11093,1699,11073], -[0,11075,6503,11096,11105,11109,11111,11112,1170,1414,1610,2899,11086,11113,4261,824], -[0,13428,1388,11862,11861,11857,8210,11088,8214,27718,8791,181,4967,5982,6969,1973,5472,824,11116,11117], -[1,2343,7381], -[0,7382,7383,2514,2537], -[0,11124], -[0,11126,11130,11133,11134,11138,668,2675,2832,2990,2899,3421,1894], -[2,10829,45], -[1,2343,7386], -[0,7388,7389,7390,2537], -[2,11004,23], -[0,89,3824,11143,602,7384,11146,11151], -[0,1983,89,4451,3555,29318,3824,16485,91,9311,3975,4880,30157,6271,7610,32415,3120,10895,28829,3968], -[0,1739,1745,4270,29043,10824,11156,29045,1783,29181,6718,25172,4627,4963,89,188,1098,3709,5926], -[1,2343,7392], -[0,7393,7394,7395,2487], -[0,11161,11164,5145,11168,97,8597,449,11172,452,456,11175,11179,11182,11185,11186,11188,1325,11189,1461,1582,1673,11191,11192,5561,11193,11196,11197,11199,11201,11202,11204,11207,5060,11208,11210,11212,11213,11216,11219,11220,11221,11223,11224,11225,11228,11231,11233,3787,11235,11236,11238,11240,11242,3788,11244,11246,11249,11251,3789,3810,11253,11257,11261,3906,11264,4426,4427], -[0,5076,53,11267,11271,368,7948,11273,11274,10875,11275,10821,10825,10827,10828,11277,11282,11285,10837,10841,11288,966,968,972,974,11290,5087,11292,11296,11300,11301,4870,8149,11303,11305,4880,11307,4882,4883,11312,11315,11317,11320,11322,1009,1011,11325,11331,11333,1195,11335,1437,1448,1610,11336,1789,11343,8161,1177,1879,1895,1915,1924,1938,1939,1947,1948,1959,1961,10851,1982,2071,11345,2151,2193,2070,2665,2675,2686,2696,2697,2720,2758,1192,11347,2771,2780,2784,11348,11350,2814,2832,11356,5102,2990,1209,11357,3213,3445,1894,3703,3717,3725,3730,3763,11360,11362,11363,89,3807,3817,3820,3824,4934,11366,11368,11371,11374,3885,11377,11378,3984,3985,11380,11382,11383,4135,4183,4201,4320,11384,11389,4323,11396,11397,4072,4474,4508,91,11400,4676,11401,11405], -[0,5127,4627,4963,4964,5130,4967,89,5128,181], -[1,2343,7397], -[0,7398,7399,7400,2537], -[0,11413,11416,11417,11420,11421,11422,2161,1209,11428,11434,4443,3348], -[0,549,4870,11438,7819,1759,1999,3400,3421,11439,4469,11440,4494,1984,4677,4693], -[0,11442,11443,11445,11446,11449,11448,11450,11451,11452,11453,11454], -[2,11425,7402], -"-fork", -[2,12213,7404], -[3,12229,13], -[1,2343,7407], -[2,7408,594], -[0,7409,7399,7400,2523], -[3,7403,15], -[0,11413,11416], -[1,2343,7411], -[0,7412,7413,7400,2537], -[0,11417,11420,11421,11422,7401,2161,2674,1209,11426,3310,11428,11430,11434,4443,3348], -[0,11436,4870,4874,11438,7819,1166,1759,3400,1894,11439,4469,4474,11440,4487,4490,91,2924,4677,4693], -[1,2343,7415], -[0,7416,7417,7418,2487], -[0,2203], -[0,107,7844,11470,1177,1895,1953,1972,3709,91,4523], -[0,1177,1541,7625,3709], -[1,2343,7420], -[0,7421,7422,7423,2523], -[0,26364,23826,11477,1082,977,11478,11479,2929,3090,11480,11481,5152,4200], -[0,13471,8648,840,11485,4874,5162,11486,4042,3709,4359,91,1983,1984], -[0,5130,11489,3709,5167,1983], -[1,2343,7425], -[0,7427,7428,7429,2523], -"location", -[0,30023,11501,1699,3090,11497], -[0,2278,1983,3709,5245], -[0,11504,11506,1983,3709], -[1,2343,7431], -[0,7432,7434,7435,2523], -[0,53,11516,87,90,92,11518,11520,11522], -"routing", -[0,1195,3150,4027,2924], -[0,11525,8221,89,2924,11526], -"redirect", -[1,2343,7438], -[0,7439,7440,7441,2523], -[0,11533,11534], -[0,11536,28491,1610,91], -[0,11538,11539,1172,91,9561,2924,11540], -[1,2343,7443], -[0,7444,7445,7446,2523], -[0,1367,6372], -[0,2070,2323,1192,2278,4039,3561,1894,1587,2504,4320,2464,91,4874,1165,2482,3678,4330,11598,11592,11591,11595], -[0,4329,4963,5926,11600,11601,6082,8727,181,4967], -[1,2343,7448], -[0,0,2667,7449,2399], -[0,11608,11609,11612,11613,190,11615,11617,4967,91,5284,11619,11622,11624,11626,11627,11630,11631,11633,11634,11636,11639,11640,32767], -[1,2343,7451], -[0,4424,4429,4442,2537], -[1,2343,7453], -[0,7454,7455,7456,34352], -[0,97,1562,4484], -[0,53,83,87,92,19181,442,8648,5583,811,816,6373,10615,11796,4874,1009,1011,1208,1177,1895,11935,11938,11940,11943,3401,1894,4042,11802,4172,11803,91], -[0,965,1936,11806,11807,5284,11815,8221,91], -[1,2343,7458], -[0,7459,7460,2514,2537], -[0,11821], -[0,972,30788,4880,4883,1030,1597,3401,89,3824,5564,7464,27122], -"pkgroll", -[1,2343,7468], -"create-vue", -[2,7467,7472], -[2,7466,7469], -"create-e", -[3,11821,16], -[0,7459,7470,7471,2523], -"slint-config", -[0,3709,4355,5160,1972,11827,1011,27122,840], -[0,32401,3766,3709], -"persist-client-core", -[1,2343,7474], -[0,7475,7476,7477,2537], -[0,11833], -[0,11835,5087,1009,11837,1177,1886,11840,1895,1955,1958,1192,2780,2821,1776,3165,4468,4469,91], -[0,11842,11843,11846,11847,6875,4967,5576,4978], -[1,2343,7479], -[0,7480,7481,7482,2523], -[0,97,966], -[0,1651,91,11853,3400], -[0,5472,1651,181,965,11857,6564,11861,11862], -[1,2343,7484], -[0,7485,7486,7487,2537], -[0,11357,11869,3527,3717,97,51,11868,11871], -[0,2832,91,11853,1393,1423,11875,968,11884,11879], -[0,5472,181,965,2832,2275,11857,6564,11861,11862], -[1,2343,7489], -[0,7490,7491,7492,2537], -[0,11891,11869,11890,3527,63,11871], -[0,2832,2022,4042,1984,91,11853,11893,3717,11899,811,11884,11896], -[0,5472,965,1192,2832], -[1,2343,7494], -[0,7495,7496,7497,2399], -[0,1437,11891,2777,3717,11907], -[0,1192,2675,89,1177,1894,48,1527,91,53,5087,4880,3720,3857,97,4131,5091,3904,11909,1652,4889,5085,5103,11912], -[0,5472,1975,1192,3857], -[1,2343,7499], -[0,6263,7500,7501,2523], -[0,966,968,4880,4883,1437,11918,2777,11853,3401,89,3824,4039,91], -[0,5472,89,181,965,2832,2275,11857,6564,11861,11862], -[1,2343,7503], -[0,0,7504,7505,2537], -[0,2742,2832,89,2022,668,4474,11944,3824,11890,91,11853,4880,11875,11952,11943,11931,11938,11929,966,11948,11935,972,11933,11940,968,5556,11925,6515,1915,11924], -[0,7214,6627,89,5472], -[1,2343,7507], -[0,7508,0,7509,2487], -[0,10347,11959,978,989,991,993,996], -[0,11961,38,5995,27,5130,5592], -[1,2343,7511], -[0,0,0,7512,34352], -[0,11961,10339,10340,5122,5995,977], -[1,2343,7514], -[0,0,0,7515,2443], -[0,11961,10339,10340,5122,5995,2947,977], -[1,2343,7520], -"fp", -"drag", -"react ", -[0,7533,7536,7537,2537], -"animation", -[2,7519,7521], -"pure", -"fantasy-land", -[2,4570,7046], -[3,5941,12], -[2,7526,1155], -"framer", -[3,7527,19], -[2,7529,6600], -"pose", -"tacit", -[0,11974], -"balanced", -"react pose", -[0,1414,4494,2675,91,4874,975,11976,192,11978,5467], -[0,11961,10339,10340,5122,5995], -[1,2343,7539], -[0,0,0,7540,2487], -[0,11961,10339,10340,5122,5995,984], -[1,2343,7542], -[0,0,0,7543,34352], -[0,11961,10339,10340,5122,5995,986,11988,10345], -[1,2343,7545], -[0,7546,0,7547,2537], -[0,987], -[0,11961,10339,10340,5122,5995,988,2739,11995,11996], -[1,2343,7549], -[0,7550,0,7551,2487], -[0,10347,12003,1001,1003], -[0,11961,10339,10340,5122,5995,990,705], -[1,2343,7553], -[0,7554,0,7555,2537], -[0,11974,3171,12011,978,980,12016,991,997], -[0,11961,10339,10340,5122,5995,10376], -[1,2343,7557], -[0,7558,0,7559,4139], -[0,11959], -[0,11961,10339,10340,5122,5995,38], -[1,2343,7561], -[0,7562,0,7563,2523], -[0,3171,985,12027], -[0,11961,10339,10340,5122,5995,10376,710,10384], -[1,2343,7565], -[0,7566,0,7567,34352], -[0,3171,12027], -[0,11961,10339,10340,5122,5995,990,705,1000,5284], -[1,2343,7569], -[0,0,0,7570,2487], -[0,11961,10339,10340,5122,5995,990,705,1002,3634,3766], -[1,2343,7572], -[0,0,0,7573,2523], -[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094], -[1,2343,7575], -[0,7576,0,7577,34352], -[0,12099,12103,12104,12105,4484], -[0,12108,7188,5995,11100,6740,5592], -[1,2343,7579], -[0,7580,7581,7586,2443], -[0,2687,5569,12118,1012,12121,12123,12124,5604], -[0,1091,3127,1984,1894,12126,9363,4880,3117,12127,4555,8818,7677,3137,12133,5551,12137], -[2,7583,7584], -[3,439,8], -"react/eslint-plugin", -[2,5557,26375], -[0,1177,6741,6939,91], -[1,2343,7588], -[0,7589,7590,7591,2487], -[0,1676,5552,12124,5604,12145], -[0,1984,7677], -[0,6892,5286,5284,91,57,5341,1177], -[1,2343,7593], -[0,7596,7590,7599,2523], -"point-free", -"curried", -[0,5552,439,5604,12145], -"gestures", -"3d", -[0,1177,91,6742], -[1,2343,7601], -[0,7602,7622,7626,4139], -[0,365,370,12159,1461,12160,12163,1832,12166,12170,2609,1209,12172,3220,3744,12173,11202,12175,11216,11224,3787,3789,3849,11374,3911,4023,4163,4649,12176], -[3,346,11], -"abs-extension", -[2,7603,7604], -"cssfilter", -"root-node-polyfill", -[2,2183,7607], -"slugger", -[2,2287,7609], -"deflist", -[2,3108,7611], -[3,5953,13], -"eta", -[2,7613,7614], -"sup", -[2,3108,7616], -[3,3125,13], -"rule-", -[2,7619,6706], -[2,7618,7620], -[0,48,53,61,71,83,85,87,90,92,192,5467,968,972,4859,5540,4870,12179,4880,4883,1009,1011,12182,12184,1170,1178,1193,1195,12186,1210,12191,12193,1527,12195,1628,1652,1843,1845,8160,1177,1959,1961,2092,2151,2651,2675,1192,12196,11348,12198,2990,3177,3222,3463,1894,3786,89,3824,3895,3904,4257,4307,4320,4946,12201,12205,12206,91,4537,4027,2924,4676,4677], -[3,346,10], -[2,7623,5891], -[3,1879,13], -[0,89,5128,4627,4963,4967,12208], -[3,3703,9], -[2,7627,1541], -[1,2343,7649], -"sconfig", -[2,7603,7630], -"@types/css", -"ithub-slugger", -[2,5246,7633], -[3,4869,9], -"-yaml", -[2,7635,7636], -"arkdown-it", -[2,6502,7638], -"-attrs", -[2,7639,7640], -"anitize-html", -[2,5051,7642], -[2,1368,4406], -[2,668,7644], -[3,5961,13], -"estgen", -[2,7646,7647], -[0,7652,0,7653,2523], -"yandex", -"yfm", -[0,1497,2813,1209,3266,12224,9355,12220,12226,12233,12217,12222,2626,12215,12219,12232,12216,7406,7403], -[0,6108,6038,5130,1936,12236,1932,6106,12214,6105], -[1,2343,7655], -[0,7670,0,7691,2523], -"magic-", -"bytes.js", -[2,7656,7657], -[3,347,11], -[2,7659,614], -"discord-", -"api-types", -[2,7661,7662], -"@sapphire/snowflake", -[2,7659,6910], -[3,7664,10], -"async-queue", -[2,7666,7667], -"@vladfrangu/async_event_emitter", -[0,1018,1025], -"turbo", -[2,7659,3888], -[3,4828,16], -[2,7673,1803], -"@vite", -"st/coverage-v8", -[2,7675,7676], -"@favware/cliff-jumper", -"-pretty", -[2,4525,7679], -[2,1876,7680], -"extract", -"extractor", -[2,4610,7683], -[2,7659,7684], -"esbuild-", -"plugin-v", -"ersion-injector", -[2,7687,7688], -[2,7686,7689], -[0,10039,12244,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], -"discordapp", -"discordjs", -[1,2343,7695], -[0,7696,0,7697,2537], -[0,12253], -[0,1017,12255,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], -[1,2343,7699], -[0,7670,0,7700,2537], -[0,6847,12260,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], -"generated", -[1,2343,7703], -[0,7704,0,7705,4139], -[0,12265,1025], -[0,1022,12268,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], -[3,5923,13], -[2,4364,57], -[2,7706,7707], -"@aws-sdk/client-s3", -[2,7623,5576], -[1,2343,7712], -[0,0,0,7732,2487], -"ranslation", -[2,3118,7713], -[2,7623,7714], -[3,7715,11], -"ermaid-extension", -[2,7716,7717], -"openapi-", -[2,7719,7188], -[2,7623,7720], -"yfm2xliff", -[2,352,7722], -[3,692,9], -[2,7724,364], -[3,4869,11], -"-safe", -[2,2849,7727], -[2,7726,7728], -"@yandex-cloud/nodejs-sdk", -"bem-cn-lite", -[0,594,12274,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], -"nanostores", -"threads", -[2,7734,4406], -[1,2343,7741], -[2,4807,1149], -[3,4856,10], -"lk", -[2,7738,7739], -[0,7742,7753,7754,2523], -[0,3763,1594,2026,1000,1536,12286,12285,12287,12284,1032], -"tml-escaper", -[2,6495,7743], -"ime-types", -[2,6502,7745], -[3,5055,9], -"elljs", -[2,7747,7748], -"@types/t", -"ar-stream", -[2,7750,7751], -[0,1192,4135,4468,4342,1193,91,53,9227,5087,4874,12292,11976,6494,12290,9240,7806,7708], -[0,12294,4967,970,12295,12296,5983,6802], -[2,12302,26070], -[1,2343,7757], -[0,7764,7765,7766,2537], -[3,7639,15], -[2,7758,671], -[3,7730,14], -[2,7760,7625], -[2,7760,7628], -[2,7760,2190], -[0,34690,12301,7733,28314,7755,12305,12307,28554], -[0,4481,4494,4493,1983,2675,1177,4039,12309,1984,668,3561,23535,4320,3350,3541,28464,4201,4360,91,4874,2990,3400,4880,29000,29038,11976,30684,17214,4328,33264,33385,34203,4523,34205,7677,33382,5517,5530,34207,4323,12312,32818,5535,12315,30630,11396], -[0,11608,12318,12319,12322,12324,12326,12328,12329,12331,11612,12334,12336,11010,12337,12338,190,12339,4967,91,12342,12346,12348,12349,12350,11619,11622,11624,12354,12355,11640], -[1,2343,7768], -[0,7769,7770,7771,2523], -[0,1593,4376,53,1393,3090,87,3957,12361,5658,5660,5778,5810], -[0,20378,1983,1082,1531,3527], -[0,4967,1983,11504,1028], -[1,2343,7773], -[0,7774,7775,7776,2487], -[0,53,12370,12372,28465,10879,3878], -[0,30521,89,3824,28865,1531], -[0,1172,27158,89,3878,1983,11504], -[1,2343,7778], -[0,7779,7780,7781,2523], -[0,1012,2071,4523,4630], -[0,5536,4874,1177,1988,2020,7461,1894,4494,91,1984,188], -[0,188,7463,7465,1177,91], -[1,2343,7783], -[0,7784,7785,7786,2399], -[0,1091,1092,12384,2657,12385,3509,38,4151,7707,5971,4745], -[0,2026,2899,4255,4342], -[0,2026,3452,8124,1745], -[3,980,17], -[2,7787,57], -"encrypt", -"encrypter", -[2,1576,7790], -[2,3115,1623], -[2,2287,7792], -"greenlock-express", -"memoryst", -[2,7795,147], -"minisearch", -"selfsigned", -"sitemap", -"sql.js", -"workerpool", -[1,2343,7825], -"ody-parser", -[2,4853,7803], -"mpression", -[2,4860,7805], -"-session", -[2,6494,7807], -"ormidable", -[2,5537,7809], -"mpts", -[2,6508,7811], -[3,7643,9], -[2,7813,367], -"ql.js", -[2,5051,7815], -"@types/u", -"uid", -"@types/uuid", -"@types/w", -"orkerpool", -[2,7820,7821], -"wasm", -[2,7686,7823], -[0,7829,7830,7831,2523], -"razor", -"sqlite", -"aspx", -[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12405,12406,1582,1699,12409,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,3788,11244,3789,3810,5564,3846,12435,12438,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12444,12445,4549,4555,12447,1002,12448,12449,12452], -[0,192,5467,7634,12455,12458,7637,12459,4874,12461,8149,4880,4882,4883,12462,12463,12467,1177,10321,2071,2079,12471,12472,2675,2990,1894,3706,3708,89,3824,4320,4474,91,1984,12473,12475], -[0,1179,12445,2924,89,12478,12479,1783,4963,1745], -[1,2343,7835], -"@dnd-kit/core", -[3,7833,9], -[0,0,7841,7843,2537], -"modifiers", -[2,7834,7836], -"sortable", -[2,7834,7838], -[2,7834,6731], -[0,4874,1009,1011,1177,1881,1938,4039,4042,4076,91], -"ui-components", -[0,5995,12586,12588,12589,12590,12592,12593], -"@stylistic/eslint-plugin-js", -[3,7844,11], -[2,4324,1932], -[2,7845,7846], -[1,2343,7852], -"@wordpress/api-fetch", -[3,7849,11], -"block-", -[0,7853,7859,7860,2537], -[0,12600], -"ion-", -[2,7854,1464], -[2,7682,7855], -[2,5313,7856], -[2,7850,7857], -[0,53,5241,87,94,12602,12604,6503,4874,1145,1503,12607,1177,2297,2881,2886,2895,12609,2897,2900,2910,2899,3400,3421,3456,4039,4042,4045,12611,4055,4067,4071,4075,12613,4474,12614,91], -[0,12616,7102,2013,2018,12617,12618,12621,12622,12620,6553,1858], -[1,2343,7864], -[2,7153,694], -[2,5335,7862], -[0,7865,7866,7867,2523], -[0,3173,12627], -[0,3421,2899,1177,1693,1954,1938,1958,1903,1948,1970], -[0,1563,12631,8316,1080], -"promis", -"ify-", -[3,1455,13], -[2,7869,7870], -[2,7868,7871], -"swc-loader", -[1,2343,7875], -[0,7876,7878,7879,2523], -[0,1149,1362,1209,3230,1552], -"ol", -[0,2899,1429], -[0,2663,1081,5122], -"mixin", -"WordPress", -[1,2343,7883], -[0,7884,0,2514,2399], -[0,1082], -[1,2343,7886], -[0,7896,7898,7899,4139], -[3,4872,15], -"amelcase", -[2,7887,7888], -[3,7746,9], -"nimist", -[2,7890,7891], -[3,5090,9], -"etty-ms", -[2,7893,7894], -[0,1170,1437,1525,2088,2151,2720,3467,7956,4183], -".d.ts", -[0,811,8850,816,10615,12654,4864,12656,4866,4874,4039,4042,8849,11054,4076,12206,4484,4487,91], -[0,200,1085,188,89,12659,12660,91,6710], -"definitions", -[1,2343,7902], -[0,0,7903,7904,2537], -[0,1429,2685,2899,1894,4039], -[0,2056,3164,12666,4560], -[2,363,3428], -"memoize", -[2,363,7906], -[3,370,10], -"erialize", -[2,7908,7909], -[3,1212,14], -"acros", -[2,7911,7912], -"root", -"find-root", -[1,2343,7918], -"stylis", -[0,0,7923,7924,2523], -[3,5272,14], -"d-nodes", -[2,7919,7920], -[2,1174,7921], -[0,2899], -[0,12674,1087,2124,12619,12675], -[1,2343,7926], -[0,7927,7928,7929,4139], -[0,12680,12681,1676,12685,5303], -[0,5245,12688,6501,4874,7677,4193,4474,4494,1984], -[0,12692,12693,1605,12694,4116,8791], -[1,2343,7934], -[2,366,6990], -[2,7908,5375], -[2,363,594], -[0,7936,7938,7939,2487], -"@definitelytyped/dtslint", -[0,43,46,1093,1116,1132,1140,1298,1316,1318,1321,1322,1336,1339,1342,12701,1344,1346,1348,1350,1352,12703,1354,1356,1358,12704,1376,1386,1402,1425,1428,12705,1440,1450,12708,12709,12710,12711,12714,1663,1706,1711,1715,2019,12715,12719,2058,2059,2177,2217,12720,2563,2567,2605,2606,12722,2723,2950,2954,2957,12726,2962,3086,3099,12730,3134,12733,3186,3240,3245,3262,3295,3439,12736,3443,3472,3535,3558,12737,3777,3931,12740,4105,4124,12743,12747,4168,4173,4177,4192,4206,4235,12749,4236,4258,12750,4267,4338,12755,4347,4352,4370,4433,4456,4461,12756,12757,12760,4548,12763,12764,4724], -"import-cwd", -[0,4880,4883,2079,89,3824,91], -[0,4627,4963,4964,5130,4967,89,5128,181,4653], -"is-pro", -"p-valid", -[2,7940,7941], -[2,363,7942], -[3,7933,10], -"se-insertion-effect-with-fallbacks", -[2,7944,7945], -[1,2343,7949], -[2,363,89], -[0,7950,7951,7952,2537], -[0,12771,12773,12775,1389,12776,1536,1676,12777,12779,2026,12783,12785,2659,12788,2822,12789,12792,12793,3183,12795,12799,12802,3923,12809,4153,4165,12812,12814,12818,3348,4650], -[0,12820,1610,2554,3421,12823,4255,4389,4400], -[0,1090,1388,12826,4384,4389,5472], -[1,2343,7954], -[0,7955,7958,7959,2523], -[0,2069,12832,12834,12837], -[2,17912,7957], -"estimator", -[0,12839,811,8850,816,10817,4856,6503,4874,12842,1009,1011,1092,1389,1429,1610,1673,12846,1177,1895,2070,2675,12847,2806,2820,12848,2297,2881,2900,2990,2899,12849,3310,3421,1894,12850,4042,4073,4474,12851,91,12852], -[0,6671,2844,1155,7020,2860,2845,7527,7530], -[1,2343,7961], -[0,7962,7963,7964,2537], -[0,1091], -[0,12839,5087,4874,1009,1011,1091,1177,1895,2675,1192,12848,2990,1894,4468,91], -[0,12860,6975,1671,7020], -[1,2343,7966], -[0,7967,7938,7939,2399], -[0,43,46,1450,3777,4548], -[1,2343,7969], -[0,6203,7970,7971,2487], -[0,3460,12870], -[0,1094], -[1,2343,7973], -[0,7974,7975,7976,2537], -[0,12879,4567], -[0,12882,2899,3421,4535], -[0,12884,12886,12887], -[1,2343,7978], -[0,0,7979,7980,2487], -[0,2278], -[0,1623,2278,181,6398,6400,2869,12893], -[1,2343,7982], -[0,0,0,7983,2523], -[0,1098,5130,1388,12899], -[1,2343,7985], -[0,0,0,7986,2523], -[0,1098,5130,1388,7521,12899], -[1,2343,7988], -[0,7989,0,7990,2523], -[0,12910,12914,19,21,24,12915,12917,1149,1165,1437,1532,1628,1637,1676,12918,1687,12923,12925,12926,2054,2092,7076,2151,12929,2070,2651,2712,2720,12930,2843,2921,2925,695,2969,1209,3181,12935,3342,3368,3459,3467,3560,3618,3786,3981,814,4039,4085,4111,12936,4135,12937,4230,12944,4307,4333,4334,1241,4430,91,4027,4648,2924,4681,4689,4695,4769], -[0,1098,1102], -[1,2343,7993], -[2,27465,3469], -[0,0,0,7994,2537], -[0,12074,29,1388,12899,5027,12951,4963], -"blurup", -[1,2343,34387], -[0,6323,2398,12956,2899,4425], -[0,7244,1111,12958,12959,12961,12963,12964,12965,12966,12967,12968,12969,12970,12971,12972,12973,12974,12975,12976,4984,12977,200,12978,1473,1512,7208,9753,6876,7201,12979,12980,6983,12981,12982,12983,12984,12986,12987,2929,3073,6807,12990,12991,10958,6616,4166,12992,12994,1871,590,592,7009,2585,6621,12996,12997,4744,12998], -[1,2343,8000], -[0,8001,8002,8003,2487], -[0,6639], -[0,4874,1166,4481,1906], -[0,1111,7009,7201,200,1871,6621,1867,1106,6983,4166,4744,3073,6807,6876,2585,13005,6769,12619,1501,5281,13006,8628,13007,1468,13008,13009,13011], -[1,2343,8005], -[0,0,8006,8007,2399], -[0,1906,1166,4481,1107], -[0,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,6876,2585,1108,6961,23,3529,1973,2100,13017], -[1,2343,8009], -[0,0,8010,8011,2523], -[0,1906,1166,4481,13024], -[0,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], -[1,2343,8013], -[0,0,0,8014,2487], -[0,1111,1512,200], -[1,2343,8016], -[0,8017,8018,8019,2443], -[0,11161,13035,97,8597,7905,13037,13038,13042,1156,1639,1673,13045,13047,1209,3021,4023,11264,1849,7917,4427,13049,4649], -[0,48,53,61,73,76,78,13051,81,5806,13052,5835,83,5853,5889,85,87,92,192,5467,692,5583,7806,4864,5087,13055,5139,13057,7639,4874,13059,1009,1011,1028,11016,13061,13063,13067,13069,1031,11018,13072,10984,13077,1082,13078,1165,1170,1178,1193,1195,1205,13080,1208,13085,1426,1437,1448,1503,12405,13086,1525,13088,1610,1628,1630,13089,1668,13090,13092,11343,13093,668,8161,1869,1177,1895,1937,1938,1939,1948,13097,1955,1988,2071,11345,2151,2070,2205,2226,2323,2338,13099,2529,2651,2675,13101,13103,1192,2780,2784,13105,13108,2817,13110,4868,695,2969,13115,13118,2990,13119,3105,3107,3112,3114,13122,3127,13123,3177,3183,3188,3213,3220,3412,3561,3618,1894,3720,3725,3730,3786,9340,3992,13124,13127,8304,13128,4039,13129,13131,4135,4207,13134,4307,4320,11384,11389,4323,11396,4328,4409,4431,4443,4468,4469,4494,4508,91,13135,4549,4027,11400,1983,188,13138,13142,4630,4633,13145,4634,13149,4639,4640,13151,4646,2924,4676,4677,4681,4689,13152,11401], -[0,188,8588,5127,4964,1114,13154,4627,4963,181,5130,4967], -[1,2343,8021], -[0,8022,8023,7395,2537], -[0,1497,1673,97,5145,4427,11161,7992,27467,33386,33387,11185,33389,33393,11164,33396,33397,33399,33401,33403,33404,33406,33417,13166,33418,33422,33423,33424,33426,13169,8048,33428,33430,33431,33433,33436,33441,33443,11168,33444,33447,13159,33449,13162,33450,33451,11264,13165,33452], -[0,1091,3467,26713,4390,4494,1789,2070,1192,3445,1170,1437,11336,2675,2696,2742,2832,13233,3549,89,4164,1759,1177,2079,2814,1209,3984,4039,13241,4135,1086,13078,25131,3725,4508,2924,1634,2151,2193,11347,3183,3213,1894,13243,11401,1610,16473,2071,5102,11357,3758,11360,3824,13214,13215,3310,3560,3985,3988,4183,4201,91,5087,4874,12424,2665,2990,3839,11380,368,13204,13210,4880,13223,33230,11362,13245,33461,7833,692,11301,4870,5254,11325,3330,3717,13235,3999,11976,7948,27424,13194,13196,11290,8149,11322,7610,11350,27047,11273,11275,16934,4864,11292,7892,6510,13213,4934,10875,13205,4883,2758,2771,13232,3885,11377,3978,5076,33233,7839,8998,29467,7837,7840,643,13200,1939,2686,11366,11400,13198,2584,11348,25366,966,11331,1924,2784,11368,13175,972,1947,2780,13182,13203,13228,11356,4676,11320,3749,13192,968,1961,33635,11300,13221,13187,7582,974,7585,13178,11312,26969,11382,11371,11296,13188,11274,13240,13189], -[1,2343,8025], -[0,8026,0,2514,2523], -[0,3445], -[1,2343,8028], -[0,8029,7938,7939,2537], -[0,43,46,1093,1132,1140,1298,1316,1318,1321,1322,1336,1339,1342,1344,1346,1348,1350,12704,1376,1386,1425,1428,1440,1450,12709,12714,1663,1706,1711,1715,2019,12719,2177,2217,12720,2563,2567,2606,12722,2950,2954,2957,2962,3086,3099,3134,3186,3240,3245,3262,3295,3439,12736,3443,3472,3535,3558,12737,3777,4124,12747,4173,4177,4192,4206,4235,12749,4236,4258,4267,4338,12755,4347,4352,4370,4433,4456,4461,12756,12757,12760,4548,12763,12764], -[1,2343,8031], -[0,8032,8033,8034,34352], -[0,5381,5383,5446,5394,5408,13261,13262,5458,5461,32772,13264,13267,13272,2993,5438], -[0,5400,5402,5405,13276,5453,5456,192,5467,13280,5470,5473,13282,5474,5476,5478,13286,13287,1364,1699,1177,1895,1999,2026,2151,2675,2822,2990,3246,3300,3561,4039,4042,13289,10854,4193,4449,91,5480,4535,13291,3348], -[0,5926,13293,5592,1117,1745,13294,3422], -[1,2343,8036], -[0,8037,8038,8039,2537], -[0,1367,1525,13302,8161,13304,2151,2070,2036,2685,2814,13305,1209,3105,3363,3725,4135,4307,2924,4677,4709], -[0,4870,6503,4874,1177,13311,1903,1938,1954,1958,2899], -[0,5592,1118,2295,1745,4030,7096], -[1,2343,8041], -[0,8042,8043,8044,2537], -[0,13319,1797,4135,4562,4747], -[0,9741,4874,5254,4892,1166,2151,91], -[0,1118,1783,13322,5592,2295,1745,1179,13325,200,13326,6876,4030,7096,13327,13328], -[1,2343,8046], -[0,8047,8049,8050,2523], -[0,1676,13333,3313,2863,4593], -[2,41,27443], -[0,1429,1431,2899,4193,4196], -[0,13336,6645,13338,13339,13340,586], -[1,2343,8052], -[0,8053,0,2514,2537], -[0,13345,13346,5506,5514,4484], -[1,2343,8055], -[0,8056,0,8057,4139], -[0,13352,13345,1127,13346,5513,5514,4484,13351], -[0,5286,6778,13354,5284,13356,3378,89], -[1,2343,8059], -[0,8060,8061,2514,2487], -[0,13346,5514,4484,5515], -[0,13364,5087,4874,2220,2222,1192,4039,4042,4468,4487,91], -[1,2343,8063], -[0,8064,8065,2514,2487], -[0,1127,13370,4484], -[0,13364,5087,13372,2086,2220,2222,1192,13374,4039,4042,4468,4487,91], -[1,2343,8067], -[0,0,8068,8069,2523], -[0,1503,1596,13379,1652,2194,2759,2899,3202,3215,3421,4131,4585], -[0,7914,3403,6435,614,202,1237,5260,13382,3209,1896], -[1,2343,8071], -[0,8072,8073,8074,2537], -[0,13387,13388,13390,13394,13395,1170,1362,13396,1209,3084,3220,3222,13399,4135,13400,4729], -[0,13406,13411,13412,6061,6063,13414,4870,6503,4874,13417,5254,9241,10780,1429,1431,1570,2899,1894,4131,4193,4474,91,4739], -[0,13426,12296,5472,13428,5131,13429], -[1,2343,8076], -[0,8077,8078,8080,2399], -[0,13446,13437,13512,13471,13508,13476,9637,13474,13497,13495,13500,13454,13502,13504,13510,13493,13507,13456,13479,13488,13484,30243,13467], -[0,3421,3297,2899,4193,1177,1894,91,13514,4874,6503,6513,5254,1954,1011,13518,1009], -[2,8182,553], -[0,13524,13525,13526,13529,13530,13531,6599,13532,13535,13538,13539], -[1,2343,8082], -[0,8083,8084,8085,2523], -[0,13547,13551,13554,13558,13559,13560], -[0,13564,5087,4874,1009,1011,13566,1177,1895,1915,1938,1955,2220,1192,1894,13568,3706,13569,4257,4468,4474,91], -[0,13571,7200,5995,13572,2220,13573,6710,91,13574], -[1,2343,8087], -[0,8088,8089,8090,2537], -[0,13579,1149,13581,3923,13583,4393,13584], -[0,13590,1429,1776,3188,2899,4039,13591,4390,4753], -[0,12666,1137,3101,2056,4390], -[1,2343,8092], -[0,0,8093,2514,4139], -[0,1429,1192,1894], -[3,439,25], -"mysticatea", -[2,1186,8095], -[2,8094,8096], -"dot-prop", -"warun", -[1,2343,8101], -[0,0,8102,8103,2399], -[0,68,5704,1177,2899,3421], -[0,200,57,1139,5675,7058], -[1,2343,8105], -[0,7967,7938,7939,2487], -[1,2343,8107], -[0,8108,8120,8121,2487], -[0,1417,13609,6830,13611], -"ly-openapi-core", -[2,443,8109], -"decko", -"pointer", -[2,2842,8112], -"mark.js", -"sampler", -[2,7719,8115], -"perfe", -"ct-scrollbar", -[2,8117,8118], -[0,13613,13614,1159,9254,1177,2011,2133,13619,2708,3410,3421,3431,4103,4389], -[0,6583,6727,4552,6759,1858,6422,3033,7039,6763], -"react-tabs", -"stickyfill", -"swagger", -"2openapi", -[2,8124,8125], -[2,4564,1283], -[1,2343,8133], -"@cypress/webpack-preprocessor", -"@hot-loader/react-dom", -[3,5535,19], -[2,8131,1896], -[0,0,8134,8142,2487], -[0,1166,4481,1906], -"ompurify", -[2,6491,8135], -"-to-", -"-to-json", -[2,4863,8138], -[3,7729,12], -[2,8140,8112], -[0,4552,1144,13625,6270,6692,13626], -[1,2343,8164], -"@types/lunr", -[3,7639,11], -[2,8145,1722], -[2,8145,1360], -"ismjs", -[2,7893,8148], -[3,4890,12], -"d-components", -[2,8150,8151], -[3,7752,9], -"pable", -[2,8153,8154], -"-env", -[2,4891,8156], -"@wojtekmaj/enzyme-adapter-react-17", -"to-json", -[2,1848,8159], -[2,7686,1194], -"-checker", -[2,4059,8162], -[0,8167,8176,8177,2523], -"lodash.noop", -"unfetch", -[0,614,13633,1417,13635,3435], -"OpenAPI", -" Specification", -[2,8168,8169], -"Swagger", -"API", -"REST", -"React", -"React.js", -[0,4389,1090,1593,1610,48,13638,53,3438,87,5619], -[0,1145,1388], -[1,2343,8179], -[0,0,8188,2514,2537], -[3,444,13], -[2,8180,965], -[3,10975,16], -"use-", -[3,2758,11], -"layout-effect", -[2,8184,8185], -[2,8183,8186], -[0,4389,2080], -"tip", -"tooltip", -"popover", -"popup", -"position", -"positioning", -[1,2343,8196], -[0,8197,8198,8200,2537], -[0,1690,13648,13651,3431,13652,13653], -[0,1389,2759,2899,3697], -"fontsource", -[0,1145,6468,6637,1148,5982,2022,2025,4170,13656,4386,6969,1973,5472,6533,13657,2275], -"font family", -" fonts", -[2,1885,8202], -"Inter", -"face", -"typeface", -[1,2343,8208], -[0,0,8209,8212,2537], -[0,3421,1429,4085,1776,2297,2899,4747,1177,4042,4135,1448,1290,1362,2151,1317,1389,53,1863,2900,13662,1280,2871,13674,1267,13665,13672,68,2904,1208,2912,2895,13668,4067,1198,13663,1240], -"serenity", -"Roboto", -[0,1149,7241,1237,6435], -[1,2343,8215], -"screenplay", -[0,0,8219,8222,34352], -"common-t", -[2,8216,103], -[2,6057,8217], -[0,4874,13680,4384,4474,91], -"fontawesome", -"svg", -[0,1149,7003,5194,27,13682,11995,1862,36], -[1,2343,8224], -[0,8225,8226,2514,2537], -[0,1153], -[0,1166,1177,1894,3310,3697,13688,2990,1959,1879,1938,1895,1947], -[1,2343,8228], -[0,0,8230,8233,2537], -[2,79,1202], -[0,53,13693,87,92,13694,5087,1193,1596,1192,2990,3377,13695,13698,3697,1894,4474,91], -"stage-3", -[2,88,8231], -[0,1155,2649,1149], -[1,2343,8235], -[0,0,0,8236,2523], -[0,1157,1388], -[1,2343,8238], -[0,8239,8240,8241,2487], -[0,4449,1512,13709,4135,13711,13712,13713], -[0,3421,4389,1177,3410,1159,4103,13614], -[0,13716,6698,6950,3378,13716], -[1,2343,8246], -[3,361,10], -"rebuild", -[2,8243,8244], -[0,8247,8249,8257,2487], -[0,1525,2036,7937,3310,13723,4135], -"node-abi", -[0,53,94,1208,13725,1429,1503,1610,3125,2899,3421,4216,4255], -[3,361,9], -"-forge/cli", -[2,8250,8251], -"devtools", -"-installer", -[2,8253,8254], -[2,1807,8255], -[0,1163,13728,13729,1444,3073,1179,3358,1528,13730,2602], -[1,2343,8259], -[0,8260,8261,8265,2523], -[0,1457,1512,13736,13738,2070,10911,3074,3467,9478,705,13739,4747], -[0,1173,1267,1429,1177,1879,1938,1947,1959,2899], -[2,4364,4622], -[2,458,8262], -[2,7726,2862], -[0,1163,4796,1161,3383,2282], -[1,2343,8267], -[0,8268,0,8269,2399], -[0,1393,1423,13746,3527,3688], -[0,1165,1623,3665,3561,6425], -[1,2343,8274], -[2,466,2220], -[2,466,2942], -[2,466,594], -[0,8276,8279,8280,4139], -[2,466,553], -[0,13753,1082,1084,1110,13754,1144,13757,13758,1437,13759,1458,13760,1486,13763,13765,13767,13770,1676,13772,2089,2205,13775,2709,2747,2752,13777,7906,3242,3478,13778,3530,3545,3718,13780,13781,13784,13786,4728,4747], -[2,5559,2844], -[2,5559,1783], -[0,11436,13789,4874,1107,1414,2020,2022,4193,4384,4400,4481,91,1906,13351], -[0,13791,1973,8791,5472,1166,13792,12804,2062,6969,13326,200,1192,2899,4389,4384,2907,2765,1145,6468,1862,6567,1149,3046,7003,1179,5701,13793,13795,13796,2275,8745,2022,91], -[1,2343,8282], -[0,8283,8287,8288,2537], -[0,1437,1835,3008,1209,3170,3188,4232,13802], -"/types", -[2,3940,8284], -[2,6369,8285], -[0,4856,4870,8778,6503,4874,7749,6513,4891,1362,1429,13804,2151,2675,2990,2899,1894,13805,4039,4167,4257,1241,4487,91,2924,4677], -[0,2924,1194,11526,91], -[1,2343,8290], -[0,8291,8305,8307,2523], -[0,4113,1002,614,3348,1398,2018,4734,13811,13812,3767], -"@tailwindcss/aspect-ratio", -[3,8292,13], -[2,8293,25], -"typography", -[2,8293,8295], -"basename", -"manage", -"r-webpack-plugin", -[2,8298,8299], -[2,2090,8300], -"remove-", -[2,1586,4408], -[2,8302,8303], -[0,1429,2297,2899,1177,1503,2765,2924,1649,4535,1389,91,4874,2843,1509,2766,2898,13817,13818,2881], -"sass-lint", -[0,5592,6997,7200,6850,6779,6949,6930,6810,6808,6979,6871,6991,6835,7024,6602,7301,7308,6619,7016,6665,6572,6629,7055,6709,7254,6814,6832,6976,6740,7101,6963,6933,7215,7175,6817], -[3,6566,9], -[2,8308,3855], -"boilerplate", -[1,2343,8312], -[0,0,8313,8314,2537], -[0,1429,2070,1437,1496,2020,2228,2675,1776,2832,2297,2899,4193,1177,2814,1593,668,2203,3471,2720,13824,1894,4535,13825,11869,13827,2878,7231,91,53,4874,13829,1863,13831,2665,2900,2918,2990,3400,13832,13833,2626,3330,5561,13834,13836,4257,13837,87,13838,2897,4130,13839,2247,2283,2923,2253,2281,13842,2881,4261,5663,1895,2895,13848,13850,78], -[0,13852,6653,5472,2275,6969,5982,11346], -"@hapi/", -"accept", -[2,8315,8316], -[1,2343,8319], -[0,8331,8332,8334,2537], -"@hapi/ammo", -"@hapi/boom", -"@hapi/bo", -"unce", -[2,8322,8323], -"@hapi/call", -"@hapi/ca", -"tbox", -[2,8326,8327], -"-memory", -[2,8328,8329], -[0,2139,13860,2131], -[0,1414,2323,1437,2675,2297,2899,4193,1177,3246,3483,4042,2026,13868,2151,13824,3183,1596,1610,2141,2188,2036,7798,4393,91,53,1364,1863,2918,2766,3714,13870,2898,1159,192,13880,87,13873,8850,8862,5583,2915,4073,13882,2881,2912,2895,2921,811,13867,2910,13879,13866,816,13875,13871,5467], -"@hapi/heavy", -[0,4731,27,6662,1862,202,1388,1612,4030,5592,5576], -"@hapi/hoek", -"mimos", -"@hapi/mimos", -"podium", -[2,8315,8338], -"shot", -"@hapi/shot", -"@hapi/s", -"omever", -[2,8342,8343], -"tatehood", -[2,8342,8345], -"ubtext", -[2,8342,8347], -"teamwork", -[2,8315,8349], -[1,2343,8352], -[0,8355,8356,8365,2537], -"@hapi/topo", -[2,8315,2649], -[0,13889,2051,13891,13892,3923,705,4545,3348,1155,4734,4736,2845], -[0,13894,1389,1596,13895,2228,2296,13896,2759,2297,2881,2891,13899,2895,2897,2900,2904,2899,3202,3297,4170,4535,4650], -"@hapi/code", -"@hapi/inert", -"@hapi/lab", -"@hapi/v", -"ision", -[2,8360,8361], -"wreck", -"@hapi/wreck", -[0,202,13531,13901], -[1,2343,8367], -[0,8368,8369,3182,2537], -[0,1175,1257,1280,1282,1525,1573,5175,2070,1209,13913,3507,4207,4227,13914,1457], -[0,1184], -[1,2343,8371], -[0,8372,8373,3272,34352], -[0,13922,1180,13924,13928,1280,1282,1284,1287,1288,1291,1573,1676,2856,1209,3181,3507,7223,4207,4227], -[0,1184,13930,1257], -[1,2343,8375], -[0,8376,8377,2514,2523], -[0,814,104,58,101,51,1996], -[0,2675,2899,1680,1177,2000,1894,2990,1178,13936,1938,1935,1955], -[1,2343,8379], -[0,8380,8381,2514,2523], -[0,13928,1282,1288,1707,2835,1209,4227,13942], -[0,1184,1291], -[1,2343,8383], -[0,8384,0,2514,2537], -[0,1282,1209,13948,4135], -[1,2343,8386], -[0,8387,0,2514,2523], -[0,1282,13930], -[1,2343,8390], -"nf", -[0,0,0,8393,2487], -true, -"cookiecutter", -[0,1172,188,1219], -[1,2343,8395], -[0,8396,8397,2514,2537], -[0,8755,10879,1208,13961,1437,2215,4207], -[0,53,8776,8780], -[1,2343,8399], -[0,8400,8401,8402,4139], -[0,2105], -[0,48,53,68,87,1414,1177,1895,1955,2203,2675,2990,1894,2924], -[0,2924,1194,1172,5194,5198,1237], -[1,2343,8404], -[0,0,8405,8406,4139], -[0,53,73,87,1173,1175,1178,13725,13982,1264,13983,1268,1284,1288,13985,1177,1895,1903,1938,1954,1955,1958,1970,2899,3696,1894,4039,4103], -[0,5297,13988], -[1,2343,8408], -[0,8409,8410,8411,2537], -[0,3435], -[0,4389,1177,4039,1173,1175,2708,53,1178,1280,13995,87,1261,1267,4103,1938,1881,1203,8229,1198,5853,13998,1244], -[0,1172,1932,14000,1204,202], -[1,2343,8413], -[0,8414,8415,3465,2523], -[0,1282], -[0,1189], -[1,2343,8417], -[0,8418,8434,8444,2399], -[0,5652], -"@keyv/redis", -[2,1416,8421], -"-redis-yet", -"cacheable", -"opens", -"spring", -"icu", -"charset", -"launch", -"xdg", -"cmd", -"xdg-open", -"iconv", -"popmotion", -"exe", -[0,53,90,14011,1175,14012,1596,1177,1879,1895,1938,1955,2079,2675,2990,3132,3377,1894,14014], -"executable", -"cache manager", -[2,27105,15292], -"multi-store cache", -"caching layer", -"cache abstraction", -"cache middleware", -"cache strategies", -"cache wrapper", -[0,5297,1114], -[1,2343,8446], -[0,8447,8448,8449,2537], -[0,56,14022,8697,14024,14025], -[0,48,53,5756,5241,94,1429,1596,1610,2899,3421,14027,4255], -[0,2759,1172,1932,14029], -[1,2343,8451], -[0,8452,8453,8454,2537], -[0,5652,104,2070,1209,14035], -[0,48,53,14039,78,5235,4851,83,87,90,14041,94,10828,1149,1198,1210,1429,14042,14045,3021,2899,3776,3804], -[0,5297,14047,1209,5260], -[1,2343,8456], -[0,8457,8458,8459,2487], -[0,14053,2070,3539,4022,814], -[0,48,53,81,5241,87,1175,1193,1532,1177,1881,1895,1938,2675,1192,2990,10623,4257], -[0,1172,5297,1237,14056,8861,9345,814,14057,14059,3209,1204], -[1,2343,8461], -[0,0,8462,2514,2523], -[0,1192,14065], -[1,2343,8464], -[0,0,0,3465,2523], -[1,2343,8466], -[0,0,0,3465,2537], -[1,2343,8468], -[0,8469,8415,3465,2523], -[0,14078,14080,1282], -[1,2343,8471], -[0,8472,8415,3465,2523], -[0,14086,14087,1282,1284], -[1,2343,8474], -[0,8475,8476,8477,2487], -[0,14093,1282,1284], -[0,1173,1230,1255,1267,1429,2899], -[0,1172,5297,6598,70], -[1,2343,8479], -[0,8480,8415,3465,2523], -[0,1282,1284,1287,1288,1209], -[1,2343,8482], -[0,8483,8484,3465,2487], -[0,14107,1282,1284,1288], -[0,1189,14109], -[1,2343,8486], -[0,8414,8415,3465,2399], -[1,2343,8488], -[0,8489,8415,3465,2537], -[0,14109,1282], -[1,2343,8491], -[0,8492,8415,3465,2523], -[0,1282,14123,1220], -[1,2343,8494], -[0,0,8495,8496,2537], -[0,48,53,5216,8229,61,5240,87,14128,90,94,1178,14132,1429,1177,1879,1922,1935,1938,1947,1951,1955,1959,2205,2899,14133,1894], -[0,1172,5297,89,14137,14139], -[1,2343,8498], -[0,8499,8415,2514,2537], -[0,14145], -[1,2343,8501], -[0,8414,8415,3465,2537], -[1,2343,8503], -[0,8504,0,2514,2487], -[0,1282,1593,3957], -"comment", -[2,8505,1574], -[1,2343,8513], -[3,539,8], -[2,8508,6939], -[3,539,17], -[2,8510,1541], -"leasot", -[0,8514,8515,8516,2487], -[0,87,90,56,5761,83,14160,13051,78,5835,14163,5853,14167,1251,5782,14170,5806], -[0,1177,53,97,4103,1938,1881], -[0,1172,5194,6778,5284], -[1,2343,8518], -[0,8522,8541,2514,2523], -"clair/typebox", -[2,5324,8519], -"@typesc", -[0,14184,14191,1225,14192,14195,1235,14196,14198,14199,14201,14204,14206,14207,14209,1240,14210,14211,14213,14214,14215,14217,14218,1244,14220,14222,14224,1253,1393,2731,4135], -"hema/core", -[2,8521,8523], -[3,8524,12], -"main", -[2,8525,8526], -[2,8525,4763], -"@vinejs/vine", -"ajv-", -"ajv-errors", -"-export", -"-export-map", -[2,4354,8533], -[3,5370,11], -[2,4626,8535], -"effect", -"fp-ts", -"io-ts-types", -"lefthook", -[0,1173,1178,1184,1189,1208,1264,1280,1429,1503,1177,13936,1935,2151,1209,2899,3421,14227,4039], -[1,2343,8545], -"monocle-ts", -"newtype-ts", -[0,8548,8557,2514,2487], -"-validator", -[2,7209,8546], -[0,14184,14192,14195,1235,14196,14198,14199,14201,14204,14206,14207,14209,1240,14210,14211,14213,14214,14215,14217,14218,1244,14220,14222,1253], -"bot", -"valibot", -"vite-", -[2,8551,4480], -"fluent", -"-ts", -[2,7020,8554], -[2,8553,8555], -[0,13930,1189], -"effect-ts", -[1,2343,8562], -"typeschema", -"vine", -[0,8563,0,2514,4139], -[0,14237,1220,14238,1248,14240,14243], -[1,2343,8565], -[0,8566,0,2514,2537], -[0,53,61,71,14170,14160,13051,14249,5700,5240,5879,83,87,90,92,97,7913,1251], -"google ", -" api", -"late api", -[2,4713,8569], -[2,8567,8570], -[3,8571,16], -"google api", -[3,8570,9], -[1,2343,8576], -[0,8577,0,2514,34352], -[0,14256,14257,1275], -[1,2343,8586], -"@atlaskit/pragmatic-drag-and-drop", -"-scroll", -[2,3959,8580], -[2,8579,8581], -[3,8582,34], -"hitbox", -[2,8583,8584], -[0,8587,0,2514,2523], -[0,14265,13982,1277], -"vue3", -"vue ", -[1,2343,8592], -"vue 3.x", -[0,8593,0,2514,2537], -[0,1279,14270,1217,1230], -[1,2343,8595], -[0,8596,0,2514,2523], -[0,14191,14276,1225,14224,1245], -"@ctrl/tinycolor", -[1,2343,8599], -[0,8600,8601,2514,2537], -[0,1175,1282,1593,14282,1209,3188,4232], -[0,6323], -[1,2343,8613], -[3,546,10], -[2,8603,2089], -[2,8603,998], -[3,6505,9], -"te-stream", -[2,8606,8607], -"rap-ansi", -[2,7820,8609], -"cli-width", -"mute-stream", -[0,4115,8617,2514,4139], -[3,8605,11], -"esting", -[2,8614,8615], -[0,13924,1255], -"answer", -"answers", -"ask", -[1,2343,8627], -"confirm", -"generate", -"hyper", -"inquire", -"interface", -[0,8629,0,2514,2537], -"iterm", -[0,1282,1287,1288,1291,1209], -"promptly", -"question", -"scaffold", -"scaffolder", -"stdout", -"yeoman", -"zsh", -[1,2343,8638], -[0,8639,8640,2514,2523], -[0,13922,13928,1282,1288,1291,1676,2203,2731,1209], -[0,1180], -"@stencil/core", -[1,2343,8672], -"domino", -[3,8641,9], -[2,8644,2278], -"@clack/prompts", -"@capacitor/core", -"@playwright/test", -[3,8647,11], -"haptics", -[2,8649,8650], -"keyboard", -[2,8649,8652], -"@axe-core/playwright", -"@ionic/", -[2,8655,7625], -"-bar", -"status-bar", -[2,8649,8658], -[2,8655,7628], -[2,812,4607], -"-target", -[2,6811,8662], -[2,4625,8663], -[2,8644,8664], -"react-o", -"utput-target", -[2,8666,8667], -[2,8644,8668], -[2,1101,8663], -[2,8644,8670], -[0,8679,8680,2514,2487], -"stencil", -"webapp", -"capacitor", -" web app", -[2,6434,8676], -"pwa", -[0,1282,14301,1209,5915], -[0,1180,1291], -[1,2343,8682], -[0,0,8684,2514,2523], -"-cjs", -[0,4384,1389,53,14311,87,14128,1573,90,14309,5835,5879], -[1,2343,8686], -[0,0,8687,8688,2487], -[0,1166,1173,1178,1184,1203,1208,14318,1267,1272,1437,1503,1610,1177,13936,1935,2126,3421,4039,4042,4045,4067,12613,14320], -[0,1172,5284,57,1291], -"standardx", -[1,2343,8692], -"layout", -[0,8693,8694,8695,2537], -[0,4545], -[0,1509,1597,1734,1177,1938,2297,2908,2907,4005,4042,4535], -[0,11415,6624,12620,38,36,5576,1388], -[3,549,12], -[2,8696,2844], -[1,2343,8699], -[0,8700,8701,8702,2443], -[0,1525,2070,2720,3445,4039,4484,3348,1155], -[0,14333,4865,4866,4874,7819,14334,4891,1009,1011,5476,14337,14338,5478,1429,1177,1938,1954,2899,3200,14339,4167,4172,4409,4469,4474,4508,91,594,2924,4677], -[0,5995,1293,3230,4978,14344], -[3,444,18], -[3,550,15], -"illu", -[1,2343,8715], -"tions-react", -[2,4273,8707], -[2,8705,8708], -[2,8704,8709], -"@swc/", -[2,8711,6706], -[3,958,16], -[2,8713,4607], -[0,7936,7938,7939,2537], -"react-table", -[1,2343,8718], -[0,0,8720,8721,2523], -"@swc/cli", -[0,1596,2228,2240,2314,14352,2759,2899,3954], -[0,14354,14355,14356,14357,1157,1396], -"-extensions", -[2,3751,8722], -[2,1962,8723], -[1,2343,8730], -"-system", -[2,4964,8726], -"itwin", -"itwinui", -[0,7967,7938,7939,2443], -[1,2343,8732], -[0,0,8733,8735,4139], -[0,13662,1317,1389,4389], -"jest-config", -[0,14357], -"unner", -"jest-runner", -"jest-run", -[2,8738,6901], -[3,2802,10], -[2,8740,1524], -[3,551,8], -"nsole", -[2,8742,8743], -"snapshot", -[2,2769,8745], -[2,2769,2649], -"jest-h", -"aste-map", -[2,8748,8749], -"reporters", -[2,552,8751], -"@jest/t", -"ransform", -[2,8753,8754], -"jest-re", -"gex-util", -[2,8756,8757], -[1,2343,8760], -[0,8766,8772,8774,2523], -"est-result", -[2,8753,8761], -"jest-m", -"essage-util", -[2,8763,8764], -[0,4100], -"-files", -[2,2356,8767], -[2,2772,8768], -"-dependencies", -[2,2797,8770], -[0,2899,1177,2759,1954,1938,1958,1903,1948,1970], -[3,6494,9], -[0,14372,1303,14374,14375], -[3,8762,11], -[2,8775,594], -"cromatch", -[2,7890,8777], -"raceful-fs", -[2,5246,8779], -"sequencer", -[2,8775,8781], -[1,2343,8789], -"easy", -"sive", -"immersive", -"instant", -"mocking", -[0,8792,8793,8794,2537], -"painless", -"runner", -[0,1797,3181,3183,3188,14380], -[0,1177,1903,1938,1954,1958,1970,2899,4039,4342,4459,4538,4588], -[0,2026,5130,14387,6690,14388,3361,5122,4030,7096,38,1896,3724,5995,5592], -"sandboxed", -[1,2343,8797], -[0,8798,8799,8810,2537], -[0,3299,15160], -[0,1192,15164], -"schemas", -[2,552,8800], -"@types/i", -"-report", -"-reports", -[2,1207,8804], -[2,8802,8805], -[3,8806,16], -"lib-coverage", -[2,8807,8808], -[0,1306,6875,1303,5165,7141,6641,1616], -"@tsd/typescript", -[1,2343,8813], -[0,0,0,8814,2537], -[0,1306,5284,676,3428,6875,1303,5165,7141,6641,1616], -[1,2343,8819], -[3,7729,13], -"chema", -[2,8816,8817], -[0,0,8822,8810,4139], -"jsdom-", -[2,8820,2202], -[0,1306,26406,1894,91], -"mock-store", -[2,3944,8823], -"dux-mock-store", -[2,5249,8825], -"-reg", -"iste", -"r-element", -[2,8828,8829], -[2,8827,8830], -[2,1746,8831], -[1,2343,8834], -[0,8835,8842,8843,34352], -[0,14413,1525,1457], -"jsonforms", -"rendere", -[2,8837,152], -"uischema", -"ization", -[2,5317,8840], -[0,2025,2228,1330,2236,2300,2247,2281], -[0,14416,14417,14418,7190,14419,14421,8309,14422,14423,14426,14428,14430,14433], -[1,2343,8845], -[0,0,0,8847,2523], -"@date-io/dayjs", -[0,1317,14438], -[3,4055,16], -[2,8848,2257], -[2,812,1781], -[3,6390,15], -"mport-css", -[2,8851,8852], -[1,2343,8855], -[0,8856,7938,7939,4139], -[0,43,46,1089,1093,1116,1132,1140,14443,1294,1298,1316,1318,1321,1322,14444,1336,1339,1342,12701,1344,1346,1348,1350,1352,12703,1354,1356,1358,14445,12704,1373,1376,14446,1386,14447,1402,1425,1428,12705,1440,1449,1450,12708,12709,14450,14453,12710,12711,12714,1663,1706,1711,14458,1715,1726,1801,2019,12715,14459,12719,2058,2059,2083,2147,2160,14460,2177,2213,2216,2217,12720,2562,2563,2567,2589,2605,2606,2612,14461,12722,2723,14464,14467,2950,2954,2957,12726,2962,14469,3086,14471,3099,12730,3134,12733,3186,3238,14473,14474,3239,3240,3245,3262,14477,3295,3439,12736,3443,3472,14478,3531,3535,3558,12737,3777,3931,12740,14479,4105,4106,4112,4124,12743,14480,12747,14483,4168,4173,4177,4189,4192,4206,4212,4214,4215,4235,12749,14484,4236,4239,4258,12750,4267,14487,4335,4338,12755,4347,4352,4370,4377,4433,14489,14491,4456,4461,12756,12757,12760,4548,4559,4595,12763,14492,14496,4659,4662,12764,14497,4724], -[1,2343,8858], -[0,8859,8863,8864,4139], -[0,3171,3445,4707,1695,2967,814,4430,1457,3183,14502,3560,3714,1537,14506,3923,14508,14512,14505], -[2,4807,3429], -"alias", -[2,812,8861], -[0,14515,3212,4389,4453,2759,4650,1389,14514], -[0,14518,1389], -[1,2343,8866], -[0,7967,7938,7939,2537], -[1,2343,8868], -[0,8869,8870,8871,2443], -[0,1209,12344], -[0,1596,14527,2759,14529,3774,4019], -[0,1317,6681,6887], -[1,2343,8873], -[0,7967,7938,7939,2523], -[1,2343,8875], -[0,8876,0,8877,34352], -[0,14544,14546,14548,53,5216,58,61,14249,5704,5809,5241,5874,87,92,101,9311,9100,4874,1091,14552,1137,1149,1448,1457,1462,1512,14557,1573,2141,2633,14558,3310,3403,1894,14562,2278,4218,4227,4246,3709,91,4535,14563,188,4747,2720,14564], -[0,14566,14568,14570,14571,14572,14574,5130,91,5284,4799,11608,8889,5995,14575,14576,14579,14580,14582,14584,14587,11498,14591,14592,14594,14596,4056,14597,14600,89,14601,14602,188,14603,14605,8889,3709,14607,14608,4218,14609], -1769904000000, -[1,2343,8880], -[0,8881,8882,8883,2399], -[0,14615,14616,14617], -[0,1170,1429,1177,2899,14621,3752,14622], -[0,1781,14626,1646,4647,1644,57,14628,4141,3917,6033,1149,14629], -[1,2343,8885], -[0,0,0,8886,2523], -[0,14634,14635,14636,14637,6988,14638,14639,14640,14641,14642,14643,14644], -"@lumino/polling", -"@lumino/", -"widgets", -[2,8888,8889], -"commands", -[2,8888,8891], -"algorithm", -[2,8888,8893], -[3,8892,10], -"reutils", -[2,8895,8896], -[1,2343,8903], -"messaging", -[2,8888,8899], -"signaling", -[2,8888,8901], -[0,8904,0,8908,4139], -[0,14652], -"disposable", -[2,8888,8905], -[3,8887,9], -[0,970,11154,1326,14654,6817,3122,14655], -"roperties", -[2,8907,8909], -[3,565,12], -"statedb", -[2,8911,8912], -[3,8894,9], -"pplication", -[2,8914,8915], -[3,565,15], -[2,8917,594], -[3,8913,13], -"ervices", -[2,8919,8920], -"coreutils", -[2,8911,8922], -"render", -"rendermime", -[2,8911,8925], -"docregistry", -[2,8911,8927], -[1,2343,8935], -"translation", -[2,8911,8930], -[2,8911,7842], -"-interfaces", -[2,8926,8933], -[0,8938,8939,2514,2537], -[3,8931,13], -[2,8936,8615], -[0,14660], -[0,3421,4389,4487,1894,3310,3752,91,4874], -[1,2343,8941], -[0,8943,8948,8950,34352], -"docopt", -[0,14667,14669,14671,14672,5241,83,14673,13998,14674,5564,14676,4649], -"glob2base", -"lodash.d", -"ifference", -[2,8945,8946], -[0,14680,48,53,5241,87,14682,94,97,10821,14684,827,14687,14689,10828,14691,11277,10837,11288,972,5087,4883,14693,14694,13995,14695,1193,1195,14697,14698,1208,1261,1268,14012,1282,14699,1462,1596,1610,1655,14702,1177,14707,2323,2529,2541,14708,2708,1192,2787,2820,3220,14711,3342,3377,3400,3415,3421,3697,1894,3786,89,3824,14714,14719,4039,4103,4111,14721,4307,4468,4469,91,2924,4676,4677], -"multipipe", -[0,1328,14723], -"safe-wipe", -[2,4832,6270], -"-theme-default", -[2,566,8953], -"-comment", -[2,8955,1574], -[2,4329,8956], -"indent", -[2,4293,8958], -"vinyl-s", -"tring", -[2,8960,8961], -[1,2343,8968], -"builtin-", -[2,8964,2051], -[2,1226,8965], -"opn-cli", -[0,8969,8970,8971,4139], -[0,14731,1398,2713,3923], -[0,2080,4255,4389,91], -[0,1398,6825,3101,7178], -[1,2343,8973], -[0,8974,8975,8976,2523], -[0,1082,14738,14741,2756,3433,1695], -[0,1149,14744,1506,2228,2240,2247,2253,2273,2281,3006,2899,3521,4019,89,14748], -[0,4504], -[1,2343,8978], -[0,0,0,8979,2523], -[0,14755,14756,14757,14759,14761], -"chatfanpage", -"api-con", -"-x", -"nect-x", -[2,8981,8983], -[3,8984,12], -"tiwtter", -[2,8985,8986], -[1,2343,8989], -[0,8990,8991,2514,2487], -[0,14768,1437,14769,1209,14770,3127,14774,14775,3152,14776,14777,4294,14780,14781], -[0,14785,1331,1512,1177,1903,1938,1954,1958,1970], -[1,2343,8993], -[0,7967,7938,7939,4139], -[1,2343,8995], -[0,8029,7938,7939,2399], -[1,2343,8999], -[2,8603,6847], -[2,8603,3742], -[0,8029,7938,7939,2523], -"tasklist", -[1,2343,9002], -[0,8029,7938,7939,2487], -[1,2343,9004], -[0,0,9012,9013,2523], -"move-", -"scroll", -"move-scroll", -[2,3877,9007], -"react-te", -"xtarea-autosize", -[2,9009,9010], -[0,2759], -[0,1359,2013,14824,6681], -[1,2343,9015], -[0,0,9016,9017,2523], -[0,1499,4093,2070,3445,1082,14830,2899,4193,2272,3188,4039,14829,1362,2597,2759,3460,1481,4535,1084,1389,1364,1615,4151,2839,2311], -[0,1862,6681,6567,14832,14833,1149,7003,14834,14835,14836,14838,14839,14840], -[1,2343,9019], -[0,0,9020,9021,2487], -[0,2899,8689,1926], -[0,14846,14847,14848,14849,14850], -[1,2343,9023], -[0,9024,9025,2514,2487], -[0,1413,1562,1676,2657,2685,3440,3763,3784,1000], -[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], -"calendar", -[1,2343,9028], -[0,9029,9030,9031,2537], -[0,1362,14864,2712,1209], -[0,14869,1429,1177,1895,1955,2675,1776,2930,2990,2899,3259,3421,3519,1894,4193,4196,4246,3348], -[0,3469,3259,14873,7827,14874,14877], -[1,2343,9033], -[0,9034,9035,9036,2537], -[0,2607], -[0,1501,620,3123], -[0,1851,27], -[1,2343,9038], -[0,0,9039,5359,2537], -[0,2739,4763,3171,2278,34683,2297,1177,2205,2814,3984,4042,4086,4072,2765,2822,3363,3561,4167,6393,1894,1492,1610,4939,4320,48,2689,53,27098,6375,2654,3566,3989,30616,1165,3401,6371,6376,2898,3019,34673,29226,6372,7637,8149,7610,11275,26407,1907,6382,4555,87,29568,1937,5583,1938,1982,2881,2889,30620,6373,1948,2895,6390,811,33071,3963,2910,6379,816,2876,6387,6392,6385], -[3,593,11], -[2,9040,147], -[1,2343,9043], -[0,0,9048,9049,2537], -[3,586,12], -[2,9044,5602], -[3,9045,13], -[2,9046,623], -[0,2278,14892,1797], -[0,1367,2278,1623,14894], -[1,2343,9051], -[0,0,0,9055,2537], -"-react-", -[2,9052,3902], -[2,588,9053], -[0,1370], -[3,80,7], -[2,9056,5342], -[1,2343,9059], -[0,9060,9061,9062,4139], -[0,14904,1420,1437,1471,4290,4507,9731,4726], -[0,1166,3421,4481,1906], -[0,200,5403,14907,7009,6048,7201,6938,3656,14908,2585], -[1,2343,9064], -[0,9065,9066,9067,2537], -[0,14923,814,14924,4431], -[0,1389,1537,4384,4430], -[0,1389,14927,2150,14930,1932,2947,14932,6374,14357], -[1,2343,9069], -[0,9070,9077,9078,2537], -[0,1676,3181,4648,14940,14937,14939,14938], -[2,597,592], -[3,9071,14], -"ystem", -[2,9072,9073], -[2,597,553], -[2,597,594], -[0,1429,2899,4039,2151,3980,14942,1951,1385,14944], -[0,14938,5284], -[1,2343,9080], -[0,9081,9082,9083,2537], -[0,14938,1380], -[0,14953,1385,1429,2899,14942], -[0,14938,1698,1585], -[1,2343,9085], -[0,9086,9090,2514,2487], -[0,6520,14959,2116,14939,4449,4648], -[3,603,15], -"documenter", -[2,9087,9088], -[0,4856,6503,4874,14962,1429,1540,2899,14964,3421,1894,14967,4487,4490,14970,91], -"json-api", -[1,2343,9095], -"json:api", -"normalizer", -[0,9096,9097,9098,2487], -[0,14978,14980,14981,1437,1457,1544,1549,14982,14985,14986,984,2145,2151,2659,2700,3170,3459,13399,3784,14990,4093,710,4150,4151,4153,4218,11804,4747], -[0,4874,14992,1429,14995,2215,13333,2899,1894,3760,705,4019,4039,4193,4220,4232,4294,4342,91,4597], -[0,14998,1623,15000,15001], -[3,4873,9], -"@types/mdx", -[1,2343,9103], -"mdx", -[0,9104,9105,9106,2523], -[0,1002,2070,614,1695,1145,1398,2018,2571,15043,15016,7029,3729,814,2713,3757,4431,15017,15019,2861,15020,15030,4165,15040,15006,15044,1537,15031,15037,15048,15018,15028,15042,15047,15007,15009,3502,15033,3923,15022,15036,1618,15039,15046,15014,15013,15015,13818,15024], -[0,15060,4384,1241,4135,4430,1292,15057,15052,1506,15051,15055,15056,15059], -[0,1388,3209,10906,15064,6374,3378,5284], -"encryptor", -[1,2343,34414], -"-model", -[2,603,9109], -"@rushstack/node-core-library", -[3,9111,11], -[2,9112,7009], -[3,9113,12], -"s-comm", -[0,15070,15071,15073,814,4430], -"and-line", -[2,9115,9117], -[2,9114,9118], -"rig-package", -[2,9112,9120], -[0,2832,3275,3752,705,4039,4384,15077], -"heft-node-rig", -[2,9112,9123], -[3,9124,15], -"eft-jest", -[2,6495,9126], -[3,7892,12], -[2,9128,3180], -[2,5554,7625], -[0,1389,14927,1858,2202,2203,353,11316,10906], -"JSDoc", -"AEDoc", -"TSDoc", -"alpha", -"beta", -[1,2343,9138], -[0,9139,0,9140,34352], -[0,28572,1423,14227,15085,15088], -[0,1421,2887,15090], -"tsdoc-build-rig", -[1,2343,9144], -"ig", -[0,9145,9147,9148,2443], -[0,15095], -[3,1937,15], -[0,4389,4039,91,4874,15097], -[0,15100,15101,1616,15102,15103,15105,10368,9254,15107], -[1,2343,9150], -[0,0,9151,9152,2399], -[0,3421,4390,4481,1429,3348,1437,2899,4193,1177,4042,4474,1894,1317,3310,4196,91,4856,4874,6503,6513,3090,6512,4232,1978,1895,1955,603,10817,1011,816,15115,1009,549], -[0,3230,1395,57], -"jju", -[1,2343,9155], -[0,0,0,9157,2487], -"@types/jju", -[0,1396,1388], -[1,2343,9159], -[0,9160,9164,9168,4139], -[0,1082,15127,15128,1437,3090,3183,15130], -"@dat", -"astream/core", -[2,9161,9162], -[0,15132,1177,2070,2899,4039,4042,15134,811,8850,816,4227,4232,15136], -"@types/a", -"ws-lambda", -[2,9165,9166], -[0,5284,15139,15140,15141,6778,7192,5194,6598], -"Lambda", -"Middleware", -"Serverless", -"Framework", -"AWS", -"AWS Lambda", -[1,2343,9176], -[0,9177,9178,9179,2443], -[0,1301,13811], -[0,1090,1317,1389,1537,2676,13651,13633,4237,4389,4431,4535], -[0,6866,1388,1389,1398,15148,6735,15149], -[1,2343,9181], -[0,0,9187,9188,2537], -"Middy", -"HTTP", -"Body Parser", -" Body Parser", -[2,6671,9185], -[0,13614,1158,1159,1177,2708,3410,4103,4389], -[0,1398,4162], -[1,2343,9190], -[0,9197,9198,9199,2537], -[3,7709,17], -"sm", -[2,9191,9192], -"aws-", -"xray-sdk", -[2,9194,9195], -[0,15160], -[0,2899,640,15164], -[0,1401], -[1,2343,9201], -[0,0,8134,9202,2523], -[0,4061,15174,4062,202,5260,364,15175,3392,4552,1460], -"moj", -[2,4964,6770], -[1,2343,9206], -[0,0,9208,9222,2523], -"hash-base", -[0,1637,3566,1894,4039,2278], -"@open-", -"draft", -"/deferred-promise", -[2,9210,9211], -[2,9209,9212], -[3,9213,12], -[2,9214,2942], -"until", -[2,9214,9216], -"is-node-process", -"outvariant", -"ct-event-emitter", -[2,4285,9220], -[0,1623,2278,4329,15182,10052,6398,5130], -[1,2343,9232], -"test-server", -[2,9214,9224], -"@ossjs/release", -[2,4860,982], -[3,7808,15], -"upload", -"fileupload", -[2,9228,9230], -[0,9234,9238,9253,2523], -"rate-limit", -[0,5923,15187,8646,688,691,9296,15194,11420,1170,1437,1676,29297,15197,3445], -[3,7810,9], -"llow-redirects", -[2,9235,9236], -[0,9736,9737,4856,5245,15203,6503,4874,6513,1009,1429,1177,1891,1893,1895,1955,2899,3211,3297,3377,3421,1890,4172,4193,4474,91], -"upertest", -[2,5051,9239], -"@types/ws", -"engine.io-parser", -[2,2032,9230], -[2,2032,9233], -[2,4183,1960], -[3,4220,10], -[2,9246,57], -"ironment-miniflare", -[2,8156,9248], -[2,1984,9249], -[3,5572,9], -[2,9251,2022], -[0,5592,1745,3452,5593,15208,200], -"encoding", -[2,5925,9254], -[3,4684,9], -"ttp-server", -[2,9256,9257], -[1,2343,9260], -[0,9263,9264,9265,2523], -"intercept", -"low-level", -[0,15006,15051,1537,14738,3183,4431], -[0,4389], -[0,1389,6374,15215,3178,3209], -[1,2343,9268], -"mui", -[0,9269,9270,9271,2487], -[0,15221,3220,15220,15223], -[0,15225,4384,4591,4593,3123], -[0,3073,6807,15227,1781,1409], -[2,619,553], -[2,619,594], -"@mui/base", -[1,2343,9276], -[0,9277,9278,9279,2487], -[0,15232], -[0,15234,1177], -[0,15236,25,15237,2139], -"core-", -"s-tracker", -[2,1764,9281], -[2,9280,9282], -[2,619,9283], -[1,2343,9286], -[0,9287,9288,9289,2537], -[0,3080], -[0,14408,15243,14406,15245,14405,14404], -[0,11995,4552,1398,6866,7270,1411,1781,4699,15247], -[1,2343,9294], -"theming", -[2,5695,9291], -[2,619,9292], -[0,0,9295,9297,2537], -[0,1177,1948,2899,3421], -[2,9710,15201], -[0,1412,1413,6435,1644,57,6270,15253], -[1,2343,9299], -[0,9303,9304,9305,2537], -"mui-x", -"timepicker", -[2,1666,9301], -[0,15258,8697,2105,15261,11935,11938,11943,14025,15262,4747,4748], -[0,4874,1429,15264,1610,2899,4255,4474,91], -[0,4504,15266,1973,2759,15267,3323,202], -[1,2343,9325], -"@headlessui/react", -"@iconify-icon/react", -[3,602,8], -[2,9309,1194], -"@mdx-js/mdx", -"@shikijs/transformers", -"@theguild/remark-npm2yarn", -"nist", -[2,7817,9314], -"@vcarl/remark-headings", -"approximate-number", -"-watch-webpack-plugin", -[2,2473,9318], -"flex", -"flexsearch", -"git-url-parse", -"phrasing", -[2,3138,9323], -[0,0,9326,2514,2523], -[0,6041,1192,2020,2675,2205,4042,668,12444,4468,4474,4508,2151,1894,15275,91,53,5087,2990,3123,4864,4131,15276,4057,15277,811,1652,816,15273], -"next-seo", -"-async", -[2,3830,9328], -[3,3968,10], -"ract", -"-excerpt", -[2,9331,9332], -[2,9330,9333], -"rehype-p", -"retty-code", -[2,9335,9336], -"matter", -"frontmatter", -[2,3986,9339], -"remark-h", -"eading-id", -[2,9341,9342], -"link-", -"rewrite", -[2,9344,9345], -[2,3986,9346], -"shiki", -[1,2343,9356], -"-themer", -[2,4383,9350], -"virtual-", -[2,9352,5260], -[2,4670,9353], -"zustand", -[0,9369,9370,9371,2443], -[2,4860,4349], -"tra-watch-webpack-plugin", -[2,8773,9358], -[3,7634,10], -"-url-parse", -[2,9360,9361], -[2,9099,6892], -"@repo/eslint-config", -"@repo/", -[2,4524,1541], -[2,9365,9366], -[2,9365,7628], -[0,2928,32554], -[0,11976,15288,8419,4874,7677,37080,8420,4039,4493,91,1984,8422], -[0,2325,20164,8436,202,10339,8437,1552,3143,8438,9553,8439,8440,8441,8442,8443], -[1,2343,9373], -[0,9377,9380,9385,2537], -[3,5309,9], -[2,9374,8924], -[2,9374,57], -[0,9441,15305,15308,15310], -"css-what", -"esthetic", -[0,13614,1159,9254,1855,1177,2011,2133,13619,2708,3410,3421,3431,4103,4389], -"builder", -"guides", -"demo", -"ng-doc", -[0,5284,5286,3595,676,6716,7239,6714,6715,7162,1417,7272,3046,6830], -[1,2343,9387], -[0,0,8134,9388,2537], -[0,1420,15320,15318,15321,13230,15322,1758,4545,15323,1871,2585,6270,15324,15326], -[1,2343,9390], -[0,0,0,9391,2537], -[0,12080,12075,8221,1388], -[1,2343,9399], -[2,3964,1671], -"has-p", -[2,9394,3871], -[2,2573,9395], -[3,9396,11], -"eading-", -[0,0,0,9410,2523], -"eading-rank", -[2,9397,9400], -"rehype-m", -"inify-", -[2,9403,3661], -[2,9402,9404], -[3,4555,11], -[2,9406,7131], -[3,9312,9], -[2,9408,3958], -[0,4231], -[1,2343,9412], -[0,9413,9418,9419,34352], -[0,3299,32944], -"ordinal", -[3,6490,12], -"as-promised", -[2,9415,9416], -[0,4874,15342,2026,2822,2899,3536,4255,4481,91], -[0,1424,15344,11812,15345,15346,158,11806,2636], -"ethers", -"hat", -"hardhat", -"n.js", -[2,4853,9423], -[3,634,25], -[2,9425,9420], -[3,634,17], -"low-", -"low-imports", -[2,1967,9429], -[2,9427,9430], -[3,9431,31], -"-inter", -"nal-rules", -[2,9433,9434], -[2,9422,9435], -[2,9432,9436], -[1,2343,9442], -"ethereum", -"smart-contracts", -[2,1417,15307], -[0,0,9443,9444,2537], -[0,1159,1177,1881,1938,2151,2899,2924], -[0,2924,1932,15356,1204,3209], -[1,2343,9446], -[0,0,0,9450,2523], -"proggy", -"cacache", -"bin-links", -[0,3521,15361,1973,5472,15362], -"treeverse", -"@npmcli/fs", -"walk-", -"up-path", -[2,9453,9454], -[2,636,3766], -[3,643,9], -"edact", -[2,9457,9458], -"npm-p", -"ick-manifest", -[2,9460,9461], -"-checks", -[2,1161,9463], -[2,3382,9464], -"promise-", -[1,2343,9482], -"call-limit", -[2,9466,9468], -[3,2854,15], -"nice", -[2,9470,9471], -"-conf", -"lict-json", -[2,9473,9474], -[2,1644,9475], -"package-", -[2,9477,1781], -[2,636,9478], -"common-", -"ance", -[0,0,9511,9521,2523], -"stor-path", -[2,9481,9483], -[2,9480,9484], -"read-p", -"ackage-json-fast", -[2,9486,9487], -"all-reject-late", -[2,9466,9489], -[3,641,9], -"ame-from-folder", -[2,9491,9492], -[3,638,9], -"etavuln-calculator", -[2,9494,9495], -[3,548,8], -"e-compare", -[2,2703,9498], -[2,4284,9499], -[2,9497,9500], -"json-p", -"arse", -"-even-better-errors", -[2,9503,9504], -[2,9502,9505], -"installe", -"d-package-contents", -[2,9507,9508], -[2,636,9509], -[0,1414,15370,2899,1177,668,2203,15371,1690,1894,442,91,15373,15374,5476,1942,15376,811,5478], -"tcompare", -"oss", -[2,4641,9513], -[2,636,9514], -[2,636,7625], -"minify-", -[3,3396,9], -[2,9518,6774], -[2,9517,9519], -[0,1973,6468,1145,5472,1429], -[1,2343,9523], -[0,9524,9525,9526,2523], -[0,15373], -[0,1414,1429,2899,1177,2203,1894,442], -[0,1429,15385,1388,1149,5472,5710,6567,14833], -[2,664,591], -[1,2343,9529], -[0,0,9530,9531,34352], -[0,3095,2899,1429], -[0,1429,3495,15393], -[1,2343,9533], -[0,0,9534,9535,34352], -[0,1429,2899,2759,1596,14942,15398], -[0,1429,15385,15400,1435,6793,1932,15402,1697,15403,3529,9549,7015,15405], -[3,9479,9], -"-spawn", -[2,2751,9537], -[2,9536,9538], -[1,2343,9541], -[0,0,9543,9544,4139], -"spawk", -[0,1414,1906,1166,4481,2020,3130,3077,15411,4874,6271], -[0,1473,7208,1512,7009,7201,200,1871,1111,590,592,6621,6983,6616,7244,4166,4744,3073,6807,6876,2585], -[1,2343,9546], -[0,0,9571,9581,2399], -"innertext", -"highlights", -"similar", -"similarity", -[3,2954,9], -[2,9551,2714], -"ttl", -[2,4635,9553], -"dart", -[2,9551,9555], -"glsl", -[2,9551,9557], -"haxe", -[2,9551,9559], -"rust", -[2,9551,9561], -[2,3064,2204], -"erlang", -[2,9551,9564], -[2,9551,4333], -"-tokens", -[2,9548,9567], -"atom-language-diff", -[3,9569,14], -[0,1166,1178,1596,15418,1177,15421,2323,15423,2384,2494,2510,15424,1209,3421,3756], -"nginx", -[2,9570,9572], -"url-t", -"o-object", -[2,9574,9575], -[2,2287,9576], -[3,3114,13], -"xpand-tabs", -[2,9578,9579], -[0,1438,3778,1179,1973,15426,1213,15427,15428], -"-headers", -[2,7189,9582], -[2,3108,9583], -[1,2343,9589], -"oniguruma", -"-stdout", -[2,9261,9587], -[0,0,0,9590,2523], -[0,1444,15321,6270,353,15320,15326,15436,15437,15439], -"readme", -[1,2343,9596], -"formatted", -" highlighting", -[2,5341,9594], -[0,9597,9598,2514,2537], -[0,15444,9632,1556,15447,6041,15448,15449,3445,3510,15450,15451,4135,15452], -[0,4874,5254,7677,1177,1905,2807,1894,4257,91,4543,1984], -[1,2343,9600], -[0,9601,9602,9603,2537], -[0,15458], -[0,811,15460,8850,816,842,1006,15463,1009,1011,15465,15467,15469,1540,1596,1610,1177,15471,1927,1937,1948,1999,2070,2765,2766,2297,2881,2886,2891,2895,2898,6387,2910,15475,2923,5303,3220,3222,3536,4042,4052,6390,15478,4073,91,4747], -[0,1424,15480,2382,15481,12075,6398], -[1,2343,9605], -[0,9606,9607,9608,2443], -[0,3493,4548,15488,15487,2654,15486,1754,15502,15491,15499,15495], -[0,4494,4483,2675,2832,1177,2814,1984,2203,1894,4441,442,91,4874,2990,13204,19438,15504,1953,15505,4523,7677,1942,22839,1982,3703,15507,1895], -[0,15512,2814,3585,15514,57,965,6523,1936], -[1,2343,9610], -[0,9611,9612,9613,2523], -[0,1615,15526,3734], -[0,1173,14184,1235,1267,1429,1177,2272,2899], -[0,1451,3729,6567], -[1,2343,9615], -[0,9616,9617,9618,2537], -[0,97,15533,8597,15538,13042,1156,1325,15540,1461,1505,12160,1582,1593,1603,15541,15545,15547,15548,13047,15550,5100,15551,15553,2752,2822,15554,2272,15555,15556,12172,3220,15559,1894,11196,15560,15562,3775,11219,11363,15566,15568,15570,15573,3843,3847,15575,15578,3876,3893,3913,4023,15579,11264,4163,15580,4484,4545,4649,3348], -[0,53,61,71,73,76,78,5806,13052,5835,15585,83,5850,5853,87,90,7833,7839,7840,11275,4859,15587,15592,4863,15594,15596,5087,15598,4870,15600,15602,12179,4880,15605,4883,15606,15607,11322,1009,1011,1110,1165,1170,1175,1178,1193,1195,1205,13080,5098,15609,15611,15612,15613,1426,1437,13086,1525,1610,1628,4912,1639,11336,13093,1843,1845,8160,1177,1879,1895,1922,1938,1939,1947,1948,1959,15615,2054,2060,11345,2092,2148,2193,2070,2323,2338,2510,13099,2529,2675,2686,2697,15616,1192,2832,5102,695,13115,2990,1209,11357,13119,15618,13123,3177,3183,3188,3190,3191,3213,3216,3222,3427,3463,3561,3618,3720,11204,15619,15622,11362,89,3807,3810,3817,3820,5106,5108,15624,3846,15627,9340,3992,13124,13127,8304,13128,4039,13129,15629,4320,11384,11389,4323,11396,4328,4409,4431,4469,91,4549,4027,15630,15632,2924,15635,4689,13152,11401,5038,3354], -[0,15637,4964,89,5128,4627,4963,181,5130,4967], -[1,2343,9620], -[0,9629,9630,9631,2537], -"Monorepo", -"Angular", -"Web", -"Node", -"Nest", -"Jest", -"Cypress", -"CLI", -[0,15648], -[0,15645,4874,1894,4448,91,10761], -[0,2150,2282,6720,7158,6929,2090,2154], -"confbox", -[1,2343,9634], -[0,0,9635,9636,2523], -[0,1470,2675,23535,4255,4389], -[0,15656,15658,11857,1973,13735], -[2,13512,9638], -"-old", -[1,2343,9640], -[0,9641,0,9642,2523], -[0,182,148,6164,164,167,6215,137,27531,6127,29468,159,15664,177,187,153,162,180,185,191,157,15667,15670,15672,27537,140,15676,6200,6166,143,15678,171,116,15681,150,155,29542,15685,15687,6217,15690,15692,122,169,15695,119,15697,15700,6173,15703,146,6133,6158,15706,15712,111,6168,15714,15716,174,15720,15724], -[0,6092,1459,6094,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130], -[1,2343,9644], -[0,0,9645,9646,2523], -[0,4481,4042,4441,2665,3117,8850,811,816], -[0,89,1623,5256,6848,1461,614,6435], -"EsBuild", -"Front-end", -"Backend", -[1,2343,9651], -[0,9652,9653,9655,2523], -[0,4227], -[0,1389,1177,1881,2659,3297,4153,4616], -"linter", -[0,1623,2632], -[1,2343,9660], -"Lint", -"ESLint", -"Testing", -[0,9661,9662,9663,2399], -[0,1700], -[0,48,53,87,92,15742,5087,4874,15745,1193,1503,1610,1701,1177,2020,2675,1192,2990,2991,3377,1894,3921,4135,15747,91,2924], -[0,2924,1932,4050,202], -[1,2343,9665], -[0,0,0,9666,2523], -[0,1111,1468,7009], -"Express", -[1,2343,9669], -[0,9670,8134,9671,4139], -[0,15757,4025], -[0,1468,1237,3209,1204,2325,15759,15760,15761,5669,6865,7293,6790,2145], -[1,2343,9674], -"js-tokens", -[0,9679,0,9682,2523], -"const-enum", -[2,1199,9675], -[2,4524,6774], -[2,1226,9677], -[0,2070,2021], -"Swc", -"Tsc", -[0,200,9753,15767,15769,15768,7058,7201,15770,15771,15774,1523,15776], -[1,2343,9684], -[0,0,9685,9686,4139], -[0,1166,91,1906], -[0,200,5403,14907,7009,6048,7201,6938,3656,14908,2585,1781], -"@nestjs/schematics", -"@phenomnomnominal/tsquery", -"@date-fns/tz", -[1,2343,9691], -[0,9693,9694,9695,2537], -[3,23750,37,8], -[0,2353,1856,15786,13824,15788], -[0,1177,15793,15797,15801,2675,2990,3421,15804,15805], -[0,1111,1473,7201,7009,200,4166,3073,6807,4744], -[1,2343,9697], -[0,9698,9699,9700,2443], -[0,4035], -[0,4874,1166,91,1906], -[0,200,13006,1111,15813,5876,15814,15815,6048,7009,7201,6621,4166,6876], -[1,2343,9702], -[0,0,0,9703,34352], -[0,200], -[2,689,2656], -[3,691,8], -[2,9705,3320], -"help", -[2,689,9707], -[1,2343,9713], -[3,691,14], -"plugins", -[2,9710,9711], -[0,0,9715,9716,2537], -"fancy-test", -[0,1166,3077,15826,91,1906], -[0,200,1478,6787,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921,1781], -[1,2343,9718], -[0,9719,9720,9726,2399], -[0,1512], -[0,4170,15833], -[3,4866,9], -"dent-string", -[2,9721,9722], -"xyquire", -[2,6508,9724], -[0,200,1512,176], -[1,2343,9728], -[0,9729,9732,9751,2523], -[0,1209,4290,1512], -"clean-stack", -"widest-line", -[0,15841,1429,1481,1596,15843,15844,2323,2436,2463,2541,4193,4196], -"rett", -"ier-config", -[2,9733,9734], -[2,9705,9735], -[2,689,1973], -[3,4859,9], -"ean-stack", -[2,9738,9739], -"@types/ejs", -"npapi", -[2,5088,9742], -[3,9240,10], -"ports-color", -[2,9744,9745], -[3,7822,10], -"dwrap", -[2,9747,9748], -"madge", -[0,202,1523,3924,200,176,15846,15847,3656,1512,10052], -" line", -[2,1523,9752], -[1,2343,9755], -[0,9756,9757,9751,2399], -[0,4290], -[0,1481,1177,1895,1955,1192,15853,15854,1894], -[1,2343,9759], -[0,9761,8134,9762,2399], -[2,1890,4406], -[0,4208,4290], -[0,15862,15864,2585,7051,6913,200,7009,6048,4166,4289,1111,1871], -[1,2343,9764], -[0,9775,9795,6936,2537], -"paginate-rest", -[2,1186,9765], -[2,7724,9766], -[3,9767,16], -"request-", -"request-log", -[2,9768,9770], -[3,9771,18], -"st-endpoint-methods", -[2,9772,9773], -[0,1437,4484,2755,1209,4135,2822,15869,2151,4294,688,1110,9730,15871,1107,13223,4290,15872,15873,2709,15876,4351,15877,15880,15883,15887], -"-action", -"auth-action", -[2,7724,9777], -[3,9778,15], -"pp", -[2,9779,9780], -[2,1182,2995], -[2,7724,9782], -[3,692,11], -[2,9784,5460], -[2,7724,2190], -"update-", -"vers", -"in-files", -[2,7854,9789], -[2,9788,9790], -[2,9787,9791], -[2,6324,9792], -[2,4131,9793], -[0,1429,1170,2899,1177,4474,9714,91,4856,4874,6503,4870,5254,7637,4864,1431,15891,15893,9740,1891,15897,9746,9417,1893], -"octokit", -[3,3450,10], -[1,2343,9799], -[0,9800,9801,9802,2523], -[0,7103], -[0,816,10817,5087,4870,4874,27744,1009,1011,15903,15906,1177,15909,1959,2188,1192,1209,4042,15911,4468,4474,91], -[0,200,91,57,7119,7233,7058,5675,1523], -"action-menu", -[2,698,9803], -[3,9804,21], -"sheet", -[2,9805,9806], -[3,9804,15], -"lert", -[2,9808,9809], -[2,9808,2944], -"nchor", -[2,9808,9812], -"rea", -[2,9808,9814], -"chart", -"flowchart", -[2,5745,9817], -[2,9808,9818], -"utocomplete", -[2,9808,9820], -[1,2343,9823], -[0,9824,9825,9827,2523], -[0,15917,1631,15918], -[0,53,87,1195,1429,1610,1177,1881,1895,1938,1955,2675,2297,2878,2881,2900,2918,2925,2990,2899,1894,4193,4481,4537,2924,4677], -"vatar", -[0,1492,1585,15921], -"badge", -[2,698,9828], -[3,9829,16], -[1,2343,9832], -[0,9836,9839,9881,2537], -"se-select", -[2,9830,9833], -[3,9829,15], -[0,34216,2020,32794,2755,15926,28429], -"readcrumb", -[2,9835,9837], -[0,1166,1906], -"-item", -[2,9838,9840], -"ulletin-board", -[2,9835,9842], -[3,9843,16], -"tton", -[2,9844,9845], -"-group", -[2,9846,9847], -[2,698,9026], -[2,9849,8657], -[3,9850,23], -[2,9851,6624], -[3,9849,16], -"rd", -[2,9853,9854], -[2,9855,9847], -[3,9856,19], -[2,9857,1283], -[3,9855,17], -"ousel", -[2,9859,9860], -[2,9861,9840], -"scader", -[2,9853,9863], -"-menu", -[2,9864,9865], -[3,9866,24], -"obile", -[2,9867,9868], -[3,9866,23], -[2,9870,202], -"panel", -[2,9870,9872], -[2,9870,1631], -[2,9870,6624], -[3,9849,15], -"ell", -[2,9876,9877], -"hart", -[2,9876,9879], -[0,1492,1585,15928,15929,15930,3917,6033,15931,1490,15932,15933], -[1,2343,9883], -[0,9884,9885,6162,2537], -[0,4290,4294,4726], -[0,4874,1009,1011,1414,1429,1437,1610,1177,1938,1953,2321,2899,4039,8689,91], -[1,2343,9887], -[0,0,9888,2514,2487], -[0,2276], -[1,2343,9890], -[0,0,9891,9893,2399], -[0,1999,4579,4072], -"gauge", -[0,5256,6848,1461], -[1,2343,9895], -[0,9896,0,9897,2523], -[0,1474], -[0,15953,9628,14777,15955,1478,9892,3924,7201,1398], -[1,2343,9899], -[0,0,9900,9901,2487], -[0,1389,15960,2899,3261], -[0,1149,2124,1179,15962,15964], -[1,2343,9903], -[0,9904,9905,9907,2537], -[0,2927], -[0,4170,2899,1499], -"pie", -[0,7009,7201,3741,8622,6875,10098,1499], -[1,2343,9909], -[0,9034,9910,9911,2523], -[0,620,3123], -[0,1973,2022,6468], -[1,2343,9913], -[0,9914,9915,9916,2443], -[0,6478,15980,2822,15984,15985], -[0,1177,1895,2675,1192,2990,3203,1894], -[0,4504,15988,15990,1503], -[1,2343,9918], -[0,9919,9920,9921,2487], -[0,15997,15999,16000,16002,16003,16005,16006], -[0,16009], -[0,6038,1501], -[1,2343,9923], -[0,0,9924,9926,2399], -[0,1734,16015,2600,3105,4545], -"fall", -[0,5284,1351,1509,4643], -[1,2343,9928], -[0,0,9929,9926,2537], -[0,53,87,10688,1505,1734,2600,16021,3105,3758,4545,2924], -[1,2343,9946], -[3,9880,16], -"eckbox", -[2,9931,9932], -"-button", -[2,9933,9934], -[3,9935,23], -[2,9936,7227], -[2,9876,7877], -"lapse", -[2,9938,9939], -[2,9940,9840], -[3,9941,23], -"ition", -"transition", -[2,9942,9944], -[0,9972,9975,10072,2537], -"icker", -"or-picker", -[2,9938,9948], -[3,9949,20], -"select-", -[2,9951,9872], -[2,9950,9952], -"umn-list-group", -[2,9938,9954], -[3,9955,26], -[2,9956,5401], -[3,9938,16], -"mpany", -[2,9958,9959], -"nfig-", -"provider", -[2,9961,9962], -[2,9958,9963], -[3,9964,17], -"tainer", -[2,9965,9966], -"untry", -[2,9958,9968], -"rop", -[2,9876,9970], -[0,6271,11421], -"urrency", -[2,9876,9973], -[0,2899,4481,1906], -"date-panel", -[2,698,9976], -[3,9977,20], -[2,9978,9947], -"-mobile-", -"first", -[2,9980,9981], -[2,9979,9982], -[3,9977,19], -[2,9984,6754], -[2,9984,176], -[3,9977,15], -"ept", -[2,9987,9988], -"ialog-box", -[2,9987,9990], -[3,9991,21], -[2,9992,1631], -[3,9991,16], -"vider", -[2,9994,9995], -"rawer", -[2,9987,9997], -[3,9998,16], -"op-roles", -[2,9999,10000], -[3,10001,19], -"times", -[2,10002,10003], -[3,10001,18], -[2,10005,2971], -[2,10006,9840], -[3,10007,23], -[2,10008,4403], -"ynamic-", -"scroller", -[2,10010,10011], -[2,9987,10012], -[2,10013,9840], -"espace", -[2,698,10015], -[3,10016,15], -"xception", -[2,10017,10018], -"fall-menu", -[2,698,10020], -[3,10021,15], -"ile-upload", -[2,10022,10023], -[3,10024,17], -[2,10025,2389], -[2,10026,8657], -[3,10027,22], -"ox", -[2,10028,10029], -[3,10027,21], -[2,10031,9872], -"loat-button", -[2,10022,10033], -[3,10034,19], -"bar", -[2,10035,10036], -"ing-", -"button", -"ing-button", -[2,10035,10040], -[3,10034,17], -"wchart", -[2,10042,10043], -[3,10034,16], -"uent-editor", -[2,10045,10046], -[2,10022,3469], -[2,10048,9840], -"ullscreen", -[2,10022,10050], -"grid", -[2,698,10052], -"-column", -[2,10053,10054], -[3,10055,19], -"manager", -[2,10056,10057], -"toolbar", -[2,10056,10059], -[3,10053,15], -"uide", -[2,10061,10062], -"hrapprover", -[2,698,10064], -[2,698,158], -"-viewer", -[2,10066,10067], -[3,10066,15], -"ndex-bar", -[2,10069,10070], -[0,1473,7208,1623], -[3,10071,16], -"put", -[2,10073,10074], -"p-address", -[2,10069,10076], -[2,698,5433], -[3,10078,16], -"yout", -[2,10079,10080], -[3,10078,15], -[2,10082,2716], -[2,10083,9865], -[1,2343,10086], -[0,0,0,10090,2523], -"oading", -[2,10082,10087], -[3,10088,16], -[0,7009,592,1473,1111], -"cales", -[2,10089,10091], -"gon-user", -[2,10089,10093], -[3,10094,18], -"ut", -[2,10095,10096], -"mask", -[2,698,10098], -[3,10099,15], -"enu", -[2,10100,10101], -[3,10102,16], -"ssage", -[2,10103,10104], -"ilestone", -[2,10100,10106], -[3,10107,16], -"nd-map", -[2,10108,10109], -[1,2343,10112], -[0,0,10113,10120,2523], -[0,1177,1886], -[2,10100,3852], -[3,10114,16], -"nth-range", -[2,10115,10116], -[3,10117,20], -[2,10118,176], -[0,1111,7009,1512], -[1,2343,10122], -[0,10140,10184,10220,2443], -"nav-bar", -[2,698,10123], -[3,10124,18], -[2,10125,4403], -[3,10124,15], -[2,10127,2304], -"umeric", -[2,10127,10129], -[2,698,5675], -[2,10131,9847], -"pager", -[2,698,10133], -[2,10134,9840], -[3,10134,16], -[2,10136,7251], -[3,10134,15], -[2,10138,9947], -[0,4294,16041], -"op-upload", -[2,10138,10141], -[3,10142,17], -[2,10143,8622], -[2,10143,6038], -[2,10143,2883], -[2,10143,2104], -"rogress", -[2,10138,10148], -"ull-refresh", -[2,10138,10150], -"qr-code", -[2,698,10152], -[3,10153,15], -"uarter-panel", -[2,10154,10155], -[3,10156,16], -"ery-builder", -[2,10157,10158], -[3,697,15], -"adio", -[2,10160,10161], -[2,10162,9934], -[3,10163,20], -[2,10164,7227], -[3,10162,16], -[2,10166,6864], -[3,697,16], -"cord", -[2,10168,10169], -[3,10170,17], -"ycle-scroller", -[2,10171,10172], -"ich-text-editor", -[2,10160,10174], -[3,10175,16], -"ver", -[2,10176,10177], -"oles", -[2,10160,10179], -[3,10180,16], -"w", -[2,10181,10182], -[0,1173,1267,1437,4387,4389], -"scroll-text", -[2,698,10185], -[3,10186,20], -[2,10187,10036], -[3,10186,15], -"earch", -[2,10189,10190], -[3,10191,16], -[2,10192,4021], -"-dropdown", -[2,10193,10194], -[3,10195,21], -[2,10196,5131], -[2,10196,6624], -"ed-box", -[2,10193,10199], -[2,10189,1580], -"keleton", -[2,10189,10202], -[2,10203,9840], -"lider", -[2,10189,10205], -[2,10206,9934], -[2,10207,9847], -"plit", -[2,10189,10209], -"-list-item", -[2,1902,10211], -[2,10189,10212], -[3,10213,17], -"tistic", -[2,10214,10215], -[3,10213,16], -"eps", -[2,10217,10218], -[0,6922,2585,1111,7201,7009,4719,176], -[1,2343,10242], -"witch", -[2,10189,10222], -[3,700,15], -"ab-item", -[2,10224,10225], -[3,10226,17], -[2,10227,10036], -[2,10228,9840], -[2,10227,2699], -[2,10227,591], -[3,10226,16], -"g", -[2,10232,10233], -[2,10234,9847], -"ext-popup", -[2,10224,10236], -"ime", -[2,10224,10238], -"-line", -[2,10239,10240], -[0,0,10243,10265,2487], -[0,2025,2272,2899], -[3,10241,19], -[2,10244,9872], -[3,10245,20], -[2,10246,9947], -[2,10247,701], -[2,10244,6754], -[2,10244,1631], -[3,10250,20], -"pinner", -[2,10251,10252], -"line-item", -[2,10239,10254], -"oast", -[2,10224,10256], -[3,10257,16], -"ggle-menu", -[2,10258,10259], -"oltip", -[2,10258,10261], -"p-box", -[2,10258,10263], -[0,200,1523,3504], -"ransfer", -[2,10224,10266], -"-panel", -[2,10267,10268], -[3,10267,16], -"ee", -[2,10270,10271], -[2,10272,9865], -[3,10273,19], -[2,10274,1631], -[2,698,9229], -"-dragger", -[2,10276,10277], -[3,10278,21], -[2,10279,3392], -[3,10276,15], -"ser", -[2,10281,10282], -"-account", -[2,10283,10284], -[3,10285,19], -[1,2343,10288], -[0,10297,10298,10305,2443], -"contact", -[2,10286,10289], -[2,10286,3193], -[2,10291,9847], -[2,10286,163], -"watermark", -[2,698,10294], -[3,10295,15], -[0,16053,16056,3025,16057], -[0,1187], -"izard", -[2,10296,10299], -"year-range", -[2,698,10301], -[3,10302,19], -[2,10303,176], -[0,6478,1644,7233,7058,5675,14690,57,7119,200,1523,3924], -[3,1533,10], -[2,10306,6082], -"vue-c", -[2,10308,544], -"opentiny", -"less-c", -[2,10311,544], -[2,8924,10312], -[3,3197,10], -[2,10314,544], -[1,2343,10317], -[0,10318,10319,10320,2537], -[0,16053,16064,16066,16057], -[0,811,816,2829,4042,1187], -[0,7009,9753,1521,1179], -"esno", -[1,2343,10323], -[0,0,10324,10325,2537], -[0,4481,1192,1177,2203,4468,1894,442,91,5087,4874,4523,1939,1895], -[0,1525,1523,5675,57,200,7233,7058,6478], -[3,2517,9], -[2,10326,134], -[2,2522,8754], -[1,2343,10330], -[0,10331,10332,10333,2523], -[0,2070,1680,1209,16085,16078,2151,2720,3183,7915,4296,1707,16082,4300,1652], -[0,3421,1429,3348,2899,4193,2194,4135,1503,3363,48,2708,3752,53,94,4131,87,3200,1208,16092,16088,16090,78,1570], -[0,1528,3721,1671,16096,1527], -[1,2343,10335], -[0,10336,10338,5265,2537], -[0,192,6303], -"otterhttp", -[0,6306,6307,26379], -"node.js", -"web framework", -[1,2343,10343], -[3,17194,17], -[0,0,10344,10358,2487], -[0,1173,1178,1198,1230,13982,1264,1280,1503,1610,1742,1177,1895,1955,1192,3170,1894,4039,4042,4045,4067,4077,4706], -"header", -"-range-parser", -[2,10345,10346], -[2,704,1080], -[3,703,13], -"ntent-type", -[2,10349,10350], -[2,988,2706], -[2,704,10352], -[2,704,1000], -[2,704,1002], -[3,706,12], -[2,10356,995], -[0,4552,1172,6778,16107,5194,16108,16109,1936,8958,16110,3924,16111,3250,16112,3374,6985,16113,16114,16115,1871,16116,4301,10381,16117,1283], -[1,2343,10360], -[0,0,9839,10361,2487], -[0,2013,13771,2018,6868,15535,11631,16123], -[1,2343,10365], -"es-escape-html", -[3,10351,19], -[0,10375,10377,10378,2523], -"disposition", -[2,10364,10366], -"encode", -"encode-url", -[2,704,10369], -[3,10370,12], -"rrors", -[2,10371,10372], -[2,704,4590], -[0,1413,16130,1676,12627,16128,4100,4590], -"res", -[0,1087,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], -[0,1536,16518,25386,2663,2026,21665,27,3101], -[1,2343,10380], -[0,10383,9264,2514,2537], -"tag", -[2,10371,10381], -[0,16136,2713,3923,7231], -"send-file", -[1,2343,10386], -[0,10387,10388,10390,2537], -[0,4094,1437,4747,4459,4165,4351], -[0,2675,1177,1984,668,2203,1894,442,91,4874,2990,6479,4892,16151,16150,4523,16149,7677,4103,9746,22839,16144,1895,1955,16152,23753,10964], -[2,712,1732], -[0,16159,13792,12804,1540,1523,16160], -[1,2343,10394], -"fined", -"undefined", -[0,10395,10396,10398,2537], -[0,2856], -[0,4874,1414,1509,16166,34218,16167,3583,705,4135,4452,4474,91,4545,16168,4745], -"randexp", -[0,12084,1541,8309,16172,16174,1263,6639], -[3,10389,22], -"js-prettier-config", -[2,10399,10400], -"i-color", -[2,9738,10402], -[3,7744,9], -"tp-proxy", -[2,10404,10405], -"isnil", -[2,6308,10407], -[3,4874,9], -"@types/nock", -[1,2343,10412], -[0,10414,9839,10415,2537], -"@types/ramda", -[0,16181,8098,2215,34027,16184], -[0,1541,1542,13901,8309,6937,16188,1781,2382,16189,7007,14745], -"-and-tag-version", -[2,1528,10416], -"hai-friendly", -[2,4914,10418], -[3,3028,12], -[1,2343,10422], -[0,10423,10424,10425,2537], -[0,1676,2099,3494,4578], -[0,1177,2899,3421,4342], -[0,5130,5122,2663,1544,16196], -"pact", -"pact-js", -" testing", -"ract testing", -[2,3109,10429], -"r driven testing", -[2,6613,10431], -[1,2343,10434], -[0,0,10435,10436,2443], -[0,4616], -[0,1544,2026,16202,6347], -[1,2343,10438], -[0,0,10439,2514,2537], -[0,1177,1192,4193], -[1,2343,10444], -"default", -"waapi", -"urls", -[0,10445,10447,10448,2537], -[0,1676,16211], -"arguments", -[0,11436,192,5467,19181,442,5245,6494,7808,4874,9240,1009,1011,1166,1414,1503,1177,1895,1930,1955,2026,2040,2193,2675,2990,3230,3400,3446,1894,4257,4342,1531,4508,91], -[0,1544,1550,3230,1577,2026], -[1,2343,10450], -[0,0,10451,10452,2523], -[0,11976,7808,4874,7677,2040,4474,91,1983,26744,1984], -[0,1544,1552,1577,2026], -[1,2343,10454], -[0,0,10455,10456,4139], -[0,8646,4874,7677,1446,16230,1177,1905,16232,1894,16234,15452,4290,91,4543,1984], -[0,7201,2942,16237,16238,200,14566,4549,3741,16239,1671,1851,16240], -[1,2343,10458], -[0,0,10459,10460,2523], -[0,1906,1166,1758,16257,2746,1797,7614,3754,16272,16249,16262,16264,16268,16270,4371,16277,16279,2675,16263,89,16278,1177,16260,5304,16267,1209,16269,4135,16274,16276,16281,2114,16261,16271,2608,3257,3416,16282,3824,2036,3985,16275,4545,16280,53,16259,2990,16265,16245,1506,16251,16273,16256,16248,90,3995,1909], -[0,16284,1283,6624], -[1,2343,10462], -[0,0,10463,10464,2487], -[0,1414,1177,1903,1938,1948,1954,1958,1970], -[0,1560,27,16290,10376], -[1,2343,10467], -"fd-package-json", -[0,0,10468,10469,2523], -[0,3421,2899,1177,1693,1954,1938,1958,1903,1970], -[0,1562,27,990,10376,16296], -[1,2343,10471], -[0,10472,0,10473,2537], -[0,18186,10466,3157,18183,16309,13848,28401,16322], -[0,1566,16094,13729,3073,200], -[1,2343,10475], -[0,10476,0,10477,34352], -[0,3157,16330,16329,1566], -[0,200,13326,1566,16094,13729,3073], -[1,2343,10479], -[0,10480,0,10481,2443], -[0,16337], -[0,1566,16341,16342], -[1,2343,10483], -[0,0,10484,10485,2537], -[0,16349,4384], -[0,6270,12938,4225,3053,1388,1676], -[1,2343,10487], -[0,0,10488,10489,2523], -[0,29867,7677,16356,91,1984], -[0,977,16358], -[1,2343,10491], -[0,10492,9025,10493,2537], -[0,977,1581], -[0,977,2663], -[1,2343,10495], -[0,10496,10497,10498,2399], -[0,16358,1676,16128,4100], -[0,1544,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], -[0,1544,2026,2663,1577], -[1,2343,10500], -[0,0,0,10501,2537], -[0,977,16375,16376], -[1,2343,10503], -[0,10504,10505,10506,2537], -[0,16382], -[0,1389,3183,3294,16384,3460,16389,4535], -[0,1492,1585,1388], -[1,2343,10508], -[0,10509,10510,10511,2537], -[0,27921,2200,4121,3369,4143], -[0,1700,1192,2675,3144,1622,1177,1701,2203,16407,2924,1894,1610,48,442,1193,91,53,4874,2092,2990,3400,192,1953,27928,4257,87,4523,16396,1939,1942,68,1938,16398,20281,1982,1895,1955,19344,16400,5467], -[0,2924,1932,16410,7004,1585], -[1,2343,10513], -[0,10514,10515,2514,2537], -[0,2070,3181,3188,16415,4431,4558,4747], -[0,4039,4389,4387], -[1,2343,10517], -[0,0,7923,10518,2537], -[0,16421,11194,1179,16423,16424,16425], -[1,2343,10520], -[0,10521,10522,10523,2537], -[0,3044,1588,16432], -[0,4880,4883,91,89,3824], -[0,89,91,11194,11255,16435], -[1,2343,10525], -[0,10526,10527,10528,2537], -[0,1543,16446,16449,16444,6038,2020,3368,4135,4375], -[0,16454,1414,2765,4037], -[0,1591,5576,200], -[1,2343,10530], -[0,0,0,10531,2523], -[0,6570,6964,6789,7221,6746,7011,7194,7087,6839,6860,6918,6620,6777,16461,6748,7171,6894,6945,6743,7309,6837,6644,6634,7259,6797,7061,6608,16462,6726,6828,7275,6569,7144,7108,7027,7263,6923,6854,7134,6762,7042,6818,6677,6422,6805,1858], -[1,2343,10533], -[0,10534,10535,10536,2537], -[0,3427,4590], -[0,1087,1177,2026,2899,3421,4342], -[0,1594,2026,1544,2663], -[1,2343,10538], -[0,10539,10540,10541,2487], -[0,16473,2702,2822,16474], -[0,7637,4874,16478,1009,1011,16480,1610,1177,16482,1895,1915,1938,1954,1985,2675,2990,15757,1894,16484,91,1984], -[0,3001,8309,1541], -[1,2343,10543], -[0,10544,10545,10546,2537], -[0,2822,16491,16492,3183,705], -[0,2899,3421,4170,4172,4193,1906], -[0,4504,1596], -[1,2343,10548], -[0,10549,10550,10551,2537], -[0,16499,2205,3157], -[0,1166,2020,3505,16330,1906], -[0,13326,200,1585,16502,16499,2090,1586,1496,2150,3101,2070,16503,3275,2062,3719,2382,1563,16504], -[1,2343,10553], -[0,10554,10555,10556,2537], -[0,2212,16513,1448,16509,16512,2685,16511], -[0,1414,1166,4494,3297,4193,1177,2203,442,16515,91,4874,4454,4523], -[0,5284,1598,16517,15514,15362,2814,6710,27,2671,13333,2212,705,1002,11996,16518], -"@epic-web/invariant", -[1,2343,10559], -[0,0,0,10560,2443], -[0,1599,16523,16526,16528,16524,16530,16531,16532,13580,16533,16534,16536,16537], -[1,2343,10562], -[0,10563,10564,10565,2523], -[0,16542,2713,13892,16543,16544], -[0,13817,4100,4255,4387,4389], -[0,1616], -[1,2343,10567], -[0,10568,10569,10570,2523], -[0,3082,3427], -[0,1192,3744,89,3824,2924], -[0,89], -[1,2343,10573], -"degit", -[0,10574,10575,10576,2399], -[0,63,16560,1462,1532,16563,16566,1676,2105,2185,2205,2212,16568,2709,16570,2743,2812,1209,3021,3093,3157,16571,13233,16572,3527,3544,3561,16573,16576,16578,4002,4207,4400,4431,4597], -[0,1149,1610,2099,2182,1192,3297,16581,4151,16584,4278,4603,1906], -[0,1604,3403,1623,16587], -[1,2343,10578], -[0,10579,10580,10581,4139], -[0,6501,5303], -[0,192,442,16596,16597,16602,6061,16607,6063,6065,16608,16612,842,16145,5087,4874,6513,1610,1177,1895,1939,1955,2675,1192,2990,1894,4131,4193,91,4523], -[0,1605,16615,16617,16618,4116,16619,16621], -[1,2343,10583], -[0,0,0,10584,2537], -[0,1605,6400,5995,57,1606,16618,4116,16629,5957,12692,14571,16631], -[1,2343,10586], -[0,0,10587,10588,2537], -[0,30684,33382,16636,16637,33968,33969,16638,33971,17212,4874,1177,16644,1930,1938,1942,1951,1953,16647,1958,1964,1982,2203,25209,3124,16649,3390,1894,23535,33974,4508,91,16650], -[0,1605,16631,4116,1608,6400,5995], -[1,2343,10590], -[0,10591,0,10609,2537], -[0,10870,16666], -[3,804,10], -[2,10592,8893], -[2,10592,8891], -[3,10594,12], -[2,10595,8896], -[2,10592,8905], -[3,10597,11], -"omutils", -[2,10598,10599], -"ragdrop", -[2,10598,10601], -[2,10592,8652], -[2,10592,8899], -[2,10592,3583], -[2,10592,8901], -"virtualdom", -[2,10592,10607], -[0,158,12712,7004,16660,16661,16662,16663,16664,29241,29242,29244,29245,29247,29248,1936,1623,5284,6400,5122], -[1,2343,10611], -[0,10612,10613,10618,2523], -[0,10557,1615], -[0,31088,21122,4874,7677,23203,1177,1894,91,1984,31103], -"@release-it/conventional-changelog", -[2,812,4072], -"cobertura", -"git-", -[0,16674,16676,6574,16697], -"git-cz", -[1,2343,10625], -"global-jsdom", -[2,7627,1177], -[2,10622,20], -"putout", -[0,10626,10628,10629,2523], -[0,3310], -"quibble", -[0,3421,1429,3297,2675,2899,4747,4039,4042,4135,1503,2026,2924,4255,1527,91,4856,4874,1364,2990,4150,4677,6503,4705,192,4257,8849,3198,15277,1652,28710,5467], -[0,1612,27,1002,1862,1149,7003,14571,14566,202,89,970,1388,6805,7102,4731,6662], -"remark-github", -"toc", -"remark-toc", -[2,4513,9339], -[3,4514,16], -"dn-links", -[2,10634,10635], -"no-inherit", -[2,4513,10637], -[2,4513,3984], -[3,10639,17], -"-defaults", -[2,1213,10641], -[2,10640,10642], -[1,2343,10647], -"-prettier", -[2,4549,10645], -[0,10649,10662,10664,2487], -[3,5410,10], -[0,4707,16687,16688], -"annotate", -"pin", -"specific", -"ations", -[2,10652,10653], -"anatomy", -"dissection", -"dissect", -[3,10654,13], -"specs", -[3,2620,12], -[2,10660,591], -[0,1192,2675,1177,3188,4039,1175,1193,2990,192,4257,16692,16694,5467], -"spacing", -[0,1614,16696,6574,16697,16699,6987,8429,16701], -"speccer", -[1,2343,10668], -"grid-layout", -[0,10669,10670,2514,2523], -[0,16710,16713,16716,1600,16719,16721,9207,2713,16722,16725,3779,16726], -[0,13614,1177,13817,3421,3438,16728,4100,4135,4389], -[1,2343,10676], -"@web", -"/shadycss", -[2,4963,10673], -[2,10672,10674], -[0,0,0,10680,2523], -"dom5", -"lazypipe", -"poly", -[0,1965,1616,16733,16734,16735,16736,16737,16739,16740,16741,16742,16743,16744,16745,16746,16747,16748,16749,16750,16751], -"polymer-cli", -"polymer-", -[2,10682,6147], -"gulp-v", -"ulcanize", -[2,10684,10685], -"wct-browser-legacy", -[2,1262,3178], -[3,806,9], -[2,1382,5187], -[2,10689,10690], -"google-", -"clos", -[1,2343,10709], -"ure-compiler", -[2,10693,10695], -[2,10692,10696], -"iron", -[3,4314,10], -"-page", -[2,10699,10700], -[2,10698,10701], -[2,10689,10702], -[3,10675,15], -"webcomponentsjs", -[2,10704,10705], -"gen-closure-declarations", -[2,10689,10707], -[0,10710,10711,10712,2537], -[0,1509], -[0,1414,1177,16758,1938,1951,1954,1955,2899,16759,3400,1894], -[0,16166,57], -[3,78,24], -[3,5731,9], -[1,2343,10716], -[0,10758,10762,10764,2537], -"-assign", -[2,5734,10717], -[2,10714,10718], -[2,10713,10719], -"@metalsmith/layouts", -[3,10721,12], -[2,10722,1783], -[3,807,9], -"disable", -[2,2827,10725], -[2,1884,10726], -[2,10724,10727], -[3,10728,23], -"qx", -[2,10729,10730], -[3,10728,16], -"plugin-qx", -[2,10732,10733], -"app-", -"module-path", -[2,10735,10736], -"better-ajv-errors", -"cldr", -"console-", -"contr", -"ol-strings", -[2,10741,10742], -[2,10740,10743], -"core-js-", -[2,10745,6374], -[3,4913,14], -[2,10747,7877], -[3,7681,17], -"codeframe", -[2,10749,10750], -"fontkit", -"get-value", -"github-api", -"jstransformer-dot", -"ps-tree", -"set-value", -[0,16765,34219,16767,16768,34222,16770,16771,1109,1437,16064,1525,28612,16772,16775,16778,16779,16780,16781,26385,4135,27921], -"tap-colorize", -"unset-value", -"upath", -[0,8778,5254,3170,3181], -"dirsum", -[0,16789,16790,1501,15318,15321,16791,16793,16794,671], -"qooxdoo", -"fontend", -[1,2343,10773], -"back-end", -"gui", -"binding", -"databinding", -"interfaces", -[0,10774,10775,10776,2537], -[0,2713,4227,16799], -[0,2899,4170,3130,1413], -[0,1623,57,5374,5376], -"@mdi/font", -[1,2343,10781], -"@mdi/svg", -"@xmldom/xmldom", -[0,0,10782,10789,34352], -[0,442,16805,16808,1177,3561,4042,4579], -"animate.css", -[3,1369,10], -[2,10784,45], -"eva-icons", -"line-a", -"line-awesome", -[0,3561,6425,1623,6432,16811,3205,4327], -"ar", -"quasar", -"fonts", -"animations", -[1,2343,10795], -[0,0,10796,10797,2523], -[0,23339,13204,6503,4874,5542,16818,1177,16821,1895,1955,16824,2675,16825,2832,2990,2899,3377,1894,28865,29444,91,16827,16831], -[0,1623,5746,3392], -"gpu", -"detect-gpu", -"gltfpack", -[1,2343,10803], -"@react-", -[0,10812,10813,10819,2537], -"three/drei", -[2,10802,10804], -[3,10805,13], -"fiber", -[2,10806,10807], -"processing", -[2,3689,10809], -[2,10806,10810], -[0,16837,3561,16840,3638,16841,16842,3688,4135], -[0,48,53,87,192,5467,16405,1193,1610,1622,1701,1854,1177,1895,1938,2092,2675,1192,2780,695,2969,2990,3144,3177,3400,3618,3672,1894,2278,4111,4257,4294,4307,4333,4334,4027,2924], -"test-renderer", -[2,10806,10814], -[3,10615,16], -[2,10816,2528], -[3,827,17], -[0,2924,1623,1194,1002,1204], -"actions", -[2,10818,10820], -[1,2343,10823], -[0,10838,10845,10856,2523], -"essentials", -[2,10818,10824], -"interactions", -[2,10818,10826], -[2,10818,3966], -[3,827,11], -[2,813,2942], -[2,10829,10830], -"preset-", -[3,1603,13], -[2,10833,1896], -[2,10832,10834], -[2,10829,10835], -[2,10829,89], -[0,1637,3561,2805,4121,4143,5180], -"-webpack5", -[2,10837,10839], -[2,10829,1975], -"__jest-dom", -[2,6626,10842], -[2,7750,10843], -[0,1700,16858,1192,2278,2675,3144,1622,1177,1701,668,2203,4337,2924,16851,1894,1462,1610,48,442,1193,1628,91,53,16850,16854,4874,2990,3400,4111,16860,192,1953,27928,16853,4257,87,1939,1584,1942,1938,16857,20281,1982,1895,1955,3177,19344,16400,5467], -"@types/three", -"-image-diff-js", -[2,1651,10847], -[3,1970,16], -"orybook", -[2,10849,10850], -"r3f-perf", -[3,6068,15], -[2,10853,2481], -"suspend-react", -[0,1637,1623,16858,1462,11538,668,2924,1464,16862,16863,3178,2632,6707,6708], -[1,2343,10859], -"three-stdlib", -[0,10861,10869,10871,2537], -"threejs", -[0,16868,9378,15488,16870,15487], -"hree-fiber", -[2,3900,10862], -"y-player-me", -[2,3917,10864], -"3D", -"avatars", -"glb", -[0,4483,1984,91,4874,2654,11976,16874,16877,7677], -"@cropper/elements", -[0,1623,3585,16879], -[1,2343,10873], -[0,10885,10889,10890,2537], -"@phryneas/ts-version", -[2,5531,2090], -[2,5531,2924], -[3,4852,12], -"__core", -[2,10877,10878], -[3,10879,14], -[2,5223,5651], -[2,1181,10881], -[2,10880,10882], -"@types/n", -[0,3141,4228], -"@types/nanoid", -[2,4807,3765], -[2,7686,2473], -[0,1414,16885,668,1177,16889,2899,4042], -[0,1623,6892,207,57,16891,16892,1179,594,5341,7020], -[1,2343,10892], -[0,0,10893,10899,2537], -[0,16805,1393,2070,3561,3566,3672,4135,4320,4323,16898], -[3,811,14], -[2,10894,594], -"common", -"commondir", -"is-reference", -[0,1623,16897,10654,16900], -"locat", -"e-character", -[2,10900,10901], -"relative", -[2,4013,10903], -[1,2343,10907], -"commonjs", -[0,0,10908,10909,2537], -[0,1173,1264,1503,2228,14352,2759,2899,3954,4019], -[0,1623,1867,16906,1871,4990], -[1,2343,10913], -"is-builtin-module", -"is-module", -[0,10914,10917,10918,2537], -[0,2984,16912], -"capitalize", -[2,4284,10915], -[0,1165,3561,16915,16916], -[0,1623,15215,3178,16918,16919,3561,6425], -[1,2343,10920], -[0,10921,10922,10926,2443], -[0,28920,30928,1634,3084], -[0,23591,23205,1177,1895,1955,2203,1894], -"groq-js", -[3,817,8], -"@sanity/ui", -[0,6829,6977,7146], -"@types/cpx", -[1,2343,10937], -"dotenv-flow", -[2,10924,1473], -[2,10924,45], -"@sanity/c", -[2,10932,1124], -[3,3878,10], -[2,10934,6346], -[2,7686,93], -[0,0,10943,10945,2537], -"pkg-utils", -[2,10924,10938], -"@portabletext/react", -[3,10940,14], -[2,10941,6081], -[0,53,87,92,442,16805,33227,16933,16934,5087,13204,4874,15600,16938,1193,1437,1457,1634,1895,1955,2126,1192,2832,3141,1894,3980,4494,4495,91,4523], -"cpx", -[0,1623,590,91,2124,4532,553,7900], -"sanity", -"refractor", -"kdirp", -[2,6502,10948], -"-workshop", -[2,10925,10950], -"vitest-", -[1,2343,10954], -[0,10955,10956,10965,2523], -[0,16944,977,2657,1581], -[0,3421,2899,1177,1544,4342,1364,1575,1578,1954,1938,1958,1903,1948,1970], -[3,9794,18], -"reset", -[2,10957,10958], -[2,10924,10959], -"imple-", -"import-sort", -[2,10961,10962], -[2,1967,10963], -[0,16944,11590,2663,2026], -"API reference", -[1,2343,10968], -[0,10969,10970,10971,2537], -[0,1642,1645,1647,4280], -[0,816,6503,4874,1794,2899,1894,4042,4064,4066,4170,4474,91], -[0,202,1641,16956,57,1644,5374,1646,353,3101,8623,16957,5995,4967], -[3,9307,12], -[2,10972,188], -[2,7719,57], -[2,819,10974], -[2,4807,1143], -"snippetz", -[2,819,10977], -[2,10987,14037], -[1,2343,10983], -"@unhead/vue", -"@vue", -[0,0,10985,10986,2523], -"@vueuse/core", -[0,816,6503,4874,1680,1794,2899,1894,4042,4064,4066,4170,4474,91], -[0,3101,8623,1641,3048,5995,4967], -[3,35505,11], -"code-", -[2,10988,5342], -[2,819,10989], -[3,818,12], -[2,10991,5576], -"@scalar/o", -"as-utils", -[2,10993,10994], -[2,819,553], -"@scalar/t", -"hemes", -[2,10997,10998], -"toast", -[1,2343,11006], -"use-toasts", -[2,819,11002], -"@scalar/co", -[2,11004,4961], -[0,0,11007,11009,2523], -[0,816,6503,4874,1642,16971,1680,1794,2899,2966,1894,4042,4064,4066,4170,4280,4474,91], -[2,27553,1794], -[0,1641,1644,57,6270,16956,3101,5995,4967], -"blocks", -[2,10829,11010], -[1,2343,11014], -[2,5249,11020], -[0,0,11015,11019,34352], -[0,816,6503,4874,1642,1680,1794,2026,2899,1894,4042,4064,4066,4170,4474,91], -[2,1029,188], -"test-utils", -[2,5334,11017], -[0,1641,1646,5374,5995,4967], -"flect.ownkeys", -"webpack-stats", -[2,4049,11021], -[1,2343,11024], -[0,6203,11025,11029,2537], -[0,35960,6503,4874,1217,1596,3183,2899,3421,4193,4468,4474,91,4537,2924,4677], -[2,4609,7179], -"css-in", -"well-known-symbols", -[0,1641,16984,16986,1648,1781,16989,16990,16991,16994,16995], -[1,2343,11035], -"jected-by-js", -[2,11027,11031], -[2,4609,11032], -"media-mock", -[0,11036,11042,5543,4139], -[0,3261,2070,1512,1209,4593,2089,6532,814,1362,17003,3730,1525,2753,1483,12126,6481,17010,6479,17007,2709,17011,17009,17000,1874,6475,17002,6470], -"-tooling", -[2,6147,11037], -[2,819,11038], -"galaxy", -[2,819,11040], -[0,3421,4449,1429,2899,4193,1177,1544,1593,1290,2151,3257,1894,17013,1596,48,1389,4196,53,1178,1509,4151,94,6525,6530,87,1954,1922,3957,1938,1208,1958,1895,1903,1955,1970,14039], -"reference", -[1,2343,11045], -[0,0,11046,11047,2537], -[0,1257,1264,1280,1389,1177,17019,2665,3188,17020,4389,4415,4535,17021,4650], -[0,6926,3265,7818,17025,3348], -[3,820,8], -[2,11048,1932], -[1,2343,11055], -"@fastify/basic-auth", -"external", -"externals", -[2,4065,11053], -[0,11056,0,11057,2537], -[0,4449,12675,1437,1673,1676,2020,29952,4753,1398,2992,1209,17031,1458,2089,3729,1362,16078,1836,2151,3183,17036,1525,4459,4558,6520,1477,1483,8435,1532,2057,3074,3714,17039,17041,2015,13860,4351,17042,17047,4375,2744,6515], -[0,13428,1388,1651,17049,11862,11861,11857,4627,17050,8791,17051,17052,1973,5472], -[1,2343,11059], -[0,11060,11061,2514,2523], -[0,1437,17059,4717,1527,3054,6301,17058], -[0,1429,2899,4135,1894,4856,1595,6503,3210,4131], -[1,2343,11063], -[0,11074,11087,11089,2523], -[2,823,364], -[2,823,4030], -[3,825,16], -"query-s", -"elector-", -"shadow-dom", -[2,11068,11069], -[2,11067,11070], -"tiny-", -"tiny-types", -[0,17081,17090,17067,17080,17082,17093,17101,17108,1654,17068,17071,14674,17083,17086,1655,1660,17104,17089,17098,17074,17096,17075,17078,17097,17091,1658,17107,17092,17103,17100], -"@integration/testing-tools", -[2,823,5710], -[3,11064,14], -"ucumber", -[2,11077,11078], -[2,823,2765], -[2,5554,36], -[2,823,11081], -[2,823,2899], -[3,7744,12], -[2,11084,2632], -"mocha-multi", -[0,2899,1177,4042,4614,17113,17110,8850,17112,10615,816], -"serenity-js", -[0,1653,965,17116,8221,7521,1424], -[1,2343,11091], -[0,11092,11094,11098,4139], -[0,17122], -"@wdio/reporter", -[0,816,17081,17098,1177,2832,2899,4042,4073], -"@wdio/", -"@wdio/cli", -[3,8255,9], -[0,1653,17125,17128,17129,17130,17134,7193,6333,4552], -[1,2343,11101], -"service", -[0,11102,11106,11107,2399], -[0,1654,17089,17092,17101,17103], -"@wdio/d", -"ot-reporter", -[2,11103,11104], -[0,14674,1177,2899,4042,4073], -[0,1653,17125,16662,17116], -"local-runner", -[2,11095,11108], -[2,4386,2903], -[2,11095,11110], -"@wdio/types", -[2,2299,2382], -[2,3758,1732], -[1,2343,11118], -"wdio", -[2,11116,2903], -[0,0,11119,11120,2523], -[0,1177,2832,2899,4042,4073], -[0,1653,17125,965,17146,17147], -[1,2343,11125], -[3,826,9], -"commons", -[2,11122,11123], -[0,11135,11136,11139,2487], -"@mochify/cli", -"@mochify/", -"driver-", -[2,11128,3758], -[2,11127,11129], -[3,11130,16], -[3,824,9], -[2,11131,11132], -[2,11122,7625], -[0,17093], -[0,17096,1177,2899,4042,4073], -"referee-sinon", -[2,11122,11137], -[0,1653,17125,11812,17116,1424,8221], -[1,2343,11141], -[0,11142,0,11144,2523], -[0,2108], -"ts-dedent", -[0,6400,17159,7521,8537], -"csf-plugin", -[2,10829,11145], -[3,10840,17], -"dom-s", -[1,2343,11152], -"dom-shim", -[2,11147,11150], -[0,0,0,11153,2537], -[0,1662,4380,4383,21029,21038,21039,11483,11487,21054,21052,21042,17164,21057,21050,17166,89,1623,181,188,4627,5130,3287,6400,17171,699,29332,3709,34683,12951,29336], -"addon", -"notes", -"organize", -[1,2343,11158], -[0,0,8134,11159,34352], -[0,17179,3183,14690,10446,7058,6802,200,3368,1525,17180,1523,12986,17181,17183,17184,13565,1644,57,6478], -[1,2343,11166], -[2,41,1512], -[3,11161,13], -"ssinjs", -[2,11162,11163], -[3,40,18], -[0,11198,11203,2514,2537], -"slick", -[2,11165,11167], -[3,452,18], -"-svg-icons", -[2,6920,11170], -[2,11169,11171], -"@pol", -"kadot/react-identicon", -[2,11173,11174], -"@polkadot/", -"util-", -"util-crypto", -[2,11176,11178], -[2,19177,11195], -"wasm-crypto", -[2,11176,11181], -[3,5050,14], -"tour", -[2,11183,11184], -"@zxing/browser", -"@zxing/", -[2,11187,6082], -"boring-avatars", -"list-react", -[2,2117,11190], -"jsqr", -"phosphor-react", -"qrcode", -"plugin-kit", -"qrcode.react", -"rc-cascader", -[0,17191,1091,1149,1437,1513,1594,1605,2026,2720,17194,3148,3220,3722,705,17195,17196,17198,4746,4747], -"rc-checkbox", -"ollapse", -"rc-collapse", -"rc-dialog", -[0,1173,1257,1267,1429,2899,4008,7707], -"rc-drawer", -[1,2343,11214], -"opdown", -"rc-dropdown", -"rc-image", -"@humanfs/node", -"rc-input", -"-number", -[2,11210,11211], -"rc-mentions", -[0,0,11217,2514,2399], -"u", -"rc-menu", -[0,17218,4494,17219,8538,4193,1177,17220,1209,1984,4508,2109,1894,1596,48,17212,3541,4183,4201,91,53,4874,17221,9689,6513,17209,7725,4870,17206,17214,10875,87,17210,7677,5517,92,1011,17223,1009,9692], -"otion", -"rc-motion", -"rc-notification", -"rc-pagination", -[1,2343,11230], -"rc-picker", -"rc-progress", -"rc-rate", -"rc-r", -"esize-observer", -[2,11226,11227], -"rc-s", -[0,0,11232,2514,2523], -"rc-segmented", -[0,2899,4535,48,53,87], -"rc-select", -"teps", -"rc-steps", -"rc-switch", -[1,2343,11239], -"rc-table", -[0,0,11247,11248,2523], -"rc-tabs", -"extarea", -"rc-textarea", -"ree", -"rc-tree", -"-select", -[2,11244,11245], -[0,48,53,13693,87,6065,1175,1193,1203,1610,1177,1881,1938,1939,17232,2766,1192,2297,2898,2915,3213,3220,3222,3275,3697,1894,4042,4045,4073,4201,91], -[0,1673,1666,6901,2700,3220], -"rc-trigger", -[1,2343,11254], -"rc-upload", -"in-input", -[2,3870,11252], -[0,11258,11259,11265,2537], -"logo", -"qrcode-logo", -[2,1246,11256], -[0,1326,3299], -[0,17240], -"uperellipse", -[2,3890,11260], -"scroll-", -"into-view-if-needed", -[2,11262,11263], -[0,1149,15001,17242,17244], -[3,68,15], -[2,11266,6424], -[3,362,16], -"css-prop", -[2,1258,11269], -[2,11268,11270], -[3,7910,12], -[2,11272,10177], -"@qixian.cs/github-contributors-list", -"@stackblitz/sdk", -[3,827,16], -[2,11276,591], -[3,11011,12], -"uild", -"er-webpack5", -[2,11279,11280], -[2,11278,11281], -[3,8300,15], -[2,11283,2855], -[2,10829,11284], -[3,10841,12], -"heming", -[2,11286,11287], -"tag.js", -[2,5246,11289], -"-axe", -[2,5087,11291], -[3,11292,12], -[3,2779,12], -[2,11294,3758], -[2,11293,11295], -"image-s", -"napshot", -[2,11297,11298], -[2,11293,11299], -[2,5086,3766], -"uppeteer", -[2,5088,11302], -"@types/q", -"@types/qs", -[3,4882,15], -[2,11306,4349], -"-wor", -[1,2343,11324], -"-words", -[2,5342,11310], -[2,4881,11311], -[3,4884,15], -"sizable", -[2,11313,11314], -"window", -[2,4881,11316], -"@types/thr", -"ottle-debounce", -[2,11318,11319], -"arning", -[2,7820,11321], -"antd-", -[0,0,11332,11334,2523], -"antd-img-crop", -"token", -"-pre", -"viewer", -"-previewer", -[2,11326,11329], -[2,11323,11330], -[0,1906], -"array-move", -[0,1675,17251,3046,6925,17252,7051,6760,17253,6882,6870,9233], -"bundlesize2", -"dekko", -[3,3597,9], -[3,4926,9], -"er-webpack", -[2,11339,4406], -[2,4354,11340], -[2,11338,11341], -[2,11337,11342], -"fetch-", -"fetch-jsonp", -"axe", -"jest-axe", -[2,2769,11299], -"jest-p", -[2,11349,11302], -"jsonml", -"react-e", -[1,2343,11358], -"react-element", -[2,8137,11354], -[2,11351,11355], -"lz-string", -[0,11359,11361,11379,2537], -[0,3242], -"rc-footer", -[0,1377,1389,1596,2297,2871,2881,2900,2899,3202,4193,1906], -"rc-tween-one", -"rc-virtual-list", -"react-f", -"ast-marquee", -[2,11364,11365], -[2,5204,11310], -[2,3831,11367], -"react-in", -"finite-scroll-component", -[2,11369,11370], -[3,3882,9], -"izable", -[2,11372,11373], -"react-st", -"icky-box", -[2,11375,11376], -"react-window", -[0,1676,3073,6782], -"remark-lint", -[2,2987,4945], -[2,3996,11381], -"rome", -[2,4942,1894], -[3,4946,18], -[1,2343,11387], -[0,0,8134,11402,2537], -"ational-order", -[2,11385,11388], -[3,4326,22], -"no-i", -"d-properties", -[2,2420,11392], -[2,11391,11393], -[2,7851,11394], -[2,11390,11395], -"sylvanas", -"vanilla-", -"jsoneditor", -[2,11398,11399], -"xhr-mock", -[0,1677,17266,1420,17267,15321,13230,15322,1871,2585,6270], -[1,2343,11406], -"-front-matter", -[2,4745,11404], -[0,11407,11408,11409,2399], -[0,17273,17275,17277,17279,2215,3093,3532,17281], -[0,1999,17283,3505,3532,4039], -[0,17274,17285,1679,7682,4390,17286,17288,2056,4560], -[1,2343,11418], -[3,829,10], -"-studio/client", -[2,11411,11412], -[3,11413,18], -"model", -[2,11414,11415], -"abab", -[0,0,11419,11423,4139], -[0,48,87,92,10614,17296,17212,5601,5087,1009,1011,1198,14065,17298,1622,1177,17300,1930,1939,1942,1945,1948,1953,17303,17306,1964,17308,2675,1192,17310,2931,2990,3124,3125,3390,17312,1894,17314,3708,3980,17318,4493,91,17319], -"async-mutex", -[2,6269,1871], -"color2k", -[0,1680,10381,17323,5194], -"presentable-error", -"expr-eval", -"ml-matrix", -[1,2343,11431], -"parse-color", -"-ast-parser", -[2,3564,11429], -[0,0,11435,11441,2523], -"matchall", -[2,7315,11432], -[2,1871,11433], -[0,5087,3165,4468], -"@ava/typescript", -"inycolor2", -[2,7750,11437], -"trash-cli", -[2,4480,4408], -[0,3597,17329,4552,17331,17332,17335,17337], -"Supernova", -"Design Systems", -"io", -"Supernovaio", -"SDK", -[1,2343,11455], -"Tokens", -"Design Tokens", -"Assets", -"Components", -"Documentation", -"Markdown", -"CMS", -[0,11456,0,11457,4139], -[0,17342], -[0,3048,7002,3426,2051,3583,1698,1496,1585,7880,1697,6899,6803,3432,6693,3743,3583], -[1,2343,11459], -[0,8856,7938,7939,2537], -[1,2343,11461], -[0,0,11462,11463,2523], -[0,1781,2899,1177,1209,4039,3363,1362,17352,2025,4535,1693,1951,3200], -[0,1687,17354,3797,17358], -[1,2343,11465], -[0,0,11466,11467,2523], -[0,17363,2899,1177,2759,1317,1596,17366,3044,5476,17370,17373,17374,811,17377], -[0,17380,17382,17383,5472], -[1,2343,11469], -[0,11471,11472,11473,2399], -"@svitejs/changesets-changelog-github-compact", -[0,17391,1417,17392,15308,17395,17399,17400,17403,17406,2756,13635,3433,3435,17407,17409,17411,17413,17416], -[0,13614,1158,1159,17418,1177,2133,17421,2569,17425,2708,3410,3421,5619,4103,4135,4389], -[0,5501,4162,3797], -[1,2343,11475], -[0,0,11488,11490,2537], -"okie", -[2,4860,11476], -"devalue", -"esm-env", -"mrmime", -"sade", -"tiny-glob", -[2,21032,1932], -[3,5244,10], -[2,11484,2255], -"dts-buddy", -[3,21031,18], -[0,2899,4170], -"official", -[0,1696,2051,1697,6899,1695,1496,1698,1781], -[1,2343,11492], -[0,0,11493,11494,34352], -[0,4874,17439,2747,17440,4042,4055,4067,4389,4474,91,4535], -[0,1698,1697,2051,1585,1496,6899], -[1,2343,11499], -"-inspector", -[2,840,11496], -"hmr", -[0,11500,11502,11503,2523], -[0,2205,2743,17447,17450,3478,11424,4207], -"vitefu", -[0,1166,1317,4400,4481,1906], -[0,6865,1586,17453,17455,7293,14858,17456,17457,4050,17458,4051,6790,17459,4039,7074,2070,17461,2090,6857,7204,2150,17462], -[3,839,11], -[1,2343,11507], -"vite plugin", -[0,11508,11509,11510,2399], -[0,1700,3157,11424], -[0,1166,2020,17468,1906], -[0,13326,200,6865,1700,7293,14858,17456,17457,4050,17458,4051,6790,17459,4039,7074,2070,2090,1586,6857,7204,2150,17462,16697], -[1,2343,11523], -"element", -"elements", -"ant-elements", -[2,5257,11514], -[2,5875,11515], -"@svgr/", -"@svgr/core", -"plugin-jsx", -[2,11517,11519], -[3,11520,13], -[2,11521,4361], -[0,11524,11527,11528,2487], -[0,29654,28415], -"svgr", -[2,4670,1194], -[0,17474,17477,4481,1906], -[0,1862,814,1702,17479,6703,2434,17481,17484,2013,14824,3286,17485,1702,1149,7003,6567,1362,17487,6754,3778], -[1,2343,11530], -[0,11531,11535,11537,2399], -[0,1676,2856,4747,2687,1209,4135,2822,814,17495,15648,1420,3181,17497,3249,1595,2107,4025,58,17501,101,17494,5320,14035], -"unter", -"@swc/counter", -"@swc/types", -[0,3421,2899,1177,4170,3709,2151,1894,1610,48,3752,91,53,1178,17504,85,94,87,1951,1959,1879,1938,1208,1895,1947,1955,1198,13052], -"@napi-rs/cli", -[0,4354,17507,3383,6666,1703,7190,4796,4797], -"swc", -"swcpack", -"tsc", -[1,2343,11542], -[0,0,11543,11544,2487], -[0,1317,1311,1177,1903,1938,1948,1954,1958,1970,2759,2899,4100,4538], -[0,17514,17515], -[1,2343,11546], -[0,11547,11548,2514,2537], -[0,1676,13736,2205,17522,3170,3183,3539,17523,814], -[0,17527,2675,17529,3400,4255], -[1,2343,11550], -[0,0,8134,11551,2399], -[0,8958,17537,13735,6589,17539,1501,1871,2585,4225,17540,16630], -[1,2343,11553], -[0,11556,11557,11558,2523], -"@rtsao/scc", -[2,18997,4966], -[0,15427], -[0,36688,6503,4874,17547,1177,17554,2020,17546,4294,4483,36684,91], -[0,13735,1709], -[1,2343,11560], -[0,0,11561,11562,2487], -[0,3421,4481,1429,2297,2899,1177,4042,2203,2924,1610,4535,442,91,53,2900,1195,2925,13388,94,87,4523,4681,2904,5517,1208,2921], -[0,1687,7222,3797,7163,2585,1781,1623,5284], -[1,2343,11564], -[0,11565,11566,11567,4139], -[0,1687,28365], -[0,442,19194,17579,5087,4874,17580,17584,1165,1406,1492,1584,1628,1637,1177,1939,1958,2092,2203,2036,17589,2651,2675,17591,17592,1192,2990,3123,3177,3188,3368,3561,3566,3613,3618,3672,1894,4468,4469,4474,91,4523,4027,2924,4677,4681,4705], -[0,3358,1687,3721,7153,3924,17595,17597,6843,5342,3721,1473,1936,1713,17599,17600], -[1,2343,11569], -[0,11570,11571,11572,2537], -[0,17610], -[0,5087,4874,1009,1011,1177,1895,17613,1915,1938,1192,1894,4468,4493,4508,91], -[0,17615,17618,17619,17620,17616,17621,17622,5284,17625,17626,676,91,17627,6869,4799,17629,17630,202,9624,17631,17632,17634,17635,17637,17640,17641,17642,17643,2218,17644,17645,17647,3403,17648,17649,17651,17652,17653,17656,17657,9981,7193,17659,17660,17661,17662,17665,17666,17667,17669,17673,17675,17677,17680,17679,11996,17683,17686,17687,17689,17691,17692,17695,17696,17697,17700,17702,17705,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,17720,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,17737,17739,6681,17740,1745,17116], -[1,2343,11574], -[0,0,11575,11576,2487], -[0,1429,1431,2228,2273,2283,2300,2272,2839,3006,2899], -[0,1429,15385,1388,5472], -[1,2343,11578], -[0,11579,11580,11581,2537], -[0,17752,17754,1723,2760,3345], -[0,2899,3699], -[0,6355,5995,4967,17758], -[1,2343,11583], -[0,11584,11585,11586,2487], -[0,4484,4548,17763,7658,347,7660,2069,17766,7663,17768,7664,7665,17770], -[0,4481,1192,7671,1177,4487,1787,1894,1610,91,4874,17772,7672,7678,7681,7685,1011,1009], -[0,1721,5592,8549,5576,202,7692], -[1,2343,11588], -[0,11599,0,2514,2537], -[3,850,25], -"tokens", -[2,11589,11590], -[2,11589,45], -[3,4323,18], -"ass-guidelines", -[2,11593,11594], -[3,7846,11], -"rettier", -[2,11596,11597], -[0,4535,2098,3460], -[2,6910,591], -"patterns", -[1,2343,11603], -[0,11604,11606,11610,4139], -[0,16053,17786,17787,17788,2036,3127,17798], -"gfm-footnotes", -[0,17805], -"web ", -[2,11607,4963], -"ui library", -[0,1745,1783], -[1,2343,11620], -"symbiote.js", -"symbiote", -"frontends", -[2,3166,11614], -" application", -[2,5207,11616], -" elements", -[2,5317,11618], -[0,11621,0,11623,2487], -[0,2829], -"shadow dom", -[0,1727,1745,1776,17813,1783,1932], -"shadow root", -"ructable stylesheets", -[2,5257,11625], -"adopted stylesheets", -"custom ", -[2,11628,3583], -[2,6883,11629], -"pubsub", -[1,2343,11641], -"import maps", -"cdn imports", -" imports", -[2,2671,11635], -"reacti", -"ve html attributes", -[2,11637,11638], -"MIT", -[0,0,0,11642,34352], -[0,17818,17819,7518,5398,5995,3250], -[1,2343,11644], -[0,11645,9264,11646,2399], -[0,17826,17827,7092], -[0,17829,17830], -[1,2343,11648], -[0,11649,11650,11651,4139], -[0,1170,4747,1733,17838,29861,17835], -[0,1429,2899,2026,1364], -[0,1745,2275,1973,2295,1739], -[1,2343,11653], -[0,11654,11655,11656,2399], -[0,5923,17835,17846,1091,13426,17849,17851,17853,1170,17838,29861,1759,17850,11663,10342,3536,3549,17859,4459,824], -[0,1703,2026,2899,4135], -[0,1745,1973,2295,1739], -[1,2343,11658], -[0,11659,0,11660,34352], -[0,1525,3127,2151,4545,2600], -[0,1745,1739,1179,17867,1509], -[1,2343,11662], -[0,11664,0,11610,2537], -"jq-web", -[0,1794,17872,5639], -[1,2343,11666], -[0,11667,11668,11669,2399], -[0,17877,28367,28371,17881,3747,4391,3348], -[0,1362,1429,3152,2899], -[0,17878,17884], -[1,2343,11671], -[0,11672,11673,11674,2537], -[0,17889,17890,17892,1292,17893,1415,17895,16166,17896,17898,17899,9254,17900,17901,17904,17905,17906,17907,2720,17909,17910,17911,3171,3310,17914,17915,17916,4039,17917,17919,17920,4135,17921,17922,17923,4545,17924,4746], -[0,17929,17930,16966,1509,17931,3220,17934,17936], -[0,5353,6147,17939,9381,200,6354,1509,7234,4643,17944,3304,5001,17945,17946,15141,5130,1179,17948,202,1644,57,8924,3902,8632,12478,5354,17950,4990,6435,5122,17951,10340], -[1,2343,11676], -[0,0,11677,11678,2523], -[0,5366,4874,7677,22839,1317,33261,35609,1177,1938,1942,91,1984], -[0,4967,5995,2844,7020,1776], -[1,2343,11680], -[0,0,11681,11682,2487], -[0,53,87,442,5583,811,8850,816,10615,1165,1387,1536,1854,1177,1895,2203,3125,15197,3400,3561,3584,3605,3613,1894,4039,4042,10854,2278], -[0,1739,17964,17965,1745,1179,5284,676,1783,5980,1932,16630,17966], -[1,2343,11684], -[0,11685,11686,11687,4139], -[0,17971,17972,2654,3183,4545,17974], -[0,4384], -[0,2195,1783,1745,9591,57,17977,17978,17979], -[1,2343,11689], -[0,11690,11691,11692,4139], -[0,53,5216,58,101,104,1437,1457,1687,17986,9322,7610,2070,17988,2600,2714,2822,17989,1209,12427,17990,17995,17997,3532,3921,3984,3988,3989,18000,10632,814,4300,18002,4555,12449,18004,18005,4747], -[0,18007,1652,18009,1177,1895,2151,2675,1192,2845,2990,3203,1894,4257,4449], -[0,1745,4525,1776,18011,57,5351], -[1,2343,11694], -[0,11695,11696,11697,2523], -[0,18016,18018,1676,18019,18020,18023,3013,4545], -[0,4874,2228,2291,2300,3006,3200,16092,4193,4436], -[0,18028,18031,1748,18036,13531,18037,18035,6599], -[1,2343,11699], -[0,11700,11701,11702,2537], -[0,6084,2164,2070,1437,89,1843,1209,3188,1291,1637,2026,3561,3725,705,4167,7799,4438,2151,2267,1525,3824,1461,3560,4001,53,18042,104,1165,2600,3123,18051,18052,18055,18056,7610,85,94,101,3816,18050,87,18045,18047,90,1874,1845,61,78], -[0,4039,17996,2149,18059], -[0,1745,18061,18063,467], -[1,2343,11704], -[0,11705,7923,11706,2523], -[0,18068,1497,9892,2577,2586,2608,6327,18070,8114,3181,3971,18071,4549,18072], -[0,467,6327,18074,1745], -[1,2343,11708], -[0,11709,11710,11711,2487], -[0,97,1639], -[0,28581,29292,48,53,92,29293,29294,29492,1009,1011,1178,1195,1177,1938,1947,1951,1959,2025,2070,2814,2297,2881,2895,26470,2900,2904,2918,2921,2925,2899,4039,33564,4193,91,2924], -[0,1751,5128,965,5592,18080,590,2013,18081,4289,1751,1227,18082,1623], -[1,2343,11713], -[0,11714,11715,11716,2537], -[0,18089,15487,18087], -[0,1192,1177,1448,4468,1894,91,5087,4874,2654,1895,1011,1009], -[0,1936,6523,8924], -[1,2343,11718], -[0,0,11719,11720,4139], -[0,1429,1177,2228,2240,2273,2281,2283,2298,2822,2297,2878,2881,2895,2900,2904,2899,1894,4135], -[0,965,158,18097,8924,1936,1424,8221,18048], -[1,2343,11722], -[0,11723,11724,11725,2487], -[0,37513], -[0,53,87,5583,816,6373,10615,1006,4874,1610,1895,1955,2814,2832,2297,2876,2881,2895,2908,2910,18103,3183,3400,3697,1894,2907,18102,4039,4042,4057,18106,4076,4484,91,1906], -[0,965,4741,1936,8221,18110,1965,18112,18113,2574,7131,18114], -[1,2343,11727], -[0,0,11728,11729,2399], -[0,3421,1177,1596,3697,12847], -[0,1283,2062,2869,17950], -[1,2343,11731], -[0,0,11732,11733,2537], -[0,4874,6323,4193,4255,4257,4384,91], -[0,1759,1263,6890,6639,6436,1541,6937], -[1,2343,11735], -[0,11736,11737,11738,2523], -[0,1759], -[0,4874,4255,4257,4384,91], -[0,1759,18132,6436,18135,18137,1263,6890], -[1,2343,11740], -[0,11741,11742,11743,2537], -[0,2212,3532,3477,18143,3093,2096,1679,18145,2188,18142,1560], -[0,1906,1166,3297,18147,4039,3505,18148], -[0,1764,7682,27,705,1002], -[1,2343,11745], -[0,11746,11747,11748,34352], -[0,1764,12650,4039], -[0,5175,2675,2899,4216,4255], -[0,1764,2195,17978,17977,12468,18157,4390,7682,18158], -[1,2343,11750], -[0,11751,11752,11753,2537], -[0,1768,1770,1777,1782,1784,1779], -[0,1177,4039,442,91,4874,4523,1011,1009], -[0,1767,1745,200,1776,1367,1783,1781], -[1,2343,11755], -[0,11756,11757,11758,4139], -[0,2205,1770,18170,18173,1777,1782,18174,1784,1779], -[0,1192,1177,4039,3363,4468,442,91,5087,4874,5571,4523,1011,1009], -[0,1767,1745,200], -[1,2343,11760], -[0,11761,11762,11763,2537], -[0,18183], -[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,1011,18186,1009], -[0,1767,1745], -[1,2343,11765], -[0,11766,11767,11768,2537], -[0,18192], -[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,1011,1009], -[0,1767,1745,1283], -[1,2343,11770], -[0,11771,11772,11773,2537], -[0,1241,1776,18201], -[0,1192,1177,4039,4468,1587,442,91,5087,4874,18203,5571,4523,1011,1009], -[0,1767,1745,1776], -[1,2343,11775], -[0,11776,11777,11778,2537], -[0,3105,2600,3117], -[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,7639,1011,1009], -[0,1767,1745,1367], -[1,2343,11780], -[0,0,11767,11781,4139], -[0,1767,1745,1781], -[1,2343,11783], -[0,11784,11767,11785,2523], -[0,3117], -[0,1767,1745,1783], -[1,2343,11787], -[0,11788,11789,11790,2537], -[0,2081,2700,3427], -[0,53,14170,13051,18225,1178,18228,1610,1700,1866,1177,18229,1895,1922,1935,1947,1955,1959,18230,2126,2323,2338,2361,2368,18233,2396,2409,2419,2494,2541,1192,1894,89,3824,3904,18235,4431,4537,18237], -[0,18239,6038,89,18241], -[1,2343,11792], -[0,11793,11794,11805,2523], -[0,8712,18248], -[0,18254,18255,1429,1651,18259,2297,2881,2900,18260,2923,2899,3198,3347,5362,2278,4193,4196], -"tent-type", -[2,11484,11795], -[1,2343,11798], -[0,26964,0,26991,34352], -"a-parser-js", -[2,7817,11799], -"null-loader", -[2,4049,2098], -"tanem-scripts", -"ua-parser-js", -[0,18263,18266,18267,9229], -"images", -"img", -"scal", -"able-", -"vector-", -"ics", -"graphics", -[2,11810,11812], -[2,11809,11813], -[2,11808,11814], -[1,2343,11817], -[0,11818,11819,2514,2523], -[0,4747,4487,18272,2151,18275,4300,2851,18277,18279,18282], -[0,1177,4874,4892,4864,1011,18285,18290,1009], -"query-core", -[2,959,11820], -[1,2343,11823], -[0,11824,0,11825,2537], -[0,28142], -[0,1747,1788,2382,18035,5995,200,18295,2663], -[1,2343,11828], -[2,964,3709], -[0,11829,11830,7831,2537], -[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12467,12406,1582,1699,12409,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,3788,11244,3789,3810,5564,3846,12435,12438,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12444,12445,4549,4555,12447,1002,12448,12449,12452], -[0,192,5467,7634,12455,12458,7637,12459,4874,12461,8149,4880,4882,4883,12462,12463,1177,10321,2071,2079,12471,12472,2675,2990,1894,3706,3708,89,3824,4320,4474,91,1984,12473,12475], -[1,2343,11834], -[3,7637,10], -[2,11832,977], -[0,11841,11844,7831,2487], -"@github/webauthn-json", -"better-", -"better-docs", -[3,1895,17], -"act", -[2,11838,11839], -[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12405,1582,1699,12409,12452,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,11244,3810,5564,3846,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12445,4549,4555,12447,1002,12448,12449], -"hanko", -"passkey", -[0,192,5467,7634,12455,12458,7637,12459,4874,12461,4880,4882,12462,12463,1177,2071,2079,12472,2675,2990,1894,3706,3708,89,4320,4474,91,1984], -[1,2343,11848], -"webauthn", -"passcode", -[0,0,11849,2514,2523], -[0,4389,4430], -[1,2343,11851], -[0,11852,11854,7395,4139], -[0,18313,18315,18316,18317,18322,97,8597,18328,18332,18333,18334,18336,1461,1582,1673,18339,18340,18344,18347,18349,18351,18354,18355,18357,18358,18360,18362,18364,18365,18368,18370,18371,18372,18374,18376,18378,18380,18381,18382,18383,18385,18386,18387,18389,18391,18392,18394,11264,4427], -"kcd-scripts", -[0,13175,13178,5076,13181,11267,11976,13187,7833,7837,7839,7840,368,7948,11273,13188,8998,13189,13192,643,692,11274,10875,11275,966,968,972,974,13194,13196,13198,4864,11290,13200,13203,5087,11292,11296,11300,11301,13204,4870,7892,4874,13205,13207,13210,8149,6510,11305,4880,4882,4883,11312,11315,5254,13213,13214,11320,11322,1009,1011,1086,13078,11325,13215,11331,1170,1437,1448,13221,13223,1610,1613,11336,1759,1789,13228,8161,1177,1879,1895,1915,1924,1938,1939,1947,13231,1948,1959,1961,1982,2071,11345,2151,2193,2070,12424,2665,2686,2696,2742,2758,1192,11347,2771,2780,2784,11348,11350,2814,2832,11356,5102,2990,1209,13232,11357,3183,3213,3310,3330,3412,3445,3467,13233,3536,3549,1894,3703,3717,3725,3758,3763,11360,11362,11363,89,3810,13235,3824,4934,11366,11368,11371,3843,11374,3885,11377,3957,3978,3984,3985,3988,11380,13240,11382,3999,4039,13241,4135,4164,4183,4201,13243,11397,4390,4391,4072,4494,4508,91,11400,13245,2924,4676,11401], -[1,2343,11856], -[0,0,11858,11859,2399], -"integration", -[0,192,5467,19193,442,1177,1895,1951,1955,2675,2990,2899,1894,4042,4170,4257], -[0,4552,1149,14629,18402,1794,3048,1862,6917,14824,5995,4967], -[1,2343,11863], -"end-to-end", -"e2e", -[0,11864,11865,11866,2443], -[0,4484,18407], -[0,51,53,104,18282,18277,18409,603,811,816,6373,5087,1009,1011,1437,1525,1787,668,1177,2151,2205,2675,1192,2771,2272,3090,3445,4042,4073,4127,4135,4072,4468,91], -[0,1795,18411,15480,18412,17116,18413,18415,1424,8221], -"ria-query", -[2,9165,11867], -"aria-query", -[2,7320,2825], -[2,1752,11870], -[1,2343,11873], -[0,11885,11886,11887,2537], -"n-case", -"jest-in-case", -"-ser", -"ializer-ansi", -[2,11876,11877], -[2,8746,11878], -[3,2802,11], -"select-p", -"rojects", -[2,11881,11882], -[2,11880,11883], -[0,18420,2096,18423,2390,18425,18426,18427,1209,3181,18428,3544,4431,4597,4600,4747], -[0,4856,4864,18432,4870,6503,4874,9725,6513,6512,18435,18438,18440,4892,1429,2012,2151,2188,2899,3421,3752,4039,4193,4196,4474,4487,91], -[0,18420,2041,2649,18442,18443,6589,18444], -[1,2343,11889], -[0,11892,11900,11901,2537], -"css.escape", -"redent", -[0,2763], -[2,552,2203], -[3,2782,23], -"sixteen", -[2,11894,11895], -[3,4057,15], -"elete", -[2,11897,11898], -[0,91,68,1389,1177,14707,1776,3084,2899,4535], -[0,1283,17950,16284,1797], -[1,2343,11903], -[0,11904,11905,11908,2537], -[0,1437,1209,18456], -[0,3297,1082,1149,2228,2899,4193,4237,1177,2814,3220,4135,1168,1330,2924,18458,18459,1362,3460,1894,4431,2025,2071,7915,2240,18463,1389,53,11801,1178,1195,18464,17568,87,1954,2258,2247,1938,2253,2281,1958,1895,1903,1955,1970,18461], -"atcher-utils", -[2,8763,11906], -[0,1798,14059,8173], -"@callstack/eslint-config", -"@rel", -"mify/jest-serializer-strip-ansi", -[2,11910,11911], -[1,2343,11914], -[0,7936,7938,7939,2523], -[1,2343,11916], -[0,11917,0,11919,2487], -[0,4874,2057,18473], -"dotenv-cli", -[0,1804], -[1,2343,11921], -[0,11922,11923,11927,2537], -[0,1437,4747,1458,2151,18479,18480,18482,18484,18488,18174], -[0,4892,4864], -"@esbuild-plugins/node-modules-polyfill", -"@ph.fritsche/scripts-config", -[3,11925,13], -[0,1804,9381,6147,7242,1161,1808,4405,18493,1896,18494,4750,18495,8433,18496,18497,18498,18499,18500,18501,18502,18503,13322], -"toolbox", -[2,11926,11928], -[3,11300,13], -[2,11930,11874], -[3,7690,15], -[2,11932,2203], -"-lib-coverage", -[2,2759,11934], -[3,11935,13], -"report", -[2,11936,11937], -[2,4227,591], -[2,11936,11939], -"istanbul-", -"reports", -[2,11941,11942], -[3,6551,9], -"jest-s", -"r-ansi", -[2,7909,11946], -[2,11945,11947], -[1,2343,11950], -[0,11953,11954,11955,2537], -"-scripts", -[2,6579,11951], -[0,18509,18473,18511,18513,18514,18518,1676,2057,18145,2151,18521,18524,18525,18527,2072,18528,814,4135,4748], -[0,1009,1011,1166,1400,1503,1177,1903,1920,1938,1954,1958,3421,3539,4193,4481,4508,91], -[0,1804,1808,6996,1896], -"@ember/app-blueprint", -[1,2343,11962], -"aram", -"regexparam", -"tseslint", -"tinyhttp", -[0,11963,11964,11919,2399], -[0,2057,18537], -[0,4389,4255,18540,3505], -[1,2343,11966], -[0,11967,11580,11581,2487], -[0,1437,2152,2760,18545], -[1,2343,11969], -[0,11970,11971,2514,4139], -[0,18552], -[0,2228,18555,2236,2273,2281,2298,2766,2814,2297,2881,2895,2898,2912,3006,1209], -[1,2343,11973], -[0,11975,11979,11980,2523], -[2,976,4590], -[0,1156,1191,1699,3373,4023,4427], -"@biomejs/biome", -[3,4343,10], -[2,11977,1612], -[0,18566,18569,1173,1175,1195,1198,1208,1212,1220,18571,1264,1277,18574,1429,1457,1584,1596,18575,1610,1628,1863,1177,18580,1916,1937,17585,2092,18581,2323,2332,18582,2504,2600,2651,2843,13110,2297,2881,2886,2900,18260,2921,2923,2925,18584,3105,3107,18587,3112,3177,2899,3342,3463,3561,3732,4039,4111,18590,4193,4196,4307,18592,4537,18595,4027,188,4634,4639,4645,18599,2924,4677,4681,4693], -[0,13449,188,4963], -[1,2343,11982], -[0,11983,11984,11985,2537], -[0,1363,18609,18610,18611,2713,18613,18616], -[0,1377,1596,1177,2228,2236,2240,2256,2258,2281,17567,2311,2759,2899], -[0,18619,18620,18621,18622], -[1,2343,11987], -[0,11989,11990,11991,2537], -"headers", -[0,18627,18629,18632,2646,18633,1209,3361], -[0,192,5467,1166,1448,1610,1797,1177,1909,2114,2675,2990,18637,3421,18634,3754,3985,3995,1906], -[0,1559,1823,16284,2934,18639,18640,18643,18645,18646,18647,3361,18648,3754,18649,1283,5354,4714], -[1,2343,11994], -"ipaddr.js", -[0,0,11997,2514,2523], -"net", -"network", -[0,442,18657,4874,18659,7677,1177,1895,1955,18660,1894,18661,4474,91,4523,1984], -[1,2343,11999], -[0,12000,12004,12005,2399], -[0,30697,27276,11956,18740,18684,14959,18693,18733,18735,18687,1378,18737,1381,18717,18720,18695,18686,18747,18683,1437,1458,18689,1536,1543,18671,18678,18679,18668,1687,18753,12923,18758,12925,18704,2020,2021,2026,2098,2105,18745,2151,14939,12929,12471,2070,14940,18728,18701,18708,2659,2712,2720,18673,18702,1209,3105,18726,3181,3237,3368,3386,18428,18669,3560,18714,18722,18675,814,14562,18730,18667,4135,12937,18710,18698,1241,4423,4438,18670,4648,18692,7801,18666,31963,31947], -[3,975,11], -"ccepts", -[2,12001,12002], -[0,14938,1385,1429,1431,18761,15264,1540,18774,18771,1177,1895,18766,1951,1953,2116,18706,2832,2960,2899,3297,3421,1894,6021,4294,4342,4421,4449,36864,4699,4707,18764,18760], -[0,1896,18776,12589,200,18777,18778,18779,837], -[1,2343,12007], -[0,12008,12013,12014,2537], -[0,5222,71,5757,5759,5809,5830,5832,83,5889,87,97,18784,18787,18790,18795,1212,18801,18687,1378,18695,18747,1496,18803,18807,18704,14562,4135], -"ntent-", -[2,12009,10366], -[2,981,12010], -[3,985,11], -[0,53,18809,18811,18812,18813,18815,1178,1385,1429,1499,18867,1532,18671,1593,18679,18823,1825,18825,1830,18829,18832,18833,18834,18835,18839,1177,18840,1954,18706,18841,2899,2907,3957,6021,814,4039,2924], -[0,1172,18777,18844,1825,5197,5198], -"ncode-url", -[2,12012,12015], -[1,2343,12018], -[0,12019,12020,12021,2487], -[0,18852,18855,18687,18865,14938,14939,18708,18868,12937,4648], -[0,53,68,71,5757,83,5889,97,18809,18812,18872,18787,1381,1385,1429,18867,1540,18823,1825,1827,18873,18825,18829,18832,18833,18834,18835,18839,18889,18892,18894,1177,1895,18840,1951,1953,1955,18895,2116,18841,2899,1894,2907,3773,3980,14944,4320,4323,11598,2924], -[0,18844,1825], -[1,2343,12023], -[0,12024,12025,12028,4139], -[0,18901,18906], -[0,816,10817,4874,2968,4039,4042,4494,91], -[3,12011,18], -[2,12026,998], -[0,1831,1936,1623,4412,18909], -[1,2343,12030], -[0,0,0,5708,4139], -[1,2343,12032], -[0,0,12033,12034,4139], -[0,2899,1177,2759,1954,1938,1958,1903,1970], -[0,10368,1833,1002], -[1,2343,12036], -[0,12037,9264,12038,2537], -[0,3441], -[0,3101,7046,7241,18924,12706,4966,6703], -[1,2343,12040], -[0,12041,12043,2514,2537], -[0,2215,4388], -"tsparticles", -[0,8780,5087,4874,1622,1177,20281,2675,1192,2990,3144,1894,91], -"particles.js", -"particles", -"particlesjs", -"particle", -"jsparticles", -"xparticles", -"particles-js", -[1,2343,12052], -[0,12057,12064,12065,2537], -"particles-bg", -"-vue", -[2,12053,12054], -"particles-ts", -[0,1104,4294], -"particles.ts", -[3,2638,9], -"ticles-js", -[2,12059,12060], -[3,12061,15], -[2,12062,1722], -[0,4874,2398,2720,2899,3421,3742,91], -[0,8618,8619,8620,1299,200,1523,6876,8622,1836,1179,8623,8624,6847,8625,2720,8626,8628,5284,202,6710,3741,3742,8630,8631,3925,8632,4989,8633,2184,8634,7009,6621,181,8635,4758,8636], -"vue-particles", -"ngx-particles", -[2,1101,12045], -[1,2343,12077], -"ground", -[2,12047,12070], -"vuejs", -"preactjs", -"angularjs", -"html5", -"web-design", -[0,12078,12085,12095,4139], -[0,7272,12240,3757,19647], -"webdesign", -"css3", -"vtt", -"animated", -"background", -"conf", -[0,13614,1159,9254,1177,2011,2708,3410,3421,4103,4389], -"confetti", -"works", -"fireworks", -"fireworks-js", -"confetti-js", -"confettijs", -"fireworksjs", -"canvas-", -[2,12093,12086], -[0,18089,18943,18944,1936,10368,15103], -"apk", -"flickity", -[1,2343,34419], -"@d-fischer/shared-utils", -[3,1005,9], -"all", -"api-call", -[2,12100,12102], -[2,12100,10896], -"jose", -[0,1429,2675,2899,1899], -[0,6971,18951,18952,998,6956], -"twitch", -[1,2343,12110], -[0,12111,12112,12113,2523], -[0,2003,4430], -[0,4387,4389], -[0,6639,6436,1389,14927,353,4225,8309], -[1,2343,12115], -[0,0,12116,12125,2537], -[0,53,13051,85,87,192,5467,17584,1175,1178,1193,1195,1177,1881,1895,1938,1955,18964,2070,2675,1192,3183,6331,4750,1894,10623,2924,4677,4707,18966], -[1,2343,12568], -[2,3273,6543], -[3,439,18], -"regexpp", -[2,12119,12120], -[3,5552,23], -[2,12122,3007], -[2,1010,1995], -[0,5001,1263,6639,18523,18968,18969,18971], -"title-case", -[2,3138,9102], -"pecific-snapshot", -[2,11945,12128], -[3,8722,10], -"-mdxjs", -[2,12130,12131], -[2,3167,12132], -[3,5551,24], -"to-typescript-types", -[2,4120,12135], -[2,12134,12136], -[1,2343,12139], -[0,12140,12141,12143,2537], -[0,18976,1448,1850,18980,6914,18982,18984,18986,18989,17403,18990,18992,18993,3044,3431,13635,3435,3438,18994,3775,18995,18997], -[0,1173,13998,1261,1177,1879,1938,1947,1959,2708,2832,4039,4103], -"pastoralist", -[0,5284,19001,19003,1973,6071,89,2130,5472,19005,19007,6969,2899], -"cript-estree", -[2,5552,12144], -[1,2343,12147], -[0,12148,12149,12143,2443], -[0,2571,4135,3847,3744,3435,18994,3904,1847,1850], -[0,1843,1177,4039,3410,48,2708,53,1261,1959,4103,68,1879,1938,1947,1961,1198,13998], -[1,2343,12151], -[0,12152,12154,12143,2537], -[0,2571,4135,3744,3435,19018,19020,18980], -[2,12155,27730], -[0,1177,4039,3410,48,2708,53,1261,1959,4103,68,1879,1938,1947,1961,1198,13998], -[3,20826,14], -[1,2343,12157], -[0,12164,12167,12143,2487], -[3,1013,11], -[2,12158,9026], -[2,10306,5256], -[3,1603,14], -"ontext", -[2,12161,12162], -[0,2571,13635], -"-theming", -[2,1832,12165], -[0,1177,4039,3410,48,2708,53,1261,4103,68,1938,1881,1198,13998], -"-formatter", -[2,1413,12168], -[2,2093,12169], -"mini-", -"mini-store", -"rc-animate", -[1,2343,12177], -"rc-form", -"z-use-drag", -[0,12183,12210,2514,34352], -"@types/ra", -"@types/raf", -[3,1013,13], -"codo-gen", -[2,12180,12181], -[0,1080,1869], -"ast-types", -"motion", -[2,4893,12185], -[3,1225,14], -"proptypes", -[2,8137,12188], -[2,2528,12189], -[2,12187,12190], -[2,4670,8861], -[2,1199,12192], -"hot-loader", -[2,1625,12194], -"jest-emotion", -"screenshot", -[2,8820,12197], -[3,4323,19], -"yled-components", -[2,12199,12200], -[3,11598,12], -"or-styled-components", -[2,2484,12203], -[2,12202,12204], -"tsc-alias", -"@electric-sql/pglite", -"ucloud", -"lsofi", -[0,1087,1177,1903,1938,1948,1954,1958,2899,3421,4342], -[1,2343,12212], -[0,12218,12221,12223,2537], -[3,1014,9], -"slate", -[2,12213,12214], -"slate-hyperscript", -"slate-react", -[0,1082,2071], -[2,12213,594], -"is-hotkey", -[0,16805,1393,19038,5867,30889,12142,1894,3980], -"jotai-optics", -[0,19042,19044,3595,19045,19046,19047,5286,19049,19052,19053,676,19054,19055,19057,19059,19060], -"jotai-x", -[1,2343,12230], -"optics-ts", -[3,3836,9], -"keys-hook", -[2,12227,12228], -[0,12234,12235,12237,2537], -"deep-compare", -[2,8183,12231], -"zustand-x", -[0,19066,2569,19071,19073,19078,15059,3435], -[0,5517,13614,23237,10976,10979,11008,27564,27568,27571,27573,27575,27576,27580,11013,19325,1143,1159,9254,1177,14741,15308,2756,3410,3421,19082,4103,19084,4389,11028], -"plate", -[0,5284,5286,3595,676,6693,6692,5187,1182,6830], -[1,2343,12239], -[0,12241,12243,12249,2443], -"es-errors", -[0,15786,19092,19093,19094], -"react-b", -[0,1177,15793,15797,15801,2675,2990,3421,19097,15804,15805], -"react-button", -"uiw-react", -"react.js", -"uikit", -"react-ui", -[0,5286,19099,19100,1925,5194,19101,2680,19102,2474,5258,5284,6422,1858,614,594,6731], -[1,2343,12251], -[0,0,12252,12254,2537], -[0,13614,1158,1177,2708,2768,3421,4103,4535], -[2,1024,45], -[0,1858,1925,19108,5284,5286,6422], -[3,3839,10], -[1,2343,12257], -[0,0,12258,12259,2523], -[0,1173,1175,1198,8966,1264,1429,1610,2899,4039], -[0,5194,1851,1172], -"react-input", -[1,2343,12262], -[0,0,12263,12264,34352], -[0,19118,2899,1825,18686,18693,19119,19121,19122,19123,1381,18801,18825,19125,19127,14217,14196,19130,14214,1235,14199,14192,1244,14198,14215], -[0,19132,6422,1862,6567], -[3,1023,18], -[1,2343,12269], -"verlay-trigger", -[2,8666,12267], -[0,0,12270,12271,2537], -[0,48,53,87,10688,1863,1177,1895,1903,1938,1954,1958,2675,3421,1894,4193,4389], -[0,1862,6567,5194,19138,1865], -[1,2343,12275], -"react-u", -"react-utils", -[0,0,12276,12277,4139], -[0,13614,1158,1429,1859,1177,2011,2228,2256,2283,2311,2708,2899,3421,3736,19146,4103,4389,4535], -[0,5286,5258,5194,1858,1862,6567,7168,3053,3065,6636], -[2,12279,8295], -"flowbite-", -[1,2343,12281], -[0,0,12282,12288,2523], -[0,1317,1311], -"to-ts", -[2,7526,12283], -[2,7719,553], -"prom-client", -"unleash-client", -[0,1867,1936,6435], -"ype-is", -[2,7750,12289], -[1,2343,12293], -"ts-node-dev", -[0,0,8134,12297,2399], -"Unleash", -"ios", -"android", -[0,1867,1108,6961,6920,7256,1871,19161,7169], -[1,2343,12299], -[0,12300,12303,2514,2537], -[0,2004,14301,2003,4227], -"keyux", -[3,1027,12], -[0,1082,1362,19168,1429,6522,19172,2323,2384,2463,3183,3466,4135], -"image-shrink", -[2,12302,12304], -[2,9229,4219], -[2,12302,12306], -[1,2343,12311], -"shipjs", -"@esm-bundle/chai", -[0,12316,12317,12321,2523], -"@total-typescript/ts-reset", -"@hap", -"py-dom/global-registrator", -[2,12313,12314], -[0,439,12121,19180,27907,19193,11180,11209,19182,19184,1006,1091,1615,1676,1874,1994,1996,2000,19186,14301,2069,16783,2105,2200,2687,19187,2743,19189,3181,12118,3466], -[0,5517,53,87,8129,19194,19181,19195,19581,4874,1011,1195,1414,1429,1448,1532,1593,1651,1797,1933,15510,17308,19206,32793,19210,2003,19213,2070,2203,2212,2226,2807,2931,2990,3105,3112,3127,19216,19219,19221,19222,19223,19224,2899,19227,19230,1894,3730,3752,3930,3957,4135,4167,4193,91,2924,4677,19235], -"uploadcare", -"lighter", -"file ", -[0,6892,671,5284,5286,2000], -"file uploader", -"ive image", -[2,5156,12323], -" optimization", -[2,158,12325], -"image ", -[2,12327,6110], -"image size", -" image editor", -[2,6599,12330], -" client", -" api client", -[2,9229,12333], -"ing blocks", -[2,6147,12335], -"lr-blocks", -"uc-blocks", -[2,11857,591], -"smart", -[1,2343,12356], -"smart cdn", -"cloud ", -[3,31,8], -"file platform", -[2,12343,12345], -"ation api", -[2,353,12347], -"webp", -"avif", -"css c", -" properties", -[2,12162,12352], -[2,12351,12353], -[2,11617,591], -[0,12357,12358,12359,2523], -[0,3435,3438,1881], -[0,4389,1796,1177,2708,97,19243,19247,1261,1959,4103,1938,1947,1961], -[0,1177,6651,1541,1259,5284,6718,6778,7056,7192,7044], -[2,8137,668], -[2,1393,12360], -[1,2343,12363], -[0,12364,12365,12359,2537], -[0,4135,3435,3438,19254], -[0,4389,1796,1177,2708,97,19243,19247,1261,4103,1938], -[1,2343,12367], -[0,12373,12374,12375,2399], -[3,5881,34], -"self", -[2,12368,12369], -[3,12370,35], -[2,12371,5585], -[0,1881], -[0,1009,1011,1742,1177,1895,1938,2675,2990,3400,1894,19263,91], -[0,1259,1541,6778,7056,7192,7044,1177,6651,5284,6718,91], -[1,2343,12377], -[0,0,5795,12378,4139], -[0,1885,1501,19269,590,671,9654,2292,2272,19270,1177,2649,19271,15717,4354,16790,19273,18443,2446], -[1,2343,12380], -[0,12381,5795,12382,2537], -[0,442,2203], -[0,1177,7625,19281], -[1,2343,12386], -[2,8530,4798], -"merge-deep", -[0,12387,12388,12389,2537], -[0,19438,19181,442,19344,1009,1011,1891,1907,19286,1915,1938,1942,1951,1953,17306,1982,4523], -[0,9736,1177,91], -[0,1890,1177,7625,19281], -[1,2343,12391], -[0,12401,12404,6936,2443], -[3,5075,18], -[2,12392,8221], -"@makotot/ghostui", -[3,6497,10], -"@types/hast", -"@umijs/bundler-utils", -"@umijs/", -"@umijs/core", -[2,12398,594], -[0,1953,1951,1938,19286,1011,17306,1009,1915], -"-scroll-to", -[2,12082,12402], -[0,1177,91,9736], -"codesandbox", -"comlink", -"dumi-", -[1,2343,12417], -"dumi-afx-deps", -"estree-", -"util-to-js", -[2,12410,12411], -[3,12412,12], -"visit", -[2,12413,12414], -"file-s", -[0,0,0,12423,2487], -"ystem-cache", -[2,12416,12418], -"is-element", -[2,2573,12420], -"heti", -[0,1177,6651,7625,28987,1894], -"html2sketch", -[3,3137,12], -"ind-and-replace", -[2,12425,12426], -[3,3140,14], -[2,12428,1871], -[1,2343,12453], -"prism-themes", -"react-l", -"-skeleton", -[2,10087,12433], -[2,12432,12434], -"code-editor", -[2,10961,12436], -[2,3890,12437], -"rehype-r", -"emove-comments", -[2,12439,12440], -"directive", -[2,3986,12442], -"sucrase", -"umi", -"-parents", -[2,4555,12446], -"v8-compile-cache", -"vfile", -"dumi-a", -"ssets-types", -[2,12450,12451], -[0,12464,0,2514,2523], -[2,11367,1732], -[2,6495,12454], -[3,5540,9], -"sted-git-info", -[2,12456,12457], -[2,6308,6925], -"luralize", -[2,5088,12460], -"@umijs/lint", -[2,12398,9711], -[0,53,1939,1959,68,1938,1270,1935,1947,19302,1011,19254,1961,1976,1009], -[1,2343,12469], -"-import-utils", -[2,12405,12466], -"repo", -[0,0,12470,12476,2523], -[0,1177,1903,1938,1953,1958,4389], -"git-repo-info", -[2,11311,1732], -"zx", -[2,699,701], -[2,12407,12474], -[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,6651,2446,2292,2272,671,19315,19269,2869,1899,4255,19317,590,19318,19320,19273], -" site generator", -[2,2947,12477], -"jamstack", -[1,2343,12481], -[0,0,12482,12483,2537], -[0,5601,19325,1177,1938,1953,1958,4389], -[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,6651,2446,2292,2272,671,19315,19269,2869,4255,19317,590,19318,19320,19273], -[1,2343,12485], -[0,12486,12487,2514,34352], -[0,442,27928,1982,2203,4523], -[0,19333,5601,4874,19336,1446,1177,19339,33860,1894,91], -[1,2343,12489], -[0,12490,12491,12492,2537], -[0,29371,19194,19344,19254,2203], -[0,1166,1177], -[0,6651,1906,19347,19348,19349,19350,19353,1501,19269,590,671,9654,2292,2272,19270,1177,2649,19271,4255,15717,4354,16790,19273,18443,2446,2869], -[1,2343,12494], -[0,0,12495,12496,2399], -[0,192,5467,1610,2675,2990,3985,3995,1906], -[0,19359,1541,1177,18639,18640,3624,1906], -[1,2343,12498], -[0,12499,12500,12501,2537], -[0,1012,1091,1443,1525,1595,1699,8098,18420,2777,2845,12834,3117,4507], -[0,442,4874,6513,29891,16480,22839,1177,1895,1938,1953,1955,1982,3125,3390,3400,3471,1894,4193,18710,91,4523,1984], -[0,2295,1739,1745,1177,1179,1932], -[1,2343,12503], -[0,12504,0,12505,4139], -[0,1676,27418,2191,19380,29856,27921,12578], -[0,91,1177,1204,14056,1932], -[1,2343,12507], -[0,12508,12509,12510,2523], -[0,2102,2151,3008,3429,4121], -[0,48,53,87,192,5467,19401,16405,1178,1193,1457,19403,1610,1700,1701,1177,1895,19405,1938,2675,1192,2794,2990,3400,1894,4257,2924], -[0,1177,671,9654,1194,2924], -[1,2343,12512], -[0,12513,12514,12515,2537], -[0,439,19194,19413,2000,19415,19419,4025], -[0,1011,1166,1414,1437,1177,19422,1912,1933,2020,3400,3471,3532,91,1906], -[0,1177,6741,6939,1166,1973,8791,1145,6637,6468,2899], -[1,2343,12517], -[0,12518,12519,12520,34352], -[0,19209], -[0,2899,1177,1178,3028], -[0,1172,1177,6741,6939,1178], -[1,2343,12522], -[0,12523,12524,12526,2523], -[0,16805,19436,1393,1423,2105,2203,3057,4135], -[0,53,68,192,5467,19438,442,6061,6063,19441,5366,19443,5601,5087,19446,5254,1317,19449,1804,1177,1895,1933,1955,2024,2675,1192,1894,4131,4183,4468,4474,91,4523], -"object-deep-merge", -[0,1177,1388,4231,5592,671,1421,19451], -[1,2343,12528], -[0,0,12529,12530,2523], -[0,1177,2899], -[0,1177,6741,1925,6778], -[1,2343,12532], -[0,12535,12536,12537,2537], -[2,19573,24759], -"diff-sequences", -[0,1874,2687], -[0,12602,4874,19464,1178,1503,1615,1177,19466,2151,2899,3421,3456,4039,4135,13134,19468,19469], -[0,1177,6741,6939,1932,8505,4298,12442,2202,2203,19472,19473,19475,19478,19479,19482], -[1,2343,12539], -[0,12540,12541,12542,2443], -[0,439,2004], -[0,192,5467,6303,19492,19181,442,27928,19611,19580,31200,1006,4870,4874,1011,1012,16480,1177,19494,1895,1912,1953,1982,1992,1994,2000,2675,2807,2990,1209,3125,3390,3401,1894,1531,91,4523,1984], -[0,1177,6741,6939], -[1,2343,12544], -[0,12545,12546,12547,2537], -[0,1209,19500], -[0,1091,2070,2675,2899,1177,4039,19505,15555,48,53,13693,94,4131,87,68,19504,5235,1933,1198,5874,78], -[0,1177,1932,1934], -[1,2343,12549], -[0,12550,12551,12552,4139], -[0,2654], -[0,19512,19514,1177,1895,19516,1894,4135], -[0,6939,6741,1177,1936], -[1,2343,12554], -[0,12555,12556,12558,34352], -[0,11554,19522,19525,18976,1143,1676,19526,19527,19378,2571,17501,2743,3181,19020,19531,18994,4135,11555,4480], -[0,19535,5601,1011,1173,1175,1178,1208,1212,1261,14237,1280,1291,1429,1610,19538,1177,1912,1915,1933,1938,17585,14053,19539,2070,2708,2762,2858,19540,19541,3125,2899,19544,3421,3875,4039,4103,4193,4449,91,19545], -"stable-hash", -[0,1177,6741,6939,5194,13354,5260,1204,6813], -[1,2343,12560], -[0,12561,12562,12542,2487], -[0,1012], -[0,48,53,87,92,192,5467,19492,19552,6061,6063,5536,5601,5087,4874,5254,1009,1011,1012,1193,19555,1680,1177,1895,1912,1933,1938,1953,1955,1992,19560,2675,2742,1192,15853,2990,19516,3534,1894,4039,4131,4135,4474,91], -[1,2343,12564], -[0,12565,12566,12567,2537], -[0,19567,12533,19568,8506,1676,1874,2000,19186,2626,12525,27427,4135,19570,30614], -[0,5517,48,53,68,5240,87,19574,19577,19193,19578,816,16607,6065,16608,4856,5245,19580,19581,1006,8818,6503,4874,5254,19586,5552,1198,1208,19588,1414,1420,1429,1677,1177,19504,19505,2070,2203,2675,19592,2845,26696,2990,2899,19595,3541,4068,4039,4042,4131,4193,5569,91,4523], -[0,1177,1932,1776], -[0,12569,19601,12572,34352], -[0,439,19193,11180,12570,12534,12668,17310,12118,19571], -[2,19606,12571], -"ast-token-store", -[0,1177,6741,6939,671,19632,2856,1781], -[1,2343,12574], -[0,12575,12576,12577,2537], -[0,11869,19522,1143,19638,1169,19639,19640,13829,2571,19644,19645,3181,19020,19647,19648], -[0,48,53,68,5240,94,1159,1198,1261,1177,1881,1912,1933,1935,1938,2004,2126,2708,2762,17221,3183,3410,3435,3438,4039,4103,4135,4389,19650], -[0,1177,6741,6939,6653,7320,1219], -"unrs-resolver", -[1,2343,12580], -[0,12581,12582,12583,2537], -[0,3137], -[0,3421,1429,2899,1177,2203,442,19206,19657], -[0,1177,6741,1783,671,9654], -[1,2343,12585], -[0,12587,0,12594,2399], -"aleo", -[0,2203,439], -"cryptography", -[3,1336,10], -"decentralized", -"-knowledge", -[2,7150,12591], -"oracle", -[0,1177,6741,6939,2899], -[1,2343,12596], -[0,12597,12601,12615,34352], -[0,439,1835,19671,2191,2203,1555,2687,4135,29860], -"event-", -"target-shim", -[2,12598,12599], -[0,442,5601,1006,27303,4874,1011,12145,1177,1895,1912,1933,2071,2675,2990,3125,2899,3401,3421,3456,1894,3757,3980,4039,19676,4507,91], -"@mysticatea/eslint-plugin", -[3,12602,12], -[2,12603,4158], -"dts-bu", -"ndle-generator", -[2,12605,12606], -"growl-reporter", -[2,2877,12608], -"-minify", -[2,4045,12610], -"rollup-", -"rollup-watch", -"type-tester", -[0,1177,6741,6939,202,6710,5286,6987,2090,3403,1204,3209], -"w3c", -"abort", -"cancel", -"control", -"controller", -[2,12617,12620], -"abortsignal", -[1,2343,12624], -[0,12625,12626,12615,2487], -[0,1927,19414,2687,3181,814,4135], -[0,12602,1503,1177,2071,2203,2899,3421,3456,3757,4039], -"negotiator", -[1,2343,12629], -[0,12630,0,12632,2399], -[0,19689,19571], -"negotiation", -[0,1177,6741,6939,1894], -[1,2343,12634], -[0,12635,12636,12637,2537], -[0,439], -[0,1011,1742,1177,1895,1912,1933,1939,1953,1955,2203,2675,1192,2990,3401,1894,91], -[0,1177,6741,6939,1862,6567], -[1,2343,12639], -[0,12640,12641,12642,2523], -[0,19522,19724,1143,19726,19526,19641,2004,2571,19644,3181,3438,19020,18994,3744,814,4135,11434,19729], -[0,53,68,5611,19731,19735,90,5601,1006,4874,1011,1178,1177,1881,1912,1933,1938,1992,19560,1994,2000,11605,2070,2759,2762,19736,3125,2899,3410,4193,91,19545], -[0,1177,6939,6741,89], -[1,2343,12644], -[0,12645,12646,12642,2523], -[0,4763,53,58,21131,25652], -[0,1192,91,4874,104,1178,5601,1006,19877,36694,68,92], -[1,2343,12648], -[0,12649,12651,12652,2487], -[0,439,12121,8506,19592,19745,19750,19751], -"git-clone", -[0,107,6022,19492,19181,442,19605,19609,11470,4856,5601,19611,1006,6503,4874,19759,1009,1011,1145,1429,19619,1177,1895,1912,1915,1933,1938,1942,19622,1945,1948,1953,19757,1955,1964,1982,1988,17308,19756,3125,2899,19761,3090,3401,3421,3486,1894,4135,4320,4946,19624,1531,4494,91,4523,19630,4614,4630], -[0,1177,6741,6939,6961,1108], -"iglet", -[2,5537,12653], -[3,9362,11], -[2,12655,1496], -[1,2343,12658], -[0,12661,12662,12663,2523], -"nestjs", -"fullstack", -[0,19767], -[0,442,13729,1177,19771,1895,1912,1933,2990,3125,2899,3400,1894,4131,19235], -[0,1177,1965,19773], -[1,2343,12665], -[0,12667,0,12669,34352], -"archive", -[0,91,4135,31800,3060,19780,12121,3181,5569,19751,1413,1405,2203], -"eslint-json-compat-utils", -[0,19786,1177,6741], -[1,2343,12671], -[0,0,12529,12672,2443], -[0,1177,6741], -[1,2343,12676], -"flowcontrol", -"arch", -[0,12677,12678,12679,34352], -[0,439,5012,14301,2203,2932,3561,3616,3676,4135,19795], -[0,53,68,14039,19492,10879,19797,19798,8818,19799,6503,4874,19800,5254,19802,5604,5552,1082,1145,668,1994,19339,1996,2000,2807,695,2899,3640,3681,2278,4228,4333,3709,19803,4494,4505,4745], -[0,1177,6939,6741,3709,19805], -"cron-parser", -"date.js", -"human-i", -[1,2343,12686], -"nterval", -[2,12682,12684], -[0,12691,12695,12696,2523], -"uman-interval", -[2,6495,12687], -[2,8329,2995], -[2,3230,12689], -[0,5604,1012], -"job", -"jobs", -"delayed", -[0,192,5467,19181,442,4874,5551,7677,22839,23203,1177,1895,1912,1915,32525,1953,1958,1992,19560,2203,2675,2807,2990,1894,23535,4131,1531,91,4523,1984], -[0,1177,6741,6939,671,1975,5472], -[1,2343,12698], -[0,12723,12724,12725,2537], -[3,1339,12], -"end4", -[2,12699,12700], -"meat7", -[2,1337,12702], -"bow-swam-troops-care", -"cent-matter-to", -"close", -"r-composed-particularly-shout", -[2,12706,12707], -"coach-organized-notice", -"correct-home-silent7", -"course-whenever-merely", -"crop", -"-birthday-web3-children", -[2,12712,12713], -"exchange-known-bend", -"-even", -"tually-bound", -[2,12716,12717], -[2,8205,12718], -"grass-dollar-crew-floating", -"-fruit-web3-perfect", -[2,4374,12721], -[0,1012,608,606], -[0,9125,5601,1006,1177,9141], -[0,6869,1745,2295,4298,9132,9134,9658,1932], -"lay-rest-hour", -"balance", -"-trade-solar", -[2,12727,12728], -[2,3131,12729], -"meat", -"-think-stove8", -[2,12731,12732], -"offic", -"e-deal-mostly1", -[2,12734,12735], -"product-slight-adult-settlers", -[3,3931,9], -"done-should-moon", -[2,12738,12739], -"scienti", -"fic-exist-event2", -[2,12741,12742], -"sent", -"-won-little-western", -[2,6590,12745], -[2,12744,12746], -"-wing-eat", -[2,6887,12748], -"stay-including", -"supp", -"er-t", -"erm-including-snake", -[2,12752,12753], -[2,12751,12754], -"truck-hospital-equator-hurt", -"trunk-darkness-believed-corner", -"typi", -"cal-recall-industry-exchange", -[2,12758,12759], -"warn", -"-clothing-whose0", -[2,12761,12762], -"weigh-flew-web3-farm", -[1,2343,12766], -[0,12767,12768,12769,34352], -[0,5279,439,1443,1458,19824,5867,30055,2203,2709,10911,2835,3547,19826,19827,4135,8959], -[0,51,53,68,19181,19829,1011,5552,1166,1414,1836,1177,19422,1907,1912,1933,1942,1982,1992,19560,1994,2000,2992,3125,17269,27922,3390,3401,19595,3471,3718,91,4630,4745], -[0,1177,6741,6939,1981,9654,671,590,1906], -[1,2343,12781], -"@airtap/browserify-istanbul", -"-default", -[2,1090,12772], -"airtap-", -"airtap-multi", -"bruce-millis-option", -[3,9242,9], -[3,9242,10], -[2,12778,5576], -"near", -[0,12561,12794,12797,2537], -"nearest-file", -[2,2103,12782], -"s-to-files", -[2,2070,12784], -"human", -"ize-duration", -[2,12786,12787], -"load-script", -[3,3736,9], -[2,12790,6953], -[2,3094,12791], -"maybe-combine-errors", -[0,19344,5601,6503,4874,1009,1011,5551,19838,19839,1540,1177,1912,1933,1985,1992,19560,4474,4494,91,4543,1984], -"nanoresource", -"-col", -[0,1177,6741,6939,19842,1984,19844], -"-collection", -[2,12795,12798], -"on-str", -"eam-close", -[2,12800,12801], -"run-", -"parallel", -[1,2343,12806], -[0,12810,12811,12816,2523], -"-settled", -[2,12804,12807], -[2,12803,12808], -[0,439,12118,16870,3681,4135,19851], -[0,107,27928,19609,19344,11470,5601,19616,4874,5254,19853,1009,1011,5552,7677,1145,19619,668,1177,23753,1895,1933,1938,1945,29743,19623,1955,1982,19339,1996,2000,2018,2203,2832,3125,3510,1894,1531,91,19630,4614,1984,4630], -"tap-completed", -"y-with-args", -[2,3949,12813], -"transi", -[0,1177,6939,7625,188,12072,3624], -"ent-error", -[2,12815,12817], -[1,2343,12821], -"abstract-browser", -[0,12822,12824,12827,2487], -[0,51,2861,1437,2716,3429,89,4183], -"simple-get", -[0,19181,19861,5601,4874,8860,4880,1567,1177,5556,19862,19864,2807,3339,4294,91,1984], -"labs", -"saucelabs", -[0,1177,19866], -[1,2343,12829], -[0,12830,12838,5795,34352], -[0,34028,1006,19871,2004], -"uri", -"fast-uri", -[3,12284,13], -[2,12833,1286], -"-string", -"from-string", -[2,4013,12836], -[0,1011,1429,1996,2000,19230,4167], -"@ajv-validator/config", -"quire-", -[2,12840,12836], -[2,5249,12841], -[1,2343,12853], -"tc", -"-plugin-utc", -[2,1673,12845], -"if-node-version", -[2,12833,4467], -[2,5223,12836], -"re2", -"tsify", -"uri-js", -[0,0,12854,5795,2523], -[0,3456,4042,4057,4481,91], -[1,2343,12856], -[0,12857,0,12858,2537], -[0,1898,19884], -[0,1998], -[1,2343,12861], -"Ajv", -[0,0,0,12862,34352], -[0,10906,5286,6813,1204,5260,202,3209], -[1,2343,12864], -[0,12865,12866,12867,2523], -[0,1082,15128,1996], -[0,5517,4042,4167,4481,91], -[0,6892,5286,5284,57,5341,1082], -[1,2343,12869], -[0,0,12871,12872,2523], -"longjohn", -[0,15990,19905,19907,2070,2759,19878,2297,2881,2889,2891,2895,2897,2900,2912,19910,2915,1209,2899,19912,3954,1241,4487,91,4526,19914,2924], -[0,6892,5286,2003,5284,57,5341], -[1,2343,12874], -[0,0,12875,2514,2523], -[0,1264,1280,1429,2000,2323,2351,2390,2404,19922,2272,2899], -[1,2343,12880], -"buffer-", -"more-ints", -[2,12877,12878], -[0,12881,12883,2514,2487], -[0,1006], -"claire", -[0,91,4579], -"AMQP", -[1,2343,12888], -"AMQP 0-9-1", -"RabbitMQ", -[0,0,12889,12890,2487], -[0,2899,1177,2759,1317,4127,4100,1311,1954,1938,1958,1903,1948,1970], -[0,984,27,10376], -[1,2343,12892], -[0,12894,12895,12896,4139], -"ux bootstrap", -[0,19937,2010], -[0,19939,19941,19942,19944,9424,7892,4874,19325,1389,19945,1596,2675,2759,2297,2871,2889,2895,19946,3183,3421,1894,4389,4474,4487,4508,4514,91,19948], -[0,9439,19950], -[1,2343,12898], -[0,12900,12901,12902,2523], -"client-side", -[0,9424,1363,1600,19956,19957], -[0,19961,4874,19963,19325,1177,2297,2881,2895,19946,19965,3421,1894,4389,4474,91], -[0,9439,6731,594], -[1,2343,12904], -[0,12905,12906,12907,2523], -[0,1082,1437,4747,1209,1362,2151,19972,2004,3105,19971,4547], -[0,3763,19974,91,4874], -[0,19976,19977,5284,1783,1973], -[3,4,9], -"cli/ast-tools", -[2,12908,12909], -[3,12910,13], -"href-webpack", -[2,1296,12912], -[2,12911,12913], -"@ngtools/json-schema", -"@ngtools/", -[2,12916,2924], -"denodeify", -[1,2343,12920], -[0,12927,12932,12933,2523], -"entity-name", -[2,3370,12921], -[2,1828,12922], -[2,4284,594], -[2,1828,12924], -"exists-sync", -[0,1792,7115,3102,19982,4237,19984,4430], -"caller-file", -[2,2183,12928], -"isbinaryfile", -"node-mo", -[0,19986,19987,19988,4389,19989], -[0,3101,3053,19991,7131,4237,4565,1698,4068], -"dules-path", -[2,12931,12934], -[2,1508,2091], -"silent-error", -[3,4070,9], -[3,6384,10], -"inst", -"rumenter-loader", -[2,12940,12941], -[2,12939,12942], -[2,12938,12943], -[1,2343,12946], -[0,0,12947,12948,34352], -[0,1317,1362,1596,2899,3421], -[0,2013,2018,13771,2016,19997,19998,19999,6868,20000,1803,3441,20001,20003], -[1,2343,12952], -" library", -[2,4627,12950], -[0,0,12953,12954,2537], -[0,811,10615,1148,1414,2899,4042], -[0,20014,20015,20016,20018,19997,19998,6868,20000,13771,2013,3441,19999,20001,20019,20003], -[1,2343,12957], -"justified", -[0,0,12960,12962,2523], -"bgblack", -"bgBlack", -[0,1090,2159,6914,2569,2756,4389], -"bgblue", -[0,2018,7133,7053,7155], -"bgBlue", -"bgcyan", -"bgCyan", -"bggreen", -"bgGreen", -"bgmagenta", -"bgMagenta", -"bgred", -"bgRed", -"bgwhite", -"bgWhite", -"bgyellow", -"bgYellow", -"black", -"bold", -"clorox", -"cyan", -"dim", -"gray", -"green", -"grey", -"hidden", -[1,2343,12988], -"inverse", -"italic", -[0,12989,12995,12999,2537], -[0,20033,1615,2089,2188,20035,2745,2753,3404,3718,4174,20039,20040], -"magenta", -"red", -"str", -"kethrough", -[2,4285,12993], -[0,4874,1166,1414,20042,20044,20047,29888,3505,16687,16330,4481,91,4707,1906], -"underline", -"white", -"yellow", -[0,2978,1451,3729,20049,16701,20050,20051,1614,2090,4166,20052,17180,20054,3378,3403,2703,12473], -[1,2343,13001], -[0,0,13003,13004,2487], -"@jest/get-type", -[0,2273,2277,2283,2228,4707], -[0,2021,3729,20061,8634,20062,20063,20064,20065], -"vt100", -"cursor", -"iterm2", -"screen", -"erase", -[1,2343,13012], -"scrollback", -[0,13013,13014,2514,2537], -[0,20076,13002,11907,8765,11944,2798], -[0,16596,8776,1437,2700], -[1,2343,13016], -[0,0,13018,13019,2537], -"pattern", -[0,5517,4874,29891,23203,1177,20083,3377,20085,4294,4473,91,1984], -[0,91,20088,1145,553,4532,1973,5472], -[1,2343,13021], -[0,13022,13023,13025,2537], -[0,3763,1704,984,3441,710,4590,1676,2145,977,38,1080,1000,3494,4266,1833,3173,988,1364,1869,2657,3440,1562,2099,3781,4151,1581,20103,1560], -[0,1797,2590,3421,1087,2899,4594,1177,3127,3237,4342,1553,1575,1578,2040,3162,20106], -"svg-term-cli", -[0,2026,5130,6690,5122,27,4030,7096,38,1896,5592], -[1,2343,13027], -[0,13028,13029,13025,2537], -[0,1080,20098,1364,1560,1562,977,1581,1676,1704,1833,1869,984,2099,2145,2657,20103,3164,3440,3494,3509,988,3763,3781,4100,710,4151,20099,4266,1000,4578,4590], -[0,1087,1553,1575,1578,1797,1177,2040,2590,3127,3162,2899,3237,3421,20106,4342,4594], -"truecolor", -[2,31213,31214], -[1,2343,13033], -[0,13034,13040,13043,2487], -[0,53,58,101,19526,3509], -[2,12392,188], -"nitless", -[2,7944,13036], -"@simonwep/pickr", -"array-", -[0,5087,1177,1192], -"tree-filter", -[2,13039,13041], -[0,8124,2026,1776,2295,7701,20120,1745,4363,13728,1179,8623,20121,20123,20124], -[1,2343,13048], -"dom-align", -"croll-into-view", -[2,11148,13046], -[0,13050,13054,13070,2537], -"vue-types", -[0,1797,3188,1525,3181,14380], -[3,10720,40], -[2,5822,3426], -"@types/k", -[0,2899,1177,4039,4538,4342,4459,1954,1938,1958,1903,1970,4588], -"@types/koa", -"ru-cache", -[2,6499,13056], -[3,4875,15], -[2,13058,3615], -"-jsx", -[2,11016,13060], -[2,1199,1219], -[2,5334,13062], -"slint", -[2,3542,13064], -[2,1472,13065], -[2,5334,13066], -[3,1031,19], -[2,13068,1894], -[0,2026,5130,6690,5122,4030,7096,38,1896,5592], -"vue3-jest", -[2,5334,13071], -"pack-", -[1,2343,13081], -"cli/serve", -[2,13073,13075], -[2,10672,13076], -"ali-oss", -"nline-import-data-uri", -[2,1206,13079], -[0,13082,13091,13102,2523], -[0,2070,2215,2036], -"context", -"quire-context", -[2,1252,13084], -"colorful", -"-versions", -[2,3797,13087], -"cz-git", -"diacritics", -[0,442,6061,16607,6063,6065,16608,16612,5087,4874,1177,2203,2774,4131,4468,91,4523], -"docsearch.js", -"enquire-js", -[3,1954,16], -"licit-type-exports", -[2,1760,13095], -[2,13094,13096], -[3,2512,11], -[2,13098,1501], -"-emit-webpack-plugin", -[2,2687,13100], -[0,2026,20137,2036,6624,8691,20140,5354], -"is-windows", -[3,11948,16], -[2,13104,188], -"stub", -[2,1221,13106], -[2,2769,13107], -"templater", -[2,2842,13109], -[1,2343,13116], -"mport", -"npm-import", -[2,1186,13113], -[2,3194,13114], -[0,13139,13140,13146,2523], -"vars-to-js", -[2,3194,13117], -"majo", -[3,5961,14], -"ble-of-contents", -[2,13120,13121], -"merge2", -[2,3986,1646], -"yaml-", -"yaml-config", -[2,3986,13126], -"reqwest", -"rucksack-css", -[3,4130,9], -[2,13130,36], -[3,1873,9], -[2,2495,2091], -[2,13132,13133], -"umi-request", -"vue-cl", -"ipboard2", -[2,13136,13137], -[0,2863,20147,8264], -[0,2899,1177,2026,4474,1894,91,6503,6494,1566,1011,1009], -"drag-resize", -[2,4625,13141], -"vue-i", -"nfinite-scroll", -[2,13143,13144], -[0,1303,20150,5165,20151,14374,27,2038,11326,3424,2026], -[1,2343,13150], -"equest", -"vue-request", -[0,13153,13155,2514,2523], -"vue-tsc", -"webpackbar", -[0,977,1581,1676,1704,16128,3494,4100,4538], -"vueComponent", -[0,1087,1575,1177,1948,2026,2899,3421,4342], -[1,2343,13157], -[0,13158,13160,13170,2523], -[0,1091,1437,1525,1536,1594,1759,2026,2812,4042,4057,91,4763], -[2,11164,3007], -[0,442,7806,9227,6494,4874,1009,1011,1177,1954,2203,3363,1894,4039,4474,4480,4523], -"color-picker", -[2,11183,13161], -[3,5050,15], -"utate-observer", -[2,13163,13164], -[2,11183,11194], -[3,11185,15], -"rigger", -[2,13167,13168], -[0,5592,5995,20164,5001,7141,2026,20165,5130,6706,6807,36,7020], -[3,11161,14], -"mpat", -[1,2343,13180], -"mpatible", -[2,13171,13174], -"work-theme", -[2,2560,13176], -[2,41,13177], -"@ant", -[0,0,13208,13209,2523], -"@antv/g6", -"@codecov/webpack-plugin", -"@code", -"sandbox", -"/sandpack-react", -[2,13184,13185], -[2,13183,13186], -"@ianvs/prettier-plugin-sort-imports", -"@madccc/duplicate-package-checker-webpack-plugin", -"@micro", -"flash/rehype-figure", -[2,13190,13191], -"dm-zip", -[2,9165,13193], -"li-oss", -[2,9165,13195], -[3,10403,11], -[2,13197,3730], -[3,10406,12], -[2,13199,36], -[3,8806,9], -"omorphic-fetch", -[2,13201,13202], -[2,7635,965], -[2,10884,3730], -"ixelmatch", -[2,5088,13206], -[0,1414,20171,4193,1177,2026,4474,20170,91,4874,6513,6494,1011,1009], -[0,20173,20174,1781,91,5592,27,2026,20175,20176,91,2663,998,20178,20179,20182,20183,20184,9091,10339,5995,20186,20188,89,20189,20194,20195], -"@types/pngjs", -[1,2343,13217], -"pinnies", -[2,5051,13212], -[3,7752,10], -"antd-style", -[3,8770,10], -[0,13222,13242,13244,2537], -"ugin", -"y-plugin", -[2,13216,13219], -[2,7045,13220], -[0,1209,1155], -"cli-progress", -"plugin-c", -"chunk", -"olor-chunk", -[2,13224,13226], -[2,12407,13227], -[3,5556,16], -"dash", -[2,13229,13230], -"lunar-typescript", -"p-all", -"untup", -[2,3808,13234], -"-no-", -"-references", -[2,10393,13237], -[2,13236,13238], -[2,11380,13239], -"runes2", -[0,20202,20207,20212,5087,4870,1009,1011,1177,1895,1938,1955,1192,1894,4468,91], -"spinnies", -[0,2026,1155,7020,2649,2574,20215,4741], -"vanilla-tilt", -[1,2343,13247], -[0,13248,13249,13250,2523], -[0,1112,3327,20221,3776,13031], -[0,7806,9227,27478,6494,9231,27327,22102,10413,20232,1536,1594,1704,2026,9243,2657,3313,20243,91,4548,4763,34143], -[0,6710,5592,27,2663,1745,1781,2026,91,2844,36,1852,8124,20246,3452,20247,6652,20251,20252,4763,7020], -[1,2343,13252], -[0,0,13253,13254,4139], -[0,13614,13616,1177,2292,4389], -[0,2051,1496,1698], -[1,2343,13256], -[0,13257,13258,13269,4139], -[0,20263,20266], -[0,20268,20269,20272,2398,2747,20273,3183,2899,3427], -"ext-comm", -[2,10740,13259], -[2,5409,13260], -[2,5409,1745], -"app-layout", -[2,10689,13263], -[3,10703,14], -[3,212,11], -[2,13265,13266], -[3,806,10], -[0,3426,1496,2051,1698,7002,3048,3427,3435,3743,3583,3205,20275,4161,614,6435,594,6692], -[1,2343,13273], -"aper-toast", -[2,13268,13271], -[0,13274,13288,2514,2523], -[0,1149,3008,4121,4695], -"menu-mixin", -[2,5395,13275], -"building", -"-rollup", -[2,13277,13278], -[2,5471,13279], -[2,1384,591], -[2,13265,13281], -[3,5478,17], -"-regression", -[2,7062,13284], -[2,13283,13285], -"amf-client-js", -[0,1173,1193,1245,1257,1264,1610,1628,1701,1177,20281,1938,2092,1192,2990,3413,3697,3786,4257,4307,2924,20283], -[2,4053,2257], -"per", -"unzipper", -[1,2343,13295], -"raml", -"amf", -[0,13296,13297,13298,2399], -[0,1676,2188,4753,20290], -[0,1009,1011,1166,1177,1903,1920,1938,1954,1958,1970,2151,2675,2990,3421,4481,91], -[0,4560,2056,7682], -[1,2343,13300], -[0,0,13306,2514,34352], -"-match-patch", -[2,1687,13301], -"se-loader", -[2,5779,13303], -"klaw-sync", -[0,3421,2323,1776,2899,4193,1177,1209,3460,4431,1596,1389,20304,2494,2530,2990,13896,4599,2401,20305,20306,4603], -[3,1898,16], -[1,2343,13309], -[0,13312,13313,13314,2537], -"commended", -[2,13307,13310], -[0,20312], -[0,1177,1889,1954,2022,2899,3421,20314,4193], -[0,20317,3073,2942,6807,3721,20319], -[1,2343,13316], -[0,13317,13320,13321,2537], -[0,20325], -"light", -"apidoc-light", -[0,603,4874,1610,2070,19826,4005,4508,91,1984,20328,20330,2064], -[0,20334,20335,13657,5472,20336,20339,20340,2060,20342,20341,1192], -"portable", -[1,2343,13324], -[0,13329,0,13330,4139], -"programmatic", -"cli-app", -[2,4610,1745], -[2,3115,1745], -[0,20351,20349], -[0,1641,57,2062,20353,20354,20355], -[1,2343,13332], -[0,0,13334,13335,2537], -"http2", -[0,1596,1758,1177,2899,3421,3697,89,3904,4193,91], -[0,2062,4162,1693], -"apple", -" notifications", -[2,6645,13337], -"iOS", -"apns", -[1,2343,13342], -[0,13343,13344,13347,2537], -[0,20366,19185,2200,13123,3170], -[0,20369,16396,20371,8778,6503,4874,20374,6513,20375,1177,20377,2020,2071,20378,2070,20380,2899,4039,4193,20382,91], -[3,1122,12], -[2,1126,6731], -[0,2070,11601,2062,20385], -[1,2343,13349], -[0,0,13350,2514,2523], -[0,6503,4874,2899,4113,91], -[3,5515,14], -[2,4807,13351], -[1,2343,13355], -"jsnext", -[0,13357,13358,13359,2443], -"relay", -[0,20394], -[0,53,83,87,94,4874,1195,1414,1177,2591,2765,1894,3753,91,2924,4677], -[0,2062,6523,1781,57,4734,16168,4735,676,1155,2649,8535,1145,20398,20400,1936], -[1,2343,13361], -[0,0,0,13365,2399], -[3,8780,10], -"phql", -[2,13362,13363], -[0,2077,5131,4453,4384,2076,1702], -[1,2343,13367], -[0,13368,13371,13375,2537], -[0,20428,20414,20434,13597,20418,20409,20426,20412,20420,3533,20416,4038,20423,4135,20410], -"-common", -[2,1129,13369], -[0,28002,8520,826,19344,7844,4874,1091,8531,1092,20437,20446,20441,28400,20450,1540,1610,1177,20444,11049,20453,20436,2657,2812,12284,2861,20451,29197,3313,3752,4238,4481,91,4548,4590,6482], -[2,1126,1612], -"to-querystring", -[2,3425,13373], -[0,5122,5130,1781,2844,3445,5592], -[1,2343,13377], -[0,13378,13380,2514,2523], -[0,603,20472,12397,20467,20482,12399,12400,27329,20463,1201,1212,20479,20476,1835,668,2071,12419,20465,3181,20460,4480,91,20474], -"cracks", -[0,192,5467,842,5087,20485,9129,4874,14011,12471,2675,1192,6551,2990,1894,3706,3708,4039,4474,4494,12473], -"_modules", -[2,202,13381], -[1,2343,13384], -[0,13385,13386,13389,2399], -[0,20490,20491,20492,20493,20494,15016,1792,3183,19544,3923,19647,4243,20495,18997,20496,4389,4431], -[0,13614,1158,1159,1177,2708,3410,4103], -"@appium/support", -"@colors/colors", -[0,4384,12786,1973,20499,20500,3721], -"appium-adb", -"appium-", -"driver", -"chromedriver", -[2,13391,13393], -"asyncbox", -"io.appium.settings", -"ports", -[1,2343,13401], -"portscanner", -"teen_process", -[0,13407,13408,2514,2523], -"@appium/", -[3,1879,15], -"ppium-ts", -[2,13403,13404], -[2,13402,13405], -[0,1613,20507,3082,3427,1862,20508,11804], -[0,53,1700,2126,2323,2338,2396,2494,2700,2774,3159], -[1,2343,13420], -"@appium/t", -[2,13410,7630], -[2,13410,103], -"luebird", -[2,4853,13413], -[3,4875,9], -"rtscanner", -[2,13415,13416], -[2,5051,5588], -"@types/te", -[0,6230,13421,13422,34352], -[0,48,53,87,90,6061,6063,20514,13662,20517,1251,1652,1177,1879,2990,3188,4131], -[0,20519,20520,20521,20522,4963,20523,4967,6082,89,20524,20525,11609,5122,20526,20528,20531,20533,17751,20536,20537,20539,20541,20542,20543,20544,20545,20546,20547,20548,20551,20553], -[1,2343,13424], -[0,6263,13425,13427,2537], -[0,48,53,83,87,90,92,5583,811,816,10817,968,972,20562,5087,4880,4883,1009,1011,1503,1540,1610,1177,1881,1895,17613,1938,1939,1959,1961,1192,89,3824,3957,4042,4073,4468,4484,91], -"appium", -[0,20566,4967,20568,3875], -"automation", -[2,5131,10428], -[1,2343,13431], -[0,13432,0,13433,4139], -[0,20577,20573,20575,11959], -[0,1612,27,3212,5472,4158,13106], -[1,2343,13435], -[0,13436,0,13438,2399], -[0,20584], -"@azure/core-auth", -[0,10807,2087,15964,20586,1149,12804,6812,14836,1862], -[1,2343,13440], -[0,5621,13443,13448,2537], -"pipeline", -"reg", -[0,4874,23203,1149,2675,2990,91,1983,26744,1984], -"@azure/", -"identity", -[2,13444,13445], -"monitor-", -[0,2088,6938,6952,7179,1111], -"eleme", -[1,2343,13451], -[0,13460,8134,13461,34352], -"opentelemetry", -[2,13447,13452], -[2,13444,13453], -[3,830,9], -[2,13454,13455], -"-inst", -"rument", -"ation-", -[0,16232], -[0,3656,200,8429,6876,7169,5511,2568,20597,2089,20598], -"azure-sdk", -[2,13459,13462], -[2,13458,13463], -[2,13457,13464], -[2,13452,13465], -[2,13444,13466], -"@opent", -[1,2343,13472], -"elemetry/api", -[2,13468,13470], -[0,13511,13519,13533,2537], -"-logs", -[2,13471,13473], -[3,13471,15], -[2,13475,364], -"er-logs-otlp-http", -[2,6813,13477], -[2,13475,13478], -[3,13479,24], -"metr", -"ics-otlp-http", -[2,13481,13482], -[2,13480,13483], -"trace-", -"otlp-http", -[2,13485,13486], -[2,13480,13487], -"otlp-", -"exporter-", -[2,13490,1299], -[2,13489,13491], -[2,13475,13492], -"resources", -[2,13475,13494], -"sdk-logs", -[2,13475,13496], -[3,13497,19], -"metrics", -[2,13498,13499], -"trace-base", -[2,13498,13501], -[3,13502,25], -[2,13503,202], -[3,13497,16], -"emantic-conventions", -[2,13505,13506], -"diagnostic-channel", -"-publishers", -[2,13508,13509], -[0,3008,4121], -[2,13444,5746], -[3,4870,9], -"@types/long", -[3,8778,12], -"__typescript-etw", -[2,7295,13516], -[2,13515,13517], -[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,2675,1192,2990,3144,3400,1894,4257,4027,2924], -"exce", -"ption", -" monitoring", -[2,13521,13522], -[2,13520,13523], -[2,705,13522], -[2,6681,13522], -[3,1135,11], -" insights", -[2,13527,13528], -"microsoft", -"azure", -"tracing", -[0,2924], -[1,2343,13536], -"telemetry", -[0,0,13537,13540,4139], -[0,48,53,10688,5812], -"analytics", -"apm", -[0,20611,20613,20614], -[1,2343,13542], -[0,13543,13555,13556,2537], -[0,13687,20619,20621,20624], -[3,7709,10], -"ial-provider-node", -[2,11891,13545], -[2,13544,13546], -[3,7709,9], -"hash-", -"hash-node", -[2,13548,13550], -[3,6765,9], -[2,13552,27], -[2,13548,13553], -[0,20626,4874,1166,20627,2188,20628,4481,1906], -[0,3171,2090,998,14431,12666,158,11807,20630,20631,16202,20632,20634,13735,4354,2741,20635,14242,20636,8433,17180,1398,15149,20637,18048,20638,20639,12349,20640,20641,20642,20643,20644,20645,20646,20647,20648,3775,20649,20650,20651,20652,20653,20654,2056,4390,20655,17276,17274,20656,18494,20657,20658,20659,20660,20661,20662,20663,20664,20665,20666,20667,20668,20669,20670,20671,2636,20672,20673,7016,20674,20675,20676,20677,20678,20679,13705,20680,20681,17918,20682,7827,20683,20684,20685,10790,20686,20687,20688,20689,20690,20691,7823,20694,20695,20696,20697,20698,3354,20699,20700,20701,20702,20703,20704,20705,20706,20707,20708,6523,20709,11811,10868,20710,20711,20712,8861,20713,20714,20715,20716,20717,20718,20719,20720,20721,20722,20723,20724,20725,20726,20727,20728,20729,20730,20731,20732,20733,20734,20735,20736,20737,20738,20739,20740,20741,20742,2403,20743,20744,20746,12350,10218,20747,20748,18508,17733,20749,20750,20751,20752,20753,20754,20755,20756,20757,1227,20758,20759,20760,20761,20762,20763,20764,12081,12096,28922,28923,28924,28925,28926,28931,28932,28942,28943,28946,28947,37859,28949,28955,28958,28961,34876,33671,6790,33677,27669,29579,17288,13442,18883], -"signature-v4", -[2,13548,13557], -[2,13548,553], -[2,9196,1732], -[1,2343,13570], -"@aws-", -"amplify/amplify-appsync-simulator", -[2,13562,13563], -"construct", -"constructs", -[3,3706,25], -[2,13567,2618], -"projen", -[0,0,13575,13576,34352], -"appsync", -"gql", -"lambda", -"xray", -[0,10615,1159,1414,1177,2675,2899,4042], -[0,2090,2098,4202,7017,6771,1413,1687], -[1,2343,13578], -[0,13582,9025,2514,2487], -[2,1137,3007], -"crc32", -"buffer-crc32", -[0,1676,1833,1869,3440,3494,4266], -"readdir-glob", -"zip-stream", -[1,2343,13588], -"archiver-", -"jsdoc-t", -[0,13592,13593,13594,2523], -"jsdoc-theme", -[2,13586,13589], -[2,4279,4440], -[0,3537,13765], -[0,1906,1166,1700,4481,4400], -[0,2325,7204,20164,2100,7193], -[1,2343,13596], -[0,13598,13599,13600,2537], -[2,27994,27995], -[0,20786,20789], -[0,1166,17450,4400,4481,1906], -[0,2100,2104,2105,7076,6614,6605,2090,7193,3529,3383,814,5933,7029,6857,7204,4647,6821,3403], -[1,2343,13602], -[0,13603,13604,13605,2537], -[0,20796,2743,3170,20797], -[0,1177,1889,1954,2022,20801,2899,3369,3421,814], -[0,2090,2100,2105,7076,2070,3529,13017,814,7193], -[1,2343,13607], -[0,13608,13620,13621,2537], -[0,13612,20819,20822,20824,20825,20826,20828,20829,20831,20833,20836,20837,20839,20840,20841,12153,20843,20846,20847,20848,20849,20850,20851,20852,20853,20857,20858,20859], -[2,6739,1228], -"-unscopables", -[2,7065,13610], -"@firebase/ai", -"@es-shims/api", -"@ljharb/eslint-config", -"cover", -"covert", -"has-s", -"trict-mode", -[2,13617,13618], -[0,2323,4042,91,2496,2510,4077,10615,4060,811,4071,4076,816], -[0,5165,18035,20862,2109,20863,13901,6681,20845], -[1,2343,13623], -[0,13624,13627,13628,2399], -[0,20870,20848,20872,4874,20873,2069,20917,2863,20874,3313,3348], -"arrayify", -"ensure", -[0,20883,20839,20840,20885,603,20886,4856,9417,20888,8264,4870,7892,6503,10410,16936,20889,6513,6512,7819,1009,1011,1306,1429,1431,6522,1437,1455,1700,1177,20892,2323,2390,2409,2529,20895,1209,3183,2899,3261,3297,3400,3421,705,4008,4089,4193,4196,4474,91,4747], -[0,20897,18035,20862,20863,5165], -[1,2343,13630], -[0,13632,0,13634,2399], -"is-n", -[0,32557,32562,12207,20745,20904,20905,8998,29421,1079,1091,1092,1137,20908,1364,1457,20909,1483,1511,1525,1543,1594,1610,1615,1645,20911,20912,20913,2026,2098,2139,2151,2163,20914,2070,20917,2687,2822,2863,2975,20918,1209,12209,3127,14774,3171,3181,3237,3310,3445,3467,6042,3519,30172,30174,3560,3730,20921,1153,4135,20922,20924,20925,20928,18052,4449,20931,20934,20935,3348,4709,4715,4729,4745,4763,33069], -"is-nan", -[0,20937,200,20938,6599,20940,2109,20863,14609,20943], -"object-is", -[1,2343,13637], -[0,13639,13640,13641,34352], -"array-fill", -[0,20948,1437,1707,20949,20951,1997], -[0,4255], -[0,4051,3383], -[1,2343,13643], -[0,13644,13645,2514,2523], -[0,4864,9129,20959,2151,20960,4648], -[0,4874,4039,4384,91], -[1,2343,13647], -[0,0,13640,13649,2523], -"fn.name", -[0,2117,1781,3033,20966,4237,3048,3639], -[1,2343,13654], -"is-buffer", -"propget", -"pruddy-error", -[0,13655,13658,13659,2523], -[0,1676,1865,2151,1209,4449], -"shouldjs", -"unit testing", -[0,2899,4039,4255], -[0,18503], -[1,2343,13661], -[0,0,13670,13675,2537], -[2,1176,3178], -[2,1218,5702], -[3,1267,18], -[2,13664,6836], -[3,1955,17], -"fer-arrow", -[2,13666,13667], -"native-", -[0,53,78,14167,87,20978,4864,4865,5087,11301,4874,19802,1245,1457,1596,2151,2070,1192,1894,4039,4042,4045,20981,20983,4075,4072,4468,4474,4484,91], -"promise-only", -[2,13669,13671], -[3,4064,15], -[2,13673,2306], -[0,5284,9302,9026,1666,6901,3811,20986], -"jstz", -[1,2343,19602], -[0,20991,1437,2087,2727,2983,3368,15245,3741,4135,4247,20992,13914], -[0,1429,1596,1177,2759,20995,2899,3697,3752,4193], -[3,8155,10], -[0,20997,20998,8891,20999,2978,4166,16159,21000,3005,12804,21003,21004,2703,6599,14692], -"listen", -[1,2343,13684], -[0,0,0,13685,2537], -[0,13326,200,20052,17180,2124,3497,998,6591,4354,16790,5284,676,21009], -[1,2343,13690], -[2,13689,25388], -"then-sleep", -[3,20626,11], -[0,13691,13692,13699,2443], -[0,6372,21020,21016,3561,4383], -[0,53,87,6371,28962,28963,1009,1011,1165,1195,1587,1593,1610,1628,1630,1637,1177,1895,1955,21023,2092,12278,3177,3400,1894,21024,9348,4172,4230,4307,4409,4469,91,2924,4677,4681,21026,4749], -[2,54,202], -"@pika/pack", -"pika-plugin-build-web-babel", -[3,13695,12], -"ts-types", -[2,13696,13697], -[0,2128,91,5284,2924,1936,1623,12951,21028,4380,21029,21031,21033,21034,21036,21029,21037,21038,21039,21040,21042,21044,21047,21050,21052,21054,21057,21060,1177,1894,17526,1999,5811], -[1,2343,13701], -[0,13702,13703,13704,2537], -[0,1149,4707], -[0,3421,1776,2899,4170], -[0,21067], -"ttc", -[1,2343,13707], -[0,13708,13710,13714,2537], -[0,21072,2081], -"libnpx", -[0,53,1195,18228,1700,2323,2338,2396,2409,2494,2541,2700,1192,2780,3427,89,21074,3824,4603,2924,18237], -"node-cleanup", -[2,3382,6698], -[2,2103,9478], -[0,2130,89,3497,21077], -[1,2343,13717], -"audit", -[0,0,13718,13719,2537], -[0,1537,1177,2026,21082,2899,3421], -[0,27,2671,1002,7436,5576,7426,6435], -[1,2343,13724], -"parse-", -[3,9577,10], -[2,13721,13722], -[0,0,0,13726,34352], -[2,1199,4037], -[0,2414,7176,8220,1017,2414,1367], -[1,2343,13731], -"automatic", -[3,1446,9], -"commits", -[0,13732,13733,2514,2443], -[0,18986], -[0,5517,13614,23237,27570,19325,1159,1177,3410,3421,4389], -[1,2343,13737], -"detect", -"detective", -[0,13740,13741,13742,2443], -"detective-es6", -"sync-exec", -[0,1149,21097,1496,21098,1512,3188,4709,21099,21100,3722,1543,2015,3427,21102], -[0,1429,4616,2899,1177,3220,21104,705,1894,21106,1895,1955], -[0,200,21110,21111,2041], -[1,2343,13744], -[0,13745,13747,13748,4139], -[0,51,1437,1457,1595,1699,2151,3144,3181,21118,4121,4135,4388], -"fraction.js", -[0,5467,16607,21120,6065,16608,16612,19861,21122,4864,5087,8818,9129,6541,4874,20959,5254,1009,1011,1529,1610,1177,1938,1954,1955,10619,2675,1192,21124,2784,2845,21125,2990,3203,1894,4039,4131,4294,4468,91,2924], -[0,2924,1932,91,21127,4469,2924,20050,2062], -[1,2343,13750], -[0,13751,13752,13761,2523], -[0,13922,1437,1457,1209,3170,3181,814,4388], -[0,21134,16933,4870,8778,9129,4874,5251,4891,1429,1628,1177,2675,2759,2990,2899,3203,3210,1894,4039,4193,4469,4487,4490,91,188,4629,4634,4645,2924], -"@vercel/nft", -"arrgv", -"site", -"sites", -"callsites", -"cbor", -"chunkd", -"ci-parallel-vars", -[0,2924,1932,91,998,16790,9654,20050,2062,6887,4469,1167,21136,1464], -[1,2343,13766], -"code-excerpt", -"path-prefix", -[2,9480,13764], -[0,13776,13779,2514,2487], -"concordance", -"curr", -"ently-unhandled", -[2,13768,13769], -"emitter", -"emittery", -"ignore-", -"by-default", -[2,13773,13774], -[0,21141,21144,13917,2571,3173], -"matcher", -[2,9477,1541], -[0,13614,1159,1389,21146,1596,1615,1177,21147,21148,2141,2708,21152,2759,26259,21153,14133,3697,3758,705,4039,4135,4389], -"resolve-cwd", -[2,4250,594], -[1,2343,13783], -[0,13785,13787,13790,2537], -"supertap", -[0,3441,21158,24987], -"temp-dir", -[0,2934,3421,1192,1177,4042,2026,1894,4342,21163,1938,5328,1895,1955,811,21165,1881,816,21161], -[3,5328,14], -[2,13788,2190], -[0,15237,1669,2382,3767,21167,1781,21168,2090], -"🦄", -[3,1540,10], -"yield", -[1,2343,13797], -"observable", -"observables", -[0,13798,13799,13800,34352], -[0,5540,1699,2609,1209,3021,21174,21175,4484], -[0,972,4870,4880,4883,11322,21179,89,3824,21180,91,6482], -[0,2144,1669,25,89,3824,582,21182,7020,21185,7020,21188,21189], -[1,2343,13803], -"webpack-log", -[0,0,13806,13807,2487], -[2,3599,1469], -"ps-node", -[0,2899,1177,2759,1317,1311,1954,1938,1958,1903,1948,1970], -[0,2145,27,21195,2325], -[1,2343,13809], -[0,13810,13813,13815,2537], -[0,1437,6473,4290], -"ieee754", -"jmespath", -[0,1175,1178,1195,1225,1268,1177,1916,2022,1192,3150,2924], -"vector", -[0,17460,2656,2924,1932], -"test-vectors", -[2,13549,13816], -"insert-module-globals", -[1,2343,13820], -[0,13821,13822,13823,2537], -[0,2822], -[0,1377,21210,1596,2759,4255,4389,4770], -[0,4745,21214,21216], -"memoizee", -"@deque/dot", -[1,2343,13844], -"colorjs.io", -"-regex", -"emoji-regex", -"abel", -"grunt-babel", -"revalidator", -"sri-toolbox", -[2,4149,1852], -"ytesize", -[2,2237,13835], -[2,6654,3733], -[2,1463,13589], -[2,1632,3679], -[3,8654,10], -"webdriverjs", -[2,13840,13841], -"browser-", -[0,13845,13851,13853,4139], -[0,2215,2859,21224], -[3,1566,14], -"ommits-parser", -[2,13846,13847], -"-no-only", -[2,1951,13849], -[0,21226,13305,3183,2899,3421,3752,21228,4255], -"Accessibility", -[0,2150,2090,6771,1585,7204,2473,3188,7148,7149,6899,1781,3917,6033,2473,6865,7293,4453,7147,2585,6811,7004,1862], -[1,2343,13855], -[0,13856,13858,13861,2537], -[0,3181], -"proxy-", -[0,4856,4864,6503,4874,1429,2151,2759,2899,3421,1894,3714,21237,4474,91], -"from-env", -[2,13857,13859], -[0,2150,6771], -"multi-", -[1,2343,13877], -"entry", -"multi-entry", -[2,812,13865], -[2,12621,3733], -"dev-null", -"data-node", -[2,1669,13869], -[2,11941,12942], -[3,6387,14], -[2,13872,6662], -[2,1160,11052], -[2,4049,13874], -[3,4048,16], -[0,13883,13884,13885,2537], -"ndle-size", -[2,13876,13878], -[2,6528,3069], -[3,13134,15], -[2,13881,1149], -[0,21243,2151,3261,21246], -[0,4864,6507,2899,1863,4085,1362,4706,3760], -[0,1862,2150,2090,6771], -[1,2343,13887], -[0,0,13893,13900,2523], -[3,1391,11], -[2,13888,3171], -"edm-parser", -[2,2842,13890], -"md5.js", -[0,640], -"batchflow", -"factor-bundle", -"ink-docstrap", -"karma-e", -"nv-preprocessor", -[2,13897,13898], -[0,2154,16718], -"storage", -[1,2343,13903], -[0,13904,13905,2514,2443], -[0,3188,4039,2713,2215], -[0,4384,4255], -[1,2343,13907], -[0,13908,0,13910,4139], -[0,4740,3923], -"output-", -[0,2156,5576,16410], -[1,2343,13915], -"file-sync", -[2,13909,13912], -"v8flags", -[0,0,13916,13918,2523], -[0,13614,1158,1159,1177,3421,4103,4389], -"es-set-tostringtag", -[0,3046,1213,1925,1460,5746,7298], -[1,2343,13926], -"babel-co", -"de-frame", -[2,13920,13921], -[3,1184,12], -[2,13923,591], -"babel-m", -[0,0,13929,13931,2537], -"essages", -[2,13925,13927], -[0,48,53,68,78,5712,87,92,192,5467,21276,5583,816,6373,21279,21280,21281,21285,19464,21287,21288,1195,1177,1895,2675,21290,1894,4005,4042,4057,4257,4072,91,1984,19469,21294], -[2,1185,5190], -[0,2163,7193,21296], -[1,2343,13933], -[0,0,13934,13935,2443], -[0,19344,5366,1009,1011,842,1317,1177,1903,1915,1938,1953,1958,2675,4493], -[0,17218,5122,27,36,21302,5995,5130], -[2,1884,1172], -[1,2343,13938], -[0,0,0,13939,4139], -[0,2163,7193,7131,21307,21309], -[1,2343,13941], -[0,13943,13944,13945,2487], -"trim-right", -[0,21315], -[0,1149,2228,21317,2240,2273,2277,4039,1899], -[0,2282,2070], -[1,2343,13947], -[0,0,13949,2514,2487], -"try-resolve", -[0,91,4874], -[1,2343,13951], -[0,13952,13953,13954,2523], -[0,1437,4761,4716,4756], -[0,2228,2239,21329,21328,3006,4547,2273,2290], -[0,4756,8632,5130,4627,6400,1896,1098], -[1,2343,13956], -[0,13957,13958,13959,2523], -[0,1437,4207,4761,1209,16442,4756,4547], -[0,3261,1797,1429,1370,2899,4193,1177,3188,1362,2759,1525,4196,1615,2820,1431,3938,3202], -[0,4756,1098,2323,21337,21339,1367,1103,21340,2278,695,5194,1172,21341,91,1509,2437,5357,2924,1177], -[1,2343,13962], -[2,1262,1192], -[0,13963,13964,13965,2537], -[0,2212,2070,4761,1541,1209,1474,21350,21348,4756], -[0,1797,1177,2765,2151,21329,21328,1938,21352], -[0,4756,8632,4967,1896,2171,4627,13017,21354], -[1,2343,13967], -[0,0,13968,13969,2523], -[0,4874,1177,1895,1955,1958,1894,4384,91], -[0,4446,21360,6925], -[3,13725,15], -[1,2343,13972], -[0,0,13973,13974,2399], -[0,5536,4874,16480,26265,1894,4172,21365,91,1984], -[0,5701,1179,7253,21367,21369,6564,3053,6695], -[1,2343,13976], -[0,0,13977,2514,2443], -[0,48,53,87,92,6061,6063,16608,5087,4874,1009,1011,21377,21380,1178,1193,1195,19254,1177,1895,1915,1922,1938,1955,1959,1961,1966,1982,2675,21385,1192,2990,1894,4039,4131,21388,91,2924,4677], -[1,2343,13979], -[0,0,13986,2514,2537], -[3,1235,24], -"xport-extensions", -[2,13980,13981], -[2,1262,3696], -[3,1566,13], -[2,13984,2289], -[0,21393,21395,21396,21397,3421], -".exports", -[2,1237,13987], -[1,2343,13990], -[0,0,8002,13991,2523], -[0,1709,2100,139,3560,6058,21402,21404,1544,3445,11995,21405,20529,3778,21406,21407], -[1,2343,13993], -[0,0,13999,14001,2537], -"-js-shims", -[2,1259,13994], -"place-", -[2,13996,3427], -[2,1252,13997], -[0,4874,1702,1906], -"dynamic", -[0,21413,2184,20061,5614,1398,3101,3729,3917], -[1,2343,14003], -[0,14004,14005,14006,34352], -[0,21418,2753], -[0,4874,1166,21420,21423,20925,4481,1906], -[0,3038,3101,1862,5614,1871,2585,1398,3917,2382,6613,7017,7255,3048,5614], -[1,2343,14008], -[0,14009,0,14010,2537], -[0,21430], -[0,2191,3038,91,2190,21432], -"@umijs/test", -[2,1262,12445], -[3,3909,10], -[2,14013,5403], -[1,2343,14016], -[0,0,14017,14018,2523], -[0,4874,1009,1011,17930,1177,21439,1895,1955,17931,21442,1894,17934,4508,91,17936], -[0,21444,21447,21450,21452,21455,21456,2192,21457,21458,16718,21459,202,5490,553,91], -[1,2343,14026], -"nyc-config", -[2,3614,14020], -[2,8696,14021], -"instrument", -[2,11936,14023], -[2,1382,6521], -[0,14028,14030,14031,4139], -"pmock", -[0,1149,2205,2151,1525,18145,2102,21466], -[2,14023,5218], -[0,4449,1429,2899,4193,1177,21468,21470], -[0,3358,2193,2195], -[1,2343,14033], -[0,14036,14043,14046,2523], -[2,9477,1213], -[2,4013,14034], -[0,7076,10420,21476,21477,3505,16142], -"-bind", -[2,3046,14037], -[2,69,14038], -[3,8232,20], -[2,14040,6859], -[2,5316,7162], -[0,1178,1429,21480,1503,1527,1652,1177,21482,1922,1938,1951,2899,3203,3421,3752,4131,4193,4196,21486,4585], -"ompat", -"lodash-compat", -[0,3358,582,1564], -"cherry-pick", -[1,2343,14049], -[0,0,14050,14051,4139], -[0,13693,87,21495,21498,21499,8850,816,6373,10615,10895,1429,1177,1903,1938,1954,1958,2297,2878,2881,2886,2895,2900,2904,2910,2912,2918,18260,2899,4042,6390,2278,4193,4196], -[0,2195,10039,4967,4627], -[2,13920,686], -[2,2103,14052], -[1,2343,14055], -[0,14058,14060,2514,2537], -"resolver", -"rename", -[0,3181,21505,21507], -"mapping", -[0,4874,668,3144,3188,1894,4039,4384,4483,4508], -[1,2343,14062], -[0,14063,14066,14067,34352], -[0,2743], -"ester", -[2,12187,14064], -[0,1177,1889,2022,2899,3421], -[0,2070,5933,4301,3403,21519,7204,1299,21520], -[1,2343,14069], -[0,14070,9264,2514,4139], -[0,21526,3729], -[1,2343,14072], -[0,0,14073,14074,2537], -[0,22839,1166,1448,1939,2182,26260,17269,3401,3471,3758,4167,4481,4507,1906], -[0,2203,2202,7014,6436,6437,2272,1177,6640], -[1,2343,14081], -"remap-", -[2,14076,1223], -[2,1185,14077], -[3,13663,26], -[2,14079,5746], -[0,14082,14083,14084,4139], -[0,20033,2071,2687,17450,4207,20789], -[0,4874,1166,1317,21539,4400,4481,1906], -[0,12101,4552,17455,18132,1586,17462,7131,2100,21541,17453,2150,2070,21543,21544,17461,3529,13777,3181,3250,15294,18104,13017,11601,100,614,6435,21520,21545,1862,16774,3358], -[3,1184,14], -[2,14085,5789], -[2,1218,1229], -[1,2343,14089], -[0,14090,14091,14094,2443], -[0,1676,1615,21552,21550], -[0,1149], -[3,1217,21], -[2,14092,5610], -[0,11812,21555,158,21556,2692,2206,6270,17539,3797], -[1,2343,14096], -[0,14097,14098,14100,2537], -[0,3310,14231,4484], -[0,4874,5542,1009,1011,1177,21564,1938,1953,1958,1894,4508,91], -"chunk-data", -[0,21566,21567,21568,15473,17623,21571,5194,10906,2207,21572,21573,14692,21574,6355,21576,21577,21578,21579,21580,21581,21582,21583,5995,21584,21585,21586,21587], -[1,2343,14102], -[0,14103,14105,14108,34352], -[0,16485,21668], -"strict-", -[0,107,4874,1009,1011,21594,1177,1881,1883,1938,21597,20917,3297,1531,91,15822,1984], -"strict-mode", -[2,1226,14106], -[0,21600,21603,1885,21604,21599,21605,21606,5592,2211,21607,21608,21611], -[2,1218,77], -[1,2343,14111], -[0,14112,14113,14114,4139], -[0,20917,21616], -[0,21619,6503,21620,21621,4874,21623,15600,9725,11305,6513,6520,21625,21626,1414,1503,1610,2020,20914,2321,21627,1776,29342,29343,21630,2899,15221,3275,3297,3416,3445,3479,6332,1894,3752,4039,4153,4193,4449,91,4748], -[0,1885,5592,21632,5576,21633], -[1,2343,14116], -[0,14117,14118,14119,2523], -[0,21642,21651,21645,21647,21650,21649,16511,2928,21641,21638,21639,4507], -[0,21662,13789,826,5366,6494,4874,21654,14731,16936,6513,6515,1166,1170,1317,1362,1364,1414,14099,21656,21663,1701,1702,2024,2026,2139,13870,2188,3297,3310,3377,3477,21653,3532,29457,3923,705,4193,21657,4400,21659,4454,4494,91,1906], -[0,27,2671,13333,3038,2212,1002,12831,705,2869,7085,7289,1612,11995,11996,16518,21665,27778,27408,21666,21667,1170,4339,3310,21668], -[1,2343,14124], -"-react-jsx", -[2,9381,14121], -[2,1185,14122], -[0,0,14125,14126,2537], -[0,2323,4207,4042,1637,3471,3561,21689,21681,3416,3758,4320,53,1165,3678,2650,21688,87,21684,21679,5583,10615,6373,16912], -[0,21691,4967,9204,1283], -[1,2343,14134], -[2,88,2124], -[3,3872,10], -[2,14129,553], -[2,5237,14130], -[2,1199,14131], -"pkgfiles", -[0,0,14135,14136,2537], -[0,2702,3188,4039,4384], -[0,2150,1237,21697,1153,21699,3768,1851,2656,6737,21700,21701,21702,21703,21704], -"minification", -[1,2343,14140], -"propTypes", -[0,0,0,14141,4139], -[0,2220,21715], -[1,2343,14143], -[0,2513,14146,2514,2523], -[3,3957,12], -[2,14144,353], -[0,4856,6503,4874,1429,2220,2899,4039,4042,4071,4232,21721,91], -[1,2343,14148], -[0,14149,0,2514,34352], -[0,5528,4484], -[1,2343,14151], -[0,14152,14153,14154,4139], -[0,2822,20273,21731,21732], -[0,21734,20269,1509,21735,2053,2149,2398,3183,2899,4452,4597,6033], -[0,21738,1507,1506,2382,1739,1745,7682,21740,4965,2149,9339,8623,1179,2193,12981,5284,5352,676,6671,1783,9338,1644,57,7119,13755,2947,1283,4452,4745,7651], -[1,2343,14156], -[0,14165,14171,2514,34352], -"numer", -"ic-separator", -[2,14157,14158], -[2,69,14159], -[3,5835,33], -"mutators", -[2,14161,14162], -[3,10720,33], -[0,14393,21746,3025,10420,3263,3747], -"atch-binding", -[2,14164,14166], -[3,14160,25], -"llish-coalescing-operator", -[2,14168,14169], -[0,1364,21748,2026,21749,2759,1209,3183,3313,21752], -[1,2343,14173], -[0,14174,14175,14176,2443], -[0,2021,2070,3368,2822,2240,3181,1672,2685,2107,2015,21761,21763,21759], -[0,21765,4431,21770,2291,21768,2283,2277], -[0,5957,1149,200,3178,2280,6147,1209,2275,1973,2907,2276,36,21772,8632,7048,2763,4990], -[3,9676,14], -"heck-", -"es2015-", -"constant", -"constants", -[2,14179,14181], -[2,14178,14182], -[2,14177,14183], -"function-", -"comma", -"commas", -[2,14185,14187], -[2,10038,14188], -[2,7174,14189], -[2,1218,14190], -[2,1236,5742], -[3,1235,40], -"ed-functions", -[2,14193,14194], -[2,1236,5256], -[3,14196,31], -[2,14197,5763], -[2,1236,5765], -[3,14199,31], -[2,14200,5770], -[1,2343,14225], -"for-of", -[2,1236,14203], -[3,14204,31], -[2,14205,5789], -[2,1236,5796], -[3,1240,38], -[2,14208,5808], -[2,14208,4376], -[2,14208,5811], -[2,3425,4340], -[2,1236,14212], -[2,1236,5639], -[2,1236,5845], -[3,14215,31], -[2,14216,5849], -[2,14216,5851], -[3,1244,31], -[2,14219,5855], -[2,5857,1108], -[2,1236,14221], -[3,13982,27], -[2,14223,5780], -[0,14228,14229,14230,2523], -"to-chromium", -[2,1807,14226], -[0,2633], -[0,2228,2240,2263,2247,2253,2273,2277,2281,2320,2258], -[0,21779,1098,1283,5354,5614], -"gfsl", -[1,2343,14233], -[0,0,14234,14235,2537], -[0,2228,2307,2239,2316,1429], -[0,21779], -[1,2343,14244], -[2,1262,2124], -[2,1249,5878], -"-source", -[2,1248,14239], -[3,14240,34], -"elf", -[2,14241,14242], -[0,14245,14246,14247,34352], -[0,1149,1389,21791,2070,1209,814,4650], -[0,2228,2240,2247,2273,2899,4193], -[0,21779,1389,2228], -[3,5700,31], -[2,14248,3164], -[1,2343,14251], -[0,14252,14253,14235,2487], -[0,4135], -[0,2228,2234,2247,2273,2277,2285,2307,3006], -[3,1233,24], -"o-expressions", -[2,14254,14255], -[2,1226,14038], -[1,2343,14259], -[0,14260,14261,2514,2537], -[0,3368,21804,13914,2727,21759], -[0,2228,2273], -[3,1230,29], -"or-call", -[2,13565,14263], -[2,14262,14264], -[1,2343,14267], -[0,14268,14269,14271,2523], -[0,1149,1144,21810,2709], -[0,1906,2228,3363,2240,1615,3505,21814,4351,2316,2247,2283], -[3,1233,33], -[0,21779,13792,12804,21820,6707,6887,3514,6681,2062,21821], -[1,2343,14273], -[0,14274,14277,14278,2399], -[0,1149,4039], -[3,1225,29], -[2,14275,5747], -[0,2228,21468,2273,2271,2277], -[0,21779,4050,4051,7293,6865,1700,6790,17459,4039], -[1,2343,14280], -[0,14281,14283,14284,4139], -[0,1149,21834,1664,21420,4449,4707], -"home-or-tmp", -[0,2228,2240,2247,2271,2273,2277,2314], -[0,21779,21837,4329,2278,1623,7234,7121,590], -[1,2343,14286], -[0,14287,14288,14235,2537], -[0,1437,4227], -[0,2228,2247,2273,2271,2277], -[1,2343,14290], -[0,14291,14292,14293,2537], -[0,3445,1149,3237,1544,13399,4150,4151,16511,21847], -[0,2228,2273,2271,2277], -[0,21779,36,1544,27], -[1,2343,14295], -[0,14296,14297,14235,2537], -[0,1437,21855], -[0,2228,2240,2247,2271,2273,2277], -[1,2343,14299], -[0,14300,14302,14303,2523], -[0,1437,21861,1209,4300], -"esutils", -[0,2228,2247,2271,2273,2277], -[0,21779,1623,671,21861], -[1,2343,14305], -[0,14306,14302,14312,4139], -[0,1437,1462,21867], -"nv-inline", -[2,4690,14307], -[2,1226,14308], -"zipobject", -[2,3024,14310], -[0,21779,21869,1623,590,592,5376,3178,15215], -[1,2343,14314], -[0,14315,14288,14321,2537], -[0,1437,3714,2633], -[3,14257,24], -[2,9428,5238], -[2,14316,14317], -"9.0.0", -[2,5857,14319], -[0,21779,1936,2262,3178,15215,6707], -[1,2343,14323], -[0,14324,14325,14326,4139], -[0,1437,2267,3478,3545,3714,18045,18047,18050,18051], -[0,1166,1701,2228,1906], -[0,21779,15215,20639,158,11807,21881,20637,3178,18048,8221], -[1,2343,14328], -[0,14329,14261,2514,2523], -[0,17523], -[1,2343,14331], -[0,14332,14335,14235,4139], -[0,1437,21890,2272], -"@purtuga/esm-webpack-plugin", -[2,4807,1155], -[0,2228,2271,2277], -"browserstack", -[2,13283,14336], -[2,13283,3199], -"otpauth", -[1,2343,14341], -[0,14342,14345,14235,2487], -[0,695,1149,1437,1209], -"-as-a-service", -[2,5995,14343], -[0,2228,2247,2273,21898,2271,2277], -[1,2343,14347], -[0,14348,14349,14350,2487], -[0,21903], -[0,2228,2247,2271,2273,4384], -[0,21779,2276,1973,8791], -[1,2343,14353], -[2,2235,1283], -[0,14358,14302,14359,4139], -"codec", -"decoder", -"encoder", -"base64", -[0,1149,1437,1615,1664,4707], -[0,21779,4329,2278,1623,7234,7121,590], -[1,2343,14361], -[0,14362,14288,14235,2537], -[0,1437,21867,21915,4535], -[1,2343,14364], -[0,14365,14366,14367,2487], -[0,2164,1149,1209,4438], -[0,2228,2240,2293,4547,2273,2271,2277], -[0,21779,2282,3000], -[1,2343,14369], -[0,14370,14371,14376,2537], -[0,1437,1537,1566,3545,3760], -[0,2228,2239,2240,2247,2258,2273,2277,2290,21929,21930,2293,2307,3006], -"basic", -"orization", -[2,1303,14373], -"basicauth", -[0,2228,21779,1566,16094,13729,3073], -[1,2343,14378], -[0,14379,14381,14382,2399], -[0,1437,13985,3545], -[2,6915,5697], -[0,2228,2239,2240,2247,2273,2277,21929,21942,21930,2293,2307,3006], -[0,2228,21779,13985,2195,21944,3979,21945,1566,16094,13729,3073], -[1,2343,14384], -[0,14385,14389,14390,2523], -[0,1437,1177], -"tructure", -"ministructure", -"orange sms", -[0,442,2228,2240,2314], -[0,21779,1177,671,2649,11937], -[1,2343,14392], -[0,14394,14395,14396,2537], -"@mapbox/node-pre-gyp", -[0,21890,2292,1209,21956], -[0,2228,2273,2277,3006,4436], -[0,21779,2292,19271,16790], -[1,2343,14398], -[0,14399,14400,14401,4139], -[0,1615,1776], -[0,2228,2247,2277,2291,13896,3006], -[0,21779,2228,1745,2295,1776,18011], -[1,2343,14403], -[0,6203,14409,14410,2443], -"utfx", -"testjs", -"metascript", -"closure", -[2,14407,4643], -[0,192,21970,5467,6061,6063,16608,1177,1903,1938,1954,1958,1970,2025,2228,2239,2283,2285,2290,2291,2307,2675,2297,2881,2895,2900,3006,2899,4131], -[0,21779,2297,2228,1973,2275,8791,21972], -[1,2343,14412], -[0,14414,14415,14420,2399], -"pomelo-logger", -[0,21890,3188], -[0,1429,1506,2228,2240,21980,2247,2258,2273,21929,21982,21930,21984,2899,4039], -"di", -"IoC", -"AOP", -"injection", -[0,21779,2899,1973], -"consistent", -"hot reload", -[2,6399,5995], -[1,2343,14434], -"able codes", -[2,6578,14425], -[3,7191,11], -[2,14427,14419], -"hronous script loading", -[2,1149,14429], -"magic", -", self-described javaScript objects", -[2,14431,14432], -[0,14274,14435,14436,2399], -[0,1429,2228,21991,2240,2247,2273,2283,3203,4449,4727], -[0,1586,2228,21779,2301], -[1,2343,14439], -"beautify", -[0,14440,14441,14442,2443], -[0,4135,6472,4707], -[0,1429,2240,2273,2283,2300,22000,22002,3006,2899,3752,4436], -[0,21779,9044,22005,15844,22008,22009,6667,22011,1851,4649,13728], -"art-near-room-catch", -"blanket-line", -"born-greatly-explain3", -"bring-water-silence", -"brush-bigger-afternoon0", -"e-meet-war", -[2,11308,14448], -[2,6922,14449], -"compare-", -"breeze-mad2", -[2,14451,14452], -"did-", -"strai", -"ght-sister-sail", -[2,14455,14456], -[2,14454,14457], -"excitement-tonight-dead", -"gain-pleasant-prepare", -"industrial-public-immediately-until", -"is-str", -"aight-web3-attack", -[2,14462,14463], -"known-", -"wet-thirty-gave", -[2,14465,14466], -"-private-thee6", -[2,13682,14468], -[1,2343,14493], -"mainly-cent", -"ain-quarter-sit8", -[2,2944,14472], -"mouse-bat-web3-present", -"need", -"s-supper-anything", -[2,14475,14476], -"percent-impossible-score", -"rocket-location-calm-valley", -"seldom-fire-web3-running", -"shad", -"e-swim-shells1", -[2,14481,14482], -"spider-melted-chemical", -"stre", -"tch-onto-driver7", -[2,14485,14486], -"dream-supply5", -[2,11072,14488], -"-invented-girl-jungle", -[2,4990,14490], -"we-hunt-process", -[0,0,14494,2514,2399], -[0,2228,2239], -"automobile7", -[2,4654,14495], -"whether-dangerous", -[1,2343,14499], -[0,0,14500,14501,2523], -[0,2228,2240,2247,2277,2278,1906], -[0,21779,1623,2278,4329,590,7234,4358,22022], -"ansicolors", -"global-", -[2,14503,6666], -[2,2103,14504], -[2,2687,11601], -[3,5510,9], -[2,14507,3101], -"script-", -"inject", -"injector", -[2,14509,14511], -[1,2343,14516], -"dotpathlookup", -"jsl", -[0,14519,14520,14521,2537], -"httpserver", -[2,2869,14517], -[0,1512,1209,3760,22027,22031,12826], -[0,2228,2256,2273,2283,2293,22035,3003,1698,20001], -[0,21779,2228,12826,1973,2765,2899,2907,22037], -[1,2343,14523], -[0,14524,14525,14526,2443], -[0,1437,3404,4294], -[0,2228,2240,1906], -[0,21779,4166,1523,8429,2978,1614,1451,3729,200], -"docdown", -[1,2343,14530], -"qunit-extras", -[0,7923,14531,14420,34352], -[0,2228,2273,2899], -[1,2343,14533], -[0,14534,14535,14536,2443], -[0,1149,22054,22057,4545,22058], -[0,1177,22062,22064,22066,22068,22071,22072,2228,2240,2302,2899,4039,4165], -[0,2228,21779,22074,158,22075,1623,22057,16697], -[1,2343,14538], -[0,14539,14540,14541,2537], -[0,1437,1676,1209,3505], -[0,2228,3188,4039,2240,2293,22081,2273], -[0,21779,2319,8635,1936,1623,6707], -[1,2343,14543], -[0,14549,14551,14565,2523], -"@beyond-js/specifier-parser", -[3,14544,11], -[2,14545,2150], -"bee", -[2,14545,14547], -[0,442,1009,1011,1437,1177,1895,1953,1955,2020,2720,2856,3157,3275,1894,4523,4728], -"tml", -[0,22088,21122,5601,4864,4866,22089,6503,21621,4874,6513,6520,22092,1414,1615,2151,22093,21627,2899,4193,4449,91], -"ansi-to-html", -"concat-", -"maps", -"-sourcemaps", -[2,5056,14555], -[2,14553,14556], -"json-format", -[3,6477,9], -"ackage-", -"ackage-path", -[2,14559,14561], -"uimport", -[2,14503,5260], -[0,91,9654,4525,1885], -"universal", -" javascript", -[2,14566,14567], -"universal ", -[2,14569,91], -[3,2758,10], -[2,14571,14567], -[3,14572,11], -[2,14573,91], -"sigle page", -"spa", -"modul", -"ar development", -[2,14577,14578], -[3,11615,13], -" frontend", -[2,3166,14581], -"micros", -[2,14583,8920], -"micro ", -"services", -[2,14585,14586], -"hot ", -" replacement", -[2,1237,14589], -[2,14588,14590], -"ssr", -" side rendering", -[2,36,14593], -" packager", -[2,91,14595], -"JAMStack", -[1,2343,14599], -[0,0,14610,14611,2523], -"real time", -[2,7519,5130], -"ssr react framework", -[2,8589,5130], -"ssr ", -[2,14604,14603], -" framework", -[2,3709,14606], -[2,14604,14607], -"websockets", -[0,22099,8719,842,16145,22100,5087,4874,22102,9240,1177,1192,3313,1894,4039,4342,91], -[0,2322,5122,5130,6710,27,5592,5995], -[1,2343,14613], -[0,14618,14623,14624,2487], -"check-", -"check-types", -"hoopy", -"tryer", -[0,22110,21681,22109,4600], -"please-", -"release-me", -[2,14619,14620], -"spooks", -[0,1177,1889,1954,2022,3188,2899,3421,4039], -[0,6147,3101,623,7048,4990,14932,13441,22114,12804,22115], -[1,2343,14627], -"streamify", -[0,14630,14631,14632,2537], -"serialise", -[3,14430,12], -[0,2367,22122,2409,2835,3067,3102,19984,4431], -[0,4597], -[0,18444,2323,1098,12074,6113,22126,22127], -[1,2343,14645], -"arbitrary", -"precision", -"arithmetic", -"big", -"decimal", -"float", -"biginteger", -"bigdecimal", -[3,1325,9], -"bigint", -"bignum", -[0,14646,14647,14648,2537], -[0,18473,692,2012,2390,2494,22133,2543,3188,2072,3730,18528,4039,4135,1241,4597,4600], -[0,2348,2899], -[0,18444,16179,4166,22137,1804,2195], -"uri-", -[1,2343,14653], -"uri-to-path", -[2,2093,14651], -[0,14656,14657,14658,2537], -"gyp", -"c++", -[0,1165,2476,3561,4606], -[0,1166,2510,3477,4597,1906], -[0,18444,1165,3561,1623,3665,22145,5376,4358,22147], -[1,2343,14661], -"@noble/hashes", -[0,14662,14663,14664,2537], -[0,7709,1104,1443,2061,22153,3173,3544,4597], -[0,1429,22157,1177,2323,2494,2899,1894], -[0,18444,7200,6949,20001], -[1,2343,14668], -"@antv/", -[2,14666,4627], -[0,14670,0,14677,2537], -"@antv/g2", -[0,22167,22168,2012,3171,3730,3768,22170,4597,4600,4747], -"@antv/g2plot", -"@antv/util", -"@juggle/resize-observer", -"d3-color", -"conciler", -[2,3877,14675], -[0,18444,13531,20614,13901], -"data-", -"data-set", -[2,14666,14679], -[3,87,15], -[2,14681,1266], -"backgrounds", -[2,10818,14683], -[3,10827,19], -"fo", -[2,14685,14686], -"knobs", -[2,10818,14688], -"options", -[2,10818,14690], -"fabric", -"@umijs/fabric", -"@welldone-software/why-did-you-render", -"aphrodite", -[3,13080,20], -[2,14696,3897], -[2,14696,8221], -"bx-jest-electron", -[3,4325,12], -[2,6996,4408], -[2,14700,14701], -[1,2343,14704], -[0,14716,14722,14724,2487], -"-deploy", -[2,7204,14705], -[2,10617,14706], -[2,5651,2091], -"moment-", -"jalaali", -[2,14709,14710], -"react-wi", -"th-styles-interface-aphrodite", -[2,14712,14713], -[3,14714,28], -[0,4431,4002,3544,4606], -"mpiler", -"css-compiler", -[2,14715,14718], -"-diff", -[2,8745,14720], -[0,1906,2899,4597,3697,53,2510,5761,5756,5743], -"g2", -[0,18444,1172,5198,6778,7056,7192,22179,22180,5341,5061,22181,5284,4643], -[1,2343,14726], -[0,14727,14729,14732,2523], -[0,2476], -[3,4808,10], -[0,1166,2323,3477,4597,1906], -"dable-stream", -[2,14728,14730], -[0,18444,4295,1412,4327,3126,4577,22188,22189,22190], -[1,2343,14734], -[0,14735,14737,14740,2537], -[0,1104,1370,2061,2720,3544,4431,4597,4647], -"bun-types", -[0,1429,2012,22198,2436,2463,2272,2899,4039,4193,4196,4278], -"falafel", -"fore", -[0,18444,1370], -"foreach", -[1,2343,14746], -"coffee-", -[2,14743,89], -"save", -[0,14749,14750,14751,2523], -"save-license", -[2,4534,14747], -[0,1389,2541,1391,3923,4431], -[0,2899,1429,15052], -[0,18444,17461,1389], -[1,2343,14753], -[0,14754,14758,14760,2537], -[0,4431], -"curses", -"tui", -"tput", -[0,2899,4597], -"terminfo", -[0,2323,18444], -"termcap", -[1,2343,14763], -[0,14764,14631,14765,2399], -[0,22217,3544,22218,4135,4431], -[0,2323,15208,4135,18444,15525,22220,22222,22223], -[1,2343,14767], -[0,14771,0,14772,4139], -"ansi-term", -"drawille-canvas-blessed-contrib", -"map-canvas", -[0,97,22229,1593,22230,3544,4431,4597], -[0,18444,2323,2325], -"-terminal", -[2,3127,14773], -[2,3149,7046], -"picture-tuber", -"sparkline", -[1,2343,14779], -[0,14782,14786,14787,2537], -"term-canvas", -"x256", -[0,4431,3032], -"@types/bl", -"essed", -[2,14783,14784], -[0,2899,4597,4170], -[0,18444], -[1,2343,14789], -[0,14790,14791,14792,34352], -[0,22246,2476,4453], -[0,1166,1437,1700,2089,2188,2323,4597,1906], -[0,18444,2090,1586,22249,2301,22251,22253,15795,6901,22254,4262,2325,16077,22255], -[1,2343,14794], -[0,14795,7878,14796,2487], -[0,2061,3544,4039,4431,4597], -[0,18444,4050,7293,6865], -[1,2343,14798], -[0,14799,14800,14801,2487], -[0,1462,3544,4431,4606], -[0,1429,21480,1596,2026,2061,2323,2367,2494,2504,2510,2899,3421,4597], -[0,1623,4050,3178,2280,1462,2458,2459,2361,18444,17461], -[1,2343,14803], -[0,14804,14805,14787,2399], -[0,1509,3544,4002,4431,4606], -[0,2510,2899,4170,4597], -[1,2343,14807], -[0,14808,14809,14810,4139], -[0,2541,4431,4707], -[0,1596,1700,2323,2436,2444,2447,2455,2463,2685,22280,3102,2899,4170], -[0,2323,18444,21837,4329,2278,1623,7234,7121,590], -[1,2343,14812], -[0,14813,14814,14787,2537], -[0,4597,4431,14557], -[0,2323,2899,4170,2759,16584,4278,2510,3202], -[1,2343,14816], -[0,14817,14818,14819,2537], -[0,3032,22291,3544,22292,22293,22296,4431,4597], -[0,1429,2899], -[0,18444,5614,1623,1204,1698,134], -[1,2343,14821], -[0,14822,14818,14823,34352], -[0,4431,2541,2720,1687], -[0,18444,8635,22303,22304,8622,8620,22306], -"loop", -[1,2343,14826], -[0,14827,14828,14831,2537], -[0,710,1544,4438,2061,3102,1104,4150,4151,21847], -[0,2323,2899,4342,2515,1506], -"baconjs", -"kefir", -[0,17461,1544,3000,22313,36], -[3,3736,10], -[3,3736,14], -"deferred", -"deferreds", -"future", -" control", -"flow control", -"dsl", -[2,8553,6072], -[1,2343,14842], -[0,14843,14844,14845,2537], -[0,4431,3544], -[0,2323,1192,1894,21482], -[0,18444,1585,2323], -"BN", -"Big number", -"BigNum", -"Modulo", -"Montgomery", -[1,2343,14852], -[0,14853,14854,14857,2537], -[0,1104,22324,2061,3544,4431], -[0,2272,2899,4597], -"unpipe", -"destr", -[0,18444,1623,22324,671,9654,7121], -"destroy", -[1,2343,14860], -[0,14861,14862,14863,2537], -[0,4597,21861,22331,4431,2061,3544], -[0,3421,2899,4193,1177,4039,4170,1596,22333,22334,1958,1903,1970,1900], -[0,21861,18444], -[2,1601,1851], -[1,2343,14866], -[0,14867,14870,14875,2537], -[0,1637,16136,3544,3427,4606], -"-jsdoc-theme", -[2,1365,14868], -[0,4389,4597,4387,2510], -"postgre", -"sql", -"postgresql", -"datamapper", -[0,1637,3178,14137,16918,16919,1623,18444,3561], -[1,2343,14878], -"active record", -[0,14879,14880,14881,2537], -[0,16858,3544,4606], -[0,4389,4597,4387], -[0,18444,3178,1623], -[1,2343,14883], -[0,14884,14885,14886,2523], -[0,3544,4431,20992], -[0,2272,3760,4170,4597], -[0,18444,2382,1781,2323], -[1,2343,14888], -[0,14889,14890,14891,34352], -[0,1177,2061,3544], -[0,2323,2899,4597,4170,2759,1178,22360,22363], -[0,18444,1177,2323,2656,22365,4354,4225,1501,4525,676,5284,5957,671,1932], -"mincer", -[1,2343,14895], -"eyeglass-module", -[0,14896,14897,14898,4139], -[0,2856,4597,2051,22372,4431,3544,1537,22371], -[0,2323,2899,4170,2759,1783], -[0,18444,2090,2385,4068,2323,1932], -[1,2343,14900], -[0,14901,14902,14905,2487], -[0,4207,3249,3544,22379,22382], -[0,1906,1166,2323,4597,3477], -"align", -"ansi-align", -[0,18444,7131,2687,2090,1586,3529,3181,2070,21543,4597], -[1,2343,14909], -"boxes", -"border", -[0,14910,14631,14911,2523], -[0,3544,4431], -[0,18444,19991,4237,20050,22390,22392,3053,2323], -[1,2343,14913], -[0,14843,14914,14915,2537], -[0,2323,2899,4597,4170,3697,1879], -[0,18444,2323,3033,10903,3403], -[1,2343,14917], -[0,14918,7923,14919,2537], -[0,22402,4001,21035,4431], -[0,14438,1671,4525,2323,18444,1783,5980,1932,22405,3721,4001], -[1,2343,14921], -[0,14925,14926,14928,4139], -"-stream", -"quote-stream", -[2,5706,1237], -[0,1437,2541,22410,22412,3427,7029,3545,4431], -[0,22414,3505], -[2,13888,353], -[0,18444,2156,22410,2090,1586,16410,20500,36,5576,9229,20997,20998], -[1,2343,14931], -"readFileSync", -[0,14933,14934,14935,2537], -"asset", -[0,22420,4039,4600,2541,22422,3923], -[0,2899,4597,1177,2759,22425,3349,2215,3074,22427,22428], -[0,3358,6645,1528,22430,20997,20998,20001,13755,5351,2323,18444,2193,1724,2195], -[1,2343,14941], -"array-equal", -[2,1379,1932], -"fs-tree-diff", -"heimdalljs", -[0,14945,14946,14947,2523], -[2,3192,1177], -"-lerna-changelog", -[2,3980,14943], -[0,22437,2061,1209,3544,4015,22440,4597], -[0,1177,2899,3210,4039,4170], -[0,2323,3358,22443,18444,22223], -[1,2343,14949], -[0,14950,14954,14955,34352], -[0,1104,1413,2061,3544,22449,4431], -[3,1378,10], -"ixture", -[2,14951,14952], -[0,2323,2359,2390,2447,2463,2494,18426,2544,2839,2899,22451,4170], -[0,15215,18444,16518], -[1,2343,14957], -[0,14958,14960,14963,2523], -[0,2036,3544,4002,4431], -"broccoli", -[0,4597,2323,2367,22460,22463,22465,2899,22466,4170], -[3,14953,15], -[2,14961,1289], -[0,18444,2036], -"multidep", -[1,2343,14966], -[0,14971,14972,14973,2537], -"ts-docs-gen", -"plugin-p", -[2,14968,11597], -[2,4491,14969], -[0,14557,1209,3102,4431], -[0,1429,2323], -[0,10345,18444,22475], -[1,2343,14975], -[0,14976,14977,14984,2399], -[0,1496,4207,1362,4599,3427,3923], -[0,2899,4597,2759,2541,22360,1537,22481,4603], -[2,1387,4219], -[3,14978,13], -[2,14979,181], -"bs-recipes", -"dev-ip", -"easy-", -[0,18444,1936,4068], -"easy-extender", -"eazy-logger", -[1,2343,14988], -[0,14989,14991,14993,4139], -[0,4431,3544,2633], -"resp-modifier", -[0,2323,2899,4597,2398], -"bs-snippet-injector", -[0,1671,2323,18444,22489,1936,2265,14137,2632,3178], -"-changelog", -[2,8623,14994], -[1,2343,14997], -[0,14999,15002,15003,2523], -"browser sync", -[0,8949,22495,18438,22497,22502,22379,22504,22505,22500], -"live reload", -"sync", -[0,2323,1192,1177,4039,22509,8719,1894,842,16145,442,1527,22512,91,22507,8712,22511,4523,1939,1895,1955,1652,1567], -[0,18444,2323,1017,2414], -[1,2343,15005], -[0,15025,15026,15029,34352], -"browser-pack", -[2,13843,814], -"zlib", -[2,13888,15008], -"d-pa", -"th-relative", -[2,15010,15011], -[2,2325,15012], -[2,10740,1389], -[2,14181,1617], -"defined", -"deps-sort", -"domain-browser", -"duplexer2", -"htmlescape", -"https-", -[2,15021,1389], -"ed-stream-splicer", -[2,5433,15023], -[0,4431,22518,22519], -[0,2899,2272,3188,4039,4170,4600,2215,1834,22522], -"-classic", -[2,3188,15027], -[0,18444,21195,22524,22525], -"module-deps", -"os-browserify", -"-es3", -[2,3767,15032], -"read-", -"only-stream", -[2,15034,15035], -"shasum-object", -"stream-b", -[2,15038,2345], -[2,4279,27], -"_decoder", -[2,1871,15041], -"subarg", -[2,9056,1851], -"rs-browserify", -[2,6901,15045], -"tty-browserify", -"vm-browserify", -[1,2343,15061], -"unpack", -[2,13843,15050], -"coffeeify", -"has-o", -"bject-spread", -[2,15053,15054], -[2,2565,1243], -"isstream", -[3,5747,18], -[2,3094,15058], -"seq", -[0,15062,15063,15065,2443], -[0,4431,22518], -[0,2272,2899,4170], -"commonj-esque", -[0,18444,7131,3181,2385,6521,2390], -[1,2343,15067], -[0,15068,15069,14787,2537], -[0,1149,1209,22536,4431], -[0,2206,2323,2359,2463,2447,4089,2839], -"exposify", -"mothership", -"-function-calls", -[2,14057,15072], -[1,2343,15075], -[0,15078,15079,15080,2537], -"peer-range", -[2,1382,15076], -[0,1437,2476,2267,3545,3714], -[0,1166,2694,24006,4597,1906], -[0,18444,2267,158,11807,20631,20632,3178,2632,15215,18048,20637,21881,20639,8221], -[1,2343,15082], -[0,15083,15089,14787,4139], -[0,1104,2012,2070,3544,4227,4296,4597,4606], -"leases", -[2,3340,15084], -[3,12361,13], -[2,15086,1747], -[2,9787,15087], -[0,2323,2510,2899,4170,4278], -"target", -[1,2343,15092], -[0,15093,15094,15096,2537], -[0,1144,4431,2061,1104,22555,3544,22449,1874], -[0,1906,2675,2899,4597,4170,22557,2012,192,4131,22559], -"base-x", -[0,18444,14510,22561,22562,3888,4017], -"ts-standard", -[1,2343,15099], -[0,15104,15106,15108,2537], -"base58", -"bitcoin", -"crytography", -"decode", -[0,22568,3544,4431], -"decoding", -[0,1178,1596,2012,2323,2384,2463,2899,3421,4597], -"litecoin", -[0,18444,134,1623,1936,1823], -[1,2343,15110], -[0,15111,15116,15117,34352], -[0,1664,2541,22576,3479,4431,4707], -[3,9366,12], -"d-transpile", -[2,6990,15113], -[2,15112,15114], -[0,1429,2899,4257,1906], -[0,18444,1370,3378,1161], -[1,2343,15119], -[0,15120,15121,15122,34352], -[0,2759,22584,1209,3544,4431,4606], -[0,2323,2463,2510,22588,2272,2899,4039,4597], -[0,18444,4504,2759,22590], -[1,2343,15124], -[0,15129,15131,15137,2399], -"acorn-", -[3,1200,14], -[2,15125,15126], -"acorn-jsx", -[0,2541,2437,4431], -"regexpu-core", -[0,2323,4384,2447], -[2,10740,7227], -[3,5583,16], -[2,15133,4047], -"262-stream", -[2,1973,15135], -[0,2437,18444,3101,7234], -"transpil", -[2,15138,5218], -[3,5221,11], -"esnext", -[1,2343,15143], -[0,15144,15145,15146,2399], -[0,1144,2765,22602,3544,4431], -[0,2323,4597], -[0,5982,5130,18444,2765,2907,8791,4386,4384,6969,1973,5472,2275], -[1,2343,15150], -"compatible", -"uint8array", -[0,15151,15152,15153,2537], -[0,2292,3544,4431,4435], -[0,4278,17468,4597], -[0,18444,2292,5284,5286,676,1501,590,2649,671,6892,4354,16790], -[1,2343,15155], -[0,15156,15157,14787,4139], -[0,1209,3181,3544,22331,4431], -[0,2323,2272,2899,4170,4597], -[1,2343,15161], -"-build", -[2,640,15159], -[0,15162,15163,15165,2523], -[0,1699,1707,2820,3544,4431], -[0,1177,1889,2323,2899,4170,4597], -"prebuildify", -[0,18444,2323,1781], -[1,2343,15167], -[0,15168,15169,15170,2523], -[0,695,3427,3544,4002,4431,4606], -[0,2272,2899,4170,4597], -[0,18444,2323,695], -[1,2343,15172], -[0,15173,15176,15177,4139], -[0,1437,1676,4597,4438,2061,3023,3923], -"built-in", -"bundled", -[0,2899,4193], -[0,18444,3000], -[1,2343,15179], -[0,15180,15181,15183,2523], -[0,22639,814,2061,3170,2107,22640,22638], -[0,2899,4193,1177,3752,22643,1953,1954,1938,1958,1903,1970], -"flexbox", -[0,17461,2323,3209,3001,9711], -[1,2343,15185], -[0,15186,15188,2514,2399], -[0,1462,2541,3427,3923,22649,4606], -[2,5581,10659], -[0,1429,2899,4597,1177,2759,2515,22360,2510,22651,22481,22428], -[1,2343,15190], -[0,15191,15195,15196,2537], -[0,16862,4431,2541], -"@sto", -"plight/yaml", -[2,15192,15193], -[0,1429,2323,2899], -[0,18444,3178,6707,16918,15215,1936,16862], -"mergician", -[1,2343,15199], -[0,15200,14729,15202,2523], -[0,1664,2020,2476,2899,4351], -"warn-if-update-available", -[0,18444,2899,1973,5472,2275,5130,8791,6969,5982,2907,4386,4384], -[2,4869,7059], -"err", -[1,2343,15206], -[0,15207,15209,15210,2399], -[0,22667,2070,3544], -"bump", -[0,1429,2323,2899,4597,1177,3203,21470], -[0,2323,18444,2301,22254], -[1,2343,15212], -[0,15213,14631,15214,2523], -[0,22675,1698,22676,3544,4431,4606], -[0,18444,1098,12074,10650,22676], -"compress", -[1,2343,15217], -[0,15218,15219,15224,2443], -[0,1512,2323,3363], -[0,1506,2447,2463,20047,2272,4170], -"dtrace-provider", -"mv", -[3,2854,14], -[2,4099,15222], -[0,2323,3363,22684,36,22687,20120,2282,17461,18444], -"ben", -[1,2343,15228], -"log4j", -[0,15229,15230,15231,2399], -[0,1209,4431,2061,1104,3357,3544,3330], -[0,2323,2899,4597,4170,2479], -[0,18444,22005,2323,9044,16237,22695,22696,22011,22699,15844], -"streamsearch", -[1,2343,15235], -"@mscdex/eslint-config", -[0,15238,15239,15240,2537], -"uploads", -[3,3253,9], -[0,18438,1437,22706], -[0,1166,3477,91,4597,1906], -[0,2323,1932,2474,6731], -[1,2343,15242], -[0,15246,15248,14787,34352], -"lxiv", -"hrtime", -[2,3715,15244], -[0,1437,4431,2061,3544], -"webrtc", -[0,1906,2323,2899,4170,4430,2759,1596,2012,3202], -[1,2343,15250], -[0,15251,15252,15254,34352], -[0,2061,3544,3616,4606], -[0,3421,2899,4193,4597,1177,3561,3752,2510], -"converter", -[0,18444,3561,22147,1623], -[1,2343,15256], -[0,15257,15259,15263,2537], -[0,4358], -"@bcoe/v8-coverage", -[0,2899,33479,30889,4597], -"ground-child", -[2,14739,15260], -"v8-to-istanbul", -[0,22726,1509,21195,1676,22729,6639,6521,22223,18444,1936,22727,22728,2385,5284,7121], -[2,1432,8746], -[1,2343,15268], -"v8", -"profiler", -[0,15269,15270,15271,2523], -[0,2012,2720,3067], -[0,1145,1177,22735,2720,2899,3752,4603], -[0,18444,3741], -[3,5738,22], -[2,15272,2528], -[1,2343,15280], -"@types/mri", -[2,13307,2831], -[2,4049,668], -[3,207,8], -"madr", -[0,15281,15282,15283,2399], -[0,2541,3427,3909,4431,4606], -[0,2510], -[0,18444,89,1219,353,8535,1283,5354,6624,22743,22746,7234], -[1,2343,15285], -[0,15291,15293,15295,2443], -"@fake", -"r-js/faker", -[2,15286,15287], -[3,1909,17], -[2,15289,91], -[0,2012,3357,705,4431,4597], -" cache", -[0,2323,2530,2359], -"multiple", -[0,18444,21004,22753], -[1,2343,15297], -[0,0,15298,14787,2399], -[0,2323,2510,3102,2899,1894,4170,4597], -[1,2343,15302], -"es-de", -"fine", -[0,15303,15306,15311,34352], -[0,4874,18438,4748,22762,17909], -"fine-property", -[2,15300,15304], -[0,2899,4597,4170,4474,19544,91,1537], -"-apply-helpers", -[2,2183,7083], -"-length", -[2,3609,15309], -[0,18444,4068], -"gopd", -[1,2343,15314], -[0,15315,15316,15317,4139], -[0,2476,22771,22772,22774,22776,4597,22778], -[0,1166,3477,1906], -[0,18444,22781,22782,22783,3428,6707,15525,22220,2325,22784,2947,14932,22785], -"camel", -"-case", -"camel-case", -"case", -"hyphen", -"separator", -"pascalcase", -[1,2343,15327], -"pascal-case", -[0,14910,15328,15329,2537], -[0,2012,2390,2498,2899,4597], -[0,18444,22781,22783,15525,4068,14932], -[1,2343,15331], -[0,15332,15333,15334,2523], -[0,1437,1573,1615,1664,22795,1874,2061,2070,8944,22798,3505,3544,4002,4039,4597], -[0,2323,2510,22778], -[0,18444,4329,2278,1623,7234,7121,590,22801,4227,11939,12938,4070], -[1,2343,15336], -[0,15337,15338,15339,2487], -[0,3527,4294,4002,3544,3028,4606], -[0,2323,2278,2899,4597,1177,4039,21315,3561,18426,3342,1165,2482,21688,2510,1938,1881], -[0,18444,2278,2323], -"assert-", -"rejects", -[2,15340,15341], -[1,2343,15347], -"graphic", -"pixman", -"cairo", -[0,15348,0,15349,2523], -[0,1149,2541,3427,7029,4247,4431], -[0,18444,22813,2090,1586,16410,20500,36,5576,9229,20997,20998], -[1,2343,15351], -[0,15352,15353,15354,2523], -[0,1437,2061,3067,3544,4431,4484], -[0,22821,22507,5087,22823,4874,18435,1009,1011,1596,1177,1895,1939,2323,1192,1894,4468,4474,91,4597], -[0,18444,2323,4166,1523], -" sensitive", -[2,15321,15355], -[1,2343,15358], -[0,15359,15360,15363,2399], -[0,22829,1437,2061,2476,2553,3714], -[0,1166,3477,4597,1906], -"slimerjs", -"scraping", -[0,18444,2098,2090,4202,3073,22832,3430,1676,16518,21665], -[1,2343,15365], -[0,15366,15367,15368,2537], -[0,22837,22841,1082,1573,1623,22843,20949,2215,4227,21732,4431], -[0,1367,1177,1889,2022,2323,2367,2419,2450,2455,22845,2759,22481,22848,2899,3427,4039,4597], -[0,18444,2323,22850,4070], -[1,2343,15372], -"loupe", -"pathval", -[0,15375,15360,15377,2537], -"check-error", -[3,6470,15], -[0,53,2476,22857], -[2,5474,13278], -[0,18444,4301,7293,6865,4050,1676,6782,7201,3073,6807,676,5284,5286,6892,2003], -[1,2343,15379], -[0,15380,14805,15381,2537], -[0,22863,3023,3544,4002,4333,4431,4606], -[0,2323,4333,1623,7121,18444,22223], -[1,2343,15383], -[0,15384,15386,15387,2537], -[0,3544,4360], -"chai-plugin", -[0,2070,2323,22871,2899,22872,4597,1906], -[0,18444,1017,45,8221,18048,22074,22075,2873,1179,1623,2278,695,4333,5376,134,1936,13814,22874,22875,3257], -[1,2343,15389], -[0,15390,15391,15392,2523], -[0,3028,3544,4361], -[0,48,53,87,94,1166,1596,1610,1701,3421,1894,4597,1906], -[0,18444,3178,8221,4361], -"strategy", -[1,2343,15395], -[0,15396,15397,15399,2537], -[0,1448,2061,3544,4597], -[0,2099,2323,2430,2899,3758,4151,4193], -"@debitoor/eslint-config-debitoor", -[0,18444,8221,1017,22074], -"objects", -"Subset", -[2,6792,15401], -"like", -[1,2343,15406], -"superset", -[0,15407,15408,15409,34352], -[0,2476,1209], -[0,1166,2383,4597,1906], -[0,18444,1209,4545,1283,7234,1936,8924,22894,22746], -[1,2343,15412], -"yoctodelay", -[0,15413,15414,15415,2537], -[0,1104,2061,4430,4597], -[0,22507,4874,22900,18438,20959,22821,4039,2323,2463,91], -[0,18444,91,5284,22902], -[1,2343,15417], -[0,15422,15425,15429,34352], -"docpress", -"git-u", -"pdate-ghpages", -[2,15419,15420], -[0,22821,1104,2061,3102,3544,4430], -"gulp-ava", -[2,2530,3020], -[0,22909,4874,22900,2323,2367,2529,4487,91], -"mersenne", -"address", -"dice", -[0,2323,91,1932,4799,18444,17461,4487,9654,671], -[1,2343,15431], -[0,15432,15433,15434,2537], -[0,4597,4431,4600,4227,1104,3544], -[0,2323,4039,22920,91,4874,2367,2409,18438,2479,3159,18435,18440,2510,22919], -[0,91,18444,22924,4799,11540,7234,4643,5197], -[1,2343,15440], -"param-case", -"kebab-case", -"header-", -"header-case", -[0,15441,15442,14787,34352], -[0,22639,2757,4431,4535,22930,22640,4100,2053,22933,4606], -[0,4389,4597,1177,1894,22941,4421,3696,22939,1907,1982,1895,1955,22937], -[1,2343,15453], -"c12", -"convert-", -"gitmoji", -[2,15445,15446], -[2,3310,4009], -"ofetch", -"pkg-types", -"scule", -"std-env", -[0,15454,12112,15455,2523], -[0,2541,3427,22946], -[0,17507,1623,18444], -[1,2343,15459], -"dogstatsd", -"@kurkle/color", -[0,15479,15485,15489,2523], -[2,812,14510], -"@types/o", -"ffscreencanvas", -[2,15461,15462], -"js-adapter-luxon", -[2,9816,15464], -[3,15465,16], -[2,15466,3220], -"chartjs-", -[2,15468,11017], -"chartjs", -[2,1884,15470], -[3,2912,13], -"launcher", -[2,5695,15473], -[2,15472,15474], -[3,4071,15], -"wc3", -[2,15476,15477], -[0,2070,2367,3544,4431,4597], -"charts", -"graphs", -"datadog", -"telegraf", -"native-run", -[0,2012,4600,2323,2447,2463,2530,2413,2361,2498,2450,2272], -[2,1448,11245], -"domhandler", -"domutils", -[0,18444,2319,2536], -"-sniffer", -[2,9254,15490], -"-tree-adapter", -[2,2653,15492], -[2,1868,15493], -[2,3493,15494], -"parse5-", -"parser-", -[2,15497,3101], -[2,15496,15498], -"whatwg-", -"mimetype", -[2,15500,15501], -[1,2343,15511], -"@imgix/js-core", -[2,7724,2220], -"hatwg-mimetype", -[2,7820,15506], -[3,1926,15], -"xpect-type", -[2,15508,15509], -[0,15513,15515,15516,2537], -[3,2654,10], -[0,2070,2051,22959,2419,4431,4600,2367,2012,3544], -"scraper", -[0,3421,2323,2899,4597,1596,22961,2463,2384,2494,1178,22963], -[0,18444,1936,3888,1623,6707,5614], -[1,2343,15518], -[0,15519,15520,2514,2487], -[0,22970,22971,22972,1437,1672,2061,22639,22640,22974,22979,22983,3067,3183,8949,3427,4002,4431,4597], -[0,1400,1596,2012,2759,22481,2272,22985,2899,4039,4170], -[1,2343,15522], -[0,15523,15524,15527,4139], -[0,3768,4430,4431,4597,4600,4753,22990], -[0,2899,4255,1241], -"version", -[2,813,15525], -[0,2323,18444,22990,22993,2056,7046,4597,2542], -[1,2343,15529], -[0,15530,15531,15532,2537], -[0,1104,15642,1457,2061,2200,3427,3507,3544,3923,4207,4597,22778], -[0,1596,2759,2899,3202,3752,4039,4170,4193,4278,4294,1906], -[0,2323,2282,18444], -"@better-scroll/core", -"add-", -"listener", -[2,12598,15535], -[2,1752,15536], -[2,15534,15537], -"-font", -[2,1456,15539], -[2,1625,7521], -[1,2343,15546], -"-converter", -[2,2275,15543], -[2,1625,15544], -[0,15552,0,15563,2537], -"dom-closest", -"dom-lib", -[3,1817,15], -[2,15549,2013], -"htmlhint", -[0,3150,4597,4430,2924,2541], -"insert-css", -"jsbarcode", -"jsonlint", -"jsonlint-mod", -"mutat", -"ionobserver-shim", -[2,15557,15558], -[2,3767,1289], -"-delta-to-html", -[2,3771,15561], -[0,18444,2924], -[1,2343,15576], -"eautiful-dnd", -[2,12242,15565], -"demirror2", -[2,3808,15567], -"asy-crop", -[2,11352,15569], -"lightbox", -[2,3608,15571], -[2,3838,15572], -"azy-load", -[2,12432,15574], -[0,15577,15581,15583,4139], -[0,1544,21847,2541,2756,3357,3445,23009,4150,4151,4431,4438,2282], -"react-quill", -"rmc-feedback", -"smooth-scroll-into-view-if-needed", -[0,2899,4342], -[3,5835,27], -[0,18444,22313,1544,3000], -"to-to-assign", -[2,15582,15584], -"demirror", -[2,4860,15586], -"lement-", -[1,2343,15593], -"resize-event", -[2,15588,15590], -[2,4861,15591], -[0,15603,15617,15620,2523], -"@types/faker", -"sert-css", -[2,9721,15595], -"barcode", -[2,7635,15597], -[3,7895,12], -[2,15599,2631], -"rcode.react", -[2,11304,15601], -[0,2188,2476,4597,22990], -"beautiful-dnd", -[2,4881,15604], -[2,4881,2741], -[2,4881,11167], -[2,6324,1456], -[2,5098,15608], -[3,15609,15], -[2,15610,7262], -[2,15610,89], -[2,15610,10631], -"tinker", -[2,1876,15614], -[2,6941,3841], -[0,1166,17279,22706,2323,3477,23017,22778,1906], -"mark-twain", -"rc-queue-anim", -[0,18444,2056,12666,1137,15215,1536,2090], -"croll-anim", -[2,11229,15621], -[3,11371,21], -[2,15623,1524], -"react-su", -"blime-video", -[2,15625,15626], -[1,2343,15631], -"scrollama", -"values.js", -[0,15636,15638,15639,2523], -"vfile-message", -"-warnings-plugin", -[2,7131,15633], -[2,4670,15634], -[0,22058,1149,4597,4431,3181,4545,22057,22054], -[3,1456,9], -[0,2323,2899,1177,4039,22064,23026,2381,3159,4599,2425,23025,22066,22068,22062], -[0,18444,22057,22074,22075], -[1,2343,15641], -[0,15646,15647,15649,2443], -"anymatch", -"braces", -"is-b", -"@paulmillr/jsbt", -[0,1792], -[0,1166,3477,4481,1906], -"readdirp", -[0,1896,4990,15008,16518,23034,4202,1871,1398], -[1,2343,15651], -[0,15652,15653,15654,2537], -[0,23040,23041,23043,23045,3984,23051,23054,3988,10630,11380,23059,23065,23070,23075,23078,23080,23082,23085,23092,23096,23098,23103,23110,23113,23118,23121,23123,13240,23126,23128,23133,23136,23139,23141,23143,15043,4351,23145,23149], -[0,811,8850,816,10615,1703,23155,4042,4255,4389,4400], -[0,1783,1745,1739,9591,13729,4354,23158,9654,671,19269,2554,3984,4549], -[1,2343,15657], -"ci", -[0,0,15660,15661,2399], -"continuous", -[2,15674,15682], -[0,23163,23164,2228,18555,2253,2256,2273,23165,2281,2283,2293,23167,23169], -[0,4453,7597], -[1,2343,15683], -[3,6217,21], -[2,15663,4779], -[3,169,22], -"ntion", -[2,15665,15666], -[3,169,21], -"inimap", -[2,15668,15669], -[3,116,24], -[2,15671,14745], -[3,164,21], -[3,5276,15], -"anguage", -[2,15673,15675], -[3,157,21], -[2,15677,5204], -[3,148,22], -"de-block", -[2,15679,15680], -"imple-access", -[0,15688,15708,15709,4139], -"tml-embed", -[2,15677,15684], -"ge-break", -[2,172,15686], -[0,3183,23175,4227,4720,4535], -"heme-lark", -[2,178,15689], -"ord-count", -[2,6197,15691], -[2,15698,15725,186], -"how-blocks", -[2,15663,15694], -[3,15685,25], -[2,15696,4231], -[3,10883,21], -"arkdown-gfm", -[2,15668,15699], -[3,175,22], -"move-format", -[2,15701,15702], -"ource-", -[2,15704,6110], -[2,15663,15705], -"oriz", -[0,8648,1168,1195,1282,1317,1429,23177,1540,1719,1787,16256,16257,1177,1895,1924,1926,2151,2228,13831,2240,2247,2253,2256,2258,23178,2281,2283,2314,17568,2675,16021,2990,2899,3211,3257,3421,1894,4135,4193,91,4545,2924,4681], -[0,2036,3257,1283,1936], -"ontal-line", -[2,15707,15710], -[2,15677,15711], -[3,6164,21], -[2,15713,12426], -"multi-root", -[2,6157,15715], -"strict", -"ed-editing", -[2,15717,15718], -[2,15701,15719], -"peci", -"al-characters", -[2,15721,15722], -[2,15663,15723], -"plugin-u", -"nano-jsx", -[1,2343,15729], -"solid-js", -[0,15730,15731,6060,2523], -[0,2812,23184,1366,6714,2607,8340,17693,23185,8336,8316,23187,23188,8338,23189,23190,8349,23192,23193], -[0,620,1501,2710,8363,23196,2036], -[1,2343,15733], -[0,15734,15735,15736,2487], -[0,15507,4874,9241,18089,15502,4729], -[0,23203,23205,91,1984,9750], -[0,2832,965,1388,5317,11513,5122,4963,1936,7102,12616], -[1,2343,15738], -[0,0,8134,15739,2537], -[0,6914,4354,13735,6793,2100,7210,200,6876,6478,3729,1138,7058,7233,10446,7128,3183,3460], -[1,2343,15741], -[0,0,15746,15748,2537], -"@chrisblossom/eslint-config", -[3,14731,11], -"-pkg-up", -[2,15743,15744], -[0,5517,13614,23237,26398,19325,1159,1593,9254,1177,23225,2708,3410,3421,4103,4389], -"temp-sandbox", -[0,7263,2568,7031,6951,6422,970,1593,6789], -[1,2343,15750], -[0,0,15751,2514,2523], -[0,2272,2839,1209,4389], -[1,2343,15753], -[0,15754,15755,15756,2399], -[0,14038], -[0,5517,13614,23237,23239,23241,19325,1158,1159,1177,2011,2708,3206,3410,3421,4103,4389], -[0,6914,6959,6780,6889,6888,6914,3205,941,5284,5286], -[2,5933,1469], -[1,2343,15762], -"uncache", -"uncached", -"unrequire", -[0,15763,15764,15765,4139], -[0,12396,9315,23247,23249,23250,23253,3140,3493,23254,4555,12449,23257,23258], -[0,4874,23262,1414,2581,2588,3137,1894,23264,3985,3998,4505,91,18002,1906], -[0,23267,2587,1936,23266,6435,614,1644,3972], -[1,2343,15772], -"opts", -"opt", -"parseopt", -"argsparse", -"optparse", -[0,15777,15778,15779,2537], -"complete", -"autocomplete", -[3,15774,11], -[2,15775,6600], -[0,12396,23247,23254], -[0,4874,23262,23274,1414,1699,23276,2581,2588,2620,23279,1894,3985,3998,4505,91,18002,4555,1906], -[0,4050,23267,2587,1936,6953,2574,6435,614,23266,4741], -[1,2343,15781], -[0,15782,15783,15784,34352], -[0,12396,9315,23286,23288,13839,23289,23291,9396,2584,23292,16870,3746,4233,4555,23258], -[0,4874,1414,2588,1894,3985,3998,4505,91,18002,1906], -[0,1623,23267,2587,1936,3529,6421,3766,23296,3585,1631,23266,6435,614], -[1,2343,15787], -[2,1861,7253], -[0,15789,15790,15791,2523], -"timers-ext", -[0,1006,19877,12396,23288,23289,23302,23308,23292,23310,23312,23314,3746,4233,4309,23254,23258], -[0,4874,15128,1414,23316,12412,2007,2588,3137,12127,3140,12133,1894,3985,3998,4505,91,4555,1906], -[0,1444,5286,6742,23267,2587,1936,5284,1219,9102,3958,353,23266,6435,614], -"medikoo", -[2,1884,15792], -"list-", -"updated", -"list-updated", -[2,10617,15796], -[3,2289,14], -"-cc-changelog", -[2,4024,15799], -[2,15798,15800], -"prettier-e", -"lastic", -[2,15802,15803], -"tad", -[1,2343,15807], -[0,15808,15809,15810,2487], -[0,12396,9315,23322,23288,23292,23253,3140,3746,4233,4292,23258], -[0,4874,1414,2588,1894,3985,3998,4505,91,1906], -[0,23267,2587,1936,4141,1646,23324,23266,6435,614], -[1,2343,15812], -[0,15816,15817,15818,2537], -"toggle", -"show", -"hide", -[0,1006,12396,9315,23288,23289,23308,23292,23310,23312,23314,3746,4233,4309,23254,15632], -[0,4874,4880,4883,1414,668,12415,2588,1894,89,3824,3985,3998,23330,4505,91,1906], -[0,23267,2587,1936,3698,89,23332,3709,23266,6435,614,188], -[1,2343,15820], -[0,15821,0,15823,2537], -[0,12396], -"varlock", -[0,1563,2587,23267,1936,4141,1871,1646,2585,23266,614,6435], -[1,2343,15825], -[0,15827,15809,15828,2537], -"string-length", -[0,12396,9315,12421,23344], -[0,23266,2587,23267,614,6435,1936,1871,1563,2585,9547], -[1,2343,15830], -[0,15831,15832,15834,2537], -[0,12396,23288,23352,3746,4233], -[0,4874,15128,1414,23316,23356,12412,1894,3985,3998,23359,4481,4505,91,1906], -"expresso", -[0,965,14839,23267,2587,1936,23362,3958,23266,6435,614,23361,4607], -[1,2343,15836], -[0,15837,15839,2514,4139], -[0,4647,2036], -"fast-text-table", -[0,3421,2899,1177,4039,4342,1948], -"256-colors", -[2,1105,15840], -"git-re", -"git-rev", -"growl", -[1,2343,15848], -"tables", -"tabular", -[0,0,15849,15850,2523], -[0,15990,2228,2240,2314,14352,2759,2835,1209,14529,3774,3954,23375,4019,23376], -[0,1871,18089,18944,1936,10368,15103,3656], -[1,2343,15852], -[0,15855,15856,2514,2537], -[2,8737,4522], -[2,2968,14994], -[0,3263], -[0,4167,4384], -[1,2343,15858], -[0,0,0,15859,2537], -[0,2026,1965,11988,5995,23389,23391,23397,23400,23404,23407,23410,23411,23412,23413,23414,23415,23416,23417], -[1,2343,15861], -[0,0,15863,2514,34352], -"truncate", -[0,4361,4039,1894,1420,11518,53,23423,5874], -"ellipsis", -[1,2343,15866], -[0,0,15867,2514,2443], -[0,94,87,14128,14041,1175,48,53,1178,1193,1745,1177,1935,1938,1939,1192,2774], -[1,2343,15870], -"cardinal", -[0,15881,15885,15888,2523], -"hyperlinker", -[2,689,13008], -[2,2055,2873], -"object-t", -"reeify", -[2,15874,15875], -[2,689,7152], -"natural-", -"orderby", -[2,15878,15879], -[0,23432,1362,27433,15838,23434,23436,23438,23439,23440,23441,2822,23444,3170,19445,3220,3222,3416,3527,15245,4294,4435,23445,23446], -"-prompt", -[2,6875,15882], -[3,4351,9], -[0,23450,13414,4856,8780,7637,8778,6503,4874,21623,6513,23448,1414,1429,1448,6323,1177,23453,23456,2675,2990,2899,4193,4474,91], -"hyperlinks", -[2,15884,15886], -[0,5351,5353,6354,5130,2596], -[3,6519,10], -"ip-ansi", -[2,15889,15890], -"nsi-styles", -[2,9165,15892], -[3,9359,12], -[1,2343,15898], -"ct-stack", -[2,15894,15896], -[0,15899,15900,2514,4139], -[0,23462], -[0,1362,1389,1391,1537,1177,2228,2236,2239,2277,2281,2283,2291,23466,2307,2036,2276,4085,23469,4171,4193,16584,23471,4535], -[1,2343,15902], -[0,0,15912,15913,2537], -"@yarnpkg/core", -"@yarnpkg/", -"fslib", -[2,15904,15905], -[3,1920,15], -"rca", -[2,15907,15908], -"multi-input", -[2,4049,15910], -[0,1623,1700,2070,19745,2832,2899,1177,1209,4042,4170,4072,1462,1481,1525,2036,91,2665,23482,6503,18059,23483,13388,23476,23479,1954,8850,23480,1938,1958,1903,811,1011,816,1009], -[0,5342,5341], -[1,2343,15915], -[0,15916,0,2514,2537], -[0,3263,1326], -"good-listener", -"tiny-emitter", -[1,2343,15920], -[0,6263,0,15922,2523], -"cut", -[0,2602,7426], -[1,2343,15924], -[0,0,15925,15927,2537], -[0,1501,620], -"is64bit", -[0,6731], -"paste", -"copy-paste", -"pasteboard", -"pbcopy", -"xclip", -"xsel", -[1,2343,15935], -[0,15936,15937,15938,2523], -[0,3368,3188], -[0,4535,2832,23509,4039], -[0,3257,1283], -[1,2343,15940], -[0,15941,15942,10570,2399], -[0,3847], -[0,53,61,87,90,94,1429,1596,1603,1177,2899,3421,3697,3744,89,4039,4042,4045,4055,4067,4073], -[1,2343,15944], -[0,15945,15946,2514,4139], -[0,1437,4135,2151,1525,23520,3762,4232], -[0,1192,1177,4039,3363,4468,4474,4508,91,5087,4874,5245,5254,4864,1939,1938,13418,1011,23523,1009], -[1,2343,15948], -[0,0,15949,15950,2523], -[0,23528,23531,4865,13204,4874,29891,7677,1138,14736,30932,668,1177,2070,2832,3244,3377,30794,20085,1894,23535,91,4548,23538,1984,23539,4729,4763], -[0,2611,5122,1896,27,13527,5130,38,23542,23543,23544,23545,21444,17218,13573,6710], -[2,976,2942], -[1,2343,15954], -[2,9753,6072], -[0,15957,6538,15958,2487], -"progress bar", -"@exodus/bytes", -[0,3084], -[0,3358,2195,17977,17978], -[1,2343,15961], -[2,11941,5258], -[0,15963,13640,15965,2487], -"coro", -[0,1537,3188,4039,4135,4562,4707,23559], -"coroutine", -[0,23561,23562,23563,23564,3378], -[1,2343,15967], -[0,15968,15969,15970,2487], -[0,15487,2654], -[0,192,5467,19438,442,8862,811,816,10615,10817,23572,11085,23573,4874,17214,32818,7677,1177,1955,10964,1978,2203,2633,2675,17221,2832,2990,3401,3541,1894,23535,4042,4201,4474,91,4523,1984], -[0,2616,1936,965,57,2654,23578], -[1,2343,15972], -[0,0,15973,15974,34352], -[0,4874,1414,23276,2577,2584,1894,3985,3998,4505,91,4548,1906], -[0,23584,11512,1936,1213,3205,10381,12616,7102], -[1,2343,15976], -[0,15977,15978,15979,2537], -[0,15956], -[0,23591,1177,2203], -[0,9254,1936], -"ignore-walk", -[1,2343,15982], -[0,0,15983,15986,2523], -[0,192,5467,5366,23597,5087,4874,1317,18089,1177,1895,1938,23598,2591,2675,1894,4257,4468,4483,4494,91,4523], -"teeny-request", -"urlgrey", -[0,1936,23601,23603,23605,18089,23606,23608], -[1,2343,15989], -[2,10988,4504], -[0,0,15991,15992,2443], -"codecov.io", -[0,23613,1414,1596,4042,4533], -[0,1936,1867,10368,23615,15103,18089], -[1,2343,15994], -[0,15995,16007,16010,2523], -[0,3493,2635], -"mirror/lint", -[2,13183,15996], -[3,15997,12], -[2,15998,6624], -[2,15998,6649], -[3,16000,13], -[2,16001,10190], -[2,15998,8891], -[3,15997,13], -[2,16004,15675], -[2,15998,15774], -[0,1700,1192,2675,3144,1622,1177,1701,2924,1854,3692,1894,1610,48,1193,2036,53,2990,3400,23621,192,4257,23623,87,2651,1938,1895,5467,16405], -"buildhelper", -[2,15998,16008], -[0,2924,1936,1194], -[1,2343,16012], -[0,16013,16014,16016,2523], -[0,15320,1462,1525,2591,15436,23631,4535], -[0,2228,2236,2281,2291,3524,2907], -[2,10697,1592], -[0,200,15215,23634,1623,1936,2265,5284,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,23637,2280], -[1,2343,16018], -[0,16019,16020,16023,2537], -[0,15320,1462,1525,18089,15436,23631,4072], -[0,192,11893,811,8850,816,10615,23643,23648,1177,1903,2675,2742,1192,2780,2990,4042,23652,1983], -"jison", -[2,5249,23751], -[0,200,15215,23634,1623,1936,2265,5284,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,4072,23637,2280], -[1,2343,16025], -[0,16026,16027,16028,34352], -[0,3524], -[0,4389,4255,4387,3524], -[0,1936,2636,3520,3521,6710], -[1,2343,16030], -[0,16031,16032,16033,2537], -[0,15487,2616,3872,4309], -[0,192,5467,19438,19181,442,811,816,10615,10817,23572,5366,4874,4880,4883,17214,32818,7677,1317,1177,1955,10964,1978,2203,2675,2990,3541,3698,23535,89,3824,4042,4201,4474,91,4523,1984], -[0,2639,1936,89,57,965], -[1,2343,16035], -[0,0,16036,16037,2523], -[0,1166,1448,1906], -[0,1936,12075,2640,11513,3392,7102,12616,23670,23674], -[1,2343,16039], -[0,0,16040,16042,2399], -[0,2675,2742,2297,4484,1177,4039,4042,1894,1596,3536,91,3400,2766,3720,2898,23689,2886,23687,19965,13207,2923,23681,23683,2881,23679,6059,23686], -"wcwidth", -[0,12197,23691,1424,1936,965,158,13814,8221], -[1,2343,16044], -[0,16045,0,16046,2523], -[0,23696,1699,1754,2654,23699], -[0,1936,202,2585,18641,19096,15253], -[1,2343,16048], -[0,16049,0,16050,2523], -[0,23708,23709,1091,2070,2929,3183,3742,4135], -[0,1936,671,1155,2650], -[1,2343,16052], -[0,16054,16055,16058,34352], -"array-back", -[0,23736,2635,1209,3716,4388], -[0,192,5467,4874,1610,1622,1628,1652,21468,1177,17589,2629,2675,1192,2990,3177,3400,1894,3754,23738,3786,4039,4257,4307,91,2924,4677,23742], -"find-replace", -"typical", -[0,2924,1932,1936,2651], -[1,2343,16060], -[0,16061,16062,16063,2537], -[0,16022,1525,1595,3692], -[0,442,19344,23339,6503,4874,34737,1414,1637,1177,23753,1938,32525,27790,2022,2203,2899,3561,3759,23631,4039,23754,4361,4072,91,4523,22946], -[0,3692,23757,1936,23760,2632], -[2,1437,2324], -"table-", -"table-layout", -[1,2343,16068], -[0,16069,16070,16071,2523], -[0,18087,15487,15488,18089], -[0,442,4874,7677,1177,1895,1953,1982,2203,1894,4483,91,4523,1984], -[0,1936,57,7046,6523,965,23767,6084,16179], -[1,2343,16073], -[0,16074,16075,16076,2487], -[0,1704,2713,20099,4266,23775], -[0,1177,1903,1938,1948,1954,1958,1970,2899,3421], -[0,27,1851], -"cached", -"cachedir", -"find-n", -"ode-", -"ode-modules", -[2,16079,16081], -"is-u", -[1,2343,16086], -"is-utf8", -[0,16093,16097,2514,2399], -[3,549,23], -[2,16087,1172], -[2,12772,8532], -[2,1652,16089], -"-reporters", -[2,11086,16091], -[0,2017,23783,2131], -[3,1566,12], -" changelog", -[2,16094,16095], -[0,4729,3421,23785,1149,2899,4135,2025,4218,1537,1159,4220], -[1,2343,16099], -[0,16100,16101,16102,2523], -[0,23791,1676], -[0,5245,5087,4874,1151,1192,4468,91,2658,2190], -[0,27,2658,6652,4575], -[1,2343,16104], -[0,16105,16106,16118,2537], -[0,10406,1676,2659,2743,2747,3170], -[0,192,5467,442,5245,5601,6494,19386,5087,8778,4874,9240,9241,1364,1177,1895,1955,2026,2182,2203,2675,1192,2990,23800,3445,5561,20085,1894,4342,4468,91,4523,4729], -"es2015-tag", -"es6-tag", -"heredoc", -"indents", -"literal", -"multiline", -"oneline", -"single", -"singleline", -"strings", -"tagged", -[0,17179,2658,2663,27,2671,1544,2026,2078,23802,23803,1387,2323,2256,4699,4729,1594], -[1,2343,16120], -[0,16121,16122,16124,2537], -[0,2591,3171,1437,23808,23809,3456,3183,4566,1304,2659,3560,23811,2623], -[0,23813,4384,1177,2026,705,23816], -"observe", -[0,200,1523,2947,27,2671,2665,23818,36], -[1,2343,16126], -[0,0,16127,16129,2537], -[0,4493,2675,2899,1177,4170,4474,1894,442,1529,91,4874,2990,19193,6503,16954,192,4257,19335,4523,1951,1895,1955,5467], -"on-headers", -[0,27,1544,4967,6622,2026], -"compressible", -[1,2343,16132], -[0,0,16133,16134,4139], -[0,4864,5087,23829,1009,1011,1177,1883,1938,2151,1192,3117,4468,4473,4474,91], -[0,202,27,18413,23831,23832,6622,5281], -[1,2343,16137], -"buffer-from", -[0,0,0,16138,2537], -[0,2671,23837], -[1,2343,16140], -[0,16143,16147,16153,2537], -"-command", -[2,1614,16141], -[0,1676,23791], -"@hirez_io/observer-spy", -"@swc/jest", -[3,7749,12], -[0,1192,2658,4468,2190,91,5087,4874,1154,5245,1151,23843], -"-quote", -[2,16146,16148], -[2,1596,4845], -"ctrlc-wrapper", -[2,32524,2994], -[0,2671,2658,6652,4575], -"instance", -[1,2343,16156], -[0,0,0,16157,2399], -[0,3358,582,3697], -[1,2343,16161], -"bash", -"sh", -[0,16162,9264,16163,2443], -[0,16136,15019,4431], -[0,3101,27,4714,705,3038,3689,10074,6865,6704,21360], -[1,2343,16165], -[0,0,16169,16170,2523], -"cson", -"hjson", -"x2js", -[0,6061,21120,6063,1570,1177,1895,23860,1894,4042,4131,4389], -[0,23862,590,1623,1420], -"fig", -"node-config", -[1,2343,16175], -"config-node", -[0,0,10435,16176,2523], -[0,23868,23869,23870,4545,23872,23874,23875,23876,3547,23877,23878,23879,23881,23883], -[1,2343,16178], -[0,16180,16182,16183,2537], -"atom", -[0,23888,1676,23891,23894,23897,3257], -"atomically", -[0,1149,1575,1177,1895,1903,1938,1954,1955,1958,1970,2026,2675,2990,2899,3421,1894,4170,4193,4745,4342], -[0,1283,2679,6728], -"xdg-basedir", -[1,2343,16187], -"prefer", -[0,6263,16190,16191,2523], -"preferences", -"persist", -[0,27386,53,5749,5241,83,85,87,90,94,5583,811,816,10615,4874,1009,1011,7677,1290,1596,1597,1177,1881,1895,1915,1938,23909,2675,23913,23915,23917,23921,23926,2990,1894,4039,4042,4193,91,1984], -[0,2681,23932,2679,8930,23933,6728,23934,23936], -[1,2343,16193], -[0,0,16194,16195,2537], -[0,442,10817,6061,6063,1009,1011,1177,1895,1955,2203,1894,4042,4057,4131,91], -[0,2681,23942,5995,1932], -"rack", -[1,2343,16198], -[0,16199,16200,16201,2537], -[0,23948], -[0,3421,1149,23950,8431,2899,23952,1177,4135,705,27387,91,4874,2024,29197,5517,19344,7844], -[0,8431,6270,8426,8425], -"flash", -[1,2343,16204], -[0,16205,16206,16207,2523], -[0,23960], -[0,1175,1193,1267,1272,1596,1177,1881,1938,2774], -[0,2658,23964,13445,1192,3212], -[1,2343,16209], -[0,0,16210,16212,2537], -[0,48,53,87,1009,1676,1177,23971,1938,3188,23974,4039,23975,4384,4449,4474,91], -"kruptein", -[0,2687,23977,16774,3410,3624,10057,7131,6961,1108,21541,2070,23980,23982], -[1,2343,16214], -[0,0,16215,16216,2487], -[0,1414,2070,4493,4474,4508,91,4865,4874,11976], -[0,158,4202,23989,23992,4289,18081,12350,20650,20733,20639,20709,23993,20651,20680,21881,20752,18048,20653,8221,23994,23995,12349], -[1,2343,16218], -[0,16219,16220,16221,2523], -[0,24003,18525,4207,2205,24004,2096,6639,29721,20624,22246], -[0,1906,1166,1700,4400,18051,24006,18047], -[0,3178,15215,158,11806,21881,20637,18048,20639,8221], -[1,2343,16223], -[0,16224,16225,16226,2523], -[0,24003,2020,24012,6639,24013,20624], -[0,1414,1906,1166,91,4874], -[0,15215,158,24016,3178,6707,18048,24017], -[1,2343,16228], -[0,16229,0,16236,2399], -[0,24022,3923], -"defu", -"nicode-supported", -[2,16083,16231], -"sentence", -"sentencer", -"sisteransi", -[0,2695,18641,1823,24024,5576], -"reporter", -"elegant", -"clack", -"stacktrace", -[1,2343,16242], -[0,0,16243,16244,34352], -[0,53,4874,7677,1596,24029,24030,2126,2675,2700,24032,1209,3028,1894,3720,3875,4039,24033,4131,4493,33863,91,1983,1984], -[0,2700,24036,24038], -"arc-templates", -"brac", -"ket-template", -[2,16246,16247], -"dust", -"js-helpers", -[2,16249,16250], -"dustjs-", -[1,2343,16254], -[0,0,16258,16266,4139], -"linkedin", -[2,16252,16255], -"eco", -[0,24045,5087,1596,1192,4039,4468,4487,91], -"haml-coffee", -"hamlet", -"htmling", -"jazz", -"jqtpl", -"just", -"liquid-node", -[0,24047], -"liquor", -"mote", -"plates", -"qejs", -"ractive", -"slm", -[2,4371,2229], -"teacup", -"tinyliquid", -"toffee", -"twig", -"twing", -"vash", -"velocityjs", -"walrus", -"whiskers", -[1,2343,16285], -"engine", -[0,0,0,16286,2537], -[0,2700,7007,7189,2382,6957,6564,6910,7282,6769,6917], -[1,2343,16288], -[0,9670,16289,16291,2523], -[0,1166,2592,4481,1906], -"rfc6266", -[0,3209,2325,15759,15760,1237,2145,24057], -[1,2343,16293], -[0,16294,16295,16297,2487], -[0,3537,13780], -[0,1166,16499,1700,2020,1906], -"rfc7231", -[0,1204,2703,3209,814,2202,15525,16186,200], -[1,2343,16299], -[0,16300,16301,16302,2523], -[0,24069,24073,24075,24077,24078,24080,24081], -[0,4874,9241,1177,24085,1894,91], -[0,13527,36,24088,24089,1965,20986,24090,5592,17829,24091,11100,24092,4030,7096,5122,5130,38,7433,24093,7223,6599,27,2671,4699,14609,24095,1896,5995,12660], -[1,2343,16304], -[0,0,8134,16305,2399], -[0,8958,1871,2966,14903,3924,2585,1794,7067], -[3,1567,23], -[2,16306,1098], -[3,1570,25], -"@conventional-changelog/git-client", -[2,16308,23], -[2,16306,1177], -[1,2343,16313], -[0,16314,16315,16317,4139], -[0,23184,1366,23187,2607,2812,3084], -[0,1501,2556,620], -"tom", -[0,2090,7204,1852,2556,1932], -[1,2343,16319], -[0,16320,16324,16325,2487], -[0,1639,24114,6330], -[2,10832,1194], -[2,16306,16321], -[2,4402,4202], -[0,24118,24117], -[0,2711,6681,5130,10772,24120,1936,24122,36,965,1388,4042,23361], -[1,2343,16327], -[0,0,16328,16331,2537], -[0,91,1984], -"add-stream", -"tempfile", -[0,2712,24128,24129,3547,23877,23870,4545,24130,10915,23872,23878,23874,23879,23881,23883,23875], -[1,2343,16333], -[0,0,11686,16334,2399], -[0,24136,1227,24137,24138,24140,2713,1388,1389], -[1,2343,16336], -[0,0,6538,2514,2523], -"compare-func", -[1,2343,16339], -[0,16343,16344,16345,2523], -"commits.org", -[2,16094,16340], -"preset", -[0,24151,1107,1110,24152,1437,1471,1477,1486,13763,16485,2709,20044,24153,14676,4116,4174,4208,13781,4290,16323,4507,9731,4726,4729,24154], -[0,15288,13789,826,24156,4874,4880,24157,34148,24162,6513,24164,9241,24165,1166,1371,1702,24166,1959,1961,3242,3339,3479,1894,89,24169,4193,4294,4474,91,1906], -[0,89,200,1219,8634,4963,6876,3698,3875,24171,8924,1512,2585], -[1,2343,16350], -"inline-s", -[3,5588,9], -[2,16347,16348], -[0,0,16351,16352,2443], -[0,192,5467,19438,19181,442,811,816,10615,1623,1177,1955,10964,2203,2675,1192,2990,3400,1894,23535,4042], -[0,2718,24177,590,57,1623], -[1,2343,16354], -[0,0,0,16355,2487], -[0,24182,24183,18496,6574,7242,21779,202,200], -"top-sites", -[1,2343,16359], -"cookies", -[0,16360,16361,6151,2537], -[0,31874,546,8998,8605,8612,24188,4094], -[0,8608,91], -[1,2343,16363], -[0,16364,16365,16366,2443], -[0,1107,2089,3527,24188,4094], -[0,2126,2163,2720], -[0,8618,8619,8620,1299,200,1523,6876,1836,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,2184,8634,7009,6621,181,8635,4758,8636], -[1,2343,16368], -[0,16369,0,16370,4139], -[0,24202,1512], -[0,24204,202,9143,13392], -[1,2343,16372], -[0,0,16373,16374,2487], -[0,1734,2899,24209,4072], -[0,5260,3209,10906,24211,1388,24213,1808,1161], -"sign", -"unsign", -[1,2343,16378], -[0,0,16379,16380,4139], -[0,1177,1889,1954,2022,2822,2899,3421,20314,3932,3985,24220,4167], -[0,1507,24223,1509,3595,5194,676,1781,2856,1219,89,24224,4452,4799,91,6523,4745,17307], -"-selection", -[2,15813,16381], -[1,2343,16386], -"@brettz9/node-static", -"-standa", -[0,0,16390,16391,4139], -"lone-jar", -[2,16385,16387], -[2,13131,16388], -[0,1149,1173,1178,1240,24231,24234,1245,1257,1267,24235,1280,24237,24241,24245,24247,24249,24251,24254,24257,24259,24262,24264,24266,24269,24272,1474,1498,1177,24273,2099,2070,2228,2240,2247,2258,24274,24275,2272,3188,3435,4039,4042,4045,4055,24278,13674,4069,4077,22031,4151,4652], -[0,2728,2679,23932,24282,6422], -[1,2343,16393], -[0,0,16394,16395,2537], -[0,19,21,24,26,32,5241,92,8648,840,968,974,4874,4880,4883,1009,1011,11016,33975,1198,1622,668,1177,1915,1938,1939,1959,1961,2075,24289,10697,24291,2228,2239,2240,2247,2256,2263,2283,24295,2308,2314,2665,1192,2780,2814,3003,3541,1894,10622,89,3824,2278,4164,3709,4436,4474,91,1983,26744,188,13151,4769], -[0,24298,24299,24302,7285,7310,5131,6847,7210,5399,5284,1932,1623,1936,7020,6983,89,188,1098,3709,4627,91], -[2,4865,2199], -"rmalize-path", -[2,10409,16397], -"rialize-javascript", -[2,5252,16399], -"@webpack-c", -"ontr", -"ib/eslint-config-webpack", -[2,16402,16403], -[2,16401,16404], -[1,2343,16408], -"is-gzip", -[0,16409,16411,16412,2523], -[0,3082], -"transfer", -[0,1389,2126,4384], -[0,1973,2731], -[1,2343,16414], -[0,16416,16417,16418,2487], -"noms", -[0,16579,16585,23711], -[0,4874,7677,1177,1894,3951,4039,4042,4469,4484,91,1984], -[0,14428,24316,14416,24319,24320,5284,202,91], -[1,2343,16420], -[0,16422,16426,16427,2523], -"qr", -[0,4390,1687,24346,3445,3348,1437,1676,4484,1209,4135,4238,6331,4431,24347,4339,24345,24332,24337,22651,24349,24335,24340,24327,24338,24339,24344,24343,24329], -"simple qr", -"npm qr JavaScript", -"js qr code", -[0,1192,4039,4487,4468,2774,13214,4227,91,17577,5087,4874,24354,7819,2990,5245,4870,5254,24358,24356,18435,24360,24352], -[0,2733,24362,24363,5131,1896,24364,1591,970,3525], -[1,2343,16429], -[0,16433,16434,16436,2523], -[3,1590,15], -"sample", -[2,16430,16431], -[0,8641], -[0,8648,4864,5087,4874,24370,2151,1192,2774,27442,3401,1894,3758,4039,4135,4146,4361,4494,91], -[2,16423,1501], -[0,24373,2733,1017,8221,5131,20523,4627,24374,5027,12295], -[1,2343,16438], -[0,16439,16440,16441,2537], -[0,24379,24382,1676,24383,3032,24386,24389,24391,24393], -[0,24397,6061,16607,6063,4856,9417,5245,24398,24400,6503,4874,24403,6513,1009,1011,1429,1431,1177,1895,2899,3421,1894,4131,4153,4193,4474,4481,4508,91,3348], -[0,1552,24093,24406,24408], -"insight", -"-lib", -"cordova-lib", -"cordova-", -[2,16445,10896], -"cordova-c", -"reate", -[2,16447,16448], -"loud-rejection", -[1,2343,16455], -"@cor", -"dova/eslint-config", -[2,16452,16453], -[0,0,16456,2514,4139], -[0,2899,1177], -[1,2343,16458], -[0,16459,16463,2514,2523], -[0,24416,8431,24419], -"4", -"ES2024", -[2,6796,16460], -[0,24421,2080,2292,4389], -[1,2343,16465], -[0,0,16466,16467,2537], -[0,1158,3421,4389,1177,14741,2708,4103,13614,15059], -[0,614,998,1973], -[1,2343,16469], -[0,16470,16471,9636,34352], -[0,1458], -[0,1470,4255], -[1,2343,16475], -"env-paths", -"parse-json", -[0,16486,16487,16488,2537], -"arse-", -"arse-json", -[2,5088,16477], -[3,7677,17], -[2,16479,2759], -"davidtheclark-node", -[2,1884,16481], -[3,16481,13], -[2,3996,16483], -"es-toolkit", -[0,24437], -[0,2398,2899], -[0,16159,15643,4354,2978,7256,24440,2070,21543,24441,2741,3529,6421,13017,1108,6920,1871,1973], -[1,2343,16490], -[0,16493,16494,16495,2443], -"lcov-parse", -"log-driver", -[0,24446,17450], -[0,1166,16499,1700,2020,3093,4481,1906], -[0,2202,3383,24449,1237,1161,24450,3378,4749,2741,4354,13735,2703,24451,200,20052,17180], -[1,2343,16497], -[0,0,8134,16498,2487], -[0,3048,2741,4354,1973,998,19096,24456,7523,2869], -"cpy", -[1,2343,16501], -[0,0,16505,16506,34352], -"cp", -[3,12419,11], -"contents", -[0,1429,1999,2398,2899,3198,4042], -[0,4354,2741,24462,2757,5284,24463,20273,3048,19096,998,7031,6692], -[1,2343,16508], -[0,0,16510,16514,2523], -"hpagent", -[0,2899,3954], -"http2-wrapper", -"seenreq", -"tslog", -[0,1936,24374,24470,11608], -"@types/got", -[1,2343,16519], -"spider", -"gzip", -[0,0,16520,16521,2523], -[0,4874,1166,4400,4481,1906], -[0,3101,998,7046,7089,7017,6704,353,4354,13735,2741], -[1,2343,16525], -"crc16ccitt", -"crc16", -[0,16527,16529,16535,2523], -"crc16kermit", -[0,24488], -"crc16modbus", -[0,1166,24491,4481,1906], -"crc16xmodem", -"crc1", -"crc24", -"crc81wire", -"crc8", -[0,4354,24493,6574,24494,6667,13735,16159,3729,7201,7009,2741], -"crc8dvbs2", -"crcjam", -[1,2343,16539], -[0,0,9264,16540,2443], -[0,1388,2756,4552], -[1,2343,16545], -"cipher-base", -"ripemd160", -"sha.js", -[0,0,16546,16547,2443], -[0,1999,2398,2899,4042], -[0,4354,2741,24462,2757,24463,20273,24504,970,3048,998,7031,6692], -[1,2343,16549], -[0,16550,16551,2514,2523], -[0,3310,4705], -[0,1429,2272,24512,2899,3297], -[1,2343,16553], -[0,16554,16555,16556,2537], -[0,2070,3368,3441,1149,4707,23432,3188,2003,2822,814,4720,1875,2036,4351], -[0,2272,4039,2276,1596,4019], -[0,4504,24520,24521,24525], -"async-t", -"-tree", -"raverse-tree", -[2,16557,16559], -"css-u", -"rl-parser", -[2,16561,16562], -"uri-to-", -[2,16564,1398], -[2,14678,16565], -[1,2343,16577], -"group-args", -"inline-", -[2,16569,1604], -"oust", -"penthouse", -[3,3591,15], -[3,3611,14], -"inliner", -[2,16574,16575], -[0,16582,11580,16583,2537], -"postcss-url", -"@inversifyjs/common", -"newline", -[2,3370,16580], -[0,2152,3348,18545], -[0,2760], -"stream-array", -[2,23712,29231], -[1,2343,16588], -"optimization", -[0,16589,16590,16591,2523], -[0,1156,1699,1817,24536,3070,3559,4443,24537], -[0,24539,1173,1175,1191,1195,1201,1220,1230,24541,1245,1255,18571,1264,1279,1282,1429,24542,1584,1610,1628,1177,1988,2054,2092,2148,2323,2332,2361,2450,2494,2629,2651,2297,2881,2886,2900,18260,2921,2923,2925,695,2969,21082,2899,4193,4196,4307,4487,91,4537,4027,188,4632,24545,4634,4639,4640,4645,2924,4681,4689], -[0,2761,188,6284,4627,4963,181,5130], -[1,2343,16594], -"@fast", -[0,16613,6161,16614,2537], -"-check/jest", -[2,16593,16595], -"@insurgent/commitlint-config", -[3,16597,13], -"nvent", -"ional-changelog-preset", -[2,16599,16600], -[2,16598,16601], -[3,6061,19], -"ommit", -"-analyzer", -[2,16604,16605], -[2,16603,16606], -[2,6062,3378], -"-generator", -[2,11155,16609], -[2,6019,16610], -[2,6062,16611], -[0,548], -[0,7233,57,7058,5675,7210,200,1523,3924,1644,7119], -"node cron", -[1,2343,16620], -"node-cron", -"schedule", -"cronjob", -[0,16622,16623,2514,2537], -"cron job", -[0,24560,1462,1525,24562,24563,3188,24564,4535,24566,5056], -[0,24570,24571,1596,2026,24574,2034,24576,24577,24581,24584,24587,24591,24592,24593,24594,24596,24598,24599,3127,3456,24600,4039,24601,24602], -[1,2343,16625], -[0,16627,16628,16632,2523], -"tz", -[0,1149,24607,3527], -[0,442,1177,10751,2203,2899,3760], -"timer", -"tab", -"crontab", -[0,6147,200,7048,24610], -[1,2343,16634], -[0,16635,16648,16651,2537], -[0,24617], -"@prantlf/jsonlint", -"@prettier/plugin-xml", -"@stryker-mutator/core", -[3,16638,17], -[2,3192,8791], -[2,16639,16640], -[3,15909,16], -"ray-func", -[2,16642,16643], -[3,13097,17], -"unsanitized", -[2,16645,16646], -[0,5583,816,6373,10615,11301,24621,24624,1462,1610,24625,2675,2814,16830,2990,3170,24627,4042,8849,20983], -"metalint", -"yaml-lint", -[0,24631,158,12083,24633,24634,20634], -[1,2343,16653], -[0,16654,16655,16659,2487], -[0,2070,2766,23576], -[0,1177,24287], -[2,1601,7179], -[3,3606,9], -[2,16657,2408], -[0,1973,5472,2765,6969,5982], -"zoom", -"rotate", -"scale", -"cropper", -"cropper.js", -[1,2343,16667], -[2,29236,594], -[0,0,16668,16659,2523], -[0,19181,442,1137,24645,1797,1177,1924,2070,2203,2832,1894,2278], -[1,2343,16670], -[0,16671,0,16672,2523], -[0,2164,3188,24653,4019,4545,1509,24652,24651], -[0,5472,5982], -"ironment", -[2,1610,16673], -" variable", -[2,6639,16675], -[1,2343,16678], -[0,16679,0,6183,2537], -[0,551,554,2704,2774], -[1,2343,16681], -[0,16682,16683,16684,2487], -[0,24665,24666], -[0,14671,48,53,61,87,192,22559,1193,24668,1596,2675,1192,1894], -[0,3212,1192,11944,1795,1424,1973,2275], -[1,2343,16686], -[0,16689,16695,6183,2487], -"path-key", -[2,6987,16141], -[0,551,8762,554,1437,29680,2704,8734,2798,8747,4747], -[3,10688,14], -"oxy", -[2,16690,16691], -[3,15793,15], -[2,16693,16691], -[0,4892], -"spawnSync", -[2,1611,12344], -[1,2343,16700], -"path-ext", -[0,16702,16703,2514,2487], -"execute", -[0,16729,13002,1437,3717], -[0,8776], -[1,2343,16705], -[0,16706,16703,2514,2523], -[0,24690,16738,13204,4874,2832], -[1,2343,16708], -[0,16714,16715,2514,2537], -"cipher", -[2,13888,16709], -[3,1391,12], -"ign", -[2,16711,16712], -[0,24690,24694,554,11944,2798,2832], -[0,5087,13204,4874,2675,1192,3188,1894,3720,4039,4468,91], -"create-ecdh", -[1,2343,16727], -"mac", -"create-hmac", -"ie-hellman", -[2,1687,16720], -"pbkdf2", -"publi", -"c-encrypt", -[2,16723,16724], -"randomfill", -[0,16730,16731,2514,34352], -[2,6426,3779], -"@jest/diff-sequences", -[0,24690,24694,554,4874,11944,2798,8747], -[0,8776,1497], -[1,2343,16752], -"Hash", -"MD5", -"SHA1", -"SHA-1", -"SHA256", -[2,24690,20072], -"SHA-256", -"RC4", -"Rabbit", -"AES", -"DES", -"PBKDF2", -"HMAC", -"OFB", -"CFB", -"CTR", -"CBC", -"Base64", -"Base64url", -[0,16753,16754,16755,2523], -[0,2777], -[0,107,19438,19181,442,20076,5087,1009,1011,1177,1895,1915,1938,1939,1955,2203,2675,1192,24713,2802,2990,1894,4468,12206,91], -[0,1192,24715,2051,24717,1973,5472,5710], -[1,2343,16760], -"roupon", -[2,1887,16757], -"nlm", -[0,16761,16762,16763,2537], -[0,2151,3445], -[0,53,24723,841,968,972,974,24725,5087,24727,4874,24729,4880,4883,14552,1114,1193,1195,1216,1270,1324,1393,1420,1426,1582,1628,1630,1652,1759,1763,1869,1177,1898,24732,2054,2092,2151,2651,2686,1192,2797,2802,24733,3177,3376,3561,3605,3618,3647,3672,3742,24734,89,3803,3816,3824,3878,24737,814,4028,2278,4111,4135,4230,4307,4383,4409,91,4027,24739,2924,4676,4681,4686,4723], -[0,1192,1936,16237,11937,1932], -[1,2343,16776], -"@cspell/cspell-json-reporter", -[3,16765,15], -[2,16766,7170], -[2,16766,553], -"@cspell/", -[2,16769,15126], -"@cspell/url", -[2,1622,4304], -"cspell-", -"gitignore", -[2,16773,16774], -[0,16777,16784,2514,2537], -[0,3188,4294,3348,6523], -"cspell-glob", -"cspell-io", -"cspell-lib", -[2,2068,2851], -"entry-cache", -[2,2093,16782], -[0,1192,24746,4207], -"@types/fi", -"le-entry-cache", -[2,16785,16786], -[1,2343,16795], -"spell", -"checker", -"spelling", -" checker", -"spell checker", -[2,16791,16792], -[0,0,0,16796,2523], -[0,1192,4749,24753,24754], -[1,2343,16798], -[0,16800,16801,2514,2487], -[2,4229,814], -[0,1437,2215,8750,2796,2798,8747,4207,12578], -[0,8780,1002], -[1,2343,16803], -[0,16809,16810,2514,4139], -"@rspack/cli", -"@mdn/browser-compat-data", -[3,1200,15], -[2,16806,6437], -[2,812,16807], -[0,554,4874,1437,1458,2215,3530], -[0,8780,20374,1209], -"sorter", -[1,2343,16813], -[0,16814,16815,2514,2523], -[0,1107,1437,8758,8741,4207,15826,4294], -[0,48,53,87,92,442,11893,554,6061,6063,4874,1193,17217,1610,1177,1895,1915,32525,1939,1955,2203,1192,24713,1894,4039,4131,4135,91,4523], -[1,2343,16829], -"-verify", -[2,13729,16817], -[3,4828,15], -"itpick", -[2,16819,16820], -[3,15801,21], -"hangelog", -[2,16822,16823], -[2,8184,8166], -"version-", -[2,16826,13729], -"write-", -[0,16832,16833,2514,2487], -"json-file", -[2,16828,16830], -[0,4874,23247,2798,3159,4351], -[0,53,24781,9746,23262,2188,24779,24777], -[1,2343,16835], -[0,16836,16844,16845,2537], -[0,18635,24786,27788,27793,27795,27796,27797,27802,27813,27817,27820,27825,27832,27833,27834,27841,27844,27870,27878,27879,27880,27881,27883,27884,27887,24789,27888], -"icss-utils", -[3,3638,16], -[2,2055,5651], -[2,16838,16839], -[2,16838,1993], -[2,16838,6693], -"@hapi/address", -[0,27890,27893,27895,24793,8862,811,15460,816,10615,17214,1177,27898,3502,4042,4057,15277,23652,4483,91,27900,1984], -[0,158,24795,24799,18048,20637,21881,20650,24800,16662,12712], -[1,2343,16847], -[0,0,16848,2514,2487], -[0,53,5652,5226,56,15659,71,5704,5712,4851,5785,5874,5889,92,5230,101,104,16804,33146,10879,10883,15693,24807,31666,4874,7677,1082,24813,1446,1541,1556,16230,14856,1874,1177,1905,2007,984,2071,2744,3171,3189,3222,15726,3510,15450,3698,28423,1894,89,3824,3951,15728,15452,4409,26379,4469,91,1984,188,20040,4763], -[1,2343,16859], -"@parcel/css", -"@swc/css", -[3,9740,13], -[2,16852,1623], -"@types/csso", -"set-simple", -[2,11327,16855], -[2,1637,16856], -"csso", -[0,0,0,16861,2487], -"lightningcss", -[0,6105,24822,24827,6106,24829,24830,1936,2585,6038,24832,5284,91,24833,2808], -"minimize", -[3,1629,9], -[1,2343,16865], -[0,16866,16867,16869,2537], -[0,2808], -[0,19438,23339,842,966,972,974,4880,4883,1009,1011,1610,1628,1177,1895,1955,1959,1961,1985,2651,2832,1894,89,3824,4068,4307,7873,4474,4493,91,1984,2924,4677,4681], -"boolbase", -[0,89,2808,1936,2585,6038,24842,24829,24830,24843], -"nth-check", -[1,2343,16878], -[3,7804,9], -"olbase", -[2,16872,16873], -"cheerio-s", -"oupselect", -[2,16875,16876], -[0,16880,16881,16882,2537], -"sizzle", -[0,1437,24854,24849,24848,4145,6271,3029,3028,24853], -[0,3421,1149,2228,4193,3460,1596,2240,15929,2293,1532,24857,2283,2273,2277], -[0,24859,24860,24861,24862,24863,24864,24867,24868,24869,24872,24873,24874,24875,24876,24877,24878,24879,24880,24881,24882,24883,24884,24885,24888,24890,24892,24893,24894,24895,24854,24896,24897,24898,24899,24902,24904,24905,24906,24907,24908,24909,24912,24915,24917,24920,24922,24924,24927,24928,24929,24930,24931,24932,24933,24934,24935,24938,24940,24942,24943,24944,24945,24945,24946,24947,24948,24949,24950,24951,24952,24953,24955,24956,24959,24960,24961,24962,24963,24966,24967,24968,24969,24970,24972,24973,24974,24975,24976,24977,24978,12047,24979,24980,24981,24983,24985,24986,24988,24991,24992,24993,24994,24995,24995,24997,25000,25001,25002,4040,25003,25004,4144,4145,25006,25007,25008,25009,25012,25014,25010,25015,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25029,25030,25033], -[1,2343,16884], -[0,16886,16887,16888,2537], -"clap", -[0,16843,25038,8335,25039,25040,8353,26364], -[0,21662,8357,5500,8359,4874,91], -[0,2844,7020], -"json-to-ast", -[1,2343,16893], -"walker", -"lexer", -[0,0,0,16895,2523], -"jquery-test-runner", -[0,89,6649,10057,6355,25054,1542], -[1,2343,16899], -"features", -"web-features", -[0,0,0,16901,2399], -"stages", -[0,2814,5284,1388,6082], -[1,2343,16903], -[0,16904,16905,2514,2537], -[0,2814], -[0,2228,4039,2203,842,25088,25063,2291,25090,3006,25070,25074,16894,25076,2253,2260,23178], -[3,7014,10], -[1,2343,16908], -[0,0,16909,16910,2443], -[0,4874,2899,91], -[0,14357,17180], -[3,16857,15], -[2,16911,10441], -[1,2343,16917], -"advanced", -[2,16911,16914], -[2,16911,2994], -[0,16920,16921,16922,2537], -"optimise", -[2,5505,5218], -[0,25106,18420,2070,2821,3368], -[0,1109,1317,1505,2814,2272,3183,2899,3257,4019,4146,4294,2924,4677], -[0,14438,24856,25109], -"@jscpd/badge-reporter", -[1,2343,16925], -[0,0,16926,16927,2537], -[0,10615,1177,1903,1937,1948,2228,25074,2256,2277,23165,2283,17565,25060,1894,2907,3980,4042,11802,4060,4255], -[0,977,16358,1388,5808,10906,5576,2821,1389], -[2,27440,27441], -[1,2343,16930], -[0,16939,16940,16941,4139], -[3,4856,9], -"okidar", -[2,16931,16932], -[2,7632,16558], -[3,12842,11], -[2,16935,4467], -"urndown", -[2,7750,16937], -[0,1139], -[0,3421,1111,2899,1177,4042,4167,2193,1317,1505,2064,4073,811,816,19232], -[0,4745,57,1753,6713], -[1,2343,16943], -[0,16945,16946,16947,2399], -"csrf", -[0,58,12184,1525,1676,1696,2070,25125,27534,1997,25126], -[0,442,8719,842,8712,16145,4874,1527,1567,1652,1177,1895,1939,1955,1192,2829,22509,22511,1894,4039,91,4523], -[0,25135,1745], -[1,2343,16949], -[0,16951,16955,2514,2537], -"@acemir/cssom", -[0,1512,1525,2151,25141,16923,25147,25144,25148,25142,25146], -[2,812,1177], -"ould", -[2,7747,16953], -[0,5536,4864,4874,7677,3363,4474,4493,91,1984], -"tsv", -"generation", -[1,2343,16959], -[0,16960,16961,16962,2487], -[0,1437,1481,1525,25154,2004,2021,2070,2654,2822,25156,25160,15555,1209,3181,12118,15371,3741,25162,814,4296,4300,25163,25164,21956,25165,4736], -[0,1429,1596,6474,2272,2899,3954,4037,4193,4196,25168,25170,4734], -[0,19271,4525,671,9654,25172,2649], -[1,2343,16965], -"@bramus/specificity", -[0,16967,16968,16969,2537], -"coffeelint", -[0,58,25177,7639,1362,25178,1874,25179,21226,3105,3107,3127,3188,25181,4300,4545], -[0,1091,2323,2384,2449,3421], -[0,1745,5284], -[1,2343,16972], -"csv-spectrum", -[0,16973,0,16974,2537], -[0,16053,17786,25190,17788,1776,25193,17798], -[0,1776,5592,13325,8626,5284,1745], -[1,2343,16976], -[0,16977,0,16978,2523], -[0,16053,1519,1522,25203,1727,2826,4783,17798], -[0,1776,1783,5592,1179,5284,676,1745], -[1,2343,16980], -[0,16981,16982,16983,2523], -[0,16950,16928,16964,15956,1638,25211,25212,2623,2661,2674,2750,3493,25213,25215,4454,4548,25216,23201,15502,25217,19851], -[0,23591,1177,1937,1953,2203,2822,3181,2899,25221,3401,3456,3549,4135,4153,4441,27602,25224], -[0,965,1936,7102,12616], -"csv parser", -[1,2343,16987], -"parse csv", -[0,16988,16992,16983,2523], -[0,25231,25232,1638,2654,25233,3493,705,19851,4738], -"csv to json", -"csv convert", -"tojson", -[0,1389,1512,2665,2272,16112,2276,3560,3760,25238,4652], -" csv to json", -[2,6270,16993], -"csv-json", -[1,2343,16997], -[0,0,16998,16999,2537], -[0,1596,2228,2240,14352,2759,2899,3954,4019,25244], -[0,1398,1867,5284,1781,3053,3065,1871,1646,4990], -[2,1649,6451], -"cucumber-", -[2,17001,6466], -"duration", -[1,2343,17005], -[0,17012,17014,2514,4139], -"enerator", -"is-generator", -[3,4143,10], -[2,17008,1851], -"stack-chain", -[2,16240,1592], -[0,200,15014,2021,2654,1209,3181,4300], -"ansi-html", -[0,1149,1389,1566,13985,1596,2759,2292,3211,2276,3758,3954,25251,4193,15136,25253,25256], -[1,2343,17016], -[0,17017,17022,17024,2523], -[0,1437,3074,3545,15826,4425,22972], -[3,1976,18], -[2,17018,4414], -"riteway", -"updtr", -[0,2272], -"unique", -[0,2272,16237,4525,1671,671,2649,25264,16238,3721], -"unique id", -[1,2343,17027], -[0,17028,17029,17030,2537], -[0,25269,25272], -[0,6503,4874,1009,1011,1177,1886,1938,2899,3421,4474,91], -[0,1781,17420,1641,15253,6813,25276,25277,1644,57,2841,25279,200], -"ospath", -[1,2343,17033], -[0,0,17035,2514,4139], -"lazy-ass", -[0,4257], -"blob-util", -[3,8129,9], -[1,2343,17043], -"@cypress/xvfb", -"zzle", -[2,6545,17040], -[2,17037,705], -[0,0,0,17048,34352], -"more-types", -[2,14614,17044], -[3,4008,11], -[2,17046,6509], -[0,1781,2844], -"cypress.io", -"mocks", -"spies", -"stubs", -[1,2343,17054], -[0,17055,17056,17060,2537], -[0,975,983,15951,1437,1457,8098,7614,2712,2856,3083,25292,4200,25294], -[0,4874,1540,2182,2675,33479,30889,4400,4507,91], -[3,13848,19], -[2,17057,3172], -"longest", -[0,6671,36,21147,8173,8172,25094,3212,8788,1973,5472,4030,2382,28726], -[1,2343,17062], -[0,17063,17064,17065,2399], -[0,1417,7272,2756,17827,3433], -[0,5517,13614,23237,10979,27571,27016,19325,1159,9254,1177,2708,3410,4103,4389], -[0,1781,1646,7185,3428,6333,7077], -[1,2343,17069], -"d3-axis", -"d3-brush", -[0,0,0,17070,2523], -[0,1781,1646,7045,6953], -"d3-chord", -[1,2343,17073], -[0,0,17076,17077,2443], -"d3-contour", -"d3-delaunay", -[0,1593,1177,1903,1938,1954,1958,1970,3400,3954,4042,4048,4055,4067,4073,4193,4384,25313], -[0,1781,2856,1925,6778,5286], -"d3-dispatch", -[1,2343,17084], -"d3-drag", -"d3-dsv", -"d3-ease", -"d3-fetch", -[0,0,17085,2514,2537], -[0,2899,1177,4039,91,4874,6503,1011,1009], -"d3-force", -[1,2343,17088], -[0,17094,13658,17095,2537], -"d3-format", -"d3-geo", -"d3-hierarchy", -"d3-interpolate", -"d3-path", -[0,21224], -[0,3917,6033,2090,1781,2150,2151], -"d3-polygon", -"d3-quadtree", -"d3-random", -"-chromatic", -[2,1655,17099], -"d3-time", -"-format", -[2,17101,17102], -"d3-timer", -[1,2343,17106], -[0,0,17109,17114,2523], -"d3-transition", -"d3-zoom", -[0,16638,16641,1429,1177,25328,2899], -"@observablehq/plot", -[3,17110,14], -[2,17111,7047], -"topojson-client", -[0,1781,2844,2860,1155,7020], -"visualiz", -[2,17115,5218], -[1,2343,17118], -[0,17119,17120,17123,2523], -[0,4430,25336], -[0,4389,19987,18718,8924,5710,2012], -"intern", -"internmap", -[0,1781,3101,22115,57,1149,7119], -[1,2343,17126], -"d3-module", -[0,17127,17131,17133,4139], -[0,3242,25343,4135,25355,25346,25353,3052,25347,25350,3051], -"histogram", -"bisect", -"shuffle", -[0,3413,3421,1157,1429,2899,4193,1177,1566], -"stic", -[0,2038], -"statistics", -[1,2343,17136], -[0,17137,17138,2514,2523], -[0,53,25363,17144,3467,3527], -[0,25366,4874,26142,1415,668,1177,1895,3171,3181,3445,1894,4042,4448,91], -[1,2343,17140], -[0,0,17141,17143,2537], -[0,4874,7677,20085,4493,91,1984], -"uniqid", -[0,6649,6710,5995,25372,89,970,5122,3857,5123], -"@jspm/plugin-rollup", -[1,2343,17148], -"selection", -"data-join", -[0,17149,17150,17151,2487], -[0,25377,3486,20508,3923], -[0,4449,2228,2907,1177,1317,2240,1389,3541,91,2665,25379,2236,2281,25383], -[0,2056,25386,25388], -[1,2343,17153], -[0,0,17154,17155,2487], -[0,4172,1192,2675,1177,23535,4468,4474,1894,91,53,2990,1387,1540,1938,1895,1955,2780,1011,1009,1915], -[0,2038,1388], -[1,2343,17157], -[0,0,17158,17160,2537], -[0,2025,2759,2899], -"dable", -[0,2038,10368,15103], -[1,2343,17162], -[0,17163,17168,17170,2487], -[0,14416,4449,2070,3171,25404,4747,15643,1209,3078,3188,4039,1544,1457,3181,4218,2659,4227,1364,2215,12930,3781,11804,25403,13388], -[2,21029,17165], -" plugin", -[2,21045,17169], -"postcss-js", -[0,1429,13333,2899,17050,4193,4707,1177,1649,4650,3758,4342,1389,2878,3752,4196,25411,1436,2900,2766,2898,192,1431,2871,4131,1954,1938,25407,2904,6063,1958,2881,25410,1903,1970,2895,22559,6061,2876], -"ails", -[0,2297,25415,8791,2297,676,5284,5472,1973,21004,25416], -"laravel", -[1,2343,17173], -[0,17174,17175,17176,2487], -[0,9421,1209,25421,3181,18868,1573], -[0,3377,1377,1429,2297,2899,4193,4453,12851,1177,814,4650,1389,4196,91,3400,2766,2898,15051,1951,2881], -[0,25425,25427,25429,1389], -[1,2343,17178], -[0,17182,17185,17186,2537], -"reverse", -"binary", -"opposite", -[0,3760,14336,25092], -"invert", -"switch", -[0,2228,1177,2307,2239,2291,3006,1954,2234,1938,1958,1903,1970,2285,2290], -[0,25425,25436,14336,25437], -[1,2343,17188], -[0,0,0,17192,2537], -"@cap", -"temulation/get-parameter-names", -[2,17189,17190], -[0,2297,25425,1429,2899,4170], -"faker-bb", -[2,7526,17193], -[2,9769,1676], -"rss-parser", -[2,2032,2663], -[2,4364,17197], -"lexxy", -[1,2343,34442], -[0,4707], -[0,1429,2297,2899,4193,4255,2900,192,4131,6063,22559,6061], -[0,25425,25436,3195], -"@date-", -"fns/docs", -[2,17204,17205], -[1,2343,17208], -[0,17211,17224,17225,2523], -"@date-fns/utc", -[3,5530,19], -[0,11935,14024,11938,11940,11943,3181], -"@types/bun", -"@vitest/", -[2,17213,1388], -[3,1198,17], -[2,2701,7188], -[2,17215,17216], -"bun", -"cloc", -"js-fns", -"jscodeshift", -"issing-exports", -[2,10634,17222], -[0,192,5467,21970,6061,6063,16608,1429,1509,1177,1903,1938,1954,1958,1970,2228,2240,2298,2307,2675,25453,2297,25455,2895,2900,25458,2899,17050,4019,4131,4193,4196], -[0,25425,25427,25462,4504,2759], -[1,2343,17227], -[0,17201,17228,17229,2537], -[0,2228,2258,2273,2298,2766,2297,2898,3524], -[0,25425,25436,1388,2887,25468,25470,25472,25473,17632,25474,25476,25479,25481,25484,25485], -[1,2343,17231], -[0,17233,17234,17235,2523], -[2,2553,20], -[0,2890], -[0,1429,25492,14416,1177,1903,1958,1970,2228,2239,2240,2291,2307,2316,2297,3006,25493,3752], -[0,25425,25436,13530,17631], -[1,2343,17237], -[0,17238,17241,17245,2537], -[0,2755,4707], -"ectory", -[2,4015,17239], -[0,192,5467,6061,6063,16608,2675,2297,2900,2899,3534,4131,4255], -"sleep", -" wrapper", -[2,1149,17243], -[0,2297,5472,25425,25436,25501], -[1,2343,17247], -[0,6203,17248,17249,2523], -[0,1429,14416,1177,1903,1958,1959,1970,2228,2234,2239,2283,2285,2290,2291,2307,2316,2297,3006,17050,4193,4196], -[0,25425,25436,7298], -[2,17257,24717,17258], -"debouncing", -"invoke", -"interval", -[1,2343,17255], -[0,17256,17259,17260,2523], -[0,2766], -[3,7621,18], -"-ascii", -[0,2228,2675,2297,1177,2765,192,4131,1954,1938,6063,16608,1958,1903,1970,2895,6065,22559,6061], -[0,25425,25514,2765], -[1,2343,17262], -[0,17263,17264,17265,2487], -[0,3183], -[0,1429,1177,1903,1958,1959,1970,2228,2234,2239,2285,2291,2298,2307,2297,2878,2881,2895,2918,3006,2899,3203,4193,6061,6063,4131,192,5467,2675], -[0,25425,25514,2899], -"decamelcase", -"lowercase", -[1,2343,17270], -"nano-spawn", -[0,17271,17280,17282,2537], -[0,1437,3074,4294], -"-tar", -[2,1679,17272], -"bz2", -[2,17273,17274], -"gz", -[2,17273,17276], -[3,17273,11], -[2,17278,4560], -[0,1429,2228,2239,2258,2273,2285,2298,2314,2766,2878,2889,3006,2899,3524], -"strip-dirs", -[0,25425,25462,2899,1429,1687,2568], -"is-jpg", -[1,2343,17287], -"bzip2", -"tar.bz", -[0,17289,17290,17291,2537], -"tar.gz", -[0,1209,3524], -[0,1177,1903,1959,1970,2228,2234,2239,2285,2291,2298,2307,2766,2297,2898,3006], -[0,25425,25436,3521], -[1,2343,17301], -[3,4852,13], -"plugin-m", -[2,17294,7912], -[2,17293,17295], -"fail-test", -[2,10740,17297], -"deprecation", -[2,1921,17299], -[0,0,17320,17324,2399], -"only-tests", -[2,16645,17302], -[3,1955,15], -"erfectionist", -[2,17304,17305], -"yml", -[2,1921,17307], -"jsonc-", -[2,17309,67], -[2,4488,10441], -[2,3390,17311], -"curly", -[2,3704,17313], -"should-s", -"emantic-", -[2,17316,3979], -[2,17315,17317], -[2,13125,67], -[0,1429,2228,2297,2899,2907,1177,2307,2239,2898,1954,1938,1958,1903,1970,2895], -" string", -"line string", -[2,13862,17322], -[0,2297,25425,25514,2907], -[1,2343,17326], -[0,17327,17328,17333,2487], -[0,1457,1675], -[0,53,5889,87,1177,2766,2297,2881,2898,2904,4042,4045,4048,4055,4067], -"dupes", -" duplicates", -[2,7293,17330], -[3,232,8], -[0,3595,6778,2297,5260,1204,6813,1932,7121,25427,25425,25544,4042], -[1,2343,17338], -"deduplicate", -"deduplicat", -[2,17336,6600], -[0,0,17339,17340,4139], -[0,2307,2228,2239,2234], -[0,25425,25436,25550], -[1,2343,17343], -"is-obj", -[0,17344,17345,17346,2537], -[0,25555,12826,824], -[0,192,5467,6061,6063,16608,4864,25558,4874,2675,2765,2297,2898,4131,91], -[0,25425,25436,7177,12825,12826], -[1,2343,17348], -[0,0,0,17349,2537], -[0,2297,25425,4193,3212], -[1,2343,17351], -[0,17353,17359,17360,2523], -"json-ptr", -[0,2215], -[3,1715,10], -"change-", -"adr", -"tracking", -[2,17355,17357], -[0,8780,1414,1177,2766,2297,25571,2881,2898,1894,4042,25575], -[0,25425,25427,11939,5284], -[1,2343,17368], -"decision record", -"kewlr", -"any decision record", -[2,17379,17381], -"simple-assert", -"lcov-re", -[0,9719,17378,17385,2443], -"sult-merger", -[2,17367,17369], -[3,1903,16], -"rict", -[2,17371,17372], -"@js-temporal/polyfill", -[3,1935,15], -"ilenames", -[2,17375,17376], -[0,1429,1596,2899,3400,3421,4193,4196], -[3,25135,11], -"chai util", -"al decision", -"deep equal", -"object equal", -[2,17365,17394], -[0,25425,16237], -[1,2343,17387], -[0,17408,17417,13533,4139], -"array-b", -"-byte-length", -[2,2347,17389], -[2,17388,17390], -"es-get-iterator", -"is-a", -" record", -"is-arguments", -"is-ar", -[2,25135,17401], -"ray-buffer", -[2,17396,17398], -"is-date-object", -" decision", -"gex", -"is-regex", -"is-s", -"hared-array-buffer", -[2,17404,17405], -[2,6961,7313], -[0,2070,3181,4689], -"side-channel", -"-boxed-primitive", -[2,4707,17410], -"which-", -[2,17412,6910], -"typed-", -"typed-array", -[2,17412,17415], -[0,48,53,85,87,192,5467,16405,1193,1429,1431,1610,1177,1938,1955,2675,2759,2765,1192,2297,2878,2881,2900,2923,2990,3150,2899,3697,1894,3758,4257,2924], -"available-typed-arrays", -[1,2343,17427], -"to", -"has-proto", -"has-t", -[2,17397,17394], -"yped-arrays", -[2,17422,17424], -"software quality", -[0,0,7923,17428,4139], -[0,8652,2926,25591,6938,25592,25594,25595,25596,2927], -"rehype-katex", -[1,2343,17431], -[0,0,0,17432,2487], -[0,2927,3925,364], -[1,2343,17434], -[0,17435,17441,17442,2487], -[0,25605], -"is-m", -"able-object", -[2,4688,17437], -[2,17436,17438], -"jsmd", -[0,18073,29457,11976,15288,7677,4039,25609,4481,1984,26108,26131,26132,26124,26104,29233,26123], -[0,6803,6692,1542,2325,9553,25611,13901,5995,25513,1552,3230,7827,3259,14873,3151,3300,3084,6650,1416], -[1,2343,17444], -[0,0,17445,17446,2537], -[0,1999,4579], -[0,1111,200,1473,1512,7201,7009], -"is-path-cwd", -"is-path-", -"inside", -[2,17448,17449], -[1,2343,17452], -[0,17454,17463,17464,2523], -"folders", -[0,1999,25625,1676,1209,21104,3932,4435,25623,1511,1525,2727,4025,2179,25624], -"directories", -"trash", -"unlink", -"cleaning", -"rmrf", -"friendly", -"gulpfriendly", -"filesystem", -[0,3519,3421,4481,1429,2763,4389,2675,2899,3259,4193,1177,3260,4039,1787,3203,4246,25635,4474,25633,1894,4387,1596,1610,2861,4196,91,4874,21106,2990,25629,25634,1431,4232,25632,1938,25628,25636,1895,1955,13850], -[0,14872,3766,14873,25638,3259,25639,4246,12593,3243,9381,25640,6147,1747,18035], -[1,2343,17466], -[0,17467,17469,17470,2537], -[0,19185,2071,17471,2807,2822,3183,29943,3527,3530,25648,4300,4763], -"temp-write", -[0,554,17212,7637,7892,20374,4891,11112,19706,32765,4494,91], -[0,19748,25658,1227,200,25660,4796,13735,4797,11337,25661,6971,6813,1586,2100,5284,671,25663,25664,18750,6646,23255,3383,20529,553,91,25667,25669,17507,664], -"formatly", -[1,2343,17473], -[0,0,17476,17478,2487], -"in-range", -"time-", -[0,1177,2205,25675,3072], -"time-span", -[0,1623,3583,12616,3195,25501,25677,17631,25550,25678,25679,25682], -"defer", -"out", -"timeout", -[1,2343,17483], -[0,17486,0,17488,2537], -"settimeout", -"tick", -[0,3171,4734,1676,25688,3441], -"threshold", -[0,7200,6997,6949], -[1,2343,17490], -[0,17491,17499,17502,2537], -[0,1080,1560,1562,16358,25696,14858,1833,1869,2145,25699,2657,2941,3173,3440,3494,4266,1000,4590], -"@vue/c", -"ompiler-sfc", -[2,17492,17493], -"callsite", -"deps-", -"deps-regex", -"is-c", -[0,1414,25710,4216,4255,4342], -"ore-module", -[2,17498,17500], -[0,5122,1896,27,13527,5130,2663,16196], -"patch-", -"patch-version", -[1,2343,17506], -[0,17508,17509,17510,2523], -"unused", -[0,25717,7810,13055,25718,2141,4507,4763], -[0,5517,11976,107,5522,28385,27134,36694,24819,9240,2934,4342,4483,36684,4494,91], -[0,2934,25723,15237,1781,20443,57,1669], -[1,2343,17512], -[0,17513,17516,17517,2443], -[0,25718,25728,1000], -"deprecate", -"deprecated", -[0,1909,2675,2934,2899,3421,4170,4342,1906], -[0,25732,1781,25723,2934,20443], -[1,2343,17519], -[0,0,17520,17521,2523], -[0,1503,1192,3130,4255], -[0,2934,2663,2940], -"is-relative", -[3,9488,17], -[1,2343,17525], -[0,17530,17531,17532,2487], -"cjs", -"detective-cjs", -[3,9509,10], -[2,17528,4354], -[0,1413,1437,25743,3440,25745], -[0,1366,1414,1909,2934,25748,25749,4193,4342,1906], -[0,2934,2663,2942,3073], -[1,2343,17534], -[0,17535,17536,17538,2537], -[0,1676,2941], -[0,1177,1903,1958,1970,2759,2934,2948,2899,4170,4342], -"indentation", -[0,2934,2663,2944,25757], -"identify", -"space", -[1,2343,17542], -[0,17543,17544,17545,2399], -[0,1676,2657,2941,3509], -[0,2934,3421,1437,2675,2899,1177,2114,4342,25763,3985,2990,192,2829,3995,1982,5467], -[0,2934,2663,4082,38], -"mm", -"egg-bin", -[1,2343,17549], -[0,17550,17552,17553,2443], -[0,1676,25771], -"ontributor", -[0,1177,1903,1938,1954,1958,1970,2759,2934,2899,4342], -[0,2934,2663,2090,2947,25774], -[2,1884,1347], -[1,2343,17556], -[0,17557,17558,17559,2537], -[0,3291,3754,25782,1552,4747,1209,4333,2026,1364,25781], -[0,1429,1149,2899,4193,4170,4342,1506], -[0,12692,3768,6812,1552], -[1,2343,17561], -[0,17562,17563,17564,2537], -[0,25789,1687,1177,25791,25792,2000,25793,2036,2607,2851,2854,3188,4127,4227,4232,4351,25794], -[0,1501,25796,1948,25797,4039,4135], -[0,1973], -"grunt-exec", -[3,2300,12], -[2,17566,2759], -[2,2235,2924], -[1,2343,17570], -[0,17571,17572,17573,2523], -[0,9478], -[0,1166,4135,25814,4481,1906], -[0,25816,15525,3378,4750,3383,6661,25188,1237], -[1,2343,17575], -[0,0,17576,17587,2537], -[0,2861,25821,1317,25822,25823,2768,1776,1209,3152,3736,25825,4019,25826,4545], -"@types/diff", -"gan.js", -[2,12456,17578], -"@types/nopt", -"all-", -"ibutors-cli", -[2,10741,17582], -[2,17581,17583], -[3,1945,18], -[3,3463,9], -[0,7189,6564,6681,6887,614], -[1,2343,17593], -[2,2036,2091], -"image-", -[2,17590,11526], -"is-ci-cli", -[0,0,17594,17596,34352], -[0,4248,2675,2297,2899,4193,1177,25846,4042,25850,25840,4535,2900,2918,2990,25844,25848,25851,2897,8850,2891,25843,2881,2912,2895,2910,25853,25838], -"side-by-side", -[0,25855,3053], -"line-by-line", -[1,2343,17601], -"difftohtml", -"colorized", -[0,0,17602,17603,2399], -[0,1317,2064], -[0,2967,2965,2966,23119,1871,19728], -[1,2343,17605], -[0,0,17606,17607,2487], -[0,20340], -[0,2966,25866,6983,1671], -"data-s", -[2,14386,3769], -[2,17608,17609], -[1,2343,17614], -[3,1915,23], -[2,17612,8861], -[0,17624,0,17628,4139], -"Directed Graph", -"directed", -" graph", -[2,17616,17617], -[2,17616,2218], -[3,1718,14], -"Directed", -"digraph", -"java", -[0,3420,2714,4390,3532,4248,3348,1437,2020,2742,3478,4207,10761,4747,25871,1680,24004,3483,4039,4135,1842,2822,3479,4430,25872,2151,2182,2720,3093,25873,13786,25874,1513,2753,2777,3181,25875,666,2188,3249,27921,91,25878,1595,2200,25879,25880,4174,2704,25881,3393,25884,4025,25886,4290,4748,25887,692,20312,9322,25888,25891,25892,3386,635,25893,26567,4728,643,3397,9479,10744,4588,16310,25898,25901,16307,25904], -"java script", -"JavaScript", -"type script", -[0,2968,6646,7117], -"vertex", -"Vertex", -"edge", -"Edge", -[1,2343,17638], -"graph theory", -"Graph Theory", -"graph ", -[2,17636,6956], -[0,17639,17646,17650,2487], -[0,25910,20314,4484], -"weighted", -"Weighted", -"unweighted", -"Unweighted", -"adjacency", -"Adjacency", -[0,811,8850,816,1009,1011,25917,25920,1429,1414,1437,1595,1610,1177,2151,15843,2070,2205,2228,2240,2247,2256,2291,2311,2314,25922,2777,25923,25925,21898,3183,2899,25928,3400,3518,25929,3541,1862,25930,814,4042,4073,4076,4135,4172,4436,4474,91,12247], -"connectivity", -"cycle", -"acyclic", -[0,7236,7303,6885,1623,6965,7025,6898,6932,7258,695,7228,6766,7028,6912,57,7121,6962,6968,590,592,5376,7198,6705], -"traversal", -"depth", -"Depth", -[1,2343,17655], -[0,0,17682,17684,2537], -"breadth", -"Breadth", -" first search", -[2,17652,17658], -"dfs", -"DFS", -[2,17656,17658], -" search", -[2,6395,17663], -[2,17656,17664], -"bfs", -"BFS", -"algorithms", -[2,17636,17668], -"repre", -"sentation", -[2,17670,17671], -[2,17636,17672], -" matrix", -[2,17647,17674], -" list", -[2,17644,17676], -"adjacency ", -"matrix", -[2,17678,17679], -"node ", -[0,48,53,87,192,5467,442,27928,19344,1193,1610,1622,1700,1701,1177,1895,20281,1938,1939,1953,1955,1982,2203,2675,1192,695,25936,2990,3144,3400,1894,4257,4294,4523,2924], -"node degree", -[0,2924,1194,695,6766,7228,1623,7121], -[1,2343,17694], -"sparse graph", -"dense graph", -"directed ", -[2,17688,17648], -"acyclic graph", -[2,17688,17690], -"DAG", -"topo", -[0,17703,17707,17708,2537], -"topologic", -"topological", -"sorting", -"strongl", -"y connected components", -[2,17698,17699], -" digraph", -[2,17640,17701], -[0,25946,25948,25944], -"weighted edge", -[2,17688,17704], -"structures", -[0,3421,4389,3348,1090,1290,2554,4255,91,4874,87,25951,25950], -[0,2970,25954,3101,18035,1747,1542,13901,1781], -" structure", -[2,2382,17709], -[3,17610,14], -[2,17710,591], -[2,6957,591], -[2,17711,591], -"in data structures", -[3,17715,17], -"DataStructure", -[2,17717,591], -[1,2343,17725], -"iterative", -"Node.js", -"CommonJS", -"UMD", -"esmodule", -[0,17728,17736,17738,4139], -"java.util", -"c++ stl", -[0,25960,15160,25959], -"c++ std", -"Python collections", -"System.Collections.Generic", -"STL", -"stl", -"Collection", -"Collections", -[0,25964,3421,2070,4389,4400,2080,4039,12694,1804,2554,640,4255,1610,25963,25968,15164,25974,25969,1705,25972,25967], -"insertion", -[0,25954,2970], -"deletion", -"OOP", -[1,2343,17742], -[0,17743,17744,17708,2443], -[0,23040,25983,25987,25990,25981,25985], -[0,3421,4389,1087,4193,1090,2080,12694,25995,26000,2554,4255,25963,1389,4092,25992,25996,1537,25994,25997,1705,25951,25967], -[1,2343,17746], -[0,0,17747,17748,2443], -[0,1166,26007,26008,26009,26006,26010,26014,3273,26015,4441,1906], -[0,2975,26006,26017,8893,1871,17354,1687,2062,2163,9549,9550,3797,26020,6109,2585,3529,19051], -[1,2343,17750], -[0,17755,6538,17756,2399], -"voice", -[2,7659,17751], -"backend-", -[2,17753,10057], -[0,635,9510,26026,1687,3181,3386,3483,4390], -[0,3378,3409,2977,200,1687], -"product", -"productivity", -[1,2343,17760], -[0,17761,17762,17771,2523], -[0,635,9479,643,1458,3386,3483,3727,29698,3917,4135,4174,9455], -[0,9516,26037,9515,9449,1437,18248,26035,4384], -[2,7659,4729], -"lodash.s", -"nakecase", -[2,17764,17765], -"builders", -[2,7659,17767], -"formatters", -[2,7659,17769], -[0,3378,3409,2977,200,9527,2979], -[2,7659,1735], -[1,2343,17774], -[0,17775,6538,17776,2523], -[0,635], -[0,3378,3409,2977,200,3358,2980,26044], -[1,2343,17778], -[0,0,17779,17780,2537], -[0,48,53,5712,5788,87,94,8850,10615,1208,1429,1597,26049,1610,32572,2759,1192,25913,26052,3183,2899,3400,3421,26053,4005,4039,4042,4484], -[0,7285,7310,6988,6847,5131,7211], -[1,2343,17782], -[0,17783,17784,17785,2487], -[0,2051,2107,10392,26060,2747,3932,814], -[0,1509,1177,1889,1895,1954,2022,2899,3421,4193], -[0,9753], -"cache-point", -[2,9480,6769], -"file-set", -[1,2343,17791], -"reduce-", -[0,0,17792,17794,2537], -[0,11976,5087,4874,8157,1595,1192,91,4579], -"without", -[0,1595,1541,8309,7193], -[1,2343,17796], -[0,0,0,17797,2487], -[0,26072,1823,26073,1936,2814,163,26074,89,4500,1002], -"walk-back", -[1,2343,17802], -"dmd-", -[3,2475,9], -[0,17806,17807,17808,4139], -"ample", -[2,17801,17803], -[2,17800,17804], -[0,1525,2992,3170,6479,26379,4745], -[0,5522,107,192,5467,442,7677,22839,26081,1610,1177,1895,1953,1955,10964,2675,3211,1894,4135,91,1984], -[0,671,3358,2989,1177,1894,4320,1501,19269,4354,1671,2649], -[1,2343,17810], -[0,17811,17812,17814,2537], -[0,26087,26090,2752,2753,26092,26095,26099,3478,4094], -[0,1503,1702,22845,2990,3074,3421,3697,4237,13351], -"jsdoc2md", -[0,200,5957,3392,9000,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], -[1,2343,17816], -[0,17817,17820,6226,2487], -[0,1486,1511,2017,3077,4038,4726], -"agnostic", -"dnd", -[0,13352,4094,13351], -[1,2343,17822], -[0,17823,17824,2514,4139], -[0,26114,26111,5438], -[0,26121,26117,10675,26122,10706,4484], -"-protocol", -[2,1730,17825], -"jsonify", -[1,2343,17831], -"rpc", -"callbacks", -[0,17832,17833,17834,2523], -[0,1209,3183,1387,26129,1549], -[0,2899,4193,1177,3215,2759], -[0,1098,14576,2947,36,5001], -"@ffmpeg-installer/ffmpeg", -[3,1733,16], -"mmon", -[2,17836,17837], -[1,2343,17840], -[0,17841,17842,17843,2487], -[0,3459,1594,710,1512,3237,1544,1457,26136,4150,2012,3427,26137,23009], -[0,2899,1177,2272,4342], -[0,6400,5001,4990,36,27,200], -[1,2343,17845], -[0,17854,17855,2514,2537], -"@puppeteer/browsers", -[3,13394,12], -"ium-driver", -[2,17847,17848], -"geckodriver", -[2,13391,17850], -[2,5680,13392], -[2,13391,17852], -[0,1457,26144,15767,4729], -[0,1509,2899,4170,4193], -[1,2343,17857], -[0,17858,17860,17861,2537], -[0,16166,2070,25923,2822,23444,3006,1209], -"posthog-node", -[0,2228,2273,2283,23466,22081,2305,3752,4193], -[0,21779,4745,16166,2228,1541], -[1,2343,17863], -[0,17864,17865,17866,2537], -[0,1144,3249,3539,6477], -[0,2228,2240,26158,1906], -[0,4796,2070,2228,3001,3529,26160,13017,3209,3005], -[3,246,8], -[1,2343,17869], -[0,0,17870,2514,2487], -[0,1596,1177,1954,1192,1894,4257], -[1,2343,17873], -"mecano", -[0,17874,17875,17876,2537], -[0,25190,3088,26169,26172,26173,26175,26178,26179,26180,26181,26182,26183,26184,26187,26189,26190,26192], -[0,3310,1187], -[0,3304,36,5122,4990,6400,5001,1594,3171,4030,3212,5592,2658,3088,5995,4967,26196,2665,27,13333,2671], -"@balena/dockerignore", -"docker", -[1,2343,17880], -[0,17882,17883,17885,2537], -"docker-modem", -[0,25377], -[0,1175,1178,1195,1198,14211,1267,26204,1290,26205,1408,1594,1895,2228,13831,2236,2253,2256,2281,2283,26208,2291,3198,26210,18463,2311,26212,17568,2675,2990,3006,2899,1894,26213,12936,91,4535,2924,4681], -"docker.io", -[0,26216,26217,13901,26218], -[1,2343,17887], -[0,17888,7923,2514,2443], -[0,1170,1676,26223,4747], -"@bevry/pluginloader", -"ambi", -[1,2343,17894], -"ansistyles", -"bal-util", -[0,17925,17932,17933,2537], -"caterpillar", -"docmatter", -"-baseplugin", -[2,1737,17897], -"eachr", -"envfile", -"errlop", -"-grouped", -[2,13771,17902], -[2,12598,17903], -"extendr", -"extract-opts", -"ignorefs", -"xtorbinary", -[2,8828,17908], -"jschardet", -"lazy-require", -[3,3732,9], -"title", -[2,17912,17913], -"query-engine", -"rfc-log-levels", -"safefs", -"ps", -"safeps", -"scandirectory", -"taskgroup", -"typechecker", -"unbounded", -"watchr", -[0,1595,1676,2071,26228,4747], -"@bevry/", -[3,17583,12], -[2,9787,17927], -[2,17926,17928], -[2,15340,6706], -"kava", -[0,1178,14080,1253,1264,1267,1734,1767,1177,1903,1938,1939,1954,1958,1966,1970,1192,3446,26230,4135], -[0,26232,26234,6698,3015,671,4749,3378,9654,1965,1644], -"projectz", -"valid-", -[2,17935,7204], -[1,2343,17941], -" and deployment", -[2,6147,17938], -" manage", -[0,0,0,17949,2537], -"ment system", -[2,17940,17942], -[2,1563,17943], -"dms", -[2,1746,17943], -" agnostic", -[2,1351,17947], -[0,5260,7268,614], -"templating", -[2,11607,5001], -[1,2343,17953], -[0,0,0,17954,2537], -[0,5194,5260,7268,614], -[1,2343,17956], -[0,0,0,17957,2399], -[0,26249,3426], -[1,2343,17959], -[0,0,0,17960,2537], -[0,26249,1420], -[1,2343,17962], -[0,0,0,17963,2523], -[0,26249,26258], -"docsify", -"docsify.js", -"tabs", -[1,2343,17968], -[0,0,0,17969,2537], -[0,26249,1675], -[1,2343,17975], -"@textlint/markdown-to-ast", -"anchor-markdown-header", -"section", -[2,9787,17973], -[0,0,0,17976,2523], -[0,26249,19400], -"bitbucket", -"gitlab", -"ghost", -[1,2343,17981], -[0,0,0,17983,2523], -[2,20413,4699], -[0,26249,3033], -"doct", -"rine-temporary-fork", -[2,17984,17985], -[1,2343,18006], -"globals-docs", -"konan", -[2,3138,14510], -"micromark-", -"util-c", -"haracter", -[2,17992,17993], -[2,17991,17994], -"filepath", -[2,13721,17996], -[3,3999,9], -"ference-links", -[2,17998,17999], -"unist-", -[2,18001,9381], -"vfile-", -[2,18003,16237], -"vfile-sort", -[0,0,0,18010,2523], -"chdir", -"-schema", -[2,1745,18008], -[0,26249,14741], -"jsdoc3", -"nums", -[1,2343,34449], -[0,26249,3038], -[1,2343,18021], -"big-integer", -"-search-bounds", -[2,17180,18017], -"int64-buffer", -"priorityqueuejs", -[0,0,0,18022,34352], -[0,26249,3040], -"semaphore", -[1,2343,18025], -[0,0,0,18026,2537], -[0,26249,26287], -[1,2343,18029], -"cosmosdb", -[0,0,0,18030,2537], -[0,26249,26292], -"cosmos db", -"document ", -[1,2343,18034], -[0,0,0,18038,2537], -"database", -[2,18032,18035], -"nosql", -[0,1209,26249,7268,614], -[1,2343,18040], -[0,0,0,18041,2523], -[0,26249,26301], -"crowdin-cli", -[3,2694,9], -"gifsicle", -[2,18043,18044], -"jpegtran", -[2,18043,18046], -"png", -"optipng", -[2,18043,18049], -[2,18043,4361], -"tcp-port-used", -[1,2343,18054], -[0,0,0,18057,2537], -"tree-node-cli", -[2,15862,1868], -[0,26249,26307], -[1,2343,18060], -"glob-promise", -[0,0,0,18062,2537], -"websites", -[0,26249,3053], -"open source", -[1,2343,18065], -[0,0,0,18066,2399], -[0,26249,7906], -[1,2343,18075], -[2,15774,1722], -"-languages", -[2,6327,18069], -"to-vfile", -[2,9406,2741], -"lru.min", -"offline-search", -[0,0,0,18076,2537], -[0,26249,1698], -[1,2343,18078], -[0,0,0,18079,2537], -[0,26249,3061], -[2,1611,1388], -"height", -"classlist", -[1,2343,18084], -[0,0,0,18085,2523], -[0,26249,3063], -[1,2343,18088], -"domelementtype", -[0,0,0,18090,2523], -"entities", -[0,26249,3065], -[1,2343,18092], -[0,18093,0,18094,2537], -[0,22983,22985], -[0,26249,1283], -[1,2343,18096], -[0,0,0,18098,2523], -"raster", -[0,26249,6925], -[1,2343,18100], -[0,0,0,18101,2537], -[0,26249,3071], -"qunit-tap", -"lodash.sample", -"paths", -"ncludepaths", -[2,8851,18105], -[1,2343,18109], -"math", -[0,18111,18115,18116,2523], -"mathml", -[0,2353,998,1856,17003,26351,26350,26349], -"secure", -"sanitizer", -"purify", -[0,3421,4389,2675,26357,1177,10824,26358,2990,15797,15804,15793,15801], -[0,3073,2942,1676,1409,4709], -[1,2343,18118], -[0,18119,18120,18121,2523], -[0,20040,16232], -[0,1906,1166,4481,4294], -[0,3656,200,8429,6876,7169,5511,2568,20597,2089,20598,6574,3073,6807,7009,8634], -[1,2343,18123], -[0,18125,18126,18127,2537], -[3,4257,9], -[0,1107,1477,4208,4294,4726], -[0,4874,4290,26371,4481,16041,1906], -[0,3073,2942,6807,200,7009,6048,7201,4166,3076,26375,26376,6811,8634,3730,10036,7521], -[1,2343,18129], -[0,18130,18131,18133,2523], -[0,26383,1676,26385,4038,26388], -[0,192,5467,26390,13757,24030,1177,1881,1895,19527,1938,1955,2151,2675,2742,3421,1894,3752,4384,91], -"expand", -[0,6807,3073,15227,202], -[1,2343,18136], -"interpolation", -[0,0,18138,18139,2523], -"substitution", -[0,26398,4874,2228,2240,2247,2253,2256,24293,2273,2281,2283,26399,26400,2765,4474,91], -[0,3073,2942,6807,1388], -[1,2343,18141], -[0,0,18144,18146,2399], -"archive-type", -"ext-name", -[0,26406,1894,91], -"filenamify", -[0,18108,3080,26408], -"is-zip", -[2,4551,1398], -[1,2343,18150], -[0,18151,18152,18153,2487], -[0,1797,1704,26413,1149,1676,7077,2026,26416,1309,1362,2712,3361,1364,4148,26417,26420,26423,26426,26429,4547,26435,26438,26443,26448], -[0,3421,1429,2228,2297,2899,4193,4707,1177,1596,2240,26453,4342,1389,1719,4196,2298,2900,2291,1575,26455,26457,2040,2236,2300,2871,26459,2283,26462,2281,25407,26465,2881,25410,26466,2895,26470], -[0,5122,7096,4030,5592,2026,4031,2934,1303,1965,12593,3259,18037,1550,3230,26472,3243,25638,14873,4217,26473,5130,5131,26474], -[1,2343,18155], -[0,18156,18159,12113,2523], -[0,9673], -"repository", -"tarball", -[0,1389,1839,4384], -[1,2343,18161], -[0,18162,18163,18164,34352], -[0,26484], -[0,4494,2675,4400,1177,1209,1701,4474,91,4874,4870,6494,192,26488,26486,13789,25298,5467], -[0,18035,1747,1804,26490,21687,2117,6671,2703,26492,26493,1388,1999], -[1,2343,18166], -[0,0,18167,18168,2523], -[0,4874,1317,668,3127,3188,1894,4384,4483,4508], -[0,6879,6650,2325], -[1,2343,18175], -"import-from", -"parse-c", -"md-args", -[2,18171,18172], -[2,4182,4562], -[0,0,18176,18177,2399], -[0,6373,968,26503,4042,4057,91,1983,1984,26504,25079,26507], -[0,26509,26510,26511,26512,26513,26514,26516,26517,26520], -[1,2343,18179], -[0,18180,18184,18187,34352], -[0,1149,1326,26528,3263], -[3,3369,12], -"ckage-data", -[2,18181,18182], -[0,1596,2759,3188,2899,3202,4170], -[3,16398,19], -[2,18185,18182], -[0,158,1398,26532,3729,24800,16662,16661,21881,20637,18048,20639,12712,26533,26534,6870,26535,1504,14908,23119,26536,26537,26539,9135,26541,26542,26543,6792,13615], -[1,2343,18189], -[0,18190,18191,18193,2523], -[0,26548,26551,16053,25874,1519,1522,26552,25190,2934,26553,3445,3762,16057,17798], -[0,2829,26192,3310,26556,1187], -"dox", -[0,3088,36,27,13333,2671,5995,2665,3304,5122], -[1,2343,18195], -[0,18196,18197,18198,4139], -[0,1437,1513,1676,1836,16473,25623,26563,2089,2149,2572,26565,2584,1161,2822,26567,26568,3188,3467,3718,12443,9340,3992,3999,26572,26573,4449,18071,4549,18002,4555,12447,3348,12449,4707,4728,26574,4747], -[0,26578,5245,12396,7637,26579,26581,4874,6520,9315,7819,26584,22092,4892,1610,19878,4207,4294,91,4579], -[0,1783,26586,26587,5472,1745], -"spawn-", -"please", -"spawn-please", -[1,2343,18204], -"@types/temp", -[0,18205,18206,18207,4139], -[0,5012], -[0,442,816,6373,1317,19839,1567,1177,1894,23535,4042,4228,4232,1984], -[0,1871,26597,12938,17950,15139], -[1,2343,18209], -[0,18210,18211,18212,2487], -[0,4729,1170,2832,4484,2018,1209,2738,7665,18730], -[0,1177,4508,9241,91,4874,3400,13204,4870,1011,10638,26606,1009], -[0,26608,21009,91,1723,10339,17623,5284,26611,26614,26617,26620,26622,24090,26624,26626,16697,26628,26631,1745,26632,26633,3091], -[1,2343,18214], -[0,18215,18216,18217,2537], -[0,1437,2051,2205,4600,3249,3505,4300], -[0,2228,2899,4170,2240], -[0,1370,2323,17461,21779], -[1,2343,18219], -[0,0,18221,18222,2537], -"bplist-parser", -[0,8780,4874,1166,2215,21537,4400,4481,1906], -[0,7148,3188,7048,17455,17453,7204,6857,3403,5933,7029,26647,26648,6899,7147,2150,17462,16503], -[1,2343,18224], -[0,0,0,18238,2523], -"alex", -[3,14237,14], -"bjs", -[2,18226,18227], -[2,1884,2081], -"fbjs-scripts", -"gulp-d", -"erequire", -[2,18231,18232], -"stats", -[2,18234,4408], -"webpack-st", -[2,18236,2187], -[0,7048], -"draftjs", -"typed-binary", -"richtext", -[1,2343,18243], -[0,18244,18245,18246,2537], -[0,10780,1139,1301,1362,26657,2866,26658,3507,4545,4736], -[0,4874,1389,26662,26663,1177,26664,2899,1241,91,4535], -[0,20697,1936,26666,4718,1783,5980], -[1,2343,18249], -"just-extend", -[0,18251,18257,18261,2487], -[3,5371,20], -[0,7709,15288,26675,26677,26678,26681,26684,26412,26685,29310,1091,1309,1437,8536,6809,1481,21847,23872,2822,2863,3000,3203,3260,3310,3363,3509,3519,3547,3951,4094,4164,4213,4246,4521,17142,1002], -"ring", -"inline-string", -[2,18250,18253], -[2,18250,2278], -"cypress-", -[0,28091,26688,9687,26690,28084,28092,20886,26694,6494,7637,5542,12461,9240,1009,1011,1177,1895,1955,2150,1192,3403,1894,4232,4342,4468,4469,4480,91], -"file-upload", -[2,18256,18258], -[2,2918,4195], -[0,5995,5592,4030,6710,91,18035,30967,28976,6354,28986,29686,26147,29690,13126,7827,25638,3259,4521,12659,1303,5165,18258,13901,6949,29732,29735,30183,6688,30184,33629,14344,29744,3097], -[1,2343,18264], -"dragndrop", -[0,0,18268,18269,2523], -" and drop", -[2,7518,18265], -[3,12322,11], -[0,19181,26706,578,583,587,32379,26707,4870,4874,4880,4883,1009,1011,1497,1637,1177,4828,1961,1209,3286,3561,3566,3613,26710,26712,1894,89,3824,4164,9348,26713,4493,91], -[0,181,26709,13083,4403,26715,26717,89,26720,91,5284,6400,4967,6073,181,26726,1487,17758,26727,4627], -[1,2343,18271], -[0,0,18273,2514,2523], -"tsutils", -[0,19987,19989,19988,2012,7115], -[1,2343,18283], -"dts-critic", -[3,7935,17], -[2,18276,594], -[2,15438,57], -[2,18276,18278], -"versions", -[2,4524,18280], -[2,18276,18281], -[0,0,18291,18292,2487], -[3,15891,13], -[2,18284,4299], -[3,7729,14], -"able-str", -"ingify", -[2,18287,18288], -[2,18286,18289], -[0,4874,1009,1011,7677,1165,1414,1177,1883,1915,2832,26743,2278,4320,5978,91,1983,26744,1984], -[0,26741,26746,1932,26747,590], -[1,2343,18294], -[0,18296,11686,18297,2537], -[2,11513,2527], -[0,3368], -[0,1783,26755,6892], -[1,2343,18299], -[0,18300,18301,18302,2523], -[0,1139,18089,26761,26762,26763,26764], -[0,5583,811,816,10615,1111,1317,1414,1429,1177,1903,2026,2193,2600,2805,5944,3112,7612,3114,26767,26770,26772,26774,26776,7617,7648,2899,26777,3278,4042,4167,4342], -[0,1783,57,20627,3105,26780], -[1,2343,18304], -[0,0,18305,18306,4139], -[0,5328,1166,5946,3165,4232,4255], -[0,1783,3105,26780,10345,26786], -[1,2343,18308], -[0,0,18309,18310,2523], -[0,5583,816,10615,1414,1177,1903,3105,7648,2899,4042], -[0,26780,3105,1783], -[1,2343,18342], -"dw-neit-", -[2,18312,1512], -"dw-neit-c", -[2,18314,11163], -[2,18315,3007], -[2,18312,45], -[3,1793,11], -"-des", -"ign-react-slick", -[2,18319,18320], -[2,18318,18321], -"rc-co", -"mponent", -[2,12796,9948], -[2,18324,18325], -[2,18323,18326], -[2,18312,18327], -[3,18328,21], -"e-observer", -[2,15557,18330], -[2,18329,18331], -[2,18329,11194], -[2,18329,11184], -[3,18334,22], -[2,18335,13168], -[3,18328,12], -"ascader", -[2,18337,18338], -[2,18337,5449], -[3,18328,13], -[0,0,18309,18352,4139], -"llapse", -[2,18341,18343], -[3,18328,11], -"dialog", -[2,18345,18346], -[3,18347,12], -[2,18348,9997], -[3,18349,13], -[2,18350,11206], -[0,26780,3105,1783,3113,26796,26799,26800], -"field-form", -[2,18345,18353], -[2,18345,158], -[3,18355,12], -[2,18356,1020], -[2,18357,11211], -"mentions", -[2,18345,18359], -[3,18360,14], -[2,18361,11215], -[3,18360,12], -[2,18363,11218], -[2,18345,9044], -[1,2343,18395], -"pagination", -[2,18345,18367], -[3,18368,12], -[2,18369,9947], -[2,18369,10148], -[2,18345,6882], -[3,18372,12], -[2,18373,11227], -"segmented", -[2,18345,18375], -[3,18376,13], -[2,18377,4021], -[3,18376,12], -[2,18379,10205], -[2,18379,11234], -[2,18379,10222], -[2,18345,17966], -[3,18383,12], -[2,18384,11241], -[2,18384,11243], -[2,18345,614], -[3,18383,14], -[2,18388,2699], -"ooltip", -[2,18384,18390], -[2,18386,11245], -[3,18387,12], -[2,18393,184], -[0,18396,18397,18398,2537], -[0,1525,1792,2051,2600,3524,4001,26806,4431,4449], -[0,1596,2759,26808,4255,4389], -[0,1783,2636,6270,1283], -[1,2343,18400], -[0,0,18401,18403,2537], -[0,4874,1414,1437,1894,3985,3998,4294,4505,91,1906], -"control flow", -[0,14903,1783,26815,176,15847,2585], -[1,2343,18405], -[0,0,18406,18408,2443], -[0,17212,4874,4880,4883,33492,668,89,3824,3857,15728,26827,91,188], -"zrender", -[0,1783,33510,89,3698,1219,188,12072,8588,23332,33512,3857,1936], -"@lang/rollup-plugin-dts", -[1,2343,18414], -[2,14678,17116], -[2,9816,1974], -"apache", -[0,18416,16487,18417,2537], -"data-viz", -[0,1537,26835,2226,26836,26837,26838,3183,26839,22230,4001,26840,22557], -[0,26786,20627,1739,1746,1745,26842,156,4017,3966,1783,5980,1932,9591,11043,4001,26843,8924,3902,176,26845,26847,10631,6033], -[1,2343,18419], -[0,18429,18436,18437,2523], -[2,6038,1541], -"gulp-e", -"xclude-gitignore", -[2,18421,18422], -"gulp-rep", -[2,18424,2902], -"gulp-tap", -"linez", -"os-locale", -[0,3167,27252,18578,26852,28035,28719,28722,26987,4290], -[3,5248,9], -"t-stream", -[2,18430,18431], -[3,11320,11], -"ugh2", -[2,18433,18434], -[0,442,19344,1091,1166,1414,26854,1177,1942,1953,1964,1982,26855,2205,2822,26696,2858,3105,26770,26776,7617,17250,17269,3400,4409,4452,91,2924,4677], -[0,1783,671,5980,26859,3124], -"@types/vinyl", -"-fs", -[2,18438,18439], -[1,2343,18445], -"fix", -"enforce", -"gulpplugin", -[0,18446,18447,18448,2399], -[0,1525,1696,2687,2822,2858,26865,3124,3105,3181,26866,25648,27921], -[0,1166,17269,1906], -[0,1783,3124,200,13326], -[1,2343,18450], -[0,0,18451,18452,2537], -[0,5517,26873,26876,16607,6063,6065,16608,16612,1448,20627,1610,12607,668,26739,1177,2600,3105,26878,26880,26881,4039,4131,23878,4484,91], -[0,1783,26885,1936], -[1,2343,18454], -[0,18457,18465,6604,2537], -"keepalive", -[2,4575,18455], -[0,9569,9573,7610,9577,9548,9568,9547,2745,9556,9565,9558,9560,9552,9562,9566,3023,3032,9563,3105,3114,9580,9584,5961,9554,4110,9550], -"aliasify", -"backport", -[3,2250,18], -[2,18460,3227], -"run", -"grunt-run", -[2,4431,4226], -[0,1389,1448,2070,9588,2899,9586,4255,4257], -[1,2343,18467], -[0,18468,0,2514,2537], -[0,1804,26895], -[1,2343,18470], -[0,18471,0,6260,2399], -[0,1282,26902,2926,3060,3070,3744,26906,3911,3935,26908,4649], -[1,2343,18474], -[2,8243,3038], -[0,18475,18476,18477,4139], -[0,97,26915,25212,26917,13746,26921,4127,15918,26922], -[0,53,13052,5825,83,87,94,19961,6503,1009,1011,1145,1195,1414,1503,1700,26703,1854,1177,1895,1903,1938,1951,1953,1955,1958,2024,11425,2061,2070,2323,2338,2036,26924,2297,2895,2900,2904,2923,4922,2925,3188,2899,3200,26925,26927,26930,26932,26933,26935,1894,3729,4193,26940,4441,4474,91,2924,26941], -[0,18108,26944,5746,26934,26945,57,7256,6988,14642,26946,26947,17679,2275], -[1,2343,18485], -"lazy-val", -"dmg-builder", -"builder-", -[2,18481,614], -"builder-lib", -[2,10735,18483], -[0,18486,18489,2514,2399], -[0,6641,26956,13651], -"-runtime", -[2,18482,18487], -[0,2899,2924], -"-ci", -"@types/is-ci", -[1,2343,18504], -"nsis", -"dmg", -"msi", -"setup", -"Windows", -"OS X", -"MacOS", -"Mac", -"appx", -"snap", -"flatpak", -[0,0,18505,18506,34352], -[0,2899,4255], -[0,3135,26963,26965], -[1,2343,18515], -"asar", -[2,8243,18508], -"notarize", -[2,8243,18510], -"osx-sign", -[2,8243,18512], -[2,8243,14566], -[0,18516,18519,18520,2537], -[0,9363,9315,26972,23289,12429,3167,26981,26983,26985,26986,26987,26990], -"-windows-exe", -[2,1615,18517], -[0,4874,1414,26992,668,17232,23276,2581,3140,26993,1894,3985,3998,4072,4505,91,1906], -[0,6892,1783,26885,26995,26564,1644,5341,1633,23266,6435,614], -"galactus", -[3,2179,12], -"info", -[2,18522,18523], -"junk", -"author", -"parse-author", -"rcedit", -[2,27093,33977], -[1,2343,18531], -[0,18532,18533,18534,2523], -[0,12396,9363,23247,23289,27003,27006,23254,4555,12449], -[0,4874,23262,1414,2581,2588,3137,27008,27010,1894,3985,3998,4505,91,1906], -[0,23266,26564,26995,2587,23267,614,6435,1783,1936], -[3,8256,10], -"ownload", -[2,18535,18536], -[1,2343,18539], -[0,0,18541,18542,2487], -"home-path", -[0,1091,10738], -[0,2382,27017,27018,1623], -[1,2343,18544], -[0,18546,0,18547,2523], -"wonderful-fetch", -[0,27073,27076], -[0,27078,2325,5576,24093,27080,27081,27083,27084,3143,27085,18037], -[1,2343,18549], -[0,18550,18553,18554,2537], -[0,18529,33978,33980,33981,33983,33990,33998,34001,27092,27094,26256,27472,27096,4484], -"-processor", -[2,6870,18551], -[0,5087,27098,4874,1130,1145,1398,2651,2675,27099,1192,3502,1894,3729,3923,4039,4393,4468,4469,4474,4487,27101,91,1002,614,2924,4677,4681], -[0,2150,17462,27103,3150,3144,2090,6771,2944,3151,27105,4607,1973,5472,3212,27106,27108,27110,27111,27112,27113,27114,27119], -"grunt-banner", -[1,2343,18557], -[0,0,18558,18559,2523], -[0,5535,5366,5087,27124,19446,4874,1009,1011,1317,1610,1177,1895,1939,1955,2024,27125,1192,3044,3057,3117,27126,13824,19445,27127,3467,1894,4039,4042,4069,4073,4075,4201,4468,4474,4484,91], -[0,7906,27130,2325,6681], -[1,2343,18567], -"@vue/comp", -"onent", -"iler-utils", -[2,4312,18563], -[2,18562,18564], -[2,18561,18565], -[0,0,18568,18577,2523], -[0,1429,2323,4193,27136,2463,4196,2447,2436,2839], -"algoliasearch", -"vue-jsx", -[2,1226,18570], -[3,1280,9], -[2,17006,18487], -[2,18572,18573], -"cp-cli", -[3,17554,15], -[0,2325,27138,2869,13901], -[2,27009,12442], -"lemefe", -[2,18576,18579], -[3,2095,9], -"gulp-cssmin", -"-editor-middleware", -[2,8427,18583], -[3,3112,13], -"hain", -[2,18585,18586], -[1,2343,18600], -"version-cli", -[2,9951,18589], -"transl", -[2,18591,6917], -"uppe", -"rcamelcase", -[2,18593,18594], -[3,4645,13], -"es2015-co", -[2,18597,14717], -[2,18596,18598], -[0,18601,18602,18603,4139], -[0,25911,3923], -[0,1329,15990,1596,1177,2759,2899,4170], -[0,2150,3151], -[1,2343,18605], -[0,0,18606,18607,2523], -[0,2025,2899,2228,2240,2300,2273,3760], -[0,3151,1973,3101,2041,7046,1398], -[1,2343,18617], -"brorand", -"hash.js", -"hmac-drbg", -"istic-assert", -[2,6907,18612], -[3,18613,13], -[2,1619,594], -[2,18614,18615], -[0,0,18618,2514,2537], -[0,2899,4170,640], -"EC", -"Elliptic", -"curve", -"Cryptography", -[1,2343,18624], -[0,8856,7938,7939,2487], -[1,2343,18626], -[0,0,18628,18630,2523], -"@ladjs/consolidate", -[0,811,8850,816,13789,7892,1166,27163,1532,1677,27164,27166,2020,2205,2709,27171,18183,27168,3919,11891,4042,4057,4060,13781,27162,4481,4507,91,1906,4748], -"@ladjs/i18n", -[0,200,20052,614,6435,1383,6478,1523,3924,3157,27173,27174,57,5675,6802,6847,8429,7201], -[1,2343,18638], -"get-paths", -"juice", -"preview-email", -"@jimp/core", -"-sendgrid", -[2,3361,18636], -[0,0,18642,18644,2537], -"lad", -"lass", -"mail", -[0,4856,6503,4874,1429,1540,2899,91,2924,4677], -"mailchimp", -[0,1698,6899,2051,1496,3048,1388], -"mailgun", -"mandrill", -"moonmail", -"postmark", -"sendgrid", -[1,2343,18651], -[0,0,18652,2514,2537], -[0,27184,2759], -[1,2343,18654], -[0,18662,18663,18664,2537], -[3,7639,9], -"ilparser", -[2,18655,18656], -"mtp-server", -[2,5051,18658], -"mailparser", -"smtp-server", -[0,1457,1525,1676,2226,16085,27189,3170,27190,27191], -[0,19181,442,27194,10723,5245,8778,4874,27196,1414,1177,1938,1953,2203,2899,1894,3980,4452,91], -[0,2947,12479,2090,13755,5351,5353,1179,1783,5352,3160,4745], -[1,2343,18672], -"yam", -"sane", -"dag-map", -"p-defer", -"tree-sync", -"console-ui", -[0,18674,0,2514,2399], -"is-git-url", -[0,27202,13223,2674,27203,27206,4039,4135,4390,4449], -"quick-temp", -[1,2343,18677], -[0,18680,18681,2514,4139], -"content-tag", -"core-object", -[0,4590,1676,3164,3494], -[0,2899,1177,2759,4342,1954,1938,1958,1903,1948,1970], -[1,2343,18696], -"capture-exit", -[2,26872,33868], -"stew", -[2,1379,18685], -[2,1379,1676], -"base-url", -[2,1463,18688], -"watch-", -"detector", -[2,18690,18691], -[2,1379,5614], -"broccoli-s", -[2,18694,5585], -[0,0,18711,18712,2523], -"-or-copy", -[2,7100,18697], -[2,1379,9381], -"-graph", -[2,14940,18700], -"is-language-code", -"-posix-path", -[2,13626,18703], -"-project", -[2,2116,18705], -[3,18701,11], -[2,18707,2942], -[2,11338,1781], -[2,6333,18709], -[0,2899,2759], -[0,27,3164], -"map-series", -[2,9466,18713], -[3,1381,10], -"iddleware", -[2,18715,18716], -"trees", -"low-trees", -[2,18694,18719], -".hash.helper", -[2,1862,18721], -[3,7648,14], -[1,2343,18738], -"rminal", -[2,18723,18725], -"fs-monitor", -[2,18707,18727], -[2,7077,2849], -[2,4099,18729], -[3,18693,12], -"fig-loader", -[2,18731,18732], -[3,18733,16], -[2,18734,4068], -"-reducer", -[2,1378,18736], -[0,18739,18749,18754,2443], -[0,53,61,5717,4851,5240,5874,5838,87,14128,90,8862,5583,811,8850,816,27221,27223,1165,7913,27225,27228,22829,1405,1420,1874,2098,2553,2929,3060,3561,3714,4042,13879,10854,4073,4076,4079,11481,4072,11482,4484,91], -"@pnpm/find-workspace-dir", -"-works", -"pace-root", -[2,18741,18742], -[2,4749,18743], -[2,2103,18744], -"ulate-cache-key-for-tree", -[2,3563,18746], -"is-pa", -[0,48,13693,27232,5522,107,1193,1610,27234,1177,27238,1895,1955,1999,2151,2675,1192,2990,27244,1894,3957,4039,4165,4294], -"missing", -"ckage-missing", -[2,18748,18751], -[2,1828,18752], -[0,6374,4042,27246], -[1,2343,18759], -"-registry", -[2,4358,18756], -[2,1828,18757], -[0,18775,0,18780,2537], -"yuidocjs", -"chai-files", -"yuidoc", -"-ember-cli-theme", -[2,18762,18763], -[3,10419,19], -[2,18765,2022], -[3,18753,11], -"-test-", -[2,18768,6706], -[2,2270,18769], -[2,18767,18770], -[3,1827,11], -"lueprint-test-helpers", -[2,18772,18773], -[0,5245,1676,26972,23289,27252,27256,17995,27259,27262,26981,27263,26985,27265,27003,27267,26986,26987], -"app-kit", -"ember", -[2,5802,18776], -"ember.js", -[0,20627,4643,3987,1936,16892,1783,26885,5980,4549,1644,57,1932,3729,3984,8924,3902,11326,207], -[1,2343,18782], -[0,18783,18797,18798,2523], -[0,15643,3530], -"amd-name-resolver", -[3,1201,14], -"ebug-macros", -[2,18785,18786], -[3,12186,15], -"ber-data-packages-polyfill", -[2,18788,18789], -[3,18790,19], -"modules-", -[2,4610,6422], -[2,18792,18793], -[2,18791,18794], -"broccoli-b", -[0,2899,3181,27275,2398], -[0,16159,27277,27278,18132,27280,7256,24440,27281,2090,1586,7131,2100,2070,21543,21544,24441,27282,27285,27287,3529,13777,6421,19051,3170,3181,3249,27289,27291,3403,13017,11601,27293,1108,6961,6920,4166,4259,21520], -"-transpiler", -[2,13830,18799], -[2,18796,18800], -[2,6324,6706], -[2,1827,18802], -"version-ch", -"ecker", -[2,18804,18805], -[2,1828,18806], -[1,2343,18821], -"@ember/optional-features", -"@ember/", -[2,18810,1871], -[2,18810,13281], -"@glimmer/component", -"@glimmer/", -[2,18814,17357], -[3,10614,11], -"s/lerna-changelog", -[2,4406,18817], -[2,18816,18818], -"ember-a", -[0,0,18836,18837,2537], -"uto-import", -[2,18820,18822], -[2,1705,1524], -[2,1828,18824], -[3,18771,12], -"-live-reload", -[2,2429,18827], -[2,18826,18828], -"initializers", -[2,3614,18830], -[2,5802,18831], -"ember-qunit", -[2,5802,14056], -[2,5802,4225], -[0,27299,7746,4874,1009,1011,1437,27301,3173,1894,23901,27302,91], -[0,7188,2090,3171,7305,7070,614], -"-channel-url", -[2,18835,18838], -[2,15508,2478], -"loader.js", -[1,2343,18843], -[0,18845,16075,18846,2399], -"ember-addon", -[0,7305], -[0,3171,553], -[1,2343,18848], -[0,11570,11571,18849,2537], -[0,27314,27315,27316,27317,27318,27319,27320,27322,27323,27315,27325,27326,27328,27330,27332,27333,27337,27338,27340,27341,27343,2262,7287,27334,27344,27346,27348,27350,27353,27355,27357,27358,17697,27359,27360,17737,17739,5284,17625,17626,676,91,17627,6869,4799,6915,6333,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,5933,1451,7914,27363,27365,17651,6899,17720,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,27366,6681,17740,1745,17116], -[1,2343,18861], -"edition-utils", -[2,18810,18851], -[3,4644,15], -[2,18853,5218], -[2,18791,18854], -"-inline-precompile", -[2,1829,18856], -[2,1199,18857], -"broccoli-p", -"ersi", -[0,18862,18866,18869,2443], -[0,4121,4388], -"stent-filter", -[2,18860,18863], -[2,18859,18864], -[0,48,53,87,192,5467,442,27928,19344,4874,1367,1610,1622,1628,1700,1701,1854,1177,1895,20281,1938,1939,1942,1953,1955,1982,2092,2203,2675,1192,2780,2832,2990,3144,3400,1894,2278,4111,4257,91,4523,2924,4677,4681], -"code-equality-assertions", -"js-string-escape", -[0,2924,1623,7682,11498], -"@emb", -"roider/test-setup", -[2,18870,18871], -[2,1828,1462], -[1,2343,18875], -[0,18879,18880,18881,2523], -"ort-", -"-global", -[2,13527,18877], -[0,27377,842,1462,27379,1676,668,2105,30621,16860,28134,27380,4072,27385,27388], -[0,27390,1177,27393,27394,10624,27395], -[0,3178,16862,676,1623,11807,1936,14357], -[1,2343,18884], -"dat", -[0,18885,18887,2514,2443], -[0,27404], -"ember-s", -[0,4384,4483,3188,4508,1894,4874], -"tyleguide", -[2,18886,18888], -[3,1243,11], -[2,18890,4486], -[2,5802,18891], -[1,2343,18896], -"ember-try", -[2,1921,2907], -[0,0,18897,18898,2537], -[0,1158,3421,4389,1177,3410,2708,1159,4103,13614], -[0,6478,7128,57,3460], -[1,2343,18900], -[0,18907,18908,18910,2537], -"@emmetio/abbreviation", -"@emmetio/", -"css-a", -"bbreviation", -[2,18903,18904], -[2,18902,18905], -[0,1525,3313], -[0,22102,1192,1894,4468,91], -"coding", -[0,27425,27428,21655], -[1,2343,18912], -[0,0,18913,18914,34352], -[0,27407,4874,13680,1414,1895,1894,4384,4474,4508,91], -[0,7148,7204,7161,7048,4014,6899,970], -[1,2343,18916], -[0,18917,18918,2514,2523], -[0,1082,3510,15450,27438], -[0,4874,7677,1446,1177,1905,5210,2807,1894,15452,91,4543,1984], -[1,2343,18920], -[0,0,18921,18922,2537], -[0,53,61,71,83,87,92,97,27445,2126], -[0,3190,27447,13795,5128,89,6071,27448,11415,27449,27456,27458,27459], -[1,2343,18925], -"finish", -[0,18926,18927,18928,2523], -[0,27464], -[0,3190,27464,27468], -[0,3190,27447,5128,89,6071,27448], -[1,2343,18930], -[0,18931,18932,18933,2537], -[0,2591,3242,1687,2070,1676,4747,2105,2822,1457,3181,3527,7801,3074,4748,27476,17450,4351,27481,4300,1874,4143], -[0,3421,1429,2931,1776,2297,4193,27510,1177,3278,3984,4039,4042,4135,2203,26079,2924,1894,1610,442,27500,91,27501,4874,2665,2900,3105,4677,4892,1509,3123,3401,10630,62,27490,27497,27506,27507,1953,17529,3125,27509,5946,3114,4923,3107,8850,27499,8862,2904,2915,2881,811,27504,4079,13866,4066,816,23652,27495,27487], -[0,2899,1973,5982,6969,4384,5472,1429,6468,1166,1192,4389,2765,2297], -[1,2343,18935], -[0,18936,18937,18938,2487], -[0,7058,3758], -[0,1429,2899,25928,91], -[0,2899,6533,3758,3197], -[1,2343,18940], -[0,18941,18942,18945,2523], -[0,1676,3135,3188,4294,6523], -[0,826,1429,6524,1177,2899,4039,27525,27526], -"entitify", -"entity", -[0,2899,2793,16237], -[1,2343,18947], -[0,0,0,18948,2443], -[0,2899,16237,27532,4504], -[1,2343,18950], -[0,0,18953,18954,2523], -"enumeration", -"datatype", -[0,1429,1177,21470,2899,4039,4135], -[0,3212,2150,1973,1182,6771,3151], -[1,2343,18956], -[0,18957,18958,18959,4139], -[0,27544,2159,15312,27547,2571,2756,3431], -[0,5517,13614,23237,27552,27555,27557,27559,27562,27564,27567,27568,27570,27571,27573,27575,27576,4874,27578,27580,19325,1159,9254,1855,1177,2011,2133,2569,2708,3410,3421,4103,4389], -[0,5472,3212,3048,3205,6692,6822,1973,6865,6739], -[1,2343,18961], -[0,18962,18967,18970,2537], -[0,12929,3369], -[3,15801,15], -[2,18963,200], -"ify-object", -[2,4745,18965], -[0,1610,1177,2899], -"issues", -"reporting", -[0,3209,7190,14419,14416,14510,22228,1973,3212,13106], -"diagnostics", -[1,2343,18973], -[0,0,7923,18974,2487], -[0,1973,3212,202,2150,2184], -[1,2343,18987], -[3,1143,20], -"function.", -".name", -[2,6688,18978], -[2,18977,18979], -[3,2620,13], -[2,18981,3053], -"oolean-object", -[2,15644,18983], -"allable", -"is-callable", -[0,0,18991,18998,2523], -"umber-object", -[2,13631,18988], -"is-string", -[0,2899,4042,4076,4170,91], -"is-subset", -[2,3024,1867], -[2,3436,6693], -"rst-selector-parser", -[3,11434,17], -[2,18996,6678], -[0,1666,3212,1973], -[1,2343,19004], -" rendering", -[2,4161,19000], -"Render", -[2,4161,19002], -[0,0,19008,19009,2487], -"test utils", -" helpers", -[2,6468,19006], -[0,2759,2272,4193,27601,4616], -[0,3212,13106,3209,1237,2325,2275,1973,27603,5472,6969], -[1,2343,19011], -[0,5621,19012,19013,2523], -[0,2323,2372,27608,2436,2447,2463,27610,2272,2839,2924], -[0,3212,27612,27614], -[1,2343,19015], -[0,19016,19021,19022,2537], -[0,7058,2070,2929,1209,11993,3084,3310,2015,27624,27623], -"airbnb-", -[2,19017,3744], -"fromentries", -[2,3436,19019], -[0,2812,4481,27633,1192,3241,27649,3533,1676,27637,1409,27635,1759,1177,3078,27658,1096,2738,3363,27656,4474,4709,27636,27643,2774,27648,1894,1596,27641,2777,3379,4342,27645,3747,91,27659,4874,27632,27655,27634,27657,27628,27644,27630,27647,25710,27660,27640,1954,27652,826,27626,1958,1895,1955,1966], -[0,27662,14584,5130,5995,27664,17829,14586,3166,11631,24090,27666], -[1,2343,19024], -[0,0,19025,19026,2523], -[0,2907,4042,1610,91,4874,2915], -[0,3220,1666,6901,1644,1671,2649,2679,6728,6804], -[1,2343,19028], -[0,19029,19030,19031,2537], -[0,3220], -[0,2228,2247,2273,2277,2281,17565,91], -[0,3220,1666,6901,27679,27680,27681,27678,16626], -[1,2343,19033], -[0,19034,19035,19037,2523], -[0,2858,27688,27692,27693,27696,3502,1894,27700,27702,27703,4745], -[0,27709,32818,7677,668,21290,3541,3985,27711,91,1984,27714], -[2,6296,3741], -[0,6038,4967,6400,27708,21290,4745], -"codependence", -[1,2343,19040], -[0,0,19061,19062,2399], -" for es6", -[2,4354,19041], -"check for ", -[2,19043,5260], -"es check", -"es matching", -"es version", -" check", -[2,5286,19048], -[3,19049,11], -"matching", -[2,19050,19051], -[2,19050,15525], -"js version", -[2,19054,19048], -[3,19055,11], -[2,19056,19051], -"test ", -[2,19058,19054], -[2,19058,19053], -[0,442,4874,7677,1177,1895,1966,1982,1894,4039,4508,4514,17223,91,4523,1983,26744,1984], -[0,27722,27723,27724,5675,27725,6400,5995], -[1,2343,19064], -[0,19068,19075,19079,4139], -"bigints", -"has-bigints", -"intl-", -[0,16003,32967,16005,16000,19267,15999,20870,23721,19282,6372,27731,1364,1367,23723,1395,1505,1525,1575,1610,1640,1759,1853,2026,9243,2040,2117,27735,27737,2626,2814,7796,3162,3230,27740,3237,3527,23726,4148], -"back-symbol", -[2,9925,19069], -[2,19067,19070], -[3,5742,14], -[2,3094,19072], -"make-a", -[0,53,68,87,27742,27743,1195,1429,1465,1540,1584,1628,1651,1177,1881,1938,1982,26154,2092,2675,2899,12690,3322,3363,4307,4342,2924,4677], -"unction", -"sync-function", -[2,19074,19077], -[0,20897,27746,6910,18035,27747,8626,8298,27749,1550,3230,27750,27751,27752], -"reflect", -".ownkeys", -[2,19080,19081], -[2,7315,7262], -[2,5511,19083], -[1,2343,19086], -[0,19087,19088,19089,4139], -[0,1395,27759,27762], -[0,3421,4481,29749,1429,1437,2899,4193,27764,4747,1177,4135,27765,2026,2822,4474,1894,4196,91,5307,4856,4874,1436,27767,6503,6513,27768,5254,6494,27772,27775,27776,27779,6512,27781,27782,4232,1951,1978,1895,1955,608,603,1011,27786,15115,27790,27792,1009,10964,549], -[0,3230,13392,11489], -[1,2343,19091], -[0,19095,19098,19103,2399], -"es6-symbol", -"esniff", -"next-tick", -[0,27798,3230,27799,27800,3242,27801], -"plain", -[2,19096,4007], -[0,30604,29957,4874,27803,27805,27807,1091,1414,1448,18192,1177,13850,2026,2151,2600,21630,3044,27810,20451,3127,3188,2899,3220,27786,12690,29780,3275,3754,4193,29998,91,4523,3348], -"ecmascript5", -"ecmascript6", -"extensions", -"addons", -[0,3230,1746,11415,2844,18035,27812,2382,27814,3766,18037,3469,1747], -[1,2343,19105], -[0,19106,19107,19109,2523], -[0,1605,1541,1292,4218,4545,4220,27822], -[0,2228], -"es5 shim", -[0,3233,27826,27827,20863,27829,27830], -[1,2343,19111], -[0,19112,19107,19113,2523], -[0,1541,1544,3233,27835,27822], -[0,3233,27837,27826,27827,27838,12619,20863,27840], -"rettime", -[1,2343,19116], -[0,19117,19131,19133,4139], -[0,27847,1676,3230,27849,27852,27855,27856,27857,27859,3427], -"json3", -[2,1379,4042], -"git-repo-", -[2,19120,15525], -[2,1379,4650], -[2,1379,4535], -"-phantom", -[2,3736,19124], -"6-plugin-strip-class-callcheck", -[2,1172,19126], -[3,14198,32], -"nstants", -[2,19128,19129], -[0,1166,1503,1177,1903,1920,1938,1954,1958,1970,27861,27866,27869,27872,27873,27874,27875,3421], -"futures", -[0,3236,3230,1550,13392], -[1,2343,19135], -[0,19136,19137,19139,2523], -[0,1304,1676,1704,3440,16128], -[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4237,4342], -[3,7872,9], -[0,2026,27,2942,2663], -[1,2343,19141], -[0,7936,7938,7939,2399], -[1,2343,19143], -[0,19144,19147,19148,2399], -[0,4729,4038,1676,27764,4238,27897,27899,3183,9241,3084,27902,1537,27910,3923,27905,14731], -"es6-tests", -[2,12790,19145], -[0,3421,1429,4389,4193,1177,2202,3188,4039,4170,4216,668,2203,4474,1457,1894,27912,442,3697,3980,91,4856,4874,19325,6513,1834,27918,27920,19181,12310,5536,5476,10936,27924,1938,1895,1955,1011,1567,5478,27915,1009,10614], -[0,3241,27927,20001,20003], -[1,2343,19150], -[0,0,19152,2514,4139], -[2,31089,9224], -[0,2675,2899,1177,1894,2025,2990], -[2,31715,31719], -[1,2343,19155], -[0,19156,19157,19158,2399], -[0,27936,1525,1676,25625,25635], -[0,192,5467,16607,6065,16608,16612,2899,4131,4255], -[0,18035,3243,14872,36,27939,26472,27940,27942,25635,27944,26472,27945,13531,27948], -[1,2343,19160], -[0,19162,19163,19164,2443], -"special", -[0,27959,617,9213,27962,977,2220,27964,9218,9219,3509,3527,19114,4266,9221,4454,4507,27955,4747], -[0,192,5467,19151,19181,442,17982,5497,9225,9226,8648,6494,27966,4874,19153,1009,1011,5474,1170,13662,1527,1610,1613,1652,668,8161,1177,1895,1955,2026,2078,19213,2070,2832,27967,2931,2990,27969,1894,23535,3957,4039,9245,4493,91,4523,4548,4027,1984,9250,2924,9258,3244], -[0,5592,3212,8788,6812,6688,36,11100,1852,5472,6400,10768], -[1,2343,19166], -[0,19169,19170,19173,2537], -[2,18756,4219], -[2,1370,19167], -[0,27978,1410,1537,3188,3427,1000,1695], -[0,1693,2026,2139,27981,2899,3421,4039,4255,27984], -"-everywhere", -[2,10906,19171], -[0,1669,3689,15237,2139,27986,2026,2663], -[1,2343,19175], -[0,19176,8134,19178,2537], -[0,22970,27992,3181], -[3,442,8], -[0,18132,2100,2070,21543,21544,3529,13777,3181,13017,11601,21520], -"config-array", -[2,19177,19179], -[2,19177,1998], -"@humanwhocodes/module-importer", -[3,19182,15], -[2,19183,1153], -"@nodelib/fs.walk", -"esquery", -"imurmurhash", -"-without-jsonify", -[2,2851,19188], -"levn", -[1,2343,19196], -"@eslint/co", -[2,19192,23], -[2,442,1803], -"@trunkio/launcher", -[0,19197,19198,19199,2523], -[0,4538,2657,4100], -[0,3421,27999,2899,1177,3188,4039,4339,4012,1948], -[0,2090,9229,2141,3101,6949], -[1,2343,19201], -[0,19211,19212,19214,2537], -[2,3192,5130], -[2,11095,19202], -[3,1992,9], -"lease", -[2,19204,19205], -"eslint-r", -"ule-composer", -[2,19207,19208], -"eslump", -[0,2100,2151,2859,1209,5303,3445,3348], -[0,2765,3421,33373,3980], -"fs-teardown", -[0,1649,1936,28007,3256,28009,28012], -[1,2343,19217], -"metascraper", -[0,0,19228,19229,2537], -"-description", -[2,19216,19218], -[3,19219,12], -[2,19220,158], -[2,19220,11255], -[2,19222,4147], -[2,19220,17913], -"node-po", -"lyfill-webpack-plugin", -[2,19225,19226], -[0,1999,1429,4770,2899,1177,2272,4042,3758,4535], -[0,3257,1283,5354,1797], -"npm-license", -"polyfills", -[2,4065,19231], -[1,2343,19234], -[0,0,19236,19237,2399], -"yorkie", -[0,1759,2323,2384,2508,2675,2297,2881,2908,2915,28023,28024,1894,25851,2907,4039,4042,4072,28027], -[0,10052,8691,28030,7131,6333,7518], -"sql-escaper", -[1,2343,19240], -[0,19241,19245,2514,2443], -[0,1325,3923,4100,28036], -"ape-runner", -[2,1285,19242], -"eslint-f", -[0,1087,1177,4127,28038,28039,28040], -"ind-rules", -[2,19244,19246], -[1,2343,19249], -[0,19250,19251,19252,2537], -[0,3080,24383,18073,2685,19238,28047,28049,28052], -[0,1414,4494,28059,2203,1894,1317,1610,442,3560,91,4874,28056,19181,27928,6473,1895,1955,1011,28058,1009,13188], -[0,3259,5576,36], -"using-browser-globals", -[2,12084,19253], -[1,2343,19256], -[0,19257,19258,19259,2443], -[0,21243,3427,21246], -[0,2759,1362,2899], -[0,19138,1862,28067,21244,5194], -[1,2343,19264], -[3,3703,10], -[3,9487,11], -[2,19261,19262], -[0,0,19265,19266,2537], -[0,28072], -[0,3417,202,15525,10057,28074,202,17180,1263], -[2,15998,23720], -[1,2343,19272], -"quality", -"jslint", -"code style", -[0,0,19274,2514,2537], -"verify", -[0,1326,1525,2070,705,3923,4384,1695], -[1,2343,19276], -[0,0,19277,19278,2537], -[0,4548,4874,91], -[0,28088,2382,705,1781,18037,3166,2378,18035], -[1,2343,19283], -" config", -[2,1177,19280], -"@lezer/highlight", -[0,19284,19285,19287,2523], -[0,5012,1634,1639,28094,26902,28095,17011,7917], -[0,10821,10828,10837,5087,4874,5090,4880,1177,10619,2675,28098,1192,2968,28101,2990,1894,3744,89,3824,3904,4039,4232,4469,4484,91,2924,4676,4681,4749], -[2,15289,17540], -[0,1623,590,592,3528,2378,2994,89,676,7164,7165,369,4636,4627,4315,28103,5547,5376], -[2,19289,1564], -[3,28155,14], -[1,2343,19291], -[0,0,0,19292,4139], -[0,3348,3778,3265,1002], -[1,2343,19294], -[0,19295,19296,19297,2537], -[0,18509,1170,1809,2151,28115,28116,3079,3275,28118,4108,4232,4449,4747], -[0,5245,4864,28120,5087,21621,4874,28123,6520,4892,1009,1011,1804,1177,1895,1955,1192,3541,1894,4039,4469,91,2924,4677], -[0,28125,1804,1896,970,21009], -[1,2343,19299], -[0,19300,19303,19304,2487], -[0,4729,3467,4390,2806,3445,3348,1170,1473,2072,4747,20991,1209,3078,3127,3188,3483,4135,3013,4708,4734,2003,3742,4167,1137,1457,1894,3761,4473,3181,28130,1483,4183,4227,91,28132,8612,28133,19499,28135,20949,28136,28137,14774,28142,3762,635,28145,28151,19288,1573,20934,28155,28158,28164,28214,28167], -"eslint-patch", -[2,9112,19301], -[0,1429,2228,2675,2899,4193,26212,2759,9241,13214,4856,4874,7819,2314,2990,9357,28177,28178,6513,4892,28180,4870,28182,5254,28184,28187,28189,7812,7749,14352,28192,28195,1431,2258,4232,2247,2283,33046,28203,9417,28206,5244,28211,1567], -[0,3271,91,5284], -[1,2343,19306], -[0,19307,19321,19322,2487], -[0,28219,28223,28224,1759,2665,28225,3232,3519,1552,18730,28228,26940,4545,3348,28230], -" Standard Style", -[2,17626,19308], -"code checker", -"code linter", -"code st", -"andards", -[2,19312,19313], -"policy", -" style", -[2,4255,19316], -[2,590,16792], -"style ", -"style linter", -[0,811,8850,816,23689,4874,1009,28232,1610,1177,21564,1938,1953,1958,2323,2441,28233,2765,2766,671,3275,3421,28234,3752,4039,4042,4193,4232,4255,4474,15097,91,28235,2924,18237], -[0,28238,28241,17134,28242,28243,207,28244,28245,28246,28247,28248,28249,28251,28253,28256,28258,28260,28261,28265,28266,4420,28267,28269,28271,28273,28274,28275,28277,28280], -[1,2343,19324], -[0,19326,19327,19328,34352], -"@types/tape", -[0,2714,1149,4747,28285], -[0,3421,4616,1177,1596,28287,3980,10614], -[0,8309,28289,28291], -[1,2343,19330], -[0,0,19331,19340,2523], -[0,2899,4039,21228], -[3,19180,15], -[2,19332,3323], -"__js", -[2,5601,19334], -"automd", -"eslint-t", -"ypegen", -[2,19337,19338], -[0,200,1585], -[1,2343,19342], -[0,0,19343,19345,2523], -[0,4874,4880,1009,1011,1587,1177,1895,1955,1959,1961,1161,1894,4484,91], -[3,7844,24], -[0,28303,6085,89,1896,28304,12780,190,5995], -[1,2343,19351], -"xoxo", -"hugs", -"kisses", -"happy", -[0,19352,19354,19355,2537], -[0,1149,3188,4545,3012,28310], -"happiness", -[0,1429,2899,4193,705,1525,28312], -[0,18035,27814,21687], -[1,2343,19357], -[0,19358,19360,19361,2523], -[0,2685,4113], -"cabin", -[0,2861,17910,2899,3756,3760,4170,4193,4734], -[0,27,2671,2869,705,5576,15237,9229,2658,25386,17481,8426,8431,977,7436], -[1,2343,19363], -[0,19364,0,19365,2523], -[0,28324,28325,1525,1595,2720], -[0,200,12659,13527,1523,6876,678,4636], -"boolean", -[1,2343,19368], -[0,19369,19370,19371,4139], -[0,28331,1149,28333,13223,1483,1512,1525,1645,2098,28335,1209,3188,28340,28342,28344,28346,3718,4135,28348,4717,4736], -[0,28353,1429,1705,28356,18420,1177,1942,13231,1951,1966,2822,2899,3297,3421,28358,3938,4153,4167,4193,4734], -[0,3283,28360,5592,5472,15656,28362,4030], -[1,2343,19373], -[0,19374,19375,19376,2537], -[0,30869,28367,28371,28372,13471,13474,13476,30243,13495,13497,13500,13502,28373,1537,2674,28375,27967,2854,28379,3923,28380,4135,4715], -[0,7709,28384,36559,28387,28390,28394,692,28395,28396,28399,1091,1149,1168,28400,1414,13838,1525,1570,28401,13848,1177,1942,28406,2070,2212,2675,1776,2990,3019,3297,3747,3752,4039,28408,4193,4339], -[0,13539,6681,27838,14029,28411,28413], -[2,5223,594], -[2,1876,19377], -[1,2343,19381], -"is-bun-module", -[0,19382,19383,19384,2523], -[0,97,28418,977,12105,3424,28420,3698,28423,3348], -[0,5154,48,53,14167,83,87,90,92,28436,842,16145,966,968,972,20562,974,5087,4874,28426,28425,4880,4883,1165,28435,28433,1540,1637,1192,2780,2802,3244,3286,3561,3566,3640,89,3824,4705], -[0,89,6710,3424,2038,28438,5165,3287,16944,5168,28439], -"@types/is-", -[2,19385,2070], -[1,2343,19388], -[0,0,0,19389,2523], -[0,3286,1149,28445,28446], -"node-lib", -[1,2343,19392], -[0,0,0,19393,2399], -[0,1098,1973,5472,3212,8788,4627,12442,7170,9962,11100,28453,28454,4967,6400,1192,2765,1843,13106,7190], -[1,2343,19395], -[0,19396,0,19397,2537], -[0,13,28459,8597,1668,4484], -[0,5127,4964,1098,181,5130,4967], -[1,2343,19406], -[3,16405,17], -"defaults", -[2,19399,19400], -"-azure-pipelines-cli", -[2,1529,19402], -"riendly-formatter", -[2,19244,19404], -[0,19407,19408,19409,2537], -[0,2212,3348,4745,16509,2057,3028], -[0,1429,1437,2899,4193,4874], -[0,3290,28467,28468,3014,28469], -[1,2343,19416], -"enhance", -"-visitors", -[2,19411,19412], -[2,1876,594], -"espurify", -[0,0,19417,2514,2399], -[0,1429,1544,2899,3754,4151,4333], -"-spelling-correcter", -[2,3166,19418], -[1,2343,19423], -"ava-rule-tester", -[2,1876,19421], -[0,19424,19425,19426,2487], -[0,1676,28480,19400,1804,28483,28484,2835,28485,3188,16112,3441,4039,28486,4238], -[0,1149,1304,27731,1362,1429,1431,1177,1895,1955,2026,2675,2899,28488,3246,3549,1894,4151,4237], -[0,3292,1804], -[1,2343,19428], -[0,19429,19430,19431,2487], -[0,28494,28498,28500,4856,28502,14552,11869,15374,1371,28503,1437,1458,1483,28504,28505,1759,1797,1842,2070,2832,1209,3181,3183,2899,28510,3445,3467,20460,4130,4135,28512,4294,4558,3348], -[0,221,842,4874,1009,1011,1587,1610,1177,2675,2742,2822,2990,3200,4925,28514,28517,3215,3297,3421,89,3824,4039,4146,4474,4481,28519], -[0,3294,28521,28522,5472,11132,14336,11861,28525,11862,4627,11857,1973,1388,5131,8791,13426,1649,2899,13428], -[1,2343,19433], -[0,19437,19447,19450,4139], -"ast-m", -"etadata-inferer", -[2,19434,19435], -[0,11124,826,28535,18248,3509], -[2,19192,13172], -[3,5536,14], -"16", -[2,19439,19440], -"aniuse-lite", -[2,4857,19442], -[3,6309,16], -"moize", -[2,19444,19445], -[0,11134,28537,1389,2675,2832,8821,2990,2899,28539,3421,1894,3752,28542,28543], -"config-erb", -[2,15086,19448], -[0,1973,5472,21147,3212,4731,36], -"kangax", -[1,2343,19453], -[0,19454,19455,2514,2537], -[0,28550,617,2854], -[0,2212,3421,1429,1192,2899,4193,1177,4039,1894,2139,1719,3752,4196,91,3400,15342,4131,1954,1951,826,1938,1958,1895,1903,7935], -[1,2343,19457], -[0,0,19458,19459,2443], -[0,1317,1326,28556,1177,2151,29197,3697,4135], -[0,28558,28559,11154,970,1326,3122,14655,3263,3299], -[1,2343,19461], -[0,19465,19470,19471,2537], -"/plugin-pwa", -[2,4613,19462], -[2,10982,19463], -[0,1496], -"eslint4b", -[3,4630,11], -[2,19467,6038], -"vuepress", -[0,3421,2228,2899,4170,1596,2240,18463,91,4874,18555,1506,28565,22081,2247,2283,28567,28570], -[0,2325,20164,2703,6884,3250,3151,6943,202,3143,3048], -"exported", -"eslint-env", -"eslint-en", -[2,19474,4000], -"eslint-d", -"isable", -[2,19476,19477], -[2,19478,10240], -[3,19479,15], -"next-line", -[2,19480,19481], -[1,2343,19484], -[0,0,19485,19486,2537], -[0,4874,28577,2151,2675,2899,3421,4039,91,28580], -[0,202,3111,13017,6956,28582,6899,6726,2382,13626,28583,1745], -[1,2343,19495], -[3,8097,32], -[3,1879,9], -"mments", -[2,19489,19490], -[2,19488,19491], -"ot-an-aardvark", -[2,16819,19493], -[0,19496,19497,19498,2487], -[0,1672,28589,28590,2179,3183,3330,814,4135], -[0,4874,1177,1938,2675,2990,1894,4384,28593,4453,4474,91], -[0,22687,2999,4345,3233,2282], -"@foxt/js-srp", -[2,4284,12118], -[1,2343,19506], -[3,15471,15], -"anonical", -[2,19502,19503], -"gitdown", -[0,13856,11488,19507,2443], -[0,3308,7204,4014,28599,2090,14629,17721,2150], -[1,2343,19509], -[0,19510,19511,19517,2537], -[0,21642,28604,28605,28608], -[0,10614,842,5601,1009,1011,7677,17298,1622,1177,17300,1930,1942,1945,1948,1953,17303,17306,1964,1985,17308,2675,17310,2931,2990,3124,3125,3390,17312,1894,17314,3708,3980,28611,17318,4493,91,1984,17319], -"@html-eslint/eslint-plugin", -[3,19512,13], -[2,19513,57], -"link-check", -[2,3115,19515], -[0,3113,2869,26800,26799,28613,28614,28615,28617,28618,28619], -[1,2343,19519], -[0,19520,19521,19529,2537], -[0,16566,28624,21163], -[0,1079,13867,1410,1414,1429,1431,28626,21480,1596,2139,13870,2899,3480,28628,4481,1906], -[2,13039,7015], -[3,1143,17], -"indlastindex", -[2,19523,19524], -"doctrine", -[2,17612,202], -"object.g", -[0,1612,27,1862,705,7085,7289,4731,7102], -"roupby", -[2,19528,19530], -[1,2343,19536], -"/template-parser", -[2,1177,19533], -[2,12908,19534], -[0,0,19537,19542,2487], -[0,1389,1525,1610,1177,28635,2026,2297,2871,2881,2891,2895,2897,2900,2904,2912,2915,2921,28636,2925,2899,3202,28638,3421,15767,2924,4677,28639], -"escope", -"fs-copy-file-sync", -"linklocal", -[2,3045,4552], -[0,28641,28642,28643,28644,1616,12588,28645,28646,28647,28648,27,2671,3135,11996,28649,28650,28651,28652,28653,4160,28654,28655,28656,21000,28657,28658,28659], -[1,2343,19546], -"npm-which", -[2,4523,1574], -[0,19547,19548,19549,34352], -[0,1170,1676,1209], -[0,1429,2899,3752,4193], -[0,1885,6599,6645,586,12296,28666,28647,28667,2109,12295,1121,8899], -[1,2343,19551], -[0,19556,19557,19558,34352], -"@schemastore/package", -"ts-export-assignment", -[2,13996,19553], -[2,13970,19554], -[0,1362,3310], -[0,1429,1177,1192,4193], -[0,28674,28676,28677,1885,14554,28678,28679,28680,28681], -"-repositories", -[2,1992,19559], -[1,2343,19562], -[0,19563,19564,19572,2537], -[0,16473,28688,2215,26567,3368,3727,4135,4390,27921,4707], -[0,1326,1610,1177,2899,3263,29197,28691], -"@es-", -"joy/jsdoccomment", -[2,19565,19566], -"are-docs-informative", -[2,13721,5651], -"spdx-expression-parse", -"synckit", -[0,970,11154,1237,3122,14655,1326,14654], -"@es-joy/", -[2,19573,1875], -[3,19567,13], -[2,4522,1574], -[2,19575,19576], -"@hkdobrev/run-if-changed", -"pree", -[2,5600,19579], -[2,5600,3766], -"defaultsdeep", -[2,6308,19582], -"@types/sp", -"dx-expression-parse", -[2,19584,19585], -[3,5210,11], -[2,1226,19587], -"ype-", -"pratt-parser", -[2,19589,19590], -[2,13587,19591], -[2,3032,1697], -[1,2343,19596], -"open-editor", -[0,19597,19598,19599,2523], -[0,1632,2591], -[0,16868,1448,1610,1177,28698,2616,3321,28699,28702,15512,28704,2654,28706,28707,3493,4039,25213,4257,4474,4749], -[0,1936,57,6710,91], -[1,2343,19604], -[0,68,5522,107,19492,19194,19605,19609,19344,23339,6503,19616,4874,5254,1009,1011,1414,19619,668,1177,1895,1933,19620,1942,19622,1945,1948,1953,19623,1955,1964,1988,17308,1994,2018,2203,2899,3486,1894,4135,4320,19624,4323,19626,19629,1531,4494,91,4523,19630,4614,4630], -[0,13678,13679,13681,34352], -[1,2343,34428], -[0,19613,19618,19631,2523], -"@ota-meshi/eslint-plugin", -[3,19605,11], -"-kit-eslint-editor-vue", -[2,13755,19607], -[2,19606,19608], -"-scope", -[2,5601,19610], -[3,19611,14], -[0,1149,28713,1676,2026,2070,3507,1997,4135,4148,28715,28716,28717,4707,4729,4747], -"@types/na", -"tural-compare", -[2,19614,19615], -"xbytes", -[0,1429,2151,1161,2272,2899,3378,1862,4039], -"env-cmd", -[2,1931,5550], -[2,18008,8546], -[2,17585,19621], -[2,1954,8770], -[2,4946,12054], -[3,5978,26], -[2,19625,188], -[3,4330,11], -"tylus", -[2,19627,19628], -[2,4609,19466], -[0,1676,6782,3323,15267], -"jsonc", -[1,2343,19634], -[0,19635,19636,19642,2443], -[0,1080,1560,1704,2145,20103,3164,3171,3494,3781,1000], -[0,4856,6503,1009,1011,1429,1177,1881,1895,1938,2675,2899,3421,1894,4193,4196,4474,4481,91], -"-flow", -[2,12184,19637], -"axobject-query", -"damerau-levenshtein", -"es-iterator-helpers", -[0,3212,13106,28726,6710,676,5472,1973,27,28728], -[1,2343,19649], -"jsx-ast-utils", -[2,9551,2640], -"regex-test", -[2,4099,19646], -[2,18996,7015], -[0,19651,19652,19653,2399], -"to-ast", -[0,28733,2755,4135,28735,3348,4707], -[0,1587,1610,1177,1900,1903,1938,1954,1958,2675,1192,2990,28737,1894,4039], -[0,28740,28743,22005,28744,22011,15844,28747,28748,9044], -[1,2343,19655], -[0,19656,19658,19659,2523], -[0,1304], -[2,18576,13064], -[0,1364,2026,2899,4170,4342], -[0,3424,28438], -[1,2343,19661], -[0,16583,11580,11581,4139], -[1,2343,19663], -[0,19664,19665,19666,4139], -[0,20584,3188,3278,3368,3393,3411,1997,4039,4135,4390], -[0,1168,2272,3297,4389], -[0,970,11154,1237,3122,14655,1326,17180], -[1,2343,19668], -[0,19669,19670,19672,2537], -[0,3299], -[0,2899,1177,28768,640,1610,91,4874,6503,1011,1009], -[2,1927,8982], -[0,28770,6621,7009,28771,28772,28773], -"ts-i", -[1,2343,19677], -"gnore-import", -[2,19673,19675], -[0,19678,0,19679,4139], -[0,28792,28790,28782,28786,1304,1309,1594,2026,2151,28783,3368,4135], -[0,6038,8899,28794,2124], -[1,2343,19681], -[0,19682,19683,19684,2399], -[0,3263,2164,2070,3157,1437,1209,640,2185,28799,1615,28800,28802,28804,26567], -[0,3421,2899,1177,4039,2151,28806], -[0,1623,22022,7121,2278,4329,590], -[1,2343,19686], -[0,19690,19691,19693,2537], -"-helpers", -[2,9654,19687], -[2,7627,19688], -[0,12680,28813,28816], -[0,3421,4389,4193,1090,1177], -[3,3995,13], -[0,16618,5957,12692,1605,28821,27105], -[1,2343,19695], -[0,19697,0,19698,2537], -"@chromatic-com/storybook", -[0,3460,1512,3171], -[0,27,2947,2090,36], -[1,2343,19700], -[0,0,19701,19702,2523], -[0,3421], -[0,6926,6668,3348], -[1,2343,19704], -[0,0,19705,19710,2399], -[0,2151,2899], -[2,19707,103], -[3,35573,13], -"ug", -[2,17304,19708], -[0,28837,2282,28838], -[3,3708,17], -"kg", -[2,19711,19712], -[1,2343,19715], -[0,19716,0,19717,4139], -[0,6523,4747], -[0,28844,6574,11100,28845,6807,2013,28847,28849,28850,5957], -[1,2343,19719], -[0,19720,19721,19722,2537], -[0,3354], -[0,28856,28858,4874,1177,1894,3706,4493,91,8552,1984], -[0,28860,57,9381,3354,28861], -[1,2343,19727], -[3,19525,24], -"tosorted", -[2,5613,19725], -[0,19730,19733,19737,2443], -"repeat", -[2,18996,19728], -[0,2571,2741], -[2,5609,14255], -[3,5235,22], -[0,13614,1158,1177,2708,17400,3410,3421,3435,4103,4389], -"unction-bind", -[2,19732,19734], -"ls-engines", -[0,2051,6970,28869,1496,1585,24135], -[1,2343,19739], -[0,19740,19741,19742,2523], -[0,2212,3263,2856,3776,1209,4391,2151,640,3337], -[0,4647,2899,2272,1168,1448,28877,2759,1173,1596,2820,28879,17370,1267], -[0,28881,28882,3358,970], -[1,2343,19744], -[0,0,19746,19747,2487], -"refa", -[0,28043,1409,1414,1177,1895,2203,28890,28891,28892,28894,1894,2658,28895,18661], -[0,28897], -"analysis", -"-ast-analysis", -[2,6961,19749], -"scslre", -[1,2343,19760], -"eslint-s", -"-rule-tester", -[2,11298,19754], -[2,19753,19755], -[2,19758,29135], -[3,17306,17], -"@types/pako", -[0,19762,19763,19764,2523], -[2,3192,15264], -[0,1457,1676,13775,3181,28904,4135,18174,4351,4453,28903], -[0,192,5467,1149,1506,1177,2675,2899,3421,3752,4131,4170], -[0,200,3233,3233,5001,22687,28908,2999,7009], -[1,2343,19766], -[0,19768,0,2514,2523], -"safe-regex", -[0,1797,4384], -[3,19494,16], -"desecurity", -[2,19769,19770], -[1,2343,19774], -[2,202,1965], -[0,19775,19776,19777,2537], -[0,4039,1764,28917,4747,4135], -[0,705,4389], -[0,28921,3364,7242,28125,13527], -[3,3568,11], -"red-black-tree", -[2,19778,19779], -[1,2343,19785], -"al-red-black-tree", -[2,19076,19782], -[2,5537,19783], -[0,19787,0,19788,2523], -"sonarjs", -[0,28367,1091,1092,20437,12384,1096,28927,1170,1364,1457,1575,1594,1648,2026,9243,28929,28930,2070,2593,28933,28934,2856,28935,2863,28936,3083,12792,28940,3230,3241,3277,16617,28859,3361,3445,3519,28944,1552,2999,4010,28945,28948,4709,7801,4745,4747], -[0,28950,3366,5284,6710,5130,5995,4967,12660,28951,28954,28956,28957,1781,28959,2844,2856,4745,1896,28960], -[1,2343,19790], -[0,19791,9888,19792,2537], -[0,4545,1437], -[0,10446,28967,9753,14690,57], -[1,2343,19794], -[0,19796,6538,2514,2523], -[2,4353,67], -[0,23432], -[2,19612,594], -[2,5600,594], -"@types/less", -[2,13058,3675], -[3,4890,11], -[2,19801,4332], -"svelte-i18n", -[1,2343,19806], -"sveltejs", -[0,0,19807,19808,4139], -[0,2398,3183,2899], -[0,28977,28978,28979,2090,28980,17996,18442,28981,7517,2150,3374,3403,10903,15323,4207,28982,28983,28984,28985], -[1,2343,19810], -[0,0,8134,19813,2537], -"-formatting", -[2,1939,19811], -[0,3374,1002,12831,15427,1871,28992,28994,3766,3767,28996,4301,6678,28997], -[1,2343,19815], -[0,0,0,19816,2523], -[0,29004,28992,1388], -[1,2343,19818], -[0,19819,19820,19821,2537], -[0,1437,16064,1494,1595,1700,29013,1874,2020,5989,29016,2613,15980,2704,2720,2744,29018,29020,29022,2991,29023,3074,3157,29024,29025,21420,3445,29026,27534,3505,27168,3919,4094,4135,5513,26573,4562], -[0,21642,5254,1166,1532,24491,2151,29028,4193,4294,4400,29030,1906], -[0,13326,200,3378,20001,3358,6645,15525,15208,1528], -[1,2343,19823], -[0,19828,19830,19831,2537], -[2,1463,6961], -"regexp-", -"regexp-tree", -"regjsparser", -[0,3242,2714,4390,2070,3368,3917,4248,23433,1437,3478,4707,23432,3483,4135,9448,1458,29037,21505,640,3727,29039,3181,9451,9452,2976,2979,2981,29042,29044,4425,29051,2215,29053,25881,29054,29055,25888,29056,29057,9459,4351,2613,3386,3762,635,29059,25893,26567,29061,9462,29063,643,9465,3397,29066,29067,9476,9479,9539,19570,638,4588,9496,9501,9506], -"@lubien/fixture-beta-package", -[0,1091,4384,1687,3297,9542,3984,4039,1483,3988,29069,1092,29070,3393,10630,29071,29073,9515,9516,26037,29077], -[0,1161,5260,6878,6661], -[1,2343,19833], -[0,19834,19840,19845,2537], -[0,1499,3467,3157,1437,2020,2742,1695,29085,2205,1209,4135,7094,3537,1703,2720,3181,3309,4294,4425,3505,29088,9478,6045,14564,29084,4562,29087], -"@ver", -"/eslint-config", -[2,5401,19836], -[2,19835,19837], -"bumpp", -[0,1906,1173,1282,1267,1255,1245], -" eslint plugin", -[2,1984,19841], -"eslint ", -[2,19843,1932], -[0,3378,29093,4796,17507,13729,4354,24313,5592,24095,200,6953,29095,29096,7242,4797], -[1,2343,19847], -[0,0,19848,19852,2537], -[0,29101,17212,4856,9417,29103,29104,12458,29105,7637,29111,4870,6503,4874,29115,29117,20374,6510,7812,5254,29122,6513,29125,1009,1011,1420,1429,1431,21480,1437,1483,1525,1610,20573,1177,1895,29128,1903,1938,1942,1953,1958,2071,27125,2105,29129,2613,2714,2822,2858,29133,3019,1209,3125,2899,3397,3400,3478,13723,3530,1894,3730,29136,29087,4038,4039,11054,4135,29138,4170,4193,4232,18201,4294,4474,91,29139,4558,4562,29140,1983,29141,29142,26744,4749], -"name-", -[2,19849,1155], -[2,4732,19850], -[0,4796,3378,6661,3076,29144,18280], -[2,4807,19851], -[1,2343,19855], -[0,19856,6538,2514,2523], -[0,2613,3727,4135,4588], -[1,2343,19858], -[0,19859,19865,19867,2487], -[0,1091,8531,1437,1595,1676,2205,2687,2745,2858,3074,3157,3545,4135,4207,4300,4507,4588], -[3,10879,16], -[2,19860,13921], -"importx", -"ink-", -[2,19863,1975], -[0,5087,4874,1009,1011,668,29154,1177,29155,29158,1930,1938,1939,1955,1982,2089,1192,17312,29160,1894,4468,91], -"eslint-test", -[0,671,9654,6661,13716,29162,3390], -[1,2343,19869], -[0,19870,19872,2514,4139], -[0,15980,3727], -"esrecurse", -[0,635,9516,9515,29169,4384], -[1,2343,19874], -[0,19875,19876,19879,2399], -[0,9459,25336,26567,21505,29176,29174,3386,3727], -[0,9516,9515,9448,3297,28691,4248,4384], -[2,1006,13060], -"json-diff", -[0,3378,29179,1612], -[1,2343,19881], -[0,19882,19885,19886,2537], -[0,1437,26079,3919,3181,1110,1615,4165,3152,29185], -[3,8724,21], -[2,19883,676], -[0,3421,4749,2899,1177,4039,1503,3479,2151,4874,3696,1280,29188,13983,1225], -[0,200,1523,29190,4990,3378,29191,18462,21003,4144,12804,5957], -[1,2343,19888], -[0,19889,19890,19886,2443], -[0,4707,26079,3530,1110,1615,4165,3152,9488], -[0,1414,2931,4749,1776,2899,1177,23909,29197,1159,17529], -[1,2343,19892], -[0,19893,8134,19894,2523], -[0,16687,20789], -[0,3378,18462,3403,3383,20052,17180,20054,1508,200,6876,16701,8435], -"-fb", -"esprima-fb", -[1,2343,19898], -[0,0,19899,19900,2523], -[0,5087,4874,1009,1011,10817,1177,1895,1192,2990,26230,4039,4042,4468,91], -[0,29208,1745,29210], -[1,2343,19902], -[0,19903,19904,19915,2537], -[0,1437,1479,1525,1676,2720,3741], -[0,1429,2899,3215,4255], -"escomplex-js", -"thing.js", -[2,7067,19906], -[3,2912,12], -"techpreview-launcher", -[2,19908,19909], -[2,17485,18551], -[2,813,19911], -"8.0.0", -[2,5857,19913], -[0,18497,3378,29218], -[1,2343,19917], -[0,19918,19919,19923,2487], -[0,2720,3776], -[0,1173,1212,1245,29224,1280,3400], -"gulp-ta", -"g-version", -[2,19920,19921], -[0,3378,200,8429,1523,3888,8791,24095,3409,29227], -[1,2343,19925], -[0,19926,19927,19928,2487], -[0,2571,3183], -[0,13614,1159,9254,1177,2708,2807,3421,4103,4389], -[0,3410,16774], -[1,2343,19930], -[0,19931,19932,2514,2487], -[0,9892,25886,29239,10744], -[0,4384,9515,9516], -[1,2343,19934], -[0,0,19935,2514,2537], -[0,1429,2814,2832,2899,29246], -[1,2343,19938], -[2,2009,10896], -[0,19947,19949,19951,2537], -"@ethereumjs/config-nyc", -[3,19939,19], -[2,19940,1894], -[2,19940,11540], -[3,19942,21], -[2,19943,671], -[3,17583,11], -"karma-tap", -[0,1437,1482,29251,2674,2720,29253,4135,8363,4747], -"typestrict", -[0,1366,1501,19771,2556,620,3203], -"transactions", -[0,1965,3413,19773], -[1,2343,19953], -[0,19954,19958,19959,2523], -[0,29260], -"-cryptography", -[2,9439,19955], -"rlp", -[0,5087,4874,1009,1011,1587,1177,1895,1955,2675,1192,1894,3720,4039,4468,4474,91], -[0,3414,29263,200,5122,8310,18496,89,202,91,5284,2924,1192,4967,5995,12660], -[1,2343,19966], -"@types/assert", -"cp256k1", -[2,5252,19962], -"karma-t", -[2,19964,2528], -[0,0,19967,19968,2487], -[0,1429,2258,2277,2298,2300,23167,2297,2878,2881,2895,2900,2904,2915,3006,2899], -[0,3415,6988,1671,6901,29269,29271], -[1,2343,19970], -[0,19973,19975,19978,2523], -"es-lookup-scope", -"os-tmpdir", -[0,29276,29277,1525], -"qs-iconv", -[0,48,53,87,94,1195,1208,1212,1544,1593,1610,1177,1881,1938,2026,2151,2182,29280,29282,29283,29285,3421,3524,4151,4535,4537,2924], -"eval", -"evaulate", -[0,1283,17950], -[1,2343,19980], -[0,0,0,19981,2523], -[0,2703,202], -"pause-stream", -"combiner", -[2,4279,19983], -[1,2343,19990], -"asynct", -"it-is", -"stream-spec", -"ubelt", -[0,0,19992,19993,2399], -"flatmap", -[0,5517,13614,23237,19325,1159,1414,9254,1177,2807,2708,3410,4103,4389], -[0,3417,3418,2649], -[1,2343,19995], -[0,0,0,19996,2399], -[0,1623,12080,29300,13777,3585], -"addEventListener", -"addListener", -"pub/sub", -"emits", -"publish", -[1,2343,20004], -"subscribe", -[0,20005,0,20006,2537], -[0,1797,3467,4449,2117,3445,4745,1170,1495,4484,4747,1759,2687,4135,2089,1836,2777,3181,4459,1477,3527,4393,1480,2149,2858,3404,4290,4748,1763,4480,29306,24759,29308,29309,29310,29313,29317], -[0,9621,9622,8174,9623,9624,9625,9626,9627,9628,9659,9648,9649,29319], -[1,2343,20013], -"-browser", -"-browsers", -[2,7177,20009], -"sauce-", -"sauce-test", -[0,20017,20020,20021,2537], -"EventEmitter", -[2,20014,1276], -[2,20014,1278], -[0,14022,8697,29324,1573,1677,2102,2105,15261,2179,2070,11935,29325,14024,29328,11938,11940,11943,3093,29330,3478,29334,4025,4039,4174,29335,14025,4747], -"Events", -"reactor", -[0,29338,13103,4019,4232,4255,4257,4384,3348,4707], -[0,4504,16237,20049,5472], -[1,2343,20023], -[0,20024,20025,20026,2523], -[0,29358,8818,5941,28935,26865,13824,12285,3509,29349], -[0,29355,29359,29362,4874,4493,91,1984], -[0,5592,2210,3452,29365,29367,29368,29369,29370,3422,1118,27662,1745], -[1,2343,20028], -[0,20029,20030,20031,2537], -[0,29358,29377,2822,12285,8126], -[0,29355,7637,29380,3297,4493,91,1984], -[0,5592,1118,2210,1745,27662,29370,3422,3452,29369,29365,29368,29367,28360,8124], -[2,3159,591], -[2,13788,20032], -"human-", -[2,20034,7073], -[1,2343,20037], -[0,0,10435,2514,4139], -"final-newline", -[2,4293,20038], -[3,4759,11], -[1,2343,20045], -"get-node", -"is-in", -"is-in-ci", -[0,0,20046,20048,2523], -[0,1906,1166,1209,3130], -"is-running", -[0,3048,3426,2051,3583,6778,5286,5258,6805,29390,6422,1858,1388], -"subprocess", -"fork", -"execfile", -"bin", -[1,2343,20055], -"binaries", -[0,0,20056,20057,2537], -[0,1389,2323,2346,27608,29396,2436,2447,2463,2494,2496,2530,2272,2839,2297,2881,2900,2899], -[0,3048,3428,4160,3135], -[1,2343,20059], -[0,0,20060,20066,2487], -[0,13614,29404,1159,1593,22932,1855,1177,2133,2159,2070,29406,2569,29410,2708,2762,19073,3206,3410,3421,4103,23948,4135,19729,4389], -"stdio", -"stderr", -"drain", -"flush", -"3584", -[0,3430,7123,3048,1646,3721], -[1,2343,20068], -[0,0,20069,20070,2537], -[0,13614,13616,1177,14741,29416,2741,4389], -[0,6801,3432,6964,1858], -[1,2343,20073], -"-jsdom-abstract", -[0,0,20077,20078,4139], -"expect-", -[2,20074,594], -[2,552,20075], -[0,3421,1429,2899,1596,3202,29424], -[0,1697,3403,7318,29426,3038,3205,1758,3743,3048,7002,29428,29429,6692,3639,6803], -[1,2343,20080], -[0,20081,20084,20086,2487], -[0,1417,7272,13609,29440,2569,3433], -"mkal", -[2,1949,20082], -[0,13613,13614,1389,1177,2133,2159,13619,2571,3206,3410,3421,4103,6810,4389], -"pkg-pr-new", -[0,7276,3426,6789,2051,7107,6970,7288,6849,6763,6422,1858], -[1,2343,20089], -"type-check", -[0,20090,20091,20092,2487], -[0,1417,7272,13609,29440], -[0,13613,13614,20492,1159,9254,1177,2159,13619,2708,3410,3421,4103,4389], -[0,6944,6694,6801,3437,6693,7221,6615,7194,1858,3048,3432,6422,6763], -"orms", -[1,2343,34459], -[0,29450], -"array-f", -[0,3421,2899,1177,1954,1938,1958,1903,1948,1970], -"array-flatten", -"setprototypeof", -"merge-de", -[1,2343,20104], -"scriptors", -[2,20100,20102], -[0,20107,11686,20108,2537], -"-password", -[2,16722,20105], -[0,29456], -[0,3441,3046,6985,16114], -[1,2343,20110], -[0,20111,20112,20113,2537], -[0,29462,29464,1138,1457,1615,2687,4459], -[0,21122,4874,2675,2990,1894,4039,91], -[0,2070,2282,1444], -[1,2343,20115], -[0,20116,20118,20119,2523], -[0,29474,3029], -[2,30722,20731], -[0,6503,29476,1503,2272,2899,3203,3210,3421,4474,91], -[0,29478,28794,29479,24996,29480,25004,20181,29481,29483,6667], -"automatically", -[2,1163,8623], -[3,20121,11], -[2,20122,7120], -[2,20121,2353], -[1,2343,20126], -[0,20127,8002,20128,2523], -[0,29488,29490,28428,24488,28429,27908], -[0,1896,3445,3456,8423,8427,6587,8430,8428,10441,8429,1388,6038,8435,8433,1002,10443,10446,7058,1614,2978,1451,3729,5351,2090], -[1,2343,20130], -[0,20131,20132,20133,2523], -[0,2096,2185,3157,3445,4400], -[0,1166,2020,1906], -[0,13326,200,1896,3445,3456,8423,8427,6587,8430,8428,10441,8429,1388,6038,8435,8433,1002,10443,10446,1614,2978,1451,3729,5351,2090], -[1,2343,20135], -[0,20136,20138,20139,2487], -[0,29501,29505,12285], -"express3", -[0,5087,7637,8818,1170,29509,1192,2845,29512,3244,1894,4232,4468,4474,91], -[0,3452,8124,5576,1170,4967,1388,3212,91], -"partials", -[1,2343,20142], -[0,20143,20144,20145,2523], -[0,1677,2639,2854,3105,3744,89,3824,1155], -[0,68,470,1173,1248,15643,1596,1177,1879,1881,1938,1947,1958,1959,2200,2626,1192,3363,3400,705,4008,7707], -[0,8124,3452,29521,1936,1745,1179], -"unless", -[2,2032,20146], -[1,2343,20149], -[0,20152,20153,20154,2443], -"authn", -"authz", -[0,6825,3263], -[0,2070,705,4389], -[0,3455,29528,23196,29531], -[1,2343,20156], -[0,0,5795,2514,2487], -[1,2343,20158], -[0,20159,20160,2514,4139], -[0,29539,705], -[0,1173,1267,1177,1879,1938,1947,1959], -[1,2343,20162], -[0,20163,9839,20128,34352], -[0,2755], -"caching", -"expressjs", -[1,2343,20167], -[0,20168,20169,20172,2537], -[0,4720,3183], -[0,29551,4384], -"cjs-mock", -"hoare", -[0,7233,7058,5675,57,7119,200,1523], -"tRPC", -"RPC", -"express.js", -[2,10988,16957], -[1,2343,20180], -"fully-typed", -"type-safe", -[0,20187,20191,20192,4139], -"pi", -"typed-api", -"express-api", -"http-api", -"client-s", -[2,20185,2847], -[0,1637,29559,3561], -"unit-testing", -[2,13843,5576], -"web-de", -[0,1175,1193,1245,1257,1264,1628,1192,4307,2924], -[0,6829,11337,2054,16862,6707,7293,2924], -"velopment", -[2,20190,20193], -"web-api", -[1,2343,20197], -[0,20198,20199,20200,2443], -[0,29566,29567,4717,20088,19190,26007], -[0,29569,2899], -[0,14690,6802,29572,200], -[3,8286,12], -[2,20201,364], -"lient-", -"redirects", -[2,20203,20204], -[2,13224,20205], -[2,20201,20206], -[3,20207,13], -[1,2343,20210], -[0,20213,20214,20216,4139], -"reset-classic", -[2,20208,20211], -[0,1437,1477,1480,29018,16232,3074,29581,4290], -[0,4874,1166,2188,29583,4481,1906], -"sanitization", -[0,200,1478,6787,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], -[1,2343,20218], -[0,20219,20220,20222,2399], -[0,1834,29590,29591], -[0,2012,2530,2272,3102,3159,2899,3760,4170,4600], -"openapi3-ts", -[0,1149,5957,12804,2940], -[3,19441,15], -[2,20223,6643], -[1,2343,20228], -"wagger-ui-express", -[2,5051,20226], -[0,20229,20230,20231,2443], -[0,1149,1362,18443,9421,1209,3507,29600,29601], -[0,1414,1437,2070,2899,3230,3259,3519,4135,4170,4193,4246], -[0,3469,27812,18035,3259,25638,29605,7827,3230], -"camelize-ts", -[1,2343,20234], -[0,0,0,20235,2537], -[0,202,888,364,1237], -[1,2343,20237], -[0,20238,11686,20239,2487], -[0,19972,25493], -[0,6639,6884,4571,29615,3403,3741,29616], -[1,2343,20241], -[0,0,20242,20244,2537], -[0,4856,4864,6503,4874,4891,26584,1429,2020,2151,2899,3377,4474,2924,4707], -"snakify-ts", -[0,5194,6778,29622,29624,18135,1871,1283,8958], -[3,18009,14], -[2,20245,4990], -[2,4120,7020], -[3,8116,9], -[1,2343,20253], -"pecification", -[2,20248,20250], -[2,4364,1745], -[0,0,0,20254,2523], -[0,3475,5317,29632,29633,3474,9006,4967,1388], -[1,2343,20256], -[0,20257,20258,20259,2523], -[0,29638,1525,2131,2742,2975,4135,4449,36872], -[0,19181,442,19344,9237,18491,4874,5254,6520,36890,1009,1011,1177,26698,4039,91], -[0,200,29641,19101,20001], -[1,2343,20261], -[0,20264,20265,20267,2523], -"-symbols", -[2,3426,20262], -[0,3480], -[0,4874,1166,1702,4481,1906], -"is-extendable", -[0,1862,2018,2013,13771,2016,26349,6868,20000,15535,19138,29647,29648,6703,29649,1803,1388,965,1149,7003,6567,1362], -"array-slice", -"benchmarked", -[1,2343,20271], -[0,0,20274,20276,2523], -"for-own", -"kind-of", -[0,1166,1437,1702,17474,29654,17477,4481,1906], -"props", -[0,1862,3053,29656,6703,6910,21369,7253,25824,29657,1149,7003,6567,1540,6994,12804,1362], -[1,2343,20278], -[0,20279,20285,20286,2537], -[0,2017,3480], -[2,20284,29685], -[2,1884,2924], -[3,4679,10], -[2,20282,3031], -"@pa11y/", -[0,13789,5366,4874,1317,1701,1702,17474,18669,29654,17477,4481,4494,91,1906], -[0,1862,3768,28483,7051,6760,6994,6925,7094,6882,6870,7072,27334,27338,29664,12692,5957,1149,7003,6567,1362], -[1,2343,20288], -[0,0,20289,20291,2443], -[0,1166,1702,17474,21638,4193,17477,4481,1906], -"@types/yauzl", -[0,1862,17481,1851,29672,1149,7003,6567,6901,17480,12618,1362], -[1,2343,20293], -[0,20294,20295,20296,2537], -[0,2070], -[0,1192,1894,10761], -[0,1745,3709,29679,6774], -[1,2343,20298], -[0,20299,20300,20301,2523], -[0,20280,1169,1324,1525,1842,2929,3257,3357,3758,4135], -[0,1414,1177,29689,2899,29691,10627,4193], -[0,6653,7320,19748,31152,13716,13428,11346,1169,16790,200,33055,29727,34150,26632,3482,3758,11937,34151,5472,1155,34152], -[1,2343,20303], -[0,20307,20308,20309,2537], -"gulp-jsdoc3", -[2,2462,6504], -[2,4598,353], -[0,29069,9510,9479,9539,643,9448,29051,21505,3386,3393,9462,3397,3727,29698,29697,4248,4390], -[0,635,9516,9515,2613,29169,3297,29701,4039,4384], -[0,6666,3378,3358], -[1,2343,20311], -[0,20313,20315,20316,4139], -"color-support", -[0,22970,22971,29707,1668,18145,29708,1209,3074,3093,3478,3545,4507,29711], -[2,13721,15526], -[0,13789,11477,4870,4874,29717,977,1701,2096,2182,29721,3505,29722,4494,91,1906], -[0,27968,5351,13755,5122,1002,23992,4202,12197,29724,29726,13008,8745,8340,6398,17461,3758,3195,158,8221,8924,1936,29727,23691,20630,20631,18048,20637,21881], -"console.log", -[1,2343,20320], -"timestamp", -[0,0,20321,20322,2537], -[0,4874,7677,22839,33261,35609,1177,1938,1942,2832,91,1983,1984], -[0,4967,5995,5354,4963,181,6624,24456,23362,27448], -[1,2343,20324], -[0,0,20326,20331,2443], -"pure-rand", -[0,87,5583,811,816,1177,2193,2899,3253,26777,3421,4042,4073,4167], -[3,16596,12], -[2,20327,2024], -"poisoning", -[2,20327,20329], -[0,15008,25386,25388,16518], -"based", -"based testing", -[2,4635,20333], -[2,11861,10428], -"quickcheck", -[1,2343,20338], -[0,20343,5795,20344,2487], -"jscheck", -"jsverify", -"fuzz", -"fuzzer", -[0,27404,1437,12084,2021,2088,2185,2205,2654,2863,3157,3173,3490,814,29742,4562,4748], -[0,3487,5995,200,29744,5592], -[1,2343,20346], -[0,20352,20356,20357,2523], -"@fast-c", -"sv/format", -[2,20347,20348], -"@fast-csv/", -[2,20350,1644], -[0,29749,3084,4339], -"writer", -"csv writer", -"CSV", -[0,442,1759,1177,1895,1938,1953,1955,1958,2203,1209,2899,1894,4419,1531,91], -[0,3487,5576,10768,29752,36,5995,5592,4030,1781], -[1,2343,20359], -[0,0,20360,20361,2487], -[0,1362,1429,1506,2899], -[0,12804,4166], -"psql", -[1,2343,20364], -[0,20367,34487,20379,34352], -[3,19185,12], -[2,20365,4262], -[0,97,5663,1620,29762,29765,4729], -"macchiato", -[2,20365,20368], -"erge2", -[2,6502,20370], -"@types/pi", -"comatch", -[2,20372,20373], -"bencho", -"rmlnc", -[2,16693,20376], -"fdir", -[0,6599,5131,5592], -"hereby", -[1,2343,20383], -"snap-shot-it", -[0,20386,0,20387,2523], -"imple", -[2,20384,1744], -[0,18089], -[0,1936,57,12075,29790,10658,2062,29791,29792,15512,3493,1753,29793,29794,1644,4141], -[1,2343,20389], -[0,0,20390,2514,2487], -[0,2899,1177,2759,1317,29801,1311,1954,1938,1958,1903,1970], -[1,2343,20392], -[0,20393,20395,20396,2399], -[0,29806,4578,1433], -"strnum", -[0,1429,2899,3095,3752,1434,29810], -[0,2026,1544,1303,20150,5165], -[1,2343,20399], -"js2xml", -[0,20401,20402,20403,4139], -"json2xml", -[0,3501], -[0,3095,2899,1429,1434], -[0,3495,3497,1303,20150,5165,13445], -[1,2343,20405], -[0,20406,20407,20408,2537], -[0,1433], -[0,2899,1429,1434], -[0,3495,2703,1303,20150,5165,29824,6875], -"avvio", -"toad-cache", -[1,2343,20421], -"find-my-way", -"@fastify/", -[2,20413,1851], -"-warning", -[2,3729,20415], -"abstract-", -[2,20417,6807], -"-my-request", -[2,13318,20419], -[0,20429,20407,20430,4139], -"-json-parse", -[2,18112,20422], -[3,16781,12], -"ringify", -[2,20424,20425], -[2,8530,4643], -[2,20413,20427], -[0,29829,3501], -[0,3495,1303,20150,5165,20151,14374,3424,28438], -[1,2343,20435], -"-compiler", -[2,20426,20432], -[2,20413,20433], -[0,20438,20439,20430,2523], -"h2url", -"ajv-i18n", -[0,29835,3424,1433,26413,4578], -[0,3095,2899,1429,3752,1434], -[1,2343,20448], -"autocannon", -"fast-json-", -"body", -[2,20442,20443], -"merge-patch", -[2,8530,20445], -"branch-c", -[0,0,7878,20455,2537], -"omparer", -[2,20447,20449], -[2,3125,1276], -"fluent-", -[2,20452,2845], -[2,20413,3697], -[0,3495,15393], -[1,2343,20457], -[0,20458,0,20459,2523], -[0,3729,614], -[0,6804,3403], -"piscina", -"@vercel/n", -[1,2343,20483], -"@vercel/ncc", -"loader-", -[2,20464,8791], -[3,12397,15], -[2,20466,2924], -"@umijs/b", -"abel-", -"preset-umi", -[2,20469,20470], -[2,20468,20471], -[2,1221,18104], -[2,4524,20473], -[3,1233,25], -[2,20475,15301], -"tyled-", -[2,20477,4963], -[2,5584,20478], -"@umijs/c", -"ase-sensitive-paths-webpack-plugin", -[2,20480,20481], -[0,0,9264,20486,4139], -"ader-runner", -[2,13513,20484], -[0,1388,1389,3403], -[1,2343,20488], -[0,0,20489,20497,2523], -[0,1906,1166,4481], -[2,19523,3036], -[2,5613,4565], -[2,5613,3053], -[2,5613,6645], -[2,5613,6913], -[2,18996,4237], -[2,4385,57], -[0,3403,3504,29854,2090,17996,2150,17462,16503,7318,4262], -[1,2343,20501], -"anything", -"protocol", -[0,0,11332,20502,2537], -[0,3403,18104,2090,4014,28977,29862,3506,15174,614,594,364,6805,6422,1858,2741,13735,4354], -[1,2343,20504], -[0,0,20505,20506,4139], -[0,29867,5535,4874,5254,7677,26881,4201,91,1984], -[0,2026,6961,4082,7433], -"fbjs-css-vars", -"setimmediate", -[1,2343,20510], -[0,0,20511,2514,2523], -[0,4874,7677,1446,668,1177,1905,2807,1894,91,4543,1984,28862], -[1,2343,20513], -[0,20518,20530,11581,2537], -"@skypack/package-check", -"dead-code-elimination", -[2,9403,20515], -[2,7911,20516], -[0,2760,2856,18545], -"in web", -"in javascript", -"in react", -"Plug & Play", -[3,11608,13], -[2,7519,4963], -"ui component", -[2,16914,6286], -"advanced ", -[2,20527,5983], -"scan", -[0,2152,2899,3699], -"scanner", -[1,2343,20534], -"phonebook", -[0,20535,20552,20554,2537], -[0,29882,29884,3486,3923,23952,3348], -"autofillotp", -"share", -[2,7426,17357], -[2,2998,20538], -"mylocation", -[2,13735,20540], -"colorpicker", -"wakelock", -"WhatsappShare", -"NetworkConnection", -"TextToSpeech", -"VoiceRecognition", -"SnapScanner", -"Network", -"Monitor", -[2,20549,20550], -[0,4874,1398,2018,1894,4389,91], -"View360", -[0,2636,1179], -[1,2343,20556], -[0,20557,20558,20559,2399], -[0,1620,10752,29893,29894,29895], -[0,53,8229,87,442,5583,1193,29897,27401,1377,1389,1424,1505,1177,2193,2203,1192,2780,11348,1783,29899,1894,3754,4042,8849], -[0,2636,29901,29903,11812,1746,13814], -[1,2343,20563], -[3,5085,23], -[2,20561,582], -[0,0,20564,2514,2537], -[0,1362,29908,1429,29913,1506,2899,3697], -" program", -[2,6564,20565], -"data ", -[2,20567,6355], -[1,2343,20570], -[0,20571,20572,20578,2537], -[0,25624,29919,29923,29920,29918,29928], -[0,28042,29934,1149,1362,1499,29933,91,1984,23539], -"dequal", -"glob-", -[2,20574,3508], -[3,16396,12], -[2,20576,3508], -[0,18035,29937,3519,14871,25638,14873,29938], -[1,2343,20580], -[0,20581,20582,20583,2523], -[0,3524,4237,4709], -[0,1173,1175,1178,1257,1264,1267,14237,1177,1881,1935,1938,2126,29945,1192,2774,29946,10622,4039], -[0,3520,3521,13392], -"detect-libc", -[1,2343,20587], -"thread", -[0,20588,20589,20590,2443], -[0,2057,2151,29952,22667,3730,705,17047,4707], -[0,1177,2276], -[0,3521,29727,3364], -[1,2343,20592], -[0,20593,20594,20590,2523], -[0,1863,2057,2151,29952,22667,3730,705,17047,4707], -[0,1177,2276,824], -"@pinojs/redact", -[1,2343,20599], -"figure", -"fallback", -[0,20600,20601,20602,2523], -[0,1137,1512,1543,29964,1591,16442,2765,3183,3456,3459,6331,29965,3547,3741,3762,705,4167,4562], -[0,18007,1177,1900,1903,1938,1954,1958,1970,2759], -[0,200,1591,3525,29969,29971], -[1,2343,20604], -[0,0,11488,2514,2443], -[1,2343,20606], -[0,0,0,20607,4139], -[0,7009,1512,6983,200,7201], -[1,2343,20609], -[0,0,20610,20612,2523], -[0,1177,27275,2398,2899,3421], -"filesaver", -[0,2070,3529,3530], -"saveas", -"blob", -[1,2343,20616], -[0,7936,7938,7939,4139], -[1,2343,20618], -[0,0,20620,20625,34352], -"strtok3", -[0,1166,29991,4481,27659,1906], -"token-types", -"-extra", -"-extras", -[2,15149,20623], -[0,19138,7241,1862,6567,29994,12918,202,21244,28067,6270,353,4719,21009,6715,1149,7003,6778,1362], -"@tokenizer/token", -"commonmark", -"noop-stream", -[1,2343,20633], -"pic", -"picture", -"photo", -[0,20692,20693,20765,2399], -"video", -"exif", -"macho", -"jpg", -"apng", -"gif", -"flif", -"xcf", -"cr2", -"cr3", -"orf", -"arw", -"dng", -"nef", -"rw2", -"tif", -"bmp", -"icns", -"jxr", -"psd", -"indd", -"rar", -"7z", -"mp4", -"mid", -"mkv", -"webm", -"mov", -"avi", -"mpg", -"mp2", -"mp3", -"m4a", -"ogg", -"opus", -"flac", -"wav", -"amr", -"epub", -"mobi", -"rtf", -"woff", -"woff2", -"eot", -"ttf", -"otf", -"ico", -"flv", -"xz", -"xpi", -"cab", -"deb", -"rpm", -"Z", -"lz", -"cfb", -"mxf", -"mts", -[0,30001,30004,30007,30011,20416,30015,30017,18730,20595,30018,30019], -[0,5517,36559,30022,4874,1090,30024,28400,1409,1676,21594,1177,1938,1953,1954,1958,2020,30025,30027,2702,1192,3073,3079,30028,29197,28941,3697,3752,3756,4039,4135,4238,30029,4294,4389,4431,4474,4481,91,4709], -"webassembly", -"blend", -"bpg", -"docx", -"pptx", -"3gp", -"j2c", -"jp2", -"jpm", -"jpx", -"mj2", -"aif", -"odt", -"ods", -"odp", -"heic", -"pcap", -"dsf", -"lnk", -"voc", -"ac3", -"3g2", -"m4b", -"m4p", -"m4v", -"f4a", -"f4b", -"f4p", -"f4v", -"mie", -"qcp", -"asf", -"ogv", -"ogm", -"oga", -"spx", -"ogx", -"ape", -"wv", -"cur", -"nes", -"crx", -"ktx", -"dcm", -"mpc", -"arrow", -"shp", -"aac", -"mp1", -"s3m", -"xm", -[2,12207,35471], -"skp", -"lzh", -"pgp", -"chm", -"3mf", -"zst", -"jxl", -"vcf", -"jls", -"pst", -"dwg", -"parquet", -"arj", -"cpio", -"ace", -"avro", -"icc", -"fbx", -"vsdx", -[0,2062,2942,3101,1781], -[1,2343,20767], -[0,0,20768,20769,2537], -[0,1177,1895,19286,1954,1955,2675,1192,1894,4400], -[0,3378,30036,30037,3304,30038], -[1,2343,20771], -[0,20772,20773,20774,2523], -[0,3549], -[0,1177,25843,91], -[0,158,26020,1687], -[1,2343,20776], -[0,20777,20778,20779,2487], -[0,30055], -[0,1906,1166,4481,4400], -[0,3383,1781,7914,3378,13864,2100,2104,2105,7076,6614,6605,2090,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], -[1,2343,20781], -[0,8400,8134,20782,2523], -[0,4750,3383,2090,2100,2104,2105,7076,6614,6605,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], -[1,2343,20784], -[0,0,10435,20785,2523], -[0,18523,2041,6661], -"locate-path", -[1,2343,20790], -"-magic", -[2,1981,20788], -[0,20791,0,2514,2523], -[0,30071], -[1,2343,20793], -[0,20794,20795,20798,2443], -[0,10780,1301,4736], -[0,1389,2899,16112,4770], -"detect-file", -"resolve-dir", -[0,13336,1388,16718,2072,57,6523], -[1,2343,20802], -"dir-polyfill", -[2,4571,20800], -[0,20803,20804,20805,2537], -[0,1104], -[0,1177,1889,1954,2022,2899,3421,91], -[0,1851,1932,2541], -[1,2343,20807], -[0,20808,8134,20809,4139], -[0,30088], -[0,23869,30090,3547,23868,30091,4718,1871,30092,30093,30094], -[1,2343,20811], -[0,0,20812,20813,34352], -[0,1429,2759,2899,1899], -[0,23869,30090,3547,23868,23877,2712], -[1,2343,20815], -[0,20816,11488,20817,4139], -[0,30110,30115,30106,30122,1112,1149,29183,1457,30117,1525,1606,1673,1676,1836,2015,30104,3188,3278,30107,30108,30119,30112,30120,8630,4135,4232,4243,30105,2822], -[0,200,21110,21111,2041,3548,30124,3073,1781,2026,2556,30125,2999,30127,30128,30130,30131,30132,30134,7047,22850,30135,27662,13325,5258,30137,30139,30140,30141,30142,20997,20998,28845,4345,30143,3363,30144,17979,30147,27838,30140,30148,2134,28413,30149,13539,3111,21102,30153,30155,30156,30158,24093,17878,1605,20999,30159], -[1,2343,20854], -"@firebase/app", -[3,20819,11], -"uth", -[2,20820,20821], -"@firebase/", -[2,20823,614], -[2,20823,13901], -[2,20823,18035], -"nalytics", -[2,20820,20827], -[2,20819,2063], -[3,20829,14], -[2,20830,553], -"firestore", -[2,20823,20832], -[3,20833,11], -"unctions", -[2,20834,20835], -[2,20823,8899], -[3,20829,15], -[2,20838,14044], -[2,20822,4097], -[2,20823,6681], -[2,1161,10653], -[2,20823,20842], -"remote-", -[2,20844,1541], -[2,20823,20845], -[2,20825,4097], -[2,20826,4097], -[2,20828,4097], -[2,20829,4097], -[2,20833,4097], -[2,20836,4097], -[2,20837,4097], -[0,0,20855,20856,2537], -[0,1389,1400,1544,1177,1895,3421,1894,3758,4151,30164,4389], -[0,30166,14355,14356,30167,30168,57,18048,29895,30170,3549], -[2,20841,4097], -[2,20843,4097], -[2,20846,4097], -[1,2343,20861], -[0,20864,20865,20866,34352], -"Firebase", -"realtime", -[0,4477], -[0,1835,1192,2784,2796,4227], -[0,2924,4749,24753,24754], -[1,2343,20877], -"@fastify/b", -"usboy", -[2,20868,20869], -[3,20848,19], -[2,20871,553], -"farmhash-modern", -"jwks-rsa", -"@google-cloud/firestore", -[3,20875,14], -[0,0,0,20878,2537], -[0,3552,28100,4796,7191,7287,2062,6824,1161,7242,163,6698,5260,6646,7117,3378,6878,6661,6666,7037,7090,7293,6950,7086,6573,664], -[3,20819,12], -[1,2343,20881], -[0,20896,20898,20899,2523], -"i-documenter", -[2,20879,20882], -[3,20840,15], -[2,20884,553], -[2,4853,6641], -"rebase-token-generator", -[2,16785,20887], -[2,16936,4007], -[3,2113,11], -"ken-generator", -[2,20890,20891], -"http-me", -"ssage-parser", -[2,20893,20894], -[0,1170], -"admin", -[0,4072,4474,91], -[0,30190,30191,30192,30193,30194,30198,30200,30202,5592,30203,30204,30207,30208,5995,4967,91], -[1,2343,20901], -[0,6263,20906,20907,2537], -"-sql-connector", -[2,6599,20902], -[2,20876,20903], -[2,20876,11631], -[0,48,53,68,83,85,87,14128,5583,816,6373,1178,1193,1198,30214,1610,1652,1745,1177,1881,1938,2126,29945,2675,1192,2990,29946,1894,30216,3776,4042,4071,4073,4131,4172,30217,91,4585], -[0,4315,3555,1832,30219,7165,30220,89,2124,91,30223,30225,30227,1473,7208], -"async-lock", -"cjson", -"-in-any-order", -[2,1693,20910], -"exegesis", -[2,20912,3228], -"gaxios", -[1,2343,20919], -"auth-library", -[2,10692,20916], -"libsodium-wrappers", -[0,0,20920,20923,2523], -[0,30236,30239,30240,30241,1177,30242,91], -"proxy-agent", -"sql-formatter", -[0,30245,4627,5398,8190,8191,8193,30247], -"stream-chain", -"stream-json", -[1,2343,20927], -[0,20929,20930,20932,2487], -"superstatic", -[0,1149,1676], -[0,1192], -"triple-beam", -[0,27,13397,6731], -"-analytics", -[2,14566,20933], -[2,4562,8683], -[1,2343,20939], -"cdn", -"ssl", -[0,20941,0,20944,4139], -"hosting", -[0,3266,3527,4228], -"hronization", -[2,15001,20942], -[0,1623,3561,22292,7121,57,30258,353,24798,5198], -[1,2343,20946], -[0,20947,20952,20953,4139], -[0,3681,3688], -"alce", -[2,1708,16580], -"extend-", -[2,20950,3048], -[0,4874,1177,1895,30265,3561,1894,91], -[0,1623,3561,6425,30268,3563], -[1,2343,20955], -[0,20956,20957,20958,2537], -[0,1457,5314,2151,3527,3616,30274,15245,30275,4207,27921,4747], -[0,1166,1414,1596,1177,30279,2203,3561,3613,1894,4337,3348], -[0,200,3561,22147], -"@types/rimraf", -[2,13777,12798], -[1,2343,20962], -[0,20963,0,20964,2487], -[0,30286,205,208,218,30287], -[0,1473,14186,1623,4964,6564,30289,30290,30291,29428,3561,6425,6616,30292,17540,5341], -[1,2343,20967], -"unflatten", -[0,20968,20969,20970,2487], -[0,1393,30298,30299,3688], -[0,30302,3561], -[0,1473,1512,1536,1623,3178,3561,6425], -[1,2343,20972], -[0,20973,20974,20975,34352], -[0,1393,3688], -[0,3561], -[0,1623,16919,3561,6425], -[1,2343,20977], -[0,20984,20985,20987,2523], -"@types/acorn", -[3,4060,16], -"vereload", -[2,20979,20980], -"erve", -[2,15476,20982], -[0,1165,30298,1437,30314,30315,3561,30317,30326,3564,30327,30329,30331,30334,30336,30338,30341,30343,3579,3584,3587,30346,30348,30350,30353,30356,3643,30358,30360,30363,30365,30366], -[0,1173,1175,1195,1264,1268,1279,19243,1461,1628,30368,30370,30371,30372,30378,1177,30380,1916,1959,2054,2092,2600,30381,2822,2843,3105,30383,3160,30385,30389,30390,30391,30393,30395,30396,30397,30399,29285,3376,30400,3427,3459,30402,3613,3618,30274,16578,3744,89,3824,30404,4039,4294,4307,4389,30407,2924,4681,30410], -"lightweight", -[0,3561,6425,1623,12616,30413], -[1,2343,20989], -[0,20990,0,20993,2523], -[0,30424,205,208,213], -"byline", -"util-extend", -[0,30426,30427,1623,30428,5317,6413,3561,6425,30430,3766,10658,12616], -[1,2343,20996], -"markdox", -[0,21001,0,21002,2537], -"deploy", -"deployment", -"devops", -"ssh", -[0,30424,205,208,30287,3688], -[0,1623,30428,5317,6433,3561,6425,3583,10658,6436,6437,12616], -"sequential", -"remote", -[1,2343,21006], -[0,21007,0,21008,2537], -[0,30424,205,208,3681], -[0,30426,30427,1623,30428,5317,30442,19101,3561,6425,5547,3586,10658,12616], -"wrapper", -[1,2343,21011], -[0,21012,21013,21017,2487], -[0,3681], -[0,3561,3678,26712], -"mini-s", -"vg-data-uri", -[2,21014,21015], -[0,1623,4298,3561,6425], -[1,2343,21021], -"-datepicker", -[2,2128,21019], -[0,0,20974,21025,34352], -"ailwindcss", -[2,1977,21022], -[2,3704,4383], -[0,1623,1681,16918,3561,6425], -"windicss", -[1,2343,21051], -[2,20525,591], -[2,4380,6911], -"tailwind c", -[2,21030,544], -"tailwind ", -[2,21032,11513], -[2,21032,6082], -"sections", -[2,21032,21035], -"tailwind ui", -[2,21032,89], -[2,21032,188], -[2,21032,1098], -"tailwind s", -[2,21041,1971], -"django", -[2,21032,21043], -"tailwind r", -"uby on rails", -[2,21045,21046], -"tailwind l", -"aravel", -[2,21048,21049], -[0,0,20974,21058,2537], -"tailwind nuxt", -"tailwind n", -[2,21053,2680], -"tailwind a", -"stro", -[2,21055,21056], -[0,15215,1623,3599,3178,16919,3561,6425], -"flask", -[2,21032,21059], -[1,2343,21062], -[0,0,21063,21064,2487], -[0,1687,3527,3561], -[0,3561,1623,6425,30462,30465,30466], -[1,2343,21066], -[0,0,21068,21069,4139], -"ffmpeg", -[0,1429,2323,2384,2463], -[0,3561,1623,6425,30472,15182,9320], -[1,2343,21071], -[0,21073,21075,21076,34352], -"fbemitter", -[0,2654,9673,3561,3676], -[2,3794,11017], -[0,19605,1165,1429,1503,1177,1895,1930,19622,1945,1953,19623,1955,1964,1988,17308,2899,19761,3421,30479,3678,30481,1894,4320,4323,4337], -[0,3561,5341,1936,188,30483,30484,1623,695,2278,4329,30485,4337], -"dispatcher", -[1,2343,21079], -[0,21080,0,21081,2399], -[0,30287,3688], -[0,12083,1623,158,30491,12631,16587,3561,6425,23992,6398], -"lolex", -[1,2343,21084], -[0,21085,21086,21087,2399], -[0,3688,30275,814], -[0,1166,1414,1177,30279,1955,2203,3561,3678,1894,4337], -[0,1623,3561,6425,1204,30498,3378], -[1,2343,21089], -[0,21090,0,21091,2537], -[0,2984], -[0,3561,30504,30506], -[1,2343,21093], -[0,21094,21095,21096,2523], -[0,2807,4135,1595], -[0,1700,1192,695,2278,2675,3144,30512,1622,1177,1637,1701,2203,3561,4337,4468,4474,2924,1894,1610,48,442,1193,17167,4294,53,2969,2990,3400,4111,30520,3613,3640,192,1953,27928,4257,87,4523,1939,3616,1938,20281,1982,1895,1955,19344,30518,5467], -[0,1623,3561,22147,2924,11526], -"cliff", -"shush", -"flatiron", -"nssocket", -"-monitor", -[2,2134,21101], -[1,2343,21105], -"getopts", -[0,21107,20974,21112,2487], -"cli-testlab", -[0,3688,4319], -"fault", -" tolerant", -[2,21108,21109], -"sysadmin", -[0,1623,3178,16918,3561,6425], -[1,2343,21114], -[0,21115,21119,21123,4139], -[0,1393,30298,3681,30532], -"node-ab", -[2,18876,12620], -[2,21116,21117], -[0,30302,3561,26712,3591], -[2,6062,2978], -"ross-spawn", -[2,4857,21121], -[0,1623,16918,3561,6425], -"jest-circus", -"karton", -[1,2343,21128], -"typecheck", -[0,5488,20974,21130,2523], -[2,1218,21131], -[0,1623,2414,30541,30542,16918,6425], -"hermes-parser", -[1,2343,21135], -[3,4852,15], -[2,21133,13921], -[0,21137,20974,21138,2399], -"increment", -[0,30299,3688,30532], -[0,1623,3561,6425], -[1,2343,21140], -[0,21145,20974,21150,2399], -"asynckit", -"combine", -"d-stream", -[2,21142,21143], -[0,1393,3688,30532], -[2,13888,2759], -"fake", -"far", -"is-node-", -[0,3561,1623,6425,3178,16918,3634], -"modern", -[2,21149,21151], -"obake", -[1,2343,21157], -[2,31868,7625], -[2,31865,21160], -[0,21159,21164,21169,2537], -"dezalgo", -[0,1636,3681], -[3,9367,18,5], -"@tunnckocore/prettier-config", -"formdata-", -[2,21162,6422], -[0,30559,3561], -[2,19713,1781], -[2,3862,18481,21172], -"www", -"ulpoad", -[0,1623,3178,16918,3561,6425,3586], -[1,2343,21171], -[0,21176,21181,21183,2399], -"bob", -[3,11366,11], -[2,21173,3797], -"tiny-warning", -[0,16837,3681,3688], -"just-", -"debounce-it", -[2,21177,21178], -"tsdx", -[0,1596,1177,1895,2675,1192,2990,3561,1894], -[2,7519,582], -[0,4529,3561,1623,6425], -[1,2343,21190], -"render props", -"higher", -" order component", -[2,21186,21187], -"hoc", -[0,21012,0,21191,2443], -[0,3561,1623,6425,2278,3639], -[1,2343,21193], -[0,21194,0,21196,2443], -[0,30577,220,3681], -"conditional", -[0,30579,1451,30581,1623,30413,30428,3639,30582,3561,6425,3624,3586,10654,10659,5341,12616], -[1,2343,21198], -[0,21199,21200,21201,2523], -[0,30587,30589,30590], -[0,20117,1393,3561,3613,4042], -[0,3561,1623,6425,30594,2887,30595], -[1,2343,21203], -[0,0,20974,21204,2487], -[0,3561,1623,6425,8426], -[1,2343,21206], -[0,5488,20974,21138,2537], -[1,2343,21208], -[0,5488,20974,21138,2443], -[1,2343,21211], -"check-dts", -[0,20973,20974,21138,4139], -[1,2343,21213], -[0,5488,20974,21215,2537], -"front matter", -[0,1623,3374,16918,16919,3561,6425,1002], -"meta data", -[1,2343,21218], -[0,21219,20974,21138,2523], -[0,3688,30532], -[1,2343,21221], -[0,0,21222,21223,2537], -[0,2675,2899,3561,2759,1894,2990,3640], -[0,3561,3665,3586,6425,1623,3585,1932], -"universalify", -[1,2343,21229], -"klaw", -"dir-files", -[2,15034,21227], -[0,21230,0,21231,2523], -[0,28789,30630,30633,28817,30636,26477,30640,32579,30643,30647,30649,30652,30654,30657,30658,215,30662,30670,30673,30677,30678,30682,30686,30690,31001,30693,30701,30703,27930,218,28640,27069,30708,30712,29388,30715,32835,29704,30721,30724,30725,1165,1393,30728,30733,30736,1635,30326,30739,3570,30331,30338,3579,3584,3587,30742,30744,4791,30747,30348,30749,3611,30751,30754,3643,30757,30759,30761,30763,30358,30363,30366], -[0,1623,30428,16897,14836,30765,3286,3561,6425,10654,10659,16900,12616], -[1,2343,21233], -[0,21234,21235,21138,4139], -[0,1393,30298], -[0,30302,2646,3561], -"assist", -[2,6019,21236], -[1,2343,21239], -[0,0,0,21240,2537], -[0,1623,3561,30775,57,21110], -[1,2343,21242], -[0,0,0,21245,2537], -"any-promise", -"then", -[0,1623,3561,30775,57,4329,2278], -"thenify-all", -[1,2343,21248], -[0,21249,21250,2514,2443], -[0,1636,23462], -[0,48,53,68,11267,61,87,94,1166,1198,16150,1701,1177,1938,2070,3183,3421,3561,4135,91], -[1,2343,21252], -[0,21253,21254,21255,4139], -[0,3688,4361], -[0,30315,3561], -[0,1623,3178,16918,3561,6425,8221,4361], -[1,2343,21257], -[0,21012,20974,21138,2537], -[1,2343,21259], -[0,0,21260,21261,2537], -[0,1177,2675,2990,1894,4387,4389], -[0,3561,6692,57], -[1,2343,21263], -[0,21264,0,21265,2537], -[0,28807,30805,30808,30811,30813,30816,30818,4484], -[0,14873,25638,14871,3519,18035,1747,13392,5576,5995,29938,14872,91,4799,1999], -[1,2343,21267], -[0,21268,21269,21270,2537], -[0,9376,9375], -[0,192,22559,1414,1429,1431,1436,1567,2675,2829,2990,2899,4255], -[0,1936,6523,23760,57,353,30826,24798,7121,26467], -[1,2343,21272], -[0,21273,0,21274,2523], -[0,30840,3348,2970,2973,4431,30843,2972,30842,3310,30837,30834,3923,30833,30839], -[0,1747,28088,3693], -[1,2343,21295], -"@monaco-editor/loader", -[3,7664,11], -"topwatch", -[2,21277,21278], -[2,7666,6731], -"@snippetors/vuepress-plugin-tabs", -[3,19464,17], -"google-a", -[2,21283,20827], -[2,21282,21284], -[2,93,4314], -[2,21282,21286], -[2,21282,7193], -"monaco-", -[2,21289,6038], -"dsense2", -[2,21283,21291], -[2,6324,21292], -[2,19469,21293], -[0,21297,21298,21299,2537], -"bitap", -[0,13609,30849,30850,30855,1695], -[0,1173,1280,4895,1245,1264,1389,5669,30857,2025,2297,2881,25848,2895,2900,30859,2899,30862,18102,3774,4019,4135], -[0,3696,1145,6468,1973,5472,5286,6892], -"@types/katex", -[1,2343,21303], -"socket", -[0,21304,21305,21310,2487], -[0,1615,23975,4707], -[0,1148,2759,2899], -"tex", -"sublime", -"katex", -"sublime text", -[0,3358,582,3378,3697,30872,18462,1973,5001], -[1,2343,21312], -[0,0,21313,21314,2443], -[0,30877,30879,53,5874,12372,87,94,11976,4856,6503,4874,6513,17214,16480,30881,1429,1596,1610,30883,668,2675,30888,3165,2899,3401,30889,28423,3744,11481,4193,4196,4072,91,4548,1983,1984,824], -[0,3698,89,181,6073,30891,23361,4963,30892,6400,5130], -"globule", -[1,2343,21318], -[2,2237,5365], -[0,21319,7923,11581,2523], -[0,1437,1457,2152,18545], -[1,2343,21321], -[0,21322,21323,21324,2537], -[0,30905,8506,3137], -[0,21024,5467,811,8850,816,5087,9363,1009,1011,1529,1177,1895,1955,2675,1192,30912,12129,1894,4042,4257,4072,4474,91], -[0,1894,1932,1776,8505], -[1,2343,21326], -[0,0,21327,21330,2487], -[0,4874,30922,1166,1894,91,13151], -[2,4755,1145], -"yeoman-test", -[0,1894,30924,91,5651,3705], -[1,2343,21332], -[0,21333,21334,21335,4139], -[0,18710], -[0,3401,1894], -[0,6661,1932,1894], -[1,2343,21338], -"restangular", -[0,0,21342,21343,2487], -"ui-router", -"foundation", -"traceur", -[0,8862,811,816,4874,1166,1894,4042,4075,3709,4474,4484,91], -[0,1894,3709], -[1,2343,21345], -[0,21346,0,21347,2487], -[0,30940,1209,1997], -[0,1894,1541], -"find-git-root", -[1,2343,21353], -"git-config", -[3,31021,19], -"@merkle-open/eslint-config", -[0,0,8134,21355,2537], -"modular", -[0,3721,1413,1412,2098,4202,2090,12786,30946,7017,30947,2382,30948,23933,30950], -[1,2343,21357], -[0,21358,21359,21361,4139], -[0,1209,30956], -[0,1429,1506,1509,30958,2899], -"pooling", -[0,3721,1851,30960,1676,6738,7017,13086,22405,1671,12786], -[1,2343,21363], -[0,21364,21366,2514,2523], -[0,8801,1110,3847], -"ts2mjs", -[0,4880,15606,4889,2700,2798,89,3824,3904], -"iterators", -[1,2343,21370], -"iterable", -[0,21372,8134,21375,2487], -[2,21373,29777], -[0,30970], -"@prisma/d", -"@prisma/dev", -[0,3721,22405,12786,24130,30946,7017,6901,3242,30974,17003,30975,6754,2585,1871,6988,15244], -[1,2343,21382], -"@werkzeugkiste/eslint-config", -[3,21377,15], -[2,6019,1541], -[2,21378,21379], -"install-", -[0,21389,0,21390,2487], -"postmerge", -[2,17496,21383], -[2,21381,21384], -[3,9794,17], -[3,13848,20], -[2,21386,21387], -[0,6041,4484,2687,26379,3530,30097,3527], -[0,3358,30981,30982,1894,3720,6983,1501,30983,30872], -[1,2343,21392], -[0,21394,21398,21399,2523], -"@cfware/lint", -[0,1512,3183], -"@cfware/nyc", -"if-ver", -"libtap", -[0,2899,2272,4170,2759,1596,3202], -[0,1781,200,6983,1512], -[1,2343,21401], -[0,21403,21408,21409,2523], -"available", -[0,3260,25638,21374,28286,30996,21351], -"connection", -"tcp", -[3,6045,9], -"chosen", -[0,3467,4763,2611,1192,3445,2020,2929,28974,3510,1759,8537,15452,1457,2151,842,16145,16473,2794,3077,3310,29710,4294,31000,91,5087,4874,6477,28076,1151,2191,31004,3393,31006,32248,31008,28229,31009,25629,31013,4864,33235,23531,8998,29420,31015,31018,13471,32470,31023,31026,33237,28231,29421,26285,33683,21371,13502,29425,31475], -[0,9628,31034,31035,31037,31038,18035,1747,17626,31039,6869,31040,31041,31042,3519,31043,31045,31046,31047,31048,31049,31050,31051,31052,31221], -[1,2343,21411], -[0,0,21412,21414,2537], -[0,5542,1317,1429,31058,1700,31061,1177,1942,1964,2323,2361,2367,2409,20304,2494,2496,31063,2553,2654,2665,2832,2899,3310,3400,1894,3756,19745,19750,12120,3980,19751,4183,31066,4747], -"std", -[0,588,5342], -[1,2343,21416], -[0,21417,21419,21421,4139], -[0,1362,1364,1512,2026,3078,3188,3220,31074,3460,3507,31075], -"@sec-ant/readable-stream", -[0,1429,2323,2463,3215,4089,4193,4196,4339], -"onetime", -[0,1370,7223,29179,18157,12468,2325,3358,31078,3383], -[1,2343,21424], -"precise-now", -[0,0,6538,2514,2537], -[1,2343,21426], -[0,0,21427,21428,2487], -[0,4770,2899], -[0,3729], -"-maps", -[2,6477,21429], -[1,2343,21433], -[2,2190,6660], -[0,0,0,21434,8878], -[0,200,3730], -[1,2343,21436], -[0,21443,0,21445,2537], -[3,13936,15], -"evry", -[2,21437,21438], -"make-d", -"eno-edition", -[2,21440,21441], -[0,1437,3730], -"deno", -[0,2924,1932,3730,10036], -[1,2343,21448], -"deno-edition", -[0,21449,21451,2514,4139], -[0,29277], -"deno-entry", -[0,1082,4039,2759], -"denoland", -[1,2343,21454], -[0,0,21460,21461,2487], -"es2022", -[3,72,14], -"ifconfig", -"ipconfig", -"mac-address", -[0,1389,1610,1177,10697,2675,2297,2871,2881,2900,2990,2899,3400,1894,4039,4042,4077,4193,4650,91], -[0,1862,3734,6789,14833], -[1,2343,21463], -[0,21467,17022,21471,2537], -"email-", -"addresses", -[2,21464,21465], -[0,2899,4193,4545], -"dir-compare", -"tschaub", -[2,1884,21469], -[0,6567,14833], -[1,2343,21473], -[0,16583,21474,11581,2487], -[0,1804,2109,2899,3699], -[1,2343,21478], -"manage-path", -"opt-cli", -[0,21484,21487,21488,2487], -"chai-s", -"chai-string", -"kentcdodds", -[2,1884,21481], -"trav", -[0,13388,1149,3917,13832,4709], -"is-after-all", -[2,21483,21485], -[0,1177,4616], -[0,3741,6876,31122,7020], -[1,2343,21490], -[0,21491,21492,21493,2487], -[0,2929,16235], -[0,48,53,78,87,4387,4389], -[0,181,3742,200,3741,8626,6876,6847,1523,2184,4403,8620,31129], -[1,2343,21500], -"@primer/octicons", -"@primer/", -"primitives", -[2,21496,21497], -[2,812,1936], -[0,21501,21502,10570,2523], -[0,3082,3427,3847], -[0,1193,1268,1389,1408,1177,2708,1192,89,31135,31136], -[1,2343,21504], -[0,0,21506,21508,2443], -"minipass", -[0,9363,4874,31142,1414,2620,31145,31147,1894,3985,3998,31148,31150,4505,91,18002,1906], -"path-scurry", -[0,31152,23584,1936,4374,18523,3205,8221], -"-from-dist", -[2,9478,21509], -[1,2343,21513], -[2,5745,1563], -[0,21514,21515,21516,2523], -[0,31157,31159,31160,31161,31162,31165,31166,31167,31169,31170,4874,3080], -[0,1317,1389,31172,1408,1437,1875,1177,2000,2004,2193,28406,31174,21749,2323,2409,2419,2510,2530,1776,3183,3421,3951,4389,4487,91,4535,4599,4600,4603], -[0,7018,6765,7050,91], -[1,2343,21518], -[0,21521,21522,21523,2523], -"dirname", -"wildcard", -[0,11304,28502,31180,14336,1437,2070,2765,31182,3760,12826,4130,4232,31184,31186,4747], -[0,7740,4865,23689,31188,9129,4874,1364,1429,1431,28556,2025,2026,2323,31190,2526,2272,1209,3127,2899,31191,4039,4089,4135,4487,31194,91,31195], -[0,1098,1973,5472,11132,13841,28522], -[1,2343,21525], -[0,21527,21528,21529,2537], -"min-document", -[0,7058,31202,1676], -[0,31205,5245,5087,4874,1151,1192,4468,91,2190], -[0,27,2671,2658,1544,3013,31207,31209,18413,31210,31211,31212], -[1,2343,21531], -[0,21532,21533,18970,2537], -[0,31218,31220,814], -[0,2899,31224,4170,4193,4255], -[1,2343,21535], -[0,21538,21540,21542,2523], -"path-t", -"path-type", -[0,1437,31229,31233,2720,2742,1209,3170,3309,3470,4135], -"glob-stream", -[0,1173,1255,1264,1700,1177,1895,2702,2759,3188,2899,3211,1894,4039,4170], -"fnmatch", -[0,2323,3378,20001,3383,1237], -"globbing", -"globs", -"wildcards", -[1,2343,21547], -[0,21548,21549,21551,2399], -[0,31249,31246,31248,31250,31243,31251,31242,31254], -[0,3188,4039,24592,24587,24594,24596,31259,31258,24591], -[2,13039,12804], -[0,1936,2437,3754,1283], -"array-series", -[1,2343,21554], -[0,0,21557,2514,2537], -"magick", -[2,11812,21555], -[0,1317,27468,2060,3714,31266,4387,4389], -[1,2343,21559], -[0,21560,0,21561,2537], -[0,1834,3441], -[0,7046,7170,14858,7241], -"-with", -[2,21562,1892], -[2,1903,21563], -[1,2343,21569], -"msmc", -"mc", -"minecraft", -[0,0,21570,21588,2537], -[0,1503,3421,2899], -"java edition", -"arm", -"arm-support", -"forge", -"s-management", -[2,16154,21575], -"instances", -"mod", -"mods", -"mc-mod", -"mc-mods", -"modpack", -"modpack-api", -"extendable", -"nbt", -"jarmods", -"skin fix", -[0,3757,3656,31277,31278,31279,1002,31280], -[1,2343,21590], -[0,21591,21592,21593,2523], -[0,17846,31286,1595,28504,11114,31288], -[0,4874], -[0,3758,3195,29727,13428], -"docsify-cli", -"ing-promise", -[2,14639,21595], -[2,16645,21596], -[1,2343,21601], -"spreadsheets", -[2,8567,21599], -[0,21602,0,21609,4139], -[0,1525,2071,3561,3681], -"google sheets", -[3,21599,11], -"sheets", -"gdata", -"drive", -"google docs", -[0,6707,16587,7293,17507,1623,1936,3624,31297,22946,18114], -"svgs", -"google drive", -[1,2343,26326], -[0,2228,2272,3130,2240,2768,2281,3736], -[0,3760,1862,6567,14832,14833,14834,14836,1149,14838,8553,1388,202], -[1,2343,21617], -[2,2211,13369], -[0,0,0,21618,2399], -[0,11194,31307,16421,18048,8221,158], -"@types/execa", -"@types/mv", -"@types/ncp", -"unjucks", -[2,10884,21622], -"rl-template", -[2,7817,21624], -[2,4892,1574], -"js-green-licenses", -[1,2343,21629], -[0,0,0,21631,2537], -"linkinator", -[0,1111,6938,11194,7201], -[2,8573,591], -[2,5576,12950], -[1,2343,21635], -[0,21636,21637,21643,2537], -[0,17409], -[0,31317,31319,13614,1389,1408,31322,1796,1855,1177,2011,2133,2070,19066,31328,27547,17421,2569,2685,2708,2762,2807,3188,3206,15030,3410,3421,3431,19974,4103,23948,4389,31329], -"p-cancelable", -"responselike", -"-keys", -[2,17267,21640], -[2,13788,2741], -[0,3767,3763,3766,1002,1644,1646], -"able-lookup", -[2,2325,21644], -"cacheable-", -[2,21646,705], -"-encoder", -[2,2139,21648], -[2,17278,5508], -"byte-counter", -[1,2343,21660], -"pem", -"@types/pem", -"cert", -"create-cert", -"slow-stream", -"then-", -"then-busboy", -[0,21661,21664,21669,2537], -[0,31337,31339,31341], -"@hapi/bourne", -[2,1601,9224], -[0,1166,1317,1693,2064,4481,1906], -"brotli", -"requests", -[2,20034,17460], -"ky", -[0,1388,3767,3766,1871,3763,5420,31344,1002,1644,1646,10368,15103,31345,7131], -[1,2343,21671], -[0,0,21672,21673,2537], -[0,1973,31350,4389], -[0,10906,3766,3767], -[1,2343,21675], -[0,0,21685,21686,2537], -"govuk-", -"-kit", -[2,6688,21677], -[2,21676,21678], -"gulp-cl", -"gulp-cli", -"sass-co", -"lor-helpers", -[2,21682,21683], -[0,1414,2665,31357], -[0,3768,1149,14629,31360,12692,5957,6994,13792], -"embedded", -[2,4832,21687], -"sassdoc", -[1,2343,21692], -"govuk", -[0,11570,11571,21693,2537], -[0,3768,29664,31365,31366,31367,5284,17625,17626,676,91,17627,6869,4799,12692,4721,3768,31369,31370,31374,8893,6994,31376,6915,17697,6333,31377,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,17651,6674,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,3760,31379,4552,28483,31381,6645,4787,3286,202,5401,27366,6681,17740,1745,17116], -[1,2343,21695], -[0,21696,21698,21705,2537], -[0,3021,31388,31389,2017], -"reading", -[0,2070,4361,2832,1177,4333,1984,4474,2924,1894,4469,48,1628,91,53,4874,2629,4677,1195,2600,4307,4334,4689,4891,17214,8648,5139,87,4230,4681,31392,2651,1938,4409,1895,1947,1955,3177,92,31394,1011,20476,31393,1009,8724,1915], -"retries", -"EMFILE", -"EAGAIN", -"EINVAL", -"EPERM", -"EACCESS", -[0,3771,6038,6106,6105,6138,6139,5130], -[1,2343,21707], -[0,21708,21709,21710,2443], -[0,1525,11482,3350], -[0,3421,2228,2929,1177,4039,4042,4135,1317,2116,31401,4019,3752,20496,53,31402,87,1937,1954,2258,18895,23165,5583,1924,1938,31404,1958,2256,6373,1903,1948,811,1900,816,31405,8229], -[0,5472,2275,1145,6468,4384,4389,2297,2814], -[1,2343,21712], -[0,21713,21714,21716,4139], -[0,31413], -[0,5517,31417,1009,1011,7677,1240,1264,1540,1177,1895,1955,15854,18841,1894,23535,2907,3980,18819,4042,8849,4076,91,1984,2924], -"graphql-js", -[0,1388,965,1936,2907,31419,5472], -[1,2343,21718], -[0,21719,21722,21723,2537], -[0,1457,1525,31426,2107,31427,814,4648], -"all-versions", -[2,1382,21720], -[0,1149,1203,1267,31429,1499,25063,25076,1937,18895,2020,2116,2151,2228,2240,2243,2256,2258,23165,2283,21929,2291,25070,21930,26210,31402,3006,3752,4019,4045,4135], -[0,5472,2275,2814], -[1,2343,21725], -[0,21726,21727,21728,34352], -[0,3518], -[0,31437,1389,4389], -[0,31440,6422], -[1,2343,21733], -"section-", -[2,21730,9338], -[2,4296,12835], -[0,0,21736,21737,2523], -"ansi-green", -"delimiter-regex", -[0,48,53,87,94,104,5583,24621,31447,1290,1317,1481,1610,31448,1177,1938,2064,2036,2822,2899,3400,3421,4039,4042,4077,31449,31452,4193,4423,31453], -[0,3776,6564,594,6731,6081,7517,7532,7594,7595,7523,7524], -"assemble", -[1,2343,21741], -"extracting", -[0,21742,7923,21743,2487], -[0,4127], -[0,3778,28734,28734,4718,1179,16431,2585], -[1,2343,21747], -[3,5364,11], -[2,21745,1398], -[0,8766,21753,21754,2523], -[2,1807,2899], -[2,10692,7018], -"pois", -"son-process", -[2,21750,21751], -[0,3521,4255,4387,4389,4770], -[0,1616,3778], -[1,2343,21756], -[0,21764,7923,2514,2399], -"grunt-k", -"nown-options", -[2,21757,21758], -"legacy-log", -[2,2235,21760], -[3,21761,13], -[2,21762,614], -[0,3779], -"difflet", -[3,16758,16], -"unt", -[2,21766,21767], -[1,2343,21771], -"temporary", -[0,0,7866,21773,34352], -"init", -[0,6754,57,27], -[1,2343,21775], -[0,21776,21777,21778,2487], -[0,3135,3348,977,31479,4252], -[0,2070,3297,2899,4193,1177,4170,2759,1894,1506,1895], -[0,28411,2656,31482,6807,3783,31483], -"gruntplugin", -[1,2343,21781], -[0,21782,21783,2514,2523], -[0,1413,14855,2685,2657], -[0,3421,2899,1177,1362,29197,4100,3923,19344,7844], -[1,2343,21785], -[0,13511,21786,13533,2523], -[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,1955,2675,1192,2990,3144,3400,1894,4257,2924], -[1,2343,21788], -[0,21792,0,21793,2537], -[3,21146,12], -"ncremental", -[2,21789,21790], -[0,2714,3183,1696,4300], -[0,1541,1997,28984,19400], -[1,2343,21795], -[0,21796,21797,21798,2523], -[0,97,1461,3789], -[0,31504,968,972,4859,5087,4874,4880,4883,14693,1610,1789,1177,1939,1982,2079,31506,2193,2070,695,3377,31508,3788,11249,89,3824,3957,91], -[0,89,5128,31511,31512,6847,6754], -[1,2343,21800], -[0,21801,21802,21803,2523], -[0,97,13169,1461,3789], -[0,31504,972,5087,4880,4883,11322,1610,1789,1177,1982,2079,2193,695,3377,31508,89,3824,91], -[0,89,5128,31519,8190], -"liftup", -[1,2343,21806], -[0,21807,21808,21809,2523], -[0,97,3847], -[0,31504,972,5087,4874,4880,4883,15606,31527,11322,14693,1603,1610,1789,1177,1939,1982,2079,2070,2675,2990,3377,1894,31508,89,3824,91], -[0,89,614], -"pad-stream", -[1,2343,21812], -[0,0,0,10570,2399], -[1,2343,21815], -"grunt-nodemon", -[0,21816,0,21817,2399], -[0,3911], -[0,89,31542], -[1,2343,21819], -[0,21822,21823,21817,2523], -"simultaneous", -"faster", -[0,3427], -[0,1192,89,3824,2924], -[1,2343,21825], -[0,21826,21827,21828,2523], -[0,31555,31558,31560,31563,31564], -[0,4042,91], -[0,5575,2220,89,582,21189,4963], -[1,2343,21835], -[2,21831,36], -[3,30922,14], -"bin-", -[3,18806,13], -[2,21832,21833], -[0,21836,0,2514,2443], -[0,3775,1593,1862,4705,3427,3957], -"compass", -[1,2343,21839], -[0,21840,0,21841,2537], -[0,4649,2731,1461,3744,31577,1751,97,31575,31581,31578,5090,3911,4808], -[0,1367,89,4627,4963,31583,5128], -[1,2343,21843], -[0,21844,21845,21846,2523], -[0,31590,1209,3021,31591,3744,31592,4443], -[0,31594,31598,14689,14691,10837,1173,1175,1193,1195,31600,1267,1268,1272,1280,1429,31602,1628,1843,2012,2081,2600,2629,2651,2678,1192,2774,31603,2899,3376,3378,3427,89,21074,31605,3824,3836,31606,3904,4001,4015,4039,4307,31608,2924,4681], -[0,89,31611,5128,20542,3811,31612,3195,31614,5027,8192], -[2,1547,3000], -[1,2343,21849], -[0,21850,21851,21852,34352], -[0,1582,3744], -[0,48,53,68,61,78,87,90,94,1195,1251,1628,1703,1177,1879,1938,1947,1959,1961,2193,2651,31622,3177,89,3824,4307,4389,2924,4677,4681], -[0,4627,5128,89,31625,1492], -[1,2343,21854], -[0,21856,21857,21858,34352], -"file-sync-cmp", -[0,8703,1497,1668], -[0,53,68,5228,8229,61,87,90,92,442,31633,5583,811,816,10615,10817,966,972,974,5601,5087,11292,4874,4880,4883,1009,1011,1169,1193,1251,1593,33872,1177,1895,1938,1939,1959,1961,27790,2675,1192,11347,2771,2780,2990,1209,1894,89,3824,4042,11802,2278,4213,4320,4323,5978,4330,4468,4484,91,4523], -[0,89,3812,9026,1666,5128], -[1,2343,21860], -[0,21862,21863,2514,2523], -"csslint", -[0,3445,1437,2696,2205,3539,15427,2105,31642,3742,2098,2553,4294,4425,1615,4165,1393,3008,14564,31640,51,3938,3829,1874,2135], -[0,1192,1610], -[1,2343,21865], -[0,21866,21868,2514,2487], -[0,31650,31652,31654,2069,2609], -"maxmin", -[0,8719,842,972,5540,5087,4874,4880,4883,1192,11944,3400,89,3824,4172,91], -"cssmin", -[1,2343,21871], -[0,21872,21873,2514,4139], -[0,31654], -[0,8719,842,5087,3400,4172,91], -[1,2343,21875], -[0,21876,0,21877,2537], -[0,814,19526,53,104,8959,5251,101,31669,10879,31666], -[0,89,1745,31671], -[1,2343,21879], -[0,21880,0,10570,2537], -[0,4116], -"jpeg", -[1,2343,21883], -[0,21884,21885,21886,2537], -[0,31683,31686,3744], -[0,48,53,68,8229,31689,73,31690,14170,13051,31693,83,87,90,94,192,22559,19036,26486,5583,811,816,6061,16607,6065,16608,16612,5535,10876,31695,966,968,972,20562,4880,4883,1009,1011,1193,1198,1201,1527,1610,1177,1895,1938,1947,1954,1955,1959,1961,2675,31696,2694,1192,2990,3125,3534,1894,89,3824,3895,3904,4039,4042,4073,4131,4201,4307,4315,91,2924,31699], -[0,5128,89,7518,5398,9229], -[1,2343,21888], -[0,0,21889,21891,2537], -[0,51,53,31705,1193,1195,1270,1437,1457,1610,2126,2626,1192,31706,3427,1862,3786,89,3803,3824,4039,31708,4227,2924], -"hooker", -[0,3473,5341,1851,12991,5403,31710,31711,4649], -[1,2343,21893], -[0,21894,21895,21896,2537], -[0,3427,3744,21174,31718], -[0,1175,1178,1203,1208,1230,1245,1264,1268,1429,1503,1567,1652,1177,31721,1895,1938,1947,1951,1955,1959,2759,2297,2878,30885,2881,2886,2895,31723,2900,2910,2921,2923,28636,2899,1894,89,3824,4039,4042,4045,4055,4067,4069,4193,4196], -[0,3830,31725,89,1746,3193,17913,5207,163,1508,1299,31726,590], -[3,13115,12], -[2,21897,1462], -[1,2343,21900], -[0,0,21901,21902,2537], -[0,19438,603,811,816,10615,842,16145,968,972,5087,4874,4880,4883,6375,1651,1177,1895,4916,1955,1959,1961,10964,2675,1192,2780,27412,31734,2990,1894,89,3824,4039,4042,4076,4481,91,4523,4705,4763], -[0,89,582,1669,25,7021,7020,91,6687], -"nodeunit-x", -[1,2343,21905], -[0,21906,21907,21908,2487], -[0,26007,2202,2609,3008,3744,3849,4163,4227], -[0,8130,4880,8158,1173,1175,1178,1193,1201,1203,1230,1245,1257,1264,1268,1503,13985,1603,1610,1843,31742,1845,1177,1879,1895,1938,1947,1959,2675,1192,2990,1894,89,3824,31743,3904,3935,4039,4042,4045,4055,4058,4067,4069,4077,4257,31745], -[0,89,5284,2924,11498,3000,2998,6109,6609,1194,2999], -[1,2343,21910], -[0,21911,21912,21913,2487], -[0,97,31752,5545], -[0,48,53,68,23908,78,5241,83,85,87,90,94,5583,811,816,6373,10615,966,968,972,5087,4880,7677,17584,1175,7913,14065,1596,1597,1610,1177,1879,1895,1938,31755,1947,1959,1976,2559,2675,2681,2990,3188,1894,89,3824,3904,4039,4042,91,1984,4747], -[0,2681,23932,2679,8930,23933,6728,23934,89,6071], -[1,2343,21916], -"uri-path", -[0,0,21917,21918,2399], -[0,5517,11976,5535,968,972,4874,4880,4883,1030,32818,16480,19839,2990,3165,3400,3541,23535,89,3824,9245,4201,4493,91,1984], -[0,89,4627,582,31765,31766,31767,31769,31770,31771,31779], -[1,2343,21920], -[0,21921,0,21922,2537], -[0,5540,2609,4484,26222,31797,31791,31799], -[0,1671,6983,23934,2679,23932,2728,30948,23933,89,6071,8574,8930], -[1,2343,21924], -[0,0,0,10570,2487], -[1,2343,21926], -[0,0,21931,2514,2523], -"grunt-co", -"veralls", -[2,21927,21928], -[2,2235,2759], -[0,1420,1437,1177,31815,1192,2774,1894,4042,4069,4077], -[1,2343,21933], -[0,21934,21935,21936,2487], -[0,12396,9363,23289,2583,31821,3140,3992,3999,4549,4555,12449], -[0,972,4874,4880,4883,1414,1537,668,1959,10621,1894,89,3824,3973,29250,3985,3988,3998,10632,4505,91,1906], -[0,6892,20627,4627,3987,1783,89,5128,3984,4549], -[3,2289,9], -[1,2343,21943], -"all-releases", -[2,9005,21939], -[2,21937,21940], -[2,2235,21941], -[0,21946,21947,21948,2523], -"gh", -"releases", -[0,31828,3744,3849,4649], -[0,31832,1173,1175,1178,1195,1198,1264,1268,1277,1596,1610,1177,1895,31393,1938,1947,1955,1959,13871,2297,2881,2886,2895,2900,2904,2921,2925,2899,3400,1894,89,3824,3884,3885,4170,4535,2924,4677,4681], -[0,89,5128,5066,18346], -[1,2343,21950], -[0,21951,21952,21953,2523], -[0,3518,3744,3775], -[0,1172,31840,1175,1178,1195,1505,1628,1177,1879,1916,1938,1947,1959,2126,29945,31841,31842,2766,2297,2886,2898,31844,2906,2925,31845,3521,3836,4307,2924,4681], -[0,89,4627,5128,31847,8424,31849,12185,7521,9944,181], -[1,2343,21955], -[0,21957,0,21958,2537], -"vow", -[0,4729,31705,4747,4135,1862,1301,1525,2731,4116,1109,1193,31856,27921,3145,4705,31859,3717,3878,30781,1079,31861,28512,31864,24169,3957,31867,2784,31871,31877,31880,31884,31891,31893,21129,31896], -[0,89,3857,12296,12295,5131,16697,31904,31906], -[1,2343,21960], -[0,0,21961,21962,2537], -[0,29525,21155,21156,1177,1955,1894,89,3857,21166,91], -[0,3857,5128,31912,89,5131,12295,12296,31914], -[1,2343,21964], -[0,21965,21966,21967,2487], -[0,4747,3744], -[0,89,1177,31934,31928,2735,1894,10777,48,31923,53,1178,2132,31926,21495,31929,31935,31932,31920,31922,1959,1879,1938,1895,1947,1955,1961,5103], -[0,3857,5128,31912,89,5131,12295,12296,31937,6574,6635,181,1017,45,13814,22875,2414], -[1,2343,21971], -"ravis-cli", -[2,6305,21969], -[0,0,21973,21974,34352], -"TDD", -[0,48,53,61,78,5240,87,90,94,31942,20202,20212,602,15134,10817,968,972,974,4880,1011,1178,1195,1198,4899,1461,1497,1610,1177,1895,1916,1938,1959,2193,2832,3132,15326,1894,9054,89,3824,31945,4042,4045,4055,11802,4060,4067,4069,4077,4469,91,1984,2924,4677,4681], -[0,5128,89,31948,6847,6988,31950,10098], -[1,2343,21976], -[0,0,21977,21981,2537], -[0,53,61,78,87,14041,5583,1178,1195,1429,1177,2675,2990,2899,3400,1894,89,3824,3904,31956,4039,4042,2924], -[3,2247,10], -"inue", -[2,21978,21979], -[0,89,31958,31959,3868], -"grunt-env", -"-coverage", -[2,21930,21983], -[1,2343,21986], -[0,0,21987,21988,2537], -[0,8862,31964,1177,31966,1955,31967,1192,1894,4042,91], -[0,3872,1936,8221,965,3205,23584,1541,89,3824], -[1,2343,21992], -"afe-mocha", -[2,2241,21990], -[0,21993,21994,21997,2523], -[0,5546,5545], -[0,603,810,966,968,972,4874,5090,4880,4883,1503,1610,1177,1895,1915,1938,1955,1959,2832,1894,89,3824,3875,4039,4493,91,4523,1984], -[2,21996,995], -"@sailshq/r", -[0,89,6071,3875], -[1,2343,21999], -[0,0,0,10570,2537], -"grunt-release", -"s-dylang", -[2,14352,22001], -[1,2343,22004], -[0,22006,22007,22010,2537], -"notify", -[0,2677,31983,3744,1849], -[0,10817,4856,31986,13204,31989,31992,6503,4880,4883,6513,1009,1011,1429,1610,1177,1924,2193,2832,31994,2899,1894,89,3824,4039,4042,11054,4170,4193,4484,4494,4508,91], -"mountain lion", -"mavericks", -[0,1623,5128,31765,89,5131,31997,31999,6415,32001,6398,4627], -"notify-send", -[1,2343,22013], -[0,22014,22015,22016,2487], -[0,977,5152], -[0,4493,89,4548,22205,28119,3824,91,3904,972,2780,5162,968,974], -[0,89,38,4082,7433,2602,163], -[1,2343,22018], -[0,22019,22020,22016,2399], -[0,3884], -[0,4493,89,22205,3824,91], -[1,2343,22023], -"libsass", -[0,0,22024,22025,2537], -[0,1173,1175,1178,1195,24231,24234,1257,1267,1268,1275,1280,1177,1898,1935,1938,1947,1959,2022,2602,22588,31842,2297,2886,2895,2900,2904,2921,2925,2899,89,3824,3876,3884,3875,32020,32023,32026,2924], -[0,89,3875,38], -[1,2343,22028], -[2,705,1153], -[0,22029,6230,2514,2537], -[0,1324,1192,1759,1177,4135,3561,3742,814,2924,2151,2154,1420,1193,1628,53,2092,4111,4383,1195,1393,2797,4307,841,1763,3878,3618,3816,3647,4230,2686,3672,3803,4028,4681,2651,2802,24732,4409,1270,3605,4723,1898,3177,4686,1630,1216,1426,24723], -[1,2343,22032], -"sauce-tunnel", -[0,22036,22038,22039,2443], -[3,2311,11], -"-tunnel", -[2,22033,22034], -[0,97,7931,7948,8181,4808,3145,3744,3911,8187], -"yui", -[0,11931,1843,8160,11875,89,3824], -[0,32039,1669,6847,32040,89,5128,1631,181], -[1,2343,22041], -[0,22042,22043,22044,2523], -[0,1461,32046,3029,4023], -[0,48,53,68,61,85,87,90,28598,968,972,974,4874,1165,1175,1193,1195,1261,1628,1699,1700,1859,1177,1938,1959,2026,32049,2323,2494,2675,1192,2780,2820,2843,2990,3459,3618,1894,3775,89,3824,3957,4193,32051,4307,4537,2924,4677,4681,32052], -[0,11167,32054,32055,32056,31512,5128], -[1,2343,22046], -[0,22047,22048,22049,2523], -[0,32061,4889,32062,1082,15128,1145,12184,1397,1465,5386,1497,32063,1584,1593,19526,32064,1863,1874,1875,2007,29067,7076,32067,7610,2070,32068,2570,2745,32070,32071,32072,32076,32080,32081,32084,32085,2929,32086,1209,21641,3120,32087,6041,3467,3725,3744,32088,32089,3816,3822,32091,32095,32097,3839,12438,3930,3984,32098,4409,19650,32099,4555,4681,4689], -[0,48,53,61,87,14128,90,92,968,972,32102,32104,31669,32107,1006,32109,5087,32112,4870,32114,4874,8149,4880,4883,32116,32118,4891,32120,8157,1009,1011,1175,1178,1193,1195,1628,31058,32121,32123,32124,1177,32126,1915,1924,1938,1947,1959,2092,2151,2675,1192,32129,2990,3144,1894,3775,89,3824,3904,32130,4307,91,4027,2924,4677], -[0,89,1219,6718,25172,1745,1739,1179,4627,4963], -[1,2343,22051], -[0,22056,22059,22063,2537], -"sprit", -"esheet-templates", -[2,22052,22053], -"sprites", -[0,97,955,5090,3744], -"spritesmith", -"url2", -[0,53,83,87,90,442,15288,5583,811,816,6373,10615,972,5087,13204,4874,4880,4883,7749,1251,11890,1177,1895,1959,1961,10964,2203,1192,2780,3297,3401,1894,89,3824,4042,4167,4172,11803,4468,4474,91,4523], -[3,21470,15], -"wolfson", -[2,22060,22061], -[0,965,1936,11806,11807,5284,89,32142,8221,32145,91], -"foundry", -"-release-git", -[2,22064,22065], -[3,22066,16], -[2,22067,3378], -[1,2343,22070], -[0,22073,0,22076,2487], -"get-pixels", -"gmsmith", -[0,2081], -"sprite", -[3,22054,11], -[0,32151,89,4453,1702,32152,3899], -[1,2343,22078], -[0,22079,0,22080,4139], -[0,3847,4116], -[0,89,3857,32162], -[2,17566,200], -[1,2343,22083], -[0,6234,22084,22085,2523], -[0,32167,27742,549,963,4874,4880,4883,1030,1596,1651,8540,2990,3561,1894,89,3824,4493,91,1983,32170], -[0,89,9044,11000,5128,3906,6645,32172,26264,6458], -[1,2343,22087], -[0,22094,22095,22096,2523], -"@npm/types", -[2,7726,2855], -[3,8610,9], -"ite-file-atomic", -[2,22090,22091], -[2,16569,1182], -[0,32177,32178], -[0,1317,1389,1408,1506,32180,5669,1839,32181,1859,1177,19896,2228,2240,25074,2247,18461,2256,2273,32183,25060,32186,2774,3460,3521,12344,32188,3930,22031,4449,91,4535,31135,4652], -[0,89,1219,8535,6624], -[1,2343,22098], -[0,22103,0,22104,2399], -"@guarapi/eslint-config-guarapi", -[2,8711,93], -[3,5542,13], -[2,22101,3312], -[0,97,1751,3082,3744], -[0,89,9944,19102,32195,7521,1623,32196], -[1,2343,22106], -[0,22107,22108,22111,2487], -[0,1497,3744,1751,3082,97,3849], -[0,1192,2675,89,2282,1177,4039,4042,1503,3561,2924,2126,2193,1894,1610,2700,3758,3824,48,1193,1505,1628,53,2092,2990,3566,4677,1165,1178,1195,3720,3884,4307,3618,85,29945,32207,3885,87,14128,18229,4681,90,32203,1922,1959,32205,2651,3904,4045,4077,32202,4069,1895,1935,1947,1955,4055,32206,4067,2054,8229,83,14132,28972,61,5241,1251], -"undertaker", -"glob-watcher", -[0,89,6071,5128,4607,3392,32209,32210,3912,176,32211,10345,9320,15182,10052,21604], -[1,2343,22113], -[0,22116,22117,22118,2399], -"series", -"streaming", -[0,4430,3909], -[0,2899,2272,4135,15052,1389,1537,32218], -[0,89,1389,14927,1219,676,1932,353], -[1,2343,22120], -[0,22121,22123,22124,2523], -[0,97,6372,1461,3744,32225,3911], -"gulp-footer", -[0,48,53,68,73,76,78,5241,87,90,10821,10825,10828,32229,10837,968,972,974,4880,1178,1193,1195,1270,1367,1540,1567,25901,1610,32231,1787,1797,1177,1879,1895,1935,1938,1947,1959,10851,32233,1192,2780,2832,2843,3165,1894,89,3824,3830,32236,3884,3904,91,2924], -[0,3916,1367,89,4627,4963,5128,181], -[1,2343,22128], -"html2js", -[2,1283,2325], -[0,22129,22130,2514,2537], -[0,8612], -[0,9516,9515,8608,13680,1011,1414,1915,4384,4474,4483,91], -[1,2343,22132], -[0,22134,11332,22135,4139], -"gulp-symdest", -[0,18186,18183,16474,4507,20789], -[0,1781,3917,1644,2090,2150,30135,3001,3383,3374], -[1,2343,22138], -"atom-shell", -[0,22139,8134,22140,2537], -[0,30055,3919,4507], -[0,1781,3917,1644,2090,2150,30135,3001,3383,2100,2104,2105,7076,6614,6605,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], -[1,2343,22142], -[0,22143,22144,22148,34352], -[0,1079,1398,2018,3729,15042], -[0,53,14170,13051,19181,811,15460,816,826,1389,1414,668,32258,1177,1903,1938,1953,1958,3541,1894,4042,23652,4384,32262,4389,4390,4548,2924,4677], -"prefixes", -[3,3674,9], -[2,22146,8736], -[0,7017,3101,7170], -[1,2343,22150], -[0,0,22151,22152,4139], -[0,4384,2685], -[0,3925,32271,2090], -"lodash.chunk", -[1,2343,22155], -[0,0,0,22158,34352], -"-transform", -[2,13792,22156], -[0,3925,31360,24095,3741,8631,6875,200,6621,1523,32276,8652,6703,1359], -[1,2343,22160], -[0,8856,7938,7939,2523], -[1,2343,22162], -[0,22163,22165,22169,2523], -[0,12184,2003,4227,32284,4484], -"b", -[0,53,58,87,32287,4865,6503,4874,1011,1177,19896,32288,2070,2990,2899,1894,24209,91], -"storage-blob", -[2,13444,22166], -[2,12694,14922], -[0,6892,22179,32291,5061,5341,22180,7119,32293], -"streamifier", -[1,2343,22172], -[0,8029,7938,7939,4139], -[1,2343,22174], -[0,22175,14066,22176,2537], -[0,814], -[0,3209,1194,7188,19101,32302], -[1,2343,22178], -[0,22182,0,22183,2537], -"rewriting", -[3,12348,14], -"desugaring", -[0,97,32307,2081,2609,3849,5513], -[0,89,6734,4963,32310,6081,6731,32312], -[1,2343,22185], -[0,13856,7923,22186,4139], -[0,7204,32318], -[1,2343,22191], -"utf-8", -"add", -"prepend", -[0,22192,0,22193,2487], -[0,32325,32327,32329,32330,32333], -[0,1552], -[1,2343,22195], -[0,22196,22199,5885,2399], -[0,6327,8111,3127,8114,3725,4213,3555,1757,1461,3191,3744,8122,8123,8113,8127,2017,8116,3502,8126,8119,32343], -"decov.io", -[2,2364,22197], -[0,3775,1002,1192,3190,2675,89,4484,1843,1177,4039,1593,1651,2822,3471,4167,4468,4474,8166,2924,1894,3824,1628,4201,91,4856,5087,8144,4874,8165,4677,4880,4892,3720,4307,4863,8147,8146,8149,8155,4891,8160,8161,8163,10875,8136,4883,5090,4315,8157,1311,4681,8141,1584,1959,2651,1938,8139,2780,4693,8152,1011,1961,1567,8129,2135,1009,32341], -[1,2343,22201], -[0,22202,22203,22204,2537], -[0,32353,32351], -[0,89,2924,3824,91,4880,4883,32359,32358], -[0,3939,3452,5592,8124,1745,32361,467,32363], -"wireit", -[1,2343,22207], -[0,0,22208,22209,2523], -[0,53,4874,1009,1011,1610,10888,1177,1898,1915,1938,1959,1961,2070,32368,1894,4039,4094,4493,91,1984], -[0,3875,6696,6649,6788,6564,2700,6609,2998,6596,2130,6891], -[1,2343,22211], -[0,22212,22213,22214,2523], -[0,32376,32378], -[0,32380,32383,32385,2675,2990,3400,1894,1983,1984,1906], -[0,2130,3875,27106,10820], -[1,2343,22216], -[0,22219,22221,22224,2523], -"bump-regex", -"plugin-log", -[0,1209,3847,1860,2731,2752,3744,97,2609], -"versioning", -[0,4449,1192,2675,89,3875,1177,4039,1503,2924,2126,1894,1610,2700,3824,48,1693,4201,53,32392,2990,3876,4677,1178,1195,32394,87,90,1210,1922,1959,10623,3904,1938,32385,32393,1935,1947,1898,4676,1961,5535,31393,83,61,5240], -"gulp-version", -[3,2476,11], -[0,89,6071,2130,3875,3876,3945,1669,4636], -[1,2343,22226], -[0,22227,22231,22232,2487], -[0,1688], -"swap", -"cache-swap", -"object.pick", -[0,1175,1203,29775,1267,1429,1503,1177,1879,1938,1947,1959,2665,2675,2899,3421,3875,4039,4042,4045,4055,4067,4077,4193], -[0,3875,2942,3946,2663], -[1,2343,22234], -[0,22235,22236,22237,2399], -[0,32408], -[0,53,83,85,87], -[0,5284,3875,2663,3947,32416,32418], -[1,2343,22239], -[0,0,22240,22241,2523], -[0,1009,1011,1610,1177,1895,1894,3875,4039,4493,91,1984], -[0,3875,3949,2663,32425,2130], -"file-e", -[1,2343,22247], -"xtension", -[2,22242,22244], -[2,17355,22245], -[0,0,22248,22250,2537], -[0,4856,6503,4874,1429,1700,32431,2323,32433,32435,2463,2494,32436,2524,2899,91], -"changed", -[0,4636,6774,5284,19080], -"modified", -[1,2343,22256], -"modification", -"mtime", -"passthrough", -[0,0,22257,22258,4139], -[0,1503,2228,2314,2759,14529,3774,4019], -[0,1108,6961,5284,3656,1179,4990], -[1,2343,22260], -[0,0,0,22261,2537], -[0,5659,7047,1179,1149], -[1,2343,22263], -[0,22264,0,22265,2487], -[0,12396,3971,3978,4549], -[0,32452,6892,1936,1644,3729,3958,4141,1646,5341,1633,4549], -[1,2343,22267], -[0,22268,22269,22270,2523], -[0,12396,23247,9401,12421,4549,4555], -[0,4874,23262,1414,32460,1894,3958,3985,3998,4505,91,1906], -[0,4549,3958,32462,1932,156,163,1936], -[1,2343,22272], -[0,22273,22274,22275,2537], -[0,12396,23247,12421,32467,4233,4555], -[0,4874,23262,1414,1894,3958,3985,3998,4505,91,1906], -[0,4549,3958,32462,1932,2587,1936,1783,11052,163,1002], -[1,2343,22278], -"jshint-", -[0,22281,22282,22283,2443], -"reporter-jscs", -[2,22277,22279], -[0,12396,32481,3137,12127,12133,4549,12447], -[0,9311,4874,4880,1414,1177,27706,1947,1959,23312,1894,3985,27711,32484,91], -[0,2587,1936,1783,9102,3958,32462,4549], -[1,2343,22285], -[0,22286,0,22287,2523], -[0,12396,23276,4549], -[0,32452,6892,1936,1644,1932,3958,32462,5341,1633,4549], -[1,2343,22289], -[0,22290,22297,22298,4139], -[0,12396,2572,12449], -[3,19569,12], -"rework", -"rework-import", -"rework-", -"plugin-url", -[2,22294,22295], -[0,4874,1414,1894,3978,3985,3992,3998,3999,4505,91,4549,4555,1906], -[0,1936,1932,3972,3958,32462,4549], -[1,2343,22300], -[0,22301,22302,22305,2537], -[0,12396,7610,9401,2584,4555], -[0,4874,1414,1894,3958,3985,3998,4505,91,1906], -"slush", -"dest", -[0,156,1936,3265,1932,3958,32462,3974,4549], -"conflict", -[1,2343,22308], -[0,22309,0,22310,2487], -[0,12396,2581,4549], -[0,32452,6892,7234,1936,1932,3958,32462,4141,1646,5341,1633,4549], -[1,2343,22312], -[0,22314,22315,22317,2523], -"webserver", -[0,22353,692,29431,1154,15444,1458,7614,9322,2720,32513,3060,3173,29024,3445,3467,6331,20921,4135,27921,4548,4566,32514,4748], -[0,442,32523,4874,1177,32525,2203,17529,2931,29442,32519,1894,3985,32522,4390,91], -"hyperlink", -[0,6147,13729,1528,32528,3358,2195,17978,24095,15656,3378,20001,6645,3979,3980,18157,1508,4166,10381,4990,15525,4135,1932], -[1,2343,22319], -[0,22320,22321,22322,2537], -[0,2759,3181,3544,4227,4431], -[0,1177,1881,1938,2228,2323,17121,4039], -[0,18444,21779,4227,2759,4504], -[1,2343,22325], -"csscomb", -[0,22326,0,22327,2537], -[0,4549,9363,3992,13124], -[0,32452,6892,7234,1783,26564,1644,3729,3984,4141,1646,5341,1633,4549], -[1,2343,22329], -[0,22330,0,22332,2443], -[0,5210,32544,3984,32545], -"rcloader", -[0,20052,200,1783,26564,3984,4549], -[2,21861,2838], -[2,15526,2063], -[1,2343,22336], -[0,22337,22338,22339,2399], -[0,9363,27008,27010,3992,13124,4549], -[0,4874,1414,32460,1894,3984,3985,3998,4290,18071,4505,91,1906], -[0,26072,26766,3987,2195,1783,26564,1932,3984,32553,12994,176,9000,4549], -[1,2343,22341], -[0,22342,22343,22344,2537], -[0,9363,2575,3140,2581,4549], -[0,12396,4874,1414,26992,23276,1894,3985,9340,3988,10630,3992,3998,32560,10632,4505,91,12449,1906], -[0,7234,1936,1783,26564,1932,3984,32553,1646,4549], -[1,2343,22346], -[0,22347,22348,22349,34352], -[0,12449,4549,9363,32568,12447,32567], -[0,1414,1177,3984,1894,3541,3985,91,12396,3999,3978,32484,27706,27711], -[0,1745,25131,3990,1932,3984,32553,4549], -[1,2343,22351], -[0,22352,0,22354,2523], -[0,9363,3137,26987,4549], -"@nodeutils/defaults-deep", -[0,32452,6892,1783,26564,1644,1932,3984,32553,5341,1633,4549], -[1,2343,22356], -[0,22357,22358,22359,34352], -[0,32582,32584,3988,32587,32591,23059,23065,23070,23075,23078,32593,23080,32595,23082,32599,32601,32606,32609,23098,32613,23113,32617,32620,32626,32629,32631,32636,23118,32638,32640,32646,32651,32654,32656,32658,32664,23128,23133,23136,32667,23139,23141,11382,32668,10632,32669,32672,4549], -[0,192,5467,1177,1909,2114,2675,2990,1894,3985,1906], -[0,2195,16342,3984], -"from2-string", -"@shi", -"nnn/eslint-config-node", -[2,22361,22362], -[1,2343,22366], -"warnings", -[0,22367,22368,22369,2537], -[0,32582,3988,10630,23059,23065,23070,23075,29079,23078,29082,32593,23080,32595,23082,32599,32601,32606,23092,32609,32681,32686,32689,29091,29097,29100,29132,29143,29147,29149,32613,32692,23113,32696,32617,32699,32620,32626,32629,32631,32636,23118,32638,32703,29151,32705,32646,32651,32707,32710,32654,32656,32658,32715,32717,32664,23128,23133,23136,32667,23139,23141,11382,32668,13124,10632,23143,32669,32719,4290,4549], -[0,1894,3985,4505,91,1906], -[0,16342,3984,3997], -"-match", -[2,7534,22370], -"flatnest", -[1,2343,22374], -[0,22376,22377,22383,4139], -"@type-challenges/utils", -[0,12396,9363,3140,4549,12449], -[0,4874,1414,1894,3975,3978,3985,3992,3998,13124,4505,91,1906], -[2,29833,2658], -[2,3101,7131], -"to-a", -"bsolute-glob", -[2,22380,22381], -[0,2587,1936,1783,26564,1932,32462,3958,32553,3984,4549], -[1,2343,22385], -[0,22386,22387,22388,2487], -[0,1139,32732], -[0,1111,1317,20627,1177,1926,1999,2398,2600,3127,2899,3421,4042,4058,4067,4073,4146], -[0,20627,1783,5980,1644,57,3729,4001,8924,3902,2585], -[1,2343,22391], -"divide", -[0,0,14066,22393,2523], -"separate", -[0,2323,19101,17996,8297], -[1,2343,22395], -[0,22396,22397,22398,2537], -[0,1437,2070,4747], -[0,442,1414,1429,1431,1177,2899], -[0,4068,2585,16504,2090], -[1,2343,22400], -[0,22401,22403,22404,2399], -[0,3763,29749,3348,2051,32749,15057,32751,2139,3173,32753,4100,4454,32754,32756,32757,32758,32759,21144,3518,2854], -[2,3715,4001], -[0,3421,4389,2297,32761,4039,1503,1362,4255,1596,32762,19946,1389,1400,14038,2886,4153,2871,3524,21146,2906], -[0,27,2869,614,6435], -"prettify", -[1,2343,22407], -[0,22408,22409,22411,2537], -[0,1362,4454,32768,32770], -[0,1429,2323,1437,1209,4039,705,2463,1364,2384,4089,2436,27608,3753], -"jsftp", -[0,4731,27,2671,1862,705,21244,32773,1362], -"jsftp-mkdirp", -[1,2343,22415], -"ftp-test-server", -[0,22416,22417,22418,34352], -[0,32770,32768,4454], -[0,1364,1429,1437,2323,27608,2384,2436,2463,1209,3753,705,4039,4089], -[0,4731,27,2671,1862,705,21244,32773,970], -[1,2343,22421], -"gift", -[0,0,22423,2514,2399], -"wrap-promise", -[0,4474,91,1506], -[1,2343,22429], -"octonode", -[3,8304,11], -[2,15034,22426], -[2,22363,1231], -[0,0,22431,22432,2537], -"branch", -[0,6637], -[0,3209,4017,32792], -[1,2343,22434], -[0,0,22441,22442,2523], -"any-", -[2,5124,1867], -[2,22435,22436], -[3,21732,13], -"eam", -[2,22438,22439], -[0,810,972,4870,4880,4883,7749,1009,32801,1011,32804,1177,1959,32805,2832,1209,3057,3145,32807,32368,1894,89,3824,3876,4039,4167,4493,91,1984], -[0,89,3875], -"gulpgit", -[1,2343,22445], -[0,0,22446,22447,2537], -[0,1178,1597,1177,2765,2766,2297,2881,2895,2898,6387,2910,2915,2921,2923,3734,4042,4075,91], -[0,32814,24800,31767,614,5576,1388,6422,6805], -[3,6530,10], -[2,22448,4552], -[1,2343,22452], -"nid", -[0,22453,22454,22455,2399], -[0,32820,17501,32824], -[0,15221,4384,4449,4389,1796,1177,3188,4039,4135,32826,3410,2708,3433,20492,4103,13614], -[0,814,3209,202,1237], -[1,2343,22457], -[0,0,8134,22459,2523], -"gulp-de", -[0,3209,814,3403,1237,7115,15403,1204], -"gulp-declare", -[1,2343,22464], -"fine-module", -[2,22458,22462], -[0,22467,0,22468,2399], -"gulp-wrap", -"nsdeclare", -[0,32836,1573,3008,3561,4227], -[0,2924,1194,1623,3374,9345,814,1002,2278,10903,2090], -[1,2343,22470], -[0,22471,22472,22473,2523], -[0,32842,8098,2151,2036,2822,32843,3348], -[0,48,53,13693,61,71,78,13051,85,87,97,192,6298,6061,6063,1166,1170,1178,1208,1212,1364,1429,16311,1596,31058,1687,8942,1177,32848,32850,1938,1948,1951,32852,1954,1958,1964,32855,1966,1969,1982,2026,32856,2675,2824,2848,3019,2899,3200,32858,3421,4131,32860,4342,32861], -[0,8623,1118,1179,1745,32864,6533,32867,4030,5592,27], -[1,2343,22476], -"eventstream", -[0,22477,22478,22479,2537], -[0,3763,1641,32874,3171,3441,3533,710,32876,3348,1209,4135,4591,30107,3084,2141,12627,1147,20412,32759,32875,15220,32873], -[0,3421,3467,1429,2070,2899,4193,1177,3188,4039,2720,2276,1894,1596,1155,32883,20441,3697,3752,1745,32881,32878,1942,1895,1955], -[0,8173,5130,2026,32885], -[1,2343,22482], -[2,11941,1596], -[0,22483,9888,2514,2537], -[0,3763,4734,4745,2685], -[1,2343,22485], -[0,22486,22487,22488,4139], -[0,21420,4174], -[0,4481,1906], -[0,2021,32896,3729,30135,32897,7226,6689,32899,32900,24601,200,13006,1111,15814,6048,7009,7201,6621,4166,6876], -"htm", -[1,2343,22491], -[0,22492,0,22493,4139], -[0,1362], -[0,18035,32906,32907,32909], -[1,2343,22503], -"gulp-spawn", -[2,22501,33473], -"gulp-svg2ttf", -"2svgfont", -[2,45,22498], -[2,2518,22499], -[3,29059,12], -"gulp-ttf2eot", -[0,0,22506,2514,2523], -"gulp-ttf2woff", -[2,22504,1276], -[0,21147,2759,4389], -"@types/gulp", -[1,2343,22513], -"metapak", -"-nfroidure", -[2,22509,22510], -"streamtest", -[0,22514,22515,22516,2523], -[0,1177,5896], -[0,4874,2025,2899,3421,4474,91], -[0,7190,14419,3212,1858,1237,2275,1973,27916,3430,21147,3209], -[1,2343,22520], -"gulp-match", -"ternary-stream", -[0,0,22523,22526,2537], -"exhaust", -[2,4279,22521], -[0,5898,1503,6618,6786,30025,32925,3028,32927,32930,3776,4255,4384,4481], -"if", -"ternary", -[0,3048,7002,3583,1496,1585,1697,6899,6803,3432,6693,3743,7098,6638,6618,7167,2062,6681,6856,6986,7035,6648,7284,6786,6670], -[1,2343,22528], -[0,22529,22530,22531,2537], -[0,2070,21510], -[0,4874,3188,1894,4384,4483,4508], -[0,6790,7218,6610,7293,7204,200,7074,6899], -[1,2343,22533], -[0,22534,22535,22537,2537], -[0,3263,8248,32944], -[0,2765,32942,32947,32949], -"gulp-gm", -[0,32951,27747,29002,8652,12197,158,32952,28125,4041,13008,32954,32956,32959,32961,1473], -[1,2343,22539], -[0,12881,22540,22541,2537], -[0,16003,32967,16005,16002,16000,15999,442,8998,5012,25130,11536,8862,15134,811,8850,816,6373,10615,10817,10895,32970,6503,4874,20374,5254,21626,21830,1082,32971,15128,1397,1405,1457,1540,1593,1610,32972,1859,1866,1177,1895,1955,1982,1988,2116,32973,2151,10754,2203,2675,10898,2990,10902,3090,3144,2899,3363,22496,3421,5561,3527,3530,32977,1894,3706,3714,3718,4019,4042,4060,4135,4172,4174,4227,4232,4376,4072,4484,91,4523,1983,4614,188,4630,13151,32979,4748], -[0,5260,6996,6903,5194,6708], -[1,2343,22543], -[0,22544,22545,22546,2537], -[0,5652,4081], -[0,53,8229,71,83,87,1397,1177,1895,1955,2675,2990,2899,1894,4042,4048,4058,4227,4232], -[0,4080,1172,6778,5194], -[1,2343,22548], -[0,22549,22550,2514,2443], -[0,1397,4081], -[0,1177,2899,4042], -[1,2343,22552], -[0,22553,22554,22556,2523], -[0,32998,4081], -[0,15134,1177,2022,2899,3421,4039,4042,33001,33002], -"group-array", -[0,4042,4080,5284,5194,5260,4298,33005,4051], -"strip-color", -[3,5467,19], -[2,22558,1098], -[1,2343,22563], -[2,5376,591], -[3,10705,13], -[0,22564,22565,2514,2537], -[0,2007,10898,3090,814,4081], -[0,53,87,94,1082,1177,1938,2675,2990,10902,2899,1894,10904,4042,4045,4058,4067,4172,4227,4232,91], -[1,2343,22567], -[0,22569,22570,22571,2537], -"inline-css", -[0,3090], -[0,51,19861,33017,1006,4874,4880,1414,4042,91], -[0,4080,91,4056,1007], -[1,2343,22573], -[0,22574,22577,2514,2443], -[0,4081], -"lodash.g", -[2,22575,19530], -[0,1177,1938,2675,2990,2899,1894,4042,4048,4067,4232], -[1,2343,22579], -[0,22580,22581,22582,2523], -[0,33028,20378,1209,3090,3220,33029,33031,33036], -[0,53,87,94,5583,811,816,8661,1009,1011,1104,1198,1177,1881,1938,2061,2151,29406,2323,33038,2441,2765,2766,1894,4039,4042,27720,33042,4449,91], -[0,4042,4080], -[2,17487,8162], -[2,11941,22583], -[1,2343,22586], -[0,22587,22589,22591,2487], -[0,33048,33051,1618,33052], -"isparta", -[0,24235,1676,2899,4042,4045,4066,4146], -"unit test", -[0,4080], -[1,2343,22593], -[0,22594,22597,22591,2487], -[0,1082,33051,2007,3090,33052,4081], -[2,34675,22596], -"-links-validator", -[0,1175,1264,1389,1192,3188,2899,4039,4042,4045,4067], -[1,2343,22599], -[0,22600,22603,22604,2523], -[0,5251,1405,10912,814,4081], -[2,4402,16237], -[2,2767,22601], -[0,53,87,94,1856,1177,2899,4042,4045,4055,4058,10916,91], -[0,4042,4080,6778,3378,5260], -[1,2343,22606], -[0,22607,22608,22604,34352], -[0,3090,4081], -[0,1177,1938,2675,2990,10902,2899,1894,4042,4048,4172,4227,91], -[1,2343,22610], -[0,22611,22612,22613,2399], -[0,10895,16799], -[0,10817,4874,1009,1011,1177,1895,1955,1192,1894,4039,4042,4468,91], -[0,4042,4080,12938,4227,33078], -[1,2343,22615], -[0,22616,22617,22618,2487], -[0,51,2805,4143,4072], -[0,53,1192,1894,4042], -[0,4042,4080,4072,3178], -[1,2343,22620], -[0,22621,22622,22623,2523], -[0,814,4081], -[0,1397,1177,2899,4039,4042,4048,4055,4484,91], -[0,4080,91,6778], -[1,2343,22625], -[0,22626,22627,22628,2537], -[0,10895,2102,2151,4135,4484], -[0,11893,811,816,33097,4864,33099,5087,4870,4874,8860,5254,1009,1011,1512,1177,33100,1192,1209,3429,4039,4042,33101,4076,4468,91], -[0,4076,4075,4080,91,6778,4042,3378], -[1,2343,22630], -[0,22631,22632,22633,2487], -[0,51,2805,4143,4535], -[0,53,87,1193,1192,1894,4042], -[0,4042,4080,2280,3178], -[1,2343,22635], -[0,22636,22637,22641,2537], -[0,3445,3530,4227,4747], -[0,811,816,10615,10817,5364,33115,33116,33118,33120,33121,33123,4874,20374,4892,1413,1654,14674,17086,17091,1655,1660,1701,3400,30889,3561,16578,3698,1894,28865,4042,10854,2278,4484,91,1983,1984], -"array-unique", -"gulplog", -"has-gulplog", -[0,4080,4078,11996,33126,33127,33129], -"capture-", -[2,22642,3101], -[1,2343,22645], -[0,22646,22647,22648,2523], -[0,2007], -[0,1006,5087,8778,4874,2675,1192,2990,3170,1894,4042,4055,4067,4075,4172,4468,4487,91,19545], -[0,4042,594], -[2,4599,3101], -[1,2343,22652], -[2,19984,1276], -[0,0,22653,2514,2523], -[0,1389], -[1,2343,22655], -[0,22656,22657,22658,2399], -[0,33145,8712,1410,1423,2215,3561,4232,4317,33146,1835,4164], -[0,33152,51,53,68,5216,61,76,14160,78,33153,81,5715,4851,5241,83,87,90,92,97,101,104,33156,33158,33159,33162,8317,8755,554,617,33165,33167,33170,33172,33173,13471,8648,842,11534,33174,33176,33178,19861,10879,33179,24807,31666,5364,33181,7806,33183,11796,11477,21122,5245,33189,33191,4865,8780,8264,4870,33193,13057,33195,20374,33197,4880,4883,15606,5254,33198,16149,13214,23452,11800,9241,20463,13753,1082,33199,31705,1138,1145,1154,33200,20476,1251,15009,1393,1398,1413,33202,33204,1525,33206,1536,12084,15015,1560,1562,977,1615,1618,11890,16912,16566,1676,11478,15018,33208,2018,2105,2145,2070,2553,2659,2661,15022,2674,16837,33209,2689,26453,2755,2805,2856,2863,20465,33210,3084,3177,3244,3266,33211,23175,3322,3467,15031,6042,3479,3502,3509,3530,12344,3605,16840,3638,16841,16842,3672,3676,3678,3688,3729,3757,15033,3784,3878,3957,4111,4135,710,27062,20508,4165,4227,4230,28512,15039,15040,9221,33212,15042,4294,7080,4390,33213,4072,4409,4425,15046,15047,11804,33214,614,15048,33215,24739,2924,4729,4763], -[0,89,5130,3287,5122,36,202,6400,5995,200,4592], -[1,2343,22660], -[0,0,22661,22662,34352], -[0,14192,1235,14196,14198,19130,14199,14214,14215,14217,1244,1264,19127,18801,18693,1378,1381,19119,18686,19123,19122,1825,18825,18829,33223,19121,2899,3736], -[0,19132,6567], -[1,2343,22664], -[0,22665,22666,22668,2523], -[0,25623,3527,3561,4300], -[0,1414,2899,4255], -"kew", -[0,33231,1623,33232,4086,5130,590,1504,26535,6270,353], -[1,2343,22670], -[0,22671,22672,22673,4139], -[0,1437,2061,3544], -[0,2323,2899,4170], -[0,17461,7170,6769,2323,3468], -"treams", -[2,6825,22674], -"ng-annotate", -[1,2343,22678], -[0,0,22679,22680,2523], -[0,1090,4389], -[0,22114,1149,3046,7241,14629,18462,4552,33244], -[1,2343,22682], -[0,0,0,22683,2537], -[0,33249,33250,7109,20018,7099,7022], -"develop", -[1,2343,22686], -[0,2513,22688,22689,34352], -"restart", -[0,33256,7,842,8712,4856,4870,6503,4874,7749,6513,6512,28198,1009,1011,1257,1429,33258,1473,1512,1610,1652,33261,1874,1177,24287,2139,2151,2070,16015,2675,13305,2990,1209,3183,2899,3363,3400,8967,12344,1894,1862,4042,32414,33263,4067,4167,4172,4193,4196,4232,4376,4474,4487,4490,33265,33267,33273,91,4585,5573,2924], -[0,7099,7022,6568,7111,7199,7040,7027,6858,6789,6746], -[1,2343,22691], -[0,0,9264,22692,34352], -[0,1398,33283,33284,6953,4100,1965,33287], -[1,2343,22697], -[3,13337,13], -[2,6574,22694], -"mac notification", -[0,22698,22700,22701,2537], -[0,2708,4135,4747], -"notify-osd", -[0,13614,1158,1159,1796,1177,33293,3421,4389], -[0,20001,25816,3378,33295,10381,6953,33297], -[1,2343,22703], -[0,22707,22708,22709,2537], -[3,13107,12], -[2,22704,2187], -[2,14983,22705], -[0,33304,21995,1149,33307,1437,1525,33312,1536,1544,977,1575,1581,29500,1797,2026,2040,33313,2070,33315,33316,32959,33319,33322,33324,33325,33327,3183,33328,3494,3509,3547,3741,33329,33332,33335,4135,4148,4151,33336,33339,4538,4590,33340], -[0,1317,1553,1177,2025,2151,33342,2899,3416,3560,33344,33346,33349,33352,33354,33357,4170,4220,4342,4449], -[0,33359,33362,2026,33363,33365,8173,8172,3469,4218], -[1,2343,22711], -[0,22712,22713,22714,2523], -[0,33379], -[0,4389,1090,33381,1389,1537], -[0,2090,1213,33383,2574,2649,1867], -"acorn-typescript", -"esrap", -[1,2343,22718], -[0,22719,22721,22722,4139], -[0,1699,1874,2654,2747,33390,3561], -"zimmerframe", -[0,1177,2899,4193,33395], -[0,1936,57,18113,2574], -[1,2343,22724], -[0,22725,0,22730,2523], -[0,1457,2700,4228], -"ENV", -"ifdef", -"ifndef", -"echo", -[0,590,4329,2278,7121,1623], -[1,2343,22732], -[0,22733,22734,22736,2523], -[0,23175], -[0,48,53,87,192,5467,442,27928,19344,1369,1610,1622,1628,1700,1701,1835,1177,1895,20281,1938,1939,1942,1953,1955,1982,2092,33408,2203,2675,1192,2990,33415,3144,3342,33420,3400,1894,2278,21688,4135,4257,4307,91,4523,2924,4677,4681], -[2,1876,2282], -[0,2278,22022,2924,1194], -[1,2343,22738], -[0,0,22739,2514,4139], -[0,1894,4384], -[1,2343,22741], -[0,22742,22744,22745,34352], -[0,33435], -"views", -[0,33437,1414,33438,1177,1776], -[0,2844,1745], -"precompile", -[1,2343,22748], -[0,22749,22750,13533,2537], -[0,1091,1092,12384,8818], -[0,1700,1192,2675,1177,1701,2203,2924,1894,48,442,1193,91,53,4874,2990,3400,192,1953,27928,4257,87,1939,1942,1938,20281,1982,1895,1955,19344,5467], -[1,2343,22752], -[0,22754,22755,22756,2523], -"src", -[0,89,3824,3286], -[0,91,4874,4880,4883,1165,3561,4383,1177,4828], -[0,33454,33455,2145,12589,1616,33456,12589,5472,20500,33459,1237,33462,33464,12590,33465,27666,11996], -[1,2343,22758], -[0,22759,0,22760,2523], -[0,1821,3299,15160], -[0,29395,33471,33472,4126], -[1,2343,22763], -[2,4068,3101], -[0,0,0,22764,2537], -[0,33477,3778,1616], -[1,2343,22766], -[0,22767,22768,22773,4139], -[0,33482,2866,4449,4729], -[0,442,13838,1177,1895,1951,1953,17303,1955,2026,2203,2564,1776,2899,3200,3246,1894,4150,4193,4351], -"modif", -"y-filename", -[2,22769,22770], -"rev-hash", -[0,13428,28522,5472,11132,13841], -"rev-path", -"sort-", -"sort-keys", -[1,2343,22779], -"vinyl-file", -[0,22780,22786,22787,2523], -[0,16607,33490,6065,16608,16612,33491,1595,1676,33493,2020,2089,33494,2188,33497,22845,2613,33499,3021,3127,14774,3170,33500,25873,27168,4025,4135,6554,4747], -"rev", -"revving", -"revision", -"expire", -"assets", -[0,4874,6547,1166,1414,1470,1652,1736,33503,2151,2212,2822,3019,19736,33505,3297,3401,33507,1894,23535,4193,23730,4400,4421], -[0,18526,13428,13729,1237,3383,20001,3979,4135,15525], -[1,2343,22790], -"deserialization", -[0,22792,22793,2514,2537], -"deserialize", -[0,97,33513,33515,6372,33519,1497,33520,1209,3021,3744,3847,32225,4163], -[0,33522,48,53,61,73,76,81,83,87,90,94,33525,9310,33528,33530,10875,4880,1009,1011,8158,33532,1178,1195,33537,1208,1210,33541,1251,31600,33543,1429,33545,1582,1610,1651,1676,1719,1742,19526,1843,1177,1879,1895,4916,1938,1947,1951,1959,1961,2060,2193,2323,2455,2541,2675,14708,2297,2881,32762,2886,2900,2904,2925,2975,2990,2899,1894,3725,3758,3786,89,33546,33550,3822,3824,3836,3843,3884,3885,33552,33553,33556,3904,33558,4039,33560,33562,33564,4193,4196,4201,4261,33565,4409,33566,4431,91,4597,2924,4676,4677,4679], -[1,2343,22796], -"each-async", -[0,22797,22799,22800,2537], -[0,1177,1900,1903,33572,1938,1953,1958,1959,33573], -"md5-hex", -[0,17529,1698,3188,4039,4092,4389], -[0,19309,33576,4354,16790,1501,19310,19311,19314,19271,18443,1177,2446,2292,2272,671,19315,19269,33578,2869,4255,19317,590,19318,19320,19273], -"ruby", -[1,2343,22803], -[0,0,22805,2514,2523], -"@img/colour", -[0,9516,9515,1317,4384], -[1,2343,22807], -[0,22808,10377,22809,2537], -[0,1676,1833,1869,984,2145,2657,3173,3242,3440,3781,4266], -[0,2947,2090,36], -[1,2343,22811], -[0,22812,22814,22815,2523], -[0,22966,8364,33593,33596,33598,33599,22967,19593,3034,3072,3183,22451,22968,33602,33603,3763,33605,28440,33606], -"sftp", -[0,8357,8359,33608,4874,1149,4440,1596,17402,2036,33612,21082,1894,33615,33618,28664,33620,25649,91], -[0,3166,11100,27662,33624,14584,33625,14586,14587,33626,5130,33627,33628,17757,6081,33629], -[1,2343,22817], -[0,0,22818,22824,2443], -[0,33634,1149,1317,1177,3210,4384], -"@types/fa", -"ncy-log", -[2,22819,22820], -[3,12459,15], -[2,22822,5229], -[0,4137,19748,33636,28277], -[1,2343,22826], -[0,22827,22828,22830,2523], -[0,33646,3348,1676,33641,1209,3220,4135,1155,2712,5245,33643,33645,3222,14334,33642,25624], -[0,3519,3421,1429,1082,1702,33653,2675,2899,3478,4193,1177,33663,3260,4039,1448,668,33669,33673,4246,25635,25633,33674,1587,1610,2071,33672,3480,33675,32842,2152,4196,91,4856,4874,2024,2990,6503,6513,29283,692,4870,33652,33682,33649,192,1431,33668,3125,4131,17370,4232,1942,1951,33662,1011,33660,22559,1009,33655,33681], -"brotli-size", -[0,3259,33669,7827,14873,25638,3519,3243,33684,33663,14872,25633,26472,33685,3469,6710,33690,18035,1747], -[1,2343,22833], -"measure", -[0,0,22834,22835,2537], -[0,1317], -[0,4141,7050,5284,676,1781], -[1,2343,22846], -"@gulp-sourcemaps/identity-map", -[3,22837,17], -[2,22844,36113], -"map-sources", -[2,22838,22840], -"-fabulous", -[2,1676,22842], -"@vitest/e", -"hook-std", -[0,22849,2667,22851,2487], -"@codspeed/vitest-plugin", -"mississippi", -[0,1676,33735,33702,33705,33725,33727,33713,33723,33714,33710,33734,33729,33722,33718], -"source maps", -[0,33737,33738,33739,33740,33741,28794,2811,33742,33744,33745,25003,33746,33748,4144,4145,33749,33750,3101,6621,33751], -[1,2343,22853], -[0,22854,22855,22858,2537], -[0,1091,1138,1371,1437,1494,1536,33757,33758,13834,16064,33761], -[0,2212,4494,4493,2675,1177,1984,1894,91,2990,107,7806,33765,7677,33768], -"device", -"strip-debug", -[0,4592,4146,3166,2665], -[1,2343,22861], -"client-hints", -[0,22862,22864,22865,2487], -[0,984,2145,3242,3494,4100], -"accord", -[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342,33775], -[0,2026,33777,2663], -[1,2343,22867], -[0,22868,22869,2514,2443], -[0,1080,6870,1676,1869,2657,3173,3494], -[0,1087,1177,1948,2899,3421,4342], -[1,2343,22876], -"looks-same", -"svg2png", -"@cpplint/cli", -"rwd", -"retina", -[0,22877,9025,2514,2523], -[0,1833,1869,3494,710], -[1,2343,22879], -[0,22880,22881,22882,2537], -[0,33798,3171,3181], -[0,192,5467,33801,33803,1168,1429,1431,1527,1177,1895,2151,2675,2990,3073,13824,2899,3310,3421,1894,3752,33804,4193,4196,4390], -[0,33804,33807,13573,7200,33808,6997,33811,6949,5351,4967,33813], -[2,33888,22889], -[1,2343,22885], -[0,22886,22887,22888,2523], -[0,33819,33821,33823,33824,7709,33826,33827,33828,27792,33831,13559,33836,33838,33840,29749,1367,10785,33841,13566,33843,3445,17009,4729], -[0,33846,9167,33848,5087,4874,7819,9241,1009,1011,33838,13566,668,33850,1177,1895,19527,1915,1938,1955,2675,1192,33851,33852,33854,33857,2845,3381,1894,13569,4257,4468,4474,1531,91,3348], -[0,12,7200,5472,1192,33804,4158,1984,13573,6930,6808,7308,33822], -"arm64", -[1,2343,22891], -[0,22892,0,2514,2537], -[0,26956,6641], -[1,2343,22895], -"rendering", -[0,0,22896,22897,2443], -[0,1178,1264,1280,1429,1177,2126,33869,2675,2990,2899,1894], -[0,4163,4161,4162,26287,3797,33871], -[1,2343,22899], -[0,22901,22903,22904,2537], -[3,18435,14], -[0,4135,22804,20584], -"incremental", -[0,20762,4481,33891,4391,640,33894,2057,22873,11976,3299,33877,2829,33882,33890,33884,33887,22883], -[0,21881,18048,12349,12350,23995,20639,8221,20701,33896,158,24800,33897,12712,26490,33898,33899], -[1,2343,22906], -[0,0,22907,22910,2523], -[0,13614,1159,9254,1177,2011,2708,2762,3410,3421,4103,4389], -[3,15893,12], -[2,22908,1512], -[0,1523,1644,7336,4166], -[1,2343,22912], -[0,22913,22914,22915,2537], -[0,2020,2071], -[0,1166,1437,1506,1177,1881,1938,2822,3421,33910,33912,4172,33916], -[0,4167,16159,28984,4166,33918,7048,2763,31360], -"@types/plu", -[1,2343,22921], -"gin-error", -[2,22916,22918], -"gulp-diff", -[0,22922,22925,22926,4139], -[0,3266], -" compilation", -[2,22902,22923], -[0,1429,2228,2899,1839,2240,26399,4436,2305,34238,22000,2236,2300,3006,2253,2273,2281,5535], -[0,5843,4439,3265,3348,33927,33928,33929,4169,33930], -[1,2343,22928], -[0,22929,22931,22934,2537], -[0,33936,33937,33938,33941,33942], -"array-each", -[0,1362,1177,33945,2899,1894,4042,4067,4487,91], -"error-cause", -[2,3094,22932], -[0,1973,5982,1145,4170], -[3,16647,18], -"se-extend-native", -[2,22935,22936], -"list-map", -[2,4601,22938], -[1,2343,22942], -"tape-catch", -[0,5621,22943,22944,2537], -[0,2228,2247,2253,2273,2281,2285,2290,33953,2291,2316,2832,3006,3518,33954,4135,33955,4232], -[0,1783,15253], -[1,2343,22947], -"uncss", -[0,22948,22949,22950,4139], -[0,3183,4167], -[0,1173,1264,1280,1177,1881,19527,1938,2822,2899,3421,4039,33910,33963,33912,4170], -[0,4167,4166,28984,16159,16160,2978,200,8636], -[1,2343,22952], -[0,0,22953,22954,34352], -[0,21122,4874,24162,13680,1414,1894,4384,4474,4508,91], -[0,6553,2021], -[1,2343,22956], -[0,22957,22958,22960,2523], -[0,1097], -[0,2553,3714,4042,4048,4535], -"useref", -[0,7521,5224,26514,1424], -"async-once", -"gulp-dest", -[2,3204,22962], -[1,2343,22965], -[0,22969,22976,22977,4139], -"@hapi/joi", -"jsonic", -"optioner", -[0,33986,33989,1676], -"array-differ", -"array-uniq", -"beeper", -"_reescape", -[2,3024,22973], -[3,22974,11], -[0,33992,33997,5245,5087,4874,668,29154,1192,4474,91], -[0,3358,34000,30983], -"valuate", -[2,22975,22978], -"lodash._re", -[1,2343,22984], -"interpolate", -[2,22980,22982], -[0,0,22986,22987,2523], -[2,3067,6937], -[0,4481,1192,2675,3534,1177,4039,4042,1894,1610,1193,53,5087,1540,34009,3720,97,107,87,1926,34015,68,5583,4073,6373,34019,811,816,5522,34013,1201,81], -[0,11615,16114,27968,13527,5130,89,1098,188,38,14584,4967], -[1,2343,22994], -"@test-runner/core", -"yazl", -[2,22996,32078,6624], -"qpass", -"yazul", -[0,22995,22998,22999,2537], -[0,11124,826,34034,1687,4351], -[3,22989,13], -[2,22996,23000], -[0,53,11126,11130,11133,11134,34040,28537,34041,1208,1676,1705,668,27502,26739,2185,2990,2899,3421,1894,3758,4039,4135,4167], -[0,4193,1973,5472,2275,13106,4158,21147,6901,34044,3212,4731,1145], -"live-view", -[2,22996,23003], -[1,2343,23005], -"oneline-view", -[2,22996,16316], -[0,0,23006,23007,34352], -[0,442,1414,1429,1177,2899,1894,4193], -[0,1429,15385,1388,34050,34053,4193,5472,17051,17052,17050], -[1,2343,23010], -[2,13857,2663], -[0,23011,23012,23013,2523], -[0,9153,6327,1149,1409,34066,34065,3188,4135,16358,2026,2822,705,1866,1525,3181,2861,2036,1364,1536,2657,2600,34060,34062,3923,34064], -[0,2899,1362,1389,34068], -[0,7223,3383,18157,29179,5260,2658,36], -[1,2343,23015], -[0,23016,0,2514,2487], -[0,34076,11480,34078], -[2,4598,3426], -[1,2343,23019], -[0,23020,0,23021,2443], -[0,34085,2984,34086,3527,27921], -[0,4201,200,1999,6681,34088,34090], -[1,2343,23023], -[0,16583,11580,23027,2523], -"smith", -[2,3521,23024], -"pngparse", -[0,34096,34098,34099,5995,4967,17758], -[1,2343,23029], -[0,23030,23031,23032,2399], -[0,22992,34105], -[0,2924,4469,91,4677,23319,4676], -[0,5995,34107,5592,33804,18035], -[1,2343,23035], -"compressed", -[0,0,8134,23036,2523], -[0,3403,34116,4207,28978,6574,6270], -[1,2343,23038], -[0,23039,23042,23044,2537], -[0,1110,34121], -"catering", -"deglob", -[0,1166,1437,34125,4294,1906], -"find-file-up", -[0,6913,1871,1111,592,1473,7208,1512,7009,7201,200,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], -"find-githost", -"link-re", -[1,2343,23067], -"ferences", -[2,23046,23048], -[2,1163,23049], -[2,3986,23050], -"remark-c", -[2,15,14994], -[2,23052,23053], -[3,13240,12], -"quote-", -[2,23056,17537], -[2,1359,23057], -[2,23055,23058], -"box-", -"-style", -[2,6843,23061], -[2,23060,23062], -[2,4354,23063], -[2,23055,23064], -[3,23065,22], -[0,23068,13640,23072,2537], -[0,22437,1455,12918,34132,34134,25377,34136,3275,3518,34137,3718,3730,34139,1241,4747], -"ontent-indent", -[2,23066,23069], -[3,23065,13], -[0,34141,4796,22832,3378,1161], -"block-style", -[2,16080,23073], -[2,23071,23074], -[3,7900,10], -[2,23076,15319], -[2,23055,23077], -"emphasis-marker", -[2,23055,23079], -"fenced-code-marker", -[2,23055,23081], -[3,23082,13], -"inal-newline", -[2,23083,23084], -"hard-", -[1,2343,23088], -[0,0,23089,23106,2523], -[0,12310,6061,6063,5476,1414,2899,4131,4255], -"break-spaces", -[2,23086,23090], -[2,23055,23091], -"-bullet-indent", -[2,5401,23093], -[2,15794,23094], -[2,23055,23095], -[3,23096,22], -[2,23097,8958], -[3,13240,15], -[2,17793,17825], -[2,9344,23100], -[2,1160,23101], -[2,23099,23102], -[3,23058,11], -"without-", -[0,4213,3974,1871,4577,22188,3656,1002], -"marker", -[2,23105,23107], -[2,23104,23108], -[2,23099,23109], -"duplicate-", -[2,23111,7900], -[2,23099,23112], -"-cont", -"ent-indent", -[2,23114,23115], -[2,156,23116], -[2,23099,23117], -"padding", -[2,16569,23119], -[2,23099,23120], -"literal-urls", -[2,23099,23122], -[3,13240,17], -"used-definitions", -[2,23124,23125], -"rule-style", -[2,23055,23127], -[1,2343,23130], -[0,0,23131,23146,2537], -[0,1596,34154,2899,3421], -"strong-marker", -[2,23055,23132], -"cell-padding", -[2,16065,23134], -[2,23055,23135], -[3,23136,18], -"pipes", -[2,23137,23138], -"unordered-list-marker-style", -[2,23055,23140], -[2,4586,3966], -[2,3986,23142], -"unified-", -[2,23144,16284], -[0,4213,3974,1002,34156], -[1,2343,23150], -"-shiny", -[2,18004,23148], -[0,7936,7938,7939,2443], -"pull-", -[1,2343,23153], -[0,23156,0,23157,2537], -"pull-or-clone", -[2,10617,23154], -[0,1437,2713,3183,3923,34167,4294,4425], -[0,3721,34170,34172,4255,34174,25264,34177,34179,34181,34182], -"fixer", -[1,2343,23160], -[0,23161,23162,23170,2523], -[0,1170,34189,1676,2131,2141,2188,1209,4113,4296,15502,34190], -[0,442,5245,7810,4870,4874,34194,15507,1364,1512,1687,1742,1792,1177,2026,2099,2070,2899,3421,1894,3923,4135,4151,4170,4193,4232,25609,4508,91,4523], -[2,13729,18200], -"git-tags", -[2,2264,2907], -[2,8961,2499], -[2,2312,23166], -"jquery-", -[2,23168,2555], -[0,4217], -[1,2343,23172], -[0,23173,0,23174,2537], -[0,1080,34200,1594,1676,12777,34201,9247], -[0,20863,5130,4699,21405,2018,21302,11444], -"neo-async", -[1,2343,23179], -"chai-diff", -[2,2264,4019], -[0,23180,0,23181,2537], -[0,34208,1676,12779,9247], -[0,20863,5130,4699,21405,2018,5576], -[1,2343,23183], -[0,23186,23191,23194,2537], -"ammo", -"heavy", -[0,1676,34226,26137,2713,4567], -"bounce", -"catbox", -"somever", -"subtext", -[0,1389,1839,1177,2025,2323,2409,2494,2496,2510,2530,2297,2871,2876,2881,2900,2899,3752,3756,4151,34228,4599,4603], -"statehood", -[2,23188,8329], -[0,14609,4699], -[1,2343,23197], -"vision", -[0,0,23198,2514,4139], -[0,1414,1742,1177,1894,1895], -[1,2343,23200], -[0,0,23202,2514,2487], -"webidl-conversions", -[0,34238,1742,2924], -"@vitest/ui", -[1,2343,23206], -"@webref/css", -[0,23207,23208,13533,2487], -[0,2685,4228], -[0,48,53,87,192,5467,16405,1193,1610,1622,1700,1701,1177,1895,1938,2675,1192,2990,3144,3400,1894,4257,2924], -[1,2343,23210], -[0,23211,23212,2514,2537], -[0,16136,4227], -[0,1389,1509,2665,2899,2924], -[1,2343,23214], -[0,0,23215,23216,2523], -[0,4874,1414,1894,3985,3998,4505,91,1906], -[0,965,1936,17540,34254,11590,1644,1646], -[1,2343,23218], -[0,23219,23220,23221,4139], -[0,34270,34266,5526,5528,5529,1448,1509,1525,2071,2215,2220,34264,2228,2247,2253,2256,2258,2263,2281,2283,2308,2036,2600,2654,2820,2822,34269,2856,1209,3127,34261,3561,2278,4373,4449], -[0,48,53,87,94,10737,34272,1429,1431,6522,1177,1951,1954,1970,2899,3363,1894,4037,4039,4193,4196], -[0,2220,1739,1745,34276,34279,5592,9381,1179], -[1,2343,23223], -[0,23226,23227,2514,4139], -"own-property-symbols", -[2,2183,23224], -[0,4430], -[0,2012,19987,19988,19989,34294], -[1,2343,23229], -[0,0,23230,2514,2523], -[0,34300,34301,30025,3421,3697,4255,4389], -[1,2343,23232], -[0,0,9888,2514,2523], -[1,2343,23234], -[0,0,23235,2514,2537], -[0,2323,2899,1177,1317,2463,2384,2409,2494,2530,34312,2510], -"@ljharb/", -[2,23236,2190], -[3,19784,15], -[2,23238,14037], -[3,6541,12], -[2,23240,3205], -[1,2343,23243], -[0,23244,23259,23263,2523], -[0,1362,1473,1512,1636,2151,2036,34317,8691,1209,3367,17997,34318,22519,4431,4597,4600,34319,34321], -[2,8727,591], -[2,10306,5472], -"@ungap/structured-clone", -"from-parse5", -[2,2573,23248], -[2,2580,3493], -"html-v", -"oid-elements", -[2,23251,23252], -[2,9406,8193], -[3,75,9], -"namespaces", -[2,5925,23256], -"zwitch", -[0,1429,1596,2759,2899,3202,34324,34326], -[3,9315,9], -"gap__structured-clone", -[2,23260,23261], -[0,22055,22074,34328,1623,4329,695,2278,4245,34331,17461], -"remark-api", -[1,2343,23268], -"unist", -[3,2572,9], -[0,23269,23270,23271,2537], -[0,1326,3299,32944,4390], -[0,1177,2899,32942], -[0,14872,7827,4246,18035], -[1,2343,23280], -"aria-", -[2,23273,2618], -[3,23249,15], -[2,23275,1936], -"html-tag", -"-names", -[2,23277,23278], -[0,23281,23282,23283,2523], -[0,34342,34345], -[0,1177,15234], -[0,21000,4247,22813,18112,4166,2978,21004,5576], -[1,2343,23285], -[0,23290,23294,23295,2399], -"bcp-47-match", -"-separated-tokens", -[2,14186,23287], -"devlop", -[0,21505], -"direction", -[2,2573,3661], -"not", -[0,9516,9515,1317], -[0,12616,5122,1965,34354,26965,27081,34355,34356,34357,34359,34360,1936], -"selectall", -[1,2343,23298], -[0,23299,21592,23300,34352], -[0,4745], -[0,4249,1781,4745,17307,25611,1747,7141,7789,166,1721,18035,1745,5995,1550,3230,2109,3259,4246,6523,20832,25638,1781,3053,34366], -"attach-comments", -[2,12413,23301], -"is-i", -"dent", -"ifier-name", -[2,23304,23305], -[2,23303,23306], -[2,12413,23307], -[3,6451,11], -[2,12127,23309], -[3,23310,15], -[2,23311,1219], -"js-esm", -[2,12127,23313], -[1,2343,23317], -"esast-util-from-js", -[0,0,23318,2514,2443], -[0,87,1193,1192,34373], -"basic-node-server", -[1,2343,23321], -[0,23323,23325,23326,2487], -"ccount", -[0,1177,1903,33572,1938,1953,1958,1959,33573,34380], -"tostring", -[0,1615,2554,3183,34383,4092,12823,4389], -[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,2446,2292,2272,671,19315,19269,2869,4255,19317,590,19318,19320,19273], -[1,2343,23328], -[0,23329,23331,23333,2523], -[0,1437,1566,34392,1570,25901,1707,20949,34393,2089,2105,31174,4135,28154,4747], -"sval", -[0,1429,1177,1903,1938,1954,1958,2899,3203,3215,3421,4167,34395], -"solid", -[0,1566,4945,13729,13728,6976,15525,1098,4255], -[1,2343,23335], -[0,23337,23338,23341,2537], -"wcswidth", -[0,1138,1362,17045,1676,2020,17034,10756,28519], -[0,4874,34405,1429,1610,1705,34407,34408,34409,2212,2848,8163,3183,2899,34410,26230,4131,34413,4193,4196,20382,4255], -[2,23340,93], -"@swc-node/", -[0,15656,12804,36,6587,1973,6435,6703], -[3,9407,13], -"nd-after", -[2,23342,23343], -"exsolve", -[1,2343,23347], -[0,23348,23349,23350,2523], -[0,34423,27073,2175,34421], -[0,1241,2276,4545], -[0,4264,34426,34427,34429,20863], -[2,13721,3585], -[2,2573,23351], -[1,2343,23357], -"build-", -"build-jsx", -[2,12413,23355], -[0,0,23358,23360,2523], -[0,1645,1177,1903,1938,1948,1954,1958,1970,2899,3421,3784,22449], -"svg-tag-names", -[0,27,6622,1501], -"vdom", -"hyperscript", -"@glen/jest-raw-loader", -[1,2343,23365], -[0,23366,23367,23368,2537], -[0,4729,3445,3930,4135,668,37080,36874,7384,26870,5545,968,974], -[0,1797,4763,1429,1687,2070,2807,4200,2020,2975,3144,23802,89,4207,20573,2205,3266,3411,28853,668,23345,2161,2822,6042,814,4448,24324,3555,1894,29318,9241,1420,1525,4788,3530,28863,3824,11143,4507,33215,4726,9741,16485,30414,3527,4227,4294,91,53,17577,4874,1615,1710,29514,104,14552,30157,11196,58,29515,5254,37084,1707,37491,15245,35349,8646,7931,7948,7637,7812,26380,15906,36119,8506,30253,32284,4480,101,370,15600,30254,30260,30262,24759,5216,30464,20374,30283,3885,33523,1582,37017,21122,30913,9329,30284,33228,33534,33538,30300,30313,12837,4300,30321,30375,31673,30398,966,25114,37449,28465,30406,7943,972,33554,33526,8714,19592,9011,30387,3749,30453,30454,30467,12315,30468,30470,30471], -[0,4270,4627,4963,23245,23246,89,3286,23803,3857,5123,188,1098,3709,5167,5926], -[1,2343,23370], -[0,23371,23372,23373,4139], -[0,2664], -[0,23363,10825,10827,10828,28147,34473,34475,11011,10837,10840,29877,968,972,5087,11292,4880,1177,34480,1192,11347,2780,1894,3744,3758,89,3824,2278,4111,4270,4468,91,4705,4745], -[0,6718,4270,34484,4963,1745,4967,34485,21043,34491,34493,34494,3416], -[1,2343,23377], -"regexgen", -"sort-object", -[0,23378,0,5269,2523], -[0,7,53,87,6316,6318,1437,1448,1457,1512,1525,1595,6323,2061,34500,2151,2070,2036,2626,2681,17449,2856,1209,3079,6326,6327,3127,3183,6330,6331,29899,6332,4135,100,4473,3348], -[1,2343,23380], -[0,8856,7938,7939,2443], -[1,2343,23382], -[0,14754,23383,23384,2523], -[0,34508,34510,2899,4170], -[0,34513,3101], -[1,2343,23386], -[0,0,23393,23394,2537], -[3,5429,9], -[2,23387,19315], -[2,1561,23388], -"origin-embedder-policy", -[2,1611,23390], -[3,23391,13], -[0,816,6503,4874,1642,1794,2899,2966,1894,4042,4064,4066,4170,4474,4494,91], -[0,3101,353,1641,3048,5995,4967], -"-policy", -[2,3456,23395], -[2,23392,23396], -[3,5974,9], -[2,23398,19315], -[2,23392,23399], -"origin-", -"-cluster", -[2,4575,23402], -[2,23401,23403], -"refer", -"rer-policy", -[2,23405,23406], -"-security", -[2,4714,23408], -[2,14104,23409], -"x-content-type-options", -"x-dns-prefetch-control", -"x-download-options", -"x-frame-options", -"x-permitted-cross-domain-policies", -"x-powered-by", -"x-xss-protection", -[1,2343,23419], -[0,23420,11580,23421,2523], -[0,17835,692,17754,2129,2760,34524,13291], -[0,34527,34528,5995], -[3,17494,14], -[2,23422,965], -[1,2343,23425], -[0,0,0,23426,34352], -[0,4283,1671,1871,6901,1666], -[1,2343,23428], -[0,0,23429,23430,2537], -[0,2323,2346,2463,2494,34537,2530,28539,4535], -[0,1871,16116,34540,34541,34542,591,1641,1936,18089,1644,1936,2640,4301,6678,10368,15103,1867,23615], -[1,2343,23437], -"abbrev", -"archy", -"hexo-cli", -"hexo-", -[2,23435,2149], -[0,23442,23447,23457,2537], -"hexo-fs", -"hexo-i18n", -"hexo-log", -"hexo-util", -[0,5139,34547,2626,3021,34551,34553,34556], -"-js-types", -[2,2822,23443], -"titlecase", -"warehouse", -[0,34559,34560,17913], -"0x", -"bbrev", -[2,9165,23449], -"xt-table", -[2,13419,23451], -[2,1884,2596], -[3,1778,9], -[2,23454,3127], -[2,23435,23455], -[0,1501,7682,7115,1936,34562,34563,7293,22392,4285,1871,4301,2640,17950,2585,34564], -[1,2343,23459], -[0,23460,8134,23461,2537], -[0,34569,4294], -[0,1871,6843,3656,4289,7062,6922,6981,6701,6581,16041,23336,6700,1111,1867,5281,200,6876,7009,7201,6575,6611,6795,6960,7135,7230], -[2,11177,17514], -[1,2343,23467], -"grunt-g", -"h-pages", -[2,23464,23465], -[0,23468,23472,23473,2523], -[0,34576,34578], -"scrawl", -"ducers-js", -[2,4713,23470], -[0,4874,1414,26854,1894,3985,3998,4505,91,1906], -[0,1646,10368,1867,1936,6843,11043,18944,18089], -[1,2343,23475], -[0,23477,20489,23481,2537], -[2,5058,23278], -[0,1109], -"freeze-es6", -[2,1683,23478], -[2,5313,14056], -[0,4301,6678,7293,1111,592,1473,7208,1512,7009,7201,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], -"tiny-worker", -"wcag-contrast", -[1,2343,23485], -[0,0,8134,23486,2537], -[0,4301,4295,1412,4327,3126,3656,4577,22188,7293,6865,6678,2585,1871], -[1,2343,23488], -[0,0,23489,23490,2537], -[0,1166,3130,4481,1906], -[0,1781,4301,4298,7293,6865,6678,16112,1644,1541,8309,6937,614,1263,6639,19632], -[1,2343,23492], -[0,0,23493,23494,2537], -[0,3421,1429,3297,2899,1177,4474,1894,3310,91,4856,4874,6503,23496,1431,1938,3200,1895,1955,9417,1011,10419,1009], -[0,4302,34601,34602,5592], -[1,2343,23497], -"undici-types", -[0,23498,23499,23500,2523], -[0,1149,1676,34607,34610,3324,34612,3368,3460,3917,34613,34615,34616,34619,34622,30142,34625,34626,34629,4707,2861,1401,34631,1653,2592,2713,695,1209,3081,26443,7305,34421,3220,3923,23975,4246,34634,26423,34636,34637,34639,29456,4729], -[0,1177,2292,4384], -[0,9649,34642,29319,34643,26473,34644,13538,4575,13539,6147,6374,24093,1541,4796,20997,20999,34647,2134,3358,27318,34650,6807,26474,10057,25202,3151,13499,27838,34651,3378,34652,34653,26931,6681,2306,3729,15267,28413,29179,5508,8791,11100,34654,34656,7046,34613,34657,34660,30142,34629,4303,34661,4345,17184,6901,34662], -[1,2343,23502], -[0,23503,23504,23505,2537], -[0,34667,34668,34669,34670,1437,1443,13827,1525,2745,2856,34671,1894,4443], -[0,34673,34676,107,192,5467,34677,34679,8661,34680,4856,4874,11438,7819,1011,5476,34681,5478,1082,34683,1429,1177,1951,1959,2007,2151,34684,2675,34686,2829,34689,695,2990,34690,26564,25131,2899,21290,3400,5561,2278,4135,4164,22595,4333,91,4555,3348,4745], -[0,34693,590,34692,1623,4964,11590,2278,4329,13339,34694,89,5133,25172], -[1,2343,23507], -[0,0,23508,13533,2537], -[0,1192,2278,2675,2832,3144,1622,1177,4135,1701,2924,1854,1894,1610,48,1193,1628,53,2092,2990,3400,4111,4677,192,4257,87,4681,1938,1895,2780,5467,16405], -"step", -[1,2343,23511], -[0,23512,23513,23514,2523], -[0,4311], -[0,192,5467,19438,19181,442,811,816,10615,5087,1009,1011,1177,1955,10964,2203,2675,1192,2990,1894,4042,4468,4474,91], -[0,4309,1623,590,5284,3048,23578], -[1,2343,23516], -[0,23517,23518,23519,2487], -[0,2718], -[0,192,5467,19438,19181,442,811,816,10615,10817,5087,4874,1009,1011,1177,1955,10964,2203,2675,1192,2990,3400,1894,23535,4042,4468,4474,4484,91], -[0,4311,134,590,57,1623,3048,23578], -"hap-nodejs", -[1,2343,23524], -"-newlines", -[2,1938,23522], -[0,23525,23526,23527,2443], -[0,7943,13037,34715,34718,1639,3561,4163,7917,4484], -[0,53,5652,8229,61,78,5240,87,90,92,10817,966,968,972,974,4863,5087,34720,4874,4880,4883,34722,5091,4889,5055,1193,1198,20479,14065,6375,1192,2780,26503,2802,2820,1894,3744,89,3824,34725,3857,3904,4042,4055,4058,4067,4069,4071,4073,34727,34730,91], -[0,89,1623,7165,4315,7297], -"@hono/eslint-config", -"@hono/", -"node-server", -[2,23529,23530], -[1,2343,23533], -[0,23534,23540,23541,2443], -[0,33204], -"publint", -"ly-js-compute", -[2,2062,23536], -[2,4609,23537], -"wrangler", -[0,48,53,78,4851,5743,5241,83,87,90,94,97,104,4880,1166,7913,34737,1573,1177,1895,2675,3008,1894,3720,89,3824,4131,4227,33212,7917,34741,91], -[0,7913,4592,34743,7165,1623], -"cloudflare", -"workers", -"fastly", -"compute", -[1,2343,23547], -[0,23548,20974,23549,2399], -[0,1393,3681], -[0,2887,1623,34749,4318,16918,3561,6425,4319], -[1,2343,23551], -[0,23552,23553,23554,2487], -[0,205,30928,208,213,30577,220,22371,30299,1595,1627,1634,1676,2071,29067,16783,14564,2205,34755,2641,2687,5210,19187,2747,2932,34757,3157,3170,3369,3527,3561,3676,3681,3688,4290,15887,34762,176,4728], -[0,107,34765,11893,34768,34770,34773,16934,5245,16787,34775,34776,34778,8778,16398,34780,19800,34785,22092,1317,1532,1699,1177,34787,1938,1939,2675,1192,34791,2802,2990,11357,3400,5561,3606,3613,30479,34793,3678,1894,3985,4337,91], -[0,7165,1623,695,671,9654,1783,2278,4329,4320,4337], -[1,2343,23556], -[0,23557,23565,23566,34352], -[0,4946], -"hopper-adventure", -[2,12087,23558], -"svelte2tsx", -"workshop", -"adventure", -"tutorial", -"tutor", -[0,34768,34770,1177,34787,2675,2990,3400,1894,3985,4320], -[0,4320,34801,4255], -[1,2343,23568], -[0,0,23569,23570,2523], -[0,3421,1192,2675,3534,1742,1177,1503,4508,1894,34810,1610,4320,48,1193,34809,11918,91,53,13693,2990,3165,94,192,4131,87,34806,1939,1978,1938,6063,34791,21120,1895,1955,4514,92,1011,6061,5467,1883,1009,5766,13052,61,78], -[0,7846,4320,1623,4329,695,671,34818,6884,3046,34819,1473,34820], -"big-lib", -[2,8131,23571], -[2,7635,23575], -"karma-co", -"codeshift", -"@jasminejs/reporters", -[1,2343,23579], -"pojo", -[0,23580,23581,23582,2537], -[0,3561,34826], -[0,1177,34829,1895,2203,2675,1192,30912,34791,2802,2990,3606,30479,34832,1894,34835,4320], -[0,7846,4320,1623,671,4327], -[1,2343,23585], -[3,2618,9], -[0,23586,23587,23588,2537], -[0,1634,2747,2932,3141,34842,34760,3681,3688], -[0,1532,1610,1177,34847,2675,1192,34791,2990,3377,3561,30479,3678,1894,4320], -[0,1623,21861,671,9654,4329,4320,7846], -[1,2343,23590], -[0,23592,14818,23593,2487], -"@domenic/eslint-config", -[0,63,1676,2070,4113,4227], -[0,1623,57,590,22561,2437,1351], -[1,2343,23595], -[0,23596,23599,23609,2487], -[0,2071,3369], -[3,9127,9], -"flowgen", -[0,48,53,87,192,5467,442,27928,19344,1317,34860,1610,1622,1628,1700,1701,1177,1895,20281,1938,1939,1942,1953,1955,1982,2203,2675,1192,2990,3144,3291,3400,1894,3786,4257,4307,4333,4523,2924], -" entities", -[2,1936,23600], -" encode", -[2,23601,23602], -[3,23603,14], -[2,23604,15103], -[2,18089,23602], -"entities ", -[2,23607,15103], -[0,2924,1194,4333], -[1,2343,23611], -[0,0,0,23612,2443], -[0,1623,3561,30775,5341,8958,57], -"ascjs", -[1,2343,23616], -"unescape", -[0,23617,23618,23619,2523], -[0,1533,34877,1676,33596,2139,2141,3164,3171,3763], -[0,48,53,83,87,97,192,5467,1290,16750,27731,1364,1389,1575,1610,1177,1909,1924,1954,2026,2040,2114,2182,2675,2990,3127,2899,3246,3421,3985,3995,4039,4170,34879,34881,1906,4770], -[0,4575,6662,6662,5592,1149,7003,1170,12618,5576,34883,2212,27,27,2671,21668,1862,1862,6567,705,705,21666,5508,4030,1153,4340,4339,17481,353,4731,4738], -[1,2343,23624], -[2,9374,12349], -"-unicode", -[2,23615,23622], -[0,23625,23626,2514,2487], -[0,25910], -[0,5245,27847,4874,1317,25212,3230,21180,91,1984], -[1,2343,23628], -[0,23629,23630,23632,2523], -[0,3164,4339,1581], -[0,3421,3297,2899,4193,1177,4170,2026,3752,1364,1575,192,1938,1881,5467], -"relateurl", -[0,5982,27,705,4339,6969,1973,5472], -[1,2343,23636], -"compressor", -"packer", -[0,23638,23639,23640,2537], -"uglifier", -[0,1362,3164], -[0,1429,1431,4037,4706,1364,1575,2026,2899,4170], -[0,4342,4339,705,6969,5982,27,1973,5472,1862,34901], -"detect-europe-js", -[1,2343,23650], -"alpinejs", -[3,19403,11], -"config-no", -"n-conventional", -[2,23645,23646], -[2,23644,23647], -[3,10854,16], -[0,0,23653,23654,2523], -"lyfill-node", -[2,23649,23651], -[0,1906,1166,4481,4874], -[0,1473,7208,1512,7009,7201,200,1111,592,6621,6616,7244,4166,4744,6876,4231,25986,34915,13735,13030,34916], -[1,2343,23656], -[0,23657,23658,23661,2487], -[0,31292,5012,23826,1006,1082,11869,19639,1497,11478,11479,22716,10898,10902,3090,22720], -[0,5180,8648,811,816,10615,8661,11868,4874,11486,668,4042,4227,27921,91,1984], -[2,23660,23663], -"browser-d", -[0,3709,27751,5130,5354,17950], -[1,2343,23665], -"etection", -"device-detection", -[0,23666,23669,23671,2537], -[0,5180,1457,20378,3527,11481], -"os-detection", -"bot-detection", -[0,811,8850,816,6373,10817,34939,1405,4042,4052,8849,3709,91,34940,34942,27702,27703,23560,34945], -"void", -[0,3709,200], -[1,2343,23673], -[0,0,23675,23676,2537], -"self-closing", -[0,53,87,192,5467,34951,34953,10879,4874,34955,19802,1165,13662,1509,1567,1177,695,3561,34958,3616,1894,3754,2278,4333,4337,3709,91,1984], -[0,3709,4358,91,695,4333,2278,4329,3754,1509], -[1,2343,23678], -[0,23690,23692,23693,2537], -"@bubkoo/commitlint-config", -"@bubkoo/", -[2,23680,7625], -[2,12612,1541], -[2,23680,23682], -[3,21388,20], -[2,23684,16171], -[2,23680,23685], -[2,23680,2190], -"asmine", -[2,5086,23688], -[0,16858,2070,4361,1149,25232,4597,4739,4747,2822,4709,3257,34967,3060,18993,10780,34966,13839], -"capture", -[0,1906,1192,695,2278,3549,4333,3536,1939,1942,34971,19812], -[0,1017,45,8221,18048,22074,22075,2873,1179,1623,2278,695,4333,5376,134,1936,13814,22874,22875,3257,17461], -[1,2343,23695], -[0,23697,23698,23700,2537], -"@selderee/plugin-htmlparser2", -[0,1525,1632,1634,9378,16858,3527,4113], -[0,442,11893,811,816,10615,16934,16854,5087,4874,34194,7752,1610,1177,2203,1192,3536,3541,3549,1894,4039,4042,4393,4481,91], -"selderee", -[0,4361,8221,6707,3178], -[1,2343,23702], -[0,23703,23704,23710,2537], -[0,1700,3067,34984,4533], -[0,1166,1173,1178,1257,29224,1272,1280,1362,1177,34989,3150,3188,4193,2924], -"@html-", -"/stylish", -[2,2649,23706], -[2,23705,23707], -"@sidvind/better-ajv-errors", -[0,2924,1932,34991,34984,11100,6812], -[2,23712,23], -[3,16579,15], -[1,2343,23714], -[0,23715,23716,23717,4139], -[0,1082,1699,2070,2856], -[0,1177,1894,4389,34997], -[0,8124,34999,7701,20120,1745,4363,1163,13728,1179,8623,20121,20123,20124,3452], -[1,2343,23719], -[0,23724,23727,23728,2537], -"theme-one-dark", -"@json2csv/plainjs", -[2,6019,3888], -[2,27733,23725], -[0,2205,2822,1525,35011,35008], -"-2", -"renderjson-2", -[0,1177,1984,1894,7677,35013], -[0,8124,1739,35015,1745,5592,134,4298], -"uffers", -[2,15038,23729], -[1,2343,23732], -[0,0,23733,23734,2537], -[0,4874,91], -[0,8168,8124,181,4369,2026,1745,1739,35021,12659,4367,699,35024,35026], -[1,2343,23737], -[2,11085,2634], -[0,23743,23744,23745,2537], -"pug-loader", -"recomp", -"ilation-simulator", -[2,23739,23740], -[2,4670,23741], -[0,5971], -[0,1866,2026,35036,2899,3421,3758], -[0,8124,2026,181,1781,1745], -[1,2343,23747], -[0,23748,23749,23752,2487], -[0,4535,3460], -[0,1209,2026,35046,2899,2025,35047,695,35048,1330,35051,3521,1389,2090,1776], -"@aminya/babel-plugin-replace-import-extension", -"lateurl", -[0,1283,17950,1936,21043,35053,16277,2026,1359], -[2,31806,31807], -"srcset", -"swiperjs", -[3,9376,10], -[2,23756,6424], -"postproc", -"cessor", -[2,23758,23759], -[1,2343,34505], -[0,4372,35058,31512,4453,12295,5131,1591,3525,1896,5130,35059,32054,35060,1932,89,188,35062], -[1,2343,23764], -[0,23765,23766,23768,2537], -[0,35068,35071,35072], -[0,1364,1610,2026,35074,1192,3237,4039,91], -"rss", -[0,705,27,2671,2325,1389,31360,15001], -"tributejs", -[1,2343,34522], -[0,35081,35082,3233,27838,888,6667,31937,6574,35084,35085,35086,35087,35088,35089,35092,26467,35093,7734,35095,3151,6771,35096,35097,35099,35100,11996,35102,35105,35106,35107,35108,35109,35110,35111,35112,17878,35115,35117,11812,35119,35122,10798,5876,12340,35125,25028,35126,35128,35129,35131,35133,35134,24079,5995,33741,35135,35136], -[1,2343,23773], -[0,0,23774,2514,2537], -[0,3445,2929,2899,3188,4039,4042,4072,1362,3310,35146,20463,4705,4232,8850,4073,6373,35141,816,35145], -"toidentifier", -[1,2343,23777], -[0,23778,23779,23780,2537], -[0,4729,1091,1594,35154,35155,35156,35157,1209,3237,35158,35159,35161,35162,2026,35163,35164,35166,35168,35169,1154,1364,1536,1562,35171,1130,97,35173], -[0,3278,1096,35175,35176,4167,35178,1532,35179], -[0,35181,35182], -[1,2343,23784], -"s-port", -[2,3209,23782], -[0,0,23786,23787,34352], -"sse", -[0,12473,4484,1177,2205,4042,1984,1894,91,53,4874,87,4057,4523,7677,5583,1938,11899,22839,22847,10817,816,24621,5660], -[0,4383,4380,1623,5256,35189,35191,1698,22306,35193], -[1,2343,23789], -[0,0,23790,2514,2537], -[0,1680,4874,16860,3090,4228,23956,31292], -"agent-base", -[1,2343,23793], -[0,23794,0,23795,2399], -[0,35205,35206,35209,35212,35213,35214,35216,35217,35220,35221,35222,35226,35227,35228,35230,35232,35233,35235,35236,35237], -[0,1145,4384,1973,5472,5130,200,35239,35240], -[1,2343,23797], -[0,23798,23799,23801,34352], -[0,1437,1792,2089,1209,3718,26840,35245,4431], -[0,35247], -"mockttp", -[0,4389,4384,2899,4386,16237], -"polka", -"next.js", -[1,2343,23805], -[0,0,23806,2514,2487], -[0,1192,1177,2203,1894,442,1193,53,1953,27928,87,1939,1938,20281,1982,1895,1955,19344], -[1,2343,23812], -"union", -"corser", -"secure-", -[2,23810,3797], -[0,23817,23819,23820,34352], -"eol", -[3,1895,15], -"opulist", -[2,23814,23815], -[0,35260,35263,35264,1417,1693,15016,35265,2133,2179,2070,35266,2571,2713,17403,3183,3206,3431,13635,3433,3435,814,18997], -[2,15021,36], -[0,13614,1143,1159,1537,1610,1796,35268,9254,1855,1177,14738,2762,2822,35271,3410,3421,4103,4135,4384,20496], -[0,4384,1973,35273,1145,1388], -[1,2343,23822], -[0,23823,23824,2514,2523], -[0,35279,35280,21505,29174,35278], -[0,4384,3297,4483,35282,4039,4508,1894,29169,4874,1834,35285], -[1,2343,23827], -[2,836,22715], -[0,23830,23833,23834,2523], -[3,7639,16], -[2,23828,176], -[0,3756,4393], -"HttpStatus", -[2,27,5576], -[0,4039,35291,4255], -[0,4390,2150,2090,18158,7204,3101], -[1,2343,23836], -[0,23838,23839,2514,2487], -"mediation", -[0,35297,35299,35298], -[0,35291,4255,1537], -[1,2343,23841], -[0,2513,23844,23845,2487], -"-retry", -[2,7737,23842], -[0,15288,15594,5087,4874,1009,1011,1596,668,1177,1903,1938,1954,1958,1192,1894,4468,91], -[0,35306,6346,35307,35308,4967,35310,5995,35312,27448,14629], -[1,2343,23847], -[0,0,23848,23849,2537], -[0,15288,5367,5371,6494,15594,5087,4874,9240,1009,1011,1364,1527,1652,35317,1177,1903,1938,1954,1958,2675,1192,2990,3363,5362,1894,4342,4468,91], -[0,35306,6346,35307,35308,5995,35312,15001,2026], -[1,2343,23851], -[0,23852,0,23853,4139], -[0,1676,3299,15160], -[0,32859,35324,35327,35328,35329,1326,35330,5995], -[1,2343,23855], -[0,23856,23857,23858,4139], -[0,1676,3299], -[0,442,6373,5245,4874,20584,1759,1177,1895,1966,1982,640,1894,4508,4514,91,4523,1983,26744,1984], -[0,32859,35328,4398,202,5995], -"anity", -[2,1901,23859], -[1,2343,23863], -[3,2677,9], -[0,23864,7923,23865,2523], -[0,4039,3188], -[0,21770,4449,1241,35342,16330,29615,35343], -[1,2343,23867], -[0,23871,23873,23880,2537], -"singular", -"plural", -"camelize", -[0,2753,13786,4507,35349], -"dasherize", -[0,4874,1166,3505,4453,4481,1906], -"demodulize", -"ordinalize", -"uncountable", -"singularize", -"titleize", -"tableize", -[0,1241,21770,3403,2090,7204,6857,16330,35342,29615,35343,3778,17023], -"classify", -[1,2343,23884], -"foreign_key", -[0,23885,0,23886,34352], -[0,26925,35364,35359,35367,35358,35365,35363,35356], -[0,7009,7201,1111,200,4744,1473,35369,35371,590,6847,35373,29002,35374,13006,4403,1478,15955,35375,35376,35377,32312,158,18048,21881,20639], -[1,2343,23889], -"@messageformat/core", -[0,23890,0,23892,2443], -[0,35382,15019,2713,35259,4431,35383], -"fast-printf", -[0,4403,7009,1111,35385,35386], -[1,2343,23898], -"make-plural", -"val-parser", -[2,9433,23895], -[2,18108,23896], -[0,23899,23900,23902,2487], -[0,35392,1082,1525,4232], -[0,35394,35395,1177,19210,1999,2899,3697,4042,4135,4227], -[2,23927,23929], -[0,2280,4072,4533,4535,3178,2632,5284,5286,1925,5194,6598,7075,6778,7056,7192,1149,7003], -[1,2343,23935], -[3,5702,15], -"-function", -"-functions", -[2,23904,23906], -[2,69,23907], -"gh-release", -"i18next-", -[2,1351,18691], -[2,13843,23911], -[2,23910,23912], -"fs-backend", -[2,23910,23914], -[2,2655,5995], -[2,23910,23916], -"storage-", -[2,23918,2325], -[2,2703,23919], -[2,23910,23920], -"sprintf-", -[3,10810,11], -[2,23923,7120], -[2,23922,23924], -[2,23910,23925], -[3,6021,10], -"interna", -"ease", -"alization", -[2,3855,23930], -[2,23928,23931], -[2,2703,8840], -[2,2202,8840], -[0,23937,23938,23939,2523], -"gettext", -[0,4072,2805,4121,4143,5180], -[0,1700,1192,2675,3144,1622,1177,1701,668,2924,1894,842,1610,4535,48,442,91,53,4874,2092,2990,3400,4677,28639,192,1953,27928,35403,4257,87,4523,1939,1584,1942,1938,20281,1982,1895,1955,19344,16400,5467], -[0,2280,4535,4533,4072,2924,1464,14137,15215,23634,2262,14137,2632,3178,6707,6708], -[1,2343,23941], -[0,23943,23944,23945,2537], -"gridly", -[0,22989,22991,22997,23001,23004,1519,1522,25190,2071,26553,17798], -[0,2829,3310], -[0,1187,1973,8791,200,2275,5472,4990,4389,4384,1166,2899], -[1,2343,23947], -[0,23949,23951,23953,2443], -"safer-buffer", -[0,1362,1437,2070,1209,3127,3188,35417,35419], -"errto", -[0,19181,442,12312,13414,4865,4870,4874,6513,1009,1011,7677,1703,1177,15555,35422,4193,35425,35426,4493,4494,91,35428,1984], -"unorm", -[0,1783,1973,2275,29352,1745,1739], -[1,2343,23955], -[0,23957,23961,23962,2537], -[2,8293,23958], -[0,53,71,81,5717,5749,5751,5757,5759,5782,5788,5821,5830,83,87,14128,90,97,35437,35439,4874,15427,5990,1212,14191,35440,17495,1429,1437,35443,1509,1525,1676,1680,1700,35444,28504,1687,35446,28137,13772,6473,2020,35450,2205,2215,33100,2670,12788,35453,2709,2742,26453,2743,35455,2753,2856,1209,35457,3093,7305,3220,35461,3257,3266,35462,3493,3532,35463,3549,15245,35465,3742,3762,35467,35469,13780,4025,4108,4135,5152,4232,4296,35473,35476,35479,35482,35484,35485,35486,35487,35494,35496,4449,4459,91,35497,35500], -"oxide", -"-reflect", -[2,5258,23959], -[0,33640,17835,35502,8862,811,15460,816,29544,35505,4856,5245,35507,17577,22089,27299,6505,7812,5254,5162,13418,35510,1009,1011,1198,1304,1364,35512,35513,1431,21480,4907,1544,1594,1610,35514,1874,1177,35517,17303,2026,35518,2323,2338,35519,2383,2384,2450,35521,35523,20305,2494,35527,2530,8163,3124,3159,3183,35531,3246,35533,3752,89,5311,4042,4076,4151,4193,17010,4294,35537,4484,4535], -[0,35539,6564,1388,2887,5351,8674,5472,13428,1973,8791,6969,1145,6468,35540,6789,6746,1149,7003], -[1,2343,23965], -"proxies", -[0,23966,23967,23968,2487], -[0,17877,35547,1137,20908,20991,1676,35549,1736,2182,28142,35550,35555,4391,4449,4548], -[0,28192,35558,28180,5245,28203,35561,35563,6520], -[0,4419,17878,5472], -[3,1891,15], -"stai", -[2,23969,23970], -[1,2343,23973], -[0,23976,23978,23979,2523], -"pre-suf", -"spawn-sync", -[0,1209,10627,35570,26827], -".gitignore", -[0,4874,1009,1011,1389,35573,35575,1610,1680,35576,35577,2752,3188,3400,3421,4039,4255,35579,35580,4421,4474,12851,91], -[0,6969,5982,3212,13106,4158,35582,4420], -"asterisks", -"regular-", -[2,23981,7256], -[1,2343,23984], -[0,23985,23986,23987,2537], -[0,10780,1292,1362,35382,1525,1536,1559,2020,2026,35588,2070,2659,2822,1209,3188,3257,3330,3411,35589,4039,4218,25192,35591,20496,4449], -[0,35593,1389,1429,18761,35596,1448,1719,1177,18766,1951,2899,705,35598,4167,4193,4196,4220,4389], -[0,5284,5472,27603,1388], -[1,2343,23990], -"dimensions", -[0,0,23991,23996,2537], -[0,4384,4389,1474], -"resolution", -"heif", -"tga", -"tiff", -[0,2585,176,14903,6938,26815,15847], -[1,2343,23998], -[0,0,23999,24000,2537], -[0,442,816,10615,1177,35611,1924,1937,1942,2203,29741,1776,3090,3549,3758,2907,4042,4495], -[0,4426,35617,5284,7598,35619,35620,35621,35622,35625,35628,35629,1424,8221,12075], -[1,2343,24002], -[0,0,24005,24007,2537], -"ow", -"p-pipe", -[0,48,53,83,87,97,5583,1195,16818,1593,1177,16821,1895,1955,1999,2182,35634,16824,2675,2297,2876,2881,2895,2904,2908,2921,2925,2990,3183,35637,3377,1894,3774,4042,16827,2924], -"imagemin-webp", -[0,1675,6925], -[1,2343,24009], -[0,0,24010,24011,34352], -[0,7115,4389,19988], -[0,3101,7046,7525,7170], -"is-png", -"pngquant-bin", -[1,2343,24015], -[0,24018,24019,24020,2537], -[2,2267,1932], -"pngquant", -[0,3923], -[0,1329,1398,1429,35649,2899,35650,4255,35653], -[0,3101,6657,4430,353], -[1,2343,24023], -"utf7", -[0,0,0,24025,2443], -"reader", -[0,3949,1499,1179,5701,1862], -[1,2343,24027], -[0,0,8134,24028,2487], -[0,35667,35668,35670,4435,5396,3403,4571,7204,4569,18132,6270], -"cpx2", -[3,23479,11], -[1,2343,24034], -"import-size", -"seamless-immutable", -[0,24035,14525,24039,2537], -[0,1437,32972,2089,21890,35675,3718,4425], -"mutable", -"on-write", -[2,1583,24037], -[0,2228,3005,22832,6901,35677,4262,18234,3514,6681,3005], -[1,2343,24041], -[0,24042,24043,24046,2537], -[0,35720,35797,35724,35730,35781,35789,35795,35799,35810,35682,35684,35697,35739,35750,35754,35769,35779,35793,35685,35700,35721,35741,35748,35756,35785,35787,35792,35812,35689,35694,35743,35752,35762,35774,35791,35805,35702,35705,35706,35708,35710,35723,35802,35806,35709,35699,35718,35729,35767,35772,35804,35808,35713,35733,35764,35811,35690,35701,35717,35727,35738,35761,35776,35783,35746,35736], -[0,2150,2070,2323,3403,2278,2899,89,1177,1209,4039,1637,3561,2924,1859,2151,2759,1610,2025,2504,3342,3824,1628,2359,3744,2367,4111,1165,2482,2496,4307,35814,35816,3427,4689,2361,2960,3618,35819,4909,1959,1879,1938,1947,25925,35818,1652,2054], -"variant", -[2,9721,24044], -[0,89,5128,4627,4963,181,5130,4967,35821,4437,14547], -[3,2697,12], -[1,2343,24049], -[0,24050,24051,2514,2487], -[0,20443,1676,26137,26144,3427,3763], -[0,1173,1198,1253,1267,1177,1903,1958,1970,2026,2164,2899,29946,4257,4342], -[1,2343,24053], -[0,0,0,24054,2523], -[0,1317,35832,4439], -[1,2343,24056], -[0,0,24058,24059,2523], -"bypass", -[0,35837], -[0,1473,57,35839], -[1,2343,24061], -[0,0,0,24062,2443], -[0,6105,4445,18241,5284,1936,2585,24829,24830,24843,6106,24832,6110], -[1,2343,24064], -[0,0,24065,24066,2537], -[0,4874,34238,1177,1895,1955,1982,1894,1531,91,4523,1983,1984], -[0,2062,35849,35851], -[1,2343,24068], -[0,0,0,24071,4139], -"metacom", -"metaco", -[0,4158,3212,91,3163], -"nfiguration", -[2,24070,24072], -[1,2343,24076], -"metalog", -[0,0,24082,23865,2537], -"metaschema", -"metautil", -"vm", -"metavm", -"metawatch", -[0,2899,1177,2759,15854,1951], -[3,15793,16], -"tarhia", -[2,24083,24084], -[1,2343,24087], -[0,24094,24096,24098,2537], -"isolation", -"enterprise", -"scalable", -"soa", -"stateful", -"cluster", -[0,3864], -"interactive", -[0,53,29553,5103,1894,91], -[2,24101,103], -[0,89,5128,35865,11000,8192,35867,35869,3857,3906,35868,35870,4450,9044,3811,5779,200,5131,12295,12296,5122,35871], -[1,2343,24100], -[0,0,24102,24103,2399], -[3,9312,10], -[0,48,53,81,87,90,11976,12310,5476,1195,1429,1177,2026,2151,2193,2205,2822,2832,3127,3188,2899,3286,35877,3400,35878,89,3824,2278,4255,2924,4677], -[0,4451,5284,176,5938,16504,8623,1936,6956,24456], -[1,2343,24105], -[0,0,24106,24107,2487], -[0,2276,28234], -[0,4452,57], -[1,2343,24109], -[0,0,24110,2514,2487], -[0,29169,4384], -[1,2343,24112], -[0,24115,24119,24123,2487], -"-vnode-flags", -[2,2711,24113], -[0,25671], -"inferno-", -[2,24116,594], -[2,24116,6579], -[0,5517,442,9089,603,4874,22839,1177,1895,1915,1938,1955,6526,2203,1894,4493,91,4523,1984], -[2,6073,591], -"ToString", -[2,8924,24121], -[0,9183,977,16358,35896,34877,34876,35897,35898], -[1,2343,24125], -[0,24126,24127,24131,2537], -[0,1512,1672,3188,35904], -[0,4856,6503,1429,1474,1787,1177,2899,3421,4474,4487,91], -[2,2712,591], -[2,2712,1592], -"humanize", -[0,3073,2942,4251,1676], -[1,2343,24133], -[0,24134,24141,24142,2523], -[0,15312,35917,17416], -"inherit", -"inheritance", -"klass", -"oop", -"oriented", -[2,3425,24139], -[0,13614,1159,9254,1855,1177,2708,3410,4103,4389], -[0,100,4647,6899,3053,7260,1697,1496], -[1,2343,24144], -[0,0,7923,24145,2523], -[0,1633,18718,3729,35109,32900,6553], -[1,2343,24147], -[0,20896,24148,2514,2523], -[0,7806,9227,6494,5087,1536,1594,2026,1192,3363,1894,4468,91,4763], -[1,2343,24150], -[0,24155,24158,24159,2537], -"@alcalzone/ansi-tokenize", -"auto-bind", -[2,17503,7201], -"yoga-layout", -[0,2713,4431,15019,35935,35938,3923], -"@types/ms", -[2,11313,14675], -[0,4389,4430,1537], -[0,1936,22115,57,353,3586,1623], -[3,6547,13], -"-exit", -[2,24160,24161], -"ack-utils", -[2,6516,24163], -"@vdemedes/prettier-config", -[2,15289,89], -[3,3816,9], -"tools-core", -[2,24167,24168], -[1,2343,24172], -"print", -[0,24173,24174,24175,2537], -[0,24156,5254,2738,3242,4135,22776], -[0,11976,4874,7677,1395,12690,3232,3446,7461,9245,91,1984], -[0,5995,1550,3230,3232,1932,2844,1747,18037,4799,91,2325,1552,1542,3151,9553,3766,35948], -[1,2343,24178], -[3,2718,12], -[0,0,24179,6273,2443], -[0,48,53,61,76,78,87,92,107,192,5467,9089,603,5366,5087,4870,7819,1009,1011,1193,1317,1593,1177,1895,1955,1978,2675,1192,1209,3400,1894,3957,4474,4508,4514,91,3348], -[1,2343,24185], -[2,24184,4013,17526], -"inno", -[3,2719,9], -[3,29444,16], -[0,24186,24187,24189,2523], -[0,35957,16781,2036,2856,3057,35958,4135,4507,4748], -[0,192,22559,19438,19181,442,11893,8755,554,10879,4864,5087,7637,7889,19446,35960,8778,4874,5254,4892,21626,1009,1011,1193,16307,1566,668,1177,1895,1938,1939,1942,1955,2020,2071,2151,2203,2675,1192,2822,2990,3144,1894,4039,4474,91,4523], -"run-async", -[0,1192,91,12938,89,5472], -[1,2343,24191], -[0,24192,24193,24194,2523], -[0,1437,1835,3170,4135,4227], -[0,8778,5254,1009,1011,1172,1175,1195,1257,1267,35968,1268,1874,1177,1895,1954,1955,2151,2070,2675,2766,2297,2881,2898,2904,2921,2925,2990,3123,3188,2899,1894,4039,91,2924,4677], -[0,4469,35972,2924,1194,91,4799], -[1,2343,25249], -[1,2343,24198], -[0,8998,1525,1759,3232,4494], -[0,24197,34525,24199,34352], -[0,5995,31012,35980,35981,3232,3230,1550,2844,1747,18037,4799,91,200,13326,35982,13325], -[1,2343,24201], -[0,24203,24205,24206,2487], -"fwk", -[0,35987,35989], -[3,2726,9], -[0,10817,4856,17577,6503,4874,1429,27445,1610,1687,2899,4039,4042,4474,91], -[0,91,6892,35993,4988,35995], -[1,2343,24208], -[0,24210,24212,24215,2523], -"reify", -[0,4757,1138,1687,1082,1084,35958,24806,36000,36001,32335,19441,36002,36005], -"exports", -[0,1166,3421,1170,89,36007,2022,1209,4039,4135,7094,3471,4508,842,36008,2188,3752,91,17577,4874,36009,4880,4870,20959,5254,15906,36011,28142,9725,28203,29139,603], -"packaging", -"unrun", -[0,91,202,7047,6639,4799,4643], -[1,2343,24217], -[0,24221,24222,24225,2523], -"remark-co", -"de-import", -[2,24218,24219], -[0,4870,24156,5254,36017,1209,3242,36018,36020,4135], -[0,11976,4874,7677,12690,3232,3446,7461,9245,91,1984], -"coffee.md", -"litcoffee", -[0,5995,3232,1932,1550,2844,1747,18037,4799,91,7163,2602,2013,6868,7147,3076,6865,13716,3073], -[2,24227,553], -[3,37196,18], -[1,2343,24243], -[3,1235,25], -"3-member-expression-literals", -[2,24229,24230], -[3,24231,27], -[2,4635,5796], -[2,24232,24233], -[2,1267,13278], -"-cal-buddhist-full", -[2,10739,24236], -"cldr-cal-", -"-full", -"chinese-full", -[2,24238,24240], -"cldr-cal-c", -[0,0,2667,24252,4139], -"optic-full", -[2,24242,24244], -"dangi-full", -[2,24238,24246], -"ethiopic-full", -[2,24238,24248], -"hebrew-full", -[2,24238,24250], -[0,91,4749,24753,24754], -"indian-full", -[2,24238,24253], -"cldr-cal-i", -"slamic-full", -[2,24255,24256], -[2,6795,24239], -[2,24238,24258], -[1,2343,24265], -"persian-full", -[2,24238,24261], -"roc-full", -[2,24238,24263], -[0,24270,24279,24281,2523], -"cldr-core", -"cldr-", -"dates-full", -[2,24267,24268], -[0,1209,4870], -"numbers-full", -[2,24267,24271], -[2,2004,19895], -"grunt-curl", -"grunt-zip", -[3,15911,15], -"emory", -[2,24276,24277], -[0,11976,4874,7677,3446,7461,9245,91,1984], -"ecma", -[0,5995,4799,91,36033,36034,5547,3624,16284,36036,36037,36039,36040,36041], -"ecma402", -"jsonc-simple-parser", -[1,2343,24285], -[0,24286,24288,2514,34352], -[0,2856,3183,4296], -[2,1940,23688], -[0,1192,2675,1177,4039,4468,4474,1894,91,5087,4874,2990,7892,36047,1942,1938,1895,1011,18285,1009], -"flag-icons", -[3,10697,15], -[2,24290,6082], -[3,2273,15], -[2,24292,23688], -"grunt-re", -[2,24294,2495], -[1,2343,24297], -[0,24300,24301,24303,2523], -[3,23932,13], -"country", -[0,8811,7681,2205,2777,3157,3505,3921], -[0,11436,4874,4880,1009,1011,1166,1597,1701,1177,1907,15290,2020,89,4025,4094,91], -"dial code", -[0,91,4481,4354,4532,553,36055,36059], -[1,2343,24305], -[0,0,24306,24307,2537], -[0,53,87,92,11893,19441,8811,4874,1009,1011,1193,1622,1177,1895,1192,1894,91], -[0,91,4481,8784,4354,16790,1973,4532,553], -[1,2343,24309], -[0,24310,24311,24312,2399], -[0,29891,1437,1457,15261,24283,3181,3188,36071,35237,4039,21512,91,9455], -[0,4874,668,1894,4384,4508], -[0,91,11540,24364,1999,10906,6147], -"updates", -[1,2343,24321], -[3,14428,13], -[2,24315,15525], -"inversi", -"on of control container", -[2,24317,24318], -"ioc", -[0,0,0,24322,2487], -[0,6869,7296,4643,1351,5284,4484,7047], -[1,2343,24330], -"empathic", -[3,547,8], -"li-framework", -[2,24325,24326], -"-prompts", -[2,24327,24328], -[0,24333,24350,24357,4139], -"discover", -[2,8655,24331], -[0,51,1405,1437,1525,1687,2070,2822,3181,3188,814,4135,4484,18272], -"utils-array", -[2,8655,24334], -[3,24335,13], -[2,24336,2150], -[2,24336,11996], -[2,24336,3729], -[2,24336,3101], -[3,24340,14], -"ubprocess", -[2,24341,24342], -[2,24336,7009], -"elementtree", -"leek", -"ssh-config", -"-proxy", -[2,4339,24348], -[0,692,19861,4856,17577,4865,7637,9129,10949,6503,4874,5251,20959,5254,1429,2675,34269,2899,3400,3421,1894,4039,4474,4487,4490,14970,91,31745], -[3,15592,14], -[2,24351,1633], -"pen", -"@types/open", -"s-name", -[2,15461,24355], -[0,200,91,9654], -"@types/split2", -[3,9240,12], -[2,24359,4575], -[1,2343,24365], -[2,2733,14606], -[2,2733,5130], -"hybrid", -[0,0,24366,24367,2523], -[0,1192,2675,1209,4039,4487,4468,3093,1894,36090,1527,91,5087,4874,36097,4492,36088,15600,4131,36098,36103,31194,4585,31195,36100,1652,36095], -[0,671,4487,36106,1894,1541,91], -[1,2343,24369], -[0,24371,24372,2514,2487], -"@types/svgo", -[0,18272], -[0,4865,4874,1512,2070,3400,3403,4487,36114,91], -"icon pack", -[3,11619,14], -[1,2343,24376], -[0,24377,24378,2514,2537], -[0,36119,1415,1457,1556,1676,668,28795,36120,3527,3616,4025,4042,4227,12444,26379,27921,4459], -[0,603,8850,842,5245,4874,5251,19839,2117,3561,26712,1894,814,4057,2278,4300,3709,4359,4072,36123,4493,91,1984,9252], -"@ioredis/commands", -[1,2343,24394], -"-key-slot", -[2,24093,24381], -"denque", -[3,19541,11], -"guments", -[2,24384,24385], -"-error", -"-errors", -"redis-errors", -"redis-", -[2,24390,57], -"as-callback", -[2,18124,24392], -[0,24404,0,24405,2537], -"@ioredis/", -[2,8626,16609], -[2,24395,24396], -[3,19583,22], -[3,10408,16], -[2,24399,10446], -[3,8826,10], -"is-errors", -[2,24401,24402], -[0,668,2191], -[0,200,7047,202,17526,10906,1999,91,36130], -"sentinel", -[1,2343,24409], -"pipelining", -[0,24410,24411,24412,2487], -[0,36135], -[0,811,816,6373,1389,4037,4042,4255,36140], -[0,15253,1936,1783], -[1,2343,24414], -[0,0,24415,24420,2399], -[0,2228,2899,29691,2240,4019,36157,36156,2300,36149,2258,36160,4232,2247,36163,2273,2281,36165,36167,36153], -"irc-colors", -"node-i", -"cu-charset-detector", -[2,24417,24418], -[0,2845,2844,1155,4496], -[3,1104,10], -[1,2343,24423], -[0,0,24424,24425,2523], -[0,1389,1177,2080,36176,4389,36178,4535], -[0,1616,12588,36181,36182,7789,3428,6803,36183,36185,36186,36187,36189], -[1,2343,24427], -[0,24428,24429,24430,2523], -[0,2151,2859,36194,21224], -[0,3400,3524,4535], -[0,3113,36197,57,11806,22875,36198,3656], -[1,2343,24432], -[0,24433,24434,24435,34352], -[0,1362,3171,705], -[0,1149,1512,1525,2899,4037,4193], -[0,4500,5592,4030,3101,22115,3424], -[1,2343,24438], -"is-extglob", -[0,24439,24442,24443,2443], -[0,705,1696], -"extglob", -"globstar", -[0,3297,2899,1177], -[0,4500,22115,3424], -[1,2343,24445], -[0,24447,0,2514,2537], -[2,14503,7204], -[0,3183,36215,1437], -[1,2343,24452], -"globally", -[3,9509,9], -"locally", -[0,24453,24454,24455,34352], -[0,31081], -[0,13789,1011,1177,28753,1680,2024,3401,4481,91,4523,1906], -[0,91,4799,553,6435,614,6731,3061,1698,1781,7265], -"vanilla", -[1,2343,24458], -[0,24459,16075,24460,2537], -[0,1562,36226,3173], -[0,1563,998,36228], -[1,2343,24464], -"is-object", -"kind", -[0,24465,24466,24467,2537], -[0,24648,6327,3105,3181,4745], -[0,442,8144,7639,6503,4874,1414,36007,668,1177,2899,3758,4135,4494,91,4523], -[0,91,1745,1179], -[1,2343,24471], -" name", -[2,24374,24469], -[0,24472,24473,24474,2443], -[0,36241], -[0,4874,4508,91], -[0,36244,36245,29,36246,36247,36248,91,1745], -[1,2343,24476], -[0,0,23733,24477,2487], -[0,1666,6901,33777,91,1745,36248,4508], -[1,2343,24479], -[0,0,0,24480,2537], -[0,5592,1745,1783,4508,91,36245], -[1,2343,24482], -[0,24483,24484,24485,2537], -[0,3127,91], -[0,8147,6503,4874,6520,1596,2759,2899,3202,4449], -[0,6869,1745,36263,5284], -"is-ins", -"ide-container", -[2,24486,24487], -[1,2343,24490], -[0,24492,24495,24496,2537], -"esmock", -[0,1525,4734,3275,15221,36270,1149,1512,3220,3188,7074,36272], -"wsl", -"subsystem", -[0,1429], -[0,36275,1783,36276,36278,26916,20672,1283,15253,1179], -[1,2343,24498], -[0,5914,24499,2514,2523], -[0,549,4856,9417,6503,36284,4874,1429,1431,1596,2899,36285,3232,36289,1894,36290,4232,4474,4490,31194], -[1,2343,24501], -[0,24502,24503,2514,2399], -[0,2070,3348,1112,1673,1676,4484,4747,1398,1680,1759,16544,1130,24697,3951,36295], -[0,1414,3519,1429,2323,2675,2742,2899,3243,3259,1552,4193,1177,3260,4039,7800,2203,3230,4246,4474,25633,1894,36308,442,2507,20085,4196,91,4856,4874,2494,2990,5245,6503,6513,4892,2496,36307,25629,2510,2529,25634,27585,19441,1431,6512,8536,18710,4523,36303,4232,28290,1942,28033,36305,9417,13418], -"kindof", -[1,2343,24506], -[0,0,24507,24508,2523], -[0,1414,3242,1429,1687,2070,2931,2899,4484,4707,36007,1177,20380,668,2203,1457,3183,24156,442,3527,3541,91,4856,17577,6503,26584,2858,692,7892,2075,36315,36316,4523,36318,4232,1964,36323,1012,13418,27909,12123,5551,36326,36331], -[0,6869,7296,4643,1351,5284], -[2,13283,2899], -[1,2343,24513], -"spaces-cli", -[2,671,24511], -[0,24514,7590,24515,2537], -[0,1012,1011,1009,12145], -[0,6892,5286,5284,91,57,5341,1177,6741,6939], -[1,2343,24517], -[0,24518,24522,24526,2399], -[0,36342,18420], -"code c", -[2,24519,2885], -"JS code coverage", -[0,10949,6503,4874,36345,1567,36348,3188,2899,3696,4487,91,4526], -"@metcoder95/https-pem", -"verage", -"JS coverage", -[0,6869], -[1,2343,24528], -[0,24529,24530,24531,2487], -[0,36356,36358,1759,16837,695,3025,3561,3616,16840,3638,16841,25162,2278,4228,4480,4333], -[0,36361,5087,19799,7889,4874,36362,36364,19802,1009,1011,1367,1177,1895,2675,1192,33412,2990,36366,3640,3672,1894,36367,4468,91], -[0,1623,4329,2278,695,4333,5260,1932,3561,91], -[1,2343,24533], -[0,24534,24535,24538,4139], -[0,23433,1362,1437,1486,1513,35446,25879,32086,3077,3183,36374,36375,4562,4720,1695], -[0,1705,3297,4039,4474,4487,36377,91], -"js-calendar", -"v-click-outside-x", -[0,4532,91,23076,6432,3383,10057,5490], -[2,1165,2091], -"5-property-mutators", -[2,24229,24540], -[2,1536,4408], -"vue-h", -"tml-loader", -[2,24543,24544], -[1,2343,24547], -[0,24548,24549,24550,4139], -[0,1525,4227], -[0,1082,2899,4135], -[0,2280,4533,4535,3178,2632,5284,5286,1925,5194,6598,7075,6778,7056,7192,1149,7003], -[1,2343,24552], -[0,0,24553,24554,2443], -[0,1082,4135], -[0,200,15215,23634,24280,5286,3595,1925,5284,676,36390,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,23637,2280], -[1,2343,24556], -[0,24557,24558,24565,34352], -[0,9448,2102,2755,4121,4143,4227,4535,4695,24777], -[0,48,53,87,192,5467,19401,16405,1193,19403,1610,1700,1701,1177,1895,1938,2675,1192,2794,2990,3150,3400,1894,4257,4072,2924], -"character-", -[2,24559,57], -"inople", -[2,14180,24561], -[3,10755,13], -[2,8535,591], -[0,2280,4535,4533,2924,1464], -"void-elements", -[1,2343,24572], -[3,13889,13], -"ddleware", -[2,24568,24569], -"code-mirror", -[0,24573,24578,24579,2523], -[0,36402], -"github-basic", -"highlight-", -[2,24575,1505], -"inconsolata", -[0,2899,1177,1362,2759,1954,1938,1958,1903,1970], -[0,3778,1179,7818,6953], -"-code-mirror", -[2,2437,24580], -"jade-", -"highlighter", -[2,24582,24583], -[3,10755,14], -"cdata", -[2,24585,24586], -[3,24587,15], -[1,2343,24597], -"offee-script", -[2,24588,24590], -[2,24585,695], -[2,24585,3127], -[2,24585,4333], -"verbatim", -[2,24585,24595], -[0,24603,0,24604,2537], -"less-file", -"lsr", -[2,23151,705], -"stop", -"twbs", -[0,97,4880,4883,36409,36411,36413,36415,36416,36420,36422,36423,1015,36424,36425,36427,36429,36430,36432,36433,36435,36437,36439,36442,36444,36445,36447,36448,36451,36453,36454,1018,1021,36455,36457,36458,36459,36461,36463,36466,36467,12265,1023,36468,36471,36473,36476,36477,36478,36480,36483,36485,36487,36489,36490,36491,36492,36493,36495,36497,36499,36502,36503,36504,36506,36509], -[0,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], -[1,2343,24606], -[0,24608,24609,8039,2399], -"filelist", -[0,2070,2685,1209,4135,4727], -[0,2272,3105,2899,3381,4170], -"rake", -[1,2343,24612], -[0,0,24613,2514,2399], -[0,8862,811,816,10817,4874,1317,1894,4042,4484,91,1984], -[1,2343,24615], -[0,0,24616,24618,2523], -[0,11976,107,34715,1437,12607,668,2205,2553,3105,36526,3400,36528,3714,7917,1984], -"video-worker", -[0,1936,1283,2574], -[3,1198,14], -"nnotate-pure-calls", -[2,24619,24620], -[3,19449,20], -"nk", -[2,24622,24623], -[2,16819,2143], -"-nk", -[2,7628,24626], -[1,2343,24629], -[0,24630,24632,2514,2523], -[0,8862,811,8850,816,6373,10895,36534,1556,16230,668,28795,36538,2807,3090,36536,3189,3510,15450,3714,4042,4057,15451,27921,36537], -"parallax", -[0,5757,4874,7677,19336,1446,1177,1905,1894,91,1984], -"youtube", -"vimeo", -[1,2343,24636], -[0,0,24637,24638,2537], -[0,3421,2070,1734,2675,2297,2907,1177,4042,4072,1597,1596,2908,17232,5561,36544,1938,2915], -[0,614,6564,36,5576,1388], -[1,2343,24640], -[0,24641,24642,24643,2537], -[0,4243,23462], -[0,1389,36552,1177,2759,2899,3202,4068,31136,4545], -[0,4545,1871], -[1,2343,24646], -"css-url-embed", -[0,0,24647,24649,2523], -[0,20870,36559,24523,826,4874,1079,28400,1414,1610,36560,668,1177,2064,2675,1192,31808,29197,3313,2658,4481,91,4729], -"@gerrit0/mini-shiki", -[0,1612,27,2671,1862,705,7085,7289,4731,7102], -[1,2343,24654], -[2,2767,12608], -[2,2767,8751], -"walkdir", -[0,24655,24656,24657,2537], -[0,9315,31265,23289,2051,2745,36568,12449], -[0,36571,12396,9363,4874,1414,1894,3985,3998,4481,4505,91,1906], -[0,6892,7234,1563,25154,1644,3729,3958,3984,36573,4141,1646,5341,353,1633,4549], -[1,2343,24659], -[0,24660,8134,24661,2537], -[0,36578], -[0,17023,3778,6988,16114,8623,36580,4552,5401,11512], -[1,2343,24663], -[0,24664,24667,24669,2523], -[0,9315,18072,12447], -"cssfontparser", -"moo-color", -[0,9363,4874,1414,3137,27008,27010,1894,3985,3998,4481,4505,91,1906], -[2,1199,15525], -[0,23266,36587,614,6435,3984,36573,3958,26564,2587,36588,36589,3273,1351,1783,1936,6523,1633,6892,202,12414,4647], -[1,2343,24671], -[0,0,16529,24672,2523], -[0,35670,27280,18132,4558,3403,4571,7204,4569,4166,16159], -[1,2343,24674], -[0,24675,0,24676,4139], -[0,17180,2155,36602,36604,20508,3923], -[0,2056,4560,15008,36606,12666,3101,7682], -[1,2343,24678], -[0,24679,24680,24681,2487], -[0,36612,1371,1437,36611,4135,20044,1543,16184,2960,2744], -[0,1906,1166,24491,4294,1470,36615], -[0,3378,3076,29096,22005,3329,4354,16790,200,1237,3383,15525], -[1,2343,24683], -[0,0,0,24684,2537], -[0,12831,1002,36621,36622,36623,36626,36628,36630,36632,36637,36639,36641,36642,36643,36646,36649,36650,36653], -[1,2343,24686], -[0,24687,24691,24692,2399], -[0,3763,3757], -"@jest/e", -"nvironment", -[2,24688,24689], -[0,1158,3421,4770,1082,2899,1177,13614], -[0,7119,1002,25658], -"fake-timers", -[2,552,24693], -[1,2343,24696], -[0,0,24698,24699,2523], -"sql-highlight", -[0,1566,2899,4170], -[0,1002,4565], -[1,2343,24701], -[0,24702,24703,13533,2399], -[0,3008,3173,4121], -[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,2092,2675,1192,2990,3144,21016,3400,1894,4257,2924], -[1,2343,24705], -[0,24706,24707,24708,2523], -[0,15560,23783], -[0,1148,1389,1414,2899,3697,20010,20012,4535], -[0,7134,57,12831,1002,1644,3766,1871,3767,1646], -[1,2343,24710], -[0,24711,24714,24716,34352], -[0,2139,36681,3173,3763,4507,4548,36680], -"-escapes", -[2,11948,24712], -[0,5517,30494,36688,20224,36694,36687,7746,4874,36685,11305,36691,7752,29891,23247,7677,1410,1610,2685,33479,30889,2658,7798,28531,4393,4483,36684,91,1984], -"matchers", -[0,4568,27,36696,7085,7289,705,2671,4548,1612], -"extended", -[1,2343,24720], -[2,38074,1177], -[0,24721,24722,24735,2537], -[0,25493], -[0,3505], -"@pmmmwh/react-refresh-webpack-plugin", -"cape-html", -[2,5600,24724], -"ump.js", -[2,5086,24726], -"ndomcolor", -[2,12178,24728], -"eslint-w", -[2,2546,4406], -[2,24730,24731], -"jump.js", -"randomcolor", -[0,4569,4571,35668,25493,4014,7204,6857,3403,1263,6437,6639,6436,36706], -[1,2343,24740], -"recharts", -[2,30495,674], -"web-vitals", -[0,24741,24742,24743,2487], -[0,3084,4449], -[0,1148,2899,3697,705,4135,36712], -[0,4575,1388,36715,888,1644,57,36716,36717,36718,36719,4569,36720,4576,15525], -[1,2343,24745], -[0,0,24747,24748,2537], -"libxmljs2", -[0,1596,2759,14529,3774], -[0,8426,9254,3656,4577], -[1,2343,24750], -[0,24751,24752,24755,2523], -[0,2713,17395,25700,36732,17416], -[0,1090,1593,36736,3435,3438,4092,4100,4389], -"plugnplay", -"pnp", -[0,614], -[1,2343,24757], -[0,0,9530,24755,4139], -[1,2343,24760], -[2,814,13987], -[0,0,24761,24763,2537], -[0,68,192,5467,442,6375,1525,1177,1895,1955,2203,2675,1192,2990,29197,3400,1894,23901,27302,4257,91,4523], -"@vercel/h3", -[0,3348,6926,6668,36760], -[1,2343,24765], -[0,24766,24767,24768,2399], -[0,20573,1687,2929,11481], -[0,36767,1999,29283,34078], -[0,1145,36769,8791,8745,1973], -[1,2343,24770], -[0,0,24771,24772,2523], -[0,4384,2272], -[0,1002,7020,4354,16790,13017], -[1,2343,24774], -[0,24775,24776,24784,2523], -[0,17058,36781,7076,25814], -[0,17584,1429,15990,1527,1652,2675,2759,3188,2899,21477,4039,4131,4193], -"worker-farm", -"leak-detector", -[2,2769,24778], -[3,20371,12], -[2,24780,14922], -"@aneuhold/be-ts-lib", -"@vercel/koa", -[0,36785,1528,6458,3358,16094,13729], -"@vercel/hono", -"@jimp/diff", -"@jimp/", -[2,24787,9711], -"@jimp/types", -[1,2343,24803], -"@jimp/t", -"est-utils", -[2,24791,24792], -"@adonisjs/ace", -[2,12327,10809], -[3,475,10], -[2,24801,8915], -"manipulation", -[2,12327,24798], -"resize", -[3,24794,11], -[2,24796,24815], -[0,0,24804,24814,4139], -[0,9516,9515], -[3,1603,9], -[2,24805,3751], -[2,10880,1283], -[3,5617,14], -"eter", -"-decorator", -[2,24809,24810], -[2,11958,24811], -[2,24808,24812], -[0,3378,3383,1460,7020], -"bodyparser", -[2,24825,686], -[1,2343,24820], -[2,29401,166], -[2,13055,25721], -[0,0,24824,24834,2537], -" editor", -[2,6105,24821], -"wysiwyg ", -[0,48,53,87,94,1178,1198,1177,1881,1938,2899,3400,3421,4039,4042,4045,28038,4535], -[3,475,12], -"html editor", -[2,24823,24826], -[2,24796,7141], -"rich editor", -[2,6106,24821], -"editable", -[2,1563,24831], -"vanillajs", -[0,1155,7020,2649,20215,2574,36796,36798,1145], -[1,2343,24837], -"@adonisjs/env", -[0,24838,24839,24840,2443], -[0,36805,36809,36806], -[0,4874,11016,13061,16480,36812,11018,1639,36814,2832,91,1983,1984,36815,188,4639,36820,36821,36816,36817], -[0,181,188,8588,5131,4967,4627,4963], -[2,24846,24847], -"wysisyg", -"rte", -[1,2343,24845], -[0,0,24851,24865,2523], -[3,24828,11], -"vents", -"nanotimer", -"temporal", -[3,1387,9], -[0,2899,1177,2759,1317,4342,1311,1954,1938,1958,1903,1948,1970], -"erialport", -[2,24850,24852], -"firmata", -[2,24796,24858], -"beautifier", -[2,2294,24856], -"fold", -"0A02", -"0A21", -"16x2 LCD", -"20x4 LCD", -"2D120X", -"2Y0A02", -[0,27,10376,4590], -[1,2343,24870], -"2Y0A21", -"74HC595", -"ADXL335", -[0,24901,24903,2514,2537], -[2,24796,3428], -"ADXL345", -"ALS-PT19", -"ALSPT19", -"ANALOG", -"arduino", -"Ardumoto", -"AT42QT1070", -"BLINKM", -"BMP180", -"Continuous Rotation", -"DEFAULT", -"Diffused LED", -"DS18B20", -"Edison Arduino Block", -"Edison ", -"GPIO Block", -[2,24886,24887], -"I2C Block", -[2,24886,24889], -"PWM Block", -[2,24886,24891], -"edison", -"ESPLORA", -"EV3", -"galileo-io", -"galileo", -"GP2D120XJ00F", -"GP2Y0A02YK0F", -[2,24925,24926], -[0,4593], -"GP2Y0A21YK", -[0,4384,2276], -"GP2Y0A41SK0F", -"GY-521", -"GY521", -"HD44780", -"High Torque", -"Hitec HS-35HD", -"Hitec HS-", -[1,2343,24939], -"Hitec HS-422", -[3,24912,11], -"5BB", -[2,24913,24914], -"625MG", -[2,24910,24916], -"Hitec HS-6", -"46WP", -[2,24918,24919], -"755HB", -[2,24910,24921], -"805BB", -[2,24910,24923], -[3,24871,11], -"ealth", -"Hitec HS-85MG", -"HMC5883L", -"HMC6352", -"Hobby Motor", -"HRLV-MaxSonar-EZ0", -"HT16K33", -"HTU21D", -"i2c", -"Infrared Proximity Sensor", -"Infrared ", -"Sensor", -[2,24936,24937], -[0,24941,24957,2514,2487], -"intel edison", -[0,12105,668,1457,2139,36838,24762,36840,24783,30162,24785,36841,36842,36843,24818,28111,29471,36845,24738,28441,36848,30929,36850,36852,31275,36855,36859], -"intel galileo", -"ISL29125", -"JHD1313M1", -"Joystick", -"LCD1602", -"LCD2004", -"LCM1602", -"LED", -"LIDAR-Lite v2", -"Ludus Protoshield Wireless", -[3,24951,17], -"LV-MaxSonar-EZ0", -[3,24953,14], -[2,24954,1278], -"MCP23008", -[0,3242,1091,1138,1758,1999,2714,3467,3445,1983,1413,1437,1676,2020,3144,2658,17913,25671,4707,1438,1759,2022,2754,4039,4135,4238,4391,1984,1458,1503,2026,2105,3203,4474,1668,2151,2182,3761,3784,33145,842,24156,11305,36861,26453,29133,3181,3547,4459,29105,31142,1109,33200,1483,2794,3173,3310,4294,91,5087,4874,1154,1869,36863,20921,36864,36867,5364,5245,27066,26584,1107,1151,36868,36869,36871,5254,24358,35563,13834,5071,31008,36872,6541,36873,36874,25892,36875,8997,4864,28137,2069,36877,3386,16831,36878,34118,36879,9129,12461,27959,36880,7746,5542,30493,33761,36882,31071,23843,24725,36885,11907,36887,36889,15887,36890,36892,5328,36895,36897,36899,29125,36901,36906,36909,36911,36915,36917,36918,36920,36922], -[2,24925,9257], -"MCP23017", -"MCP9808", -"Metal Gear", -"MJKDZ", -"MMA7361", -[2,24796,2942], -[1,2343,24971], -"MMA7660", -"MMA8462Q", -"MPL115A2", -"MPL3115A2", -"MPR121", -[0,24982,0,24990,2537], -"MPR121QR2", -"MPU-6050", -"MPU6050", -"MUXSHIELD2", -"NXT", -"OA41SK", -"PARALLEL", -"PCA9685", -"pcduino", -"PCF8574", -[0,36927,1147,34631], -"PCF8574A", -[2,24796,32276], -"PCF8574AT", -"PCF8574T", -"@paralleldrive/cuid2", -"PCF8575", -"@poppinss/colors", -[0,1851,2656,15204,30960,31482,5317], -"PCF8591", -"photon", -"PIR Motion Sensor", -"QTOUCH", -"raspberry pi", -"raspberry", -"raspberrypi", -[2,24999,25005], -"@poppinss/", -"raspi-io", -"RedBoard", -"RGB LED", -"robotics", -"rpi", -"dumper", -"Servo", -"Shift Register 8-Bit SN74HC595", -[3,25007,14], -"SI7020", -"spark", -[2,24999,25017], -"spark core", -[1,2343,25035], -"spark-io", -"SparkFun Essential Sensor Kit", -"SparkFun ", -"macroable", -"Sensor Kit", -[2,25016,25018], -"Speed controller", -"Temperature", -"tessel 2", -"Thumb Joystick", -"TINKERKIT", -"TMP36", -"TSL2561", -"Ultrasonic Range Finder", -"usb", -"VKEY", -"Weather Shield Arduino", -[3,25030,15], -"Photon", -[2,25031,25032], -[2,24999,594], -[0,0,25036,2514,2537], -[0,2899,2759,4342], -[1,2343,25041], -"@hapi/formula", -"@hapi/pinpoint", -"@hapi/tlds", -[0,0,25043,25044,2537], -[2,6473,3020], -[0,53,87,192,5467,5583,1208,1429,1443,1503,1597,16656,1637,1701,1177,1881,1938,2675,2297,2878,2881,6385,2900,2904,2910,2990,2899,3400,3561,3566,16658,3613,3672,16578,3758,4042,4320,4323,4328,4535], -[0,158,11328,4596,36941,1936,1623,5284,6400,5122], -[1,2343,25046], -[0,25048,25050,25051,2523], -"youch", -[0,36951,1496,4002,36950], -"youch-terminal", -[0,3421,2899,1177,2022,35299,3923,1889,1954], -[0,4607,17462,2090,7204,4262,3403], -[1,2343,25056], -[2,24801,25055], -"recoil", -"ssembler", -[0,25057,25061,25062,2537], -[0,1329,4431], -[2,25059,25082], -"@adonis", -"gzip-js", -[0,4389,4603], -[0,4597,17461,6270,1398,3101], -"commitplease", -[1,2343,25065], -[0,25066,25068,25078,2443], -[0,36965,21539,2215,2685,36966,36967,3369,36968,36971,35299,36972,36975,4597,36976], -"grunt-git", -[0,1177,1889,2022,2899,3421,3923,4039,4193], -"-authors", -[2,25067,25069], -"-webkit", -[2,3541,25071], -"mpare-size", -[2,21927,25073], -[3,10727,15], -[2,25075,3766], -"karma-j", -[0,2323,36981,4597,2090,6771,2150,7046], -[2,26505,6579], -[1,2343,25081], -[0,25084,25087,25093,34352], -[3,835,16,7], -[2,25085,25086], -[0,4597,4431], -[3,475,8], -[3,24165,17,8], -[0,2494,4389,4600], -"grunt-html", -"owercopy", -[2,2237,25089], -"-local", -[2,14336,25091], -[0,4597,2323,17461,24456,3101,1871,2585,128], -"prototyping", -[1,2343,25096], -[0,9652,0,25097,2537], -[0,4597,4070,22850,2323], -[2,24796,2190], -"@japa/assert", -[1,2343,25101], -[0,25102,25105,25107,2523], -[0,36996,1851,36997,2202,24462,19094,36998,37000], -"@japa/expect-type", -"@japa/file-system", -[0,1389,2759,21526,3459,37002,30164,4387,4389,4770], -"config-chain", -[0,4607,965,23361,37004,1687,7163,1388], -"@japa/runner", -"code-quality", -"@japa/snapshot", -[1,2343,25112], -[0,25113,25116,25117,2487], -[0,20378,4042,668,3561,3530,27921], -[2,25115,15244], -[3,7895,14], -[0,4729,1415,27438,1594,984,3189,30023,3445,2278,4200,3510,1759,11480,3266,3493,4072,1544,28119,1457,28865,4955,37012,34928,3527,1615,1869,31308,16860,3090,58,9743,1763,2007,21688,37013,3613,37014,37015,24759,30787,37017,24725,1573,10895,3616,29444,8862,31292,28465,4060,811,28572,18584,5180,28575,16808], -[0,4967,5130,11498,5331,37019,1983], -[2,25119,25121], -[3,10844,11], -[1,2343,25123], -"-console", -"argon2", -[0,25124,25132,25133,2537], -[0,25375,2071,2151,37024,26479], -"knifecycle", -"yerror", -"edge.js", -"@mer", -"maid-js/mermaid-cli", -[2,25128,25129], -"mermaid", -[0,6494,4864,4874,2026,4493,91,1983], -[0,1983,5592,37028,37029,37030,37032,2026,37034,36,37036,7433,37031,37038,1932,8172,4083,5995,37039,37040], -[1,2343,25136], -"architecture", -[0,25139,25149,25150,2537], -[2,25138,25151], -"ts-node-", -[0,188,1983,9348,8114,37052,7797,36805,10984,6371,37047,37046,24097,37049,7639,11016,37051,9312,25447], -"-to-glob", -[2,16774,25140], -"@jscpd/html-reporter", -"@jscpd/", -[2,25143,139], -"-sarif-reporter", -[2,2824,25145], -"@jscpd/core", -[2,25143,207], -[0,3467,4200,1676,2020,3478,23802,3266,4039,4042,4135,1984,668,3537,3742,7799,19571,13151,28519,1457,2151,2182,3183,1894,3757,3084,3170,3527,27921,91,4874,1615,2226,2990,3105,5245,8646,30795,8146,7812,3509,4864,7892,3067,37067,9245,8778,5946,3114,4057,37017,21122,3107,8850,34971,37061,37065,8862,37074,3112,15277,37062,6373,22823,811,3668,37059,7641,37070,37056,1567,816,37058,37069,37071], -[0,1983,188,4614], -"maintained", -[1,2343,25153], -[0,25166,25171,25173,4139], -"cst", -"adonisjs", -"jscs-jsdoc", -"jscs-", -"wikimedia", -[2,10832,25158], -[2,25157,25159], -"rved-words", -[2,4020,25161], -"to-double-quotes", -"to-single-quotes", -"vow-fs", -[0,30023,1983,3510,15452,26379,3530,4441,27921,37080,2024,37082,3090,37084,36874,26380,37085,37014,37087,37092,37093], -"7.0.0", -[2,5857,25167], -[2,8649,22785], -"unit-coverage", -[0,4729,1415,3171,37095,2832,26385,3742,24324,2559,37096,1084,4874,13204,1006,37013,7812,37097,20374,37100,13471,826,8806,5180,6515,8809], -"style guide", -[0,1983,1984,1973,1192], -[1,2343,25175], -[0,25176,25180,25182,2523], -[0,1437,1209,2720,3183,4726,2708,3077,4294,1257,37108], -"@jsdoc/salty", -"catharsis", -[2,20398,57], -[0,1906,2323,1172,2899,3220,4170,37110,705,1362,1175,2338,2384,37115,37117,2357,37113,1267], -"requizzle", -[0,5592,200,32276,4166,8786,5130,1896,13527,1523,1525,35539,3741,2720], -[2,25184,25186], -"@aneuhold/", -[1,2343,25187], -"core-ts-api-lib", -[0,25196,0,25197,2537], -"current", -[2,1469,4479], -[2,25188,25189], -"object-to-", -"spawn-args", -[2,25191,25192], -[2,25195,1095], -[3,25183,18], -[0,1687,37123,2070], -[0,5472,4386,1973,37125], -[1,2343,25199], -[0,25201,25206,25207,2487], -"ool", -[0,4449,2070,3171,3917,22990,1437,2975,4753,37130,4135,4734,1448,4566,1525,3181,3105,37131,2613,37132,36323], -"master", -"config-master", -[2,25184,25205], -"main-scripts", -[0,2675,2899,4474,1894,6520,91,4865,27098,4874,15743,37139,3400,6503,20290,3720,5254,28189,37135,192,37137,9129,4131,7639,4232,12458,5467], -[0,29641,4617,7188], -[1,2343,25210], -"jsr", -[0,0,2667,2514,2537], -"data-urls", -"decimal.js", -"saxes", -[1,2343,25218], -"symbol-tree", -"w3c-xmlserializer", -"whatwg-url", -[0,25222,25223,2514,2537], -[2,25261,25262], -"sugar-free", -[2,3192,25220], -[0,1104,1496,2012,2061,2070,2685,2741,4227,91,4597,4734,4747], -[0,22909,37149,22821,4865,37152,9129,6503,4874,28198,22900,18438,4891,28189,4892,1009,1011,1177,2899,4039], -"webidl2js", -[1,2343,25226], -[0,0,25227,2514,34352], -[0,2899,3188,2924,91,4874,4677,6503,37157,1584,603], -[2,25239,25240], -[1,2343,25234], -"browser-re", -[2,25230,5460], -"cssom", -"nwmatcher", -[0,25236,0,25241,2487], -"selenium-s", -[0,36805,37163,23423,17494,5337], -"tandalone", -[2,25235,25237], -[3,8647,12], -"li", -[0,188], -[1,2343,25246], -"13.0.0", -[2,5857,25243], -"@trapezedev/project", -[0,0,25247,25248,2523], -[0,53,61,71,4851,87,4856,6503,4874,1011,1191,1195,18571,1429,1628,1177,37170,2899,3951,4039,4042,4045,4069,4421,4469,91,4533,188,4634,4645,19469,4646,2924,4677], -[0,188,1227,1172,91], -[0,25260,25258,2514,34352], -[2,5051,25257], -"results-interpreter", -"5.2.0", -[2,5857,25252], -"unicode-1", -"1.0.0", -[2,25254,25255], -"lice-ansi", -[0,53,68,5611,37178,15273,19181,442,5245,1006,4874,5254,1009,1011,7677,23203,1177,19492,1945,1953,19623,1955,1982,17310,1894,4474,1531,91,1983,1984], -"splash screen", -[0,1676,1994,1996,2000,19186,4135], -[3,225,10], -"5/blanditiis-numquam-expedita-neque", -[1,2343,25301], -"stylish", -[1,2343,25267], -[2,25303,25304], -[0,0,25268,25270,2523], -[0,1397,1192,188], -"deeks", -[0,188,6609,2999], -[1,2343,25273], -"doc-path", -[0,25274,25275,25278,2487], -[0,37192,37049,37190], -[0,24226], -"json2csv", -"csv2json", -[0,2679,23932,37202,1932,188,6284], -"csv-2-json", -[3,25219,12], -[1,2343,25282], -[0,25283,25286,2514,2537], -[0,1437,2570,33215], -[2,25280,25285,25288], -[3,780,9], -[0,53,87,37211,1006,32109,5087,13204,37213,37214,1195,37215,1567,1628,2092,2651,1192,2832,2990,37217,3144,3177,16581,11801,3618,1894,3754,37220,4227,4307,4333,4334,4337,4468,4469,91,4027,188,4633,2924,4677,4681,4689,19235], -[1,2343,25289], -"aut-officiis-quae", -[0,0,25290,25291,2537], -[0,5087,4874,1192,3951,4042,4468,91,188,4629], -[0,188,91,4636], -"milliparsec", -[1,2343,25295], -"sort-on", -[0,25299,25300,2514,2523], -"@typ", -"icode/eslint-config", -[2,25296,25297], -[0,5216,28126,37049,30206,1457,2856,37096,3090,3189,30230,3510,3530,15451,27921,29161,30959,4745], -[0,104,31940,8648,811,816,6373,10615,33179,37232,20374,29891,11016,17494,34157,5337,11018,25092,13393,1549,1759,37235,17850,2559,3294,37236,32977,4039,4042,4076,1531,4493,1983,188], -[0,25305,25306,2514,34352], -[1,2343,25412], -[3,25284,13], -"oloremque-voluptas-facere-nemo", -[0,2570,3008], -[0,1175,1193,1240,1567,1192], -[2,25280,25391], -[1,2343,25309], -[0,25310,0,25311,2537], -[0,37247,2591], -[0,188,4643], -"0.0.0", -[2,25254,25312], -[1,2343,25315], -[0,25316,25317,2514,4139], -[0,37049], -[0,188,1192,1437,2020,21665,1177,4042,4135,2026,2924,1836,2151,1610,3758,4614,1193,1628,91,4634,53,4874,1195,37253,4640,87,17494,3957,15134,4073,4261,6373,37170,4679,4684,811,1567,816], -[1,2343,25319], -[0,25320,0,25321,2523], -[0,37258], -[0,614,888,37260,2150,4647,37261], -[1,2343,25323], -[0,25324,25325,2514,2537], -[0,9129,18704,20960,3181], -[0,5087,4874,2070,1192,3144,4039,4468,91], -[1,2343,25327], -[0,16409,25329,25330,2537], -[2,2842,24077], -[0,192,5467,1389,1527,1652,2675,1192,4535], -[0,4649,3497,89,2731], -[1,2343,25332], -[0,25334,0,25335,4139], -"meriyah", -[0,37277,3183], -[0,614,6435,2150,1586], -"jsonparse", -[1,2343,25338], -[0,25339,25340,25341,2487], -[0,15642,1389,1457,15016,37284,4431,1695], -[0,1377,3188,4237,4389,4535,37286], -[0,1389,25429,2282,6374,6147,1388], -[1,2343,25348], -"jws", -"lodash.i", -"ncludes", -[2,25344,25345], -[2,3045,19366], -[0,25354,12529,25356,2537], -"integer", -[2,3045,25349], -"lodash.isn", -"umber", -[2,25351,25352], -[0,33304,26786,1149,37294,33313,37297,33328,33329,37298,37300], -"lodash.once", -[0,33359,3469,3259,14873,1552,3230,37303,4651,4104,33365], -[1,2343,25358], -[0,25359,25360,25367,4139], -[0,1137,1149,1209,3188,3760,705,37308], -[0,37313,1429,1431,1512,18192,2026,2061,2323,37315,2384,2419,2463,2590,2659,34317,2759,2899,37316,3297,37317,4089,37320,37324,37325,4547,3348,4747], -[2,25362,25364], -[3,32971,13], -"@jspm/generator", -"phases", -"fu/eslint-config", -[2,13179,25365], -[0,5472,13428,11132,13841,28522], -[1,2343,25369], -[0,25371,25373,25374,2537], -"webdav", -[0,37331,37332,37334,37335,37336,37337,37339,37342,37344,37345,37347,37350,37352,37355,37358,37361,37363], -"states", -[0,37365,1192,1177,37366,9422,4468,1894,1317,91,5087,2787,5366,37368,1938,19956,1895,37371,1011,37374,1009], -[0,37376,17626,8172], -"dotenv-local", -[2,28322,364], -"lie", -[1,2343,25381], -"jszip-utils", -[3,21510,13], -[0,25384,11736,25385,4139], -"versionify", -[2,25380,25382], -[0,37390,37393,1327,1394,37394,37397,37398,37401,37404,37408,4747], -[0,4653,4990,200,37410,9420], -"deflate", -[1,2343,25389], -"inflate", -[0,25390,25392,2514,2443], -[0,19611,1006,8818,37424,37427,37429,1082,25361,1393,37433,1835,37014,1994,2018,20575,2215,9506,20465,3173,23175,4121,4388,4409,33215,4695], -"quisquam-quod-ab-aut", -[0,53,90,107,34765,25376,20577,8780,5087,7746,28919,4874,25422,37436,1195,37437,37438,1509,1593,1622,1628,1668,1856,4913,1177,20281,2092,2135,2203,37439,2629,2675,2759,1192,21124,2774,2777,2784,2794,2843,2856,695,2969,2990,1209,3021,3144,25333,3177,21016,640,3421,3446,20085,1894,3717,3754,23738,3786,89,3824,30570,3978,9340,3988,3992,3999,4039,12936,4183,4294,4307,4072,4426,4441,4452,4469,91,4549,4027,37440,37441,4677,37442,4746], -[1,2343,25394], -[0,25396,25397,25398,2399], -"@diahkomalasarinpm/odio-facilis-beatae", -[0,4729,4200,1082,3456,1675,1525,1084,3527,2628,1874,37449], -[0,1700,1429,2323,1192,3190,1177,2205,3698,1593,1637,3561,2924,2098,3758,1461,1628,2338,3191,4027,53,1436,4677,1165,1178,1195,3060,4307,97,3057,37457,3618,22651,87,37453,4681,90,1210,1959,37458,4409,37451,37454,83,71,5757], -[0,2924,6374,4674,5260,4202,24095,9816,33126,37460,16660], -[1,2343,25400], -[0,25401,25402,25405,2399], -[0,1842,3932,1511,1525,2727,1615,2704,4689,37466,13077,29067,37449,37468], -[0,37472], -[3,1754,13], -"qjobs", -[0,2924,200,4989,1237,6996,5122], -"unit-reporter", -[2,25077,25406], -"cript-", -[2,25408,15473], -[2,2916,25409], -"timer-shim", -[0,25414,25417,25418,34352], -[1,2343,25419], -[0,3144,1511,3173,3440,3781,4121], -"spectacular", -"execution", -[0,2934,2611,1192,2020,2675,1622,1177,38,1544,1701,2026,2078,2203,2924,1894,1610,1699,4342,48,442,470,1193,91,53,4874,2092,2990,3400,2099,11485,6494,192,1953,27928,37480,4257,87,23531,7746,37482,1939,1942,1938,20281,1982,1895,1955,19344,5467], -[0,2924,2663,5001], -[0,25431,25433,2514,34352], -[1,2343,25567], -"os-shim", -[2,25423,25430], -"@types/x", -"karma-p", -"karma-plugin", -"reprocessor", -[2,25424,25426], -[3,14927,12], -[2,25428,25200], -"xhashjs", -[0,4729,3445,32876,34228,2026,33507,1457,9241,1511,11993,7798,1536,2215,4150,4121,37490,37491,37493,6494,37494,37499,37500,37503,2664,4679,1549,33189,37505], -[2,25280,25435], -[0,2611,1192,695,1082,2020,2675,37507,3144,1622,1177,3127,4039,1544,1593,2924,1894,3758,4342,48,1193,1628,2659,91,53,4874,2969,2990,3400,4677,1195,4307,4224,18052,4689,97,192,1953,3923,9252,27928,4257,87,23531,22102,4523,7806,8780,1939,1942,2651,12837,68,37508,37513,1938,20281,1895,2780,83,5467,13052], -[1,2343,25439], -"suscipit-assumenda-a-assumenda", -[2,2877,15473], -"browser-stack", -[2,25280,25442], -[0,25440,25441,25444,2523], -[0,4294,2626,37503], -[0,3421,2899,4193,1177,2026,2924,1894,4342,1955,4679], -"vitae-sequi-voluptas-a", -[2,25445,25446], -[0,2924,11498,6609,1237,37523,37525,2663,2026], -[3,25438,13], -"oluptatibus-vero-magni-rerum", -[2,29825,29840], -[1,2343,25449], -[0,25450,25451,2514,2523], -[0,4388,4695], -[0,841,4874,4891,37531,7858,1584,1700,1177,37534,1915,2092,2675,2990,3150,3697,1894,37535,89,4307,4484,91,1984,2924,4689], -[1,2343,25459], -"ibrik", -"ffee-preprocessor", -[2,23574,25454], -"karma-r", -"equirejs", -[2,25456,25457], -[0,25463,25464,25465,2523], -"karma-re", -"porter", -[2,25460,25461], -[0,2117,21520,5898], -[0,2675,4484,37542,2924,1894,91,37544,1006], -[0,2924,1698], -[1,2343,25467], -[0,0,25475,25480,2523], -"Safari", -" Tech Preview", -[2,25468,25469], -"TechPreview", -[2,25468,25471], -"IE", -"Chrome", -[0,1429,1177,1938,2899,3203,3275,2924], -"Chrome Canary", -"Chrome ", -"Headless", -[2,25477,25478], -[0,2924,13382,202,6374,11053], -"Chromium", -[1,2343,25483], -[0,0,25486,25487,2523], -"Firefox", -"Opera", -[0,1192,1177,2203,2924,2759,1894,1596,442,4227,91,5087,1953,27928,1939,1942,33002,1938,20281,1982,1895,1955,19344], -[0,2924,4227], -[1,2343,25489], -[0,25491,0,25494,2537], -[2,25764,25765], -[0,2215,1615,4449,3524], -"chai-fs", -"os-homedir", -[0,12197,29726], -[1,2343,25496], -[0,25497,25498,25499,4139], -[0,1401,1676,1856,37568,34639,37569], -[0,1400,2323,2447,2839,2272,4389], -[0,4699,14609,21302,37572,37573,6645,6761,20863,36,5576], -"@asdfgertyjhnpm/a-unde-explicabo-eaque", -"firefox", -[1,2343,25503], -[0,25504,25505,25506,2523], -[0,37578,37579,37581,37585,37586,37587,37589,37592,37594,37595,37598,37600,1676,1869,37602,37603,37606,37609,37612,37613,37615,3171,3441,37617,3756,25990,37619,3781,25996,34383,37623,35299,37624,37628,37631,37633,37636,37637,37638], -[0,53,68,5712,87,37641,1090,37644,25992,37646,1290,37647,1398,37648,1618,3588,1177,1903,1938,1953,1958,2099,37650,3486,37652,3767,4092,4131,4151,15039,20496,4387,4389,4409,15046,2924,4677,37654], -[0,37656,37657,1764,37658,37659,37663,37665,22115,37666,37616,37667,15247,37668,4702], -[1,2343,25508], -[0,25509,25512,25515,2399], -[0,1326,3263], -[2,25511,25517], -[3,25500,16], -[0,29569,4384], -"adapter", -[2,2877,25513], -[0,7734,37674,37675], -[1,2343,25518], -"nesciunt-molestias-reprehenderit-occaecati", -[0,25519,25520,2514,2523], -[0,2026,3368,4545], -[0,1506], -[3,25395,19], -[1,2343,25523], -[0,0,25524,2514,2537], -[0,1429,2297,2899,1177,4042,1894,2878,2900,1159,3734,37688,2881,2889,2912,2895,13867,19910], -[1,2343,25526], -[0,0,25527,25528,2487], -[0,4652,2070,10679,4030,2856,37693,2272,3188,37694,3460,1317,26825,4535,1389,3736,37320], -[0,37696,37698,14833,1862,6567,14834,14835,4706,1149,14629,6804], -[1,2343,25530], -[0,25531,6538,2514,2523], -[0,37703], -[1,2343,25533], -[0,0,25534,25535,2399], -[0,13896,1776,2899,3220,37708,37709], -[0,6574,29179], -[1,2343,25537], -[0,25538,25539,25540,4139], -[0,37715,13388,1149,2753,37716,37718,3923,18730,4252,20931,4715], -[0,48,53,87,37721,4874,37722,1148,37724,1177,37725,1192,4039,4238,34395,4431,37727], -[0,4709,2942,6807,30124,21111,1409,3533,3079,2041,1781,3101], -[1,2343,25542], -[0,25543,25545,25546,2487], -[0,37735,3429,20931,4715], -[3,2910,12], -[0,37739,37741,1429,1177,1954,2899,4039,7734], -[0,4709,37743,37744,37745], -[1,2343,25548], -[0,25549,25551,25552,2537], -[0,37716,3923,20931], -"safari", -[0,4874,1148,1173,1264,1693,1177,37721,2899,3421,4039,37727], -[0,4709,4714,37752], -[1,2343,25554], -[0,25556,25559,25560,2537], -"global-agent", -[0,37758,2070,1209,37759,4431,37760], -"al-agent", -[2,4865,25557], -[0,1429,2151,2759], -[0,1370,3383,6355,14510,1508,4796], -[1,2343,25562], -[0,0,16487,25563,2443], -[0,6940,37767,3924,37769,16580,37770,7295,2585,4718,4717,28734,4719], -[1,2343,25565], -[0,0,9264,25566,4139], -[0,4718,4719,5547,1671,6922], -[0,25576,25577,25578,34352], -[1,2343,25597], -"karma-br", -"ief-reporter", -[2,25569,25570], -"sourcemap-", -[2,21536,8754], -[2,25572,25573], -[2,12612,25574], -[0,16781,3714,10761,4695,37780], -[0,4874,4891], -[0,37783,37784,2924,37786,20164,37788,37789,37790], -[1,2343,25580], -[0,25581,25582,25583,2537], -[0,1110,4290,4294], -[0,1166,1437,1596,6474,3421,4481,1906], -[0,4719,6940,4720,6980,7152,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], -[1,2343,25585], -[0,25586,6538,25587,2487], -[0,19187,4174], -[0,37808,29999], -[1,2343,25589], -[0,0,25590,25593,2537], -[0,1317,1401,1177,1895,1955,2203,2899,3421,1894,34639], -[2,8652,2013], -"keydown", -[0,7299,7172,6761,6729,7057,6145], -"keyup", -"metakey", -"keyname", -[0,25599,25600,25601,34352], -[0,2342,2402,2457,2488,2531,2540,2540,2630,2488,2688,2488,2698,2737,2488,2775,2799,2818,2840,2939,3016,3110,3207,3247,3279,3307,3448,3515,3593,3631,3723,3782,3844,3879,3908,3929,3952,4006,4016,4096,4154,4203,4241,4263,4286,4308,4331,4348,4417,4444,4476,4506,4528,4573,4655,4673,4700,4743,4813,4953,4994,5004,5007,5013,5016,5019,5023,5028,5031,5034,5037,5041,5044,5052,5099,5134,5137,5141,5144,5150,5171,5174,5199,5203,5211,5231,5255,5266,5270,5289,5299,5289,5333,5360,5373,5379,5437,5486,5493,5516,5544,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5574,5566,5574,5566,5566,5566,5566,5566,5566,5566,5574,5574,5566,4286,5566,5566,5578,4286,5574,5566,5566,5566,5566,5566,5566,5574,5574,5574,5580,4286,5566,5566,4286,5566,4286,5574,5591,5599,5612,5624,5629,5635,4286,5643,5648,5665,5672,5574,5718,5723,5566,5566,5566,5578,5566,5566,5566,5566,5566,5578,5566,5566,5566,4286,5727,5566,5566,5566,5578,5566,5566,5566,5578,5566,5574,5730,5848,5870,5886,5894,5899,5902,5906,5908,5912,5919,5965,5985,5992,5999,6050,5566,5566,5566,5566,6069,5566,5566,5566,5566,5578,5574,5566,5566,5566,5566,5566,5566,5566,5566,4286,5566,6088,6101,6115,6119,6124,6131,6152,6159,6163,6172,6179,6184,6187,6193,6201,5566,5580,6206,6210,5578,5574,6219,5299,6222,6227,6232,6236,6239,6242,6246,6250,6254,6257,6261,6265,6274,6278,6288,6292,6304,6313,6344,6357,6360,6365,6368,6402,6406,6410,6416,6427,6431,6440,6444,6483,6535,6555,6559,6571,5299,6612,5299,5635,5299,6630,6664,6676,6684,6719,6745,6772,6823,6852,6886,6906,6924,6942,6989,7012,7043,7088,7112,7136,7139,7143,7160,7187,7207,7237,5566,5566,5574,5566,5574,4286,5566,5566,7257,5566,5566,5727,5566,4286,5566,5566,5566,5566,5566,5566,7257,5566,5578,5578,5566,5566,5566,7264,7271,7278,7294,7307,7323,7327,7332,7338,7343,7348,7357,7363,7368,7373,7380,7385,7391,7396,7405,7410,7414,7419,7424,7430,7437,4286,4286,5574,7442,7447,7450,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5574,5566,5574,5566,5566,5566,5566,7452,7457,7462,7473,7478,7483,7488,7493,7498,7502,7506,7510,7513,7516,7538,7541,7544,7548,7552,7556,7560,7564,7568,7571,7574,7257,7578,7587,7592,7600,7629,7654,7694,7698,7702,7711,7736,7756,7767,7772,7777,7782,7802,5566,5566,5566,27071,5574,4286,5578,5566,5574,5566,5566,27071,4286,7832,7848,7861,7874,5727,7882,7885,7901,7916,7925,7930,7947,7953,7960,7965,7968,7972,7977,7981,7984,7987,7991,7996,7999,8004,8008,8012,8015,8020,8024,8027,8030,8035,8040,8045,8051,8054,8058,8062,8066,8070,7965,8075,8081,8086,8091,8100,8104,8106,8128,8143,8178,8195,8207,8213,8223,8227,8234,8237,8242,8258,8266,8270,8281,8289,8311,8318,8351,5574,8366,8370,8374,8378,8382,8385,8388,8394,8398,8403,8407,8412,8416,8445,8450,8455,8460,8463,8465,8467,8470,8473,8478,8481,8485,8487,8490,8493,8497,8500,8502,8507,8517,8542,8559,8564,8575,8578,8590,8594,8598,8602,8621,8637,8642,8681,8685,8690,8698,8706,8717,8725,8731,8759,8783,8796,8812,8815,8833,8844,8854,8857,8865,8867,8872,8104,8872,8874,8879,8884,8898,8929,8940,8963,8972,8977,8988,8104,8865,8865,8104,7965,7965,8992,8994,8996,9001,8996,9003,9014,9018,9022,9027,9032,9037,9042,9050,9058,4286,8706,8865,9063,9068,9079,9084,8865,9092,9101,9108,9137,9142,9149,9154,9158,9175,9180,9189,8996,9200,9205,9223,9259,9266,9275,9285,9290,9298,9306,9349,9372,9386,9389,9392,9411,34415,9438,9445,8872,9467,9522,9528,9532,9540,9545,8104,9585,9592,9599,9604,8706,5574,9609,9614,9619,9633,9639,9643,9650,9656,9664,9668,9672,9683,9690,9696,9701,9709,9717,9727,9754,9758,9763,9798,9822,9831,9882,9886,9889,9894,9898,9902,9908,9912,9917,9922,9927,9930,10085,10111,10121,10221,10287,10316,10322,10329,10334,10341,10359,10362,10379,10385,10391,10411,10421,10433,10437,10440,10449,10453,10457,10461,10465,5289,10470,10474,10478,10482,10486,10490,10494,10499,10502,10507,10512,10516,10519,10524,10529,10532,10537,10542,10547,10552,10558,10561,10566,10571,10577,10582,10585,10589,10610,10620,10644,5574,10666,10671,10694,10715,10767,10778,10794,10801,10822,10857,10872,10891,10905,10910,10919,10928,10953,10967,10980,11001,11012,11023,11030,11044,11050,11058,11062,11090,11099,11115,11121,11140,11149,34415,11157,11160,11205,11222,11237,11250,11309,11353,11386,11403,11410,11427,11447,11458,11460,11464,11468,11474,11491,11495,11505,11511,11529,11541,11545,8992,11549,11552,8865,11559,11563,8865,11568,11573,11577,11582,11587,8706,11602,11611,11632,11643,11647,11652,11657,11661,11665,11670,11675,11679,11683,11688,11693,11698,11703,11707,11712,11717,11721,11726,11730,11734,11739,11744,11749,11754,11759,11764,11769,11774,11779,11782,11786,11791,11816,11822,11826,11831,11845,11850,11855,11860,11872,11888,11902,11913,11915,11920,11949,11957,11965,11968,11972,5578,11981,11986,11992,11998,12006,12017,12022,12029,12031,12035,12039,12051,12069,12098,12109,12114,12138,12146,12150,12156,12174,12211,12225,12238,12250,12256,12261,12266,12272,7257,12280,12291,12298,12308,12341,12362,12366,12376,12379,12383,12390,12408,12430,12465,12480,12484,12488,12493,12497,12502,12506,12511,12516,12521,12527,12531,12538,12543,12548,12553,12559,12563,12117,12573,12579,12584,12595,12623,12628,12633,12638,12643,12647,12657,12664,12670,12673,12683,12697,12765,12770,12805,12819,12828,12843,12855,12859,12863,12868,12873,12876,12885,12891,12897,12903,12919,12945,12949,12955,8992,12985,13000,13010,13015,5574,13020,13026,13032,13044,13074,13111,13147,13156,13173,13211,13246,13251,13255,13270,13292,8027,8027,13299,13308,13315,13323,13331,13341,13348,13353,13360,13366,13376,13383,13398,13409,11913,13423,13430,13434,13439,13450,13469,13534,13541,13561,13577,13585,13595,13601,5566,13606,13622,13629,13636,13642,13646,13650,13660,13677,13683,13686,13700,13706,13715,13720,13727,13734,13743,13749,13762,13782,13794,13801,8706,13808,13819,5574,13826,13854,13863,13886,13902,13906,13911,11913,13919,13932,13937,13940,13946,13950,13955,13960,13966,13971,8872,13975,13978,13989,13992,14002,14007,14015,14019,14032,5727,14048,14054,14061,14068,14071,14075,14088,14095,14101,14110,14115,7930,14120,14127,7930,8865,14138,14142,14147,14150,14155,14172,14202,14232,14236,14250,14258,14266,14272,14279,14285,14289,14294,14298,14304,14313,14322,14327,14330,14340,14346,14351,14360,14363,14368,14377,14383,14391,14397,14402,14411,14424,14437,14470,14498,14513,14522,14528,14532,14537,14542,14598,14612,14625,14633,14650,14659,14665,14703,14725,14733,14742,14752,14762,14766,14778,14788,14793,14797,14802,14806,14811,14815,14820,14825,14841,14851,14859,14865,14876,14882,14887,14893,14899,14906,14912,14916,14920,14929,14936,14948,14956,14965,14974,14987,14996,15004,15049,15066,15074,15081,15091,15098,15109,15118,15123,15142,15147,15154,15158,15166,15171,15178,15184,15189,15198,15205,15211,15216,15226,15233,15241,15249,15255,15265,15274,15284,15296,15299,15313,15325,15330,15335,15343,15350,15357,15364,15369,15378,15382,15388,15394,15404,15410,15416,15430,15435,15443,15456,15503,15517,15521,15528,15542,15564,15589,15628,15640,15650,15655,15662,15727,15732,11913,8872,15737,8872,15740,15749,15752,15758,15766,15780,15785,15806,15811,15819,15824,15829,8706,15835,15845,15851,15857,15860,15865,15868,15895,15901,15914,15919,8994,8872,15923,15934,15939,15943,15947,8706,15952,15959,15966,15971,15975,15981,15987,15993,16011,16017,16024,16029,16034,16038,16043,16047,16051,16059,16067,5574,16072,16084,16098,16103,16119,16125,16131,16135,16139,16155,16158,16164,16173,16177,16185,16192,16197,16203,16208,16213,5727,16217,16222,16227,16241,16253,16283,16287,16292,16298,5574,16303,16312,16318,16326,16332,16335,5578,16338,16346,16353,16357,16362,8996,16367,16371,16377,16383,16392,16406,16413,16419,16428,16437,16451,16457,16464,16468,16472,16489,16496,16500,16507,4286,16516,4286,16522,16538,16541,16548,16552,16567,16586,16592,16616,16624,16633,16652,16665,16669,16677,16680,16685,16698,16704,16707,16717,16732,16756,16764,16788,16797,16802,16812,16816,16834,16846,16849,16864,16871,16883,16890,16896,16902,16907,16913,16924,16929,16942,16948,16958,16963,16970,16975,16979,16985,16996,17004,17015,17026,17032,17038,17053,17061,17066,17072,17079,17087,17105,17117,17124,17135,17139,17145,17152,17156,17161,17172,17177,17187,17200,17207,17226,17230,17236,17246,17254,17261,17268,17284,17292,17325,17334,17341,17347,17350,17361,17386,17419,17430,17433,17443,17451,17465,17472,17482,17489,17505,17511,17518,17524,17533,17541,17548,17555,17560,8104,8865,8992,17569,17574,8865,17588,17598,17604,17611,17633,17654,17685,17719,17741,17745,17749,17759,17773,17777,17781,17789,17795,17799,17809,17815,17821,17828,17839,17844,17856,17862,17868,17871,17879,17886,17891,17937,17952,17955,17958,17961,17967,17970,17980,17987,18013,18015,18024,18027,18033,18039,18053,18058,18064,18067,18077,18083,18086,18091,18095,18099,18107,18117,18122,18128,18134,18140,18149,18154,18160,18165,18169,8872,18178,18188,18194,18202,18208,18213,18218,18223,18242,18247,18262,8865,18270,18274,18293,18298,18303,18307,18311,18366,18399,18404,18410,18418,18441,18449,18453,18466,18469,18472,8872,18478,18492,18507,18530,18538,5574,18543,18548,18556,18560,18588,18604,18608,18623,18625,18631,18650,18653,18665,18676,18682,18724,18755,18781,18808,18842,18847,18850,18874,18882,18893,11458,8865,18899,18911,18915,18919,18923,18929,18934,18939,18946,18949,18955,18960,18972,18975,18999,19010,19014,19023,19027,19032,19039,19063,19085,19090,19104,19110,19115,19134,11913,19140,8865,19142,19149,19154,19159,34415,19165,19174,19191,19200,19215,19233,19239,19248,19255,19260,7965,19268,19275,19279,19290,5578,19293,19298,19305,19323,19329,19341,19346,19356,19362,19367,19372,19379,19387,19391,19394,19398,19410,19420,19427,34415,19432,19452,19456,19460,19483,19487,19501,19508,19518,19532,19543,19550,19561,19594,19600,19633,19643,19654,19660,19662,19667,19674,19680,19685,19694,19699,19703,19714,19718,19723,19738,19743,19752,19765,19772,19781,19789,19793,19804,19809,19814,5580,19817,19822,19832,19846,19854,19857,19868,19873,19880,19887,19891,19897,19901,19916,19924,19929,19933,19936,19952,19960,19969,19979,19985,19994,20002,20007,20022,20027,20036,20041,20053,20058,20067,20071,20079,20087,8872,20094,20101,20109,8872,20114,20125,20129,20134,20141,20148,20155,20157,20161,20166,20177,20196,20209,20217,20225,20233,20236,20240,8865,20249,20255,20260,20270,20277,20287,20292,20297,20302,20310,20318,20323,20337,20345,20358,20363,20381,20388,20391,20397,20404,20411,20431,20440,20456,20462,20487,20498,20503,20509,20512,20532,20555,20560,20569,20579,20585,20591,20596,20603,20605,20608,20615,20617,20629,20766,8872,20770,20775,20780,20783,20787,20792,20799,20806,20810,20814,20818,20860,20867,27071,20880,20900,8872,20915,20926,20936,20945,20954,20961,20965,20971,20976,20988,20994,21005,21010,21018,21027,21061,21065,21070,21078,21083,21088,21092,21103,21113,21126,21132,21139,21154,21170,21184,21192,21197,21202,21205,21207,21209,21212,21205,21217,21220,21225,21232,21238,21241,21247,21251,21256,21258,21262,21266,21271,21275,21301,21311,21316,7257,21320,21325,21331,21336,21344,21349,21356,21362,21368,21376,21391,21400,21410,21415,21422,21425,21431,21435,21446,21453,21462,21472,21475,21489,21494,21503,21511,21517,21524,21530,21534,21546,21553,21558,21565,21589,21598,21612,21615,21628,21634,21652,21670,21674,21690,21694,21706,21711,21717,21724,21729,21739,21744,21755,21769,21774,21780,21784,21787,21794,21799,21805,5566,21811,21813,21818,21824,21829,21838,21842,21848,21853,21859,21864,21870,21874,21878,21882,21887,21892,21899,21904,21909,5574,21914,21919,21923,21925,21932,21938,21949,21954,21959,21963,21968,21975,21985,21989,21998,22003,22012,22017,22021,22026,22030,22040,22045,22050,22069,22077,22082,22086,22097,22105,22112,22119,22125,22131,22136,22141,22149,22154,22159,22161,22171,22173,22177,22184,22187,22194,22200,22206,22210,22215,22225,22233,22238,22243,22252,22259,22262,22266,22271,22276,22284,22288,22299,22307,22311,22318,22323,22328,22335,22340,22345,22350,22355,22364,22373,22384,22389,22394,22399,22406,22413,4286,22419,22424,4286,22433,22444,22450,22456,22461,22469,22474,22480,22484,22490,22494,22508,22517,22527,22532,22538,22542,22547,22551,22560,22566,22572,22578,22585,22592,22598,22605,22609,22614,22619,22624,22629,22634,22644,22650,22654,22659,22663,22669,22677,22681,22685,5580,22690,22693,22702,9001,11913,22710,22717,22723,22731,34503,22737,21998,22740,22747,8872,22751,22757,22761,22765,22777,22788,22794,22802,22806,22810,22816,22825,22831,22836,22852,22859,22866,22870,5574,22878,22884,22890,22893,22898,22905,22911,22171,22917,22927,22940,22945,8872,22951,8872,22955,22964,21489,22981,20615,8865,22988,23002,23008,23014,23018,23022,23028,8865,23033,23037,23047,8706,23087,23129,23147,11913,23152,23159,23171,23176,23182,23195,23199,23204,23209,23213,23217,8865,8872,23222,23228,8706,23231,23233,23242,23265,23272,23284,23297,23315,23320,23327,8104,23334,23346,23353,8872,23364,23369,23374,23379,23381,23385,23418,23424,23427,23431,23458,23463,23474,23484,23487,23491,23495,23501,23506,23510,23515,23521,23532,23546,23550,23555,23567,23577,23583,23589,23594,8706,23610,8865,23614,23620,23627,23633,23231,8992,23642,8872,23655,23662,23672,23677,23694,23701,23713,23718,23731,23735,8992,23746,23761,23763,23770,23772,34503,23776,23781,23788,23792,23796,23804,23807,23821,23825,23835,23840,23846,23850,23854,23861,23866,23882,23887,23893,23903,22159,23940,23946,23954,23963,23972,23983,23988,23997,24001,24008,24014,8725,24021,24026,24031,24040,24048,24052,24055,24060,24063,24067,24074,24086,24099,24104,24108,24111,24124,8872,11458,24132,24143,7965,24146,24149,24170,24176,24180,24190,24196,24200,24207,24216,24228,24260,24284,24296,24304,24308,24314,24323,24361,24368,24375,24380,24407,24413,24422,24426,24431,24436,24444,24448,24457,24461,24468,24475,24478,24481,24489,24497,24500,24505,24510,24516,24527,24532,24546,24551,24555,24567,24589,24605,24611,24614,24628,24635,24639,24644,24650,24658,24662,24670,8706,24673,24677,24682,24685,24695,24700,24704,24709,5727,24718,24736,24744,24749,24756,24758,24764,24769,24773,24790,24817,24835,24844,24866,24911,24965,25013,7930,25037,25045,25052,25064,25080,25095,25100,25111,25120,25134,25152,25174,25185,25198,25208,25214,25225,25229,25242,24195,25265,25271,25281,25287,25293,25263,25308,25314,25318,25322,25326,25331,25337,25342,25357,25368,11458,7930,23147,25378,8854,11458,25387,25393,25399,25302,25413,25434,25448,25452,25466,25482,25488,25495,25502,25507,25516,25522,25525,25529,25532,25536,25541,25547,25553,25561,25564,25420,8027,25579,4286,25584,25588,25568,25602,25610,25616,25621,25641,25644,25647,25656,25662,25672,25680,25686,25695,25702,25706,25713,25722,25729,25734,7257,25738,25746,25751,25756,25768,25773,25778,25787,25800,25808,25818,25830,25834,25859,25869,25883,25905,25909,25916,25934,25940,25953,25961,25976,25991,26003,26019,26023,26031,26038,26042,26047,26056,26063,26068,26076,26080,26088,26102,26115,26134,26140,26148,26152,26162,26167,5299,5299,5299,5635,5299,26191,26191,26195,26200,26214,26221,26229,5635,5635,5299,26238,5574,4286,5574,5578,26243,5574,5580,26250,26255,26266,26270,26277,26281,26284,26293,26297,26303,26309,26313,26317,26321,26327,26331,26336,26341,26348,26356,26363,26369,26381,26389,26395,26405,26452,26476,26498,26502,26518,26523,26527,26538,26545,26558,26561,26582,26589,26594,6236,26599,26602,26623,26638,26642,26650,26656,26667,26672,26691,26701,26724,26730,26735,26745,26751,26758,26778,26785,26791,26797,26803,26814,26820,26826,26831,26841,26853,26860,26864,26879,26889,26893,26899,5727,26912,26928,26948,26953,26957,26961,11797,26967,26998,27004,27011,27013,26994,27027,27031,27021,27035,27041,27044,27048,27051,27055,27059,27065,27038,27079,27088,27097,27121,27128,27132,27140,27144,27148,27153,27159,27172,27179,27183,27192,27199,27207,34417,27211,27215,27218,27229,27245,27250,27270,27279,27288,27296,27306,27310,27331,27351,27364,27369,27373,27382,27397,27402,27413,27417,27422,27434,27437,27453,27466,27516,27528,27536,27545,27581,27586,27589,27595,27598,27604,27611,27618,27627,27665,27672,27677,27704,27734,27748,27755,27770,27889,27925,27935,27947,27956,27973,27979,27988,27996,28003,28013,28016,28020,28031,28054,28063,28071,28083,28097,28105,28108,28113,28127,28140,28160,28173,28186,28213,28218,28252,28281,28295,28298,28302,28308,28316,28319,28328,28334,27004,28351,28410,28431,28451,26701,28520,28530,28545,28552,28562,28584,28602,28630,28663,28668,28683,28700,26961,28759,28765,28765,28328,28774,28808,28328,28822,28833,28836,28851,28871,28918,28995,29052,29068,28334,29078,29164,29164,29172,26961,29180,29217,29230,29272,29275,29289,29337,29473,29496,29523,29548,29613,29705,29734,29871,29982,30002,30185,30205,30250,30474,30500,30528,30557,30598,30615,30782,30800,30827,30910,30931,30938,31020,31216,31274,31387,31487,31513,31532,31630,31664,31709,31738,31753,31758,31763,31785,31817,31853,31927,31938,31984,32340,32496,32532,32547,28833,32556,32748,32781,32809,32862,32887,32921,32936,33045,33079,33092,33104,33109,33218,31274,33225,33240,33248,33279,33281,33375,33478,33484,33501,33563,33630,33670,33696,33719,33773,33781,33788,33814,33833,33858,33866,33906,33924,33933,33956,33961,34004,34021,34047,34059,34075,34091,34101,34108,26961,28328,34122,34133,34142,34147,34160,34185,34195,34211,34214,34249,34253,34258,34296,34325,34330,34333,34336,34341,34348,28663,34353,34388,27071,34420,19603,34444,34450,34454,34456,34460,34469,34488,34499,34506,34454,34526,34535,34544], -[0,6870,1362,1437,1448,1676,37818,2754,2757,3427,6530,37821,37823], -[0,1596,2759,2899,3202,16112,4039,4193,4255], -[0,5592,1448,37826,15514,6956,5122], -[1,2343,25603], -[0,25604,25606,25608,4139], -[0,2202,37833,37834,1695], -"@keyv/serialize", -[0,2133,3697,4387,4389], -"keep", -[0,4731,27,4738,5038,1389], -"timekeeper", -[1,2343,25612], -"key-value", -[0,25613,25614,25615,2487], -[0,20689,37845,37846,4718,37844,37841,37843], -[0,18225,1082,2832,2899,4193,1177,37853,1330,1787,1525,91,4874,37852,37850,1937,17585,37856], -[0,28860,28861,3354,37858,37859,20707,1641,37860,37861,37862,26666,21604], -[1,2343,25617], -[0,25618,25619,25620,2537], -[0,4113], -[0,1175,1195,1264,28713,1387,37868,37869,35573,1503,1596,1610,1177,37870,2759,2765,1192,2774,7060,3363,3400,3725,91,37871,2282,2924], -[0,37873,6523,676,6671,1781,24586,37874,37875,37880,37882,20398,20400,4734,4735,353,8535,37883,22180,6270,37884,37885,37887,1644,57,7119], -[1,2343,25622], -[0,25626,25630,25637,4139], -"escalade", -"pg-connection-string", -"tarn", -[0,4113,4736], -[3,5536,10], -[2,25627,4945], -[2,11836,4246], -[0,1596], -"-in-order", -[2,1436,25631], -"oracledb", -"pg-query-stream", -"tedious", -"toxiproxy-node-client", -[0,6523,1781], -"postgres", -"cockroachdb", -[2,3766,9381], -[1,2343,25642], -[0,25643,15925,2514,2537], -[0,2607,2812,37899], -[1,2343,25645], -[0,0,10710,25646,2537], -[0,6523,4736], -[1,2343,25653], -"smol-toml", -"summary", -[3,8555,11], -[2,25650,1851], -[2,4764,25651], -[0,0,25654,25655,2537], -[0,1192,4753,37908,1177,3363,37909,1894,2188,3400,1926,16638,1895,1955], -[0,12616,965,6523,57,5284,37911,37912], -[1,2343,25657], -[0,0,0,25659,2537], -"analyze", -[0,4731,6662], -"dead code", -"entropy", -[1,2343,25665], -"maintenance", -"members", -[0,25666,25668,25670,2537], -[0,3157,1144,1177,2205,2203,1894,2185,4507,3170,1595,19595,3505,2191,1953,29490,1920,4523,25803,1958,1982,13789,1895,24166,32525,1955,7681,19344,1011,15290,22937,19492], -"unreferenced", -[0,3377,1166,2020,2675,1680,13786,2990,5601,192,15600,8778,3390,3708,5467,17312], -"unresolved", -[0,13326,200,1906,19347,19350,19353,1501,19269,590,671,9654,2272,19270,1177,2649,19271,4255,15717,4354,16790,19273,18443,2446,2869,5284,91], -"tldts", -[1,2343,25673], -[0,0,25674,25676,2537], -[0,10780,1854,37928,2899], -"lodash.sortby", -[0,4739,6523], -"explorer", -"opera", -"samsung-internet", -[1,2343,25681], -[0,25683,25684,25685,2399], -"uc-browser", -[0,5663], -[0,48,53,37936,83,87,37937,1198,37940,37941,1389,1177,2765,2835,3421,37945], -[0,1108,6961,6607,3656], -[1,2343,25690], -"stream-co", -[2,25687,11532], -[2,25521,25692], -[0,25691,25693,25694,2537], -[0,1525,7606], -"praesentium-accusamus-maiores-autem", -[0,3421,1676,2899,1177,1596,4535,1389], -[0,20215,4741,2574,36796,6847,1965,1867,10368,7131,1155,1936,14419,37953], -[1,2343,25697], -"delegates", -[0,0,25698,25701,2537], -[0,37958,1091,3539,4094,4733], -"http-assert", -[2,17007,23905], -[0,37960,37963,37968,37971,37972,6649,37973,2218], -[1,2343,25703], -[0,0,9264,25704,2399], -[0,2051,1698,14690,15767,3048,4552], -[3,21482,15], -[1,2343,25708], -"gen-", -[0,0,25711,25712,2523], -"esm-wrapper", -[2,25707,25709], -[0,8648,4856,5245,37983,6494,37984,4865,13204,6503,4874,37987,4891,9241,1009,1011,1429,1610,1693,1177,1942,2026,28930,2070,2832,2899,3257,3339,3421,4230,4232,4469,91,4577,2924,4677,4729,37988], -[0,200,6876,7201,28770,4166,21000,592,37991,7009,6621,13005,35621,4744], -[1,2343,25714], -[0,0,25715,25719,4139], -[0,1192,4484,1177,4042,1894,442,1193,2064,91,53,5087,4874,2797,87,4523,5583,6373,1895,10817,37998,5889], -"-body", -[2,4860,25716], -"co-body", -[0,6775,57,5374], -"-router", -"__router", -[1,2343,25724], -"urlencoded", -[0,25725,25726,25727,2399], -[0,2070,1139], -[0,1317,15052,2768], -[0,4745,1781,38007,38008], -"copy-to", -[1,2343,25730], -[0,25731,25733,20172,2523], -[0,1495,25623,12929,4290,26574,4748], -"bodyParser", -[0,68,92,4856,6503,4874,1009,25912,1414,1429,1437,25796,1610,1615,1177,1955,2321,29551,2899,4039,91,4707,38017], -[1,2343,25735], -[0,0,25736,25737,2537], -[0,68,92,4856,6503,4874,1009,1011,1414,1429,1610,1177,2321,2899,3758,4039,4146,4261,91], -[0,7233,57,4747,1523,200,7119,5675,7058,7233], -[1,2343,25739], -[0,25740,25741,2514,2537], -[0,38035,1282,1413,1420,1437,25872,1525,38036,1676,19400,1687,2195,2714,2731,10911,2975,16450,3181,3188,3309,640,3434,28142,3917,38037,705,38040,4039,38041,4135,4296,4390,4393,4572,25898], -[0,1175,1178,1193,1195,14220,1255,1267,38044,38047,1268,1272,1291,1177,38050,18229,38052,1922,38055,1935,38058,1959,2126,2323,2338,2464,2479,2541,2544,1192,2843,3211,1241,2924], -"humanize-", -[2,25742,6988], -"-counter", -[2,22255,25744], -[1,2343,25747], -[0,0,0,25750,4139], -"koa-compress", -[3,2946,9], -[0,4749,4752,6435,4166,3378,34652], -[1,2343,25752], -[0,25753,25754,25755,2443], -[0,13581,27999], -[0,1329], -[0,4560,2056,3101,12666,2090], -[1,2343,25759], -"mounting", -"@drftgyhuji7npm/repellendus-eum-et-itaque", -[0,25760,25761,25767,2523], -[0,38073,38076,38077,38078,38080,1144,1437,1525,1676,2020,38082,2205,38083,20786,3021,38084,38086,4135,4207,4558,38088], -[0,5245,5139,4874,5254,24719,1414,1597,1177,38092,2151,1776,1894,3708,4039,4193,38093,4294,91,21328,21329], -[2,29234,32235,1524], -"@ladjs/env", -[3,25689,31], -"sint-dolorem", -"@enact/core", -[0,5001,3304,6147,4990,200,8632,4989,8623,1179,8635,1896], -[1,2343,25769], -[0,25770,25772,25767,2487], -[0,1437,1676,2020,4135,3183,3021,22776,4183,4425,2845,38086,2960,38101,27168,5139,38077], -"koa-send", -[0,1797,1776,4193,1984,1597,2720,1894,4507,9741,91,21329,5245,6513,5254,21328,24719,7892,38073,23452,38078,8818,4754,7677,3708], -[1,2343,25776], -"sendfile", -"@envelop/core", -[0,0,8134,25777,2537], -[0,4757,38108,27631,200,3741,2649,6847,8618,4938,38109,1644,38111], -[1,2343,25779], -[0,25783,25784,25785,2443], -"is-warlock", -[2,3341,25780], -"reds", -[0,3157,3445,1437,4761,1209,2089,25294,38117,38118,23878,38121,38122,1543,1615,38123,25555,9478,38080,15826,38126,38073,38127,27168,4562,38131,4754], -[0,1414,1906,3297,4193,38092,2203,1596,38133], -[0,13326,200,6400,5001,3304,6147,5122,4990,8632,2873,8635,1179,8623,1896,8310], -"webOS", -[1,2343,25788], -[0,0,25795,25799,2537], -"bossy", -[3,23453,15], -[2,25790,5592], -[2,9146,5592], -"find-rc", -"will-call", -[0,38139,1104,1166,1437,1474,1511,2929,27127,3527,4481,1906], -"cpr", -"lab-event-reporter", -"@ionic/cli", -[0,1473,7208,1512,7009,7201,200,1871,1111,590,592,6621,6983,4166,4744,3073,6807,6876,2585], -[1,2343,25801], -[0,25805,3293,25807,2487], -[2,29611,5457,1805], -[2,2102,17239], -[2,25806,553], -[0,1525,2720], -"@envelop/", -[0,4760,5592,36,5995], -[1,2343,25811], -[2,556,1098], -"md-to-pdf", -[0,25812,25815,25817,2537], -[0,3157,1437,1471,4726,1109,4294,1110,4290,38150], -"semver-", -"semver-regex", -[0,1906,2899], -"latest", -[0,13326,200,8635,4758,38152,38153,5403,6458,1111], -[1,2343,25820], -[2,25829,6811], -[0,15916,25827,25828,2523], -"autodoc", -"deft", -[2,2767,1149], -"race", -"race.js", -[2,4284,176], -[0,4170,4135,2899], -[0,38160,4762,38161,38162,38163,970,10770,11154], -[3,24329,21], -[1,2343,25831], -[0,0,0,25832,2443], -[0,91,2844,7020,998,6591], -[2,556,25877], -[1,2343,25839], -"@mapbox/", -"cript-tags", -[2,1967,25836], -[2,25835,25837], -[0,25845,25847,25856,2487], -"bundlemon", -[3,16694,16], -"urner", -[2,25841,25842], -"git-rev-sync", -[0,1170,2026,3509,4763], -"happen", -[0,7804,4856,9417,7806,38176,6494,38177,6503,38179,1364,1429,1431,1527,1536,1575,1652,1177,38182,1161,2899,3237,3378,1894,4257,4474,91], -"karma-expect", -[3,2066,9], -"leafdoc", -"prosthetic-hand", -"git-version", -[2,4049,25852], -"ontent-classifier", -"gis", -[0,4763,2026,5592,8800,38185,5995], -[2,8,25858], -[3,1008,21,5], -[1,2343,25860], -[0,25861,25864,25865,2399], -[0,1282,1362,1676,34226,2685,2832,1209,3171,3242,705,4454,4729], -[2,25857,2324], -[2,25867,6], -[0,1173,1178,1255,1264,1364,1575,1700,1177,2026,2323,2338,2384,29396,2472,2510,2541,2899,3237,3253,6596,4019], -[0,1973,6533,5472,21972,4386,10659,37125,29727,1388,1936,12075,965,1623,5284,11857,6662,26196,38192], -"numbers", -[3,19535,16], -"ng-packagr", -[1,2343,25870], -[0,0,25876,2514,2537], -"aproba", -"cmd-shim", -"p-reduce", -"byte-size", -"write-pkg", -[0,28069,30286,38197,23689,4874,32440,1362,26739,2780,2784,1192,2899,3210,2765,4232,2766,24652,4094,4376,4484,1984], -"examples", -"wide-align", -"has-unicode", -"p-waterfall", -[2,2977,7318], -"@npmtea2024/quasi-nisi-doloremque-fugit", -[1,2343,25889], -"p-map-series", -"blocking", -"set-blocking", -"@lerna/create", -[2,2977,20001], -[0,25890,25895,25896,4139], -[0,38202,6870,1389,21146,38204,1512,1525,1536,1573,1676,2026,38207,12783,38209,12785,2590,2600,2659,12788,38210,12789,1209,3456,3470,38212,4165,38213,17011,4339,38215,20496,4650,4652,1695,4746,38217], -"read-cmd-shim", -[2,3614,16830], -[2,21772,18709], -"strong-", -[0,1087,38221,38222,2899,3524,4389,4431,38224], -[0,4770,5472,1388,2907,2899,12826], -[3,4588,21], -[2,25897,4059], -"-bump", -[2,4945,25899], -[2,13984,25900], -"-rest", -[2,24089,25902], -[2,9768,25903], -[1,2343,25906], -[0,25907,6736,25908,2523], -[0,666,672,677,9688,1710,4135,4459,4484], -[0,9621,9622,8174,9623,9624,9625,9626,9627,9628,9648,9659], -[1,2343,25914], -[2,1583,20499], -"errno", -[2,15086,1179], -"jest-codemods", -[0,25915,6736,6767,2487], -[0,1437,4484,677,4135,2203,666,17310,1012,9688,19254,12123], -[1,2343,25918], -"benny", -[0,25932,6736,25933,2537], -"less-port", -[2,10784,25919], -"emplate-tag", -[2,2642,25921], -"jit-grunt", -[3,1165,10], -[2,21897,25924], -"mocha-te", -"amcity-reporter", -[2,25926,25927], -"phin", -"read-glob", -"@ptkhanh94npm/iusto-libero-aperiam", -[0,4484,677,4135,2798,3181,666,3527,8734,2797,4748,8752,24759,8762,2686,9688], -[0,9621,9622,8174,9623,9624,9625,9626,38247,9628,9659], -[1,2343,25935], -[0,25937,25938,25939,34352], -[2,21897,2070], -[0,4484,677,4135,666,672,4771,9688], -[0,3420,4270], -[0,9622,8174,9623,38255,9627,9628,9648,9659], -[1,2343,25941], -[0,25945,25949,25952,2443], -"abstract-l", -"evel", -[2,25942,25943], -[0,30508,30509,4484], -"browser-level", -"-level", -[2,128,25947], -[0,34030,26312,10846,4426], -"@voxpelli/tsconfig", -[2,12774,3541], -[0,7522,89,7531,7535,7521,7597,7518,8424,8432,7528,10442], -[1,2343,25955], -"leveldb", -[0,25956,25957,25958,2443], -[0,38264,3286,89,3824,38265,4125,38266], -[0,4874,4880,4883,1177,4828,3561,4383,91], -[0,12589,1616,33456,12589,5472,20500,33459,1237,33462,33464,12590,33465,27666,11996], -[2,25944,2971], -"napi-macros", -[1,2343,25962], -[0,25973,0,25975,2537], -"async-each", -"du", -"cat-iterator", -[2,1332,25965], -[2,2970,25966], -"mkfiletree", -[2,15164,18490], -[3,25969,13], -"ross", -[2,25970,25971], -[0,1639,3744,97,7931,7932,7910], -"readfiletree", -[0,89,5128,9267,1832], -[1,2343,25977], -[0,25978,10298,25979,2443], -[0,16053,16056,38278], -[0,5284,1776,1644,1746,1745], -"-leveldown", -[2,14834,25980], -"level-", -"level-errors", -[2,7253,14922], -[2,25982,25984], -"supports", -[2,25982,25986], -"queue-", -"microtask", -[2,25988,25989], -[1,2343,25998], -"airtap-sauce", -"encoding-", -[2,25993,2971], -"memdown", -[3,12809,12], -[2,4182,5614], -[0,25999,26001,26002,2537], -[0,97,5663], -"trickle", -[0,5087,1192], -[0,5284,4967,89,6081], -[1,2343,26004], -[0,26005,26016,26018,2537], -[0,97,38293,3744,3847,4484], -"levenshtein", -[2,2068,26006], -"ld", -"levdist", -[2,26006,10699], -[3,26010,12], -"-distance", -[2,6109,26012], -[2,26011,26013], -"talisman", -[0,5228,14249,5700,8129,20202,38298,20212,602,5583,811,963,966,968,38299,972,974,5087,5090,4880,1009,1011,7913,38302,38304,1397,1597,1610,1651,1177,4916,1959,2126,38307,38309,11853,19227,3400,3698,9054,89,3824,3847,3857,3904,4146,4261,91], -"distance", -[0,38313,89,15774,38316,38317,5399,1631,32039,38319,7320,38320,32040,38322], -[1,2343,26021], -"comparison", -[0,21012,0,26022,34352], -[0,6653,7320,10039,24832,1623,13006,38327,6847,5284,676,38328,38329,29002,24353,8112,3561,6425,38330,18252,1631,3586,38332,4453,38333], -[1,2343,26027], -"careful-", -"binary-", -[2,26025,19101], -[0,26028,26029,26030,34352], -[0,2115,2121,2127,1110,28827,2856,4507,26907], -[0,2180,5476,5478,2189,2198,31852,91], -[0,2313,1383,614,202,1388,5995,4967,2340,2350], -[1,2343,26033], -"country-codes-flags-phone-codes", -[0,0,0,26034,4139], -[0,1671,671,3315,17626,6869,6671,3319,3325,3362,6829,3384], -"just-safe-set", -"ock-registry", -[2,9494,26036], -[1,2343,26039], -[0,26040,26041,26002,2523], -[0,53,31689,97,5663,4793,4800,4838,4928,4786,4944,4954,4968,362,4972,24723,4981,10895,4982,11518,841,7812,24370,4985,1030,4992,1165,1195,29040,30521,1393,1437,1525,1593,1628,1630,1759,1763,2151,2070,2220,4995,2222,2651,2843,2867,1209,3177,3220,4996,3310,3445,3561,3579,3584,3613,3618,30274,1894,3742,15033,3816,3878,4079,13834,4164,4167,4307,5000,4409,5002,1002,1983,29141,2924,4676,4681,13152], -[0,29536,27134,4864,4870,5009,5542,15600,33768,11944,3144,3244,3758,4039], -[1,2343,26043], -[0,6203,26045,26046,2523], -"gitfund", -[0,549,811,8850,816,6373,4863,5087,4880,1009,1011,8158,1584,1843,1177,1895,1938,1955,1959,1192,2780,2832,3421,1894,89,3824,4039,4042,4052,8849,8853,4076,4079,4230,4468,4469,4474,4484,4508,2924,4677,4681,555,560], -[0,24456,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], -[1,2343,26048], -[0,6203,26054,26055,2537], -"crlf", -[3,2982,15], -[2,6774,16609], -[2,26050,26051], -"renamer", -[0,53,87,92,8862,5087,4874,1009,1011,6834,6840,6873,1031,11018,13072,1593,1610,1177,1895,1938,6902,1988,1192,2780,1894,4039,4042,4045,4052,4076,4079,6904,4468,4484,4508,91,188,555], -[0,188,8588,6931,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], -[1,2343,26058], -[2,33018,188], -[0,6203,26061,26062,4139], -"ged-respawn", -[2,7210,26059], -[0,53,87,92,4856,5087,6503,4874,1009,1011,6834,6840,6993,6873,1031,11018,13072,1429,1610,1177,1895,1938,6902,1988,3400,1894,4039,4042,4045,4052,4076,4079,6904,7006,4484,4508,91,188,555,5010], -[0,188,8588,6931,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841,12075,1623,4380], -[1,2343,26064], -[0,26065,26066,26067,2523], -[0,12396,23289,23249,3493,12449,15632], -[0,9363,4874,1414,31147,1894,3985,3998,18071,4505,4507,91,18002,1906], -[0,23266,2587,23267,614,6435,1936,1644,15278], -[1,2343,26069], -[0,0,26071,26075,2537], -"cname-prefix", -[0,1177,2899,3421,4193], -"autolink", -"hashtag", -"mention", -[0,4264,15457,15482,13499,15483,5995], -[1,2343,26077], -[0,0,0,26078,2537], -[0,17356,17362,17364,17365,17384,17397,17423,17426,1745,1783], -"pidtree", -[1,2343,26083], -"consolemock", -"sonner", -[0,26084,26085,26086,2487], -[0,24337,24344,18220,1676,24345,2714,2072,4238,4431,4484,4753], -[0,8656,8660,6061,6063,5245,24352,29105,5087,4874,28177,24358,18435,20290,1177,1192,1894,4131,4468,91], -[0,12296,12295,200,5131,1896,24364,970], -"@samverschueren/stream-to-observable", -[1,2343,26089], -[0,26100,0,26101,2523], -"is-observable", -"-silent-renderer", -[2,2991,26091], -"listr-", -[2,9787,3902], -[2,26093,26094], -"verb", -"ose-renderer", -[2,26096,26097], -[2,26093,26098], -[0,12396,21300,32567,2586,21308,12447,12449], -[0,2587,1936,21308,26916,1783,18108,26564,1932,3958,32462,3984,21306,4549], -[1,2343,26103], -[0,26105,26106,26110,2523], -"@keyv/compress-brotli", -[0,2564,4351], -[0,1166,1503,91,1906], -[3,175,23], -[2,26109,16518], -[3,26104,15], -[0,163,7009,22316,200,13735,4354,1111,1106,7201], -"@lit/reactive-element", -"@lit", -"-labs/ssr-dom-shim", -[2,26112,26113], -[1,2343,26125], -"@lit-labs/", -[2,26116,5472], -"@lit-", -"/scripts", -[2,6943,26119], -[2,26118,26120], -[2,10704,1283], -"@keyv/memcache", -"@keyv/mongo", -[0,26126,26130,26133,2443], -[0,20573,5545], -"connect-l", -"ogger", -[2,26127,26128], -[0,5517,28436,19438,19181,442,8648,842,16145,966,968,972,22375,5087,4874,4880,5546,1009,1011,34737,1177,1895,31755,1959,1961,1976,2203,2675,1192,2780,2990,3286,1894,89,3824,5564,4039,4135,91,4523], -"@keyv/sqlite", -"@keyv/test-suite", -[0,26713,89,582,705,2325,1612], -[1,2343,26135], -[0,0,26138,26139,2523], -"http-auth", -"faye-websocket", -[0,4874,4218,4220,4493,91], -[0,91,998,553,5490,17180,20052,2382,6956,2844,5995,6400,1781,6866,1398,9254,15105,4144,4141,7050,22789,22791], -[1,2343,26141], -[0,26143,26145,26146,2537], -"amaro", -[0,23641,27185,29561], -[2,3000,1592], -[0,58,101,8648,1177,2272,3019,2899,4019,19767,4481,4535], -[0,36720,22860,1388,16284,888,22856,35087,11804,23659,23664,23667,23668,29725,29728,32633], -"micro-backend", -[1,2343,26149], -[0,0,26150,26151,2537], -[0,2832,705,4008], -[0,1936,23670,11513], -[1,2343,26153], -[0,26156,26157,26161,2537], -[2,2032,26155,26159], -"openid-c", -[0,2591,25047,23597,4290,24794,24836,19569,15245,24855,24871,24984,25049,25034,24816,24841,24900,24964,24989,24998,21642,37100,25011,24802,24828,24987,24797,24958,25042], -[0,1414,2020,4193,25122,1306,1177,1701,25127,2182,1894,842,1587,1610,4342,3980,25609,91,4874,25099,25108,6513,8529,27525,25110,9240,25103,25104,25098,25137,25053,25118,25114,25058,25083,10614], -"grunt-svgmin", -"onnect", -"matchdep", -[0,25155,5130,33359], -[1,2343,26163], -[0,26164,26165,26166,2537], -[0,25183,25194,1759,2858,3310,9796], -[0,33460,25204,4874,5542,1177,25209,1894,4039,4494,91,1984], -[0,9649,17721,6869], -[1,2343,26168], -[0,26171,26174,26188,4139], -"lws-basic-auth", -"lws-b", -[0,1676,4164,4484,4747,2151,1525,3310,25228,24337,3322,24335,25245], -"lws-blacklist", -[2,26170,7803], -[0,3377,1192,2675,4400,1177,4039,4468,1894,91,5087,4874,5245,28177,20959,107,4864,5542,25250,8656,8660,1009], -"lws-compress", -"lws-co", -"nditional-get", -[2,26176,26177], -"lws-cors", -"lws-index", -"lws-json", -"lws-log", -"lws-mime", -"lws-range", -"lws-r", -[2,13148,21101], -[2,26185,26186], -[0,2733,8675,13494,5131,970,1017,25259], -"lws-rewrite", -"lws-spa", -[1,5293,26193], -"lws-static", -[0,8391,26194], -1753574400000, -[1,2343,26197], -"full-stack", -[0,26198,0,26199,2537], -[0,1461,2731,3744,3776,89,3824,3847,4649], -[0,5130,6081,4963,5131,25786], -[1,2343,26201], -[0,26209,0,26211,2399], -[3,24235,20], -"loose", -[2,26202,26203], -[2,13888,5669], -"grunt-es", -"3-safe-recast", -[2,26206,26207], -[0,4484,25804,29321,29322], -"grunt-rollup", -[0,13572,2220,36,5130,202,6710,91], -"grunt-ts", -"rollupify", -[1,2343,26215], -[0,26219,26220,16427,2523], -"indexeddb", -[3,23920,12], -"websql", -[0,24327,25819,24329,24335,24337,24338,24339,24340,24343,24344,1437,1676,1687,24345,24346,1209,3445,6331,20921,4135,4238,24347,22651,4339,4390,4484], -[0,5245,17577,24352,5087,4870,4874,5254,24358,24360,13214,1192,2774,2990,4039,4227,4468,91], -[1,2343,26224], -[2,31787,26225], -"openurl", -[0,6203,26226,26227,2523], -"ecma402-abstract", -[0,25857,25862,25863,19535,19,21,24,26,1009,1011,1166,1584,1177,1895,1938,1955,25868,3421,1894,4039,4094,4232,4484,4508,91,555], -[0,1098,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], -[2,3019,2825], -[1,2343,26231], -[2,7627,4255], -[0,26235,26236,26237,2537], -[2,6698,19048], -"lockfile ", -[2,26233,671], -[0,20437,1209], -[0,4874,1009,1011,1177,1895,1938,1955,1894,4039,4042,4052,4076,4079,4484,4508,91,555], -[0,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], -[1,2343,26239], -[0,26240,26242,7097,2523], -[0,1473,4741], -[2,31528,29413], -[0,10321,4493,4543], -[1,5293,26244], -[0,8391,26245], -1738454400000, -"@egjs/axes", -"@egjs/imready", -"modularized", -[2,5316,26248], -[1,2343,26251], -[0,26252,26253,26254,2537], -[0,97,5564], -[0,29519,89,1177,1503,4474,1894,1610,3824,29520,91,11853,4880,38309,4883,29522,3904,17584,1011,4889,1009], -[0,5472,89,582,2275,11857], -[1,2343,26261], -[2,27471,1722], -"kuler", -"clonedeep", -"js-randomness-predictor", -[3,23307,13], -[0,26262,0,26263,4139], -[0,25510,29529,25758], -[0,6932,6622,6694,6704,6860,6695,4389,7159,5341,7202,7121,7060,7161,7141,7287,6698,3743,7311,6946,2090,6566,6907,7228,4799,5261,6863,2051,676,4643,7535,6748,6739,6618,2844,7252,6673,6790,7531,7226,1851,1612,4763,6598,6728,6868,6662,7148,6905,6668,7292,7272,6583,3767,364,6800,6874,4166,1698,2021,6821,3065,6435,3730,6882,4647,6857,6637,7031,7223,7080,3113,7220,1871,6801,7087,6938,7145,3195,7255,7162,6482,7094,6922,6615,6738,6654,8433,7212,7050,7521,1525,6892,6830,3432,10442,7053,7253,10443,6937,6894,6977,5592,6692,200,6940,6867,7242,7518,6582,3101,7038,57,7188,6809,6998,4484,4796,7089,7178,7182,6827,7015,6912,7011,6743,1451,6575,7117,6994,3046,2812,7199,2860,998,5122,1111,6696,6910,3529,7133,6048,1303,6634,1139,6846,6784,7192,6777,3053,5351,6624,3171,1896,2297,6960,7022,6597,5198,6802,6816,7317,4141,6765,6591,7236,1306,6681,5257,6564,100,7004,6333,6799,6774,7276,7196,6797,1263,1149,2649,7150,7165,6753,7107,6948,6975,6822,6787,6760,7046,5472,6651,6569,6825,7069,582,7191,6968,6631,6742,4744,7258,1925,6794,6804,965,7149,6917,2700,1192,2765,6081,7029,1417,5258,4426,6608,7044,7123,7222,3378,1616,3917,1614,1669,3209,6570,7155,6422,6714,6725,6606,6778,7300,6610,6716,1259,2585,1393,6918,1461,1213,7232,7172,6755,4014,6919,7209,7075,6818,6870,7039,6795,6761,6966,2154,6885,4707,6964,6646,7218,7169,2978,5501,1155,6611,6955,1862,1753,2220,6837,7336,4386,6638,6616,6553,7310,7061,6881,7298,8424,5675,3437,3456,6929,7157,6580,6751,7010,6648,3426,6952,8435,4384,7233,6697,4162,2150,3875,1108,5165,6926,3763,7229,592,3776,7288,5957,6700,2088,6650,7595,10446,7289,6805,7099,7084,7144,590,5374,5197,7077,5286,7248,2078,7085,7285,1781,6653,10441,2325,5281,1351,7309,7204,2696,2899,3430,705,7126,1697,2038,7025,6641,6620,1671,6859,6573,7146,7245,4649,3220,6667,1623,6793,6666,6903,7230,7026,6588,6858,1362,202,2832,7023,7284,6659,6577,7158,6594,7115,20215,6789,5614,7057,7528,7021,6605,6621,5260,6973,6913,6828,6563,6715,1460,7067,7072,6762,7033,7517,6702,7020,6887,5131,3778,6915,1593,5194,7071,1429,7042,6636,6841,3428,7007,7532,6803,7106,3073,6824,7227,7286,2845,7082,7114,7151,7297,6769,3766,6914,7189,7064,4720,6723,7205,6780,6683,7078,1858,6741,7262,6962,814,6657,7524,1544,7002,7527,1585,5511,1512,6921,6951,6856,7598,6854,8428,6586,6773,2105,7047,2671,1541,6623,594,6711,7147,6671,7256,7194,1165,6786,3768,6752,8427,1804,3441,7275,3033,6943,4354,4580,6758,7027], -"snackbar", -"inject-markdown", -[1,2343,26267], -[0,0,26268,26269,2537], -[0,2272,19270,2899], -[0,1111,1936], -[1,2343,26271], -[0,26272,26275,26276,2523], -[0,6513,4193,4484], -[2,32920,4521], -"rchitecto-", -[0,33821,7709,33826,33827,33831,33836,29543,4508], -[0,7200,1168,5472,3212,20188,29545], -[1,2343,26278], -[0,0,26279,26280,4139], -[0,6373,1437,29550,2151,2070,2323,2372,29552,4039,4042,4057,4076,4072,4484,4487,91], -[0,1896,5066,29554,29555,5122,12295,14554,5284,4453,29556,5131,1591,1932,4653,6434], -[1,2343,26282], -[0,0,0,26283,2523], -[0,7201,5131,1676], -[1,2343,26288], -[2,28288,26286,33678], -"redential", -"isequal", -[0,26289,26290,26291,4139], -[0,1364,1536,1676,1710,11479,2017,2929,4200,4763], -[0,8648,29574,5159,838,5160,840,8296,5601,1165,1662,1177,1895,1972,2203,3561,1894,3710,23535,3709,4355,4383,91,1983,1984], -[0,5592,5995,27,4699,4729,4030,6710], -"isfunction", -[1,2343,26294], -[0,0,26295,26296,2487], -[0,53,87,192,5467,1165,1195,1387,31429,1429,29582,1492,29584,1652,29585,2323,29586,2338,29587,29589,2361,2367,2384,2390,2419,2455,2464,2479,2482,2494,2496,2504,29592,2510,2530,2550,29593,2675,29594,2822,2929,2899,3198,29595,5561,3561,3722,4015,4019,4042,4045,21688,4939,29596,4193,8959,29597,4597,29599,2924,18237], -[0,1623,4329,2278,676,6398,6396,5130,14894,29603,29607], -[1,2343,26298], -[0,26299,26300,26302,34352], -[0,1437,29614], -[0,29618,7677,2675,2990,1894,91,1984], -"isplainobject", -[0,200,1473,1512,7208,6876,7201,6983,29609,3632,3073,6807,4166,1871,590,592,7009], -[1,2343,26304], -[0,26305,26306,26308,4139], -[0,7943,29630,3120,3744], -[0,48,53,68,13693,61,31689,73,31693,5757,5800,5818,5827,87,90,19696,19438,19181,442,34467,32229,29634,28970,29636,10837,10840,29639,966,968,972,29642,974,5087,11292,4874,4880,4883,8152,1175,1193,1195,20479,29643,11335,29645,1465,1584,1587,1593,1610,1700,1177,1879,1895,1922,1938,1947,1955,1959,1961,1976,2151,2203,29646,1192,11347,2774,2780,29652,2832,3561,3697,1894,3720,89,3816,3824,3847,29655,3957,4183,4270,4315,29660,4415,29661,35487,4468,4469,91,2924,4677,4681], -"isstring", -[0,29610,29666,29667,4627,6082,9204,5130,89,699,9291,5354,29668,29669,29670,29671,7320,29673,29674,29676,1473,998,8691,8295,29677,181,6073,10769,29678,4315], -[1,2343,26310], -[0,0,0,26311,2537], -[0,23584,23584,1936,3205,1002], -"@thednp/dommatrix", -[1,2343,26314], -[0,0,26315,26316,2537], -[0,29693,2228,2247,2253,2258,2263,2273,2281,2283,29694,2308], -[0,36653,36650,29702,15571,8192,5066,11316,18346,35060,2814,20632,6398,5131], -[1,2343,26318], -[0,26319,26320,22658,2443], -[0,3561,33145,4317,8712,1423,28572], -[0,4729,1138,3244,3467,4390,4763,12084,2070,710,614,1082,31705,1413,1676,2145,2856,33213,1145,1398,1410,977,2018,2755,3266,3930,4135,4072,11478,2105,6042,3479,3729,2924,3757,3784,33214,33173,842,9241,1525,1610,2553,11993,26453,23175,3530,4270,33215,29709,11534,13214,33200,33202,1628,11890,2659,16837,2689,33211,4227,4294,4425,91,24739,53,554,4865,33198,20463,13753,1154,33204,1536,1615,2805,4111,27062,4165,15040,33212,7080,104,8317,33146,33174,5364,5245,33191,4880,1195,1393,33206,1562,33208,2863,33210,3678,20508,4307,11804,33176,11477,4870,5254,33209,20465,15031,3878,13834,15048,97,33181,26733,15018,3509,15042,15047,101,8755,29877,33197,15606,15009,3502,15033,5216,33165,8648,10837,20374,4883,2661,15022,3322,51,87,11011,23452,1618,2674,4230,28512,15039,15046,13471,10879,7806,21122,16149,16566,3672,90,33156,617,11796,8264,33193,11800,1560,3676,3957,68,33768,15015,3688,9221,25652,33158,33167,34467,33195,36897,16841,18730,4409,33159,29876,24807,31666,16912,3605,16842,33170,33179,3177,4851,92,33162,19861,29517,29421,33172,10840,33183,33153,10825,30521,10827,20476,15273,83,16840,33189,3638,81,5715,29874,5757,5241,5820,5821,5785,1251], -[1,2343,26323], -[2,1882,24717], -[0,0,26324,26325,2399], -[0,1414,34238,2675,2990,3561,1906], -[0,3561,1623,6425,26543], -[0,0,21613,21614,34352], -[1,2343,34498], -[0,1448,4907,29733,3157,3173,3527,3721,11114,4207], -[0,192,5467,442,6061,16607,6063,6065,16608,16612,7746,4874,13210,29740,1009,1011,1610,1177,1953,2020,2203,2675,29741,2990,3536,1894,4039,4131,91,1984], -[0,8678,3758,7001,1017,29745,12295,12296,29746,29747,29748,158,3097,5131,33777,29750,29751], -[1,2343,26332], -[0,26333,26334,26335,34352], -[0,29758,29759,1398,34690,3127,3725,10397,29761], -[0,53,68,87,1195,29776,1465,24542,1628,1177,1879,31393,1938,24732,2092,8301,2651,29784,4307,4409,37871,2924,4676,4677,4681], -[0,8168,8170,8171,6975,8172,8173,1745,29786,29787,29729,8124,29788,29795,29796,29797,29798,29802,29803], -[1,2343,26337], -[0,26338,26339,26340,2523], -[0,3744], -[0,53,68,97,1177,1879,1895,1938,1947,1955,1959,1961,1192,5103,1894,89,3857], -[0,3857,5128,31912,89,5131,12295,12296,181,26542,23187,29556,29804,9944,7521], -[1,2343,26342], -[0,0,26345,26347,2523], -[3,532,8], -[2,26346,26651], -[0,53,87,97,29817,21155,1177,2675,2990,89,3857,91], -"@tdesign/", -[0,3857,5128,31912,89,5131,12295,12296,181,5396,29819,15813,29820], -[1,2343,26352], -[3,17904,13], -"sprintf-kit", -"uni-global", -[0,0,26354,26355,2443], -[3,25092,13], -[0,53,68,61,5241,83,87,90,5583,811,816,968,972,1165,1497,1652,1177,1895,31755,1955,1959,1961,1976,2675,2686,1192,2990,3561,1894,3744,89,3824,4042,8849,29826,6068,10854,4320,4323], -[0,89,35058,29831,3392,89,4627,29832,5131,12295,12296,29836,29837,29838,29839], -[1,2343,26359], -"ncjsm", -"tape-index", -[0,26360,26361,26362,34352], -[0,97,29843,29844], -[0,53,78,83,87,90,92,5522,107,29846,968,972,4880,4883,1009,1011,1030,1178,1413,1610,1177,1895,1955,1959,2675,1192,2780,2990,1894,89,3824,4039,91,1983], -[0,29848,29849,89,5128,38332], -[1,2343,26365], -"@standard-schema/spec", -[0,26366,26367,26368,2487], -[0,1420,29855,4507], -[0,5517,19438,442,29857,23689,1414,1437,1516,1532,668,1177,1895,1955,2020,2203,2675,2765,2990,3074,1894,4039,18710,91,4523], -[0,20627,1739,1745,1179,1783,5980,9591], -[1,2343,26370], -[0,26372,26373,26378,2443], -"terminal.js", -[0,810,1497,26570,16485,2017,2696,3876,4022,32284,5545,29869], -[0,48,53,87,90,92,97,19696,28091,19492,19438,442,28598,30507,810,11275,34467,827,10828,28147,28466,31235,7384,31237,28473,28476,968,972,974,29879,33123,29880,4874,4880,4883,15606,1030,17214,7677,1195,29883,20476,1393,29645,1610,17100,17101,17103,1687,1177,26322,1895,1915,1938,1942,1947,1955,1959,1961,30553,10851,2070,2203,2675,2832,2990,3127,3541,1894,89,3824,3847,3876,4039,4270,4409,4469,4473,91,4523,15088,1984,29887,2924,4676,4677], -[3,28685,11], -"refresh", -"overwrite", -"irtual-core", -[0,89,6071,9816,5128], -"tinyexec", -[2,17213,28937], -[1,2343,26382], -[0,26384,26386,26387,2537], -"date-format", -[0,29896], -"flatted", -[0,29900,29905,29910,29911,811,816,974,11096,11109,19203,29914,11111,29917,29921,1414,1429,29922,29924,1177,29925,1938,2832,8821,2899,1894,4042,29926,4146,4193,4196,4261,4072,91], -[0,29935,11619,11608,30891,11622,6907,29936,12899,5130,30442,17950,1283,29939,33359,11415,6624,12620,29940,29941], -"streamroller", -[1,2343,26392], -"@log4js-node/sandboxed-module", -"-producer", -[0,0,26393,26394,2487], -[0,53,13052,87,4042,4045,4058,4067,4415,29949,35487,4535], -[0,7838,29953,7518,3161,1098,29954,89,188,7880], -[1,2343,26401], -[3,9227,10], -"e-js", -[2,26396,26397], -"grunt-open", -[2,2235,4358], -[0,26402,26403,26404,2537], -[0,97,29959,10984,1673,3021,29960,4443,1155], -[0,5652,61,83,87,92,192,5467,6372,5583,811,16952,8850,816,6373,29966,29967,29980,26344,5139,4874,8149,11438,14334,1009,1011,11016,13061,7677,23203,13063,1031,36812,36805,11018,1165,1170,1420,12405,1527,1540,1610,1651,1652,1676,29972,668,1177,1881,1895,1938,1955,1988,2226,2675,2832,695,2990,3025,26804,3213,3561,1894,3725,29973,3957,4039,4042,34019,8849,11899,15277,29974,15911,10854,29975,29978,4073,6904,4081,29983,4484,91,1983,29987,1984,188,4630,4639,13151], -[0,188,5131,29990], -[1,2343,26427], -"esm2umd", -[2,26409,26410], -"int64", -"@astrojs/s", -"itemap", -"@pagefind/default-ui", -[2,26689,27593], -"uid2", -"astro-expressive-code", -"bcp-47", -"isemail", -"canonical-json", -[2,3138,12442], -"-phase", -[2,3081,26419], -"pagefind", -"remoting", -[2,25894,26422], -"loopback-", -"filters", -[2,26424,26425], -[0,26430,26432,26451,2523], -"globalize", -[2,25894,26428], -[0,7755,1869,2814], -"linkedom", -[0,53,87,23572,11301,1165,1168,30000,1597,1610,1637,1651,18259,1759,1177,1895,1903,1938,1954,1955,1958,1970,3363,3561,3564,3566,30030,3579,3605,30033,3613,3640,30039,30274,1894,4039,4042,4045,4055,4058,20981,30041,4067,20983,32978,4073,12309,4201,4320,4946,4360], -"or-remote", -[2,1544,26433], -[2,26424,26434], -[3,18637,12], -"tub-transport", -[2,26436,26437], -"datas", -"withastro", -"ource-juggler", -[2,26439,26441], -[2,26424,26442], -[3,18637,11], -"astro-integration", -"-transport", -[2,1716,26446], -[2,26444,26447], -"adapter-", -[2,32700,23187], -[0,12318,2090,30044,30045,13225,7518,5398,158,30046,190,5131,18346,9229,1542,30826,20937,2814], -[1,2343,26454], -"is-docker", -[0,26460,26471,26475,2523], -"loopback-boot", -"s6-shim", -[2,13897,26456], -[3,26435,12], -[2,26458,2585], -[0,1170,2812,1209,3183,4094], -"task-emitter", -[2,25894,26461], -[3,6738,11], -[2,26463,1524], -[2,25894,26464], -[2,1884,3081], -"processor", -"-preprocessor", -[2,22126,26468], -[2,2877,26469], -[0,1429,1177,10419,3188,2899,1241], -"sqlserver", -"StrongLoop", -"mBaaS", -[0,6703,1702,200,1586,21405,13397,33351,27,29854,30053,21402,13322,16697,28984,6667,6574,30056,31937], -[1,2343,26480], -[2,26478,29168], -[3,30636,28], -[2,26868,26869], -[0,0,26496,26497,2537], -"exact-versions", -[2,32700,7293], -[2,26485,24631], -"steno", -[3,31231,18], -[2,19036,20], -[2,5745,1852], -[2,2029,26487], -[2,32731,26494], -"embed", -"Storage", -"localStorage", -[2,1577,26491], -"polygon", -[2,32731,32729], -[0,1165,1387,2323,30061,2379,2409,2450,2482,2494,2496,2510,18426,30064,3591,4320,4323,4747], -[0,29993,30066,30067,1623,695,5131], -[1,2343,26500], -"rslog", -[0,0,0,26501,2487], -[0,89,6649,10057,6355,3875,1542], -[1,5293,26508], -[2,13104,1936], -"@lucide/build-icons", -"@lucide/", -[2,4080,591], -[2,26505,26506], -[0,8391,26515], -"Lucide", -"HTML", -"Feather", -"Icons", -"Icon", -"SVG", -1731196800000, -"Feather Icons", -"Fontawesome", -[1,2343,26519], -[0,26521,26522,2514,4139], -"Font Awesome", -[0,30078,9307,9311,30068,30052,30073,9313,30072,1497,12412,30075,2071,7610,2579,21308,3137,27008,3140,12627,26929,26914,17429,9337,3973,9340,3988,30049,30069,30059,27062,9348,4207,17913,4473,30058,4555,28830,4745,4763], -[0,11522,972,1006,12396,9363,30082,4880,4891,1030,30084,23312,23314,3286,89,3824,4549,1984,28965], -[1,2343,26524], -[0,26525,0,26526,2537], -[0,30097], -[0,1674,30099,30100,15001,13739,35071,30103,30113,19571], -[1,2343,26529], -"decree", -[0,26530,26531,13347,2537], -[0,20378,3530], -[0,11976,4874,20374,2071,30138,2070,4441,1531,91], -"manipulate", -"blur", -"sharpen", -"flip", -"hue", -"saturation", -[1,2343,26540], -"lightness", -[0,0,0,26544,4139], -"transparency", -"fade", -"opacity", -[0,91,553,1973,8791,2022], -[1,2343,26546], -[0,26547,2667,26554,2537], -[0,30173,4484], -"@75lb/deep-merge", -[3,1107,11], -"-sequences", -[2,26549,26550], -[2,1601,7880], -"load-module", -[0,30175,30176,27227,30177,30178,91,6742,57,15266,2873,1993,7256,676,19976,30179,5995,6400], -"-anywhere", -[2,17242,26555], -[2,30307,553], -[1,2343,26559], -[0,0,6230,26560,2399], -[0,32054,4963,4967,6082,3286,3287,89,11167,31512,181,630], -[1,2343,26569], -"-home-dir", -[2,18132,26562], -"mdast", -[2,2580,26564], -"fetch-happen", -[2,3094,26566], -[2,12428,1783], -[0,6234,6230,26575,4139], -[2,25212,28139], -"-unique-id", -[2,5843,26571], -[2,4402,163], -"y18n", -[0,1501,4963,4967,5342,6082,3286,3287,89,5341,9057,181,630], -[3,9357,10], -"umnify", -[2,26576,26577], -[2,8140,1687], -"ke-fetch-happen", -[2,18655,26580], -[1,2343,26583], -[0,26585,6230,26588,2523], -"@types/which", -[0,3826], -"wizard", -"task graph", -[0,4963,18263,1786,4967,6082,3286,3287,89,181,630,9229], -[1,2343,26590], -[0,26592,6230,26593,4139], -"zoroaster", -[0,9041], -[0,4963,4967,6082,3286,3287,3412,3730,89,181,630], -[1,2343,26595], -[0,26592,6230,26598,2537], -" manipulation", -[2,1871,26596], -[0,30246,4963,4967,6082,3286,3287,89,7193,181,630], -[1,2343,26600], -[0,0,6230,26601,2537], -[0,4963,4967,6082,3286,3287,89,30256,24843,30251,181,630], -[1,2343,26607], -[3,7678,9], -[2,4501,6996], -[2,12612,26604], -[2,26603,26605], -[0,26613,26615,26618,2537], -"lavalink client", -"audi", -"o streaming", -[2,26609,26610], -"music", -[0,3135], -"music bot", -[0,48,53,5241,87,92,19344,10879,30263,5601,4873,4874,1009,1011,1177,1895,1938,1942,1953,30266,13668,3401,4039,91,1984], -"emoji-datasource", -"voice chat", -[0,30270,3541,1651,2899,1984,1192,2765,3283,28360,30271,2793,1973,11937,16237,5472,30272], -" integration", -[2,1721,26619], -" performance", -[2,6732,26621], -[1,2343,26625], -"easy-to-use", -[0,26634,26635,26637,2487], -"feature-rich", -"seamless", -[2,26627,26619], -"communi", -"ty support", -[2,26629,26630], -"open-source", -"lavalink", -[0,30288,30293,30295,26557,32842,30297], -[0,30303,6494,4874,30306,30305,30310,2026,4039,1531,91,1984], -[3,66,19], -[0,30297,2026,5995,1851,5592,13527,91,5284,2663], -[1,2343,26639], -[0,0,26640,26641,2443], -[0,3377,26230,4255,1973,30351], -[0,5131,28125,4354,1388], -[1,2343,26643], -[0,26645,26646,26649,2523], -"convex-helpers", -[0,12449,4549,12396,2586,21016,32568,4233,12447,32567], -[0,1414,1177,3958,1894,3541,3985,91,4874,15632,32484,27706,27711,30411], -"intermediate", -"recursively", -[0,1745,9102,25131,1932,3958,32462,3984,4549], -[1,2343,26652], -"theme-generator", -[0,26653,26654,26655,2523], -[0,30416,30425,30431,30434,30438,30439,30441,30445,30447,30449,30450,30452], -[0,48,4487,91], -[0,30455,5133,30960,1851,5284,27838,18969,30456,5131], -[1,2343,26659], -"dingbat-to-unicode", -"lop", -[0,26665,0,26199,2443], -"-licenses", -[2,22190,26660], -[2,13888,26661], -"duck", -"hamjest", -[0,25766,30802,1461,30809,2731,3744,3776,89,3824,3847,4649], -"office", -[1,2343,26668], -[0,26669,0,26199,2399], -[0,89,3824,3744,25766], -[3,36878,12], -"ternal-editor", -[1,2343,26673], -[0,26686,0,26687,4139], -"@nestjs/", -[2,26674,10896], -"@nestjs/co", -[2,26676,686], -[2,26676,23], -[3,31,9], -[2,26679,2026], -[2,26674,26680], -[3,9687,9], -"wagger", -[2,26682,26683], -[2,26674,4521], -[0,4484,2735,547,2858], -[0,2733,5130,1098,5131,1896,8674,8675,1591,8677,8678], -"@nestjs/cli", -"@nestjs/t", -[2,26689,8615], -[1,5293,26692], -[0,8391,26700], -"asherize", -[2,6491,26693], -[3,12284,16], -[2,26695,2528], -"llaboration-core", -"limiter", -"embla-carousel-reactive-utils", -1733616000000, -[1,5293,26722], -[2,19183,26714,3181], -"eigen", -[3,578,11], -"de-highlight", -[2,26704,26705], -"@tabler/icons-react", -[3,3672,15], -"mantine", -[2,26708,26709], -"imple-vars", -[2,3677,26711], -"swr", -[3,25141,13], -"context-menu", -"peowly", -"context menu", -"server ", -[2,26718,4963], -[2,7519,26719], -"user ", -[0,8391,26723], -1733961600000, -[1,5293,26728], -"experience", -[2,26721,26725], -"usability", -[0,8391,26729], -1734220800000, -[1,2343,26731], -[0,0,26732,26734,2537], -[0,4172,2278,34683,4484,1177,4039,4042,4086,4072,3363,3561,2151,1894,1367,1610,4320,91,6375,3400,3566,30616,1165,1540,6376,3019,34673,1907,30617,1938,1982,30620,10817,1011,15290,6392,1009], -"axe-playwright", -[0,1623,2278,6398,20897,1283,699,5130,30622,27837], -[1,2343,26736], -[0,26737,26738,26742,2537], -[0,97,30628,30666], -[0,48,53,61,71,13052,83,85,87,94,4856,6503,4874,1178,1195,1208,1290,30691,30696,1389,1429,1431,31602,1610,1177,2026,10621,2832,2899,3421,705,4039,4218,4409,91,2282,4650,2924,4677], -[2,11932,26740], -"umd-wrapper", -"mapbox", -[0,6599,5131,5592,29744,30730], -"mapbox-gl", -[2,4609,4056], -[1,2343,26748], -"mapboxgl", -"legend", -[0,0,26749,26750,2443], -[0,1414,1429,1540,1596,668,1177,2832,3010,2899,2278], -[0,5284,5131,12295,12296,7179], -[1,2343,26752], -[0,26753,26756,26757,2487], -[0,3775,1473,1673,30778,1209,1461,30779,3376,30774,30772,30776,15616,3911,30770], -" processing", -[2,2585,26754], -[0,11336,89,3824,4880,4870,97,4883,30783,972,968,974,20562,4808], -[0,89,12248,5128,30731,30785,30786,4627,4963,181,5130,4967,5131], -[1,2343,26759], -[0,26760,26765,26199,2537], -[0,25766,30802,30803,30405,30458,1461,2731,3744,3776,89,3824,4649,30809], -"linkify-it", -"mdurl", -"punycode.js", -"uc.micro", -[0,30819,30820,30822], -"footnote", -[2,3108,26766], -[3,26767,14], -"r-inline", -[2,26768,26769], -"ins", -[2,3108,26771], -"ark", -[2,7613,26773], -[3,7617,14], -[2,26775,22164], -"ndoc", -[1,2343,26781], -[3,5956,14], -[2,26779,13218], -[0,0,26782,26783,2537], -[0,6066,1894,4042,4045,12611,4048], -[0,4967,9006,29633], -"@nx/docker", -[1,2343,26787], -"anchor", -[0,26788,26789,26790,2537], -[0,16115], -[0,972,4880,4883,1628,2144,2675,89,3824,3895,4307,4469,21180,4484,91,2924,6482], -[0,1631,30845,30847,30848,4627,6398,5131,4453,1631,5399,30858,32040], -[1,2343,26792], -[0,26793,26794,26795,2399], -[0,10780,1437,1525,2020,2151,3714,3742,4135,4548,4707,4726,4739,4753], -[0,30868,16480,1414,2070,2203,14775,30889,2658], -[0,30829,31731,30870,5131,12295,30871,12296], -"emojies", -[1,2343,26798], -[0,26801,0,26802,2537], -"emoticon", -"emoticons", -[0,3533,30018,28941,29602], -[0,29699,2942,6807,1179,1745,29703,29753], -[1,2343,26810], -[2,26807,26809], -"from-to", -[2,4279,26805], -"lodash.u", -"pdf-text", -"pperfirst", -[0,26811,26812,26813,34352], -[0,31834,31846,29951,66,29890,5582,635,29057,1091,1525,18145,30089,31002,13812,2822,26014,3079,3181,3310,30095,4025,6477,4135,4183,4474,91], -[0,1177,1939,1959,1969,2151,1192,2829,3123,4039,30269], -[0,5593,1745,1179,1783,5061], -[1,2343,26816], -"rows", -[0,26817,26818,26819,2523], -[0,7614,19976,3445,1371,1437,2020,2975,3478,4484,1209,4135,1593,3742,2924,1457,2151,4447,1525,2641,1483,1710,1869,3884,13834,4689,30459,4562,30876,3885,30878,32359,30882,9329,4681,30890,2651,30895,30896,4676,30899,30900,30902], -[0,36864,18055,4883,8286,30913,3904,33768,29125,30915,30919,4985,38298], -[0,89,12478,2924,1745,18061,18063,467], -[1,2343,26821], -[0,26822,26823,26824,2443], -[0,4484,2735,547], -[0,3377,1192,89,1177,4039,4042,4468,2151,1894,3824,91,5087,4874,4880,4883,8656,8660,972,2780,10817,968,1011,20562,1009], -[0,2733,5130,89,5131,1896,24364,8674,1591,8677,8678], -"microtime", -[1,2343,26828], -"theredoc", -[0,0,26829,26830,2537], -[0,5087,1009,1011,1593,1596,1637,1177,1192,2774,2794,2832,30935,4042,4468,91], -[0,32814,6422,6805,2013,24800,31767,91,5284,11512,4627,3111,30430,11608,6400,1936,9622,8174,30937], -[1,2343,26832], -[0,26833,0,26834,2537], -[0,1497,9272,9273,3744,97,6372,444], -[0,89,5128,9267,30943,6653], -[2,13090,4226], -"lazy-cache", -"list-item", -[3,19516,13], -"mixin-deep", -"repeat-string", -[1,2343,26848], -"glossary", -[2,4001,1932], -" of contents", -[2,176,26844], -"of-contents", -[2,16065,26846], -[0,26850,0,26851,2487], -"node-bundle-require", -[0,9273,3744,97], -[0,89,5128,9267,699], -[2,28001,28034,16111], -[1,2343,26856], -[2,24559,18089], -"gemoji", -[0,26857,0,26858,4139], -[0,1497,3847,9272,3744,97,5090], -[0,89,5128,9267,594], -"CommonMark", -[1,2343,26861], -[0,26862,0,26863,2523], -[0,30963,30964,1699,3547], -[0,91,4521,678,12659,4030,7096,5592,30967,30968,5995,30969], -[1,2343,26867], -"jsonpointer", -"run-con", -[0,26871,0,26863,2523], -[3,11026,13], -"uilder", -[2,10829,2202], -[0,30978], -"babel-re", -"@markedjs/eslint-config", -"@markedjs/", -"testutils", -[2,26874,26875], -"marked-", -[2,26877,5342], -[1,2343,26884], -"marked-man", -"recheck", -"@egjs/component", -"@egjs/list-differ", -[0,26886,26887,26888,2537], -"markup", -[0,1091,4135,2105,30986,30987,31339,20786,2745,27168], -[0,16499,1983,1984,1597,2071,91,36864,3401,19232], -[0,30990,30991,20998,5194,5130,2323,5284,1936,6082,1783,6710,30993,38087,8674,12479,5347,5348,30997,30998,30999], -[1,2343,26890], -[0,0,26891,26892,2523], -[0,1759,20463,1763], -[0,89,3286,23803,1759], -[1,2343,26894], -[0,26896,26897,26898,2537], -"v8-argv", -[0,31705,4227,31044,4121,2626,6473], -[0,4757,1192,3144,1177,3266,1701,2924,2151,2182,1894,1610,3758,4507,2794,91,53,5087,4874,1615,4677,1195,29283,3401,3878,4891,4864,21122,8818,31054,4681,31055,33002,31057,2784,4409,1895,1955,2780,4684,5241], -[0,89,5284,2924,26375,11498,31062,3000,2998,6109,6609,2999], -[1,2343,26903], -[3,2718,14], -"refixer", -[2,26900,26901], -[0,0,26904,26911,2443], -[0,34264,2222,31069], -"vent-listener", -[2,11352,26905], -"typed-event-target", -"simple-assign", -"@onesy", -[3,1441,29,6], -[0,31076,2220,2844,553,91,9381,5130,1932], -[1,2343,26913], -[0,26918,26919,26923,2523], -"react-medium-image-zoom", -"complex.js", -"latex", -"escape-latex", -[0,3467,6482,1983,31090,1371,1437,2020,1759,1209,3539,4135,1458,3363,3471,2924,1457,2151,2720,1894,1525,1587,1483,1628,91,3921,31091,31093,1393,13223,1540,4025,4307,31094,31095,31096,31097,9322,3878,31098,31099,31101,8161,29182,31105,10936,31106,31109,31110,31111,2651,31114,4679,4684,31117,12361,3177,4676,31120,31123,31125,4992,31127,2135,24723], -[0,1192,89,2190,3824,5087,4874,4870,31131,4864,31134,31138,4985], -"-natural-sort", -[2,5284,26920], -[2,17414,3046], -[0,31140,6354,31141,17944,31146,31153,27837,5592,1303,5130,27,1781,2934,31154,33359,3424,28438,3469,4030,7096,1965,31155,12479,5284,29727,31047,31048,31045,31042,31156,31171,5995,18063,31175,2968,31176,89,6071], -"jsep", -"ndarray", -"-determinant", -[2,26925,26926], -[1,2343,26937], -[2,28402,28403], -"ndarray-gemm", -"ops", -"ndarray-ops", -"ndarray-pack", -"numeric", -"numericjs", -"pad-", -[0,26939,26942,26943,2537], -"l-time-collaboration", -[0,53,4982,1420,1595,31187], -"sylvester", -"zeros", -[0,4361], -[0,11525,8221,89,364,5592], -"mathematics", -"algebra", -"complex", -"fraction", -[1,2343,26949], -[0,26950,26951,26952,2537], -[0,104,18089], -[0,31206], -[0,1936,2587,1172,23267,36587,23266], -[1,2343,26954], -[0,0,0,26955,2537], -[0,11961,10339,10340,5122,5995,1594], -"charenc", -[1,2343,26958], -[0,26959,26960,7537,2523], -[0,1673,1511,31225], -[0,2675,1984,91,4874,975,11976,192,11978,7677,5467], -[1,2343,26962], -[0,26964,0,26966,2523], -"md5sum", -[0,1004], -"checksum", -[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31239], -[1,2343,26968], -[0,26964,0,26997,34352], -[2,27022,27023], -"d-character-reference", -[2,5877,26970], -[2,15103,26971], -[3,17995,15], -"decode-n", -"-char", -"-reference", -[2,6842,26976], -[2,26975,26977], -[2,10129,26978], -[2,26974,26979], -[2,26973,26980], -[3,26981,22], -[2,26982,1871], -[2,3370,16906], -[2,26973,26984], -[2,26973,5511], -[2,26973,553], -[3,4292,10], -[2,26988,8193], -[2,9406,26989], -[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31260], -[2,20627,6660], -[2,17991,6147], -[1,2343,26996], -[3,3137,10], -[0,27025,0,27026,34352], -[0,6400,4967,12042,12045,12047,1424,12048,12049,12050,12044,12056,12058,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,31268], -[1,2343,26999], -[0,26964,0,27001,2537], -[3,26986,16], -[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31276], -"anitize-uri", -[2,27000,27002], -[1,2343,27007], -"lines", -"trim-lines", -[0,26964,0,27001,2523], -[2,3138,3987], -[3,12133,20], -[2,27009,3987], -[1,2343,27012], -[0,26964,0,27001,2443], -[1,2343,27014], -[0,27015,27019,27020,2487], -[0,7709,33828,31294,31296,28384,1364,1532,1553,1560,1575,1594,29013,1874,2026,31300,31303,2040,33596,13870,2212,31305,2593,2738,11993,2863,1209,3173,3220,3222,3237,3242,3345,3478,12286,17009,4143,4351,31306,1155,25370,4729], -[2,27577,3432], -"mdn", -"mozilla", -[0,7806,38176,9227,5601,7808,10406,8264,4870,38179,24156,4874,16936,4891,9241,2020,2659,3297,4342,91,1984], -[0,12322,3730,30045,31310,31311,6949,21611,31312,5403,5995,4699,2026,20863], -[1,2343,27024], -[3,10848,19], -[3,2791,11], -[0,27037,0,27034,34352], -[0,188,4452,1593,668,2822,2924,1457,3084,1628,3560,4027,4634,4639,13152,53,1615,2092,1165,1195,37215,31325,4689,36119,3618,31331,31332,4681,1584,3676,31333,31334,4645,31343,3177,31347,31348,1549,31351,31353,3463,21287], -[0,1745,1179,188], -[1,2343,27028], -[0,27029,0,27030,2487], -[0,3725,3105,18587,3114,3107,31343,13122], -[0,1745,1179,1783,188,19469], -[1,2343,27032], -[0,27033,0,27034,2523], -[0,31332,3008,3084], -[0,1745,1179,188,19469], -[1,2343,27036], -[0,27040,0,27034,34352], -[0,31331,3029], -[1,2343,27039], -[0,27075,27077,27064,34352], -[0,31331,1615], -[1,2343,27042], -[0,27043,0,27034,4139], -[0,3412,31331], -[1,2343,27045], -[0,27046,0,27034,2523], -[0,31331,31343], -"@blazediff/core", -[1,2343,27049], -[0,27050,0,27034,2537], -[0,31331], -[1,2343,27052], -[0,27053,27054,27034,2523], -[0,1437,1869,2151,2205,2226,2570,4135,4452,10761], -[0,31414], -[1,2343,27057], -[3,26482,36], -[0,27058,0,27034,2537], -[0,1209,4333,13092,4334,31331,21288,31348,31375,31425,31314], -[1,2343,27060], -[0,27061,27063,27064,2537], -[0,31434,31435,31438,31442,31444], -"server-only", -[0,1429,2899,4474,2924,48,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,31455,31456,92], -[0,31459,31460,9439,31461,5131,11194,4653,1616,31462,31463], -[1,2343,27067], -"@types/title", -[0,27068,27070,27064,4139], -[0,31435,31469,31470], -[2,27074,29387], -[0,1429,2899,4474,2924,48,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,31456,92], -[1,2343,27072], -[0,0,0,2514,34352], -"hashring", -[3,30708,19], -[0,3698,11194,1582,31477,31480], -"jackpot", -[0,1429,2899,1177,1593,4474,2924,4469,48,1628,91,53,13693,4856,5087,4874,3165,3400,4677,6503,4880,4307,31484,5000,85,94,87,1954,1959,1938,1958,1895,1903,1955,1970,92], -"InnoDB memcached API", -[1,2343,27082], -"failover", -"hashing", -[0,27086,27087,27064,2443], -"membase", -"memcache", -"nMemcached", -[0,31465,31477,31480,31489,31490,31492], -[0,1429,4653,2899,1177,9420,1593,4474,2924,1894,48,91,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,1954,1959,1938,1958,31496,1895,1903,1955,1970,92], -[1,2343,27089], -[0,27095,27070,27064,2443], -"@json", -"joy.com/json-pack", -[2,27090,27091], -[3,27092,13], -[2,27093,614], -[0,4729,31435,31469], -"tree-dump", -[1,2343,27102], -[3,7746,11], -[2,8184,3358], -[3,4490,14], -[2,27100,10896], -[0,27104,0,27116,2487], -"fs.js", -[0,1497,31515], -"in-memory", -"fsa", -" access", -[2,6771,27107], -" file system", -[2,970,27109], -"webfs", -"crudfs", -"opfs", -"casfs", -"content ", -[0,31517,31518,5131,12344], -"able storage", -[2,15427,27117], -[2,27115,27118], -"pvu", -[1,2343,27123], -[2,7467,11017], -[0,0,0,7983,2537], -[2,24399,4162], -[2,2068,7906], -"mem", -"nanocolors", -[1,2343,27129], -[0,0,0,27131,2523], -"memoization", -[0,1098,5130,1388,17050,5472,12899], -[1,2343,27133], -[0,9756,27137,27139,2537], -[2,27135,1276], -[3,5536,15], -"gulp-exit", -[0,1166,1437,1596,3421,4255,4257], -"ram", -[0,1111,14903,200,30248,2966], -[1,2343,27141], -[0,17263,27142,27143,2523], -[0,23689,7892,10410,4874,20959,28502,1364,28556,2323,31190,2526,2765,31539,31540,2272,3297,4039,4089,31541,4130,4474,4487,31194,91,31195,31186], -[0,1973,5472,11132,13841,28522], -[1,2343,27145], -[0,0,27146,27147,2523], -[0,1173,1178,14318,1264,14237,1272,1177,1881,13936,1895,1935,1938,2126,2675,1192,2990,1894,4039,4535], -[0,31549,31550,31553,31565,9006,3015,31566,15813,10725,30672,5066,15571,89,31567,1098,188,12295,5131,28125,31568,31569], -[1,2343,27149], -[0,27150,27151,27152,4139], -[0,17013,31573,18695,1525,1544,18671,2107,2036,14940,18708,3173,31576,4039,18667,4449,18670,4547,18692], -[0,442,4856,9417,31586,31593,6494,31595,7746,4874,31607,6520,31613,1009,1011,31615,1429,1431,1587,1177,1895,1951,1954,1955,2020,2116,2212,12870,2899,3560,1894,6021,4085,4135,4193,4196,18698,4474,91], -[0,14932,1388,6147,9381,4967,13441], -[1,2343,27154], -[0,27155,27156,27157,2537], -[0,31573,14940,18714,18675,4039,4085,12937], -[0,1429,1431,2899,31627], -[0,9381,6147,4967,1388,14932,13441], -"fast refresh", -[1,2343,27160], -[0,27161,27169,27157,2537], -[0,17013,2036,6474,3173], -"trim-newlines", -[2,1420,21640], -[2,1677,21640], -"_comments", -[2,6865,27165], -[3,9488,13], -[2,27167,2104], -[0,1429,18766,2026,2272,2899,14942,4008,4085], -"-options", -[2,3183,27170], -[1,2343,27175], -"cat", -"kitten", -[0,27176,27177,27178,2537], -[0,2674], -[0,2292,2272,2899,4170], -[0,13428,1388,14336,12197,5472], -[1,2343,27180], -[0,0,27181,27182,2537], -[0,1173,1175,31653,1264,1429,2899], -[0,1420,15321,1623,965], -[1,2343,27186], -"from2", -"is-standalone-pwa", -[0,0,27187,27188,2537], -[0,19325,31265,1414,1537,1894,3985,3998,4039,4389,4505,91,1906], -[0,1936,18944,18089,6843,11043,1213,31661], -[2,3028,5056], -"stat-mode", -"ware", -[1,2343,27197], -"drafts", -[2,10722,27193], -"dir-equal", -[2,15340,27195], -[0,0,27187,27198,2523], -[0,1936,31670,18944,18089,6843,11043,1213,31661], -[1,2343,27200], -[0,0,27187,27201,2537], -[0,1936,18944,18089,6843,11043,1213], -"7zip-bin", -"node-7z", -"er-helper", -[2,18536,27204], -[2,3306,27205], -[1,2343,27208], -[0,0,27209,27210,2537], -[0,19325,31265,1414,1537,2577,2584,1894,3971,3985,3998,4039,4389,4505,91,4549,1906], -[0,1936,18944,26934,6843,11043,31661,31676,1213], -[1,2343,27212], -[0,27213,22487,27214,2537], -[0,31701], -[0,1473,7208,6616,1623], -[1,2343,27216], -[0,0,23215,27217,2523], -[0,965,1936,14186,34254,11590,1644,1646], -[1,2343,27219], -[0,27220,16487,27222,2537], -[0,2053,31724,20273], -"@surma/rollup-plugin-off-main-thread", -[0,1739,1745,8623,1179,1783,5354,26096], -"asyncro", -[3,1225,32], -[2,27224,6567], -[3,13998,31], -[2,7256,591], -[2,27226,27227], -[1,2343,27236], -"throw-", -[2,27230,27227], -[2,69,27231], -"directory-", -[2,27233,1633], -[3,16482,15], -[0,0,27240,27241,2523], -"evelopit", -[2,27235,27237], -"merge-d", -[0,2899,1429,2759], -[0,1623,6413,3766,31991,5131,1644,3529], -"river-install", -[2,27239,27242], -[2,3382,27243], -[1,2343,27247], -[2,14585,6082], -[0,0,27248,27249,2487], -[0,1596,2759], -[0,1871,3656,16906,1623,25232,6422], -[1,2343,27253], -[2,9280,20627], -[2,17991,27251], -[0,27254,27268,27269,2537], -[0,1634], -"factory-space", -[2,17991,27255], -[3,17995,17], -"unked", -[2,27257,27258], -[3,17995,16], -"ombine-extensions", -[2,27260,27261], -[2,26973,10368], -"resolve-all", -[2,26973,27264], -"ubtokenize", -[2,27000,27266], -[0,1414,668,1177,2899,4042,4228], -[0,1623,15215,2632,3178,16918,16919,31748], -[1,2343,27271], -[0,27272,27273,27274,2537], -[0,1147], -[0,1177,1895,1955,1894,4384], -[0,5675,57,7119,200,1523,7058,16159,31759], -"fill-range", -"@ember-tooling/blueprint-model", -"bracket", -[2,24559,1227], -[1,2343,27283], -"expansion", -"extglobs", -"lookahead", -[0,27284,0,27286,4139], -[0,1122,1125,31764,1129,1532,2220,2222,2817,18023], -"lookaround", -[0,31775,5995,2195,31776], -"lookbehind", -[1,2343,27290], -"negate", -[0,27294,0,27295,2537], -"negation", -[2,7623,22245], -"posix", -[0,2817,3502,18023], -[0,31775,5995,13531,20999], -[1,2343,27297], -[0,27300,0,27305,2537], -[3,7746,12], -[2,27298,1747], -[0,1532,2817,3181,3502,18023,31802], -"mime-score", -"runmd", -[2,4865,27304], -"rex", -[0,31775,5995,17977], -[1,2343,27307], -[0,27308,0,27309,2537], -[0,31809,2714,2867,3181], -[0,31775,5995,31804,31812], -[1,2343,27311], -[0,27312,0,27313,2523], -[0,1122,1125,31764,1129,1532,2220,2222,2817,3502,18023], -[0,31775,5995,2195], -"Min Heap", -"min heap", -"maxheap", -"min-heap", -"heap", -"Binary Heap", -"binary-heap", -[2,7247,17709], -[2,27318,27321], -[2,27315,27321], -" binary tree", -[2,15773,27324], -"heapify", -[2,13199,2656], -"heap sort", -"@utoo/pack", -"heapify up", -[1,2343,27335], -"heapify down", -"Priority Queue", -"priority", -[0,27342,0,27345,2537], -" queue", -[2,27334,27336], -[3,18020,13], -"-queue", -[2,27334,27339], -"priority q", -[0,1122,1125,31764,1129,2817,3502,18023], -"priorityQ", -[3,27325,15], -[0,31775,5995,17978], -"extract min", -"min ", -[2,27347,27337], -" priority", -[2,7287,27349], -[1,2343,27361], -"ing property", -[2,4327,27352], -" resizing", -[2,14000,27354], -"priority-", -[2,27356,20332], -[2,27357,26754], -[2,11512,27349], -[2,3768,27349], -[0,0,0,27362,2537], -[0,31775,5995], -"decrease key", -[1,2343,27367], -"increase key", -"searching", -[0,27368,0,27362,2399], -[0,3502], -[1,2343,27370], -[0,0,27371,27372,34352], -[0,5087,4874,1596,2070,1192,2822,31851,4468,4487,4490,31194,91], -[0,36720,7119,57,22856,5131,31568,7310,28125,888,8549,1388,18691], -[1,2343,27374], -[0,27375,27376,27381,2487], -[0,3127,3725,31872,31873,31869,8959,6330], -[0,1192,1170,2675,2968,1177,3188,4039,4042,4333,1637,1457,32826,1894,11401,1610,1193,53,1532,2990,2997,3400,1387,13834,8648,87,1939,31897,31901,4048,68,1938,4077,4069,1895,1955,4055,31899,1567,4067], -"@putout/minify", -"b64-images", -[2,1625,27378], -"readjson", -[0,2295,1739,1745,31903,1179], -[1,2343,27383], -[0,27384,27389,27396,2399], -[0,3445,1437,4747,1544,31910,17964,1836,2151,2182,3084,31915,3000,4151,4562,21847,31911,1549], -"try-catch", -"@arktype/attest", -"bench-node", -"try-to-catch", -[0,1166,1594,2020,2675,1177,4039,4042,2990,31917,4257,19286,31919], -"escover", -[3,19709,16], -"tout", -[2,27391,27392], -"madrun", -"supertape", -[0,17964,2295,1739,1745,31903,1179,200], -[1,2343,27398], -[0,27399,0,27400,2523], -[0,31939], -[0,965,31838,2814,5131,35059], -"brace", -[1,2343,27405], -"-expansion", -[2,27401,27403], -[0,27409,27410,27411,2537], -[2,25824,27403], -[2,4853,27406], -"zstandard", -[0,37135,1209,3847], -[0,48,53,87,90,1193,1503,1843,1845,1177,1895,1903,31952,1938,1954,1958,1959,1970,1192,1894,31953,3744,3775,89,3824,3904], -[0,1843,1192,8745,21009,3717,1448,6270,5472,2275,1973], -"jest-fixed-jsdom", -[1,2343,27414], -[0,27415,0,27416,2523], -[0,1086,31969,1362,31970,4484,4734], -[0,12666,1149,31972,31973,31974,31975,20672,31976,31977,7682,2090,158,3097,6774,5131,31978,31979,1644,1862,3972,31980,2056], -[1,2343,27419], -[2,27423,13083], -[0,0,8134,27420,34352], -[0,1867,23615,1936,18944,18089,31998,2574,20215,6435,1283,23584,6692,22982,4741,32000,32002], -[3,927,11], -[1,2343,27429], -[3,1915,14], -[2,27426,15001], -"signed", -"@prettier/", -[2,19569,27530], -"certificate", -[0,27430,27431,27432,2523], -[0,1448,32006,1869,1291,1180,1287,2151,32007,3127,3183,37708], -[0,1173,1208,1240,1280,1503,32009,1177,2899,3421], -[0,1776,5592,1746,1745,6789,32011,6746,32013,7221,32015,7011,32016,6615,32018,7194,32019,32027], -"fast-archy", -[1,2343,27435], -[0,0,9839,27436,2537], -[0,1177,6741,6939,1932,9711,5547,3624,2295,1745], -[1,2343,27439], -"ufo", -[0,0,27446,27452,2537], -[3,28920,12], -"dom-selector", -"jest-stencil-runner", -"fast-color", -[2,2023,9463], -[2,21195,27444], -[0,2212,4257,4389], -"mobservable", -"reactive", -"frp", -[3,19780,13], -"active", -[0,1745,3966,32037,27018,32038,30248,202], -[1,2343,27460], -"-programming", -[2,27451,27454], -[2,27450,27455], -[3,17943,11], -[2,6649,27457], -"data flow", -[0,15821,27461,27462,2537], -[0,4874,1414,1894,3985,3998,4481,4505,91,1906], -[0,23266,2587,23267,614,6435,1936,2741,11512], -[3,517,14], -[2,3191,1422], -[3,31504,15], -[1,2343,27469], -[2,13163,10101], -"expose-gc", -[0,15821,27461,27473,2487], -"-detector", -[3,20575,13], -"thingies", -[0,23266,2587,23267,614,6435,1936,1623,3585,1644], -"browser-st", -"dout", -[2,27474,27475], -"yargs-", -"@types/depd", -"rser", -"unparser", -[2,27477,27480], -"@11ty/posthtml-urls", -"inclu", -"-language", -[2,8785,27484], -[2,27483,27485], -[2,5340,27486], -"@moch", -"a/docdash", -[2,27488,27489], -"fail-", -"on-e", -[2,10372,4408], -[2,27492,27493], -[2,27491,27494], -"s-utils", -[2,13587,27496], -"inline-links", -[2,3986,27498], -"rewiremock", -"unexpected", -[2,668,27511], -"-eventemitter", -[2,27501,27503], -[3,27504,11], -[2,27505,3053], -[2,27505,3065], -[3,27507,12], -[2,27508,2917], -"uslug", -[3,1208,16,5], -"@11ty/recursive-copy", -"node-retrieve-globals", -[2,9374,27515], -"match-helper", -[1,2343,27522], -[2,5329,11807], -[2,5340,23767], -[2,9309,27520], -"node-loader", -"@zachleat/noop", -[0,27523,27524,27527,2537], -[0,12396,23288,23289,3746,4233,23257,23258], -[0,7729,4874,1414,2854,3493,1894,3985,3998,4505,91,1906], -"test-console", -"xmllint", -[0,23266,2587,23267,614,6435,1936,3493,6892,1633], -[1,2343,27529], -[0,15821,23215,27535,2523], -"-exports", -[2,151,27533], -"lcov", -"moji", -[2,9477,7204], -[0,23266,2587,23267,614,6435,1936,6941,11512,32101,32122,3661], -[1,2343,27538], -[2,120,28708], -[0,27539,27540,27541,4139], -[0,24566], -[0,1999,3165,1894,4387,4389], -[0,6892,1936,1644,1646], -"define-", -[2,14678,3205], -[2,27542,27543], -[1,2343,27548], -"-descriptors", -[2,9395,27546], -[0,0,27560,27561,2523], -"-val", -"ue-fixtures", -[2,27549,27550], -[2,5600,27551], -[3,7810,10], -"-each", -[2,27553,27554], -"s-have-names", -[2,23238,27556], -[3,18432,11], -[2,27558,7083], -[0,4874,1414,23276,2577,2584,3310,1894,3985,3998,4505,91,1906], -[0,1936,23670,10381,1213,11512,32143,12616,7102], -"@types/gopd", -[3,6497,11], -[2,27563,19065], -[3,4637,11], -[2,27565,20102], -[2,27563,27566], -[2,27563,2568], -[3,18491,11], -[2,27569,18985], -[2,13201,4552], -[3,26581,12], -[2,27572,19072], -[3,27573,13], -[2,27574,19077], -[2,27572,15058], -[3,8860,14], -[2,27577,3430], -[3,8860,13], -[2,27579,3022], -[1,2343,27582], -[0,27583,0,27584,2523], -[0,1676], -[0,27,2671,2934,2026,2078,32897,30135,33117,32150,32153,32154,32897,30131,32155,5995], -"@sap/hana-client", -[1,2343,27587], -[0,0,21181,27588,2537], -[0,1623,5260,32164,3561], -[1,2343,27590], -[0,27591,27592,27594,2537], -[0,2711], -[0,24118,24114], -"hrottler", -[0,1172,89,2711,5130,10772,24120,23361], -[1,2343,27596], -[0,27591,27597,27594,2487], -[0,32144,32191,24118,24114], -[1,2343,27599], -[0,0,0,27600,2537], -[0,1172,89,2711,5130,10772,24120,1936,24122,36,965,1388,4042,32199,32200,6802], -"unix-dgram", -"webidl2", -"unittest", -[1,2343,27605], -[0,0,27606,27607,2537], -[0,1700,2323,1637,3561,2494,32214,2482,2549,32215], -[0,1623,6398,6400,5130,5122,32219], -[2,2364,21928], -"-phantomjs", -[2,2463,27609], -[1,2343,27613], -"mockJSON", -[0,27615,27616,27617,2537], -"mockAjax", -[0,3220,4110], -[0,1149,2228,2258,2274,2281,2314,1776,1209,705], -[0,1367,32226,32227,1745,1776,18011,699], -[1,2343,27620], -"faste", -[0,0,27621,27625,2487], -[0,23689,4874,28502,2765,2272,4130,4487,31194,91,31195], -"st-validator", -[2,27619,27622], -[2,5310,2282], -[0,1973,5472,11132,13841,28522,2765], -"@icebob/node-memwatch", -[1,2343,27642], -"@types/bunyan", -"oredis", -[2,8802,27629], -"no", -"@types/pino", -"avsc", -[2,1317,1289], -"cbor-x", -"dd-trace", -"etcd3", -"event-l", -"oop-stats", -[2,27638,27639], -"fakerator", -[0,27653,27661,27663,2523], -"gc-stats", -"jaeger-client", -"kafka-node", -"-repl", -[2,3219,27646], -"msgpack5", -"nats", -"node-n", -"ats-streaming", -[2,27650,27651], -[0,16738,35957,7824,2798,3717,4468], -[2,29351,4255,591], -"notepack.io", -"redlock", -"rhea-promise", -"thrift", -"v8-natives", -[2,4712,13083], -[0,32243,10,13,16,19,21,24,26,30,32,34,53,87,192,22559,19181,442,16738,8755,554,4864,5087,4874,5254,1009,1011,27726,1193,1437,16307,1567,1610,10936,1177,1895,1938,1939,1942,1955,2020,2151,32245,2070,2203,2675,1192,2780,2832,3534,1894,4039,4094,4135,4484,4494,4507,91,4523,4769], -[3,14584,12], -[0,1192,91,1098,5472], -"messagebus", -[1,2343,27667], -"distributed", -[0,27668,27670,27671,2523], -[0,11518,1420,1437,1457,1525,1544,16082,3445,3613,3616,4200,4207,33212,4562,4729], -"ppsm", -[0,53,368,7948,370,554,811,816,32251,842,16145,966,968,972,974,11485,5087,19799,4874,4880,4883,24370,10844,9241,1009,1011,1030,32252,10783,1165,1610,1177,1895,1903,1938,1953,1958,1959,1192,2802,695,3363,3400,3561,37015,32253,1894,89,3824,3847,4039,4042,8849,4057,15277,2278,4315,4383,91,1983,32255], -[0,5472,1192,4967,17758,1676,32264], -[1,2343,27673], -[0,27674,27675,27676,4139], -[0,2757,32269], -[0,32272,32273,2398,2036,2899,5354], -[0,21738,13230,1676,1739,1745,16284,8623,1179,2036,1383,6706,3430,32275,32277,1209,6807,1783,1283,5354,26096], -[1,2343,27682], -"zone", -"timezone", -"olson", -"iana", -[0,27683,27684,27685,2399], -[0,32281], -[0,3088,3310,1187], -[0,3088,32289,4017,36,5995], -[2,5335,553], -[2,1351,27686], -[2,21289,27687], -"-provider", -[2,2138,27689], -[2,23107,27690], -[2,21289,27691], -[2,21289,553], -"worker-", -[2,27694,10057], -[2,21289,27695], -[3,27687,16], -"extdocument", -[2,27697,27698], -[2,4619,27699], -[3,27700,23], -[2,27701,103], -"vscode-uri", -[1,2343,27721], -"cohaszing", -[2,15276,27705], -[3,25072,11], -"monaco", -"@remcohaszing/eslint", -"remcohaszing", -[2,3996,27710], -"yaml-l", -[2,15675,2995], -[2,27712,27713], -[2,27716,27717], -[3,162,22], -"tegrations-common", -[2,8214,27719], -"-pattern", -[2,10853,11597], -[0,27727,27728,27729,4139], -"monads", -"either", -"maybe", -"result", -[2,1101,1177], -[0,26987], -[0,4874,1414,3167,1894,3985,3998,4505,91,1906], -[0,3167,32300,32301,10381,7131,32303,1936,3987,1783,4549], -"-connect", -[2,1304,27730], -"paginator", -[2,10784,27732], -[1,2343,27736], -"free-swig", -[0,0,0,27741,2537], -"gridfs-stream", -"mongodb-", -[2,3764,57], -[2,27738,27739], -[0,3167,614,6435,1936,10368], -[2,17037,15988], -[2,22785,4408], -"@types/rollup", -"istration", -[2,20897,27745], -"GUI", -[1,2343,27753], -"manage-mongo", -"phpmyadmin", -"UI", -"web-based", -[0,0,0,27754,2399], -[0,3167,614,6435,1936,10381,1213], -[1,2343,27756], -[0,0,27763,27766,2537], -"@mon", -"godb-js/saslprep", -[2,27757,27758], -"-string-url", -[2,21404,27760], -[2,27738,27761], -[0,16268,2228,2272,3220,4720,4535,17565,2296,32324,2283,2253,2273,2281], -"socks", -"snappy", -[0,4576,5131,7310,31568,13735,22856,1388,15525,32334,32336], -"mocha-sinon", -"gcp-metadata", -"legacy", -[1,2343,27783], -"erberos", -[2,13053,27771], -[3,7814,10], -"lprep", -[2,27773,27774], -"v8-heapsnapshot", -[3,27759,12], -"zstd", -[2,27777,27778], -[3,15507,14], -[2,27780,1002], -[2,9415,1435], -[0,27794,27808,27809,2537], -"mongodb-c", -[2,20203,7141], -[2,27784,27785], -[3,1982,16], -"@jimp/js-bmp", -"used-imports", -[2,27787,27789], -[3,13547,28], -[2,27791,591], -"@jimp/js-gif", -[0,16868], -"@jimp/js-jpeg", -"@jimp/js-png", -"@jimp/js-tiff", -"kareem", -"mpath", -"mquery", -"sift", -[2,27804,27811], -"acquit", -[3,24788,12], -"acquit-ignore", -"acquit-", -[2,27806,3209], -[0,1192,1177,4468,1894,91,5087,4874,16874,1895,1011,1009], -[0,32345,32346,1623], -[2,3044,5056], -"-blit", -"odm", -[2,27815,27816], -"datastore", -[3,27802,15], -"ur", -[2,27818,27819], -[3,27802,13], -"circle", -[2,27823,27824], -"-callbacks", -[2,1292,27821], -[3,27817,14], -"olor", -[2,27828,27831], -"node-monitor", -[2,21004,14837], -[3,27820,15], -"probe", -"JMX", -"ntain", -[2,27828,10177], -[2,27823,9970], -[2,27818,27836], -[2,9280,3233], -"displace", -"dashboard", -"monitoring", -"control ", -[2,27839,9872], -[2,27842,27843], -[3,27834,15], -"ther", -[2,27818,27860], -[3,6503,9], -"ngodb", -[2,27845,27846], -"-middleware-cast-ids", -[2,3236,27848], -[3,27849,16], -"fields", -[2,27850,27851], -"-callback", -[2,2034,27853], -[2,27850,27854], -[2,27850,14690], -[2,27850,3766], -[2,9251,21404], -[2,27850,27858], -"fisheye", -"gitbook-cli", -"gitbook-", -"plugin-a", -"nker-enable", -[2,27863,27864], -[2,27862,27865], -[3,27866,15], -[2,5317,4147], -[2,27867,27868], -[2,27876,27877], -"edit-link", -[2,27867,27871], -[2,27867,2195], -[2,27867,588], -[2,27850,1676], -[3,27844,14], -"lip", -[2,27818,3428], -[2,27818,10098], -[2,27818,24171], -[2,27818,27882], -"quantize", -[2,27818,24800], -[2,27885,27886], -[3,27883,14], -"otate", -[2,27818,17487], -"@jimp/utils", -[1,2343,27903], -[2,27891,27892], -"@jimp/co", -"nfig-eslint", -[2,24787,27894], -[3,549,17,16], -[2,27896,1984], -[3,27890,13], -"commist", -"node-self", -"help-me", -[2,1983,27901], -[3,19232,22,6], -"mqtt-packet", -[0,27906,23215,27911,2487], -"-allocator", -[2,6988,27904], -[0,9315,34578,31644,26972,32360,32364,32365], -[2,19332,6706], -"wsl-utils", -"monocart-coverage-reports", -"worker-timers", -[0,1644,1936,6843,11043,18944,18089], -"aedes-cli", -[3,5616,9], -[2,27913,202], -[2,11932,27914], -"leak", -"ed-handles", -[2,27916,27917], -"mqtt-", -[2,27919,21404], -"tinyglobby", -"node-style-text", -"level-store", -[2,27919,27923], -[1,2343,27929], -"/subscribe", -[2,20001,27926], -[2,19177,1783], -[0,0,0,27932,2537], -[2,27931,29682], -[3,218,19], -[0,3561,22147,676,134,89,1623,32372], -[2,26343,27934], -"ibus-quod", -[1,2343,27937], -"@tediousjs/connection-string", -[0,27938,21181,27941,2523], -[0,16837], -"msnodesql", -"tds", -[0,1623,5260,3561], -"node-tds", -"qlserver", -[2,3343,27943], -"msnodesqlv8", -"node-m", -[1,2343,27950], -"node-mssql", -"list-dependents-cli", -[0,0,27951,27952,34352], -[0,53,87,32389,10706,32390,1177,2765,2297,2881,2886,2895,2898,2910,2923,29946,3750,3758,4042,4045,6390,4071,4073,25238,824], -[0,22562,3758,3541,13428,32395,32396,5926,5472,11132,3750,28522,824,30271], -"@bundled-es-modules/cookie", -[3,27953,20], -"until-async", -[1,2343,27965], -[3,546,12], -"nfirm", -[2,27957,27958], -"@types/sta", -"tuses", -[2,27960,27961], -"headers-", -[2,27963,6422], -[0,27970,27971,27972,34352], -[2,8140,14643], -"json-bigint", -"page", -"page-with", -[0,1282,2555,3744], -[0,1389,1391,1437,1700,2323,2351,2404,2494,32402,2530,2541,3159,32405,89,3824,4603], -[0,89,5128,4384,32410,4453,6380,2555,5131], -[1,2343,27974], -[0,27975,27976,27977,4139], -[0,32421,688,28208,691,9712,9296,1091,1092,1437,1458,1543,1676,2226,2687,2822,12284,3173,3422,3423,3467,3742,4135,4183,4213,6479,176,36864,28731,4548,13291], -[0,11976,192,5467,9737,32432,29355,27654,811,8850,816,6373,5245,7637,7746,7812,5254,28736,28557,7677,36874,2675,2931,3297,1890,12285,1894,4042,15277,4494,4507,91,1984], -[0,5592,1118,2210,1745,27662,29370,3422,3452,29369,29365,29368,29367,28360,9591,8124], -"append-field", -[1,2343,27980], -[0,0,27985,27987,2443], -"fs-temp", -"testd", -"ata-w3c-json-form", -[2,27982,27983], -[0,5535,972,5087,4880,4883,34722,1009,1011,1597,1701,1177,1895,1955,1959,1961,2193,32447,1192,32448,3165,30935,32449,1894,89,3824,34725,4201,4468,91,32450], -"formdata", -[0,89,31611,5128,20542,4439,32453,1473,6400,13161,30858,3807,7320,31152,6653,32454], -[1,2343,27989], -[0,27990,27991,27993,2537], -[0,11804], -[0,87,90,4880,1843,1845,1192,3775,3904,4042,4045,4055,4067], -"array-union", -[0,4576,5131,7310,31568,13735,22856,1388,32464,32465,15525,11415,7201], -[3,20454,11], -"oxy-addr", -[1,2343,27997], -[0,0,27998,28000,2537], -[0,192,4874,4880,4883,4887,1009,23648,1177,1895,21564,1938,1953,1955,1958,1959,2675,1192,2990,3165,1894,3720,89,3824,3885,3889], -"pend", -[0,89,7433,38,3884,3885,32473,3286], -[3,32265,24], -"@jsumners/line-reporter", -[1,2343,28005], -"vue-drag", -[0,0,28006,28011,2537], -[0,3421,2832,2297,2899,89,3875,4193,1145,1177,1209,3698,4072,9381,1503,1593,3729,2924,1317,3824,32487,91,53,4874,2900,3876,4880,1195,8821,2925,107,2069,4883,87,4884,1959,3904,32488,966,2904,2881,2912,2895,38299,1011,11470], -"test report", -"html ", -"html report", -" to ", -[0,2062,4162,89,3797,32491,1693], -"json to html", -[1,2343,28014], -[0,0,0,28015,2537], -[0,3857,5131,12295,12296,6574,2090,11328,30045,32497,2636,2295], -[1,2343,28017], -[0,0,28018,28019,2537], -[0,97,4880,5091,89,3857,91], -[0,3857,5128,31912,89,5131,12295,12296,181,15571,35060,32504,158,32505], -[1,2343,28021], -[0,26338,28028,28029,2523], -"tory-reporter", -[2,2916,28022], -"mezr", -"web-a", -"nimations-js", -[2,28025,28026], -[0,1178,1177,1879,1895,1938,1947,1955,1959,1894,32510], -[0,3857,5128,31912,89,5131,12295,181,3730,32516,27819,9906,10036,32527,32529,1478,7521], -"bin-packing", -[1,2343,28032], -[0,28037,28041,28053,2537], -[2,20876,28090], -"autolink-", -[2,28001,26766], -"sqlstring", -[0,1654,32535,1655,1660,3744], -[2,27679,2085], -"urun", -"utest", -[0,32538,10821,14689,10828,32540,1178,1193,38304,1668,1177,1903,1938,1954,1958,1959,32541,1970,2675,1192,2990,1894,3720,89,3857,32510,3904], -[2,28050,28065], -[2,28887,28044], -"v2", -"aws-s", -"sl-profiles", -[2,28045,28046], -"generate-", -[2,28048,3046], -[3,29934,12], -"placeholders", -[2,5773,28051], -[0,3857,5128,31912,89,5131,12295,12296,13814,15480,9816,1653], -[1,2343,28055], -[0,28060,28061,28062,2487], -"assert-diff", -"sync-await", -[2,15907,28057], -"poku", -[0,2018], -[0,5079,1177,21166], -[0,3857,5128,31912,89,5133,5131,12295,12296,181,24633,32543,32552], -[1,2343,28064], -[0,28066,28068,28070,4139], -"vitest-pool-workers", -[0,21174,4649], -"thenify", -[0,32558,48,53,5241,85,87,14128,90,365,370,6372,811,816,6373,972,20562,4880,1178,1193,1610,1177,1895,1935,1939,1958,1959,1961,2126,29945,2193,32559,1192,30935,1894,3720,89,3824,32561,3904,4039,4042,4045,4073,91], -[2,31468,31471], -[0,89,32225,30245,4627,5398,8190,8191], -[1,2343,28077], -"bats", -[2,28075,28493,28553], -"switcher", -"@", -"@prisma/dmmf", -[0,28079,28081,28082,4139], -"gable-next", -[0,32571,31528,1461], -[3,29754,14], -[0,30533,5535,966,968,972,32573,4859,4874,4880,4883,1030,16480,1651,2832,23535,89,3824,4201,1531,4484,91,1984], -[0,89,6398,5066,5131,9320], -[1,2343,28086], -[2,28085,3259], -[3,28092,16], -[0,28087,28089,28096,2399], -[0,4484,32597], -"couchdb", -[0,32632,5535,4201,89,3824], -"spanner", -[2,30534,4675], -"@testcontainers/postgresql", -"fastest-", -[2,28093,18729], -"rtl-css-js", -[0,89,590,1623], -[1,2343,28099], -"iconista", -[0,0,28102,28104,2537], -"pnpm10", -"libreact", -[0,1148,2899,3697], -"jsxstyle", -[0,1623,1473,32453,2585], -[1,2343,28106], -[0,28107,0,7573,2523], -[0,32733,1004,32730,32737,32739,32744,32722,32736,32741,32720,32678,32725,32727], -[1,2343,28109], -[0,0,28110,27147,2523], -[0,53,87,92,192,5467,5583,16952,6373,10615,5087,4874,1009,1011,1031,17584,1178,1193,19839,1540,1610,1177,1903,1938,1954,1958,1988,2193,2675,2742,1192,2780,2990,4039,4042,4076,91,4630], -[2,30495,28112], -"lysia", -[1,2343,28114], -[0,0,28124,24467,4139], -"gitcloud", -"hasbin", -[2,34316,3863,34320], -"page-icon", -"premove", -"@types/hasbin", -"@types/pa", -"ge-icon", -[2,28121,28122], -[0,8144,1465,1584,1628,2092,6327,3177,1894,4028,2278,4111,4469,91,4027,2924,4677,4689], -"desktop", -"@vue-macros/common", -[1,2343,28128], -[0,2513,28129,28131,2537], -[0,5535,4201,968,972,32632,2780], -"proxy-lib", -[0,89,1564,32775,32776,32777], -"font-finder", -"pbxproj-dom", -"montag", -"simple-plist", -"ios-device-lib", -[2,21464,1155], -"proper", -"-light", -[1,2343,28146], -"-lockfile", -[2,28138,28141], -"ios-", -"sim-portable", -[2,28143,28144], -[0,28148,28149,28156,2487], -[2,28457,28462], -[0,32782,4484], -[0,5535,4201,32632,32786,1845,89,3824], -"-merge-patch", -[2,2072,28150], -[3,26989,11], -"ackage", -[2,28152,28153], -"@nativescript/doctor", -[0,32788,89,32789], -"-dev-xcode", -[2,3271,28157], -"provi", -[1,2343,28168], -"sion-finder", -[2,28159,28161], -[2,5131,28162], -[2,28143,28163], -"@rigor789/trapezedev-project", -"@rigor789/", -[2,28166,14562], -[0,28169,28170,28171,2523], -[0,1593,97,32796,32795], -[0,695,3709,2924,1628,91,53,2969,4677,1195,4307,32808,4689,87,4359,4681,92,83,1198,5756,61,78,76], -[0,7201,1676,5131], -[2,32904,364], -[1,2343,28174], -[0,0,28181,28185,2399], -"@types/pl", -"ist", -"@types/plist", -"@types/retry", -[3,5364,9], -[2,28179,3924], -[0,4874,9743,4579,1983], -"@types/pacote", -"btab", -[2,8153,28183], -[0,1983,5130,6731], -[1,2343,28188], -"@types/tunnel", -[0,0,28201,28212,2523], -"@types/xml2js", -"@types/ar", -"chiver", -[2,28190,28191], -"@types/qr", -"-image", -[2,28193,28194], -[3,7810,11], -[2,28196,2138], -[3,13418,17], -[3,5090,11], -[2,32904,4412], -[0,1175,1195,1267,1610,1628,2092,3342,8119,4111,32821,4307,188,4634,4639,4640,4645,2924,4681], -"er-lockfile", -[2,28199,28202], -"@types/np", -"mcli__arborist", -[2,28204,28205], -[3,9315,10], -[2,9710,15774], -"al-analytics", -[2,9788,28209], -[2,28207,28210], -[0,9006,29633,32827,32828,32829,32830,32831,4967,32832], -[1,2343,28216], -[2,31819,31823], -[3,27933,13], -[0,28217,0,27026,4139], -[0,1415,1842,31290,31331,4562,31386,6330], -[1,2343,28226], -"afinn-165", -"-fin", -"ancialmarketnews", -[2,28220,28221], -[2,28219,28222], -"apparatus", -"memjs", -[0,0,28227,28250,2523], -[0,48,53,61,78,87,92,5601,32840,5087,4874,15600,1009,1011,1175,1193,1198,1177,1881,1895,1938,1955,1192,11948,1894,4131,91], -"stopwords-iso", -"@libsql/client", -"wordnet-db", -[2,31005,26449,28684], -"browserfs", -[2,2441,20008], -"pegjs", -"uubench", -[2,32904,2942], -" language processing", -[2,3273,28237], -"arti", -"fical intelligence", -[2,28239,28240], -"Porter stemmer", -"Lancaster stemmer", -"bigram", -"trigram", -"quadgram", -"ngram", -"stemmer", -"bayes", -[0,1192,2022,6703,1149,7003,1862,11857,5472,2275], -"classifier", -[1,2343,28254], -"phonetic", -[0,28255,28257,28259,2523], -[0,28502,4130], -"metaphone", -[0,23689,28556,2323,31190,2765,3560,31541,91], -"inflector", -[0,5472,11132,13841,28522,13426], -"Wordnet", -"tf-idf", -"logi", -" regression", -[2,17132,28263], -[2,28262,28264], -[2,4420,28256], -"jaro-winkler distance", -" distance", -[2,26006,28268], -"string ", -[2,28270,26017], -"-of-speech tagger", -[2,3251,28272], -"Eric Brill", -"Brill tagger", -" analysis", -[2,4137,28276], -"maxim", -"um entropy modelling", -[2,28278,28279], -[1,2343,28284], -"@mrleebo/prisma-ast", -[2,31733,21302], -[0,28292,28293,28294,2537], -"secure-keys", -[2,28288,6008], -"nconf-yaml", -"@prisma/c", -"key value store", -[2,18124,13729], -"plugabble", -[0,1086,1437,1700,2070,2714,3183,3760,705,4039,4135,4734], -[0,13194,7740,28197,4865,29105,23689,9129,7892,4874,11304,16936,20959,28502,5254,28189,28556,2323,31190,2765,4089,4130,91], -[0,1098,1973,5472,3750,11132,13841,28522,4130], -[1,2343,28296], -[0,9756,9839,28297,2537], -[0,1871,6843,3656,4289,7062,6922,6981,6701,6581,6700,1111,1867,5281,200,6876,7009,7201,6575,6611,6795,6960,7135], -[1,2343,28299], -[0,7558,28300,28301,2523], -[0,4874,668,32894,2929,32895,91,4579], -[0,32901,23542,5130,23543,6812,27,5592], -[1,2343,28305], -"near social", -"bridge", -[0,28306,0,28307,4139], -[0,2856,32889,2822,5307], -[0,29699,32891,1541,1745,29703,29753], -[1,2343,28311], -[3,18018,14], -[2,28309,1633], -[0,0,28313,28315,2487], -"exec-time", -[0,1429,4856,4874,32903], -"@lit/context", -[0,32910,37123,32911,32912,32913,13428,5472,6533], -[1,2343,28317], -[0,28318,0,26863,2399], -[0,32918,32919,1699,3547], -[1,2343,28320], -[0,6263,0,28321,2523], -[0,89,5128,9267,553], -"@codspeed/", -"payload", -"@fig/complete-commander", -"@golevelup/nestjs-discovery", -"xhr2-cookies", -[2,30999,30499], -[1,2343,28330], -[2,28338,28349,28603], -[0,26964,0,26997,2537], -"@postman/tough-cookie", -[2,15679,19490], -"chardet", -[1,2343,28337], -"liquid-json", -"postma", -[0,26964,0,27001,2487], -"@interna", -"n-collection", -[2,28336,28339], -"-transformer", -[2,28340,28341], -"postman-", -[2,28343,705], -"postman-r", -[2,28345,96], -"d-error", -[2,14628,28347], -"tionaliz", -"@postman/", -[1,2343,28359], -"shipit", -[2,28350,28352], -[2,29833,17978], -"file_lint", -[2,17878,28355], -"parse-git", -[2,28357,2687], -[0,28364,28381,28409,2537], -"postman", -[2,178,28363], -"rest-client", -"rack-changes", -[0,32953,25996], -"@profoundlogic/hogan", -[3,2665,10], -"@grpc/grpc-js", -"@grpc/", -"print-sizes", -"proto-loader", -[2,28368,28370], -"@newrelic/security-agent", -"@tyriar/fibonacci-heap", -"in-the-middle", -[2,2701,28374], -"module-de", -"s-from-path", -[2,4378,28377], -[2,28376,28378], -[2,4013,28374], -[0,13662,1389,35268,4389], -"@aws-sdk/s", -"3-request-presigner", -[2,28382,28383], -"@koa/router", -"@newrelic/", -[2,28386,7625], -"-oss-cli", -[2,3284,28388], -[2,28386,28389], -"test-util", -"ities", -[2,28391,28392], -[2,28386,28393], -"@slack/bolt", -"@smithy/eventstream-codec", -"@smithy/", -"util-utf8", -[2,28397,28398], -"borp", -[2,16306,20353], -[3,4962,10], -"iler-runtime", -"git-r", -"aw-commits", -[2,28404,28405], -"CKEditor", -"self-cert", -[0,7518,5398,17819,18266,32958,12075,32960,4967,1389], -[1,2343,28412], -"debugging", -[0,28414,28424,28430,2537], -"profiling", -[0,32980,32981,32983,32984,32986,1398,1437,1443,1759,1763,2018,2071,37853,2182,2212,2687,2720,17450,2856,32987,32988,9478,3729,4135,4164,4400,91,32990,32993,32989], -"unlimited-timeout", -"WYSIWYG", -"WYSIWYW", -"@panva/hkdf", -"id-client", -[2,3445,28419], -"-to-string", -[2,694,28421], -[2,3698,28422], -[0,188,32996,32997,33004,33007], -"@types/oauth", -[2,4874,3360], -"@next", -"is-in-ssh", -"powershell-utils", -[0,32940,33010,5130], -[1,2343,28437], -[3,13983,14], -[2,28432,89], -"-pragmatic", -[2,13062,28434], -"@edge-runtime/jest-environment", -[0,28447,28448,28449,34352], -"oauth2", -"nextauth", -"seneca-transport", -[2,36883,28443], -"rich-text", -"astify", -"async ", -[2,28444,1852], -[2,28444,5746], -[0,97,33015], -[0,1192,2278,2675,89,1843,1177,2924,1894,1610,3824,48,1628,3988,91,53,2990,3400,4111,4677,4880,1195,4307,33020,33021,9310,28809,10837,87,11011,90,1959,827,33023,1895,1947,1955,2780,92,10821,29872,10840,1011,10825,83,1009,32341,28970], -[0,89,4627,26612,35126,33026,5131,29832,91,33027,33033], -"grammy", -[1,2343,28463], -"qs-esm", -"TestBed", -"how-to", -"@scripts/build", -[2,28573,553], -[3,14691,18], -[2,32700,28478], -[2,12392,1098], -"dataloader", -"bson-objectid", -"nboarding", -[0,28481,28492,2514,2537], -"render-jsx", -"@rolldown/pluginutils", -[2,28472,1973], -"localhost", -"tunneling", -"webhook", -[2,28471,28596], -[3,37983,14], -[3,34476,19], -[2,16639,15112,28475], -"onesy", -"hecker", -[2,16639,28477], -"vitest-runner", -"grab", -[2,28489,28490], -"deep-defaults", -[0,1437,1483,1525,3127,14774,4135,33043], -[2,10740,28487], -"enqueue", -[2,14185,4225], -"minstache", -"sliced", -"table-printer", -[2,3192,5701], -[3,30527,35], -"collisions", -"@rstest/core", -[0,8147,33046,4874,5254,33047], -[2,28508,28526], -"@nightwatch/chai", -[3,28494,12], -[3,2791,13], -[2,28496,2324], -[2,28495,28497], -[2,3294,11496], -[2,28495,28499], -"lenium-webdriver", -[2,5252,28501], -[2,1432,3294], -[2,11097,20500], -"didyoumean", -[3,28499,11], -"@amaui/ui-react", -[3,5069,14], -"axe-verbose", -[2,28506,28509], -[3,17011,11], -[2,28511,57], -[3,31827,17,5], -[2,4925,4381], -[3,28514,12], -[2,11937,16609], -[2,28515,28516], -"@payloadcms/translations", -"wait-on", -[1,2343,28527], -[2,3294,676], -"selenium", -"automat", -"ed-testing", -[2,28523,28524], -"acos", -[0,28528,28529,2514,2537], -[0,35198,4763,1497,1687,33057,4361,1983,1082,1371,1676,9348,12449,977,1636,11480,3958,4135,11501,1458,11478,668,33058,28564,2822,6042,3479,3742,29535,33059,26379,4955,33149,3530,25648,4542,28623,33061,11869,27921,5732,33062,2628,3090,4748,2007,33063,19639,7610,37014,33064,4555,33065,33068,29533,33069,10895,5210,9485,33070,33071,3749,33074,33075], -[0,23813,2278,4042,4548,1984,1448,4549,33080,30138,33082,91,12396,2024,3975,5245,33390,30559,5254,33083,34673,7637,7812,12127,3327,8648,20374,11868,23312,33084,7744,21626,3963,33087,33088], -[1,2343,28536], -[2,28532,28547], -[3,11555,18], -"text-", -[2,28533,9254], -[2,11122,28534], -[0,28538,0,2514,2523], -[3,11138,16], -[0,1506,33093,3460,4535], -"mochify", -[3,4887,19], -"-universal", -[2,3752,28541], -[2,3752,1289], -"@backstage/backend-common", -[1,2343,28546], -[0,28548,28549,28551,2399], -"owellformed", -[0,1512,2151,2720], -[0,1177,1939,1192], -"propagate", -[0,8310,1179,8635,200,28582], -[1,2343,28555], -[3,31893,18,13], -[2,12302,28732], -[0,0,28560,28561,2399], -"clang-format", -[2,23260,28729], -"n-api", -"napi", -[0,811,816,1437,1836,1177,1895,1938,33110,14282,2674,2675,2990,2899,6041,1894,4039,4042,4055,33111,4232,4390,11482], -[0,4989,1283,3358], -[1,2343,28563], -[0,0,28571,2514,4139], -"fontace", -[2,14743,4504], -"ffee", -[2,2251,28566], -"grunt-i", -[2,2426,2499], -[2,28568,28569], -[0,1009,1011,1177,1883,1895,1915,1938,1947,1955,1959,1961,2675,2990,1894,89,91], -"baseline-browser-mapping", -[3,4090,11], -[2,28606,8734], -"host-validation-middleware", -[2,16826,5260], -[2,14614,28576], -"used-de", -"ps-analyzer", -[2,28578,28579], -"@4c/rollout", -"skeleton", -"formate", -[1,2343,28587], -[2,5559,27], -[2,28689,89], -[0,28597,28600,28601,2537], -"dynamic-", -[2,28588,1681], -"filewatcher", -[2,28914,594], -"xunit", -"tap-xunit", -"nextjs-api-reference", -[2,30999,28884], -"l", -[0,33139], -[2,31222,31227,31234], -"subdir", -[0,6503,1699,2899], -[0,5122,1973,8791,33143,2899,5130], -[1,2343,28609], -"ed/date", -"char-regex", -"emojilib", -"@scripts/", -[2,28616,6988], -"skin-tone", -[0,0,28621,28622,2537], -"s-per-line", -[2,16233,28610], -"cspell-config-lib", -"emojis", -"smiley", -"smileys", -[3,28329,19], -"smilies", -"ideogram", -"ideograms", -"@nuxt/fonts", -[0,5535,5087,1009,1011,33175,25917,35358,1473,1177,1895,1955,2070,1192,1894,4042,4073,4076,4201,4443,4468,4474,4484,91], -[0,1473,57,6270,4439,32453,6616,30289,33190,30291,620,33201,31453,1623,33203,6653,33205,33207,3178,33216], -"unstorage", -"fetch-blob", -"ttypescript", -[2,1432,7253], -"nsumers", -[2,25687,28627], -"jsdoc-to-mdx", -[1,2343,28633], -"@nuxt/icon", -"@nuxt/kit", -[0,5914,28661,28662,2487], -"igitalbazaar", -[2,27235,28634], -[2,19946,2903], -"-websocket", -[2,6710,28637], -[2,27694,1194], -[2,28660,32819], -"aes", -"asn", -"asn.1", -"cbc", -"csr", -"des", -"gcm", -"hmac", -"pkcs", -"pki", -"prng", -"rc2", -"rsa", -"sha256", -"sha384", -"sha512", -"tls", -"x.509", -"x509", -[3,218,21], -[0,30533,192,5467,30535,10614,6494,5087,4874,1009,1011,1177,1895,2675,1192,1894,3980,4468,91], -[0,30538,6710,14584,91,30540,30543,5130,29752], -[1,2343,28665], -"seneca-joi", -[0,26964,0,26966,4139], -"c2dm", -"fcm", -[1,2343,28669], -[0,28670,28671,28682,4139], -[0,33071,30616,26407,26411,12396,7637,9363,26414,26415,23276,2577,2584,2588,2681,2822,37507,3090,26418,26568,12429,26421,3958,9393,12443,4542,4549,4555,12449], -[0,8648,4874,7677,34683,26431,1984], -"@nuxt/schema", -"@nuxtjs/color-mode", -"geocoder", -"pulse", -"geocoding", -"geo", -"mapquest", -"agol", -"arcgis", -"tomtom", -[0,1739,1745,34683,26440,26445], -[1,2343,28695], -"libsql", -[2,28694,176], -[3,5781,10], -"l-backoff", -[2,28686,28687], -[3,21276,15], -"require-in", -[2,28690,2429], -"piña", -"pigna", -[3,30585,14], -[0,28696,28697,28662,2537], -[0,2026,3951], -[0,30533,192,5467,1300,30535,10614,6494,5087,4874,1009,1011,1177,1895,2675,1192,1894,3980,4468,91], -"high5", -[2,12075,57], -[1,2343,28705], -"js-parser", -[2,1936,28701], -"-benchmark", -[2,15512,28703], -[0,28730,28750,28758,2537], -"mocha-each", -"neutron-html5parser", -"ookmark", -"colortranslator", -[2,15277,12610], -[2,28712,28725], -[3,10130,17], -"biased-opener", -"data-uri", -[2,25894,28714], -"v8-debug", -"v8-profiler", -[2,28742,28749], -[2,28720,28721], -[3,32265,26], -"ble", -[2,28723,7059], -[3,12133,21], -"vitest-browser-react", -"ber-animation", -"dummy", -[2,23814,28898], -"http mock", -"zipper", -[0,3951,4474], -"toposort", -"quality-insights", -"growly", -"words", -"shellwords", -[2,28738,28741], -"nexe", -"@types/to", -" center", -[2,9044,28739], -"posort", -[3,26699,15], -"mac os x 10.8", -[2,4402,3329], -"windows ", -"8 notification", -[2,28745,28746], -"toaster", -"auto-height", -[0,192,5467,10614,6494,5087,4874,1009,1011,1437,1177,1895,2675,1192,1894,3980,4468,91], -"tabbable", -[2,8180,594], -[2,29518,28757], -"@radix-ui/react-checkbox", -[2,28756,45], -[3,28754,16], -"vfs", -[0,30538,6710,91,30540,30543,5130,29752,5995,6082], -[1,2343,28760], -[0,26964,0,26966,2537], -[2,28762,9006], -[3,28718,20], -[2,3958,28764], -[3,26414,16,5], -[1,2343,28767], -"@internal/test-utils", -[0,26964,0,26997,2443], -"ps-list", -"code-blocks", -"pty", -[2,6426,7009], -"forkpty", -"openpty", -[1,2343,28787], -[2,28776,28777], -"expressi", -"ve-code", -"@node", -[2,9057,3642], -[2,28793,28798], -"-red/util", -[2,28778,28781], -[2,3341,2110], -"@node-red/", -"nodes", -[2,28784,28785], -[0,25316,28788,28796,2537], -[0,603,11018], -[2,216,28812], -[2,28784,7047], -"editor-api", -[2,28784,28791], -[3,28718,19], -"iot", -"fix-dts-default-cjs-exports", -[0,188,4646,1542,32977,28692,28693,32312,5592,18496,5490,91,4799,998,6953], -[2,28826,16860], -"play", -"sass-graph", -[2,1152,14741], -"stdout-st", -[2,28801,2187], -"-case-path", -[2,4938,28803], -[2,28742,28875], -[2,4550,13786], -"@jsopen/objects", -[1,2343,28810], -[2,34443,25240], -[0,28819,28820,5893,2523], -"modern.js", -"alpha-function", -"long-timeout", -"sorted-", -[2,20096,20835], -[2,28814,28815], -[2,30633,30886,31217], -[3,1419,11], -[0,28751,444,28752], -[0,90,28754,28755,968,972,974,4880,4883,1030,1497,89,3824,3882,3885,4023,8187,28724,1541], -"recurrent", -[1,2343,28823], -[0,28824,28825,28828,4139], -[0,28763], -[0,34683,2020,28766], -"unplugin-", -"deepcopy-esm", -[0,26445,28769,1745,28775,9348,28779,26440], -[2,9357,28832], -[2,28831,30581], -[3,12447,17], -"-convert", -[1,2343,28834], -[0,0,0,28835,2523], -[0,30999,28818,5995], -[1,2343,28839], -"fs.watch", -"watchfile", -[0,28840,28841,28848,34352], -[0,28775], -[0,9363,9315,23312,3978,3992,3999,9348,4549,12449,28766], -"stories", -[2,819,664,33355], -"ngn", -"daemon", -" logging", -[2,2013,28846], -[0,28769,1745,28775,9348,28779], -"elevate", -"sudo", -[1,2343,28852], -[0,28864,28867,28870,4139], -"store2", -[2,28855,7625], -[3,28518,12], -"@mgcrea/eslint-config-node", -"-lts", -[2,19439,28857], -"node-ipc", -"excel", -"xls", -"zeptomatch", -"picoquery", -[0,2121,2127,1690,2024,4507], -"rolldown", -"amaui", -[0,28470,2180,5476,5478,1414,2198,91], -" extend", -[2,6970,28868], -[0,2313,1383,614,202,1388,5995,4967,1145,1973,1429,2340,2350], -[1,2343,28886], -[2,13402,2942], -[2,28874,8817], -"@appium/s", -"class-names", -"firefoxos", -"combyne", -"for-publish", -[2,1463,28878], -[2,31228,14372], -"libgit2", -"git2", -[2,28742,26542], -[3,31782,22,5], -"vendors", -[0,0,28888,28889,2523], -[2,9191,3595], -[0,1330,1389,1596,2759,2899,4170,4535], -[0,20215,4741,2574,36796,6847,1965,1867,10368,7131,1155,1936,1623,14419,37953], -"libbase64", -"libmime", -"libqp", -"ntlm-auth", -[2,26444,28893], -[2,13857,9224], -[2,28742,188], -"Nodemailer", -"hun-ky", -[2,32723,28900], -"hex-color", -[2,28902,28905], -[3,28899,21], -"undefsafe", -"pstree.remy", -"sl-color", -[2,32723,28907], -"rgb-color", -"autoload", -[2,31281,4202], -[2,819,45], -[2,28742,28916], -[2,6097,6142], -[2,15701,28915], -[3,693,10], -"vision-history", -"wheel-gestures", -"multimeter", -[1,2343,28975], -[2,30211,30221], -"@asamuzakjp/css-color", -"node-webkit", -"drc", -"lz4", -"potx", -"xltx", -"dotx", -"async-redis", -"ipfilter", -[2,2032,28928], -"express-ws", -"xltm", -"ots", -"json-logic-js", -"json-sql", -[2,7060,1146], -"line-reader", -"mocker", -"-data-", -[2,28938,1179], -[2,28937,28939], -"pino-pretty", -"odg", -"otg", -"promise-mysql", -"stjs", -"otp", -"ott", -"uuid-random", -"docm", -"nolang", -"Programming", -"programm", -"ing language", -[2,28952,28953], -"dotm", -"descriptive", -"5GL", -"potm", -"json schema", -"Mehdi Salartayefeh", -"pptm", -[2,8293,200], -[2,8293,3561], -"knitwork", -[2,28968,28969], -" parser", -[2,5675,28966], -"esbuild-re", -"act-compiler-plugin", -[2,28971,1172], -[3,29874,35], -[2,28973,4298], -[3,5240,29], -"ohash", -[0,28989,0,28990,2523], -"admin-panel", -"absolute", -"backslash", -"delimiter", -"file-path", -"forward", -"slashes", -"trailing", -"unix", -"urix", -"headless-cms", -[2,1917,11597], -[2,819,3877,29320], -[0,28507], -[0,45,29,36246,89,4967,6400,5995,10768,5122,1388,5284,676,91,202,6710,6082,28866,594], -"normaliz", -[2,28991,5218], -"normali", -[2,28993,6079], -[1,2343,28998], -"simplify", -"canonical", -[0,29046,0,29047,34352], -[2,29171,594], -"lit-analyzer", -[2,32700,29003], -"mouse", -"attract", -"mouse wheel", -[2,29006,29007], -[3,26450,35], -"ubble", -[2,32700,1544], -[2,29010,29011], -[3,31198,35], -"ause", -[2,32700,34141], -"escape-goat", -[3,9577,11], -"from-git", -[2,29014,29015], -"teractive", -[2,20043,29017], -[2,28489,29003], -"is-scoped", -[2,29027,29029], -"issue-regex", -"listr-input", -"new-github-release-url", -"npm-name", -"p-memoize", -[3,32722,21], -"map-obj", -"asing-quad", -"write-package", -[2,32731,3924], -[2,29033,4390], -[3,26495,20], -[2,29035,29036], -[3,28909,22], -"troke-color", -"is-cidr", -"ts-lit-plugin", -"libnpmorg", -[2,33533,29041], -"ormatjs", -"libnpmpack", -[3,29818,15], -"libnpmteam", -"MDX", -[0,28872,28873,13411,4507], -[0,13428,5284,28522,11132,12295,12296,28876,5472], -"fs-m", -"reka-ui", -[2,37399,29156], -"fs-minipass", -[1,2343,29064], -"npm-profile", -[2,2977,7193], -"@sigstore/tuf", -[2,2977,15525], -[2,636,1541], -"audit-report", -[2,3382,29058], -"-pipeline", -[2,21505,29060], -[2,4570,2649], -[2,3382,29062], -[0,26871,0,26863,2399], -"relative-date", -[2,11072,29065], -[2,28093,26006], -[1,2343,29074], -[2,636,3358], -[2,636,1739], -"@tufjs/repo-mock", -[3,26037,13], -[2,29072,2203], -[0,29075,0,7573,2537], -[0,1004,31231,32914,28909,31262,31272,28899,28901,28906,31282], -"-draft2019", -[2,1092,29076], -[1,2343,29119], -[2,29080,29081], -[3,23075,14], -"rrect-media-syntax", -[2,29089,29090], -"-record", -[2,17495,29083], -"giturl", -"nfig-loader", -[2,18323,29086], -"semver-diff", -[3,32593,24], -"ort", -[2,29092,29094], -[3,32686,13], -"outdated", -"dx-jsx-attribute-sort", -"updating", -"updater", -[2,29098,29099], -[3,29091,20], -"no-void-children", -[2,29098,29107,29118], -"@trivago/prettier-plugin-sort-imports", -[3,27782,13], -[2,29102,8961], -[2,13197,176], -"@types/ini", -[3,8141,13], -"quote-st", -"helpfulerror", -[2,16476,29108], -[2,29106,29109], -[2,7726,27005], -"@types/npm", -"-registry-", -[2,29113,1612], -[2,29112,29114], -[3,16478,13], -[2,29116,13722], -"yle", -[0,0,0,29163,2537], -[2,2645,89], -[3,6544,14], -[2,29121,594], -"pdate-", -[2,29123,3329], -[2,7817,29124], -[3,1898,15], -"aine", -[2,29126,29127], -"fp-and-or", -[3,9506,11], -[2,117,29153,29494], -[2,29098,29134,29135], -"jsonlines", -"self-clos", -"e", -"prompts-ncu", -"postcss-clean", -[2,25813,594], -[2,4524,2845], -"verdaccio", -[2,8551,4675], -"vite-node", -[2,29145,29146], -"upgrade", -[3,29132,21], -"horthand-attribute", -[2,29098,29148], -"unique-attribute-name", -[2,29092,29150], -"edia-style", -[2,32704,29152], -"idden-table-cell", -[3,6138,9], -[2,7686,4692], -[2,22060,3122], -"variants", -"ypescript-tc", -[2,22060,29157], -[3,17312,29], -[2,29159,12844], -"unplugin", -"auditor", -[0,45,29,36246,89,4967,6400,5995,10768,5122,1388,5284,676,91,202,6710,6082,28474,594], -[1,2343,29167], -[2,28826,29166], -"auto-import", -[0,26964,0,26966,2487], -"variadic-function-arguments", -"mutate-fs", -"@publint/pack", -[3,1014,15], -[1,2343,29173], -[0,29177,0,21958,2537], -"minizlib", -"minipass-", -[2,29175,1612], -[0,4729,2070,31705,4747,4135,1862,1301,1525,2731,4116,1109,1193,31856,3145,4705,31859,3717,3878,1079,31861,28512,31864,24169,3957,31867,2784,31871,31877,31880,31884,31891,21129,31896,28073], -"fast-equals", -"registry", -[1,2343,29199], -"autodocs", -[2,31092,3452], -"@pm2/blessed", -"padend", -[2,18996,29184], -[2,29189,27863,20181], -"ysticatea", -[2,16693,29187], -[3,28544,19], -"commandline", -"npm-scripts", -[2,29193,1541], -[3,28544,11], -[2,29193,11857], -[2,29196,29198], -[3,31303,12], -"neostandard", -"ise-router", -[0,29216,0,7573,2399], -[2,29189,11017], -[2,29202,29203], -[3,29192,12], -"atalog-model", -[2,29202,25240], -[2,29193,13224,29206], -"atalog-common", -[2,29209,202], -[2,28270,6270], -[3,29205,26], -"yarn to npm", -"@daybrush/jsdoc", -"backstage", -"ci/cd", -"immobiliare", -[2,29214,12825], -[0,28880,1004,29031,29032,31244,1418,26495,32926,26483,26489,32934,29021,29034,28458,31198,29012,29009,26450,29005,26482,30527,29001,29008,1445,29019,28479], -[1,2343,29221], -"npm upgrade", -[2,28826,10309], -"vaul-vue", -[0,29223,29225,26824,2523], -"rgv", -[0,4484,29755], -[2,1262,25816], -[0,89,1177,4039,4042,1894,3824,91,4874,4880,3884,4883,3885,28540,8656,8660,4887,10817,1011,1009], -[2,34674,588], -"npm-cli", -[2,29229,29303], -"@hyrious/esbuild", -[1,2343,29232], -"ntainer", -[0,29256,29257,29258,34352], -[2,26109,28923], -[3,28200,13], -[2,29240,29249], -"@cropper/", -"are-", -"we-there-yet", -[2,29237,29238], -[3,10309,13], -"image-cropping", -[2,29243,3642], -"image-view", -"image-processing", -"cropper-element", -"mocha-jsdom", -[3,31831,14], -[3,5926,13], -"-type-helpers", -[2,29254,29255], -"cvss", -"-npm-utils", -[2,19773,29252], -[3,3978,9], -"arry-night", -[0,29186,29192,29194,1364,2026,29195,2664,4709,4757], -[0,29200,29201,29204,29205,29207,6494,9240,3244,4342], -[0,29212,17978,29213,29214,29215,5995], -"@asteasolutions/zod-to-openapi", -"gluegun", -"@trpc/server", -[2,17612,29264], -"nuke", -"custom-alias", -[2,4026,29266], -"tspaths", -"@nuxt/eslint-config", -"event-driven", -"money", -"blaze", -"percentage", -[1,2343,29274], -[2,8293,1983], -[0,26964,0,26997,2523], -[1,2343,29278], -"a-sync-waterfall", -"asap", -[0,0,29286,29287,2537], -[2,3522,364], -[2,3192,29279], -[3,29280,16], -[2,29281,2759], -[2,5223,8861], -"s-browser", -[2,19390,29284], -[0,1148,2899], -[0,26257,1111,1473,7208,1437,1623,32453,6616,29222], -[3,26364,17], -[1,2343,29296], -"@nuxt/module-builder", -[2,18124,2844], -"@4c/tsconfig", -"@react-bootstrap/babel-preset", -[2,29344,7625], -"@nuxt/test-utils", -[0,29298,29302,29329,2399], -"jsonpathly", -[0,7387], -[2,29301,29538], -"css4", -[3,5782,27], -[0,4874,4880,4883,1030,3286,89,3824,1983,26744,1984,11039], -[3,4055,16,6], -[3,26699,14], -"achine-id", -[2,27946,29305], -"parsers", -[2,15904,29307], -"@zkochan/js-yaml", -[2,15904,6698], -[3,17944,18], -"-and-columns", -[2,27005,29312], -"@napi-rs/", -"graphQL", -"wasm-runtime", -[2,29314,29316], -"telejson", -"Mobile", -"nderer", -[2,25806,14029], -"@whatwg-node/promise-helpers", -[2,29326,29332], -[2,20164,22156], -[2,11936,1564], -[3,9250,19], -"processinfo", -[2,11936,29327], -[0,5592,1745,23803,3287,3452,8124], -"node-preload", -"process-", -"nuxt", -"on-spawn", -[2,29331,29333], -"spawn-wrap", -"css library", -[1,2343,29353], -"any-path", -[2,29340,29341], -[3,132,10], -"local-node-rig", -"jsdoc-fresh", -"jsdoc-region-tag", -[3,29293,17], -"nuxt-ui", -"ui-framework", -"undefined-", -[2,29347,15400], -[2,8302,29348], -[2,29383,29384], -"@readme/", -"example", -[0,29363,0,29472,2523], -"oas-examples", -[2,29351,29354], -"@readme/o", -"penapi-parser", -[2,29356,29357], -[2,8818,5940], -"@types/me", -"moizee", -[2,29360,29361], -[0,2817,18023,1532,31802], -" initiative", -[2,3452,29364], -"openapi ", -[2,29366,10658], -[3,29367,12], -[2,29366,1746], -"oai", -"@eslint/css", -"print-coveralls", -"ts-mock-imports", -"egjs-jsdoc-template", -"to-openapi", -[2,28343,29375], -[2,29351,29376], -"@egjs/release-helper", -[3,20227,14], -[2,29379,8125], -[2,5290,29382], -"-plugins", -[3,25931,14], -"quis-saepe-velit", -"@renyii/vue-renderless", -[2,31525,29391], -"andom-function", -[2,30713,29397], -"@teamteanpm2024/aperiam-fugit-error", -"prollyfill", -"ize-observer-browser", -[2,19965,29393], -"-es6-transform", -[2,29418,29475], -"ec", -"gulp-exec", -"ign-functions", -[2,29399,29400], -[3,27720,16], -"ototype-minify", -"@vercel/ru", -"@pkg", -"js/support", -[2,29402,29403], -"flicking", -"globalthis", -[2,29408,26274,29411], -[3,29389,17], -"ostringtag", -[2,17422,29409], -"alias-quod", -"egjs", -"-upgrade", -[2,29408,29415], -"ut-voluptatum-vero", -"indexof", -[3,26699,20], -[3,29389,16], -"@loki/integration-react", -[3,31032,17], -"@modelcontextprotocol/sdk", -"@mar", -"iocasciaro/benchpress", -[2,29422,29423], -[2,31009,16609,18756], -"bean", -[2,31550,29430], -"notation", -"segment", -" upgrade", -[2,29438,7031], -[2,29418,29433,29434], -"effective-octo", -[3,246,18,8], -[2,29436,29437,29439], -[3,29432,17], -"xpedita-", -[3,805,9], -"labore-ipsum", -"es-object-atoms", -[2,29419,4009], -"mentoss", -"@ucast/mongo2js", -[2,28865,6324,4056], -"unconfig", -"permissions", -"abac", -[2,29418,29449], -"odio-fugiat-in", -"ee-first", -"rbac", -"ibac", -"cancan", -[2,29487,188], -"@sxzz/eslint-config", -"wrappy", -"quick-lru", -[2,29459,29620], -"@sxzz", -[2,29418,28215,27463,29461], -"odit", -"@blakeembrey/deque", -[3,29462,13], -[2,29463,1283], -"@sxzz/test-utils", -"@unocss/eslint-plugin", -[3,4949,17,10], -[2,160,1554], -"unocss", -"unplugin-unused", -[2,30209,28945], -[0,30999,28818,5995,17977], -[1,2343,29484], -"epoll", -"beatae-aliquid-id", -[2,23240,3209], -"@zibuthe7j11/deserunt-quasi-impedit", -"gpio", -[3,7033,9], -"raspi", -"beaglebone", -"-black", -[2,29481,29482], -[0,0,29485,29491,2537], -[0,19325,1414,1894,3985,3998,4039,4389,4505,91,1906], -"llms", -[3,29419,18], -[2,10441,20008], -"lazy-prop", -[2,27542,29489], -[0,1623,1936,965,5122,12344,34050,3665,22145], -[2,29294,1892], -[2,35506,15215], -"s-compressor", -[2,29628,29629], -[1,2343,29497], -[0,29498,29499,29516,2399], -[0,2611,4763], -[0,29259,192,5467,23531,29261,4865,4874,1009,1011,10417,668,1177,1881,1895,29262,1915,1938,1955,2070,2675,2990,1894,29265,4039,4480,4494,91], -[2,33343,1640], -"bath-es5", -"dere", -"ference-", -[2,29503,2845], -[2,29502,29504], -[2,29510,29513], -"-adapter", -[2,2085,29507], -[2,1170,29508], -[3,10065,15], -"deref-sync", -[2,7526,29511], -"ooks", -"fetch-retry", -[2,29112,3073], -[0,2611,5995,29268,29270,5130,24090], -"@base-ui-components/react", -[3,32804,12], -"docz", -"docz-utils", -"open api", -"docz-theme-default", -[1,2343,29526], -"aws-sdk-client-mock", -[2,32539,200], -[0,29541,29547,29516,2537], -[3,26032,12], -"computer", -[2,29530,29532], -[3,25758,18], -"quadrocopter", -"m-sint-necessitatibus-possimus", -[2,29534,15050], -[3,33156,12], -"unifont", -[2,29627,29631], -"cupertino-pane", -"licit-resource-management", -"countrynames", -"kill-port", -[0,1457,1491], -[2,15713,10050], -[2,28397,553], -"@testcafe/publish-please", -"aws-lambda", -"eruda", -[0,1138,4494,2070,2675,1177,4039,668,1894,91,4865,4874,2990,29261,4480,192,29265,1938,10417,1895,1955,1011,1881,5467,1009,1915,29262], -[1,2343,29562], -"nano-staged", -"elapsed-time-logger", -"hashish", -"gulp-open", -[2,4807,3864], -"cupertino", -"pane", -"slide", -"-call", -[2,29557,4408], -[2,6606,29558], -"fasteejs", -"ua-is-frozen", -[0,29570,29578,29612,2487], -[3,26032,13], -[2,29609,12835], -[2,29573,6802], -"prelude-ls", -"deep-is", -"astro-auto-import", -"livescript", -[0,4729,1091,4494,12105,3533,3348,1410,1606,28452,4548,1458,3183,33145,1699,2096,11993,3547,28460,2689,2668,28941,2191,3781,36687,28461,36123,3509,4108,28482,28518,26696], -[3,28967,11], -[2,29571,3642], -"country-", -"@pouchlab/ui", -[2,29573,1460], -[2,29573,7285,2669], -"-dis", -[0,4164,4039,4042,668,9241,1587,1610,7819,28585,7892,12461,3813,28426,4057,8818,31727,28586,28854,29228], -"ppsx", -"-discarder", -[2,2184,29580], -"chai-jquery", -[2,1221,6621], -"corejs-typeahead", -"doiuse", -"gulp-add-src", -[2,2352,29588], -"-bust", -"gulp-check-deps", -"sequencify", -[3,28628,14], -[2,2504,29687], -"gulp4-run-sequence", -"is-empty-object", -"motion-ui", -"sassy-lists", -[2,22109,29598], -"-forward-reference", -"vinyl-named", -"sql-ddl-sync", -"sql-query", -[2,29611,29625], -[2,29604,29606], -[3,17589,11], -"redshift", -"helper-rel", -[2,29608,4213], -[3,29603,18], -"gradient", -"grommet", -[3,940,8], -[0,31153,5592,6354,29311,27837,5130,29315,29727,5284,23803,202,28323,89,31175,91], -[1,5293,29665], -"tinygradient", -"tmpdir", -"ps1", -"glob2regx", -[2,29619,29620], -"@bokub", -[3,29621,16,9], -[2,7623,7628], -[2,1283,17321], -"template ", -[2,29623,16111], -"expand-path-helper", -"magnific-popup", -[3,4968,15], -[3,111,18], -"-cloud-services-collaboration", -"grommet-icons", -"composable-commerce-test-data", -"styleable", -[3,3474,9], -[2,10818,29635], -"toolbars", -[2,29637,5592], -[3,11285,19], -"@vscode/vsce", -[2,10829,29640,35971], -"source-l", -"vscode", -[2,964,4415], -[2,29644,591], -[3,19588,29], -"chromatic", -[2,29650,29651], -"addlistener", -"addeventlistener", -"waits", -"grommet-", -"theme-hpe", -[2,1192,29653], -[3,12201,18,16], -"random-int", -"react-shadow", -"resolved", -"fulfilled", -[2,29659,22145], -[3,29576,18], -"tarball-extract", -[2,29662,29663], -[3,35482,11], -"act-selectors", -"fifo", -[0,8391,29688], -"grommet.io", -"grommetux", -"sticker sheets", -"design patterns", -"app templates", -"atomic design", -"invalidate", -"WCAG 2.1", -[2,8652,29675], -" navigation", -"screen reader tags", -[3,10826,11], -"graphical user interface", -"plunder", -"exit-x", -"modelcontextprotocol", -"osition-area-property", -"pwa-asset-generator", -"_codesniffer", -[2,1936,29684], -[2,17753,5130], -"-lint", -1743292800000, -[2,23814,6653], -"rapid-development", -"proclaim", -"@grammyjs/types", -"dart-sass", -"grunt-jekyll", -"mcp", -"deno2node", -"sigstore", -[2,9466,1153], -"antora", -[3,3397,13], -[2,29700,3212], -"zepto", -[3,12478,11], -[2,30713,29989], -[1,2343,29712], -"countries", -[2,22642,5351], -[2,18145,4581], -"@next/font", -"package-up", -[2,17507,4107], -[0,29714,29715,29720,34352], -"@jsdevtools/ez-spawn", -[0,6680,26246,26882,26247,26883], -[0,87,29211,29381,29378,5583,811,816,6373,4864,4874,29386,1009,32801,1011,1165,1195,1264,1540,1593,1596,10944,29374,1177,1938,1942,13668,2151,2193,6382,29120,28366,2675,28629,29392,3400,29137,3566,29372,28369,27120,4042,20981,10854,29398,20983,4073,4076,4079,2278,13739,29373,11440,4484,4487,28625,91,20474], -"@types/png", -[2,29716,1722], -"context7", -"vibe-coding", -[0,32054,29405,31512,29002,4453,28125,5131,89,188,1098,3698,35060,35062,35058,29412], -[2,17590,23989], -"png.js", -[2,29573,29730], -"screenshots", -"ai-detection", -"screengrab", -"headless", -"app-detection", -"rapidoc", -"iso-codes", -"iso", -"api-generator", -"find-process", -[1,2343,29738], -"low-code", -[2,29737,3729], -[3,33097,12], -[0,0,29739,29864,2537], -[0,107,91,1983,11026,26744], -[3,7895,13], -"jpeg-js", -"striptags", -[2,1948,29816], -"baas", -"launch-image", -"splashscreen", -"splash-screen", -"image-generation", -"aws4", -"mstile", -"pwa-assets", -[3,7863,11], -"web publishing", -[2,3862,29804], -"@ionic/react", -"@loki/runner", -"@loki/target-chrome-app", -"@apitools/openapi-parser", -[2,29760,6866], -"base64-", -"xml-but-prettier", -"idb-keyval", -[3,5062,14], -"rypto-js", -[2,29763,29764], -[2,29785,17878], -"@saithodev/semantic-release-backmerge", -"cebook-js-sdk", -[2,22819,29768], -[2,1983,29303], -[3,19588,24], -"nline-", -[2,11294,6436], -[2,29772,29773], -[2,29771,29774], -[2,29781,29782], -"river-adapter-utils", -[2,2767,11110], -"jsdoc-babel", -[2,27738,8791], -[3,14065,15], -"mplate-html-minifier", -"parse-server", -"inspectpack", -[3,29757,20], -"Custom Element", -"Web Component", -"swagger ui", -"swagger ", -"WHATWG", -[2,28008,57], -"html5 parser", -[2,28008,1753], -[2,1936,1753], -"openapi ui", -[2,29366,4366], -[2,29366,11328], -[2,29366,3902], -"fast-ur", -"l-parser", -[2,29799,29800], -[2,29366,25677], -[2,29789,4366], -"animatable", -"react-swipeable-list", -"pause", -[2,29811,29812], -[3,1551,9], -[2,29808,18716], -[2,1432,29809], -[3,29757,13], -"native-android-emulator", -[2,29814,29815], -[3,29807,20], -"ios-simulator", -"-preferences", -[2,31868,5891], -[2,29822,19102], -"collapsible", -"accordion", -"readme-md", -[3,4272,10], -[2,11375,10850], -"username", -[3,9308,9], -[2,29827,29828], -[3,4060,15], -"ocal-resolve", -[2,3500,1274], -"visual testing", -"swipeable", -"customizable", -[3,1419,20], -"teeny-tap", -"base64url", -"touchscreen", -"listview", -"swipe-to-delete", -"swipe-actions", -"json/simple-icons", -[2,29852,32865], -"iso-country-codes", -"use-composed-ref", -"use-latest", -[2,29866,1460], -"@preconstruct/cli", -"blue-tape", -"autosize", -"grow", -"riot", -"events.once", -"@scalar/s", -[2,30844,1983], -"exist", -"md-writer", -[2,12557,8982], -[2,29858,29859], -[3,7806,10], -"mon-tags", -"ts-declaration-location", -[2,29863,14056], -"isabsolute", -[3,1733,14], -[0,31549,31550,29427,31553,31565,9006,3015,31566,15813,10725,30672,5066,15571,89,31567,1098,188,12295,5131,28125,31568,31569], -"react-smooth", -[3,29842,12], -"@borderless/ts-scripts", -[2,29958,29576], -[2,29870,34050], -"victory-", -[1,2343,29929], -[2,10818,29873], -"mdx-gfm", -[2,10818,29875], -"webpack5-compiler-swc", -[2,29877,29878], -[3,10841,15], -"-runner", -[2,33114,22982], -[2,33114,29881], -"time-format", -"@rkusa/linebreak", -[2,29885,29886], -"opentype.js", -[3,18787,15], -"v-expression", -"vitest-axe", -"log-process-errors", -"sortablejs", -[2,5581,29898,27479], -[2,29518,29892,29930], -"native-pr", -"jpeg-exif", -"linebreak", -"png-js", -"@riotjs/dom-bindings", -"blob-stream", -"multi-pa", -"pdfjs-dist", -[2,29904,4643], -"pdf writer", -"pdf ", -[2,29902,1179], -"@riotjs/", -[2,29906,29907], -"@riot", -[3,25083,18,7], -"call-delayed", -"chai-i", -[2,29904,93], -[2,29904,614], -"ncreasing", -[2,29909,29912], -[2,29915,29916], -"@wdio/s", -"auce-service", -"bianco.attr", -"pgpass", -"pg-pool", -"pg-types", -"bianco.query", -"cumpa", -"pg-protocol", -"curri", -[2,29126,28794], -[2,29927,28794], -[3,4069,15], -"pg-cloudflare", -[0,29947,29948,29981,2523], -"eview", -"pg-co", -"py-streams", -[2,29931,29932], -"@cloudflare/workers-types", -"custom tags", -"minimalist", -"libpq", -"rdbms", -"data binding", -"riotjs", -"riot.js", -"tdesign-mobile-vue", -"oxc-resolver", -"copy-source", -[2,5237,29944], -"npm-watch", -[0,29443], -[0,33580,5087,4874,1429,31602,2024], -[2,29950,12826], -[3,35537,26], -[2,29956,582], -"hasha", -"reorder", -"ng-sortable", -[2,12318,29992], -[3,66,20], -[2,27777,27738,1764,1524], -"iso-", -"@use-gesture/vanilla", -[2,29961,29962], -"tdesign-", -"icons-vue-next", -[2,29958,29658], -[2,1547,3525], -[2,3525,15159], -[2,812,1002], -"@soerenmartius/vue3-clipboard", -" build", -[2,3525,29968], -"/build", -[2,3525,29970], -"dom-parser", -"qrcode.vue", -[2,8851,19675], -[2,29976,29977], -[3,32978,16], -"atic-import", -[2,29976,29979], -"yles", -"@tdesign/site-components", -[0,29446,14374,1081,29447,29451,29452,29453], -[1,2343,29985], -[2,29961,29984,200], -"publish-", -[0,29986,29995,2514,2537], -[0,26702,19344,1915,32525,1953,1958,1959,2105,2203,26716,4523], -[2,4609,29988], -"tdoc", -"ystem-ui-font-family", -"tdesign", -"pinkie-promise", -"-widget", -"weui", -"denodify", -[0,4874,25950,1177,2675,17529,2931,27949,3401,4505,91], -[2,29997,3346], -[3,6806,10], -"tstyche", -"atomic", -[2,30016,30020], -"atomic-sleep", -[1,2343,30160], -"xit-leak-free", -[2,27492,30003], -"pino-", -[2,20417,4714], -[2,30005,30006], -"std-", -[2,1753,591], -[2,30008,30009], -[2,30005,30010], -"quick-", -"-unescaped", -[2,1671,30013], -[2,30012,30014], -[3,18858,17], -"real-require", -"sonic-boom", -"thread-stream", -"-tag", -"lush-write-stream", -[2,5537,30021], -"obug", -"bole", -"fastbench", -"-write-stream", -[2,20064,30026], -"midnight-smoker", -"steed", -[2,30031,30032], -[3,3577,11], -"-variables", -[2,30034,30035], -"postcss-he", -"xrgba", -"postinstall", -[3,3848,9], -"devpostinstall", -[2,30040,1524], -[3,3668,14], -[2,24276,30042], -"odule-replacement", -"graphql-jit", -"uploader", -"preview", -"image-edit", -[2,30085,3582], -"mqemitter", -"remark-math", -"single-user-cache", -"base64-stream", -[2,24101,30057], -"ready", -"-simple", -[2,2105,30054], -"win32", -"woslash", -[2,9406,7293], -[2,30060,30065], -"remark-s", -[2,30062,30063], -"gulp-conve", -"rt-css-var", -"picklog", -"martypants", -"wechat", -"weixin", -[2,29314,4183], -[2,17998,30070], -"ading-time", -[2,27707,364], -"better-react-mathjax", -[2,30074,25131], -[3,9313,17], -[2,30076,30077], -[3,12415,13], -"alue-to-estree", -[2,30079,30080], -[3,31790,16], -"ocalematcher", -"tiny-lru", -[2,10884,30083], -"egotiator", -[2,11932,11525], -"iso-countr", -[2,30087,30096], -[3,13203,19], -"irregular-plurals", -"fs.extra", -"plurals", -"count", -"irregular", -"noun", -"nouns", -"requireg", -"orm-data", -"@pkgr/core", -[2,4511,30118,30123], -"make-synchronized", -[2,30101,30102], -[3,30099,13], -"ous", -"sync-threads", -"fclone", -"vizion", -"@pm2/io", -"pidusage", -"pm2-axon", -"@pm2/", -"@pm2/agent", -"pm2-", -"pm2-deploy", -"synchronize", -[2,5340,30116], -"@pm2/js-api", -"webc", -"cli-tableau", -[3,32969,11], -"pm2-axon-rpc", -[2,30111,28917], -[2,30111,21833], -[2,30109,30121], -"heme", -"logs", -"kraken", -" balancer", -[2,3001,30126], -"lb", -"balancer", -[2,3614,30129], -"kubernetes", -"k8s", -"emoji-flags", -"pm2-docker", -"graceful", -"phone-codes", -"node-pm2", -"fs-fixture", -"production", -"keymetrics", -[2,10339,13522], -"strong-pm", -"supervisord", -"pm2.io", -"@ibyar/expressions", -" production", -[2,17979,30146], -[2,3729,6877], -"probes", -" process", -" alive", -[2,30150,30151], -[2,25607,30152], -"process ", -[2,30154,8309], -"clustering", -"memoizerific", -"cluster cli", -"dev ops", -[0,30171,0,29047,2537], -"phone-prefixes", -"@vercel/blob", -[2,7285,2669], -"tap-dot", -[2,30180,30181], -"PNG", -"js-png", -"node-png", -"import-without-cache", -"png-parse", -[0,2845], -"pg-gateway", -"@ibyar/decorators", -"pglite-2", -"aurora", -"ibyar", -[2,4641,5341], -[2,4641,7256], -"evaluation", -[3,578,10], -"arousel", -[2,30195,3825], -"no-code", -"mvp", -[1,2343,30186], -[0,30187,30188,30189,2537], -[0,8712,1423,5210,1209,3021,26499], -[0,34225,4874,2559,91,34229,28456,34231], -[0,89,5130,21151,28811], -"poe", -"economy", -"ninja", -"poe.ninja", -"poe economy", -[3,581,10], -[2,30212,3730], -" of exile", -[2,3403,30197], -" economy", -[2,30198,30199], -[3,30200,14], -[2,30201,30192], -[2,30194,8568], -[2,30201,5592], -[1,2343,30229], -"ast-walker-scope", -"poe.watch api", -[2,30193,8568], -"@vercel/ne", -"copilot", -"@types/ne", -[3,587,10], -"reval", -[2,24808,30213], -[2,6649,2995], -[2,6645,30215], -"tsgen", -[2,30231,30232], -"glamor", -[2,24177,591], -"o-async", -" manipulate", -[2,1473,30222], -[3,30223,15], -[2,30224,6600], -" color manipulation", -[2,7595,30226], -[3,35570,16], -[0,30249,0,2514,2487], -"muggle-string", -[3,593,10], -"potlight", -[2,579,30251], -[2,29444,30511], -[3,6372,10], -[2,30235,6374], -[3,23816,17], -[2,30237,13290], -[2,30235,30238], -[2,30235,1973], -[2,30240,3007], -"nuget-publish", -[2,30244,4900], -[3,13484,37], -"popperjs", -[2,1517,30248], -"attached", -"center", -[0,9315], -[1,2343,30308], -"tiptap", -"allure-js-commons", -"flush-promises", -[2,30255,30259], -"@yarnpkg/l", -[3,10175,16,14], -[2,30276,30280], -"source map", -"ibzip", -[2,23660,30261], -"tector", -[2,11369,30282], -[2,10880,30264], -"preset-env", -"jison-gho", -[2,16645,30267], -"null", -"calculation", -"unixify", -"allure", -"codeceptjs", -"testops", -[3,3674,10], -[2,30273,25461], -"read-cache", -"express-i", -[3,1895,16], -"oblems", -[2,30277,30278], -"ntlayer", -"is-mobile", -"spector", -"deep-object-diff", -"@ngard/tiny-isequal", -[2,6268,1467], -[2,206,30285], -[2,209,6731], -"@intlayer/chokidar", -"hsl", -"hsla", -"hwb", -"rgba", -[2,30294,6008], -[3,30288,11], -[2,30296,23], -[3,30293,12], -"intlayer", -"caniuse-api", -"colord", -[2,10829,30311], -[3,19443,15], -[2,30301,5592], -[2,9738,30304], -"s-hooked", -"@utils/ts-config-types", -[3,30305,16], -"@intlayer/", -[0,0,30473,2514,4139], -"@utils/ts", -[2,30309,32810], -"docs-mdx", -[2,9402,30374], -"get-npm-tarball-url", -"pixrem", -"pleeease-filters", -"apply", -[2,3562,30316], -"postcss-a", -"ttribute", -"-case-", -[2,30322,30367], -"use", -"insensitive", -[2,30320,30323], -[2,30319,30324], -[2,30318,30325], -[3,3570,22], -[3,3570,14], -[2,30328,12981], -"hex-alpha", -[2,30328,30330], -[3,30331,15], -"sl", -[2,30332,30333], -"wb", -[2,30332,30335], -"rebeccapurple", -[2,30328,30337], -[3,30338,15], -"gb", -[2,30339,30340], -"a-fallback", -[2,30341,30342], -[3,4791,10], -"nt-family-system-ui", -[2,30344,30345], -[3,30346,13], -[2,30347,24044], -[3,3611,18], -[2,30349,6422], -"user-agents", -"nitial", -[2,3607,30352], -[3,3622,10], -"dia-minmax", -[2,30354,30355], -"seudo-class-any-link", -[2,6423,30357], -[3,30358,14], -[2,30359,11513], -[3,30274,11], -"lace-overflow-wrap", -[2,30361,30362], -[3,3681,17], -[2,30364,6421], -[2,30364,23293], -[3,11228,16,2], -"cssrecipes-custom-media-queries", -[3,30368,11], -[2,30369,19400], -[2,30369,10052], -[2,30369,594], -"vert", -"ermaid", -[2,28756,7224], -"ical-rhythm", -[2,30373,30376], -[2,30369,30377], -"i-am-meticulous", -[2,1884,30379], -"isogram", -"oc-and-anchor", -[2,7646,30382], -[2,12798,591], -[2,3160,30384], -[3,30385,11], -"@react-aria/interactions", -"filenames", -[2,30386,30388], -[2,30386,5980], -[2,30386,89], -[3,30391,13], -[2,30392,1213], -[3,30391,12], -[2,30394,367], -[2,30386,1002], -[2,30386,2282], -[2,30415,30461], -"nano-logger", -"npmpub", -[2,25230,25461], -[2,3562,30401], -"-inline", -[2,3897,30403], -"@enact/ui", -"lazy-universal-dotenv", -"to-slug-case", -[3,4693,9], -"ano-logs", -[2,30408,30409], -[2,30058,30412], -"-position", -"cssnext", -"modern-tar", -[3,30387,12], -[2,30417,364], -[3,906,9], -[3,205,11], -"ascade", -"-lay", -"er-name-parser", -[2,30420,30421], -[2,30419,30422], -[2,30418,30423], -[2,30417,30429], -"at-rule", -"atrule", -"csswg", -"delivery-react-native", -"queries", -[2,30417,30432,30433], -"plugin-co", -"nsole-breadcrumbs", -[2,30435,30436,30437], -[3,30431,16], -"network-", -"breadcrumbs", -[2,30435,89], -[2,30438,30440], -"-native-client-sync", -[2,30443,30444], -"declarative", -[3,30439,29], -"event-sync", -[2,30443,30446], -"global-error-handler", -[2,30443,30448], -"hermes", -[2,30443,1577], -[2,30443,30451], -"unhandled-rejection", -"iserror", -"react-syntax-highlighter", -[2,30457,30460], -"bugsnag", -"stability", -[3,30375,17], -"@enact/webos", -[2,30875,4000], -"croll-area", -"overlays", -"at-rules", -"@ionic/angular", -[2,30415,17966], -"@keyframes", -"@counter-style", -"@devtools-ds/object-inspector", -[2,4807,30453], -[2,30475,30476], -"@aw-web-design/x-default-browser", -"@fal-works/esbuild-plugin-global-externals", -"flexbugs", -[0,4483,1177,1984,1894,91,4874,1953,7677,1982,1895,1011,1009], -[1,2343,30482], -[3,659,18], -"nobis-nostrum-nam", -"@skylernpm/hic-inventore-dolores", -[3,3616,9], -"postcss-less", -"tyl", -"postcss-styl", -[0,30490,30492,30497,34352], -"quickapp", -"PHP", -"sss", -"convex", -[3,29658,18,8], -[2,30502,27421,30606], -"world-countries", -[0,1437,3074,3714,4361], -"image-set", -[0,2228,2240,2247,2316,1906], -[2,2662,30554], -"@eggjs/oxlint-config", -"@vercel/e", -"mock-spawn", -[0,21779,8221,13814,15344,158,6707,3178], -"node modules", -[3,31793,24,5], -[1,2343,30524], -[2,30503,30515], -[3,30477,11], -[3,30489,12], -"postcssrc", -".config.js", -[2,3561,30505], -"@recharts/devtools", -"motion-dom", -[2,30510,186], -"motion-u", -"-snapshot", -"midas", -[3,3591,9], -"ark-", -"y-codes", -"theme-class", -[2,30514,30516], -[2,30513,30517], -"hort", -[2,3677,30519], -[2,1172,30522], -[3,5558,22,6], -[2,30560,6802], -[0,30525,30526,30189,2523], -[0,668,8712,4090], -[0,1192,91,5087,4874,28455,28574], -[2,30546,30547,3966], -[1,2343,30549], -[2,30530,30537], -[3,30868,11], -"cssnano-", -[2,30531,594], -[2,30534,11504], -"@codecov/", -[2,30536,6579], -[3,1300,12], -"silent", -"expressots", -"font-f", -"clean-architecture", -"font-family", -"font-weight", -[2,30544,30545], -[3,4526,12], -"ramework", -[3,31198,25], -"particles-", -"desm", -[0,30550,30555,30556,2523], -[0,1169], -[2,41,30552], -"pro-components", -[2,5557,3514], -"node16", -[0,3421,1429,4493,2899,4039,2026,4474,91,4856,4874,6503,1151,6494,8648], -[0,6653,2275,5472,6969,5982,7320,11346,3541,1169], -[1,2343,30580], -"esc", -[2,7632,30558], -[3,30501,14], -"gulp-better-rollup", -[2,30560,1460], -"Leaflet", -"Maps", -"Gesture", -"Handling", -"two", -"fingers", -[2,30571,30572], -[2,3976,30573], -"world", -[3,29868,24,3], -"anitize", -[2,30571,30578], -[3,220,19], -[2,4026,3639], -[2,30575,30576], -[3,29963,27,3], -"atrules", -[0,30596,30597,2514,2523], -"children", -"nestings", -"@anthropic-ai/sdk", -"@azure-rest/ai-inference", -[2,959,30586], -"vue-virtual", -[2,209,3376], -[3,30402,16], -[2,30588,4298], -[2,2574,3375], -"world-iso-codes", -[2,964,188], -[2,30599,29842], -"normalizes", -"fixes", -[0,1112,1415,16230,24324,36538,30169,30023,3530,28865,29444,4135,26379,27921,4459,33251,24214], -[0,33043,29170,29455,29458,29465,4874,20374,5254,29891,29466,33253,7677,23203,10984,19839,1680,1177,20044,16860,3144,3749,15450,1894,23535,30234,24181,91,29469,30908,28797,29470,1983,1984], -[1,2343,30601], -"world-", -[2,30613,1460], -[0,30605,30608,30611,2537], -"@cfworker/json-schema", -"@clerk/localizations", -"@ark/attest", -[0,1676,1679,2151,2212,17450,4400], -"non-corrupti", -"admin-lte", -[0,5245,29493,4864,1429,1177,2899], -"@clerk/nextjs", -"@clerk/themes", -[0,1764,7682,26965,3428,2090,27,1002,1965,5995], -"backendless", -[3,30593,18], -"to-valid-identifier", -[1,2343,30626], -"@astrojs/mdx", -[2,30618,30619], -[3,28058,16], -"tro", -[2,3704,34683], -[2,30625,3286], -[2,30623,9872], -"control-", -"smartbanner.js", -[3,2635,14], -[0,0,30627,30780,2537], -[0,8648,4874,4880,34737,1894,89,3824,7671,91], -[2,30612,30665], -"cascade-layers", -[2,216,30629], -[3,30630,19], -[3,3569,13], -[2,30631,30632], -[3,30633,24], -"mix-function", -[2,30634,30635], -[3,30633,20], -"alt-text", -[2,12009,30638], -[2,30637,30639], -[3,28688,12], -[2,30641,5746], -[2,216,30642], -"ormat-", -[2,30644,4798], -[2,30539,30645], -[2,216,30646], -"gamut-mapping", -[2,216,30648], -[3,30649,19], -"radients-interpolation-method", -[2,30650,30651], -"hwb-function", -[2,216,30653], -[3,215,19], -"c-unit", -[2,30655,30656], -[2,30655,30352], -"light-", -"dark-function", -[2,30659,30660], -[2,216,30661], -[3,30662,19], -"ogical-", -"-request", -[2,30683,31073], -"-and-clear", -[2,14639,30667], -[2,30664,30668], -[2,30663,30669], -[3,30670,26], -"overflow", -[2,30671,30672], -[3,30673,30], -"behavior", -[2,11262,30675], -[2,30674,30676], -[2,30671,24800], -"viewport-", -"units", -[2,30679,30680], -[2,30671,30681], -[3,30628,13], -[2,30767,33380], -"media-minmax", -[2,216,30685], -[3,30686,24], -"-aspect-ratio-number-values", -[2,30430,30688], -[2,30687,30689], -[2,30695,10740,4978], -"nested-calc", -[2,216,30692], -[3,30693,19], -[3,30628,12], -"bannerize", -[2,31495,31502], -"play-values", -[2,29577,30698], -[2,3646,30699], -[2,30694,30700], -"oklab-function", -[2,216,30702], -"relative-", -"yntax", -"color-syntax", -[2,30704,30706], -[2,216,30707], -"scope-", -"pseudo-class", -[2,30709,30710], -[2,216,30711], -[3,30712,19], -"tepped-value-functions", -[2,30713,30714], -[3,70,7], -[3,5845,9], -[2,7854,30717], -[2,30716,30718], -[2,28533,30719], -[2,216,30720], -[3,30721,19], -"rigonometric-functions", -[2,30722,30723], -[2,216,10760], -"css-b", -"lank-pseudo", -[2,30726,30727], -"css-h", -[2,30612,33812], -"zarm", -"as-pseudo", -[2,30729,30732], -"css-pr", -"efers-color-scheme", -[2,30734,30735], -[2,1007,30738], -[3,13069,23,4], -"postcss-clamp", -[3,3591,10], -"r-pseudo-class", -[2,30740,30741], -"ouble-position-gradients", -[2,30513,30743], -[3,4791,14], -"within", -[2,30745,30746], -"gap-properties", -[2,3562,30748], -"ab-function", -[2,30478,30750], -[3,3616,10], -"gical", -[2,30752,30753], -[3,3664,9], -"pacity-percentage", -[2,30755,30756], -"verflow-shorthand", -[2,30755,30758], -"age-break", -[2,6423,30760], -[2,30764,30766], -"postcss-place", -[3,3710,17], -"lists", -"h", -"@biomejs/", -"playbook-builder", -"algo", -[2,444,30771], -"-interactions", -[2,30773,89], -[3,29959,13], -"@zarm-design/bem", -[2,3677,30705], -[2,30777,45], -[3,30774,13], -"ahooks", -"better-scroll", -[0,89,586,11000,26264,6458], -"hermes-compiler", -[1,2343,30791], -[2,30777,200], -"@oxc-project/runtime", -"zarm-ui", -"zarm-mobile", -[2,30790,553], -[2,20561,30789], -"render-stream", -[3,30784,13], -[0,30793,0,30799,2523], -"@oxc-node/cli", -[0,1687,5303,1459,6501,182,148,164,167,29468,187,153,191,28332,15690,28361], -"oxc-parser", -[2,30796,30797], -"@iconify", -"/utils", -[2,3882,11245], -[0,28407,1459,6094,28416,28417,2585,28442,18241,6038,6110,1936,6138,6139,6142,6144,6145,20863,14600,5130], -[1,2343,30801], -[0,0,30812,30825,2537], -"@enact/i18n", -[2,30804,30232], -[3,907,8], -"doublylinked", -"lightning", -"-pool", -[2,30806,30807], -"ilib", -"-bytea", -[2,25638,30810], -[0,1192,1177,4042,4468,1894,91,5087,1895,1955,2780,1011,1009], -"power-tasks", -"@cyntler/react-doc-viewer", -"putil-", -[2,30815,19138], -"varhelpers", -[2,30815,30817], -"@enact/docs-utils", -[2,30405,30821], -"-test-utils", -[2,18576,30823], -"nact-proxy", -"@fal-ai/client", -[0,31512,32054,35062,35060,20986,4453,5284,91,89,188,3709,23332], -[2,22180,591], -[1,2343,30836], -[2,1962,30830], -"titanium", -"dos-detector", -"ed-queue", -"-ended-queue", -[2,4420,30832], -[2,11344,977], -"tsm", -[0,30846,30863,30865,2443], -"level-codec", -"write-stream", -[2,25982,30838], -"ltgt", -"bundle-size", -"spark-md5", -"vuvuzela", -"rolldown-", -"react select", -[0,29178,3744,3911], -"react dropdown", -[2,30852,30856], -"empower", -[2,3696,12168], -"universal-", -"accessib", -"strict-equal", -[2,1683,30853], -[2,30851,30854], -"le react select", -"dereserve", -"accessible", -"licensify", -[3,21510,14], -"ilterify", -[2,30860,30861], -[0,48,53,68,61,71,73,76,14039,78,83,87,90,97,966,968,972,1195,1593,1610,1177,1879,1895,1938,1947,1955,1959,1192,2780,2843,3697,1894,89,3824,2924,4676,4677,4681], -"jsx-async-runtime", -[0,89,6071,7521,5128], -"@formkit/auto-animate", -[2,8293,181], -"@reporters/github", -"@apm-js-collab/tracing-hooks", -"tidev", -"iphone", -"precommit", -[2,5186,2203], -[2,5928,3717,2389], -"react-load", -"combine-promises", -"@actions/github", -[2,20201,1172], -"@actions/glob", -[2,19849,3583], -[2,1252,30880], -[2,20201,2942], -"errorstacks", -"-sinon", -[2,2878,30884], -"-display-", -"@google/genai", -"kolorist", -"oxlint", -[2,30893,30894], -"virtual dom", -"dom diff", -[3,30878,13], -"undler", -[2,3886,1541], -[2,30897,30898], -[3,38298,13], -"dx-loader", -[2,32359,13369], -[2,30901,7020], -[3,30899,18], -[2,30459,30903], -"-ssr-addon-v5-slorber", -[3,18018,13], -[2,30904,3642], -"@huggingface/inference", -"jest-l", -[2,30909,166], -"unplugin-a", -[1,2343,30925], -"ight-runner", -[2,30907,30911], -[2,35506,30914], -"tect-port", -[2,30916,30917], -[3,12312,18], -"shoehorn", -[3,2954,10], -[2,30923,1541], -"lugin-pug", -[2,30918,30920], -[2,5334,30921], -[3,4887,20], -[3,3703,15], -[0,0,12112,30927,2523], -"@nestjsx/crud", -[0,2070,1108,6961,57,29617,4643], -[2,206,31196], -[2,30930,32550], -"@vercel/b", -[1,2343,30933], -[2,18420,8162], -[0,30934,0,30936,2523], -[0,1459,16485,182,28912,148,187,153,28332,15690,28361,146,28913,15716,29131,29495], -"parcel-bundler", -[0,28407,1459,6094,28416,28417,2585,28442,18241,6038,6110,1936,6138,6139,6142,6144,6145,20863,5130], -"Vue", -[1,2343,30945], -"@zoroaster/assert", -"glob-fs", -[2,30942,10098], -[3,30939,11], -"unstyled", -"alamode", -[0,0,2667,31019,4139], -"humanized", -"si", -"locale", -"@a-la/fixture-alamode", -"localized", -[2,30952,1172], -[3,30949,14], -"@artdeco/clean-stack", -"@artdeco/erte", -"@artdeco/", -"renderkid", -[2,30971,4521], -"jitter", -[2,30989,186], -"exception", -[2,30955,30962], -"scripts.json", -[2,30926,30665], -[2,30965,614], -"@nestjsx/", -"@depack/render", -"crud", -"crud-generator", -"frameworks", -"parse-ms", -[3,30963,14], -"@netlify/framework-info", -"@wrote/exists", -"milliseconds", -"period", -"@wrote/rm", -[2,30942,6696], -"@zmotivat0r/o0", -"@pothos/core", -[2,30942,553], -"mercurial", -"hg", -"vcs", -"argufy", -"catchment", -"p-filter", -"p-locate", -"documentary", -"unplugin-u", -[2,5313,6355], -[2,15658,30992], -"-integration", -"npmjs", -"@pri", -"sma/engines", -[2,30994,30995], -"gatsby", -"hugo", -"netlify", -"ts-pattern", -[2,32976,33011], -"global-dirs", -"erotic", -"line-replace", -"@prisma/", -[2,31005,1676], -[2,13403,31016], -"xdg-app-paths", -[2,31005,5576], -"studio", -[2,31005,31010], -"migrate", -[2,31005,31012], -"internals", -[2,31005,31014], -"rtdeco", -"point-client", -[2,4354,31017], -[0,8618,8619,8620,1299,200,1523,6876,8622,1836,8623,1179,8624,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,8632,8633,4989,2184,8634,7009,6621,553,91,181,8635,4758,8636], -[1,2343,31082], -[2,31514,31516], -"fetch-engine", -[2,31005,31022], -"makepromise", -"get-platform", -[2,31005,31025], -[2,31011,2995], -"@prisma/ge", -"nerat", -"or-helper", -[2,31029,31030], -[2,31028,31031], -"promto", -"ORM", -"Prisma", -"reloquent", -"Prisma CLI", -"prisma2", -"JS", -"TS", -"SQL", -"SQLite", -"Postgres", -"core-js-pure", -"PostgreSQL", -"CockroachDB", -"MySQL", -"MariaDB", -"MSSQL", -"SQL Server", -"SQLServer", -"MongoDB", -[2,32483,13083], -"jest-location-mock", -[2,27845,31056], -"dule-alias", -[2,1464,31059], -"danger", -"-serve", -"spawncommand", -"docdash", -"hotreload", -"gulp-terser", -"@strapi/strapi", -"temp-context", -"webfont", -"usually", -"yarn-s", -[2,31070,11017], -"@pothos/", -[2,31084,31085], -[3,815,8], -"t-client", -[2,31072,31073], -"URIjs", -"pothos", -"IDE", -"svn", -"suggestions", -"intellisense", -"tagged-tag", -[0,31083,31199,31215,2537], -[0,29692,1079,1676,3310], -[3,8998,11], -"assword", -"@svgr/hast-util-to-babel-ast", -[2,31104,31682], -[2,31089,1541], -"@epic-web/", -"yalc", -[2,31092,364], -"@strapi/", -"@strapi/i18n", -"@strapi/admin", -[2,31092,1823], -[2,31092,553], -[2,31092,594], -[2,31092,2942], -[2,31100,184], -"@strapi/u", -[2,31102,1803], -[3,28426,12], -"zshy", -"@types/so", -[2,31092,18035], -[2,31107,31108], -"@strapi/c", -"loud-cli", -[2,31092,5701], -"get-latest-version", -[2,31112,31113], -"@strapi/p", -"ermissions", -[2,31115,31116], -[3,31105,12], -"-transfer", -[2,31118,31119], -"@strapi/co", -"ntent-manager", -[2,31121,21945], -[3,31117,16], -"customize", -[2,31092,31124], -"review-workflows", -[2,31096,31126], -"cript-utils", -[2,31121,31128], -"type-builder", -"interact", -"css-parser", -[2,31132,31133], -"@strapi/t", -"s-zen", -[2,19502,31137], -"uglifyify", -"uglifyjs", -"ustom", -[2,4807,4684], -"css-ast", -"strapi", -"cmf", -"alpha-sort", -"vent-", -[2,31143,2618], -[2,2621,31144], -[2,31151,5130], -"mdast-zone", -[2,5967,2619], -"svg-e", -[2,31149,31144], -[3,17944,19], -"aria", -"admin panel", -"koajs", -"jam", -"graphqL", -"@protobufjs/aspromise", -[3,31157,12], -[2,31158,14357], -[2,31158,5061], -[2,31158,2016], -[2,31158,1612], -[3,31162,13], -"loat", -[2,31163,31164], -[2,31158,8625], -[2,31158,3403], -[3,31167,13], -[2,31168,25200], -[2,31158,4577], -"infrastructure", -[2,13888,4719], -"semver-tags", -[2,10617,31173], -"self hosted", -"lernajs", -"css-tools", -"@icons-pack/react-simple-icons", -"@khmyznikov/pwa-install", -[2,25885,24348], -"wd2", -"jasminewd2", -"-js-extender", -[2,11132,31183], -"webdriver-", -[2,31185,10057], -"snake-case", -[2,23689,31181], -"ang-format", -[2,21680,31189], -"natives", -[3,19209,11], -[2,31192,591], -[2,4491,31193], -"vrsource-tslint-rules", -"syntax-patches-for-csstree", -"base-driver", -[2,31228,29677,31230], -[0,5245,4874,5542,29696], -[2,31203,31204], -[3,27731,11], -[2,31201,57], -[3,1006,11], -"averse", -"@types/args", -[2,31208,57], -"squid", -[3,34785,11], -"privoxy", -"mod_proxy", -"via", -"x-forwarded-for", -"@express", -"-zod-api/zod-plugin", -[0,32859,8549,5592,5576,5130,6082,28450], -[1,2343,31245], -"p3-linear", -"fill-keys", -"not-found-error", -[2,5223,31219], -"MCP", -[3,8648,12], -"hello-world", -[2,13669,31223], -[2,31226,28613], -[3,2670,12], -[3,33464,11], -[3,1004,13], -"cp-sugar", -"-external-push", -[2,31228,31241], -"-status", -[2,16238,31232], -"l-ct-react", -[2,31236,1983], -[3,11282,19], -[2,11147,1983], -[2,12042,4406], -[3,31198,24], -"pug-", -"move-base", -"pug-code-gen", -"pug-filters", -[2,31228,31261], -[0,26964,0,31273,2537], -"pug-lexer", -"@langchain/community", -"pug-linker", -"pug-load", -"pug-parser", -"pug-runtime", -"strip-co", -[2,31252,19490], -[2,31240,31253], -"@lobechat/agent-runtime", -[3,24593,18], -"down-it", -[2,31256,31257], -[2,24585,4535], -[3,31231,17], -"shape-emoji", -[2,31228,31271], -[2,31995,5257], -[2,32038,31267], -"bail", -"tap-bail", -" tools", -[2,31269,31270], -[3,31238,12], -"shape", -"updater-color", -[2,31281,26543], -[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238], -[1,2343,31309], -[2,33763,31291], -[3,31262,20], -"idn", -"idna", -"dns", -"domain", -[3,31262,21], -[2,31283,31284], -[3,31272,22], -"ut-modes", -"-bidi", -[2,7001,31285], -[3,11071,14], -[2,17414,31287], -"@uppy/companion", -[2,31313,364], -"detect-agent", -[2,5176,31293], -"remapping", -[2,31295,13901], -[3,33831,13], -[2,31298,31299], -"purge", -[3,28384,12], -"presigned-post", -[2,31301,31302], -[3,30257,11], -"erceptor", -[2,2032,31304], -"prom-bundle", -"grant", -"tus-js-client", -"qr code", -[2,2662,1278], -[0,26964,0,31273,2523], -"resumable uploads", -"tus", -"dropbox", -"@vuepress/", -[2,21282,31372], -[2,31316,31324], -"@radix-ui/", -"@browserify/envify", -[3,31317,12], -[2,31318,31135], -"common-s", -"hakeify", -[2,31320,31321], -"verr", -"primitive", -"webpack-chain", -"ide-mistake", -[2,31323,31326], -[2,15053,31327], -"unassertify", -[2,31355,31356], -[2,31313,553], -[2,31313,1783], -"vue-server-renderer", -[2,31338,31342], -"decode-", -[2,14649,4627], -[2,31335,31336], -[3,13063,12], -"filter-obj", -"-on-first", -[2,4237,31340], -"reset-app", -[2,31313,31346], -[3,5422,9], -[2,7193,3634], -"shared-utils", -[2,31332,2091], -[2,31349,3111], -[3,21294,16], -"retape", -[2,19469,31352], -[3,32087,20,4], -[2,21282,31354], -"last-updated", -[3,28754,17], -"ompose-refs", -"tap-esm", -[2,31359,31604], -[3,31330,18], -"synchronous", -[2,28756,8191], -[2,31363,31364], -[3,31361,17], -"rimitive", -"FIFO", -"lifo", -"LIFO", -[2,28756,32760], -"queue js", -"job queue", -"job ", -"active-header-links", -"scheduling", -[2,31371,31373], -[2,21282,3412], -"task queue", -"ordered", -[2,31380,31382], -"linked list", -[3,31368,20], -"dequeue", -"escape-keydown", -"assistant-stream", -[2,31385,6599], -"assistant-", -[2,31418,31420], -[1,2343,31476], -"parchment", -[3,15562,11], -[2,31395,31396], -[3,12455,16], -[2,31391,1722], -[2,17612,2924], -[2,5197,4408], -[3,1694,14], -"x-buildutils", -"@types/sharp", -"radix-ui", -"ai-sdk", -"shadcn", -"fuzzysort", -"grunt-search", -[3,19622,19], -[2,31403,3595], -"@qunitjs/browserstack-runner", -"assistant", -"openai", -"ai", -"chatbot", -"ai-chat", -"dom-e", -[2,15588,6863], -[2,31411,31412], -[2,31415,31416], -[3,6493,9], -"acritics", -"@types/qunit", -[3,31331,11], -"qunit-plugin", -"heme-default", -"@walletconnect/browser-utils", -"ai-chatbot", -"ai-assistant", -"ai-copilot", -[2,31349,31428], -"exists-stat", -"js-reporters", -[3,15580,13], -[2,26353,8791], -[2,31436,31464], -"chatgpt", -"gpt4", -"gpt-4", -[3,2888,14], -[2,31436,553], -[3,31421,15], -"testling", -[2,31436,31441], -"AnimationFrame", -[2,705,31439], -"safe-json", -[2,31436,31443], -"window-getters", -[2,31450,6774], -"-export-", -[2,31445,14057], -[2,1205,31446], -"envvar", -"sanctuary", -[3,31442,22], -"-identity", -[2,31449,31451], -"xyz", -[2,6080,31458], -"@ethersproject/address", -[2,31457,25352], -[3,10408,17], -"al-ui", -"wallet", -"walletconnect", -"jsonrpc", -"cryptocurrency", -"dapp", -"iso-crypto", -[2,31436,31472], -[2,31467,31408], -[3,31454,15], -[3,30286,15], -[2,31436,594], -[2,31436,1616], -"alc", -"legacy-modal", -[2,31478,9962], -"@globalart/nestjs-swagger", -[2,32811,32812], -[0,31481,0,7653,2523], -[2,31478,553], -[3,31465,22], -"timed-out", -[2,31478,594], -[0,12215,12219,1014,28999,7406,7403], -"exceptions", -"sentry", -[3,15602,13], -[2,31499,31500], -"@graphiql/plugin-doc-explorer", -[1,2343,31488], -[0,31505,0,31510,34352], -[2,31478,5576], -[2,31436,31491], -"jsonrpc-provider", -[2,31493,31494], -[3,31490,23], -"http-connection", -[3,27276,25], -[2,31497,31498], -"ethereum-", -"test-network", -[3,31438,16], -"ocket-transport", -[2,7850,21497], -[3,4986,9], -[2,2079,4406], -[2,11183,31503], -[0,29419,29441,29454,29756,29757,29766,29807,29813], -"father-build", -"@mastra/core", -"rc-test", -[2,31520,13927], -[0,29818,4270,29823,5472,1973,29830,29830,3857,89,5131,12295,12296,5122], -"react-slider", -"slider", -[1,2343,31522], -[3,31027,15], -[2,7850,11512], -"core-licensed", -"wordpress", -"gutenberg", -[2,14013,8189], -[3,1103,9], -"angular-mocks", -[0,31529,0,31531,2487], -"graphiql", -"next-router-mock", -[3,5251,10], -"ponselike", -[2,31525,31526], -"body-scroll-lock", -[0,2817,18023,1125,1129,31764,1122], -"motion-v", -[0,30999,28818,5995,17978], -[1,2343,31546], -"radash", -"@a2a-js/sdk", -"js-tiktoken", -"hono-openapi", -"@ai-sdk/provider", -[2,31543,31545], -[3,2766,10], -"jasmine-ts", -[2,13130,3212], -[3,3793,11], -"@ai-sdk/", -[2,31643,1623], -"ui-utils", -[0,0,31547,31628,2523], -[0,1389,2665,4650], -[2,31537,31570], -"body scroll", -[2,31549,31551], -" lock", -[3,65,8], -"react scroll lock", -"react-common", -[2,31552,31554], -[3,31555,17], -"ponents", -[2,31556,31557], -[3,31555,14], -[2,31559,21189], -[3,31560,16], -"oks", -[2,31561,31562], -[2,31559,14592], -[3,31553,12], -"freeze", -"vanilla-js", -"tablet", -"bsl", -"-v5", -[2,31572,31582], -"@mastra/", -[2,1379,31574], -"node-info", -"@restart/hooks", -"resolve-path", -"@restart/ui", -[2,3744,20622], -"unco", -"ntrollable", -[2,31579,31580], -"schema-compat", -"ecosystem-react", -[2,31585,594], -[3,31548,17], -[2,11484,31587], -"sole-ui", -"@icon", -"s/material", -[2,31588,31589], -[2,3131,1512], -"reactcss", -"@types/esm", -"@case/eslint-config", -[2,31596,31601], -[3,29736,11], -"centered", -[2,10818,31597], -[3,30881,30], -[2,31599,1204], -"up-sync", -"chai-spies", -"jsx-loader", -"ntext", -[2,3808,31604], -[3,3850,10], -"@types/sane", -"testdom", -"@lukeed/uuid", -[2,31584,31570], -"color picker", -"sketch", -[2,4807,4547], -"photoshop", -[2,31616,5592], -[3,31573,14], -[2,31618,6893], -[3,31548,18], -[2,31538,31570], -[3,2651,13], -"tags-plugin", -[2,31620,31621], -[2,31626,6893], -[2,28010,1492], -[2,1585,31624], -[3,31610,24], -"mocha-jshint", -[0,4384,2076,5131,4453,2013,15535], -"@ai-sdk/azure", -[1,2343,31641], -[2,31543,31407], -"docgen/cli", -[2,10802,31632], -[2,31635,671], -"@internal/", -[2,31637,31638], -[3,28766,11], -"ypes-builder", -"@openrouter/ai-sdk-provider", -[2,1710,2136], -[0,31660,31662,31663,34352], -"is-root", -"camelcase-", -[2,24559,31675,31676], -"llm", -"agents", -"vectorstore", -"@react-d", -"nd/invariant", -[2,31648,31649], -[3,31650,11], -[2,31651,4163], -[2,1199,17586,31655], -"dnd-core", -"starts-with", -"embeddings", -"rag", -"evals", -"otel", -[0,26616,4391], -"replacement", -[0,2766,2297,2881,2886,2898,28023,3181,3758,4535], -[0,3113,26799,5131,1388], -[1,2343,31672], -[3,24807,15], -[2,31665,1286], -[3,8136,9], -"ctrine", -[2,31667,31668], -"html4", -[2,20245,16957], -[0,31679,31684,2514,2537], -[2,30415,31678], -[2,32813,18502], -"reference-", -"invalid", -"condense-newlines", -"landmark", -[0,20414,29996,17982,11049,30043,30048,3478,29457,3923,18730,20423,30050,30081,4729], -[2,30418,31681], -"olor-helpers", -"rtablejs", -"attr-accept", -[0,5526,5528,5529,31674,826,30086,4874,9241,20441,28400,1540,21594,1177,2078,2220,2222,5560,29197,3697,3752,4135,4193,4238,4481,91,4548,28519], -"vue-next", -"file-selector", -"draggable", -[3,71,24], -[2,31688,14255], -[2,69,5721], -[3,5700,24], -"ipeline-operator", -[2,31691,31692], -"-why", -[2,10876,31694], -[2,18043,200], -[3,4676,9], -"locks", -[2,31697,31698], -"drag-and-drop", -"color-name", -[3,1802,13], -"kanban", -[2,32312,2825], -"anser", -[2,2769,2086], -"le-promise", -[2,6935,31707], -[1,2343,31712], -"redbox", -"crash", -[0,31714,31730,31732,2443], -"css-mediaquery", -[0,3749,3527,11481,29170], -[3,33768,11], -"react-si", -"de-effect", -[2,31716,31717], -"iceworker", -"fl", -[2,16819,31720], -"karma-html", -[2,31722,2903], -"is-whitespace", -"nfl", -"noscript", -[2,31729,33865], -"dashdash", -"@types/ran", -[0,7812,30138,3742,1984], -"titanium-sdk", -[0,20001,671], -[3,20745,21], -"jest-preview", -[2,31395,4384], -"@polka/send-type", -[2,31005,31774], -[1,2343,31739], -[0,31746,31747,2514,2537], -[2,20413,1699], -[3,1845,22], -[2,31741,2855], -"react-mount", -"yarn-", -[2,31744,17335], -[0,58,1437,3930,814,4747], -[0,1178,29847,29851,25675,3758,3938,4216,4255,4389,4449], -"csstree", -"decap-cms-backend-aws-cognito-github-proxy", -[2,9497,31907], -[3,3321,10], -[2,31751,2849], -[1,2343,31756], -[3,19812,19], -[2,31754,965], -[0,31757,27070,27064,2523], -[0,28326,2017,31435,31469], -[1,2343,31761], -"completion", -[2,31780,31781], -[0,0,0,31762,2537], -[0,30486,5995,35981,7072,18035,89], -[1,2343,31783], -[2,31768,13083], -"viewport", -[3,15616,12], -"observer", -[3,1129,12], -"lazy load", -"inview", -"useInView", -"useIn", -"terse", -"query-plan-executor", -"decap-cms", -"aws-cognito", -"ctionObserver", -[2,31773,31777], -[2,31772,31778], -[3,31749,19], -"zure", -[2,31792,17977], -[0,0,0,31784,2487], -[0,1177,6939,89,3878,27158], -[1,2343,31786], -[0,31801,31803,31810,4139], -"@formatjs/", -"listformat", -[2,19067,31788], -[2,31787,31789], -[3,31790,14], -[3,31749,18], -[2,31792,31804], -"common-stuff", -[3,31790,11], -"cu-messageformat-parser", -[2,31795,31796], -[2,6458,1671], -[2,19067,31798], -[2,19644,8982], -[0,1104,22972,1676,2061,13896,1776,3102,4449], -"what-the-diff", -[0,53,87,94,1178,1429,1596,1177,1922,2323,2338,2384,2419,2436,2463,2510,2899,30496,3421,3697], -"git-gateway", -[2,31813,6064], -[3,18229,15], -"lat-gitignore", -"jsondiffpatch", -"gotrue-js", -[0,2323,1776,18011,5284,18444,1745], -"es-crypto", -"gateway", -[3,31793,21], -[3,19657,16], -[2,31814,2855], -[2,31813,620], -[1,2343,31818], -[0,31826,0,31829,2537], -"@nstudio", -[2,4564,2618], -[2,2617,31820], -[2,31792,2658], -[3,28165,19,9], -"hmac256", -"hmac512", -[0,2714,31809,3181,2867], -[2,31792,1973], -"exenv", -[0,30999,28818,5995,31804,31812], -"custom-", -[2,31830,11513], -[2,10704,31831], -"otp-io", -[2,29956,4963], -[2,31836,31837], -[3,23664,13], -"or-js", -"dom7", -[2,13843,353], -[2,1176,31839], -[2,14510,2091], -[2,22588,2091], -"diff-reporter", -[2,13872,31843], -[2,3024,6754], -[2,31848,31850], -[2,9944,7227], -[3,29951,21], -"tween", -"elpers", -"napa", -"runstorm", -[1,2343,31854], -[0,31909,31916,2514,2537], -[2,32904,158], -"nullthrows", -"@tiptap/core", -"metro-r", -[2,31858,96], -"metro-", -[2,31860,4227], -"s-runtime", -[2,6971,31862], -[2,5237,31863], -[3,5079,13], -"/codegen", -[2,31865,31866], -[3,31867,14], -"medium-zoom", -"js-polyfills", -[2,31868,31870], -"tinydate", -"tweezer.js", -[2,8603,1111], -"le-plugin", -[2,3630,31875], -[2,31868,31876], -"assets-", -[2,31878,29179], -[2,31868,31879], -[3,5059,11], -"olors", -[2,31881,31882], -[2,31868,31883], -"@jest/c", -"reate-c", -"-key-", -[2,31887,3046], -[2,6990,31888], -[2,31886,31889], -[2,31885,31890], -[2,3912,5959], -[2,31868,31892], -[3,31867,16], -"mmunity-cli-plugin", -[2,31894,31895], -[2,31898,4333], -[3,24539,13], -[2,17304,31900], -"laywright", -[2,32412,15001], -[2,31908,7188,32485], -"creator", -[2,10735,5130], -"mobile-", -[2,31905,5001], -"ttlcache", -"@tiptap/", -[0,30868,1414,2020,2105,2070,4745], -"cp-file", -[2,17964,31913], -[2,5063,18324], -[3,31333,16,3], -"keychain", -"yargonaut", -[0,20454,36559,30529,826,4874,30548,4135,1177,29197,91], -[2,36270,31918], -"s-test", -[2,31924,31925], -"@entypo-icons/core", -"ocial-buttons", -[2,4910,31921], -"evil-icons", -[3,15277,15], -"xecutable", -"feather-icons", -[1,2343,31933], -"fontisto", -"oslllo-svg-fixer", -"epub2", -"line-icons", -[2,4182,31931], -[0,0,21592,31936,2399], -"svg2ttf", -"svgicons2svgfont", -[0,12479,2947,7193,26421,27968,2100], -"osx", -[1,2343,31941], -"ssr-window", -"@pinia/colada", -[0,0,31946,31981,2399], -"@cmfcmf/docusaurus-search-local", -[3,3911,11], -"form-hmr", -[2,31943,31944], -[0,4493,32977], -[2,31951,31960,31962], -"currency", -"number-", -[2,31949,1671], -[3,27276,15], -[2,33571,89], -[2,31954,31957], -[3,7628,10], -"hijack", -[2,4013,31955], -"heck", -"onclick", -"outside", -"classic-", -[2,32028,1745], -"build-app-blueprint", -[2,31968,31971], -[2,812,12444], -"t-flow", -[2,17375,31965], -"hermes-eslint", -[3,31947,30], -"array-hyper-unique", -"crlf-normalize", -"ddon-blueprint", -"book", -"books", -"chapter", -"comic", -"epub-maker", -"epub-maker2", -"node-novel", -"novel", -"volume", -[0,188,4646,1542,32977,6533,3212,5472], -"matchmedia", -[2,31982,3766], -[1,2343,32268], -"yphenate-style-name", -[2,6495,31985], -"tch-", -[2,31987,11034], -[2,18655,31988], -[3,31989,12], -"mediaquery", -[2,31990,31991], -"-media-mock", -[2,3529,31993], -"@lobechat/", -[3,6415,10], -[2,31996,3582], -"escaping", -"respond", -"goat", -"matchMedia", -"🐐", -[2,32004,32005], -[3,31263,13], -"text-engine", -"color-logger", -"ice-cap", -[2,31995,18035], -"esdoc-importpath-plugin", -[2,31995,1807,32030], -"ECMAScript6", -[3,6608,10], -[2,32012,32014], -"2015", -"ECMAScript7", -[2,32017,6893], -[3,32013,13], -"ECMAScript8", -[2,32017,6836], -[2,3944,8253], -"k-monitor", -[2,4117,32021], -[2,32020,32022], -[3,32023,15], -"log-monitor", -[2,32024,32025], -"proposal", -[3,19209,12], -"http-graceful-shutdown", -"client-ipc", -[2,32032,32033], -[3,32010,19], -"server-ipc", -[2,31995,2092,591], -[2,31995,32036], -"model-runtime", -"mdc", -"developer", -"combobox", -"multiselect", -[2,31995,3742], -[2,31995,594], -[2,31995,32044], -"web-crawler", -[2,32047,13538], -"json2mq", -[3,1841,9], -"-apps", -[2,21340,32048], -"-carousel", -[2,11167,32050], -"why-did-you-update", -[2,32057,32058], -"carousel", -"Image slider", -"orbit", -[3,1841,12], -"rts", -[2,1841,6324,4978], -[2,32074,32082], -"@tippyjs/react", -"@vxna/mini-html-webpack-template", -"common-dir", -[2,1861,3427], -"name-p", -[2,32065,84], -[2,18977,32066], -"glogg", -[3,26921,11], -[2,32069,1646], -"jss", -"jss-plugin-camel-case", -[3,32072,12], -[3,32059,20], -"ompose", -[2,32073,32075], -[3,32072,11], -"default-", -"default-unit", -[2,32077,32079], -[2,32077,2202], -"s-gateway", -"isolate", -[2,32077,32083], -[2,32077,3639], -"listify", -[2,12171,2651], -"q-i", -"qss", -"-annotation-resolver", -[2,3822,32090], -[3,32091,13], -"-handler", -[2,4904,32093], -[2,32092,32094], -[2,32047,6038], -"react-group", -[2,4287,1928], -"type-detect", -[2,32047,45], -"inter-element", -"@types/buble", -"py-webpack-plugin", -[2,4860,32103], -"@types/esc", -"odegen", -[2,32105,32106], -"h-sum", -[2,12395,32108], -"@types/ke", -"ymirror", -[2,32110,32111], -[3,23829,17], -[2,32113,3119], -[2,27479,4408], -[2,13419,32115], -[3,12290,12], -[2,32117,13735], -[3,8157,15], -[2,32119,5331], -"deabsdeep", -"white-space", -"deepfreeze", -"dog-names", -"amia", -[2,22060,32125], -[2,32047,32128], -"market-sdk", -"keymirror", -[2,4293,6987], -"@lobehub/tts", -"tts", -"@lobehub/ui", -"@neondatabase/serverless", -"@next/third-parties", -"@react-spring/web", -"jest-pre", -[2,29611,32139], -"user-require-helper", -"@serwist/next", -" vector graphics", -[2,24090,32141], -"tagname", -[2,24116,7466,32165], -"svginjector", -"@t3-oss/env-nextjs", -"@trpc/client", -"@trpc/next", -"@trpc/react-query", -[3,32029,17,5], -"TapEventPlugin", -"300ms", -"http-shutdown", -"http-terminate", -"prometheus", -[2,33763,13538], -[2,30495,32158], -"dge-config", -[2,36840,32160], -"ctions", -[2,32163,32168], -[3,7214,13], -"@vercel/s", -"icss", -"lement", -[2,24116,32179], -"@4tw/cypress-drag-drop", -"peed-insights", -"@xterm/xterm", -[2,4609,2759], -"brotli-wasm", -"alert", -[2,29706,32174], -"-and-timezones", -"dexie", -"drizzle-orm", -"commoner", -[3,10755,11], -"hydrate", -"coverify", -"es3ify", -"infima", -"grunt-jest", -"jasmine-t", -"apreporter", -[2,32184,32185], -"drizzle-zod", -"populist", -"drizzle-", -"gpt-tokenizer", -[2,32192,32193], -"inferno-hy", -"perscript", -[2,23910,13494,32197], -[2,9944,9847], -[2,9944,591], -"-to-backend", -"js-sha256", -"vnode", -"createVNode", -[2,32237,1098], -[2,14040,1276], -[3,1898,19], -"lay", -[2,1962,32204], -[2,2783,3758], -[3,15568,16], -[2,1781,32212], -"scrolling", -"infinite", -"fixed", -[3,31752,17,3], -"langchain", -"gulp-rtlcss", -[2,26708,32182], -"langfuse", -[2,5223,32178], -[2,1861,32217], -"dark mode", -[2,32216,1732], -"lucide-react", -[2,32223,32224], -[3,3120,12], -"txt", -"react-popper", -"bootswatch", -"docstrap", -"storysource", -[2,10818,32228], -"model-bank", -"customize-cra", -[2,32234,32235], -"holderjs", -"modern-s", -"creenshot", -"react-prism", -[3,34791,12], -"logging-helpers", -"next-mdx-remote", -"nextjs-toploader", -"nuqs", -"officeparser", -[2,32244,1098], -[3,33256,22], -"github-files-fetcher", -"oidc-provider", -"ollama", -[2,7719,1612], -"partial-json", -[2,3502,33498], -"@stitches/react", -"animate-sass", -[2,3562,32254], -"trolling", -[2,32256,32257], -[3,839,14], -"gr", -[2,11932,8861], -"mocha-r", -"eporter", -[2,32259,32260], -[2,4385,32261], -"pdf-parse", -"preview jest", -[2,27010,32290], -"plaiceholder", -"posthog-js", -[0,0,32306,32313,2537], -"log-utils", -"pwa-install-handler", -"line by line", -"engine-base", -"engine-handlebars", -[2,32278,32279], -"lo", -"repl", -"lo-dash", -"react-con", -"fetti", -[2,32283,32285], -[2,4150,32282], -"-75lb", -"react-la", -[2,11072,2731], -"yout-kit", -[3,19580,11], -[2,32286,2002], -[2,5237,57], -"lws-middleware", -"-tagfilter", -"refactoring", -"printing", -[2,3715,32292], -[2,26973,32308], -"react-pdf", -"react-rnd", -"react-scan", -[2,32299,32304], -[3,3913,11], -[3,12133,19], -"tagfilter", -"prepare", -"dangerous", -"oso", -"react-wrap-balancer", -[0,1175,2323,2332,30561,2367,2459,2494,2504,2510,2530,1894,4045], -[2,17355,13771], -[3,23279,13], -[2,4627,8840], -[2,3166,32309], -"mobile-detect", -"composition", -[0,30563,30564,30565,30566,30567,30568,5131,9006], -[2,32315,32316], -"resolve-a", -"ccept-language", -"rtl-detect", -"lister", -"parse-entities", -"svix", -"tokenx", -"ts-md5", -"@red", -"grunt-jasmine-node", -"@redis/bloom", -"@redis/", -[2,32326,5576], -"unstructured-client", -"@redis/json", -[2,32326,7193], -"use-merge-value", -"time-series", -[2,32326,32332], -"mobilegrade", -[2,20223,16460], -"sniff", -"word-extractor", -[2,32339,594], -"zustand-", -[1,2343,32427], -"@cfaester/enzyme-adapter-react-18", -"ocly/openapi-core", -[2,32323,32342], -[2,32348,3005], -"nth-child", -"nth", -"rc-hammerjs", -[3,30906,13], -[3,1750,11], -[2,1186,3939], -[2,32349,32350], -"theme-redoc", -[2,32349,32352], -[2,32356,32366], -[3,8286,13], -"@lobehub/i", -"heme-common", -[2,32355,32357], -[2,20201,594], -"is-alphanumerical", -"api-doc", -[3,32351,12], -[2,32362,10958], -"is-decimal", -"is-hexadecimal", -"18n-cli", -[2,32047,671], -"netlify-plugin-cache", -[2,32370,553], -[3,32127,16], -[2,32047,32373], -"cssinjs", -"seo-cli", -[2,28427,32375], -[3,28091,16,8], -"just-curry-it", -"reducers", -[2,17790,32377], -"@next/eslint-plugin-next", -[2,16479,1414], -[3,1905,16], -"icorn-camelcase", -[2,32381,32382], -[2,4321,9776], -[2,2130,32384], -"@peculiar/webcrypto", -[2,16931,32388], -"roma-js", -"@wdio/selenium-standalone-service", -"babelrc-rollup", -[2,32398,32399], -"insert-line", -[2,5316,1464], -[2,3944,2700], -"queryselector", -"shadowdom", -"rdme", -"@types/cr", -"ypto-js", -"@types/ip", -"tanstack", -[2,32403,32404], -"gulp-str", -"eamify", -"rc-tools", -"@redux", -"-saga/core", -[2,32406,32407], -[2,32417,32419], -"tappable", -[2,33060,1501], -[3,13875,15], -"lias", -[2,32412,32413], -[2,3807,32442], -"effects", -"@types/nu", -"side effects", -"meral", -[2,15461,32423], -[2,32422,364], -"@actions/", -"idc-provider", -"redux-m", -[2,32424,18716], -"@types/pg", -[0,32428,32472,2514,2537], -[0,30585], -[2,32430,32439], -"@types/r", -"ecmarkup", -[2,32437,32438], -"gulp-emu", -[3,2453,9], -[2,32434,2995], -[2,2505,4088], -"@readme", -[3,23709,18,8], -"tl-detect", -[2,5051,32441], -"ystemjs", -"ful", -[2,24167,32455], -"dbdocs", -"dpdm-fast", -[2,32189,32451], -"goober", -"jest-esm-jsx-transform", -"parcel-plugin-css-to-string", -"use-throttled-effect", -"dbml-generator", -"abstract", -"hex", -"wai-aria", -"ice-detect", -[2,32466,38], -"drizzle-kit", -[2,1949,32459], -"dx", -"is-hidden", -"fake-indexeddb", -[2,9335,6424], -"just-diff", -"smart-tv", -"smarttv", -[3,15570,11], -[2,3506,4581], -[2,3862,32492], -"mcp-hello-world", -[2,12285,2527], -"remark-mdx", -[0,188,11018,30592], -"simple-routing", -[3,23352,11], -"mdx-", -"jsx-a", -[2,32476,5714], -[2,32475,32477], -[2,8137,32478], -[2,8909,32479], -[2,32474,32480], -"serwist", -"snapshot-", -[2,32483,1182], -"-bubble-menu", -"vercel-ai", -"nano-equal", -[2,1849,32489], -"-fuzzy", -"azure-openai", -"shouldComponentUpdate", -"file-viewer", -[2,3862,15571,32498], -"visual-model", -"stt", -[1,2343,32500], -"quicklook", -"-v2", -[2,3862,3730], -[0,0,32501,32517,2487], -[0,33043,442,34111,30737,4874,7677,22839,1177,1895,1942,1982,2807,25209,2990,20085,1894,19713,30762,23535,4131,1531,4507,91,4523,1984], -[2,31995,32503,32515], -"observab", -"image-gallery", -"image-viewer", -[2,32510,32530], -[2,32508,32509], -"vitepress-", -"plugin-group-icons", -[2,5119,32511], -"vg", -"issue-", -[2,32512,57], -[2,21520,22370], -"ility-otel", -[2,32518,32526], -[0,30769,8893,7595,7517,6564,7265,1209,3776,7268,6081,4799,553,91,4545,614,6731,6435,594], -[3,217,9], -"mock-stdio", -[3,3998,15], -"ebpro", -[2,32520,32521], -[2,9785,24387], -[3,23523,21], -[2,32524,3874], -"ndicator", -"progressbar", -"distribution", -"indeterminate", -"-charts", -[2,3862,32543], -[1,2343,32533], -[0,32534,32537,32542,2487], -[0,30787,28465], -[2,17092,32536], -"-path", -[0,11536,29317,30792,8850,1397,1556,2020,2070,30794,3510,1689,29444,4042,4174,4227,91,8550,28865], -[2,32539,21172], -[3,5079,24], -[2,11147,970], -[2,5557,970], -[0,6996,668,5362,28865,4042,2924], -"youtube-iframe", -[2,3115,19101], -"unified-args", -[2,32563,5066], -[1,2343,32548], -[0,0,32549,32555,2523], -[0,442,7677,1177,1938,1942,30828,1964,1966,2832,1531,30835,91,4523,1983,1984], -"ackends", -[2,32904,990], -"iframe", -[2,3993,6424], -"@cacheable/utils", -[0,21354,91,2844,7020,7119,30841,20179,7047], -[1,2343,32642], -"@apphosting/build", -"@atomico/rollup-plugin-sizes", -"git-branch-is", -"remark-slug", -"react-spring", -[2,32565,10896], -[3,30798,17], -[2,32575,32576], -[3,32557,12], -"-isomorphic", -[2,23276,32566], -[2,25131,32566], -[2,32570,32574], -[3,32041,11], -"@bedrock-layout/use-forwarded-ref", -"gmail-send", -[2,4807,31528], -"ython-interpreter", -[3,3895,11], -"-singleton", -"text-hex", -"ssrf-safe-fetch", -[2,32589,32623], -[3,23054,11], -"ent-config", -[2,32580,32581], -"ntributors", -[2,24218,32583], -[3,9343,15], -"gap", -[2,32585,32586], -[3,9347,9], -[3,30640,22], -"cense", -[2,32588,32590], -[3,23078,23], -[2,32592,10663], -[3,23082,24], -[2,32594,7210], -[3,23085,14], -"get-nonce", -"le-extension", -[2,32596,32598], -[3,23085,18], -[2,32600,23076], -"rst-", -"heading-", -[2,32603,2970], -[2,32602,32604], -[2,32596,32605], -[3,23092,13], -[2,9398,590], -[2,32607,32608], -"consec", -"utive-blank-lines", -[2,32610,32611], -[2,23099,32612], -"emphasis-", -"as-heading", -[2,32614,32615], -[2,23099,32616], -"name-articles", -[2,2093,32618], -[2,23099,32619], -[3,32620,25], -[3,32612,12], -"rast-color-function", -"dashes", -[2,32622,32624], -[2,32621,32625], -"irregular-", -[2,32627,7169], -[2,32621,32628], -"mixed-case", -[2,32621,32630], -"@theuiteam/lib-builder", -"crawler-detection", -[2,32746,31528], -"outer-dashes", -[2,32621,32635], -[3,23118,23], -[2,32637,8958], -"punctuation", -[2,32637,32639], -"missing-", -[0,0,0,32677,2487], -[2,31635,32673], -"blank-lines", -[2,32641,32644], -[2,23099,32645], -[3,32646,16], -"ulti", -"ple-toplevel-headings", -[2,32648,32649], -[2,32647,32650], -"dollars", -[2,5124,32652], -[2,23099,32653], -[2,16065,17537], -[2,23099,32655], -[3,32656,18], -[2,32657,591], -"ordered-", -"list-ma", -"rker-value", -[2,32660,32661], -[2,32659,32662], -[2,23055,32663], -[3,23139,22], -"-alignment", -[2,32665,32666], -[2,17998,2585], -"retext-english", -"retext-", -[2,10832,2195], -[2,32670,32671], -"ai-v6", -[2,32675,32676], -[3,32643,13], -"sdk-v4", -[0,3358,1564,10057], -[2,32700,7174], -[3,23096,14], -"nk-title-style", -[2,32679,32680], -"maximum", -"-heading", -[2,32683,15309], -[2,32682,32684], -[2,23055,32685], -[3,32686,20], -"line-length", -[2,32687,32688], -[3,23113,30], -"ed-urls", -[2,32690,32691], -[3,23113,25], -"s-in-section", -[2,156,32694], -[2,32693,32695], -[3,32617,18], -"ty-url", -[2,32697,32698], -[3,31198,34], -"-paragraph", -[2,15403,32701], -[2,32637,32702], -[3,23118,16], -[2,32704,14550], -[2,170,23116], -[2,23099,32706], -"-like-url", -[2,11043,32708], -[2,23099,32709], -"ed-fu", -"ll-reference-image", -[2,32711,32712], -[2,14475,32713], -[2,23124,32714], -[3,32715,39], -[2,32716,163], -[3,32672,14], -[2,32718,3997], -[2,31228,27863,32721], -"bsorbers", -[2,32723,32724], -[3,32720,20], -"emitters", -[2,32722,32726], -"-shape-circle", -[2,32728,32729], -[3,32725,35], -"square", -[2,32731,2585], -[3,31244,19], -"autolinker", -[2,32734,32735], -[3,31244,14], -"lim", -[2,31281,14858], -[2,31281,32738], -"roll", -[2,31281,32740], -"tilt", -[2,32742,32743], -[3,32739,22], -"winkle", -[2,31281,32745], -"wobble", -"tua-", -[2,4511,32078,4366], -[1,2343,32763], -"caseless", -[2,32752,2855], -"aws-sign2", -[3,32674,18], -"oauth-sign", -[2,3013,2660], -"forever-", -[2,32755,4575], -"har-validator", -"is-typedarray", -[2,2666,1580], -"use-callback-ref", -"taper", -"karma-cli", -[0,32764,32771,32780,2399], -[0,8181,26057,28329,28607,28620,28631,28632,28672,28673,26364,28963,29273,28685,30585,31857,31902,32411,33136,34082,33056,33586,33588,33590,33591,34083,33592,33600,33601,33604,33613,33623,10981,10984,37051,34087,28709,1556,16230,28718,28761,28780,28805,28883,28896,28911,2161,36538,28964,3090,3189,31530,28974,3510,29049,15451,4382,29050,4383,27921,27438,29161,29165,29219,29220,29235], -"glob-bin", -"use-sidecar", -"JSDA", -"stealthy-require", -[3,4010,16], -[2,32769,364], -[0,29267,29290,29295,10614,34092,11016,11018,31408,29304,1177,2559,29332,3980,4543,1984,29887,29323,188,13151], -[2,32774,32779], -"thenable", -[3,5430,21], -"useRef", -"createRef", -"merge refs", -"vconsole", -"ummary", -[0,29345,29332,8588,4383,12951,188,12072,6284,91,10309,181,4380,5130,29346], -[1,2343,32785], -[2,32783,32784], -"detect-n", -"ode-es", -[0,0,32791,32799,2443], -[2,4807,1845], -"@react-pdf/renderer", -"code spliting", -"sidecar", -[2,4625,8119], -[0,5087,1192,4468,4474,4493,91], -"index.js", -[2,32028,33976], -"is-wayland", -"copy-text-to-clipboard", -[2,32797,32798], -"mutation", -"-observer", -[0,5995,10906,24299,29527,29563,29565,29575,29576,29658,29706,29723,1623,6802,4967,29731,29730,29842,29845,29868,29963,30047,30133,30136,30161,30163,30487,91,30489,30501,30523,30562,30569,30574,30591,30593,30600], -"-tslint", -[2,1009,32800], -[3,1009,11], -"/analyze-trace", -[2,32802,32803], -[2,1977,2528], -"micro-", -[2,32806,7906], -"svelte-loader", -[1,2343,32837], -"down-config", -[3,13476,17], -"ntext-async-hooks", -[3,36559,16], -"ResizeObserver", -[2,32817,11937], -"worktop", -[3,8809,20], -[2,17214,5477], -"perty-rule-prelude-list", -"path-parse", -"scss-loader", -"-flag", -[2,6846,32822], -[2,15884,32823], -[3,1790,16], -"copy-dir", -[3,8119,14], -[3,32790,18], -"vue-scroll", -"vue-scrollbar", -"vue-plugin", -"滚动条", -"eartbeat", -"lory.js", -[2,33112,33113], -"adjust-sourcemap-loader", -[0,32838,32846,30825,2487], -[0,29304,26699], -[2,32841,10238], -[2,4807,1955], -[3,31435,16], -"cls-hooked", -"myrmidon", -[2,31436,2018], -[3,30380,15], -[0,1192,1177,4042,4468,1894,91,5087,4880,1895,1955,2780,1011,1009], -"ncredible", -[2,32845,32847], -"ensor", -[2,4914,32849], -"secrets", -[2,16645,32851], -[3,25837,16], -"anjs-rules", -[2,32853,32854], -"fatum", -[2,14560,6816], -[2,3335,32857], -"telegram", -[2,21386,32859], -"vesta", -[1,2343,32868], -"react-camera-pro", -"documentate", -"idebar", -"umentate", -[2,25821,32866], -[0,0,32869,32882,2523], -[0,4880,4883,89,3824,91], -"better-npm-run", -"clamp.js", -[2,19825,4627], -[2,1870,32872], -"ewma", -[2,4031,24388], -"spdy", -"karma-fixture", -[2,20441,6543], -"restify-", -"clients", -[2,32879,32880], -[0,89,28946,6847,30858], -"watershed", -"@applitools/utils", -"DTrace", -"karma-opera-launcher", -[1,2343,32893], -[3,18613,12], -"convict", -[2,32957,32963], -"antora-component", -"@dataui/crud", -[0,32898,32902,32915,2523], -"is-uuid", -"rewrite-imports", -"quit", -"shutdown", -[0,30939,30941,30944], -"terminate", -"kill", -"serviceworker", -[0,30949,30951,30953,30954,30961,30966,30973,30976,30977,30980,30984,30985,30988,31003,31007,31024,31033,31036,31053,31060,31065,31067,31068], -[2,32904,11017], -[3,32884,12], -"@types/webrtc", -"NoSQL", -"reql", -" language", -[2,3766,32908], -"applitools", -"eyes-sdk", -"test automation", -"visual regression", -[2,32731,27819], -[0,26591,1973,5472,13083,6969,1429,1145,1745,31077,31079,31080,1776,1204,6813], -"accelerate", -"detectrtc", -[2,32892,30665], -[2,32920,614], -[3,32918,13], -[1,2343,32935], -[2,32923,32931], -"install-p", -"json-copy", -[2,28093,32924], -[2,31281,32933], -"nano-copy", -"plain-", -[2,3425,1496], -[2,32928,32929], -"eers-cli", -"prepend-file", -"life", -[2,32937,32938], -[0,0,30812,30825,2523], -[1,2343,32964], -[3,32737,23], -"tate", -"drag-drop", -"plasmo", -"camera", -"prebuild", -"-install", -[2,32942,32943], -"webcam", -"-os", -[2,642,32946], -"practice", -[2,15090,32948], -"cam", -"Automation", -"pixel", -"blob-to-buffer", -"recognition", -"webRTC", -"autohotkey", -[3,35870,14], -"drag drop", -"machine", -"drag & drop", -"learning", -"react-h5-audio-player", -"itro-modules", -[0,32974,33037,33040,2523], -[2,32995,8745], -[3,16005,16], -[2,32966,4142], -"-twoslash", -[2,4614,32968], -[2,9408,32969], -[2,15125,5711], -"date-time", -"flru", -[0,31384,31735,34024,31315,31330,31358,34025,31361,31362,30375,31368,31378,31383,3266,9011,4763,9355], -[2,33470,33475], -[3,30686,19], -"pinia", -[2,15476,8961], -"wasm-pack", -"@expo/spawn-async", -[2,32982,147], -"@parcel/c", -"@parcel/fs", -[2,32985,5602], -[3,5367,15], -[2,5368,7158], -"mnemonic-id", -"node-object-hash", -"@plasmohq/init", -[2,32991,32992], -"@plasmohq/", -"parcel-config", -[2,32994,23], -[3,32990,19], -[3,10848,14], -"@plasmo/config", -[2,32999,33003], -"js-cleanup", -[3,32996,11], -[3,4058,16], -[2,33000,3874], -[2,25572,1155], -"stants", -[2,33006,594], -"removal", -"@plasmo/", -[2,33006,5130,33008], -"-shared", -[2,4807,32965], -[2,13843,19101], -"ixins", -"visionOS", -"tvOS", -"macOS", -[2,33018,89], -"3-drag", -[2,6491,33016], -"@iconify/", -"cpp", -[2,4861,24847], -[2,33022,2847], -"static-s", -[2,21897,33024], -"sass2less", -"swift", -"player", -"mse", -"commenting", -[2,14034,13828], -[3,19570,16], -[2,33030,2649], -"spdx-", -"eme", -"jsi", -"satisfies", -[2,33032,33035], -[0,8818,4874,4880,4883,89,3824,1984,31390], -[2,2369,2284], -[3,32978,18], -[0,31398,3287,4592,31399,89,4963,181,4967,4380,31400,31406,31407,31408,6070,31409,30210,31410,31422,31423,31424,31431,31432,31433,31454,31466], -"p-banner", -[2,33039,33041], -[2,33044,147], -[3,5517,19], -[1,2343,33049], -[2,8147,14773], -"ts-expose-internals", -[2,13888,2150], -[0,0,0,33054,2537], -[2,1884,10791], -"buffer-es6", -"process-es6", -"astrojs", -[0,3563,1623], -"compliance", -[2,33060,33585], -"dset", -"flattie", -"magicast", -[3,31902,18], -"zod-to-ts", -"xxhash-wasm", -"yocto-spinner", -"@oslojs/encoding", -[2,33066,33067], -"@astrojs/c", -"ompiler", -[2,34674,13535], -"zod-to-json-schema", -"http-cache-semantics", -[2,33072,33073,3984], -"@astrojs/m", -"arkdown-", -[2,34674,6943,19687], -[2,7185,33076], -"-object-hash", -"MappingURL", -[2,4225,33077], -[1,2343,33081], -"@types/dlv", -[0,33089,33090,33091,2537], -"rehype-toc", -"astro-scripts", -[2,33085,33086], -[3,24220,12], -"titles", -[2,4807,9485], -[2,4807,33070], -[0,26675,26678,26684,26690,26685,3259], -[0,5087,4874,1596,1192,1894,3951,3980,4094,4468,4474,1531,4521,91], -[0,12659,8124,1745], -[1,2343,33094], -"strata", -[0,33095,33102,33103,2523], -[0,9355,9307], -"nd-cache-dir", -[2,16785,33096], -[3,13364,12], -[2,33098,1095], -"graphlib", -[3,4069,16], -[0,1983,89,2220,3824,26744,966,1030,972,968,30521], -[0,89,2220,31523,1932,1745,25677], -[1,2343,33105], -[0,33106,33107,33108,2523], -[0,2611,3478,1759,31533,33507,3084,31534,2226,31535,2845,33062,31609,31536,31750,31548,31617,31619,31571,5328,31610,31623,29421], -[0,4763,4493,1177,2205,4042,1984,4473,23203,91,53,4874,31629,31631,31634,32643,2069,10879,8818,32674,32750,7677,31636,33137,31639], -[0,31408,31645,29486,4575,31646,31647,31656,31657,31658,3151,2041,91,31659,5130], -[1,2343,33132], -"fuzzysearch", -"sander", -[3,29704,20], -"ntax-descriptor-syntax-production", -"@types/d3-", -[2,33114,4552], -[2,33114,1473], -"force", -[2,33114,33117], -"hierarchy", -[2,33114,33119], -[2,33114,16662], -[3,33121,11], -[2,33122,1659], -"@saintno/comfyui-sdk", -"@virtuoso.dev/masonry", -"treemap", -"sunburst", -[2,13480,33130], -"diagram", -"jaeger", -[2,13475,4715], -[0,0,33135,33217,2523], -[2,5088,33134], -"dfkit", -[0,107,972,5087,1742,1192,3286,1894,89,3824,3904,4039,4468,91], -[2,33142,33147], -[2,31635,3965,553], -[2,33141,20760], -[2,33140,23], -[3,34681,19], -[3,10210,16], -[3,32411,20], -"testrunner", -"@next/", -"@next/env", -"@rspack/core", -[3,26697,11], -[3,5215,12], -"piccolore", -"-optimizer", -[2,11928,33150], -[2,33148,33151], -[2,4850,14643], -"css/metrics", -[2,4202,33154], -[2,17189,33155], -[3,28436,14], -[2,33157,16358], -[2,33157,6805], -[3,33159,15], -"rimitives", -[2,33160,33161], -"turborepo", -"triples", -[2,29314,33164], -[2,27913,1237], -[2,33144,33166], -[3,33167,15], -"nomodule", -[2,33168,33169], -[2,3878,3007], -[2,33144,33171], -"@next/swc", -"@taskr/clear", -"ac-colors", -"@taskr/esnext", -"mphtml-validator", -[2,9165,33177], -[2,10880,1179], -"i-info", -[2,4857,33180], -[3,11796,15], -[2,33182,10366], -[3,7808,17], -"rve-s", -[2,16826,9654], -"tatic-core", -[2,33185,33187], -[2,33184,33188], -"hsv", -"@types/fresh", -"urry", -[2,7887,33192], -"th-to-regexp", -[2,28121,33194], -"atform", -[2,28175,33196], -"@types/send", -"amphtml-validator", -"async-sema", -"lch", -"cli-select", -"color-names", -"client-only", -"cmyk", -"comment-json", -"mix", -"edge-runtime", -[2,13773,1194], -"lodash.curry", -"native-url", -"string-hash", -"taskr", -"unistore", -"watchpack", -"harmonies", -[0,89,3286,23803,3287,38,3212,1973,5472], -[1,2343,33219], -[0,0,33220,33224,2487], -[0,603,8862,811,816,6373,5535,30867,5087,13204,31087,11016,17494,11018,13072,1503,1567,1610,1192,2780,2832,2990,15324,1894,4042,4073,4076,4201,29889,4383,4468,91,1983,188,4639,4646,19235], -[3,18758,12], -"ogress", -[2,33221,33222], -[0,188,8588,31685,31687,31700,7838,29889,31702,1802,17819,29953,31703,91,31704,4453,5131,5284,4627,181], -[1,2343,33226], -[0,26338,0,33234,2537], -[2,27135,16460], -[2,33229,33521], -[3,30464,13], -"domparser-rs", -"rtl", -"ltr", -[2,33461,33965], -[0,3857,5128,31912,89,5131,12295,12296,181,15571,35060,158], -[2,33236,18200], -"get-port-", -[2,33238,33239], -[3,5366,9], -"tter-sqlite3", -[1,2343,33241], -[0,33242,33246,25117,2487], -[0,30784,20378,16860,3530,3561,28865,27921], -"@antfu/ni", -"run series", -"@dotenvx/dotenvx", -[0,58,31292,5180,30787,37017,28465,8862,811,16808,10895,24725,9743,37012,28572,1415,1457,1544,1573,1594,1615,30023,1759,1763,37014,668,1869,2007,984,28575,31308,18584,3090,3189,11480,3266,3445,3493,3510,34928,3527,3613,3616,37015,28119,24759,29444,4042,4060,2278,21688,4200,37013,4072,4955,27438,4729], -[2,4807,30228], -[1,2343,33252], -"LINQ", -"FRP", -[2,29445,1732], -[0,0,0,33278,2537], -[2,33254,8253], -"@vitejs/", -[2,23354,6708], -[2,5,33255], -"side-effects", -[2,14614,33257], -[3,1705,12], -"ruiser", -[2,33259,33260], -[3,18106,16], -[2,33262,2429], -[2,1921,33274], -"tslint-etc", -"no-toplevel-property-access", -[2,4491,33266], -"tslint-no-", -"unused-", -[3,5804,11], -[2,33270,1429], -[2,33269,33271], -[2,33268,33272], -"wc", -[2,9352,364], -"datagrid", -"survey-core", -[0,3857,5128,12295,12296,28641,1616,5131,1149,4160,28654,28656,16722,31824,31825,3348], -[1,2343,33280], -[0,0,2667,31019,34352], -[1,2343,33300], -" allocate", -[2,1398,33282], -[2,17681,1965], -"2fa", -"hotp", -"uninitialized", -"topt", -[2,33290,33291], -"google a", -"uthenticator", -[2,33294,7120], -"mock-env", -[3,5165,11], -"dist-tag", -"one time password", -"prepublish", -[2,37718,20105], -"2 factor", -[0,33301,33306,33372,34352], -[0,5145,30551,30583,5154,7709,28384,30584,13437,30602,30603,30609,30610,13187,30814,12207,7948,30824,30866,30887,30906,31178,31179,31247,31255,31263,32003,32008,32010,32031,32975,32034,32035,32502,32041,32569,32042,32043,32045,32053,32059,32060,32096,32100,32127,32131,32133,29421,32134,32135,33128,33131,32787,32136,33124,32140,32146,958,32147,32148,32149,29261,32156,32157,32159,32161,33125,32169,30778,1114,13215,32171,35358,977,32173,1673,1676,32175,1687,32176,32187,31930,2069,37853,2096,4776,32190,2226,2646,2681,23913,32194,29762,2696,12105,32198,32208,2928,32213,32216,32220,3021,32221,3096,32222,3127,26568,32230,32232,3266,3286,3285,32239,32240,29306,3415,32241,32242,32246,32247,31407,32248,32249,32250,32263,29899,3513,3519,3533,32266,3555,32267,20325,32270,3765,3777,89,32274,3824,11366,12229,3837,32280,15575,32295,3882,32296,3885,32297,32298,32305,3984,3988,3989,32314,32317,4135,4164,9348,32578,4302,4341,32320,26713,4376,32321,32322,11804,32328,4566,32331,3348,32337,4729,4745,4763,9355,32338], -"@sai", -"lshq/lodash", -[2,33302,33303], -[2,4807,4588], -[0,192,37097,32344,32354,32367,32369,32371,32374,32379,32386,8648,27424,21120,968,972,974,32387,32391,5245,4864,32400,8818,4870,5139,4874,32409,32420,33133,32426,4880,4883,32429,5254,32440,11800,9315,9241,29891,7677,12384,1529,1556,1610,1620,32444,1759,1763,32445,32446,32457,1177,32458,32461,2151,2070,2559,2675,28375,32463,2990,1209,3117,32469,3171,3310,640,32470,3478,1894,3985,9340,32471,3992,28380,4131,32482,4320,4494,4507,91,4549,4555,1983,1984], -"captains-log", -"js-f", -"ile-", -[2,33309,19101], -[2,33308,33310], -[2,9480,33311], -"flaverr", -"survey", -"i18n-2", -"include-all", -"surveyjs", -"-as-action", -[2,32959,33318], -"survey-library", -"pack-process", -[2,32959,33321], -[3,33322,12], -[2,33323,1552], -[2,20100,3031], -"ictionaries", -[2,27239,33326], -"parley", -"rttc", -"form-component", -"-generate", -[2,4104,33331], -"sails-", -"stringfile", -[2,33333,33334], -"skipper", -"-addresses", -[2,4082,33337], -[2,22775,33338], -"whelk", -"form-rendering", -[2,33323,2150], -"@sailshq/", -[2,33343,705], -"survey-renderer", -"root-require", -"dynamic-form", -"hook-orm", -[2,33333,33348], -[3,33349,11], -"sockets", -[2,33350,33351], -[2,24095,33358], -"sails.io.js", -"-store", -"-file-store", -[2,1577,33356], -"-form", -"mvc", -"form-library", -"form-management", -"web-framework", -"sailsjs", -[2,8631,33366], -"sails.js", -"naire", -"data-collection", -"data-validation", -"input-validation", -[3,7842,12], -"schema-form", -[0,5130,31409,31431,3287,32486,31407,32490,32494,32132,32495], -[2,33374,3552], -[3,14944,11], -[1,2343,33468], -"truncate-", -[2,33467,33631], -"utf8-bytes", -[2,33376,33378], -"js-api", -"mktemp", -[2,30767,33384], -"filename", -"wasm-nodejs", -[2,31208,22074], -[2,11183,6882], -[2,13167,33388], -"abs", -[2,33391,10271], -"parse-srcset", -[3,13169,16], -[3,13405,16], -[2,11183,614], -"ostrophe", -[2,33392,33394], -[2,11183,158], -[2,33398,1020], -[3,33396,15], -[2,11183,33400], -"steps", -[2,33402,2699], -[3,33387,17], -[2,11183,18346], -[2,33405,9997], -[3,33403,15], -[2,13163,11218], -[3,32049,11], -[2,33407,13756], -"-sin", -"gle-context", -[2,33409,33410], -[2,2784,33411], -[3,31591,11], -[2,4961,4184], -[2,33413,33414], -[3,4927,10], -[2,11183,3811], -[2,33421,1799], -"glob-importer", -[2,33416,33419], -[3,33399,15], -[2,33421,10205], -[2,33421,10222], -[2,33425,184], -[3,33393,15], -[2,33427,10261], -[3,11185,16], -[2,33429,18338], -[3,13162,15], -[2,33429,5449], -[2,33432,9939], -[3,13162,17], -[2,33434,11206], -[3,33404,16], -[2,3115,11415], -[2,33439,33440], -"bare-script", -[2,1818,11415], -[3,27467,17], -"tions", -[2,33442,10148], -[3,33417,15], -[2,13167,11241], -[2,33445,33446], -[3,33418,16], -"gmented", -[2,33442,33448], -"agination", -[2,33389,11245], -[2,33397,11211], -[2,11183,9044], -[2,33453,33457], -[3,5050,13], -"food", -"drink", -"helpful", -[3,14673,16,7], -"ourcesoftware", -[2,8423,33458], -[2,25184,33466], -[2,41,3874], -"teaching", -"experi", -[2,33463,1744], -[2,13527,591], -"local-npm-registry", -[3,5123,14], -[0,33469,33476,6151,2523], -[0,546,8605], -[3,32034,11], -"ecdh", -"ecdsa", -"solver", -"bplist-creator", -"etch-sse", -[0,8616,91], -"seed", -[1,2343,33480], -"oxfmt", -[0,33481,23733,33483,2523], -[0,29421,6494,1525,2026,12105,4548,4763], -"@bazel/runfiles", -[0,29681,29695,29718,29719,31264,1745,13083], -[1,2343,33485], -[0,33486,33487,33488,2537], -[0,7384,26870], -[0,4200,3510,89,4207,4135,1984,24324,3824,4459,11143,16485,3170,3527,27921,91,4874,5254,37085,8778,11938,32815,32818], -[0,4270,29043,1984,5472,1973,4627,4963,23246,89,188,3709,5926], -[3,21120,19], -[2,33489,3543], -"aggregate-error", -"bunup", -"env-ci", -[2,2103,18280], -"git-l", -"og-parser", -[2,33495,33496], -"-esm", -[2,18170,33498], -"p-each-series", -[1,2343,33502], -[0,33506,33508,33509,2523], -"file-url", -[2,2847,4219], -[2,17050,33504], -[0,2018,32839,32844], -"p-retry", -[0,2924,5087,4874,4677], -[0,6901,20319,1973,5472,5433,13657], -[2,33511,57], -"markdown ", -"solidjs", -"@fluentui/react-component-event-listener", -[3,33513,26], -[2,33514,2538], -[3,6061,10], -"/event-stack", -[2,4133,33517], -[2,33516,33518], -[2,8652,3858], -"oolbar", -"@artsy/fresnel", -[2,30415,594], -"standalone", -[2,54,33524], -[2,33527,33531], -"@react-s", -"@percy/cli", -"@percy/c", -[2,33529,4915], -"tately/overlays", -"anchor-js", -[3,14132,14], -[2,33535,17966], -[3,33526,15], -"ilter-imports", -[2,33533,33536], -[2,33544,33548], -"d-props", -[2,2034,33539], -[2,1249,33540], -[2,30851,1204], -[2,1199,33542], -"@react-t", -"chai-enzyme", -"react-ace", -"react-code", -"ypes/shared", -"sandboxer", -[2,33547,33549], -"ource-render", -[2,3890,33551], -"react-static", -[2,33559,6649], -"-routes", -[2,33553,33555], -"niversal-component", -[2,12273,33557], -[3,3911,17], -"satisfied", -[3,4134,12], -[2,33561,1623], -[1,2343,33569], -"simulant", -"ta-scripts", -[2,4409,1231], -"@aws-lite/client", -"@aws-lite/s3", -[0,0,33570,33584,2537], -[0,1173,1175,1195,1267,1272,1280,1282,32870,1429,32871,34009,1652,1676,1705,1177,1903,1958,1970,2054,2092,2151,2629,2651,2297,2878,2881,2895,32877,26470,2897,2900,2904,32886,2906,2912,2915,2925,2899,3363,3524,4039,37320,12826,4131,4535,37871,4027,2924,4681], -[3,21564,23], -[2,33571,1219], -[2,18124,16284], -[2,33575,7625], -[3,2001,11], -"bikeshed", -"mock-tmp", -"semicolon", -"tap-arc", -"@casl/dx", -"cloudfunctions", -"apigateway", -"api gateway", -[0,6398,20986,32888,32054,31512,4453,35062,6970,5131], -"drag-handle-vue-3", -[2,33060,33587,4403], -"floating-", -[2,33060,33589], -"horizontal-rule", -[2,33060,158], -[2,33060,26074], -[2,33060,33597], -"eraro", -"fast-sa", -"fe-stringify", -[2,33594,33595], -[3,28051,11], -"gate-executor", -"gubu", -[2,31908,1783], -"@tiptap/pm", -"ordu", -"patrun", -[2,31908,33607], -"rolling-stats", -"use-plugin", -"starter-kit", -"@seneca/test-plugin", -"lab-", -[3,29583,11], -[2,33610,2528], -[2,33609,33611], -[2,33621,33622], -"-entity", -[2,4136,33614], -"seneca-e", -"rror-test", -[2,33616,33617], -"seneca-", -[2,33619,19138], -"@tiptap/s", -"uggestion", -"@tiptap/vue-3", -"micro-service", -[2,33624,591], -[3,14587,13], -"minimum", -"viable", -"startup", -[1,2343,33632], -"orklets", -[0,33637,33651,33665,2523], -[2,10196,21009], -"Sentimental", -[2,11183,9352,3392], -"nlp", -[0,32905,32917], -"@farmfe/cli", -[2,6283,33647], -[2,35438,35525], -"dottie", -[2,1153,1430], -[2,4140,30807], -"sort-class", -[2,17693,33644], -"wkx", -"-testing", -[3,9786,10], -[2,33648,103], -[2,33900,147], -[0,4880,4883,8152,1009,1011,1540,1177,1895,1955,1959,32922,32932,1894,4042,4076,4474,4484,91], -"chai-datetime", -"esdoc", -"-ecmascript-proposal-plugin", -[2,33653,33654], -"esdoc-", -"inject-", -[2,4306,1932], -[2,33657,33658], -[2,33656,33659], -[2,18124,1932], -[2,33656,33661], -"ibm_db", -"js-co", -[0,32941,32945,32950,89,12295,12296,5131,32955], -"@webgpu/types", -"mbinatorics", -[2,33664,33667], -"mariadb", -[1,2343,33693], -"jmp", -"node-hook", -"p-props", -"p-settle", -"pg-hstore", -"fail-on-", -"sav", -"s-store", -"major-bump", -[2,33676,33679], -[2,21386,33680], -"snowflake-sdk", -[2,33691,33692], -"db2", -"snowflake", -"object ", -"relati", -"onal mapper", -[2,33687,33688], -[2,33686,33689], -"@prisma/m", -"anagement-api-sdk", -[0,0,33694,33695,2487], -[0,89,3857,21166,33377], -[0,3857,2171,12295,12296,33012,33013,33014,33019,5130,89,33025,970,5260,2062,33034,7671,8632,1283,22743], -[1,2343,33698], -"@tinymce/tinymce-react", -[0,33699,0,33715,2487], -[0,31680,28069], -"@ser", -"ialport/binding-mock", -[2,33700,33701], -[3,33702,19], -"s-cpp", -[2,33703,33704], -[3,33702,12], -"n1ed", -"byte-length", -[2,15497,33708], -[2,33706,33709], -[3,33710,19], -"cctalk", -[2,33711,33712], -[2,33711,28979], -[0,1473,1623,57], -"-byte-timeout", -[2,6941,33716], -[2,33711,33717], -[1,2343,33720], -[0,0,0,33752,34352], -"packet-length", -[2,33711,33721], -[2,33711,3925], -[3,33723,23], -[2,33724,1493], -[3,33723,21], -[2,33726,17402], -"slip-encoder", -[2,33711,33728], -[3,33729,20], -[2,10972,4383], -"@heroicons/react", -"pacepacket", -[2,33730,33733], -[2,33706,3101], -[2,33743,33747], -"ccTalk", -"com port", -"COM", -"data logging", -"hardware", -"modem", -[3,8292,9], -"nodebots", -"RFID", -"sensor", -"plus/elements", -"serial port", -"sms gateway", -"sms", -"UART", -[0,1512,1623], -[2,32092,91], -[2,33755,33756], -"react-li", -"b-tools", -"update-check", -"@zeit/schemas", -"is-po", -"rt-reachable", -[2,33759,33760], -[2,33769,33770], -"@vercel/", -"style-guide", -[2,33763,33764], -"@types/ser", -"ve-handler", -[2,33766,33767], -[3,2909,10], -"serve-directives", -"ts-blank-space", -"vitest-fail-on-console", -[1,2343,33776], -"windowed", -"temp-path", -[0,33778,33779,33780,2487], -"favicon", -[0,33243,53,58,5889,92,33245,29421,33305,1393,1525,1595,1680,1699,1687,2020,2071,2151,31401,2674,2929,3244,3310,3445,3467,3561,3681,3742,3930,30228,4382,4473,4480,4588,4763,33069], -[0,10879,4864,7812,33247,4039,4493,4507,91], -[0,4963,181,4380,31398,31400], -[1,2343,33782], -[0,0,0,33783,2487], -[0,89,188,23332,4607,33275,33276], -"@extend-chrome/messages", -[2,33786,13901], -[3,33784,15], -"@types/chrome", -[1,2343,33793], -"@types/jsesc", -[2,33791,33792], -[3,32170,13], -"nspect", -[0,0,33805,33809,2487], -"chrome-extension", -"webext", -"webextension", -"verless/utils", -[2,33700,33797], -[3,33010,17], -"z-commitlint", -[2,5465,33800], -[3,33798,12], -[2,33802,1973], -[3,4156,10], -[0,5087,4874,1009,1011,1177,1886,1895,1938,1955,1958,1966,1982,2070,1192,1894,4039,4042,4052,27720,4076,4468,4474,4508,4514,17223,91], -" plugins", -[2,33804,33806], -"aws lambda", -[0,33285,28946,33286,33288,33289,33292,33296,33298,5165,33299,202,1388,4967,5995], -" web services", -[2,6997,33810], -".com", -[2,33804,33812], -[1,2343,33815], -[0,0,0,33816,2487], -[0,33314,1669,33317,33320,33330,33341,33345,33347,33353,33360,33361,33364,33367,33368,7021,33369,33370,1781,2845,33371,33345,12899,4967,5284,91], -"isoformat", -"cdk/aws-lambda-python-alpha", -[2,13562,33818], -[3,7709,16], -[2,33820,7308], -"eventbridge", -[2,33820,33822], -[2,33820,13573], -"ns", -[2,9191,33825], -[2,9191,3763], -[2,9191,4799], -[2,17253,33832], -"lib-dynamodb", -[2,13548,33830], -"-tree-1d", -[1,2343,33855], -"htl", -"util-dynamodb", -[2,13548,33835], -"@types/d3", -"aws-cdk-lib", -"iot-device-sdk", -[2,9194,33839], -"caporal", -"-highlight", -[2,14558,33842], -"apache-arrow", -[3,9167,11], -[2,33845,33839], -"d3-geo-projection", -"@types/aws4", -"esbuild-r", -[2,33849,8736], -"jsii", -"jsii-diff", -[2,17111,7268], -"jsii-docgen", -[0,33856,0,29047,2537], -[0,28872,13411,13412,13388,1137,1170,30051,1362,33474,18220,2139,2188,2070,22410,21226,6698,1209,3074,3220,3275,27534,2072,3547,3919,4025,4108,4135,4165,4351,13400,4507,3348,4707,4753], -"jsii-pacmak", -[1,2343,33859], -[0,33861,33862,33864,2537], -"obuild", -[0,30293,26557], -[0,4874,30306,30305,30310,4039,1531,91,1984], -"type-plus", -[0,30297,13527,5592,5995,2679,23932], -"ge-parser", -[1,2343,33870], -"flow-re", -"move-types", -[2,33867,33868], -[0,33873,33874,33875,2537], -"isequalwith", -"date-fns-tz", -[0,2611,3510,1689,15452,8550,28862,33235,28142,15261,23531,2670,28282,12207,31026,20745,28283,31737], -[0,4493,1984,16473,15450,91,4874,19759,31794,5517,28203], -[0,3724,25638,32916,2703,5001,3304,5472], -[2,33892,33895], -"@emnapi/runtime", -"@img", -"/sha", -"rp-libvips-dev", -[2,33879,33880], -[2,33878,33881], -"-wasm32", -[2,33882,33883], -[3,33882,19], -"win32-ia32", -[2,33885,33886], -[3,33887,25], -"x64", -[2,33888,33889], -"emnapi", -"string-s", -"-reader", -"exif-reader", -"plit-by", -"dzi", -"thumbnail", -"libvips", -"vips", -"@farmfe/c", -"cargo-cp-artifact", -[2,14736,34112], -"skia", -"offscreen", -"compositing", -[1,2343,33917], -"vulkan", -"metal", -"flmngr", -[2,4167,14994], -"shelljs-", -[2,33911,3979], -"travis-", -"changes", -"check-changes", -[2,33913,33915], -[0,33919,33922,33923,2487], -"makefile", -[0,33567,33568], -"imgpen", -"unsplash", -[0,33574,1610,1177,3173,33577,3421,3752,33579,4389], -[0,7200,13573,6997,33804,6599,33581,33582,7308,6949,6808,33583,5130], -[1,2343,33925], -[0,33926,33931,2514,2537], -[0,33666], -"bitly", -"shorten", -"mongoid", -"tinyid", -[0,1787,91,18279], -"kapok-js", -[1,2343,33934], -[0,33939,33946,33947,2399], -"should-", -"should-equal", -[2,33935,1671], -"should-type", -[0,89,3824,33697], -"-adaptors", -[2,33938,33940], -"should-util", -"@types/listr", -"houldjs", -[2,1901,33944], -[0,3775,4039,4487,4469,3744,91,53,4874,4880,1195,4883,5090,1167], -[0,4445,6092,33707,89,6038,1936,6105,7062,27968,9381], -[2,32223,2636], -"pdf-generation", -"assignments", -"homework", -"html-to-pdf", -"grunt-endline", -"quiet-grunt", -"semver-sort", -[1,2343,33957], -[0,0,33958,33960,2523], -[0,30703,442,9307,33731,33732,29273,33736,968,972,974,5364,7806,7639,4874,4880,4883,31397,4992,1413,1497,1536,1639,1177,1961,7585,2203,2675,2832,2990,3105,3127,3561,1894,21024,89,33753,3824,5564,33754,3885,4073,4079,33762,4164,4200,4382,4383,4072,33771,4474,4494,91,4523,29139,1983,26744,32255,1984,33772,9355], -"Function URL", -[0,89,6071,4607,11316,33774,3392,32209,32210,3912,176,10052,21604], -[1,2343,33966], -"plugin-open", -[2,33911,33962], -"Durable function", -"-sdk", -[0,33967,34002,34003,2523], -[0,10895,31832,1084,1448,1573,1676,37014,2071,2151,2835,3090,3510,3527,3878,4042,4094], -"@secretlint/secretlint-rule-github", -[2,33970,3378], -[3,33968,28], -[2,33972,33973], -[3,28473,18], -"ap-runner", -"secretlint", -"@vue/tsconfig", -"extender", -"fs-core", -[2,33979,27106], -[3,18529,16], -[2,33979,202], -[2,33980,33982], -"-builtins", -[2,33984,33985], -[3,33981,21], -"to-fsa", -"@kwsites/file-exists", -"@kwsites/", -[2,9466,14834], -[2,33987,33988], -[2,33984,594], -[3,33989,17], -[2,33991,27725], -"@sim", -"ple-", -"git/babel-config", -[2,33994,33995], -[2,33993,33996], -[2,33979,24171], -"source ", -[2,33999,12619], -[2,33979,8745], -[0,33784,33785,8862,811,8850,816,840,20978,33787,5244,5245,4864,11300,33789,4874,4880,4883,1009,1011,1030,11016,1457,668,33850,1177,1959,11348,3400,34971,89,3824,4039,4057,15277,3709,4507,91,1983,33790,1984,188], -[0,4080,11504,3195,33794,7188,33795,33796,1388,33799], -[1,2343,34005], -[0,34006,34016,2514,2523], -[0,1653,33817,33829], -[2,29234,34008,34010], -"pec-", -"custom-event", -[3,11133,16,9], -"ant-stuff", -[2,13112,34011], -[2,32845,34012], -"rrect-lockfile", -[2,33664,34014], -[0,1414,33834,4494,1983,2832,2899,1424,1177,4042,2203,1894,4473,33837,4614,442,91,4874,2820,6503,33844,17113,19181,33847,8850,33853,17112,10615,3112,1895,811,1011,816,1009], -[3,8136,10], -"nalyzer", -[2,32412,34018], -"-navigation", -[1,2343,34022], -[0,34023,34045,34046,2487], -[0,20584,2131,2674,33876], -[2,31395,1542], -[2,34026,34042], -[3,34030,17], -"is-safe-filename", -[2,5600,34029], -"recurse", -[2,28756,18346], -"@asciidoctor/core", -[2,29611,34035], -"samsam", -[2,11122,34033], -"site-publisher", -[3,11134,16], -"plugin-n", -"o-prototype-methods", -[2,34037,34038], -[2,34036,34039], -"@studio/changes", -"ropdown-menu", -"@openspacelabs/react-native-zoomable-view", -"clock", -[0,23531,4874,33901,2611,3297,4449], -[0,1424,10798,33903,33904,29727,15344,11812,158,11806,33905,8924,33907,33908,2636,8221,9561], -[1,2343,34054], -[2,29611,34049], -"asciidoc-loader", -"vendor", -"mocks-", -"and-spies", -[2,34051,34052], -[0,34056,34057,34058,4139], -"asciidoc", -[0,33909], -[0,4469,91,2924,4677,89,3824,4880,4883], -[0,89,33909,2090,1586,10057,33920,158,6038,9229,33921,6997,6949,13531,20614], -[1,2343,34069], -"express-json5", -"-readme", -[2,8924,34061], -"-htpasswd", -[2,4199,34063], -"fs-ext", -"crypt3", -"pod-install", -[2,13888,2036], -[0,34072,34073,34074,2523], -"pinch-to-zoom", -"pinch", -[0,37082,26380,17214], -[0,1984,3541], -[0,1388,3541,4627,17050,1973,5472], -[1,2343,34077], -"@polka/url", -[0,34079,34080,34081,2537], -"totalist", -[0,1138,1437,1457,2182,2185,2226,2600,2685,2991,3127,3758,4135,13834], -[0,33943,8147,5254,33768,1166,1424,3421,29899,1894,3706,28593,4474,4481,91,1906], -[0,33948,200,33949,1745,33950,33951,1783,2636,3758,3197,33952], -[3,33056,29], -[2,33060,34084], -"node-range", -"bytes-iec", -"nanospinner", -[2,37050,6579], -"budget", -[3,13526,12], -[2,34089,34088], -[1,2343,34094], -[2,959,34093], -"table-core", -[0,34095,34100,28315,2523], -[0,1437,4747,28172,32884,28236], -"file size", -" size", -[2,7204,34097], -"get size", -[0,4874,32551], -[1,2343,34102], -[0,34103,21592,34106,2523], -[0,4135,32884,28236,28200], -"-cognito-identity-js", -[2,6997,34104], -[0,32910,32912,32913,13428,5472,6533], -"skapi", -[1,2343,34109], -[0,34110,34117,34120,2537], -[0,31855,28236,28200,32884], -[2,20327,1984], -"-no-globals", -[2,17375,34114], -"ormat", -"unloader", -"seperator", -[0,2065,34007,32903,13426,3536,11132], -[2,34119,12675], -[3,36879,12], -[0,32910,32912,32913,13428,5472,6533,29724], -"is-fullwidth-code-point", -[1,2343,34123], -[0,34124,34126,34129,2537], -[0,1525,940,999,32138], -"random-item", -[0,32889,33932,34031,34032], -[2,29611,34128], -"file-publisher", -[0,29699,200,1179,1745,29703,29753], -"publisher", -"folder-size", -[2,2183,34131], -[1,2343,34135], -"js-extend", -[0,34138,0,34140,2537], -"math-sum", -[2,7627,1413], -[0,34048], -"tablify", -[0,29699,32891,5457,34055,1745,29703,29753], -"slow", -[1,2343,34144], -"dts-plugin", -[0,26338,34145,34146,4139], -[0,5467,21155,10614,5087,4870,4880,5091,1009,1011,1529,1177,1895,1955,2675,1192,34067,1894,89,3857,21166,3980,91], -[0,3857,5128,12295,12296,34070,34071,5131,970,4627,6624,16660,37460,4420,4384], -[1,2343,34153], -[2,5051,34149], -"cheduler", -"htmlcs", -"standards", -"WCAG", -[0,34155,34158,34159,2399], -[2,2287,33914], -[0,4419], -"urlify", -[2,21831,364], -[0,32426,3519], -[0,25638,14873,5472,17878,4419], -[1,2343,34162], -"stage-js", -[0,34163,34164,2514,2487], -[0,31292,3530,9354], -[0,25366,33243,33638,33650,16804,33146,4874,20374,29891,1112,19839,33902,668,1177,34113,2807,2990,3090,28865,4042,9245,1531,91,34115,29470,1983,1984,2924,4677,29161], -[2,4609,12607], -[2,4609,34168], -[2,18124,1781], -"pages", -" output", -[2,3721,34169], -" standard", -[2,4216,34171], -"standard ", -[2,34173,3721], -" for ", -[2,34175,4255], -[2,25264,34176], -[3,34177,11], -[2,34178,9338], -"stylish ", -[2,34180,16237], -[2,34180,4255], -[2,1983,6872], -[2,34183,22156], -[1,2343,34192], -"box2d", -"game", -"physics", -"axios-ntlm", -"xml-crypto", -"2d", -[0,14631,0,34193,2487], -[0,29699,32891,20204,1745,29703,29753], -"@types/sax", -[1,2343,34196], -[0,34202,0,34210,2399], -[2,4005,34198], -"s-cli", -[3,26390,16,13], -"base64id", -[2,9246,25513], -[0,34127], -[2,34204,2403], -[3,5556,15], -[2,34206,34690], -[3,28724,15], -[2,7686,34209], -"@socket.io/component-emitter", -"minify-templates", -[0,29699,32891,34130,1586,1745,29703,29753], -[1,2343,34212], -[0,34213,0,29047,2523], -[0,10744,1209,3084,25886], -[1,2343,34215], -[0,0,34223,34248,2523], -[2,34217,158], -[3,5386,10], -"faceoff", -[2,34220,34221], -[3,16767,16], -"erformance-monitor", -[2,16766,6812], -[0,107,442,4856,7677,1091,1177,1895,1894,4039,4060,4193,4072,4481,4484,4508,4514,4523,1983,34165,34166,34183,34184,4614,1984], -"fast-wrap-ansi", -"@rslib/core", -"eventsource", -"oxc", -"sockjs", -[2,28573,34230], -"rslib", -[2,28606,34232], -"rstest-config", -[2,34234,6847], -[3,10235,18], -[2,29314,3090], -"@pnpm/list", -"@pnpm/workspace.find-packages", -[2,1463,20001], -[2,37509,34240], -"eeverse", -[2,34242,34243], -[3,4892,10], -"npkg__lockfile", -"fast-npm-meta", -"@nolyfill/internal", -[2,34247,35011], -"@nolyfill/", -[0,34186,12075,5284,91,34187,34188,16284,34191,5131], -[1,2343,34250], -[0,0,34251,34252,2523], -[0,107,4874,1009,1011,17494,1177,1895,2025,2899,1894,34197,4060,34199,4193,4508,4514,91,1983,34165,34166,34183], -[0,12075,34187,22894,8691,16284,34191,1424,16697,5122,5131], -[1,2343,34255], -"separated", -[0,34256,0,34257,2537], -[0,4447], -[0,4525,5284,34227,33479,1894,91], -[1,2343,34259], -[0,0,0,34285,2537], -"fumadb", -"microfiber", -[3,8277,10], -"alars", -[2,34262,34263], -"load-files", -[2,5527,34265], -"compact", -[2,3715,34267], -[2,9470,34268], -"@anvilco/apollo-server-plugin-introspection-metadata", -"kysely", -"bdd-lazy-var", -"@orpc/zod", -"@orpc/otel", -"neverthrow", -"introspection", -"@c15t/logger", -"-query", -[2,34276,34278], -"@orpc/server", -"@orpc/openapi", -"@orpc/contract", -"@c15t/translations", -[2,13498,202], -[0,4796,26481,2968,31176,6646,3378,3420,9478,6666,3552,4135,18710,7671,33163,33186,18280,9527,4749], -"kysely-pglite", -"@c15t/vitest-config", -[2,34289,34290], -"@libsql/", -"kysely-libsql", -"string-t", -[2,34295,21160], -"o-stream", -[2,34291,34293], -"@c15t", -[1,2343,34322], -"consent", -"privacy", -"ccpa", -"binary-split", -[2,7241,14922], -"lgpd", -"self-host", -"consent-management", -"user-privacy", -[2,34307,34308], -"data-pro", -"tection", -"cookie-banner", -[2,34304,34311], -"-platform", -[2,2339,5365], -"cmp", -[2,34315,7179], -"consent-", -[3,5079,14], -"imageinfo", -"prettydiff", -"sprity-css", -"/common", -"sprity-lwip", -[0,0,34323,2514,2537], -[0,29713,34235,635,34236,34237,811,8850,816,23339,8712,28206,34239,34241,29308,1525,1707,34244,3749,3527,4079,34245,34246], -"object-stream", -[1,2343,34327], -"through2-spy", -[0,34329,0,29047,2443], -"coordinates", -[0,13387,13412,13388,20908,13395,1170,1362,1364,2026,29067,2670,1209,3084,3162,3237,3509,4148,4507], -[1,2343,34332], -"css-sprite", -[0,33469,33476,6151,2443], -[1,2343,34334], -[0,34335,33476,6151,2443], -[0,31874,546,8604,8605], -[1,2343,34337], -[0,34338,34339,34340,2399], -[0,4763,16230,15095,34260,34271,34273,4341,34274,34275,32176,34277,34280,34281,34282,34283,13471,34284,13495,13502], -[0,3244,32426,6526,91,4874,34286,6494,34287,12207,34288,33237,34292], -[0,34297,34298,7229,34299,34302,5995,34303,34304,34305,33055,34306,34309,34310,34313,34314], -[1,2343,34343], -"asn1", -[0,34344,34346,34347,2399], -[0,2105,3527,2072], -"bcrypt-pbkdf", -[0,28177,4880,1701,3442,21166,91], -[0,3857,12295,12296,31937,6574,6635,5128,31912,89,5131,181,1017,45,13814,22875,2414], -[1,2343,34349], -[0,34350,0,34351,4139], -[0,4597,3173,940,34048], -[0,29699,32891,1563,1745,29703,29753], -1772409600000, -[1,2343,34361], -"integrity", -"subresource integrity", -"sri", -"sri hash", -"sri ", -"sri string", -[2,34358,1179], -[0,0,34362,34381,34352], -[0,34363,32558,48,53,5240,83,87,34368,34369,5583,6373,1178,1193,17217,24621,29883,34370,29775,1540,1759,1177,1935,1938,27790,2126,29945,35634,2675,1192,11896,32206,11348,11350,3534,34376,1894,3720,3758,34197,4042,34377,4060,4073,4079,4146,91], -[2,34364,34365,34367], -[3,5215,13], -"ollup-plugin", -"shuruhatik", -[3,10697,17,6], -"@fezvrasta/tsc-silent", -"@khanacademy/flow-to-ts", -[2,34374,34375], -"long-", -[2,4252,591], -[2,34371,34372], -[3,14697,22], -"place-variables", -"poster", -[2,34378,34379], -[3,11802,15], -"low-entry", -"version-guard", -[0,8190,8191,5399,8192,34384,34385], -[3,12809,13], -[2,34382,7051], -"popper", -[2,8194,34386], -" engine", -[0,0,7997,7998,34352], -[1,2343,34390], -[3,1570,26], -[0,0,34394,34396,34352], -"fig-spec", -[2,34389,34391], -"dotgitignore", -[0,10615,6503,4874,1387,1429,2899,3363,4042,4426,91], -"std-mocks", -[0,34397,2238,34398,16629,7521,34399,29804,31687,1993,16284,9006,34400,34401,8424,34402,6829,26514,34403,34404,34406], -"anime", -"anime.js", -"timeline", -"easings", -"cubic-bezier", -"splitText", -"WAAPI", -"Canvas", -"ban-sensitive-files", -"WebGL", -"deps-ok", -"dont-crack", -"git-issues", -"pre-git", -"simple-co", -"mmit-message", -[2,34411,34412], -[0,9116,9122,9131,34352], -[1,2343,34416], -[0,7967,7938,7939,34352], -[1,2343,34418], -[0,0,0,10570,34352], -[0,0,12106,12107,34352], -[1,2343,34422], -"modern-syslog", -[0,0,11488,34424,34352], -"winser", -[0,7789,34425], -"decrypt", -"etsy", -"metric", -[0,34430,34436,34440,34352], -"aggregation", -[0,34431,34432,34433,34434,34435], -"ev-emitter", -"fizzy-ui-utils", -"get-size", -"imagesloaded", -"unidragger", -[0,1462,1177,34437,34439,2907,4320,4323,4072], -[2,1949,34438], -"etafizzy", -"jquery-bridget", -[0,4453,6398,34441,31512,32054,35060,36197,1388], -"flick", -[0,17201,17202,17203,34352], -[3,11146,12], -[1,2343,34445], -[0,0,34446,34448,34352], -[0,1429,1700,2323,2367,22122,2409,2447,2494,2530,34447,2899], -[2,22465,35458], -[0,6901,27679,16626,3220,3222,1666], -[0,0,0,18014,34352], -[1,2343,34451], -[0,0,0,34452,34352], -[0,17199,16892,2869,3166,34453,11326,207,20531,57], -"lex", -[1,5293,34455], -[0,8391,34352], -[1,2343,34457], -[0,34458,0,2514,34352], -[0,1395], -[0,20095,20097,2514,34352], -[1,2343,34461], -[0,0,34462,34463,34352], -[0,2080,4389], -[0,18012,25866,18108,34464,30091], -"maths", -[3,10821,18], -"11y", -[2,34465,34466], -"pannellum", -[1,2343,34470], -[0,0,34477,34483,34352], -[3,32229,23], -"hots", -[2,34471,34472], -"-puppeteer", -[2,34473,34474], -[2,10818,31765], -[0,2899,2025,16189,34478,34482,3469,1149], -[2,34481,2844], -"orchbox", -[2,22060,34479], -"persist-", -"jugglingdb", -[0,11415,3469,34482,16189], -[2,4270,676], -"patternlab", -"-pat", -[0,53,61,83,87,90,92,442,10615,29767,6061,16607,6063,6065,16608,16612,29769,1193,20517,29775,1503,1593,1610,1177,15510,1942,2026,2323,2338,2544,2765,24652,29778,1192,2780,1776,29779,2990,9750,5103,29780,29783,3758,3957,4131,4523,1983,29770,27900], -[1,2343,34495], -"tern-library", -[2,34486,34489], -[2,21043,34490], -"django-", -[2,34492,5354], -"jinja2", -[0,0,0,34496,34352], -[0,34497,11328], -"panorama", -[0,26328,26329,26330,34352], -[1,2343,34501], -"findit2", -[0,34502,0,2514,34352], -[0,3760,13126,4747,4709,3259,4545,1481,16734,1512,4720], -[1,2343,34504], -[0,7936,7938,7939,34352], -[0,0,0,23762,34352], -[1,2343,34507], -[0,34509,34512,34518,34352], -"funsert", -[0,3744,34511], -"into-stream", -"rip-out", -[0,48,53,78,87,90,94,1148,1596,1843,1845,1177,34514,17585,1951,1959,2832,2899,3421,89,3824,32510,34517], -"Assert", -[2,34515,34516], -[3,1886,16], -"daddy-react", -"setup-env", -[0,8221,3857,21610,34519,11512,89], -"compatiblity", -"compatibl", -"ity", -[0,0,0,23771,34352], -"-metadata", -[2,26612,34523], -[0,11976,4874,7677,12690,3377,3446,7461,9245,91,1984], -[1,2343,34529], -"livestream", -[2,34527,3642], -[0,0,34530,2514,34352], -[0,53,87,811,13866,816,1198,1290,1389,2766,2297,2871,2881,2886,2898,6387,2923,3758,4042,4045,34531,20981,34533,20983,4073,4650], -[2,34532,671], -[3,15277,16], -[2,15476,34534], -"ass", -[1,2343,34536], -[0,0,34538,2514,34352], -"gulp-rimraf", -[0,4039,3188,34539,34543], -"testit", -"string.js", -"stringjs", -"S", -"gethub", -[1,2343,34545], -[0,0,34546,34548,34352], -[0,48,53,87,1178,1261,1177,1881,1895,1938,1955,1192,1894], -"codsen-utils", -[0,6270,4202,1413,34549,57,34550,17180,14638,12786,30946,2382,2098,2090,7017,6435,6270,15253,3721], -"bits", -"iec", -"ranges-apply", -0, -"ranges-push", -"string-le", -"ft-right", -[2,34554,34555], -0, -"onkey-traverse", -[2,19434,34558], -"ranges-invert", -0, -"jsp", -"mixed", -"xhtml", -0,0,0,0, -[2,2183,7230], -0,0,0,0,0, -"-html4", -[2,26854,34575], -[3,34576,19], -[2,34577,27769], -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"payment processing", -"credit cards", -0,0,0,0, -[2,2168,3081], -"sdk-", -[2,34608,1102], -[2,26424,34609], -"fly-register", -[2,202,34611], -"strong-agent", -0, -"strong-arc", -"strong-build", -0,0, -"strong-deploy", -"strong-m", -"esh-models", -[2,34620,34621], -"strong-re", -"gistry", -[2,34623,34624], -"strong-start", -"strong-s", -"upervisor", -[2,34627,34628], -0, -"core-util-is", -"strong-de", -"bugger", -[2,34632,34633], -"wagger-ui", -[2,34627,34635], -[3,4369,10], -"-validate", -[2,22188,34638], -0,0, -"LoopBack", -"Platform", -"alerts", -0,0, -"event loop", -0,0, -"heroku", -"nodeops", -"npmrc", -"openshift", -"slc", -"est functions", -[2,34141,34655], -"strong-cli", -"strong-cl", -"uster-control", -[2,34658,34659], -"strongops", -"upstart", -0,0,0,0, -[2,27954,1699], -[2,27954,2070], -[2,27954,3144], -"@zip.js/zip.js", -[2,3503,4549], -0, -"@astrojs/check", -"@astrojs/", -"starlight", -[2,34674,34675], -[2,12310,1430], -[3,811,8], -[2,34678,1388], -"@shoelace-style/shoelace", -[2,13283,8891], -0, -"astro", -"hanbi", -"escape-at", -[2,2827,34685], -"jsdoc-ts", -[2,2701,1932], -[2,34687,34688], -"lit", -0, -"dictionary", -[2,19319,34692], -"Android", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -[2,19801,2741], -"css-t", -"o-react-native", -[2,34716,34717], -0, -[2,11832,14438], -[2,5129,10699], -[2,4881,34721], -"rame", -[2,34723,10699], -[2,11364,34724], -"-plugin-rtl", -[2,7917,34726], -0,0, -"ts-toolbelt", -0,0,0,0,0,0, -"bunchee", -"stylis-", -0, -"rule-sheet", -[2,34738,34740], -0, -"zeit", -0,0,0,0,0, -"hack", -0,0,0,0,0, -"globjoin", -"-tag-names", -[2,18110,34756], -"-nested-selector", -[2,5250,34758], -[2,30273,34759], -0, -"svg-tags", -0, -"github-info", -[2,6018,34764], -"@styl", -"elint/prettier-config", -[2,34766,34767], -[3,34768,11], -[2,34769,19692], -[3,4852,9], -"lanced-match", -[2,34771,34772], -[3,25558,14], -[2,34774,5260], -[2,4865,4565], -"murmurhash", -[2,8802,34777], -[3,13059,16], -[2,34779,2706], -0,0, -"@types/svg", -"-tags", -[2,34783,34784], -"ylelint", -[2,17371,34786], -0,0, -"set-stylelint", -[2,32137,34790], -[3,3676,10], -[2,34792,367], -0,0,0,0,0,0,0, -[3,4323,16], -0,0,0,0, -[2,1280,8554], -0,0, -"css-values", -"shortcss", -0, -"dela", -"ration", -0,0, -"-strict-value", -[2,34813,34816], -[2,34812,34817], -"keyword", -"z-index", -0,0,0,0, -"orting", -[2,3677,34825], -0, -"udochenkov", -[2,25790,34828], -0, -"ed-syntax", -[2,30481,34831], -[3,24627,16], -"hudochenkov", -[2,34833,34834], -0,0,0,0,0, -[3,30356,14], -[2,34841,27739], -0, -"github-c", -"s-list", -[2,17551,34845], -[2,34844,34846], -0,0,0,0,0,0,0,0,0,0,0, -[3,1369,11], -[2,34859,30480], -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"jar", -"cookiejar", -0, -[2,33935,27], -0, -"tinyify", -0, -"frisbee", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"promised", -0,0,0,0,0,0,0,0,0,0,0,0,0, -"capability", -"16m", -0,0,0,0,0,0,0,0,0,0,0, -"periscopic", -0,0,0,0,0,0,0,0,0,0, -"@types/sade", -[3,27700,21], -[3,27700,22], -[2,34941,20500], -[3,9566,10], -[2,34943,2847], -[2,4353,34944], -0,0,0,0,0, -"@kiwi/eslint-config", -"@kiwi/", -[2,34952,7628], -0, -"@types/pug", -0, -"easy-import", -[2,3562,34957], -0,0,0,0,0, -"@res", -"vg/resvg-js", -[2,34964,34965], -"prettysize", -0, -[3,30071,12], -"hromium", -[2,34969,34970], -0,0,0,0,0,0,0,0,0,0,0,0, -[3,4362,11], -0,0,0, -"lease-notes", -[2,15842,34988], -0, -"precache", -0,0,0,0,0, -"tape-promise", -0, -"autogen", -0,0,0,0, -"multil", -"ang-", -[2,2055,4298], -[2,35005,35006], -[2,35004,35007], -0,0, -"promise.any", -0, -[2,29351,7625], -0, -"readmeio", -0,0,0,0,0, -[2,4364,12659], -[3,4367,9], -"emplates", -[2,35022,35023], -0, -"swagger UI", -0,0,0,0,0,0,0, -"s-readme", -[2,9828,35034], -[2,11941,35035], -0,0,0,0,0,0,0,0,0, -"nodelint", -"still", -[3,29280,15], -0,0, -"travis-cov", -0, -"jinja", -0,0,0,0, -"swipe", -"framework7", -"gallery", -0, -"slideshow", -0,0,0,0, -[2,14507,3048], -[2,2655,35067], -0,0, -"sync-rpc", -[2,21658,705], -0, -"flowgen2", -0,0,0,0,0, -" information", -[2,623,35080], -"sysinfo", -0, -"freebsd", -"openbsd", -"netbsd", -"cpu", -"cpuload", -"physical cores", -0,0, -"logical cores", -"cores", -0, -"socket type", -"fsstats", -"diskio", -" devices", -[2,1359,35098], -"netstats", -[2,6072,591], -[2,11996,35101], -"network ", -"connections", -[2,35103,35104], -"network stats", -"iface", -"printer", -"processes", -"users", -"internet", -"battery", -0,0, -"docker stats", -"docker ", -[2,35116,35109], -0, -"graphic card", -"graphic c", -"ontroller", -[2,35120,35121], -0,0, -"disk layout", -"audio", -0, -"bluetooth", -"wifi", -0, -"wifinetworks", -0, -"virtual box", -"virtualbox", -"BIOS", -"chassis", -0,0,0,0, -"@jsenv/file-size-impact", -"-style-", -[2,21605,3733], -[2,35142,35143], -[2,13565,35144], -"symbol-es6", -0,0,0,0,0,0,0, -"hase", -"draht", -"limes", -"lusca", -"partof", -"timer2", -0, -"uuidv4", -"crypto2", -"nocache", -"datasette", -0, -"json-lines", -0, -"processenv", -"stethoskop", -0, -"flaschenpost", -"-events", -[2,8891,35172], -0, -"nodeenv", -"roboter", -0, -"assertthat", -[2,35166,4219], -0, -"cqs", -"cqrs", -0,0,0,0,0,0, -"className", -0, -"classList", -0, -"override", -0,0,0,0, -"dlv", -0,0,0,0,0,0, -"@tapjs/after", -[2,35205,27554], -"@tapjs/a", -"sserts", -[2,35207,35208], -"@tapjs/", -0, -"@tapjs/before", -[2,35212,27554], -"@tapjs/chdir", -0, -"@tapjs/core", -[2,35210,7131], -"@tapjs/fi", -"xture", -[2,35218,35219], -[2,35210,9261], -"@tapjs/mock", -"node-ser", -"ialize", -[2,35223,35224], -[2,35210,35225], -"@tapjs/run", -[2,35210,8745], -0, -"@tapjs/spawn", -0, -"@tapjs/stdin", -"@tapjs/test", -"@tapjs/t", -[2,35234,2528], -[2,35210,6812], -[2,4026,1204], -0, -"tapjs", -"tapjs plugin", -0,0,0,0, -"tap-out", -0, -"tapes", -0,0,0,0,0,0,0,0,0,0,0, -"resumer", -[2,23236,35259], -"@ljharb/t", -"hrough", -[2,35261,35262], -[2,5613,7067], -"dotignore", -[2,2565,15126], -0, -"ecstatic", -[3,3404,9], -"osix-or-windows", -[2,35269,35270], -0, -"harness", -0,0,0,0, -[2,9497,29051], -"chownr", -"yallist", -0, -"chmodr", -0, -"-to-array", -[2,2018,35284], -0,0,0,0,0, -"brittle", -0,0,0,0,0, -"b4a", -"fast-fifo", -"streamx", -0,0,0,0,0,0, -[2,6346,6770], -"DDD", -[2,6346,8726], -0, -"front end", -0, -"back end", -0,0,0,0, -"cz-format-extension", -0,0,0,0,0,0, -"telegram-api", -"telegram-", -"client-api", -[2,35325,35326], -"tdlib", -"tglib", -[3,3299,10], -0,0,0,0,0,0,0,0,0,0,0, -"tempdir", -"tmpfile", -0,0,0,0, -"unique-s", -[2,35348,8961], -0,0,0,0,0,0, -"@cronvel/get-pixels", -0, -"chroma-js", -"lazyness", -0,0, -"gen-events", -[2,3286,35362], -"seventh", -"string-kit", -0, -"tree-kit", -0, -"256 colors", -0, -"true color", -0, -"input field", -"gpm", -"screenbuffer", -"textbuffer", -"32-bit", -0,0,0,0, -"charm", -"visualwidth", -0, -"80s", -"ibm", -0,0,0,0, -[3,5012,18], -[2,35391,4226], -0, -"@ls-lint/ls-lint", -"astring", -0,0,0,0,0,0, -"glify-js", -[2,7817,35402], -0,0,0,0,0,0,0,0,0,0,0,0,0, -"multiline-ts", -"spawn-p", -[2,35418,4357], -0,0, -"only-allow", -"sinon-", -"assert-stub", -[2,35423,35424], -[2,35423,2299], -0, -"unlinted", -0,0,0,0,0, -"@deve", -"/bin-v8-flags-filter", -[2,674,35435], -[2,35434,35436], -[3,35437,12], -[2,35438,29084], -"bowser", -"chrome-", -[2,20844,8626], -[2,35441,35442], -"device-specs", -"elegant-s", -[2,35445,10252], -0,0,0, -"get-os-info", -0,0, -"import-lazy", -0, -"is-podman", -"-async-hook", -[2,3077,35456], -"-commonjs", -[2,17102,35458], -[2,17003,35459], -[2,14709,35460], -"os-family", -"pinkie", -[3,7872,10], -[2,35464,2013], -[2,2093,10903], -[2,15034,35466], -0, -"replicator", -0, -"-tools", -[2,20008,35471], -[2,4415,35472], -"testcafe-", -"hammerhead", -[2,35474,35475], -0, -"legacy-api", -[2,35474,35478], -[3,22279,11], -[2,35480,1803], -[2,35474,35481], -[3,35482,18], -[2,35483,3392], -[2,35483,6907], -[2,35483,4386], -[2,35483,28592], -0,0,0,0, -"testcafe-s", -[2,11068,1179], -[2,35492,35493], -[2,7051,4007], -[2,17475,35495], -"unquote", -"url-to-o", -"ptions", -[2,35498,35499], -0, -"@ffprobe-installer/ffprobe", -"@types/ca", -"llsite", -[2,35503,35504], -[3,5245,9], -"@types/dedent", -[3,5546,10], -"ragent", -[2,35508,35509], -"connector", -[2,26353,35511], -"caller", -"dom-walk", -[3,25792,16], -"mmerhead", -[2,35515,35516], -"express-ntlm", -"gulp-clone", -0, -"gulp-ll-next", -[3,27610,11], -[2,35522,2869], -"qunit-harness", -[2,2337,35524], -0, -"gulp-step", -"-spe", -"c-with-retries", -[2,35528,35529], -[2,32261,35530], -"sl-self-signed-certificate", -[2,8423,35532], -[3,35473,17], -"-browserstack", -[2,9962,35535], -[2,35534,35536], -0, -"automated", -"QA", -0,0,0,0, -"@types/doc", -"kerode", -[2,35545,35546], -"docker-", -[2,35548,2940], -[2,3583,33893], -"ssh-", -0, -"port-forward", -[2,20844,35553], -[2,35551,35554], -0, -[3,23843,13], -[2,35557,3015], -[3,28203,13], -"ties-reader", -[2,35559,35560], -[3,7752,11], -[2,35562,2150], -0,0,0,0,0, -"object-es5", -[2,26988,35569], -0, -"limate-test-reporter", -[2,14354,35572], -"conf-env", -[2,1611,35574], -"headerify", -"is-number", -0, -"teenytest", -[2,35579,4007], -0, -"test double", -0,0,0,0,0, -"fireworm", -"printf", -"_string", -[2,369,35590], -0, -[2,1362,23842], -"hallow-", -[2,35594,1693], -[2,21479,35595], -0, -"saucie", -0,0,0,0,0,0,0,0,0,0, -"dpdm", -"dcs", -[2,16693,35610], -0,0,0,0,0, -"three.js", -"reality", -[2,9352,35618], -"augmented-reality", -"webgl", -"webgl2", -0,0, -"webaudio", -0,0, -"webgpu", -"webxr", -0,0,0,0, -[2,2182,20], -"node-st", -"dlib-browser", -[2,35635,35636], -0,0,0,0,0,0,0,0,0,0,0, -"hundreds", -"polendina", -0,0, -"stream-spigot", -0,0,0,0,0,0,0,0,0,0,0,0,0, -"unexpand", -"homedir", -0, -"tilde", -0,0,0,0, -"number-is-nan", -0, -"profile", -0,0,0,0, -"bee-affix", -"bee-a", -"bee-alert", -"bee-anchor", -0,0,0, -"bee-animate", -[2,35683,9820], -"bee-", -0,0, -"bee-backtop", -0, -"dge", -"bee-badge", -"bee-b", -[2,35698,9837], -"bee-button", -[2,35700,9847], -"bee-calendar", -0,0, -"bee-carousel", -"bee-cascader", -"bee-c", -"bee-checkbox", -[2,35707,142], -"bee-collapse", -"bee-col", -"orpicker", -[2,35711,35712], -"bee-co", -0, -"mplex-grid", -[2,35714,35716], -[2,35691,3812], -0, -"bee-dnd", -"bee-drawer", -0, -"bee-dropdown", -"bee-form", -0, -"-control", -[2,35724,35726], -"bee-form-", -[2,35728,7227], -"bee-icon", -"bee-i", -"nput-group", -[2,35731,35732], -0, -"-addon", -[2,35733,35735], -"bee-input-", -[2,35737,6988], -"bee-label", -0, -"bee-layout", -0, -"bee-loading", -0, -"-state", -[2,35743,35745], -0, -"bee-locale", -0, -"bee-menus", -0, -"bee-message", -0, -"bee-modal", -0, -"bee-navbar", -"bee-n", -0,0, -"otification", -[2,35757,35760], -"bee-overlay", -"page-layout", -[2,35691,35763], -"bee-pag", -"ination", -[2,35765,35766], -0, -"bee-panel", -"bee-p", -"opconfirm", -[2,35770,35771], -0, -"bee-popover", -"rogress-bar", -[2,35770,35775], -0, -"radio", -"bee-radio", -0, -"bee-rate", -"search-panel", -[2,35691,35782], -0, -"bee-select", -0, -"bee-slider", -0, -"bee-step", -0, -"bee-svgicon", -"bee-switch", -"bee-table", -0, -"bee-tabs", -0, -"bee-tag", -0, -"bee-tile", -0,0, -"bee-timeline", -"bee-time", -[2,35803,3811], -"bee-tooltip", -"bee-transfer", -"bee-trans", -[2,35807,9943], -0, -"bee-tree", -[2,35810,11245], -"bee-upload", -0, -[2,2359,1623], -"-wrap", -[2,2376,35815], -"inline-urls", -[2,21897,35817], -[2,4437,1732], -0, -"tinper", -0,0,0,0,0,0,0,0,0,0, -"tinylibs", -0,0,0,0, -"@deno/shim-deno-test", -0, -[3,4443,9], -0,0,0,0,0,0,0,0, -" threads", -[2,6812,35848], -0, -"thread pool", -0,0,0,0,0,0,0,0,0,0,0,0,0, -"pushalert", -" toast", -[2,3857,35866], -"toastify", -[2,3862,35868], -[2,3862,9044], -"Typescript", -0,0,0,0, -"emble-js", -[2,31072,35876], -"processmd", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -[3,5152,10], -"RFC6265", -"RFC2965", -0,0,0,0,0, -"tinytim", -0,0,0,0,0,0,0,0,0,0,0,0, -[2,7231,7316], -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"html-select", -0,0, -"html-tokenize", -0,0,0,0,0,0,0,0,0, -"aggregate", -0,0,0,0,0,0,0,0, -"bs-logger", -"make-error", -0, -[2,6308,3065], -0,0,0,0,0,0,0, -[2,13664,6893], -0, -[3,5480,12], -"oader", -[2,35970,35971], -0,0,0,0,0,0,0, -"migration", -"migrations", -"cli-tool", -0,0,0,0, -"@ts-morph/common", -"block-writer", -[2,10988,35988], -0,0, -"static ", -[2,35992,19748], -"refactor", -[2,6721,35994], -0,0,0,0, -[2,20223,6859], -[2,20223,1276], -[2,12448,16443], -"@csp", -"otcode/source-map-support", -[2,36003,36004], -0, -"dprint", -"@swc/wasm", -"ntypescript", -"util.", -[2,36010,19138], -0,0,0,0,0, -[2,20442,7163], -"omit-deep", -0, -"power-assign", -0,0,0,0,0,0,0,0,0,0,0,0, -"bre", -"rete", -0, -"rule engine", -"rules engine", -" rule engine", -[2,5284,36038], -"js rule engine", -[2,6591,6770], -0,0,0,0,0, -[2,18284,4295], -0,0,0,0,0,0,0, -"typedefs", -"typedef", -0, -"initions", -[2,36056,36058], -0,0,0,0,0,0,0,0,0,0,0, -"polite-json", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -[2,27572,4014], -0, -"codelyzer", -[3,4490,10], -"siste", -"nt-codestyle", -[2,36092,36093], -[2,36091,36094], -0, -"tslint-divid", -[2,4491,2700], -[2,13530,1334], -[2,4491,36099], -"tslint-mi", -"sc-rules", -[2,36101,36102], -0,0, -"ts-lint", -0,0,0,0,0, -[3,20474,12], -"slint-plugin", -[2,36112,36113], -0,0,0,0, -[2,4671,3209], -"joycon", -0, -"ts-e", -[2,36122,154], -0,0,0,0,0, -[3,14596,11], -[2,36129,8791], -0,0,0,0, -"@mixmark-io/domino", -0,0,0, -"-attendant", -[2,4495,36139], -0,0,0,0,0, -"grunt-comp", -0, -"onent-io", -[2,36146,36148], -[3,2243,10], -0, -"at-sourcemap", -[2,36150,36152], -"grunt-m", -"arkdown", -[2,36154,36155], -[3,2300,11], -"grunt-p", -"ush-release", -[2,36158,36159], -0, -"gex-replace", -[2,24294,36162], -[2,3503,16237], -[2,22277,36164], -"unfunk-reporter", -[2,3192,36166], -0,0,0,0,0, -"tap-b", -0, -"rowser-color", -[2,36173,36175], -"-util", -[2,4497,36177], -0,0, -"curve25519", -"ed25519", -"nacl", -0, -"poly1305", -"public", -"salsa20", -0, -"signatures", -0,0,0,0, -[2,4498,1574], -0,0, -"DOM", -"Twitter", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -[2,4505,1732], -0,0,0,0,0,0,0,0,0,0, -"media-typer", -0, -"checking", -0,0,0,0,0,0,0,0,0,0, -[3,596,9], -"/material-color-utilities", -[2,36239,36240], -0,0, -[2,4511,699], -[3,4512,14], -[2,3131,4964], -"material-3", -[2,4508,1932], -0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"JsDocs", -0,0,0,0,0,0, -"cli-prompt", -0, -"concatenate", -0,0, -"ebook", -"pandoc", -0, -"kindlegen", -0,0,0,0, -[3,27847,12], -[2,36283,3231], -[2,12690,18877], -0,0, -"-findorcreate", -[2,3232,36288], -[2,7627,4487], -0,0,0,0, -"@sqltools/formatter", -0,0,0,0,0,0, -"-rename", -[2,22507,36302], -[3,36303,12], -[2,36304,4070], -[3,5055,10], -[2,36306,1722], -"gulpclass", -0,0,0,0,0,0, -"@dprint/formatter", -"@esfx/canceltoken", -"@dprint/", -[2,36317,91], -0, -"azure-", -"-node-api", -[2,20999,36321], -[2,36320,36322], -"mocha-f", -"ivemat-progress-reporter", -[2,36324,36325], -0,0, -"able-stylish", -[2,26072,36329], -[2,10749,36330], -0,0,0,0,0,0,0,0,0,0, -"commandpost", -0, -"wer-assert", -[2,13415,36344], -"intel", -"li-espower-loader", -[2,36346,36347], -0,0,0,0,0, -[2,5554,13774], -[2,18792,36354], -[2,13058,36355], -[3,36356,23], -[2,36357,1993], -0, -"css-utils", -[2,8802,36360], -[2,36357,16839], -"erved-words", -[2,31525,36363], -"-sync2", -[2,3613,36365], -"sass-svg", -0,0,0,0,0, -"finally", -[2,9466,36373], -[2,4532,1732], -0, -[2,27100,4255], -0,0,0,0,0,0,0,0,0,0,0,0, -"jsmin", -0,0,0,0,0,0,0,0,0,0,0, -"random-bytes", -0,0,0,0,0,0, -[2,1024,4525], -"affix", -[2,1016,36410], -[3,36411,12], -[2,36412,9809], -"uto-link", -[2,36412,36414], -[2,36412,9826], -[3,1015,12], -0, -"ack-top", -[2,36417,36419], -[3,36420,13], -[2,36421,35696], -[2,36417,9837], -[2,1015,9847], -[2,1016,9026], -[3,36425,13], -[2,36426,9854], -[3,36427,14], -[2,36428,9860], -[2,36426,9863], -[3,36425,12], -[2,36431,5449], -[2,36431,11200], -[3,36433,13], -[2,36434,3809], -"date-input", -[2,1016,36436], -[3,36437,16], -[2,36438,3811], -[3,36437,12], -"escriptions", -[2,36440,36441], -"ivider", -[2,36440,36443], -[2,36440,9997], -[3,36445,13], -[2,36446,11206], -[2,1016,3599], -0, -"file-input", -[2,1016,36450], -[3,36451,12], -[2,36452,3469], -[2,1016,10052], -[2,1016,8691], -[3,36455,12], -[2,36456,28176], -[2,36456,35971], -[2,1016,4403], -[3,36459,13], -[2,36460,10104], -[3,36459,12], -[2,36462,3852], -[3,36463,13], -"nth-picker", -[2,36464,36465], -[2,1016,22005], -[2,1016,18367], -[3,36468,12], -"in-code", -[2,36469,36470], -"opover", -[2,36469,36472], -[3,36473,13], -"rtal", -[2,36474,36475], -[2,36469,10148], -[2,1016,35778], -[3,36478,13], -[2,36479,6864], -"search-", -[2,36481,1631], -[2,1016,36482], -[3,36483,18], -[2,36484,1633], -[3,36483,13], -[2,36486,4021], -[3,36483,12], -[2,36488,10205], -[2,36488,10209], -[2,36488,11234], -[2,36488,10222], -[2,1016,176], -[3,36493,14], -[2,36494,591], -[3,36493,13], -[2,36496,10233], -[3,36493,12], -[2,36498,11241], -0, -"ime-picker", -[2,36498,36501], -[2,36498,18390], -[2,36498,10266], -[3,36504,13], -[2,36505,10271], -0, -"-checked", -[2,36506,36508], -0,0,0,0,0,0,0,0,0,0,0,0,0,0, -[3,212,12], -"fns", -[2,36524,36525], -0, -"parsel-js", -0,0,0,0,0, -"citty", -0, -"mkdist", -"untyped", -"hookable", -0,0,0,0,0, -[2,3714,20], -0,0,0,0,0,0, -[3,34068,12], -[2,36551,2408], -0,0,0,0,0, -"teo.collina/tspl", -[2,599,36558], -"dns-packet", -0,0,0,0,0,0,0, -"trough", -0, -[3,9359,10], -[2,36570,4966], -0, -"retext", -0,0,0,0, -[3,4554,13], -0, -"non-repeating", -0,0,0,0,0,0, -[3,4555,10], -"xast", -"nlcst", -0,0,0,0,0,0,0,0,0,0,0,0, -"pullstream", -0, -"match-stream", -0, -"uncompress", -0,0,0,0, -"is-npm", -"pupa", -0, -"fixture-", -[2,36614,8634], -0,0,0,0,0, -"urn", -"uri mutation", -"url mutation", -"uri m", -"anipulation", -[2,36624,36625], -"url m", -[2,36627,36625], -0, -"uri template", -0, -"url template", -" res", -" locator", -[2,5585,36634], -[2,36633,36635], -[2,4549,36636], -[3,36637,17], -[2,36638,16906], -0, -"query string", -"RFC 3986", -"RFC3986", -0,0, -"RFC 6570", -0,0, -"RFC6570", -[2,23168,1932], -"ecosystem", -":jquery", -[2,36651,36652], -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"ylru", -"formstream", -0,0, -"tshy-after", -[3,9725,12], -0, -"@types/busboy", -"@eggjs/tsconfig", -"@types/sel", -"fsigned", -[2,36689,36690], -0, -"strictest", -[2,25627,36693], -0, -"urlopen", -0,0,0,0,0,0,0,0,0, -"userprofile", -0,0,0,0,0, -[2,4745,57], -0,0, -"browserscope", -"ua", -"ua-parse", -"ua-parser", -"user agent", -"user-agent", -0,0,0,0,0,0,0,0,0, -"is-typed", -"-array", -[2,36730,36731], -0, -"supported", -[2,5745,36734], -[2,17393,36735], -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"rfc9562", -0,0,0,0,0,0, -"bundt", -0, -"diffs", -0,0,0,0,0,0,0,0,0, -"find-pa", -"rent-dir", -[2,36779,36780], -0,0,0, -"githook", -0,0,0,0,0,0,0,0,0,0, -"sanitisation", -0, -"sanitise", -0,0,0,0,0,0, -"@vue/shared", -"@vant/popperjs", -"@vant/", -0, -"@vant/use", -0, -[2,7047,1732], -[2,5334,36811], -"able-html", -[2,1687,36813], -[2,10952,2770], -[2,36807,7625], -[2,36807,45], -0, -"area-data", -[2,36807,36819], -"@vant/cli", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"@vercel/go", -0, -"@vercel/fun", -"@vercel/next", -[2,20461,681], -"@vercel/ruby", -"python", -[2,33763,36844], -"@vercel/r", -"edwood", -[2,36846,36847], -"hydrogen", -[2,33763,36849], -"build-utils", -[2,33763,36851], -"@vercel/st", -"atic-build", -[2,36853,36854], -"@vercel/re", -0, -"mix-builder", -[2,36856,36858], -0, -"epipebomb", -0, -"promisepipe", -"tmp-promise", -0,0, -"@sentry/node", -[3,28267,12], -[2,7738,6768], -0, -"@types/dotenv", -[2,4753,4007], -[2,33763,5576], -[2,17213,2022], -"pcre-to-regexp", -"ast-commit", -[2,33495,36876], -[2,8603,18132], -[2,8603,1631], -"@tootallnate/once", -[3,546,11], -[2,36881,5449], -"@vercel/f", -"rameworks", -[2,36883,36884], -[2,3827,594], -[2,33763,36886], -[2,5745,7253], -[2,10787,36888], -[2,20290,4007], -"s-detectors", -[2,36883,36891], -[3,20485,11], -"-json-file", -[2,36893,36894], -"outing-utils", -[2,36846,36896], -[3,29115,11], -[2,36898,3385], -[3,22092,13], -[2,36900,16830], -"@vercel", -[3,9435,9], -"s/types", -[2,36903,36904], -[2,36902,36905], -0, -"node-utils", -[2,33157,36908], -[2,11836,2656], -[2,29130,36910], -[3,11296,13], -"xpect-", -[2,36913,6458], -[2,36912,36914], -[3,36906,18], -[2,36916,14181], -"@alex_neo/jest-expect-message", -[3,29110,18], -[2,36919,36910], -[2,18522,1781], -[2,36916,36921], -0,0,0,0, -"extsprintf", -0,0,0,0,0,0,0,0,0,0,0,0,0, -"viewer.js", -0,0,0,0,0,0, -"remove-t", -"railing-separator", -[2,36948,36949], -"teex", -0,0,0,0,0,0,0,0,0,0,0,0, -"kdirp-stream", -[2,29048,36964], -"is-valid-glob", -"lead", -[2,4026,14690], -"stream-com", -"poser", -[2,36969,36970], -"to-through", -"value-", -"or-function", -[2,36973,36974], -[3,4606,15], -0,0,0,0, -"vinyl-adapter", -0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"browser-split", -"ev-store", -"x-is-array", -0, -"x-is-string", -0, -"run-browser", -0, -"vtree", -0,0,0,0,0,0,0, -"artichokie", -[2,4293,16111], -"es-module-lexer", -[3,3638,15], -"@polka/", -[2,37016,1536], -0, -"build-tool", -0,0,0,0, -"slash-path", -0,0,0, -"api-router", -"api-routers", -[3,4612,15], -"rest-api", -[2,4609,37031], -[3,9244,9], -[2,37033,995], -[3,12419,12], -[2,37035,20332], -0, -"api-rest", -"Remix", -"Next.js", -0,0,0,0, -[3,6371,11], -[2,37045,1623], -[2,9408,364], -"devtools-api", -[2,5334,37048], -"@vueuse/", -[2,37050,12339], -"focus-trap", -0, -"@mdi", -"t-vue/plugin-component", -[2,37054,37055], -[3,37056,17], -[2,37057,9339], -[2,37057,11988], -"sfc", -[2,37057,37060], -[2,37057,17913], -[3,37062,18], -"oc", -[2,37063,37064], -"@mdit-vue/", -[2,37066,6579], -[3,7641,19], -[2,37068,3111], -[2,37068,3113], -[2,13058,3667], -[3,26774,14], -"thjax3", -[2,37072,37073], -0,0,0,0,0, -"@vitest/spy", -0, -"tinyrainbow", -"@vitest/u", -[2,37083,186], -[2,17213,8791], -"@vitest/s", -[2,37086,11298], -"why-", -0, -"running", -[2,21149,37090], -[2,37088,37091], -[2,17213,3717], -0, -"birpc", -"local-pkg", -[2,33157,24079], -"@antfu/", -"install-pkg", -[2,37098,37099], -0,0,0,0,0, -"node-lo", -"calstorage", -[2,37106,37107], -0, -"gulp-xo", -0,0, -"load-plugins", -0, -"vorpal-less", -0, -"vorpal-repl", -0,0,0,0,0, -"eyes", -0, -"BDD", -0,0,0,0, -"keytar", -"parse-semver", -[2,17414,28362], -0, -"eerio", -[2,16931,37134], -[3,21625,11], -[2,37136,4565], -0, -"@types/yazl", -0,0,0,0,0,0,0,0,0, -[2,9738,6985], -"@types/ic", -"onv-lite", -[2,37150,37151], -0,0,0,0, -[2,4619,9586], -0,0,0,0, -[3,36812,13], -[2,37162,965], -0,0,0,0,0, -"-libs", -[2,1988,37169], -0,0,0,0,0,0, -[3,5736,22], -[2,37177,31692], -0,0,0,0,0,0,0,0,0, -"@int", -"lify/core-base", -[2,37188,37189], -"@intlify/", -[2,37191,6579], -0,0, -"devtools-if", -[2,37191,37195], -0,0, -"vue-devtools", -[2,37191,37199], -0, -"intlify", -0,0,0,0,0, -[3,37200,13], -0, -"i18n-loader", -[2,37208,37210], -[3,7892,11], -[2,37212,3176], -[2,32119,1698], -"cache-loader", -"markdown-l", -[2,37216,35971], -"pug-p", -"lain-loader", -[2,37218,37219], -0,0,0,0,0,0,0,0,0,0, -"ightwatch", -[2,10884,37231], -0,0, -"faked-promise", -[2,28506,6706], -0,0,0,0,0,0,0,0,0,0, -"de-indent", -0,0,0,0,0, -"todomvc-app-css", -0,0,0,0, -"foreachasync", -0, -"sys", -"walkSync", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"exec-sh", -0,0,0,0,0,0, -"outpipe", -0, -"win-spawn", -0,0,0,0,0, -"encrypte", -"d-attr", -[2,37292,37293], -[3,3052,10], -"afeinteger", -[2,37295,37296], -[2,4651,18008], -"waterline-", -[2,37299,594], -0, -"active-", -[2,37302,1355], -0,0,0,0, -"vargs", -0,0,0,0, -"bdd-with-opts", -0, -"gulp-debug", -"mu2", -[2,9466,2869], -"auncher", -[2,26127,37318], -[2,20011,37319], -"mocha-p", -"arallel", -[2,37321,37322], -[2,18199,37323], -"sv-selenium", -0,0,0,0,0, -"web3-eth", -"web3-net", -0, -"web3-core", -"web3-types", -"web3-utils", -"web3-errors", -0, -"web3-eth-abi", -"web3-eth-", -0, -"web3-eth-ens", -0, -"web3-eth-iban", -[2,4654,1155], -"rpc-methods", -[2,4654,37346], -"web3-eth-a", -"ccounts", -[2,37348,37349], -"contract", -[2,37340,37351], -0, -"personal", -[2,37340,37354], -0, -"providers-ws", -[2,4654,37357], -"web3-rpc-", -"providers", -[2,37359,37360], -[3,37358,15], -[2,37362,27], -0, -"in3", -"ganache", -"ipc", -[2,37362,37367], -[3,13936,16], -"se-web3", -[2,37369,37370], -"@tru", -"ffle/hdwallet-provider", -[2,37372,37373], -0, -"Ethereum", -0,0,0,0,0,0,0,0,0,0,0,0,0, -"@solana/spl-token", -"@solana/", -"web3.js", -[2,37391,37392], -"kva-email-service", -0, -"ed25519-hdkey", -[2,32806,37396], -"ssl-http-with-docker", -[3,4382,9], -[2,7521,12130], -[2,37399,37400], -"telegram-a", -"ssistant", -[2,37402,37403], -"web3-r", -0, -"eact-task", -[2,37405,37407], -0, -"sol", -0,0,0,0,0,0,0,0,0,0, -"assembl", -"yjs/ast", -[2,37421,37422], -[2,10672,37423], -[3,37424,15], -"wasm-edit", -[2,37425,37426], -[3,37427,20], -[2,37428,57], -0,0, -"trace-event", -[2,35441,37432], -0, -"assembly", -[2,37435,1508], -[2,4671,1194], -[2,14743,1194], -"hash-wasm", -"wast-loader", -[2,20694,6095], -"xxhashjs", -0,0,0,0, -"@disco", -"veryjs/json-ext", -[2,37447,37448], -0, -"@carrotsearch/foamtree", -"h0r", -[2,22060,37452], -[2,37453,2809], -"lodash.p", -"artial", -[2,37455,37456], -[2,3607,34809], -0, -"zoomable", -0,0,0,0, -[3,13077,13], -[2,37465,18523], -"configtest", -[2,37465,37467], -0, -[3,4863,9], -"vinfo", -[2,37470,37471], -0,0,0,0,0,0, -"@fastify/e", -[2,37479,674], -"n-finished", -[2,15461,37481], -0,0,0,0,0,0,0, -"@types/sockjs", -[3,18584,13], -"njour", -[2,16872,37492], -"bonjour-service", -0,0,0, -[3,33768,13], -[2,37498,4017], -[2,37498,2947], -0, -"-community", -[2,17013,37502], -"-history-api-fallback", -[2,11485,37504], -0, -"klona", -[2,37490,4219], -"@types/tr", -0,0, -"usted-types", -[2,37509,37512], -0,0,0,0,0,0,0,0,0, -"reloading", -[3,4631,10], -[2,37524,3642], -0,0,0,0,0, -[2,32119,4694], -[3,33945,16], -"ellscape", -[2,37532,37533], -[3,3708,23], -0,0,0,0,0,0, -"dts-cli", -0, -"@types/flat", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"-to-buffer", -[2,7231,37567], -"yaeti", -0,0, -"networking", -"comet", -0,0,0,0, -"@silentbot1/nat-api", -"@thaunknown/simple-peer", -"torrent/http-node", -[2,10672,37580], -"addr", -0, -"-to-ip-port", -[2,37582,37584], -"bitfield", -"bittorrent-dht", -[3,37587,11], -[2,37588,20500], -"cache-c", -"hunk-store", -[2,37590,37591], -[2,33355,5509], -[2,13225,37593], -"cpus", -"create-t", -"orrent", -[2,37596,37597], -"-ponyfill", -[2,1613,37599], -"fs-c", -[2,37601,37591], -"fsa-chunk-store", -"imme", -"diate-chunk-store", -[2,37604,37605], -"-async-", -[2,37607,7253], -[2,4565,37608], -0,0, -"load-ip-set", -"lt_donthave", -"memory-c", -[2,37614,37591], -"torrent", -"parse-torrent", -"random-ite", -[2,37618,6882], -0,0,0, -"speed-limiter", -"throughput", -0,0, -"-discovery", -[2,37616,37627], -0,0, -"torrent-piece", -0, -"uint8-util", -"unordered-", -"array-remove", -[2,37634,37635], -"ut_metadata", -"ut_pex", -0, -[3,37581,12], -[2,37640,23685], -0,0, -"airtap-manual", -"airtap-s", -[2,37645,9073], -[2,37588,4839], -"chrome-net", -"-address", -[2,11996,37649], -0, -"path-esm", -"-fixtures", -[2,4702,37653], -0, -"bittorrent", -[2,37656,12332], -"mad science", -"p2p", -0,0,0, -"peer-to-peer", -0, -"peers", -"swarm", -"web torrent", -"webrtc data", -0,0,0,0,0, -"web worker", -"a gogo", -0,0,0,0,0,0,0,0,0,0,0, -"search-params", -[2,4564,37687], -0,0,0,0, -"buster", -"exorcist", -0, -"cujo", -0, -"Promises/A+", -0,0,0,0, -"isexe", -0,0,0,0, -"taffydb", -"unit.js", -0,0,0,0,0, -"@dabh/diagnostics", -"logform", -0, -"one-time", -0, -"@dabh/", -[2,37720,23816], -[2,20417,4715], -[3,18518,12], -[2,37723,1149], -"hock", -"winston-co", -[2,37726,13172], -0,0,0,0,0,0, -"tream-rotator", -[2,12416,37734], -0, -[3,24151,11], -[3,23722,14], -[2,37737,37738], -[2,6324,4059], -[2,37739,37740], -0, -"daily-rotate-file", -"log-rotate", -"logrotate", -0,0,0,0,0,0, -"winston3", -0,0,0,0,0, -"bower-config", -"propprop", -[2,4716,20], -0,0,0,0,0,0, -"carriage", -0, -"new-line", -"return", -0,0,0,0,0,0,0,0, -"workbox-", -[2,37779,6147], -0,0, -"workbox", -"workboxjs", -" worker", -[2,11100,37785], -" requests", -[2,1612,37787], -"offline", -[2,12320,3097], -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"writeFile", -0,0,0,0,0,0,0,0,0, -"enstore", -0, -"-crawler", -[2,4730,37820], -0, -"x-ray-parse", -0,0, -"scrape", -0,0,0,0,0,0, -"is-function", -"parse-headers", -0,0,0,0,0,0, -"adler-32", -0, -"codepage", -"crc-32", -"ssf", -"wmf", -0, -"@she", -"etjs/uglify-js", -[2,37848,37849], -"on-epipe", -[2,7219,37851], -"fflate", -[3,5392,10], -"pellcheck", -[2,37854,37855], -0, -"xlsb", -"xlsm", -"dbf", -"dif", -"sylk", -0,0,0,0,0, -"cash-cat", -"codacy-coverage", -"globify", -"unminified-webpack-plugin", -0, -"XML", -"CDATA", -"doctype", -0,0,0, -" instruction", -[2,10809,37879], -0, -"Javascript", -[2,353,3642], -"convertor", -"converting", -0, -"conversion", -0,0,0,0,0,0,0,0,0,0,0, -"node-expat", -0,0,0,0,0,0,0,0, -"dom-js", -"xmltest", -0, -"DOMParser", -"XMLSerializer", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"func-xml", -0,0,0,0,0,0, -[2,5857,5861], -[2,69,37935], -"@unicode/unicode-14.0.0", -0, -"rray-includes", -[2,24619,37939], -[2,1226,4740], -[3,37935,17], -0, -"value-aliases", -[2,37942,37944], -0,0,0,0,0,0,0, -"whitelist", -0,0,0,0, -"@scion-scxml/test-framework", -0, -"statechart", -0,0, -"state machine", -"finite", -" stat", -"e machine", -[2,37965,37966], -[2,37964,37967], -"finite ", -"automata", -[2,37969,37970], -"scxml", -"interpreter", -0,0,0,0,0,0,0,0, -"ep-equal", -[2,35506,37982], -[2,9228,4729], -0,0, -"@types/utf8", -[2,4744,28703], -0, -"emulator", -[2,4402,37990], -0,0,0,0, -"jest-t", -"s-webcompat-resolver", -[2,37996,37997], -0,0,0,0,0,0,0,0, -"yaml2json", -"json2yaml", -0,0,0,0,0,0,0, -"test-extends", -[2,27477,38016], -0,0,0,0,0,0,0,0,0,0,0,0,0,0, -[3,29775,30], -"imports-", -[2,38033,10906], -[2,38032,38034], -"death", -"repeating", -0, -"capture-har", -[2,9769,38039], -"roadrunner", -0, -"node4", -[2,26202,38043], -[3,4821,14], -"ode5", -[2,38045,38046], -[3,18229,16], -"-strict", -[2,38048,38049], -"ittens", -[2,25705,38051], -[3,1935,18], -"-vars", -[2,38053,38054], -[2,23105,7003], -[2,1152,38056], -[2,16645,38057], -0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"@yeoman/adapter", -"@yeoman/", -"conflicter", -[2,38074,38075], -[2,38074,23255], -[2,38074,353], -"@yeoman/t", -[2,38079,103], -0, -"fly-import", -[2,7227,30831], -"mem-fs", -0, -"mem-fs-editor", -[2,9477,10057], -[2,17412,38087], -0,0,0, -"esmocha", -"sinon-test", -0,0,0,0,0, -"github-u", -"sername", -[2,38099,38100], -0,0,0,0,0,0, -"yes", -"false", -0, -"lenient", -0,0,0,0,0, -"cli-list", -"fullname", -0,0, -"parse-help", -"root-check", -"npm-keyword", -0, -"doctor", -[2,4755,38125], -[2,25742,1871], -0,0,0, -[2,4755,6843], -0, -[2,9518,1002], -0,0,0,0,0, -"@jonahsnider/benchmark", -0,0,0,0,0,0,0,0,0,0, -[2,26936,4627], -0, -"cowsay", -"say", -0,0,0,0,0,0, -"zeromq", -"0mq", -"ømq", -"libzmq", -0,0,0,0,0,0,0,0,0,0,0,0, -[2,11477,1574], -[2,9228,4576], -0, -"@types/morgan", -"express-u", -"seragent", -[2,38180,38181], -0, -" types", -[2,7047,38184], -0,0,0,0,0,0, -"DSL", -0,0,0,0, -"@externs/nodejs", -0,0,0,0, -"JSON2", -0, -"char-split", -0,0, -"express-state", -"firefox-", -[2,38208,35677], -[2,11941,2663], -0, -"shallow-copy", -[2,4250,4833], -0, -"tap-finished", -"-localtunnel", -[2,4770,38216], -0,0,0, -"browzers", -"bulk-require", -0, -"zuul-ngrok", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"Unit Testing", -0,0,0,0,0,0,0, -"Storybook", -0,0,0,0,0,0,0,0, -"belalangkayu", -"rengginangbasi", -"tehtarik3", -0,0,0,0,0,0,0,0,0,0,0, -"sort-array", -0,0,0,0,0,0,0,0,0,0,0, -"-scroll-", -"into-view", -[2,38290,38291], -[2,23545,38292], -0, -"module-t", -"ype-aliases", -[2,38295,38296], -[2,20201,38297], -[2,964,3698], -[3,1216,14], -"o-side-effect-class-properties", -[2,38300,38301], -[3,1270,19], -[2,38303,970], -"flow-co", -[2,24524,8803], -[2,38305,38306], -0, -"get-pkg-repo", -0, -"enhanced", -" input", -[2,38311,38312], -0,0, -"autosuggest", -"typeahead", -0, -"omnibox", -"WAI-ARIA", -"multiple ", -[2,38321,17146], -0,0,0,0, -"focus", -"keyboards", -"mice", -"pseudos", -0, -"textarea", -"trackpad" + "Flatpack JSON v1", + [5, 2, 25598], + [ + 0, 3, 4, 7, 10, 13, 16, 19, 21, 24, 26, 28, 30, 32, 34, 37, 39, 40, 43, 46, 47, 48, 51, 53, 56, 58, 61, 62, 63, + 64, 65, 66, 68, 71, 73, 76, 78, 81, 83, 85, 87, 90, 92, 94, 97, 99, 101, 104, 105, 106, 107, 110, 111, 114, 116, + 119, 122, 124, 126, 129, 133, 135, 137, 140, 143, 146, 148, 150, 153, 155, 157, 159, 162, 164, 167, 169, 171, + 174, 175, 177, 180, 182, 185, 187, 189, 191, 192, 195, 197, 198, 201, 203, 204, 205, 208, 213, 215, 218, 220, + 221, 222, 225, 228, 231, 233, 235, 238, 240, 243, 245, 247, 249, 251, 253, 258, 260, 262, 265, 267, 269, 271, + 272, 275, 277, 280, 282, 285, 288, 290, 293, 296, 298, 301, 303, 305, 308, 310, 313, 315, 319, 322, 324, 327, + 329, 331, 334, 338, 340, 342, 345, 346, 347, 350, 351, 354, 355, 358, 359, 360, 361, 362, 365, 368, 370, 371, + 374, 377, 379, 381, 384, 387, 392, 394, 399, 401, 404, 406, 409, 411, 413, 415, 419, 422, 425, 427, 430, 432, + 434, 438, 439, 442, 443, 444, 445, 448, 449, 452, 456, 457, 460, 462, 465, 468, 469, 470, 471, 478, 481, 483, + 486, 488, 490, 493, 495, 497, 502, 505, 507, 513, 516, 518, 525, 528, 533, 536, 538, 539, 540, 541, 542, 545, + 546, 547, 548, 549, 550, 551, 554, 555, 559, 560, 561, 564, 565, 566, 567, 572, 573, 576, 577, 578, 581, 583, + 585, 587, 589, 593, 595, 596, 598, 601, 602, 603, 606, 608, 609, 613, 615, 616, 617, 618, 621, 622, 624, 626, + 627, 628, 631, 633, 634, 635, 638, 641, 643, 646, 649, 652, 654, 656, 659, 660, 663, 665, 666, 669, 672, 675, + 677, 679, 682, 683, 684, 687, 688, 691, 692, 693, 697, 700, 702, 703, 706, 709, 711, 712, 713, 716, 721, 724, + 727, 732, 735, 738, 740, 742, 745, 749, 751, 753, 758, 763, 767, 770, 773, 776, 782, 785, 790, 793, 795, 798, + 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 816, 817, 818, 821, 822, 825, 826, 827, 828, 829, 831, 834, + 835, 838, 840, 841, 842, 843, 846, 849, 850, 851, 852, 853, 857, 860, 864, 870, 872, 876, 881, 885, 891, 896, + 898, 905, 910, 913, 915, 917, 920, 925, 929, 933, 935, 938, 944, 948, 951, 954, 955, 958, 961, 962, 963, 966, + 968, 971, 972, 974, 975, 978, 980, 983, 985, 987, 989, 991, 993, 996, 997, 1001, 1003, 1004, 1005, 1006, 1009, + 1011, 1012, 1013, 1014, 1015, 1018, 1021, 1023, 1025, 1026, 1027, 1028, 1030, 1031, 1032, 1033, 1034, 1043, + 1045, 1050, 1054, 1056, 1059, 1061, 1063, 1066, 1073, 1075, 1077, 1078, 1079, 1080, 1081, 1082, 1084, 1085, + 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1098, 1100, 1102, 1103, 1104, 1107, 1109, + 1110, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1120, 1121, 1122, 1125, 1127, 1129, 1130, 1131, 1132, 1135, + 1136, 1137, 1138, 1139, 1140, 1143, 1144, 1145, 1147, 1148, 1149, 1151, 1154, 1156, 1157, 1158, 1159, 1162, + 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1175, 1178, 1180, 1184, 1189, 1191, 1193, 1195, 1198, + 1201, 1203, 1205, 1208, 1210, 1212, 1216, 1217, 1220, 1225, 1230, 1233, 1235, 1240, 1244, 1245, 1248, 1251, + 1253, 1255, 1257, 1261, 1264, 1267, 1268, 1270, 1272, 1275, 1277, 1279, 1280, 1282, 1284, 1287, 1288, 1290, + 1291, 1292, 1293, 1294, 1295, 1298, 1301, 1304, 1305, 1306, 1308, 1309, 1310, 1311, 1314, 1315, 1316, 1317, + 1318, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1335, 1336, 1339, 1342, 1344, 1346, + 1348, 1350, 1352, 1354, 1356, 1358, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1369, 1370, 1371, 1372, 1373, + 1376, 1377, 1378, 1381, 1385, 1386, 1387, 1389, 1391, 1393, 1394, 1395, 1396, 1397, 1398, 1400, 1401, 1402, + 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1413, 1414, 1415, 1416, 1417, 1420, 1421, 1423, 1424, 1425, 1426, + 1427, 1428, 1429, 1431, 1434, 1436, 1437, 1438, 1440, 1443, 1446, 1447, 1448, 1449, 1450, 1455, 1456, 1457, + 1458, 1459, 1461, 1462, 1465, 1468, 1470, 200, 1471, 1474, 1477, 1479, 1480, 1481, 1482, 1483, 1486, 1488, 1489, + 1492, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1503, 1505, 1506, 1509, 1473, 1511, 1512, 1513, 1516, + 1519, 1522, 1525, 1527, 1529, 1532, 1533, 1536, 1537, 1540, 1541, 1543, 1544, 1546, 1549, 1551, 1553, 1556, + 1559, 1560, 1562, 1565, 1566, 1567, 1570, 1573, 977, 1575, 1578, 1581, 1582, 1584, 1587, 1588, 1590, 1591, 1593, + 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1603, 1604, 1605, 1606, 1608, 1609, 1610, 1613, 1615, 1616, 1618, + 1620, 1621, 1622, 1623, 1624, 1627, 1628, 1630, 1632, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, + 1645, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1658, 1660, 1661, 1662, 1663, 1664, 1665, 1668, + 1672, 1673, 1674, 1675, 1676, 1677, 1679, 1680, 1681, 1682, 1686, 1688, 1690, 1693, 1696, 1699, 1700, 1701, + 1702, 1703, 1704, 1705, 1706, 1707, 1710, 1711, 1687, 1713, 1715, 1718, 1719, 1720, 1723, 1724, 1726, 1727, + 1728, 1729, 1730, 1731, 1733, 1734, 1735, 1736, 1737, 1738, 1741, 1742, 1745, 1748, 467, 1750, 1751, 1754, 1756, + 1757, 1758, 1759, 1763, 1764, 1766, 1767, 1768, 1770, 1774, 1777, 1779, 1782, 1784, 1785, 1786, 1787, 1788, + 1789, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1801, 1804, 1806, 1809, 1812, 1816, 1817, 1819, 1820, + 1821, 1822, 1824, 1825, 1827, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1842, 1843, 1845, + 1847, 1850, 1853, 1854, 1855, 1856, 1859, 1860, 1863, 1865, 1866, 668, 1869, 1874, 1875, 1177, 1879, 1881, 1883, + 1886, 1889, 1891, 1893, 1895, 1898, 1900, 1903, 1905, 1907, 1909, 1912, 1915, 1916, 1920, 1922, 1924, 1926, + 1930, 1933, 1935, 1937, 1938, 1939, 1942, 1945, 1947, 1948, 1951, 1953, 1954, 1955, 1958, 1959, 1961, 1964, + 1966, 1969, 1970, 1972, 1976, 1978, 1982, 1985, 1988, 1992, 1994, 1996, 1998, 1999, 2000, 2003, 2004, 2007, 984, + 2008, 2010, 2011, 2012, 2015, 2017, 2018, 2019, 2020, 2021, 2022, 2024, 2025, 2026, 2028, 2031, 2033, 2037, + 2039, 2040, 2042, 2045, 2046, 2048, 2051, 2053, 2054, 2057, 2058, 2059, 2060, 2061, 2064, 2067, 2069, 2071, + 2073, 2075, 2077, 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2086, 2087, 2088, 2089, 2092, 2095, 2096, 2098, + 2099, 2102, 2105, 2107, 2108, 2109, 2111, 2113, 2114, 2116, 2117, 2119, 2122, 2123, 2126, 2128, 2129, 2130, + 2131, 2132, 2133, 2134, 2135, 2137, 2139, 2141, 2144, 2145, 2147, 2148, 2149, 2150, 2151, 2152, 2153, 2154, + 2155, 2156, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2167, 2170, 2172, 2175, 2176, 2177, 2178, 2179, 2182, + 2185, 2188, 2191, 2192, 2193, 2194, 2195, 2197, 2070, 2200, 2202, 2203, 2205, 2206, 2207, 2209, 2211, 2212, + 2213, 2214, 2215, 2216, 2217, 2220, 2222, 2225, 2226, 2227, 2228, 2231, 2234, 2236, 2239, 2240, 2243, 2247, + 2250, 2253, 2256, 2258, 2260, 2263, 2266, 2268, 2271, 2273, 2274, 2277, 2279, 2281, 2283, 2285, 2290, 2291, + 2293, 2296, 2298, 2300, 2302, 2305, 2307, 2308, 2311, 2314, 2316, 2318, 2320, 2321, 2322, 2323, 2327, 2330, + 2332, 2334, 2336, 2338, 2341, 2344, 2346, 2348, 2351, 2352, 2354, 2357, 2359, 2361, 2363, 2366, 2367, 2368, + 2371, 2372, 2373, 2375, 2377, 2379, 2381, 2383, 2384, 2387, 2390, 2393, 2396, 2398, 2400, 2401, 2404, 2405, + 2406, 2409, 2411, 2413, 2416, 2419, 2421, 2423, 2425, 2427, 2430, 2433, 2435, 2436, 2438, 2441, 2444, 2447, + 2449, 2450, 2453, 2455, 2459, 2461, 2463, 2464, 2467, 2469, 2472, 2476, 2479, 2482, 2486, 2489, 2490, 2493, + 2494, 2496, 2498, 2500, 2503, 2504, 2506, 2507, 2508, 2510, 2512, 2515, 2517, 2519, 2520, 2521, 2524, 2526, + 2529, 2530, 2533, 2536, 2539, 2541, 2543, 2544, 2547, 2549, 2550, 2552, 2553, 2554, 2555, 2036, 2556, 2559, + 2562, 2563, 2564, 2567, 2569, 2570, 2571, 2572, 2575, 2577, 2579, 2581, 2583, 2584, 2586, 2588, 2589, 2590, + 2591, 2592, 2593, 2594, 2595, 2596, 2597, 2600, 2601, 2602, 2605, 2606, 2607, 2608, 2609, 2610, 2611, 2612, + 2613, 2614, 2616, 2620, 2623, 2626, 2628, 2629, 2633, 2635, 2637, 2639, 2641, 2644, 2646, 2650, 2651, 2652, + 2654, 27, 2657, 2659, 2661, 2664, 2665, 2668, 2670, 2671, 2674, 2675, 2676, 2677, 2678, 2679, 2681, 2683, 2685, + 2686, 2687, 2689, 2692, 2267, 2694, 2695, 2696, 2697, 2700, 2702, 2704, 2707, 2708, 2709, 2710, 2711, 2712, + 2713, 2714, 2715, 2716, 2718, 2719, 2720, 2722, 2723, 2726, 1161, 2727, 2728, 2730, 2731, 2732, 2733, 2735, + 2738, 2739, 2740, 2741, 2742, 2743, 2744, 2745, 2747, 2750, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2759, + 2760, 2761, 2762, 2437, 2763, 2764, 2765, 2766, 2768, 1192, 2771, 2774, 2777, 2780, 2782, 2784, 2787, 2792, + 2794, 2796, 2797, 2798, 2802, 2805, 2806, 2807, 2808, 2810, 2811, 2812, 2813, 2814, 2816, 2817, 2820, 2821, + 2822, 2823, 2824, 2292, 1776, 2826, 2829, 2832, 2834, 2835, 2272, 2839, 2841, 2843, 2845, 2848, 2851, 2854, + 2856, 2858, 2859, 2860, 2861, 2863, 2864, 2865, 2866, 2867, 2870, 2297, 2871, 2876, 2878, 2881, 2886, 2889, + 2891, 2895, 2897, 2898, 2900, 2904, 2906, 2908, 2910, 2912, 2915, 2918, 2921, 2923, 2925, 2926, 2927, 2928, + 2929, 2930, 2931, 2932, 2933, 2934, 2935, 2936, 2941, 2943, 2945, 2946, 2948, 2949, 620, 2950, 2954, 2957, 2960, + 2961, 2962, 2963, 2964, 2967, 2968, 695, 2969, 2970, 2972, 2973, 2975, 2976, 2979, 2981, 2982, 2983, 2984, 2986, + 2990, 2991, 2992, 2993, 2996, 2997, 3000, 3003, 3006, 3008, 3010, 3012, 3014, 3019, 1209, 3021, 3023, 3025, + 3028, 3029, 3032, 3034, 3037, 3039, 3041, 3044, 3047, 3049, 3051, 3052, 3054, 3057, 3060, 3062, 3064, 3066, + 3067, 3070, 3072, 3073, 3074, 3077, 3078, 3079, 3080, 3081, 3082, 3083, 3084, 3085, 3086, 3087, 3088, 3089, + 3090, 3091, 3092, 3093, 3095, 3096, 3097, 3098, 3099, 3102, 3103, 1783, 3105, 3107, 3112, 3114, 3116, 3117, + 3120, 3123, 3124, 3125, 3127, 3129, 3130, 3132, 3133, 3134, 3135, 3136, 3137, 3140, 3141, 3142, 3143, 3144, + 3145, 3148, 3150, 3152, 3153, 3156, 3157, 1698, 3159, 3160, 3161, 3162, 3164, 3165, 3167, 3170, 3171, 3173, + 3174, 3177, 3178, 3181, 3183, 3185, 3186, 3187, 3188, 3189, 3190, 3191, 2899, 3198, 3200, 3202, 3203, 3206, + 3210, 3211, 3213, 3215, 3216, 3219, 3220, 3222, 3223, 3226, 3229, 3230, 3232, 3233, 3235, 3236, 3237, 3238, + 3239, 3240, 3241, 3242, 3243, 3244, 3245, 3246, 3249, 3253, 3256, 3257, 3258, 3259, 3260, 3261, 1952, 3262, + 3263, 2378, 3264, 3266, 3268, 3270, 3271, 3273, 3274, 3275, 3276, 3277, 3278, 3282, 3283, 3284, 3285, 3287, + 3288, 3289, 3290, 3291, 3292, 3294, 3295, 3296, 3297, 3299, 3300, 3303, 3305, 3308, 3309, 3310, 3313, 3316, + 3318, 640, 3322, 3324, 3327, 3330, 3332, 3334, 3337, 3339, 3341, 3342, 3345, 3347, 3349, 3350, 3353, 3355, 3357, + 3359, 3361, 3363, 2276, 3365, 3366, 3367, 3368, 3369, 3371, 3373, 3376, 3377, 3378, 3379, 3381, 3386, 3390, + 3393, 3397, 3400, 3401, 3404, 3406, 3408, 3409, 3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, + 3420, 3421, 3422, 3423, 3424, 3427, 3429, 3431, 3433, 3434, 3435, 3438, 3439, 3440, 3441, 3442, 3443, 3444, + 3445, 3446, 3451, 3453, 3455, 3456, 3458, 3459, 3460, 3463, 3466, 3467, 3468, 3469, 888, 3470, 3471, 3472, 3475, + 3476, 3477, 3478, 3479, 3480, 3481, 3482, 3483, 3484, 3485, 3486, 3488, 3490, 3492, 1644, 3493, 3494, 3495, + 3498, 3499, 3500, 3501, 1433, 3403, 3502, 3505, 3507, 3509, 3510, 3511, 3512, 3513, 3518, 3519, 3520, 3521, + 3524, 3525, 3526, 3527, 3530, 3531, 3532, 3533, 3534, 3535, 3536, 3537, 3539, 3540, 3541, 2072, 3544, 3545, + 3547, 3548, 3549, 3551, 3552, 3553, 3554, 3555, 3558, 3559, 3560, 3561, 3564, 3566, 3570, 3572, 3575, 3577, + 3579, 3584, 3587, 3591, 3598, 3600, 3603, 3605, 3606, 3611, 3613, 3616, 3618, 3622, 3625, 3628, 3633, 3635, + 3636, 3638, 3640, 3643, 3647, 3649, 3652, 3653, 3657, 3660, 3662, 3664, 3668, 3672, 3674, 3676, 3678, 3681, + 3683, 3686, 3688, 3691, 3692, 3693, 3696, 3697, 3698, 3699, 1894, 3703, 3706, 3708, 3710, 3711, 3714, 3716, + 3717, 3718, 3720, 3722, 3724, 3725, 3726, 3727, 3729, 3730, 3732, 1862, 3734, 3736, 3739, 3741, 3742, 3744, + 3746, 3747, 3750, 2658, 3752, 3753, 3754, 3755, 3756, 3757, 3758, 3759, 3760, 3761, 3762, 3763, 3765, 3767, + 3768, 3770, 3771, 2907, 3773, 3774, 3775, 3776, 3777, 3779, 3780, 3781, 3783, 3784, 3786, 1997, 3787, 3788, + 3789, 3790, 89, 3793, 3799, 3802, 3803, 3804, 3807, 3810, 3813, 3816, 3817, 3820, 3822, 3824, 3826, 3829, 3830, + 3833, 3836, 3837, 3839, 3843, 3846, 3847, 3849, 3850, 3853, 3856, 3857, 3861, 3864, 3867, 3869, 3872, 3876, + 3878, 3882, 3884, 3885, 3887, 3889, 3891, 3893, 3895, 3897, 3899, 3904, 3906, 3909, 3911, 3913, 3914, 3916, + 3917, 3919, 3921, 3923, 3925, 3927, 3928, 3930, 3931, 3932, 3935, 3938, 1552, 3939, 3941, 3875, 3943, 3945, + 3946, 3948, 3950, 3951, 3954, 3957, 3958, 3963, 3968, 3970, 3971, 3973, 3975, 3978, 3980, 3981, 3984, 3985, + 3988, 3989, 3991, 3992, 3995, 3998, 3999, 4001, 4002, 4005, 705, 4008, 4010, 4012, 4015, 4018, 4019, 4022, 4023, + 814, 4025, 4028, 4029, 4031, 4033, 4035, 4036, 1153, 4037, 4038, 4039, 4041, 4042, 4045, 4048, 4052, 4055, 4057, + 4058, 4060, 4064, 4066, 4067, 4069, 4071, 4073, 4075, 4076, 4077, 4079, 4081, 4083, 4084, 4085, 4086, 4089, + 4092, 4093, 4094, 4098, 4100, 4103, 4104, 4105, 4106, 4108, 4110, 2278, 4111, 4112, 4113, 4116, 4119, 4121, + 4124, 4125, 4126, 4127, 4130, 4131, 4134, 1899, 4135, 710, 4136, 4137, 4140, 4143, 4145, 4146, 4148, 4150, 4151, + 4153, 4156, 4159, 4160, 4163, 4164, 4165, 4167, 4168, 4169, 4170, 4171, 4172, 4173, 4174, 4177, 4181, 4183, + 4187, 4188, 4189, 4192, 4193, 4196, 4199, 4200, 4201, 4204, 4205, 4206, 4207, 4208, 4209, 4212, 3974, 4213, + 4214, 4215, 4216, 4217, 4218, 4220, 4224, 4227, 4228, 4230, 4232, 4233, 4234, 4235, 4236, 4237, 4238, 4239, + 4242, 4243, 4245, 4246, 4247, 4248, 4249, 4252, 4255, 4257, 4258, 4261, 4264, 4266, 4267, 4270, 4272, 4275, + 4277, 4278, 4280, 4282, 4283, 1871, 4288, 4290, 4292, 4294, 4296, 4300, 4302, 4303, 4305, 4307, 4309, 4311, + 4315, 4317, 4319, 4320, 4323, 4326, 4328, 4330, 4333, 4334, 4335, 4337, 4338, 4339, 4341, 4342, 4343, 4345, + 4347, 4351, 4352, 3709, 4355, 4359, 4360, 4361, 4362, 4363, 4365, 4367, 4369, 4370, 4371, 4372, 4373, 4375, + 4376, 4377, 4380, 4382, 4383, 4384, 4387, 4388, 4389, 4390, 4391, 4393, 4394, 4397, 4398, 4399, 1241, 4400, + 4401, 4404, 4072, 4409, 4411, 1187, 4413, 4415, 4419, 4421, 4423, 4425, 4426, 4427, 4430, 4431, 4433, 4434, + 4435, 4436, 4437, 4438, 4441, 4443, 4445, 4447, 4448, 4449, 4450, 4451, 4452, 4453, 4454, 4455, 4456, 4457, 100, + 4459, 4461, 4462, 4463, 4464, 4465, 4468, 4469, 4470, 4473, 4474, 4475, 4477, 4478, 4480, 4481, 4482, 4483, + 4484, 4487, 4490, 4492, 4493, 4494, 4495, 4496, 4497, 4498, 4499, 4500, 4505, 4507, 1000, 4508, 4510, 4512, + 4514, 4515, 4517, 4520, 4521, 91, 4523, 4526, 4531, 4532, 4533, 4535, 4537, 4538, 4539, 4540, 4541, 4542, 4543, + 4545, 4547, 4548, 4549, 4554, 4555, 4558, 4559, 4560, 4562, 4563, 1002, 4566, 4027, 4567, 4568, 4569, 4572, + 4576, 4577, 614, 4578, 3348, 4579, 4582, 4585, 4588, 1155, 4589, 4590, 4591, 4592, 4593, 4594, 4595, 4596, 4597, + 4599, 4600, 4603, 4606, 4608, 1983, 4612, 4614, 1984, 4615, 4616, 4617, 4618, 4621, 4624, 188, 4629, 4630, 4632, + 4633, 4634, 4638, 4639, 4640, 4645, 4646, 4647, 4648, 4649, 2282, 4650, 4651, 4652, 4653, 4656, 4659, 4662, + 4664, 4667, 4669, 2924, 4676, 4677, 4679, 4681, 4684, 4686, 4689, 4693, 4695, 4696, 4699, 4702, 4703, 4704, + 4705, 4706, 4707, 4708, 4709, 4711, 4715, 4716, 4717, 4720, 4723, 4724, 4726, 4727, 4728, 4729, 4730, 4731, + 3354, 4733, 4734, 4735, 4736, 4737, 4738, 1906, 4739, 4740, 4741, 4742, 1695, 4744, 4745, 4746, 4747, 4748, + 4749, 4751, 4752, 4753, 4754, 4756, 4757, 4758, 4759, 4760, 4761, 4762, 4763, 4767, 4768, 4769, 4770, 4771, + 4772, 4774, 4775, 4776, 4777, 4782, 4783, 4786, 4788, 4791, 639, 11976, 662, 3405, 5010, 6781, 23276, 6974, + 15279, 15484, 17429, 15887, 26713, 18240, 11804, 24566, 475, 24782, 25169, 25219, 25266, 25307, 25432, 25443, + 25395, 25490, 25766, 25775, 25798, 25809, 25833, 25882, 25931, 29350, 29385, 29389, 29407, 29414, 29394, 29435, + 29448, 29460, 20562, 29477, 31705, 29524, 29537, 29546, 29560, 33408, 29564, 29610, 31821, 29626, 3286, 30757, + 29683, 29729, 29754, 5065, 29805, 9011, 29821, 24737, 29850, 29889, 29942, 29955, 28519, 29993, 9355, 8199, 680, + 19571, 27921, 29998, 30145, 30165, 26706, 30182, 30196, 30218, 9041, 30233, 30252, 30257, 30281, 30312, 906, + 30405, 30458, 30463, 30469, 30477, 30488, 30607, 30612, 30624, 30731, 907, 8119, 30798, 30829, 940, 26636, + 20202, 29755, 14673, 9274, 9293, 9273, 30926, 30957, 30972, 33145, 24723, 30979, 14684, 31064, 11518, 31086, + 12016, 15951, 31198, 31231, 31244, 31262, 31272, 31282, 31289, 31290, 31332, 31347, 31314, 31353, 31375, 21287, + 21288, 31343, 31386, 31421, 31430, 31465, 31473, 31485, 31501, 31509, 31521, 14904, 31180, 31528, 14959, 18699, + 18717, 14336, 31544, 26854, 34576, 34578, 31644, 33204, 11421, 23288, 31677, 31713, 11890, 16858, 31728, 31749, + 31760, 31782, 31793, 31805, 31816, 31822, 31827, 31835, 17964, 21594, 31838, 8160, 31930, 29013, 33653, 31961, + 17988, 12421, 23352, 23250, 23292, 31752, 23253, 32029, 16837, 32144, 32166, 24114, 32182, 13896, 31182, 32201, + 31734, 32238, 26180, 32265, 27263, 32294, 32311, 16870, 32319, 17167, 16842, 11071, 32347, 32397, 32415, 32443, + 32456, 21174, 32468, 32493, 32499, 32506, 32531, 32225, 32546, 32564, 32577, 12042, 32634, 32747, 32760, 32766, + 32778, 11501, 32790, 19469, 9252, 31184, 31186, 9731, 32816, 999, 32884, 32892, 9272, 32914, 32926, 32934, + 32939, 32940, 32962, 5517, 1083, 34683, 33053, 8392, 10572, 11960, 24509, 30299, 1300, 30527, 34676, 1302, + 30535, 26450, 26482, 26483, 26489, 26495, 32977, 8703, 1418, 26414, 1419, 28763, 2115, 7606, 1441, 13412, 26273, + 28880, 28909, 1442, 28458, 28479, 28493, 1445, 32733, 1466, 1475, 29032, 26257, 1476, 28595, 28885, 1491, 1502, + 28323, 1510, 5290, 26241, 1526, 29197, 28873, 4090, 1530, 9378, 26158, 3845, 8654, 1531, 1761, 26082, 1535, + 26699, 29865, 1555, 2245, 8605, 28450, 28899, 28901, 1558, 5993, 28354, 29834, 1607, 1667, 23535, 1670, 1790, + 26644, 7585, 20304, 28327, 28400, 26421, 1678, 2221, 10973, 1689, 28865, 8550, 22378, 8540, 1691, 26032, 29417, + 1692, 26591, 29304, 1694, 28069, 31474, 31486, 31507, 31524, 1802, 28906, 1813, 29853, 1814, 8604, 1841, 27959, + 1857, 28466, 1918, 32834, 32863, 32890, 30286, 31680, 31400, 1979, 31833, 33277, 13387, 1980, 21374, 2001, 2035, + 5666, 5564, 2049, 17110, 5287, 2362, 32818, 25810, 2050, 2065, 25762, 29012, 29031, 2066, 25802, 34043, 28092, + 29161, 2094, 34032, 28872, 2097, 34161, 33479, 2106, 2140, 2142, 36878, 36879, 2186, 28117, 2219, 29019, 6372, + 2238, 7995, 9107, 12097, 13676, 17199, 26746, 33929, 18012, 20093, 34468, 20362, 21610, 23755, 23769, 24602, + 19617 + ], + "@alifd/next", + "@angular-devkit/core", + [3, 4, 16], + "schematics", + [2, 5, 6], + [3, 4, 8], + "/animations", + [2, 8, 9], + [3, 10, 9], + "cdk", + [2, 11, 12], + [3, 13, 10], + "ommon", + [2, 14, 15], + [3, 16, 12], + "piler", + [2, 17, 18], + "-cli", + [2, 19, 20], + [3, 16, 11], + "re", + [2, 22, 23], + "forms", + [2, 11, 25], + "http", + [2, 11, 27], + "material", + [2, 11, 29], + "platform-browser", + [2, 11, 31], + "-dynamic", + [2, 32, 33], + [3, 32, 18], + "server", + [2, 35, 36], + "router", + [2, 11, 38], + "@ant-design/react-native", + [3, 40, 12], + "web3-common", + [2, 41, 42], + [3, 43, 17], + "icons", + [2, 44, 45], + "@auth/sveltekit", + "@babel/cli", + [3, 48, 8], + "ode-frame", + [2, 49, 50], + [3, 51, 9], + [2, 52, 23], + [3, 48, 7], + "helper-plugin-utils", + [2, 54, 55], + "parser", + [2, 54, 57], + [3, 58, 8], + "lugin-proposal-class-properties", + [2, 59, 60], + "@11ty/eleventy", + "@adobe/css-tools", + "@api-components/api-method-documentation", + "@apollo/client", + "@asyncapi/generator-react-sdk", + "eslint-parser", + [2, 54, 67], + [3, 61, 23], + "decorators", + [2, 69, 70], + "export-default-from", + [2, 69, 72], + [3, 73, 30], + "namespace-from", + [2, 74, 75], + "object-rest-spread", + [2, 69, 77], + [3, 61, 14], + "syntax-dynamic-import", + [2, 79, 80], + "transform-runtime", + [2, 79, 82], + "olyfill", + [2, 59, 84], + "reset-env", + [2, 59, 86], + [3, 87, 14], + "react", + [2, 88, 89], + "typescript", + [2, 88, 91], + "register", + [2, 54, 93], + [3, 94, 8], + "untime", + [2, 95, 96], + "-corejs2", + [2, 97, 98], + "traverse", + [2, 54, 100], + [3, 101, 8], + "ypes", + [2, 102, 103], + "@biz-dev-ops/md-docs", + "@bwcr_/winston-loki", + "@changesets/cli", + "@cha", + "tscope/chat-ui-kit-react", + [2, 108, 109], + "@ckeditor/ckeditor5-adapter-ckfinder", + [3, 111, 21], + "ngular", + [2, 112, 113], + "utoformat", + [2, 112, 115], + [3, 111, 20], + "basic-styles", + [2, 117, 118], + [3, 119, 21], + "lock-quote", + [2, 120, 121], + "uild-balloon", + [2, 120, 123], + "-block", + [2, 124, 125], + [3, 124, 26], + "classic", + [2, 127, 128], + "deco", + "upled-document", + [2, 130, 131], + [2, 127, 132], + "inline", + [2, 127, 134], + "ckbox", + [2, 117, 136], + [3, 137, 22], + "finder", + [2, 138, 139], + [3, 137, 21], + "lipboard", + [2, 141, 142], + [3, 143, 22], + "oud-services", + [2, 144, 145], + "ore", + [2, 141, 147], + "easy-image", + [2, 117, 149], + [3, 150, 21], + "ngine", + [2, 151, 152], + "ssentials", + [2, 151, 154], + "heading", + [2, 117, 156], + "image", + [2, 117, 158], + [3, 159, 21], + "ndent", + [2, 160, 161], + "link", + [2, 117, 163], + [3, 164, 22], + "st", + [2, 165, 166], + "media-embed", + [2, 117, 168], + "paragraph", + [2, 117, 170], + [3, 171, 22], + "ste-from-office", + [2, 172, 173], + [2, 117, 89], + "table", + [2, 117, 176], + [3, 177, 21], + "yping", + [2, 178, 179], + "ui", + [2, 117, 181], + [3, 182, 21], + "pload", + [2, 183, 184], + "tils", + [2, 183, 186], + "vue", + [2, 117, 188], + "widget", + [2, 117, 190], + "@commitlint/cli", + "@com", + "podoc/compodoc", + [2, 193, 194], + "unica/core", + [2, 193, 196], + "@contenthook/browser", + [3, 198, 13], + "cli", + [2, 199, 200], + "node", + [2, 199, 202], + "@coreui/coreui", + "@csstools/css-parser-algorithms", + [3, 205, 14], + "tokenizer", + [2, 206, 207], + [3, 205, 10], + "media-", + "query-list-parser", + [2, 210, 211], + [2, 209, 212], + "postcss-is-pseudo-class", + [2, 209, 214], + [3, 215, 18], + "progressive-custom-properties", + [2, 216, 217], + "selector-specificity", + [2, 209, 219], + "@cucumber/cucumber", + "@deven-org/documentation-skeleton", + "@dev", + "tea2026/aspernatur-ea-non-porro", + [2, 223, 224], + [3, 225, 12], + "consectetur-ab-unde-quisquam", + [2, 226, 227], + [3, 228, 13], + "upiditate-dolorem-excepturi-impedit", + [2, 229, 230], + "distinctio-soluta-illo-eaque", + [2, 226, 232], + "eum-ullam-est-distinctio", + [2, 226, 234], + [3, 235, 13], + "xplicabo-alias-architecto-sed", + [2, 236, 237], + "improved-journey", + [2, 226, 239], + [3, 240, 13], + "nventore-facilis-corporis-cum", + [2, 241, 242], + "psa-omnis-in-molestiae", + [2, 241, 244], + "literate-computing-machine", + [2, 226, 246], + "maxime-sequi-est-rem", + [2, 226, 248], + "necessitatibus-dolorem-esse-atque", + [2, 226, 250], + "odit-enim-reiciendis-pariatur", + [2, 226, 252], + [3, 253, 17], + "maxime-", + "porro-asperiores", + [2, 255, 256], + [2, 254, 257], + "possimus-ipsa-sint-consequuntur", + [2, 226, 259], + "qui-quos-laborum-amet", + [2, 226, 261], + [3, 262, 15], + "a-ducimus-placeat-minima", + [2, 263, 264], + "dem-voluptate-repudiandae-necessitatibus", + [2, 263, 266], + "rerum-quaerat-porro-animi", + [2, 226, 268], + "ubiquitous-octo-memory", + [2, 226, 270], + "@diotoborg/adipisci-placeat-iure", + [3, 272, 12], + "met-architecto-est", + [2, 273, 274], + "t-totam-perspiciatis", + [2, 273, 276], + [3, 272, 11], + "commodi-voluptatum-libero", + [2, 278, 279], + "delectus-necessitatibus-voluptatum", + [2, 278, 281], + [3, 282, 13], + "serunt-illo-tempora", + [2, 283, 284], + [3, 282, 12], + "icta-recusandae-veniam", + [2, 286, 287], + "olor-earum-quia", + [2, 286, 289], + [3, 290, 17], + "tempora-fuga", + [2, 291, 292], + [3, 290, 16], + "es-praesentium-assumenda", + [2, 294, 295], + "eligendi-est-unde", + [2, 278, 297], + [3, 298, 12], + "sse-accusantium-ratione", + [2, 299, 300], + "illo-amet-architecto", + [2, 278, 302], + "laudantium-itaque-esse", + [2, 278, 304], + [3, 305, 12], + "ibero-asperiores-at", + [2, 306, 307], + "neque-inventore-corporis", + [2, 278, 309], + [3, 310, 12], + "ostrum-eveniet-officiis", + [2, 311, 312], + "odio-dolores-officia", + [2, 278, 314], + "porro-", + "modi-accusamus", + [2, 316, 317], + [2, 278, 318], + [3, 319, 12], + "sychic-bassoon", + [2, 320, 321], + "quasi-repellat-odit", + [2, 278, 323], + [3, 324, 13], + "i-ullam-ipsum", + [2, 325, 326], + "o-dolorem-ducimus", + [2, 325, 328], + "ratione-error-odio", + [2, 278, 330], + [3, 331, 12], + "epellat-blanditiis-quis", + [2, 332, 333], + [3, 292, 8], + "voluptas-distinctio", + [2, 335, 336], + [2, 278, 337], + "ullam-dignissimos-repudiandae", + [2, 278, 339], + "velit-reiciendis-velit", + [2, 278, 341], + [3, 342, 13], + "rbose-robot", + [2, 343, 344], + "@diplodoc/transform", + "@discordjs/rest", + "@dis", + "qada/workspace", + [2, 348, 349], + "@doc-tools/docs", + [3, 351, 11], + [3, 82, 9], + [2, 352, 353], + "@dramaorg/esse-praesentium-eligendi", + [3, 355, 10], + "quae-dolore-nostrum", + [2, 356, 357], + "@eas-framework/server", + "@eightshift/frontend-libs", + "@electron/docs-parser", + "@emotion/babel-plugin", + [3, 362, 9], + "core", + [2, 363, 364], + [3, 365, 10], + "ss", + [2, 366, 367], + "styled", + [2, 363, 369], + "@erboladaiorg/ad-exercitationem-ducimus", + [3, 371, 15], + "speriores-earum-quaerat", + [2, 372, 373], + [3, 374, 25], + "fuga-sint", + [2, 375, 376], + "nam-adipisci", + [2, 375, 378], + "utem-dolores-ipsam", + [2, 372, 380], + [3, 371, 14], + "cupiditate-consectetur-porro", + [2, 382, 383], + [3, 384, 25], + "pariatur-optio", + [2, 385, 386], + [3, 232, 11], + "quis", + [2, 335, 389], + [2, 388, 390], + [2, 382, 391], + "error-atque-ea", + [2, 382, 393], + [3, 394, 15], + "sse-", + "ipsa-numquam", + [2, 396, 397], + [2, 395, 398], + "x-hic-molestias", + [2, 395, 400], + [3, 401, 16], + "plicabo-eius-adipisci", + [2, 402, 403], + "molestiae-voluptatibus-perferendis", + [2, 382, 405], + [3, 406, 22], + "s-nulla-dolor", + [2, 407, 408], + "nisi-culpa-cum", + [2, 382, 410], + "officia-illum-aperiam", + [2, 382, 412], + "perspiciatis-magni-ut", + [2, 382, 414], + "quae-", + "in-veniam", + [2, 416, 417], + [2, 382, 418], + [3, 419, 18], + "rat-mollitia-adipisci", + [2, 420, 421], + [3, 419, 16], + "ibusdam-itaque-tempora", + [2, 423, 424], + "sint-deleniti-dolorem", + [2, 382, 426], + [3, 427, 16], + "t-nesciunt-amet", + [2, 428, 429], + "tenetur-architecto-dolore", + [2, 382, 431], + "ut-dignissimos-laborum", + [2, 382, 433], + "velit-", + "fugit-harum", + [2, 435, 436], + [2, 382, 437], + "@eslint-community/eslint-utils", + "@eslint", + "/js", + [2, 440, 441], + "@fakeyanss/redoc", + "@floating-ui/react-dom", + "@fontsource/inter", + [3, 445, 12], + "roboto", + [2, 446, 447], + "@fortawesome/fontawesome-svg-core", + [3, 449, 14], + "ree-solid-svg-icons", + [2, 450, 451], + [3, 449, 13], + "-fontawesome", + [2, 89, 454], + [2, 453, 455], + "@grandlinex/core", + [3, 457, 12], + "e-kernel", + [2, 458, 459], + "kernel", + [2, 458, 461], + "@gra", + "phql-markdown/core", + [2, 463, 464], + [3, 465, 18], + "docusaurus", + [2, 466, 467], + "@hajtech/webpack-config", + "@hapi/hapi", + "@hishprorg/aliquid-ad-vero", + [3, 471, 12], + "utem-", + "sint-", + "@adonisjs/core", + "sint-quas", + [2, 473, 476], + [2, 472, 477], + [3, 471, 11], + "cum-rem-consequuntur", + [2, 479, 480], + "earum-sint-veritatis", + [2, 479, 482], + [3, 483, 12], + "ius-vero-dicta", + [2, 484, 485], + "st-dicta-quis", + [2, 484, 487], + "incidunt-quibusdam-tempore", + [2, 479, 489], + [3, 490, 12], + "taque-esse-accusamus", + [2, 491, 492], + "ure-optio-nihil", + [2, 491, 494], + "magni-amet-id", + [2, 479, 496], + [3, 497, 17], + "nisi-", + "aperiam", + [2, 499, 500], + [2, 498, 501], + [3, 497, 13], + "xime-voluptates-enim", + [2, 503, 504], + "nihil-ad-ratione", + [2, 479, 506], + [3, 414, 13], + [3, 330, 8], + "unde", + [2, 509, 510], + [2, 508, 511], + [2, 479, 512], + "-perferendis-culpa", + [2, 389, 514], + [2, 479, 515], + "reprehenderit-excepturi-sed", + [2, 479, 517], + "nam-", + "conse", + "quuntur", + [2, 520, 521], + [2, 519, 522], + [2, 474, 523], + [2, 479, 524], + [3, 525, 12], + "unt-officia-eligendi", + [2, 526, 527], + [3, 528, 16], + "volupta", + "tem-nobis", + [2, 530, 531], + [2, 529, 532], + "-vitae-reprehenderit", + [2, 510, 534], + [2, 479, 535], + "wafflejs", + [2, 479, 537], + "@homer0/prettier-plugin-jsdoc", + "@hookform/resolvers", + "@iamtraction/google-translate", + "@idux/cdk", + "@idux/c", + "omponents", + [2, 543, 544], + "@inquirer/core", + "@ionic/core", + "@isaacs/cliui", + "@istanbuljs/nyc-config-typescript", + "@itwin/itwinui-react", + "@jest/core", + "@jest/", + "types", + [2, 552, 553], + "@jsonforms/core", + [3, 555, 11], + "-renderers", + [2, 29, 557], + [2, 556, 558], + [2, 556, 89], + "@juigorg/nisi-molestiae-ut", + [3, 561, 9], + "sit-nam-neque", + [2, 562, 563], + "@jupyterlab/application", + "@kobedevi/sassdoc", + "@kollorg/dicta-itaque-nemo", + [3, 567, 9], + "nihil-", + "veniam-deserunt", + [2, 569, 570], + [2, 568, 571], + "@libphamton/chatfanpage", + [3, 573, 12], + "fb-group", + [2, 574, 575], + "@listr2/prompt-adapter-inquirer", + "@mantine/core", + [3, 578, 9], + "dates", + [2, 579, 580], + "hooks", + [2, 579, 582], + "modals", + [2, 579, 584], + "notifications", + [2, 579, 586], + "prism", + [2, 579, 588], + "style", + "s", + "styles", + [2, 579, 592], + "utils", + [2, 579, 594], + "@material-ui/core", + [3, 596, 13], + [2, 597, 45], + "@mat", + "hematikoi/jsonapi", + [2, 599, 600], + "@mdx-js/react", + "@microsoft/api-extractor", + [3, 603, 11], + "tsdoc", + [2, 604, 605], + "-config", + [2, 606, 607], + "@middy/core", + "@middy/", + "-json-body-parser", + [2, 27, 611], + [2, 610, 612], + "util", + [2, 610, 614], + "@ministryofjustice/frontend", + "@mswjs/interceptors", + "@mui/icons-material", + "@mui/", + "lab", + "@mui/lab", + [2, 619, 29], + "system", + [2, 619, 623], + "x-date-pickers", + [2, 619, 625], + "@neato/guider", + "@ng-doc/core", + [3, 628, 8], + "ui-kit", + [2, 629, 630], + [3, 631, 9], + [2, 632, 186], + "@nomicfoundation/hardhat-chai-matchers", + "@npmcli/arborist", + [3, 635, 8], + "map-workspaces", + [2, 636, 637], + "@augment-vir/common", + "node-gyp", + [2, 636, 640], + "run-script", + [2, 636, 642], + "@npmc", + "orp/marky-markdown", + [2, 644, 645], + "@npm", + "tuanmap/ex-vel-expedita-impedit", + [2, 647, 648], + [3, 649, 12], + "psychic-guide", + [2, 650, 651], + "recusandae-recusandae-nam-et", + [2, 650, 653], + "sed-quo-nemo-rerum", + [2, 650, 655], + "esse-velit-magnam", + [2, 435, 657], + [2, 650, 658], + "@nrwl/devkit", + "@nrwl/", + [2, 3388, 3399], + "@nrwl/tao", + "workspace", + [2, 661, 664], + "@nx/devkit", + "@nx/", + "esbuild", + [2, 667, 668], + "@nx/es", + "lint", + [2, 670, 671], + "@nx/e", + "xpress", + [2, 673, 674], + "js", + "@nx/js", + "nest", + "@nx/nest", + "nextra", + "ode", + "@nx/node", + [2, 667, 664], + "@oclif/command", + [3, 684, 9], + "nfig", + [2, 685, 686], + [2, 685, 23], + "@oclif/", + "plugin-help", + [2, 689, 690], + "@octokit/rest", + "@opentiny/vue", + "-render", + "less", + [2, 694, 695], + [2, 693, 696], + [3, 697, 14], + "theme", + [2, 698, 699], + "-mobile", + [2, 700, 701], + "@otterhttp/cookie", + [3, 703, 11], + "request", + [2, 704, 705], + [3, 706, 13], + "sponse", + [2, 707, 708], + "send", + [2, 704, 710], + "@pact-foundation/pact", + "@patrtorg/a-ad-expedita", + [3, 713, 12], + "ut-amet", + [2, 714, 715], + [3, 713, 11], + [3, 373, 10], + "vel-accusantium", + [2, 718, 719], + [2, 717, 720], + [3, 721, 15], + "natur-dolorum-ducimus", + [2, 722, 723], + "et-hic", + [2, 473, 725], + [2, 717, 726], + [3, 713, 10], + [3, 227, 12], + "culpa-non", + [2, 729, 730], + [2, 728, 731], + [3, 732, 22], + "repudiandae-consequuntur", + [2, 733, 734], + [3, 732, 15], + "quatur-voluptatum-officiis", + [2, 736, 737], + "ducimus-magni-quibusdam", + [2, 728, 739], + "enim-magni-hic", + [2, 728, 741], + [3, 742, 11], + "st-corrupti-deleniti", + [2, 743, 744], + "veni", + "et-tempore-maiores", + [2, 746, 747], + [2, 743, 748], + "illum-sapiente-quos", + [2, 728, 750], + "laborum-doloribus-voluptate", + [2, 728, 752], + [3, 753, 11], + "ibero-", + "doloribus-omnis", + [2, 755, 756], + [2, 754, 757], + [3, 758, 17], + [3, 336, 9], + "sequi", + [2, 760, 761], + [2, 759, 762], + "magn", + "am-aut-adipisci", + [2, 764, 765], + [2, 728, 766], + [3, 767, 12], + "iores-quidem-quo", + [2, 768, 769], + [3, 767, 11], + "olestias-molestias-ut", + [2, 771, 772], + "eius-unde", + [2, 519, 774], + [2, 728, 775], + [3, 386, 9], + "dele", + "niti-quaerat", + [2, 778, 779], + [2, 777, 780], + [2, 728, 781], + [3, 782, 11], + "orro-labore-eos", + [2, 783, 784], + "earum-", + "eius", + [2, 786, 787], + [2, 416, 788], + [2, 728, 789], + [3, 790, 12], + "os-quasi-ipsa", + [2, 791, 792], + "sapiente-eos-magnam", + [2, 728, 794], + [3, 795, 20], + "xercitationem-sit", + [2, 796, 797], + [3, 431, 9], + "nimi-reprehenderit", + [2, 799, 800], + [2, 728, 801], + "@perseid/store", + "@phosphor/widgets", + "@phun-ky/speccer", + "@polymer/polymer", + "@qooxdoo/framework", + "@quasar/extras", + "@readyplayerme/visage", + "@reduxjs/toolkit", + "@rollup/plugin-commonjs", + [3, 811, 15], + "node-", + "resolve", + [2, 813, 814], + [2, 812, 815], + "@sanity/tsdoc", + "@scalar/api-reference", + [3, 818, 8], + "fastify-api-reference", + [2, 819, 820], + "@serenity-js/protractor", + [3, 822, 13], + "webdriverio", + [2, 823, 824], + "@sinonjs/fake-timers", + "@storybook/addon-docs", + "@subwallet/react-ui", + "@supernovaio/sdk", + "-exporters", + [2, 829, 830], + [3, 829, 14], + "upernova-sdk", + [2, 832, 833], + "@sveltejs/eslint-config", + [3, 835, 10], + "kit", + [2, 836, 837], + "vite-plugin-svelte", + [2, 836, 839], + "@svgr/webpack", + "@swc/core", + "@swenkerorg/maiores-voluptatibus-nemo", + [3, 843, 13], + "odi-dolorum-provident", + [2, 844, 845], + [3, 843, 12], + "nulla-voluptates-voluptates", + [2, 847, 848], + "@swisspost/design-system-styles", + "@symbiotejs/symbiote", + "@synion/md-docs", + "@taktikorg/aut-distinctio-repellat", + [3, 853, 11], + "quo-quos", + [2, 729, 855], + [2, 854, 856], + [3, 857, 13], + "rporis-nihil-odit", + [2, 858, 859], + [3, 780, 11], + "i-dolorem", + [2, 861, 862], + [2, 854, 863], + [3, 864, 12], + "olor-", + "quibusdam", + [2, 509, 867], + [2, 866, 868], + [2, 865, 869], + "harum-reprehenderit-perferendis", + [2, 854, 871], + "illum-", + "accusamus-possimus", + [2, 873, 874], + [2, 854, 875], + [3, 876, 12], + "psa-", + "totam-aperiam", + [2, 878, 879], + [2, 877, 880], + "ste-", + "ex-tempore", + [2, 882, 883], + [2, 877, 884], + "taque-", + "nam-e", + "os", + "nam-eos", + [2, 886, 889], + [2, 877, 890], + [3, 891, 18], + "tempor", + "e-exercitationem", + [2, 893, 894], + [2, 892, 895], + "maiores-dolores-aut", + [2, 854, 897], + [3, 898, 12], + [3, 772, 9], + "fuga-", + [3, 259, 8], + [2, 901, 902], + [2, 900, 903], + [2, 899, 904], + "@bugsnag/react-native", + "@enact/sandstone", + "sse-animi", + [2, 887, 908], + [2, 854, 909], + [3, 910, 12], + "ecessitatibus-repudiandae-officia", + [2, 911, 912], + "isi-reprehenderit-amet", + [2, 911, 914], + "placeat-voluptates-dolorum", + [2, 854, 916], + [3, 917, 12], + "raesentium-dolorum-quis", + [2, 918, 919], + [3, 920, 23], + "neque-i", + "psam", + [2, 922, 923], + [2, 921, 924], + "quo-", + "reiciendis-quibusdam", + [2, 926, 927], + [2, 854, 928], + [3, 653, 12], + "atione-veniam", + [2, 930, 931], + [2, 854, 932], + "similique-natus-officia", + [2, 854, 934], + [3, 935, 12], + "uscipit-modi-ratione", + [2, 936, 937], + [3, 895, 8], + "@antora/logger", + "in", + "veniam-in", + [2, 939, 942], + [2, 854, 943], + "unde-", + "animi-omnis", + [2, 945, 946], + [2, 854, 947], + "nobis-blanditiis", + [2, 435, 949], + [2, 854, 950], + [3, 951, 12], + "oluptatem-pariatur-tenetur", + [2, 952, 953], + "@tanem/svg-injector", + "@tan", + "stack/react-query", + [2, 956, 957], + [3, 958, 10], + "svelte-query", + [2, 959, 960], + "@teamhanko/hanko-frontend-sdk", + "@testing-library/cypress", + [3, 963, 17], + "dom", + [2, 964, 965], + "jest-dom", + [2, 964, 967], + [3, 968, 22], + "native", + [2, 969, 970], + [2, 964, 89], + "user-event", + [2, 964, 973], + "@tinyhttp/app", + [3, 975, 10], + "cookie", + [2, 976, 977], + "-signature", + [2, 978, 979], + [3, 978, 12], + "rs", + [2, 981, 982], + "etag", + [2, 976, 984], + "forwarded", + [2, 976, 986], + "proxy-addr", + [2, 976, 988], + "req", + [2, 976, 990], + [3, 991, 12], + [2, 992, 591], + [3, 991, 11], + "outer", + [2, 994, 995], + [2, 976, 710], + "type", + [2, 29611, 30768], + "type-is", + [2, 976, 1000], + "url", + [2, 976, 1002], + "@tsparticles/engine", + "@twurple/ebs-helper", + "@types/estree", + "@types", + "cript-eslint/eslint-plugin", + [2, 1007, 1008], + [3, 1009, 19], + [2, 1010, 57], + [2, 1010, 594], + "@ucloud-fe/react-components", + "@udecode/plate-core", + "@uiw/react-button", + [3, 1015, 11], + "icon", + [2, 1016, 1017], + [3, 1018, 12], + "nput", + [2, 1019, 1020], + "overlay-trigger", + [2, 1016, 1022], + "@uiw/", + "@uiw/utils", + "@unleash/proxy", + "@uploadcare/file-uploader", + "@vitejs/plugin-legacy", + [3, 1028, 15], + [2, 1029, 89], + "@vue/eslint-config-typescript", + "@wesleytodd/openapi", + "@wuxh/dumi", + "@zitterorg/adipisci-quae-eius", + [3, 1034, 12], + "sper", + "natur-", + [3, 386, 10], + "ccaecati", + [2, 1038, 1039], + [2, 1037, 1040], + [2, 1036, 1041], + [2, 1035, 1042], + "t-esse-odit", + [2, 1035, 1044], + [3, 1034, 11], + "cum-", + "ipsum-beatae", + [2, 1047, 1048], + [2, 1046, 1049], + "dolor", + "emque-ut-omnis", + [2, 1051, 1052], + [2, 1046, 1053], + "est-sunt-quos", + [2, 1046, 1055], + [3, 1056, 12], + "um-veritatis-placeat", + [2, 1057, 1058], + "fluffy-waddle", + [2, 1046, 1060], + "glowing-barnacle", + [2, 1046, 1062], + "perferendis-consectetur", + [2, 873, 1064], + [2, 1046, 1065], + [3, 1066, 12], + "taque-n", + "isi-", + "veritatis", + [2, 1069, 1070], + [2, 1068, 1071], + [2, 1067, 1072], + "probable-octo", + [2, 1046, 1074], + "upgraded-fishstick", + [2, 1046, 1076], + "@zkportal/aleo-oracle-sdk", + "abort-controller", + "accepts", + "acl", + "acorn", + "arethetypeswrong", + "acorn-walk", + "action-cli", + "adm-zip", + "after", + "agenda", + "aid-guard1", + "airtap", + "ajv", + "ajv-formats", + "although-line-wall-corn", + "amqp", + "lib", + "amqplib", + "analsorhost-simple-bs", + "angular", + "-animate", + [2, 1098, 1099], + "angular-", + [2, 1101, 200], + [2, 1101, 29], + "ansi-colors", + "ansi-", + "escapes", + [2, 1105, 1106], + "regex", + "ansi-regex", + [2, 1105, 592], + "ansi", + "ansis", + "ant-design-vue", + "antd", + "antfu", + "anyway-south-boy-pilot", + "api-console", + "apidoc", + "-markdown", + [2, 1118, 1119], + "apn", + "apollo-cache-inmemory", + "apollo-c", + "lient", + [2, 1123, 1124], + "apollo-", + [2, 1126, 163], + "-http", + [2, 1127, 1128], + "app-root-path", + "appium-android-driver", + "apple-transportation-web3-locate", + "appl", + "icationinsights", + [2, 1133, 1134], + "appsync-client-node", + "archiver", + "arg", + "argparse", + "arrangement-tell-arrange", + "arra", + "y.prototype.flatmap", + [2, 1141, 1142], + "arrify", + "assert", + "-plus", + "assert-plus", + "assume", + "async", + "-listen", + [2, 1149, 1150], + "async-", + "retry", + "async-retry", + "validator", + [2, 1152, 1155], + "atob", + "aud", + "auto-changelog", + "auto-", + "install", + [2, 1160, 1161], + "auto", + "prefixer", + [2, 1163, 1164], + "ava", + "awesome-typescript-loader", + "aws-sdk", + "axe-core", + "axios", + "azure-storage", + "babel", + "babel-cli", + "babel-c", + "babel-core", + "babel-", + "eslint", + [2, 1176, 1177], + "generator", + [2, 1176, 1179], + [3, 55, 7], + "fixtures", + [2, 1181, 1182], + [2, 1176, 1183], + [3, 1184, 13], + "plugin-", + "test-runner", + [2, 1186, 1187], + [2, 1185, 1188], + "vue-jsx-merge-props", + [2, 1185, 1190], + "jest", + "babel-jest", + "loader", + [2, 1176, 1194], + "add-module-exports", + [2, 1186, 1196], + [2, 1176, 1197], + [3, 1198, 13], + "dynamic-import-node", + [2, 1199, 1200], + "external-helpers", + [2, 1199, 1202], + "import", + [2, 1199, 1204], + [3, 1205, 14], + "stanbul", + [2, 1206, 1207], + "lodash", + [2, 1199, 1209], + "module-resolver", + [2, 1199, 1211], + "name", + "d-asset-import", + [2, 1213, 1214], + [2, 1199, 1215], + [2, 1199, 80], + [3, 1217, 20], + "jsx", + [2, 1218, 1219], + [3, 82, 10], + "to-generator", + [2, 1152, 1222], + [2, 1221, 1223], + [2, 1199, 1224], + [3, 1225, 23], + "class", + "-properties", + [2, 1227, 1228], + [2, 1226, 1229], + "-legacy", + [2, 70, 1231], + [2, 1226, 1232], + "es2015-block-scoping", + [2, 1226, 1234], + [3, 1235, 30], + "module", + "s-commonjs", + [2, 1237, 1238], + [2, 1236, 1239], + "temp", + "late-literals", + [2, 1241, 1242], + [2, 1236, 1243], + [2, 1226, 77], + "react-", + "react-jsx", + [2, 1226, 1247], + [3, 1248, 29], + "remove-prop-types", + [2, 1249, 1250], + [3, 1248, 25], + [2, 1252, 1179], + [3, 1248, 24], + [2, 1254, 96], + "babel-p", + [2, 1256, 84], + "reset-", + "airbnb", + [2, 1258, 1259], + [2, 1256, 1260], + [3, 1261, 13], + "env", + [2, 1262, 1263], + [3, 1264, 14], + "s2015", + [2, 1265, 1266], + [2, 1262, 89], + "-app", + [2, 1268, 1269], + "stage-0", + [2, 1262, 1271], + [3, 1272, 19], + "1", + [2, 1273, 1274], + "2", + [2, 1273, 1276], + "3", + [2, 1273, 1278], + [2, 1176, 93], + "babel-r", + [2, 1281, 96], + "template", + [2, 1176, 1283], + "babel-t", + "raverse", + [2, 1285, 1286], + [2, 1285, 103], + "ify", + "babelify", + "babylon", + "backbone", + "baqend", + "bark-needs-visit4", + "base-64", + "base-", + "individual-comfortable-crop", + [2, 1296, 1297], + "base", + "@expressots/core", + "base64-js", + [2, 30536, 26449, 2026], + "auth", + "basic-auth", + "batuta", + "bcrypt", + "-nodejs", + [2, 1306, 1307], + "bcryptjs", + "bearcat", + "beautify-benchmark", + "beaut", + "y-foot-compass5", + [2, 1312, 1313], + "beefy", + "believed-usually-greater-passage", + "benchmark", + "best-lips-shoulder", + "best-", + "valley2", + [2, 1319, 1320], + "between-cry-additional", + "beyond", + "bfj", + "bignumber.js", + "bindings", + "bip39", + "bizcharts", + "bl", + "blanket", + "blessed", + "-con", + "trib", + "-contrib", + [2, 1331, 1334], + "blockchain-am5", + [3, 1336, 11], + "baby", + [2, 1337, 1338], + [3, 1339, 13], + "ck1", + [2, 1340, 1341], + "closely", + [2, 1337, 1343], + "directly", + [2, 1337, 1345], + "egg", + [2, 1337, 1347], + "happily", + [2, 1337, 1349], + "language", + [2, 1337, 1351], + "own8", + [2, 1337, 1353], + "record", + [2, 1337, 1355], + "scientist", + [2, 1337, 1357], + "block", + "ed", + "blocked", + "bluebird", + "bn.js", + "body-parser", + "bookshelf", + "boom", + "bootstrap", + "-sass", + [2, 1367, 1368], + "bower", + "boxen", + "brain", + "branch-body-web3-feel", + "branch-", + "camera-web3-organization", + [2, 1374, 1375], + "brfs", + "broccoli-funnel", + [3, 1378, 9], + "merge-trees", + [2, 1379, 1380], + "test-", + "helper", + "test-helper", + [2, 1379, 1384], + "brought-tried-whether8", + "browser-sync", + "browser", + "browserify", + "-shim", + [2, 1389, 1390], + "slist", + [2, 1388, 1392], + "bs58", + "bson", + "btoa", + "buble", + "buffer", + "-equal", + [2, 1398, 1399], + "bufferutil", + "built-who-entire", + "built", + "in-modules", + [2, 1403, 1404], + "bulma", + "bump-cli", + "bundle-collapser", + "bunyan", + "busboy", + "bytebuffer", + "byte", + "bytes", + "c8", + "cac", + "cache-manager", + "call-bind", + [2, 32731, 158], + [2, 30999, 28513], + "camelcase", + "caniuse", + "-lite", + [2, 1421, 1422], + "canvas", + "careful-faster-dirty-matter", + "case-sensitive-paths-webpack-plugin", + "casperjs", + "caught-brain-service0", + "chai", + "-as-promised", + [2, 1429, 1430], + "chai-", + "passport-strategy", + [2, 1432, 1433], + "subset", + "chai-subset", + "chalk", + "chance", + "-able-necessary-bell", + [2, 1438, 1439], + "@amaui/icons-material-rounded-react", + [2, 26909, 26910], + "change-case", + "change", + [2, 27056, 28675], + "changelogen", + "chart.js", + "cheerio", + "chicken-fell-spread", + "child_process", + "child", + "-pro", + "cess-promise", + [2, 1452, 1453], + [2, 1451, 1454], + "choerodon-ui", + "chokidar", + "ci-info", + "ckeditor5", + "names", + "classnames", + "clean-css", + "clean-", + "webpack-plugin", + [2, 1463, 1464], + [2, 29755, 25720], + "r", + "clear", + "-module", + [2, 1468, 1469], + "cli-boxes", + "cli-", + "color", + "cli-color", + "@immobiliarelabs/backstage-plugin-gitlab-backend", + [2, 819, 28594], + "cli-cursor", + "spinner", + "cli-spinner", + [2, 1479, 591], + "cli-table", + "cli-table2", + "cli-table3", + "cli-t", + "runcate", + [2, 1484, 1485], + "ux", + "cli-ux", + "clipanion", + "clip", + "@busy-hour/blaze", + "clipboard", + "y", + "clipboardy", + "cliui", + "clone", + "clsx", + "clui", + "co", + "co-prompt", + "code", + [2, 1491, 3172], + "codecov", + "mirror", + "codemirror", + "coffee-script", + "coffee", + "script", + [2, 1507, 1508], + "attw", + "colorette", + "colors", + "columnify", + "comm", + "and-exists", + [2, 1514, 1515], + "command-", + "line-args", + [2, 1517, 1518], + [3, 1519, 13], + "usage", + [2, 1520, 1521], + "command", + "er", + "commander", + "@casl/ability", + "commitizen", + "commit", + "commitlint", + "@types/xast", + "tsdown", + "common-tags", + "component-emitter", + "comp", + [2, 15679, 26697], + "compression", + "concat-stream", + "conc", + "urrently", + [2, 1538, 1539], + "config", + "store", + "configstore", + "connect", + "-flash", + [2, 1544, 1545], + "connect-", + "history-api-fallback", + [2, 1547, 1548], + "mongo", + [2, 1547, 1550], + "redis", + [2, 1547, 1552], + "cons", + "globrex", + "consola", + "consol", + [3, 1014, 14], + "consolidate", + "content-disposition", + "content-", + [2, 1561, 998], + "content", + "hook", + "contenthook", + "conventional-changelog", + [2, 1566, 20], + [3, 1567, 24], + "onventionalcommits", + [2, 1568, 1569], + "conve", + "rt-source-map", + [2, 1571, 1572], + "-parser", + [2, 977, 1574], + "cookie-", + "session", + [2, 1576, 1577], + "cookie-s", + "ignature", + [2, 1579, 1580], + "copy-to-clipboard", + "copy-", + [2, 1583, 1464], + "copy", + "files", + "copyfiles", + "corcojs-qrcode", + "-logo", + [2, 1588, 1589], + "cordova", + "-js", + "core-js", + "cors", + "cosmiconfig", + "coveralls", + "cpy-cli", + "crawler", + "crc", + "create-hash", + "create-", + "react-class", + [2, 1601, 1602], + "critical", + "cron", + "croner", + "emoji-js", + "cronnor", + "cropperjs", + "cross-env", + "cross-", + "fetch", + "cross-fetch", + "spawn", + "cross-spawn", + "crypto", + "-browserify", + [2, 1616, 1617], + "crypto-", + "crypto-js", + "cson-parser", + "cspell", + "css", + "css-declaration-sorter", + "css-", + "functions-list", + [2, 1625, 1626], + "css-loader", + "minimizer-webpack-plugin", + [2, 1625, 1629], + "select", + "css-select", + "tree", + "css-tree", + "cssdb", + "cssesc", + "cssnano", + "cssstyle", + "csstype", + "csurf", + "csv", + "csv-generate", + "csv-", + "parse", + "csv-parse", + "stringify", + [2, 1643, 1646], + "csvtojson", + "cucumber", + "cuid", + "cypress", + "cz-conventional-changelog", + "d3", + "d3-array", + "d3-scale", + "d3-s", + "election", + [2, 1656, 1657], + "hape", + "d3-shape", + "dable-effect", + "daisyui", + "dance-you-thou", + "dargs", + "datafire", + "date", + "mercurius", + "date-fns", + "form", + "unbundle", + "format", + "dateformat", + "dayjs", + "deasync", + "debounce", + "debug", + "decamelize", + "@pinia/testing", + "decompress", + "dedent", + "dedupe", + "deep-assign", + "deep-", + "ist-ability3", + [2, 1554, 1684], + [2, 1683, 1685], + "diff", + "deep-diff", + "remeda", + "deep-eql", + "@nuxt/ui", + "input-otp", + "deep-equal", + "@assistant-ui/react", + "xtend", + "deep-extend", + "deep", + "merge", + "deepmerge", + "del", + "del-cli", + "delay", + "depcheck", + "depd", + "dependency-check", + "depth-clay-tax7", + "detect-indent", + "detect-", + "port", + "detect-port", + "did-enter-lay", + "2html", + "diff2html", + "erence-mile-pocket5", + [2, 1687, 1714], + "direct", + "ed-graph-typed", + [2, 1716, 1717], + "dirty-chai", + "discord-backend-manager", + "discord", + ".js", + "discord.js", + "dist", + "ance-its-clear-rate", + [2, 1724, 1725], + "dmd", + "dmd-grunt-jsdoc2md", + "dnd-multi-backend", + "dnode", + "doc-detective", + "-core", + [2, 1731, 1732], + "docco", + "docgen", + "dockerode", + "docpad", + "docschema", + "docs", + "ify-tabs", + [2, 1739, 1740], + "doctoc", + "docu", + "mentation", + [2, 1743, 1744], + "document", + "db", + "documentdb", + "-lunr-search", + [2, 467, 1749], + "dom-helpers", + "dom-", + "serializer", + [2, 1752, 1753], + "to-image-more", + [2, 1752, 1755], + "dompurify", + "dot", + "dotenv", + "-exp", + [2, 26024, 1764, 1524], + "-expand", + [2, 1759, 1762], + "download", + "-git-repo", + [2, 1764, 1765], + "doxdox", + [2, 1767, 20], + "doxdox-c", + [2, 1769, 147], + "doxdox-", + "-dox", + [2, 57, 1772], + [2, 1771, 1773], + [3, 1774, 14], + "jsdoc", + [2, 1775, 1776], + "renderer-bootstrap", + [2, 1771, 1778], + [3, 1779, 16], + "json", + [2, 1780, 1781], + "markdown", + [2, 1780, 1783], + "draft-js", + "dropzone", + "dtslint", + "dubnium", + "dumi", + [2, 31436, 31494], + "dumi-cm", + "duplexer", + "dw-neit-antd", + "each", + "echarts", + "eclint", + "ejs", + "elasticsearch", + "elect", + "ricity-death-web3-story", + [2, 1799, 1800], + [2, 28004, 28078], + "on", + "electron", + "-builder", + [2, 1804, 1805], + [3, 1806, 9], + "packager", + [2, 1807, 1808], + [3, 1809, 10], + "rebuilt", + [2, 1810, 1811], + [3, 32493, 21], + [2, 28080, 31811], + "rebuilder", + [2, 1807, 1815], + "element-resize-detector", + "element-", + "element-ui", + "eleventy", + "elliptic", + "email-templates", + "email", + "emailjs", + "ember-cli", + "-babel", + [2, 1825, 1826], + [3, 1827, 10], + "htmlbars", + [2, 1828, 1829], + "emmet", + "emotion", + "encodeurl", + "end-of-stream", + "enhanced-resolve", + "enquirer", + "ent", + "enumtype", + "envify", + "envi", + "@lobehub/chat", + "envinfo", + "enzyme", + "-adapter-react-16", + [2, 1843, 1844], + [3, 1845, 15], + [2, 1846, 594], + "enzyme-", + "shallow-equal", + [2, 1848, 1849], + "error", + "handler", + [2, 1851, 1852], + "es-check", + "es-value-fixtures", + "es5-ext", + "@upstash/context7-mcp", + "shim", + "es5-shim", + "es6-error", + "es6-", + "promise", + "es6-promise", + [3, 1863, 10], + [2, 1864, 1289], + "es6-shim", + "escape", + "-html", + "escape-html", + "escape-", + "string", + "-regexp", + [2, 1871, 1872], + [2, 1870, 1873], + "escodegen", + [3, 67, 7], + "-airbnb", + [2, 1541, 1877], + [2, 1876, 1878], + "-base", + [2, 1879, 1880], + [3, 1881, 21], + [2, 1882, 91], + [3, 1879, 14], + "google", + [2, 1884, 1885], + [3, 1886, 15], + "ulp", + [2, 1887, 1888], + "oclif", + [2, 1884, 1890], + "-typescript", + [2, 1891, 1892], + "prettier", + [2, 1884, 1894], + "app", + "react-app", + [2, 1884, 1897], + "semistandard", + [2, 1884, 1899], + [3, 1900, 15], + "tandard", + [2, 1901, 1902], + "unjs", + [2, 1884, 1904], + "xo", + [2, 1884, 1906], + "-lass", + [2, 1907, 1908], + "doc-", + [2, 1910, 1179], + [2, 1876, 1911], + "-resolver-typescript", + [2, 1204, 1913], + [2, 1876, 1914], + [2, 1876, 1194], + [3, 67, 8], + [2, 32825, 32833], + "lugin-ava", + [2, 1917, 1919], + [3, 1920, 14], + [2, 1921, 1172], + "compat", + [2, 1921, 1923], + "es5", + [2, 1921, 1925], + [3, 1926, 16], + "-comments", + [2, 671, 1928], + [2, 1927, 1929], + [3, 1930, 21], + "plugin", + [2, 1931, 1932], + "flowtype", + [2, 1921, 1934], + "html", + [2, 1921, 1936], + [2, 1921, 1204], + [2, 1921, 1192], + [3, 1939, 15], + "sdoc", + [2, 1940, 1941], + [3, 1942, 16], + "onc", + [2, 1943, 1944], + "x-a11y", + [2, 1943, 1946], + [2, 1921, 1783], + [3, 1948, 15], + "ocha", + [2, 1949, 1950], + "n", + [2, 1921, 1952], + [2, 1953, 681], + [2, 1921, 1894], + [3, 1955, 16], + "omise", + [2, 1956, 1957], + [2, 1921, 89], + "-hooks", + [2, 1959, 1960], + [3, 1959, 16], + "gexp", + [2, 1962, 1963], + "security", + [2, 1921, 1965], + [3, 1966, 15], + "onarjs", + [2, 1967, 1968], + [2, 1967, 1902], + "velte", + [2, 1967, 1971], + "test", + "ing-library", + [2, 1973, 1974], + [2, 1921, 1975], + [3, 1976, 15], + [2, 1977, 1941], + [2, 26374, 26377], + [2, 30307, 5592], + "unicorn", + [2, 1921, 1981], + "vite", + "vitest", + [2, 1921, 1984], + [3, 1985, 15], + "ue", + [2, 1986, 1987], + "remo", + "te-tester", + [2, 1989, 1990], + [2, 1876, 1991], + "scope", + [2, 1876, 1993], + "visitor-keys", + [2, 1876, 1995], + "rc", + "eslintrc", + "esm", + "espree", + "@architect/asap", + "ima", + "esprima", + "estraverse", + "estr", + "ee-walker", + [2, 2005, 2006], + "ethereumjs-tx", + [3, 2008, 11], + [2, 2009, 614], + "evalmd", + "event-stream", + "event", + "emitter2", + [2, 2013, 2014], + [3, 2015, 12], + [2, 2016, 1278], + "events", + "excellent-difficult-good", + "execa", + "exit", + "expect", + "-type", + "expect-type", + "expect.js", + "express", + "-adexe", + [2, 2026, 2027], + [3, 2028, 9], + "utodoc", + [2, 2029, 2030], + "express-", + [2, 2032, 1179], + "handle", + "canvaskit-wasm", + "handlebars", + [2, 2032, 2036], + "jwt", + "express-jwt", + [2, 2032, 1577], + "tools", + [2, 2032, 2041], + [3, 2042, 9], + "yped-rpc", + [2, 2043, 2044], + [2, 2032, 1155], + "zod-api", + [2, 2032, 2047], + "@crxjs/vite-plugin", + [2, 32904, 37123], + "extend", + "-shallow", + [2, 2051, 2052], + "extract-text-webpack-plugin", + "extract-", + "zip", + "extract-zip", + "facing-cook", + "fair-tower-web3-store", + "faker", + "fancy-log", + "fast", + "-check", + "fast-check", + [2, 32904, 13392], + "@antora/cli", + "fast-csv", + "fast-", + [2, 2068, 1693], + "glob", + "fast-glob", + "plist", + "fast-plist", + "xml-parser", + [2, 2068, 2074], + "click", + "fastclick", + "fastify", + "father", + "faucet", + "fbjs", + "fe-pilot", + "feature-rising-small7", + "femo", + "-mock", + "fetch-mock", + "fibers", + "figlet", + "figures", + "file", + "-loader", + "file-loader", + "file-", + [2, 29611, 7436, 26391], + "file-saver", + "file-type", + "planck", + "filesize", + "finalhandler", + "find", + "-cache-dir", + [2, 2100, 2101], + "find-", + "up", + "find-up", + "syncpack", + "findup-sync", + "firan-logging", + "firebase", + "-admin", + [2, 2109, 2110], + [3, 2111, 9], + [2, 2112, 2041], + "fixpack", + [2, 2120, 1145], + "fixturify", + "flat", + "pak-bundler", + [2, 2117, 2118], + [3, 639, 13], + [2, 2125, 23], + "flatpickr", + "flightplan", + "flow", + [3, 639, 15], + "flow-bin", + "@date-vir/duration", + "flowbite", + "fluent-ffmpeg", + "flux", + "follow-redirects", + "font-awesome", + "for-each", + "forever", + "fork-ts-checker-webpack-plugin", + "-alt", + [2, 2135, 2136], + "-data", + "form-data", + "nolyfill", + "formidable", + [2, 13402, 31197], + "k", + "formik", + "fresh", + "-dangerous", + [2, 2145, 2146], + "friendly-errors-webpack-plugin", + "front-matter", + "fs", + "fs-extra", + "fs-jetpack", + "fs-promise", + "fsevents", + "fstream", + "ftp", + [3, 1626, 10], + "have-names", + [2, 2157, 2158], + "fur-race-web3-pale", + "fuse.js", + "futen", + "fuzzy", + "gaze", + "gc-signals", + "-angular", + [2, 1179, 2166], + [3, 2167, 10], + "gulp-angular", + [2, 2168, 2169], + "nitro", + [2, 2168, 2171], + "gener", + "ic-pool", + [2, 2173, 2174], + "gensequence", + "gentle-party-other", + "geolib", + "get-package-type", + [2, 2181, 668], + [3, 15376, 16], + "get-port", + "get-", + "stdin", + "get-stdin", + "@c15t/backend", + "ream", + "get-stream", + "execute-in-browser", + "tsconfig", + [2, 2183, 2190], + "getmac", + "gh-pages", + "ghooks", + "github", + "-buttons", + [2, 2195, 2196], + [2, 11941, 2201], + "-parent", + "glob-parent", + "smart-text-reporter", + "global", + "globals", + "by", + "globby", + "gm", + "gmll", + "-spreadsheet", + [2, 1885, 2208], + "apis", + "googleapis", + "got", + "government-letter-web3-till", + "govuk-frontend", + "graceful-fs", + "gradually-current-chief", + "graph-these", + "graph", + [2, 25849, 25854], + "graphql", + "leaflet-gesture-handling", + "graphql-tag", + [3, 2222, 9], + "ools", + [2, 2223, 2224], + "gray-matter", + "grpc", + "grunt", + "-templates", + [2, 2166, 2229], + [2, 2228, 2230], + "grunt-a", + "uto-release", + [2, 2232, 2233], + "grunt-", + [2, 2235, 1389], + "grunt-b", + "animejs", + "grunt-bump", + "grunt-cli", + "grunt-c", + "oncurrent", + [2, 2241, 2242], + [3, 2243, 9], + [2, 26107, 26938], + "trib-clean", + [2, 2244, 2246], + [3, 2247, 15], + "ompass", + [2, 2248, 2249], + [3, 2250, 16], + "ncat", + [2, 2251, 2252], + [3, 2253, 17], + "nect", + [2, 2254, 2255], + "py", + [2, 2251, 2257], + "sslint", + [2, 2248, 2259], + [3, 2260, 17], + "min", + [2, 2261, 2262], + [3, 2247, 14], + "htmlmin", + [2, 2264, 2265], + "imagemin", + [2, 2264, 2267], + [3, 2268, 15], + "nternal", + [2, 2269, 2270], + "jshint", + [2, 2264, 2272], + [2, 2264, 695], + "unit", + "nodeunit", + [2, 2264, 2276], + "sass", + [2, 2264, 2278], + "uglify", + [2, 2264, 2280], + "watch", + [2, 2264, 2282], + "ventional-changelog", + [2, 2244, 2284], + [3, 2285, 19], + "github-", + "releaser", + [2, 2287, 2288], + [2, 2286, 2289], + [2, 2235, 1177], + "jscs", + "grunt-jscs", + "grunt-js", + "doc", + "grunt-jsdoc", + "karma", + "grunt-karma", + "mocha-test", + [2, 2235, 2299], + "newer", + "grunt-newer", + "grunt-n", + "otify", + [2, 2303, 2304], + "pm", + "grunt-npm", + "grunt-sass", + "grunt-sa", + "ucelabs", + [2, 2309, 2310], + "grunt-s", + "augment", + "grunt-shell", + "imple-mocha", + [2, 2312, 2315], + "pritesmith", + [2, 2312, 2317], + "usemin", + [2, 2235, 2319], + "gts", + "guarapi", + "gulp", + [3, 2229, 9], + "cache", + [2, 2324, 2325], + [2, 2169, 2326], + "gulp-a", + "tom-electron", + [2, 2328, 2329], + "utoprefixer", + [2, 2328, 2331], + "wspublish", + [2, 2328, 2333], + "zure-storage", + [2, 2328, 2335], + "gulp-", + "gulp-babel", + "gulp-b", + "vir", + "gulp-bom", + [1, 2343, 2349], + [0, 4796, 4797, 4798, 4799], + "gulp-bower", + "rowserify", + [2, 2339, 2345], + "uffer", + "gulp-buffer", + [0, 2358, 2380, 2388, 2399], + "augment-vir", + "gulp-bump", + "gulp-cache", + "d", + "gulp-cached", + "gulp-c", + "hanged", + [2, 2355, 2356], + [0, 1673, 4484, 4809, 1461, 3744, 4804, 1282, 4805, 4806, 3028, 3911, 4812, 2609, 3849, 4023, 4808], + "gulp-clean", + "-css", + [2, 2359, 2360], + "@flmngr/flmngr-react", + "gulp-coffee", + "gulp-co", + "mpass", + [2, 2364, 2365], + "gulp-concat", + [2, 2367, 2360], + "gulp-con", + "flict", + [2, 2369, 2370], + [2, 2369, 2255], + "gulp-copy", + "sscomb", + [2, 2355, 2374], + "gulp-css", + [2, 2376, 671], + "nano", + [2, 2376, 2378], + [ + 0, 1499, 1797, 3135, 1429, 2070, 695, 2278, 1983, 1437, 2675, 4868, 2297, 2899, 89, 3875, 4193, 4747, 1843, + 1177, 1209, 3220, 3984, 4135, 4487, 4568, 1448, 1651, 668, 3561, 4474, 2924, 1169, 1457, 1859, 2151, 2720, 3183, + 3416, 1894, 4952, 4473, 4955, 4860, 2025, 4919, 3758, 4929, 3817, 3824, 4939, 4320, 4469, 4873, 1175, 1628, + 4937, 4941, 91, 53, 4856, 4865, 4874, 2900, 2990, 3105, 4925, 3876, 4869, 4880, 4892, 1165, 1178, 1195, 3008, + 3090, 3564, 3696, 3884, 4307, 4705, 692, 4855, 4863, 4870, 2925, 4931, 4891, 1257, 3613, 3618, 4940, 4330, 192, + 4864, 4866, 4907, 3816, 4934, 606, 4883, 4890, 1264, 4909, 4917, 3734, 3885, 4824, 4831, 4852, 4859, 4923, 4835, + 4884, 1268, 3107, 4681, 4840, 4875, 1959, 1978, 2923, 3904, 4820, 4827, 1030, 4895, 1272, 4913, 1938, 4817, + 4842, 1208, 4916, 2881, 1566, 32965, 1895, 1947, 1948, 2921, 4815, 4872, 4887, 1845, 3810, 3820, 4822, 4851, + 4912, 4922, 3591, 4829, 1011, 3584, 4889, 4927, 2054, 4949, 4849, 4946, 33009, 4882, 1255, 1198, 4897, 4879, + 1009, 1426, 4899, 4903, 61, 1233, 1570, 4906 + ], + "gulp-csso", + "data", + "gulp-data", + "gulp-eslint", + "include", + [2, 2093, 2385], + [2, 2337, 2386], + [0, 4957, 4959, 3286, 4627, 4960, 89, 4962, 4963, 4964, 4967], + "ter", + "gulp-filter", + "gulp-f", + "latmap", + [2, 2391, 2392], + [3, 2393, 9], + "ten", + [2, 2394, 2395], + "ormat-md", + [2, 2391, 2397], + 1772064000000, + "gulp-ftp", + [2, 2337, 2193], + [1, 2343, 2418], + "it", + "gulp-git", + "gulp-gzip", + [2, 2337, 2036], + "gulp-h", + "eader", + "gulp-header", + "tml-replace", + [2, 2407, 2410], + [3, 2411, 9], + [2, 2412, 2262], + "font", + "iconfont", + [2, 2337, 2415], + "gulp-i", + [0, 2431, 0, 2442, 2443], + "gulp-if", + "gnore", + "gulp-ignore", + "mage-resize", + [2, 2417, 2422], + [3, 2423, 10], + [2, 2424, 2262], + "nclude", + [2, 2417, 2426], + "gulp-in", + "ject", + "gulp-inject", + [0, 1091, 4094, 3530, 4227, 1092, 2858], + "line-css", + [2, 2428, 2432], + "stall", + [2, 2428, 2434], + [2, 2417, 1207], + "jade", + "gulp-jade", + "gulp-ja", + "smine", + [2, 2439, 2440], + [0, 4973, 4976, 1098, 364, 4977, 4978], + 1771804800000, + "gulp-jscs", + "gulp-js", + "hint", + "gulp-jshint", + "on-editor", + [2, 2445, 2448], + "gulp-less", + "gulp-l", + "ivereload", + [2, 2451, 2452], + "oad-plugins", + [2, 2451, 2454], + "mini", + [1, 2343, 2470], + "minify-css", + [2, 2337, 2458], + [3, 2459, 12], + [2, 2460, 1936], + "gulp-m", + "gulp-mocha", + "gulp-newer", + "gulp-n", + "g-annotate", + [2, 2465, 2466], + "odemon", + [2, 2465, 2468], + [0, 2471, 0, 2483, 34352], + [0, 3467, 4094, 2858, 3090, 4], + "gulp-notify", + "extra", + "extras", + [2, 1186, 2474], + [2, 2337, 2475], + "gulp-plu", + "mber", + [2, 2477, 2478], + "gulp-p", + "ostcss", + [2, 2480, 2481], + [0, 4973, 4976, 1098, 4986, 4988, 4977, 4989, 6, 4978, 1283, 4991], + "ocess", + "reprocess", + [2, 2480, 2485], + 1770508800000, + [1, 2343, 2497], + "gulp-prompt", + [2, 2337, 89], + "gulp-re", + "mote-src", + [2, 2491, 2492], + "gulp-rename", + "place", + [2, 2491, 2495], + [0, 2513, 0, 2514, 2523], + "gulp-rev", + "-replace", + [2, 2498, 2499], + "gulp-r", + "uby-sass", + [2, 2501, 2502], + "gulp-sass", + "gulp-s", + "gulp-sftp", + "gulp-shell", + "gulp-size", + "ourcemaps", + [2, 2505, 2509], + "trip-debug", + [2, 2505, 2511], + [0, 4484], + [0], + "gulp-stylus", + "vg-sprite", + [2, 2505, 2516], + "gulp-svg", + "gulp-svgmin", + [2, 2518, 1542], + [2, 2337, 1283], + "gulp-t", + 1771113600000, + "gulp-tsb", + "gulp-ts", + [2, 2525, 671], + "cript", + "ypescript", + [2, 2522, 2528], + "gulp-uglify", + [1, 2343, 2532], + [0, 2534, 0, 2535, 2537], + "gulp-uncss", + [0, 4484, 3493], + [0, 1098, 12, 4627, 5001, 837], + "gulp-usemin", + 1771718400000, + "ref", + "gulp-useref", + [1, 2343, 2561], + "gulp-util", + "vinyl-zip", + [2, 2337, 2542], + "gulp-watch", + "gulp-w", + "ebpack", + [2, 2545, 2546], + "gulp-web", + [2, 2548, 36], + "gulp-zip", + ".spritesmith", + [2, 2323, 2551], + "gzip-size", + "hallmark", + "hammerjs", + "hapi", + [2, 5323, 33498], + [2, 5340, 6374], + "happy-dom", + "happy-", + [0, 2513, 0, 2514, 2537], + "happy-meant", + "hard-cool-rhythm-continued", + "has-flag", + "has-", + "parts-ice-fact", + [2, 2565, 2566], + "symbols", + "has-symbols", + "hash-sum", + "hasown", + "hast-util-raw", + [3, 2572, 10], + "sanitize", + [2, 2573, 2574], + [3, 2575, 11], + [2, 2576, 1799], + "to-estree", + [2, 2573, 2578], + [3, 2579, 13], + [2, 2580, 1936], + "jsx-runtime", + [2, 2580, 2582], + [2, 2580, 1871], + "text", + [2, 2580, 2585], + "hast", + "hastscript", + "hay-against-any-hurry", + "hbs", + "he", + "heapdump", + "helmet", + "heroicons", + "hexlet-pairs", + "hexo", + "highland", + "highl", + "ight.js", + [2, 2598, 2599], + "hiredis", + "history", + "history-", + "brass-sound", + [2, 2603, 2604], + "hit-running-special8", + "hoek", + "hogan.js", + "hoist-non-react-statics", + "homebridge", + "hono", + "hope-slight-walk1", + "hosted-git-info", + "how-to-npm", + "-dom-parser", + [2, 1936, 2615], + "html-", + "attributes", + [2, 1818, 2618], + [2, 2617, 2619], + "html-e", + "ncoding-sniffer", + [2, 2621, 2622], + "html-en", + "tities", + [2, 2624, 2625], + "scaper", + [2, 2621, 2627], + "html-loader", + [1, 2343, 2647], + "ier", + "minifier", + [2, 2617, 2632], + "-terser", + [2, 2633, 2634], + "pdf", + "html-pdf", + [2, 1246, 57], + [2, 2617, 2638], + "tags", + "html-tags", + "html-t", + "o-image", + [2, 2642, 2643], + "html-to-", + [2, 2645, 2585], + [0, 2648, 2667, 2684, 2537], + [0, 4484, 4747, 4135, 1457, 53, 3951, 1573, 5012], + "validate", + [2, 2617, 2649], + [2, 2617, 1464], + "htmlnano", + "parser2", + "htmlparser2", + "http-", + "errors", + "http-errors", + "proxy", + "http-proxy", + "-agent", + [2, 2659, 2660], + [3, 2661, 11], + "middleware", + [2, 2662, 2663], + [2, 2655, 36], + "http-s", + [0, 91], + "http-status", + "-codes", + [2, 2668, 2669], + "https", + "xy-agent", + [2, 1452, 2672], + [2, 2671, 2673], + "husky", + "hyperquest", + "hyphenate-style-name", + "i", + "i18n", + "ext", + "i18next", + "-gridly-backend", + [2, 2681, 2682], + [0, 1098, 4643], + "iconv-lite", + "identity-obj-proxy", + "ignore", + [1, 2343, 2690], + "image-size", + [0, 2691, 0, 2514, 2443], + [0, 4484, 26364], + "imagemagick", + "-pngquant", + [2, 2267, 2693], + "imap", + "immer", + "immutability-helper", + [1, 2343, 2705], + "le", + "immutable", + "import-", + [2, 2701, 2145], + "local", + [2, 2701, 2703], + [0, 2513, 0, 2736, 34352], + "ess", + "impress", + "in-publish", + "indent-string", + "inert", + "inferno", + "inflection", + "inherits", + "ini", + "iniparser", + "ink", + "-style-parser", + [2, 134, 2717], + "innosetup-compiler", + "inquirer", + "-autocomplete-prompt", + [2, 2720, 2721], + "inside-throw", + "insta", + "gram-node", + [2, 2724, 2725], + "interpret", + "intl", + "-tel-input", + [2, 2728, 2729], + "invariant", + "inversify", + "ionic", + [2, 34017, 34020], + "ionicons", + [0, 1098, 29, 5027, 4963], + [1, 2343, 2773], + "ioredis", + "ip", + "irc", + "is", + "is-ci", + "is-glob", + "is-installed-globally", + "is-plain-obj", + "ect", + [2, 2745, 2746], + "is-p", + "otential-custom-element-name", + [2, 2748, 2749], + "romise", + "is-promise", + "is-stream", + "is-url", + "is-wsl", + "isarray", + "isobject", + "isomorphic-fetch", + "istanbul", + "itwcw-package-analytics", + "iview", + "jackspeak", + "jake", + "jarallax", + "jasmine", + [2, 2765, 1732], + "jasmine-", + [2, 2767, 202], + "jest-", + "canvas-mock", + [2, 2769, 2770], + "jest-c", + [0, 2513, 0, 2514, 2487], + "jest-cli", + [1, 2343, 2776], + [0, 2789, 0, 2514, 2537], + "jest-diff", + "ronment-jsdom", + [2, 1840, 2778], + [2, 2769, 2779], + "-fourteen", + [2, 2780, 2781], + [3, 2780, 17], + [2, 2783, 202], + "jest-e", + "xtended", + [2, 2785, 2786], + "html-re", + [0, 5038, 4484], + "porters", + [2, 2788, 2790], + [2, 2769, 2791], + "junit", + "jest-junit", + "pnp-resolver", + [2, 2769, 2795], + [2, 2769, 814], + "jest-util", + [1, 2343, 2803], + "-typeahead", + [2, 2282, 2800], + [2, 2769, 2801], + [0, 2513, 2804, 2815, 2399], + [0, 2734], + "jest-worker", + "jimp", + "jiti", + "jodit", + "-react", + "jodit-react", + "johnny-five", + "joi", + "jotai", + "jquery", + [0, 1098, 38], + "jquery-ui", + "js-base64", + [1, 2343, 2819], + [0, 2830, 2836, 2837, 2523], + "js-beautify", + "js-cookie", + "js-yaml", + "jsarch", + "jscpd", + "-api", + "jsdoc-api", + "jsdoc-", + "to-markdown", + [2, 2827, 2828], + [0, 1673, 3789, 1461, 1282, 5060, 5071, 6476, 5057, 5059, 5062, 5065, 5049, 5050, 5069, 5047], + "m", + "jsdom", + "-no-contextify", + [2, 2832, 2833], + "jsesc", + [ + 0, 1114, 2070, 1192, 89, 1177, 4487, 5098, 4468, 3213, 1610, 5102, 3824, 1193, 5100, 3697, 3846, 91, 53, 5087, + 2990, 5125, 4880, 1178, 1540, 3857, 97, 5123, 5076, 5090, 5091, 5094, 5108, 5113, 3904, 5106, 5121, 5097, 5084, + 6498, 3810, 5115, 5082, 1011, 971, 5110, 5085, 5075, 5118, 5103, 5079 + ], + [0, 5127, 4964, 89, 5128, 4627, 4963, 181, 5130, 4967, 5131, 5133], + "-stylish", + [2, 2272, 2838], + [1, 2343, 2868], + "json-2-csv", + "json-", + "json-loader", + [3, 6, 6], + "json-schema", + "json-s", + "erver", + "json-server", + "-stringify", + [2, 176, 2849], + [2, 2846, 2850], + "json-st", + "ringify-safe", + [2, 2852, 2853], + "5", + "json5", + "c-parser", + [2, 1781, 2857], + "jsonfile", + "jsonschema", + "JSONStream", + "webtoken", + [2, 1781, 2862], + "jspm", + "jstates", + "jszip", + "jwt-decode", + [0, 2884, 2901, 2938, 2537], + "simple", + "jwt-simple", + [2, 2297, 1617], + [3, 2871, 13], + "stack", + "-launcher", + [2, 2873, 2874], + [2, 2872, 2875], + "karma-", + "karma-chai", + "karma-ch", + "rome-launcher", + [2, 2879, 2880], + "karma-c", + "over", + [0, 3021], + "overage", + [2, 2882, 2885], + "browsers", + [2, 1708, 2887], + [2, 2877, 2888], + "edge-launcher", + [2, 2877, 2890], + "fire", + "fox-launcher", + [2, 2892, 2893], + [2, 2877, 2894], + "ie-launcher", + [2, 2877, 2896], + [2, 2877, 2765], + "mocha", + "karma-mocha", + [0, 1114, 89, 2079, 3824, 91, 4880, 5139, 4883], + "orter", + "-reporter", + [2, 2900, 2903], + "phantomjs-launcher", + [2, 2877, 2905], + "qunit", + "karma-qunit", + "rollup-preprocessor", + [2, 2877, 2909], + "safari-launcher", + [2, 2877, 2911], + "karma-sa", + "uce-launcher", + [2, 2913, 2914], + "karma-s", + "inon", + "karma-sinon", + "ourcemap", + [2, 2919, 2091], + [2, 2916, 2920], + "pec-reporter", + [2, 2916, 2922], + "webpack", + [2, 2877, 2924], + "keycode", + "keypress", + "keyv", + "kleur", + "knex", + "knip", + "known-css-properties", + "knox", + "koa", + "koa-body", + [2, 2935, 57], + "koa-", + [0, 5127, 4964, 4653, 1114, 4627, 4963, 5130, 4967, 89, 5128, 181], + [1, 2343, 2974], + "compose", + "koa-compose", + "logger", + "koa-logger", + "mount", + "koa-mount", + [2, 2937, 38], + "static", + "koa-static", + "kue", + "label-lungs-court4", + "-perfe", + "ctly-blow-series", + [2, 2951, 2952], + [2, 1351, 2953], + "late-", + "dress-mail5", + [2, 2955, 2956], + "late", + "st-version", + [2, 2958, 2959], + "lazy.js", + "lead-alike-web3-applied", + "leaflet", + "left-pad", + "left", + "pad", + "leftpad", + "lerna", + [2, 695, 2091], + "level", + "down", + "leveldown", + "levelup", + [0, 2985, 2988, 3011, 2523], + "leven", + "libnpmdiff", + "libnpm", + "exec", + "libnpmexec", + "fund", + "libnpmfund", + "libphonenumber-js", + "liftoff", + "lilconfig", + [0, 1461, 5145, 5146], + "linkifyjs", + "lint-", + [0, 1114, 2070, 89, 2079, 3824, 91, 4880, 4883], + "staged", + "lint-staged", + "listr", + "listr2", + "lit-element", + "lite", + "-server", + "lite-server", + "live-server", + "live", + "reload", + "livereload", + "load", + "-grunt-config", + [2, 3001, 3002], + [3, 3003, 11], + "tasks", + [2, 3004, 3005], + "-utils", + [2, 1194, 3007], + "-web-server", + [2, 2703, 3009], + [0, 5127, 4964, 4653, 1114, 4627, 4963, 5130, 4967, 89, 5128, 181, 1017], + "localforage", + "tunnel", + "localtunnel", + "lock", + [1, 2343, 3017], + [0, 3075, 3100, 3104, 2537], + "file-lint", + [2, 3015, 3018], + "-es", + "lodash-es", + ".assign", + [2, 1209, 3022], + "lodash.", + [2, 3024, 1420], + "lodash.c", + "lonedeep", + [2, 3026, 3027], + [2, 3024, 1675], + [3, 3029, 9], + "faults", + [2, 3030, 3031], + "flatten", + [2, 3024, 3033], + "lodash.f", + "oreach", + [2, 3035, 3036], + "get", + "lodash.get", + "isempty", + [2, 3024, 3040], + [3, 3041, 10], + "qual", + [2, 3042, 3043], + [3, 3041, 9], + "function", + [2, 3045, 3046], + "object", + [2, 3045, 3048], + "plainobject", + [2, 3045, 3050], + [2, 3045, 1871], + "map", + "lodash.map", + "lodash.m", + "emoize", + [2, 3055, 3056], + [3, 3057, 9], + "rge", + [2, 3058, 3059], + "omit", + "lodash.omit", + "pick", + "lodash.pick", + "set", + "lodash.set", + [2, 3024, 1283], + "lodash.t", + "hrottle", + [2, 3068, 3069], + "uniq", + "lodash.uniq", + "log", + "log-symbols", + [0, 5154, 5152], + "update", + "log-update", + "log4js", + "loglevel", + "long", + "loopback", + "loose-envify", + "lowdb", + "lru-cache", + "lucide", + "luck-rubber-do", + "lwip", + "lws", + "madwizard", + "magic-string", + "magmastream", + "main-bower-files", + "make-dir", + "make-", + "make-node", + "mammoth", + "manifest", + "mantine-contextmenu", + "many-favorite6", + [0, 4484, 3709, 4508, 4355, 838, 5160, 5159, 4514, 5162, 840], + "stream", + "map-stream", + "mapboxgl-legend", + [0, 5165, 5166, 2038, 5167, 3424, 5168, 5170, 3709], + "markdown-it", + "-anchor", + [2, 3105, 3106], + [3, 3107, 12], + "cont", + [1, 2343, 3168], + "container", + [2, 3108, 3111], + "emoji", + [2, 3108, 3113], + [3, 3105, 9], + [2, 3115, 2636], + [2, 3115, 176], + [3, 3117, 10], + "o-jsx", + [2, 3118, 3119], + [3, 3120, 11], + "c", + [2, 3121, 3122], + [2, 1783, 671], + [2, 3124, 20], + "mark", + "marked", + "y-markdown", + [2, 3126, 3128], + "matcha", + [3, 558, 9], + [2, 3131, 181], + "mathjs", + "matter-view-web3-fence", + "md5", + "md5-file", + "mdast-util-from-markdown", + [3, 3137, 11], + "to-hast", + [2, 3138, 3139], + "mdn-data", + "mdxts", + "memcached", + "memfs", + "memoize-one", + "memo", + "ry-cache", + [2, 3146, 3147], + "memory-", + "memory-fs", + "memory", + [2, 3151, 3101], + "memwatch", + "menta", + "l-oxygen-dozen", + [2, 3154, 3155], + "meow", + "merge-", + [2, 3158, 3101], + "metalsmith", + "meteor", + "method-override", + "method", + "methods", + "microbundle", + "micro", + "micromark", + [0, 3169, 3179, 3182, 2537], + [0, 2070, 4207, 3093, 1525, 1573, 5175, 5180], + "micromatch", + "mime", + "-types", + "mime-types", + "min-heap-typed", + "-extract-plugin", + [2, 2360, 3175], + [2, 2456, 3176], + "minify", + [0, 4135, 53, 4865, 5185, 5191], + "atch", + "minimatch", + [0, 5193, 1172, 5194, 5197, 5198, 1173, 4643], + "minimist", + "-jet-printed-supper", + [2, 1504, 3184], + "missing-sport-living", + "mkcert", + "mkdirp", + "mlly", + "mobx", + "mobx-react", + "mocha-", + "head", + "less-", + "chrome", + "less-chrome", + [2, 3193, 3196], + [2, 3192, 3197], + [2, 2793, 2903], + [2, 3192, 3199], + "lcov-reporter", + [2, 3192, 3201], + "mock-fs", + "mock-", + "property", + [2, 3204, 3205], + [1, 2343, 3208], + [0, 3214, 3217, 2514, 2537], + "require", + [2, 3204, 3209], + "mock-stdin", + "mock", + "mockdate", + [0, 9673, 3527, 5279], + "mockery", + "mockjs", + [0, 5282, 4294, 5210], + [2, 3224, 3225], + "moleculer", + "moment", + "-timezone", + [2, 3220, 3221], + "monaco-yaml", + [3, 5838, 28], + "xp-modifiers", + "monads-io", + "ress", + "-express", + [2, 1550, 3228], + "mongodb", + "ose", + "mongoose", + "monitor", + "-dashboard", + [2, 3233, 3234], + "monk", + "morgan", + "motor-positive-spirit", + "move-wolf-throughout", + "movie-obtain-tail-prepare", + "mqtt", + "ms", + "mssql", + "msw", + "mud-slowly-five3", + "multer", + [1, 2343, 3248], + [0, 3252, 3269, 3272, 2537], + "multimatch", + "multi", + "part", + [0, 1676, 2856, 4135, 5233, 104, 58, 5228, 5230, 101, 5216, 51, 1573, 31292, 5226, 5222], + "multiparty", + "multip", + "le-cucumber-html-reporter", + [2, 3254, 3255], + "mustache", + "muuri", + "mysql", + "mysql2", + "mz", + "nails-wild-interest-garden", + "nan", + "nano-css", + "id", + "nanoid", + "-keymap", + [2, 970, 3267], + [0, 4494, 4039, 4474, 5245, 5254, 5251, 87, 92, 5235, 5180, 5244, 5240, 5241, 5191], + "nativefier", + [2, 970, 1508], + [0, 5193, 1172, 5256, 5257, 5194, 5258, 5259, 5260, 5197, 5198, 5261, 1175, 4643], + "natural", + "nconf", + "ncp", + "near-social-bridge", + "nedb", + "needle", + [1, 2343, 3280], + [0, 0, 3293, 2514, 2523], + "-commander", + [2, 678, 3281], + "newman", + "newrelic", + "next-auth", + "next", + "nextjs", + "ng-mocks", + "ng-zorro-antd", + "ngrok", + "nib", + "nightmare", + [0, 53], + "nightwatch", + "nine-yes-merely6", + "nise", + "nock", + "addon-api", + [2, 813, 3298], + "node-cache", + "node-c", + "ontainerpattern", + [2, 3301, 3302], + "dev", + "node-dev", + "node-d", + [1, 2343, 3311], + "node-dir", + "node-emoji", + "node-fetch", + [0, 3328, 3338, 3398, 2523], + "orge", + "node-forge", + "node-g", + "toolchain", + "node-gcm", + "eocoder", + [2, 3314, 3317], + "JSONC", + "arser", + "html-parser", + [2, 813, 3321], + "inspector", + [2, 813, 3323], + "JSX", + "mocks-http", + [2, 813, 3326], + [0, 104], + "notifier", + [2, 813, 3329], + "oauth2-server", + [2, 813, 3331], + "powertools", + [2, 813, 3333], + "node-p", + "re-gyp", + [2, 3335, 3336], + [0, 5282, 51, 5274, 5276, 5279, 5273], + "node-pty", + "node-re", + "node-red", + "node-sass", + "node-s", + "chedule", + [2, 3343, 3344], + "tatic", + "node-static", + "uuid", + "node-uuid", + "node-watch", + "node-w", + "indows", + [2, 3351, 3352], + "xlsx", + "node-xlsx", + ".extend", + [2, 202, 3356], + "git", + "nodegit", + "mailer", + "nodemailer", + "TSX", + "nodemon", + "webkit", + "nodewebkit", + "nolangjs", + "nomnom", + "nopt", + "normalize-path", + [3, 3369, 10], + [2, 3370, 1002], + "wheel", + [2, 3370, 3372], + [3, 3369, 9], + ".css", + [2, 3374, 3375], + "np", + "npm", + "npm-check", + "-updates", + [2, 3379, 3380], + "npm-", + "package", + "GraphQL", + "package-arg", + [2, 3382, 3385], + [3, 3386, 12], + [3, 4786, 24], + "json-lint", + [2, 3387, 3389], + "npm-pack", + "list", + [2, 3391, 3392], + "regist", + "ry-fetch", + [2, 3394, 3395], + [2, 3382, 3396], + [0, 1172, 5284, 57, 5285, 5286, 58], + "mc-scripts", + "npm-run-all", + [2, 3400, 1276], + "npm-run-", + "path", + [2, 3402, 3403], + [2, 556, 11398, 3902, 591], + "npm-to-yarn", + "windows-upgrade", + [2, 3382, 3407], + "npmcli", + "npmignore", + "npmlog", + "nprogress", + "nsp", + "nuke-cli", + "numeral", + "nunjucks", + "nvm", + "nvmrc", + "nwsapi", + "nx", + "nyc", + "oas", + "oas-normalize", + "oauth", + [3, 77, 7], + "assign", + [2, 3425, 3426], + "hash", + "object-hash", + "inspect", + [2, 3425, 3430], + "keys", + "object-keys", + "object-path", + [2, 3048, 3022], + "object.", + "entries", + [2, 3436, 3437], + "observe-food-motion-hidden", + "on-finished", + "once", + "onchange", + "one-how-hand", + "onoff", + "open", + "open-cli", + "api-c", + [1, 2343, 3454], + "lient-axios", + [2, 3447, 3449], + [2, 3445, 3450], + "openapi", + [2, 3452, 1712], + [0, 3457, 3464, 3465, 2537], + "opencv", + "opener", + [0, 5292, 56], + "openweather", + "opn", + "optimist", + "optimi", + "ze-css-assets-webpack-plugin", + [2, 3461, 3462], + [0, 53, 5295], + [0, 5297], + "optionator", + "ora", + "orchestrator", + "orm", + "osenv", + "outdent", + "outline-slowly", + "overlay", + "scrollbars", + [2, 3473, 3474], + "ovsx", + "p-event", + "p-map", + "p-queue", + "p-timeout", + "p23", + "pa11y", + "pacote", + "pageres", + "paintor", + "pako", + "para", + "para-cli", + "ent-js", + [2, 3488, 3489], + "llelshell", + [2, 3487, 3491], + "parse5", + "parseurl", + "passport", + [3, 1433, 9], + "facebook", + [2, 3496, 3497], + [2, 3496, 2703], + [2, 3496, 3424], + [2, 3500, 1276], + [2, 3403, 1617], + "path-", + "exists", + "path-exists", + "is-absolute", + [2, 3503, 3506], + "to-regexp", + [2, 3503, 3508], + "pathe", + "paypal-server-api", + "pdfjs", + "pdfkit", + "perf", + [1, 2343, 3516], + [0, 3538, 3546, 3581, 2523], + "ormance-now", + [2, 3514, 3517], + "pg", + "phantom", + [3, 2905, 9], + [3, 2905, 10], + "prebuilt", + [2, 3522, 3523], + "phonegap", + "pi-gpio", + "picocolors", + "pico", + "match", + "picomatch", + "pie-case-nor-great", + "pify", + "pino", + "pinst", + "pitch-somehow-earth-brave", + "pixelmatch", + "pkg-dir", + [ + 0, 5302, 1676, 2929, 5303, 4135, 2822, 4213, 1457, 18089, 2098, 5305, 3183, 3416, 3692, 5306, 3530, 27921, 2226, + 3105, 5312, 5314, 5319, 27482, 5320, 5321, 27512, 5323, 5328, 27513, 27514, 2557, 5332, 2558 + ], + "pkg-up", + "pkginfo", + "playwright", + "plugin-e", + "rror", + [2, 3542, 3543], + "plur", + [ + 0, 1414, 1166, 4494, 188, 4763, 2278, 89, 1177, 3127, 3721, 4039, 2203, 1894, 3824, 442, 91, 5307, 4874, 29549, + 27521, 19181, 5944, 9245, 30864, 3114, 27517, 27519, 5337, 25652, 1895, 27518, 30114, 5344 + ], + "pluralize", + "pm2", + "pngjs", + "pnp-", + [2, 3550, 1464], + "pnpm", + "pnpx", + "poe-api-manager", + "polished", + "poli", + "tical-plan-careful", + [2, 3556, 3557], + "popper.js", + "portfinder", + "postcss", + [3, 214, 8], + "calc", + [2, 3562, 3563], + [3, 3564, 9], + "postcss-cli", + "al-notation", + [2, 3046, 3567], + [2, 866, 3568], + [2, 3565, 3569], + [3, 3570, 13], + [2, 3571, 2262], + [3, 3570, 10], + "nvert-values", + [2, 3573, 3574], + "ssnext", + [2, 3565, 3576], + "ustom-media", + [2, 3565, 3578], + [3, 3579, 15], + [0, 5347, 5348, 5349, 1745, 5351, 5352, 5353, 5354, 1179, 5130, 1820, 5355, 1936, 1783, 5356, 3416], + "ies", + "properties", + [2, 3580, 3583], + [3, 219, 8], + "selectors", + [2, 3580, 3586], + "disc", + "ard-comments", + [2, 3588, 3589], + [2, 3562, 3590], + [3, 3591, 16], + [1, 2343, 3594], + [0, 0, 3596, 3601, 2537], + "es", + [0, 5517, 11976, 811, 816, 10615, 10817, 5366, 5364, 5087, 4874, 1317, 1413, 1192, 4042, 4057, 4468, 4484, 91], + "duplicates", + [2, 3592, 3597], + "empty", + [2, 3592, 3599], + [0, 1623, 57, 5374, 5376, 6892, 91, 31130, 31139, 31177, 3178, 1671, 7121], + "overridden", + [2, 3592, 3602], + "flexbugs-fixes", + [2, 3562, 3604], + [2, 3562, 1936], + [3, 214, 9], + "mage-", + "set-function", + [2, 3608, 3609], + [2, 3607, 3610], + [3, 3611, 10], + [2, 3612, 1709], + "load-", + "load-config", + [2, 3562, 3615], + [3, 3616, 12], + [2, 3617, 1524], + "hand", + "longhand", + [2, 3158, 3620], + [2, 3562, 3621], + [3, 3622, 14], + "rules", + [2, 3623, 3624], + [3, 3622, 9], + "inify-font-values", + [2, 3626, 3627], + [3, 3628, 15], + "grad", + [1, 2343, 3645], + "gradients", + [2, 3629, 3632], + "params", + [2, 3629, 3634], + [2, 3629, 3586], + "odules-local-by-default", + [2, 3626, 3637], + "nested", + [2, 3562, 3639], + [3, 3640, 12], + "ing", + [2, 3641, 3642], + [3, 3640, 9], + [0, 3654, 3655, 3690, 2537], + "ormalize", + [2, 3644, 3646], + "-charset", + [2, 3647, 3648], + [3, 3649, 18], + "positions", + [2, 3650, 3651], + [2, 3650, 1871], + [ + 0, 5381, 5383, 5387, 5391, 5393, 5394, 5397, 5400, 5402, 5405, 5408, 5411, 5414, 5416, 5419, 5423, 5425, 5430, + 5436, 2993, 5438 + ], + [ + 0, 5441, 5446, 5450, 5452, 5453, 5456, 5458, 5461, 5464, 192, 5467, 5470, 5473, 5474, 5476, 5478, 1177, 1895, + 2675, 2990, 4193, 91, 5480 + ], + "unicode", + [2, 3650, 3656], + [3, 3657, 19], + "rl", + [2, 3658, 3659], + "whitespace", + [2, 3650, 3661], + "ordered-values", + [2, 3562, 3663], + "prefix", + "-selector", + [2, 3665, 3666], + [2, 3562, 3667], + [3, 3668, 11], + "set-", + "set-env", + [2, 3669, 3671], + "reduce-initial", + [2, 3562, 3673], + "safe-parser", + [2, 3562, 3675], + [3, 3676, 9], + [2, 3677, 1623], + "or-parser", + [2, 1799, 3679], + [2, 3677, 3680], + "vgo", + [2, 3677, 3682], + "ue-selectors", + [2, 3071, 3684], + [2, 3562, 3685], + "value-parser", + [2, 3562, 3687], + "post", + [0, 5483, 1117, 1745, 5484], + "postgrejs", + "posthtml", + "pouchdb", + "power", + "-assert", + [2, 3694, 3695], + "pre-commit", + "preact", + "prepare-package", + "-plu", + "gin-jsdoc", + [2, 3700, 3701], + [2, 1894, 3702], + [3, 3703, 16], + "organize-imports", + [2, 3704, 3705], + "packagejson", + [2, 3704, 3707], + "svelte", + [2, 3704, 3709], + "prettierrc", + "prett", + "y-bytes", + [2, 3712, 3713], + "pretty-", + [2, 3715, 1851], + [2, 3715, 1671], + "pretty-ms", + "quick", + [2, 3715, 3719], + "pretty", + "prettyjson", + [1, 2343, 3728], + "prisma", + "prismjs", + "private-bower", + "proc-log", + [0, 3740, 0, 3748, 34352], + "process", + [3, 217, 8], + "-bar-webpack-plugin", + [2, 3730, 3731], + "-polyfill", + [2, 1862, 3733], + "s-aplus-tests", + [2, 1862, 3735], + "prom", + "o-server", + [2, 3737, 3738], + [0, 5497, 5498, 5502, 5504, 2222, 5506, 4484], + "prompt", + "prompts", + "prop", + "prop-types", + "-information", + [2, 3205, 3745], + "protobufjs", + [0, 5575, 2220, 89, 582, 5576, 2325], + [2, 38087, 27470], + "protractor", + "quire", + "proxyquire", + "publish-please", + "pug", + "pull-stream", + "pump", + "punycode", + "puppeteer", + "purgecss", + "q", + "qr-image", + "qrcode-terminal", + "qs", + "query-", + [2, 3764, 1871], + "query", + "querystring", + "queue", + "-typed", + "queue-typed", + "quill", + "-dom", + "qunit-dom", + "qunitjs", + "raf", + "ramda", + "random-words", + "random", + "randombytes", + [2, 3778, 1871], + "range-parser", + [1, 2343, 3785], + "raven", + "raw-body", + [0, 3796, 3806, 3823, 2487], + "raw-loader", + "rc-slider", + "rc-tooltip", + "rc-util", + "rcw-plugin", + "react-a", + "ddons-css-transition-group", + [2, 3791, 3792], + [3, 3793, 13], + "shallow-", + [0, 89, 4042, 3744, 53, 5582, 87, 4232, 90, 5583, 5589], + "compare", + [2, 3795, 3797], + [2, 3794, 3798], + "react-ap", + "ollo", + [2, 3800, 3801], + [2, 1897, 3733], + [2, 1246, 1367], + "react-c", + [0, 1192, 1177, 4468, 1610, 91, 5087, 4880, 2829, 1959, 1969, 1966], + "react-color", + "react-co", + "py-to-clipboard", + [2, 3808, 3809], + "picker", + "datepicker", + [2, 1246, 3812], + "react-d", + "ev-utils", + [2, 3814, 3815], + "react-dnd", + "5-backend", + [2, 1868, 3818], + [2, 3817, 3819], + "ocgen", + [2, 3814, 3821], + [0, 5593, 1745, 1179, 89, 4978, 1283], + "react-dom", + "ropzone", + [2, 3814, 3825], + "error-", + [2, 3827, 3473], + [2, 1246, 3828], + [2, 1246, 2593], + "react-h", + "ook-form", + [2, 3831, 3832], + "react-ho", + "t-loader", + [2, 3834, 3835], + [2, 1246, 2681], + "react-i", + "react-icons", + "nter", + "section-observer", + [2, 3840, 3841], + [2, 3838, 3842], + [1, 2343, 3851], + [2, 28573, 26849], + "react-intl", + "react-is", + "lifecycles-compat", + [2, 1246, 3848], + [2, 1246, 1783], + [0, 3859, 3873, 2514, 2399], + "odal", + "react-modal", + "react-mo", + "tion", + [2, 3854, 3855], + [2, 1246, 970], + "-key", + [0, 4135, 1996, 5598], + "-keychain", + [2, 3857, 3860], + [3, 3861, 13], + "vector-icons", + [2, 3862, 3863], + "react-n", + "umber-format", + [2, 3865, 3866], + "onclickoutside", + [2, 1246, 3868], + "react-p", + "roperty", + [2, 3870, 3871], + [0, 1680, 1177, 53, 5601, 1006, 4523, 5274, 5604], + "x", + "redux", + "react-redux", + "react-re", + [2, 3877, 2145], + [1, 2343, 3880], + [0, 3892, 3896, 3907, 2523], + "sponsive", + [2, 3877, 3881], + "react-r", + [2, 3883, 995], + [2, 3884, 3772], + [3, 3885, 13], + [2, 3886, 3875], + "scripts", + [2, 1246, 3888], + "react-s", + [2, 3890, 1799], + [0, 56, 5611, 5292], + "react-slick", + "tyleguidist", + [2, 3890, 3894], + [0, 53, 101, 5615, 5617, 5295, 5619], + "react-svg", + "tap-event-plugin", + [2, 1246, 3898], + "react-t", + "est-", + "renderer", + [2, 3901, 3902], + [2, 3900, 3903], + "oastify", + [2, 3900, 3905], + [0, 1172, 5297, 70], + [1, 2343, 3918], + "react-tools", + "ransition-group", + [2, 3900, 3910], + "virtualized", + [2, 1246, 3912], + "reactify", + "strap", + [2, 89, 3915], + "read", + [0, 3920, 3464, 3465, 2399], + "read-pkg", + [0, 56], + "read-pkg-up", + "able-stream", + [2, 3917, 3922], + "line", + "readline", + "-sync", + [2, 3925, 3926], + "recall-shut-say", + [1, 2343, 3933], + "recast", + "recently-building-save", + "rechoir", + [0, 3934, 3464, 3465, 2443], + [0, 56, 5631], + "recompose", + "recu", + "rsive-readdir", + [2, 3936, 3937], + "redoc", + "usaurus", + [2, 3939, 3940], + "-actions", + [2, 3875, 3942], + "redux-", + "redux-form", + [2, 3944, 2942], + "saga", + "redux-saga", + "thunk", + "redux-thunk", + "reflect-metadata", + [1, 2343, 3953], + [0, 3982, 3983, 3465, 2537], + "regenerate", + [3, 3954, 9], + "or-runtime", + [2, 3955, 3956], + "rehype", + "-auto", + "-headings", + [2, 163, 3960], + [2, 3959, 3961], + [2, 3958, 3962], + "rehype-", + [3, 1202, 9], + "links", + [2, 3965, 3966], + [2, 3964, 3967], + "mdx-code-props", + [2, 3964, 3969], + [2, 3964, 1644], + "raw", + "rehype-raw", + "slug", + "rehype-slug", + "rehype-s", + "tringify", + [2, 3976, 3977], + "release", + "release-it", + "remap-istanbul", + [0, 5637, 5222, 56, 5638, 5640], + [0, 53, 5295, 58], + "remark", + [2, 3984, 20], + "remark-", + "gfm", + "remark-gfm", + "remark-html", + "mermaidjs", + [2, 3986, 3990], + [2, 3986, 1644], + "remark-p", + [2, 1258, 2195], + [2, 3993, 3994], + [3, 3995, 14], + "wooorm", + [2, 3996, 3997], + [2, 3986, 3958], + "able", + "remarkable", + "replace-ext", + "replace-", + "in-file", + [2, 4003, 4004], + [1, 2343, 4011], + "-promise", + [2, 705, 4007], + "-native", + [2, 4008, 4009], + [0, 3920, 3293, 3465, 2523], + "require-all", + "require-", + "dir", + "require-dir", + [1, 2343, 4032], + "index", + [2, 3209, 4017], + "requirejs", + "rese", + "lect", + "reselect", + "resize-observer-polyfill", + "-from", + [2, 814, 4024], + "resolve-", + "url-loader", + [2, 4026, 4027], + "rest-chronicle", + "rest", + "restify", + [0, 4091, 4095, 3465, 2399], + "restler", + "ore-cursor", + [2, 4030, 4034], + "rethinkdb", + "rewire", + "rfdc", + "rimraf", + "robot", + "robotjs", + "rollup", + "rollup-p", + "lugin-babel", + [2, 4043, 4044], + [3, 4045, 15], + "uble", + [2, 4046, 4047], + [3, 4045, 14], + "clean", + "cleanup", + [2, 4049, 4051], + [3, 4052, 15], + "ommonjs", + [2, 4053, 4054], + "dts", + [2, 4049, 4056], + [2, 4049, 1781], + "license", + [2, 4049, 4059], + "builtin", + "builtins", + [2, 813, 4062], + [2, 4049, 4063], + [3, 4064, 19], + [2, 4065, 2203], + [2, 4065, 814], + "replace", + [2, 4049, 4068], + "sourcemaps", + [2, 4049, 4070], + "terser", + [2, 4049, 4072], + [3, 4073, 15], + [2, 4074, 2528], + [2, 4075, 1276], + [2, 4049, 2280], + "visualizer", + [2, 4049, 4078], + [3, 4045, 13], + [2, 4080, 594], + "route", + "routes", + "rsnext", + "rsvp", + "rtlcss", + "run-s", + "equence", + [2, 4087, 4088], + "@modern-js/utils", + [0, 4135, 56, 5652, 5656, 5658, 5660], + "run-series", + "rx", + "rxjs", + [0, 3093, 53, 5228, 97, 87, 5663, 5658, 5295], + [1, 2343, 4114], + "-compat", + "rxjs-compat", + "safe-", + "safe-buffer", + "safe-p", + "ublish-latest", + [2, 4101, 4102], + "sails", + "salt-type-oldest-faster", + "sand-have-metal6", + "-filename", + [2, 2574, 4107], + [3, 4108, 9], + [2, 4109, 1936], + "sass-loader", + "sat-local", + "sax", + [0, 4115, 4138, 2514, 4139], + [0, 1593, 3957], + "scheduler", + "-doc", + [2, 1119, 4117], + [2, 2844, 4118], + "schema-", + [2, 4120, 594], + "scien", + "ce-knowledge-truth", + [2, 4122, 4123], + "seblakhotspicy", + "secp256k1", + "seedrandom", + "sele", + "nium-webdriver", + [2, 4128, 4129], + "semantic-release", + [3, 4131, 9], + "ui-react", + [2, 4132, 4133], + "semver", + "seneca", + "sentiment", + [0, 1389, 1408, 5669, 4535], + 1772323200000, + "sequelize", + [3, 1753, 9], + "-javascript", + [2, 4141, 4142], + "serial", + "serialport", + "serve", + "-favicon", + [2, 4146, 4147], + "serve-", + "serve-index", + [2, 4149, 2947], + "-destroy", + [2, 36, 4152], + [1, 2343, 4194], + "less-finch", + [2, 36, 4155], + [3, 4156, 11], + "spy", + [2, 4157, 4158], + "sha1", + "shallow", + "equal", + [2, 4161, 4162], + "sharp", + "shell-quote", + "shell", + "shelljs", + "shinning-continued-becoming", + "shortid", + "should", + "showdown", + "shx", + "sick-typical-court7", + "signal-exit", + "simil", + "ar-cheese-loss", + [2, 4175, 4176], + "-ass", + "i-animation", + [2, 4178, 4179], + [2, 2869, 4180], + "simple-", + "simple-git", + "-web", + "-web3", + [2, 3742, 4185], + [2, 4182, 4186], + "single-spa", + "sink-mighty-orbit0", + "sink-", + "rod-lamp", + [2, 4190, 4191], + "sinon", + [0, 4197, 4198, 2514, 2537], + "-chai", + "sinon-chai", + [ + 0, 4135, 5867, 5637, 5866, 56, 5656, 5658, 5676, 5788, 5850, 5761, 5797, 5222, 5660, 5816, 5640, 5809, 5812, + 5838, 5769, 5793, 5823, 5852, 5756, 5766, 5790, 5856, 5863, 5712, 5715, 5771, 5778, 5842, 5741, 5743, 5830, + 5859, 5757, 5241, 5810, 3218, 5820, 5827, 5835, 5853, 5751, 5759, 5821, 5865, 5764, 5846, 5785, 5754, 5825, + 5862, 5782, 5700, 5749, 5806, 5832, 5818, 29299, 5800, 5813, 5678, 5685, 5694, 5690, 5776, 5688 + ], + [0, 53, 101, 5295], + "sinopia", + "sirv", + "size-limit", + "size", + [1, 2343, 4222], + "sizeitup", + "skapi-js", + "sky-buy-web3-rock", + "slash", + "slice-ansi", + "slow-deps", + "slow-", + "voice-spell-pass", + [2, 4210, 4211], + "slugify", + "small-grow-mix4", + "snake-seven-recall-interior", + "snazzy", + "soap", + "socket.io", + "-client", + [2, 4218, 4219], + "sock", + [0, 4240, 3464, 2514, 2537], + "js-client", + [2, 4221, 4223], + "source", + "-map", + "source-map", + [2, 4227, 1592], + [3, 4228, 11], + [2, 4229, 1194], + "support", + [2, 4229, 4231], + "space-separated-tokens", + "spectaql", + "speech-section-part-frozen", + "spirit-labor-cheese", + "split", + "split2", + "spring-dust-wall-size", + [0, 56, 5676, 5874, 5879, 5881, 5883], + [1, 2343, 4244], + "sprintf", + "sprintf-js", + [0, 4253, 3464, 4254, 4139], + "sprity", + "sqlite3", + "ssh2", + "ssri", + "st.db", + "stack-", + "trace", + "stack-trace", + [0, 4851, 56, 5676, 5889, 5241], + [0, 5891, 91], + "standard", + "-version", + [2, 4255, 4256], + "star-location", + "star", + "t-server-and-test", + [2, 4259, 4260], + "stat", + [1, 2343, 4265], + "statsd", + [0, 4269, 4281, 2514, 2537], + "statuses", + "stock-independent-balloon", + "stor", + [0, 5896, 3093, 5898, 2102, 4232], + "storybook", + "-django", + [2, 4270, 4271], + "stra", + "iforos-compodoc", + [2, 4273, 4274], + "nge-lady-riding9", + [2, 4273, 4276], + [2, 3101, 3695], + "stream-", + [2, 4279, 353], + [0, 1389, 53, 5743, 5241], + "streamii", + "strftime", + "string-", + "stri", + [1, 2343, 4297], + "strip-html", + [2, 4284, 4287], + "width", + [2, 4284, 4289], + "-entities", + [2, 1646, 4291], + "strip-", + "strip-ansi", + "bom", + "strip-bom", + [0, 0, 0, 2514, 2523], + "comments", + [2, 2842, 4298], + [2, 4293, 4299], + "strip", + "stripe", + "strongloop", + "-dictionary", + [2, 590, 4304], + "style-", + [2, 4306, 1194], + [1, 2343, 4313], + "style-to-js", + [3, 4309, 9], + [2, 4310, 3048], + "-comp", + [0, 4316, 0, 2514, 2523], + "-components", + [2, 369, 4314], + [0, 1593], + "styled-jsx", + "hacks", + "stylehacks", + "stylelint", + "-standard", + [2, 607, 4321], + [2, 4320, 4322], + [3, 4323, 10], + "declaration-strict-value", + [2, 4324, 4325], + "order", + [2, 4324, 4327], + "scss", + [2, 4324, 4329], + [1, 2343, 4336], + "us", + "stylus", + [2, 4333, 2091], + "sugar-policeman-entire", + [0, 4344, 3464, 2514, 2537], + "sugarss", + "sun-grass-circle0", + "superagent", + "super", + "superjson", + "supertest", + [2, 4342, 1430], + [0, 1676, 104, 58, 5230, 5216, 51, 30873], + "supervisor", + "-vessels-web3-vessels", + [2, 4231, 4346], + [1, 2343, 4356], + "lor", + "s-color", + [2, 4231, 4350], + "surrounded-characteristic-or-rain", + "svelte-", + "check", + [2, 4353, 4354], + [0, 4379, 4392, 2514, 2487], + "rocess", + "preprocess", + [2, 4353, 4358], + "svg-sprite", + "svgo", + "sw-precache-webpack-plugin", + "swagger-autogen", + "swagger-", + [2, 4364, 134], + "themes", + [2, 4364, 4366], + "ui-express", + [2, 4364, 4368], + "swam-darkness-weak", + "swig", + "swiper", + "sync-request", + "information", + [2, 623, 4374], + "systemjs", + "tail-iron-became5", + "tail", + [0, 5276, 5279], + "tailwind", + "-merge", + [2, 4380, 4381], + "tailwindcss", + "tap", + "tap-", + "spec", + "tap-spec", + "tapable", + "tape", + "tar", + "tar-fs", + [0, 58, 5216, 5274], + "tar-stream", + "tarant", + "-router-express", + [2, 3926, 4395], + [2, 4394, 4396], + "tdl", + "tdlib-native", + "tempy", + "terminal-kit", + [3, 4401, 9], + "menu", + [2, 4402, 4403], + "pack", + "-plugin", + "pack-plugin", + [2, 4184, 4407], + [2, 4072, 4408], + "cutting", + [2, 1382, 4410], + "snippets", + [2, 1382, 4412], + "cafe", + "testcafe", + "testc", + [1, 2343, 4422], + "ontainers", + [2, 4416, 4418], + "double", + "testdouble", + [0, 4424, 4429, 4442, 4139], + "testem", + [ + 0, 5923, 5927, 5930, 5931, 5934, 5935, 5936, 1512, 2075, 2088, 2070, 2822, 2832, 5941, 3105, 5944, 3107, 5946, + 5949, 3112, 26767, 5953, 5956, 5961, 3135, 3257, 5963, 5966, 3725, 3754, 3758, 5969, 5971, 3348, 5975, 4747 + ], + "text-table", + "three", + "throttle-debounce", + "thro", + [0, 4320, 5978, 4328], + "through", + "through2", + "w-did-darkness4", + [2, 4428, 4432], + "thunkify", + "tildify", + "time-grunt", + "tinper-bee", + "tiny-lr", + "tiny", + "bench", + "tinybench", + [0, 200, 1783, 5980, 3452, 5593, 5981, 5982, 5983, 1745, 1179], + "tinycolor2", + [1, 2343, 4458], + "tinymce", + "pool", + "tinypool", + "tinyspy", + "tmp", + "toastify-react-native", + "tocbot", + "toml", + "touch", + "tough-cookie", + "tracer", + "traffic-carry-opinion", + "train-stick-swept7", + [0, 4466, 4471, 4472, 2537], + "tree-kill", + "e-leaving-basket", + [2, 1333, 4460], + "trpc", + "trumpet", + "ts-cache-mongoose", + "ts-japi", + [0, 5990, 2212, 3220, 3747, 4715], + "est", + "ts-jest", + "ts-loader", + "ts-migrate-mongoose", + [0, 1596, 1177, 1895, 1903, 1938, 1954, 1955, 1958, 1970, 4255], + [0, 4709, 5993, 4714, 2942, 5995], + "ts-morph", + "ts-node", + "ts-patch-mongoose", + [1, 2343, 4485], + "ts-pnp", + "ts-rule-engine", + "-paths", + [2, 2190, 4479], + "tsd", + "tsd-lite", + "tshy", + "tslib", + [0, 4502, 4503, 2514, 2537], + "nt", + "tslint", + "-config-", + [2, 4488, 1894], + [2, 4487, 4489], + "tslint-", + [2, 4491, 89], + "tsup", + "tsx", + "turndown", + "tv4", + "tweetnacl", + "twemoji", + "twit", + "twitter", + "type-", + [ + 0, 6041, 4135, 1458, 6042, 1836, 2151, 6049, 3527, 1104, 6047, 4025, 6024, 6027, 6028, 6032, 6034, 6009, 6010, + 6025, 6037, 3749, 6007, 6039, 6022, 6003, 6031, 6017, 6006 + ], + [0, 3471, 6040, 4294, 5254], + "coverage", + [2, 4501, 4504], + [1, 2343, 4516], + "type-fest", + "typedoc", + "-material-theme", + [2, 4508, 4509], + "typedoc-", + [2, 4511, 2475], + [3, 4512, 15], + [2, 4513, 1783], + "typedocs", + [0, 4518, 4519, 4527, 2537], + "typegen", + [0, 6056, 6059, 449, 452, 456, 1461, 3744], + [ + 0, 48, 53, 61, 87, 90, 192, 5467, 5583, 811, 816, 6061, 6063, 6065, 1009, 1011, 1178, 1251, 6066, 1177, 1947, + 1959, 1961, 2675, 2990, 1894, 89, 3824, 4042, 6068, 4073, 4131, 91 + ], + "typegoose", + "typeorm", + "-eslint", + [2, 91, 4522], + [3, 4523, 11], + "formatter", + [2, 4524, 4525], + [0, 6070, 89, 6071, 181, 6073, 4963, 6074, 6077, 6080, 6081, 6082, 4967, 6083, 6084, 4298, 6085, 6086], + [1, 2343, 4544], + "css-modules", + [2, 1186, 4529], + [2, 4524, 4530], + "typings", + "uglify-es", + "uglify-", + "uglify-js", + "js-webpack-plugin", + [2, 2280, 4536], + "uid-safe", + "uiw", + "uj-apidoc-core", + "ulid", + "ultrahtml", + "unbuild", + [0, 4556, 0, 4557, 2537], + "underscore", + ".string", + [2, 4545, 4546], + "undici", + "unified", + "unique-", + "random-", + "array", + [2, 4551, 4552], + [2, 4550, 4553], + "unist-util-visit", + [0, 1459, 148, 185], + [0, 6092, 1459, 6094, 6096, 6098, 6100], + "untildify", + "unusual-rope", + "unzip", + "-notifier", + [2, 3076, 4561], + "urijs", + "url-", + "join", + "url-join", + "url-parse", + "urllib", + "user", + "user-", + "home", + "user-home", + [1, 2343, 4574], + [0, 4583, 0, 4642, 2487], + "agent", + "useragent", + "utf8", + [2, 594, 4381], + "uvu", + "valid", + "-url", + "valid-url", + [0, 27715, 4484], + "-commit-msg", + [2, 2649, 4584], + [3, 4585, 9], + [2, 3387, 1213], + [2, 4586, 4587], + "vant", + "vary", + "vasync", + "vercel", + "verror", + "vhost", + "victory-mouth", + "viewerjs", + "vinyl", + "vinyl-", + [2, 4598, 1398], + "vinyl-fs", + "source-", + [2, 4601, 3101], + [2, 4598, 4602], + [3, 4603, 12], + "maps-apply", + [2, 4604, 4605], + "virtual", + "virtual-dom", + [3, 839, 12], + "api-", + "api-routes", + [2, 4609, 4611], + "press", + "vitepress", + "vorpal", + "vows", + "vsce", + "vscode-debugprotocol", + "vscode-", + "nls-dev", + [2, 4619, 4620], + "mate", + "textmate", + [2, 4619, 4623], + "vue-", + "class-", + [3, 1533, 9], + [2, 4626, 4627], + [2, 4625, 4628], + [2, 4625, 67], + "hot-reload-api", + [2, 4625, 4631], + "vue-i18n", + "vue-loader", + [3, 3746, 9], + [3, 70, 9], + [2, 4635, 4636], + [2, 4625, 4637], + [2, 4625, 38], + [2, 4625, 4307], + [3, 1243, 9], + [0, 6105, 6106, 6038, 1936, 6108, 6110, 1098, 6111, 6112, 6113, 4627, 6092, 1459, 6094], + "compiler", + [2, 4641, 4643], + [2, 4625, 4644], + "vuex", + "walk", + "walk-sync", + "warning", + "watchify", + "waterline", + "wd", + "web3", + "web3-", + [1, 2343, 4668], + "web3-be", + "web3-c", + "apital", + [2, 4657, 4658], + [3, 42, 8], + "pass", + [2, 4660, 4661], + "eve-cli", + [2, 4654, 4663], + "web3-e", + "xactly6", + [2, 4665, 4666], + [0, 4672, 0, 4557, 2523], + "web3-fruit", + "webpack-", + "bundle-", + [0, 1459, 148, 187, 153, 180, 157], + [1, 2343, 4697], + "analyzer", + [2, 4671, 4674], + [2, 4670, 4675], + [2, 4670, 200], + "dev-middleware", + [2, 4670, 4678], + [3, 4679, 12], + [2, 4680, 36], + "hot-", + [2, 4682, 2663], + [2, 4670, 4683], + [2, 3097, 4406], + [2, 4670, 4685], + [3, 4686, 9], + "erge", + [2, 4687, 4688], + "node-e", + "xternals", + [2, 4690, 4691], + [2, 4670, 4692], + "sources", + [2, 4670, 4694], + "webshot", + [0, 4698, 0, 4557, 2523], + [0, 1459, 182, 148, 29468, 187, 153, 180], + "websocket", + [1, 2343, 4701], + [0, 4725, 0, 4557, 2537], + "webtorrent", + "webworker-threads", + "weinre", + "whatwg-fetch", + "when", + "which", + "winreg", + "winston", + "-daily-rotate-file", + [2, 4709, 4710], + "winston-", + "trans", + "transport", + [2, 4712, 4714], + "wiredep", + "word-wrap", + "word", + "wrap", + "wordwrap", + "work", + "box-webpack-plugin", + [2, 4721, 4722], + "world-toy-kill", + [0, 1459, 182, 148, 6127, 29468, 187, 180], + "wrap-ansi", + "wrench", + "write-file-atomic", + "ws", + "x-ray", + "xhr", + "xml-", + "xml-js", + "xml2js", + "xml2json", + "xmlbuilder", + "xmldom", + "xmlhttprequest", + "xpath", + "xregexp", + "xss", + "xstate", + [1, 2343, 4773], + "xterm", + "yaml", + "yamljs", + "yargs", + [2, 4747, 1574], + "yarn", + "pkg", + "yarnpkg", + "yarnrc", + "yauzl", + "yeoman-environment", + "yeoman-", + [2, 4755, 1179], + "yn", + "yo", + "yoctocolors-cjs", + "yonode", + "yosay", + "zmq", + "zod", + "zod-", + "chemas", + [2, 2666, 4765], + [2, 4764, 4766], + "zombie", + "zone.js", + "zuul", + [2, 667, 1651], + [2, 672, 4406], + [0, 4792, 0, 4801, 2523], + "@nx/jest", + [2, 667, 4270], + "framer-motion", + "teajusgula", + "@mui/s", + "tyle", + "d-engine", + [2, 4779, 4780], + [2, 4778, 4781], + "jsdoc-parse", + "@comm", + "ercetools-frontend/constants", + [2, 4784, 4785], + "shift", + "downshift", + [3, 3605, 9], + "ocus-visible", + [2, 4789, 4790], + [0, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 146, 6133, 111, 174], + [2, 3388, 4794, 4963], + [3, 18878, 12], + [3, 1705, 9], + [2, 4795, 3582], + "devDependencies", + "keywords", + "ts", + [2, 4837, 686], + [0, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130, 6148, 6092, 1459, 6094], + [3, 3, 7], + "field", + [2, 4802, 4803], + [2, 4802, 3473], + [2, 4802, 2649], + "@types/", + [2, 4807, 3911], + "big.js", + [3, 1849, 9], + "lement-equals", + [2, 4810, 4811], + [1, 2343, 4918], + "adaptor-generate", + [2, 4802, 4814], + [3, 4815, 15], + [2, 4816, 1383], + "@alifd/a", + "pi-extractor", + [2, 4818, 4819], + [2, 1262, 3286], + [2, 4802, 4821], + [2, 1910, 57], + [2, 4802, 4823], + "@alifd/d", + "ts-generator", + [2, 4825, 4826], + [2, 1884, 3286], + [2, 4802, 4828], + "meet-react", + [2, 4802, 4830], + "sass-", + "mapper", + "sass-mapper", + [2, 4802, 4834], + [3, 4835, 12], + [3, 4793, 38], + [2, 4867, 4924], + "tracker", + [2, 4836, 4839], + [3, 4835, 11], + [2, 4841, 4823], + "@alifd/s", + "lint-co", + "-next", + "nfig-next", + [2, 4844, 4846], + [2, 4779, 4847], + [2, 4843, 4848], + [3, 81, 21], + [2, 4850, 1219], + [2, 4807, 1175], + "@types/b", + "ig.js", + [2, 4853, 4854], + "@types/chai", + "@types/c", + "lassnames", + [2, 4857, 4858], + "@types/co", + "@types/e", + "nzyme", + [2, 4861, 4862], + [2, 4807, 2151], + "@types/glob", + [2, 4807, 2720], + [3, 4793, 25], + "jsonp", + [2, 4807, 4868], + [2, 4807, 1209], + ".clonedeep", + [2, 4870, 4871], + "@types/md5", + [2, 4807, 202], + [2, 4807, 3564], + [3, 4875, 16], + "ustom-", + [2, 4877, 3583], + [2, 4876, 4878], + [3, 4808, 12], + [3, 4808, 13], + [2, 4881, 1582], + [2, 4881, 965], + [2, 4881, 3875], + [3, 4884, 14], + "outer-dom", + [2, 4885, 4886], + [3, 4808, 14], + [2, 4888, 3903], + [2, 4807, 4320], + [2, 4807, 2924], + [2, 4807, 4747], + [3, 1203, 14], + "spower", + [2, 4893, 4894], + [2, 2168, 1894], + [2, 1199, 4896], + [3, 1245, 30], + [2, 4898, 3426], + "proto", + "-to-assign", + [2, 4900, 4901], + [2, 1226, 4902], + "displayname", + [2, 1861, 4904], + [2, 1249, 4905], + [2, 3195, 2874], + "e-polyfill", + [2, 1557, 4908], + "css-s", + "plit-webpack-plugin", + [2, 4910, 4911], + [2, 1863, 3733], + [3, 1924, 15], + "ypress", + [2, 4914, 4915], + [2, 2068, 4111], + [0, 4943, 0, 4801, 2537], + "html5shiv", + [3, 2925, 9], + "driver-launcher", + [2, 4920, 4921], + [2, 3108, 588], + "ssets", + "mochawesome", + "-package-importer", + [2, 3342, 4926], + [2, 3388, 16690, 4935], + "react-axe", + "ropper", + [2, 3805, 4930], + "react-dr", + "aggable", + [2, 4932, 4933], + "c-app", + "ve", + "react-live", + "true", + "sass-true", + "simulate-event", + "solarlunar", + [3, 4323, 17], + [0, 182, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 146, 6133, 111, 174], + [2, 4950, 4951], + "recommended", + [2, 4942, 4945], + [3, 4323, 11], + "sstree-validator", + [2, 4947, 4948], + [3, 662, 27], + "dev-authentication", + "ts-mocha", + [1, 2343, 4969], + [2, 4950, 4956], + "tsconfck", + [3, 25922, 13], + "fusion", + " design", + [2, 4957, 4958], + "ui toolkit", + "mponents", + [2, 3808, 4961], + "components", + "design", + "front", + "end", + "frontend", + [2, 4970, 4971], + [0, 4979, 0, 4983, 2537], + [3, 4786, 14], + "/http-user-agent", + [2, 31787, 4980], + "Angular CLI", + "Angular ", + "DevKit", + [2, 4974, 4975], + "devkit", + "sdk", + [0, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 146, 6158, 111, 174], + "cli-lib", + [2, 812, 2220], + "@svgr/babel-preset", + [0, 6148, 6092, 1459, 6094, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130], + "blue", + [2, 4807, 4676], + "blueprints", + " generation", + [2, 1501, 4987], + "scaffolding", + "tool", + "tooling", + [2, 1030, 4993], + "-swc", + [1, 2343, 4998], + [2, 5559, 705], + [2, 4997, 4999], + "moment-loca", + [0, 5003, 0, 4983, 4139], + [3, 8303, 18, 2], + "svg-url-loader", + "development", + "thread-loader", + [ + 0, 6164, 164, 167, 137, 159, 177, 162, 180, 157, 140, 6166, 171, 116, 150, 155, 122, 169, 119, 146, 111, 6168, + 174 + ], + [1, 2343, 5005], + [0, 5006, 0, 4983, 4139], + [0, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 6173, 146, 111, 174], + [1, 2343, 5008], + [0, 5011, 0, 4557, 2487], + [2, 4807, 4996], + [2, 6776, 1987], + [0, 6178, 1459, 16485, 182, 148, 29468, 159, 187, 153, 185, 146], + "@jridgewell/sourcemap-codec", + [1, 2343, 5014], + [0, 5015, 0, 4557, 2537], + [0, 1459, 182, 148, 29468, 159, 187], + [1, 2343, 5017], + [0, 5018, 0, 4557, 4139], + [0, 16485, 182, 148, 187, 153, 191], + [1, 2343, 5020], + [0, 5021, 0, 5022, 2487], + [0, 1459, 148, 187], + [0, 6092, 1459, 6094, 6192, 6100], + [1, 2343, 5024], + [0, 5025, 0, 5026, 2443], + [0, 16485, 182, 187, 153, 6200], + [0, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130, 6092, 1459, 6094, 6192, 6100], + [2, 29, 4958], + [1, 2343, 5029], + [0, 5030, 0, 4557, 4139], + [0, 1459, 148, 187, 185, 146], + [1, 2343, 5032], + [0, 5033, 0, 5026, 2399], + [0, 16485, 187], + [1, 2343, 5035], + [0, 5036, 0, 4557, 2537], + [0, 1459, 182, 148, 6215, 6127, 180, 143, 6217], + [1, 2343, 5039], + "xhr2", + [0, 5040, 0, 4557, 2399], + [0, 1459, 182, 148, 29468, 187, 153, 171], + [1, 2343, 5042], + [0, 5043, 0, 4557, 2523], + [0, 1459, 16485, 182, 148, 6215, 29468, 187, 153, 180, 185, 191, 143], + [1, 2343, 5045], + [0, 5046, 0, 4557, 4139], + [0, 1459, 182, 148, 167, 29468, 187, 153, 157], + "@bang88/react-native-ultimate-listview", + [3, 444, 19], + [2, 5048, 970], + "@rc-component/mini-decimal", + "@types/s", + [1, 2343, 5053], + [0, 5072, 0, 4557, 2443], + "hallowequal", + [2, 5051, 5054], + "with", + [2, 3023, 5056], + "css-color", + [2, 3370, 5058], + "rc-field-form", + "codegen", + [2, 3862, 5061], + [3, 5062, 15], + "llapsible", + [2, 5063, 5064], + "modal", + "-popover", + [2, 5066, 5067], + [2, 3862, 5068], + "ity-types", + [2, 614, 5070], + [0, 1459, 16485, 182, 148, 29468, 159, 187, 153, 180, 191, 143], + [2, 2809, 4009], + [2, 45, 5073], + [2, 41, 5074], + [2, 41, 2041], + "@rea", + "ct-native-community/eslint-config", + [2, 5077, 5078], + [3, 5079, 9], + "vigation/native", + [2, 5080, 5081], + [3, 5082, 18], + [2, 5083, 2873], + [2, 972, 4009], + "@types/j", + "@types/jest", + "@types/p", + "rop-types", + [2, 5088, 5089], + [2, 4881, 970], + [3, 1113, 11], + "palettes", + [2, 5092, 5093], + "-demo-data", + [2, 701, 5095], + [2, 1114, 5096], + "bisheng", + [1, 2343, 5101], + "enquire.js", + [0, 5126, 0, 4557, 2537], + "jsonml.js", + "metro-react-native-babel-preset", + [3, 3822, 9], + "ument-title", + [2, 5104, 5105], + [3, 2197, 13], + [2, 1246, 5107], + "gesture-handler", + [2, 3862, 5109], + [3, 5069, 15], + "cker", + [2, 5111, 5112], + "reanimated", + [2, 3862, 5114], + "area-context", + [2, 4099, 5116], + [2, 3862, 5117], + [3, 5118, 14], + "creens", + [2, 5119, 5120], + "web", + [2, 3862, 5122], + "shell-", + [2, 5124, 594], + [0, 1459, 182, 148, 6164, 6127, 29468, 187, 153, 180, 143], + "ant", + [3, 4962, 15], + "frame", + "framework", + "mobile", + " native", + [2, 89, 5132], + [1, 2343, 5135], + [0, 5136, 0, 4557, 2537], + [0, 1459, 182, 148, 6215, 29468, 187, 153, 180, 191, 143], + [1, 2343, 5138], + [0, 5140, 0, 4557, 2537], + [2, 4870, 3020], + [0, 182, 148, 29468, 187, 153], + [1, 2343, 5142], + [0, 5143, 0, 4557, 2487], + [0, 1459, 148, 153, 143], + [1, 2343, 5147], + [3, 5075, 17], + "@inline-svg-unique-id/react", + [0, 5148, 0, 5149, 4139], + [0, 27715], + [0, 6105, 6106, 6038, 1936, 6108, 6110, 89, 5128, 6092, 1459, 6094], + [1, 2343, 5151], + [0, 5163, 0, 4557, 2487], + [2, 3670, 1575], + [2, 5928, 5155], + "@auth/core", + "junit-xml-formatter", + "adapt", + "er-auto", + [2, 5156, 5157], + [2, 836, 5158], + [2, 836, 3383], + "et-cookie-parser", + [2, 5051, 5161], + [0, 1459, 16485, 182, 148, 29468, 187, 153, 191, 143], + "entication", + [2, 1303, 5164], + "authjs", + "sveltekit", + "oidc", + "wordless", + [2, 4661, 5169], + [1, 2343, 5172], + [0, 5173, 0, 4557, 2443], + [0, 16485, 148, 187, 153], + [1, 2343, 5177], + "fs-readdir-recursive", + [3, 5012, 12], + [0, 5181, 0, 5022, 2443], + "-mapping", + [2, 4251, 5178], + [2, 5176, 5179], + [0, 16485, 6268, 6271, 6272, 28829, 148, 29468, 187, 153, 15716], + [3, 4864, 10], + "dir-recursive", + [2, 3917, 5183], + [2, 5182, 5184], + [3, 56, 14], + "fixture", + "-test-runner", + [2, 5187, 5188], + [2, 1221, 5189], + [2, 5186, 5190], + [2, 5195, 5196], + "6to5", + "es6", + [3, 7710, 11], + "ut-extension", + "transpile", + "transpiler", + [1, 2343, 5201], + [2, 7623, 671], + [0, 5202, 0, 5022, 2443], + [0, 148, 187], + [1, 2343, 5205], + "ighlight", + [0, 5206, 0, 5022, 2537], + [0, 16485, 182], + "meta", + "-resolve", + [2, 5207, 5208], + [2, 2701, 5209], + [1, 2343, 5212], + [0, 5213, 0, 5214, 2537], + [0, 27715, 3021], + [0, 6105, 6106, 6038, 1936, 6108, 6110, 188, 6284, 6285, 6287, 6092, 1459, 6094], + "@ampproject/remapping", + [2, 54, 1179], + "compil", + "ation", + "-targets", + [2, 5218, 5219], + [2, 5217, 5220], + [2, 5186, 5221], + "module-", + [2, 353, 591], + [2, 5223, 5224], + [2, 5186, 5225], + [3, 56, 13], + [2, 5227, 591], + "emplate", + [2, 102, 5229], + [1, 2343, 5232], + [0, 5234, 0, 5022, 2537], + "gensync", + [0, 16485, 182, 148, 6127, 29468, 187, 153, 180], + [2, 4850, 2124], + [3, 83, 24], + "flow-", + [2, 4293, 553], + [2, 5237, 5238], + [2, 5236, 5239], + [2, 5236, 1239], + "nvert-", + [2, 5242, 4227], + [2, 4860, 5243], + [2, 4807, 1676], + "@types/g", + "ensync", + [2, 5246, 5247], + [3, 4808, 9], + "solve", + [2, 5249, 5250], + [3, 5162, 9], + "mver", + [2, 5252, 5253], + [1, 2343, 5262], + "classes", + "const", + "harmony", + "let", + "modules", + "var", + [0, 5263, 5264, 5265, 2523], + [0, 6297, 6298, 6301, 6302, 6303, 26379, 4747], + [0, 6306, 6307, 6498, 4874, 4892, 2151, 6476], + [0, 1566, 1529, 200], + [1, 2343, 5267], + [0, 5268, 0, 5269, 2523], + [ + 0, 7, 53, 5830, 87, 6316, 6318, 31736, 1364, 6320, 1448, 1457, 1512, 1525, 1595, 6323, 1866, 2061, 2071, 2151, + 2070, 2036, 2626, 2681, 2856, 1209, 3079, 6326, 6327, 3127, 3183, 5732, 6330, 6331, 3527, 23802, 3725, 4135, + 4200, 5969, 6334, 4473, 3348, 6335 + ], + [0, 6111, 1098, 1745, 4963, 1237, 2218, 4796, 1783], + [1, 2343, 5280], + [3, 5222, 15], + "heck-duplicate-nodes", + [2, 5271, 5272], + [2, 5186, 1182], + [2, 4284, 57], + [2, 5186, 5275], + "-identifier", + [2, 1155, 5277], + [2, 5186, 5278], + [0, 5283, 0, 5288, 2537], + "codes", + "charcodes", + [0, 6343, 2700], + "javascript", + "tc39", + "ecmascript", + "skia-canvas", + [0, 6345, 6346, 5130, 2018, 6347], + [1, 5293, 5296], + "@egjs/flicking", + "reate-class-features-plugin", + [2, 5271, 5291], + [0, 8389, 4799], + [3, 56, 21], + [2, 5294, 1187], + [0, 8391, 5298], + [3, 1198, 12], + 1732406400000, + [1, 5293, 5300], + [0, 8391, 5301], + 1733011200000, + "moo", + "luxon", + "hamljs", + "liquidjs", + "iso-639-1", + "@iarna/toml", + "-urls", + [2, 3692, 5308], + [3, 3938, 10], + [2, 5310, 1585], + "bcp-47-normalize", + [3, 1705, 11], + [2, 5313, 2218], + "@11ty/", + "lodash-", + "custom", + [2, 5316, 5317], + [2, 5315, 5318], + "please-upgrade-node", + [2, 62, 3007], + [2, 5313, 1633], + [2, 5315, 5322], + "@sin", + "dres", + "orhus/slugify", + [2, 5325, 5326], + [2, 5324, 5327], + [3, 5321, 15], + "dev-", + [2, 5330, 36], + [2, 5329, 5331], + [1, 2343, 5345], + "@vue/", + "server-", + [2, 5335, 3902], + [2, 5334, 5336], + "plugin-vue", + [2, 5329, 5338], + [3, 5339, 22], + "syntax", + [3, 2600, 9], + [2, 5341, 5342], + [2, 5340, 5343], + [0, 5350, 5358, 5359, 34352], + "-site-generator", + [2, 2947, 5346], + [3, 5347, 11], + "ssg", + [0, 2626], + "website", + "jekyll", + "blog", + "templates", + "11ty", + "liquid", + "haml", + [ + 0, 48, 53, 87, 37046, 6371, 27928, 6372, 5583, 811, 816, 6373, 11275, 1165, 1367, 6375, 6376, 1492, 1610, 1177, + 1907, 1937, 1938, 1982, 6379, 2203, 2205, 6382, 2626, 6383, 2739, 2765, 2814, 2297, 2876, 2881, 6385, 2889, + 2895, 2898, 6387, 2910, 3019, 3363, 3400, 3561, 3566, 6389, 4039, 4042, 6390, 21688, 4939, 4167, 4320, 6392, + 4072, 6393 + ], + [0, 1623, 2278, 6396, 6398, 6400, 5130, 5122], + [1, 2343, 5361], + [0, 0, 0, 5372, 2537], + "parcel", + "ytes", + [2, 4853, 5363], + "enchmark", + [2, 4853, 5365], + "@parcel/packager-ts", + "@parcel/", + "er-typescript-types", + [2, 353, 5369], + [2, 5368, 5370], + [0, 1623, 57], + [1, 2343, 5377], + "stringifier", + "heet", + "stylesheet", + [0, 0, 0, 5378, 2487], + [0, 1623, 207], + [1, 2343, 5380], + [0, 0, 0, 5426, 2537], + "@advanced-rest-client/arc-icons", + [3, 5381, 26], + [2, 5382, 3127], + [3, 5381, 22], + "-copy", + [2, 1492, 5385], + [2, 5384, 5386], + "-snippets", + [2, 1501, 5388], + [2, 2655, 5389], + [2, 5384, 5390], + [2, 3115, 592], + [2, 5384, 5392], + "@anypoint-web-components/anypoint-button", + [3, 5394, 34], + "collapse", + [2, 5395, 5396], + "drop", + "dropdown", + [2, 5395, 5399], + "item", + [2, 5395, 5401], + "box", + "listbox", + [2, 5395, 5404], + [3, 64, 17], + "mf-helper-mixin", + [2, 5406, 5407], + [3, 64, 20], + "annotation-document", + [2, 5409, 5410], + "body-", + [2, 5412, 1746], + [2, 5409, 5413], + "example-generator", + [2, 5409, 5415], + "ers-document", + [2, 3193, 5417], + [2, 5409, 5418], + "param", + "eters-document", + [2, 5420, 5421], + [2, 5409, 5422], + "responses-document", + [2, 5409, 5424], + [0, 1623, 6415, 57], + "umentation", + [2, 4117, 5427], + [2, 1965, 5428], + [2, 5409, 5429], + [3, 64, 16], + "method-", + "label", + [2, 5432, 5433], + [2, 2655, 5434], + [2, 5431, 5435], + [1, 2343, 5448], + "lit-html", + [2, 7623, 594], + "demo-helper", + [2, 5382, 5440], + "-aut", + "horization", + [2, 5442, 5443], + [2, 3424, 5444], + [2, 5384, 5445], + [3, 5397, 35], + [0, 5481, 0, 5485, 2537], + "heckbox", + [2, 5447, 5449], + [3, 5402, 35], + [2, 5451, 1020], + [2, 5395, 592], + [3, 64, 21], + "odel-generator", + [2, 5454, 5455], + "navigation", + [2, 5409, 5457], + [3, 5425, 22], + "quest", + [2, 5459, 5460], + [3, 5430, 22], + "rver-selector", + [2, 5462, 5463], + [3, 192, 13], + "onfig-conventional", + [2, 5465, 5466], + "@open", + "-wc/eslint-config", + [2, 5468, 5469], + [3, 5470, 9], + "testing", + [2, 5471, 5472], + "@web/dev-server", + "@web/", + [2, 5475, 1187], + "-playwright", + [2, 5476, 5477], + [2, 5438, 4406], + [2, 4524, 5479], + [0, 220, 3681], + "api-co", + [2, 5482, 4961], + [2, 5432, 1745], + [0, 1623, 2741, 6421, 6422, 3561, 6425, 6426, 3585], + [1, 2343, 5487], + [0, 5488, 0, 5492, 34352], + [0, 3688], + [3, 465, 9], + "typed", + [3, 5428, 9], + [0, 1623, 5317, 6433, 3561, 6425, 6434, 3583, 6435, 6436, 6437], + [1, 2343, 5503], + "-node/core", + [2, 5491, 5494], + [2, 5490, 5495], + [2, 5489, 5496], + "@wry/caches", + "@wry/", + "@hapi/eslint-plugin", + "equality", + [2, 5499, 5501], + [0, 0, 0, 5507, 2537], + "@wry/trie", + "optimis", + "optimism", + [0, 1623, 3681, 6443], + "response", + "-iterator", + [2, 5508, 5509], + "symbol", + "-observable", + [2, 5511, 5512], + "ts-invariant", + "zen-observable-ts", + [1, 2343, 5524], + "@arethetypeswrong/cli", + [3, 107, 13], + "hange", + "log-github", + [2, 5519, 5520], + [2, 5518, 5521], + [3, 5497, 10], + [0, 5538, 5539, 5543, 2523], + "ools/merge", + [2, 5523, 5525], + [3, 5526, 15], + [2, 5527, 2844], + [2, 5527, 594], + "@size-limit/esbuild-why", + [3, 5530, 12], + "pres", + "et-small-lib", + [2, 5532, 5533], + [2, 5531, 5534], + "@tsconfig/node20", + "@types/f", + [ + 0, 6450, 6452, 6453, 5930, 6455, 6457, 5153, 6463, 6465, 30874, 6467, 6470, 6471, 1437, 1483, 1525, 1676, 6473, + 2089, 2070, 6474, 2709, 2744, 2753, 6475, 3060, 6476, 5303, 3171, 3188, 3261, 3730, 27168, 4135, 6479, 4351, + 4507, 6481, 4745, 6482 + ], + [ + 0, 6487, 6488, 19438, 19181, 442, 603, 826, 4856, 5245, 6493, 6494, 4864, 6497, 6309, 6498, 6501, 6503, 6505, + 6507, 4874, 6510, 5254, 6512, 6515, 6519, 6520, 1009, 1011, 1429, 6522, 1509, 6525, 1719, 1177, 1938, 1953, + 1982, 2026, 2151, 6526, 2899, 3257, 3421, 1894, 6527, 4172, 4193, 4196, 6530, 4449, 4474, 4481, 4508, 91 + ], + [2, 4807, 2609], + "-fetch", + [2, 4874, 5541], + [0, 5472, 5982, 1649, 6532, 6533], + [1, 2343, 5548], + "use-sync-external-store", + [2, 4807, 5545], + "rule", + [0, 5549, 5553, 5565, 2537], + [0, 1415, 1437, 1468, 1483, 2151, 4468], + "rule-tester", + [2, 1010, 5550], + [2, 1010, 553], + [ + 0, 192, 5467, 4864, 4866, 5087, 6541, 6544, 6547, 1009, 1011, 1109, 1481, 1836, 1177, 1895, 1955, 2675, 1192, + 6551, 3165, 3203, 3403, 1894, 6552, 6554, 91 + ], + "local-", + "local-rules", + [2, 1921, 5555], + [3, 1961, 20], + [2, 5557, 4643], + "graphql-", + "graphql-ws", + "patch-package", + [3, 3829, 12], + "boundary", + [2, 5562, 5563], + [0, 6557, 1745], + [1, 5293, 5567], + [0, 8391, 5568], + 1730419200000, + "ts-api-utils", + [3, 1913, 9], + [2, 4468, 5570], + "wait-for-observables", + "web-streams-polyfill", + [1, 2343, 5577], + "apollo", + "client", + [0, 0, 0, 2514, 2537], + [1, 2343, 5579], + [0, 0, 0, 2514, 2487], + [1, 2343, 5590], + [3, 66, 10], + [2, 5581, 57], + [2, 812, 1172], + [3, 1217, 14], + "ource", + "-support", + [2, 4226, 5586], + [2, 5585, 5587], + [2, 5584, 5588], + [0, 0, 0, 2514, 2443], + [1, 2343, 5594], + "api", + "asyncapi", + [0, 5595, 5596, 5597, 4139], + [ + 0, 5192, 27292, 7605, 5439, 1437, 1448, 1623, 7606, 7608, 7610, 2822, 1209, 3105, 5946, 7612, 7617, 3124, 7621, + 29457, 4110, 4213, 4361, 11143 + ], + [ + 0, 7624, 5200, 7631, 7632, 7634, 7637, 4870, 7639, 7641, 4874, 7643, 7677, 23203, 1165, 668, 7645, 2600, 26503, + 7648, 3400, 3561, 3672, 2278, 26573, 91, 1984 + ], + [0, 1783, 7650, 1739, 7651, 1745, 4990, 2041, 1179], + "@nicolo-ribaudo/eslint-scope-5-internals", + [1, 2343, 5605], + [3, 1006, 9], + [2, 5600, 671], + "-manager", + [2, 1993, 5602], + [2, 1010, 5603], + [0, 5606, 5607, 5608, 34352], + [0, 4484, 4548, 7658, 7660, 7663, 7664, 7665, 7668, 7669], + [0, 4493, 7671, 1177, 1984, 1894, 1610, 91, 4874, 7672, 7674, 7677, 7678, 7681, 7685, 7690], + [0, 1721, 5592, 4030, 7692, 7693], + [3, 81, 22], + "ecorators", + [2, 5609, 5610], + [1, 2343, 5620], + [3, 1143, 16], + "concat", + [2, 5613, 5614], + "polyfill-es-shims", + [2, 1199, 5616], + "getownpropertydescriptors", + [2, 3436, 5618], + [0, 5621, 5622, 5623, 2537], + [0, 1525], + [0, 2899, 1894], + [0, 553, 4532, 1776, 605, 4508, 1739, 1745, 7701], + [1, 2343, 5626], + [2, 4850, 72], + [0, 5627, 5628, 5597, 2523], + [ + 0, 7708, 7709, 7710, 7715, 7718, 7721, 354, 7723, 7725, 4865, 7729, 7730, 1091, 1149, 1168, 7731, 1437, 1759, + 2075, 2070, 2600, 2628, 2670, 2822, 2854, 3173, 3181, 3322, 4167, 4183, 4213, 4393, 7734, 7735, 4648, 4747 + ], + [ + 0, 7737, 7740, 7744, 7637, 4870, 7746, 4874, 7749, 7752, 4892, 1009, 1011, 1178, 668, 1177, 1966, 2675, 2990, + 1209, 4468, 4474, 91 + ], + [1, 2343, 5632], + [3, 5625, 28], + [2, 5630, 75], + [0, 5633, 5634, 5597, 2487], + [0, 7605, 1437, 7608, 7610, 2822, 1209, 3105, 5946, 7612, 7615, 7617, 3124, 7621, 4110, 4213], + [ + 0, 53, 5241, 87, 7634, 5087, 7637, 4870, 7639, 7641, 7759, 4874, 7643, 7761, 7762, 7763, 1165, 1178, 668, 7645, + 1177, 1966, 2600, 1192, 7648, 3561, 3672, 1894, 3957, 4468, 91 + ], + [1, 5293, 5641], + "mpat-data", + [2, 52, 5636], + [2, 4850, 77], + [3, 5422, 10], + [2, 5236, 5639], + [0, 8391, 5642], + 1734825600000, + [1, 2343, 5644], + [0, 5645, 5646, 5647, 2537], + [ + 0, 5328, 842, 975, 7788, 1364, 1437, 1470, 1536, 7791, 2040, 2075, 2141, 7793, 7794, 2600, 2856, 3105, 5944, + 3107, 5946, 7796, 7797, 3322, 3742, 2278, 7798, 7799, 4227, 4228, 4232, 7800, 3709, 3348, 7801 + ], + [ + 0, 192, 5467, 6061, 6063, 7804, 7806, 7808, 7810, 4864, 7639, 7641, 4874, 7812, 7814, 7816, 7819, 7822, 1009, + 1011, 1414, 7824, 2151, 2675, 3758, 3951, 4131, 91 + ], + [0, 38, 5995, 27, 5130, 7826, 7827, 7828], + [1, 2343, 5649], + [0, 5654, 5661, 5664, 2399], + [3, 5226, 21], + "imports", + [2, 5650, 5651], + [3, 5617, 22], + [ + 0, 7833, 7837, 7839, 7840, 19344, 7847, 842, 7858, 1165, 1393, 1628, 1630, 1177, 1895, 1955, 1959, 1961, 2203, + 2675, 16860, 3177, 3561, 3618, 3678, 2278, 4111, 4307, 4320, 4323, 5978, 7873, 4409, 2924, 4677, 4686, 4689 + ], + "corejs2", + [2, 5653, 5655], + [3, 5656, 28], + [2, 5657, 1278], + [3, 3957, 11], + [2, 5653, 5659], + [0, 7849, 2990], + [3, 99, 21], + [2, 5662, 1278], + [0, 4967, 4329, 7880, 676, 6435, 1237, 7881], + [1, 2343, 5667], + "@edsdk/n1ed-react", + [0, 5668, 5670, 5671, 34352], + [0, 7639, 1429, 1437, 3025, 3105, 3467, 3718], + "derequire", + [0, 27134, 4856, 7889, 4874, 7895, 2675, 2990, 1894, 91, 1984], + [0, 1804, 1739, 1745, 5592, 91, 7897, 7900], + [1, 2343, 5673], + [0, 5703, 5705, 5708, 2523], + [3, 5279, 24], + "option", + [2, 5674, 5675], + "bugfix-firefox-class-in-computed-class-key", + [2, 79, 5677], + [3, 5678, 21], + "safari-", + "-initializer-scope", + [2, 4803, 5681], + [2, 4626, 5682], + [2, 5680, 5683], + [2, 5679, 5684], + [3, 5685, 28], + "id-destructuring-collision-in-function-expression", + [2, 5686, 5687], + "v8-spread-parameters-in-optional-chaining", + [2, 5679, 5689], + [3, 5690, 25], + "-class-fields-redefine-readonly", + [2, 3346, 5692], + [2, 5691, 5693], + "private-", + [3, 3746, 11], + "-object", + [2, 5696, 5697], + [2, 5695, 5698], + [2, 69, 5699], + "generators", + [2, 1152, 5701], + [0, 5652, 97, 7905, 7907, 7910, 7913, 1573, 1874, 7915, 4227, 7917], + [2, 4850, 1229], + [0, 53, 7922], + "static-", + [2, 5706, 1359], + [0, 592, 1832, 89, 1623, 7165], + "ions", + "assertions", + [2, 2701, 5710], + [2, 4850, 5711], + [3, 5712, 29], + "ttributes", + [2, 5713, 5714], + [3, 5712, 28], + [2, 5716, 5207], + [1, 2343, 5719], + [0, 5720, 5722, 5708, 2537], + [0, 362, 7931, 7910, 7932, 7933], + "logical-assignment-operators", + [0, 7935, 91], + [1, 2343, 5724], + [0, 5725, 5726, 2514, 2523], + [0, 97, 362, 7943, 7910, 7946, 7933], + [0, 7935, 7948, 89, 91], + [1, 2343, 5729], + "meric-separator", + [0, 0, 0, 2514, 4139], + [1, 2343, 5733], + "ptional-catch-binding", + "neotraverse", + [0, 5735, 5794, 5795, 2523], + "haining", + [0, 1996], + [2, 4850, 5699], + "top-level-await", + [2, 4850, 5737], + "-sets-regex", + [2, 3656, 5739], + [2, 4850, 5740], + "arrow-functions", + [2, 5236, 5742], + [3, 5743, 25], + "sync-", + [3, 1626, 9], + [2, 2168, 5746], + [2, 5745, 5747], + [2, 5744, 5748], + [3, 5749, 30], + [2, 5750, 1222], + "-scoped-functions", + [2, 1359, 5752], + [2, 5236, 5753], + [3, 5754, 34], + [2, 5755, 3642], + [2, 5236, 1229], + [3, 5757, 30], + [2, 5758, 5707], + [3, 5757, 29], + [2, 5760, 3595], + [3, 5757, 25], + "omputed-properties", + [2, 5762, 5763], + "destructuring", + [2, 5236, 5765], + [3, 5766, 25], + "otall-regex", + [2, 5767, 5768], + "uplicate-keys", + [2, 5767, 5770], + [3, 5771, 34], + "named-", + "capturing-groups-regex", + [2, 5773, 5774], + [2, 5772, 5775], + "ynamic-import", + [2, 5767, 5777], + "expo", + "nentiation-operator", + [2, 5779, 5780], + [2, 5236, 5781], + [3, 5782, 28], + "rt-namespace-from", + [2, 5783, 5784], + [3, 5240, 25], + "or-of", + [2, 5786, 5787], + "unction-name", + [2, 5786, 5789], + [3, 2854, 11], + [2, 5791, 591], + [2, 5236, 5792], + [ + 0, 1414, 2931, 2899, 8099, 1177, 3456, 4039, 4042, 4135, 8098, 1894, 4614, 91, 3401, 5601, 1006, 17529, 4057, + 5552, 4071, 1011, 8097 + ], + [0, 1177], + "literals", + [2, 5236, 5796], + [3, 5797, 25], + "ogical-assignment-operators", + [2, 5798, 5799], + [3, 5241, 25], + "ember-", + "ion-literals", + [2, 2026, 5803], + [2, 5802, 5804], + [2, 5801, 5805], + [3, 5241, 32], + "amd", + [2, 5807, 5808], + [2, 5807, 4376], + "umd", + [2, 5807, 5811], + [2, 5236, 5775], + [3, 5813, 25], + "ew-target", + [2, 5814, 5815], + "ullish-coalescing-operator", + [2, 5814, 5817], + [3, 5818, 26], + [2, 5819, 5728], + [2, 5236, 77], + [3, 5821, 31], + [2, 5822, 4340], + [3, 5821, 25], + [2, 5824, 5731], + [3, 5825, 34], + [2, 5826, 5734], + [3, 5640, 25], + "rivate-methods", + [2, 5828, 5829], + [3, 5830, 32], + [2, 5831, 5698], + [3, 5830, 26], + "operty-literals", + [2, 5833, 5834], + [3, 83, 25], + "egenerator", + [2, 5836, 5837], + [3, 5838, 26], + "d-words", + [2, 4146, 5840], + [2, 5839, 5841], + "short", + [2, 3619, 1228], + [2, 5843, 5844], + [2, 5236, 5845], + [3, 5846, 25], + [1, 2343, 5868], + "pread", + [2, 5847, 5849], + "ticky-regex", + [2, 5847, 5851], + [2, 5236, 1243], + [3, 5853, 25], + "ypeof-symbol", + [2, 5854, 5855], + "unicode-", + [2, 5857, 1106], + [2, 5236, 5858], + [3, 5859, 32], + [2, 4635, 1108], + [2, 5860, 5861], + [2, 5860, 1108], + "sets-regex", + [2, 5860, 5864], + [2, 88, 5260], + [2, 1593, 4097], + [0, 0, 0, 5869, 2523], + [0, 5284, 6939, 1177], + [1, 2343, 5871], + [0, 5872, 5884, 5885, 2537], + [ + 0, 8110, 1461, 8111, 1757, 2017, 8113, 6327, 8114, 3127, 3191, 8116, 3502, 8119, 3555, 3725, 3744, 8122, 4213, + 8123, 8126, 8127 + ], + "act-jsx", + [2, 5839, 5873], + [3, 5874, 30], + "display", + "-name", + [2, 5876, 5877], + [2, 5875, 5878], + "-development", + [2, 5874, 5880], + "pure-annotations", + [2, 5875, 5882], + [ + 0, 8129, 8130, 8132, 4856, 8136, 4863, 8139, 5087, 8141, 8144, 8146, 8147, 4874, 8149, 5090, 4880, 4883, 8152, + 8155, 4891, 8157, 4892, 1009, 1011, 8158, 1311, 1567, 1584, 1593, 1596, 1628, 1651, 1843, 8160, 8161, 1177, + 1938, 1959, 1961, 2135, 2651, 2675, 1192, 2822, 8163, 8165, 3190, 3471, 1894, 3720, 3775, 89, 3824, 3836, 4039, + 4167, 4201, 4307, 4315, 4468, 4474, 4484, 91, 8166, 1002, 2924, 4677, 4681, 4693 + ], + [0, 8168, 8170, 8171, 6975, 8172, 8173, 1745, 8175], + [1, 2343, 5887], + [0, 5890, 5892, 5893, 2537], + [3, 5856, 28], + [2, 5888, 1508], + [0, 8181], + [3, 1261, 12], + [0, 90, 972, 4880, 4883, 1030, 89, 3824, 8187, 1541], + [0, 8190, 8191, 5399, 4403, 8192, 8194, 89, 3824], + [1, 2343, 5895], + [0, 0, 0, 5897, 2537], + "pirates", + [0, 8199, 2414, 8201, 8203, 6941, 8204, 1623, 2278, 6400, 5122, 8206, 6884], + "clone-deep", + [1, 2343, 5900], + [0, 0, 0, 5901, 34352], + [0, 8199, 2414, 8201, 8203, 447, 8211, 1623, 2278, 6400, 5122, 8206, 6884], + [1, 2343, 5903], + [0, 5904, 0, 5905, 4139], + [0, 8218], + [0, 2414, 7176, 8220, 1017, 8221, 1367], + [1, 2343, 5907], + [0, 5904, 0, 5905, 2537], + [1, 2343, 5909], + [0, 0, 5910, 5911, 2487], + [ + 0, 53, 8229, 87, 90, 92, 192, 5467, 442, 449, 7008, 452, 6061, 21120, 6063, 966, 968, 972, 5087, 4880, 4883, + 1393, 1423, 1570, 1610, 1177, 1895, 1938, 1939, 1947, 1955, 1959, 1961, 1976, 1982, 2203, 2675, 1192, 2780, + 1894, 3720, 89, 3824, 4039, 4131, 4468, 4474, 4493, 91, 4523 + ], + [0, 8220, 2132, 89, 5284, 8221, 45], + [1, 2343, 5913], + [0, 5914, 5916, 5918, 34352], + [0, 3951], + "to-fast-properties", + [ + 0, 5087, 4874, 1009, 1011, 1177, 1879, 1883, 1895, 1938, 1939, 1947, 1955, 1192, 2794, 1894, 4468, 4469, 4474, + 4508, 91 + ], + [2, 29288, 594], + [0, 91, 5130, 36, 5995, 3469], + [1, 2343, 5920], + [0, 5937, 5958, 5964, 4139], + "@api", + "devtools/json-schema-ref-parser", + [2, 5921, 5922], + [3, 105, 13], + "web-", + [2, 5925, 4963], + [2, 5924, 5926], + [3, 221, 10], + "gherkin-streams", + [2, 5928, 5929], + "@iframe-resizer/child", + [3, 5931, 16], + "parent", + [2, 5932, 5933], + "awilix", + "bpmn-js", + [0, 8245, 457, 1804, 8248], + "of", + "-allof", + [2, 4381, 5939], + [2, 2845, 5940], + [3, 3107, 13], + "bbr", + [2, 5942, 5943], + "ttrs", + [2, 5942, 5945], + [3, 3112, 14], + "detabs", + [2, 5947, 5948], + "multim", + "d-table", + [2, 5950, 5951], + [2, 3108, 5952], + [3, 4923, 13], + "lantuml-ex", + [2, 5954, 5955], + "task", + [0, 8252, 4874, 1009, 1011, 1610, 1804, 8256, 1177, 1879, 1883, 1895, 1938, 1947, 1955, 1894, 4469, 4474, 4508, 91], + "-lists", + "task-lists", + [2, 3108, 5960], + "-viewer-element", + [2, 3512, 5962], + [0, 91, 5130, 1804, 36, 5995], + [1, 2343, 5976], + "prince", + "svg-", + "pan-zoom", + [2, 5967, 5968], + [3, 4369, 11], + [2, 5970, 1724], + "reso", + "urce-inliner", + [2, 5972, 5973], + [2, 5925, 5974], + [0, 5979, 5916, 5984, 34352], + "-scss", + [2, 4323, 5977], + [0, 457, 8263, 8264, 24156, 1364, 2863, 3951], + "md", + "bpmn", + "bdd", + "feature", + [0, 91, 5130, 2026, 3469, 36, 5995], + [1, 2343, 5986], + [0, 5987, 5988, 5991, 2487], + [0, 31740, 8271, 8272, 8273], + [0, 8275], + "exit-hook", + [2, 1152, 5989], + [0, 2220, 8277, 1745, 1783, 8278], + [1, 2343, 5994], + "loki", + [0, 5996, 5997, 5998, 2523], + "backend", + [0, 32359, 6446, 8273, 8272], + [0, 8286, 8275], + [0, 467, 2220, 8277, 1745, 1932, 1783, 8278], + [1, 2343, 6012], + [3, 107, 12], + "y-release-plan", + [2, 1133, 6001], + [2, 6000, 6002], + [3, 6003, 13], + "ssemble-release-plan", + [2, 6004, 6005], + [3, 5522, 25], + "onfig", + [2, 5518, 6008], + [2, 6000, 2656], + "dependen", + [0, 6013, 0, 6046, 2537], + [ + 0, 53, 87, 8292, 8294, 8296, 1165, 1195, 8297, 1593, 1610, 1628, 1630, 2092, 8301, 3177, 3561, 3618, 8304, 2278, + 8306, 4111, 4383, 4027, 2924, 4677 + ], + "ts-graph", + [2, 6011, 6014], + [2, 2183, 6015], + [2, 6000, 6016], + [3, 6017, 16], + "release-", + "plan", + [2, 6019, 6020], + [2, 6018, 6021], + [3, 6017, 13], + [2, 6023, 2403], + [2, 6000, 2942], + "pre", + [2, 6000, 6026], + [2, 6000, 3917], + "-skip-package", + [2, 4170, 6029], + [2, 6000, 6030], + [2, 6000, 553], + "write", + [2, 6000, 6033], + "@man", + "ypkg/get-packages", + [2, 6035, 6036], + "editor", + [2, 26670, 26671], + "human-id", + "mri", + "p-limit", + "pref", + "erred-pm", + [2, 6043, 6044], + [0, 2924, 8309, 8310, 4967], + "spawndamnit", + "term", + "term-size", + [1, 2343, 6051], + [0, 6053, 6054, 6060, 2487], + "@mui/x-internals", + [0, 8317, 8320, 8321, 8324, 8325, 8328, 8330, 8333, 8335, 8337, 8339, 8341, 8344, 8346, 8348, 8350, 8353, 8354], + [0, 8357, 5500, 8358, 8359, 8362, 8364, 4874, 2036, 2812, 91], + [3, 110, 23], + [2, 6055, 592], + [3, 449, 25], + "free", + [2, 6057, 6058], + [0, 5130, 27, 5592, 5122], + "@semantic-release/changelog", + [3, 6061, 18], + [2, 6062, 3358], + "hub", + [2, 6063, 6064], + [2, 1457, 20], + "peer-deps-external", + [2, 4049, 6067], + [1, 5293, 6075], + "chat", + "reactjs", + " interface", + [2, 4569, 6072], + "ui kit", + [0, 8391, 6087], + "unication", + [2, 1514, 6076], + "conver", + "sation", + [2, 6078, 6079], + "toolkit", + "library", + "reusable", + "feed", + "social", + "talk", + 1724872768784, + [1, 2343, 6089], + [0, 6090, 6091, 6093, 2523], + [0, 8506, 3776], + [0, 192, 5467, 8509, 8511, 6061, 6063, 16480, 1177, 2675, 2742, 8512, 2990, 1894, 4131, 1984], + "ckeditor", + [0, 1776, 1894, 4298, 1745, 5284], + "ckeditor 5", + "-feature", + [2, 1459, 6095], + [3, 6096, 10], + [2, 6097, 1932], + "dll", + [2, 6097, 6099], + [1, 2343, 6102], + [0, 6103, 6104, 6114, 2537], + [0, 5917], + [ + 0, 11976, 8520, 26364, 966, 968, 972, 974, 4874, 4880, 8524, 8527, 8528, 8529, 1030, 1091, 8531, 1092, 6685, + 8534, 8536, 6809, 7250, 1610, 8537, 8556, 8538, 7091, 8539, 2812, 2832, 8540, 3165, 8543, 8544, 8547, 3400, 89, + 3824, 3833, 3951, 7080, 7103, 91, 8550, 7114, 1983, 8552, 1984, 6482, 4763 + ], + "wysiwyg", + "rich text", + "Editable", + [2, 1563, 6107], + "edit", + "editing", + "angular2", + "angular 5", + "ng", + [ + 0, 6659, 7020, 7130, 6663, 3833, 6482, 2812, 7080, 91, 4763, 7114, 6809, 7091, 8558, 7209, 7250, 7103, 1091, + 7196, 6685, 8560, 8561, 8556, 29291 + ], + [1, 2343, 6116], + [0, 6117, 5795, 6118, 2537], + [0, 4548], + [0, 8571, 8572, 8573, 8570, 1885, 8574, 5592], + [1, 2343, 6120], + [0, 6121, 6122, 6123, 2523], + [0, 8579, 8582, 8585, 8181, 3021], + [0, 4039, 188, 4639], + [0, 188, 8588, 8591, 4967, 5130, 181, 12, 4627, 4963, 5001, 837], + [1, 2343, 6125], + [0, 6128, 6129, 6130, 2537], + [3, 153, 22], + [2, 6126, 2389], + [0, 7905, 542, 1668, 3021], + [0, 8597, 4039, 188, 4639], + [0, 188, 8588, 8591, 4967, 5130, 181, 4627, 4963], + [1, 2343, 6146], + "ditor-balloon", + [2, 151, 6132], + "@jest/pattern", + "oper", + "al transformation", + [2, 5218, 6136], + [2, 6135, 6137], + "ot", + "colla", + "boration", + [2, 6140, 6141], + [3, 6142, 11], + [2, 6143, 4936], + "real-time", + [0, 6149, 6150, 6151, 2537], + "build", + [2, 6097, 6147], + [0, 31874, 8604, 8605, 8611, 34224, 8612, 4174], + [0, 8616, 8608, 4874, 91], + [ + 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 8622, 1836, 8623, 1179, 8624, 6847, 8625, 2720, 8626, 8628, 5284, + 4403, 202, 6710, 3741, 8630, 3742, 8631, 3925, 8632, 8633, 4989, 2184, 8634, 7009, 6621, 181, 8635, 4758, 8636 + ], + [1, 2343, 6153], + [0, 6154, 6155, 6156, 2399], + [0, 4484, 2735, 8641], + [ + 0, 1192, 2278, 1437, 2020, 4146, 8643, 1177, 4042, 2151, 2774, 1894, 4320, 5087, 4874, 8645, 6376, 8647, 30071, + 4328, 8648, 8651, 8653, 8654, 8656, 8659, 8660, 8661, 1895, 1011, 8665, 816, 8669, 8671, 1009 + ], + [0, 2733, 5130, 8673, 5131, 1896, 8674, 8675, 1591, 1804, 8677, 8678], + [3, 6133, 27], + [2, 6157, 128], + [1, 2343, 6160], + [0, 0, 6161, 6162, 2537], + [0, 4874, 668, 1894, 4384, 4483, 4508], + [0, 200, 6876, 8691, 4964, 7201, 4719, 176], + [1, 2343, 6169], + [2, 117, 2414], + "lignment", + [2, 112, 6165], + [3, 132, 9], + [2, 6157, 6167], + [0, 6170, 0, 6171, 2537], + [0, 8697], + [0, 91, 1541, 3421, 1973, 4504], + [1, 2343, 6174], + [2, 6157, 134], + [0, 6175, 6176, 6177, 2537], + [0, 8703, 8710, 8712, 8714, 1461, 8716], + [0, 8719, 842, 968, 972, 974, 7677, 1177, 1895, 8724, 2832, 89, 3824, 91, 1983, 1984], + [0, 4627, 4963, 8727, 4964, 5130, 4967, 8728, 8729, 5128, 89, 181, 1487], + "blurhash", + [1, 2343, 6180], + [0, 6181, 6182, 6183, 2537], + [ + 0, 8744, 6134, 8752, 8762, 8755, 554, 4874, 1107, 1437, 1458, 29680, 2215, 8769, 8734, 8750, 8765, 8758, 2797, + 8771, 8737, 8739, 8746, 2798, 8747, 8741, 3170, 3717, 4207 + ], + [0, 8782, 8776, 8780, 8778], + [ + 0, 1166, 1172, 4504, 8784, 2022, 3497, 8786, 8787, 2765, 1192, 2832, 2899, 8788, 8790, 2907, 8791, 8795, 8745, + 4384, 4389, 1973, 5472, 91, 2282 + ], + [1, 2343, 6185], + [0, 6186, 0, 2514, 2537], + [0, 6134, 8801, 8809, 8806, 4874, 4892, 1437], + [1, 2343, 6188], + [0, 6189, 6190, 6191, 2487], + [0, 8818, 1091, 1092, 1209], + [ + 0, 549, 8826, 1009, 1011, 1166, 8832, 1177, 1895, 1938, 1955, 2832, 3421, 1894, 3875, 8824, 4039, 4042, 4052, + 4076, 4079, 4232, 4474, 4484, 4508, 91 + ], + [0, 1669, 25, 1781, 8836, 4967, 1179, 6847, 7020, 8838, 2860, 2844, 8839, 8691, 8841], + [2, 6097, 1095], + [1, 2343, 6194], + [0, 6195, 6196, 6198, 2523], + [0, 8846, 1673, 1209], + [ + 0, 7948, 370, 618, 622, 626, 811, 8850, 816, 6373, 4863, 5087, 4880, 4883, 1009, 1011, 8158, 1584, 1843, 1177, + 1895, 1938, 1955, 1959, 1192, 2780, 2832, 3421, 1894, 89, 3824, 4039, 4042, 4052, 8849, 8853, 4076, 4079, 4230, + 4468, 4469, 4484, 4508, 91, 2924, 4677, 4681, 555, 560 + ], + [3, 191, 21], + [0, 29, 3902, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], + "atchdog", + [2, 6197, 6199], + [1, 2343, 6202], + [0, 6203, 6204, 6205, 2487], + [0, 1209], + [ + 0, 8862, 4863, 5087, 8860, 4880, 4884, 1009, 1011, 8158, 1610, 1843, 1177, 1895, 1938, 1955, 1959, 1192, 2832, + 3421, 1894, 89, 3824, 3876, 3875, 8824, 4039, 4042, 4052, 4076, 4079, 4468, 4484, 4508, 91, 555 + ], + [0, 89, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], + [1, 2343, 6207], + [0, 6208, 6209, 2514, 2537], + [ + 0, 6059, 8918, 8923, 8928, 8926, 8934, 8921, 8913, 8931, 8932, 8894, 8916, 8892, 8897, 8906, 8900, 8887, 8910, + 8902, 8890 + ], + [0, 8937, 5087, 1192, 4039, 91], + [1, 2343, 6211], + [0, 6212, 6213, 6218, 34352], + [ + 0, 1110, 1282, 1437, 1537, 8942, 2070, 8944, 2822, 8947, 3072, 3181, 3188, 8949, 4039, 8951, 8952, 8954, 8957, + 8959, 4431, 4562, 4600, 4603, 8962 + ], + [0, 1173, 8966, 1255, 1264, 1596, 1672, 2835, 2899, 3421, 8967, 4100, 4193, 4255, 4597], + "ndo", + [2, 183, 6214], + "select-all", + [2, 117, 6216], + [0, 2278, 4329, 1623, 2295, 1745, 4298, 699], + [1, 2343, 6220], + [0, 0, 0, 6221, 2399], + [0, 8980, 8984, 8987], + [1, 2343, 6223], + [0, 6224, 6225, 6226, 2523], + [0, 8605], + [0, 546, 8997, 8998, 2992], + [0, 2991, 2992, 200, 5957, 3392, 9000, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921], + [1, 2343, 6228], + [0, 6229, 6230, 6231, 2487], + [0, 8703, 1497, 3867, 9008, 9011, 4507], + [0, 89, 3824], + [0, 4963, 4964, 4967, 6082, 3286, 3287, 89, 181, 630], + [1, 2343, 6233], + [0, 6234, 6230, 6235, 4139], + [0, 1497], + [0, 9026, 4963, 1666, 4967, 6082, 3286, 3287, 3811, 89, 6901, 181, 630], + [1, 2343, 6237], + [0, 0, 0, 6238, 2523], + [0, 4967, 582, 6082, 3286, 3287, 89, 6687, 6649], + [1, 2343, 6240], + [0, 0, 6230, 6241, 2487], + [0, 4963, 8622, 4967, 6082, 5066, 3286, 3287, 89, 181, 630], + [1, 2343, 6243], + [0, 6244, 6230, 6245, 2487], + [0, 9041, 3911], + [0, 4963, 4967, 6082, 3286, 3287, 9044, 9045, 9047, 89, 181, 630], + [1, 2343, 6247], + [0, 6248, 0, 6249, 2537], + [0, 9054, 595], + [0, 89, 3286, 3287, 181, 4963, 630, 6082, 4967, 1501, 5342, 5341, 9057], + [1, 2343, 6251], + [0, 6252, 0, 6253, 2399], + [0, 1497, 1639], + [0, 89, 3286, 3287, 181, 6082, 4967, 1832, 7165, 7297], + [1, 2343, 6255], + [0, 0, 0, 6256, 2523], + [0, 89, 3286, 3287, 6082, 4967, 6687, 582, 6649], + [1, 2343, 6258], + [0, 6259, 0, 6260, 2537], + [0, 1497, 3847, 3559, 3744, 97, 9075, 9076, 9071, 9074, 3911, 2609, 4808], + [0, 89, 5128, 5027, 3132], + [1, 2343, 6262], + [0, 6263, 0, 6264, 2537], + [0, 97], + [0, 89, 5128, 5027, 3132, 45], + [1, 2343, 6266], + [0, 0, 6267, 6273, 2537], + [ + 0, 1192, 3348, 2675, 1177, 1209, 1593, 4474, 4508, 1894, 1317, 48, 1193, 91, 53, 5087, 7819, 3400, 4870, 107, + 192, 5366, 87, 1978, 3957, 1895, 1955, 4514, 92, 603, 9089, 1011, 5467, 1009, 61, 78, 76 + ], + "color-parse", + "color-", + "convert", + [2, 6269, 6270], + "vanilla-colorful", + [0, 1781, 5592, 9091, 9093, 1753, 9094, 4525, 91, 4799, 5995, 6400], + [1, 2343, 6275], + [0, 6276, 0, 6277, 2523], + [0, 9100], + [0, 1219, 1783, 9102, 89, 3984], + [1, 2343, 6279], + [0, 6280, 6281, 6282, 2399], + [0, 608, 606, 1687, 1209, 3181, 814, 4135, 4227, 91, 9111, 9110, 9113, 9119, 9121], + [0, 9125, 4870, 5251, 5254, 1177, 29339, 9130], + [0, 91, 8172, 9132, 9133, 9134, 8623, 1745, 6432, 4056, 7897, 4042, 6374, 4643, 9135, 9136], + "@aws/durable-execution-sdk-js", + "vue.js", + "vue component", + " component", + [2, 6284, 6286], + [1, 2343, 6289], + [0, 0, 6290, 6291, 2537], + [0, 1177, 9125, 9141], + [0, 6869, 1745, 2295, 4298, 9132, 57, 4255], + [1, 2343, 6293], + [0, 6294, 6295, 6291, 2537], + [0, 1091, 9153, 814, 606], + [0, 1177, 9156, 5251, 9125, 9141], + [3, 192, 12], + [2, 6296, 1671], + [2, 6296, 671], + [3, 6298, 13], + "oad", + [2, 6299, 6300], + [2, 6296, 3917], + [2, 6296, 553], + [1, 2343, 6310], + [3, 6303, 13], + [2, 6305, 4467], + [2, 6296, 594], + [3, 4872, 14], + [2, 6308, 1698], + [0, 0, 6311, 6312, 2523], + [0, 6283, 33639, 9163, 9167, 4874], + [0, 9169, 9170, 9171, 9172, 9173, 9174, 33959, 33964], + [1, 2343, 6314], + [0, 6321, 6322, 6340, 4139], + [3, 195, 10], + [2, 6315, 2997], + "ngd-transformer", + [2, 6315, 6317], + ".native", + [2, 1367, 6319], + [0, 615], + [0, 609, 9167, 4507], + "decache", + "-plugin-", + [2, 6324, 3665], + [2, 3079, 6325], + "lunr", + "openc", + "ollective-postinstall", + [2, 6328, 6329], + "os-name", + "pdfmake", + "sort", + "tablesort", + "vis-network", + [2, 6337, 6338], + [3, 10088, 18], + "-list", + [2, 10217, 6341], + [0, 9169, 9170, 9171, 9172, 9173, 9174, 9182, 9183, 8172, 6671, 9184, 9186], + "icky", + [3, 197, 10], + [2, 6342, 553], + [1, 2343, 6350], + "semantic", + "actor", + "messages", + [2, 698, 9352, 6349, 10029], + "scroll-b", + [0, 0, 6353, 6356, 2537], + [2, 6352, 1633], + [3, 6348, 22], + [0, 9193, 609, 9167, 4874, 9196], + "cms", + "management", + [0, 9169, 9170, 9171, 9172, 9173, 9174, 1383, 614], + [1, 2343, 6358], + [0, 0, 0, 6359, 2523], + [0, 9203, 4967, 9204, 1283], + [1, 2343, 6361], + [0, 6362, 6363, 6364, 2537], + [0, 9213, 9215, 9217, 9218, 9219, 9221], + [ + 0, 192, 5467, 9225, 9226, 8648, 9227, 6494, 9231, 9237, 4874, 5542, 24360, 9240, 9241, 1170, 1364, 1527, 1594, + 1610, 1652, 9242, 2026, 9243, 9244, 2131, 2212, 2559, 2832, 3310, 9245, 4218, 4220, 9247, 4339, 4342, 1531, 91, + 4548, 1984, 9250, 9252, 9255, 2924, 9258, 4729 + ], + [0, 705, 9261, 27, 2671, 4738, 4731, 1612, 9262, 3212, 4158, 5472], + [1, 2343, 6366], + [0, 6263, 0, 6367, 2537], + [0, 89, 5128, 9267, 3132, 5027, 45], + [1, 2343, 6394], + "@doc", + "search/js", + [2, 6369, 6370], + "@popperjs/core", + [2, 812, 4068], + "bundle", + "bundlewatch", + [2, 1462, 20], + "find-u", + "nused-sass-variables", + [2, 6377, 6378], + "hammer", + "-simulator", + [2, 6380, 6381], + "hugo-bin", + "-istanbul-reporter", + [2, 2886, 6384], + [2, 1868, 2903], + [2, 2898, 6386], + "mbine-duplicated-selectors", + [2, 3573, 6388], + [2, 4049, 2759], + "twbs-bootstrap", + [2, 4942, 6391], + "vnu-jar", + [0, 6397, 0, 6401, 2487], + "-first", + [2, 5131, 6395], + [0, 1497, 9272, 9273, 3744, 624, 97], + "responsive", + "front-", + "front-end", + [0, 89, 5128, 9267, 3132, 5027, 620], + [1, 2343, 6403], + [0, 6404, 0, 6405, 2537], + [0, 1497, 1639, 3847, 9272, 9273, 3744, 624, 97, 6372, 3911, 9284, 4808], + [0, 89, 5128, 9267, 3132, 5027], + [1, 2343, 6407], + [0, 6408, 0, 6409, 34352], + [0, 1497, 1639, 9272, 9273, 3744, 97, 4782, 9293], + [0, 89, 5128, 9267, 623], + [1, 2343, 6411], + [0, 6412, 0, 6414, 2537], + [0, 97, 9273, 4808, 1497, 3744, 3911, 6052], + "media", + [0, 89, 5128, 9267, 9300, 3132, 5027, 3812, 9301, 9302], + "media query", + [1, 2343, 6417], + [0, 6418, 6419, 6420, 2523], + [ + 0, 9307, 9308, 9310, 9311, 9312, 9313, 9315, 9316, 9317, 1461, 1473, 9319, 9321, 9322, 2070, 2226, 9324, 9327, + 9329, 9334, 9337, 9340, 3988, 9343, 9347, 9348, 9351, 4507, 4549, 4555, 2924, 9354, 9355 + ], + [0, 9357, 9359, 9362, 9363, 4880, 4891, 1165, 1540, 3286, 3613, 89, 3824, 3958, 4383, 4493, 91, 9364, 9367, 9368], + [0, 9102, 1745, 3287, 1783], + "matches", + "polyfill", + [3, 3668, 9], + "lugin", + [2, 6423, 6424], + "pseudo", + [1, 2343, 6428], + [0, 6429, 0, 6430, 34352], + [0, 9375, 9376, 9378, 9379], + [0, 1098, 1745, 1179, 9381, 9382, 5592, 9383, 9384], + [1, 2343, 6438], + [3, 4325, 11], + [2, 6432, 591], + [3, 217, 11], + "utility", + "variables", + "vars", + [0, 6439, 0, 6430, 2443], + [0, 4484, 628], + [1, 2343, 6441], + [0, 6442, 0, 6430, 2523], + [0, 3958, 9393, 3971, 3978, 7610, 9396, 9401, 2584, 4555, 9405, 9407, 9409, 1437, 9348, 4549, 4292], + "specificity", + [1, 2343, 6445], + [0, 6459, 6460, 6480, 2523], + [2, 6447, 25240], + [3, 465, 19], + [3, 221, 11], + "i-environment", + [2, 6448, 6449], + [2, 3228, 5709], + [2, 221, 6451], + [3, 5930, 17], + [3, 5930, 18], + [2, 6454, 594], + [2, 2617, 4525], + [2, 5928, 6456], + "message", + [0, 9414, 1690, 1431, 9417], + [ + 0, 1429, 1363, 2899, 1177, 9420, 4039, 9422, 4474, 2182, 1894, 91, 4856, 4874, 9424, 1325, 1951, 1938, 1895, + 1955, 1011, 9426, 1009, 634, 9431, 9437 + ], + "-streams", + [2, 6458, 6461], + [2, 5928, 6462], + [3, 6463, 17], + [2, 6464, 591], + "tag-expressions", + [2, 5928, 6466], + [3, 5710, 9], + "-error-formatter", + [2, 6468, 6469], + "capital-case", + [2, 4250, 57], + [2, 3827, 6472], + "has-ansi", + "knuth-shuffle-seeded", + [2, 3060, 5056], + "resolve-pkg", + "argv", + "string-argv", + [0, 9439, 9440, 9422, 5472], + "util-arity", + "yup", + [1, 2343, 6506], + "ompa", + "tibility-kit", + [2, 6484, 6485], + [2, 6448, 6486], + [2, 5928, 3766], + "-xml", + [2, 4856, 6489], + "@types/d", + "irty-chai", + [2, 6491, 6492], + [2, 4861, 674], + "@types/h", + "as-ansi", + [2, 6495, 6496], + [2, 6309, 5056], + "@types/l", + "uxon", + [2, 6499, 6500], + "@types/m", + [2, 6502, 1950], + "ustache", + [2, 6502, 6504], + [0, 6531, 6534, 2514, 2523], + "@types/mz", + [3, 5090, 10], + "gress", + [2, 6508, 6509], + "inon-chai", + [2, 5051, 6511], + [3, 6512, 12], + "js__fake-timers", + [2, 6513, 6514], + [3, 4890, 9], + "-buffers", + [2, 2187, 6517], + [2, 6516, 6518], + "@types/tmp", + "exclude", + [2, 1432, 6521], + "xml", + "chai-xml", + [2, 5313, 671], + "genversion", + "reindent-template-literals", + "stream-t", + "o-string", + [2, 6528, 6529], + [ + 0, 9501, 9452, 9510, 638, 9496, 9493, 641, 9479, 9456, 9459, 643, 9449, 9448, 9485, 2613, 9472, 3084, 3181, + 3368, 9465, 3386, 9462, 3397, 3483, 9476, 3727, 9447, 9490, 9469, 4135, 4248, 9451, 9455 + ], + "gherkin", + "tests", + [0, 9516, 26037, 9515, 1317, 9520, 3297, 4384, 4393, 9512], + [1, 2343, 6536], + [0, 6537, 6538, 6542, 2523], + [0, 9493, 9479, 2070, 3181], + [0, 9516, 9515, 4384], + [3, 6503, 10], + "k-fs", + [2, 6539, 6540], + [0, 3378, 3409, 2977, 200, 9527, 637], + "-compare", + [2, 5254, 6543], + [3, 6512, 9], + "gnale", + [2, 6545, 6546], + "mock-pro", + "cess", + [2, 6548, 6549], + [2, 2769, 6550], + [2, 4135, 6543], + "signal", + "signale", + [1, 2343, 6556], + [0, 0, 6538, 6558, 2399], + "deven", + [0, 3378, 200, 640], + [1, 2343, 6560], + [0, 6561, 6562, 2514, 2487], + [0, 641, 9479, 9539, 640, 3727, 4707], + [0, 9516, 9515, 9542, 4384], + "toobject", + [3, 3568, 10], + "urable", + [2, 1541, 6565], + "promises", + "ReactiveX", + "WeakSet", + "ES3", + [1, 2343, 6576], + "cloudsearch", + "uninstall", + "windows", + "cjk", + [0, 6595, 6603, 6604, 2523], + "negative", + "shar", + "shared", + "Symbol.toStringTag", + "full-width", + "Object", + "Array.prototype.flatMap", + "Uint8", + "ClampedArray", + [2, 6584, 6585], + "start", + "starter", + "infer", + "ence", + "inference", + [3, 6583, 17], + "indLast", + [2, 6592, 6593], + [ + 0, 9547, 9548, 9550, 3105, 2745, 9552, 9554, 9556, 9558, 9560, 9562, 3023, 9563, 4110, 7610, 9565, 9566, 3032, + 9568, 3114, 9569, 9573, 9577, 5961, 9580, 9584 + ], + "replay", + "[[Prototype]]", + "es7", + "cloud", + "ion", + "formation", + [2, 6599, 6601], + [0, 2070, 2899, 1448, 4255, 9586, 1389, 9588, 4257], + [0, 9591, 3987, 2195, 9593, 1783, 5980, 1745, 9595, 1936, 3378], + "look", + "last", + "regular expression", + "ECMAScript 2023", + "hot", + "rm -fr", + "chinese", + [1, 5293, 6617], + "consume", + "look-up", + "ES8", + "rgb", + [0, 8391, 6628], + "deep-copy", + "iam", + "ES2022", + "tty", + "status", + "length", + "view", + "dom-t", + "esting-library", + [2, 6625, 6626], + 1734998400000, + "elb", + [1, 2343, 6655], + "getter", + [3, 6608, 13], + "19", + [2, 6632, 6633], + "macos", + "__proto__", + "asserts", + "deepclone", + [3, 2779, 11], + [2, 6639, 591], + "crypt", + [3, 6634, 14], + "8", + [2, 6642, 6643], + "push", + "monorepo", + "lone", + "fast-clone", + "state", + "lru", + [2, 1177, 1541], + "endpoint", + "a11y", + "weakmap", + [0, 6656, 0, 6658, 2537], + [0, 666], + "streams2", + [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 9627, 9628], + "scheme", + ".json", + [2, 3383, 6660], + "ajax", + "hookform", + [1, 2343, 6672], + "autoscaling", + "packages", + "linux", + "rfc4122", + [3, 2069, 10], + [2, 6669, 1585], + "JSON", + [0, 6675, 0, 6658, 2399], + "matchAll", + "iterate", + [0, 3420, 4484], + [1, 2343, 6679], + "structuredClone", + "trim", + [0, 6682, 0, 6658, 2537], + "@cfcs/core", + [3, 3518, 11], + [0, 683], + "findLast", + [1, 2343, 6699], + "arktype", + [3, 3833, 10], + [2, 6686, 591], + "prototype", + "sigint", + "sinatra", + "Object.", + "value", + "values", + [2, 6691, 6693], + "reduce", + "reducer", + "Function.prototype.name", + "lockfile", + [0, 6712, 6717, 6658, 2523], + "full", + "fullwidth", + "groupBy", + "wait", + "duplex", + "css less", + "helpers", + "optimize", + "optimizer", + "emr", + "nodejs", + "defineProperty", + [0, 29309, 1797, 4484, 4135, 4748, 3181, 1836], + "pyyaml", + "call", + "bind", + "callbind", + [0, 1192, 3420], + "styleguide", + [1, 2343, 6722], + "watchFile", + "code ", + [0, 6730, 6736, 6744, 2537], + "code points", + "Index", + [2, 6683, 6724], + "Map", + "flatMap", + "l10n", + "WebSocket", + [0, 4484, 677, 666, 3527, 27921, 4480], + "utilities", + "high", + "er-order", + [2, 6732, 6733], + "dataview", + [0, 3420], + "handling", + [2, 3827, 6737], + "define", + "ebs", + [2, 1177, 1932], + "estree", + [2, 6642, 2855], + [0, 9621, 9647, 9623, 9628, 9648, 9649], + [1, 2343, 6756], + "ES2015", + [3, 6608, 11], + [2, 6747, 1278], + "operati", + "ng-system", + [2, 6749, 6750], + "RegExp#flags", + "loading", + "range", + "rangeerror", + [0, 6757, 6736, 6767, 2537], + [0, 4484, 677, 4135, 666, 91], + "accessor", + "ESnext", + "limited", + "RFC-6455", + "URLSearchParams", + "es-shim API", + "col-buffers", + [2, 4900, 6764], + "lesscss", + [0, 9621, 9623, 9657, 9658, 9628, 9659], + "nce", + "sequence", + " system", + "file system", + [1, 2343, 6785], + "pnpm9", + "metadata", + "YAML", + [3, 3405, 12], + "ES2023", + "es2015", + "simpledb", + "hasOwn", + [2, 5010, 6972], + "debugger", + " zero", + [2, 6577, 6783], + [0, 6815, 0, 6819, 34352], + "fast-copy", + "spinners", + "predictable", + "ES6", + "rm", + [3, 6583, 16], + "contain", + "contains", + [2, 6791, 6793], + "japanese", + [3, 6608, 14], + [2, 6796, 1274], + [2, 20413, 2659], + "byteOffset", + "setter", + "Object.keys", + "flags", + "key", + "ender", + "ponyfill", + [2, 20413, 8124], + "logging", + "sns", + [2, 4626, 1155], + "ses", + "output", + "worker", + "export", + [2, 1204, 6813], + [0, 4484, 677, 682, 666], + "tester", + "waf", + "setImmediate", + [0, 9621, 9624, 9667, 9626, 9627, 9628, 9649], + "typedarrays", + "walking", + "descriptor", + [1, 2343, 6826], + "hardlinks", + "buffers", + [0, 6833, 6736, 6851, 2443], + "typesafe", + "Set", + "CSS", + "es-abstract", + "agegateway", + [2, 4268, 6831], + [ + 0, 1437, 4484, 2687, 4135, 1513, 9673, 3530, 666, 3527, 27921, 53, 1710, 2858, 3404, 683, 97, 29309, 87, 4232, + 7913, 9676, 92, 83, 71, 5757, 9678 + ], + [2, 6838, 1172], + "cloudfront", + "7", + [2, 6642, 6836], + [3, 13067, 16], + "ES2019", + [2, 6855, 6872], + "reuse", + "acter", + "character", + "prese", + "rve-symlinks", + [2, 6844, 6845], + "input", + [3, 1461, 9], + "Underscore", + "ec2", + [0, 9621, 9623, 9624, 9680, 9681, 9628, 9648, 9649], + [1, 2343, 6861], + "indicator", + "AsyncIterator", + "@vue/cli", + "performant", + "folder", + "Stream", + "0", + "ES2020", + [0, 6862, 0, 6880, 2537], + [0, 4484, 677, 682, 666, 672, 9687], + [2, 6822, 591], + "te", + "delete", + "arraybuffer", + [2, 6579, 6866], + "emit", + "TypeScript", + "batch", + "rds", + [3, 4075, 18, 6], + [2, 6896, 11100], + "Uint16Array", + "password", + [3, 1519, 12], + " manager", + [2, 3383, 6877], + "mru", + [0, 9621, 9624, 9625, 9626, 9627, 9628, 9649], + "byteLength", + "rate", + "css ", + "variable", + [2, 6883, 6884], + [1, 2343, 6895], + "speed", + "own", + "has-own", + ".env", + "elm", + "ast", + "6", + [2, 6747, 6893], + [0, 6900, 6736, 6880, 4139], + "@vue/cli-", + " compiler", + [2, 695, 6897], + [3, 3938, 9], + [0, 4484, 677, 4774, 29540, 666, 26784, 672, 18052], + "time", + [2, 1955, 12054], + "bundling", + [2, 6916, 1987], + "Uint32Array", + [1, 2343, 6908], + "minimal", + [0, 6909, 6736, 6658, 34352], + [0, 3420, 1437, 4484, 4135, 1836, 3530, 666, 4748, 29309], + "collection", + " css", + "nested css", + "slice", + "has", + "sorted", + [3, 4079, 15], + "iteration", + "ES2021", + "Float32Array", + "regular", + "idle", + "column", + "Iterator", + [1, 2343, 6927], + "throttle", + "guid", + [0, 6928, 6934, 6936, 2537], + [0, 687, 9704, 9706, 9708, 1676, 4135], + "watching", + "sqs", + "vue 3", + "less css", + "glacier", + [0, 9712, 4856, 6503, 4874, 5254, 1429, 1488, 1567, 1177, 1891, 1893, 9714, 2205, 2899, 4193, 4474, 91], + "sett", + [0, 1890], + "settings", + "ascii", + [3, 1920, 13], + "break", + "inter", + [1, 2343, 6978], + "internal", + [2, 6691, 3437], + [2, 6747, 6836], + "Array", + "Buffer#slice", + [2, 6946, 6947], + "s3", + "shrinkwrap", + "sham", + "art", + "safe", + ":*", + [2, 664, 6954], + [3, 6677, 9], + [2, 2382, 6956], + "Property", + [2, 6780, 6958], + "korean", + "regexp", + [2, 1367, 6911], + "beanstalk", + "ES5", + [2, 3632, 6911], + "take", + [3, 6962, 10], + [2, 6967, 695], + "tdd", + "jQuery", + "enum", + "-vanilla", + "enumerable", + "hot-shots", + "JSON-Schema", + "workflow", + "CSSStyleDeclaration", + [0, 6982, 6984, 6936, 2523], + "route53", + "wordbreak", + "columns", + [0, 9704, 9706, 1676, 2205, 2755, 4484], + "formatting", + [0, 4856, 9723, 4870, 6503, 4874, 9725, 8610, 1429, 1567, 1177, 1891, 1893, 9714, 1209, 2899, 3752, 4474, 91], + "one", + "fastclone", + "shebang", + "number", + [1, 2343, 6992], + "ache", + "elasticache", + [0, 6995, 6999, 7000, 2537], + [2, 6838, 7005], + "concurrency", + [0, 1107, 1112, 9730, 1480, 1676, 1797, 2179, 2709, 2755, 2984, 3181, 4135, 4290, 4351, 27921, 9731, 4720, 4726], + "bundler", + "amazon", + "toSorted", + [ + 0, 5467, 19438, 691, 9712, 9736, 9737, 5366, 4856, 9417, 9740, 5245, 9741, 9723, 6503, 4874, 9743, 6513, 9746, + 9749, 8610, 1317, 1429, 1431, 1529, 1610, 1177, 1891, 1895, 2675, 2990, 9750, 2899, 3421, 1894, 4172, 4193, + 4474, 4481, 91 + ], + [0, 1890, 200, 1523, 9753, 57, 7058, 6478], + "chromium", + "obj", + "await", + "move", + "unit-mocha", + "symlink-dir", + "persistent", + [2, 11169, 7036], + "terminal", + "coercible", + "ES2016", + [1, 2343, 7013], + [0, 7030, 7032, 7034, 2487], + "identifiers", + "includes", + "swf", + "readable", + "protobuf", + "form-", + "validation", + [2, 7019, 7020], + "RxJS", + "busy", + "fps", + [2, 6965, 1278], + "-0", + "Observable", + "mixins", + "parents", + [0, 688], + "typeof", + [ + 0, 5467, 19438, 9736, 9737, 4856, 6503, 4874, 1429, 1529, 1177, 1891, 1895, 2675, 2990, 2899, 1890, 1894, 4172, + 4474, 91 + ], + "interrupts", + [0, 9760], + "fastcopy", + "brands-svg-icons", + "prune", + [3, 6583, 20], + [2, 7038, 2395], + [2, 7027, 591], + "Microtask", + [2, 3768, 7041], + [1, 2343, 7063], + "es2018", + "circular", + "streams", + "runtime", + "make", + "serializ", + [2, 7049, 5218], + "limit", + "Dispatcher", + [2, 2013, 7052], + "balancing", + [2, 3001, 7054], + "es2016", + "WebSockets", + "args", + "ath", + "jsonpath", + [2, 6796, 1276], + "visual", + [0, 7066, 7068, 7079, 2537], + "positive", + "es-shim", + [0, 7725, 9767, 9771, 9774], + "every", + [0, 9778, 9781, 9783, 9785, 9786, 4874, 7677, 668, 2086, 2070, 3297, 1894, 9794, 91, 4548, 1984], + "trimRight", + "mimetypes", + "handlers", + "ratelimit", + "signals", + "rmdir", + "es8", + "findup", + "stable", + "robust", + [0, 9796, 2195, 4030, 9797], + "superstruct", + ".es6", + [2, 6910, 7081], + "intrinsic", + [3, 6948, 11], + "curl", + "symlinks", + "ES2018", + [1, 2343, 7093], + "writable", + "rapid", + "io-ts", + "weak", + [0, 7095, 0, 7097, 2537], + "throat", + [ + 0, 9804, 9807, 9810, 9811, 9813, 9815, 9819, 9821, 9829, 9834, 9838, 9841, 9843, 9846, 9848, 9849, 9850, 9852, + 9855, 9856, 9858, 9861, 9862, 9864, 9866, 9869, 9871, 9873, 9874, 9875, 9878, 9933, 9935, 9937, 9938, 9940, + 9941, 9945, 9949, 9953, 9955, 9957, 9960, 9964, 9967, 9969, 9971, 9974, 9977, 9979, 9983, 9985, 9986, 9989, + 9991, 9993, 9996, 9998, 10001, 10004, 10006, 10007, 10009, 10013, 10014, 10016, 10019, 10021, 10024, 10026, + 10027, 10030, 10032, 10034, 10037, 10041, 10044, 10047, 10048, 10049, 10051, 10053, 10055, 10058, 7127, 10060, + 10063, 10065, 10066, 10068, 10075, 10077, 10081, 10083, 10084, 6336, 10088, 10092, 10094, 10097, 10102, 10105, + 10107, 10110, 10114, 10117, 10119, 10126, 10128, 28711, 10130, 10131, 10132, 10134, 10135, 10137, 10139, 10142, + 10144, 10145, 10146, 10147, 10149, 10151, 10153, 10156, 10159, 10162, 10163, 10165, 10167, 10170, 10173, 10178, + 10180, 10183, 10186, 10188, 10191, 10193, 10195, 10197, 10198, 33633, 10200, 10201, 10203, 10204, 10206, 10207, + 10208, 33138, 10210, 10213, 10216, 10219, 6339, 10223, 10226, 10228, 10229, 10230, 10231, 10234, 10235, 34233, + 10237, 10239, 10241, 10245, 10247, 10248, 10249, 10250, 10253, 10255, 10260, 10262, 10264, 10267, 10269, 10272, + 10273, 10275, 10276, 10278, 10280, 10283, 10285, 10290, 10291, 10292, 10293, 6348, 6351, 10295, 10300, 10302, + 10304 + ], + "restful", + [0, 188, 8588, 4967, 10307, 4963, 10309, 10310, 10313, 10315], + "deep-clone", + "Rx", + "symlink", + "vpc", + "whatwg", + "typanion", + "Float", + "64Array", + [2, 7104, 7105], + "$.extend", + "Promise", + "Reactive", + "Extensions", + [2, 7109, 7110], + [1, 2343, 7113], + [0, 7118, 7124, 7097, 2523], + "vest", + "from", + "-package", + [2, 3250, 7116], + [0, 28591, 29506, 1473], + "parsing", + "or", + [2, 4358, 7120], + ".inspect", + [2, 614, 7122], + [0, 10321, 4493], + "fromEntries", + [2, 6691, 7125], + [2, 10056, 1631], + "getopt", + "-validation", + [2, 6659, 7129], + "filter", + "Emitter", + [2, 2013, 7132], + "URL", + "fixed-width", + [1, 2343, 7137], + [0, 0, 7138, 7097, 4139], + [0, 48, 53, 87, 2071, 2323, 2332, 2361, 2367, 2450, 10327, 10328, 4039, 4320, 4323, 4361], + [1, 2343, 7140], + [0, 0, 7142, 7097, 4139], + "encryption", + [0, 48, 53, 87, 2323, 2332, 2361, 2450, 4039, 4320, 4323], + [1, 2343, 7154], + "TypedArray", + "isConcatSpreadable", + "StyleSheet", + "create", + "mkdir", + "mkdirs", + "zero", + "sameValueZero", + "linewrap", + "side", + [0, 0, 0, 7156, 2537], + "listeners", + [0, 10337, 10339, 10340, 5122, 5995, 977], + "censor", + "watcher", + "typeerror", + [1, 2343, 7166], + "make dir", + "bound", + "patch", + "in-js", + "css-in-js", + [0, 7173, 0, 7186, 2537], + "deepcopy", + "setPrototypeOf", + "characters", + "pipe", + [2, 6747, 2855], + "Push", + [0, 10347, 10348, 703, 10351, 10353, 10354, 10355, 10357], + "trail", + "cloudtrail", + "awesome", + "sauce", + [2, 7176, 7177], + "banner", + "redux-t", + "oolkit", + [2, 7180, 7181], + "dete", + "rministic", + [2, 7183, 7184], + [0, 10337, 10339, 10340, 5122, 5995, 990, 705], + [1, 2343, 7195], + "extension", + "lazy", + [3, 1705, 10], + [2, 7190, 6877], + "es2017", + "search", + "ES2017", + [0, 7203, 0, 7206, 2523], + "TypeBox", + " in css", + [2, 6436, 7197], + "Streams", + "aws", + "console", + "Reflect.getPrototypeOf", + [0, 10363, 3171, 10367, 10351, 703, 10370, 10373, 706, 711, 10374], + "directory", + [2, 6607, 591], + [0, 10337, 10339, 10340, 5122, 5995, 10376], + [1, 2343, 7216], + "colour", + "nope", + "flag", + [3, 2982, 14], + "syntaxerror", + [3, 3904, 10], + [2, 7213, 1974], + "kinesis", + [0, 7217, 0, 7225, 2537], + [0, 3171, 10382, 10373], + "rm -rf", + "exit-", + "exit-code", + "ES7", + "jsdiff", + "private", + "slot", + [0, 10337, 10339, 10340, 5122, 5995, 10376, 710, 10384], + "sigterm", + "group", + "less.js", + "gdpr", + "east-asian-width", + [3, 6820, 10], + "Int32Array", + "argument", + "compile", + " less", + [2, 7234, 7235], + [1, 2343, 7238], + [0, 7240, 7243, 7246, 2537], + "callbound", + [0, 10389, 1170, 1364, 1437, 2026, 2220, 2222, 2659, 2674, 2817, 1209, 3776, 10397, 38, 13781], + "callback", + "installer", + [ + 0, 48, 53, 87, 10401, 4856, 9417, 6494, 10406, 4870, 6503, 10410, 4874, 10413, 6513, 6512, 24164, 1009, 1011, + 1429, 1431, 10417, 1587, 1177, 1881, 1883, 1895, 1915, 10419, 1938, 1951, 2899, 3297, 3421, 1894, 3752, 4039, + 4193, 4196, 4232, 4494, 91 + ], + "256", + "tostringtag", + [0, 10426, 10427, 5284, 10430, 5472, 10432], + " data", + [2, 7223, 7247], + "uted-types", + [2, 1534, 7249], + "nel", + "channel", + "iterator", + "mapreduce", + [2, 7017, 3101], + [3, 5804, 10], + [1, 2343, 7261], + "less mixins", + [2, 6796, 6859], + "forEach", + [0, 0, 0, 2514, 2399], + "description", + "Symbol", + [1, 2343, 7266], + "generics", + [0, 7267, 0, 7269, 2487], + [0, 3509], + "stdlib", + [0, 6649, 6355, 89, 188, 3709, 1542, 91, 5284, 4967, 5995, 2202, 181, 2130, 38], + "typed array", + [1, 2343, 7273], + "call-bound", + [0, 7274, 7277, 2514, 2537], + [0, 10593, 10594, 10596, 10597, 10600, 10602, 10603, 10604, 10605, 10606, 10608], + "WeakMap", + [2, 6691, 3426], + [0, 4856, 6503, 1429, 1628, 1863, 2297, 2881, 2895, 2897, 2900, 2904, 2899, 4039, 4940, 4307, 4508, 91, 2924], + [1, 2343, 7279], + [0, 0, 7280, 7281, 2537], + [ + 0, 8648, 10614, 816, 10615, 966, 968, 13204, 4874, 10616, 1637, 1177, 28727, 10619, 32765, 10621, 2203, 2832, + 3561, 3566, 1894, 10624, 10627, 3980, 10630, 10632, 4042, 4057, 4076, 4333, 4474, 4484, 4494, 4508, 10633, 4514, + 10636, 10638, 10639, 10643, 30098, 91, 10646, 4614, 32507 + ], + [ + 0, 6653, 7320, 10655, 10650, 10648, 1623, 4964, 9204, 10657, 10656, 1745, 10052, 10667, 1936, 10661, 4374, 3430, + 5284, 10651, 10663, 4386, 10665, 10658, 10654, 10659, 91, 8295, 4270, 28842, 89, 582 + ], + "stateless", + [3, 6670, 11], + [2, 7283, 6647], + "telephone", + "some", + "efficient", + "_.extend", + "wget", + [3, 6594, 18], + "lter", + [2, 7290, 7291], + "remove", + [1, 2343, 7302], + "soft", + "Microsoft", + "styling", + "ie", + "HyBi", + "Int16Array", + "cloudwatch", + [0, 7304, 7306, 2514, 2537], + "css nesting", + [0, 10675], + "mime-db", + [ + 0, 10708, 10703, 10691, 10706, 1178, 10688, 1700, 10677, 1937, 2151, 10697, 2323, 2338, 2384, 2419, 2496, 2508, + 10686, 10678, 3159, 3493, 10683, 10681, 4431, 91, 10687 + ], + [1, 2343, 7312], + "dynamodb", + [2, 6642, 6893], + "phone", + "Int8Array", + [0, 7314, 7321, 7322, 4139], + ".prototype.flags", + [ + 0, 1091, 1758, 4449, 10739, 2070, 2278, 1149, 9892, 10761, 4747, 1177, 4039, 4135, 4072, 4734, 2026, 10752, + 10756, 1290, 1457, 1764, 2720, 1894, 4171, 1513, 10753, 10757, 1389, 10754, 2689, 3160, 3310, 53, 3429, 10760, + 104, 10759, 58, 692, 4228, 10746, 101, 10737, 4005, 4562, 5216, 10748, 87, 10738, 10755, 90, 10721, 1942, 3957, + 68, 10723, 2851, 10744, 4851, 92, 10731, 10734, 10751, 5874, 10728, 5756, 10720, 5818 + ], + [3, 7313, 11], + [2, 7315, 6913], + [2, 7084, 7316], + "access", + "ibility", + [2, 7318, 7319], + [0, 4389, 10763, 4232], + [0, 10765, 4643, 200, 5130, 6400, 10766, 5131, 10768, 5995, 8889, 10769, 10771, 5256, 10772, 7028, 5198], + [1, 2343, 7324], + [0, 0, 7325, 7326, 34352], + [0, 1177, 6059, 10777, 10779, 10780, 10783, 10785, 1613, 1615, 10786, 2151, 2735, 10788, 27921, 33050], + [0, 10791, 5130, 10792, 45, 10793], + [1, 2343, 7328], + [0, 7329, 7330, 7331, 34352], + [0, 3763, 2813, 10800, 10799, 2771], + [ + 0, 2675, 89, 4426, 1177, 4042, 1651, 2924, 1894, 10852, 3824, 4270, 91, 5087, 4874, 4880, 10846, 10858, 3889, + 10855, 10810, 192, 10837, 4883, 3885, 10805, 4057, 10808, 2686, 1959, 1879, 1938, 4073, 10848, 10854, 10828, + 10831, 972, 1895, 1947, 1955, 811, 10851, 10821, 4023, 10817, 10840, 968, 1011, 1961, 10815, 10841, 10811, 816, + 10825, 974, 10827, 4531, 5467, 1883, 10844, 1009, 6068, 10836, 5700 + ], + [0, 89, 4426, 10860, 10863, 10865, 10866, 10867, 10868, 4967], + [1, 2343, 7333], + [0, 7334, 7335, 7337, 2523], + [0, 26364, 5917, 2696, 3875, 3950, 4022], + [ + 0, 5517, 53, 5652, 603, 10874, 10875, 10876, 966, 972, 30788, 974, 10879, 10883, 7729, 10886, 4874, 10887, 4880, + 4883, 4892, 1009, 1011, 1170, 668, 10888, 1177, 1895, 1898, 1935, 1938, 1947, 1955, 1959, 1961, 2151, 2731, + 2832, 2854, 3244, 3310, 1894, 3765, 89, 3824, 4039, 4201, 4484, 4493, 4494, 91, 8550, 8552, 1984, 4747 + ], + "quote", + [0, 3875, 89, 6588, 6081, 6696, 6913, 2696, 2700, 7182], + [1, 2343, 7339], + [0, 7340, 7341, 7342, 2537], + [0, 10895, 10897, 2007, 20378, 10898, 3090, 3530], + [0, 8850, 816, 10902, 10904, 4042, 4227, 4232, 91], + [0, 4042, 1932, 3378, 5260, 10906, 3209], + [1, 2343, 7344], + [0, 7345, 7346, 7347, 2399], + [0, 10895, 5251, 1699, 10912, 814], + [0, 53, 5889, 5583, 811, 8850, 1856, 4042, 4227, 10916], + [0, 4042, 1932, 6778, 3378, 5260], + [1, 2343, 7352], + [2, 7350, 7351], + [3, 818, 9], + "gent-chat", + [0, 7354, 7355, 7356, 2537], + "microdiff", + [ + 0, 1415, 4449, 1594, 1983, 1437, 2205, 3188, 3539, 668, 2026, 10923, 2602, 4213, 1457, 10947, 10925, 10927, + 10929, 2858, 10930, 10931, 10933, 10935, 606, 10936, 10939, 10940, 1030, 10942, 608, 603, 9110 + ], + [ + 0, 10944, 3348, 89, 1177, 4039, 10946, 1984, 1894, 3824, 6520, 91, 9227, 4874, 7819, 2990, 4880, 4892, 3401, + 10949, 6494, 4883, 4131, 4315, 10951, 1959, 1895, 1947, 1955, 1011, 1961, 3708, 10960, 1009, 10964 + ], + [0, 10946, 9134, 6869, 8172, 10966, 8623, 1745], + [1, 2343, 7359], + [2, 819, 6706], + [0, 7360, 7361, 7362, 2523], + [ + 0, 10973, 10981, 10984, 2161, 7610, 7353, 3266, 188, 7349, 10990, 10992, 28910, 11005, 7358, 10975, 10995, 8079, + 29841, 10996, 10978, 7374, 10999, 11003, 28843 + ], + [ + 0, 23531, 8648, 29273, 11016, 5337, 11018, 2611, 2832, 89, 11022, 4383, 1983, 11026, 11033, 1984, 11039, 7387, + 11041, 28988 + ], + [0, 4627, 1745, 3452, 11043, 4386, 8124, 188, 8588], + [1, 2343, 7364], + [0, 7365, 7366, 7367, 2537], + [0, 11049, 7610, 10975, 8079, 7387], + [0, 11051, 6798, 6806, 2078, 1983, 1984, 4745, 818, 11039], + [0, 5592, 1745, 2078, 3452, 8124], + [1, 2343, 7369], + [0, 7370, 7371, 7372, 2537], + [0, 11064, 11065, 11066, 1699, 11071, 11073], + [ + 0, 11075, 11076, 11079, 11080, 11082, 11083, 4856, 6494, 11085, 6503, 1170, 1364, 1414, 1610, 2026, 2633, 2899, + 11086, 3750, 4261, 4474, 91 + ], + [ + 0, 13428, 1388, 11862, 11861, 11857, 8210, 11088, 8214, 27718, 8791, 181, 4967, 1098, 89, 188, 5982, 6969, 1973, + 5472 + ], + [1, 2343, 7376], + [2, 7375, 582], + [3, 11003, 12], + [0, 7377, 7378, 7379, 2399], + [0, 11064, 11065, 11066, 11093, 1699, 11073], + [0, 11075, 6503, 11096, 11105, 11109, 11111, 11112, 1170, 1414, 1610, 2899, 11086, 11113, 4261, 824], + [ + 0, 13428, 1388, 11862, 11861, 11857, 8210, 11088, 8214, 27718, 8791, 181, 4967, 5982, 6969, 1973, 5472, 824, + 11116, 11117 + ], + [1, 2343, 7381], + [0, 7382, 7383, 2514, 2537], + [0, 11124], + [0, 11126, 11130, 11133, 11134, 11138, 668, 2675, 2832, 2990, 2899, 3421, 1894], + [2, 10829, 45], + [1, 2343, 7386], + [0, 7388, 7389, 7390, 2537], + [2, 11004, 23], + [0, 89, 3824, 11143, 602, 7384, 11146, 11151], + [ + 0, 1983, 89, 4451, 3555, 29318, 3824, 16485, 91, 9311, 3975, 4880, 30157, 6271, 7610, 32415, 3120, 10895, 28829, + 3968 + ], + [0, 1739, 1745, 4270, 29043, 10824, 11156, 29045, 1783, 29181, 6718, 25172, 4627, 4963, 89, 188, 1098, 3709, 5926], + [1, 2343, 7392], + [0, 7393, 7394, 7395, 2487], + [ + 0, 11161, 11164, 5145, 11168, 97, 8597, 449, 11172, 452, 456, 11175, 11179, 11182, 11185, 11186, 11188, 1325, + 11189, 1461, 1582, 1673, 11191, 11192, 5561, 11193, 11196, 11197, 11199, 11201, 11202, 11204, 11207, 5060, + 11208, 11210, 11212, 11213, 11216, 11219, 11220, 11221, 11223, 11224, 11225, 11228, 11231, 11233, 3787, 11235, + 11236, 11238, 11240, 11242, 3788, 11244, 11246, 11249, 11251, 3789, 3810, 11253, 11257, 11261, 3906, 11264, + 4426, 4427 + ], + [ + 0, 5076, 53, 11267, 11271, 368, 7948, 11273, 11274, 10875, 11275, 10821, 10825, 10827, 10828, 11277, 11282, + 11285, 10837, 10841, 11288, 966, 968, 972, 974, 11290, 5087, 11292, 11296, 11300, 11301, 4870, 8149, 11303, + 11305, 4880, 11307, 4882, 4883, 11312, 11315, 11317, 11320, 11322, 1009, 1011, 11325, 11331, 11333, 1195, 11335, + 1437, 1448, 1610, 11336, 1789, 11343, 8161, 1177, 1879, 1895, 1915, 1924, 1938, 1939, 1947, 1948, 1959, 1961, + 10851, 1982, 2071, 11345, 2151, 2193, 2070, 2665, 2675, 2686, 2696, 2697, 2720, 2758, 1192, 11347, 2771, 2780, + 2784, 11348, 11350, 2814, 2832, 11356, 5102, 2990, 1209, 11357, 3213, 3445, 1894, 3703, 3717, 3725, 3730, 3763, + 11360, 11362, 11363, 89, 3807, 3817, 3820, 3824, 4934, 11366, 11368, 11371, 11374, 3885, 11377, 11378, 3984, + 3985, 11380, 11382, 11383, 4135, 4183, 4201, 4320, 11384, 11389, 4323, 11396, 11397, 4072, 4474, 4508, 91, + 11400, 4676, 11401, 11405 + ], + [0, 5127, 4627, 4963, 4964, 5130, 4967, 89, 5128, 181], + [1, 2343, 7397], + [0, 7398, 7399, 7400, 2537], + [0, 11413, 11416, 11417, 11420, 11421, 11422, 2161, 1209, 11428, 11434, 4443, 3348], + [0, 549, 4870, 11438, 7819, 1759, 1999, 3400, 3421, 11439, 4469, 11440, 4494, 1984, 4677, 4693], + [0, 11442, 11443, 11445, 11446, 11449, 11448, 11450, 11451, 11452, 11453, 11454], + [2, 11425, 7402], + "-fork", + [2, 12213, 7404], + [3, 12229, 13], + [1, 2343, 7407], + [2, 7408, 594], + [0, 7409, 7399, 7400, 2523], + [3, 7403, 15], + [0, 11413, 11416], + [1, 2343, 7411], + [0, 7412, 7413, 7400, 2537], + [0, 11417, 11420, 11421, 11422, 7401, 2161, 2674, 1209, 11426, 3310, 11428, 11430, 11434, 4443, 3348], + [ + 0, 11436, 4870, 4874, 11438, 7819, 1166, 1759, 3400, 1894, 11439, 4469, 4474, 11440, 4487, 4490, 91, 2924, 4677, + 4693 + ], + [1, 2343, 7415], + [0, 7416, 7417, 7418, 2487], + [0, 2203], + [0, 107, 7844, 11470, 1177, 1895, 1953, 1972, 3709, 91, 4523], + [0, 1177, 1541, 7625, 3709], + [1, 2343, 7420], + [0, 7421, 7422, 7423, 2523], + [0, 26364, 23826, 11477, 1082, 977, 11478, 11479, 2929, 3090, 11480, 11481, 5152, 4200], + [0, 13471, 8648, 840, 11485, 4874, 5162, 11486, 4042, 3709, 4359, 91, 1983, 1984], + [0, 5130, 11489, 3709, 5167, 1983], + [1, 2343, 7425], + [0, 7427, 7428, 7429, 2523], + "location", + [0, 30023, 11501, 1699, 3090, 11497], + [0, 2278, 1983, 3709, 5245], + [0, 11504, 11506, 1983, 3709], + [1, 2343, 7431], + [0, 7432, 7434, 7435, 2523], + [0, 53, 11516, 87, 90, 92, 11518, 11520, 11522], + "routing", + [0, 1195, 3150, 4027, 2924], + [0, 11525, 8221, 89, 2924, 11526], + "redirect", + [1, 2343, 7438], + [0, 7439, 7440, 7441, 2523], + [0, 11533, 11534], + [0, 11536, 28491, 1610, 91], + [0, 11538, 11539, 1172, 91, 9561, 2924, 11540], + [1, 2343, 7443], + [0, 7444, 7445, 7446, 2523], + [0, 1367, 6372], + [ + 0, 2070, 2323, 1192, 2278, 4039, 3561, 1894, 1587, 2504, 4320, 2464, 91, 4874, 1165, 2482, 3678, 4330, 11598, + 11592, 11591, 11595 + ], + [0, 4329, 4963, 5926, 11600, 11601, 6082, 8727, 181, 4967], + [1, 2343, 7448], + [0, 0, 2667, 7449, 2399], + [ + 0, 11608, 11609, 11612, 11613, 190, 11615, 11617, 4967, 91, 5284, 11619, 11622, 11624, 11626, 11627, 11630, + 11631, 11633, 11634, 11636, 11639, 11640, 32767 + ], + [1, 2343, 7451], + [0, 4424, 4429, 4442, 2537], + [1, 2343, 7453], + [0, 7454, 7455, 7456, 34352], + [0, 97, 1562, 4484], + [ + 0, 53, 83, 87, 92, 19181, 442, 8648, 5583, 811, 816, 6373, 10615, 11796, 4874, 1009, 1011, 1208, 1177, 1895, + 11935, 11938, 11940, 11943, 3401, 1894, 4042, 11802, 4172, 11803, 91 + ], + [0, 965, 1936, 11806, 11807, 5284, 11815, 8221, 91], + [1, 2343, 7458], + [0, 7459, 7460, 2514, 2537], + [0, 11821], + [0, 972, 30788, 4880, 4883, 1030, 1597, 3401, 89, 3824, 5564, 7464, 27122], + "pkgroll", + [1, 2343, 7468], + "create-vue", + [2, 7467, 7472], + [2, 7466, 7469], + "create-e", + [3, 11821, 16], + [0, 7459, 7470, 7471, 2523], + "slint-config", + [0, 3709, 4355, 5160, 1972, 11827, 1011, 27122, 840], + [0, 32401, 3766, 3709], + "persist-client-core", + [1, 2343, 7474], + [0, 7475, 7476, 7477, 2537], + [0, 11833], + [0, 11835, 5087, 1009, 11837, 1177, 1886, 11840, 1895, 1955, 1958, 1192, 2780, 2821, 1776, 3165, 4468, 4469, 91], + [0, 11842, 11843, 11846, 11847, 6875, 4967, 5576, 4978], + [1, 2343, 7479], + [0, 7480, 7481, 7482, 2523], + [0, 97, 966], + [0, 1651, 91, 11853, 3400], + [0, 5472, 1651, 181, 965, 11857, 6564, 11861, 11862], + [1, 2343, 7484], + [0, 7485, 7486, 7487, 2537], + [0, 11357, 11869, 3527, 3717, 97, 51, 11868, 11871], + [0, 2832, 91, 11853, 1393, 1423, 11875, 968, 11884, 11879], + [0, 5472, 181, 965, 2832, 2275, 11857, 6564, 11861, 11862], + [1, 2343, 7489], + [0, 7490, 7491, 7492, 2537], + [0, 11891, 11869, 11890, 3527, 63, 11871], + [0, 2832, 2022, 4042, 1984, 91, 11853, 11893, 3717, 11899, 811, 11884, 11896], + [0, 5472, 965, 1192, 2832], + [1, 2343, 7494], + [0, 7495, 7496, 7497, 2399], + [0, 1437, 11891, 2777, 3717, 11907], + [ + 0, 1192, 2675, 89, 1177, 1894, 48, 1527, 91, 53, 5087, 4880, 3720, 3857, 97, 4131, 5091, 3904, 11909, 1652, + 4889, 5085, 5103, 11912 + ], + [0, 5472, 1975, 1192, 3857], + [1, 2343, 7499], + [0, 6263, 7500, 7501, 2523], + [0, 966, 968, 4880, 4883, 1437, 11918, 2777, 11853, 3401, 89, 3824, 4039, 91], + [0, 5472, 89, 181, 965, 2832, 2275, 11857, 6564, 11861, 11862], + [1, 2343, 7503], + [0, 0, 7504, 7505, 2537], + [ + 0, 2742, 2832, 89, 2022, 668, 4474, 11944, 3824, 11890, 91, 11853, 4880, 11875, 11952, 11943, 11931, 11938, + 11929, 966, 11948, 11935, 972, 11933, 11940, 968, 5556, 11925, 6515, 1915, 11924 + ], + [0, 7214, 6627, 89, 5472], + [1, 2343, 7507], + [0, 7508, 0, 7509, 2487], + [0, 10347, 11959, 978, 989, 991, 993, 996], + [0, 11961, 38, 5995, 27, 5130, 5592], + [1, 2343, 7511], + [0, 0, 0, 7512, 34352], + [0, 11961, 10339, 10340, 5122, 5995, 977], + [1, 2343, 7514], + [0, 0, 0, 7515, 2443], + [0, 11961, 10339, 10340, 5122, 5995, 2947, 977], + [1, 2343, 7520], + "fp", + "drag", + "react ", + [0, 7533, 7536, 7537, 2537], + "animation", + [2, 7519, 7521], + "pure", + "fantasy-land", + [2, 4570, 7046], + [3, 5941, 12], + [2, 7526, 1155], + "framer", + [3, 7527, 19], + [2, 7529, 6600], + "pose", + "tacit", + [0, 11974], + "balanced", + "react pose", + [0, 1414, 4494, 2675, 91, 4874, 975, 11976, 192, 11978, 5467], + [0, 11961, 10339, 10340, 5122, 5995], + [1, 2343, 7539], + [0, 0, 0, 7540, 2487], + [0, 11961, 10339, 10340, 5122, 5995, 984], + [1, 2343, 7542], + [0, 0, 0, 7543, 34352], + [0, 11961, 10339, 10340, 5122, 5995, 986, 11988, 10345], + [1, 2343, 7545], + [0, 7546, 0, 7547, 2537], + [0, 987], + [0, 11961, 10339, 10340, 5122, 5995, 988, 2739, 11995, 11996], + [1, 2343, 7549], + [0, 7550, 0, 7551, 2487], + [0, 10347, 12003, 1001, 1003], + [0, 11961, 10339, 10340, 5122, 5995, 990, 705], + [1, 2343, 7553], + [0, 7554, 0, 7555, 2537], + [0, 11974, 3171, 12011, 978, 980, 12016, 991, 997], + [0, 11961, 10339, 10340, 5122, 5995, 10376], + [1, 2343, 7557], + [0, 7558, 0, 7559, 4139], + [0, 11959], + [0, 11961, 10339, 10340, 5122, 5995, 38], + [1, 2343, 7561], + [0, 7562, 0, 7563, 2523], + [0, 3171, 985, 12027], + [0, 11961, 10339, 10340, 5122, 5995, 10376, 710, 10384], + [1, 2343, 7565], + [0, 7566, 0, 7567, 34352], + [0, 3171, 12027], + [0, 11961, 10339, 10340, 5122, 5995, 990, 705, 1000, 5284], + [1, 2343, 7569], + [0, 0, 0, 7570, 2487], + [0, 11961, 10339, 10340, 5122, 5995, 990, 705, 1002, 3634, 3766], + [1, 2343, 7572], + [0, 0, 0, 7573, 2523], + [ + 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, + 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, + 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, + 12094 + ], + [1, 2343, 7575], + [0, 7576, 0, 7577, 34352], + [0, 12099, 12103, 12104, 12105, 4484], + [0, 12108, 7188, 5995, 11100, 6740, 5592], + [1, 2343, 7579], + [0, 7580, 7581, 7586, 2443], + [0, 2687, 5569, 12118, 1012, 12121, 12123, 12124, 5604], + [0, 1091, 3127, 1984, 1894, 12126, 9363, 4880, 3117, 12127, 4555, 8818, 7677, 3137, 12133, 5551, 12137], + [2, 7583, 7584], + [3, 439, 8], + "react/eslint-plugin", + [2, 5557, 26375], + [0, 1177, 6741, 6939, 91], + [1, 2343, 7588], + [0, 7589, 7590, 7591, 2487], + [0, 1676, 5552, 12124, 5604, 12145], + [0, 1984, 7677], + [0, 6892, 5286, 5284, 91, 57, 5341, 1177], + [1, 2343, 7593], + [0, 7596, 7590, 7599, 2523], + "point-free", + "curried", + [0, 5552, 439, 5604, 12145], + "gestures", + "3d", + [0, 1177, 91, 6742], + [1, 2343, 7601], + [0, 7602, 7622, 7626, 4139], + [ + 0, 365, 370, 12159, 1461, 12160, 12163, 1832, 12166, 12170, 2609, 1209, 12172, 3220, 3744, 12173, 11202, 12175, + 11216, 11224, 3787, 3789, 3849, 11374, 3911, 4023, 4163, 4649, 12176 + ], + [3, 346, 11], + "abs-extension", + [2, 7603, 7604], + "cssfilter", + "root-node-polyfill", + [2, 2183, 7607], + "slugger", + [2, 2287, 7609], + "deflist", + [2, 3108, 7611], + [3, 5953, 13], + "eta", + [2, 7613, 7614], + "sup", + [2, 3108, 7616], + [3, 3125, 13], + "rule-", + [2, 7619, 6706], + [2, 7618, 7620], + [ + 0, 48, 53, 61, 71, 83, 85, 87, 90, 92, 192, 5467, 968, 972, 4859, 5540, 4870, 12179, 4880, 4883, 1009, 1011, + 12182, 12184, 1170, 1178, 1193, 1195, 12186, 1210, 12191, 12193, 1527, 12195, 1628, 1652, 1843, 1845, 8160, + 1177, 1959, 1961, 2092, 2151, 2651, 2675, 1192, 12196, 11348, 12198, 2990, 3177, 3222, 3463, 1894, 3786, 89, + 3824, 3895, 3904, 4257, 4307, 4320, 4946, 12201, 12205, 12206, 91, 4537, 4027, 2924, 4676, 4677 + ], + [3, 346, 10], + [2, 7623, 5891], + [3, 1879, 13], + [0, 89, 5128, 4627, 4963, 4967, 12208], + [3, 3703, 9], + [2, 7627, 1541], + [1, 2343, 7649], + "sconfig", + [2, 7603, 7630], + "@types/css", + "ithub-slugger", + [2, 5246, 7633], + [3, 4869, 9], + "-yaml", + [2, 7635, 7636], + "arkdown-it", + [2, 6502, 7638], + "-attrs", + [2, 7639, 7640], + "anitize-html", + [2, 5051, 7642], + [2, 1368, 4406], + [2, 668, 7644], + [3, 5961, 13], + "estgen", + [2, 7646, 7647], + [0, 7652, 0, 7653, 2523], + "yandex", + "yfm", + [ + 0, 1497, 2813, 1209, 3266, 12224, 9355, 12220, 12226, 12233, 12217, 12222, 2626, 12215, 12219, 12232, 12216, + 7406, 7403 + ], + [0, 6108, 6038, 5130, 1936, 12236, 1932, 6106, 12214, 6105], + [1, 2343, 7655], + [0, 7670, 0, 7691, 2523], + "magic-", + "bytes.js", + [2, 7656, 7657], + [3, 347, 11], + [2, 7659, 614], + "discord-", + "api-types", + [2, 7661, 7662], + "@sapphire/snowflake", + [2, 7659, 6910], + [3, 7664, 10], + "async-queue", + [2, 7666, 7667], + "@vladfrangu/async_event_emitter", + [0, 1018, 1025], + "turbo", + [2, 7659, 3888], + [3, 4828, 16], + [2, 7673, 1803], + "@vite", + "st/coverage-v8", + [2, 7675, 7676], + "@favware/cliff-jumper", + "-pretty", + [2, 4525, 7679], + [2, 1876, 7680], + "extract", + "extractor", + [2, 4610, 7683], + [2, 7659, 7684], + "esbuild-", + "plugin-v", + "ersion-injector", + [2, 7687, 7688], + [2, 7686, 7689], + [0, 10039, 12244, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], + "discordapp", + "discordjs", + [1, 2343, 7695], + [0, 7696, 0, 7697, 2537], + [0, 12253], + [0, 1017, 12255, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], + [1, 2343, 7699], + [0, 7670, 0, 7700, 2537], + [0, 6847, 12260, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], + "generated", + [1, 2343, 7703], + [0, 7704, 0, 7705, 4139], + [0, 12265, 1025], + [0, 1022, 12268, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], + [3, 5923, 13], + [2, 4364, 57], + [2, 7706, 7707], + "@aws-sdk/client-s3", + [2, 7623, 5576], + [1, 2343, 7712], + [0, 0, 0, 7732, 2487], + "ranslation", + [2, 3118, 7713], + [2, 7623, 7714], + [3, 7715, 11], + "ermaid-extension", + [2, 7716, 7717], + "openapi-", + [2, 7719, 7188], + [2, 7623, 7720], + "yfm2xliff", + [2, 352, 7722], + [3, 692, 9], + [2, 7724, 364], + [3, 4869, 11], + "-safe", + [2, 2849, 7727], + [2, 7726, 7728], + "@yandex-cloud/nodejs-sdk", + "bem-cn-lite", + [0, 594, 12274, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], + "nanostores", + "threads", + [2, 7734, 4406], + [1, 2343, 7741], + [2, 4807, 1149], + [3, 4856, 10], + "lk", + [2, 7738, 7739], + [0, 7742, 7753, 7754, 2523], + [0, 3763, 1594, 2026, 1000, 1536, 12286, 12285, 12287, 12284, 1032], + "tml-escaper", + [2, 6495, 7743], + "ime-types", + [2, 6502, 7745], + [3, 5055, 9], + "elljs", + [2, 7747, 7748], + "@types/t", + "ar-stream", + [2, 7750, 7751], + [0, 1192, 4135, 4468, 4342, 1193, 91, 53, 9227, 5087, 4874, 12292, 11976, 6494, 12290, 9240, 7806, 7708], + [0, 12294, 4967, 970, 12295, 12296, 5983, 6802], + [2, 12302, 26070], + [1, 2343, 7757], + [0, 7764, 7765, 7766, 2537], + [3, 7639, 15], + [2, 7758, 671], + [3, 7730, 14], + [2, 7760, 7625], + [2, 7760, 7628], + [2, 7760, 2190], + [0, 34690, 12301, 7733, 28314, 7755, 12305, 12307, 28554], + [ + 0, 4481, 4494, 4493, 1983, 2675, 1177, 4039, 12309, 1984, 668, 3561, 23535, 4320, 3350, 3541, 28464, 4201, 4360, + 91, 4874, 2990, 3400, 4880, 29000, 29038, 11976, 30684, 17214, 4328, 33264, 33385, 34203, 4523, 34205, 7677, + 33382, 5517, 5530, 34207, 4323, 12312, 32818, 5535, 12315, 30630, 11396 + ], + [ + 0, 11608, 12318, 12319, 12322, 12324, 12326, 12328, 12329, 12331, 11612, 12334, 12336, 11010, 12337, 12338, 190, + 12339, 4967, 91, 12342, 12346, 12348, 12349, 12350, 11619, 11622, 11624, 12354, 12355, 11640 + ], + [1, 2343, 7768], + [0, 7769, 7770, 7771, 2523], + [0, 1593, 4376, 53, 1393, 3090, 87, 3957, 12361, 5658, 5660, 5778, 5810], + [0, 20378, 1983, 1082, 1531, 3527], + [0, 4967, 1983, 11504, 1028], + [1, 2343, 7773], + [0, 7774, 7775, 7776, 2487], + [0, 53, 12370, 12372, 28465, 10879, 3878], + [0, 30521, 89, 3824, 28865, 1531], + [0, 1172, 27158, 89, 3878, 1983, 11504], + [1, 2343, 7778], + [0, 7779, 7780, 7781, 2523], + [0, 1012, 2071, 4523, 4630], + [0, 5536, 4874, 1177, 1988, 2020, 7461, 1894, 4494, 91, 1984, 188], + [0, 188, 7463, 7465, 1177, 91], + [1, 2343, 7783], + [0, 7784, 7785, 7786, 2399], + [0, 1091, 1092, 12384, 2657, 12385, 3509, 38, 4151, 7707, 5971, 4745], + [0, 2026, 2899, 4255, 4342], + [0, 2026, 3452, 8124, 1745], + [3, 980, 17], + [2, 7787, 57], + "encrypt", + "encrypter", + [2, 1576, 7790], + [2, 3115, 1623], + [2, 2287, 7792], + "greenlock-express", + "memoryst", + [2, 7795, 147], + "minisearch", + "selfsigned", + "sitemap", + "sql.js", + "workerpool", + [1, 2343, 7825], + "ody-parser", + [2, 4853, 7803], + "mpression", + [2, 4860, 7805], + "-session", + [2, 6494, 7807], + "ormidable", + [2, 5537, 7809], + "mpts", + [2, 6508, 7811], + [3, 7643, 9], + [2, 7813, 367], + "ql.js", + [2, 5051, 7815], + "@types/u", + "uid", + "@types/uuid", + "@types/w", + "orkerpool", + [2, 7820, 7821], + "wasm", + [2, 7686, 7823], + [0, 7829, 7830, 7831, 2523], + "razor", + "sqlite", + "aspx", + [ + 0, 12393, 12394, 11275, 842, 12396, 9363, 12397, 12399, 12400, 12403, 1461, 12405, 12406, 1582, 1699, 12409, + 1835, 12412, 12415, 12419, 7610, 12421, 2572, 2579, 2584, 12422, 2613, 2646, 12424, 2822, 3070, 12427, 12429, + 3412, 3547, 9054, 12431, 3725, 3786, 11219, 11240, 3788, 11244, 3789, 3810, 5564, 3846, 12435, 12438, 3963, + 12441, 3978, 12443, 9340, 3988, 3992, 3999, 2278, 7799, 12444, 12445, 4549, 4555, 12447, 1002, 12448, 12449, + 12452 + ], + [ + 0, 192, 5467, 7634, 12455, 12458, 7637, 12459, 4874, 12461, 8149, 4880, 4882, 4883, 12462, 12463, 12467, 1177, + 10321, 2071, 2079, 12471, 12472, 2675, 2990, 1894, 3706, 3708, 89, 3824, 4320, 4474, 91, 1984, 12473, 12475 + ], + [0, 1179, 12445, 2924, 89, 12478, 12479, 1783, 4963, 1745], + [1, 2343, 7835], + "@dnd-kit/core", + [3, 7833, 9], + [0, 0, 7841, 7843, 2537], + "modifiers", + [2, 7834, 7836], + "sortable", + [2, 7834, 7838], + [2, 7834, 6731], + [0, 4874, 1009, 1011, 1177, 1881, 1938, 4039, 4042, 4076, 91], + "ui-components", + [0, 5995, 12586, 12588, 12589, 12590, 12592, 12593], + "@stylistic/eslint-plugin-js", + [3, 7844, 11], + [2, 4324, 1932], + [2, 7845, 7846], + [1, 2343, 7852], + "@wordpress/api-fetch", + [3, 7849, 11], + "block-", + [0, 7853, 7859, 7860, 2537], + [0, 12600], + "ion-", + [2, 7854, 1464], + [2, 7682, 7855], + [2, 5313, 7856], + [2, 7850, 7857], + [ + 0, 53, 5241, 87, 94, 12602, 12604, 6503, 4874, 1145, 1503, 12607, 1177, 2297, 2881, 2886, 2895, 12609, 2897, + 2900, 2910, 2899, 3400, 3421, 3456, 4039, 4042, 4045, 12611, 4055, 4067, 4071, 4075, 12613, 4474, 12614, 91 + ], + [0, 12616, 7102, 2013, 2018, 12617, 12618, 12621, 12622, 12620, 6553, 1858], + [1, 2343, 7864], + [2, 7153, 694], + [2, 5335, 7862], + [0, 7865, 7866, 7867, 2523], + [0, 3173, 12627], + [0, 3421, 2899, 1177, 1693, 1954, 1938, 1958, 1903, 1948, 1970], + [0, 1563, 12631, 8316, 1080], + "promis", + "ify-", + [3, 1455, 13], + [2, 7869, 7870], + [2, 7868, 7871], + "swc-loader", + [1, 2343, 7875], + [0, 7876, 7878, 7879, 2523], + [0, 1149, 1362, 1209, 3230, 1552], + "ol", + [0, 2899, 1429], + [0, 2663, 1081, 5122], + "mixin", + "WordPress", + [1, 2343, 7883], + [0, 7884, 0, 2514, 2399], + [0, 1082], + [1, 2343, 7886], + [0, 7896, 7898, 7899, 4139], + [3, 4872, 15], + "amelcase", + [2, 7887, 7888], + [3, 7746, 9], + "nimist", + [2, 7890, 7891], + [3, 5090, 9], + "etty-ms", + [2, 7893, 7894], + [0, 1170, 1437, 1525, 2088, 2151, 2720, 3467, 7956, 4183], + ".d.ts", + [0, 811, 8850, 816, 10615, 12654, 4864, 12656, 4866, 4874, 4039, 4042, 8849, 11054, 4076, 12206, 4484, 4487, 91], + [0, 200, 1085, 188, 89, 12659, 12660, 91, 6710], + "definitions", + [1, 2343, 7902], + [0, 0, 7903, 7904, 2537], + [0, 1429, 2685, 2899, 1894, 4039], + [0, 2056, 3164, 12666, 4560], + [2, 363, 3428], + "memoize", + [2, 363, 7906], + [3, 370, 10], + "erialize", + [2, 7908, 7909], + [3, 1212, 14], + "acros", + [2, 7911, 7912], + "root", + "find-root", + [1, 2343, 7918], + "stylis", + [0, 0, 7923, 7924, 2523], + [3, 5272, 14], + "d-nodes", + [2, 7919, 7920], + [2, 1174, 7921], + [0, 2899], + [0, 12674, 1087, 2124, 12619, 12675], + [1, 2343, 7926], + [0, 7927, 7928, 7929, 4139], + [0, 12680, 12681, 1676, 12685, 5303], + [0, 5245, 12688, 6501, 4874, 7677, 4193, 4474, 4494, 1984], + [0, 12692, 12693, 1605, 12694, 4116, 8791], + [1, 2343, 7934], + [2, 366, 6990], + [2, 7908, 5375], + [2, 363, 594], + [0, 7936, 7938, 7939, 2487], + "@definitelytyped/dtslint", + [ + 0, 43, 46, 1093, 1116, 1132, 1140, 1298, 1316, 1318, 1321, 1322, 1336, 1339, 1342, 12701, 1344, 1346, 1348, + 1350, 1352, 12703, 1354, 1356, 1358, 12704, 1376, 1386, 1402, 1425, 1428, 12705, 1440, 1450, 12708, 12709, + 12710, 12711, 12714, 1663, 1706, 1711, 1715, 2019, 12715, 12719, 2058, 2059, 2177, 2217, 12720, 2563, 2567, + 2605, 2606, 12722, 2723, 2950, 2954, 2957, 12726, 2962, 3086, 3099, 12730, 3134, 12733, 3186, 3240, 3245, 3262, + 3295, 3439, 12736, 3443, 3472, 3535, 3558, 12737, 3777, 3931, 12740, 4105, 4124, 12743, 12747, 4168, 4173, 4177, + 4192, 4206, 4235, 12749, 4236, 4258, 12750, 4267, 4338, 12755, 4347, 4352, 4370, 4433, 4456, 4461, 12756, 12757, + 12760, 4548, 12763, 12764, 4724 + ], + "import-cwd", + [0, 4880, 4883, 2079, 89, 3824, 91], + [0, 4627, 4963, 4964, 5130, 4967, 89, 5128, 181, 4653], + "is-pro", + "p-valid", + [2, 7940, 7941], + [2, 363, 7942], + [3, 7933, 10], + "se-insertion-effect-with-fallbacks", + [2, 7944, 7945], + [1, 2343, 7949], + [2, 363, 89], + [0, 7950, 7951, 7952, 2537], + [ + 0, 12771, 12773, 12775, 1389, 12776, 1536, 1676, 12777, 12779, 2026, 12783, 12785, 2659, 12788, 2822, 12789, + 12792, 12793, 3183, 12795, 12799, 12802, 3923, 12809, 4153, 4165, 12812, 12814, 12818, 3348, 4650 + ], + [0, 12820, 1610, 2554, 3421, 12823, 4255, 4389, 4400], + [0, 1090, 1388, 12826, 4384, 4389, 5472], + [1, 2343, 7954], + [0, 7955, 7958, 7959, 2523], + [0, 2069, 12832, 12834, 12837], + [2, 17912, 7957], + "estimator", + [ + 0, 12839, 811, 8850, 816, 10817, 4856, 6503, 4874, 12842, 1009, 1011, 1092, 1389, 1429, 1610, 1673, 12846, 1177, + 1895, 2070, 2675, 12847, 2806, 2820, 12848, 2297, 2881, 2900, 2990, 2899, 12849, 3310, 3421, 1894, 12850, 4042, + 4073, 4474, 12851, 91, 12852 + ], + [0, 6671, 2844, 1155, 7020, 2860, 2845, 7527, 7530], + [1, 2343, 7961], + [0, 7962, 7963, 7964, 2537], + [0, 1091], + [0, 12839, 5087, 4874, 1009, 1011, 1091, 1177, 1895, 2675, 1192, 12848, 2990, 1894, 4468, 91], + [0, 12860, 6975, 1671, 7020], + [1, 2343, 7966], + [0, 7967, 7938, 7939, 2399], + [0, 43, 46, 1450, 3777, 4548], + [1, 2343, 7969], + [0, 6203, 7970, 7971, 2487], + [0, 3460, 12870], + [0, 1094], + [1, 2343, 7973], + [0, 7974, 7975, 7976, 2537], + [0, 12879, 4567], + [0, 12882, 2899, 3421, 4535], + [0, 12884, 12886, 12887], + [1, 2343, 7978], + [0, 0, 7979, 7980, 2487], + [0, 2278], + [0, 1623, 2278, 181, 6398, 6400, 2869, 12893], + [1, 2343, 7982], + [0, 0, 0, 7983, 2523], + [0, 1098, 5130, 1388, 12899], + [1, 2343, 7985], + [0, 0, 0, 7986, 2523], + [0, 1098, 5130, 1388, 7521, 12899], + [1, 2343, 7988], + [0, 7989, 0, 7990, 2523], + [ + 0, 12910, 12914, 19, 21, 24, 12915, 12917, 1149, 1165, 1437, 1532, 1628, 1637, 1676, 12918, 1687, 12923, 12925, + 12926, 2054, 2092, 7076, 2151, 12929, 2070, 2651, 2712, 2720, 12930, 2843, 2921, 2925, 695, 2969, 1209, 3181, + 12935, 3342, 3368, 3459, 3467, 3560, 3618, 3786, 3981, 814, 4039, 4085, 4111, 12936, 4135, 12937, 4230, 12944, + 4307, 4333, 4334, 1241, 4430, 91, 4027, 4648, 2924, 4681, 4689, 4695, 4769 + ], + [0, 1098, 1102], + [1, 2343, 7993], + [2, 27465, 3469], + [0, 0, 0, 7994, 2537], + [0, 12074, 29, 1388, 12899, 5027, 12951, 4963], + "blurup", + [1, 2343, 34387], + [0, 6323, 2398, 12956, 2899, 4425], + [ + 0, 7244, 1111, 12958, 12959, 12961, 12963, 12964, 12965, 12966, 12967, 12968, 12969, 12970, 12971, 12972, 12973, + 12974, 12975, 12976, 4984, 12977, 200, 12978, 1473, 1512, 7208, 9753, 6876, 7201, 12979, 12980, 6983, 12981, + 12982, 12983, 12984, 12986, 12987, 2929, 3073, 6807, 12990, 12991, 10958, 6616, 4166, 12992, 12994, 1871, 590, + 592, 7009, 2585, 6621, 12996, 12997, 4744, 12998 + ], + [1, 2343, 8000], + [0, 8001, 8002, 8003, 2487], + [0, 6639], + [0, 4874, 1166, 4481, 1906], + [ + 0, 1111, 7009, 7201, 200, 1871, 6621, 1867, 1106, 6983, 4166, 4744, 3073, 6807, 6876, 2585, 13005, 6769, 12619, + 1501, 5281, 13006, 8628, 13007, 1468, 13008, 13009, 13011 + ], + [1, 2343, 8005], + [0, 0, 8006, 8007, 2399], + [0, 1906, 1166, 4481, 1107], + [ + 0, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 1871, 6621, 1867, 6983, 6616, 7244, 4166, 4744, 6876, 2585, + 1108, 6961, 23, 3529, 1973, 2100, 13017 + ], + [1, 2343, 8009], + [0, 0, 8010, 8011, 2523], + [0, 1906, 1166, 4481, 13024], + [ + 0, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 1871, 6621, 1867, 6983, 6616, 7244, 4166, 4744, 3073, 6807, + 6876, 2585 + ], + [1, 2343, 8013], + [0, 0, 0, 8014, 2487], + [0, 1111, 1512, 200], + [1, 2343, 8016], + [0, 8017, 8018, 8019, 2443], + [ + 0, 11161, 13035, 97, 8597, 7905, 13037, 13038, 13042, 1156, 1639, 1673, 13045, 13047, 1209, 3021, 4023, 11264, + 1849, 7917, 4427, 13049, 4649 + ], + [ + 0, 48, 53, 61, 73, 76, 78, 13051, 81, 5806, 13052, 5835, 83, 5853, 5889, 85, 87, 92, 192, 5467, 692, 5583, 7806, + 4864, 5087, 13055, 5139, 13057, 7639, 4874, 13059, 1009, 1011, 1028, 11016, 13061, 13063, 13067, 13069, 1031, + 11018, 13072, 10984, 13077, 1082, 13078, 1165, 1170, 1178, 1193, 1195, 1205, 13080, 1208, 13085, 1426, 1437, + 1448, 1503, 12405, 13086, 1525, 13088, 1610, 1628, 1630, 13089, 1668, 13090, 13092, 11343, 13093, 668, 8161, + 1869, 1177, 1895, 1937, 1938, 1939, 1948, 13097, 1955, 1988, 2071, 11345, 2151, 2070, 2205, 2226, 2323, 2338, + 13099, 2529, 2651, 2675, 13101, 13103, 1192, 2780, 2784, 13105, 13108, 2817, 13110, 4868, 695, 2969, 13115, + 13118, 2990, 13119, 3105, 3107, 3112, 3114, 13122, 3127, 13123, 3177, 3183, 3188, 3213, 3220, 3412, 3561, 3618, + 1894, 3720, 3725, 3730, 3786, 9340, 3992, 13124, 13127, 8304, 13128, 4039, 13129, 13131, 4135, 4207, 13134, + 4307, 4320, 11384, 11389, 4323, 11396, 4328, 4409, 4431, 4443, 4468, 4469, 4494, 4508, 91, 13135, 4549, 4027, + 11400, 1983, 188, 13138, 13142, 4630, 4633, 13145, 4634, 13149, 4639, 4640, 13151, 4646, 2924, 4676, 4677, 4681, + 4689, 13152, 11401 + ], + [0, 188, 8588, 5127, 4964, 1114, 13154, 4627, 4963, 181, 5130, 4967], + [1, 2343, 8021], + [0, 8022, 8023, 7395, 2537], + [ + 0, 1497, 1673, 97, 5145, 4427, 11161, 7992, 27467, 33386, 33387, 11185, 33389, 33393, 11164, 33396, 33397, + 33399, 33401, 33403, 33404, 33406, 33417, 13166, 33418, 33422, 33423, 33424, 33426, 13169, 8048, 33428, 33430, + 33431, 33433, 33436, 33441, 33443, 11168, 33444, 33447, 13159, 33449, 13162, 33450, 33451, 11264, 13165, 33452 + ], + [ + 0, 1091, 3467, 26713, 4390, 4494, 1789, 2070, 1192, 3445, 1170, 1437, 11336, 2675, 2696, 2742, 2832, 13233, + 3549, 89, 4164, 1759, 1177, 2079, 2814, 1209, 3984, 4039, 13241, 4135, 1086, 13078, 25131, 3725, 4508, 2924, + 1634, 2151, 2193, 11347, 3183, 3213, 1894, 13243, 11401, 1610, 16473, 2071, 5102, 11357, 3758, 11360, 3824, + 13214, 13215, 3310, 3560, 3985, 3988, 4183, 4201, 91, 5087, 4874, 12424, 2665, 2990, 3839, 11380, 368, 13204, + 13210, 4880, 13223, 33230, 11362, 13245, 33461, 7833, 692, 11301, 4870, 5254, 11325, 3330, 3717, 13235, 3999, + 11976, 7948, 27424, 13194, 13196, 11290, 8149, 11322, 7610, 11350, 27047, 11273, 11275, 16934, 4864, 11292, + 7892, 6510, 13213, 4934, 10875, 13205, 4883, 2758, 2771, 13232, 3885, 11377, 3978, 5076, 33233, 7839, 8998, + 29467, 7837, 7840, 643, 13200, 1939, 2686, 11366, 11400, 13198, 2584, 11348, 25366, 966, 11331, 1924, 2784, + 11368, 13175, 972, 1947, 2780, 13182, 13203, 13228, 11356, 4676, 11320, 3749, 13192, 968, 1961, 33635, 11300, + 13221, 13187, 7582, 974, 7585, 13178, 11312, 26969, 11382, 11371, 11296, 13188, 11274, 13240, 13189 + ], + [1, 2343, 8025], + [0, 8026, 0, 2514, 2523], + [0, 3445], + [1, 2343, 8028], + [0, 8029, 7938, 7939, 2537], + [ + 0, 43, 46, 1093, 1132, 1140, 1298, 1316, 1318, 1321, 1322, 1336, 1339, 1342, 1344, 1346, 1348, 1350, 12704, + 1376, 1386, 1425, 1428, 1440, 1450, 12709, 12714, 1663, 1706, 1711, 1715, 2019, 12719, 2177, 2217, 12720, 2563, + 2567, 2606, 12722, 2950, 2954, 2957, 2962, 3086, 3099, 3134, 3186, 3240, 3245, 3262, 3295, 3439, 12736, 3443, + 3472, 3535, 3558, 12737, 3777, 4124, 12747, 4173, 4177, 4192, 4206, 4235, 12749, 4236, 4258, 4267, 4338, 12755, + 4347, 4352, 4370, 4433, 4456, 4461, 12756, 12757, 12760, 4548, 12763, 12764 + ], + [1, 2343, 8031], + [0, 8032, 8033, 8034, 34352], + [0, 5381, 5383, 5446, 5394, 5408, 13261, 13262, 5458, 5461, 32772, 13264, 13267, 13272, 2993, 5438], + [ + 0, 5400, 5402, 5405, 13276, 5453, 5456, 192, 5467, 13280, 5470, 5473, 13282, 5474, 5476, 5478, 13286, 13287, + 1364, 1699, 1177, 1895, 1999, 2026, 2151, 2675, 2822, 2990, 3246, 3300, 3561, 4039, 4042, 13289, 10854, 4193, + 4449, 91, 5480, 4535, 13291, 3348 + ], + [0, 5926, 13293, 5592, 1117, 1745, 13294, 3422], + [1, 2343, 8036], + [0, 8037, 8038, 8039, 2537], + [ + 0, 1367, 1525, 13302, 8161, 13304, 2151, 2070, 2036, 2685, 2814, 13305, 1209, 3105, 3363, 3725, 4135, 4307, + 2924, 4677, 4709 + ], + [0, 4870, 6503, 4874, 1177, 13311, 1903, 1938, 1954, 1958, 2899], + [0, 5592, 1118, 2295, 1745, 4030, 7096], + [1, 2343, 8041], + [0, 8042, 8043, 8044, 2537], + [0, 13319, 1797, 4135, 4562, 4747], + [0, 9741, 4874, 5254, 4892, 1166, 2151, 91], + [0, 1118, 1783, 13322, 5592, 2295, 1745, 1179, 13325, 200, 13326, 6876, 4030, 7096, 13327, 13328], + [1, 2343, 8046], + [0, 8047, 8049, 8050, 2523], + [0, 1676, 13333, 3313, 2863, 4593], + [2, 41, 27443], + [0, 1429, 1431, 2899, 4193, 4196], + [0, 13336, 6645, 13338, 13339, 13340, 586], + [1, 2343, 8052], + [0, 8053, 0, 2514, 2537], + [0, 13345, 13346, 5506, 5514, 4484], + [1, 2343, 8055], + [0, 8056, 0, 8057, 4139], + [0, 13352, 13345, 1127, 13346, 5513, 5514, 4484, 13351], + [0, 5286, 6778, 13354, 5284, 13356, 3378, 89], + [1, 2343, 8059], + [0, 8060, 8061, 2514, 2487], + [0, 13346, 5514, 4484, 5515], + [0, 13364, 5087, 4874, 2220, 2222, 1192, 4039, 4042, 4468, 4487, 91], + [1, 2343, 8063], + [0, 8064, 8065, 2514, 2487], + [0, 1127, 13370, 4484], + [0, 13364, 5087, 13372, 2086, 2220, 2222, 1192, 13374, 4039, 4042, 4468, 4487, 91], + [1, 2343, 8067], + [0, 0, 8068, 8069, 2523], + [0, 1503, 1596, 13379, 1652, 2194, 2759, 2899, 3202, 3215, 3421, 4131, 4585], + [0, 7914, 3403, 6435, 614, 202, 1237, 5260, 13382, 3209, 1896], + [1, 2343, 8071], + [0, 8072, 8073, 8074, 2537], + [0, 13387, 13388, 13390, 13394, 13395, 1170, 1362, 13396, 1209, 3084, 3220, 3222, 13399, 4135, 13400, 4729], + [ + 0, 13406, 13411, 13412, 6061, 6063, 13414, 4870, 6503, 4874, 13417, 5254, 9241, 10780, 1429, 1431, 1570, 2899, + 1894, 4131, 4193, 4474, 91, 4739 + ], + [0, 13426, 12296, 5472, 13428, 5131, 13429], + [1, 2343, 8076], + [0, 8077, 8078, 8080, 2399], + [ + 0, 13446, 13437, 13512, 13471, 13508, 13476, 9637, 13474, 13497, 13495, 13500, 13454, 13502, 13504, 13510, + 13493, 13507, 13456, 13479, 13488, 13484, 30243, 13467 + ], + [0, 3421, 3297, 2899, 4193, 1177, 1894, 91, 13514, 4874, 6503, 6513, 5254, 1954, 1011, 13518, 1009], + [2, 8182, 553], + [0, 13524, 13525, 13526, 13529, 13530, 13531, 6599, 13532, 13535, 13538, 13539], + [1, 2343, 8082], + [0, 8083, 8084, 8085, 2523], + [0, 13547, 13551, 13554, 13558, 13559, 13560], + [ + 0, 13564, 5087, 4874, 1009, 1011, 13566, 1177, 1895, 1915, 1938, 1955, 2220, 1192, 1894, 13568, 3706, 13569, + 4257, 4468, 4474, 91 + ], + [0, 13571, 7200, 5995, 13572, 2220, 13573, 6710, 91, 13574], + [1, 2343, 8087], + [0, 8088, 8089, 8090, 2537], + [0, 13579, 1149, 13581, 3923, 13583, 4393, 13584], + [0, 13590, 1429, 1776, 3188, 2899, 4039, 13591, 4390, 4753], + [0, 12666, 1137, 3101, 2056, 4390], + [1, 2343, 8092], + [0, 0, 8093, 2514, 4139], + [0, 1429, 1192, 1894], + [3, 439, 25], + "mysticatea", + [2, 1186, 8095], + [2, 8094, 8096], + "dot-prop", + "warun", + [1, 2343, 8101], + [0, 0, 8102, 8103, 2399], + [0, 68, 5704, 1177, 2899, 3421], + [0, 200, 57, 1139, 5675, 7058], + [1, 2343, 8105], + [0, 7967, 7938, 7939, 2487], + [1, 2343, 8107], + [0, 8108, 8120, 8121, 2487], + [0, 1417, 13609, 6830, 13611], + "ly-openapi-core", + [2, 443, 8109], + "decko", + "pointer", + [2, 2842, 8112], + "mark.js", + "sampler", + [2, 7719, 8115], + "perfe", + "ct-scrollbar", + [2, 8117, 8118], + [0, 13613, 13614, 1159, 9254, 1177, 2011, 2133, 13619, 2708, 3410, 3421, 3431, 4103, 4389], + [0, 6583, 6727, 4552, 6759, 1858, 6422, 3033, 7039, 6763], + "react-tabs", + "stickyfill", + "swagger", + "2openapi", + [2, 8124, 8125], + [2, 4564, 1283], + [1, 2343, 8133], + "@cypress/webpack-preprocessor", + "@hot-loader/react-dom", + [3, 5535, 19], + [2, 8131, 1896], + [0, 0, 8134, 8142, 2487], + [0, 1166, 4481, 1906], + "ompurify", + [2, 6491, 8135], + "-to-", + "-to-json", + [2, 4863, 8138], + [3, 7729, 12], + [2, 8140, 8112], + [0, 4552, 1144, 13625, 6270, 6692, 13626], + [1, 2343, 8164], + "@types/lunr", + [3, 7639, 11], + [2, 8145, 1722], + [2, 8145, 1360], + "ismjs", + [2, 7893, 8148], + [3, 4890, 12], + "d-components", + [2, 8150, 8151], + [3, 7752, 9], + "pable", + [2, 8153, 8154], + "-env", + [2, 4891, 8156], + "@wojtekmaj/enzyme-adapter-react-17", + "to-json", + [2, 1848, 8159], + [2, 7686, 1194], + "-checker", + [2, 4059, 8162], + [0, 8167, 8176, 8177, 2523], + "lodash.noop", + "unfetch", + [0, 614, 13633, 1417, 13635, 3435], + "OpenAPI", + " Specification", + [2, 8168, 8169], + "Swagger", + "API", + "REST", + "React", + "React.js", + [0, 4389, 1090, 1593, 1610, 48, 13638, 53, 3438, 87, 5619], + [0, 1145, 1388], + [1, 2343, 8179], + [0, 0, 8188, 2514, 2537], + [3, 444, 13], + [2, 8180, 965], + [3, 10975, 16], + "use-", + [3, 2758, 11], + "layout-effect", + [2, 8184, 8185], + [2, 8183, 8186], + [0, 4389, 2080], + "tip", + "tooltip", + "popover", + "popup", + "position", + "positioning", + [1, 2343, 8196], + [0, 8197, 8198, 8200, 2537], + [0, 1690, 13648, 13651, 3431, 13652, 13653], + [0, 1389, 2759, 2899, 3697], + "fontsource", + [0, 1145, 6468, 6637, 1148, 5982, 2022, 2025, 4170, 13656, 4386, 6969, 1973, 5472, 6533, 13657, 2275], + "font family", + " fonts", + [2, 1885, 8202], + "Inter", + "face", + "typeface", + [1, 2343, 8208], + [0, 0, 8209, 8212, 2537], + [ + 0, 3421, 1429, 4085, 1776, 2297, 2899, 4747, 1177, 4042, 4135, 1448, 1290, 1362, 2151, 1317, 1389, 53, 1863, + 2900, 13662, 1280, 2871, 13674, 1267, 13665, 13672, 68, 2904, 1208, 2912, 2895, 13668, 4067, 1198, 13663, 1240 + ], + "serenity", + "Roboto", + [0, 1149, 7241, 1237, 6435], + [1, 2343, 8215], + "screenplay", + [0, 0, 8219, 8222, 34352], + "common-t", + [2, 8216, 103], + [2, 6057, 8217], + [0, 4874, 13680, 4384, 4474, 91], + "fontawesome", + "svg", + [0, 1149, 7003, 5194, 27, 13682, 11995, 1862, 36], + [1, 2343, 8224], + [0, 8225, 8226, 2514, 2537], + [0, 1153], + [0, 1166, 1177, 1894, 3310, 3697, 13688, 2990, 1959, 1879, 1938, 1895, 1947], + [1, 2343, 8228], + [0, 0, 8230, 8233, 2537], + [2, 79, 1202], + [0, 53, 13693, 87, 92, 13694, 5087, 1193, 1596, 1192, 2990, 3377, 13695, 13698, 3697, 1894, 4474, 91], + "stage-3", + [2, 88, 8231], + [0, 1155, 2649, 1149], + [1, 2343, 8235], + [0, 0, 0, 8236, 2523], + [0, 1157, 1388], + [1, 2343, 8238], + [0, 8239, 8240, 8241, 2487], + [0, 4449, 1512, 13709, 4135, 13711, 13712, 13713], + [0, 3421, 4389, 1177, 3410, 1159, 4103, 13614], + [0, 13716, 6698, 6950, 3378, 13716], + [1, 2343, 8246], + [3, 361, 10], + "rebuild", + [2, 8243, 8244], + [0, 8247, 8249, 8257, 2487], + [0, 1525, 2036, 7937, 3310, 13723, 4135], + "node-abi", + [0, 53, 94, 1208, 13725, 1429, 1503, 1610, 3125, 2899, 3421, 4216, 4255], + [3, 361, 9], + "-forge/cli", + [2, 8250, 8251], + "devtools", + "-installer", + [2, 8253, 8254], + [2, 1807, 8255], + [0, 1163, 13728, 13729, 1444, 3073, 1179, 3358, 1528, 13730, 2602], + [1, 2343, 8259], + [0, 8260, 8261, 8265, 2523], + [0, 1457, 1512, 13736, 13738, 2070, 10911, 3074, 3467, 9478, 705, 13739, 4747], + [0, 1173, 1267, 1429, 1177, 1879, 1938, 1947, 1959, 2899], + [2, 4364, 4622], + [2, 458, 8262], + [2, 7726, 2862], + [0, 1163, 4796, 1161, 3383, 2282], + [1, 2343, 8267], + [0, 8268, 0, 8269, 2399], + [0, 1393, 1423, 13746, 3527, 3688], + [0, 1165, 1623, 3665, 3561, 6425], + [1, 2343, 8274], + [2, 466, 2220], + [2, 466, 2942], + [2, 466, 594], + [0, 8276, 8279, 8280, 4139], + [2, 466, 553], + [ + 0, 13753, 1082, 1084, 1110, 13754, 1144, 13757, 13758, 1437, 13759, 1458, 13760, 1486, 13763, 13765, 13767, + 13770, 1676, 13772, 2089, 2205, 13775, 2709, 2747, 2752, 13777, 7906, 3242, 3478, 13778, 3530, 3545, 3718, + 13780, 13781, 13784, 13786, 4728, 4747 + ], + [2, 5559, 2844], + [2, 5559, 1783], + [0, 11436, 13789, 4874, 1107, 1414, 2020, 2022, 4193, 4384, 4400, 4481, 91, 1906, 13351], + [ + 0, 13791, 1973, 8791, 5472, 1166, 13792, 12804, 2062, 6969, 13326, 200, 1192, 2899, 4389, 4384, 2907, 2765, + 1145, 6468, 1862, 6567, 1149, 3046, 7003, 1179, 5701, 13793, 13795, 13796, 2275, 8745, 2022, 91 + ], + [1, 2343, 8282], + [0, 8283, 8287, 8288, 2537], + [0, 1437, 1835, 3008, 1209, 3170, 3188, 4232, 13802], + "/types", + [2, 3940, 8284], + [2, 6369, 8285], + [ + 0, 4856, 4870, 8778, 6503, 4874, 7749, 6513, 4891, 1362, 1429, 13804, 2151, 2675, 2990, 2899, 1894, 13805, 4039, + 4167, 4257, 1241, 4487, 91, 2924, 4677 + ], + [0, 2924, 1194, 11526, 91], + [1, 2343, 8290], + [0, 8291, 8305, 8307, 2523], + [0, 4113, 1002, 614, 3348, 1398, 2018, 4734, 13811, 13812, 3767], + "@tailwindcss/aspect-ratio", + [3, 8292, 13], + [2, 8293, 25], + "typography", + [2, 8293, 8295], + "basename", + "manage", + "r-webpack-plugin", + [2, 8298, 8299], + [2, 2090, 8300], + "remove-", + [2, 1586, 4408], + [2, 8302, 8303], + [ + 0, 1429, 2297, 2899, 1177, 1503, 2765, 2924, 1649, 4535, 1389, 91, 4874, 2843, 1509, 2766, 2898, 13817, 13818, + 2881 + ], + "sass-lint", + [ + 0, 5592, 6997, 7200, 6850, 6779, 6949, 6930, 6810, 6808, 6979, 6871, 6991, 6835, 7024, 6602, 7301, 7308, 6619, + 7016, 6665, 6572, 6629, 7055, 6709, 7254, 6814, 6832, 6976, 6740, 7101, 6963, 6933, 7215, 7175, 6817 + ], + [3, 6566, 9], + [2, 8308, 3855], + "boilerplate", + [1, 2343, 8312], + [0, 0, 8313, 8314, 2537], + [ + 0, 1429, 2070, 1437, 1496, 2020, 2228, 2675, 1776, 2832, 2297, 2899, 4193, 1177, 2814, 1593, 668, 2203, 3471, + 2720, 13824, 1894, 4535, 13825, 11869, 13827, 2878, 7231, 91, 53, 4874, 13829, 1863, 13831, 2665, 2900, 2918, + 2990, 3400, 13832, 13833, 2626, 3330, 5561, 13834, 13836, 4257, 13837, 87, 13838, 2897, 4130, 13839, 2247, 2283, + 2923, 2253, 2281, 13842, 2881, 4261, 5663, 1895, 2895, 13848, 13850, 78 + ], + [0, 13852, 6653, 5472, 2275, 6969, 5982, 11346], + "@hapi/", + "accept", + [2, 8315, 8316], + [1, 2343, 8319], + [0, 8331, 8332, 8334, 2537], + "@hapi/ammo", + "@hapi/boom", + "@hapi/bo", + "unce", + [2, 8322, 8323], + "@hapi/call", + "@hapi/ca", + "tbox", + [2, 8326, 8327], + "-memory", + [2, 8328, 8329], + [0, 2139, 13860, 2131], + [ + 0, 1414, 2323, 1437, 2675, 2297, 2899, 4193, 1177, 3246, 3483, 4042, 2026, 13868, 2151, 13824, 3183, 1596, 1610, + 2141, 2188, 2036, 7798, 4393, 91, 53, 1364, 1863, 2918, 2766, 3714, 13870, 2898, 1159, 192, 13880, 87, 13873, + 8850, 8862, 5583, 2915, 4073, 13882, 2881, 2912, 2895, 2921, 811, 13867, 2910, 13879, 13866, 816, 13875, 13871, + 5467 + ], + "@hapi/heavy", + [0, 4731, 27, 6662, 1862, 202, 1388, 1612, 4030, 5592, 5576], + "@hapi/hoek", + "mimos", + "@hapi/mimos", + "podium", + [2, 8315, 8338], + "shot", + "@hapi/shot", + "@hapi/s", + "omever", + [2, 8342, 8343], + "tatehood", + [2, 8342, 8345], + "ubtext", + [2, 8342, 8347], + "teamwork", + [2, 8315, 8349], + [1, 2343, 8352], + [0, 8355, 8356, 8365, 2537], + "@hapi/topo", + [2, 8315, 2649], + [0, 13889, 2051, 13891, 13892, 3923, 705, 4545, 3348, 1155, 4734, 4736, 2845], + [ + 0, 13894, 1389, 1596, 13895, 2228, 2296, 13896, 2759, 2297, 2881, 2891, 13899, 2895, 2897, 2900, 2904, 2899, + 3202, 3297, 4170, 4535, 4650 + ], + "@hapi/code", + "@hapi/inert", + "@hapi/lab", + "@hapi/v", + "ision", + [2, 8360, 8361], + "wreck", + "@hapi/wreck", + [0, 202, 13531, 13901], + [1, 2343, 8367], + [0, 8368, 8369, 3182, 2537], + [0, 1175, 1257, 1280, 1282, 1525, 1573, 5175, 2070, 1209, 13913, 3507, 4207, 4227, 13914, 1457], + [0, 1184], + [1, 2343, 8371], + [0, 8372, 8373, 3272, 34352], + [ + 0, 13922, 1180, 13924, 13928, 1280, 1282, 1284, 1287, 1288, 1291, 1573, 1676, 2856, 1209, 3181, 3507, 7223, + 4207, 4227 + ], + [0, 1184, 13930, 1257], + [1, 2343, 8375], + [0, 8376, 8377, 2514, 2523], + [0, 814, 104, 58, 101, 51, 1996], + [0, 2675, 2899, 1680, 1177, 2000, 1894, 2990, 1178, 13936, 1938, 1935, 1955], + [1, 2343, 8379], + [0, 8380, 8381, 2514, 2523], + [0, 13928, 1282, 1288, 1707, 2835, 1209, 4227, 13942], + [0, 1184, 1291], + [1, 2343, 8383], + [0, 8384, 0, 2514, 2537], + [0, 1282, 1209, 13948, 4135], + [1, 2343, 8386], + [0, 8387, 0, 2514, 2523], + [0, 1282, 13930], + [1, 2343, 8390], + "nf", + [0, 0, 0, 8393, 2487], + true, + "cookiecutter", + [0, 1172, 188, 1219], + [1, 2343, 8395], + [0, 8396, 8397, 2514, 2537], + [0, 8755, 10879, 1208, 13961, 1437, 2215, 4207], + [0, 53, 8776, 8780], + [1, 2343, 8399], + [0, 8400, 8401, 8402, 4139], + [0, 2105], + [0, 48, 53, 68, 87, 1414, 1177, 1895, 1955, 2203, 2675, 2990, 1894, 2924], + [0, 2924, 1194, 1172, 5194, 5198, 1237], + [1, 2343, 8404], + [0, 0, 8405, 8406, 4139], + [ + 0, 53, 73, 87, 1173, 1175, 1178, 13725, 13982, 1264, 13983, 1268, 1284, 1288, 13985, 1177, 1895, 1903, 1938, + 1954, 1955, 1958, 1970, 2899, 3696, 1894, 4039, 4103 + ], + [0, 5297, 13988], + [1, 2343, 8408], + [0, 8409, 8410, 8411, 2537], + [0, 3435], + [ + 0, 4389, 1177, 4039, 1173, 1175, 2708, 53, 1178, 1280, 13995, 87, 1261, 1267, 4103, 1938, 1881, 1203, 8229, + 1198, 5853, 13998, 1244 + ], + [0, 1172, 1932, 14000, 1204, 202], + [1, 2343, 8413], + [0, 8414, 8415, 3465, 2523], + [0, 1282], + [0, 1189], + [1, 2343, 8417], + [0, 8418, 8434, 8444, 2399], + [0, 5652], + "@keyv/redis", + [2, 1416, 8421], + "-redis-yet", + "cacheable", + "opens", + "spring", + "icu", + "charset", + "launch", + "xdg", + "cmd", + "xdg-open", + "iconv", + "popmotion", + "exe", + [0, 53, 90, 14011, 1175, 14012, 1596, 1177, 1879, 1895, 1938, 1955, 2079, 2675, 2990, 3132, 3377, 1894, 14014], + "executable", + "cache manager", + [2, 27105, 15292], + "multi-store cache", + "caching layer", + "cache abstraction", + "cache middleware", + "cache strategies", + "cache wrapper", + [0, 5297, 1114], + [1, 2343, 8446], + [0, 8447, 8448, 8449, 2537], + [0, 56, 14022, 8697, 14024, 14025], + [0, 48, 53, 5756, 5241, 94, 1429, 1596, 1610, 2899, 3421, 14027, 4255], + [0, 2759, 1172, 1932, 14029], + [1, 2343, 8451], + [0, 8452, 8453, 8454, 2537], + [0, 5652, 104, 2070, 1209, 14035], + [ + 0, 48, 53, 14039, 78, 5235, 4851, 83, 87, 90, 14041, 94, 10828, 1149, 1198, 1210, 1429, 14042, 14045, 3021, + 2899, 3776, 3804 + ], + [0, 5297, 14047, 1209, 5260], + [1, 2343, 8456], + [0, 8457, 8458, 8459, 2487], + [0, 14053, 2070, 3539, 4022, 814], + [0, 48, 53, 81, 5241, 87, 1175, 1193, 1532, 1177, 1881, 1895, 1938, 2675, 1192, 2990, 10623, 4257], + [0, 1172, 5297, 1237, 14056, 8861, 9345, 814, 14057, 14059, 3209, 1204], + [1, 2343, 8461], + [0, 0, 8462, 2514, 2523], + [0, 1192, 14065], + [1, 2343, 8464], + [0, 0, 0, 3465, 2523], + [1, 2343, 8466], + [0, 0, 0, 3465, 2537], + [1, 2343, 8468], + [0, 8469, 8415, 3465, 2523], + [0, 14078, 14080, 1282], + [1, 2343, 8471], + [0, 8472, 8415, 3465, 2523], + [0, 14086, 14087, 1282, 1284], + [1, 2343, 8474], + [0, 8475, 8476, 8477, 2487], + [0, 14093, 1282, 1284], + [0, 1173, 1230, 1255, 1267, 1429, 2899], + [0, 1172, 5297, 6598, 70], + [1, 2343, 8479], + [0, 8480, 8415, 3465, 2523], + [0, 1282, 1284, 1287, 1288, 1209], + [1, 2343, 8482], + [0, 8483, 8484, 3465, 2487], + [0, 14107, 1282, 1284, 1288], + [0, 1189, 14109], + [1, 2343, 8486], + [0, 8414, 8415, 3465, 2399], + [1, 2343, 8488], + [0, 8489, 8415, 3465, 2537], + [0, 14109, 1282], + [1, 2343, 8491], + [0, 8492, 8415, 3465, 2523], + [0, 1282, 14123, 1220], + [1, 2343, 8494], + [0, 0, 8495, 8496, 2537], + [ + 0, 48, 53, 5216, 8229, 61, 5240, 87, 14128, 90, 94, 1178, 14132, 1429, 1177, 1879, 1922, 1935, 1938, 1947, 1951, + 1955, 1959, 2205, 2899, 14133, 1894 + ], + [0, 1172, 5297, 89, 14137, 14139], + [1, 2343, 8498], + [0, 8499, 8415, 2514, 2537], + [0, 14145], + [1, 2343, 8501], + [0, 8414, 8415, 3465, 2537], + [1, 2343, 8503], + [0, 8504, 0, 2514, 2487], + [0, 1282, 1593, 3957], + "comment", + [2, 8505, 1574], + [1, 2343, 8513], + [3, 539, 8], + [2, 8508, 6939], + [3, 539, 17], + [2, 8510, 1541], + "leasot", + [0, 8514, 8515, 8516, 2487], + [0, 87, 90, 56, 5761, 83, 14160, 13051, 78, 5835, 14163, 5853, 14167, 1251, 5782, 14170, 5806], + [0, 1177, 53, 97, 4103, 1938, 1881], + [0, 1172, 5194, 6778, 5284], + [1, 2343, 8518], + [0, 8522, 8541, 2514, 2523], + "clair/typebox", + [2, 5324, 8519], + "@typesc", + [ + 0, 14184, 14191, 1225, 14192, 14195, 1235, 14196, 14198, 14199, 14201, 14204, 14206, 14207, 14209, 1240, 14210, + 14211, 14213, 14214, 14215, 14217, 14218, 1244, 14220, 14222, 14224, 1253, 1393, 2731, 4135 + ], + "hema/core", + [2, 8521, 8523], + [3, 8524, 12], + "main", + [2, 8525, 8526], + [2, 8525, 4763], + "@vinejs/vine", + "ajv-", + "ajv-errors", + "-export", + "-export-map", + [2, 4354, 8533], + [3, 5370, 11], + [2, 4626, 8535], + "effect", + "fp-ts", + "io-ts-types", + "lefthook", + [0, 1173, 1178, 1184, 1189, 1208, 1264, 1280, 1429, 1503, 1177, 13936, 1935, 2151, 1209, 2899, 3421, 14227, 4039], + [1, 2343, 8545], + "monocle-ts", + "newtype-ts", + [0, 8548, 8557, 2514, 2487], + "-validator", + [2, 7209, 8546], + [ + 0, 14184, 14192, 14195, 1235, 14196, 14198, 14199, 14201, 14204, 14206, 14207, 14209, 1240, 14210, 14211, 14213, + 14214, 14215, 14217, 14218, 1244, 14220, 14222, 1253 + ], + "bot", + "valibot", + "vite-", + [2, 8551, 4480], + "fluent", + "-ts", + [2, 7020, 8554], + [2, 8553, 8555], + [0, 13930, 1189], + "effect-ts", + [1, 2343, 8562], + "typeschema", + "vine", + [0, 8563, 0, 2514, 4139], + [0, 14237, 1220, 14238, 1248, 14240, 14243], + [1, 2343, 8565], + [0, 8566, 0, 2514, 2537], + [0, 53, 61, 71, 14170, 14160, 13051, 14249, 5700, 5240, 5879, 83, 87, 90, 92, 97, 7913, 1251], + "google ", + " api", + "late api", + [2, 4713, 8569], + [2, 8567, 8570], + [3, 8571, 16], + "google api", + [3, 8570, 9], + [1, 2343, 8576], + [0, 8577, 0, 2514, 34352], + [0, 14256, 14257, 1275], + [1, 2343, 8586], + "@atlaskit/pragmatic-drag-and-drop", + "-scroll", + [2, 3959, 8580], + [2, 8579, 8581], + [3, 8582, 34], + "hitbox", + [2, 8583, 8584], + [0, 8587, 0, 2514, 2523], + [0, 14265, 13982, 1277], + "vue3", + "vue ", + [1, 2343, 8592], + "vue 3.x", + [0, 8593, 0, 2514, 2537], + [0, 1279, 14270, 1217, 1230], + [1, 2343, 8595], + [0, 8596, 0, 2514, 2523], + [0, 14191, 14276, 1225, 14224, 1245], + "@ctrl/tinycolor", + [1, 2343, 8599], + [0, 8600, 8601, 2514, 2537], + [0, 1175, 1282, 1593, 14282, 1209, 3188, 4232], + [0, 6323], + [1, 2343, 8613], + [3, 546, 10], + [2, 8603, 2089], + [2, 8603, 998], + [3, 6505, 9], + "te-stream", + [2, 8606, 8607], + "rap-ansi", + [2, 7820, 8609], + "cli-width", + "mute-stream", + [0, 4115, 8617, 2514, 4139], + [3, 8605, 11], + "esting", + [2, 8614, 8615], + [0, 13924, 1255], + "answer", + "answers", + "ask", + [1, 2343, 8627], + "confirm", + "generate", + "hyper", + "inquire", + "interface", + [0, 8629, 0, 2514, 2537], + "iterm", + [0, 1282, 1287, 1288, 1291, 1209], + "promptly", + "question", + "scaffold", + "scaffolder", + "stdout", + "yeoman", + "zsh", + [1, 2343, 8638], + [0, 8639, 8640, 2514, 2523], + [0, 13922, 13928, 1282, 1288, 1291, 1676, 2203, 2731, 1209], + [0, 1180], + "@stencil/core", + [1, 2343, 8672], + "domino", + [3, 8641, 9], + [2, 8644, 2278], + "@clack/prompts", + "@capacitor/core", + "@playwright/test", + [3, 8647, 11], + "haptics", + [2, 8649, 8650], + "keyboard", + [2, 8649, 8652], + "@axe-core/playwright", + "@ionic/", + [2, 8655, 7625], + "-bar", + "status-bar", + [2, 8649, 8658], + [2, 8655, 7628], + [2, 812, 4607], + "-target", + [2, 6811, 8662], + [2, 4625, 8663], + [2, 8644, 8664], + "react-o", + "utput-target", + [2, 8666, 8667], + [2, 8644, 8668], + [2, 1101, 8663], + [2, 8644, 8670], + [0, 8679, 8680, 2514, 2487], + "stencil", + "webapp", + "capacitor", + " web app", + [2, 6434, 8676], + "pwa", + [0, 1282, 14301, 1209, 5915], + [0, 1180, 1291], + [1, 2343, 8682], + [0, 0, 8684, 2514, 2523], + "-cjs", + [0, 4384, 1389, 53, 14311, 87, 14128, 1573, 90, 14309, 5835, 5879], + [1, 2343, 8686], + [0, 0, 8687, 8688, 2487], + [ + 0, 1166, 1173, 1178, 1184, 1203, 1208, 14318, 1267, 1272, 1437, 1503, 1610, 1177, 13936, 1935, 2126, 3421, 4039, + 4042, 4045, 4067, 12613, 14320 + ], + [0, 1172, 5284, 57, 1291], + "standardx", + [1, 2343, 8692], + "layout", + [0, 8693, 8694, 8695, 2537], + [0, 4545], + [0, 1509, 1597, 1734, 1177, 1938, 2297, 2908, 2907, 4005, 4042, 4535], + [0, 11415, 6624, 12620, 38, 36, 5576, 1388], + [3, 549, 12], + [2, 8696, 2844], + [1, 2343, 8699], + [0, 8700, 8701, 8702, 2443], + [0, 1525, 2070, 2720, 3445, 4039, 4484, 3348, 1155], + [ + 0, 14333, 4865, 4866, 4874, 7819, 14334, 4891, 1009, 1011, 5476, 14337, 14338, 5478, 1429, 1177, 1938, 1954, + 2899, 3200, 14339, 4167, 4172, 4409, 4469, 4474, 4508, 91, 594, 2924, 4677 + ], + [0, 5995, 1293, 3230, 4978, 14344], + [3, 444, 18], + [3, 550, 15], + "illu", + [1, 2343, 8715], + "tions-react", + [2, 4273, 8707], + [2, 8705, 8708], + [2, 8704, 8709], + "@swc/", + [2, 8711, 6706], + [3, 958, 16], + [2, 8713, 4607], + [0, 7936, 7938, 7939, 2537], + "react-table", + [1, 2343, 8718], + [0, 0, 8720, 8721, 2523], + "@swc/cli", + [0, 1596, 2228, 2240, 2314, 14352, 2759, 2899, 3954], + [0, 14354, 14355, 14356, 14357, 1157, 1396], + "-extensions", + [2, 3751, 8722], + [2, 1962, 8723], + [1, 2343, 8730], + "-system", + [2, 4964, 8726], + "itwin", + "itwinui", + [0, 7967, 7938, 7939, 2443], + [1, 2343, 8732], + [0, 0, 8733, 8735, 4139], + [0, 13662, 1317, 1389, 4389], + "jest-config", + [0, 14357], + "unner", + "jest-runner", + "jest-run", + [2, 8738, 6901], + [3, 2802, 10], + [2, 8740, 1524], + [3, 551, 8], + "nsole", + [2, 8742, 8743], + "snapshot", + [2, 2769, 8745], + [2, 2769, 2649], + "jest-h", + "aste-map", + [2, 8748, 8749], + "reporters", + [2, 552, 8751], + "@jest/t", + "ransform", + [2, 8753, 8754], + "jest-re", + "gex-util", + [2, 8756, 8757], + [1, 2343, 8760], + [0, 8766, 8772, 8774, 2523], + "est-result", + [2, 8753, 8761], + "jest-m", + "essage-util", + [2, 8763, 8764], + [0, 4100], + "-files", + [2, 2356, 8767], + [2, 2772, 8768], + "-dependencies", + [2, 2797, 8770], + [0, 2899, 1177, 2759, 1954, 1938, 1958, 1903, 1948, 1970], + [3, 6494, 9], + [0, 14372, 1303, 14374, 14375], + [3, 8762, 11], + [2, 8775, 594], + "cromatch", + [2, 7890, 8777], + "raceful-fs", + [2, 5246, 8779], + "sequencer", + [2, 8775, 8781], + [1, 2343, 8789], + "easy", + "sive", + "immersive", + "instant", + "mocking", + [0, 8792, 8793, 8794, 2537], + "painless", + "runner", + [0, 1797, 3181, 3183, 3188, 14380], + [0, 1177, 1903, 1938, 1954, 1958, 1970, 2899, 4039, 4342, 4459, 4538, 4588], + [0, 2026, 5130, 14387, 6690, 14388, 3361, 5122, 4030, 7096, 38, 1896, 3724, 5995, 5592], + "sandboxed", + [1, 2343, 8797], + [0, 8798, 8799, 8810, 2537], + [0, 3299, 15160], + [0, 1192, 15164], + "schemas", + [2, 552, 8800], + "@types/i", + "-report", + "-reports", + [2, 1207, 8804], + [2, 8802, 8805], + [3, 8806, 16], + "lib-coverage", + [2, 8807, 8808], + [0, 1306, 6875, 1303, 5165, 7141, 6641, 1616], + "@tsd/typescript", + [1, 2343, 8813], + [0, 0, 0, 8814, 2537], + [0, 1306, 5284, 676, 3428, 6875, 1303, 5165, 7141, 6641, 1616], + [1, 2343, 8819], + [3, 7729, 13], + "chema", + [2, 8816, 8817], + [0, 0, 8822, 8810, 4139], + "jsdom-", + [2, 8820, 2202], + [0, 1306, 26406, 1894, 91], + "mock-store", + [2, 3944, 8823], + "dux-mock-store", + [2, 5249, 8825], + "-reg", + "iste", + "r-element", + [2, 8828, 8829], + [2, 8827, 8830], + [2, 1746, 8831], + [1, 2343, 8834], + [0, 8835, 8842, 8843, 34352], + [0, 14413, 1525, 1457], + "jsonforms", + "rendere", + [2, 8837, 152], + "uischema", + "ization", + [2, 5317, 8840], + [0, 2025, 2228, 1330, 2236, 2300, 2247, 2281], + [0, 14416, 14417, 14418, 7190, 14419, 14421, 8309, 14422, 14423, 14426, 14428, 14430, 14433], + [1, 2343, 8845], + [0, 0, 0, 8847, 2523], + "@date-io/dayjs", + [0, 1317, 14438], + [3, 4055, 16], + [2, 8848, 2257], + [2, 812, 1781], + [3, 6390, 15], + "mport-css", + [2, 8851, 8852], + [1, 2343, 8855], + [0, 8856, 7938, 7939, 4139], + [ + 0, 43, 46, 1089, 1093, 1116, 1132, 1140, 14443, 1294, 1298, 1316, 1318, 1321, 1322, 14444, 1336, 1339, 1342, + 12701, 1344, 1346, 1348, 1350, 1352, 12703, 1354, 1356, 1358, 14445, 12704, 1373, 1376, 14446, 1386, 14447, + 1402, 1425, 1428, 12705, 1440, 1449, 1450, 12708, 12709, 14450, 14453, 12710, 12711, 12714, 1663, 1706, 1711, + 14458, 1715, 1726, 1801, 2019, 12715, 14459, 12719, 2058, 2059, 2083, 2147, 2160, 14460, 2177, 2213, 2216, 2217, + 12720, 2562, 2563, 2567, 2589, 2605, 2606, 2612, 14461, 12722, 2723, 14464, 14467, 2950, 2954, 2957, 12726, + 2962, 14469, 3086, 14471, 3099, 12730, 3134, 12733, 3186, 3238, 14473, 14474, 3239, 3240, 3245, 3262, 14477, + 3295, 3439, 12736, 3443, 3472, 14478, 3531, 3535, 3558, 12737, 3777, 3931, 12740, 14479, 4105, 4106, 4112, 4124, + 12743, 14480, 12747, 14483, 4168, 4173, 4177, 4189, 4192, 4206, 4212, 4214, 4215, 4235, 12749, 14484, 4236, + 4239, 4258, 12750, 4267, 14487, 4335, 4338, 12755, 4347, 4352, 4370, 4377, 4433, 14489, 14491, 4456, 4461, + 12756, 12757, 12760, 4548, 4559, 4595, 12763, 14492, 14496, 4659, 4662, 12764, 14497, 4724 + ], + [1, 2343, 8858], + [0, 8859, 8863, 8864, 4139], + [0, 3171, 3445, 4707, 1695, 2967, 814, 4430, 1457, 3183, 14502, 3560, 3714, 1537, 14506, 3923, 14508, 14512, 14505], + [2, 4807, 3429], + "alias", + [2, 812, 8861], + [0, 14515, 3212, 4389, 4453, 2759, 4650, 1389, 14514], + [0, 14518, 1389], + [1, 2343, 8866], + [0, 7967, 7938, 7939, 2537], + [1, 2343, 8868], + [0, 8869, 8870, 8871, 2443], + [0, 1209, 12344], + [0, 1596, 14527, 2759, 14529, 3774, 4019], + [0, 1317, 6681, 6887], + [1, 2343, 8873], + [0, 7967, 7938, 7939, 2523], + [1, 2343, 8875], + [0, 8876, 0, 8877, 34352], + [ + 0, 14544, 14546, 14548, 53, 5216, 58, 61, 14249, 5704, 5809, 5241, 5874, 87, 92, 101, 9311, 9100, 4874, 1091, + 14552, 1137, 1149, 1448, 1457, 1462, 1512, 14557, 1573, 2141, 2633, 14558, 3310, 3403, 1894, 14562, 2278, 4218, + 4227, 4246, 3709, 91, 4535, 14563, 188, 4747, 2720, 14564 + ], + [ + 0, 14566, 14568, 14570, 14571, 14572, 14574, 5130, 91, 5284, 4799, 11608, 8889, 5995, 14575, 14576, 14579, + 14580, 14582, 14584, 14587, 11498, 14591, 14592, 14594, 14596, 4056, 14597, 14600, 89, 14601, 14602, 188, 14603, + 14605, 8889, 3709, 14607, 14608, 4218, 14609 + ], + 1769904000000, + [1, 2343, 8880], + [0, 8881, 8882, 8883, 2399], + [0, 14615, 14616, 14617], + [0, 1170, 1429, 1177, 2899, 14621, 3752, 14622], + [0, 1781, 14626, 1646, 4647, 1644, 57, 14628, 4141, 3917, 6033, 1149, 14629], + [1, 2343, 8885], + [0, 0, 0, 8886, 2523], + [0, 14634, 14635, 14636, 14637, 6988, 14638, 14639, 14640, 14641, 14642, 14643, 14644], + "@lumino/polling", + "@lumino/", + "widgets", + [2, 8888, 8889], + "commands", + [2, 8888, 8891], + "algorithm", + [2, 8888, 8893], + [3, 8892, 10], + "reutils", + [2, 8895, 8896], + [1, 2343, 8903], + "messaging", + [2, 8888, 8899], + "signaling", + [2, 8888, 8901], + [0, 8904, 0, 8908, 4139], + [0, 14652], + "disposable", + [2, 8888, 8905], + [3, 8887, 9], + [0, 970, 11154, 1326, 14654, 6817, 3122, 14655], + "roperties", + [2, 8907, 8909], + [3, 565, 12], + "statedb", + [2, 8911, 8912], + [3, 8894, 9], + "pplication", + [2, 8914, 8915], + [3, 565, 15], + [2, 8917, 594], + [3, 8913, 13], + "ervices", + [2, 8919, 8920], + "coreutils", + [2, 8911, 8922], + "render", + "rendermime", + [2, 8911, 8925], + "docregistry", + [2, 8911, 8927], + [1, 2343, 8935], + "translation", + [2, 8911, 8930], + [2, 8911, 7842], + "-interfaces", + [2, 8926, 8933], + [0, 8938, 8939, 2514, 2537], + [3, 8931, 13], + [2, 8936, 8615], + [0, 14660], + [0, 3421, 4389, 4487, 1894, 3310, 3752, 91, 4874], + [1, 2343, 8941], + [0, 8943, 8948, 8950, 34352], + "docopt", + [0, 14667, 14669, 14671, 14672, 5241, 83, 14673, 13998, 14674, 5564, 14676, 4649], + "glob2base", + "lodash.d", + "ifference", + [2, 8945, 8946], + [ + 0, 14680, 48, 53, 5241, 87, 14682, 94, 97, 10821, 14684, 827, 14687, 14689, 10828, 14691, 11277, 10837, 11288, + 972, 5087, 4883, 14693, 14694, 13995, 14695, 1193, 1195, 14697, 14698, 1208, 1261, 1268, 14012, 1282, 14699, + 1462, 1596, 1610, 1655, 14702, 1177, 14707, 2323, 2529, 2541, 14708, 2708, 1192, 2787, 2820, 3220, 14711, 3342, + 3377, 3400, 3415, 3421, 3697, 1894, 3786, 89, 3824, 14714, 14719, 4039, 4103, 4111, 14721, 4307, 4468, 4469, 91, + 2924, 4676, 4677 + ], + "multipipe", + [0, 1328, 14723], + "safe-wipe", + [2, 4832, 6270], + "-theme-default", + [2, 566, 8953], + "-comment", + [2, 8955, 1574], + [2, 4329, 8956], + "indent", + [2, 4293, 8958], + "vinyl-s", + "tring", + [2, 8960, 8961], + [1, 2343, 8968], + "builtin-", + [2, 8964, 2051], + [2, 1226, 8965], + "opn-cli", + [0, 8969, 8970, 8971, 4139], + [0, 14731, 1398, 2713, 3923], + [0, 2080, 4255, 4389, 91], + [0, 1398, 6825, 3101, 7178], + [1, 2343, 8973], + [0, 8974, 8975, 8976, 2523], + [0, 1082, 14738, 14741, 2756, 3433, 1695], + [0, 1149, 14744, 1506, 2228, 2240, 2247, 2253, 2273, 2281, 3006, 2899, 3521, 4019, 89, 14748], + [0, 4504], + [1, 2343, 8978], + [0, 0, 0, 8979, 2523], + [0, 14755, 14756, 14757, 14759, 14761], + "chatfanpage", + "api-con", + "-x", + "nect-x", + [2, 8981, 8983], + [3, 8984, 12], + "tiwtter", + [2, 8985, 8986], + [1, 2343, 8989], + [0, 8990, 8991, 2514, 2487], + [0, 14768, 1437, 14769, 1209, 14770, 3127, 14774, 14775, 3152, 14776, 14777, 4294, 14780, 14781], + [0, 14785, 1331, 1512, 1177, 1903, 1938, 1954, 1958, 1970], + [1, 2343, 8993], + [0, 7967, 7938, 7939, 4139], + [1, 2343, 8995], + [0, 8029, 7938, 7939, 2399], + [1, 2343, 8999], + [2, 8603, 6847], + [2, 8603, 3742], + [0, 8029, 7938, 7939, 2523], + "tasklist", + [1, 2343, 9002], + [0, 8029, 7938, 7939, 2487], + [1, 2343, 9004], + [0, 0, 9012, 9013, 2523], + "move-", + "scroll", + "move-scroll", + [2, 3877, 9007], + "react-te", + "xtarea-autosize", + [2, 9009, 9010], + [0, 2759], + [0, 1359, 2013, 14824, 6681], + [1, 2343, 9015], + [0, 0, 9016, 9017, 2523], + [ + 0, 1499, 4093, 2070, 3445, 1082, 14830, 2899, 4193, 2272, 3188, 4039, 14829, 1362, 2597, 2759, 3460, 1481, 4535, + 1084, 1389, 1364, 1615, 4151, 2839, 2311 + ], + [0, 1862, 6681, 6567, 14832, 14833, 1149, 7003, 14834, 14835, 14836, 14838, 14839, 14840], + [1, 2343, 9019], + [0, 0, 9020, 9021, 2487], + [0, 2899, 8689, 1926], + [0, 14846, 14847, 14848, 14849, 14850], + [1, 2343, 9023], + [0, 9024, 9025, 2514, 2487], + [0, 1413, 1562, 1676, 2657, 2685, 3440, 3763, 3784, 1000], + [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342], + "calendar", + [1, 2343, 9028], + [0, 9029, 9030, 9031, 2537], + [0, 1362, 14864, 2712, 1209], + [0, 14869, 1429, 1177, 1895, 1955, 2675, 1776, 2930, 2990, 2899, 3259, 3421, 3519, 1894, 4193, 4196, 4246, 3348], + [0, 3469, 3259, 14873, 7827, 14874, 14877], + [1, 2343, 9033], + [0, 9034, 9035, 9036, 2537], + [0, 2607], + [0, 1501, 620, 3123], + [0, 1851, 27], + [1, 2343, 9038], + [0, 0, 9039, 5359, 2537], + [ + 0, 2739, 4763, 3171, 2278, 34683, 2297, 1177, 2205, 2814, 3984, 4042, 4086, 4072, 2765, 2822, 3363, 3561, 4167, + 6393, 1894, 1492, 1610, 4939, 4320, 48, 2689, 53, 27098, 6375, 2654, 3566, 3989, 30616, 1165, 3401, 6371, 6376, + 2898, 3019, 34673, 29226, 6372, 7637, 8149, 7610, 11275, 26407, 1907, 6382, 4555, 87, 29568, 1937, 5583, 1938, + 1982, 2881, 2889, 30620, 6373, 1948, 2895, 6390, 811, 33071, 3963, 2910, 6379, 816, 2876, 6387, 6392, 6385 + ], + [3, 593, 11], + [2, 9040, 147], + [1, 2343, 9043], + [0, 0, 9048, 9049, 2537], + [3, 586, 12], + [2, 9044, 5602], + [3, 9045, 13], + [2, 9046, 623], + [0, 2278, 14892, 1797], + [0, 1367, 2278, 1623, 14894], + [1, 2343, 9051], + [0, 0, 0, 9055, 2537], + "-react-", + [2, 9052, 3902], + [2, 588, 9053], + [0, 1370], + [3, 80, 7], + [2, 9056, 5342], + [1, 2343, 9059], + [0, 9060, 9061, 9062, 4139], + [0, 14904, 1420, 1437, 1471, 4290, 4507, 9731, 4726], + [0, 1166, 3421, 4481, 1906], + [0, 200, 5403, 14907, 7009, 6048, 7201, 6938, 3656, 14908, 2585], + [1, 2343, 9064], + [0, 9065, 9066, 9067, 2537], + [0, 14923, 814, 14924, 4431], + [0, 1389, 1537, 4384, 4430], + [0, 1389, 14927, 2150, 14930, 1932, 2947, 14932, 6374, 14357], + [1, 2343, 9069], + [0, 9070, 9077, 9078, 2537], + [0, 1676, 3181, 4648, 14940, 14937, 14939, 14938], + [2, 597, 592], + [3, 9071, 14], + "ystem", + [2, 9072, 9073], + [2, 597, 553], + [2, 597, 594], + [0, 1429, 2899, 4039, 2151, 3980, 14942, 1951, 1385, 14944], + [0, 14938, 5284], + [1, 2343, 9080], + [0, 9081, 9082, 9083, 2537], + [0, 14938, 1380], + [0, 14953, 1385, 1429, 2899, 14942], + [0, 14938, 1698, 1585], + [1, 2343, 9085], + [0, 9086, 9090, 2514, 2487], + [0, 6520, 14959, 2116, 14939, 4449, 4648], + [3, 603, 15], + "documenter", + [2, 9087, 9088], + [0, 4856, 6503, 4874, 14962, 1429, 1540, 2899, 14964, 3421, 1894, 14967, 4487, 4490, 14970, 91], + "json-api", + [1, 2343, 9095], + "json:api", + "normalizer", + [0, 9096, 9097, 9098, 2487], + [ + 0, 14978, 14980, 14981, 1437, 1457, 1544, 1549, 14982, 14985, 14986, 984, 2145, 2151, 2659, 2700, 3170, 3459, + 13399, 3784, 14990, 4093, 710, 4150, 4151, 4153, 4218, 11804, 4747 + ], + [ + 0, 4874, 14992, 1429, 14995, 2215, 13333, 2899, 1894, 3760, 705, 4019, 4039, 4193, 4220, 4232, 4294, 4342, 91, + 4597 + ], + [0, 14998, 1623, 15000, 15001], + [3, 4873, 9], + "@types/mdx", + [1, 2343, 9103], + "mdx", + [0, 9104, 9105, 9106, 2523], + [ + 0, 1002, 2070, 614, 1695, 1145, 1398, 2018, 2571, 15043, 15016, 7029, 3729, 814, 2713, 3757, 4431, 15017, 15019, + 2861, 15020, 15030, 4165, 15040, 15006, 15044, 1537, 15031, 15037, 15048, 15018, 15028, 15042, 15047, 15007, + 15009, 3502, 15033, 3923, 15022, 15036, 1618, 15039, 15046, 15014, 15013, 15015, 13818, 15024 + ], + [0, 15060, 4384, 1241, 4135, 4430, 1292, 15057, 15052, 1506, 15051, 15055, 15056, 15059], + [0, 1388, 3209, 10906, 15064, 6374, 3378, 5284], + "encryptor", + [1, 2343, 34414], + "-model", + [2, 603, 9109], + "@rushstack/node-core-library", + [3, 9111, 11], + [2, 9112, 7009], + [3, 9113, 12], + "s-comm", + [0, 15070, 15071, 15073, 814, 4430], + "and-line", + [2, 9115, 9117], + [2, 9114, 9118], + "rig-package", + [2, 9112, 9120], + [0, 2832, 3275, 3752, 705, 4039, 4384, 15077], + "heft-node-rig", + [2, 9112, 9123], + [3, 9124, 15], + "eft-jest", + [2, 6495, 9126], + [3, 7892, 12], + [2, 9128, 3180], + [2, 5554, 7625], + [0, 1389, 14927, 1858, 2202, 2203, 353, 11316, 10906], + "JSDoc", + "AEDoc", + "TSDoc", + "alpha", + "beta", + [1, 2343, 9138], + [0, 9139, 0, 9140, 34352], + [0, 28572, 1423, 14227, 15085, 15088], + [0, 1421, 2887, 15090], + "tsdoc-build-rig", + [1, 2343, 9144], + "ig", + [0, 9145, 9147, 9148, 2443], + [0, 15095], + [3, 1937, 15], + [0, 4389, 4039, 91, 4874, 15097], + [0, 15100, 15101, 1616, 15102, 15103, 15105, 10368, 9254, 15107], + [1, 2343, 9150], + [0, 0, 9151, 9152, 2399], + [ + 0, 3421, 4390, 4481, 1429, 3348, 1437, 2899, 4193, 1177, 4042, 4474, 1894, 1317, 3310, 4196, 91, 4856, 4874, + 6503, 6513, 3090, 6512, 4232, 1978, 1895, 1955, 603, 10817, 1011, 816, 15115, 1009, 549 + ], + [0, 3230, 1395, 57], + "jju", + [1, 2343, 9155], + [0, 0, 0, 9157, 2487], + "@types/jju", + [0, 1396, 1388], + [1, 2343, 9159], + [0, 9160, 9164, 9168, 4139], + [0, 1082, 15127, 15128, 1437, 3090, 3183, 15130], + "@dat", + "astream/core", + [2, 9161, 9162], + [0, 15132, 1177, 2070, 2899, 4039, 4042, 15134, 811, 8850, 816, 4227, 4232, 15136], + "@types/a", + "ws-lambda", + [2, 9165, 9166], + [0, 5284, 15139, 15140, 15141, 6778, 7192, 5194, 6598], + "Lambda", + "Middleware", + "Serverless", + "Framework", + "AWS", + "AWS Lambda", + [1, 2343, 9176], + [0, 9177, 9178, 9179, 2443], + [0, 1301, 13811], + [0, 1090, 1317, 1389, 1537, 2676, 13651, 13633, 4237, 4389, 4431, 4535], + [0, 6866, 1388, 1389, 1398, 15148, 6735, 15149], + [1, 2343, 9181], + [0, 0, 9187, 9188, 2537], + "Middy", + "HTTP", + "Body Parser", + " Body Parser", + [2, 6671, 9185], + [0, 13614, 1158, 1159, 1177, 2708, 3410, 4103, 4389], + [0, 1398, 4162], + [1, 2343, 9190], + [0, 9197, 9198, 9199, 2537], + [3, 7709, 17], + "sm", + [2, 9191, 9192], + "aws-", + "xray-sdk", + [2, 9194, 9195], + [0, 15160], + [0, 2899, 640, 15164], + [0, 1401], + [1, 2343, 9201], + [0, 0, 8134, 9202, 2523], + [0, 4061, 15174, 4062, 202, 5260, 364, 15175, 3392, 4552, 1460], + "moj", + [2, 4964, 6770], + [1, 2343, 9206], + [0, 0, 9208, 9222, 2523], + "hash-base", + [0, 1637, 3566, 1894, 4039, 2278], + "@open-", + "draft", + "/deferred-promise", + [2, 9210, 9211], + [2, 9209, 9212], + [3, 9213, 12], + [2, 9214, 2942], + "until", + [2, 9214, 9216], + "is-node-process", + "outvariant", + "ct-event-emitter", + [2, 4285, 9220], + [0, 1623, 2278, 4329, 15182, 10052, 6398, 5130], + [1, 2343, 9232], + "test-server", + [2, 9214, 9224], + "@ossjs/release", + [2, 4860, 982], + [3, 7808, 15], + "upload", + "fileupload", + [2, 9228, 9230], + [0, 9234, 9238, 9253, 2523], + "rate-limit", + [0, 5923, 15187, 8646, 688, 691, 9296, 15194, 11420, 1170, 1437, 1676, 29297, 15197, 3445], + [3, 7810, 9], + "llow-redirects", + [2, 9235, 9236], + [ + 0, 9736, 9737, 4856, 5245, 15203, 6503, 4874, 6513, 1009, 1429, 1177, 1891, 1893, 1895, 1955, 2899, 3211, 3297, + 3377, 3421, 1890, 4172, 4193, 4474, 91 + ], + "upertest", + [2, 5051, 9239], + "@types/ws", + "engine.io-parser", + [2, 2032, 9230], + [2, 2032, 9233], + [2, 4183, 1960], + [3, 4220, 10], + [2, 9246, 57], + "ironment-miniflare", + [2, 8156, 9248], + [2, 1984, 9249], + [3, 5572, 9], + [2, 9251, 2022], + [0, 5592, 1745, 3452, 5593, 15208, 200], + "encoding", + [2, 5925, 9254], + [3, 4684, 9], + "ttp-server", + [2, 9256, 9257], + [1, 2343, 9260], + [0, 9263, 9264, 9265, 2523], + "intercept", + "low-level", + [0, 15006, 15051, 1537, 14738, 3183, 4431], + [0, 4389], + [0, 1389, 6374, 15215, 3178, 3209], + [1, 2343, 9268], + "mui", + [0, 9269, 9270, 9271, 2487], + [0, 15221, 3220, 15220, 15223], + [0, 15225, 4384, 4591, 4593, 3123], + [0, 3073, 6807, 15227, 1781, 1409], + [2, 619, 553], + [2, 619, 594], + "@mui/base", + [1, 2343, 9276], + [0, 9277, 9278, 9279, 2487], + [0, 15232], + [0, 15234, 1177], + [0, 15236, 25, 15237, 2139], + "core-", + "s-tracker", + [2, 1764, 9281], + [2, 9280, 9282], + [2, 619, 9283], + [1, 2343, 9286], + [0, 9287, 9288, 9289, 2537], + [0, 3080], + [0, 14408, 15243, 14406, 15245, 14405, 14404], + [0, 11995, 4552, 1398, 6866, 7270, 1411, 1781, 4699, 15247], + [1, 2343, 9294], + "theming", + [2, 5695, 9291], + [2, 619, 9292], + [0, 0, 9295, 9297, 2537], + [0, 1177, 1948, 2899, 3421], + [2, 9710, 15201], + [0, 1412, 1413, 6435, 1644, 57, 6270, 15253], + [1, 2343, 9299], + [0, 9303, 9304, 9305, 2537], + "mui-x", + "timepicker", + [2, 1666, 9301], + [0, 15258, 8697, 2105, 15261, 11935, 11938, 11943, 14025, 15262, 4747, 4748], + [0, 4874, 1429, 15264, 1610, 2899, 4255, 4474, 91], + [0, 4504, 15266, 1973, 2759, 15267, 3323, 202], + [1, 2343, 9325], + "@headlessui/react", + "@iconify-icon/react", + [3, 602, 8], + [2, 9309, 1194], + "@mdx-js/mdx", + "@shikijs/transformers", + "@theguild/remark-npm2yarn", + "nist", + [2, 7817, 9314], + "@vcarl/remark-headings", + "approximate-number", + "-watch-webpack-plugin", + [2, 2473, 9318], + "flex", + "flexsearch", + "git-url-parse", + "phrasing", + [2, 3138, 9323], + [0, 0, 9326, 2514, 2523], + [ + 0, 6041, 1192, 2020, 2675, 2205, 4042, 668, 12444, 4468, 4474, 4508, 2151, 1894, 15275, 91, 53, 5087, 2990, + 3123, 4864, 4131, 15276, 4057, 15277, 811, 1652, 816, 15273 + ], + "next-seo", + "-async", + [2, 3830, 9328], + [3, 3968, 10], + "ract", + "-excerpt", + [2, 9331, 9332], + [2, 9330, 9333], + "rehype-p", + "retty-code", + [2, 9335, 9336], + "matter", + "frontmatter", + [2, 3986, 9339], + "remark-h", + "eading-id", + [2, 9341, 9342], + "link-", + "rewrite", + [2, 9344, 9345], + [2, 3986, 9346], + "shiki", + [1, 2343, 9356], + "-themer", + [2, 4383, 9350], + "virtual-", + [2, 9352, 5260], + [2, 4670, 9353], + "zustand", + [0, 9369, 9370, 9371, 2443], + [2, 4860, 4349], + "tra-watch-webpack-plugin", + [2, 8773, 9358], + [3, 7634, 10], + "-url-parse", + [2, 9360, 9361], + [2, 9099, 6892], + "@repo/eslint-config", + "@repo/", + [2, 4524, 1541], + [2, 9365, 9366], + [2, 9365, 7628], + [0, 2928, 32554], + [0, 11976, 15288, 8419, 4874, 7677, 37080, 8420, 4039, 4493, 91, 1984, 8422], + [0, 2325, 20164, 8436, 202, 10339, 8437, 1552, 3143, 8438, 9553, 8439, 8440, 8441, 8442, 8443], + [1, 2343, 9373], + [0, 9377, 9380, 9385, 2537], + [3, 5309, 9], + [2, 9374, 8924], + [2, 9374, 57], + [0, 9441, 15305, 15308, 15310], + "css-what", + "esthetic", + [0, 13614, 1159, 9254, 1855, 1177, 2011, 2133, 13619, 2708, 3410, 3421, 3431, 4103, 4389], + "builder", + "guides", + "demo", + "ng-doc", + [0, 5284, 5286, 3595, 676, 6716, 7239, 6714, 6715, 7162, 1417, 7272, 3046, 6830], + [1, 2343, 9387], + [0, 0, 8134, 9388, 2537], + [0, 1420, 15320, 15318, 15321, 13230, 15322, 1758, 4545, 15323, 1871, 2585, 6270, 15324, 15326], + [1, 2343, 9390], + [0, 0, 0, 9391, 2537], + [0, 12080, 12075, 8221, 1388], + [1, 2343, 9399], + [2, 3964, 1671], + "has-p", + [2, 9394, 3871], + [2, 2573, 9395], + [3, 9396, 11], + "eading-", + [0, 0, 0, 9410, 2523], + "eading-rank", + [2, 9397, 9400], + "rehype-m", + "inify-", + [2, 9403, 3661], + [2, 9402, 9404], + [3, 4555, 11], + [2, 9406, 7131], + [3, 9312, 9], + [2, 9408, 3958], + [0, 4231], + [1, 2343, 9412], + [0, 9413, 9418, 9419, 34352], + [0, 3299, 32944], + "ordinal", + [3, 6490, 12], + "as-promised", + [2, 9415, 9416], + [0, 4874, 15342, 2026, 2822, 2899, 3536, 4255, 4481, 91], + [0, 1424, 15344, 11812, 15345, 15346, 158, 11806, 2636], + "ethers", + "hat", + "hardhat", + "n.js", + [2, 4853, 9423], + [3, 634, 25], + [2, 9425, 9420], + [3, 634, 17], + "low-", + "low-imports", + [2, 1967, 9429], + [2, 9427, 9430], + [3, 9431, 31], + "-inter", + "nal-rules", + [2, 9433, 9434], + [2, 9422, 9435], + [2, 9432, 9436], + [1, 2343, 9442], + "ethereum", + "smart-contracts", + [2, 1417, 15307], + [0, 0, 9443, 9444, 2537], + [0, 1159, 1177, 1881, 1938, 2151, 2899, 2924], + [0, 2924, 1932, 15356, 1204, 3209], + [1, 2343, 9446], + [0, 0, 0, 9450, 2523], + "proggy", + "cacache", + "bin-links", + [0, 3521, 15361, 1973, 5472, 15362], + "treeverse", + "@npmcli/fs", + "walk-", + "up-path", + [2, 9453, 9454], + [2, 636, 3766], + [3, 643, 9], + "edact", + [2, 9457, 9458], + "npm-p", + "ick-manifest", + [2, 9460, 9461], + "-checks", + [2, 1161, 9463], + [2, 3382, 9464], + "promise-", + [1, 2343, 9482], + "call-limit", + [2, 9466, 9468], + [3, 2854, 15], + "nice", + [2, 9470, 9471], + "-conf", + "lict-json", + [2, 9473, 9474], + [2, 1644, 9475], + "package-", + [2, 9477, 1781], + [2, 636, 9478], + "common-", + "ance", + [0, 0, 9511, 9521, 2523], + "stor-path", + [2, 9481, 9483], + [2, 9480, 9484], + "read-p", + "ackage-json-fast", + [2, 9486, 9487], + "all-reject-late", + [2, 9466, 9489], + [3, 641, 9], + "ame-from-folder", + [2, 9491, 9492], + [3, 638, 9], + "etavuln-calculator", + [2, 9494, 9495], + [3, 548, 8], + "e-compare", + [2, 2703, 9498], + [2, 4284, 9499], + [2, 9497, 9500], + "json-p", + "arse", + "-even-better-errors", + [2, 9503, 9504], + [2, 9502, 9505], + "installe", + "d-package-contents", + [2, 9507, 9508], + [2, 636, 9509], + [0, 1414, 15370, 2899, 1177, 668, 2203, 15371, 1690, 1894, 442, 91, 15373, 15374, 5476, 1942, 15376, 811, 5478], + "tcompare", + "oss", + [2, 4641, 9513], + [2, 636, 9514], + [2, 636, 7625], + "minify-", + [3, 3396, 9], + [2, 9518, 6774], + [2, 9517, 9519], + [0, 1973, 6468, 1145, 5472, 1429], + [1, 2343, 9523], + [0, 9524, 9525, 9526, 2523], + [0, 15373], + [0, 1414, 1429, 2899, 1177, 2203, 1894, 442], + [0, 1429, 15385, 1388, 1149, 5472, 5710, 6567, 14833], + [2, 664, 591], + [1, 2343, 9529], + [0, 0, 9530, 9531, 34352], + [0, 3095, 2899, 1429], + [0, 1429, 3495, 15393], + [1, 2343, 9533], + [0, 0, 9534, 9535, 34352], + [0, 1429, 2899, 2759, 1596, 14942, 15398], + [0, 1429, 15385, 15400, 1435, 6793, 1932, 15402, 1697, 15403, 3529, 9549, 7015, 15405], + [3, 9479, 9], + "-spawn", + [2, 2751, 9537], + [2, 9536, 9538], + [1, 2343, 9541], + [0, 0, 9543, 9544, 4139], + "spawk", + [0, 1414, 1906, 1166, 4481, 2020, 3130, 3077, 15411, 4874, 6271], + [ + 0, 1473, 7208, 1512, 7009, 7201, 200, 1871, 1111, 590, 592, 6621, 6983, 6616, 7244, 4166, 4744, 3073, 6807, + 6876, 2585 + ], + [1, 2343, 9546], + [0, 0, 9571, 9581, 2399], + "innertext", + "highlights", + "similar", + "similarity", + [3, 2954, 9], + [2, 9551, 2714], + "ttl", + [2, 4635, 9553], + "dart", + [2, 9551, 9555], + "glsl", + [2, 9551, 9557], + "haxe", + [2, 9551, 9559], + "rust", + [2, 9551, 9561], + [2, 3064, 2204], + "erlang", + [2, 9551, 9564], + [2, 9551, 4333], + "-tokens", + [2, 9548, 9567], + "atom-language-diff", + [3, 9569, 14], + [0, 1166, 1178, 1596, 15418, 1177, 15421, 2323, 15423, 2384, 2494, 2510, 15424, 1209, 3421, 3756], + "nginx", + [2, 9570, 9572], + "url-t", + "o-object", + [2, 9574, 9575], + [2, 2287, 9576], + [3, 3114, 13], + "xpand-tabs", + [2, 9578, 9579], + [0, 1438, 3778, 1179, 1973, 15426, 1213, 15427, 15428], + "-headers", + [2, 7189, 9582], + [2, 3108, 9583], + [1, 2343, 9589], + "oniguruma", + "-stdout", + [2, 9261, 9587], + [0, 0, 0, 9590, 2523], + [0, 1444, 15321, 6270, 353, 15320, 15326, 15436, 15437, 15439], + "readme", + [1, 2343, 9596], + "formatted", + " highlighting", + [2, 5341, 9594], + [0, 9597, 9598, 2514, 2537], + [0, 15444, 9632, 1556, 15447, 6041, 15448, 15449, 3445, 3510, 15450, 15451, 4135, 15452], + [0, 4874, 5254, 7677, 1177, 1905, 2807, 1894, 4257, 91, 4543, 1984], + [1, 2343, 9600], + [0, 9601, 9602, 9603, 2537], + [0, 15458], + [ + 0, 811, 15460, 8850, 816, 842, 1006, 15463, 1009, 1011, 15465, 15467, 15469, 1540, 1596, 1610, 1177, 15471, + 1927, 1937, 1948, 1999, 2070, 2765, 2766, 2297, 2881, 2886, 2891, 2895, 2898, 6387, 2910, 15475, 2923, 5303, + 3220, 3222, 3536, 4042, 4052, 6390, 15478, 4073, 91, 4747 + ], + [0, 1424, 15480, 2382, 15481, 12075, 6398], + [1, 2343, 9605], + [0, 9606, 9607, 9608, 2443], + [0, 3493, 4548, 15488, 15487, 2654, 15486, 1754, 15502, 15491, 15499, 15495], + [ + 0, 4494, 4483, 2675, 2832, 1177, 2814, 1984, 2203, 1894, 4441, 442, 91, 4874, 2990, 13204, 19438, 15504, 1953, + 15505, 4523, 7677, 1942, 22839, 1982, 3703, 15507, 1895 + ], + [0, 15512, 2814, 3585, 15514, 57, 965, 6523, 1936], + [1, 2343, 9610], + [0, 9611, 9612, 9613, 2523], + [0, 1615, 15526, 3734], + [0, 1173, 14184, 1235, 1267, 1429, 1177, 2272, 2899], + [0, 1451, 3729, 6567], + [1, 2343, 9615], + [0, 9616, 9617, 9618, 2537], + [ + 0, 97, 15533, 8597, 15538, 13042, 1156, 1325, 15540, 1461, 1505, 12160, 1582, 1593, 1603, 15541, 15545, 15547, + 15548, 13047, 15550, 5100, 15551, 15553, 2752, 2822, 15554, 2272, 15555, 15556, 12172, 3220, 15559, 1894, 11196, + 15560, 15562, 3775, 11219, 11363, 15566, 15568, 15570, 15573, 3843, 3847, 15575, 15578, 3876, 3893, 3913, 4023, + 15579, 11264, 4163, 15580, 4484, 4545, 4649, 3348 + ], + [ + 0, 53, 61, 71, 73, 76, 78, 5806, 13052, 5835, 15585, 83, 5850, 5853, 87, 90, 7833, 7839, 7840, 11275, 4859, + 15587, 15592, 4863, 15594, 15596, 5087, 15598, 4870, 15600, 15602, 12179, 4880, 15605, 4883, 15606, 15607, + 11322, 1009, 1011, 1110, 1165, 1170, 1175, 1178, 1193, 1195, 1205, 13080, 5098, 15609, 15611, 15612, 15613, + 1426, 1437, 13086, 1525, 1610, 1628, 4912, 1639, 11336, 13093, 1843, 1845, 8160, 1177, 1879, 1895, 1922, 1938, + 1939, 1947, 1948, 1959, 15615, 2054, 2060, 11345, 2092, 2148, 2193, 2070, 2323, 2338, 2510, 13099, 2529, 2675, + 2686, 2697, 15616, 1192, 2832, 5102, 695, 13115, 2990, 1209, 11357, 13119, 15618, 13123, 3177, 3183, 3188, 3190, + 3191, 3213, 3216, 3222, 3427, 3463, 3561, 3618, 3720, 11204, 15619, 15622, 11362, 89, 3807, 3810, 3817, 3820, + 5106, 5108, 15624, 3846, 15627, 9340, 3992, 13124, 13127, 8304, 13128, 4039, 13129, 15629, 4320, 11384, 11389, + 4323, 11396, 4328, 4409, 4431, 4469, 91, 4549, 4027, 15630, 15632, 2924, 15635, 4689, 13152, 11401, 5038, 3354 + ], + [0, 15637, 4964, 89, 5128, 4627, 4963, 181, 5130, 4967], + [1, 2343, 9620], + [0, 9629, 9630, 9631, 2537], + "Monorepo", + "Angular", + "Web", + "Node", + "Nest", + "Jest", + "Cypress", + "CLI", + [0, 15648], + [0, 15645, 4874, 1894, 4448, 91, 10761], + [0, 2150, 2282, 6720, 7158, 6929, 2090, 2154], + "confbox", + [1, 2343, 9634], + [0, 0, 9635, 9636, 2523], + [0, 1470, 2675, 23535, 4255, 4389], + [0, 15656, 15658, 11857, 1973, 13735], + [2, 13512, 9638], + "-old", + [1, 2343, 9640], + [0, 9641, 0, 9642, 2523], + [ + 0, 182, 148, 6164, 164, 167, 6215, 137, 27531, 6127, 29468, 159, 15664, 177, 187, 153, 162, 180, 185, 191, 157, + 15667, 15670, 15672, 27537, 140, 15676, 6200, 6166, 143, 15678, 171, 116, 15681, 150, 155, 29542, 15685, 15687, + 6217, 15690, 15692, 122, 169, 15695, 119, 15697, 15700, 6173, 15703, 146, 6133, 6158, 15706, 15712, 111, 6168, + 15714, 15716, 174, 15720, 15724 + ], + [0, 6092, 1459, 6094, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130], + [1, 2343, 9644], + [0, 0, 9645, 9646, 2523], + [0, 4481, 4042, 4441, 2665, 3117, 8850, 811, 816], + [0, 89, 1623, 5256, 6848, 1461, 614, 6435], + "EsBuild", + "Front-end", + "Backend", + [1, 2343, 9651], + [0, 9652, 9653, 9655, 2523], + [0, 4227], + [0, 1389, 1177, 1881, 2659, 3297, 4153, 4616], + "linter", + [0, 1623, 2632], + [1, 2343, 9660], + "Lint", + "ESLint", + "Testing", + [0, 9661, 9662, 9663, 2399], + [0, 1700], + [ + 0, 48, 53, 87, 92, 15742, 5087, 4874, 15745, 1193, 1503, 1610, 1701, 1177, 2020, 2675, 1192, 2990, 2991, 3377, + 1894, 3921, 4135, 15747, 91, 2924 + ], + [0, 2924, 1932, 4050, 202], + [1, 2343, 9665], + [0, 0, 0, 9666, 2523], + [0, 1111, 1468, 7009], + "Express", + [1, 2343, 9669], + [0, 9670, 8134, 9671, 4139], + [0, 15757, 4025], + [0, 1468, 1237, 3209, 1204, 2325, 15759, 15760, 15761, 5669, 6865, 7293, 6790, 2145], + [1, 2343, 9674], + "js-tokens", + [0, 9679, 0, 9682, 2523], + "const-enum", + [2, 1199, 9675], + [2, 4524, 6774], + [2, 1226, 9677], + [0, 2070, 2021], + "Swc", + "Tsc", + [0, 200, 9753, 15767, 15769, 15768, 7058, 7201, 15770, 15771, 15774, 1523, 15776], + [1, 2343, 9684], + [0, 0, 9685, 9686, 4139], + [0, 1166, 91, 1906], + [0, 200, 5403, 14907, 7009, 6048, 7201, 6938, 3656, 14908, 2585, 1781], + "@nestjs/schematics", + "@phenomnomnominal/tsquery", + "@date-fns/tz", + [1, 2343, 9691], + [0, 9693, 9694, 9695, 2537], + [3, 23750, 37, 8], + [0, 2353, 1856, 15786, 13824, 15788], + [0, 1177, 15793, 15797, 15801, 2675, 2990, 3421, 15804, 15805], + [0, 1111, 1473, 7201, 7009, 200, 4166, 3073, 6807, 4744], + [1, 2343, 9697], + [0, 9698, 9699, 9700, 2443], + [0, 4035], + [0, 4874, 1166, 91, 1906], + [0, 200, 13006, 1111, 15813, 5876, 15814, 15815, 6048, 7009, 7201, 6621, 4166, 6876], + [1, 2343, 9702], + [0, 0, 0, 9703, 34352], + [0, 200], + [2, 689, 2656], + [3, 691, 8], + [2, 9705, 3320], + "help", + [2, 689, 9707], + [1, 2343, 9713], + [3, 691, 14], + "plugins", + [2, 9710, 9711], + [0, 0, 9715, 9716, 2537], + "fancy-test", + [0, 1166, 3077, 15826, 91, 1906], + [0, 200, 1478, 6787, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921, 1781], + [1, 2343, 9718], + [0, 9719, 9720, 9726, 2399], + [0, 1512], + [0, 4170, 15833], + [3, 4866, 9], + "dent-string", + [2, 9721, 9722], + "xyquire", + [2, 6508, 9724], + [0, 200, 1512, 176], + [1, 2343, 9728], + [0, 9729, 9732, 9751, 2523], + [0, 1209, 4290, 1512], + "clean-stack", + "widest-line", + [0, 15841, 1429, 1481, 1596, 15843, 15844, 2323, 2436, 2463, 2541, 4193, 4196], + "rett", + "ier-config", + [2, 9733, 9734], + [2, 9705, 9735], + [2, 689, 1973], + [3, 4859, 9], + "ean-stack", + [2, 9738, 9739], + "@types/ejs", + "npapi", + [2, 5088, 9742], + [3, 9240, 10], + "ports-color", + [2, 9744, 9745], + [3, 7822, 10], + "dwrap", + [2, 9747, 9748], + "madge", + [0, 202, 1523, 3924, 200, 176, 15846, 15847, 3656, 1512, 10052], + " line", + [2, 1523, 9752], + [1, 2343, 9755], + [0, 9756, 9757, 9751, 2399], + [0, 4290], + [0, 1481, 1177, 1895, 1955, 1192, 15853, 15854, 1894], + [1, 2343, 9759], + [0, 9761, 8134, 9762, 2399], + [2, 1890, 4406], + [0, 4208, 4290], + [0, 15862, 15864, 2585, 7051, 6913, 200, 7009, 6048, 4166, 4289, 1111, 1871], + [1, 2343, 9764], + [0, 9775, 9795, 6936, 2537], + "paginate-rest", + [2, 1186, 9765], + [2, 7724, 9766], + [3, 9767, 16], + "request-", + "request-log", + [2, 9768, 9770], + [3, 9771, 18], + "st-endpoint-methods", + [2, 9772, 9773], + [ + 0, 1437, 4484, 2755, 1209, 4135, 2822, 15869, 2151, 4294, 688, 1110, 9730, 15871, 1107, 13223, 4290, 15872, + 15873, 2709, 15876, 4351, 15877, 15880, 15883, 15887 + ], + "-action", + "auth-action", + [2, 7724, 9777], + [3, 9778, 15], + "pp", + [2, 9779, 9780], + [2, 1182, 2995], + [2, 7724, 9782], + [3, 692, 11], + [2, 9784, 5460], + [2, 7724, 2190], + "update-", + "vers", + "in-files", + [2, 7854, 9789], + [2, 9788, 9790], + [2, 9787, 9791], + [2, 6324, 9792], + [2, 4131, 9793], + [ + 0, 1429, 1170, 2899, 1177, 4474, 9714, 91, 4856, 4874, 6503, 4870, 5254, 7637, 4864, 1431, 15891, 15893, 9740, + 1891, 15897, 9746, 9417, 1893 + ], + "octokit", + [3, 3450, 10], + [1, 2343, 9799], + [0, 9800, 9801, 9802, 2523], + [0, 7103], + [ + 0, 816, 10817, 5087, 4870, 4874, 27744, 1009, 1011, 15903, 15906, 1177, 15909, 1959, 2188, 1192, 1209, 4042, + 15911, 4468, 4474, 91 + ], + [0, 200, 91, 57, 7119, 7233, 7058, 5675, 1523], + "action-menu", + [2, 698, 9803], + [3, 9804, 21], + "sheet", + [2, 9805, 9806], + [3, 9804, 15], + "lert", + [2, 9808, 9809], + [2, 9808, 2944], + "nchor", + [2, 9808, 9812], + "rea", + [2, 9808, 9814], + "chart", + "flowchart", + [2, 5745, 9817], + [2, 9808, 9818], + "utocomplete", + [2, 9808, 9820], + [1, 2343, 9823], + [0, 9824, 9825, 9827, 2523], + [0, 15917, 1631, 15918], + [ + 0, 53, 87, 1195, 1429, 1610, 1177, 1881, 1895, 1938, 1955, 2675, 2297, 2878, 2881, 2900, 2918, 2925, 2990, 2899, + 1894, 4193, 4481, 4537, 2924, 4677 + ], + "vatar", + [0, 1492, 1585, 15921], + "badge", + [2, 698, 9828], + [3, 9829, 16], + [1, 2343, 9832], + [0, 9836, 9839, 9881, 2537], + "se-select", + [2, 9830, 9833], + [3, 9829, 15], + [0, 34216, 2020, 32794, 2755, 15926, 28429], + "readcrumb", + [2, 9835, 9837], + [0, 1166, 1906], + "-item", + [2, 9838, 9840], + "ulletin-board", + [2, 9835, 9842], + [3, 9843, 16], + "tton", + [2, 9844, 9845], + "-group", + [2, 9846, 9847], + [2, 698, 9026], + [2, 9849, 8657], + [3, 9850, 23], + [2, 9851, 6624], + [3, 9849, 16], + "rd", + [2, 9853, 9854], + [2, 9855, 9847], + [3, 9856, 19], + [2, 9857, 1283], + [3, 9855, 17], + "ousel", + [2, 9859, 9860], + [2, 9861, 9840], + "scader", + [2, 9853, 9863], + "-menu", + [2, 9864, 9865], + [3, 9866, 24], + "obile", + [2, 9867, 9868], + [3, 9866, 23], + [2, 9870, 202], + "panel", + [2, 9870, 9872], + [2, 9870, 1631], + [2, 9870, 6624], + [3, 9849, 15], + "ell", + [2, 9876, 9877], + "hart", + [2, 9876, 9879], + [0, 1492, 1585, 15928, 15929, 15930, 3917, 6033, 15931, 1490, 15932, 15933], + [1, 2343, 9883], + [0, 9884, 9885, 6162, 2537], + [0, 4290, 4294, 4726], + [0, 4874, 1009, 1011, 1414, 1429, 1437, 1610, 1177, 1938, 1953, 2321, 2899, 4039, 8689, 91], + [1, 2343, 9887], + [0, 0, 9888, 2514, 2487], + [0, 2276], + [1, 2343, 9890], + [0, 0, 9891, 9893, 2399], + [0, 1999, 4579, 4072], + "gauge", + [0, 5256, 6848, 1461], + [1, 2343, 9895], + [0, 9896, 0, 9897, 2523], + [0, 1474], + [0, 15953, 9628, 14777, 15955, 1478, 9892, 3924, 7201, 1398], + [1, 2343, 9899], + [0, 0, 9900, 9901, 2487], + [0, 1389, 15960, 2899, 3261], + [0, 1149, 2124, 1179, 15962, 15964], + [1, 2343, 9903], + [0, 9904, 9905, 9907, 2537], + [0, 2927], + [0, 4170, 2899, 1499], + "pie", + [0, 7009, 7201, 3741, 8622, 6875, 10098, 1499], + [1, 2343, 9909], + [0, 9034, 9910, 9911, 2523], + [0, 620, 3123], + [0, 1973, 2022, 6468], + [1, 2343, 9913], + [0, 9914, 9915, 9916, 2443], + [0, 6478, 15980, 2822, 15984, 15985], + [0, 1177, 1895, 2675, 1192, 2990, 3203, 1894], + [0, 4504, 15988, 15990, 1503], + [1, 2343, 9918], + [0, 9919, 9920, 9921, 2487], + [0, 15997, 15999, 16000, 16002, 16003, 16005, 16006], + [0, 16009], + [0, 6038, 1501], + [1, 2343, 9923], + [0, 0, 9924, 9926, 2399], + [0, 1734, 16015, 2600, 3105, 4545], + "fall", + [0, 5284, 1351, 1509, 4643], + [1, 2343, 9928], + [0, 0, 9929, 9926, 2537], + [0, 53, 87, 10688, 1505, 1734, 2600, 16021, 3105, 3758, 4545, 2924], + [1, 2343, 9946], + [3, 9880, 16], + "eckbox", + [2, 9931, 9932], + "-button", + [2, 9933, 9934], + [3, 9935, 23], + [2, 9936, 7227], + [2, 9876, 7877], + "lapse", + [2, 9938, 9939], + [2, 9940, 9840], + [3, 9941, 23], + "ition", + "transition", + [2, 9942, 9944], + [0, 9972, 9975, 10072, 2537], + "icker", + "or-picker", + [2, 9938, 9948], + [3, 9949, 20], + "select-", + [2, 9951, 9872], + [2, 9950, 9952], + "umn-list-group", + [2, 9938, 9954], + [3, 9955, 26], + [2, 9956, 5401], + [3, 9938, 16], + "mpany", + [2, 9958, 9959], + "nfig-", + "provider", + [2, 9961, 9962], + [2, 9958, 9963], + [3, 9964, 17], + "tainer", + [2, 9965, 9966], + "untry", + [2, 9958, 9968], + "rop", + [2, 9876, 9970], + [0, 6271, 11421], + "urrency", + [2, 9876, 9973], + [0, 2899, 4481, 1906], + "date-panel", + [2, 698, 9976], + [3, 9977, 20], + [2, 9978, 9947], + "-mobile-", + "first", + [2, 9980, 9981], + [2, 9979, 9982], + [3, 9977, 19], + [2, 9984, 6754], + [2, 9984, 176], + [3, 9977, 15], + "ept", + [2, 9987, 9988], + "ialog-box", + [2, 9987, 9990], + [3, 9991, 21], + [2, 9992, 1631], + [3, 9991, 16], + "vider", + [2, 9994, 9995], + "rawer", + [2, 9987, 9997], + [3, 9998, 16], + "op-roles", + [2, 9999, 10000], + [3, 10001, 19], + "times", + [2, 10002, 10003], + [3, 10001, 18], + [2, 10005, 2971], + [2, 10006, 9840], + [3, 10007, 23], + [2, 10008, 4403], + "ynamic-", + "scroller", + [2, 10010, 10011], + [2, 9987, 10012], + [2, 10013, 9840], + "espace", + [2, 698, 10015], + [3, 10016, 15], + "xception", + [2, 10017, 10018], + "fall-menu", + [2, 698, 10020], + [3, 10021, 15], + "ile-upload", + [2, 10022, 10023], + [3, 10024, 17], + [2, 10025, 2389], + [2, 10026, 8657], + [3, 10027, 22], + "ox", + [2, 10028, 10029], + [3, 10027, 21], + [2, 10031, 9872], + "loat-button", + [2, 10022, 10033], + [3, 10034, 19], + "bar", + [2, 10035, 10036], + "ing-", + "button", + "ing-button", + [2, 10035, 10040], + [3, 10034, 17], + "wchart", + [2, 10042, 10043], + [3, 10034, 16], + "uent-editor", + [2, 10045, 10046], + [2, 10022, 3469], + [2, 10048, 9840], + "ullscreen", + [2, 10022, 10050], + "grid", + [2, 698, 10052], + "-column", + [2, 10053, 10054], + [3, 10055, 19], + "manager", + [2, 10056, 10057], + "toolbar", + [2, 10056, 10059], + [3, 10053, 15], + "uide", + [2, 10061, 10062], + "hrapprover", + [2, 698, 10064], + [2, 698, 158], + "-viewer", + [2, 10066, 10067], + [3, 10066, 15], + "ndex-bar", + [2, 10069, 10070], + [0, 1473, 7208, 1623], + [3, 10071, 16], + "put", + [2, 10073, 10074], + "p-address", + [2, 10069, 10076], + [2, 698, 5433], + [3, 10078, 16], + "yout", + [2, 10079, 10080], + [3, 10078, 15], + [2, 10082, 2716], + [2, 10083, 9865], + [1, 2343, 10086], + [0, 0, 0, 10090, 2523], + "oading", + [2, 10082, 10087], + [3, 10088, 16], + [0, 7009, 592, 1473, 1111], + "cales", + [2, 10089, 10091], + "gon-user", + [2, 10089, 10093], + [3, 10094, 18], + "ut", + [2, 10095, 10096], + "mask", + [2, 698, 10098], + [3, 10099, 15], + "enu", + [2, 10100, 10101], + [3, 10102, 16], + "ssage", + [2, 10103, 10104], + "ilestone", + [2, 10100, 10106], + [3, 10107, 16], + "nd-map", + [2, 10108, 10109], + [1, 2343, 10112], + [0, 0, 10113, 10120, 2523], + [0, 1177, 1886], + [2, 10100, 3852], + [3, 10114, 16], + "nth-range", + [2, 10115, 10116], + [3, 10117, 20], + [2, 10118, 176], + [0, 1111, 7009, 1512], + [1, 2343, 10122], + [0, 10140, 10184, 10220, 2443], + "nav-bar", + [2, 698, 10123], + [3, 10124, 18], + [2, 10125, 4403], + [3, 10124, 15], + [2, 10127, 2304], + "umeric", + [2, 10127, 10129], + [2, 698, 5675], + [2, 10131, 9847], + "pager", + [2, 698, 10133], + [2, 10134, 9840], + [3, 10134, 16], + [2, 10136, 7251], + [3, 10134, 15], + [2, 10138, 9947], + [0, 4294, 16041], + "op-upload", + [2, 10138, 10141], + [3, 10142, 17], + [2, 10143, 8622], + [2, 10143, 6038], + [2, 10143, 2883], + [2, 10143, 2104], + "rogress", + [2, 10138, 10148], + "ull-refresh", + [2, 10138, 10150], + "qr-code", + [2, 698, 10152], + [3, 10153, 15], + "uarter-panel", + [2, 10154, 10155], + [3, 10156, 16], + "ery-builder", + [2, 10157, 10158], + [3, 697, 15], + "adio", + [2, 10160, 10161], + [2, 10162, 9934], + [3, 10163, 20], + [2, 10164, 7227], + [3, 10162, 16], + [2, 10166, 6864], + [3, 697, 16], + "cord", + [2, 10168, 10169], + [3, 10170, 17], + "ycle-scroller", + [2, 10171, 10172], + "ich-text-editor", + [2, 10160, 10174], + [3, 10175, 16], + "ver", + [2, 10176, 10177], + "oles", + [2, 10160, 10179], + [3, 10180, 16], + "w", + [2, 10181, 10182], + [0, 1173, 1267, 1437, 4387, 4389], + "scroll-text", + [2, 698, 10185], + [3, 10186, 20], + [2, 10187, 10036], + [3, 10186, 15], + "earch", + [2, 10189, 10190], + [3, 10191, 16], + [2, 10192, 4021], + "-dropdown", + [2, 10193, 10194], + [3, 10195, 21], + [2, 10196, 5131], + [2, 10196, 6624], + "ed-box", + [2, 10193, 10199], + [2, 10189, 1580], + "keleton", + [2, 10189, 10202], + [2, 10203, 9840], + "lider", + [2, 10189, 10205], + [2, 10206, 9934], + [2, 10207, 9847], + "plit", + [2, 10189, 10209], + "-list-item", + [2, 1902, 10211], + [2, 10189, 10212], + [3, 10213, 17], + "tistic", + [2, 10214, 10215], + [3, 10213, 16], + "eps", + [2, 10217, 10218], + [0, 6922, 2585, 1111, 7201, 7009, 4719, 176], + [1, 2343, 10242], + "witch", + [2, 10189, 10222], + [3, 700, 15], + "ab-item", + [2, 10224, 10225], + [3, 10226, 17], + [2, 10227, 10036], + [2, 10228, 9840], + [2, 10227, 2699], + [2, 10227, 591], + [3, 10226, 16], + "g", + [2, 10232, 10233], + [2, 10234, 9847], + "ext-popup", + [2, 10224, 10236], + "ime", + [2, 10224, 10238], + "-line", + [2, 10239, 10240], + [0, 0, 10243, 10265, 2487], + [0, 2025, 2272, 2899], + [3, 10241, 19], + [2, 10244, 9872], + [3, 10245, 20], + [2, 10246, 9947], + [2, 10247, 701], + [2, 10244, 6754], + [2, 10244, 1631], + [3, 10250, 20], + "pinner", + [2, 10251, 10252], + "line-item", + [2, 10239, 10254], + "oast", + [2, 10224, 10256], + [3, 10257, 16], + "ggle-menu", + [2, 10258, 10259], + "oltip", + [2, 10258, 10261], + "p-box", + [2, 10258, 10263], + [0, 200, 1523, 3504], + "ransfer", + [2, 10224, 10266], + "-panel", + [2, 10267, 10268], + [3, 10267, 16], + "ee", + [2, 10270, 10271], + [2, 10272, 9865], + [3, 10273, 19], + [2, 10274, 1631], + [2, 698, 9229], + "-dragger", + [2, 10276, 10277], + [3, 10278, 21], + [2, 10279, 3392], + [3, 10276, 15], + "ser", + [2, 10281, 10282], + "-account", + [2, 10283, 10284], + [3, 10285, 19], + [1, 2343, 10288], + [0, 10297, 10298, 10305, 2443], + "contact", + [2, 10286, 10289], + [2, 10286, 3193], + [2, 10291, 9847], + [2, 10286, 163], + "watermark", + [2, 698, 10294], + [3, 10295, 15], + [0, 16053, 16056, 3025, 16057], + [0, 1187], + "izard", + [2, 10296, 10299], + "year-range", + [2, 698, 10301], + [3, 10302, 19], + [2, 10303, 176], + [0, 6478, 1644, 7233, 7058, 5675, 14690, 57, 7119, 200, 1523, 3924], + [3, 1533, 10], + [2, 10306, 6082], + "vue-c", + [2, 10308, 544], + "opentiny", + "less-c", + [2, 10311, 544], + [2, 8924, 10312], + [3, 3197, 10], + [2, 10314, 544], + [1, 2343, 10317], + [0, 10318, 10319, 10320, 2537], + [0, 16053, 16064, 16066, 16057], + [0, 811, 816, 2829, 4042, 1187], + [0, 7009, 9753, 1521, 1179], + "esno", + [1, 2343, 10323], + [0, 0, 10324, 10325, 2537], + [0, 4481, 1192, 1177, 2203, 4468, 1894, 442, 91, 5087, 4874, 4523, 1939, 1895], + [0, 1525, 1523, 5675, 57, 200, 7233, 7058, 6478], + [3, 2517, 9], + [2, 10326, 134], + [2, 2522, 8754], + [1, 2343, 10330], + [0, 10331, 10332, 10333, 2523], + [0, 2070, 1680, 1209, 16085, 16078, 2151, 2720, 3183, 7915, 4296, 1707, 16082, 4300, 1652], + [ + 0, 3421, 1429, 3348, 2899, 4193, 2194, 4135, 1503, 3363, 48, 2708, 3752, 53, 94, 4131, 87, 3200, 1208, 16092, + 16088, 16090, 78, 1570 + ], + [0, 1528, 3721, 1671, 16096, 1527], + [1, 2343, 10335], + [0, 10336, 10338, 5265, 2537], + [0, 192, 6303], + "otterhttp", + [0, 6306, 6307, 26379], + "node.js", + "web framework", + [1, 2343, 10343], + [3, 17194, 17], + [0, 0, 10344, 10358, 2487], + [ + 0, 1173, 1178, 1198, 1230, 13982, 1264, 1280, 1503, 1610, 1742, 1177, 1895, 1955, 1192, 3170, 1894, 4039, 4042, + 4045, 4067, 4077, 4706 + ], + "header", + "-range-parser", + [2, 10345, 10346], + [2, 704, 1080], + [3, 703, 13], + "ntent-type", + [2, 10349, 10350], + [2, 988, 2706], + [2, 704, 10352], + [2, 704, 1000], + [2, 704, 1002], + [3, 706, 12], + [2, 10356, 995], + [ + 0, 4552, 1172, 6778, 16107, 5194, 16108, 16109, 1936, 8958, 16110, 3924, 16111, 3250, 16112, 3374, 6985, 16113, + 16114, 16115, 1871, 16116, 4301, 10381, 16117, 1283 + ], + [1, 2343, 10360], + [0, 0, 9839, 10361, 2487], + [0, 2013, 13771, 2018, 6868, 15535, 11631, 16123], + [1, 2343, 10365], + "es-escape-html", + [3, 10351, 19], + [0, 10375, 10377, 10378, 2523], + "disposition", + [2, 10364, 10366], + "encode", + "encode-url", + [2, 704, 10369], + [3, 10370, 12], + "rrors", + [2, 10371, 10372], + [2, 704, 4590], + [0, 1413, 16130, 1676, 12627, 16128, 4100, 4590], + "res", + [0, 1087, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342], + [0, 1536, 16518, 25386, 2663, 2026, 21665, 27, 3101], + [1, 2343, 10380], + [0, 10383, 9264, 2514, 2537], + "tag", + [2, 10371, 10381], + [0, 16136, 2713, 3923, 7231], + "send-file", + [1, 2343, 10386], + [0, 10387, 10388, 10390, 2537], + [0, 4094, 1437, 4747, 4459, 4165, 4351], + [ + 0, 2675, 1177, 1984, 668, 2203, 1894, 442, 91, 4874, 2990, 6479, 4892, 16151, 16150, 4523, 16149, 7677, 4103, + 9746, 22839, 16144, 1895, 1955, 16152, 23753, 10964 + ], + [2, 712, 1732], + [0, 16159, 13792, 12804, 1540, 1523, 16160], + [1, 2343, 10394], + "fined", + "undefined", + [0, 10395, 10396, 10398, 2537], + [0, 2856], + [0, 4874, 1414, 1509, 16166, 34218, 16167, 3583, 705, 4135, 4452, 4474, 91, 4545, 16168, 4745], + "randexp", + [0, 12084, 1541, 8309, 16172, 16174, 1263, 6639], + [3, 10389, 22], + "js-prettier-config", + [2, 10399, 10400], + "i-color", + [2, 9738, 10402], + [3, 7744, 9], + "tp-proxy", + [2, 10404, 10405], + "isnil", + [2, 6308, 10407], + [3, 4874, 9], + "@types/nock", + [1, 2343, 10412], + [0, 10414, 9839, 10415, 2537], + "@types/ramda", + [0, 16181, 8098, 2215, 34027, 16184], + [0, 1541, 1542, 13901, 8309, 6937, 16188, 1781, 2382, 16189, 7007, 14745], + "-and-tag-version", + [2, 1528, 10416], + "hai-friendly", + [2, 4914, 10418], + [3, 3028, 12], + [1, 2343, 10422], + [0, 10423, 10424, 10425, 2537], + [0, 1676, 2099, 3494, 4578], + [0, 1177, 2899, 3421, 4342], + [0, 5130, 5122, 2663, 1544, 16196], + "pact", + "pact-js", + " testing", + "ract testing", + [2, 3109, 10429], + "r driven testing", + [2, 6613, 10431], + [1, 2343, 10434], + [0, 0, 10435, 10436, 2443], + [0, 4616], + [0, 1544, 2026, 16202, 6347], + [1, 2343, 10438], + [0, 0, 10439, 2514, 2537], + [0, 1177, 1192, 4193], + [1, 2343, 10444], + "default", + "waapi", + "urls", + [0, 10445, 10447, 10448, 2537], + [0, 1676, 16211], + "arguments", + [ + 0, 11436, 192, 5467, 19181, 442, 5245, 6494, 7808, 4874, 9240, 1009, 1011, 1166, 1414, 1503, 1177, 1895, 1930, + 1955, 2026, 2040, 2193, 2675, 2990, 3230, 3400, 3446, 1894, 4257, 4342, 1531, 4508, 91 + ], + [0, 1544, 1550, 3230, 1577, 2026], + [1, 2343, 10450], + [0, 0, 10451, 10452, 2523], + [0, 11976, 7808, 4874, 7677, 2040, 4474, 91, 1983, 26744, 1984], + [0, 1544, 1552, 1577, 2026], + [1, 2343, 10454], + [0, 0, 10455, 10456, 4139], + [0, 8646, 4874, 7677, 1446, 16230, 1177, 1905, 16232, 1894, 16234, 15452, 4290, 91, 4543, 1984], + [0, 7201, 2942, 16237, 16238, 200, 14566, 4549, 3741, 16239, 1671, 1851, 16240], + [1, 2343, 10458], + [0, 0, 10459, 10460, 2523], + [ + 0, 1906, 1166, 1758, 16257, 2746, 1797, 7614, 3754, 16272, 16249, 16262, 16264, 16268, 16270, 4371, 16277, + 16279, 2675, 16263, 89, 16278, 1177, 16260, 5304, 16267, 1209, 16269, 4135, 16274, 16276, 16281, 2114, 16261, + 16271, 2608, 3257, 3416, 16282, 3824, 2036, 3985, 16275, 4545, 16280, 53, 16259, 2990, 16265, 16245, 1506, + 16251, 16273, 16256, 16248, 90, 3995, 1909 + ], + [0, 16284, 1283, 6624], + [1, 2343, 10462], + [0, 0, 10463, 10464, 2487], + [0, 1414, 1177, 1903, 1938, 1948, 1954, 1958, 1970], + [0, 1560, 27, 16290, 10376], + [1, 2343, 10467], + "fd-package-json", + [0, 0, 10468, 10469, 2523], + [0, 3421, 2899, 1177, 1693, 1954, 1938, 1958, 1903, 1970], + [0, 1562, 27, 990, 10376, 16296], + [1, 2343, 10471], + [0, 10472, 0, 10473, 2537], + [0, 18186, 10466, 3157, 18183, 16309, 13848, 28401, 16322], + [0, 1566, 16094, 13729, 3073, 200], + [1, 2343, 10475], + [0, 10476, 0, 10477, 34352], + [0, 3157, 16330, 16329, 1566], + [0, 200, 13326, 1566, 16094, 13729, 3073], + [1, 2343, 10479], + [0, 10480, 0, 10481, 2443], + [0, 16337], + [0, 1566, 16341, 16342], + [1, 2343, 10483], + [0, 0, 10484, 10485, 2537], + [0, 16349, 4384], + [0, 6270, 12938, 4225, 3053, 1388, 1676], + [1, 2343, 10487], + [0, 0, 10488, 10489, 2523], + [0, 29867, 7677, 16356, 91, 1984], + [0, 977, 16358], + [1, 2343, 10491], + [0, 10492, 9025, 10493, 2537], + [0, 977, 1581], + [0, 977, 2663], + [1, 2343, 10495], + [0, 10496, 10497, 10498, 2399], + [0, 16358, 1676, 16128, 4100], + [0, 1544, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342], + [0, 1544, 2026, 2663, 1577], + [1, 2343, 10500], + [0, 0, 0, 10501, 2537], + [0, 977, 16375, 16376], + [1, 2343, 10503], + [0, 10504, 10505, 10506, 2537], + [0, 16382], + [0, 1389, 3183, 3294, 16384, 3460, 16389, 4535], + [0, 1492, 1585, 1388], + [1, 2343, 10508], + [0, 10509, 10510, 10511, 2537], + [0, 27921, 2200, 4121, 3369, 4143], + [ + 0, 1700, 1192, 2675, 3144, 1622, 1177, 1701, 2203, 16407, 2924, 1894, 1610, 48, 442, 1193, 91, 53, 4874, 2092, + 2990, 3400, 192, 1953, 27928, 4257, 87, 4523, 16396, 1939, 1942, 68, 1938, 16398, 20281, 1982, 1895, 1955, + 19344, 16400, 5467 + ], + [0, 2924, 1932, 16410, 7004, 1585], + [1, 2343, 10513], + [0, 10514, 10515, 2514, 2537], + [0, 2070, 3181, 3188, 16415, 4431, 4558, 4747], + [0, 4039, 4389, 4387], + [1, 2343, 10517], + [0, 0, 7923, 10518, 2537], + [0, 16421, 11194, 1179, 16423, 16424, 16425], + [1, 2343, 10520], + [0, 10521, 10522, 10523, 2537], + [0, 3044, 1588, 16432], + [0, 4880, 4883, 91, 89, 3824], + [0, 89, 91, 11194, 11255, 16435], + [1, 2343, 10525], + [0, 10526, 10527, 10528, 2537], + [0, 1543, 16446, 16449, 16444, 6038, 2020, 3368, 4135, 4375], + [0, 16454, 1414, 2765, 4037], + [0, 1591, 5576, 200], + [1, 2343, 10530], + [0, 0, 0, 10531, 2523], + [ + 0, 6570, 6964, 6789, 7221, 6746, 7011, 7194, 7087, 6839, 6860, 6918, 6620, 6777, 16461, 6748, 7171, 6894, 6945, + 6743, 7309, 6837, 6644, 6634, 7259, 6797, 7061, 6608, 16462, 6726, 6828, 7275, 6569, 7144, 7108, 7027, 7263, + 6923, 6854, 7134, 6762, 7042, 6818, 6677, 6422, 6805, 1858 + ], + [1, 2343, 10533], + [0, 10534, 10535, 10536, 2537], + [0, 3427, 4590], + [0, 1087, 1177, 2026, 2899, 3421, 4342], + [0, 1594, 2026, 1544, 2663], + [1, 2343, 10538], + [0, 10539, 10540, 10541, 2487], + [0, 16473, 2702, 2822, 16474], + [ + 0, 7637, 4874, 16478, 1009, 1011, 16480, 1610, 1177, 16482, 1895, 1915, 1938, 1954, 1985, 2675, 2990, 15757, + 1894, 16484, 91, 1984 + ], + [0, 3001, 8309, 1541], + [1, 2343, 10543], + [0, 10544, 10545, 10546, 2537], + [0, 2822, 16491, 16492, 3183, 705], + [0, 2899, 3421, 4170, 4172, 4193, 1906], + [0, 4504, 1596], + [1, 2343, 10548], + [0, 10549, 10550, 10551, 2537], + [0, 16499, 2205, 3157], + [0, 1166, 2020, 3505, 16330, 1906], + [0, 13326, 200, 1585, 16502, 16499, 2090, 1586, 1496, 2150, 3101, 2070, 16503, 3275, 2062, 3719, 2382, 1563, 16504], + [1, 2343, 10553], + [0, 10554, 10555, 10556, 2537], + [0, 2212, 16513, 1448, 16509, 16512, 2685, 16511], + [0, 1414, 1166, 4494, 3297, 4193, 1177, 2203, 442, 16515, 91, 4874, 4454, 4523], + [0, 5284, 1598, 16517, 15514, 15362, 2814, 6710, 27, 2671, 13333, 2212, 705, 1002, 11996, 16518], + "@epic-web/invariant", + [1, 2343, 10559], + [0, 0, 0, 10560, 2443], + [0, 1599, 16523, 16526, 16528, 16524, 16530, 16531, 16532, 13580, 16533, 16534, 16536, 16537], + [1, 2343, 10562], + [0, 10563, 10564, 10565, 2523], + [0, 16542, 2713, 13892, 16543, 16544], + [0, 13817, 4100, 4255, 4387, 4389], + [0, 1616], + [1, 2343, 10567], + [0, 10568, 10569, 10570, 2523], + [0, 3082, 3427], + [0, 1192, 3744, 89, 3824, 2924], + [0, 89], + [1, 2343, 10573], + "degit", + [0, 10574, 10575, 10576, 2399], + [ + 0, 63, 16560, 1462, 1532, 16563, 16566, 1676, 2105, 2185, 2205, 2212, 16568, 2709, 16570, 2743, 2812, 1209, + 3021, 3093, 3157, 16571, 13233, 16572, 3527, 3544, 3561, 16573, 16576, 16578, 4002, 4207, 4400, 4431, 4597 + ], + [0, 1149, 1610, 2099, 2182, 1192, 3297, 16581, 4151, 16584, 4278, 4603, 1906], + [0, 1604, 3403, 1623, 16587], + [1, 2343, 10578], + [0, 10579, 10580, 10581, 4139], + [0, 6501, 5303], + [ + 0, 192, 442, 16596, 16597, 16602, 6061, 16607, 6063, 6065, 16608, 16612, 842, 16145, 5087, 4874, 6513, 1610, + 1177, 1895, 1939, 1955, 2675, 1192, 2990, 1894, 4131, 4193, 91, 4523 + ], + [0, 1605, 16615, 16617, 16618, 4116, 16619, 16621], + [1, 2343, 10583], + [0, 0, 0, 10584, 2537], + [0, 1605, 6400, 5995, 57, 1606, 16618, 4116, 16629, 5957, 12692, 14571, 16631], + [1, 2343, 10586], + [0, 0, 10587, 10588, 2537], + [ + 0, 30684, 33382, 16636, 16637, 33968, 33969, 16638, 33971, 17212, 4874, 1177, 16644, 1930, 1938, 1942, 1951, + 1953, 16647, 1958, 1964, 1982, 2203, 25209, 3124, 16649, 3390, 1894, 23535, 33974, 4508, 91, 16650 + ], + [0, 1605, 16631, 4116, 1608, 6400, 5995], + [1, 2343, 10590], + [0, 10591, 0, 10609, 2537], + [0, 10870, 16666], + [3, 804, 10], + [2, 10592, 8893], + [2, 10592, 8891], + [3, 10594, 12], + [2, 10595, 8896], + [2, 10592, 8905], + [3, 10597, 11], + "omutils", + [2, 10598, 10599], + "ragdrop", + [2, 10598, 10601], + [2, 10592, 8652], + [2, 10592, 8899], + [2, 10592, 3583], + [2, 10592, 8901], + "virtualdom", + [2, 10592, 10607], + [ + 0, 158, 12712, 7004, 16660, 16661, 16662, 16663, 16664, 29241, 29242, 29244, 29245, 29247, 29248, 1936, 1623, + 5284, 6400, 5122 + ], + [1, 2343, 10611], + [0, 10612, 10613, 10618, 2523], + [0, 10557, 1615], + [0, 31088, 21122, 4874, 7677, 23203, 1177, 1894, 91, 1984, 31103], + "@release-it/conventional-changelog", + [2, 812, 4072], + "cobertura", + "git-", + [0, 16674, 16676, 6574, 16697], + "git-cz", + [1, 2343, 10625], + "global-jsdom", + [2, 7627, 1177], + [2, 10622, 20], + "putout", + [0, 10626, 10628, 10629, 2523], + [0, 3310], + "quibble", + [ + 0, 3421, 1429, 3297, 2675, 2899, 4747, 4039, 4042, 4135, 1503, 2026, 2924, 4255, 1527, 91, 4856, 4874, 1364, + 2990, 4150, 4677, 6503, 4705, 192, 4257, 8849, 3198, 15277, 1652, 28710, 5467 + ], + [0, 1612, 27, 1002, 1862, 1149, 7003, 14571, 14566, 202, 89, 970, 1388, 6805, 7102, 4731, 6662], + "remark-github", + "toc", + "remark-toc", + [2, 4513, 9339], + [3, 4514, 16], + "dn-links", + [2, 10634, 10635], + "no-inherit", + [2, 4513, 10637], + [2, 4513, 3984], + [3, 10639, 17], + "-defaults", + [2, 1213, 10641], + [2, 10640, 10642], + [1, 2343, 10647], + "-prettier", + [2, 4549, 10645], + [0, 10649, 10662, 10664, 2487], + [3, 5410, 10], + [0, 4707, 16687, 16688], + "annotate", + "pin", + "specific", + "ations", + [2, 10652, 10653], + "anatomy", + "dissection", + "dissect", + [3, 10654, 13], + "specs", + [3, 2620, 12], + [2, 10660, 591], + [0, 1192, 2675, 1177, 3188, 4039, 1175, 1193, 2990, 192, 4257, 16692, 16694, 5467], + "spacing", + [0, 1614, 16696, 6574, 16697, 16699, 6987, 8429, 16701], + "speccer", + [1, 2343, 10668], + "grid-layout", + [0, 10669, 10670, 2514, 2523], + [0, 16710, 16713, 16716, 1600, 16719, 16721, 9207, 2713, 16722, 16725, 3779, 16726], + [0, 13614, 1177, 13817, 3421, 3438, 16728, 4100, 4135, 4389], + [1, 2343, 10676], + "@web", + "/shadycss", + [2, 4963, 10673], + [2, 10672, 10674], + [0, 0, 0, 10680, 2523], + "dom5", + "lazypipe", + "poly", + [ + 0, 1965, 1616, 16733, 16734, 16735, 16736, 16737, 16739, 16740, 16741, 16742, 16743, 16744, 16745, 16746, 16747, + 16748, 16749, 16750, 16751 + ], + "polymer-cli", + "polymer-", + [2, 10682, 6147], + "gulp-v", + "ulcanize", + [2, 10684, 10685], + "wct-browser-legacy", + [2, 1262, 3178], + [3, 806, 9], + [2, 1382, 5187], + [2, 10689, 10690], + "google-", + "clos", + [1, 2343, 10709], + "ure-compiler", + [2, 10693, 10695], + [2, 10692, 10696], + "iron", + [3, 4314, 10], + "-page", + [2, 10699, 10700], + [2, 10698, 10701], + [2, 10689, 10702], + [3, 10675, 15], + "webcomponentsjs", + [2, 10704, 10705], + "gen-closure-declarations", + [2, 10689, 10707], + [0, 10710, 10711, 10712, 2537], + [0, 1509], + [0, 1414, 1177, 16758, 1938, 1951, 1954, 1955, 2899, 16759, 3400, 1894], + [0, 16166, 57], + [3, 78, 24], + [3, 5731, 9], + [1, 2343, 10716], + [0, 10758, 10762, 10764, 2537], + "-assign", + [2, 5734, 10717], + [2, 10714, 10718], + [2, 10713, 10719], + "@metalsmith/layouts", + [3, 10721, 12], + [2, 10722, 1783], + [3, 807, 9], + "disable", + [2, 2827, 10725], + [2, 1884, 10726], + [2, 10724, 10727], + [3, 10728, 23], + "qx", + [2, 10729, 10730], + [3, 10728, 16], + "plugin-qx", + [2, 10732, 10733], + "app-", + "module-path", + [2, 10735, 10736], + "better-ajv-errors", + "cldr", + "console-", + "contr", + "ol-strings", + [2, 10741, 10742], + [2, 10740, 10743], + "core-js-", + [2, 10745, 6374], + [3, 4913, 14], + [2, 10747, 7877], + [3, 7681, 17], + "codeframe", + [2, 10749, 10750], + "fontkit", + "get-value", + "github-api", + "jstransformer-dot", + "ps-tree", + "set-value", + [ + 0, 16765, 34219, 16767, 16768, 34222, 16770, 16771, 1109, 1437, 16064, 1525, 28612, 16772, 16775, 16778, 16779, + 16780, 16781, 26385, 4135, 27921 + ], + "tap-colorize", + "unset-value", + "upath", + [0, 8778, 5254, 3170, 3181], + "dirsum", + [0, 16789, 16790, 1501, 15318, 15321, 16791, 16793, 16794, 671], + "qooxdoo", + "fontend", + [1, 2343, 10773], + "back-end", + "gui", + "binding", + "databinding", + "interfaces", + [0, 10774, 10775, 10776, 2537], + [0, 2713, 4227, 16799], + [0, 2899, 4170, 3130, 1413], + [0, 1623, 57, 5374, 5376], + "@mdi/font", + [1, 2343, 10781], + "@mdi/svg", + "@xmldom/xmldom", + [0, 0, 10782, 10789, 34352], + [0, 442, 16805, 16808, 1177, 3561, 4042, 4579], + "animate.css", + [3, 1369, 10], + [2, 10784, 45], + "eva-icons", + "line-a", + "line-awesome", + [0, 3561, 6425, 1623, 6432, 16811, 3205, 4327], + "ar", + "quasar", + "fonts", + "animations", + [1, 2343, 10795], + [0, 0, 10796, 10797, 2523], + [ + 0, 23339, 13204, 6503, 4874, 5542, 16818, 1177, 16821, 1895, 1955, 16824, 2675, 16825, 2832, 2990, 2899, 3377, + 1894, 28865, 29444, 91, 16827, 16831 + ], + [0, 1623, 5746, 3392], + "gpu", + "detect-gpu", + "gltfpack", + [1, 2343, 10803], + "@react-", + [0, 10812, 10813, 10819, 2537], + "three/drei", + [2, 10802, 10804], + [3, 10805, 13], + "fiber", + [2, 10806, 10807], + "processing", + [2, 3689, 10809], + [2, 10806, 10810], + [0, 16837, 3561, 16840, 3638, 16841, 16842, 3688, 4135], + [ + 0, 48, 53, 87, 192, 5467, 16405, 1193, 1610, 1622, 1701, 1854, 1177, 1895, 1938, 2092, 2675, 1192, 2780, 695, + 2969, 2990, 3144, 3177, 3400, 3618, 3672, 1894, 2278, 4111, 4257, 4294, 4307, 4333, 4334, 4027, 2924 + ], + "test-renderer", + [2, 10806, 10814], + [3, 10615, 16], + [2, 10816, 2528], + [3, 827, 17], + [0, 2924, 1623, 1194, 1002, 1204], + "actions", + [2, 10818, 10820], + [1, 2343, 10823], + [0, 10838, 10845, 10856, 2523], + "essentials", + [2, 10818, 10824], + "interactions", + [2, 10818, 10826], + [2, 10818, 3966], + [3, 827, 11], + [2, 813, 2942], + [2, 10829, 10830], + "preset-", + [3, 1603, 13], + [2, 10833, 1896], + [2, 10832, 10834], + [2, 10829, 10835], + [2, 10829, 89], + [0, 1637, 3561, 2805, 4121, 4143, 5180], + "-webpack5", + [2, 10837, 10839], + [2, 10829, 1975], + "__jest-dom", + [2, 6626, 10842], + [2, 7750, 10843], + [ + 0, 1700, 16858, 1192, 2278, 2675, 3144, 1622, 1177, 1701, 668, 2203, 4337, 2924, 16851, 1894, 1462, 1610, 48, + 442, 1193, 1628, 91, 53, 16850, 16854, 4874, 2990, 3400, 4111, 16860, 192, 1953, 27928, 16853, 4257, 87, 1939, + 1584, 1942, 1938, 16857, 20281, 1982, 1895, 1955, 3177, 19344, 16400, 5467 + ], + "@types/three", + "-image-diff-js", + [2, 1651, 10847], + [3, 1970, 16], + "orybook", + [2, 10849, 10850], + "r3f-perf", + [3, 6068, 15], + [2, 10853, 2481], + "suspend-react", + [0, 1637, 1623, 16858, 1462, 11538, 668, 2924, 1464, 16862, 16863, 3178, 2632, 6707, 6708], + [1, 2343, 10859], + "three-stdlib", + [0, 10861, 10869, 10871, 2537], + "threejs", + [0, 16868, 9378, 15488, 16870, 15487], + "hree-fiber", + [2, 3900, 10862], + "y-player-me", + [2, 3917, 10864], + "3D", + "avatars", + "glb", + [0, 4483, 1984, 91, 4874, 2654, 11976, 16874, 16877, 7677], + "@cropper/elements", + [0, 1623, 3585, 16879], + [1, 2343, 10873], + [0, 10885, 10889, 10890, 2537], + "@phryneas/ts-version", + [2, 5531, 2090], + [2, 5531, 2924], + [3, 4852, 12], + "__core", + [2, 10877, 10878], + [3, 10879, 14], + [2, 5223, 5651], + [2, 1181, 10881], + [2, 10880, 10882], + "@types/n", + [0, 3141, 4228], + "@types/nanoid", + [2, 4807, 3765], + [2, 7686, 2473], + [0, 1414, 16885, 668, 1177, 16889, 2899, 4042], + [0, 1623, 6892, 207, 57, 16891, 16892, 1179, 594, 5341, 7020], + [1, 2343, 10892], + [0, 0, 10893, 10899, 2537], + [0, 16805, 1393, 2070, 3561, 3566, 3672, 4135, 4320, 4323, 16898], + [3, 811, 14], + [2, 10894, 594], + "common", + "commondir", + "is-reference", + [0, 1623, 16897, 10654, 16900], + "locat", + "e-character", + [2, 10900, 10901], + "relative", + [2, 4013, 10903], + [1, 2343, 10907], + "commonjs", + [0, 0, 10908, 10909, 2537], + [0, 1173, 1264, 1503, 2228, 14352, 2759, 2899, 3954, 4019], + [0, 1623, 1867, 16906, 1871, 4990], + [1, 2343, 10913], + "is-builtin-module", + "is-module", + [0, 10914, 10917, 10918, 2537], + [0, 2984, 16912], + "capitalize", + [2, 4284, 10915], + [0, 1165, 3561, 16915, 16916], + [0, 1623, 15215, 3178, 16918, 16919, 3561, 6425], + [1, 2343, 10920], + [0, 10921, 10922, 10926, 2443], + [0, 28920, 30928, 1634, 3084], + [0, 23591, 23205, 1177, 1895, 1955, 2203, 1894], + "groq-js", + [3, 817, 8], + "@sanity/ui", + [0, 6829, 6977, 7146], + "@types/cpx", + [1, 2343, 10937], + "dotenv-flow", + [2, 10924, 1473], + [2, 10924, 45], + "@sanity/c", + [2, 10932, 1124], + [3, 3878, 10], + [2, 10934, 6346], + [2, 7686, 93], + [0, 0, 10943, 10945, 2537], + "pkg-utils", + [2, 10924, 10938], + "@portabletext/react", + [3, 10940, 14], + [2, 10941, 6081], + [ + 0, 53, 87, 92, 442, 16805, 33227, 16933, 16934, 5087, 13204, 4874, 15600, 16938, 1193, 1437, 1457, 1634, 1895, + 1955, 2126, 1192, 2832, 3141, 1894, 3980, 4494, 4495, 91, 4523 + ], + "cpx", + [0, 1623, 590, 91, 2124, 4532, 553, 7900], + "sanity", + "refractor", + "kdirp", + [2, 6502, 10948], + "-workshop", + [2, 10925, 10950], + "vitest-", + [1, 2343, 10954], + [0, 10955, 10956, 10965, 2523], + [0, 16944, 977, 2657, 1581], + [0, 3421, 2899, 1177, 1544, 4342, 1364, 1575, 1578, 1954, 1938, 1958, 1903, 1948, 1970], + [3, 9794, 18], + "reset", + [2, 10957, 10958], + [2, 10924, 10959], + "imple-", + "import-sort", + [2, 10961, 10962], + [2, 1967, 10963], + [0, 16944, 11590, 2663, 2026], + "API reference", + [1, 2343, 10968], + [0, 10969, 10970, 10971, 2537], + [0, 1642, 1645, 1647, 4280], + [0, 816, 6503, 4874, 1794, 2899, 1894, 4042, 4064, 4066, 4170, 4474, 91], + [0, 202, 1641, 16956, 57, 1644, 5374, 1646, 353, 3101, 8623, 16957, 5995, 4967], + [3, 9307, 12], + [2, 10972, 188], + [2, 7719, 57], + [2, 819, 10974], + [2, 4807, 1143], + "snippetz", + [2, 819, 10977], + [2, 10987, 14037], + [1, 2343, 10983], + "@unhead/vue", + "@vue", + [0, 0, 10985, 10986, 2523], + "@vueuse/core", + [0, 816, 6503, 4874, 1680, 1794, 2899, 1894, 4042, 4064, 4066, 4170, 4474, 91], + [0, 3101, 8623, 1641, 3048, 5995, 4967], + [3, 35505, 11], + "code-", + [2, 10988, 5342], + [2, 819, 10989], + [3, 818, 12], + [2, 10991, 5576], + "@scalar/o", + "as-utils", + [2, 10993, 10994], + [2, 819, 553], + "@scalar/t", + "hemes", + [2, 10997, 10998], + "toast", + [1, 2343, 11006], + "use-toasts", + [2, 819, 11002], + "@scalar/co", + [2, 11004, 4961], + [0, 0, 11007, 11009, 2523], + [0, 816, 6503, 4874, 1642, 16971, 1680, 1794, 2899, 2966, 1894, 4042, 4064, 4066, 4170, 4280, 4474, 91], + [2, 27553, 1794], + [0, 1641, 1644, 57, 6270, 16956, 3101, 5995, 4967], + "blocks", + [2, 10829, 11010], + [1, 2343, 11014], + [2, 5249, 11020], + [0, 0, 11015, 11019, 34352], + [0, 816, 6503, 4874, 1642, 1680, 1794, 2026, 2899, 1894, 4042, 4064, 4066, 4170, 4474, 91], + [2, 1029, 188], + "test-utils", + [2, 5334, 11017], + [0, 1641, 1646, 5374, 5995, 4967], + "flect.ownkeys", + "webpack-stats", + [2, 4049, 11021], + [1, 2343, 11024], + [0, 6203, 11025, 11029, 2537], + [0, 35960, 6503, 4874, 1217, 1596, 3183, 2899, 3421, 4193, 4468, 4474, 91, 4537, 2924, 4677], + [2, 4609, 7179], + "css-in", + "well-known-symbols", + [0, 1641, 16984, 16986, 1648, 1781, 16989, 16990, 16991, 16994, 16995], + [1, 2343, 11035], + "jected-by-js", + [2, 11027, 11031], + [2, 4609, 11032], + "media-mock", + [0, 11036, 11042, 5543, 4139], + [ + 0, 3261, 2070, 1512, 1209, 4593, 2089, 6532, 814, 1362, 17003, 3730, 1525, 2753, 1483, 12126, 6481, 17010, 6479, + 17007, 2709, 17011, 17009, 17000, 1874, 6475, 17002, 6470 + ], + "-tooling", + [2, 6147, 11037], + [2, 819, 11038], + "galaxy", + [2, 819, 11040], + [ + 0, 3421, 4449, 1429, 2899, 4193, 1177, 1544, 1593, 1290, 2151, 3257, 1894, 17013, 1596, 48, 1389, 4196, 53, + 1178, 1509, 4151, 94, 6525, 6530, 87, 1954, 1922, 3957, 1938, 1208, 1958, 1895, 1903, 1955, 1970, 14039 + ], + "reference", + [1, 2343, 11045], + [0, 0, 11046, 11047, 2537], + [0, 1257, 1264, 1280, 1389, 1177, 17019, 2665, 3188, 17020, 4389, 4415, 4535, 17021, 4650], + [0, 6926, 3265, 7818, 17025, 3348], + [3, 820, 8], + [2, 11048, 1932], + [1, 2343, 11055], + "@fastify/basic-auth", + "external", + "externals", + [2, 4065, 11053], + [0, 11056, 0, 11057, 2537], + [ + 0, 4449, 12675, 1437, 1673, 1676, 2020, 29952, 4753, 1398, 2992, 1209, 17031, 1458, 2089, 3729, 1362, 16078, + 1836, 2151, 3183, 17036, 1525, 4459, 4558, 6520, 1477, 1483, 8435, 1532, 2057, 3074, 3714, 17039, 17041, 2015, + 13860, 4351, 17042, 17047, 4375, 2744, 6515 + ], + [0, 13428, 1388, 1651, 17049, 11862, 11861, 11857, 4627, 17050, 8791, 17051, 17052, 1973, 5472], + [1, 2343, 11059], + [0, 11060, 11061, 2514, 2523], + [0, 1437, 17059, 4717, 1527, 3054, 6301, 17058], + [0, 1429, 2899, 4135, 1894, 4856, 1595, 6503, 3210, 4131], + [1, 2343, 11063], + [0, 11074, 11087, 11089, 2523], + [2, 823, 364], + [2, 823, 4030], + [3, 825, 16], + "query-s", + "elector-", + "shadow-dom", + [2, 11068, 11069], + [2, 11067, 11070], + "tiny-", + "tiny-types", + [ + 0, 17081, 17090, 17067, 17080, 17082, 17093, 17101, 17108, 1654, 17068, 17071, 14674, 17083, 17086, 1655, 1660, + 17104, 17089, 17098, 17074, 17096, 17075, 17078, 17097, 17091, 1658, 17107, 17092, 17103, 17100 + ], + "@integration/testing-tools", + [2, 823, 5710], + [3, 11064, 14], + "ucumber", + [2, 11077, 11078], + [2, 823, 2765], + [2, 5554, 36], + [2, 823, 11081], + [2, 823, 2899], + [3, 7744, 12], + [2, 11084, 2632], + "mocha-multi", + [0, 2899, 1177, 4042, 4614, 17113, 17110, 8850, 17112, 10615, 816], + "serenity-js", + [0, 1653, 965, 17116, 8221, 7521, 1424], + [1, 2343, 11091], + [0, 11092, 11094, 11098, 4139], + [0, 17122], + "@wdio/reporter", + [0, 816, 17081, 17098, 1177, 2832, 2899, 4042, 4073], + "@wdio/", + "@wdio/cli", + [3, 8255, 9], + [0, 1653, 17125, 17128, 17129, 17130, 17134, 7193, 6333, 4552], + [1, 2343, 11101], + "service", + [0, 11102, 11106, 11107, 2399], + [0, 1654, 17089, 17092, 17101, 17103], + "@wdio/d", + "ot-reporter", + [2, 11103, 11104], + [0, 14674, 1177, 2899, 4042, 4073], + [0, 1653, 17125, 16662, 17116], + "local-runner", + [2, 11095, 11108], + [2, 4386, 2903], + [2, 11095, 11110], + "@wdio/types", + [2, 2299, 2382], + [2, 3758, 1732], + [1, 2343, 11118], + "wdio", + [2, 11116, 2903], + [0, 0, 11119, 11120, 2523], + [0, 1177, 2832, 2899, 4042, 4073], + [0, 1653, 17125, 965, 17146, 17147], + [1, 2343, 11125], + [3, 826, 9], + "commons", + [2, 11122, 11123], + [0, 11135, 11136, 11139, 2487], + "@mochify/cli", + "@mochify/", + "driver-", + [2, 11128, 3758], + [2, 11127, 11129], + [3, 11130, 16], + [3, 824, 9], + [2, 11131, 11132], + [2, 11122, 7625], + [0, 17093], + [0, 17096, 1177, 2899, 4042, 4073], + "referee-sinon", + [2, 11122, 11137], + [0, 1653, 17125, 11812, 17116, 1424, 8221], + [1, 2343, 11141], + [0, 11142, 0, 11144, 2523], + [0, 2108], + "ts-dedent", + [0, 6400, 17159, 7521, 8537], + "csf-plugin", + [2, 10829, 11145], + [3, 10840, 17], + "dom-s", + [1, 2343, 11152], + "dom-shim", + [2, 11147, 11150], + [0, 0, 0, 11153, 2537], + [ + 0, 1662, 4380, 4383, 21029, 21038, 21039, 11483, 11487, 21054, 21052, 21042, 17164, 21057, 21050, 17166, 89, + 1623, 181, 188, 4627, 5130, 3287, 6400, 17171, 699, 29332, 3709, 34683, 12951, 29336 + ], + "addon", + "notes", + "organize", + [1, 2343, 11158], + [0, 0, 8134, 11159, 34352], + [ + 0, 17179, 3183, 14690, 10446, 7058, 6802, 200, 3368, 1525, 17180, 1523, 12986, 17181, 17183, 17184, 13565, 1644, + 57, 6478 + ], + [1, 2343, 11166], + [2, 41, 1512], + [3, 11161, 13], + "ssinjs", + [2, 11162, 11163], + [3, 40, 18], + [0, 11198, 11203, 2514, 2537], + "slick", + [2, 11165, 11167], + [3, 452, 18], + "-svg-icons", + [2, 6920, 11170], + [2, 11169, 11171], + "@pol", + "kadot/react-identicon", + [2, 11173, 11174], + "@polkadot/", + "util-", + "util-crypto", + [2, 11176, 11178], + [2, 19177, 11195], + "wasm-crypto", + [2, 11176, 11181], + [3, 5050, 14], + "tour", + [2, 11183, 11184], + "@zxing/browser", + "@zxing/", + [2, 11187, 6082], + "boring-avatars", + "list-react", + [2, 2117, 11190], + "jsqr", + "phosphor-react", + "qrcode", + "plugin-kit", + "qrcode.react", + "rc-cascader", + [ + 0, 17191, 1091, 1149, 1437, 1513, 1594, 1605, 2026, 2720, 17194, 3148, 3220, 3722, 705, 17195, 17196, 17198, + 4746, 4747 + ], + "rc-checkbox", + "ollapse", + "rc-collapse", + "rc-dialog", + [0, 1173, 1257, 1267, 1429, 2899, 4008, 7707], + "rc-drawer", + [1, 2343, 11214], + "opdown", + "rc-dropdown", + "rc-image", + "@humanfs/node", + "rc-input", + "-number", + [2, 11210, 11211], + "rc-mentions", + [0, 0, 11217, 2514, 2399], + "u", + "rc-menu", + [ + 0, 17218, 4494, 17219, 8538, 4193, 1177, 17220, 1209, 1984, 4508, 2109, 1894, 1596, 48, 17212, 3541, 4183, 4201, + 91, 53, 4874, 17221, 9689, 6513, 17209, 7725, 4870, 17206, 17214, 10875, 87, 17210, 7677, 5517, 92, 1011, 17223, + 1009, 9692 + ], + "otion", + "rc-motion", + "rc-notification", + "rc-pagination", + [1, 2343, 11230], + "rc-picker", + "rc-progress", + "rc-rate", + "rc-r", + "esize-observer", + [2, 11226, 11227], + "rc-s", + [0, 0, 11232, 2514, 2523], + "rc-segmented", + [0, 2899, 4535, 48, 53, 87], + "rc-select", + "teps", + "rc-steps", + "rc-switch", + [1, 2343, 11239], + "rc-table", + [0, 0, 11247, 11248, 2523], + "rc-tabs", + "extarea", + "rc-textarea", + "ree", + "rc-tree", + "-select", + [2, 11244, 11245], + [ + 0, 48, 53, 13693, 87, 6065, 1175, 1193, 1203, 1610, 1177, 1881, 1938, 1939, 17232, 2766, 1192, 2297, 2898, 2915, + 3213, 3220, 3222, 3275, 3697, 1894, 4042, 4045, 4073, 4201, 91 + ], + [0, 1673, 1666, 6901, 2700, 3220], + "rc-trigger", + [1, 2343, 11254], + "rc-upload", + "in-input", + [2, 3870, 11252], + [0, 11258, 11259, 11265, 2537], + "logo", + "qrcode-logo", + [2, 1246, 11256], + [0, 1326, 3299], + [0, 17240], + "uperellipse", + [2, 3890, 11260], + "scroll-", + "into-view-if-needed", + [2, 11262, 11263], + [0, 1149, 15001, 17242, 17244], + [3, 68, 15], + [2, 11266, 6424], + [3, 362, 16], + "css-prop", + [2, 1258, 11269], + [2, 11268, 11270], + [3, 7910, 12], + [2, 11272, 10177], + "@qixian.cs/github-contributors-list", + "@stackblitz/sdk", + [3, 827, 16], + [2, 11276, 591], + [3, 11011, 12], + "uild", + "er-webpack5", + [2, 11279, 11280], + [2, 11278, 11281], + [3, 8300, 15], + [2, 11283, 2855], + [2, 10829, 11284], + [3, 10841, 12], + "heming", + [2, 11286, 11287], + "tag.js", + [2, 5246, 11289], + "-axe", + [2, 5087, 11291], + [3, 11292, 12], + [3, 2779, 12], + [2, 11294, 3758], + [2, 11293, 11295], + "image-s", + "napshot", + [2, 11297, 11298], + [2, 11293, 11299], + [2, 5086, 3766], + "uppeteer", + [2, 5088, 11302], + "@types/q", + "@types/qs", + [3, 4882, 15], + [2, 11306, 4349], + "-wor", + [1, 2343, 11324], + "-words", + [2, 5342, 11310], + [2, 4881, 11311], + [3, 4884, 15], + "sizable", + [2, 11313, 11314], + "window", + [2, 4881, 11316], + "@types/thr", + "ottle-debounce", + [2, 11318, 11319], + "arning", + [2, 7820, 11321], + "antd-", + [0, 0, 11332, 11334, 2523], + "antd-img-crop", + "token", + "-pre", + "viewer", + "-previewer", + [2, 11326, 11329], + [2, 11323, 11330], + [0, 1906], + "array-move", + [0, 1675, 17251, 3046, 6925, 17252, 7051, 6760, 17253, 6882, 6870, 9233], + "bundlesize2", + "dekko", + [3, 3597, 9], + [3, 4926, 9], + "er-webpack", + [2, 11339, 4406], + [2, 4354, 11340], + [2, 11338, 11341], + [2, 11337, 11342], + "fetch-", + "fetch-jsonp", + "axe", + "jest-axe", + [2, 2769, 11299], + "jest-p", + [2, 11349, 11302], + "jsonml", + "react-e", + [1, 2343, 11358], + "react-element", + [2, 8137, 11354], + [2, 11351, 11355], + "lz-string", + [0, 11359, 11361, 11379, 2537], + [0, 3242], + "rc-footer", + [0, 1377, 1389, 1596, 2297, 2871, 2881, 2900, 2899, 3202, 4193, 1906], + "rc-tween-one", + "rc-virtual-list", + "react-f", + "ast-marquee", + [2, 11364, 11365], + [2, 5204, 11310], + [2, 3831, 11367], + "react-in", + "finite-scroll-component", + [2, 11369, 11370], + [3, 3882, 9], + "izable", + [2, 11372, 11373], + "react-st", + "icky-box", + [2, 11375, 11376], + "react-window", + [0, 1676, 3073, 6782], + "remark-lint", + [2, 2987, 4945], + [2, 3996, 11381], + "rome", + [2, 4942, 1894], + [3, 4946, 18], + [1, 2343, 11387], + [0, 0, 8134, 11402, 2537], + "ational-order", + [2, 11385, 11388], + [3, 4326, 22], + "no-i", + "d-properties", + [2, 2420, 11392], + [2, 11391, 11393], + [2, 7851, 11394], + [2, 11390, 11395], + "sylvanas", + "vanilla-", + "jsoneditor", + [2, 11398, 11399], + "xhr-mock", + [0, 1677, 17266, 1420, 17267, 15321, 13230, 15322, 1871, 2585, 6270], + [1, 2343, 11406], + "-front-matter", + [2, 4745, 11404], + [0, 11407, 11408, 11409, 2399], + [0, 17273, 17275, 17277, 17279, 2215, 3093, 3532, 17281], + [0, 1999, 17283, 3505, 3532, 4039], + [0, 17274, 17285, 1679, 7682, 4390, 17286, 17288, 2056, 4560], + [1, 2343, 11418], + [3, 829, 10], + "-studio/client", + [2, 11411, 11412], + [3, 11413, 18], + "model", + [2, 11414, 11415], + "abab", + [0, 0, 11419, 11423, 4139], + [ + 0, 48, 87, 92, 10614, 17296, 17212, 5601, 5087, 1009, 1011, 1198, 14065, 17298, 1622, 1177, 17300, 1930, 1939, + 1942, 1945, 1948, 1953, 17303, 17306, 1964, 17308, 2675, 1192, 17310, 2931, 2990, 3124, 3125, 3390, 17312, 1894, + 17314, 3708, 3980, 17318, 4493, 91, 17319 + ], + "async-mutex", + [2, 6269, 1871], + "color2k", + [0, 1680, 10381, 17323, 5194], + "presentable-error", + "expr-eval", + "ml-matrix", + [1, 2343, 11431], + "parse-color", + "-ast-parser", + [2, 3564, 11429], + [0, 0, 11435, 11441, 2523], + "matchall", + [2, 7315, 11432], + [2, 1871, 11433], + [0, 5087, 3165, 4468], + "@ava/typescript", + "inycolor2", + [2, 7750, 11437], + "trash-cli", + [2, 4480, 4408], + [0, 3597, 17329, 4552, 17331, 17332, 17335, 17337], + "Supernova", + "Design Systems", + "io", + "Supernovaio", + "SDK", + [1, 2343, 11455], + "Tokens", + "Design Tokens", + "Assets", + "Components", + "Documentation", + "Markdown", + "CMS", + [0, 11456, 0, 11457, 4139], + [0, 17342], + [0, 3048, 7002, 3426, 2051, 3583, 1698, 1496, 1585, 7880, 1697, 6899, 6803, 3432, 6693, 3743, 3583], + [1, 2343, 11459], + [0, 8856, 7938, 7939, 2537], + [1, 2343, 11461], + [0, 0, 11462, 11463, 2523], + [0, 1781, 2899, 1177, 1209, 4039, 3363, 1362, 17352, 2025, 4535, 1693, 1951, 3200], + [0, 1687, 17354, 3797, 17358], + [1, 2343, 11465], + [0, 0, 11466, 11467, 2523], + [0, 17363, 2899, 1177, 2759, 1317, 1596, 17366, 3044, 5476, 17370, 17373, 17374, 811, 17377], + [0, 17380, 17382, 17383, 5472], + [1, 2343, 11469], + [0, 11471, 11472, 11473, 2399], + "@svitejs/changesets-changelog-github-compact", + [ + 0, 17391, 1417, 17392, 15308, 17395, 17399, 17400, 17403, 17406, 2756, 13635, 3433, 3435, 17407, 17409, 17411, + 17413, 17416 + ], + [0, 13614, 1158, 1159, 17418, 1177, 2133, 17421, 2569, 17425, 2708, 3410, 3421, 5619, 4103, 4135, 4389], + [0, 5501, 4162, 3797], + [1, 2343, 11475], + [0, 0, 11488, 11490, 2537], + "okie", + [2, 4860, 11476], + "devalue", + "esm-env", + "mrmime", + "sade", + "tiny-glob", + [2, 21032, 1932], + [3, 5244, 10], + [2, 11484, 2255], + "dts-buddy", + [3, 21031, 18], + [0, 2899, 4170], + "official", + [0, 1696, 2051, 1697, 6899, 1695, 1496, 1698, 1781], + [1, 2343, 11492], + [0, 0, 11493, 11494, 34352], + [0, 4874, 17439, 2747, 17440, 4042, 4055, 4067, 4389, 4474, 91, 4535], + [0, 1698, 1697, 2051, 1585, 1496, 6899], + [1, 2343, 11499], + "-inspector", + [2, 840, 11496], + "hmr", + [0, 11500, 11502, 11503, 2523], + [0, 2205, 2743, 17447, 17450, 3478, 11424, 4207], + "vitefu", + [0, 1166, 1317, 4400, 4481, 1906], + [ + 0, 6865, 1586, 17453, 17455, 7293, 14858, 17456, 17457, 4050, 17458, 4051, 6790, 17459, 4039, 7074, 2070, 17461, + 2090, 6857, 7204, 2150, 17462 + ], + [3, 839, 11], + [1, 2343, 11507], + "vite plugin", + [0, 11508, 11509, 11510, 2399], + [0, 1700, 3157, 11424], + [0, 1166, 2020, 17468, 1906], + [ + 0, 13326, 200, 6865, 1700, 7293, 14858, 17456, 17457, 4050, 17458, 4051, 6790, 17459, 4039, 7074, 2070, 2090, + 1586, 6857, 7204, 2150, 17462, 16697 + ], + [1, 2343, 11523], + "element", + "elements", + "ant-elements", + [2, 5257, 11514], + [2, 5875, 11515], + "@svgr/", + "@svgr/core", + "plugin-jsx", + [2, 11517, 11519], + [3, 11520, 13], + [2, 11521, 4361], + [0, 11524, 11527, 11528, 2487], + [0, 29654, 28415], + "svgr", + [2, 4670, 1194], + [0, 17474, 17477, 4481, 1906], + [ + 0, 1862, 814, 1702, 17479, 6703, 2434, 17481, 17484, 2013, 14824, 3286, 17485, 1702, 1149, 7003, 6567, 1362, + 17487, 6754, 3778 + ], + [1, 2343, 11530], + [0, 11531, 11535, 11537, 2399], + [ + 0, 1676, 2856, 4747, 2687, 1209, 4135, 2822, 814, 17495, 15648, 1420, 3181, 17497, 3249, 1595, 2107, 4025, 58, + 17501, 101, 17494, 5320, 14035 + ], + "unter", + "@swc/counter", + "@swc/types", + [ + 0, 3421, 2899, 1177, 4170, 3709, 2151, 1894, 1610, 48, 3752, 91, 53, 1178, 17504, 85, 94, 87, 1951, 1959, 1879, + 1938, 1208, 1895, 1947, 1955, 1198, 13052 + ], + "@napi-rs/cli", + [0, 4354, 17507, 3383, 6666, 1703, 7190, 4796, 4797], + "swc", + "swcpack", + "tsc", + [1, 2343, 11542], + [0, 0, 11543, 11544, 2487], + [0, 1317, 1311, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2759, 2899, 4100, 4538], + [0, 17514, 17515], + [1, 2343, 11546], + [0, 11547, 11548, 2514, 2537], + [0, 1676, 13736, 2205, 17522, 3170, 3183, 3539, 17523, 814], + [0, 17527, 2675, 17529, 3400, 4255], + [1, 2343, 11550], + [0, 0, 8134, 11551, 2399], + [0, 8958, 17537, 13735, 6589, 17539, 1501, 1871, 2585, 4225, 17540, 16630], + [1, 2343, 11553], + [0, 11556, 11557, 11558, 2523], + "@rtsao/scc", + [2, 18997, 4966], + [0, 15427], + [0, 36688, 6503, 4874, 17547, 1177, 17554, 2020, 17546, 4294, 4483, 36684, 91], + [0, 13735, 1709], + [1, 2343, 11560], + [0, 0, 11561, 11562, 2487], + [ + 0, 3421, 4481, 1429, 2297, 2899, 1177, 4042, 2203, 2924, 1610, 4535, 442, 91, 53, 2900, 1195, 2925, 13388, 94, + 87, 4523, 4681, 2904, 5517, 1208, 2921 + ], + [0, 1687, 7222, 3797, 7163, 2585, 1781, 1623, 5284], + [1, 2343, 11564], + [0, 11565, 11566, 11567, 4139], + [0, 1687, 28365], + [ + 0, 442, 19194, 17579, 5087, 4874, 17580, 17584, 1165, 1406, 1492, 1584, 1628, 1637, 1177, 1939, 1958, 2092, + 2203, 2036, 17589, 2651, 2675, 17591, 17592, 1192, 2990, 3123, 3177, 3188, 3368, 3561, 3566, 3613, 3618, 3672, + 1894, 4468, 4469, 4474, 91, 4523, 4027, 2924, 4677, 4681, 4705 + ], + [0, 3358, 1687, 3721, 7153, 3924, 17595, 17597, 6843, 5342, 3721, 1473, 1936, 1713, 17599, 17600], + [1, 2343, 11569], + [0, 11570, 11571, 11572, 2537], + [0, 17610], + [0, 5087, 4874, 1009, 1011, 1177, 1895, 17613, 1915, 1938, 1192, 1894, 4468, 4493, 4508, 91], + [ + 0, 17615, 17618, 17619, 17620, 17616, 17621, 17622, 5284, 17625, 17626, 676, 91, 17627, 6869, 4799, 17629, + 17630, 202, 9624, 17631, 17632, 17634, 17635, 17637, 17640, 17641, 17642, 17643, 2218, 17644, 17645, 17647, + 3403, 17648, 17649, 17651, 17652, 17653, 17656, 17657, 9981, 7193, 17659, 17660, 17661, 17662, 17665, 17666, + 17667, 17669, 17673, 17675, 17677, 17680, 17679, 11996, 17683, 17686, 17687, 17689, 17691, 17692, 17695, 17696, + 17697, 17700, 17702, 17705, 2382, 6956, 17706, 17710, 6957, 17711, 17712, 17713, 17714, 17715, 17716, 17717, + 17718, 17720, 17721, 17722, 6789, 17723, 17724, 17726, 17727, 17729, 17730, 17731, 17732, 17733, 614, 6910, + 17734, 11600, 17735, 17737, 17739, 6681, 17740, 1745, 17116 + ], + [1, 2343, 11574], + [0, 0, 11575, 11576, 2487], + [0, 1429, 1431, 2228, 2273, 2283, 2300, 2272, 2839, 3006, 2899], + [0, 1429, 15385, 1388, 5472], + [1, 2343, 11578], + [0, 11579, 11580, 11581, 2537], + [0, 17752, 17754, 1723, 2760, 3345], + [0, 2899, 3699], + [0, 6355, 5995, 4967, 17758], + [1, 2343, 11583], + [0, 11584, 11585, 11586, 2487], + [0, 4484, 4548, 17763, 7658, 347, 7660, 2069, 17766, 7663, 17768, 7664, 7665, 17770], + [0, 4481, 1192, 7671, 1177, 4487, 1787, 1894, 1610, 91, 4874, 17772, 7672, 7678, 7681, 7685, 1011, 1009], + [0, 1721, 5592, 8549, 5576, 202, 7692], + [1, 2343, 11588], + [0, 11599, 0, 2514, 2537], + [3, 850, 25], + "tokens", + [2, 11589, 11590], + [2, 11589, 45], + [3, 4323, 18], + "ass-guidelines", + [2, 11593, 11594], + [3, 7846, 11], + "rettier", + [2, 11596, 11597], + [0, 4535, 2098, 3460], + [2, 6910, 591], + "patterns", + [1, 2343, 11603], + [0, 11604, 11606, 11610, 4139], + [0, 16053, 17786, 17787, 17788, 2036, 3127, 17798], + "gfm-footnotes", + [0, 17805], + "web ", + [2, 11607, 4963], + "ui library", + [0, 1745, 1783], + [1, 2343, 11620], + "symbiote.js", + "symbiote", + "frontends", + [2, 3166, 11614], + " application", + [2, 5207, 11616], + " elements", + [2, 5317, 11618], + [0, 11621, 0, 11623, 2487], + [0, 2829], + "shadow dom", + [0, 1727, 1745, 1776, 17813, 1783, 1932], + "shadow root", + "ructable stylesheets", + [2, 5257, 11625], + "adopted stylesheets", + "custom ", + [2, 11628, 3583], + [2, 6883, 11629], + "pubsub", + [1, 2343, 11641], + "import maps", + "cdn imports", + " imports", + [2, 2671, 11635], + "reacti", + "ve html attributes", + [2, 11637, 11638], + "MIT", + [0, 0, 0, 11642, 34352], + [0, 17818, 17819, 7518, 5398, 5995, 3250], + [1, 2343, 11644], + [0, 11645, 9264, 11646, 2399], + [0, 17826, 17827, 7092], + [0, 17829, 17830], + [1, 2343, 11648], + [0, 11649, 11650, 11651, 4139], + [0, 1170, 4747, 1733, 17838, 29861, 17835], + [0, 1429, 2899, 2026, 1364], + [0, 1745, 2275, 1973, 2295, 1739], + [1, 2343, 11653], + [0, 11654, 11655, 11656, 2399], + [ + 0, 5923, 17835, 17846, 1091, 13426, 17849, 17851, 17853, 1170, 17838, 29861, 1759, 17850, 11663, 10342, 3536, + 3549, 17859, 4459, 824 + ], + [0, 1703, 2026, 2899, 4135], + [0, 1745, 1973, 2295, 1739], + [1, 2343, 11658], + [0, 11659, 0, 11660, 34352], + [0, 1525, 3127, 2151, 4545, 2600], + [0, 1745, 1739, 1179, 17867, 1509], + [1, 2343, 11662], + [0, 11664, 0, 11610, 2537], + "jq-web", + [0, 1794, 17872, 5639], + [1, 2343, 11666], + [0, 11667, 11668, 11669, 2399], + [0, 17877, 28367, 28371, 17881, 3747, 4391, 3348], + [0, 1362, 1429, 3152, 2899], + [0, 17878, 17884], + [1, 2343, 11671], + [0, 11672, 11673, 11674, 2537], + [ + 0, 17889, 17890, 17892, 1292, 17893, 1415, 17895, 16166, 17896, 17898, 17899, 9254, 17900, 17901, 17904, 17905, + 17906, 17907, 2720, 17909, 17910, 17911, 3171, 3310, 17914, 17915, 17916, 4039, 17917, 17919, 17920, 4135, + 17921, 17922, 17923, 4545, 17924, 4746 + ], + [0, 17929, 17930, 16966, 1509, 17931, 3220, 17934, 17936], + [ + 0, 5353, 6147, 17939, 9381, 200, 6354, 1509, 7234, 4643, 17944, 3304, 5001, 17945, 17946, 15141, 5130, 1179, + 17948, 202, 1644, 57, 8924, 3902, 8632, 12478, 5354, 17950, 4990, 6435, 5122, 17951, 10340 + ], + [1, 2343, 11676], + [0, 0, 11677, 11678, 2523], + [0, 5366, 4874, 7677, 22839, 1317, 33261, 35609, 1177, 1938, 1942, 91, 1984], + [0, 4967, 5995, 2844, 7020, 1776], + [1, 2343, 11680], + [0, 0, 11681, 11682, 2487], + [ + 0, 53, 87, 442, 5583, 811, 8850, 816, 10615, 1165, 1387, 1536, 1854, 1177, 1895, 2203, 3125, 15197, 3400, 3561, + 3584, 3605, 3613, 1894, 4039, 4042, 10854, 2278 + ], + [0, 1739, 17964, 17965, 1745, 1179, 5284, 676, 1783, 5980, 1932, 16630, 17966], + [1, 2343, 11684], + [0, 11685, 11686, 11687, 4139], + [0, 17971, 17972, 2654, 3183, 4545, 17974], + [0, 4384], + [0, 2195, 1783, 1745, 9591, 57, 17977, 17978, 17979], + [1, 2343, 11689], + [0, 11690, 11691, 11692, 4139], + [ + 0, 53, 5216, 58, 101, 104, 1437, 1457, 1687, 17986, 9322, 7610, 2070, 17988, 2600, 2714, 2822, 17989, 1209, + 12427, 17990, 17995, 17997, 3532, 3921, 3984, 3988, 3989, 18000, 10632, 814, 4300, 18002, 4555, 12449, 18004, + 18005, 4747 + ], + [0, 18007, 1652, 18009, 1177, 1895, 2151, 2675, 1192, 2845, 2990, 3203, 1894, 4257, 4449], + [0, 1745, 4525, 1776, 18011, 57, 5351], + [1, 2343, 11694], + [0, 11695, 11696, 11697, 2523], + [0, 18016, 18018, 1676, 18019, 18020, 18023, 3013, 4545], + [0, 4874, 2228, 2291, 2300, 3006, 3200, 16092, 4193, 4436], + [0, 18028, 18031, 1748, 18036, 13531, 18037, 18035, 6599], + [1, 2343, 11699], + [0, 11700, 11701, 11702, 2537], + [ + 0, 6084, 2164, 2070, 1437, 89, 1843, 1209, 3188, 1291, 1637, 2026, 3561, 3725, 705, 4167, 7799, 4438, 2151, + 2267, 1525, 3824, 1461, 3560, 4001, 53, 18042, 104, 1165, 2600, 3123, 18051, 18052, 18055, 18056, 7610, 85, 94, + 101, 3816, 18050, 87, 18045, 18047, 90, 1874, 1845, 61, 78 + ], + [0, 4039, 17996, 2149, 18059], + [0, 1745, 18061, 18063, 467], + [1, 2343, 11704], + [0, 11705, 7923, 11706, 2523], + [0, 18068, 1497, 9892, 2577, 2586, 2608, 6327, 18070, 8114, 3181, 3971, 18071, 4549, 18072], + [0, 467, 6327, 18074, 1745], + [1, 2343, 11708], + [0, 11709, 11710, 11711, 2487], + [0, 97, 1639], + [ + 0, 28581, 29292, 48, 53, 92, 29293, 29294, 29492, 1009, 1011, 1178, 1195, 1177, 1938, 1947, 1951, 1959, 2025, + 2070, 2814, 2297, 2881, 2895, 26470, 2900, 2904, 2918, 2921, 2925, 2899, 4039, 33564, 4193, 91, 2924 + ], + [0, 1751, 5128, 965, 5592, 18080, 590, 2013, 18081, 4289, 1751, 1227, 18082, 1623], + [1, 2343, 11713], + [0, 11714, 11715, 11716, 2537], + [0, 18089, 15487, 18087], + [0, 1192, 1177, 1448, 4468, 1894, 91, 5087, 4874, 2654, 1895, 1011, 1009], + [0, 1936, 6523, 8924], + [1, 2343, 11718], + [0, 0, 11719, 11720, 4139], + [0, 1429, 1177, 2228, 2240, 2273, 2281, 2283, 2298, 2822, 2297, 2878, 2881, 2895, 2900, 2904, 2899, 1894, 4135], + [0, 965, 158, 18097, 8924, 1936, 1424, 8221, 18048], + [1, 2343, 11722], + [0, 11723, 11724, 11725, 2487], + [0, 37513], + [ + 0, 53, 87, 5583, 816, 6373, 10615, 1006, 4874, 1610, 1895, 1955, 2814, 2832, 2297, 2876, 2881, 2895, 2908, 2910, + 18103, 3183, 3400, 3697, 1894, 2907, 18102, 4039, 4042, 4057, 18106, 4076, 4484, 91, 1906 + ], + [0, 965, 4741, 1936, 8221, 18110, 1965, 18112, 18113, 2574, 7131, 18114], + [1, 2343, 11727], + [0, 0, 11728, 11729, 2399], + [0, 3421, 1177, 1596, 3697, 12847], + [0, 1283, 2062, 2869, 17950], + [1, 2343, 11731], + [0, 0, 11732, 11733, 2537], + [0, 4874, 6323, 4193, 4255, 4257, 4384, 91], + [0, 1759, 1263, 6890, 6639, 6436, 1541, 6937], + [1, 2343, 11735], + [0, 11736, 11737, 11738, 2523], + [0, 1759], + [0, 4874, 4255, 4257, 4384, 91], + [0, 1759, 18132, 6436, 18135, 18137, 1263, 6890], + [1, 2343, 11740], + [0, 11741, 11742, 11743, 2537], + [0, 2212, 3532, 3477, 18143, 3093, 2096, 1679, 18145, 2188, 18142, 1560], + [0, 1906, 1166, 3297, 18147, 4039, 3505, 18148], + [0, 1764, 7682, 27, 705, 1002], + [1, 2343, 11745], + [0, 11746, 11747, 11748, 34352], + [0, 1764, 12650, 4039], + [0, 5175, 2675, 2899, 4216, 4255], + [0, 1764, 2195, 17978, 17977, 12468, 18157, 4390, 7682, 18158], + [1, 2343, 11750], + [0, 11751, 11752, 11753, 2537], + [0, 1768, 1770, 1777, 1782, 1784, 1779], + [0, 1177, 4039, 442, 91, 4874, 4523, 1011, 1009], + [0, 1767, 1745, 200, 1776, 1367, 1783, 1781], + [1, 2343, 11755], + [0, 11756, 11757, 11758, 4139], + [0, 2205, 1770, 18170, 18173, 1777, 1782, 18174, 1784, 1779], + [0, 1192, 1177, 4039, 3363, 4468, 442, 91, 5087, 4874, 5571, 4523, 1011, 1009], + [0, 1767, 1745, 200], + [1, 2343, 11760], + [0, 11761, 11762, 11763, 2537], + [0, 18183], + [0, 1192, 1177, 4039, 4468, 442, 91, 5087, 4874, 5571, 4523, 1011, 18186, 1009], + [0, 1767, 1745], + [1, 2343, 11765], + [0, 11766, 11767, 11768, 2537], + [0, 18192], + [0, 1192, 1177, 4039, 4468, 442, 91, 5087, 4874, 5571, 4523, 1011, 1009], + [0, 1767, 1745, 1283], + [1, 2343, 11770], + [0, 11771, 11772, 11773, 2537], + [0, 1241, 1776, 18201], + [0, 1192, 1177, 4039, 4468, 1587, 442, 91, 5087, 4874, 18203, 5571, 4523, 1011, 1009], + [0, 1767, 1745, 1776], + [1, 2343, 11775], + [0, 11776, 11777, 11778, 2537], + [0, 3105, 2600, 3117], + [0, 1192, 1177, 4039, 4468, 442, 91, 5087, 4874, 5571, 4523, 7639, 1011, 1009], + [0, 1767, 1745, 1367], + [1, 2343, 11780], + [0, 0, 11767, 11781, 4139], + [0, 1767, 1745, 1781], + [1, 2343, 11783], + [0, 11784, 11767, 11785, 2523], + [0, 3117], + [0, 1767, 1745, 1783], + [1, 2343, 11787], + [0, 11788, 11789, 11790, 2537], + [0, 2081, 2700, 3427], + [ + 0, 53, 14170, 13051, 18225, 1178, 18228, 1610, 1700, 1866, 1177, 18229, 1895, 1922, 1935, 1947, 1955, 1959, + 18230, 2126, 2323, 2338, 2361, 2368, 18233, 2396, 2409, 2419, 2494, 2541, 1192, 1894, 89, 3824, 3904, 18235, + 4431, 4537, 18237 + ], + [0, 18239, 6038, 89, 18241], + [1, 2343, 11792], + [0, 11793, 11794, 11805, 2523], + [0, 8712, 18248], + [0, 18254, 18255, 1429, 1651, 18259, 2297, 2881, 2900, 18260, 2923, 2899, 3198, 3347, 5362, 2278, 4193, 4196], + "tent-type", + [2, 11484, 11795], + [1, 2343, 11798], + [0, 26964, 0, 26991, 34352], + "a-parser-js", + [2, 7817, 11799], + "null-loader", + [2, 4049, 2098], + "tanem-scripts", + "ua-parser-js", + [0, 18263, 18266, 18267, 9229], + "images", + "img", + "scal", + "able-", + "vector-", + "ics", + "graphics", + [2, 11810, 11812], + [2, 11809, 11813], + [2, 11808, 11814], + [1, 2343, 11817], + [0, 11818, 11819, 2514, 2523], + [0, 4747, 4487, 18272, 2151, 18275, 4300, 2851, 18277, 18279, 18282], + [0, 1177, 4874, 4892, 4864, 1011, 18285, 18290, 1009], + "query-core", + [2, 959, 11820], + [1, 2343, 11823], + [0, 11824, 0, 11825, 2537], + [0, 28142], + [0, 1747, 1788, 2382, 18035, 5995, 200, 18295, 2663], + [1, 2343, 11828], + [2, 964, 3709], + [0, 11829, 11830, 7831, 2537], + [ + 0, 12393, 12394, 11275, 842, 12396, 9363, 12397, 12399, 12400, 12403, 1461, 12467, 12406, 1582, 1699, 12409, + 1835, 12412, 12415, 12419, 7610, 12421, 2572, 2579, 2584, 12422, 2613, 2646, 12424, 2822, 3070, 12427, 12429, + 3412, 3547, 9054, 12431, 3725, 3786, 11219, 11240, 3788, 11244, 3789, 3810, 5564, 3846, 12435, 12438, 3963, + 12441, 3978, 12443, 9340, 3988, 3992, 3999, 2278, 7799, 12444, 12445, 4549, 4555, 12447, 1002, 12448, 12449, + 12452 + ], + [ + 0, 192, 5467, 7634, 12455, 12458, 7637, 12459, 4874, 12461, 8149, 4880, 4882, 4883, 12462, 12463, 1177, 10321, + 2071, 2079, 12471, 12472, 2675, 2990, 1894, 3706, 3708, 89, 3824, 4320, 4474, 91, 1984, 12473, 12475 + ], + [1, 2343, 11834], + [3, 7637, 10], + [2, 11832, 977], + [0, 11841, 11844, 7831, 2487], + "@github/webauthn-json", + "better-", + "better-docs", + [3, 1895, 17], + "act", + [2, 11838, 11839], + [ + 0, 12393, 12394, 11275, 842, 12396, 9363, 12397, 12399, 12400, 12403, 1461, 12405, 1582, 1699, 12409, 12452, + 1835, 12412, 12415, 12419, 7610, 12421, 2572, 2579, 2584, 12422, 2613, 2646, 12424, 2822, 3070, 12427, 12429, + 3412, 3547, 9054, 12431, 3725, 3786, 11219, 11240, 11244, 3810, 5564, 3846, 3963, 12441, 3978, 12443, 9340, + 3988, 3992, 3999, 2278, 7799, 12445, 4549, 4555, 12447, 1002, 12448, 12449 + ], + "hanko", + "passkey", + [ + 0, 192, 5467, 7634, 12455, 12458, 7637, 12459, 4874, 12461, 4880, 4882, 12462, 12463, 1177, 2071, 2079, 12472, + 2675, 2990, 1894, 3706, 3708, 89, 4320, 4474, 91, 1984 + ], + [1, 2343, 11848], + "webauthn", + "passcode", + [0, 0, 11849, 2514, 2523], + [0, 4389, 4430], + [1, 2343, 11851], + [0, 11852, 11854, 7395, 4139], + [ + 0, 18313, 18315, 18316, 18317, 18322, 97, 8597, 18328, 18332, 18333, 18334, 18336, 1461, 1582, 1673, 18339, + 18340, 18344, 18347, 18349, 18351, 18354, 18355, 18357, 18358, 18360, 18362, 18364, 18365, 18368, 18370, 18371, + 18372, 18374, 18376, 18378, 18380, 18381, 18382, 18383, 18385, 18386, 18387, 18389, 18391, 18392, 18394, 11264, + 4427 + ], + "kcd-scripts", + [ + 0, 13175, 13178, 5076, 13181, 11267, 11976, 13187, 7833, 7837, 7839, 7840, 368, 7948, 11273, 13188, 8998, 13189, + 13192, 643, 692, 11274, 10875, 11275, 966, 968, 972, 974, 13194, 13196, 13198, 4864, 11290, 13200, 13203, 5087, + 11292, 11296, 11300, 11301, 13204, 4870, 7892, 4874, 13205, 13207, 13210, 8149, 6510, 11305, 4880, 4882, 4883, + 11312, 11315, 5254, 13213, 13214, 11320, 11322, 1009, 1011, 1086, 13078, 11325, 13215, 11331, 1170, 1437, 1448, + 13221, 13223, 1610, 1613, 11336, 1759, 1789, 13228, 8161, 1177, 1879, 1895, 1915, 1924, 1938, 1939, 1947, 13231, + 1948, 1959, 1961, 1982, 2071, 11345, 2151, 2193, 2070, 12424, 2665, 2686, 2696, 2742, 2758, 1192, 11347, 2771, + 2780, 2784, 11348, 11350, 2814, 2832, 11356, 5102, 2990, 1209, 13232, 11357, 3183, 3213, 3310, 3330, 3412, 3445, + 3467, 13233, 3536, 3549, 1894, 3703, 3717, 3725, 3758, 3763, 11360, 11362, 11363, 89, 3810, 13235, 3824, 4934, + 11366, 11368, 11371, 3843, 11374, 3885, 11377, 3957, 3978, 3984, 3985, 3988, 11380, 13240, 11382, 3999, 4039, + 13241, 4135, 4164, 4183, 4201, 13243, 11397, 4390, 4391, 4072, 4494, 4508, 91, 11400, 13245, 2924, 4676, 11401 + ], + [1, 2343, 11856], + [0, 0, 11858, 11859, 2399], + "integration", + [0, 192, 5467, 19193, 442, 1177, 1895, 1951, 1955, 2675, 2990, 2899, 1894, 4042, 4170, 4257], + [0, 4552, 1149, 14629, 18402, 1794, 3048, 1862, 6917, 14824, 5995, 4967], + [1, 2343, 11863], + "end-to-end", + "e2e", + [0, 11864, 11865, 11866, 2443], + [0, 4484, 18407], + [ + 0, 51, 53, 104, 18282, 18277, 18409, 603, 811, 816, 6373, 5087, 1009, 1011, 1437, 1525, 1787, 668, 1177, 2151, + 2205, 2675, 1192, 2771, 2272, 3090, 3445, 4042, 4073, 4127, 4135, 4072, 4468, 91 + ], + [0, 1795, 18411, 15480, 18412, 17116, 18413, 18415, 1424, 8221], + "ria-query", + [2, 9165, 11867], + "aria-query", + [2, 7320, 2825], + [2, 1752, 11870], + [1, 2343, 11873], + [0, 11885, 11886, 11887, 2537], + "n-case", + "jest-in-case", + "-ser", + "ializer-ansi", + [2, 11876, 11877], + [2, 8746, 11878], + [3, 2802, 11], + "select-p", + "rojects", + [2, 11881, 11882], + [2, 11880, 11883], + [0, 18420, 2096, 18423, 2390, 18425, 18426, 18427, 1209, 3181, 18428, 3544, 4431, 4597, 4600, 4747], + [ + 0, 4856, 4864, 18432, 4870, 6503, 4874, 9725, 6513, 6512, 18435, 18438, 18440, 4892, 1429, 2012, 2151, 2188, + 2899, 3421, 3752, 4039, 4193, 4196, 4474, 4487, 91 + ], + [0, 18420, 2041, 2649, 18442, 18443, 6589, 18444], + [1, 2343, 11889], + [0, 11892, 11900, 11901, 2537], + "css.escape", + "redent", + [0, 2763], + [2, 552, 2203], + [3, 2782, 23], + "sixteen", + [2, 11894, 11895], + [3, 4057, 15], + "elete", + [2, 11897, 11898], + [0, 91, 68, 1389, 1177, 14707, 1776, 3084, 2899, 4535], + [0, 1283, 17950, 16284, 1797], + [1, 2343, 11903], + [0, 11904, 11905, 11908, 2537], + [0, 1437, 1209, 18456], + [ + 0, 3297, 1082, 1149, 2228, 2899, 4193, 4237, 1177, 2814, 3220, 4135, 1168, 1330, 2924, 18458, 18459, 1362, 3460, + 1894, 4431, 2025, 2071, 7915, 2240, 18463, 1389, 53, 11801, 1178, 1195, 18464, 17568, 87, 1954, 2258, 2247, + 1938, 2253, 2281, 1958, 1895, 1903, 1955, 1970, 18461 + ], + "atcher-utils", + [2, 8763, 11906], + [0, 1798, 14059, 8173], + "@callstack/eslint-config", + "@rel", + "mify/jest-serializer-strip-ansi", + [2, 11910, 11911], + [1, 2343, 11914], + [0, 7936, 7938, 7939, 2523], + [1, 2343, 11916], + [0, 11917, 0, 11919, 2487], + [0, 4874, 2057, 18473], + "dotenv-cli", + [0, 1804], + [1, 2343, 11921], + [0, 11922, 11923, 11927, 2537], + [0, 1437, 4747, 1458, 2151, 18479, 18480, 18482, 18484, 18488, 18174], + [0, 4892, 4864], + "@esbuild-plugins/node-modules-polyfill", + "@ph.fritsche/scripts-config", + [3, 11925, 13], + [ + 0, 1804, 9381, 6147, 7242, 1161, 1808, 4405, 18493, 1896, 18494, 4750, 18495, 8433, 18496, 18497, 18498, 18499, + 18500, 18501, 18502, 18503, 13322 + ], + "toolbox", + [2, 11926, 11928], + [3, 11300, 13], + [2, 11930, 11874], + [3, 7690, 15], + [2, 11932, 2203], + "-lib-coverage", + [2, 2759, 11934], + [3, 11935, 13], + "report", + [2, 11936, 11937], + [2, 4227, 591], + [2, 11936, 11939], + "istanbul-", + "reports", + [2, 11941, 11942], + [3, 6551, 9], + "jest-s", + "r-ansi", + [2, 7909, 11946], + [2, 11945, 11947], + [1, 2343, 11950], + [0, 11953, 11954, 11955, 2537], + "-scripts", + [2, 6579, 11951], + [ + 0, 18509, 18473, 18511, 18513, 18514, 18518, 1676, 2057, 18145, 2151, 18521, 18524, 18525, 18527, 2072, 18528, + 814, 4135, 4748 + ], + [0, 1009, 1011, 1166, 1400, 1503, 1177, 1903, 1920, 1938, 1954, 1958, 3421, 3539, 4193, 4481, 4508, 91], + [0, 1804, 1808, 6996, 1896], + "@ember/app-blueprint", + [1, 2343, 11962], + "aram", + "regexparam", + "tseslint", + "tinyhttp", + [0, 11963, 11964, 11919, 2399], + [0, 2057, 18537], + [0, 4389, 4255, 18540, 3505], + [1, 2343, 11966], + [0, 11967, 11580, 11581, 2487], + [0, 1437, 2152, 2760, 18545], + [1, 2343, 11969], + [0, 11970, 11971, 2514, 4139], + [0, 18552], + [0, 2228, 18555, 2236, 2273, 2281, 2298, 2766, 2814, 2297, 2881, 2895, 2898, 2912, 3006, 1209], + [1, 2343, 11973], + [0, 11975, 11979, 11980, 2523], + [2, 976, 4590], + [0, 1156, 1191, 1699, 3373, 4023, 4427], + "@biomejs/biome", + [3, 4343, 10], + [2, 11977, 1612], + [ + 0, 18566, 18569, 1173, 1175, 1195, 1198, 1208, 1212, 1220, 18571, 1264, 1277, 18574, 1429, 1457, 1584, 1596, + 18575, 1610, 1628, 1863, 1177, 18580, 1916, 1937, 17585, 2092, 18581, 2323, 2332, 18582, 2504, 2600, 2651, 2843, + 13110, 2297, 2881, 2886, 2900, 18260, 2921, 2923, 2925, 18584, 3105, 3107, 18587, 3112, 3177, 2899, 3342, 3463, + 3561, 3732, 4039, 4111, 18590, 4193, 4196, 4307, 18592, 4537, 18595, 4027, 188, 4634, 4639, 4645, 18599, 2924, + 4677, 4681, 4693 + ], + [0, 13449, 188, 4963], + [1, 2343, 11982], + [0, 11983, 11984, 11985, 2537], + [0, 1363, 18609, 18610, 18611, 2713, 18613, 18616], + [0, 1377, 1596, 1177, 2228, 2236, 2240, 2256, 2258, 2281, 17567, 2311, 2759, 2899], + [0, 18619, 18620, 18621, 18622], + [1, 2343, 11987], + [0, 11989, 11990, 11991, 2537], + "headers", + [0, 18627, 18629, 18632, 2646, 18633, 1209, 3361], + [0, 192, 5467, 1166, 1448, 1610, 1797, 1177, 1909, 2114, 2675, 2990, 18637, 3421, 18634, 3754, 3985, 3995, 1906], + [0, 1559, 1823, 16284, 2934, 18639, 18640, 18643, 18645, 18646, 18647, 3361, 18648, 3754, 18649, 1283, 5354, 4714], + [1, 2343, 11994], + "ipaddr.js", + [0, 0, 11997, 2514, 2523], + "net", + "network", + [0, 442, 18657, 4874, 18659, 7677, 1177, 1895, 1955, 18660, 1894, 18661, 4474, 91, 4523, 1984], + [1, 2343, 11999], + [0, 12000, 12004, 12005, 2399], + [ + 0, 30697, 27276, 11956, 18740, 18684, 14959, 18693, 18733, 18735, 18687, 1378, 18737, 1381, 18717, 18720, 18695, + 18686, 18747, 18683, 1437, 1458, 18689, 1536, 1543, 18671, 18678, 18679, 18668, 1687, 18753, 12923, 18758, + 12925, 18704, 2020, 2021, 2026, 2098, 2105, 18745, 2151, 14939, 12929, 12471, 2070, 14940, 18728, 18701, 18708, + 2659, 2712, 2720, 18673, 18702, 1209, 3105, 18726, 3181, 3237, 3368, 3386, 18428, 18669, 3560, 18714, 18722, + 18675, 814, 14562, 18730, 18667, 4135, 12937, 18710, 18698, 1241, 4423, 4438, 18670, 4648, 18692, 7801, 18666, + 31963, 31947 + ], + [3, 975, 11], + "ccepts", + [2, 12001, 12002], + [ + 0, 14938, 1385, 1429, 1431, 18761, 15264, 1540, 18774, 18771, 1177, 1895, 18766, 1951, 1953, 2116, 18706, 2832, + 2960, 2899, 3297, 3421, 1894, 6021, 4294, 4342, 4421, 4449, 36864, 4699, 4707, 18764, 18760 + ], + [0, 1896, 18776, 12589, 200, 18777, 18778, 18779, 837], + [1, 2343, 12007], + [0, 12008, 12013, 12014, 2537], + [ + 0, 5222, 71, 5757, 5759, 5809, 5830, 5832, 83, 5889, 87, 97, 18784, 18787, 18790, 18795, 1212, 18801, 18687, + 1378, 18695, 18747, 1496, 18803, 18807, 18704, 14562, 4135 + ], + "ntent-", + [2, 12009, 10366], + [2, 981, 12010], + [3, 985, 11], + [ + 0, 53, 18809, 18811, 18812, 18813, 18815, 1178, 1385, 1429, 1499, 18867, 1532, 18671, 1593, 18679, 18823, 1825, + 18825, 1830, 18829, 18832, 18833, 18834, 18835, 18839, 1177, 18840, 1954, 18706, 18841, 2899, 2907, 3957, 6021, + 814, 4039, 2924 + ], + [0, 1172, 18777, 18844, 1825, 5197, 5198], + "ncode-url", + [2, 12012, 12015], + [1, 2343, 12018], + [0, 12019, 12020, 12021, 2487], + [0, 18852, 18855, 18687, 18865, 14938, 14939, 18708, 18868, 12937, 4648], + [ + 0, 53, 68, 71, 5757, 83, 5889, 97, 18809, 18812, 18872, 18787, 1381, 1385, 1429, 18867, 1540, 18823, 1825, 1827, + 18873, 18825, 18829, 18832, 18833, 18834, 18835, 18839, 18889, 18892, 18894, 1177, 1895, 18840, 1951, 1953, + 1955, 18895, 2116, 18841, 2899, 1894, 2907, 3773, 3980, 14944, 4320, 4323, 11598, 2924 + ], + [0, 18844, 1825], + [1, 2343, 12023], + [0, 12024, 12025, 12028, 4139], + [0, 18901, 18906], + [0, 816, 10817, 4874, 2968, 4039, 4042, 4494, 91], + [3, 12011, 18], + [2, 12026, 998], + [0, 1831, 1936, 1623, 4412, 18909], + [1, 2343, 12030], + [0, 0, 0, 5708, 4139], + [1, 2343, 12032], + [0, 0, 12033, 12034, 4139], + [0, 2899, 1177, 2759, 1954, 1938, 1958, 1903, 1970], + [0, 10368, 1833, 1002], + [1, 2343, 12036], + [0, 12037, 9264, 12038, 2537], + [0, 3441], + [0, 3101, 7046, 7241, 18924, 12706, 4966, 6703], + [1, 2343, 12040], + [0, 12041, 12043, 2514, 2537], + [0, 2215, 4388], + "tsparticles", + [0, 8780, 5087, 4874, 1622, 1177, 20281, 2675, 1192, 2990, 3144, 1894, 91], + "particles.js", + "particles", + "particlesjs", + "particle", + "jsparticles", + "xparticles", + "particles-js", + [1, 2343, 12052], + [0, 12057, 12064, 12065, 2537], + "particles-bg", + "-vue", + [2, 12053, 12054], + "particles-ts", + [0, 1104, 4294], + "particles.ts", + [3, 2638, 9], + "ticles-js", + [2, 12059, 12060], + [3, 12061, 15], + [2, 12062, 1722], + [0, 4874, 2398, 2720, 2899, 3421, 3742, 91], + [ + 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 8622, 1836, 1179, 8623, 8624, 6847, 8625, 2720, 8626, 8628, 5284, + 202, 6710, 3741, 3742, 8630, 8631, 3925, 8632, 4989, 8633, 2184, 8634, 7009, 6621, 181, 8635, 4758, 8636 + ], + "vue-particles", + "ngx-particles", + [2, 1101, 12045], + [1, 2343, 12077], + "ground", + [2, 12047, 12070], + "vuejs", + "preactjs", + "angularjs", + "html5", + "web-design", + [0, 12078, 12085, 12095, 4139], + [0, 7272, 12240, 3757, 19647], + "webdesign", + "css3", + "vtt", + "animated", + "background", + "conf", + [0, 13614, 1159, 9254, 1177, 2011, 2708, 3410, 3421, 4103, 4389], + "confetti", + "works", + "fireworks", + "fireworks-js", + "confetti-js", + "confettijs", + "fireworksjs", + "canvas-", + [2, 12093, 12086], + [0, 18089, 18943, 18944, 1936, 10368, 15103], + "apk", + "flickity", + [1, 2343, 34419], + "@d-fischer/shared-utils", + [3, 1005, 9], + "all", + "api-call", + [2, 12100, 12102], + [2, 12100, 10896], + "jose", + [0, 1429, 2675, 2899, 1899], + [0, 6971, 18951, 18952, 998, 6956], + "twitch", + [1, 2343, 12110], + [0, 12111, 12112, 12113, 2523], + [0, 2003, 4430], + [0, 4387, 4389], + [0, 6639, 6436, 1389, 14927, 353, 4225, 8309], + [1, 2343, 12115], + [0, 0, 12116, 12125, 2537], + [ + 0, 53, 13051, 85, 87, 192, 5467, 17584, 1175, 1178, 1193, 1195, 1177, 1881, 1895, 1938, 1955, 18964, 2070, 2675, + 1192, 3183, 6331, 4750, 1894, 10623, 2924, 4677, 4707, 18966 + ], + [1, 2343, 12568], + [2, 3273, 6543], + [3, 439, 18], + "regexpp", + [2, 12119, 12120], + [3, 5552, 23], + [2, 12122, 3007], + [2, 1010, 1995], + [0, 5001, 1263, 6639, 18523, 18968, 18969, 18971], + "title-case", + [2, 3138, 9102], + "pecific-snapshot", + [2, 11945, 12128], + [3, 8722, 10], + "-mdxjs", + [2, 12130, 12131], + [2, 3167, 12132], + [3, 5551, 24], + "to-typescript-types", + [2, 4120, 12135], + [2, 12134, 12136], + [1, 2343, 12139], + [0, 12140, 12141, 12143, 2537], + [ + 0, 18976, 1448, 1850, 18980, 6914, 18982, 18984, 18986, 18989, 17403, 18990, 18992, 18993, 3044, 3431, 13635, + 3435, 3438, 18994, 3775, 18995, 18997 + ], + [0, 1173, 13998, 1261, 1177, 1879, 1938, 1947, 1959, 2708, 2832, 4039, 4103], + "pastoralist", + [0, 5284, 19001, 19003, 1973, 6071, 89, 2130, 5472, 19005, 19007, 6969, 2899], + "cript-estree", + [2, 5552, 12144], + [1, 2343, 12147], + [0, 12148, 12149, 12143, 2443], + [0, 2571, 4135, 3847, 3744, 3435, 18994, 3904, 1847, 1850], + [0, 1843, 1177, 4039, 3410, 48, 2708, 53, 1261, 1959, 4103, 68, 1879, 1938, 1947, 1961, 1198, 13998], + [1, 2343, 12151], + [0, 12152, 12154, 12143, 2537], + [0, 2571, 4135, 3744, 3435, 19018, 19020, 18980], + [2, 12155, 27730], + [0, 1177, 4039, 3410, 48, 2708, 53, 1261, 1959, 4103, 68, 1879, 1938, 1947, 1961, 1198, 13998], + [3, 20826, 14], + [1, 2343, 12157], + [0, 12164, 12167, 12143, 2487], + [3, 1013, 11], + [2, 12158, 9026], + [2, 10306, 5256], + [3, 1603, 14], + "ontext", + [2, 12161, 12162], + [0, 2571, 13635], + "-theming", + [2, 1832, 12165], + [0, 1177, 4039, 3410, 48, 2708, 53, 1261, 4103, 68, 1938, 1881, 1198, 13998], + "-formatter", + [2, 1413, 12168], + [2, 2093, 12169], + "mini-", + "mini-store", + "rc-animate", + [1, 2343, 12177], + "rc-form", + "z-use-drag", + [0, 12183, 12210, 2514, 34352], + "@types/ra", + "@types/raf", + [3, 1013, 13], + "codo-gen", + [2, 12180, 12181], + [0, 1080, 1869], + "ast-types", + "motion", + [2, 4893, 12185], + [3, 1225, 14], + "proptypes", + [2, 8137, 12188], + [2, 2528, 12189], + [2, 12187, 12190], + [2, 4670, 8861], + [2, 1199, 12192], + "hot-loader", + [2, 1625, 12194], + "jest-emotion", + "screenshot", + [2, 8820, 12197], + [3, 4323, 19], + "yled-components", + [2, 12199, 12200], + [3, 11598, 12], + "or-styled-components", + [2, 2484, 12203], + [2, 12202, 12204], + "tsc-alias", + "@electric-sql/pglite", + "ucloud", + "lsofi", + [0, 1087, 1177, 1903, 1938, 1948, 1954, 1958, 2899, 3421, 4342], + [1, 2343, 12212], + [0, 12218, 12221, 12223, 2537], + [3, 1014, 9], + "slate", + [2, 12213, 12214], + "slate-hyperscript", + "slate-react", + [0, 1082, 2071], + [2, 12213, 594], + "is-hotkey", + [0, 16805, 1393, 19038, 5867, 30889, 12142, 1894, 3980], + "jotai-optics", + [0, 19042, 19044, 3595, 19045, 19046, 19047, 5286, 19049, 19052, 19053, 676, 19054, 19055, 19057, 19059, 19060], + "jotai-x", + [1, 2343, 12230], + "optics-ts", + [3, 3836, 9], + "keys-hook", + [2, 12227, 12228], + [0, 12234, 12235, 12237, 2537], + "deep-compare", + [2, 8183, 12231], + "zustand-x", + [0, 19066, 2569, 19071, 19073, 19078, 15059, 3435], + [ + 0, 5517, 13614, 23237, 10976, 10979, 11008, 27564, 27568, 27571, 27573, 27575, 27576, 27580, 11013, 19325, 1143, + 1159, 9254, 1177, 14741, 15308, 2756, 3410, 3421, 19082, 4103, 19084, 4389, 11028 + ], + "plate", + [0, 5284, 5286, 3595, 676, 6693, 6692, 5187, 1182, 6830], + [1, 2343, 12239], + [0, 12241, 12243, 12249, 2443], + "es-errors", + [0, 15786, 19092, 19093, 19094], + "react-b", + [0, 1177, 15793, 15797, 15801, 2675, 2990, 3421, 19097, 15804, 15805], + "react-button", + "uiw-react", + "react.js", + "uikit", + "react-ui", + [0, 5286, 19099, 19100, 1925, 5194, 19101, 2680, 19102, 2474, 5258, 5284, 6422, 1858, 614, 594, 6731], + [1, 2343, 12251], + [0, 0, 12252, 12254, 2537], + [0, 13614, 1158, 1177, 2708, 2768, 3421, 4103, 4535], + [2, 1024, 45], + [0, 1858, 1925, 19108, 5284, 5286, 6422], + [3, 3839, 10], + [1, 2343, 12257], + [0, 0, 12258, 12259, 2523], + [0, 1173, 1175, 1198, 8966, 1264, 1429, 1610, 2899, 4039], + [0, 5194, 1851, 1172], + "react-input", + [1, 2343, 12262], + [0, 0, 12263, 12264, 34352], + [ + 0, 19118, 2899, 1825, 18686, 18693, 19119, 19121, 19122, 19123, 1381, 18801, 18825, 19125, 19127, 14217, 14196, + 19130, 14214, 1235, 14199, 14192, 1244, 14198, 14215 + ], + [0, 19132, 6422, 1862, 6567], + [3, 1023, 18], + [1, 2343, 12269], + "verlay-trigger", + [2, 8666, 12267], + [0, 0, 12270, 12271, 2537], + [0, 48, 53, 87, 10688, 1863, 1177, 1895, 1903, 1938, 1954, 1958, 2675, 3421, 1894, 4193, 4389], + [0, 1862, 6567, 5194, 19138, 1865], + [1, 2343, 12275], + "react-u", + "react-utils", + [0, 0, 12276, 12277, 4139], + [0, 13614, 1158, 1429, 1859, 1177, 2011, 2228, 2256, 2283, 2311, 2708, 2899, 3421, 3736, 19146, 4103, 4389, 4535], + [0, 5286, 5258, 5194, 1858, 1862, 6567, 7168, 3053, 3065, 6636], + [2, 12279, 8295], + "flowbite-", + [1, 2343, 12281], + [0, 0, 12282, 12288, 2523], + [0, 1317, 1311], + "to-ts", + [2, 7526, 12283], + [2, 7719, 553], + "prom-client", + "unleash-client", + [0, 1867, 1936, 6435], + "ype-is", + [2, 7750, 12289], + [1, 2343, 12293], + "ts-node-dev", + [0, 0, 8134, 12297, 2399], + "Unleash", + "ios", + "android", + [0, 1867, 1108, 6961, 6920, 7256, 1871, 19161, 7169], + [1, 2343, 12299], + [0, 12300, 12303, 2514, 2537], + [0, 2004, 14301, 2003, 4227], + "keyux", + [3, 1027, 12], + [0, 1082, 1362, 19168, 1429, 6522, 19172, 2323, 2384, 2463, 3183, 3466, 4135], + "image-shrink", + [2, 12302, 12304], + [2, 9229, 4219], + [2, 12302, 12306], + [1, 2343, 12311], + "shipjs", + "@esm-bundle/chai", + [0, 12316, 12317, 12321, 2523], + "@total-typescript/ts-reset", + "@hap", + "py-dom/global-registrator", + [2, 12313, 12314], + [ + 0, 439, 12121, 19180, 27907, 19193, 11180, 11209, 19182, 19184, 1006, 1091, 1615, 1676, 1874, 1994, 1996, 2000, + 19186, 14301, 2069, 16783, 2105, 2200, 2687, 19187, 2743, 19189, 3181, 12118, 3466 + ], + [ + 0, 5517, 53, 87, 8129, 19194, 19181, 19195, 19581, 4874, 1011, 1195, 1414, 1429, 1448, 1532, 1593, 1651, 1797, + 1933, 15510, 17308, 19206, 32793, 19210, 2003, 19213, 2070, 2203, 2212, 2226, 2807, 2931, 2990, 3105, 3112, + 3127, 19216, 19219, 19221, 19222, 19223, 19224, 2899, 19227, 19230, 1894, 3730, 3752, 3930, 3957, 4135, 4167, + 4193, 91, 2924, 4677, 19235 + ], + "uploadcare", + "lighter", + "file ", + [0, 6892, 671, 5284, 5286, 2000], + "file uploader", + "ive image", + [2, 5156, 12323], + " optimization", + [2, 158, 12325], + "image ", + [2, 12327, 6110], + "image size", + " image editor", + [2, 6599, 12330], + " client", + " api client", + [2, 9229, 12333], + "ing blocks", + [2, 6147, 12335], + "lr-blocks", + "uc-blocks", + [2, 11857, 591], + "smart", + [1, 2343, 12356], + "smart cdn", + "cloud ", + [3, 31, 8], + "file platform", + [2, 12343, 12345], + "ation api", + [2, 353, 12347], + "webp", + "avif", + "css c", + " properties", + [2, 12162, 12352], + [2, 12351, 12353], + [2, 11617, 591], + [0, 12357, 12358, 12359, 2523], + [0, 3435, 3438, 1881], + [0, 4389, 1796, 1177, 2708, 97, 19243, 19247, 1261, 1959, 4103, 1938, 1947, 1961], + [0, 1177, 6651, 1541, 1259, 5284, 6718, 6778, 7056, 7192, 7044], + [2, 8137, 668], + [2, 1393, 12360], + [1, 2343, 12363], + [0, 12364, 12365, 12359, 2537], + [0, 4135, 3435, 3438, 19254], + [0, 4389, 1796, 1177, 2708, 97, 19243, 19247, 1261, 4103, 1938], + [1, 2343, 12367], + [0, 12373, 12374, 12375, 2399], + [3, 5881, 34], + "self", + [2, 12368, 12369], + [3, 12370, 35], + [2, 12371, 5585], + [0, 1881], + [0, 1009, 1011, 1742, 1177, 1895, 1938, 2675, 2990, 3400, 1894, 19263, 91], + [0, 1259, 1541, 6778, 7056, 7192, 7044, 1177, 6651, 5284, 6718, 91], + [1, 2343, 12377], + [0, 0, 5795, 12378, 4139], + [ + 0, 1885, 1501, 19269, 590, 671, 9654, 2292, 2272, 19270, 1177, 2649, 19271, 15717, 4354, 16790, 19273, 18443, + 2446 + ], + [1, 2343, 12380], + [0, 12381, 5795, 12382, 2537], + [0, 442, 2203], + [0, 1177, 7625, 19281], + [1, 2343, 12386], + [2, 8530, 4798], + "merge-deep", + [0, 12387, 12388, 12389, 2537], + [0, 19438, 19181, 442, 19344, 1009, 1011, 1891, 1907, 19286, 1915, 1938, 1942, 1951, 1953, 17306, 1982, 4523], + [0, 9736, 1177, 91], + [0, 1890, 1177, 7625, 19281], + [1, 2343, 12391], + [0, 12401, 12404, 6936, 2443], + [3, 5075, 18], + [2, 12392, 8221], + "@makotot/ghostui", + [3, 6497, 10], + "@types/hast", + "@umijs/bundler-utils", + "@umijs/", + "@umijs/core", + [2, 12398, 594], + [0, 1953, 1951, 1938, 19286, 1011, 17306, 1009, 1915], + "-scroll-to", + [2, 12082, 12402], + [0, 1177, 91, 9736], + "codesandbox", + "comlink", + "dumi-", + [1, 2343, 12417], + "dumi-afx-deps", + "estree-", + "util-to-js", + [2, 12410, 12411], + [3, 12412, 12], + "visit", + [2, 12413, 12414], + "file-s", + [0, 0, 0, 12423, 2487], + "ystem-cache", + [2, 12416, 12418], + "is-element", + [2, 2573, 12420], + "heti", + [0, 1177, 6651, 7625, 28987, 1894], + "html2sketch", + [3, 3137, 12], + "ind-and-replace", + [2, 12425, 12426], + [3, 3140, 14], + [2, 12428, 1871], + [1, 2343, 12453], + "prism-themes", + "react-l", + "-skeleton", + [2, 10087, 12433], + [2, 12432, 12434], + "code-editor", + [2, 10961, 12436], + [2, 3890, 12437], + "rehype-r", + "emove-comments", + [2, 12439, 12440], + "directive", + [2, 3986, 12442], + "sucrase", + "umi", + "-parents", + [2, 4555, 12446], + "v8-compile-cache", + "vfile", + "dumi-a", + "ssets-types", + [2, 12450, 12451], + [0, 12464, 0, 2514, 2523], + [2, 11367, 1732], + [2, 6495, 12454], + [3, 5540, 9], + "sted-git-info", + [2, 12456, 12457], + [2, 6308, 6925], + "luralize", + [2, 5088, 12460], + "@umijs/lint", + [2, 12398, 9711], + [0, 53, 1939, 1959, 68, 1938, 1270, 1935, 1947, 19302, 1011, 19254, 1961, 1976, 1009], + [1, 2343, 12469], + "-import-utils", + [2, 12405, 12466], + "repo", + [0, 0, 12470, 12476, 2523], + [0, 1177, 1903, 1938, 1953, 1958, 4389], + "git-repo-info", + [2, 11311, 1732], + "zx", + [2, 699, 701], + [2, 12407, 12474], + [ + 0, 19309, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 6651, 2446, 2292, 2272, 671, 19315, 19269, + 2869, 1899, 4255, 19317, 590, 19318, 19320, 19273 + ], + " site generator", + [2, 2947, 12477], + "jamstack", + [1, 2343, 12481], + [0, 0, 12482, 12483, 2537], + [0, 5601, 19325, 1177, 1938, 1953, 1958, 4389], + [ + 0, 19309, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 6651, 2446, 2292, 2272, 671, 19315, 19269, + 2869, 4255, 19317, 590, 19318, 19320, 19273 + ], + [1, 2343, 12485], + [0, 12486, 12487, 2514, 34352], + [0, 442, 27928, 1982, 2203, 4523], + [0, 19333, 5601, 4874, 19336, 1446, 1177, 19339, 33860, 1894, 91], + [1, 2343, 12489], + [0, 12490, 12491, 12492, 2537], + [0, 29371, 19194, 19344, 19254, 2203], + [0, 1166, 1177], + [ + 0, 6651, 1906, 19347, 19348, 19349, 19350, 19353, 1501, 19269, 590, 671, 9654, 2292, 2272, 19270, 1177, 2649, + 19271, 4255, 15717, 4354, 16790, 19273, 18443, 2446, 2869 + ], + [1, 2343, 12494], + [0, 0, 12495, 12496, 2399], + [0, 192, 5467, 1610, 2675, 2990, 3985, 3995, 1906], + [0, 19359, 1541, 1177, 18639, 18640, 3624, 1906], + [1, 2343, 12498], + [0, 12499, 12500, 12501, 2537], + [0, 1012, 1091, 1443, 1525, 1595, 1699, 8098, 18420, 2777, 2845, 12834, 3117, 4507], + [ + 0, 442, 4874, 6513, 29891, 16480, 22839, 1177, 1895, 1938, 1953, 1955, 1982, 3125, 3390, 3400, 3471, 1894, 4193, + 18710, 91, 4523, 1984 + ], + [0, 2295, 1739, 1745, 1177, 1179, 1932], + [1, 2343, 12503], + [0, 12504, 0, 12505, 4139], + [0, 1676, 27418, 2191, 19380, 29856, 27921, 12578], + [0, 91, 1177, 1204, 14056, 1932], + [1, 2343, 12507], + [0, 12508, 12509, 12510, 2523], + [0, 2102, 2151, 3008, 3429, 4121], + [ + 0, 48, 53, 87, 192, 5467, 19401, 16405, 1178, 1193, 1457, 19403, 1610, 1700, 1701, 1177, 1895, 19405, 1938, + 2675, 1192, 2794, 2990, 3400, 1894, 4257, 2924 + ], + [0, 1177, 671, 9654, 1194, 2924], + [1, 2343, 12512], + [0, 12513, 12514, 12515, 2537], + [0, 439, 19194, 19413, 2000, 19415, 19419, 4025], + [0, 1011, 1166, 1414, 1437, 1177, 19422, 1912, 1933, 2020, 3400, 3471, 3532, 91, 1906], + [0, 1177, 6741, 6939, 1166, 1973, 8791, 1145, 6637, 6468, 2899], + [1, 2343, 12517], + [0, 12518, 12519, 12520, 34352], + [0, 19209], + [0, 2899, 1177, 1178, 3028], + [0, 1172, 1177, 6741, 6939, 1178], + [1, 2343, 12522], + [0, 12523, 12524, 12526, 2523], + [0, 16805, 19436, 1393, 1423, 2105, 2203, 3057, 4135], + [ + 0, 53, 68, 192, 5467, 19438, 442, 6061, 6063, 19441, 5366, 19443, 5601, 5087, 19446, 5254, 1317, 19449, 1804, + 1177, 1895, 1933, 1955, 2024, 2675, 1192, 1894, 4131, 4183, 4468, 4474, 91, 4523 + ], + "object-deep-merge", + [0, 1177, 1388, 4231, 5592, 671, 1421, 19451], + [1, 2343, 12528], + [0, 0, 12529, 12530, 2523], + [0, 1177, 2899], + [0, 1177, 6741, 1925, 6778], + [1, 2343, 12532], + [0, 12535, 12536, 12537, 2537], + [2, 19573, 24759], + "diff-sequences", + [0, 1874, 2687], + [0, 12602, 4874, 19464, 1178, 1503, 1615, 1177, 19466, 2151, 2899, 3421, 3456, 4039, 4135, 13134, 19468, 19469], + [0, 1177, 6741, 6939, 1932, 8505, 4298, 12442, 2202, 2203, 19472, 19473, 19475, 19478, 19479, 19482], + [1, 2343, 12539], + [0, 12540, 12541, 12542, 2443], + [0, 439, 2004], + [ + 0, 192, 5467, 6303, 19492, 19181, 442, 27928, 19611, 19580, 31200, 1006, 4870, 4874, 1011, 1012, 16480, 1177, + 19494, 1895, 1912, 1953, 1982, 1992, 1994, 2000, 2675, 2807, 2990, 1209, 3125, 3390, 3401, 1894, 1531, 91, 4523, + 1984 + ], + [0, 1177, 6741, 6939], + [1, 2343, 12544], + [0, 12545, 12546, 12547, 2537], + [0, 1209, 19500], + [ + 0, 1091, 2070, 2675, 2899, 1177, 4039, 19505, 15555, 48, 53, 13693, 94, 4131, 87, 68, 19504, 5235, 1933, 1198, + 5874, 78 + ], + [0, 1177, 1932, 1934], + [1, 2343, 12549], + [0, 12550, 12551, 12552, 4139], + [0, 2654], + [0, 19512, 19514, 1177, 1895, 19516, 1894, 4135], + [0, 6939, 6741, 1177, 1936], + [1, 2343, 12554], + [0, 12555, 12556, 12558, 34352], + [ + 0, 11554, 19522, 19525, 18976, 1143, 1676, 19526, 19527, 19378, 2571, 17501, 2743, 3181, 19020, 19531, 18994, + 4135, 11555, 4480 + ], + [ + 0, 19535, 5601, 1011, 1173, 1175, 1178, 1208, 1212, 1261, 14237, 1280, 1291, 1429, 1610, 19538, 1177, 1912, + 1915, 1933, 1938, 17585, 14053, 19539, 2070, 2708, 2762, 2858, 19540, 19541, 3125, 2899, 19544, 3421, 3875, + 4039, 4103, 4193, 4449, 91, 19545 + ], + "stable-hash", + [0, 1177, 6741, 6939, 5194, 13354, 5260, 1204, 6813], + [1, 2343, 12560], + [0, 12561, 12562, 12542, 2487], + [0, 1012], + [ + 0, 48, 53, 87, 92, 192, 5467, 19492, 19552, 6061, 6063, 5536, 5601, 5087, 4874, 5254, 1009, 1011, 1012, 1193, + 19555, 1680, 1177, 1895, 1912, 1933, 1938, 1953, 1955, 1992, 19560, 2675, 2742, 1192, 15853, 2990, 19516, 3534, + 1894, 4039, 4131, 4135, 4474, 91 + ], + [1, 2343, 12564], + [0, 12565, 12566, 12567, 2537], + [0, 19567, 12533, 19568, 8506, 1676, 1874, 2000, 19186, 2626, 12525, 27427, 4135, 19570, 30614], + [ + 0, 5517, 48, 53, 68, 5240, 87, 19574, 19577, 19193, 19578, 816, 16607, 6065, 16608, 4856, 5245, 19580, 19581, + 1006, 8818, 6503, 4874, 5254, 19586, 5552, 1198, 1208, 19588, 1414, 1420, 1429, 1677, 1177, 19504, 19505, 2070, + 2203, 2675, 19592, 2845, 26696, 2990, 2899, 19595, 3541, 4068, 4039, 4042, 4131, 4193, 5569, 91, 4523 + ], + [0, 1177, 1932, 1776], + [0, 12569, 19601, 12572, 34352], + [0, 439, 19193, 11180, 12570, 12534, 12668, 17310, 12118, 19571], + [2, 19606, 12571], + "ast-token-store", + [0, 1177, 6741, 6939, 671, 19632, 2856, 1781], + [1, 2343, 12574], + [0, 12575, 12576, 12577, 2537], + [0, 11869, 19522, 1143, 19638, 1169, 19639, 19640, 13829, 2571, 19644, 19645, 3181, 19020, 19647, 19648], + [ + 0, 48, 53, 68, 5240, 94, 1159, 1198, 1261, 1177, 1881, 1912, 1933, 1935, 1938, 2004, 2126, 2708, 2762, 17221, + 3183, 3410, 3435, 3438, 4039, 4103, 4135, 4389, 19650 + ], + [0, 1177, 6741, 6939, 6653, 7320, 1219], + "unrs-resolver", + [1, 2343, 12580], + [0, 12581, 12582, 12583, 2537], + [0, 3137], + [0, 3421, 1429, 2899, 1177, 2203, 442, 19206, 19657], + [0, 1177, 6741, 1783, 671, 9654], + [1, 2343, 12585], + [0, 12587, 0, 12594, 2399], + "aleo", + [0, 2203, 439], + "cryptography", + [3, 1336, 10], + "decentralized", + "-knowledge", + [2, 7150, 12591], + "oracle", + [0, 1177, 6741, 6939, 2899], + [1, 2343, 12596], + [0, 12597, 12601, 12615, 34352], + [0, 439, 1835, 19671, 2191, 2203, 1555, 2687, 4135, 29860], + "event-", + "target-shim", + [2, 12598, 12599], + [ + 0, 442, 5601, 1006, 27303, 4874, 1011, 12145, 1177, 1895, 1912, 1933, 2071, 2675, 2990, 3125, 2899, 3401, 3421, + 3456, 1894, 3757, 3980, 4039, 19676, 4507, 91 + ], + "@mysticatea/eslint-plugin", + [3, 12602, 12], + [2, 12603, 4158], + "dts-bu", + "ndle-generator", + [2, 12605, 12606], + "growl-reporter", + [2, 2877, 12608], + "-minify", + [2, 4045, 12610], + "rollup-", + "rollup-watch", + "type-tester", + [0, 1177, 6741, 6939, 202, 6710, 5286, 6987, 2090, 3403, 1204, 3209], + "w3c", + "abort", + "cancel", + "control", + "controller", + [2, 12617, 12620], + "abortsignal", + [1, 2343, 12624], + [0, 12625, 12626, 12615, 2487], + [0, 1927, 19414, 2687, 3181, 814, 4135], + [0, 12602, 1503, 1177, 2071, 2203, 2899, 3421, 3456, 3757, 4039], + "negotiator", + [1, 2343, 12629], + [0, 12630, 0, 12632, 2399], + [0, 19689, 19571], + "negotiation", + [0, 1177, 6741, 6939, 1894], + [1, 2343, 12634], + [0, 12635, 12636, 12637, 2537], + [0, 439], + [0, 1011, 1742, 1177, 1895, 1912, 1933, 1939, 1953, 1955, 2203, 2675, 1192, 2990, 3401, 1894, 91], + [0, 1177, 6741, 6939, 1862, 6567], + [1, 2343, 12639], + [0, 12640, 12641, 12642, 2523], + [ + 0, 19522, 19724, 1143, 19726, 19526, 19641, 2004, 2571, 19644, 3181, 3438, 19020, 18994, 3744, 814, 4135, 11434, + 19729 + ], + [ + 0, 53, 68, 5611, 19731, 19735, 90, 5601, 1006, 4874, 1011, 1178, 1177, 1881, 1912, 1933, 1938, 1992, 19560, + 1994, 2000, 11605, 2070, 2759, 2762, 19736, 3125, 2899, 3410, 4193, 91, 19545 + ], + [0, 1177, 6939, 6741, 89], + [1, 2343, 12644], + [0, 12645, 12646, 12642, 2523], + [0, 4763, 53, 58, 21131, 25652], + [0, 1192, 91, 4874, 104, 1178, 5601, 1006, 19877, 36694, 68, 92], + [1, 2343, 12648], + [0, 12649, 12651, 12652, 2487], + [0, 439, 12121, 8506, 19592, 19745, 19750, 19751], + "git-clone", + [ + 0, 107, 6022, 19492, 19181, 442, 19605, 19609, 11470, 4856, 5601, 19611, 1006, 6503, 4874, 19759, 1009, 1011, + 1145, 1429, 19619, 1177, 1895, 1912, 1915, 1933, 1938, 1942, 19622, 1945, 1948, 1953, 19757, 1955, 1964, 1982, + 1988, 17308, 19756, 3125, 2899, 19761, 3090, 3401, 3421, 3486, 1894, 4135, 4320, 4946, 19624, 1531, 4494, 91, + 4523, 19630, 4614, 4630 + ], + [0, 1177, 6741, 6939, 6961, 1108], + "iglet", + [2, 5537, 12653], + [3, 9362, 11], + [2, 12655, 1496], + [1, 2343, 12658], + [0, 12661, 12662, 12663, 2523], + "nestjs", + "fullstack", + [0, 19767], + [0, 442, 13729, 1177, 19771, 1895, 1912, 1933, 2990, 3125, 2899, 3400, 1894, 4131, 19235], + [0, 1177, 1965, 19773], + [1, 2343, 12665], + [0, 12667, 0, 12669, 34352], + "archive", + [0, 91, 4135, 31800, 3060, 19780, 12121, 3181, 5569, 19751, 1413, 1405, 2203], + "eslint-json-compat-utils", + [0, 19786, 1177, 6741], + [1, 2343, 12671], + [0, 0, 12529, 12672, 2443], + [0, 1177, 6741], + [1, 2343, 12676], + "flowcontrol", + "arch", + [0, 12677, 12678, 12679, 34352], + [0, 439, 5012, 14301, 2203, 2932, 3561, 3616, 3676, 4135, 19795], + [ + 0, 53, 68, 14039, 19492, 10879, 19797, 19798, 8818, 19799, 6503, 4874, 19800, 5254, 19802, 5604, 5552, 1082, + 1145, 668, 1994, 19339, 1996, 2000, 2807, 695, 2899, 3640, 3681, 2278, 4228, 4333, 3709, 19803, 4494, 4505, 4745 + ], + [0, 1177, 6939, 6741, 3709, 19805], + "cron-parser", + "date.js", + "human-i", + [1, 2343, 12686], + "nterval", + [2, 12682, 12684], + [0, 12691, 12695, 12696, 2523], + "uman-interval", + [2, 6495, 12687], + [2, 8329, 2995], + [2, 3230, 12689], + [0, 5604, 1012], + "job", + "jobs", + "delayed", + [ + 0, 192, 5467, 19181, 442, 4874, 5551, 7677, 22839, 23203, 1177, 1895, 1912, 1915, 32525, 1953, 1958, 1992, + 19560, 2203, 2675, 2807, 2990, 1894, 23535, 4131, 1531, 91, 4523, 1984 + ], + [0, 1177, 6741, 6939, 671, 1975, 5472], + [1, 2343, 12698], + [0, 12723, 12724, 12725, 2537], + [3, 1339, 12], + "end4", + [2, 12699, 12700], + "meat7", + [2, 1337, 12702], + "bow-swam-troops-care", + "cent-matter-to", + "close", + "r-composed-particularly-shout", + [2, 12706, 12707], + "coach-organized-notice", + "correct-home-silent7", + "course-whenever-merely", + "crop", + "-birthday-web3-children", + [2, 12712, 12713], + "exchange-known-bend", + "-even", + "tually-bound", + [2, 12716, 12717], + [2, 8205, 12718], + "grass-dollar-crew-floating", + "-fruit-web3-perfect", + [2, 4374, 12721], + [0, 1012, 608, 606], + [0, 9125, 5601, 1006, 1177, 9141], + [0, 6869, 1745, 2295, 4298, 9132, 9134, 9658, 1932], + "lay-rest-hour", + "balance", + "-trade-solar", + [2, 12727, 12728], + [2, 3131, 12729], + "meat", + "-think-stove8", + [2, 12731, 12732], + "offic", + "e-deal-mostly1", + [2, 12734, 12735], + "product-slight-adult-settlers", + [3, 3931, 9], + "done-should-moon", + [2, 12738, 12739], + "scienti", + "fic-exist-event2", + [2, 12741, 12742], + "sent", + "-won-little-western", + [2, 6590, 12745], + [2, 12744, 12746], + "-wing-eat", + [2, 6887, 12748], + "stay-including", + "supp", + "er-t", + "erm-including-snake", + [2, 12752, 12753], + [2, 12751, 12754], + "truck-hospital-equator-hurt", + "trunk-darkness-believed-corner", + "typi", + "cal-recall-industry-exchange", + [2, 12758, 12759], + "warn", + "-clothing-whose0", + [2, 12761, 12762], + "weigh-flew-web3-farm", + [1, 2343, 12766], + [0, 12767, 12768, 12769, 34352], + [0, 5279, 439, 1443, 1458, 19824, 5867, 30055, 2203, 2709, 10911, 2835, 3547, 19826, 19827, 4135, 8959], + [ + 0, 51, 53, 68, 19181, 19829, 1011, 5552, 1166, 1414, 1836, 1177, 19422, 1907, 1912, 1933, 1942, 1982, 1992, + 19560, 1994, 2000, 2992, 3125, 17269, 27922, 3390, 3401, 19595, 3471, 3718, 91, 4630, 4745 + ], + [0, 1177, 6741, 6939, 1981, 9654, 671, 590, 1906], + [1, 2343, 12781], + "@airtap/browserify-istanbul", + "-default", + [2, 1090, 12772], + "airtap-", + "airtap-multi", + "bruce-millis-option", + [3, 9242, 9], + [3, 9242, 10], + [2, 12778, 5576], + "near", + [0, 12561, 12794, 12797, 2537], + "nearest-file", + [2, 2103, 12782], + "s-to-files", + [2, 2070, 12784], + "human", + "ize-duration", + [2, 12786, 12787], + "load-script", + [3, 3736, 9], + [2, 12790, 6953], + [2, 3094, 12791], + "maybe-combine-errors", + [ + 0, 19344, 5601, 6503, 4874, 1009, 1011, 5551, 19838, 19839, 1540, 1177, 1912, 1933, 1985, 1992, 19560, 4474, + 4494, 91, 4543, 1984 + ], + "nanoresource", + "-col", + [0, 1177, 6741, 6939, 19842, 1984, 19844], + "-collection", + [2, 12795, 12798], + "on-str", + "eam-close", + [2, 12800, 12801], + "run-", + "parallel", + [1, 2343, 12806], + [0, 12810, 12811, 12816, 2523], + "-settled", + [2, 12804, 12807], + [2, 12803, 12808], + [0, 439, 12118, 16870, 3681, 4135, 19851], + [ + 0, 107, 27928, 19609, 19344, 11470, 5601, 19616, 4874, 5254, 19853, 1009, 1011, 5552, 7677, 1145, 19619, 668, + 1177, 23753, 1895, 1933, 1938, 1945, 29743, 19623, 1955, 1982, 19339, 1996, 2000, 2018, 2203, 2832, 3125, 3510, + 1894, 1531, 91, 19630, 4614, 1984, 4630 + ], + "tap-completed", + "y-with-args", + [2, 3949, 12813], + "transi", + [0, 1177, 6939, 7625, 188, 12072, 3624], + "ent-error", + [2, 12815, 12817], + [1, 2343, 12821], + "abstract-browser", + [0, 12822, 12824, 12827, 2487], + [0, 51, 2861, 1437, 2716, 3429, 89, 4183], + "simple-get", + [0, 19181, 19861, 5601, 4874, 8860, 4880, 1567, 1177, 5556, 19862, 19864, 2807, 3339, 4294, 91, 1984], + "labs", + "saucelabs", + [0, 1177, 19866], + [1, 2343, 12829], + [0, 12830, 12838, 5795, 34352], + [0, 34028, 1006, 19871, 2004], + "uri", + "fast-uri", + [3, 12284, 13], + [2, 12833, 1286], + "-string", + "from-string", + [2, 4013, 12836], + [0, 1011, 1429, 1996, 2000, 19230, 4167], + "@ajv-validator/config", + "quire-", + [2, 12840, 12836], + [2, 5249, 12841], + [1, 2343, 12853], + "tc", + "-plugin-utc", + [2, 1673, 12845], + "if-node-version", + [2, 12833, 4467], + [2, 5223, 12836], + "re2", + "tsify", + "uri-js", + [0, 0, 12854, 5795, 2523], + [0, 3456, 4042, 4057, 4481, 91], + [1, 2343, 12856], + [0, 12857, 0, 12858, 2537], + [0, 1898, 19884], + [0, 1998], + [1, 2343, 12861], + "Ajv", + [0, 0, 0, 12862, 34352], + [0, 10906, 5286, 6813, 1204, 5260, 202, 3209], + [1, 2343, 12864], + [0, 12865, 12866, 12867, 2523], + [0, 1082, 15128, 1996], + [0, 5517, 4042, 4167, 4481, 91], + [0, 6892, 5286, 5284, 57, 5341, 1082], + [1, 2343, 12869], + [0, 0, 12871, 12872, 2523], + "longjohn", + [ + 0, 15990, 19905, 19907, 2070, 2759, 19878, 2297, 2881, 2889, 2891, 2895, 2897, 2900, 2912, 19910, 2915, 1209, + 2899, 19912, 3954, 1241, 4487, 91, 4526, 19914, 2924 + ], + [0, 6892, 5286, 2003, 5284, 57, 5341], + [1, 2343, 12874], + [0, 0, 12875, 2514, 2523], + [0, 1264, 1280, 1429, 2000, 2323, 2351, 2390, 2404, 19922, 2272, 2899], + [1, 2343, 12880], + "buffer-", + "more-ints", + [2, 12877, 12878], + [0, 12881, 12883, 2514, 2487], + [0, 1006], + "claire", + [0, 91, 4579], + "AMQP", + [1, 2343, 12888], + "AMQP 0-9-1", + "RabbitMQ", + [0, 0, 12889, 12890, 2487], + [0, 2899, 1177, 2759, 1317, 4127, 4100, 1311, 1954, 1938, 1958, 1903, 1948, 1970], + [0, 984, 27, 10376], + [1, 2343, 12892], + [0, 12894, 12895, 12896, 4139], + "ux bootstrap", + [0, 19937, 2010], + [ + 0, 19939, 19941, 19942, 19944, 9424, 7892, 4874, 19325, 1389, 19945, 1596, 2675, 2759, 2297, 2871, 2889, 2895, + 19946, 3183, 3421, 1894, 4389, 4474, 4487, 4508, 4514, 91, 19948 + ], + [0, 9439, 19950], + [1, 2343, 12898], + [0, 12900, 12901, 12902, 2523], + "client-side", + [0, 9424, 1363, 1600, 19956, 19957], + [0, 19961, 4874, 19963, 19325, 1177, 2297, 2881, 2895, 19946, 19965, 3421, 1894, 4389, 4474, 91], + [0, 9439, 6731, 594], + [1, 2343, 12904], + [0, 12905, 12906, 12907, 2523], + [0, 1082, 1437, 4747, 1209, 1362, 2151, 19972, 2004, 3105, 19971, 4547], + [0, 3763, 19974, 91, 4874], + [0, 19976, 19977, 5284, 1783, 1973], + [3, 4, 9], + "cli/ast-tools", + [2, 12908, 12909], + [3, 12910, 13], + "href-webpack", + [2, 1296, 12912], + [2, 12911, 12913], + "@ngtools/json-schema", + "@ngtools/", + [2, 12916, 2924], + "denodeify", + [1, 2343, 12920], + [0, 12927, 12932, 12933, 2523], + "entity-name", + [2, 3370, 12921], + [2, 1828, 12922], + [2, 4284, 594], + [2, 1828, 12924], + "exists-sync", + [0, 1792, 7115, 3102, 19982, 4237, 19984, 4430], + "caller-file", + [2, 2183, 12928], + "isbinaryfile", + "node-mo", + [0, 19986, 19987, 19988, 4389, 19989], + [0, 3101, 3053, 19991, 7131, 4237, 4565, 1698, 4068], + "dules-path", + [2, 12931, 12934], + [2, 1508, 2091], + "silent-error", + [3, 4070, 9], + [3, 6384, 10], + "inst", + "rumenter-loader", + [2, 12940, 12941], + [2, 12939, 12942], + [2, 12938, 12943], + [1, 2343, 12946], + [0, 0, 12947, 12948, 34352], + [0, 1317, 1362, 1596, 2899, 3421], + [0, 2013, 2018, 13771, 2016, 19997, 19998, 19999, 6868, 20000, 1803, 3441, 20001, 20003], + [1, 2343, 12952], + " library", + [2, 4627, 12950], + [0, 0, 12953, 12954, 2537], + [0, 811, 10615, 1148, 1414, 2899, 4042], + [0, 20014, 20015, 20016, 20018, 19997, 19998, 6868, 20000, 13771, 2013, 3441, 19999, 20001, 20019, 20003], + [1, 2343, 12957], + "justified", + [0, 0, 12960, 12962, 2523], + "bgblack", + "bgBlack", + [0, 1090, 2159, 6914, 2569, 2756, 4389], + "bgblue", + [0, 2018, 7133, 7053, 7155], + "bgBlue", + "bgcyan", + "bgCyan", + "bggreen", + "bgGreen", + "bgmagenta", + "bgMagenta", + "bgred", + "bgRed", + "bgwhite", + "bgWhite", + "bgyellow", + "bgYellow", + "black", + "bold", + "clorox", + "cyan", + "dim", + "gray", + "green", + "grey", + "hidden", + [1, 2343, 12988], + "inverse", + "italic", + [0, 12989, 12995, 12999, 2537], + [0, 20033, 1615, 2089, 2188, 20035, 2745, 2753, 3404, 3718, 4174, 20039, 20040], + "magenta", + "red", + "str", + "kethrough", + [2, 4285, 12993], + [0, 4874, 1166, 1414, 20042, 20044, 20047, 29888, 3505, 16687, 16330, 4481, 91, 4707, 1906], + "underline", + "white", + "yellow", + [0, 2978, 1451, 3729, 20049, 16701, 20050, 20051, 1614, 2090, 4166, 20052, 17180, 20054, 3378, 3403, 2703, 12473], + [1, 2343, 13001], + [0, 0, 13003, 13004, 2487], + "@jest/get-type", + [0, 2273, 2277, 2283, 2228, 4707], + [0, 2021, 3729, 20061, 8634, 20062, 20063, 20064, 20065], + "vt100", + "cursor", + "iterm2", + "screen", + "erase", + [1, 2343, 13012], + "scrollback", + [0, 13013, 13014, 2514, 2537], + [0, 20076, 13002, 11907, 8765, 11944, 2798], + [0, 16596, 8776, 1437, 2700], + [1, 2343, 13016], + [0, 0, 13018, 13019, 2537], + "pattern", + [0, 5517, 4874, 29891, 23203, 1177, 20083, 3377, 20085, 4294, 4473, 91, 1984], + [0, 91, 20088, 1145, 553, 4532, 1973, 5472], + [1, 2343, 13021], + [0, 13022, 13023, 13025, 2537], + [ + 0, 3763, 1704, 984, 3441, 710, 4590, 1676, 2145, 977, 38, 1080, 1000, 3494, 4266, 1833, 3173, 988, 1364, 1869, + 2657, 3440, 1562, 2099, 3781, 4151, 1581, 20103, 1560 + ], + [0, 1797, 2590, 3421, 1087, 2899, 4594, 1177, 3127, 3237, 4342, 1553, 1575, 1578, 2040, 3162, 20106], + "svg-term-cli", + [0, 2026, 5130, 6690, 5122, 27, 4030, 7096, 38, 1896, 5592], + [1, 2343, 13027], + [0, 13028, 13029, 13025, 2537], + [ + 0, 1080, 20098, 1364, 1560, 1562, 977, 1581, 1676, 1704, 1833, 1869, 984, 2099, 2145, 2657, 20103, 3164, 3440, + 3494, 3509, 988, 3763, 3781, 4100, 710, 4151, 20099, 4266, 1000, 4578, 4590 + ], + [0, 1087, 1553, 1575, 1578, 1797, 1177, 2040, 2590, 3127, 3162, 2899, 3237, 3421, 20106, 4342, 4594], + "truecolor", + [2, 31213, 31214], + [1, 2343, 13033], + [0, 13034, 13040, 13043, 2487], + [0, 53, 58, 101, 19526, 3509], + [2, 12392, 188], + "nitless", + [2, 7944, 13036], + "@simonwep/pickr", + "array-", + [0, 5087, 1177, 1192], + "tree-filter", + [2, 13039, 13041], + [0, 8124, 2026, 1776, 2295, 7701, 20120, 1745, 4363, 13728, 1179, 8623, 20121, 20123, 20124], + [1, 2343, 13048], + "dom-align", + "croll-into-view", + [2, 11148, 13046], + [0, 13050, 13054, 13070, 2537], + "vue-types", + [0, 1797, 3188, 1525, 3181, 14380], + [3, 10720, 40], + [2, 5822, 3426], + "@types/k", + [0, 2899, 1177, 4039, 4538, 4342, 4459, 1954, 1938, 1958, 1903, 1970, 4588], + "@types/koa", + "ru-cache", + [2, 6499, 13056], + [3, 4875, 15], + [2, 13058, 3615], + "-jsx", + [2, 11016, 13060], + [2, 1199, 1219], + [2, 5334, 13062], + "slint", + [2, 3542, 13064], + [2, 1472, 13065], + [2, 5334, 13066], + [3, 1031, 19], + [2, 13068, 1894], + [0, 2026, 5130, 6690, 5122, 4030, 7096, 38, 1896, 5592], + "vue3-jest", + [2, 5334, 13071], + "pack-", + [1, 2343, 13081], + "cli/serve", + [2, 13073, 13075], + [2, 10672, 13076], + "ali-oss", + "nline-import-data-uri", + [2, 1206, 13079], + [0, 13082, 13091, 13102, 2523], + [0, 2070, 2215, 2036], + "context", + "quire-context", + [2, 1252, 13084], + "colorful", + "-versions", + [2, 3797, 13087], + "cz-git", + "diacritics", + [0, 442, 6061, 16607, 6063, 6065, 16608, 16612, 5087, 4874, 1177, 2203, 2774, 4131, 4468, 91, 4523], + "docsearch.js", + "enquire-js", + [3, 1954, 16], + "licit-type-exports", + [2, 1760, 13095], + [2, 13094, 13096], + [3, 2512, 11], + [2, 13098, 1501], + "-emit-webpack-plugin", + [2, 2687, 13100], + [0, 2026, 20137, 2036, 6624, 8691, 20140, 5354], + "is-windows", + [3, 11948, 16], + [2, 13104, 188], + "stub", + [2, 1221, 13106], + [2, 2769, 13107], + "templater", + [2, 2842, 13109], + [1, 2343, 13116], + "mport", + "npm-import", + [2, 1186, 13113], + [2, 3194, 13114], + [0, 13139, 13140, 13146, 2523], + "vars-to-js", + [2, 3194, 13117], + "majo", + [3, 5961, 14], + "ble-of-contents", + [2, 13120, 13121], + "merge2", + [2, 3986, 1646], + "yaml-", + "yaml-config", + [2, 3986, 13126], + "reqwest", + "rucksack-css", + [3, 4130, 9], + [2, 13130, 36], + [3, 1873, 9], + [2, 2495, 2091], + [2, 13132, 13133], + "umi-request", + "vue-cl", + "ipboard2", + [2, 13136, 13137], + [0, 2863, 20147, 8264], + [0, 2899, 1177, 2026, 4474, 1894, 91, 6503, 6494, 1566, 1011, 1009], + "drag-resize", + [2, 4625, 13141], + "vue-i", + "nfinite-scroll", + [2, 13143, 13144], + [0, 1303, 20150, 5165, 20151, 14374, 27, 2038, 11326, 3424, 2026], + [1, 2343, 13150], + "equest", + "vue-request", + [0, 13153, 13155, 2514, 2523], + "vue-tsc", + "webpackbar", + [0, 977, 1581, 1676, 1704, 16128, 3494, 4100, 4538], + "vueComponent", + [0, 1087, 1575, 1177, 1948, 2026, 2899, 3421, 4342], + [1, 2343, 13157], + [0, 13158, 13160, 13170, 2523], + [0, 1091, 1437, 1525, 1536, 1594, 1759, 2026, 2812, 4042, 4057, 91, 4763], + [2, 11164, 3007], + [0, 442, 7806, 9227, 6494, 4874, 1009, 1011, 1177, 1954, 2203, 3363, 1894, 4039, 4474, 4480, 4523], + "color-picker", + [2, 11183, 13161], + [3, 5050, 15], + "utate-observer", + [2, 13163, 13164], + [2, 11183, 11194], + [3, 11185, 15], + "rigger", + [2, 13167, 13168], + [0, 5592, 5995, 20164, 5001, 7141, 2026, 20165, 5130, 6706, 6807, 36, 7020], + [3, 11161, 14], + "mpat", + [1, 2343, 13180], + "mpatible", + [2, 13171, 13174], + "work-theme", + [2, 2560, 13176], + [2, 41, 13177], + "@ant", + [0, 0, 13208, 13209, 2523], + "@antv/g6", + "@codecov/webpack-plugin", + "@code", + "sandbox", + "/sandpack-react", + [2, 13184, 13185], + [2, 13183, 13186], + "@ianvs/prettier-plugin-sort-imports", + "@madccc/duplicate-package-checker-webpack-plugin", + "@micro", + "flash/rehype-figure", + [2, 13190, 13191], + "dm-zip", + [2, 9165, 13193], + "li-oss", + [2, 9165, 13195], + [3, 10403, 11], + [2, 13197, 3730], + [3, 10406, 12], + [2, 13199, 36], + [3, 8806, 9], + "omorphic-fetch", + [2, 13201, 13202], + [2, 7635, 965], + [2, 10884, 3730], + "ixelmatch", + [2, 5088, 13206], + [0, 1414, 20171, 4193, 1177, 2026, 4474, 20170, 91, 4874, 6513, 6494, 1011, 1009], + [ + 0, 20173, 20174, 1781, 91, 5592, 27, 2026, 20175, 20176, 91, 2663, 998, 20178, 20179, 20182, 20183, 20184, 9091, + 10339, 5995, 20186, 20188, 89, 20189, 20194, 20195 + ], + "@types/pngjs", + [1, 2343, 13217], + "pinnies", + [2, 5051, 13212], + [3, 7752, 10], + "antd-style", + [3, 8770, 10], + [0, 13222, 13242, 13244, 2537], + "ugin", + "y-plugin", + [2, 13216, 13219], + [2, 7045, 13220], + [0, 1209, 1155], + "cli-progress", + "plugin-c", + "chunk", + "olor-chunk", + [2, 13224, 13226], + [2, 12407, 13227], + [3, 5556, 16], + "dash", + [2, 13229, 13230], + "lunar-typescript", + "p-all", + "untup", + [2, 3808, 13234], + "-no-", + "-references", + [2, 10393, 13237], + [2, 13236, 13238], + [2, 11380, 13239], + "runes2", + [0, 20202, 20207, 20212, 5087, 4870, 1009, 1011, 1177, 1895, 1938, 1955, 1192, 1894, 4468, 91], + "spinnies", + [0, 2026, 1155, 7020, 2649, 2574, 20215, 4741], + "vanilla-tilt", + [1, 2343, 13247], + [0, 13248, 13249, 13250, 2523], + [0, 1112, 3327, 20221, 3776, 13031], + [ + 0, 7806, 9227, 27478, 6494, 9231, 27327, 22102, 10413, 20232, 1536, 1594, 1704, 2026, 9243, 2657, 3313, 20243, + 91, 4548, 4763, 34143 + ], + [ + 0, 6710, 5592, 27, 2663, 1745, 1781, 2026, 91, 2844, 36, 1852, 8124, 20246, 3452, 20247, 6652, 20251, 20252, + 4763, 7020 + ], + [1, 2343, 13252], + [0, 0, 13253, 13254, 4139], + [0, 13614, 13616, 1177, 2292, 4389], + [0, 2051, 1496, 1698], + [1, 2343, 13256], + [0, 13257, 13258, 13269, 4139], + [0, 20263, 20266], + [0, 20268, 20269, 20272, 2398, 2747, 20273, 3183, 2899, 3427], + "ext-comm", + [2, 10740, 13259], + [2, 5409, 13260], + [2, 5409, 1745], + "app-layout", + [2, 10689, 13263], + [3, 10703, 14], + [3, 212, 11], + [2, 13265, 13266], + [3, 806, 10], + [0, 3426, 1496, 2051, 1698, 7002, 3048, 3427, 3435, 3743, 3583, 3205, 20275, 4161, 614, 6435, 594, 6692], + [1, 2343, 13273], + "aper-toast", + [2, 13268, 13271], + [0, 13274, 13288, 2514, 2523], + [0, 1149, 3008, 4121, 4695], + "menu-mixin", + [2, 5395, 13275], + "building", + "-rollup", + [2, 13277, 13278], + [2, 5471, 13279], + [2, 1384, 591], + [2, 13265, 13281], + [3, 5478, 17], + "-regression", + [2, 7062, 13284], + [2, 13283, 13285], + "amf-client-js", + [ + 0, 1173, 1193, 1245, 1257, 1264, 1610, 1628, 1701, 1177, 20281, 1938, 2092, 1192, 2990, 3413, 3697, 3786, 4257, + 4307, 2924, 20283 + ], + [2, 4053, 2257], + "per", + "unzipper", + [1, 2343, 13295], + "raml", + "amf", + [0, 13296, 13297, 13298, 2399], + [0, 1676, 2188, 4753, 20290], + [0, 1009, 1011, 1166, 1177, 1903, 1920, 1938, 1954, 1958, 1970, 2151, 2675, 2990, 3421, 4481, 91], + [0, 4560, 2056, 7682], + [1, 2343, 13300], + [0, 0, 13306, 2514, 34352], + "-match-patch", + [2, 1687, 13301], + "se-loader", + [2, 5779, 13303], + "klaw-sync", + [ + 0, 3421, 2323, 1776, 2899, 4193, 1177, 1209, 3460, 4431, 1596, 1389, 20304, 2494, 2530, 2990, 13896, 4599, 2401, + 20305, 20306, 4603 + ], + [3, 1898, 16], + [1, 2343, 13309], + [0, 13312, 13313, 13314, 2537], + "commended", + [2, 13307, 13310], + [0, 20312], + [0, 1177, 1889, 1954, 2022, 2899, 3421, 20314, 4193], + [0, 20317, 3073, 2942, 6807, 3721, 20319], + [1, 2343, 13316], + [0, 13317, 13320, 13321, 2537], + [0, 20325], + "light", + "apidoc-light", + [0, 603, 4874, 1610, 2070, 19826, 4005, 4508, 91, 1984, 20328, 20330, 2064], + [0, 20334, 20335, 13657, 5472, 20336, 20339, 20340, 2060, 20342, 20341, 1192], + "portable", + [1, 2343, 13324], + [0, 13329, 0, 13330, 4139], + "programmatic", + "cli-app", + [2, 4610, 1745], + [2, 3115, 1745], + [0, 20351, 20349], + [0, 1641, 57, 2062, 20353, 20354, 20355], + [1, 2343, 13332], + [0, 0, 13334, 13335, 2537], + "http2", + [0, 1596, 1758, 1177, 2899, 3421, 3697, 89, 3904, 4193, 91], + [0, 2062, 4162, 1693], + "apple", + " notifications", + [2, 6645, 13337], + "iOS", + "apns", + [1, 2343, 13342], + [0, 13343, 13344, 13347, 2537], + [0, 20366, 19185, 2200, 13123, 3170], + [ + 0, 20369, 16396, 20371, 8778, 6503, 4874, 20374, 6513, 20375, 1177, 20377, 2020, 2071, 20378, 2070, 20380, 2899, + 4039, 4193, 20382, 91 + ], + [3, 1122, 12], + [2, 1126, 6731], + [0, 2070, 11601, 2062, 20385], + [1, 2343, 13349], + [0, 0, 13350, 2514, 2523], + [0, 6503, 4874, 2899, 4113, 91], + [3, 5515, 14], + [2, 4807, 13351], + [1, 2343, 13355], + "jsnext", + [0, 13357, 13358, 13359, 2443], + "relay", + [0, 20394], + [0, 53, 83, 87, 94, 4874, 1195, 1414, 1177, 2591, 2765, 1894, 3753, 91, 2924, 4677], + [0, 2062, 6523, 1781, 57, 4734, 16168, 4735, 676, 1155, 2649, 8535, 1145, 20398, 20400, 1936], + [1, 2343, 13361], + [0, 0, 0, 13365, 2399], + [3, 8780, 10], + "phql", + [2, 13362, 13363], + [0, 2077, 5131, 4453, 4384, 2076, 1702], + [1, 2343, 13367], + [0, 13368, 13371, 13375, 2537], + [0, 20428, 20414, 20434, 13597, 20418, 20409, 20426, 20412, 20420, 3533, 20416, 4038, 20423, 4135, 20410], + "-common", + [2, 1129, 13369], + [ + 0, 28002, 8520, 826, 19344, 7844, 4874, 1091, 8531, 1092, 20437, 20446, 20441, 28400, 20450, 1540, 1610, 1177, + 20444, 11049, 20453, 20436, 2657, 2812, 12284, 2861, 20451, 29197, 3313, 3752, 4238, 4481, 91, 4548, 4590, 6482 + ], + [2, 1126, 1612], + "to-querystring", + [2, 3425, 13373], + [0, 5122, 5130, 1781, 2844, 3445, 5592], + [1, 2343, 13377], + [0, 13378, 13380, 2514, 2523], + [ + 0, 603, 20472, 12397, 20467, 20482, 12399, 12400, 27329, 20463, 1201, 1212, 20479, 20476, 1835, 668, 2071, + 12419, 20465, 3181, 20460, 4480, 91, 20474 + ], + "cracks", + [ + 0, 192, 5467, 842, 5087, 20485, 9129, 4874, 14011, 12471, 2675, 1192, 6551, 2990, 1894, 3706, 3708, 4039, 4474, + 4494, 12473 + ], + "_modules", + [2, 202, 13381], + [1, 2343, 13384], + [0, 13385, 13386, 13389, 2399], + [ + 0, 20490, 20491, 20492, 20493, 20494, 15016, 1792, 3183, 19544, 3923, 19647, 4243, 20495, 18997, 20496, 4389, + 4431 + ], + [0, 13614, 1158, 1159, 1177, 2708, 3410, 4103], + "@appium/support", + "@colors/colors", + [0, 4384, 12786, 1973, 20499, 20500, 3721], + "appium-adb", + "appium-", + "driver", + "chromedriver", + [2, 13391, 13393], + "asyncbox", + "io.appium.settings", + "ports", + [1, 2343, 13401], + "portscanner", + "teen_process", + [0, 13407, 13408, 2514, 2523], + "@appium/", + [3, 1879, 15], + "ppium-ts", + [2, 13403, 13404], + [2, 13402, 13405], + [0, 1613, 20507, 3082, 3427, 1862, 20508, 11804], + [0, 53, 1700, 2126, 2323, 2338, 2396, 2494, 2700, 2774, 3159], + [1, 2343, 13420], + "@appium/t", + [2, 13410, 7630], + [2, 13410, 103], + "luebird", + [2, 4853, 13413], + [3, 4875, 9], + "rtscanner", + [2, 13415, 13416], + [2, 5051, 5588], + "@types/te", + [0, 6230, 13421, 13422, 34352], + [0, 48, 53, 87, 90, 6061, 6063, 20514, 13662, 20517, 1251, 1652, 1177, 1879, 2990, 3188, 4131], + [ + 0, 20519, 20520, 20521, 20522, 4963, 20523, 4967, 6082, 89, 20524, 20525, 11609, 5122, 20526, 20528, 20531, + 20533, 17751, 20536, 20537, 20539, 20541, 20542, 20543, 20544, 20545, 20546, 20547, 20548, 20551, 20553 + ], + [1, 2343, 13424], + [0, 6263, 13425, 13427, 2537], + [ + 0, 48, 53, 83, 87, 90, 92, 5583, 811, 816, 10817, 968, 972, 20562, 5087, 4880, 4883, 1009, 1011, 1503, 1540, + 1610, 1177, 1881, 1895, 17613, 1938, 1939, 1959, 1961, 1192, 89, 3824, 3957, 4042, 4073, 4468, 4484, 91 + ], + "appium", + [0, 20566, 4967, 20568, 3875], + "automation", + [2, 5131, 10428], + [1, 2343, 13431], + [0, 13432, 0, 13433, 4139], + [0, 20577, 20573, 20575, 11959], + [0, 1612, 27, 3212, 5472, 4158, 13106], + [1, 2343, 13435], + [0, 13436, 0, 13438, 2399], + [0, 20584], + "@azure/core-auth", + [0, 10807, 2087, 15964, 20586, 1149, 12804, 6812, 14836, 1862], + [1, 2343, 13440], + [0, 5621, 13443, 13448, 2537], + "pipeline", + "reg", + [0, 4874, 23203, 1149, 2675, 2990, 91, 1983, 26744, 1984], + "@azure/", + "identity", + [2, 13444, 13445], + "monitor-", + [0, 2088, 6938, 6952, 7179, 1111], + "eleme", + [1, 2343, 13451], + [0, 13460, 8134, 13461, 34352], + "opentelemetry", + [2, 13447, 13452], + [2, 13444, 13453], + [3, 830, 9], + [2, 13454, 13455], + "-inst", + "rument", + "ation-", + [0, 16232], + [0, 3656, 200, 8429, 6876, 7169, 5511, 2568, 20597, 2089, 20598], + "azure-sdk", + [2, 13459, 13462], + [2, 13458, 13463], + [2, 13457, 13464], + [2, 13452, 13465], + [2, 13444, 13466], + "@opent", + [1, 2343, 13472], + "elemetry/api", + [2, 13468, 13470], + [0, 13511, 13519, 13533, 2537], + "-logs", + [2, 13471, 13473], + [3, 13471, 15], + [2, 13475, 364], + "er-logs-otlp-http", + [2, 6813, 13477], + [2, 13475, 13478], + [3, 13479, 24], + "metr", + "ics-otlp-http", + [2, 13481, 13482], + [2, 13480, 13483], + "trace-", + "otlp-http", + [2, 13485, 13486], + [2, 13480, 13487], + "otlp-", + "exporter-", + [2, 13490, 1299], + [2, 13489, 13491], + [2, 13475, 13492], + "resources", + [2, 13475, 13494], + "sdk-logs", + [2, 13475, 13496], + [3, 13497, 19], + "metrics", + [2, 13498, 13499], + "trace-base", + [2, 13498, 13501], + [3, 13502, 25], + [2, 13503, 202], + [3, 13497, 16], + "emantic-conventions", + [2, 13505, 13506], + "diagnostic-channel", + "-publishers", + [2, 13508, 13509], + [0, 3008, 4121], + [2, 13444, 5746], + [3, 4870, 9], + "@types/long", + [3, 8778, 12], + "__typescript-etw", + [2, 7295, 13516], + [2, 13515, 13517], + [ + 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 1610, 1700, 1701, 1177, 1895, 1938, 2675, 1192, 2990, 3144, 3400, + 1894, 4257, 4027, 2924 + ], + "exce", + "ption", + " monitoring", + [2, 13521, 13522], + [2, 13520, 13523], + [2, 705, 13522], + [2, 6681, 13522], + [3, 1135, 11], + " insights", + [2, 13527, 13528], + "microsoft", + "azure", + "tracing", + [0, 2924], + [1, 2343, 13536], + "telemetry", + [0, 0, 13537, 13540, 4139], + [0, 48, 53, 10688, 5812], + "analytics", + "apm", + [0, 20611, 20613, 20614], + [1, 2343, 13542], + [0, 13543, 13555, 13556, 2537], + [0, 13687, 20619, 20621, 20624], + [3, 7709, 10], + "ial-provider-node", + [2, 11891, 13545], + [2, 13544, 13546], + [3, 7709, 9], + "hash-", + "hash-node", + [2, 13548, 13550], + [3, 6765, 9], + [2, 13552, 27], + [2, 13548, 13553], + [0, 20626, 4874, 1166, 20627, 2188, 20628, 4481, 1906], + [ + 0, 3171, 2090, 998, 14431, 12666, 158, 11807, 20630, 20631, 16202, 20632, 20634, 13735, 4354, 2741, 20635, + 14242, 20636, 8433, 17180, 1398, 15149, 20637, 18048, 20638, 20639, 12349, 20640, 20641, 20642, 20643, 20644, + 20645, 20646, 20647, 20648, 3775, 20649, 20650, 20651, 20652, 20653, 20654, 2056, 4390, 20655, 17276, 17274, + 20656, 18494, 20657, 20658, 20659, 20660, 20661, 20662, 20663, 20664, 20665, 20666, 20667, 20668, 20669, 20670, + 20671, 2636, 20672, 20673, 7016, 20674, 20675, 20676, 20677, 20678, 20679, 13705, 20680, 20681, 17918, 20682, + 7827, 20683, 20684, 20685, 10790, 20686, 20687, 20688, 20689, 20690, 20691, 7823, 20694, 20695, 20696, 20697, + 20698, 3354, 20699, 20700, 20701, 20702, 20703, 20704, 20705, 20706, 20707, 20708, 6523, 20709, 11811, 10868, + 20710, 20711, 20712, 8861, 20713, 20714, 20715, 20716, 20717, 20718, 20719, 20720, 20721, 20722, 20723, 20724, + 20725, 20726, 20727, 20728, 20729, 20730, 20731, 20732, 20733, 20734, 20735, 20736, 20737, 20738, 20739, 20740, + 20741, 20742, 2403, 20743, 20744, 20746, 12350, 10218, 20747, 20748, 18508, 17733, 20749, 20750, 20751, 20752, + 20753, 20754, 20755, 20756, 20757, 1227, 20758, 20759, 20760, 20761, 20762, 20763, 20764, 12081, 12096, 28922, + 28923, 28924, 28925, 28926, 28931, 28932, 28942, 28943, 28946, 28947, 37859, 28949, 28955, 28958, 28961, 34876, + 33671, 6790, 33677, 27669, 29579, 17288, 13442, 18883 + ], + "signature-v4", + [2, 13548, 13557], + [2, 13548, 553], + [2, 9196, 1732], + [1, 2343, 13570], + "@aws-", + "amplify/amplify-appsync-simulator", + [2, 13562, 13563], + "construct", + "constructs", + [3, 3706, 25], + [2, 13567, 2618], + "projen", + [0, 0, 13575, 13576, 34352], + "appsync", + "gql", + "lambda", + "xray", + [0, 10615, 1159, 1414, 1177, 2675, 2899, 4042], + [0, 2090, 2098, 4202, 7017, 6771, 1413, 1687], + [1, 2343, 13578], + [0, 13582, 9025, 2514, 2487], + [2, 1137, 3007], + "crc32", + "buffer-crc32", + [0, 1676, 1833, 1869, 3440, 3494, 4266], + "readdir-glob", + "zip-stream", + [1, 2343, 13588], + "archiver-", + "jsdoc-t", + [0, 13592, 13593, 13594, 2523], + "jsdoc-theme", + [2, 13586, 13589], + [2, 4279, 4440], + [0, 3537, 13765], + [0, 1906, 1166, 1700, 4481, 4400], + [0, 2325, 7204, 20164, 2100, 7193], + [1, 2343, 13596], + [0, 13598, 13599, 13600, 2537], + [2, 27994, 27995], + [0, 20786, 20789], + [0, 1166, 17450, 4400, 4481, 1906], + [0, 2100, 2104, 2105, 7076, 6614, 6605, 2090, 7193, 3529, 3383, 814, 5933, 7029, 6857, 7204, 4647, 6821, 3403], + [1, 2343, 13602], + [0, 13603, 13604, 13605, 2537], + [0, 20796, 2743, 3170, 20797], + [0, 1177, 1889, 1954, 2022, 20801, 2899, 3369, 3421, 814], + [0, 2090, 2100, 2105, 7076, 2070, 3529, 13017, 814, 7193], + [1, 2343, 13607], + [0, 13608, 13620, 13621, 2537], + [ + 0, 13612, 20819, 20822, 20824, 20825, 20826, 20828, 20829, 20831, 20833, 20836, 20837, 20839, 20840, 20841, + 12153, 20843, 20846, 20847, 20848, 20849, 20850, 20851, 20852, 20853, 20857, 20858, 20859 + ], + [2, 6739, 1228], + "-unscopables", + [2, 7065, 13610], + "@firebase/ai", + "@es-shims/api", + "@ljharb/eslint-config", + "cover", + "covert", + "has-s", + "trict-mode", + [2, 13617, 13618], + [0, 2323, 4042, 91, 2496, 2510, 4077, 10615, 4060, 811, 4071, 4076, 816], + [0, 5165, 18035, 20862, 2109, 20863, 13901, 6681, 20845], + [1, 2343, 13623], + [0, 13624, 13627, 13628, 2399], + [0, 20870, 20848, 20872, 4874, 20873, 2069, 20917, 2863, 20874, 3313, 3348], + "arrayify", + "ensure", + [ + 0, 20883, 20839, 20840, 20885, 603, 20886, 4856, 9417, 20888, 8264, 4870, 7892, 6503, 10410, 16936, 20889, 6513, + 6512, 7819, 1009, 1011, 1306, 1429, 1431, 6522, 1437, 1455, 1700, 1177, 20892, 2323, 2390, 2409, 2529, 20895, + 1209, 3183, 2899, 3261, 3297, 3400, 3421, 705, 4008, 4089, 4193, 4196, 4474, 91, 4747 + ], + [0, 20897, 18035, 20862, 20863, 5165], + [1, 2343, 13630], + [0, 13632, 0, 13634, 2399], + "is-n", + [ + 0, 32557, 32562, 12207, 20745, 20904, 20905, 8998, 29421, 1079, 1091, 1092, 1137, 20908, 1364, 1457, 20909, + 1483, 1511, 1525, 1543, 1594, 1610, 1615, 1645, 20911, 20912, 20913, 2026, 2098, 2139, 2151, 2163, 20914, 2070, + 20917, 2687, 2822, 2863, 2975, 20918, 1209, 12209, 3127, 14774, 3171, 3181, 3237, 3310, 3445, 3467, 6042, 3519, + 30172, 30174, 3560, 3730, 20921, 1153, 4135, 20922, 20924, 20925, 20928, 18052, 4449, 20931, 20934, 20935, 3348, + 4709, 4715, 4729, 4745, 4763, 33069 + ], + "is-nan", + [0, 20937, 200, 20938, 6599, 20940, 2109, 20863, 14609, 20943], + "object-is", + [1, 2343, 13637], + [0, 13639, 13640, 13641, 34352], + "array-fill", + [0, 20948, 1437, 1707, 20949, 20951, 1997], + [0, 4255], + [0, 4051, 3383], + [1, 2343, 13643], + [0, 13644, 13645, 2514, 2523], + [0, 4864, 9129, 20959, 2151, 20960, 4648], + [0, 4874, 4039, 4384, 91], + [1, 2343, 13647], + [0, 0, 13640, 13649, 2523], + "fn.name", + [0, 2117, 1781, 3033, 20966, 4237, 3048, 3639], + [1, 2343, 13654], + "is-buffer", + "propget", + "pruddy-error", + [0, 13655, 13658, 13659, 2523], + [0, 1676, 1865, 2151, 1209, 4449], + "shouldjs", + "unit testing", + [0, 2899, 4039, 4255], + [0, 18503], + [1, 2343, 13661], + [0, 0, 13670, 13675, 2537], + [2, 1176, 3178], + [2, 1218, 5702], + [3, 1267, 18], + [2, 13664, 6836], + [3, 1955, 17], + "fer-arrow", + [2, 13666, 13667], + "native-", + [ + 0, 53, 78, 14167, 87, 20978, 4864, 4865, 5087, 11301, 4874, 19802, 1245, 1457, 1596, 2151, 2070, 1192, 1894, + 4039, 4042, 4045, 20981, 20983, 4075, 4072, 4468, 4474, 4484, 91 + ], + "promise-only", + [2, 13669, 13671], + [3, 4064, 15], + [2, 13673, 2306], + [0, 5284, 9302, 9026, 1666, 6901, 3811, 20986], + "jstz", + [1, 2343, 19602], + [0, 20991, 1437, 2087, 2727, 2983, 3368, 15245, 3741, 4135, 4247, 20992, 13914], + [0, 1429, 1596, 1177, 2759, 20995, 2899, 3697, 3752, 4193], + [3, 8155, 10], + [0, 20997, 20998, 8891, 20999, 2978, 4166, 16159, 21000, 3005, 12804, 21003, 21004, 2703, 6599, 14692], + "listen", + [1, 2343, 13684], + [0, 0, 0, 13685, 2537], + [0, 13326, 200, 20052, 17180, 2124, 3497, 998, 6591, 4354, 16790, 5284, 676, 21009], + [1, 2343, 13690], + [2, 13689, 25388], + "then-sleep", + [3, 20626, 11], + [0, 13691, 13692, 13699, 2443], + [0, 6372, 21020, 21016, 3561, 4383], + [ + 0, 53, 87, 6371, 28962, 28963, 1009, 1011, 1165, 1195, 1587, 1593, 1610, 1628, 1630, 1637, 1177, 1895, 1955, + 21023, 2092, 12278, 3177, 3400, 1894, 21024, 9348, 4172, 4230, 4307, 4409, 4469, 91, 2924, 4677, 4681, 21026, + 4749 + ], + [2, 54, 202], + "@pika/pack", + "pika-plugin-build-web-babel", + [3, 13695, 12], + "ts-types", + [2, 13696, 13697], + [ + 0, 2128, 91, 5284, 2924, 1936, 1623, 12951, 21028, 4380, 21029, 21031, 21033, 21034, 21036, 21029, 21037, 21038, + 21039, 21040, 21042, 21044, 21047, 21050, 21052, 21054, 21057, 21060, 1177, 1894, 17526, 1999, 5811 + ], + [1, 2343, 13701], + [0, 13702, 13703, 13704, 2537], + [0, 1149, 4707], + [0, 3421, 1776, 2899, 4170], + [0, 21067], + "ttc", + [1, 2343, 13707], + [0, 13708, 13710, 13714, 2537], + [0, 21072, 2081], + "libnpx", + [ + 0, 53, 1195, 18228, 1700, 2323, 2338, 2396, 2409, 2494, 2541, 2700, 1192, 2780, 3427, 89, 21074, 3824, 4603, + 2924, 18237 + ], + "node-cleanup", + [2, 3382, 6698], + [2, 2103, 9478], + [0, 2130, 89, 3497, 21077], + [1, 2343, 13717], + "audit", + [0, 0, 13718, 13719, 2537], + [0, 1537, 1177, 2026, 21082, 2899, 3421], + [0, 27, 2671, 1002, 7436, 5576, 7426, 6435], + [1, 2343, 13724], + "parse-", + [3, 9577, 10], + [2, 13721, 13722], + [0, 0, 0, 13726, 34352], + [2, 1199, 4037], + [0, 2414, 7176, 8220, 1017, 2414, 1367], + [1, 2343, 13731], + "automatic", + [3, 1446, 9], + "commits", + [0, 13732, 13733, 2514, 2443], + [0, 18986], + [0, 5517, 13614, 23237, 27570, 19325, 1159, 1177, 3410, 3421, 4389], + [1, 2343, 13737], + "detect", + "detective", + [0, 13740, 13741, 13742, 2443], + "detective-es6", + "sync-exec", + [0, 1149, 21097, 1496, 21098, 1512, 3188, 4709, 21099, 21100, 3722, 1543, 2015, 3427, 21102], + [0, 1429, 4616, 2899, 1177, 3220, 21104, 705, 1894, 21106, 1895, 1955], + [0, 200, 21110, 21111, 2041], + [1, 2343, 13744], + [0, 13745, 13747, 13748, 4139], + [0, 51, 1437, 1457, 1595, 1699, 2151, 3144, 3181, 21118, 4121, 4135, 4388], + "fraction.js", + [ + 0, 5467, 16607, 21120, 6065, 16608, 16612, 19861, 21122, 4864, 5087, 8818, 9129, 6541, 4874, 20959, 5254, 1009, + 1011, 1529, 1610, 1177, 1938, 1954, 1955, 10619, 2675, 1192, 21124, 2784, 2845, 21125, 2990, 3203, 1894, 4039, + 4131, 4294, 4468, 91, 2924 + ], + [0, 2924, 1932, 91, 21127, 4469, 2924, 20050, 2062], + [1, 2343, 13750], + [0, 13751, 13752, 13761, 2523], + [0, 13922, 1437, 1457, 1209, 3170, 3181, 814, 4388], + [ + 0, 21134, 16933, 4870, 8778, 9129, 4874, 5251, 4891, 1429, 1628, 1177, 2675, 2759, 2990, 2899, 3203, 3210, 1894, + 4039, 4193, 4469, 4487, 4490, 91, 188, 4629, 4634, 4645, 2924 + ], + "@vercel/nft", + "arrgv", + "site", + "sites", + "callsites", + "cbor", + "chunkd", + "ci-parallel-vars", + [0, 2924, 1932, 91, 998, 16790, 9654, 20050, 2062, 6887, 4469, 1167, 21136, 1464], + [1, 2343, 13766], + "code-excerpt", + "path-prefix", + [2, 9480, 13764], + [0, 13776, 13779, 2514, 2487], + "concordance", + "curr", + "ently-unhandled", + [2, 13768, 13769], + "emitter", + "emittery", + "ignore-", + "by-default", + [2, 13773, 13774], + [0, 21141, 21144, 13917, 2571, 3173], + "matcher", + [2, 9477, 1541], + [ + 0, 13614, 1159, 1389, 21146, 1596, 1615, 1177, 21147, 21148, 2141, 2708, 21152, 2759, 26259, 21153, 14133, 3697, + 3758, 705, 4039, 4135, 4389 + ], + "resolve-cwd", + [2, 4250, 594], + [1, 2343, 13783], + [0, 13785, 13787, 13790, 2537], + "supertap", + [0, 3441, 21158, 24987], + "temp-dir", + [0, 2934, 3421, 1192, 1177, 4042, 2026, 1894, 4342, 21163, 1938, 5328, 1895, 1955, 811, 21165, 1881, 816, 21161], + [3, 5328, 14], + [2, 13788, 2190], + [0, 15237, 1669, 2382, 3767, 21167, 1781, 21168, 2090], + "🦄", + [3, 1540, 10], + "yield", + [1, 2343, 13797], + "observable", + "observables", + [0, 13798, 13799, 13800, 34352], + [0, 5540, 1699, 2609, 1209, 3021, 21174, 21175, 4484], + [0, 972, 4870, 4880, 4883, 11322, 21179, 89, 3824, 21180, 91, 6482], + [0, 2144, 1669, 25, 89, 3824, 582, 21182, 7020, 21185, 7020, 21188, 21189], + [1, 2343, 13803], + "webpack-log", + [0, 0, 13806, 13807, 2487], + [2, 3599, 1469], + "ps-node", + [0, 2899, 1177, 2759, 1317, 1311, 1954, 1938, 1958, 1903, 1948, 1970], + [0, 2145, 27, 21195, 2325], + [1, 2343, 13809], + [0, 13810, 13813, 13815, 2537], + [0, 1437, 6473, 4290], + "ieee754", + "jmespath", + [0, 1175, 1178, 1195, 1225, 1268, 1177, 1916, 2022, 1192, 3150, 2924], + "vector", + [0, 17460, 2656, 2924, 1932], + "test-vectors", + [2, 13549, 13816], + "insert-module-globals", + [1, 2343, 13820], + [0, 13821, 13822, 13823, 2537], + [0, 2822], + [0, 1377, 21210, 1596, 2759, 4255, 4389, 4770], + [0, 4745, 21214, 21216], + "memoizee", + "@deque/dot", + [1, 2343, 13844], + "colorjs.io", + "-regex", + "emoji-regex", + "abel", + "grunt-babel", + "revalidator", + "sri-toolbox", + [2, 4149, 1852], + "ytesize", + [2, 2237, 13835], + [2, 6654, 3733], + [2, 1463, 13589], + [2, 1632, 3679], + [3, 8654, 10], + "webdriverjs", + [2, 13840, 13841], + "browser-", + [0, 13845, 13851, 13853, 4139], + [0, 2215, 2859, 21224], + [3, 1566, 14], + "ommits-parser", + [2, 13846, 13847], + "-no-only", + [2, 1951, 13849], + [0, 21226, 13305, 3183, 2899, 3421, 3752, 21228, 4255], + "Accessibility", + [ + 0, 2150, 2090, 6771, 1585, 7204, 2473, 3188, 7148, 7149, 6899, 1781, 3917, 6033, 2473, 6865, 7293, 4453, 7147, + 2585, 6811, 7004, 1862 + ], + [1, 2343, 13855], + [0, 13856, 13858, 13861, 2537], + [0, 3181], + "proxy-", + [0, 4856, 4864, 6503, 4874, 1429, 2151, 2759, 2899, 3421, 1894, 3714, 21237, 4474, 91], + "from-env", + [2, 13857, 13859], + [0, 2150, 6771], + "multi-", + [1, 2343, 13877], + "entry", + "multi-entry", + [2, 812, 13865], + [2, 12621, 3733], + "dev-null", + "data-node", + [2, 1669, 13869], + [2, 11941, 12942], + [3, 6387, 14], + [2, 13872, 6662], + [2, 1160, 11052], + [2, 4049, 13874], + [3, 4048, 16], + [0, 13883, 13884, 13885, 2537], + "ndle-size", + [2, 13876, 13878], + [2, 6528, 3069], + [3, 13134, 15], + [2, 13881, 1149], + [0, 21243, 2151, 3261, 21246], + [0, 4864, 6507, 2899, 1863, 4085, 1362, 4706, 3760], + [0, 1862, 2150, 2090, 6771], + [1, 2343, 13887], + [0, 0, 13893, 13900, 2523], + [3, 1391, 11], + [2, 13888, 3171], + "edm-parser", + [2, 2842, 13890], + "md5.js", + [0, 640], + "batchflow", + "factor-bundle", + "ink-docstrap", + "karma-e", + "nv-preprocessor", + [2, 13897, 13898], + [0, 2154, 16718], + "storage", + [1, 2343, 13903], + [0, 13904, 13905, 2514, 2443], + [0, 3188, 4039, 2713, 2215], + [0, 4384, 4255], + [1, 2343, 13907], + [0, 13908, 0, 13910, 4139], + [0, 4740, 3923], + "output-", + [0, 2156, 5576, 16410], + [1, 2343, 13915], + "file-sync", + [2, 13909, 13912], + "v8flags", + [0, 0, 13916, 13918, 2523], + [0, 13614, 1158, 1159, 1177, 3421, 4103, 4389], + "es-set-tostringtag", + [0, 3046, 1213, 1925, 1460, 5746, 7298], + [1, 2343, 13926], + "babel-co", + "de-frame", + [2, 13920, 13921], + [3, 1184, 12], + [2, 13923, 591], + "babel-m", + [0, 0, 13929, 13931, 2537], + "essages", + [2, 13925, 13927], + [ + 0, 48, 53, 68, 78, 5712, 87, 92, 192, 5467, 21276, 5583, 816, 6373, 21279, 21280, 21281, 21285, 19464, 21287, + 21288, 1195, 1177, 1895, 2675, 21290, 1894, 4005, 4042, 4057, 4257, 4072, 91, 1984, 19469, 21294 + ], + [2, 1185, 5190], + [0, 2163, 7193, 21296], + [1, 2343, 13933], + [0, 0, 13934, 13935, 2443], + [0, 19344, 5366, 1009, 1011, 842, 1317, 1177, 1903, 1915, 1938, 1953, 1958, 2675, 4493], + [0, 17218, 5122, 27, 36, 21302, 5995, 5130], + [2, 1884, 1172], + [1, 2343, 13938], + [0, 0, 0, 13939, 4139], + [0, 2163, 7193, 7131, 21307, 21309], + [1, 2343, 13941], + [0, 13943, 13944, 13945, 2487], + "trim-right", + [0, 21315], + [0, 1149, 2228, 21317, 2240, 2273, 2277, 4039, 1899], + [0, 2282, 2070], + [1, 2343, 13947], + [0, 0, 13949, 2514, 2487], + "try-resolve", + [0, 91, 4874], + [1, 2343, 13951], + [0, 13952, 13953, 13954, 2523], + [0, 1437, 4761, 4716, 4756], + [0, 2228, 2239, 21329, 21328, 3006, 4547, 2273, 2290], + [0, 4756, 8632, 5130, 4627, 6400, 1896, 1098], + [1, 2343, 13956], + [0, 13957, 13958, 13959, 2523], + [0, 1437, 4207, 4761, 1209, 16442, 4756, 4547], + [0, 3261, 1797, 1429, 1370, 2899, 4193, 1177, 3188, 1362, 2759, 1525, 4196, 1615, 2820, 1431, 3938, 3202], + [ + 0, 4756, 1098, 2323, 21337, 21339, 1367, 1103, 21340, 2278, 695, 5194, 1172, 21341, 91, 1509, 2437, 5357, 2924, + 1177 + ], + [1, 2343, 13962], + [2, 1262, 1192], + [0, 13963, 13964, 13965, 2537], + [0, 2212, 2070, 4761, 1541, 1209, 1474, 21350, 21348, 4756], + [0, 1797, 1177, 2765, 2151, 21329, 21328, 1938, 21352], + [0, 4756, 8632, 4967, 1896, 2171, 4627, 13017, 21354], + [1, 2343, 13967], + [0, 0, 13968, 13969, 2523], + [0, 4874, 1177, 1895, 1955, 1958, 1894, 4384, 91], + [0, 4446, 21360, 6925], + [3, 13725, 15], + [1, 2343, 13972], + [0, 0, 13973, 13974, 2399], + [0, 5536, 4874, 16480, 26265, 1894, 4172, 21365, 91, 1984], + [0, 5701, 1179, 7253, 21367, 21369, 6564, 3053, 6695], + [1, 2343, 13976], + [0, 0, 13977, 2514, 2443], + [ + 0, 48, 53, 87, 92, 6061, 6063, 16608, 5087, 4874, 1009, 1011, 21377, 21380, 1178, 1193, 1195, 19254, 1177, 1895, + 1915, 1922, 1938, 1955, 1959, 1961, 1966, 1982, 2675, 21385, 1192, 2990, 1894, 4039, 4131, 21388, 91, 2924, 4677 + ], + [1, 2343, 13979], + [0, 0, 13986, 2514, 2537], + [3, 1235, 24], + "xport-extensions", + [2, 13980, 13981], + [2, 1262, 3696], + [3, 1566, 13], + [2, 13984, 2289], + [0, 21393, 21395, 21396, 21397, 3421], + ".exports", + [2, 1237, 13987], + [1, 2343, 13990], + [0, 0, 8002, 13991, 2523], + [0, 1709, 2100, 139, 3560, 6058, 21402, 21404, 1544, 3445, 11995, 21405, 20529, 3778, 21406, 21407], + [1, 2343, 13993], + [0, 0, 13999, 14001, 2537], + "-js-shims", + [2, 1259, 13994], + "place-", + [2, 13996, 3427], + [2, 1252, 13997], + [0, 4874, 1702, 1906], + "dynamic", + [0, 21413, 2184, 20061, 5614, 1398, 3101, 3729, 3917], + [1, 2343, 14003], + [0, 14004, 14005, 14006, 34352], + [0, 21418, 2753], + [0, 4874, 1166, 21420, 21423, 20925, 4481, 1906], + [0, 3038, 3101, 1862, 5614, 1871, 2585, 1398, 3917, 2382, 6613, 7017, 7255, 3048, 5614], + [1, 2343, 14008], + [0, 14009, 0, 14010, 2537], + [0, 21430], + [0, 2191, 3038, 91, 2190, 21432], + "@umijs/test", + [2, 1262, 12445], + [3, 3909, 10], + [2, 14013, 5403], + [1, 2343, 14016], + [0, 0, 14017, 14018, 2523], + [0, 4874, 1009, 1011, 17930, 1177, 21439, 1895, 1955, 17931, 21442, 1894, 17934, 4508, 91, 17936], + [0, 21444, 21447, 21450, 21452, 21455, 21456, 2192, 21457, 21458, 16718, 21459, 202, 5490, 553, 91], + [1, 2343, 14026], + "nyc-config", + [2, 3614, 14020], + [2, 8696, 14021], + "instrument", + [2, 11936, 14023], + [2, 1382, 6521], + [0, 14028, 14030, 14031, 4139], + "pmock", + [0, 1149, 2205, 2151, 1525, 18145, 2102, 21466], + [2, 14023, 5218], + [0, 4449, 1429, 2899, 4193, 1177, 21468, 21470], + [0, 3358, 2193, 2195], + [1, 2343, 14033], + [0, 14036, 14043, 14046, 2523], + [2, 9477, 1213], + [2, 4013, 14034], + [0, 7076, 10420, 21476, 21477, 3505, 16142], + "-bind", + [2, 3046, 14037], + [2, 69, 14038], + [3, 8232, 20], + [2, 14040, 6859], + [2, 5316, 7162], + [ + 0, 1178, 1429, 21480, 1503, 1527, 1652, 1177, 21482, 1922, 1938, 1951, 2899, 3203, 3421, 3752, 4131, 4193, 4196, + 21486, 4585 + ], + "ompat", + "lodash-compat", + [0, 3358, 582, 1564], + "cherry-pick", + [1, 2343, 14049], + [0, 0, 14050, 14051, 4139], + [ + 0, 13693, 87, 21495, 21498, 21499, 8850, 816, 6373, 10615, 10895, 1429, 1177, 1903, 1938, 1954, 1958, 2297, + 2878, 2881, 2886, 2895, 2900, 2904, 2910, 2912, 2918, 18260, 2899, 4042, 6390, 2278, 4193, 4196 + ], + [0, 2195, 10039, 4967, 4627], + [2, 13920, 686], + [2, 2103, 14052], + [1, 2343, 14055], + [0, 14058, 14060, 2514, 2537], + "resolver", + "rename", + [0, 3181, 21505, 21507], + "mapping", + [0, 4874, 668, 3144, 3188, 1894, 4039, 4384, 4483, 4508], + [1, 2343, 14062], + [0, 14063, 14066, 14067, 34352], + [0, 2743], + "ester", + [2, 12187, 14064], + [0, 1177, 1889, 2022, 2899, 3421], + [0, 2070, 5933, 4301, 3403, 21519, 7204, 1299, 21520], + [1, 2343, 14069], + [0, 14070, 9264, 2514, 4139], + [0, 21526, 3729], + [1, 2343, 14072], + [0, 0, 14073, 14074, 2537], + [0, 22839, 1166, 1448, 1939, 2182, 26260, 17269, 3401, 3471, 3758, 4167, 4481, 4507, 1906], + [0, 2203, 2202, 7014, 6436, 6437, 2272, 1177, 6640], + [1, 2343, 14081], + "remap-", + [2, 14076, 1223], + [2, 1185, 14077], + [3, 13663, 26], + [2, 14079, 5746], + [0, 14082, 14083, 14084, 4139], + [0, 20033, 2071, 2687, 17450, 4207, 20789], + [0, 4874, 1166, 1317, 21539, 4400, 4481, 1906], + [ + 0, 12101, 4552, 17455, 18132, 1586, 17462, 7131, 2100, 21541, 17453, 2150, 2070, 21543, 21544, 17461, 3529, + 13777, 3181, 3250, 15294, 18104, 13017, 11601, 100, 614, 6435, 21520, 21545, 1862, 16774, 3358 + ], + [3, 1184, 14], + [2, 14085, 5789], + [2, 1218, 1229], + [1, 2343, 14089], + [0, 14090, 14091, 14094, 2443], + [0, 1676, 1615, 21552, 21550], + [0, 1149], + [3, 1217, 21], + [2, 14092, 5610], + [0, 11812, 21555, 158, 21556, 2692, 2206, 6270, 17539, 3797], + [1, 2343, 14096], + [0, 14097, 14098, 14100, 2537], + [0, 3310, 14231, 4484], + [0, 4874, 5542, 1009, 1011, 1177, 21564, 1938, 1953, 1958, 1894, 4508, 91], + "chunk-data", + [ + 0, 21566, 21567, 21568, 15473, 17623, 21571, 5194, 10906, 2207, 21572, 21573, 14692, 21574, 6355, 21576, 21577, + 21578, 21579, 21580, 21581, 21582, 21583, 5995, 21584, 21585, 21586, 21587 + ], + [1, 2343, 14102], + [0, 14103, 14105, 14108, 34352], + [0, 16485, 21668], + "strict-", + [0, 107, 4874, 1009, 1011, 21594, 1177, 1881, 1883, 1938, 21597, 20917, 3297, 1531, 91, 15822, 1984], + "strict-mode", + [2, 1226, 14106], + [0, 21600, 21603, 1885, 21604, 21599, 21605, 21606, 5592, 2211, 21607, 21608, 21611], + [2, 1218, 77], + [1, 2343, 14111], + [0, 14112, 14113, 14114, 4139], + [0, 20917, 21616], + [ + 0, 21619, 6503, 21620, 21621, 4874, 21623, 15600, 9725, 11305, 6513, 6520, 21625, 21626, 1414, 1503, 1610, 2020, + 20914, 2321, 21627, 1776, 29342, 29343, 21630, 2899, 15221, 3275, 3297, 3416, 3445, 3479, 6332, 1894, 3752, + 4039, 4153, 4193, 4449, 91, 4748 + ], + [0, 1885, 5592, 21632, 5576, 21633], + [1, 2343, 14116], + [0, 14117, 14118, 14119, 2523], + [0, 21642, 21651, 21645, 21647, 21650, 21649, 16511, 2928, 21641, 21638, 21639, 4507], + [ + 0, 21662, 13789, 826, 5366, 6494, 4874, 21654, 14731, 16936, 6513, 6515, 1166, 1170, 1317, 1362, 1364, 1414, + 14099, 21656, 21663, 1701, 1702, 2024, 2026, 2139, 13870, 2188, 3297, 3310, 3377, 3477, 21653, 3532, 29457, + 3923, 705, 4193, 21657, 4400, 21659, 4454, 4494, 91, 1906 + ], + [ + 0, 27, 2671, 13333, 3038, 2212, 1002, 12831, 705, 2869, 7085, 7289, 1612, 11995, 11996, 16518, 21665, 27778, + 27408, 21666, 21667, 1170, 4339, 3310, 21668 + ], + [1, 2343, 14124], + "-react-jsx", + [2, 9381, 14121], + [2, 1185, 14122], + [0, 0, 14125, 14126, 2537], + [ + 0, 2323, 4207, 4042, 1637, 3471, 3561, 21689, 21681, 3416, 3758, 4320, 53, 1165, 3678, 2650, 21688, 87, 21684, + 21679, 5583, 10615, 6373, 16912 + ], + [0, 21691, 4967, 9204, 1283], + [1, 2343, 14134], + [2, 88, 2124], + [3, 3872, 10], + [2, 14129, 553], + [2, 5237, 14130], + [2, 1199, 14131], + "pkgfiles", + [0, 0, 14135, 14136, 2537], + [0, 2702, 3188, 4039, 4384], + [0, 2150, 1237, 21697, 1153, 21699, 3768, 1851, 2656, 6737, 21700, 21701, 21702, 21703, 21704], + "minification", + [1, 2343, 14140], + "propTypes", + [0, 0, 0, 14141, 4139], + [0, 2220, 21715], + [1, 2343, 14143], + [0, 2513, 14146, 2514, 2523], + [3, 3957, 12], + [2, 14144, 353], + [0, 4856, 6503, 4874, 1429, 2220, 2899, 4039, 4042, 4071, 4232, 21721, 91], + [1, 2343, 14148], + [0, 14149, 0, 2514, 34352], + [0, 5528, 4484], + [1, 2343, 14151], + [0, 14152, 14153, 14154, 4139], + [0, 2822, 20273, 21731, 21732], + [0, 21734, 20269, 1509, 21735, 2053, 2149, 2398, 3183, 2899, 4452, 4597, 6033], + [ + 0, 21738, 1507, 1506, 2382, 1739, 1745, 7682, 21740, 4965, 2149, 9339, 8623, 1179, 2193, 12981, 5284, 5352, 676, + 6671, 1783, 9338, 1644, 57, 7119, 13755, 2947, 1283, 4452, 4745, 7651 + ], + [1, 2343, 14156], + [0, 14165, 14171, 2514, 34352], + "numer", + "ic-separator", + [2, 14157, 14158], + [2, 69, 14159], + [3, 5835, 33], + "mutators", + [2, 14161, 14162], + [3, 10720, 33], + [0, 14393, 21746, 3025, 10420, 3263, 3747], + "atch-binding", + [2, 14164, 14166], + [3, 14160, 25], + "llish-coalescing-operator", + [2, 14168, 14169], + [0, 1364, 21748, 2026, 21749, 2759, 1209, 3183, 3313, 21752], + [1, 2343, 14173], + [0, 14174, 14175, 14176, 2443], + [0, 2021, 2070, 3368, 2822, 2240, 3181, 1672, 2685, 2107, 2015, 21761, 21763, 21759], + [0, 21765, 4431, 21770, 2291, 21768, 2283, 2277], + [0, 5957, 1149, 200, 3178, 2280, 6147, 1209, 2275, 1973, 2907, 2276, 36, 21772, 8632, 7048, 2763, 4990], + [3, 9676, 14], + "heck-", + "es2015-", + "constant", + "constants", + [2, 14179, 14181], + [2, 14178, 14182], + [2, 14177, 14183], + "function-", + "comma", + "commas", + [2, 14185, 14187], + [2, 10038, 14188], + [2, 7174, 14189], + [2, 1218, 14190], + [2, 1236, 5742], + [3, 1235, 40], + "ed-functions", + [2, 14193, 14194], + [2, 1236, 5256], + [3, 14196, 31], + [2, 14197, 5763], + [2, 1236, 5765], + [3, 14199, 31], + [2, 14200, 5770], + [1, 2343, 14225], + "for-of", + [2, 1236, 14203], + [3, 14204, 31], + [2, 14205, 5789], + [2, 1236, 5796], + [3, 1240, 38], + [2, 14208, 5808], + [2, 14208, 4376], + [2, 14208, 5811], + [2, 3425, 4340], + [2, 1236, 14212], + [2, 1236, 5639], + [2, 1236, 5845], + [3, 14215, 31], + [2, 14216, 5849], + [2, 14216, 5851], + [3, 1244, 31], + [2, 14219, 5855], + [2, 5857, 1108], + [2, 1236, 14221], + [3, 13982, 27], + [2, 14223, 5780], + [0, 14228, 14229, 14230, 2523], + "to-chromium", + [2, 1807, 14226], + [0, 2633], + [0, 2228, 2240, 2263, 2247, 2253, 2273, 2277, 2281, 2320, 2258], + [0, 21779, 1098, 1283, 5354, 5614], + "gfsl", + [1, 2343, 14233], + [0, 0, 14234, 14235, 2537], + [0, 2228, 2307, 2239, 2316, 1429], + [0, 21779], + [1, 2343, 14244], + [2, 1262, 2124], + [2, 1249, 5878], + "-source", + [2, 1248, 14239], + [3, 14240, 34], + "elf", + [2, 14241, 14242], + [0, 14245, 14246, 14247, 34352], + [0, 1149, 1389, 21791, 2070, 1209, 814, 4650], + [0, 2228, 2240, 2247, 2273, 2899, 4193], + [0, 21779, 1389, 2228], + [3, 5700, 31], + [2, 14248, 3164], + [1, 2343, 14251], + [0, 14252, 14253, 14235, 2487], + [0, 4135], + [0, 2228, 2234, 2247, 2273, 2277, 2285, 2307, 3006], + [3, 1233, 24], + "o-expressions", + [2, 14254, 14255], + [2, 1226, 14038], + [1, 2343, 14259], + [0, 14260, 14261, 2514, 2537], + [0, 3368, 21804, 13914, 2727, 21759], + [0, 2228, 2273], + [3, 1230, 29], + "or-call", + [2, 13565, 14263], + [2, 14262, 14264], + [1, 2343, 14267], + [0, 14268, 14269, 14271, 2523], + [0, 1149, 1144, 21810, 2709], + [0, 1906, 2228, 3363, 2240, 1615, 3505, 21814, 4351, 2316, 2247, 2283], + [3, 1233, 33], + [0, 21779, 13792, 12804, 21820, 6707, 6887, 3514, 6681, 2062, 21821], + [1, 2343, 14273], + [0, 14274, 14277, 14278, 2399], + [0, 1149, 4039], + [3, 1225, 29], + [2, 14275, 5747], + [0, 2228, 21468, 2273, 2271, 2277], + [0, 21779, 4050, 4051, 7293, 6865, 1700, 6790, 17459, 4039], + [1, 2343, 14280], + [0, 14281, 14283, 14284, 4139], + [0, 1149, 21834, 1664, 21420, 4449, 4707], + "home-or-tmp", + [0, 2228, 2240, 2247, 2271, 2273, 2277, 2314], + [0, 21779, 21837, 4329, 2278, 1623, 7234, 7121, 590], + [1, 2343, 14286], + [0, 14287, 14288, 14235, 2537], + [0, 1437, 4227], + [0, 2228, 2247, 2273, 2271, 2277], + [1, 2343, 14290], + [0, 14291, 14292, 14293, 2537], + [0, 3445, 1149, 3237, 1544, 13399, 4150, 4151, 16511, 21847], + [0, 2228, 2273, 2271, 2277], + [0, 21779, 36, 1544, 27], + [1, 2343, 14295], + [0, 14296, 14297, 14235, 2537], + [0, 1437, 21855], + [0, 2228, 2240, 2247, 2271, 2273, 2277], + [1, 2343, 14299], + [0, 14300, 14302, 14303, 2523], + [0, 1437, 21861, 1209, 4300], + "esutils", + [0, 2228, 2247, 2271, 2273, 2277], + [0, 21779, 1623, 671, 21861], + [1, 2343, 14305], + [0, 14306, 14302, 14312, 4139], + [0, 1437, 1462, 21867], + "nv-inline", + [2, 4690, 14307], + [2, 1226, 14308], + "zipobject", + [2, 3024, 14310], + [0, 21779, 21869, 1623, 590, 592, 5376, 3178, 15215], + [1, 2343, 14314], + [0, 14315, 14288, 14321, 2537], + [0, 1437, 3714, 2633], + [3, 14257, 24], + [2, 9428, 5238], + [2, 14316, 14317], + "9.0.0", + [2, 5857, 14319], + [0, 21779, 1936, 2262, 3178, 15215, 6707], + [1, 2343, 14323], + [0, 14324, 14325, 14326, 4139], + [0, 1437, 2267, 3478, 3545, 3714, 18045, 18047, 18050, 18051], + [0, 1166, 1701, 2228, 1906], + [0, 21779, 15215, 20639, 158, 11807, 21881, 20637, 3178, 18048, 8221], + [1, 2343, 14328], + [0, 14329, 14261, 2514, 2523], + [0, 17523], + [1, 2343, 14331], + [0, 14332, 14335, 14235, 4139], + [0, 1437, 21890, 2272], + "@purtuga/esm-webpack-plugin", + [2, 4807, 1155], + [0, 2228, 2271, 2277], + "browserstack", + [2, 13283, 14336], + [2, 13283, 3199], + "otpauth", + [1, 2343, 14341], + [0, 14342, 14345, 14235, 2487], + [0, 695, 1149, 1437, 1209], + "-as-a-service", + [2, 5995, 14343], + [0, 2228, 2247, 2273, 21898, 2271, 2277], + [1, 2343, 14347], + [0, 14348, 14349, 14350, 2487], + [0, 21903], + [0, 2228, 2247, 2271, 2273, 4384], + [0, 21779, 2276, 1973, 8791], + [1, 2343, 14353], + [2, 2235, 1283], + [0, 14358, 14302, 14359, 4139], + "codec", + "decoder", + "encoder", + "base64", + [0, 1149, 1437, 1615, 1664, 4707], + [0, 21779, 4329, 2278, 1623, 7234, 7121, 590], + [1, 2343, 14361], + [0, 14362, 14288, 14235, 2537], + [0, 1437, 21867, 21915, 4535], + [1, 2343, 14364], + [0, 14365, 14366, 14367, 2487], + [0, 2164, 1149, 1209, 4438], + [0, 2228, 2240, 2293, 4547, 2273, 2271, 2277], + [0, 21779, 2282, 3000], + [1, 2343, 14369], + [0, 14370, 14371, 14376, 2537], + [0, 1437, 1537, 1566, 3545, 3760], + [0, 2228, 2239, 2240, 2247, 2258, 2273, 2277, 2290, 21929, 21930, 2293, 2307, 3006], + "basic", + "orization", + [2, 1303, 14373], + "basicauth", + [0, 2228, 21779, 1566, 16094, 13729, 3073], + [1, 2343, 14378], + [0, 14379, 14381, 14382, 2399], + [0, 1437, 13985, 3545], + [2, 6915, 5697], + [0, 2228, 2239, 2240, 2247, 2273, 2277, 21929, 21942, 21930, 2293, 2307, 3006], + [0, 2228, 21779, 13985, 2195, 21944, 3979, 21945, 1566, 16094, 13729, 3073], + [1, 2343, 14384], + [0, 14385, 14389, 14390, 2523], + [0, 1437, 1177], + "tructure", + "ministructure", + "orange sms", + [0, 442, 2228, 2240, 2314], + [0, 21779, 1177, 671, 2649, 11937], + [1, 2343, 14392], + [0, 14394, 14395, 14396, 2537], + "@mapbox/node-pre-gyp", + [0, 21890, 2292, 1209, 21956], + [0, 2228, 2273, 2277, 3006, 4436], + [0, 21779, 2292, 19271, 16790], + [1, 2343, 14398], + [0, 14399, 14400, 14401, 4139], + [0, 1615, 1776], + [0, 2228, 2247, 2277, 2291, 13896, 3006], + [0, 21779, 2228, 1745, 2295, 1776, 18011], + [1, 2343, 14403], + [0, 6203, 14409, 14410, 2443], + "utfx", + "testjs", + "metascript", + "closure", + [2, 14407, 4643], + [ + 0, 192, 21970, 5467, 6061, 6063, 16608, 1177, 1903, 1938, 1954, 1958, 1970, 2025, 2228, 2239, 2283, 2285, 2290, + 2291, 2307, 2675, 2297, 2881, 2895, 2900, 3006, 2899, 4131 + ], + [0, 21779, 2297, 2228, 1973, 2275, 8791, 21972], + [1, 2343, 14412], + [0, 14414, 14415, 14420, 2399], + "pomelo-logger", + [0, 21890, 3188], + [0, 1429, 1506, 2228, 2240, 21980, 2247, 2258, 2273, 21929, 21982, 21930, 21984, 2899, 4039], + "di", + "IoC", + "AOP", + "injection", + [0, 21779, 2899, 1973], + "consistent", + "hot reload", + [2, 6399, 5995], + [1, 2343, 14434], + "able codes", + [2, 6578, 14425], + [3, 7191, 11], + [2, 14427, 14419], + "hronous script loading", + [2, 1149, 14429], + "magic", + ", self-described javaScript objects", + [2, 14431, 14432], + [0, 14274, 14435, 14436, 2399], + [0, 1429, 2228, 21991, 2240, 2247, 2273, 2283, 3203, 4449, 4727], + [0, 1586, 2228, 21779, 2301], + [1, 2343, 14439], + "beautify", + [0, 14440, 14441, 14442, 2443], + [0, 4135, 6472, 4707], + [0, 1429, 2240, 2273, 2283, 2300, 22000, 22002, 3006, 2899, 3752, 4436], + [0, 21779, 9044, 22005, 15844, 22008, 22009, 6667, 22011, 1851, 4649, 13728], + "art-near-room-catch", + "blanket-line", + "born-greatly-explain3", + "bring-water-silence", + "brush-bigger-afternoon0", + "e-meet-war", + [2, 11308, 14448], + [2, 6922, 14449], + "compare-", + "breeze-mad2", + [2, 14451, 14452], + "did-", + "strai", + "ght-sister-sail", + [2, 14455, 14456], + [2, 14454, 14457], + "excitement-tonight-dead", + "gain-pleasant-prepare", + "industrial-public-immediately-until", + "is-str", + "aight-web3-attack", + [2, 14462, 14463], + "known-", + "wet-thirty-gave", + [2, 14465, 14466], + "-private-thee6", + [2, 13682, 14468], + [1, 2343, 14493], + "mainly-cent", + "ain-quarter-sit8", + [2, 2944, 14472], + "mouse-bat-web3-present", + "need", + "s-supper-anything", + [2, 14475, 14476], + "percent-impossible-score", + "rocket-location-calm-valley", + "seldom-fire-web3-running", + "shad", + "e-swim-shells1", + [2, 14481, 14482], + "spider-melted-chemical", + "stre", + "tch-onto-driver7", + [2, 14485, 14486], + "dream-supply5", + [2, 11072, 14488], + "-invented-girl-jungle", + [2, 4990, 14490], + "we-hunt-process", + [0, 0, 14494, 2514, 2399], + [0, 2228, 2239], + "automobile7", + [2, 4654, 14495], + "whether-dangerous", + [1, 2343, 14499], + [0, 0, 14500, 14501, 2523], + [0, 2228, 2240, 2247, 2277, 2278, 1906], + [0, 21779, 1623, 2278, 4329, 590, 7234, 4358, 22022], + "ansicolors", + "global-", + [2, 14503, 6666], + [2, 2103, 14504], + [2, 2687, 11601], + [3, 5510, 9], + [2, 14507, 3101], + "script-", + "inject", + "injector", + [2, 14509, 14511], + [1, 2343, 14516], + "dotpathlookup", + "jsl", + [0, 14519, 14520, 14521, 2537], + "httpserver", + [2, 2869, 14517], + [0, 1512, 1209, 3760, 22027, 22031, 12826], + [0, 2228, 2256, 2273, 2283, 2293, 22035, 3003, 1698, 20001], + [0, 21779, 2228, 12826, 1973, 2765, 2899, 2907, 22037], + [1, 2343, 14523], + [0, 14524, 14525, 14526, 2443], + [0, 1437, 3404, 4294], + [0, 2228, 2240, 1906], + [0, 21779, 4166, 1523, 8429, 2978, 1614, 1451, 3729, 200], + "docdown", + [1, 2343, 14530], + "qunit-extras", + [0, 7923, 14531, 14420, 34352], + [0, 2228, 2273, 2899], + [1, 2343, 14533], + [0, 14534, 14535, 14536, 2443], + [0, 1149, 22054, 22057, 4545, 22058], + [0, 1177, 22062, 22064, 22066, 22068, 22071, 22072, 2228, 2240, 2302, 2899, 4039, 4165], + [0, 2228, 21779, 22074, 158, 22075, 1623, 22057, 16697], + [1, 2343, 14538], + [0, 14539, 14540, 14541, 2537], + [0, 1437, 1676, 1209, 3505], + [0, 2228, 3188, 4039, 2240, 2293, 22081, 2273], + [0, 21779, 2319, 8635, 1936, 1623, 6707], + [1, 2343, 14543], + [0, 14549, 14551, 14565, 2523], + "@beyond-js/specifier-parser", + [3, 14544, 11], + [2, 14545, 2150], + "bee", + [2, 14545, 14547], + [0, 442, 1009, 1011, 1437, 1177, 1895, 1953, 1955, 2020, 2720, 2856, 3157, 3275, 1894, 4523, 4728], + "tml", + [ + 0, 22088, 21122, 5601, 4864, 4866, 22089, 6503, 21621, 4874, 6513, 6520, 22092, 1414, 1615, 2151, 22093, 21627, + 2899, 4193, 4449, 91 + ], + "ansi-to-html", + "concat-", + "maps", + "-sourcemaps", + [2, 5056, 14555], + [2, 14553, 14556], + "json-format", + [3, 6477, 9], + "ackage-", + "ackage-path", + [2, 14559, 14561], + "uimport", + [2, 14503, 5260], + [0, 91, 9654, 4525, 1885], + "universal", + " javascript", + [2, 14566, 14567], + "universal ", + [2, 14569, 91], + [3, 2758, 10], + [2, 14571, 14567], + [3, 14572, 11], + [2, 14573, 91], + "sigle page", + "spa", + "modul", + "ar development", + [2, 14577, 14578], + [3, 11615, 13], + " frontend", + [2, 3166, 14581], + "micros", + [2, 14583, 8920], + "micro ", + "services", + [2, 14585, 14586], + "hot ", + " replacement", + [2, 1237, 14589], + [2, 14588, 14590], + "ssr", + " side rendering", + [2, 36, 14593], + " packager", + [2, 91, 14595], + "JAMStack", + [1, 2343, 14599], + [0, 0, 14610, 14611, 2523], + "real time", + [2, 7519, 5130], + "ssr react framework", + [2, 8589, 5130], + "ssr ", + [2, 14604, 14603], + " framework", + [2, 3709, 14606], + [2, 14604, 14607], + "websockets", + [0, 22099, 8719, 842, 16145, 22100, 5087, 4874, 22102, 9240, 1177, 1192, 3313, 1894, 4039, 4342, 91], + [0, 2322, 5122, 5130, 6710, 27, 5592, 5995], + [1, 2343, 14613], + [0, 14618, 14623, 14624, 2487], + "check-", + "check-types", + "hoopy", + "tryer", + [0, 22110, 21681, 22109, 4600], + "please-", + "release-me", + [2, 14619, 14620], + "spooks", + [0, 1177, 1889, 1954, 2022, 3188, 2899, 3421, 4039], + [0, 6147, 3101, 623, 7048, 4990, 14932, 13441, 22114, 12804, 22115], + [1, 2343, 14627], + "streamify", + [0, 14630, 14631, 14632, 2537], + "serialise", + [3, 14430, 12], + [0, 2367, 22122, 2409, 2835, 3067, 3102, 19984, 4431], + [0, 4597], + [0, 18444, 2323, 1098, 12074, 6113, 22126, 22127], + [1, 2343, 14645], + "arbitrary", + "precision", + "arithmetic", + "big", + "decimal", + "float", + "biginteger", + "bigdecimal", + [3, 1325, 9], + "bigint", + "bignum", + [0, 14646, 14647, 14648, 2537], + [0, 18473, 692, 2012, 2390, 2494, 22133, 2543, 3188, 2072, 3730, 18528, 4039, 4135, 1241, 4597, 4600], + [0, 2348, 2899], + [0, 18444, 16179, 4166, 22137, 1804, 2195], + "uri-", + [1, 2343, 14653], + "uri-to-path", + [2, 2093, 14651], + [0, 14656, 14657, 14658, 2537], + "gyp", + "c++", + [0, 1165, 2476, 3561, 4606], + [0, 1166, 2510, 3477, 4597, 1906], + [0, 18444, 1165, 3561, 1623, 3665, 22145, 5376, 4358, 22147], + [1, 2343, 14661], + "@noble/hashes", + [0, 14662, 14663, 14664, 2537], + [0, 7709, 1104, 1443, 2061, 22153, 3173, 3544, 4597], + [0, 1429, 22157, 1177, 2323, 2494, 2899, 1894], + [0, 18444, 7200, 6949, 20001], + [1, 2343, 14668], + "@antv/", + [2, 14666, 4627], + [0, 14670, 0, 14677, 2537], + "@antv/g2", + [0, 22167, 22168, 2012, 3171, 3730, 3768, 22170, 4597, 4600, 4747], + "@antv/g2plot", + "@antv/util", + "@juggle/resize-observer", + "d3-color", + "conciler", + [2, 3877, 14675], + [0, 18444, 13531, 20614, 13901], + "data-", + "data-set", + [2, 14666, 14679], + [3, 87, 15], + [2, 14681, 1266], + "backgrounds", + [2, 10818, 14683], + [3, 10827, 19], + "fo", + [2, 14685, 14686], + "knobs", + [2, 10818, 14688], + "options", + [2, 10818, 14690], + "fabric", + "@umijs/fabric", + "@welldone-software/why-did-you-render", + "aphrodite", + [3, 13080, 20], + [2, 14696, 3897], + [2, 14696, 8221], + "bx-jest-electron", + [3, 4325, 12], + [2, 6996, 4408], + [2, 14700, 14701], + [1, 2343, 14704], + [0, 14716, 14722, 14724, 2487], + "-deploy", + [2, 7204, 14705], + [2, 10617, 14706], + [2, 5651, 2091], + "moment-", + "jalaali", + [2, 14709, 14710], + "react-wi", + "th-styles-interface-aphrodite", + [2, 14712, 14713], + [3, 14714, 28], + [0, 4431, 4002, 3544, 4606], + "mpiler", + "css-compiler", + [2, 14715, 14718], + "-diff", + [2, 8745, 14720], + [0, 1906, 2899, 4597, 3697, 53, 2510, 5761, 5756, 5743], + "g2", + [0, 18444, 1172, 5198, 6778, 7056, 7192, 22179, 22180, 5341, 5061, 22181, 5284, 4643], + [1, 2343, 14726], + [0, 14727, 14729, 14732, 2523], + [0, 2476], + [3, 4808, 10], + [0, 1166, 2323, 3477, 4597, 1906], + "dable-stream", + [2, 14728, 14730], + [0, 18444, 4295, 1412, 4327, 3126, 4577, 22188, 22189, 22190], + [1, 2343, 14734], + [0, 14735, 14737, 14740, 2537], + [0, 1104, 1370, 2061, 2720, 3544, 4431, 4597, 4647], + "bun-types", + [0, 1429, 2012, 22198, 2436, 2463, 2272, 2899, 4039, 4193, 4196, 4278], + "falafel", + "fore", + [0, 18444, 1370], + "foreach", + [1, 2343, 14746], + "coffee-", + [2, 14743, 89], + "save", + [0, 14749, 14750, 14751, 2523], + "save-license", + [2, 4534, 14747], + [0, 1389, 2541, 1391, 3923, 4431], + [0, 2899, 1429, 15052], + [0, 18444, 17461, 1389], + [1, 2343, 14753], + [0, 14754, 14758, 14760, 2537], + [0, 4431], + "curses", + "tui", + "tput", + [0, 2899, 4597], + "terminfo", + [0, 2323, 18444], + "termcap", + [1, 2343, 14763], + [0, 14764, 14631, 14765, 2399], + [0, 22217, 3544, 22218, 4135, 4431], + [0, 2323, 15208, 4135, 18444, 15525, 22220, 22222, 22223], + [1, 2343, 14767], + [0, 14771, 0, 14772, 4139], + "ansi-term", + "drawille-canvas-blessed-contrib", + "map-canvas", + [0, 97, 22229, 1593, 22230, 3544, 4431, 4597], + [0, 18444, 2323, 2325], + "-terminal", + [2, 3127, 14773], + [2, 3149, 7046], + "picture-tuber", + "sparkline", + [1, 2343, 14779], + [0, 14782, 14786, 14787, 2537], + "term-canvas", + "x256", + [0, 4431, 3032], + "@types/bl", + "essed", + [2, 14783, 14784], + [0, 2899, 4597, 4170], + [0, 18444], + [1, 2343, 14789], + [0, 14790, 14791, 14792, 34352], + [0, 22246, 2476, 4453], + [0, 1166, 1437, 1700, 2089, 2188, 2323, 4597, 1906], + [0, 18444, 2090, 1586, 22249, 2301, 22251, 22253, 15795, 6901, 22254, 4262, 2325, 16077, 22255], + [1, 2343, 14794], + [0, 14795, 7878, 14796, 2487], + [0, 2061, 3544, 4039, 4431, 4597], + [0, 18444, 4050, 7293, 6865], + [1, 2343, 14798], + [0, 14799, 14800, 14801, 2487], + [0, 1462, 3544, 4431, 4606], + [0, 1429, 21480, 1596, 2026, 2061, 2323, 2367, 2494, 2504, 2510, 2899, 3421, 4597], + [0, 1623, 4050, 3178, 2280, 1462, 2458, 2459, 2361, 18444, 17461], + [1, 2343, 14803], + [0, 14804, 14805, 14787, 2399], + [0, 1509, 3544, 4002, 4431, 4606], + [0, 2510, 2899, 4170, 4597], + [1, 2343, 14807], + [0, 14808, 14809, 14810, 4139], + [0, 2541, 4431, 4707], + [0, 1596, 1700, 2323, 2436, 2444, 2447, 2455, 2463, 2685, 22280, 3102, 2899, 4170], + [0, 2323, 18444, 21837, 4329, 2278, 1623, 7234, 7121, 590], + [1, 2343, 14812], + [0, 14813, 14814, 14787, 2537], + [0, 4597, 4431, 14557], + [0, 2323, 2899, 4170, 2759, 16584, 4278, 2510, 3202], + [1, 2343, 14816], + [0, 14817, 14818, 14819, 2537], + [0, 3032, 22291, 3544, 22292, 22293, 22296, 4431, 4597], + [0, 1429, 2899], + [0, 18444, 5614, 1623, 1204, 1698, 134], + [1, 2343, 14821], + [0, 14822, 14818, 14823, 34352], + [0, 4431, 2541, 2720, 1687], + [0, 18444, 8635, 22303, 22304, 8622, 8620, 22306], + "loop", + [1, 2343, 14826], + [0, 14827, 14828, 14831, 2537], + [0, 710, 1544, 4438, 2061, 3102, 1104, 4150, 4151, 21847], + [0, 2323, 2899, 4342, 2515, 1506], + "baconjs", + "kefir", + [0, 17461, 1544, 3000, 22313, 36], + [3, 3736, 10], + [3, 3736, 14], + "deferred", + "deferreds", + "future", + " control", + "flow control", + "dsl", + [2, 8553, 6072], + [1, 2343, 14842], + [0, 14843, 14844, 14845, 2537], + [0, 4431, 3544], + [0, 2323, 1192, 1894, 21482], + [0, 18444, 1585, 2323], + "BN", + "Big number", + "BigNum", + "Modulo", + "Montgomery", + [1, 2343, 14852], + [0, 14853, 14854, 14857, 2537], + [0, 1104, 22324, 2061, 3544, 4431], + [0, 2272, 2899, 4597], + "unpipe", + "destr", + [0, 18444, 1623, 22324, 671, 9654, 7121], + "destroy", + [1, 2343, 14860], + [0, 14861, 14862, 14863, 2537], + [0, 4597, 21861, 22331, 4431, 2061, 3544], + [0, 3421, 2899, 4193, 1177, 4039, 4170, 1596, 22333, 22334, 1958, 1903, 1970, 1900], + [0, 21861, 18444], + [2, 1601, 1851], + [1, 2343, 14866], + [0, 14867, 14870, 14875, 2537], + [0, 1637, 16136, 3544, 3427, 4606], + "-jsdoc-theme", + [2, 1365, 14868], + [0, 4389, 4597, 4387, 2510], + "postgre", + "sql", + "postgresql", + "datamapper", + [0, 1637, 3178, 14137, 16918, 16919, 1623, 18444, 3561], + [1, 2343, 14878], + "active record", + [0, 14879, 14880, 14881, 2537], + [0, 16858, 3544, 4606], + [0, 4389, 4597, 4387], + [0, 18444, 3178, 1623], + [1, 2343, 14883], + [0, 14884, 14885, 14886, 2523], + [0, 3544, 4431, 20992], + [0, 2272, 3760, 4170, 4597], + [0, 18444, 2382, 1781, 2323], + [1, 2343, 14888], + [0, 14889, 14890, 14891, 34352], + [0, 1177, 2061, 3544], + [0, 2323, 2899, 4597, 4170, 2759, 1178, 22360, 22363], + [0, 18444, 1177, 2323, 2656, 22365, 4354, 4225, 1501, 4525, 676, 5284, 5957, 671, 1932], + "mincer", + [1, 2343, 14895], + "eyeglass-module", + [0, 14896, 14897, 14898, 4139], + [0, 2856, 4597, 2051, 22372, 4431, 3544, 1537, 22371], + [0, 2323, 2899, 4170, 2759, 1783], + [0, 18444, 2090, 2385, 4068, 2323, 1932], + [1, 2343, 14900], + [0, 14901, 14902, 14905, 2487], + [0, 4207, 3249, 3544, 22379, 22382], + [0, 1906, 1166, 2323, 4597, 3477], + "align", + "ansi-align", + [0, 18444, 7131, 2687, 2090, 1586, 3529, 3181, 2070, 21543, 4597], + [1, 2343, 14909], + "boxes", + "border", + [0, 14910, 14631, 14911, 2523], + [0, 3544, 4431], + [0, 18444, 19991, 4237, 20050, 22390, 22392, 3053, 2323], + [1, 2343, 14913], + [0, 14843, 14914, 14915, 2537], + [0, 2323, 2899, 4597, 4170, 3697, 1879], + [0, 18444, 2323, 3033, 10903, 3403], + [1, 2343, 14917], + [0, 14918, 7923, 14919, 2537], + [0, 22402, 4001, 21035, 4431], + [0, 14438, 1671, 4525, 2323, 18444, 1783, 5980, 1932, 22405, 3721, 4001], + [1, 2343, 14921], + [0, 14925, 14926, 14928, 4139], + "-stream", + "quote-stream", + [2, 5706, 1237], + [0, 1437, 2541, 22410, 22412, 3427, 7029, 3545, 4431], + [0, 22414, 3505], + [2, 13888, 353], + [0, 18444, 2156, 22410, 2090, 1586, 16410, 20500, 36, 5576, 9229, 20997, 20998], + [1, 2343, 14931], + "readFileSync", + [0, 14933, 14934, 14935, 2537], + "asset", + [0, 22420, 4039, 4600, 2541, 22422, 3923], + [0, 2899, 4597, 1177, 2759, 22425, 3349, 2215, 3074, 22427, 22428], + [0, 3358, 6645, 1528, 22430, 20997, 20998, 20001, 13755, 5351, 2323, 18444, 2193, 1724, 2195], + [1, 2343, 14941], + "array-equal", + [2, 1379, 1932], + "fs-tree-diff", + "heimdalljs", + [0, 14945, 14946, 14947, 2523], + [2, 3192, 1177], + "-lerna-changelog", + [2, 3980, 14943], + [0, 22437, 2061, 1209, 3544, 4015, 22440, 4597], + [0, 1177, 2899, 3210, 4039, 4170], + [0, 2323, 3358, 22443, 18444, 22223], + [1, 2343, 14949], + [0, 14950, 14954, 14955, 34352], + [0, 1104, 1413, 2061, 3544, 22449, 4431], + [3, 1378, 10], + "ixture", + [2, 14951, 14952], + [0, 2323, 2359, 2390, 2447, 2463, 2494, 18426, 2544, 2839, 2899, 22451, 4170], + [0, 15215, 18444, 16518], + [1, 2343, 14957], + [0, 14958, 14960, 14963, 2523], + [0, 2036, 3544, 4002, 4431], + "broccoli", + [0, 4597, 2323, 2367, 22460, 22463, 22465, 2899, 22466, 4170], + [3, 14953, 15], + [2, 14961, 1289], + [0, 18444, 2036], + "multidep", + [1, 2343, 14966], + [0, 14971, 14972, 14973, 2537], + "ts-docs-gen", + "plugin-p", + [2, 14968, 11597], + [2, 4491, 14969], + [0, 14557, 1209, 3102, 4431], + [0, 1429, 2323], + [0, 10345, 18444, 22475], + [1, 2343, 14975], + [0, 14976, 14977, 14984, 2399], + [0, 1496, 4207, 1362, 4599, 3427, 3923], + [0, 2899, 4597, 2759, 2541, 22360, 1537, 22481, 4603], + [2, 1387, 4219], + [3, 14978, 13], + [2, 14979, 181], + "bs-recipes", + "dev-ip", + "easy-", + [0, 18444, 1936, 4068], + "easy-extender", + "eazy-logger", + [1, 2343, 14988], + [0, 14989, 14991, 14993, 4139], + [0, 4431, 3544, 2633], + "resp-modifier", + [0, 2323, 2899, 4597, 2398], + "bs-snippet-injector", + [0, 1671, 2323, 18444, 22489, 1936, 2265, 14137, 2632, 3178], + "-changelog", + [2, 8623, 14994], + [1, 2343, 14997], + [0, 14999, 15002, 15003, 2523], + "browser sync", + [0, 8949, 22495, 18438, 22497, 22502, 22379, 22504, 22505, 22500], + "live reload", + "sync", + [ + 0, 2323, 1192, 1177, 4039, 22509, 8719, 1894, 842, 16145, 442, 1527, 22512, 91, 22507, 8712, 22511, 4523, 1939, + 1895, 1955, 1652, 1567 + ], + [0, 18444, 2323, 1017, 2414], + [1, 2343, 15005], + [0, 15025, 15026, 15029, 34352], + "browser-pack", + [2, 13843, 814], + "zlib", + [2, 13888, 15008], + "d-pa", + "th-relative", + [2, 15010, 15011], + [2, 2325, 15012], + [2, 10740, 1389], + [2, 14181, 1617], + "defined", + "deps-sort", + "domain-browser", + "duplexer2", + "htmlescape", + "https-", + [2, 15021, 1389], + "ed-stream-splicer", + [2, 5433, 15023], + [0, 4431, 22518, 22519], + [0, 2899, 2272, 3188, 4039, 4170, 4600, 2215, 1834, 22522], + "-classic", + [2, 3188, 15027], + [0, 18444, 21195, 22524, 22525], + "module-deps", + "os-browserify", + "-es3", + [2, 3767, 15032], + "read-", + "only-stream", + [2, 15034, 15035], + "shasum-object", + "stream-b", + [2, 15038, 2345], + [2, 4279, 27], + "_decoder", + [2, 1871, 15041], + "subarg", + [2, 9056, 1851], + "rs-browserify", + [2, 6901, 15045], + "tty-browserify", + "vm-browserify", + [1, 2343, 15061], + "unpack", + [2, 13843, 15050], + "coffeeify", + "has-o", + "bject-spread", + [2, 15053, 15054], + [2, 2565, 1243], + "isstream", + [3, 5747, 18], + [2, 3094, 15058], + "seq", + [0, 15062, 15063, 15065, 2443], + [0, 4431, 22518], + [0, 2272, 2899, 4170], + "commonj-esque", + [0, 18444, 7131, 3181, 2385, 6521, 2390], + [1, 2343, 15067], + [0, 15068, 15069, 14787, 2537], + [0, 1149, 1209, 22536, 4431], + [0, 2206, 2323, 2359, 2463, 2447, 4089, 2839], + "exposify", + "mothership", + "-function-calls", + [2, 14057, 15072], + [1, 2343, 15075], + [0, 15078, 15079, 15080, 2537], + "peer-range", + [2, 1382, 15076], + [0, 1437, 2476, 2267, 3545, 3714], + [0, 1166, 2694, 24006, 4597, 1906], + [0, 18444, 2267, 158, 11807, 20631, 20632, 3178, 2632, 15215, 18048, 20637, 21881, 20639, 8221], + [1, 2343, 15082], + [0, 15083, 15089, 14787, 4139], + [0, 1104, 2012, 2070, 3544, 4227, 4296, 4597, 4606], + "leases", + [2, 3340, 15084], + [3, 12361, 13], + [2, 15086, 1747], + [2, 9787, 15087], + [0, 2323, 2510, 2899, 4170, 4278], + "target", + [1, 2343, 15092], + [0, 15093, 15094, 15096, 2537], + [0, 1144, 4431, 2061, 1104, 22555, 3544, 22449, 1874], + [0, 1906, 2675, 2899, 4597, 4170, 22557, 2012, 192, 4131, 22559], + "base-x", + [0, 18444, 14510, 22561, 22562, 3888, 4017], + "ts-standard", + [1, 2343, 15099], + [0, 15104, 15106, 15108, 2537], + "base58", + "bitcoin", + "crytography", + "decode", + [0, 22568, 3544, 4431], + "decoding", + [0, 1178, 1596, 2012, 2323, 2384, 2463, 2899, 3421, 4597], + "litecoin", + [0, 18444, 134, 1623, 1936, 1823], + [1, 2343, 15110], + [0, 15111, 15116, 15117, 34352], + [0, 1664, 2541, 22576, 3479, 4431, 4707], + [3, 9366, 12], + "d-transpile", + [2, 6990, 15113], + [2, 15112, 15114], + [0, 1429, 2899, 4257, 1906], + [0, 18444, 1370, 3378, 1161], + [1, 2343, 15119], + [0, 15120, 15121, 15122, 34352], + [0, 2759, 22584, 1209, 3544, 4431, 4606], + [0, 2323, 2463, 2510, 22588, 2272, 2899, 4039, 4597], + [0, 18444, 4504, 2759, 22590], + [1, 2343, 15124], + [0, 15129, 15131, 15137, 2399], + "acorn-", + [3, 1200, 14], + [2, 15125, 15126], + "acorn-jsx", + [0, 2541, 2437, 4431], + "regexpu-core", + [0, 2323, 4384, 2447], + [2, 10740, 7227], + [3, 5583, 16], + [2, 15133, 4047], + "262-stream", + [2, 1973, 15135], + [0, 2437, 18444, 3101, 7234], + "transpil", + [2, 15138, 5218], + [3, 5221, 11], + "esnext", + [1, 2343, 15143], + [0, 15144, 15145, 15146, 2399], + [0, 1144, 2765, 22602, 3544, 4431], + [0, 2323, 4597], + [0, 5982, 5130, 18444, 2765, 2907, 8791, 4386, 4384, 6969, 1973, 5472, 2275], + [1, 2343, 15150], + "compatible", + "uint8array", + [0, 15151, 15152, 15153, 2537], + [0, 2292, 3544, 4431, 4435], + [0, 4278, 17468, 4597], + [0, 18444, 2292, 5284, 5286, 676, 1501, 590, 2649, 671, 6892, 4354, 16790], + [1, 2343, 15155], + [0, 15156, 15157, 14787, 4139], + [0, 1209, 3181, 3544, 22331, 4431], + [0, 2323, 2272, 2899, 4170, 4597], + [1, 2343, 15161], + "-build", + [2, 640, 15159], + [0, 15162, 15163, 15165, 2523], + [0, 1699, 1707, 2820, 3544, 4431], + [0, 1177, 1889, 2323, 2899, 4170, 4597], + "prebuildify", + [0, 18444, 2323, 1781], + [1, 2343, 15167], + [0, 15168, 15169, 15170, 2523], + [0, 695, 3427, 3544, 4002, 4431, 4606], + [0, 2272, 2899, 4170, 4597], + [0, 18444, 2323, 695], + [1, 2343, 15172], + [0, 15173, 15176, 15177, 4139], + [0, 1437, 1676, 4597, 4438, 2061, 3023, 3923], + "built-in", + "bundled", + [0, 2899, 4193], + [0, 18444, 3000], + [1, 2343, 15179], + [0, 15180, 15181, 15183, 2523], + [0, 22639, 814, 2061, 3170, 2107, 22640, 22638], + [0, 2899, 4193, 1177, 3752, 22643, 1953, 1954, 1938, 1958, 1903, 1970], + "flexbox", + [0, 17461, 2323, 3209, 3001, 9711], + [1, 2343, 15185], + [0, 15186, 15188, 2514, 2399], + [0, 1462, 2541, 3427, 3923, 22649, 4606], + [2, 5581, 10659], + [0, 1429, 2899, 4597, 1177, 2759, 2515, 22360, 2510, 22651, 22481, 22428], + [1, 2343, 15190], + [0, 15191, 15195, 15196, 2537], + [0, 16862, 4431, 2541], + "@sto", + "plight/yaml", + [2, 15192, 15193], + [0, 1429, 2323, 2899], + [0, 18444, 3178, 6707, 16918, 15215, 1936, 16862], + "mergician", + [1, 2343, 15199], + [0, 15200, 14729, 15202, 2523], + [0, 1664, 2020, 2476, 2899, 4351], + "warn-if-update-available", + [0, 18444, 2899, 1973, 5472, 2275, 5130, 8791, 6969, 5982, 2907, 4386, 4384], + [2, 4869, 7059], + "err", + [1, 2343, 15206], + [0, 15207, 15209, 15210, 2399], + [0, 22667, 2070, 3544], + "bump", + [0, 1429, 2323, 2899, 4597, 1177, 3203, 21470], + [0, 2323, 18444, 2301, 22254], + [1, 2343, 15212], + [0, 15213, 14631, 15214, 2523], + [0, 22675, 1698, 22676, 3544, 4431, 4606], + [0, 18444, 1098, 12074, 10650, 22676], + "compress", + [1, 2343, 15217], + [0, 15218, 15219, 15224, 2443], + [0, 1512, 2323, 3363], + [0, 1506, 2447, 2463, 20047, 2272, 4170], + "dtrace-provider", + "mv", + [3, 2854, 14], + [2, 4099, 15222], + [0, 2323, 3363, 22684, 36, 22687, 20120, 2282, 17461, 18444], + "ben", + [1, 2343, 15228], + "log4j", + [0, 15229, 15230, 15231, 2399], + [0, 1209, 4431, 2061, 1104, 3357, 3544, 3330], + [0, 2323, 2899, 4597, 4170, 2479], + [0, 18444, 22005, 2323, 9044, 16237, 22695, 22696, 22011, 22699, 15844], + "streamsearch", + [1, 2343, 15235], + "@mscdex/eslint-config", + [0, 15238, 15239, 15240, 2537], + "uploads", + [3, 3253, 9], + [0, 18438, 1437, 22706], + [0, 1166, 3477, 91, 4597, 1906], + [0, 2323, 1932, 2474, 6731], + [1, 2343, 15242], + [0, 15246, 15248, 14787, 34352], + "lxiv", + "hrtime", + [2, 3715, 15244], + [0, 1437, 4431, 2061, 3544], + "webrtc", + [0, 1906, 2323, 2899, 4170, 4430, 2759, 1596, 2012, 3202], + [1, 2343, 15250], + [0, 15251, 15252, 15254, 34352], + [0, 2061, 3544, 3616, 4606], + [0, 3421, 2899, 4193, 4597, 1177, 3561, 3752, 2510], + "converter", + [0, 18444, 3561, 22147, 1623], + [1, 2343, 15256], + [0, 15257, 15259, 15263, 2537], + [0, 4358], + "@bcoe/v8-coverage", + [0, 2899, 33479, 30889, 4597], + "ground-child", + [2, 14739, 15260], + "v8-to-istanbul", + [0, 22726, 1509, 21195, 1676, 22729, 6639, 6521, 22223, 18444, 1936, 22727, 22728, 2385, 5284, 7121], + [2, 1432, 8746], + [1, 2343, 15268], + "v8", + "profiler", + [0, 15269, 15270, 15271, 2523], + [0, 2012, 2720, 3067], + [0, 1145, 1177, 22735, 2720, 2899, 3752, 4603], + [0, 18444, 3741], + [3, 5738, 22], + [2, 15272, 2528], + [1, 2343, 15280], + "@types/mri", + [2, 13307, 2831], + [2, 4049, 668], + [3, 207, 8], + "madr", + [0, 15281, 15282, 15283, 2399], + [0, 2541, 3427, 3909, 4431, 4606], + [0, 2510], + [0, 18444, 89, 1219, 353, 8535, 1283, 5354, 6624, 22743, 22746, 7234], + [1, 2343, 15285], + [0, 15291, 15293, 15295, 2443], + "@fake", + "r-js/faker", + [2, 15286, 15287], + [3, 1909, 17], + [2, 15289, 91], + [0, 2012, 3357, 705, 4431, 4597], + " cache", + [0, 2323, 2530, 2359], + "multiple", + [0, 18444, 21004, 22753], + [1, 2343, 15297], + [0, 0, 15298, 14787, 2399], + [0, 2323, 2510, 3102, 2899, 1894, 4170, 4597], + [1, 2343, 15302], + "es-de", + "fine", + [0, 15303, 15306, 15311, 34352], + [0, 4874, 18438, 4748, 22762, 17909], + "fine-property", + [2, 15300, 15304], + [0, 2899, 4597, 4170, 4474, 19544, 91, 1537], + "-apply-helpers", + [2, 2183, 7083], + "-length", + [2, 3609, 15309], + [0, 18444, 4068], + "gopd", + [1, 2343, 15314], + [0, 15315, 15316, 15317, 4139], + [0, 2476, 22771, 22772, 22774, 22776, 4597, 22778], + [0, 1166, 3477, 1906], + [0, 18444, 22781, 22782, 22783, 3428, 6707, 15525, 22220, 2325, 22784, 2947, 14932, 22785], + "camel", + "-case", + "camel-case", + "case", + "hyphen", + "separator", + "pascalcase", + [1, 2343, 15327], + "pascal-case", + [0, 14910, 15328, 15329, 2537], + [0, 2012, 2390, 2498, 2899, 4597], + [0, 18444, 22781, 22783, 15525, 4068, 14932], + [1, 2343, 15331], + [0, 15332, 15333, 15334, 2523], + [0, 1437, 1573, 1615, 1664, 22795, 1874, 2061, 2070, 8944, 22798, 3505, 3544, 4002, 4039, 4597], + [0, 2323, 2510, 22778], + [0, 18444, 4329, 2278, 1623, 7234, 7121, 590, 22801, 4227, 11939, 12938, 4070], + [1, 2343, 15336], + [0, 15337, 15338, 15339, 2487], + [0, 3527, 4294, 4002, 3544, 3028, 4606], + [0, 2323, 2278, 2899, 4597, 1177, 4039, 21315, 3561, 18426, 3342, 1165, 2482, 21688, 2510, 1938, 1881], + [0, 18444, 2278, 2323], + "assert-", + "rejects", + [2, 15340, 15341], + [1, 2343, 15347], + "graphic", + "pixman", + "cairo", + [0, 15348, 0, 15349, 2523], + [0, 1149, 2541, 3427, 7029, 4247, 4431], + [0, 18444, 22813, 2090, 1586, 16410, 20500, 36, 5576, 9229, 20997, 20998], + [1, 2343, 15351], + [0, 15352, 15353, 15354, 2523], + [0, 1437, 2061, 3067, 3544, 4431, 4484], + [ + 0, 22821, 22507, 5087, 22823, 4874, 18435, 1009, 1011, 1596, 1177, 1895, 1939, 2323, 1192, 1894, 4468, 4474, 91, + 4597 + ], + [0, 18444, 2323, 4166, 1523], + " sensitive", + [2, 15321, 15355], + [1, 2343, 15358], + [0, 15359, 15360, 15363, 2399], + [0, 22829, 1437, 2061, 2476, 2553, 3714], + [0, 1166, 3477, 4597, 1906], + "slimerjs", + "scraping", + [0, 18444, 2098, 2090, 4202, 3073, 22832, 3430, 1676, 16518, 21665], + [1, 2343, 15365], + [0, 15366, 15367, 15368, 2537], + [0, 22837, 22841, 1082, 1573, 1623, 22843, 20949, 2215, 4227, 21732, 4431], + [0, 1367, 1177, 1889, 2022, 2323, 2367, 2419, 2450, 2455, 22845, 2759, 22481, 22848, 2899, 3427, 4039, 4597], + [0, 18444, 2323, 22850, 4070], + [1, 2343, 15372], + "loupe", + "pathval", + [0, 15375, 15360, 15377, 2537], + "check-error", + [3, 6470, 15], + [0, 53, 2476, 22857], + [2, 5474, 13278], + [0, 18444, 4301, 7293, 6865, 4050, 1676, 6782, 7201, 3073, 6807, 676, 5284, 5286, 6892, 2003], + [1, 2343, 15379], + [0, 15380, 14805, 15381, 2537], + [0, 22863, 3023, 3544, 4002, 4333, 4431, 4606], + [0, 2323, 4333, 1623, 7121, 18444, 22223], + [1, 2343, 15383], + [0, 15384, 15386, 15387, 2537], + [0, 3544, 4360], + "chai-plugin", + [0, 2070, 2323, 22871, 2899, 22872, 4597, 1906], + [ + 0, 18444, 1017, 45, 8221, 18048, 22074, 22075, 2873, 1179, 1623, 2278, 695, 4333, 5376, 134, 1936, 13814, 22874, + 22875, 3257 + ], + [1, 2343, 15389], + [0, 15390, 15391, 15392, 2523], + [0, 3028, 3544, 4361], + [0, 48, 53, 87, 94, 1166, 1596, 1610, 1701, 3421, 1894, 4597, 1906], + [0, 18444, 3178, 8221, 4361], + "strategy", + [1, 2343, 15395], + [0, 15396, 15397, 15399, 2537], + [0, 1448, 2061, 3544, 4597], + [0, 2099, 2323, 2430, 2899, 3758, 4151, 4193], + "@debitoor/eslint-config-debitoor", + [0, 18444, 8221, 1017, 22074], + "objects", + "Subset", + [2, 6792, 15401], + "like", + [1, 2343, 15406], + "superset", + [0, 15407, 15408, 15409, 34352], + [0, 2476, 1209], + [0, 1166, 2383, 4597, 1906], + [0, 18444, 1209, 4545, 1283, 7234, 1936, 8924, 22894, 22746], + [1, 2343, 15412], + "yoctodelay", + [0, 15413, 15414, 15415, 2537], + [0, 1104, 2061, 4430, 4597], + [0, 22507, 4874, 22900, 18438, 20959, 22821, 4039, 2323, 2463, 91], + [0, 18444, 91, 5284, 22902], + [1, 2343, 15417], + [0, 15422, 15425, 15429, 34352], + "docpress", + "git-u", + "pdate-ghpages", + [2, 15419, 15420], + [0, 22821, 1104, 2061, 3102, 3544, 4430], + "gulp-ava", + [2, 2530, 3020], + [0, 22909, 4874, 22900, 2323, 2367, 2529, 4487, 91], + "mersenne", + "address", + "dice", + [0, 2323, 91, 1932, 4799, 18444, 17461, 4487, 9654, 671], + [1, 2343, 15431], + [0, 15432, 15433, 15434, 2537], + [0, 4597, 4431, 4600, 4227, 1104, 3544], + [0, 2323, 4039, 22920, 91, 4874, 2367, 2409, 18438, 2479, 3159, 18435, 18440, 2510, 22919], + [0, 91, 18444, 22924, 4799, 11540, 7234, 4643, 5197], + [1, 2343, 15440], + "param-case", + "kebab-case", + "header-", + "header-case", + [0, 15441, 15442, 14787, 34352], + [0, 22639, 2757, 4431, 4535, 22930, 22640, 4100, 2053, 22933, 4606], + [0, 4389, 4597, 1177, 1894, 22941, 4421, 3696, 22939, 1907, 1982, 1895, 1955, 22937], + [1, 2343, 15453], + "c12", + "convert-", + "gitmoji", + [2, 15445, 15446], + [2, 3310, 4009], + "ofetch", + "pkg-types", + "scule", + "std-env", + [0, 15454, 12112, 15455, 2523], + [0, 2541, 3427, 22946], + [0, 17507, 1623, 18444], + [1, 2343, 15459], + "dogstatsd", + "@kurkle/color", + [0, 15479, 15485, 15489, 2523], + [2, 812, 14510], + "@types/o", + "ffscreencanvas", + [2, 15461, 15462], + "js-adapter-luxon", + [2, 9816, 15464], + [3, 15465, 16], + [2, 15466, 3220], + "chartjs-", + [2, 15468, 11017], + "chartjs", + [2, 1884, 15470], + [3, 2912, 13], + "launcher", + [2, 5695, 15473], + [2, 15472, 15474], + [3, 4071, 15], + "wc3", + [2, 15476, 15477], + [0, 2070, 2367, 3544, 4431, 4597], + "charts", + "graphs", + "datadog", + "telegraf", + "native-run", + [0, 2012, 4600, 2323, 2447, 2463, 2530, 2413, 2361, 2498, 2450, 2272], + [2, 1448, 11245], + "domhandler", + "domutils", + [0, 18444, 2319, 2536], + "-sniffer", + [2, 9254, 15490], + "-tree-adapter", + [2, 2653, 15492], + [2, 1868, 15493], + [2, 3493, 15494], + "parse5-", + "parser-", + [2, 15497, 3101], + [2, 15496, 15498], + "whatwg-", + "mimetype", + [2, 15500, 15501], + [1, 2343, 15511], + "@imgix/js-core", + [2, 7724, 2220], + "hatwg-mimetype", + [2, 7820, 15506], + [3, 1926, 15], + "xpect-type", + [2, 15508, 15509], + [0, 15513, 15515, 15516, 2537], + [3, 2654, 10], + [0, 2070, 2051, 22959, 2419, 4431, 4600, 2367, 2012, 3544], + "scraper", + [0, 3421, 2323, 2899, 4597, 1596, 22961, 2463, 2384, 2494, 1178, 22963], + [0, 18444, 1936, 3888, 1623, 6707, 5614], + [1, 2343, 15518], + [0, 15519, 15520, 2514, 2487], + [ + 0, 22970, 22971, 22972, 1437, 1672, 2061, 22639, 22640, 22974, 22979, 22983, 3067, 3183, 8949, 3427, 4002, 4431, + 4597 + ], + [0, 1400, 1596, 2012, 2759, 22481, 2272, 22985, 2899, 4039, 4170], + [1, 2343, 15522], + [0, 15523, 15524, 15527, 4139], + [0, 3768, 4430, 4431, 4597, 4600, 4753, 22990], + [0, 2899, 4255, 1241], + "version", + [2, 813, 15525], + [0, 2323, 18444, 22990, 22993, 2056, 7046, 4597, 2542], + [1, 2343, 15529], + [0, 15530, 15531, 15532, 2537], + [0, 1104, 15642, 1457, 2061, 2200, 3427, 3507, 3544, 3923, 4207, 4597, 22778], + [0, 1596, 2759, 2899, 3202, 3752, 4039, 4170, 4193, 4278, 4294, 1906], + [0, 2323, 2282, 18444], + "@better-scroll/core", + "add-", + "listener", + [2, 12598, 15535], + [2, 1752, 15536], + [2, 15534, 15537], + "-font", + [2, 1456, 15539], + [2, 1625, 7521], + [1, 2343, 15546], + "-converter", + [2, 2275, 15543], + [2, 1625, 15544], + [0, 15552, 0, 15563, 2537], + "dom-closest", + "dom-lib", + [3, 1817, 15], + [2, 15549, 2013], + "htmlhint", + [0, 3150, 4597, 4430, 2924, 2541], + "insert-css", + "jsbarcode", + "jsonlint", + "jsonlint-mod", + "mutat", + "ionobserver-shim", + [2, 15557, 15558], + [2, 3767, 1289], + "-delta-to-html", + [2, 3771, 15561], + [0, 18444, 2924], + [1, 2343, 15576], + "eautiful-dnd", + [2, 12242, 15565], + "demirror2", + [2, 3808, 15567], + "asy-crop", + [2, 11352, 15569], + "lightbox", + [2, 3608, 15571], + [2, 3838, 15572], + "azy-load", + [2, 12432, 15574], + [0, 15577, 15581, 15583, 4139], + [0, 1544, 21847, 2541, 2756, 3357, 3445, 23009, 4150, 4151, 4431, 4438, 2282], + "react-quill", + "rmc-feedback", + "smooth-scroll-into-view-if-needed", + [0, 2899, 4342], + [3, 5835, 27], + [0, 18444, 22313, 1544, 3000], + "to-to-assign", + [2, 15582, 15584], + "demirror", + [2, 4860, 15586], + "lement-", + [1, 2343, 15593], + "resize-event", + [2, 15588, 15590], + [2, 4861, 15591], + [0, 15603, 15617, 15620, 2523], + "@types/faker", + "sert-css", + [2, 9721, 15595], + "barcode", + [2, 7635, 15597], + [3, 7895, 12], + [2, 15599, 2631], + "rcode.react", + [2, 11304, 15601], + [0, 2188, 2476, 4597, 22990], + "beautiful-dnd", + [2, 4881, 15604], + [2, 4881, 2741], + [2, 4881, 11167], + [2, 6324, 1456], + [2, 5098, 15608], + [3, 15609, 15], + [2, 15610, 7262], + [2, 15610, 89], + [2, 15610, 10631], + "tinker", + [2, 1876, 15614], + [2, 6941, 3841], + [0, 1166, 17279, 22706, 2323, 3477, 23017, 22778, 1906], + "mark-twain", + "rc-queue-anim", + [0, 18444, 2056, 12666, 1137, 15215, 1536, 2090], + "croll-anim", + [2, 11229, 15621], + [3, 11371, 21], + [2, 15623, 1524], + "react-su", + "blime-video", + [2, 15625, 15626], + [1, 2343, 15631], + "scrollama", + "values.js", + [0, 15636, 15638, 15639, 2523], + "vfile-message", + "-warnings-plugin", + [2, 7131, 15633], + [2, 4670, 15634], + [0, 22058, 1149, 4597, 4431, 3181, 4545, 22057, 22054], + [3, 1456, 9], + [0, 2323, 2899, 1177, 4039, 22064, 23026, 2381, 3159, 4599, 2425, 23025, 22066, 22068, 22062], + [0, 18444, 22057, 22074, 22075], + [1, 2343, 15641], + [0, 15646, 15647, 15649, 2443], + "anymatch", + "braces", + "is-b", + "@paulmillr/jsbt", + [0, 1792], + [0, 1166, 3477, 4481, 1906], + "readdirp", + [0, 1896, 4990, 15008, 16518, 23034, 4202, 1871, 1398], + [1, 2343, 15651], + [0, 15652, 15653, 15654, 2537], + [ + 0, 23040, 23041, 23043, 23045, 3984, 23051, 23054, 3988, 10630, 11380, 23059, 23065, 23070, 23075, 23078, 23080, + 23082, 23085, 23092, 23096, 23098, 23103, 23110, 23113, 23118, 23121, 23123, 13240, 23126, 23128, 23133, 23136, + 23139, 23141, 23143, 15043, 4351, 23145, 23149 + ], + [0, 811, 8850, 816, 10615, 1703, 23155, 4042, 4255, 4389, 4400], + [0, 1783, 1745, 1739, 9591, 13729, 4354, 23158, 9654, 671, 19269, 2554, 3984, 4549], + [1, 2343, 15657], + "ci", + [0, 0, 15660, 15661, 2399], + "continuous", + [2, 15674, 15682], + [0, 23163, 23164, 2228, 18555, 2253, 2256, 2273, 23165, 2281, 2283, 2293, 23167, 23169], + [0, 4453, 7597], + [1, 2343, 15683], + [3, 6217, 21], + [2, 15663, 4779], + [3, 169, 22], + "ntion", + [2, 15665, 15666], + [3, 169, 21], + "inimap", + [2, 15668, 15669], + [3, 116, 24], + [2, 15671, 14745], + [3, 164, 21], + [3, 5276, 15], + "anguage", + [2, 15673, 15675], + [3, 157, 21], + [2, 15677, 5204], + [3, 148, 22], + "de-block", + [2, 15679, 15680], + "imple-access", + [0, 15688, 15708, 15709, 4139], + "tml-embed", + [2, 15677, 15684], + "ge-break", + [2, 172, 15686], + [0, 3183, 23175, 4227, 4720, 4535], + "heme-lark", + [2, 178, 15689], + "ord-count", + [2, 6197, 15691], + [2, 15698, 15725, 186], + "how-blocks", + [2, 15663, 15694], + [3, 15685, 25], + [2, 15696, 4231], + [3, 10883, 21], + "arkdown-gfm", + [2, 15668, 15699], + [3, 175, 22], + "move-format", + [2, 15701, 15702], + "ource-", + [2, 15704, 6110], + [2, 15663, 15705], + "oriz", + [ + 0, 8648, 1168, 1195, 1282, 1317, 1429, 23177, 1540, 1719, 1787, 16256, 16257, 1177, 1895, 1924, 1926, 2151, + 2228, 13831, 2240, 2247, 2253, 2256, 2258, 23178, 2281, 2283, 2314, 17568, 2675, 16021, 2990, 2899, 3211, 3257, + 3421, 1894, 4135, 4193, 91, 4545, 2924, 4681 + ], + [0, 2036, 3257, 1283, 1936], + "ontal-line", + [2, 15707, 15710], + [2, 15677, 15711], + [3, 6164, 21], + [2, 15713, 12426], + "multi-root", + [2, 6157, 15715], + "strict", + "ed-editing", + [2, 15717, 15718], + [2, 15701, 15719], + "peci", + "al-characters", + [2, 15721, 15722], + [2, 15663, 15723], + "plugin-u", + "nano-jsx", + [1, 2343, 15729], + "solid-js", + [0, 15730, 15731, 6060, 2523], + [ + 0, 2812, 23184, 1366, 6714, 2607, 8340, 17693, 23185, 8336, 8316, 23187, 23188, 8338, 23189, 23190, 8349, 23192, + 23193 + ], + [0, 620, 1501, 2710, 8363, 23196, 2036], + [1, 2343, 15733], + [0, 15734, 15735, 15736, 2487], + [0, 15507, 4874, 9241, 18089, 15502, 4729], + [0, 23203, 23205, 91, 1984, 9750], + [0, 2832, 965, 1388, 5317, 11513, 5122, 4963, 1936, 7102, 12616], + [1, 2343, 15738], + [0, 0, 8134, 15739, 2537], + [0, 6914, 4354, 13735, 6793, 2100, 7210, 200, 6876, 6478, 3729, 1138, 7058, 7233, 10446, 7128, 3183, 3460], + [1, 2343, 15741], + [0, 0, 15746, 15748, 2537], + "@chrisblossom/eslint-config", + [3, 14731, 11], + "-pkg-up", + [2, 15743, 15744], + [0, 5517, 13614, 23237, 26398, 19325, 1159, 1593, 9254, 1177, 23225, 2708, 3410, 3421, 4103, 4389], + "temp-sandbox", + [0, 7263, 2568, 7031, 6951, 6422, 970, 1593, 6789], + [1, 2343, 15750], + [0, 0, 15751, 2514, 2523], + [0, 2272, 2839, 1209, 4389], + [1, 2343, 15753], + [0, 15754, 15755, 15756, 2399], + [0, 14038], + [0, 5517, 13614, 23237, 23239, 23241, 19325, 1158, 1159, 1177, 2011, 2708, 3206, 3410, 3421, 4103, 4389], + [0, 6914, 6959, 6780, 6889, 6888, 6914, 3205, 941, 5284, 5286], + [2, 5933, 1469], + [1, 2343, 15762], + "uncache", + "uncached", + "unrequire", + [0, 15763, 15764, 15765, 4139], + [0, 12396, 9315, 23247, 23249, 23250, 23253, 3140, 3493, 23254, 4555, 12449, 23257, 23258], + [0, 4874, 23262, 1414, 2581, 2588, 3137, 1894, 23264, 3985, 3998, 4505, 91, 18002, 1906], + [0, 23267, 2587, 1936, 23266, 6435, 614, 1644, 3972], + [1, 2343, 15772], + "opts", + "opt", + "parseopt", + "argsparse", + "optparse", + [0, 15777, 15778, 15779, 2537], + "complete", + "autocomplete", + [3, 15774, 11], + [2, 15775, 6600], + [0, 12396, 23247, 23254], + [0, 4874, 23262, 23274, 1414, 1699, 23276, 2581, 2588, 2620, 23279, 1894, 3985, 3998, 4505, 91, 18002, 4555, 1906], + [0, 4050, 23267, 2587, 1936, 6953, 2574, 6435, 614, 23266, 4741], + [1, 2343, 15781], + [0, 15782, 15783, 15784, 34352], + [0, 12396, 9315, 23286, 23288, 13839, 23289, 23291, 9396, 2584, 23292, 16870, 3746, 4233, 4555, 23258], + [0, 4874, 1414, 2588, 1894, 3985, 3998, 4505, 91, 18002, 1906], + [0, 1623, 23267, 2587, 1936, 3529, 6421, 3766, 23296, 3585, 1631, 23266, 6435, 614], + [1, 2343, 15787], + [2, 1861, 7253], + [0, 15789, 15790, 15791, 2523], + "timers-ext", + [0, 1006, 19877, 12396, 23288, 23289, 23302, 23308, 23292, 23310, 23312, 23314, 3746, 4233, 4309, 23254, 23258], + [0, 4874, 15128, 1414, 23316, 12412, 2007, 2588, 3137, 12127, 3140, 12133, 1894, 3985, 3998, 4505, 91, 4555, 1906], + [0, 1444, 5286, 6742, 23267, 2587, 1936, 5284, 1219, 9102, 3958, 353, 23266, 6435, 614], + "medikoo", + [2, 1884, 15792], + "list-", + "updated", + "list-updated", + [2, 10617, 15796], + [3, 2289, 14], + "-cc-changelog", + [2, 4024, 15799], + [2, 15798, 15800], + "prettier-e", + "lastic", + [2, 15802, 15803], + "tad", + [1, 2343, 15807], + [0, 15808, 15809, 15810, 2487], + [0, 12396, 9315, 23322, 23288, 23292, 23253, 3140, 3746, 4233, 4292, 23258], + [0, 4874, 1414, 2588, 1894, 3985, 3998, 4505, 91, 1906], + [0, 23267, 2587, 1936, 4141, 1646, 23324, 23266, 6435, 614], + [1, 2343, 15812], + [0, 15816, 15817, 15818, 2537], + "toggle", + "show", + "hide", + [0, 1006, 12396, 9315, 23288, 23289, 23308, 23292, 23310, 23312, 23314, 3746, 4233, 4309, 23254, 15632], + [0, 4874, 4880, 4883, 1414, 668, 12415, 2588, 1894, 89, 3824, 3985, 3998, 23330, 4505, 91, 1906], + [0, 23267, 2587, 1936, 3698, 89, 23332, 3709, 23266, 6435, 614, 188], + [1, 2343, 15820], + [0, 15821, 0, 15823, 2537], + [0, 12396], + "varlock", + [0, 1563, 2587, 23267, 1936, 4141, 1871, 1646, 2585, 23266, 614, 6435], + [1, 2343, 15825], + [0, 15827, 15809, 15828, 2537], + "string-length", + [0, 12396, 9315, 12421, 23344], + [0, 23266, 2587, 23267, 614, 6435, 1936, 1871, 1563, 2585, 9547], + [1, 2343, 15830], + [0, 15831, 15832, 15834, 2537], + [0, 12396, 23288, 23352, 3746, 4233], + [0, 4874, 15128, 1414, 23316, 23356, 12412, 1894, 3985, 3998, 23359, 4481, 4505, 91, 1906], + "expresso", + [0, 965, 14839, 23267, 2587, 1936, 23362, 3958, 23266, 6435, 614, 23361, 4607], + [1, 2343, 15836], + [0, 15837, 15839, 2514, 4139], + [0, 4647, 2036], + "fast-text-table", + [0, 3421, 2899, 1177, 4039, 4342, 1948], + "256-colors", + [2, 1105, 15840], + "git-re", + "git-rev", + "growl", + [1, 2343, 15848], + "tables", + "tabular", + [0, 0, 15849, 15850, 2523], + [0, 15990, 2228, 2240, 2314, 14352, 2759, 2835, 1209, 14529, 3774, 3954, 23375, 4019, 23376], + [0, 1871, 18089, 18944, 1936, 10368, 15103, 3656], + [1, 2343, 15852], + [0, 15855, 15856, 2514, 2537], + [2, 8737, 4522], + [2, 2968, 14994], + [0, 3263], + [0, 4167, 4384], + [1, 2343, 15858], + [0, 0, 0, 15859, 2537], + [ + 0, 2026, 1965, 11988, 5995, 23389, 23391, 23397, 23400, 23404, 23407, 23410, 23411, 23412, 23413, 23414, 23415, + 23416, 23417 + ], + [1, 2343, 15861], + [0, 0, 15863, 2514, 34352], + "truncate", + [0, 4361, 4039, 1894, 1420, 11518, 53, 23423, 5874], + "ellipsis", + [1, 2343, 15866], + [0, 0, 15867, 2514, 2443], + [0, 94, 87, 14128, 14041, 1175, 48, 53, 1178, 1193, 1745, 1177, 1935, 1938, 1939, 1192, 2774], + [1, 2343, 15870], + "cardinal", + [0, 15881, 15885, 15888, 2523], + "hyperlinker", + [2, 689, 13008], + [2, 2055, 2873], + "object-t", + "reeify", + [2, 15874, 15875], + [2, 689, 7152], + "natural-", + "orderby", + [2, 15878, 15879], + [ + 0, 23432, 1362, 27433, 15838, 23434, 23436, 23438, 23439, 23440, 23441, 2822, 23444, 3170, 19445, 3220, 3222, + 3416, 3527, 15245, 4294, 4435, 23445, 23446 + ], + "-prompt", + [2, 6875, 15882], + [3, 4351, 9], + [ + 0, 23450, 13414, 4856, 8780, 7637, 8778, 6503, 4874, 21623, 6513, 23448, 1414, 1429, 1448, 6323, 1177, 23453, + 23456, 2675, 2990, 2899, 4193, 4474, 91 + ], + "hyperlinks", + [2, 15884, 15886], + [0, 5351, 5353, 6354, 5130, 2596], + [3, 6519, 10], + "ip-ansi", + [2, 15889, 15890], + "nsi-styles", + [2, 9165, 15892], + [3, 9359, 12], + [1, 2343, 15898], + "ct-stack", + [2, 15894, 15896], + [0, 15899, 15900, 2514, 4139], + [0, 23462], + [ + 0, 1362, 1389, 1391, 1537, 1177, 2228, 2236, 2239, 2277, 2281, 2283, 2291, 23466, 2307, 2036, 2276, 4085, 23469, + 4171, 4193, 16584, 23471, 4535 + ], + [1, 2343, 15902], + [0, 0, 15912, 15913, 2537], + "@yarnpkg/core", + "@yarnpkg/", + "fslib", + [2, 15904, 15905], + [3, 1920, 15], + "rca", + [2, 15907, 15908], + "multi-input", + [2, 4049, 15910], + [ + 0, 1623, 1700, 2070, 19745, 2832, 2899, 1177, 1209, 4042, 4170, 4072, 1462, 1481, 1525, 2036, 91, 2665, 23482, + 6503, 18059, 23483, 13388, 23476, 23479, 1954, 8850, 23480, 1938, 1958, 1903, 811, 1011, 816, 1009 + ], + [0, 5342, 5341], + [1, 2343, 15915], + [0, 15916, 0, 2514, 2537], + [0, 3263, 1326], + "good-listener", + "tiny-emitter", + [1, 2343, 15920], + [0, 6263, 0, 15922, 2523], + "cut", + [0, 2602, 7426], + [1, 2343, 15924], + [0, 0, 15925, 15927, 2537], + [0, 1501, 620], + "is64bit", + [0, 6731], + "paste", + "copy-paste", + "pasteboard", + "pbcopy", + "xclip", + "xsel", + [1, 2343, 15935], + [0, 15936, 15937, 15938, 2523], + [0, 3368, 3188], + [0, 4535, 2832, 23509, 4039], + [0, 3257, 1283], + [1, 2343, 15940], + [0, 15941, 15942, 10570, 2399], + [0, 3847], + [0, 53, 61, 87, 90, 94, 1429, 1596, 1603, 1177, 2899, 3421, 3697, 3744, 89, 4039, 4042, 4045, 4055, 4067, 4073], + [1, 2343, 15944], + [0, 15945, 15946, 2514, 4139], + [0, 1437, 4135, 2151, 1525, 23520, 3762, 4232], + [ + 0, 1192, 1177, 4039, 3363, 4468, 4474, 4508, 91, 5087, 4874, 5245, 5254, 4864, 1939, 1938, 13418, 1011, 23523, + 1009 + ], + [1, 2343, 15948], + [0, 0, 15949, 15950, 2523], + [ + 0, 23528, 23531, 4865, 13204, 4874, 29891, 7677, 1138, 14736, 30932, 668, 1177, 2070, 2832, 3244, 3377, 30794, + 20085, 1894, 23535, 91, 4548, 23538, 1984, 23539, 4729, 4763 + ], + [0, 2611, 5122, 1896, 27, 13527, 5130, 38, 23542, 23543, 23544, 23545, 21444, 17218, 13573, 6710], + [2, 976, 2942], + [1, 2343, 15954], + [2, 9753, 6072], + [0, 15957, 6538, 15958, 2487], + "progress bar", + "@exodus/bytes", + [0, 3084], + [0, 3358, 2195, 17977, 17978], + [1, 2343, 15961], + [2, 11941, 5258], + [0, 15963, 13640, 15965, 2487], + "coro", + [0, 1537, 3188, 4039, 4135, 4562, 4707, 23559], + "coroutine", + [0, 23561, 23562, 23563, 23564, 3378], + [1, 2343, 15967], + [0, 15968, 15969, 15970, 2487], + [0, 15487, 2654], + [ + 0, 192, 5467, 19438, 442, 8862, 811, 816, 10615, 10817, 23572, 11085, 23573, 4874, 17214, 32818, 7677, 1177, + 1955, 10964, 1978, 2203, 2633, 2675, 17221, 2832, 2990, 3401, 3541, 1894, 23535, 4042, 4201, 4474, 91, 4523, + 1984 + ], + [0, 2616, 1936, 965, 57, 2654, 23578], + [1, 2343, 15972], + [0, 0, 15973, 15974, 34352], + [0, 4874, 1414, 23276, 2577, 2584, 1894, 3985, 3998, 4505, 91, 4548, 1906], + [0, 23584, 11512, 1936, 1213, 3205, 10381, 12616, 7102], + [1, 2343, 15976], + [0, 15977, 15978, 15979, 2537], + [0, 15956], + [0, 23591, 1177, 2203], + [0, 9254, 1936], + "ignore-walk", + [1, 2343, 15982], + [0, 0, 15983, 15986, 2523], + [ + 0, 192, 5467, 5366, 23597, 5087, 4874, 1317, 18089, 1177, 1895, 1938, 23598, 2591, 2675, 1894, 4257, 4468, 4483, + 4494, 91, 4523 + ], + "teeny-request", + "urlgrey", + [0, 1936, 23601, 23603, 23605, 18089, 23606, 23608], + [1, 2343, 15989], + [2, 10988, 4504], + [0, 0, 15991, 15992, 2443], + "codecov.io", + [0, 23613, 1414, 1596, 4042, 4533], + [0, 1936, 1867, 10368, 23615, 15103, 18089], + [1, 2343, 15994], + [0, 15995, 16007, 16010, 2523], + [0, 3493, 2635], + "mirror/lint", + [2, 13183, 15996], + [3, 15997, 12], + [2, 15998, 6624], + [2, 15998, 6649], + [3, 16000, 13], + [2, 16001, 10190], + [2, 15998, 8891], + [3, 15997, 13], + [2, 16004, 15675], + [2, 15998, 15774], + [ + 0, 1700, 1192, 2675, 3144, 1622, 1177, 1701, 2924, 1854, 3692, 1894, 1610, 48, 1193, 2036, 53, 2990, 3400, + 23621, 192, 4257, 23623, 87, 2651, 1938, 1895, 5467, 16405 + ], + "buildhelper", + [2, 15998, 16008], + [0, 2924, 1936, 1194], + [1, 2343, 16012], + [0, 16013, 16014, 16016, 2523], + [0, 15320, 1462, 1525, 2591, 15436, 23631, 4535], + [0, 2228, 2236, 2281, 2291, 3524, 2907], + [2, 10697, 1592], + [ + 0, 200, 15215, 23634, 1623, 1936, 2265, 5284, 2262, 14137, 2632, 3178, 6707, 6708, 4405, 23635, 1644, 57, 23637, + 2280 + ], + [1, 2343, 16018], + [0, 16019, 16020, 16023, 2537], + [0, 15320, 1462, 1525, 18089, 15436, 23631, 4072], + [0, 192, 11893, 811, 8850, 816, 10615, 23643, 23648, 1177, 1903, 2675, 2742, 1192, 2780, 2990, 4042, 23652, 1983], + "jison", + [2, 5249, 23751], + [ + 0, 200, 15215, 23634, 1623, 1936, 2265, 5284, 2262, 14137, 2632, 3178, 6707, 6708, 4405, 23635, 1644, 57, 4072, + 23637, 2280 + ], + [1, 2343, 16025], + [0, 16026, 16027, 16028, 34352], + [0, 3524], + [0, 4389, 4255, 4387, 3524], + [0, 1936, 2636, 3520, 3521, 6710], + [1, 2343, 16030], + [0, 16031, 16032, 16033, 2537], + [0, 15487, 2616, 3872, 4309], + [ + 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 10817, 23572, 5366, 4874, 4880, 4883, 17214, 32818, 7677, + 1317, 1177, 1955, 10964, 1978, 2203, 2675, 2990, 3541, 3698, 23535, 89, 3824, 4042, 4201, 4474, 91, 4523, 1984 + ], + [0, 2639, 1936, 89, 57, 965], + [1, 2343, 16035], + [0, 0, 16036, 16037, 2523], + [0, 1166, 1448, 1906], + [0, 1936, 12075, 2640, 11513, 3392, 7102, 12616, 23670, 23674], + [1, 2343, 16039], + [0, 0, 16040, 16042, 2399], + [ + 0, 2675, 2742, 2297, 4484, 1177, 4039, 4042, 1894, 1596, 3536, 91, 3400, 2766, 3720, 2898, 23689, 2886, 23687, + 19965, 13207, 2923, 23681, 23683, 2881, 23679, 6059, 23686 + ], + "wcwidth", + [0, 12197, 23691, 1424, 1936, 965, 158, 13814, 8221], + [1, 2343, 16044], + [0, 16045, 0, 16046, 2523], + [0, 23696, 1699, 1754, 2654, 23699], + [0, 1936, 202, 2585, 18641, 19096, 15253], + [1, 2343, 16048], + [0, 16049, 0, 16050, 2523], + [0, 23708, 23709, 1091, 2070, 2929, 3183, 3742, 4135], + [0, 1936, 671, 1155, 2650], + [1, 2343, 16052], + [0, 16054, 16055, 16058, 34352], + "array-back", + [0, 23736, 2635, 1209, 3716, 4388], + [ + 0, 192, 5467, 4874, 1610, 1622, 1628, 1652, 21468, 1177, 17589, 2629, 2675, 1192, 2990, 3177, 3400, 1894, 3754, + 23738, 3786, 4039, 4257, 4307, 91, 2924, 4677, 23742 + ], + "find-replace", + "typical", + [0, 2924, 1932, 1936, 2651], + [1, 2343, 16060], + [0, 16061, 16062, 16063, 2537], + [0, 16022, 1525, 1595, 3692], + [ + 0, 442, 19344, 23339, 6503, 4874, 34737, 1414, 1637, 1177, 23753, 1938, 32525, 27790, 2022, 2203, 2899, 3561, + 3759, 23631, 4039, 23754, 4361, 4072, 91, 4523, 22946 + ], + [0, 3692, 23757, 1936, 23760, 2632], + [2, 1437, 2324], + "table-", + "table-layout", + [1, 2343, 16068], + [0, 16069, 16070, 16071, 2523], + [0, 18087, 15487, 15488, 18089], + [0, 442, 4874, 7677, 1177, 1895, 1953, 1982, 2203, 1894, 4483, 91, 4523, 1984], + [0, 1936, 57, 7046, 6523, 965, 23767, 6084, 16179], + [1, 2343, 16073], + [0, 16074, 16075, 16076, 2487], + [0, 1704, 2713, 20099, 4266, 23775], + [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421], + [0, 27, 1851], + "cached", + "cachedir", + "find-n", + "ode-", + "ode-modules", + [2, 16079, 16081], + "is-u", + [1, 2343, 16086], + "is-utf8", + [0, 16093, 16097, 2514, 2399], + [3, 549, 23], + [2, 16087, 1172], + [2, 12772, 8532], + [2, 1652, 16089], + "-reporters", + [2, 11086, 16091], + [0, 2017, 23783, 2131], + [3, 1566, 12], + " changelog", + [2, 16094, 16095], + [0, 4729, 3421, 23785, 1149, 2899, 4135, 2025, 4218, 1537, 1159, 4220], + [1, 2343, 16099], + [0, 16100, 16101, 16102, 2523], + [0, 23791, 1676], + [0, 5245, 5087, 4874, 1151, 1192, 4468, 91, 2658, 2190], + [0, 27, 2658, 6652, 4575], + [1, 2343, 16104], + [0, 16105, 16106, 16118, 2537], + [0, 10406, 1676, 2659, 2743, 2747, 3170], + [ + 0, 192, 5467, 442, 5245, 5601, 6494, 19386, 5087, 8778, 4874, 9240, 9241, 1364, 1177, 1895, 1955, 2026, 2182, + 2203, 2675, 1192, 2990, 23800, 3445, 5561, 20085, 1894, 4342, 4468, 91, 4523, 4729 + ], + "es2015-tag", + "es6-tag", + "heredoc", + "indents", + "literal", + "multiline", + "oneline", + "single", + "singleline", + "strings", + "tagged", + [0, 17179, 2658, 2663, 27, 2671, 1544, 2026, 2078, 23802, 23803, 1387, 2323, 2256, 4699, 4729, 1594], + [1, 2343, 16120], + [0, 16121, 16122, 16124, 2537], + [0, 2591, 3171, 1437, 23808, 23809, 3456, 3183, 4566, 1304, 2659, 3560, 23811, 2623], + [0, 23813, 4384, 1177, 2026, 705, 23816], + "observe", + [0, 200, 1523, 2947, 27, 2671, 2665, 23818, 36], + [1, 2343, 16126], + [0, 0, 16127, 16129, 2537], + [ + 0, 4493, 2675, 2899, 1177, 4170, 4474, 1894, 442, 1529, 91, 4874, 2990, 19193, 6503, 16954, 192, 4257, 19335, + 4523, 1951, 1895, 1955, 5467 + ], + "on-headers", + [0, 27, 1544, 4967, 6622, 2026], + "compressible", + [1, 2343, 16132], + [0, 0, 16133, 16134, 4139], + [0, 4864, 5087, 23829, 1009, 1011, 1177, 1883, 1938, 2151, 1192, 3117, 4468, 4473, 4474, 91], + [0, 202, 27, 18413, 23831, 23832, 6622, 5281], + [1, 2343, 16137], + "buffer-from", + [0, 0, 0, 16138, 2537], + [0, 2671, 23837], + [1, 2343, 16140], + [0, 16143, 16147, 16153, 2537], + "-command", + [2, 1614, 16141], + [0, 1676, 23791], + "@hirez_io/observer-spy", + "@swc/jest", + [3, 7749, 12], + [0, 1192, 2658, 4468, 2190, 91, 5087, 4874, 1154, 5245, 1151, 23843], + "-quote", + [2, 16146, 16148], + [2, 1596, 4845], + "ctrlc-wrapper", + [2, 32524, 2994], + [0, 2671, 2658, 6652, 4575], + "instance", + [1, 2343, 16156], + [0, 0, 0, 16157, 2399], + [0, 3358, 582, 3697], + [1, 2343, 16161], + "bash", + "sh", + [0, 16162, 9264, 16163, 2443], + [0, 16136, 15019, 4431], + [0, 3101, 27, 4714, 705, 3038, 3689, 10074, 6865, 6704, 21360], + [1, 2343, 16165], + [0, 0, 16169, 16170, 2523], + "cson", + "hjson", + "x2js", + [0, 6061, 21120, 6063, 1570, 1177, 1895, 23860, 1894, 4042, 4131, 4389], + [0, 23862, 590, 1623, 1420], + "fig", + "node-config", + [1, 2343, 16175], + "config-node", + [0, 0, 10435, 16176, 2523], + [0, 23868, 23869, 23870, 4545, 23872, 23874, 23875, 23876, 3547, 23877, 23878, 23879, 23881, 23883], + [1, 2343, 16178], + [0, 16180, 16182, 16183, 2537], + "atom", + [0, 23888, 1676, 23891, 23894, 23897, 3257], + "atomically", + [ + 0, 1149, 1575, 1177, 1895, 1903, 1938, 1954, 1955, 1958, 1970, 2026, 2675, 2990, 2899, 3421, 1894, 4170, 4193, + 4745, 4342 + ], + [0, 1283, 2679, 6728], + "xdg-basedir", + [1, 2343, 16187], + "prefer", + [0, 6263, 16190, 16191, 2523], + "preferences", + "persist", + [ + 0, 27386, 53, 5749, 5241, 83, 85, 87, 90, 94, 5583, 811, 816, 10615, 4874, 1009, 1011, 7677, 1290, 1596, 1597, + 1177, 1881, 1895, 1915, 1938, 23909, 2675, 23913, 23915, 23917, 23921, 23926, 2990, 1894, 4039, 4042, 4193, 91, + 1984 + ], + [0, 2681, 23932, 2679, 8930, 23933, 6728, 23934, 23936], + [1, 2343, 16193], + [0, 0, 16194, 16195, 2537], + [0, 442, 10817, 6061, 6063, 1009, 1011, 1177, 1895, 1955, 2203, 1894, 4042, 4057, 4131, 91], + [0, 2681, 23942, 5995, 1932], + "rack", + [1, 2343, 16198], + [0, 16199, 16200, 16201, 2537], + [0, 23948], + [0, 3421, 1149, 23950, 8431, 2899, 23952, 1177, 4135, 705, 27387, 91, 4874, 2024, 29197, 5517, 19344, 7844], + [0, 8431, 6270, 8426, 8425], + "flash", + [1, 2343, 16204], + [0, 16205, 16206, 16207, 2523], + [0, 23960], + [0, 1175, 1193, 1267, 1272, 1596, 1177, 1881, 1938, 2774], + [0, 2658, 23964, 13445, 1192, 3212], + [1, 2343, 16209], + [0, 0, 16210, 16212, 2537], + [0, 48, 53, 87, 1009, 1676, 1177, 23971, 1938, 3188, 23974, 4039, 23975, 4384, 4449, 4474, 91], + "kruptein", + [0, 2687, 23977, 16774, 3410, 3624, 10057, 7131, 6961, 1108, 21541, 2070, 23980, 23982], + [1, 2343, 16214], + [0, 0, 16215, 16216, 2487], + [0, 1414, 2070, 4493, 4474, 4508, 91, 4865, 4874, 11976], + [ + 0, 158, 4202, 23989, 23992, 4289, 18081, 12350, 20650, 20733, 20639, 20709, 23993, 20651, 20680, 21881, 20752, + 18048, 20653, 8221, 23994, 23995, 12349 + ], + [1, 2343, 16218], + [0, 16219, 16220, 16221, 2523], + [0, 24003, 18525, 4207, 2205, 24004, 2096, 6639, 29721, 20624, 22246], + [0, 1906, 1166, 1700, 4400, 18051, 24006, 18047], + [0, 3178, 15215, 158, 11806, 21881, 20637, 18048, 20639, 8221], + [1, 2343, 16223], + [0, 16224, 16225, 16226, 2523], + [0, 24003, 2020, 24012, 6639, 24013, 20624], + [0, 1414, 1906, 1166, 91, 4874], + [0, 15215, 158, 24016, 3178, 6707, 18048, 24017], + [1, 2343, 16228], + [0, 16229, 0, 16236, 2399], + [0, 24022, 3923], + "defu", + "nicode-supported", + [2, 16083, 16231], + "sentence", + "sentencer", + "sisteransi", + [0, 2695, 18641, 1823, 24024, 5576], + "reporter", + "elegant", + "clack", + "stacktrace", + [1, 2343, 16242], + [0, 0, 16243, 16244, 34352], + [ + 0, 53, 4874, 7677, 1596, 24029, 24030, 2126, 2675, 2700, 24032, 1209, 3028, 1894, 3720, 3875, 4039, 24033, 4131, + 4493, 33863, 91, 1983, 1984 + ], + [0, 2700, 24036, 24038], + "arc-templates", + "brac", + "ket-template", + [2, 16246, 16247], + "dust", + "js-helpers", + [2, 16249, 16250], + "dustjs-", + [1, 2343, 16254], + [0, 0, 16258, 16266, 4139], + "linkedin", + [2, 16252, 16255], + "eco", + [0, 24045, 5087, 1596, 1192, 4039, 4468, 4487, 91], + "haml-coffee", + "hamlet", + "htmling", + "jazz", + "jqtpl", + "just", + "liquid-node", + [0, 24047], + "liquor", + "mote", + "plates", + "qejs", + "ractive", + "slm", + [2, 4371, 2229], + "teacup", + "tinyliquid", + "toffee", + "twig", + "twing", + "vash", + "velocityjs", + "walrus", + "whiskers", + [1, 2343, 16285], + "engine", + [0, 0, 0, 16286, 2537], + [0, 2700, 7007, 7189, 2382, 6957, 6564, 6910, 7282, 6769, 6917], + [1, 2343, 16288], + [0, 9670, 16289, 16291, 2523], + [0, 1166, 2592, 4481, 1906], + "rfc6266", + [0, 3209, 2325, 15759, 15760, 1237, 2145, 24057], + [1, 2343, 16293], + [0, 16294, 16295, 16297, 2487], + [0, 3537, 13780], + [0, 1166, 16499, 1700, 2020, 1906], + "rfc7231", + [0, 1204, 2703, 3209, 814, 2202, 15525, 16186, 200], + [1, 2343, 16299], + [0, 16300, 16301, 16302, 2523], + [0, 24069, 24073, 24075, 24077, 24078, 24080, 24081], + [0, 4874, 9241, 1177, 24085, 1894, 91], + [ + 0, 13527, 36, 24088, 24089, 1965, 20986, 24090, 5592, 17829, 24091, 11100, 24092, 4030, 7096, 5122, 5130, 38, + 7433, 24093, 7223, 6599, 27, 2671, 4699, 14609, 24095, 1896, 5995, 12660 + ], + [1, 2343, 16304], + [0, 0, 8134, 16305, 2399], + [0, 8958, 1871, 2966, 14903, 3924, 2585, 1794, 7067], + [3, 1567, 23], + [2, 16306, 1098], + [3, 1570, 25], + "@conventional-changelog/git-client", + [2, 16308, 23], + [2, 16306, 1177], + [1, 2343, 16313], + [0, 16314, 16315, 16317, 4139], + [0, 23184, 1366, 23187, 2607, 2812, 3084], + [0, 1501, 2556, 620], + "tom", + [0, 2090, 7204, 1852, 2556, 1932], + [1, 2343, 16319], + [0, 16320, 16324, 16325, 2487], + [0, 1639, 24114, 6330], + [2, 10832, 1194], + [2, 16306, 16321], + [2, 4402, 4202], + [0, 24118, 24117], + [0, 2711, 6681, 5130, 10772, 24120, 1936, 24122, 36, 965, 1388, 4042, 23361], + [1, 2343, 16327], + [0, 0, 16328, 16331, 2537], + [0, 91, 1984], + "add-stream", + "tempfile", + [0, 2712, 24128, 24129, 3547, 23877, 23870, 4545, 24130, 10915, 23872, 23878, 23874, 23879, 23881, 23883, 23875], + [1, 2343, 16333], + [0, 0, 11686, 16334, 2399], + [0, 24136, 1227, 24137, 24138, 24140, 2713, 1388, 1389], + [1, 2343, 16336], + [0, 0, 6538, 2514, 2523], + "compare-func", + [1, 2343, 16339], + [0, 16343, 16344, 16345, 2523], + "commits.org", + [2, 16094, 16340], + "preset", + [ + 0, 24151, 1107, 1110, 24152, 1437, 1471, 1477, 1486, 13763, 16485, 2709, 20044, 24153, 14676, 4116, 4174, 4208, + 13781, 4290, 16323, 4507, 9731, 4726, 4729, 24154 + ], + [ + 0, 15288, 13789, 826, 24156, 4874, 4880, 24157, 34148, 24162, 6513, 24164, 9241, 24165, 1166, 1371, 1702, 24166, + 1959, 1961, 3242, 3339, 3479, 1894, 89, 24169, 4193, 4294, 4474, 91, 1906 + ], + [0, 89, 200, 1219, 8634, 4963, 6876, 3698, 3875, 24171, 8924, 1512, 2585], + [1, 2343, 16350], + "inline-s", + [3, 5588, 9], + [2, 16347, 16348], + [0, 0, 16351, 16352, 2443], + [ + 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 1623, 1177, 1955, 10964, 2203, 2675, 1192, 2990, 3400, 1894, + 23535, 4042 + ], + [0, 2718, 24177, 590, 57, 1623], + [1, 2343, 16354], + [0, 0, 0, 16355, 2487], + [0, 24182, 24183, 18496, 6574, 7242, 21779, 202, 200], + "top-sites", + [1, 2343, 16359], + "cookies", + [0, 16360, 16361, 6151, 2537], + [0, 31874, 546, 8998, 8605, 8612, 24188, 4094], + [0, 8608, 91], + [1, 2343, 16363], + [0, 16364, 16365, 16366, 2443], + [0, 1107, 2089, 3527, 24188, 4094], + [0, 2126, 2163, 2720], + [ + 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 1836, 6847, 8625, 2720, 8626, 8628, 5284, 4403, 202, 6710, 3741, + 8630, 3742, 8631, 3925, 2184, 8634, 7009, 6621, 181, 8635, 4758, 8636 + ], + [1, 2343, 16368], + [0, 16369, 0, 16370, 4139], + [0, 24202, 1512], + [0, 24204, 202, 9143, 13392], + [1, 2343, 16372], + [0, 0, 16373, 16374, 2487], + [0, 1734, 2899, 24209, 4072], + [0, 5260, 3209, 10906, 24211, 1388, 24213, 1808, 1161], + "sign", + "unsign", + [1, 2343, 16378], + [0, 0, 16379, 16380, 4139], + [0, 1177, 1889, 1954, 2022, 2822, 2899, 3421, 20314, 3932, 3985, 24220, 4167], + [0, 1507, 24223, 1509, 3595, 5194, 676, 1781, 2856, 1219, 89, 24224, 4452, 4799, 91, 6523, 4745, 17307], + "-selection", + [2, 15813, 16381], + [1, 2343, 16386], + "@brettz9/node-static", + "-standa", + [0, 0, 16390, 16391, 4139], + "lone-jar", + [2, 16385, 16387], + [2, 13131, 16388], + [ + 0, 1149, 1173, 1178, 1240, 24231, 24234, 1245, 1257, 1267, 24235, 1280, 24237, 24241, 24245, 24247, 24249, + 24251, 24254, 24257, 24259, 24262, 24264, 24266, 24269, 24272, 1474, 1498, 1177, 24273, 2099, 2070, 2228, 2240, + 2247, 2258, 24274, 24275, 2272, 3188, 3435, 4039, 4042, 4045, 4055, 24278, 13674, 4069, 4077, 22031, 4151, 4652 + ], + [0, 2728, 2679, 23932, 24282, 6422], + [1, 2343, 16393], + [0, 0, 16394, 16395, 2537], + [ + 0, 19, 21, 24, 26, 32, 5241, 92, 8648, 840, 968, 974, 4874, 4880, 4883, 1009, 1011, 11016, 33975, 1198, 1622, + 668, 1177, 1915, 1938, 1939, 1959, 1961, 2075, 24289, 10697, 24291, 2228, 2239, 2240, 2247, 2256, 2263, 2283, + 24295, 2308, 2314, 2665, 1192, 2780, 2814, 3003, 3541, 1894, 10622, 89, 3824, 2278, 4164, 3709, 4436, 4474, 91, + 1983, 26744, 188, 13151, 4769 + ], + [ + 0, 24298, 24299, 24302, 7285, 7310, 5131, 6847, 7210, 5399, 5284, 1932, 1623, 1936, 7020, 6983, 89, 188, 1098, + 3709, 4627, 91 + ], + [2, 4865, 2199], + "rmalize-path", + [2, 10409, 16397], + "rialize-javascript", + [2, 5252, 16399], + "@webpack-c", + "ontr", + "ib/eslint-config-webpack", + [2, 16402, 16403], + [2, 16401, 16404], + [1, 2343, 16408], + "is-gzip", + [0, 16409, 16411, 16412, 2523], + [0, 3082], + "transfer", + [0, 1389, 2126, 4384], + [0, 1973, 2731], + [1, 2343, 16414], + [0, 16416, 16417, 16418, 2487], + "noms", + [0, 16579, 16585, 23711], + [0, 4874, 7677, 1177, 1894, 3951, 4039, 4042, 4469, 4484, 91, 1984], + [0, 14428, 24316, 14416, 24319, 24320, 5284, 202, 91], + [1, 2343, 16420], + [0, 16422, 16426, 16427, 2523], + "qr", + [ + 0, 4390, 1687, 24346, 3445, 3348, 1437, 1676, 4484, 1209, 4135, 4238, 6331, 4431, 24347, 4339, 24345, 24332, + 24337, 22651, 24349, 24335, 24340, 24327, 24338, 24339, 24344, 24343, 24329 + ], + "simple qr", + "npm qr JavaScript", + "js qr code", + [ + 0, 1192, 4039, 4487, 4468, 2774, 13214, 4227, 91, 17577, 5087, 4874, 24354, 7819, 2990, 5245, 4870, 5254, 24358, + 24356, 18435, 24360, 24352 + ], + [0, 2733, 24362, 24363, 5131, 1896, 24364, 1591, 970, 3525], + [1, 2343, 16429], + [0, 16433, 16434, 16436, 2523], + [3, 1590, 15], + "sample", + [2, 16430, 16431], + [0, 8641], + [0, 8648, 4864, 5087, 4874, 24370, 2151, 1192, 2774, 27442, 3401, 1894, 3758, 4039, 4135, 4146, 4361, 4494, 91], + [2, 16423, 1501], + [0, 24373, 2733, 1017, 8221, 5131, 20523, 4627, 24374, 5027, 12295], + [1, 2343, 16438], + [0, 16439, 16440, 16441, 2537], + [0, 24379, 24382, 1676, 24383, 3032, 24386, 24389, 24391, 24393], + [ + 0, 24397, 6061, 16607, 6063, 4856, 9417, 5245, 24398, 24400, 6503, 4874, 24403, 6513, 1009, 1011, 1429, 1431, + 1177, 1895, 2899, 3421, 1894, 4131, 4153, 4193, 4474, 4481, 4508, 91, 3348 + ], + [0, 1552, 24093, 24406, 24408], + "insight", + "-lib", + "cordova-lib", + "cordova-", + [2, 16445, 10896], + "cordova-c", + "reate", + [2, 16447, 16448], + "loud-rejection", + [1, 2343, 16455], + "@cor", + "dova/eslint-config", + [2, 16452, 16453], + [0, 0, 16456, 2514, 4139], + [0, 2899, 1177], + [1, 2343, 16458], + [0, 16459, 16463, 2514, 2523], + [0, 24416, 8431, 24419], + "4", + "ES2024", + [2, 6796, 16460], + [0, 24421, 2080, 2292, 4389], + [1, 2343, 16465], + [0, 0, 16466, 16467, 2537], + [0, 1158, 3421, 4389, 1177, 14741, 2708, 4103, 13614, 15059], + [0, 614, 998, 1973], + [1, 2343, 16469], + [0, 16470, 16471, 9636, 34352], + [0, 1458], + [0, 1470, 4255], + [1, 2343, 16475], + "env-paths", + "parse-json", + [0, 16486, 16487, 16488, 2537], + "arse-", + "arse-json", + [2, 5088, 16477], + [3, 7677, 17], + [2, 16479, 2759], + "davidtheclark-node", + [2, 1884, 16481], + [3, 16481, 13], + [2, 3996, 16483], + "es-toolkit", + [0, 24437], + [0, 2398, 2899], + [0, 16159, 15643, 4354, 2978, 7256, 24440, 2070, 21543, 24441, 2741, 3529, 6421, 13017, 1108, 6920, 1871, 1973], + [1, 2343, 16490], + [0, 16493, 16494, 16495, 2443], + "lcov-parse", + "log-driver", + [0, 24446, 17450], + [0, 1166, 16499, 1700, 2020, 3093, 4481, 1906], + [0, 2202, 3383, 24449, 1237, 1161, 24450, 3378, 4749, 2741, 4354, 13735, 2703, 24451, 200, 20052, 17180], + [1, 2343, 16497], + [0, 0, 8134, 16498, 2487], + [0, 3048, 2741, 4354, 1973, 998, 19096, 24456, 7523, 2869], + "cpy", + [1, 2343, 16501], + [0, 0, 16505, 16506, 34352], + "cp", + [3, 12419, 11], + "contents", + [0, 1429, 1999, 2398, 2899, 3198, 4042], + [0, 4354, 2741, 24462, 2757, 5284, 24463, 20273, 3048, 19096, 998, 7031, 6692], + [1, 2343, 16508], + [0, 0, 16510, 16514, 2523], + "hpagent", + [0, 2899, 3954], + "http2-wrapper", + "seenreq", + "tslog", + [0, 1936, 24374, 24470, 11608], + "@types/got", + [1, 2343, 16519], + "spider", + "gzip", + [0, 0, 16520, 16521, 2523], + [0, 4874, 1166, 4400, 4481, 1906], + [0, 3101, 998, 7046, 7089, 7017, 6704, 353, 4354, 13735, 2741], + [1, 2343, 16525], + "crc16ccitt", + "crc16", + [0, 16527, 16529, 16535, 2523], + "crc16kermit", + [0, 24488], + "crc16modbus", + [0, 1166, 24491, 4481, 1906], + "crc16xmodem", + "crc1", + "crc24", + "crc81wire", + "crc8", + [0, 4354, 24493, 6574, 24494, 6667, 13735, 16159, 3729, 7201, 7009, 2741], + "crc8dvbs2", + "crcjam", + [1, 2343, 16539], + [0, 0, 9264, 16540, 2443], + [0, 1388, 2756, 4552], + [1, 2343, 16545], + "cipher-base", + "ripemd160", + "sha.js", + [0, 0, 16546, 16547, 2443], + [0, 1999, 2398, 2899, 4042], + [0, 4354, 2741, 24462, 2757, 24463, 20273, 24504, 970, 3048, 998, 7031, 6692], + [1, 2343, 16549], + [0, 16550, 16551, 2514, 2523], + [0, 3310, 4705], + [0, 1429, 2272, 24512, 2899, 3297], + [1, 2343, 16553], + [0, 16554, 16555, 16556, 2537], + [0, 2070, 3368, 3441, 1149, 4707, 23432, 3188, 2003, 2822, 814, 4720, 1875, 2036, 4351], + [0, 2272, 4039, 2276, 1596, 4019], + [0, 4504, 24520, 24521, 24525], + "async-t", + "-tree", + "raverse-tree", + [2, 16557, 16559], + "css-u", + "rl-parser", + [2, 16561, 16562], + "uri-to-", + [2, 16564, 1398], + [2, 14678, 16565], + [1, 2343, 16577], + "group-args", + "inline-", + [2, 16569, 1604], + "oust", + "penthouse", + [3, 3591, 15], + [3, 3611, 14], + "inliner", + [2, 16574, 16575], + [0, 16582, 11580, 16583, 2537], + "postcss-url", + "@inversifyjs/common", + "newline", + [2, 3370, 16580], + [0, 2152, 3348, 18545], + [0, 2760], + "stream-array", + [2, 23712, 29231], + [1, 2343, 16588], + "optimization", + [0, 16589, 16590, 16591, 2523], + [0, 1156, 1699, 1817, 24536, 3070, 3559, 4443, 24537], + [ + 0, 24539, 1173, 1175, 1191, 1195, 1201, 1220, 1230, 24541, 1245, 1255, 18571, 1264, 1279, 1282, 1429, 24542, + 1584, 1610, 1628, 1177, 1988, 2054, 2092, 2148, 2323, 2332, 2361, 2450, 2494, 2629, 2651, 2297, 2881, 2886, + 2900, 18260, 2921, 2923, 2925, 695, 2969, 21082, 2899, 4193, 4196, 4307, 4487, 91, 4537, 4027, 188, 4632, 24545, + 4634, 4639, 4640, 4645, 2924, 4681, 4689 + ], + [0, 2761, 188, 6284, 4627, 4963, 181, 5130], + [1, 2343, 16594], + "@fast", + [0, 16613, 6161, 16614, 2537], + "-check/jest", + [2, 16593, 16595], + "@insurgent/commitlint-config", + [3, 16597, 13], + "nvent", + "ional-changelog-preset", + [2, 16599, 16600], + [2, 16598, 16601], + [3, 6061, 19], + "ommit", + "-analyzer", + [2, 16604, 16605], + [2, 16603, 16606], + [2, 6062, 3378], + "-generator", + [2, 11155, 16609], + [2, 6019, 16610], + [2, 6062, 16611], + [0, 548], + [0, 7233, 57, 7058, 5675, 7210, 200, 1523, 3924, 1644, 7119], + "node cron", + [1, 2343, 16620], + "node-cron", + "schedule", + "cronjob", + [0, 16622, 16623, 2514, 2537], + "cron job", + [0, 24560, 1462, 1525, 24562, 24563, 3188, 24564, 4535, 24566, 5056], + [ + 0, 24570, 24571, 1596, 2026, 24574, 2034, 24576, 24577, 24581, 24584, 24587, 24591, 24592, 24593, 24594, 24596, + 24598, 24599, 3127, 3456, 24600, 4039, 24601, 24602 + ], + [1, 2343, 16625], + [0, 16627, 16628, 16632, 2523], + "tz", + [0, 1149, 24607, 3527], + [0, 442, 1177, 10751, 2203, 2899, 3760], + "timer", + "tab", + "crontab", + [0, 6147, 200, 7048, 24610], + [1, 2343, 16634], + [0, 16635, 16648, 16651, 2537], + [0, 24617], + "@prantlf/jsonlint", + "@prettier/plugin-xml", + "@stryker-mutator/core", + [3, 16638, 17], + [2, 3192, 8791], + [2, 16639, 16640], + [3, 15909, 16], + "ray-func", + [2, 16642, 16643], + [3, 13097, 17], + "unsanitized", + [2, 16645, 16646], + [ + 0, 5583, 816, 6373, 10615, 11301, 24621, 24624, 1462, 1610, 24625, 2675, 2814, 16830, 2990, 3170, 24627, 4042, + 8849, 20983 + ], + "metalint", + "yaml-lint", + [0, 24631, 158, 12083, 24633, 24634, 20634], + [1, 2343, 16653], + [0, 16654, 16655, 16659, 2487], + [0, 2070, 2766, 23576], + [0, 1177, 24287], + [2, 1601, 7179], + [3, 3606, 9], + [2, 16657, 2408], + [0, 1973, 5472, 2765, 6969, 5982], + "zoom", + "rotate", + "scale", + "cropper", + "cropper.js", + [1, 2343, 16667], + [2, 29236, 594], + [0, 0, 16668, 16659, 2523], + [0, 19181, 442, 1137, 24645, 1797, 1177, 1924, 2070, 2203, 2832, 1894, 2278], + [1, 2343, 16670], + [0, 16671, 0, 16672, 2523], + [0, 2164, 3188, 24653, 4019, 4545, 1509, 24652, 24651], + [0, 5472, 5982], + "ironment", + [2, 1610, 16673], + " variable", + [2, 6639, 16675], + [1, 2343, 16678], + [0, 16679, 0, 6183, 2537], + [0, 551, 554, 2704, 2774], + [1, 2343, 16681], + [0, 16682, 16683, 16684, 2487], + [0, 24665, 24666], + [0, 14671, 48, 53, 61, 87, 192, 22559, 1193, 24668, 1596, 2675, 1192, 1894], + [0, 3212, 1192, 11944, 1795, 1424, 1973, 2275], + [1, 2343, 16686], + [0, 16689, 16695, 6183, 2487], + "path-key", + [2, 6987, 16141], + [0, 551, 8762, 554, 1437, 29680, 2704, 8734, 2798, 8747, 4747], + [3, 10688, 14], + "oxy", + [2, 16690, 16691], + [3, 15793, 15], + [2, 16693, 16691], + [0, 4892], + "spawnSync", + [2, 1611, 12344], + [1, 2343, 16700], + "path-ext", + [0, 16702, 16703, 2514, 2487], + "execute", + [0, 16729, 13002, 1437, 3717], + [0, 8776], + [1, 2343, 16705], + [0, 16706, 16703, 2514, 2523], + [0, 24690, 16738, 13204, 4874, 2832], + [1, 2343, 16708], + [0, 16714, 16715, 2514, 2537], + "cipher", + [2, 13888, 16709], + [3, 1391, 12], + "ign", + [2, 16711, 16712], + [0, 24690, 24694, 554, 11944, 2798, 2832], + [0, 5087, 13204, 4874, 2675, 1192, 3188, 1894, 3720, 4039, 4468, 91], + "create-ecdh", + [1, 2343, 16727], + "mac", + "create-hmac", + "ie-hellman", + [2, 1687, 16720], + "pbkdf2", + "publi", + "c-encrypt", + [2, 16723, 16724], + "randomfill", + [0, 16730, 16731, 2514, 34352], + [2, 6426, 3779], + "@jest/diff-sequences", + [0, 24690, 24694, 554, 4874, 11944, 2798, 8747], + [0, 8776, 1497], + [1, 2343, 16752], + "Hash", + "MD5", + "SHA1", + "SHA-1", + "SHA256", + [2, 24690, 20072], + "SHA-256", + "RC4", + "Rabbit", + "AES", + "DES", + "PBKDF2", + "HMAC", + "OFB", + "CFB", + "CTR", + "CBC", + "Base64", + "Base64url", + [0, 16753, 16754, 16755, 2523], + [0, 2777], + [ + 0, 107, 19438, 19181, 442, 20076, 5087, 1009, 1011, 1177, 1895, 1915, 1938, 1939, 1955, 2203, 2675, 1192, 24713, + 2802, 2990, 1894, 4468, 12206, 91 + ], + [0, 1192, 24715, 2051, 24717, 1973, 5472, 5710], + [1, 2343, 16760], + "roupon", + [2, 1887, 16757], + "nlm", + [0, 16761, 16762, 16763, 2537], + [0, 2151, 3445], + [ + 0, 53, 24723, 841, 968, 972, 974, 24725, 5087, 24727, 4874, 24729, 4880, 4883, 14552, 1114, 1193, 1195, 1216, + 1270, 1324, 1393, 1420, 1426, 1582, 1628, 1630, 1652, 1759, 1763, 1869, 1177, 1898, 24732, 2054, 2092, 2151, + 2651, 2686, 1192, 2797, 2802, 24733, 3177, 3376, 3561, 3605, 3618, 3647, 3672, 3742, 24734, 89, 3803, 3816, + 3824, 3878, 24737, 814, 4028, 2278, 4111, 4135, 4230, 4307, 4383, 4409, 91, 4027, 24739, 2924, 4676, 4681, 4686, + 4723 + ], + [0, 1192, 1936, 16237, 11937, 1932], + [1, 2343, 16776], + "@cspell/cspell-json-reporter", + [3, 16765, 15], + [2, 16766, 7170], + [2, 16766, 553], + "@cspell/", + [2, 16769, 15126], + "@cspell/url", + [2, 1622, 4304], + "cspell-", + "gitignore", + [2, 16773, 16774], + [0, 16777, 16784, 2514, 2537], + [0, 3188, 4294, 3348, 6523], + "cspell-glob", + "cspell-io", + "cspell-lib", + [2, 2068, 2851], + "entry-cache", + [2, 2093, 16782], + [0, 1192, 24746, 4207], + "@types/fi", + "le-entry-cache", + [2, 16785, 16786], + [1, 2343, 16795], + "spell", + "checker", + "spelling", + " checker", + "spell checker", + [2, 16791, 16792], + [0, 0, 0, 16796, 2523], + [0, 1192, 4749, 24753, 24754], + [1, 2343, 16798], + [0, 16800, 16801, 2514, 2487], + [2, 4229, 814], + [0, 1437, 2215, 8750, 2796, 2798, 8747, 4207, 12578], + [0, 8780, 1002], + [1, 2343, 16803], + [0, 16809, 16810, 2514, 4139], + "@rspack/cli", + "@mdn/browser-compat-data", + [3, 1200, 15], + [2, 16806, 6437], + [2, 812, 16807], + [0, 554, 4874, 1437, 1458, 2215, 3530], + [0, 8780, 20374, 1209], + "sorter", + [1, 2343, 16813], + [0, 16814, 16815, 2514, 2523], + [0, 1107, 1437, 8758, 8741, 4207, 15826, 4294], + [ + 0, 48, 53, 87, 92, 442, 11893, 554, 6061, 6063, 4874, 1193, 17217, 1610, 1177, 1895, 1915, 32525, 1939, 1955, + 2203, 1192, 24713, 1894, 4039, 4131, 4135, 91, 4523 + ], + [1, 2343, 16829], + "-verify", + [2, 13729, 16817], + [3, 4828, 15], + "itpick", + [2, 16819, 16820], + [3, 15801, 21], + "hangelog", + [2, 16822, 16823], + [2, 8184, 8166], + "version-", + [2, 16826, 13729], + "write-", + [0, 16832, 16833, 2514, 2487], + "json-file", + [2, 16828, 16830], + [0, 4874, 23247, 2798, 3159, 4351], + [0, 53, 24781, 9746, 23262, 2188, 24779, 24777], + [1, 2343, 16835], + [0, 16836, 16844, 16845, 2537], + [ + 0, 18635, 24786, 27788, 27793, 27795, 27796, 27797, 27802, 27813, 27817, 27820, 27825, 27832, 27833, 27834, + 27841, 27844, 27870, 27878, 27879, 27880, 27881, 27883, 27884, 27887, 24789, 27888 + ], + "icss-utils", + [3, 3638, 16], + [2, 2055, 5651], + [2, 16838, 16839], + [2, 16838, 1993], + [2, 16838, 6693], + "@hapi/address", + [ + 0, 27890, 27893, 27895, 24793, 8862, 811, 15460, 816, 10615, 17214, 1177, 27898, 3502, 4042, 4057, 15277, 23652, + 4483, 91, 27900, 1984 + ], + [0, 158, 24795, 24799, 18048, 20637, 21881, 20650, 24800, 16662, 12712], + [1, 2343, 16847], + [0, 0, 16848, 2514, 2487], + [ + 0, 53, 5652, 5226, 56, 15659, 71, 5704, 5712, 4851, 5785, 5874, 5889, 92, 5230, 101, 104, 16804, 33146, 10879, + 10883, 15693, 24807, 31666, 4874, 7677, 1082, 24813, 1446, 1541, 1556, 16230, 14856, 1874, 1177, 1905, 2007, + 984, 2071, 2744, 3171, 3189, 3222, 15726, 3510, 15450, 3698, 28423, 1894, 89, 3824, 3951, 15728, 15452, 4409, + 26379, 4469, 91, 1984, 188, 20040, 4763 + ], + [1, 2343, 16859], + "@parcel/css", + "@swc/css", + [3, 9740, 13], + [2, 16852, 1623], + "@types/csso", + "set-simple", + [2, 11327, 16855], + [2, 1637, 16856], + "csso", + [0, 0, 0, 16861, 2487], + "lightningcss", + [0, 6105, 24822, 24827, 6106, 24829, 24830, 1936, 2585, 6038, 24832, 5284, 91, 24833, 2808], + "minimize", + [3, 1629, 9], + [1, 2343, 16865], + [0, 16866, 16867, 16869, 2537], + [0, 2808], + [ + 0, 19438, 23339, 842, 966, 972, 974, 4880, 4883, 1009, 1011, 1610, 1628, 1177, 1895, 1955, 1959, 1961, 1985, + 2651, 2832, 1894, 89, 3824, 4068, 4307, 7873, 4474, 4493, 91, 1984, 2924, 4677, 4681 + ], + "boolbase", + [0, 89, 2808, 1936, 2585, 6038, 24842, 24829, 24830, 24843], + "nth-check", + [1, 2343, 16878], + [3, 7804, 9], + "olbase", + [2, 16872, 16873], + "cheerio-s", + "oupselect", + [2, 16875, 16876], + [0, 16880, 16881, 16882, 2537], + "sizzle", + [0, 1437, 24854, 24849, 24848, 4145, 6271, 3029, 3028, 24853], + [0, 3421, 1149, 2228, 4193, 3460, 1596, 2240, 15929, 2293, 1532, 24857, 2283, 2273, 2277], + [ + 0, 24859, 24860, 24861, 24862, 24863, 24864, 24867, 24868, 24869, 24872, 24873, 24874, 24875, 24876, 24877, + 24878, 24879, 24880, 24881, 24882, 24883, 24884, 24885, 24888, 24890, 24892, 24893, 24894, 24895, 24854, 24896, + 24897, 24898, 24899, 24902, 24904, 24905, 24906, 24907, 24908, 24909, 24912, 24915, 24917, 24920, 24922, 24924, + 24927, 24928, 24929, 24930, 24931, 24932, 24933, 24934, 24935, 24938, 24940, 24942, 24943, 24944, 24945, 24945, + 24946, 24947, 24948, 24949, 24950, 24951, 24952, 24953, 24955, 24956, 24959, 24960, 24961, 24962, 24963, 24966, + 24967, 24968, 24969, 24970, 24972, 24973, 24974, 24975, 24976, 24977, 24978, 12047, 24979, 24980, 24981, 24983, + 24985, 24986, 24988, 24991, 24992, 24993, 24994, 24995, 24995, 24997, 25000, 25001, 25002, 4040, 25003, 25004, + 4144, 4145, 25006, 25007, 25008, 25009, 25012, 25014, 25010, 25015, 25019, 25020, 25021, 25022, 25023, 25024, + 25025, 25026, 25027, 25028, 25029, 25030, 25033 + ], + [1, 2343, 16884], + [0, 16886, 16887, 16888, 2537], + "clap", + [0, 16843, 25038, 8335, 25039, 25040, 8353, 26364], + [0, 21662, 8357, 5500, 8359, 4874, 91], + [0, 2844, 7020], + "json-to-ast", + [1, 2343, 16893], + "walker", + "lexer", + [0, 0, 0, 16895, 2523], + "jquery-test-runner", + [0, 89, 6649, 10057, 6355, 25054, 1542], + [1, 2343, 16899], + "features", + "web-features", + [0, 0, 0, 16901, 2399], + "stages", + [0, 2814, 5284, 1388, 6082], + [1, 2343, 16903], + [0, 16904, 16905, 2514, 2537], + [0, 2814], + [0, 2228, 4039, 2203, 842, 25088, 25063, 2291, 25090, 3006, 25070, 25074, 16894, 25076, 2253, 2260, 23178], + [3, 7014, 10], + [1, 2343, 16908], + [0, 0, 16909, 16910, 2443], + [0, 4874, 2899, 91], + [0, 14357, 17180], + [3, 16857, 15], + [2, 16911, 10441], + [1, 2343, 16917], + "advanced", + [2, 16911, 16914], + [2, 16911, 2994], + [0, 16920, 16921, 16922, 2537], + "optimise", + [2, 5505, 5218], + [0, 25106, 18420, 2070, 2821, 3368], + [0, 1109, 1317, 1505, 2814, 2272, 3183, 2899, 3257, 4019, 4146, 4294, 2924, 4677], + [0, 14438, 24856, 25109], + "@jscpd/badge-reporter", + [1, 2343, 16925], + [0, 0, 16926, 16927, 2537], + [ + 0, 10615, 1177, 1903, 1937, 1948, 2228, 25074, 2256, 2277, 23165, 2283, 17565, 25060, 1894, 2907, 3980, 4042, + 11802, 4060, 4255 + ], + [0, 977, 16358, 1388, 5808, 10906, 5576, 2821, 1389], + [2, 27440, 27441], + [1, 2343, 16930], + [0, 16939, 16940, 16941, 4139], + [3, 4856, 9], + "okidar", + [2, 16931, 16932], + [2, 7632, 16558], + [3, 12842, 11], + [2, 16935, 4467], + "urndown", + [2, 7750, 16937], + [0, 1139], + [0, 3421, 1111, 2899, 1177, 4042, 4167, 2193, 1317, 1505, 2064, 4073, 811, 816, 19232], + [0, 4745, 57, 1753, 6713], + [1, 2343, 16943], + [0, 16945, 16946, 16947, 2399], + "csrf", + [0, 58, 12184, 1525, 1676, 1696, 2070, 25125, 27534, 1997, 25126], + [ + 0, 442, 8719, 842, 8712, 16145, 4874, 1527, 1567, 1652, 1177, 1895, 1939, 1955, 1192, 2829, 22509, 22511, 1894, + 4039, 91, 4523 + ], + [0, 25135, 1745], + [1, 2343, 16949], + [0, 16951, 16955, 2514, 2537], + "@acemir/cssom", + [0, 1512, 1525, 2151, 25141, 16923, 25147, 25144, 25148, 25142, 25146], + [2, 812, 1177], + "ould", + [2, 7747, 16953], + [0, 5536, 4864, 4874, 7677, 3363, 4474, 4493, 91, 1984], + "tsv", + "generation", + [1, 2343, 16959], + [0, 16960, 16961, 16962, 2487], + [ + 0, 1437, 1481, 1525, 25154, 2004, 2021, 2070, 2654, 2822, 25156, 25160, 15555, 1209, 3181, 12118, 15371, 3741, + 25162, 814, 4296, 4300, 25163, 25164, 21956, 25165, 4736 + ], + [0, 1429, 1596, 6474, 2272, 2899, 3954, 4037, 4193, 4196, 25168, 25170, 4734], + [0, 19271, 4525, 671, 9654, 25172, 2649], + [1, 2343, 16965], + "@bramus/specificity", + [0, 16967, 16968, 16969, 2537], + "coffeelint", + [0, 58, 25177, 7639, 1362, 25178, 1874, 25179, 21226, 3105, 3107, 3127, 3188, 25181, 4300, 4545], + [0, 1091, 2323, 2384, 2449, 3421], + [0, 1745, 5284], + [1, 2343, 16972], + "csv-spectrum", + [0, 16973, 0, 16974, 2537], + [0, 16053, 17786, 25190, 17788, 1776, 25193, 17798], + [0, 1776, 5592, 13325, 8626, 5284, 1745], + [1, 2343, 16976], + [0, 16977, 0, 16978, 2523], + [0, 16053, 1519, 1522, 25203, 1727, 2826, 4783, 17798], + [0, 1776, 1783, 5592, 1179, 5284, 676, 1745], + [1, 2343, 16980], + [0, 16981, 16982, 16983, 2523], + [ + 0, 16950, 16928, 16964, 15956, 1638, 25211, 25212, 2623, 2661, 2674, 2750, 3493, 25213, 25215, 4454, 4548, + 25216, 23201, 15502, 25217, 19851 + ], + [0, 23591, 1177, 1937, 1953, 2203, 2822, 3181, 2899, 25221, 3401, 3456, 3549, 4135, 4153, 4441, 27602, 25224], + [0, 965, 1936, 7102, 12616], + "csv parser", + [1, 2343, 16987], + "parse csv", + [0, 16988, 16992, 16983, 2523], + [0, 25231, 25232, 1638, 2654, 25233, 3493, 705, 19851, 4738], + "csv to json", + "csv convert", + "tojson", + [0, 1389, 1512, 2665, 2272, 16112, 2276, 3560, 3760, 25238, 4652], + " csv to json", + [2, 6270, 16993], + "csv-json", + [1, 2343, 16997], + [0, 0, 16998, 16999, 2537], + [0, 1596, 2228, 2240, 14352, 2759, 2899, 3954, 4019, 25244], + [0, 1398, 1867, 5284, 1781, 3053, 3065, 1871, 1646, 4990], + [2, 1649, 6451], + "cucumber-", + [2, 17001, 6466], + "duration", + [1, 2343, 17005], + [0, 17012, 17014, 2514, 4139], + "enerator", + "is-generator", + [3, 4143, 10], + [2, 17008, 1851], + "stack-chain", + [2, 16240, 1592], + [0, 200, 15014, 2021, 2654, 1209, 3181, 4300], + "ansi-html", + [0, 1149, 1389, 1566, 13985, 1596, 2759, 2292, 3211, 2276, 3758, 3954, 25251, 4193, 15136, 25253, 25256], + [1, 2343, 17016], + [0, 17017, 17022, 17024, 2523], + [0, 1437, 3074, 3545, 15826, 4425, 22972], + [3, 1976, 18], + [2, 17018, 4414], + "riteway", + "updtr", + [0, 2272], + "unique", + [0, 2272, 16237, 4525, 1671, 671, 2649, 25264, 16238, 3721], + "unique id", + [1, 2343, 17027], + [0, 17028, 17029, 17030, 2537], + [0, 25269, 25272], + [0, 6503, 4874, 1009, 1011, 1177, 1886, 1938, 2899, 3421, 4474, 91], + [0, 1781, 17420, 1641, 15253, 6813, 25276, 25277, 1644, 57, 2841, 25279, 200], + "ospath", + [1, 2343, 17033], + [0, 0, 17035, 2514, 4139], + "lazy-ass", + [0, 4257], + "blob-util", + [3, 8129, 9], + [1, 2343, 17043], + "@cypress/xvfb", + "zzle", + [2, 6545, 17040], + [2, 17037, 705], + [0, 0, 0, 17048, 34352], + "more-types", + [2, 14614, 17044], + [3, 4008, 11], + [2, 17046, 6509], + [0, 1781, 2844], + "cypress.io", + "mocks", + "spies", + "stubs", + [1, 2343, 17054], + [0, 17055, 17056, 17060, 2537], + [0, 975, 983, 15951, 1437, 1457, 8098, 7614, 2712, 2856, 3083, 25292, 4200, 25294], + [0, 4874, 1540, 2182, 2675, 33479, 30889, 4400, 4507, 91], + [3, 13848, 19], + [2, 17057, 3172], + "longest", + [0, 6671, 36, 21147, 8173, 8172, 25094, 3212, 8788, 1973, 5472, 4030, 2382, 28726], + [1, 2343, 17062], + [0, 17063, 17064, 17065, 2399], + [0, 1417, 7272, 2756, 17827, 3433], + [0, 5517, 13614, 23237, 10979, 27571, 27016, 19325, 1159, 9254, 1177, 2708, 3410, 4103, 4389], + [0, 1781, 1646, 7185, 3428, 6333, 7077], + [1, 2343, 17069], + "d3-axis", + "d3-brush", + [0, 0, 0, 17070, 2523], + [0, 1781, 1646, 7045, 6953], + "d3-chord", + [1, 2343, 17073], + [0, 0, 17076, 17077, 2443], + "d3-contour", + "d3-delaunay", + [0, 1593, 1177, 1903, 1938, 1954, 1958, 1970, 3400, 3954, 4042, 4048, 4055, 4067, 4073, 4193, 4384, 25313], + [0, 1781, 2856, 1925, 6778, 5286], + "d3-dispatch", + [1, 2343, 17084], + "d3-drag", + "d3-dsv", + "d3-ease", + "d3-fetch", + [0, 0, 17085, 2514, 2537], + [0, 2899, 1177, 4039, 91, 4874, 6503, 1011, 1009], + "d3-force", + [1, 2343, 17088], + [0, 17094, 13658, 17095, 2537], + "d3-format", + "d3-geo", + "d3-hierarchy", + "d3-interpolate", + "d3-path", + [0, 21224], + [0, 3917, 6033, 2090, 1781, 2150, 2151], + "d3-polygon", + "d3-quadtree", + "d3-random", + "-chromatic", + [2, 1655, 17099], + "d3-time", + "-format", + [2, 17101, 17102], + "d3-timer", + [1, 2343, 17106], + [0, 0, 17109, 17114, 2523], + "d3-transition", + "d3-zoom", + [0, 16638, 16641, 1429, 1177, 25328, 2899], + "@observablehq/plot", + [3, 17110, 14], + [2, 17111, 7047], + "topojson-client", + [0, 1781, 2844, 2860, 1155, 7020], + "visualiz", + [2, 17115, 5218], + [1, 2343, 17118], + [0, 17119, 17120, 17123, 2523], + [0, 4430, 25336], + [0, 4389, 19987, 18718, 8924, 5710, 2012], + "intern", + "internmap", + [0, 1781, 3101, 22115, 57, 1149, 7119], + [1, 2343, 17126], + "d3-module", + [0, 17127, 17131, 17133, 4139], + [0, 3242, 25343, 4135, 25355, 25346, 25353, 3052, 25347, 25350, 3051], + "histogram", + "bisect", + "shuffle", + [0, 3413, 3421, 1157, 1429, 2899, 4193, 1177, 1566], + "stic", + [0, 2038], + "statistics", + [1, 2343, 17136], + [0, 17137, 17138, 2514, 2523], + [0, 53, 25363, 17144, 3467, 3527], + [0, 25366, 4874, 26142, 1415, 668, 1177, 1895, 3171, 3181, 3445, 1894, 4042, 4448, 91], + [1, 2343, 17140], + [0, 0, 17141, 17143, 2537], + [0, 4874, 7677, 20085, 4493, 91, 1984], + "uniqid", + [0, 6649, 6710, 5995, 25372, 89, 970, 5122, 3857, 5123], + "@jspm/plugin-rollup", + [1, 2343, 17148], + "selection", + "data-join", + [0, 17149, 17150, 17151, 2487], + [0, 25377, 3486, 20508, 3923], + [0, 4449, 2228, 2907, 1177, 1317, 2240, 1389, 3541, 91, 2665, 25379, 2236, 2281, 25383], + [0, 2056, 25386, 25388], + [1, 2343, 17153], + [0, 0, 17154, 17155, 2487], + [ + 0, 4172, 1192, 2675, 1177, 23535, 4468, 4474, 1894, 91, 53, 2990, 1387, 1540, 1938, 1895, 1955, 2780, 1011, + 1009, 1915 + ], + [0, 2038, 1388], + [1, 2343, 17157], + [0, 0, 17158, 17160, 2537], + [0, 2025, 2759, 2899], + "dable", + [0, 2038, 10368, 15103], + [1, 2343, 17162], + [0, 17163, 17168, 17170, 2487], + [ + 0, 14416, 4449, 2070, 3171, 25404, 4747, 15643, 1209, 3078, 3188, 4039, 1544, 1457, 3181, 4218, 2659, 4227, + 1364, 2215, 12930, 3781, 11804, 25403, 13388 + ], + [2, 21029, 17165], + " plugin", + [2, 21045, 17169], + "postcss-js", + [ + 0, 1429, 13333, 2899, 17050, 4193, 4707, 1177, 1649, 4650, 3758, 4342, 1389, 2878, 3752, 4196, 25411, 1436, + 2900, 2766, 2898, 192, 1431, 2871, 4131, 1954, 1938, 25407, 2904, 6063, 1958, 2881, 25410, 1903, 1970, 2895, + 22559, 6061, 2876 + ], + "ails", + [0, 2297, 25415, 8791, 2297, 676, 5284, 5472, 1973, 21004, 25416], + "laravel", + [1, 2343, 17173], + [0, 17174, 17175, 17176, 2487], + [0, 9421, 1209, 25421, 3181, 18868, 1573], + [ + 0, 3377, 1377, 1429, 2297, 2899, 4193, 4453, 12851, 1177, 814, 4650, 1389, 4196, 91, 3400, 2766, 2898, 15051, + 1951, 2881 + ], + [0, 25425, 25427, 25429, 1389], + [1, 2343, 17178], + [0, 17182, 17185, 17186, 2537], + "reverse", + "binary", + "opposite", + [0, 3760, 14336, 25092], + "invert", + "switch", + [0, 2228, 1177, 2307, 2239, 2291, 3006, 1954, 2234, 1938, 1958, 1903, 1970, 2285, 2290], + [0, 25425, 25436, 14336, 25437], + [1, 2343, 17188], + [0, 0, 0, 17192, 2537], + "@cap", + "temulation/get-parameter-names", + [2, 17189, 17190], + [0, 2297, 25425, 1429, 2899, 4170], + "faker-bb", + [2, 7526, 17193], + [2, 9769, 1676], + "rss-parser", + [2, 2032, 2663], + [2, 4364, 17197], + "lexxy", + [1, 2343, 34442], + [0, 4707], + [0, 1429, 2297, 2899, 4193, 4255, 2900, 192, 4131, 6063, 22559, 6061], + [0, 25425, 25436, 3195], + "@date-", + "fns/docs", + [2, 17204, 17205], + [1, 2343, 17208], + [0, 17211, 17224, 17225, 2523], + "@date-fns/utc", + [3, 5530, 19], + [0, 11935, 14024, 11938, 11940, 11943, 3181], + "@types/bun", + "@vitest/", + [2, 17213, 1388], + [3, 1198, 17], + [2, 2701, 7188], + [2, 17215, 17216], + "bun", + "cloc", + "js-fns", + "jscodeshift", + "issing-exports", + [2, 10634, 17222], + [ + 0, 192, 5467, 21970, 6061, 6063, 16608, 1429, 1509, 1177, 1903, 1938, 1954, 1958, 1970, 2228, 2240, 2298, 2307, + 2675, 25453, 2297, 25455, 2895, 2900, 25458, 2899, 17050, 4019, 4131, 4193, 4196 + ], + [0, 25425, 25427, 25462, 4504, 2759], + [1, 2343, 17227], + [0, 17201, 17228, 17229, 2537], + [0, 2228, 2258, 2273, 2298, 2766, 2297, 2898, 3524], + [0, 25425, 25436, 1388, 2887, 25468, 25470, 25472, 25473, 17632, 25474, 25476, 25479, 25481, 25484, 25485], + [1, 2343, 17231], + [0, 17233, 17234, 17235, 2523], + [2, 2553, 20], + [0, 2890], + [0, 1429, 25492, 14416, 1177, 1903, 1958, 1970, 2228, 2239, 2240, 2291, 2307, 2316, 2297, 3006, 25493, 3752], + [0, 25425, 25436, 13530, 17631], + [1, 2343, 17237], + [0, 17238, 17241, 17245, 2537], + [0, 2755, 4707], + "ectory", + [2, 4015, 17239], + [0, 192, 5467, 6061, 6063, 16608, 2675, 2297, 2900, 2899, 3534, 4131, 4255], + "sleep", + " wrapper", + [2, 1149, 17243], + [0, 2297, 5472, 25425, 25436, 25501], + [1, 2343, 17247], + [0, 6203, 17248, 17249, 2523], + [ + 0, 1429, 14416, 1177, 1903, 1958, 1959, 1970, 2228, 2234, 2239, 2283, 2285, 2290, 2291, 2307, 2316, 2297, 3006, + 17050, 4193, 4196 + ], + [0, 25425, 25436, 7298], + [2, 17257, 24717, 17258], + "debouncing", + "invoke", + "interval", + [1, 2343, 17255], + [0, 17256, 17259, 17260, 2523], + [0, 2766], + [3, 7621, 18], + "-ascii", + [0, 2228, 2675, 2297, 1177, 2765, 192, 4131, 1954, 1938, 6063, 16608, 1958, 1903, 1970, 2895, 6065, 22559, 6061], + [0, 25425, 25514, 2765], + [1, 2343, 17262], + [0, 17263, 17264, 17265, 2487], + [0, 3183], + [ + 0, 1429, 1177, 1903, 1958, 1959, 1970, 2228, 2234, 2239, 2285, 2291, 2298, 2307, 2297, 2878, 2881, 2895, 2918, + 3006, 2899, 3203, 4193, 6061, 6063, 4131, 192, 5467, 2675 + ], + [0, 25425, 25514, 2899], + "decamelcase", + "lowercase", + [1, 2343, 17270], + "nano-spawn", + [0, 17271, 17280, 17282, 2537], + [0, 1437, 3074, 4294], + "-tar", + [2, 1679, 17272], + "bz2", + [2, 17273, 17274], + "gz", + [2, 17273, 17276], + [3, 17273, 11], + [2, 17278, 4560], + [0, 1429, 2228, 2239, 2258, 2273, 2285, 2298, 2314, 2766, 2878, 2889, 3006, 2899, 3524], + "strip-dirs", + [0, 25425, 25462, 2899, 1429, 1687, 2568], + "is-jpg", + [1, 2343, 17287], + "bzip2", + "tar.bz", + [0, 17289, 17290, 17291, 2537], + "tar.gz", + [0, 1209, 3524], + [0, 1177, 1903, 1959, 1970, 2228, 2234, 2239, 2285, 2291, 2298, 2307, 2766, 2297, 2898, 3006], + [0, 25425, 25436, 3521], + [1, 2343, 17301], + [3, 4852, 13], + "plugin-m", + [2, 17294, 7912], + [2, 17293, 17295], + "fail-test", + [2, 10740, 17297], + "deprecation", + [2, 1921, 17299], + [0, 0, 17320, 17324, 2399], + "only-tests", + [2, 16645, 17302], + [3, 1955, 15], + "erfectionist", + [2, 17304, 17305], + "yml", + [2, 1921, 17307], + "jsonc-", + [2, 17309, 67], + [2, 4488, 10441], + [2, 3390, 17311], + "curly", + [2, 3704, 17313], + "should-s", + "emantic-", + [2, 17316, 3979], + [2, 17315, 17317], + [2, 13125, 67], + [0, 1429, 2228, 2297, 2899, 2907, 1177, 2307, 2239, 2898, 1954, 1938, 1958, 1903, 1970, 2895], + " string", + "line string", + [2, 13862, 17322], + [0, 2297, 25425, 25514, 2907], + [1, 2343, 17326], + [0, 17327, 17328, 17333, 2487], + [0, 1457, 1675], + [0, 53, 5889, 87, 1177, 2766, 2297, 2881, 2898, 2904, 4042, 4045, 4048, 4055, 4067], + "dupes", + " duplicates", + [2, 7293, 17330], + [3, 232, 8], + [0, 3595, 6778, 2297, 5260, 1204, 6813, 1932, 7121, 25427, 25425, 25544, 4042], + [1, 2343, 17338], + "deduplicate", + "deduplicat", + [2, 17336, 6600], + [0, 0, 17339, 17340, 4139], + [0, 2307, 2228, 2239, 2234], + [0, 25425, 25436, 25550], + [1, 2343, 17343], + "is-obj", + [0, 17344, 17345, 17346, 2537], + [0, 25555, 12826, 824], + [0, 192, 5467, 6061, 6063, 16608, 4864, 25558, 4874, 2675, 2765, 2297, 2898, 4131, 91], + [0, 25425, 25436, 7177, 12825, 12826], + [1, 2343, 17348], + [0, 0, 0, 17349, 2537], + [0, 2297, 25425, 4193, 3212], + [1, 2343, 17351], + [0, 17353, 17359, 17360, 2523], + "json-ptr", + [0, 2215], + [3, 1715, 10], + "change-", + "adr", + "tracking", + [2, 17355, 17357], + [0, 8780, 1414, 1177, 2766, 2297, 25571, 2881, 2898, 1894, 4042, 25575], + [0, 25425, 25427, 11939, 5284], + [1, 2343, 17368], + "decision record", + "kewlr", + "any decision record", + [2, 17379, 17381], + "simple-assert", + "lcov-re", + [0, 9719, 17378, 17385, 2443], + "sult-merger", + [2, 17367, 17369], + [3, 1903, 16], + "rict", + [2, 17371, 17372], + "@js-temporal/polyfill", + [3, 1935, 15], + "ilenames", + [2, 17375, 17376], + [0, 1429, 1596, 2899, 3400, 3421, 4193, 4196], + [3, 25135, 11], + "chai util", + "al decision", + "deep equal", + "object equal", + [2, 17365, 17394], + [0, 25425, 16237], + [1, 2343, 17387], + [0, 17408, 17417, 13533, 4139], + "array-b", + "-byte-length", + [2, 2347, 17389], + [2, 17388, 17390], + "es-get-iterator", + "is-a", + " record", + "is-arguments", + "is-ar", + [2, 25135, 17401], + "ray-buffer", + [2, 17396, 17398], + "is-date-object", + " decision", + "gex", + "is-regex", + "is-s", + "hared-array-buffer", + [2, 17404, 17405], + [2, 6961, 7313], + [0, 2070, 3181, 4689], + "side-channel", + "-boxed-primitive", + [2, 4707, 17410], + "which-", + [2, 17412, 6910], + "typed-", + "typed-array", + [2, 17412, 17415], + [ + 0, 48, 53, 85, 87, 192, 5467, 16405, 1193, 1429, 1431, 1610, 1177, 1938, 1955, 2675, 2759, 2765, 1192, 2297, + 2878, 2881, 2900, 2923, 2990, 3150, 2899, 3697, 1894, 3758, 4257, 2924 + ], + "available-typed-arrays", + [1, 2343, 17427], + "to", + "has-proto", + "has-t", + [2, 17397, 17394], + "yped-arrays", + [2, 17422, 17424], + "software quality", + [0, 0, 7923, 17428, 4139], + [0, 8652, 2926, 25591, 6938, 25592, 25594, 25595, 25596, 2927], + "rehype-katex", + [1, 2343, 17431], + [0, 0, 0, 17432, 2487], + [0, 2927, 3925, 364], + [1, 2343, 17434], + [0, 17435, 17441, 17442, 2487], + [0, 25605], + "is-m", + "able-object", + [2, 4688, 17437], + [2, 17436, 17438], + "jsmd", + [0, 18073, 29457, 11976, 15288, 7677, 4039, 25609, 4481, 1984, 26108, 26131, 26132, 26124, 26104, 29233, 26123], + [ + 0, 6803, 6692, 1542, 2325, 9553, 25611, 13901, 5995, 25513, 1552, 3230, 7827, 3259, 14873, 3151, 3300, 3084, + 6650, 1416 + ], + [1, 2343, 17444], + [0, 0, 17445, 17446, 2537], + [0, 1999, 4579], + [0, 1111, 200, 1473, 1512, 7201, 7009], + "is-path-cwd", + "is-path-", + "inside", + [2, 17448, 17449], + [1, 2343, 17452], + [0, 17454, 17463, 17464, 2523], + "folders", + [0, 1999, 25625, 1676, 1209, 21104, 3932, 4435, 25623, 1511, 1525, 2727, 4025, 2179, 25624], + "directories", + "trash", + "unlink", + "cleaning", + "rmrf", + "friendly", + "gulpfriendly", + "filesystem", + [ + 0, 3519, 3421, 4481, 1429, 2763, 4389, 2675, 2899, 3259, 4193, 1177, 3260, 4039, 1787, 3203, 4246, 25635, 4474, + 25633, 1894, 4387, 1596, 1610, 2861, 4196, 91, 4874, 21106, 2990, 25629, 25634, 1431, 4232, 25632, 1938, 25628, + 25636, 1895, 1955, 13850 + ], + [0, 14872, 3766, 14873, 25638, 3259, 25639, 4246, 12593, 3243, 9381, 25640, 6147, 1747, 18035], + [1, 2343, 17466], + [0, 17467, 17469, 17470, 2537], + [0, 19185, 2071, 17471, 2807, 2822, 3183, 29943, 3527, 3530, 25648, 4300, 4763], + "temp-write", + [0, 554, 17212, 7637, 7892, 20374, 4891, 11112, 19706, 32765, 4494, 91], + [ + 0, 19748, 25658, 1227, 200, 25660, 4796, 13735, 4797, 11337, 25661, 6971, 6813, 1586, 2100, 5284, 671, 25663, + 25664, 18750, 6646, 23255, 3383, 20529, 553, 91, 25667, 25669, 17507, 664 + ], + "formatly", + [1, 2343, 17473], + [0, 0, 17476, 17478, 2487], + "in-range", + "time-", + [0, 1177, 2205, 25675, 3072], + "time-span", + [0, 1623, 3583, 12616, 3195, 25501, 25677, 17631, 25550, 25678, 25679, 25682], + "defer", + "out", + "timeout", + [1, 2343, 17483], + [0, 17486, 0, 17488, 2537], + "settimeout", + "tick", + [0, 3171, 4734, 1676, 25688, 3441], + "threshold", + [0, 7200, 6997, 6949], + [1, 2343, 17490], + [0, 17491, 17499, 17502, 2537], + [0, 1080, 1560, 1562, 16358, 25696, 14858, 1833, 1869, 2145, 25699, 2657, 2941, 3173, 3440, 3494, 4266, 1000, 4590], + "@vue/c", + "ompiler-sfc", + [2, 17492, 17493], + "callsite", + "deps-", + "deps-regex", + "is-c", + [0, 1414, 25710, 4216, 4255, 4342], + "ore-module", + [2, 17498, 17500], + [0, 5122, 1896, 27, 13527, 5130, 2663, 16196], + "patch-", + "patch-version", + [1, 2343, 17506], + [0, 17508, 17509, 17510, 2523], + "unused", + [0, 25717, 7810, 13055, 25718, 2141, 4507, 4763], + [0, 5517, 11976, 107, 5522, 28385, 27134, 36694, 24819, 9240, 2934, 4342, 4483, 36684, 4494, 91], + [0, 2934, 25723, 15237, 1781, 20443, 57, 1669], + [1, 2343, 17512], + [0, 17513, 17516, 17517, 2443], + [0, 25718, 25728, 1000], + "deprecate", + "deprecated", + [0, 1909, 2675, 2934, 2899, 3421, 4170, 4342, 1906], + [0, 25732, 1781, 25723, 2934, 20443], + [1, 2343, 17519], + [0, 0, 17520, 17521, 2523], + [0, 1503, 1192, 3130, 4255], + [0, 2934, 2663, 2940], + "is-relative", + [3, 9488, 17], + [1, 2343, 17525], + [0, 17530, 17531, 17532, 2487], + "cjs", + "detective-cjs", + [3, 9509, 10], + [2, 17528, 4354], + [0, 1413, 1437, 25743, 3440, 25745], + [0, 1366, 1414, 1909, 2934, 25748, 25749, 4193, 4342, 1906], + [0, 2934, 2663, 2942, 3073], + [1, 2343, 17534], + [0, 17535, 17536, 17538, 2537], + [0, 1676, 2941], + [0, 1177, 1903, 1958, 1970, 2759, 2934, 2948, 2899, 4170, 4342], + "indentation", + [0, 2934, 2663, 2944, 25757], + "identify", + "space", + [1, 2343, 17542], + [0, 17543, 17544, 17545, 2399], + [0, 1676, 2657, 2941, 3509], + [0, 2934, 3421, 1437, 2675, 2899, 1177, 2114, 4342, 25763, 3985, 2990, 192, 2829, 3995, 1982, 5467], + [0, 2934, 2663, 4082, 38], + "mm", + "egg-bin", + [1, 2343, 17549], + [0, 17550, 17552, 17553, 2443], + [0, 1676, 25771], + "ontributor", + [0, 1177, 1903, 1938, 1954, 1958, 1970, 2759, 2934, 2899, 4342], + [0, 2934, 2663, 2090, 2947, 25774], + [2, 1884, 1347], + [1, 2343, 17556], + [0, 17557, 17558, 17559, 2537], + [0, 3291, 3754, 25782, 1552, 4747, 1209, 4333, 2026, 1364, 25781], + [0, 1429, 1149, 2899, 4193, 4170, 4342, 1506], + [0, 12692, 3768, 6812, 1552], + [1, 2343, 17561], + [0, 17562, 17563, 17564, 2537], + [0, 25789, 1687, 1177, 25791, 25792, 2000, 25793, 2036, 2607, 2851, 2854, 3188, 4127, 4227, 4232, 4351, 25794], + [0, 1501, 25796, 1948, 25797, 4039, 4135], + [0, 1973], + "grunt-exec", + [3, 2300, 12], + [2, 17566, 2759], + [2, 2235, 2924], + [1, 2343, 17570], + [0, 17571, 17572, 17573, 2523], + [0, 9478], + [0, 1166, 4135, 25814, 4481, 1906], + [0, 25816, 15525, 3378, 4750, 3383, 6661, 25188, 1237], + [1, 2343, 17575], + [0, 0, 17576, 17587, 2537], + [0, 2861, 25821, 1317, 25822, 25823, 2768, 1776, 1209, 3152, 3736, 25825, 4019, 25826, 4545], + "@types/diff", + "gan.js", + [2, 12456, 17578], + "@types/nopt", + "all-", + "ibutors-cli", + [2, 10741, 17582], + [2, 17581, 17583], + [3, 1945, 18], + [3, 3463, 9], + [0, 7189, 6564, 6681, 6887, 614], + [1, 2343, 17593], + [2, 2036, 2091], + "image-", + [2, 17590, 11526], + "is-ci-cli", + [0, 0, 17594, 17596, 34352], + [ + 0, 4248, 2675, 2297, 2899, 4193, 1177, 25846, 4042, 25850, 25840, 4535, 2900, 2918, 2990, 25844, 25848, 25851, + 2897, 8850, 2891, 25843, 2881, 2912, 2895, 2910, 25853, 25838 + ], + "side-by-side", + [0, 25855, 3053], + "line-by-line", + [1, 2343, 17601], + "difftohtml", + "colorized", + [0, 0, 17602, 17603, 2399], + [0, 1317, 2064], + [0, 2967, 2965, 2966, 23119, 1871, 19728], + [1, 2343, 17605], + [0, 0, 17606, 17607, 2487], + [0, 20340], + [0, 2966, 25866, 6983, 1671], + "data-s", + [2, 14386, 3769], + [2, 17608, 17609], + [1, 2343, 17614], + [3, 1915, 23], + [2, 17612, 8861], + [0, 17624, 0, 17628, 4139], + "Directed Graph", + "directed", + " graph", + [2, 17616, 17617], + [2, 17616, 2218], + [3, 1718, 14], + "Directed", + "digraph", + "java", + [ + 0, 3420, 2714, 4390, 3532, 4248, 3348, 1437, 2020, 2742, 3478, 4207, 10761, 4747, 25871, 1680, 24004, 3483, + 4039, 4135, 1842, 2822, 3479, 4430, 25872, 2151, 2182, 2720, 3093, 25873, 13786, 25874, 1513, 2753, 2777, 3181, + 25875, 666, 2188, 3249, 27921, 91, 25878, 1595, 2200, 25879, 25880, 4174, 2704, 25881, 3393, 25884, 4025, 25886, + 4290, 4748, 25887, 692, 20312, 9322, 25888, 25891, 25892, 3386, 635, 25893, 26567, 4728, 643, 3397, 9479, 10744, + 4588, 16310, 25898, 25901, 16307, 25904 + ], + "java script", + "JavaScript", + "type script", + [0, 2968, 6646, 7117], + "vertex", + "Vertex", + "edge", + "Edge", + [1, 2343, 17638], + "graph theory", + "Graph Theory", + "graph ", + [2, 17636, 6956], + [0, 17639, 17646, 17650, 2487], + [0, 25910, 20314, 4484], + "weighted", + "Weighted", + "unweighted", + "Unweighted", + "adjacency", + "Adjacency", + [ + 0, 811, 8850, 816, 1009, 1011, 25917, 25920, 1429, 1414, 1437, 1595, 1610, 1177, 2151, 15843, 2070, 2205, 2228, + 2240, 2247, 2256, 2291, 2311, 2314, 25922, 2777, 25923, 25925, 21898, 3183, 2899, 25928, 3400, 3518, 25929, + 3541, 1862, 25930, 814, 4042, 4073, 4076, 4135, 4172, 4436, 4474, 91, 12247 + ], + "connectivity", + "cycle", + "acyclic", + [ + 0, 7236, 7303, 6885, 1623, 6965, 7025, 6898, 6932, 7258, 695, 7228, 6766, 7028, 6912, 57, 7121, 6962, 6968, 590, + 592, 5376, 7198, 6705 + ], + "traversal", + "depth", + "Depth", + [1, 2343, 17655], + [0, 0, 17682, 17684, 2537], + "breadth", + "Breadth", + " first search", + [2, 17652, 17658], + "dfs", + "DFS", + [2, 17656, 17658], + " search", + [2, 6395, 17663], + [2, 17656, 17664], + "bfs", + "BFS", + "algorithms", + [2, 17636, 17668], + "repre", + "sentation", + [2, 17670, 17671], + [2, 17636, 17672], + " matrix", + [2, 17647, 17674], + " list", + [2, 17644, 17676], + "adjacency ", + "matrix", + [2, 17678, 17679], + "node ", + [ + 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 1193, 1610, 1622, 1700, 1701, 1177, 1895, 20281, 1938, 1939, 1953, + 1955, 1982, 2203, 2675, 1192, 695, 25936, 2990, 3144, 3400, 1894, 4257, 4294, 4523, 2924 + ], + "node degree", + [0, 2924, 1194, 695, 6766, 7228, 1623, 7121], + [1, 2343, 17694], + "sparse graph", + "dense graph", + "directed ", + [2, 17688, 17648], + "acyclic graph", + [2, 17688, 17690], + "DAG", + "topo", + [0, 17703, 17707, 17708, 2537], + "topologic", + "topological", + "sorting", + "strongl", + "y connected components", + [2, 17698, 17699], + " digraph", + [2, 17640, 17701], + [0, 25946, 25948, 25944], + "weighted edge", + [2, 17688, 17704], + "structures", + [0, 3421, 4389, 3348, 1090, 1290, 2554, 4255, 91, 4874, 87, 25951, 25950], + [0, 2970, 25954, 3101, 18035, 1747, 1542, 13901, 1781], + " structure", + [2, 2382, 17709], + [3, 17610, 14], + [2, 17710, 591], + [2, 6957, 591], + [2, 17711, 591], + "in data structures", + [3, 17715, 17], + "DataStructure", + [2, 17717, 591], + [1, 2343, 17725], + "iterative", + "Node.js", + "CommonJS", + "UMD", + "esmodule", + [0, 17728, 17736, 17738, 4139], + "java.util", + "c++ stl", + [0, 25960, 15160, 25959], + "c++ std", + "Python collections", + "System.Collections.Generic", + "STL", + "stl", + "Collection", + "Collections", + [ + 0, 25964, 3421, 2070, 4389, 4400, 2080, 4039, 12694, 1804, 2554, 640, 4255, 1610, 25963, 25968, 15164, 25974, + 25969, 1705, 25972, 25967 + ], + "insertion", + [0, 25954, 2970], + "deletion", + "OOP", + [1, 2343, 17742], + [0, 17743, 17744, 17708, 2443], + [0, 23040, 25983, 25987, 25990, 25981, 25985], + [ + 0, 3421, 4389, 1087, 4193, 1090, 2080, 12694, 25995, 26000, 2554, 4255, 25963, 1389, 4092, 25992, 25996, 1537, + 25994, 25997, 1705, 25951, 25967 + ], + [1, 2343, 17746], + [0, 0, 17747, 17748, 2443], + [0, 1166, 26007, 26008, 26009, 26006, 26010, 26014, 3273, 26015, 4441, 1906], + [0, 2975, 26006, 26017, 8893, 1871, 17354, 1687, 2062, 2163, 9549, 9550, 3797, 26020, 6109, 2585, 3529, 19051], + [1, 2343, 17750], + [0, 17755, 6538, 17756, 2399], + "voice", + [2, 7659, 17751], + "backend-", + [2, 17753, 10057], + [0, 635, 9510, 26026, 1687, 3181, 3386, 3483, 4390], + [0, 3378, 3409, 2977, 200, 1687], + "product", + "productivity", + [1, 2343, 17760], + [0, 17761, 17762, 17771, 2523], + [0, 635, 9479, 643, 1458, 3386, 3483, 3727, 29698, 3917, 4135, 4174, 9455], + [0, 9516, 26037, 9515, 9449, 1437, 18248, 26035, 4384], + [2, 7659, 4729], + "lodash.s", + "nakecase", + [2, 17764, 17765], + "builders", + [2, 7659, 17767], + "formatters", + [2, 7659, 17769], + [0, 3378, 3409, 2977, 200, 9527, 2979], + [2, 7659, 1735], + [1, 2343, 17774], + [0, 17775, 6538, 17776, 2523], + [0, 635], + [0, 3378, 3409, 2977, 200, 3358, 2980, 26044], + [1, 2343, 17778], + [0, 0, 17779, 17780, 2537], + [ + 0, 48, 53, 5712, 5788, 87, 94, 8850, 10615, 1208, 1429, 1597, 26049, 1610, 32572, 2759, 1192, 25913, 26052, + 3183, 2899, 3400, 3421, 26053, 4005, 4039, 4042, 4484 + ], + [0, 7285, 7310, 6988, 6847, 5131, 7211], + [1, 2343, 17782], + [0, 17783, 17784, 17785, 2487], + [0, 2051, 2107, 10392, 26060, 2747, 3932, 814], + [0, 1509, 1177, 1889, 1895, 1954, 2022, 2899, 3421, 4193], + [0, 9753], + "cache-point", + [2, 9480, 6769], + "file-set", + [1, 2343, 17791], + "reduce-", + [0, 0, 17792, 17794, 2537], + [0, 11976, 5087, 4874, 8157, 1595, 1192, 91, 4579], + "without", + [0, 1595, 1541, 8309, 7193], + [1, 2343, 17796], + [0, 0, 0, 17797, 2487], + [0, 26072, 1823, 26073, 1936, 2814, 163, 26074, 89, 4500, 1002], + "walk-back", + [1, 2343, 17802], + "dmd-", + [3, 2475, 9], + [0, 17806, 17807, 17808, 4139], + "ample", + [2, 17801, 17803], + [2, 17800, 17804], + [0, 1525, 2992, 3170, 6479, 26379, 4745], + [ + 0, 5522, 107, 192, 5467, 442, 7677, 22839, 26081, 1610, 1177, 1895, 1953, 1955, 10964, 2675, 3211, 1894, 4135, + 91, 1984 + ], + [0, 671, 3358, 2989, 1177, 1894, 4320, 1501, 19269, 4354, 1671, 2649], + [1, 2343, 17810], + [0, 17811, 17812, 17814, 2537], + [0, 26087, 26090, 2752, 2753, 26092, 26095, 26099, 3478, 4094], + [0, 1503, 1702, 22845, 2990, 3074, 3421, 3697, 4237, 13351], + "jsdoc2md", + [0, 200, 5957, 3392, 9000, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921], + [1, 2343, 17816], + [0, 17817, 17820, 6226, 2487], + [0, 1486, 1511, 2017, 3077, 4038, 4726], + "agnostic", + "dnd", + [0, 13352, 4094, 13351], + [1, 2343, 17822], + [0, 17823, 17824, 2514, 4139], + [0, 26114, 26111, 5438], + [0, 26121, 26117, 10675, 26122, 10706, 4484], + "-protocol", + [2, 1730, 17825], + "jsonify", + [1, 2343, 17831], + "rpc", + "callbacks", + [0, 17832, 17833, 17834, 2523], + [0, 1209, 3183, 1387, 26129, 1549], + [0, 2899, 4193, 1177, 3215, 2759], + [0, 1098, 14576, 2947, 36, 5001], + "@ffmpeg-installer/ffmpeg", + [3, 1733, 16], + "mmon", + [2, 17836, 17837], + [1, 2343, 17840], + [0, 17841, 17842, 17843, 2487], + [0, 3459, 1594, 710, 1512, 3237, 1544, 1457, 26136, 4150, 2012, 3427, 26137, 23009], + [0, 2899, 1177, 2272, 4342], + [0, 6400, 5001, 4990, 36, 27, 200], + [1, 2343, 17845], + [0, 17854, 17855, 2514, 2537], + "@puppeteer/browsers", + [3, 13394, 12], + "ium-driver", + [2, 17847, 17848], + "geckodriver", + [2, 13391, 17850], + [2, 5680, 13392], + [2, 13391, 17852], + [0, 1457, 26144, 15767, 4729], + [0, 1509, 2899, 4170, 4193], + [1, 2343, 17857], + [0, 17858, 17860, 17861, 2537], + [0, 16166, 2070, 25923, 2822, 23444, 3006, 1209], + "posthog-node", + [0, 2228, 2273, 2283, 23466, 22081, 2305, 3752, 4193], + [0, 21779, 4745, 16166, 2228, 1541], + [1, 2343, 17863], + [0, 17864, 17865, 17866, 2537], + [0, 1144, 3249, 3539, 6477], + [0, 2228, 2240, 26158, 1906], + [0, 4796, 2070, 2228, 3001, 3529, 26160, 13017, 3209, 3005], + [3, 246, 8], + [1, 2343, 17869], + [0, 0, 17870, 2514, 2487], + [0, 1596, 1177, 1954, 1192, 1894, 4257], + [1, 2343, 17873], + "mecano", + [0, 17874, 17875, 17876, 2537], + [ + 0, 25190, 3088, 26169, 26172, 26173, 26175, 26178, 26179, 26180, 26181, 26182, 26183, 26184, 26187, 26189, + 26190, 26192 + ], + [0, 3310, 1187], + [ + 0, 3304, 36, 5122, 4990, 6400, 5001, 1594, 3171, 4030, 3212, 5592, 2658, 3088, 5995, 4967, 26196, 2665, 27, + 13333, 2671 + ], + "@balena/dockerignore", + "docker", + [1, 2343, 17880], + [0, 17882, 17883, 17885, 2537], + "docker-modem", + [0, 25377], + [ + 0, 1175, 1178, 1195, 1198, 14211, 1267, 26204, 1290, 26205, 1408, 1594, 1895, 2228, 13831, 2236, 2253, 2256, + 2281, 2283, 26208, 2291, 3198, 26210, 18463, 2311, 26212, 17568, 2675, 2990, 3006, 2899, 1894, 26213, 12936, 91, + 4535, 2924, 4681 + ], + "docker.io", + [0, 26216, 26217, 13901, 26218], + [1, 2343, 17887], + [0, 17888, 7923, 2514, 2443], + [0, 1170, 1676, 26223, 4747], + "@bevry/pluginloader", + "ambi", + [1, 2343, 17894], + "ansistyles", + "bal-util", + [0, 17925, 17932, 17933, 2537], + "caterpillar", + "docmatter", + "-baseplugin", + [2, 1737, 17897], + "eachr", + "envfile", + "errlop", + "-grouped", + [2, 13771, 17902], + [2, 12598, 17903], + "extendr", + "extract-opts", + "ignorefs", + "xtorbinary", + [2, 8828, 17908], + "jschardet", + "lazy-require", + [3, 3732, 9], + "title", + [2, 17912, 17913], + "query-engine", + "rfc-log-levels", + "safefs", + "ps", + "safeps", + "scandirectory", + "taskgroup", + "typechecker", + "unbounded", + "watchr", + [0, 1595, 1676, 2071, 26228, 4747], + "@bevry/", + [3, 17583, 12], + [2, 9787, 17927], + [2, 17926, 17928], + [2, 15340, 6706], + "kava", + [ + 0, 1178, 14080, 1253, 1264, 1267, 1734, 1767, 1177, 1903, 1938, 1939, 1954, 1958, 1966, 1970, 1192, 3446, 26230, + 4135 + ], + [0, 26232, 26234, 6698, 3015, 671, 4749, 3378, 9654, 1965, 1644], + "projectz", + "valid-", + [2, 17935, 7204], + [1, 2343, 17941], + " and deployment", + [2, 6147, 17938], + " manage", + [0, 0, 0, 17949, 2537], + "ment system", + [2, 17940, 17942], + [2, 1563, 17943], + "dms", + [2, 1746, 17943], + " agnostic", + [2, 1351, 17947], + [0, 5260, 7268, 614], + "templating", + [2, 11607, 5001], + [1, 2343, 17953], + [0, 0, 0, 17954, 2537], + [0, 5194, 5260, 7268, 614], + [1, 2343, 17956], + [0, 0, 0, 17957, 2399], + [0, 26249, 3426], + [1, 2343, 17959], + [0, 0, 0, 17960, 2537], + [0, 26249, 1420], + [1, 2343, 17962], + [0, 0, 0, 17963, 2523], + [0, 26249, 26258], + "docsify", + "docsify.js", + "tabs", + [1, 2343, 17968], + [0, 0, 0, 17969, 2537], + [0, 26249, 1675], + [1, 2343, 17975], + "@textlint/markdown-to-ast", + "anchor-markdown-header", + "section", + [2, 9787, 17973], + [0, 0, 0, 17976, 2523], + [0, 26249, 19400], + "bitbucket", + "gitlab", + "ghost", + [1, 2343, 17981], + [0, 0, 0, 17983, 2523], + [2, 20413, 4699], + [0, 26249, 3033], + "doct", + "rine-temporary-fork", + [2, 17984, 17985], + [1, 2343, 18006], + "globals-docs", + "konan", + [2, 3138, 14510], + "micromark-", + "util-c", + "haracter", + [2, 17992, 17993], + [2, 17991, 17994], + "filepath", + [2, 13721, 17996], + [3, 3999, 9], + "ference-links", + [2, 17998, 17999], + "unist-", + [2, 18001, 9381], + "vfile-", + [2, 18003, 16237], + "vfile-sort", + [0, 0, 0, 18010, 2523], + "chdir", + "-schema", + [2, 1745, 18008], + [0, 26249, 14741], + "jsdoc3", + "nums", + [1, 2343, 34449], + [0, 26249, 3038], + [1, 2343, 18021], + "big-integer", + "-search-bounds", + [2, 17180, 18017], + "int64-buffer", + "priorityqueuejs", + [0, 0, 0, 18022, 34352], + [0, 26249, 3040], + "semaphore", + [1, 2343, 18025], + [0, 0, 0, 18026, 2537], + [0, 26249, 26287], + [1, 2343, 18029], + "cosmosdb", + [0, 0, 0, 18030, 2537], + [0, 26249, 26292], + "cosmos db", + "document ", + [1, 2343, 18034], + [0, 0, 0, 18038, 2537], + "database", + [2, 18032, 18035], + "nosql", + [0, 1209, 26249, 7268, 614], + [1, 2343, 18040], + [0, 0, 0, 18041, 2523], + [0, 26249, 26301], + "crowdin-cli", + [3, 2694, 9], + "gifsicle", + [2, 18043, 18044], + "jpegtran", + [2, 18043, 18046], + "png", + "optipng", + [2, 18043, 18049], + [2, 18043, 4361], + "tcp-port-used", + [1, 2343, 18054], + [0, 0, 0, 18057, 2537], + "tree-node-cli", + [2, 15862, 1868], + [0, 26249, 26307], + [1, 2343, 18060], + "glob-promise", + [0, 0, 0, 18062, 2537], + "websites", + [0, 26249, 3053], + "open source", + [1, 2343, 18065], + [0, 0, 0, 18066, 2399], + [0, 26249, 7906], + [1, 2343, 18075], + [2, 15774, 1722], + "-languages", + [2, 6327, 18069], + "to-vfile", + [2, 9406, 2741], + "lru.min", + "offline-search", + [0, 0, 0, 18076, 2537], + [0, 26249, 1698], + [1, 2343, 18078], + [0, 0, 0, 18079, 2537], + [0, 26249, 3061], + [2, 1611, 1388], + "height", + "classlist", + [1, 2343, 18084], + [0, 0, 0, 18085, 2523], + [0, 26249, 3063], + [1, 2343, 18088], + "domelementtype", + [0, 0, 0, 18090, 2523], + "entities", + [0, 26249, 3065], + [1, 2343, 18092], + [0, 18093, 0, 18094, 2537], + [0, 22983, 22985], + [0, 26249, 1283], + [1, 2343, 18096], + [0, 0, 0, 18098, 2523], + "raster", + [0, 26249, 6925], + [1, 2343, 18100], + [0, 0, 0, 18101, 2537], + [0, 26249, 3071], + "qunit-tap", + "lodash.sample", + "paths", + "ncludepaths", + [2, 8851, 18105], + [1, 2343, 18109], + "math", + [0, 18111, 18115, 18116, 2523], + "mathml", + [0, 2353, 998, 1856, 17003, 26351, 26350, 26349], + "secure", + "sanitizer", + "purify", + [0, 3421, 4389, 2675, 26357, 1177, 10824, 26358, 2990, 15797, 15804, 15793, 15801], + [0, 3073, 2942, 1676, 1409, 4709], + [1, 2343, 18118], + [0, 18119, 18120, 18121, 2523], + [0, 20040, 16232], + [0, 1906, 1166, 4481, 4294], + [0, 3656, 200, 8429, 6876, 7169, 5511, 2568, 20597, 2089, 20598, 6574, 3073, 6807, 7009, 8634], + [1, 2343, 18123], + [0, 18125, 18126, 18127, 2537], + [3, 4257, 9], + [0, 1107, 1477, 4208, 4294, 4726], + [0, 4874, 4290, 26371, 4481, 16041, 1906], + [0, 3073, 2942, 6807, 200, 7009, 6048, 7201, 4166, 3076, 26375, 26376, 6811, 8634, 3730, 10036, 7521], + [1, 2343, 18129], + [0, 18130, 18131, 18133, 2523], + [0, 26383, 1676, 26385, 4038, 26388], + [ + 0, 192, 5467, 26390, 13757, 24030, 1177, 1881, 1895, 19527, 1938, 1955, 2151, 2675, 2742, 3421, 1894, 3752, + 4384, 91 + ], + "expand", + [0, 6807, 3073, 15227, 202], + [1, 2343, 18136], + "interpolation", + [0, 0, 18138, 18139, 2523], + "substitution", + [0, 26398, 4874, 2228, 2240, 2247, 2253, 2256, 24293, 2273, 2281, 2283, 26399, 26400, 2765, 4474, 91], + [0, 3073, 2942, 6807, 1388], + [1, 2343, 18141], + [0, 0, 18144, 18146, 2399], + "archive-type", + "ext-name", + [0, 26406, 1894, 91], + "filenamify", + [0, 18108, 3080, 26408], + "is-zip", + [2, 4551, 1398], + [1, 2343, 18150], + [0, 18151, 18152, 18153, 2487], + [ + 0, 1797, 1704, 26413, 1149, 1676, 7077, 2026, 26416, 1309, 1362, 2712, 3361, 1364, 4148, 26417, 26420, 26423, + 26426, 26429, 4547, 26435, 26438, 26443, 26448 + ], + [ + 0, 3421, 1429, 2228, 2297, 2899, 4193, 4707, 1177, 1596, 2240, 26453, 4342, 1389, 1719, 4196, 2298, 2900, 2291, + 1575, 26455, 26457, 2040, 2236, 2300, 2871, 26459, 2283, 26462, 2281, 25407, 26465, 2881, 25410, 26466, 2895, + 26470 + ], + [ + 0, 5122, 7096, 4030, 5592, 2026, 4031, 2934, 1303, 1965, 12593, 3259, 18037, 1550, 3230, 26472, 3243, 25638, + 14873, 4217, 26473, 5130, 5131, 26474 + ], + [1, 2343, 18155], + [0, 18156, 18159, 12113, 2523], + [0, 9673], + "repository", + "tarball", + [0, 1389, 1839, 4384], + [1, 2343, 18161], + [0, 18162, 18163, 18164, 34352], + [0, 26484], + [0, 4494, 2675, 4400, 1177, 1209, 1701, 4474, 91, 4874, 4870, 6494, 192, 26488, 26486, 13789, 25298, 5467], + [0, 18035, 1747, 1804, 26490, 21687, 2117, 6671, 2703, 26492, 26493, 1388, 1999], + [1, 2343, 18166], + [0, 0, 18167, 18168, 2523], + [0, 4874, 1317, 668, 3127, 3188, 1894, 4384, 4483, 4508], + [0, 6879, 6650, 2325], + [1, 2343, 18175], + "import-from", + "parse-c", + "md-args", + [2, 18171, 18172], + [2, 4182, 4562], + [0, 0, 18176, 18177, 2399], + [0, 6373, 968, 26503, 4042, 4057, 91, 1983, 1984, 26504, 25079, 26507], + [0, 26509, 26510, 26511, 26512, 26513, 26514, 26516, 26517, 26520], + [1, 2343, 18179], + [0, 18180, 18184, 18187, 34352], + [0, 1149, 1326, 26528, 3263], + [3, 3369, 12], + "ckage-data", + [2, 18181, 18182], + [0, 1596, 2759, 3188, 2899, 3202, 4170], + [3, 16398, 19], + [2, 18185, 18182], + [ + 0, 158, 1398, 26532, 3729, 24800, 16662, 16661, 21881, 20637, 18048, 20639, 12712, 26533, 26534, 6870, 26535, + 1504, 14908, 23119, 26536, 26537, 26539, 9135, 26541, 26542, 26543, 6792, 13615 + ], + [1, 2343, 18189], + [0, 18190, 18191, 18193, 2523], + [0, 26548, 26551, 16053, 25874, 1519, 1522, 26552, 25190, 2934, 26553, 3445, 3762, 16057, 17798], + [0, 2829, 26192, 3310, 26556, 1187], + "dox", + [0, 3088, 36, 27, 13333, 2671, 5995, 2665, 3304, 5122], + [1, 2343, 18195], + [0, 18196, 18197, 18198, 4139], + [ + 0, 1437, 1513, 1676, 1836, 16473, 25623, 26563, 2089, 2149, 2572, 26565, 2584, 1161, 2822, 26567, 26568, 3188, + 3467, 3718, 12443, 9340, 3992, 3999, 26572, 26573, 4449, 18071, 4549, 18002, 4555, 12447, 3348, 12449, 4707, + 4728, 26574, 4747 + ], + [ + 0, 26578, 5245, 12396, 7637, 26579, 26581, 4874, 6520, 9315, 7819, 26584, 22092, 4892, 1610, 19878, 4207, 4294, + 91, 4579 + ], + [0, 1783, 26586, 26587, 5472, 1745], + "spawn-", + "please", + "spawn-please", + [1, 2343, 18204], + "@types/temp", + [0, 18205, 18206, 18207, 4139], + [0, 5012], + [0, 442, 816, 6373, 1317, 19839, 1567, 1177, 1894, 23535, 4042, 4228, 4232, 1984], + [0, 1871, 26597, 12938, 17950, 15139], + [1, 2343, 18209], + [0, 18210, 18211, 18212, 2487], + [0, 4729, 1170, 2832, 4484, 2018, 1209, 2738, 7665, 18730], + [0, 1177, 4508, 9241, 91, 4874, 3400, 13204, 4870, 1011, 10638, 26606, 1009], + [ + 0, 26608, 21009, 91, 1723, 10339, 17623, 5284, 26611, 26614, 26617, 26620, 26622, 24090, 26624, 26626, 16697, + 26628, 26631, 1745, 26632, 26633, 3091 + ], + [1, 2343, 18214], + [0, 18215, 18216, 18217, 2537], + [0, 1437, 2051, 2205, 4600, 3249, 3505, 4300], + [0, 2228, 2899, 4170, 2240], + [0, 1370, 2323, 17461, 21779], + [1, 2343, 18219], + [0, 0, 18221, 18222, 2537], + "bplist-parser", + [0, 8780, 4874, 1166, 2215, 21537, 4400, 4481, 1906], + [0, 7148, 3188, 7048, 17455, 17453, 7204, 6857, 3403, 5933, 7029, 26647, 26648, 6899, 7147, 2150, 17462, 16503], + [1, 2343, 18224], + [0, 0, 0, 18238, 2523], + "alex", + [3, 14237, 14], + "bjs", + [2, 18226, 18227], + [2, 1884, 2081], + "fbjs-scripts", + "gulp-d", + "erequire", + [2, 18231, 18232], + "stats", + [2, 18234, 4408], + "webpack-st", + [2, 18236, 2187], + [0, 7048], + "draftjs", + "typed-binary", + "richtext", + [1, 2343, 18243], + [0, 18244, 18245, 18246, 2537], + [0, 10780, 1139, 1301, 1362, 26657, 2866, 26658, 3507, 4545, 4736], + [0, 4874, 1389, 26662, 26663, 1177, 26664, 2899, 1241, 91, 4535], + [0, 20697, 1936, 26666, 4718, 1783, 5980], + [1, 2343, 18249], + "just-extend", + [0, 18251, 18257, 18261, 2487], + [3, 5371, 20], + [ + 0, 7709, 15288, 26675, 26677, 26678, 26681, 26684, 26412, 26685, 29310, 1091, 1309, 1437, 8536, 6809, 1481, + 21847, 23872, 2822, 2863, 3000, 3203, 3260, 3310, 3363, 3509, 3519, 3547, 3951, 4094, 4164, 4213, 4246, 4521, + 17142, 1002 + ], + "ring", + "inline-string", + [2, 18250, 18253], + [2, 18250, 2278], + "cypress-", + [ + 0, 28091, 26688, 9687, 26690, 28084, 28092, 20886, 26694, 6494, 7637, 5542, 12461, 9240, 1009, 1011, 1177, 1895, + 1955, 2150, 1192, 3403, 1894, 4232, 4342, 4468, 4469, 4480, 91 + ], + "file-upload", + [2, 18256, 18258], + [2, 2918, 4195], + [ + 0, 5995, 5592, 4030, 6710, 91, 18035, 30967, 28976, 6354, 28986, 29686, 26147, 29690, 13126, 7827, 25638, 3259, + 4521, 12659, 1303, 5165, 18258, 13901, 6949, 29732, 29735, 30183, 6688, 30184, 33629, 14344, 29744, 3097 + ], + [1, 2343, 18264], + "dragndrop", + [0, 0, 18268, 18269, 2523], + " and drop", + [2, 7518, 18265], + [3, 12322, 11], + [ + 0, 19181, 26706, 578, 583, 587, 32379, 26707, 4870, 4874, 4880, 4883, 1009, 1011, 1497, 1637, 1177, 4828, 1961, + 1209, 3286, 3561, 3566, 3613, 26710, 26712, 1894, 89, 3824, 4164, 9348, 26713, 4493, 91 + ], + [ + 0, 181, 26709, 13083, 4403, 26715, 26717, 89, 26720, 91, 5284, 6400, 4967, 6073, 181, 26726, 1487, 17758, 26727, + 4627 + ], + [1, 2343, 18271], + [0, 0, 18273, 2514, 2523], + "tsutils", + [0, 19987, 19989, 19988, 2012, 7115], + [1, 2343, 18283], + "dts-critic", + [3, 7935, 17], + [2, 18276, 594], + [2, 15438, 57], + [2, 18276, 18278], + "versions", + [2, 4524, 18280], + [2, 18276, 18281], + [0, 0, 18291, 18292, 2487], + [3, 15891, 13], + [2, 18284, 4299], + [3, 7729, 14], + "able-str", + "ingify", + [2, 18287, 18288], + [2, 18286, 18289], + [0, 4874, 1009, 1011, 7677, 1165, 1414, 1177, 1883, 1915, 2832, 26743, 2278, 4320, 5978, 91, 1983, 26744, 1984], + [0, 26741, 26746, 1932, 26747, 590], + [1, 2343, 18294], + [0, 18296, 11686, 18297, 2537], + [2, 11513, 2527], + [0, 3368], + [0, 1783, 26755, 6892], + [1, 2343, 18299], + [0, 18300, 18301, 18302, 2523], + [0, 1139, 18089, 26761, 26762, 26763, 26764], + [ + 0, 5583, 811, 816, 10615, 1111, 1317, 1414, 1429, 1177, 1903, 2026, 2193, 2600, 2805, 5944, 3112, 7612, 3114, + 26767, 26770, 26772, 26774, 26776, 7617, 7648, 2899, 26777, 3278, 4042, 4167, 4342 + ], + [0, 1783, 57, 20627, 3105, 26780], + [1, 2343, 18304], + [0, 0, 18305, 18306, 4139], + [0, 5328, 1166, 5946, 3165, 4232, 4255], + [0, 1783, 3105, 26780, 10345, 26786], + [1, 2343, 18308], + [0, 0, 18309, 18310, 2523], + [0, 5583, 816, 10615, 1414, 1177, 1903, 3105, 7648, 2899, 4042], + [0, 26780, 3105, 1783], + [1, 2343, 18342], + "dw-neit-", + [2, 18312, 1512], + "dw-neit-c", + [2, 18314, 11163], + [2, 18315, 3007], + [2, 18312, 45], + [3, 1793, 11], + "-des", + "ign-react-slick", + [2, 18319, 18320], + [2, 18318, 18321], + "rc-co", + "mponent", + [2, 12796, 9948], + [2, 18324, 18325], + [2, 18323, 18326], + [2, 18312, 18327], + [3, 18328, 21], + "e-observer", + [2, 15557, 18330], + [2, 18329, 18331], + [2, 18329, 11194], + [2, 18329, 11184], + [3, 18334, 22], + [2, 18335, 13168], + [3, 18328, 12], + "ascader", + [2, 18337, 18338], + [2, 18337, 5449], + [3, 18328, 13], + [0, 0, 18309, 18352, 4139], + "llapse", + [2, 18341, 18343], + [3, 18328, 11], + "dialog", + [2, 18345, 18346], + [3, 18347, 12], + [2, 18348, 9997], + [3, 18349, 13], + [2, 18350, 11206], + [0, 26780, 3105, 1783, 3113, 26796, 26799, 26800], + "field-form", + [2, 18345, 18353], + [2, 18345, 158], + [3, 18355, 12], + [2, 18356, 1020], + [2, 18357, 11211], + "mentions", + [2, 18345, 18359], + [3, 18360, 14], + [2, 18361, 11215], + [3, 18360, 12], + [2, 18363, 11218], + [2, 18345, 9044], + [1, 2343, 18395], + "pagination", + [2, 18345, 18367], + [3, 18368, 12], + [2, 18369, 9947], + [2, 18369, 10148], + [2, 18345, 6882], + [3, 18372, 12], + [2, 18373, 11227], + "segmented", + [2, 18345, 18375], + [3, 18376, 13], + [2, 18377, 4021], + [3, 18376, 12], + [2, 18379, 10205], + [2, 18379, 11234], + [2, 18379, 10222], + [2, 18345, 17966], + [3, 18383, 12], + [2, 18384, 11241], + [2, 18384, 11243], + [2, 18345, 614], + [3, 18383, 14], + [2, 18388, 2699], + "ooltip", + [2, 18384, 18390], + [2, 18386, 11245], + [3, 18387, 12], + [2, 18393, 184], + [0, 18396, 18397, 18398, 2537], + [0, 1525, 1792, 2051, 2600, 3524, 4001, 26806, 4431, 4449], + [0, 1596, 2759, 26808, 4255, 4389], + [0, 1783, 2636, 6270, 1283], + [1, 2343, 18400], + [0, 0, 18401, 18403, 2537], + [0, 4874, 1414, 1437, 1894, 3985, 3998, 4294, 4505, 91, 1906], + "control flow", + [0, 14903, 1783, 26815, 176, 15847, 2585], + [1, 2343, 18405], + [0, 0, 18406, 18408, 2443], + [0, 17212, 4874, 4880, 4883, 33492, 668, 89, 3824, 3857, 15728, 26827, 91, 188], + "zrender", + [0, 1783, 33510, 89, 3698, 1219, 188, 12072, 8588, 23332, 33512, 3857, 1936], + "@lang/rollup-plugin-dts", + [1, 2343, 18414], + [2, 14678, 17116], + [2, 9816, 1974], + "apache", + [0, 18416, 16487, 18417, 2537], + "data-viz", + [0, 1537, 26835, 2226, 26836, 26837, 26838, 3183, 26839, 22230, 4001, 26840, 22557], + [ + 0, 26786, 20627, 1739, 1746, 1745, 26842, 156, 4017, 3966, 1783, 5980, 1932, 9591, 11043, 4001, 26843, 8924, + 3902, 176, 26845, 26847, 10631, 6033 + ], + [1, 2343, 18419], + [0, 18429, 18436, 18437, 2523], + [2, 6038, 1541], + "gulp-e", + "xclude-gitignore", + [2, 18421, 18422], + "gulp-rep", + [2, 18424, 2902], + "gulp-tap", + "linez", + "os-locale", + [0, 3167, 27252, 18578, 26852, 28035, 28719, 28722, 26987, 4290], + [3, 5248, 9], + "t-stream", + [2, 18430, 18431], + [3, 11320, 11], + "ugh2", + [2, 18433, 18434], + [ + 0, 442, 19344, 1091, 1166, 1414, 26854, 1177, 1942, 1953, 1964, 1982, 26855, 2205, 2822, 26696, 2858, 3105, + 26770, 26776, 7617, 17250, 17269, 3400, 4409, 4452, 91, 2924, 4677 + ], + [0, 1783, 671, 5980, 26859, 3124], + "@types/vinyl", + "-fs", + [2, 18438, 18439], + [1, 2343, 18445], + "fix", + "enforce", + "gulpplugin", + [0, 18446, 18447, 18448, 2399], + [0, 1525, 1696, 2687, 2822, 2858, 26865, 3124, 3105, 3181, 26866, 25648, 27921], + [0, 1166, 17269, 1906], + [0, 1783, 3124, 200, 13326], + [1, 2343, 18450], + [0, 0, 18451, 18452, 2537], + [ + 0, 5517, 26873, 26876, 16607, 6063, 6065, 16608, 16612, 1448, 20627, 1610, 12607, 668, 26739, 1177, 2600, 3105, + 26878, 26880, 26881, 4039, 4131, 23878, 4484, 91 + ], + [0, 1783, 26885, 1936], + [1, 2343, 18454], + [0, 18457, 18465, 6604, 2537], + "keepalive", + [2, 4575, 18455], + [ + 0, 9569, 9573, 7610, 9577, 9548, 9568, 9547, 2745, 9556, 9565, 9558, 9560, 9552, 9562, 9566, 3023, 3032, 9563, + 3105, 3114, 9580, 9584, 5961, 9554, 4110, 9550 + ], + "aliasify", + "backport", + [3, 2250, 18], + [2, 18460, 3227], + "run", + "grunt-run", + [2, 4431, 4226], + [0, 1389, 1448, 2070, 9588, 2899, 9586, 4255, 4257], + [1, 2343, 18467], + [0, 18468, 0, 2514, 2537], + [0, 1804, 26895], + [1, 2343, 18470], + [0, 18471, 0, 6260, 2399], + [0, 1282, 26902, 2926, 3060, 3070, 3744, 26906, 3911, 3935, 26908, 4649], + [1, 2343, 18474], + [2, 8243, 3038], + [0, 18475, 18476, 18477, 4139], + [0, 97, 26915, 25212, 26917, 13746, 26921, 4127, 15918, 26922], + [ + 0, 53, 13052, 5825, 83, 87, 94, 19961, 6503, 1009, 1011, 1145, 1195, 1414, 1503, 1700, 26703, 1854, 1177, 1895, + 1903, 1938, 1951, 1953, 1955, 1958, 2024, 11425, 2061, 2070, 2323, 2338, 2036, 26924, 2297, 2895, 2900, 2904, + 2923, 4922, 2925, 3188, 2899, 3200, 26925, 26927, 26930, 26932, 26933, 26935, 1894, 3729, 4193, 26940, 4441, + 4474, 91, 2924, 26941 + ], + [0, 18108, 26944, 5746, 26934, 26945, 57, 7256, 6988, 14642, 26946, 26947, 17679, 2275], + [1, 2343, 18485], + "lazy-val", + "dmg-builder", + "builder-", + [2, 18481, 614], + "builder-lib", + [2, 10735, 18483], + [0, 18486, 18489, 2514, 2399], + [0, 6641, 26956, 13651], + "-runtime", + [2, 18482, 18487], + [0, 2899, 2924], + "-ci", + "@types/is-ci", + [1, 2343, 18504], + "nsis", + "dmg", + "msi", + "setup", + "Windows", + "OS X", + "MacOS", + "Mac", + "appx", + "snap", + "flatpak", + [0, 0, 18505, 18506, 34352], + [0, 2899, 4255], + [0, 3135, 26963, 26965], + [1, 2343, 18515], + "asar", + [2, 8243, 18508], + "notarize", + [2, 8243, 18510], + "osx-sign", + [2, 8243, 18512], + [2, 8243, 14566], + [0, 18516, 18519, 18520, 2537], + [0, 9363, 9315, 26972, 23289, 12429, 3167, 26981, 26983, 26985, 26986, 26987, 26990], + "-windows-exe", + [2, 1615, 18517], + [0, 4874, 1414, 26992, 668, 17232, 23276, 2581, 3140, 26993, 1894, 3985, 3998, 4072, 4505, 91, 1906], + [0, 6892, 1783, 26885, 26995, 26564, 1644, 5341, 1633, 23266, 6435, 614], + "galactus", + [3, 2179, 12], + "info", + [2, 18522, 18523], + "junk", + "author", + "parse-author", + "rcedit", + [2, 27093, 33977], + [1, 2343, 18531], + [0, 18532, 18533, 18534, 2523], + [0, 12396, 9363, 23247, 23289, 27003, 27006, 23254, 4555, 12449], + [0, 4874, 23262, 1414, 2581, 2588, 3137, 27008, 27010, 1894, 3985, 3998, 4505, 91, 1906], + [0, 23266, 26564, 26995, 2587, 23267, 614, 6435, 1783, 1936], + [3, 8256, 10], + "ownload", + [2, 18535, 18536], + [1, 2343, 18539], + [0, 0, 18541, 18542, 2487], + "home-path", + [0, 1091, 10738], + [0, 2382, 27017, 27018, 1623], + [1, 2343, 18544], + [0, 18546, 0, 18547, 2523], + "wonderful-fetch", + [0, 27073, 27076], + [0, 27078, 2325, 5576, 24093, 27080, 27081, 27083, 27084, 3143, 27085, 18037], + [1, 2343, 18549], + [0, 18550, 18553, 18554, 2537], + [0, 18529, 33978, 33980, 33981, 33983, 33990, 33998, 34001, 27092, 27094, 26256, 27472, 27096, 4484], + "-processor", + [2, 6870, 18551], + [ + 0, 5087, 27098, 4874, 1130, 1145, 1398, 2651, 2675, 27099, 1192, 3502, 1894, 3729, 3923, 4039, 4393, 4468, 4469, + 4474, 4487, 27101, 91, 1002, 614, 2924, 4677, 4681 + ], + [ + 0, 2150, 17462, 27103, 3150, 3144, 2090, 6771, 2944, 3151, 27105, 4607, 1973, 5472, 3212, 27106, 27108, 27110, + 27111, 27112, 27113, 27114, 27119 + ], + "grunt-banner", + [1, 2343, 18557], + [0, 0, 18558, 18559, 2523], + [ + 0, 5535, 5366, 5087, 27124, 19446, 4874, 1009, 1011, 1317, 1610, 1177, 1895, 1939, 1955, 2024, 27125, 1192, + 3044, 3057, 3117, 27126, 13824, 19445, 27127, 3467, 1894, 4039, 4042, 4069, 4073, 4075, 4201, 4468, 4474, 4484, + 91 + ], + [0, 7906, 27130, 2325, 6681], + [1, 2343, 18567], + "@vue/comp", + "onent", + "iler-utils", + [2, 4312, 18563], + [2, 18562, 18564], + [2, 18561, 18565], + [0, 0, 18568, 18577, 2523], + [0, 1429, 2323, 4193, 27136, 2463, 4196, 2447, 2436, 2839], + "algoliasearch", + "vue-jsx", + [2, 1226, 18570], + [3, 1280, 9], + [2, 17006, 18487], + [2, 18572, 18573], + "cp-cli", + [3, 17554, 15], + [0, 2325, 27138, 2869, 13901], + [2, 27009, 12442], + "lemefe", + [2, 18576, 18579], + [3, 2095, 9], + "gulp-cssmin", + "-editor-middleware", + [2, 8427, 18583], + [3, 3112, 13], + "hain", + [2, 18585, 18586], + [1, 2343, 18600], + "version-cli", + [2, 9951, 18589], + "transl", + [2, 18591, 6917], + "uppe", + "rcamelcase", + [2, 18593, 18594], + [3, 4645, 13], + "es2015-co", + [2, 18597, 14717], + [2, 18596, 18598], + [0, 18601, 18602, 18603, 4139], + [0, 25911, 3923], + [0, 1329, 15990, 1596, 1177, 2759, 2899, 4170], + [0, 2150, 3151], + [1, 2343, 18605], + [0, 0, 18606, 18607, 2523], + [0, 2025, 2899, 2228, 2240, 2300, 2273, 3760], + [0, 3151, 1973, 3101, 2041, 7046, 1398], + [1, 2343, 18617], + "brorand", + "hash.js", + "hmac-drbg", + "istic-assert", + [2, 6907, 18612], + [3, 18613, 13], + [2, 1619, 594], + [2, 18614, 18615], + [0, 0, 18618, 2514, 2537], + [0, 2899, 4170, 640], + "EC", + "Elliptic", + "curve", + "Cryptography", + [1, 2343, 18624], + [0, 8856, 7938, 7939, 2487], + [1, 2343, 18626], + [0, 0, 18628, 18630, 2523], + "@ladjs/consolidate", + [ + 0, 811, 8850, 816, 13789, 7892, 1166, 27163, 1532, 1677, 27164, 27166, 2020, 2205, 2709, 27171, 18183, 27168, + 3919, 11891, 4042, 4057, 4060, 13781, 27162, 4481, 4507, 91, 1906, 4748 + ], + "@ladjs/i18n", + [0, 200, 20052, 614, 6435, 1383, 6478, 1523, 3924, 3157, 27173, 27174, 57, 5675, 6802, 6847, 8429, 7201], + [1, 2343, 18638], + "get-paths", + "juice", + "preview-email", + "@jimp/core", + "-sendgrid", + [2, 3361, 18636], + [0, 0, 18642, 18644, 2537], + "lad", + "lass", + "mail", + [0, 4856, 6503, 4874, 1429, 1540, 2899, 91, 2924, 4677], + "mailchimp", + [0, 1698, 6899, 2051, 1496, 3048, 1388], + "mailgun", + "mandrill", + "moonmail", + "postmark", + "sendgrid", + [1, 2343, 18651], + [0, 0, 18652, 2514, 2537], + [0, 27184, 2759], + [1, 2343, 18654], + [0, 18662, 18663, 18664, 2537], + [3, 7639, 9], + "ilparser", + [2, 18655, 18656], + "mtp-server", + [2, 5051, 18658], + "mailparser", + "smtp-server", + [0, 1457, 1525, 1676, 2226, 16085, 27189, 3170, 27190, 27191], + [0, 19181, 442, 27194, 10723, 5245, 8778, 4874, 27196, 1414, 1177, 1938, 1953, 2203, 2899, 1894, 3980, 4452, 91], + [0, 2947, 12479, 2090, 13755, 5351, 5353, 1179, 1783, 5352, 3160, 4745], + [1, 2343, 18672], + "yam", + "sane", + "dag-map", + "p-defer", + "tree-sync", + "console-ui", + [0, 18674, 0, 2514, 2399], + "is-git-url", + [0, 27202, 13223, 2674, 27203, 27206, 4039, 4135, 4390, 4449], + "quick-temp", + [1, 2343, 18677], + [0, 18680, 18681, 2514, 4139], + "content-tag", + "core-object", + [0, 4590, 1676, 3164, 3494], + [0, 2899, 1177, 2759, 4342, 1954, 1938, 1958, 1903, 1948, 1970], + [1, 2343, 18696], + "capture-exit", + [2, 26872, 33868], + "stew", + [2, 1379, 18685], + [2, 1379, 1676], + "base-url", + [2, 1463, 18688], + "watch-", + "detector", + [2, 18690, 18691], + [2, 1379, 5614], + "broccoli-s", + [2, 18694, 5585], + [0, 0, 18711, 18712, 2523], + "-or-copy", + [2, 7100, 18697], + [2, 1379, 9381], + "-graph", + [2, 14940, 18700], + "is-language-code", + "-posix-path", + [2, 13626, 18703], + "-project", + [2, 2116, 18705], + [3, 18701, 11], + [2, 18707, 2942], + [2, 11338, 1781], + [2, 6333, 18709], + [0, 2899, 2759], + [0, 27, 3164], + "map-series", + [2, 9466, 18713], + [3, 1381, 10], + "iddleware", + [2, 18715, 18716], + "trees", + "low-trees", + [2, 18694, 18719], + ".hash.helper", + [2, 1862, 18721], + [3, 7648, 14], + [1, 2343, 18738], + "rminal", + [2, 18723, 18725], + "fs-monitor", + [2, 18707, 18727], + [2, 7077, 2849], + [2, 4099, 18729], + [3, 18693, 12], + "fig-loader", + [2, 18731, 18732], + [3, 18733, 16], + [2, 18734, 4068], + "-reducer", + [2, 1378, 18736], + [0, 18739, 18749, 18754, 2443], + [ + 0, 53, 61, 5717, 4851, 5240, 5874, 5838, 87, 14128, 90, 8862, 5583, 811, 8850, 816, 27221, 27223, 1165, 7913, + 27225, 27228, 22829, 1405, 1420, 1874, 2098, 2553, 2929, 3060, 3561, 3714, 4042, 13879, 10854, 4073, 4076, 4079, + 11481, 4072, 11482, 4484, 91 + ], + "@pnpm/find-workspace-dir", + "-works", + "pace-root", + [2, 18741, 18742], + [2, 4749, 18743], + [2, 2103, 18744], + "ulate-cache-key-for-tree", + [2, 3563, 18746], + "is-pa", + [ + 0, 48, 13693, 27232, 5522, 107, 1193, 1610, 27234, 1177, 27238, 1895, 1955, 1999, 2151, 2675, 1192, 2990, 27244, + 1894, 3957, 4039, 4165, 4294 + ], + "missing", + "ckage-missing", + [2, 18748, 18751], + [2, 1828, 18752], + [0, 6374, 4042, 27246], + [1, 2343, 18759], + "-registry", + [2, 4358, 18756], + [2, 1828, 18757], + [0, 18775, 0, 18780, 2537], + "yuidocjs", + "chai-files", + "yuidoc", + "-ember-cli-theme", + [2, 18762, 18763], + [3, 10419, 19], + [2, 18765, 2022], + [3, 18753, 11], + "-test-", + [2, 18768, 6706], + [2, 2270, 18769], + [2, 18767, 18770], + [3, 1827, 11], + "lueprint-test-helpers", + [2, 18772, 18773], + [ + 0, 5245, 1676, 26972, 23289, 27252, 27256, 17995, 27259, 27262, 26981, 27263, 26985, 27265, 27003, 27267, 26986, + 26987 + ], + "app-kit", + "ember", + [2, 5802, 18776], + "ember.js", + [0, 20627, 4643, 3987, 1936, 16892, 1783, 26885, 5980, 4549, 1644, 57, 1932, 3729, 3984, 8924, 3902, 11326, 207], + [1, 2343, 18782], + [0, 18783, 18797, 18798, 2523], + [0, 15643, 3530], + "amd-name-resolver", + [3, 1201, 14], + "ebug-macros", + [2, 18785, 18786], + [3, 12186, 15], + "ber-data-packages-polyfill", + [2, 18788, 18789], + [3, 18790, 19], + "modules-", + [2, 4610, 6422], + [2, 18792, 18793], + [2, 18791, 18794], + "broccoli-b", + [0, 2899, 3181, 27275, 2398], + [ + 0, 16159, 27277, 27278, 18132, 27280, 7256, 24440, 27281, 2090, 1586, 7131, 2100, 2070, 21543, 21544, 24441, + 27282, 27285, 27287, 3529, 13777, 6421, 19051, 3170, 3181, 3249, 27289, 27291, 3403, 13017, 11601, 27293, 1108, + 6961, 6920, 4166, 4259, 21520 + ], + "-transpiler", + [2, 13830, 18799], + [2, 18796, 18800], + [2, 6324, 6706], + [2, 1827, 18802], + "version-ch", + "ecker", + [2, 18804, 18805], + [2, 1828, 18806], + [1, 2343, 18821], + "@ember/optional-features", + "@ember/", + [2, 18810, 1871], + [2, 18810, 13281], + "@glimmer/component", + "@glimmer/", + [2, 18814, 17357], + [3, 10614, 11], + "s/lerna-changelog", + [2, 4406, 18817], + [2, 18816, 18818], + "ember-a", + [0, 0, 18836, 18837, 2537], + "uto-import", + [2, 18820, 18822], + [2, 1705, 1524], + [2, 1828, 18824], + [3, 18771, 12], + "-live-reload", + [2, 2429, 18827], + [2, 18826, 18828], + "initializers", + [2, 3614, 18830], + [2, 5802, 18831], + "ember-qunit", + [2, 5802, 14056], + [2, 5802, 4225], + [0, 27299, 7746, 4874, 1009, 1011, 1437, 27301, 3173, 1894, 23901, 27302, 91], + [0, 7188, 2090, 3171, 7305, 7070, 614], + "-channel-url", + [2, 18835, 18838], + [2, 15508, 2478], + "loader.js", + [1, 2343, 18843], + [0, 18845, 16075, 18846, 2399], + "ember-addon", + [0, 7305], + [0, 3171, 553], + [1, 2343, 18848], + [0, 11570, 11571, 18849, 2537], + [ + 0, 27314, 27315, 27316, 27317, 27318, 27319, 27320, 27322, 27323, 27315, 27325, 27326, 27328, 27330, 27332, + 27333, 27337, 27338, 27340, 27341, 27343, 2262, 7287, 27334, 27344, 27346, 27348, 27350, 27353, 27355, 27357, + 27358, 17697, 27359, 27360, 17737, 17739, 5284, 17625, 17626, 676, 91, 17627, 6869, 4799, 6915, 6333, 2382, + 6956, 17706, 17710, 6957, 17711, 17712, 17713, 17714, 17715, 17716, 17717, 17718, 5933, 1451, 7914, 27363, + 27365, 17651, 6899, 17720, 17721, 17722, 6789, 17723, 17724, 17726, 17727, 17729, 17730, 17731, 17732, 17733, + 614, 6910, 17734, 11600, 17735, 27366, 6681, 17740, 1745, 17116 + ], + [1, 2343, 18861], + "edition-utils", + [2, 18810, 18851], + [3, 4644, 15], + [2, 18853, 5218], + [2, 18791, 18854], + "-inline-precompile", + [2, 1829, 18856], + [2, 1199, 18857], + "broccoli-p", + "ersi", + [0, 18862, 18866, 18869, 2443], + [0, 4121, 4388], + "stent-filter", + [2, 18860, 18863], + [2, 18859, 18864], + [ + 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 4874, 1367, 1610, 1622, 1628, 1700, 1701, 1854, 1177, 1895, 20281, + 1938, 1939, 1942, 1953, 1955, 1982, 2092, 2203, 2675, 1192, 2780, 2832, 2990, 3144, 3400, 1894, 2278, 4111, + 4257, 91, 4523, 2924, 4677, 4681 + ], + "code-equality-assertions", + "js-string-escape", + [0, 2924, 1623, 7682, 11498], + "@emb", + "roider/test-setup", + [2, 18870, 18871], + [2, 1828, 1462], + [1, 2343, 18875], + [0, 18879, 18880, 18881, 2523], + "ort-", + "-global", + [2, 13527, 18877], + [0, 27377, 842, 1462, 27379, 1676, 668, 2105, 30621, 16860, 28134, 27380, 4072, 27385, 27388], + [0, 27390, 1177, 27393, 27394, 10624, 27395], + [0, 3178, 16862, 676, 1623, 11807, 1936, 14357], + [1, 2343, 18884], + "dat", + [0, 18885, 18887, 2514, 2443], + [0, 27404], + "ember-s", + [0, 4384, 4483, 3188, 4508, 1894, 4874], + "tyleguide", + [2, 18886, 18888], + [3, 1243, 11], + [2, 18890, 4486], + [2, 5802, 18891], + [1, 2343, 18896], + "ember-try", + [2, 1921, 2907], + [0, 0, 18897, 18898, 2537], + [0, 1158, 3421, 4389, 1177, 3410, 2708, 1159, 4103, 13614], + [0, 6478, 7128, 57, 3460], + [1, 2343, 18900], + [0, 18907, 18908, 18910, 2537], + "@emmetio/abbreviation", + "@emmetio/", + "css-a", + "bbreviation", + [2, 18903, 18904], + [2, 18902, 18905], + [0, 1525, 3313], + [0, 22102, 1192, 1894, 4468, 91], + "coding", + [0, 27425, 27428, 21655], + [1, 2343, 18912], + [0, 0, 18913, 18914, 34352], + [0, 27407, 4874, 13680, 1414, 1895, 1894, 4384, 4474, 4508, 91], + [0, 7148, 7204, 7161, 7048, 4014, 6899, 970], + [1, 2343, 18916], + [0, 18917, 18918, 2514, 2523], + [0, 1082, 3510, 15450, 27438], + [0, 4874, 7677, 1446, 1177, 1905, 5210, 2807, 1894, 15452, 91, 4543, 1984], + [1, 2343, 18920], + [0, 0, 18921, 18922, 2537], + [0, 53, 61, 71, 83, 87, 92, 97, 27445, 2126], + [0, 3190, 27447, 13795, 5128, 89, 6071, 27448, 11415, 27449, 27456, 27458, 27459], + [1, 2343, 18925], + "finish", + [0, 18926, 18927, 18928, 2523], + [0, 27464], + [0, 3190, 27464, 27468], + [0, 3190, 27447, 5128, 89, 6071, 27448], + [1, 2343, 18930], + [0, 18931, 18932, 18933, 2537], + [ + 0, 2591, 3242, 1687, 2070, 1676, 4747, 2105, 2822, 1457, 3181, 3527, 7801, 3074, 4748, 27476, 17450, 4351, + 27481, 4300, 1874, 4143 + ], + [ + 0, 3421, 1429, 2931, 1776, 2297, 4193, 27510, 1177, 3278, 3984, 4039, 4042, 4135, 2203, 26079, 2924, 1894, 1610, + 442, 27500, 91, 27501, 4874, 2665, 2900, 3105, 4677, 4892, 1509, 3123, 3401, 10630, 62, 27490, 27497, 27506, + 27507, 1953, 17529, 3125, 27509, 5946, 3114, 4923, 3107, 8850, 27499, 8862, 2904, 2915, 2881, 811, 27504, 4079, + 13866, 4066, 816, 23652, 27495, 27487 + ], + [0, 2899, 1973, 5982, 6969, 4384, 5472, 1429, 6468, 1166, 1192, 4389, 2765, 2297], + [1, 2343, 18935], + [0, 18936, 18937, 18938, 2487], + [0, 7058, 3758], + [0, 1429, 2899, 25928, 91], + [0, 2899, 6533, 3758, 3197], + [1, 2343, 18940], + [0, 18941, 18942, 18945, 2523], + [0, 1676, 3135, 3188, 4294, 6523], + [0, 826, 1429, 6524, 1177, 2899, 4039, 27525, 27526], + "entitify", + "entity", + [0, 2899, 2793, 16237], + [1, 2343, 18947], + [0, 0, 0, 18948, 2443], + [0, 2899, 16237, 27532, 4504], + [1, 2343, 18950], + [0, 0, 18953, 18954, 2523], + "enumeration", + "datatype", + [0, 1429, 1177, 21470, 2899, 4039, 4135], + [0, 3212, 2150, 1973, 1182, 6771, 3151], + [1, 2343, 18956], + [0, 18957, 18958, 18959, 4139], + [0, 27544, 2159, 15312, 27547, 2571, 2756, 3431], + [ + 0, 5517, 13614, 23237, 27552, 27555, 27557, 27559, 27562, 27564, 27567, 27568, 27570, 27571, 27573, 27575, + 27576, 4874, 27578, 27580, 19325, 1159, 9254, 1855, 1177, 2011, 2133, 2569, 2708, 3410, 3421, 4103, 4389 + ], + [0, 5472, 3212, 3048, 3205, 6692, 6822, 1973, 6865, 6739], + [1, 2343, 18961], + [0, 18962, 18967, 18970, 2537], + [0, 12929, 3369], + [3, 15801, 15], + [2, 18963, 200], + "ify-object", + [2, 4745, 18965], + [0, 1610, 1177, 2899], + "issues", + "reporting", + [0, 3209, 7190, 14419, 14416, 14510, 22228, 1973, 3212, 13106], + "diagnostics", + [1, 2343, 18973], + [0, 0, 7923, 18974, 2487], + [0, 1973, 3212, 202, 2150, 2184], + [1, 2343, 18987], + [3, 1143, 20], + "function.", + ".name", + [2, 6688, 18978], + [2, 18977, 18979], + [3, 2620, 13], + [2, 18981, 3053], + "oolean-object", + [2, 15644, 18983], + "allable", + "is-callable", + [0, 0, 18991, 18998, 2523], + "umber-object", + [2, 13631, 18988], + "is-string", + [0, 2899, 4042, 4076, 4170, 91], + "is-subset", + [2, 3024, 1867], + [2, 3436, 6693], + "rst-selector-parser", + [3, 11434, 17], + [2, 18996, 6678], + [0, 1666, 3212, 1973], + [1, 2343, 19004], + " rendering", + [2, 4161, 19000], + "Render", + [2, 4161, 19002], + [0, 0, 19008, 19009, 2487], + "test utils", + " helpers", + [2, 6468, 19006], + [0, 2759, 2272, 4193, 27601, 4616], + [0, 3212, 13106, 3209, 1237, 2325, 2275, 1973, 27603, 5472, 6969], + [1, 2343, 19011], + [0, 5621, 19012, 19013, 2523], + [0, 2323, 2372, 27608, 2436, 2447, 2463, 27610, 2272, 2839, 2924], + [0, 3212, 27612, 27614], + [1, 2343, 19015], + [0, 19016, 19021, 19022, 2537], + [0, 7058, 2070, 2929, 1209, 11993, 3084, 3310, 2015, 27624, 27623], + "airbnb-", + [2, 19017, 3744], + "fromentries", + [2, 3436, 19019], + [ + 0, 2812, 4481, 27633, 1192, 3241, 27649, 3533, 1676, 27637, 1409, 27635, 1759, 1177, 3078, 27658, 1096, 2738, + 3363, 27656, 4474, 4709, 27636, 27643, 2774, 27648, 1894, 1596, 27641, 2777, 3379, 4342, 27645, 3747, 91, 27659, + 4874, 27632, 27655, 27634, 27657, 27628, 27644, 27630, 27647, 25710, 27660, 27640, 1954, 27652, 826, 27626, + 1958, 1895, 1955, 1966 + ], + [0, 27662, 14584, 5130, 5995, 27664, 17829, 14586, 3166, 11631, 24090, 27666], + [1, 2343, 19024], + [0, 0, 19025, 19026, 2523], + [0, 2907, 4042, 1610, 91, 4874, 2915], + [0, 3220, 1666, 6901, 1644, 1671, 2649, 2679, 6728, 6804], + [1, 2343, 19028], + [0, 19029, 19030, 19031, 2537], + [0, 3220], + [0, 2228, 2247, 2273, 2277, 2281, 17565, 91], + [0, 3220, 1666, 6901, 27679, 27680, 27681, 27678, 16626], + [1, 2343, 19033], + [0, 19034, 19035, 19037, 2523], + [0, 2858, 27688, 27692, 27693, 27696, 3502, 1894, 27700, 27702, 27703, 4745], + [0, 27709, 32818, 7677, 668, 21290, 3541, 3985, 27711, 91, 1984, 27714], + [2, 6296, 3741], + [0, 6038, 4967, 6400, 27708, 21290, 4745], + "codependence", + [1, 2343, 19040], + [0, 0, 19061, 19062, 2399], + " for es6", + [2, 4354, 19041], + "check for ", + [2, 19043, 5260], + "es check", + "es matching", + "es version", + " check", + [2, 5286, 19048], + [3, 19049, 11], + "matching", + [2, 19050, 19051], + [2, 19050, 15525], + "js version", + [2, 19054, 19048], + [3, 19055, 11], + [2, 19056, 19051], + "test ", + [2, 19058, 19054], + [2, 19058, 19053], + [0, 442, 4874, 7677, 1177, 1895, 1966, 1982, 1894, 4039, 4508, 4514, 17223, 91, 4523, 1983, 26744, 1984], + [0, 27722, 27723, 27724, 5675, 27725, 6400, 5995], + [1, 2343, 19064], + [0, 19068, 19075, 19079, 4139], + "bigints", + "has-bigints", + "intl-", + [ + 0, 16003, 32967, 16005, 16000, 19267, 15999, 20870, 23721, 19282, 6372, 27731, 1364, 1367, 23723, 1395, 1505, + 1525, 1575, 1610, 1640, 1759, 1853, 2026, 9243, 2040, 2117, 27735, 27737, 2626, 2814, 7796, 3162, 3230, 27740, + 3237, 3527, 23726, 4148 + ], + "back-symbol", + [2, 9925, 19069], + [2, 19067, 19070], + [3, 5742, 14], + [2, 3094, 19072], + "make-a", + [ + 0, 53, 68, 87, 27742, 27743, 1195, 1429, 1465, 1540, 1584, 1628, 1651, 1177, 1881, 1938, 1982, 26154, 2092, + 2675, 2899, 12690, 3322, 3363, 4307, 4342, 2924, 4677 + ], + "unction", + "sync-function", + [2, 19074, 19077], + [0, 20897, 27746, 6910, 18035, 27747, 8626, 8298, 27749, 1550, 3230, 27750, 27751, 27752], + "reflect", + ".ownkeys", + [2, 19080, 19081], + [2, 7315, 7262], + [2, 5511, 19083], + [1, 2343, 19086], + [0, 19087, 19088, 19089, 4139], + [0, 1395, 27759, 27762], + [ + 0, 3421, 4481, 29749, 1429, 1437, 2899, 4193, 27764, 4747, 1177, 4135, 27765, 2026, 2822, 4474, 1894, 4196, 91, + 5307, 4856, 4874, 1436, 27767, 6503, 6513, 27768, 5254, 6494, 27772, 27775, 27776, 27779, 6512, 27781, 27782, + 4232, 1951, 1978, 1895, 1955, 608, 603, 1011, 27786, 15115, 27790, 27792, 1009, 10964, 549 + ], + [0, 3230, 13392, 11489], + [1, 2343, 19091], + [0, 19095, 19098, 19103, 2399], + "es6-symbol", + "esniff", + "next-tick", + [0, 27798, 3230, 27799, 27800, 3242, 27801], + "plain", + [2, 19096, 4007], + [ + 0, 30604, 29957, 4874, 27803, 27805, 27807, 1091, 1414, 1448, 18192, 1177, 13850, 2026, 2151, 2600, 21630, 3044, + 27810, 20451, 3127, 3188, 2899, 3220, 27786, 12690, 29780, 3275, 3754, 4193, 29998, 91, 4523, 3348 + ], + "ecmascript5", + "ecmascript6", + "extensions", + "addons", + [0, 3230, 1746, 11415, 2844, 18035, 27812, 2382, 27814, 3766, 18037, 3469, 1747], + [1, 2343, 19105], + [0, 19106, 19107, 19109, 2523], + [0, 1605, 1541, 1292, 4218, 4545, 4220, 27822], + [0, 2228], + "es5 shim", + [0, 3233, 27826, 27827, 20863, 27829, 27830], + [1, 2343, 19111], + [0, 19112, 19107, 19113, 2523], + [0, 1541, 1544, 3233, 27835, 27822], + [0, 3233, 27837, 27826, 27827, 27838, 12619, 20863, 27840], + "rettime", + [1, 2343, 19116], + [0, 19117, 19131, 19133, 4139], + [0, 27847, 1676, 3230, 27849, 27852, 27855, 27856, 27857, 27859, 3427], + "json3", + [2, 1379, 4042], + "git-repo-", + [2, 19120, 15525], + [2, 1379, 4650], + [2, 1379, 4535], + "-phantom", + [2, 3736, 19124], + "6-plugin-strip-class-callcheck", + [2, 1172, 19126], + [3, 14198, 32], + "nstants", + [2, 19128, 19129], + [0, 1166, 1503, 1177, 1903, 1920, 1938, 1954, 1958, 1970, 27861, 27866, 27869, 27872, 27873, 27874, 27875, 3421], + "futures", + [0, 3236, 3230, 1550, 13392], + [1, 2343, 19135], + [0, 19136, 19137, 19139, 2523], + [0, 1304, 1676, 1704, 3440, 16128], + [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4237, 4342], + [3, 7872, 9], + [0, 2026, 27, 2942, 2663], + [1, 2343, 19141], + [0, 7936, 7938, 7939, 2399], + [1, 2343, 19143], + [0, 19144, 19147, 19148, 2399], + [0, 4729, 4038, 1676, 27764, 4238, 27897, 27899, 3183, 9241, 3084, 27902, 1537, 27910, 3923, 27905, 14731], + "es6-tests", + [2, 12790, 19145], + [ + 0, 3421, 1429, 4389, 4193, 1177, 2202, 3188, 4039, 4170, 4216, 668, 2203, 4474, 1457, 1894, 27912, 442, 3697, + 3980, 91, 4856, 4874, 19325, 6513, 1834, 27918, 27920, 19181, 12310, 5536, 5476, 10936, 27924, 1938, 1895, 1955, + 1011, 1567, 5478, 27915, 1009, 10614 + ], + [0, 3241, 27927, 20001, 20003], + [1, 2343, 19150], + [0, 0, 19152, 2514, 4139], + [2, 31089, 9224], + [0, 2675, 2899, 1177, 1894, 2025, 2990], + [2, 31715, 31719], + [1, 2343, 19155], + [0, 19156, 19157, 19158, 2399], + [0, 27936, 1525, 1676, 25625, 25635], + [0, 192, 5467, 16607, 6065, 16608, 16612, 2899, 4131, 4255], + [0, 18035, 3243, 14872, 36, 27939, 26472, 27940, 27942, 25635, 27944, 26472, 27945, 13531, 27948], + [1, 2343, 19160], + [0, 19162, 19163, 19164, 2443], + "special", + [0, 27959, 617, 9213, 27962, 977, 2220, 27964, 9218, 9219, 3509, 3527, 19114, 4266, 9221, 4454, 4507, 27955, 4747], + [ + 0, 192, 5467, 19151, 19181, 442, 17982, 5497, 9225, 9226, 8648, 6494, 27966, 4874, 19153, 1009, 1011, 5474, + 1170, 13662, 1527, 1610, 1613, 1652, 668, 8161, 1177, 1895, 1955, 2026, 2078, 19213, 2070, 2832, 27967, 2931, + 2990, 27969, 1894, 23535, 3957, 4039, 9245, 4493, 91, 4523, 4548, 4027, 1984, 9250, 2924, 9258, 3244 + ], + [0, 5592, 3212, 8788, 6812, 6688, 36, 11100, 1852, 5472, 6400, 10768], + [1, 2343, 19166], + [0, 19169, 19170, 19173, 2537], + [2, 18756, 4219], + [2, 1370, 19167], + [0, 27978, 1410, 1537, 3188, 3427, 1000, 1695], + [0, 1693, 2026, 2139, 27981, 2899, 3421, 4039, 4255, 27984], + "-everywhere", + [2, 10906, 19171], + [0, 1669, 3689, 15237, 2139, 27986, 2026, 2663], + [1, 2343, 19175], + [0, 19176, 8134, 19178, 2537], + [0, 22970, 27992, 3181], + [3, 442, 8], + [0, 18132, 2100, 2070, 21543, 21544, 3529, 13777, 3181, 13017, 11601, 21520], + "config-array", + [2, 19177, 19179], + [2, 19177, 1998], + "@humanwhocodes/module-importer", + [3, 19182, 15], + [2, 19183, 1153], + "@nodelib/fs.walk", + "esquery", + "imurmurhash", + "-without-jsonify", + [2, 2851, 19188], + "levn", + [1, 2343, 19196], + "@eslint/co", + [2, 19192, 23], + [2, 442, 1803], + "@trunkio/launcher", + [0, 19197, 19198, 19199, 2523], + [0, 4538, 2657, 4100], + [0, 3421, 27999, 2899, 1177, 3188, 4039, 4339, 4012, 1948], + [0, 2090, 9229, 2141, 3101, 6949], + [1, 2343, 19201], + [0, 19211, 19212, 19214, 2537], + [2, 3192, 5130], + [2, 11095, 19202], + [3, 1992, 9], + "lease", + [2, 19204, 19205], + "eslint-r", + "ule-composer", + [2, 19207, 19208], + "eslump", + [0, 2100, 2151, 2859, 1209, 5303, 3445, 3348], + [0, 2765, 3421, 33373, 3980], + "fs-teardown", + [0, 1649, 1936, 28007, 3256, 28009, 28012], + [1, 2343, 19217], + "metascraper", + [0, 0, 19228, 19229, 2537], + "-description", + [2, 19216, 19218], + [3, 19219, 12], + [2, 19220, 158], + [2, 19220, 11255], + [2, 19222, 4147], + [2, 19220, 17913], + "node-po", + "lyfill-webpack-plugin", + [2, 19225, 19226], + [0, 1999, 1429, 4770, 2899, 1177, 2272, 4042, 3758, 4535], + [0, 3257, 1283, 5354, 1797], + "npm-license", + "polyfills", + [2, 4065, 19231], + [1, 2343, 19234], + [0, 0, 19236, 19237, 2399], + "yorkie", + [0, 1759, 2323, 2384, 2508, 2675, 2297, 2881, 2908, 2915, 28023, 28024, 1894, 25851, 2907, 4039, 4042, 4072, 28027], + [0, 10052, 8691, 28030, 7131, 6333, 7518], + "sql-escaper", + [1, 2343, 19240], + [0, 19241, 19245, 2514, 2443], + [0, 1325, 3923, 4100, 28036], + "ape-runner", + [2, 1285, 19242], + "eslint-f", + [0, 1087, 1177, 4127, 28038, 28039, 28040], + "ind-rules", + [2, 19244, 19246], + [1, 2343, 19249], + [0, 19250, 19251, 19252, 2537], + [0, 3080, 24383, 18073, 2685, 19238, 28047, 28049, 28052], + [ + 0, 1414, 4494, 28059, 2203, 1894, 1317, 1610, 442, 3560, 91, 4874, 28056, 19181, 27928, 6473, 1895, 1955, 1011, + 28058, 1009, 13188 + ], + [0, 3259, 5576, 36], + "using-browser-globals", + [2, 12084, 19253], + [1, 2343, 19256], + [0, 19257, 19258, 19259, 2443], + [0, 21243, 3427, 21246], + [0, 2759, 1362, 2899], + [0, 19138, 1862, 28067, 21244, 5194], + [1, 2343, 19264], + [3, 3703, 10], + [3, 9487, 11], + [2, 19261, 19262], + [0, 0, 19265, 19266, 2537], + [0, 28072], + [0, 3417, 202, 15525, 10057, 28074, 202, 17180, 1263], + [2, 15998, 23720], + [1, 2343, 19272], + "quality", + "jslint", + "code style", + [0, 0, 19274, 2514, 2537], + "verify", + [0, 1326, 1525, 2070, 705, 3923, 4384, 1695], + [1, 2343, 19276], + [0, 0, 19277, 19278, 2537], + [0, 4548, 4874, 91], + [0, 28088, 2382, 705, 1781, 18037, 3166, 2378, 18035], + [1, 2343, 19283], + " config", + [2, 1177, 19280], + "@lezer/highlight", + [0, 19284, 19285, 19287, 2523], + [0, 5012, 1634, 1639, 28094, 26902, 28095, 17011, 7917], + [ + 0, 10821, 10828, 10837, 5087, 4874, 5090, 4880, 1177, 10619, 2675, 28098, 1192, 2968, 28101, 2990, 1894, 3744, + 89, 3824, 3904, 4039, 4232, 4469, 4484, 91, 2924, 4676, 4681, 4749 + ], + [2, 15289, 17540], + [0, 1623, 590, 592, 3528, 2378, 2994, 89, 676, 7164, 7165, 369, 4636, 4627, 4315, 28103, 5547, 5376], + [2, 19289, 1564], + [3, 28155, 14], + [1, 2343, 19291], + [0, 0, 0, 19292, 4139], + [0, 3348, 3778, 3265, 1002], + [1, 2343, 19294], + [0, 19295, 19296, 19297, 2537], + [0, 18509, 1170, 1809, 2151, 28115, 28116, 3079, 3275, 28118, 4108, 4232, 4449, 4747], + [ + 0, 5245, 4864, 28120, 5087, 21621, 4874, 28123, 6520, 4892, 1009, 1011, 1804, 1177, 1895, 1955, 1192, 3541, + 1894, 4039, 4469, 91, 2924, 4677 + ], + [0, 28125, 1804, 1896, 970, 21009], + [1, 2343, 19299], + [0, 19300, 19303, 19304, 2487], + [ + 0, 4729, 3467, 4390, 2806, 3445, 3348, 1170, 1473, 2072, 4747, 20991, 1209, 3078, 3127, 3188, 3483, 4135, 3013, + 4708, 4734, 2003, 3742, 4167, 1137, 1457, 1894, 3761, 4473, 3181, 28130, 1483, 4183, 4227, 91, 28132, 8612, + 28133, 19499, 28135, 20949, 28136, 28137, 14774, 28142, 3762, 635, 28145, 28151, 19288, 1573, 20934, 28155, + 28158, 28164, 28214, 28167 + ], + "eslint-patch", + [2, 9112, 19301], + [ + 0, 1429, 2228, 2675, 2899, 4193, 26212, 2759, 9241, 13214, 4856, 4874, 7819, 2314, 2990, 9357, 28177, 28178, + 6513, 4892, 28180, 4870, 28182, 5254, 28184, 28187, 28189, 7812, 7749, 14352, 28192, 28195, 1431, 2258, 4232, + 2247, 2283, 33046, 28203, 9417, 28206, 5244, 28211, 1567 + ], + [0, 3271, 91, 5284], + [1, 2343, 19306], + [0, 19307, 19321, 19322, 2487], + [0, 28219, 28223, 28224, 1759, 2665, 28225, 3232, 3519, 1552, 18730, 28228, 26940, 4545, 3348, 28230], + " Standard Style", + [2, 17626, 19308], + "code checker", + "code linter", + "code st", + "andards", + [2, 19312, 19313], + "policy", + " style", + [2, 4255, 19316], + [2, 590, 16792], + "style ", + "style linter", + [ + 0, 811, 8850, 816, 23689, 4874, 1009, 28232, 1610, 1177, 21564, 1938, 1953, 1958, 2323, 2441, 28233, 2765, 2766, + 671, 3275, 3421, 28234, 3752, 4039, 4042, 4193, 4232, 4255, 4474, 15097, 91, 28235, 2924, 18237 + ], + [ + 0, 28238, 28241, 17134, 28242, 28243, 207, 28244, 28245, 28246, 28247, 28248, 28249, 28251, 28253, 28256, 28258, + 28260, 28261, 28265, 28266, 4420, 28267, 28269, 28271, 28273, 28274, 28275, 28277, 28280 + ], + [1, 2343, 19324], + [0, 19326, 19327, 19328, 34352], + "@types/tape", + [0, 2714, 1149, 4747, 28285], + [0, 3421, 4616, 1177, 1596, 28287, 3980, 10614], + [0, 8309, 28289, 28291], + [1, 2343, 19330], + [0, 0, 19331, 19340, 2523], + [0, 2899, 4039, 21228], + [3, 19180, 15], + [2, 19332, 3323], + "__js", + [2, 5601, 19334], + "automd", + "eslint-t", + "ypegen", + [2, 19337, 19338], + [0, 200, 1585], + [1, 2343, 19342], + [0, 0, 19343, 19345, 2523], + [0, 4874, 4880, 1009, 1011, 1587, 1177, 1895, 1955, 1959, 1961, 1161, 1894, 4484, 91], + [3, 7844, 24], + [0, 28303, 6085, 89, 1896, 28304, 12780, 190, 5995], + [1, 2343, 19351], + "xoxo", + "hugs", + "kisses", + "happy", + [0, 19352, 19354, 19355, 2537], + [0, 1149, 3188, 4545, 3012, 28310], + "happiness", + [0, 1429, 2899, 4193, 705, 1525, 28312], + [0, 18035, 27814, 21687], + [1, 2343, 19357], + [0, 19358, 19360, 19361, 2523], + [0, 2685, 4113], + "cabin", + [0, 2861, 17910, 2899, 3756, 3760, 4170, 4193, 4734], + [0, 27, 2671, 2869, 705, 5576, 15237, 9229, 2658, 25386, 17481, 8426, 8431, 977, 7436], + [1, 2343, 19363], + [0, 19364, 0, 19365, 2523], + [0, 28324, 28325, 1525, 1595, 2720], + [0, 200, 12659, 13527, 1523, 6876, 678, 4636], + "boolean", + [1, 2343, 19368], + [0, 19369, 19370, 19371, 4139], + [ + 0, 28331, 1149, 28333, 13223, 1483, 1512, 1525, 1645, 2098, 28335, 1209, 3188, 28340, 28342, 28344, 28346, 3718, + 4135, 28348, 4717, 4736 + ], + [ + 0, 28353, 1429, 1705, 28356, 18420, 1177, 1942, 13231, 1951, 1966, 2822, 2899, 3297, 3421, 28358, 3938, 4153, + 4167, 4193, 4734 + ], + [0, 3283, 28360, 5592, 5472, 15656, 28362, 4030], + [1, 2343, 19373], + [0, 19374, 19375, 19376, 2537], + [ + 0, 30869, 28367, 28371, 28372, 13471, 13474, 13476, 30243, 13495, 13497, 13500, 13502, 28373, 1537, 2674, 28375, + 27967, 2854, 28379, 3923, 28380, 4135, 4715 + ], + [ + 0, 7709, 28384, 36559, 28387, 28390, 28394, 692, 28395, 28396, 28399, 1091, 1149, 1168, 28400, 1414, 13838, + 1525, 1570, 28401, 13848, 1177, 1942, 28406, 2070, 2212, 2675, 1776, 2990, 3019, 3297, 3747, 3752, 4039, 28408, + 4193, 4339 + ], + [0, 13539, 6681, 27838, 14029, 28411, 28413], + [2, 5223, 594], + [2, 1876, 19377], + [1, 2343, 19381], + "is-bun-module", + [0, 19382, 19383, 19384, 2523], + [0, 97, 28418, 977, 12105, 3424, 28420, 3698, 28423, 3348], + [ + 0, 5154, 48, 53, 14167, 83, 87, 90, 92, 28436, 842, 16145, 966, 968, 972, 20562, 974, 5087, 4874, 28426, 28425, + 4880, 4883, 1165, 28435, 28433, 1540, 1637, 1192, 2780, 2802, 3244, 3286, 3561, 3566, 3640, 89, 3824, 4705 + ], + [0, 89, 6710, 3424, 2038, 28438, 5165, 3287, 16944, 5168, 28439], + "@types/is-", + [2, 19385, 2070], + [1, 2343, 19388], + [0, 0, 0, 19389, 2523], + [0, 3286, 1149, 28445, 28446], + "node-lib", + [1, 2343, 19392], + [0, 0, 0, 19393, 2399], + [ + 0, 1098, 1973, 5472, 3212, 8788, 4627, 12442, 7170, 9962, 11100, 28453, 28454, 4967, 6400, 1192, 2765, 1843, + 13106, 7190 + ], + [1, 2343, 19395], + [0, 19396, 0, 19397, 2537], + [0, 13, 28459, 8597, 1668, 4484], + [0, 5127, 4964, 1098, 181, 5130, 4967], + [1, 2343, 19406], + [3, 16405, 17], + "defaults", + [2, 19399, 19400], + "-azure-pipelines-cli", + [2, 1529, 19402], + "riendly-formatter", + [2, 19244, 19404], + [0, 19407, 19408, 19409, 2537], + [0, 2212, 3348, 4745, 16509, 2057, 3028], + [0, 1429, 1437, 2899, 4193, 4874], + [0, 3290, 28467, 28468, 3014, 28469], + [1, 2343, 19416], + "enhance", + "-visitors", + [2, 19411, 19412], + [2, 1876, 594], + "espurify", + [0, 0, 19417, 2514, 2399], + [0, 1429, 1544, 2899, 3754, 4151, 4333], + "-spelling-correcter", + [2, 3166, 19418], + [1, 2343, 19423], + "ava-rule-tester", + [2, 1876, 19421], + [0, 19424, 19425, 19426, 2487], + [0, 1676, 28480, 19400, 1804, 28483, 28484, 2835, 28485, 3188, 16112, 3441, 4039, 28486, 4238], + [0, 1149, 1304, 27731, 1362, 1429, 1431, 1177, 1895, 1955, 2026, 2675, 2899, 28488, 3246, 3549, 1894, 4151, 4237], + [0, 3292, 1804], + [1, 2343, 19428], + [0, 19429, 19430, 19431, 2487], + [ + 0, 28494, 28498, 28500, 4856, 28502, 14552, 11869, 15374, 1371, 28503, 1437, 1458, 1483, 28504, 28505, 1759, + 1797, 1842, 2070, 2832, 1209, 3181, 3183, 2899, 28510, 3445, 3467, 20460, 4130, 4135, 28512, 4294, 4558, 3348 + ], + [ + 0, 221, 842, 4874, 1009, 1011, 1587, 1610, 1177, 2675, 2742, 2822, 2990, 3200, 4925, 28514, 28517, 3215, 3297, + 3421, 89, 3824, 4039, 4146, 4474, 4481, 28519 + ], + [ + 0, 3294, 28521, 28522, 5472, 11132, 14336, 11861, 28525, 11862, 4627, 11857, 1973, 1388, 5131, 8791, 13426, + 1649, 2899, 13428 + ], + [1, 2343, 19433], + [0, 19437, 19447, 19450, 4139], + "ast-m", + "etadata-inferer", + [2, 19434, 19435], + [0, 11124, 826, 28535, 18248, 3509], + [2, 19192, 13172], + [3, 5536, 14], + "16", + [2, 19439, 19440], + "aniuse-lite", + [2, 4857, 19442], + [3, 6309, 16], + "moize", + [2, 19444, 19445], + [0, 11134, 28537, 1389, 2675, 2832, 8821, 2990, 2899, 28539, 3421, 1894, 3752, 28542, 28543], + "config-erb", + [2, 15086, 19448], + [0, 1973, 5472, 21147, 3212, 4731, 36], + "kangax", + [1, 2343, 19453], + [0, 19454, 19455, 2514, 2537], + [0, 28550, 617, 2854], + [ + 0, 2212, 3421, 1429, 1192, 2899, 4193, 1177, 4039, 1894, 2139, 1719, 3752, 4196, 91, 3400, 15342, 4131, 1954, + 1951, 826, 1938, 1958, 1895, 1903, 7935 + ], + [1, 2343, 19457], + [0, 0, 19458, 19459, 2443], + [0, 1317, 1326, 28556, 1177, 2151, 29197, 3697, 4135], + [0, 28558, 28559, 11154, 970, 1326, 3122, 14655, 3263, 3299], + [1, 2343, 19461], + [0, 19465, 19470, 19471, 2537], + "/plugin-pwa", + [2, 4613, 19462], + [2, 10982, 19463], + [0, 1496], + "eslint4b", + [3, 4630, 11], + [2, 19467, 6038], + "vuepress", + [0, 3421, 2228, 2899, 4170, 1596, 2240, 18463, 91, 4874, 18555, 1506, 28565, 22081, 2247, 2283, 28567, 28570], + [0, 2325, 20164, 2703, 6884, 3250, 3151, 6943, 202, 3143, 3048], + "exported", + "eslint-env", + "eslint-en", + [2, 19474, 4000], + "eslint-d", + "isable", + [2, 19476, 19477], + [2, 19478, 10240], + [3, 19479, 15], + "next-line", + [2, 19480, 19481], + [1, 2343, 19484], + [0, 0, 19485, 19486, 2537], + [0, 4874, 28577, 2151, 2675, 2899, 3421, 4039, 91, 28580], + [0, 202, 3111, 13017, 6956, 28582, 6899, 6726, 2382, 13626, 28583, 1745], + [1, 2343, 19495], + [3, 8097, 32], + [3, 1879, 9], + "mments", + [2, 19489, 19490], + [2, 19488, 19491], + "ot-an-aardvark", + [2, 16819, 19493], + [0, 19496, 19497, 19498, 2487], + [0, 1672, 28589, 28590, 2179, 3183, 3330, 814, 4135], + [0, 4874, 1177, 1938, 2675, 2990, 1894, 4384, 28593, 4453, 4474, 91], + [0, 22687, 2999, 4345, 3233, 2282], + "@foxt/js-srp", + [2, 4284, 12118], + [1, 2343, 19506], + [3, 15471, 15], + "anonical", + [2, 19502, 19503], + "gitdown", + [0, 13856, 11488, 19507, 2443], + [0, 3308, 7204, 4014, 28599, 2090, 14629, 17721, 2150], + [1, 2343, 19509], + [0, 19510, 19511, 19517, 2537], + [0, 21642, 28604, 28605, 28608], + [ + 0, 10614, 842, 5601, 1009, 1011, 7677, 17298, 1622, 1177, 17300, 1930, 1942, 1945, 1948, 1953, 17303, 17306, + 1964, 1985, 17308, 2675, 17310, 2931, 2990, 3124, 3125, 3390, 17312, 1894, 17314, 3708, 3980, 28611, 17318, + 4493, 91, 1984, 17319 + ], + "@html-eslint/eslint-plugin", + [3, 19512, 13], + [2, 19513, 57], + "link-check", + [2, 3115, 19515], + [0, 3113, 2869, 26800, 26799, 28613, 28614, 28615, 28617, 28618, 28619], + [1, 2343, 19519], + [0, 19520, 19521, 19529, 2537], + [0, 16566, 28624, 21163], + [0, 1079, 13867, 1410, 1414, 1429, 1431, 28626, 21480, 1596, 2139, 13870, 2899, 3480, 28628, 4481, 1906], + [2, 13039, 7015], + [3, 1143, 17], + "indlastindex", + [2, 19523, 19524], + "doctrine", + [2, 17612, 202], + "object.g", + [0, 1612, 27, 1862, 705, 7085, 7289, 4731, 7102], + "roupby", + [2, 19528, 19530], + [1, 2343, 19536], + "/template-parser", + [2, 1177, 19533], + [2, 12908, 19534], + [0, 0, 19537, 19542, 2487], + [ + 0, 1389, 1525, 1610, 1177, 28635, 2026, 2297, 2871, 2881, 2891, 2895, 2897, 2900, 2904, 2912, 2915, 2921, 28636, + 2925, 2899, 3202, 28638, 3421, 15767, 2924, 4677, 28639 + ], + "escope", + "fs-copy-file-sync", + "linklocal", + [2, 3045, 4552], + [ + 0, 28641, 28642, 28643, 28644, 1616, 12588, 28645, 28646, 28647, 28648, 27, 2671, 3135, 11996, 28649, 28650, + 28651, 28652, 28653, 4160, 28654, 28655, 28656, 21000, 28657, 28658, 28659 + ], + [1, 2343, 19546], + "npm-which", + [2, 4523, 1574], + [0, 19547, 19548, 19549, 34352], + [0, 1170, 1676, 1209], + [0, 1429, 2899, 3752, 4193], + [0, 1885, 6599, 6645, 586, 12296, 28666, 28647, 28667, 2109, 12295, 1121, 8899], + [1, 2343, 19551], + [0, 19556, 19557, 19558, 34352], + "@schemastore/package", + "ts-export-assignment", + [2, 13996, 19553], + [2, 13970, 19554], + [0, 1362, 3310], + [0, 1429, 1177, 1192, 4193], + [0, 28674, 28676, 28677, 1885, 14554, 28678, 28679, 28680, 28681], + "-repositories", + [2, 1992, 19559], + [1, 2343, 19562], + [0, 19563, 19564, 19572, 2537], + [0, 16473, 28688, 2215, 26567, 3368, 3727, 4135, 4390, 27921, 4707], + [0, 1326, 1610, 1177, 2899, 3263, 29197, 28691], + "@es-", + "joy/jsdoccomment", + [2, 19565, 19566], + "are-docs-informative", + [2, 13721, 5651], + "spdx-expression-parse", + "synckit", + [0, 970, 11154, 1237, 3122, 14655, 1326, 14654], + "@es-joy/", + [2, 19573, 1875], + [3, 19567, 13], + [2, 4522, 1574], + [2, 19575, 19576], + "@hkdobrev/run-if-changed", + "pree", + [2, 5600, 19579], + [2, 5600, 3766], + "defaultsdeep", + [2, 6308, 19582], + "@types/sp", + "dx-expression-parse", + [2, 19584, 19585], + [3, 5210, 11], + [2, 1226, 19587], + "ype-", + "pratt-parser", + [2, 19589, 19590], + [2, 13587, 19591], + [2, 3032, 1697], + [1, 2343, 19596], + "open-editor", + [0, 19597, 19598, 19599, 2523], + [0, 1632, 2591], + [ + 0, 16868, 1448, 1610, 1177, 28698, 2616, 3321, 28699, 28702, 15512, 28704, 2654, 28706, 28707, 3493, 4039, + 25213, 4257, 4474, 4749 + ], + [0, 1936, 57, 6710, 91], + [1, 2343, 19604], + [ + 0, 68, 5522, 107, 19492, 19194, 19605, 19609, 19344, 23339, 6503, 19616, 4874, 5254, 1009, 1011, 1414, 19619, + 668, 1177, 1895, 1933, 19620, 1942, 19622, 1945, 1948, 1953, 19623, 1955, 1964, 1988, 17308, 1994, 2018, 2203, + 2899, 3486, 1894, 4135, 4320, 19624, 4323, 19626, 19629, 1531, 4494, 91, 4523, 19630, 4614, 4630 + ], + [0, 13678, 13679, 13681, 34352], + [1, 2343, 34428], + [0, 19613, 19618, 19631, 2523], + "@ota-meshi/eslint-plugin", + [3, 19605, 11], + "-kit-eslint-editor-vue", + [2, 13755, 19607], + [2, 19606, 19608], + "-scope", + [2, 5601, 19610], + [3, 19611, 14], + [0, 1149, 28713, 1676, 2026, 2070, 3507, 1997, 4135, 4148, 28715, 28716, 28717, 4707, 4729, 4747], + "@types/na", + "tural-compare", + [2, 19614, 19615], + "xbytes", + [0, 1429, 2151, 1161, 2272, 2899, 3378, 1862, 4039], + "env-cmd", + [2, 1931, 5550], + [2, 18008, 8546], + [2, 17585, 19621], + [2, 1954, 8770], + [2, 4946, 12054], + [3, 5978, 26], + [2, 19625, 188], + [3, 4330, 11], + "tylus", + [2, 19627, 19628], + [2, 4609, 19466], + [0, 1676, 6782, 3323, 15267], + "jsonc", + [1, 2343, 19634], + [0, 19635, 19636, 19642, 2443], + [0, 1080, 1560, 1704, 2145, 20103, 3164, 3171, 3494, 3781, 1000], + [0, 4856, 6503, 1009, 1011, 1429, 1177, 1881, 1895, 1938, 2675, 2899, 3421, 1894, 4193, 4196, 4474, 4481, 91], + "-flow", + [2, 12184, 19637], + "axobject-query", + "damerau-levenshtein", + "es-iterator-helpers", + [0, 3212, 13106, 28726, 6710, 676, 5472, 1973, 27, 28728], + [1, 2343, 19649], + "jsx-ast-utils", + [2, 9551, 2640], + "regex-test", + [2, 4099, 19646], + [2, 18996, 7015], + [0, 19651, 19652, 19653, 2399], + "to-ast", + [0, 28733, 2755, 4135, 28735, 3348, 4707], + [0, 1587, 1610, 1177, 1900, 1903, 1938, 1954, 1958, 2675, 1192, 2990, 28737, 1894, 4039], + [0, 28740, 28743, 22005, 28744, 22011, 15844, 28747, 28748, 9044], + [1, 2343, 19655], + [0, 19656, 19658, 19659, 2523], + [0, 1304], + [2, 18576, 13064], + [0, 1364, 2026, 2899, 4170, 4342], + [0, 3424, 28438], + [1, 2343, 19661], + [0, 16583, 11580, 11581, 4139], + [1, 2343, 19663], + [0, 19664, 19665, 19666, 4139], + [0, 20584, 3188, 3278, 3368, 3393, 3411, 1997, 4039, 4135, 4390], + [0, 1168, 2272, 3297, 4389], + [0, 970, 11154, 1237, 3122, 14655, 1326, 17180], + [1, 2343, 19668], + [0, 19669, 19670, 19672, 2537], + [0, 3299], + [0, 2899, 1177, 28768, 640, 1610, 91, 4874, 6503, 1011, 1009], + [2, 1927, 8982], + [0, 28770, 6621, 7009, 28771, 28772, 28773], + "ts-i", + [1, 2343, 19677], + "gnore-import", + [2, 19673, 19675], + [0, 19678, 0, 19679, 4139], + [0, 28792, 28790, 28782, 28786, 1304, 1309, 1594, 2026, 2151, 28783, 3368, 4135], + [0, 6038, 8899, 28794, 2124], + [1, 2343, 19681], + [0, 19682, 19683, 19684, 2399], + [0, 3263, 2164, 2070, 3157, 1437, 1209, 640, 2185, 28799, 1615, 28800, 28802, 28804, 26567], + [0, 3421, 2899, 1177, 4039, 2151, 28806], + [0, 1623, 22022, 7121, 2278, 4329, 590], + [1, 2343, 19686], + [0, 19690, 19691, 19693, 2537], + "-helpers", + [2, 9654, 19687], + [2, 7627, 19688], + [0, 12680, 28813, 28816], + [0, 3421, 4389, 4193, 1090, 1177], + [3, 3995, 13], + [0, 16618, 5957, 12692, 1605, 28821, 27105], + [1, 2343, 19695], + [0, 19697, 0, 19698, 2537], + "@chromatic-com/storybook", + [0, 3460, 1512, 3171], + [0, 27, 2947, 2090, 36], + [1, 2343, 19700], + [0, 0, 19701, 19702, 2523], + [0, 3421], + [0, 6926, 6668, 3348], + [1, 2343, 19704], + [0, 0, 19705, 19710, 2399], + [0, 2151, 2899], + [2, 19707, 103], + [3, 35573, 13], + "ug", + [2, 17304, 19708], + [0, 28837, 2282, 28838], + [3, 3708, 17], + "kg", + [2, 19711, 19712], + [1, 2343, 19715], + [0, 19716, 0, 19717, 4139], + [0, 6523, 4747], + [0, 28844, 6574, 11100, 28845, 6807, 2013, 28847, 28849, 28850, 5957], + [1, 2343, 19719], + [0, 19720, 19721, 19722, 2537], + [0, 3354], + [0, 28856, 28858, 4874, 1177, 1894, 3706, 4493, 91, 8552, 1984], + [0, 28860, 57, 9381, 3354, 28861], + [1, 2343, 19727], + [3, 19525, 24], + "tosorted", + [2, 5613, 19725], + [0, 19730, 19733, 19737, 2443], + "repeat", + [2, 18996, 19728], + [0, 2571, 2741], + [2, 5609, 14255], + [3, 5235, 22], + [0, 13614, 1158, 1177, 2708, 17400, 3410, 3421, 3435, 4103, 4389], + "unction-bind", + [2, 19732, 19734], + "ls-engines", + [0, 2051, 6970, 28869, 1496, 1585, 24135], + [1, 2343, 19739], + [0, 19740, 19741, 19742, 2523], + [0, 2212, 3263, 2856, 3776, 1209, 4391, 2151, 640, 3337], + [0, 4647, 2899, 2272, 1168, 1448, 28877, 2759, 1173, 1596, 2820, 28879, 17370, 1267], + [0, 28881, 28882, 3358, 970], + [1, 2343, 19744], + [0, 0, 19746, 19747, 2487], + "refa", + [0, 28043, 1409, 1414, 1177, 1895, 2203, 28890, 28891, 28892, 28894, 1894, 2658, 28895, 18661], + [0, 28897], + "analysis", + "-ast-analysis", + [2, 6961, 19749], + "scslre", + [1, 2343, 19760], + "eslint-s", + "-rule-tester", + [2, 11298, 19754], + [2, 19753, 19755], + [2, 19758, 29135], + [3, 17306, 17], + "@types/pako", + [0, 19762, 19763, 19764, 2523], + [2, 3192, 15264], + [0, 1457, 1676, 13775, 3181, 28904, 4135, 18174, 4351, 4453, 28903], + [0, 192, 5467, 1149, 1506, 1177, 2675, 2899, 3421, 3752, 4131, 4170], + [0, 200, 3233, 3233, 5001, 22687, 28908, 2999, 7009], + [1, 2343, 19766], + [0, 19768, 0, 2514, 2523], + "safe-regex", + [0, 1797, 4384], + [3, 19494, 16], + "desecurity", + [2, 19769, 19770], + [1, 2343, 19774], + [2, 202, 1965], + [0, 19775, 19776, 19777, 2537], + [0, 4039, 1764, 28917, 4747, 4135], + [0, 705, 4389], + [0, 28921, 3364, 7242, 28125, 13527], + [3, 3568, 11], + "red-black-tree", + [2, 19778, 19779], + [1, 2343, 19785], + "al-red-black-tree", + [2, 19076, 19782], + [2, 5537, 19783], + [0, 19787, 0, 19788, 2523], + "sonarjs", + [ + 0, 28367, 1091, 1092, 20437, 12384, 1096, 28927, 1170, 1364, 1457, 1575, 1594, 1648, 2026, 9243, 28929, 28930, + 2070, 2593, 28933, 28934, 2856, 28935, 2863, 28936, 3083, 12792, 28940, 3230, 3241, 3277, 16617, 28859, 3361, + 3445, 3519, 28944, 1552, 2999, 4010, 28945, 28948, 4709, 7801, 4745, 4747 + ], + [ + 0, 28950, 3366, 5284, 6710, 5130, 5995, 4967, 12660, 28951, 28954, 28956, 28957, 1781, 28959, 2844, 2856, 4745, + 1896, 28960 + ], + [1, 2343, 19790], + [0, 19791, 9888, 19792, 2537], + [0, 4545, 1437], + [0, 10446, 28967, 9753, 14690, 57], + [1, 2343, 19794], + [0, 19796, 6538, 2514, 2523], + [2, 4353, 67], + [0, 23432], + [2, 19612, 594], + [2, 5600, 594], + "@types/less", + [2, 13058, 3675], + [3, 4890, 11], + [2, 19801, 4332], + "svelte-i18n", + [1, 2343, 19806], + "sveltejs", + [0, 0, 19807, 19808, 4139], + [0, 2398, 3183, 2899], + [ + 0, 28977, 28978, 28979, 2090, 28980, 17996, 18442, 28981, 7517, 2150, 3374, 3403, 10903, 15323, 4207, 28982, + 28983, 28984, 28985 + ], + [1, 2343, 19810], + [0, 0, 8134, 19813, 2537], + "-formatting", + [2, 1939, 19811], + [0, 3374, 1002, 12831, 15427, 1871, 28992, 28994, 3766, 3767, 28996, 4301, 6678, 28997], + [1, 2343, 19815], + [0, 0, 0, 19816, 2523], + [0, 29004, 28992, 1388], + [1, 2343, 19818], + [0, 19819, 19820, 19821, 2537], + [ + 0, 1437, 16064, 1494, 1595, 1700, 29013, 1874, 2020, 5989, 29016, 2613, 15980, 2704, 2720, 2744, 29018, 29020, + 29022, 2991, 29023, 3074, 3157, 29024, 29025, 21420, 3445, 29026, 27534, 3505, 27168, 3919, 4094, 4135, 5513, + 26573, 4562 + ], + [0, 21642, 5254, 1166, 1532, 24491, 2151, 29028, 4193, 4294, 4400, 29030, 1906], + [0, 13326, 200, 3378, 20001, 3358, 6645, 15525, 15208, 1528], + [1, 2343, 19823], + [0, 19828, 19830, 19831, 2537], + [2, 1463, 6961], + "regexp-", + "regexp-tree", + "regjsparser", + [ + 0, 3242, 2714, 4390, 2070, 3368, 3917, 4248, 23433, 1437, 3478, 4707, 23432, 3483, 4135, 9448, 1458, 29037, + 21505, 640, 3727, 29039, 3181, 9451, 9452, 2976, 2979, 2981, 29042, 29044, 4425, 29051, 2215, 29053, 25881, + 29054, 29055, 25888, 29056, 29057, 9459, 4351, 2613, 3386, 3762, 635, 29059, 25893, 26567, 29061, 9462, 29063, + 643, 9465, 3397, 29066, 29067, 9476, 9479, 9539, 19570, 638, 4588, 9496, 9501, 9506 + ], + "@lubien/fixture-beta-package", + [ + 0, 1091, 4384, 1687, 3297, 9542, 3984, 4039, 1483, 3988, 29069, 1092, 29070, 3393, 10630, 29071, 29073, 9515, + 9516, 26037, 29077 + ], + [0, 1161, 5260, 6878, 6661], + [1, 2343, 19833], + [0, 19834, 19840, 19845, 2537], + [ + 0, 1499, 3467, 3157, 1437, 2020, 2742, 1695, 29085, 2205, 1209, 4135, 7094, 3537, 1703, 2720, 3181, 3309, 4294, + 4425, 3505, 29088, 9478, 6045, 14564, 29084, 4562, 29087 + ], + "@ver", + "/eslint-config", + [2, 5401, 19836], + [2, 19835, 19837], + "bumpp", + [0, 1906, 1173, 1282, 1267, 1255, 1245], + " eslint plugin", + [2, 1984, 19841], + "eslint ", + [2, 19843, 1932], + [0, 3378, 29093, 4796, 17507, 13729, 4354, 24313, 5592, 24095, 200, 6953, 29095, 29096, 7242, 4797], + [1, 2343, 19847], + [0, 0, 19848, 19852, 2537], + [ + 0, 29101, 17212, 4856, 9417, 29103, 29104, 12458, 29105, 7637, 29111, 4870, 6503, 4874, 29115, 29117, 20374, + 6510, 7812, 5254, 29122, 6513, 29125, 1009, 1011, 1420, 1429, 1431, 21480, 1437, 1483, 1525, 1610, 20573, 1177, + 1895, 29128, 1903, 1938, 1942, 1953, 1958, 2071, 27125, 2105, 29129, 2613, 2714, 2822, 2858, 29133, 3019, 1209, + 3125, 2899, 3397, 3400, 3478, 13723, 3530, 1894, 3730, 29136, 29087, 4038, 4039, 11054, 4135, 29138, 4170, 4193, + 4232, 18201, 4294, 4474, 91, 29139, 4558, 4562, 29140, 1983, 29141, 29142, 26744, 4749 + ], + "name-", + [2, 19849, 1155], + [2, 4732, 19850], + [0, 4796, 3378, 6661, 3076, 29144, 18280], + [2, 4807, 19851], + [1, 2343, 19855], + [0, 19856, 6538, 2514, 2523], + [0, 2613, 3727, 4135, 4588], + [1, 2343, 19858], + [0, 19859, 19865, 19867, 2487], + [0, 1091, 8531, 1437, 1595, 1676, 2205, 2687, 2745, 2858, 3074, 3157, 3545, 4135, 4207, 4300, 4507, 4588], + [3, 10879, 16], + [2, 19860, 13921], + "importx", + "ink-", + [2, 19863, 1975], + [ + 0, 5087, 4874, 1009, 1011, 668, 29154, 1177, 29155, 29158, 1930, 1938, 1939, 1955, 1982, 2089, 1192, 17312, + 29160, 1894, 4468, 91 + ], + "eslint-test", + [0, 671, 9654, 6661, 13716, 29162, 3390], + [1, 2343, 19869], + [0, 19870, 19872, 2514, 4139], + [0, 15980, 3727], + "esrecurse", + [0, 635, 9516, 9515, 29169, 4384], + [1, 2343, 19874], + [0, 19875, 19876, 19879, 2399], + [0, 9459, 25336, 26567, 21505, 29176, 29174, 3386, 3727], + [0, 9516, 9515, 9448, 3297, 28691, 4248, 4384], + [2, 1006, 13060], + "json-diff", + [0, 3378, 29179, 1612], + [1, 2343, 19881], + [0, 19882, 19885, 19886, 2537], + [0, 1437, 26079, 3919, 3181, 1110, 1615, 4165, 3152, 29185], + [3, 8724, 21], + [2, 19883, 676], + [0, 3421, 4749, 2899, 1177, 4039, 1503, 3479, 2151, 4874, 3696, 1280, 29188, 13983, 1225], + [0, 200, 1523, 29190, 4990, 3378, 29191, 18462, 21003, 4144, 12804, 5957], + [1, 2343, 19888], + [0, 19889, 19890, 19886, 2443], + [0, 4707, 26079, 3530, 1110, 1615, 4165, 3152, 9488], + [0, 1414, 2931, 4749, 1776, 2899, 1177, 23909, 29197, 1159, 17529], + [1, 2343, 19892], + [0, 19893, 8134, 19894, 2523], + [0, 16687, 20789], + [0, 3378, 18462, 3403, 3383, 20052, 17180, 20054, 1508, 200, 6876, 16701, 8435], + "-fb", + "esprima-fb", + [1, 2343, 19898], + [0, 0, 19899, 19900, 2523], + [0, 5087, 4874, 1009, 1011, 10817, 1177, 1895, 1192, 2990, 26230, 4039, 4042, 4468, 91], + [0, 29208, 1745, 29210], + [1, 2343, 19902], + [0, 19903, 19904, 19915, 2537], + [0, 1437, 1479, 1525, 1676, 2720, 3741], + [0, 1429, 2899, 3215, 4255], + "escomplex-js", + "thing.js", + [2, 7067, 19906], + [3, 2912, 12], + "techpreview-launcher", + [2, 19908, 19909], + [2, 17485, 18551], + [2, 813, 19911], + "8.0.0", + [2, 5857, 19913], + [0, 18497, 3378, 29218], + [1, 2343, 19917], + [0, 19918, 19919, 19923, 2487], + [0, 2720, 3776], + [0, 1173, 1212, 1245, 29224, 1280, 3400], + "gulp-ta", + "g-version", + [2, 19920, 19921], + [0, 3378, 200, 8429, 1523, 3888, 8791, 24095, 3409, 29227], + [1, 2343, 19925], + [0, 19926, 19927, 19928, 2487], + [0, 2571, 3183], + [0, 13614, 1159, 9254, 1177, 2708, 2807, 3421, 4103, 4389], + [0, 3410, 16774], + [1, 2343, 19930], + [0, 19931, 19932, 2514, 2487], + [0, 9892, 25886, 29239, 10744], + [0, 4384, 9515, 9516], + [1, 2343, 19934], + [0, 0, 19935, 2514, 2537], + [0, 1429, 2814, 2832, 2899, 29246], + [1, 2343, 19938], + [2, 2009, 10896], + [0, 19947, 19949, 19951, 2537], + "@ethereumjs/config-nyc", + [3, 19939, 19], + [2, 19940, 1894], + [2, 19940, 11540], + [3, 19942, 21], + [2, 19943, 671], + [3, 17583, 11], + "karma-tap", + [0, 1437, 1482, 29251, 2674, 2720, 29253, 4135, 8363, 4747], + "typestrict", + [0, 1366, 1501, 19771, 2556, 620, 3203], + "transactions", + [0, 1965, 3413, 19773], + [1, 2343, 19953], + [0, 19954, 19958, 19959, 2523], + [0, 29260], + "-cryptography", + [2, 9439, 19955], + "rlp", + [0, 5087, 4874, 1009, 1011, 1587, 1177, 1895, 1955, 2675, 1192, 1894, 3720, 4039, 4468, 4474, 91], + [0, 3414, 29263, 200, 5122, 8310, 18496, 89, 202, 91, 5284, 2924, 1192, 4967, 5995, 12660], + [1, 2343, 19966], + "@types/assert", + "cp256k1", + [2, 5252, 19962], + "karma-t", + [2, 19964, 2528], + [0, 0, 19967, 19968, 2487], + [0, 1429, 2258, 2277, 2298, 2300, 23167, 2297, 2878, 2881, 2895, 2900, 2904, 2915, 3006, 2899], + [0, 3415, 6988, 1671, 6901, 29269, 29271], + [1, 2343, 19970], + [0, 19973, 19975, 19978, 2523], + "es-lookup-scope", + "os-tmpdir", + [0, 29276, 29277, 1525], + "qs-iconv", + [ + 0, 48, 53, 87, 94, 1195, 1208, 1212, 1544, 1593, 1610, 1177, 1881, 1938, 2026, 2151, 2182, 29280, 29282, 29283, + 29285, 3421, 3524, 4151, 4535, 4537, 2924 + ], + "eval", + "evaulate", + [0, 1283, 17950], + [1, 2343, 19980], + [0, 0, 0, 19981, 2523], + [0, 2703, 202], + "pause-stream", + "combiner", + [2, 4279, 19983], + [1, 2343, 19990], + "asynct", + "it-is", + "stream-spec", + "ubelt", + [0, 0, 19992, 19993, 2399], + "flatmap", + [0, 5517, 13614, 23237, 19325, 1159, 1414, 9254, 1177, 2807, 2708, 3410, 4103, 4389], + [0, 3417, 3418, 2649], + [1, 2343, 19995], + [0, 0, 0, 19996, 2399], + [0, 1623, 12080, 29300, 13777, 3585], + "addEventListener", + "addListener", + "pub/sub", + "emits", + "publish", + [1, 2343, 20004], + "subscribe", + [0, 20005, 0, 20006, 2537], + [ + 0, 1797, 3467, 4449, 2117, 3445, 4745, 1170, 1495, 4484, 4747, 1759, 2687, 4135, 2089, 1836, 2777, 3181, 4459, + 1477, 3527, 4393, 1480, 2149, 2858, 3404, 4290, 4748, 1763, 4480, 29306, 24759, 29308, 29309, 29310, 29313, + 29317 + ], + [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 9627, 9628, 9659, 9648, 9649, 29319], + [1, 2343, 20013], + "-browser", + "-browsers", + [2, 7177, 20009], + "sauce-", + "sauce-test", + [0, 20017, 20020, 20021, 2537], + "EventEmitter", + [2, 20014, 1276], + [2, 20014, 1278], + [ + 0, 14022, 8697, 29324, 1573, 1677, 2102, 2105, 15261, 2179, 2070, 11935, 29325, 14024, 29328, 11938, 11940, + 11943, 3093, 29330, 3478, 29334, 4025, 4039, 4174, 29335, 14025, 4747 + ], + "Events", + "reactor", + [0, 29338, 13103, 4019, 4232, 4255, 4257, 4384, 3348, 4707], + [0, 4504, 16237, 20049, 5472], + [1, 2343, 20023], + [0, 20024, 20025, 20026, 2523], + [0, 29358, 8818, 5941, 28935, 26865, 13824, 12285, 3509, 29349], + [0, 29355, 29359, 29362, 4874, 4493, 91, 1984], + [0, 5592, 2210, 3452, 29365, 29367, 29368, 29369, 29370, 3422, 1118, 27662, 1745], + [1, 2343, 20028], + [0, 20029, 20030, 20031, 2537], + [0, 29358, 29377, 2822, 12285, 8126], + [0, 29355, 7637, 29380, 3297, 4493, 91, 1984], + [0, 5592, 1118, 2210, 1745, 27662, 29370, 3422, 3452, 29369, 29365, 29368, 29367, 28360, 8124], + [2, 3159, 591], + [2, 13788, 20032], + "human-", + [2, 20034, 7073], + [1, 2343, 20037], + [0, 0, 10435, 2514, 4139], + "final-newline", + [2, 4293, 20038], + [3, 4759, 11], + [1, 2343, 20045], + "get-node", + "is-in", + "is-in-ci", + [0, 0, 20046, 20048, 2523], + [0, 1906, 1166, 1209, 3130], + "is-running", + [0, 3048, 3426, 2051, 3583, 6778, 5286, 5258, 6805, 29390, 6422, 1858, 1388], + "subprocess", + "fork", + "execfile", + "bin", + [1, 2343, 20055], + "binaries", + [0, 0, 20056, 20057, 2537], + [0, 1389, 2323, 2346, 27608, 29396, 2436, 2447, 2463, 2494, 2496, 2530, 2272, 2839, 2297, 2881, 2900, 2899], + [0, 3048, 3428, 4160, 3135], + [1, 2343, 20059], + [0, 0, 20060, 20066, 2487], + [ + 0, 13614, 29404, 1159, 1593, 22932, 1855, 1177, 2133, 2159, 2070, 29406, 2569, 29410, 2708, 2762, 19073, 3206, + 3410, 3421, 4103, 23948, 4135, 19729, 4389 + ], + "stdio", + "stderr", + "drain", + "flush", + "3584", + [0, 3430, 7123, 3048, 1646, 3721], + [1, 2343, 20068], + [0, 0, 20069, 20070, 2537], + [0, 13614, 13616, 1177, 14741, 29416, 2741, 4389], + [0, 6801, 3432, 6964, 1858], + [1, 2343, 20073], + "-jsdom-abstract", + [0, 0, 20077, 20078, 4139], + "expect-", + [2, 20074, 594], + [2, 552, 20075], + [0, 3421, 1429, 2899, 1596, 3202, 29424], + [0, 1697, 3403, 7318, 29426, 3038, 3205, 1758, 3743, 3048, 7002, 29428, 29429, 6692, 3639, 6803], + [1, 2343, 20080], + [0, 20081, 20084, 20086, 2487], + [0, 1417, 7272, 13609, 29440, 2569, 3433], + "mkal", + [2, 1949, 20082], + [0, 13613, 13614, 1389, 1177, 2133, 2159, 13619, 2571, 3206, 3410, 3421, 4103, 6810, 4389], + "pkg-pr-new", + [0, 7276, 3426, 6789, 2051, 7107, 6970, 7288, 6849, 6763, 6422, 1858], + [1, 2343, 20089], + "type-check", + [0, 20090, 20091, 20092, 2487], + [0, 1417, 7272, 13609, 29440], + [0, 13613, 13614, 20492, 1159, 9254, 1177, 2159, 13619, 2708, 3410, 3421, 4103, 4389], + [0, 6944, 6694, 6801, 3437, 6693, 7221, 6615, 7194, 1858, 3048, 3432, 6422, 6763], + "orms", + [1, 2343, 34459], + [0, 29450], + "array-f", + [0, 3421, 2899, 1177, 1954, 1938, 1958, 1903, 1948, 1970], + "array-flatten", + "setprototypeof", + "merge-de", + [1, 2343, 20104], + "scriptors", + [2, 20100, 20102], + [0, 20107, 11686, 20108, 2537], + "-password", + [2, 16722, 20105], + [0, 29456], + [0, 3441, 3046, 6985, 16114], + [1, 2343, 20110], + [0, 20111, 20112, 20113, 2537], + [0, 29462, 29464, 1138, 1457, 1615, 2687, 4459], + [0, 21122, 4874, 2675, 2990, 1894, 4039, 91], + [0, 2070, 2282, 1444], + [1, 2343, 20115], + [0, 20116, 20118, 20119, 2523], + [0, 29474, 3029], + [2, 30722, 20731], + [0, 6503, 29476, 1503, 2272, 2899, 3203, 3210, 3421, 4474, 91], + [0, 29478, 28794, 29479, 24996, 29480, 25004, 20181, 29481, 29483, 6667], + "automatically", + [2, 1163, 8623], + [3, 20121, 11], + [2, 20122, 7120], + [2, 20121, 2353], + [1, 2343, 20126], + [0, 20127, 8002, 20128, 2523], + [0, 29488, 29490, 28428, 24488, 28429, 27908], + [ + 0, 1896, 3445, 3456, 8423, 8427, 6587, 8430, 8428, 10441, 8429, 1388, 6038, 8435, 8433, 1002, 10443, 10446, + 7058, 1614, 2978, 1451, 3729, 5351, 2090 + ], + [1, 2343, 20130], + [0, 20131, 20132, 20133, 2523], + [0, 2096, 2185, 3157, 3445, 4400], + [0, 1166, 2020, 1906], + [ + 0, 13326, 200, 1896, 3445, 3456, 8423, 8427, 6587, 8430, 8428, 10441, 8429, 1388, 6038, 8435, 8433, 1002, 10443, + 10446, 1614, 2978, 1451, 3729, 5351, 2090 + ], + [1, 2343, 20135], + [0, 20136, 20138, 20139, 2487], + [0, 29501, 29505, 12285], + "express3", + [0, 5087, 7637, 8818, 1170, 29509, 1192, 2845, 29512, 3244, 1894, 4232, 4468, 4474, 91], + [0, 3452, 8124, 5576, 1170, 4967, 1388, 3212, 91], + "partials", + [1, 2343, 20142], + [0, 20143, 20144, 20145, 2523], + [0, 1677, 2639, 2854, 3105, 3744, 89, 3824, 1155], + [ + 0, 68, 470, 1173, 1248, 15643, 1596, 1177, 1879, 1881, 1938, 1947, 1958, 1959, 2200, 2626, 1192, 3363, 3400, + 705, 4008, 7707 + ], + [0, 8124, 3452, 29521, 1936, 1745, 1179], + "unless", + [2, 2032, 20146], + [1, 2343, 20149], + [0, 20152, 20153, 20154, 2443], + "authn", + "authz", + [0, 6825, 3263], + [0, 2070, 705, 4389], + [0, 3455, 29528, 23196, 29531], + [1, 2343, 20156], + [0, 0, 5795, 2514, 2487], + [1, 2343, 20158], + [0, 20159, 20160, 2514, 4139], + [0, 29539, 705], + [0, 1173, 1267, 1177, 1879, 1938, 1947, 1959], + [1, 2343, 20162], + [0, 20163, 9839, 20128, 34352], + [0, 2755], + "caching", + "expressjs", + [1, 2343, 20167], + [0, 20168, 20169, 20172, 2537], + [0, 4720, 3183], + [0, 29551, 4384], + "cjs-mock", + "hoare", + [0, 7233, 7058, 5675, 57, 7119, 200, 1523], + "tRPC", + "RPC", + "express.js", + [2, 10988, 16957], + [1, 2343, 20180], + "fully-typed", + "type-safe", + [0, 20187, 20191, 20192, 4139], + "pi", + "typed-api", + "express-api", + "http-api", + "client-s", + [2, 20185, 2847], + [0, 1637, 29559, 3561], + "unit-testing", + [2, 13843, 5576], + "web-de", + [0, 1175, 1193, 1245, 1257, 1264, 1628, 1192, 4307, 2924], + [0, 6829, 11337, 2054, 16862, 6707, 7293, 2924], + "velopment", + [2, 20190, 20193], + "web-api", + [1, 2343, 20197], + [0, 20198, 20199, 20200, 2443], + [0, 29566, 29567, 4717, 20088, 19190, 26007], + [0, 29569, 2899], + [0, 14690, 6802, 29572, 200], + [3, 8286, 12], + [2, 20201, 364], + "lient-", + "redirects", + [2, 20203, 20204], + [2, 13224, 20205], + [2, 20201, 20206], + [3, 20207, 13], + [1, 2343, 20210], + [0, 20213, 20214, 20216, 4139], + "reset-classic", + [2, 20208, 20211], + [0, 1437, 1477, 1480, 29018, 16232, 3074, 29581, 4290], + [0, 4874, 1166, 2188, 29583, 4481, 1906], + "sanitization", + [0, 200, 1478, 6787, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921], + [1, 2343, 20218], + [0, 20219, 20220, 20222, 2399], + [0, 1834, 29590, 29591], + [0, 2012, 2530, 2272, 3102, 3159, 2899, 3760, 4170, 4600], + "openapi3-ts", + [0, 1149, 5957, 12804, 2940], + [3, 19441, 15], + [2, 20223, 6643], + [1, 2343, 20228], + "wagger-ui-express", + [2, 5051, 20226], + [0, 20229, 20230, 20231, 2443], + [0, 1149, 1362, 18443, 9421, 1209, 3507, 29600, 29601], + [0, 1414, 1437, 2070, 2899, 3230, 3259, 3519, 4135, 4170, 4193, 4246], + [0, 3469, 27812, 18035, 3259, 25638, 29605, 7827, 3230], + "camelize-ts", + [1, 2343, 20234], + [0, 0, 0, 20235, 2537], + [0, 202, 888, 364, 1237], + [1, 2343, 20237], + [0, 20238, 11686, 20239, 2487], + [0, 19972, 25493], + [0, 6639, 6884, 4571, 29615, 3403, 3741, 29616], + [1, 2343, 20241], + [0, 0, 20242, 20244, 2537], + [0, 4856, 4864, 6503, 4874, 4891, 26584, 1429, 2020, 2151, 2899, 3377, 4474, 2924, 4707], + "snakify-ts", + [0, 5194, 6778, 29622, 29624, 18135, 1871, 1283, 8958], + [3, 18009, 14], + [2, 20245, 4990], + [2, 4120, 7020], + [3, 8116, 9], + [1, 2343, 20253], + "pecification", + [2, 20248, 20250], + [2, 4364, 1745], + [0, 0, 0, 20254, 2523], + [0, 3475, 5317, 29632, 29633, 3474, 9006, 4967, 1388], + [1, 2343, 20256], + [0, 20257, 20258, 20259, 2523], + [0, 29638, 1525, 2131, 2742, 2975, 4135, 4449, 36872], + [0, 19181, 442, 19344, 9237, 18491, 4874, 5254, 6520, 36890, 1009, 1011, 1177, 26698, 4039, 91], + [0, 200, 29641, 19101, 20001], + [1, 2343, 20261], + [0, 20264, 20265, 20267, 2523], + "-symbols", + [2, 3426, 20262], + [0, 3480], + [0, 4874, 1166, 1702, 4481, 1906], + "is-extendable", + [ + 0, 1862, 2018, 2013, 13771, 2016, 26349, 6868, 20000, 15535, 19138, 29647, 29648, 6703, 29649, 1803, 1388, 965, + 1149, 7003, 6567, 1362 + ], + "array-slice", + "benchmarked", + [1, 2343, 20271], + [0, 0, 20274, 20276, 2523], + "for-own", + "kind-of", + [0, 1166, 1437, 1702, 17474, 29654, 17477, 4481, 1906], + "props", + [0, 1862, 3053, 29656, 6703, 6910, 21369, 7253, 25824, 29657, 1149, 7003, 6567, 1540, 6994, 12804, 1362], + [1, 2343, 20278], + [0, 20279, 20285, 20286, 2537], + [0, 2017, 3480], + [2, 20284, 29685], + [2, 1884, 2924], + [3, 4679, 10], + [2, 20282, 3031], + "@pa11y/", + [0, 13789, 5366, 4874, 1317, 1701, 1702, 17474, 18669, 29654, 17477, 4481, 4494, 91, 1906], + [ + 0, 1862, 3768, 28483, 7051, 6760, 6994, 6925, 7094, 6882, 6870, 7072, 27334, 27338, 29664, 12692, 5957, 1149, + 7003, 6567, 1362 + ], + [1, 2343, 20288], + [0, 0, 20289, 20291, 2443], + [0, 1166, 1702, 17474, 21638, 4193, 17477, 4481, 1906], + "@types/yauzl", + [0, 1862, 17481, 1851, 29672, 1149, 7003, 6567, 6901, 17480, 12618, 1362], + [1, 2343, 20293], + [0, 20294, 20295, 20296, 2537], + [0, 2070], + [0, 1192, 1894, 10761], + [0, 1745, 3709, 29679, 6774], + [1, 2343, 20298], + [0, 20299, 20300, 20301, 2523], + [0, 20280, 1169, 1324, 1525, 1842, 2929, 3257, 3357, 3758, 4135], + [0, 1414, 1177, 29689, 2899, 29691, 10627, 4193], + [ + 0, 6653, 7320, 19748, 31152, 13716, 13428, 11346, 1169, 16790, 200, 33055, 29727, 34150, 26632, 3482, 3758, + 11937, 34151, 5472, 1155, 34152 + ], + [1, 2343, 20303], + [0, 20307, 20308, 20309, 2537], + "gulp-jsdoc3", + [2, 2462, 6504], + [2, 4598, 353], + [0, 29069, 9510, 9479, 9539, 643, 9448, 29051, 21505, 3386, 3393, 9462, 3397, 3727, 29698, 29697, 4248, 4390], + [0, 635, 9516, 9515, 2613, 29169, 3297, 29701, 4039, 4384], + [0, 6666, 3378, 3358], + [1, 2343, 20311], + [0, 20313, 20315, 20316, 4139], + "color-support", + [0, 22970, 22971, 29707, 1668, 18145, 29708, 1209, 3074, 3093, 3478, 3545, 4507, 29711], + [2, 13721, 15526], + [0, 13789, 11477, 4870, 4874, 29717, 977, 1701, 2096, 2182, 29721, 3505, 29722, 4494, 91, 1906], + [ + 0, 27968, 5351, 13755, 5122, 1002, 23992, 4202, 12197, 29724, 29726, 13008, 8745, 8340, 6398, 17461, 3758, 3195, + 158, 8221, 8924, 1936, 29727, 23691, 20630, 20631, 18048, 20637, 21881 + ], + "console.log", + [1, 2343, 20320], + "timestamp", + [0, 0, 20321, 20322, 2537], + [0, 4874, 7677, 22839, 33261, 35609, 1177, 1938, 1942, 2832, 91, 1983, 1984], + [0, 4967, 5995, 5354, 4963, 181, 6624, 24456, 23362, 27448], + [1, 2343, 20324], + [0, 0, 20326, 20331, 2443], + "pure-rand", + [0, 87, 5583, 811, 816, 1177, 2193, 2899, 3253, 26777, 3421, 4042, 4073, 4167], + [3, 16596, 12], + [2, 20327, 2024], + "poisoning", + [2, 20327, 20329], + [0, 15008, 25386, 25388, 16518], + "based", + "based testing", + [2, 4635, 20333], + [2, 11861, 10428], + "quickcheck", + [1, 2343, 20338], + [0, 20343, 5795, 20344, 2487], + "jscheck", + "jsverify", + "fuzz", + "fuzzer", + [0, 27404, 1437, 12084, 2021, 2088, 2185, 2205, 2654, 2863, 3157, 3173, 3490, 814, 29742, 4562, 4748], + [0, 3487, 5995, 200, 29744, 5592], + [1, 2343, 20346], + [0, 20352, 20356, 20357, 2523], + "@fast-c", + "sv/format", + [2, 20347, 20348], + "@fast-csv/", + [2, 20350, 1644], + [0, 29749, 3084, 4339], + "writer", + "csv writer", + "CSV", + [0, 442, 1759, 1177, 1895, 1938, 1953, 1955, 1958, 2203, 1209, 2899, 1894, 4419, 1531, 91], + [0, 3487, 5576, 10768, 29752, 36, 5995, 5592, 4030, 1781], + [1, 2343, 20359], + [0, 0, 20360, 20361, 2487], + [0, 1362, 1429, 1506, 2899], + [0, 12804, 4166], + "psql", + [1, 2343, 20364], + [0, 20367, 34487, 20379, 34352], + [3, 19185, 12], + [2, 20365, 4262], + [0, 97, 5663, 1620, 29762, 29765, 4729], + "macchiato", + [2, 20365, 20368], + "erge2", + [2, 6502, 20370], + "@types/pi", + "comatch", + [2, 20372, 20373], + "bencho", + "rmlnc", + [2, 16693, 20376], + "fdir", + [0, 6599, 5131, 5592], + "hereby", + [1, 2343, 20383], + "snap-shot-it", + [0, 20386, 0, 20387, 2523], + "imple", + [2, 20384, 1744], + [0, 18089], + [0, 1936, 57, 12075, 29790, 10658, 2062, 29791, 29792, 15512, 3493, 1753, 29793, 29794, 1644, 4141], + [1, 2343, 20389], + [0, 0, 20390, 2514, 2487], + [0, 2899, 1177, 2759, 1317, 29801, 1311, 1954, 1938, 1958, 1903, 1970], + [1, 2343, 20392], + [0, 20393, 20395, 20396, 2399], + [0, 29806, 4578, 1433], + "strnum", + [0, 1429, 2899, 3095, 3752, 1434, 29810], + [0, 2026, 1544, 1303, 20150, 5165], + [1, 2343, 20399], + "js2xml", + [0, 20401, 20402, 20403, 4139], + "json2xml", + [0, 3501], + [0, 3095, 2899, 1429, 1434], + [0, 3495, 3497, 1303, 20150, 5165, 13445], + [1, 2343, 20405], + [0, 20406, 20407, 20408, 2537], + [0, 1433], + [0, 2899, 1429, 1434], + [0, 3495, 2703, 1303, 20150, 5165, 29824, 6875], + "avvio", + "toad-cache", + [1, 2343, 20421], + "find-my-way", + "@fastify/", + [2, 20413, 1851], + "-warning", + [2, 3729, 20415], + "abstract-", + [2, 20417, 6807], + "-my-request", + [2, 13318, 20419], + [0, 20429, 20407, 20430, 4139], + "-json-parse", + [2, 18112, 20422], + [3, 16781, 12], + "ringify", + [2, 20424, 20425], + [2, 8530, 4643], + [2, 20413, 20427], + [0, 29829, 3501], + [0, 3495, 1303, 20150, 5165, 20151, 14374, 3424, 28438], + [1, 2343, 20435], + "-compiler", + [2, 20426, 20432], + [2, 20413, 20433], + [0, 20438, 20439, 20430, 2523], + "h2url", + "ajv-i18n", + [0, 29835, 3424, 1433, 26413, 4578], + [0, 3095, 2899, 1429, 3752, 1434], + [1, 2343, 20448], + "autocannon", + "fast-json-", + "body", + [2, 20442, 20443], + "merge-patch", + [2, 8530, 20445], + "branch-c", + [0, 0, 7878, 20455, 2537], + "omparer", + [2, 20447, 20449], + [2, 3125, 1276], + "fluent-", + [2, 20452, 2845], + [2, 20413, 3697], + [0, 3495, 15393], + [1, 2343, 20457], + [0, 20458, 0, 20459, 2523], + [0, 3729, 614], + [0, 6804, 3403], + "piscina", + "@vercel/n", + [1, 2343, 20483], + "@vercel/ncc", + "loader-", + [2, 20464, 8791], + [3, 12397, 15], + [2, 20466, 2924], + "@umijs/b", + "abel-", + "preset-umi", + [2, 20469, 20470], + [2, 20468, 20471], + [2, 1221, 18104], + [2, 4524, 20473], + [3, 1233, 25], + [2, 20475, 15301], + "tyled-", + [2, 20477, 4963], + [2, 5584, 20478], + "@umijs/c", + "ase-sensitive-paths-webpack-plugin", + [2, 20480, 20481], + [0, 0, 9264, 20486, 4139], + "ader-runner", + [2, 13513, 20484], + [0, 1388, 1389, 3403], + [1, 2343, 20488], + [0, 0, 20489, 20497, 2523], + [0, 1906, 1166, 4481], + [2, 19523, 3036], + [2, 5613, 4565], + [2, 5613, 3053], + [2, 5613, 6645], + [2, 5613, 6913], + [2, 18996, 4237], + [2, 4385, 57], + [0, 3403, 3504, 29854, 2090, 17996, 2150, 17462, 16503, 7318, 4262], + [1, 2343, 20501], + "anything", + "protocol", + [0, 0, 11332, 20502, 2537], + [0, 3403, 18104, 2090, 4014, 28977, 29862, 3506, 15174, 614, 594, 364, 6805, 6422, 1858, 2741, 13735, 4354], + [1, 2343, 20504], + [0, 0, 20505, 20506, 4139], + [0, 29867, 5535, 4874, 5254, 7677, 26881, 4201, 91, 1984], + [0, 2026, 6961, 4082, 7433], + "fbjs-css-vars", + "setimmediate", + [1, 2343, 20510], + [0, 0, 20511, 2514, 2523], + [0, 4874, 7677, 1446, 668, 1177, 1905, 2807, 1894, 91, 4543, 1984, 28862], + [1, 2343, 20513], + [0, 20518, 20530, 11581, 2537], + "@skypack/package-check", + "dead-code-elimination", + [2, 9403, 20515], + [2, 7911, 20516], + [0, 2760, 2856, 18545], + "in web", + "in javascript", + "in react", + "Plug & Play", + [3, 11608, 13], + [2, 7519, 4963], + "ui component", + [2, 16914, 6286], + "advanced ", + [2, 20527, 5983], + "scan", + [0, 2152, 2899, 3699], + "scanner", + [1, 2343, 20534], + "phonebook", + [0, 20535, 20552, 20554, 2537], + [0, 29882, 29884, 3486, 3923, 23952, 3348], + "autofillotp", + "share", + [2, 7426, 17357], + [2, 2998, 20538], + "mylocation", + [2, 13735, 20540], + "colorpicker", + "wakelock", + "WhatsappShare", + "NetworkConnection", + "TextToSpeech", + "VoiceRecognition", + "SnapScanner", + "Network", + "Monitor", + [2, 20549, 20550], + [0, 4874, 1398, 2018, 1894, 4389, 91], + "View360", + [0, 2636, 1179], + [1, 2343, 20556], + [0, 20557, 20558, 20559, 2399], + [0, 1620, 10752, 29893, 29894, 29895], + [ + 0, 53, 8229, 87, 442, 5583, 1193, 29897, 27401, 1377, 1389, 1424, 1505, 1177, 2193, 2203, 1192, 2780, 11348, + 1783, 29899, 1894, 3754, 4042, 8849 + ], + [0, 2636, 29901, 29903, 11812, 1746, 13814], + [1, 2343, 20563], + [3, 5085, 23], + [2, 20561, 582], + [0, 0, 20564, 2514, 2537], + [0, 1362, 29908, 1429, 29913, 1506, 2899, 3697], + " program", + [2, 6564, 20565], + "data ", + [2, 20567, 6355], + [1, 2343, 20570], + [0, 20571, 20572, 20578, 2537], + [0, 25624, 29919, 29923, 29920, 29918, 29928], + [0, 28042, 29934, 1149, 1362, 1499, 29933, 91, 1984, 23539], + "dequal", + "glob-", + [2, 20574, 3508], + [3, 16396, 12], + [2, 20576, 3508], + [0, 18035, 29937, 3519, 14871, 25638, 14873, 29938], + [1, 2343, 20580], + [0, 20581, 20582, 20583, 2523], + [0, 3524, 4237, 4709], + [0, 1173, 1175, 1178, 1257, 1264, 1267, 14237, 1177, 1881, 1935, 1938, 2126, 29945, 1192, 2774, 29946, 10622, 4039], + [0, 3520, 3521, 13392], + "detect-libc", + [1, 2343, 20587], + "thread", + [0, 20588, 20589, 20590, 2443], + [0, 2057, 2151, 29952, 22667, 3730, 705, 17047, 4707], + [0, 1177, 2276], + [0, 3521, 29727, 3364], + [1, 2343, 20592], + [0, 20593, 20594, 20590, 2523], + [0, 1863, 2057, 2151, 29952, 22667, 3730, 705, 17047, 4707], + [0, 1177, 2276, 824], + "@pinojs/redact", + [1, 2343, 20599], + "figure", + "fallback", + [0, 20600, 20601, 20602, 2523], + [0, 1137, 1512, 1543, 29964, 1591, 16442, 2765, 3183, 3456, 3459, 6331, 29965, 3547, 3741, 3762, 705, 4167, 4562], + [0, 18007, 1177, 1900, 1903, 1938, 1954, 1958, 1970, 2759], + [0, 200, 1591, 3525, 29969, 29971], + [1, 2343, 20604], + [0, 0, 11488, 2514, 2443], + [1, 2343, 20606], + [0, 0, 0, 20607, 4139], + [0, 7009, 1512, 6983, 200, 7201], + [1, 2343, 20609], + [0, 0, 20610, 20612, 2523], + [0, 1177, 27275, 2398, 2899, 3421], + "filesaver", + [0, 2070, 3529, 3530], + "saveas", + "blob", + [1, 2343, 20616], + [0, 7936, 7938, 7939, 4139], + [1, 2343, 20618], + [0, 0, 20620, 20625, 34352], + "strtok3", + [0, 1166, 29991, 4481, 27659, 1906], + "token-types", + "-extra", + "-extras", + [2, 15149, 20623], + [0, 19138, 7241, 1862, 6567, 29994, 12918, 202, 21244, 28067, 6270, 353, 4719, 21009, 6715, 1149, 7003, 6778, 1362], + "@tokenizer/token", + "commonmark", + "noop-stream", + [1, 2343, 20633], + "pic", + "picture", + "photo", + [0, 20692, 20693, 20765, 2399], + "video", + "exif", + "macho", + "jpg", + "apng", + "gif", + "flif", + "xcf", + "cr2", + "cr3", + "orf", + "arw", + "dng", + "nef", + "rw2", + "tif", + "bmp", + "icns", + "jxr", + "psd", + "indd", + "rar", + "7z", + "mp4", + "mid", + "mkv", + "webm", + "mov", + "avi", + "mpg", + "mp2", + "mp3", + "m4a", + "ogg", + "opus", + "flac", + "wav", + "amr", + "epub", + "mobi", + "rtf", + "woff", + "woff2", + "eot", + "ttf", + "otf", + "ico", + "flv", + "xz", + "xpi", + "cab", + "deb", + "rpm", + "Z", + "lz", + "cfb", + "mxf", + "mts", + [0, 30001, 30004, 30007, 30011, 20416, 30015, 30017, 18730, 20595, 30018, 30019], + [ + 0, 5517, 36559, 30022, 4874, 1090, 30024, 28400, 1409, 1676, 21594, 1177, 1938, 1953, 1954, 1958, 2020, 30025, + 30027, 2702, 1192, 3073, 3079, 30028, 29197, 28941, 3697, 3752, 3756, 4039, 4135, 4238, 30029, 4294, 4389, 4431, + 4474, 4481, 91, 4709 + ], + "webassembly", + "blend", + "bpg", + "docx", + "pptx", + "3gp", + "j2c", + "jp2", + "jpm", + "jpx", + "mj2", + "aif", + "odt", + "ods", + "odp", + "heic", + "pcap", + "dsf", + "lnk", + "voc", + "ac3", + "3g2", + "m4b", + "m4p", + "m4v", + "f4a", + "f4b", + "f4p", + "f4v", + "mie", + "qcp", + "asf", + "ogv", + "ogm", + "oga", + "spx", + "ogx", + "ape", + "wv", + "cur", + "nes", + "crx", + "ktx", + "dcm", + "mpc", + "arrow", + "shp", + "aac", + "mp1", + "s3m", + "xm", + [2, 12207, 35471], + "skp", + "lzh", + "pgp", + "chm", + "3mf", + "zst", + "jxl", + "vcf", + "jls", + "pst", + "dwg", + "parquet", + "arj", + "cpio", + "ace", + "avro", + "icc", + "fbx", + "vsdx", + [0, 2062, 2942, 3101, 1781], + [1, 2343, 20767], + [0, 0, 20768, 20769, 2537], + [0, 1177, 1895, 19286, 1954, 1955, 2675, 1192, 1894, 4400], + [0, 3378, 30036, 30037, 3304, 30038], + [1, 2343, 20771], + [0, 20772, 20773, 20774, 2523], + [0, 3549], + [0, 1177, 25843, 91], + [0, 158, 26020, 1687], + [1, 2343, 20776], + [0, 20777, 20778, 20779, 2487], + [0, 30055], + [0, 1906, 1166, 4481, 4400], + [ + 0, 3383, 1781, 7914, 3378, 13864, 2100, 2104, 2105, 7076, 6614, 6605, 2090, 7193, 3529, 814, 5933, 7029, 6857, + 7204, 4647, 6821, 3403 + ], + [1, 2343, 20781], + [0, 8400, 8134, 20782, 2523], + [ + 0, 4750, 3383, 2090, 2100, 2104, 2105, 7076, 6614, 6605, 7193, 3529, 814, 5933, 7029, 6857, 7204, 4647, 6821, + 3403 + ], + [1, 2343, 20784], + [0, 0, 10435, 20785, 2523], + [0, 18523, 2041, 6661], + "locate-path", + [1, 2343, 20790], + "-magic", + [2, 1981, 20788], + [0, 20791, 0, 2514, 2523], + [0, 30071], + [1, 2343, 20793], + [0, 20794, 20795, 20798, 2443], + [0, 10780, 1301, 4736], + [0, 1389, 2899, 16112, 4770], + "detect-file", + "resolve-dir", + [0, 13336, 1388, 16718, 2072, 57, 6523], + [1, 2343, 20802], + "dir-polyfill", + [2, 4571, 20800], + [0, 20803, 20804, 20805, 2537], + [0, 1104], + [0, 1177, 1889, 1954, 2022, 2899, 3421, 91], + [0, 1851, 1932, 2541], + [1, 2343, 20807], + [0, 20808, 8134, 20809, 4139], + [0, 30088], + [0, 23869, 30090, 3547, 23868, 30091, 4718, 1871, 30092, 30093, 30094], + [1, 2343, 20811], + [0, 0, 20812, 20813, 34352], + [0, 1429, 2759, 2899, 1899], + [0, 23869, 30090, 3547, 23868, 23877, 2712], + [1, 2343, 20815], + [0, 20816, 11488, 20817, 4139], + [ + 0, 30110, 30115, 30106, 30122, 1112, 1149, 29183, 1457, 30117, 1525, 1606, 1673, 1676, 1836, 2015, 30104, 3188, + 3278, 30107, 30108, 30119, 30112, 30120, 8630, 4135, 4232, 4243, 30105, 2822 + ], + [ + 0, 200, 21110, 21111, 2041, 3548, 30124, 3073, 1781, 2026, 2556, 30125, 2999, 30127, 30128, 30130, 30131, 30132, + 30134, 7047, 22850, 30135, 27662, 13325, 5258, 30137, 30139, 30140, 30141, 30142, 20997, 20998, 28845, 4345, + 30143, 3363, 30144, 17979, 30147, 27838, 30140, 30148, 2134, 28413, 30149, 13539, 3111, 21102, 30153, 30155, + 30156, 30158, 24093, 17878, 1605, 20999, 30159 + ], + [1, 2343, 20854], + "@firebase/app", + [3, 20819, 11], + "uth", + [2, 20820, 20821], + "@firebase/", + [2, 20823, 614], + [2, 20823, 13901], + [2, 20823, 18035], + "nalytics", + [2, 20820, 20827], + [2, 20819, 2063], + [3, 20829, 14], + [2, 20830, 553], + "firestore", + [2, 20823, 20832], + [3, 20833, 11], + "unctions", + [2, 20834, 20835], + [2, 20823, 8899], + [3, 20829, 15], + [2, 20838, 14044], + [2, 20822, 4097], + [2, 20823, 6681], + [2, 1161, 10653], + [2, 20823, 20842], + "remote-", + [2, 20844, 1541], + [2, 20823, 20845], + [2, 20825, 4097], + [2, 20826, 4097], + [2, 20828, 4097], + [2, 20829, 4097], + [2, 20833, 4097], + [2, 20836, 4097], + [2, 20837, 4097], + [0, 0, 20855, 20856, 2537], + [0, 1389, 1400, 1544, 1177, 1895, 3421, 1894, 3758, 4151, 30164, 4389], + [0, 30166, 14355, 14356, 30167, 30168, 57, 18048, 29895, 30170, 3549], + [2, 20841, 4097], + [2, 20843, 4097], + [2, 20846, 4097], + [1, 2343, 20861], + [0, 20864, 20865, 20866, 34352], + "Firebase", + "realtime", + [0, 4477], + [0, 1835, 1192, 2784, 2796, 4227], + [0, 2924, 4749, 24753, 24754], + [1, 2343, 20877], + "@fastify/b", + "usboy", + [2, 20868, 20869], + [3, 20848, 19], + [2, 20871, 553], + "farmhash-modern", + "jwks-rsa", + "@google-cloud/firestore", + [3, 20875, 14], + [0, 0, 0, 20878, 2537], + [ + 0, 3552, 28100, 4796, 7191, 7287, 2062, 6824, 1161, 7242, 163, 6698, 5260, 6646, 7117, 3378, 6878, 6661, 6666, + 7037, 7090, 7293, 6950, 7086, 6573, 664 + ], + [3, 20819, 12], + [1, 2343, 20881], + [0, 20896, 20898, 20899, 2523], + "i-documenter", + [2, 20879, 20882], + [3, 20840, 15], + [2, 20884, 553], + [2, 4853, 6641], + "rebase-token-generator", + [2, 16785, 20887], + [2, 16936, 4007], + [3, 2113, 11], + "ken-generator", + [2, 20890, 20891], + "http-me", + "ssage-parser", + [2, 20893, 20894], + [0, 1170], + "admin", + [0, 4072, 4474, 91], + [0, 30190, 30191, 30192, 30193, 30194, 30198, 30200, 30202, 5592, 30203, 30204, 30207, 30208, 5995, 4967, 91], + [1, 2343, 20901], + [0, 6263, 20906, 20907, 2537], + "-sql-connector", + [2, 6599, 20902], + [2, 20876, 20903], + [2, 20876, 11631], + [ + 0, 48, 53, 68, 83, 85, 87, 14128, 5583, 816, 6373, 1178, 1193, 1198, 30214, 1610, 1652, 1745, 1177, 1881, 1938, + 2126, 29945, 2675, 1192, 2990, 29946, 1894, 30216, 3776, 4042, 4071, 4073, 4131, 4172, 30217, 91, 4585 + ], + [0, 4315, 3555, 1832, 30219, 7165, 30220, 89, 2124, 91, 30223, 30225, 30227, 1473, 7208], + "async-lock", + "cjson", + "-in-any-order", + [2, 1693, 20910], + "exegesis", + [2, 20912, 3228], + "gaxios", + [1, 2343, 20919], + "auth-library", + [2, 10692, 20916], + "libsodium-wrappers", + [0, 0, 20920, 20923, 2523], + [0, 30236, 30239, 30240, 30241, 1177, 30242, 91], + "proxy-agent", + "sql-formatter", + [0, 30245, 4627, 5398, 8190, 8191, 8193, 30247], + "stream-chain", + "stream-json", + [1, 2343, 20927], + [0, 20929, 20930, 20932, 2487], + "superstatic", + [0, 1149, 1676], + [0, 1192], + "triple-beam", + [0, 27, 13397, 6731], + "-analytics", + [2, 14566, 20933], + [2, 4562, 8683], + [1, 2343, 20939], + "cdn", + "ssl", + [0, 20941, 0, 20944, 4139], + "hosting", + [0, 3266, 3527, 4228], + "hronization", + [2, 15001, 20942], + [0, 1623, 3561, 22292, 7121, 57, 30258, 353, 24798, 5198], + [1, 2343, 20946], + [0, 20947, 20952, 20953, 4139], + [0, 3681, 3688], + "alce", + [2, 1708, 16580], + "extend-", + [2, 20950, 3048], + [0, 4874, 1177, 1895, 30265, 3561, 1894, 91], + [0, 1623, 3561, 6425, 30268, 3563], + [1, 2343, 20955], + [0, 20956, 20957, 20958, 2537], + [0, 1457, 5314, 2151, 3527, 3616, 30274, 15245, 30275, 4207, 27921, 4747], + [0, 1166, 1414, 1596, 1177, 30279, 2203, 3561, 3613, 1894, 4337, 3348], + [0, 200, 3561, 22147], + "@types/rimraf", + [2, 13777, 12798], + [1, 2343, 20962], + [0, 20963, 0, 20964, 2487], + [0, 30286, 205, 208, 218, 30287], + [0, 1473, 14186, 1623, 4964, 6564, 30289, 30290, 30291, 29428, 3561, 6425, 6616, 30292, 17540, 5341], + [1, 2343, 20967], + "unflatten", + [0, 20968, 20969, 20970, 2487], + [0, 1393, 30298, 30299, 3688], + [0, 30302, 3561], + [0, 1473, 1512, 1536, 1623, 3178, 3561, 6425], + [1, 2343, 20972], + [0, 20973, 20974, 20975, 34352], + [0, 1393, 3688], + [0, 3561], + [0, 1623, 16919, 3561, 6425], + [1, 2343, 20977], + [0, 20984, 20985, 20987, 2523], + "@types/acorn", + [3, 4060, 16], + "vereload", + [2, 20979, 20980], + "erve", + [2, 15476, 20982], + [ + 0, 1165, 30298, 1437, 30314, 30315, 3561, 30317, 30326, 3564, 30327, 30329, 30331, 30334, 30336, 30338, 30341, + 30343, 3579, 3584, 3587, 30346, 30348, 30350, 30353, 30356, 3643, 30358, 30360, 30363, 30365, 30366 + ], + [ + 0, 1173, 1175, 1195, 1264, 1268, 1279, 19243, 1461, 1628, 30368, 30370, 30371, 30372, 30378, 1177, 30380, 1916, + 1959, 2054, 2092, 2600, 30381, 2822, 2843, 3105, 30383, 3160, 30385, 30389, 30390, 30391, 30393, 30395, 30396, + 30397, 30399, 29285, 3376, 30400, 3427, 3459, 30402, 3613, 3618, 30274, 16578, 3744, 89, 3824, 30404, 4039, + 4294, 4307, 4389, 30407, 2924, 4681, 30410 + ], + "lightweight", + [0, 3561, 6425, 1623, 12616, 30413], + [1, 2343, 20989], + [0, 20990, 0, 20993, 2523], + [0, 30424, 205, 208, 213], + "byline", + "util-extend", + [0, 30426, 30427, 1623, 30428, 5317, 6413, 3561, 6425, 30430, 3766, 10658, 12616], + [1, 2343, 20996], + "markdox", + [0, 21001, 0, 21002, 2537], + "deploy", + "deployment", + "devops", + "ssh", + [0, 30424, 205, 208, 30287, 3688], + [0, 1623, 30428, 5317, 6433, 3561, 6425, 3583, 10658, 6436, 6437, 12616], + "sequential", + "remote", + [1, 2343, 21006], + [0, 21007, 0, 21008, 2537], + [0, 30424, 205, 208, 3681], + [0, 30426, 30427, 1623, 30428, 5317, 30442, 19101, 3561, 6425, 5547, 3586, 10658, 12616], + "wrapper", + [1, 2343, 21011], + [0, 21012, 21013, 21017, 2487], + [0, 3681], + [0, 3561, 3678, 26712], + "mini-s", + "vg-data-uri", + [2, 21014, 21015], + [0, 1623, 4298, 3561, 6425], + [1, 2343, 21021], + "-datepicker", + [2, 2128, 21019], + [0, 0, 20974, 21025, 34352], + "ailwindcss", + [2, 1977, 21022], + [2, 3704, 4383], + [0, 1623, 1681, 16918, 3561, 6425], + "windicss", + [1, 2343, 21051], + [2, 20525, 591], + [2, 4380, 6911], + "tailwind c", + [2, 21030, 544], + "tailwind ", + [2, 21032, 11513], + [2, 21032, 6082], + "sections", + [2, 21032, 21035], + "tailwind ui", + [2, 21032, 89], + [2, 21032, 188], + [2, 21032, 1098], + "tailwind s", + [2, 21041, 1971], + "django", + [2, 21032, 21043], + "tailwind r", + "uby on rails", + [2, 21045, 21046], + "tailwind l", + "aravel", + [2, 21048, 21049], + [0, 0, 20974, 21058, 2537], + "tailwind nuxt", + "tailwind n", + [2, 21053, 2680], + "tailwind a", + "stro", + [2, 21055, 21056], + [0, 15215, 1623, 3599, 3178, 16919, 3561, 6425], + "flask", + [2, 21032, 21059], + [1, 2343, 21062], + [0, 0, 21063, 21064, 2487], + [0, 1687, 3527, 3561], + [0, 3561, 1623, 6425, 30462, 30465, 30466], + [1, 2343, 21066], + [0, 0, 21068, 21069, 4139], + "ffmpeg", + [0, 1429, 2323, 2384, 2463], + [0, 3561, 1623, 6425, 30472, 15182, 9320], + [1, 2343, 21071], + [0, 21073, 21075, 21076, 34352], + "fbemitter", + [0, 2654, 9673, 3561, 3676], + [2, 3794, 11017], + [ + 0, 19605, 1165, 1429, 1503, 1177, 1895, 1930, 19622, 1945, 1953, 19623, 1955, 1964, 1988, 17308, 2899, 19761, + 3421, 30479, 3678, 30481, 1894, 4320, 4323, 4337 + ], + [0, 3561, 5341, 1936, 188, 30483, 30484, 1623, 695, 2278, 4329, 30485, 4337], + "dispatcher", + [1, 2343, 21079], + [0, 21080, 0, 21081, 2399], + [0, 30287, 3688], + [0, 12083, 1623, 158, 30491, 12631, 16587, 3561, 6425, 23992, 6398], + "lolex", + [1, 2343, 21084], + [0, 21085, 21086, 21087, 2399], + [0, 3688, 30275, 814], + [0, 1166, 1414, 1177, 30279, 1955, 2203, 3561, 3678, 1894, 4337], + [0, 1623, 3561, 6425, 1204, 30498, 3378], + [1, 2343, 21089], + [0, 21090, 0, 21091, 2537], + [0, 2984], + [0, 3561, 30504, 30506], + [1, 2343, 21093], + [0, 21094, 21095, 21096, 2523], + [0, 2807, 4135, 1595], + [ + 0, 1700, 1192, 695, 2278, 2675, 3144, 30512, 1622, 1177, 1637, 1701, 2203, 3561, 4337, 4468, 4474, 2924, 1894, + 1610, 48, 442, 1193, 17167, 4294, 53, 2969, 2990, 3400, 4111, 30520, 3613, 3640, 192, 1953, 27928, 4257, 87, + 4523, 1939, 3616, 1938, 20281, 1982, 1895, 1955, 19344, 30518, 5467 + ], + [0, 1623, 3561, 22147, 2924, 11526], + "cliff", + "shush", + "flatiron", + "nssocket", + "-monitor", + [2, 2134, 21101], + [1, 2343, 21105], + "getopts", + [0, 21107, 20974, 21112, 2487], + "cli-testlab", + [0, 3688, 4319], + "fault", + " tolerant", + [2, 21108, 21109], + "sysadmin", + [0, 1623, 3178, 16918, 3561, 6425], + [1, 2343, 21114], + [0, 21115, 21119, 21123, 4139], + [0, 1393, 30298, 3681, 30532], + "node-ab", + [2, 18876, 12620], + [2, 21116, 21117], + [0, 30302, 3561, 26712, 3591], + [2, 6062, 2978], + "ross-spawn", + [2, 4857, 21121], + [0, 1623, 16918, 3561, 6425], + "jest-circus", + "karton", + [1, 2343, 21128], + "typecheck", + [0, 5488, 20974, 21130, 2523], + [2, 1218, 21131], + [0, 1623, 2414, 30541, 30542, 16918, 6425], + "hermes-parser", + [1, 2343, 21135], + [3, 4852, 15], + [2, 21133, 13921], + [0, 21137, 20974, 21138, 2399], + "increment", + [0, 30299, 3688, 30532], + [0, 1623, 3561, 6425], + [1, 2343, 21140], + [0, 21145, 20974, 21150, 2399], + "asynckit", + "combine", + "d-stream", + [2, 21142, 21143], + [0, 1393, 3688, 30532], + [2, 13888, 2759], + "fake", + "far", + "is-node-", + [0, 3561, 1623, 6425, 3178, 16918, 3634], + "modern", + [2, 21149, 21151], + "obake", + [1, 2343, 21157], + [2, 31868, 7625], + [2, 31865, 21160], + [0, 21159, 21164, 21169, 2537], + "dezalgo", + [0, 1636, 3681], + [3, 9367, 18, 5], + "@tunnckocore/prettier-config", + "formdata-", + [2, 21162, 6422], + [0, 30559, 3561], + [2, 19713, 1781], + [2, 3862, 18481, 21172], + "www", + "ulpoad", + [0, 1623, 3178, 16918, 3561, 6425, 3586], + [1, 2343, 21171], + [0, 21176, 21181, 21183, 2399], + "bob", + [3, 11366, 11], + [2, 21173, 3797], + "tiny-warning", + [0, 16837, 3681, 3688], + "just-", + "debounce-it", + [2, 21177, 21178], + "tsdx", + [0, 1596, 1177, 1895, 2675, 1192, 2990, 3561, 1894], + [2, 7519, 582], + [0, 4529, 3561, 1623, 6425], + [1, 2343, 21190], + "render props", + "higher", + " order component", + [2, 21186, 21187], + "hoc", + [0, 21012, 0, 21191, 2443], + [0, 3561, 1623, 6425, 2278, 3639], + [1, 2343, 21193], + [0, 21194, 0, 21196, 2443], + [0, 30577, 220, 3681], + "conditional", + [0, 30579, 1451, 30581, 1623, 30413, 30428, 3639, 30582, 3561, 6425, 3624, 3586, 10654, 10659, 5341, 12616], + [1, 2343, 21198], + [0, 21199, 21200, 21201, 2523], + [0, 30587, 30589, 30590], + [0, 20117, 1393, 3561, 3613, 4042], + [0, 3561, 1623, 6425, 30594, 2887, 30595], + [1, 2343, 21203], + [0, 0, 20974, 21204, 2487], + [0, 3561, 1623, 6425, 8426], + [1, 2343, 21206], + [0, 5488, 20974, 21138, 2537], + [1, 2343, 21208], + [0, 5488, 20974, 21138, 2443], + [1, 2343, 21211], + "check-dts", + [0, 20973, 20974, 21138, 4139], + [1, 2343, 21213], + [0, 5488, 20974, 21215, 2537], + "front matter", + [0, 1623, 3374, 16918, 16919, 3561, 6425, 1002], + "meta data", + [1, 2343, 21218], + [0, 21219, 20974, 21138, 2523], + [0, 3688, 30532], + [1, 2343, 21221], + [0, 0, 21222, 21223, 2537], + [0, 2675, 2899, 3561, 2759, 1894, 2990, 3640], + [0, 3561, 3665, 3586, 6425, 1623, 3585, 1932], + "universalify", + [1, 2343, 21229], + "klaw", + "dir-files", + [2, 15034, 21227], + [0, 21230, 0, 21231, 2523], + [ + 0, 28789, 30630, 30633, 28817, 30636, 26477, 30640, 32579, 30643, 30647, 30649, 30652, 30654, 30657, 30658, 215, + 30662, 30670, 30673, 30677, 30678, 30682, 30686, 30690, 31001, 30693, 30701, 30703, 27930, 218, 28640, 27069, + 30708, 30712, 29388, 30715, 32835, 29704, 30721, 30724, 30725, 1165, 1393, 30728, 30733, 30736, 1635, 30326, + 30739, 3570, 30331, 30338, 3579, 3584, 3587, 30742, 30744, 4791, 30747, 30348, 30749, 3611, 30751, 30754, 3643, + 30757, 30759, 30761, 30763, 30358, 30363, 30366 + ], + [0, 1623, 30428, 16897, 14836, 30765, 3286, 3561, 6425, 10654, 10659, 16900, 12616], + [1, 2343, 21233], + [0, 21234, 21235, 21138, 4139], + [0, 1393, 30298], + [0, 30302, 2646, 3561], + "assist", + [2, 6019, 21236], + [1, 2343, 21239], + [0, 0, 0, 21240, 2537], + [0, 1623, 3561, 30775, 57, 21110], + [1, 2343, 21242], + [0, 0, 0, 21245, 2537], + "any-promise", + "then", + [0, 1623, 3561, 30775, 57, 4329, 2278], + "thenify-all", + [1, 2343, 21248], + [0, 21249, 21250, 2514, 2443], + [0, 1636, 23462], + [0, 48, 53, 68, 11267, 61, 87, 94, 1166, 1198, 16150, 1701, 1177, 1938, 2070, 3183, 3421, 3561, 4135, 91], + [1, 2343, 21252], + [0, 21253, 21254, 21255, 4139], + [0, 3688, 4361], + [0, 30315, 3561], + [0, 1623, 3178, 16918, 3561, 6425, 8221, 4361], + [1, 2343, 21257], + [0, 21012, 20974, 21138, 2537], + [1, 2343, 21259], + [0, 0, 21260, 21261, 2537], + [0, 1177, 2675, 2990, 1894, 4387, 4389], + [0, 3561, 6692, 57], + [1, 2343, 21263], + [0, 21264, 0, 21265, 2537], + [0, 28807, 30805, 30808, 30811, 30813, 30816, 30818, 4484], + [0, 14873, 25638, 14871, 3519, 18035, 1747, 13392, 5576, 5995, 29938, 14872, 91, 4799, 1999], + [1, 2343, 21267], + [0, 21268, 21269, 21270, 2537], + [0, 9376, 9375], + [0, 192, 22559, 1414, 1429, 1431, 1436, 1567, 2675, 2829, 2990, 2899, 4255], + [0, 1936, 6523, 23760, 57, 353, 30826, 24798, 7121, 26467], + [1, 2343, 21272], + [0, 21273, 0, 21274, 2523], + [0, 30840, 3348, 2970, 2973, 4431, 30843, 2972, 30842, 3310, 30837, 30834, 3923, 30833, 30839], + [0, 1747, 28088, 3693], + [1, 2343, 21295], + "@monaco-editor/loader", + [3, 7664, 11], + "topwatch", + [2, 21277, 21278], + [2, 7666, 6731], + "@snippetors/vuepress-plugin-tabs", + [3, 19464, 17], + "google-a", + [2, 21283, 20827], + [2, 21282, 21284], + [2, 93, 4314], + [2, 21282, 21286], + [2, 21282, 7193], + "monaco-", + [2, 21289, 6038], + "dsense2", + [2, 21283, 21291], + [2, 6324, 21292], + [2, 19469, 21293], + [0, 21297, 21298, 21299, 2537], + "bitap", + [0, 13609, 30849, 30850, 30855, 1695], + [ + 0, 1173, 1280, 4895, 1245, 1264, 1389, 5669, 30857, 2025, 2297, 2881, 25848, 2895, 2900, 30859, 2899, 30862, + 18102, 3774, 4019, 4135 + ], + [0, 3696, 1145, 6468, 1973, 5472, 5286, 6892], + "@types/katex", + [1, 2343, 21303], + "socket", + [0, 21304, 21305, 21310, 2487], + [0, 1615, 23975, 4707], + [0, 1148, 2759, 2899], + "tex", + "sublime", + "katex", + "sublime text", + [0, 3358, 582, 3378, 3697, 30872, 18462, 1973, 5001], + [1, 2343, 21312], + [0, 0, 21313, 21314, 2443], + [ + 0, 30877, 30879, 53, 5874, 12372, 87, 94, 11976, 4856, 6503, 4874, 6513, 17214, 16480, 30881, 1429, 1596, 1610, + 30883, 668, 2675, 30888, 3165, 2899, 3401, 30889, 28423, 3744, 11481, 4193, 4196, 4072, 91, 4548, 1983, 1984, + 824 + ], + [0, 3698, 89, 181, 6073, 30891, 23361, 4963, 30892, 6400, 5130], + "globule", + [1, 2343, 21318], + [2, 2237, 5365], + [0, 21319, 7923, 11581, 2523], + [0, 1437, 1457, 2152, 18545], + [1, 2343, 21321], + [0, 21322, 21323, 21324, 2537], + [0, 30905, 8506, 3137], + [ + 0, 21024, 5467, 811, 8850, 816, 5087, 9363, 1009, 1011, 1529, 1177, 1895, 1955, 2675, 1192, 30912, 12129, 1894, + 4042, 4257, 4072, 4474, 91 + ], + [0, 1894, 1932, 1776, 8505], + [1, 2343, 21326], + [0, 0, 21327, 21330, 2487], + [0, 4874, 30922, 1166, 1894, 91, 13151], + [2, 4755, 1145], + "yeoman-test", + [0, 1894, 30924, 91, 5651, 3705], + [1, 2343, 21332], + [0, 21333, 21334, 21335, 4139], + [0, 18710], + [0, 3401, 1894], + [0, 6661, 1932, 1894], + [1, 2343, 21338], + "restangular", + [0, 0, 21342, 21343, 2487], + "ui-router", + "foundation", + "traceur", + [0, 8862, 811, 816, 4874, 1166, 1894, 4042, 4075, 3709, 4474, 4484, 91], + [0, 1894, 3709], + [1, 2343, 21345], + [0, 21346, 0, 21347, 2487], + [0, 30940, 1209, 1997], + [0, 1894, 1541], + "find-git-root", + [1, 2343, 21353], + "git-config", + [3, 31021, 19], + "@merkle-open/eslint-config", + [0, 0, 8134, 21355, 2537], + "modular", + [0, 3721, 1413, 1412, 2098, 4202, 2090, 12786, 30946, 7017, 30947, 2382, 30948, 23933, 30950], + [1, 2343, 21357], + [0, 21358, 21359, 21361, 4139], + [0, 1209, 30956], + [0, 1429, 1506, 1509, 30958, 2899], + "pooling", + [0, 3721, 1851, 30960, 1676, 6738, 7017, 13086, 22405, 1671, 12786], + [1, 2343, 21363], + [0, 21364, 21366, 2514, 2523], + [0, 8801, 1110, 3847], + "ts2mjs", + [0, 4880, 15606, 4889, 2700, 2798, 89, 3824, 3904], + "iterators", + [1, 2343, 21370], + "iterable", + [0, 21372, 8134, 21375, 2487], + [2, 21373, 29777], + [0, 30970], + "@prisma/d", + "@prisma/dev", + [0, 3721, 22405, 12786, 24130, 30946, 7017, 6901, 3242, 30974, 17003, 30975, 6754, 2585, 1871, 6988, 15244], + [1, 2343, 21382], + "@werkzeugkiste/eslint-config", + [3, 21377, 15], + [2, 6019, 1541], + [2, 21378, 21379], + "install-", + [0, 21389, 0, 21390, 2487], + "postmerge", + [2, 17496, 21383], + [2, 21381, 21384], + [3, 9794, 17], + [3, 13848, 20], + [2, 21386, 21387], + [0, 6041, 4484, 2687, 26379, 3530, 30097, 3527], + [0, 3358, 30981, 30982, 1894, 3720, 6983, 1501, 30983, 30872], + [1, 2343, 21392], + [0, 21394, 21398, 21399, 2523], + "@cfware/lint", + [0, 1512, 3183], + "@cfware/nyc", + "if-ver", + "libtap", + [0, 2899, 2272, 4170, 2759, 1596, 3202], + [0, 1781, 200, 6983, 1512], + [1, 2343, 21401], + [0, 21403, 21408, 21409, 2523], + "available", + [0, 3260, 25638, 21374, 28286, 30996, 21351], + "connection", + "tcp", + [3, 6045, 9], + "chosen", + [ + 0, 3467, 4763, 2611, 1192, 3445, 2020, 2929, 28974, 3510, 1759, 8537, 15452, 1457, 2151, 842, 16145, 16473, + 2794, 3077, 3310, 29710, 4294, 31000, 91, 5087, 4874, 6477, 28076, 1151, 2191, 31004, 3393, 31006, 32248, 31008, + 28229, 31009, 25629, 31013, 4864, 33235, 23531, 8998, 29420, 31015, 31018, 13471, 32470, 31023, 31026, 33237, + 28231, 29421, 26285, 33683, 21371, 13502, 29425, 31475 + ], + [ + 0, 9628, 31034, 31035, 31037, 31038, 18035, 1747, 17626, 31039, 6869, 31040, 31041, 31042, 3519, 31043, 31045, + 31046, 31047, 31048, 31049, 31050, 31051, 31052, 31221 + ], + [1, 2343, 21411], + [0, 0, 21412, 21414, 2537], + [ + 0, 5542, 1317, 1429, 31058, 1700, 31061, 1177, 1942, 1964, 2323, 2361, 2367, 2409, 20304, 2494, 2496, 31063, + 2553, 2654, 2665, 2832, 2899, 3310, 3400, 1894, 3756, 19745, 19750, 12120, 3980, 19751, 4183, 31066, 4747 + ], + "std", + [0, 588, 5342], + [1, 2343, 21416], + [0, 21417, 21419, 21421, 4139], + [0, 1362, 1364, 1512, 2026, 3078, 3188, 3220, 31074, 3460, 3507, 31075], + "@sec-ant/readable-stream", + [0, 1429, 2323, 2463, 3215, 4089, 4193, 4196, 4339], + "onetime", + [0, 1370, 7223, 29179, 18157, 12468, 2325, 3358, 31078, 3383], + [1, 2343, 21424], + "precise-now", + [0, 0, 6538, 2514, 2537], + [1, 2343, 21426], + [0, 0, 21427, 21428, 2487], + [0, 4770, 2899], + [0, 3729], + "-maps", + [2, 6477, 21429], + [1, 2343, 21433], + [2, 2190, 6660], + [0, 0, 0, 21434, 8878], + [0, 200, 3730], + [1, 2343, 21436], + [0, 21443, 0, 21445, 2537], + [3, 13936, 15], + "evry", + [2, 21437, 21438], + "make-d", + "eno-edition", + [2, 21440, 21441], + [0, 1437, 3730], + "deno", + [0, 2924, 1932, 3730, 10036], + [1, 2343, 21448], + "deno-edition", + [0, 21449, 21451, 2514, 4139], + [0, 29277], + "deno-entry", + [0, 1082, 4039, 2759], + "denoland", + [1, 2343, 21454], + [0, 0, 21460, 21461, 2487], + "es2022", + [3, 72, 14], + "ifconfig", + "ipconfig", + "mac-address", + [ + 0, 1389, 1610, 1177, 10697, 2675, 2297, 2871, 2881, 2900, 2990, 2899, 3400, 1894, 4039, 4042, 4077, 4193, 4650, + 91 + ], + [0, 1862, 3734, 6789, 14833], + [1, 2343, 21463], + [0, 21467, 17022, 21471, 2537], + "email-", + "addresses", + [2, 21464, 21465], + [0, 2899, 4193, 4545], + "dir-compare", + "tschaub", + [2, 1884, 21469], + [0, 6567, 14833], + [1, 2343, 21473], + [0, 16583, 21474, 11581, 2487], + [0, 1804, 2109, 2899, 3699], + [1, 2343, 21478], + "manage-path", + "opt-cli", + [0, 21484, 21487, 21488, 2487], + "chai-s", + "chai-string", + "kentcdodds", + [2, 1884, 21481], + "trav", + [0, 13388, 1149, 3917, 13832, 4709], + "is-after-all", + [2, 21483, 21485], + [0, 1177, 4616], + [0, 3741, 6876, 31122, 7020], + [1, 2343, 21490], + [0, 21491, 21492, 21493, 2487], + [0, 2929, 16235], + [0, 48, 53, 78, 87, 4387, 4389], + [0, 181, 3742, 200, 3741, 8626, 6876, 6847, 1523, 2184, 4403, 8620, 31129], + [1, 2343, 21500], + "@primer/octicons", + "@primer/", + "primitives", + [2, 21496, 21497], + [2, 812, 1936], + [0, 21501, 21502, 10570, 2523], + [0, 3082, 3427, 3847], + [0, 1193, 1268, 1389, 1408, 1177, 2708, 1192, 89, 31135, 31136], + [1, 2343, 21504], + [0, 0, 21506, 21508, 2443], + "minipass", + [0, 9363, 4874, 31142, 1414, 2620, 31145, 31147, 1894, 3985, 3998, 31148, 31150, 4505, 91, 18002, 1906], + "path-scurry", + [0, 31152, 23584, 1936, 4374, 18523, 3205, 8221], + "-from-dist", + [2, 9478, 21509], + [1, 2343, 21513], + [2, 5745, 1563], + [0, 21514, 21515, 21516, 2523], + [0, 31157, 31159, 31160, 31161, 31162, 31165, 31166, 31167, 31169, 31170, 4874, 3080], + [ + 0, 1317, 1389, 31172, 1408, 1437, 1875, 1177, 2000, 2004, 2193, 28406, 31174, 21749, 2323, 2409, 2419, 2510, + 2530, 1776, 3183, 3421, 3951, 4389, 4487, 91, 4535, 4599, 4600, 4603 + ], + [0, 7018, 6765, 7050, 91], + [1, 2343, 21518], + [0, 21521, 21522, 21523, 2523], + "dirname", + "wildcard", + [0, 11304, 28502, 31180, 14336, 1437, 2070, 2765, 31182, 3760, 12826, 4130, 4232, 31184, 31186, 4747], + [ + 0, 7740, 4865, 23689, 31188, 9129, 4874, 1364, 1429, 1431, 28556, 2025, 2026, 2323, 31190, 2526, 2272, 1209, + 3127, 2899, 31191, 4039, 4089, 4135, 4487, 31194, 91, 31195 + ], + [0, 1098, 1973, 5472, 11132, 13841, 28522], + [1, 2343, 21525], + [0, 21527, 21528, 21529, 2537], + "min-document", + [0, 7058, 31202, 1676], + [0, 31205, 5245, 5087, 4874, 1151, 1192, 4468, 91, 2190], + [0, 27, 2671, 2658, 1544, 3013, 31207, 31209, 18413, 31210, 31211, 31212], + [1, 2343, 21531], + [0, 21532, 21533, 18970, 2537], + [0, 31218, 31220, 814], + [0, 2899, 31224, 4170, 4193, 4255], + [1, 2343, 21535], + [0, 21538, 21540, 21542, 2523], + "path-t", + "path-type", + [0, 1437, 31229, 31233, 2720, 2742, 1209, 3170, 3309, 3470, 4135], + "glob-stream", + [0, 1173, 1255, 1264, 1700, 1177, 1895, 2702, 2759, 3188, 2899, 3211, 1894, 4039, 4170], + "fnmatch", + [0, 2323, 3378, 20001, 3383, 1237], + "globbing", + "globs", + "wildcards", + [1, 2343, 21547], + [0, 21548, 21549, 21551, 2399], + [0, 31249, 31246, 31248, 31250, 31243, 31251, 31242, 31254], + [0, 3188, 4039, 24592, 24587, 24594, 24596, 31259, 31258, 24591], + [2, 13039, 12804], + [0, 1936, 2437, 3754, 1283], + "array-series", + [1, 2343, 21554], + [0, 0, 21557, 2514, 2537], + "magick", + [2, 11812, 21555], + [0, 1317, 27468, 2060, 3714, 31266, 4387, 4389], + [1, 2343, 21559], + [0, 21560, 0, 21561, 2537], + [0, 1834, 3441], + [0, 7046, 7170, 14858, 7241], + "-with", + [2, 21562, 1892], + [2, 1903, 21563], + [1, 2343, 21569], + "msmc", + "mc", + "minecraft", + [0, 0, 21570, 21588, 2537], + [0, 1503, 3421, 2899], + "java edition", + "arm", + "arm-support", + "forge", + "s-management", + [2, 16154, 21575], + "instances", + "mod", + "mods", + "mc-mod", + "mc-mods", + "modpack", + "modpack-api", + "extendable", + "nbt", + "jarmods", + "skin fix", + [0, 3757, 3656, 31277, 31278, 31279, 1002, 31280], + [1, 2343, 21590], + [0, 21591, 21592, 21593, 2523], + [0, 17846, 31286, 1595, 28504, 11114, 31288], + [0, 4874], + [0, 3758, 3195, 29727, 13428], + "docsify-cli", + "ing-promise", + [2, 14639, 21595], + [2, 16645, 21596], + [1, 2343, 21601], + "spreadsheets", + [2, 8567, 21599], + [0, 21602, 0, 21609, 4139], + [0, 1525, 2071, 3561, 3681], + "google sheets", + [3, 21599, 11], + "sheets", + "gdata", + "drive", + "google docs", + [0, 6707, 16587, 7293, 17507, 1623, 1936, 3624, 31297, 22946, 18114], + "svgs", + "google drive", + [1, 2343, 26326], + [0, 2228, 2272, 3130, 2240, 2768, 2281, 3736], + [0, 3760, 1862, 6567, 14832, 14833, 14834, 14836, 1149, 14838, 8553, 1388, 202], + [1, 2343, 21617], + [2, 2211, 13369], + [0, 0, 0, 21618, 2399], + [0, 11194, 31307, 16421, 18048, 8221, 158], + "@types/execa", + "@types/mv", + "@types/ncp", + "unjucks", + [2, 10884, 21622], + "rl-template", + [2, 7817, 21624], + [2, 4892, 1574], + "js-green-licenses", + [1, 2343, 21629], + [0, 0, 0, 21631, 2537], + "linkinator", + [0, 1111, 6938, 11194, 7201], + [2, 8573, 591], + [2, 5576, 12950], + [1, 2343, 21635], + [0, 21636, 21637, 21643, 2537], + [0, 17409], + [ + 0, 31317, 31319, 13614, 1389, 1408, 31322, 1796, 1855, 1177, 2011, 2133, 2070, 19066, 31328, 27547, 17421, 2569, + 2685, 2708, 2762, 2807, 3188, 3206, 15030, 3410, 3421, 3431, 19974, 4103, 23948, 4389, 31329 + ], + "p-cancelable", + "responselike", + "-keys", + [2, 17267, 21640], + [2, 13788, 2741], + [0, 3767, 3763, 3766, 1002, 1644, 1646], + "able-lookup", + [2, 2325, 21644], + "cacheable-", + [2, 21646, 705], + "-encoder", + [2, 2139, 21648], + [2, 17278, 5508], + "byte-counter", + [1, 2343, 21660], + "pem", + "@types/pem", + "cert", + "create-cert", + "slow-stream", + "then-", + "then-busboy", + [0, 21661, 21664, 21669, 2537], + [0, 31337, 31339, 31341], + "@hapi/bourne", + [2, 1601, 9224], + [0, 1166, 1317, 1693, 2064, 4481, 1906], + "brotli", + "requests", + [2, 20034, 17460], + "ky", + [0, 1388, 3767, 3766, 1871, 3763, 5420, 31344, 1002, 1644, 1646, 10368, 15103, 31345, 7131], + [1, 2343, 21671], + [0, 0, 21672, 21673, 2537], + [0, 1973, 31350, 4389], + [0, 10906, 3766, 3767], + [1, 2343, 21675], + [0, 0, 21685, 21686, 2537], + "govuk-", + "-kit", + [2, 6688, 21677], + [2, 21676, 21678], + "gulp-cl", + "gulp-cli", + "sass-co", + "lor-helpers", + [2, 21682, 21683], + [0, 1414, 2665, 31357], + [0, 3768, 1149, 14629, 31360, 12692, 5957, 6994, 13792], + "embedded", + [2, 4832, 21687], + "sassdoc", + [1, 2343, 21692], + "govuk", + [0, 11570, 11571, 21693, 2537], + [ + 0, 3768, 29664, 31365, 31366, 31367, 5284, 17625, 17626, 676, 91, 17627, 6869, 4799, 12692, 4721, 3768, 31369, + 31370, 31374, 8893, 6994, 31376, 6915, 17697, 6333, 31377, 2382, 6956, 17706, 17710, 6957, 17711, 17712, 17713, + 17714, 17715, 17716, 17717, 17718, 17651, 6674, 17721, 17722, 6789, 17723, 17724, 17726, 17727, 17729, 17730, + 17731, 17732, 17733, 614, 6910, 17734, 11600, 17735, 3760, 31379, 4552, 28483, 31381, 6645, 4787, 3286, 202, + 5401, 27366, 6681, 17740, 1745, 17116 + ], + [1, 2343, 21695], + [0, 21696, 21698, 21705, 2537], + [0, 3021, 31388, 31389, 2017], + "reading", + [ + 0, 2070, 4361, 2832, 1177, 4333, 1984, 4474, 2924, 1894, 4469, 48, 1628, 91, 53, 4874, 2629, 4677, 1195, 2600, + 4307, 4334, 4689, 4891, 17214, 8648, 5139, 87, 4230, 4681, 31392, 2651, 1938, 4409, 1895, 1947, 1955, 3177, 92, + 31394, 1011, 20476, 31393, 1009, 8724, 1915 + ], + "retries", + "EMFILE", + "EAGAIN", + "EINVAL", + "EPERM", + "EACCESS", + [0, 3771, 6038, 6106, 6105, 6138, 6139, 5130], + [1, 2343, 21707], + [0, 21708, 21709, 21710, 2443], + [0, 1525, 11482, 3350], + [ + 0, 3421, 2228, 2929, 1177, 4039, 4042, 4135, 1317, 2116, 31401, 4019, 3752, 20496, 53, 31402, 87, 1937, 1954, + 2258, 18895, 23165, 5583, 1924, 1938, 31404, 1958, 2256, 6373, 1903, 1948, 811, 1900, 816, 31405, 8229 + ], + [0, 5472, 2275, 1145, 6468, 4384, 4389, 2297, 2814], + [1, 2343, 21712], + [0, 21713, 21714, 21716, 4139], + [0, 31413], + [ + 0, 5517, 31417, 1009, 1011, 7677, 1240, 1264, 1540, 1177, 1895, 1955, 15854, 18841, 1894, 23535, 2907, 3980, + 18819, 4042, 8849, 4076, 91, 1984, 2924 + ], + "graphql-js", + [0, 1388, 965, 1936, 2907, 31419, 5472], + [1, 2343, 21718], + [0, 21719, 21722, 21723, 2537], + [0, 1457, 1525, 31426, 2107, 31427, 814, 4648], + "all-versions", + [2, 1382, 21720], + [ + 0, 1149, 1203, 1267, 31429, 1499, 25063, 25076, 1937, 18895, 2020, 2116, 2151, 2228, 2240, 2243, 2256, 2258, + 23165, 2283, 21929, 2291, 25070, 21930, 26210, 31402, 3006, 3752, 4019, 4045, 4135 + ], + [0, 5472, 2275, 2814], + [1, 2343, 21725], + [0, 21726, 21727, 21728, 34352], + [0, 3518], + [0, 31437, 1389, 4389], + [0, 31440, 6422], + [1, 2343, 21733], + "section-", + [2, 21730, 9338], + [2, 4296, 12835], + [0, 0, 21736, 21737, 2523], + "ansi-green", + "delimiter-regex", + [ + 0, 48, 53, 87, 94, 104, 5583, 24621, 31447, 1290, 1317, 1481, 1610, 31448, 1177, 1938, 2064, 2036, 2822, 2899, + 3400, 3421, 4039, 4042, 4077, 31449, 31452, 4193, 4423, 31453 + ], + [0, 3776, 6564, 594, 6731, 6081, 7517, 7532, 7594, 7595, 7523, 7524], + "assemble", + [1, 2343, 21741], + "extracting", + [0, 21742, 7923, 21743, 2487], + [0, 4127], + [0, 3778, 28734, 28734, 4718, 1179, 16431, 2585], + [1, 2343, 21747], + [3, 5364, 11], + [2, 21745, 1398], + [0, 8766, 21753, 21754, 2523], + [2, 1807, 2899], + [2, 10692, 7018], + "pois", + "son-process", + [2, 21750, 21751], + [0, 3521, 4255, 4387, 4389, 4770], + [0, 1616, 3778], + [1, 2343, 21756], + [0, 21764, 7923, 2514, 2399], + "grunt-k", + "nown-options", + [2, 21757, 21758], + "legacy-log", + [2, 2235, 21760], + [3, 21761, 13], + [2, 21762, 614], + [0, 3779], + "difflet", + [3, 16758, 16], + "unt", + [2, 21766, 21767], + [1, 2343, 21771], + "temporary", + [0, 0, 7866, 21773, 34352], + "init", + [0, 6754, 57, 27], + [1, 2343, 21775], + [0, 21776, 21777, 21778, 2487], + [0, 3135, 3348, 977, 31479, 4252], + [0, 2070, 3297, 2899, 4193, 1177, 4170, 2759, 1894, 1506, 1895], + [0, 28411, 2656, 31482, 6807, 3783, 31483], + "gruntplugin", + [1, 2343, 21781], + [0, 21782, 21783, 2514, 2523], + [0, 1413, 14855, 2685, 2657], + [0, 3421, 2899, 1177, 1362, 29197, 4100, 3923, 19344, 7844], + [1, 2343, 21785], + [0, 13511, 21786, 13533, 2523], + [ + 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 1610, 1700, 1701, 1177, 1895, 1938, 1955, 2675, 1192, 2990, 3144, + 3400, 1894, 4257, 2924 + ], + [1, 2343, 21788], + [0, 21792, 0, 21793, 2537], + [3, 21146, 12], + "ncremental", + [2, 21789, 21790], + [0, 2714, 3183, 1696, 4300], + [0, 1541, 1997, 28984, 19400], + [1, 2343, 21795], + [0, 21796, 21797, 21798, 2523], + [0, 97, 1461, 3789], + [ + 0, 31504, 968, 972, 4859, 5087, 4874, 4880, 4883, 14693, 1610, 1789, 1177, 1939, 1982, 2079, 31506, 2193, 2070, + 695, 3377, 31508, 3788, 11249, 89, 3824, 3957, 91 + ], + [0, 89, 5128, 31511, 31512, 6847, 6754], + [1, 2343, 21800], + [0, 21801, 21802, 21803, 2523], + [0, 97, 13169, 1461, 3789], + [0, 31504, 972, 5087, 4880, 4883, 11322, 1610, 1789, 1177, 1982, 2079, 2193, 695, 3377, 31508, 89, 3824, 91], + [0, 89, 5128, 31519, 8190], + "liftup", + [1, 2343, 21806], + [0, 21807, 21808, 21809, 2523], + [0, 97, 3847], + [ + 0, 31504, 972, 5087, 4874, 4880, 4883, 15606, 31527, 11322, 14693, 1603, 1610, 1789, 1177, 1939, 1982, 2079, + 2070, 2675, 2990, 3377, 1894, 31508, 89, 3824, 91 + ], + [0, 89, 614], + "pad-stream", + [1, 2343, 21812], + [0, 0, 0, 10570, 2399], + [1, 2343, 21815], + "grunt-nodemon", + [0, 21816, 0, 21817, 2399], + [0, 3911], + [0, 89, 31542], + [1, 2343, 21819], + [0, 21822, 21823, 21817, 2523], + "simultaneous", + "faster", + [0, 3427], + [0, 1192, 89, 3824, 2924], + [1, 2343, 21825], + [0, 21826, 21827, 21828, 2523], + [0, 31555, 31558, 31560, 31563, 31564], + [0, 4042, 91], + [0, 5575, 2220, 89, 582, 21189, 4963], + [1, 2343, 21835], + [2, 21831, 36], + [3, 30922, 14], + "bin-", + [3, 18806, 13], + [2, 21832, 21833], + [0, 21836, 0, 2514, 2443], + [0, 3775, 1593, 1862, 4705, 3427, 3957], + "compass", + [1, 2343, 21839], + [0, 21840, 0, 21841, 2537], + [0, 4649, 2731, 1461, 3744, 31577, 1751, 97, 31575, 31581, 31578, 5090, 3911, 4808], + [0, 1367, 89, 4627, 4963, 31583, 5128], + [1, 2343, 21843], + [0, 21844, 21845, 21846, 2523], + [0, 31590, 1209, 3021, 31591, 3744, 31592, 4443], + [ + 0, 31594, 31598, 14689, 14691, 10837, 1173, 1175, 1193, 1195, 31600, 1267, 1268, 1272, 1280, 1429, 31602, 1628, + 1843, 2012, 2081, 2600, 2629, 2651, 2678, 1192, 2774, 31603, 2899, 3376, 3378, 3427, 89, 21074, 31605, 3824, + 3836, 31606, 3904, 4001, 4015, 4039, 4307, 31608, 2924, 4681 + ], + [0, 89, 31611, 5128, 20542, 3811, 31612, 3195, 31614, 5027, 8192], + [2, 1547, 3000], + [1, 2343, 21849], + [0, 21850, 21851, 21852, 34352], + [0, 1582, 3744], + [ + 0, 48, 53, 68, 61, 78, 87, 90, 94, 1195, 1251, 1628, 1703, 1177, 1879, 1938, 1947, 1959, 1961, 2193, 2651, + 31622, 3177, 89, 3824, 4307, 4389, 2924, 4677, 4681 + ], + [0, 4627, 5128, 89, 31625, 1492], + [1, 2343, 21854], + [0, 21856, 21857, 21858, 34352], + "file-sync-cmp", + [0, 8703, 1497, 1668], + [ + 0, 53, 68, 5228, 8229, 61, 87, 90, 92, 442, 31633, 5583, 811, 816, 10615, 10817, 966, 972, 974, 5601, 5087, + 11292, 4874, 4880, 4883, 1009, 1011, 1169, 1193, 1251, 1593, 33872, 1177, 1895, 1938, 1939, 1959, 1961, 27790, + 2675, 1192, 11347, 2771, 2780, 2990, 1209, 1894, 89, 3824, 4042, 11802, 2278, 4213, 4320, 4323, 5978, 4330, + 4468, 4484, 91, 4523 + ], + [0, 89, 3812, 9026, 1666, 5128], + [1, 2343, 21860], + [0, 21862, 21863, 2514, 2523], + "csslint", + [ + 0, 3445, 1437, 2696, 2205, 3539, 15427, 2105, 31642, 3742, 2098, 2553, 4294, 4425, 1615, 4165, 1393, 3008, + 14564, 31640, 51, 3938, 3829, 1874, 2135 + ], + [0, 1192, 1610], + [1, 2343, 21865], + [0, 21866, 21868, 2514, 2487], + [0, 31650, 31652, 31654, 2069, 2609], + "maxmin", + [0, 8719, 842, 972, 5540, 5087, 4874, 4880, 4883, 1192, 11944, 3400, 89, 3824, 4172, 91], + "cssmin", + [1, 2343, 21871], + [0, 21872, 21873, 2514, 4139], + [0, 31654], + [0, 8719, 842, 5087, 3400, 4172, 91], + [1, 2343, 21875], + [0, 21876, 0, 21877, 2537], + [0, 814, 19526, 53, 104, 8959, 5251, 101, 31669, 10879, 31666], + [0, 89, 1745, 31671], + [1, 2343, 21879], + [0, 21880, 0, 10570, 2537], + [0, 4116], + "jpeg", + [1, 2343, 21883], + [0, 21884, 21885, 21886, 2537], + [0, 31683, 31686, 3744], + [ + 0, 48, 53, 68, 8229, 31689, 73, 31690, 14170, 13051, 31693, 83, 87, 90, 94, 192, 22559, 19036, 26486, 5583, 811, + 816, 6061, 16607, 6065, 16608, 16612, 5535, 10876, 31695, 966, 968, 972, 20562, 4880, 4883, 1009, 1011, 1193, + 1198, 1201, 1527, 1610, 1177, 1895, 1938, 1947, 1954, 1955, 1959, 1961, 2675, 31696, 2694, 1192, 2990, 3125, + 3534, 1894, 89, 3824, 3895, 3904, 4039, 4042, 4073, 4131, 4201, 4307, 4315, 91, 2924, 31699 + ], + [0, 5128, 89, 7518, 5398, 9229], + [1, 2343, 21888], + [0, 0, 21889, 21891, 2537], + [ + 0, 51, 53, 31705, 1193, 1195, 1270, 1437, 1457, 1610, 2126, 2626, 1192, 31706, 3427, 1862, 3786, 89, 3803, 3824, + 4039, 31708, 4227, 2924 + ], + "hooker", + [0, 3473, 5341, 1851, 12991, 5403, 31710, 31711, 4649], + [1, 2343, 21893], + [0, 21894, 21895, 21896, 2537], + [0, 3427, 3744, 21174, 31718], + [ + 0, 1175, 1178, 1203, 1208, 1230, 1245, 1264, 1268, 1429, 1503, 1567, 1652, 1177, 31721, 1895, 1938, 1947, 1951, + 1955, 1959, 2759, 2297, 2878, 30885, 2881, 2886, 2895, 31723, 2900, 2910, 2921, 2923, 28636, 2899, 1894, 89, + 3824, 4039, 4042, 4045, 4055, 4067, 4069, 4193, 4196 + ], + [0, 3830, 31725, 89, 1746, 3193, 17913, 5207, 163, 1508, 1299, 31726, 590], + [3, 13115, 12], + [2, 21897, 1462], + [1, 2343, 21900], + [0, 0, 21901, 21902, 2537], + [ + 0, 19438, 603, 811, 816, 10615, 842, 16145, 968, 972, 5087, 4874, 4880, 4883, 6375, 1651, 1177, 1895, 4916, + 1955, 1959, 1961, 10964, 2675, 1192, 2780, 27412, 31734, 2990, 1894, 89, 3824, 4039, 4042, 4076, 4481, 91, 4523, + 4705, 4763 + ], + [0, 89, 582, 1669, 25, 7021, 7020, 91, 6687], + "nodeunit-x", + [1, 2343, 21905], + [0, 21906, 21907, 21908, 2487], + [0, 26007, 2202, 2609, 3008, 3744, 3849, 4163, 4227], + [ + 0, 8130, 4880, 8158, 1173, 1175, 1178, 1193, 1201, 1203, 1230, 1245, 1257, 1264, 1268, 1503, 13985, 1603, 1610, + 1843, 31742, 1845, 1177, 1879, 1895, 1938, 1947, 1959, 2675, 1192, 2990, 1894, 89, 3824, 31743, 3904, 3935, + 4039, 4042, 4045, 4055, 4058, 4067, 4069, 4077, 4257, 31745 + ], + [0, 89, 5284, 2924, 11498, 3000, 2998, 6109, 6609, 1194, 2999], + [1, 2343, 21910], + [0, 21911, 21912, 21913, 2487], + [0, 97, 31752, 5545], + [ + 0, 48, 53, 68, 23908, 78, 5241, 83, 85, 87, 90, 94, 5583, 811, 816, 6373, 10615, 966, 968, 972, 5087, 4880, + 7677, 17584, 1175, 7913, 14065, 1596, 1597, 1610, 1177, 1879, 1895, 1938, 31755, 1947, 1959, 1976, 2559, 2675, + 2681, 2990, 3188, 1894, 89, 3824, 3904, 4039, 4042, 91, 1984, 4747 + ], + [0, 2681, 23932, 2679, 8930, 23933, 6728, 23934, 89, 6071], + [1, 2343, 21916], + "uri-path", + [0, 0, 21917, 21918, 2399], + [ + 0, 5517, 11976, 5535, 968, 972, 4874, 4880, 4883, 1030, 32818, 16480, 19839, 2990, 3165, 3400, 3541, 23535, 89, + 3824, 9245, 4201, 4493, 91, 1984 + ], + [0, 89, 4627, 582, 31765, 31766, 31767, 31769, 31770, 31771, 31779], + [1, 2343, 21920], + [0, 21921, 0, 21922, 2537], + [0, 5540, 2609, 4484, 26222, 31797, 31791, 31799], + [0, 1671, 6983, 23934, 2679, 23932, 2728, 30948, 23933, 89, 6071, 8574, 8930], + [1, 2343, 21924], + [0, 0, 0, 10570, 2487], + [1, 2343, 21926], + [0, 0, 21931, 2514, 2523], + "grunt-co", + "veralls", + [2, 21927, 21928], + [2, 2235, 2759], + [0, 1420, 1437, 1177, 31815, 1192, 2774, 1894, 4042, 4069, 4077], + [1, 2343, 21933], + [0, 21934, 21935, 21936, 2487], + [0, 12396, 9363, 23289, 2583, 31821, 3140, 3992, 3999, 4549, 4555, 12449], + [ + 0, 972, 4874, 4880, 4883, 1414, 1537, 668, 1959, 10621, 1894, 89, 3824, 3973, 29250, 3985, 3988, 3998, 10632, + 4505, 91, 1906 + ], + [0, 6892, 20627, 4627, 3987, 1783, 89, 5128, 3984, 4549], + [3, 2289, 9], + [1, 2343, 21943], + "all-releases", + [2, 9005, 21939], + [2, 21937, 21940], + [2, 2235, 21941], + [0, 21946, 21947, 21948, 2523], + "gh", + "releases", + [0, 31828, 3744, 3849, 4649], + [ + 0, 31832, 1173, 1175, 1178, 1195, 1198, 1264, 1268, 1277, 1596, 1610, 1177, 1895, 31393, 1938, 1947, 1955, 1959, + 13871, 2297, 2881, 2886, 2895, 2900, 2904, 2921, 2925, 2899, 3400, 1894, 89, 3824, 3884, 3885, 4170, 4535, 2924, + 4677, 4681 + ], + [0, 89, 5128, 5066, 18346], + [1, 2343, 21950], + [0, 21951, 21952, 21953, 2523], + [0, 3518, 3744, 3775], + [ + 0, 1172, 31840, 1175, 1178, 1195, 1505, 1628, 1177, 1879, 1916, 1938, 1947, 1959, 2126, 29945, 31841, 31842, + 2766, 2297, 2886, 2898, 31844, 2906, 2925, 31845, 3521, 3836, 4307, 2924, 4681 + ], + [0, 89, 4627, 5128, 31847, 8424, 31849, 12185, 7521, 9944, 181], + [1, 2343, 21955], + [0, 21957, 0, 21958, 2537], + "vow", + [ + 0, 4729, 31705, 4747, 4135, 1862, 1301, 1525, 2731, 4116, 1109, 1193, 31856, 27921, 3145, 4705, 31859, 3717, + 3878, 30781, 1079, 31861, 28512, 31864, 24169, 3957, 31867, 2784, 31871, 31877, 31880, 31884, 31891, 31893, + 21129, 31896 + ], + [0, 89, 3857, 12296, 12295, 5131, 16697, 31904, 31906], + [1, 2343, 21960], + [0, 0, 21961, 21962, 2537], + [0, 29525, 21155, 21156, 1177, 1955, 1894, 89, 3857, 21166, 91], + [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 31914], + [1, 2343, 21964], + [0, 21965, 21966, 21967, 2487], + [0, 4747, 3744], + [ + 0, 89, 1177, 31934, 31928, 2735, 1894, 10777, 48, 31923, 53, 1178, 2132, 31926, 21495, 31929, 31935, 31932, + 31920, 31922, 1959, 1879, 1938, 1895, 1947, 1955, 1961, 5103 + ], + [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 31937, 6574, 6635, 181, 1017, 45, 13814, 22875, 2414], + [1, 2343, 21971], + "ravis-cli", + [2, 6305, 21969], + [0, 0, 21973, 21974, 34352], + "TDD", + [ + 0, 48, 53, 61, 78, 5240, 87, 90, 94, 31942, 20202, 20212, 602, 15134, 10817, 968, 972, 974, 4880, 1011, 1178, + 1195, 1198, 4899, 1461, 1497, 1610, 1177, 1895, 1916, 1938, 1959, 2193, 2832, 3132, 15326, 1894, 9054, 89, 3824, + 31945, 4042, 4045, 4055, 11802, 4060, 4067, 4069, 4077, 4469, 91, 1984, 2924, 4677, 4681 + ], + [0, 5128, 89, 31948, 6847, 6988, 31950, 10098], + [1, 2343, 21976], + [0, 0, 21977, 21981, 2537], + [ + 0, 53, 61, 78, 87, 14041, 5583, 1178, 1195, 1429, 1177, 2675, 2990, 2899, 3400, 1894, 89, 3824, 3904, 31956, + 4039, 4042, 2924 + ], + [3, 2247, 10], + "inue", + [2, 21978, 21979], + [0, 89, 31958, 31959, 3868], + "grunt-env", + "-coverage", + [2, 21930, 21983], + [1, 2343, 21986], + [0, 0, 21987, 21988, 2537], + [0, 8862, 31964, 1177, 31966, 1955, 31967, 1192, 1894, 4042, 91], + [0, 3872, 1936, 8221, 965, 3205, 23584, 1541, 89, 3824], + [1, 2343, 21992], + "afe-mocha", + [2, 2241, 21990], + [0, 21993, 21994, 21997, 2523], + [0, 5546, 5545], + [ + 0, 603, 810, 966, 968, 972, 4874, 5090, 4880, 4883, 1503, 1610, 1177, 1895, 1915, 1938, 1955, 1959, 2832, 1894, + 89, 3824, 3875, 4039, 4493, 91, 4523, 1984 + ], + [2, 21996, 995], + "@sailshq/r", + [0, 89, 6071, 3875], + [1, 2343, 21999], + [0, 0, 0, 10570, 2537], + "grunt-release", + "s-dylang", + [2, 14352, 22001], + [1, 2343, 22004], + [0, 22006, 22007, 22010, 2537], + "notify", + [0, 2677, 31983, 3744, 1849], + [ + 0, 10817, 4856, 31986, 13204, 31989, 31992, 6503, 4880, 4883, 6513, 1009, 1011, 1429, 1610, 1177, 1924, 2193, + 2832, 31994, 2899, 1894, 89, 3824, 4039, 4042, 11054, 4170, 4193, 4484, 4494, 4508, 91 + ], + "mountain lion", + "mavericks", + [0, 1623, 5128, 31765, 89, 5131, 31997, 31999, 6415, 32001, 6398, 4627], + "notify-send", + [1, 2343, 22013], + [0, 22014, 22015, 22016, 2487], + [0, 977, 5152], + [0, 4493, 89, 4548, 22205, 28119, 3824, 91, 3904, 972, 2780, 5162, 968, 974], + [0, 89, 38, 4082, 7433, 2602, 163], + [1, 2343, 22018], + [0, 22019, 22020, 22016, 2399], + [0, 3884], + [0, 4493, 89, 22205, 3824, 91], + [1, 2343, 22023], + "libsass", + [0, 0, 22024, 22025, 2537], + [ + 0, 1173, 1175, 1178, 1195, 24231, 24234, 1257, 1267, 1268, 1275, 1280, 1177, 1898, 1935, 1938, 1947, 1959, 2022, + 2602, 22588, 31842, 2297, 2886, 2895, 2900, 2904, 2921, 2925, 2899, 89, 3824, 3876, 3884, 3875, 32020, 32023, + 32026, 2924 + ], + [0, 89, 3875, 38], + [1, 2343, 22028], + [2, 705, 1153], + [0, 22029, 6230, 2514, 2537], + [ + 0, 1324, 1192, 1759, 1177, 4135, 3561, 3742, 814, 2924, 2151, 2154, 1420, 1193, 1628, 53, 2092, 4111, 4383, + 1195, 1393, 2797, 4307, 841, 1763, 3878, 3618, 3816, 3647, 4230, 2686, 3672, 3803, 4028, 4681, 2651, 2802, + 24732, 4409, 1270, 3605, 4723, 1898, 3177, 4686, 1630, 1216, 1426, 24723 + ], + [1, 2343, 22032], + "sauce-tunnel", + [0, 22036, 22038, 22039, 2443], + [3, 2311, 11], + "-tunnel", + [2, 22033, 22034], + [0, 97, 7931, 7948, 8181, 4808, 3145, 3744, 3911, 8187], + "yui", + [0, 11931, 1843, 8160, 11875, 89, 3824], + [0, 32039, 1669, 6847, 32040, 89, 5128, 1631, 181], + [1, 2343, 22041], + [0, 22042, 22043, 22044, 2523], + [0, 1461, 32046, 3029, 4023], + [ + 0, 48, 53, 68, 61, 85, 87, 90, 28598, 968, 972, 974, 4874, 1165, 1175, 1193, 1195, 1261, 1628, 1699, 1700, 1859, + 1177, 1938, 1959, 2026, 32049, 2323, 2494, 2675, 1192, 2780, 2820, 2843, 2990, 3459, 3618, 1894, 3775, 89, 3824, + 3957, 4193, 32051, 4307, 4537, 2924, 4677, 4681, 32052 + ], + [0, 11167, 32054, 32055, 32056, 31512, 5128], + [1, 2343, 22046], + [0, 22047, 22048, 22049, 2523], + [ + 0, 32061, 4889, 32062, 1082, 15128, 1145, 12184, 1397, 1465, 5386, 1497, 32063, 1584, 1593, 19526, 32064, 1863, + 1874, 1875, 2007, 29067, 7076, 32067, 7610, 2070, 32068, 2570, 2745, 32070, 32071, 32072, 32076, 32080, 32081, + 32084, 32085, 2929, 32086, 1209, 21641, 3120, 32087, 6041, 3467, 3725, 3744, 32088, 32089, 3816, 3822, 32091, + 32095, 32097, 3839, 12438, 3930, 3984, 32098, 4409, 19650, 32099, 4555, 4681, 4689 + ], + [ + 0, 48, 53, 61, 87, 14128, 90, 92, 968, 972, 32102, 32104, 31669, 32107, 1006, 32109, 5087, 32112, 4870, 32114, + 4874, 8149, 4880, 4883, 32116, 32118, 4891, 32120, 8157, 1009, 1011, 1175, 1178, 1193, 1195, 1628, 31058, 32121, + 32123, 32124, 1177, 32126, 1915, 1924, 1938, 1947, 1959, 2092, 2151, 2675, 1192, 32129, 2990, 3144, 1894, 3775, + 89, 3824, 3904, 32130, 4307, 91, 4027, 2924, 4677 + ], + [0, 89, 1219, 6718, 25172, 1745, 1739, 1179, 4627, 4963], + [1, 2343, 22051], + [0, 22056, 22059, 22063, 2537], + "sprit", + "esheet-templates", + [2, 22052, 22053], + "sprites", + [0, 97, 955, 5090, 3744], + "spritesmith", + "url2", + [ + 0, 53, 83, 87, 90, 442, 15288, 5583, 811, 816, 6373, 10615, 972, 5087, 13204, 4874, 4880, 4883, 7749, 1251, + 11890, 1177, 1895, 1959, 1961, 10964, 2203, 1192, 2780, 3297, 3401, 1894, 89, 3824, 4042, 4167, 4172, 11803, + 4468, 4474, 91, 4523 + ], + [3, 21470, 15], + "wolfson", + [2, 22060, 22061], + [0, 965, 1936, 11806, 11807, 5284, 89, 32142, 8221, 32145, 91], + "foundry", + "-release-git", + [2, 22064, 22065], + [3, 22066, 16], + [2, 22067, 3378], + [1, 2343, 22070], + [0, 22073, 0, 22076, 2487], + "get-pixels", + "gmsmith", + [0, 2081], + "sprite", + [3, 22054, 11], + [0, 32151, 89, 4453, 1702, 32152, 3899], + [1, 2343, 22078], + [0, 22079, 0, 22080, 4139], + [0, 3847, 4116], + [0, 89, 3857, 32162], + [2, 17566, 200], + [1, 2343, 22083], + [0, 6234, 22084, 22085, 2523], + [ + 0, 32167, 27742, 549, 963, 4874, 4880, 4883, 1030, 1596, 1651, 8540, 2990, 3561, 1894, 89, 3824, 4493, 91, 1983, + 32170 + ], + [0, 89, 9044, 11000, 5128, 3906, 6645, 32172, 26264, 6458], + [1, 2343, 22087], + [0, 22094, 22095, 22096, 2523], + "@npm/types", + [2, 7726, 2855], + [3, 8610, 9], + "ite-file-atomic", + [2, 22090, 22091], + [2, 16569, 1182], + [0, 32177, 32178], + [ + 0, 1317, 1389, 1408, 1506, 32180, 5669, 1839, 32181, 1859, 1177, 19896, 2228, 2240, 25074, 2247, 18461, 2256, + 2273, 32183, 25060, 32186, 2774, 3460, 3521, 12344, 32188, 3930, 22031, 4449, 91, 4535, 31135, 4652 + ], + [0, 89, 1219, 8535, 6624], + [1, 2343, 22098], + [0, 22103, 0, 22104, 2399], + "@guarapi/eslint-config-guarapi", + [2, 8711, 93], + [3, 5542, 13], + [2, 22101, 3312], + [0, 97, 1751, 3082, 3744], + [0, 89, 9944, 19102, 32195, 7521, 1623, 32196], + [1, 2343, 22106], + [0, 22107, 22108, 22111, 2487], + [0, 1497, 3744, 1751, 3082, 97, 3849], + [ + 0, 1192, 2675, 89, 2282, 1177, 4039, 4042, 1503, 3561, 2924, 2126, 2193, 1894, 1610, 2700, 3758, 3824, 48, 1193, + 1505, 1628, 53, 2092, 2990, 3566, 4677, 1165, 1178, 1195, 3720, 3884, 4307, 3618, 85, 29945, 32207, 3885, 87, + 14128, 18229, 4681, 90, 32203, 1922, 1959, 32205, 2651, 3904, 4045, 4077, 32202, 4069, 1895, 1935, 1947, 1955, + 4055, 32206, 4067, 2054, 8229, 83, 14132, 28972, 61, 5241, 1251 + ], + "undertaker", + "glob-watcher", + [0, 89, 6071, 5128, 4607, 3392, 32209, 32210, 3912, 176, 32211, 10345, 9320, 15182, 10052, 21604], + [1, 2343, 22113], + [0, 22116, 22117, 22118, 2399], + "series", + "streaming", + [0, 4430, 3909], + [0, 2899, 2272, 4135, 15052, 1389, 1537, 32218], + [0, 89, 1389, 14927, 1219, 676, 1932, 353], + [1, 2343, 22120], + [0, 22121, 22123, 22124, 2523], + [0, 97, 6372, 1461, 3744, 32225, 3911], + "gulp-footer", + [ + 0, 48, 53, 68, 73, 76, 78, 5241, 87, 90, 10821, 10825, 10828, 32229, 10837, 968, 972, 974, 4880, 1178, 1193, + 1195, 1270, 1367, 1540, 1567, 25901, 1610, 32231, 1787, 1797, 1177, 1879, 1895, 1935, 1938, 1947, 1959, 10851, + 32233, 1192, 2780, 2832, 2843, 3165, 1894, 89, 3824, 3830, 32236, 3884, 3904, 91, 2924 + ], + [0, 3916, 1367, 89, 4627, 4963, 5128, 181], + [1, 2343, 22128], + "html2js", + [2, 1283, 2325], + [0, 22129, 22130, 2514, 2537], + [0, 8612], + [0, 9516, 9515, 8608, 13680, 1011, 1414, 1915, 4384, 4474, 4483, 91], + [1, 2343, 22132], + [0, 22134, 11332, 22135, 4139], + "gulp-symdest", + [0, 18186, 18183, 16474, 4507, 20789], + [0, 1781, 3917, 1644, 2090, 2150, 30135, 3001, 3383, 3374], + [1, 2343, 22138], + "atom-shell", + [0, 22139, 8134, 22140, 2537], + [0, 30055, 3919, 4507], + [ + 0, 1781, 3917, 1644, 2090, 2150, 30135, 3001, 3383, 2100, 2104, 2105, 7076, 6614, 6605, 7193, 3529, 814, 5933, + 7029, 6857, 7204, 4647, 6821, 3403 + ], + [1, 2343, 22142], + [0, 22143, 22144, 22148, 34352], + [0, 1079, 1398, 2018, 3729, 15042], + [ + 0, 53, 14170, 13051, 19181, 811, 15460, 816, 826, 1389, 1414, 668, 32258, 1177, 1903, 1938, 1953, 1958, 3541, + 1894, 4042, 23652, 4384, 32262, 4389, 4390, 4548, 2924, 4677 + ], + "prefixes", + [3, 3674, 9], + [2, 22146, 8736], + [0, 7017, 3101, 7170], + [1, 2343, 22150], + [0, 0, 22151, 22152, 4139], + [0, 4384, 2685], + [0, 3925, 32271, 2090], + "lodash.chunk", + [1, 2343, 22155], + [0, 0, 0, 22158, 34352], + "-transform", + [2, 13792, 22156], + [0, 3925, 31360, 24095, 3741, 8631, 6875, 200, 6621, 1523, 32276, 8652, 6703, 1359], + [1, 2343, 22160], + [0, 8856, 7938, 7939, 2523], + [1, 2343, 22162], + [0, 22163, 22165, 22169, 2523], + [0, 12184, 2003, 4227, 32284, 4484], + "b", + [0, 53, 58, 87, 32287, 4865, 6503, 4874, 1011, 1177, 19896, 32288, 2070, 2990, 2899, 1894, 24209, 91], + "storage-blob", + [2, 13444, 22166], + [2, 12694, 14922], + [0, 6892, 22179, 32291, 5061, 5341, 22180, 7119, 32293], + "streamifier", + [1, 2343, 22172], + [0, 8029, 7938, 7939, 4139], + [1, 2343, 22174], + [0, 22175, 14066, 22176, 2537], + [0, 814], + [0, 3209, 1194, 7188, 19101, 32302], + [1, 2343, 22178], + [0, 22182, 0, 22183, 2537], + "rewriting", + [3, 12348, 14], + "desugaring", + [0, 97, 32307, 2081, 2609, 3849, 5513], + [0, 89, 6734, 4963, 32310, 6081, 6731, 32312], + [1, 2343, 22185], + [0, 13856, 7923, 22186, 4139], + [0, 7204, 32318], + [1, 2343, 22191], + "utf-8", + "add", + "prepend", + [0, 22192, 0, 22193, 2487], + [0, 32325, 32327, 32329, 32330, 32333], + [0, 1552], + [1, 2343, 22195], + [0, 22196, 22199, 5885, 2399], + [ + 0, 6327, 8111, 3127, 8114, 3725, 4213, 3555, 1757, 1461, 3191, 3744, 8122, 8123, 8113, 8127, 2017, 8116, 3502, + 8126, 8119, 32343 + ], + "decov.io", + [2, 2364, 22197], + [ + 0, 3775, 1002, 1192, 3190, 2675, 89, 4484, 1843, 1177, 4039, 1593, 1651, 2822, 3471, 4167, 4468, 4474, 8166, + 2924, 1894, 3824, 1628, 4201, 91, 4856, 5087, 8144, 4874, 8165, 4677, 4880, 4892, 3720, 4307, 4863, 8147, 8146, + 8149, 8155, 4891, 8160, 8161, 8163, 10875, 8136, 4883, 5090, 4315, 8157, 1311, 4681, 8141, 1584, 1959, 2651, + 1938, 8139, 2780, 4693, 8152, 1011, 1961, 1567, 8129, 2135, 1009, 32341 + ], + [1, 2343, 22201], + [0, 22202, 22203, 22204, 2537], + [0, 32353, 32351], + [0, 89, 2924, 3824, 91, 4880, 4883, 32359, 32358], + [0, 3939, 3452, 5592, 8124, 1745, 32361, 467, 32363], + "wireit", + [1, 2343, 22207], + [0, 0, 22208, 22209, 2523], + [ + 0, 53, 4874, 1009, 1011, 1610, 10888, 1177, 1898, 1915, 1938, 1959, 1961, 2070, 32368, 1894, 4039, 4094, 4493, + 91, 1984 + ], + [0, 3875, 6696, 6649, 6788, 6564, 2700, 6609, 2998, 6596, 2130, 6891], + [1, 2343, 22211], + [0, 22212, 22213, 22214, 2523], + [0, 32376, 32378], + [0, 32380, 32383, 32385, 2675, 2990, 3400, 1894, 1983, 1984, 1906], + [0, 2130, 3875, 27106, 10820], + [1, 2343, 22216], + [0, 22219, 22221, 22224, 2523], + "bump-regex", + "plugin-log", + [0, 1209, 3847, 1860, 2731, 2752, 3744, 97, 2609], + "versioning", + [ + 0, 4449, 1192, 2675, 89, 3875, 1177, 4039, 1503, 2924, 2126, 1894, 1610, 2700, 3824, 48, 1693, 4201, 53, 32392, + 2990, 3876, 4677, 1178, 1195, 32394, 87, 90, 1210, 1922, 1959, 10623, 3904, 1938, 32385, 32393, 1935, 1947, + 1898, 4676, 1961, 5535, 31393, 83, 61, 5240 + ], + "gulp-version", + [3, 2476, 11], + [0, 89, 6071, 2130, 3875, 3876, 3945, 1669, 4636], + [1, 2343, 22226], + [0, 22227, 22231, 22232, 2487], + [0, 1688], + "swap", + "cache-swap", + "object.pick", + [ + 0, 1175, 1203, 29775, 1267, 1429, 1503, 1177, 1879, 1938, 1947, 1959, 2665, 2675, 2899, 3421, 3875, 4039, 4042, + 4045, 4055, 4067, 4077, 4193 + ], + [0, 3875, 2942, 3946, 2663], + [1, 2343, 22234], + [0, 22235, 22236, 22237, 2399], + [0, 32408], + [0, 53, 83, 85, 87], + [0, 5284, 3875, 2663, 3947, 32416, 32418], + [1, 2343, 22239], + [0, 0, 22240, 22241, 2523], + [0, 1009, 1011, 1610, 1177, 1895, 1894, 3875, 4039, 4493, 91, 1984], + [0, 3875, 3949, 2663, 32425, 2130], + "file-e", + [1, 2343, 22247], + "xtension", + [2, 22242, 22244], + [2, 17355, 22245], + [0, 0, 22248, 22250, 2537], + [0, 4856, 6503, 4874, 1429, 1700, 32431, 2323, 32433, 32435, 2463, 2494, 32436, 2524, 2899, 91], + "changed", + [0, 4636, 6774, 5284, 19080], + "modified", + [1, 2343, 22256], + "modification", + "mtime", + "passthrough", + [0, 0, 22257, 22258, 4139], + [0, 1503, 2228, 2314, 2759, 14529, 3774, 4019], + [0, 1108, 6961, 5284, 3656, 1179, 4990], + [1, 2343, 22260], + [0, 0, 0, 22261, 2537], + [0, 5659, 7047, 1179, 1149], + [1, 2343, 22263], + [0, 22264, 0, 22265, 2487], + [0, 12396, 3971, 3978, 4549], + [0, 32452, 6892, 1936, 1644, 3729, 3958, 4141, 1646, 5341, 1633, 4549], + [1, 2343, 22267], + [0, 22268, 22269, 22270, 2523], + [0, 12396, 23247, 9401, 12421, 4549, 4555], + [0, 4874, 23262, 1414, 32460, 1894, 3958, 3985, 3998, 4505, 91, 1906], + [0, 4549, 3958, 32462, 1932, 156, 163, 1936], + [1, 2343, 22272], + [0, 22273, 22274, 22275, 2537], + [0, 12396, 23247, 12421, 32467, 4233, 4555], + [0, 4874, 23262, 1414, 1894, 3958, 3985, 3998, 4505, 91, 1906], + [0, 4549, 3958, 32462, 1932, 2587, 1936, 1783, 11052, 163, 1002], + [1, 2343, 22278], + "jshint-", + [0, 22281, 22282, 22283, 2443], + "reporter-jscs", + [2, 22277, 22279], + [0, 12396, 32481, 3137, 12127, 12133, 4549, 12447], + [0, 9311, 4874, 4880, 1414, 1177, 27706, 1947, 1959, 23312, 1894, 3985, 27711, 32484, 91], + [0, 2587, 1936, 1783, 9102, 3958, 32462, 4549], + [1, 2343, 22285], + [0, 22286, 0, 22287, 2523], + [0, 12396, 23276, 4549], + [0, 32452, 6892, 1936, 1644, 1932, 3958, 32462, 5341, 1633, 4549], + [1, 2343, 22289], + [0, 22290, 22297, 22298, 4139], + [0, 12396, 2572, 12449], + [3, 19569, 12], + "rework", + "rework-import", + "rework-", + "plugin-url", + [2, 22294, 22295], + [0, 4874, 1414, 1894, 3978, 3985, 3992, 3998, 3999, 4505, 91, 4549, 4555, 1906], + [0, 1936, 1932, 3972, 3958, 32462, 4549], + [1, 2343, 22300], + [0, 22301, 22302, 22305, 2537], + [0, 12396, 7610, 9401, 2584, 4555], + [0, 4874, 1414, 1894, 3958, 3985, 3998, 4505, 91, 1906], + "slush", + "dest", + [0, 156, 1936, 3265, 1932, 3958, 32462, 3974, 4549], + "conflict", + [1, 2343, 22308], + [0, 22309, 0, 22310, 2487], + [0, 12396, 2581, 4549], + [0, 32452, 6892, 7234, 1936, 1932, 3958, 32462, 4141, 1646, 5341, 1633, 4549], + [1, 2343, 22312], + [0, 22314, 22315, 22317, 2523], + "webserver", + [ + 0, 22353, 692, 29431, 1154, 15444, 1458, 7614, 9322, 2720, 32513, 3060, 3173, 29024, 3445, 3467, 6331, 20921, + 4135, 27921, 4548, 4566, 32514, 4748 + ], + [0, 442, 32523, 4874, 1177, 32525, 2203, 17529, 2931, 29442, 32519, 1894, 3985, 32522, 4390, 91], + "hyperlink", + [ + 0, 6147, 13729, 1528, 32528, 3358, 2195, 17978, 24095, 15656, 3378, 20001, 6645, 3979, 3980, 18157, 1508, 4166, + 10381, 4990, 15525, 4135, 1932 + ], + [1, 2343, 22319], + [0, 22320, 22321, 22322, 2537], + [0, 2759, 3181, 3544, 4227, 4431], + [0, 1177, 1881, 1938, 2228, 2323, 17121, 4039], + [0, 18444, 21779, 4227, 2759, 4504], + [1, 2343, 22325], + "csscomb", + [0, 22326, 0, 22327, 2537], + [0, 4549, 9363, 3992, 13124], + [0, 32452, 6892, 7234, 1783, 26564, 1644, 3729, 3984, 4141, 1646, 5341, 1633, 4549], + [1, 2343, 22329], + [0, 22330, 0, 22332, 2443], + [0, 5210, 32544, 3984, 32545], + "rcloader", + [0, 20052, 200, 1783, 26564, 3984, 4549], + [2, 21861, 2838], + [2, 15526, 2063], + [1, 2343, 22336], + [0, 22337, 22338, 22339, 2399], + [0, 9363, 27008, 27010, 3992, 13124, 4549], + [0, 4874, 1414, 32460, 1894, 3984, 3985, 3998, 4290, 18071, 4505, 91, 1906], + [0, 26072, 26766, 3987, 2195, 1783, 26564, 1932, 3984, 32553, 12994, 176, 9000, 4549], + [1, 2343, 22341], + [0, 22342, 22343, 22344, 2537], + [0, 9363, 2575, 3140, 2581, 4549], + [ + 0, 12396, 4874, 1414, 26992, 23276, 1894, 3985, 9340, 3988, 10630, 3992, 3998, 32560, 10632, 4505, 91, 12449, + 1906 + ], + [0, 7234, 1936, 1783, 26564, 1932, 3984, 32553, 1646, 4549], + [1, 2343, 22346], + [0, 22347, 22348, 22349, 34352], + [0, 12449, 4549, 9363, 32568, 12447, 32567], + [0, 1414, 1177, 3984, 1894, 3541, 3985, 91, 12396, 3999, 3978, 32484, 27706, 27711], + [0, 1745, 25131, 3990, 1932, 3984, 32553, 4549], + [1, 2343, 22351], + [0, 22352, 0, 22354, 2523], + [0, 9363, 3137, 26987, 4549], + "@nodeutils/defaults-deep", + [0, 32452, 6892, 1783, 26564, 1644, 1932, 3984, 32553, 5341, 1633, 4549], + [1, 2343, 22356], + [0, 22357, 22358, 22359, 34352], + [ + 0, 32582, 32584, 3988, 32587, 32591, 23059, 23065, 23070, 23075, 23078, 32593, 23080, 32595, 23082, 32599, + 32601, 32606, 32609, 23098, 32613, 23113, 32617, 32620, 32626, 32629, 32631, 32636, 23118, 32638, 32640, 32646, + 32651, 32654, 32656, 32658, 32664, 23128, 23133, 23136, 32667, 23139, 23141, 11382, 32668, 10632, 32669, 32672, + 4549 + ], + [0, 192, 5467, 1177, 1909, 2114, 2675, 2990, 1894, 3985, 1906], + [0, 2195, 16342, 3984], + "from2-string", + "@shi", + "nnn/eslint-config-node", + [2, 22361, 22362], + [1, 2343, 22366], + "warnings", + [0, 22367, 22368, 22369, 2537], + [ + 0, 32582, 3988, 10630, 23059, 23065, 23070, 23075, 29079, 23078, 29082, 32593, 23080, 32595, 23082, 32599, + 32601, 32606, 23092, 32609, 32681, 32686, 32689, 29091, 29097, 29100, 29132, 29143, 29147, 29149, 32613, 32692, + 23113, 32696, 32617, 32699, 32620, 32626, 32629, 32631, 32636, 23118, 32638, 32703, 29151, 32705, 32646, 32651, + 32707, 32710, 32654, 32656, 32658, 32715, 32717, 32664, 23128, 23133, 23136, 32667, 23139, 23141, 11382, 32668, + 13124, 10632, 23143, 32669, 32719, 4290, 4549 + ], + [0, 1894, 3985, 4505, 91, 1906], + [0, 16342, 3984, 3997], + "-match", + [2, 7534, 22370], + "flatnest", + [1, 2343, 22374], + [0, 22376, 22377, 22383, 4139], + "@type-challenges/utils", + [0, 12396, 9363, 3140, 4549, 12449], + [0, 4874, 1414, 1894, 3975, 3978, 3985, 3992, 3998, 13124, 4505, 91, 1906], + [2, 29833, 2658], + [2, 3101, 7131], + "to-a", + "bsolute-glob", + [2, 22380, 22381], + [0, 2587, 1936, 1783, 26564, 1932, 32462, 3958, 32553, 3984, 4549], + [1, 2343, 22385], + [0, 22386, 22387, 22388, 2487], + [0, 1139, 32732], + [0, 1111, 1317, 20627, 1177, 1926, 1999, 2398, 2600, 3127, 2899, 3421, 4042, 4058, 4067, 4073, 4146], + [0, 20627, 1783, 5980, 1644, 57, 3729, 4001, 8924, 3902, 2585], + [1, 2343, 22391], + "divide", + [0, 0, 14066, 22393, 2523], + "separate", + [0, 2323, 19101, 17996, 8297], + [1, 2343, 22395], + [0, 22396, 22397, 22398, 2537], + [0, 1437, 2070, 4747], + [0, 442, 1414, 1429, 1431, 1177, 2899], + [0, 4068, 2585, 16504, 2090], + [1, 2343, 22400], + [0, 22401, 22403, 22404, 2399], + [ + 0, 3763, 29749, 3348, 2051, 32749, 15057, 32751, 2139, 3173, 32753, 4100, 4454, 32754, 32756, 32757, 32758, + 32759, 21144, 3518, 2854 + ], + [2, 3715, 4001], + [ + 0, 3421, 4389, 2297, 32761, 4039, 1503, 1362, 4255, 1596, 32762, 19946, 1389, 1400, 14038, 2886, 4153, 2871, + 3524, 21146, 2906 + ], + [0, 27, 2869, 614, 6435], + "prettify", + [1, 2343, 22407], + [0, 22408, 22409, 22411, 2537], + [0, 1362, 4454, 32768, 32770], + [0, 1429, 2323, 1437, 1209, 4039, 705, 2463, 1364, 2384, 4089, 2436, 27608, 3753], + "jsftp", + [0, 4731, 27, 2671, 1862, 705, 21244, 32773, 1362], + "jsftp-mkdirp", + [1, 2343, 22415], + "ftp-test-server", + [0, 22416, 22417, 22418, 34352], + [0, 32770, 32768, 4454], + [0, 1364, 1429, 1437, 2323, 27608, 2384, 2436, 2463, 1209, 3753, 705, 4039, 4089], + [0, 4731, 27, 2671, 1862, 705, 21244, 32773, 970], + [1, 2343, 22421], + "gift", + [0, 0, 22423, 2514, 2399], + "wrap-promise", + [0, 4474, 91, 1506], + [1, 2343, 22429], + "octonode", + [3, 8304, 11], + [2, 15034, 22426], + [2, 22363, 1231], + [0, 0, 22431, 22432, 2537], + "branch", + [0, 6637], + [0, 3209, 4017, 32792], + [1, 2343, 22434], + [0, 0, 22441, 22442, 2523], + "any-", + [2, 5124, 1867], + [2, 22435, 22436], + [3, 21732, 13], + "eam", + [2, 22438, 22439], + [ + 0, 810, 972, 4870, 4880, 4883, 7749, 1009, 32801, 1011, 32804, 1177, 1959, 32805, 2832, 1209, 3057, 3145, 32807, + 32368, 1894, 89, 3824, 3876, 4039, 4167, 4493, 91, 1984 + ], + [0, 89, 3875], + "gulpgit", + [1, 2343, 22445], + [0, 0, 22446, 22447, 2537], + [0, 1178, 1597, 1177, 2765, 2766, 2297, 2881, 2895, 2898, 6387, 2910, 2915, 2921, 2923, 3734, 4042, 4075, 91], + [0, 32814, 24800, 31767, 614, 5576, 1388, 6422, 6805], + [3, 6530, 10], + [2, 22448, 4552], + [1, 2343, 22452], + "nid", + [0, 22453, 22454, 22455, 2399], + [0, 32820, 17501, 32824], + [0, 15221, 4384, 4449, 4389, 1796, 1177, 3188, 4039, 4135, 32826, 3410, 2708, 3433, 20492, 4103, 13614], + [0, 814, 3209, 202, 1237], + [1, 2343, 22457], + [0, 0, 8134, 22459, 2523], + "gulp-de", + [0, 3209, 814, 3403, 1237, 7115, 15403, 1204], + "gulp-declare", + [1, 2343, 22464], + "fine-module", + [2, 22458, 22462], + [0, 22467, 0, 22468, 2399], + "gulp-wrap", + "nsdeclare", + [0, 32836, 1573, 3008, 3561, 4227], + [0, 2924, 1194, 1623, 3374, 9345, 814, 1002, 2278, 10903, 2090], + [1, 2343, 22470], + [0, 22471, 22472, 22473, 2523], + [0, 32842, 8098, 2151, 2036, 2822, 32843, 3348], + [ + 0, 48, 53, 13693, 61, 71, 78, 13051, 85, 87, 97, 192, 6298, 6061, 6063, 1166, 1170, 1178, 1208, 1212, 1364, + 1429, 16311, 1596, 31058, 1687, 8942, 1177, 32848, 32850, 1938, 1948, 1951, 32852, 1954, 1958, 1964, 32855, + 1966, 1969, 1982, 2026, 32856, 2675, 2824, 2848, 3019, 2899, 3200, 32858, 3421, 4131, 32860, 4342, 32861 + ], + [0, 8623, 1118, 1179, 1745, 32864, 6533, 32867, 4030, 5592, 27], + [1, 2343, 22476], + "eventstream", + [0, 22477, 22478, 22479, 2537], + [ + 0, 3763, 1641, 32874, 3171, 3441, 3533, 710, 32876, 3348, 1209, 4135, 4591, 30107, 3084, 2141, 12627, 1147, + 20412, 32759, 32875, 15220, 32873 + ], + [ + 0, 3421, 3467, 1429, 2070, 2899, 4193, 1177, 3188, 4039, 2720, 2276, 1894, 1596, 1155, 32883, 20441, 3697, 3752, + 1745, 32881, 32878, 1942, 1895, 1955 + ], + [0, 8173, 5130, 2026, 32885], + [1, 2343, 22482], + [2, 11941, 1596], + [0, 22483, 9888, 2514, 2537], + [0, 3763, 4734, 4745, 2685], + [1, 2343, 22485], + [0, 22486, 22487, 22488, 4139], + [0, 21420, 4174], + [0, 4481, 1906], + [ + 0, 2021, 32896, 3729, 30135, 32897, 7226, 6689, 32899, 32900, 24601, 200, 13006, 1111, 15814, 6048, 7009, 7201, + 6621, 4166, 6876 + ], + "htm", + [1, 2343, 22491], + [0, 22492, 0, 22493, 4139], + [0, 1362], + [0, 18035, 32906, 32907, 32909], + [1, 2343, 22503], + "gulp-spawn", + [2, 22501, 33473], + "gulp-svg2ttf", + "2svgfont", + [2, 45, 22498], + [2, 2518, 22499], + [3, 29059, 12], + "gulp-ttf2eot", + [0, 0, 22506, 2514, 2523], + "gulp-ttf2woff", + [2, 22504, 1276], + [0, 21147, 2759, 4389], + "@types/gulp", + [1, 2343, 22513], + "metapak", + "-nfroidure", + [2, 22509, 22510], + "streamtest", + [0, 22514, 22515, 22516, 2523], + [0, 1177, 5896], + [0, 4874, 2025, 2899, 3421, 4474, 91], + [0, 7190, 14419, 3212, 1858, 1237, 2275, 1973, 27916, 3430, 21147, 3209], + [1, 2343, 22520], + "gulp-match", + "ternary-stream", + [0, 0, 22523, 22526, 2537], + "exhaust", + [2, 4279, 22521], + [0, 5898, 1503, 6618, 6786, 30025, 32925, 3028, 32927, 32930, 3776, 4255, 4384, 4481], + "if", + "ternary", + [ + 0, 3048, 7002, 3583, 1496, 1585, 1697, 6899, 6803, 3432, 6693, 3743, 7098, 6638, 6618, 7167, 2062, 6681, 6856, + 6986, 7035, 6648, 7284, 6786, 6670 + ], + [1, 2343, 22528], + [0, 22529, 22530, 22531, 2537], + [0, 2070, 21510], + [0, 4874, 3188, 1894, 4384, 4483, 4508], + [0, 6790, 7218, 6610, 7293, 7204, 200, 7074, 6899], + [1, 2343, 22533], + [0, 22534, 22535, 22537, 2537], + [0, 3263, 8248, 32944], + [0, 2765, 32942, 32947, 32949], + "gulp-gm", + [0, 32951, 27747, 29002, 8652, 12197, 158, 32952, 28125, 4041, 13008, 32954, 32956, 32959, 32961, 1473], + [1, 2343, 22539], + [0, 12881, 22540, 22541, 2537], + [ + 0, 16003, 32967, 16005, 16002, 16000, 15999, 442, 8998, 5012, 25130, 11536, 8862, 15134, 811, 8850, 816, 6373, + 10615, 10817, 10895, 32970, 6503, 4874, 20374, 5254, 21626, 21830, 1082, 32971, 15128, 1397, 1405, 1457, 1540, + 1593, 1610, 32972, 1859, 1866, 1177, 1895, 1955, 1982, 1988, 2116, 32973, 2151, 10754, 2203, 2675, 10898, 2990, + 10902, 3090, 3144, 2899, 3363, 22496, 3421, 5561, 3527, 3530, 32977, 1894, 3706, 3714, 3718, 4019, 4042, 4060, + 4135, 4172, 4174, 4227, 4232, 4376, 4072, 4484, 91, 4523, 1983, 4614, 188, 4630, 13151, 32979, 4748 + ], + [0, 5260, 6996, 6903, 5194, 6708], + [1, 2343, 22543], + [0, 22544, 22545, 22546, 2537], + [0, 5652, 4081], + [0, 53, 8229, 71, 83, 87, 1397, 1177, 1895, 1955, 2675, 2990, 2899, 1894, 4042, 4048, 4058, 4227, 4232], + [0, 4080, 1172, 6778, 5194], + [1, 2343, 22548], + [0, 22549, 22550, 2514, 2443], + [0, 1397, 4081], + [0, 1177, 2899, 4042], + [1, 2343, 22552], + [0, 22553, 22554, 22556, 2523], + [0, 32998, 4081], + [0, 15134, 1177, 2022, 2899, 3421, 4039, 4042, 33001, 33002], + "group-array", + [0, 4042, 4080, 5284, 5194, 5260, 4298, 33005, 4051], + "strip-color", + [3, 5467, 19], + [2, 22558, 1098], + [1, 2343, 22563], + [2, 5376, 591], + [3, 10705, 13], + [0, 22564, 22565, 2514, 2537], + [0, 2007, 10898, 3090, 814, 4081], + [ + 0, 53, 87, 94, 1082, 1177, 1938, 2675, 2990, 10902, 2899, 1894, 10904, 4042, 4045, 4058, 4067, 4172, 4227, 4232, + 91 + ], + [1, 2343, 22567], + [0, 22569, 22570, 22571, 2537], + "inline-css", + [0, 3090], + [0, 51, 19861, 33017, 1006, 4874, 4880, 1414, 4042, 91], + [0, 4080, 91, 4056, 1007], + [1, 2343, 22573], + [0, 22574, 22577, 2514, 2443], + [0, 4081], + "lodash.g", + [2, 22575, 19530], + [0, 1177, 1938, 2675, 2990, 2899, 1894, 4042, 4048, 4067, 4232], + [1, 2343, 22579], + [0, 22580, 22581, 22582, 2523], + [0, 33028, 20378, 1209, 3090, 3220, 33029, 33031, 33036], + [ + 0, 53, 87, 94, 5583, 811, 816, 8661, 1009, 1011, 1104, 1198, 1177, 1881, 1938, 2061, 2151, 29406, 2323, 33038, + 2441, 2765, 2766, 1894, 4039, 4042, 27720, 33042, 4449, 91 + ], + [0, 4042, 4080], + [2, 17487, 8162], + [2, 11941, 22583], + [1, 2343, 22586], + [0, 22587, 22589, 22591, 2487], + [0, 33048, 33051, 1618, 33052], + "isparta", + [0, 24235, 1676, 2899, 4042, 4045, 4066, 4146], + "unit test", + [0, 4080], + [1, 2343, 22593], + [0, 22594, 22597, 22591, 2487], + [0, 1082, 33051, 2007, 3090, 33052, 4081], + [2, 34675, 22596], + "-links-validator", + [0, 1175, 1264, 1389, 1192, 3188, 2899, 4039, 4042, 4045, 4067], + [1, 2343, 22599], + [0, 22600, 22603, 22604, 2523], + [0, 5251, 1405, 10912, 814, 4081], + [2, 4402, 16237], + [2, 2767, 22601], + [0, 53, 87, 94, 1856, 1177, 2899, 4042, 4045, 4055, 4058, 10916, 91], + [0, 4042, 4080, 6778, 3378, 5260], + [1, 2343, 22606], + [0, 22607, 22608, 22604, 34352], + [0, 3090, 4081], + [0, 1177, 1938, 2675, 2990, 10902, 2899, 1894, 4042, 4048, 4172, 4227, 91], + [1, 2343, 22610], + [0, 22611, 22612, 22613, 2399], + [0, 10895, 16799], + [0, 10817, 4874, 1009, 1011, 1177, 1895, 1955, 1192, 1894, 4039, 4042, 4468, 91], + [0, 4042, 4080, 12938, 4227, 33078], + [1, 2343, 22615], + [0, 22616, 22617, 22618, 2487], + [0, 51, 2805, 4143, 4072], + [0, 53, 1192, 1894, 4042], + [0, 4042, 4080, 4072, 3178], + [1, 2343, 22620], + [0, 22621, 22622, 22623, 2523], + [0, 814, 4081], + [0, 1397, 1177, 2899, 4039, 4042, 4048, 4055, 4484, 91], + [0, 4080, 91, 6778], + [1, 2343, 22625], + [0, 22626, 22627, 22628, 2537], + [0, 10895, 2102, 2151, 4135, 4484], + [ + 0, 11893, 811, 816, 33097, 4864, 33099, 5087, 4870, 4874, 8860, 5254, 1009, 1011, 1512, 1177, 33100, 1192, 1209, + 3429, 4039, 4042, 33101, 4076, 4468, 91 + ], + [0, 4076, 4075, 4080, 91, 6778, 4042, 3378], + [1, 2343, 22630], + [0, 22631, 22632, 22633, 2487], + [0, 51, 2805, 4143, 4535], + [0, 53, 87, 1193, 1192, 1894, 4042], + [0, 4042, 4080, 2280, 3178], + [1, 2343, 22635], + [0, 22636, 22637, 22641, 2537], + [0, 3445, 3530, 4227, 4747], + [ + 0, 811, 816, 10615, 10817, 5364, 33115, 33116, 33118, 33120, 33121, 33123, 4874, 20374, 4892, 1413, 1654, 14674, + 17086, 17091, 1655, 1660, 1701, 3400, 30889, 3561, 16578, 3698, 1894, 28865, 4042, 10854, 2278, 4484, 91, 1983, + 1984 + ], + "array-unique", + "gulplog", + "has-gulplog", + [0, 4080, 4078, 11996, 33126, 33127, 33129], + "capture-", + [2, 22642, 3101], + [1, 2343, 22645], + [0, 22646, 22647, 22648, 2523], + [0, 2007], + [0, 1006, 5087, 8778, 4874, 2675, 1192, 2990, 3170, 1894, 4042, 4055, 4067, 4075, 4172, 4468, 4487, 91, 19545], + [0, 4042, 594], + [2, 4599, 3101], + [1, 2343, 22652], + [2, 19984, 1276], + [0, 0, 22653, 2514, 2523], + [0, 1389], + [1, 2343, 22655], + [0, 22656, 22657, 22658, 2399], + [0, 33145, 8712, 1410, 1423, 2215, 3561, 4232, 4317, 33146, 1835, 4164], + [ + 0, 33152, 51, 53, 68, 5216, 61, 76, 14160, 78, 33153, 81, 5715, 4851, 5241, 83, 87, 90, 92, 97, 101, 104, 33156, + 33158, 33159, 33162, 8317, 8755, 554, 617, 33165, 33167, 33170, 33172, 33173, 13471, 8648, 842, 11534, 33174, + 33176, 33178, 19861, 10879, 33179, 24807, 31666, 5364, 33181, 7806, 33183, 11796, 11477, 21122, 5245, 33189, + 33191, 4865, 8780, 8264, 4870, 33193, 13057, 33195, 20374, 33197, 4880, 4883, 15606, 5254, 33198, 16149, 13214, + 23452, 11800, 9241, 20463, 13753, 1082, 33199, 31705, 1138, 1145, 1154, 33200, 20476, 1251, 15009, 1393, 1398, + 1413, 33202, 33204, 1525, 33206, 1536, 12084, 15015, 1560, 1562, 977, 1615, 1618, 11890, 16912, 16566, 1676, + 11478, 15018, 33208, 2018, 2105, 2145, 2070, 2553, 2659, 2661, 15022, 2674, 16837, 33209, 2689, 26453, 2755, + 2805, 2856, 2863, 20465, 33210, 3084, 3177, 3244, 3266, 33211, 23175, 3322, 3467, 15031, 6042, 3479, 3502, 3509, + 3530, 12344, 3605, 16840, 3638, 16841, 16842, 3672, 3676, 3678, 3688, 3729, 3757, 15033, 3784, 3878, 3957, 4111, + 4135, 710, 27062, 20508, 4165, 4227, 4230, 28512, 15039, 15040, 9221, 33212, 15042, 4294, 7080, 4390, 33213, + 4072, 4409, 4425, 15046, 15047, 11804, 33214, 614, 15048, 33215, 24739, 2924, 4729, 4763 + ], + [0, 89, 5130, 3287, 5122, 36, 202, 6400, 5995, 200, 4592], + [1, 2343, 22660], + [0, 0, 22661, 22662, 34352], + [ + 0, 14192, 1235, 14196, 14198, 19130, 14199, 14214, 14215, 14217, 1244, 1264, 19127, 18801, 18693, 1378, 1381, + 19119, 18686, 19123, 19122, 1825, 18825, 18829, 33223, 19121, 2899, 3736 + ], + [0, 19132, 6567], + [1, 2343, 22664], + [0, 22665, 22666, 22668, 2523], + [0, 25623, 3527, 3561, 4300], + [0, 1414, 2899, 4255], + "kew", + [0, 33231, 1623, 33232, 4086, 5130, 590, 1504, 26535, 6270, 353], + [1, 2343, 22670], + [0, 22671, 22672, 22673, 4139], + [0, 1437, 2061, 3544], + [0, 2323, 2899, 4170], + [0, 17461, 7170, 6769, 2323, 3468], + "treams", + [2, 6825, 22674], + "ng-annotate", + [1, 2343, 22678], + [0, 0, 22679, 22680, 2523], + [0, 1090, 4389], + [0, 22114, 1149, 3046, 7241, 14629, 18462, 4552, 33244], + [1, 2343, 22682], + [0, 0, 0, 22683, 2537], + [0, 33249, 33250, 7109, 20018, 7099, 7022], + "develop", + [1, 2343, 22686], + [0, 2513, 22688, 22689, 34352], + "restart", + [ + 0, 33256, 7, 842, 8712, 4856, 4870, 6503, 4874, 7749, 6513, 6512, 28198, 1009, 1011, 1257, 1429, 33258, 1473, + 1512, 1610, 1652, 33261, 1874, 1177, 24287, 2139, 2151, 2070, 16015, 2675, 13305, 2990, 1209, 3183, 2899, 3363, + 3400, 8967, 12344, 1894, 1862, 4042, 32414, 33263, 4067, 4167, 4172, 4193, 4196, 4232, 4376, 4474, 4487, 4490, + 33265, 33267, 33273, 91, 4585, 5573, 2924 + ], + [0, 7099, 7022, 6568, 7111, 7199, 7040, 7027, 6858, 6789, 6746], + [1, 2343, 22691], + [0, 0, 9264, 22692, 34352], + [0, 1398, 33283, 33284, 6953, 4100, 1965, 33287], + [1, 2343, 22697], + [3, 13337, 13], + [2, 6574, 22694], + "mac notification", + [0, 22698, 22700, 22701, 2537], + [0, 2708, 4135, 4747], + "notify-osd", + [0, 13614, 1158, 1159, 1796, 1177, 33293, 3421, 4389], + [0, 20001, 25816, 3378, 33295, 10381, 6953, 33297], + [1, 2343, 22703], + [0, 22707, 22708, 22709, 2537], + [3, 13107, 12], + [2, 22704, 2187], + [2, 14983, 22705], + [ + 0, 33304, 21995, 1149, 33307, 1437, 1525, 33312, 1536, 1544, 977, 1575, 1581, 29500, 1797, 2026, 2040, 33313, + 2070, 33315, 33316, 32959, 33319, 33322, 33324, 33325, 33327, 3183, 33328, 3494, 3509, 3547, 3741, 33329, 33332, + 33335, 4135, 4148, 4151, 33336, 33339, 4538, 4590, 33340 + ], + [ + 0, 1317, 1553, 1177, 2025, 2151, 33342, 2899, 3416, 3560, 33344, 33346, 33349, 33352, 33354, 33357, 4170, 4220, + 4342, 4449 + ], + [0, 33359, 33362, 2026, 33363, 33365, 8173, 8172, 3469, 4218], + [1, 2343, 22711], + [0, 22712, 22713, 22714, 2523], + [0, 33379], + [0, 4389, 1090, 33381, 1389, 1537], + [0, 2090, 1213, 33383, 2574, 2649, 1867], + "acorn-typescript", + "esrap", + [1, 2343, 22718], + [0, 22719, 22721, 22722, 4139], + [0, 1699, 1874, 2654, 2747, 33390, 3561], + "zimmerframe", + [0, 1177, 2899, 4193, 33395], + [0, 1936, 57, 18113, 2574], + [1, 2343, 22724], + [0, 22725, 0, 22730, 2523], + [0, 1457, 2700, 4228], + "ENV", + "ifdef", + "ifndef", + "echo", + [0, 590, 4329, 2278, 7121, 1623], + [1, 2343, 22732], + [0, 22733, 22734, 22736, 2523], + [0, 23175], + [ + 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 1369, 1610, 1622, 1628, 1700, 1701, 1835, 1177, 1895, 20281, 1938, + 1939, 1942, 1953, 1955, 1982, 2092, 33408, 2203, 2675, 1192, 2990, 33415, 3144, 3342, 33420, 3400, 1894, 2278, + 21688, 4135, 4257, 4307, 91, 4523, 2924, 4677, 4681 + ], + [2, 1876, 2282], + [0, 2278, 22022, 2924, 1194], + [1, 2343, 22738], + [0, 0, 22739, 2514, 4139], + [0, 1894, 4384], + [1, 2343, 22741], + [0, 22742, 22744, 22745, 34352], + [0, 33435], + "views", + [0, 33437, 1414, 33438, 1177, 1776], + [0, 2844, 1745], + "precompile", + [1, 2343, 22748], + [0, 22749, 22750, 13533, 2537], + [0, 1091, 1092, 12384, 8818], + [ + 0, 1700, 1192, 2675, 1177, 1701, 2203, 2924, 1894, 48, 442, 1193, 91, 53, 4874, 2990, 3400, 192, 1953, 27928, + 4257, 87, 1939, 1942, 1938, 20281, 1982, 1895, 1955, 19344, 5467 + ], + [1, 2343, 22752], + [0, 22754, 22755, 22756, 2523], + "src", + [0, 89, 3824, 3286], + [0, 91, 4874, 4880, 4883, 1165, 3561, 4383, 1177, 4828], + [ + 0, 33454, 33455, 2145, 12589, 1616, 33456, 12589, 5472, 20500, 33459, 1237, 33462, 33464, 12590, 33465, 27666, + 11996 + ], + [1, 2343, 22758], + [0, 22759, 0, 22760, 2523], + [0, 1821, 3299, 15160], + [0, 29395, 33471, 33472, 4126], + [1, 2343, 22763], + [2, 4068, 3101], + [0, 0, 0, 22764, 2537], + [0, 33477, 3778, 1616], + [1, 2343, 22766], + [0, 22767, 22768, 22773, 4139], + [0, 33482, 2866, 4449, 4729], + [ + 0, 442, 13838, 1177, 1895, 1951, 1953, 17303, 1955, 2026, 2203, 2564, 1776, 2899, 3200, 3246, 1894, 4150, 4193, + 4351 + ], + "modif", + "y-filename", + [2, 22769, 22770], + "rev-hash", + [0, 13428, 28522, 5472, 11132, 13841], + "rev-path", + "sort-", + "sort-keys", + [1, 2343, 22779], + "vinyl-file", + [0, 22780, 22786, 22787, 2523], + [ + 0, 16607, 33490, 6065, 16608, 16612, 33491, 1595, 1676, 33493, 2020, 2089, 33494, 2188, 33497, 22845, 2613, + 33499, 3021, 3127, 14774, 3170, 33500, 25873, 27168, 4025, 4135, 6554, 4747 + ], + "rev", + "revving", + "revision", + "expire", + "assets", + [ + 0, 4874, 6547, 1166, 1414, 1470, 1652, 1736, 33503, 2151, 2212, 2822, 3019, 19736, 33505, 3297, 3401, 33507, + 1894, 23535, 4193, 23730, 4400, 4421 + ], + [0, 18526, 13428, 13729, 1237, 3383, 20001, 3979, 4135, 15525], + [1, 2343, 22790], + "deserialization", + [0, 22792, 22793, 2514, 2537], + "deserialize", + [0, 97, 33513, 33515, 6372, 33519, 1497, 33520, 1209, 3021, 3744, 3847, 32225, 4163], + [ + 0, 33522, 48, 53, 61, 73, 76, 81, 83, 87, 90, 94, 33525, 9310, 33528, 33530, 10875, 4880, 1009, 1011, 8158, + 33532, 1178, 1195, 33537, 1208, 1210, 33541, 1251, 31600, 33543, 1429, 33545, 1582, 1610, 1651, 1676, 1719, + 1742, 19526, 1843, 1177, 1879, 1895, 4916, 1938, 1947, 1951, 1959, 1961, 2060, 2193, 2323, 2455, 2541, 2675, + 14708, 2297, 2881, 32762, 2886, 2900, 2904, 2925, 2975, 2990, 2899, 1894, 3725, 3758, 3786, 89, 33546, 33550, + 3822, 3824, 3836, 3843, 3884, 3885, 33552, 33553, 33556, 3904, 33558, 4039, 33560, 33562, 33564, 4193, 4196, + 4201, 4261, 33565, 4409, 33566, 4431, 91, 4597, 2924, 4676, 4677, 4679 + ], + [1, 2343, 22796], + "each-async", + [0, 22797, 22799, 22800, 2537], + [0, 1177, 1900, 1903, 33572, 1938, 1953, 1958, 1959, 33573], + "md5-hex", + [0, 17529, 1698, 3188, 4039, 4092, 4389], + [ + 0, 19309, 33576, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 2446, 2292, 2272, 671, 19315, + 19269, 33578, 2869, 4255, 19317, 590, 19318, 19320, 19273 + ], + "ruby", + [1, 2343, 22803], + [0, 0, 22805, 2514, 2523], + "@img/colour", + [0, 9516, 9515, 1317, 4384], + [1, 2343, 22807], + [0, 22808, 10377, 22809, 2537], + [0, 1676, 1833, 1869, 984, 2145, 2657, 3173, 3242, 3440, 3781, 4266], + [0, 2947, 2090, 36], + [1, 2343, 22811], + [0, 22812, 22814, 22815, 2523], + [ + 0, 22966, 8364, 33593, 33596, 33598, 33599, 22967, 19593, 3034, 3072, 3183, 22451, 22968, 33602, 33603, 3763, + 33605, 28440, 33606 + ], + "sftp", + [ + 0, 8357, 8359, 33608, 4874, 1149, 4440, 1596, 17402, 2036, 33612, 21082, 1894, 33615, 33618, 28664, 33620, + 25649, 91 + ], + [0, 3166, 11100, 27662, 33624, 14584, 33625, 14586, 14587, 33626, 5130, 33627, 33628, 17757, 6081, 33629], + [1, 2343, 22817], + [0, 0, 22818, 22824, 2443], + [0, 33634, 1149, 1317, 1177, 3210, 4384], + "@types/fa", + "ncy-log", + [2, 22819, 22820], + [3, 12459, 15], + [2, 22822, 5229], + [0, 4137, 19748, 33636, 28277], + [1, 2343, 22826], + [0, 22827, 22828, 22830, 2523], + [0, 33646, 3348, 1676, 33641, 1209, 3220, 4135, 1155, 2712, 5245, 33643, 33645, 3222, 14334, 33642, 25624], + [ + 0, 3519, 3421, 1429, 1082, 1702, 33653, 2675, 2899, 3478, 4193, 1177, 33663, 3260, 4039, 1448, 668, 33669, + 33673, 4246, 25635, 25633, 33674, 1587, 1610, 2071, 33672, 3480, 33675, 32842, 2152, 4196, 91, 4856, 4874, 2024, + 2990, 6503, 6513, 29283, 692, 4870, 33652, 33682, 33649, 192, 1431, 33668, 3125, 4131, 17370, 4232, 1942, 1951, + 33662, 1011, 33660, 22559, 1009, 33655, 33681 + ], + "brotli-size", + [ + 0, 3259, 33669, 7827, 14873, 25638, 3519, 3243, 33684, 33663, 14872, 25633, 26472, 33685, 3469, 6710, 33690, + 18035, 1747 + ], + [1, 2343, 22833], + "measure", + [0, 0, 22834, 22835, 2537], + [0, 1317], + [0, 4141, 7050, 5284, 676, 1781], + [1, 2343, 22846], + "@gulp-sourcemaps/identity-map", + [3, 22837, 17], + [2, 22844, 36113], + "map-sources", + [2, 22838, 22840], + "-fabulous", + [2, 1676, 22842], + "@vitest/e", + "hook-std", + [0, 22849, 2667, 22851, 2487], + "@codspeed/vitest-plugin", + "mississippi", + [0, 1676, 33735, 33702, 33705, 33725, 33727, 33713, 33723, 33714, 33710, 33734, 33729, 33722, 33718], + "source maps", + [ + 0, 33737, 33738, 33739, 33740, 33741, 28794, 2811, 33742, 33744, 33745, 25003, 33746, 33748, 4144, 4145, 33749, + 33750, 3101, 6621, 33751 + ], + [1, 2343, 22853], + [0, 22854, 22855, 22858, 2537], + [0, 1091, 1138, 1371, 1437, 1494, 1536, 33757, 33758, 13834, 16064, 33761], + [0, 2212, 4494, 4493, 2675, 1177, 1984, 1894, 91, 2990, 107, 7806, 33765, 7677, 33768], + "device", + "strip-debug", + [0, 4592, 4146, 3166, 2665], + [1, 2343, 22861], + "client-hints", + [0, 22862, 22864, 22865, 2487], + [0, 984, 2145, 3242, 3494, 4100], + "accord", + [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342, 33775], + [0, 2026, 33777, 2663], + [1, 2343, 22867], + [0, 22868, 22869, 2514, 2443], + [0, 1080, 6870, 1676, 1869, 2657, 3173, 3494], + [0, 1087, 1177, 1948, 2899, 3421, 4342], + [1, 2343, 22876], + "looks-same", + "svg2png", + "@cpplint/cli", + "rwd", + "retina", + [0, 22877, 9025, 2514, 2523], + [0, 1833, 1869, 3494, 710], + [1, 2343, 22879], + [0, 22880, 22881, 22882, 2537], + [0, 33798, 3171, 3181], + [ + 0, 192, 5467, 33801, 33803, 1168, 1429, 1431, 1527, 1177, 1895, 2151, 2675, 2990, 3073, 13824, 2899, 3310, 3421, + 1894, 3752, 33804, 4193, 4196, 4390 + ], + [0, 33804, 33807, 13573, 7200, 33808, 6997, 33811, 6949, 5351, 4967, 33813], + [2, 33888, 22889], + [1, 2343, 22885], + [0, 22886, 22887, 22888, 2523], + [ + 0, 33819, 33821, 33823, 33824, 7709, 33826, 33827, 33828, 27792, 33831, 13559, 33836, 33838, 33840, 29749, 1367, + 10785, 33841, 13566, 33843, 3445, 17009, 4729 + ], + [ + 0, 33846, 9167, 33848, 5087, 4874, 7819, 9241, 1009, 1011, 33838, 13566, 668, 33850, 1177, 1895, 19527, 1915, + 1938, 1955, 2675, 1192, 33851, 33852, 33854, 33857, 2845, 3381, 1894, 13569, 4257, 4468, 4474, 1531, 91, 3348 + ], + [0, 12, 7200, 5472, 1192, 33804, 4158, 1984, 13573, 6930, 6808, 7308, 33822], + "arm64", + [1, 2343, 22891], + [0, 22892, 0, 2514, 2537], + [0, 26956, 6641], + [1, 2343, 22895], + "rendering", + [0, 0, 22896, 22897, 2443], + [0, 1178, 1264, 1280, 1429, 1177, 2126, 33869, 2675, 2990, 2899, 1894], + [0, 4163, 4161, 4162, 26287, 3797, 33871], + [1, 2343, 22899], + [0, 22901, 22903, 22904, 2537], + [3, 18435, 14], + [0, 4135, 22804, 20584], + "incremental", + [0, 20762, 4481, 33891, 4391, 640, 33894, 2057, 22873, 11976, 3299, 33877, 2829, 33882, 33890, 33884, 33887, 22883], + [0, 21881, 18048, 12349, 12350, 23995, 20639, 8221, 20701, 33896, 158, 24800, 33897, 12712, 26490, 33898, 33899], + [1, 2343, 22906], + [0, 0, 22907, 22910, 2523], + [0, 13614, 1159, 9254, 1177, 2011, 2708, 2762, 3410, 3421, 4103, 4389], + [3, 15893, 12], + [2, 22908, 1512], + [0, 1523, 1644, 7336, 4166], + [1, 2343, 22912], + [0, 22913, 22914, 22915, 2537], + [0, 2020, 2071], + [0, 1166, 1437, 1506, 1177, 1881, 1938, 2822, 3421, 33910, 33912, 4172, 33916], + [0, 4167, 16159, 28984, 4166, 33918, 7048, 2763, 31360], + "@types/plu", + [1, 2343, 22921], + "gin-error", + [2, 22916, 22918], + "gulp-diff", + [0, 22922, 22925, 22926, 4139], + [0, 3266], + " compilation", + [2, 22902, 22923], + [0, 1429, 2228, 2899, 1839, 2240, 26399, 4436, 2305, 34238, 22000, 2236, 2300, 3006, 2253, 2273, 2281, 5535], + [0, 5843, 4439, 3265, 3348, 33927, 33928, 33929, 4169, 33930], + [1, 2343, 22928], + [0, 22929, 22931, 22934, 2537], + [0, 33936, 33937, 33938, 33941, 33942], + "array-each", + [0, 1362, 1177, 33945, 2899, 1894, 4042, 4067, 4487, 91], + "error-cause", + [2, 3094, 22932], + [0, 1973, 5982, 1145, 4170], + [3, 16647, 18], + "se-extend-native", + [2, 22935, 22936], + "list-map", + [2, 4601, 22938], + [1, 2343, 22942], + "tape-catch", + [0, 5621, 22943, 22944, 2537], + [0, 2228, 2247, 2253, 2273, 2281, 2285, 2290, 33953, 2291, 2316, 2832, 3006, 3518, 33954, 4135, 33955, 4232], + [0, 1783, 15253], + [1, 2343, 22947], + "uncss", + [0, 22948, 22949, 22950, 4139], + [0, 3183, 4167], + [0, 1173, 1264, 1280, 1177, 1881, 19527, 1938, 2822, 2899, 3421, 4039, 33910, 33963, 33912, 4170], + [0, 4167, 4166, 28984, 16159, 16160, 2978, 200, 8636], + [1, 2343, 22952], + [0, 0, 22953, 22954, 34352], + [0, 21122, 4874, 24162, 13680, 1414, 1894, 4384, 4474, 4508, 91], + [0, 6553, 2021], + [1, 2343, 22956], + [0, 22957, 22958, 22960, 2523], + [0, 1097], + [0, 2553, 3714, 4042, 4048, 4535], + "useref", + [0, 7521, 5224, 26514, 1424], + "async-once", + "gulp-dest", + [2, 3204, 22962], + [1, 2343, 22965], + [0, 22969, 22976, 22977, 4139], + "@hapi/joi", + "jsonic", + "optioner", + [0, 33986, 33989, 1676], + "array-differ", + "array-uniq", + "beeper", + "_reescape", + [2, 3024, 22973], + [3, 22974, 11], + [0, 33992, 33997, 5245, 5087, 4874, 668, 29154, 1192, 4474, 91], + [0, 3358, 34000, 30983], + "valuate", + [2, 22975, 22978], + "lodash._re", + [1, 2343, 22984], + "interpolate", + [2, 22980, 22982], + [0, 0, 22986, 22987, 2523], + [2, 3067, 6937], + [ + 0, 4481, 1192, 2675, 3534, 1177, 4039, 4042, 1894, 1610, 1193, 53, 5087, 1540, 34009, 3720, 97, 107, 87, 1926, + 34015, 68, 5583, 4073, 6373, 34019, 811, 816, 5522, 34013, 1201, 81 + ], + [0, 11615, 16114, 27968, 13527, 5130, 89, 1098, 188, 38, 14584, 4967], + [1, 2343, 22994], + "@test-runner/core", + "yazl", + [2, 22996, 32078, 6624], + "qpass", + "yazul", + [0, 22995, 22998, 22999, 2537], + [0, 11124, 826, 34034, 1687, 4351], + [3, 22989, 13], + [2, 22996, 23000], + [ + 0, 53, 11126, 11130, 11133, 11134, 34040, 28537, 34041, 1208, 1676, 1705, 668, 27502, 26739, 2185, 2990, 2899, + 3421, 1894, 3758, 4039, 4135, 4167 + ], + [0, 4193, 1973, 5472, 2275, 13106, 4158, 21147, 6901, 34044, 3212, 4731, 1145], + "live-view", + [2, 22996, 23003], + [1, 2343, 23005], + "oneline-view", + [2, 22996, 16316], + [0, 0, 23006, 23007, 34352], + [0, 442, 1414, 1429, 1177, 2899, 1894, 4193], + [0, 1429, 15385, 1388, 34050, 34053, 4193, 5472, 17051, 17052, 17050], + [1, 2343, 23010], + [2, 13857, 2663], + [0, 23011, 23012, 23013, 2523], + [ + 0, 9153, 6327, 1149, 1409, 34066, 34065, 3188, 4135, 16358, 2026, 2822, 705, 1866, 1525, 3181, 2861, 2036, 1364, + 1536, 2657, 2600, 34060, 34062, 3923, 34064 + ], + [0, 2899, 1362, 1389, 34068], + [0, 7223, 3383, 18157, 29179, 5260, 2658, 36], + [1, 2343, 23015], + [0, 23016, 0, 2514, 2487], + [0, 34076, 11480, 34078], + [2, 4598, 3426], + [1, 2343, 23019], + [0, 23020, 0, 23021, 2443], + [0, 34085, 2984, 34086, 3527, 27921], + [0, 4201, 200, 1999, 6681, 34088, 34090], + [1, 2343, 23023], + [0, 16583, 11580, 23027, 2523], + "smith", + [2, 3521, 23024], + "pngparse", + [0, 34096, 34098, 34099, 5995, 4967, 17758], + [1, 2343, 23029], + [0, 23030, 23031, 23032, 2399], + [0, 22992, 34105], + [0, 2924, 4469, 91, 4677, 23319, 4676], + [0, 5995, 34107, 5592, 33804, 18035], + [1, 2343, 23035], + "compressed", + [0, 0, 8134, 23036, 2523], + [0, 3403, 34116, 4207, 28978, 6574, 6270], + [1, 2343, 23038], + [0, 23039, 23042, 23044, 2537], + [0, 1110, 34121], + "catering", + "deglob", + [0, 1166, 1437, 34125, 4294, 1906], + "find-file-up", + [ + 0, 6913, 1871, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 6621, 1867, 6983, 6616, 7244, 4166, 4744, 3073, + 6807, 6876, 2585 + ], + "find-githost", + "link-re", + [1, 2343, 23067], + "ferences", + [2, 23046, 23048], + [2, 1163, 23049], + [2, 3986, 23050], + "remark-c", + [2, 15, 14994], + [2, 23052, 23053], + [3, 13240, 12], + "quote-", + [2, 23056, 17537], + [2, 1359, 23057], + [2, 23055, 23058], + "box-", + "-style", + [2, 6843, 23061], + [2, 23060, 23062], + [2, 4354, 23063], + [2, 23055, 23064], + [3, 23065, 22], + [0, 23068, 13640, 23072, 2537], + [0, 22437, 1455, 12918, 34132, 34134, 25377, 34136, 3275, 3518, 34137, 3718, 3730, 34139, 1241, 4747], + "ontent-indent", + [2, 23066, 23069], + [3, 23065, 13], + [0, 34141, 4796, 22832, 3378, 1161], + "block-style", + [2, 16080, 23073], + [2, 23071, 23074], + [3, 7900, 10], + [2, 23076, 15319], + [2, 23055, 23077], + "emphasis-marker", + [2, 23055, 23079], + "fenced-code-marker", + [2, 23055, 23081], + [3, 23082, 13], + "inal-newline", + [2, 23083, 23084], + "hard-", + [1, 2343, 23088], + [0, 0, 23089, 23106, 2523], + [0, 12310, 6061, 6063, 5476, 1414, 2899, 4131, 4255], + "break-spaces", + [2, 23086, 23090], + [2, 23055, 23091], + "-bullet-indent", + [2, 5401, 23093], + [2, 15794, 23094], + [2, 23055, 23095], + [3, 23096, 22], + [2, 23097, 8958], + [3, 13240, 15], + [2, 17793, 17825], + [2, 9344, 23100], + [2, 1160, 23101], + [2, 23099, 23102], + [3, 23058, 11], + "without-", + [0, 4213, 3974, 1871, 4577, 22188, 3656, 1002], + "marker", + [2, 23105, 23107], + [2, 23104, 23108], + [2, 23099, 23109], + "duplicate-", + [2, 23111, 7900], + [2, 23099, 23112], + "-cont", + "ent-indent", + [2, 23114, 23115], + [2, 156, 23116], + [2, 23099, 23117], + "padding", + [2, 16569, 23119], + [2, 23099, 23120], + "literal-urls", + [2, 23099, 23122], + [3, 13240, 17], + "used-definitions", + [2, 23124, 23125], + "rule-style", + [2, 23055, 23127], + [1, 2343, 23130], + [0, 0, 23131, 23146, 2537], + [0, 1596, 34154, 2899, 3421], + "strong-marker", + [2, 23055, 23132], + "cell-padding", + [2, 16065, 23134], + [2, 23055, 23135], + [3, 23136, 18], + "pipes", + [2, 23137, 23138], + "unordered-list-marker-style", + [2, 23055, 23140], + [2, 4586, 3966], + [2, 3986, 23142], + "unified-", + [2, 23144, 16284], + [0, 4213, 3974, 1002, 34156], + [1, 2343, 23150], + "-shiny", + [2, 18004, 23148], + [0, 7936, 7938, 7939, 2443], + "pull-", + [1, 2343, 23153], + [0, 23156, 0, 23157, 2537], + "pull-or-clone", + [2, 10617, 23154], + [0, 1437, 2713, 3183, 3923, 34167, 4294, 4425], + [0, 3721, 34170, 34172, 4255, 34174, 25264, 34177, 34179, 34181, 34182], + "fixer", + [1, 2343, 23160], + [0, 23161, 23162, 23170, 2523], + [0, 1170, 34189, 1676, 2131, 2141, 2188, 1209, 4113, 4296, 15502, 34190], + [ + 0, 442, 5245, 7810, 4870, 4874, 34194, 15507, 1364, 1512, 1687, 1742, 1792, 1177, 2026, 2099, 2070, 2899, 3421, + 1894, 3923, 4135, 4151, 4170, 4193, 4232, 25609, 4508, 91, 4523 + ], + [2, 13729, 18200], + "git-tags", + [2, 2264, 2907], + [2, 8961, 2499], + [2, 2312, 23166], + "jquery-", + [2, 23168, 2555], + [0, 4217], + [1, 2343, 23172], + [0, 23173, 0, 23174, 2537], + [0, 1080, 34200, 1594, 1676, 12777, 34201, 9247], + [0, 20863, 5130, 4699, 21405, 2018, 21302, 11444], + "neo-async", + [1, 2343, 23179], + "chai-diff", + [2, 2264, 4019], + [0, 23180, 0, 23181, 2537], + [0, 34208, 1676, 12779, 9247], + [0, 20863, 5130, 4699, 21405, 2018, 5576], + [1, 2343, 23183], + [0, 23186, 23191, 23194, 2537], + "ammo", + "heavy", + [0, 1676, 34226, 26137, 2713, 4567], + "bounce", + "catbox", + "somever", + "subtext", + [ + 0, 1389, 1839, 1177, 2025, 2323, 2409, 2494, 2496, 2510, 2530, 2297, 2871, 2876, 2881, 2900, 2899, 3752, 3756, + 4151, 34228, 4599, 4603 + ], + "statehood", + [2, 23188, 8329], + [0, 14609, 4699], + [1, 2343, 23197], + "vision", + [0, 0, 23198, 2514, 4139], + [0, 1414, 1742, 1177, 1894, 1895], + [1, 2343, 23200], + [0, 0, 23202, 2514, 2487], + "webidl-conversions", + [0, 34238, 1742, 2924], + "@vitest/ui", + [1, 2343, 23206], + "@webref/css", + [0, 23207, 23208, 13533, 2487], + [0, 2685, 4228], + [ + 0, 48, 53, 87, 192, 5467, 16405, 1193, 1610, 1622, 1700, 1701, 1177, 1895, 1938, 2675, 1192, 2990, 3144, 3400, + 1894, 4257, 2924 + ], + [1, 2343, 23210], + [0, 23211, 23212, 2514, 2537], + [0, 16136, 4227], + [0, 1389, 1509, 2665, 2899, 2924], + [1, 2343, 23214], + [0, 0, 23215, 23216, 2523], + [0, 4874, 1414, 1894, 3985, 3998, 4505, 91, 1906], + [0, 965, 1936, 17540, 34254, 11590, 1644, 1646], + [1, 2343, 23218], + [0, 23219, 23220, 23221, 4139], + [ + 0, 34270, 34266, 5526, 5528, 5529, 1448, 1509, 1525, 2071, 2215, 2220, 34264, 2228, 2247, 2253, 2256, 2258, + 2263, 2281, 2283, 2308, 2036, 2600, 2654, 2820, 2822, 34269, 2856, 1209, 3127, 34261, 3561, 2278, 4373, 4449 + ], + [ + 0, 48, 53, 87, 94, 10737, 34272, 1429, 1431, 6522, 1177, 1951, 1954, 1970, 2899, 3363, 1894, 4037, 4039, 4193, + 4196 + ], + [0, 2220, 1739, 1745, 34276, 34279, 5592, 9381, 1179], + [1, 2343, 23223], + [0, 23226, 23227, 2514, 4139], + "own-property-symbols", + [2, 2183, 23224], + [0, 4430], + [0, 2012, 19987, 19988, 19989, 34294], + [1, 2343, 23229], + [0, 0, 23230, 2514, 2523], + [0, 34300, 34301, 30025, 3421, 3697, 4255, 4389], + [1, 2343, 23232], + [0, 0, 9888, 2514, 2523], + [1, 2343, 23234], + [0, 0, 23235, 2514, 2537], + [0, 2323, 2899, 1177, 1317, 2463, 2384, 2409, 2494, 2530, 34312, 2510], + "@ljharb/", + [2, 23236, 2190], + [3, 19784, 15], + [2, 23238, 14037], + [3, 6541, 12], + [2, 23240, 3205], + [1, 2343, 23243], + [0, 23244, 23259, 23263, 2523], + [ + 0, 1362, 1473, 1512, 1636, 2151, 2036, 34317, 8691, 1209, 3367, 17997, 34318, 22519, 4431, 4597, 4600, 34319, + 34321 + ], + [2, 8727, 591], + [2, 10306, 5472], + "@ungap/structured-clone", + "from-parse5", + [2, 2573, 23248], + [2, 2580, 3493], + "html-v", + "oid-elements", + [2, 23251, 23252], + [2, 9406, 8193], + [3, 75, 9], + "namespaces", + [2, 5925, 23256], + "zwitch", + [0, 1429, 1596, 2759, 2899, 3202, 34324, 34326], + [3, 9315, 9], + "gap__structured-clone", + [2, 23260, 23261], + [0, 22055, 22074, 34328, 1623, 4329, 695, 2278, 4245, 34331, 17461], + "remark-api", + [1, 2343, 23268], + "unist", + [3, 2572, 9], + [0, 23269, 23270, 23271, 2537], + [0, 1326, 3299, 32944, 4390], + [0, 1177, 2899, 32942], + [0, 14872, 7827, 4246, 18035], + [1, 2343, 23280], + "aria-", + [2, 23273, 2618], + [3, 23249, 15], + [2, 23275, 1936], + "html-tag", + "-names", + [2, 23277, 23278], + [0, 23281, 23282, 23283, 2523], + [0, 34342, 34345], + [0, 1177, 15234], + [0, 21000, 4247, 22813, 18112, 4166, 2978, 21004, 5576], + [1, 2343, 23285], + [0, 23290, 23294, 23295, 2399], + "bcp-47-match", + "-separated-tokens", + [2, 14186, 23287], + "devlop", + [0, 21505], + "direction", + [2, 2573, 3661], + "not", + [0, 9516, 9515, 1317], + [0, 12616, 5122, 1965, 34354, 26965, 27081, 34355, 34356, 34357, 34359, 34360, 1936], + "selectall", + [1, 2343, 23298], + [0, 23299, 21592, 23300, 34352], + [0, 4745], + [ + 0, 4249, 1781, 4745, 17307, 25611, 1747, 7141, 7789, 166, 1721, 18035, 1745, 5995, 1550, 3230, 2109, 3259, 4246, + 6523, 20832, 25638, 1781, 3053, 34366 + ], + "attach-comments", + [2, 12413, 23301], + "is-i", + "dent", + "ifier-name", + [2, 23304, 23305], + [2, 23303, 23306], + [2, 12413, 23307], + [3, 6451, 11], + [2, 12127, 23309], + [3, 23310, 15], + [2, 23311, 1219], + "js-esm", + [2, 12127, 23313], + [1, 2343, 23317], + "esast-util-from-js", + [0, 0, 23318, 2514, 2443], + [0, 87, 1193, 1192, 34373], + "basic-node-server", + [1, 2343, 23321], + [0, 23323, 23325, 23326, 2487], + "ccount", + [0, 1177, 1903, 33572, 1938, 1953, 1958, 1959, 33573, 34380], + "tostring", + [0, 1615, 2554, 3183, 34383, 4092, 12823, 4389], + [ + 0, 19309, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 2446, 2292, 2272, 671, 19315, 19269, 2869, + 4255, 19317, 590, 19318, 19320, 19273 + ], + [1, 2343, 23328], + [0, 23329, 23331, 23333, 2523], + [0, 1437, 1566, 34392, 1570, 25901, 1707, 20949, 34393, 2089, 2105, 31174, 4135, 28154, 4747], + "sval", + [0, 1429, 1177, 1903, 1938, 1954, 1958, 2899, 3203, 3215, 3421, 4167, 34395], + "solid", + [0, 1566, 4945, 13729, 13728, 6976, 15525, 1098, 4255], + [1, 2343, 23335], + [0, 23337, 23338, 23341, 2537], + "wcswidth", + [0, 1138, 1362, 17045, 1676, 2020, 17034, 10756, 28519], + [ + 0, 4874, 34405, 1429, 1610, 1705, 34407, 34408, 34409, 2212, 2848, 8163, 3183, 2899, 34410, 26230, 4131, 34413, + 4193, 4196, 20382, 4255 + ], + [2, 23340, 93], + "@swc-node/", + [0, 15656, 12804, 36, 6587, 1973, 6435, 6703], + [3, 9407, 13], + "nd-after", + [2, 23342, 23343], + "exsolve", + [1, 2343, 23347], + [0, 23348, 23349, 23350, 2523], + [0, 34423, 27073, 2175, 34421], + [0, 1241, 2276, 4545], + [0, 4264, 34426, 34427, 34429, 20863], + [2, 13721, 3585], + [2, 2573, 23351], + [1, 2343, 23357], + "build-", + "build-jsx", + [2, 12413, 23355], + [0, 0, 23358, 23360, 2523], + [0, 1645, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 3784, 22449], + "svg-tag-names", + [0, 27, 6622, 1501], + "vdom", + "hyperscript", + "@glen/jest-raw-loader", + [1, 2343, 23365], + [0, 23366, 23367, 23368, 2537], + [0, 4729, 3445, 3930, 4135, 668, 37080, 36874, 7384, 26870, 5545, 968, 974], + [ + 0, 1797, 4763, 1429, 1687, 2070, 2807, 4200, 2020, 2975, 3144, 23802, 89, 4207, 20573, 2205, 3266, 3411, 28853, + 668, 23345, 2161, 2822, 6042, 814, 4448, 24324, 3555, 1894, 29318, 9241, 1420, 1525, 4788, 3530, 28863, 3824, + 11143, 4507, 33215, 4726, 9741, 16485, 30414, 3527, 4227, 4294, 91, 53, 17577, 4874, 1615, 1710, 29514, 104, + 14552, 30157, 11196, 58, 29515, 5254, 37084, 1707, 37491, 15245, 35349, 8646, 7931, 7948, 7637, 7812, 26380, + 15906, 36119, 8506, 30253, 32284, 4480, 101, 370, 15600, 30254, 30260, 30262, 24759, 5216, 30464, 20374, 30283, + 3885, 33523, 1582, 37017, 21122, 30913, 9329, 30284, 33228, 33534, 33538, 30300, 30313, 12837, 4300, 30321, + 30375, 31673, 30398, 966, 25114, 37449, 28465, 30406, 7943, 972, 33554, 33526, 8714, 19592, 9011, 30387, 3749, + 30453, 30454, 30467, 12315, 30468, 30470, 30471 + ], + [0, 4270, 4627, 4963, 23245, 23246, 89, 3286, 23803, 3857, 5123, 188, 1098, 3709, 5167, 5926], + [1, 2343, 23370], + [0, 23371, 23372, 23373, 4139], + [0, 2664], + [ + 0, 23363, 10825, 10827, 10828, 28147, 34473, 34475, 11011, 10837, 10840, 29877, 968, 972, 5087, 11292, 4880, + 1177, 34480, 1192, 11347, 2780, 1894, 3744, 3758, 89, 3824, 2278, 4111, 4270, 4468, 91, 4705, 4745 + ], + [0, 6718, 4270, 34484, 4963, 1745, 4967, 34485, 21043, 34491, 34493, 34494, 3416], + [1, 2343, 23377], + "regexgen", + "sort-object", + [0, 23378, 0, 5269, 2523], + [ + 0, 7, 53, 87, 6316, 6318, 1437, 1448, 1457, 1512, 1525, 1595, 6323, 2061, 34500, 2151, 2070, 2036, 2626, 2681, + 17449, 2856, 1209, 3079, 6326, 6327, 3127, 3183, 6330, 6331, 29899, 6332, 4135, 100, 4473, 3348 + ], + [1, 2343, 23380], + [0, 8856, 7938, 7939, 2443], + [1, 2343, 23382], + [0, 14754, 23383, 23384, 2523], + [0, 34508, 34510, 2899, 4170], + [0, 34513, 3101], + [1, 2343, 23386], + [0, 0, 23393, 23394, 2537], + [3, 5429, 9], + [2, 23387, 19315], + [2, 1561, 23388], + "origin-embedder-policy", + [2, 1611, 23390], + [3, 23391, 13], + [0, 816, 6503, 4874, 1642, 1794, 2899, 2966, 1894, 4042, 4064, 4066, 4170, 4474, 4494, 91], + [0, 3101, 353, 1641, 3048, 5995, 4967], + "-policy", + [2, 3456, 23395], + [2, 23392, 23396], + [3, 5974, 9], + [2, 23398, 19315], + [2, 23392, 23399], + "origin-", + "-cluster", + [2, 4575, 23402], + [2, 23401, 23403], + "refer", + "rer-policy", + [2, 23405, 23406], + "-security", + [2, 4714, 23408], + [2, 14104, 23409], + "x-content-type-options", + "x-dns-prefetch-control", + "x-download-options", + "x-frame-options", + "x-permitted-cross-domain-policies", + "x-powered-by", + "x-xss-protection", + [1, 2343, 23419], + [0, 23420, 11580, 23421, 2523], + [0, 17835, 692, 17754, 2129, 2760, 34524, 13291], + [0, 34527, 34528, 5995], + [3, 17494, 14], + [2, 23422, 965], + [1, 2343, 23425], + [0, 0, 0, 23426, 34352], + [0, 4283, 1671, 1871, 6901, 1666], + [1, 2343, 23428], + [0, 0, 23429, 23430, 2537], + [0, 2323, 2346, 2463, 2494, 34537, 2530, 28539, 4535], + [ + 0, 1871, 16116, 34540, 34541, 34542, 591, 1641, 1936, 18089, 1644, 1936, 2640, 4301, 6678, 10368, 15103, 1867, + 23615 + ], + [1, 2343, 23437], + "abbrev", + "archy", + "hexo-cli", + "hexo-", + [2, 23435, 2149], + [0, 23442, 23447, 23457, 2537], + "hexo-fs", + "hexo-i18n", + "hexo-log", + "hexo-util", + [0, 5139, 34547, 2626, 3021, 34551, 34553, 34556], + "-js-types", + [2, 2822, 23443], + "titlecase", + "warehouse", + [0, 34559, 34560, 17913], + "0x", + "bbrev", + [2, 9165, 23449], + "xt-table", + [2, 13419, 23451], + [2, 1884, 2596], + [3, 1778, 9], + [2, 23454, 3127], + [2, 23435, 23455], + [0, 1501, 7682, 7115, 1936, 34562, 34563, 7293, 22392, 4285, 1871, 4301, 2640, 17950, 2585, 34564], + [1, 2343, 23459], + [0, 23460, 8134, 23461, 2537], + [0, 34569, 4294], + [ + 0, 1871, 6843, 3656, 4289, 7062, 6922, 6981, 6701, 6581, 16041, 23336, 6700, 1111, 1867, 5281, 200, 6876, 7009, + 7201, 6575, 6611, 6795, 6960, 7135, 7230 + ], + [2, 11177, 17514], + [1, 2343, 23467], + "grunt-g", + "h-pages", + [2, 23464, 23465], + [0, 23468, 23472, 23473, 2523], + [0, 34576, 34578], + "scrawl", + "ducers-js", + [2, 4713, 23470], + [0, 4874, 1414, 26854, 1894, 3985, 3998, 4505, 91, 1906], + [0, 1646, 10368, 1867, 1936, 6843, 11043, 18944, 18089], + [1, 2343, 23475], + [0, 23477, 20489, 23481, 2537], + [2, 5058, 23278], + [0, 1109], + "freeze-es6", + [2, 1683, 23478], + [2, 5313, 14056], + [ + 0, 4301, 6678, 7293, 1111, 592, 1473, 7208, 1512, 7009, 7201, 1871, 6621, 1867, 6983, 6616, 7244, 4166, 4744, + 3073, 6807, 6876, 2585 + ], + "tiny-worker", + "wcag-contrast", + [1, 2343, 23485], + [0, 0, 8134, 23486, 2537], + [0, 4301, 4295, 1412, 4327, 3126, 3656, 4577, 22188, 7293, 6865, 6678, 2585, 1871], + [1, 2343, 23488], + [0, 0, 23489, 23490, 2537], + [0, 1166, 3130, 4481, 1906], + [0, 1781, 4301, 4298, 7293, 6865, 6678, 16112, 1644, 1541, 8309, 6937, 614, 1263, 6639, 19632], + [1, 2343, 23492], + [0, 0, 23493, 23494, 2537], + [ + 0, 3421, 1429, 3297, 2899, 1177, 4474, 1894, 3310, 91, 4856, 4874, 6503, 23496, 1431, 1938, 3200, 1895, 1955, + 9417, 1011, 10419, 1009 + ], + [0, 4302, 34601, 34602, 5592], + [1, 2343, 23497], + "undici-types", + [0, 23498, 23499, 23500, 2523], + [ + 0, 1149, 1676, 34607, 34610, 3324, 34612, 3368, 3460, 3917, 34613, 34615, 34616, 34619, 34622, 30142, 34625, + 34626, 34629, 4707, 2861, 1401, 34631, 1653, 2592, 2713, 695, 1209, 3081, 26443, 7305, 34421, 3220, 3923, 23975, + 4246, 34634, 26423, 34636, 34637, 34639, 29456, 4729 + ], + [0, 1177, 2292, 4384], + [ + 0, 9649, 34642, 29319, 34643, 26473, 34644, 13538, 4575, 13539, 6147, 6374, 24093, 1541, 4796, 20997, 20999, + 34647, 2134, 3358, 27318, 34650, 6807, 26474, 10057, 25202, 3151, 13499, 27838, 34651, 3378, 34652, 34653, + 26931, 6681, 2306, 3729, 15267, 28413, 29179, 5508, 8791, 11100, 34654, 34656, 7046, 34613, 34657, 34660, 30142, + 34629, 4303, 34661, 4345, 17184, 6901, 34662 + ], + [1, 2343, 23502], + [0, 23503, 23504, 23505, 2537], + [0, 34667, 34668, 34669, 34670, 1437, 1443, 13827, 1525, 2745, 2856, 34671, 1894, 4443], + [ + 0, 34673, 34676, 107, 192, 5467, 34677, 34679, 8661, 34680, 4856, 4874, 11438, 7819, 1011, 5476, 34681, 5478, + 1082, 34683, 1429, 1177, 1951, 1959, 2007, 2151, 34684, 2675, 34686, 2829, 34689, 695, 2990, 34690, 26564, + 25131, 2899, 21290, 3400, 5561, 2278, 4135, 4164, 22595, 4333, 91, 4555, 3348, 4745 + ], + [0, 34693, 590, 34692, 1623, 4964, 11590, 2278, 4329, 13339, 34694, 89, 5133, 25172], + [1, 2343, 23507], + [0, 0, 23508, 13533, 2537], + [ + 0, 1192, 2278, 2675, 2832, 3144, 1622, 1177, 4135, 1701, 2924, 1854, 1894, 1610, 48, 1193, 1628, 53, 2092, 2990, + 3400, 4111, 4677, 192, 4257, 87, 4681, 1938, 1895, 2780, 5467, 16405 + ], + "step", + [1, 2343, 23511], + [0, 23512, 23513, 23514, 2523], + [0, 4311], + [ + 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 5087, 1009, 1011, 1177, 1955, 10964, 2203, 2675, 1192, 2990, + 1894, 4042, 4468, 4474, 91 + ], + [0, 4309, 1623, 590, 5284, 3048, 23578], + [1, 2343, 23516], + [0, 23517, 23518, 23519, 2487], + [0, 2718], + [ + 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 10817, 5087, 4874, 1009, 1011, 1177, 1955, 10964, 2203, 2675, + 1192, 2990, 3400, 1894, 23535, 4042, 4468, 4474, 4484, 91 + ], + [0, 4311, 134, 590, 57, 1623, 3048, 23578], + "hap-nodejs", + [1, 2343, 23524], + "-newlines", + [2, 1938, 23522], + [0, 23525, 23526, 23527, 2443], + [0, 7943, 13037, 34715, 34718, 1639, 3561, 4163, 7917, 4484], + [ + 0, 53, 5652, 8229, 61, 78, 5240, 87, 90, 92, 10817, 966, 968, 972, 974, 4863, 5087, 34720, 4874, 4880, 4883, + 34722, 5091, 4889, 5055, 1193, 1198, 20479, 14065, 6375, 1192, 2780, 26503, 2802, 2820, 1894, 3744, 89, 3824, + 34725, 3857, 3904, 4042, 4055, 4058, 4067, 4069, 4071, 4073, 34727, 34730, 91 + ], + [0, 89, 1623, 7165, 4315, 7297], + "@hono/eslint-config", + "@hono/", + "node-server", + [2, 23529, 23530], + [1, 2343, 23533], + [0, 23534, 23540, 23541, 2443], + [0, 33204], + "publint", + "ly-js-compute", + [2, 2062, 23536], + [2, 4609, 23537], + "wrangler", + [ + 0, 48, 53, 78, 4851, 5743, 5241, 83, 87, 90, 94, 97, 104, 4880, 1166, 7913, 34737, 1573, 1177, 1895, 2675, 3008, + 1894, 3720, 89, 3824, 4131, 4227, 33212, 7917, 34741, 91 + ], + [0, 7913, 4592, 34743, 7165, 1623], + "cloudflare", + "workers", + "fastly", + "compute", + [1, 2343, 23547], + [0, 23548, 20974, 23549, 2399], + [0, 1393, 3681], + [0, 2887, 1623, 34749, 4318, 16918, 3561, 6425, 4319], + [1, 2343, 23551], + [0, 23552, 23553, 23554, 2487], + [ + 0, 205, 30928, 208, 213, 30577, 220, 22371, 30299, 1595, 1627, 1634, 1676, 2071, 29067, 16783, 14564, 2205, + 34755, 2641, 2687, 5210, 19187, 2747, 2932, 34757, 3157, 3170, 3369, 3527, 3561, 3676, 3681, 3688, 4290, 15887, + 34762, 176, 4728 + ], + [ + 0, 107, 34765, 11893, 34768, 34770, 34773, 16934, 5245, 16787, 34775, 34776, 34778, 8778, 16398, 34780, 19800, + 34785, 22092, 1317, 1532, 1699, 1177, 34787, 1938, 1939, 2675, 1192, 34791, 2802, 2990, 11357, 3400, 5561, 3606, + 3613, 30479, 34793, 3678, 1894, 3985, 4337, 91 + ], + [0, 7165, 1623, 695, 671, 9654, 1783, 2278, 4329, 4320, 4337], + [1, 2343, 23556], + [0, 23557, 23565, 23566, 34352], + [0, 4946], + "hopper-adventure", + [2, 12087, 23558], + "svelte2tsx", + "workshop", + "adventure", + "tutorial", + "tutor", + [0, 34768, 34770, 1177, 34787, 2675, 2990, 3400, 1894, 3985, 4320], + [0, 4320, 34801, 4255], + [1, 2343, 23568], + [0, 0, 23569, 23570, 2523], + [ + 0, 3421, 1192, 2675, 3534, 1742, 1177, 1503, 4508, 1894, 34810, 1610, 4320, 48, 1193, 34809, 11918, 91, 53, + 13693, 2990, 3165, 94, 192, 4131, 87, 34806, 1939, 1978, 1938, 6063, 34791, 21120, 1895, 1955, 4514, 92, 1011, + 6061, 5467, 1883, 1009, 5766, 13052, 61, 78 + ], + [0, 7846, 4320, 1623, 4329, 695, 671, 34818, 6884, 3046, 34819, 1473, 34820], + "big-lib", + [2, 8131, 23571], + [2, 7635, 23575], + "karma-co", + "codeshift", + "@jasminejs/reporters", + [1, 2343, 23579], + "pojo", + [0, 23580, 23581, 23582, 2537], + [0, 3561, 34826], + [0, 1177, 34829, 1895, 2203, 2675, 1192, 30912, 34791, 2802, 2990, 3606, 30479, 34832, 1894, 34835, 4320], + [0, 7846, 4320, 1623, 671, 4327], + [1, 2343, 23585], + [3, 2618, 9], + [0, 23586, 23587, 23588, 2537], + [0, 1634, 2747, 2932, 3141, 34842, 34760, 3681, 3688], + [0, 1532, 1610, 1177, 34847, 2675, 1192, 34791, 2990, 3377, 3561, 30479, 3678, 1894, 4320], + [0, 1623, 21861, 671, 9654, 4329, 4320, 7846], + [1, 2343, 23590], + [0, 23592, 14818, 23593, 2487], + "@domenic/eslint-config", + [0, 63, 1676, 2070, 4113, 4227], + [0, 1623, 57, 590, 22561, 2437, 1351], + [1, 2343, 23595], + [0, 23596, 23599, 23609, 2487], + [0, 2071, 3369], + [3, 9127, 9], + "flowgen", + [ + 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 1317, 34860, 1610, 1622, 1628, 1700, 1701, 1177, 1895, 20281, 1938, + 1939, 1942, 1953, 1955, 1982, 2203, 2675, 1192, 2990, 3144, 3291, 3400, 1894, 3786, 4257, 4307, 4333, 4523, 2924 + ], + " entities", + [2, 1936, 23600], + " encode", + [2, 23601, 23602], + [3, 23603, 14], + [2, 23604, 15103], + [2, 18089, 23602], + "entities ", + [2, 23607, 15103], + [0, 2924, 1194, 4333], + [1, 2343, 23611], + [0, 0, 0, 23612, 2443], + [0, 1623, 3561, 30775, 5341, 8958, 57], + "ascjs", + [1, 2343, 23616], + "unescape", + [0, 23617, 23618, 23619, 2523], + [0, 1533, 34877, 1676, 33596, 2139, 2141, 3164, 3171, 3763], + [ + 0, 48, 53, 83, 87, 97, 192, 5467, 1290, 16750, 27731, 1364, 1389, 1575, 1610, 1177, 1909, 1924, 1954, 2026, + 2040, 2114, 2182, 2675, 2990, 3127, 2899, 3246, 3421, 3985, 3995, 4039, 4170, 34879, 34881, 1906, 4770 + ], + [ + 0, 4575, 6662, 6662, 5592, 1149, 7003, 1170, 12618, 5576, 34883, 2212, 27, 27, 2671, 21668, 1862, 1862, 6567, + 705, 705, 21666, 5508, 4030, 1153, 4340, 4339, 17481, 353, 4731, 4738 + ], + [1, 2343, 23624], + [2, 9374, 12349], + "-unicode", + [2, 23615, 23622], + [0, 23625, 23626, 2514, 2487], + [0, 25910], + [0, 5245, 27847, 4874, 1317, 25212, 3230, 21180, 91, 1984], + [1, 2343, 23628], + [0, 23629, 23630, 23632, 2523], + [0, 3164, 4339, 1581], + [0, 3421, 3297, 2899, 4193, 1177, 4170, 2026, 3752, 1364, 1575, 192, 1938, 1881, 5467], + "relateurl", + [0, 5982, 27, 705, 4339, 6969, 1973, 5472], + [1, 2343, 23636], + "compressor", + "packer", + [0, 23638, 23639, 23640, 2537], + "uglifier", + [0, 1362, 3164], + [0, 1429, 1431, 4037, 4706, 1364, 1575, 2026, 2899, 4170], + [0, 4342, 4339, 705, 6969, 5982, 27, 1973, 5472, 1862, 34901], + "detect-europe-js", + [1, 2343, 23650], + "alpinejs", + [3, 19403, 11], + "config-no", + "n-conventional", + [2, 23645, 23646], + [2, 23644, 23647], + [3, 10854, 16], + [0, 0, 23653, 23654, 2523], + "lyfill-node", + [2, 23649, 23651], + [0, 1906, 1166, 4481, 4874], + [ + 0, 1473, 7208, 1512, 7009, 7201, 200, 1111, 592, 6621, 6616, 7244, 4166, 4744, 6876, 4231, 25986, 34915, 13735, + 13030, 34916 + ], + [1, 2343, 23656], + [0, 23657, 23658, 23661, 2487], + [0, 31292, 5012, 23826, 1006, 1082, 11869, 19639, 1497, 11478, 11479, 22716, 10898, 10902, 3090, 22720], + [0, 5180, 8648, 811, 816, 10615, 8661, 11868, 4874, 11486, 668, 4042, 4227, 27921, 91, 1984], + [2, 23660, 23663], + "browser-d", + [0, 3709, 27751, 5130, 5354, 17950], + [1, 2343, 23665], + "etection", + "device-detection", + [0, 23666, 23669, 23671, 2537], + [0, 5180, 1457, 20378, 3527, 11481], + "os-detection", + "bot-detection", + [0, 811, 8850, 816, 6373, 10817, 34939, 1405, 4042, 4052, 8849, 3709, 91, 34940, 34942, 27702, 27703, 23560, 34945], + "void", + [0, 3709, 200], + [1, 2343, 23673], + [0, 0, 23675, 23676, 2537], + "self-closing", + [ + 0, 53, 87, 192, 5467, 34951, 34953, 10879, 4874, 34955, 19802, 1165, 13662, 1509, 1567, 1177, 695, 3561, 34958, + 3616, 1894, 3754, 2278, 4333, 4337, 3709, 91, 1984 + ], + [0, 3709, 4358, 91, 695, 4333, 2278, 4329, 3754, 1509], + [1, 2343, 23678], + [0, 23690, 23692, 23693, 2537], + "@bubkoo/commitlint-config", + "@bubkoo/", + [2, 23680, 7625], + [2, 12612, 1541], + [2, 23680, 23682], + [3, 21388, 20], + [2, 23684, 16171], + [2, 23680, 23685], + [2, 23680, 2190], + "asmine", + [2, 5086, 23688], + [0, 16858, 2070, 4361, 1149, 25232, 4597, 4739, 4747, 2822, 4709, 3257, 34967, 3060, 18993, 10780, 34966, 13839], + "capture", + [0, 1906, 1192, 695, 2278, 3549, 4333, 3536, 1939, 1942, 34971, 19812], + [ + 0, 1017, 45, 8221, 18048, 22074, 22075, 2873, 1179, 1623, 2278, 695, 4333, 5376, 134, 1936, 13814, 22874, 22875, + 3257, 17461 + ], + [1, 2343, 23695], + [0, 23697, 23698, 23700, 2537], + "@selderee/plugin-htmlparser2", + [0, 1525, 1632, 1634, 9378, 16858, 3527, 4113], + [ + 0, 442, 11893, 811, 816, 10615, 16934, 16854, 5087, 4874, 34194, 7752, 1610, 1177, 2203, 1192, 3536, 3541, 3549, + 1894, 4039, 4042, 4393, 4481, 91 + ], + "selderee", + [0, 4361, 8221, 6707, 3178], + [1, 2343, 23702], + [0, 23703, 23704, 23710, 2537], + [0, 1700, 3067, 34984, 4533], + [0, 1166, 1173, 1178, 1257, 29224, 1272, 1280, 1362, 1177, 34989, 3150, 3188, 4193, 2924], + "@html-", + "/stylish", + [2, 2649, 23706], + [2, 23705, 23707], + "@sidvind/better-ajv-errors", + [0, 2924, 1932, 34991, 34984, 11100, 6812], + [2, 23712, 23], + [3, 16579, 15], + [1, 2343, 23714], + [0, 23715, 23716, 23717, 4139], + [0, 1082, 1699, 2070, 2856], + [0, 1177, 1894, 4389, 34997], + [0, 8124, 34999, 7701, 20120, 1745, 4363, 1163, 13728, 1179, 8623, 20121, 20123, 20124, 3452], + [1, 2343, 23719], + [0, 23724, 23727, 23728, 2537], + "theme-one-dark", + "@json2csv/plainjs", + [2, 6019, 3888], + [2, 27733, 23725], + [0, 2205, 2822, 1525, 35011, 35008], + "-2", + "renderjson-2", + [0, 1177, 1984, 1894, 7677, 35013], + [0, 8124, 1739, 35015, 1745, 5592, 134, 4298], + "uffers", + [2, 15038, 23729], + [1, 2343, 23732], + [0, 0, 23733, 23734, 2537], + [0, 4874, 91], + [0, 8168, 8124, 181, 4369, 2026, 1745, 1739, 35021, 12659, 4367, 699, 35024, 35026], + [1, 2343, 23737], + [2, 11085, 2634], + [0, 23743, 23744, 23745, 2537], + "pug-loader", + "recomp", + "ilation-simulator", + [2, 23739, 23740], + [2, 4670, 23741], + [0, 5971], + [0, 1866, 2026, 35036, 2899, 3421, 3758], + [0, 8124, 2026, 181, 1781, 1745], + [1, 2343, 23747], + [0, 23748, 23749, 23752, 2487], + [0, 4535, 3460], + [0, 1209, 2026, 35046, 2899, 2025, 35047, 695, 35048, 1330, 35051, 3521, 1389, 2090, 1776], + "@aminya/babel-plugin-replace-import-extension", + "lateurl", + [0, 1283, 17950, 1936, 21043, 35053, 16277, 2026, 1359], + [2, 31806, 31807], + "srcset", + "swiperjs", + [3, 9376, 10], + [2, 23756, 6424], + "postproc", + "cessor", + [2, 23758, 23759], + [1, 2343, 34505], + [0, 4372, 35058, 31512, 4453, 12295, 5131, 1591, 3525, 1896, 5130, 35059, 32054, 35060, 1932, 89, 188, 35062], + [1, 2343, 23764], + [0, 23765, 23766, 23768, 2537], + [0, 35068, 35071, 35072], + [0, 1364, 1610, 2026, 35074, 1192, 3237, 4039, 91], + "rss", + [0, 705, 27, 2671, 2325, 1389, 31360, 15001], + "tributejs", + [1, 2343, 34522], + [ + 0, 35081, 35082, 3233, 27838, 888, 6667, 31937, 6574, 35084, 35085, 35086, 35087, 35088, 35089, 35092, 26467, + 35093, 7734, 35095, 3151, 6771, 35096, 35097, 35099, 35100, 11996, 35102, 35105, 35106, 35107, 35108, 35109, + 35110, 35111, 35112, 17878, 35115, 35117, 11812, 35119, 35122, 10798, 5876, 12340, 35125, 25028, 35126, 35128, + 35129, 35131, 35133, 35134, 24079, 5995, 33741, 35135, 35136 + ], + [1, 2343, 23773], + [0, 0, 23774, 2514, 2537], + [ + 0, 3445, 2929, 2899, 3188, 4039, 4042, 4072, 1362, 3310, 35146, 20463, 4705, 4232, 8850, 4073, 6373, 35141, 816, + 35145 + ], + "toidentifier", + [1, 2343, 23777], + [0, 23778, 23779, 23780, 2537], + [ + 0, 4729, 1091, 1594, 35154, 35155, 35156, 35157, 1209, 3237, 35158, 35159, 35161, 35162, 2026, 35163, 35164, + 35166, 35168, 35169, 1154, 1364, 1536, 1562, 35171, 1130, 97, 35173 + ], + [0, 3278, 1096, 35175, 35176, 4167, 35178, 1532, 35179], + [0, 35181, 35182], + [1, 2343, 23784], + "s-port", + [2, 3209, 23782], + [0, 0, 23786, 23787, 34352], + "sse", + [ + 0, 12473, 4484, 1177, 2205, 4042, 1984, 1894, 91, 53, 4874, 87, 4057, 4523, 7677, 5583, 1938, 11899, 22839, + 22847, 10817, 816, 24621, 5660 + ], + [0, 4383, 4380, 1623, 5256, 35189, 35191, 1698, 22306, 35193], + [1, 2343, 23789], + [0, 0, 23790, 2514, 2537], + [0, 1680, 4874, 16860, 3090, 4228, 23956, 31292], + "agent-base", + [1, 2343, 23793], + [0, 23794, 0, 23795, 2399], + [ + 0, 35205, 35206, 35209, 35212, 35213, 35214, 35216, 35217, 35220, 35221, 35222, 35226, 35227, 35228, 35230, + 35232, 35233, 35235, 35236, 35237 + ], + [0, 1145, 4384, 1973, 5472, 5130, 200, 35239, 35240], + [1, 2343, 23797], + [0, 23798, 23799, 23801, 34352], + [0, 1437, 1792, 2089, 1209, 3718, 26840, 35245, 4431], + [0, 35247], + "mockttp", + [0, 4389, 4384, 2899, 4386, 16237], + "polka", + "next.js", + [1, 2343, 23805], + [0, 0, 23806, 2514, 2487], + [0, 1192, 1177, 2203, 1894, 442, 1193, 53, 1953, 27928, 87, 1939, 1938, 20281, 1982, 1895, 1955, 19344], + [1, 2343, 23812], + "union", + "corser", + "secure-", + [2, 23810, 3797], + [0, 23817, 23819, 23820, 34352], + "eol", + [3, 1895, 15], + "opulist", + [2, 23814, 23815], + [ + 0, 35260, 35263, 35264, 1417, 1693, 15016, 35265, 2133, 2179, 2070, 35266, 2571, 2713, 17403, 3183, 3206, 3431, + 13635, 3433, 3435, 814, 18997 + ], + [2, 15021, 36], + [ + 0, 13614, 1143, 1159, 1537, 1610, 1796, 35268, 9254, 1855, 1177, 14738, 2762, 2822, 35271, 3410, 3421, 4103, + 4135, 4384, 20496 + ], + [0, 4384, 1973, 35273, 1145, 1388], + [1, 2343, 23822], + [0, 23823, 23824, 2514, 2523], + [0, 35279, 35280, 21505, 29174, 35278], + [0, 4384, 3297, 4483, 35282, 4039, 4508, 1894, 29169, 4874, 1834, 35285], + [1, 2343, 23827], + [2, 836, 22715], + [0, 23830, 23833, 23834, 2523], + [3, 7639, 16], + [2, 23828, 176], + [0, 3756, 4393], + "HttpStatus", + [2, 27, 5576], + [0, 4039, 35291, 4255], + [0, 4390, 2150, 2090, 18158, 7204, 3101], + [1, 2343, 23836], + [0, 23838, 23839, 2514, 2487], + "mediation", + [0, 35297, 35299, 35298], + [0, 35291, 4255, 1537], + [1, 2343, 23841], + [0, 2513, 23844, 23845, 2487], + "-retry", + [2, 7737, 23842], + [0, 15288, 15594, 5087, 4874, 1009, 1011, 1596, 668, 1177, 1903, 1938, 1954, 1958, 1192, 1894, 4468, 91], + [0, 35306, 6346, 35307, 35308, 4967, 35310, 5995, 35312, 27448, 14629], + [1, 2343, 23847], + [0, 0, 23848, 23849, 2537], + [ + 0, 15288, 5367, 5371, 6494, 15594, 5087, 4874, 9240, 1009, 1011, 1364, 1527, 1652, 35317, 1177, 1903, 1938, + 1954, 1958, 2675, 1192, 2990, 3363, 5362, 1894, 4342, 4468, 91 + ], + [0, 35306, 6346, 35307, 35308, 5995, 35312, 15001, 2026], + [1, 2343, 23851], + [0, 23852, 0, 23853, 4139], + [0, 1676, 3299, 15160], + [0, 32859, 35324, 35327, 35328, 35329, 1326, 35330, 5995], + [1, 2343, 23855], + [0, 23856, 23857, 23858, 4139], + [0, 1676, 3299], + [0, 442, 6373, 5245, 4874, 20584, 1759, 1177, 1895, 1966, 1982, 640, 1894, 4508, 4514, 91, 4523, 1983, 26744, 1984], + [0, 32859, 35328, 4398, 202, 5995], + "anity", + [2, 1901, 23859], + [1, 2343, 23863], + [3, 2677, 9], + [0, 23864, 7923, 23865, 2523], + [0, 4039, 3188], + [0, 21770, 4449, 1241, 35342, 16330, 29615, 35343], + [1, 2343, 23867], + [0, 23871, 23873, 23880, 2537], + "singular", + "plural", + "camelize", + [0, 2753, 13786, 4507, 35349], + "dasherize", + [0, 4874, 1166, 3505, 4453, 4481, 1906], + "demodulize", + "ordinalize", + "uncountable", + "singularize", + "titleize", + "tableize", + [0, 1241, 21770, 3403, 2090, 7204, 6857, 16330, 35342, 29615, 35343, 3778, 17023], + "classify", + [1, 2343, 23884], + "foreign_key", + [0, 23885, 0, 23886, 34352], + [0, 26925, 35364, 35359, 35367, 35358, 35365, 35363, 35356], + [ + 0, 7009, 7201, 1111, 200, 4744, 1473, 35369, 35371, 590, 6847, 35373, 29002, 35374, 13006, 4403, 1478, 15955, + 35375, 35376, 35377, 32312, 158, 18048, 21881, 20639 + ], + [1, 2343, 23889], + "@messageformat/core", + [0, 23890, 0, 23892, 2443], + [0, 35382, 15019, 2713, 35259, 4431, 35383], + "fast-printf", + [0, 4403, 7009, 1111, 35385, 35386], + [1, 2343, 23898], + "make-plural", + "val-parser", + [2, 9433, 23895], + [2, 18108, 23896], + [0, 23899, 23900, 23902, 2487], + [0, 35392, 1082, 1525, 4232], + [0, 35394, 35395, 1177, 19210, 1999, 2899, 3697, 4042, 4135, 4227], + [2, 23927, 23929], + [0, 2280, 4072, 4533, 4535, 3178, 2632, 5284, 5286, 1925, 5194, 6598, 7075, 6778, 7056, 7192, 1149, 7003], + [1, 2343, 23935], + [3, 5702, 15], + "-function", + "-functions", + [2, 23904, 23906], + [2, 69, 23907], + "gh-release", + "i18next-", + [2, 1351, 18691], + [2, 13843, 23911], + [2, 23910, 23912], + "fs-backend", + [2, 23910, 23914], + [2, 2655, 5995], + [2, 23910, 23916], + "storage-", + [2, 23918, 2325], + [2, 2703, 23919], + [2, 23910, 23920], + "sprintf-", + [3, 10810, 11], + [2, 23923, 7120], + [2, 23922, 23924], + [2, 23910, 23925], + [3, 6021, 10], + "interna", + "ease", + "alization", + [2, 3855, 23930], + [2, 23928, 23931], + [2, 2703, 8840], + [2, 2202, 8840], + [0, 23937, 23938, 23939, 2523], + "gettext", + [0, 4072, 2805, 4121, 4143, 5180], + [ + 0, 1700, 1192, 2675, 3144, 1622, 1177, 1701, 668, 2924, 1894, 842, 1610, 4535, 48, 442, 91, 53, 4874, 2092, + 2990, 3400, 4677, 28639, 192, 1953, 27928, 35403, 4257, 87, 4523, 1939, 1584, 1942, 1938, 20281, 1982, 1895, + 1955, 19344, 16400, 5467 + ], + [0, 2280, 4535, 4533, 4072, 2924, 1464, 14137, 15215, 23634, 2262, 14137, 2632, 3178, 6707, 6708], + [1, 2343, 23941], + [0, 23943, 23944, 23945, 2537], + "gridly", + [0, 22989, 22991, 22997, 23001, 23004, 1519, 1522, 25190, 2071, 26553, 17798], + [0, 2829, 3310], + [0, 1187, 1973, 8791, 200, 2275, 5472, 4990, 4389, 4384, 1166, 2899], + [1, 2343, 23947], + [0, 23949, 23951, 23953, 2443], + "safer-buffer", + [0, 1362, 1437, 2070, 1209, 3127, 3188, 35417, 35419], + "errto", + [ + 0, 19181, 442, 12312, 13414, 4865, 4870, 4874, 6513, 1009, 1011, 7677, 1703, 1177, 15555, 35422, 4193, 35425, + 35426, 4493, 4494, 91, 35428, 1984 + ], + "unorm", + [0, 1783, 1973, 2275, 29352, 1745, 1739], + [1, 2343, 23955], + [0, 23957, 23961, 23962, 2537], + [2, 8293, 23958], + [ + 0, 53, 71, 81, 5717, 5749, 5751, 5757, 5759, 5782, 5788, 5821, 5830, 83, 87, 14128, 90, 97, 35437, 35439, 4874, + 15427, 5990, 1212, 14191, 35440, 17495, 1429, 1437, 35443, 1509, 1525, 1676, 1680, 1700, 35444, 28504, 1687, + 35446, 28137, 13772, 6473, 2020, 35450, 2205, 2215, 33100, 2670, 12788, 35453, 2709, 2742, 26453, 2743, 35455, + 2753, 2856, 1209, 35457, 3093, 7305, 3220, 35461, 3257, 3266, 35462, 3493, 3532, 35463, 3549, 15245, 35465, + 3742, 3762, 35467, 35469, 13780, 4025, 4108, 4135, 5152, 4232, 4296, 35473, 35476, 35479, 35482, 35484, 35485, + 35486, 35487, 35494, 35496, 4449, 4459, 91, 35497, 35500 + ], + "oxide", + "-reflect", + [2, 5258, 23959], + [ + 0, 33640, 17835, 35502, 8862, 811, 15460, 816, 29544, 35505, 4856, 5245, 35507, 17577, 22089, 27299, 6505, 7812, + 5254, 5162, 13418, 35510, 1009, 1011, 1198, 1304, 1364, 35512, 35513, 1431, 21480, 4907, 1544, 1594, 1610, + 35514, 1874, 1177, 35517, 17303, 2026, 35518, 2323, 2338, 35519, 2383, 2384, 2450, 35521, 35523, 20305, 2494, + 35527, 2530, 8163, 3124, 3159, 3183, 35531, 3246, 35533, 3752, 89, 5311, 4042, 4076, 4151, 4193, 17010, 4294, + 35537, 4484, 4535 + ], + [0, 35539, 6564, 1388, 2887, 5351, 8674, 5472, 13428, 1973, 8791, 6969, 1145, 6468, 35540, 6789, 6746, 1149, 7003], + [1, 2343, 23965], + "proxies", + [0, 23966, 23967, 23968, 2487], + [0, 17877, 35547, 1137, 20908, 20991, 1676, 35549, 1736, 2182, 28142, 35550, 35555, 4391, 4449, 4548], + [0, 28192, 35558, 28180, 5245, 28203, 35561, 35563, 6520], + [0, 4419, 17878, 5472], + [3, 1891, 15], + "stai", + [2, 23969, 23970], + [1, 2343, 23973], + [0, 23976, 23978, 23979, 2523], + "pre-suf", + "spawn-sync", + [0, 1209, 10627, 35570, 26827], + ".gitignore", + [ + 0, 4874, 1009, 1011, 1389, 35573, 35575, 1610, 1680, 35576, 35577, 2752, 3188, 3400, 3421, 4039, 4255, 35579, + 35580, 4421, 4474, 12851, 91 + ], + [0, 6969, 5982, 3212, 13106, 4158, 35582, 4420], + "asterisks", + "regular-", + [2, 23981, 7256], + [1, 2343, 23984], + [0, 23985, 23986, 23987, 2537], + [ + 0, 10780, 1292, 1362, 35382, 1525, 1536, 1559, 2020, 2026, 35588, 2070, 2659, 2822, 1209, 3188, 3257, 3330, + 3411, 35589, 4039, 4218, 25192, 35591, 20496, 4449 + ], + [0, 35593, 1389, 1429, 18761, 35596, 1448, 1719, 1177, 18766, 1951, 2899, 705, 35598, 4167, 4193, 4196, 4220, 4389], + [0, 5284, 5472, 27603, 1388], + [1, 2343, 23990], + "dimensions", + [0, 0, 23991, 23996, 2537], + [0, 4384, 4389, 1474], + "resolution", + "heif", + "tga", + "tiff", + [0, 2585, 176, 14903, 6938, 26815, 15847], + [1, 2343, 23998], + [0, 0, 23999, 24000, 2537], + [0, 442, 816, 10615, 1177, 35611, 1924, 1937, 1942, 2203, 29741, 1776, 3090, 3549, 3758, 2907, 4042, 4495], + [0, 4426, 35617, 5284, 7598, 35619, 35620, 35621, 35622, 35625, 35628, 35629, 1424, 8221, 12075], + [1, 2343, 24002], + [0, 0, 24005, 24007, 2537], + "ow", + "p-pipe", + [ + 0, 48, 53, 83, 87, 97, 5583, 1195, 16818, 1593, 1177, 16821, 1895, 1955, 1999, 2182, 35634, 16824, 2675, 2297, + 2876, 2881, 2895, 2904, 2908, 2921, 2925, 2990, 3183, 35637, 3377, 1894, 3774, 4042, 16827, 2924 + ], + "imagemin-webp", + [0, 1675, 6925], + [1, 2343, 24009], + [0, 0, 24010, 24011, 34352], + [0, 7115, 4389, 19988], + [0, 3101, 7046, 7525, 7170], + "is-png", + "pngquant-bin", + [1, 2343, 24015], + [0, 24018, 24019, 24020, 2537], + [2, 2267, 1932], + "pngquant", + [0, 3923], + [0, 1329, 1398, 1429, 35649, 2899, 35650, 4255, 35653], + [0, 3101, 6657, 4430, 353], + [1, 2343, 24023], + "utf7", + [0, 0, 0, 24025, 2443], + "reader", + [0, 3949, 1499, 1179, 5701, 1862], + [1, 2343, 24027], + [0, 0, 8134, 24028, 2487], + [0, 35667, 35668, 35670, 4435, 5396, 3403, 4571, 7204, 4569, 18132, 6270], + "cpx2", + [3, 23479, 11], + [1, 2343, 24034], + "import-size", + "seamless-immutable", + [0, 24035, 14525, 24039, 2537], + [0, 1437, 32972, 2089, 21890, 35675, 3718, 4425], + "mutable", + "on-write", + [2, 1583, 24037], + [0, 2228, 3005, 22832, 6901, 35677, 4262, 18234, 3514, 6681, 3005], + [1, 2343, 24041], + [0, 24042, 24043, 24046, 2537], + [ + 0, 35720, 35797, 35724, 35730, 35781, 35789, 35795, 35799, 35810, 35682, 35684, 35697, 35739, 35750, 35754, + 35769, 35779, 35793, 35685, 35700, 35721, 35741, 35748, 35756, 35785, 35787, 35792, 35812, 35689, 35694, 35743, + 35752, 35762, 35774, 35791, 35805, 35702, 35705, 35706, 35708, 35710, 35723, 35802, 35806, 35709, 35699, 35718, + 35729, 35767, 35772, 35804, 35808, 35713, 35733, 35764, 35811, 35690, 35701, 35717, 35727, 35738, 35761, 35776, + 35783, 35746, 35736 + ], + [ + 0, 2150, 2070, 2323, 3403, 2278, 2899, 89, 1177, 1209, 4039, 1637, 3561, 2924, 1859, 2151, 2759, 1610, 2025, + 2504, 3342, 3824, 1628, 2359, 3744, 2367, 4111, 1165, 2482, 2496, 4307, 35814, 35816, 3427, 4689, 2361, 2960, + 3618, 35819, 4909, 1959, 1879, 1938, 1947, 25925, 35818, 1652, 2054 + ], + "variant", + [2, 9721, 24044], + [0, 89, 5128, 4627, 4963, 181, 5130, 4967, 35821, 4437, 14547], + [3, 2697, 12], + [1, 2343, 24049], + [0, 24050, 24051, 2514, 2487], + [0, 20443, 1676, 26137, 26144, 3427, 3763], + [0, 1173, 1198, 1253, 1267, 1177, 1903, 1958, 1970, 2026, 2164, 2899, 29946, 4257, 4342], + [1, 2343, 24053], + [0, 0, 0, 24054, 2523], + [0, 1317, 35832, 4439], + [1, 2343, 24056], + [0, 0, 24058, 24059, 2523], + "bypass", + [0, 35837], + [0, 1473, 57, 35839], + [1, 2343, 24061], + [0, 0, 0, 24062, 2443], + [0, 6105, 4445, 18241, 5284, 1936, 2585, 24829, 24830, 24843, 6106, 24832, 6110], + [1, 2343, 24064], + [0, 0, 24065, 24066, 2537], + [0, 4874, 34238, 1177, 1895, 1955, 1982, 1894, 1531, 91, 4523, 1983, 1984], + [0, 2062, 35849, 35851], + [1, 2343, 24068], + [0, 0, 0, 24071, 4139], + "metacom", + "metaco", + [0, 4158, 3212, 91, 3163], + "nfiguration", + [2, 24070, 24072], + [1, 2343, 24076], + "metalog", + [0, 0, 24082, 23865, 2537], + "metaschema", + "metautil", + "vm", + "metavm", + "metawatch", + [0, 2899, 1177, 2759, 15854, 1951], + [3, 15793, 16], + "tarhia", + [2, 24083, 24084], + [1, 2343, 24087], + [0, 24094, 24096, 24098, 2537], + "isolation", + "enterprise", + "scalable", + "soa", + "stateful", + "cluster", + [0, 3864], + "interactive", + [0, 53, 29553, 5103, 1894, 91], + [2, 24101, 103], + [ + 0, 89, 5128, 35865, 11000, 8192, 35867, 35869, 3857, 3906, 35868, 35870, 4450, 9044, 3811, 5779, 200, 5131, + 12295, 12296, 5122, 35871 + ], + [1, 2343, 24100], + [0, 0, 24102, 24103, 2399], + [3, 9312, 10], + [ + 0, 48, 53, 81, 87, 90, 11976, 12310, 5476, 1195, 1429, 1177, 2026, 2151, 2193, 2205, 2822, 2832, 3127, 3188, + 2899, 3286, 35877, 3400, 35878, 89, 3824, 2278, 4255, 2924, 4677 + ], + [0, 4451, 5284, 176, 5938, 16504, 8623, 1936, 6956, 24456], + [1, 2343, 24105], + [0, 0, 24106, 24107, 2487], + [0, 2276, 28234], + [0, 4452, 57], + [1, 2343, 24109], + [0, 0, 24110, 2514, 2487], + [0, 29169, 4384], + [1, 2343, 24112], + [0, 24115, 24119, 24123, 2487], + "-vnode-flags", + [2, 2711, 24113], + [0, 25671], + "inferno-", + [2, 24116, 594], + [2, 24116, 6579], + [0, 5517, 442, 9089, 603, 4874, 22839, 1177, 1895, 1915, 1938, 1955, 6526, 2203, 1894, 4493, 91, 4523, 1984], + [2, 6073, 591], + "ToString", + [2, 8924, 24121], + [0, 9183, 977, 16358, 35896, 34877, 34876, 35897, 35898], + [1, 2343, 24125], + [0, 24126, 24127, 24131, 2537], + [0, 1512, 1672, 3188, 35904], + [0, 4856, 6503, 1429, 1474, 1787, 1177, 2899, 3421, 4474, 4487, 91], + [2, 2712, 591], + [2, 2712, 1592], + "humanize", + [0, 3073, 2942, 4251, 1676], + [1, 2343, 24133], + [0, 24134, 24141, 24142, 2523], + [0, 15312, 35917, 17416], + "inherit", + "inheritance", + "klass", + "oop", + "oriented", + [2, 3425, 24139], + [0, 13614, 1159, 9254, 1855, 1177, 2708, 3410, 4103, 4389], + [0, 100, 4647, 6899, 3053, 7260, 1697, 1496], + [1, 2343, 24144], + [0, 0, 7923, 24145, 2523], + [0, 1633, 18718, 3729, 35109, 32900, 6553], + [1, 2343, 24147], + [0, 20896, 24148, 2514, 2523], + [0, 7806, 9227, 6494, 5087, 1536, 1594, 2026, 1192, 3363, 1894, 4468, 91, 4763], + [1, 2343, 24150], + [0, 24155, 24158, 24159, 2537], + "@alcalzone/ansi-tokenize", + "auto-bind", + [2, 17503, 7201], + "yoga-layout", + [0, 2713, 4431, 15019, 35935, 35938, 3923], + "@types/ms", + [2, 11313, 14675], + [0, 4389, 4430, 1537], + [0, 1936, 22115, 57, 353, 3586, 1623], + [3, 6547, 13], + "-exit", + [2, 24160, 24161], + "ack-utils", + [2, 6516, 24163], + "@vdemedes/prettier-config", + [2, 15289, 89], + [3, 3816, 9], + "tools-core", + [2, 24167, 24168], + [1, 2343, 24172], + "print", + [0, 24173, 24174, 24175, 2537], + [0, 24156, 5254, 2738, 3242, 4135, 22776], + [0, 11976, 4874, 7677, 1395, 12690, 3232, 3446, 7461, 9245, 91, 1984], + [0, 5995, 1550, 3230, 3232, 1932, 2844, 1747, 18037, 4799, 91, 2325, 1552, 1542, 3151, 9553, 3766, 35948], + [1, 2343, 24178], + [3, 2718, 12], + [0, 0, 24179, 6273, 2443], + [ + 0, 48, 53, 61, 76, 78, 87, 92, 107, 192, 5467, 9089, 603, 5366, 5087, 4870, 7819, 1009, 1011, 1193, 1317, 1593, + 1177, 1895, 1955, 1978, 2675, 1192, 1209, 3400, 1894, 3957, 4474, 4508, 4514, 91, 3348 + ], + [1, 2343, 24185], + [2, 24184, 4013, 17526], + "inno", + [3, 2719, 9], + [3, 29444, 16], + [0, 24186, 24187, 24189, 2523], + [0, 35957, 16781, 2036, 2856, 3057, 35958, 4135, 4507, 4748], + [ + 0, 192, 22559, 19438, 19181, 442, 11893, 8755, 554, 10879, 4864, 5087, 7637, 7889, 19446, 35960, 8778, 4874, + 5254, 4892, 21626, 1009, 1011, 1193, 16307, 1566, 668, 1177, 1895, 1938, 1939, 1942, 1955, 2020, 2071, 2151, + 2203, 2675, 1192, 2822, 2990, 3144, 1894, 4039, 4474, 91, 4523 + ], + "run-async", + [0, 1192, 91, 12938, 89, 5472], + [1, 2343, 24191], + [0, 24192, 24193, 24194, 2523], + [0, 1437, 1835, 3170, 4135, 4227], + [ + 0, 8778, 5254, 1009, 1011, 1172, 1175, 1195, 1257, 1267, 35968, 1268, 1874, 1177, 1895, 1954, 1955, 2151, 2070, + 2675, 2766, 2297, 2881, 2898, 2904, 2921, 2925, 2990, 3123, 3188, 2899, 1894, 4039, 91, 2924, 4677 + ], + [0, 4469, 35972, 2924, 1194, 91, 4799], + [1, 2343, 25249], + [1, 2343, 24198], + [0, 8998, 1525, 1759, 3232, 4494], + [0, 24197, 34525, 24199, 34352], + [0, 5995, 31012, 35980, 35981, 3232, 3230, 1550, 2844, 1747, 18037, 4799, 91, 200, 13326, 35982, 13325], + [1, 2343, 24201], + [0, 24203, 24205, 24206, 2487], + "fwk", + [0, 35987, 35989], + [3, 2726, 9], + [0, 10817, 4856, 17577, 6503, 4874, 1429, 27445, 1610, 1687, 2899, 4039, 4042, 4474, 91], + [0, 91, 6892, 35993, 4988, 35995], + [1, 2343, 24208], + [0, 24210, 24212, 24215, 2523], + "reify", + [0, 4757, 1138, 1687, 1082, 1084, 35958, 24806, 36000, 36001, 32335, 19441, 36002, 36005], + "exports", + [ + 0, 1166, 3421, 1170, 89, 36007, 2022, 1209, 4039, 4135, 7094, 3471, 4508, 842, 36008, 2188, 3752, 91, 17577, + 4874, 36009, 4880, 4870, 20959, 5254, 15906, 36011, 28142, 9725, 28203, 29139, 603 + ], + "packaging", + "unrun", + [0, 91, 202, 7047, 6639, 4799, 4643], + [1, 2343, 24217], + [0, 24221, 24222, 24225, 2523], + "remark-co", + "de-import", + [2, 24218, 24219], + [0, 4870, 24156, 5254, 36017, 1209, 3242, 36018, 36020, 4135], + [0, 11976, 4874, 7677, 12690, 3232, 3446, 7461, 9245, 91, 1984], + "coffee.md", + "litcoffee", + [0, 5995, 3232, 1932, 1550, 2844, 1747, 18037, 4799, 91, 7163, 2602, 2013, 6868, 7147, 3076, 6865, 13716, 3073], + [2, 24227, 553], + [3, 37196, 18], + [1, 2343, 24243], + [3, 1235, 25], + "3-member-expression-literals", + [2, 24229, 24230], + [3, 24231, 27], + [2, 4635, 5796], + [2, 24232, 24233], + [2, 1267, 13278], + "-cal-buddhist-full", + [2, 10739, 24236], + "cldr-cal-", + "-full", + "chinese-full", + [2, 24238, 24240], + "cldr-cal-c", + [0, 0, 2667, 24252, 4139], + "optic-full", + [2, 24242, 24244], + "dangi-full", + [2, 24238, 24246], + "ethiopic-full", + [2, 24238, 24248], + "hebrew-full", + [2, 24238, 24250], + [0, 91, 4749, 24753, 24754], + "indian-full", + [2, 24238, 24253], + "cldr-cal-i", + "slamic-full", + [2, 24255, 24256], + [2, 6795, 24239], + [2, 24238, 24258], + [1, 2343, 24265], + "persian-full", + [2, 24238, 24261], + "roc-full", + [2, 24238, 24263], + [0, 24270, 24279, 24281, 2523], + "cldr-core", + "cldr-", + "dates-full", + [2, 24267, 24268], + [0, 1209, 4870], + "numbers-full", + [2, 24267, 24271], + [2, 2004, 19895], + "grunt-curl", + "grunt-zip", + [3, 15911, 15], + "emory", + [2, 24276, 24277], + [0, 11976, 4874, 7677, 3446, 7461, 9245, 91, 1984], + "ecma", + [0, 5995, 4799, 91, 36033, 36034, 5547, 3624, 16284, 36036, 36037, 36039, 36040, 36041], + "ecma402", + "jsonc-simple-parser", + [1, 2343, 24285], + [0, 24286, 24288, 2514, 34352], + [0, 2856, 3183, 4296], + [2, 1940, 23688], + [ + 0, 1192, 2675, 1177, 4039, 4468, 4474, 1894, 91, 5087, 4874, 2990, 7892, 36047, 1942, 1938, 1895, 1011, 18285, + 1009 + ], + "flag-icons", + [3, 10697, 15], + [2, 24290, 6082], + [3, 2273, 15], + [2, 24292, 23688], + "grunt-re", + [2, 24294, 2495], + [1, 2343, 24297], + [0, 24300, 24301, 24303, 2523], + [3, 23932, 13], + "country", + [0, 8811, 7681, 2205, 2777, 3157, 3505, 3921], + [0, 11436, 4874, 4880, 1009, 1011, 1166, 1597, 1701, 1177, 1907, 15290, 2020, 89, 4025, 4094, 91], + "dial code", + [0, 91, 4481, 4354, 4532, 553, 36055, 36059], + [1, 2343, 24305], + [0, 0, 24306, 24307, 2537], + [0, 53, 87, 92, 11893, 19441, 8811, 4874, 1009, 1011, 1193, 1622, 1177, 1895, 1192, 1894, 91], + [0, 91, 4481, 8784, 4354, 16790, 1973, 4532, 553], + [1, 2343, 24309], + [0, 24310, 24311, 24312, 2399], + [0, 29891, 1437, 1457, 15261, 24283, 3181, 3188, 36071, 35237, 4039, 21512, 91, 9455], + [0, 4874, 668, 1894, 4384, 4508], + [0, 91, 11540, 24364, 1999, 10906, 6147], + "updates", + [1, 2343, 24321], + [3, 14428, 13], + [2, 24315, 15525], + "inversi", + "on of control container", + [2, 24317, 24318], + "ioc", + [0, 0, 0, 24322, 2487], + [0, 6869, 7296, 4643, 1351, 5284, 4484, 7047], + [1, 2343, 24330], + "empathic", + [3, 547, 8], + "li-framework", + [2, 24325, 24326], + "-prompts", + [2, 24327, 24328], + [0, 24333, 24350, 24357, 4139], + "discover", + [2, 8655, 24331], + [0, 51, 1405, 1437, 1525, 1687, 2070, 2822, 3181, 3188, 814, 4135, 4484, 18272], + "utils-array", + [2, 8655, 24334], + [3, 24335, 13], + [2, 24336, 2150], + [2, 24336, 11996], + [2, 24336, 3729], + [2, 24336, 3101], + [3, 24340, 14], + "ubprocess", + [2, 24341, 24342], + [2, 24336, 7009], + "elementtree", + "leek", + "ssh-config", + "-proxy", + [2, 4339, 24348], + [ + 0, 692, 19861, 4856, 17577, 4865, 7637, 9129, 10949, 6503, 4874, 5251, 20959, 5254, 1429, 2675, 34269, 2899, + 3400, 3421, 1894, 4039, 4474, 4487, 4490, 14970, 91, 31745 + ], + [3, 15592, 14], + [2, 24351, 1633], + "pen", + "@types/open", + "s-name", + [2, 15461, 24355], + [0, 200, 91, 9654], + "@types/split2", + [3, 9240, 12], + [2, 24359, 4575], + [1, 2343, 24365], + [2, 2733, 14606], + [2, 2733, 5130], + "hybrid", + [0, 0, 24366, 24367, 2523], + [ + 0, 1192, 2675, 1209, 4039, 4487, 4468, 3093, 1894, 36090, 1527, 91, 5087, 4874, 36097, 4492, 36088, 15600, 4131, + 36098, 36103, 31194, 4585, 31195, 36100, 1652, 36095 + ], + [0, 671, 4487, 36106, 1894, 1541, 91], + [1, 2343, 24369], + [0, 24371, 24372, 2514, 2487], + "@types/svgo", + [0, 18272], + [0, 4865, 4874, 1512, 2070, 3400, 3403, 4487, 36114, 91], + "icon pack", + [3, 11619, 14], + [1, 2343, 24376], + [0, 24377, 24378, 2514, 2537], + [0, 36119, 1415, 1457, 1556, 1676, 668, 28795, 36120, 3527, 3616, 4025, 4042, 4227, 12444, 26379, 27921, 4459], + [ + 0, 603, 8850, 842, 5245, 4874, 5251, 19839, 2117, 3561, 26712, 1894, 814, 4057, 2278, 4300, 3709, 4359, 4072, + 36123, 4493, 91, 1984, 9252 + ], + "@ioredis/commands", + [1, 2343, 24394], + "-key-slot", + [2, 24093, 24381], + "denque", + [3, 19541, 11], + "guments", + [2, 24384, 24385], + "-error", + "-errors", + "redis-errors", + "redis-", + [2, 24390, 57], + "as-callback", + [2, 18124, 24392], + [0, 24404, 0, 24405, 2537], + "@ioredis/", + [2, 8626, 16609], + [2, 24395, 24396], + [3, 19583, 22], + [3, 10408, 16], + [2, 24399, 10446], + [3, 8826, 10], + "is-errors", + [2, 24401, 24402], + [0, 668, 2191], + [0, 200, 7047, 202, 17526, 10906, 1999, 91, 36130], + "sentinel", + [1, 2343, 24409], + "pipelining", + [0, 24410, 24411, 24412, 2487], + [0, 36135], + [0, 811, 816, 6373, 1389, 4037, 4042, 4255, 36140], + [0, 15253, 1936, 1783], + [1, 2343, 24414], + [0, 0, 24415, 24420, 2399], + [ + 0, 2228, 2899, 29691, 2240, 4019, 36157, 36156, 2300, 36149, 2258, 36160, 4232, 2247, 36163, 2273, 2281, 36165, + 36167, 36153 + ], + "irc-colors", + "node-i", + "cu-charset-detector", + [2, 24417, 24418], + [0, 2845, 2844, 1155, 4496], + [3, 1104, 10], + [1, 2343, 24423], + [0, 0, 24424, 24425, 2523], + [0, 1389, 1177, 2080, 36176, 4389, 36178, 4535], + [0, 1616, 12588, 36181, 36182, 7789, 3428, 6803, 36183, 36185, 36186, 36187, 36189], + [1, 2343, 24427], + [0, 24428, 24429, 24430, 2523], + [0, 2151, 2859, 36194, 21224], + [0, 3400, 3524, 4535], + [0, 3113, 36197, 57, 11806, 22875, 36198, 3656], + [1, 2343, 24432], + [0, 24433, 24434, 24435, 34352], + [0, 1362, 3171, 705], + [0, 1149, 1512, 1525, 2899, 4037, 4193], + [0, 4500, 5592, 4030, 3101, 22115, 3424], + [1, 2343, 24438], + "is-extglob", + [0, 24439, 24442, 24443, 2443], + [0, 705, 1696], + "extglob", + "globstar", + [0, 3297, 2899, 1177], + [0, 4500, 22115, 3424], + [1, 2343, 24445], + [0, 24447, 0, 2514, 2537], + [2, 14503, 7204], + [0, 3183, 36215, 1437], + [1, 2343, 24452], + "globally", + [3, 9509, 9], + "locally", + [0, 24453, 24454, 24455, 34352], + [0, 31081], + [0, 13789, 1011, 1177, 28753, 1680, 2024, 3401, 4481, 91, 4523, 1906], + [0, 91, 4799, 553, 6435, 614, 6731, 3061, 1698, 1781, 7265], + "vanilla", + [1, 2343, 24458], + [0, 24459, 16075, 24460, 2537], + [0, 1562, 36226, 3173], + [0, 1563, 998, 36228], + [1, 2343, 24464], + "is-object", + "kind", + [0, 24465, 24466, 24467, 2537], + [0, 24648, 6327, 3105, 3181, 4745], + [0, 442, 8144, 7639, 6503, 4874, 1414, 36007, 668, 1177, 2899, 3758, 4135, 4494, 91, 4523], + [0, 91, 1745, 1179], + [1, 2343, 24471], + " name", + [2, 24374, 24469], + [0, 24472, 24473, 24474, 2443], + [0, 36241], + [0, 4874, 4508, 91], + [0, 36244, 36245, 29, 36246, 36247, 36248, 91, 1745], + [1, 2343, 24476], + [0, 0, 23733, 24477, 2487], + [0, 1666, 6901, 33777, 91, 1745, 36248, 4508], + [1, 2343, 24479], + [0, 0, 0, 24480, 2537], + [0, 5592, 1745, 1783, 4508, 91, 36245], + [1, 2343, 24482], + [0, 24483, 24484, 24485, 2537], + [0, 3127, 91], + [0, 8147, 6503, 4874, 6520, 1596, 2759, 2899, 3202, 4449], + [0, 6869, 1745, 36263, 5284], + "is-ins", + "ide-container", + [2, 24486, 24487], + [1, 2343, 24490], + [0, 24492, 24495, 24496, 2537], + "esmock", + [0, 1525, 4734, 3275, 15221, 36270, 1149, 1512, 3220, 3188, 7074, 36272], + "wsl", + "subsystem", + [0, 1429], + [0, 36275, 1783, 36276, 36278, 26916, 20672, 1283, 15253, 1179], + [1, 2343, 24498], + [0, 5914, 24499, 2514, 2523], + [ + 0, 549, 4856, 9417, 6503, 36284, 4874, 1429, 1431, 1596, 2899, 36285, 3232, 36289, 1894, 36290, 4232, 4474, + 4490, 31194 + ], + [1, 2343, 24501], + [0, 24502, 24503, 2514, 2399], + [0, 2070, 3348, 1112, 1673, 1676, 4484, 4747, 1398, 1680, 1759, 16544, 1130, 24697, 3951, 36295], + [ + 0, 1414, 3519, 1429, 2323, 2675, 2742, 2899, 3243, 3259, 1552, 4193, 1177, 3260, 4039, 7800, 2203, 3230, 4246, + 4474, 25633, 1894, 36308, 442, 2507, 20085, 4196, 91, 4856, 4874, 2494, 2990, 5245, 6503, 6513, 4892, 2496, + 36307, 25629, 2510, 2529, 25634, 27585, 19441, 1431, 6512, 8536, 18710, 4523, 36303, 4232, 28290, 1942, 28033, + 36305, 9417, 13418 + ], + "kindof", + [1, 2343, 24506], + [0, 0, 24507, 24508, 2523], + [ + 0, 1414, 3242, 1429, 1687, 2070, 2931, 2899, 4484, 4707, 36007, 1177, 20380, 668, 2203, 1457, 3183, 24156, 442, + 3527, 3541, 91, 4856, 17577, 6503, 26584, 2858, 692, 7892, 2075, 36315, 36316, 4523, 36318, 4232, 1964, 36323, + 1012, 13418, 27909, 12123, 5551, 36326, 36331 + ], + [0, 6869, 7296, 4643, 1351, 5284], + [2, 13283, 2899], + [1, 2343, 24513], + "spaces-cli", + [2, 671, 24511], + [0, 24514, 7590, 24515, 2537], + [0, 1012, 1011, 1009, 12145], + [0, 6892, 5286, 5284, 91, 57, 5341, 1177, 6741, 6939], + [1, 2343, 24517], + [0, 24518, 24522, 24526, 2399], + [0, 36342, 18420], + "code c", + [2, 24519, 2885], + "JS code coverage", + [0, 10949, 6503, 4874, 36345, 1567, 36348, 3188, 2899, 3696, 4487, 91, 4526], + "@metcoder95/https-pem", + "verage", + "JS coverage", + [0, 6869], + [1, 2343, 24528], + [0, 24529, 24530, 24531, 2487], + [0, 36356, 36358, 1759, 16837, 695, 3025, 3561, 3616, 16840, 3638, 16841, 25162, 2278, 4228, 4480, 4333], + [ + 0, 36361, 5087, 19799, 7889, 4874, 36362, 36364, 19802, 1009, 1011, 1367, 1177, 1895, 2675, 1192, 33412, 2990, + 36366, 3640, 3672, 1894, 36367, 4468, 91 + ], + [0, 1623, 4329, 2278, 695, 4333, 5260, 1932, 3561, 91], + [1, 2343, 24533], + [0, 24534, 24535, 24538, 4139], + [0, 23433, 1362, 1437, 1486, 1513, 35446, 25879, 32086, 3077, 3183, 36374, 36375, 4562, 4720, 1695], + [0, 1705, 3297, 4039, 4474, 4487, 36377, 91], + "js-calendar", + "v-click-outside-x", + [0, 4532, 91, 23076, 6432, 3383, 10057, 5490], + [2, 1165, 2091], + "5-property-mutators", + [2, 24229, 24540], + [2, 1536, 4408], + "vue-h", + "tml-loader", + [2, 24543, 24544], + [1, 2343, 24547], + [0, 24548, 24549, 24550, 4139], + [0, 1525, 4227], + [0, 1082, 2899, 4135], + [0, 2280, 4533, 4535, 3178, 2632, 5284, 5286, 1925, 5194, 6598, 7075, 6778, 7056, 7192, 1149, 7003], + [1, 2343, 24552], + [0, 0, 24553, 24554, 2443], + [0, 1082, 4135], + [ + 0, 200, 15215, 23634, 24280, 5286, 3595, 1925, 5284, 676, 36390, 2262, 14137, 2632, 3178, 6707, 6708, 4405, + 23635, 1644, 57, 23637, 2280 + ], + [1, 2343, 24556], + [0, 24557, 24558, 24565, 34352], + [0, 9448, 2102, 2755, 4121, 4143, 4227, 4535, 4695, 24777], + [ + 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 19403, 1610, 1700, 1701, 1177, 1895, 1938, 2675, 1192, 2794, 2990, + 3150, 3400, 1894, 4257, 4072, 2924 + ], + "character-", + [2, 24559, 57], + "inople", + [2, 14180, 24561], + [3, 10755, 13], + [2, 8535, 591], + [0, 2280, 4535, 4533, 2924, 1464], + "void-elements", + [1, 2343, 24572], + [3, 13889, 13], + "ddleware", + [2, 24568, 24569], + "code-mirror", + [0, 24573, 24578, 24579, 2523], + [0, 36402], + "github-basic", + "highlight-", + [2, 24575, 1505], + "inconsolata", + [0, 2899, 1177, 1362, 2759, 1954, 1938, 1958, 1903, 1970], + [0, 3778, 1179, 7818, 6953], + "-code-mirror", + [2, 2437, 24580], + "jade-", + "highlighter", + [2, 24582, 24583], + [3, 10755, 14], + "cdata", + [2, 24585, 24586], + [3, 24587, 15], + [1, 2343, 24597], + "offee-script", + [2, 24588, 24590], + [2, 24585, 695], + [2, 24585, 3127], + [2, 24585, 4333], + "verbatim", + [2, 24585, 24595], + [0, 24603, 0, 24604, 2537], + "less-file", + "lsr", + [2, 23151, 705], + "stop", + "twbs", + [ + 0, 97, 4880, 4883, 36409, 36411, 36413, 36415, 36416, 36420, 36422, 36423, 1015, 36424, 36425, 36427, 36429, + 36430, 36432, 36433, 36435, 36437, 36439, 36442, 36444, 36445, 36447, 36448, 36451, 36453, 36454, 1018, 1021, + 36455, 36457, 36458, 36459, 36461, 36463, 36466, 36467, 12265, 1023, 36468, 36471, 36473, 36476, 36477, 36478, + 36480, 36483, 36485, 36487, 36489, 36490, 36491, 36492, 36493, 36495, 36497, 36499, 36502, 36503, 36504, 36506, + 36509 + ], + [0, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], + [1, 2343, 24606], + [0, 24608, 24609, 8039, 2399], + "filelist", + [0, 2070, 2685, 1209, 4135, 4727], + [0, 2272, 3105, 2899, 3381, 4170], + "rake", + [1, 2343, 24612], + [0, 0, 24613, 2514, 2399], + [0, 8862, 811, 816, 10817, 4874, 1317, 1894, 4042, 4484, 91, 1984], + [1, 2343, 24615], + [0, 0, 24616, 24618, 2523], + [0, 11976, 107, 34715, 1437, 12607, 668, 2205, 2553, 3105, 36526, 3400, 36528, 3714, 7917, 1984], + "video-worker", + [0, 1936, 1283, 2574], + [3, 1198, 14], + "nnotate-pure-calls", + [2, 24619, 24620], + [3, 19449, 20], + "nk", + [2, 24622, 24623], + [2, 16819, 2143], + "-nk", + [2, 7628, 24626], + [1, 2343, 24629], + [0, 24630, 24632, 2514, 2523], + [ + 0, 8862, 811, 8850, 816, 6373, 10895, 36534, 1556, 16230, 668, 28795, 36538, 2807, 3090, 36536, 3189, 3510, + 15450, 3714, 4042, 4057, 15451, 27921, 36537 + ], + "parallax", + [0, 5757, 4874, 7677, 19336, 1446, 1177, 1905, 1894, 91, 1984], + "youtube", + "vimeo", + [1, 2343, 24636], + [0, 0, 24637, 24638, 2537], + [0, 3421, 2070, 1734, 2675, 2297, 2907, 1177, 4042, 4072, 1597, 1596, 2908, 17232, 5561, 36544, 1938, 2915], + [0, 614, 6564, 36, 5576, 1388], + [1, 2343, 24640], + [0, 24641, 24642, 24643, 2537], + [0, 4243, 23462], + [0, 1389, 36552, 1177, 2759, 2899, 3202, 4068, 31136, 4545], + [0, 4545, 1871], + [1, 2343, 24646], + "css-url-embed", + [0, 0, 24647, 24649, 2523], + [ + 0, 20870, 36559, 24523, 826, 4874, 1079, 28400, 1414, 1610, 36560, 668, 1177, 2064, 2675, 1192, 31808, 29197, + 3313, 2658, 4481, 91, 4729 + ], + "@gerrit0/mini-shiki", + [0, 1612, 27, 2671, 1862, 705, 7085, 7289, 4731, 7102], + [1, 2343, 24654], + [2, 2767, 12608], + [2, 2767, 8751], + "walkdir", + [0, 24655, 24656, 24657, 2537], + [0, 9315, 31265, 23289, 2051, 2745, 36568, 12449], + [0, 36571, 12396, 9363, 4874, 1414, 1894, 3985, 3998, 4481, 4505, 91, 1906], + [0, 6892, 7234, 1563, 25154, 1644, 3729, 3958, 3984, 36573, 4141, 1646, 5341, 353, 1633, 4549], + [1, 2343, 24659], + [0, 24660, 8134, 24661, 2537], + [0, 36578], + [0, 17023, 3778, 6988, 16114, 8623, 36580, 4552, 5401, 11512], + [1, 2343, 24663], + [0, 24664, 24667, 24669, 2523], + [0, 9315, 18072, 12447], + "cssfontparser", + "moo-color", + [0, 9363, 4874, 1414, 3137, 27008, 27010, 1894, 3985, 3998, 4481, 4505, 91, 1906], + [2, 1199, 15525], + [ + 0, 23266, 36587, 614, 6435, 3984, 36573, 3958, 26564, 2587, 36588, 36589, 3273, 1351, 1783, 1936, 6523, 1633, + 6892, 202, 12414, 4647 + ], + [1, 2343, 24671], + [0, 0, 16529, 24672, 2523], + [0, 35670, 27280, 18132, 4558, 3403, 4571, 7204, 4569, 4166, 16159], + [1, 2343, 24674], + [0, 24675, 0, 24676, 4139], + [0, 17180, 2155, 36602, 36604, 20508, 3923], + [0, 2056, 4560, 15008, 36606, 12666, 3101, 7682], + [1, 2343, 24678], + [0, 24679, 24680, 24681, 2487], + [0, 36612, 1371, 1437, 36611, 4135, 20044, 1543, 16184, 2960, 2744], + [0, 1906, 1166, 24491, 4294, 1470, 36615], + [0, 3378, 3076, 29096, 22005, 3329, 4354, 16790, 200, 1237, 3383, 15525], + [1, 2343, 24683], + [0, 0, 0, 24684, 2537], + [ + 0, 12831, 1002, 36621, 36622, 36623, 36626, 36628, 36630, 36632, 36637, 36639, 36641, 36642, 36643, 36646, + 36649, 36650, 36653 + ], + [1, 2343, 24686], + [0, 24687, 24691, 24692, 2399], + [0, 3763, 3757], + "@jest/e", + "nvironment", + [2, 24688, 24689], + [0, 1158, 3421, 4770, 1082, 2899, 1177, 13614], + [0, 7119, 1002, 25658], + "fake-timers", + [2, 552, 24693], + [1, 2343, 24696], + [0, 0, 24698, 24699, 2523], + "sql-highlight", + [0, 1566, 2899, 4170], + [0, 1002, 4565], + [1, 2343, 24701], + [0, 24702, 24703, 13533, 2399], + [0, 3008, 3173, 4121], + [ + 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 1610, 1700, 1701, 1177, 1895, 1938, 2092, 2675, 1192, 2990, 3144, + 21016, 3400, 1894, 4257, 2924 + ], + [1, 2343, 24705], + [0, 24706, 24707, 24708, 2523], + [0, 15560, 23783], + [0, 1148, 1389, 1414, 2899, 3697, 20010, 20012, 4535], + [0, 7134, 57, 12831, 1002, 1644, 3766, 1871, 3767, 1646], + [1, 2343, 24710], + [0, 24711, 24714, 24716, 34352], + [0, 2139, 36681, 3173, 3763, 4507, 4548, 36680], + "-escapes", + [2, 11948, 24712], + [ + 0, 5517, 30494, 36688, 20224, 36694, 36687, 7746, 4874, 36685, 11305, 36691, 7752, 29891, 23247, 7677, 1410, + 1610, 2685, 33479, 30889, 2658, 7798, 28531, 4393, 4483, 36684, 91, 1984 + ], + "matchers", + [0, 4568, 27, 36696, 7085, 7289, 705, 2671, 4548, 1612], + "extended", + [1, 2343, 24720], + [2, 38074, 1177], + [0, 24721, 24722, 24735, 2537], + [0, 25493], + [0, 3505], + "@pmmmwh/react-refresh-webpack-plugin", + "cape-html", + [2, 5600, 24724], + "ump.js", + [2, 5086, 24726], + "ndomcolor", + [2, 12178, 24728], + "eslint-w", + [2, 2546, 4406], + [2, 24730, 24731], + "jump.js", + "randomcolor", + [0, 4569, 4571, 35668, 25493, 4014, 7204, 6857, 3403, 1263, 6437, 6639, 6436, 36706], + [1, 2343, 24740], + "recharts", + [2, 30495, 674], + "web-vitals", + [0, 24741, 24742, 24743, 2487], + [0, 3084, 4449], + [0, 1148, 2899, 3697, 705, 4135, 36712], + [0, 4575, 1388, 36715, 888, 1644, 57, 36716, 36717, 36718, 36719, 4569, 36720, 4576, 15525], + [1, 2343, 24745], + [0, 0, 24747, 24748, 2537], + "libxmljs2", + [0, 1596, 2759, 14529, 3774], + [0, 8426, 9254, 3656, 4577], + [1, 2343, 24750], + [0, 24751, 24752, 24755, 2523], + [0, 2713, 17395, 25700, 36732, 17416], + [0, 1090, 1593, 36736, 3435, 3438, 4092, 4100, 4389], + "plugnplay", + "pnp", + [0, 614], + [1, 2343, 24757], + [0, 0, 9530, 24755, 4139], + [1, 2343, 24760], + [2, 814, 13987], + [0, 0, 24761, 24763, 2537], + [ + 0, 68, 192, 5467, 442, 6375, 1525, 1177, 1895, 1955, 2203, 2675, 1192, 2990, 29197, 3400, 1894, 23901, 27302, + 4257, 91, 4523 + ], + "@vercel/h3", + [0, 3348, 6926, 6668, 36760], + [1, 2343, 24765], + [0, 24766, 24767, 24768, 2399], + [0, 20573, 1687, 2929, 11481], + [0, 36767, 1999, 29283, 34078], + [0, 1145, 36769, 8791, 8745, 1973], + [1, 2343, 24770], + [0, 0, 24771, 24772, 2523], + [0, 4384, 2272], + [0, 1002, 7020, 4354, 16790, 13017], + [1, 2343, 24774], + [0, 24775, 24776, 24784, 2523], + [0, 17058, 36781, 7076, 25814], + [0, 17584, 1429, 15990, 1527, 1652, 2675, 2759, 3188, 2899, 21477, 4039, 4131, 4193], + "worker-farm", + "leak-detector", + [2, 2769, 24778], + [3, 20371, 12], + [2, 24780, 14922], + "@aneuhold/be-ts-lib", + "@vercel/koa", + [0, 36785, 1528, 6458, 3358, 16094, 13729], + "@vercel/hono", + "@jimp/diff", + "@jimp/", + [2, 24787, 9711], + "@jimp/types", + [1, 2343, 24803], + "@jimp/t", + "est-utils", + [2, 24791, 24792], + "@adonisjs/ace", + [2, 12327, 10809], + [3, 475, 10], + [2, 24801, 8915], + "manipulation", + [2, 12327, 24798], + "resize", + [3, 24794, 11], + [2, 24796, 24815], + [0, 0, 24804, 24814, 4139], + [0, 9516, 9515], + [3, 1603, 9], + [2, 24805, 3751], + [2, 10880, 1283], + [3, 5617, 14], + "eter", + "-decorator", + [2, 24809, 24810], + [2, 11958, 24811], + [2, 24808, 24812], + [0, 3378, 3383, 1460, 7020], + "bodyparser", + [2, 24825, 686], + [1, 2343, 24820], + [2, 29401, 166], + [2, 13055, 25721], + [0, 0, 24824, 24834, 2537], + " editor", + [2, 6105, 24821], + "wysiwyg ", + [0, 48, 53, 87, 94, 1178, 1198, 1177, 1881, 1938, 2899, 3400, 3421, 4039, 4042, 4045, 28038, 4535], + [3, 475, 12], + "html editor", + [2, 24823, 24826], + [2, 24796, 7141], + "rich editor", + [2, 6106, 24821], + "editable", + [2, 1563, 24831], + "vanillajs", + [0, 1155, 7020, 2649, 20215, 2574, 36796, 36798, 1145], + [1, 2343, 24837], + "@adonisjs/env", + [0, 24838, 24839, 24840, 2443], + [0, 36805, 36809, 36806], + [ + 0, 4874, 11016, 13061, 16480, 36812, 11018, 1639, 36814, 2832, 91, 1983, 1984, 36815, 188, 4639, 36820, 36821, + 36816, 36817 + ], + [0, 181, 188, 8588, 5131, 4967, 4627, 4963], + [2, 24846, 24847], + "wysisyg", + "rte", + [1, 2343, 24845], + [0, 0, 24851, 24865, 2523], + [3, 24828, 11], + "vents", + "nanotimer", + "temporal", + [3, 1387, 9], + [0, 2899, 1177, 2759, 1317, 4342, 1311, 1954, 1938, 1958, 1903, 1948, 1970], + "erialport", + [2, 24850, 24852], + "firmata", + [2, 24796, 24858], + "beautifier", + [2, 2294, 24856], + "fold", + "0A02", + "0A21", + "16x2 LCD", + "20x4 LCD", + "2D120X", + "2Y0A02", + [0, 27, 10376, 4590], + [1, 2343, 24870], + "2Y0A21", + "74HC595", + "ADXL335", + [0, 24901, 24903, 2514, 2537], + [2, 24796, 3428], + "ADXL345", + "ALS-PT19", + "ALSPT19", + "ANALOG", + "arduino", + "Ardumoto", + "AT42QT1070", + "BLINKM", + "BMP180", + "Continuous Rotation", + "DEFAULT", + "Diffused LED", + "DS18B20", + "Edison Arduino Block", + "Edison ", + "GPIO Block", + [2, 24886, 24887], + "I2C Block", + [2, 24886, 24889], + "PWM Block", + [2, 24886, 24891], + "edison", + "ESPLORA", + "EV3", + "galileo-io", + "galileo", + "GP2D120XJ00F", + "GP2Y0A02YK0F", + [2, 24925, 24926], + [0, 4593], + "GP2Y0A21YK", + [0, 4384, 2276], + "GP2Y0A41SK0F", + "GY-521", + "GY521", + "HD44780", + "High Torque", + "Hitec HS-35HD", + "Hitec HS-", + [1, 2343, 24939], + "Hitec HS-422", + [3, 24912, 11], + "5BB", + [2, 24913, 24914], + "625MG", + [2, 24910, 24916], + "Hitec HS-6", + "46WP", + [2, 24918, 24919], + "755HB", + [2, 24910, 24921], + "805BB", + [2, 24910, 24923], + [3, 24871, 11], + "ealth", + "Hitec HS-85MG", + "HMC5883L", + "HMC6352", + "Hobby Motor", + "HRLV-MaxSonar-EZ0", + "HT16K33", + "HTU21D", + "i2c", + "Infrared Proximity Sensor", + "Infrared ", + "Sensor", + [2, 24936, 24937], + [0, 24941, 24957, 2514, 2487], + "intel edison", + [ + 0, 12105, 668, 1457, 2139, 36838, 24762, 36840, 24783, 30162, 24785, 36841, 36842, 36843, 24818, 28111, 29471, + 36845, 24738, 28441, 36848, 30929, 36850, 36852, 31275, 36855, 36859 + ], + "intel galileo", + "ISL29125", + "JHD1313M1", + "Joystick", + "LCD1602", + "LCD2004", + "LCM1602", + "LED", + "LIDAR-Lite v2", + "Ludus Protoshield Wireless", + [3, 24951, 17], + "LV-MaxSonar-EZ0", + [3, 24953, 14], + [2, 24954, 1278], + "MCP23008", + [ + 0, 3242, 1091, 1138, 1758, 1999, 2714, 3467, 3445, 1983, 1413, 1437, 1676, 2020, 3144, 2658, 17913, 25671, 4707, + 1438, 1759, 2022, 2754, 4039, 4135, 4238, 4391, 1984, 1458, 1503, 2026, 2105, 3203, 4474, 1668, 2151, 2182, + 3761, 3784, 33145, 842, 24156, 11305, 36861, 26453, 29133, 3181, 3547, 4459, 29105, 31142, 1109, 33200, 1483, + 2794, 3173, 3310, 4294, 91, 5087, 4874, 1154, 1869, 36863, 20921, 36864, 36867, 5364, 5245, 27066, 26584, 1107, + 1151, 36868, 36869, 36871, 5254, 24358, 35563, 13834, 5071, 31008, 36872, 6541, 36873, 36874, 25892, 36875, + 8997, 4864, 28137, 2069, 36877, 3386, 16831, 36878, 34118, 36879, 9129, 12461, 27959, 36880, 7746, 5542, 30493, + 33761, 36882, 31071, 23843, 24725, 36885, 11907, 36887, 36889, 15887, 36890, 36892, 5328, 36895, 36897, 36899, + 29125, 36901, 36906, 36909, 36911, 36915, 36917, 36918, 36920, 36922 + ], + [2, 24925, 9257], + "MCP23017", + "MCP9808", + "Metal Gear", + "MJKDZ", + "MMA7361", + [2, 24796, 2942], + [1, 2343, 24971], + "MMA7660", + "MMA8462Q", + "MPL115A2", + "MPL3115A2", + "MPR121", + [0, 24982, 0, 24990, 2537], + "MPR121QR2", + "MPU-6050", + "MPU6050", + "MUXSHIELD2", + "NXT", + "OA41SK", + "PARALLEL", + "PCA9685", + "pcduino", + "PCF8574", + [0, 36927, 1147, 34631], + "PCF8574A", + [2, 24796, 32276], + "PCF8574AT", + "PCF8574T", + "@paralleldrive/cuid2", + "PCF8575", + "@poppinss/colors", + [0, 1851, 2656, 15204, 30960, 31482, 5317], + "PCF8591", + "photon", + "PIR Motion Sensor", + "QTOUCH", + "raspberry pi", + "raspberry", + "raspberrypi", + [2, 24999, 25005], + "@poppinss/", + "raspi-io", + "RedBoard", + "RGB LED", + "robotics", + "rpi", + "dumper", + "Servo", + "Shift Register 8-Bit SN74HC595", + [3, 25007, 14], + "SI7020", + "spark", + [2, 24999, 25017], + "spark core", + [1, 2343, 25035], + "spark-io", + "SparkFun Essential Sensor Kit", + "SparkFun ", + "macroable", + "Sensor Kit", + [2, 25016, 25018], + "Speed controller", + "Temperature", + "tessel 2", + "Thumb Joystick", + "TINKERKIT", + "TMP36", + "TSL2561", + "Ultrasonic Range Finder", + "usb", + "VKEY", + "Weather Shield Arduino", + [3, 25030, 15], + "Photon", + [2, 25031, 25032], + [2, 24999, 594], + [0, 0, 25036, 2514, 2537], + [0, 2899, 2759, 4342], + [1, 2343, 25041], + "@hapi/formula", + "@hapi/pinpoint", + "@hapi/tlds", + [0, 0, 25043, 25044, 2537], + [2, 6473, 3020], + [ + 0, 53, 87, 192, 5467, 5583, 1208, 1429, 1443, 1503, 1597, 16656, 1637, 1701, 1177, 1881, 1938, 2675, 2297, 2878, + 2881, 6385, 2900, 2904, 2910, 2990, 2899, 3400, 3561, 3566, 16658, 3613, 3672, 16578, 3758, 4042, 4320, 4323, + 4328, 4535 + ], + [0, 158, 11328, 4596, 36941, 1936, 1623, 5284, 6400, 5122], + [1, 2343, 25046], + [0, 25048, 25050, 25051, 2523], + "youch", + [0, 36951, 1496, 4002, 36950], + "youch-terminal", + [0, 3421, 2899, 1177, 2022, 35299, 3923, 1889, 1954], + [0, 4607, 17462, 2090, 7204, 4262, 3403], + [1, 2343, 25056], + [2, 24801, 25055], + "recoil", + "ssembler", + [0, 25057, 25061, 25062, 2537], + [0, 1329, 4431], + [2, 25059, 25082], + "@adonis", + "gzip-js", + [0, 4389, 4603], + [0, 4597, 17461, 6270, 1398, 3101], + "commitplease", + [1, 2343, 25065], + [0, 25066, 25068, 25078, 2443], + [0, 36965, 21539, 2215, 2685, 36966, 36967, 3369, 36968, 36971, 35299, 36972, 36975, 4597, 36976], + "grunt-git", + [0, 1177, 1889, 2022, 2899, 3421, 3923, 4039, 4193], + "-authors", + [2, 25067, 25069], + "-webkit", + [2, 3541, 25071], + "mpare-size", + [2, 21927, 25073], + [3, 10727, 15], + [2, 25075, 3766], + "karma-j", + [0, 2323, 36981, 4597, 2090, 6771, 2150, 7046], + [2, 26505, 6579], + [1, 2343, 25081], + [0, 25084, 25087, 25093, 34352], + [3, 835, 16, 7], + [2, 25085, 25086], + [0, 4597, 4431], + [3, 475, 8], + [3, 24165, 17, 8], + [0, 2494, 4389, 4600], + "grunt-html", + "owercopy", + [2, 2237, 25089], + "-local", + [2, 14336, 25091], + [0, 4597, 2323, 17461, 24456, 3101, 1871, 2585, 128], + "prototyping", + [1, 2343, 25096], + [0, 9652, 0, 25097, 2537], + [0, 4597, 4070, 22850, 2323], + [2, 24796, 2190], + "@japa/assert", + [1, 2343, 25101], + [0, 25102, 25105, 25107, 2523], + [0, 36996, 1851, 36997, 2202, 24462, 19094, 36998, 37000], + "@japa/expect-type", + "@japa/file-system", + [0, 1389, 2759, 21526, 3459, 37002, 30164, 4387, 4389, 4770], + "config-chain", + [0, 4607, 965, 23361, 37004, 1687, 7163, 1388], + "@japa/runner", + "code-quality", + "@japa/snapshot", + [1, 2343, 25112], + [0, 25113, 25116, 25117, 2487], + [0, 20378, 4042, 668, 3561, 3530, 27921], + [2, 25115, 15244], + [3, 7895, 14], + [ + 0, 4729, 1415, 27438, 1594, 984, 3189, 30023, 3445, 2278, 4200, 3510, 1759, 11480, 3266, 3493, 4072, 1544, + 28119, 1457, 28865, 4955, 37012, 34928, 3527, 1615, 1869, 31308, 16860, 3090, 58, 9743, 1763, 2007, 21688, + 37013, 3613, 37014, 37015, 24759, 30787, 37017, 24725, 1573, 10895, 3616, 29444, 8862, 31292, 28465, 4060, 811, + 28572, 18584, 5180, 28575, 16808 + ], + [0, 4967, 5130, 11498, 5331, 37019, 1983], + [2, 25119, 25121], + [3, 10844, 11], + [1, 2343, 25123], + "-console", + "argon2", + [0, 25124, 25132, 25133, 2537], + [0, 25375, 2071, 2151, 37024, 26479], + "knifecycle", + "yerror", + "edge.js", + "@mer", + "maid-js/mermaid-cli", + [2, 25128, 25129], + "mermaid", + [0, 6494, 4864, 4874, 2026, 4493, 91, 1983], + [ + 0, 1983, 5592, 37028, 37029, 37030, 37032, 2026, 37034, 36, 37036, 7433, 37031, 37038, 1932, 8172, 4083, 5995, + 37039, 37040 + ], + [1, 2343, 25136], + "architecture", + [0, 25139, 25149, 25150, 2537], + [2, 25138, 25151], + "ts-node-", + [ + 0, 188, 1983, 9348, 8114, 37052, 7797, 36805, 10984, 6371, 37047, 37046, 24097, 37049, 7639, 11016, 37051, 9312, + 25447 + ], + "-to-glob", + [2, 16774, 25140], + "@jscpd/html-reporter", + "@jscpd/", + [2, 25143, 139], + "-sarif-reporter", + [2, 2824, 25145], + "@jscpd/core", + [2, 25143, 207], + [ + 0, 3467, 4200, 1676, 2020, 3478, 23802, 3266, 4039, 4042, 4135, 1984, 668, 3537, 3742, 7799, 19571, 13151, + 28519, 1457, 2151, 2182, 3183, 1894, 3757, 3084, 3170, 3527, 27921, 91, 4874, 1615, 2226, 2990, 3105, 5245, + 8646, 30795, 8146, 7812, 3509, 4864, 7892, 3067, 37067, 9245, 8778, 5946, 3114, 4057, 37017, 21122, 3107, 8850, + 34971, 37061, 37065, 8862, 37074, 3112, 15277, 37062, 6373, 22823, 811, 3668, 37059, 7641, 37070, 37056, 1567, + 816, 37058, 37069, 37071 + ], + [0, 1983, 188, 4614], + "maintained", + [1, 2343, 25153], + [0, 25166, 25171, 25173, 4139], + "cst", + "adonisjs", + "jscs-jsdoc", + "jscs-", + "wikimedia", + [2, 10832, 25158], + [2, 25157, 25159], + "rved-words", + [2, 4020, 25161], + "to-double-quotes", + "to-single-quotes", + "vow-fs", + [ + 0, 30023, 1983, 3510, 15452, 26379, 3530, 4441, 27921, 37080, 2024, 37082, 3090, 37084, 36874, 26380, 37085, + 37014, 37087, 37092, 37093 + ], + "7.0.0", + [2, 5857, 25167], + [2, 8649, 22785], + "unit-coverage", + [ + 0, 4729, 1415, 3171, 37095, 2832, 26385, 3742, 24324, 2559, 37096, 1084, 4874, 13204, 1006, 37013, 7812, 37097, + 20374, 37100, 13471, 826, 8806, 5180, 6515, 8809 + ], + "style guide", + [0, 1983, 1984, 1973, 1192], + [1, 2343, 25175], + [0, 25176, 25180, 25182, 2523], + [0, 1437, 1209, 2720, 3183, 4726, 2708, 3077, 4294, 1257, 37108], + "@jsdoc/salty", + "catharsis", + [2, 20398, 57], + [0, 1906, 2323, 1172, 2899, 3220, 4170, 37110, 705, 1362, 1175, 2338, 2384, 37115, 37117, 2357, 37113, 1267], + "requizzle", + [0, 5592, 200, 32276, 4166, 8786, 5130, 1896, 13527, 1523, 1525, 35539, 3741, 2720], + [2, 25184, 25186], + "@aneuhold/", + [1, 2343, 25187], + "core-ts-api-lib", + [0, 25196, 0, 25197, 2537], + "current", + [2, 1469, 4479], + [2, 25188, 25189], + "object-to-", + "spawn-args", + [2, 25191, 25192], + [2, 25195, 1095], + [3, 25183, 18], + [0, 1687, 37123, 2070], + [0, 5472, 4386, 1973, 37125], + [1, 2343, 25199], + [0, 25201, 25206, 25207, 2487], + "ool", + [ + 0, 4449, 2070, 3171, 3917, 22990, 1437, 2975, 4753, 37130, 4135, 4734, 1448, 4566, 1525, 3181, 3105, 37131, + 2613, 37132, 36323 + ], + "master", + "config-master", + [2, 25184, 25205], + "main-scripts", + [ + 0, 2675, 2899, 4474, 1894, 6520, 91, 4865, 27098, 4874, 15743, 37139, 3400, 6503, 20290, 3720, 5254, 28189, + 37135, 192, 37137, 9129, 4131, 7639, 4232, 12458, 5467 + ], + [0, 29641, 4617, 7188], + [1, 2343, 25210], + "jsr", + [0, 0, 2667, 2514, 2537], + "data-urls", + "decimal.js", + "saxes", + [1, 2343, 25218], + "symbol-tree", + "w3c-xmlserializer", + "whatwg-url", + [0, 25222, 25223, 2514, 2537], + [2, 25261, 25262], + "sugar-free", + [2, 3192, 25220], + [0, 1104, 1496, 2012, 2061, 2070, 2685, 2741, 4227, 91, 4597, 4734, 4747], + [ + 0, 22909, 37149, 22821, 4865, 37152, 9129, 6503, 4874, 28198, 22900, 18438, 4891, 28189, 4892, 1009, 1011, 1177, + 2899, 4039 + ], + "webidl2js", + [1, 2343, 25226], + [0, 0, 25227, 2514, 34352], + [0, 2899, 3188, 2924, 91, 4874, 4677, 6503, 37157, 1584, 603], + [2, 25239, 25240], + [1, 2343, 25234], + "browser-re", + [2, 25230, 5460], + "cssom", + "nwmatcher", + [0, 25236, 0, 25241, 2487], + "selenium-s", + [0, 36805, 37163, 23423, 17494, 5337], + "tandalone", + [2, 25235, 25237], + [3, 8647, 12], + "li", + [0, 188], + [1, 2343, 25246], + "13.0.0", + [2, 5857, 25243], + "@trapezedev/project", + [0, 0, 25247, 25248, 2523], + [ + 0, 53, 61, 71, 4851, 87, 4856, 6503, 4874, 1011, 1191, 1195, 18571, 1429, 1628, 1177, 37170, 2899, 3951, 4039, + 4042, 4045, 4069, 4421, 4469, 91, 4533, 188, 4634, 4645, 19469, 4646, 2924, 4677 + ], + [0, 188, 1227, 1172, 91], + [0, 25260, 25258, 2514, 34352], + [2, 5051, 25257], + "results-interpreter", + "5.2.0", + [2, 5857, 25252], + "unicode-1", + "1.0.0", + [2, 25254, 25255], + "lice-ansi", + [ + 0, 53, 68, 5611, 37178, 15273, 19181, 442, 5245, 1006, 4874, 5254, 1009, 1011, 7677, 23203, 1177, 19492, 1945, + 1953, 19623, 1955, 1982, 17310, 1894, 4474, 1531, 91, 1983, 1984 + ], + "splash screen", + [0, 1676, 1994, 1996, 2000, 19186, 4135], + [3, 225, 10], + "5/blanditiis-numquam-expedita-neque", + [1, 2343, 25301], + "stylish", + [1, 2343, 25267], + [2, 25303, 25304], + [0, 0, 25268, 25270, 2523], + [0, 1397, 1192, 188], + "deeks", + [0, 188, 6609, 2999], + [1, 2343, 25273], + "doc-path", + [0, 25274, 25275, 25278, 2487], + [0, 37192, 37049, 37190], + [0, 24226], + "json2csv", + "csv2json", + [0, 2679, 23932, 37202, 1932, 188, 6284], + "csv-2-json", + [3, 25219, 12], + [1, 2343, 25282], + [0, 25283, 25286, 2514, 2537], + [0, 1437, 2570, 33215], + [2, 25280, 25285, 25288], + [3, 780, 9], + [ + 0, 53, 87, 37211, 1006, 32109, 5087, 13204, 37213, 37214, 1195, 37215, 1567, 1628, 2092, 2651, 1192, 2832, 2990, + 37217, 3144, 3177, 16581, 11801, 3618, 1894, 3754, 37220, 4227, 4307, 4333, 4334, 4337, 4468, 4469, 91, 4027, + 188, 4633, 2924, 4677, 4681, 4689, 19235 + ], + [1, 2343, 25289], + "aut-officiis-quae", + [0, 0, 25290, 25291, 2537], + [0, 5087, 4874, 1192, 3951, 4042, 4468, 91, 188, 4629], + [0, 188, 91, 4636], + "milliparsec", + [1, 2343, 25295], + "sort-on", + [0, 25299, 25300, 2514, 2523], + "@typ", + "icode/eslint-config", + [2, 25296, 25297], + [0, 5216, 28126, 37049, 30206, 1457, 2856, 37096, 3090, 3189, 30230, 3510, 3530, 15451, 27921, 29161, 30959, 4745], + [ + 0, 104, 31940, 8648, 811, 816, 6373, 10615, 33179, 37232, 20374, 29891, 11016, 17494, 34157, 5337, 11018, 25092, + 13393, 1549, 1759, 37235, 17850, 2559, 3294, 37236, 32977, 4039, 4042, 4076, 1531, 4493, 1983, 188 + ], + [0, 25305, 25306, 2514, 34352], + [1, 2343, 25412], + [3, 25284, 13], + "oloremque-voluptas-facere-nemo", + [0, 2570, 3008], + [0, 1175, 1193, 1240, 1567, 1192], + [2, 25280, 25391], + [1, 2343, 25309], + [0, 25310, 0, 25311, 2537], + [0, 37247, 2591], + [0, 188, 4643], + "0.0.0", + [2, 25254, 25312], + [1, 2343, 25315], + [0, 25316, 25317, 2514, 4139], + [0, 37049], + [ + 0, 188, 1192, 1437, 2020, 21665, 1177, 4042, 4135, 2026, 2924, 1836, 2151, 1610, 3758, 4614, 1193, 1628, 91, + 4634, 53, 4874, 1195, 37253, 4640, 87, 17494, 3957, 15134, 4073, 4261, 6373, 37170, 4679, 4684, 811, 1567, 816 + ], + [1, 2343, 25319], + [0, 25320, 0, 25321, 2523], + [0, 37258], + [0, 614, 888, 37260, 2150, 4647, 37261], + [1, 2343, 25323], + [0, 25324, 25325, 2514, 2537], + [0, 9129, 18704, 20960, 3181], + [0, 5087, 4874, 2070, 1192, 3144, 4039, 4468, 91], + [1, 2343, 25327], + [0, 16409, 25329, 25330, 2537], + [2, 2842, 24077], + [0, 192, 5467, 1389, 1527, 1652, 2675, 1192, 4535], + [0, 4649, 3497, 89, 2731], + [1, 2343, 25332], + [0, 25334, 0, 25335, 4139], + "meriyah", + [0, 37277, 3183], + [0, 614, 6435, 2150, 1586], + "jsonparse", + [1, 2343, 25338], + [0, 25339, 25340, 25341, 2487], + [0, 15642, 1389, 1457, 15016, 37284, 4431, 1695], + [0, 1377, 3188, 4237, 4389, 4535, 37286], + [0, 1389, 25429, 2282, 6374, 6147, 1388], + [1, 2343, 25348], + "jws", + "lodash.i", + "ncludes", + [2, 25344, 25345], + [2, 3045, 19366], + [0, 25354, 12529, 25356, 2537], + "integer", + [2, 3045, 25349], + "lodash.isn", + "umber", + [2, 25351, 25352], + [0, 33304, 26786, 1149, 37294, 33313, 37297, 33328, 33329, 37298, 37300], + "lodash.once", + [0, 33359, 3469, 3259, 14873, 1552, 3230, 37303, 4651, 4104, 33365], + [1, 2343, 25358], + [0, 25359, 25360, 25367, 4139], + [0, 1137, 1149, 1209, 3188, 3760, 705, 37308], + [ + 0, 37313, 1429, 1431, 1512, 18192, 2026, 2061, 2323, 37315, 2384, 2419, 2463, 2590, 2659, 34317, 2759, 2899, + 37316, 3297, 37317, 4089, 37320, 37324, 37325, 4547, 3348, 4747 + ], + [2, 25362, 25364], + [3, 32971, 13], + "@jspm/generator", + "phases", + "fu/eslint-config", + [2, 13179, 25365], + [0, 5472, 13428, 11132, 13841, 28522], + [1, 2343, 25369], + [0, 25371, 25373, 25374, 2537], + "webdav", + [ + 0, 37331, 37332, 37334, 37335, 37336, 37337, 37339, 37342, 37344, 37345, 37347, 37350, 37352, 37355, 37358, + 37361, 37363 + ], + "states", + [ + 0, 37365, 1192, 1177, 37366, 9422, 4468, 1894, 1317, 91, 5087, 2787, 5366, 37368, 1938, 19956, 1895, 37371, + 1011, 37374, 1009 + ], + [0, 37376, 17626, 8172], + "dotenv-local", + [2, 28322, 364], + "lie", + [1, 2343, 25381], + "jszip-utils", + [3, 21510, 13], + [0, 25384, 11736, 25385, 4139], + "versionify", + [2, 25380, 25382], + [0, 37390, 37393, 1327, 1394, 37394, 37397, 37398, 37401, 37404, 37408, 4747], + [0, 4653, 4990, 200, 37410, 9420], + "deflate", + [1, 2343, 25389], + "inflate", + [0, 25390, 25392, 2514, 2443], + [ + 0, 19611, 1006, 8818, 37424, 37427, 37429, 1082, 25361, 1393, 37433, 1835, 37014, 1994, 2018, 20575, 2215, 9506, + 20465, 3173, 23175, 4121, 4388, 4409, 33215, 4695 + ], + "quisquam-quod-ab-aut", + [ + 0, 53, 90, 107, 34765, 25376, 20577, 8780, 5087, 7746, 28919, 4874, 25422, 37436, 1195, 37437, 37438, 1509, + 1593, 1622, 1628, 1668, 1856, 4913, 1177, 20281, 2092, 2135, 2203, 37439, 2629, 2675, 2759, 1192, 21124, 2774, + 2777, 2784, 2794, 2843, 2856, 695, 2969, 2990, 1209, 3021, 3144, 25333, 3177, 21016, 640, 3421, 3446, 20085, + 1894, 3717, 3754, 23738, 3786, 89, 3824, 30570, 3978, 9340, 3988, 3992, 3999, 4039, 12936, 4183, 4294, 4307, + 4072, 4426, 4441, 4452, 4469, 91, 4549, 4027, 37440, 37441, 4677, 37442, 4746 + ], + [1, 2343, 25394], + [0, 25396, 25397, 25398, 2399], + "@diahkomalasarinpm/odio-facilis-beatae", + [0, 4729, 4200, 1082, 3456, 1675, 1525, 1084, 3527, 2628, 1874, 37449], + [ + 0, 1700, 1429, 2323, 1192, 3190, 1177, 2205, 3698, 1593, 1637, 3561, 2924, 2098, 3758, 1461, 1628, 2338, 3191, + 4027, 53, 1436, 4677, 1165, 1178, 1195, 3060, 4307, 97, 3057, 37457, 3618, 22651, 87, 37453, 4681, 90, 1210, + 1959, 37458, 4409, 37451, 37454, 83, 71, 5757 + ], + [0, 2924, 6374, 4674, 5260, 4202, 24095, 9816, 33126, 37460, 16660], + [1, 2343, 25400], + [0, 25401, 25402, 25405, 2399], + [0, 1842, 3932, 1511, 1525, 2727, 1615, 2704, 4689, 37466, 13077, 29067, 37449, 37468], + [0, 37472], + [3, 1754, 13], + "qjobs", + [0, 2924, 200, 4989, 1237, 6996, 5122], + "unit-reporter", + [2, 25077, 25406], + "cript-", + [2, 25408, 15473], + [2, 2916, 25409], + "timer-shim", + [0, 25414, 25417, 25418, 34352], + [1, 2343, 25419], + [0, 3144, 1511, 3173, 3440, 3781, 4121], + "spectacular", + "execution", + [ + 0, 2934, 2611, 1192, 2020, 2675, 1622, 1177, 38, 1544, 1701, 2026, 2078, 2203, 2924, 1894, 1610, 1699, 4342, 48, + 442, 470, 1193, 91, 53, 4874, 2092, 2990, 3400, 2099, 11485, 6494, 192, 1953, 27928, 37480, 4257, 87, 23531, + 7746, 37482, 1939, 1942, 1938, 20281, 1982, 1895, 1955, 19344, 5467 + ], + [0, 2924, 2663, 5001], + [0, 25431, 25433, 2514, 34352], + [1, 2343, 25567], + "os-shim", + [2, 25423, 25430], + "@types/x", + "karma-p", + "karma-plugin", + "reprocessor", + [2, 25424, 25426], + [3, 14927, 12], + [2, 25428, 25200], + "xhashjs", + [ + 0, 4729, 3445, 32876, 34228, 2026, 33507, 1457, 9241, 1511, 11993, 7798, 1536, 2215, 4150, 4121, 37490, 37491, + 37493, 6494, 37494, 37499, 37500, 37503, 2664, 4679, 1549, 33189, 37505 + ], + [2, 25280, 25435], + [ + 0, 2611, 1192, 695, 1082, 2020, 2675, 37507, 3144, 1622, 1177, 3127, 4039, 1544, 1593, 2924, 1894, 3758, 4342, + 48, 1193, 1628, 2659, 91, 53, 4874, 2969, 2990, 3400, 4677, 1195, 4307, 4224, 18052, 4689, 97, 192, 1953, 3923, + 9252, 27928, 4257, 87, 23531, 22102, 4523, 7806, 8780, 1939, 1942, 2651, 12837, 68, 37508, 37513, 1938, 20281, + 1895, 2780, 83, 5467, 13052 + ], + [1, 2343, 25439], + "suscipit-assumenda-a-assumenda", + [2, 2877, 15473], + "browser-stack", + [2, 25280, 25442], + [0, 25440, 25441, 25444, 2523], + [0, 4294, 2626, 37503], + [0, 3421, 2899, 4193, 1177, 2026, 2924, 1894, 4342, 1955, 4679], + "vitae-sequi-voluptas-a", + [2, 25445, 25446], + [0, 2924, 11498, 6609, 1237, 37523, 37525, 2663, 2026], + [3, 25438, 13], + "oluptatibus-vero-magni-rerum", + [2, 29825, 29840], + [1, 2343, 25449], + [0, 25450, 25451, 2514, 2523], + [0, 4388, 4695], + [ + 0, 841, 4874, 4891, 37531, 7858, 1584, 1700, 1177, 37534, 1915, 2092, 2675, 2990, 3150, 3697, 1894, 37535, 89, + 4307, 4484, 91, 1984, 2924, 4689 + ], + [1, 2343, 25459], + "ibrik", + "ffee-preprocessor", + [2, 23574, 25454], + "karma-r", + "equirejs", + [2, 25456, 25457], + [0, 25463, 25464, 25465, 2523], + "karma-re", + "porter", + [2, 25460, 25461], + [0, 2117, 21520, 5898], + [0, 2675, 4484, 37542, 2924, 1894, 91, 37544, 1006], + [0, 2924, 1698], + [1, 2343, 25467], + [0, 0, 25475, 25480, 2523], + "Safari", + " Tech Preview", + [2, 25468, 25469], + "TechPreview", + [2, 25468, 25471], + "IE", + "Chrome", + [0, 1429, 1177, 1938, 2899, 3203, 3275, 2924], + "Chrome Canary", + "Chrome ", + "Headless", + [2, 25477, 25478], + [0, 2924, 13382, 202, 6374, 11053], + "Chromium", + [1, 2343, 25483], + [0, 0, 25486, 25487, 2523], + "Firefox", + "Opera", + [ + 0, 1192, 1177, 2203, 2924, 2759, 1894, 1596, 442, 4227, 91, 5087, 1953, 27928, 1939, 1942, 33002, 1938, 20281, + 1982, 1895, 1955, 19344 + ], + [0, 2924, 4227], + [1, 2343, 25489], + [0, 25491, 0, 25494, 2537], + [2, 25764, 25765], + [0, 2215, 1615, 4449, 3524], + "chai-fs", + "os-homedir", + [0, 12197, 29726], + [1, 2343, 25496], + [0, 25497, 25498, 25499, 4139], + [0, 1401, 1676, 1856, 37568, 34639, 37569], + [0, 1400, 2323, 2447, 2839, 2272, 4389], + [0, 4699, 14609, 21302, 37572, 37573, 6645, 6761, 20863, 36, 5576], + "@asdfgertyjhnpm/a-unde-explicabo-eaque", + "firefox", + [1, 2343, 25503], + [0, 25504, 25505, 25506, 2523], + [ + 0, 37578, 37579, 37581, 37585, 37586, 37587, 37589, 37592, 37594, 37595, 37598, 37600, 1676, 1869, 37602, 37603, + 37606, 37609, 37612, 37613, 37615, 3171, 3441, 37617, 3756, 25990, 37619, 3781, 25996, 34383, 37623, 35299, + 37624, 37628, 37631, 37633, 37636, 37637, 37638 + ], + [ + 0, 53, 68, 5712, 87, 37641, 1090, 37644, 25992, 37646, 1290, 37647, 1398, 37648, 1618, 3588, 1177, 1903, 1938, + 1953, 1958, 2099, 37650, 3486, 37652, 3767, 4092, 4131, 4151, 15039, 20496, 4387, 4389, 4409, 15046, 2924, 4677, + 37654 + ], + [0, 37656, 37657, 1764, 37658, 37659, 37663, 37665, 22115, 37666, 37616, 37667, 15247, 37668, 4702], + [1, 2343, 25508], + [0, 25509, 25512, 25515, 2399], + [0, 1326, 3263], + [2, 25511, 25517], + [3, 25500, 16], + [0, 29569, 4384], + "adapter", + [2, 2877, 25513], + [0, 7734, 37674, 37675], + [1, 2343, 25518], + "nesciunt-molestias-reprehenderit-occaecati", + [0, 25519, 25520, 2514, 2523], + [0, 2026, 3368, 4545], + [0, 1506], + [3, 25395, 19], + [1, 2343, 25523], + [0, 0, 25524, 2514, 2537], + [0, 1429, 2297, 2899, 1177, 4042, 1894, 2878, 2900, 1159, 3734, 37688, 2881, 2889, 2912, 2895, 13867, 19910], + [1, 2343, 25526], + [0, 0, 25527, 25528, 2487], + [0, 4652, 2070, 10679, 4030, 2856, 37693, 2272, 3188, 37694, 3460, 1317, 26825, 4535, 1389, 3736, 37320], + [0, 37696, 37698, 14833, 1862, 6567, 14834, 14835, 4706, 1149, 14629, 6804], + [1, 2343, 25530], + [0, 25531, 6538, 2514, 2523], + [0, 37703], + [1, 2343, 25533], + [0, 0, 25534, 25535, 2399], + [0, 13896, 1776, 2899, 3220, 37708, 37709], + [0, 6574, 29179], + [1, 2343, 25537], + [0, 25538, 25539, 25540, 4139], + [0, 37715, 13388, 1149, 2753, 37716, 37718, 3923, 18730, 4252, 20931, 4715], + [0, 48, 53, 87, 37721, 4874, 37722, 1148, 37724, 1177, 37725, 1192, 4039, 4238, 34395, 4431, 37727], + [0, 4709, 2942, 6807, 30124, 21111, 1409, 3533, 3079, 2041, 1781, 3101], + [1, 2343, 25542], + [0, 25543, 25545, 25546, 2487], + [0, 37735, 3429, 20931, 4715], + [3, 2910, 12], + [0, 37739, 37741, 1429, 1177, 1954, 2899, 4039, 7734], + [0, 4709, 37743, 37744, 37745], + [1, 2343, 25548], + [0, 25549, 25551, 25552, 2537], + [0, 37716, 3923, 20931], + "safari", + [0, 4874, 1148, 1173, 1264, 1693, 1177, 37721, 2899, 3421, 4039, 37727], + [0, 4709, 4714, 37752], + [1, 2343, 25554], + [0, 25556, 25559, 25560, 2537], + "global-agent", + [0, 37758, 2070, 1209, 37759, 4431, 37760], + "al-agent", + [2, 4865, 25557], + [0, 1429, 2151, 2759], + [0, 1370, 3383, 6355, 14510, 1508, 4796], + [1, 2343, 25562], + [0, 0, 16487, 25563, 2443], + [0, 6940, 37767, 3924, 37769, 16580, 37770, 7295, 2585, 4718, 4717, 28734, 4719], + [1, 2343, 25565], + [0, 0, 9264, 25566, 4139], + [0, 4718, 4719, 5547, 1671, 6922], + [0, 25576, 25577, 25578, 34352], + [1, 2343, 25597], + "karma-br", + "ief-reporter", + [2, 25569, 25570], + "sourcemap-", + [2, 21536, 8754], + [2, 25572, 25573], + [2, 12612, 25574], + [0, 16781, 3714, 10761, 4695, 37780], + [0, 4874, 4891], + [0, 37783, 37784, 2924, 37786, 20164, 37788, 37789, 37790], + [1, 2343, 25580], + [0, 25581, 25582, 25583, 2537], + [0, 1110, 4290, 4294], + [0, 1166, 1437, 1596, 6474, 3421, 4481, 1906], + [ + 0, 4719, 6940, 4720, 6980, 7152, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 1871, 6621, 1867, 6983, 6616, + 7244, 4166, 4744, 3073, 6807, 6876, 2585 + ], + [1, 2343, 25585], + [0, 25586, 6538, 25587, 2487], + [0, 19187, 4174], + [0, 37808, 29999], + [1, 2343, 25589], + [0, 0, 25590, 25593, 2537], + [0, 1317, 1401, 1177, 1895, 1955, 2203, 2899, 3421, 1894, 34639], + [2, 8652, 2013], + "keydown", + [0, 7299, 7172, 6761, 6729, 7057, 6145], + "keyup", + "metakey", + "keyname", + [0, 25599, 25600, 25601, 34352], + [ + 0, 2342, 2402, 2457, 2488, 2531, 2540, 2540, 2630, 2488, 2688, 2488, 2698, 2737, 2488, 2775, 2799, 2818, 2840, + 2939, 3016, 3110, 3207, 3247, 3279, 3307, 3448, 3515, 3593, 3631, 3723, 3782, 3844, 3879, 3908, 3929, 3952, + 4006, 4016, 4096, 4154, 4203, 4241, 4263, 4286, 4308, 4331, 4348, 4417, 4444, 4476, 4506, 4528, 4573, 4655, + 4673, 4700, 4743, 4813, 4953, 4994, 5004, 5007, 5013, 5016, 5019, 5023, 5028, 5031, 5034, 5037, 5041, 5044, + 5052, 5099, 5134, 5137, 5141, 5144, 5150, 5171, 5174, 5199, 5203, 5211, 5231, 5255, 5266, 5270, 5289, 5299, + 5289, 5333, 5360, 5373, 5379, 5437, 5486, 5493, 5516, 5544, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, + 5566, 5566, 5566, 5566, 5566, 5574, 5566, 5574, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5574, 5574, 5566, + 4286, 5566, 5566, 5578, 4286, 5574, 5566, 5566, 5566, 5566, 5566, 5566, 5574, 5574, 5574, 5580, 4286, 5566, + 5566, 4286, 5566, 4286, 5574, 5591, 5599, 5612, 5624, 5629, 5635, 4286, 5643, 5648, 5665, 5672, 5574, 5718, + 5723, 5566, 5566, 5566, 5578, 5566, 5566, 5566, 5566, 5566, 5578, 5566, 5566, 5566, 4286, 5727, 5566, 5566, + 5566, 5578, 5566, 5566, 5566, 5578, 5566, 5574, 5730, 5848, 5870, 5886, 5894, 5899, 5902, 5906, 5908, 5912, + 5919, 5965, 5985, 5992, 5999, 6050, 5566, 5566, 5566, 5566, 6069, 5566, 5566, 5566, 5566, 5578, 5574, 5566, + 5566, 5566, 5566, 5566, 5566, 5566, 5566, 4286, 5566, 6088, 6101, 6115, 6119, 6124, 6131, 6152, 6159, 6163, + 6172, 6179, 6184, 6187, 6193, 6201, 5566, 5580, 6206, 6210, 5578, 5574, 6219, 5299, 6222, 6227, 6232, 6236, + 6239, 6242, 6246, 6250, 6254, 6257, 6261, 6265, 6274, 6278, 6288, 6292, 6304, 6313, 6344, 6357, 6360, 6365, + 6368, 6402, 6406, 6410, 6416, 6427, 6431, 6440, 6444, 6483, 6535, 6555, 6559, 6571, 5299, 6612, 5299, 5635, + 5299, 6630, 6664, 6676, 6684, 6719, 6745, 6772, 6823, 6852, 6886, 6906, 6924, 6942, 6989, 7012, 7043, 7088, + 7112, 7136, 7139, 7143, 7160, 7187, 7207, 7237, 5566, 5566, 5574, 5566, 5574, 4286, 5566, 5566, 7257, 5566, + 5566, 5727, 5566, 4286, 5566, 5566, 5566, 5566, 5566, 5566, 7257, 5566, 5578, 5578, 5566, 5566, 5566, 7264, + 7271, 7278, 7294, 7307, 7323, 7327, 7332, 7338, 7343, 7348, 7357, 7363, 7368, 7373, 7380, 7385, 7391, 7396, + 7405, 7410, 7414, 7419, 7424, 7430, 7437, 4286, 4286, 5574, 7442, 7447, 7450, 5566, 5566, 5566, 5566, 5566, + 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5574, 5566, 5574, + 5566, 5566, 5566, 5566, 7452, 7457, 7462, 7473, 7478, 7483, 7488, 7493, 7498, 7502, 7506, 7510, 7513, 7516, + 7538, 7541, 7544, 7548, 7552, 7556, 7560, 7564, 7568, 7571, 7574, 7257, 7578, 7587, 7592, 7600, 7629, 7654, + 7694, 7698, 7702, 7711, 7736, 7756, 7767, 7772, 7777, 7782, 7802, 5566, 5566, 5566, 27071, 5574, 4286, 5578, + 5566, 5574, 5566, 5566, 27071, 4286, 7832, 7848, 7861, 7874, 5727, 7882, 7885, 7901, 7916, 7925, 7930, 7947, + 7953, 7960, 7965, 7968, 7972, 7977, 7981, 7984, 7987, 7991, 7996, 7999, 8004, 8008, 8012, 8015, 8020, 8024, + 8027, 8030, 8035, 8040, 8045, 8051, 8054, 8058, 8062, 8066, 8070, 7965, 8075, 8081, 8086, 8091, 8100, 8104, + 8106, 8128, 8143, 8178, 8195, 8207, 8213, 8223, 8227, 8234, 8237, 8242, 8258, 8266, 8270, 8281, 8289, 8311, + 8318, 8351, 5574, 8366, 8370, 8374, 8378, 8382, 8385, 8388, 8394, 8398, 8403, 8407, 8412, 8416, 8445, 8450, + 8455, 8460, 8463, 8465, 8467, 8470, 8473, 8478, 8481, 8485, 8487, 8490, 8493, 8497, 8500, 8502, 8507, 8517, + 8542, 8559, 8564, 8575, 8578, 8590, 8594, 8598, 8602, 8621, 8637, 8642, 8681, 8685, 8690, 8698, 8706, 8717, + 8725, 8731, 8759, 8783, 8796, 8812, 8815, 8833, 8844, 8854, 8857, 8865, 8867, 8872, 8104, 8872, 8874, 8879, + 8884, 8898, 8929, 8940, 8963, 8972, 8977, 8988, 8104, 8865, 8865, 8104, 7965, 7965, 8992, 8994, 8996, 9001, + 8996, 9003, 9014, 9018, 9022, 9027, 9032, 9037, 9042, 9050, 9058, 4286, 8706, 8865, 9063, 9068, 9079, 9084, + 8865, 9092, 9101, 9108, 9137, 9142, 9149, 9154, 9158, 9175, 9180, 9189, 8996, 9200, 9205, 9223, 9259, 9266, + 9275, 9285, 9290, 9298, 9306, 9349, 9372, 9386, 9389, 9392, 9411, 34415, 9438, 9445, 8872, 9467, 9522, 9528, + 9532, 9540, 9545, 8104, 9585, 9592, 9599, 9604, 8706, 5574, 9609, 9614, 9619, 9633, 9639, 9643, 9650, 9656, + 9664, 9668, 9672, 9683, 9690, 9696, 9701, 9709, 9717, 9727, 9754, 9758, 9763, 9798, 9822, 9831, 9882, 9886, + 9889, 9894, 9898, 9902, 9908, 9912, 9917, 9922, 9927, 9930, 10085, 10111, 10121, 10221, 10287, 10316, 10322, + 10329, 10334, 10341, 10359, 10362, 10379, 10385, 10391, 10411, 10421, 10433, 10437, 10440, 10449, 10453, 10457, + 10461, 10465, 5289, 10470, 10474, 10478, 10482, 10486, 10490, 10494, 10499, 10502, 10507, 10512, 10516, 10519, + 10524, 10529, 10532, 10537, 10542, 10547, 10552, 10558, 10561, 10566, 10571, 10577, 10582, 10585, 10589, 10610, + 10620, 10644, 5574, 10666, 10671, 10694, 10715, 10767, 10778, 10794, 10801, 10822, 10857, 10872, 10891, 10905, + 10910, 10919, 10928, 10953, 10967, 10980, 11001, 11012, 11023, 11030, 11044, 11050, 11058, 11062, 11090, 11099, + 11115, 11121, 11140, 11149, 34415, 11157, 11160, 11205, 11222, 11237, 11250, 11309, 11353, 11386, 11403, 11410, + 11427, 11447, 11458, 11460, 11464, 11468, 11474, 11491, 11495, 11505, 11511, 11529, 11541, 11545, 8992, 11549, + 11552, 8865, 11559, 11563, 8865, 11568, 11573, 11577, 11582, 11587, 8706, 11602, 11611, 11632, 11643, 11647, + 11652, 11657, 11661, 11665, 11670, 11675, 11679, 11683, 11688, 11693, 11698, 11703, 11707, 11712, 11717, 11721, + 11726, 11730, 11734, 11739, 11744, 11749, 11754, 11759, 11764, 11769, 11774, 11779, 11782, 11786, 11791, 11816, + 11822, 11826, 11831, 11845, 11850, 11855, 11860, 11872, 11888, 11902, 11913, 11915, 11920, 11949, 11957, 11965, + 11968, 11972, 5578, 11981, 11986, 11992, 11998, 12006, 12017, 12022, 12029, 12031, 12035, 12039, 12051, 12069, + 12098, 12109, 12114, 12138, 12146, 12150, 12156, 12174, 12211, 12225, 12238, 12250, 12256, 12261, 12266, 12272, + 7257, 12280, 12291, 12298, 12308, 12341, 12362, 12366, 12376, 12379, 12383, 12390, 12408, 12430, 12465, 12480, + 12484, 12488, 12493, 12497, 12502, 12506, 12511, 12516, 12521, 12527, 12531, 12538, 12543, 12548, 12553, 12559, + 12563, 12117, 12573, 12579, 12584, 12595, 12623, 12628, 12633, 12638, 12643, 12647, 12657, 12664, 12670, 12673, + 12683, 12697, 12765, 12770, 12805, 12819, 12828, 12843, 12855, 12859, 12863, 12868, 12873, 12876, 12885, 12891, + 12897, 12903, 12919, 12945, 12949, 12955, 8992, 12985, 13000, 13010, 13015, 5574, 13020, 13026, 13032, 13044, + 13074, 13111, 13147, 13156, 13173, 13211, 13246, 13251, 13255, 13270, 13292, 8027, 8027, 13299, 13308, 13315, + 13323, 13331, 13341, 13348, 13353, 13360, 13366, 13376, 13383, 13398, 13409, 11913, 13423, 13430, 13434, 13439, + 13450, 13469, 13534, 13541, 13561, 13577, 13585, 13595, 13601, 5566, 13606, 13622, 13629, 13636, 13642, 13646, + 13650, 13660, 13677, 13683, 13686, 13700, 13706, 13715, 13720, 13727, 13734, 13743, 13749, 13762, 13782, 13794, + 13801, 8706, 13808, 13819, 5574, 13826, 13854, 13863, 13886, 13902, 13906, 13911, 11913, 13919, 13932, 13937, + 13940, 13946, 13950, 13955, 13960, 13966, 13971, 8872, 13975, 13978, 13989, 13992, 14002, 14007, 14015, 14019, + 14032, 5727, 14048, 14054, 14061, 14068, 14071, 14075, 14088, 14095, 14101, 14110, 14115, 7930, 14120, 14127, + 7930, 8865, 14138, 14142, 14147, 14150, 14155, 14172, 14202, 14232, 14236, 14250, 14258, 14266, 14272, 14279, + 14285, 14289, 14294, 14298, 14304, 14313, 14322, 14327, 14330, 14340, 14346, 14351, 14360, 14363, 14368, 14377, + 14383, 14391, 14397, 14402, 14411, 14424, 14437, 14470, 14498, 14513, 14522, 14528, 14532, 14537, 14542, 14598, + 14612, 14625, 14633, 14650, 14659, 14665, 14703, 14725, 14733, 14742, 14752, 14762, 14766, 14778, 14788, 14793, + 14797, 14802, 14806, 14811, 14815, 14820, 14825, 14841, 14851, 14859, 14865, 14876, 14882, 14887, 14893, 14899, + 14906, 14912, 14916, 14920, 14929, 14936, 14948, 14956, 14965, 14974, 14987, 14996, 15004, 15049, 15066, 15074, + 15081, 15091, 15098, 15109, 15118, 15123, 15142, 15147, 15154, 15158, 15166, 15171, 15178, 15184, 15189, 15198, + 15205, 15211, 15216, 15226, 15233, 15241, 15249, 15255, 15265, 15274, 15284, 15296, 15299, 15313, 15325, 15330, + 15335, 15343, 15350, 15357, 15364, 15369, 15378, 15382, 15388, 15394, 15404, 15410, 15416, 15430, 15435, 15443, + 15456, 15503, 15517, 15521, 15528, 15542, 15564, 15589, 15628, 15640, 15650, 15655, 15662, 15727, 15732, 11913, + 8872, 15737, 8872, 15740, 15749, 15752, 15758, 15766, 15780, 15785, 15806, 15811, 15819, 15824, 15829, 8706, + 15835, 15845, 15851, 15857, 15860, 15865, 15868, 15895, 15901, 15914, 15919, 8994, 8872, 15923, 15934, 15939, + 15943, 15947, 8706, 15952, 15959, 15966, 15971, 15975, 15981, 15987, 15993, 16011, 16017, 16024, 16029, 16034, + 16038, 16043, 16047, 16051, 16059, 16067, 5574, 16072, 16084, 16098, 16103, 16119, 16125, 16131, 16135, 16139, + 16155, 16158, 16164, 16173, 16177, 16185, 16192, 16197, 16203, 16208, 16213, 5727, 16217, 16222, 16227, 16241, + 16253, 16283, 16287, 16292, 16298, 5574, 16303, 16312, 16318, 16326, 16332, 16335, 5578, 16338, 16346, 16353, + 16357, 16362, 8996, 16367, 16371, 16377, 16383, 16392, 16406, 16413, 16419, 16428, 16437, 16451, 16457, 16464, + 16468, 16472, 16489, 16496, 16500, 16507, 4286, 16516, 4286, 16522, 16538, 16541, 16548, 16552, 16567, 16586, + 16592, 16616, 16624, 16633, 16652, 16665, 16669, 16677, 16680, 16685, 16698, 16704, 16707, 16717, 16732, 16756, + 16764, 16788, 16797, 16802, 16812, 16816, 16834, 16846, 16849, 16864, 16871, 16883, 16890, 16896, 16902, 16907, + 16913, 16924, 16929, 16942, 16948, 16958, 16963, 16970, 16975, 16979, 16985, 16996, 17004, 17015, 17026, 17032, + 17038, 17053, 17061, 17066, 17072, 17079, 17087, 17105, 17117, 17124, 17135, 17139, 17145, 17152, 17156, 17161, + 17172, 17177, 17187, 17200, 17207, 17226, 17230, 17236, 17246, 17254, 17261, 17268, 17284, 17292, 17325, 17334, + 17341, 17347, 17350, 17361, 17386, 17419, 17430, 17433, 17443, 17451, 17465, 17472, 17482, 17489, 17505, 17511, + 17518, 17524, 17533, 17541, 17548, 17555, 17560, 8104, 8865, 8992, 17569, 17574, 8865, 17588, 17598, 17604, + 17611, 17633, 17654, 17685, 17719, 17741, 17745, 17749, 17759, 17773, 17777, 17781, 17789, 17795, 17799, 17809, + 17815, 17821, 17828, 17839, 17844, 17856, 17862, 17868, 17871, 17879, 17886, 17891, 17937, 17952, 17955, 17958, + 17961, 17967, 17970, 17980, 17987, 18013, 18015, 18024, 18027, 18033, 18039, 18053, 18058, 18064, 18067, 18077, + 18083, 18086, 18091, 18095, 18099, 18107, 18117, 18122, 18128, 18134, 18140, 18149, 18154, 18160, 18165, 18169, + 8872, 18178, 18188, 18194, 18202, 18208, 18213, 18218, 18223, 18242, 18247, 18262, 8865, 18270, 18274, 18293, + 18298, 18303, 18307, 18311, 18366, 18399, 18404, 18410, 18418, 18441, 18449, 18453, 18466, 18469, 18472, 8872, + 18478, 18492, 18507, 18530, 18538, 5574, 18543, 18548, 18556, 18560, 18588, 18604, 18608, 18623, 18625, 18631, + 18650, 18653, 18665, 18676, 18682, 18724, 18755, 18781, 18808, 18842, 18847, 18850, 18874, 18882, 18893, 11458, + 8865, 18899, 18911, 18915, 18919, 18923, 18929, 18934, 18939, 18946, 18949, 18955, 18960, 18972, 18975, 18999, + 19010, 19014, 19023, 19027, 19032, 19039, 19063, 19085, 19090, 19104, 19110, 19115, 19134, 11913, 19140, 8865, + 19142, 19149, 19154, 19159, 34415, 19165, 19174, 19191, 19200, 19215, 19233, 19239, 19248, 19255, 19260, 7965, + 19268, 19275, 19279, 19290, 5578, 19293, 19298, 19305, 19323, 19329, 19341, 19346, 19356, 19362, 19367, 19372, + 19379, 19387, 19391, 19394, 19398, 19410, 19420, 19427, 34415, 19432, 19452, 19456, 19460, 19483, 19487, 19501, + 19508, 19518, 19532, 19543, 19550, 19561, 19594, 19600, 19633, 19643, 19654, 19660, 19662, 19667, 19674, 19680, + 19685, 19694, 19699, 19703, 19714, 19718, 19723, 19738, 19743, 19752, 19765, 19772, 19781, 19789, 19793, 19804, + 19809, 19814, 5580, 19817, 19822, 19832, 19846, 19854, 19857, 19868, 19873, 19880, 19887, 19891, 19897, 19901, + 19916, 19924, 19929, 19933, 19936, 19952, 19960, 19969, 19979, 19985, 19994, 20002, 20007, 20022, 20027, 20036, + 20041, 20053, 20058, 20067, 20071, 20079, 20087, 8872, 20094, 20101, 20109, 8872, 20114, 20125, 20129, 20134, + 20141, 20148, 20155, 20157, 20161, 20166, 20177, 20196, 20209, 20217, 20225, 20233, 20236, 20240, 8865, 20249, + 20255, 20260, 20270, 20277, 20287, 20292, 20297, 20302, 20310, 20318, 20323, 20337, 20345, 20358, 20363, 20381, + 20388, 20391, 20397, 20404, 20411, 20431, 20440, 20456, 20462, 20487, 20498, 20503, 20509, 20512, 20532, 20555, + 20560, 20569, 20579, 20585, 20591, 20596, 20603, 20605, 20608, 20615, 20617, 20629, 20766, 8872, 20770, 20775, + 20780, 20783, 20787, 20792, 20799, 20806, 20810, 20814, 20818, 20860, 20867, 27071, 20880, 20900, 8872, 20915, + 20926, 20936, 20945, 20954, 20961, 20965, 20971, 20976, 20988, 20994, 21005, 21010, 21018, 21027, 21061, 21065, + 21070, 21078, 21083, 21088, 21092, 21103, 21113, 21126, 21132, 21139, 21154, 21170, 21184, 21192, 21197, 21202, + 21205, 21207, 21209, 21212, 21205, 21217, 21220, 21225, 21232, 21238, 21241, 21247, 21251, 21256, 21258, 21262, + 21266, 21271, 21275, 21301, 21311, 21316, 7257, 21320, 21325, 21331, 21336, 21344, 21349, 21356, 21362, 21368, + 21376, 21391, 21400, 21410, 21415, 21422, 21425, 21431, 21435, 21446, 21453, 21462, 21472, 21475, 21489, 21494, + 21503, 21511, 21517, 21524, 21530, 21534, 21546, 21553, 21558, 21565, 21589, 21598, 21612, 21615, 21628, 21634, + 21652, 21670, 21674, 21690, 21694, 21706, 21711, 21717, 21724, 21729, 21739, 21744, 21755, 21769, 21774, 21780, + 21784, 21787, 21794, 21799, 21805, 5566, 21811, 21813, 21818, 21824, 21829, 21838, 21842, 21848, 21853, 21859, + 21864, 21870, 21874, 21878, 21882, 21887, 21892, 21899, 21904, 21909, 5574, 21914, 21919, 21923, 21925, 21932, + 21938, 21949, 21954, 21959, 21963, 21968, 21975, 21985, 21989, 21998, 22003, 22012, 22017, 22021, 22026, 22030, + 22040, 22045, 22050, 22069, 22077, 22082, 22086, 22097, 22105, 22112, 22119, 22125, 22131, 22136, 22141, 22149, + 22154, 22159, 22161, 22171, 22173, 22177, 22184, 22187, 22194, 22200, 22206, 22210, 22215, 22225, 22233, 22238, + 22243, 22252, 22259, 22262, 22266, 22271, 22276, 22284, 22288, 22299, 22307, 22311, 22318, 22323, 22328, 22335, + 22340, 22345, 22350, 22355, 22364, 22373, 22384, 22389, 22394, 22399, 22406, 22413, 4286, 22419, 22424, 4286, + 22433, 22444, 22450, 22456, 22461, 22469, 22474, 22480, 22484, 22490, 22494, 22508, 22517, 22527, 22532, 22538, + 22542, 22547, 22551, 22560, 22566, 22572, 22578, 22585, 22592, 22598, 22605, 22609, 22614, 22619, 22624, 22629, + 22634, 22644, 22650, 22654, 22659, 22663, 22669, 22677, 22681, 22685, 5580, 22690, 22693, 22702, 9001, 11913, + 22710, 22717, 22723, 22731, 34503, 22737, 21998, 22740, 22747, 8872, 22751, 22757, 22761, 22765, 22777, 22788, + 22794, 22802, 22806, 22810, 22816, 22825, 22831, 22836, 22852, 22859, 22866, 22870, 5574, 22878, 22884, 22890, + 22893, 22898, 22905, 22911, 22171, 22917, 22927, 22940, 22945, 8872, 22951, 8872, 22955, 22964, 21489, 22981, + 20615, 8865, 22988, 23002, 23008, 23014, 23018, 23022, 23028, 8865, 23033, 23037, 23047, 8706, 23087, 23129, + 23147, 11913, 23152, 23159, 23171, 23176, 23182, 23195, 23199, 23204, 23209, 23213, 23217, 8865, 8872, 23222, + 23228, 8706, 23231, 23233, 23242, 23265, 23272, 23284, 23297, 23315, 23320, 23327, 8104, 23334, 23346, 23353, + 8872, 23364, 23369, 23374, 23379, 23381, 23385, 23418, 23424, 23427, 23431, 23458, 23463, 23474, 23484, 23487, + 23491, 23495, 23501, 23506, 23510, 23515, 23521, 23532, 23546, 23550, 23555, 23567, 23577, 23583, 23589, 23594, + 8706, 23610, 8865, 23614, 23620, 23627, 23633, 23231, 8992, 23642, 8872, 23655, 23662, 23672, 23677, 23694, + 23701, 23713, 23718, 23731, 23735, 8992, 23746, 23761, 23763, 23770, 23772, 34503, 23776, 23781, 23788, 23792, + 23796, 23804, 23807, 23821, 23825, 23835, 23840, 23846, 23850, 23854, 23861, 23866, 23882, 23887, 23893, 23903, + 22159, 23940, 23946, 23954, 23963, 23972, 23983, 23988, 23997, 24001, 24008, 24014, 8725, 24021, 24026, 24031, + 24040, 24048, 24052, 24055, 24060, 24063, 24067, 24074, 24086, 24099, 24104, 24108, 24111, 24124, 8872, 11458, + 24132, 24143, 7965, 24146, 24149, 24170, 24176, 24180, 24190, 24196, 24200, 24207, 24216, 24228, 24260, 24284, + 24296, 24304, 24308, 24314, 24323, 24361, 24368, 24375, 24380, 24407, 24413, 24422, 24426, 24431, 24436, 24444, + 24448, 24457, 24461, 24468, 24475, 24478, 24481, 24489, 24497, 24500, 24505, 24510, 24516, 24527, 24532, 24546, + 24551, 24555, 24567, 24589, 24605, 24611, 24614, 24628, 24635, 24639, 24644, 24650, 24658, 24662, 24670, 8706, + 24673, 24677, 24682, 24685, 24695, 24700, 24704, 24709, 5727, 24718, 24736, 24744, 24749, 24756, 24758, 24764, + 24769, 24773, 24790, 24817, 24835, 24844, 24866, 24911, 24965, 25013, 7930, 25037, 25045, 25052, 25064, 25080, + 25095, 25100, 25111, 25120, 25134, 25152, 25174, 25185, 25198, 25208, 25214, 25225, 25229, 25242, 24195, 25265, + 25271, 25281, 25287, 25293, 25263, 25308, 25314, 25318, 25322, 25326, 25331, 25337, 25342, 25357, 25368, 11458, + 7930, 23147, 25378, 8854, 11458, 25387, 25393, 25399, 25302, 25413, 25434, 25448, 25452, 25466, 25482, 25488, + 25495, 25502, 25507, 25516, 25522, 25525, 25529, 25532, 25536, 25541, 25547, 25553, 25561, 25564, 25420, 8027, + 25579, 4286, 25584, 25588, 25568, 25602, 25610, 25616, 25621, 25641, 25644, 25647, 25656, 25662, 25672, 25680, + 25686, 25695, 25702, 25706, 25713, 25722, 25729, 25734, 7257, 25738, 25746, 25751, 25756, 25768, 25773, 25778, + 25787, 25800, 25808, 25818, 25830, 25834, 25859, 25869, 25883, 25905, 25909, 25916, 25934, 25940, 25953, 25961, + 25976, 25991, 26003, 26019, 26023, 26031, 26038, 26042, 26047, 26056, 26063, 26068, 26076, 26080, 26088, 26102, + 26115, 26134, 26140, 26148, 26152, 26162, 26167, 5299, 5299, 5299, 5635, 5299, 26191, 26191, 26195, 26200, + 26214, 26221, 26229, 5635, 5635, 5299, 26238, 5574, 4286, 5574, 5578, 26243, 5574, 5580, 26250, 26255, 26266, + 26270, 26277, 26281, 26284, 26293, 26297, 26303, 26309, 26313, 26317, 26321, 26327, 26331, 26336, 26341, 26348, + 26356, 26363, 26369, 26381, 26389, 26395, 26405, 26452, 26476, 26498, 26502, 26518, 26523, 26527, 26538, 26545, + 26558, 26561, 26582, 26589, 26594, 6236, 26599, 26602, 26623, 26638, 26642, 26650, 26656, 26667, 26672, 26691, + 26701, 26724, 26730, 26735, 26745, 26751, 26758, 26778, 26785, 26791, 26797, 26803, 26814, 26820, 26826, 26831, + 26841, 26853, 26860, 26864, 26879, 26889, 26893, 26899, 5727, 26912, 26928, 26948, 26953, 26957, 26961, 11797, + 26967, 26998, 27004, 27011, 27013, 26994, 27027, 27031, 27021, 27035, 27041, 27044, 27048, 27051, 27055, 27059, + 27065, 27038, 27079, 27088, 27097, 27121, 27128, 27132, 27140, 27144, 27148, 27153, 27159, 27172, 27179, 27183, + 27192, 27199, 27207, 34417, 27211, 27215, 27218, 27229, 27245, 27250, 27270, 27279, 27288, 27296, 27306, 27310, + 27331, 27351, 27364, 27369, 27373, 27382, 27397, 27402, 27413, 27417, 27422, 27434, 27437, 27453, 27466, 27516, + 27528, 27536, 27545, 27581, 27586, 27589, 27595, 27598, 27604, 27611, 27618, 27627, 27665, 27672, 27677, 27704, + 27734, 27748, 27755, 27770, 27889, 27925, 27935, 27947, 27956, 27973, 27979, 27988, 27996, 28003, 28013, 28016, + 28020, 28031, 28054, 28063, 28071, 28083, 28097, 28105, 28108, 28113, 28127, 28140, 28160, 28173, 28186, 28213, + 28218, 28252, 28281, 28295, 28298, 28302, 28308, 28316, 28319, 28328, 28334, 27004, 28351, 28410, 28431, 28451, + 26701, 28520, 28530, 28545, 28552, 28562, 28584, 28602, 28630, 28663, 28668, 28683, 28700, 26961, 28759, 28765, + 28765, 28328, 28774, 28808, 28328, 28822, 28833, 28836, 28851, 28871, 28918, 28995, 29052, 29068, 28334, 29078, + 29164, 29164, 29172, 26961, 29180, 29217, 29230, 29272, 29275, 29289, 29337, 29473, 29496, 29523, 29548, 29613, + 29705, 29734, 29871, 29982, 30002, 30185, 30205, 30250, 30474, 30500, 30528, 30557, 30598, 30615, 30782, 30800, + 30827, 30910, 30931, 30938, 31020, 31216, 31274, 31387, 31487, 31513, 31532, 31630, 31664, 31709, 31738, 31753, + 31758, 31763, 31785, 31817, 31853, 31927, 31938, 31984, 32340, 32496, 32532, 32547, 28833, 32556, 32748, 32781, + 32809, 32862, 32887, 32921, 32936, 33045, 33079, 33092, 33104, 33109, 33218, 31274, 33225, 33240, 33248, 33279, + 33281, 33375, 33478, 33484, 33501, 33563, 33630, 33670, 33696, 33719, 33773, 33781, 33788, 33814, 33833, 33858, + 33866, 33906, 33924, 33933, 33956, 33961, 34004, 34021, 34047, 34059, 34075, 34091, 34101, 34108, 26961, 28328, + 34122, 34133, 34142, 34147, 34160, 34185, 34195, 34211, 34214, 34249, 34253, 34258, 34296, 34325, 34330, 34333, + 34336, 34341, 34348, 28663, 34353, 34388, 27071, 34420, 19603, 34444, 34450, 34454, 34456, 34460, 34469, 34488, + 34499, 34506, 34454, 34526, 34535, 34544 + ], + [0, 6870, 1362, 1437, 1448, 1676, 37818, 2754, 2757, 3427, 6530, 37821, 37823], + [0, 1596, 2759, 2899, 3202, 16112, 4039, 4193, 4255], + [0, 5592, 1448, 37826, 15514, 6956, 5122], + [1, 2343, 25603], + [0, 25604, 25606, 25608, 4139], + [0, 2202, 37833, 37834, 1695], + "@keyv/serialize", + [0, 2133, 3697, 4387, 4389], + "keep", + [0, 4731, 27, 4738, 5038, 1389], + "timekeeper", + [1, 2343, 25612], + "key-value", + [0, 25613, 25614, 25615, 2487], + [0, 20689, 37845, 37846, 4718, 37844, 37841, 37843], + [0, 18225, 1082, 2832, 2899, 4193, 1177, 37853, 1330, 1787, 1525, 91, 4874, 37852, 37850, 1937, 17585, 37856], + [0, 28860, 28861, 3354, 37858, 37859, 20707, 1641, 37860, 37861, 37862, 26666, 21604], + [1, 2343, 25617], + [0, 25618, 25619, 25620, 2537], + [0, 4113], + [ + 0, 1175, 1195, 1264, 28713, 1387, 37868, 37869, 35573, 1503, 1596, 1610, 1177, 37870, 2759, 2765, 1192, 2774, + 7060, 3363, 3400, 3725, 91, 37871, 2282, 2924 + ], + [ + 0, 37873, 6523, 676, 6671, 1781, 24586, 37874, 37875, 37880, 37882, 20398, 20400, 4734, 4735, 353, 8535, 37883, + 22180, 6270, 37884, 37885, 37887, 1644, 57, 7119 + ], + [1, 2343, 25622], + [0, 25626, 25630, 25637, 4139], + "escalade", + "pg-connection-string", + "tarn", + [0, 4113, 4736], + [3, 5536, 10], + [2, 25627, 4945], + [2, 11836, 4246], + [0, 1596], + "-in-order", + [2, 1436, 25631], + "oracledb", + "pg-query-stream", + "tedious", + "toxiproxy-node-client", + [0, 6523, 1781], + "postgres", + "cockroachdb", + [2, 3766, 9381], + [1, 2343, 25642], + [0, 25643, 15925, 2514, 2537], + [0, 2607, 2812, 37899], + [1, 2343, 25645], + [0, 0, 10710, 25646, 2537], + [0, 6523, 4736], + [1, 2343, 25653], + "smol-toml", + "summary", + [3, 8555, 11], + [2, 25650, 1851], + [2, 4764, 25651], + [0, 0, 25654, 25655, 2537], + [0, 1192, 4753, 37908, 1177, 3363, 37909, 1894, 2188, 3400, 1926, 16638, 1895, 1955], + [0, 12616, 965, 6523, 57, 5284, 37911, 37912], + [1, 2343, 25657], + [0, 0, 0, 25659, 2537], + "analyze", + [0, 4731, 6662], + "dead code", + "entropy", + [1, 2343, 25665], + "maintenance", + "members", + [0, 25666, 25668, 25670, 2537], + [ + 0, 3157, 1144, 1177, 2205, 2203, 1894, 2185, 4507, 3170, 1595, 19595, 3505, 2191, 1953, 29490, 1920, 4523, + 25803, 1958, 1982, 13789, 1895, 24166, 32525, 1955, 7681, 19344, 1011, 15290, 22937, 19492 + ], + "unreferenced", + [0, 3377, 1166, 2020, 2675, 1680, 13786, 2990, 5601, 192, 15600, 8778, 3390, 3708, 5467, 17312], + "unresolved", + [ + 0, 13326, 200, 1906, 19347, 19350, 19353, 1501, 19269, 590, 671, 9654, 2272, 19270, 1177, 2649, 19271, 4255, + 15717, 4354, 16790, 19273, 18443, 2446, 2869, 5284, 91 + ], + "tldts", + [1, 2343, 25673], + [0, 0, 25674, 25676, 2537], + [0, 10780, 1854, 37928, 2899], + "lodash.sortby", + [0, 4739, 6523], + "explorer", + "opera", + "samsung-internet", + [1, 2343, 25681], + [0, 25683, 25684, 25685, 2399], + "uc-browser", + [0, 5663], + [0, 48, 53, 37936, 83, 87, 37937, 1198, 37940, 37941, 1389, 1177, 2765, 2835, 3421, 37945], + [0, 1108, 6961, 6607, 3656], + [1, 2343, 25690], + "stream-co", + [2, 25687, 11532], + [2, 25521, 25692], + [0, 25691, 25693, 25694, 2537], + [0, 1525, 7606], + "praesentium-accusamus-maiores-autem", + [0, 3421, 1676, 2899, 1177, 1596, 4535, 1389], + [0, 20215, 4741, 2574, 36796, 6847, 1965, 1867, 10368, 7131, 1155, 1936, 14419, 37953], + [1, 2343, 25697], + "delegates", + [0, 0, 25698, 25701, 2537], + [0, 37958, 1091, 3539, 4094, 4733], + "http-assert", + [2, 17007, 23905], + [0, 37960, 37963, 37968, 37971, 37972, 6649, 37973, 2218], + [1, 2343, 25703], + [0, 0, 9264, 25704, 2399], + [0, 2051, 1698, 14690, 15767, 3048, 4552], + [3, 21482, 15], + [1, 2343, 25708], + "gen-", + [0, 0, 25711, 25712, 2523], + "esm-wrapper", + [2, 25707, 25709], + [ + 0, 8648, 4856, 5245, 37983, 6494, 37984, 4865, 13204, 6503, 4874, 37987, 4891, 9241, 1009, 1011, 1429, 1610, + 1693, 1177, 1942, 2026, 28930, 2070, 2832, 2899, 3257, 3339, 3421, 4230, 4232, 4469, 91, 4577, 2924, 4677, 4729, + 37988 + ], + [0, 200, 6876, 7201, 28770, 4166, 21000, 592, 37991, 7009, 6621, 13005, 35621, 4744], + [1, 2343, 25714], + [0, 0, 25715, 25719, 4139], + [ + 0, 1192, 4484, 1177, 4042, 1894, 442, 1193, 2064, 91, 53, 5087, 4874, 2797, 87, 4523, 5583, 6373, 1895, 10817, + 37998, 5889 + ], + "-body", + [2, 4860, 25716], + "co-body", + [0, 6775, 57, 5374], + "-router", + "__router", + [1, 2343, 25724], + "urlencoded", + [0, 25725, 25726, 25727, 2399], + [0, 2070, 1139], + [0, 1317, 15052, 2768], + [0, 4745, 1781, 38007, 38008], + "copy-to", + [1, 2343, 25730], + [0, 25731, 25733, 20172, 2523], + [0, 1495, 25623, 12929, 4290, 26574, 4748], + "bodyParser", + [ + 0, 68, 92, 4856, 6503, 4874, 1009, 25912, 1414, 1429, 1437, 25796, 1610, 1615, 1177, 1955, 2321, 29551, 2899, + 4039, 91, 4707, 38017 + ], + [1, 2343, 25735], + [0, 0, 25736, 25737, 2537], + [0, 68, 92, 4856, 6503, 4874, 1009, 1011, 1414, 1429, 1610, 1177, 2321, 2899, 3758, 4039, 4146, 4261, 91], + [0, 7233, 57, 4747, 1523, 200, 7119, 5675, 7058, 7233], + [1, 2343, 25739], + [0, 25740, 25741, 2514, 2537], + [ + 0, 38035, 1282, 1413, 1420, 1437, 25872, 1525, 38036, 1676, 19400, 1687, 2195, 2714, 2731, 10911, 2975, 16450, + 3181, 3188, 3309, 640, 3434, 28142, 3917, 38037, 705, 38040, 4039, 38041, 4135, 4296, 4390, 4393, 4572, 25898 + ], + [ + 0, 1175, 1178, 1193, 1195, 14220, 1255, 1267, 38044, 38047, 1268, 1272, 1291, 1177, 38050, 18229, 38052, 1922, + 38055, 1935, 38058, 1959, 2126, 2323, 2338, 2464, 2479, 2541, 2544, 1192, 2843, 3211, 1241, 2924 + ], + "humanize-", + [2, 25742, 6988], + "-counter", + [2, 22255, 25744], + [1, 2343, 25747], + [0, 0, 0, 25750, 4139], + "koa-compress", + [3, 2946, 9], + [0, 4749, 4752, 6435, 4166, 3378, 34652], + [1, 2343, 25752], + [0, 25753, 25754, 25755, 2443], + [0, 13581, 27999], + [0, 1329], + [0, 4560, 2056, 3101, 12666, 2090], + [1, 2343, 25759], + "mounting", + "@drftgyhuji7npm/repellendus-eum-et-itaque", + [0, 25760, 25761, 25767, 2523], + [ + 0, 38073, 38076, 38077, 38078, 38080, 1144, 1437, 1525, 1676, 2020, 38082, 2205, 38083, 20786, 3021, 38084, + 38086, 4135, 4207, 4558, 38088 + ], + [ + 0, 5245, 5139, 4874, 5254, 24719, 1414, 1597, 1177, 38092, 2151, 1776, 1894, 3708, 4039, 4193, 38093, 4294, 91, + 21328, 21329 + ], + [2, 29234, 32235, 1524], + "@ladjs/env", + [3, 25689, 31], + "sint-dolorem", + "@enact/core", + [0, 5001, 3304, 6147, 4990, 200, 8632, 4989, 8623, 1179, 8635, 1896], + [1, 2343, 25769], + [0, 25770, 25772, 25767, 2487], + [0, 1437, 1676, 2020, 4135, 3183, 3021, 22776, 4183, 4425, 2845, 38086, 2960, 38101, 27168, 5139, 38077], + "koa-send", + [ + 0, 1797, 1776, 4193, 1984, 1597, 2720, 1894, 4507, 9741, 91, 21329, 5245, 6513, 5254, 21328, 24719, 7892, 38073, + 23452, 38078, 8818, 4754, 7677, 3708 + ], + [1, 2343, 25776], + "sendfile", + "@envelop/core", + [0, 0, 8134, 25777, 2537], + [0, 4757, 38108, 27631, 200, 3741, 2649, 6847, 8618, 4938, 38109, 1644, 38111], + [1, 2343, 25779], + [0, 25783, 25784, 25785, 2443], + "is-warlock", + [2, 3341, 25780], + "reds", + [ + 0, 3157, 3445, 1437, 4761, 1209, 2089, 25294, 38117, 38118, 23878, 38121, 38122, 1543, 1615, 38123, 25555, 9478, + 38080, 15826, 38126, 38073, 38127, 27168, 4562, 38131, 4754 + ], + [0, 1414, 1906, 3297, 4193, 38092, 2203, 1596, 38133], + [0, 13326, 200, 6400, 5001, 3304, 6147, 5122, 4990, 8632, 2873, 8635, 1179, 8623, 1896, 8310], + "webOS", + [1, 2343, 25788], + [0, 0, 25795, 25799, 2537], + "bossy", + [3, 23453, 15], + [2, 25790, 5592], + [2, 9146, 5592], + "find-rc", + "will-call", + [0, 38139, 1104, 1166, 1437, 1474, 1511, 2929, 27127, 3527, 4481, 1906], + "cpr", + "lab-event-reporter", + "@ionic/cli", + [0, 1473, 7208, 1512, 7009, 7201, 200, 1871, 1111, 590, 592, 6621, 6983, 4166, 4744, 3073, 6807, 6876, 2585], + [1, 2343, 25801], + [0, 25805, 3293, 25807, 2487], + [2, 29611, 5457, 1805], + [2, 2102, 17239], + [2, 25806, 553], + [0, 1525, 2720], + "@envelop/", + [0, 4760, 5592, 36, 5995], + [1, 2343, 25811], + [2, 556, 1098], + "md-to-pdf", + [0, 25812, 25815, 25817, 2537], + [0, 3157, 1437, 1471, 4726, 1109, 4294, 1110, 4290, 38150], + "semver-", + "semver-regex", + [0, 1906, 2899], + "latest", + [0, 13326, 200, 8635, 4758, 38152, 38153, 5403, 6458, 1111], + [1, 2343, 25820], + [2, 25829, 6811], + [0, 15916, 25827, 25828, 2523], + "autodoc", + "deft", + [2, 2767, 1149], + "race", + "race.js", + [2, 4284, 176], + [0, 4170, 4135, 2899], + [0, 38160, 4762, 38161, 38162, 38163, 970, 10770, 11154], + [3, 24329, 21], + [1, 2343, 25831], + [0, 0, 0, 25832, 2443], + [0, 91, 2844, 7020, 998, 6591], + [2, 556, 25877], + [1, 2343, 25839], + "@mapbox/", + "cript-tags", + [2, 1967, 25836], + [2, 25835, 25837], + [0, 25845, 25847, 25856, 2487], + "bundlemon", + [3, 16694, 16], + "urner", + [2, 25841, 25842], + "git-rev-sync", + [0, 1170, 2026, 3509, 4763], + "happen", + [ + 0, 7804, 4856, 9417, 7806, 38176, 6494, 38177, 6503, 38179, 1364, 1429, 1431, 1527, 1536, 1575, 1652, 1177, + 38182, 1161, 2899, 3237, 3378, 1894, 4257, 4474, 91 + ], + "karma-expect", + [3, 2066, 9], + "leafdoc", + "prosthetic-hand", + "git-version", + [2, 4049, 25852], + "ontent-classifier", + "gis", + [0, 4763, 2026, 5592, 8800, 38185, 5995], + [2, 8, 25858], + [3, 1008, 21, 5], + [1, 2343, 25860], + [0, 25861, 25864, 25865, 2399], + [0, 1282, 1362, 1676, 34226, 2685, 2832, 1209, 3171, 3242, 705, 4454, 4729], + [2, 25857, 2324], + [2, 25867, 6], + [ + 0, 1173, 1178, 1255, 1264, 1364, 1575, 1700, 1177, 2026, 2323, 2338, 2384, 29396, 2472, 2510, 2541, 2899, 3237, + 3253, 6596, 4019 + ], + [ + 0, 1973, 6533, 5472, 21972, 4386, 10659, 37125, 29727, 1388, 1936, 12075, 965, 1623, 5284, 11857, 6662, 26196, + 38192 + ], + "numbers", + [3, 19535, 16], + "ng-packagr", + [1, 2343, 25870], + [0, 0, 25876, 2514, 2537], + "aproba", + "cmd-shim", + "p-reduce", + "byte-size", + "write-pkg", + [ + 0, 28069, 30286, 38197, 23689, 4874, 32440, 1362, 26739, 2780, 2784, 1192, 2899, 3210, 2765, 4232, 2766, 24652, + 4094, 4376, 4484, 1984 + ], + "examples", + "wide-align", + "has-unicode", + "p-waterfall", + [2, 2977, 7318], + "@npmtea2024/quasi-nisi-doloremque-fugit", + [1, 2343, 25889], + "p-map-series", + "blocking", + "set-blocking", + "@lerna/create", + [2, 2977, 20001], + [0, 25890, 25895, 25896, 4139], + [ + 0, 38202, 6870, 1389, 21146, 38204, 1512, 1525, 1536, 1573, 1676, 2026, 38207, 12783, 38209, 12785, 2590, 2600, + 2659, 12788, 38210, 12789, 1209, 3456, 3470, 38212, 4165, 38213, 17011, 4339, 38215, 20496, 4650, 4652, 1695, + 4746, 38217 + ], + "read-cmd-shim", + [2, 3614, 16830], + [2, 21772, 18709], + "strong-", + [0, 1087, 38221, 38222, 2899, 3524, 4389, 4431, 38224], + [0, 4770, 5472, 1388, 2907, 2899, 12826], + [3, 4588, 21], + [2, 25897, 4059], + "-bump", + [2, 4945, 25899], + [2, 13984, 25900], + "-rest", + [2, 24089, 25902], + [2, 9768, 25903], + [1, 2343, 25906], + [0, 25907, 6736, 25908, 2523], + [0, 666, 672, 677, 9688, 1710, 4135, 4459, 4484], + [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 9627, 9628, 9648, 9659], + [1, 2343, 25914], + [2, 1583, 20499], + "errno", + [2, 15086, 1179], + "jest-codemods", + [0, 25915, 6736, 6767, 2487], + [0, 1437, 4484, 677, 4135, 2203, 666, 17310, 1012, 9688, 19254, 12123], + [1, 2343, 25918], + "benny", + [0, 25932, 6736, 25933, 2537], + "less-port", + [2, 10784, 25919], + "emplate-tag", + [2, 2642, 25921], + "jit-grunt", + [3, 1165, 10], + [2, 21897, 25924], + "mocha-te", + "amcity-reporter", + [2, 25926, 25927], + "phin", + "read-glob", + "@ptkhanh94npm/iusto-libero-aperiam", + [0, 4484, 677, 4135, 2798, 3181, 666, 3527, 8734, 2797, 4748, 8752, 24759, 8762, 2686, 9688], + [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 38247, 9628, 9659], + [1, 2343, 25935], + [0, 25937, 25938, 25939, 34352], + [2, 21897, 2070], + [0, 4484, 677, 4135, 666, 672, 4771, 9688], + [0, 3420, 4270], + [0, 9622, 8174, 9623, 38255, 9627, 9628, 9648, 9659], + [1, 2343, 25941], + [0, 25945, 25949, 25952, 2443], + "abstract-l", + "evel", + [2, 25942, 25943], + [0, 30508, 30509, 4484], + "browser-level", + "-level", + [2, 128, 25947], + [0, 34030, 26312, 10846, 4426], + "@voxpelli/tsconfig", + [2, 12774, 3541], + [0, 7522, 89, 7531, 7535, 7521, 7597, 7518, 8424, 8432, 7528, 10442], + [1, 2343, 25955], + "leveldb", + [0, 25956, 25957, 25958, 2443], + [0, 38264, 3286, 89, 3824, 38265, 4125, 38266], + [0, 4874, 4880, 4883, 1177, 4828, 3561, 4383, 91], + [0, 12589, 1616, 33456, 12589, 5472, 20500, 33459, 1237, 33462, 33464, 12590, 33465, 27666, 11996], + [2, 25944, 2971], + "napi-macros", + [1, 2343, 25962], + [0, 25973, 0, 25975, 2537], + "async-each", + "du", + "cat-iterator", + [2, 1332, 25965], + [2, 2970, 25966], + "mkfiletree", + [2, 15164, 18490], + [3, 25969, 13], + "ross", + [2, 25970, 25971], + [0, 1639, 3744, 97, 7931, 7932, 7910], + "readfiletree", + [0, 89, 5128, 9267, 1832], + [1, 2343, 25977], + [0, 25978, 10298, 25979, 2443], + [0, 16053, 16056, 38278], + [0, 5284, 1776, 1644, 1746, 1745], + "-leveldown", + [2, 14834, 25980], + "level-", + "level-errors", + [2, 7253, 14922], + [2, 25982, 25984], + "supports", + [2, 25982, 25986], + "queue-", + "microtask", + [2, 25988, 25989], + [1, 2343, 25998], + "airtap-sauce", + "encoding-", + [2, 25993, 2971], + "memdown", + [3, 12809, 12], + [2, 4182, 5614], + [0, 25999, 26001, 26002, 2537], + [0, 97, 5663], + "trickle", + [0, 5087, 1192], + [0, 5284, 4967, 89, 6081], + [1, 2343, 26004], + [0, 26005, 26016, 26018, 2537], + [0, 97, 38293, 3744, 3847, 4484], + "levenshtein", + [2, 2068, 26006], + "ld", + "levdist", + [2, 26006, 10699], + [3, 26010, 12], + "-distance", + [2, 6109, 26012], + [2, 26011, 26013], + "talisman", + [ + 0, 5228, 14249, 5700, 8129, 20202, 38298, 20212, 602, 5583, 811, 963, 966, 968, 38299, 972, 974, 5087, 5090, + 4880, 1009, 1011, 7913, 38302, 38304, 1397, 1597, 1610, 1651, 1177, 4916, 1959, 2126, 38307, 38309, 11853, + 19227, 3400, 3698, 9054, 89, 3824, 3847, 3857, 3904, 4146, 4261, 91 + ], + "distance", + [0, 38313, 89, 15774, 38316, 38317, 5399, 1631, 32039, 38319, 7320, 38320, 32040, 38322], + [1, 2343, 26021], + "comparison", + [0, 21012, 0, 26022, 34352], + [ + 0, 6653, 7320, 10039, 24832, 1623, 13006, 38327, 6847, 5284, 676, 38328, 38329, 29002, 24353, 8112, 3561, 6425, + 38330, 18252, 1631, 3586, 38332, 4453, 38333 + ], + [1, 2343, 26027], + "careful-", + "binary-", + [2, 26025, 19101], + [0, 26028, 26029, 26030, 34352], + [0, 2115, 2121, 2127, 1110, 28827, 2856, 4507, 26907], + [0, 2180, 5476, 5478, 2189, 2198, 31852, 91], + [0, 2313, 1383, 614, 202, 1388, 5995, 4967, 2340, 2350], + [1, 2343, 26033], + "country-codes-flags-phone-codes", + [0, 0, 0, 26034, 4139], + [0, 1671, 671, 3315, 17626, 6869, 6671, 3319, 3325, 3362, 6829, 3384], + "just-safe-set", + "ock-registry", + [2, 9494, 26036], + [1, 2343, 26039], + [0, 26040, 26041, 26002, 2523], + [ + 0, 53, 31689, 97, 5663, 4793, 4800, 4838, 4928, 4786, 4944, 4954, 4968, 362, 4972, 24723, 4981, 10895, 4982, + 11518, 841, 7812, 24370, 4985, 1030, 4992, 1165, 1195, 29040, 30521, 1393, 1437, 1525, 1593, 1628, 1630, 1759, + 1763, 2151, 2070, 2220, 4995, 2222, 2651, 2843, 2867, 1209, 3177, 3220, 4996, 3310, 3445, 3561, 3579, 3584, + 3613, 3618, 30274, 1894, 3742, 15033, 3816, 3878, 4079, 13834, 4164, 4167, 4307, 5000, 4409, 5002, 1002, 1983, + 29141, 2924, 4676, 4681, 13152 + ], + [0, 29536, 27134, 4864, 4870, 5009, 5542, 15600, 33768, 11944, 3144, 3244, 3758, 4039], + [1, 2343, 26043], + [0, 6203, 26045, 26046, 2523], + "gitfund", + [ + 0, 549, 811, 8850, 816, 6373, 4863, 5087, 4880, 1009, 1011, 8158, 1584, 1843, 1177, 1895, 1938, 1955, 1959, + 1192, 2780, 2832, 3421, 1894, 89, 3824, 4039, 4042, 4052, 8849, 8853, 4076, 4079, 4230, 4468, 4469, 4474, 4484, + 4508, 2924, 4677, 4681, 555, 560 + ], + [0, 24456, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], + [1, 2343, 26048], + [0, 6203, 26054, 26055, 2537], + "crlf", + [3, 2982, 15], + [2, 6774, 16609], + [2, 26050, 26051], + "renamer", + [ + 0, 53, 87, 92, 8862, 5087, 4874, 1009, 1011, 6834, 6840, 6873, 1031, 11018, 13072, 1593, 1610, 1177, 1895, 1938, + 6902, 1988, 1192, 2780, 1894, 4039, 4042, 4045, 4052, 4076, 4079, 6904, 4468, 4484, 4508, 91, 188, 555 + ], + [0, 188, 8588, 6931, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], + [1, 2343, 26058], + [2, 33018, 188], + [0, 6203, 26061, 26062, 4139], + "ged-respawn", + [2, 7210, 26059], + [ + 0, 53, 87, 92, 4856, 5087, 6503, 4874, 1009, 1011, 6834, 6840, 6993, 6873, 1031, 11018, 13072, 1429, 1610, 1177, + 1895, 1938, 6902, 1988, 3400, 1894, 4039, 4042, 4045, 4052, 4076, 4079, 6904, 7006, 4484, 4508, 91, 188, 555, + 5010 + ], + [0, 188, 8588, 6931, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841, 12075, 1623, 4380], + [1, 2343, 26064], + [0, 26065, 26066, 26067, 2523], + [0, 12396, 23289, 23249, 3493, 12449, 15632], + [0, 9363, 4874, 1414, 31147, 1894, 3985, 3998, 18071, 4505, 4507, 91, 18002, 1906], + [0, 23266, 2587, 23267, 614, 6435, 1936, 1644, 15278], + [1, 2343, 26069], + [0, 0, 26071, 26075, 2537], + "cname-prefix", + [0, 1177, 2899, 3421, 4193], + "autolink", + "hashtag", + "mention", + [0, 4264, 15457, 15482, 13499, 15483, 5995], + [1, 2343, 26077], + [0, 0, 0, 26078, 2537], + [0, 17356, 17362, 17364, 17365, 17384, 17397, 17423, 17426, 1745, 1783], + "pidtree", + [1, 2343, 26083], + "consolemock", + "sonner", + [0, 26084, 26085, 26086, 2487], + [0, 24337, 24344, 18220, 1676, 24345, 2714, 2072, 4238, 4431, 4484, 4753], + [ + 0, 8656, 8660, 6061, 6063, 5245, 24352, 29105, 5087, 4874, 28177, 24358, 18435, 20290, 1177, 1192, 1894, 4131, + 4468, 91 + ], + [0, 12296, 12295, 200, 5131, 1896, 24364, 970], + "@samverschueren/stream-to-observable", + [1, 2343, 26089], + [0, 26100, 0, 26101, 2523], + "is-observable", + "-silent-renderer", + [2, 2991, 26091], + "listr-", + [2, 9787, 3902], + [2, 26093, 26094], + "verb", + "ose-renderer", + [2, 26096, 26097], + [2, 26093, 26098], + [0, 12396, 21300, 32567, 2586, 21308, 12447, 12449], + [0, 2587, 1936, 21308, 26916, 1783, 18108, 26564, 1932, 3958, 32462, 3984, 21306, 4549], + [1, 2343, 26103], + [0, 26105, 26106, 26110, 2523], + "@keyv/compress-brotli", + [0, 2564, 4351], + [0, 1166, 1503, 91, 1906], + [3, 175, 23], + [2, 26109, 16518], + [3, 26104, 15], + [0, 163, 7009, 22316, 200, 13735, 4354, 1111, 1106, 7201], + "@lit/reactive-element", + "@lit", + "-labs/ssr-dom-shim", + [2, 26112, 26113], + [1, 2343, 26125], + "@lit-labs/", + [2, 26116, 5472], + "@lit-", + "/scripts", + [2, 6943, 26119], + [2, 26118, 26120], + [2, 10704, 1283], + "@keyv/memcache", + "@keyv/mongo", + [0, 26126, 26130, 26133, 2443], + [0, 20573, 5545], + "connect-l", + "ogger", + [2, 26127, 26128], + [ + 0, 5517, 28436, 19438, 19181, 442, 8648, 842, 16145, 966, 968, 972, 22375, 5087, 4874, 4880, 5546, 1009, 1011, + 34737, 1177, 1895, 31755, 1959, 1961, 1976, 2203, 2675, 1192, 2780, 2990, 3286, 1894, 89, 3824, 5564, 4039, + 4135, 91, 4523 + ], + "@keyv/sqlite", + "@keyv/test-suite", + [0, 26713, 89, 582, 705, 2325, 1612], + [1, 2343, 26135], + [0, 0, 26138, 26139, 2523], + "http-auth", + "faye-websocket", + [0, 4874, 4218, 4220, 4493, 91], + [ + 0, 91, 998, 553, 5490, 17180, 20052, 2382, 6956, 2844, 5995, 6400, 1781, 6866, 1398, 9254, 15105, 4144, 4141, + 7050, 22789, 22791 + ], + [1, 2343, 26141], + [0, 26143, 26145, 26146, 2537], + "amaro", + [0, 23641, 27185, 29561], + [2, 3000, 1592], + [0, 58, 101, 8648, 1177, 2272, 3019, 2899, 4019, 19767, 4481, 4535], + [0, 36720, 22860, 1388, 16284, 888, 22856, 35087, 11804, 23659, 23664, 23667, 23668, 29725, 29728, 32633], + "micro-backend", + [1, 2343, 26149], + [0, 0, 26150, 26151, 2537], + [0, 2832, 705, 4008], + [0, 1936, 23670, 11513], + [1, 2343, 26153], + [0, 26156, 26157, 26161, 2537], + [2, 2032, 26155, 26159], + "openid-c", + [ + 0, 2591, 25047, 23597, 4290, 24794, 24836, 19569, 15245, 24855, 24871, 24984, 25049, 25034, 24816, 24841, 24900, + 24964, 24989, 24998, 21642, 37100, 25011, 24802, 24828, 24987, 24797, 24958, 25042 + ], + [ + 0, 1414, 2020, 4193, 25122, 1306, 1177, 1701, 25127, 2182, 1894, 842, 1587, 1610, 4342, 3980, 25609, 91, 4874, + 25099, 25108, 6513, 8529, 27525, 25110, 9240, 25103, 25104, 25098, 25137, 25053, 25118, 25114, 25058, 25083, + 10614 + ], + "grunt-svgmin", + "onnect", + "matchdep", + [0, 25155, 5130, 33359], + [1, 2343, 26163], + [0, 26164, 26165, 26166, 2537], + [0, 25183, 25194, 1759, 2858, 3310, 9796], + [0, 33460, 25204, 4874, 5542, 1177, 25209, 1894, 4039, 4494, 91, 1984], + [0, 9649, 17721, 6869], + [1, 2343, 26168], + [0, 26171, 26174, 26188, 4139], + "lws-basic-auth", + "lws-b", + [0, 1676, 4164, 4484, 4747, 2151, 1525, 3310, 25228, 24337, 3322, 24335, 25245], + "lws-blacklist", + [2, 26170, 7803], + [ + 0, 3377, 1192, 2675, 4400, 1177, 4039, 4468, 1894, 91, 5087, 4874, 5245, 28177, 20959, 107, 4864, 5542, 25250, + 8656, 8660, 1009 + ], + "lws-compress", + "lws-co", + "nditional-get", + [2, 26176, 26177], + "lws-cors", + "lws-index", + "lws-json", + "lws-log", + "lws-mime", + "lws-range", + "lws-r", + [2, 13148, 21101], + [2, 26185, 26186], + [0, 2733, 8675, 13494, 5131, 970, 1017, 25259], + "lws-rewrite", + "lws-spa", + [1, 5293, 26193], + "lws-static", + [0, 8391, 26194], + 1753574400000, + [1, 2343, 26197], + "full-stack", + [0, 26198, 0, 26199, 2537], + [0, 1461, 2731, 3744, 3776, 89, 3824, 3847, 4649], + [0, 5130, 6081, 4963, 5131, 25786], + [1, 2343, 26201], + [0, 26209, 0, 26211, 2399], + [3, 24235, 20], + "loose", + [2, 26202, 26203], + [2, 13888, 5669], + "grunt-es", + "3-safe-recast", + [2, 26206, 26207], + [0, 4484, 25804, 29321, 29322], + "grunt-rollup", + [0, 13572, 2220, 36, 5130, 202, 6710, 91], + "grunt-ts", + "rollupify", + [1, 2343, 26215], + [0, 26219, 26220, 16427, 2523], + "indexeddb", + [3, 23920, 12], + "websql", + [ + 0, 24327, 25819, 24329, 24335, 24337, 24338, 24339, 24340, 24343, 24344, 1437, 1676, 1687, 24345, 24346, 1209, + 3445, 6331, 20921, 4135, 4238, 24347, 22651, 4339, 4390, 4484 + ], + [0, 5245, 17577, 24352, 5087, 4870, 4874, 5254, 24358, 24360, 13214, 1192, 2774, 2990, 4039, 4227, 4468, 91], + [1, 2343, 26224], + [2, 31787, 26225], + "openurl", + [0, 6203, 26226, 26227, 2523], + "ecma402-abstract", + [ + 0, 25857, 25862, 25863, 19535, 19, 21, 24, 26, 1009, 1011, 1166, 1584, 1177, 1895, 1938, 1955, 25868, 3421, + 1894, 4039, 4094, 4232, 4484, 4508, 91, 555 + ], + [0, 1098, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], + [2, 3019, 2825], + [1, 2343, 26231], + [2, 7627, 4255], + [0, 26235, 26236, 26237, 2537], + [2, 6698, 19048], + "lockfile ", + [2, 26233, 671], + [0, 20437, 1209], + [0, 4874, 1009, 1011, 1177, 1895, 1938, 1955, 1894, 4039, 4042, 4052, 4076, 4079, 4484, 4508, 91, 555], + [0, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], + [1, 2343, 26239], + [0, 26240, 26242, 7097, 2523], + [0, 1473, 4741], + [2, 31528, 29413], + [0, 10321, 4493, 4543], + [1, 5293, 26244], + [0, 8391, 26245], + 1738454400000, + "@egjs/axes", + "@egjs/imready", + "modularized", + [2, 5316, 26248], + [1, 2343, 26251], + [0, 26252, 26253, 26254, 2537], + [0, 97, 5564], + [ + 0, 29519, 89, 1177, 1503, 4474, 1894, 1610, 3824, 29520, 91, 11853, 4880, 38309, 4883, 29522, 3904, 17584, 1011, + 4889, 1009 + ], + [0, 5472, 89, 582, 2275, 11857], + [1, 2343, 26261], + [2, 27471, 1722], + "kuler", + "clonedeep", + "js-randomness-predictor", + [3, 23307, 13], + [0, 26262, 0, 26263, 4139], + [0, 25510, 29529, 25758], + [ + 0, 6932, 6622, 6694, 6704, 6860, 6695, 4389, 7159, 5341, 7202, 7121, 7060, 7161, 7141, 7287, 6698, 3743, 7311, + 6946, 2090, 6566, 6907, 7228, 4799, 5261, 6863, 2051, 676, 4643, 7535, 6748, 6739, 6618, 2844, 7252, 6673, 6790, + 7531, 7226, 1851, 1612, 4763, 6598, 6728, 6868, 6662, 7148, 6905, 6668, 7292, 7272, 6583, 3767, 364, 6800, 6874, + 4166, 1698, 2021, 6821, 3065, 6435, 3730, 6882, 4647, 6857, 6637, 7031, 7223, 7080, 3113, 7220, 1871, 6801, + 7087, 6938, 7145, 3195, 7255, 7162, 6482, 7094, 6922, 6615, 6738, 6654, 8433, 7212, 7050, 7521, 1525, 6892, + 6830, 3432, 10442, 7053, 7253, 10443, 6937, 6894, 6977, 5592, 6692, 200, 6940, 6867, 7242, 7518, 6582, 3101, + 7038, 57, 7188, 6809, 6998, 4484, 4796, 7089, 7178, 7182, 6827, 7015, 6912, 7011, 6743, 1451, 6575, 7117, 6994, + 3046, 2812, 7199, 2860, 998, 5122, 1111, 6696, 6910, 3529, 7133, 6048, 1303, 6634, 1139, 6846, 6784, 7192, 6777, + 3053, 5351, 6624, 3171, 1896, 2297, 6960, 7022, 6597, 5198, 6802, 6816, 7317, 4141, 6765, 6591, 7236, 1306, + 6681, 5257, 6564, 100, 7004, 6333, 6799, 6774, 7276, 7196, 6797, 1263, 1149, 2649, 7150, 7165, 6753, 7107, 6948, + 6975, 6822, 6787, 6760, 7046, 5472, 6651, 6569, 6825, 7069, 582, 7191, 6968, 6631, 6742, 4744, 7258, 1925, 6794, + 6804, 965, 7149, 6917, 2700, 1192, 2765, 6081, 7029, 1417, 5258, 4426, 6608, 7044, 7123, 7222, 3378, 1616, 3917, + 1614, 1669, 3209, 6570, 7155, 6422, 6714, 6725, 6606, 6778, 7300, 6610, 6716, 1259, 2585, 1393, 6918, 1461, + 1213, 7232, 7172, 6755, 4014, 6919, 7209, 7075, 6818, 6870, 7039, 6795, 6761, 6966, 2154, 6885, 4707, 6964, + 6646, 7218, 7169, 2978, 5501, 1155, 6611, 6955, 1862, 1753, 2220, 6837, 7336, 4386, 6638, 6616, 6553, 7310, + 7061, 6881, 7298, 8424, 5675, 3437, 3456, 6929, 7157, 6580, 6751, 7010, 6648, 3426, 6952, 8435, 4384, 7233, + 6697, 4162, 2150, 3875, 1108, 5165, 6926, 3763, 7229, 592, 3776, 7288, 5957, 6700, 2088, 6650, 7595, 10446, + 7289, 6805, 7099, 7084, 7144, 590, 5374, 5197, 7077, 5286, 7248, 2078, 7085, 7285, 1781, 6653, 10441, 2325, + 5281, 1351, 7309, 7204, 2696, 2899, 3430, 705, 7126, 1697, 2038, 7025, 6641, 6620, 1671, 6859, 6573, 7146, 7245, + 4649, 3220, 6667, 1623, 6793, 6666, 6903, 7230, 7026, 6588, 6858, 1362, 202, 2832, 7023, 7284, 6659, 6577, 7158, + 6594, 7115, 20215, 6789, 5614, 7057, 7528, 7021, 6605, 6621, 5260, 6973, 6913, 6828, 6563, 6715, 1460, 7067, + 7072, 6762, 7033, 7517, 6702, 7020, 6887, 5131, 3778, 6915, 1593, 5194, 7071, 1429, 7042, 6636, 6841, 3428, + 7007, 7532, 6803, 7106, 3073, 6824, 7227, 7286, 2845, 7082, 7114, 7151, 7297, 6769, 3766, 6914, 7189, 7064, + 4720, 6723, 7205, 6780, 6683, 7078, 1858, 6741, 7262, 6962, 814, 6657, 7524, 1544, 7002, 7527, 1585, 5511, 1512, + 6921, 6951, 6856, 7598, 6854, 8428, 6586, 6773, 2105, 7047, 2671, 1541, 6623, 594, 6711, 7147, 6671, 7256, 7194, + 1165, 6786, 3768, 6752, 8427, 1804, 3441, 7275, 3033, 6943, 4354, 4580, 6758, 7027 + ], + "snackbar", + "inject-markdown", + [1, 2343, 26267], + [0, 0, 26268, 26269, 2537], + [0, 2272, 19270, 2899], + [0, 1111, 1936], + [1, 2343, 26271], + [0, 26272, 26275, 26276, 2523], + [0, 6513, 4193, 4484], + [2, 32920, 4521], + "rchitecto-", + [0, 33821, 7709, 33826, 33827, 33831, 33836, 29543, 4508], + [0, 7200, 1168, 5472, 3212, 20188, 29545], + [1, 2343, 26278], + [0, 0, 26279, 26280, 4139], + [0, 6373, 1437, 29550, 2151, 2070, 2323, 2372, 29552, 4039, 4042, 4057, 4076, 4072, 4484, 4487, 91], + [0, 1896, 5066, 29554, 29555, 5122, 12295, 14554, 5284, 4453, 29556, 5131, 1591, 1932, 4653, 6434], + [1, 2343, 26282], + [0, 0, 0, 26283, 2523], + [0, 7201, 5131, 1676], + [1, 2343, 26288], + [2, 28288, 26286, 33678], + "redential", + "isequal", + [0, 26289, 26290, 26291, 4139], + [0, 1364, 1536, 1676, 1710, 11479, 2017, 2929, 4200, 4763], + [ + 0, 8648, 29574, 5159, 838, 5160, 840, 8296, 5601, 1165, 1662, 1177, 1895, 1972, 2203, 3561, 1894, 3710, 23535, + 3709, 4355, 4383, 91, 1983, 1984 + ], + [0, 5592, 5995, 27, 4699, 4729, 4030, 6710], + "isfunction", + [1, 2343, 26294], + [0, 0, 26295, 26296, 2487], + [ + 0, 53, 87, 192, 5467, 1165, 1195, 1387, 31429, 1429, 29582, 1492, 29584, 1652, 29585, 2323, 29586, 2338, 29587, + 29589, 2361, 2367, 2384, 2390, 2419, 2455, 2464, 2479, 2482, 2494, 2496, 2504, 29592, 2510, 2530, 2550, 29593, + 2675, 29594, 2822, 2929, 2899, 3198, 29595, 5561, 3561, 3722, 4015, 4019, 4042, 4045, 21688, 4939, 29596, 4193, + 8959, 29597, 4597, 29599, 2924, 18237 + ], + [0, 1623, 4329, 2278, 676, 6398, 6396, 5130, 14894, 29603, 29607], + [1, 2343, 26298], + [0, 26299, 26300, 26302, 34352], + [0, 1437, 29614], + [0, 29618, 7677, 2675, 2990, 1894, 91, 1984], + "isplainobject", + [0, 200, 1473, 1512, 7208, 6876, 7201, 6983, 29609, 3632, 3073, 6807, 4166, 1871, 590, 592, 7009], + [1, 2343, 26304], + [0, 26305, 26306, 26308, 4139], + [0, 7943, 29630, 3120, 3744], + [ + 0, 48, 53, 68, 13693, 61, 31689, 73, 31693, 5757, 5800, 5818, 5827, 87, 90, 19696, 19438, 19181, 442, 34467, + 32229, 29634, 28970, 29636, 10837, 10840, 29639, 966, 968, 972, 29642, 974, 5087, 11292, 4874, 4880, 4883, 8152, + 1175, 1193, 1195, 20479, 29643, 11335, 29645, 1465, 1584, 1587, 1593, 1610, 1700, 1177, 1879, 1895, 1922, 1938, + 1947, 1955, 1959, 1961, 1976, 2151, 2203, 29646, 1192, 11347, 2774, 2780, 29652, 2832, 3561, 3697, 1894, 3720, + 89, 3816, 3824, 3847, 29655, 3957, 4183, 4270, 4315, 29660, 4415, 29661, 35487, 4468, 4469, 91, 2924, 4677, 4681 + ], + "isstring", + [ + 0, 29610, 29666, 29667, 4627, 6082, 9204, 5130, 89, 699, 9291, 5354, 29668, 29669, 29670, 29671, 7320, 29673, + 29674, 29676, 1473, 998, 8691, 8295, 29677, 181, 6073, 10769, 29678, 4315 + ], + [1, 2343, 26310], + [0, 0, 0, 26311, 2537], + [0, 23584, 23584, 1936, 3205, 1002], + "@thednp/dommatrix", + [1, 2343, 26314], + [0, 0, 26315, 26316, 2537], + [0, 29693, 2228, 2247, 2253, 2258, 2263, 2273, 2281, 2283, 29694, 2308], + [0, 36653, 36650, 29702, 15571, 8192, 5066, 11316, 18346, 35060, 2814, 20632, 6398, 5131], + [1, 2343, 26318], + [0, 26319, 26320, 22658, 2443], + [0, 3561, 33145, 4317, 8712, 1423, 28572], + [ + 0, 4729, 1138, 3244, 3467, 4390, 4763, 12084, 2070, 710, 614, 1082, 31705, 1413, 1676, 2145, 2856, 33213, 1145, + 1398, 1410, 977, 2018, 2755, 3266, 3930, 4135, 4072, 11478, 2105, 6042, 3479, 3729, 2924, 3757, 3784, 33214, + 33173, 842, 9241, 1525, 1610, 2553, 11993, 26453, 23175, 3530, 4270, 33215, 29709, 11534, 13214, 33200, 33202, + 1628, 11890, 2659, 16837, 2689, 33211, 4227, 4294, 4425, 91, 24739, 53, 554, 4865, 33198, 20463, 13753, 1154, + 33204, 1536, 1615, 2805, 4111, 27062, 4165, 15040, 33212, 7080, 104, 8317, 33146, 33174, 5364, 5245, 33191, + 4880, 1195, 1393, 33206, 1562, 33208, 2863, 33210, 3678, 20508, 4307, 11804, 33176, 11477, 4870, 5254, 33209, + 20465, 15031, 3878, 13834, 15048, 97, 33181, 26733, 15018, 3509, 15042, 15047, 101, 8755, 29877, 33197, 15606, + 15009, 3502, 15033, 5216, 33165, 8648, 10837, 20374, 4883, 2661, 15022, 3322, 51, 87, 11011, 23452, 1618, 2674, + 4230, 28512, 15039, 15046, 13471, 10879, 7806, 21122, 16149, 16566, 3672, 90, 33156, 617, 11796, 8264, 33193, + 11800, 1560, 3676, 3957, 68, 33768, 15015, 3688, 9221, 25652, 33158, 33167, 34467, 33195, 36897, 16841, 18730, + 4409, 33159, 29876, 24807, 31666, 16912, 3605, 16842, 33170, 33179, 3177, 4851, 92, 33162, 19861, 29517, 29421, + 33172, 10840, 33183, 33153, 10825, 30521, 10827, 20476, 15273, 83, 16840, 33189, 3638, 81, 5715, 29874, 5757, + 5241, 5820, 5821, 5785, 1251 + ], + [1, 2343, 26323], + [2, 1882, 24717], + [0, 0, 26324, 26325, 2399], + [0, 1414, 34238, 2675, 2990, 3561, 1906], + [0, 3561, 1623, 6425, 26543], + [0, 0, 21613, 21614, 34352], + [1, 2343, 34498], + [0, 1448, 4907, 29733, 3157, 3173, 3527, 3721, 11114, 4207], + [ + 0, 192, 5467, 442, 6061, 16607, 6063, 6065, 16608, 16612, 7746, 4874, 13210, 29740, 1009, 1011, 1610, 1177, + 1953, 2020, 2203, 2675, 29741, 2990, 3536, 1894, 4039, 4131, 91, 1984 + ], + [0, 8678, 3758, 7001, 1017, 29745, 12295, 12296, 29746, 29747, 29748, 158, 3097, 5131, 33777, 29750, 29751], + [1, 2343, 26332], + [0, 26333, 26334, 26335, 34352], + [0, 29758, 29759, 1398, 34690, 3127, 3725, 10397, 29761], + [ + 0, 53, 68, 87, 1195, 29776, 1465, 24542, 1628, 1177, 1879, 31393, 1938, 24732, 2092, 8301, 2651, 29784, 4307, + 4409, 37871, 2924, 4676, 4677, 4681 + ], + [ + 0, 8168, 8170, 8171, 6975, 8172, 8173, 1745, 29786, 29787, 29729, 8124, 29788, 29795, 29796, 29797, 29798, + 29802, 29803 + ], + [1, 2343, 26337], + [0, 26338, 26339, 26340, 2523], + [0, 3744], + [0, 53, 68, 97, 1177, 1879, 1895, 1938, 1947, 1955, 1959, 1961, 1192, 5103, 1894, 89, 3857], + [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 26542, 23187, 29556, 29804, 9944, 7521], + [1, 2343, 26342], + [0, 0, 26345, 26347, 2523], + [3, 532, 8], + [2, 26346, 26651], + [0, 53, 87, 97, 29817, 21155, 1177, 2675, 2990, 89, 3857, 91], + "@tdesign/", + [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 5396, 29819, 15813, 29820], + [1, 2343, 26352], + [3, 17904, 13], + "sprintf-kit", + "uni-global", + [0, 0, 26354, 26355, 2443], + [3, 25092, 13], + [ + 0, 53, 68, 61, 5241, 83, 87, 90, 5583, 811, 816, 968, 972, 1165, 1497, 1652, 1177, 1895, 31755, 1955, 1959, + 1961, 1976, 2675, 2686, 1192, 2990, 3561, 1894, 3744, 89, 3824, 4042, 8849, 29826, 6068, 10854, 4320, 4323 + ], + [0, 89, 35058, 29831, 3392, 89, 4627, 29832, 5131, 12295, 12296, 29836, 29837, 29838, 29839], + [1, 2343, 26359], + "ncjsm", + "tape-index", + [0, 26360, 26361, 26362, 34352], + [0, 97, 29843, 29844], + [ + 0, 53, 78, 83, 87, 90, 92, 5522, 107, 29846, 968, 972, 4880, 4883, 1009, 1011, 1030, 1178, 1413, 1610, 1177, + 1895, 1955, 1959, 2675, 1192, 2780, 2990, 1894, 89, 3824, 4039, 91, 1983 + ], + [0, 29848, 29849, 89, 5128, 38332], + [1, 2343, 26365], + "@standard-schema/spec", + [0, 26366, 26367, 26368, 2487], + [0, 1420, 29855, 4507], + [ + 0, 5517, 19438, 442, 29857, 23689, 1414, 1437, 1516, 1532, 668, 1177, 1895, 1955, 2020, 2203, 2675, 2765, 2990, + 3074, 1894, 4039, 18710, 91, 4523 + ], + [0, 20627, 1739, 1745, 1179, 1783, 5980, 9591], + [1, 2343, 26370], + [0, 26372, 26373, 26378, 2443], + "terminal.js", + [0, 810, 1497, 26570, 16485, 2017, 2696, 3876, 4022, 32284, 5545, 29869], + [ + 0, 48, 53, 87, 90, 92, 97, 19696, 28091, 19492, 19438, 442, 28598, 30507, 810, 11275, 34467, 827, 10828, 28147, + 28466, 31235, 7384, 31237, 28473, 28476, 968, 972, 974, 29879, 33123, 29880, 4874, 4880, 4883, 15606, 1030, + 17214, 7677, 1195, 29883, 20476, 1393, 29645, 1610, 17100, 17101, 17103, 1687, 1177, 26322, 1895, 1915, 1938, + 1942, 1947, 1955, 1959, 1961, 30553, 10851, 2070, 2203, 2675, 2832, 2990, 3127, 3541, 1894, 89, 3824, 3847, + 3876, 4039, 4270, 4409, 4469, 4473, 91, 4523, 15088, 1984, 29887, 2924, 4676, 4677 + ], + [3, 28685, 11], + "refresh", + "overwrite", + "irtual-core", + [0, 89, 6071, 9816, 5128], + "tinyexec", + [2, 17213, 28937], + [1, 2343, 26382], + [0, 26384, 26386, 26387, 2537], + "date-format", + [0, 29896], + "flatted", + [ + 0, 29900, 29905, 29910, 29911, 811, 816, 974, 11096, 11109, 19203, 29914, 11111, 29917, 29921, 1414, 1429, + 29922, 29924, 1177, 29925, 1938, 2832, 8821, 2899, 1894, 4042, 29926, 4146, 4193, 4196, 4261, 4072, 91 + ], + [ + 0, 29935, 11619, 11608, 30891, 11622, 6907, 29936, 12899, 5130, 30442, 17950, 1283, 29939, 33359, 11415, 6624, + 12620, 29940, 29941 + ], + "streamroller", + [1, 2343, 26392], + "@log4js-node/sandboxed-module", + "-producer", + [0, 0, 26393, 26394, 2487], + [0, 53, 13052, 87, 4042, 4045, 4058, 4067, 4415, 29949, 35487, 4535], + [0, 7838, 29953, 7518, 3161, 1098, 29954, 89, 188, 7880], + [1, 2343, 26401], + [3, 9227, 10], + "e-js", + [2, 26396, 26397], + "grunt-open", + [2, 2235, 4358], + [0, 26402, 26403, 26404, 2537], + [0, 97, 29959, 10984, 1673, 3021, 29960, 4443, 1155], + [ + 0, 5652, 61, 83, 87, 92, 192, 5467, 6372, 5583, 811, 16952, 8850, 816, 6373, 29966, 29967, 29980, 26344, 5139, + 4874, 8149, 11438, 14334, 1009, 1011, 11016, 13061, 7677, 23203, 13063, 1031, 36812, 36805, 11018, 1165, 1170, + 1420, 12405, 1527, 1540, 1610, 1651, 1652, 1676, 29972, 668, 1177, 1881, 1895, 1938, 1955, 1988, 2226, 2675, + 2832, 695, 2990, 3025, 26804, 3213, 3561, 1894, 3725, 29973, 3957, 4039, 4042, 34019, 8849, 11899, 15277, 29974, + 15911, 10854, 29975, 29978, 4073, 6904, 4081, 29983, 4484, 91, 1983, 29987, 1984, 188, 4630, 4639, 13151 + ], + [0, 188, 5131, 29990], + [1, 2343, 26427], + "esm2umd", + [2, 26409, 26410], + "int64", + "@astrojs/s", + "itemap", + "@pagefind/default-ui", + [2, 26689, 27593], + "uid2", + "astro-expressive-code", + "bcp-47", + "isemail", + "canonical-json", + [2, 3138, 12442], + "-phase", + [2, 3081, 26419], + "pagefind", + "remoting", + [2, 25894, 26422], + "loopback-", + "filters", + [2, 26424, 26425], + [0, 26430, 26432, 26451, 2523], + "globalize", + [2, 25894, 26428], + [0, 7755, 1869, 2814], + "linkedom", + [ + 0, 53, 87, 23572, 11301, 1165, 1168, 30000, 1597, 1610, 1637, 1651, 18259, 1759, 1177, 1895, 1903, 1938, 1954, + 1955, 1958, 1970, 3363, 3561, 3564, 3566, 30030, 3579, 3605, 30033, 3613, 3640, 30039, 30274, 1894, 4039, 4042, + 4045, 4055, 4058, 20981, 30041, 4067, 20983, 32978, 4073, 12309, 4201, 4320, 4946, 4360 + ], + "or-remote", + [2, 1544, 26433], + [2, 26424, 26434], + [3, 18637, 12], + "tub-transport", + [2, 26436, 26437], + "datas", + "withastro", + "ource-juggler", + [2, 26439, 26441], + [2, 26424, 26442], + [3, 18637, 11], + "astro-integration", + "-transport", + [2, 1716, 26446], + [2, 26444, 26447], + "adapter-", + [2, 32700, 23187], + [0, 12318, 2090, 30044, 30045, 13225, 7518, 5398, 158, 30046, 190, 5131, 18346, 9229, 1542, 30826, 20937, 2814], + [1, 2343, 26454], + "is-docker", + [0, 26460, 26471, 26475, 2523], + "loopback-boot", + "s6-shim", + [2, 13897, 26456], + [3, 26435, 12], + [2, 26458, 2585], + [0, 1170, 2812, 1209, 3183, 4094], + "task-emitter", + [2, 25894, 26461], + [3, 6738, 11], + [2, 26463, 1524], + [2, 25894, 26464], + [2, 1884, 3081], + "processor", + "-preprocessor", + [2, 22126, 26468], + [2, 2877, 26469], + [0, 1429, 1177, 10419, 3188, 2899, 1241], + "sqlserver", + "StrongLoop", + "mBaaS", + [ + 0, 6703, 1702, 200, 1586, 21405, 13397, 33351, 27, 29854, 30053, 21402, 13322, 16697, 28984, 6667, 6574, 30056, + 31937 + ], + [1, 2343, 26480], + [2, 26478, 29168], + [3, 30636, 28], + [2, 26868, 26869], + [0, 0, 26496, 26497, 2537], + "exact-versions", + [2, 32700, 7293], + [2, 26485, 24631], + "steno", + [3, 31231, 18], + [2, 19036, 20], + [2, 5745, 1852], + [2, 2029, 26487], + [2, 32731, 26494], + "embed", + "Storage", + "localStorage", + [2, 1577, 26491], + "polygon", + [2, 32731, 32729], + [0, 1165, 1387, 2323, 30061, 2379, 2409, 2450, 2482, 2494, 2496, 2510, 18426, 30064, 3591, 4320, 4323, 4747], + [0, 29993, 30066, 30067, 1623, 695, 5131], + [1, 2343, 26500], + "rslog", + [0, 0, 0, 26501, 2487], + [0, 89, 6649, 10057, 6355, 3875, 1542], + [1, 5293, 26508], + [2, 13104, 1936], + "@lucide/build-icons", + "@lucide/", + [2, 4080, 591], + [2, 26505, 26506], + [0, 8391, 26515], + "Lucide", + "HTML", + "Feather", + "Icons", + "Icon", + "SVG", + 1731196800000, + "Feather Icons", + "Fontawesome", + [1, 2343, 26519], + [0, 26521, 26522, 2514, 4139], + "Font Awesome", + [ + 0, 30078, 9307, 9311, 30068, 30052, 30073, 9313, 30072, 1497, 12412, 30075, 2071, 7610, 2579, 21308, 3137, + 27008, 3140, 12627, 26929, 26914, 17429, 9337, 3973, 9340, 3988, 30049, 30069, 30059, 27062, 9348, 4207, 17913, + 4473, 30058, 4555, 28830, 4745, 4763 + ], + [0, 11522, 972, 1006, 12396, 9363, 30082, 4880, 4891, 1030, 30084, 23312, 23314, 3286, 89, 3824, 4549, 1984, 28965], + [1, 2343, 26524], + [0, 26525, 0, 26526, 2537], + [0, 30097], + [0, 1674, 30099, 30100, 15001, 13739, 35071, 30103, 30113, 19571], + [1, 2343, 26529], + "decree", + [0, 26530, 26531, 13347, 2537], + [0, 20378, 3530], + [0, 11976, 4874, 20374, 2071, 30138, 2070, 4441, 1531, 91], + "manipulate", + "blur", + "sharpen", + "flip", + "hue", + "saturation", + [1, 2343, 26540], + "lightness", + [0, 0, 0, 26544, 4139], + "transparency", + "fade", + "opacity", + [0, 91, 553, 1973, 8791, 2022], + [1, 2343, 26546], + [0, 26547, 2667, 26554, 2537], + [0, 30173, 4484], + "@75lb/deep-merge", + [3, 1107, 11], + "-sequences", + [2, 26549, 26550], + [2, 1601, 7880], + "load-module", + [0, 30175, 30176, 27227, 30177, 30178, 91, 6742, 57, 15266, 2873, 1993, 7256, 676, 19976, 30179, 5995, 6400], + "-anywhere", + [2, 17242, 26555], + [2, 30307, 553], + [1, 2343, 26559], + [0, 0, 6230, 26560, 2399], + [0, 32054, 4963, 4967, 6082, 3286, 3287, 89, 11167, 31512, 181, 630], + [1, 2343, 26569], + "-home-dir", + [2, 18132, 26562], + "mdast", + [2, 2580, 26564], + "fetch-happen", + [2, 3094, 26566], + [2, 12428, 1783], + [0, 6234, 6230, 26575, 4139], + [2, 25212, 28139], + "-unique-id", + [2, 5843, 26571], + [2, 4402, 163], + "y18n", + [0, 1501, 4963, 4967, 5342, 6082, 3286, 3287, 89, 5341, 9057, 181, 630], + [3, 9357, 10], + "umnify", + [2, 26576, 26577], + [2, 8140, 1687], + "ke-fetch-happen", + [2, 18655, 26580], + [1, 2343, 26583], + [0, 26585, 6230, 26588, 2523], + "@types/which", + [0, 3826], + "wizard", + "task graph", + [0, 4963, 18263, 1786, 4967, 6082, 3286, 3287, 89, 181, 630, 9229], + [1, 2343, 26590], + [0, 26592, 6230, 26593, 4139], + "zoroaster", + [0, 9041], + [0, 4963, 4967, 6082, 3286, 3287, 3412, 3730, 89, 181, 630], + [1, 2343, 26595], + [0, 26592, 6230, 26598, 2537], + " manipulation", + [2, 1871, 26596], + [0, 30246, 4963, 4967, 6082, 3286, 3287, 89, 7193, 181, 630], + [1, 2343, 26600], + [0, 0, 6230, 26601, 2537], + [0, 4963, 4967, 6082, 3286, 3287, 89, 30256, 24843, 30251, 181, 630], + [1, 2343, 26607], + [3, 7678, 9], + [2, 4501, 6996], + [2, 12612, 26604], + [2, 26603, 26605], + [0, 26613, 26615, 26618, 2537], + "lavalink client", + "audi", + "o streaming", + [2, 26609, 26610], + "music", + [0, 3135], + "music bot", + [ + 0, 48, 53, 5241, 87, 92, 19344, 10879, 30263, 5601, 4873, 4874, 1009, 1011, 1177, 1895, 1938, 1942, 1953, 30266, + 13668, 3401, 4039, 91, 1984 + ], + "emoji-datasource", + "voice chat", + [0, 30270, 3541, 1651, 2899, 1984, 1192, 2765, 3283, 28360, 30271, 2793, 1973, 11937, 16237, 5472, 30272], + " integration", + [2, 1721, 26619], + " performance", + [2, 6732, 26621], + [1, 2343, 26625], + "easy-to-use", + [0, 26634, 26635, 26637, 2487], + "feature-rich", + "seamless", + [2, 26627, 26619], + "communi", + "ty support", + [2, 26629, 26630], + "open-source", + "lavalink", + [0, 30288, 30293, 30295, 26557, 32842, 30297], + [0, 30303, 6494, 4874, 30306, 30305, 30310, 2026, 4039, 1531, 91, 1984], + [3, 66, 19], + [0, 30297, 2026, 5995, 1851, 5592, 13527, 91, 5284, 2663], + [1, 2343, 26639], + [0, 0, 26640, 26641, 2443], + [0, 3377, 26230, 4255, 1973, 30351], + [0, 5131, 28125, 4354, 1388], + [1, 2343, 26643], + [0, 26645, 26646, 26649, 2523], + "convex-helpers", + [0, 12449, 4549, 12396, 2586, 21016, 32568, 4233, 12447, 32567], + [0, 1414, 1177, 3958, 1894, 3541, 3985, 91, 4874, 15632, 32484, 27706, 27711, 30411], + "intermediate", + "recursively", + [0, 1745, 9102, 25131, 1932, 3958, 32462, 3984, 4549], + [1, 2343, 26652], + "theme-generator", + [0, 26653, 26654, 26655, 2523], + [0, 30416, 30425, 30431, 30434, 30438, 30439, 30441, 30445, 30447, 30449, 30450, 30452], + [0, 48, 4487, 91], + [0, 30455, 5133, 30960, 1851, 5284, 27838, 18969, 30456, 5131], + [1, 2343, 26659], + "dingbat-to-unicode", + "lop", + [0, 26665, 0, 26199, 2443], + "-licenses", + [2, 22190, 26660], + [2, 13888, 26661], + "duck", + "hamjest", + [0, 25766, 30802, 1461, 30809, 2731, 3744, 3776, 89, 3824, 3847, 4649], + "office", + [1, 2343, 26668], + [0, 26669, 0, 26199, 2399], + [0, 89, 3824, 3744, 25766], + [3, 36878, 12], + "ternal-editor", + [1, 2343, 26673], + [0, 26686, 0, 26687, 4139], + "@nestjs/", + [2, 26674, 10896], + "@nestjs/co", + [2, 26676, 686], + [2, 26676, 23], + [3, 31, 9], + [2, 26679, 2026], + [2, 26674, 26680], + [3, 9687, 9], + "wagger", + [2, 26682, 26683], + [2, 26674, 4521], + [0, 4484, 2735, 547, 2858], + [0, 2733, 5130, 1098, 5131, 1896, 8674, 8675, 1591, 8677, 8678], + "@nestjs/cli", + "@nestjs/t", + [2, 26689, 8615], + [1, 5293, 26692], + [0, 8391, 26700], + "asherize", + [2, 6491, 26693], + [3, 12284, 16], + [2, 26695, 2528], + "llaboration-core", + "limiter", + "embla-carousel-reactive-utils", + 1733616000000, + [1, 5293, 26722], + [2, 19183, 26714, 3181], + "eigen", + [3, 578, 11], + "de-highlight", + [2, 26704, 26705], + "@tabler/icons-react", + [3, 3672, 15], + "mantine", + [2, 26708, 26709], + "imple-vars", + [2, 3677, 26711], + "swr", + [3, 25141, 13], + "context-menu", + "peowly", + "context menu", + "server ", + [2, 26718, 4963], + [2, 7519, 26719], + "user ", + [0, 8391, 26723], + 1733961600000, + [1, 5293, 26728], + "experience", + [2, 26721, 26725], + "usability", + [0, 8391, 26729], + 1734220800000, + [1, 2343, 26731], + [0, 0, 26732, 26734, 2537], + [ + 0, 4172, 2278, 34683, 4484, 1177, 4039, 4042, 4086, 4072, 3363, 3561, 2151, 1894, 1367, 1610, 4320, 91, 6375, + 3400, 3566, 30616, 1165, 1540, 6376, 3019, 34673, 1907, 30617, 1938, 1982, 30620, 10817, 1011, 15290, 6392, 1009 + ], + "axe-playwright", + [0, 1623, 2278, 6398, 20897, 1283, 699, 5130, 30622, 27837], + [1, 2343, 26736], + [0, 26737, 26738, 26742, 2537], + [0, 97, 30628, 30666], + [ + 0, 48, 53, 61, 71, 13052, 83, 85, 87, 94, 4856, 6503, 4874, 1178, 1195, 1208, 1290, 30691, 30696, 1389, 1429, + 1431, 31602, 1610, 1177, 2026, 10621, 2832, 2899, 3421, 705, 4039, 4218, 4409, 91, 2282, 4650, 2924, 4677 + ], + [2, 11932, 26740], + "umd-wrapper", + "mapbox", + [0, 6599, 5131, 5592, 29744, 30730], + "mapbox-gl", + [2, 4609, 4056], + [1, 2343, 26748], + "mapboxgl", + "legend", + [0, 0, 26749, 26750, 2443], + [0, 1414, 1429, 1540, 1596, 668, 1177, 2832, 3010, 2899, 2278], + [0, 5284, 5131, 12295, 12296, 7179], + [1, 2343, 26752], + [0, 26753, 26756, 26757, 2487], + [0, 3775, 1473, 1673, 30778, 1209, 1461, 30779, 3376, 30774, 30772, 30776, 15616, 3911, 30770], + " processing", + [2, 2585, 26754], + [0, 11336, 89, 3824, 4880, 4870, 97, 4883, 30783, 972, 968, 974, 20562, 4808], + [0, 89, 12248, 5128, 30731, 30785, 30786, 4627, 4963, 181, 5130, 4967, 5131], + [1, 2343, 26759], + [0, 26760, 26765, 26199, 2537], + [0, 25766, 30802, 30803, 30405, 30458, 1461, 2731, 3744, 3776, 89, 3824, 4649, 30809], + "linkify-it", + "mdurl", + "punycode.js", + "uc.micro", + [0, 30819, 30820, 30822], + "footnote", + [2, 3108, 26766], + [3, 26767, 14], + "r-inline", + [2, 26768, 26769], + "ins", + [2, 3108, 26771], + "ark", + [2, 7613, 26773], + [3, 7617, 14], + [2, 26775, 22164], + "ndoc", + [1, 2343, 26781], + [3, 5956, 14], + [2, 26779, 13218], + [0, 0, 26782, 26783, 2537], + [0, 6066, 1894, 4042, 4045, 12611, 4048], + [0, 4967, 9006, 29633], + "@nx/docker", + [1, 2343, 26787], + "anchor", + [0, 26788, 26789, 26790, 2537], + [0, 16115], + [0, 972, 4880, 4883, 1628, 2144, 2675, 89, 3824, 3895, 4307, 4469, 21180, 4484, 91, 2924, 6482], + [0, 1631, 30845, 30847, 30848, 4627, 6398, 5131, 4453, 1631, 5399, 30858, 32040], + [1, 2343, 26792], + [0, 26793, 26794, 26795, 2399], + [0, 10780, 1437, 1525, 2020, 2151, 3714, 3742, 4135, 4548, 4707, 4726, 4739, 4753], + [0, 30868, 16480, 1414, 2070, 2203, 14775, 30889, 2658], + [0, 30829, 31731, 30870, 5131, 12295, 30871, 12296], + "emojies", + [1, 2343, 26798], + [0, 26801, 0, 26802, 2537], + "emoticon", + "emoticons", + [0, 3533, 30018, 28941, 29602], + [0, 29699, 2942, 6807, 1179, 1745, 29703, 29753], + [1, 2343, 26810], + [2, 26807, 26809], + "from-to", + [2, 4279, 26805], + "lodash.u", + "pdf-text", + "pperfirst", + [0, 26811, 26812, 26813, 34352], + [ + 0, 31834, 31846, 29951, 66, 29890, 5582, 635, 29057, 1091, 1525, 18145, 30089, 31002, 13812, 2822, 26014, 3079, + 3181, 3310, 30095, 4025, 6477, 4135, 4183, 4474, 91 + ], + [0, 1177, 1939, 1959, 1969, 2151, 1192, 2829, 3123, 4039, 30269], + [0, 5593, 1745, 1179, 1783, 5061], + [1, 2343, 26816], + "rows", + [0, 26817, 26818, 26819, 2523], + [ + 0, 7614, 19976, 3445, 1371, 1437, 2020, 2975, 3478, 4484, 1209, 4135, 1593, 3742, 2924, 1457, 2151, 4447, 1525, + 2641, 1483, 1710, 1869, 3884, 13834, 4689, 30459, 4562, 30876, 3885, 30878, 32359, 30882, 9329, 4681, 30890, + 2651, 30895, 30896, 4676, 30899, 30900, 30902 + ], + [0, 36864, 18055, 4883, 8286, 30913, 3904, 33768, 29125, 30915, 30919, 4985, 38298], + [0, 89, 12478, 2924, 1745, 18061, 18063, 467], + [1, 2343, 26821], + [0, 26822, 26823, 26824, 2443], + [0, 4484, 2735, 547], + [ + 0, 3377, 1192, 89, 1177, 4039, 4042, 4468, 2151, 1894, 3824, 91, 5087, 4874, 4880, 4883, 8656, 8660, 972, 2780, + 10817, 968, 1011, 20562, 1009 + ], + [0, 2733, 5130, 89, 5131, 1896, 24364, 8674, 1591, 8677, 8678], + "microtime", + [1, 2343, 26828], + "theredoc", + [0, 0, 26829, 26830, 2537], + [0, 5087, 1009, 1011, 1593, 1596, 1637, 1177, 1192, 2774, 2794, 2832, 30935, 4042, 4468, 91], + [ + 0, 32814, 6422, 6805, 2013, 24800, 31767, 91, 5284, 11512, 4627, 3111, 30430, 11608, 6400, 1936, 9622, 8174, + 30937 + ], + [1, 2343, 26832], + [0, 26833, 0, 26834, 2537], + [0, 1497, 9272, 9273, 3744, 97, 6372, 444], + [0, 89, 5128, 9267, 30943, 6653], + [2, 13090, 4226], + "lazy-cache", + "list-item", + [3, 19516, 13], + "mixin-deep", + "repeat-string", + [1, 2343, 26848], + "glossary", + [2, 4001, 1932], + " of contents", + [2, 176, 26844], + "of-contents", + [2, 16065, 26846], + [0, 26850, 0, 26851, 2487], + "node-bundle-require", + [0, 9273, 3744, 97], + [0, 89, 5128, 9267, 699], + [2, 28001, 28034, 16111], + [1, 2343, 26856], + [2, 24559, 18089], + "gemoji", + [0, 26857, 0, 26858, 4139], + [0, 1497, 3847, 9272, 3744, 97, 5090], + [0, 89, 5128, 9267, 594], + "CommonMark", + [1, 2343, 26861], + [0, 26862, 0, 26863, 2523], + [0, 30963, 30964, 1699, 3547], + [0, 91, 4521, 678, 12659, 4030, 7096, 5592, 30967, 30968, 5995, 30969], + [1, 2343, 26867], + "jsonpointer", + "run-con", + [0, 26871, 0, 26863, 2523], + [3, 11026, 13], + "uilder", + [2, 10829, 2202], + [0, 30978], + "babel-re", + "@markedjs/eslint-config", + "@markedjs/", + "testutils", + [2, 26874, 26875], + "marked-", + [2, 26877, 5342], + [1, 2343, 26884], + "marked-man", + "recheck", + "@egjs/component", + "@egjs/list-differ", + [0, 26886, 26887, 26888, 2537], + "markup", + [0, 1091, 4135, 2105, 30986, 30987, 31339, 20786, 2745, 27168], + [0, 16499, 1983, 1984, 1597, 2071, 91, 36864, 3401, 19232], + [ + 0, 30990, 30991, 20998, 5194, 5130, 2323, 5284, 1936, 6082, 1783, 6710, 30993, 38087, 8674, 12479, 5347, 5348, + 30997, 30998, 30999 + ], + [1, 2343, 26890], + [0, 0, 26891, 26892, 2523], + [0, 1759, 20463, 1763], + [0, 89, 3286, 23803, 1759], + [1, 2343, 26894], + [0, 26896, 26897, 26898, 2537], + "v8-argv", + [0, 31705, 4227, 31044, 4121, 2626, 6473], + [ + 0, 4757, 1192, 3144, 1177, 3266, 1701, 2924, 2151, 2182, 1894, 1610, 3758, 4507, 2794, 91, 53, 5087, 4874, 1615, + 4677, 1195, 29283, 3401, 3878, 4891, 4864, 21122, 8818, 31054, 4681, 31055, 33002, 31057, 2784, 4409, 1895, + 1955, 2780, 4684, 5241 + ], + [0, 89, 5284, 2924, 26375, 11498, 31062, 3000, 2998, 6109, 6609, 2999], + [1, 2343, 26903], + [3, 2718, 14], + "refixer", + [2, 26900, 26901], + [0, 0, 26904, 26911, 2443], + [0, 34264, 2222, 31069], + "vent-listener", + [2, 11352, 26905], + "typed-event-target", + "simple-assign", + "@onesy", + [3, 1441, 29, 6], + [0, 31076, 2220, 2844, 553, 91, 9381, 5130, 1932], + [1, 2343, 26913], + [0, 26918, 26919, 26923, 2523], + "react-medium-image-zoom", + "complex.js", + "latex", + "escape-latex", + [ + 0, 3467, 6482, 1983, 31090, 1371, 1437, 2020, 1759, 1209, 3539, 4135, 1458, 3363, 3471, 2924, 1457, 2151, 2720, + 1894, 1525, 1587, 1483, 1628, 91, 3921, 31091, 31093, 1393, 13223, 1540, 4025, 4307, 31094, 31095, 31096, 31097, + 9322, 3878, 31098, 31099, 31101, 8161, 29182, 31105, 10936, 31106, 31109, 31110, 31111, 2651, 31114, 4679, 4684, + 31117, 12361, 3177, 4676, 31120, 31123, 31125, 4992, 31127, 2135, 24723 + ], + [0, 1192, 89, 2190, 3824, 5087, 4874, 4870, 31131, 4864, 31134, 31138, 4985], + "-natural-sort", + [2, 5284, 26920], + [2, 17414, 3046], + [ + 0, 31140, 6354, 31141, 17944, 31146, 31153, 27837, 5592, 1303, 5130, 27, 1781, 2934, 31154, 33359, 3424, 28438, + 3469, 4030, 7096, 1965, 31155, 12479, 5284, 29727, 31047, 31048, 31045, 31042, 31156, 31171, 5995, 18063, 31175, + 2968, 31176, 89, 6071 + ], + "jsep", + "ndarray", + "-determinant", + [2, 26925, 26926], + [1, 2343, 26937], + [2, 28402, 28403], + "ndarray-gemm", + "ops", + "ndarray-ops", + "ndarray-pack", + "numeric", + "numericjs", + "pad-", + [0, 26939, 26942, 26943, 2537], + "l-time-collaboration", + [0, 53, 4982, 1420, 1595, 31187], + "sylvester", + "zeros", + [0, 4361], + [0, 11525, 8221, 89, 364, 5592], + "mathematics", + "algebra", + "complex", + "fraction", + [1, 2343, 26949], + [0, 26950, 26951, 26952, 2537], + [0, 104, 18089], + [0, 31206], + [0, 1936, 2587, 1172, 23267, 36587, 23266], + [1, 2343, 26954], + [0, 0, 0, 26955, 2537], + [0, 11961, 10339, 10340, 5122, 5995, 1594], + "charenc", + [1, 2343, 26958], + [0, 26959, 26960, 7537, 2523], + [0, 1673, 1511, 31225], + [0, 2675, 1984, 91, 4874, 975, 11976, 192, 11978, 7677, 5467], + [1, 2343, 26962], + [0, 26964, 0, 26966, 2523], + "md5sum", + [0, 1004], + "checksum", + [ + 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, + 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, + 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, + 12094, 31238, 31239 + ], + [1, 2343, 26968], + [0, 26964, 0, 26997, 34352], + [2, 27022, 27023], + "d-character-reference", + [2, 5877, 26970], + [2, 15103, 26971], + [3, 17995, 15], + "decode-n", + "-char", + "-reference", + [2, 6842, 26976], + [2, 26975, 26977], + [2, 10129, 26978], + [2, 26974, 26979], + [2, 26973, 26980], + [3, 26981, 22], + [2, 26982, 1871], + [2, 3370, 16906], + [2, 26973, 26984], + [2, 26973, 5511], + [2, 26973, 553], + [3, 4292, 10], + [2, 26988, 8193], + [2, 9406, 26989], + [ + 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, + 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, + 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, + 12094, 31238, 31260 + ], + [2, 20627, 6660], + [2, 17991, 6147], + [1, 2343, 26996], + [3, 3137, 10], + [0, 27025, 0, 27026, 34352], + [ + 0, 6400, 4967, 12042, 12045, 12047, 1424, 12048, 12049, 12050, 12044, 12056, 12058, 91, 5284, 7521, 5122, 12075, + 12076, 12079, 1623, 1936, 12080, 12082, 12083, 31268 + ], + [1, 2343, 26999], + [0, 26964, 0, 27001, 2537], + [3, 26986, 16], + [ + 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, + 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, + 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, + 12094, 31238, 31276 + ], + "anitize-uri", + [2, 27000, 27002], + [1, 2343, 27007], + "lines", + "trim-lines", + [0, 26964, 0, 27001, 2523], + [2, 3138, 3987], + [3, 12133, 20], + [2, 27009, 3987], + [1, 2343, 27012], + [0, 26964, 0, 27001, 2443], + [1, 2343, 27014], + [0, 27015, 27019, 27020, 2487], + [ + 0, 7709, 33828, 31294, 31296, 28384, 1364, 1532, 1553, 1560, 1575, 1594, 29013, 1874, 2026, 31300, 31303, 2040, + 33596, 13870, 2212, 31305, 2593, 2738, 11993, 2863, 1209, 3173, 3220, 3222, 3237, 3242, 3345, 3478, 12286, + 17009, 4143, 4351, 31306, 1155, 25370, 4729 + ], + [2, 27577, 3432], + "mdn", + "mozilla", + [ + 0, 7806, 38176, 9227, 5601, 7808, 10406, 8264, 4870, 38179, 24156, 4874, 16936, 4891, 9241, 2020, 2659, 3297, + 4342, 91, 1984 + ], + [0, 12322, 3730, 30045, 31310, 31311, 6949, 21611, 31312, 5403, 5995, 4699, 2026, 20863], + [1, 2343, 27024], + [3, 10848, 19], + [3, 2791, 11], + [0, 27037, 0, 27034, 34352], + [ + 0, 188, 4452, 1593, 668, 2822, 2924, 1457, 3084, 1628, 3560, 4027, 4634, 4639, 13152, 53, 1615, 2092, 1165, + 1195, 37215, 31325, 4689, 36119, 3618, 31331, 31332, 4681, 1584, 3676, 31333, 31334, 4645, 31343, 3177, 31347, + 31348, 1549, 31351, 31353, 3463, 21287 + ], + [0, 1745, 1179, 188], + [1, 2343, 27028], + [0, 27029, 0, 27030, 2487], + [0, 3725, 3105, 18587, 3114, 3107, 31343, 13122], + [0, 1745, 1179, 1783, 188, 19469], + [1, 2343, 27032], + [0, 27033, 0, 27034, 2523], + [0, 31332, 3008, 3084], + [0, 1745, 1179, 188, 19469], + [1, 2343, 27036], + [0, 27040, 0, 27034, 34352], + [0, 31331, 3029], + [1, 2343, 27039], + [0, 27075, 27077, 27064, 34352], + [0, 31331, 1615], + [1, 2343, 27042], + [0, 27043, 0, 27034, 4139], + [0, 3412, 31331], + [1, 2343, 27045], + [0, 27046, 0, 27034, 2523], + [0, 31331, 31343], + "@blazediff/core", + [1, 2343, 27049], + [0, 27050, 0, 27034, 2537], + [0, 31331], + [1, 2343, 27052], + [0, 27053, 27054, 27034, 2523], + [0, 1437, 1869, 2151, 2205, 2226, 2570, 4135, 4452, 10761], + [0, 31414], + [1, 2343, 27057], + [3, 26482, 36], + [0, 27058, 0, 27034, 2537], + [0, 1209, 4333, 13092, 4334, 31331, 21288, 31348, 31375, 31425, 31314], + [1, 2343, 27060], + [0, 27061, 27063, 27064, 2537], + [0, 31434, 31435, 31438, 31442, 31444], + "server-only", + [0, 1429, 2899, 4474, 2924, 48, 53, 13693, 4856, 5087, 4874, 3400, 4677, 6503, 85, 94, 87, 31455, 31456, 92], + [0, 31459, 31460, 9439, 31461, 5131, 11194, 4653, 1616, 31462, 31463], + [1, 2343, 27067], + "@types/title", + [0, 27068, 27070, 27064, 4139], + [0, 31435, 31469, 31470], + [2, 27074, 29387], + [0, 1429, 2899, 4474, 2924, 48, 53, 13693, 4856, 5087, 4874, 3400, 4677, 6503, 85, 94, 87, 31456, 92], + [1, 2343, 27072], + [0, 0, 0, 2514, 34352], + "hashring", + [3, 30708, 19], + [0, 3698, 11194, 1582, 31477, 31480], + "jackpot", + [ + 0, 1429, 2899, 1177, 1593, 4474, 2924, 4469, 48, 1628, 91, 53, 13693, 4856, 5087, 4874, 3165, 3400, 4677, 6503, + 4880, 4307, 31484, 5000, 85, 94, 87, 1954, 1959, 1938, 1958, 1895, 1903, 1955, 1970, 92 + ], + "InnoDB memcached API", + [1, 2343, 27082], + "failover", + "hashing", + [0, 27086, 27087, 27064, 2443], + "membase", + "memcache", + "nMemcached", + [0, 31465, 31477, 31480, 31489, 31490, 31492], + [ + 0, 1429, 4653, 2899, 1177, 9420, 1593, 4474, 2924, 1894, 48, 91, 53, 13693, 4856, 5087, 4874, 3400, 4677, 6503, + 85, 94, 87, 1954, 1959, 1938, 1958, 31496, 1895, 1903, 1955, 1970, 92 + ], + [1, 2343, 27089], + [0, 27095, 27070, 27064, 2443], + "@json", + "joy.com/json-pack", + [2, 27090, 27091], + [3, 27092, 13], + [2, 27093, 614], + [0, 4729, 31435, 31469], + "tree-dump", + [1, 2343, 27102], + [3, 7746, 11], + [2, 8184, 3358], + [3, 4490, 14], + [2, 27100, 10896], + [0, 27104, 0, 27116, 2487], + "fs.js", + [0, 1497, 31515], + "in-memory", + "fsa", + " access", + [2, 6771, 27107], + " file system", + [2, 970, 27109], + "webfs", + "crudfs", + "opfs", + "casfs", + "content ", + [0, 31517, 31518, 5131, 12344], + "able storage", + [2, 15427, 27117], + [2, 27115, 27118], + "pvu", + [1, 2343, 27123], + [2, 7467, 11017], + [0, 0, 0, 7983, 2537], + [2, 24399, 4162], + [2, 2068, 7906], + "mem", + "nanocolors", + [1, 2343, 27129], + [0, 0, 0, 27131, 2523], + "memoization", + [0, 1098, 5130, 1388, 17050, 5472, 12899], + [1, 2343, 27133], + [0, 9756, 27137, 27139, 2537], + [2, 27135, 1276], + [3, 5536, 15], + "gulp-exit", + [0, 1166, 1437, 1596, 3421, 4255, 4257], + "ram", + [0, 1111, 14903, 200, 30248, 2966], + [1, 2343, 27141], + [0, 17263, 27142, 27143, 2523], + [ + 0, 23689, 7892, 10410, 4874, 20959, 28502, 1364, 28556, 2323, 31190, 2526, 2765, 31539, 31540, 2272, 3297, 4039, + 4089, 31541, 4130, 4474, 4487, 31194, 91, 31195, 31186 + ], + [0, 1973, 5472, 11132, 13841, 28522], + [1, 2343, 27145], + [0, 0, 27146, 27147, 2523], + [ + 0, 1173, 1178, 14318, 1264, 14237, 1272, 1177, 1881, 13936, 1895, 1935, 1938, 2126, 2675, 1192, 2990, 1894, + 4039, 4535 + ], + [ + 0, 31549, 31550, 31553, 31565, 9006, 3015, 31566, 15813, 10725, 30672, 5066, 15571, 89, 31567, 1098, 188, 12295, + 5131, 28125, 31568, 31569 + ], + [1, 2343, 27149], + [0, 27150, 27151, 27152, 4139], + [ + 0, 17013, 31573, 18695, 1525, 1544, 18671, 2107, 2036, 14940, 18708, 3173, 31576, 4039, 18667, 4449, 18670, + 4547, 18692 + ], + [ + 0, 442, 4856, 9417, 31586, 31593, 6494, 31595, 7746, 4874, 31607, 6520, 31613, 1009, 1011, 31615, 1429, 1431, + 1587, 1177, 1895, 1951, 1954, 1955, 2020, 2116, 2212, 12870, 2899, 3560, 1894, 6021, 4085, 4135, 4193, 4196, + 18698, 4474, 91 + ], + [0, 14932, 1388, 6147, 9381, 4967, 13441], + [1, 2343, 27154], + [0, 27155, 27156, 27157, 2537], + [0, 31573, 14940, 18714, 18675, 4039, 4085, 12937], + [0, 1429, 1431, 2899, 31627], + [0, 9381, 6147, 4967, 1388, 14932, 13441], + "fast refresh", + [1, 2343, 27160], + [0, 27161, 27169, 27157, 2537], + [0, 17013, 2036, 6474, 3173], + "trim-newlines", + [2, 1420, 21640], + [2, 1677, 21640], + "_comments", + [2, 6865, 27165], + [3, 9488, 13], + [2, 27167, 2104], + [0, 1429, 18766, 2026, 2272, 2899, 14942, 4008, 4085], + "-options", + [2, 3183, 27170], + [1, 2343, 27175], + "cat", + "kitten", + [0, 27176, 27177, 27178, 2537], + [0, 2674], + [0, 2292, 2272, 2899, 4170], + [0, 13428, 1388, 14336, 12197, 5472], + [1, 2343, 27180], + [0, 0, 27181, 27182, 2537], + [0, 1173, 1175, 31653, 1264, 1429, 2899], + [0, 1420, 15321, 1623, 965], + [1, 2343, 27186], + "from2", + "is-standalone-pwa", + [0, 0, 27187, 27188, 2537], + [0, 19325, 31265, 1414, 1537, 1894, 3985, 3998, 4039, 4389, 4505, 91, 1906], + [0, 1936, 18944, 18089, 6843, 11043, 1213, 31661], + [2, 3028, 5056], + "stat-mode", + "ware", + [1, 2343, 27197], + "drafts", + [2, 10722, 27193], + "dir-equal", + [2, 15340, 27195], + [0, 0, 27187, 27198, 2523], + [0, 1936, 31670, 18944, 18089, 6843, 11043, 1213, 31661], + [1, 2343, 27200], + [0, 0, 27187, 27201, 2537], + [0, 1936, 18944, 18089, 6843, 11043, 1213], + "7zip-bin", + "node-7z", + "er-helper", + [2, 18536, 27204], + [2, 3306, 27205], + [1, 2343, 27208], + [0, 0, 27209, 27210, 2537], + [0, 19325, 31265, 1414, 1537, 2577, 2584, 1894, 3971, 3985, 3998, 4039, 4389, 4505, 91, 4549, 1906], + [0, 1936, 18944, 26934, 6843, 11043, 31661, 31676, 1213], + [1, 2343, 27212], + [0, 27213, 22487, 27214, 2537], + [0, 31701], + [0, 1473, 7208, 6616, 1623], + [1, 2343, 27216], + [0, 0, 23215, 27217, 2523], + [0, 965, 1936, 14186, 34254, 11590, 1644, 1646], + [1, 2343, 27219], + [0, 27220, 16487, 27222, 2537], + [0, 2053, 31724, 20273], + "@surma/rollup-plugin-off-main-thread", + [0, 1739, 1745, 8623, 1179, 1783, 5354, 26096], + "asyncro", + [3, 1225, 32], + [2, 27224, 6567], + [3, 13998, 31], + [2, 7256, 591], + [2, 27226, 27227], + [1, 2343, 27236], + "throw-", + [2, 27230, 27227], + [2, 69, 27231], + "directory-", + [2, 27233, 1633], + [3, 16482, 15], + [0, 0, 27240, 27241, 2523], + "evelopit", + [2, 27235, 27237], + "merge-d", + [0, 2899, 1429, 2759], + [0, 1623, 6413, 3766, 31991, 5131, 1644, 3529], + "river-install", + [2, 27239, 27242], + [2, 3382, 27243], + [1, 2343, 27247], + [2, 14585, 6082], + [0, 0, 27248, 27249, 2487], + [0, 1596, 2759], + [0, 1871, 3656, 16906, 1623, 25232, 6422], + [1, 2343, 27253], + [2, 9280, 20627], + [2, 17991, 27251], + [0, 27254, 27268, 27269, 2537], + [0, 1634], + "factory-space", + [2, 17991, 27255], + [3, 17995, 17], + "unked", + [2, 27257, 27258], + [3, 17995, 16], + "ombine-extensions", + [2, 27260, 27261], + [2, 26973, 10368], + "resolve-all", + [2, 26973, 27264], + "ubtokenize", + [2, 27000, 27266], + [0, 1414, 668, 1177, 2899, 4042, 4228], + [0, 1623, 15215, 2632, 3178, 16918, 16919, 31748], + [1, 2343, 27271], + [0, 27272, 27273, 27274, 2537], + [0, 1147], + [0, 1177, 1895, 1955, 1894, 4384], + [0, 5675, 57, 7119, 200, 1523, 7058, 16159, 31759], + "fill-range", + "@ember-tooling/blueprint-model", + "bracket", + [2, 24559, 1227], + [1, 2343, 27283], + "expansion", + "extglobs", + "lookahead", + [0, 27284, 0, 27286, 4139], + [0, 1122, 1125, 31764, 1129, 1532, 2220, 2222, 2817, 18023], + "lookaround", + [0, 31775, 5995, 2195, 31776], + "lookbehind", + [1, 2343, 27290], + "negate", + [0, 27294, 0, 27295, 2537], + "negation", + [2, 7623, 22245], + "posix", + [0, 2817, 3502, 18023], + [0, 31775, 5995, 13531, 20999], + [1, 2343, 27297], + [0, 27300, 0, 27305, 2537], + [3, 7746, 12], + [2, 27298, 1747], + [0, 1532, 2817, 3181, 3502, 18023, 31802], + "mime-score", + "runmd", + [2, 4865, 27304], + "rex", + [0, 31775, 5995, 17977], + [1, 2343, 27307], + [0, 27308, 0, 27309, 2537], + [0, 31809, 2714, 2867, 3181], + [0, 31775, 5995, 31804, 31812], + [1, 2343, 27311], + [0, 27312, 0, 27313, 2523], + [0, 1122, 1125, 31764, 1129, 1532, 2220, 2222, 2817, 3502, 18023], + [0, 31775, 5995, 2195], + "Min Heap", + "min heap", + "maxheap", + "min-heap", + "heap", + "Binary Heap", + "binary-heap", + [2, 7247, 17709], + [2, 27318, 27321], + [2, 27315, 27321], + " binary tree", + [2, 15773, 27324], + "heapify", + [2, 13199, 2656], + "heap sort", + "@utoo/pack", + "heapify up", + [1, 2343, 27335], + "heapify down", + "Priority Queue", + "priority", + [0, 27342, 0, 27345, 2537], + " queue", + [2, 27334, 27336], + [3, 18020, 13], + "-queue", + [2, 27334, 27339], + "priority q", + [0, 1122, 1125, 31764, 1129, 2817, 3502, 18023], + "priorityQ", + [3, 27325, 15], + [0, 31775, 5995, 17978], + "extract min", + "min ", + [2, 27347, 27337], + " priority", + [2, 7287, 27349], + [1, 2343, 27361], + "ing property", + [2, 4327, 27352], + " resizing", + [2, 14000, 27354], + "priority-", + [2, 27356, 20332], + [2, 27357, 26754], + [2, 11512, 27349], + [2, 3768, 27349], + [0, 0, 0, 27362, 2537], + [0, 31775, 5995], + "decrease key", + [1, 2343, 27367], + "increase key", + "searching", + [0, 27368, 0, 27362, 2399], + [0, 3502], + [1, 2343, 27370], + [0, 0, 27371, 27372, 34352], + [0, 5087, 4874, 1596, 2070, 1192, 2822, 31851, 4468, 4487, 4490, 31194, 91], + [0, 36720, 7119, 57, 22856, 5131, 31568, 7310, 28125, 888, 8549, 1388, 18691], + [1, 2343, 27374], + [0, 27375, 27376, 27381, 2487], + [0, 3127, 3725, 31872, 31873, 31869, 8959, 6330], + [ + 0, 1192, 1170, 2675, 2968, 1177, 3188, 4039, 4042, 4333, 1637, 1457, 32826, 1894, 11401, 1610, 1193, 53, 1532, + 2990, 2997, 3400, 1387, 13834, 8648, 87, 1939, 31897, 31901, 4048, 68, 1938, 4077, 4069, 1895, 1955, 4055, + 31899, 1567, 4067 + ], + "@putout/minify", + "b64-images", + [2, 1625, 27378], + "readjson", + [0, 2295, 1739, 1745, 31903, 1179], + [1, 2343, 27383], + [0, 27384, 27389, 27396, 2399], + [0, 3445, 1437, 4747, 1544, 31910, 17964, 1836, 2151, 2182, 3084, 31915, 3000, 4151, 4562, 21847, 31911, 1549], + "try-catch", + "@arktype/attest", + "bench-node", + "try-to-catch", + [0, 1166, 1594, 2020, 2675, 1177, 4039, 4042, 2990, 31917, 4257, 19286, 31919], + "escover", + [3, 19709, 16], + "tout", + [2, 27391, 27392], + "madrun", + "supertape", + [0, 17964, 2295, 1739, 1745, 31903, 1179, 200], + [1, 2343, 27398], + [0, 27399, 0, 27400, 2523], + [0, 31939], + [0, 965, 31838, 2814, 5131, 35059], + "brace", + [1, 2343, 27405], + "-expansion", + [2, 27401, 27403], + [0, 27409, 27410, 27411, 2537], + [2, 25824, 27403], + [2, 4853, 27406], + "zstandard", + [0, 37135, 1209, 3847], + [ + 0, 48, 53, 87, 90, 1193, 1503, 1843, 1845, 1177, 1895, 1903, 31952, 1938, 1954, 1958, 1959, 1970, 1192, 1894, + 31953, 3744, 3775, 89, 3824, 3904 + ], + [0, 1843, 1192, 8745, 21009, 3717, 1448, 6270, 5472, 2275, 1973], + "jest-fixed-jsdom", + [1, 2343, 27414], + [0, 27415, 0, 27416, 2523], + [0, 1086, 31969, 1362, 31970, 4484, 4734], + [ + 0, 12666, 1149, 31972, 31973, 31974, 31975, 20672, 31976, 31977, 7682, 2090, 158, 3097, 6774, 5131, 31978, + 31979, 1644, 1862, 3972, 31980, 2056 + ], + [1, 2343, 27419], + [2, 27423, 13083], + [0, 0, 8134, 27420, 34352], + [0, 1867, 23615, 1936, 18944, 18089, 31998, 2574, 20215, 6435, 1283, 23584, 6692, 22982, 4741, 32000, 32002], + [3, 927, 11], + [1, 2343, 27429], + [3, 1915, 14], + [2, 27426, 15001], + "signed", + "@prettier/", + [2, 19569, 27530], + "certificate", + [0, 27430, 27431, 27432, 2523], + [0, 1448, 32006, 1869, 1291, 1180, 1287, 2151, 32007, 3127, 3183, 37708], + [0, 1173, 1208, 1240, 1280, 1503, 32009, 1177, 2899, 3421], + [0, 1776, 5592, 1746, 1745, 6789, 32011, 6746, 32013, 7221, 32015, 7011, 32016, 6615, 32018, 7194, 32019, 32027], + "fast-archy", + [1, 2343, 27435], + [0, 0, 9839, 27436, 2537], + [0, 1177, 6741, 6939, 1932, 9711, 5547, 3624, 2295, 1745], + [1, 2343, 27439], + "ufo", + [0, 0, 27446, 27452, 2537], + [3, 28920, 12], + "dom-selector", + "jest-stencil-runner", + "fast-color", + [2, 2023, 9463], + [2, 21195, 27444], + [0, 2212, 4257, 4389], + "mobservable", + "reactive", + "frp", + [3, 19780, 13], + "active", + [0, 1745, 3966, 32037, 27018, 32038, 30248, 202], + [1, 2343, 27460], + "-programming", + [2, 27451, 27454], + [2, 27450, 27455], + [3, 17943, 11], + [2, 6649, 27457], + "data flow", + [0, 15821, 27461, 27462, 2537], + [0, 4874, 1414, 1894, 3985, 3998, 4481, 4505, 91, 1906], + [0, 23266, 2587, 23267, 614, 6435, 1936, 2741, 11512], + [3, 517, 14], + [2, 3191, 1422], + [3, 31504, 15], + [1, 2343, 27469], + [2, 13163, 10101], + "expose-gc", + [0, 15821, 27461, 27473, 2487], + "-detector", + [3, 20575, 13], + "thingies", + [0, 23266, 2587, 23267, 614, 6435, 1936, 1623, 3585, 1644], + "browser-st", + "dout", + [2, 27474, 27475], + "yargs-", + "@types/depd", + "rser", + "unparser", + [2, 27477, 27480], + "@11ty/posthtml-urls", + "inclu", + "-language", + [2, 8785, 27484], + [2, 27483, 27485], + [2, 5340, 27486], + "@moch", + "a/docdash", + [2, 27488, 27489], + "fail-", + "on-e", + [2, 10372, 4408], + [2, 27492, 27493], + [2, 27491, 27494], + "s-utils", + [2, 13587, 27496], + "inline-links", + [2, 3986, 27498], + "rewiremock", + "unexpected", + [2, 668, 27511], + "-eventemitter", + [2, 27501, 27503], + [3, 27504, 11], + [2, 27505, 3053], + [2, 27505, 3065], + [3, 27507, 12], + [2, 27508, 2917], + "uslug", + [3, 1208, 16, 5], + "@11ty/recursive-copy", + "node-retrieve-globals", + [2, 9374, 27515], + "match-helper", + [1, 2343, 27522], + [2, 5329, 11807], + [2, 5340, 23767], + [2, 9309, 27520], + "node-loader", + "@zachleat/noop", + [0, 27523, 27524, 27527, 2537], + [0, 12396, 23288, 23289, 3746, 4233, 23257, 23258], + [0, 7729, 4874, 1414, 2854, 3493, 1894, 3985, 3998, 4505, 91, 1906], + "test-console", + "xmllint", + [0, 23266, 2587, 23267, 614, 6435, 1936, 3493, 6892, 1633], + [1, 2343, 27529], + [0, 15821, 23215, 27535, 2523], + "-exports", + [2, 151, 27533], + "lcov", + "moji", + [2, 9477, 7204], + [0, 23266, 2587, 23267, 614, 6435, 1936, 6941, 11512, 32101, 32122, 3661], + [1, 2343, 27538], + [2, 120, 28708], + [0, 27539, 27540, 27541, 4139], + [0, 24566], + [0, 1999, 3165, 1894, 4387, 4389], + [0, 6892, 1936, 1644, 1646], + "define-", + [2, 14678, 3205], + [2, 27542, 27543], + [1, 2343, 27548], + "-descriptors", + [2, 9395, 27546], + [0, 0, 27560, 27561, 2523], + "-val", + "ue-fixtures", + [2, 27549, 27550], + [2, 5600, 27551], + [3, 7810, 10], + "-each", + [2, 27553, 27554], + "s-have-names", + [2, 23238, 27556], + [3, 18432, 11], + [2, 27558, 7083], + [0, 4874, 1414, 23276, 2577, 2584, 3310, 1894, 3985, 3998, 4505, 91, 1906], + [0, 1936, 23670, 10381, 1213, 11512, 32143, 12616, 7102], + "@types/gopd", + [3, 6497, 11], + [2, 27563, 19065], + [3, 4637, 11], + [2, 27565, 20102], + [2, 27563, 27566], + [2, 27563, 2568], + [3, 18491, 11], + [2, 27569, 18985], + [2, 13201, 4552], + [3, 26581, 12], + [2, 27572, 19072], + [3, 27573, 13], + [2, 27574, 19077], + [2, 27572, 15058], + [3, 8860, 14], + [2, 27577, 3430], + [3, 8860, 13], + [2, 27579, 3022], + [1, 2343, 27582], + [0, 27583, 0, 27584, 2523], + [0, 1676], + [0, 27, 2671, 2934, 2026, 2078, 32897, 30135, 33117, 32150, 32153, 32154, 32897, 30131, 32155, 5995], + "@sap/hana-client", + [1, 2343, 27587], + [0, 0, 21181, 27588, 2537], + [0, 1623, 5260, 32164, 3561], + [1, 2343, 27590], + [0, 27591, 27592, 27594, 2537], + [0, 2711], + [0, 24118, 24114], + "hrottler", + [0, 1172, 89, 2711, 5130, 10772, 24120, 23361], + [1, 2343, 27596], + [0, 27591, 27597, 27594, 2487], + [0, 32144, 32191, 24118, 24114], + [1, 2343, 27599], + [0, 0, 0, 27600, 2537], + [0, 1172, 89, 2711, 5130, 10772, 24120, 1936, 24122, 36, 965, 1388, 4042, 32199, 32200, 6802], + "unix-dgram", + "webidl2", + "unittest", + [1, 2343, 27605], + [0, 0, 27606, 27607, 2537], + [0, 1700, 2323, 1637, 3561, 2494, 32214, 2482, 2549, 32215], + [0, 1623, 6398, 6400, 5130, 5122, 32219], + [2, 2364, 21928], + "-phantomjs", + [2, 2463, 27609], + [1, 2343, 27613], + "mockJSON", + [0, 27615, 27616, 27617, 2537], + "mockAjax", + [0, 3220, 4110], + [0, 1149, 2228, 2258, 2274, 2281, 2314, 1776, 1209, 705], + [0, 1367, 32226, 32227, 1745, 1776, 18011, 699], + [1, 2343, 27620], + "faste", + [0, 0, 27621, 27625, 2487], + [0, 23689, 4874, 28502, 2765, 2272, 4130, 4487, 31194, 91, 31195], + "st-validator", + [2, 27619, 27622], + [2, 5310, 2282], + [0, 1973, 5472, 11132, 13841, 28522, 2765], + "@icebob/node-memwatch", + [1, 2343, 27642], + "@types/bunyan", + "oredis", + [2, 8802, 27629], + "no", + "@types/pino", + "avsc", + [2, 1317, 1289], + "cbor-x", + "dd-trace", + "etcd3", + "event-l", + "oop-stats", + [2, 27638, 27639], + "fakerator", + [0, 27653, 27661, 27663, 2523], + "gc-stats", + "jaeger-client", + "kafka-node", + "-repl", + [2, 3219, 27646], + "msgpack5", + "nats", + "node-n", + "ats-streaming", + [2, 27650, 27651], + [0, 16738, 35957, 7824, 2798, 3717, 4468], + [2, 29351, 4255, 591], + "notepack.io", + "redlock", + "rhea-promise", + "thrift", + "v8-natives", + [2, 4712, 13083], + [ + 0, 32243, 10, 13, 16, 19, 21, 24, 26, 30, 32, 34, 53, 87, 192, 22559, 19181, 442, 16738, 8755, 554, 4864, 5087, + 4874, 5254, 1009, 1011, 27726, 1193, 1437, 16307, 1567, 1610, 10936, 1177, 1895, 1938, 1939, 1942, 1955, 2020, + 2151, 32245, 2070, 2203, 2675, 1192, 2780, 2832, 3534, 1894, 4039, 4094, 4135, 4484, 4494, 4507, 91, 4523, 4769 + ], + [3, 14584, 12], + [0, 1192, 91, 1098, 5472], + "messagebus", + [1, 2343, 27667], + "distributed", + [0, 27668, 27670, 27671, 2523], + [0, 11518, 1420, 1437, 1457, 1525, 1544, 16082, 3445, 3613, 3616, 4200, 4207, 33212, 4562, 4729], + "ppsm", + [ + 0, 53, 368, 7948, 370, 554, 811, 816, 32251, 842, 16145, 966, 968, 972, 974, 11485, 5087, 19799, 4874, 4880, + 4883, 24370, 10844, 9241, 1009, 1011, 1030, 32252, 10783, 1165, 1610, 1177, 1895, 1903, 1938, 1953, 1958, 1959, + 1192, 2802, 695, 3363, 3400, 3561, 37015, 32253, 1894, 89, 3824, 3847, 4039, 4042, 8849, 4057, 15277, 2278, + 4315, 4383, 91, 1983, 32255 + ], + [0, 5472, 1192, 4967, 17758, 1676, 32264], + [1, 2343, 27673], + [0, 27674, 27675, 27676, 4139], + [0, 2757, 32269], + [0, 32272, 32273, 2398, 2036, 2899, 5354], + [ + 0, 21738, 13230, 1676, 1739, 1745, 16284, 8623, 1179, 2036, 1383, 6706, 3430, 32275, 32277, 1209, 6807, 1783, + 1283, 5354, 26096 + ], + [1, 2343, 27682], + "zone", + "timezone", + "olson", + "iana", + [0, 27683, 27684, 27685, 2399], + [0, 32281], + [0, 3088, 3310, 1187], + [0, 3088, 32289, 4017, 36, 5995], + [2, 5335, 553], + [2, 1351, 27686], + [2, 21289, 27687], + "-provider", + [2, 2138, 27689], + [2, 23107, 27690], + [2, 21289, 27691], + [2, 21289, 553], + "worker-", + [2, 27694, 10057], + [2, 21289, 27695], + [3, 27687, 16], + "extdocument", + [2, 27697, 27698], + [2, 4619, 27699], + [3, 27700, 23], + [2, 27701, 103], + "vscode-uri", + [1, 2343, 27721], + "cohaszing", + [2, 15276, 27705], + [3, 25072, 11], + "monaco", + "@remcohaszing/eslint", + "remcohaszing", + [2, 3996, 27710], + "yaml-l", + [2, 15675, 2995], + [2, 27712, 27713], + [2, 27716, 27717], + [3, 162, 22], + "tegrations-common", + [2, 8214, 27719], + "-pattern", + [2, 10853, 11597], + [0, 27727, 27728, 27729, 4139], + "monads", + "either", + "maybe", + "result", + [2, 1101, 1177], + [0, 26987], + [0, 4874, 1414, 3167, 1894, 3985, 3998, 4505, 91, 1906], + [0, 3167, 32300, 32301, 10381, 7131, 32303, 1936, 3987, 1783, 4549], + "-connect", + [2, 1304, 27730], + "paginator", + [2, 10784, 27732], + [1, 2343, 27736], + "free-swig", + [0, 0, 0, 27741, 2537], + "gridfs-stream", + "mongodb-", + [2, 3764, 57], + [2, 27738, 27739], + [0, 3167, 614, 6435, 1936, 10368], + [2, 17037, 15988], + [2, 22785, 4408], + "@types/rollup", + "istration", + [2, 20897, 27745], + "GUI", + [1, 2343, 27753], + "manage-mongo", + "phpmyadmin", + "UI", + "web-based", + [0, 0, 0, 27754, 2399], + [0, 3167, 614, 6435, 1936, 10381, 1213], + [1, 2343, 27756], + [0, 0, 27763, 27766, 2537], + "@mon", + "godb-js/saslprep", + [2, 27757, 27758], + "-string-url", + [2, 21404, 27760], + [2, 27738, 27761], + [0, 16268, 2228, 2272, 3220, 4720, 4535, 17565, 2296, 32324, 2283, 2253, 2273, 2281], + "socks", + "snappy", + [0, 4576, 5131, 7310, 31568, 13735, 22856, 1388, 15525, 32334, 32336], + "mocha-sinon", + "gcp-metadata", + "legacy", + [1, 2343, 27783], + "erberos", + [2, 13053, 27771], + [3, 7814, 10], + "lprep", + [2, 27773, 27774], + "v8-heapsnapshot", + [3, 27759, 12], + "zstd", + [2, 27777, 27778], + [3, 15507, 14], + [2, 27780, 1002], + [2, 9415, 1435], + [0, 27794, 27808, 27809, 2537], + "mongodb-c", + [2, 20203, 7141], + [2, 27784, 27785], + [3, 1982, 16], + "@jimp/js-bmp", + "used-imports", + [2, 27787, 27789], + [3, 13547, 28], + [2, 27791, 591], + "@jimp/js-gif", + [0, 16868], + "@jimp/js-jpeg", + "@jimp/js-png", + "@jimp/js-tiff", + "kareem", + "mpath", + "mquery", + "sift", + [2, 27804, 27811], + "acquit", + [3, 24788, 12], + "acquit-ignore", + "acquit-", + [2, 27806, 3209], + [0, 1192, 1177, 4468, 1894, 91, 5087, 4874, 16874, 1895, 1011, 1009], + [0, 32345, 32346, 1623], + [2, 3044, 5056], + "-blit", + "odm", + [2, 27815, 27816], + "datastore", + [3, 27802, 15], + "ur", + [2, 27818, 27819], + [3, 27802, 13], + "circle", + [2, 27823, 27824], + "-callbacks", + [2, 1292, 27821], + [3, 27817, 14], + "olor", + [2, 27828, 27831], + "node-monitor", + [2, 21004, 14837], + [3, 27820, 15], + "probe", + "JMX", + "ntain", + [2, 27828, 10177], + [2, 27823, 9970], + [2, 27818, 27836], + [2, 9280, 3233], + "displace", + "dashboard", + "monitoring", + "control ", + [2, 27839, 9872], + [2, 27842, 27843], + [3, 27834, 15], + "ther", + [2, 27818, 27860], + [3, 6503, 9], + "ngodb", + [2, 27845, 27846], + "-middleware-cast-ids", + [2, 3236, 27848], + [3, 27849, 16], + "fields", + [2, 27850, 27851], + "-callback", + [2, 2034, 27853], + [2, 27850, 27854], + [2, 27850, 14690], + [2, 27850, 3766], + [2, 9251, 21404], + [2, 27850, 27858], + "fisheye", + "gitbook-cli", + "gitbook-", + "plugin-a", + "nker-enable", + [2, 27863, 27864], + [2, 27862, 27865], + [3, 27866, 15], + [2, 5317, 4147], + [2, 27867, 27868], + [2, 27876, 27877], + "edit-link", + [2, 27867, 27871], + [2, 27867, 2195], + [2, 27867, 588], + [2, 27850, 1676], + [3, 27844, 14], + "lip", + [2, 27818, 3428], + [2, 27818, 10098], + [2, 27818, 24171], + [2, 27818, 27882], + "quantize", + [2, 27818, 24800], + [2, 27885, 27886], + [3, 27883, 14], + "otate", + [2, 27818, 17487], + "@jimp/utils", + [1, 2343, 27903], + [2, 27891, 27892], + "@jimp/co", + "nfig-eslint", + [2, 24787, 27894], + [3, 549, 17, 16], + [2, 27896, 1984], + [3, 27890, 13], + "commist", + "node-self", + "help-me", + [2, 1983, 27901], + [3, 19232, 22, 6], + "mqtt-packet", + [0, 27906, 23215, 27911, 2487], + "-allocator", + [2, 6988, 27904], + [0, 9315, 34578, 31644, 26972, 32360, 32364, 32365], + [2, 19332, 6706], + "wsl-utils", + "monocart-coverage-reports", + "worker-timers", + [0, 1644, 1936, 6843, 11043, 18944, 18089], + "aedes-cli", + [3, 5616, 9], + [2, 27913, 202], + [2, 11932, 27914], + "leak", + "ed-handles", + [2, 27916, 27917], + "mqtt-", + [2, 27919, 21404], + "tinyglobby", + "node-style-text", + "level-store", + [2, 27919, 27923], + [1, 2343, 27929], + "/subscribe", + [2, 20001, 27926], + [2, 19177, 1783], + [0, 0, 0, 27932, 2537], + [2, 27931, 29682], + [3, 218, 19], + [0, 3561, 22147, 676, 134, 89, 1623, 32372], + [2, 26343, 27934], + "ibus-quod", + [1, 2343, 27937], + "@tediousjs/connection-string", + [0, 27938, 21181, 27941, 2523], + [0, 16837], + "msnodesql", + "tds", + [0, 1623, 5260, 3561], + "node-tds", + "qlserver", + [2, 3343, 27943], + "msnodesqlv8", + "node-m", + [1, 2343, 27950], + "node-mssql", + "list-dependents-cli", + [0, 0, 27951, 27952, 34352], + [ + 0, 53, 87, 32389, 10706, 32390, 1177, 2765, 2297, 2881, 2886, 2895, 2898, 2910, 2923, 29946, 3750, 3758, 4042, + 4045, 6390, 4071, 4073, 25238, 824 + ], + [0, 22562, 3758, 3541, 13428, 32395, 32396, 5926, 5472, 11132, 3750, 28522, 824, 30271], + "@bundled-es-modules/cookie", + [3, 27953, 20], + "until-async", + [1, 2343, 27965], + [3, 546, 12], + "nfirm", + [2, 27957, 27958], + "@types/sta", + "tuses", + [2, 27960, 27961], + "headers-", + [2, 27963, 6422], + [0, 27970, 27971, 27972, 34352], + [2, 8140, 14643], + "json-bigint", + "page", + "page-with", + [0, 1282, 2555, 3744], + [0, 1389, 1391, 1437, 1700, 2323, 2351, 2404, 2494, 32402, 2530, 2541, 3159, 32405, 89, 3824, 4603], + [0, 89, 5128, 4384, 32410, 4453, 6380, 2555, 5131], + [1, 2343, 27974], + [0, 27975, 27976, 27977, 4139], + [ + 0, 32421, 688, 28208, 691, 9712, 9296, 1091, 1092, 1437, 1458, 1543, 1676, 2226, 2687, 2822, 12284, 3173, 3422, + 3423, 3467, 3742, 4135, 4183, 4213, 6479, 176, 36864, 28731, 4548, 13291 + ], + [ + 0, 11976, 192, 5467, 9737, 32432, 29355, 27654, 811, 8850, 816, 6373, 5245, 7637, 7746, 7812, 5254, 28736, + 28557, 7677, 36874, 2675, 2931, 3297, 1890, 12285, 1894, 4042, 15277, 4494, 4507, 91, 1984 + ], + [0, 5592, 1118, 2210, 1745, 27662, 29370, 3422, 3452, 29369, 29365, 29368, 29367, 28360, 9591, 8124], + "append-field", + [1, 2343, 27980], + [0, 0, 27985, 27987, 2443], + "fs-temp", + "testd", + "ata-w3c-json-form", + [2, 27982, 27983], + [ + 0, 5535, 972, 5087, 4880, 4883, 34722, 1009, 1011, 1597, 1701, 1177, 1895, 1955, 1959, 1961, 2193, 32447, 1192, + 32448, 3165, 30935, 32449, 1894, 89, 3824, 34725, 4201, 4468, 91, 32450 + ], + "formdata", + [0, 89, 31611, 5128, 20542, 4439, 32453, 1473, 6400, 13161, 30858, 3807, 7320, 31152, 6653, 32454], + [1, 2343, 27989], + [0, 27990, 27991, 27993, 2537], + [0, 11804], + [0, 87, 90, 4880, 1843, 1845, 1192, 3775, 3904, 4042, 4045, 4055, 4067], + "array-union", + [0, 4576, 5131, 7310, 31568, 13735, 22856, 1388, 32464, 32465, 15525, 11415, 7201], + [3, 20454, 11], + "oxy-addr", + [1, 2343, 27997], + [0, 0, 27998, 28000, 2537], + [ + 0, 192, 4874, 4880, 4883, 4887, 1009, 23648, 1177, 1895, 21564, 1938, 1953, 1955, 1958, 1959, 2675, 1192, 2990, + 3165, 1894, 3720, 89, 3824, 3885, 3889 + ], + "pend", + [0, 89, 7433, 38, 3884, 3885, 32473, 3286], + [3, 32265, 24], + "@jsumners/line-reporter", + [1, 2343, 28005], + "vue-drag", + [0, 0, 28006, 28011, 2537], + [ + 0, 3421, 2832, 2297, 2899, 89, 3875, 4193, 1145, 1177, 1209, 3698, 4072, 9381, 1503, 1593, 3729, 2924, 1317, + 3824, 32487, 91, 53, 4874, 2900, 3876, 4880, 1195, 8821, 2925, 107, 2069, 4883, 87, 4884, 1959, 3904, 32488, + 966, 2904, 2881, 2912, 2895, 38299, 1011, 11470 + ], + "test report", + "html ", + "html report", + " to ", + [0, 2062, 4162, 89, 3797, 32491, 1693], + "json to html", + [1, 2343, 28014], + [0, 0, 0, 28015, 2537], + [0, 3857, 5131, 12295, 12296, 6574, 2090, 11328, 30045, 32497, 2636, 2295], + [1, 2343, 28017], + [0, 0, 28018, 28019, 2537], + [0, 97, 4880, 5091, 89, 3857, 91], + [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 15571, 35060, 32504, 158, 32505], + [1, 2343, 28021], + [0, 26338, 28028, 28029, 2523], + "tory-reporter", + [2, 2916, 28022], + "mezr", + "web-a", + "nimations-js", + [2, 28025, 28026], + [0, 1178, 1177, 1879, 1895, 1938, 1947, 1955, 1959, 1894, 32510], + [0, 3857, 5128, 31912, 89, 5131, 12295, 181, 3730, 32516, 27819, 9906, 10036, 32527, 32529, 1478, 7521], + "bin-packing", + [1, 2343, 28032], + [0, 28037, 28041, 28053, 2537], + [2, 20876, 28090], + "autolink-", + [2, 28001, 26766], + "sqlstring", + [0, 1654, 32535, 1655, 1660, 3744], + [2, 27679, 2085], + "urun", + "utest", + [ + 0, 32538, 10821, 14689, 10828, 32540, 1178, 1193, 38304, 1668, 1177, 1903, 1938, 1954, 1958, 1959, 32541, 1970, + 2675, 1192, 2990, 1894, 3720, 89, 3857, 32510, 3904 + ], + [2, 28050, 28065], + [2, 28887, 28044], + "v2", + "aws-s", + "sl-profiles", + [2, 28045, 28046], + "generate-", + [2, 28048, 3046], + [3, 29934, 12], + "placeholders", + [2, 5773, 28051], + [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 13814, 15480, 9816, 1653], + [1, 2343, 28055], + [0, 28060, 28061, 28062, 2487], + "assert-diff", + "sync-await", + [2, 15907, 28057], + "poku", + [0, 2018], + [0, 5079, 1177, 21166], + [0, 3857, 5128, 31912, 89, 5133, 5131, 12295, 12296, 181, 24633, 32543, 32552], + [1, 2343, 28064], + [0, 28066, 28068, 28070, 4139], + "vitest-pool-workers", + [0, 21174, 4649], + "thenify", + [ + 0, 32558, 48, 53, 5241, 85, 87, 14128, 90, 365, 370, 6372, 811, 816, 6373, 972, 20562, 4880, 1178, 1193, 1610, + 1177, 1895, 1935, 1939, 1958, 1959, 1961, 2126, 29945, 2193, 32559, 1192, 30935, 1894, 3720, 89, 3824, 32561, + 3904, 4039, 4042, 4045, 4073, 91 + ], + [2, 31468, 31471], + [0, 89, 32225, 30245, 4627, 5398, 8190, 8191], + [1, 2343, 28077], + "bats", + [2, 28075, 28493, 28553], + "switcher", + "@", + "@prisma/dmmf", + [0, 28079, 28081, 28082, 4139], + "gable-next", + [0, 32571, 31528, 1461], + [3, 29754, 14], + [ + 0, 30533, 5535, 966, 968, 972, 32573, 4859, 4874, 4880, 4883, 1030, 16480, 1651, 2832, 23535, 89, 3824, 4201, + 1531, 4484, 91, 1984 + ], + [0, 89, 6398, 5066, 5131, 9320], + [1, 2343, 28086], + [2, 28085, 3259], + [3, 28092, 16], + [0, 28087, 28089, 28096, 2399], + [0, 4484, 32597], + "couchdb", + [0, 32632, 5535, 4201, 89, 3824], + "spanner", + [2, 30534, 4675], + "@testcontainers/postgresql", + "fastest-", + [2, 28093, 18729], + "rtl-css-js", + [0, 89, 590, 1623], + [1, 2343, 28099], + "iconista", + [0, 0, 28102, 28104, 2537], + "pnpm10", + "libreact", + [0, 1148, 2899, 3697], + "jsxstyle", + [0, 1623, 1473, 32453, 2585], + [1, 2343, 28106], + [0, 28107, 0, 7573, 2523], + [0, 32733, 1004, 32730, 32737, 32739, 32744, 32722, 32736, 32741, 32720, 32678, 32725, 32727], + [1, 2343, 28109], + [0, 0, 28110, 27147, 2523], + [ + 0, 53, 87, 92, 192, 5467, 5583, 16952, 6373, 10615, 5087, 4874, 1009, 1011, 1031, 17584, 1178, 1193, 19839, + 1540, 1610, 1177, 1903, 1938, 1954, 1958, 1988, 2193, 2675, 2742, 1192, 2780, 2990, 4039, 4042, 4076, 91, 4630 + ], + [2, 30495, 28112], + "lysia", + [1, 2343, 28114], + [0, 0, 28124, 24467, 4139], + "gitcloud", + "hasbin", + [2, 34316, 3863, 34320], + "page-icon", + "premove", + "@types/hasbin", + "@types/pa", + "ge-icon", + [2, 28121, 28122], + [0, 8144, 1465, 1584, 1628, 2092, 6327, 3177, 1894, 4028, 2278, 4111, 4469, 91, 4027, 2924, 4677, 4689], + "desktop", + "@vue-macros/common", + [1, 2343, 28128], + [0, 2513, 28129, 28131, 2537], + [0, 5535, 4201, 968, 972, 32632, 2780], + "proxy-lib", + [0, 89, 1564, 32775, 32776, 32777], + "font-finder", + "pbxproj-dom", + "montag", + "simple-plist", + "ios-device-lib", + [2, 21464, 1155], + "proper", + "-light", + [1, 2343, 28146], + "-lockfile", + [2, 28138, 28141], + "ios-", + "sim-portable", + [2, 28143, 28144], + [0, 28148, 28149, 28156, 2487], + [2, 28457, 28462], + [0, 32782, 4484], + [0, 5535, 4201, 32632, 32786, 1845, 89, 3824], + "-merge-patch", + [2, 2072, 28150], + [3, 26989, 11], + "ackage", + [2, 28152, 28153], + "@nativescript/doctor", + [0, 32788, 89, 32789], + "-dev-xcode", + [2, 3271, 28157], + "provi", + [1, 2343, 28168], + "sion-finder", + [2, 28159, 28161], + [2, 5131, 28162], + [2, 28143, 28163], + "@rigor789/trapezedev-project", + "@rigor789/", + [2, 28166, 14562], + [0, 28169, 28170, 28171, 2523], + [0, 1593, 97, 32796, 32795], + [ + 0, 695, 3709, 2924, 1628, 91, 53, 2969, 4677, 1195, 4307, 32808, 4689, 87, 4359, 4681, 92, 83, 1198, 5756, 61, + 78, 76 + ], + [0, 7201, 1676, 5131], + [2, 32904, 364], + [1, 2343, 28174], + [0, 0, 28181, 28185, 2399], + "@types/pl", + "ist", + "@types/plist", + "@types/retry", + [3, 5364, 9], + [2, 28179, 3924], + [0, 4874, 9743, 4579, 1983], + "@types/pacote", + "btab", + [2, 8153, 28183], + [0, 1983, 5130, 6731], + [1, 2343, 28188], + "@types/tunnel", + [0, 0, 28201, 28212, 2523], + "@types/xml2js", + "@types/ar", + "chiver", + [2, 28190, 28191], + "@types/qr", + "-image", + [2, 28193, 28194], + [3, 7810, 11], + [2, 28196, 2138], + [3, 13418, 17], + [3, 5090, 11], + [2, 32904, 4412], + [0, 1175, 1195, 1267, 1610, 1628, 2092, 3342, 8119, 4111, 32821, 4307, 188, 4634, 4639, 4640, 4645, 2924, 4681], + "er-lockfile", + [2, 28199, 28202], + "@types/np", + "mcli__arborist", + [2, 28204, 28205], + [3, 9315, 10], + [2, 9710, 15774], + "al-analytics", + [2, 9788, 28209], + [2, 28207, 28210], + [0, 9006, 29633, 32827, 32828, 32829, 32830, 32831, 4967, 32832], + [1, 2343, 28216], + [2, 31819, 31823], + [3, 27933, 13], + [0, 28217, 0, 27026, 4139], + [0, 1415, 1842, 31290, 31331, 4562, 31386, 6330], + [1, 2343, 28226], + "afinn-165", + "-fin", + "ancialmarketnews", + [2, 28220, 28221], + [2, 28219, 28222], + "apparatus", + "memjs", + [0, 0, 28227, 28250, 2523], + [ + 0, 48, 53, 61, 78, 87, 92, 5601, 32840, 5087, 4874, 15600, 1009, 1011, 1175, 1193, 1198, 1177, 1881, 1895, 1938, + 1955, 1192, 11948, 1894, 4131, 91 + ], + "stopwords-iso", + "@libsql/client", + "wordnet-db", + [2, 31005, 26449, 28684], + "browserfs", + [2, 2441, 20008], + "pegjs", + "uubench", + [2, 32904, 2942], + " language processing", + [2, 3273, 28237], + "arti", + "fical intelligence", + [2, 28239, 28240], + "Porter stemmer", + "Lancaster stemmer", + "bigram", + "trigram", + "quadgram", + "ngram", + "stemmer", + "bayes", + [0, 1192, 2022, 6703, 1149, 7003, 1862, 11857, 5472, 2275], + "classifier", + [1, 2343, 28254], + "phonetic", + [0, 28255, 28257, 28259, 2523], + [0, 28502, 4130], + "metaphone", + [0, 23689, 28556, 2323, 31190, 2765, 3560, 31541, 91], + "inflector", + [0, 5472, 11132, 13841, 28522, 13426], + "Wordnet", + "tf-idf", + "logi", + " regression", + [2, 17132, 28263], + [2, 28262, 28264], + [2, 4420, 28256], + "jaro-winkler distance", + " distance", + [2, 26006, 28268], + "string ", + [2, 28270, 26017], + "-of-speech tagger", + [2, 3251, 28272], + "Eric Brill", + "Brill tagger", + " analysis", + [2, 4137, 28276], + "maxim", + "um entropy modelling", + [2, 28278, 28279], + [1, 2343, 28284], + "@mrleebo/prisma-ast", + [2, 31733, 21302], + [0, 28292, 28293, 28294, 2537], + "secure-keys", + [2, 28288, 6008], + "nconf-yaml", + "@prisma/c", + "key value store", + [2, 18124, 13729], + "plugabble", + [0, 1086, 1437, 1700, 2070, 2714, 3183, 3760, 705, 4039, 4135, 4734], + [ + 0, 13194, 7740, 28197, 4865, 29105, 23689, 9129, 7892, 4874, 11304, 16936, 20959, 28502, 5254, 28189, 28556, + 2323, 31190, 2765, 4089, 4130, 91 + ], + [0, 1098, 1973, 5472, 3750, 11132, 13841, 28522, 4130], + [1, 2343, 28296], + [0, 9756, 9839, 28297, 2537], + [ + 0, 1871, 6843, 3656, 4289, 7062, 6922, 6981, 6701, 6581, 6700, 1111, 1867, 5281, 200, 6876, 7009, 7201, 6575, + 6611, 6795, 6960, 7135 + ], + [1, 2343, 28299], + [0, 7558, 28300, 28301, 2523], + [0, 4874, 668, 32894, 2929, 32895, 91, 4579], + [0, 32901, 23542, 5130, 23543, 6812, 27, 5592], + [1, 2343, 28305], + "near social", + "bridge", + [0, 28306, 0, 28307, 4139], + [0, 2856, 32889, 2822, 5307], + [0, 29699, 32891, 1541, 1745, 29703, 29753], + [1, 2343, 28311], + [3, 18018, 14], + [2, 28309, 1633], + [0, 0, 28313, 28315, 2487], + "exec-time", + [0, 1429, 4856, 4874, 32903], + "@lit/context", + [0, 32910, 37123, 32911, 32912, 32913, 13428, 5472, 6533], + [1, 2343, 28317], + [0, 28318, 0, 26863, 2399], + [0, 32918, 32919, 1699, 3547], + [1, 2343, 28320], + [0, 6263, 0, 28321, 2523], + [0, 89, 5128, 9267, 553], + "@codspeed/", + "payload", + "@fig/complete-commander", + "@golevelup/nestjs-discovery", + "xhr2-cookies", + [2, 30999, 30499], + [1, 2343, 28330], + [2, 28338, 28349, 28603], + [0, 26964, 0, 26997, 2537], + "@postman/tough-cookie", + [2, 15679, 19490], + "chardet", + [1, 2343, 28337], + "liquid-json", + "postma", + [0, 26964, 0, 27001, 2487], + "@interna", + "n-collection", + [2, 28336, 28339], + "-transformer", + [2, 28340, 28341], + "postman-", + [2, 28343, 705], + "postman-r", + [2, 28345, 96], + "d-error", + [2, 14628, 28347], + "tionaliz", + "@postman/", + [1, 2343, 28359], + "shipit", + [2, 28350, 28352], + [2, 29833, 17978], + "file_lint", + [2, 17878, 28355], + "parse-git", + [2, 28357, 2687], + [0, 28364, 28381, 28409, 2537], + "postman", + [2, 178, 28363], + "rest-client", + "rack-changes", + [0, 32953, 25996], + "@profoundlogic/hogan", + [3, 2665, 10], + "@grpc/grpc-js", + "@grpc/", + "print-sizes", + "proto-loader", + [2, 28368, 28370], + "@newrelic/security-agent", + "@tyriar/fibonacci-heap", + "in-the-middle", + [2, 2701, 28374], + "module-de", + "s-from-path", + [2, 4378, 28377], + [2, 28376, 28378], + [2, 4013, 28374], + [0, 13662, 1389, 35268, 4389], + "@aws-sdk/s", + "3-request-presigner", + [2, 28382, 28383], + "@koa/router", + "@newrelic/", + [2, 28386, 7625], + "-oss-cli", + [2, 3284, 28388], + [2, 28386, 28389], + "test-util", + "ities", + [2, 28391, 28392], + [2, 28386, 28393], + "@slack/bolt", + "@smithy/eventstream-codec", + "@smithy/", + "util-utf8", + [2, 28397, 28398], + "borp", + [2, 16306, 20353], + [3, 4962, 10], + "iler-runtime", + "git-r", + "aw-commits", + [2, 28404, 28405], + "CKEditor", + "self-cert", + [0, 7518, 5398, 17819, 18266, 32958, 12075, 32960, 4967, 1389], + [1, 2343, 28412], + "debugging", + [0, 28414, 28424, 28430, 2537], + "profiling", + [ + 0, 32980, 32981, 32983, 32984, 32986, 1398, 1437, 1443, 1759, 1763, 2018, 2071, 37853, 2182, 2212, 2687, 2720, + 17450, 2856, 32987, 32988, 9478, 3729, 4135, 4164, 4400, 91, 32990, 32993, 32989 + ], + "unlimited-timeout", + "WYSIWYG", + "WYSIWYW", + "@panva/hkdf", + "id-client", + [2, 3445, 28419], + "-to-string", + [2, 694, 28421], + [2, 3698, 28422], + [0, 188, 32996, 32997, 33004, 33007], + "@types/oauth", + [2, 4874, 3360], + "@next", + "is-in-ssh", + "powershell-utils", + [0, 32940, 33010, 5130], + [1, 2343, 28437], + [3, 13983, 14], + [2, 28432, 89], + "-pragmatic", + [2, 13062, 28434], + "@edge-runtime/jest-environment", + [0, 28447, 28448, 28449, 34352], + "oauth2", + "nextauth", + "seneca-transport", + [2, 36883, 28443], + "rich-text", + "astify", + "async ", + [2, 28444, 1852], + [2, 28444, 5746], + [0, 97, 33015], + [ + 0, 1192, 2278, 2675, 89, 1843, 1177, 2924, 1894, 1610, 3824, 48, 1628, 3988, 91, 53, 2990, 3400, 4111, 4677, + 4880, 1195, 4307, 33020, 33021, 9310, 28809, 10837, 87, 11011, 90, 1959, 827, 33023, 1895, 1947, 1955, 2780, 92, + 10821, 29872, 10840, 1011, 10825, 83, 1009, 32341, 28970 + ], + [0, 89, 4627, 26612, 35126, 33026, 5131, 29832, 91, 33027, 33033], + "grammy", + [1, 2343, 28463], + "qs-esm", + "TestBed", + "how-to", + "@scripts/build", + [2, 28573, 553], + [3, 14691, 18], + [2, 32700, 28478], + [2, 12392, 1098], + "dataloader", + "bson-objectid", + "nboarding", + [0, 28481, 28492, 2514, 2537], + "render-jsx", + "@rolldown/pluginutils", + [2, 28472, 1973], + "localhost", + "tunneling", + "webhook", + [2, 28471, 28596], + [3, 37983, 14], + [3, 34476, 19], + [2, 16639, 15112, 28475], + "onesy", + "hecker", + [2, 16639, 28477], + "vitest-runner", + "grab", + [2, 28489, 28490], + "deep-defaults", + [0, 1437, 1483, 1525, 3127, 14774, 4135, 33043], + [2, 10740, 28487], + "enqueue", + [2, 14185, 4225], + "minstache", + "sliced", + "table-printer", + [2, 3192, 5701], + [3, 30527, 35], + "collisions", + "@rstest/core", + [0, 8147, 33046, 4874, 5254, 33047], + [2, 28508, 28526], + "@nightwatch/chai", + [3, 28494, 12], + [3, 2791, 13], + [2, 28496, 2324], + [2, 28495, 28497], + [2, 3294, 11496], + [2, 28495, 28499], + "lenium-webdriver", + [2, 5252, 28501], + [2, 1432, 3294], + [2, 11097, 20500], + "didyoumean", + [3, 28499, 11], + "@amaui/ui-react", + [3, 5069, 14], + "axe-verbose", + [2, 28506, 28509], + [3, 17011, 11], + [2, 28511, 57], + [3, 31827, 17, 5], + [2, 4925, 4381], + [3, 28514, 12], + [2, 11937, 16609], + [2, 28515, 28516], + "@payloadcms/translations", + "wait-on", + [1, 2343, 28527], + [2, 3294, 676], + "selenium", + "automat", + "ed-testing", + [2, 28523, 28524], + "acos", + [0, 28528, 28529, 2514, 2537], + [ + 0, 35198, 4763, 1497, 1687, 33057, 4361, 1983, 1082, 1371, 1676, 9348, 12449, 977, 1636, 11480, 3958, 4135, + 11501, 1458, 11478, 668, 33058, 28564, 2822, 6042, 3479, 3742, 29535, 33059, 26379, 4955, 33149, 3530, 25648, + 4542, 28623, 33061, 11869, 27921, 5732, 33062, 2628, 3090, 4748, 2007, 33063, 19639, 7610, 37014, 33064, 4555, + 33065, 33068, 29533, 33069, 10895, 5210, 9485, 33070, 33071, 3749, 33074, 33075 + ], + [ + 0, 23813, 2278, 4042, 4548, 1984, 1448, 4549, 33080, 30138, 33082, 91, 12396, 2024, 3975, 5245, 33390, 30559, + 5254, 33083, 34673, 7637, 7812, 12127, 3327, 8648, 20374, 11868, 23312, 33084, 7744, 21626, 3963, 33087, 33088 + ], + [1, 2343, 28536], + [2, 28532, 28547], + [3, 11555, 18], + "text-", + [2, 28533, 9254], + [2, 11122, 28534], + [0, 28538, 0, 2514, 2523], + [3, 11138, 16], + [0, 1506, 33093, 3460, 4535], + "mochify", + [3, 4887, 19], + "-universal", + [2, 3752, 28541], + [2, 3752, 1289], + "@backstage/backend-common", + [1, 2343, 28546], + [0, 28548, 28549, 28551, 2399], + "owellformed", + [0, 1512, 2151, 2720], + [0, 1177, 1939, 1192], + "propagate", + [0, 8310, 1179, 8635, 200, 28582], + [1, 2343, 28555], + [3, 31893, 18, 13], + [2, 12302, 28732], + [0, 0, 28560, 28561, 2399], + "clang-format", + [2, 23260, 28729], + "n-api", + "napi", + [ + 0, 811, 816, 1437, 1836, 1177, 1895, 1938, 33110, 14282, 2674, 2675, 2990, 2899, 6041, 1894, 4039, 4042, 4055, + 33111, 4232, 4390, 11482 + ], + [0, 4989, 1283, 3358], + [1, 2343, 28563], + [0, 0, 28571, 2514, 4139], + "fontace", + [2, 14743, 4504], + "ffee", + [2, 2251, 28566], + "grunt-i", + [2, 2426, 2499], + [2, 28568, 28569], + [0, 1009, 1011, 1177, 1883, 1895, 1915, 1938, 1947, 1955, 1959, 1961, 2675, 2990, 1894, 89, 91], + "baseline-browser-mapping", + [3, 4090, 11], + [2, 28606, 8734], + "host-validation-middleware", + [2, 16826, 5260], + [2, 14614, 28576], + "used-de", + "ps-analyzer", + [2, 28578, 28579], + "@4c/rollout", + "skeleton", + "formate", + [1, 2343, 28587], + [2, 5559, 27], + [2, 28689, 89], + [0, 28597, 28600, 28601, 2537], + "dynamic-", + [2, 28588, 1681], + "filewatcher", + [2, 28914, 594], + "xunit", + "tap-xunit", + "nextjs-api-reference", + [2, 30999, 28884], + "l", + [0, 33139], + [2, 31222, 31227, 31234], + "subdir", + [0, 6503, 1699, 2899], + [0, 5122, 1973, 8791, 33143, 2899, 5130], + [1, 2343, 28609], + "ed/date", + "char-regex", + "emojilib", + "@scripts/", + [2, 28616, 6988], + "skin-tone", + [0, 0, 28621, 28622, 2537], + "s-per-line", + [2, 16233, 28610], + "cspell-config-lib", + "emojis", + "smiley", + "smileys", + [3, 28329, 19], + "smilies", + "ideogram", + "ideograms", + "@nuxt/fonts", + [ + 0, 5535, 5087, 1009, 1011, 33175, 25917, 35358, 1473, 1177, 1895, 1955, 2070, 1192, 1894, 4042, 4073, 4076, + 4201, 4443, 4468, 4474, 4484, 91 + ], + [ + 0, 1473, 57, 6270, 4439, 32453, 6616, 30289, 33190, 30291, 620, 33201, 31453, 1623, 33203, 6653, 33205, 33207, + 3178, 33216 + ], + "unstorage", + "fetch-blob", + "ttypescript", + [2, 1432, 7253], + "nsumers", + [2, 25687, 28627], + "jsdoc-to-mdx", + [1, 2343, 28633], + "@nuxt/icon", + "@nuxt/kit", + [0, 5914, 28661, 28662, 2487], + "igitalbazaar", + [2, 27235, 28634], + [2, 19946, 2903], + "-websocket", + [2, 6710, 28637], + [2, 27694, 1194], + [2, 28660, 32819], + "aes", + "asn", + "asn.1", + "cbc", + "csr", + "des", + "gcm", + "hmac", + "pkcs", + "pki", + "prng", + "rc2", + "rsa", + "sha256", + "sha384", + "sha512", + "tls", + "x.509", + "x509", + [3, 218, 21], + [0, 30533, 192, 5467, 30535, 10614, 6494, 5087, 4874, 1009, 1011, 1177, 1895, 2675, 1192, 1894, 3980, 4468, 91], + [0, 30538, 6710, 14584, 91, 30540, 30543, 5130, 29752], + [1, 2343, 28665], + "seneca-joi", + [0, 26964, 0, 26966, 4139], + "c2dm", + "fcm", + [1, 2343, 28669], + [0, 28670, 28671, 28682, 4139], + [ + 0, 33071, 30616, 26407, 26411, 12396, 7637, 9363, 26414, 26415, 23276, 2577, 2584, 2588, 2681, 2822, 37507, + 3090, 26418, 26568, 12429, 26421, 3958, 9393, 12443, 4542, 4549, 4555, 12449 + ], + [0, 8648, 4874, 7677, 34683, 26431, 1984], + "@nuxt/schema", + "@nuxtjs/color-mode", + "geocoder", + "pulse", + "geocoding", + "geo", + "mapquest", + "agol", + "arcgis", + "tomtom", + [0, 1739, 1745, 34683, 26440, 26445], + [1, 2343, 28695], + "libsql", + [2, 28694, 176], + [3, 5781, 10], + "l-backoff", + [2, 28686, 28687], + [3, 21276, 15], + "require-in", + [2, 28690, 2429], + "piña", + "pigna", + [3, 30585, 14], + [0, 28696, 28697, 28662, 2537], + [0, 2026, 3951], + [ + 0, 30533, 192, 5467, 1300, 30535, 10614, 6494, 5087, 4874, 1009, 1011, 1177, 1895, 2675, 1192, 1894, 3980, 4468, + 91 + ], + "high5", + [2, 12075, 57], + [1, 2343, 28705], + "js-parser", + [2, 1936, 28701], + "-benchmark", + [2, 15512, 28703], + [0, 28730, 28750, 28758, 2537], + "mocha-each", + "neutron-html5parser", + "ookmark", + "colortranslator", + [2, 15277, 12610], + [2, 28712, 28725], + [3, 10130, 17], + "biased-opener", + "data-uri", + [2, 25894, 28714], + "v8-debug", + "v8-profiler", + [2, 28742, 28749], + [2, 28720, 28721], + [3, 32265, 26], + "ble", + [2, 28723, 7059], + [3, 12133, 21], + "vitest-browser-react", + "ber-animation", + "dummy", + [2, 23814, 28898], + "http mock", + "zipper", + [0, 3951, 4474], + "toposort", + "quality-insights", + "growly", + "words", + "shellwords", + [2, 28738, 28741], + "nexe", + "@types/to", + " center", + [2, 9044, 28739], + "posort", + [3, 26699, 15], + "mac os x 10.8", + [2, 4402, 3329], + "windows ", + "8 notification", + [2, 28745, 28746], + "toaster", + "auto-height", + [0, 192, 5467, 10614, 6494, 5087, 4874, 1009, 1011, 1437, 1177, 1895, 2675, 1192, 1894, 3980, 4468, 91], + "tabbable", + [2, 8180, 594], + [2, 29518, 28757], + "@radix-ui/react-checkbox", + [2, 28756, 45], + [3, 28754, 16], + "vfs", + [0, 30538, 6710, 91, 30540, 30543, 5130, 29752, 5995, 6082], + [1, 2343, 28760], + [0, 26964, 0, 26966, 2537], + [2, 28762, 9006], + [3, 28718, 20], + [2, 3958, 28764], + [3, 26414, 16, 5], + [1, 2343, 28767], + "@internal/test-utils", + [0, 26964, 0, 26997, 2443], + "ps-list", + "code-blocks", + "pty", + [2, 6426, 7009], + "forkpty", + "openpty", + [1, 2343, 28787], + [2, 28776, 28777], + "expressi", + "ve-code", + "@node", + [2, 9057, 3642], + [2, 28793, 28798], + "-red/util", + [2, 28778, 28781], + [2, 3341, 2110], + "@node-red/", + "nodes", + [2, 28784, 28785], + [0, 25316, 28788, 28796, 2537], + [0, 603, 11018], + [2, 216, 28812], + [2, 28784, 7047], + "editor-api", + [2, 28784, 28791], + [3, 28718, 19], + "iot", + "fix-dts-default-cjs-exports", + [0, 188, 4646, 1542, 32977, 28692, 28693, 32312, 5592, 18496, 5490, 91, 4799, 998, 6953], + [2, 28826, 16860], + "play", + "sass-graph", + [2, 1152, 14741], + "stdout-st", + [2, 28801, 2187], + "-case-path", + [2, 4938, 28803], + [2, 28742, 28875], + [2, 4550, 13786], + "@jsopen/objects", + [1, 2343, 28810], + [2, 34443, 25240], + [0, 28819, 28820, 5893, 2523], + "modern.js", + "alpha-function", + "long-timeout", + "sorted-", + [2, 20096, 20835], + [2, 28814, 28815], + [2, 30633, 30886, 31217], + [3, 1419, 11], + [0, 28751, 444, 28752], + [0, 90, 28754, 28755, 968, 972, 974, 4880, 4883, 1030, 1497, 89, 3824, 3882, 3885, 4023, 8187, 28724, 1541], + "recurrent", + [1, 2343, 28823], + [0, 28824, 28825, 28828, 4139], + [0, 28763], + [0, 34683, 2020, 28766], + "unplugin-", + "deepcopy-esm", + [0, 26445, 28769, 1745, 28775, 9348, 28779, 26440], + [2, 9357, 28832], + [2, 28831, 30581], + [3, 12447, 17], + "-convert", + [1, 2343, 28834], + [0, 0, 0, 28835, 2523], + [0, 30999, 28818, 5995], + [1, 2343, 28839], + "fs.watch", + "watchfile", + [0, 28840, 28841, 28848, 34352], + [0, 28775], + [0, 9363, 9315, 23312, 3978, 3992, 3999, 9348, 4549, 12449, 28766], + "stories", + [2, 819, 664, 33355], + "ngn", + "daemon", + " logging", + [2, 2013, 28846], + [0, 28769, 1745, 28775, 9348, 28779], + "elevate", + "sudo", + [1, 2343, 28852], + [0, 28864, 28867, 28870, 4139], + "store2", + [2, 28855, 7625], + [3, 28518, 12], + "@mgcrea/eslint-config-node", + "-lts", + [2, 19439, 28857], + "node-ipc", + "excel", + "xls", + "zeptomatch", + "picoquery", + [0, 2121, 2127, 1690, 2024, 4507], + "rolldown", + "amaui", + [0, 28470, 2180, 5476, 5478, 1414, 2198, 91], + " extend", + [2, 6970, 28868], + [0, 2313, 1383, 614, 202, 1388, 5995, 4967, 1145, 1973, 1429, 2340, 2350], + [1, 2343, 28886], + [2, 13402, 2942], + [2, 28874, 8817], + "@appium/s", + "class-names", + "firefoxos", + "combyne", + "for-publish", + [2, 1463, 28878], + [2, 31228, 14372], + "libgit2", + "git2", + [2, 28742, 26542], + [3, 31782, 22, 5], + "vendors", + [0, 0, 28888, 28889, 2523], + [2, 9191, 3595], + [0, 1330, 1389, 1596, 2759, 2899, 4170, 4535], + [0, 20215, 4741, 2574, 36796, 6847, 1965, 1867, 10368, 7131, 1155, 1936, 1623, 14419, 37953], + "libbase64", + "libmime", + "libqp", + "ntlm-auth", + [2, 26444, 28893], + [2, 13857, 9224], + [2, 28742, 188], + "Nodemailer", + "hun-ky", + [2, 32723, 28900], + "hex-color", + [2, 28902, 28905], + [3, 28899, 21], + "undefsafe", + "pstree.remy", + "sl-color", + [2, 32723, 28907], + "rgb-color", + "autoload", + [2, 31281, 4202], + [2, 819, 45], + [2, 28742, 28916], + [2, 6097, 6142], + [2, 15701, 28915], + [3, 693, 10], + "vision-history", + "wheel-gestures", + "multimeter", + [1, 2343, 28975], + [2, 30211, 30221], + "@asamuzakjp/css-color", + "node-webkit", + "drc", + "lz4", + "potx", + "xltx", + "dotx", + "async-redis", + "ipfilter", + [2, 2032, 28928], + "express-ws", + "xltm", + "ots", + "json-logic-js", + "json-sql", + [2, 7060, 1146], + "line-reader", + "mocker", + "-data-", + [2, 28938, 1179], + [2, 28937, 28939], + "pino-pretty", + "odg", + "otg", + "promise-mysql", + "stjs", + "otp", + "ott", + "uuid-random", + "docm", + "nolang", + "Programming", + "programm", + "ing language", + [2, 28952, 28953], + "dotm", + "descriptive", + "5GL", + "potm", + "json schema", + "Mehdi Salartayefeh", + "pptm", + [2, 8293, 200], + [2, 8293, 3561], + "knitwork", + [2, 28968, 28969], + " parser", + [2, 5675, 28966], + "esbuild-re", + "act-compiler-plugin", + [2, 28971, 1172], + [3, 29874, 35], + [2, 28973, 4298], + [3, 5240, 29], + "ohash", + [0, 28989, 0, 28990, 2523], + "admin-panel", + "absolute", + "backslash", + "delimiter", + "file-path", + "forward", + "slashes", + "trailing", + "unix", + "urix", + "headless-cms", + [2, 1917, 11597], + [2, 819, 3877, 29320], + [0, 28507], + [0, 45, 29, 36246, 89, 4967, 6400, 5995, 10768, 5122, 1388, 5284, 676, 91, 202, 6710, 6082, 28866, 594], + "normaliz", + [2, 28991, 5218], + "normali", + [2, 28993, 6079], + [1, 2343, 28998], + "simplify", + "canonical", + [0, 29046, 0, 29047, 34352], + [2, 29171, 594], + "lit-analyzer", + [2, 32700, 29003], + "mouse", + "attract", + "mouse wheel", + [2, 29006, 29007], + [3, 26450, 35], + "ubble", + [2, 32700, 1544], + [2, 29010, 29011], + [3, 31198, 35], + "ause", + [2, 32700, 34141], + "escape-goat", + [3, 9577, 11], + "from-git", + [2, 29014, 29015], + "teractive", + [2, 20043, 29017], + [2, 28489, 29003], + "is-scoped", + [2, 29027, 29029], + "issue-regex", + "listr-input", + "new-github-release-url", + "npm-name", + "p-memoize", + [3, 32722, 21], + "map-obj", + "asing-quad", + "write-package", + [2, 32731, 3924], + [2, 29033, 4390], + [3, 26495, 20], + [2, 29035, 29036], + [3, 28909, 22], + "troke-color", + "is-cidr", + "ts-lit-plugin", + "libnpmorg", + [2, 33533, 29041], + "ormatjs", + "libnpmpack", + [3, 29818, 15], + "libnpmteam", + "MDX", + [0, 28872, 28873, 13411, 4507], + [0, 13428, 5284, 28522, 11132, 12295, 12296, 28876, 5472], + "fs-m", + "reka-ui", + [2, 37399, 29156], + "fs-minipass", + [1, 2343, 29064], + "npm-profile", + [2, 2977, 7193], + "@sigstore/tuf", + [2, 2977, 15525], + [2, 636, 1541], + "audit-report", + [2, 3382, 29058], + "-pipeline", + [2, 21505, 29060], + [2, 4570, 2649], + [2, 3382, 29062], + [0, 26871, 0, 26863, 2399], + "relative-date", + [2, 11072, 29065], + [2, 28093, 26006], + [1, 2343, 29074], + [2, 636, 3358], + [2, 636, 1739], + "@tufjs/repo-mock", + [3, 26037, 13], + [2, 29072, 2203], + [0, 29075, 0, 7573, 2537], + [0, 1004, 31231, 32914, 28909, 31262, 31272, 28899, 28901, 28906, 31282], + "-draft2019", + [2, 1092, 29076], + [1, 2343, 29119], + [2, 29080, 29081], + [3, 23075, 14], + "rrect-media-syntax", + [2, 29089, 29090], + "-record", + [2, 17495, 29083], + "giturl", + "nfig-loader", + [2, 18323, 29086], + "semver-diff", + [3, 32593, 24], + "ort", + [2, 29092, 29094], + [3, 32686, 13], + "outdated", + "dx-jsx-attribute-sort", + "updating", + "updater", + [2, 29098, 29099], + [3, 29091, 20], + "no-void-children", + [2, 29098, 29107, 29118], + "@trivago/prettier-plugin-sort-imports", + [3, 27782, 13], + [2, 29102, 8961], + [2, 13197, 176], + "@types/ini", + [3, 8141, 13], + "quote-st", + "helpfulerror", + [2, 16476, 29108], + [2, 29106, 29109], + [2, 7726, 27005], + "@types/npm", + "-registry-", + [2, 29113, 1612], + [2, 29112, 29114], + [3, 16478, 13], + [2, 29116, 13722], + "yle", + [0, 0, 0, 29163, 2537], + [2, 2645, 89], + [3, 6544, 14], + [2, 29121, 594], + "pdate-", + [2, 29123, 3329], + [2, 7817, 29124], + [3, 1898, 15], + "aine", + [2, 29126, 29127], + "fp-and-or", + [3, 9506, 11], + [2, 117, 29153, 29494], + [2, 29098, 29134, 29135], + "jsonlines", + "self-clos", + "e", + "prompts-ncu", + "postcss-clean", + [2, 25813, 594], + [2, 4524, 2845], + "verdaccio", + [2, 8551, 4675], + "vite-node", + [2, 29145, 29146], + "upgrade", + [3, 29132, 21], + "horthand-attribute", + [2, 29098, 29148], + "unique-attribute-name", + [2, 29092, 29150], + "edia-style", + [2, 32704, 29152], + "idden-table-cell", + [3, 6138, 9], + [2, 7686, 4692], + [2, 22060, 3122], + "variants", + "ypescript-tc", + [2, 22060, 29157], + [3, 17312, 29], + [2, 29159, 12844], + "unplugin", + "auditor", + [0, 45, 29, 36246, 89, 4967, 6400, 5995, 10768, 5122, 1388, 5284, 676, 91, 202, 6710, 6082, 28474, 594], + [1, 2343, 29167], + [2, 28826, 29166], + "auto-import", + [0, 26964, 0, 26966, 2487], + "variadic-function-arguments", + "mutate-fs", + "@publint/pack", + [3, 1014, 15], + [1, 2343, 29173], + [0, 29177, 0, 21958, 2537], + "minizlib", + "minipass-", + [2, 29175, 1612], + [ + 0, 4729, 2070, 31705, 4747, 4135, 1862, 1301, 1525, 2731, 4116, 1109, 1193, 31856, 3145, 4705, 31859, 3717, + 3878, 1079, 31861, 28512, 31864, 24169, 3957, 31867, 2784, 31871, 31877, 31880, 31884, 31891, 21129, 31896, + 28073 + ], + "fast-equals", + "registry", + [1, 2343, 29199], + "autodocs", + [2, 31092, 3452], + "@pm2/blessed", + "padend", + [2, 18996, 29184], + [2, 29189, 27863, 20181], + "ysticatea", + [2, 16693, 29187], + [3, 28544, 19], + "commandline", + "npm-scripts", + [2, 29193, 1541], + [3, 28544, 11], + [2, 29193, 11857], + [2, 29196, 29198], + [3, 31303, 12], + "neostandard", + "ise-router", + [0, 29216, 0, 7573, 2399], + [2, 29189, 11017], + [2, 29202, 29203], + [3, 29192, 12], + "atalog-model", + [2, 29202, 25240], + [2, 29193, 13224, 29206], + "atalog-common", + [2, 29209, 202], + [2, 28270, 6270], + [3, 29205, 26], + "yarn to npm", + "@daybrush/jsdoc", + "backstage", + "ci/cd", + "immobiliare", + [2, 29214, 12825], + [ + 0, 28880, 1004, 29031, 29032, 31244, 1418, 26495, 32926, 26483, 26489, 32934, 29021, 29034, 28458, 31198, 29012, + 29009, 26450, 29005, 26482, 30527, 29001, 29008, 1445, 29019, 28479 + ], + [1, 2343, 29221], + "npm upgrade", + [2, 28826, 10309], + "vaul-vue", + [0, 29223, 29225, 26824, 2523], + "rgv", + [0, 4484, 29755], + [2, 1262, 25816], + [0, 89, 1177, 4039, 4042, 1894, 3824, 91, 4874, 4880, 3884, 4883, 3885, 28540, 8656, 8660, 4887, 10817, 1011, 1009], + [2, 34674, 588], + "npm-cli", + [2, 29229, 29303], + "@hyrious/esbuild", + [1, 2343, 29232], + "ntainer", + [0, 29256, 29257, 29258, 34352], + [2, 26109, 28923], + [3, 28200, 13], + [2, 29240, 29249], + "@cropper/", + "are-", + "we-there-yet", + [2, 29237, 29238], + [3, 10309, 13], + "image-cropping", + [2, 29243, 3642], + "image-view", + "image-processing", + "cropper-element", + "mocha-jsdom", + [3, 31831, 14], + [3, 5926, 13], + "-type-helpers", + [2, 29254, 29255], + "cvss", + "-npm-utils", + [2, 19773, 29252], + [3, 3978, 9], + "arry-night", + [0, 29186, 29192, 29194, 1364, 2026, 29195, 2664, 4709, 4757], + [0, 29200, 29201, 29204, 29205, 29207, 6494, 9240, 3244, 4342], + [0, 29212, 17978, 29213, 29214, 29215, 5995], + "@asteasolutions/zod-to-openapi", + "gluegun", + "@trpc/server", + [2, 17612, 29264], + "nuke", + "custom-alias", + [2, 4026, 29266], + "tspaths", + "@nuxt/eslint-config", + "event-driven", + "money", + "blaze", + "percentage", + [1, 2343, 29274], + [2, 8293, 1983], + [0, 26964, 0, 26997, 2523], + [1, 2343, 29278], + "a-sync-waterfall", + "asap", + [0, 0, 29286, 29287, 2537], + [2, 3522, 364], + [2, 3192, 29279], + [3, 29280, 16], + [2, 29281, 2759], + [2, 5223, 8861], + "s-browser", + [2, 19390, 29284], + [0, 1148, 2899], + [0, 26257, 1111, 1473, 7208, 1437, 1623, 32453, 6616, 29222], + [3, 26364, 17], + [1, 2343, 29296], + "@nuxt/module-builder", + [2, 18124, 2844], + "@4c/tsconfig", + "@react-bootstrap/babel-preset", + [2, 29344, 7625], + "@nuxt/test-utils", + [0, 29298, 29302, 29329, 2399], + "jsonpathly", + [0, 7387], + [2, 29301, 29538], + "css4", + [3, 5782, 27], + [0, 4874, 4880, 4883, 1030, 3286, 89, 3824, 1983, 26744, 1984, 11039], + [3, 4055, 16, 6], + [3, 26699, 14], + "achine-id", + [2, 27946, 29305], + "parsers", + [2, 15904, 29307], + "@zkochan/js-yaml", + [2, 15904, 6698], + [3, 17944, 18], + "-and-columns", + [2, 27005, 29312], + "@napi-rs/", + "graphQL", + "wasm-runtime", + [2, 29314, 29316], + "telejson", + "Mobile", + "nderer", + [2, 25806, 14029], + "@whatwg-node/promise-helpers", + [2, 29326, 29332], + [2, 20164, 22156], + [2, 11936, 1564], + [3, 9250, 19], + "processinfo", + [2, 11936, 29327], + [0, 5592, 1745, 23803, 3287, 3452, 8124], + "node-preload", + "process-", + "nuxt", + "on-spawn", + [2, 29331, 29333], + "spawn-wrap", + "css library", + [1, 2343, 29353], + "any-path", + [2, 29340, 29341], + [3, 132, 10], + "local-node-rig", + "jsdoc-fresh", + "jsdoc-region-tag", + [3, 29293, 17], + "nuxt-ui", + "ui-framework", + "undefined-", + [2, 29347, 15400], + [2, 8302, 29348], + [2, 29383, 29384], + "@readme/", + "example", + [0, 29363, 0, 29472, 2523], + "oas-examples", + [2, 29351, 29354], + "@readme/o", + "penapi-parser", + [2, 29356, 29357], + [2, 8818, 5940], + "@types/me", + "moizee", + [2, 29360, 29361], + [0, 2817, 18023, 1532, 31802], + " initiative", + [2, 3452, 29364], + "openapi ", + [2, 29366, 10658], + [3, 29367, 12], + [2, 29366, 1746], + "oai", + "@eslint/css", + "print-coveralls", + "ts-mock-imports", + "egjs-jsdoc-template", + "to-openapi", + [2, 28343, 29375], + [2, 29351, 29376], + "@egjs/release-helper", + [3, 20227, 14], + [2, 29379, 8125], + [2, 5290, 29382], + "-plugins", + [3, 25931, 14], + "quis-saepe-velit", + "@renyii/vue-renderless", + [2, 31525, 29391], + "andom-function", + [2, 30713, 29397], + "@teamteanpm2024/aperiam-fugit-error", + "prollyfill", + "ize-observer-browser", + [2, 19965, 29393], + "-es6-transform", + [2, 29418, 29475], + "ec", + "gulp-exec", + "ign-functions", + [2, 29399, 29400], + [3, 27720, 16], + "ototype-minify", + "@vercel/ru", + "@pkg", + "js/support", + [2, 29402, 29403], + "flicking", + "globalthis", + [2, 29408, 26274, 29411], + [3, 29389, 17], + "ostringtag", + [2, 17422, 29409], + "alias-quod", + "egjs", + "-upgrade", + [2, 29408, 29415], + "ut-voluptatum-vero", + "indexof", + [3, 26699, 20], + [3, 29389, 16], + "@loki/integration-react", + [3, 31032, 17], + "@modelcontextprotocol/sdk", + "@mar", + "iocasciaro/benchpress", + [2, 29422, 29423], + [2, 31009, 16609, 18756], + "bean", + [2, 31550, 29430], + "notation", + "segment", + " upgrade", + [2, 29438, 7031], + [2, 29418, 29433, 29434], + "effective-octo", + [3, 246, 18, 8], + [2, 29436, 29437, 29439], + [3, 29432, 17], + "xpedita-", + [3, 805, 9], + "labore-ipsum", + "es-object-atoms", + [2, 29419, 4009], + "mentoss", + "@ucast/mongo2js", + [2, 28865, 6324, 4056], + "unconfig", + "permissions", + "abac", + [2, 29418, 29449], + "odio-fugiat-in", + "ee-first", + "rbac", + "ibac", + "cancan", + [2, 29487, 188], + "@sxzz/eslint-config", + "wrappy", + "quick-lru", + [2, 29459, 29620], + "@sxzz", + [2, 29418, 28215, 27463, 29461], + "odit", + "@blakeembrey/deque", + [3, 29462, 13], + [2, 29463, 1283], + "@sxzz/test-utils", + "@unocss/eslint-plugin", + [3, 4949, 17, 10], + [2, 160, 1554], + "unocss", + "unplugin-unused", + [2, 30209, 28945], + [0, 30999, 28818, 5995, 17977], + [1, 2343, 29484], + "epoll", + "beatae-aliquid-id", + [2, 23240, 3209], + "@zibuthe7j11/deserunt-quasi-impedit", + "gpio", + [3, 7033, 9], + "raspi", + "beaglebone", + "-black", + [2, 29481, 29482], + [0, 0, 29485, 29491, 2537], + [0, 19325, 1414, 1894, 3985, 3998, 4039, 4389, 4505, 91, 1906], + "llms", + [3, 29419, 18], + [2, 10441, 20008], + "lazy-prop", + [2, 27542, 29489], + [0, 1623, 1936, 965, 5122, 12344, 34050, 3665, 22145], + [2, 29294, 1892], + [2, 35506, 15215], + "s-compressor", + [2, 29628, 29629], + [1, 2343, 29497], + [0, 29498, 29499, 29516, 2399], + [0, 2611, 4763], + [ + 0, 29259, 192, 5467, 23531, 29261, 4865, 4874, 1009, 1011, 10417, 668, 1177, 1881, 1895, 29262, 1915, 1938, + 1955, 2070, 2675, 2990, 1894, 29265, 4039, 4480, 4494, 91 + ], + [2, 33343, 1640], + "bath-es5", + "dere", + "ference-", + [2, 29503, 2845], + [2, 29502, 29504], + [2, 29510, 29513], + "-adapter", + [2, 2085, 29507], + [2, 1170, 29508], + [3, 10065, 15], + "deref-sync", + [2, 7526, 29511], + "ooks", + "fetch-retry", + [2, 29112, 3073], + [0, 2611, 5995, 29268, 29270, 5130, 24090], + "@base-ui-components/react", + [3, 32804, 12], + "docz", + "docz-utils", + "open api", + "docz-theme-default", + [1, 2343, 29526], + "aws-sdk-client-mock", + [2, 32539, 200], + [0, 29541, 29547, 29516, 2537], + [3, 26032, 12], + "computer", + [2, 29530, 29532], + [3, 25758, 18], + "quadrocopter", + "m-sint-necessitatibus-possimus", + [2, 29534, 15050], + [3, 33156, 12], + "unifont", + [2, 29627, 29631], + "cupertino-pane", + "licit-resource-management", + "countrynames", + "kill-port", + [0, 1457, 1491], + [2, 15713, 10050], + [2, 28397, 553], + "@testcafe/publish-please", + "aws-lambda", + "eruda", + [ + 0, 1138, 4494, 2070, 2675, 1177, 4039, 668, 1894, 91, 4865, 4874, 2990, 29261, 4480, 192, 29265, 1938, 10417, + 1895, 1955, 1011, 1881, 5467, 1009, 1915, 29262 + ], + [1, 2343, 29562], + "nano-staged", + "elapsed-time-logger", + "hashish", + "gulp-open", + [2, 4807, 3864], + "cupertino", + "pane", + "slide", + "-call", + [2, 29557, 4408], + [2, 6606, 29558], + "fasteejs", + "ua-is-frozen", + [0, 29570, 29578, 29612, 2487], + [3, 26032, 13], + [2, 29609, 12835], + [2, 29573, 6802], + "prelude-ls", + "deep-is", + "astro-auto-import", + "livescript", + [ + 0, 4729, 1091, 4494, 12105, 3533, 3348, 1410, 1606, 28452, 4548, 1458, 3183, 33145, 1699, 2096, 11993, 3547, + 28460, 2689, 2668, 28941, 2191, 3781, 36687, 28461, 36123, 3509, 4108, 28482, 28518, 26696 + ], + [3, 28967, 11], + [2, 29571, 3642], + "country-", + "@pouchlab/ui", + [2, 29573, 1460], + [2, 29573, 7285, 2669], + "-dis", + [ + 0, 4164, 4039, 4042, 668, 9241, 1587, 1610, 7819, 28585, 7892, 12461, 3813, 28426, 4057, 8818, 31727, 28586, + 28854, 29228 + ], + "ppsx", + "-discarder", + [2, 2184, 29580], + "chai-jquery", + [2, 1221, 6621], + "corejs-typeahead", + "doiuse", + "gulp-add-src", + [2, 2352, 29588], + "-bust", + "gulp-check-deps", + "sequencify", + [3, 28628, 14], + [2, 2504, 29687], + "gulp4-run-sequence", + "is-empty-object", + "motion-ui", + "sassy-lists", + [2, 22109, 29598], + "-forward-reference", + "vinyl-named", + "sql-ddl-sync", + "sql-query", + [2, 29611, 29625], + [2, 29604, 29606], + [3, 17589, 11], + "redshift", + "helper-rel", + [2, 29608, 4213], + [3, 29603, 18], + "gradient", + "grommet", + [3, 940, 8], + [0, 31153, 5592, 6354, 29311, 27837, 5130, 29315, 29727, 5284, 23803, 202, 28323, 89, 31175, 91], + [1, 5293, 29665], + "tinygradient", + "tmpdir", + "ps1", + "glob2regx", + [2, 29619, 29620], + "@bokub", + [3, 29621, 16, 9], + [2, 7623, 7628], + [2, 1283, 17321], + "template ", + [2, 29623, 16111], + "expand-path-helper", + "magnific-popup", + [3, 4968, 15], + [3, 111, 18], + "-cloud-services-collaboration", + "grommet-icons", + "composable-commerce-test-data", + "styleable", + [3, 3474, 9], + [2, 10818, 29635], + "toolbars", + [2, 29637, 5592], + [3, 11285, 19], + "@vscode/vsce", + [2, 10829, 29640, 35971], + "source-l", + "vscode", + [2, 964, 4415], + [2, 29644, 591], + [3, 19588, 29], + "chromatic", + [2, 29650, 29651], + "addlistener", + "addeventlistener", + "waits", + "grommet-", + "theme-hpe", + [2, 1192, 29653], + [3, 12201, 18, 16], + "random-int", + "react-shadow", + "resolved", + "fulfilled", + [2, 29659, 22145], + [3, 29576, 18], + "tarball-extract", + [2, 29662, 29663], + [3, 35482, 11], + "act-selectors", + "fifo", + [0, 8391, 29688], + "grommet.io", + "grommetux", + "sticker sheets", + "design patterns", + "app templates", + "atomic design", + "invalidate", + "WCAG 2.1", + [2, 8652, 29675], + " navigation", + "screen reader tags", + [3, 10826, 11], + "graphical user interface", + "plunder", + "exit-x", + "modelcontextprotocol", + "osition-area-property", + "pwa-asset-generator", + "_codesniffer", + [2, 1936, 29684], + [2, 17753, 5130], + "-lint", + 1743292800000, + [2, 23814, 6653], + "rapid-development", + "proclaim", + "@grammyjs/types", + "dart-sass", + "grunt-jekyll", + "mcp", + "deno2node", + "sigstore", + [2, 9466, 1153], + "antora", + [3, 3397, 13], + [2, 29700, 3212], + "zepto", + [3, 12478, 11], + [2, 30713, 29989], + [1, 2343, 29712], + "countries", + [2, 22642, 5351], + [2, 18145, 4581], + "@next/font", + "package-up", + [2, 17507, 4107], + [0, 29714, 29715, 29720, 34352], + "@jsdevtools/ez-spawn", + [0, 6680, 26246, 26882, 26247, 26883], + [ + 0, 87, 29211, 29381, 29378, 5583, 811, 816, 6373, 4864, 4874, 29386, 1009, 32801, 1011, 1165, 1195, 1264, 1540, + 1593, 1596, 10944, 29374, 1177, 1938, 1942, 13668, 2151, 2193, 6382, 29120, 28366, 2675, 28629, 29392, 3400, + 29137, 3566, 29372, 28369, 27120, 4042, 20981, 10854, 29398, 20983, 4073, 4076, 4079, 2278, 13739, 29373, 11440, + 4484, 4487, 28625, 91, 20474 + ], + "@types/png", + [2, 29716, 1722], + "context7", + "vibe-coding", + [0, 32054, 29405, 31512, 29002, 4453, 28125, 5131, 89, 188, 1098, 3698, 35060, 35062, 35058, 29412], + [2, 17590, 23989], + "png.js", + [2, 29573, 29730], + "screenshots", + "ai-detection", + "screengrab", + "headless", + "app-detection", + "rapidoc", + "iso-codes", + "iso", + "api-generator", + "find-process", + [1, 2343, 29738], + "low-code", + [2, 29737, 3729], + [3, 33097, 12], + [0, 0, 29739, 29864, 2537], + [0, 107, 91, 1983, 11026, 26744], + [3, 7895, 13], + "jpeg-js", + "striptags", + [2, 1948, 29816], + "baas", + "launch-image", + "splashscreen", + "splash-screen", + "image-generation", + "aws4", + "mstile", + "pwa-assets", + [3, 7863, 11], + "web publishing", + [2, 3862, 29804], + "@ionic/react", + "@loki/runner", + "@loki/target-chrome-app", + "@apitools/openapi-parser", + [2, 29760, 6866], + "base64-", + "xml-but-prettier", + "idb-keyval", + [3, 5062, 14], + "rypto-js", + [2, 29763, 29764], + [2, 29785, 17878], + "@saithodev/semantic-release-backmerge", + "cebook-js-sdk", + [2, 22819, 29768], + [2, 1983, 29303], + [3, 19588, 24], + "nline-", + [2, 11294, 6436], + [2, 29772, 29773], + [2, 29771, 29774], + [2, 29781, 29782], + "river-adapter-utils", + [2, 2767, 11110], + "jsdoc-babel", + [2, 27738, 8791], + [3, 14065, 15], + "mplate-html-minifier", + "parse-server", + "inspectpack", + [3, 29757, 20], + "Custom Element", + "Web Component", + "swagger ui", + "swagger ", + "WHATWG", + [2, 28008, 57], + "html5 parser", + [2, 28008, 1753], + [2, 1936, 1753], + "openapi ui", + [2, 29366, 4366], + [2, 29366, 11328], + [2, 29366, 3902], + "fast-ur", + "l-parser", + [2, 29799, 29800], + [2, 29366, 25677], + [2, 29789, 4366], + "animatable", + "react-swipeable-list", + "pause", + [2, 29811, 29812], + [3, 1551, 9], + [2, 29808, 18716], + [2, 1432, 29809], + [3, 29757, 13], + "native-android-emulator", + [2, 29814, 29815], + [3, 29807, 20], + "ios-simulator", + "-preferences", + [2, 31868, 5891], + [2, 29822, 19102], + "collapsible", + "accordion", + "readme-md", + [3, 4272, 10], + [2, 11375, 10850], + "username", + [3, 9308, 9], + [2, 29827, 29828], + [3, 4060, 15], + "ocal-resolve", + [2, 3500, 1274], + "visual testing", + "swipeable", + "customizable", + [3, 1419, 20], + "teeny-tap", + "base64url", + "touchscreen", + "listview", + "swipe-to-delete", + "swipe-actions", + "json/simple-icons", + [2, 29852, 32865], + "iso-country-codes", + "use-composed-ref", + "use-latest", + [2, 29866, 1460], + "@preconstruct/cli", + "blue-tape", + "autosize", + "grow", + "riot", + "events.once", + "@scalar/s", + [2, 30844, 1983], + "exist", + "md-writer", + [2, 12557, 8982], + [2, 29858, 29859], + [3, 7806, 10], + "mon-tags", + "ts-declaration-location", + [2, 29863, 14056], + "isabsolute", + [3, 1733, 14], + [ + 0, 31549, 31550, 29427, 31553, 31565, 9006, 3015, 31566, 15813, 10725, 30672, 5066, 15571, 89, 31567, 1098, 188, + 12295, 5131, 28125, 31568, 31569 + ], + "react-smooth", + [3, 29842, 12], + "@borderless/ts-scripts", + [2, 29958, 29576], + [2, 29870, 34050], + "victory-", + [1, 2343, 29929], + [2, 10818, 29873], + "mdx-gfm", + [2, 10818, 29875], + "webpack5-compiler-swc", + [2, 29877, 29878], + [3, 10841, 15], + "-runner", + [2, 33114, 22982], + [2, 33114, 29881], + "time-format", + "@rkusa/linebreak", + [2, 29885, 29886], + "opentype.js", + [3, 18787, 15], + "v-expression", + "vitest-axe", + "log-process-errors", + "sortablejs", + [2, 5581, 29898, 27479], + [2, 29518, 29892, 29930], + "native-pr", + "jpeg-exif", + "linebreak", + "png-js", + "@riotjs/dom-bindings", + "blob-stream", + "multi-pa", + "pdfjs-dist", + [2, 29904, 4643], + "pdf writer", + "pdf ", + [2, 29902, 1179], + "@riotjs/", + [2, 29906, 29907], + "@riot", + [3, 25083, 18, 7], + "call-delayed", + "chai-i", + [2, 29904, 93], + [2, 29904, 614], + "ncreasing", + [2, 29909, 29912], + [2, 29915, 29916], + "@wdio/s", + "auce-service", + "bianco.attr", + "pgpass", + "pg-pool", + "pg-types", + "bianco.query", + "cumpa", + "pg-protocol", + "curri", + [2, 29126, 28794], + [2, 29927, 28794], + [3, 4069, 15], + "pg-cloudflare", + [0, 29947, 29948, 29981, 2523], + "eview", + "pg-co", + "py-streams", + [2, 29931, 29932], + "@cloudflare/workers-types", + "custom tags", + "minimalist", + "libpq", + "rdbms", + "data binding", + "riotjs", + "riot.js", + "tdesign-mobile-vue", + "oxc-resolver", + "copy-source", + [2, 5237, 29944], + "npm-watch", + [0, 29443], + [0, 33580, 5087, 4874, 1429, 31602, 2024], + [2, 29950, 12826], + [3, 35537, 26], + [2, 29956, 582], + "hasha", + "reorder", + "ng-sortable", + [2, 12318, 29992], + [3, 66, 20], + [2, 27777, 27738, 1764, 1524], + "iso-", + "@use-gesture/vanilla", + [2, 29961, 29962], + "tdesign-", + "icons-vue-next", + [2, 29958, 29658], + [2, 1547, 3525], + [2, 3525, 15159], + [2, 812, 1002], + "@soerenmartius/vue3-clipboard", + " build", + [2, 3525, 29968], + "/build", + [2, 3525, 29970], + "dom-parser", + "qrcode.vue", + [2, 8851, 19675], + [2, 29976, 29977], + [3, 32978, 16], + "atic-import", + [2, 29976, 29979], + "yles", + "@tdesign/site-components", + [0, 29446, 14374, 1081, 29447, 29451, 29452, 29453], + [1, 2343, 29985], + [2, 29961, 29984, 200], + "publish-", + [0, 29986, 29995, 2514, 2537], + [0, 26702, 19344, 1915, 32525, 1953, 1958, 1959, 2105, 2203, 26716, 4523], + [2, 4609, 29988], + "tdoc", + "ystem-ui-font-family", + "tdesign", + "pinkie-promise", + "-widget", + "weui", + "denodify", + [0, 4874, 25950, 1177, 2675, 17529, 2931, 27949, 3401, 4505, 91], + [2, 29997, 3346], + [3, 6806, 10], + "tstyche", + "atomic", + [2, 30016, 30020], + "atomic-sleep", + [1, 2343, 30160], + "xit-leak-free", + [2, 27492, 30003], + "pino-", + [2, 20417, 4714], + [2, 30005, 30006], + "std-", + [2, 1753, 591], + [2, 30008, 30009], + [2, 30005, 30010], + "quick-", + "-unescaped", + [2, 1671, 30013], + [2, 30012, 30014], + [3, 18858, 17], + "real-require", + "sonic-boom", + "thread-stream", + "-tag", + "lush-write-stream", + [2, 5537, 30021], + "obug", + "bole", + "fastbench", + "-write-stream", + [2, 20064, 30026], + "midnight-smoker", + "steed", + [2, 30031, 30032], + [3, 3577, 11], + "-variables", + [2, 30034, 30035], + "postcss-he", + "xrgba", + "postinstall", + [3, 3848, 9], + "devpostinstall", + [2, 30040, 1524], + [3, 3668, 14], + [2, 24276, 30042], + "odule-replacement", + "graphql-jit", + "uploader", + "preview", + "image-edit", + [2, 30085, 3582], + "mqemitter", + "remark-math", + "single-user-cache", + "base64-stream", + [2, 24101, 30057], + "ready", + "-simple", + [2, 2105, 30054], + "win32", + "woslash", + [2, 9406, 7293], + [2, 30060, 30065], + "remark-s", + [2, 30062, 30063], + "gulp-conve", + "rt-css-var", + "picklog", + "martypants", + "wechat", + "weixin", + [2, 29314, 4183], + [2, 17998, 30070], + "ading-time", + [2, 27707, 364], + "better-react-mathjax", + [2, 30074, 25131], + [3, 9313, 17], + [2, 30076, 30077], + [3, 12415, 13], + "alue-to-estree", + [2, 30079, 30080], + [3, 31790, 16], + "ocalematcher", + "tiny-lru", + [2, 10884, 30083], + "egotiator", + [2, 11932, 11525], + "iso-countr", + [2, 30087, 30096], + [3, 13203, 19], + "irregular-plurals", + "fs.extra", + "plurals", + "count", + "irregular", + "noun", + "nouns", + "requireg", + "orm-data", + "@pkgr/core", + [2, 4511, 30118, 30123], + "make-synchronized", + [2, 30101, 30102], + [3, 30099, 13], + "ous", + "sync-threads", + "fclone", + "vizion", + "@pm2/io", + "pidusage", + "pm2-axon", + "@pm2/", + "@pm2/agent", + "pm2-", + "pm2-deploy", + "synchronize", + [2, 5340, 30116], + "@pm2/js-api", + "webc", + "cli-tableau", + [3, 32969, 11], + "pm2-axon-rpc", + [2, 30111, 28917], + [2, 30111, 21833], + [2, 30109, 30121], + "heme", + "logs", + "kraken", + " balancer", + [2, 3001, 30126], + "lb", + "balancer", + [2, 3614, 30129], + "kubernetes", + "k8s", + "emoji-flags", + "pm2-docker", + "graceful", + "phone-codes", + "node-pm2", + "fs-fixture", + "production", + "keymetrics", + [2, 10339, 13522], + "strong-pm", + "supervisord", + "pm2.io", + "@ibyar/expressions", + " production", + [2, 17979, 30146], + [2, 3729, 6877], + "probes", + " process", + " alive", + [2, 30150, 30151], + [2, 25607, 30152], + "process ", + [2, 30154, 8309], + "clustering", + "memoizerific", + "cluster cli", + "dev ops", + [0, 30171, 0, 29047, 2537], + "phone-prefixes", + "@vercel/blob", + [2, 7285, 2669], + "tap-dot", + [2, 30180, 30181], + "PNG", + "js-png", + "node-png", + "import-without-cache", + "png-parse", + [0, 2845], + "pg-gateway", + "@ibyar/decorators", + "pglite-2", + "aurora", + "ibyar", + [2, 4641, 5341], + [2, 4641, 7256], + "evaluation", + [3, 578, 10], + "arousel", + [2, 30195, 3825], + "no-code", + "mvp", + [1, 2343, 30186], + [0, 30187, 30188, 30189, 2537], + [0, 8712, 1423, 5210, 1209, 3021, 26499], + [0, 34225, 4874, 2559, 91, 34229, 28456, 34231], + [0, 89, 5130, 21151, 28811], + "poe", + "economy", + "ninja", + "poe.ninja", + "poe economy", + [3, 581, 10], + [2, 30212, 3730], + " of exile", + [2, 3403, 30197], + " economy", + [2, 30198, 30199], + [3, 30200, 14], + [2, 30201, 30192], + [2, 30194, 8568], + [2, 30201, 5592], + [1, 2343, 30229], + "ast-walker-scope", + "poe.watch api", + [2, 30193, 8568], + "@vercel/ne", + "copilot", + "@types/ne", + [3, 587, 10], + "reval", + [2, 24808, 30213], + [2, 6649, 2995], + [2, 6645, 30215], + "tsgen", + [2, 30231, 30232], + "glamor", + [2, 24177, 591], + "o-async", + " manipulate", + [2, 1473, 30222], + [3, 30223, 15], + [2, 30224, 6600], + " color manipulation", + [2, 7595, 30226], + [3, 35570, 16], + [0, 30249, 0, 2514, 2487], + "muggle-string", + [3, 593, 10], + "potlight", + [2, 579, 30251], + [2, 29444, 30511], + [3, 6372, 10], + [2, 30235, 6374], + [3, 23816, 17], + [2, 30237, 13290], + [2, 30235, 30238], + [2, 30235, 1973], + [2, 30240, 3007], + "nuget-publish", + [2, 30244, 4900], + [3, 13484, 37], + "popperjs", + [2, 1517, 30248], + "attached", + "center", + [0, 9315], + [1, 2343, 30308], + "tiptap", + "allure-js-commons", + "flush-promises", + [2, 30255, 30259], + "@yarnpkg/l", + [3, 10175, 16, 14], + [2, 30276, 30280], + "source map", + "ibzip", + [2, 23660, 30261], + "tector", + [2, 11369, 30282], + [2, 10880, 30264], + "preset-env", + "jison-gho", + [2, 16645, 30267], + "null", + "calculation", + "unixify", + "allure", + "codeceptjs", + "testops", + [3, 3674, 10], + [2, 30273, 25461], + "read-cache", + "express-i", + [3, 1895, 16], + "oblems", + [2, 30277, 30278], + "ntlayer", + "is-mobile", + "spector", + "deep-object-diff", + "@ngard/tiny-isequal", + [2, 6268, 1467], + [2, 206, 30285], + [2, 209, 6731], + "@intlayer/chokidar", + "hsl", + "hsla", + "hwb", + "rgba", + [2, 30294, 6008], + [3, 30288, 11], + [2, 30296, 23], + [3, 30293, 12], + "intlayer", + "caniuse-api", + "colord", + [2, 10829, 30311], + [3, 19443, 15], + [2, 30301, 5592], + [2, 9738, 30304], + "s-hooked", + "@utils/ts-config-types", + [3, 30305, 16], + "@intlayer/", + [0, 0, 30473, 2514, 4139], + "@utils/ts", + [2, 30309, 32810], + "docs-mdx", + [2, 9402, 30374], + "get-npm-tarball-url", + "pixrem", + "pleeease-filters", + "apply", + [2, 3562, 30316], + "postcss-a", + "ttribute", + "-case-", + [2, 30322, 30367], + "use", + "insensitive", + [2, 30320, 30323], + [2, 30319, 30324], + [2, 30318, 30325], + [3, 3570, 22], + [3, 3570, 14], + [2, 30328, 12981], + "hex-alpha", + [2, 30328, 30330], + [3, 30331, 15], + "sl", + [2, 30332, 30333], + "wb", + [2, 30332, 30335], + "rebeccapurple", + [2, 30328, 30337], + [3, 30338, 15], + "gb", + [2, 30339, 30340], + "a-fallback", + [2, 30341, 30342], + [3, 4791, 10], + "nt-family-system-ui", + [2, 30344, 30345], + [3, 30346, 13], + [2, 30347, 24044], + [3, 3611, 18], + [2, 30349, 6422], + "user-agents", + "nitial", + [2, 3607, 30352], + [3, 3622, 10], + "dia-minmax", + [2, 30354, 30355], + "seudo-class-any-link", + [2, 6423, 30357], + [3, 30358, 14], + [2, 30359, 11513], + [3, 30274, 11], + "lace-overflow-wrap", + [2, 30361, 30362], + [3, 3681, 17], + [2, 30364, 6421], + [2, 30364, 23293], + [3, 11228, 16, 2], + "cssrecipes-custom-media-queries", + [3, 30368, 11], + [2, 30369, 19400], + [2, 30369, 10052], + [2, 30369, 594], + "vert", + "ermaid", + [2, 28756, 7224], + "ical-rhythm", + [2, 30373, 30376], + [2, 30369, 30377], + "i-am-meticulous", + [2, 1884, 30379], + "isogram", + "oc-and-anchor", + [2, 7646, 30382], + [2, 12798, 591], + [2, 3160, 30384], + [3, 30385, 11], + "@react-aria/interactions", + "filenames", + [2, 30386, 30388], + [2, 30386, 5980], + [2, 30386, 89], + [3, 30391, 13], + [2, 30392, 1213], + [3, 30391, 12], + [2, 30394, 367], + [2, 30386, 1002], + [2, 30386, 2282], + [2, 30415, 30461], + "nano-logger", + "npmpub", + [2, 25230, 25461], + [2, 3562, 30401], + "-inline", + [2, 3897, 30403], + "@enact/ui", + "lazy-universal-dotenv", + "to-slug-case", + [3, 4693, 9], + "ano-logs", + [2, 30408, 30409], + [2, 30058, 30412], + "-position", + "cssnext", + "modern-tar", + [3, 30387, 12], + [2, 30417, 364], + [3, 906, 9], + [3, 205, 11], + "ascade", + "-lay", + "er-name-parser", + [2, 30420, 30421], + [2, 30419, 30422], + [2, 30418, 30423], + [2, 30417, 30429], + "at-rule", + "atrule", + "csswg", + "delivery-react-native", + "queries", + [2, 30417, 30432, 30433], + "plugin-co", + "nsole-breadcrumbs", + [2, 30435, 30436, 30437], + [3, 30431, 16], + "network-", + "breadcrumbs", + [2, 30435, 89], + [2, 30438, 30440], + "-native-client-sync", + [2, 30443, 30444], + "declarative", + [3, 30439, 29], + "event-sync", + [2, 30443, 30446], + "global-error-handler", + [2, 30443, 30448], + "hermes", + [2, 30443, 1577], + [2, 30443, 30451], + "unhandled-rejection", + "iserror", + "react-syntax-highlighter", + [2, 30457, 30460], + "bugsnag", + "stability", + [3, 30375, 17], + "@enact/webos", + [2, 30875, 4000], + "croll-area", + "overlays", + "at-rules", + "@ionic/angular", + [2, 30415, 17966], + "@keyframes", + "@counter-style", + "@devtools-ds/object-inspector", + [2, 4807, 30453], + [2, 30475, 30476], + "@aw-web-design/x-default-browser", + "@fal-works/esbuild-plugin-global-externals", + "flexbugs", + [0, 4483, 1177, 1984, 1894, 91, 4874, 1953, 7677, 1982, 1895, 1011, 1009], + [1, 2343, 30482], + [3, 659, 18], + "nobis-nostrum-nam", + "@skylernpm/hic-inventore-dolores", + [3, 3616, 9], + "postcss-less", + "tyl", + "postcss-styl", + [0, 30490, 30492, 30497, 34352], + "quickapp", + "PHP", + "sss", + "convex", + [3, 29658, 18, 8], + [2, 30502, 27421, 30606], + "world-countries", + [0, 1437, 3074, 3714, 4361], + "image-set", + [0, 2228, 2240, 2247, 2316, 1906], + [2, 2662, 30554], + "@eggjs/oxlint-config", + "@vercel/e", + "mock-spawn", + [0, 21779, 8221, 13814, 15344, 158, 6707, 3178], + "node modules", + [3, 31793, 24, 5], + [1, 2343, 30524], + [2, 30503, 30515], + [3, 30477, 11], + [3, 30489, 12], + "postcssrc", + ".config.js", + [2, 3561, 30505], + "@recharts/devtools", + "motion-dom", + [2, 30510, 186], + "motion-u", + "-snapshot", + "midas", + [3, 3591, 9], + "ark-", + "y-codes", + "theme-class", + [2, 30514, 30516], + [2, 30513, 30517], + "hort", + [2, 3677, 30519], + [2, 1172, 30522], + [3, 5558, 22, 6], + [2, 30560, 6802], + [0, 30525, 30526, 30189, 2523], + [0, 668, 8712, 4090], + [0, 1192, 91, 5087, 4874, 28455, 28574], + [2, 30546, 30547, 3966], + [1, 2343, 30549], + [2, 30530, 30537], + [3, 30868, 11], + "cssnano-", + [2, 30531, 594], + [2, 30534, 11504], + "@codecov/", + [2, 30536, 6579], + [3, 1300, 12], + "silent", + "expressots", + "font-f", + "clean-architecture", + "font-family", + "font-weight", + [2, 30544, 30545], + [3, 4526, 12], + "ramework", + [3, 31198, 25], + "particles-", + "desm", + [0, 30550, 30555, 30556, 2523], + [0, 1169], + [2, 41, 30552], + "pro-components", + [2, 5557, 3514], + "node16", + [0, 3421, 1429, 4493, 2899, 4039, 2026, 4474, 91, 4856, 4874, 6503, 1151, 6494, 8648], + [0, 6653, 2275, 5472, 6969, 5982, 7320, 11346, 3541, 1169], + [1, 2343, 30580], + "esc", + [2, 7632, 30558], + [3, 30501, 14], + "gulp-better-rollup", + [2, 30560, 1460], + "Leaflet", + "Maps", + "Gesture", + "Handling", + "two", + "fingers", + [2, 30571, 30572], + [2, 3976, 30573], + "world", + [3, 29868, 24, 3], + "anitize", + [2, 30571, 30578], + [3, 220, 19], + [2, 4026, 3639], + [2, 30575, 30576], + [3, 29963, 27, 3], + "atrules", + [0, 30596, 30597, 2514, 2523], + "children", + "nestings", + "@anthropic-ai/sdk", + "@azure-rest/ai-inference", + [2, 959, 30586], + "vue-virtual", + [2, 209, 3376], + [3, 30402, 16], + [2, 30588, 4298], + [2, 2574, 3375], + "world-iso-codes", + [2, 964, 188], + [2, 30599, 29842], + "normalizes", + "fixes", + [0, 1112, 1415, 16230, 24324, 36538, 30169, 30023, 3530, 28865, 29444, 4135, 26379, 27921, 4459, 33251, 24214], + [ + 0, 33043, 29170, 29455, 29458, 29465, 4874, 20374, 5254, 29891, 29466, 33253, 7677, 23203, 10984, 19839, 1680, + 1177, 20044, 16860, 3144, 3749, 15450, 1894, 23535, 30234, 24181, 91, 29469, 30908, 28797, 29470, 1983, 1984 + ], + [1, 2343, 30601], + "world-", + [2, 30613, 1460], + [0, 30605, 30608, 30611, 2537], + "@cfworker/json-schema", + "@clerk/localizations", + "@ark/attest", + [0, 1676, 1679, 2151, 2212, 17450, 4400], + "non-corrupti", + "admin-lte", + [0, 5245, 29493, 4864, 1429, 1177, 2899], + "@clerk/nextjs", + "@clerk/themes", + [0, 1764, 7682, 26965, 3428, 2090, 27, 1002, 1965, 5995], + "backendless", + [3, 30593, 18], + "to-valid-identifier", + [1, 2343, 30626], + "@astrojs/mdx", + [2, 30618, 30619], + [3, 28058, 16], + "tro", + [2, 3704, 34683], + [2, 30625, 3286], + [2, 30623, 9872], + "control-", + "smartbanner.js", + [3, 2635, 14], + [0, 0, 30627, 30780, 2537], + [0, 8648, 4874, 4880, 34737, 1894, 89, 3824, 7671, 91], + [2, 30612, 30665], + "cascade-layers", + [2, 216, 30629], + [3, 30630, 19], + [3, 3569, 13], + [2, 30631, 30632], + [3, 30633, 24], + "mix-function", + [2, 30634, 30635], + [3, 30633, 20], + "alt-text", + [2, 12009, 30638], + [2, 30637, 30639], + [3, 28688, 12], + [2, 30641, 5746], + [2, 216, 30642], + "ormat-", + [2, 30644, 4798], + [2, 30539, 30645], + [2, 216, 30646], + "gamut-mapping", + [2, 216, 30648], + [3, 30649, 19], + "radients-interpolation-method", + [2, 30650, 30651], + "hwb-function", + [2, 216, 30653], + [3, 215, 19], + "c-unit", + [2, 30655, 30656], + [2, 30655, 30352], + "light-", + "dark-function", + [2, 30659, 30660], + [2, 216, 30661], + [3, 30662, 19], + "ogical-", + "-request", + [2, 30683, 31073], + "-and-clear", + [2, 14639, 30667], + [2, 30664, 30668], + [2, 30663, 30669], + [3, 30670, 26], + "overflow", + [2, 30671, 30672], + [3, 30673, 30], + "behavior", + [2, 11262, 30675], + [2, 30674, 30676], + [2, 30671, 24800], + "viewport-", + "units", + [2, 30679, 30680], + [2, 30671, 30681], + [3, 30628, 13], + [2, 30767, 33380], + "media-minmax", + [2, 216, 30685], + [3, 30686, 24], + "-aspect-ratio-number-values", + [2, 30430, 30688], + [2, 30687, 30689], + [2, 30695, 10740, 4978], + "nested-calc", + [2, 216, 30692], + [3, 30693, 19], + [3, 30628, 12], + "bannerize", + [2, 31495, 31502], + "play-values", + [2, 29577, 30698], + [2, 3646, 30699], + [2, 30694, 30700], + "oklab-function", + [2, 216, 30702], + "relative-", + "yntax", + "color-syntax", + [2, 30704, 30706], + [2, 216, 30707], + "scope-", + "pseudo-class", + [2, 30709, 30710], + [2, 216, 30711], + [3, 30712, 19], + "tepped-value-functions", + [2, 30713, 30714], + [3, 70, 7], + [3, 5845, 9], + [2, 7854, 30717], + [2, 30716, 30718], + [2, 28533, 30719], + [2, 216, 30720], + [3, 30721, 19], + "rigonometric-functions", + [2, 30722, 30723], + [2, 216, 10760], + "css-b", + "lank-pseudo", + [2, 30726, 30727], + "css-h", + [2, 30612, 33812], + "zarm", + "as-pseudo", + [2, 30729, 30732], + "css-pr", + "efers-color-scheme", + [2, 30734, 30735], + [2, 1007, 30738], + [3, 13069, 23, 4], + "postcss-clamp", + [3, 3591, 10], + "r-pseudo-class", + [2, 30740, 30741], + "ouble-position-gradients", + [2, 30513, 30743], + [3, 4791, 14], + "within", + [2, 30745, 30746], + "gap-properties", + [2, 3562, 30748], + "ab-function", + [2, 30478, 30750], + [3, 3616, 10], + "gical", + [2, 30752, 30753], + [3, 3664, 9], + "pacity-percentage", + [2, 30755, 30756], + "verflow-shorthand", + [2, 30755, 30758], + "age-break", + [2, 6423, 30760], + [2, 30764, 30766], + "postcss-place", + [3, 3710, 17], + "lists", + "h", + "@biomejs/", + "playbook-builder", + "algo", + [2, 444, 30771], + "-interactions", + [2, 30773, 89], + [3, 29959, 13], + "@zarm-design/bem", + [2, 3677, 30705], + [2, 30777, 45], + [3, 30774, 13], + "ahooks", + "better-scroll", + [0, 89, 586, 11000, 26264, 6458], + "hermes-compiler", + [1, 2343, 30791], + [2, 30777, 200], + "@oxc-project/runtime", + "zarm-ui", + "zarm-mobile", + [2, 30790, 553], + [2, 20561, 30789], + "render-stream", + [3, 30784, 13], + [0, 30793, 0, 30799, 2523], + "@oxc-node/cli", + [0, 1687, 5303, 1459, 6501, 182, 148, 164, 167, 29468, 187, 153, 191, 28332, 15690, 28361], + "oxc-parser", + [2, 30796, 30797], + "@iconify", + "/utils", + [2, 3882, 11245], + [ + 0, 28407, 1459, 6094, 28416, 28417, 2585, 28442, 18241, 6038, 6110, 1936, 6138, 6139, 6142, 6144, 6145, 20863, + 14600, 5130 + ], + [1, 2343, 30801], + [0, 0, 30812, 30825, 2537], + "@enact/i18n", + [2, 30804, 30232], + [3, 907, 8], + "doublylinked", + "lightning", + "-pool", + [2, 30806, 30807], + "ilib", + "-bytea", + [2, 25638, 30810], + [0, 1192, 1177, 4042, 4468, 1894, 91, 5087, 1895, 1955, 2780, 1011, 1009], + "power-tasks", + "@cyntler/react-doc-viewer", + "putil-", + [2, 30815, 19138], + "varhelpers", + [2, 30815, 30817], + "@enact/docs-utils", + [2, 30405, 30821], + "-test-utils", + [2, 18576, 30823], + "nact-proxy", + "@fal-ai/client", + [0, 31512, 32054, 35062, 35060, 20986, 4453, 5284, 91, 89, 188, 3709, 23332], + [2, 22180, 591], + [1, 2343, 30836], + [2, 1962, 30830], + "titanium", + "dos-detector", + "ed-queue", + "-ended-queue", + [2, 4420, 30832], + [2, 11344, 977], + "tsm", + [0, 30846, 30863, 30865, 2443], + "level-codec", + "write-stream", + [2, 25982, 30838], + "ltgt", + "bundle-size", + "spark-md5", + "vuvuzela", + "rolldown-", + "react select", + [0, 29178, 3744, 3911], + "react dropdown", + [2, 30852, 30856], + "empower", + [2, 3696, 12168], + "universal-", + "accessib", + "strict-equal", + [2, 1683, 30853], + [2, 30851, 30854], + "le react select", + "dereserve", + "accessible", + "licensify", + [3, 21510, 14], + "ilterify", + [2, 30860, 30861], + [ + 0, 48, 53, 68, 61, 71, 73, 76, 14039, 78, 83, 87, 90, 97, 966, 968, 972, 1195, 1593, 1610, 1177, 1879, 1895, + 1938, 1947, 1955, 1959, 1192, 2780, 2843, 3697, 1894, 89, 3824, 2924, 4676, 4677, 4681 + ], + "jsx-async-runtime", + [0, 89, 6071, 7521, 5128], + "@formkit/auto-animate", + [2, 8293, 181], + "@reporters/github", + "@apm-js-collab/tracing-hooks", + "tidev", + "iphone", + "precommit", + [2, 5186, 2203], + [2, 5928, 3717, 2389], + "react-load", + "combine-promises", + "@actions/github", + [2, 20201, 1172], + "@actions/glob", + [2, 19849, 3583], + [2, 1252, 30880], + [2, 20201, 2942], + "errorstacks", + "-sinon", + [2, 2878, 30884], + "-display-", + "@google/genai", + "kolorist", + "oxlint", + [2, 30893, 30894], + "virtual dom", + "dom diff", + [3, 30878, 13], + "undler", + [2, 3886, 1541], + [2, 30897, 30898], + [3, 38298, 13], + "dx-loader", + [2, 32359, 13369], + [2, 30901, 7020], + [3, 30899, 18], + [2, 30459, 30903], + "-ssr-addon-v5-slorber", + [3, 18018, 13], + [2, 30904, 3642], + "@huggingface/inference", + "jest-l", + [2, 30909, 166], + "unplugin-a", + [1, 2343, 30925], + "ight-runner", + [2, 30907, 30911], + [2, 35506, 30914], + "tect-port", + [2, 30916, 30917], + [3, 12312, 18], + "shoehorn", + [3, 2954, 10], + [2, 30923, 1541], + "lugin-pug", + [2, 30918, 30920], + [2, 5334, 30921], + [3, 4887, 20], + [3, 3703, 15], + [0, 0, 12112, 30927, 2523], + "@nestjsx/crud", + [0, 2070, 1108, 6961, 57, 29617, 4643], + [2, 206, 31196], + [2, 30930, 32550], + "@vercel/b", + [1, 2343, 30933], + [2, 18420, 8162], + [0, 30934, 0, 30936, 2523], + [0, 1459, 16485, 182, 28912, 148, 187, 153, 28332, 15690, 28361, 146, 28913, 15716, 29131, 29495], + "parcel-bundler", + [ + 0, 28407, 1459, 6094, 28416, 28417, 2585, 28442, 18241, 6038, 6110, 1936, 6138, 6139, 6142, 6144, 6145, 20863, + 5130 + ], + "Vue", + [1, 2343, 30945], + "@zoroaster/assert", + "glob-fs", + [2, 30942, 10098], + [3, 30939, 11], + "unstyled", + "alamode", + [0, 0, 2667, 31019, 4139], + "humanized", + "si", + "locale", + "@a-la/fixture-alamode", + "localized", + [2, 30952, 1172], + [3, 30949, 14], + "@artdeco/clean-stack", + "@artdeco/erte", + "@artdeco/", + "renderkid", + [2, 30971, 4521], + "jitter", + [2, 30989, 186], + "exception", + [2, 30955, 30962], + "scripts.json", + [2, 30926, 30665], + [2, 30965, 614], + "@nestjsx/", + "@depack/render", + "crud", + "crud-generator", + "frameworks", + "parse-ms", + [3, 30963, 14], + "@netlify/framework-info", + "@wrote/exists", + "milliseconds", + "period", + "@wrote/rm", + [2, 30942, 6696], + "@zmotivat0r/o0", + "@pothos/core", + [2, 30942, 553], + "mercurial", + "hg", + "vcs", + "argufy", + "catchment", + "p-filter", + "p-locate", + "documentary", + "unplugin-u", + [2, 5313, 6355], + [2, 15658, 30992], + "-integration", + "npmjs", + "@pri", + "sma/engines", + [2, 30994, 30995], + "gatsby", + "hugo", + "netlify", + "ts-pattern", + [2, 32976, 33011], + "global-dirs", + "erotic", + "line-replace", + "@prisma/", + [2, 31005, 1676], + [2, 13403, 31016], + "xdg-app-paths", + [2, 31005, 5576], + "studio", + [2, 31005, 31010], + "migrate", + [2, 31005, 31012], + "internals", + [2, 31005, 31014], + "rtdeco", + "point-client", + [2, 4354, 31017], + [ + 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 8622, 1836, 8623, 1179, 8624, 6847, 8625, 2720, 8626, 8628, 5284, + 4403, 202, 6710, 3741, 8630, 3742, 8631, 3925, 8632, 8633, 4989, 2184, 8634, 7009, 6621, 553, 91, 181, 8635, + 4758, 8636 + ], + [1, 2343, 31082], + [2, 31514, 31516], + "fetch-engine", + [2, 31005, 31022], + "makepromise", + "get-platform", + [2, 31005, 31025], + [2, 31011, 2995], + "@prisma/ge", + "nerat", + "or-helper", + [2, 31029, 31030], + [2, 31028, 31031], + "promto", + "ORM", + "Prisma", + "reloquent", + "Prisma CLI", + "prisma2", + "JS", + "TS", + "SQL", + "SQLite", + "Postgres", + "core-js-pure", + "PostgreSQL", + "CockroachDB", + "MySQL", + "MariaDB", + "MSSQL", + "SQL Server", + "SQLServer", + "MongoDB", + [2, 32483, 13083], + "jest-location-mock", + [2, 27845, 31056], + "dule-alias", + [2, 1464, 31059], + "danger", + "-serve", + "spawncommand", + "docdash", + "hotreload", + "gulp-terser", + "@strapi/strapi", + "temp-context", + "webfont", + "usually", + "yarn-s", + [2, 31070, 11017], + "@pothos/", + [2, 31084, 31085], + [3, 815, 8], + "t-client", + [2, 31072, 31073], + "URIjs", + "pothos", + "IDE", + "svn", + "suggestions", + "intellisense", + "tagged-tag", + [0, 31083, 31199, 31215, 2537], + [0, 29692, 1079, 1676, 3310], + [3, 8998, 11], + "assword", + "@svgr/hast-util-to-babel-ast", + [2, 31104, 31682], + [2, 31089, 1541], + "@epic-web/", + "yalc", + [2, 31092, 364], + "@strapi/", + "@strapi/i18n", + "@strapi/admin", + [2, 31092, 1823], + [2, 31092, 553], + [2, 31092, 594], + [2, 31092, 2942], + [2, 31100, 184], + "@strapi/u", + [2, 31102, 1803], + [3, 28426, 12], + "zshy", + "@types/so", + [2, 31092, 18035], + [2, 31107, 31108], + "@strapi/c", + "loud-cli", + [2, 31092, 5701], + "get-latest-version", + [2, 31112, 31113], + "@strapi/p", + "ermissions", + [2, 31115, 31116], + [3, 31105, 12], + "-transfer", + [2, 31118, 31119], + "@strapi/co", + "ntent-manager", + [2, 31121, 21945], + [3, 31117, 16], + "customize", + [2, 31092, 31124], + "review-workflows", + [2, 31096, 31126], + "cript-utils", + [2, 31121, 31128], + "type-builder", + "interact", + "css-parser", + [2, 31132, 31133], + "@strapi/t", + "s-zen", + [2, 19502, 31137], + "uglifyify", + "uglifyjs", + "ustom", + [2, 4807, 4684], + "css-ast", + "strapi", + "cmf", + "alpha-sort", + "vent-", + [2, 31143, 2618], + [2, 2621, 31144], + [2, 31151, 5130], + "mdast-zone", + [2, 5967, 2619], + "svg-e", + [2, 31149, 31144], + [3, 17944, 19], + "aria", + "admin panel", + "koajs", + "jam", + "graphqL", + "@protobufjs/aspromise", + [3, 31157, 12], + [2, 31158, 14357], + [2, 31158, 5061], + [2, 31158, 2016], + [2, 31158, 1612], + [3, 31162, 13], + "loat", + [2, 31163, 31164], + [2, 31158, 8625], + [2, 31158, 3403], + [3, 31167, 13], + [2, 31168, 25200], + [2, 31158, 4577], + "infrastructure", + [2, 13888, 4719], + "semver-tags", + [2, 10617, 31173], + "self hosted", + "lernajs", + "css-tools", + "@icons-pack/react-simple-icons", + "@khmyznikov/pwa-install", + [2, 25885, 24348], + "wd2", + "jasminewd2", + "-js-extender", + [2, 11132, 31183], + "webdriver-", + [2, 31185, 10057], + "snake-case", + [2, 23689, 31181], + "ang-format", + [2, 21680, 31189], + "natives", + [3, 19209, 11], + [2, 31192, 591], + [2, 4491, 31193], + "vrsource-tslint-rules", + "syntax-patches-for-csstree", + "base-driver", + [2, 31228, 29677, 31230], + [0, 5245, 4874, 5542, 29696], + [2, 31203, 31204], + [3, 27731, 11], + [2, 31201, 57], + [3, 1006, 11], + "averse", + "@types/args", + [2, 31208, 57], + "squid", + [3, 34785, 11], + "privoxy", + "mod_proxy", + "via", + "x-forwarded-for", + "@express", + "-zod-api/zod-plugin", + [0, 32859, 8549, 5592, 5576, 5130, 6082, 28450], + [1, 2343, 31245], + "p3-linear", + "fill-keys", + "not-found-error", + [2, 5223, 31219], + "MCP", + [3, 8648, 12], + "hello-world", + [2, 13669, 31223], + [2, 31226, 28613], + [3, 2670, 12], + [3, 33464, 11], + [3, 1004, 13], + "cp-sugar", + "-external-push", + [2, 31228, 31241], + "-status", + [2, 16238, 31232], + "l-ct-react", + [2, 31236, 1983], + [3, 11282, 19], + [2, 11147, 1983], + [2, 12042, 4406], + [3, 31198, 24], + "pug-", + "move-base", + "pug-code-gen", + "pug-filters", + [2, 31228, 31261], + [0, 26964, 0, 31273, 2537], + "pug-lexer", + "@langchain/community", + "pug-linker", + "pug-load", + "pug-parser", + "pug-runtime", + "strip-co", + [2, 31252, 19490], + [2, 31240, 31253], + "@lobechat/agent-runtime", + [3, 24593, 18], + "down-it", + [2, 31256, 31257], + [2, 24585, 4535], + [3, 31231, 17], + "shape-emoji", + [2, 31228, 31271], + [2, 31995, 5257], + [2, 32038, 31267], + "bail", + "tap-bail", + " tools", + [2, 31269, 31270], + [3, 31238, 12], + "shape", + "updater-color", + [2, 31281, 26543], + [ + 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, + 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, + 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, + 12094, 31238 + ], + [1, 2343, 31309], + [2, 33763, 31291], + [3, 31262, 20], + "idn", + "idna", + "dns", + "domain", + [3, 31262, 21], + [2, 31283, 31284], + [3, 31272, 22], + "ut-modes", + "-bidi", + [2, 7001, 31285], + [3, 11071, 14], + [2, 17414, 31287], + "@uppy/companion", + [2, 31313, 364], + "detect-agent", + [2, 5176, 31293], + "remapping", + [2, 31295, 13901], + [3, 33831, 13], + [2, 31298, 31299], + "purge", + [3, 28384, 12], + "presigned-post", + [2, 31301, 31302], + [3, 30257, 11], + "erceptor", + [2, 2032, 31304], + "prom-bundle", + "grant", + "tus-js-client", + "qr code", + [2, 2662, 1278], + [0, 26964, 0, 31273, 2523], + "resumable uploads", + "tus", + "dropbox", + "@vuepress/", + [2, 21282, 31372], + [2, 31316, 31324], + "@radix-ui/", + "@browserify/envify", + [3, 31317, 12], + [2, 31318, 31135], + "common-s", + "hakeify", + [2, 31320, 31321], + "verr", + "primitive", + "webpack-chain", + "ide-mistake", + [2, 31323, 31326], + [2, 15053, 31327], + "unassertify", + [2, 31355, 31356], + [2, 31313, 553], + [2, 31313, 1783], + "vue-server-renderer", + [2, 31338, 31342], + "decode-", + [2, 14649, 4627], + [2, 31335, 31336], + [3, 13063, 12], + "filter-obj", + "-on-first", + [2, 4237, 31340], + "reset-app", + [2, 31313, 31346], + [3, 5422, 9], + [2, 7193, 3634], + "shared-utils", + [2, 31332, 2091], + [2, 31349, 3111], + [3, 21294, 16], + "retape", + [2, 19469, 31352], + [3, 32087, 20, 4], + [2, 21282, 31354], + "last-updated", + [3, 28754, 17], + "ompose-refs", + "tap-esm", + [2, 31359, 31604], + [3, 31330, 18], + "synchronous", + [2, 28756, 8191], + [2, 31363, 31364], + [3, 31361, 17], + "rimitive", + "FIFO", + "lifo", + "LIFO", + [2, 28756, 32760], + "queue js", + "job queue", + "job ", + "active-header-links", + "scheduling", + [2, 31371, 31373], + [2, 21282, 3412], + "task queue", + "ordered", + [2, 31380, 31382], + "linked list", + [3, 31368, 20], + "dequeue", + "escape-keydown", + "assistant-stream", + [2, 31385, 6599], + "assistant-", + [2, 31418, 31420], + [1, 2343, 31476], + "parchment", + [3, 15562, 11], + [2, 31395, 31396], + [3, 12455, 16], + [2, 31391, 1722], + [2, 17612, 2924], + [2, 5197, 4408], + [3, 1694, 14], + "x-buildutils", + "@types/sharp", + "radix-ui", + "ai-sdk", + "shadcn", + "fuzzysort", + "grunt-search", + [3, 19622, 19], + [2, 31403, 3595], + "@qunitjs/browserstack-runner", + "assistant", + "openai", + "ai", + "chatbot", + "ai-chat", + "dom-e", + [2, 15588, 6863], + [2, 31411, 31412], + [2, 31415, 31416], + [3, 6493, 9], + "acritics", + "@types/qunit", + [3, 31331, 11], + "qunit-plugin", + "heme-default", + "@walletconnect/browser-utils", + "ai-chatbot", + "ai-assistant", + "ai-copilot", + [2, 31349, 31428], + "exists-stat", + "js-reporters", + [3, 15580, 13], + [2, 26353, 8791], + [2, 31436, 31464], + "chatgpt", + "gpt4", + "gpt-4", + [3, 2888, 14], + [2, 31436, 553], + [3, 31421, 15], + "testling", + [2, 31436, 31441], + "AnimationFrame", + [2, 705, 31439], + "safe-json", + [2, 31436, 31443], + "window-getters", + [2, 31450, 6774], + "-export-", + [2, 31445, 14057], + [2, 1205, 31446], + "envvar", + "sanctuary", + [3, 31442, 22], + "-identity", + [2, 31449, 31451], + "xyz", + [2, 6080, 31458], + "@ethersproject/address", + [2, 31457, 25352], + [3, 10408, 17], + "al-ui", + "wallet", + "walletconnect", + "jsonrpc", + "cryptocurrency", + "dapp", + "iso-crypto", + [2, 31436, 31472], + [2, 31467, 31408], + [3, 31454, 15], + [3, 30286, 15], + [2, 31436, 594], + [2, 31436, 1616], + "alc", + "legacy-modal", + [2, 31478, 9962], + "@globalart/nestjs-swagger", + [2, 32811, 32812], + [0, 31481, 0, 7653, 2523], + [2, 31478, 553], + [3, 31465, 22], + "timed-out", + [2, 31478, 594], + [0, 12215, 12219, 1014, 28999, 7406, 7403], + "exceptions", + "sentry", + [3, 15602, 13], + [2, 31499, 31500], + "@graphiql/plugin-doc-explorer", + [1, 2343, 31488], + [0, 31505, 0, 31510, 34352], + [2, 31478, 5576], + [2, 31436, 31491], + "jsonrpc-provider", + [2, 31493, 31494], + [3, 31490, 23], + "http-connection", + [3, 27276, 25], + [2, 31497, 31498], + "ethereum-", + "test-network", + [3, 31438, 16], + "ocket-transport", + [2, 7850, 21497], + [3, 4986, 9], + [2, 2079, 4406], + [2, 11183, 31503], + [0, 29419, 29441, 29454, 29756, 29757, 29766, 29807, 29813], + "father-build", + "@mastra/core", + "rc-test", + [2, 31520, 13927], + [0, 29818, 4270, 29823, 5472, 1973, 29830, 29830, 3857, 89, 5131, 12295, 12296, 5122], + "react-slider", + "slider", + [1, 2343, 31522], + [3, 31027, 15], + [2, 7850, 11512], + "core-licensed", + "wordpress", + "gutenberg", + [2, 14013, 8189], + [3, 1103, 9], + "angular-mocks", + [0, 31529, 0, 31531, 2487], + "graphiql", + "next-router-mock", + [3, 5251, 10], + "ponselike", + [2, 31525, 31526], + "body-scroll-lock", + [0, 2817, 18023, 1125, 1129, 31764, 1122], + "motion-v", + [0, 30999, 28818, 5995, 17978], + [1, 2343, 31546], + "radash", + "@a2a-js/sdk", + "js-tiktoken", + "hono-openapi", + "@ai-sdk/provider", + [2, 31543, 31545], + [3, 2766, 10], + "jasmine-ts", + [2, 13130, 3212], + [3, 3793, 11], + "@ai-sdk/", + [2, 31643, 1623], + "ui-utils", + [0, 0, 31547, 31628, 2523], + [0, 1389, 2665, 4650], + [2, 31537, 31570], + "body scroll", + [2, 31549, 31551], + " lock", + [3, 65, 8], + "react scroll lock", + "react-common", + [2, 31552, 31554], + [3, 31555, 17], + "ponents", + [2, 31556, 31557], + [3, 31555, 14], + [2, 31559, 21189], + [3, 31560, 16], + "oks", + [2, 31561, 31562], + [2, 31559, 14592], + [3, 31553, 12], + "freeze", + "vanilla-js", + "tablet", + "bsl", + "-v5", + [2, 31572, 31582], + "@mastra/", + [2, 1379, 31574], + "node-info", + "@restart/hooks", + "resolve-path", + "@restart/ui", + [2, 3744, 20622], + "unco", + "ntrollable", + [2, 31579, 31580], + "schema-compat", + "ecosystem-react", + [2, 31585, 594], + [3, 31548, 17], + [2, 11484, 31587], + "sole-ui", + "@icon", + "s/material", + [2, 31588, 31589], + [2, 3131, 1512], + "reactcss", + "@types/esm", + "@case/eslint-config", + [2, 31596, 31601], + [3, 29736, 11], + "centered", + [2, 10818, 31597], + [3, 30881, 30], + [2, 31599, 1204], + "up-sync", + "chai-spies", + "jsx-loader", + "ntext", + [2, 3808, 31604], + [3, 3850, 10], + "@types/sane", + "testdom", + "@lukeed/uuid", + [2, 31584, 31570], + "color picker", + "sketch", + [2, 4807, 4547], + "photoshop", + [2, 31616, 5592], + [3, 31573, 14], + [2, 31618, 6893], + [3, 31548, 18], + [2, 31538, 31570], + [3, 2651, 13], + "tags-plugin", + [2, 31620, 31621], + [2, 31626, 6893], + [2, 28010, 1492], + [2, 1585, 31624], + [3, 31610, 24], + "mocha-jshint", + [0, 4384, 2076, 5131, 4453, 2013, 15535], + "@ai-sdk/azure", + [1, 2343, 31641], + [2, 31543, 31407], + "docgen/cli", + [2, 10802, 31632], + [2, 31635, 671], + "@internal/", + [2, 31637, 31638], + [3, 28766, 11], + "ypes-builder", + "@openrouter/ai-sdk-provider", + [2, 1710, 2136], + [0, 31660, 31662, 31663, 34352], + "is-root", + "camelcase-", + [2, 24559, 31675, 31676], + "llm", + "agents", + "vectorstore", + "@react-d", + "nd/invariant", + [2, 31648, 31649], + [3, 31650, 11], + [2, 31651, 4163], + [2, 1199, 17586, 31655], + "dnd-core", + "starts-with", + "embeddings", + "rag", + "evals", + "otel", + [0, 26616, 4391], + "replacement", + [0, 2766, 2297, 2881, 2886, 2898, 28023, 3181, 3758, 4535], + [0, 3113, 26799, 5131, 1388], + [1, 2343, 31672], + [3, 24807, 15], + [2, 31665, 1286], + [3, 8136, 9], + "ctrine", + [2, 31667, 31668], + "html4", + [2, 20245, 16957], + [0, 31679, 31684, 2514, 2537], + [2, 30415, 31678], + [2, 32813, 18502], + "reference-", + "invalid", + "condense-newlines", + "landmark", + [0, 20414, 29996, 17982, 11049, 30043, 30048, 3478, 29457, 3923, 18730, 20423, 30050, 30081, 4729], + [2, 30418, 31681], + "olor-helpers", + "rtablejs", + "attr-accept", + [ + 0, 5526, 5528, 5529, 31674, 826, 30086, 4874, 9241, 20441, 28400, 1540, 21594, 1177, 2078, 2220, 2222, 5560, + 29197, 3697, 3752, 4135, 4193, 4238, 4481, 91, 4548, 28519 + ], + "vue-next", + "file-selector", + "draggable", + [3, 71, 24], + [2, 31688, 14255], + [2, 69, 5721], + [3, 5700, 24], + "ipeline-operator", + [2, 31691, 31692], + "-why", + [2, 10876, 31694], + [2, 18043, 200], + [3, 4676, 9], + "locks", + [2, 31697, 31698], + "drag-and-drop", + "color-name", + [3, 1802, 13], + "kanban", + [2, 32312, 2825], + "anser", + [2, 2769, 2086], + "le-promise", + [2, 6935, 31707], + [1, 2343, 31712], + "redbox", + "crash", + [0, 31714, 31730, 31732, 2443], + "css-mediaquery", + [0, 3749, 3527, 11481, 29170], + [3, 33768, 11], + "react-si", + "de-effect", + [2, 31716, 31717], + "iceworker", + "fl", + [2, 16819, 31720], + "karma-html", + [2, 31722, 2903], + "is-whitespace", + "nfl", + "noscript", + [2, 31729, 33865], + "dashdash", + "@types/ran", + [0, 7812, 30138, 3742, 1984], + "titanium-sdk", + [0, 20001, 671], + [3, 20745, 21], + "jest-preview", + [2, 31395, 4384], + "@polka/send-type", + [2, 31005, 31774], + [1, 2343, 31739], + [0, 31746, 31747, 2514, 2537], + [2, 20413, 1699], + [3, 1845, 22], + [2, 31741, 2855], + "react-mount", + "yarn-", + [2, 31744, 17335], + [0, 58, 1437, 3930, 814, 4747], + [0, 1178, 29847, 29851, 25675, 3758, 3938, 4216, 4255, 4389, 4449], + "csstree", + "decap-cms-backend-aws-cognito-github-proxy", + [2, 9497, 31907], + [3, 3321, 10], + [2, 31751, 2849], + [1, 2343, 31756], + [3, 19812, 19], + [2, 31754, 965], + [0, 31757, 27070, 27064, 2523], + [0, 28326, 2017, 31435, 31469], + [1, 2343, 31761], + "completion", + [2, 31780, 31781], + [0, 0, 0, 31762, 2537], + [0, 30486, 5995, 35981, 7072, 18035, 89], + [1, 2343, 31783], + [2, 31768, 13083], + "viewport", + [3, 15616, 12], + "observer", + [3, 1129, 12], + "lazy load", + "inview", + "useInView", + "useIn", + "terse", + "query-plan-executor", + "decap-cms", + "aws-cognito", + "ctionObserver", + [2, 31773, 31777], + [2, 31772, 31778], + [3, 31749, 19], + "zure", + [2, 31792, 17977], + [0, 0, 0, 31784, 2487], + [0, 1177, 6939, 89, 3878, 27158], + [1, 2343, 31786], + [0, 31801, 31803, 31810, 4139], + "@formatjs/", + "listformat", + [2, 19067, 31788], + [2, 31787, 31789], + [3, 31790, 14], + [3, 31749, 18], + [2, 31792, 31804], + "common-stuff", + [3, 31790, 11], + "cu-messageformat-parser", + [2, 31795, 31796], + [2, 6458, 1671], + [2, 19067, 31798], + [2, 19644, 8982], + [0, 1104, 22972, 1676, 2061, 13896, 1776, 3102, 4449], + "what-the-diff", + [0, 53, 87, 94, 1178, 1429, 1596, 1177, 1922, 2323, 2338, 2384, 2419, 2436, 2463, 2510, 2899, 30496, 3421, 3697], + "git-gateway", + [2, 31813, 6064], + [3, 18229, 15], + "lat-gitignore", + "jsondiffpatch", + "gotrue-js", + [0, 2323, 1776, 18011, 5284, 18444, 1745], + "es-crypto", + "gateway", + [3, 31793, 21], + [3, 19657, 16], + [2, 31814, 2855], + [2, 31813, 620], + [1, 2343, 31818], + [0, 31826, 0, 31829, 2537], + "@nstudio", + [2, 4564, 2618], + [2, 2617, 31820], + [2, 31792, 2658], + [3, 28165, 19, 9], + "hmac256", + "hmac512", + [0, 2714, 31809, 3181, 2867], + [2, 31792, 1973], + "exenv", + [0, 30999, 28818, 5995, 31804, 31812], + "custom-", + [2, 31830, 11513], + [2, 10704, 31831], + "otp-io", + [2, 29956, 4963], + [2, 31836, 31837], + [3, 23664, 13], + "or-js", + "dom7", + [2, 13843, 353], + [2, 1176, 31839], + [2, 14510, 2091], + [2, 22588, 2091], + "diff-reporter", + [2, 13872, 31843], + [2, 3024, 6754], + [2, 31848, 31850], + [2, 9944, 7227], + [3, 29951, 21], + "tween", + "elpers", + "napa", + "runstorm", + [1, 2343, 31854], + [0, 31909, 31916, 2514, 2537], + [2, 32904, 158], + "nullthrows", + "@tiptap/core", + "metro-r", + [2, 31858, 96], + "metro-", + [2, 31860, 4227], + "s-runtime", + [2, 6971, 31862], + [2, 5237, 31863], + [3, 5079, 13], + "/codegen", + [2, 31865, 31866], + [3, 31867, 14], + "medium-zoom", + "js-polyfills", + [2, 31868, 31870], + "tinydate", + "tweezer.js", + [2, 8603, 1111], + "le-plugin", + [2, 3630, 31875], + [2, 31868, 31876], + "assets-", + [2, 31878, 29179], + [2, 31868, 31879], + [3, 5059, 11], + "olors", + [2, 31881, 31882], + [2, 31868, 31883], + "@jest/c", + "reate-c", + "-key-", + [2, 31887, 3046], + [2, 6990, 31888], + [2, 31886, 31889], + [2, 31885, 31890], + [2, 3912, 5959], + [2, 31868, 31892], + [3, 31867, 16], + "mmunity-cli-plugin", + [2, 31894, 31895], + [2, 31898, 4333], + [3, 24539, 13], + [2, 17304, 31900], + "laywright", + [2, 32412, 15001], + [2, 31908, 7188, 32485], + "creator", + [2, 10735, 5130], + "mobile-", + [2, 31905, 5001], + "ttlcache", + "@tiptap/", + [0, 30868, 1414, 2020, 2105, 2070, 4745], + "cp-file", + [2, 17964, 31913], + [2, 5063, 18324], + [3, 31333, 16, 3], + "keychain", + "yargonaut", + [0, 20454, 36559, 30529, 826, 4874, 30548, 4135, 1177, 29197, 91], + [2, 36270, 31918], + "s-test", + [2, 31924, 31925], + "@entypo-icons/core", + "ocial-buttons", + [2, 4910, 31921], + "evil-icons", + [3, 15277, 15], + "xecutable", + "feather-icons", + [1, 2343, 31933], + "fontisto", + "oslllo-svg-fixer", + "epub2", + "line-icons", + [2, 4182, 31931], + [0, 0, 21592, 31936, 2399], + "svg2ttf", + "svgicons2svgfont", + [0, 12479, 2947, 7193, 26421, 27968, 2100], + "osx", + [1, 2343, 31941], + "ssr-window", + "@pinia/colada", + [0, 0, 31946, 31981, 2399], + "@cmfcmf/docusaurus-search-local", + [3, 3911, 11], + "form-hmr", + [2, 31943, 31944], + [0, 4493, 32977], + [2, 31951, 31960, 31962], + "currency", + "number-", + [2, 31949, 1671], + [3, 27276, 15], + [2, 33571, 89], + [2, 31954, 31957], + [3, 7628, 10], + "hijack", + [2, 4013, 31955], + "heck", + "onclick", + "outside", + "classic-", + [2, 32028, 1745], + "build-app-blueprint", + [2, 31968, 31971], + [2, 812, 12444], + "t-flow", + [2, 17375, 31965], + "hermes-eslint", + [3, 31947, 30], + "array-hyper-unique", + "crlf-normalize", + "ddon-blueprint", + "book", + "books", + "chapter", + "comic", + "epub-maker", + "epub-maker2", + "node-novel", + "novel", + "volume", + [0, 188, 4646, 1542, 32977, 6533, 3212, 5472], + "matchmedia", + [2, 31982, 3766], + [1, 2343, 32268], + "yphenate-style-name", + [2, 6495, 31985], + "tch-", + [2, 31987, 11034], + [2, 18655, 31988], + [3, 31989, 12], + "mediaquery", + [2, 31990, 31991], + "-media-mock", + [2, 3529, 31993], + "@lobechat/", + [3, 6415, 10], + [2, 31996, 3582], + "escaping", + "respond", + "goat", + "matchMedia", + "🐐", + [2, 32004, 32005], + [3, 31263, 13], + "text-engine", + "color-logger", + "ice-cap", + [2, 31995, 18035], + "esdoc-importpath-plugin", + [2, 31995, 1807, 32030], + "ECMAScript6", + [3, 6608, 10], + [2, 32012, 32014], + "2015", + "ECMAScript7", + [2, 32017, 6893], + [3, 32013, 13], + "ECMAScript8", + [2, 32017, 6836], + [2, 3944, 8253], + "k-monitor", + [2, 4117, 32021], + [2, 32020, 32022], + [3, 32023, 15], + "log-monitor", + [2, 32024, 32025], + "proposal", + [3, 19209, 12], + "http-graceful-shutdown", + "client-ipc", + [2, 32032, 32033], + [3, 32010, 19], + "server-ipc", + [2, 31995, 2092, 591], + [2, 31995, 32036], + "model-runtime", + "mdc", + "developer", + "combobox", + "multiselect", + [2, 31995, 3742], + [2, 31995, 594], + [2, 31995, 32044], + "web-crawler", + [2, 32047, 13538], + "json2mq", + [3, 1841, 9], + "-apps", + [2, 21340, 32048], + "-carousel", + [2, 11167, 32050], + "why-did-you-update", + [2, 32057, 32058], + "carousel", + "Image slider", + "orbit", + [3, 1841, 12], + "rts", + [2, 1841, 6324, 4978], + [2, 32074, 32082], + "@tippyjs/react", + "@vxna/mini-html-webpack-template", + "common-dir", + [2, 1861, 3427], + "name-p", + [2, 32065, 84], + [2, 18977, 32066], + "glogg", + [3, 26921, 11], + [2, 32069, 1646], + "jss", + "jss-plugin-camel-case", + [3, 32072, 12], + [3, 32059, 20], + "ompose", + [2, 32073, 32075], + [3, 32072, 11], + "default-", + "default-unit", + [2, 32077, 32079], + [2, 32077, 2202], + "s-gateway", + "isolate", + [2, 32077, 32083], + [2, 32077, 3639], + "listify", + [2, 12171, 2651], + "q-i", + "qss", + "-annotation-resolver", + [2, 3822, 32090], + [3, 32091, 13], + "-handler", + [2, 4904, 32093], + [2, 32092, 32094], + [2, 32047, 6038], + "react-group", + [2, 4287, 1928], + "type-detect", + [2, 32047, 45], + "inter-element", + "@types/buble", + "py-webpack-plugin", + [2, 4860, 32103], + "@types/esc", + "odegen", + [2, 32105, 32106], + "h-sum", + [2, 12395, 32108], + "@types/ke", + "ymirror", + [2, 32110, 32111], + [3, 23829, 17], + [2, 32113, 3119], + [2, 27479, 4408], + [2, 13419, 32115], + [3, 12290, 12], + [2, 32117, 13735], + [3, 8157, 15], + [2, 32119, 5331], + "deabsdeep", + "white-space", + "deepfreeze", + "dog-names", + "amia", + [2, 22060, 32125], + [2, 32047, 32128], + "market-sdk", + "keymirror", + [2, 4293, 6987], + "@lobehub/tts", + "tts", + "@lobehub/ui", + "@neondatabase/serverless", + "@next/third-parties", + "@react-spring/web", + "jest-pre", + [2, 29611, 32139], + "user-require-helper", + "@serwist/next", + " vector graphics", + [2, 24090, 32141], + "tagname", + [2, 24116, 7466, 32165], + "svginjector", + "@t3-oss/env-nextjs", + "@trpc/client", + "@trpc/next", + "@trpc/react-query", + [3, 32029, 17, 5], + "TapEventPlugin", + "300ms", + "http-shutdown", + "http-terminate", + "prometheus", + [2, 33763, 13538], + [2, 30495, 32158], + "dge-config", + [2, 36840, 32160], + "ctions", + [2, 32163, 32168], + [3, 7214, 13], + "@vercel/s", + "icss", + "lement", + [2, 24116, 32179], + "@4tw/cypress-drag-drop", + "peed-insights", + "@xterm/xterm", + [2, 4609, 2759], + "brotli-wasm", + "alert", + [2, 29706, 32174], + "-and-timezones", + "dexie", + "drizzle-orm", + "commoner", + [3, 10755, 11], + "hydrate", + "coverify", + "es3ify", + "infima", + "grunt-jest", + "jasmine-t", + "apreporter", + [2, 32184, 32185], + "drizzle-zod", + "populist", + "drizzle-", + "gpt-tokenizer", + [2, 32192, 32193], + "inferno-hy", + "perscript", + [2, 23910, 13494, 32197], + [2, 9944, 9847], + [2, 9944, 591], + "-to-backend", + "js-sha256", + "vnode", + "createVNode", + [2, 32237, 1098], + [2, 14040, 1276], + [3, 1898, 19], + "lay", + [2, 1962, 32204], + [2, 2783, 3758], + [3, 15568, 16], + [2, 1781, 32212], + "scrolling", + "infinite", + "fixed", + [3, 31752, 17, 3], + "langchain", + "gulp-rtlcss", + [2, 26708, 32182], + "langfuse", + [2, 5223, 32178], + [2, 1861, 32217], + "dark mode", + [2, 32216, 1732], + "lucide-react", + [2, 32223, 32224], + [3, 3120, 12], + "txt", + "react-popper", + "bootswatch", + "docstrap", + "storysource", + [2, 10818, 32228], + "model-bank", + "customize-cra", + [2, 32234, 32235], + "holderjs", + "modern-s", + "creenshot", + "react-prism", + [3, 34791, 12], + "logging-helpers", + "next-mdx-remote", + "nextjs-toploader", + "nuqs", + "officeparser", + [2, 32244, 1098], + [3, 33256, 22], + "github-files-fetcher", + "oidc-provider", + "ollama", + [2, 7719, 1612], + "partial-json", + [2, 3502, 33498], + "@stitches/react", + "animate-sass", + [2, 3562, 32254], + "trolling", + [2, 32256, 32257], + [3, 839, 14], + "gr", + [2, 11932, 8861], + "mocha-r", + "eporter", + [2, 32259, 32260], + [2, 4385, 32261], + "pdf-parse", + "preview jest", + [2, 27010, 32290], + "plaiceholder", + "posthog-js", + [0, 0, 32306, 32313, 2537], + "log-utils", + "pwa-install-handler", + "line by line", + "engine-base", + "engine-handlebars", + [2, 32278, 32279], + "lo", + "repl", + "lo-dash", + "react-con", + "fetti", + [2, 32283, 32285], + [2, 4150, 32282], + "-75lb", + "react-la", + [2, 11072, 2731], + "yout-kit", + [3, 19580, 11], + [2, 32286, 2002], + [2, 5237, 57], + "lws-middleware", + "-tagfilter", + "refactoring", + "printing", + [2, 3715, 32292], + [2, 26973, 32308], + "react-pdf", + "react-rnd", + "react-scan", + [2, 32299, 32304], + [3, 3913, 11], + [3, 12133, 19], + "tagfilter", + "prepare", + "dangerous", + "oso", + "react-wrap-balancer", + [0, 1175, 2323, 2332, 30561, 2367, 2459, 2494, 2504, 2510, 2530, 1894, 4045], + [2, 17355, 13771], + [3, 23279, 13], + [2, 4627, 8840], + [2, 3166, 32309], + "mobile-detect", + "composition", + [0, 30563, 30564, 30565, 30566, 30567, 30568, 5131, 9006], + [2, 32315, 32316], + "resolve-a", + "ccept-language", + "rtl-detect", + "lister", + "parse-entities", + "svix", + "tokenx", + "ts-md5", + "@red", + "grunt-jasmine-node", + "@redis/bloom", + "@redis/", + [2, 32326, 5576], + "unstructured-client", + "@redis/json", + [2, 32326, 7193], + "use-merge-value", + "time-series", + [2, 32326, 32332], + "mobilegrade", + [2, 20223, 16460], + "sniff", + "word-extractor", + [2, 32339, 594], + "zustand-", + [1, 2343, 32427], + "@cfaester/enzyme-adapter-react-18", + "ocly/openapi-core", + [2, 32323, 32342], + [2, 32348, 3005], + "nth-child", + "nth", + "rc-hammerjs", + [3, 30906, 13], + [3, 1750, 11], + [2, 1186, 3939], + [2, 32349, 32350], + "theme-redoc", + [2, 32349, 32352], + [2, 32356, 32366], + [3, 8286, 13], + "@lobehub/i", + "heme-common", + [2, 32355, 32357], + [2, 20201, 594], + "is-alphanumerical", + "api-doc", + [3, 32351, 12], + [2, 32362, 10958], + "is-decimal", + "is-hexadecimal", + "18n-cli", + [2, 32047, 671], + "netlify-plugin-cache", + [2, 32370, 553], + [3, 32127, 16], + [2, 32047, 32373], + "cssinjs", + "seo-cli", + [2, 28427, 32375], + [3, 28091, 16, 8], + "just-curry-it", + "reducers", + [2, 17790, 32377], + "@next/eslint-plugin-next", + [2, 16479, 1414], + [3, 1905, 16], + "icorn-camelcase", + [2, 32381, 32382], + [2, 4321, 9776], + [2, 2130, 32384], + "@peculiar/webcrypto", + [2, 16931, 32388], + "roma-js", + "@wdio/selenium-standalone-service", + "babelrc-rollup", + [2, 32398, 32399], + "insert-line", + [2, 5316, 1464], + [2, 3944, 2700], + "queryselector", + "shadowdom", + "rdme", + "@types/cr", + "ypto-js", + "@types/ip", + "tanstack", + [2, 32403, 32404], + "gulp-str", + "eamify", + "rc-tools", + "@redux", + "-saga/core", + [2, 32406, 32407], + [2, 32417, 32419], + "tappable", + [2, 33060, 1501], + [3, 13875, 15], + "lias", + [2, 32412, 32413], + [2, 3807, 32442], + "effects", + "@types/nu", + "side effects", + "meral", + [2, 15461, 32423], + [2, 32422, 364], + "@actions/", + "idc-provider", + "redux-m", + [2, 32424, 18716], + "@types/pg", + [0, 32428, 32472, 2514, 2537], + [0, 30585], + [2, 32430, 32439], + "@types/r", + "ecmarkup", + [2, 32437, 32438], + "gulp-emu", + [3, 2453, 9], + [2, 32434, 2995], + [2, 2505, 4088], + "@readme", + [3, 23709, 18, 8], + "tl-detect", + [2, 5051, 32441], + "ystemjs", + "ful", + [2, 24167, 32455], + "dbdocs", + "dpdm-fast", + [2, 32189, 32451], + "goober", + "jest-esm-jsx-transform", + "parcel-plugin-css-to-string", + "use-throttled-effect", + "dbml-generator", + "abstract", + "hex", + "wai-aria", + "ice-detect", + [2, 32466, 38], + "drizzle-kit", + [2, 1949, 32459], + "dx", + "is-hidden", + "fake-indexeddb", + [2, 9335, 6424], + "just-diff", + "smart-tv", + "smarttv", + [3, 15570, 11], + [2, 3506, 4581], + [2, 3862, 32492], + "mcp-hello-world", + [2, 12285, 2527], + "remark-mdx", + [0, 188, 11018, 30592], + "simple-routing", + [3, 23352, 11], + "mdx-", + "jsx-a", + [2, 32476, 5714], + [2, 32475, 32477], + [2, 8137, 32478], + [2, 8909, 32479], + [2, 32474, 32480], + "serwist", + "snapshot-", + [2, 32483, 1182], + "-bubble-menu", + "vercel-ai", + "nano-equal", + [2, 1849, 32489], + "-fuzzy", + "azure-openai", + "shouldComponentUpdate", + "file-viewer", + [2, 3862, 15571, 32498], + "visual-model", + "stt", + [1, 2343, 32500], + "quicklook", + "-v2", + [2, 3862, 3730], + [0, 0, 32501, 32517, 2487], + [ + 0, 33043, 442, 34111, 30737, 4874, 7677, 22839, 1177, 1895, 1942, 1982, 2807, 25209, 2990, 20085, 1894, 19713, + 30762, 23535, 4131, 1531, 4507, 91, 4523, 1984 + ], + [2, 31995, 32503, 32515], + "observab", + "image-gallery", + "image-viewer", + [2, 32510, 32530], + [2, 32508, 32509], + "vitepress-", + "plugin-group-icons", + [2, 5119, 32511], + "vg", + "issue-", + [2, 32512, 57], + [2, 21520, 22370], + "ility-otel", + [2, 32518, 32526], + [0, 30769, 8893, 7595, 7517, 6564, 7265, 1209, 3776, 7268, 6081, 4799, 553, 91, 4545, 614, 6731, 6435, 594], + [3, 217, 9], + "mock-stdio", + [3, 3998, 15], + "ebpro", + [2, 32520, 32521], + [2, 9785, 24387], + [3, 23523, 21], + [2, 32524, 3874], + "ndicator", + "progressbar", + "distribution", + "indeterminate", + "-charts", + [2, 3862, 32543], + [1, 2343, 32533], + [0, 32534, 32537, 32542, 2487], + [0, 30787, 28465], + [2, 17092, 32536], + "-path", + [0, 11536, 29317, 30792, 8850, 1397, 1556, 2020, 2070, 30794, 3510, 1689, 29444, 4042, 4174, 4227, 91, 8550, 28865], + [2, 32539, 21172], + [3, 5079, 24], + [2, 11147, 970], + [2, 5557, 970], + [0, 6996, 668, 5362, 28865, 4042, 2924], + "youtube-iframe", + [2, 3115, 19101], + "unified-args", + [2, 32563, 5066], + [1, 2343, 32548], + [0, 0, 32549, 32555, 2523], + [0, 442, 7677, 1177, 1938, 1942, 30828, 1964, 1966, 2832, 1531, 30835, 91, 4523, 1983, 1984], + "ackends", + [2, 32904, 990], + "iframe", + [2, 3993, 6424], + "@cacheable/utils", + [0, 21354, 91, 2844, 7020, 7119, 30841, 20179, 7047], + [1, 2343, 32642], + "@apphosting/build", + "@atomico/rollup-plugin-sizes", + "git-branch-is", + "remark-slug", + "react-spring", + [2, 32565, 10896], + [3, 30798, 17], + [2, 32575, 32576], + [3, 32557, 12], + "-isomorphic", + [2, 23276, 32566], + [2, 25131, 32566], + [2, 32570, 32574], + [3, 32041, 11], + "@bedrock-layout/use-forwarded-ref", + "gmail-send", + [2, 4807, 31528], + "ython-interpreter", + [3, 3895, 11], + "-singleton", + "text-hex", + "ssrf-safe-fetch", + [2, 32589, 32623], + [3, 23054, 11], + "ent-config", + [2, 32580, 32581], + "ntributors", + [2, 24218, 32583], + [3, 9343, 15], + "gap", + [2, 32585, 32586], + [3, 9347, 9], + [3, 30640, 22], + "cense", + [2, 32588, 32590], + [3, 23078, 23], + [2, 32592, 10663], + [3, 23082, 24], + [2, 32594, 7210], + [3, 23085, 14], + "get-nonce", + "le-extension", + [2, 32596, 32598], + [3, 23085, 18], + [2, 32600, 23076], + "rst-", + "heading-", + [2, 32603, 2970], + [2, 32602, 32604], + [2, 32596, 32605], + [3, 23092, 13], + [2, 9398, 590], + [2, 32607, 32608], + "consec", + "utive-blank-lines", + [2, 32610, 32611], + [2, 23099, 32612], + "emphasis-", + "as-heading", + [2, 32614, 32615], + [2, 23099, 32616], + "name-articles", + [2, 2093, 32618], + [2, 23099, 32619], + [3, 32620, 25], + [3, 32612, 12], + "rast-color-function", + "dashes", + [2, 32622, 32624], + [2, 32621, 32625], + "irregular-", + [2, 32627, 7169], + [2, 32621, 32628], + "mixed-case", + [2, 32621, 32630], + "@theuiteam/lib-builder", + "crawler-detection", + [2, 32746, 31528], + "outer-dashes", + [2, 32621, 32635], + [3, 23118, 23], + [2, 32637, 8958], + "punctuation", + [2, 32637, 32639], + "missing-", + [0, 0, 0, 32677, 2487], + [2, 31635, 32673], + "blank-lines", + [2, 32641, 32644], + [2, 23099, 32645], + [3, 32646, 16], + "ulti", + "ple-toplevel-headings", + [2, 32648, 32649], + [2, 32647, 32650], + "dollars", + [2, 5124, 32652], + [2, 23099, 32653], + [2, 16065, 17537], + [2, 23099, 32655], + [3, 32656, 18], + [2, 32657, 591], + "ordered-", + "list-ma", + "rker-value", + [2, 32660, 32661], + [2, 32659, 32662], + [2, 23055, 32663], + [3, 23139, 22], + "-alignment", + [2, 32665, 32666], + [2, 17998, 2585], + "retext-english", + "retext-", + [2, 10832, 2195], + [2, 32670, 32671], + "ai-v6", + [2, 32675, 32676], + [3, 32643, 13], + "sdk-v4", + [0, 3358, 1564, 10057], + [2, 32700, 7174], + [3, 23096, 14], + "nk-title-style", + [2, 32679, 32680], + "maximum", + "-heading", + [2, 32683, 15309], + [2, 32682, 32684], + [2, 23055, 32685], + [3, 32686, 20], + "line-length", + [2, 32687, 32688], + [3, 23113, 30], + "ed-urls", + [2, 32690, 32691], + [3, 23113, 25], + "s-in-section", + [2, 156, 32694], + [2, 32693, 32695], + [3, 32617, 18], + "ty-url", + [2, 32697, 32698], + [3, 31198, 34], + "-paragraph", + [2, 15403, 32701], + [2, 32637, 32702], + [3, 23118, 16], + [2, 32704, 14550], + [2, 170, 23116], + [2, 23099, 32706], + "-like-url", + [2, 11043, 32708], + [2, 23099, 32709], + "ed-fu", + "ll-reference-image", + [2, 32711, 32712], + [2, 14475, 32713], + [2, 23124, 32714], + [3, 32715, 39], + [2, 32716, 163], + [3, 32672, 14], + [2, 32718, 3997], + [2, 31228, 27863, 32721], + "bsorbers", + [2, 32723, 32724], + [3, 32720, 20], + "emitters", + [2, 32722, 32726], + "-shape-circle", + [2, 32728, 32729], + [3, 32725, 35], + "square", + [2, 32731, 2585], + [3, 31244, 19], + "autolinker", + [2, 32734, 32735], + [3, 31244, 14], + "lim", + [2, 31281, 14858], + [2, 31281, 32738], + "roll", + [2, 31281, 32740], + "tilt", + [2, 32742, 32743], + [3, 32739, 22], + "winkle", + [2, 31281, 32745], + "wobble", + "tua-", + [2, 4511, 32078, 4366], + [1, 2343, 32763], + "caseless", + [2, 32752, 2855], + "aws-sign2", + [3, 32674, 18], + "oauth-sign", + [2, 3013, 2660], + "forever-", + [2, 32755, 4575], + "har-validator", + "is-typedarray", + [2, 2666, 1580], + "use-callback-ref", + "taper", + "karma-cli", + [0, 32764, 32771, 32780, 2399], + [ + 0, 8181, 26057, 28329, 28607, 28620, 28631, 28632, 28672, 28673, 26364, 28963, 29273, 28685, 30585, 31857, + 31902, 32411, 33136, 34082, 33056, 33586, 33588, 33590, 33591, 34083, 33592, 33600, 33601, 33604, 33613, 33623, + 10981, 10984, 37051, 34087, 28709, 1556, 16230, 28718, 28761, 28780, 28805, 28883, 28896, 28911, 2161, 36538, + 28964, 3090, 3189, 31530, 28974, 3510, 29049, 15451, 4382, 29050, 4383, 27921, 27438, 29161, 29165, 29219, + 29220, 29235 + ], + "glob-bin", + "use-sidecar", + "JSDA", + "stealthy-require", + [3, 4010, 16], + [2, 32769, 364], + [ + 0, 29267, 29290, 29295, 10614, 34092, 11016, 11018, 31408, 29304, 1177, 2559, 29332, 3980, 4543, 1984, 29887, + 29323, 188, 13151 + ], + [2, 32774, 32779], + "thenable", + [3, 5430, 21], + "useRef", + "createRef", + "merge refs", + "vconsole", + "ummary", + [0, 29345, 29332, 8588, 4383, 12951, 188, 12072, 6284, 91, 10309, 181, 4380, 5130, 29346], + [1, 2343, 32785], + [2, 32783, 32784], + "detect-n", + "ode-es", + [0, 0, 32791, 32799, 2443], + [2, 4807, 1845], + "@react-pdf/renderer", + "code spliting", + "sidecar", + [2, 4625, 8119], + [0, 5087, 1192, 4468, 4474, 4493, 91], + "index.js", + [2, 32028, 33976], + "is-wayland", + "copy-text-to-clipboard", + [2, 32797, 32798], + "mutation", + "-observer", + [ + 0, 5995, 10906, 24299, 29527, 29563, 29565, 29575, 29576, 29658, 29706, 29723, 1623, 6802, 4967, 29731, 29730, + 29842, 29845, 29868, 29963, 30047, 30133, 30136, 30161, 30163, 30487, 91, 30489, 30501, 30523, 30562, 30569, + 30574, 30591, 30593, 30600 + ], + "-tslint", + [2, 1009, 32800], + [3, 1009, 11], + "/analyze-trace", + [2, 32802, 32803], + [2, 1977, 2528], + "micro-", + [2, 32806, 7906], + "svelte-loader", + [1, 2343, 32837], + "down-config", + [3, 13476, 17], + "ntext-async-hooks", + [3, 36559, 16], + "ResizeObserver", + [2, 32817, 11937], + "worktop", + [3, 8809, 20], + [2, 17214, 5477], + "perty-rule-prelude-list", + "path-parse", + "scss-loader", + "-flag", + [2, 6846, 32822], + [2, 15884, 32823], + [3, 1790, 16], + "copy-dir", + [3, 8119, 14], + [3, 32790, 18], + "vue-scroll", + "vue-scrollbar", + "vue-plugin", + "滚动条", + "eartbeat", + "lory.js", + [2, 33112, 33113], + "adjust-sourcemap-loader", + [0, 32838, 32846, 30825, 2487], + [0, 29304, 26699], + [2, 32841, 10238], + [2, 4807, 1955], + [3, 31435, 16], + "cls-hooked", + "myrmidon", + [2, 31436, 2018], + [3, 30380, 15], + [0, 1192, 1177, 4042, 4468, 1894, 91, 5087, 4880, 1895, 1955, 2780, 1011, 1009], + "ncredible", + [2, 32845, 32847], + "ensor", + [2, 4914, 32849], + "secrets", + [2, 16645, 32851], + [3, 25837, 16], + "anjs-rules", + [2, 32853, 32854], + "fatum", + [2, 14560, 6816], + [2, 3335, 32857], + "telegram", + [2, 21386, 32859], + "vesta", + [1, 2343, 32868], + "react-camera-pro", + "documentate", + "idebar", + "umentate", + [2, 25821, 32866], + [0, 0, 32869, 32882, 2523], + [0, 4880, 4883, 89, 3824, 91], + "better-npm-run", + "clamp.js", + [2, 19825, 4627], + [2, 1870, 32872], + "ewma", + [2, 4031, 24388], + "spdy", + "karma-fixture", + [2, 20441, 6543], + "restify-", + "clients", + [2, 32879, 32880], + [0, 89, 28946, 6847, 30858], + "watershed", + "@applitools/utils", + "DTrace", + "karma-opera-launcher", + [1, 2343, 32893], + [3, 18613, 12], + "convict", + [2, 32957, 32963], + "antora-component", + "@dataui/crud", + [0, 32898, 32902, 32915, 2523], + "is-uuid", + "rewrite-imports", + "quit", + "shutdown", + [0, 30939, 30941, 30944], + "terminate", + "kill", + "serviceworker", + [ + 0, 30949, 30951, 30953, 30954, 30961, 30966, 30973, 30976, 30977, 30980, 30984, 30985, 30988, 31003, 31007, + 31024, 31033, 31036, 31053, 31060, 31065, 31067, 31068 + ], + [2, 32904, 11017], + [3, 32884, 12], + "@types/webrtc", + "NoSQL", + "reql", + " language", + [2, 3766, 32908], + "applitools", + "eyes-sdk", + "test automation", + "visual regression", + [2, 32731, 27819], + [0, 26591, 1973, 5472, 13083, 6969, 1429, 1145, 1745, 31077, 31079, 31080, 1776, 1204, 6813], + "accelerate", + "detectrtc", + [2, 32892, 30665], + [2, 32920, 614], + [3, 32918, 13], + [1, 2343, 32935], + [2, 32923, 32931], + "install-p", + "json-copy", + [2, 28093, 32924], + [2, 31281, 32933], + "nano-copy", + "plain-", + [2, 3425, 1496], + [2, 32928, 32929], + "eers-cli", + "prepend-file", + "life", + [2, 32937, 32938], + [0, 0, 30812, 30825, 2523], + [1, 2343, 32964], + [3, 32737, 23], + "tate", + "drag-drop", + "plasmo", + "camera", + "prebuild", + "-install", + [2, 32942, 32943], + "webcam", + "-os", + [2, 642, 32946], + "practice", + [2, 15090, 32948], + "cam", + "Automation", + "pixel", + "blob-to-buffer", + "recognition", + "webRTC", + "autohotkey", + [3, 35870, 14], + "drag drop", + "machine", + "drag & drop", + "learning", + "react-h5-audio-player", + "itro-modules", + [0, 32974, 33037, 33040, 2523], + [2, 32995, 8745], + [3, 16005, 16], + [2, 32966, 4142], + "-twoslash", + [2, 4614, 32968], + [2, 9408, 32969], + [2, 15125, 5711], + "date-time", + "flru", + [ + 0, 31384, 31735, 34024, 31315, 31330, 31358, 34025, 31361, 31362, 30375, 31368, 31378, 31383, 3266, 9011, 4763, + 9355 + ], + [2, 33470, 33475], + [3, 30686, 19], + "pinia", + [2, 15476, 8961], + "wasm-pack", + "@expo/spawn-async", + [2, 32982, 147], + "@parcel/c", + "@parcel/fs", + [2, 32985, 5602], + [3, 5367, 15], + [2, 5368, 7158], + "mnemonic-id", + "node-object-hash", + "@plasmohq/init", + [2, 32991, 32992], + "@plasmohq/", + "parcel-config", + [2, 32994, 23], + [3, 32990, 19], + [3, 10848, 14], + "@plasmo/config", + [2, 32999, 33003], + "js-cleanup", + [3, 32996, 11], + [3, 4058, 16], + [2, 33000, 3874], + [2, 25572, 1155], + "stants", + [2, 33006, 594], + "removal", + "@plasmo/", + [2, 33006, 5130, 33008], + "-shared", + [2, 4807, 32965], + [2, 13843, 19101], + "ixins", + "visionOS", + "tvOS", + "macOS", + [2, 33018, 89], + "3-drag", + [2, 6491, 33016], + "@iconify/", + "cpp", + [2, 4861, 24847], + [2, 33022, 2847], + "static-s", + [2, 21897, 33024], + "sass2less", + "swift", + "player", + "mse", + "commenting", + [2, 14034, 13828], + [3, 19570, 16], + [2, 33030, 2649], + "spdx-", + "eme", + "jsi", + "satisfies", + [2, 33032, 33035], + [0, 8818, 4874, 4880, 4883, 89, 3824, 1984, 31390], + [2, 2369, 2284], + [3, 32978, 18], + [ + 0, 31398, 3287, 4592, 31399, 89, 4963, 181, 4967, 4380, 31400, 31406, 31407, 31408, 6070, 31409, 30210, 31410, + 31422, 31423, 31424, 31431, 31432, 31433, 31454, 31466 + ], + "p-banner", + [2, 33039, 33041], + [2, 33044, 147], + [3, 5517, 19], + [1, 2343, 33049], + [2, 8147, 14773], + "ts-expose-internals", + [2, 13888, 2150], + [0, 0, 0, 33054, 2537], + [2, 1884, 10791], + "buffer-es6", + "process-es6", + "astrojs", + [0, 3563, 1623], + "compliance", + [2, 33060, 33585], + "dset", + "flattie", + "magicast", + [3, 31902, 18], + "zod-to-ts", + "xxhash-wasm", + "yocto-spinner", + "@oslojs/encoding", + [2, 33066, 33067], + "@astrojs/c", + "ompiler", + [2, 34674, 13535], + "zod-to-json-schema", + "http-cache-semantics", + [2, 33072, 33073, 3984], + "@astrojs/m", + "arkdown-", + [2, 34674, 6943, 19687], + [2, 7185, 33076], + "-object-hash", + "MappingURL", + [2, 4225, 33077], + [1, 2343, 33081], + "@types/dlv", + [0, 33089, 33090, 33091, 2537], + "rehype-toc", + "astro-scripts", + [2, 33085, 33086], + [3, 24220, 12], + "titles", + [2, 4807, 9485], + [2, 4807, 33070], + [0, 26675, 26678, 26684, 26690, 26685, 3259], + [0, 5087, 4874, 1596, 1192, 1894, 3951, 3980, 4094, 4468, 4474, 1531, 4521, 91], + [0, 12659, 8124, 1745], + [1, 2343, 33094], + "strata", + [0, 33095, 33102, 33103, 2523], + [0, 9355, 9307], + "nd-cache-dir", + [2, 16785, 33096], + [3, 13364, 12], + [2, 33098, 1095], + "graphlib", + [3, 4069, 16], + [0, 1983, 89, 2220, 3824, 26744, 966, 1030, 972, 968, 30521], + [0, 89, 2220, 31523, 1932, 1745, 25677], + [1, 2343, 33105], + [0, 33106, 33107, 33108, 2523], + [ + 0, 2611, 3478, 1759, 31533, 33507, 3084, 31534, 2226, 31535, 2845, 33062, 31609, 31536, 31750, 31548, 31617, + 31619, 31571, 5328, 31610, 31623, 29421 + ], + [ + 0, 4763, 4493, 1177, 2205, 4042, 1984, 4473, 23203, 91, 53, 4874, 31629, 31631, 31634, 32643, 2069, 10879, 8818, + 32674, 32750, 7677, 31636, 33137, 31639 + ], + [0, 31408, 31645, 29486, 4575, 31646, 31647, 31656, 31657, 31658, 3151, 2041, 91, 31659, 5130], + [1, 2343, 33132], + "fuzzysearch", + "sander", + [3, 29704, 20], + "ntax-descriptor-syntax-production", + "@types/d3-", + [2, 33114, 4552], + [2, 33114, 1473], + "force", + [2, 33114, 33117], + "hierarchy", + [2, 33114, 33119], + [2, 33114, 16662], + [3, 33121, 11], + [2, 33122, 1659], + "@saintno/comfyui-sdk", + "@virtuoso.dev/masonry", + "treemap", + "sunburst", + [2, 13480, 33130], + "diagram", + "jaeger", + [2, 13475, 4715], + [0, 0, 33135, 33217, 2523], + [2, 5088, 33134], + "dfkit", + [0, 107, 972, 5087, 1742, 1192, 3286, 1894, 89, 3824, 3904, 4039, 4468, 91], + [2, 33142, 33147], + [2, 31635, 3965, 553], + [2, 33141, 20760], + [2, 33140, 23], + [3, 34681, 19], + [3, 10210, 16], + [3, 32411, 20], + "testrunner", + "@next/", + "@next/env", + "@rspack/core", + [3, 26697, 11], + [3, 5215, 12], + "piccolore", + "-optimizer", + [2, 11928, 33150], + [2, 33148, 33151], + [2, 4850, 14643], + "css/metrics", + [2, 4202, 33154], + [2, 17189, 33155], + [3, 28436, 14], + [2, 33157, 16358], + [2, 33157, 6805], + [3, 33159, 15], + "rimitives", + [2, 33160, 33161], + "turborepo", + "triples", + [2, 29314, 33164], + [2, 27913, 1237], + [2, 33144, 33166], + [3, 33167, 15], + "nomodule", + [2, 33168, 33169], + [2, 3878, 3007], + [2, 33144, 33171], + "@next/swc", + "@taskr/clear", + "ac-colors", + "@taskr/esnext", + "mphtml-validator", + [2, 9165, 33177], + [2, 10880, 1179], + "i-info", + [2, 4857, 33180], + [3, 11796, 15], + [2, 33182, 10366], + [3, 7808, 17], + "rve-s", + [2, 16826, 9654], + "tatic-core", + [2, 33185, 33187], + [2, 33184, 33188], + "hsv", + "@types/fresh", + "urry", + [2, 7887, 33192], + "th-to-regexp", + [2, 28121, 33194], + "atform", + [2, 28175, 33196], + "@types/send", + "amphtml-validator", + "async-sema", + "lch", + "cli-select", + "color-names", + "client-only", + "cmyk", + "comment-json", + "mix", + "edge-runtime", + [2, 13773, 1194], + "lodash.curry", + "native-url", + "string-hash", + "taskr", + "unistore", + "watchpack", + "harmonies", + [0, 89, 3286, 23803, 3287, 38, 3212, 1973, 5472], + [1, 2343, 33219], + [0, 0, 33220, 33224, 2487], + [ + 0, 603, 8862, 811, 816, 6373, 5535, 30867, 5087, 13204, 31087, 11016, 17494, 11018, 13072, 1503, 1567, 1610, + 1192, 2780, 2832, 2990, 15324, 1894, 4042, 4073, 4076, 4201, 29889, 4383, 4468, 91, 1983, 188, 4639, 4646, 19235 + ], + [3, 18758, 12], + "ogress", + [2, 33221, 33222], + [ + 0, 188, 8588, 31685, 31687, 31700, 7838, 29889, 31702, 1802, 17819, 29953, 31703, 91, 31704, 4453, 5131, 5284, + 4627, 181 + ], + [1, 2343, 33226], + [0, 26338, 0, 33234, 2537], + [2, 27135, 16460], + [2, 33229, 33521], + [3, 30464, 13], + "domparser-rs", + "rtl", + "ltr", + [2, 33461, 33965], + [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 15571, 35060, 158], + [2, 33236, 18200], + "get-port-", + [2, 33238, 33239], + [3, 5366, 9], + "tter-sqlite3", + [1, 2343, 33241], + [0, 33242, 33246, 25117, 2487], + [0, 30784, 20378, 16860, 3530, 3561, 28865, 27921], + "@antfu/ni", + "run series", + "@dotenvx/dotenvx", + [ + 0, 58, 31292, 5180, 30787, 37017, 28465, 8862, 811, 16808, 10895, 24725, 9743, 37012, 28572, 1415, 1457, 1544, + 1573, 1594, 1615, 30023, 1759, 1763, 37014, 668, 1869, 2007, 984, 28575, 31308, 18584, 3090, 3189, 11480, 3266, + 3445, 3493, 3510, 34928, 3527, 3613, 3616, 37015, 28119, 24759, 29444, 4042, 4060, 2278, 21688, 4200, 37013, + 4072, 4955, 27438, 4729 + ], + [2, 4807, 30228], + [1, 2343, 33252], + "LINQ", + "FRP", + [2, 29445, 1732], + [0, 0, 0, 33278, 2537], + [2, 33254, 8253], + "@vitejs/", + [2, 23354, 6708], + [2, 5, 33255], + "side-effects", + [2, 14614, 33257], + [3, 1705, 12], + "ruiser", + [2, 33259, 33260], + [3, 18106, 16], + [2, 33262, 2429], + [2, 1921, 33274], + "tslint-etc", + "no-toplevel-property-access", + [2, 4491, 33266], + "tslint-no-", + "unused-", + [3, 5804, 11], + [2, 33270, 1429], + [2, 33269, 33271], + [2, 33268, 33272], + "wc", + [2, 9352, 364], + "datagrid", + "survey-core", + [0, 3857, 5128, 12295, 12296, 28641, 1616, 5131, 1149, 4160, 28654, 28656, 16722, 31824, 31825, 3348], + [1, 2343, 33280], + [0, 0, 2667, 31019, 34352], + [1, 2343, 33300], + " allocate", + [2, 1398, 33282], + [2, 17681, 1965], + "2fa", + "hotp", + "uninitialized", + "topt", + [2, 33290, 33291], + "google a", + "uthenticator", + [2, 33294, 7120], + "mock-env", + [3, 5165, 11], + "dist-tag", + "one time password", + "prepublish", + [2, 37718, 20105], + "2 factor", + [0, 33301, 33306, 33372, 34352], + [ + 0, 5145, 30551, 30583, 5154, 7709, 28384, 30584, 13437, 30602, 30603, 30609, 30610, 13187, 30814, 12207, 7948, + 30824, 30866, 30887, 30906, 31178, 31179, 31247, 31255, 31263, 32003, 32008, 32010, 32031, 32975, 32034, 32035, + 32502, 32041, 32569, 32042, 32043, 32045, 32053, 32059, 32060, 32096, 32100, 32127, 32131, 32133, 29421, 32134, + 32135, 33128, 33131, 32787, 32136, 33124, 32140, 32146, 958, 32147, 32148, 32149, 29261, 32156, 32157, 32159, + 32161, 33125, 32169, 30778, 1114, 13215, 32171, 35358, 977, 32173, 1673, 1676, 32175, 1687, 32176, 32187, 31930, + 2069, 37853, 2096, 4776, 32190, 2226, 2646, 2681, 23913, 32194, 29762, 2696, 12105, 32198, 32208, 2928, 32213, + 32216, 32220, 3021, 32221, 3096, 32222, 3127, 26568, 32230, 32232, 3266, 3286, 3285, 32239, 32240, 29306, 3415, + 32241, 32242, 32246, 32247, 31407, 32248, 32249, 32250, 32263, 29899, 3513, 3519, 3533, 32266, 3555, 32267, + 20325, 32270, 3765, 3777, 89, 32274, 3824, 11366, 12229, 3837, 32280, 15575, 32295, 3882, 32296, 3885, 32297, + 32298, 32305, 3984, 3988, 3989, 32314, 32317, 4135, 4164, 9348, 32578, 4302, 4341, 32320, 26713, 4376, 32321, + 32322, 11804, 32328, 4566, 32331, 3348, 32337, 4729, 4745, 4763, 9355, 32338 + ], + "@sai", + "lshq/lodash", + [2, 33302, 33303], + [2, 4807, 4588], + [ + 0, 192, 37097, 32344, 32354, 32367, 32369, 32371, 32374, 32379, 32386, 8648, 27424, 21120, 968, 972, 974, 32387, + 32391, 5245, 4864, 32400, 8818, 4870, 5139, 4874, 32409, 32420, 33133, 32426, 4880, 4883, 32429, 5254, 32440, + 11800, 9315, 9241, 29891, 7677, 12384, 1529, 1556, 1610, 1620, 32444, 1759, 1763, 32445, 32446, 32457, 1177, + 32458, 32461, 2151, 2070, 2559, 2675, 28375, 32463, 2990, 1209, 3117, 32469, 3171, 3310, 640, 32470, 3478, 1894, + 3985, 9340, 32471, 3992, 28380, 4131, 32482, 4320, 4494, 4507, 91, 4549, 4555, 1983, 1984 + ], + "captains-log", + "js-f", + "ile-", + [2, 33309, 19101], + [2, 33308, 33310], + [2, 9480, 33311], + "flaverr", + "survey", + "i18n-2", + "include-all", + "surveyjs", + "-as-action", + [2, 32959, 33318], + "survey-library", + "pack-process", + [2, 32959, 33321], + [3, 33322, 12], + [2, 33323, 1552], + [2, 20100, 3031], + "ictionaries", + [2, 27239, 33326], + "parley", + "rttc", + "form-component", + "-generate", + [2, 4104, 33331], + "sails-", + "stringfile", + [2, 33333, 33334], + "skipper", + "-addresses", + [2, 4082, 33337], + [2, 22775, 33338], + "whelk", + "form-rendering", + [2, 33323, 2150], + "@sailshq/", + [2, 33343, 705], + "survey-renderer", + "root-require", + "dynamic-form", + "hook-orm", + [2, 33333, 33348], + [3, 33349, 11], + "sockets", + [2, 33350, 33351], + [2, 24095, 33358], + "sails.io.js", + "-store", + "-file-store", + [2, 1577, 33356], + "-form", + "mvc", + "form-library", + "form-management", + "web-framework", + "sailsjs", + [2, 8631, 33366], + "sails.js", + "naire", + "data-collection", + "data-validation", + "input-validation", + [3, 7842, 12], + "schema-form", + [0, 5130, 31409, 31431, 3287, 32486, 31407, 32490, 32494, 32132, 32495], + [2, 33374, 3552], + [3, 14944, 11], + [1, 2343, 33468], + "truncate-", + [2, 33467, 33631], + "utf8-bytes", + [2, 33376, 33378], + "js-api", + "mktemp", + [2, 30767, 33384], + "filename", + "wasm-nodejs", + [2, 31208, 22074], + [2, 11183, 6882], + [2, 13167, 33388], + "abs", + [2, 33391, 10271], + "parse-srcset", + [3, 13169, 16], + [3, 13405, 16], + [2, 11183, 614], + "ostrophe", + [2, 33392, 33394], + [2, 11183, 158], + [2, 33398, 1020], + [3, 33396, 15], + [2, 11183, 33400], + "steps", + [2, 33402, 2699], + [3, 33387, 17], + [2, 11183, 18346], + [2, 33405, 9997], + [3, 33403, 15], + [2, 13163, 11218], + [3, 32049, 11], + [2, 33407, 13756], + "-sin", + "gle-context", + [2, 33409, 33410], + [2, 2784, 33411], + [3, 31591, 11], + [2, 4961, 4184], + [2, 33413, 33414], + [3, 4927, 10], + [2, 11183, 3811], + [2, 33421, 1799], + "glob-importer", + [2, 33416, 33419], + [3, 33399, 15], + [2, 33421, 10205], + [2, 33421, 10222], + [2, 33425, 184], + [3, 33393, 15], + [2, 33427, 10261], + [3, 11185, 16], + [2, 33429, 18338], + [3, 13162, 15], + [2, 33429, 5449], + [2, 33432, 9939], + [3, 13162, 17], + [2, 33434, 11206], + [3, 33404, 16], + [2, 3115, 11415], + [2, 33439, 33440], + "bare-script", + [2, 1818, 11415], + [3, 27467, 17], + "tions", + [2, 33442, 10148], + [3, 33417, 15], + [2, 13167, 11241], + [2, 33445, 33446], + [3, 33418, 16], + "gmented", + [2, 33442, 33448], + "agination", + [2, 33389, 11245], + [2, 33397, 11211], + [2, 11183, 9044], + [2, 33453, 33457], + [3, 5050, 13], + "food", + "drink", + "helpful", + [3, 14673, 16, 7], + "ourcesoftware", + [2, 8423, 33458], + [2, 25184, 33466], + [2, 41, 3874], + "teaching", + "experi", + [2, 33463, 1744], + [2, 13527, 591], + "local-npm-registry", + [3, 5123, 14], + [0, 33469, 33476, 6151, 2523], + [0, 546, 8605], + [3, 32034, 11], + "ecdh", + "ecdsa", + "solver", + "bplist-creator", + "etch-sse", + [0, 8616, 91], + "seed", + [1, 2343, 33480], + "oxfmt", + [0, 33481, 23733, 33483, 2523], + [0, 29421, 6494, 1525, 2026, 12105, 4548, 4763], + "@bazel/runfiles", + [0, 29681, 29695, 29718, 29719, 31264, 1745, 13083], + [1, 2343, 33485], + [0, 33486, 33487, 33488, 2537], + [0, 7384, 26870], + [ + 0, 4200, 3510, 89, 4207, 4135, 1984, 24324, 3824, 4459, 11143, 16485, 3170, 3527, 27921, 91, 4874, 5254, 37085, + 8778, 11938, 32815, 32818 + ], + [0, 4270, 29043, 1984, 5472, 1973, 4627, 4963, 23246, 89, 188, 3709, 5926], + [3, 21120, 19], + [2, 33489, 3543], + "aggregate-error", + "bunup", + "env-ci", + [2, 2103, 18280], + "git-l", + "og-parser", + [2, 33495, 33496], + "-esm", + [2, 18170, 33498], + "p-each-series", + [1, 2343, 33502], + [0, 33506, 33508, 33509, 2523], + "file-url", + [2, 2847, 4219], + [2, 17050, 33504], + [0, 2018, 32839, 32844], + "p-retry", + [0, 2924, 5087, 4874, 4677], + [0, 6901, 20319, 1973, 5472, 5433, 13657], + [2, 33511, 57], + "markdown ", + "solidjs", + "@fluentui/react-component-event-listener", + [3, 33513, 26], + [2, 33514, 2538], + [3, 6061, 10], + "/event-stack", + [2, 4133, 33517], + [2, 33516, 33518], + [2, 8652, 3858], + "oolbar", + "@artsy/fresnel", + [2, 30415, 594], + "standalone", + [2, 54, 33524], + [2, 33527, 33531], + "@react-s", + "@percy/cli", + "@percy/c", + [2, 33529, 4915], + "tately/overlays", + "anchor-js", + [3, 14132, 14], + [2, 33535, 17966], + [3, 33526, 15], + "ilter-imports", + [2, 33533, 33536], + [2, 33544, 33548], + "d-props", + [2, 2034, 33539], + [2, 1249, 33540], + [2, 30851, 1204], + [2, 1199, 33542], + "@react-t", + "chai-enzyme", + "react-ace", + "react-code", + "ypes/shared", + "sandboxer", + [2, 33547, 33549], + "ource-render", + [2, 3890, 33551], + "react-static", + [2, 33559, 6649], + "-routes", + [2, 33553, 33555], + "niversal-component", + [2, 12273, 33557], + [3, 3911, 17], + "satisfied", + [3, 4134, 12], + [2, 33561, 1623], + [1, 2343, 33569], + "simulant", + "ta-scripts", + [2, 4409, 1231], + "@aws-lite/client", + "@aws-lite/s3", + [0, 0, 33570, 33584, 2537], + [ + 0, 1173, 1175, 1195, 1267, 1272, 1280, 1282, 32870, 1429, 32871, 34009, 1652, 1676, 1705, 1177, 1903, 1958, + 1970, 2054, 2092, 2151, 2629, 2651, 2297, 2878, 2881, 2895, 32877, 26470, 2897, 2900, 2904, 32886, 2906, 2912, + 2915, 2925, 2899, 3363, 3524, 4039, 37320, 12826, 4131, 4535, 37871, 4027, 2924, 4681 + ], + [3, 21564, 23], + [2, 33571, 1219], + [2, 18124, 16284], + [2, 33575, 7625], + [3, 2001, 11], + "bikeshed", + "mock-tmp", + "semicolon", + "tap-arc", + "@casl/dx", + "cloudfunctions", + "apigateway", + "api gateway", + [0, 6398, 20986, 32888, 32054, 31512, 4453, 35062, 6970, 5131], + "drag-handle-vue-3", + [2, 33060, 33587, 4403], + "floating-", + [2, 33060, 33589], + "horizontal-rule", + [2, 33060, 158], + [2, 33060, 26074], + [2, 33060, 33597], + "eraro", + "fast-sa", + "fe-stringify", + [2, 33594, 33595], + [3, 28051, 11], + "gate-executor", + "gubu", + [2, 31908, 1783], + "@tiptap/pm", + "ordu", + "patrun", + [2, 31908, 33607], + "rolling-stats", + "use-plugin", + "starter-kit", + "@seneca/test-plugin", + "lab-", + [3, 29583, 11], + [2, 33610, 2528], + [2, 33609, 33611], + [2, 33621, 33622], + "-entity", + [2, 4136, 33614], + "seneca-e", + "rror-test", + [2, 33616, 33617], + "seneca-", + [2, 33619, 19138], + "@tiptap/s", + "uggestion", + "@tiptap/vue-3", + "micro-service", + [2, 33624, 591], + [3, 14587, 13], + "minimum", + "viable", + "startup", + [1, 2343, 33632], + "orklets", + [0, 33637, 33651, 33665, 2523], + [2, 10196, 21009], + "Sentimental", + [2, 11183, 9352, 3392], + "nlp", + [0, 32905, 32917], + "@farmfe/cli", + [2, 6283, 33647], + [2, 35438, 35525], + "dottie", + [2, 1153, 1430], + [2, 4140, 30807], + "sort-class", + [2, 17693, 33644], + "wkx", + "-testing", + [3, 9786, 10], + [2, 33648, 103], + [2, 33900, 147], + [0, 4880, 4883, 8152, 1009, 1011, 1540, 1177, 1895, 1955, 1959, 32922, 32932, 1894, 4042, 4076, 4474, 4484, 91], + "chai-datetime", + "esdoc", + "-ecmascript-proposal-plugin", + [2, 33653, 33654], + "esdoc-", + "inject-", + [2, 4306, 1932], + [2, 33657, 33658], + [2, 33656, 33659], + [2, 18124, 1932], + [2, 33656, 33661], + "ibm_db", + "js-co", + [0, 32941, 32945, 32950, 89, 12295, 12296, 5131, 32955], + "@webgpu/types", + "mbinatorics", + [2, 33664, 33667], + "mariadb", + [1, 2343, 33693], + "jmp", + "node-hook", + "p-props", + "p-settle", + "pg-hstore", + "fail-on-", + "sav", + "s-store", + "major-bump", + [2, 33676, 33679], + [2, 21386, 33680], + "snowflake-sdk", + [2, 33691, 33692], + "db2", + "snowflake", + "object ", + "relati", + "onal mapper", + [2, 33687, 33688], + [2, 33686, 33689], + "@prisma/m", + "anagement-api-sdk", + [0, 0, 33694, 33695, 2487], + [0, 89, 3857, 21166, 33377], + [ + 0, 3857, 2171, 12295, 12296, 33012, 33013, 33014, 33019, 5130, 89, 33025, 970, 5260, 2062, 33034, 7671, 8632, + 1283, 22743 + ], + [1, 2343, 33698], + "@tinymce/tinymce-react", + [0, 33699, 0, 33715, 2487], + [0, 31680, 28069], + "@ser", + "ialport/binding-mock", + [2, 33700, 33701], + [3, 33702, 19], + "s-cpp", + [2, 33703, 33704], + [3, 33702, 12], + "n1ed", + "byte-length", + [2, 15497, 33708], + [2, 33706, 33709], + [3, 33710, 19], + "cctalk", + [2, 33711, 33712], + [2, 33711, 28979], + [0, 1473, 1623, 57], + "-byte-timeout", + [2, 6941, 33716], + [2, 33711, 33717], + [1, 2343, 33720], + [0, 0, 0, 33752, 34352], + "packet-length", + [2, 33711, 33721], + [2, 33711, 3925], + [3, 33723, 23], + [2, 33724, 1493], + [3, 33723, 21], + [2, 33726, 17402], + "slip-encoder", + [2, 33711, 33728], + [3, 33729, 20], + [2, 10972, 4383], + "@heroicons/react", + "pacepacket", + [2, 33730, 33733], + [2, 33706, 3101], + [2, 33743, 33747], + "ccTalk", + "com port", + "COM", + "data logging", + "hardware", + "modem", + [3, 8292, 9], + "nodebots", + "RFID", + "sensor", + "plus/elements", + "serial port", + "sms gateway", + "sms", + "UART", + [0, 1512, 1623], + [2, 32092, 91], + [2, 33755, 33756], + "react-li", + "b-tools", + "update-check", + "@zeit/schemas", + "is-po", + "rt-reachable", + [2, 33759, 33760], + [2, 33769, 33770], + "@vercel/", + "style-guide", + [2, 33763, 33764], + "@types/ser", + "ve-handler", + [2, 33766, 33767], + [3, 2909, 10], + "serve-directives", + "ts-blank-space", + "vitest-fail-on-console", + [1, 2343, 33776], + "windowed", + "temp-path", + [0, 33778, 33779, 33780, 2487], + "favicon", + [ + 0, 33243, 53, 58, 5889, 92, 33245, 29421, 33305, 1393, 1525, 1595, 1680, 1699, 1687, 2020, 2071, 2151, 31401, + 2674, 2929, 3244, 3310, 3445, 3467, 3561, 3681, 3742, 3930, 30228, 4382, 4473, 4480, 4588, 4763, 33069 + ], + [0, 10879, 4864, 7812, 33247, 4039, 4493, 4507, 91], + [0, 4963, 181, 4380, 31398, 31400], + [1, 2343, 33782], + [0, 0, 0, 33783, 2487], + [0, 89, 188, 23332, 4607, 33275, 33276], + "@extend-chrome/messages", + [2, 33786, 13901], + [3, 33784, 15], + "@types/chrome", + [1, 2343, 33793], + "@types/jsesc", + [2, 33791, 33792], + [3, 32170, 13], + "nspect", + [0, 0, 33805, 33809, 2487], + "chrome-extension", + "webext", + "webextension", + "verless/utils", + [2, 33700, 33797], + [3, 33010, 17], + "z-commitlint", + [2, 5465, 33800], + [3, 33798, 12], + [2, 33802, 1973], + [3, 4156, 10], + [ + 0, 5087, 4874, 1009, 1011, 1177, 1886, 1895, 1938, 1955, 1958, 1966, 1982, 2070, 1192, 1894, 4039, 4042, 4052, + 27720, 4076, 4468, 4474, 4508, 4514, 17223, 91 + ], + " plugins", + [2, 33804, 33806], + "aws lambda", + [0, 33285, 28946, 33286, 33288, 33289, 33292, 33296, 33298, 5165, 33299, 202, 1388, 4967, 5995], + " web services", + [2, 6997, 33810], + ".com", + [2, 33804, 33812], + [1, 2343, 33815], + [0, 0, 0, 33816, 2487], + [ + 0, 33314, 1669, 33317, 33320, 33330, 33341, 33345, 33347, 33353, 33360, 33361, 33364, 33367, 33368, 7021, 33369, + 33370, 1781, 2845, 33371, 33345, 12899, 4967, 5284, 91 + ], + "isoformat", + "cdk/aws-lambda-python-alpha", + [2, 13562, 33818], + [3, 7709, 16], + [2, 33820, 7308], + "eventbridge", + [2, 33820, 33822], + [2, 33820, 13573], + "ns", + [2, 9191, 33825], + [2, 9191, 3763], + [2, 9191, 4799], + [2, 17253, 33832], + "lib-dynamodb", + [2, 13548, 33830], + "-tree-1d", + [1, 2343, 33855], + "htl", + "util-dynamodb", + [2, 13548, 33835], + "@types/d3", + "aws-cdk-lib", + "iot-device-sdk", + [2, 9194, 33839], + "caporal", + "-highlight", + [2, 14558, 33842], + "apache-arrow", + [3, 9167, 11], + [2, 33845, 33839], + "d3-geo-projection", + "@types/aws4", + "esbuild-r", + [2, 33849, 8736], + "jsii", + "jsii-diff", + [2, 17111, 7268], + "jsii-docgen", + [0, 33856, 0, 29047, 2537], + [ + 0, 28872, 13411, 13412, 13388, 1137, 1170, 30051, 1362, 33474, 18220, 2139, 2188, 2070, 22410, 21226, 6698, + 1209, 3074, 3220, 3275, 27534, 2072, 3547, 3919, 4025, 4108, 4135, 4165, 4351, 13400, 4507, 3348, 4707, 4753 + ], + "jsii-pacmak", + [1, 2343, 33859], + [0, 33861, 33862, 33864, 2537], + "obuild", + [0, 30293, 26557], + [0, 4874, 30306, 30305, 30310, 4039, 1531, 91, 1984], + "type-plus", + [0, 30297, 13527, 5592, 5995, 2679, 23932], + "ge-parser", + [1, 2343, 33870], + "flow-re", + "move-types", + [2, 33867, 33868], + [0, 33873, 33874, 33875, 2537], + "isequalwith", + "date-fns-tz", + [ + 0, 2611, 3510, 1689, 15452, 8550, 28862, 33235, 28142, 15261, 23531, 2670, 28282, 12207, 31026, 20745, 28283, + 31737 + ], + [0, 4493, 1984, 16473, 15450, 91, 4874, 19759, 31794, 5517, 28203], + [0, 3724, 25638, 32916, 2703, 5001, 3304, 5472], + [2, 33892, 33895], + "@emnapi/runtime", + "@img", + "/sha", + "rp-libvips-dev", + [2, 33879, 33880], + [2, 33878, 33881], + "-wasm32", + [2, 33882, 33883], + [3, 33882, 19], + "win32-ia32", + [2, 33885, 33886], + [3, 33887, 25], + "x64", + [2, 33888, 33889], + "emnapi", + "string-s", + "-reader", + "exif-reader", + "plit-by", + "dzi", + "thumbnail", + "libvips", + "vips", + "@farmfe/c", + "cargo-cp-artifact", + [2, 14736, 34112], + "skia", + "offscreen", + "compositing", + [1, 2343, 33917], + "vulkan", + "metal", + "flmngr", + [2, 4167, 14994], + "shelljs-", + [2, 33911, 3979], + "travis-", + "changes", + "check-changes", + [2, 33913, 33915], + [0, 33919, 33922, 33923, 2487], + "makefile", + [0, 33567, 33568], + "imgpen", + "unsplash", + [0, 33574, 1610, 1177, 3173, 33577, 3421, 3752, 33579, 4389], + [0, 7200, 13573, 6997, 33804, 6599, 33581, 33582, 7308, 6949, 6808, 33583, 5130], + [1, 2343, 33925], + [0, 33926, 33931, 2514, 2537], + [0, 33666], + "bitly", + "shorten", + "mongoid", + "tinyid", + [0, 1787, 91, 18279], + "kapok-js", + [1, 2343, 33934], + [0, 33939, 33946, 33947, 2399], + "should-", + "should-equal", + [2, 33935, 1671], + "should-type", + [0, 89, 3824, 33697], + "-adaptors", + [2, 33938, 33940], + "should-util", + "@types/listr", + "houldjs", + [2, 1901, 33944], + [0, 3775, 4039, 4487, 4469, 3744, 91, 53, 4874, 4880, 1195, 4883, 5090, 1167], + [0, 4445, 6092, 33707, 89, 6038, 1936, 6105, 7062, 27968, 9381], + [2, 32223, 2636], + "pdf-generation", + "assignments", + "homework", + "html-to-pdf", + "grunt-endline", + "quiet-grunt", + "semver-sort", + [1, 2343, 33957], + [0, 0, 33958, 33960, 2523], + [ + 0, 30703, 442, 9307, 33731, 33732, 29273, 33736, 968, 972, 974, 5364, 7806, 7639, 4874, 4880, 4883, 31397, 4992, + 1413, 1497, 1536, 1639, 1177, 1961, 7585, 2203, 2675, 2832, 2990, 3105, 3127, 3561, 1894, 21024, 89, 33753, + 3824, 5564, 33754, 3885, 4073, 4079, 33762, 4164, 4200, 4382, 4383, 4072, 33771, 4474, 4494, 91, 4523, 29139, + 1983, 26744, 32255, 1984, 33772, 9355 + ], + "Function URL", + [0, 89, 6071, 4607, 11316, 33774, 3392, 32209, 32210, 3912, 176, 10052, 21604], + [1, 2343, 33966], + "plugin-open", + [2, 33911, 33962], + "Durable function", + "-sdk", + [0, 33967, 34002, 34003, 2523], + [0, 10895, 31832, 1084, 1448, 1573, 1676, 37014, 2071, 2151, 2835, 3090, 3510, 3527, 3878, 4042, 4094], + "@secretlint/secretlint-rule-github", + [2, 33970, 3378], + [3, 33968, 28], + [2, 33972, 33973], + [3, 28473, 18], + "ap-runner", + "secretlint", + "@vue/tsconfig", + "extender", + "fs-core", + [2, 33979, 27106], + [3, 18529, 16], + [2, 33979, 202], + [2, 33980, 33982], + "-builtins", + [2, 33984, 33985], + [3, 33981, 21], + "to-fsa", + "@kwsites/file-exists", + "@kwsites/", + [2, 9466, 14834], + [2, 33987, 33988], + [2, 33984, 594], + [3, 33989, 17], + [2, 33991, 27725], + "@sim", + "ple-", + "git/babel-config", + [2, 33994, 33995], + [2, 33993, 33996], + [2, 33979, 24171], + "source ", + [2, 33999, 12619], + [2, 33979, 8745], + [ + 0, 33784, 33785, 8862, 811, 8850, 816, 840, 20978, 33787, 5244, 5245, 4864, 11300, 33789, 4874, 4880, 4883, + 1009, 1011, 1030, 11016, 1457, 668, 33850, 1177, 1959, 11348, 3400, 34971, 89, 3824, 4039, 4057, 15277, 3709, + 4507, 91, 1983, 33790, 1984, 188 + ], + [0, 4080, 11504, 3195, 33794, 7188, 33795, 33796, 1388, 33799], + [1, 2343, 34005], + [0, 34006, 34016, 2514, 2523], + [0, 1653, 33817, 33829], + [2, 29234, 34008, 34010], + "pec-", + "custom-event", + [3, 11133, 16, 9], + "ant-stuff", + [2, 13112, 34011], + [2, 32845, 34012], + "rrect-lockfile", + [2, 33664, 34014], + [ + 0, 1414, 33834, 4494, 1983, 2832, 2899, 1424, 1177, 4042, 2203, 1894, 4473, 33837, 4614, 442, 91, 4874, 2820, + 6503, 33844, 17113, 19181, 33847, 8850, 33853, 17112, 10615, 3112, 1895, 811, 1011, 816, 1009 + ], + [3, 8136, 10], + "nalyzer", + [2, 32412, 34018], + "-navigation", + [1, 2343, 34022], + [0, 34023, 34045, 34046, 2487], + [0, 20584, 2131, 2674, 33876], + [2, 31395, 1542], + [2, 34026, 34042], + [3, 34030, 17], + "is-safe-filename", + [2, 5600, 34029], + "recurse", + [2, 28756, 18346], + "@asciidoctor/core", + [2, 29611, 34035], + "samsam", + [2, 11122, 34033], + "site-publisher", + [3, 11134, 16], + "plugin-n", + "o-prototype-methods", + [2, 34037, 34038], + [2, 34036, 34039], + "@studio/changes", + "ropdown-menu", + "@openspacelabs/react-native-zoomable-view", + "clock", + [0, 23531, 4874, 33901, 2611, 3297, 4449], + [0, 1424, 10798, 33903, 33904, 29727, 15344, 11812, 158, 11806, 33905, 8924, 33907, 33908, 2636, 8221, 9561], + [1, 2343, 34054], + [2, 29611, 34049], + "asciidoc-loader", + "vendor", + "mocks-", + "and-spies", + [2, 34051, 34052], + [0, 34056, 34057, 34058, 4139], + "asciidoc", + [0, 33909], + [0, 4469, 91, 2924, 4677, 89, 3824, 4880, 4883], + [0, 89, 33909, 2090, 1586, 10057, 33920, 158, 6038, 9229, 33921, 6997, 6949, 13531, 20614], + [1, 2343, 34069], + "express-json5", + "-readme", + [2, 8924, 34061], + "-htpasswd", + [2, 4199, 34063], + "fs-ext", + "crypt3", + "pod-install", + [2, 13888, 2036], + [0, 34072, 34073, 34074, 2523], + "pinch-to-zoom", + "pinch", + [0, 37082, 26380, 17214], + [0, 1984, 3541], + [0, 1388, 3541, 4627, 17050, 1973, 5472], + [1, 2343, 34077], + "@polka/url", + [0, 34079, 34080, 34081, 2537], + "totalist", + [0, 1138, 1437, 1457, 2182, 2185, 2226, 2600, 2685, 2991, 3127, 3758, 4135, 13834], + [0, 33943, 8147, 5254, 33768, 1166, 1424, 3421, 29899, 1894, 3706, 28593, 4474, 4481, 91, 1906], + [0, 33948, 200, 33949, 1745, 33950, 33951, 1783, 2636, 3758, 3197, 33952], + [3, 33056, 29], + [2, 33060, 34084], + "node-range", + "bytes-iec", + "nanospinner", + [2, 37050, 6579], + "budget", + [3, 13526, 12], + [2, 34089, 34088], + [1, 2343, 34094], + [2, 959, 34093], + "table-core", + [0, 34095, 34100, 28315, 2523], + [0, 1437, 4747, 28172, 32884, 28236], + "file size", + " size", + [2, 7204, 34097], + "get size", + [0, 4874, 32551], + [1, 2343, 34102], + [0, 34103, 21592, 34106, 2523], + [0, 4135, 32884, 28236, 28200], + "-cognito-identity-js", + [2, 6997, 34104], + [0, 32910, 32912, 32913, 13428, 5472, 6533], + "skapi", + [1, 2343, 34109], + [0, 34110, 34117, 34120, 2537], + [0, 31855, 28236, 28200, 32884], + [2, 20327, 1984], + "-no-globals", + [2, 17375, 34114], + "ormat", + "unloader", + "seperator", + [0, 2065, 34007, 32903, 13426, 3536, 11132], + [2, 34119, 12675], + [3, 36879, 12], + [0, 32910, 32912, 32913, 13428, 5472, 6533, 29724], + "is-fullwidth-code-point", + [1, 2343, 34123], + [0, 34124, 34126, 34129, 2537], + [0, 1525, 940, 999, 32138], + "random-item", + [0, 32889, 33932, 34031, 34032], + [2, 29611, 34128], + "file-publisher", + [0, 29699, 200, 1179, 1745, 29703, 29753], + "publisher", + "folder-size", + [2, 2183, 34131], + [1, 2343, 34135], + "js-extend", + [0, 34138, 0, 34140, 2537], + "math-sum", + [2, 7627, 1413], + [0, 34048], + "tablify", + [0, 29699, 32891, 5457, 34055, 1745, 29703, 29753], + "slow", + [1, 2343, 34144], + "dts-plugin", + [0, 26338, 34145, 34146, 4139], + [ + 0, 5467, 21155, 10614, 5087, 4870, 4880, 5091, 1009, 1011, 1529, 1177, 1895, 1955, 2675, 1192, 34067, 1894, 89, + 3857, 21166, 3980, 91 + ], + [0, 3857, 5128, 12295, 12296, 34070, 34071, 5131, 970, 4627, 6624, 16660, 37460, 4420, 4384], + [1, 2343, 34153], + [2, 5051, 34149], + "cheduler", + "htmlcs", + "standards", + "WCAG", + [0, 34155, 34158, 34159, 2399], + [2, 2287, 33914], + [0, 4419], + "urlify", + [2, 21831, 364], + [0, 32426, 3519], + [0, 25638, 14873, 5472, 17878, 4419], + [1, 2343, 34162], + "stage-js", + [0, 34163, 34164, 2514, 2487], + [0, 31292, 3530, 9354], + [ + 0, 25366, 33243, 33638, 33650, 16804, 33146, 4874, 20374, 29891, 1112, 19839, 33902, 668, 1177, 34113, 2807, + 2990, 3090, 28865, 4042, 9245, 1531, 91, 34115, 29470, 1983, 1984, 2924, 4677, 29161 + ], + [2, 4609, 12607], + [2, 4609, 34168], + [2, 18124, 1781], + "pages", + " output", + [2, 3721, 34169], + " standard", + [2, 4216, 34171], + "standard ", + [2, 34173, 3721], + " for ", + [2, 34175, 4255], + [2, 25264, 34176], + [3, 34177, 11], + [2, 34178, 9338], + "stylish ", + [2, 34180, 16237], + [2, 34180, 4255], + [2, 1983, 6872], + [2, 34183, 22156], + [1, 2343, 34192], + "box2d", + "game", + "physics", + "axios-ntlm", + "xml-crypto", + "2d", + [0, 14631, 0, 34193, 2487], + [0, 29699, 32891, 20204, 1745, 29703, 29753], + "@types/sax", + [1, 2343, 34196], + [0, 34202, 0, 34210, 2399], + [2, 4005, 34198], + "s-cli", + [3, 26390, 16, 13], + "base64id", + [2, 9246, 25513], + [0, 34127], + [2, 34204, 2403], + [3, 5556, 15], + [2, 34206, 34690], + [3, 28724, 15], + [2, 7686, 34209], + "@socket.io/component-emitter", + "minify-templates", + [0, 29699, 32891, 34130, 1586, 1745, 29703, 29753], + [1, 2343, 34212], + [0, 34213, 0, 29047, 2523], + [0, 10744, 1209, 3084, 25886], + [1, 2343, 34215], + [0, 0, 34223, 34248, 2523], + [2, 34217, 158], + [3, 5386, 10], + "faceoff", + [2, 34220, 34221], + [3, 16767, 16], + "erformance-monitor", + [2, 16766, 6812], + [ + 0, 107, 442, 4856, 7677, 1091, 1177, 1895, 1894, 4039, 4060, 4193, 4072, 4481, 4484, 4508, 4514, 4523, 1983, + 34165, 34166, 34183, 34184, 4614, 1984 + ], + "fast-wrap-ansi", + "@rslib/core", + "eventsource", + "oxc", + "sockjs", + [2, 28573, 34230], + "rslib", + [2, 28606, 34232], + "rstest-config", + [2, 34234, 6847], + [3, 10235, 18], + [2, 29314, 3090], + "@pnpm/list", + "@pnpm/workspace.find-packages", + [2, 1463, 20001], + [2, 37509, 34240], + "eeverse", + [2, 34242, 34243], + [3, 4892, 10], + "npkg__lockfile", + "fast-npm-meta", + "@nolyfill/internal", + [2, 34247, 35011], + "@nolyfill/", + [0, 34186, 12075, 5284, 91, 34187, 34188, 16284, 34191, 5131], + [1, 2343, 34250], + [0, 0, 34251, 34252, 2523], + [ + 0, 107, 4874, 1009, 1011, 17494, 1177, 1895, 2025, 2899, 1894, 34197, 4060, 34199, 4193, 4508, 4514, 91, 1983, + 34165, 34166, 34183 + ], + [0, 12075, 34187, 22894, 8691, 16284, 34191, 1424, 16697, 5122, 5131], + [1, 2343, 34255], + "separated", + [0, 34256, 0, 34257, 2537], + [0, 4447], + [0, 4525, 5284, 34227, 33479, 1894, 91], + [1, 2343, 34259], + [0, 0, 0, 34285, 2537], + "fumadb", + "microfiber", + [3, 8277, 10], + "alars", + [2, 34262, 34263], + "load-files", + [2, 5527, 34265], + "compact", + [2, 3715, 34267], + [2, 9470, 34268], + "@anvilco/apollo-server-plugin-introspection-metadata", + "kysely", + "bdd-lazy-var", + "@orpc/zod", + "@orpc/otel", + "neverthrow", + "introspection", + "@c15t/logger", + "-query", + [2, 34276, 34278], + "@orpc/server", + "@orpc/openapi", + "@orpc/contract", + "@c15t/translations", + [2, 13498, 202], + [ + 0, 4796, 26481, 2968, 31176, 6646, 3378, 3420, 9478, 6666, 3552, 4135, 18710, 7671, 33163, 33186, 18280, 9527, + 4749 + ], + "kysely-pglite", + "@c15t/vitest-config", + [2, 34289, 34290], + "@libsql/", + "kysely-libsql", + "string-t", + [2, 34295, 21160], + "o-stream", + [2, 34291, 34293], + "@c15t", + [1, 2343, 34322], + "consent", + "privacy", + "ccpa", + "binary-split", + [2, 7241, 14922], + "lgpd", + "self-host", + "consent-management", + "user-privacy", + [2, 34307, 34308], + "data-pro", + "tection", + "cookie-banner", + [2, 34304, 34311], + "-platform", + [2, 2339, 5365], + "cmp", + [2, 34315, 7179], + "consent-", + [3, 5079, 14], + "imageinfo", + "prettydiff", + "sprity-css", + "/common", + "sprity-lwip", + [0, 0, 34323, 2514, 2537], + [ + 0, 29713, 34235, 635, 34236, 34237, 811, 8850, 816, 23339, 8712, 28206, 34239, 34241, 29308, 1525, 1707, 34244, + 3749, 3527, 4079, 34245, 34246 + ], + "object-stream", + [1, 2343, 34327], + "through2-spy", + [0, 34329, 0, 29047, 2443], + "coordinates", + [ + 0, 13387, 13412, 13388, 20908, 13395, 1170, 1362, 1364, 2026, 29067, 2670, 1209, 3084, 3162, 3237, 3509, 4148, + 4507 + ], + [1, 2343, 34332], + "css-sprite", + [0, 33469, 33476, 6151, 2443], + [1, 2343, 34334], + [0, 34335, 33476, 6151, 2443], + [0, 31874, 546, 8604, 8605], + [1, 2343, 34337], + [0, 34338, 34339, 34340, 2399], + [ + 0, 4763, 16230, 15095, 34260, 34271, 34273, 4341, 34274, 34275, 32176, 34277, 34280, 34281, 34282, 34283, 13471, + 34284, 13495, 13502 + ], + [0, 3244, 32426, 6526, 91, 4874, 34286, 6494, 34287, 12207, 34288, 33237, 34292], + [0, 34297, 34298, 7229, 34299, 34302, 5995, 34303, 34304, 34305, 33055, 34306, 34309, 34310, 34313, 34314], + [1, 2343, 34343], + "asn1", + [0, 34344, 34346, 34347, 2399], + [0, 2105, 3527, 2072], + "bcrypt-pbkdf", + [0, 28177, 4880, 1701, 3442, 21166, 91], + [0, 3857, 12295, 12296, 31937, 6574, 6635, 5128, 31912, 89, 5131, 181, 1017, 45, 13814, 22875, 2414], + [1, 2343, 34349], + [0, 34350, 0, 34351, 4139], + [0, 4597, 3173, 940, 34048], + [0, 29699, 32891, 1563, 1745, 29703, 29753], + 1772409600000, + [1, 2343, 34361], + "integrity", + "subresource integrity", + "sri", + "sri hash", + "sri ", + "sri string", + [2, 34358, 1179], + [0, 0, 34362, 34381, 34352], + [ + 0, 34363, 32558, 48, 53, 5240, 83, 87, 34368, 34369, 5583, 6373, 1178, 1193, 17217, 24621, 29883, 34370, 29775, + 1540, 1759, 1177, 1935, 1938, 27790, 2126, 29945, 35634, 2675, 1192, 11896, 32206, 11348, 11350, 3534, 34376, + 1894, 3720, 3758, 34197, 4042, 34377, 4060, 4073, 4079, 4146, 91 + ], + [2, 34364, 34365, 34367], + [3, 5215, 13], + "ollup-plugin", + "shuruhatik", + [3, 10697, 17, 6], + "@fezvrasta/tsc-silent", + "@khanacademy/flow-to-ts", + [2, 34374, 34375], + "long-", + [2, 4252, 591], + [2, 34371, 34372], + [3, 14697, 22], + "place-variables", + "poster", + [2, 34378, 34379], + [3, 11802, 15], + "low-entry", + "version-guard", + [0, 8190, 8191, 5399, 8192, 34384, 34385], + [3, 12809, 13], + [2, 34382, 7051], + "popper", + [2, 8194, 34386], + " engine", + [0, 0, 7997, 7998, 34352], + [1, 2343, 34390], + [3, 1570, 26], + [0, 0, 34394, 34396, 34352], + "fig-spec", + [2, 34389, 34391], + "dotgitignore", + [0, 10615, 6503, 4874, 1387, 1429, 2899, 3363, 4042, 4426, 91], + "std-mocks", + [ + 0, 34397, 2238, 34398, 16629, 7521, 34399, 29804, 31687, 1993, 16284, 9006, 34400, 34401, 8424, 34402, 6829, + 26514, 34403, 34404, 34406 + ], + "anime", + "anime.js", + "timeline", + "easings", + "cubic-bezier", + "splitText", + "WAAPI", + "Canvas", + "ban-sensitive-files", + "WebGL", + "deps-ok", + "dont-crack", + "git-issues", + "pre-git", + "simple-co", + "mmit-message", + [2, 34411, 34412], + [0, 9116, 9122, 9131, 34352], + [1, 2343, 34416], + [0, 7967, 7938, 7939, 34352], + [1, 2343, 34418], + [0, 0, 0, 10570, 34352], + [0, 0, 12106, 12107, 34352], + [1, 2343, 34422], + "modern-syslog", + [0, 0, 11488, 34424, 34352], + "winser", + [0, 7789, 34425], + "decrypt", + "etsy", + "metric", + [0, 34430, 34436, 34440, 34352], + "aggregation", + [0, 34431, 34432, 34433, 34434, 34435], + "ev-emitter", + "fizzy-ui-utils", + "get-size", + "imagesloaded", + "unidragger", + [0, 1462, 1177, 34437, 34439, 2907, 4320, 4323, 4072], + [2, 1949, 34438], + "etafizzy", + "jquery-bridget", + [0, 4453, 6398, 34441, 31512, 32054, 35060, 36197, 1388], + "flick", + [0, 17201, 17202, 17203, 34352], + [3, 11146, 12], + [1, 2343, 34445], + [0, 0, 34446, 34448, 34352], + [0, 1429, 1700, 2323, 2367, 22122, 2409, 2447, 2494, 2530, 34447, 2899], + [2, 22465, 35458], + [0, 6901, 27679, 16626, 3220, 3222, 1666], + [0, 0, 0, 18014, 34352], + [1, 2343, 34451], + [0, 0, 0, 34452, 34352], + [0, 17199, 16892, 2869, 3166, 34453, 11326, 207, 20531, 57], + "lex", + [1, 5293, 34455], + [0, 8391, 34352], + [1, 2343, 34457], + [0, 34458, 0, 2514, 34352], + [0, 1395], + [0, 20095, 20097, 2514, 34352], + [1, 2343, 34461], + [0, 0, 34462, 34463, 34352], + [0, 2080, 4389], + [0, 18012, 25866, 18108, 34464, 30091], + "maths", + [3, 10821, 18], + "11y", + [2, 34465, 34466], + "pannellum", + [1, 2343, 34470], + [0, 0, 34477, 34483, 34352], + [3, 32229, 23], + "hots", + [2, 34471, 34472], + "-puppeteer", + [2, 34473, 34474], + [2, 10818, 31765], + [0, 2899, 2025, 16189, 34478, 34482, 3469, 1149], + [2, 34481, 2844], + "orchbox", + [2, 22060, 34479], + "persist-", + "jugglingdb", + [0, 11415, 3469, 34482, 16189], + [2, 4270, 676], + "patternlab", + "-pat", + [ + 0, 53, 61, 83, 87, 90, 92, 442, 10615, 29767, 6061, 16607, 6063, 6065, 16608, 16612, 29769, 1193, 20517, 29775, + 1503, 1593, 1610, 1177, 15510, 1942, 2026, 2323, 2338, 2544, 2765, 24652, 29778, 1192, 2780, 1776, 29779, 2990, + 9750, 5103, 29780, 29783, 3758, 3957, 4131, 4523, 1983, 29770, 27900 + ], + [1, 2343, 34495], + "tern-library", + [2, 34486, 34489], + [2, 21043, 34490], + "django-", + [2, 34492, 5354], + "jinja2", + [0, 0, 0, 34496, 34352], + [0, 34497, 11328], + "panorama", + [0, 26328, 26329, 26330, 34352], + [1, 2343, 34501], + "findit2", + [0, 34502, 0, 2514, 34352], + [0, 3760, 13126, 4747, 4709, 3259, 4545, 1481, 16734, 1512, 4720], + [1, 2343, 34504], + [0, 7936, 7938, 7939, 34352], + [0, 0, 0, 23762, 34352], + [1, 2343, 34507], + [0, 34509, 34512, 34518, 34352], + "funsert", + [0, 3744, 34511], + "into-stream", + "rip-out", + [ + 0, 48, 53, 78, 87, 90, 94, 1148, 1596, 1843, 1845, 1177, 34514, 17585, 1951, 1959, 2832, 2899, 3421, 89, 3824, + 32510, 34517 + ], + "Assert", + [2, 34515, 34516], + [3, 1886, 16], + "daddy-react", + "setup-env", + [0, 8221, 3857, 21610, 34519, 11512, 89], + "compatiblity", + "compatibl", + "ity", + [0, 0, 0, 23771, 34352], + "-metadata", + [2, 26612, 34523], + [0, 11976, 4874, 7677, 12690, 3377, 3446, 7461, 9245, 91, 1984], + [1, 2343, 34529], + "livestream", + [2, 34527, 3642], + [0, 0, 34530, 2514, 34352], + [ + 0, 53, 87, 811, 13866, 816, 1198, 1290, 1389, 2766, 2297, 2871, 2881, 2886, 2898, 6387, 2923, 3758, 4042, 4045, + 34531, 20981, 34533, 20983, 4073, 4650 + ], + [2, 34532, 671], + [3, 15277, 16], + [2, 15476, 34534], + "ass", + [1, 2343, 34536], + [0, 0, 34538, 2514, 34352], + "gulp-rimraf", + [0, 4039, 3188, 34539, 34543], + "testit", + "string.js", + "stringjs", + "S", + "gethub", + [1, 2343, 34545], + [0, 0, 34546, 34548, 34352], + [0, 48, 53, 87, 1178, 1261, 1177, 1881, 1895, 1938, 1955, 1192, 1894], + "codsen-utils", + [ + 0, 6270, 4202, 1413, 34549, 57, 34550, 17180, 14638, 12786, 30946, 2382, 2098, 2090, 7017, 6435, 6270, 15253, + 3721 + ], + "bits", + "iec", + "ranges-apply", + 0, + "ranges-push", + "string-le", + "ft-right", + [2, 34554, 34555], + 0, + "onkey-traverse", + [2, 19434, 34558], + "ranges-invert", + 0, + "jsp", + "mixed", + "xhtml", + 0, + 0, + 0, + 0, + [2, 2183, 7230], + 0, + 0, + 0, + 0, + 0, + "-html4", + [2, 26854, 34575], + [3, 34576, 19], + [2, 34577, 27769], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "payment processing", + "credit cards", + 0, + 0, + 0, + 0, + [2, 2168, 3081], + "sdk-", + [2, 34608, 1102], + [2, 26424, 34609], + "fly-register", + [2, 202, 34611], + "strong-agent", + 0, + "strong-arc", + "strong-build", + 0, + 0, + "strong-deploy", + "strong-m", + "esh-models", + [2, 34620, 34621], + "strong-re", + "gistry", + [2, 34623, 34624], + "strong-start", + "strong-s", + "upervisor", + [2, 34627, 34628], + 0, + "core-util-is", + "strong-de", + "bugger", + [2, 34632, 34633], + "wagger-ui", + [2, 34627, 34635], + [3, 4369, 10], + "-validate", + [2, 22188, 34638], + 0, + 0, + "LoopBack", + "Platform", + "alerts", + 0, + 0, + "event loop", + 0, + 0, + "heroku", + "nodeops", + "npmrc", + "openshift", + "slc", + "est functions", + [2, 34141, 34655], + "strong-cli", + "strong-cl", + "uster-control", + [2, 34658, 34659], + "strongops", + "upstart", + 0, + 0, + 0, + 0, + [2, 27954, 1699], + [2, 27954, 2070], + [2, 27954, 3144], + "@zip.js/zip.js", + [2, 3503, 4549], + 0, + "@astrojs/check", + "@astrojs/", + "starlight", + [2, 34674, 34675], + [2, 12310, 1430], + [3, 811, 8], + [2, 34678, 1388], + "@shoelace-style/shoelace", + [2, 13283, 8891], + 0, + "astro", + "hanbi", + "escape-at", + [2, 2827, 34685], + "jsdoc-ts", + [2, 2701, 1932], + [2, 34687, 34688], + "lit", + 0, + "dictionary", + [2, 19319, 34692], + "Android", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 19801, 2741], + "css-t", + "o-react-native", + [2, 34716, 34717], + 0, + [2, 11832, 14438], + [2, 5129, 10699], + [2, 4881, 34721], + "rame", + [2, 34723, 10699], + [2, 11364, 34724], + "-plugin-rtl", + [2, 7917, 34726], + 0, + 0, + "ts-toolbelt", + 0, + 0, + 0, + 0, + 0, + 0, + "bunchee", + "stylis-", + 0, + "rule-sheet", + [2, 34738, 34740], + 0, + "zeit", + 0, + 0, + 0, + 0, + 0, + "hack", + 0, + 0, + 0, + 0, + 0, + "globjoin", + "-tag-names", + [2, 18110, 34756], + "-nested-selector", + [2, 5250, 34758], + [2, 30273, 34759], + 0, + "svg-tags", + 0, + "github-info", + [2, 6018, 34764], + "@styl", + "elint/prettier-config", + [2, 34766, 34767], + [3, 34768, 11], + [2, 34769, 19692], + [3, 4852, 9], + "lanced-match", + [2, 34771, 34772], + [3, 25558, 14], + [2, 34774, 5260], + [2, 4865, 4565], + "murmurhash", + [2, 8802, 34777], + [3, 13059, 16], + [2, 34779, 2706], + 0, + 0, + "@types/svg", + "-tags", + [2, 34783, 34784], + "ylelint", + [2, 17371, 34786], + 0, + 0, + "set-stylelint", + [2, 32137, 34790], + [3, 3676, 10], + [2, 34792, 367], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [3, 4323, 16], + 0, + 0, + 0, + 0, + [2, 1280, 8554], + 0, + 0, + "css-values", + "shortcss", + 0, + "dela", + "ration", + 0, + 0, + "-strict-value", + [2, 34813, 34816], + [2, 34812, 34817], + "keyword", + "z-index", + 0, + 0, + 0, + 0, + "orting", + [2, 3677, 34825], + 0, + "udochenkov", + [2, 25790, 34828], + 0, + "ed-syntax", + [2, 30481, 34831], + [3, 24627, 16], + "hudochenkov", + [2, 34833, 34834], + 0, + 0, + 0, + 0, + 0, + [3, 30356, 14], + [2, 34841, 27739], + 0, + "github-c", + "s-list", + [2, 17551, 34845], + [2, 34844, 34846], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [3, 1369, 11], + [2, 34859, 30480], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "jar", + "cookiejar", + 0, + [2, 33935, 27], + 0, + "tinyify", + 0, + "frisbee", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "promised", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "capability", + "16m", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "periscopic", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "@types/sade", + [3, 27700, 21], + [3, 27700, 22], + [2, 34941, 20500], + [3, 9566, 10], + [2, 34943, 2847], + [2, 4353, 34944], + 0, + 0, + 0, + 0, + 0, + "@kiwi/eslint-config", + "@kiwi/", + [2, 34952, 7628], + 0, + "@types/pug", + 0, + "easy-import", + [2, 3562, 34957], + 0, + 0, + 0, + 0, + 0, + "@res", + "vg/resvg-js", + [2, 34964, 34965], + "prettysize", + 0, + [3, 30071, 12], + "hromium", + [2, 34969, 34970], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [3, 4362, 11], + 0, + 0, + 0, + "lease-notes", + [2, 15842, 34988], + 0, + "precache", + 0, + 0, + 0, + 0, + 0, + "tape-promise", + 0, + "autogen", + 0, + 0, + 0, + 0, + "multil", + "ang-", + [2, 2055, 4298], + [2, 35005, 35006], + [2, 35004, 35007], + 0, + 0, + "promise.any", + 0, + [2, 29351, 7625], + 0, + "readmeio", + 0, + 0, + 0, + 0, + 0, + [2, 4364, 12659], + [3, 4367, 9], + "emplates", + [2, 35022, 35023], + 0, + "swagger UI", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "s-readme", + [2, 9828, 35034], + [2, 11941, 35035], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "nodelint", + "still", + [3, 29280, 15], + 0, + 0, + "travis-cov", + 0, + "jinja", + 0, + 0, + 0, + 0, + "swipe", + "framework7", + "gallery", + 0, + "slideshow", + 0, + 0, + 0, + 0, + [2, 14507, 3048], + [2, 2655, 35067], + 0, + 0, + "sync-rpc", + [2, 21658, 705], + 0, + "flowgen2", + 0, + 0, + 0, + 0, + 0, + " information", + [2, 623, 35080], + "sysinfo", + 0, + "freebsd", + "openbsd", + "netbsd", + "cpu", + "cpuload", + "physical cores", + 0, + 0, + "logical cores", + "cores", + 0, + "socket type", + "fsstats", + "diskio", + " devices", + [2, 1359, 35098], + "netstats", + [2, 6072, 591], + [2, 11996, 35101], + "network ", + "connections", + [2, 35103, 35104], + "network stats", + "iface", + "printer", + "processes", + "users", + "internet", + "battery", + 0, + 0, + "docker stats", + "docker ", + [2, 35116, 35109], + 0, + "graphic card", + "graphic c", + "ontroller", + [2, 35120, 35121], + 0, + 0, + "disk layout", + "audio", + 0, + "bluetooth", + "wifi", + 0, + "wifinetworks", + 0, + "virtual box", + "virtualbox", + "BIOS", + "chassis", + 0, + 0, + 0, + 0, + "@jsenv/file-size-impact", + "-style-", + [2, 21605, 3733], + [2, 35142, 35143], + [2, 13565, 35144], + "symbol-es6", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "hase", + "draht", + "limes", + "lusca", + "partof", + "timer2", + 0, + "uuidv4", + "crypto2", + "nocache", + "datasette", + 0, + "json-lines", + 0, + "processenv", + "stethoskop", + 0, + "flaschenpost", + "-events", + [2, 8891, 35172], + 0, + "nodeenv", + "roboter", + 0, + "assertthat", + [2, 35166, 4219], + 0, + "cqs", + "cqrs", + 0, + 0, + 0, + 0, + 0, + 0, + "className", + 0, + "classList", + 0, + "override", + 0, + 0, + 0, + 0, + "dlv", + 0, + 0, + 0, + 0, + 0, + 0, + "@tapjs/after", + [2, 35205, 27554], + "@tapjs/a", + "sserts", + [2, 35207, 35208], + "@tapjs/", + 0, + "@tapjs/before", + [2, 35212, 27554], + "@tapjs/chdir", + 0, + "@tapjs/core", + [2, 35210, 7131], + "@tapjs/fi", + "xture", + [2, 35218, 35219], + [2, 35210, 9261], + "@tapjs/mock", + "node-ser", + "ialize", + [2, 35223, 35224], + [2, 35210, 35225], + "@tapjs/run", + [2, 35210, 8745], + 0, + "@tapjs/spawn", + 0, + "@tapjs/stdin", + "@tapjs/test", + "@tapjs/t", + [2, 35234, 2528], + [2, 35210, 6812], + [2, 4026, 1204], + 0, + "tapjs", + "tapjs plugin", + 0, + 0, + 0, + 0, + "tap-out", + 0, + "tapes", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "resumer", + [2, 23236, 35259], + "@ljharb/t", + "hrough", + [2, 35261, 35262], + [2, 5613, 7067], + "dotignore", + [2, 2565, 15126], + 0, + "ecstatic", + [3, 3404, 9], + "osix-or-windows", + [2, 35269, 35270], + 0, + "harness", + 0, + 0, + 0, + 0, + [2, 9497, 29051], + "chownr", + "yallist", + 0, + "chmodr", + 0, + "-to-array", + [2, 2018, 35284], + 0, + 0, + 0, + 0, + 0, + "brittle", + 0, + 0, + 0, + 0, + 0, + "b4a", + "fast-fifo", + "streamx", + 0, + 0, + 0, + 0, + 0, + 0, + [2, 6346, 6770], + "DDD", + [2, 6346, 8726], + 0, + "front end", + 0, + "back end", + 0, + 0, + 0, + 0, + "cz-format-extension", + 0, + 0, + 0, + 0, + 0, + 0, + "telegram-api", + "telegram-", + "client-api", + [2, 35325, 35326], + "tdlib", + "tglib", + [3, 3299, 10], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "tempdir", + "tmpfile", + 0, + 0, + 0, + 0, + "unique-s", + [2, 35348, 8961], + 0, + 0, + 0, + 0, + 0, + 0, + "@cronvel/get-pixels", + 0, + "chroma-js", + "lazyness", + 0, + 0, + "gen-events", + [2, 3286, 35362], + "seventh", + "string-kit", + 0, + "tree-kit", + 0, + "256 colors", + 0, + "true color", + 0, + "input field", + "gpm", + "screenbuffer", + "textbuffer", + "32-bit", + 0, + 0, + 0, + 0, + "charm", + "visualwidth", + 0, + "80s", + "ibm", + 0, + 0, + 0, + 0, + [3, 5012, 18], + [2, 35391, 4226], + 0, + "@ls-lint/ls-lint", + "astring", + 0, + 0, + 0, + 0, + 0, + 0, + "glify-js", + [2, 7817, 35402], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "multiline-ts", + "spawn-p", + [2, 35418, 4357], + 0, + 0, + "only-allow", + "sinon-", + "assert-stub", + [2, 35423, 35424], + [2, 35423, 2299], + 0, + "unlinted", + 0, + 0, + 0, + 0, + 0, + "@deve", + "/bin-v8-flags-filter", + [2, 674, 35435], + [2, 35434, 35436], + [3, 35437, 12], + [2, 35438, 29084], + "bowser", + "chrome-", + [2, 20844, 8626], + [2, 35441, 35442], + "device-specs", + "elegant-s", + [2, 35445, 10252], + 0, + 0, + 0, + "get-os-info", + 0, + 0, + "import-lazy", + 0, + "is-podman", + "-async-hook", + [2, 3077, 35456], + "-commonjs", + [2, 17102, 35458], + [2, 17003, 35459], + [2, 14709, 35460], + "os-family", + "pinkie", + [3, 7872, 10], + [2, 35464, 2013], + [2, 2093, 10903], + [2, 15034, 35466], + 0, + "replicator", + 0, + "-tools", + [2, 20008, 35471], + [2, 4415, 35472], + "testcafe-", + "hammerhead", + [2, 35474, 35475], + 0, + "legacy-api", + [2, 35474, 35478], + [3, 22279, 11], + [2, 35480, 1803], + [2, 35474, 35481], + [3, 35482, 18], + [2, 35483, 3392], + [2, 35483, 6907], + [2, 35483, 4386], + [2, 35483, 28592], + 0, + 0, + 0, + 0, + "testcafe-s", + [2, 11068, 1179], + [2, 35492, 35493], + [2, 7051, 4007], + [2, 17475, 35495], + "unquote", + "url-to-o", + "ptions", + [2, 35498, 35499], + 0, + "@ffprobe-installer/ffprobe", + "@types/ca", + "llsite", + [2, 35503, 35504], + [3, 5245, 9], + "@types/dedent", + [3, 5546, 10], + "ragent", + [2, 35508, 35509], + "connector", + [2, 26353, 35511], + "caller", + "dom-walk", + [3, 25792, 16], + "mmerhead", + [2, 35515, 35516], + "express-ntlm", + "gulp-clone", + 0, + "gulp-ll-next", + [3, 27610, 11], + [2, 35522, 2869], + "qunit-harness", + [2, 2337, 35524], + 0, + "gulp-step", + "-spe", + "c-with-retries", + [2, 35528, 35529], + [2, 32261, 35530], + "sl-self-signed-certificate", + [2, 8423, 35532], + [3, 35473, 17], + "-browserstack", + [2, 9962, 35535], + [2, 35534, 35536], + 0, + "automated", + "QA", + 0, + 0, + 0, + 0, + "@types/doc", + "kerode", + [2, 35545, 35546], + "docker-", + [2, 35548, 2940], + [2, 3583, 33893], + "ssh-", + 0, + "port-forward", + [2, 20844, 35553], + [2, 35551, 35554], + 0, + [3, 23843, 13], + [2, 35557, 3015], + [3, 28203, 13], + "ties-reader", + [2, 35559, 35560], + [3, 7752, 11], + [2, 35562, 2150], + 0, + 0, + 0, + 0, + 0, + "object-es5", + [2, 26988, 35569], + 0, + "limate-test-reporter", + [2, 14354, 35572], + "conf-env", + [2, 1611, 35574], + "headerify", + "is-number", + 0, + "teenytest", + [2, 35579, 4007], + 0, + "test double", + 0, + 0, + 0, + 0, + 0, + "fireworm", + "printf", + "_string", + [2, 369, 35590], + 0, + [2, 1362, 23842], + "hallow-", + [2, 35594, 1693], + [2, 21479, 35595], + 0, + "saucie", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "dpdm", + "dcs", + [2, 16693, 35610], + 0, + 0, + 0, + 0, + 0, + "three.js", + "reality", + [2, 9352, 35618], + "augmented-reality", + "webgl", + "webgl2", + 0, + 0, + "webaudio", + 0, + 0, + "webgpu", + "webxr", + 0, + 0, + 0, + 0, + [2, 2182, 20], + "node-st", + "dlib-browser", + [2, 35635, 35636], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "hundreds", + "polendina", + 0, + 0, + "stream-spigot", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "unexpand", + "homedir", + 0, + "tilde", + 0, + 0, + 0, + 0, + "number-is-nan", + 0, + "profile", + 0, + 0, + 0, + 0, + "bee-affix", + "bee-a", + "bee-alert", + "bee-anchor", + 0, + 0, + 0, + "bee-animate", + [2, 35683, 9820], + "bee-", + 0, + 0, + "bee-backtop", + 0, + "dge", + "bee-badge", + "bee-b", + [2, 35698, 9837], + "bee-button", + [2, 35700, 9847], + "bee-calendar", + 0, + 0, + "bee-carousel", + "bee-cascader", + "bee-c", + "bee-checkbox", + [2, 35707, 142], + "bee-collapse", + "bee-col", + "orpicker", + [2, 35711, 35712], + "bee-co", + 0, + "mplex-grid", + [2, 35714, 35716], + [2, 35691, 3812], + 0, + "bee-dnd", + "bee-drawer", + 0, + "bee-dropdown", + "bee-form", + 0, + "-control", + [2, 35724, 35726], + "bee-form-", + [2, 35728, 7227], + "bee-icon", + "bee-i", + "nput-group", + [2, 35731, 35732], + 0, + "-addon", + [2, 35733, 35735], + "bee-input-", + [2, 35737, 6988], + "bee-label", + 0, + "bee-layout", + 0, + "bee-loading", + 0, + "-state", + [2, 35743, 35745], + 0, + "bee-locale", + 0, + "bee-menus", + 0, + "bee-message", + 0, + "bee-modal", + 0, + "bee-navbar", + "bee-n", + 0, + 0, + "otification", + [2, 35757, 35760], + "bee-overlay", + "page-layout", + [2, 35691, 35763], + "bee-pag", + "ination", + [2, 35765, 35766], + 0, + "bee-panel", + "bee-p", + "opconfirm", + [2, 35770, 35771], + 0, + "bee-popover", + "rogress-bar", + [2, 35770, 35775], + 0, + "radio", + "bee-radio", + 0, + "bee-rate", + "search-panel", + [2, 35691, 35782], + 0, + "bee-select", + 0, + "bee-slider", + 0, + "bee-step", + 0, + "bee-svgicon", + "bee-switch", + "bee-table", + 0, + "bee-tabs", + 0, + "bee-tag", + 0, + "bee-tile", + 0, + 0, + "bee-timeline", + "bee-time", + [2, 35803, 3811], + "bee-tooltip", + "bee-transfer", + "bee-trans", + [2, 35807, 9943], + 0, + "bee-tree", + [2, 35810, 11245], + "bee-upload", + 0, + [2, 2359, 1623], + "-wrap", + [2, 2376, 35815], + "inline-urls", + [2, 21897, 35817], + [2, 4437, 1732], + 0, + "tinper", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "tinylibs", + 0, + 0, + 0, + 0, + "@deno/shim-deno-test", + 0, + [3, 4443, 9], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + " threads", + [2, 6812, 35848], + 0, + "thread pool", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "pushalert", + " toast", + [2, 3857, 35866], + "toastify", + [2, 3862, 35868], + [2, 3862, 9044], + "Typescript", + 0, + 0, + 0, + 0, + "emble-js", + [2, 31072, 35876], + "processmd", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [3, 5152, 10], + "RFC6265", + "RFC2965", + 0, + 0, + 0, + 0, + 0, + "tinytim", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 7231, 7316], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "html-select", + 0, + 0, + "html-tokenize", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "aggregate", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "bs-logger", + "make-error", + 0, + [2, 6308, 3065], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 13664, 6893], + 0, + [3, 5480, 12], + "oader", + [2, 35970, 35971], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "migration", + "migrations", + "cli-tool", + 0, + 0, + 0, + 0, + "@ts-morph/common", + "block-writer", + [2, 10988, 35988], + 0, + 0, + "static ", + [2, 35992, 19748], + "refactor", + [2, 6721, 35994], + 0, + 0, + 0, + 0, + [2, 20223, 6859], + [2, 20223, 1276], + [2, 12448, 16443], + "@csp", + "otcode/source-map-support", + [2, 36003, 36004], + 0, + "dprint", + "@swc/wasm", + "ntypescript", + "util.", + [2, 36010, 19138], + 0, + 0, + 0, + 0, + 0, + [2, 20442, 7163], + "omit-deep", + 0, + "power-assign", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "bre", + "rete", + 0, + "rule engine", + "rules engine", + " rule engine", + [2, 5284, 36038], + "js rule engine", + [2, 6591, 6770], + 0, + 0, + 0, + 0, + 0, + [2, 18284, 4295], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "typedefs", + "typedef", + 0, + "initions", + [2, 36056, 36058], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "polite-json", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 27572, 4014], + 0, + "codelyzer", + [3, 4490, 10], + "siste", + "nt-codestyle", + [2, 36092, 36093], + [2, 36091, 36094], + 0, + "tslint-divid", + [2, 4491, 2700], + [2, 13530, 1334], + [2, 4491, 36099], + "tslint-mi", + "sc-rules", + [2, 36101, 36102], + 0, + 0, + "ts-lint", + 0, + 0, + 0, + 0, + 0, + [3, 20474, 12], + "slint-plugin", + [2, 36112, 36113], + 0, + 0, + 0, + 0, + [2, 4671, 3209], + "joycon", + 0, + "ts-e", + [2, 36122, 154], + 0, + 0, + 0, + 0, + 0, + [3, 14596, 11], + [2, 36129, 8791], + 0, + 0, + 0, + 0, + "@mixmark-io/domino", + 0, + 0, + 0, + "-attendant", + [2, 4495, 36139], + 0, + 0, + 0, + 0, + 0, + "grunt-comp", + 0, + "onent-io", + [2, 36146, 36148], + [3, 2243, 10], + 0, + "at-sourcemap", + [2, 36150, 36152], + "grunt-m", + "arkdown", + [2, 36154, 36155], + [3, 2300, 11], + "grunt-p", + "ush-release", + [2, 36158, 36159], + 0, + "gex-replace", + [2, 24294, 36162], + [2, 3503, 16237], + [2, 22277, 36164], + "unfunk-reporter", + [2, 3192, 36166], + 0, + 0, + 0, + 0, + 0, + "tap-b", + 0, + "rowser-color", + [2, 36173, 36175], + "-util", + [2, 4497, 36177], + 0, + 0, + "curve25519", + "ed25519", + "nacl", + 0, + "poly1305", + "public", + "salsa20", + 0, + "signatures", + 0, + 0, + 0, + 0, + [2, 4498, 1574], + 0, + 0, + "DOM", + "Twitter", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 4505, 1732], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "media-typer", + 0, + "checking", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [3, 596, 9], + "/material-color-utilities", + [2, 36239, 36240], + 0, + 0, + [2, 4511, 699], + [3, 4512, 14], + [2, 3131, 4964], + "material-3", + [2, 4508, 1932], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "JsDocs", + 0, + 0, + 0, + 0, + 0, + 0, + "cli-prompt", + 0, + "concatenate", + 0, + 0, + "ebook", + "pandoc", + 0, + "kindlegen", + 0, + 0, + 0, + 0, + [3, 27847, 12], + [2, 36283, 3231], + [2, 12690, 18877], + 0, + 0, + "-findorcreate", + [2, 3232, 36288], + [2, 7627, 4487], + 0, + 0, + 0, + 0, + "@sqltools/formatter", + 0, + 0, + 0, + 0, + 0, + 0, + "-rename", + [2, 22507, 36302], + [3, 36303, 12], + [2, 36304, 4070], + [3, 5055, 10], + [2, 36306, 1722], + "gulpclass", + 0, + 0, + 0, + 0, + 0, + 0, + "@dprint/formatter", + "@esfx/canceltoken", + "@dprint/", + [2, 36317, 91], + 0, + "azure-", + "-node-api", + [2, 20999, 36321], + [2, 36320, 36322], + "mocha-f", + "ivemat-progress-reporter", + [2, 36324, 36325], + 0, + 0, + "able-stylish", + [2, 26072, 36329], + [2, 10749, 36330], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "commandpost", + 0, + "wer-assert", + [2, 13415, 36344], + "intel", + "li-espower-loader", + [2, 36346, 36347], + 0, + 0, + 0, + 0, + 0, + [2, 5554, 13774], + [2, 18792, 36354], + [2, 13058, 36355], + [3, 36356, 23], + [2, 36357, 1993], + 0, + "css-utils", + [2, 8802, 36360], + [2, 36357, 16839], + "erved-words", + [2, 31525, 36363], + "-sync2", + [2, 3613, 36365], + "sass-svg", + 0, + 0, + 0, + 0, + 0, + "finally", + [2, 9466, 36373], + [2, 4532, 1732], + 0, + [2, 27100, 4255], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "jsmin", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "random-bytes", + 0, + 0, + 0, + 0, + 0, + 0, + [2, 1024, 4525], + "affix", + [2, 1016, 36410], + [3, 36411, 12], + [2, 36412, 9809], + "uto-link", + [2, 36412, 36414], + [2, 36412, 9826], + [3, 1015, 12], + 0, + "ack-top", + [2, 36417, 36419], + [3, 36420, 13], + [2, 36421, 35696], + [2, 36417, 9837], + [2, 1015, 9847], + [2, 1016, 9026], + [3, 36425, 13], + [2, 36426, 9854], + [3, 36427, 14], + [2, 36428, 9860], + [2, 36426, 9863], + [3, 36425, 12], + [2, 36431, 5449], + [2, 36431, 11200], + [3, 36433, 13], + [2, 36434, 3809], + "date-input", + [2, 1016, 36436], + [3, 36437, 16], + [2, 36438, 3811], + [3, 36437, 12], + "escriptions", + [2, 36440, 36441], + "ivider", + [2, 36440, 36443], + [2, 36440, 9997], + [3, 36445, 13], + [2, 36446, 11206], + [2, 1016, 3599], + 0, + "file-input", + [2, 1016, 36450], + [3, 36451, 12], + [2, 36452, 3469], + [2, 1016, 10052], + [2, 1016, 8691], + [3, 36455, 12], + [2, 36456, 28176], + [2, 36456, 35971], + [2, 1016, 4403], + [3, 36459, 13], + [2, 36460, 10104], + [3, 36459, 12], + [2, 36462, 3852], + [3, 36463, 13], + "nth-picker", + [2, 36464, 36465], + [2, 1016, 22005], + [2, 1016, 18367], + [3, 36468, 12], + "in-code", + [2, 36469, 36470], + "opover", + [2, 36469, 36472], + [3, 36473, 13], + "rtal", + [2, 36474, 36475], + [2, 36469, 10148], + [2, 1016, 35778], + [3, 36478, 13], + [2, 36479, 6864], + "search-", + [2, 36481, 1631], + [2, 1016, 36482], + [3, 36483, 18], + [2, 36484, 1633], + [3, 36483, 13], + [2, 36486, 4021], + [3, 36483, 12], + [2, 36488, 10205], + [2, 36488, 10209], + [2, 36488, 11234], + [2, 36488, 10222], + [2, 1016, 176], + [3, 36493, 14], + [2, 36494, 591], + [3, 36493, 13], + [2, 36496, 10233], + [3, 36493, 12], + [2, 36498, 11241], + 0, + "ime-picker", + [2, 36498, 36501], + [2, 36498, 18390], + [2, 36498, 10266], + [3, 36504, 13], + [2, 36505, 10271], + 0, + "-checked", + [2, 36506, 36508], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [3, 212, 12], + "fns", + [2, 36524, 36525], + 0, + "parsel-js", + 0, + 0, + 0, + 0, + 0, + "citty", + 0, + "mkdist", + "untyped", + "hookable", + 0, + 0, + 0, + 0, + 0, + [2, 3714, 20], + 0, + 0, + 0, + 0, + 0, + 0, + [3, 34068, 12], + [2, 36551, 2408], + 0, + 0, + 0, + 0, + 0, + "teo.collina/tspl", + [2, 599, 36558], + "dns-packet", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "trough", + 0, + [3, 9359, 10], + [2, 36570, 4966], + 0, + "retext", + 0, + 0, + 0, + 0, + [3, 4554, 13], + 0, + "non-repeating", + 0, + 0, + 0, + 0, + 0, + 0, + [3, 4555, 10], + "xast", + "nlcst", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "pullstream", + 0, + "match-stream", + 0, + "uncompress", + 0, + 0, + 0, + 0, + "is-npm", + "pupa", + 0, + "fixture-", + [2, 36614, 8634], + 0, + 0, + 0, + 0, + 0, + "urn", + "uri mutation", + "url mutation", + "uri m", + "anipulation", + [2, 36624, 36625], + "url m", + [2, 36627, 36625], + 0, + "uri template", + 0, + "url template", + " res", + " locator", + [2, 5585, 36634], + [2, 36633, 36635], + [2, 4549, 36636], + [3, 36637, 17], + [2, 36638, 16906], + 0, + "query string", + "RFC 3986", + "RFC3986", + 0, + 0, + "RFC 6570", + 0, + 0, + "RFC6570", + [2, 23168, 1932], + "ecosystem", + ":jquery", + [2, 36651, 36652], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "ylru", + "formstream", + 0, + 0, + "tshy-after", + [3, 9725, 12], + 0, + "@types/busboy", + "@eggjs/tsconfig", + "@types/sel", + "fsigned", + [2, 36689, 36690], + 0, + "strictest", + [2, 25627, 36693], + 0, + "urlopen", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "userprofile", + 0, + 0, + 0, + 0, + 0, + [2, 4745, 57], + 0, + 0, + "browserscope", + "ua", + "ua-parse", + "ua-parser", + "user agent", + "user-agent", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "is-typed", + "-array", + [2, 36730, 36731], + 0, + "supported", + [2, 5745, 36734], + [2, 17393, 36735], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "rfc9562", + 0, + 0, + 0, + 0, + 0, + 0, + "bundt", + 0, + "diffs", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "find-pa", + "rent-dir", + [2, 36779, 36780], + 0, + 0, + 0, + "githook", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "sanitisation", + 0, + "sanitise", + 0, + 0, + 0, + 0, + 0, + 0, + "@vue/shared", + "@vant/popperjs", + "@vant/", + 0, + "@vant/use", + 0, + [2, 7047, 1732], + [2, 5334, 36811], + "able-html", + [2, 1687, 36813], + [2, 10952, 2770], + [2, 36807, 7625], + [2, 36807, 45], + 0, + "area-data", + [2, 36807, 36819], + "@vant/cli", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "@vercel/go", + 0, + "@vercel/fun", + "@vercel/next", + [2, 20461, 681], + "@vercel/ruby", + "python", + [2, 33763, 36844], + "@vercel/r", + "edwood", + [2, 36846, 36847], + "hydrogen", + [2, 33763, 36849], + "build-utils", + [2, 33763, 36851], + "@vercel/st", + "atic-build", + [2, 36853, 36854], + "@vercel/re", + 0, + "mix-builder", + [2, 36856, 36858], + 0, + "epipebomb", + 0, + "promisepipe", + "tmp-promise", + 0, + 0, + "@sentry/node", + [3, 28267, 12], + [2, 7738, 6768], + 0, + "@types/dotenv", + [2, 4753, 4007], + [2, 33763, 5576], + [2, 17213, 2022], + "pcre-to-regexp", + "ast-commit", + [2, 33495, 36876], + [2, 8603, 18132], + [2, 8603, 1631], + "@tootallnate/once", + [3, 546, 11], + [2, 36881, 5449], + "@vercel/f", + "rameworks", + [2, 36883, 36884], + [2, 3827, 594], + [2, 33763, 36886], + [2, 5745, 7253], + [2, 10787, 36888], + [2, 20290, 4007], + "s-detectors", + [2, 36883, 36891], + [3, 20485, 11], + "-json-file", + [2, 36893, 36894], + "outing-utils", + [2, 36846, 36896], + [3, 29115, 11], + [2, 36898, 3385], + [3, 22092, 13], + [2, 36900, 16830], + "@vercel", + [3, 9435, 9], + "s/types", + [2, 36903, 36904], + [2, 36902, 36905], + 0, + "node-utils", + [2, 33157, 36908], + [2, 11836, 2656], + [2, 29130, 36910], + [3, 11296, 13], + "xpect-", + [2, 36913, 6458], + [2, 36912, 36914], + [3, 36906, 18], + [2, 36916, 14181], + "@alex_neo/jest-expect-message", + [3, 29110, 18], + [2, 36919, 36910], + [2, 18522, 1781], + [2, 36916, 36921], + 0, + 0, + 0, + 0, + "extsprintf", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "viewer.js", + 0, + 0, + 0, + 0, + 0, + 0, + "remove-t", + "railing-separator", + [2, 36948, 36949], + "teex", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "kdirp-stream", + [2, 29048, 36964], + "is-valid-glob", + "lead", + [2, 4026, 14690], + "stream-com", + "poser", + [2, 36969, 36970], + "to-through", + "value-", + "or-function", + [2, 36973, 36974], + [3, 4606, 15], + 0, + 0, + 0, + 0, + "vinyl-adapter", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "browser-split", + "ev-store", + "x-is-array", + 0, + "x-is-string", + 0, + "run-browser", + 0, + "vtree", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "artichokie", + [2, 4293, 16111], + "es-module-lexer", + [3, 3638, 15], + "@polka/", + [2, 37016, 1536], + 0, + "build-tool", + 0, + 0, + 0, + 0, + "slash-path", + 0, + 0, + 0, + "api-router", + "api-routers", + [3, 4612, 15], + "rest-api", + [2, 4609, 37031], + [3, 9244, 9], + [2, 37033, 995], + [3, 12419, 12], + [2, 37035, 20332], + 0, + "api-rest", + "Remix", + "Next.js", + 0, + 0, + 0, + 0, + [3, 6371, 11], + [2, 37045, 1623], + [2, 9408, 364], + "devtools-api", + [2, 5334, 37048], + "@vueuse/", + [2, 37050, 12339], + "focus-trap", + 0, + "@mdi", + "t-vue/plugin-component", + [2, 37054, 37055], + [3, 37056, 17], + [2, 37057, 9339], + [2, 37057, 11988], + "sfc", + [2, 37057, 37060], + [2, 37057, 17913], + [3, 37062, 18], + "oc", + [2, 37063, 37064], + "@mdit-vue/", + [2, 37066, 6579], + [3, 7641, 19], + [2, 37068, 3111], + [2, 37068, 3113], + [2, 13058, 3667], + [3, 26774, 14], + "thjax3", + [2, 37072, 37073], + 0, + 0, + 0, + 0, + 0, + "@vitest/spy", + 0, + "tinyrainbow", + "@vitest/u", + [2, 37083, 186], + [2, 17213, 8791], + "@vitest/s", + [2, 37086, 11298], + "why-", + 0, + "running", + [2, 21149, 37090], + [2, 37088, 37091], + [2, 17213, 3717], + 0, + "birpc", + "local-pkg", + [2, 33157, 24079], + "@antfu/", + "install-pkg", + [2, 37098, 37099], + 0, + 0, + 0, + 0, + 0, + "node-lo", + "calstorage", + [2, 37106, 37107], + 0, + "gulp-xo", + 0, + 0, + "load-plugins", + 0, + "vorpal-less", + 0, + "vorpal-repl", + 0, + 0, + 0, + 0, + 0, + "eyes", + 0, + "BDD", + 0, + 0, + 0, + 0, + "keytar", + "parse-semver", + [2, 17414, 28362], + 0, + "eerio", + [2, 16931, 37134], + [3, 21625, 11], + [2, 37136, 4565], + 0, + "@types/yazl", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 9738, 6985], + "@types/ic", + "onv-lite", + [2, 37150, 37151], + 0, + 0, + 0, + 0, + [2, 4619, 9586], + 0, + 0, + 0, + 0, + [3, 36812, 13], + [2, 37162, 965], + 0, + 0, + 0, + 0, + 0, + "-libs", + [2, 1988, 37169], + 0, + 0, + 0, + 0, + 0, + 0, + [3, 5736, 22], + [2, 37177, 31692], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "@int", + "lify/core-base", + [2, 37188, 37189], + "@intlify/", + [2, 37191, 6579], + 0, + 0, + "devtools-if", + [2, 37191, 37195], + 0, + 0, + "vue-devtools", + [2, 37191, 37199], + 0, + "intlify", + 0, + 0, + 0, + 0, + 0, + [3, 37200, 13], + 0, + "i18n-loader", + [2, 37208, 37210], + [3, 7892, 11], + [2, 37212, 3176], + [2, 32119, 1698], + "cache-loader", + "markdown-l", + [2, 37216, 35971], + "pug-p", + "lain-loader", + [2, 37218, 37219], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "ightwatch", + [2, 10884, 37231], + 0, + 0, + "faked-promise", + [2, 28506, 6706], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "de-indent", + 0, + 0, + 0, + 0, + 0, + "todomvc-app-css", + 0, + 0, + 0, + 0, + "foreachasync", + 0, + "sys", + "walkSync", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "exec-sh", + 0, + 0, + 0, + 0, + 0, + 0, + "outpipe", + 0, + "win-spawn", + 0, + 0, + 0, + 0, + 0, + "encrypte", + "d-attr", + [2, 37292, 37293], + [3, 3052, 10], + "afeinteger", + [2, 37295, 37296], + [2, 4651, 18008], + "waterline-", + [2, 37299, 594], + 0, + "active-", + [2, 37302, 1355], + 0, + 0, + 0, + 0, + "vargs", + 0, + 0, + 0, + 0, + "bdd-with-opts", + 0, + "gulp-debug", + "mu2", + [2, 9466, 2869], + "auncher", + [2, 26127, 37318], + [2, 20011, 37319], + "mocha-p", + "arallel", + [2, 37321, 37322], + [2, 18199, 37323], + "sv-selenium", + 0, + 0, + 0, + 0, + 0, + "web3-eth", + "web3-net", + 0, + "web3-core", + "web3-types", + "web3-utils", + "web3-errors", + 0, + "web3-eth-abi", + "web3-eth-", + 0, + "web3-eth-ens", + 0, + "web3-eth-iban", + [2, 4654, 1155], + "rpc-methods", + [2, 4654, 37346], + "web3-eth-a", + "ccounts", + [2, 37348, 37349], + "contract", + [2, 37340, 37351], + 0, + "personal", + [2, 37340, 37354], + 0, + "providers-ws", + [2, 4654, 37357], + "web3-rpc-", + "providers", + [2, 37359, 37360], + [3, 37358, 15], + [2, 37362, 27], + 0, + "in3", + "ganache", + "ipc", + [2, 37362, 37367], + [3, 13936, 16], + "se-web3", + [2, 37369, 37370], + "@tru", + "ffle/hdwallet-provider", + [2, 37372, 37373], + 0, + "Ethereum", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "@solana/spl-token", + "@solana/", + "web3.js", + [2, 37391, 37392], + "kva-email-service", + 0, + "ed25519-hdkey", + [2, 32806, 37396], + "ssl-http-with-docker", + [3, 4382, 9], + [2, 7521, 12130], + [2, 37399, 37400], + "telegram-a", + "ssistant", + [2, 37402, 37403], + "web3-r", + 0, + "eact-task", + [2, 37405, 37407], + 0, + "sol", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "assembl", + "yjs/ast", + [2, 37421, 37422], + [2, 10672, 37423], + [3, 37424, 15], + "wasm-edit", + [2, 37425, 37426], + [3, 37427, 20], + [2, 37428, 57], + 0, + 0, + "trace-event", + [2, 35441, 37432], + 0, + "assembly", + [2, 37435, 1508], + [2, 4671, 1194], + [2, 14743, 1194], + "hash-wasm", + "wast-loader", + [2, 20694, 6095], + "xxhashjs", + 0, + 0, + 0, + 0, + "@disco", + "veryjs/json-ext", + [2, 37447, 37448], + 0, + "@carrotsearch/foamtree", + "h0r", + [2, 22060, 37452], + [2, 37453, 2809], + "lodash.p", + "artial", + [2, 37455, 37456], + [2, 3607, 34809], + 0, + "zoomable", + 0, + 0, + 0, + 0, + [3, 13077, 13], + [2, 37465, 18523], + "configtest", + [2, 37465, 37467], + 0, + [3, 4863, 9], + "vinfo", + [2, 37470, 37471], + 0, + 0, + 0, + 0, + 0, + 0, + "@fastify/e", + [2, 37479, 674], + "n-finished", + [2, 15461, 37481], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "@types/sockjs", + [3, 18584, 13], + "njour", + [2, 16872, 37492], + "bonjour-service", + 0, + 0, + 0, + [3, 33768, 13], + [2, 37498, 4017], + [2, 37498, 2947], + 0, + "-community", + [2, 17013, 37502], + "-history-api-fallback", + [2, 11485, 37504], + 0, + "klona", + [2, 37490, 4219], + "@types/tr", + 0, + 0, + "usted-types", + [2, 37509, 37512], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "reloading", + [3, 4631, 10], + [2, 37524, 3642], + 0, + 0, + 0, + 0, + 0, + [2, 32119, 4694], + [3, 33945, 16], + "ellscape", + [2, 37532, 37533], + [3, 3708, 23], + 0, + 0, + 0, + 0, + 0, + 0, + "dts-cli", + 0, + "@types/flat", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "-to-buffer", + [2, 7231, 37567], + "yaeti", + 0, + 0, + "networking", + "comet", + 0, + 0, + 0, + 0, + "@silentbot1/nat-api", + "@thaunknown/simple-peer", + "torrent/http-node", + [2, 10672, 37580], + "addr", + 0, + "-to-ip-port", + [2, 37582, 37584], + "bitfield", + "bittorrent-dht", + [3, 37587, 11], + [2, 37588, 20500], + "cache-c", + "hunk-store", + [2, 37590, 37591], + [2, 33355, 5509], + [2, 13225, 37593], + "cpus", + "create-t", + "orrent", + [2, 37596, 37597], + "-ponyfill", + [2, 1613, 37599], + "fs-c", + [2, 37601, 37591], + "fsa-chunk-store", + "imme", + "diate-chunk-store", + [2, 37604, 37605], + "-async-", + [2, 37607, 7253], + [2, 4565, 37608], + 0, + 0, + "load-ip-set", + "lt_donthave", + "memory-c", + [2, 37614, 37591], + "torrent", + "parse-torrent", + "random-ite", + [2, 37618, 6882], + 0, + 0, + 0, + "speed-limiter", + "throughput", + 0, + 0, + "-discovery", + [2, 37616, 37627], + 0, + 0, + "torrent-piece", + 0, + "uint8-util", + "unordered-", + "array-remove", + [2, 37634, 37635], + "ut_metadata", + "ut_pex", + 0, + [3, 37581, 12], + [2, 37640, 23685], + 0, + 0, + "airtap-manual", + "airtap-s", + [2, 37645, 9073], + [2, 37588, 4839], + "chrome-net", + "-address", + [2, 11996, 37649], + 0, + "path-esm", + "-fixtures", + [2, 4702, 37653], + 0, + "bittorrent", + [2, 37656, 12332], + "mad science", + "p2p", + 0, + 0, + 0, + "peer-to-peer", + 0, + "peers", + "swarm", + "web torrent", + "webrtc data", + 0, + 0, + 0, + 0, + 0, + "web worker", + "a gogo", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "search-params", + [2, 4564, 37687], + 0, + 0, + 0, + 0, + "buster", + "exorcist", + 0, + "cujo", + 0, + "Promises/A+", + 0, + 0, + 0, + 0, + "isexe", + 0, + 0, + 0, + 0, + "taffydb", + "unit.js", + 0, + 0, + 0, + 0, + 0, + "@dabh/diagnostics", + "logform", + 0, + "one-time", + 0, + "@dabh/", + [2, 37720, 23816], + [2, 20417, 4715], + [3, 18518, 12], + [2, 37723, 1149], + "hock", + "winston-co", + [2, 37726, 13172], + 0, + 0, + 0, + 0, + 0, + 0, + "tream-rotator", + [2, 12416, 37734], + 0, + [3, 24151, 11], + [3, 23722, 14], + [2, 37737, 37738], + [2, 6324, 4059], + [2, 37739, 37740], + 0, + "daily-rotate-file", + "log-rotate", + "logrotate", + 0, + 0, + 0, + 0, + 0, + 0, + "winston3", + 0, + 0, + 0, + 0, + 0, + "bower-config", + "propprop", + [2, 4716, 20], + 0, + 0, + 0, + 0, + 0, + 0, + "carriage", + 0, + "new-line", + "return", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "workbox-", + [2, 37779, 6147], + 0, + 0, + "workbox", + "workboxjs", + " worker", + [2, 11100, 37785], + " requests", + [2, 1612, 37787], + "offline", + [2, 12320, 3097], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "writeFile", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "enstore", + 0, + "-crawler", + [2, 4730, 37820], + 0, + "x-ray-parse", + 0, + 0, + "scrape", + 0, + 0, + 0, + 0, + 0, + 0, + "is-function", + "parse-headers", + 0, + 0, + 0, + 0, + 0, + 0, + "adler-32", + 0, + "codepage", + "crc-32", + "ssf", + "wmf", + 0, + "@she", + "etjs/uglify-js", + [2, 37848, 37849], + "on-epipe", + [2, 7219, 37851], + "fflate", + [3, 5392, 10], + "pellcheck", + [2, 37854, 37855], + 0, + "xlsb", + "xlsm", + "dbf", + "dif", + "sylk", + 0, + 0, + 0, + 0, + 0, + "cash-cat", + "codacy-coverage", + "globify", + "unminified-webpack-plugin", + 0, + "XML", + "CDATA", + "doctype", + 0, + 0, + 0, + " instruction", + [2, 10809, 37879], + 0, + "Javascript", + [2, 353, 3642], + "convertor", + "converting", + 0, + "conversion", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "node-expat", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "dom-js", + "xmltest", + 0, + "DOMParser", + "XMLSerializer", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "func-xml", + 0, + 0, + 0, + 0, + 0, + 0, + [2, 5857, 5861], + [2, 69, 37935], + "@unicode/unicode-14.0.0", + 0, + "rray-includes", + [2, 24619, 37939], + [2, 1226, 4740], + [3, 37935, 17], + 0, + "value-aliases", + [2, 37942, 37944], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "whitelist", + 0, + 0, + 0, + 0, + "@scion-scxml/test-framework", + 0, + "statechart", + 0, + 0, + "state machine", + "finite", + " stat", + "e machine", + [2, 37965, 37966], + [2, 37964, 37967], + "finite ", + "automata", + [2, 37969, 37970], + "scxml", + "interpreter", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "ep-equal", + [2, 35506, 37982], + [2, 9228, 4729], + 0, + 0, + "@types/utf8", + [2, 4744, 28703], + 0, + "emulator", + [2, 4402, 37990], + 0, + 0, + 0, + 0, + "jest-t", + "s-webcompat-resolver", + [2, 37996, 37997], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "yaml2json", + "json2yaml", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "test-extends", + [2, 27477, 38016], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [3, 29775, 30], + "imports-", + [2, 38033, 10906], + [2, 38032, 38034], + "death", + "repeating", + 0, + "capture-har", + [2, 9769, 38039], + "roadrunner", + 0, + "node4", + [2, 26202, 38043], + [3, 4821, 14], + "ode5", + [2, 38045, 38046], + [3, 18229, 16], + "-strict", + [2, 38048, 38049], + "ittens", + [2, 25705, 38051], + [3, 1935, 18], + "-vars", + [2, 38053, 38054], + [2, 23105, 7003], + [2, 1152, 38056], + [2, 16645, 38057], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "@yeoman/adapter", + "@yeoman/", + "conflicter", + [2, 38074, 38075], + [2, 38074, 23255], + [2, 38074, 353], + "@yeoman/t", + [2, 38079, 103], + 0, + "fly-import", + [2, 7227, 30831], + "mem-fs", + 0, + "mem-fs-editor", + [2, 9477, 10057], + [2, 17412, 38087], + 0, + 0, + 0, + "esmocha", + "sinon-test", + 0, + 0, + 0, + 0, + 0, + "github-u", + "sername", + [2, 38099, 38100], + 0, + 0, + 0, + 0, + 0, + 0, + "yes", + "false", + 0, + "lenient", + 0, + 0, + 0, + 0, + 0, + "cli-list", + "fullname", + 0, + 0, + "parse-help", + "root-check", + "npm-keyword", + 0, + "doctor", + [2, 4755, 38125], + [2, 25742, 1871], + 0, + 0, + 0, + [2, 4755, 6843], + 0, + [2, 9518, 1002], + 0, + 0, + 0, + 0, + 0, + "@jonahsnider/benchmark", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 26936, 4627], + 0, + "cowsay", + "say", + 0, + 0, + 0, + 0, + 0, + 0, + "zeromq", + "0mq", + "ømq", + "libzmq", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 11477, 1574], + [2, 9228, 4576], + 0, + "@types/morgan", + "express-u", + "seragent", + [2, 38180, 38181], + 0, + " types", + [2, 7047, 38184], + 0, + 0, + 0, + 0, + 0, + 0, + "DSL", + 0, + 0, + 0, + 0, + "@externs/nodejs", + 0, + 0, + 0, + 0, + "JSON2", + 0, + "char-split", + 0, + 0, + "express-state", + "firefox-", + [2, 38208, 35677], + [2, 11941, 2663], + 0, + "shallow-copy", + [2, 4250, 4833], + 0, + "tap-finished", + "-localtunnel", + [2, 4770, 38216], + 0, + 0, + 0, + "browzers", + "bulk-require", + 0, + "zuul-ngrok", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "Unit Testing", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "Storybook", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "belalangkayu", + "rengginangbasi", + "tehtarik3", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "sort-array", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "-scroll-", + "into-view", + [2, 38290, 38291], + [2, 23545, 38292], + 0, + "module-t", + "ype-aliases", + [2, 38295, 38296], + [2, 20201, 38297], + [2, 964, 3698], + [3, 1216, 14], + "o-side-effect-class-properties", + [2, 38300, 38301], + [3, 1270, 19], + [2, 38303, 970], + "flow-co", + [2, 24524, 8803], + [2, 38305, 38306], + 0, + "get-pkg-repo", + 0, + "enhanced", + " input", + [2, 38311, 38312], + 0, + 0, + "autosuggest", + "typeahead", + 0, + "omnibox", + "WAI-ARIA", + "multiple ", + [2, 38321, 17146], + 0, + 0, + 0, + 0, + "focus", + "keyboards", + "mice", + "pseudos", + 0, + "textarea", + "trackpad" ] diff --git a/packages/flatpack-json/fixtures/.npm-packages-info-v2.json b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json index 87d0fd123795..71c507e68d2e 100644 --- a/packages/flatpack-json/fixtures/.npm-packages-info-v2.json +++ b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json @@ -1,15420 +1,31622 @@ [ -"Flatpack JSON v2", -[128,"@alifd/next","@angular-devkit/core","@angular-devkit/schematics","@angular/animations","@angular/cdk", -"@angular/common","@angular/compiler","@angular/compiler-cli","@angular/core","@angular/forms","@angular/http", -"@angular/material","@angular/platform-browser","@angular/platform-browser-dynamic","@angular/platform-server", -"@angular/router","@ant-design/react-native","@ant-design/web3-common","@ant-design/web3-icons","@auth/sveltekit", -"@babel/cli","@babel/code-frame","@babel/core","@babel/helper-plugin-utils","@babel/parser", -"@babel/plugin-proposal-class-properties","@11ty/eleventy","@adobe/css-tools","@api-components/api-method-documentation", -"@apollo/client","@asyncapi/generator-react-sdk","@babel/eslint-parser","@babel/plugin-proposal-decorators", -"@babel/plugin-proposal-export-default-from","@babel/plugin-proposal-export-namespace-from", -"@babel/plugin-proposal-object-rest-spread","@babel/plugin-syntax-dynamic-import","@babel/plugin-transform-runtime", -"@babel/polyfill","@babel/preset-env","@babel/preset-react","@babel/preset-typescript","@babel/register", -"@babel/runtime","@babel/runtime-corejs2","@babel/traverse","@babel/types","@biz-dev-ops/md-docs","@bwcr_/winston-loki", -"@changesets/cli","@chatscope/chat-ui-kit-react","@ckeditor/ckeditor5-adapter-ckfinder","@ckeditor/ckeditor5-angular", -"@ckeditor/ckeditor5-autoformat","@ckeditor/ckeditor5-basic-styles","@ckeditor/ckeditor5-block-quote", -"@ckeditor/ckeditor5-build-balloon","@ckeditor/ckeditor5-build-balloon-block","@ckeditor/ckeditor5-build-classic", -"@ckeditor/ckeditor5-build-decoupled-document","@ckeditor/ckeditor5-build-inline","@ckeditor/ckeditor5-ckbox", -"@ckeditor/ckeditor5-ckfinder", -"@ckeditor/ckeditor5-clipboard","@ckeditor/ckeditor5-cloud-services","@ckeditor/ckeditor5-core", -"@ckeditor/ckeditor5-easy-image","@ckeditor/ckeditor5-engine","@ckeditor/ckeditor5-essentials", -"@ckeditor/ckeditor5-heading","@ckeditor/ckeditor5-image","@ckeditor/ckeditor5-indent","@ckeditor/ckeditor5-link", -"@ckeditor/ckeditor5-list","@ckeditor/ckeditor5-media-embed","@ckeditor/ckeditor5-paragraph", -"@ckeditor/ckeditor5-paste-from-office","@ckeditor/ckeditor5-react","@ckeditor/ckeditor5-table", -"@ckeditor/ckeditor5-typing","@ckeditor/ckeditor5-ui","@ckeditor/ckeditor5-upload","@ckeditor/ckeditor5-utils", -"@ckeditor/ckeditor5-vue","@ckeditor/ckeditor5-widget","@commitlint/cli","@compodoc/compodoc","@comunica/core", -"@contenthook/browser","@contenthook/cli","@contenthook/node","@coreui/coreui","@csstools/css-parser-algorithms", -"@csstools/css-tokenizer","@csstools/media-query-list-parser","@csstools/postcss-is-pseudo-class", -"@csstools/postcss-progressive-custom-properties","@csstools/selector-specificity","@cucumber/cucumber", -"@deven-org/documentation-skeleton","@devtea2026/aspernatur-ea-non-porro","@devtea2026/consectetur-ab-unde-quisquam", -"@devtea2026/cupiditate-dolorem-excepturi-impedit","@devtea2026/distinctio-soluta-illo-eaque", -"@devtea2026/eum-ullam-est-distinctio","@devtea2026/explicabo-alias-architecto-sed","@devtea2026/improved-journey", -"@devtea2026/inventore-facilis-corporis-cum","@devtea2026/ipsa-omnis-in-molestiae", -"@devtea2026/literate-computing-machine","@devtea2026/maxime-sequi-est-rem", -"@devtea2026/necessitatibus-dolorem-esse-atque","@devtea2026/odit-enim-reiciendis-pariatur", -"@devtea2026/odit-maxime-porro-asperiores","@devtea2026/possimus-ipsa-sint-consequuntur", -"@devtea2026/qui-quos-laborum-amet","@devtea2026/quia-ducimus-placeat-minima", -"@devtea2026/quidem-voluptate-repudiandae-necessitatibus","@devtea2026/rerum-quaerat-porro-animi", -"@devtea2026/ubiquitous-octo-memory","@diotoborg/adipisci-placeat-iure","@diotoborg/amet-architecto-est", -"@diotoborg/at-totam-perspiciatis","@diotoborg/commodi-voluptatum-libero", -"@diotoborg/delectus-necessitatibus-voluptatum","@diotoborg/deserunt-illo-tempora","@diotoborg/dicta-recusandae-veniam", -"@diotoborg/dolor-earum-quia","@diotoborg/dolor-tempora-fuga","@diotoborg/dolores-praesentium-assumenda", -"@diotoborg/eligendi-est-unde","@diotoborg/esse-accusantium-ratione","@diotoborg/illo-amet-architecto", -"@diotoborg/laudantium-itaque-esse","@diotoborg/libero-asperiores-at","@diotoborg/neque-inventore-corporis", -"@diotoborg/nostrum-eveniet-officiis","@diotoborg/odio-dolores-officia","@diotoborg/porro-modi-accusamus", -"@diotoborg/psychic-bassoon","@diotoborg/quasi-repellat-odit","@diotoborg/qui-ullam-ipsum", -"@diotoborg/quo-dolorem-ducimus","@diotoborg/ratione-error-odio","@diotoborg/repellat-blanditiis-quis", -"@diotoborg/tempora-voluptas-distinctio","@diotoborg/ullam-dignissimos-repudiandae","@diotoborg/velit-reiciendis-velit", -"@diotoborg/verbose-robot","@diplodoc/transform","@discordjs/rest","@disqada/workspace","@doc-tools/docs", -"@doc-tools/transform","@dramaorg/esse-praesentium-eligendi","@dramaorg/quae-dolore-nostrum","@eas-framework/server", -"@eightshift/frontend-libs","@electron/docs-parser","@emotion/babel-plugin","@emotion/core","@emotion/css", -"@emotion/styled","@erboladaiorg/ad-exercitationem-ducimus","@erboladaiorg/asperiores-earum-quaerat", -"@erboladaiorg/asperiores-fuga-sint","@erboladaiorg/asperiores-nam-adipisci","@erboladaiorg/autem-dolores-ipsam", -"@erboladaiorg/cupiditate-consectetur-porro","@erboladaiorg/cupiditate-pariatur-optio", -"@erboladaiorg/distinctio-tempora-quis","@erboladaiorg/error-atque-ea","@erboladaiorg/esse-ipsa-numquam", -"@erboladaiorg/ex-hic-molestias","@erboladaiorg/explicabo-eius-adipisci", -"@erboladaiorg/molestiae-voluptatibus-perferendis","@erboladaiorg/molestias-nulla-dolor","@erboladaiorg/nisi-culpa-cum", -"@erboladaiorg/officia-illum-aperiam","@erboladaiorg/perspiciatis-magni-ut","@erboladaiorg/quae-in-veniam", -"@erboladaiorg/quaerat-mollitia-adipisci","@erboladaiorg/quibusdam-itaque-tempora","@erboladaiorg/sint-deleniti-dolorem", -"@erboladaiorg/sit-nesciunt-amet","@erboladaiorg/tenetur-architecto-dolore","@erboladaiorg/ut-dignissimos-laborum", -"@erboladaiorg/velit-fugit-harum","@eslint-community/eslint-utils","@eslint/js","@fakeyanss/redoc", -"@floating-ui/react-dom","@fontsource/inter","@fontsource/roboto","@fortawesome/fontawesome-svg-core", -"@fortawesome/free-solid-svg-icons","@fortawesome/react-fontawesome","@grandlinex/core","@grandlinex/e-kernel", -"@grandlinex/kernel","@graphql-markdown/core","@graphql-markdown/docusaurus","@hajtech/webpack-config","@hapi/hapi", -"@hishprorg/aliquid-ad-vero","@hishprorg/autem-sint-quas","@hishprorg/cum-rem-consequuntur", -"@hishprorg/earum-sint-veritatis","@hishprorg/eius-vero-dicta","@hishprorg/est-dicta-quis", -"@hishprorg/incidunt-quibusdam-tempore","@hishprorg/itaque-esse-accusamus","@hishprorg/iure-optio-nihil", -"@hishprorg/magni-amet-id","@hishprorg/magni-nisi-aperiam","@hishprorg/maxime-voluptates-enim", -"@hishprorg/nihil-ad-ratione","@hishprorg/perspiciatis-ratione-unde","@hishprorg/quis-perferendis-culpa", -"@hishprorg/reprehenderit-excepturi-sed","@hishprorg/sint-nam-consequuntur","@hishprorg/sunt-officia-eligendi", -"@hishprorg/sunt-voluptatem-nobis","@hishprorg/unde-vitae-reprehenderit","@hishprorg/wafflejs", -"@homer0/prettier-plugin-jsdoc","@hookform/resolvers","@iamtraction/google-translate","@idux/cdk","@idux/components", -"@inquirer/core","@ionic/core","@isaacs/cliui","@istanbuljs/nyc-config-typescript","@itwin/itwinui-react","@jest/core", -"@jest/types","@jsonforms/core","@jsonforms/material-renderers","@jsonforms/react","@juigorg/nisi-molestiae-ut", -"@juigorg/sit-nam-neque","@jupyterlab/application","@kobedevi/sassdoc","@kollorg/dicta-itaque-nemo", -"@kollorg/nihil-veniam-deserunt","@libphamton/chatfanpage","@libphamton/fb-group","@listr2/prompt-adapter-inquirer", -"@mantine/core","@mantine/dates","@mantine/hooks","@mantine/modals","@mantine/notifications","@mantine/prism", -"@mantine/styles","@mantine/utils","@material-ui/core","@material-ui/icons","@mathematikoi/jsonapi","@mdx-js/react", -"@microsoft/api-extractor","@microsoft/tsdoc","@microsoft/tsdoc-config","@middy/core","@middy/http-json-body-parser", -"@middy/util","@ministryofjustice/frontend","@mswjs/interceptors","@mui/icons-material","@mui/lab","@mui/material", -"@mui/system","@mui/x-date-pickers","@neato/guider","@ng-doc/core","@ng-doc/ui-kit","@ng-doc/utils", -"@nomicfoundation/hardhat-chai-matchers","@npmcli/arborist","@npmcli/map-workspaces","@npmcli/node-gyp", -"@npmcli/run-script","@npmcorp/marky-markdown","@npmtuanmap/ex-vel-expedita-impedit","@npmtuanmap/psychic-guide", -"@npmtuanmap/recusandae-recusandae-nam-et","@npmtuanmap/sed-quo-nemo-rerum","@npmtuanmap/velit-esse-velit-magnam", -"@nrwl/devkit","@nrwl/tao","@nrwl/workspace","@nx/devkit","@nx/esbuild","@nx/eslint","@nx/express","@nx/js","@nx/nest", -"@nx/node","@nx/workspace","@oclif/command","@oclif/config","@oclif/core","@oclif/plugin-help","@octokit/rest", -"@opentiny/vue","@opentiny/vue-renderless","@opentiny/vue-theme","@opentiny/vue-theme-mobile","@otterhttp/cookie", -"@otterhttp/request","@otterhttp/response","@otterhttp/send","@pact-foundation/pact","@patrtorg/a-ad-expedita", -"@patrtorg/a-ut-amet","@patrtorg/asperiores-vel-accusantium","@patrtorg/aspernatur-dolorum-ducimus", -"@patrtorg/autem-et-hic", -"@patrtorg/consectetur-culpa-non","@patrtorg/consectetur-repudiandae-consequuntur", -"@patrtorg/consequatur-voluptatum-officiis","@patrtorg/ducimus-magni-quibusdam","@patrtorg/enim-magni-hic", -"@patrtorg/est-corrupti-deleniti","@patrtorg/eveniet-tempore-maiores","@patrtorg/illum-sapiente-quos", -"@patrtorg/laborum-doloribus-voluptate","@patrtorg/libero-doloribus-omnis","@patrtorg/libero-voluptas-sequi", -"@patrtorg/magnam-aut-adipisci","@patrtorg/maiores-quidem-quo","@patrtorg/molestias-molestias-ut", -"@patrtorg/nam-eius-unde","@patrtorg/pariatur-deleniti-quaerat","@patrtorg/porro-labore-eos","@patrtorg/quae-earum-eius", -"@patrtorg/quos-quasi-ipsa","@patrtorg/sapiente-eos-magnam","@patrtorg/sapiente-exercitationem-sit", -"@patrtorg/tenetur-animi-reprehenderit","@perseid/store","@phosphor/widgets","@phun-ky/speccer","@polymer/polymer", -"@qooxdoo/framework","@quasar/extras","@readyplayerme/visage","@reduxjs/toolkit","@rollup/plugin-commonjs", -"@rollup/plugin-node-resolve","@sanity/tsdoc","@scalar/api-reference","@scalar/fastify-api-reference", -"@serenity-js/protractor","@serenity-js/webdriverio","@sinonjs/fake-timers","@storybook/addon-docs", -"@subwallet/react-ui","@supernovaio/sdk","@supernovaio/sdk-exporters","@supernovaio/supernova-sdk", -"@sveltejs/eslint-config","@sveltejs/kit","@sveltejs/vite-plugin-svelte","@svgr/webpack","@swc/core", -"@swenkerorg/maiores-voluptatibus-nemo","@swenkerorg/modi-dolorum-provident","@swenkerorg/nulla-voluptates-voluptates", -"@swisspost/design-system-styles","@symbiotejs/symbiote","@synion/md-docs","@taktikorg/aut-distinctio-repellat", -"@taktikorg/consectetur-quo-quos","@taktikorg/corporis-nihil-odit","@taktikorg/deleniti-qui-dolorem", -"@taktikorg/dolor-ratione-quibusdam","@taktikorg/harum-reprehenderit-perferendis","@taktikorg/illum-accusamus-possimus", -"@taktikorg/ipsa-totam-aperiam","@taktikorg/iste-ex-tempore","@taktikorg/itaque-nam-eos", -"@taktikorg/itaque-tempore-exercitationem","@taktikorg/maiores-dolores-aut","@taktikorg/molestias-fuga-possimus", -"@taktikorg/nam-esse-animi","@taktikorg/necessitatibus-repudiandae-officia","@taktikorg/nisi-reprehenderit-amet", -"@taktikorg/placeat-voluptates-dolorum","@taktikorg/praesentium-dolorum-quis","@taktikorg/praesentium-neque-ipsam", -"@taktikorg/quo-reiciendis-quibusdam","@taktikorg/recusandae-ratione-veniam","@taktikorg/similique-natus-officia", -"@taktikorg/suscipit-modi-ratione","@taktikorg/tempore-veniam-in","@taktikorg/unde-animi-omnis", -"@taktikorg/velit-nobis-blanditiis","@taktikorg/voluptatem-pariatur-tenetur","@tanem/svg-injector", -"@tanstack/react-query","@tanstack/svelte-query","@teamhanko/hanko-frontend-sdk","@testing-library/cypress", -"@testing-library/dom","@testing-library/jest-dom","@testing-library/jest-native","@testing-library/react", -"@testing-library/user-event","@tinyhttp/app","@tinyhttp/cookie","@tinyhttp/cookie-signature","@tinyhttp/cors", -"@tinyhttp/etag","@tinyhttp/forwarded","@tinyhttp/proxy-addr","@tinyhttp/req","@tinyhttp/res","@tinyhttp/router", -"@tinyhttp/send","@tinyhttp/type-is","@tinyhttp/url","@tsparticles/engine","@twurple/ebs-helper","@types/estree", -"@typescript-eslint/eslint-plugin","@typescript-eslint/parser","@typescript-eslint/utils","@ucloud-fe/react-components", -"@udecode/plate-core","@uiw/react-button","@uiw/react-icon","@uiw/react-input","@uiw/react-overlay-trigger","@uiw/utils", -"@unleash/proxy","@uploadcare/file-uploader","@vitejs/plugin-legacy","@vitejs/plugin-react", -"@vue/eslint-config-typescript","@wesleytodd/openapi","@wuxh/dumi","@zitterorg/adipisci-quae-eius", -"@zitterorg/aspernatur-pariatur-occaecati","@zitterorg/at-esse-odit","@zitterorg/cum-ipsum-beatae", -"@zitterorg/doloremque-ut-omnis","@zitterorg/est-sunt-quos","@zitterorg/eum-veritatis-placeat", -"@zitterorg/fluffy-waddle","@zitterorg/glowing-barnacle","@zitterorg/illum-perferendis-consectetur", -"@zitterorg/itaque-nisi-veritatis","@zitterorg/probable-octo","@zitterorg/upgraded-fishstick", -"@zkportal/aleo-oracle-sdk","abort-controller","accepts","acl","acorn","acorn-walk","action-cli","adm-zip","after", -"agenda","aid-guard1","airtap","ajv","ajv-formats","although-line-wall-corn","amqp","amqplib","analsorhost-simple-bs", -"angular","angular-animate","angular-cli","angular-material","ansi-colors","ansi-escapes","ansi-regex","ansi-styles", -"ansis","ant-design-vue","antd","antfu","anyway-south-boy-pilot","api-console","apidoc","apidoc-markdown","apn", -"apollo-cache-inmemory","apollo-client","apollo-link","apollo-link-http","app-root-path","appium-android-driver", -"apple-transportation-web3-locate","applicationinsights","appsync-client-node","archiver","arg","argparse", -"arrangement-tell-arrange","array.prototype.flatmap","arrify","assert","assert-plus","assume","async","async-listen", -"async-retry","async-validator","atob","aud","auto-changelog","auto-install","autoprefixer","ava", -"awesome-typescript-loader","aws-sdk","axe-core","axios","azure-storage","babel","babel-cli","babel-core","babel-eslint", -"babel-generator","babel-helper-fixtures","babel-helper-plugin-test-runner","babel-helper-vue-jsx-merge-props", -"babel-jest","babel-loader","babel-plugin-add-module-exports","babel-plugin-dynamic-import-node", -"babel-plugin-external-helpers","babel-plugin-import","babel-plugin-istanbul","babel-plugin-lodash", -"babel-plugin-module-resolver","babel-plugin-named-asset-import","babel-plugin-syntax-dynamic-import", -"babel-plugin-syntax-jsx","babel-plugin-transform-async-to-generator","babel-plugin-transform-class-properties", -"babel-plugin-transform-decorators-legacy","babel-plugin-transform-es2015-block-scoping", -"babel-plugin-transform-es2015-modules-commonjs","babel-plugin-transform-es2015-template-literals", -"babel-plugin-transform-object-rest-spread","babel-plugin-transform-react-jsx", -"babel-plugin-transform-react-remove-prop-types","babel-plugin-transform-regenerator","babel-plugin-transform-runtime", -"babel-polyfill","babel-preset-airbnb","babel-preset-env","babel-preset-es2015","babel-preset-react", -"babel-preset-react-app","babel-preset-stage-0","babel-preset-stage-1","babel-preset-stage-2","babel-preset-stage-3", -"babel-register","babel-runtime","babel-template","babel-traverse","babel-types","babelify","babylon","backbone", -"baqend","bark-needs-visit4", -"base-64","base-individual-comfortable-crop","base64-js","basic-auth","batuta","bcrypt","bcrypt-nodejs","bcryptjs", -"bearcat","beautify-benchmark","beauty-foot-compass5","beefy","believed-usually-greater-passage","benchmark", -"best-lips-shoulder","best-valley2","between-cry-additional","beyond","bfj","bignumber.js","bindings","bip39", -"bizcharts","bl","blanket","blessed","blessed-contrib","blockchain-am5","blockchain-baby","blockchain-back1", -"blockchain-closely","blockchain-directly","blockchain-egg","blockchain-happily","blockchain-language","blockchain-own8", -"blockchain-record","blockchain-scientist","blocked","bluebird","bn.js","body-parser","bookshelf","boom","bootstrap", -"bootstrap-sass","bower","boxen","brain","branch-body-web3-feel","branch-camera-web3-organization","brfs", -"broccoli-funnel","broccoli-merge-trees","broccoli-test-helper","brought-tried-whether8","browser-sync","browserify", -"browserify-shim","browserslist","bs58","bson","btoa","buble", -"buffer","buffer-equal","bufferutil","built-who-entire","builtin-modules","bulma","bump-cli","bundle-collapser","bunyan", -"busboy","bytebuffer","bytes","c8","cac","cache-manager","call-bind","camelcase","caniuse","caniuse-lite","canvas", -"careful-faster-dirty-matter","case-sensitive-paths-webpack-plugin","casperjs","caught-brain-service0","chai", -"chai-as-promised","chai-passport-strategy","chai-subset","chalk","chance","chance-able-necessary-bell","change-case", -"changelogen","chart.js","cheerio","chicken-fell-spread","child_process","child-process-promise","choerodon-ui", -"chokidar","ci-info","ckeditor5","classnames","clean-css","clean-webpack-plugin","clear","clear-module","cli", -"cli-boxes","cli-color","cli-cursor","cli-spinner","cli-spinners","cli-table","cli-table2","cli-table3","cli-truncate", -"cli-ux","clipanion","clipboard","clipboardy","cliui","clone","clsx", -"clui","co","co-prompt","code","codecov","codemirror","coffee-script","coffeescript","color","colorette","colors", -"columnify","command-exists","command-line-args","command-line-usage","commander","commitizen","commitlint", -"common-tags","component-emitter","compression","concat-stream","concurrently","config","configstore","connect", -"connect-flash","connect-history-api-fallback","connect-mongo","connect-redis","consola","consolidate", -"content-disposition","content-type","contenthook","conventional-changelog","conventional-changelog-cli", -"conventional-changelog-conventionalcommits","convert-source-map","cookie","cookie-parser","cookie-session", -"cookie-signature","copy-to-clipboard","copy-webpack-plugin","copyfiles","corcojs-qrcode","corcojs-qrcode-logo", -"cordova","core-js","cors","cosmiconfig","coveralls","cpy-cli","crawler","crc","create-hash","create-react-class", -"critical","cron","croner","cronnor","cropperjs","cross-env", -"cross-fetch","cross-spawn","crypto","crypto-browserify","crypto-js","cson-parser","cspell","css", -"css-declaration-sorter","css-functions-list","css-loader","css-minimizer-webpack-plugin","css-select","css-tree", -"cssdb","cssesc","cssnano","cssstyle","csstype","csurf","csv","csv-generate","csv-parse","csv-stringify","csvtojson", -"cucumber","cuid","cypress","cz-conventional-changelog","d3","d3-array","d3-scale","d3-selection","d3-shape", -"dable-effect","daisyui","dance-you-thou","dargs","datafire","date-fns","dateformat","dayjs","deasync","debounce", -"debug","decamelize","decompress","dedent","dedupe","deep-assign","deep-consist-ability3","deep-diff","deep-eql", -"deep-equal","deep-extend","deepmerge","del","del-cli","delay","depcheck","depd","dependency-check","depth-clay-tax7", -"detect-indent", -"detect-port","did-enter-lay","diff","diff2html","difference-mile-pocket5","directed-graph-typed","dirty-chai", -"discord-backend-manager","discord.js","dist","distance-its-clear-rate","dmd","dmd-grunt-jsdoc2md","dnd-multi-backend", -"dnode","doc-detective","doc-detective-core","docco","docgen","dockerode","docpad","docschema","docsify-tabs","doctoc", -"documentation","documentdb","docusaurus","docusaurus-lunr-search","dom-helpers","dom-serializer","dom-to-image-more", -"dompurify","dot","dotenv","dotenv-expand","download","download-git-repo","doxdox","doxdox-cli","doxdox-core", -"doxdox-parser-dox","doxdox-parser-jsdoc","doxdox-renderer-bootstrap","doxdox-renderer-json","doxdox-renderer-markdown", -"draft-js","dropzone","dtslint","dubnium","dumi","dumi-cm","duplexer","dw-neit-antd","each","echarts","eclint","ejs", -"elasticsearch","electricity-death-web3-story","electron","electron-builder","electron-packager","electron-prebuilt", -"electron-rebuilder", -"element-resize-detector","element-ui","eleventy","elliptic","email-templates","emailjs","ember-cli","ember-cli-babel", -"ember-cli-htmlbars","emmet","emotion","encodeurl","end-of-stream","enhanced-resolve","enquirer","ent","enumtype", -"envify","envinfo","enzyme","enzyme-adapter-react-16","enzyme-adapter-utils","enzyme-shallow-equal","errorhandler", -"es-check","es-value-fixtures","es5-ext","es5-shim","es6-error","es6-promise","es6-promisify","es6-shim","esbuild", -"escape-html","escape-string-regexp","escodegen","eslint","eslint-config-airbnb","eslint-config-airbnb-base", -"eslint-config-airbnb-typescript","eslint-config-google","eslint-config-gulp","eslint-config-oclif", -"eslint-config-oclif-typescript","eslint-config-prettier","eslint-config-react-app","eslint-config-semistandard", -"eslint-config-standard","eslint-config-unjs","eslint-config-xo","eslint-config-xo-lass","eslint-doc-generator", -"eslint-import-resolver-typescript","eslint-loader","eslint-plugin-ava","eslint-plugin-babel","eslint-plugin-compat", -"eslint-plugin-es5","eslint-plugin-eslint-comments","eslint-plugin-eslint-plugin","eslint-plugin-flowtype", -"eslint-plugin-html","eslint-plugin-import","eslint-plugin-jest", -"eslint-plugin-jsdoc","eslint-plugin-jsonc","eslint-plugin-jsx-a11y","eslint-plugin-markdown","eslint-plugin-mocha", -"eslint-plugin-n","eslint-plugin-node","eslint-plugin-prettier","eslint-plugin-promise","eslint-plugin-react", -"eslint-plugin-react-hooks","eslint-plugin-regexp","eslint-plugin-security","eslint-plugin-sonarjs", -"eslint-plugin-standard","eslint-plugin-svelte","eslint-plugin-testing-library","eslint-plugin-tsdoc", -"eslint-plugin-unicorn","eslint-plugin-vitest","eslint-plugin-vue","eslint-remote-tester","eslint-scope", -"eslint-visitor-keys","eslintrc","esm","espree","esprima","estraverse","estree-walker","etag","ethereumjs-tx", -"ethereumjs-util","evalmd","event-stream","eventemitter2","eventemitter3","events","excellent-difficult-good","execa", -"exit","expect","expect-type","expect.js","express","express-adexe","express-autodoc","express-generator", -"express-handlebars","express-jwt","express-session","express-tools","express-typed-rpc","express-validator", -"express-zod-api","extend","extend-shallow","extract-text-webpack-plugin","extract-zip","facing-cook", -"fair-tower-web3-store","faker","fancy-log","fast-check", -"fast-csv","fast-deep-equal","fast-glob","fast-plist","fast-xml-parser","fastclick","fastify","father","faucet","fbjs", -"fe-pilot","feature-rising-small7","femo","fetch-mock","fibers","figlet","figures","file-loader","file-saver", -"file-type","filesize","finalhandler","find-cache-dir","find-up","findup-sync","firan-logging","firebase", -"firebase-admin","firebase-tools","fixpack","fixturify","flat","flatpak-bundler","flatpickr","flightplan","flow-bin", -"flowbite","fluent-ffmpeg","flux","follow-redirects","font-awesome","for-each","forever", -"fork-ts-checker-webpack-plugin","fork-ts-checker-webpack-plugin-alt","form-data","formidable","formik","fresh", -"fresh-dangerous","friendly-errors-webpack-plugin","front-matter","fs","fs-extra","fs-jetpack","fs-promise","fsevents", -"fstream","ftp","functions-have-names","fur-race-web3-pale","fuse.js","futen","fuzzy", -"gaze","gc-signals","generator-angular","generator-gulp-angular","generator-nitro","generic-pool","gensequence", -"gentle-party-other","geolib","get-package-type","get-port","get-stdin","get-stream","get-tsconfig","getmac","gh-pages", -"ghooks","github","github-buttons","glob","glob-parent","global","globals","globby","gm","gmll","google-spreadsheet", -"googleapis","got","government-letter-web3-till","govuk-frontend","graceful-fs","gradually-current-chief","graph-these", -"graphql","graphql-tag","graphql-tools","gray-matter","grpc","grunt","grunt-angular-templates","grunt-auto-release", -"grunt-browserify","grunt-bump","grunt-cli","grunt-concurrent","grunt-contrib-clean","grunt-contrib-compass", -"grunt-contrib-concat","grunt-contrib-connect","grunt-contrib-copy","grunt-contrib-csslint","grunt-contrib-cssmin", -"grunt-contrib-htmlmin","grunt-contrib-imagemin","grunt-contrib-internal","grunt-contrib-jshint","grunt-contrib-less", -"grunt-contrib-nodeunit","grunt-contrib-sass","grunt-contrib-uglify","grunt-contrib-watch", -"grunt-conventional-changelog","grunt-conventional-github-releaser", -"grunt-eslint","grunt-jscs","grunt-jsdoc","grunt-karma","grunt-mocha-test","grunt-newer","grunt-notify","grunt-npm", -"grunt-sass","grunt-saucelabs","grunt-shell","grunt-simple-mocha","grunt-spritesmith","grunt-usemin","gts","guarapi", -"gulp","gulp-angular-templatecache","gulp-atom-electron","gulp-autoprefixer","gulp-awspublish","gulp-azure-storage", -"gulp-babel","gulp-bom","gulp-bower","gulp-browserify","gulp-buffer","gulp-bump","gulp-cache","gulp-cached", -"gulp-changed","gulp-clean","gulp-clean-css","gulp-coffee","gulp-compass","gulp-concat","gulp-concat-css", -"gulp-conflict","gulp-connect","gulp-copy","gulp-csscomb","gulp-csslint","gulp-cssnano","gulp-csso","gulp-data", -"gulp-eslint","gulp-file-include","gulp-filter","gulp-flatmap","gulp-flatten","gulp-format-md","gulp-ftp", -"gulp-gh-pages","gulp-git","gulp-gzip","gulp-handlebars","gulp-header","gulp-html-replace","gulp-htmlmin", -"gulp-iconfont","gulp-if","gulp-ignore","gulp-image-resize","gulp-imagemin", -"gulp-include","gulp-inject","gulp-inline-css","gulp-install","gulp-istanbul","gulp-jade","gulp-jasmine","gulp-jscs", -"gulp-jshint","gulp-json-editor","gulp-less","gulp-livereload","gulp-load-plugins","gulp-minify-css","gulp-minify-html", -"gulp-mocha","gulp-newer","gulp-ng-annotate","gulp-nodemon","gulp-notify","gulp-plugin-extras","gulp-plumber", -"gulp-postcss","gulp-preprocess","gulp-prompt","gulp-react","gulp-remote-src","gulp-rename","gulp-replace","gulp-rev", -"gulp-rev-replace","gulp-ruby-sass","gulp-sass","gulp-sftp","gulp-shell","gulp-size","gulp-sourcemaps", -"gulp-strip-debug","gulp-stylus","gulp-svg-sprite","gulp-svgmin","gulp-svgstore","gulp-template","gulp-tsb", -"gulp-tslint","gulp-typescript","gulp-uglify","gulp-uncss","gulp-usemin","gulp-useref","gulp-util","gulp-vinyl-zip", -"gulp-watch","gulp-webpack","gulp-webserver","gulp-zip","gulp.spritesmith","gzip-size","hallmark","hammerjs", -"handlebars","hapi","happy-dom","happy-meant", -"hard-cool-rhythm-continued","has-flag","has-parts-ice-fact","has-symbols","hash-sum","hasown","hast-util-raw", -"hast-util-sanitize","hast-util-select","hast-util-to-estree","hast-util-to-html","hast-util-to-jsx-runtime", -"hast-util-to-string","hast-util-to-text","hastscript","hay-against-any-hurry","hbs","he","heapdump","helmet", -"heroicons","hexlet-pairs","hexo","highland","highlight.js","hiredis","history","history-brass-sound", -"hit-running-special8","hoek","hogan.js","hoist-non-react-statics","homebridge","hono","hope-slight-walk1", -"hosted-git-info","how-to-npm","html-dom-parser","html-element-attributes","html-encoding-sniffer","html-entities", -"html-escaper","html-loader","html-minifier","html-minifier-terser","html-pdf","html-react-parser","html-tags", -"html-to-image","html-to-text","html-validate","html-webpack-plugin","htmlnano","htmlparser2","http","http-errors", -"http-proxy","http-proxy-agent","http-proxy-middleware","http-server","http-status","http-status-codes","https", -"https-proxy-agent", -"husky","hyperquest","hyphenate-style-name","i","i18n","i18next","i18next-gridly-backend","iconv-lite", -"identity-obj-proxy","ignore","image-size","imagemagick","imagemin","imagemin-pngquant","imap","immer", -"immutability-helper","immutable","import-fresh","import-local","impress","in-publish","indent-string","inert","inferno", -"inflection","inherits","ini","iniparser","ink","inline-style-parser","innosetup-compiler","inquirer", -"inquirer-autocomplete-prompt","inside-throw","instagram-node","install","interpret","intl","intl-tel-input","invariant", -"inversify","ionic","ionicons","ioredis","ip","irc","is","is-ci","is-glob","is-installed-globally","is-plain-obj", -"is-plain-object","is-potential-custom-element-name","is-promise","is-stream","is-url","is-wsl","isarray","isobject", -"isomorphic-fetch","istanbul","itwcw-package-analytics","iview", -"jackspeak","jade","jake","jarallax","jasmine","jasmine-core","jasmine-node","jest","jest-canvas-mock","jest-cli", -"jest-diff","jest-environment-jsdom","jest-environment-jsdom-fourteen","jest-environment-node","jest-extended", -"jest-html-reporters","jest-junit","jest-pnp-resolver","jest-resolve","jest-util","jest-watch-typeahead","jest-worker", -"jimp","jiti","jodit","jodit-react","johnny-five","joi","jotai","jquery","jquery-ui","js-base64","js-beautify", -"js-cookie","js-yaml","jsarch","jscpd","jscs","jsdoc","jsdoc-api","jsdoc-to-markdown","jsdom","jsdom-no-contextify", -"jsesc","jshint","jshint-stylish","json-2-csv","json-loader","json-schema","json-server","json-stable-stringify", -"json-stringify-safe","json5","jsonc-parser","jsonfile","jsonschema","JSONStream","jsonwebtoken","jspm","jstates", -"jszip","jwt-decode","jwt-simple","karma", -"karma-browserify","karma-browserstack-launcher","karma-chai","karma-chrome-launcher","karma-coverage", -"karma-detect-browsers","karma-edge-launcher","karma-firefox-launcher","karma-ie-launcher","karma-jasmine","karma-mocha", -"karma-mocha-reporter","karma-phantomjs-launcher","karma-qunit","karma-rollup-preprocessor","karma-safari-launcher", -"karma-sauce-launcher","karma-sinon","karma-sourcemap-loader","karma-spec-reporter","karma-webpack","keycode","keypress", -"keyv","kleur","knex","knip","known-css-properties","knox","koa","koa-body","koa-bodyparser","koa-compose","koa-logger", -"koa-mount","koa-router","koa-static","kue","lab","label-lungs-court4","language-perfectly-blow-series", -"late-dress-mail5","latest-version","lazy.js","lead-alike-web3-applied","leaflet","left-pad","leftpad","lerna","less", -"less-loader","level","leveldown","levelup","leven","libnpmdiff","libnpmexec","libnpmfund","libphonenumber-js","liftoff", -"lilconfig","linkifyjs","lint-staged","listr", -"listr2","lit-element","lite-server","live-server","livereload","load-grunt-config","load-grunt-tasks","loader-utils", -"local-web-server","localforage","localtunnel","lockfile-lint","lodash","lodash-es","lodash.assign","lodash.camelcase", -"lodash.clonedeep","lodash.debounce","lodash.defaults","lodash.flatten","lodash.foreach","lodash.get","lodash.isempty", -"lodash.isequal","lodash.isfunction","lodash.isobject","lodash.isplainobject","lodash.isstring","lodash.map", -"lodash.memoize","lodash.merge","lodash.omit","lodash.pick","lodash.set","lodash.template","lodash.throttle", -"lodash.uniq","log","log-symbols","log-update","log4js","loglevel","long","loopback","loose-envify","lowdb","lru-cache", -"lucide","luck-rubber-do","lwip","lws","madwizard","magic-string","magmastream","main-bower-files","make-dir", -"make-node","mammoth","manifest","mantine-contextmenu","many-favorite6","map-stream","mapboxgl-legend","markdown", -"markdown-it","markdown-it-anchor","markdown-it-container","markdown-it-emoji","markdown-pdf","markdown-table", -"markdown-to-jsx","markdown-toc","markdownlint","markdownlint-cli","marked","marky-markdown","matcha","material-ui", -"mathjs","matter-view-web3-fence","md5","md5-file","mdast-util-from-markdown","mdast-util-to-hast","mdn-data","mdxts", -"memcached","memfs","memoize-one","memory-cache","memory-fs","memorystream","memwatch","mental-oxygen-dozen","meow", -"merge","merge-stream","metalsmith","meteor","method-override","methods","microbundle","micromark","micromatch","mime", -"mime-types","min-heap-typed","mini-css-extract-plugin","minify","minimatch","minimist","mirror-jet-printed-supper", -"missing-sport-living","mkcert","mkdirp","mlly","mobx","mobx-react","mocha","mocha-headless-chrome", -"mocha-junit-reporter","mocha-lcov-reporter","mock-fs","mock-property","mock-require","mock-stdin","mockdate","mockery", -"mockjs","moleculer","moment","moment-timezone","monaco-yaml","monads-io","mongo-express","mongodb","mongoose","monitor", -"monitor-dashboard","monk","morgan","motor-positive-spirit","move-wolf-throughout","movie-obtain-tail-prepare","mqtt", -"ms","mssql","msw","mud-slowly-five3","multer","multimatch","multiparty","multiple-cucumber-html-reporter","mustache", -"muuri","mysql","mysql2","mz","n","nails-wild-interest-garden","nan","nano","nano-css","nanoid","native-keymap", -"nativefier","nativescript","natural","nconf","ncp","near-social-bridge","nedb","needle","nest-commander","newman", -"newrelic","next-auth","nextjs","ng-mocks","ng-zorro-antd","ngrok","nib","nightmare","nightwatch","nine-yes-merely6", -"nise","nock","node-addon-api","node-cache","node-containerpattern","node-dev","node-dir", -"node-emoji","node-fetch","node-forge","node-gcm","node-geocoder","node-gyp","node-html-parser","node-inspector", -"node-mocks-http","node-notifier","node-oauth2-server","node-powertools","node-pre-gyp","node-pty","node-red", -"node-sass","node-schedule","node-static","node-uuid","node-watch","node-windows","node-xlsx","node.extend","nodegit", -"nodemailer","nodemon","nodeunit","nodewebkit","nolangjs","nomnom","nopt","normalize-path","normalize-url", -"normalize-wheel","normalize.css","np","npm","npm-check","npm-check-updates","npm-package-arg","npm-package-json-lint", -"npm-packlist","npm-registry-fetch","npm-run-all","npm-run-all2","npm-run-path","npm-to-yarn","npm-windows-upgrade", -"npmcli","npmignore","npmlog","nprogress","nsp","nuke-cli","numeral","nunjucks","nvm","nvmrc","nwsapi","nx","nyc","oas", -"oas-normalize","oauth", -"object-assign","object-hash","object-inspect","object-keys","object-path","object.assign","object.entries", -"observe-food-motion-hidden","on-finished","once","onchange","one-how-hand","onoff","open","open-cli", -"openapi-client-axios","openapi2html","opencv","opener","openweather","opn","optimist", -"optimize-css-assets-webpack-plugin","optionator","ora","orchestrator","orm","os","osenv","outdent","outline-slowly", -"overlayscrollbars","ovsx","p-event","p-map","p-queue","p-timeout","p23","pa11y","pacote","pageres","paintor","pako", -"para-cli","para-client-js","parallelshell","parse","parse5","parseurl","passport","passport-facebook","passport-local", -"passport-oauth","passport-oauth2","passport-strategy","path","path-browserify","path-exists","path-is-absolute", -"path-to-regexp","pathe","paypal-server-api","pdfjs","pdfkit", -"performance-now","pg","phantom","phantomjs","phantomjs-prebuilt","phonegap","pi-gpio","picocolors","picomatch", -"pie-case-nor-great","pify","pino","pinst","pitch-somehow-earth-brave","pixelmatch","pkg-dir","pkg-up","pkginfo", -"playwright","plist","plugin-error","plur","pluralize","pm2","pngjs","pnp-webpack-plugin","pnpm","pnpx", -"poe-api-manager","polished","political-plan-careful","popper.js","portfinder","postcss","postcss-calc","postcss-cli", -"postcss-color-functional-notation","postcss-colormin","postcss-convert-values","postcss-cssnext","postcss-custom-media", -"postcss-custom-properties","postcss-custom-selectors","postcss-discard-comments","postcss-discard-duplicates", -"postcss-discard-empty","postcss-discard-overridden","postcss-flexbugs-fixes","postcss-html", -"postcss-image-set-function","postcss-import","postcss-load-config","postcss-loader","postcss-merge-longhand", -"postcss-merge-rules","postcss-minify-font-values","postcss-minify-gradients","postcss-minify-params", -"postcss-minify-selectors","postcss-modules-local-by-default","postcss-nested","postcss-nesting","postcss-normalize", -"postcss-normalize-charset", -"postcss-normalize-positions","postcss-normalize-string","postcss-normalize-unicode","postcss-normalize-url", -"postcss-normalize-whitespace","postcss-ordered-values","postcss-prefix-selector","postcss-preset-env", -"postcss-reduce-initial","postcss-safe-parser","postcss-scss","postcss-selector-parser","postcss-svgo", -"postcss-unique-selectors","postcss-value-parser","postgrejs","posthtml","pouchdb","power-assert","pre-commit","preact", -"prepare-package","prettier","prettier-plugin-jsdoc","prettier-plugin-organize-imports","prettier-plugin-packagejson", -"prettier-plugin-svelte","prettierrc","pretty-bytes","pretty-error","pretty-format","pretty-ms","pretty-quick", -"prettyjson","prisma","prismjs","private-bower","proc-log","process","progress","progress-bar-webpack-plugin","promise", -"promise-polyfill","promises-aplus-tests","promo-server","prompt","prompts","prop-types","property-information", -"protobufjs","protractor","proxy","proxyquire","publish-please","pug","pull-stream","pump","punycode","puppeteer", -"purgecss","q","qr-image","qrcode-terminal","qs", -"query-string","querystring","queue","queue-typed","quill","qunit","qunit-dom","qunitjs","raf","ramda","random-words", -"randombytes","randomstring","range-parser","raven","raw-body","raw-loader","rc","rc-slider","rc-tooltip","rc-util", -"rcw-plugin","react","react-addons-css-transition-group","react-addons-shallow-compare","react-apollo", -"react-app-polyfill","react-bootstrap","react-color","react-copy-to-clipboard","react-datepicker","react-dev-utils", -"react-dnd","react-dnd-html5-backend","react-docgen","react-dom","react-dropzone","react-error-overlay","react-helmet", -"react-hook-form","react-hot-loader","react-i18next","react-icons","react-intersection-observer","react-intl","react-is", -"react-lifecycles-compat","react-markdown","react-modal","react-motion","react-native","react-native-keychain", -"react-native-vector-icons","react-number-format","react-onclickoutside","react-property","react-redux","react-refresh", -"react-responsive","react-router","react-router-dom","react-router-redux","react-scripts","react-select", -"react-slick","react-styleguidist","react-svg","react-tap-event-plugin","react-test-renderer","react-toastify", -"react-tools","react-transition-group","react-virtualized","reactify","reactstrap","read","read-pkg","read-pkg-up", -"readable-stream","readline","readline-sync","recall-shut-say","recast","recently-building-save","rechoir","recompose", -"recursive-readdir","redis","redoc","redocusaurus","redux","redux-actions","redux-form","redux-logger","redux-saga", -"redux-thunk","reflect-metadata","regenerate","regenerator-runtime","rehype","rehype-autolink-headings", -"rehype-external-links","rehype-mdx-code-props","rehype-parse","rehype-raw","rehype-slug","rehype-stringify", -"release-it","remap-istanbul","remark","remark-cli","remark-gfm","remark-html","remark-mermaidjs","remark-parse", -"remark-preset-github","remark-preset-wooorm","remark-rehype","remarkable","replace-ext","replace-in-file","request", -"request-promise","request-promise-native","require-all","require-dir","requireindex","requirejs", -"reselect","resize-observer-polyfill","resolve","resolve-from","resolve-url-loader","rest-chronicle","restify","restler", -"restore-cursor","rethinkdb","retry","rewire","rfdc","rimraf","robotjs","rollup","rollup-plugin-babel", -"rollup-plugin-buble","rollup-plugin-cleanup","rollup-plugin-commonjs","rollup-plugin-dts","rollup-plugin-json", -"rollup-plugin-license","rollup-plugin-node-builtins","rollup-plugin-node-globals","rollup-plugin-node-resolve", -"rollup-plugin-replace","rollup-plugin-sourcemaps","rollup-plugin-terser","rollup-plugin-typescript", -"rollup-plugin-typescript2","rollup-plugin-uglify","rollup-plugin-visualizer","rollup-pluginutils","routes","rsnext", -"rsvp","rtlcss","run-sequence","run-series","rx","rxjs","rxjs-compat","safe-buffer","safe-publish-latest","sails", -"salt-type-oldest-faster","sand-have-metal6","sanitize-filename","sanitize-html","sass","sass-loader","sat-local","sax", -"scheduler","schema-markdown-doc","schema-utils","science-knowledge-truth","seblakhotspicy","secp256k1","seedrandom", -"selenium-webdriver","semantic-release","semantic-ui-react", -"semistandard","semver","send","seneca","sentiment","sequelize","serialize-javascript","serialport","serve", -"serve-favicon","serve-index","serve-static","server-destroy","serverless-finch","serverless-spy","sha1","shallowequal", -"sharp","shell-quote","shelljs","shinning-continued-becoming","shortid","should","showdown","shx","sick-typical-court7", -"signal-exit","similar-cheese-loss","simple-assi-animation","simple-git","simple-prompts-web3","single-spa", -"sink-mighty-orbit0","sink-rod-lamp","sinon","sinon-chai","sinopia","sirv","size-limit","sizeitup","skapi-js", -"sky-buy-web3-rock","slash","slice-ansi","slow-deps","slow-voice-spell-pass","slug","slugify","small-grow-mix4", -"snake-seven-recall-interior","snazzy","soap","socket.io","socket.io-client","sockjs-client","source-map", -"source-map-js","source-map-loader","source-map-support","space-separated-tokens","spectaql", -"speech-section-part-frozen","spirit-labor-cheese","split", -"split2","spring-dust-wall-size","sprintf","sprintf-js","sprity","sqlite3","ssh2","ssri","st.db","stack-trace", -"standard","standard-version","star-location","start-server-and-test","statsd","statuses","stock-independent-balloon", -"storybook","storybook-django","straiforos-compodoc","strange-lady-riding9","stream-assert","stream-transform", -"streamii","strftime","string","string-strip-html","string-width","stringify-entities","strip-ansi","strip-bom", -"strip-json-comments","stripe","strongloop","style-dictionary","style-loader","style-to-js","style-to-object", -"styled-components","styled-jsx","stylehacks","stylelint","stylelint-config-standard", -"stylelint-declaration-strict-value","stylelint-order","stylelint-scss","stylus","stylus-loader", -"sugar-policeman-entire","sugarss","sun-grass-circle0","superagent","superjson","supertest","supertest-as-promised", -"supervisor","support-vessels-web3-vessels","supports-color","surrounded-characteristic-or-rain","svelte","svelte-check", -"svelte-preprocess","svg-sprite","svgo", -"sw-precache-webpack-plugin","swagger-autogen","swagger-inline","swagger-themes","swagger-ui-express", -"swam-darkness-weak","swig","swiper","sync-request","systeminformation","systemjs","tail-iron-became5","tailwind", -"tailwind-merge","tailwindcss","tap","tap-spec","tapable","tape","tar","tar-fs","tar-stream","tarant", -"tarant-sync-router-express","tdl","tdlib-native","temp","tempy","terminal-kit","terminal-menu","terser", -"terser-webpack-plugin","test-cutting","test-runner","test-snippets","testcafe","testcontainers","testdouble","testem", -"text-table","three","throttle-debounce","through","through2","throw-did-darkness4","thunkify","tildify","time-grunt", -"tinper-bee","tiny-lr","tinybench","tinycolor2","tinymce","tinypool","tinyspy","tmp","toastify-react-native","tocbot", -"toml","touch","tough-cookie","tracer","traffic-carry-opinion","train-stick-swept7", -"traverse","tree-kill","tribe-leaving-basket","trpc","trumpet","ts-cache-mongoose","ts-japi","ts-jest","ts-loader", -"ts-migrate-mongoose","ts-morph","ts-node","ts-patch-mongoose","ts-pnp","ts-rule-engine","tsconfig-paths","tsd", -"tsd-lite","tshy","tslib","tslint","tslint-config-prettier","tslint-react","tsup","tsx","turndown","tv4","tweetnacl", -"twemoji","twit","twitter","type-coverage","type-fest","type-is","typedoc","typedoc-material-theme", -"typedoc-plugin-extras","typedoc-plugin-markdown","typedocs","typegen","typegoose","typeorm","typescript", -"typescript-eslint","typescript-formatter","typescript-plugin-css-modules","typings","uglify-es","uglify-js", -"uglifyjs-webpack-plugin","uid-safe","uiw","uj-apidoc-core","ulid","ultrahtml","unbuild","underscore", -"underscore.string","undici","unified","unique-random-array","unist-util-visit","untildify","unusual-rope", -"unzip","update-notifier","urijs","url","url-join","url-loader","url-parse","urllib","user","user-home","useragent", -"utf8","util","utils-merge","uuid","uvu","valid-url","validate-commit-msg","validate-npm-package-name","validator", -"vant","vary","vasync","vercel","verror","vhost","victory-mouth","viewerjs","vinyl","vinyl-buffer","vinyl-fs", -"vinyl-source-stream","vinyl-sourcemaps-apply","virtual-dom","vite","vite-plugin-api-routes","vitepress","vitest", -"vorpal","vows","vsce","vscode-debugprotocol","vscode-nls-dev","vscode-textmate","vue","vue-class-component", -"vue-eslint-parser","vue-hot-reload-api","vue-i18n","vue-loader","vue-property-decorator","vue-router", -"vue-style-loader","vue-template-compiler","vuex","walk","walk-sync","warning","watch","watchify","waterline","wd", -"web3","web3-be", -"web3-capital","web3-compass","web3-eve-cli","web3-exactly6","web3-fruit","webpack","webpack-bundle-analyzer", -"webpack-cli","webpack-dev-middleware","webpack-dev-server","webpack-hot-middleware","webpack-manifest-plugin", -"webpack-merge","webpack-node-externals","webpack-sources","webshot","websocket","webtorrent","webworker-threads", -"weinre","whatwg-fetch","when","which","winreg","winston","winston-daily-rotate-file","winston-transport","wiredep", -"word-wrap","wordwrap","workbox-webpack-plugin","world-toy-kill","wrap-ansi","wrench","write-file-atomic","ws","x-ray", -"xhr","xlsx","xml-js","xml2js","xml2json","xmlbuilder","xmldom","xmlhttprequest","xo","xpath","xregexp","xss","xstate", -"xtend","xterm","yaml","yamljs","yargs","yargs-parser","yarn","yarnpkg","yarnrc","yauzl","yeoman-environment", -"yeoman-generator","yn","yo", -"yoctocolors-cjs","yonode","yosay","zmq","zod","zod-http-schemas","zombie","zone.js","zuul","@nx/cypress", -"@nx/eslint-plugin","@nx/jest","@nx/storybook","framer-motion","teajusgula","@mui/styled-engine","jsdoc-parse", -"@commercetools-frontend/constants","downshift","postcss-focus-visible","@augment-vir/common","@biomejs/biome", -"@commercetools-frontend/mc-scripts","@jsonforms/vanilla-renderers","@jsonforms/vue","@jsonforms/vue-vanilla", -"hast-util-from-html","hot-shots","madr","native-run","rehype-katex","supports-hyperlinks","swr","typed-binary", -"ua-parser-js","void-elements","@adonisjs/core","@aneuhold/be-ts-lib","@capacitor/assets", -"@devtea2025/blanditiis-numquam-expedita-neque","@devtea2025/doloremque-voluptas-facere-nemo", -"@devtea2025/quisquam-quod-ab-aut","@devtea2025/suscipit-assumenda-a-assumenda", -"@devtea2025/voluptatibus-vero-magni-rerum","@diahkomalasarinpm/odio-facilis-beatae", -"@diahkomalasarinpm/praesentium-sint-dolorem","@enact/core","@envelop/core","@ionic/cli","@jsonforms/angular", -"@jsonforms/examples","@npmtea2024/quasi-nisi-doloremque-fugit","@ptkhanh94npm/iusto-libero-aperiam", -"@ptkhanh94npm/quis-saepe-velit","@renyii/vue-renderless","@teamteanpm2024/aperiam-fugit-error", -"@teamteanpm2024/architecto-alias-quod","@teamteanpm2024/aut-voluptatum-vero","@teamteanpm2024/beatae-aliquid-id", -"@teamteanpm2024/expedita-labore-ipsum","@teamteanpm2024/odio-fugiat-in", -"@teamteanpm2024/voluptatibus-reprehenderit-odit","@testing-library/react-hooks","@zibuthe7j11/deserunt-quasi-impedit", -"anser","aws-sdk-client-mock","cupertino-pane","eruda","fasteejs","foundation-sites","gradient-string","grommet", -"html-url-attributes","magnific-popup","next","postcss-opacity-percentage","pwa-asset-generator","rapidoc", -"react-native-animatable","react-native-collapsible","react-swipeable-list","react-textarea-autosize","readme-md", -"recharts","riot","sortablejs","tdesign-mobile-vue","uploadcare-widget","wait-on","weui","zustand","fontsource","nextra", -"synckit","tinyglobby","tstyche","@ibyar/expressions","@mantine/carousel","@mantine/code-highlight","@mantine/dropzone", -"@mantine/nprogress","@mantine/spotlight","@mantine/store","@mantine/tiptap","allure-js-commons","express-intlayer", -"is-mobile","rehype-mermaid","@bugsnag/react-native","@enact/ui","@enact/webos","@ionic/angular", -"@npmtuanmap/velit-nobis-nostrum-nam","@skylernpm/hic-inventore-dolores","@skylernpm/reiciendis-non-corrupti", -"admin-lte","backendless","smartbanner.js","zarm","@enact/sandstone","perfect-scrollbar","react-responsive-select", -"titanium","@antora/logger","@asyncapi/generator","@docusaurus/core","@ionic/react","@juggle/resize-observer", -"@mui/base","@mui/private-theming","@mui/utils","@nestjsx/crud","@nestjsx/crud-typeorm","@netlify/framework-info", -"@next/env","@pmmmwh/react-refresh-webpack-plugin","@pothos/core","@storybook/addon-backgrounds","@strapi/strapi", -"@svgr/core","@svgr/hast-util-to-babel-ast","@tinyhttp/encode-url","@tinyhttp/logger", -"@tsparticles/interaction-external-push","@tsparticles/move-base","@tsparticles/shape-emoji", -"@tsparticles/updater-color","@tsparticles/updater-opacity","@tsparticles/updater-out-modes","@uppy/companion", -"@vuepress/core","@vuepress/markdown","@vuepress/markdown-loader","@vuepress/plugin-active-header-links", -"@vuepress/plugin-last-updated","@vuepress/plugin-nprogress","@vuepress/plugin-register-components", -"@vuepress/plugin-search","@vuepress/shared-utils","@vuepress/theme-default","@walletconnect/browser-utils", -"@walletconnect/iso-crypto","@walletconnect/legacy-modal","@walletconnect/legacy-provider", -"@walletconnect/socket-transport","@wordpress/primitives","angular-messages","angular-mocks","ansi-align", -"blocking-proxy","body-scroll-lock","broccoli","broccoli-builder","broccoli-middleware","browserstack","camelcase-css", -"character-entities","character-entities-html4","character-entities-legacy","character-reference-invalid","client-only", -"color-string","comma-separated-tokens","condense-newlines","css-mediaquery","css.escape","csso","dashdash", -"decap-cms-backend-aws-cognito-github-proxy","decap-cms-backend-azure","decap-cms-backend-bitbucket", -"decap-cms-backend-git-gateway", -"decap-cms-backend-github","decap-cms-backend-gitlab","decap-cms-backend-proxy","decap-cms-backend-test", -"device-detector-js","docsify","docsify-cli","dom7","enzyme-to-json","epub2","escape-goat","esdoc", -"eslint-rule-documentation","globals-docs","hast-util-is-element","hast-util-parse-selector","hast-util-to-parse5", -"hast-util-whitespace","html-parse-stringify","html-void-elements","http-graceful-shutdown","icss-utils", -"inferno-create-element","inferno-hydrate","inferno-vnode-flags","infima","ink-docstrap","jasminewd2", -"jest-preset-angular","jest-preview","logging-helpers","lws-index","micromark-extension-gfm-tagfilter", -"micromark-util-encode","micromark-util-html-tag-name","mobile-detect","nth-check","parse-entities","postcss-js", -"postcss-modules-values","query-selector-shadow-dom","rc-hammerjs","rdme","react-colorful","react-device-detect", -"react-easy-router","react-fast-compare","react-native-file-viewer","react-native-lightbox-v2","react-native-progress", -"react-native-svg-charts","react-native-youtube-iframe","react-popper","react-responsive-modal","react-style-singleton", -"text-hex","tsparticles","tua-body-scroll-lock","typedoc-default-themes","use-callback-ref","use-sidecar","vconsole", -"vitefu","vue-perfect-scrollbar", -"vuepress","wait-for-expect","webdriver-js-extender","webdriver-manager","widest-line","worktop", -"@antora/playbook-builder","@applitools/utils","@dataui/crud","@mui/types","@tsparticles/shape-circle", -"@tsparticles/updater-life","@tsparticles/updater-rotate","drag-drop","plasmo","react-h5-audio-player", -"@arethetypeswrong/cli","arethetypeswrong","astro","astrojs","cookiecutter","degit","tseslint","@web/test-runner-mocha", -"colord","@expressots/core","@tsparticles/interaction-particles-links","@astrojs/starlight", -"@expressots/adapter-express","@expressots/shared","@tsparticles/interaction-external-bounce", -"@tsparticles/interaction-external-remove","@tsparticles/move-parallax","@tsparticles/shape-polygon", -"@tsparticles/shape-square","pinia","@floating-ui/react","@tsparticles/shape-image","astro-expressive-code", -"netlify-cms-backend-test","rehype-expressive-code","@augment-vir/assert","cssfilter", -"@amaui/icons-material-rounded-react","@appium/types","@dataui/crud-typeorm","@tsparticles/basic", -"@tsparticles/updater-size","@onesy/icons-material-rounded-react","@tsparticles/interaction-external-grab", -"@tsparticles/interaction-particles-collisions","react-native-macos","@tsparticles/interaction-external-repulse", -"@tsparticles/slim","@ionic/react-router","@immobiliarelabs/backstage-plugin-gitlab-backend","@tsparticles/shape-star", -"kuler","@scalar/nextjs-api-reference","netlify-cms-backend-bitbucket","vendors","@busy-hour/blaze", -"@busy-hour/blaze-types","payload", -"attw","@egjs/flicking","body-scroll-lock-upgrade","@casl/ability","neostandard","@appium/schema","@modern-js/utils", -"@types/xast","css-what","grunt-svgmin","@modern-js/node-bundle-require","@axe-core/playwright","tsdown", -"careful-downloader","sonner","@ckeditor/ckeditor5-collaboration-core","embla-carousel-reactive-utils","react-smooth", -"globrex","@ckeditor/ckeditor5-real-time-collaboration","@inquirer/type","grammy","@tsparticles/plugin-hex-color", -"@tsparticles/plugin-hsl-color","@udecode/plate","loki","netlify-cms-backend-gitlab","teeny-tap","emoji-js","mercurius", -"publint","unbundle","@walletconnect/http-connection","convex-helpers","eslint-plugin-react-refresh","gulp-jsdoc3", -"netlify-cms-backend-git-gateway","borp","pagefind","@pinia/testing","leaflet-gesture-handling","@headlessui/vue", -"remeda","rolldown","valibot","netlify-cms-backend-proxy","lefthook","@nuxt/ui","country-codes-flags-phone-codes", -"embla-carousel-react","input-otp","zoroaster","embla-carousel","@assistant-ui/react","@csstools/css-calc", -"@globalart/nestjs-swagger","@graphiql/plugin-doc-explorer","@mastra/core","next-router-mock","vue-draggable-next", -"@tsparticles/plugin-rgb-color","react-native-lightbox","rolldown-vite","react-native-aes-crypto", -"@inquirer/figures","@lobehub/chat","@inquirer/confirm","@upstash/context7-mcp","@storybook/addon-vitest", -"@walletconnect/heartbeat","lory.js","react-camera-pro","react-native-nitro-modules","@csstools/css-color-parser", -"@csstools/color-helpers","shadcn","@tanstack/virtual-core","otp-io","survey-core","@appium/support","@intlayer/api", -"@prisma/dev","@architect/asap","canvaskit-wasm","@edsdk/n1ed-react","react-error-boundary","@crxjs/vite-plugin", -"@observablehq/plot","skia-canvas","@flmngr/flmngr-react","@vitest/browser-playwright","md-to-pdf","@applitools/eyes", -"@applitools/driver","@applitools/screenshoter","@tsparticles/interaction-external-slow","@tsparticles/shape-line", -"@antora/cli","@antora/navigation-builder","@openspacelabs/react-native-zoomable-view","@testcontainers/postgresql", -"unplugin","@antora/redirect-producer","@antora/site-publisher","@appium/logger","planck","stage-js","oxfmt","syncpack", -"nolyfill","@appium/base-driver","@inquirer/expand","@inquirer/select","@c15t/backend", -"@react-native-vector-icons/common","@antora/content-classifier","@tsparticles/interaction-particles-attract", -"@popperjs/core","animejs","blurup","encryptor","flickity","jstz","lexxy","mapboxgl","mongoid","nums","orms", -"pannellum","psql","svgs","swiperjs","tributejs","twbs","xbytes","dependencies","devDependencies","keywords","ts", -"big.js","@alifd/field","@alifd/overlay","@alifd/validate","shallow-element-equals","@types/react-transition-group", -"jsonp","ts-mocha","tsconfck","@types/co","html5shiv","react-axe","sass-true","@types/md5","react-live","solarlunar", -"@types/chai","@types/glob","@types/node","mochawesome","@types/jsonp","@types/react","@types/yargs","@types/big.js", -"@types/enzyme","@types/lodash","react-cropper","@types/webpack","simulate-event","@types/fs-extra","@types/inquirer", -"chrome-launcher","react-draggable","@types/react-dom","@types/stylelint","console-polyfill","fast-sass-loader", -"@alifd/doc-parser","@alifd/meet-react","@types/babel-core","@types/classnames","markdown-it-prism","@alifd/sass-mapper", -"@types/react-redux","@alifd/sass-tracker","@types/postcss-calc","@alifd/api-extractor","@alifd/dts-generator", -"babel-plugin-espower","es6-promise-polyfill","@alifd/adaptor-helper","@alifd/sassdoc-parser","eslint-plugin-cypress", -"cypress-image-snapshot","@alifd/adaptor-generate","@types/lodash.clonedeep","@types/react-router-dom", -"@alifd/babel-preset-next","@babel/plugin-syntax-jsx","css-split-webpack-plugin","karma-webdriver-launcher", -"@alifd/eslint-config-next","@types/react-test-renderer","node-sass-package-importer","stylelint-csstree-validator", -"@alifd/stylelint-config-next","stylelint-config-recommended","@types/cypress-image-snapshot", -"@types/react-copy-to-clipboard","babel-plugin-generator-prettier","@types/postcss-custom-properties", -"babel-plugin-transform-object-assign","babel-plugin-transform-proto-to-assign", -"babel-plugin-transform-react-es6-displayname","fusion","fusion design","component","ui toolkit","react-components", -"components","design","frontend","Angular CLI","Angular DevKit","core","devkit","sdk","blueprints","code generation", -"scaffolding","schematics","template","tooling","cdk","development","kit","@jridgewell/sourcemap-codec","compiler", -"@standard-schema/spec","material","material design","xhr2","@types/dom-navigation","router","rc-field-form", -"utility-types","lodash.mergewith","lodash.assignwith","normalize-css-color","react-native-codegen", -"@floating-ui/react-native","@rc-component/mini-decimal","react-native-modal-popover", -"@bang88/react-native-ultimate-listview","bisheng","jsonml.js","enquire.js", -"@types/jest","shell-utils","react-native-web","@ant-design/tools","@types/prop-types","@types/react-native", -"ant-design-palettes","react-github-button","react-native-mocker","react-document-title","react-native-screens", -"antd-mobile-demo-data","@react-navigation/stack","@types/lodash.mergewith","react-native-reanimated", -"@react-navigation/native","react-native-gesture-handler","@testing-library/react-native", -"@ant-design/icons-react-native","react-native-safe-area-context","metro-react-native-babel-preset", -"@react-native-community/eslint-config","ant","react-component","ui","framework","mobile","react native", -"@types/lodash-es","@ant-design/icons","@inline-svg-unique-id/react","icon","@auth/core","set-cookie-parser", -"@sveltejs/package","@sveltejs/adapter-auto","@types/set-cookie-parser","authentication","authjs","jwt","sveltekit", -"oidc","passwordless","fs-readdir-recursive","@jridgewell/trace-mapping","@types/fs-readdir-recursive", -"@babel/helper-transform-fixture-test-runner","6to5","es6","transpile","transpiler","js-tokens", -"@babel/helper-validator-identifier","charcodes","import-meta-resolve","gensync","@babel/helpers","@babel/template", -"@babel/generator","@jridgewell/remapping","@babel/helper-module-transforms","@babel/helper-compilation-targets", -"@types/debug","@types/semver", -"@types/resolve","@babel/plugin-syntax-flow","@types/convert-source-map","@babel/plugin-transform-flow-strip-types", -"@babel/plugin-transform-modules-commonjs","classes","const","harmony","let","modules","var","@babel/helper-fixtures", -"@babel/helper-string-parser","@babel/helper-check-duplicate-nodes","javascript","parser","tc39","ecmascript", -"@babel/helper-create-class-features-plugin","@babel/helper-plugin-test-runner","babel-plugin","moo","luxon","entities", -"liquidjs","iso-639-1","bcp-47-normalize","dependency-graph","@11ty/lodash-custom","@11ty/posthtml-urls", -"please-upgrade-node","@11ty/eleventy-utils","@11ty/recursive-copy","@11ty/dependency-tree","@sindresorhus/slugify", -"node-retrieve-globals","posthtml-match-helper","@11ty/dependency-tree-esm","@11ty/eleventy-dev-server", -"@11ty/eleventy-plugin-bundle","pretty","@iarna/toml","nano-staged","@zachleat/noop","@eslint/eslintrc", -"markdown-it-abbr","simple-git-hooks","jsx-async-runtime","@11ty/eleventy-img","@mdx-js/node-loader", -"@vue/server-renderer","zod-validation-error","@11ty/eleventy-plugin-rss","@11ty/eleventy-plugin-webc", -"@11ty/eleventy-plugin-syntaxhighlight","static-site-generator","static-site","ssg","website","jekyll","blog", -"templates","generator","11ty", -"html","liquid","@rollup/plugin-terser","@rollup/plugin-typescript","@types/benchmark","@types/bytes","stringifier", -"stylesheet","ast","css-parser","css-ast","css-tools","format","preprocessor","@advanced-rest-client/arc-icons", -"@advanced-rest-client/arc-marked","@advanced-rest-client/clipboard-copy","@advanced-rest-client/http-code-snippets", -"@advanced-rest-client/markdown-styles","@anypoint-web-components/anypoint-button", -"@anypoint-web-components/anypoint-collapse","@anypoint-web-components/anypoint-dropdown", -"@anypoint-web-components/anypoint-item","@anypoint-web-components/anypoint-listbox","@api-components/amf-helper-mixin", -"@api-components/api-annotation-document","@api-components/api-body-document","@api-components/api-example-generator", -"@api-components/api-headers-document","@api-components/api-parameters-document", -"@api-components/api-responses-document","@api-components/api-security-documentation", -"@api-components/http-method-label","lit-html","@advanced-rest-client/arc-demo-helper", -"@advanced-rest-client/oauth-authorization","@anypoint-web-components/anypoint-checkbox", -"@anypoint-web-components/anypoint-input","@anypoint-web-components/anypoint-styles", -"@api-components/api-model-generator","@api-components/api-navigation","@api-components/api-request", -"@api-components/api-server-selector","@commitlint/config-conventional","@open-wc/eslint-config","@open-wc/testing", -"@web/dev-server","@web/test-runner","@web/test-runner-playwright","typescript-lit-html-plugin","api-components", -"method-documentation","@graphql-typed-document-node/core","@wry/caches","@wry/equality","@wry/trie","optimism","apollo", -"hooks","client","cache","@asyncapi/parser","@rollup/plugin-babel","babel-plugin-source-map-support", -"asyncapi","@nicolo-ribaudo/eslint-scope-5-internals","@types/eslint","@typescript-eslint/scope-manager", -"@babel/plugin-syntax-decorators","array.prototype.concat","babel-plugin-polyfill-es-shims", -"object.getownpropertydescriptors","decorators","@babel/plugin-syntax-export-namespace-from","@babel/compat-data", -"@babel/plugin-syntax-object-rest-spread","@babel/plugin-transform-parameters","@babel/helper-module-imports", -"babel-plugin-polyfill-corejs2","babel-plugin-polyfill-corejs3","babel-plugin-polyfill-regenerator", -"@babel/runtime-corejs3","derequire","core-js-compat","@babel/preset-modules","@babel/helper-validator-option", -"@babel/plugin-transform-for-of","@babel/plugin-transform-spread","@babel/plugin-transform-classes", -"@babel/plugin-transform-literals","@babel/plugin-transform-new-target","@babel/plugin-transform-modules-amd", -"@babel/plugin-transform-modules-umd","@babel/plugin-transform-regenerator","@babel/plugin-transform-dotall-regex", -"@babel/plugin-transform-json-strings","@babel/plugin-transform-object-super","@babel/plugin-transform-sticky-regex", -"@babel/plugin-transform-block-scoping","@babel/plugin-transform-destructuring","@babel/plugin-transform-function-name", -"@babel/plugin-transform-typeof-symbol","@babel/plugin-transform-unicode-regex","@babel/plugin-syntax-import-assertions", -"@babel/plugin-syntax-import-attributes","@babel/plugin-transform-duplicate-keys", -"@babel/plugin-transform-dynamic-import","@babel/plugin-transform-reserved-words", -"@babel/plugin-syntax-unicode-sets-regex","@babel/plugin-transform-arrow-functions", -"@babel/plugin-transform-private-methods","@babel/plugin-transform-unicode-escapes", -"@babel/plugin-transform-class-properties","@babel/plugin-transform-modules-systemjs", -"@babel/plugin-transform-regexp-modifiers","@babel/plugin-transform-numeric-separator", -"@babel/plugin-transform-optional-chaining","@babel/plugin-transform-property-literals", -"@babel/plugin-transform-template-literals","@babel/plugin-transform-async-to-generator", -"@babel/plugin-transform-class-static-block","@babel/plugin-transform-object-rest-spread", -"@babel/plugin-transform-unicode-sets-regex","@babel/plugin-transform-computed-properties", -"@babel/plugin-transform-shorthand-properties","@babel/plugin-transform-export-namespace-from", -"@babel/plugin-transform-block-scoped-functions","@babel/plugin-transform-optional-catch-binding", -"@babel/plugin-transform-unicode-property-regex","@babel/plugin-transform-exponentiation-operator", -"@babel/plugin-proposal-private-property-in-object","@babel/plugin-transform-async-generator-functions", -"@babel/plugin-transform-member-expression-literals","@babel/plugin-transform-private-property-in-object", -"@babel/plugin-transform-nullish-coalescing-operator","@babel/plugin-transform-explicit-resource-management", -"@babel/plugin-transform-logical-assignment-operators","@babel/plugin-transform-named-capturing-groups-regex", -"@babel/plugin-bugfix-firefox-class-in-computed-class-key","@babel/plugin-bugfix-safari-class-field-initializer-scope", -"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", -"@babel/plugin-transform-duplicate-named-capturing-groups-regex", -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression","@babel/plugin-transform-react-jsx", -"@babel/plugin-transform-react-display-name","@babel/plugin-transform-react-jsx-development", -"@babel/plugin-transform-react-pure-annotations","@babel/plugin-transform-typescript","babel-preset","pirates", -"clone-deep","@babel/helper-globals","@apidevtools/json-schema-ref-parser","@biz-dev-ops/web-components", -"@cucumber/gherkin-streams","@iframe-resizer/child","@iframe-resizer/parent","awilix","bpmn-js", -"json-schema-merge-allof","markdown-it-attrs","markdown-it-codetabs","markdown-it-footnote","markdown-it-multimd-table", -"markdown-it-plantuml-ex","markdown-it-task-lists","pdfjs-viewer-element","prince","svg-pan-zoom","swagger-ui-dist", -"web-resource-inliner","stylelint-config-standard-scss","md","openapi","bpmn","bdd","feature","async-exit-hook", -"transport","logger","backend","mri","p-limit","term-size","spawndamnit","@changesets/git","@changesets/pre", -"@changesets/read","@changesets/types","@changesets/write","@changesets/config", -"@changesets/errors","@changesets/logger","@manypkg/get-packages","package-manager-detector","@changesets/changelog-git", -"@inquirer/external-editor","@changesets/get-release-plan","@changesets/apply-release-plan", -"@changesets/should-skip-package","@changesets/get-dependents-graph","@changesets/assemble-release-plan","human-id", -"@chatscope/chat-ui-kit-styles","@fortawesome/fontawesome-free","@semantic-release/changelog","@semantic-release/git", -"@semantic-release/github","chokidar-cli","rollup-plugin-peer-deps-external","chat","reactjs","user interface","ui kit", -"communication","conversation","toolkit","library","reusable","feed","comments","social","talk","ckeditor","ckeditor 5", -"ckeditor5-feature","ckeditor5-plugin","ckeditor5-dll","@ckeditor/ckeditor5-integrations-common","wysiwyg","rich text", -"editor","contentEditable","editing","angular2","angular 5","ng","@ckeditor/ckeditor5-icons","@ckeditor/ckeditor5-enter", -"@ckeditor/ckeditor5-editor-balloon","operational transformation","ot","collaboration","collaborative","real-time", -"ckeditor5-build","@ckeditor/ckeditor5-editor-classic","@ckeditor/ckeditor5-font","@ckeditor/ckeditor5-alignment", -"@ckeditor/ckeditor5-editor-decoupled","@ckeditor/ckeditor5-editor-inline","blurhash","es-toolkit","ckeditor5-lib", -"@ckeditor/ckeditor5-watchdog", -"@ckeditor/ckeditor5-undo","@ckeditor/ckeditor5-select-all","color-parse","color-convert","vanilla-colorful", -"@types/color-convert","@ckeditor/ckeditor5-editor-multi-root","vue.js","vue component","vue.js component", -"@commitlint/format","@commitlint/lint","@commitlint/load","@commitlint/read","@commitlint/types","tinyexec", -"@commitlint/test","@commitlint/utils","@compodoc/live-server","@compodoc/ngd-transformer","@polka/send-type", -"bootstrap.native","decache","loglevel-plugin-prefix","lunr","neotraverse","opencollective-postinstall","os-name", -"polka","tablesort","vis-network","module","graph","@comunica/types","semantic","actor","messages","nf","@docsearch/css", -"@docsearch/js","@eslint/markdown","@rollup/plugin-replace","@stackblitz/sdk","bundlewatch","clean-css-cli", -"find-unused-sass-variables","hammer-simulator","hugo-bin","karma-coverage-istanbul-reporter", -"karma-jasmine-html-reporter","postcss-combine-duplicated-selectors","rollup-plugin-istanbul","sass-embedded", -"stylelint-config-twbs-bootstrap","vnu-jar","mobile-first","responsive","front-end","web","tokenizer","media query", -"matches","polyfill","postcss-plugin", -"pseudo","selector","custom","declarations","progressive","properties","utility","variables","vars","specificity", -"@cucumber/ci-environment","@cucumber/cucumber-expressions","@cucumber/gherkin","@cucumber/gherkin-utils", -"@cucumber/html-formatter","@cucumber/junit-xml-formatter","@cucumber/message-streams","@cucumber/messages", -"@cucumber/pretty-formatter","@cucumber/tag-expressions","assertion-error-formatter","capital-case","error-stack-parser", -"has-ansi","knuth-shuffle-seeded","read-package-up","string-argv","util-arity","yup","@cucumber/compatibility-kit", -"@cucumber/query","@eslint/compat","@types/dirty-chai","@types/express","@types/has-ansi","@types/lodash.merge", -"@types/luxon","@types/mocha","@types/mustache","@types/mz","@types/progress","@types/sinon-chai", -"@types/sinonjs__fake-timers","@types/stream-buffers","@types/tmp","chai-exclude","dependency-lint","genversion", -"reindent-template-literals","stream-to-string","testing","gherkin","tests","@types/mock-fs","@types/semver-compare", -"@types/signale","jest-mock-process","semver-compare","signale","deven","@diplodoc/cut-extension", -"@diplodoc/file-extension","@diplodoc/tabs-extension","@diplodoc/utils", -"get-root-node-polyfill","github-slugger","markdown-it-deflist","markdown-it-sup","markdownlint-rule-helpers", -"quick-lru","ts-dedent","@diplodoc/babel-preset","@diplodoc/lint","@diplodoc/tsconfig","@types/css", -"@types/github-slugger","@types/js-yaml","@types/markdown-it","@types/markdown-it-attrs","@types/sanitize-html", -"@vitest/coverage-v8","@vitest/ui","esbuild-sass-plugin","jest-serializer-html","markdown-it-testgen","terminal-link", -"yandex","docs","yfm","tool","tools","magic-bytes.js","@discordjs/util","discord-api-types","@sapphire/snowflake", -"@discordjs/collection","@sapphire/async-queue","@vladfrangu/async_event_emitter","turbo","@discordjs/scripts", -"eslint-config-neon","@favware/cliff-jumper","eslint-formatter-pretty","@discordjs/api-extractor", -"esbuild-plugin-version-injector","discord","api","rest","discordapp","discordjs","types","tsdoc","generated", -"@apidevtools/swagger-parser","@aws-sdk/client-s3","@diplodoc/client","@diplodoc/markdown-translation", -"@diplodoc/mermaid-extension","@diplodoc/openapi-extension","@doc-tools/yfm2xliff","@octokit/core", -"@types/json-stringify-safe","@yandex-cloud/nodejs-sdk","bem-cn-lite","threads","threads-plugin","@types/async", -"@types/chalk", -"@types/html-escaper","@types/mime-types","@types/shelljs","@types/tar-stream","markdown-it-meta","@types/markdownlint", -"@yandex-cloud/eslint-config","@yandex-cloud/prettier-config","@yandex-cloud/tsconfig","@tinyhttp/cookie-parser", -"cookie-encrypter","github-markdown-css","greenlock-express","memorystore","minisearch","selfsigned","sitemap","sql.js", -"workerpool","@types/body-parser","@types/compression","@types/express-session","@types/formidable","@types/prompts", -"@types/sass","@types/sql.js","@types/uuid","@types/workerpool","esbuild-wasm","razor","sqlite","aspx","@dnd-kit/core", -"@dnd-kit/modifiers","@dnd-kit/sortable","@dnd-kit/utilities","@stylistic/eslint-plugin","@stylistic/stylelint-plugin", -"@wordpress/dependency-extraction-webpack-plugin","lightningcss","swc-loader","@wordpress/api-fetch","scss","mixin","js", -"WordPress","@tsconfig/node22","@types/lodash.camelcase","@types/pretty-ms",".d.ts","definitions","@emotion/hash", -"@emotion/memoize","@emotion/serialize","babel-plugin-macros","find-root","stylis","babel-check-duplicated-nodes", -"styles","css-in-js","@emotion/cache","@emotion/sheet","@emotion/utils","@definitelytyped/dtslint", -"@emotion/is-prop-valid","@emotion/use-insertion-effect-with-fallbacks","@emotion/react","warun","dot-prop", -"installed-check","@typescript-eslint/types","@eslint-community/eslint-plugin-mysticatea","eslint-plugin", -"@fakeyanss/redocly-openapi-core","decko","json-pointer","mark.js","openapi-sampler","react-tabs","stickyfill", -"swagger2openapi","url-template","@cypress/webpack-preprocessor","@hot-loader/react-dom","@size-limit/preset-app", -"@types/dompurify","@types/enzyme-to-json","@types/json-pointer","@types/lunr","@types/mark.js","@types/marked", -"@types/prismjs","@types/styled-components","@types/tapable","@types/webpack-env","@wojtekmaj/enzyme-adapter-react-17", -"esbuild-loader","license-checker","lodash.noop","unfetch","OpenAPI","OpenAPI Specification","Swagger","JSON-Schema", -"API","REST","React.js","@floating-ui/dom","use-isomorphic-layout-effect","tooltip","popover","dropdown","menu","popup", -"positioning","font","font family","google fonts","inter","Inter","typeface","variable","roboto","Roboto", -"@fortawesome/fontawesome-common-types","awesome","fontawesome","svg", -"@babel/plugin-external-helpers","@fortawesome/free-brands-svg-icons","@semantic-release/exec","icons","server", -"@electron/rebuild","node-abi","@electron-forge/cli","electron-devtools-installer","@grandlinex/swagger-mate", -"@types/jsonwebtoken","@types/ms","@fastify/deepmerge","@graphql-markdown/graphql","@graphql-markdown/logger", -"@graphql-markdown/utils","@graphql-markdown/types","graphql-schema","graphql-markdown","@docusaurus/utils", -"@graphql-markdown/cli","@docusaurus/types","plugin","@tailwindcss/aspect-ratio","@tailwindcss/forms", -"@tailwindcss/typography","basename","filemanager-webpack-plugin","remove-files-webpack-plugin","sass-lint", -"configuration","boilerplate","@hapi/accept","@hapi/ammo","@hapi/boom","@hapi/bounce","@hapi/call","@hapi/catbox", -"@hapi/catbox-memory","@hapi/heavy","@hapi/hoek","@hapi/mimos","@hapi/podium","@hapi/shot","@hapi/somever", -"@hapi/statehood","@hapi/subtext","@hapi/teamwork","@hapi/topo","@hapi/validate","@hapi/code","@hapi/eslint-plugin", -"@hapi/inert","@hapi/lab","@hapi/vision","@hapi/wreck","comment-parser","@homer0/eslint-plugin", -"@homer0/prettier-config","@vitest/coverage-istanbul","leasot","@standard-schema/utils","@sinclair/typebox", -"@typeschema/core", -"@typeschema/main","@typeschema/zod","@vinejs/vine","ajv-errors","arktype","check-export-map","class-transformer", -"class-validator","computed-types","effect","fluentvalidation-ts","fp-ts","io-ts","io-ts-types","monocle-ts", -"newtype-ts","nope-validator","superstruct","typanion","vest","vite-tsconfig-paths","scheme","validation", -"scheme-validation","hookform","effect-ts","nope","TypeBox","typeschema","vine","standard-schema","google translate api", -"google translate","google api","translate api","google","translate","@atlaskit/pragmatic-drag-and-drop", -"@atlaskit/pragmatic-drag-and-drop-auto-scroll","@atlaskit/pragmatic-drag-and-drop-hitbox","vue3","vue 3.x", -"@ctrl/tinycolor","@inquirer/ansi","cli-width","fast-wrap-ansi","mute-stream","@inquirer/testing","@types/mute-stream", -"answer","answers","ask","base","command","command-line","confirm","generate","hyper","input","inquire","interface", -"iterm","node","nodejs", -"promptly","question","scaffold","scaffolder","stdin","stdout","terminal","tty","yeoman","zsh","@stencil/core","domino", -"@stencil/sass","@capacitor/core","playwright-core","@playwright/test","@capacitor/haptics","@capacitor/keyboard", -"@ionic/eslint-config","@capacitor/status-bar","@ionic/prettier-config","@rollup/plugin-virtual", -"@stencil/vue-output-target","@stencil/react-output-target","@stencil/angular-output-target","stencil","app","webapp", -"capacitor","progressive web app","pwa","layout","console","wrap","table","@istanbuljs/schema","test","coverage", -"@itwin/itwinui-illustrations-react","@swc/helpers","@tanstack/react-virtual","react-table","@swc/cli", -"eslint-plugin-require-extensions","design-system","itwin","itwinui","ux","@jest/console","@jest/pattern", -"@jest/reporters","@jest/test-result","@jest/transform","exit-x","jest-changed-files","jest-config","jest-haste-map", -"jest-message-util","jest-regex-util","jest-resolve-dependencies","jest-runner","jest-runtime","jest-snapshot", -"jest-validate", -"jest-watcher","@jest/test-sequencer","@jest/test-utils","@types/graceful-fs","@types/micromatch","easy","facebook", -"immersive","instant","mocking","painless","runner","sandboxed","snapshot","@jest/schemas", -"@types/istanbul-lib-coverage","@types/istanbul-reports","@types/json-schema","@types/redux-mock-store", -"document-register-element","redux-mock-store","form","forms","json","jsonforms","renderengine","schema","uischema", -"customization","@date-io/dayjs","@rollup/plugin-json","rollup-plugin-copy","rollup-plugin-import-css","renderer", -"@rollup/plugin-alias","@types/object-hash","@jupyterlab/apputils","@jupyterlab/coreutils","@jupyterlab/docregistry", -"@jupyterlab/rendermime","@jupyterlab/rendermime-interfaces","@jupyterlab/services","@jupyterlab/statedb", -"@jupyterlab/translation","@jupyterlab/ui-components","@lumino/algorithm","@lumino/application","@lumino/commands", -"@lumino/coreutils","@lumino/disposable","@lumino/messaging","@lumino/polling","@lumino/properties","@lumino/signaling", -"@lumino/widgets","@jupyterlab/testing","docopt","glob2base","lodash.difference","multipipe","safe-wipe","sass-convert", -"@kobedevi/sassdoc-theme-default","scss-comment-parser", -"strip-indent","vinyl-string","babel-plugin-transform-builtin-extend","opn-cli","doc","theme","chatfanpage", -"api-connect-x","api-connect-tiwtter","@inquirer/input","@inquirer/prompts","task","list","tasklist","term","ascii", -"unicode","loading","indicator","busy","wait","idle","react-remove-scroll","ui-kit","calendar","date","picker","time", -"react-hooks","state","modal","notification","notification-manager","notification-system","prism-react-renderer", -"highlight","syntax","syntax-highlight","styling","@material-ui/types","@material-ui/utils","@material-ui/styles", -"@material-ui/system","@microsoft/api-documenter","json-api","json:api","serializer","normalizer","formatter", -"@types/mdx","jsx","mdx","@rushstack/node-core-library","@microsoft/api-extractor-model","@rushstack/terminal", -"@rushstack/ts-command-line","@rushstack/rig-package","@rushstack/heft","decoupled-local-node-rig","local-eslint-config", -"JSDoc","AEDoc","TSDoc","declaration", -"dts","bundle","alpha","beta","tsdoc-build-rig","TypeScript","jju","@types/jju","@aws/durable-execution-sdk-js", -"@aws/durable-execution-sdk-js-testing","@datastream/core","@types/aws-lambda","Lambda","Middleware","Serverless", -"Framework","AWS","AWS Lambda","Function URL","Durable function","Middy","HTTP","JSON","Body Parser","JSON Body Parser", -"@aws-sdk/client-ssm","aws-xray-sdk","helper","moj","design system","@open-draft/deferred-promise","@open-draft/logger", -"@open-draft/until","is-node-process","outvariant","strict-event-emitter","@open-draft/test-server","@ossjs/release", -"@types/cors","@types/express-fileupload","@types/follow-redirects","@types/node-fetch","@types/superagent", -"@types/supertest","@types/ws","engine.io-parser","express-fileupload","express-rate-limit","socket.io-parser", -"vitest-environment-miniflare","web-encoding","webpack-http-server","intercept","fetch","low-level","mock","spy","mui", -"@mui/core-downloads-tracker","system","@mui/x-internals","mui-x","datepicker","timepicker", -"datetimepicker","@headlessui/react","@iconify-icon/react","@mdx-js/loader","@mdx-js/mdx","@shikijs/transformers", -"@theguild/remark-npm2yarn","@types/unist","@vcarl/remark-headings","approximate-number","extra-watch-webpack-plugin", -"flexsearch","git-url-parse","mdast-util-phrasing","next-seo","react-helmet-async","rehype-extract-excerpt", -"rehype-pretty-code","remark-frontmatter","remark-heading-id","remark-link-rewrite","shiki","tailwindcss-themer", -"webpack-virtual-modules","@types/color","@types/extra-watch-webpack-plugin","@types/git-url-parse","@types/mdast", -"@repo/eslint-config","@repo/typescript-config","@repo/prettier-config","posthtml-render","posthtml-parser","esthetic", -"builder","guides","demo","ng-doc","rehype-format","hast-util-has-property","hast-util-heading-rank", -"rehype-minify-whitespace","unist-util-filter","@shikijs/rehype","ordinal","@types/chai-as-promised","ethers","hardhat", -"@types/bn.js","@nomicfoundation/hardhat-ethers","@nomicfoundation/eslint-plugin-slow-imports", -"@nomicfoundation/eslint-plugin-hardhat-internal-rules","ethereum","smart-contracts","@isaacs/string-locale-compare", -"@npmcli/fs","@npmcli/installed-package-contents","@npmcli/metavuln-calculator","@npmcli/name-from-folder", -"@npmcli/package-json","@npmcli/query","@npmcli/redact","bin-links","cacache", -"common-ancestor-path","json-stringify-nice","npm-install-checks","npm-pick-manifest","parse-conflict-json","proggy", -"promise-all-reject-late","promise-call-limit","treeverse","walk-up-path","@npmcli/eslint-config", -"@npmcli/mock-registry","@npmcli/template-oss","minify-registry-metadata","tcompare","libnpm","workspaces", -"map-workspaces","@npmcli/promise-spawn","spawk","innertext","highlights","similarity","language-ini","property-ttl", -"language-dart","language-glsl","language-haxe","language-rust","lodash.pickby","language-erlang","language-stylus", -"highlights-tokens","atom-language-diff","atom-language-nginx","github-url-to-object","markdown-it-expand-tabs", -"markdown-it-lazy-headers","oniguruma","intercept-stdout","readme","gfm","formatted","syntax highlighting","Monorepo", -"Angular","React","Web","Node","Nest","Jest","Cypress","CLI","@zkochan/js-yaml","EsBuild","Front-end","Backend","Lint", -"ESLint","Testing","Express","babel-plugin-const-enum","babel-plugin-transform-typescript-metadata","Swc", -"Tsc","@nestjs/schematics","kill-port","@nx/docker","tcp-port-used","@oclif/errors","@oclif/parser","@oclif/help", -"@oclif/plugin-plugins","fancy-test","oclif","@types/indent-string","@types/proxyquire","@types/wrap-ansi","clean-stack", -"@oclif/prettier-config","@oclif/test","@types/clean-stack","@types/ejs","@types/pnpapi","@types/sinon", -"@types/supports-color","@types/wordwrap","madge","command line","args","argv","oclif-plugin", -"@octokit/plugin-paginate-rest","@octokit/plugin-request-log","@octokit/plugin-rest-endpoint-methods", -"@octokit/auth-action","@octokit/auth-app","@octokit/fixtures-server","@octokit/request","@octokit/tsconfig", -"semantic-release-plugin-update-version-in-files","octokit","api-client","@opentiny/vue-action-menu", -"@opentiny/vue-action-sheet","@opentiny/vue-alert","@opentiny/vue-amount","@opentiny/vue-anchor","@opentiny/vue-area", -"@opentiny/vue-async-flowchart","@opentiny/vue-autocomplete","@opentiny/vue-badge","@opentiny/vue-base-select", -"@opentiny/vue-breadcrumb","@opentiny/vue-breadcrumb-item","@opentiny/vue-bulletin-board","@opentiny/vue-button", -"@opentiny/vue-button-group","@opentiny/vue-calendar","@opentiny/vue-calendar-bar","@opentiny/vue-calendar-view", -"@opentiny/vue-card","@opentiny/vue-card-group","@opentiny/vue-card-template","@opentiny/vue-carousel", -"@opentiny/vue-carousel-item","@opentiny/vue-cascader","@opentiny/vue-cascader-menu", -"@opentiny/vue-cascader-mobile","@opentiny/vue-cascader-node","@opentiny/vue-cascader-panel", -"@opentiny/vue-cascader-select","@opentiny/vue-cascader-view","@opentiny/vue-cell","@opentiny/vue-checkbox", -"@opentiny/vue-checkbox-button","@opentiny/vue-checkbox-group","@opentiny/vue-col","@opentiny/vue-collapse", -"@opentiny/vue-collapse-item","@opentiny/vue-collapse-transition","@opentiny/vue-color-picker", -"@opentiny/vue-color-select-panel","@opentiny/vue-column-list-group","@opentiny/vue-column-list-item", -"@opentiny/vue-company","@opentiny/vue-config-provider","@opentiny/vue-container","@opentiny/vue-country", -"@opentiny/vue-crop","@opentiny/vue-currency","@opentiny/vue-date-panel","@opentiny/vue-date-picker", -"@opentiny/vue-date-picker-mobile-first","@opentiny/vue-date-range","@opentiny/vue-date-table","@opentiny/vue-dept", -"@opentiny/vue-dialog-box","@opentiny/vue-dialog-select","@opentiny/vue-divider","@opentiny/vue-drawer", -"@opentiny/vue-drop-roles","@opentiny/vue-drop-times","@opentiny/vue-dropdown","@opentiny/vue-dropdown-item", -"@opentiny/vue-dropdown-menu","@opentiny/vue-dynamic-scroller","@opentiny/vue-dynamic-scroller-item", -"@opentiny/vue-espace","@opentiny/vue-exception","@opentiny/vue-fall-menu","@opentiny/vue-file-upload", -"@opentiny/vue-filter","@opentiny/vue-filter-bar","@opentiny/vue-filter-box","@opentiny/vue-filter-panel", -"@opentiny/vue-float-button","@opentiny/vue-floatbar","@opentiny/vue-floating-button","@opentiny/vue-flowchart", -"@opentiny/vue-fluent-editor","@opentiny/vue-form","@opentiny/vue-form-item","@opentiny/vue-fullscreen", -"@opentiny/vue-grid","@opentiny/vue-grid-column","@opentiny/vue-grid-manager","@opentiny/vue-grid-select", -"@opentiny/vue-grid-toolbar","@opentiny/vue-guide","@opentiny/vue-hrapprover","@opentiny/vue-image", -"@opentiny/vue-image-viewer","@opentiny/vue-input","@opentiny/vue-ip-address","@opentiny/vue-layout", -"@opentiny/vue-link","@opentiny/vue-link-menu","@opentiny/vue-load-list","@opentiny/vue-loading","@opentiny/vue-locales", -"@opentiny/vue-logon-user","@opentiny/vue-logout","@opentiny/vue-menu","@opentiny/vue-message","@opentiny/vue-milestone", -"@opentiny/vue-mind-map","@opentiny/vue-modal","@opentiny/vue-month-range","@opentiny/vue-month-table", -"@opentiny/vue-nav-menu","@opentiny/vue-notify","@opentiny/vue-number-animation","@opentiny/vue-numeric", -"@opentiny/vue-option","@opentiny/vue-option-group","@opentiny/vue-pager","@opentiny/vue-pager-item", -"@opentiny/vue-panel","@opentiny/vue-picker","@opentiny/vue-pop-upload","@opentiny/vue-popconfirm", -"@opentiny/vue-popeditor","@opentiny/vue-popover","@opentiny/vue-popup","@opentiny/vue-progress", -"@opentiny/vue-pull-refresh","@opentiny/vue-qr-code","@opentiny/vue-quarter-panel","@opentiny/vue-query-builder", -"@opentiny/vue-radio","@opentiny/vue-radio-button","@opentiny/vue-radio-group","@opentiny/vue-rate", -"@opentiny/vue-record","@opentiny/vue-recycle-scroller","@opentiny/vue-river","@opentiny/vue-roles","@opentiny/vue-row", -"@opentiny/vue-scroll-text","@opentiny/vue-scrollbar","@opentiny/vue-search","@opentiny/vue-select", -"@opentiny/vue-select-dropdown","@opentiny/vue-select-mobile","@opentiny/vue-select-view","@opentiny/vue-select-wrapper", -"@opentiny/vue-selected-box","@opentiny/vue-signature","@opentiny/vue-skeleton","@opentiny/vue-skeleton-item", -"@opentiny/vue-slider","@opentiny/vue-slider-button","@opentiny/vue-slider-button-group","@opentiny/vue-space", -"@opentiny/vue-split", -"@opentiny/vue-standard-list-item","@opentiny/vue-statistic","@opentiny/vue-steps","@opentiny/vue-sticky", -"@opentiny/vue-switch","@opentiny/vue-tab-item","@opentiny/vue-tabbar","@opentiny/vue-tabbar-item","@opentiny/vue-table", -"@opentiny/vue-tabs","@opentiny/vue-tag","@opentiny/vue-tag-group","@opentiny/vue-tag-input","@opentiny/vue-text-popup", -"@opentiny/vue-time","@opentiny/vue-time-line","@opentiny/vue-time-panel","@opentiny/vue-time-picker", -"@opentiny/vue-time-picker-mobile","@opentiny/vue-time-range","@opentiny/vue-time-select","@opentiny/vue-time-spinner", -"@opentiny/vue-timeline-item","@opentiny/vue-toggle-menu","@opentiny/vue-tooltip","@opentiny/vue-top-box", -"@opentiny/vue-transfer","@opentiny/vue-transfer-panel","@opentiny/vue-tree","@opentiny/vue-tree-menu", -"@opentiny/vue-tree-select","@opentiny/vue-upload","@opentiny/vue-upload-dragger","@opentiny/vue-upload-list", -"@opentiny/vue-user","@opentiny/vue-user-account","@opentiny/vue-user-contact","@opentiny/vue-user-head", -"@opentiny/vue-user-head-group","@opentiny/vue-user-link","@opentiny/vue-virtual-scroll-box", -"@opentiny/vue-virtual-tree","@opentiny/vue-watermark","@opentiny/vue-wizard","@opentiny/vue-year-range", -"@opentiny/vue-year-table","component-library","vue-components","opentiny","renderless-components","headless-components", -"@opentiny/utils","@opentiny/vue-hooks","esno","gulp-svg-inline","gulp-transform","otterhttp","node.js","web framework", -"header-range-parser","@otterhttp/accepts","@otterhttp/content-type","@otterhttp/proxy-address","@otterhttp/type-is", -"@otterhttp/url","@otterhttp/router","req","es-escape-html","@otterhttp/content-disposition","@otterhttp/encode-url", -"@otterhttp/errors","@otterhttp/vary","res","@otterhttp/etag","send-file","@pact-foundation/pact-core","randexp", -"stack-utils","@pact-foundation/pact-js-prettier-config","@types/http-proxy","@types/nock","@types/ramda", -"@types/stack-utils","commit-and-tag-version","eslint-plugin-chai-friendly","pact","pact-js","contract testing", -"consumer driven testing","management","store","@phosphor/algorithm","@phosphor/commands","@phosphor/coreutils", -"@phosphor/disposable","@phosphor/domutils","@phosphor/dragdrop","@phosphor/keyboard","@phosphor/messaging", -"@phosphor/properties","@phosphor/signaling","@phosphor/virtualdom","@release-it/conventional-changelog","@types/jsdom", -"cobertura","eslint-config-phun-ky","git-cz","glob-bin","global-jsdom","putout","quibble","remark-github","remark-toc", -"typedoc-plugin-frontmatter","typedoc-plugin-mdn-links","typedoc-plugin-no-inherit","typedoc-plugin-remark", -"typedoc-plugin-rename-defaults","typedoc-vitepress-theme","unified-prettier","vitepress-plugin-group-icons","a11y", -"accessibility","anatomy","annotate","annotation","dissect","dissection", -"grid","grid-layout","html-elements","information","inspect","pin","spacing","spec","speccer","specification", -"specifications","specs","typography","stories","@webcomponents/shadycss","@polymer/gen-closure-declarations", -"@polymer/iron-component-page","@polymer/test-fixture","@webcomponents/webcomponentsjs","babel-preset-minify","dom5", -"google-closure-compiler","gulp-vulcanize","lazypipe","polymer-build","polymer-cli","wct-browser-legacy","cldr","gauge", -"upath","fontkit","ps-tree","get-value","set-value","github-api","unset-value","tap-colorize","core-js-bundle", -"app-module-path","es6-promise-pool","better-ajv-errors","jstransformer-dot","@metalsmith/layouts", -"@metalsmith/markdown","console-control-strings","@qooxdoo/eslint-config-qx","@qooxdoo/eslint-plugin-qx", -"eslint-formatter-codeframe","@qooxdoo/eslint-config-jsdoc-disable","@babel/plugin-proposal-optional-chaining-assign", -"dirsum","qooxdoo","fontend","back-end","widgets","gui","databinding","interfaces","mixins","@mdi/font","@mdi/svg", -"@xmldom/xmldom","animate.css","bootstrap-icons", -"eva-icons","line-awesome","eslint-config-quasar","quasar","fonts","animations","gltfpack","detect-gpu","r3f-perf", -"@types/three","three-stdlib","suspend-react","postprocessing","@storybook/react","@react-three/drei", -"@react-three/fiber","cypress-image-diff-js","rollup-plugin-postcss","@storybook/addon-links","@storybook/node-logger", -"eslint-plugin-storybook","@storybook/addon-actions","@storybook/react-webpack5","@react-three/test-renderer", -"@storybook/testing-library","@react-three/postprocessing","@storybook/addon-essentials","@storybook/addon-interactions", -"@types/testing-library__jest-dom","@storybook/preset-create-react-app","threejs","react-three-fiber","ready-player-me", -"3D","avatars","glb","@phryneas/ts-version","@size-limit/file","@size-limit/webpack", -"@testing-library/react-render-stream","@types/babel__core","@types/babel__helper-module-imports","@types/nanoid", -"@types/query-string","esbuild-extra","starter","reducer","slice","redux-toolkit","@rollup/pluginutils","commondir", -"fdir","is-reference","locate-character","require-relative","commonjs","require","is-module","string-capitalize", -"es2015","groq-js","refractor","@sanity/ui","@types/cpx", -"dotenv-flow","@sanity/color","@sanity/icons","@sanity/client","react-refractor","esbuild-register","@sanity/pkg-utils", -"@portabletext/react","@portabletext/toolkit","cpx","sanity","@types/mkdirp","@sanity/ui-workshop", -"@sanity/semantic-release-preset","eslint-plugin-simple-import-sort","API reference","@unhead/vue","@vueuse/core", -"microdiff","@scalar/agent-chat","@scalar/code-highlight","@scalar/api-client","@scalar/icons","@scalar/components", -"@scalar/helpers","@scalar/openapi-parser","@scalar/oas-utils","@scalar/openapi-types","@scalar/sidebar","@scalar/types", -"@scalar/snippetz","@scalar/use-hooks","@scalar/themes","@scalar/use-toasts","@scalar/workspace-store", -"@hono/node-server","@tailwindcss/vite","@vitejs/plugin-vue","@vue/test-utils","rollup-plugin-webpack-stats", -"vite-plugin-banner","vite-plugin-css-injected-by-js","@scalar/build-tooling","@scalar/core","@scalar/galaxy", -"@scalar/react-renderer","reference","swagger","fastify-plugin","@fastify/basic-auth","@fastify/http-proxy", -"@fastify/swagger","@serenity-js/core","@serenity-js/rest","@serenity-js/web","tiny-types","@integration/testing-tools", -"@serenity-js/assertions","@serenity-js/cucumber","@serenity-js/jasmine","@serenity-js/local-server", -"@serenity-js/mocha","@types/html-minifier","mocha-multi", -"automation","browser","e2e","end-to-end","integration","serenity","serenity-js","screenplay","screenplay-pattern","tdd", -"@wdio/reporter","@wdio/cli","@wdio/dot-reporter","@wdio/local-runner","@wdio/spec-reporter","@wdio/types", -"mocha-testdata","webdriverio","wdio","wdio-reporter","@sinonjs/commons","@mochify/cli","@mochify/driver-puppeteer", -"@mochify/driver-webdriver","@sinonjs/eslint-config","@sinonjs/referee-sinon","@storybook/icons","@storybook/csf-plugin", -"@storybook/react-dom-shim","telejson","memoizerific","storybook-addon","essentials","organize","MDX","autodocs", -"styleguide","style guide","web-components","@ant-design/colors","@ant-design/cssinjs","@ant-design/react-slick", -"@fortawesome/free-regular-svg-icons","@polkadot/react-identicon","@polkadot/util-crypto","@polkadot/wasm-crypto", -"@rc-component/tour","@zxing/browser","@zxing/library","boring-avatars","flatlist-react","jsqr","patch-package", -"phosphor-react","qrcode.react","rc-cascader","rc-checkbox","rc-collapse","rc-dialog","rc-drawer","rc-dropdown", -"rc-image","rc-input","rc-input-number", -"rc-mentions","rc-menu","rc-motion","rc-notification","rc-pagination","rc-picker","rc-progress","rc-rate", -"rc-resize-observer","rc-segmented","rc-select","rc-steps","rc-switch","rc-table","rc-tabs","rc-textarea","rc-tree", -"rc-tree-select","rc-trigger","rc-upload","react-pin-input","react-qrcode-logo","react-superellipse", -"scroll-into-view-if-needed","@babel/eslint-plugin","@emotion/babel-preset-css-prop","@emotion/server", -"@qixian.cs/github-contributors-list","@storybook/addons","@storybook/builder-webpack5","@storybook/manager-webpack5", -"@storybook/theming","@types/gtag.js","@types/jest-axe","@types/jest-environment-puppeteer","@types/jest-image-snapshot", -"@types/jquery","@types/puppeteer","@types/qs","@types/react-color","@types/react-highlight-words", -"@types/react-resizable","@types/react-window","@types/throttle-debounce","@types/warning","antd-img-crop", -"antd-token-previewer","array-move","bundlesize2","dekko","duplicate-package-checker-webpack-plugin","fetch-jsonp", -"jest-axe","jest-image-snapshot","jest-puppeteer","jsonml-to-react-element","lz-string","rc-footer","rc-tween-one", -"rc-virtual-list","react-fast-marquee","react-highlight-words","react-infinite-scroll-component","react-resizable", -"react-sticky-box","react-window","remark-lint","remark-preset-lint-recommended","rome","stylelint-config-prettier", -"stylelint-config-rational-order","stylelint-declaration-block-no-ignored-properties","sylvanas","vanilla-jsoneditor", -"xhr-mock","yaml-front-matter","@supernova-studio/client","@supernova-studio/model","abab","async-mutex","color2k", -"parse-color","string.prototype.matchall","@types/tinycolor2","trash-cli","tsconfig-paths-webpack-plugin","Supernova", -"Design Systems","Supernovaio","SDK","Design Tokens","Tokens","Assets","Components","Documentation","Markdown","CMS", -"expr-eval-fork","ml-matrix","postcss-calc-ast-parser","@ava/typescript","@stylistic/eslint-plugin-js", -"@svitejs/changesets-changelog-github-compact","eslint-config","@sveltejs/acorn-typescript","@types/cookie","devalue", -"esm-env","mrmime","sade","@opentelemetry/api","@types/connect","dts-buddy","official","obug", -"@sveltejs/vite-plugin-svelte-inspector","vite-plugin","vite plugin","@babel/plugin-transform-react-constant-elements", -"@svgr/plugin-jsx","@svgr/plugin-svgo","svgr","webpack-loader","@swc/counter","@swc/types","@napi-rs/cli","@rstest/core", -"swc", -"swcpack","rust","tsc","stylelint-prettier","@swisspost/design-system-icons","@swisspost/design-system-tokens", -"stylelint-config-sass-guidelines","collections","patterns","web components","ui library","symbiote.js","symbiote", -"widget","microfrontends","meta application","custom elements","shadow dom","shadow root","constructable stylesheets", -"adopted stylesheets","css custom properties","pubsub","import maps","cdn imports","https imports", -"reactive html attributes","MIT","JSDA","@types/content-type","istanbul-lib-coverage","istanbul-lib-report", -"istanbul-lib-source-maps","istanbul-reports","rollup-plugin-filesize","tanem-scripts","dom","images","img", -"scalable-vector-graphics","@tanstack/query-core","@tanstack/query-persist-client-core","@tanstack/query-test-utils", -"@testing-library/svelte","tanstack","query","@types/js-cookie","@github/webauthn-json","better-docs", -"eslint-config-preact","hanko","passkey","webauthn","passcode","password","kcd-scripts","functional","aria-query", -"@types/aria-query","dom-accessibility-api","jest-in-case","jest-watch-select-projects","jest-snapshot-serializer-ansi", -"unit", -"redent","@jest/globals","rollup-plugin-delete","jest-environment-jsdom-sixteen","jest-matcher-utils", -"@callstack/eslint-config","@relmify/jest-serializer-strip-ansi","testing-library","dotenv-cli","jest-mock", -"shared-scripts","@types/jest-in-case","@ph.fritsche/toolbox","jest-serializer-ansi","esbuild-plugin-globals", -"eslint-plugin-local-rules","@ph.fritsche/scripts-config","@esbuild-plugins/node-modules-polyfill", -"react-testing-library","dom-testing-library","regexparam","tinyhttp","static","@tinyhttp/vary","supertest-fetch", -"forwarded","headers","header","proxy-addr","net","network","@tinyhttp/accepts","@tinyhttp/content-disposition", -"@tinyhttp/content-type","params","particles.js","particlesjs","particles","particle","jsparticles","xparticles", -"particles-js","particles-bg","particles-bg-vue","particles-ts","particles.ts","react-particles-js","react-particles.js", -"react-particles","vue-particles","ngx-particles","angular-particles","particleground","vuejs","preactjs","angularjs", -"animation","html5","web-design","webdesign","css3","animated","background","confetti", -"fireworks","fireworks-js","confetti-js","confettijs","fireworksjs","canvas-confetti","@d-fischer/shared-utils", -"@twurple/api-call","@twurple/common","jose","twitch","extension","service","ebs","ts-api-utils","natural-compare", -"@eslint-community/regexpp","@typescript-eslint/type-utils","@typescript-eslint/visitor-keys","title-case", -"mdast-util-mdx","micromark-extension-mdxjs","@typescript-eslint/rule-tester", -"@typescript-eslint/rule-schema-to-typescript-types","eslintplugin","@typescript-eslint/typescript-estree","estree", -"@ucloud-fe/calendar","component-classes","create-react-context","emotion-theming","file-bytes-formatter","mini-store", -"rc-animate","rc-form","z-use-drag","@types/hoist-non-react-statics","@types/raf","@ucloud-fe/recodo-gen","ast-types", -"babel-plugin-emotion","babel-plugin-typescript-to-proptypes","babel-plugin-webpack-alias","css-hot-loader", -"jest-emotion","jsdom-screenshot","stylelint-config-styled-components","stylelint-processor-styled-components", -"tsc-alias","ucloud","jotai-x","is-hotkey","optics-ts","zustand-x","slate-react","jotai-optics","@udecode/slate", -"@udecode/utils","use-deep-compare","slate-hyperscript","@udecode/react-utils","@udecode/react-hotkeys","plate","slate", -"button","react-button","uiw-react","react.js","uikit","react-ui","@uiw/icons","react-icon","react-input", -"@uiw/react-overlay","overlay-trigger","react-overlay-trigger","utils","react-utils","prom-client","openapi-types", -"unleash-client","json-schema-to-ts","ts-node-dev","@types/type-is","Unleash","native","ios","android","flags","lit", -"keyux","nanostores","@lit/context","@uploadcare/cname-prefix","@uploadcare/image-shrink","@uploadcare/upload-client", -"@uploadcare/quality-insights","shipjs","render-jsx","lit-analyzer","ts-lit-plugin","@biomejs/js-api","@vitest/browser", -"eslint-plugin-wc","@types/svg-sprite","eslint-plugin-lit","vitest-browser-lit","@biomejs/wasm-nodejs", -"@size-limit/esbuild-why","esbuild-minify-templates","@total-typescript/ts-reset","@size-limit/preset-small-lib", -"@happy-dom/global-registrator","@csstools/postcss-cascade-layers","uploadcare","lighter","file uploader", -"adaptive image","image optimization","image editing","image size","cloud image editor","upload api client", -"building blocks","blocks","lr-blocks","uc-blocks","integrations", -"smart cdn","cloud file platform","transformation api","webp","avif","css context properties","meta applications", -"browserslist-to-esbuild","@babel/plugin-transform-react-jsx-self","@babel/plugin-transform-react-jsx-source", -"@rolldown/pluginutils","babel-plugin-react-compiler","fast refresh","@tsconfig/node20","pkgroll","create-vue", -"create-eslint-config","ajv-keywords","merge-deep","swagger-parser","@ant-design/icons-svg","@makotot/ghostui", -"@types/hast","@umijs/bundler-utils","@umijs/core","@umijs/utils","animated-scroll-to","codesandbox","comlink", -"dumi-afx-deps","estree-util-to-js","estree-util-visit","file-system-cache","heti","html2sketch", -"mdast-util-find-and-replace","mdast-util-to-string","prism-themes","react-loading-skeleton","react-simple-code-editor", -"rehype-remove-comments","remark-directive","sucrase","umi","unist-util-visit-parents","v8-compile-cache","vfile", -"dumi-assets-types","@types/highlight-words-core","@types/hosted-git-info","@types/lodash.throttle","@types/pluralize", -"@umijs/lint","@umijs/plugins","codesandbox-import-utils","git-repo-info","highlight-words-core","zx", -"dumi-theme-mobile","static site generator","jamstack","aleo","cryptography","blockchain", -"decentralized","zero-knowledge","oracle","event-target-shim","@mysticatea/eslint-plugin","@mysticatea/spy", -"dts-bundle-generator","karma-growl-reporter","rollup-plugin-babel-minify","rollup-watch","type-tester","w3c","whatwg", -"event","abort","cancel","abortcontroller","abortsignal","controller","signal","shim","negotiator","content", -"negotiation","accept","middleware","progress-estimator","@types/figlet","@types/git-clone", -"rollup-plugin-node-externals","nestjs","fullstack","zip","archive","flowcontrol","flow","control","arch","cron-parser", -"date.js","human-interval","@types/human-interval","job","jobs","delayed","blockchain-bend4","blockchain-meat7", -"bow-swam-troops-care","cent-matter-to","closer-composed-particularly-shout","coach-organized-notice", -"correct-home-silent7","course-whenever-merely","crop-birthday-web3-children","exchange-known-bend", -"face-eventually-bound","grass-dollar-crew-floating","information-fruit-web3-perfect","lay-rest-hour", -"material-balance-trade-solar","meat-think-stove8","office-deal-mostly1","product-slight-adult-settlers", -"recently-done-should-moon", -"scientific-exist-event2","sentence-won-little-western","speed-wing-eat","stay-including","supper-term-including-snake", -"truck-hospital-equator-hurt","trunk-darkness-believed-corner","typical-recall-industry-exchange","warn-clothing-whose0", -"weigh-flew-web3-farm","@airtap/browserify-istanbul","airtap-default","airtap-multi","bruce-millis-option","engine.io", -"engine.io-client","find-nearest-file","globs-to-files","humanize-duration","load-script","make-promises-safe", -"maybe-combine-errors","nanoresource","nanoresource-collection","on-stream-close","run-parallel-settled","tap-completed", -"thunky-with-args","transient-error","abstract-browser","simple-get","saucelabs","fast-uri","json-schema-traverse", -"require-from-string","@ajv-validator/config","@types/require-from-string","dayjs-plugin-utc","if-node-version", -"json-schema-test","module-from-string","re2","tsify","uri-js","json-schema-validator","json-schema-validation","Ajv", -"longjohn","buffer-more-ints","claire","AMQP","AMQP 0-9-1","RabbitMQ","simple","ux bootstrap","client-side", -"@angular-cli/ast-tools","@angular-cli/base-href-webpack","@ngtools/json-schema","@ngtools/webpack","denodeify", -"ember-cli-normalize-entity-name","ember-cli-string-utils","exists-sync", -"findup","get-caller-file","isbinaryfile","node-modules-path","script-loader","silent-error", -"sourcemap-istanbul-instrumenter-loader","component library","justified","256","ansi","bgblack","bgBlack","bgblue", -"bgBlue","bgcyan","bgCyan","bggreen","bgGreen","bgmagenta","bgMagenta","bgred","bgRed","bgwhite","bgWhite","bgyellow", -"bgYellow","black","blue","bold","clorox","colour","cyan","dim","formatting","gray","green","grey","hidden","inverse", -"italic","logging","magenta","red","reset","rgb","shell","str","strikethrough","style","text","underline","white", -"yellow","environment","escape","escapes","vt100","sequence","codes","cursor","iterm2","screen","erase", -"scrollback","regex","regexp","re","match","find","pattern","svg-term-cli","@ant-design/icons-vue","@emotion/unitless", -"@simonwep/pickr","array-tree-filter","dom-align","dom-scroll-into-view","shallow-equal","vue-types", -"@babel/plugin-proposal-optional-chaining","@babel/plugin-transform-object-assign","@types/koa","@types/lru-cache", -"@types/postcss-load-config","@vitejs/plugin-vue-jsx","@vue/babel-plugin-jsx","@vue/cli-plugin-eslint", -"@vue/eslint-config-prettier","@vue/vue3-jest","@webpack-cli/serve","ali-oss","babel-plugin-inline-import-data-uri", -"babel-plugin-transform-require-context","colorful","compare-versions","cz-git","diacritics","docsearch.js","enquire-js", -"eslint-plugin-no-explicit-type-exports","gulp-strip-code","ignore-emit-webpack-plugin","is-windows", -"jest-serializer-vue","jest-transform-stub","json-templater","less-plugin-npm-import","less-vars-to-js","majo", -"markdown-it-table-of-contents","merge2","remark-stringify","remark-yaml-config","reqwest","rucksack-css", -"selenium-server","string-replace-loader","umi-request","vue-clipboard2","vue-drag-resize","vue-infinite-scroll", -"vue-request","vue-tsc","webpackbar","vueComponent","@rc-component/form","@rc-component/menu", -"@rc-component/rate","@rc-component/tabs","@rc-component/tree","@rc-component/util","@rc-component/image", -"@rc-component/input","@rc-component/steps","@rc-component/table","@rc-component/dialog","@rc-component/drawer", -"@rc-component/motion","@rc-component/picker","@rc-component/qrcode","@rc-component/select","@rc-component/slider", -"@rc-component/switch","@rc-component/upload","@rc-component/tooltip","@rc-component/trigger","@ant-design/fast-color", -"@rc-component/cascader","@rc-component/checkbox","@rc-component/collapse","@rc-component/dropdown", -"@rc-component/mentions","@rc-component/progress","@rc-component/textarea","@rc-component/segmented", -"@rc-component/pagination","@ant-design/cssinjs-utils","@rc-component/tree-select","@rc-component/color-picker", -"@rc-component/input-number","@rc-component/notification","@rc-component/mutate-observer", -"@rc-component/resize-observer","p-all","runes2","mermaid","spinnies","env-paths","@types/tar","antd-style", -"@types/pngjs","cli-progress","domparser-rs","vanilla-tilt","@ant-design/x","react-countup","@prettier/sync", -"@types/adm-zip","@types/ali-oss","@blazediff/core","@types/css-tree","@types/minimist","@types/spinnies", -"@types/nprogress","lunar-typescript","@ant-design/x-sdk","csstree-validator","@types/http-server","@types/cli-progress", -"@antfu/eslint-config","@ant-design/compatible", -"@codecov/webpack-plugin","@types/isomorphic-fetch","dumi-plugin-color-chunk","@microflash/rehype-figure", -"@rc-component/virtual-list","circular-dependency-plugin","@codesandbox/sandpack-react","@eslint-react/eslint-plugin", -"@ant-design/happy-work-theme","cypress-image-diff-html-report","@ianvs/prettier-plugin-sort-imports", -"remark-lint-no-undefined-references","@madccc/duplicate-package-checker-webpack-plugin", -"@api-components/api-console-ext-comm","@api-components/api-documentation","@api-components/api-summary", -"@polymer/app-layout","@polymer/iron-media-query","@polymer/paper-toast","@anypoint-web-components/anypoint-menu-mixin", -"@open-wc/building-rollup","@polymer/iron-test-helpers","@web/test-runner-visual-regression","amf-client-js", -"rollup-plugin-cpy","unzipper","raml","amf","diff-match-patch","expose-loader","klaw-sync","eslint-config-recommended", -"restful","apidoc-light","portable","programmatic","cli-app","api-documentation","markdown-documentation","http2", -"apple","push","push notifications","iOS","apns","notifications","apollo-cache","apollo-utilities","ts-invariant", -"@types/zen-observable","symbol-observable","zen-observable","jsnext","relay","zen-observable-ts","@types/graphql", -"apollo-link-http-common","apollo-fetch","object-to-querystring","cracks","root","node_modules","@colors/colors", -"appium-adb", -"appium-chromedriver","asyncbox","io.appium.settings","portscanner","teen_process","@appium/eslint-config-appium-ts", -"@appium/tsconfig","@types/bluebird","@types/portscanner","appium","mobile testing","@azure/identity","@azure/core-auth", -"@azure/functions","diagnostic-channel","@opentelemetry/core","@azure/functions-old","@opentelemetry/api-logs", -"@opentelemetry/sdk-logs","@opentelemetry/resources","@opentelemetry/sdk-metrics","@azure/monitor-opentelemetry", -"@opentelemetry/sdk-trace-base","@opentelemetry/sdk-trace-node","diagnostic-channel-publishers", -"@opentelemetry/otlp-exporter-base","@opentelemetry/semantic-conventions","@azure/monitor-opentelemetry-exporter", -"@opentelemetry/exporter-logs-otlp-http","@opentelemetry/exporter-trace-otlp-http", -"@opentelemetry/exporter-metrics-otlp-http","@opentelemetry/exporter-metrics-otlp-proto", -"@azure/opentelemetry-instrumentation-azure-sdk","@types/long","@types/microsoft__typescript-etw","exception monitoring", -"request monitoring","performance monitoring","application insights","microsoft","azure","cloud","tracing","telemetry", -"analytics","apm","@aws-sdk/credential-provider-node","@aws-sdk/hash-node","@aws-sdk/protocol-http", -"@aws-sdk/signature-v4","@aws-sdk/types","aws-xray-sdk-core","@aws-amplify/amplify-appsync-simulator","constructs", -"prettier-plugin-organize-attributes","projen","appsync","aws","gql","lambda","xray","archiver-utils","buffer-crc32", -"readdir-glob", -"zip-stream","archiver-jsdoc-theme","stream-bench","stream","@babel/plugin-syntax-class-properties","option", -"define-properties","es-abstract","es-shim-unscopables","@es-shims/api","@ljharb/eslint-config","encoding", -"has-strict-mode","Array.prototype.flatMap","flatMap","array","ESnext","flatten","Array.prototype.flatten","es-shim API", -"arrayify","convert","value","ensure","is-nan","object-is","array-fill","fn.name","is-buffer","propget","pruddy-error", -"assertion","asserts","shouldjs","unit testing","babel-minify","rollup-plugin-npm","babel-preset-es2017", -"native-promise-only","eslint-plugin-prefer-arrow","babel-plugin-syntax-async-generators","callback","@types/tap", -"await","listen","then-sleep","@babel/node","@pika/pack","pika-plugin-build-web-babel","pika-plugin-ts-types","validate", -"libnpx","node-cleanup","npm-lockfile","find-package-json","audit","lockfile","shrinkwrap","import-cwd", -"parse-github-url","babel-plugin-rewire","auto","automatic","changelog", -"change","git","commit","commits","detective","detective-es6","is-builtin-module","package-json","sync-exec","package", -"fraction.js","prefix","@vercel/nft","arrgv","callsites","cbor","chunkd","ci-parallel-vars","code-excerpt", -"common-path-prefix","concordance","currently-unhandled","emittery","ignore-by-default","matcher","memoize", -"package-config","resolve-cwd","supertap","temp-dir","@sindresorhus/tsconfig","🦄","concurrent","parallel","fast", -"promises","function","generators","yield","observable","observables","webpack-log","empty-module","ps-node","loader", -"ieee754","jmespath","hash-test-vectors","insert-module-globals","amazon","ec2","simpledb","s3","sqs","ses","sns", -"route53","rds","elasticache","cloudfront","fps","cloudformation","cloudwatch","dynamodb", -"iam","swf","autoscaling","cloudsearch","elb","loadbalancing","emr","mapreduce","importexport","storagegateway", -"workflow","vpc","beanstalk","glacier","kinesis","cloudtrail","waf","memoizee","@deque/dot","colorjs.io","typedarray", -"emoji-regex","grunt-babel","revalidator","sri-toolbox","serve-handler","grunt-bytesize","weakmap-polyfill", -"clean-jsdoc-theme","css-selector-parser","@axe-core/webdriverjs","conventional-commits-parser", -"eslint-plugin-mocha-no-only","Accessibility","axe","proxy-from-env","dev-null","formdata-node","stream-throttle", -"karma-jasmine-ajax","string-replace-async","abortcontroller-polyfill","rollup-plugin-bundle-size", -"@rollup/plugin-multi-entry","rollup-plugin-auto-external","istanbul-instrumenter-loader","ajax","browserify-mime", -"json-edm-parser","md5.js","batchflow","factor-bundle","karma-env-preprocessor","storage","output-file-sync","v8flags", -"babel-code-frame","babel-helpers","babel-messages","private","babel-helper-transform-fixture-test-runner", -"eslint-config-babel","trim-right","try-resolve", -"babel-preset-jest","babel-plugin-transform-export-extensions","babel-preset-power-assert", -"conventional-github-releaser","module.exports","airbnb-js-shims","babel-plugin-transform-replace-object-assign", -"dynamic","import","@umijs/test","babel-preset-umi","react-toolbox","@istanbuljs/load-nyc-config", -"istanbul-lib-instrument","test-exclude","pmock","instrumentation","require-package-name", -"@babel/plugin-proposal-function-bind","@babel/preset-stage-0","lodash-bound","lodash-compat","cherry-pick", -"find-babel-config","prettier-eslint-cli","resolver","alias","rewrite","rename","mapping","babel-plugin-tester", -"babel-helper-remap-async-to-generator","babel-plugin-syntax-async-functions","babel-helper-function-name", -"babel-plugin-syntax-class-properties","babel-plugin-syntax-decorators","es7","babel-plugin-transform-strict-mode", -"babel-plugin-syntax-object-rest-spread","babel-helper-builder-react-jsx","@babel/preset-flow", -"babel-plugin-flow-react-proptypes","pkgfiles","minification","propTypes","regenerator-transform", -"@babel/plugin-proposal-numeric-separator","@babel/plugin-transform-property-mutators", -"@babel/plugin-proposal-optional-catch-binding","@babel/plugin-proposal-nullish-coalescing-operator", -"babel-plugin-check-es2015-constants","babel-plugin-syntax-trailing-function-commas", -"babel-plugin-transform-es2015-arrow-functions","babel-plugin-transform-es2015-block-scoped-functions", -"babel-plugin-transform-es2015-classes","babel-plugin-transform-es2015-computed-properties", -"babel-plugin-transform-es2015-destructuring","babel-plugin-transform-es2015-duplicate-keys", -"babel-plugin-transform-es2015-for-of","babel-plugin-transform-es2015-function-name", -"babel-plugin-transform-es2015-literals","babel-plugin-transform-es2015-modules-amd", -"babel-plugin-transform-es2015-modules-systemjs","babel-plugin-transform-es2015-modules-umd", -"babel-plugin-transform-es2015-object-super","babel-plugin-transform-es2015-parameters", -"babel-plugin-transform-es2015-shorthand-properties","babel-plugin-transform-es2015-spread", -"babel-plugin-transform-es2015-sticky-regex","babel-plugin-transform-es2015-typeof-symbol", -"babel-plugin-transform-es2015-unicode-regex","babel-plugin-transform-exponentiation-operator","electron-to-chromium", -"babel-preset-flow","babel-plugin-transform-react-display-name","babel-plugin-transform-react-jsx-source", -"babel-plugin-transform-react-jsx-self","@babel/plugin-proposal-private-methods","babel-plugin-transform-do-expressions", -"babel-plugin-transform-function-bind","babel-plugin-transform-class-constructor-call", -"babel-plugin-transform-decorators","babel-plugin-transform-async-generator-functions","home-or-tmp","esutils", -"to-fast-properties","lodash.zipobject","babel-plugin-transform-node-env-inline", -"babel-plugin-transform-flow-strip-types","unicode-9.0.0","model","view","@purtuga/esm-webpack-plugin", -"@types/validator","@web/test-runner-browserstack","@web/test-runner-junit-reporter","otpauth","backend-as-a-service", -"grunt-template","codec","decoder","encoder","base64","basic","auth","authorization","basicauth","sorted-object", -"ministructure","sinatra","orange sms","node-gyp-build","prebuildify","encryption","crypt","hash","esm2umd", -"pomelo-logger","di","IoC","AOP","dependency","injection","consistent","hot reload","front-backend","sharable codes", -"dependency injection", -"asynchronous script loading","magic, self-described javaScript objects","beautify","art-near-room-catch","blanket-line", -"born-greatly-explain3","bring-water-silence","brush-bigger-afternoon0","column-wore-meet-war","compare-breeze-mad2", -"did-straight-sister-sail","excitement-tonight-dead","gain-pleasant-prepare","industrial-public-immediately-until", -"is-straight-web3-attack","known-wet-thirty-gave","listen-private-thee6","mainly-cent","mountain-quarter-sit8", -"mouse-bat-web3-present","needs-supper-anything","percent-impossible-score","rocket-location-calm-valley", -"seldom-fire-web3-running","shade-swim-shells1","spider-melted-chemical","stretch-onto-driver7","tiny-dream-supply5", -"tool-invented-girl-jungle","we-hunt-process","web3-automobile7","whether-dangerous","ansicolors","ignorepatterns", -"response-stream","script-injector","find-global-packages","jsl","dotpathlookup","simplehttpserver","platform","docdown", -"qunit-extras","performance","speed","@beyond-js/specifier-parser","@beyond-js/fs","@beyond-js/bee","ansi-to-html", -"concat-with-sourcemaps","json-format","resolve-package-path","uimport","global-modules","universal", -"universal javascript","universal typescript","isomorphic","isomorphic javascript","isomorphic typescript","sigle page", -"spa","modular development","microfrontend", -"micro frontend","microservices","micro services","hmr","hot module replacement","ssr","server side rendering", -"typescript packager","JAMStack","real time","react framework","ssr react framework","vue framework","ssr vue framework", -"svelte framework","ssr svelte framework","websockets","check-types","hoopy","tryer","please-release-me","spooks", -"streamify","stringify","serialise","serialize","write","asynchronous","arbitrary","precision","arithmetic","big", -"number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum","file-uri-to-path","addon","gyp","c", -"c++","@noble/hashes","@antv/component","@antv/g2","@antv/g2plot","@antv/util","d3-color","react-reconciler", -"@antv/data-set","@babel/preset-es2015","@storybook/addon-info","@storybook/addon-knobs","@storybook/addon-options", -"@umijs/fabric","@welldone-software/why-did-you-render","aphrodite","babel-plugin-inline-react-svg", -"babel-plugin-inline-svg","bx-jest-electron","declaration-bundler-webpack-plugin", -"git-directory-deploy","imports-loader","moment-jalaali","react-with-styles-interface-aphrodite", -"react-with-styles-interface-css-compiler","snapshot-diff","g2","@types/readable-stream","buffers","awesomesauce", -"falafel","foreach","coffee-react","uglify-save-license","curses","tui","tput","terminfo","termcap","ansi-term", -"drawille-canvas-blessed-contrib","map-canvas","marked-terminal","memory-streams","picture-tuber","sparkline", -"term-canvas","x256","@types/blessed","block","loop","kefir","baconjs","promises-a","promises-aplus","deferred", -"deferreds","future","flow control","dsl","fluent interface","standardx","BN","Big number","BigNum","Modulo", -"Montgomery","create-error","bookshelf-jsdoc-theme","postgresql","datamapper","active record","error","@types/mime", -"@astrojs/mdx","@astrojs/check","@astrojs/prism","@astrojs/sitemap","astro-auto-import","prettier-plugin-astro", -"@astrojs/markdown-remark","mincer","eyeglass-module","box", -"boxes","border","quote-stream","static-module","browserify-transform","readFileSync","asset","heimdalljs","array-equal", -"fs-tree-diff","broccoli-plugin","mocha-eslint","release-it-lerna-changelog","merge-trees","broccoli-fixture","copy", -"broccoli-fixturify","multidep","ts-docs-gen","tslint-plugin-prettier","browser-sync-client","browser-sync-ui", -"bs-recipes","dev-ip","easy-extender","eazy-logger","resp-modifier","bs-snippet-injector","generate-changelog", -"browser sync","live reload","sync","subarg","defined","parents","deps-sort","duplexer2","htmlescape","module-deps", -"stream-http","browser-pack","syntax-error","os-browserify","shasum-object","vm-browserify","domain-browser", -"mkdirp-classic","string_decoder","tty-browserify","browser-resolve","browserify-zlib","querystring-es3", -"https-browserify","read-only-stream","stream-browserify","timers-browserify","console-browserify", -"cached-path-relative","constants-browserify","labeled-stream-splicer","seq","isstream","coffeeify","browser-unpack", -"has-object-spread","has-template-literals","make-generator-function","commonj-esque","exposify","mothership", -"rename-function-calls","test-peer-range","transform","window","baseline-browser-mapping","node-releases", -"update-browserslist-db","browsers","target","base-x","ts-standard","base58","bitcoin","crytography","decode","decoding", -"encode","litecoin","typescript-cached-transpile","acorn-dynamic-import","acorn-jsx","regexpu-core","console-group", -"@rollup/plugin-buble","test262-stream","transpilation","compilation","esnext","es2017","arraybuffer","compatible", -"dataview","uint8array","equal","builtin","built-in","builtins","bundled","names","flexbox","@asyncapi/specs", -"@clack/prompts","@oclif/plugin-warn-if-update-available","@stoplight/yaml","jsonpathly","mergician","@types/jsonpath", -"bump","compress","mv","dtrace-provider","safe-json-stringify","ben","log4j","streamsearch","@mscdex/eslint-config", -"uploads","multipart", -"closurecompiler","lxiv","metascript","pretty-hrtime","testjs","utfx","typed array","webrtc","byte","converter", -"@bcoe/v8-coverage","foreground-child","v8-to-istanbul","chai-jest-snapshot","v8","profiler","inspector","@types/mri", -"eslint-config-rem","rollup-plugin-esbuild","@babel/plugin-syntax-typescript","@cacheable/utils","@faker-js/faker", -"@keyv/redis","@vitest/spy","cache-manager-redis-yet","cacheable","caching","cache manager","in-memory cache", -"multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper", -"call-bind-apply-helpers","es-define-property","get-intrinsic","set-function-length","es","callbind","callbound","call", -"bind","bound","call-bound","camel-case","camel","case","dash","hyphen","separator","pascalcase","pascal-case","support", -"prebuild-install","assert-rejects","graphic","graphics","pixman","cairo","image", -"pdf","case sensitive","slimerjs","scraping","loupe","pathval","check-error","assertion-error","@web/dev-server-rollup", -"chai-plugin","assertions","strategy","@debitoor/eslint-config-debitoor","objects","subset","contains","containSubset", -"deep","like","similar","includes","superset","yoctodelay","docpress","git-update-ghpages","gulp-ava","gulp-uglify-es", -"random","mersenne","name","address","dice","param-case","kebab-case","header-case","c12","confbox","convert-gitmoji", -"node-fetch-native","ofetch","pkg-types","scule","std-env","@kurkle/color","@rollup/plugin-inject", -"@types/offscreencanvas","chartjs-adapter-luxon","chartjs-adapter-moment","chartjs-test-utils","eslint-config-chartjs", -"eslint-plugin-es","karma-safari-private-launcher","rollup-plugin-swc3","charts","data","graphs","domutils","domhandler", -"cheerio-select","whatwg-mimetype","encoding-sniffer","parse5-parser-stream","parse5-htmlparser2-tree-adapter", -"@imgix/js-core", -"@octokit/graphql","@vitest/eslint-plugin","@types/whatwg-mimetype","htmlparser","scraper","xml","node-version","child", -"@better-scroll/core","add-dom-event-listener","choerodon-ui-font","css-animation","css-unit-converter","dom-closest", -"dom-lib","element-resize-event","htmlhint","insert-css","jsbarcode","jsonlint","jsonlint-mod","mutationobserver-shim", -"querystringify","quill-delta-to-html","react-beautiful-dnd","react-codemirror2","react-easy-crop", -"react-image-lightbox","react-lazy-load","react-quill","rmc-feedback","smooth-scroll-into-view-if-needed", -"@babel/plugin-transform-proto-to-assign","@types/codemirror","@types/element-resize-event","@types/faker", -"@types/insert-css","@types/jsbarcode","@types/prettier","@types/qrcode.react","@types/react-beautiful-dnd", -"@types/react-is","@types/react-slick","bisheng-plugin-choerodon-ui","bisheng-plugin-description","bisheng-plugin-react", -"bisheng-plugin-toc","eslint-tinker","intersection-observer","mark-twain","rc-queue-anim","rc-scroll-anim", -"react-infinite-scroller","react-sublime-video","scrollama","values.js","vfile-message","webpack-filter-warnings-plugin", -"choerodon","readdirp","@paulmillr/jsbt","watchFile","watcher","watching", -"file","ci","continuous","detect","@ckeditor/ckeditor5-emoji","@ckeditor/ckeditor5-style","@ckeditor/ckeditor5-mention", -"@ckeditor/ckeditor5-minimap","@ckeditor/ckeditor5-autosave","@ckeditor/ckeditor5-bookmark", -"@ckeditor/ckeditor5-language","@ckeditor/ckeditor5-highlight","@ckeditor/ckeditor5-code-block", -"@ckeditor/ckeditor5-fullscreen","@ckeditor/ckeditor5-html-embed","@ckeditor/ckeditor5-page-break", -"@ckeditor/ckeditor5-theme-lark","@ckeditor/ckeditor5-word-count","@ckeditor/ckeditor5-show-blocks", -"@ckeditor/ckeditor5-html-support","@ckeditor/ckeditor5-markdown-gfm","@ckeditor/ckeditor5-remove-format", -"@ckeditor/ckeditor5-source-editing","@ckeditor/ckeditor5-horizontal-line","@ckeditor/ckeditor5-find-and-replace", -"@ckeditor/ckeditor5-restricted-editing","@ckeditor/ckeditor5-special-characters","classname","minifier", -"@chrisblossom/eslint-config","@types/read-pkg-up","temp-sandbox","clean","parent-module","uncache","uncached", -"unrequire","delete","remove","rm","opts","parseopt","opt","argsparse","optparse","autocomplete","autocompletion","d", -"es6-iterator","timers-ext","eslint-config-medikoo","git-list-updated","github-release-from-cc-changelog", -"prettier-elastic","tad","toggle","display","show","hide","string-length","spinner","spinners","expresso", -"ansi-256-colors", -"git-rev","growl","line","tables","tabular","jest-runner-eslint","lerna-changelog","truncate","ellipsis","limit","width", -"cardinal","hyperlinker","@oclif/screen","extract-stack","object-treeify","@oclif/linewrap","natural-orderby", -"password-prompt","@types/strip-ansi","@types/ansi-styles","@types/extract-stack","@types/rollup","@yarnpkg/core", -"@yarnpkg/fslib","eslint-plugin-arca","rollup-plugin-multi-input","parsing","argument","good-listener","select", -"tiny-emitter","cut","clipboard-image","is-wayland","is64bit","powershell-utils","paste","copy-paste","pasteboard", -"pbcopy","clip","xclip","xsel","command line interface","progress bar","istanbul-harmony","coro","coroutine","mask", -"ignore-walk","teeny-request","urlgrey","code-coverage","codecov.io","@codemirror/lint","@codemirror/view", -"@codemirror/state","@codemirror/search","@codemirror/commands","@codemirror/language","@codemirror/autocomplete", -"@codemirror/buildhelper","google-closure-compiler-js", -"language","jison","wcwidth","column","exists","array-back","find-replace","typical","options","chalk-template", -"table-layout","usage","is-utf8","cachedir","find-node-modules","mocha-multi-reporters","@istanbuljs/nyc-config-babel", -"cz-conventional-changelog-default-export","conventional changelog","es2015-tag","es6-tag","heredoc","indent","indents", -"literal","multi","multiline","normalize","one","oneline","single","singleline","strings","strip","tag","tagged", -"emitter","emit","listener","observe","compressible","on-headers","gzip","deflate","brotli","buffer-from", -"ctrlc-wrapper","coveralls-next","@types/shell-quote","@hirez_io/observer-spy","eslint-plugin-import-lite", -"eslint-config-flat-gitignore","bash","sh","cson","faceoff","hjson","x2js","conf","node-config","config-node","env", -"atomically","is-safe-filename", -"xdg-basedir","settings","preferences","persist","persistent","save","rack","flash","kruptein","mongo","session", -"vite-plugin-dts","defu","is-unicode-supported","sentencer","reporter","elegant","clack","stacktrace","eco","ect","eta", -"slm","dust","jazz","just","mote","qejs","twig","vash","jqtpl","twing","hamlet","hamljs","liquor","plates","teacup", -"toffee","walrus","htmling","ractive","whiskers","tinyliquid","velocityjs","haml-coffee","liquid-node","arc-templates", -"dustjs-helpers","swig-templates","dustjs-linkedin","bracket-template","engine","rfc6266","rfc7231", -"@types/normalize-package-data","fd-package-json","normalize-package-data","@conventional-changelog/git-client", -"conventional-changelog-writer","conventional-changelog-preset-loader","conventional","tempfile","add-stream", -"compare-func", -"conventionalcommits.org","preset","inline-source-map","sourcemap","source","map","@borderless/ts-scripts","top-sites", -"cookies","sign","unsign","toggle-selection","@brettz9/node-static","selenium-server-standalone-jar","is-gzip", -"@types/glob-parent","@types/normalize-path","eslint-config-webpack","@types/serialize-javascript","transfer","move", -"noms","qr","qrcode","simple qr","npm qr JavaScript","js qr code","corcojs-qrcode-sample","logo","simple qrcode", -"cordova-common","cordova-create","cordova-lib","@cordova/eslint-config","ES3","ES5","ES6","ES7","ES2015","ES2016", -"ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6", -"ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019", -"ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set", -"WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams", -"queueMicrotask","setImmediate","structuredClone","ponyfill","parse-json","@types/parse-json", -"eslint-config-davidtheclark-node","remark-preset-davidtheclark","load","lcov-parse","log-driver","cpy","cp","files", -"file-system","quick","contents","tslog","hpagent","seenreq","http2-wrapper","@types/got","spider","crc16ccitt", -"crc16kermit","crc16modbus","crc16","crc16xmodem","crc1","crc24","crc32","crc81wire","crc8","crc8dvbs2","crcjam", -"cipher-base","ripemd160","sha.js","async-traverse-tree","css-url-parser","data-uri-to-buffer","group-args", -"inline-critical","oust","penthouse","postcss-discard","postcss-image-inliner","postcss-url","normalize-newline", -"stream-array","optimization","@fast-check/jest","@insurgent/commitlint-config", -"@insurgent/conventional-changelog-preset", -"@semantic-release/commit-analyzer","@semantic-release/npm","@semantic-release/release-notes-generator","@swc/jest", -"node cron","node-cron","schedule","cronjob","cron job","timer","crontab","@prantlf/jsonlint","@prettier/plugin-xml", -"@secretlint/secretlint-rule-github","@secretlint/secretlint-rule-npm","@stryker-mutator/core", -"@stryker-mutator/tap-runner","@types/bun","eslint-plugin-array-func","eslint-plugin-no-unsanitized","jsr","metalint", -"secretlint","yaml-lint","@cropper/elements","@cropper/utils","crop","zoom","rotate","scale","cropper","cropper.js", -"image-cropping","image-viewing","image-processing","cropper-element","custom-element","web-component", -"@epic-web/invariant","@epic-web/config","@types/cross-spawn","zshy","cross-environment","environment variable", -"windows","cross-platform","rollup-plugin-esbuild-minify","path-key","shebang-command","babel-preset-moxy", -"eslint-config-moxy","spawn","spawnSync","path-ext","shebang","cmd","execute","browserify-cipher","browserify-sign", -"create-ecdh","create-hmac","diffie-hellman","hash-base","pbkdf2", -"public-encrypt","randomfill","pseudorandombytes","security","Hash","MD5","SHA1","SHA-1","SHA256","SHA-256","RC4", -"Rabbit","AES","DES","PBKDF2","HMAC","OFB","CFB","CTR","CBC","Base64","Base64url","eslint-config-groupon","nlm", -"@cspell/cspell-json-reporter","@cspell/cspell-performance-monitor","@cspell/cspell-pipe","@cspell/cspell-types", -"@cspell/cspell-worker","@cspell/dynamic-import","@cspell/url","cspell-config-lib","cspell-dictionary", -"cspell-gitignore","cspell-glob","cspell-io","cspell-lib","fast-json-stable-stringify","flatted","spell","checker", -"spelling","spell checker","spelling checker","lint","source-map-resolve","@mdn/browser-compat-data", -"@rollup/plugin-dynamic-import-vars","sorter","property","order","@swc-node/register","changelog-verify", -"eslint-config-nitpick","github-release-from-changelog","isomorphic-unfetch","rolldown-plugin-dts","version-changelog", -"write-json-file","functions","postcss-modules-extract-imports","postcss-modules-scope", -"@webpack-contrib/eslint-config-webpack","@swc/css", -"@parcel/css","@types/csso","@types/clean-css","cssnano-preset-simple","webpack-plugin","minimize","minimizer", -"optimize","optimizer","boolbase","@types/boolbase","cheerio-soupselect","sizzle","clap","json-to-ast","walker","lexer", -"web-features","features","stages","identifier","cssnano-preset-default","cssnano-preset-advanced","cssnano-preset-lite", -"optimise","optimisation","@asamuzakjp/css-color","@csstools/css-syntax-patches-for-csstree","@domenic/eslint-config", -"@webref/css","CSS","CSSStyleDeclaration","StyleSheet","@tsconfig/node24","@types/chokidar","@types/turndown","csrf", -"tokens","tsv","generation","object","csv-spectrum","pad","@types/lodash.set","csv parser","parse csv","csv to json", -"csv convert","tojson","convert csv to json","csv-json","duration","stack-chain","is-generator","stacktrace-js", -"serialize-error","cucumber-expressions","cucumber-tag-expressions","ansi-html","eslint-plugin-testcafe","riteway", -"updtr","guid","id", -"uid","unique id","hasha","ospath","blob-util","executable","@cypress/xvfb","@types/sizzle","@cypress/request", -"request-progress","cypress.io","mocks","spies","stubs","longest","conventional-commit-types","d3-dsv","d3-geo", -"d3-axis","d3-drag","d3-ease","d3-path","d3-time","d3-zoom","d3-brush","d3-chord","d3-fetch","d3-force","d3-timer", -"d3-format","d3-random","d3-contour","d3-polygon","d3-delaunay","d3-dispatch","d3-quadtree","d3-hierarchy", -"d3-transition","d3-interpolate","d3-time-format","d3-scale-chromatic","topojson-client","@observablehq/runtime", -"visualization","internmap","d3-module","histogram","bisect","shuffle","statistics","search","sort","selection", -"data-join","dable","tailwind css","tailwind react","tailwind vue","tailwind plugin","tailwind component", -"tailwind next","tailwind nuxt","tailwind svelte","tailwind css plugin", -"tailwind astro","tailwind laravel","tailwind rails","laravel","nuxt","css library","reverse","arguments","binary", -"opposite","invert","switch","construct","@captemulation/get-parameter-names","json-schema-faker-bb","request-debug", -"rss-parser","swagger-express-middleware","bun","cloc","js-fns","jscodeshift","@date-fns/tz","@date-fns/utc", -"@date-fns/docs","@size-limit/esbuild","typedoc-plugin-missing-exports","babel-plugin-replace-import-extension", -"gzip-size-cli","require-directory","sleep","async wrapper","debouncing","throttle","invoke","limited","interval","rate", -"batch","rate-limit","debugger","decamelcase","lowercase","decompress-tar","decompress-tarbz2","decompress-targz", -"decompress-unzip","strip-dirs","is-jpg","bz2","bzip2","extract","tar.bz","tar.gz","@types/babel-plugin-macros", -"console-fail-test","eslint-plugin-deprecation","eslint-plugin-no-only-tests","eslint-plugin-perfectionist", -"eslint-plugin-yml","jsonc-eslint-parser","npm-package-json-lint-config-default","prettier-plugin-curly", -"should-semantic-release", -"yaml-eslint-parser","multi-line string","duplicates","dupes","remove duplicates","distinct","deduplicate", -"deduplication","is-obj","obj","assign","recursive","key","keys","values","prop","json-ptr","difference","compare", -"change-tracking","kewlr","simple-assert","lcov-result-merger","eslint-config-strict","@js-temporal/polyfill", -"eslint-plugin-filenames","chai util","deep equal","object equal","array-buffer-byte-length","es-get-iterator", -"is-arguments","is-array-buffer","is-date-object","is-regex","is-shared-array-buffer","regexp.prototype.flags", -"side-channel","which-boxed-primitive","which-collection","which-typed-array","available-typed-arrays","has-proto", -"has-typed-arrays","equality","is-mergeable-object","jsmd","is-path-cwd","is-path-inside","presentable-error","folders", -"directories","destroy","trash","unlink","cleaning","cleanup","rmrf","rmdir","gulpfriendly","folder","directory", -"filesystem","temp-write", -"random-int","unlimited-timeout","in-range","time-span","defer","stall","timeout","settimeout","tick","threshold", -"range","callsite","deps-regex","is-core-module","@vue/compiler-sfc","patch-version","check","unused","packages", -"deprecate","deprecated","is-relative","read-package-json","detective-cjs","indentation","infer","identify","space", -"tab","@eggjs/tsconfig","egg-bin","eslint-config-egg","mm","tshy-after","port","jsdiff","patch","@profoundlogic/hogan", -"@eslint/json","@types/hogan.js","@types/nopt","all-contributors-cli","handlebars-loader","image-webpack-loader", -"is-ci-cli","side","side-by-side","line-by-line","character","difftohtml","colorized","data-structure-typed", -"eslint-import-resolver-alias","Directed Graph","directed graph","directedgraph","directed-graph","directed","Directed", -"digraph","java script","JavaScript","type script","vertex", -"Vertex","edge","Edge","graph theory","Graph Theory","graph structure","weighted","Weighted","unweighted","Unweighted", -"adjacency","Adjacency","connectivity","cycle","acyclic","traversal","depth","Depth","breadth","Breadth","first", -"depth first search","dfs","DFS","breadth first search","breadth-first search","bfs","BFS","graph algorithms", -"graph representation","connectivity matrix","adjacency list","adjacency matrix","matrix","node degree","sparse graph", -"dense graph","directed cycle","directed acyclic graph","DAG","topologic","topological","sorting", -"strongly connected components","weighted digraph","directed weighted edge","structure","structures","data structure", -"datastructure","data-structure","data structures","datastructures","data-structures","in data structures", -"in data structure","DataStructure","DataStructures","iterative","Node.js","CommonJS","UMD","esmodule","java.util", -"c++ stl","c++ std","Python collections","System.Collections.Generic","STL","stl","collection","Collection", -"Collections","insertion","deletion","OOP","@discordjs/voice","backend-manager","productivity","@discordjs/ws", -"lodash.snakecase","@discordjs/builders","@discordjs/formatters","@discordjs/docgen","bot","cache-point", -"common-sequence","file-set","walk-back","dmd-plugin-example","jsdoc2md","agnostic","dnd","drag","drop","dnode-protocol", -"jsonify","weak","rpc","callbacks","doc-detective-common","doc-detective-resolver","@ffmpeg-installer/ffmpeg", -"@puppeteer/browsers","appium-chromium-driver","appium-geckodriver","appium-safari-driver","geckodriver","jq-web", -"json-schema-faker","posthog-node","literate","mecano","parameters","@balena/dockerignore","@grpc/grpc-js", -"@grpc/proto-loader","docker-modem","docker","docker.io","@bevry/pluginloader","ambi","ansistyles","bal-util", -"caterpillar","docmatter","docpad-baseplugin","eachr", -"envfile","errlop","event-emitter-grouped","extendr","extract-opts","ignorefs","istextorbinary","jschardet", -"lazy-require","progress-title","query-engine","rfc-log-levels","safefs","safeps","scandirectory","taskgroup", -"typechecker","unbounded","watchr","@bevry/update-contributors","assert-helpers","coffeelint","kava","projectz", -"valid-directory","build","build and deployment","cms","compile","content management system","dev","dms", -"document management system","language agnostic","render","templating","web development","dependency-cruiser","dpdm", -"docsify.js","tabs","@textlint/markdown-to-ast","anchor-markdown-header","update-section","bitbucket","gitlab","ghost", -"doctrine-temporary-fork","konan","mdast-util-inject","micromark-util-character","parse-filepath", -"remark-reference-links","unist-builder","vfile-reporter","vfile-sort","chdir","documentation-schema","jsdoc3", -"big-integer","binary-search-bounds","int64-buffer","priorityqueuejs","semaphore", -"tunnel","cosmosdb","cosmos db","document database","nosql","database","crowdin-cli","imagemin-svgo","tree-node-cli", -"truncate-html","imagemin-optipng","imagemin-gifsicle","imagemin-jpegtran","filepath","glob-promise","websites", -"open source","autocomplete.js","lunr-languages","to-vfile","unist-util-is","offline-search","@4c/rollout", -"@4c/tsconfig","@react-bootstrap/babel-preset","@react-bootstrap/eslint-config", -"@react-bootstrap/eslint-config-typescript","karma-html2js-preprocessor","simulant","cross-browser","height","class", -"classlist","domelementtype","raster","png","@types/trusted-types","lodash.sample","qunit-tap", -"rollup-plugin-includepaths","mathml","secure","sanitizer","sanitize","filter","purify",".env","expand","interpolation", -"substitution","ext-name","filenamify","archive-type","is-zip","random-buffer","git-clone","repo","repository","tarball", -"import-from","parse-cmd-args","simple-update-notifier","ts-jest-resolver","dox", -"spawn-please","@types/temp","alex","babel-preset-fbjs","eslint-config-fbjs","fbjs-scripts","gulp-derequire", -"stats-webpack-plugin","webpack-stream","draftjs","richtext","just-extend","@parcel/transformer-inline-string", -"@parcel/transformer-sass","cypress-file-upload","karma-sinon-chai","parcel","dragndrop","drag and drop","file upload", -"upload","tsutils","dts-critic","@definitelytyped/utils","@definitelytyped/header-parser", -"@definitelytyped/typescript-versions","@types/strip-json-comments","@types/json-stable-stringify","proper-lockfile", -"db","elementscript","dw-neit-colors","dw-neit-cssinjs","dw-neit-cssinjs-utils","dw-neit-icons", -"dw-neit-ant-design-react-slick","dw-neit-rc-component-color-picker","dw-neit-rc-component-mutate-observer", -"dw-neit-rc-component-qrcode","dw-neit-rc-component-tour","dw-neit-rc-component-trigger","dw-neit-rc-cascader", -"dw-neit-rc-checkbox","dw-neit-rc-collapse","dw-neit-rc-dialog","dw-neit-rc-drawer","dw-neit-rc-dropdown", -"dw-neit-rc-field-form","dw-neit-rc-image","dw-neit-rc-input","dw-neit-rc-input-number","dw-neit-rc-mentions", -"dw-neit-rc-menu","dw-neit-rc-motion","dw-neit-rc-notification","dw-neit-rc-pagination","dw-neit-rc-picker", -"dw-neit-rc-progress","dw-neit-rc-rate","dw-neit-rc-resize-observer","dw-neit-rc-segmented","dw-neit-rc-select", -"dw-neit-rc-slider","dw-neit-rc-steps", -"dw-neit-rc-switch","dw-neit-rc-tabs","dw-neit-rc-textarea","dw-neit-rc-tree","dw-neit-rc-util","dw-neit-rc-table", -"dw-neit-rc-tooltip","dw-neit-rc-tree-select","dw-neit-rc-upload","@antv/g6","@types/pixelmatch","eslint-plugin-lodash", -"@eslint/core","control flow","iteration","zrender","@lang/rollup-plugin-dts","data-visualization","charting-library", -"apache","data-viz","editorconfig","gulp-exclude-gitignore","gulp-reporter","gulp-tap","linez","os-locale", -"@types/get-stream","@types/through2","@types/vinyl","@types/vinyl-fs","fix","enforce","gulpplugin","agentkeepalive", -"aliasify","backport","grunt-run","null-loader","through2-map","grunt-webpack","grunt-contrib-compress","@electron/get", -"lazy-val","dmg-builder","builder-util","app-builder-lib","builder-util-runtime","installer","packager","pack","nsis", -"dmg","pkg","msi","exe","setup","Windows","OS X","MacOS","Mac","appx","snap","flatpak", -"@electron/asar","@electron/notarize","@electron/osx-sign","@electron/universal","cross-spawn-windows-exe","galactus", -"get-package-info","junk","parse-author","rcedit","bundler","electron-download","home-path","wonderful-fetch", -"batch-processor","grunt-banner","@vue/component-compiler-utils","algoliasearch","babel-plugin-transform-vue-jsx", -"babel-regenerator-runtime","cp-cli","eslint-config-elemefe","eslint-plugin-json","file-save","gulp-cssmin", -"launch-editor-middleware","markdown-it-chain","select-version-cli","transliteration","uppercamelcase", -"vue-template-es2015-compiler","eleme","brorand","hash.js","hmac-drbg","minimalistic-assert","minimalistic-crypto-utils", -"grunt-mocha-istanbul","EC","Elliptic","curve","Cryptography","@ladjs/consolidate","@ladjs/i18n","get-paths","juice", -"nodemailer-sendgrid","preview-email","email","lad","lass","mailchimp","mailgun","mandrill","moonmail","postmark", -"sendgrid","@types/mailparser","@types/smtp-server","mailparser","smtp-server","@ember-tooling/blueprint-blueprint", -"@ember-tooling/blueprint-model","@ember/app-blueprint", -"@pnpm/find-workspace-dir","babel-remove-types","broccoli-concat","broccoli-config-loader","broccoli-config-replace", -"broccoli-debug","broccoli-funnel-reducer","broccoli-slow-trees","broccoli-source","broccoli-stew", -"calculate-cache-key-for-tree","capture-exit","clean-base-url","console-ui","content-tag","core-object","dag-map", -"ember-cli-is-package-missing","ember-cli-preprocess-registry","ensure-posix-path","find-yarn-workspace-root", -"heimdalljs-fs-monitor","heimdalljs-graph","heimdalljs-logger","is-git-url","is-language-code","markdown-it-terminal", -"p-defer","promise-map-series","promise.hash.helper","quick-temp","safe-stable-stringify","sane","sort-package-json", -"symlink-or-copy","tree-sync","watch-detector","yam","@ember-tooling/classic-build-addon-blueprint", -"@ember-tooling/classic-build-app-blueprint","chai-files","ember-cli-blueprint-test-helpers", -"ember-cli-internal-test-helpers","eslint-plugin-chai-expect","fixturify-project","release-plan","tmp-promise", -"yuidoc-ember-cli-theme","yuidocjs","app-kit","ember","ember-app-kit","ember.js","amd-name-resolver", -"babel-plugin-debug-macros","babel-plugin-ember-data-packages-polyfill","babel-plugin-ember-modules-api-polyfill", -"broccoli-babel-transpiler","ember-cli-babel-plugin-helpers","ember-cli-version-checker","@ember/optional-features", -"@ember/string","@ember/test-helpers","@glimmer/component", -"@glimmer/tracking","code-equality-assertions","ember-auto-import","ember-cli-dependency-checker", -"ember-cli-inject-live-reload","ember-load-initializers","ember-qunit","ember-resolver","ember-source", -"ember-source-channel-url","eslint-plugin-ember","loader.js","ember-addon","@ember/edition-utils", -"babel-plugin-ember-template-compilation","broccoli-persistent-filter","js-string-escape","@embroider/test-setup", -"ember-cli-clean-css","ember-styleguide","ember-template-lint","ember-try","eslint-plugin-qunit","@emmetio/abbreviation", -"@emmetio/css-abbreviation","snippets","coding","streams","finish","close","end","es-errors","safe-regex-test", -"entitify","entity","enum","enumeration","datatype","type","github-release-cli","yamlify-object","info","issues", -"reporting","diagnostics","array.prototype.flat","function.prototype.name","has","html-element-map","is-boolean-object", -"is-callable","is-number-object","is-string","is-subset","lodash.escape","object.values","rst-selector-parser", -"string.prototype.trim","shallow rendering","shallowRender","test utils","assertion helpers","airbnb-prop-types", -"object.fromentries", -"codependence","oxlint","pastoralist","check for es6","check for modules","es check","es matching","es version", -"ecmascript check","ecmascript matching","ecmascript version","js version","js version check","js version matching", -"test js version","test ecmascript version","has-bigints","intl-fallback-symbol","make-arrow-function", -"make-async-function","@ljharb/tsconfig","@types/array.prototype.flatmap","@types/call-bind","@types/foreach", -"@types/has-bigints","@types/has-symbols","@types/isarray","@types/make-arrow-function","@types/make-async-function", -"@types/make-generator-function","@types/object.assign","@types/reflect.ownkeys","@types/tape","reflect.ownkeys", -"symbol.prototype.description","well-known-symbols","fixture","fixtures","es6-symbol","esniff","next-tick", -"plain-promise","ecmascript5","ecmascript6","es5","extensions","ext","addons","extras","utilities","es5 shim","json3", -"broccoli-rollup","git-repo-version","broccoli-watchify","broccoli-uglify-js","promises-aplus-tests-phantom", -"babel6-plugin-strip-class-callcheck","babel-plugin-transform-es2015-constants","futures","promisify", -"promises-es6-tests","setPrototypeOf","set", -"__proto__","regular","expression","special","characters","bower-registry-client","commonjs-everywhere", -"@eslint/config-array","@eslint/config-helpers","@eslint/plugin-kit","@humanfs/node","@humanwhocodes/module-importer", -"@humanwhocodes/retry","esquery","file-entry-cache","imurmurhash","json-stable-stringify-without-jsonify", -"@trunkio/launcher","@types/esquery","eslint-plugin-expect-type","eslint-release","eslint-rule-extender","eslump", -"fs-teardown","metascraper","metascraper-description","metascraper-image","metascraper-logo","metascraper-logo-favicon", -"metascraper-title","node-polyfill-webpack-plugin","npm-license","yorkie","babel-tape-runner","eslint-find-rules", -"eslintconfig","airbnb","es2016","es2018","confusing-browser-globals","prettier-package-json","quality","linter", -"jslint","code style","strict","verify","hint","eslint config","eslint-config-xo-space","eslint-prettier", -"@rushstack/eslint-patch","JavaScript Standard Style","code checker","code linter","code standards","policy", -"standard style","style checker","style linter","@eslint/config-inspector","automd","eslint-typegen","obuild", -"@eslint/css","xoxo","hugs","kisses","happy","happiness","cabin","rules","@typescript/native-preview", -"eslint-import-context","is-bun-module","stable-hash-x","unrs-resolver","@webpack-contrib/defaults", -"commitlint-azure-pipelines-cli","eslint-friendly-formatter","enhance-visitors","espurify","micro-spelling-correcter", -"eslint-ava-rule-tester","eslint-rule-composer","ast-metadata-inferer","@tsconfig/node16","@types/caniuse-lite", -"@types/lodash.memoize","browserslist-config-erb","kangax","@vuepress/plugin-pwa","eslint4b","vue-eslint-editor", -"comment","directive","exported","eslint-env","eslint-enable","eslint-disable","eslint-disable-line", -"eslint-disable-next-line","@eslint-community/eslint-plugin-eslint-comments","@types/eslint-scope","@types/espree", -"@types/estraverse","eslint-config-not-an-aardvark","string-natural-compare","gitdown","eslint-config-canonical", -"flowtype","@html-eslint/eslint-plugin","@html-eslint/parser","markdown-link-check","@rtsao/scc","array-includes", -"array.prototype.findlastindex","doctrine","eslint-import-resolver-node","eslint-module-utils","object.groupby", -"string.prototype.trimend","@angular-eslint/template-parser","escope","fs-copy-file-sync","linklocal","lodash.isarray", -"npm-which", -"typescript-eslint-parser","export","@schemastore/package","babel-plugin-replace-ts-export-assignment", -"eslint-remote-tester-repositories","@es-joy/jsdoccomment","@es-joy/resolve.exports","are-docs-informative", -"object-deep-merge","parse-imports-exports","spdx-expression-parse","to-valid-identifier","@es-joy/escodegen", -"@es-joy/jsdoc-eslint-parser","@hkdobrev/run-if-changed","@types/spdx-expression-parse", -"babel-plugin-transform-import-meta","jsdoc-type-pratt-parser","json-schema-to-typescript","open-editor","replace", -"@ota-meshi/ast-token-store","diff-sequences","eslint-json-compat-utils","@changesets/changelog-github", -"@ota-meshi/eslint-plugin","@ota-meshi/site-kit-eslint-editor-vue","@types/natural-compare","env-cmd", -"eslint-plugin-eslint-rule-tester","eslint-plugin-json-schema-validator","eslint-plugin-node-dependencies", -"stylelint-config-recommended-vue","stylelint-config-standard-vue","stylelint-stylus","vite-plugin-eslint4b","jsonc", -"ast-types-flow","axobject-query","damerau-levenshtein","jsx-ast-utils","language-tags","string.prototype.includes", -"to-ast","eslint-config-eslint","eslint-plugin-es-x","ts-declaration-location","@types/globrex","ts-ignore-import", -"eslint-utils","prettier-linter-helpers","array.prototype.findlast","array.prototype.tosorted","es-iterator-helpers", -"string.prototype.repeat","@babel/plugin-syntax-do-expressions","@babel/plugin-syntax-function-bind","gfm-footnotes", -"ls-engines","hermes-parser","@types/estree-jsx","@tsconfig/strictest","refa","regexp-ast-analysis", -"scslre","@types/pako","eslint-plugin-pere","eslint-snapshot-rule-tester","mocha-chai-jest-snapshot","safe-regex", -"eslint-config-nodesecurity","nodesecurity","jsx-ast-utils-x","functional-red-black-tree","sonarjs", -"svelte-eslint-parser","@types/eslint-utils","@types/esutils","@types/less","@types/postcss-safe-parser","@types/stylus", -"svelte-i18n","sveltejs","eslint-plugin-import-x","clean-regexp","find-up-simple","regexp-tree","regjsparser", -"@lubien/fixture-beta-package","nano-spawn","node-style-text","unicorn","@veritem/eslint-config","bumpp", -"vitest eslint plugin","eslint plugin","xml-name-validator","@types/xml-name-validator", -"eslint-plugin-markdown-preferences","@types/babel__code-frame","importx","ink-testing-library","eslint-test", -"@types/esrecurse","esrecurse","eslint-plugin-requirejs","escomplex-js","everything.js","json-diff", -"karma-safaritechpreview-launcher","node-tick-processor","unicode-8.0.0","gulp-tag-version","ethereumjs-common", -"@ethereumjs/config-nyc","@ethereumjs/config-prettier","@ethereumjs/config-tsc","@ethereumjs/config-tslint", -"contributor","karma-tap","typestrict","transactions","ethereum-cryptography","rlp","@types/assert","@types/secp256k1", -"karma-typescript","os-tmpdir", -"es-lookup-scope","qs-iconv","eval","evaulate","from","pause-stream","stream-combiner","asynct","it-is","stream-spec", -"ubelt","flatmap","join","eventemitter","addEventListener","addListener","pub/sub","emits","on","publish","subscribe", -"EventEmitter","EventEmitter2","EventEmitter3","Events","reactor","eventEmitter","eventDispatcher","listeners", -"@sindresorhus/merge-streams","human-signals","strip-final-newline","yoctocolors","get-node","is-in-ci","is-running", -"log-process-errors","exec","subprocess","fork","execfile","bin","binaries","local","stdio","stderr","drain","flush", -"3584","@jest/expect-utils","@jest/get-type","eslint-plugin-mmkal","pkg-pr-new","type-check","merge-descriptors", -"pbkdf2-password","array-flatten","setprototypeof","automatically","autogenerate","autogenerator","autogenerated", -"express3","partials", -"express-unless","authn","authz","token","expressjs","helpers","hoare","cjs-mock","tRPC","RPC","express.js", -"code-generation","fully-typed","type-safe","typed-api","express-api","http-api","client-server","unit-testing", -"browser-client","web-development","web-api","@docusaurus/plugin-client-redirects","@docusaurus/preset-classic", -"sanitization","openapi3-ts","@express-zod-api/zod-plugin","@types/depd","@types/http-errors","@types/node-forge", -"camelize-ts","snakify-ts","dts-plugin","handler","documentation-tool","schema-validation","endpoint", -"openapi-specification","swagger-documentation","covert","assign-symbols","is-extendable","array-slice","benchmarked", -"for-own","kind-of","props","shallow","webpack-defaults","@types/yauzl","gulp-mustache","vinyl-transform", -"color-support","parse-node-version","console.log","timestamp","pure-rand","@fast-check/expect-type", -"@fast-check/poisoning","property-based testing","end-to-end testing","quickcheck","jscheck","jsverify", -"fuzzer","fuzz","@fast-csv/parse","@fast-csv/format","writer","csv writer","CSV","@nodelib/fs.stat","@nodelib/fs.walk", -"@nodelib/fs.macchiato","@types/merge2","@types/picomatch","bencho","eslint-config-mrmlnc","hereby","snap-shot-it", -"implementation","strnum","transformer","js2xml","json2xml","click","@fastify/ajv-compiler","@fastify/error", -"@fastify/fast-json-stringify-compiler","@fastify/proxy-addr","abstract-logging","avvio","fast-json-stringify", -"find-my-way","light-my-request","process-warning","secure-json-parse","toad-cache","@jsumners/line-reporter","ajv-i18n", -"ajv-merge-patch","autocannon","branch-comparer","fast-json-body","fluent-json-schema","h2url","markdownlint-cli2", -"@umijs/babel-preset-umi","@umijs/bundler-webpack","@umijs/case-sensitive-paths-webpack-plugin","@utoo/pack", -"@vercel/ncc","babel-plugin-styled-components","babel-plugin-transform-define","loader-runner","piscina", -"typescript-transform-paths","@types/loader-runner","@types/minimatch","array.prototype.foreach","array.prototype.join", -"array.prototype.map","array.prototype.push","array.prototype.slice","string.prototype.split","tap-parser","human", -"anything", -"protocol","fbjs-css-vars","setimmediate","@skypack/package-check","babel-plugin-minify-dead-code-elimination","in web", -"in javascript","in react","Plug & Play","web component","react components","ui component","advanced component", -"advanced feature","scanner","phonebook","voice","autofillotp","share","livelocationtracking","detectmylocation", -"colorpicker","wakelock","WhatsappShare","NetworkConnection","TextToSpeech","VoiceRecognition","SnapScanner", -"NetworkMonitor","View360","functional program","data management","@types/glob-to-regexp","dequal","glob-to-regexp", -"stub","detect-libc","fiber","thread","worker","art","banner","symbol","symbols","figure","fallback","filesaver", -"saveas","blob","@tokenizer/inflate","strtok3","token-types","uint8array-extras","@tokenizer/token","commonmark", -"noop-stream","magic","pic","picture","photo","video","exif","elf","macho", -"jpg","apng","gif","flif","xcf","cr2","cr3","orf","arw","dng","nef","rw2","tif","bmp","icns","jxr","psd","indd","rar", -"gz","7z","mp4","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","epub","mobi", -"rtf","woff","woff2","eot","ttf","otf","ttc","ico","flv","ps","xz","xpi","cab","deb","ar","rpm","Z","lz","cfb","mxf", -"mts","wasm","webassembly","blend","bpg","docx", -"pptx","3gp","j2c","jp2","jpm","jpx","mj2","aif","odt","ods","odp","heic","ics","pcap","dsf","lnk","voc","ac3","3g2", -"m4b","m4p","m4v","f4a","f4b","f4p","f4v","mie","qcp","asf","ogv","ogm","oga","spx","ogx","ape","wv","cur","nes","crx", -"ktx","dcm","mpc","arrow","shp","aac","mp1","it","s3m","xm","skp","eps","lzh","pgp","asar","chm","3mf","zst","jxl","vcf", -"jls","pst","dwg","parquet","arj", -"cpio","ace","avro","icc","fbx","vsdx","vtt","apk","drc","lz4","potx","xltx","dotx","xltm","ots","odg","otg","otp","ott", -"xlsm","docm","dotm","potm","pptm","jar","jmp","sav","ppsm","ppsx","reg","dat","size","readable","file system", -"locate-path","unicorn-magic","up","look-up","look","parent","walking","detect-file","resolve-dir","homedir-polyfill", -"@firebase/ai","@firebase/app","@firebase/auth","@firebase/util","@firebase/storage","@firebase/database", -"@firebase/analytics","@firebase/app-check","@firebase/app-types","@firebase/firestore","@firebase/functions", -"@firebase/messaging","@firebase/app-compat","@firebase/auth-compat","@firebase/performance","@firebase/data-connect", -"@firebase/installations","@firebase/remote-config","@firebase/storage-compat","@firebase/database-compat", -"@firebase/analytics-compat","@firebase/app-check-compat","@firebase/firestore-compat","@firebase/functions-compat", -"@firebase/messaging-compat","@firebase/performance-compat","@firebase/installations-compat", -"@firebase/remote-config-compat","Firebase","realtime","remote-config","@fastify/busboy","@firebase/database-types", -"farmhash-modern","google-auth-library","jwks-rsa","@firebase/api-documenter","@firebase/auth-types","@types/bcrypt", -"@types/firebase-token-generator","@types/request","@types/request-promise","firebase-token-generator", -"http-message-parser","admin","@apphosting/build","@apphosting/common","@electric-sql/pglite", -"@electric-sql/pglite-tools","@google-cloud/cloud-sql-connector","@google-cloud/pubsub","@modelcontextprotocol/sdk", -"async-lock","cjson","deep-equal-in-any-order","exegesis","exegesis-express","gaxios","libsodium-wrappers","lsofi", -"pg-gateway","pglite-2","proxy-agent","sql-formatter","stream-chain","stream-json","superstatic","triple-beam", -"universal-analytics","update-notifier-cjs","zod-to-json-schema","cdn","ssl","hosting","synchronization","alce", -"detect-newline","extend-object","@types/rimraf","matcher-collection","unflatten","nested","@types/acorn", -"rollup-plugin-livereload", -"rollup-plugin-serve","lightweight","byline","util-extend","markdox","deploy","deployment","commands","devops","ssh", -"tasks","sequential","remote","fabric","inference","wrapper","flowbite-datepicker","mini-svg-data-uri", -"@tailwindcss/cli","@tailwindcss/postcss","eslint-plugin-tailwindcss","flowbite-typography", -"prettier-plugin-tailwindcss","windicss","ui components","tailwind components","tailwind elements","tailwind library", -"tailwind sections","tailwind ui","tailwind angular","tailwind django","tailwind ruby on rails","tailwind flask","cjs", -"umd","ffmpeg","fbemitter","react-addons-test-utils","dispatcher","lolex","redirect","location","@types/is-callable", -"cliff","shush","flatiron","nssocket","forever-monitor","getopts","cli-testlab","fault tolerant","sysadmin", -"node-abort-controller","jest-circus","karton","typecheck","@types/babel-code-frame","increment","asynckit", -"combined-stream","es-set-tostringtag","browserify-istanbul","fake", -"far","is-node-modern","js-randomness-predictor","obake","dezalgo","@paralleldrive/cuid2","formdata-polyfill", -"prettier-plugin-pkgjson","@tunnckocore/prettier-config","www","ulpoad","tiny-warning","just-debounce-it","tsdx", -"react hooks","render props","higher order component","hoc","conditional","friendly","errors","check-dts","front matter", -"meta data","universalify","klaw","read-dir-files","extra","mkdir","mkdirs","create","output","release-assist", -"any-promise","thenify-all","mac","ie","@monaco-editor/loader","@sapphire/stopwatch","@sapphire/utilities", -"@snippetors/vuepress-plugin-tabs","@vuepress/plugin-google-analytics","monaco-editor","vuepress-plugin-google-adsense2", -"bitap","socket","sublime","sublime text","globule","grunt-benchmark","yeoman-test","yeoman-assert","insight", -"restangular","ui-router","foundation","traceur","haml","git-config","find-git-root","@merkle-open/eslint-config", -"nitro","modular","pool", -"pooling","inject-markdown","ts2mjs","iterator","iterators","iterable","reduce","@werkzeugkiste/eslint-config", -"@werkzeugkiste/release-config","install-deps-postmerge","semantic-release-conventional-commits","@cfware/lint", -"@cfware/nyc","if-ver","libtap","finder","free","available","connection","tcp","scan","preferred","chosen","std", -"concat","@sec-ant/readable-stream","onetime","precise-now","get","consume","readablestream","resolve-pkg-maps", -"tsconfig","tsconfig.json","eslint-config-bevry","make-deno-edition","deno","deno-edition","deno-entry","denoland", -"es2022","export-default","ifconfig","ipconfig","mac-address","typed","email-addresses","dir-compare", -"eslint-config-tschaub","lodash.clone","manage-path","opt-cli","spawn-command","chai-string","eslint-config-kentcdodds", -"travis-after-all","hook","@primer/octicons","@primer/primitives","@rollup/plugin-html","minipass","path-scurry", -"dirname","wildcard", -"min-document","is-identifier","identifiers","environments","glob-stream","all","fnmatch","globbing","globs","multiple", -"paths","wildcards","gitignore","array-series","array-parallel","magick","graphicsmagick","gfsl", -"eslint-config-standard-with-typescript","msmc","mc","minecraft","launcher","java","java edition","arm","arm-support", -"forge","instances-management","instances","mod","mods","mc-mod","mc-mods","modpack","modpack-api","extendable","nbt", -"jarmods","skin fix","ky","eslint-plugin-no-floating-promise","varlock","google spreadsheets","google sheets", -"spreadsheet","spreadsheets","sheets","gdata","drive","google docs","google drive","googleapis-common","@types/execa", -"@types/mv","@types/ncp","@types/nunjucks","@types/url-template","@types/yargs-parser","js-green-licenses","jsdoc-fresh", -"jsdoc-region-tag","linkinator","pdfmake", -"google apis","client library","@sindresorhus/is","byte-counter","cacheable-lookup","cacheable-request", -"decompress-response","form-data-encoder","lowercase-keys","p-cancelable","responselike","@hapi/bourne","@types/pem", -"chunk-data","create-cert","create-test-server","pem","slow-stream","then-busboy","uri","curl","wget","zstd","zstandard", -"requests","human-friendly","sassdoc","gulp-cli","sass-color-helpers","govuk-prototype-kit","govuk","reading","retries", -"handling","EMFILE","EAGAIN","EINVAL","EPERM","EACCESS","graphql-js","test-all-versions","@graphql-tools/schema", -"section-matter","strip-bom-string","ansi-green","delimiter-regex","assemble","coffee","extracting","front", -"frontmatter","matter","site","@mapbox/node-pre-gyp","@types/bytebuffer","electron-mocha","google-protobuf", -"poisson-process","grunt-legacy-log","grunt-legacy-util","grunt-known-options","difflet","temporary", -"eslint-config-grunt", -"uglify","init","make","gruntplugin","browserify-incremental","liftup","pad-stream","grunt-nodemon","simultaneous", -"perf","faster","bin-version-check","compass","connect-livereload","file-sync-cmp","csslint","maxmin","cssmin","min", -"jpeg","hooker","less-plugin-clean-css","nodeunit-x","uri-path","grunt-coveralls","grunt-istanbul", -"grunt-github-remove-all-releases","gh","release","releases","report","vow","@commitlint/travis-cli","TDD", -"grunt-continue","grunt-env","grunt-istanbul-coverage","grunt-cafe-mocha","newer","stack-parser","grunt-release", -"grunt-templates-dylang","notify","mountain lion","mavericks","linux","notify-send","preprocess","libsass", -"requestretry","sauce-tunnel","grunt-sauce-tunnel","yui","spritesheet-templates","spritesmith","url2", -"eslint-config-twolfson","foundry","foundry-release-git","foundry-release-npm","get-pixels","gmsmith","sprite", -"spritesheet", -"grunt-mocha-cli","usemin","@npm/types","@types/json5","@types/write-file-atomic","inline-fixtures", -"@guarapi/eslint-config-guarapi","@swc/register","glob-watcher","undertaker","pipeline","series","streaming", -"gulp-footer","html2js","templatecache","gulp-symdest","atom","atom-shell","prefixes","postcss-runner","lodash.chunk", -"concurrent-transform","@azure/storage-blob","delayed-stream","streamifier","rewriting","transformation","codegen", -"desugaring","bom","mark","utf-8","add","prepend","gulp-codecov.io","bump-regex","plugin-log","version","versioning", -"gulp-version","gulp-plugin","cache-swap","object.pick","change-file-extension","changed","modified","modification", -"updated","mtime","stat","cached","passthrough","minify-css","jshint-reporter-jscs","parse-import","rework", -"rework-import","rework-plugin-url","inline","slush","dest","conflict","webserver", -"csscomb","rcloader","csslint-stylish","node-version-check","from2-string","@shinnn/eslint-config-node","warnings", -"flatnest","balanced-match","include","streamfilter","to-absolute-glob","divide","separate","relative", -"pretty-remarkable","sections","prettify","jsftp","jsftp-mkdirp","ftp-test-server","gift","wrap-promise","octonode", -"read-remove-file","@shinnn/eslint-config-node-legacy","branch","any-shell-escape","strip-bom-stream","gulpgit", -"stream-to-array","nid","gulp-declare","gulp-define-module","gulp-wrap","nsdeclare","eventstream","istanbul-coveralls", -"htm","htmlmin","gulp-spawn","gulp-svg2ttf","gulp-ttf2eot","gulp-ttf2woff","gulp-ttf2woff2","gulp-svgicons2svgfont", -"metapak","streamtest","@types/gulp","metapak-nfroidure","gulp-match","ternary-stream","stream-exhaust","if","ternary", -"exclude","gulp-gm","imagemin-webp","group-array","strip-color","@commitlint/config-angular","inject","stylesheets", -"webcomponents", -"scripts","index","inline-css","lodash.groupby","istanbul-threshold-checker","isparta","unit test", -"jasmine-terminal-reporter","gulplog","has-gulplog","array-unique","capture-stream","plugins","vinyl-bufferstream", -"stream-combiner2","kew","bufferstreams","ng-annotate","develop","restart","windows notification","mac notification", -"notify-osd","easy-transform-stream","ENV","echo","ifdef","ifndef","eslint-watch","views","precompile","src", -"replacestream","modify-filename","rev-hash","rev-path","sort-keys","vinyl-file","rev","revving","revision","expire", -"assets","each-async","md5-hex","ruby","source-maps","sourcemaps","sftp","@types/fancy-log","@types/lodash.template", -"brotli-size","measure","@gulp-sourcemaps/identity-map","@gulp-sourcemaps/map-sources","debug-fabulous","hook-std", -"mississippi","source maps","strip-debug","accord","looks-same","svg2png","stack", -"vector","rwd","retina","rendering","@types/through","incremental","@types/ansi-colors","gulp-diff", -"@types/plugin-error","incremental compilation","array-each","make-error-cause","tape-catch","source-list-map", -"eslint-plugin-no-use-extend-native","uncss","useref","async-once","mock-gulp-dest","array-differ","array-uniq","beeper", -"lodash._reescape","lodash._reevaluate","lodash._reinterpolate","lodash.templatesettings","yazl","yazul","vinyl-zip", -"anymatch","proxy-middleware","vinyl-assign","pngparse","phantomjssmith","zlib","compressed","catering","deglob", -"find-file-up","find-githost","remark-autolink-references","remark-common-changelog", -"remark-lint-blockquote-indentation","remark-lint-checkbox-character-style","remark-lint-checkbox-content-indent", -"remark-lint-code-block-style","remark-lint-definition-case","remark-lint-emphasis-marker", -"remark-lint-fenced-code-marker","remark-lint-final-newline","remark-lint-hard-break-spaces", -"remark-lint-list-item-bullet-indent","remark-lint-list-item-indent","remark-lint-no-auto-link-without-protocol", -"remark-lint-no-blockquote-without-marker","remark-lint-no-duplicate-definitions", -"remark-lint-no-heading-content-indent","remark-lint-no-inline-padding","remark-lint-no-literal-urls", -"remark-lint-no-unused-definitions","remark-lint-rule-style","remark-lint-strong-marker", -"remark-lint-table-cell-padding","remark-lint-table-pipes", -"remark-lint-unordered-list-marker-style","remark-validate-links","unified-engine","vfile-reporter-shiny", -"git-pull-or-clone","fixer","changelogplease","git-tags","grunt-contrib-qunit","grunt-string-replace","jquery-hammerjs", -"gestures","neo-async","chai-diff","grunt-contrib-requirejs","ammo","shot","topo","heavy","mimos","bounce","catbox", -"podium","somever","subtext","teamwork","statehood","catbox-memory","wreck","vision","elements","flag","getopt", -"@types/core-js","get-own-property-symbols","typeof","sham","function-bind","@types/function-bind", -"@types/mock-property","hasOwnProperty","hasOwn","has-own","own","in","@ungap/structured-clone","hast-util-from-parse5", -"unist-util-position","web-namespaces","zwitch","@types/ungap__structured-clone","remark-api","hast-util","hast","unist", -"raw","aria-attributes","html-tag-names","safe","bcp-47-match","devlop","direction","selectall", -"estree-util-attach-comments", -"estree-util-is-identifier-name","mdast-util-mdx-expression","mdast-util-mdx-jsx","mdast-util-mdxjs-esm", -"esast-util-from-js","ccount","tostring","sval","solid","unist-util-find-after","estree-util-build-jsx","svg-tag-names", -"hyperscript","vdom","virtual","regexgen","sort-object","content-security-policy","cross-origin-embedder-policy", -"cross-origin-opener-policy","cross-origin-resource-policy","origin-agent-cluster","referrer-policy", -"strict-transport-security","x-content-type-options","x-dns-prefetch-control","x-download-options","x-frame-options", -"x-permitted-cross-domain-policies","x-powered-by","x-xss-protection","@vue/compiler-dom","abbrev","fast-archy", -"fast-text-table","hexo-cli","hexo-front-matter","hexo-fs","hexo-i18n","hexo-log","hexo-util","js-yaml-js-types","moize", -"titlecase","warehouse","@types/abbrev","0x","eslint-config-hexo","hexo-renderer-marked","util-deprecate", -"grunt-gh-pages","scrawl","transducers-js","tiny-worker","wcag-contrast","css-color-names","deep-freeze-es6", -"dependency-resolver","step","hap-nodejs","@types/source-map-support","eslint-plugin-import-newlines", -"@hono/eslint-config","bun-types", -"editorconfig-checker","oxc-parser","vite-plugin-fastly-js-compute","wrangler","application","cloudflare","workers", -"fastly","compute","workshopper-adventure","workshop","adventure","tutorial","tutor","@size-limit/preset-big-lib", -"@types/jscodeshift","pojo","attribute","element","@exodus/bytes","@types/he","flowgen","html entities", -"html entities encode","html entities decode","entities encode","entities decode","ascjs","unescape","posthtml-webp", -"unescape-unicode","relateurl","compressor","packer","uglifier","alpinejs","commitlint-config-non-conventional", -"rollup-plugin-polyfill-node","tags","void","self-closing","@types/jasmine","@bubkoo/tsconfig","@bubkoo/eslint-config", -"@bubkoo/rollup-config","@bubkoo/commitlint-config","@bubkoo/semantic-release-config","screenshot","capture", -"@selderee/plugin-htmlparser2","selderee","mail","plain","@html-validate/stylish","@sidvind/better-ajv-errors", -"@types/html-minifier-terser","pug-loader","webpack-recompilation-simulator","@types/relateurl","bunchee", -"eslint-plugin-unused-imports","srcset","posthtml-plugin","postproccessor", -"rss","toidentifier","requires-port","sse","agent-base","agent","@types/is-glob","mockttp","next.js","union","corser", -"secure-compare","eol","eslint-config-populist","https-server","@types/should","@types/eslint__js","status", -"@types/markdown-table","HttpStatus","httpclient","mediation","@types/async-retry","post","put","duplex", -"eslint-config-sanity","hyphenate","singular","plural","camelize","dasherize","demodulize","ordinalize","uncountable", -"singularize","titleize","tableize","classify","foreign_key","@messageformat/core","fast-printf","make-plural", -"math-interval-parser","l10n","@arktype/attest","gh-release","i18next-browser-languagedetector","i18next-fs-backend", -"i18next-http-backend","i18next-localstorage-cache","i18next-sprintf-postprocessor","internationalization","translation", -"localization","globalization","gettext","gridly","safer-buffer","errto","iconv","unorm","bench-node","charset", -"icu","harmony-reflect","proxies","identity","eslint-config-ostai","pre-suf","spawn-sync",".gitignore","manager", -"asterisks","regular-expression","dimensions","resolution","heif","tga","tiff","ow","p-pipe","image-dimensions","is-png", -"pngquant-bin","imageminplugin","pngquant","utf7","reader","cpx2","deep-freeze","import-size","seamless-immutable", -"type-plus","mutable","copy-on-write","@types/invariant","immutability","lazy","stateless","bypass","prefer","metacom", -"metaconfiguration","metalog","metaschema","metautil","metavm","metawatch","eslint-config-metarhia","isolation", -"enterprise","scalable","soa","stateful","routing","cluster","interactive","align","every","inferno-shared", -"inferno-utils","user interfaces","renderToString","inflections","inflection-js","humanize","capitalize", -"inheritance","klass","oop","object-oriented","@alcalzone/ansi-tokenize","auto-bind","patch-console","terminal-size", -"yoga-layout","@types/react-reconciler","@types/scheduler","@types/signal-exit","@vdemedes/prettier-config", -"eslint-config-xo-react","react-devtools-core","print","inline-style","inno","innosetup","run-async","fwk","instagram", -"ig","driver","reify","exports","packaging","remark-code-import","coffee.md","litcoffee","yml", -"babel-plugin-transform-es3-member-expression-literals","babel-plugin-transform-es3-property-literals", -"babel-preset-es2015-rollup","cldr-cal-buddhist-full","cldr-cal-chinese-full","cldr-cal-coptic-full", -"cldr-cal-dangi-full","cldr-cal-ethiopic-full","cldr-cal-hebrew-full","cldr-cal-indian-full","cldr-cal-islamic-full", -"cldr-cal-japanese-full","cldr-cal-persian-full","cldr-cal-roc-full","cldr-core","cldr-dates-full","cldr-numbers-full", -"estraverse-fb","grunt-curl","grunt-zip","rollup-plugin-memory","ecma402","@vue/tsconfig","flag-icons", -"google-closure-library","grunt-replace","prettier-eslint","international","country","dial code","telephone","phone", -"@inversifyjs/common", -"@inversifyjs/container","@inversifyjs/core","dependency inversion","inversion of control container","ioc","leek", -"ssh-config","elementtree","@ionic/discover","@ionic/utils-fs","superagent-proxy","@ionic/utils-array", -"@ionic/utils-stream","@ionic/cli-framework","@ionic/utils-network","@ionic/utils-process","@ionic/utils-terminal", -"@ionic/utils-subprocess","@ionic/cli-framework-prompts","@types/diff","@types/open","@types/split2","@types/os-name", -"@types/elementtree","ionic framework","ionicframework","hybrid","@types/svgo","jest-stencil-runner","icon pack", -"custom element","@ioredis/commands","cluster-key-slot","denque","lodash.isarguments","redis-errors","redis-parser", -"standard-as-callback","@ioredis/interface-generator","@types/lodash.defaults","@types/lodash.isarguments", -"@types/redis-errors","sentinel","pipelining","irc-colors","node-icu-charset-detector","ansi-color","is-extglob", -"braces","extglob","globstar","global-directory","globally","installed","locally","vanilla","pure","is-object","kind", -"custom element name","writable","is-inside-container","esmock","wsl", -"subsystem","kindof","lintspaces-cli","code coverage","JS code coverage","JS coverage","js-calendar","v-click-outside-x", -"autoprefixer-loader","babel-plugin-transform-es5-property-mutators","compression-webpack-plugin","vue-html-loader", -"character-parser","constantinople","jstransformer","transformers","with","browserify-middleware","code-mirror", -"github-basic","handle","highlight-codemirror","inconsolata","jade-code-mirror","jade-highlighter","jstransformer-cdata", -"jstransformer-coffee-script","jstransformer-less","jstransformer-marked","jstransformer-stylus", -"jstransformer-verbatim","less-file","lsr","pull-request","stop","filelist","rake","video-worker", -"babel-plugin-annotate-pure-calls","browserslist-config-nk","eslint-config-nk","json-file","prettier-config-nk", -"parallax","youtube","vimeo","@jasminejs/reporters","eslint-plugin-jasmine","css-url-embed","walkdir", -"jasmine-reporters","jasmine-growl-reporter","cssfontparser","moo-color","babel-plugin-version","@jest/diff-sequences", -"@jest/environment","@jest/environment-jsdom-abstract","@jest/fake-timers","jest-serializer-ansi-escapes","matchers", -"extended","@types/escape-html","@types/jump.js", -"@types/randomcolor","eslint-webpack-plugin","jump.js","randomcolor","web-vitals","libxmljs2","plugnplay","pnp", -"babel-plugin-add-import-extension","@types/merge-stream","jest-leak-detector","worker-farm","@jimp/core","@jimp/diff", -"@jimp/js-bmp","@jimp/js-gif","@jimp/js-jpeg","@jimp/js-png","@jimp/js-tiff","@jimp/plugin-blit","@jimp/plugin-blur", -"@jimp/plugin-circle","@jimp/plugin-color","@jimp/plugin-contain","@jimp/plugin-cover","@jimp/plugin-crop", -"@jimp/plugin-displace","@jimp/plugin-dither","@jimp/plugin-fisheye","@jimp/plugin-flip","@jimp/plugin-hash", -"@jimp/plugin-mask","@jimp/plugin-print","@jimp/plugin-quantize","@jimp/plugin-resize","@jimp/plugin-rotate", -"@jimp/plugin-threshold","@jimp/types","@jimp/utils","@jimp/config-eslint","@jimp/config-typescript", -"@jimp/config-vitest","@jimp/test-utils","node-self","vite-plugin-node-polyfills","image processing", -"image manipulation","resize","@babel/helper-simple-access","@rspack/cli","@rspack/core", -"@types/babel__helper-plugin-utils","@types/babel__template","@types/babel__traverse","babel-plugin-parameter-decorator", -"destr","nano-jsx","preact-render-to-string","solid-js","wysiwyg editor","wysiwyg html editor","rich editor", -"rich text editor","contenteditable", -"vanillajs","wysisyg","rte","firmata","temporal","nanotimer","browser-serialport","grunt-jsbeautifier","0A02","0A21", -"16x2 LCD","20x4 LCD","2D120X","2Y0A02","2Y0A21","74HC595","ADXL335","ADXL345","ALS-PT19","ALSPT19","ANALOG","arduino", -"Ardumoto","AT42QT1070","BLINKM","BMP180","Continuous Rotation","DEFAULT","Diffused LED","DS18B20", -"Edison Arduino Block","Edison GPIO Block","Edison I2C Block","Edison PWM Block","edison","ESPLORA","EV3","galileo-io", -"galileo","GP2D120XJ00F","GP2Y0A02YK0F","GP2Y0A21YK","GP2Y0A41SK0F","GY-521","GY521","HD44780","High Torque", -"Hitec HS-35HD","Hitec HS-422","Hitec HS-425BB","Hitec HS-625MG","Hitec HS-646WP","Hitec HS-755HB","Hitec HS-805BB", -"Hitec HS-85MG","HMC5883L","HMC6352","Hobby Motor","HRLV-MaxSonar-EZ0","HT16K33","HTU21D","i2c", -"Infrared Proximity Sensor","Infrared Sensor", -"intel edison","intel galileo","ISL29125","JHD1313M1","Joystick","LCD1602","LCD2004","LCM1602","LED","LIDAR-Lite v2", -"Ludus Protoshield Wireless","Ludus Protoshield","LV-MaxSonar-EZ0","LV-MaxSonar-EZ3","MCP23008","MCP23017","MCP9808", -"Metal Gear","MJKDZ","MMA7361","MMA7660","MMA8462Q","MPL115A2","MPL3115A2","MPR121","MPR121QR2","MPU-6050","MPU6050", -"MUXSHIELD2","NXT","OA41SK","PARALLEL","PCA9685","pcduino","PCF8574","PCF8574A","PCF8574AT","PCF8574T","PCF8575", -"PCF8591","photon","PIR Motion Sensor","QTOUCH","raspberry pi","raspberrypi","raspi-io","RedBoard","RGB LED","robot", -"robotics","rpi","serial","Servo","Shift Register 8-Bit SN74HC595","Shift Register","SI7020","spark core","spark-io", -"spark","SparkFun Essential Sensor Kit","SparkFun Sensor Kit","Speed controller","Temperature","tessel 2", -"Thumb Joystick","TINKERKIT","TMP36","TSL2561","Ultrasonic Range Finder","usb","VKEY","Weather Shield Arduino", -"Weather Shield Photon","@hapi/address","@hapi/formula","@hapi/pinpoint","@hapi/tlds","recoil","grunt-html", -"commitplease","grunt-bowercopy","grunt-git-authors","grunt-compare-size","jquery-test-runner","eslint-config-jquery", -"config-chain","beautifier","code-quality","grunt-exec","gzip-js","amd","rollup-plugin-node-polyfills","pyyaml", -"knifecycle","package-directory","yerror","architecture","gitignore-to-glob","@jscpd/badge-reporter","@jscpd/core", -"@jscpd/finder","@jscpd/tokenizer","@jscpd/html-reporter","jscpd-sarif-reporter","cst","jscs-jsdoc", -"jscs-preset-wikimedia","reserved-words","to-double-quotes","to-single-quotes","vow-fs","unicode-7.0.0","unit-coverage", -"@jsdoc/salty","catharsis","js2xmlparser","requizzle","current-module-paths","object-to-spawn-args","config-master", -"@acemir/cssom","@asamuzakjp/dom-selector","@bramus/specificity","data-urls","decimal.js","saxes","symbol-tree", -"w3c-xmlserializer", -"webidl-conversions","whatwg-url","mocha-sugar-free","webidl2","webidl2js","browser-request","cssom","nwmatcher", -"selenium-standalone","unicode-13.0.0","results-interpreter","unicode-5.2.0","unicode-11.0.0","stylish","deeks", -"doc-path","to","json2csv","csv2json","csv-2-json","milliparsec","sort-on","prototyping","dummy","@types/object-keys", -"deterministic","stable","circular","unicode-10.0.0","@stryker-mutator/mocha-runner","json-metaschema","jsonparse", -"trees","jws","lodash.once","lodash.includes","lodash.isnumber","lodash.isboolean","lodash.isinteger","@jspm/generator", -"@jspm/plugin-rollup","amaro","states","lie","jszip-utils","package-json-versionify","inflate","qjobs","dom-serialize", -"timer-shim","karma-junit-reporter","karma-script-launcher","spectacular","execution","hat","os-shim","karma-plugin", -"karma-preprocessor","browserify-tool","browserstack-local","karma-launcher","browser-stack","chrome","ibrik", -"karma-coffee-preprocessor","karma-requirejs","karma-reporter","Safari","Safari Tech Preview","SafariTechPreview","IE", -"Chrome","Chrome Canary","Chrome Headless","Chromium","Firefox","Opera","edge-launcher","chai-fs","os-homedir","firefox", -"karma-adapter","karma-rollup","safari","global-agent","@types/global-agent","sauce","labs","karma-brief-reporter", -"rollup-sourcemap-path-transform","keyboard","keyboardevent","keydown","keyup","metakey","keyname","@keyv/serialize", -"lru.min","timekeeper","@keyv/compress-gzip","@keyv/sqlite","@keyv/test-suite","@keyv/mongo","@keyv/compress-brotli", -"@keyv/compress-lz4","@keyv/memcache","key-value","adapter","memory","lru","tarn","escalade","pg-connection-string", -"tedious","oracledb","better-sqlite3","pg-query-stream","chai-subset-in-order","@tsconfig/recommended", -"toxiproxy-node-client","sql","postgres","cockroachdb","querybuilder","formatly","oxc-resolver","smol-toml", -"codeclimate-types", -"analysis","analyze","dead code","duplicate","entropy","maintenance","members","missing","monorepo","namespace", -"unreferenced","unresolved","workspace","lodash.sortby","explorer","opera","samsung-internet","uc-browser", -"stream-counter","delegates","http-assert","gen-esm-wrapper","@types/co-body","co-body","@koa/router", -"@types/koa__router","urlencoded","body","copy-to","bodyParser","compose","humanize-number","passthrough-counter", -"koa-compress","koa-route","mount","mounting","@ladjs/env","route","koa-send","sendfile","reds","node-redis-warlock", -"bossy","eslint-config-hapi","eslint-plugin-hapi","find-rc","will-call","cpr","lab-event-reporter","semver-regex", -"latest","package.json","current","autodoc","deft","jasmine-async","race.js","string-table","happen","leafdoc", -"bundlemon","git-rev-sync","karma-expect", -"prosthetic-hand","eslint-config-mourner","rollup-plugin-git-version","@mapbox/eslint-plugin-script-tags","gis","left", -"padding","repeat","numbers","aproba","cmd-shim","p-reduce","byte-size","write-pkg","wide-align","has-unicode", -"p-waterfall","libnpmaccess","p-map-series","set-blocking","@lerna/create","libnpmpublish","read-cmd-shim", -"load-json-file","init-package-json","make-fetch-happen","conventional-changelog-core","validate-npm-package-license", -"conventional-recommended-bump","conventional-changelog-angular","@octokit/plugin-enterprise-rest","multi-package", -"copy-anything","benny","bootstrap-less-port","html-template-tag","jit-grunt","less-plugin-autoprefix", -"mocha-teamcity-reporter","phin","read-glob","compile less","css nesting","css variable","gradients css", -"gradients css3","less compiler","less css","less mixins","less.js","lesscss","nested css","bootstrap css", -"bootstrap less","variables in css","css less","less-plugin-glob","browser-level","classic-level","abstract-level", -"airtap-playwright","@voxpelli/tsconfig","leveldb","napi-macros", -"abstract-leveldown","du","async-each","mkfiletree","readfiletree","prebuildify-ci","prebuildify-cross", -"level-concat-iterator","level-errors","level-supports","queue-microtask","deferred-leveldown","level-iterator-stream", -"memdown","trickle","airtap-sauce","run-parallel","encoding-down","simple-concat","fast-levenshtein","ld","levdist", -"levenshtein","levenshtein-component","levenshtein-edit-distance","talisman","distance","algorithm","comparison","edit", -"matching","binary-extensions","promise-retry","just-safe-set","fund","gitfund","crlf","gmail-send","jest-codemods", -"libphonenumber-metadata-generator","renamer","libphonenumber","fined","flagged-respawn","autolink","hashtag","link", -"mention","consolemock","staged","@samverschueren/stream-to-observable","is-observable","listr-silent-renderer", -"listr-update-renderer","listr-verbose-renderer","@lit-labs/ssr-dom-shim","@lit/reactive-element", -"@lit-internal/scripts","@lit-labs/testing","@webcomponents/template","connect-logger","http-auth","faye-websocket", -"livereload-js", -"resolve-pkg","matchdep","lws-basic-auth","lws-blacklist","lws-body-parser","lws-compress","lws-conditional-get", -"lws-cors","lws-json","lws-log","lws-mime","lws-range","lws-request-monitor","lws-rewrite","lws-spa","lws-static", -"full-stack","babel-preset-es2015-loose","browserify-derequire","grunt-es3-safe-recast","grunt-rollup","grunt-ts", -"rollupify","indexeddb","localstorage","websql","openurl","lockfile-lint-api","prettier-standard","lockfile check", -"lockfile lint","lock","stdlib","lodash-modularized","clonedeep","defaults","isempty","isequal","isfunction", -"isplainobject","isstring","omit","pick","uniq","uni-global","sprintf-kit","event-emitter","ncjsm","tape-index", -"terminal.js","update","refresh","overwrite","bar","date-format","streamroller","@log4js-node/sandboxed-module", -"grunt-contrib-jasmine","grunt-open","grunt-preprocess","math","int64","uid2","isemail", -"canonical-json","loopback-phase","strong-remoting","loopback-filters","strong-globalize","loopback-connector-remote", -"nodemailer-stub-transport","loopback-datasource-juggler","nodemailer-direct-transport","is-docker","loopback-boot", -"karma-es6-shim","loopback-context","strong-task-emitter","strong-error-handler","eslint-config-loopback","sqlserver", -"StrongLoop","mBaaS","steno","express-async-handler","@commitlint/prompt-cli","@typicode/eslint-config","embed", -"embedded","localStorage","sessionStorage","mru","@lucide/build-icons","@lucide/shared","@lucide/rollup-plugins", -"Lucide","HTML","Feather","Icons","Icon","SVG","Feather Icons","Fontawesome","Font Awesome","decree","manipulate","blur", -"sharpen","flip","mirror","hue","saturation","lightness","transparency","fade","opacity","contain","cover", -"@75lb/deep-merge","ansi-escape-sequences","create-mixin","load-module","sleep-anywhere","expand-home-dir", -"hast-util-to-mdast","mdast-util-to-markdown","short-unique-id","y18n", -"@types/columnify","@types/json-diff","@types/make-fetch-happen","@types/which","wizard","task graph", -"string manipulation","@favware/rollup-type-bundler","lavalink client","audio streaming","music bot","voice chat", -"discord integration","high performance","easy-to-use","feature-rich","seamless integration","community support", -"open-source","lavalink","path-type","intermediate","recursively","dingbat-to-unicode","lop", -"browserify-prepend-licenses","duck","hamjest","office","word","@nestjs/common","@nestjs/config","@nestjs/core", -"@nestjs/platform-express","@nestjs/swagger","@nestjs/throttler","@nestjs/typeorm","@yarnpkg/lockfile","uniqid", -"@codecov/bundle-analyzer","@nestjs/cli","@nestjs/testing","@testcontainers/mysql","@types/dasherize","crud", -"admin-panel","headless-cms","backend-framework","micro-backend","rapid-development","yaml-config","file-upload", -"api-generator","low-code","no-code","prototype","mvp","startup","baas","@next/eslint-plugin-next","@tabler/icons-react", -"eslint-config-next","postcss-preset-mantine","postcss-simple-vars", -"mantine","context","context-menu","context menu","react server components","user experience","usability","mapbox-gl", -"mapbox","legend","text processing","linkify-it","mdurl","punycode.js","uc.micro","markdown-it-for-inline", -"markdown-it-ins","markdown-it-mark","markdown-it-sub","ndoc","markdown-it-plugin","anchor","emoji","emojies","emoticon", -"emoticons","stream-from-to","pdf-text","rows","bunup","theredoc","markdown parser","solidjs","diacritics-map", -"lazy-cache","list-item","markdown-link","mixin-deep","repeat-string","document","glossary","heading","links", -"remarkableplugin","table of contents","table-of-contents","toc","micromark-core-commonmark", -"micromark-extension-directive","micromark-extension-gfm-autolink-literal","micromark-extension-gfm-footnote", -"micromark-extension-gfm-table","micromark-extension-math","micromark-util-types","gemoji", -"markdownlint-rule-extended-ascii","CommonMark","jsonpointer","run-con","@markedjs/eslint-config","@markedjs/testutils", -"esbuild-plugin-umd-wrapper","marked-highlight","marked-man", -"recheck","markup","v8-argv","inline-style-prefixer","react-event-listener","simple-assign","complex.js","escape-latex", -"javascript-natural-sort","typed-function","eigen","expr-eval","jsep","ndarray","ndarray-determinant","ndarray-gemm", -"ndarray-ops","ndarray-pack","numericjs","sylvester","zeros","mathematics","numeric","algebra","complex","fraction", -"charenc","md5sum","checksum","decode-named-character-reference","micromark-util-decode-numeric-character-reference", -"micromark-util-decode-string","micromark-util-normalize-identifier","micromark-util-symbol", -"unist-util-stringify-position","commonmark.json","micromark-build","mdast-util","mdast","tree", -"micromark-util-sanitize-uri","trim-lines","mdast-util-gfm","micromark-extension-gfm","mdn","mozilla","hashring", -"jackpot","InnoDB memcached API","failover","hashing","membase","memcache","nMemcached","@jsonjoy.com/fs-core", -"@jsonjoy.com/fs-fsa","@jsonjoy.com/fs-node","@jsonjoy.com/fs-node-builtins","@jsonjoy.com/fs-node-to-fsa", -"@jsonjoy.com/fs-node-utils","@jsonjoy.com/fs-print","@jsonjoy.com/fs-snapshot","@jsonjoy.com/json-pack", -"@jsonjoy.com/util", -"glob-to-regex.js","thingies","tree-dump","isomorphic-git","tslint-config-common","fs.js","in-memory","fsa", -"file system access","native file system","webfs","crudfs","opfs","casfs","content addressable storage", -"@types/lodash.isequal","fast-memoize","mem","nanocolors","memoization","gulp-exit","ram","errno","camelcase-keys", -"decamelize-keys","delete_comments","minimist-options","trim-newlines","cat","kitten","from2","lodash.clonedeepwith", -"stat-mode","ware","@metalsmith/drafts","assert-dir-equal","7zip-bin","node-7z","node-downloader-helper", -"@babel/plugin-syntax-import-meta","@surma/rollup-plugin-off-main-thread","asyncro", -"babel-plugin-transform-async-to-promises","babel-plugin-transform-replace-expressions","tiny-glob", -"@babel/plugin-proposal-throw-expressions","directory-tree","eslint-config-developit","npm-merge-driver-install", -"micro library","micromark-factory-space","micromark-util-chunked","micromark-util-combine-extensions", -"micromark-util-resolve-all","micromark-util-subtokenize","fill-range","bracket","character-class","expansion", -"extglobs","lookahead","lookaround","lookbehind","negate", -"negation","posix","star","@types/mime-db","mime-score","release-please","runmd","mime-db","mimetypes","Min Heap", -"min heap","maxheap","min-heap","heap","Binary Heap","binary-heap","heap data structure","min heap data structure", -"complete binary tree","heapify","heap sort","heapify up","heapify down","Priority Queue","priority queue", -"priorityqueue","priority-queue","priority q","priorityQ","efficient","priority","complete binary","extract min", -"min priority queue","efficient priority","ordering property","dynamic resizing","priority-based", -"priority-based processing","element priority","queue priority","sorted","decrease key","increase key","searching", -"@putout/minify","css-b64-images","html-minifier-next","montag","readjson","try-catch","try-to-catch","escover", -"eslint-plugin-putout","madrun","supertape","brace-expansion","signed","certificate","cert","@types/brace-expansion", -"make dir","dir","ufo", -"conditional-type-checks","mobservable","reactive","frp","functional-reactive-programming","state management", -"data flow","mobx-react-lite","expose-gc","browser-stdout","yargs-unparser","uslug","pidtree","rewiremock","unexpected", -"@mocha/docdash","jsdoc-ts-utils","unexpected-map","unexpected-set","unexpected-sinon","remark-inline-links", -"unexpected-eventemitter","fail-on-errors-webpack-plugin","@11ty/eleventy-plugin-inclusive-language","headless-chrome", -"chai-xml","test-console","xmllint","junit","lcov","define-data-property","gopd","has-property-descriptors", -"@types/es-value-fixtures","@types/for-each","@types/functions-have-names","@types/get-intrinsic","@types/gopd", -"@types/has-property-descriptors","@types/object-inspect","descriptor","define","swap","unix-dgram","unittest", -"gulp-coveralls","gulp-mocha-phantomjs","mockJSON","mockAjax","ipaddr.js","recursive-watch","fastest-validator","avsc", -"nats","etcd3","cbor-x","thrift","redlock","dd-trace","gc-stats","msgpack5","fakerator","kafka-node","v8-natives", -"@types/pino","notepack.io","benchmarkify","rhea-promise","@types/bunyan","jaeger-client","@types/ioredis", -"moleculer-repl","winston-context","event-loop-stats","node-nats-streaming","@icebob/node-memwatch","microservice", -"messagebus","services","micro","distributed","ender","timezone","olson","iana","zone","tz", -"monaco-languageserver-types","monaco-marker-data-provider","monaco-types","monaco-worker-manager", -"vscode-languageserver-textdocument","vscode-languageserver-types","vscode-uri","@remcohaszing/eslint", -"remark-preset-remcohaszing","yaml-language-server","monaco","monads","either","maybe","result", -"@codemirror/lang-javascript","@codemirror/theme-one-dark","@json2csv/plainjs","@lezer/highlight","basic-auth-connect", -"bootstrap-paginator-2","free-swig","gridfs-stream","mongodb-query-parser","renderjson-2","@cypress/code-coverage", -"assets-webpack-plugin","express-openid-connect","mongodb-memory-server","administration","GUI","manage","manage-mongo", -"phpmyadmin","UI","web-based","@mongodb-js/saslprep","mongodb-connection-string-url","aws4","socks","snappy", -"mocha-sinon","gcp-metadata","@types/kerberos","@types/saslprep","v8-heapsnapshot","@mongodb-js/zstd", -"@types/whatwg-url","@types/chai-subset","mongodb-client-encryption","@aws-sdk/credential-providers","kareem","mpath", -"mquery","sift","@ark/attest","@mongodb-js/mongodb-downloader","acquit","acquit-ignore","acquit-require", -"lodash.isequalwith","mongodb-runner","odm","datastore","backbone-callbacks","node-monitor","remote control","probe", -"JMX","core-monitor","dashboard","monitoring","control panel","@types/mongodb","monk-middleware-cast-ids", -"monk-middleware-fields","monk-middleware-handle-callback","monk-middleware-options","monk-middleware-query", -"monk-middleware-wait-for-connection","gitbook-cli","gitbook-plugin-anker-enable","gitbook-plugin-custom-favicon", -"gitbook-plugin-edit-link","gitbook-plugin-github","gitbook-plugin-prism","monk-middleware-debug","commist","help-me", -"mqtt-packet","worker-timers","number-allocator","aedes-cli","leaked-handles","mqtt-connection","@esm-bundle/chai", -"mqtt-level-store","esbuild-plugin-polyfill-node","publish/subscribe","@tediousjs/connection-string","msnodesql","tds", -"node-tds","node-sqlserver","msnodesqlv8", -"node-mssql","@types/statuses","headers-polyfill","rettime","until-async","@epic-web/test-server","@fastify/websocket", -"@types/json-bigint","@types/serviceworker","json-bigint","page-with","append-field","fs-temp","testdata-w3c-json-form", -"formdata","array-union","pend","release-it-pnpm","test report","html report","json to html","karma-story-reporter", -"mezr","web-animations-js","bin-packing","sqlstring","timezone-mock","urun","utest","sql-escaper","aws-ssl-profiles", -"generate-function","named-placeholders","poku","assert-diff","eslint-plugin-async-await","thenify","then","bats", -"switcher","couchdb","fastest-stable-stringify","rtl-css-js","iconista","libreact","pico","lite","in-js","styled", -"decorator","jsxstyle","rule","gitcloud","hasbin","page-icon","@types/hasbin","@types/page-icon","desktop","proxy-lib", -"font-finder","pbxproj-dom","@foxt/js-srp","simple-plist","ios-device-lib", -"email-validator","ios-sim-portable","plist-merge-patch","@nativescript/hook","@nativescript/doctor", -"nativescript-dev-xcode","ios-mobileprovision-finder","@nstudio/trapezedev-project","@rigor789/resolve-package-path", -"@types/plist","@types/retry","@types/byline","@types/pacote","@types/tabtab","@types/tunnel","@types/xml2js", -"@types/archiver","@types/qr-image","@types/marked-terminal","@types/proper-lockfile","@types/npmcli__arborist", -"@types/universal-analytics","afinn-165","afinn-165-financialmarketnews","apparatus","memjs","stopwords-iso", -"wordnet-db","browserfs","gulp-jasmine-browser","pegjs","uubench","natural language processing","artifical intelligence", -"Porter stemmer","Lancaster stemmer","bigram","trigram","quadgram","ngram","stemmer","bayes","classifier","phonetic", -"metaphone","inflector","Wordnet","tf-idf","logistic regression","doublemetaphone","double","jaro-winkler distance", -"levenshtein distance","string distance","part-of-speech tagger","Eric Brill","Brill tagger","sentiment analysis", -"maximum entropy modelling","secure-keys","nconf-yaml","key value store","plugabble","near social", -"bridge","near","binary-search-tree","exec-time","@fig/complete-commander","@golevelup/nestjs-discovery","nest", -"@postman/tough-cookie","chardet","liquid-json","postman-collection","postman-collection-transformer","postman-request", -"postman-runtime","serialised-error","@postman/shipit","dockerfile_lint","parse-gitignore","postman","rest-client", -"@apm-js-collab/tracing-hooks","@newrelic/security-agent","@tyriar/fibonacci-heap","import-in-the-middle", -"module-details-from-path","require-in-the-middle","@aws-sdk/s3-request-presigner","@matteo.collina/tspl", -"@newrelic/eslint-config","@newrelic/newrelic-oss-cli","@newrelic/test-utilities","@slack/bolt", -"@smithy/eventstream-codec","@smithy/util-utf8","git-raw-commits","self-cert","debugging","profiling","@panva/hkdf", -"openid-client","@edge-runtime/jest-environment","@types/nodemailer","@types/oauth","babel-plugin-jsx-pragmatic", -"babel-preset-preact","oauth2","nextauth","async handler","async functions","pipe","provider","TestBed","how-to", -"@ant-design/icons-angular","localhost","tunneling","webhook","deep-defaults","enqueue","function-source","minstache", -"sliced","mocha-generators","@nightwatch/chai", -"@nightwatch/html-reporter-template","@nightwatch/nightwatch-inspector","@types/selenium-webdriver","chai-nightwatch", -"devtools-protocol","didyoumean","nightwatch-axe-verbose","stacktrace-parser","mochawesome-merge", -"mochawesome-report-generator","nightwatchjs","selenium","webdriver","automated-testing","@sinonjs/text-encoding", -"@sinonjs/referee","jsdom-global","mochify","proxyquire-universal","proxyquireify","propagate","clang-format","n-api", -"napi","coffee-coverage","grunt-contrib-coffee","grunt-include-replace","internal","check-version-modules", -"used-deps-analyzer","container","skeleton","formate","dynamic-dedupe","filewatcher","tap-xunit","reload","subdir", -"char-regex","emojilib","skin-tone","sentences-per-line","emojis","smiley","smileys","smilies","ideogram","ideograms", -"fetch-blob","chai-iterator","stream-consumers","eslint-config-digitalbazaar","karma-tap-reporter","nodejs-websocket", -"worker-loader","aes","asn","asn.1","cbc","csr","des","gcm","hmac","pkcs", -"pki","prng","rc2","rsa","sha256","sha384","sha512","tls","x.509","x509","c2dm","fcm","messaging","geocoder","geocoding", -"geo","maps","mapquest","agol","arcgis","tomtom","exponential-backoff","require-inject","high5","html-parser", -"html5parser","htmljs-parser","htmlparser-benchmark","mocha-each","neutron-html5parser","biased-opener", -"strong-data-uri","v8-debug","v8-profiler","http mock","growly","shellwords","nexe","notification center", -"mac os x 10.8","terminal-notifier","windows 8 notification","toaster","ps-list","pty","pseudoterminal","forkpty", -"openpty","@node-red/editor-api","@node-red/runtime","@node-red/util","@node-red/nodes","node-red-admin","iot", -"sass-graph","async-foreach","stdout-stream","true-case-path","unique-temp-dir","long-timeout","sorted-array-functions", -"recurrent","rfc4122","fs.watch", -"watchfile","ngn","daemon","event logging","elevate","sudo","@mgcrea/eslint-config-node","@tsconfig/node-lts","excel", -"xls","jQuery","jQuery extend","inherit","combyne","clean-for-publish","libgit2","git2","@aws-sdk/client-sesv2", -"libbase64","libmime","libqp","nodemailer-ntlm-auth","proxy-test-server","Nodemailer","pstree.remy","undefsafe", -"autoload","multimeter","node-webkit","webkit","async-redis","express-ipfilter","express-ws","json-logic-js","json-sql", -"jsonpath-plus","line-reader","mocker-data-generator","node-ipc","promise-mysql","stjs","uuid-random","nolang", -"Programming","programming language","descriptive","5GL","json schema","Mehdi Salartayefeh","option parser","absolute", -"backslash","delimiter","file-path","forward","fp","slashes","trailing","unix","urix","normalization","normalisation", -"simplify","trim", -"canonical","mouse wheel","exit-hook","github-url-from-git","is-interactive","is-scoped","issue-regex","listr-input", -"new-github-release-url","npm-name","p-memoize","map-obj","write-package","archy","is-cidr","libnpmorg","libnpmpack", -"libnpmteam","fs-minipass","npm-profile","libnpmsearch","@sigstore/tuf","libnpmversion","@npmcli/config", -"npm-audit-report","minipass-pipeline","npm-user-validate","tiny-relative-date","fastest-levenshtein", -"json-parse-even-better-errors","@npmcli/git","@npmcli/docs","@tufjs/repo-mock","@npmcli/mock-globals", -"ajv-formats-draft2019","package manager","giturl","throat","semver-diff","preferred-pm","callsite-record", -"rc-config-loader","outdated","updates","updating","updater","@trivago/prettier-plugin-sort-imports", -"@types/chai-string","@types/cli-table","@types/ini","@types/jsonlines","@types/npm-registry-fetch", -"@types/parse-github-url","@types/semver-utils","@types/update-notifier","eslint-config-raine","fp-and-or","jsonlines", -"prompts-ncu","semver-utils","typescript-json-schema","verdaccio","vite-bundle-analyzer","vite-node", -"upgrade","versions","esbuild-node-externals","eslint-config-tc","eslint-config-typescript-tc", -"npm-package-json-lint-config-tc","auditor","mutate-fs","minipass-fetch","minizlib","registry","string.prototype.padend", -"eslint-config-mysticatea","commandline","npm-scripts","run","read-package-json-fast","script","string convert", -"yarn to npm","npm upgrade","babel-preset-latest","npm-cli","are-we-there-yet","mocha-jsdom","cvss", -"nodesecurity-npm-utils","gluegun","nuke","money","percentage","a-sync-waterfall","asap","mocha-phantomjs-core", -"mocha-phantomjs-istanbul","module-alias","node-libs-browser","css4","node-machine-id","resolve.exports", -"@yarnpkg/parsers","lines-and-columns","@napi-rs/wasm-runtime","Mobile","caching-transform","istanbul-lib-hook", -"istanbul-lib-processinfo","node-preload","process-on-spawn","spawn-wrap","any-path","@readme/openapi-parser", -"remove-undefined-objects","@readme/oas-examples","@types/json-schema-merge-allof","@types/memoizee","apis", -"openapi initiative","openapi specification","openapi spec","openapi document","oai","@readme/postman-to-openapi", -"@types/swagger2openapi", -"prollyfill","gulp-exec","@pkgjs/support","error-cause","globalthis","has-tostringtag","util.inspect","indexof", -"Object.keys","@mariocasciaro/benchpress","access","bean","notation","segment","es-object-atoms","Object.assign", -"$.extend","_.extend","Underscore","Object.entries","Object.values","entries","ES8","ee-first","wrappy", -"@blakeembrey/deque","@blakeembrey/template","epoll","@types/mock-require","gpio","interrupt","raspberry","raspi","pi", -"beaglebone","beaglebone-black","default-browser","define-lazy-prop","is-in-ssh","wsl-utils","opens","launch","start", -"xdg-open","xdg","default","urls","bath-es5","dereference-json-schema","axios-mock-adapter","json-schema-deref-sync", -"open api","computer","quadrocopter","countrynames","hashish","last-call-webpack-plugin","prelude-ls","deep-is","levn", -"livescript","option parsing","stdin-discarder","transform-tty", -"sequencify","stream-consume","sql-ddl-sync","sql-query","redshift","home","tmpdir","ps1","template string", -"template literal","styleable","scrollbar","scrollbars","scroll","@vscode/vsce","yauzl-promise","@types/is-ci", -"@types/yauzl-promise","limiter","vscode","addlistener","addeventlistener","waits","resolved","race","fulfilled", -"concurrency","ratelimit","fifo","invalidate","out","plunder","metadata","@pa11y/html_codesniffer","eslint-config-pa11y", -"proclaim","aria","compliance","headless","htmlcs","standards","WCAG","sigstore","npm-registry-mock","capture-website", -"filenamify-url","unused-filename","@types/png.js","png.js","page","screenshots","screengrab","striptags","para", -"server-side","idb-keyval","react-native-crypto-js","@saithodev/semantic-release-backmerge","@types/facebook-js-sdk", -"babel-plugin-transform-inline-environment-variables","jasmine-spec-reporter","jsdoc-babel","parse-server", -"vite-plugin-commonjs", -"WHATWG","html parser","html5 parser","html serializer","htmlserializer","fast-url-parser","pause", -"chai-connect-middleware","username","passport-oauth1","base64url","exist","isabsolute","is-absolute","zeptomatch", -"@rkusa/linebreak","opentype.js","jpeg-exif","linebreak","png-js","blob-stream","brace","pdfjs-dist","pdf writer", -"pdf generator","call-delayed","chai-increasing","pg-pool","pg-protocol","pg-types","pgpass","pg-cloudflare", -"@cloudflare/vitest-pool-workers","@cloudflare/workers-types","pg-copy-streams","libpq","postgre","rdbms", -"flow-copy-source","npm-watch","connect-phonegap","phonegap-build","phonegap build","phonegap/build","pinkie-promise", -"denodify","atomic-sleep","on-exit-leak-free","pino-abstract-transport","pino-std-serializers","quick-format-unescaped", -"real-require","@pinojs/redact","sonic-boom","thread-stream","@types/flush-write-stream","bole","fastbench", -"flush-write-stream","midnight-smoker","pino-pretty","steed","postinstall","lifecycle", -"devpostinstall","entry","irregular-plurals","plurals","count","irregular","noun","nouns","@pm2/agent","@pm2/js-api", -"@pm2/io","@pm2/pm2-version-check","@pm2/blessed","cli-tableau","fclone","pidusage","pm2-axon","pm2-axon-rpc", -"pm2-deploy","pm2-multimeter","vizion","logs","kraken","load balancer","lb","load-balancer","kubernetes","k8s", -"pm2-docker","runtime","graceful","node-pm2","production","keymetrics","node.js monitoring","strong-pm","supervisord", -"pm2.io","ghost production","process manager","probes","keep process alive","process configuration","clustering", -"cluster cli","dev ops","tap-dot","PNG","js-png","node-png","png-parse","pnpm10","dependency manager","hardlinks", -"prune","rapid","symlinks","uninstall","poe","economy","ninja","poe.ninja","poe economy","path of exile", -"path of exile economy","path of exile ninja","poe economy api","path of exile api","poe.watch api","poe.ninja api", -"babel-plugin-preval","pushstate-server","tsgen","glamor","inline-styles","color manipulate","color manipulation", -"curried color manipulation","@popperjs/bundle","@popperjs/eslint-config-popper","@popperjs/test","@popperjs/test-utils", -"nuget-publish","popperjs","position","attached","ports","source map","manipulation","jison-gho","calculation","calc", -"postcss-reporter","read-cache","eslint-config-problems","@csstools/utilities","comma","hsl","hsla","hwb","rgba", -"caniuse-api","@types/caniuse-api","pixrem","pleeease-filters","postcss-apply","postcss-attribute-case-insensitive", -"postcss-color-function","postcss-color-gray","postcss-color-hex-alpha","postcss-color-hsl","postcss-color-hwb", -"postcss-color-rebeccapurple","postcss-color-rgb","postcss-color-rgba-fallback","postcss-font-family-system-ui", -"postcss-font-variant","postcss-image-set-polyfill","postcss-initial","postcss-media-minmax", -"postcss-pseudo-class-any-link","postcss-pseudoelements","postcss-replace-overflow-wrap","postcss-selector-matches", -"postcss-selector-not","cssrecipes-custom-media-queries","cssrecipes-defaults","cssrecipes-grid", -"cssrecipes-utils","cssrecipes-vertical-rhythm","eslint-config-i-am-meticulous","isogram","markdown-it-toc-and-anchor", -"metalsmith-collections","metalsmith-filenames","metalsmith-md","metalsmith-react","metalsmith-rename","metalsmith-rss", -"metalsmith-url","metalsmith-watch","nano-logger","npmpub","postcss-browser-reporter","react-svg-inline","to-slug-case", -"webpack-nano-logs","cssnext","@csstools/cascade-layer-name-parser","at-rule","atrule","csswg","media","queries", -"declarative","selectors","empty","at-rules","@keyframes","@counter-style","flexbugs","flex","postcss-less", -"postcss-styl","quickapp","PHP","sss","image-set","node modules","postcssrc","postcss.config.js","midas","postcss-short", -"postcss-dark-theme-class","cssnano-utils","font-family","font-weight","@types/cssesc","css-modules", -"@csstools/selector-resolve-nested","atrules","children","nestings","@csstools/normalize.css","postcss-browser-comments", -"sanitize.css","@csstools/postcss-tape","normalizes","fixes","@csstools/postcss-alpha-function", -"@csstools/postcss-color-function","@csstools/postcss-color-function-display-p3-linear", -"@csstools/postcss-color-mix-function","@csstools/postcss-color-mix-variadic-function-arguments", -"@csstools/postcss-content-alt-text","@csstools/postcss-contrast-color-function", -"@csstools/postcss-exponential-functions","@csstools/postcss-font-format-keywords","@csstools/postcss-gamut-mapping", -"@csstools/postcss-gradients-interpolation-method","@csstools/postcss-hwb-function","@csstools/postcss-ic-unit", -"@csstools/postcss-initial","@csstools/postcss-light-dark-function","@csstools/postcss-logical-float-and-clear", -"@csstools/postcss-logical-overflow","@csstools/postcss-logical-overscroll-behavior","@csstools/postcss-logical-resize", -"@csstools/postcss-logical-viewport-units","@csstools/postcss-media-minmax", -"@csstools/postcss-media-queries-aspect-ratio-number-values","@csstools/postcss-mixins","@csstools/postcss-nested-calc", -"@csstools/postcss-normalize-display-values","@csstools/postcss-oklab-function", -"@csstools/postcss-position-area-property","@csstools/postcss-property-rule-prelude-list", -"@csstools/postcss-random-function","@csstools/postcss-relative-color-syntax","@csstools/postcss-scope-pseudo-class", -"@csstools/postcss-sign-functions","@csstools/postcss-stepped-value-functions", -"@csstools/postcss-syntax-descriptor-syntax-production","@csstools/postcss-system-ui-font-family", -"@csstools/postcss-text-decoration-shorthand","@csstools/postcss-trigonometric-functions", -"@csstools/postcss-unset-value","css-blank-pseudo","css-has-pseudo","css-prefers-color-scheme","postcss-clamp", -"postcss-dir-pseudo-class","postcss-double-position-gradients","postcss-focus-within","postcss-gap-properties", -"postcss-lab-function","postcss-logical","postcss-overflow-shorthand","postcss-page-break","postcss-place","lists", -"postcss-syntax","@jsopen/objects","doublylinked","lightning-pool","postgres-bytea","power-tasks","putil-promisify", -"putil-varhelpers","transformations","processor","ltgt","vuvuzela","spark-md5","level-codec","fetch-cookie", -"double-ended-queue","level-write-stream","empower","power-assert-formatter","universal-deep-strict-equal","dereserve", -"licensify","package-json-filterify","precommit","@actions/github","@actions/glob", -"babel-plugin-transform-rename-properties","errorstacks","kolorist","virtual dom","dom diff","binary-searching", -"jest-light-runner","jest-specific-snapshot","@vue/language-plugin-pug","prettier-plugin","imports","organize-imports", -"glob-fs","humanized","si","locale","localized","renderkid","jitter","exception","error-handling","parse-ms", -"milliseconds","period","hrtime","@pkgr/core","mercurial","hg","vcs","@prisma/config","@prisma/engines", -"@prisma/studio-core","ohash","package-up","ts-pattern","@prisma/dmmf","line-replace","@prisma/debug","openapi-fetch", -"xdg-app-paths","@libsql/client","@prisma/client","@prisma/migrate","get-port-please","@prisma/generator", -"@prisma/internals","checkpoint-client","openapi-typescript","@prisma/fetch-engine","@prisma/get-platform", -"@types/better-sqlite3","@prisma/adapter-libsql","@prisma/credentials-store", -"@prisma/management-api-sdk","@prisma/driver-adapter-utils","@prisma/client-generator-registry", -"@opentelemetry/context-async-hooks","ORM","Prisma","Prisma CLI","prisma2","JS","TS","SQL","SQLite","Postgres", -"PostgreSQL","CockroachDB","MySQL","MariaDB","MSSQL","SQL Server","SQLServer","MongoDB","MCP","danger","docdash", -"gulp-terser","regexpp","webfont","prism","node-rest-client","URIjs","svn","customize","sisteransi","interact", -"uglifyify","uglifyjs","alpha-sort","html-event-attributes","mdast-zone","svg-element-attributes","svg-event-attributes", -"@protobufjs/aspromise","@protobufjs/base64","@protobufjs/codegen","@protobufjs/eventemitter","@protobufjs/fetch", -"@protobufjs/float","@protobufjs/inquire","@protobufjs/path","@protobufjs/pool","@protobufjs/utf8","browserify-wrap", -"git-semver-tags","protobuf","protocol-buffers","serialization","@types/q","@types/jasminewd2","gulp-clang-format", -"natives","tslint-eslint-rules","vrsource-tslint-rules","webdriverjs","basic-auth-parser", -"@types/args","squid","privoxy","mod_proxy","via","x-forwarded-for","fill-keys","module-not-found-error", -"native-hello-world","cp-sugar","elegant-status","pug-load","pug-lexer","pug-linker","pug-parser","pug-filters", -"pug-runtime","pug-code-gen","pug-strip-comments","jstransformer-uglify-js","jstransformer-markdown-it","tap-bail","idn", -"idna","dns","domain","chromium-bidi","puppeteer-core","typed-query-selector","purge","fluent","qr code", -"@browserify/envify","@browserify/uglifyify","common-shakeify","has-override-mistake","unassertify", -"decode-uri-component","filter-obj","split-on-first","param","parameter","searchparams","retape","tap-esm","synchronous", -"FIFO","lifo","LIFO","work","queue js","job queue","job scheduling","task queue","ordered","iterate","linked list", -"dequeue","shift","item","parchment","quill-delta","@types/highlight.js","transpile-webpack-plugin", -"eslint-import-resolver-webpack","fuzzysort","grunt-search","eslint-plugin-json-es","@qunitjs/browserstack-runner", -"dom-element-descriptors","@types/qunit","@release-it-plugins/lerna-changelog","qunit-plugin","exists-stat", -"js-reporters","browserstack-runner","testling","requestAnimationFrame","babel-plugin-import-export-rename","envvar", -"sanctuary","sanctuary-identity","xyz","tacit","point-free","curried","fantasy-land","words","sample","timed-out", -"exceptions","sentry","unpipe","@rc-component/father-plugin","father-build","rc-test","react-slider","slider", -"react-tooltip","@types/responselike","react-addon","@apollo/react-common","@apollo/react-components", -"@apollo/react-hoc","@apollo/react-hooks","@apollo/react-ssr","@restart/ui","@restart/hooks","uncontrollable", -"prop-types-extra","ecosystem-react","@icons/material","material-colors","reactcss","@case/eslint-config", -"@storybook/addon-centered","babel-plugin-transform-rename-import","chai-spies","jsx-loader","react-context", -"react-mark","testdom","color picker","sketch","photoshop","html-webpack-tags-plugin","copy to clipboard", -"@react-docgen/cli", -"date-fns-tz","is-root","detect-port-alt","@react-dnd/invariant","@react-dnd/shallowequal","dnd-core","@types/doctrine", -"documentation-generation","attr-accept","file-selector","@babel/plugin-proposal-do-expressions", -"@babel/plugin-proposal-logical-assignment-operators","@babel/plugin-proposal-pipeline-operator","@commitlint/prompt", -"@size-limit/webpack-why","imagemin-cli","webpack-blocks","jest-fetch-mock","settle-promise","overlay","redbox","crash", -"react-side-effect","eslint-config-nfl","karma-chai-sinon","karma-html-reporter","nfl","head","title","meta","noscript", -"jest-fixed-jsdom","form-validation","enzyme-adapter-react-15","react-mount","yarn-deduplicate","live","hot", -"use-sync-external-store","@babel/plugin-proposal-async-generator-functions","eslint-plugin-jest-dom","viewport", -"intersection","observer","lazy load","inview","useInView","useIntersectionObserver","@formatjs/ecma402-abstract", -"@formatjs/icu-messageformat-parser","@formatjs/intl","intl-messageformat","eslint-config-es5","rehype-starry-night", -"exenv","@webcomponents/custom-elements","dialog","babel-browser-transform","inject-loader","isparta-loader", -"karma-jasmine-diff-reporter","lodash.range","transitiongroup","spring", -"tween","motion","transition","nullthrows","metro-runtime","hermes-compiler","metro-source-map","flow-enums-runtime", -"@react-native/codegen","@react-native/js-polyfills","@react-native/gradle-plugin","@react-native/assets-registry", -"@react-native/normalize-colors","@jest/create-cache-key-function","@react-native/virtualized-lists", -"babel-plugin-syntax-hermes-parser","@react-native/community-cli-plugin","app-framework","mobile-development", -"@react-native-community/cli","@react-native/eslint-config","@react-native/typescript-config","react-native-builder-bob", -"react-native-component","keychain","svg2ttf","fontisto","evil-icons","feather-icons","oslllo-svg-fixer", -"svgicons2svgfont","simple-line-icons","@entypo-icons/core","css-social-buttons","osx","macos", -"@cmfcmf/docusaurus-search-local","react-transform-hmr","currency","number-format","require-hijack","onclick","outside", -"onclickoutside","@rollup/plugin-sucrase","eslint-plugin-ft-flow","hermes-eslint","@types/use-sync-external-store", -"matchmediaquery","@types/hyphenate-style-name","@types/match-media-mock","@types/matchmediaquery","match-media-mock", -"media queries","respond","matchMedia","wireit","premove","redux-devtools","redux-devtools-dock-monitor", -"redux-devtools-log-monitor","combobox","multiselect","json2mq", -"@playwright/experimental-ct-react","foundation-apps","slick-carousel","why-did-you-update","slick","carousel", -"Image slider","orbit","@tippyjs/react","@vxna/mini-html-webpack-template","clipboard-copy","common-dir", -"es6-object-assign","function.name-polyfill","glogg","javascript-stringify","jss","jss-plugin-camel-case", -"jss-plugin-compose","jss-plugin-default-unit","jss-plugin-global","jss-plugin-isolate","jss-plugin-nested","listify", -"mini-html-webpack-plugin","q-i","qss","react-docgen-annotation-resolver","react-docgen-displayname-handler", -"react-group","strip-html-comments","type-detect","@types/buble","@types/copy-webpack-plugin","@types/escodegen", -"@types/hash-sum","@types/keymirror","@types/markdown-to-jsx","@types/terser-webpack-plugin","@types/type-detect", -"@types/webpack-dev-server","deabsdeep","deepfreeze","dog-names","eslint-config-tamia","keymirror","strip-shebang", -"scalable vector graphics","svginjector","TapEventPlugin","300ms","react-testing","@4tw/cypress-drag-drop", -"vite-plugin-istanbul","toast","alert","snackbar","message","commoner","jstransform","coverify","es3ify","esprima-fb", -"grunt-jest", -"jasmine-tapreporter","populist","transition-group","transitions","react-codemirror","eslint-config-react", -"eslint-plugin-relay","@babel/preset-stage-2","jest-environment-puppeteer","@babel/plugin-transform-flow-comments", -"scrolling","infinite","virtualized","fixed","es6-module-jstransform","@storybook/addon-storysource","customize-cra", -"holderjs","react-prism","esbuild-plugin-alias","tap-mocha-reporter","line by line","repl","tiny-invariant", -"@types/esprima","flow-parser","refactoring","pretty-printing","prepare","change-emitter","higher-order", -"microcomponentization","composition","lister","@redis/bloom","@redis/client","@redis/json","@redis/search", -"@redis/time-series","@redocly/openapi-core","@cfaester/enzyme-adapter-react-18","docusaurus-theme-redoc", -"docusaurus-plugin-redoc","@docusaurus/theme-common","api-doc","docusaurus-preset","netlify-plugin-cache","predictable", -"replay","elm","just-curry-it","reduce-reducers","@vitest/coverage-c8","eslint-config-unicorn-camelcase", -"flux-standard-action","actions","insert-line","redux-immutable","lodash-webpack-plugin","@redux-saga/core","saga", -"effects","side effects","thunk", -"redux-middleware","ecmarkup","gulp-emu","gulp-live-server","gulp-sequence","reflect","regenerator","abstract", -"is-hidden","rehype-plugin","is-absolute-url","external","hast-util-properties-to-mdx-jsx-attributes", -"eslint-config-remcohaszing","snapshot-fixtures","@nodeutils/defaults-deep","@phun-ky/typeof","issue-parser", -"wildcard-match","@octokit/request-error","mentoss","mock-stdio","remark-preset-webpro","distribution","intern", -"markdown-extensions","unified-args","footnote","remark-plugin","remark-slug","mermaid-isomorphic", -"hast-util-from-html-isomorphic","mermaidjs","remark-comment-config","remark-contributors","remark-heading-gap", -"remark-license","remark-lint-definition-spacing","remark-lint-fenced-code-flag","remark-lint-file-extension", -"remark-lint-final-definition","remark-lint-first-heading-level","remark-lint-heading-style", -"remark-lint-no-consecutive-blank-lines","remark-lint-no-emphasis-as-heading","remark-lint-no-file-name-articles", -"remark-lint-no-file-name-consecutive-dashes","remark-lint-no-file-name-irregular-characters", -"remark-lint-no-file-name-mixed-case","remark-lint-no-file-name-outer-dashes","remark-lint-no-heading-indent", -"remark-lint-no-heading-punctuation","remark-lint-no-missing-blank-lines","remark-lint-no-multiple-toplevel-headings", -"remark-lint-no-shell-dollars","remark-lint-no-table-indentation","remark-lint-no-tabs", -"remark-lint-ordered-list-marker-value","remark-lint-table-pipe-alignment","remark-retext","retext-english", -"retext-preset-github","remark-lint-correct-media-syntax","remark-lint-definition-sort", -"remark-lint-link-title-style","remark-lint-maximum-heading-length","remark-lint-maximum-line-length", -"remark-lint-mdx-jsx-attribute-sort","remark-lint-mdx-jsx-no-void-children","remark-lint-mdx-jsx-quote-style", -"remark-lint-mdx-jsx-self-close","remark-lint-mdx-jsx-shorthand-attribute","remark-lint-mdx-jsx-unique-attribute-name", -"remark-lint-media-style","remark-lint-no-duplicate-defined-urls","remark-lint-no-duplicate-headings-in-section", -"remark-lint-no-empty-url","remark-lint-no-heading-like-paragraph","remark-lint-no-hidden-table-cell", -"remark-lint-no-html","remark-lint-no-paragraph-content-indent","remark-lint-no-reference-like-url", -"remark-lint-no-unneeded-full-reference-image","remark-lint-no-unneeded-full-reference-link","retext-preset-wooorm", -"wooorm","autolinker","caseless","aws-sign2","oauth-sign","tunnel-agent","forever-agent","har-validator","is-typedarray", -"http-signature","taper","karma-cli","stealthy-require","request-promise-core","thenable","index.js", -"@typescript-eslint/eslint-plugin-tslint","@typescript/analyze-trace","eslint-plugin-typescript","micro-memoize", -"ResizeObserver","path-parse","supports-preserve-symlinks-flag","copy-dir","adjust-sourcemap-loader","cls-hooked", -"myrmidon","conventional-changelog-eslint","eslint-config-incredible","eslint-plugin-censor","eslint-plugin-no-secrets", -"eslint-plugin-scanjs-rules","fatum","node-package-tester","semantic-release-telegram","vesta","documentate", -"autodocumentate","ewma","spdy","restify-errors","escape-regexp-component","watershed", -"restify-clients","autocannon-compare","DTrace","quit","shutdown","sigterm","sigint","terminate","kill","NoSQL","reql", -"query language","leak","deep-copy","fast-copy","fastest-json-copy","nano-copy","plain-object-clone","deep-clone", -"deepclone","deepcopy","performant","fastclone","fastcopy","fast-clone","fast-deep-clone","fast-deep-copy", -"package-json-from-dist","rm -rf","rm -fr","prebuild","run-script-os","targetpractice","Automation","mouse","pixel", -"recognition","autohotkey","machine","learning","@mermaid-js/mermaid-cli","@shikijs/vitepress-twoslash", -"@vue/language-server","acorn-import-assertions","date-time","flru","npm-audit-resolver","wasm-pack","bundling", -"rollup-plugin","js-cleanup","rollup-plugin-jsx","sourcemap-validator","removal","@types/d3-drag","@types","commenting", -"package-name-regex","spdx-expression-validate","spdx-satisfies","gulp-conventional-changelog","rollup-plugin-prettier", -"rollup-plugin-strip-banner","browserify-fs", -"buffer-es6","process-es6","sourceMappingURL","@types/find-cache-dir","@types/graphlib","graphlib","rollup-plugin-re", -"@types/d3-array","@types/d3-color","@types/d3-force","@types/d3-hierarchy","@types/d3-scale","@types/d3-shape", -"visualizer","treemap","sunburst","diagram","@ampproject/toolbox-optimizer","@babel/plugin-syntax-bigint", -"@capsizecss/metrics","@edge-runtime/cookies","@edge-runtime/ponyfill","@edge-runtime/primitives","@napi-rs/triples", -"@next/polyfill-module","@next/polyfill-nomodule","@next/react-refresh-utils","@next/swc","@taskr/clear","@taskr/esnext", -"@types/amphtml-validator","@types/babel__generator","@types/ci-info","@types/content-disposition", -"@types/express-serve-static-core","@types/fresh","@types/lodash.curry","@types/path-to-regexp","@types/platform", -"@types/send","@types/text-table","@types/ua-parser-js","amphtml-validator","async-sema","cli-select","comment-json", -"edge-runtime","ignore-loader","lodash.curry","native-url","server-only","string-hash","taskr","unistore","watchpack", -"ember-cli-progress","rtl","ltr","run series","LINQ","FRP","Reactive","Rx","RxJS", -"@angular-devkit/build-optimizer","@types/source-map","check-side-effects","rollup-plugin-alias","rollup-plugin-inject", -"tslint-etc","tslint-no-toplevel-property-access","tslint-no-unused-expression-chai","web-streams-polyfill","ReactiveX", -"ReactiveExtensions","Streams","Observables","Stream","buffer allocate","node security","uninitialized","mock-env", -"dist-tag","prepublish","@sailshq/lodash","@sailshq/router","captains-log","common-js-file-extensions","@sailshq/csurf", -"flaverr","i18n-2","include-all","machine-as-action","machinepack-process","machinepack-redis","merge-defaults", -"merge-dictionaries","parley","rttc","sails-generate","sails-stringfile","skipper","sort-route-addresses","whelk", -"machinepack-fs","@sailshq/request","root-require","sails-hook-orm","sails-hook-sockets","sails.io.js", -"session-file-store","mvc","web-framework","sailsjs","sails.js","truncate-utf8-bytes","mktemp","filename","parse-srcset", -"eslint-config-apostrophe","material-components-web","node-sass-glob-importer","markdown-model","bare-script", -"element-model","food","drink","helpful", -"opensourcesoftware","teaching","experimentation","applications","ec","ecdh","ecdsa","seed","@bazel/runfiles", -"@semantic-release/error","aggregate-error","env-ci","find-versions","git-log-parser","import-from-esm","p-each-series", -"file-url","mockserver-client","p-retry","stream-buffers","author","@fluentui/react-component-event-listener", -"@fluentui/react-component-ref","@semantic-ui-react/event-stack","keyboard-key","@artsy/fresnel","@babel/standalone", -"@percy/cli","@percy/cypress","anchor-js","babel-plugin-filter-imports","babel-plugin-transform-react-handled-props", -"babel-plugin-universal-import","chai-enzyme","react-ace","react-codesandboxer","react-source-render","react-static", -"react-static-routes","react-universal-component","satisfied","semantic-ui-css","ta-scripts", -"terser-webpack-plugin-legacy","eslint-config-standard-jsx","standard-engine","bikeshed","semicolon","@hapi/joi","eraro", -"fast-safe-stringify","gate-executor","gubu","jsonic","lodash.defaultsdeep","optioner","ordu","patrun","rolling-stats", -"seneca-transport","use-plugin","@seneca/test-plugin","bench","gex", -"lab-transform-typescript","seneca-entity","seneca-error-test","seneca-joi","seneca-promisify","summary","micro-service", -"micro-services","micro service","minimum","viable","product","Sentimental","nlp","wkx","dottie","sequelize-pool", -"toposort-class","retry-as-promised","ibm_db","mariadb","p-props","p-settle","node-hook","pg-hstore","chai-datetime", -"snowflake-sdk","@octokit/types","js-combinatorics","esdoc-standard-plugin","esdoc-inject-style-plugin", -"esdoc-ecmascript-proposal-plugin","semantic-release-fail-on-major-bump","db2","snowflake","object relational mapper", -"@serialport/stream","@serialport/binding-mock","@serialport/bindings-cpp","@serialport/parser-ready", -"@serialport/parser-regex","@serialport/parser-cctalk","@serialport/parser-readline","@serialport/parser-delimiter", -"@serialport/parser-byte-length","@serialport/parser-spacepacket","@serialport/parser-slip-encoder", -"@serialport/parser-packet-length","@serialport/parser-inter-byte-timeout","ccTalk","com port","COM","data logging", -"hardware","modem","nodebots","RFID","sensor","serial port","sms gateway","sms","UART","update-check","@zeit/schemas", -"is-port-reachable","@vercel/style-guide","@types/serve-handler","temp-path","favicon","@serverless/utils", -"@commitlint/cz-commitlint","@serverless/test","serverless","serverless plugins","aws lambda","amazon web services", -"serverless.com","@aws-cdk/aws-lambda-python-alpha","@aws-sdk/client-dynamodb","@aws-sdk/client-eventbridge", -"@aws-sdk/client-lambda","@aws-sdk/client-sns","@aws-sdk/client-sqs","@aws-sdk/client-sts","@aws-sdk/lib-dynamodb", -"@aws-sdk/util-dynamodb","aws-cdk-lib","aws-iot-device-sdk","caporal","json-format-highlight", -"@types/aws-iot-device-sdk","@types/aws4","esbuild-runner","jsii","jsii-diff","jsii-docgen","jsii-pacmak","eventbridge", -"flow-remove-types","isequalwith","@img/colour","emnapi","exif-reader","@cpplint/cli","@emnapi/runtime", -"@img/sharp-libvips-dev","@img/sharp-libvips-win32-x64","@img/sharp-libvips-dev-wasm32","@img/sharp-libvips-win32-ia32", -"@img/sharp-libvips-win32-arm64","dzi","thumbnail","libvips","vips","quote","shelljs-changelog","shelljs-release", -"travis-check-changes","makefile","clean-publish","short","tiny","bitly","shorten","tinyid","should-equal", -"should-format","should-type", -"should-type-adaptors","should-util","eslint-config-shouldjs","grunt-endline","quiet-grunt","semver-sort", -"shelljs-plugin-open","transforms","@kwsites/file-exists","@kwsites/promise-deferred","@kwsites/promise-result", -"@simple-git/babel-config","source control","custom-event","js-correct-lockfile","rollup-plugin-analyzer", -"eslint-config-important-stuff","@sinonjs/samsam","@sinonjs/eslint-plugin-no-prototype-methods","@studio/changes", -"esbuild-plugin-istanbul","clock","vendor","mocks-and-spies","crypt3","fs-ext","express-json5","render-readme", -"sinopia-htpasswd","browserify-handlebars","@polka/url","totalist","bytes-iec","nanospinner","budget", -"performance budget","file size","directory size","get size","qpass","amazon-cognito-identity-js","basic-node-server", -"skapi","seperator","is-fullwidth-code-point","random-item","get-folder-size","js-extend","math-sum","prettier-bytes", -"tablify","slow","github-changes","urlify","standard-json","pretty output","snazzy standard","standard pretty", -"stylish for standard","stylish formatter","stylish reporter","stylish standard","axios-ntlm","xml-crypto", -"@types/sax","base64id","socket.io-adapter","io","@socket.io/component-emitter","eventsource","sockjs","separated", -"@anvilco/apollo-server-plugin-introspection-metadata","@graphql-tools/load-files","@graphql-tools/merge", -"@graphql-tools/utils","graphql-scalars","json-stringify-pretty-compact","microfiber","bdd-lazy-var","introspection", -"introspection-query","string-to-stream","binary-split","callback-stream","gulp-benchmark","imageinfo","prettydiff", -"sprity-css","sprity-lwip","object-stream","through2-spy","sprites","coordinates","css-sprite","asn1","bcrypt-pbkdf", -"integrity","subresource integrity","sri","sri hash","sri string","sri generator","encrypt","st","firestore", -"shuruhatik","long-stack-traces","version-guard","run-parallel-limit","conventional-changelog-config-spec", -"dotgitignore","stringify-package","std-mocks","recommended","check-more-types","lazy-ass","ban-sensitive-files", -"deps-ok","dont-crack","git-issues","pre-git","simple-commit-message","winser","modern-syslog","etsy","metric", -"aggregation", -"@vitest/expect","@storybook/global","store2","exsolve","empathic","picoquery","modern-tar","fetch-retry", -"@types/npmlog","@vitest/utils","launch-editor","unique-string","@vitest/mocker","bundle-require","flush-promises", -"@yarnpkg/libzip","browser-dtector","react-inspector","@react-aria/tabs","deep-object-diff","@react-aria/utils", -"@polka/compression","@types/detect-port","@ngard/tiny-isequal","@react-aria/toolbar","@react-stately/tabs", -"@react-types/shared","@storybook/docs-mdx","get-npm-tarball-url","use-resize-observer","@radix-ui/react-slot", -"@react-aria/landmark","@react-aria/overlays","@types/pretty-hrtime","@discoveryjs/json-ext","lazy-universal-dotenv", -"react-transition-state","@react-stately/overlays","@react-aria/interactions","react-syntax-highlighter", -"@radix-ui/react-scroll-area","@devtools-ds/object-inspector","@types/react-syntax-highlighter", -"@aw-web-design/x-default-browser","@fal-works/esbuild-plugin-global-externals","design-systems","component-testing", -"@glen/jest-raw-loader","@storybook/addon-onboarding","@storybook/addon-storyshots", -"@storybook/addon-storyshots-puppeteer","@storybook/blocks","@storybook/test","eslint-config-torchbox","storybookjs", -"patternlab","django","django-pattern-library","django-templates","jinja2","findit2","inside","funsert","into-stream", -"Assert","music-metadata","livestream","livestreaming","gulp-rimraf","string.js","stringjs","S","s","codsen-utils", -"ranges-apply","ranges-push","string-left-right","ast-monkey-traverse","ranges-invert","jsp","mixed","stri","xhtml", -"get-east-asian-width","visual","columns","fullwidth","full-width","wcswidth","full","cjk","chinese","japanese","korean", -"fixed-width","east-asian-width","undici-types","payment processing","credit cards","generator-loopback", -"loopback-sdk-angular-cli","nodefly-register","strong-agent","strong-arc","strong-build","strong-deploy", -"strong-mesh-models","strong-registry","strong-start","strong-supervisor","core-util-is","strong-debugger", -"strong-swagger-ui","swagger-ui","utf-8-validate","LoopBack","Platform","alerts","event loop","heroku","master", -"metrics","nodeops","npmrc","openshift","ops","pm","response", -"slc","slowest functions","strong-cli","strong-cluster-control","strongops","upstart","@bundled-es-modules/deepmerge", -"@bundled-es-modules/glob","@bundled-es-modules/memfs","@zip.js/zip.js","path-unified","@esm-bundle/chai-as-promised", -"@rollup/browser","@shoelace-style/shoelace","@web/test-runner-commands","hanbi","jsdoc-escape-at", -"jsdoc-tsimport-plugin","starlight-links-validator","style dictionary","dictionary","Android","@types/stylis", -"css-to-react-native","@types/js-beautify","@types/react-frame-component","@types/shallowequal","react-frame-component", -"stylis-plugin-rtl","ts-toolbelt","stylis-rule-sheet","zeit","hack","hacks","globjoin","mathml-tag-names","svg-tags", -"@changesets/get-github-info","@stylelint/prettier-config","@stylelint/remark-preset","@types/balanced-match", -"@types/file-entry-cache","@types/global-modules","@types/globjoin","@types/imurmurhash","@types/postcss-less", -"@types/svg-tags","eslint-config-stylelint","jest-preset-stylelint","postcss-sass","stylelint-config","shortcss", -"css-values","babel-register-ts","stylelint-plugin","delaration-strict-value","keyword","z-index","postcss-sorting", -"eslint-config-hudochenkov","postcss-styled-syntax","prettier-config-hudochenkov","postcss-media-query-parser", -"postcss-resolve-nested-selector", -"github-contributors-list","bootstrap-styl","cookiejar","should-http","tinyify","frisbee","super","promised","supports", -"capability","truecolor","16m","esrap","zimmerframe","@types/sade","vscode-languageserver", -"vscode-languageserver-protocol","svelte2tsx","svelte-language-server","@kiwi/eslint-config","@kiwi/prettier-config", -"@types/pug","postcss-easy-import","prettysize","@resvg/resvg-js","playwright-chromium","eslint-plugin-jest-formatting", -"sw-precache","git-release-notes","precache","tape-promise","autogen","promise.any","multilang-extract-comments", -"@readme/eslint-config","readmeio","swagger-nestjs","swagger-templates","swagger UI","istanbul-badges-readme","nodelint", -"still","mocha-phantomjs","travis-cov","jinja","swipe","framework7","gallery","slideshow","http-response-object", -"sync-rpc","then-request","flowgen2","system information","sysinfo","freebsd","openbsd","netbsd","cpu","cpuload", -"physical cores","logical cores","cores","socket type", -"fsstats","diskio","block devices","netstats","network interfaces","network connections","network stats","iface", -"printer","processes","users","internet","battery","docker stats","docker processes","graphic card","graphic controller", -"gpu","smart","disk layout","audio","bluetooth","wifi","wifinetworks","virtual box","virtualbox","vm","BIOS","chassis", -"symbol-es6","@jsenv/file-size-impact","construct-style-sheets-polyfill","hase","draht","limes","lusca","partof", -"timer2","uuidv4","crypto2","nocache","datasette","json-lines","processenv","stethoskop","flaschenpost", -"commands-events","nodeenv","roboter","assertthat","json-lines-client","cqs","cqrs","@codspeed/vitest-plugin", -"className","classList","override","@tailwindcss/oxide","@tapjs/after","@tapjs/after-each","@tapjs/asserts", -"@tapjs/before","@tapjs/before-each","@tapjs/chdir", -"@tapjs/core","@tapjs/filter","@tapjs/fixture","@tapjs/intercept","@tapjs/mock","@tapjs/node-serialize","@tapjs/run", -"@tapjs/snapshot","@tapjs/spawn","@tapjs/stdin","@tapjs/test","@tapjs/typescript","@tapjs/worker","resolve-import", -"tapjs","tapjs plugin","tap-out","tapes","@ljharb/resumer","@ljharb/through","array.prototype.every","dotignore", -"has-dynamic-import","ecstatic","npm-run-posix-or-windows","harness","chownr","yallist","@isaacs/fs-minipass","chmodr", -"events-to-array","brittle","b4a","streamx","fast-fifo","actor system","DDD","actor-system","front end","back end", -"@parcel/packager-ts","@parcel/transformer-typescript-types","cz-format-extension","telegram","telegram-api", -"telegram-client-api","tdlib","tglib","node-addon","tempdir","tmpfile","unique","seventh","lazyness","tree-kit", -"chroma-js","string-kit","nextgen-events","@cronvel/get-pixels","256 colors","true color","input field","gpm", -"screenbuffer", -"textbuffer","32-bit","charm","resumer","visualwidth","80s","ibm","@jridgewell/source-map","@ls-lint/ls-lint","astring", -"es8","@types/uglify-js","@test-runner/core","@test-runner/default-view","@test-runner/live-view", -"@test-runner/oneline-view","@test-runner/tom","multiline-ts","spawn-process","only-allow","sinon-assert-stub", -"sinon-mocha-test","unlinted","example","@devexpress/bin-v8-flags-filter","@devexpress/callsite-record","bowser", -"chrome-remote-interface","device-specs","elegant-spinner","get-os-info","import-lazy","is-podman", -"log-update-async-hook","moment-duration-format-commonjs","os-family","pinkie","promisify-event","read-file-relative", -"replicator","testcafe-browser-tools","testcafe-hammerhead","testcafe-legacy-api","testcafe-reporter-json", -"testcafe-reporter-list","testcafe-reporter-minimal","testcafe-reporter-spec","testcafe-reporter-xunit", -"testcafe-selector-generator","time-limit-promise","unquote","url-to-options","@devexpress/gulp-qunit-harness", -"@ffprobe-installer/ffprobe","@testcafe/publish-please","@types/callsite","@types/dedent","@types/useragent", -"browserstack-connector","caller","dom-walk","eslint-plugin-hammerhead","express-ntlm","gulp-clone", -"gulp-ll-next","gulp-mocha-simple","gulp-step","mocha-reporter-spec-with-retries","openssl-self-signed-certificate", -"recursive-copy","testcafe-browser-provider-browserstack","automated","QA","@types/dockerode","docker-compose", -"properties-reader","ssh-remote-port-forward","@types/async-lock","@types/properties-reader","@types/tar-fs", -"stringify-object-es5","codeclimate-test-reporter","cross-conf-env","headerify","is-number","teenytest", -"teenytest-promise","test double","fireworm","printf","spawn-args","styled_string","bluebird-retry", -"chai-shallow-deep-equal","saucie","eslint-config-mdcs","jpeg-js","three.js","3d","virtual-reality","augmented-reality", -"webgl","webgl2","webaudio","webgpu","webxr","get-port-cli","node-stdlib-browser","user-streams","hundreds","polendina", -"stream-spigot","streams2","unexpand","homedir","tilde","collapse","number-is-nan","profile","stats","bee-dnd","bee-tag", -"bee-form","bee-icon","bee-rate","bee-step","bee-tabs","bee-tile", -"bee-tree","bee-affix","bee-alert","bee-badge","bee-label","bee-menus","bee-modal","bee-panel","bee-radio","bee-table", -"bee-anchor","bee-button","bee-drawer","bee-layout","bee-locale","bee-navbar","bee-select","bee-slider","bee-switch", -"bee-upload","bee-animate","bee-backtop","bee-loading","bee-message","bee-overlay","bee-popover","bee-svgicon", -"bee-tooltip","bee-calendar","bee-carousel","bee-cascader","bee-checkbox","bee-collapse","bee-dropdown","bee-timeline", -"bee-transfer","bee-clipboard","bee-breadcrumb","bee-datepicker","bee-form-group","bee-pagination","bee-popconfirm", -"bee-timepicker","bee-transition","bee-colorpicker","bee-input-group","bee-page-layout","bee-tree-select", -"bee-autocomplete","bee-button-group","bee-complex-grid","bee-form-control","bee-input-number","bee-notification", -"bee-progress-bar","bee-search-panel","bee-loading-state","bee-input-group-addon","gulp-cleancss","gulp-css-wrap", -"tinper-bee-core","less-plugin-inline-urls","tinper","bee", -"tinylibs","@deno/shim-deno-test","tinycolor","worker threads","thread pool","method","@types/react-native-vector-icons", -"pushalert","react-native toast","react-native-toastify","toastify","react-native-notification","expo","Typescript", -"node-resemble-js","processmd","of","tldts","set-cookie","RFC6265","RFC2965","tinytim","trace", -"typedarray.prototype.slice","forEach","html-select","html-tokenize","aggregate","bs-logger","make-error", -"babel-preset-es2016","typescript-loader","migrate","migration","migrations","cli-tool","@ts-morph/common", -"code-block-writer","static analysis","code refactor","create-require","@tsconfig/node10","@tsconfig/node12", -"@tsconfig/node14","v8-compile-cache-lib","@cspotcode/source-map-support","dprint","@swc/wasm","ntypescript", -"util.promisify","fast-json-patch","omit-deep","power-assign","bre","rete","rule engine","rules engine", -"javascript rule engine","js rule engine","inference system","@types/strip-bom","@tsd/typescript", -"eslint-config-xo-typescript","typedefs", -"typedefinitions","jsonc-simple-parser","polite-json","sync-content","Microsoft","codelyzer","tslint-divid", -"@types/make-dir","tslint-immutable","tslint-misc-rules","tslint-microsoft-contrib","tslint-consistent-codestyle", -"ts-lint","typescript-tslint-plugin","fix-dts-default-cjs-exports","joycon","ts-essentials","typescript runner", -"@mixmark-io/domino","turndown-attendant","grunt-mocha","grunt-markdown","grunt-component-io","grunt-push-release", -"grunt-regex-replace","jshint-path-reporter","mocha-unfunk-reporter","grunt-concat-sourcemap","tap-browser-color", -"tweetnacl-util","curve25519","ed25519","nacl","poly1305","public","salsa20","signatures","twemoji-parser","DOM", -"Twitter","type-coverage-core","tagged-tag","@typescript/vfs","generics","media-typer","checking","@gerrit0/mini-shiki", -"@material/material-color-utilities","typedoc-theme","typedoc-plugin","material-design","material-3","typedocplugin", -"JsDocs","cli-prompt","concatenate","ebook","pandoc","kindlegen","latex","@types/mongoose", -"mongodb-memory-server-global","mongoose-findorcreate","prettier-tslint", -"sql-highlight","@sqltools/formatter","gulpclass","@types/sha.js","@sap/hana-client","@types/gulp-rename", -"standard-changelog","@google-cloud/spanner","@types/gulp-sourcemaps","@dprint/formatter","@esfx/canceltoken", -"@dprint/typescript","azure-devops-node-api","monocart-coverage-reports","mocha-fivemat-progress-reporter", -"eslint-formatter-autolinkable-stylish","commandpost","@types/power-assert","intelli-espower-loader", -"@types/postcss-modules-local-by-default","@types/postcss-modules-scope","@types/icss-utils", -"@types/postcss-modules-extract-imports","@types/reserved-words","jest-environment-node-single-context", -"postcss-import-sync2","sass-svg","promise-finally","typings-core","tslint-config-standard","definition","ecma","jsmin", -"random-bytes","@uiw/formatter","@uiw/react-affix","@uiw/react-alert","@uiw/react-auto-link","@uiw/react-avatar", -"@uiw/react-back-top","@uiw/react-badge","@uiw/react-breadcrumb","@uiw/react-button-group","@uiw/react-calendar", -"@uiw/react-card","@uiw/react-carousel","@uiw/react-cascader","@uiw/react-checkbox","@uiw/react-collapse", -"@uiw/react-copy-to-clipboard","@uiw/react-date-input","@uiw/react-date-picker","@uiw/react-descriptions", -"@uiw/react-divider","@uiw/react-drawer","@uiw/react-dropdown","@uiw/react-empty","@uiw/react-file-input", -"@uiw/react-form","@uiw/react-grid","@uiw/react-layout","@uiw/react-list","@uiw/react-loader","@uiw/react-menu", -"@uiw/react-message","@uiw/react-modal","@uiw/react-month-picker","@uiw/react-notify","@uiw/react-pagination", -"@uiw/react-pin-code","@uiw/react-popover","@uiw/react-portal","@uiw/react-progress","@uiw/react-radio", -"@uiw/react-rate","@uiw/react-search-select","@uiw/react-search-tree","@uiw/react-select","@uiw/react-slider", -"@uiw/react-split","@uiw/react-steps","@uiw/react-switch","@uiw/react-table","@uiw/react-tabs","@uiw/react-tag", -"@uiw/react-textarea","@uiw/react-time-picker","@uiw/react-tooltip","@uiw/react-transfer","@uiw/react-tree", -"@uiw/react-tree-checked","media-query-fns","parsel-js","citty","hookable","mkdist","untyped","pretty-bytes-cli", -"browserify-header","@metcoder95/https-pem","dns-packet","jsondiffpatch","bail","trough","@types/extend","retext", -"unique-random","non-repeating","unist-util","xast","nlcst","visit","pullstream","match-stream","uncompress","pupa", -"is-npm","fixture-stdout","notifier","urn","uri mutation","url mutation","uri manipulation","url manipulation", -"uri template","url template","unified resource locator","unified resource identifier", -"query string","RFC 3986","RFC3986","RFC 6570","RFC6570","jquery-plugin","ecosystem:jquery","sauce-browsers", -"sauce-test","formstream","ylru","@eggjs/oxlint-config","@tsconfig/node18","@types/busboy","@types/proxy", -"@types/selfsigned","string.prototype.towellformed","urlopen","userprofile","yamlparser","browserscope","ua","ua-parse", -"ua-parser","user agent","user-agent","is-generator-function","is-typed-array","is-async-supported","rfc9562","bundt", -"diffs","find-parent-dir","githook","sanitisation","sanitise","@vue/shared","@vant/use","@vant/popperjs", -"@vue/runtime-core","diffable-html","vitest-canvas-mock","@vant/area-data","@vant/cli","@vant/eslint-config", -"@vant/icons","@vercel/go","@vercel/h3","@vercel/fun","@vercel/koa","@vercel/blob","@vercel/hono","@vercel/next", -"@vercel/node","@vercel/ruby","@vercel/rust","@vercel/elysia","@vercel/nestjs","@vercel/python","@vercel/express", -"@vercel/fastify","@vercel/redwood","@vercel/backends","@vercel/hydrogen", -"@vercel/build-utils","@vercel/detect-agent","@vercel/static-build","@vercel/remix-builder","epipebomb","promisepipe", -"@sentry/node","@types/title","jaro-winkler","@types/chance","@types/dotenv","@vercel/client","pcre-to-regexp", -"git-last-commit","@inquirer/search","@tootallnate/once","http-proxy-node16","@inquirer/checkbox","@inquirer/password", -"@vercel/frameworks","@vercel/error-utils","line-async-iterator","@vercel/fs-detectors","@types/load-json-file", -"@vercel/routing-utils","@types/npm-package-arg","@types/write-json-file","@vercel-internals/types", -"@edge-runtime/node-utils","json-parse-better-errors","@types/jest-expect-message","@vercel-internals/constants", -"@alex_neo/jest-expect-message","@types/json-parse-better-errors","@vercel-internals/get-package-json","extsprintf", -"err","create-banner","postcss-header","viewer","viewer.js","teex","remove-trailing-separator","fs-mkdirp-stream", -"is-valid-glob","lead","resolve-options","stream-composer","to-through","value-or-function","vinyl-sourcemap", -"vinyl-adapter","classic","browser-split","ev-store","x-is-array","x-is-string","run-browser","vtree","artichokie", -"periscopic","http-proxy-3","strip-literal","es-module-lexer", -"postcss-modules","@oxc-project/types","host-validation-middleware","dev-server","build-tool","dotenv-local", -"slash-path","vite-plugin-builder","api-router","api-routers","vite-plugin-api","vite-plugin-rest-api","express-router", -"file-system-based","rest-api","api-rest","Remix","Next.js","focus-trap","@shikijs/core","@shikijs/types", -"@vue/devtools-api","@vueuse/integrations","@iconify-json/simple-icons","@iconify/utils","@mdit-vue/shared", -"@mdit-vue/plugin-sfc","@mdit-vue/plugin-toc","markdown-it-mathjax3","@mdit-vue/plugin-title","@mdit-vue/plugin-headers", -"@types/markdown-it-emoji","@mdit-vue/plugin-component","@mdit-vue/plugin-frontmatter","@types/markdown-it-container", -"@types/postcss-prefix-selector","tinyrainbow","@vitest/runner","@vitest/snapshot","why-is-node-running", -"@vitest/pretty-format","birpc","local-pkg","@edge-runtime/vm","@antfu/install-pkg","node-localstorage","gulp-xo", -"vorpal-less","vorpal-repl","load-plugins","eyes","BDD","keytar","parse-semver","typed-rest-client","@types/read", -"@types/yazl","@types/cheerio","@types/url-join","@types/clone","@types/iconv-lite","vscode-oniguruma", -"@vue/runtime-dom","eslint-plugin-vue-libs", -"@babel/plugin-syntax-pipeline-operator","@intlify/shared","@intlify/core-base","@intlify/devtools-types","intlify", -"@intlify/vue-i18n-loader","@types/mini-css-extract-plugin","@types/webpack-merge","cache-loader","markdown-loader", -"pug-plain-loader","@vue-macros/common","ast-walker-scope","muggle-string","unplugin-utils","@pinia/colada", -"@types/nightwatch","@vue/language-core","chromedriver","faked-promise","nightwatch-helpers","de-indent", -"todomvc-app-css","foreachasync","sys","walkSync","exec-sh","outpipe","win-spawn","encrypted-attr", -"lodash.issafeinteger","waterline-schema","waterline-utils","active-record","vargs","bdd-with-opts","gulp-debug","mu2", -"promise-simple","sauce-connect-launcher","spawn-mocha-parallel","sv-selenium","web3-eth","web3-net","web3-core", -"web3-types","web3-utils","web3-errors","web3-eth-abi","web3-eth-ens","web3-eth-iban","web3-validator", -"web3-rpc-methods","web3-eth-accounts","web3-eth-contract","web3-eth-personal","web3-providers-ws","web3-rpc-providers", -"web3-providers-http","in3","ganache","web3-providers-ipc","eslint-config-base-web3","@truffle/hdwallet-provider", -"Ethereum","@solana/spl-token","@solana/web3.js","kva-email-service","micro-ed25519-hdkey","ssl-http-with-docker", -"tailwind-animation-extension","telegram-assistant","web3-react-task","sol","@webassemblyjs/ast", -"@webassemblyjs/wasm-edit","@webassemblyjs/wasm-parser","acorn-import-phases","chrome-trace-event","@codspeed/core", -"@types/neo-async","@types/xxhashjs","assemblyscript","bundle-loader","coffee-loader","hash-wasm","meriyah", -"rehype-sanitize","wast-loader","webassembly-feature","xxhashjs","lodash.partial","eslint-config-th0r", -"postcss-icss-values","@carrotsearch/foamtree","eslint-config-th0r-react","analyzer","chart","zoomable", -"@webpack-cli/info","@webpack-cli/configtest","@types/envinfo","@fastify/express","@types/on-finished","@types/sockjs", -"@types/bonjour","bonjour-service","@types/serve-index","@types/serve-static","ansi-html-community", -"@types/connect-history-api-fallback","klona","@types/sockjs-client","reloading","hot-reloading", -"@types/webpack-sources","eslint-config-shellscape","prettier-plugin-package","dts-cli","@types/flat","externals", -"typedarray-to-buffer","yaeti","networking","comet","RFC-6455","@silentbot1/nat-api","@thaunknown/simple-peer", -"@webtorrent/http-node","addr-to-ip-port","bitfield","bittorrent-dht","bittorrent-protocol","cache-chunk-store", -"chunk-store-iterator","cpus","create-torrent","cross-fetch-ponyfill","fs-chunk-store","fsa-chunk-store", -"immediate-chunk-store","join-async-iterator","load-ip-set","lt_donthave","memory-chunk-store","parse-torrent", -"random-iterate","speed-limiter","throughput","torrent-discovery","torrent-piece","uint8-util","unordered-array-remove", -"ut_metadata","ut_pex","@webtorrent/semantic-release-config","airtap-manual","airtap-system","bittorrent-tracker", -"chrome-net","disc","network-address","path-esm","webtorrent-fixtures","bittorrent","bittorrent client","mad science", -"p2p","peer-to-peer","peers","swarm","torrent","web torrent","webrtc data","web worker","a gogo","url-search-params", -"poly","buster","exorcist","microtime","cujo","Promises/A+","isexe","taffydb","unit.js","@dabh/diagnostics","logform", -"one-time","@dabh/eslint-config-populist","abstract-winston-transport","cross-spawn-async", -"hock","winston-compat","file-stream-rotator","@alcalzone/release-script","@alcalzone/release-script-plugin-license", -"daily-rotate-file","log-rotate","logrotate","winston3","bower-config","propprop","wiredep-cli","break","carriage", -"new-line","newline","return","soft","workbox-build","workbox","workboxjs","service worker","fetch requests","offline", -"file manifest","wordbreak","linewrap","writeFile","atomic","HyBi","Push","WebSocket","WebSockets","enstore", -"x-ray-crawler","x-ray-parse","scrape","is-function","parse-headers","ssf","wmf","crc-32","adler-32","codepage","fflate", -"exit-on-epipe","@sheetjs/uglify-js","markdown-spellcheck","xlsb","dbf","dif","sylk","cash-cat","codacy-coverage", -"globify","jsonpath","unminified-webpack-plugin","XML","cdata","CDATA","doctype","processing instruction","Javascript", -"transforming", -"convertor","converting","conversion","node-expat","dom-js","xmltest","DOMParser","XMLSerializer","find-cache-directory", -"func-xml","@babel/plugin-proposal-unicode-property-regex","@unicode/unicode-14.0.0","babel-plugin-array-includes", -"babel-plugin-transform-xregexp","unicode-property-value-aliases","regular expression","whitelist", -"@scion-scxml/test-framework","statechart","state machine","finite state machine","finite automata","scxml", -"interpreter","@types/deep-equal","@types/express-ws","@types/utf8","xterm-benchmark","terminal-emulator", -"jest-ts-webcompat-resolver","YAML","yaml2json","json2yaml","browserslist-generator","yargs-test-extends", -"babel-plugin-transform-inline-imports-commonjs","death","loud-rejection","repeating","request-capture-har","roadrunner", -"babel-preset-es2015-node4","babel-preset-node5","eslint-config-fb-strict","eslint-config-kittens", -"eslint-plugin-flow-vars","eslint-plugin-no-async-without-await","@yeoman/adapter","@yeoman/conflicter", -"@yeoman/namespace","@yeoman/transform","@yeoman/types","fly-import","grouped-queue","mem-fs","mem-fs-editor", -"which-package-manager","@yeoman/eslint","esmocha","sinon-test","github-username","yes","no","true", -"false","lenient","cli-list","fullname","parse-help","root-check","npm-keyword","yeoman-doctor","humanize-string", -"yeoman-character","registry-url","@jonahsnider/benchmark","pad-component","cowsay","say","zeromq","0mq","ømq","libzmq", -"binding","@types/cookie-parser","@types/express-useragent","@types/morgan","express-useragent","schemas", -"runtime types","DSL","@externs/nodejs","@types/systemjs","JSON2","char-split","express-state","firefox-profile", -"istanbul-middleware","shallow-copy","stack-mapper","tap-finished","zuul-localtunnel","browzers","bulk-require", -"zuul-ngrok","@phenomnomnominal/tsquery","Unit Testing","Storybook","motion-dom","motion-utils","@radix-ui/react-dialog", -"@thednp/dommatrix","react animation","pose","react pose","popmotion","framer","waapi","belalangkayu","rengginangbasi", -"tehtarik3","sort-array","compute-scroll-into-view","@docusaurus/module-type-aliases","@testing-library/preact", -"babel-plugin-no-side-effect-class-properties","babel-preset-react-native","flow-coverage-report", -"get-pkg-repo","enhanced input","autosuggest","typeahead","omnibox","WAI-ARIA","multiple selection","focus","keyboards", -"mice","pen","pointer","pseudos","ring","textarea","trackpad","@augment-vir/core","@date-vir/duration","deepcopy-esm", -"typed-event-target","@web/dev-server-esbuild","execute-in-browser","istanbul-smart-text-reporter","runstorm","augment", -"vir","augment-vir","toolchain","JSONC","JSX","TSX","GraphQL","@commercetools-frontend/application-components", -"@commercetools-frontend/application-config","@commercetools-frontend/assets", -"@commercetools-frontend/babel-preset-mc-app","@commercetools-frontend/mc-dev-authentication", -"@commercetools-frontend/mc-html-template","@commercetools/http-user-agent","@formatjs/cli-lib","@rollup/plugin-graphql", -"@svgr/babel-preset","@types/webpack-bundle-analyzer","@vitejs/plugin-react-swc","babel-plugin-formatjs", -"graphql-request","moment-locales-webpack-plugin","svg-url-loader","thread-loader", -"@commercetools/composable-commerce-test-data","@types/moment-locales-webpack-plugin","@vue/cli-plugin-babel", -"@vue/cli-plugin-typescript","@vue/cli-service","eslint-plugin-prettier-vue","rollup-plugin-vue","vue 3", -"@vue/cli-plugin-unit-mocha","symlink-dir","tokenize","dogstatsd","datadog","telegraf","adr", -"decision record","any decision record","architectural decision","architectural decision record","architecture decision", -"architecture decision record","software quality","bplist-parser","@types/katex","katex","tex","hyperlink", -"@type-challenges/utils","deserialization","deserialize","detect-europe-js","is-standalone-pwa","ua-is-frozen", -"client-hints","device","browser-detection","device-detection","os-detection","bot-detection","ai-detection", -"app-detection","crawler-detection","youch","@adonisjs/ace","@adonisjs/env","parse-imports","@adonisjs/fold", -"@adonisjs/hash","@adonisjs/repl","youch-terminal","@poppinss/utils","@adonisjs/config","@adonisjs/events", -"@adonisjs/health","@adonisjs/logger","@poppinss/colors","@poppinss/dumper","@poppinss/macroable","@adonisjs/bodyparser", -"@adonisjs/encryption","@adonisjs/application","@adonisjs/http-server","error-stack-parser-es","argon2","edge.js", -"@japa/assert","@japa/runner","@japa/snapshot","@japa/expect-type","@japa/file-system","@adonisjs/tsconfig", -"ts-node-maintained","@adonisjs/assembler","@types/test-console","@adonisjs/eslint-config","@adonisjs/prettier-config", -"adonisjs","@aneuhold/core-ts-api-lib","@aneuhold/core-ts-lib", -"@aneuhold/local-npm-registry","@aneuhold/main-scripts","@capacitor/cli","@trapezedev/project","@types/slice-ansi", -"resources","splash screen","webOS","@envelop/types","@envelop/instrumentation","@whatwg-node/promise-helpers", -"@ionic/cli-framework-output","@angular-eslint/eslint-plugin","@angular-eslint/eslint-plugin-template", -"@angular-eslint/schematics","ng-packagr","docz","docz-utils","docz-theme-default", -"@asdfgertyjhnpm/nesciunt-molestias-reprehenderit-occaecati","@drftgyhuji7npm/rem-sint-necessitatibus-possimus", -"@drftgyhuji7npm/repellendus-eum-et-itaque","typeerror","Reflect.getPrototypeOf","Int8Array","Array","configurable", -"minimal","descriptors","channel","matchAll","Uint32Array","Array.prototype.filter","setter","Uint16Array","exit-code", -"isConcatSpreadable","weakmap","syntaxerror","sharedarraybuffer","Object","Array.prototype.flat","toSorted","typesafe", -"preserve-symlinks","negative zero","[[Prototype]]","tester","ArrayBuffer.prototype.slice","byteOffset","zero", -"ArrayBuffer#slice","trimRight","getter","Array.prototype.contains","findLastIndex","last","Int16Array","Int32Array", -"rangeerror","Float32Array","take","workspace:*","byteLength", -"censor","Symbol.toStringTag","operating-system","coercible","Function.prototype.name","gdpr","ArrayBuffer", -"private data","Object.fromEntries","0","tostringtag","-0","negative","Array.prototype.findLast","enumerable","toobject", -"interrupts","groupBy","handlers","reuse","Float64Array","group","some","collection.es6","sameValueZero","positive", -"code points","regular expressions","findLast","robust","description","Uint8ClampedArray","pnpm9","length", -"defineProperty","RegExp#flags","valid","accessor","@smithy/types","aws-lambda","elapsed-time-logger","gulp-open", -"cupertino","pane","slide","@pouchlab/ui","chai-jquery","corejs-typeahead","doiuse","gulp-add-src","gulp-cache-bust", -"gulp-check-deps","gulp-sass-lint","gulp4-run-sequence","is-empty-object","motion-ui","sassy-lists", -"undertaker-forward-reference","vinyl-named","handlebars-helper-rel","handlebars-helper-slugify","tinygradient", -"@bokub/prettier-config","gradient", -"gradients","grommet-icons","@chromatic-com/storybook","@storybook/addon-a11y","@storybook/addon-toolbars", -"@storybook/addon-webpack5-compiler-babel","@storybook/manager-api","@storybook/source-loader", -"@testing-library/testcafe","babel-plugin-transform-imports","chromatic","grommet-theme-hpe","jest-styled-components", -"react-shadow","tarball-extract","testcafe-react-selectors","grommet.io","grommetux","theming","sticker sheets", -"design patterns","app templates","atomic design","WCAG 2.1","keyboard navigation","screen reader tags","interaction", -"graphical user interface","dart-sass","grunt-jekyll","zepto","lightbox","@next/font","axe-playwright", -"@storybook/test-runner","@base-ui-components/react","@storybook/addon-webpack5-compiler-swc","find-process", -"@types/pretty","chromium","launch-image","splashscreen","splash-screen","image-generation","mstile","pwa-assets", -"@apitools/openapi-parser","base64-arraybuffer","xml-but-prettier","babel-plugin-template-html-minifier","inspectpack", -"Custom Element","Web Component","swagger ui","openapi ui","openapi themes","openapi viewer","openapi renderer", -"openapi explorer","swagger themes","animatable","@react-native/babel-preset","collapsible","accordion", -"rollup-plugin-local-resolve","swipeable","customizable","touchscreen","listview","swipe-to-delete","swipe-actions", -"use-composed-ref","use-latest","@preconstruct/cli","autosize","grow","md-writer","@types/common-tags", -"decimal.js-light","victory-vendor","@recharts/devtools","@storybook/builder-vite","@storybook/react-vite", -"@stryker-mutator/typescript-checker","@stryker-mutator/vitest-runner","@types/d3-interpolate","@types/d3-time-format", -"babel-plugin-dev-expression","eslint-config-airbnb-extended","eslint-plugin-react-perf","vitest-axe", -"@riotjs/dom-bindings","@riotjs/compiler","@riotjs/prettier-config","@riotjs/register","@riotjs/util", -"@wdio/mocha-framework","@wdio/sauce-service","bianco.attr","bianco.query","cumpa","curri","eslint-config-riot", -"rollup-plugin-riot","custom tags","minimalist","data binding","riotjs","riot.js","testcafe-browser-provider-saucelabs", -"sortable","reorder","ng-sortable","@use-gesture/vanilla","tdesign-icons-vue-next","@rollup/plugin-eslint", -"@rollup/plugin-url","@soerenmartius/vue3-clipboard","@tdesign/site-components","@tdesign/theme-generator","dom-parser", -"lodash.upperfirst","qrcode.vue","rollup-plugin-ignore-import","rollup-plugin-static-import","rollup-plugin-styles", -"tdesign-publish-cli","vite-plugin-tdoc", -"tdesign","babel-plugin-html-tag","postcss-css-variables","postcss-hexrgba","postcss-prefixer", -"rollup-plugin-module-replacement","rollup-plugin-string","uploader","preview","chunk","image-edit","sockets","ready", -"win32","gulp-convert-css-var","picklog","wechat","weixin","@formatjs/intl-localematcher","@napi-rs/simple-git", -"@shikijs/twoslash","@theguild/remark-mermaid","better-react-mathjax","estree-util-value-to-estree", -"react-compiler-runtime","react-medium-image-zoom","remark-math","remark-reading-time","remark-smartypants", -"unist-util-remove","unist-util-visit-children","@types/negotiator","esbuild-plugin-svgr", -"esbuild-react-compiler-plugin","make-synchronized","make-synchronous","sync-threads","synchronize","fs-fixture", -"@ibyar/decorators","aurora","ibyar","expressions","template-syntax","template-expression","scope","evaluation", -"command-center","rich-text-editor","tiptap","@types/babel__preset-env","eslint-plugin-no-null","allure","codeceptjs", -"testops","@intlayer/chokidar","@intlayer/config","@intlayer/core","@intlayer/types","intlayer","@types/cls-hooked", -"@utils/ts-config","@utils/ts-config-types","@utils/tsdown-config", -"user-agents","unist-util-remove-position","@bugsnag/core","@bugsnag/delivery-react-native", -"@bugsnag/plugin-console-breadcrumbs","@bugsnag/plugin-network-breadcrumbs","@bugsnag/plugin-react", -"@bugsnag/plugin-react-native-client-sync","@bugsnag/plugin-react-native-event-sync", -"@bugsnag/plugin-react-native-global-error-handler","@bugsnag/plugin-react-native-hermes", -"@bugsnag/plugin-react-native-session","@bugsnag/plugin-react-native-unhandled-rejection","iserror","bugsnag", -"stability","@enact/i18n","ilib","eslint-plugin-astro","control-panel","backendless-request","backendless-rt-client", -"backendless-console-sdk","bannerize","backendless.com","ahooks","better-scroll","@zarm-design/bem","@use-gesture/react", -"@zarm-design/icons","@floating-ui/react-dom-interactions","@zarm-design/cli","zarm-ui","zarm-mobile","@enact/spotlight", -"@enact/docs-utils","@enact/ui-test-utils","eslint-config-enact-proxy","react select","react dropdown", -"accessible react select","accessible","@reporters/github","titanium-sdk","tidev","iphone","@antora/expand-path-helper", -"antora","static site","web publishing","@asyncapi/generator-components","@asyncapi/generator-helpers", -"@asyncapi/generator-hooks","@asyncapi/multi-parser","fs.extra","global-dirs","requireg","unixify","react-loadable", -"combine-promises","@docusaurus/babel","@docusaurus/logger","@docusaurus/bundler","react-router-config", -"@docusaurus/mdx-loader","@docusaurus/utils-common","@docusaurus/utils-validation","react-loadable-ssr-addon-v5-slorber", -"@total-typescript/shoehorn","@types/react-router-config","parcel-bundler","Vue","unstyled","@nestjsx/crud-request", -"@nestjsx/util","crud-generator","frameworks","@zmotivat0r/o0","p-filter","p-locate","dependency-management", -"continuous-integration","npmjs","package-manager","gatsby","hugo","netlify","core-js-pure","jest-location-mock", -"@types/module-alias","webpack-plugin-serve","hotreload","@pothos/test-utils","pothos","yalc","@strapi/core", -"@strapi/i18n","@strapi/admin","@strapi/email","@strapi/types","@strapi/utils","@strapi/logger","@strapi/upload", -"@types/nodemon","@strapi/openapi","@strapi/database","@strapi/cloud-cli","@strapi/generators","get-latest-version", -"@strapi/permissions","@strapi/data-transfer","@strapi/content-manager","@strapi/content-releases", -"@strapi/review-workflows","@strapi/typescript-utils","@strapi/content-type-builder","@strapi/ts-zen", -"eslint-config-custom","@types/webpack-hot-middleware","strapi","cmf","content management framework","admin panel", -"koajs","jam","graphqL","infrastructure","self hosted", -"lernajs","snake-case","@types/svg-parser","http-status-emojis","tsparticles-plugin","@tsparticles/interaction", -"@tsparticles/move","tsparticles-shape","@tsparticles/updater","@aws-sdk/lib-storage","@aws-sdk/s3-presigned-post", -"express-interceptor","express-prom-bundle","grant","tus-js-client","webdav","resumable uploads","tus","dropbox", -"webpack-chain","@vuepress/types","vue-server-renderer","@vue/babel-preset-app","vuepress-plugin-container", -"vuepress-html-webpack-plugin","@types/diacritics","vuepress-plugin-smooth-scroll","detect-browser", -"@walletconnect/types","@walletconnect/safe-json","@walletconnect/window-getters","@walletconnect/window-metadata", -"@ethersproject/address","@types/lodash.isnumber","wallet","walletconnect","jsonrpc","cryptocurrency","dapp", -"@walletconnect/utils","@walletconnect/crypto","@walletconnect/legacy-types","@walletconnect/legacy-utils", -"@types/qrcode","@walletconnect/legacy-client","@walletconnect/jsonrpc-provider", -"@walletconnect/jsonrpc-http-connection","ethereum-test-network","@wordpress/element","wordpress","gutenberg","center", -"jasmine-co","jasmine-ts","selenium-mock","body scroll","body scroll lock","react scroll lock","react scroll","freeze", -"disable","overflow","vanilla-js","tablet", -"bsl","broccoli-node-info","resolve-path","@types/console-ui","@types/esm","@types/findup-sync","@types/sane", -"@types/underscore.string","broccoli-node-api","mocha-jshint","babel-plugin-optimize-starts-with","replacement","html4", -"invalid","color-name","is-whitespace","verb","mediaquery","csstree","completion","apollo-link-context","decap-cms", -"aws-cognito","what-the-diff","gotrue-js","git-gateway","gateway","napa","detector","tinydate","tweezer.js", -"medium-zoom","autoprefixer-stylus","rollup-plugin-async","eslint-plugin-playwright","creator","cp-file","yargonaut", -"docsify-server-renderer","cli-prompts-test","rollup-plugin-executable","ssr-window","eslint-config-standard-react", -"prettier-check","array-hyper-unique","crlf-normalize","book","books","chapter","comic","epub-maker","epub-maker2", -"node-novel","novel","volume","escaping","interpolate","goat","🐐","color-logger","ice-cap","esdoc-importpath-plugin", -"ECMAScript6","ECMAScript2015", -"ECMAScript7","ECMAScript2016","ECMAScript8","ECMAScript2017","proposal","mdc","developer","inter-element","white-space", -"whitespace","tagname","force","graceful-shutdown","http-shutdown","http-terminate","prometheus","icss", -"inferno-hyperscript","vnode","createVNode","gulp-rtlcss","postcss-preset-infima","dark mode","bootswatch","docstrap", -"@angular-devkit/build-angular","angular-eslint","github-files-fetcher","@stitches/react","animate-sass", -"postcss-trolling","vite-plugin-svgr","preview jest","log-utils","engine-base","engine-handlebars","lo","lo-dash", -"serve-index-75lb","lws-middleware","micromark-extension","tagfilter","dangerous","grunt-jasmine-node","mobilegrade", -"sniff","nth-child","nth","is-alphanumerical","is-decimal","is-hexadecimal","cssinjs", -"@wdio/selenium-standalone-service","babelrc-rollup","queryselector","shadowdom","gulp-streamify","rc-tools","tappable", -"hammer","@actions/core","@oclif/plugin-autocomplete","toposort","@readme/better-ajv-errors", -"@readme/standards","@types/toposort","@types/unzipper","goober","jest-esm-jsx-transform","parcel-plugin-css-to-string", -"use-throttled-effect","hex","color-picker","wai-aria","smart-tv","smarttv","simple-routing","nano-equal", -"shallow-equal-fuzzy","shouldComponentUpdate","quicklook","image-gallery","image-viewer","react-native-svg", -"progressindicator","circle","pie","progressbar","indeterminate","d3-interpolate-path","@react-native-community/bob", -"@storybook/react-native","eslint-plugin-react-native","youtube-iframe","iframe","@atomico/rollup-plugin-sizes", -"git-branch-is","react-spring","@bedrock-layout/use-forwarded-ref","@codecov/vite-plugin","@types/body-scroll-lock", -"get-nonce","@theuiteam/lib-builder","@tsparticles/shape-text","@tsparticles/updater-roll","@tsparticles/updater-tilt", -"@tsparticles/updater-wobble","@tsparticles/plugin-emitters","@tsparticles/updater-destroy", -"@tsparticles/updater-twinkle","@tsparticles/plugin-absorbers","@tsparticles/interaction-external-trail", -"@tsparticles/plugin-emitters-shape-circle","@tsparticles/plugin-emitters-shape-square","useRef","createRef", -"merge refs","detect-node-es","@types/enzyme-adapter-react-16","code spliting","sidecar","mutation-observer", -"copy-text-to-clipboard","svelte-loader","scss-loader","perfect-scroll","vue-perfect-scroll","vue-scroll", -"vue-scrollbar","vue-plugin","滚动条","@types/eslint-plugin-prettier","@types/form-data","is-uuid","rewrite-imports", -"serviceworker","convict","antora-component","@applitools/test-utils","applitools","eyes-sdk","test automation", -"visual regression","@dataui/crud-request","@dataui/crud-util","blob-to-buffer","drag drop","drag & drop", -"@expo/spawn-async","@parcel/core","@parcel/fs","@parcel/package-manager","@parcel/watcher","mnemonic-id", -"node-object-hash","@plasmohq/parcel-config","@plasmohq/parcel-core","@plasmohq/init","@plasmo/config", -"@plasmo/constants","@plasmo/utils","@plasmo/framework-shared","browser-extensions","@iconify/react","@types/events", -"static-server","@storybook/cli","less-plugin-sass2less","@storybook/addon-mdx-gfm","music","player","mse","eme", -"@arethetypeswrong/core","ts-expose-internals","dlv","dset","flattie","fontace","unifont","magicast","piccolore", -"unstorage","zod-to-ts","xxhash-wasm","yocto-spinner","@oslojs/encoding","@astrojs/compiler","@astrojs/telemetry", -"@capsizecss/unpack","http-cache-semantics","@astrojs/internal-helpers", -"deterministic-object-hash","@types/dlv","rehype-toc","astro-scripts","remark-code-titles","@types/common-ancestor-path", -"@types/http-cache-semantics","strata","fuzzysearch","sander","@web/test-runner-core","testrunner","ac-colors","hsv", -"lch","color-names","cmyk","mix","harmonies","expressots","clean-architecture","typescript-framework", -"@pagefind/default-ui","bcp-47","mdast-util-directive","linkedom","withastro","astro-integration","piña","pigna", -"tabbable","@floating-ui/utils","@radix-ui/react-checkbox","@radix-ui/react-icons","vitest-browser-react", -"@internal/test-utils","code-blocks","expressive-code","syntax-highlighting","netlify-cms","@types/deep-eql", -"@amaui/ui-react","amaui","firefoxos","onesy","@react-native-macos/virtualized-lists","@tsparticles/plugin-easing-quad", -"@tsparticles/updater-stroke-color","@tsparticles/interaction-external-pause","@tsparticles/interaction-external-bubble", -"@tsparticles/interaction-external-attract","@tsparticles/interaction-external-connect","@types/react-router", -"@backstage/backend-plugin-api","@backstage/config","@backstage/integration","express-promise-router", -"@backstage/backend-test-utils","@backstage/catalog-model","@backstage/cli","@backstage/plugin-catalog-common", -"@backstage/plugin-catalog-node","backstage","ci/cd", -"immobiliare","immobiliarelabs","rgv","@asteasolutions/zod-to-openapi","@trpc/server", -"eslint-import-resolver-custom-alias","resolve-tspaths","event-driven","blaze","qs-esm","dataloader","bson-objectid", -"console-table-printer","@payloadcms/translations","graphql-http","@types/range-parser","@monaco-editor/react", -"@payloadcms/eslint-config","@hyrious/esbuild-plugin-commonjs","content management","graphQL","@cfcs/core","@egjs/axes", -"@egjs/component","@egjs/imready","@egjs/list-differ","@daybrush/jsdoc","@egjs/flicking-plugins","@egjs/release-helper", -"@types/resize-observer-browser","egjs-jsdoc-template","html-to-react","http-serve","jsdoc-to-mdx", -"karma-typescript-es6-transform","postcss-clean","print-coveralls","print-sizes","pvu","rollup-plugin-prototype-minify", -"ts-mock-imports","ttypescript","flicking","egjs","body scroll lock upgrade","@ucast/mongo2js","@casl/dx","permissions", -"abac","rbac","ibac","cancan","@humanwhocodes/gitignore-to-minimatch","peowly","list-dependents-cli","rslog", -"@rslib/core","@modern-js/rslib","@modern-js/types","@scripts/rstest-config","modern","modern.js","@scripts/build", -"@scripts/jest-config", -"import-without-cache","unconfig-core","unrun","@publint/pack","@sxzz/eslint-config","@sxzz/prettier-config", -"@sxzz/test-utils","@unocss/eslint-plugin","@vitejs/devtools","rolldown-plugin-dts-snapshot", -"rolldown-plugin-require-cjs","unocss","unplugin-ast","unplugin-lightningcss","unplugin-unused","@types/decompress", -"@ckeditor/ckeditor5-comments","@ckeditor/ckeditor5-track-changes","CKEditor","WYSIWYG","WYSIWYW","rich-text", -"fast-equals","glob2regx","ckeditor5-collaboration","@ckeditor/ckeditor5-revision-history", -"@ckeditor/ckeditor5-operations-compressor","@ckeditor/ckeditor-cloud-services-collaboration","@grammyjs/types", -"deno2node","@udecode/plate-utils","@loki/integration-react","@loki/integration-react-native","@loki/integration-vue", -"@loki/runner","@loki/target-chrome-app","@loki/target-chrome-docker","@loki/target-native-android-emulator", -"@loki/target-native-ios-simulator","storybook-addons","react-storybook","visual testing","emoji-datasource", -"@fastify/static","graphql-jit","mqemitter","single-user-cache","tiny-lru","@matteo.collina/snap", -"@types/isomorphic-form-data","graphql-ws","blue-tape","events.once","xhr2-cookies","convex","mock-spawn", -"@fastify/pre-commit","@reporters/silent","desm","gulp-better-rollup","Leaflet","Maps","Gesture","Handling", -"two","fingers","@tanstack/vue-virtual","@testing-library/vue","@fast-check/vitest","@types/eslint-config-prettier", -"prettier-plugin-pkg","prettier-plugin-sh","algo","@oxc-node/cli","eslint-plugin-redos-detector","tsm","bundle-size", -"@iconify/vue","@internationalized/date","@internationalized/number","@nuxt/fonts","@nuxt/icon","@nuxt/kit", -"@nuxt/schema","@nuxtjs/color-mode","@tanstack/vue-table","@tiptap/core","@tiptap/extension-bubble-menu", -"@tiptap/extension-code","@tiptap/extension-collaboration","@tiptap/extension-drag-handle", -"@tiptap/extension-drag-handle-vue-3","@tiptap/extension-floating-menu","@tiptap/extension-horizontal-rule", -"@tiptap/extension-image","@tiptap/extension-mention","@tiptap/extension-node-range","@tiptap/extension-placeholder", -"@tiptap/markdown","@tiptap/pm","@tiptap/starter-kit","@tiptap/suggestion","@tiptap/vue-3","@vueuse/shared", -"colortranslator","embla-carousel-auto-height","embla-carousel-auto-scroll","embla-carousel-autoplay", -"embla-carousel-class-names","embla-carousel-fade","embla-carousel-vue","embla-carousel-wheel-gestures","knitwork", -"motion-v","reka-ui","tailwind-variants","unplugin-auto-import","unplugin-vue-components","vaul-vue", -"vue-component-type-helpers","@nuxt/eslint-config","@nuxt/module-builder","@nuxt/test-utils","@tanstack/table-core","ai", -"vitest-environment-nuxt","nuxt-ui","ui-framework", -"country-code","country-codes","country-flags","country-names","country-telephone-codes","country-telephone-prefixes", -"countries","country-iso-codes","iso","iso-codes","iso-country-codes","iso-country-names","iso-country-telephone-codes", -"iso-country-telephone-prefixes","iso-countries","emoji-flags","phone-codes","phone-prefixes","telephone-codes", -"telephone-prefixes","world-countries","world-country-codes","world-country-flags","world-country-names", -"world-country-telephone-codes","world-country-telephone-prefixes","world-iso-codes","world-iso-country-codes", -"world-iso-country-names","@zoroaster/assert","@zoroaster/mask","alamode","@a-la/fixture-alamode","@a-la/fixture-babel", -"@artdeco/clean-stack","@artdeco/erte","@artdeco/scripts.json","@depack/render","@wrote/exists","@wrote/rm", -"@zoroaster/reducer","@zoroaster/types","argufy","catchment","documentary","erotic","eslint-config-artdeco", -"makepromise","promto","reloquent","snapshot-context","spawncommand","temp-context","usually","yarn-s","IDE", -"suggestions","intellisense","assistant-cloud","@assistant-ui/tap","@assistant-ui/store","@radix-ui/primitive", -"@radix-ui/react-compose-refs","@radix-ui/react-context", -"@radix-ui/react-dropdown-menu","@radix-ui/react-popover","@radix-ui/react-primitive","@radix-ui/react-use-callback-ref", -"@radix-ui/react-use-escape-keydown","assistant-stream","@assistant-ui/x-buildutils","radix-ui","ai-sdk","assistant", -"openai","chatbot","copilot","ai-chat","ai-chatbot","ai-assistant","ai-copilot","chatgpt","gpt4","gpt-4", -"conversational-ui","conversational-ai","graphiql","radash","@a2a-js/sdk","js-tiktoken","@lukeed/uuid","hono-openapi", -"@isaacs/ttlcache","@ai-sdk/provider-v5","@ai-sdk/provider-v6","@ai-sdk/ui-utils-v5","@mastra/schema-compat", -"@ai-sdk/provider-utils-v5","@ai-sdk/provider-utils-v6","@ai-sdk/azure","@ai-sdk/openai","@internal/lint", -"@internal/ai-v6","@internal/ai-sdk-v4","@internal/ai-sdk-v5","@internal/types-builder","@internal/external-types", -"@openrouter/ai-sdk-provider","llm","llms","agents","vectorstore","embeddings","rag","evals","otel","@tailwindcss/ui", -"@types/sortablejs","vue-next","draggable","drag-and-drop","vue-draggable","kanban","composition-api", -"@oxc-project/runtime","hmac256","hmac512","@ant-design/pro-components", -"@anthropic-ai/sdk","@azure-rest/ai-inference","@cfworker/json-schema","@clerk/localizations","@clerk/nextjs", -"@clerk/themes","@cyntler/react-doc-viewer","@fal-ai/client","@formkit/auto-animate","@google/genai", -"@huggingface/inference","@icons-pack/react-simple-icons","@khmyznikov/pwa-install","@langchain/community", -"@lobechat/agent-runtime","@lobechat/const","@lobechat/context-engine","@lobechat/database", -"@lobechat/electron-client-ipc","@lobechat/electron-server-ipc","@lobechat/fetch-sse","@lobechat/file-loaders", -"@lobechat/model-runtime","@lobechat/observability-otel","@lobechat/prompts","@lobechat/python-interpreter", -"@lobechat/utils","@lobechat/web-crawler","@lobehub/analytics","@lobehub/charts","@lobehub/chat-plugin-sdk", -"@lobehub/chat-plugins-gateway","@lobehub/editor","@lobehub/icons","@lobehub/market-sdk","@lobehub/tts","@lobehub/ui", -"@neondatabase/serverless","@next/third-parties","@opentelemetry/exporter-jaeger","@opentelemetry/winston-transport", -"@react-pdf/renderer","@react-spring/web","@saintno/comfyui-sdk","@serwist/next","@t3-oss/env-nextjs","@trpc/client", -"@trpc/next","@trpc/react-query","@vercel/analytics","@vercel/edge-config","@vercel/functions","@vercel/speed-insights", -"@virtuoso.dev/masonry","@xterm/xterm","brotli-wasm","countries-and-timezones","dexie","drizzle-orm","drizzle-zod", -"gpt-tokenizer","i18next-resources-to-backend","js-sha256","jsonl-parse-stringify", -"langchain","langfuse","langfuse-core","lucide-react","markdown-to-txt","model-bank","modern-screenshot", -"next-mdx-remote","nextjs-toploader","nuqs","officeparser","oidc-provider","ollama","partial-json","path-browserify-esm", -"pdf-parse","plaiceholder","posthog-js","pwa-install-handler","react-confetti","react-hotkeys-hook","react-layout-kit", -"react-pdf","react-rnd","react-scan","react-virtuoso","react-wrap-balancer","resolve-accept-language","rtl-detect", -"ssrf-safe-fetch","svix","tokenx","ts-md5","unstructured-client","use-merge-value","word-extractor","zustand-utils", -"@huggingface/tasks","@lobehub/i18n-cli","@lobehub/lint","@lobehub/market-types","@lobehub/seo-cli", -"@next/bundle-analyzer","@peculiar/webcrypto","@types/chroma-js","@types/crypto-js","@types/ip","@types/numeral", -"@types/oidc-provider","@types/pdfkit","@types/pg","@types/rtl-detect","dbdocs","dpdm-fast","drizzle-dbml-generator", -"drizzle-kit","eslint-plugin-mdx","fake-indexeddb","just-diff","mcp-hello-world","remark-mdx","serwist","vercel-ai", -"azure-openai", -"visual-model","tts","stt","modelcontextprotocol","mcp","context7","vibe-coding","developer tools", -"@types/istanbul-lib-report","@walletconnect/time","@walletconnect/events","label","better-npm-run","clamp.js", -"karma-fixture","karma-opera-launcher","minimalistic","@types/webrtc","detectrtc","install-peers-cli","prepend-file", -"camera","webcam","cam","webRTC","react-native-worklets","visionOS","tvOS","macOS","cpp","swift","jsi","@antfu/ni", -"@dotenvx/dotenvx","@types/validate-npm-package-name","stringify-object","@types/stringify-object","virtual-core", -"datagrid","2fa","hotp","topt","google authenticator","authenticator","one time password","one-time-password","2 factor", -"survey","surveyjs","survey-library","form-component","form-rendering","survey-renderer","dynamic-form", -"interactive-form","form-library","form-management","questionnaire","data-collection","data-validation", -"input-validation","ui-component","schema-form","base64-stream", -"bplist-creator","@mrleebo/prisma-ast","@electric-sql/pglite-socket","@prisma/query-plan-executor","common-stuff", -"accelerate","@aws-lite/client","@aws-lite/s3","@architect/eslint-config","mock-tmp","tap-arc","cloudfunctions", -"apigateway","api gateway","@webgpu/types","@tinymce/tinymce-react","n1ed","@headlessui/tailwindcss","@heroicons/react", -"@tailwindplus/elements","@types/sharp","react-docgen-typescript","react-lib-tools","rollup-preserve-directives", -"ts-blank-space","vitest-fail-on-console","windowed","@extend-chrome/messages","@extend-chrome/storage","@types/chrome", -"@types/jsesc","vite-plugin-inspect","chrome-extension","webext","webextension","browser-extension","isoformat", -"interval-tree-1d","htl","@types/d3","apache-arrow","d3-geo-projection","@observablehq/stdlib","string-split-by", -"cargo-cp-artifact","skia","offscreen","compositing","vulkan","metal","flmngr","imgpen","unsplash","@types/listr", -"markdown-to-pdf","pdf-generation","assignments","homework","html-to-pdf","@applitools/core","@applitools/logger", -"@applitools/req","@applitools/snippets","@applitools/image", -"@applitools/spec-driver-webdriver","@antora/user-require-helper","kapok-js","@asciidoctor/core", -"@antora/asciidoc-loader","navigation","asciidoc","pod-install","pinch-to-zoom","pinch","@farmfe/cli","@farmfe/core", -"bun-types-no-globals","eslint-plugin-format","unloader","redirects","@antora/file-publisher","publisher", -"vite-plugin-dts-bundle-generator","vite-plugin-pages","vite-plugin-typescript","vite-plugin-typescript-transform", -"box2d","game","physics","2d","replace-in-files-cli","sandboxed-module","oxc","exact-versions","turborepo", -"version-linter","@jsdevtools/ez-spawn","@napi-rs/magic-string","@pnpm/list","@pnpm/workspace.find-packages", -"@types/treeverse","@types/yarnpkg__lockfile","fast-npm-meta","@nolyfill/internal","@nolyfill/promise.any","fumadb", -"kysely","@orpc/zod","@orpc/otel","neverthrow","@c15t/logger","@orpc/server","@orpc/openapi","@orpc/contract", -"@c15t/translations","@opentelemetry/sdk-node","kysely-pglite","@c15t/vitest-config","@libsql/kysely-libsql", -"@c15t/typescript-config","consent","privacy","ccpa","lgpd","self-host","consent-management","user-privacy", -"data-protection", -"cookie-banner","consent-management-platform","cmp","consent-banner","@ampproject/rollup-plugin-closure-compiler", -"@fezvrasta/tsc-silent","@khanacademy/flow-to-ts","babel-plugin-inline-replace-variables","poster", -"rollup-plugin-flow-entry","popper","positioning engine","anime","anime.js","timeline","easings","cubic-bezier", -"splitText","WAAPI","Canvas","WebGL","decrypt","ev-emitter","fizzy-ui-utils","get-size","imagesloaded","unidragger", -"eslint-plugin-metafizzy","jquery-bridget","flick","gulp-wrap-commonjs","lex","maths","persist-schema","jugglingdb", -"panorama","rip-out","eslint-config-godaddy-react","setup-env","compatiblity","rollup-plugin-eslint", -"rollup-plugin-sass","testit","gethub","bits","iec"], -[5,293,294], -[0,-3015,-3016,-3017,-3018], -1771718400000, -1771113600000, -1770508800000, -[0], -1772323200000, -1772409600000, -1772064000000, -1771804800000, -[1,24,619], -[1,3,621], -[0,-519,-2384,-2541], -[0,-3040,-3052,-1031,-2006,-2019,-2410], -[0,-3095,-3098,-3099,-3161,-3100,-2006,-3159,-3160,-2494], -[1,3,440], -[1,3,1832], -[0,-3488,-681,-3489,-3490,-3491,-3492], -[1,3,1826], -[0,-3220], -[0,-1889], -[0,-424], -[0,-3557,-3018], -true, -[1,3,622], -[0,-1654], -[0,-2006,-2019], -[0,-4298,-4300,-2319], -[1,3,1783], -[0,-2322], -[1,24,585], -[0,-2387], -[0,-1548], -[0,-531], -[0,-7841], -[0,-2410], -[0,-932], -[0,-44], -[0,-1787], -[0,-2006], -[0,-856,-3262,-2476,-2816], -[1,3,674], -[0,-18,-19,-471,-487,-498,-504,-577,-588,-590,-591,-592,-603,-604,-605,-5421,-606,-607,-608,-609,-610,-5422,-611,-612, --613,-5423,-626,-631,-643,-660,-663,-5424,-670,-676,-5425,-5426,-5427,-5428,-5429,-804,-830,-833,-836,-998,-5430,-5431, --1019,-1020,-1095,-1121,-5432,-1280,-1282,-1307,-1308,-5433,-1378,-1511,-1512,-1513,-5434,-1516,-1584,-1596, --5435,-1615,-5436,-1648,-1679,-1684,-1695,-1720,-1799,-5437,-1803,-1822,-1869,-1886,-5438,-1994,-2067,-5439,-2158,-2169, --5440,-5441,-2196,-2201,-2203,-2209,-2217,-2237,-5442,-2238,-2252,-5443,-2256,-2290,-5444,-2296,-2298,-2309,-2348,-2366, --2370,-5445,-5446,-5447,-2426,-5448,-5449,-2527], -[0,-18,-19,-676,-1994,-2426], -[1,3,1519], -[1,3,2972], -[0,-2501], -[0,-9219], -[0,-775,-1889,-3583], -[0,-23,-3219], -[1,3,1044], -[1,3,1396], -[1,3,1875], -[0,-519,-2541], -[0,-1654,-1941], -[0,-4633,-3445,-3100,-7566], -[0,-15394,-15395,-4276,-15396,-3162,-6935,-2494,-770,-15397,-15398], -[0,-3488,-681,-3489,-3518,-3492], -[0,-1934], -[1,3,623], -[1,24,645], -[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3960,-3262,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966, --3967,-1965,-3968,-1966,-3969,-2063,-3970,-3971,-3108,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], -[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340], -[0,-2476,-3944,-3100,-4590,-3098,-4591,-4592,-4593,-4594], -[1,3,1380], -[0,-18,-19,-471,-498,-504,-577,-588,-590,-591,-592,-603,-604,-605,-606,-607,-608,-609,-5423,-626,-631,-660,-663,-670,-676, --5426,-5429,-804,-830,-833,-836,-998,-5431,-1095,-1121,-5432,-1280,-1282,-1308,-5433,-1511,-1512,-1513,-1516,-1584,-1596, --1615,-1648,-1679,-1684,-1695,-1720,-1799,-5437,-1803,-1822,-1869,-1886,-5438,-1994,-2169,-5441,-2201,-2203, --2209,-2217,-2237,-5442,-2238,-2252,-2256,-2290,-5444,-2296,-2298,-2309,-2348,-2366,-2370,-5445,-5446,-5447,-2426,-5448, --5449], -[0,-18,-19,-467,-471,-487,-498,-504,-6147,-575,-577,-588,-590,-591,-592,-6148,-603,-604,-605,-5421,-606,-607,-608,-609, --610,-5422,-611,-612,-613,-6149,-5423,-625,-626,-6150,-631,-6151,-643,-660,-663,-5424,-670,-675,-676,-5425,-5426,-6152, --6153,-5427,-5428,-5429,-804,-830,-833,-6154,-836,-842,-890,-998,-5430,-6155,-5431,-1019,-1020,-1035, --1073,-1084,-6156,-1095,-1117,-1120,-1121,-5432,-1279,-1280,-1282,-1295,-1307,-1308,-1314,-6157,-5433,-1378,-6158,-6159, --1511,-1512,-1513,-5434,-1516,-6160,-1584,-6161,-1596,-5435,-1615,-5436,-1648,-1677,-6162,-6163,-1678,-1679,-1684,-1695, --6164,-1720,-1799,-5437,-1803,-1822,-6165,-1865,-1869,-1886,-5438,-1994,-2067,-5439,-6166,-2158,-2159,-2164,-2169,-5440, --6167,-5441,-6168,-2196, --2201,-2203,-2208,-2209,-2217,-2221,-2224,-2225,-2237,-5442,-6169,-2238,-2241,-2252,-5443,-2256,-6170,-2288,-2290,-5444, --2296,-2298,-2309,-2315,-2348,-6171,-6172,-2366,-2370,-5445,-5446,-5447,-2426,-2431,-2458,-5448,-6173,-6174,-2496,-2497, --5449,-6175,-2527], -[1,3,2681], -[0,-1654,-2198], -[0,-2319], -[0,-2460], -[0,-4864,-3214,-11467,-11468,-5270,-5271,-15723,-3634], -[1,3,308], -[0,-719], -[0,-4362], -[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, --5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, --5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189], -[1,3,1342], -[1,3,1453], -[1,3,1877], -[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], -[1,3,2054], -[0,-1754], -[0,-2471], -[0,-3214,-8058,-8059,-4004,-3476,-2006,-1062,-3634,-8060,-8061,-4873,-1654], -[0,-2250], -[0,-5334], -[0,-1202,-1654], -[0,-1406], -[0,-1931], -[0,-3037], -[0,-3037,-652,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-3161,-3481,-3098,-3162,-14919], -[0,-1967], -[0,-2410,-2409,-11398,-5406,-3691,-5728,-3690,-10796,-15307,-3445,-15308], -[1,3,10143], -[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, --5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, --5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15365], -[0,-3577,-3100,-2808,-5157,-5158,-659,-5159,-5160,-5161,-5155,-5164,-5165,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775, --3264,-5180,-5181,-5182,-15367], -[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, --5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, --5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15368], -[1,3,10608], -[0,-23], -[0,-3510,-3488,-681,-3489,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161], -[1,24,583], -[0,-1599,-3670,-3671,-3672,-856,-3673,-3674,-3262], -[0,-3770,-906,-2006,-775,-3771], -[0,-2080], -[0,-519,-525,-4005,-4037,-1001,-4038,-4039,-4040,-1412,-1415,-1449,-1654,-4041,-4042,-1989,-4043,-4044,-4045,-2319,-2322, --4004,-3634,-2410,-2490], -[0,-703], -[0,-475,-856,-3262,-4258,-4259,-3690,-4260,-4261], -[0,-3158,-3095,-3098,-3099,-3161,-3100,-2006,-3159,-3160], -[0,-5014,-5015,-5016,-5017,-5018,-5019,-5020,-5021,-5022,-5023,-5024], -[0,-2469,-3664], -[0,-3262,-5355,-2501,-2006,-5371,-5372,-1599,-3098,-856], -[0,-1654,-664], -[0,-3037,-519,-2384,-2541], -[0,-567], -[0,-2267], -[0,-2541], -[0,-7475], -[0,-3136,-3037,-427,-428,-932,-940,-7476,-948,-958,-1415,-1942,-2375,-2391,-2402,-2410], -[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-427], -[0,-2320,-2322], -[0,-932,-1654], -[0,-1645], -[0,-932,-937,-1001,-1654,-1788], -[0,-1127,-1134,-1144,-1143,-1146], -[0,-1127,-1134,-1143,-1144,-1146], -[0,-664,-1654], -[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788], -[0,-756,-932,-940,-1344,-1415,-1534,-1889,-1942], -[0,-3037,-2410], -[0,-664,-1654,-2379,-2501,-21,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40,-15393,-42], -[0,-8096,-14182,-652,-725,-1942,-2094,-2100,-2125,-2322,-2399,-2410,-2541], -[0,-12449,-12613,-13616,-13615,-8897,-2363,-3214,-2410,-2006,-2476,-2299,-9608], -[0,-3951,-2410], -[1,3,313], -[0,-3183,-525,-3184,-3185,-3186,-526,-3116], -[0,-3183,-525,-3205,-3206,-3184,-3207,-3208,-3209,-3185,-3186,-3210,-527,-3116], -[0,-24], -[0,-753,-2082], -[0,-3417,-3418,-3419,-3420,-3421,-3422,-3423,-714,-1028,-1039,-1107,-1442,-1449,-3424,-1600,-3245,-1601,-3425,-3426,-1602, --3427,-3428,-3429,-3430,-1616,-1689,-3431,-3432,-1955,-1974,-1978,-3433,-3434,-2446,-3435,-2550], -[0,-2281,-3436,-2284], -[0,-687,-1599,-3437,-3438,-3328,-3439,-3440,-3441,-856,-3262], -[0,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161,-3510,-3488,-681,-3489], -[0,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161,-3488,-681,-3489,-3518,-3492], -[0,-739,-721,-687], -[0,-3499,-475,-856,-3098,-3551,-3552,-3015,-1599], -[0,-775,-2162,-3575,-3576,-3577,-3161,-3578], -[0,-3634,-3440,-793,-3635,-3636], -[0,-3812,-3813,-3814,-3815,-3816,-3817,-856,-3818], -[0,-3821,-3822,-3823,-3824,-3825,-3826,-2006,-2019], -[0,-3836], -[0,-3827,-3837,-3838,-3167,-3839,-620], -[0,-3136,-3037,-427,-428,-932,-933,-935,-940,-958,-959,-962,-967,-1415,-1424,-1942,-2375,-2376,-2379,-2402,-2410], -[0,-3161,-1334,-3690,-3578], -[0,-3037,-928,-1942,-2319,-2386,-2402], -[0,-687,-3958,-3999,-3099,-4000,-4001,-4002], -[0,-1535,-1536,-687,-4107,-4108,-4109,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], -[1,3,825], -[0,-2006,-3159,-3119,-1613], -[0,-4055,-3690,-4140,-4141,-4142,-4143,-4144,-2410,-3018,-3445,-3577], -[0,-4165,-856,-4100,-3485,-4156,-3215,-2250], -[0,-4328,-4329,-1105,-4330,-1599,-3437,-856,-4331,-3264,-1764], -[0,-4332,-4335,-4345,-4346,-4340,-4347], -[0,-4332,-4336,-4337,-4338,-4339,-4340,-4344], -[0,-234,-3044,-5011,-3738,-865,-985,-1771,-1788,-5012,-2376,-5013,-2392,-2469,-2503,-2509], -[0,-5096], -[0,-5141,-4601,-4602,-3578,-3445], -[0,-5140], -[0,-3497,-3496,-3161,-3264,-5246,-3862,-3495,-5247,-3494], -[0,-433,-436], -[0,-1788,-1654,-932,-821,-966,-958,-968,-943,-963,-974], -[0,-475,-3161,-4865,-5495], -[0,-3690,-489,-4100,-856,-3691,-5728], -[0,-1047], -[1,3,1788], -[0,-2155], -[0,-581,-5110,-6120,-3173,-6129,-6130,-770], -[1,3,1820], -[1,3,1876], -[1,3,1878], -[0,-1309], -[0,-1592,-1654,-664], -[0,-6657,-6658,-4868,-4004,-6659], -[0,-2231], -[0,-6689,-2115], -[0,-714], -[0,-3966,-3957,-6722,-687,-4002,-6723,-6724,-4112,-714,-4672], -[0,-3214,-6784,-711,-3116], -[0,-2337], -[0,-465,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], -[0,-711], -[0,-856,-1599], -[0,-865], -[0,-891], -[0,-5558,-3591,-633,-6340,-6408,-6916,-3870], -[0,-932,-8163,-727,-8164,-3214,-4900,-4795,-8165,-6434,-8166], -[0,-932,-5208,-3784], -[0,-429], -[0,-932,-5208,-3784,-3966,-3967,-3217,-7094,-6656,-1847,-6024,-4792], -[0,-932,-3784,-5208,-2006], -[0,-426], -[0,-1004,-3161,-6125,-3578,-1334,-3691,-5728,-3122,-3994,-3690], -[0,-1107,-5064,-5922,-8528], -[0,-1543,-2168], -[0,-1654,-2125,-2250], -[0,-1127,-1144], -[0,-510,-2125], -[0,-9219,-1654,-4004], -[0,-1127,-1132,-2541], -[0,-519,-1168,-1825,-2460,-2541], -[0,-2347], -[0,-1252,-1654,-2198,-2460], -[0,-2347,-1876], -[0,-1876,-2347], -[0,-519,-1825,-2460,-2541], -[0,-3037,-652,-1294,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-1696,-596], -[0,-707,-1510], -[0,-1580], -[0,-1386,-9944,-9945,-3162,-3994,-9946,-752,-5269,-1861], -[0,-519,-9982,-2384,-2541], -[0,-4004,-3634,-1412,-4873,-3440], -[0,-4034], -[0,-5092,-3264,-5388,-5387], -[0,-1452], -[0,-2518], -[0,-1646], -[0,-1523,-10558,-5827,-7685,-7773,-4634,-6005,-4055], -[0,-3326,-351,-3266,-652,-932,-943,-1600,-3668,-1654,-2127], -[0,-4792,-6137,-6138,-6134,-9405,-11114,-4004,-4215,-8611], -[0,-1127], -[0,-687,-3957,-11725,-3673,-1764,-11726,-11727,-8907,-10227,-5921,-4107], -[0,-3994,-1805,-1810,-11816,-11817,-11818,-11819,-11820,-11821,-7095,-4865,-3496,-7237,-7863,-2435,-11822,-7303,-4377, --7091,-8421,-6599,-1958,-3258,-6656], -[0,-6748,-4377,-5829,-3215,-6747,-687,-3957], -[0,-1654,-664,-666], -[0,-1841,-6120,-8449,-3173,-8450,-6121,-1791,-11437], -[0,-2541,-519,-2384], -[0,-1859,-11878,-11613], -[1,3,6920], -[0,-523], -[0,-635,-1934], -[1,3,7131], -[1,3,7300], -[0,-2006,-12452], -[0,-2006,-2034,-5271,-5270,-3162,-7085,-12561,-12562], -[1,3,7605], -[0,-2006,-3122,-10470,-9843,-1306,-10606], -[1,3,7706], -[1,3,7712], -[0,-2384,-2541], -[0,-12913], -[0,-2127,-12913,-4795,-1764,-3209], -[0,-2006,-3161,-1713,-3578,-3844,-3966,-3577,-3445,-687,-2455], -[1,3,8114], -[1,3,8321], -[1,3,8373], -[0,-9214,-2359,-2330,-13745,-6909,-11846,-13746], -[0,-2410,-856,-3262], -[0,-2444], -[0,-3100,-3161,-6211,-14339,-14340,-2466], -[0,-14357], -[0,-3113,-7646,-7641,-3673,-687,-3970,-3108,-3960,-3262,-3976,-3994], -[0,-3214,-3100,-2006,-3481], -[1,24,9789], -[0,-2662], -[1,24,10023], -[0,-1386,-3161,-2006,-3162,-3994,-9946,-3995,-752,-3997,-3998], -[0,-15309], -[1,3,10151], -[0,-856,-3262,-2476], -[0,-15415,-15416,-15417,-15418,-11853,-10655,-15419,-6711,-15420,-15421,-4126,-15071,-2006,-15422,-475,-2476,-5270,-3162, --11321,-15423,-15424], -[0,-4258,-7641,-3100,-4865,-6342,-9290], -[0,-15445,-3445], -[0,-3037,-652,-1942,-2094,-2100,-2384,-2399,-2410,-2541], -[0,-1368], -[0,-525,-2006,-1368,-3161,-4729,-9850,-9613], -[0,-15627,-14386,-15628,-15629,-15630,-4864,-3634,-3636], -[1,3,10609], -[0,-15699,-3967,-6209,-2410,-15700,-15701,-3161,-11894], -[1,3,10660], -[1,3,10677], -[1,3,10691], -[1,3,10722], -[0,-1313,-3445,-15751,-15752,-3161,-9840], -[0,-2006,-3161,-15804,-15805], -[0,-1415,-932,-2127,-2375,-1942,-2410,-3136,-940,-967,-1419,-428,-427], -[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3960,-3262,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966, --3967,-1965,-3968,-1966,-3969,-2063,-3970,-3971,-3108,-3972,-3973,-3974,-3975,-3694,-2410,-3160,-3976,-2559,-3977], -[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, --5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, --5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364], -[1,3,10858], -[0,-231,-2900], -[1,24,11236], -[0,-1,-2,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-23,-24,-25,-26,-27,-28,-29,-30,-31,-32, --33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62, --63, --64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93, --94,-95,-96,-97,-98,-99,-100,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-113,-114,-115,-116,-117,-118, --119,-120,-121,-122,-123,-124,-125,-126,-127, --128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139,-140,-141,-142,-143,-144,-145,-146,-147,-148,-149,-150,-151, --152,-153,-154,-155,-156,-157,-158,-159,-160,-161,-162,-163,-164,-165,-166,-167,-168,-169,-170,-171,-172,-173,-174,-175, --176,-177,-178,-179,-180,-181,-182,-183,-184,-185,-186,-187,-188,-189,-190,-191, --192,-193,-194,-195,-196,-197,-198,-199,-200,-201,-202,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-215, --216,-217,-218,-219,-220,-221,-222,-223,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,-235,-236,-237,-238,-239, --240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255, --256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-274,-275,-276,-277,-278,-279, --280,-281,-282,-283,-284,-285,-286,-287,-288,-289,-290,-291,-292,-293,-294,-295,-296,-297,-298,-299,-300,-301,-302,-303, --304,-305,-306,-307,-308,-309,-310,-311,-312,-313,-314,-315,-316,-317,-318,-319, --320,-321,-322,-323,-324,-325,-326,-327,-328,-329,-330,-331,-332,-333,-334,-335,-336,-337,-338,-339,-340,-341,-342,-343, --344,-345,-346,-347,-348,-349,-350,-351,-352,-353,-354,-355,-356,-357,-358,-359,-360,-361,-362,-363,-364,-365,-366,-367, --368,-369,-370,-371,-372,-373,-374,-375,-376,-377,-378,-379,-380,-381,-382,-383, --384,-385,-386,-387,-388,-389,-390,-391,-392,-393,-394,-395,-396,-397,-398,-399,-400,-401,-402,-403,-404,-405,-406,-407, --408,-409,-410,-411,-412,-413,-414,-415,-416,-417,-418,-419,-420,-421,-422,-423,-424,-425,-426,-427,-428,-429,-430,-431, --432,-433,-434,-435,-436,-437,-438,-439,-440,-441,-442,-443,-444,-445,-446,-447, --448,-449,-450,-451,-452,-453,-454,-455,-456,-457,-458,-459,-460,-461,-462,-463,-464,-465,-466,-467,-468,-469,-470,-471, --472,-473,-474,-475,-476,-477,-478,-479,-480,-481,-482,-483,-484,-485,-486,-487,-488,-489,-490,-491,-492,-493,-494,-495, --496,-497,-498,-499,-500,-501,-502,-503,-504,-505,-506,-507,-508,-509,-510,-511, --512,-513,-514,-515,-516,-517,-518,-519,-520,-521,-522,-523,-524,-525,-526,-527,-528,-529,-530,-531,-532,-533,-534,-535, --536,-537,-538,-539,-540,-541,-542,-543,-544,-545,-546,-547,-548,-549,-550,-551,-552,-553,-554,-555,-556,-557,-558,-559, --560,-561,-562,-563,-564,-565,-566,-567,-568,-569,-570,-571,-572,-573,-574,-575, --576,-577,-578,-579,-580,-581,-582,-583,-584,-585,-586,-587,-588,-589,-590,-591,-592,-593,-594,-595,-596,-597,-598,-599, --600,-601,-602,-603,-604,-605,-606,-607,-608,-609,-610,-611,-612,-613,-614,-615,-616,-617,-618,-619,-620,-621,-622,-623, --624,-625,-626,-627,-628,-629,-630,-631,-632,-633,-634,-635,-636,-637,-638,-639, --640,-641,-642,-643,-644,-645,-646,-647,-648,-649,-650,-651,-652,-653,-654,-655,-656,-657,-658,-659,-660,-661,-662,-663, --664,-665,-666,-667,-668,-669,-670,-671,-672,-673,-674,-675,-676,-677,-678,-679,-680,-681,-682,-683,-684,-685,-686,-687, --688,-689,-690,-691,-692,-693,-694,-695,-696,-697,-698,-699,-700,-701,-702,-703, --704,-705,-706,-707,-708,-709,-710,-711,-712,-713,-714,-715,-716,-717,-718,-719,-720,-721,-722,-723,-724,-725,-726,-727, --728,-729,-730,-731,-732,-733,-734,-735,-736,-737,-738,-739,-740,-741,-742,-743,-744,-745,-746,-747,-748,-749,-750,-751, --752,-753,-754,-755,-756,-757,-758,-759,-760,-761,-762,-763,-764,-765,-766,-767, --768,-769,-770,-771,-772,-773,-774,-775,-776,-777,-778,-779,-780,-781,-782,-783,-784,-785,-786,-787,-788,-789,-790,-791, --792,-793,-794,-795,-796,-797,-798,-799,-800,-801,-802,-803,-804,-805,-806,-807,-808,-809,-810,-811,-812,-813,-814,-815, --816,-817,-818,-819,-820,-821,-822,-823,-824,-825,-826,-827,-828,-829,-830,-831, --832,-833,-834,-835,-836,-837,-838,-839,-840,-841,-842,-843,-844,-845,-846,-847,-848,-849,-850,-851,-852,-853,-854,-855, --856,-857,-858,-859,-860,-861,-862,-863,-864,-865,-866,-867,-868,-869,-870,-871,-872,-873,-874,-875,-876,-877,-878,-879, --880,-881,-882,-883,-884,-885,-886,-887,-888,-889,-890,-891,-892,-893,-894,-895, --896,-897,-898,-899,-900,-901,-902,-903,-904,-905,-906,-907,-908,-909,-910,-911,-912,-913,-914,-915,-916,-917,-918,-919, --920,-921,-922,-923,-924,-925,-926,-927,-928,-929,-930,-931,-932,-933,-934,-935,-936,-937,-938,-939,-940,-941,-942,-943, --944,-945,-946,-947,-948,-949,-950,-951,-952,-953,-954,-955,-956,-957,-958,-959, --960,-961,-962,-963,-964,-965,-966,-967,-968,-969,-970,-971,-972,-973,-974,-975,-976,-977,-978,-979,-980,-981,-982,-983, --984,-985,-986,-987,-988,-989,-990,-991,-992,-993,-994,-995,-996,-997,-998,-999,-1000,-1001,-1002,-1003,-1004,-1005, --1006,-1007,-1008,-1009,-1010,-1011,-1012,-1013,-1014,-1015,-1016,-1017,-1018,-1019,-1020,-1021,-1022,-1023, --1024,-1025,-1026,-1027,-1028,-1029,-1030,-1031,-1032,-1033,-1034,-1035,-1036,-1037,-1038,-1039,-1040,-1041,-1042,-1043, --1044,-1045,-1046,-1047,-1048,-1049,-1050,-1051,-1052,-1053,-1054,-1055,-1056,-1057,-1058,-1059,-1060,-1061,-1062,-1063, --1064,-1065,-1066,-1067,-1068,-1069,-1070,-1071,-1072,-1073,-1074,-1075,-1076,-1077,-1078,-1079,-1080,-1081,-1082,-1083, --1084,-1085,-1086,-1087, --1088,-1089,-1090,-1091,-1092,-1093,-1094,-1095,-1096,-1097,-1098,-1099,-1100,-1101,-1102,-1103,-1104,-1105,-1106,-1107, --1108,-1109,-1110,-1111,-1112,-1113,-1114,-1115,-1116,-1117,-1118,-1119,-1120,-1121,-1122,-1123,-1124,-1125,-1126,-1127, --1128,-1129,-1130,-1131,-1132,-1133,-1134,-1135,-1136,-1137,-1138,-1139,-1140,-1141,-1142,-1143,-1144,-1145,-1146,-1147, --1148,-1149,-1150,-1151, --1152,-1153,-1154,-1155,-1156,-1157,-1158,-1159,-1160,-1161,-1162,-1163,-1164,-1165,-1166,-1167,-1168,-1169,-1170,-1171, --1172,-1173,-1174,-1175,-1176,-1177,-1178,-1179,-1180,-1181,-1182,-1183,-1184,-1185,-1186,-1187,-1188,-1189,-1190,-1191, --1192,-1193,-1194,-1195,-1196,-1197,-1198,-1199,-1200,-1201,-1202,-1203,-1204,-1205,-1206,-1207,-1208,-1209,-1210,-1211, --1212,-1213,-1214,-1215, --1216,-1217,-1218,-1219,-1220,-1221,-1222,-1223,-1224,-1225,-1226,-1227,-1228,-1229,-1230,-1231,-1232,-1233,-1234,-1235, --1236,-1237,-1238,-1239,-1240,-1241,-1242,-1243,-1244,-1245,-1246,-1247,-1248,-1249,-1250,-1251,-1252,-1253,-1254,-1255, --1256,-1257,-1258,-1259,-1260,-1261,-1262,-1263,-1264,-1265,-1266,-1267,-1268,-1269,-1270,-1271,-1272,-1273,-1274,-1275, --1276,-1277,-1278,-1279, --1280,-1281,-1282,-1283,-1284,-1285,-1286,-1287,-1288,-1289,-1290,-1291,-1292,-1293,-1294,-1295,-1296,-1297,-1298,-1299, --1300,-1301,-1302,-1303,-1304,-1305,-1306,-1307,-1308,-1309,-1310,-1311,-1312,-1313,-1314,-1315,-1316,-1317,-1318,-1319, --1320,-1321,-1322,-1323,-1324,-1325,-1326,-1327,-1328,-1329,-1330,-1331,-1332,-1333,-1334,-1335,-1336,-1337,-1338,-1339, --1340,-1341,-1342,-1343, --1344,-1345,-1346,-1347,-1348,-1349,-1350,-1351,-1352,-1353,-1354,-1355,-1356,-1357,-1358,-1359,-1360,-1361,-1362,-1363, --1364,-1365,-1366,-1367,-1368,-1369,-1370,-1371,-1372,-1373,-1374,-1375,-1376,-1377,-1378,-1379,-1380,-1381,-1382,-1383, --1384,-1385,-1386,-1387,-1388,-1389,-1390,-1391,-1392,-1393,-1394,-1395,-1396,-1397,-1398,-1399,-1400,-1401,-1402,-1403, --1404,-1405,-1406,-1407, --1408,-1409,-1410,-1411,-1412,-1413,-1414,-1415,-1416,-1417,-1418,-1419,-1420,-1421,-1422,-1423,-1424,-1425,-1426,-1427, --1428,-1429,-1430,-1431,-1432,-1433,-1434,-1435,-1436,-1437,-1438,-1439,-1440,-1441,-1442,-1443,-1444,-1445,-1446,-1447, --1448,-1449,-1450,-1451,-1452,-1453,-1454,-1455,-1456,-1457,-1458,-1459,-1460,-1461,-1462,-1463,-1464,-1465,-1466,-1467, --1468,-1469,-1470,-1471, --1472,-1473,-1474,-1475,-1476,-1477,-1478,-1479,-1480,-1481,-1482,-1483,-1484,-1485,-1486,-1487,-1488,-1489,-1490,-1491, --1492,-1493,-1494,-1495,-1496,-1497,-1498,-1499,-1500,-1501,-1502,-1503,-1504,-1505,-1506,-1507,-1508,-1509,-1510,-1511, --1512,-1513,-1514,-1515,-1516,-1517,-1518,-1519,-1520,-1521,-1522,-1523,-1524,-1525,-1526,-1527,-1528,-1529,-1530,-1531, --1532,-1533,-1534,-1535, --1536,-1537,-1538,-1539,-1540,-1541,-1542,-1543,-1544,-1545,-1546,-1547,-1548,-1549,-1550,-1551,-1552,-1553,-1554,-1555, --1556,-1557,-1558,-1559,-1560,-1561,-1562,-1563,-1564,-1565,-1566,-1567,-1568,-1569,-1570,-1571,-1572,-1573,-1574,-1575, --1576,-1577,-1578,-1579,-1580,-1581,-1582,-1583,-1584,-1585,-1586,-1587,-1588,-1589,-1590,-1591,-1592,-1593,-1594,-1595, --1596,-1597,-1598,-1599, --1600,-1601,-1602,-1603,-1604,-1605,-1606,-1607,-1608,-1609,-1610,-1611,-1612,-1613,-1614,-1615,-1616,-1617,-1618,-1619, --1620,-1621,-1622,-1623,-1624,-1625,-1626,-1627,-1628,-1629,-1630,-1631,-1632,-1633,-1634,-1635,-1636,-1637,-1638,-1639, --1640,-1641,-1642,-1643,-1644,-1645,-1646,-1647,-1648,-1649,-1650,-1651,-1652,-1653,-1654,-1655,-1656,-1657,-1658,-1659, --1660,-1661,-1662,-1663, --1664,-1665,-1666,-1667,-1668,-1669,-1670,-1671,-1672,-1673,-1674,-1675,-1676,-1677,-1678,-1679,-1680,-1681,-1682,-1683, --1684,-1685,-1686,-1687,-1688,-1689,-1690,-1691,-1692,-1693,-1694,-1695,-1696,-1697,-1698,-1699,-1700,-1701,-1702,-1703, --1704,-1705,-1706,-1707,-1708,-1709,-1710,-1711,-1712,-1713,-1714,-1715,-1716,-1717,-1718,-1719,-1720,-1721,-1722,-1723, --1724,-1725,-1726,-1727, --1728,-1729,-1730,-1731,-1732,-1733,-1734,-1735,-1736,-1737,-1738,-1739,-1740,-1741,-1742,-1743,-1744,-1745,-1746,-1747, --1748,-1749,-1750,-1751,-1752,-1753,-1754,-1755,-1756,-1757,-1758,-1759,-1760,-1761,-1762,-1763,-1764,-1765,-1766,-1767, --1768,-1769,-1770,-1771,-1772,-1773,-1774,-1775,-1776,-1777,-1778,-1779,-1780,-1781,-1782,-1783,-1784,-1785,-1786,-1787, --1788,-1789,-1790,-1791, --1792,-1793,-1794,-1795,-1796,-1797,-1798,-1799,-1800,-1801,-1802,-1803,-1804,-1805,-1806,-1807,-1808,-1809,-1810,-1811, --1812,-1813,-1814,-1815,-1816,-1817,-1818,-1819,-1820,-1821,-1822,-1823,-1824,-1825,-1826,-1827,-1828,-1829,-1830,-1831, --1832,-1833,-1834,-1835,-1836,-1837,-1838,-1839,-1840,-1841,-1842,-1843,-1844,-1845,-1846,-1847,-1848,-1849,-1850,-1851, --1852,-1853,-1854,-1855, --1856,-1857,-1858,-1859,-1860,-1861,-1862,-1863,-1864,-1865,-1866,-1867,-1868,-1869,-1870,-1871,-1872,-1873,-1874,-1875, --1876,-1877,-1878,-1879,-1880,-1881,-1882,-1883,-1884,-1885,-1886,-1887,-1888,-1889,-1890,-1891,-1892,-1893,-1894,-1895, --1896,-1897,-1898,-1899,-1900,-1901,-1902,-1903,-1904,-1905,-1906,-1907,-1908,-1909,-1910,-1911,-1912,-1913,-1914,-1915, --1916,-1917,-1918,-1919, --1920,-1921,-1922,-1923,-1924,-1925,-1926,-1927,-1928,-1929,-1930,-1931,-1932,-1933,-1934,-1935,-1936,-1937,-1938,-1939, --1940,-1941,-1942,-1943,-1944,-1945,-1946,-1947,-1948,-1949,-1950,-1951,-1952,-1953,-1954,-1955,-1956,-1957,-1958,-1959, --1960,-1961,-1962,-1963,-1964,-1965,-1966,-1967,-1968,-1969,-1970,-1971,-1972,-1973,-1974,-1975,-1976,-1977,-1978,-1979, --1980,-1981,-1982,-1983, --1984,-1985,-1986,-1987,-1988,-1989,-1990,-1991,-1992,-1993,-1994,-1995,-1996,-1997,-1998,-1999,-2000,-2001,-2002,-2003, --2004,-2005,-2006,-2007,-2008,-2009,-2010,-2011,-2012,-2013,-2014,-2015,-2016,-2017,-2018,-2019,-2020,-2021,-2022,-2023, --2024,-2025,-2026,-2027,-2028,-2029,-2030,-2031,-2032,-2033,-2034,-2035,-2036,-2037,-2038,-2039,-2040,-2041,-2042,-2043, --2044,-2045,-2046,-2047, --2048,-2049,-2050,-2051,-2052,-2053,-2054,-2055,-2056,-2057,-2058,-2059,-2060,-2061,-2062,-2063,-2064,-2065,-2066,-2067, --2068,-2069,-2070,-2071,-2072,-2073,-2074,-2075,-2076,-2077,-2078,-2079,-2080,-2081,-2082,-2083,-2084,-2085,-2086,-2087, --2088,-2089,-2090,-2091,-2092,-2093,-2094,-2095,-2096,-2097,-2098,-2099,-2100,-2101,-2102,-2103,-2104,-2105,-2106,-2107, --2108,-2109,-2110,-2111, --2112,-2113,-2114,-2115,-2116,-2117,-2118,-2119,-2120,-2121,-2122,-2123,-2124,-2125,-2126,-2127,-2128,-2129,-2130,-2131, --2132,-2133,-2134,-2135,-2136,-2137,-2138,-2139,-2140,-2141,-2142,-2143,-2144,-2145,-2146,-2147,-2148,-2149,-2150,-2151, --2152,-2153,-2154,-2155,-2156,-2157,-2158,-2159,-2160,-2161,-2162,-2163,-2164,-2165,-2166,-2167,-2168,-2169,-2170,-2171, --2172,-2173,-2174,-2175, --2176,-2177,-2178,-2179,-2180,-2181,-2182,-2183,-2184,-2185,-2186,-2187,-2188,-2189,-2190,-2191,-2192,-2193,-2194,-2195, --2196,-2197,-2198,-2199,-2200,-2201,-2202,-2203,-2204,-2205,-2206,-2207,-2208,-2209,-2210,-2211,-2212,-2213,-2214,-2215, --2216,-2217,-2218,-2219,-2220,-2221,-2222,-2223,-2224,-2225,-2226,-2227,-2228,-2229,-2230,-2231,-2232,-2233,-2234,-2235, --2236,-2237,-2238,-2239, --2240,-2241,-2242,-2243,-2244,-2245,-2246,-2247,-2248,-2249,-2250,-2251,-2252,-2253,-2254,-2255,-2256,-2257,-2258,-2259, --2260,-2261,-2262,-2263,-2264,-2265,-2266,-2267,-2268,-2269,-2270,-2271,-2272,-2273,-2274,-2275,-2276,-2277,-2278,-2279, --2280,-2281,-2282,-2283,-2284,-2285,-2286,-2287,-2288,-2289,-2290,-2291,-2292,-2293,-2294,-2295,-2296,-2297,-2298,-2299, --2300,-2301,-2302,-2303, --2304,-2305,-2306,-2307,-2308,-2309,-2310,-2311,-2312,-2313,-2314,-2315,-2316,-2317,-2318,-2319,-2320,-2321,-2322,-2323, --2324,-2325,-2326,-2327,-2328,-2329,-2330,-2331,-2332,-2333,-2334,-2335,-2336,-2337,-2338,-2339,-2340,-2341,-2342,-2343, --2344,-2345,-2346,-2347,-2348,-2349,-2350,-2351,-2352,-2353,-2354,-2355,-2356,-2357,-2358,-2359,-2360,-2361,-2362,-2363, --2364,-2365,-2366,-2367, --2368,-2369,-2370,-2371,-2372,-2373,-2374,-2375,-2376,-2377,-2378,-2379,-2380,-2381,-2382,-2383,-2384,-2385,-2386,-2387, --2388,-2389,-2390,-2391,-2392,-2393,-2394,-2395,-2396,-2397,-2398,-2399,-2400,-2401,-2402,-2403,-2404,-2405,-2406,-2407, --2408,-2409,-2410,-2411,-2412,-2413,-2414,-2415,-2416,-2417,-2418,-2419,-2420,-2421,-2422,-2423,-2424,-2425,-2426,-2427, --2428,-2429,-2430,-2431, --2432,-2433,-2434,-2435,-2436,-2437,-2438,-2439,-2440,-2441,-2442,-2443,-2444,-2445,-2446,-2447,-2448,-2449,-2450,-2451, --2452,-2453,-2454,-2455,-2456,-2457,-2458,-2459,-2460,-2461,-2462,-2463,-2464,-2465,-2466,-2467,-2468,-2469,-2470,-2471, --2472,-2473,-2474,-2475,-2476,-2477,-2478,-2479,-2480,-2481,-2482,-2483,-2484,-2485,-2486,-2487,-2488,-2489,-2490,-2491, --2492,-2493,-2494,-2495, --2496,-2497,-2498,-2499,-2500,-2501,-2502,-2503,-2504,-2505,-2506,-2507,-2508,-2509,-2510,-2511,-2512,-2513,-2514,-2515, --2516,-2517,-2518,-2519,-2520,-2521,-2522,-2523,-2524,-2525,-2526,-2527,-2528,-2529,-2530,-2531,-2532,-2533,-2534,-2535, --2536,-2537,-2538,-2539,-2540,-2541,-2542,-2543,-2544,-2545,-2546,-2547,-2548,-2549,-2550,-2551,-2552,-2553,-2554,-2555, --2556,-2557,-2558,-2559, --2560,-2561,-2562,-2563,-2564,-2565,-2566,-2567,-2568,-2569,-2570,-2571,-2572,-2573,-2574,-2575,-2576,-2577,-2578,-2579, --2580,-2581,-2582,-2583,-2584,-2585,-2586,-2587,-2588,-2589,-2590,-2591,-2592,-2593,-2594,-2595,-2596,-2597,-2598,-2599, --2600,-2601,-2602,-2603,-2604,-2605,-2606,-2607,-2608,-2609,-2610,-2611,-2612,-2613,-2614,-2615,-2616,-2617,-2618,-2619, --2620,-2621,-2622,-2623, --2624,-2625,-2626,-2627,-2628,-2629,-2630,-2631,-2632,-2633,-2634,-2635,-2636,-2637,-2638,-2639,-2640,-2641,-2642,-2643, --2644,-2645,-2646,-2647,-2648,-2649,-2650,-2651,-2652,-2653,-2654,-2655,-2656,-2657,-2658,-2659,-2660,-2661,-2662,-2663, --2664,-2665,-2666,-2667,-2668,-2669,-2670,-2671,-2672,-2673,-2674,-2675,-2676,-2677,-2678,-2679,-2680,-2681,-2682,-2683, --2684,-2685,-2686,-2687, --2688,-2689,-2690,-2691,-2692,-2693,-2694,-2695,-2696,-2697,-2698,-2699,-2700,-2701,-2702,-2703,-2704,-2705,-2706,-2707, --2708,-2709,-2710,-2711,-2712,-2713,-2714,-2715,-2716,-2717,-2718,-2719,-2720,-2721,-2722,-2723,-2724,-2725,-2726,-2727, --2728,-2729,-2730,-2731,-2732,-2733,-2734,-2735,-2736,-2737,-2738,-2739,-2740,-2741,-2742,-2743,-2744,-2745,-2746,-2747, --2748,-2749,-2750,-2751, --2752,-2753,-2754,-2755,-2756,-2757,-2758,-2759,-2760,-2761,-2762,-2763,-2764,-2765,-2766,-2767,-2768,-2769,-2770,-2771, --2772,-2773,-2774,-2775,-2776,-2777,-2778,-2779,-2780,-2781,-2782,-2783,-2784,-2785,-2786,-2787,-2788,-2789,-2790,-2791, --2792,-2793,-2794,-2795,-2796,-2797,-2798,-2799,-2800,-2801,-2802,-2803,-2804,-2805,-2806,-2807,-2808,-2809,-2810,-2811, --2812,-2813,-2814,-2815, --2816,-2817,-2818,-2819,-2820,-2821,-2822,-2823,-2824,-2825,-2826,-2827,-2828,-2829,-2830,-2831,-2832,-2833,-2834,-2835, --2836,-2837,-2838,-2839,-2840,-2841,-2842,-2843,-2844,-2845,-2846,-2847,-2848,-2849,-2850,-2851,-2852,-2853,-2854,-2855, --2856,-2857,-2858,-2859,-2860,-2861,-2862,-2863,-2864,-2865,-2866,-2867,-2868,-2869,-2870,-2871,-2872,-2873,-2874,-2875, --2876,-2877,-2878,-2879, --2880,-2881,-2882,-2883,-2884,-2885,-2886,-2887,-2888,-2889,-2890,-2891,-2892,-2893,-2894,-2895,-2896,-2897,-2898,-2899, --2900,-2901,-2902,-2903,-2904,-2905,-2906,-2907,-2908,-2909,-2910,-2911,-2912,-2913,-2914,-2915,-2916,-2917,-2918,-2919, --2920,-2921,-2922,-2923,-2924,-2925,-2926,-2927,-2928,-2929,-2930,-2931,-2932,-2933,-2934,-2935,-2936,-2937,-2938,-2939, --2940,-2941,-2942,-2943, --2944,-2945,-2946,-2947,-2948,-2949,-2950,-2951,-2952,-2953,-2954,-2955,-2956,-2957,-2958,-2959,-2960,-2961,-2962,-2963, --2964,-2965,-2966,-2967,-2968,-2969,-2970,-2971,-2972,-2973,-2974,-2975,-2976,-2977,-2978,-2979,-2980,-2981,-2982,-2983, --2984,-2985,-2986,-2987,-2988,-2989,-2990,-2991,-2992,-2993,-2994,-2995,-2996,-2997,-2998,-2999,-3000,-3001,-3002,-3003, --3004,-3005,-3006,-3007, --3008,-3009,-3010,-3011,-3012,-3013,-3014], -[0,295,300,304,74,309,136,136,314,74,318,74,321,324,74,326,329,333,338,343,348,353,357,361,365,367,372,375,380,384,389, -393,398,402,407,409,412,416,418,422,425,429,432,436,17,441,444,447,451,453,458,462,467,470,474,477,480,483,486,489,492, -495,498,501, -504,507,510,513,516,519,522,525,528,531,534,537,540,543,546,550,553,556,559,562,565,569,572,576,579,103,32,103,587,591, -594,597,600,604,607,610,614,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,13,13,12,17, -12,12,26,17,13,12,12,12,12,12,12,13,13,13,61,17,12,12,17,12,17,13,624,628,633,637,641,62,17,647,652,657,662,13,666,670, -12,12,12,26,12,12,12,12,12,26,12,12,12,17,43,12,12,12,26,12,12,12,26,12,13,675,679,682, -686,690,693,696,698,700,704,707,712,716,721,726,730,12,12,12,12,734,12,12,12,12,26,13,12,12,12,12,12,12,12,12,17,12,737, -742,747,751,756,761,765,770,772,776,781,785,788,793,798,12,61,802,806,26,13,811,32,814,818,822,159,827,830,834, -838,842,845,848,851,854,858,863,866,870,874,879,883,886,891,894,898,902,906,910,915,918,921,924,929,933,937,940,944,32, -948,32,62,32,951,954,957,960,964,968,971,975,979,982,985,988,992,996,1001,1006,1011,1014,1018,1021,1024,1027,1031,1035, -1039,12,12,13,12,13, -17,12,12,52,12,12,43,12,17,12,12,12,12,12,12,52,12,26,26,12,12,12,1045,1049,1053,1057,1061,1066,1070,1075,1080,1085,1090, -1095,1100,1105,1110,1115,1119,1124,1128,1131,1134,1138,1143,1148,1153,1158,17,17,13,1163,1168,1171,12,12,12,12,12,12,12, -12,12,12, -12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,1173,1178,1181,1185,1190,1195,1200,1205,1210,1214,1218,1222,1225,1228, -1232,1235,1238,1242,1246,1250,1253,1257,1261,1264,1266,52,1270,1275,1279,1283,1288,1291,1294,1298,1301,1305,1308,1313, -1318,1323,1328,1333,1338,12,12,12,78, -13,17,26,12,13,12,12,78,17,1343,1347,1352,1356,43,1360,1363,1368,1372,1375,66,1381,1386,1391,53,1397,1401,1406,1410,1412, -1415,1419,1422,1426,1430,1434,1438,1441,1446,1450,79,1454,1459,1463,1468,1473,1476,1480,1484,1488,1492,53,1497,1502,1507, -1512,1515,46,1520,1525,1528,1533,1536,1541,1545, -1549,1553,1557,1560,1565,1570,1575,1579,1584,1589,1594,1598,1603,13,1608,1612,1616,1620,1624,1627,1630,1633,1637,1641, -1645,1650,1652,1657,1662,1667,1672,1675,1677,1679,1682,1685,1690,1693,1697,1699,1702,1705,1709,1712,1714,1717,1722,1726, -1730,1733,1736,1739,1742,1745,1748,1752,1755,1758,1762,1766,1769,1773,1778,30, -1784,176,1789,1793,1797,1802,1806,1809,1812,1817,179,1821,20,1827,18,46,18,1833,1837,1842,1845,1849,1853,1858,1863,1868, -1871,46,20,20,46,53,53,54,180,80,181,80,1879,1883,1887,1891,1894,1899,1903,1906,1910,1913,17,30,20,1918,1923,1928,1933, -20,1937,1942,1947,1952,1956,1961,1965,1968, -1973,1978,1982,80,1987,1990,1994,1999,2003,2008,2013,2018,2022,2027,2030,2035,2040,2043,2046,2049,82,2055,2059,18,2062, -2066,2071,2074,2078,2082,46,2086,2089,2093,2098,30,13,2103,2108,2113,2118,2121,2125,2129,2133,2138,2141,2144,2148,2152, -2157,2162,2165,2169,2173,2177,2180,2184,2188,2193,2198,2202,2206,2208, -2212,2216,2220,2225,2229,2234,2239,2242,2245,2250,2253,2257,2262,2266,2270,2275,2279,2284,2288,2292,2295,2299,2302,2307, -2312,2316,2321,2324,2327,2332,2336,2340,2344,2348,103,2352,2356,2360,2364,2368,2372,2376,2381,2384,2389,2394,2398,2401, -2406,2411,2414,2419,2424,2429,2434,2439,2442,2447,2451,2456,2461,2464,2468,2472, -2477,2482,13,2487,2491,2494,2498,2503,2508,2512,2516,2521,2526,2531,2536,2540,2544,2549,2554,2558,2563,2568,2572,2576, -2580,2584,2588,2592,2596,2600,2605,2610,2615,2619,2624,2628,82,2631,2634,2638,2641,2644,2648,2653,2656,2661,2664,2669, -2673,2677,69,2682,2686,2690,2695,2698,2702,2707,2712,2717,2722,2726,54,2730, -2733,20,2738,2742,20,2747,2750,2754,2757,2762,30,2765,2769,2773,2776,2780,2785,2790,2794,2797,2802,2807,2811,2815,2819, -2824,2829,2834,2838,2843,2848,2852,2857,2861,2865,2869,2874,2879,2884,2889,2894,2898,2903,2908,2911,2915,2920,2925,2929, -2933,2937,2941,2944,2948,2952,2957,2962,2967,47,2973,2976,2981,2986,2990, -2993,2997,26,3002,3007,3012,3015,3020,3025,3030,3035,3037,3041,3045,3049,3054,3059,3063,3066,3070,3074,3078,3082,3086, -3090,3095,3100,3105,3109,3113,3117,3121,52,3125,3129,3132,3136,3141,3145,3149,3154,3157,3161,3166,3170,3173,3176,3180, -3184,3188,3193,3197,3202,3206,3211,3216,3221,3226,3229,3234,3238,3243,3248,3253, -3256,3261,3266,3271,3276,3280,3284,3288,3292,3297,3301,3305,3310,3315,3319,3322,3327,3332,3337,3342,3346,3351,3356,3360, -3363,3367,3370,3375,3379,3382,3385,3389,3394,3399,3404,3409,3413,3417,54,3421,3426,3430,3434,13,3438,3442,3446,3451,3456, -3461,3466,3470,3475,3479,3484,3489,3493,3498,3502,79,79,3507,3510,3515, -3520,3524,3528,3532,3535,3540,3543,3548,3552,3557,3561,47,3565,3569,3573,3577,3581,3585,3588,3592,3597,3601,3604,3609, -3614,12,3619,3624,3629,3633,3637,3641,3644,3648,3652,3657,3660,3665,3670,3675,3679,3682,3686,3691,3696,3701,3705,3710, -3715,30,3719,3724,13,3729,3734,3738,3743,3747,3751,3755,47,3759,3763,3767, -3770,3775,3778,3783,3788,3793,3797,18,3801,3804,3807,3810,3814,3819,3823,3827,3832,43,3837,3841,3845,3849,3852,3856,3861, -3866,3871,3876,3881,66,3886,3890,66,20,3894,3897,3900,3903,3908,3912,3917,3922,3925,3930,3934,3937,3942,3946,3951,3954, -3959,3963,3967,3971,3975,3980,3983,3987,3991,3996,4000,4003,4008,4013, -4018,4023,4028,4033,4037,4041,4045,4050,4053,4057,4062,4066,4069,4074,4079,4084,4088,4093,4097,4102,4107,4112,4116,4121, -4125,4130,4135,4139,4143,4147,4151,4156,4160,4165,4168,4173,4177,4181,4185,4190,4194,4199,4204,4209,4214,4219,4224,4229, -4234,4237,4241,4245,4250,4255,4260,4265,4270,4275,4280,4285,4290,4295,4300,4304, -4309,4313,4318,4323,4328,4333,4338,4343,4348,4352,4357,4362,4367,4372,4376,4381,4385,4390,4394,4399,4404,4409,4413,4418, -4423,4428,4433,4438,4441,4446,4451,4455,4460,4465,4469,4474,4478,4483,4487,4491,4496,4501,4506,4511,4516,4521,4526,4530, -4534,4539,4544,4548,4553,4558,4562,4567,4572,4577,4582,4587,4591,4596,4600,47, -18,4605,18,4608,4612,4615,4620,4625,4630,4635,4640,4644,4649,4652,4656,30,4661,4665,4669,4673,4676,4679,4682,4687,4691, -4695,4697,180,18,4700,4703,4708,4712,4716,30,4720,4724,4728,4733,4737,4742,4746,4750,4755,4760,4765,4770,4775,4779,4783, -4787,4791,4796,4801,13,4806,4810,4814,4819,4824,4829,4833,4837,4840, -4845,4848,4852,4856,4859,4864,4868,4872,4877,4882,4886,43,4890,4895,4900,4904,4908,4912,4915,4919,4924,13,4929,4932,4937, -4942,4946,4949,26,4951,4956,4960,4963,4967,80,4972,4976,4980,4984,4988,4992,4996,5001,5005,5010,5015,5018,5022,5026,5030, -5034,5039,5042,5046,17,5050,17,5054,5058,5061,5065,5069,5074,5077, -5082,5086,5090,5095,5100,5104,5107,5111,5114,5119,5123,5126,5129,5133,5137,5142,5147,5151,5154,5158,5162,5166,5170,5175, -5178,5181,5186,5191,5196,5199,5202,5206,5210,5215,5219,5224,5229,5233,5238,5243,5247,5251,5255,5259,5263,5267,5271,5276, -5279,5282,5287,5292,5295,5299,5302,5306,5310,5315,5320,5324,5328,5333,5337,5341, -5346,5351,5356,5359,5363,5368,5372,5377,5382,5386,5391,5395,5400,5405,5409,5414,5418,5423,5426,5431,5435,5439,5442,5445, -5450,5454,5459,5464,5468,5472,5477,5482,5487,5491,5496,5501,5506,5511,5516,46,20,54,5521,5526,20,5530,5534,5538,5542, -5546,5551,5555,5559,5564,5568,5572,5576,5581,5585,5589,5594,5598,5601,5606, -5611,5615,5619,5624,5629,5633,5638,5643,5646,5651,5656,5659,5664,5667,5670,5673,5676,5679,5682,5685,5688,5691,5694,5697, -5700,5703,5706,5709,5712,5715,5718,5721,5724,5727,5730,5734,5737,5740,5745,5750,5755,5760,5764,5768,5773,5777,5782,5786, -18,5790,5795,5800,5805,5810,5815,5820,5824,5827,5832,5837,20,5841,5844,5848, -5852,5857,5861,5864,5867,5872,5876,5880,5884,5889,5894,5898,5902,5905,5908,18,5913,5917,5921,5926,5931,13,5935,5939,5944, -5948,5952,5957,5961,5964,5966,5970,5974,5977,5982,5985,5989,5993,5998,6002,6007,6011,6015,6018,6023,6028,6032,69,20,6036, -6041,6045,6049,6053,6058,6063,6068,6073,6076,6080,6085,6089,6092,6096, -6100,6104,6109,6113,6118,6123,6127,6132,6137,6142,6146,6150,6155,47,6160,20,6162,6167,6170,6175,82,6180,6185,6189,6194, -6199,6203,6207,6211,6216,6221,53,6225,6228,6232,6237,26,6240,6245,6250,6255,6260,6264,6268,6273,6278,6282,6287,6292,6297, -6300,6303,6307,6312,6315,6320,82,6325,6330,6334,6338,6343,6347,6352, -6355,6360,6365,6369,6374,6379,6384,6389,6394,6399,6404,6409,6411,6416,6421,6425,6430,6435,6439,6443,6447,6451,6456,6461, -6466,6470,6475,6478,6483,6487,6491,6494,6498,6501,61,6504,6509,6514,6519,6523,6526,6531,6535,6540,6544,6548,6552,6556, -6561,6566,6571,6575,6578,6583,6588,6592,6597,6600,6604,6607,6611,6616,6621,6626, -6628,6632,6636,6640,6644,6648,6653,18,6658,6662,6666,18,6671,6676,6679,6684,6689,6694,6699,6701,6705,6708,6712,6717,6722, -6727,6732,6737,6740,6744,20,6748,6751,6756,6761,6765,6770,6774,6779,6784,6789,6794,6798,6802,6806,6811,6815,6820,6824, -6827,6832,6837,6841,6844,6848,6851,6855,6858,6861,6864,6868,6871,6875,6880, -6885,6888,6893,6898,6902,6906,6911,6913,6916,240,6921,6925,6930,18,6934,6939,6944,6947,6950,6953,6958,6963,6967,6971, -6975,6979,6984,78,6987,6991,18,6995,6999,7004,7008,7013,7018,7022,7027,7030,7035,7039,7043,7047,7051,7054,7057,7061,7065, -7070,7074,7079,7083,7088,7092,7097,7100,7103,7107,7112,7116,7119,7123,7128, -243,7132,7134,7136,243,7139,7142,7146,7150,7154,7157,7160,7164,7169,7171,7175,7179,7184,7188,7193,7198,7202,52,7205,7210, -7214,7219,7223,7227,7230,7235,7239,7243,7247,7252,7257,7261,7266,7268,7272,7276,7280,7284,7288,7292,7295,244,7304,7308, -7312,7317,7322,7327,7331,7336,7341,7344,7348,7352,7356,7360,7364,7367,7370, -7375,7380,7384,7388,7391,7396,7401,7406,7411,7416,7420,7424,7428,7431,7434,7439,7443,7446,7450,7455,7460,12,7465,7467, -7470,7474,7479,7482,7486,7491,7496,7501,7505,7509,7513,7517,7520,7525,7529,7534,7538,7543,13,7548,7552,7556,7558,7561, -7566,7571,7576,7579,7583,7588,7592,7596,7600,247,7606,7611,7615,7619,7623,7626, -7631,7636,7641,7646,7650,7654,7658,7663,7667,7672,7677,7682,7686,7690,7694,7699,7703,249,7707,250,7713,7717,7721,7724, -7728,7732,7737,7741,7746,7751,7756,7761,7765,7769,7773,7776,7780,7785,7790,7795,7799,7804,7809,7813,7818,7823,7827,7831, -7836,7841,7846,7850,7855,7860,7865,7870,7873,7878,7883,7888,17,7893,7896,17, -7900,7904,7908,7913,7916,7920,7925,7930,7933,7937,7941,7944,7949,7953,7958,7963,7967,7972,7976,7981,7985,7990,7994,7999, -8003,8007,8011,8015,8020,8025,8030,8035,8040,8045,8050,8053,8057,8061,8066,8071,8075,8078,61,8082,8085,8090,181,47,8095, -8100,8105,8109,255,8115,247,8118,8123,18,8127,8132,8136,8139,8144,8149, -8153,8158,8161,8165,8170,8174,8179,8183,8187,8192,8197,8201,13,8204,8209,8214,8217,8221,8226,8230,250,8235,8240,8245, -8249,18,8254,18,8258,8263,244,8268,240,20,8272,8277,8281,8286,8289,8293,8296,20,8301,8304,8309,30,8313,8317,256,47,8322, -8326,8331,8335,8339,8344,8347,8350,8354,8358,8361,20,18,8366, -8370,30,257,8374,8377,8382,8387,8392,8397,8401,8404,8409,46,8414,8419,8424,18,8428,8433,8438,8441,8443,8447,8451,8455, -8458,8462,8467,8471,8476,8480,8483,8487,8491,8496,8501,8504,8509,8514,8519,8524,8528,8533,8538,8542,8547,8552,8556,30, -8561,20,8564,8569,8573,8578,257,54,8583,18,8587,8592,8597,8601,8606, -8611,8616,8621,8626,8629,54,8634,8639,8642,8647,8650,255,8653,8658,8662,8665,8669,8674,8677,8682,8686,8691,8695,8699, -8703,8707,8712,8715,8720,8724,8728,8733,249,8738,8743,8748,8753,8758,8763,8768,8772,8776,8780,8784,176,8789,8792,8795, -8799,8804,8808,8811,8815,8818,8822,8825,8828,8833,8837,8841,8844,8849,18,69, -8854,8859,53,8862,8865,8870,8875,8878,8883,8888,8893,8898,8903,8908,8911,8916,8920,8925,8929,8934,8937,8942,8946,8950, -8954,8958,8963,8967,8971,8976,8981,8986,8989,8994,8998,9002,9007,9010,9013,9018,9023,9026,9030,9034,9038,9043,9048,9053, -9058,9062,9067,9072,9076,9080,9083,9087,9091,9095,9100,9104,9109,9113,9118,30, -9121,9125,9130,9133,9138,9142,9146,9151,43,9156,9161,9166,9170,9174,9176,9180,9185,9189,9194,9198,9202,9207,9211,9215, -9219,9223,66,9226,9230,9235,9240,9245,9250,9253,9258,9262,9267,9272,9277,9282,9286,9291,9293,9297,9300,9304,9308,9312, -9316,9321,9325,9329,9333,9337,9341,9344,9348,9352,9356,9360,9365,9369,9374,69, -66,256,9379,179,69,9383,9387,9392,9397,9402,9406,9411,9415,9420,9424,9428,9432,9437,9442,9447,9451,9454,9458,9461,9465, -9470,9475,9480,9485,9488,9491,79,9496,17,9501,9505,9509,9514,9519,9524,9529,9534,9537,9540,9544,9547,9552,9556,9561,9566, -9570,9573,9577,9581,9586,9590,52,9594,9598,9601,9606,9610,9614,9617, -9622,9626,9630,9635,9639,9642,9647,9652,9655,9660,9664,9667,9671,9676,9681,9686,9690,9694,9698,9703,9706,9711,9714,9718, -9722,9726,9730,9735,9739,9742,9747,9751,9756,9761,9765,9770,9774,9779,9784,32,32,32,62,32,265,265,9791,9794,9798,9802, -9806,62,62,32,9811,13,17,13,26,9815,13,61,9818,9823, -9827,9831,9836,9840,9843,9848,9852,9857,9862,9865,9869,9873,9877,9882,9887,9891,9895,9899,9904,9909,9914,9919,9923,9928, -9933,9938,9942,9945,9948,9952,9956,9960,9963,9967,9970,9973,9977,9980,159,9983,9986,9991,9996,10000,10005,10010,10013, -10016,10020,267,10025,10028,10032,10037,10041,10046,10050,10054,10059,10064,10068,10073,10078,10082, -10086,10090,10094,10098,10101,10103,10108,10112,10117,43,10121,10126,10131,10136,10139,96,10144,10147,10149,270,10152, -10154,10159,10162,10166,10169,10172,10175,10178,10181,10184,10188,10191,10195,10198,10202,10206,10209,10213,10215,10218, -10222,10226,10229,10234,10238,10242,10247,10251,10254,10257,10260,10264,10266,10270,10273,10277,10281,10285,10290,10295, -10299,10303,10307, -10311,10315,10319,10321,10324,10328,10333,10338,10342,10347,10351,10354,10359,10362,10366,10369,10372,10377,10380,10385, -10389,10393,10396,10399,10402,10405,10409,10414,10418,10423,10428,10433,10438,10443,10446,10449,10453,10458,10462,10465, -10469,10473,10478,10483,10487,10492,10496,10500,10503,10507,10511,10516,10521,10526,10531,10536,10540,10543,10546,10549, -10553,10558,10563,10567, -10571,10574,10578,10583,10588,10591,10595,10599,10602,10605,100,279,270,10610,10615,10620,10625,267,10629,10633,10636, -10641,10645,10648,10653,10657,281,10661,10666,10670,96,10675,282,282,100,10678,10682,100,10686,283,10693,10698,10703, -10707,10711,10714,10716,279,10719,284,284,10723,96,10726,10729,10733,10738,10740,10744,10749,10753,10757,10761,10765, -10770,10773,10778,10782,10787,10791,10794,10798,10801,10804,10809,10813,10818,10822,10827,10831,10835,10837,10842,10845, -10849,10851,10856,290,10859,10862,10866,10870,10874,10879,10883,10888,10892,10895,10898,10901,10906,10910,10914,10917, -10921,10925,10929,10933,10938,283,10942,10945,10950,10954,10958,10962,10967,10969,10974,10977,10982,10987,10992,10996, -290,11000,11003,11007, -11010,11012,11017,11019,11023,11028,11033,11037,11042,11046,11050,11053,11058,11061,11065,11068,11071,11076,11081,11086, -11090,11095,11099,11104,11108,11113,11118,11123,11128,11132,11136,96,100,11141,11146,11150,11154,11159,11163,11166,11170, -11173,11177,11181,11185,11188,11191,11194,11196,11199,11204,11209,281,11213,11217,78,11221,11224,11229,11233,292,11237, -11240,11244, -11248,11251,11254,292,11259,11262,11265], -[1,3,296], -[0,297,298,299,10], -[0,-809,-2387,-3019,-682,-1967,-3020,-567,-3021,-3022,-1552,-2055,-3023,-1311,-2030,-2113,-3024], -[0,-705,-888,-1616,-664,-1107,-1521,-2162,-2466,-668,-1344,-3025,-1471,-1654,-2006,-2074,-2210,-2550,-915,-932,-1548, --1666,-2093,-2177,-2388,-2439,-674,-795,-928,-1889,-2379,-2501,-522,-679,-923,-1077,-1376,-1646,-1783,-1942,-3026,-2378, --3027,-3028,-1003,-3029,-1978,-3030,-2016,-2019,-3031,-2281,-2376,-3032,-527,-778,-3033,-3034,-2410,-23,-3035,-3036, --3037,-1482, --1534,-1600,-3038,-2040,-3039,-3040,-3041,-518,-528,-534,-1543,-1588,-1890,-1938,-2043,-2275,-2516,-305,-3042,-3043, --3044,-1492,-3045,-3046,-556,-1906,-1908,-3047,-2285,-86,-3048,-3049,-3050,-2015,-3051,-263,-3052,-3053,-558,-3054,-3055, --1962,-2044,-3056,-3057,-3058,-3059,-3060,-3061,-3062,-560,-1601,-2505,-3063,-3064,-969,-977,-1491,-2052,-3065,-3066, --440,-3067,-562, --3068,-958,-3069,-3070,-539,-3071,-1475,-739,-3072,-940,-962,-963,-1490,-3073,-3074,-3075,-916,-2013,-2017,-3076,-3077, --3078,-3079,-1899,-3080,-428,-1897,-3081,-3082,-1017,-3083,-3084,-3085,-3086,-3087,-555,-535,-3088,-3089,-427,-661,-3090, --3091,-26,-547,-741,-3092], -[0,-3093,-3094,-2634,-3095,-3096,-2006,-3097,-3098,-3099,-3100], -[1,3,301], -[0,302,0,303,11], -[0,-469,-2153,-1864,-2231,-470,-1461], -[0,-3101,-3102,-475,-3103,-3104,-3105], -[1,3,305], -[0,306,0,307,9], -[0,-1816,-2153,-1461,-1588,-2], -[0,-3101,-3102,-475,-3106,-3107,-3104,-3108,-3109,-3105,-3110,-3111], -[0,33,0,7,5], -[1,3,310], -[0,311,0,312,4], -[0,-2387,-1839], -[0,-475,-3112,-3095,-3113,-3114], -[0,33,0,7,4], -[1,3,315], -[0,316,37,317,4], -[0,-2387,-2550,-2177,-679,-23,-2080,-742,-3115], -[0,-475,-3116], -[1,3,319], -[0,320,0,7,11], -[0,-2387,-3117], -[1,3,322], -[0,33,0,323,9], -[0,-475,-3118,-3119,-3098], -[1,3,325], -[0,33,0,7,6], -[1,3,327], -[0,328,0,7,4], -[0,-3120,-2387], -[1,3,330], -[0,33,331,332,10], -[0,-3121], -[0,-475,-3122], -[1,3,334], -[0,335,336,337,5], -[0,-809,-2004,-682,-567,-3123,-3124,-3125,-3126,-3127,-3128,-2639,-3129,-3130,-3131,-3132], -[0,-485,-1107,-1415,-2006,-932,-2388,-3133,-2375,-1662,-767,-3134,-2019,-533,-3135,-1939,-2028,-2410,-23,-3136,-1534, --3137,-3040,-528,-726,-2034,-44,-3138,-3139,-3140,-3141,-3142,-3143,-3144,-2052,-3145,-3146,-3147,-3148,-3149,-2013, --3150,-3151,-428,-408,-3152,-3153,-3154,-3155,-3156,-3157], -[0,-3158,-3099,-2006,-3159,-3095,-3098,-3160,-3161,-3100,-3162,-3163], -[1,3,339], -[0,340,341,342,4], -[0,-1549], -[0,-485,-2006,-1031,-2019,-2410,-3040,-3164,-3052], -[0,-3158,-3099,-2494,-485,-3095,-3098,-3161,-3100,-2006,-3159,-3160], -[1,3,344], -[0,345,346,347,5], -[0,-682,-3165,-3166], -[0,-485,-1107,-2006,-1031,-2019,-2410,-3040,-3052], -[0,-3158,-3099,-2494,-485,-3095,-3098,-3161,-3100,-2006,-3159,-3160,-3167], -[1,3,349], -[0,350,351,352,4], -[0,-3168,-3169], -[0,-2387,-2299,-2402,-2300,-364,-3170,-3171,-2405,-3172,-365], -[0,-3173,-3174,-3175,-3176,-1791,-3177,-3178,-2299], -[1,3,354], -[0,355,356,137,4], -[0,-1107,-2218,-1591,-719,-742,-3179,-3180], -[0,-2177,-23,-3036,-3181,-3182], -[1,3,358], -[0,359,360,7,4], -[0,-3187,-1863,-3188], -[0,-3189,-2269,-3190], -[1,3,362], -[0,363,364,138,4], -[0,-812,-1460,-2177,-3191,-47,-25,-3192,-3193,-46,-3194,-22,-742,-3195,-3196,-3197], -[0,-2392,-2125,-2379,-3198,-3199,-3200,-40,-42,-3201,-3180,-3202,-3203,-3204,-3182], -[1,3,366], -[0,0,101,7,5], -[1,3,368], -[0,369,370,371,5], -[0,-47], -[0,-3189,-22,-3211,-3212,-3188,-3213], -[0,-525,-3214,-3215,-3216,-3217,-25], -[1,3,373], -[0,374,51,21,4], -[0,-3218,-24], -[1,3,376], -[0,377,378,379,5], -[0,-3221,-812,-1496,-3222,-2177,-1442,-2223,-679,-3223,-1044,-3224,-1646,-1783,-1936,-3225,-1864,-2654,-1125,-1600,-3226, --3227,-3228,-3229,-3230,-3231,-3232,-3233,-3234,-3235,-3236,-3237,-3238,-3239], -[0,-652,-519,-2392,-2476,-2564,-2162,-2006,-932,-1610,-3240,-2125,-1110,-1942,-2019,-190,-2410,-3241,-3037,-3242,-3243, --3244,-3245,-3246,-3247,-1603,-3248,-3249,-3250,-3251,-940,-3252,-3253,-3254], -[0,-3255,-3256,-3257,-856,-3258,-3259,-3260,-3261,-3262,-3161,-898,-3263,-3264,-1599,-3265,-1783], -[1,3,381], -[0,0,382,383,4], -[0,-2832,-2581,-350,-351,-3266,-3267,-3268,-3269,-3136,-3037,-589,-651,-1415,-2127,-2132,-2375,-2387,-2410], -[0,-775,-3215,-3270,-3271,-3272,-2410,-3273,-3274,-3275,-1644,-3276,-3277], -[1,3,385], -[0,386,387,388,4], -[0,-3278,-3279,-3280,-3281,-3282,-3283,-3284,-3285,-3286,-3287,-3288,-3289,-3290,-3291,-3292,-3293,-3294,-3295,-3296, --1537,-3297], -[0,-3298,-3299,-3300,-3301,-3302,-3303,-3304,-3305,-3306,-86,-3307,-3308,-3309,-3310,-3311,-3312,-932,-940,-1344,-1534, --2210,-2410,-3313], -[0,-3314,-488,-856,-3315], -[1,3,390], -[0,391,0,392,9], -[0,-3316,-3317,-3318,-3319,-1123,-3320,-2387], -[0,-3321,-1122,-2006,-3322,-3323,-3324], -[1,3,394], -[0,395,396,397,6], -[0,-2006,-2127,-1967,-23,-3325,-40,-2234,-41,-3326,-3327], -[0,-1415,-932,-2375,-767,-2410,-3136,-3040,-1448,-969,-973,-972], -[0,-3328,-856,-3262,-2006,-3105,-3110], -[1,3,399], -[0,400,401,7,10], -[0,-2177,-983,-3329], -[0,-815,-932,-23,-3330,-426,-2411,-3211,-3331], -[1,3,403], -[0,404,405,406,5], -[0,-24,-3332,-3218], -[0,-23,-46,-3333,-3334,-3219,-3335], -[0,-525,-3220,-3336], -[1,3,408], -[0,139,51,21,10], -[1,3,410], -[0,411,51,21,11], -[0,-24,-3337], -[1,3,413], -[0,414,415,21,4], -[0,-3338,-3197,-24,-3339,-3340], -[0,-23,-3219,-25], -[1,3,417], -[0,139,101,21,5], -[1,3,419], -[0,420,421,21,10], -[0,-2177,-24,-3341,-3342,-3343,-3344], -[0,-1591,-23,-3192,-44,-40,-3345,-3343,-3219], -[1,3,423], -[0,140,424,7,8], -[0,-633,-647,-3346,-2416], -[1,3,426], -[0,427,428,7,4], -[0,-2177,-3347,-3338,-3348,-24,-3342,-3343,-3349,-3350,-3351,-3352,-3353,-3197,-3344,-3354,-3340,-3355,-3356,-3357,-3358, --3359,-3360,-3361,-3362,-3363,-3364,-3365,-3366,-3367,-3368,-3369,-3370,-3371,-3372,-3373,-3374,-3375,-3376,-3204,-3377, --3378,-3379,-3380,-3381,-3382,-3383,-3384,-3385,-3386,-3387,-3388,-3389,-3390,-3391,-3392,-3393,-3394,-3395,-3396,-3397, --3398,-3399,-3400, --3401,-3402,-3403,-3404,-3405,-3406,-3407], -[0,-23,-46,-3219], -[1,3,430], -[0,431,51,7,4], -[0,-24,-3349,-3408,-3409,-3410,-3411], -[1,3,433], -[0,434,51,435,8], -[0,-3077,-24,-3349,-3412,-3204], -[0,-3413,-2410], -[1,3,437], -[0,438,439,7,4], -[0,-3414,-1591,-3415,-1046,-2234], -[0,-633,-23,-3373,-3204], -[0,0,0,7,5], -[1,3,442], -[0,443,0,7,5], -[0,-753], -[1,3,445], -[0,446,51,7,4], -[0,-812,-47,-25,-3193,-3194,-22,-3416], -[1,3,448], -[0,449,450,7,6], -[0,-3212,-3188], -[0,-25,-3194,-3211], -[1,3,452], -[0,141,142,143,8], -[1,3,454], -[0,455,456,457,4], -[0,-3442,-1116,-1666,-1969,-2522], -[0,-756,-932,-940,-943,-958,-966,-967,-968,-974,-2250], -[0,-2520,-2905,-3443,-3444,-3445], -[1,3,459], -[0,460,461,7,4], -[0,-3446,-2177,-680,-3447,-910,-1077,-3448,-1863,-479,-3449,-2115,-3450,-3451,-3452,-3453,-3454,-3455,-3456,-3457,-3458, --3459,-3460,-3461,-3462,-3463,-3464,-3465,-3466], -[0,-1821,-3467,-2269,-3199], -[1,3,463], -[0,464,465,466,4], -[0,-3468,-3469,-195,-196,-197,-682,-1967], -[0,-21,-23,-26,-40,-41,-86,-3307,-3326,-350,-351,-3470,-3471,-3472,-427,-428,-528,-553,-3473,-932,-962,-969,-970,-1344, --1534,-1942,-2006,-2019,-2127,-3474,-2140,-2174,-2410], -[0,-3475,-2006,-3476,-3160,-3477,-3098,-3478,-3479,-3480,-3481,-3482,-3100,-3483,-3484,-3485,-3486,-3487], -[1,3,468], -[0,469,0,19,4], -[0,-681,-66,-82], -[1,3,471], -[0,472,0,473,6], -[0,-3493,-2387], -[0,-3494,-3495,-3496,-3264,-3497,-3498,-475,-3499,-3500,-3501,-3095,-3488,-681,-3489], -[1,3,475], -[0,476,0,19,5], -[0,-681,-66,-83,-68,-80,-70], -[1,3,478], -[0,479,0,19,5], -[0,-681,-81,-66,-3502,-83,-68,-80], -[1,3,481], -[0,482,0,19,4], -[0,-681,-81,-66,-3503,-3502,-83,-80], -[1,3,484], -[0,485,0,144,5], -[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3504,-52,-77], -[1,3,487], -[0,488,0,144,4], -[0,-81,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3504,-52,-77], -[1,3,490], -[0,491,0,102,4], -[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3511,-52,-77], -[1,3,493], -[0,494,0,102,8], -[0,-3512,-73,-74,-62,-71,-79,-72,-80,-70,-63,-3513,-76,-54,-67,-69,-56,-75,-55,-65,-52,-3514,-77], -[1,3,496], -[0,497,0,102,8], -[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-3515,-65,-52,-77], -[1,3,499], -[0,500,0,19,6], -[0,-3516,-681,-3517,-81,-66,-3502,-71,-83,-68,-82,-65], -[1,3,502], -[0,503,0,19,4], -[0,-681,-81,-66,-3502,-71,-83], -[1,3,505], -[0,506,0,19,8], -[0,-3517,-81,-66,-83,-68,-85], -[1,3,508], -[0,509,0,59,6], -[0,-681,-66,-83], -[1,3,511], -[0,512,0,145,11], -[0,-3517,-81,-83,-68,-3519], -[1,3,514], -[0,515,0,19,8], -[0,-681,-66,-83,-82,-65], -[1,3,517], -[0,518,0,145,10], -[0,-3517,-83], -[1,3,520], -[0,521,0,19,4], -[0,-681,-81,-66,-3520,-3503,-80,-64,-3521], -[1,3,523], -[0,524,0,19,10], -[0,-681,-81,-66,-3502,-83,-68,-76], -[1,3,526], -[0,527,0,19,5], -[0,-681,-3517,-81,-66,-3520,-3502,-83,-68,-80,-82,-85,-64], -[1,3,529], -[0,530,0,19,8], -[0,-681,-81,-66,-74,-3502,-83,-68,-70], -[1,3,532], -[0,533,0,19,11], -[0,-681,-3517,-81,-66,-3502,-71,-83,-68,-80,-85,-64], -[1,3,535], -[0,536,0,19,4], -[0,-681,-81,-66,-3512,-3503,-3502,-83,-68,-80,-64], -[1,3,538], -[0,539,0,19,4], -[0,-681,-81,-66,-3520,-3502,-83,-68,-80,-85,-64], -[1,3,541], -[0,542,0,19,4], -[0,-81,-66,-3502,-83,-68], -[1,3,544], -[0,545,0,19,6], -[0,-681,-66,-68,-64], -[1,3,547], -[0,548,0,549,8], -[0,-3493], -[0,-3494,-3495,-3496,-3264,-3497,-3498,-2006,-3159,-3488,-681,-3489], -[1,3,551], -[0,552,0,19,6], -[0,-681,-3517,-81,-66,-3502,-83,-68,-85,-64], -[1,3,554], -[0,555,0,19,11], -[0,-3517,-66,-83,-68], -[1,3,557], -[0,558,0,59,11], -[0,-3517,-3522,-3523,-3524,-3525,-66,-3502,-83,-68,-3526], -[1,3,560], -[0,561,0,59,11], -[0,-66,-83], -[1,3,563], -[0,564,0,59,4], -[0,-3517,-81], -[1,3,566], -[0,567,0,568,4], -[0,-3493,-1549], -[0,-3494,-3495,-3496,-3264,-3497,-3498,-2476,-3527,-3528,-3529,-3488,-681,-3489], -[1,3,570], -[0,571,0,59,4], -[0,-3517,-81,-66,-3503,-3502,-83,-68,-80], -[1,3,573], -[0,574,575,146,5], -[0,-3530,-3531,-3532,-3533,-3534,-3535,-2550], -[0,-3536,-3537,-3149,-3037,-3041,-1077,-3125], -[1,3,577], -[0,578,0,147,5], -[0,-3,-23,-3374,-40,-3538,-3539,-3540,-617,-3541,-674,-679,-714,-719,-755,-3542,-927,-1022,-1026,-1077,-1107,-1276,-1320, --1349,-1460,-1548,-1577,-3543,-3544,-1610,-1646,-3545,-3546,-3547,-1863,-3548,-1955,-2177,-2213,-3433,-3549,-2378,-2446, --3550], -[1,3,580], -[0,581,0,582,4], -[0,-3553,-1361], -[0,-3554,-3555,-3161,-997,-3556], -[0,25,584], -1732406400000, -[0,25,586], -1733011200000, -[1,3,588], -[0,589,590,148,9], -[0,-1320], -[0,-21,-23,-40,-3558,-3559,-3560,-2997,-3326,-350,-351,-3561,-3562,-518,-620,-3563,-3564,-699,-767,-932,-945,-957,-958, --978,-3565,-1110,-1111,-3566,-1320,-3567,-1389,-1412,-1437,-1471,-1473,-1475,-3568,-1477,-1479,-1481,-3569,-1486,-1547, --1753,-1771,-1889,-1891,-3570,-2125,-2127,-3571,-3572,-3031,-2195,-2281,-3573,-2334,-3574], -[1,3,592], -[0,0,0,593,4], -[0,-775,-3215], -[1,3,595], -[0,0,0,596,6], -[0,-775,-3579], -[1,3,598], -[0,0,0,599,4], -[0,-775,-3580,-3215], -[1,3,601], -[0,602,0,603,4], -[0,-98,-1931], -[0,-775,-1391,-3581,-3582,-1889,-3583,-3584,-3585], -[1,3,605], -[0,60,0,606,9], -[0,-775,-3586,-3587,-1889,-3583,-3588,-3589,-3590,-3591,-3592], -[1,3,608], -[0,0,0,609,4], -[0,-775,-1931,-3593], -[1,3,611], -[0,612,613,149,5], -[0,-3594,-3595,-3596,-3419,-3597,-3598,-3599,-3600,-3601,-3602,-3603,-3604,-3605,-668,-695,-719,-812,-3606,-1040,-1107, --3607,-1366,-1394,-1399,-3608,-1566,-3125,-3222,-1640,-1650,-1693,-1959,-3609,-2177,-3610,-2297,-2400,-3611,-2548,-3612], -[0,-3613,-3614,-3615,-3244,-190,-262,-357,-3035,-3198,-3616,-3617,-3048,-3618,-3619,-3149,-3620,-3621,-3622,-3623,-3037, --3624,-3199,-3625,-3626,-3627,-3628,-427,-428,-664,-3629,-711,-3630,-838,-932,-958,-965,-978,-1004,-1077,-3631,-1654, --1689,-1788,-1942,-3632,-2200,-2210,-2211,-3633,-2359,-2379,-2384,-2402,-2410], -[1,3,615], -[0,616,617,618,4], -[0,-653,-668,-685,-695,-1077,-2375], -[0,-86,-3307,-3048,-3049,-3136,-3637,-3638,-3639,-427,-428,-481,-693,-910,-932,-940,-967,-1344,-1415,-3640,-1637,-1658, --1847,-1942,-3641,-3642,-2410], -[0,-3643,-856], -[0,25,620], -1730419200000, -[0,0,0,7,4], -[0,0,0,7,6], -[0,0,0,7,11], -[1,3,625], -[0,626,627,104,8], -[0,-3644,-3645,-3646,-3647,-668,-674,-775,-2858,-3648,-3649,-1442,-1548,-1600,-3425,-3650,-3651,-1608,-3652,-3653,-2161, --2223,-2303,-3654], -[0,-3655,-3656,-3657,-3658,-3659,-3660,-3044,-3661,-3662,-3037,-3663,-3664,-3665,-518,-928,-3666,-1304,-3667,-3668,-1771, --1889,-1927,-2162,-3669,-2410,-2469], -[1,3,629], -[0,630,631,632,9], -[0,-2387,-2426,-3675,-3676,-3677,-3678,-3679,-3680,-3681], -[0,-2391,-3682,-932,-2469,-1942,-767,-2410,-3037,-3683,-3684,-3664,-3685,-3686,-3687,-3688], -[0,-3689,-3690,-3691,-3692,-3693], -[1,3,634], -[0,75,635,636,4], -[0,-1654,-1942], -[0,-3694,-2414,-1446,-3695,-2402,-3671,-856,-3696], -[1,3,638], -[0,639,640,104,5], -[0,-3697,-3698,-3699,-3700,-3701,-3702,-154,-3703,-3704,-3036,-3705,-3706,-469,-510,-521,-3707,-668,-865,-1028,-1107, --1304,-1321,-1341,-1442,-1459,-1641,-1645,-1734,-2195,-2205,-2223,-2325,-3708,-3709,-2488,-2550], -[0,-3710,-3711,-3712,-3660,-3044,-3713,-3037,-3714,-3715,-3041,-427,-428,-528,-928,-932,-972,-1344,-1534,-1548,-2375, --2379,-2410], -[1,3,642], -[0,643,644,104,6], -[0,-3646,-668,-3648,-3649,-1442,-1548,-1600,-3425,-3650,-3716,-3651,-1608,-3652,-2161,-2223], -[0,-23,-3204,-40,-3659,-3136,-3660,-3044,-3661,-3662,-3717,-3037,-3663,-3718,-3719,-3720,-518,-528,-928,-3666,-932,-972, --1304,-1415,-3668,-1889,-1927,-1942,-2082,-2375,-2410], -[0,25,646], -1734825600000, -[1,3,648], -[0,649,650,651,4], -[0,-3234,-367,-411,-3721,-617,-668,-686,-724,-3722,-1010,-1028,-1070,-3723,-3724,-1304,-1460,-1600,-3245,-1601,-3425, --3725,-3726,-1734,-1966,-2162,-3727,-3728,-2231,-2232,-2234,-3729,-2299,-2446,-3730], -[0,-86,-3307,-3470,-3471,-3731,-3732,-3733,-3734,-3048,-3661,-3662,-3037,-3735,-3736,-3737,-3738,-3739,-427,-428,-652, --3740,-1077,-1344,-1978,-2080,-2174,-2410], -[0,-3122,-3445,-1334,-3161,-3741,-3742,-3743], -[1,3,653], -[0,654,655,656,10], -[0,-3744,-3745,-3746,-3747,-3748,-3749,-367,-3750,-518,-635,-778,-779,-932,-940,-967,-969,-970,-1110,-1344,-3751,-1643, --1889,-1908,-1930,-2162,-2163,-2275,-2281,-2282,-3436,-3752,-2335,-2501,-2503,-2507,-2508], -[0,-3753,-1534], -[0,-3100,-3754,-3755,-3756,-3590,-3551,-3757], -[1,3,658], -[0,659,660,661,9], -[0,-3661,-664,-668,-1551,-1600,-1816,-1951], -[0,-3758,-3035,-3759,-3037,-3760,-1344,-1534,-1942,-2410,-2469], -[0,-891,-3671,-856,-3690,-2410,-3761,-3762], -[1,3,663], -[0,664,665,105,5], -[0,-3341,-44,-3763,-3764,-3765,-3766,-742,-930,-3767,-2231,-3768], -[0,-23,-3769], -[1,3,667], -[0,668,669,105,4], -[0,-160,-3772,-3765,-3773,-3774], -[0,-3775,-2410], -[1,3,671], -[0,672,673,7,5], -[0,-44,-160,-3776,-3765,-3777,-3774], -[0,-3775,-3778,-2006,-2410], -[0,0,0,7,8], -[1,3,676], -[0,677,678,38,5], -[0,-983], -[0,-652,-1498,-1654,-3779,-932,-1810,-2125,-2127,-2177,-3780,-1942,-2468,-2410,-1772,-3330,-426,-3781,-2132,-3782,-2139, --428,-3783], -[1,3,680], -[0,0,0,681,5], -[0,-3214,-3784,-932], -[1,3,683], -[0,684,685,150,4], -[0,-3785,-682,-3786,-863,-996,-3787,-3544,-3788,-1610,-1653,-3789,-1848,-2680,-1885,-1955,-1967,-3790,-2223,-3791,-3792, --3793], -[0,-3794,-3795,-3796,-3035,-3797,-3043,-3798,-3136,-3799,-3800,-3801,-3802,-3037,-3803,-3140,-3040,-3052,-3804,-3805, --3046,-3806,-3041,-427,-428,-3807,-585,-740,-748,-753,-756,-778,-795,-915,-2760,-3808,-932,-958,-969,-970,-1067,-1331, --1344,-1415,-1442,-3809,-3810,-1652,-1821,-1942,-1952,-1992,-2006,-2019,-2024,-2125,-2195,-2214,-2275,-2278,-2375,-2379, --2387,-2410, --3811,-2435,-2501,-2503,-2505,-2509], -[1,3,687], -[0,688,689,151,4], -[0,-3819], -[0,-41,-409,-3040,-3052,-440,-2006,-2019,-3820,-727], -[1,3,691], -[0,0,0,692,4], -[0,-2651,-3827,-3828,-3829,-3830,-3831,-775,-2162,-3577,-3578,-3832,-3833], -[1,3,694], -[0,0,0,695,9], -[0,-2651,-3827,-3828,-3829,-3834,-3835,-775,-2162,-3577,-3578,-3832,-3833], -[1,3,697], -[0,152,0,153,8], -[1,3,699], -[0,152,0,153,4], -[1,3,701], -[0,0,702,703,6], -[0,-23,-3840,-40,-41,-42,-86,-3307,-190,-195,-3841,-196,-3470,-3842,-3471,-406,-407,-409,-3136,-3040,-3052,-635,-658,-741, --767,-932,-940,-958,-959,-962,-967,-969,-970,-976,-978,-1110,-1344,-1415,-1419,-1942,-1952,-2006,-2019,-2125,-2174,-2375, --2379,-2391,-2410,-2411], -[0,-3838,-1064,-2006,-3214,-3839,-3843], -[1,3,705], -[0,106,154,706,9], -[0,-2410,-3161,-3844,-3445,-1818], -[1,3,708], -[0,709,710,711,8], -[0,-3845,-198,-891,-3846], -[0,-3847,-3037,-427,-428,-767,-891,-3848,-932,-933,-935,-940,-958,-962,-967,-1942,-2376,-2379,-2402,-2410], -[0,-2410,-3161,-891,-3844,-3445], -[1,3,713], -[0,714,154,715,9], -[0,-198,-3849,-3850,-3851,-617,-1465,-2080], -[0,-2410,-3161,-1004,-1818,-3844,-3445], -[1,3,717], -[0,718,719,720,6], -[0,-3852,-3853,-3854,-3855], -[0,-3856], -[0,-1122,-3857,-856,-1599,-3858], -[1,3,722], -[0,723,724,725,5], -[0,-3859,-3860,-3855,-3854], -[0,-3861,-3856], -[0,-858,-1122,-3857,-856,-3862,-1599,-3858], -[1,3,727], -[0,728,0,729,4], -[0,-23,-40,-3863,-3864,-3865,-518,-534,-3866,-753,-767,-778,-779,-1041,-3867,-1643,-1889,-1908,-3868,-2162,-3869,-2163, --2318,-2437,-2501,-2503], -[0,-2501,-3870,-3871,-3100], -[1,3,731], -[0,732,733,155,6], -[0,-3872,-3873,-3874,-3875,-3876,-3877,-3878,-3879,-3880,-3881,-3882,-3883,-3884,-3885,-3886,-3887,-3888,-3889], -[0,-3890,-3891,-3892,-3893,-3894,-3895,-3037,-1276,-1435,-2410], -[1,24,735], -[0,25,736], -1724872768784, -[1,3,738], -[0,739,740,741,5], -[0,-3896,-1993], -[0,-86,-3307,-3897,-3898,-3470,-3471,-3899,-932,-1344,-1392,-3900,-1534,-1942,-2174,-2469], -[0,-1446,-1942,-3485,-856,-3214], -[1,3,743], -[0,744,745,746,4], -[0,-3901], -[0,-2581,-3902,-3117,-406,-407,-409,-410,-3037,-3040,-3903,-3904,-3905,-3906,-440,-469,-3907,-470,-3908,-3909,-3910,-3911, --3912,-767,-3913,-3914,-3915,-3916,-3917,-1435,-1449,-2926,-1637,-3918,-3919,-3920,-1771,-2006,-2019,-2023,-2080,-3921, --3922,-2410,-2924,-3923,-2466,-3924,-2469,-3612,-2564], -[0,-3925,-3926,-3927,-3928,-2023,-3612,-1435,-3921,-2410,-2564,-3923,-3911,-3916,-3929,-3930,-3912,-3922,-469,-3931,-3908, --3932,-3933,-3914,-3934], -[1,3,748], -[0,749,38,750,4], -[0,-2426], -[0,-3935,-3936,-3937,-3938,-3939,-3940,-3690], -[1,3,752], -[0,753,754,755,5], -[0,-3941,-3942,-3943,-3819,-1549], -[0,-2125,-2476,-2483], -[0,-2476,-3944,-3945,-3100,-3161,-3160,-3112,-3095,-3098,-3113,-3114], -[1,3,757], -[0,758,759,760,4], -[0,-3763,-229,-807,-1549], -[0,-3946,-2125,-2476,-2483], -[0,-2476,-3944,-3945,-3100,-3161,-3160,-3095,-3098], -[1,3,762], -[0,763,764,63,4], -[0,-3947,-2944,-2900,-3948,-3949,-3950,-2202], -[0,-3951,-3952,-3037,-2410], -[1,3,766], -[0,767,768,769,10], -[0,-2387,-1387,-3978], -[0,-1415,-2162,-668,-999,-2184,-3979,-932,-2127,-1077,-1417,-1942,-2281,-3136,-3037,-3980,-3564,-3981,-3982,-2284,-3983, --3984,-3985,-2891,-3986,-3987,-3988,-3989,-940,-428,-3990,-351,-3991,-3992,-427], -[0,-1386,-3161,-3993,-3162,-3994,-3995,-3996,-752,-891,-3997,-3998], -[1,3,771], -[0,0,156,157,4], -[1,3,773], -[0,774,0,775,4], -[0,-4003], -[0,-2410,-727,-1788,-4004,-4005], -[1,3,777], -[0,778,779,780,4], -[0,-2852,-4006,-4007,-4008,-682,-4009], -[0,-4010,-367,-407,-409,-410,-3664,-932,-940,-4011,-1449,-2006,-2019,-2410,-2466,-2469], -[0,-3095,-3098,-4012,-3099,-3161,-3100,-4013,-4014,-3159,-2006,-3160,-4015], -[1,3,782], -[0,783,784,107,4], -[0,-4016,-4017,-4018,-4019,-4020,-237,-3037,-480,-668,-680,-4021,-1119,-4022,-4023,-4024,-4025,-4026,-1426,-4027,-4028, --4029,-4030,-1427,-4031,-4032,-1639,-1950,-2218], -[0,-4033,-4034,-4035,-4036], -[1,3,786], -[0,787,0,7,4], -[0,-4017,-4046,-4047,-4048,-3037,-3041,-668], -[1,3,789], -[0,790,791,792,6], -[0,-4049,-469,-470,-1548], -[0,-234,-4050,-427,-428,-519,-4051,-932,-940,-958,-967,-1449,-1788,-1942,-2074,-4052,-2125,-2127,-2130,-2142,-2144,-2234, --2379,-2387,-2402,-2410], -[0,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-3926,-4057,-1463,-4058,-4059,-3999,-4060], -[1,3,794], -[0,795,796,797,5], -[0,-4061,-809,-1548], -[0,-3778,-163,-270,-272,-274,-350,-4062,-351,-3561,-3043,-3136,-3040,-3052,-427,-428,-3807,-748,-915,-932,-940,-958,-967, --969,-1415,-1419,-1449,-1788,-1942,-2006,-2019,-2125,-2127,-2130,-4063,-4064,-2142,-2144,-2233,-2375,-2376,-2387,-2402, --2410,-2501,-2503,-2505,-238,-240], -[0,-3118,-4065,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], -[1,3,799], -[0,34,800,801,6], -[0,-4066,-3043,-3136,-4067,-3040,-3062,-427,-428,-3807,-767,-915,-932,-940,-958,-967,-969,-1415,-1449,-1788,-1942,-2006, --2019,-2040,-2074,-4052,-2125,-2127,-2130,-2142,-2144,-2375,-2387,-2402,-2410,-238], -[0,-2006,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], -[1,3,803], -[0,804,805,7,4], -[0,-3469,-4068,-4069,-4070,-4071,-4072,-4073,-4074,-4075,-4076,-4077,-4078,-4079,-4080,-4081,-4082,-4083,-4084,-4085, --4086], -[0,-4087,-3136,-1415,-2125,-2410], -[1,3,807], -[0,808,809,810,9], -[0,-482,-567,-668,-725,-4088,-1107,-4089,-1442,-4090,-1572,-1645,-1650,-4091,-2125,-4092,-4093,-4094,-4095,-4096,-2347, --2433,-2462,-2463,-4097], -[0,-526,-4098,-555,-558,-756,-808,-1451,-1654,-1788,-4099,-2155,-2210,-2250,-2460], -[0,-2162,-3754,-775,-4100,-856,-3485,-4101], -[1,3,812], -[0,0,0,813,10], -[0,-4102,-4103,-4104], -[1,3,815], -[0,816,817,158,5], -[0,-2900], -[0,-231,-4105,-4106,-1536], -[1,3,819], -[0,820,28,821,6], -[0,-2852,-703,-2037,-4118,-2641,-2400], -[0,-3098,-3099,-3100,-3482,-2634,-1713,-2006,-3160,-4119], -[1,3,823], -[0,108,28,824,8], -[0,-4120,-3098,-4121,-3100,-3482,-2634,-1713,-4122,-2006,-4123,-3160,-4119], -[0,0,0,826,5], -[0,-3100,-3322,-3482,-2634,-1713,-2006,-4124,-4125], -[1,3,828], -[0,0,28,829,6], -[0,-3098,-3959,-3100,-3482,-4126,-2634,-1713,-2006,-3160,-4119], -[1,3,831], -[0,832,28,833,6], -[0,-2662,-2055], -[0,-3098,-3100,-3482,-2634,-1713,-4127,-4128,-4129,-2006,-3160,-4119], -[1,3,835], -[0,836,0,837,4], -[0,-4130,-257], -[0,-2006,-2634,-1713,-3160,-3098,-4119,-3482,-3100,-707,-4131,-4132,-4133], -[1,3,839], -[0,840,0,841,10], -[0,-703,-786], -[0,-2006,-2634,-1713,-3160,-3482,-3100,-906,-3771,-4134], -[1,3,843], -[0,0,0,844,5], -[0,-2006,-2634,-1713,-3482,-3100,-4124,-3322,-4125], -[1,3,846], -[0,847,0,160,4], -[0,-703,-2029,-1887,-1967,-44,-4135,-4136,-4137,-4138,-2055,-1311,-3024], -[1,3,849], -[0,39,0,850,4], -[0,-2006,-3159,-3119,-1613,-3843], -[1,3,852], -[0,0,853,161,4], -[0,-1415,-2446,-1344,-932,-1548,-753,-2379,-2402,-1942,-589,-21,-533,-2410,-23,-3136,-3738,-1771,-3044,-50,-86,-3268,-40, --977,-2082,-940,-967,-2405,-42,-262,-4139,-428,-3307,-427,-26,-36,-35], -[1,3,855], -[0,856,0,857,5], -[0,-4145], -[0,-4146,-1599,-4147,-2006,-2093], -[1,3,859], -[0,860,861,862,10], -[0,-264,-263,-834,-1548,-1645,-2114,-2177,-2231,-2410,-4148,-4149,-4150,-4151,-4152], -[0,-4153,-3044,-3200,-3199,-932,-4154,-4155], -[0,-2410,-3816,-4156,-4157,-4158,-3960,-856,-4159,-4160,-3761,-2127,-4161,-3116,-4162,-4163], -[1,3,864], -[0,0,865,162,4], -[0,-932,-4153,-4164], -[1,3,867], -[0,868,869,162,4], -[0,-469,-4166,-2114,-263], -[0,-932,-4167,-3200,-4153,-4164], -[1,3,871], -[0,0,872,873,5], -[0,-4168,-4169,-4170,-4171,-3037], -[0,-4172,-4173,-4174,-4175,-4176,-4177,-4178,-4179], -[1,3,875], -[0,876,877,878,8], -[0,-267], -[0,-265,-4171,-2400], -[0,-4172,-4173,-4174,-4175,-4176,-4177,-4180,-4181,-3816,-4182,-4183,-4184], -[1,3,880], -[0,0,881,882,4], -[0,-4185,-265,-4171,-3037,-4186], -[0,-4172,-4173,-4174,-4175,-4176,-4177,-4187,-2444], -[1,3,884], -[0,0,0,885,5], -[0,-4188,-3100,-4189,-3110], -[1,3,887], -[0,888,889,890,4], -[0,-4190,-4191,-4192,-4193,-4194,-4195], -[0,-86,-3307,-4196,-4197,-3983,-4198,-3617,-4199,-4200,-3037,-4201,-4202,-4203,-4204,-523,-617,-720,-754,-767,-796,-4205, --1004,-4206,-4207,-1063,-1116,-1278,-1449,-1729,-3246,-2228,-2229,-4208,-2291,-2293,-2892,-2410,-2426,-2469,-4209,-2817, --4210,-2501,-4211,-2531], -[0,-2105,-4212,-1334,-1342,-2540,-2533,-4213,-4214,-4215,-4216,-3634], -[1,3,892], -[0,39,0,893,4], -[0,-2006,-3159,-4217,-1613,-3119,-3843], -[1,3,895], -[0,896,0,897,6], -[0,-703,-2825,-2690,-1967,-273,-44], -[0,-2006,-3159,-4217,-1613,-3119,-1510], -[1,3,899], -[0,900,0,901,4], -[0,-703,-786,-2029,-2825,-2690,-1967,-273,-44,-2997,-2055,-4218,-3024], -[0,-2006,-3159,-4217,-1613,-3119], -[1,3,903], -[0,904,0,905,9], -[0,-703,-786,-2825,-2690,-1967,-44,-2575,-2689], -[0,-2006,-3159,-4217,-4219], -[1,3,907], -[0,908,0,909,4], -[0,-44,-2690,-3024,-703,-1967,-2055,-4220], -[0,-2006,-3159,-4217,-4221,-1613,-3119,-4222,-4223,-4224], -[1,3,911], -[0,912,913,914,5], -[0,-4225,-4226,-4227,-4228,-4229,-4230,-4231,-4232,-4233,-682,-712,-4234,-4235,-4236,-1107,-1125,-4237,-4238,-4239,-4240, --4241,-4242,-2095,-4243,-4244,-4245,-4246,-2400,-2427,-2429,-2501,-4247,-2650], -[0,-4248,-4249,-4250,-4251,-3040,-3046,-518,-726,-2634,-1906,-2006,-2019,-2083,-2318,-2391,-2410,-4252,-4253,-4254], -[0,-4147,-856,-1713,-1599], -[1,3,916], -[0,917,0,109,9], -[0,-4255,-4256,-2888,-4257], -[1,3,919], -[0,920,0,109,11], -[0,-2387,-276], -[1,3,922], -[0,923,0,109,5], -[0,-2083,-4262,-2087,-2090,-3649,-4263,-4264,-1292,-2429,-4265,-4266,-4267,-668,-4245,-2427,-2268], -[1,3,925], -[0,926,927,928,5], -[0,-4268,-820,-665,-4269], -[0,-664,-616,-1654,-932,-4270,-2125,-4271,-2379,-1098,-1942,-2410,-3035,-3037,-4272,-595,-964,-958,-940,-967,-428,-4273, --427,-279,-4274,-4275], -[0,-4276,-4277,-4271,-3634], -[1,3,930], -[0,931,932,7,5], -[0,-4278,-4279,-4280,-281,-4281,-4282,-282,-4283,-4284,-4285,-283,-4286,-4287,-4288,-1315,-4289,-1582,-1645,-1758,-4290, --1767,-4291,-1770,-1831,-4292,-1957,-4293,-4294,-4295,-2177,-2247,-4296,-4297], -[0,-4298,-4299,-4300,-589,-4301,-1722,-2319,-2325,-4302], -[1,3,934], -[0,935,29,936,5], -[0,-4282,-4283,-1107,-1645], -[0,-1764,-1776,-4303,-687,-4304,-4305], -[1,3,938], -[0,0,29,939,10], -[0,-1764,-687,-1733], -[1,3,941], -[0,942,943,7,6], -[0,-282,-4283,-4306,-1733,-1957,-2518], -[0,-4298,-4300,-4307,-2319], -[1,3,945], -[0,946,947,163,5], -[0,-4308,-4309,-4310,-1600,-1395,-4311,-4312,-4313,-4314,-4315,-4316,-1550,-4317,-2161,-3649,-4318,-4319,-1554,-4320, --1603,-4321,-4322,-4323,-3430,-4324,-4325], -[0,-1107,-1654,-674,-2250,-4326,-633,-4327,-2251], -[1,24,949], -[0,25,950], -1734998400000, -[1,3,952], -[0,953,0,64,4], -[0,-293], -[1,3,955], -[0,956,0,64,10], -[0,-1787,-2387], -[1,3,958], -[0,959,0,64,4], -[0,-300], -[1,3,961], -[0,962,963,64,5], -[0,-4341,-888,-2387,-2177,-2551,-1645,-910], -[0,-1415,-1787], -[1,3,965], -[0,966,40,967,4], -[0,-2387,-297,-293,-1863,-2654,-2383], -[0,-4332,-4342,-4335,-4340,-4343,-4344], -[1,3,969], -[0,970,40,164,4], -[0,-2387,-297,-2177,-293,-2410], -[1,3,972], -[0,973,0,974,9], -[0,-2387,-297,-299,-293], -[0,-4332,-4336,-4348,-4338,-4339,-4340,-4344], -[1,3,976], -[0,977,40,978,11], -[0,-668,-2387,-1353,-2177,-715,-3187,-1864,-293,-1863,-2654,-23,-832,-1461,-1773,-300,-44,-4341,-40,-2234,-3766,-4349,-42, --38,-33,-3376,-4350], -[0,-4332,-4335,-4336,-4351,-4352,-4340,-4343,-4344], -[1,3,980], -[0,981,0,165,4], -[0,-2387,-297,-299,-293,-295,-4353], -[1,3,983], -[0,984,40,165,8], -[0,-2387,-297,-2571,-4354,-293,-4355,-295,-4356], -[1,3,986], -[0,987,40,64,9], -[0,-1787,-668,-2387,-2177,-910,-1864,-293,-2551,-4341], -[1,3,989], -[0,990,991,76,4], -[0,-302,-4357,-4358,-4359,-812,-2177], -[0,-4360,-3035,-3621,-3037,-3199,-664,-697,-740,-932,-938,-939,-4361,-1111,-1654,-2210,-2379,-2410], -[1,3,993], -[0,994,995,76,5], -[0,-4357,-4358,-812,-1111,-1401,-2387], -[0,-3035,-4363,-3044,-3621,-3037,-4364,-4365,-664,-740,-932,-938,-939,-4361,-1548,-1654,-1972,-2379,-2410], -[1,3,997], -[0,998,999,1000,4], -[0,-480,-483,-4366,-692,-812,-888,-1097,-1366,-1401,-1532,-1645,-2177,-2267,-2297,-2654,-2820,-2525,-2528], -[0,-3307,-3615,-304,-4360,-4367,-4368,-3268,-3035,-4269,-4369,-3198,-4370,-4363,-3621,-3037,-4371,-4372,-4373,-4374,-4365, --589,-664,-665,-721,-767,-932,-938,-940,-1344,-1534,-4375,-1654,-1788,-1942,-2200,-2210,-2379,-2384,-2410], -[0,-4362,-687,-3957,-4376,-3215,-4377,-4378], -[1,3,1002], -[0,1003,1004,1005,6], -[0,-303], -[0,-3307,-3615,-4367,-4368,-3035,-3621,-3037,-664,-721,-932,-938,-940,-1344,-1534,-1654,-4362,-1942,-2200,-2379,-2410], -[0,-4379], -[1,3,1007], -[0,1008,1009,1010,4], -[0,-3704,-4380,-4381,-4382], -[0,-4383,-4384,-4385,-4386,-4387,-3037,-3664,-928,-1037,-1107,-1722,-1942,-4388,-2410,-2426,-2469], -[0,-4389,-1105,-3691,-4390], -[1,3,1012], -[0,1013,0,65,4], -[0,-4391,-4392,-4393,-4394,-4395,-4396,-4397,-4398,-4399,-4400,-4401,-4402,-4403,-4404,-4405,-4406,-4407,-4408,-4409, --4410,-4411,-4412,-4413,-4414,-4415,-4416,-4417,-4418,-4419,-4420,-4421,-4422,-4423,-4424,-4425,-4426,-4427,-4428,-4429, --4430,-4431,-4432,-4433,-4434,-4435,-4436,-4437,-4438,-4439,-4440,-4441,-4442,-4443,-4444,-4445,-4446,-4447,-4448,-4449, --4450,-4451,-4452,-4453, --4454,-4455,-4456,-4457,-4458,-4459,-4460,-4461,-4462,-4463,-4464,-4465,-4466,-4467,-4468,-4469,-4470,-4471,-4472,-4473, --4474,-4475,-4476,-4477,-4478,-4479,-4480,-4481,-4482,-4483,-4484,-4485,-4486,-4487,-4488,-4489,-4490,-4491,-4492,-4493, --4494,-4495,-4496,-4497,-4498,-4499,-4500,-4501,-4502,-4503,-4504,-4505,-4506,-4507,-4508,-4509,-4510,-4511,-4512,-4513, --4514,-4515,-4516,-4517, --4518,-4519,-4520,-4521,-4522,-4523,-4524,-4525,-4526,-4527,-4528,-4529,-4530,-4531,-4532,-4533,-4534,-4535,-4536,-4537, --4538,-4539,-4540,-4541,-4542,-4543,-4544,-4545,-4546,-4547,-4548,-4549,-4550,-4551,-4552,-4553,-4554,-4555,-4556,-4557, --4558,-4559,-4560,-4561,-4562,-4563,-4564,-4565,-4566,-4567,-4568,-4569,-4570,-4571,-4572,-4573,-4574,-4575,-4576,-4577, --4578,-4579,-4580,-4581, --4582,-4583,-4584,-4585,-4586,-4587,-4588,-4589], -[1,3,1015], -[0,1016,1017,65,5], -[0,-4595,-4596,-712], -[0,-4597,-2391], -[1,3,1019], -[0,0,1020,65,8], -[0,-21,-23,-40,-1026,-1168,-1171,-1184,-1187,-1226,-4598,-4599,-2125,-2281,-2282,-2303], -[1,3,1022], -[0,0,1023,65,8], -[0,-21,-23,-40,-1168,-1171,-1184,-1226,-2125,-2281,-2282], -[1,3,1025], -[0,0,0,1026,4], -[0,-4600,-4601,-4602,-3578,-3445,-743], -[1,3,1028], -[0,1029,0,1030,4], -[0,-4603,-4604,-310,-4605,-4606,-4607,-4608,-4609], -[0,-4600,-4601,-4602,-3578,-3445,-4610,-2105], -[1,3,1032], -[0,1033,0,1034,5], -[0,-4611,-1640,-4612,-4605,-310,-4613,-4614,-311,-313,-4615], -[0,-4600,-4601,-4602,-3578,-3445,-4616], -[1,3,1036], -[0,1037,0,1038,4], -[0,-1640,-4617,-4614], -[0,-4600,-4601,-4602,-3578,-3445,-4616,-2178,-4618], -[1,3,1040], -[0,1041,1042,1043,4], -[0,-4619,-523,-617,-668,-1004,-1122,-1123,-1336,-1343,-1439,-1548,-1993,-4620,-3122,-4621], -[0,-21,-23,-40,-4622,-3035,-4269,-3617,-4623,-3044,-3621,-4624,-3037,-4625,-4372,-3625,-4626,-427,-428,-664,-665,-4627, --749,-932,-934,-935,-940,-948,-4628,-958,-964,-1654,-1722,-1788,-1942,-1972,-2125,-2210,-2211,-2234,-2392,-2410], -[0,-4629,-4630,-3214,-4631,-3634,-4632], -[0,0,0,7,10], -[1,3,1046], -[0,1047,0,1048,6], -[0,-1851], -[0,-4125,-4633,-2006,-2476,-2299,-4634,-2410,-3214,-3100,-3445,-1109,-3160,-1062,-3122], -[1,3,1050], -[0,1051,1052,7,4], -[0,-4635,-4636,-4637,-4638,-4639,-4640,-4641,-4642,-4643,-4644,-4645], -[0,-3035,-3621,-664,-778,-925,-1471,-1475,-1479,-1480,-1482,-1483,-1654,-2125,-3047,-2275,-2402,-2410,-2501], -[1,3,1054], -[0,0,1055,1056,4], -[0,-3983,-4646,-351,-3266,-406,-407,-4647,-3037,-4648,-784,-932,-4649,-4650,-4651,-4652,-1110,-1449,-1889,-1891,-1942, --4653,-4654,-2091,-4655,-4656,-2127,-2132,-2142,-2286,-2379,-2387,-2392,-2402,-4657,-2405,-4658,-4659,-4660,-4661,-4662, --2410,-4663,-2468,-4664], -[0,-4665,-4666,-4667,-4668,-4669,-775,-3099,-4189,-4670,-4671,-856,-4672,-4673,-3264,-4674,-4675,-4676,-3214,-4677,-4678, --4679,-4680,-4681,-4682,-4683,-2410,-4684,-2257,-4685,-2006,-3322], -[1,3,1058], -[0,1059,1060,7,4], -[0,-4686], -[0,-4687,-4688,-4689,-4690,-528,-4691,-824,-4692,-957,-1077,-4693,-1168,-1174,-1197,-1212,-1244,-1251,-4694,-4695,-1632, --1839,-4696,-4697,-2347,-2410,-4698], -[1,3,1062], -[0,1063,1064,1065,8], -[0,-469,-864,-2359,-4699,-1107,-2162,-510,-4700,-4701,-2550,-932,-2125,-2177,-2334,-2536,-1004,-4702,-4703,-571,-679,-867, --1376,-1942,-2199,-715,-4704,-4705,-633,-4706,-1354,-1633,-1729,-23,-1793,-4707,-47,-4708,-25,-305,-2232,-4709,-46,-4710, --2104,-2433,-3194,-4711,-40,-4712,-4713,-41,-4714,-960,-2082,-32,-4715,-1458,-4716,-3077,-42,-4717,-4718,-4719, --3408,-4720,-3362,-4721,-3398], -[0,-2322,-4722,-2234], -[0,-4723,-3116,-687,-3161,-3577,-4724,-3162,-4725,-3445,-4726,-4727,-4728,-3205,-4729,-4730,-3186], -[1,3,1067], -[0,0,1068,1069,9], -[0,-932,-3469,-4731,-4732,-4733,-4734,-4735,-768,-769,-4736,-1077,-1387,-4737,-2654,-4738], -[0,-4739,-3161,-4740,-3843,-4741], -[1,3,1071], -[0,1072,1073,1074,9], -[0,-1983,-1436,-4742,-4743,-1416], -[0,-1344,-2006,-2344,-932,-2127,-795,-2501,-1942,-4744,-2019,-2257,-2410,-3136,-3037,-3040,-4745,-4746,-2046,-4747,-4748, --86,-4749,-3052,-2044,-4750,-2132,-4751,-1352,-969,-933,-958,-2140,-4752,-4753,-4754,-4755,-409,-940,-962,-967,-350, --4756,-4757,-2113,-3267,-4758,-407,-428,-970,-4759,-4760,-4761,-351,-4762,-410,-4763,-2413,-3307,-935,-4764,-427,-3474, --4765, --3394], -[0,-2006,-2344,-4766,-4767,-4768,-4769,-4770,-4771,-3100], -[1,3,1076], -[0,1077,1078,1079,5], -[0,-3117,-3901,-1359,-2074,-2079,-2112], -[0,-2832,-23,-3341,-262,-4772,-4773,-4774,-406,-409,-4775,-410,-4776,-4777,-3705,-4778,-3037,-4779,-3040,-3052,-3041,-427, --428,-523,-928,-4780,-932,-940,-941,-956,-958,-962,-967,-969,-970,-1077,-1384,-1449,-1459,-1683,-1729,-1942,-1984,-2006, --2019,-2125,-2214,-2387,-2391,-2392,-2410,-2924,-3924,-2469,-2550], -[0,-2074,-2006,-4781,-3481,-4782,-4783,-1359,-1361,-4784], -[1,3,1081], -[0,1082,1083,1084,4], -[0,-4785,-4786,-989,-4787,-4788,-1588,-1864], -[0,-4062,-351,-4789,-4790,-2127,-2231,-2234,-2410], -[0,-2127,-3862,-1764,-3209,-4791,-4792], -[1,3,1086], -[0,1087,1088,1089,10], -[0,-4785,-3200,-823,-4793,-2114], -[0,-23,-3412,-3326,-350,-4062,-922,-2127,-2231,-4794], -[0,-2127,-3862,-4795,-1764,-3209], -[1,3,1091], -[0,1092,1093,1094,4], -[0,-653,-2359,-754,-2466,-668,-1111,-1650,-1872,-928,-1004,-4796,-1306,-2223,-679,-4797,-4798,-4799,-4800,-1461,-4801, --4802,-4803,-4804,-263,-4805,-4806,-4807,-440,-4808,-264,-262,-4149], -[0,-4809,-2446,-2006,-932,-2125,-4810,-2469,-1942,-2019,-3628,-2410,-4198,-3037,-3738,-1534,-3040,-3041,-1772,-4811,-3617, --3052,-2174,-2278,-4812,-969,-940,-962,-967,-428,-970,-1945,-4813,-427,-4814], -[0,-4810,-4158,-4165,-3816,-4815,-3960,-856], -[1,3,1096], -[0,1097,1098,1099,5], -[0,-2921,-4816,-4817,-1085,-3649,-4818,-1699,-2476,-4819,-4820,-4821,-4822,-4823,-4824,-4825,-4826,-4827,-4828,-4829, --4830,-4831,-4832,-4833,-4834], -[0,-4835,-3983,-4836,-4837,-3250,-4838,-1313,-1449,-2006,-4839,-2318,-2466,-4840,-4841,-2469,-4842,-4843,-4844,-4845], -[0,-3095,-856,-3438,-4846,-4679,-4847,-2476,-3944], -[1,3,1101], -[0,1102,1103,1104,4], -[0,-4848,-3649,-4825,-4827,-4843], -[0,-4849,-4850,-4851,-1030,-2466,-2469,-2548,-353,-4842], -[0,-3690,-856,-1030,-3438,-4847], -[1,3,1106], -[0,1107,1108,1109,4], -[0,-4852,-4853,-4854,-823,-2792,-4855], -[0,-4856,-4857,-4858,-4859,-4860,-4861,-3035,-3617,-4862,-3621,-523,-617,-652,-767,-1004,-1323,-1654,-4863,-1970,-2253, --2379,-2410], -[0,-4864,-4865,-4866,-4867,-4868,-4869,-4870,-4871,-4872,-4043,-3160,-3100,-475,-2006,-2476,-3440,-4873,-4004,-3634], -[1,3,1111], -[0,1112,1113,1114,10], -[0,-4852,-4853,-4854,-4874,-823,-4855], -[0,-4856,-3621,-4875,-4876,-4877,-4878,-4879,-523,-652,-767,-1654,-4863,-4880,-2253,-4881], -[0,-4864,-4865,-4866,-4867,-4868,-4869,-4870,-4871,-4872,-4043,-3160,-3100,-3440,-4873,-4004,-3634,-4881,-4882,-4883], -[1,3,1116], -[0,1117,1118,7,4], -[0,-4884], -[0,-4885,-4886,-4887,-4888,-4889,-928,-1344,-1449,-1534,-1654,-1788,-1942], -[1,3,1120], -[0,1121,1122,1123,4], -[0,-2006,-2019,-3654,-261,-4890,-4891,-4892], -[0,-2466,-2006,-2361,-1885,-4893,-2019,-3517,-2410,-4228,-2089,-3040,-4894,-3523,-3649,-2795,-1606,-4785,-3525,-2085], -[0,-3671,-856,-2257,-4895,-4896,-4897,-4898,-1599,-4899,-4900,-4901,-3095,-3098,-2006,-2476,-475,-2299,-4902], -[1,3,1125], -[0,1126,1127,110,6], -[0,-4903,-4904,-3165,-4905,-44,-3946,-195,-4906,-196,-197,-4907,-4908,-4909,-4910,-4911,-4912,-595,-4913,-682,-747,-809, --4914,-4915,-4916,-4917,-4918,-4919,-4920,-4921,-4922,-4923,-4924,-3123,-4925,-4926,-4927,-4928,-4929,-4930,-4931,-4932, --4933,-4934,-4935,-4936,-4937,-4938,-2002,-4939,-4940,-4941,-4942,-4943,-2003,-4944,-4945,-4946,-4947,-2004,-2013,-4948, --4949,-4950, --2053,-4951,-2344,-2345], -[0,-3139,-23,-4952,-4953,-162,-3778,-4954,-4955,-4773,-3562,-4757,-4762,-4763,-4754,-4956,-4957,-4958,-4749,-4760,-4959, --406,-407,-409,-410,-4960,-3136,-4961,-4962,-4963,-4964,-3044,-3803,-4965,-4966,-3040,-4967,-3087,-3052,-4968,-4969, --4970,-4971,-4972,-427,-428,-4973,-4974,-4975,-534,-4976,-668,-674,-767,-4977,-881,-4978,-3808,-932,-933,-940,-948,-952, --958, --959,-962,-963,-969,-970,-4756,-978,-1026,-4979,-1077,-1103,-1107,-1339,-1344,-1352,-1359,-1360,-1376,-1404,-1415,-4980, --1416,-1419,-1421,-4981,-4982,-1437,-1449,-4983,-3134,-1534,-1548,-4984,-1662,-1805,-1942,-1943,-1950,-1955,-1959,-1983, --4985,-4986,-4987,-2006,-2012,-2016,-2017,-2019,-3051,-4988,-4989,-4990,-4991,-2044,-4992,-4993,-2093,-2094,-4994,-4995, --4996,-2177,-2205, --2214,-2281,-4997,-4998,-2282,-4999,-5000,-2334,-2379,-2402,-2410,-5001,-2502,-5002,-5003], -[1,3,1129], -[0,1130,166,111,4], -[0,-5004,-5005,-5006,-5007,-2741,-5008,-1085,-1548,-5009,-5010,-2355,-2446], -[1,3,1132], -[0,1133,166,111,5], -[0,-5004,-5005], -[1,3,1135], -[0,1136,1137,111,4], -[0,-5006,-5007,-2741,-5008,-5025,-1085,-1343,-1548,-5026,-1729,-5009,-5027,-5010,-2355,-2446], -[0,-5028,-3044,-3037,-5011,-3738,-519,-865,-1771,-1942,-5012,-2376,-2379,-5013,-2388,-2389,-2410,-2501,-2503,-2509], -[1,3,1139], -[0,1140,1141,1142,6], -[0,-1110], -[0,-50,-5029,-5030,-932,-940,-965,-975,-2299,-2410,-2411], -[0,-932,-727,-5031,-2299], -[1,3,1144], -[0,1145,1146,1147,5], -[0,-3117,-5032,-5033,-461,-743,-5034,-5035,-1496,-1588,-5036,-5037,-3169,-2213], -[0,-5038,-3983,-365,-5039,-3037,-3172,-5040,-2127,-2299,-2301,-2410,-2466,-2469], -[0,-3161,-5041,-2299,-3176,-2466], -[1,3,1149], -[0,1150,1151,1152,5], -[0,-5042,-2814,-823,-1588,-5043], -[0,-2162,-2466,-2299,-3198], -[0,-5044,-5045,-2466,-2299], -[1,3,1154], -[0,1155,1156,1157,5], -[0,-23,-5046,-40,-41,-42,-2699,-5047,-5048], -[0,-534,-1626,-2437,-2501], -[0,-5049,-3839,-2006,-2501,-5050], -[1,3,1159], -[0,1160,1161,1162,5], -[0,-5051,-5052], -[0,-5053,-5054,-767,-2410], -[0,-5055,-5056,-525,-2410,-5057,-2501,-5058], -[1,3,1164], -[0,1165,1166,1167,5], -[0,-620,-2997], -[0,-1107,-1168,-1415,-2162,-2125,-1889,-1942,-749,-1248,-2281,-1232,-2410,-3037,-518,-1238,-1930,-2285,-5059,-5060,-5061, --5062], -[0,-3754,-3098,-4902,-5063,-5064,-3482,-4012,-3160,-3100], -[1,3,1169], -[0,0,37,1170,10], -[0,-5065,-5066,-5067,-5068,-5069,-5070,-5071,-3100,-2410,-3214,-5072,-5073,-5074,-5075,-5076,-5077,-5078,-5079,-5080, --5081,-5082,-5083,-5084], -[1,3,1172], -[0,141,142,143,4], -[1,3,1174], -[0,1175,1176,1177,9], -[0,-44,-737,-2387], -[0,-23,-38,-40,-42,-3244,-190,-3983,-3326,-350,-351,-3561,-3266,-5085,-3037,-427,-428,-539,-932,-940,-5086,-5087,-5088, --5089,-1772,-1942,-2127,-5090,-2200,-5091,-2410], -[0,-5092,-3264,-5093,-5094,-3214,-5095,-3839,-2410], -[1,3,1179], -[0,167,1180,7,4], -[0,-409,-4775,-3040,-3052,-440,-757,-1772,-2006,-2019,-2965,-5097,-5098], -[1,3,1182], -[0,167,1183,1184,5], -[0,-2299,-2300,-3170,-975,-5099,-428,-5098,-365], -[0,-5100,-5101,-2299], -[1,3,1186], -[0,1187,1188,1189,4], -[0,-5102], -[0,-5103,-3136,-427,-5104,-932,-936,-5105,-940,-967,-968,-1415,-1419,-1441,-1446,-1637,-2375,-2376,-2410], -[0,-5106,-5107,-5108,-5109,-5110,-3100,-3323,-3105], -[1,3,1191], -[0,1192,1193,1194,5], -[0,-44,-406], -[0,-795,-2410,-5111,-1771], -[0,-3634,-795,-3160,-5092,-4868,-5112,-4867,-4866], -[1,3,1196], -[0,1197,1198,1199,4], -[0,-4984,-5113,-1863,-1950,-44,-22,-5114,-5115], -[0,-1449,-2410,-5111,-635,-658,-5116,-407,-5117,-5118], -[0,-3634,-3160,-5092,-1449,-5119,-4868,-5112,-4867,-4866], -[1,3,1201], -[0,1202,1203,1204,4], -[0,-5120,-5113,-2745,-1863,-28,-5115], -[0,-1449,-1001,-2127,-2469,-2410,-5111,-5121,-1950,-5122,-350,-5117,-5123], -[0,-3634,-5092,-1415,-1449], -[1,3,1206], -[0,1207,1208,1209,10], -[0,-668,-5120,-1418,-1950,-5124], -[0,-1415,-1344,-2006,-932,-1942,-21,-720,-2410,-23,-3136,-3040,-1952,-2034,-44,-2174,-3141,-2052,-5125,-796,-3081,-3153, --3156,-5126], -[0,-3634,-5127,-1415,-2034], -[1,3,1211], -[0,39,1212,1213,5], -[0,-406,-407,-3040,-3052,-668,-5128,-1418,-5111,-1772,-2006,-2019,-2125,-2410], -[0,-3634,-2006,-3160,-5092,-1449,-5119,-4868,-5112,-4867,-4866], -[1,3,1215], -[0,0,1216,1217,4], -[0,-1392,-1449,-2006,-1001,-928,-2379,-5129,-2019,-2745,-2410,-5111,-3040,-5116,-5130,-5089,-5131,-5087,-5132,-406,-5133, --5086,-409,-5134,-5088,-407,-5135,-5136,-3626,-948,-5137], -[0,-5138,-5139,-2006,-3634], -[1,3,1219], -[0,1220,0,1221,6], -[0,-4603,-5140,-412,-417,-418,-419,-420], -[0,-5141,-3122,-3445,-1334,-3161,-3690], -[1,3,1223], -[0,0,0,1224,9], -[0,-5141,-4601,-4602,-3578,-3445,-743], -[1,3,1226], -[0,0,0,1227,11], -[0,-5141,-4601,-4602,-3578,-3445,-5142,-743], -[1,3,1229], -[0,1230,1231,168,4], -[0,-5143], -[0,-652,-2392,-1344,-2410,-3037,-411,-2581,-86,-5144,-3307], -[1,3,1233], -[0,0,0,1234,6], -[0,-5141,-4601,-4602,-3578,-3445,-990], -[1,3,1236], -[0,0,0,1237,9], -[0,-5141,-4601,-4602,-3578,-3445,-5145,-5146,-5147], -[1,3,1239], -[0,1240,0,1241,4], -[0,-416], -[0,-5141,-4601,-4602,-3578,-3445,-5148,-1389,-5149,-5150], -[1,3,1243], -[0,1244,0,1245,6], -[0,-4603,-5151,-422,-423], -[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105], -[1,3,1247], -[0,1248,0,1249,4], -[0,-5143,-1640,-5152,-412,-413,-2701,-418,-421], -[0,-5141,-4601,-4602,-3578,-3445,-4616], -[1,3,1251], -[0,169,0,1252,8], -[0,-5141,-4601,-4602,-3578,-3445,-3122], -[1,3,1254], -[0,1255,0,1256,5], -[0,-1640,-415,-5153], -[0,-5141,-4601,-4602,-3578,-3445,-4616,-2178,-4618], -[1,3,1258], -[0,1259,0,1260,9], -[0,-1640,-5153], -[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105,-2401,-3214], -[1,3,1262], -[0,0,0,1263,6], -[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105,-2435,-5154,-5101], -[1,3,1265], -[0,0,0,77,5], -[1,3,1267], -[0,1268,0,1269,9], -[0,-5190,-5191,-5192,-5193,-2387], -[0,-5194,-5195,-3445,-5196,-5197,-3690], -[1,3,1271], -[0,1272,1273,1274,11], -[0,-1353,-5198,-5199,-429,-5200,-5201,-5202,-3331], -[0,-469,-1610,-2469,-1942,-5203,-4251,-3040,-1605,-5204,-2429,-4049,-3664,-1618,-5205,-5206,-5207], -[0,-932,-5208,-3784,-2410], -[1,3,1276], -[0,1277,112,1278,6], -[0,-812,-3782,-5202,-3331,-5209], -[0,-3272,-3217,-3214,-2410,-3215,-4132,-932], -[1,3,1280], -[0,1281,112,1282,5], -[0,-3782,-189,-3331,-5209], -[0,-932,-2410,-5210], -[1,3,1284], -[0,1285,1286,1287,8], -[0,-161,-163,-5211,-682,-5212,-5213,-906,-5214,-5215,-1311,-1548,-5216,-1666,-1967,-5217,-4922,-5218,-4929,-4934,-2002, --2004,-2030,-4991,-2055,-2113,-2192,-2489,-5219], -[0,-21,-23,-26,-33,-38,-39,-40,-41,-42,-86,-3307,-407,-409,-3059,-5220,-3044,-5221,-3040,-3052,-427,-428,-5222,-5223,-523, --528,-533,-534,-5224,-540,-5225,-5226,-720,-5227,-778,-796,-915,-916,-2760,-932,-969,-970,-1041,-1077,-1331,-1344,-1415, --5228,-4981,-5229,-1534,-1643,-1667,-1814,-1942,-2000,-2006,-2019,-2049,-2052,-2251,-2275,-2281,-3085, --5230,-5231,-5232,-2410,-2417,-2437,-2501,-2502,-2503], -[0,-2006,-3159,-3095,-3098,-3100,-5233], -[1,3,1289], -[0,1290,0,170,5], -[0,-703,-1436,-1548,-1699,-5234,-2650,-5235,-5236,-5237,-5238,-5239,-1320,-5240,-5241,-5242,-5243,-5244,-5245], -[1,3,1292], -[0,171,0,1293,5], -[0,-5248,-5249,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], -[1,3,1295], -[0,1296,0,1297,4], -[0,-5254], -[0,-3167,-5255,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], -[1,3,1299], -[0,171,0,1300,4], -[0,-3962,-5256,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], -[1,3,1302], -[0,1303,0,1304,8], -[0,-5257,-436], -[0,-5258,-5259,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], -[1,3,1306], -[0,0,0,1307,6], -[0,-5260,-5261,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], -[1,3,1309], -[0,1310,1311,1312,5], -[0,-1983,-754,-1004,-2401,-724,-5262,-5263,-5264,-5265,-442], -[0,-1415,-2177,-2375,-2293,-533,-2410,-23,-4198,-3136,-3037,-5266,-2581,-3617,-5267,-4203,-3732,-3697], -[0,-5268,-3100,-5269,-5270,-5271,-3441,-5272], -[1,3,1314], -[0,1315,1316,1317,4], -[0,-5273,-5274,-5275,-5276,-5277,-5278,-5279,-5280], -[0,-2384,-2392,-2391,-2466,-1344,-932,-2125,-5281,-2469,-928,-1889,-2910,-2281,-1747,-1874,-5282,-2214,-2302,-2410,-3037, --1534,-1771,-3040,-5283,-5284,-2581,-5285,-5286,-2284,-5287,-5288,-5289,-2411,-5290,-3664,-5291,-2832,-5292,-5293,-2282, --5294,-2970,-5295,-5296,-5297,-4999], -[0,-5065,-5298,-5299,-5300,-5301,-5302,-5303,-5304,-5305,-5067,-5306,-5307,-5308,-5309,-5310,-5069,-5311,-3100,-2410, --5312,-5313,-5314,-5315,-5316,-5072,-5073,-5074,-5317,-5318,-5083], -[1,3,1319], -[0,1320,1321,1322,5], -[0,-753,-2314,-23,-635,-1588,-40,-2082,-5319,-3343,-3344,-3370,-3377], -[0,-4787,-2466,-461,-2892,-1863], -[0,-3100,-2466,-5044,-439], -[1,3,1324], -[0,1325,1326,1327,6], -[0,-23,-5320,-5321,-5322,-4776,-2041], -[0,-5323,-2006,-2019,-2923,-2892], -[0,-525,-5324,-2006,-2041,-2466,-5044], -[1,3,1329], -[0,1330,1331,1332,5], -[0,-429,-1026,-2411,-2478], -[0,-5325,-3037,-932,-980,-999,-5326,-1942,-2392,-2410,-2469,-2476], -[0,-2476,-5327,-5328,-932,-2410], -[1,3,1334], -[0,1335,1336,1337,10], -[0,-469,-470,-5329,-1335,-5330,-1851,-3122,-2187,-5331,-3434,-2548], -[0,-1004,-1654,-2250,-2293], -[0,-1004,-3438,-4847,-856], -[1,3,1339], -[0,1340,1341,113,5], -[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5339,-5340,-747,-823,-5341,-909,-5342,-5343,-5344, --3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, --4942,-2003,-4944,-2004,-2013,-2965,-2028,-5350,-5351,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5354, --5355,-2427,-2429, --5356,-2435,-5357,-5358,-5359], -[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3803,-3040,-3087,-3052,-5364,-5365,-5366,-932,-4597,-1026,-1031, --5367,-5368,-1344,-1534,-1942,-1944,-1945,-2006,-2019,-2281,-2379,-2410,-2469,-5369,-5370], -[0,0,0,7,9], -[1,3,1344], -[0,0,1345,1346,4], -[0,-3037,-427,-428,-932,-934,-958,-2125,-2127,-2142,-2410], -[0,-3445,-5373,-5374,-5375,-5376,-5377,-5378], -[1,3,1348], -[0,1349,1350,1351,4], -[0,-5379], -[0,-23,-3204,-40,-43,-5380,-5381,-3621,-3037,-507,-708,-5382,-932,-1471,-1475,-1476,-1479,-5383,-1480,-1482,-1486,-1654, --1771,-1788,-1810,-2125,-2127,-2128,-5384,-2131,-2137,-2139,-2141,-5385,-2379,-5386,-2410], -[0,-5387,-5388,-5389,-997,-5390,-5391,-5392,-5393,-5394,-5395,-5396], -[1,3,1353], -[0,1354,172,1355,5], -[0,-1641,-5397], -[0,-5398,-5399,-5400,-459], -[1,3,1357], -[0,1358,114,1359,5], -[0,-510,-615,-1548,-1671,-2071], -[0,-5401,-460,-3578], -[1,3,1361], -[0,1362,0,7,10], -[0,-461], -[1,3,1364], -[0,1365,1366,1367,8], -[0,-523,-668,-719,-1039,-1077,-1376,-1816,-5402,-2205], -[0,-350,-4062,-351,-3266,-5403,-3048,-5404,-3049,-3037,-2125,-2127,-4063,-5405,-2142,-5232,-2387,-2388,-2410], -[0,-687,-463,-2476,-2006,-5406,-5407,-2410,-3967], -[1,3,1369], -[0,0,1370,1371,4], -[0,-664,-1351,-1654,-1942,-2125], -[0,-5408,-1636,-5409,-2432], -[1,3,1373], -[0,0,27,1374,5], -[0,-5410,-465,-5411,-5412,-5413], -[1,3,1376], -[0,1377,1378,1379,8], -[0,-5414,-5415,-812,-5416,-3222], -[0,-3198,-5417,-3620,-3037,-3664,-2210,-2379,-2392,-2469], -[0,-5418,-5419,-763,-5420,-2166,-4043], -[0,44,15,16,6], -[1,3,1382], -[0,1383,1384,1385,4], -[0,-5450,-5451,-5452,-633,-5453,-724,-812,-5454,-5455,-1004,-5456,-5457,-1336,-5458,-1442,-5459,-5460,-5461,-1646,-5462, --5463,-5464,-2062,-5465,-2188,-2194,-5466,-5467,-5468,-2446,-2491], -[0,-5469,-767,-1274,-1788,-5470,-2250,-2322,-2331], -[0,-468,-4865,-5471,-2319,-2322,-3634], -[1,3,1387], -[0,1388,1389,1390,5], -[0,-1025,-5472,-5473,-5474], -[0,-5475,-350,-4062,-351,-3267,-3035,-3621,-3037,-5476,-427,-428,-470,-633,-664,-767,-809,-5477,-932,-940,-1107,-1344, --5478,-1430,-1440,-5479,-1471,-1475,-1482,-1534,-1654,-5480,-1729,-1788,-1942,-5481,-2127,-2140,-2379,-5482,-2410,-5483], -[0,-4182,-4058,-2451,-3926,-1463,-1456,-5484,-5485], -[1,3,1392], -[0,1393,1394,1395,4], -[0,-469], -[0,-5475,-3136,-3037,-427,-428,-469,-932,-940,-1344,-1415,-5479,-1534,-1942,-2375,-2410], -[0,-5486,-3815,-3276,-3926], -[0,45,15,16,10], -[1,3,1398], -[0,34,1399,1400,6], -[0,-1813,-5487], -[0,-472], -[1,3,1402], -[0,1403,1404,1405,4], -[0,-5488,-2438], -[0,-5489,-1654,-1788,-2416], -[0,-5490,-5491,-5492], -[1,3,1407], -[0,0,1408,1409,6], -[0,-2162], -[0,-775,-2162,-3160,-3576,-3577,-5493,-5494], -[1,3,1411], -[0,0,0,173,5], -[1,3,1413], -[0,0,0,1414,5], -[0,-475,-3161,-4865,-5176,-5495], -[1,3,1416], -[0,1417,0,1418,5], -[0,-5496,-5497,-7,-8,-9,-5498,-5499,-510,-518,-668,-722,-778,-784,-812,-5500,-834,-5501,-5502,-5503,-1017,-1041,-5504, --1077,-5505,-1107,-1331,-1369,-1376,-5506,-1455,-1490,-1492,-1521,-1522,-1548,-1645,-5507,-1743,-1758,-1812,-1816,-1888, --1908,-2000,-2092,-2114,-2125,-2148,-2163,-5508,-2177,-5509,-2233,-5510,-2275,-2286,-2287,-2330,-2346,-2410,-2437,-2488, --2501, --2505,-2508,-2510,-2567], -[0,-475,-477], -[1,3,1420], -[0,0,0,1421,4], -[0,-5175,-3118,-4865,-5495,-3119,-5511,-3098], -[1,3,1423], -[0,0,1424,1425,9], -[0,-3542,-1202,-5512,-1654,-2343], -[0,-5513,-5514,-5515,-5516,-5517,-5518,-5519,-5520,-5521,-5522,-5523,-5524,-5525,-5526,-5527,-5528,-5529,-5530,-5531, --5532,-5533,-687,-5534,-712,-714,-5535,-4376,-3958,-4000,-5536,-5537,-5538,-5539,-5540,-5541,-5542,-5543,-5544,-1496, --1573,-5545,-5546,-5547,-5548,-5549,-5550,-5551,-5552,-2265,-5553,-3770,-3974,-5554,-3975,-5555,-5556,-2547,-5557], -[1,3,1427], -[0,1428,115,1429,6], -[0,-5558], -[0,-5514,-3974,-4000,-687,-2265,-3975,-5559,-5560,-5538,-5550,-2547,-1573,-5545,-3958,-5554,-5561,-5562,-5412,-707,-5563, --5564,-3965,-5565,-685,-5566,-5567,-5568], -[1,3,1431], -[0,0,1432,1433,10], -[0,-2541,-519,-2384,-480], -[0,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-3958,-5554,-5569,-5570, --5571,-5572,-4004,-5573,-5574], -[1,3,1435], -[0,0,1436,1437,5], -[0,-2541,-519,-2384,-5575], -[0,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958,-5554], -[1,3,1439], -[0,0,0,1440,6], -[0,-5514,-714,-687], -[1,3,1442], -[0,1443,1444,1445,11], -[0,-4903,-5576,-44,-3946,-3763,-5577,-5578,-5579,-513,-786,-809,-5580,-5581,-1548,-1549,-2113,-4951,-5582,-3768,-2345, --5583,-2489], -[0,-21,-23,-26,-34,-35,-36,-5584,-37,-3396,-5585,-3381,-38,-3382,-3412,-39,-40,-42,-86,-3307,-305,-3326,-3732,-3048,-3136, --5586,-3164,-5587,-3661,-3037,-5588,-427,-428,-439,-4837,-5589,-5590,-5591,-5592,-441,-4838,-5593,-4817,-5594,-461,-5595, --518,-523,-528,-533,-534,-538,-5596,-539,-5597,-661,-668,-674,-708,-5339,-5598,-719,-5599,-767, --778,-779,-5600,-807,-5601,-5602,-4978,-5603,-928,-3808,-929,-932,-940,-957,-958,-959,-963,-5604,-967,-980,-1026,-4979, --1077,-1107,-1111,-1125,-1168,-1174,-5605,-1261,-1331,-1344,-5606,-5607,-1415,-1419,-1421,-5608,-5609,-1439,-5610,-3025, --1521,-1522,-5611,-5612,-1534,-5613,-1600,-1601,-1602,-1603,-5614,-1610,-5615,-1643,-1646,-1650,-1662,-1666,-1779,-1889, --1908,-1942, --1952,-1955,-1959,-2000,-4242,-2098,-5616,-5617,-3868,-5618,-2125,-5619,-5620,-2177,-2218,-5621,-2275,-2281,-4997,-4998, --2282,-4999,-2284,-2335,-2347,-2355,-2375,-2376,-2392,-2402,-2410,-5622,-2427,-2437,-5001,-2466,-2476,-5623,-5624,-2478, --2480,-5625,-2481,-5626,-2483,-2484,-5627,-2486,-2501,-2502,-2503,-2505,-2508,-5628,-5002], -[0,-2476,-3944,-3158,-3099,-485,-5629,-3095,-3098,-3160,-3161,-3100], -[1,3,1447], -[0,1448,1449,110,4], -[0,-703,-809,-44,-3165,-2345,-4903,-5630,-5631,-5632,-5633,-4910,-5634,-5635,-4904,-5636,-5637,-5638,-5639,-5640,-5641, --5642,-5643,-5644,-5645,-5646,-5647,-5648,-5649,-5650,-5651,-5652,-5653,-5654,-5655,-5656,-5657,-5658,-4905,-5659,-5660, --5661,-5662,-5663,-5664,-5665,-4951,-5666,-5667], -[0,-469,-1816,-2592,-2323,-2392,-881,-1107,-1415,-1805,-523,-668,-4977,-1344,-1359,-1392,-1449,-5668,-1880,-2006,-2193, --865,-932,-1031,-1437,-1548,-2093,-2125,-5669,-2177,-464,-5595,-5670,-1955,-2402,-2501,-781,-1077,-1103,-4980,-1646, --1662,-1942,-5671,-5002,-767,-5672,-1026,-3134,-4984,-1978,-4985,-2019,-5673,-5674,-1729,-1888,-2094,-2095,-2205,-2214, --2410,-3136,-3037, --5346,-1339,-1534,-2026,-4994,-162,-4647,-5675,-3040,-5676,-5677,-4986,-5678,-5679,-3744,-305,-4964,-3044,-3199,-4973, --1737,-1950,-5680,-2101,-2581,-3778,-5681,-5682,-5683,-4960,-3803,-4972,-3649,-4982,-5684,-4954,-3562,-5685,-3048,-4961, --5686,-3624,-5687,-3051,-4773,-5688,-3052,-1404,-1416,-5689,-2044,-4992,-2090,-3139,-5690,-3746,-4106,-5691,-3745,-3747, --283,-5692,-959,-1352, --4988,-5001,-5693,-1292,-4981,-5694,-406,-4974,-952,-1421,-4989,-5695,-409,-962,-1419,-5696,-5697,-5698,-4983,-2502, --4971,-3459,-5699,-407,-970,-5700,-4963,-5701,-5702,-5703,-410,-2914,-5704,-4968,-5705,-4995,-4990,-4962,-5706,-4955, --5707,-5708], -[1,3,1451], -[0,1452,0,7,5], -[0,-1805], -[0,67,15,16,4], -[1,3,1455], -[0,1456,1457,1458,9], -[0,-3278,-3279,-3299,-3283,-3288,-5709,-5710,-3304,-3305,-5711,-5712,-5713,-5714,-1537,-3297], -[0,-3285,-3286,-3287,-5715,-3302,-3303,-86,-3307,-5716,-3308,-3309,-5717,-3310,-3311,-3312,-5718,-5719,-617,-823,-932, --940,-985,-1004,-1077,-1344,-1442,-1534,-1685,-1724,-1889,-2125,-2127,-5720,-4753,-2210,-2359,-2410,-3313,-2416,-5721, --2446], -[0,-4902,-5722,-3690,-488,-856,-5723,-1789], -[1,3,1460], -[0,1461,1462,174,4], -[0,-620,-719,-5724,-3808,-5725,-1077,-1107,-1276,-1351,-1437,-5726,-1548,-1600,-1753,-1955,-2177,-2275,-2501,-2503,-2520], -[0,-3044,-3621,-3037,-932,-5727,-943,-958,-966,-968,-1654], -[1,3,1464], -[0,1465,1466,1467,4], -[0,-5729,-888,-2177,-2433,-2550], -[0,-4370,-3037,-3199,-3041,-519,-1077,-2410], -[0,-489,-1599,-5730,-3690,-4100,-856,-3262,-5731,-687,-5732,-3958,-3691,-5728,-5733,-5734], -[1,3,1469], -[0,1470,1471,1472,5], -[0,-812,-5735,-1730,-1465,-2456], -[0,-664,-665,-1654,-2210,-2211], -[0,-5736,-5737,-5738,-5739,-5740,-5741], -[1,3,1474], -[0,1475,0,7,4], -[0,-5742,-5743,-3320,-5744,-2387], -[1,3,1477], -[0,1478,0,1479,8], -[0,-5745,-5742,-494,-5743,-5746,-5744,-2387,-5747], -[0,-3217,-4795,-5748,-3214,-5749,-1764,-2006], -[1,3,1481], -[0,1482,1483,7,6], -[0,-5743,-5744,-2387,-5750], -[0,-5751,-3136,-3037,-1122,-1123,-1415,-2125,-2127,-2375,-2388,-2410], -[1,3,1485], -[0,1486,1487,7,6], -[0,-494,-5752,-2387], -[0,-5751,-3136,-5753,-1037,-1122,-1123,-1415,-5754,-2125,-2127,-2375,-2388,-2410], -[1,3,1489], -[0,0,1490,1491,5], -[0,-708,-756,-5755,-796,-1104,-1405,-1654,-1657,-1663,-1788,-2174,-2449], -[0,-5756,-1847,-3590,-2444,-3966,-3551,-3209,-5757,-4792,-3994], -[1,3,1493], -[0,1494,1495,1496,4], -[0,-2959,-5758,-5759,-5760,-5761,-523,-615,-5762,-1548,-1582,-1666,-1667,-5763,-2177,-5764,-2531], -[0,-5765,-5766,-2860,-3470,-3471,-5767,-3044,-3621,-3037,-5768,-3199,-4204,-4733,-664,-665,-741,-1654,-1942,-2174,-2210, --2379,-2410,-2542], -[0,-5769,-5271,-3634,-4864,-3162,-5770], -[1,3,1498], -[0,1499,1500,1501,10], -[0,-5771,-5772,-5773,-5038,-5774,-5775,-5776,-5777,-5778,-5779,-5780,-5781,-5782,-5783,-5784,-5785,-5786,-5787,-5788, --5789,-5790,-5791,-5792], -[0,-1788,-1722,-1654,-2210,-932,-1942,-2410,-5793,-3037,-3621,-4372,-3199,-966,-428,-5794,-427], -[0,-5795,-5796,-5797,-5798,-5799,-5800,-5801,-5802,-5803,-5804,-5805], -[1,3,1503], -[0,1504,1505,1506,5], -[0,-5806,-5807,-5808,-5809,-5810,-5811], -[0,-5812,-3136,-3037,-427,-428,-5813,-932,-940,-948,-958,-967,-1122,-1415,-1942,-5814,-1944,-5815,-2251,-2375,-2379,-2410], -[0,-5816,-5817,-3445,-5818,-1122,-5819,-3967,-2410,-5820], -[1,3,1508], -[0,1509,1510,1511,4], -[0,-5821,-510,-5822,-2062,-5823,-2325,-5824], -[0,-5825,-664,-1446,-1650,-1654,-2125,-5826,-2323,-2555], -[0,-5409,-501,-5827,-5408,-2323], -[1,3,1513], -[0,0,1514,7,8], -[0,-664,-1415,-1942], -[1,3,1516], -[0,0,1517,1518,10], -[0,-32,-5828,-932,-1654,-1788], -[0,-687,-3215,-503,-5829,-4377], -[0,45,15,16,6], -[1,3,1521], -[0,1522,1523,1524,6], -[0,-655,-5830,-5831,-5832], -[0,-5833,-5834,-516,-5835,-932,-993,-1065,-5836,-1365,-1777,-1788,-1794,-2156,-2322], -[0,-5837,-5838,-5839,-5840,-5396,-3582,-5841,-5842,-5843], -[1,3,1526], -[0,0,14,1527,6], -[0,-5839,-506,-5844,-5845,-5846,-5847], -[1,3,1529], -[0,1530,1531,1532,5], -[0,-2444,-5848,-655,-5849,-1797], -[0,-2322,-468,-753,-767,-21,-5850,-23,-1798,-40,-3335], -[0,-507,-4865], -[1,3,1534], -[0,0,1535,7,4], -[0,-2322,-1032], -[1,3,1537], -[0,1538,1539,1540,4], -[0,-820,-5851,-5852,-1794,-5853,-5854], -[0,-633,-1405,-1654,-1939], -[0,-507,-5855,-5856,-509,-3440,-1001,-1003,-2198,-5857,-4679,-4873,-4004,-3634,-3636,-5858,-5119], -[1,3,1542], -[0,0,1543,1544,4], -[0,-1788,-664,-2148,-1446,-1471,-1654,-2550,-932,-2127,-2177,-674,-571,-615,-1077,-589,-633,-23,-925,-1482,-5859,-566, --1472,-5860,-559,-5861,-5862,-32,-1483,-539,-1487,-1479,-5863,-2137,-535,-5864,-549], -[0,-510,-5865,-3551,-3590], -[1,3,1546], -[0,0,1547,1548,9], -[0,-3037,-5866,-2319,-2379,-2410], -[0,-510,-5867,-3184,-1334,-5868,-5149,-1961,-3844], -[1,3,1550], -[0,1551,1552,7,4], -[0,-2122], -[0,-519,-932,-1942,-1729,-1939,-5869,-1534,-969,-933,-958,-940,-962], -[1,3,1554], -[0,0,1555,1556,4], -[0,-23,-5870,-40,-42,-5871,-3136,-533,-756,-1415,-1534,-1763,-5872,-5873,-1939,-1942,-2379,-2410], -[0,-2451,-5874,-510], -[1,3,1558], -[0,0,0,1559,5], -[0,-514,-4865], -[1,3,1561], -[0,1562,1563,1564,6], -[0,-2359,-714,-5875,-2177,-5876,-5877,-5878], -[0,-1788,-2322,-932,-1777,-516,-2156,-5834], -[0,-5879,-5880,-5881,-1764,-5879], -[1,3,1566], -[0,1567,1568,1569,6], -[0,-719,-1276,-5882,-1729,-5883,-2177], -[0,-23,-43,-539,-5884,-664,-708,-767,-1609,-1654,-1788,-2226,-2250], -[0,-5885,-5886,-5887,-5888,-1573,-3262,-5889,-5890,-5891,-1306], -[1,3,1571], -[0,1572,1573,1574,5], -[0,-679,-714,-5892,-5893,-1107,-5894,-1574,-1816,-5895,-2105,-5896,-2550], -[0,-526,-559,-664,-932,-933,-958,-962,-969,-1654], -[0,-5885,-3015,-1380,-5897,-2490], -[1,3,1576], -[0,1577,0,1578,10], -[0,-635,-658,-5898,-1863,-1934], -[0,-518,-775,-5899,-1889,-3583], -[1,3,1580], -[0,1581,1582,1583,8], -[0,-5900,-461,-462,-482,-5901,-506,-5902,-5903,-668,-5904,-680,-5905,-696,-5906,-5907,-5908,-5909,-812,-5910,-1040,-1111, --5911,-1366,-1396,-1398,-5912,-5913,-1681,-1826,-5914,-1864,-1877,-1951,-5915,-4621,-5916,-5917,-2530,-2550], -[0,-5028,-5918,-3037,-480,-652,-999,-1001,-2210,-2319,-2331,-2384,-2410,-2541,-5747], -[0,-5919,-4004,-4043,-3634,-519,-5920,-5921,-5922,-4873,-5732,-687,-1415,-1654,-2322,-2319,-1989,-1412,-507,-5855,-1961, --5923,-510,-5924,-5867,-3262,-5925,-5926,-5927,-5928,-5119,-4045,-1001,-2410], -[1,3,1585], -[0,1586,1587,1588,4], -[0,-668,-909,-1543,-1548,-1639,-1650,-2234,-5929], -[0,-3035,-3044,-4036,-3621,-3037,-3714,-4372,-3046,-615,-664,-5930,-1077,-1344,-1534,-1654,-1942,-5931,-2125,-2195,-2251, --2330,-2388,-2410,-2501,-2503], -[0,-2501,-5932,-5050,-2410], -[1,3,1590], -[0,1591,1592,1593,5], -[0,-2165,-2435,-2444,-2446,-640,-997,-2536,-5933,-5934,-1985], -[0,-664,-1471,-1654,-932,-708,-1412,-2501,-793,-2416,-633,-2410,-3037,-1455,-711,-1413,-1481,-5935,-5936,-1475], -[0,-3690,-5937,-5817,-5938,-5939,-5940,-5941,-5942,-5943,-5944,-5945,-5946,-5947,-5948,-5949,-5950,-5951,-5952,-5953, --5954,-5955,-5956,-5957,-5958,-5959,-5960,-5961,-5962,-5197,-5963,-5964,-5965,-5966,-5967,-5968], -[1,3,1595], -[0,0,1596,1597,4], -[0,-664,-1107,-668,-702,-999,-1127,-1344,-1446,-1449,-1471,-1654,-2210,-932,-1437,-753,-928,-1110,-1821,-1376,-5969,-1942, --2416,-5970,-5113,-5971,-1474,-5972,-2410,-23,-3037,-5973,-925,-5974,-1339,-1482,-1489,-1534,-1771,-5975,-5976,-1320, --1737,-4916,-5977,-5978,-2251,-5979,-40,-5980,-1480,-2173,-5981,-1134,-1149,-1491,-1136,-1148,-5982,-1475,-2253,-3345, --940,-1479, --5983,-5984,-36], -[0,-5985,-4665,-3634,-5119,-4873,-3440,-5986], -[1,3,1599], -[0,1600,1601,1602,4], -[0,-1069,-5987,-1063], -[0,-652,-1168,-668,-1344,-1471,-1654,-2210,-932,-1685,-1831,-2127,-1004,-5988,-1077,-5969,-1646,-756,-767,-1070,-1100, --1276,-3727,-2325,-2410,-23,-617,-925,-1489,-1413,-1948,-5989,-1481,-516,-86,-5990,-40,-5991,-4062,-4066,-3326,-1488, --2140,-5992,-1475,-1487,-1479,-1490,-350,-5993,-1486,-5994,-5995,-351,-5996,-5997,-3307], -[0,-2533,-1334,-5998,-1961,-3966,-4865,-4213,-3691,-3690,-3323], -[1,3,1604], -[0,1605,1606,1607,4], -[0,-5999,-1015,-6000,-6001,-2062,-2105,-2424,-2446,-2451,-2536,-2538,-1456], -[0,-6002,-633,-756,-6003,-1127,-1154,-2778,-1405,-1471,-1475,-1478,-6004,-1479,-1480,-1482,-1483,-1654,-1657,-1722,-2198, --2416,-2491], -[0,-3966,-5800,-6005], -[1,3,1609], -[0,1610,1611,137,4], -[0,-527,-556,-566,-567,-719,-742,-3179,-1107,-1548,-6006,-1850,-2218,-2231,-6007,-679], -[0,-530], -[1,3,1613], -[0,1614,1615,138,9], -[0,-6008,-529,-6009,-6010,-566,-567,-568,-569,-570,-572,-742,-812,-1460,-1548,-1645,-1850,-6011,-2218,-2231], -[0,-530,-6012,-556], -[1,3,1617], -[0,1618,1619,7,5], -[0,-2114,-47,-25,-46,-22,-983], -[0,-1344,-1654,-815,-932,-986,-1942,-1534,-528,-6013,-958,-956,-967], -[1,3,1621], -[0,1622,1623,7,5], -[0,-6010,-567,-570,-831,-1451,-1548,-2231,-6014], -[0,-530,-572], -[1,3,1625], -[0,1626,0,7,4], -[0,-567,-1548,-6015,-2177], -[1,3,1628], -[0,1629,0,7,5], -[0,-567,-6012], -[1,3,1631], -[0,0,0,1632,6], -[0,-525,-2476,-4146], -[1,3,1634], -[0,1635,1636,7,4], -[0,-4020,-4776,-539,-6016,-668,-1119,-2218], -[0,-23,-4034,-4035], -[1,3,1638], -[0,175,1639,1640,8], -[0,-21,-23,-32,-40,-652,-932,-940,-967,-1110,-1344,-1534,-1942,-2501], -[0,-2501,-5932,-525,-3184,-3186,-3551], -[1,3,1642], -[0,0,1643,1644,8], -[0,-23,-34,-40,-526,-527,-528,-5884,-6017,-558,-6018,-560,-568,-570,-6019,-932,-940,-943,-958,-966,-967,-968,-974,-1654, --1938,-1942,-2125,-2156], -[0,-3220,-6020], -[1,3,1646], -[0,1647,1648,1649,4], -[0,-1797], -[0,-2322,-932,-2125,-526,-527,-1365,-23,-528,-566,-6021,-40,-557,-559,-2156,-958,-934,-537,-3840,-535,-3382,-6022,-550], -[0,-525,-3862,-6023,-6024,-3966], -[1,3,1651], -[0,116,35,21,5], -[1,3,1653], -[0,1654,1655,1656,10], -[0,-3341], -[0,-23,-41,-6025,-527,-6026,-756,-932,-933,-940,-958,-967,-1031,-1344,-1534,-1613,-1763,-1942,-6027], -[0,-3220,-485], -[1,3,1658], -[0,1659,1660,1661,4], -[0,-24,-6028,-4003,-6029,-6030], -[0,-21,-23,-3362,-3204,-43,-664,-756,-767,-1654,-1788,-6031,-2250], -[0,-1405,-525,-3862,-6032], -[1,3,1663], -[0,1664,1665,1666,4], -[0,-3341,-47,-1107,-1548,-6033], -[0,-21,-23,-6034,-36,-3201,-3077,-38,-40,-41,-6035,-43,-4754,-510,-535,-540,-664,-6036,-6037,-1549,-1654,-1993,-2011], -[0,-3220,-6038,-1548,-3209], -[1,3,1668], -[0,1669,1670,1671,6], -[0,-6039,-1107,-1872,-2112,-2114], -[0,-21,-23,-37,-3204,-40,-527,-533,-722,-932,-934,-940,-958,-1344,-1415,-1534,-6040,-2251], -[0,-525,-3220,-3551,-6041,-6042,-6043,-2114,-6044,-6045,-4792,-6024], -[1,3,1673], -[0,0,1674,7,5], -[0,-1415,-6046], -[1,3,1676], -[0,0,0,21,5], -[1,3,1678], -[0,0,0,21,4], -[1,3,1680], -[0,1681,35,21,5], -[0,-6047,-6048,-567], -[1,3,1683], -[0,1684,35,21,5], -[0,-6049,-6050,-567,-568], -[1,3,1686], -[0,1687,1688,1689,6], -[0,-6051,-567,-568], -[0,-526,-546,-555,-559,-664,-1654], -[0,-525,-3220,-6052,-3336], -[1,3,1691], -[0,1692,35,21,5], -[0,-567,-568,-569,-570,-1548], -[1,3,1694], -[0,1695,1696,21,6], -[0,-6053,-567,-568,-570], -[0,-531,-6054], -[1,3,1698], -[0,116,35,21,10], -[1,3,1700], -[0,1701,35,21,4], -[0,-6054,-567], -[1,3,1703], -[0,1704,35,21,5], -[0,-567,-6055,-544], -[1,3,1706], -[0,0,1707,1708,4], -[0,-21,-23,-3194,-3840,-26,-3203,-40,-6056,-41,-43,-528,-6057,-664,-932,-933,-951,-956,-958,-962,-964,-967,-969,-1111, --1654,-6058,-1942], -[0,-525,-3220,-2006,-6059,-6060], -[1,3,1710], -[0,1711,35,7,4], -[0,-6061], -[1,3,1713], -[0,116,35,21,4], -[1,3,1715], -[0,1716,0,7,6], -[0,-567,-753,-2082], -[1,3,1718], -[0,1719,1720,1721,6], -[0,-40,-41,-24,-3352,-38,-6062,-5584,-36,-3381,-6063,-3382,-6064,-553,-3393,-6065,-3396], -[0,-932,-23,-44,-2156,-958,-934], -[0,-525,-3184,-4795,-3214], -[1,3,1723], -[0,1724,1725,7,5], -[0,-6066,-6067,-545,-6068,-6069,-548,-6070,-6071,-6072,-6073,-6074,-6075,-6076,-6077,-549,-6078,-6079,-6080,-6081,-6082, --6083,-6084,-550,-6085,-6086,-6087,-554,-635,-1384,-2177], -[0,-526,-528,-530,-531,-539,-558,-566,-664,-708,-932,-6013,-956,-1077,-1548,-1654,-1788,-6088,-2125], -[1,3,1727], -[0,1728,1729,7,6], -[0,-6066,-6068,-6069,-548,-6070,-6071,-6072,-6073,-6074,-6075,-6076,-6077,-549,-6078,-6079,-6080,-6081,-6082,-6083,-6084, --550,-6085,-6086,-554], -[0,-6012,-531], -[1,3,1731], -[0,1732,0,7,8], -[0,-6089,-544,-6090,-552,-6091,-6092], -[1,3,1734], -[0,1735,0,7,4], -[0,-23,-26,-33,-6065,-6062,-5584,-6093,-3394,-3203,-3409,-38,-40,-41,-42,-44,-3766,-553], -[1,3,1737], -[0,1738,0,7,9], -[0,-6094,-6095,-563], -[1,3,1740], -[0,1741,0,7,5], -[0,-6096,-6017,-564], -[1,3,1743], -[0,1744,0,7,4], -[0,-565,-6097,-543,-546], -[1,3,1746], -[0,1747,0,7,5], -[0,-6067,-6098,-545,-6087,-551], -[1,3,1749], -[0,1750,1751,7,4], -[0,-527,-567,-753,-6099,-1548,-1650,-2234], -[0,-3542], -[1,3,1753], -[0,140,1754,7,8], -[0,-6009,-555], -[1,3,1756], -[0,1757,0,7,4], -[0,-567,-569,-570,-572,-1548], -[1,3,1759], -[0,1760,1761,7,5], -[0,-6008,-6010,-567,-570,-572,-812,-1110,-1384,-1548], -[0,-529], -[1,3,1763], -[0,1764,1765,7,6], -[0,-567,-6100,-1548,-6101], -[0,-529,-572], -[1,3,1767], -[0,0,1768,7,5], -[0,-2319,-633,-23,-6102,-40,-6056,-742,-41,-6103,-3381,-3409], -[1,3,1770], -[0,0,1771,1772,6], -[0,-519,-526,-528,-530,-537,-539,-6104,-559,-562,-668,-708,-767,-932,-6013,-956,-1059,-1788,-2125,-2127,-2128,-2137,-5385, --6105], -[0,-525,-3214,-3215,-572], -[1,3,1774], -[0,1775,1776,1777,4], -[0,-2424], -[0,-711,-757,-849,-932,-958,-1471,-1485,-1989,-2104,-2127,-2416], -[0,-6106,-6107,-5394,-3122,-3844,-3323,-4865], -[1,3,1779], -[0,1780,1781,1782,11], -[0,-719,-1107,-1376,-1805,-2125,-2387,-2446,-2451], -[0,-6108,-3036,-3049,-3037,-3738,-6109,-3046,-427,-428,-3311,-6110,-6111,-3312,-664,-932,-958,-966,-1654,-1656,-6112, --2195,-2200,-2335,-2376,-2379,-2402,-2410,-5260,-2501,-2503], -[0,-3445,-574,-1671,-3105,-6113], -[0,44,15,16,4], -[1,3,1785], -[0,0,1786,1787,5], -[0,-756,-1127,-1132,-1162,-6114,-1405,-1654,-2081], -[0,-6115,-6116,-6117,-6118,-514,-638], -[0,45,15,16,11], -[1,3,1790], -[0,0,1791,1792,8], -[0,-5859,-589,-633,-2322], -[0,-6118], -[1,3,1794], -[0,177,1795,1796,5], -[0,-1654,-932,-1405,-966,-958,-968,-943,-963,-974], -[0,-6119,-6120,-6121,-6122], -[1,3,1798], -[0,1799,1800,1801,4], -[0,-888,-1645,-1646,-1650,-6123], -[0,-932,-943,-958,-966,-968,-974,-1654,-2125,-2293,-2369,-2418,-2450], -[0,-1004,-3161,-6124,-6125,-6126,-1752,-3578,-3691,-5728,-3122,-3994,-1954,-3445,-3690], -[1,3,1803], -[0,1804,1805,178,4], -[0,-1723,-6127], -[0,-1415,-6128], -[1,3,1807], -[0,0,0,1808,4], -[0,-581,-3214,-3756,-6131,-5110,-6120,-3173,-6129,-6130,-770], -[1,3,1810], -[0,0,1811,178,8], -[0,-581,-6132,-1942,-2410], -[1,3,1813], -[0,1814,1815,1816,9], -[0,-6133,-719,-679], -[0,-1003,-1127,-600,-1130,-1156,-1134,-1148], -[0,-6134,-6135,-6136,-6137,-6138,-6139,-3870,-6140,-6141,-6142,-6143,-6144,-6145], -[1,3,1818], -[0,0,0,1819,5], -[0,-589,-6146], -[0,68,15,16,8], -[1,3,1822], -[0,1823,1824,1825,8], -[0,-1640,-1805,-2518,-2546,-1519,-2114,-2346,-679,-1646,-6176,-1888,-1948,-725,-6177,-2062,-6178,-6179,-6180], -[0,-6181,-4215,-2322,-2363,-1405,-2491,-633,-6182], -[0,-6183,-633], -[0,45,15,16,4], -[1,3,1828], -[0,1829,1830,1831,11], -[0,-1548,-6184], -[0,-756,-6185,-1405,-6186,-1991,-2111], -[0,-589,-6187,-6188], -[0,45,15,16,5], -[1,3,1834], -[0,1835,0,1836,9], -[0,-6189,-6190,-6191,-23,-3194,-25,-26,-6093,-5828,-3355,-3204,-3408,-40,-42,-46,-4228,-4145,-3037,-469,-6192,-501,-510, --674,-679,-683,-714,-6193,-742,-1070,-1323,-6194,-1729,-1847,-1942,-6195,-2162,-2228,-2231,-2245,-2299,-2410,-2416,-6196, --2476,-2550,-1376,-6197], -[0,-6198,-6199,-6200,-6201,-6202,-6203,-3161,-2410,-3214,-3018,-5065,-4726,-3445,-6204,-6205,-6206,-6207,-6208,-6209, --6210,-6211,-6212,-6213,-6214,-6215,-4160,-6216,-6217,-2006,-6218,-6219,-2476,-6220,-6221,-4726,-2299,-6222,-6223,-2228, --6224], -[1,3,1838], -[0,1839,1840,1841,10], -[0,-6225,-6226,-6227], -[0,-523,-664,-932,-1654,-6228,-1972,-6229], -[0,-4055,-6230,-6231,-2487,-1838,-3215,-6232,-6233,-2059,-6234,-510,-6235], -[1,3,1843], -[0,0,0,1844,5], -[0,-6236,-6237,-6238,-6239,-6240,-6241,-6242,-6243,-6244,-6245,-6246,-6247], -[1,3,1846], -[0,1847,0,1848,8], -[0,-6248], -[0,-5269,-6249,-596,-6250,-5968,-6251,-6252], -[1,3,1850], -[0,1851,1852,7,4], -[0,-6253], -[0,-1788,-2322,-2388,-1942,-1729,-1972,-2410,-3037], -[1,3,1854], -[0,1855,1856,1857,9], -[0,-6254,-6255,-6256,-6257,-3204,-38,-2687,-6022,-6258,-2965,-6259,-2489], -[0,-6260,-21,-23,-3204,-40,-6261,-43,-44,-4757,-2697,-358,-6262,-6263,-4754,-6264,-4956,-4749,-4959,-409,-3136,-3052, --6265,-6266,-6021,-6267,-533,-534,-6268,-6269,-539,-557,-560,-6026,-567,-6270,-683,-756,-767,-799,-6271,-932,-6272,-1168, --1261,-1266,-6273,-1365,-1415,-1422,-1440,-1666,-6274,-1743,-1763,-1771,-1782,-1788,-1939,-1942,-2000,-2006,-2019,-6275, --6276,-2125,-2156,-2163,-6277,-2275,-2375,-2376,-2410,-2501,-2502,-2503], -[0,-598,-6278], -[1,3,1859], -[0,1860,1861,1862,8], -[0,-6279,-640,-1370,-2062], -[0,-1032,-2250,-2322,-2410], -[0,-640,-6280,-5827,-6281], -[1,3,1864], -[0,1865,1866,1867,5], -[0,-461,-6282,-6283,-1402,-1795,-2546], -[0,-510,-6284,-710,-1127,-1132,-1134,-1136,-1144,-1148,-1542,-1654,-1859,-2111,-2006,-6285], -[0,-4005], -[1,3,1869], -[0,0,0,1870,5], -[0,-6286,-6287,-6288,-6289,-6290], -[1,3,1872], -[0,1873,1874,7,6], -[0,-6291,-668,-6292,-1548,-6293,-1610,-6294,-6295,-1627,-6296,-6297,-2269,-6298,-6299], -[0,-6300,-601,-714,-932,-943,-958,-966,-968,-974], -[0,45,15,16,8], -[0,67,15,16,10], -[0,67,15,16,5], -[0,67,15,16,6], -[1,3,1880], -[0,0,1881,1882,5], -[0,-1405], -[0,-6301,-5389,-6302,-6187], -[1,3,1884], -[0,0,1885,1886,5], -[0,-705,-2152,-1107,-1805,-461,-6303,-1654,-2210,-1452,-1650,-2125,-6304,-615,-1303,-1405,-1813,-693,-2416,-462,-633,-617, --769,-2187,-1453,-1161], -[0,-1961,-6187,-5923,-6305,-6306,-510,-5867,-6307,-6308,-6309,-6310,-6311,-6312], -[1,3,1888], -[0,0,1889,1890,6], -[0,-1654,-6313,-953], -[0,-6314,-6315,-6316,-6317,-6318], -[1,3,1892], -[0,1893,81,7,6], -[0,-651,-737,-812,-1335,-1351,-1800,-1983,-1999,-2401], -[1,3,1895], -[0,1896,1897,1898,4], -[0,-615,-6319,-1369,-1548], -[0,-6320,-664,-932,-940,-967,-1344,-1446,-1497,-1534,-1654,-1691,-1788,-1857,-1942,-2210,-2211,-2245,-2446], -[0,-1818,-1691,-6321,-3742,-6322,-6323], -[1,3,1900], -[0,182,1901,1902,4], -[0,-707,-1510,-1607], -[0,-6324,-1334], -[1,3,1904], -[0,0,1905,148,4], -[0,-1389,-2564,-1640,-2162,-2834,-1471,-932,-1111,-1437,-2093,-2127,-2149,-2334,-1412,-1442,-1753,-1889,-2195,-3574,-1942, --699,-767,-3031,-2281,-21,-1354,-23,-6325,-3563,-1333,-1891,-2096,-6326,-518,-1772,-3559,-3564,-1481,-1547,-6327,-6328, --2997,-3660,-3803,-3649,-3562,-6329,-945,-3566,-2429,-40,-6330,-957,-3326,-958,-978,-1475,-1477,-6331,-3561,-963,-1479, --3571, --350,-6332,-2084,-1486,-3565,-351,-1473,-3569,-3573,-3568], -[1,3,1907], -[0,0,1908,1909,4], -[0,-2162,-6333,-888], -[0,-620,-2162,-775,-6334], -[1,3,1911], -[0,0,0,1912,4], -[0,-622], -[1,3,1914], -[0,1915,1916,1917,8], -[0,-2728,-656,-668,-688,-2267,-2400,-2820,-2528], -[0,-519,-1788,-2384,-2541], -[0,-687,-6335,-6336,-3974,-4110,-4000,-4111,-4112,-6337,-5554], -[1,3,1919], -[0,1920,1921,1922,4], -[0,-6338,-2114,-6339,-2347], -[0,-633,-725,-2319,-2346], -[0,-633,-6340,-1076,-6341,-3862,-5142,-6342,-4161,-6118], -[1,3,1924], -[0,1925,1926,1927,4], -[0,-812,-1645,-2488,-6343,-6344,-6345,-6346], -[0,-664,-1654,-2125,-1077,-2091,-6347,-964,-630,-6348], -[0,-6346,-3214], -[1,3,1929], -[0,1930,1931,1932,4], -[0,-6346,-6349], -[0,-6350,-630,-664,-1654,-6347], -[0,-6346,-1631,-6351], -[1,3,1934], -[0,1935,1936,7,6], -[0,-3628,-2731,-1054,-6345,-2359,-2488], -[0,-3035,-3621,-3037,-6352,-664,-726,-1654,-6353,-1788,-1942,-6354,-2388,-2389,-6355,-2410], -[1,3,1938], -[0,1939,1940,1941,6], -[0,-6356,-6357,-6358,-668,-679,-729,-731,-6359,-6360,-6361,-990,-1072,-1077,-1336,-1361,-1639,-1812,-5763,-1999,-6362, --2152,-2178,-2186,-2187,-2188,-2228,-2594,-2550], -[0,-3037,-6363,-664,-6364,-1119,-5735,-1654,-1942,-1980,-2105,-2111,-2125,-2210,-2229,-2234,-2269,-2293,-2410,-2460], -[0,-6365,-775,-6366,-6367], -[1,3,1943], -[0,1944,1945,1946,5], -[0,-2435,-1107,-2444,-2546,-507,-640,-997,-1285,-6368,-6369,-6370,-1958,-2114,-1370,-1977,-2347,-6371,-6372,-1464,-6373, --6374,-2194,-6375,-6376,-6377,-725,-6378,-6379,-6380,-6381,-6382,-6383,-6384,-6385,-6386,-1848,-6387,-2062,-6388,-6389, --771,-6390,-6391,-6392,-6393,-6394,-5936,-6395], -[0,-6396,-2319,-2330,-2177,-2346,-573,-6397,-6398,-710,-6399,-6400,-6401,-6402], -[0,-4865,-4792,-4791,-6403,-4161,-1764,-3214], -[1,3,1948], -[0,1949,1950,1951,9], -[0,-6404,-6405,-6406,-2114,-2346], -[0,-1449,-1705,-1972,-2105,-2125,-2319,-6407], -[0,-633,-6340,-5396,-1109,-1110,-6408,-6409,-4791], -[1,3,1953], -[0,1954,0,1955,9], -[0,-6410,-658,-6088,-6411,-6412], -[0,-657,-6413,-6414], -[1,3,1957], -[0,1958,1959,1960,11], -[0,-6415], -[0,-2322,-2125,-2410,-3037,-6416], -[0,-6417,-6418,-770,-6419,-6420,-6421,-6422,-5835,-6423], -[1,3,1962], -[0,0,1963,1964,10], -[0,-1788,-2323,-2384,-664,-2446,-668,-1654,-2210,-932,-2127,-2379,-1942,-589,-1729,-2211,-2410,-3035,-3037,-3621,-4372, --1588,-3625,-2234,-977,-940,-967,-262,-3267,-428,-351,-6424,-427,-234], -[0,-1671,-637,-3215], -[1,3,1966], -[0,0,0,1967,6], -[0,-638,-4865], -[1,3,1969], -[0,1970,1971,1972,8], -[0,-461,-6425,-6426,-668,-1588,-1646,-6427], -[0,-6428,-932,-1107,-1654,-2125,-2127,-6429,-350,-4062,-351,-2231,-2234,-6430], -[0,-3214,-6431,-6432,-6433,-4795,-6434,-3184,-6052], -[1,3,1974], -[0,1975,1976,1977,11], -[0,-578,-5933], -[0,-468,-589,-633,-725,-1345,-5852,-5848,-2239,-2322,-2347,-2416], -[0,-6435,-4865,-633,-640,-6436,-6437,-6438], -[1,3,1979], -[0,0,1980,1981,4], -[0,-5834,-515,-516,-932,-1365,-1777,-2156,-2322], -[0,-640,-6439], -[1,3,1983], -[0,1984,1985,1986,4], -[0,-6127], -[0,-1654,-1733,-6128], -[0,-642], -[1,3,1988], -[0,0,14,1989,5], -[0,-6440,-6441,-6442,-3966,-3209,-3103,-6443,-4108,-5839,-6444], -[1,3,1991], -[0,0,1992,1993,5], -[0,-784,-1891,-1942,-2125,-2162], -[0,-775,-2162,-3754,-6445,-4672,-3576,-3161], -[1,3,1995], -[0,1996,1997,1998,5], -[0,-3417,-6446,-6447,-303,-304,-6448,-6449,-5007,-523,-668,-812,-6450,-6451,-1805], -[0,-4367,-4368,-3035,-3198,-6452,-3621,-3037,-4372,-427,-664,-932,-938,-939,-940,-967,-1654,-1661,-1722,-1763,-1788,-4362, --2200,-2210,-2379,-2410], -[0,-3690,-856,-3438,-3328,-6453,-687], -[1,3,2000], -[0,2001,31,2002,5], -[0,-6376,-6399,-725,-6282,-1646,-2347], -[0,-633,-4161,-6454,-1644,-4792], -[1,3,2004], -[0,2005,2006,2007,6], -[0,-6455,-1666,-6456,-6457], -[0,-6458,-2319,-2454,-2456,-1607], -[0,-1573,-5545,-6459,-4055,-648], -[1,3,2009], -[0,2010,2011,2012,6], -[0,-6460], -[0,-6461,-932], -[0,-6462,-4054,-6463,-1069], -[1,3,2014], -[0,2015,2016,2017,4], -[0,-1578], -[0,-6464,-6465,-6466,-6467,-6468,-6469], -[0,-5149,-5839,-640,-6435,-6470,-650,-4055,-2512,-6471], -[1,3,2019], -[0,0,2020,2021,4], -[0,-932,-963,-1654,-1788], -[0,-6472,-651,-3590,-1838,-3215,-5845,-6473], -[1,3,2023], -[0,2024,2025,2026,4], -[0,-6474,-4003,-1047,-6475,-5086,-5087,-5089,-6030,-6476,-2550,-2551], -[0,-3037,-664,-6477,-767,-1654,-2250,-2379,-2410], -[0,-4005,-6478,-4004,-1405,-6479,-6480,-3966], -[1,3,2028], -[0,0,2029,7,5], -[0,-3446,-1415,-999,-1344,-1111,-2127,-928,-5354,-2375,-2379,-2402,-1077,-1942,-6481,-2410,-23,-3136,-1534,-1607,-3048, --2174,-6482,-2132,-6483,-350,-796,-351,-6484], -[1,3,2031], -[0,2032,2033,2034,11], -[0,-1495,-6485], -[0,-2581,-6486,-6487,-3037,-3664,-6488,-6489,-2125,-2391,-2410,-2469,-6490], -[0,-3324,-6491,-6492,-3966,-4601,-6493,-2071,-1622,-6494,-6495,-6496,-6497,-6498,-6499,-6500], -[1,3,2036], -[0,2037,2038,2039,4], -[0,-6501,-6502,-6503,-6504], -[0,-5834,-516,-5835,-921,-932,-993,-1065,-5836,-1365,-1777,-1788,-1794,-2156,-2322], -[0,-3214,-3217,-6505,-3756,-6506,-6507,-6508,-6509,-6510,-655,-6511,-5924,-5831], -[1,3,2041], -[0,0,14,2042,4], -[0,-656,-6512,-6513,-6514,-6515,-6516,-864,-2424,-6517,-2265,-5554,-5845,-6518,-6519], -[1,3,2044], -[0,0,0,2045,4], -[0,-5180,-5177,-3839,-4865], -[1,3,2047], -[0,0,0,2048,5], -[0,-6520], -[1,3,2050], -[0,2051,2052,2053,9], -[0,-1723,-6521], -[0,-3037,-6522,-1004,-1442,-1654,-1870,-2250,-2384,-2410], -[0,-659,-6523,-6524,-6525,-6526,-6527,-5093,-6528], -[0,45,15,16,9], -[1,3,2056], -[0,0,2057,2058,4], -[0,-516,-932,-934,-958,-1077,-1654,-2501], -[0,-2501,-3862,-6529,-6024,-4792], -[1,3,2060], -[0,0,0,2061,5], -[0,-1859,-6530,-4004,-3634,-6531], -[1,3,2063], -[0,0,2064,2065,5], -[0,-652,-6532,-1654,-932,-928,-1110,-6533,-820,-1942,-190,-2410,-6534,-6535,-3311,-960,-6536,-350,-3312], -[0,-4004,-5855,-507,-3634,-664], -[1,3,2067], -[0,2068,2069,2070,5], -[0,-6534], -[0,-652,-664,-1654,-932,-1110,-1942,-190], -[0,-664,-6537,-4865,-510,-3634,-6538,-5923,-6306], -[1,3,2072], -[0,0,183,2073,9], -[0,-664,-1841,-6539], -[1,3,2075], -[0,0,2076,2077,9], -[0,-664,-1654,-1405,-756,-6347,-6540], -[0,-664,-6537,-6541,-6542,-6543,-3862,-6544,-6545,-6546,-5572,-6547,-6548,-6549], -[1,3,2079], -[0,0,2080,2081,8], -[0,-652,-2541,-519,-2384,-999,-1612,-1575,-6550,-3037,-3523], -[0,-712,-5535,-714,-3974,-4000,-687,-2265,-5514,-5553,-3770,-3975,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958,-5554], -[1,3,2083], -[0,0,2084,2085,10], -[0,-519,-528,-756,-6551,-932,-6552,-1168,-6553,-1197,-1243,-1252,-6554,-1548,-1788,-1976], -[0,-669,-6555,-3262,-4004,-6556,-6557,-6558,-6559], -[1,3,2087], -[0,0,0,2088,5], -[0,-5888,-6514,-5845,-6408,-6512,-6519,-6560,-6561,-6562], -[1,3,2090], -[0,2091,2092,7,4], -[0,-6563,-6564,-734,-6565,-3446,-6566,-6567,-1805,-1852,-6568,-6569,-2177,-6570], -[0,-3037,-3199,-3664,-932,-944,-1431,-1942,-2251,-2410,-2423,-2469], -[1,3,2094], -[0,2095,2096,2097,4], -[0,-6571], -[0,-350,-6572,-4062,-351,-367,-426,-6573,-427,-428,-6574,-6575,-6576,-726,-756,-767,-932,-6577,-6578,-957,-963,-985,-1107, --1412,-1413,-1471,-1475,-1476,-1478,-1479,-1481,-3569,-1486,-6579,-1491,-3222,-1666,-1667,-1870,-2127,-2130,-3571,-6580, --2140,-2410,-2550], -[0,-659,-6581,-6582,-6583,-5177,-3576], -[1,3,2099], -[0,2100,2101,2102,11], -[0,-1839,-2426,-6584,-6585,-1333,-6586,-861,-6587,-6588,-6589,-6590], -[0,-2392,-2386,-1344,-1449,-932,-1437,-2469,-1110,-1942,-2354,-190,-2410,-3037,-1534,-4647,-3615,-6591,-965,-6592,-2411, --3664,-960,-6593,-978,-1943,-6594,-940], -[0,-6595,-1437,-3585,-6596,-3215,-5092,-6597,-3264], -[1,3,2104], -[0,2105,2106,2107,5], -[0,-769,-6598,-1962], -[0,-526,-6066,-548,-559,-664,-932,-1452,-1654], -[0,-6599,-1958,-5923], -[1,3,2109], -[0,2110,2111,2112,4], -[0,-44,-6600,-3946,-6601,-5579,-513,-595,-6602,-682,-709,-5212,-747,-753,-761,-6603,-6604,-6605,-6606,-5581,-6607,-3135, --6608,-6609,-1398,-1442,-6610,-1452,-6611,-6612,-5216,-1666,-6613,-1942,-4918,-6614,-6615,-1992,-4930,-4987,-6616,-6617, --6618,-6619,-2027,-2029,-6620,-6621,-2040,-2048,-2056,-2113,-6622,-4951,-2192,-6623,-2387,-2424,-2489,-2446], -[0,-23,-26,-33,-34,-35,-36,-3396,-5585,-3381,-6624,-38,-3351,-3382,-40,-41,-3744,-3746,-3747,-3562,-3059,-6625,-6626, --3043,-6627,-6628,-3136,-6629,-3044,-6630,-6631,-5221,-3040,-6632,-3052,-6633,-6634,-4972,-427,-428,-482,-518,-523,-527, --528,-533,-534,-538,-5596,-3133,-6635,-6636,-6637,-6638,-661,-668,-5598,-719,-767,-778,-3078,-786,-4977,-5603, --915,-916,-2760,-932,-933,-940,-951,-958,-959,-962,-963,-969,-6639,-1017,-1021,-4979,-1041,-1074,-1103,-1107,-1168,-1174, --1252,-5605,-1261,-1344,-1352,-1360,-6640,-1415,-1449,-3134,-1521,-5611,-1534,-1548,-4984,-5613,-6641,-5615,-1643,-1646, --1650,-1652,-1653,-1662,-1664,-1667,-1792,-1814,-1889,-1908,-1952,-4923,-6642,-6643,-4986,-2006,-2012,-2013,-2016,-2017, --3145,-3143, --6644,-2028,-6645,-4242,-2098,-5616,-5617,-3868,-5618,-2125,-5619,-6646,-2281,-4997,-4998,-2282,-4999,-2284,-2335,-2347, --2376,-2410,-2427,-2437,-6647,-6648,-2501,-6649,-2508,-5628,-5002,-3120,-2534], -[0,-6650,-3099,-2006,-3159,-3095,-3098,-3160,-3161,-3100], -[1,3,2114], -[0,2115,2116,2117,4], -[0,-6651], -[0,-6652,-3037,-1942,-2358,-2410,-4701], -[0,-1076,-2490,-6653,-6654,-6655,-6656,-1080], -[1,3,2119], -[0,0,2120,184,5], -[0,-686,-1344,-2910,-2250,-2322], -[1,3,2122], -[0,2123,0,2124,5], -[0,-81,-66,-3512,-73,-74,-3520,-62,-6660,-3503,-3502,-71,-6661,-79,-83,-68,-72,-80,-82,-85,-70,-6662,-6663,-6664,-6665, --63,-6666,-3519,-3513,-64,-6667,-76,-54,-6668,-67,-69,-6669,-6670,-6671,-3521,-6672,-6673,-56,-75,-6674,-55,-6675,-6676, --3515,-6677,-65,-3504,-3511,-6678,-6679,-52,-3514,-6680,-3526,-77,-6681,-6682], -[0,-3488,-681,-3489,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161], -[1,3,2126], -[0,0,2127,2128,5], -[0,-2384,-2127,-2354,-1339,-1605,-4062,-350,-351], -[0,-2006,-775,-3205,-6683,-682,-2444,-3590], -[1,3,2130], -[0,185,2131,2132,5], -[0,-633,-932,-934,-1336,-1722,-2188,-2471], -[0,-775,-6684], -[1,3,2134], -[0,2135,2136,2137,10], -[0,-824], -[0,-21,-23,-40,-42,-6685,-3136,-3037,-6686,-533,-708,-767,-825,-932,-999,-1344,-1415,-1534,-1535,-1763,-1942,-2061,-2177, --6687,-2410,-2501], -[0,-2501,-3862,-6688,-3966], -[1,3,2139], -[0,0,0,2140,5], -[0,-5514,-685,-3974], -[1,3,2142], -[0,186,14,2143,8], -[0,-685,-3551,-4792,-6024,-3324,-6690,-6691,-6692,-3346,-6693,-6694,-6695,-1072], -[1,3,2145], -[0,2146,0,2147,5], -[0,-1107,-1000], -[0,-687,-4376,-6696,-6697,-6698,-4377,-4000,-6699,-6700,-6701,-3957,-6702], -[1,3,2149], -[0,0,2150,2151,8], -[0,-519,-2410,-2541], -[0,-687,-6335,-6336,-3974,-4110,-4000,-4111,-4112,-6337,-5554,-4055], -[1,3,2153], -[0,2154,2155,2156,4], -[0,-6703,-922,-6704,-5969,-6705], -[0,-932,-6706,-6707,-6708,-1344,-1534,-1788,-6709,-6710], -[0,-5514,-712,-4000,-3974,-687,-5550,-1573,-5545,-2547], -[1,3,2158], -[0,2159,2160,2161,11], -[0,-2120], -[0,-3037,-519,-2410,-2541], -[0,-687,-5564,-5514,-6711,-6712,-6713,-6714,-4110,-3974,-4000,-3975,-5550,-3958], -[1,3,2163], -[0,0,0,2164,9], -[0,-687], -[1,3,2166], -[0,0,2167,2168,4], -[0,-519,-1575,-6715,-2410,-2541], -[0,-687,-6716,-6717,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117,-4055], -[1,3,2170], -[0,187,2171,2172,10], -[0,-2198,-6718], -[0,-687,-714,-4002], -[1,3,2174], -[0,2175,2176,188,5], -[0,-1548,-2267,-714], -[0,-6719,-664,-693,-756,-6720,-6721,-1168,-1220,-1231,-1266,-2210,-2211], -[1,3,2178], -[0,117,2179,188,10], -[0,-693,-932,-940,-967,-1415,-6725,-6726,-1942], -[1,3,2181], -[0,2182,14,2183,10], -[0,-2219,-2267], -[0,-6727,-6728,-5554,-6729,-4783,-687,-3974,-4110,-5550,-6730,-5514,-2265], -[1,3,2185], -[0,2186,2187,76,4], -[0,-668,-2387,-1401,-1548,-2177,-1442,-6731,-1077,-2269,-303,-482,-4366,-6732,-480,-5676,-2267,-6733,-6734,-1366,-6735, --2297,-6736,-6737,-6738,-2591], -[0,-664,-523,-1654,-932,-2379,-4361,-2410,-3035,-3037,-3621,-3044,-3199,-3660,-3048,-665,-6739,-6740,-4369,-938,-6741, --4373,-4269,-939], -[1,3,2189], -[0,2190,2191,2192,5], -[0,-3922], -[0,-351,-3267,-3136,-3044,-3037,-6742,-427,-428,-6743,-6744,-932,-6745,-969,-1100,-1415,-1548,-2127,-6746,-2375,-2379, --2410], -[0,-687,-2410,-3215,-6747,-6748,-4377,-5829,-3957], -[1,3,2194], -[0,2195,2196,2197,5], -[0,-6749,-6750,-6751], -[0,-23,-40,-534,-664,-767,-932,-934,-940,-958,-967,-1344,-1471,-1474,-1475,-1482,-1489,-1492,-1534,-1654,-1942,-2210, --2384,-2417,-2501,-2503], -[0,-699,-6351,-6752], -[1,3,2199], -[0,2200,55,2201,4], -[0,-6753,-999,-6754,-1401,-6755,-6756], -[0,-699,-6351,-6757,-6758,-6759,-2059,-6234,-6760,-6761,-6762,-6763], -[1,3,2203], -[0,2204,2205,157,4], -[0,-2267,-2269,-2528], -[0,-3037,-427,-428,-652,-664,-668,-767,-932,-958,-965,-1166,-1654,-2125,-6313,-2410], -[1,3,2207], -[0,0,83,7,6], -[1,3,2209], -[0,0,2210,2211,10], -[0,-985,-2447,-2334], -[0,-3205,-6683,-682], -[1,3,2213], -[0,2214,0,2215,5], -[0,-689], -[0,-6764,-4340,-6297,-6765,-6716,-4700,-6722,-4000,-640], -[1,3,2217], -[0,0,2218,2219,6], -[0,-633,-6766,-1654,-1693], -[0,-510,-5411,-3262,-6767,-6768], -[1,3,2221], -[0,2222,2223,2224,4], -[0,-1494], -[0,-2198,-1654,-705], -[0,-3974,-4000,-1965,-3959,-5110,-6769,-705], -[1,3,2226], -[0,182,2227,2228,5], -[0,-1510,-1607], -[0,-4004,-1001,-5855], -[1,3,2230], -[0,2231,2232,2233,11], -[0,-4378,-6770,-1442,-6771,-6772], -[0,-932,-940,-1344,-1415,-1534,-1658,-1942], -[0,-4005,-6773,-6774,-708], -[1,3,2235], -[0,2236,2237,2238,6], -[0,-6775,-6776,-6777,-6778,-6779,-6780,-6781], -[0,-6782], -[0,-3496,-707], -[1,3,2240], -[0,0,2241,189,10], -[0,-849,-6783,-1304,-1600,-2424], -[1,3,2243], -[0,0,2244,189,4], -[0,-23,-40,-4691,-709,-849,-1304,-6785,-1600,-1978,-2424,-2501], -[1,3,2246], -[0,2247,2248,2249,4], -[0,-3523,-2741], -[0,-1654,-2384,-2541], -[0,-712,-5535,-775], -[1,3,2251], -[0,0,0,2252,5], -[0,-3974,-3770,-712,-5514], -[1,3,2254], -[0,0,2255,2256,5], -[0,-932,-936], -[0,-5514,-3974,-714], -[1,3,2258], -[0,2259,2260,2261,11], -[0,-2269,-6786], -[0,-526,-559,-668,-2320,-2322], -[0,-6787,-5554,-5514,-4000,-3974,-4001,-4002], -[1,3,2263], -[0,0,2264,2265,6], -[0,-1003,-1452,-1654], -[0,-687,-3957,-6788], -[1,3,2267], -[0,2268,190,2269,11], -[0,-6789,-6790,-1551,-6791], -[0,-4378,-1838,-6748,-4377,-5829,-6792,-3215,-6747,-687,-3957,-6722], -[1,3,2271], -[0,2272,2273,2274,4], -[0,-6789,-6793,-6794,-6791], -[0,-350,-351,-1448,-2127,-2337], -[0,-3974,-4376,-6795,-3262], -[1,3,2276], -[0,0,2277,2278,4], -[0,-2384,-1415,-932,-1110,-2375,-1942,-190,-2410,-3136,-3037,-2411,-959,-940], -[0,-719,-3957,-5829,-3215,-687,-6748,-4377,-4378], -[1,3,2280], -[0,2281,2282,2283,5], -[0,-1107,-815,-1548,-6796,-6797,-1077,-1376,-1646,-3767,-2270,-831,-6798,-2271,-796], -[0,-1788,-664,-2446,-1654,-2210,-1104,-2177,-708,-1753,-21,-1365,-1972,-23,-43,-2174,-40,-1656,-539,-6799,-6800,-6801,-36, --741], -[0,-5890,-3240,-3276,-6802,-720], -[1,3,2285], -[0,2286,2287,146,4], -[0,-86,-3534], -[0,-3536,-3537,-3535], -[1,3,2289], -[0,0,2290,2291,6], -[0,-526,-528,-535,-546,-6017,-558,-566,-708,-767,-855,-932,-940,-967,-1415,-1639,-1942,-2125,-2127,-2128,-2137,-2143, --2517], -[0,-5839,-525,-4795,-6803,-3184,-6804,-6805,-3264,-6806,-6807,-6722,-6808,-6809,-6810,-6811,-6812,-6813,-6814,-6815,-2265, --6816,-6817,-6818,-6819,-3110], -[1,3,2293], -[0,0,55,2294,6], -[0,-5389,-6820,-997,-6821,-6822,-5078,-6823], -[1,3,2296], -[0,2297,191,2298,5], -[0,-651,-6824,-812,-5397,-6825,-2155,-2453], -[0,-724,-6826,-6827,-5401,-1004,-6828,-1334,-5827], -[1,3,2300], -[0,2301,31,7,4], -[0,-6829,-1370,-2062,-5972], -[1,3,2303], -[0,2304,2305,2306,4], -[0,-2153,-668,-2550,-2369,-2194,-2297], -[0,-1344,-932,-2469,-928,-1110,-1942,-190,-2410,-3037,-1534,-3610,-3041,-6830,-6831,-2411,-6832,-3664,-2156,-4373,-6593, --6833,-940,-967,-6834,-6835,-4814], -[0,-6836,-5920,-5921,-726,-3957,-6837], -[1,3,2308], -[0,2309,2310,2311,4], -[0,-1460], -[0,-3037,-652,-711,-6838,-6839,-6840,-3589,-2105,-2177,-2362,-2379,-2410,-2424,-6841,-2548], -[0,-6842,-727,-3870,-6843,-6844,-6845,-5558], -[1,3,2313], -[0,2314,55,2315,4], -[0,-6846,-3780,-1119,-6847,-6848], -[0,-727,-4634,-6005,-3870,-6849,-6850,-4055,-6582,-6851,-6852,-6853], -[1,3,2317], -[0,2318,2319,2320,4], -[0,-812,-1045,-1840,-2445], -[0,-932,-1654,-1788,-2293], -[0,-3161,-3578,-5401,-729,-6854], -[1,3,2322], -[0,0,84,2323,11], -[0,-729,-1004,-6855,-3556], -[1,3,2325], -[0,0,2326,7,4], -[0,-932,-1415,-2210], -[1,3,2328], -[0,2329,2330,2331,4], -[0,-812,-6856], -[0,-5028,-86,-3307,-3244,-190,-3198,-3617,-3733,-3037,-4203,-427,-428,-519,-652,-708,-932,-940,-954,-967,-1004,-1010, --1103,-1344,-1534,-1671,-1771,-1806,-1942,-2251,-2293,-2892,-2402,-2410], -[0,-729,-6857,-1671,-6858,-1004], -[1,3,2333], -[0,0,2334,2335,5], -[0,-2581,-3733,-3037,-3664,-1010,-2379,-2410,-2466,-6859,-2469], -[0,-729,-2071,-6858,-1004], -[1,3,2337], -[0,0,2338,2339,8], -[0,-6447,-3037,-3664,-672,-6860,-932,-944,-6861,-1942,-6862,-6570,-2267,-2410,-2423,-2469], -[0,-4000,-3444,-6863,-6864,-687,-6198,-2427,-1965,-6865,-3276,-6324,-6866], -[1,3,2341], -[0,0,2342,2343,5], -[0,-2541,-519,-864,-6867,-6868,-888,-6869,-1974,-6870,-6871,-6872,-6873,-6874,-6875,-2310,-6876,-6877,-1344,-6878,-2006, --6879,-932,-6880,-6881,-6882,-1548,-6883,-2177,-6884,-6885,-6886,-1053,-6887,-6888,-1310,-1689,-1783,-6889,-2019,-1276, --2094,-6890,-2424,-6891,-23,-6892,-1534,-6893,-6894,-710,-6895,-6896,-6897,-6898,-41,-2099,-946], -[0,-6899,-3110,-6107], -[1,3,2345], -[0,0,2346,2347,6], -[0,-652,-932,-943,-958,-963,-966,-968,-974], -[0,-736,-1334,-6900,-4616], -[1,3,2349], -[0,0,2350,2351,5], -[0,-1788,-1654,-932,-821,-966,-958,-968,-943,-974], -[0,-737,-1334,-4610,-4616,-6901], -[1,3,2353], -[0,2354,0,2355,4], -[0,-6902,-6903,-1630,-6904,-6905,-5983,-6906,-6907], -[0,-739,-6908,-5887,-1573,-687], -[1,3,2357], -[0,2358,0,2359,9], -[0,-1630,-6909,-6910,-739], -[0,-687,-5732,-739,-6908,-5887,-1573], -[1,3,2361], -[0,2362,0,2363,11], -[0,-6911], -[0,-739,-6912,-6913], -[1,3,2365], -[0,0,2366,2367,4], -[0,-6914,-2319], -[0,-5845,-6915,-6916,-6917,-4865,-812], -[1,3,2369], -[0,0,2370,2371,5], -[0,-6918,-3664,-6919,-2410,-2469], -[0,-743,-6920], -[1,3,2373], -[0,2374,81,2375,4], -[0,-743,-746], -[0,-743,-5401], -[1,3,2377], -[0,2378,2379,2380,10], -[0,-6920,-812,-6825,-2155], -[0,-729,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], -[0,-729,-1004,-5401,-6858], -[1,3,2382], -[0,0,0,2383,4], -[0,-743,-6921,-6922], -[1,3,2385], -[0,2386,2387,2388,4], -[0,-6923], -[0,-633,-1646,-1719,-6924,-1813,-6925,-2416], -[0,-699,-6351,-4865], -[1,3,2390], -[0,2391,2392,2393,4], -[0,-2654,-1108,-2168,-1759,-2182], -[0,-824,-1415,-1344,-1623,-774,-932,-825,-1110,-6926,-2501,-1942,-767,-21,-190,-533,-2410,-23,-3037,-1041,-1534,-1771,-86, --965,-3560,-2251,-40,-2411,-6927,-959,-960,-32,-958,-6928,-6929,-978,-940,-967,-3748,-6930,-3307], -[0,-2501,-3862,-6931,-6932,-6351], -[1,3,2395], -[0,2396,2397,7,4], -[0,-1107,-1645,-1650,-6933,-2347,-2430,-2550], -[0,-2125,-2322,-2320], -[1,3,2399], -[0,0,27,2400,4], -[0,-6934,-6935,-3262,-6936,-6937,-6938], -[1,3,2402], -[0,2403,2404,2405,4], -[0,-1559,-750,-6939], -[0,-3040,-3052,-2410,-2006,-2019], -[0,-2006,-2410,-6935,-6940,-6941], -[1,3,2407], -[0,2408,2409,2410,4], -[0,-728,-6942,-6943,-6944,-3496,-999,-1758,-2177,-2313], -[0,-6945,-652,-1412,-2123], -[0,-752,-3323,-687], -[1,3,2412], -[0,0,0,2413,5], -[0,-6946,-6947,-6948,-6949,-6950,-6951,-6952,-6953,-6954,-6955,-6956,-6957,-6958,-6959,-6960,-6961,-6962,-6963,-6964, --6965,-6966,-6967,-6968,-6969,-6970,-6971,-6972,-6973,-6974,-6975,-6976,-6977,-6978,-6979,-6980,-6981,-6982,-6983,-6984, --6985,-6986,-6987,-6988,-3582,-6989,-5396], -[1,3,2415], -[0,2416,2417,2418,4], -[0,-1792,-2453], -[0,-465,-932,-1004,-1654,-1788,-2293], -[0,-754,-1004,-729,-5401], -[1,3,2420], -[0,2421,2422,2423,6], -[0,-5672,-1362,-1442,-6990], -[0,-3660,-3037,-6991,-427,-428,-3899,-767,-932,-6992,-940,-948,-958,-966,-979,-1344,-1534,-6689,-1942,-6993,-2410,-2469], -[0,-6994,-3870,-727], -[1,3,2425], -[0,2426,2427,2428,4], -[0,-1442,-6995,-6996,-1646,-2105], -[0,-1654,-1788,-2198,-2200,-2210,-2541], -[0,-4005,-756], -[1,3,2430], -[0,2431,2432,2433,4], -[0,-6997,-1111,-1630], -[0,-519,-999,-1849,-6909,-2541], -[0,-5732,-687,-6351,-6998,-6997,-6656,-6999,-702,-1076,-5827,-1107,-7000,-1705,-5922,-7001,-6582,-5398,-7002], -[1,3,2435], -[0,2436,2437,2438,4], -[0,-1116,-7003,-674,-7004,-7005,-1351,-7006], -[0,-652,-519,-2392,-1722,-2210,-932,-1110,-190,-7007,-2410,-3037,-2364,-2411], -[0,-3214,-758,-7008,-6596,-6531,-1437,-3967,-1334,-1342,-5735,-1116,-2105,-2435,-5150,-6826], -[1,3,2440], -[0,0,0,2441,11], -[0,-759,-7009,-7010,-7011,-7012,-7013,-7014,-7015,-7016,-7017,-7018,-7019,-7020], -[1,3,2443], -[0,2444,2445,2446,5], -[0,-7021,-1370,-6001,-7022,-7023], -[0,-5935,-2155,-2250,-2320,-2322], -[0,-770], -[1,3,2448], -[0,2449,2450,41,5], -[0,-1580,-1792], -[0,-1415,-1967,-2006,-2019,-2501], -[1,3,2452], -[0,2453,2454,2455,10], -[0,-28,-7024,-683,-722,-7025,-7026,-812,-1047,-1099,-1111,-1116,-7027,-1366,-7028,-1393,-1435,-1548,-1549,-1591,-1630, --7029,-5668,-7030,-1863,-1876,-1889,-7031,-7032,-7033,-2103,-2218,-2331,-2347,-2460], -[0,-510,-767,-1045,-1098,-1415,-1722,-7034,-2187,-7035,-2261,-2463,-2541], -[0,-762,-1847,-775,-7036], -[1,3,2457], -[0,2458,2459,2460,8], -[0,-3620,-3222], -[0,-86,-190,-7037,-7038,-7039,-3470,-7040,-3471,-3472,-7041,-7042,-367,-7043,-3136,-3037,-4372,-767,-932,-940,-959,-967, --1344,-1415,-1534,-1942,-2174,-2210,-2410,-2411], -[0,-763,-7044,-7045,-7046,-2166,-7047,-7048], -[1,3,2462], -[0,0,0,2463,4], -[0,-763,-3577,-3445,-3215,-764,-7046,-2166,-7049,-4107,-5418,-6201,-7050], -[1,3,2465], -[0,0,2466,2467,4], -[0,-5285,-5291,-7051,-7052,-7053,-7054,-7055,-7056,-7057,-3037,-932,-7058,-954,-958,-960,-964,-965,-7059,-968,-971,-978, --1110,-7060,-1608,-7061,-1768,-1942,-2910,-7062,-2402,-2410,-7063], -[0,-763,-7050,-2166,-765,-3577,-3445], -[1,3,2469], -[0,2470,0,2471,4], -[0,-7064,-7065], -[0,-6527,-7066,-6932,-7067,-7068,-7069,-7070,-7071,-7072,-7073,-7074,-7075,-7076,-7077,-3264,-775,-3214,-3577,-3578], -[1,3,2473], -[0,2474,2475,2476,5], -[0,-7078,-769], -[0,-7079,-7080,-3037,-3664,-3665,-932,-1942,-2410,-2469,-7081], -[0,-7082,-7083,-7084,-7085], -[1,3,2478], -[0,2479,2480,2481,5], -[0,-1729], -[0,-1788,-664,-1722,-1344,-1654,-2550,-2125,-2127,-2177,-708,-1004,-2501,-2250,-720,-2410,-3035,-3037,-617,-1534,-2186, --2503,-3621,-2516,-86,-2251,-4063,-1655,-6483,-796,-7086,-3307], -[0,-4213,-1334,-2435,-1961,-510,-5867,-6201,-6198,-3966,-2006,-5269,-4865,-6989,-5388,-2533,-5998], -[1,3,2483], -[0,2484,2485,2486,6], -[0,-2518,-7087,-7088], -[0,-1415,-1344,-932,-1650,-2125,-527,-533,-1534,-86,-2251,-7089,-7090,-3307], -[0,-7091,-7092,-7084,-7085,-7093,-7094,-7095,-7096], -[1,3,2488], -[0,2489,2490,7,5], -[0,-7097,-7098,-7099,-760,-7100,-7101,-7102,-1370,-7103,-7104,-1995,-7105], -[0,-5834,-932,-5935,-1788,-1798,-7106,-2155,-2177,-2322], -[1,3,2492], -[0,0,0,2493,5], -[0,-7107,-770,-7108,-7109,-7110,-7111,-7112,-7113,-7114,-7115,-7116,-7117,-7118,-7119,-7120,-7121,-7122,-7123,-7124,-7125], -[1,3,2495], -[0,192,2496,2497,4], -[0,-652,-932,-7126,-958,-964,-966,-967,-1654,-7127,-1771,-1942], -[0,-6838,-3215], -[1,3,2499], -[0,2500,2501,2502,4], -[0,-7128,-7129,-7130,-7131,-7132,-7133,-7134,-481,-668,-6793,-719,-7135,-7136,-7137,-7138,-7139,-7140,-7141,-7142,-2177, --2654], -[0,-4036,-3199,-1639,-1645], -[0,-7143,-7144,-707,-6513,-6514,-7145,-7146,-7147,-7148], -[1,3,2504], -[0,2505,2506,2507,4], -[0,-1370,-2231,-7149], -[0,-1654,-2198,-1612,-651], -[0,-775,-3215,-3270,-3271], -[1,3,2509], -[0,0,2510,2511,9], -[0,-190,-7150,-7151,-932,-1889,-2127,-2447], -[0,-1889,-3583,-775,-4159,-7152,-7153,-7154], -[1,3,2513], -[0,0,2514,2515,5], -[0,-7155,-4647,-3621,-3037,-4201,-7156,-932,-7157,-940,-967,-7158,-1344,-7159,-1449,-1534,-1654,-1763,-1942,-2923,-7160, --2410,-7161,-7162], -[0,-775,-7163,-4108], -[1,3,2517], -[0,2518,2519,2520,4], -[0,-2773,-1889,-7164,-1915,-7165,-2791,-1934,-2177], -[0,-21,-23,-40,-86,-3307,-7166,-533,-767,-774,-825,-920,-932,-940,-958,-1041,-1344,-1415,-1419,-1521,-1522,-1534,-1623, --1643,-1771,-1908,-1927,-1942,-2162,-2163,-2251,-2269,-2275,-2286,-2287,-2437,-2501], -[0,-2501,-775,-5932,-2435,-6024], -[1,3,2522], -[0,2523,2524,2525,5], -[0,-784,-1889,-1429,-2168,-2182,-3180], -[0,-824,-2746,-1415,-2162,-1344,-1623,-774,-932,-825,-928,-1110,-2289,-2501,-7167,-1942,-683,-767,-21,-190,-533,-778, --2410,-23,-7168,-7169,-3037,-1534,-1771,-2163,-3751,-86,-965,-3560,-7170,-2251,-40,-959,-748,-960,-958,-7171,-6929,-978, --940,-967,-1643,-3748,-6930,-3307], -[0,-784,-775,-2746,-683,-5055,-928,-2501,-7172,-7173,-7174,-1644,-6684,-7175,-7176], -[1,3,2527], -[0,2528,2529,2530,4], -[0,-7177,-2888,-6584,-2788,-6585], -[0,-2386,-2469,-2410,-3037,-1333,-2581,-7178,-7179,-3664], -[0,-775,-3585,-7180], -[1,3,2532], -[0,2533,2534,2535,4], -[0,-1620,-2232], -[0,-652,-7181,-928,-932,-7182,-1654,-2127], -[0,-775,-3272,-3579,-3215,-7183,-7184,-3262,-5260,-4132,-3926], -[1,3,2537], -[0,0,2538,2539,4], -[0,-7150,-635,-1107,-1889,-1891,-1927,-2177,-2281,-2282,-7185], -[0,-775,-7186,-4682,-7187], -[1,3,2541], -[0,0,2542,2543,4], -[0,-526,-558,-708,-1127,-6114,-1405,-1654,-2081,-2111], -[0,-775,-5559,-7188,-2265,-3673], -[1,3,2545], -[0,2546,2547,2548,4], -[0,-1532,-7189], -[0,-518,-1889,-7190,-7191], -[0,-775,-6454,-1644,-7192,-7193,-1889,-3583], -[1,3,2550], -[0,2551,2552,2553,11], -[0,-7194,-7195,-781,-1582], -[0,-7196,-7197,-932,-940,-967,-1110,-1942], -[0,-7198,-7199,-7200], -[1,3,2555], -[0,0,2556,2557,4], -[0,-23,-40,-42,-190,-7150,-7201,-7202,-5685,-3136,-4647,-3037,-6630,-7203,-533,-668,-679,-781,-940,-967,-1059,-1415,-1449, --1620,-1942,-2091,-2392,-2393,-2410,-2411], -[0,-775,-5553,-2410,-5411,-2414,-3694,-3762], -[1,3,2559], -[0,2560,2561,2562,5], -[0,-7204,-743,-1335,-746], -[0,-1788,-1654,-932,-729,-2293,-617,-744,-745,-966,-958,-968,-943,-963,-974], -[0,-7204,-7205,-5401,-1004], -[1,3,2564], -[0,2565,2566,2567,4], -[0,-789,-790,-791,-2262], -[0,-351,-3621,-3037,-885,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], -[0,-3966,-788,-7206,-3215,-1838,-3270,-6231,-6408,-5827,-3960,-7207,-3445,-3100], -[1,3,2569], -[0,0,2570,2571,5], -[0,-351,-3621,-3037,-815,-885,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], -[0,-5827,-3960,-788,-7208,-3445,-3100], -[1,3,2573], -[0,0,2574,2575,5], -[0,-351,-3621,-3037,-789,-7209,-815,-885,-1654,-7210,-1942,-2127,-2135,-2136,-2198,-2262,-2379,-2410], -[0,-788,-1838,-3215,-5845,-7206,-5827,-3445,-3100], -[1,3,2577], -[0,0,2578,2579,9], -[0,-351,-3621,-3037,-789,-815,-885,-1004,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], -[0,-788,-6231,-3270,-3445,-3100], -[1,3,2581], -[0,34,2582,2583,4], -[0,-7211,-3621,-3037,-543,-756,-1646,-1654,-1788,-2210,-2375,-2379,-2410,-2417,-2501,-2503], -[0,-788,-7212,-7213,-792,-4055,-7214,-7215,-7216,-7217,-7218], -[1,3,2585], -[0,2586,2587,149,8], -[0,-1693,-1107,-714,-1548,-2456,-1040,-3635,-2114,-615,-7219,-1959,-719,-1399,-695,-5203,-3611,-7220,-3610,-7221,-1366, --7222,-7223,-7224,-930,-3608,-7225,-3604], -[0,-1788,-2359,-664,-1654,-2210,-932,-729,-753,-571,-1077,-1689,-1942,-7226,-756,-21,-633,-2211,-23,-528,-711,-2187,-43, --3630,-3633,-40,-966,-951,-2082,-958,-539,-968,-940,-943,-967,-974,-6034], -[1,3,2589], -[0,0,2590,2591,4], -[0,-556,-558,-566,-633,-932,-7227,-1339,-1650,-7228,-2322,-2339,-2416,-7229,-2491], -[0,-7230,-7231,-7232,-7233,-2446], -[1,3,2593], -[0,2594,0,2595,4], -[0,-2359,-5413,-668,-809,-812,-999,-7234,-2555,-640,-1536,-1548,-7235,-680,-1040,-1958,-615,-6797,-910,-1077,-1646,-7236, --719,-2369,-2430,-3628,-690,-695,-7237,-722,-1018,-1574,-1948,-7238,-7239,-995,-5987,-2297,-7240,-7241,-2313,-1394,-3626], -[0,-4864,-4865,-795,-7242,-4866,-4867,-4868,-3095,-7243,-4043,-7244,-7245,-4004,-3634], -[1,3,2597], -[0,2598,2599,7,5], -[0,-668,-7246,-2524,-720,-1564,-3532,-7247], -[0,-664,-1654,-2177,-1942,-3035,-755,-3621,-1660,-2174], -[1,3,2601], -[0,2602,2603,2604,5], -[0,-7248,-7249,-7250,-7251,-7252,-7253,-7254,-7255,-798,-7256,-7257,-6258,-7258,-7259,-799,-801,-7260,-7261,-7262,-7263, --7264,-7265,-7266,-7267,-7268,-800,-7269,-7270,-7271,-7272], -[0,-1654,-932,-2127,-2468,-7273,-2967,-4062,-7274,-3266,-351], -[0,-797,-5092,-7275,-3839,-5176,-659], -[1,3,2606], -[0,2607,2608,2609,8], -[0,-7276], -[0,-351,-7248,-7262,-932,-1449,-1654,-2127,-2140], -[0,-797,-7277,-7278,-7279,-7280,-7281,-7282,-7283,-5839], -[1,3,2611], -[0,2612,2613,2614,10], -[0,-798,-7261,-7270,-7254,-7271], -[0,-6258,-932,-1654,-2127,-2140], -[0,-797,-7277,-7069,-7275], -[1,3,2616], -[0,0,2617,2618,5], -[0,-932,-1449,-1654,-2127,-2140], -[0,-797,-7277,-5092,-7284,-7285], -[1,3,2620], -[0,2621,2622,2623,6], -[0,-7253], -[0,-7264,-932,-1654,-2127,-2140], -[0,-797,-7277,-6524,-7275,-659,-3839], -[1,3,2625], -[0,2626,0,2627,5], -[0,-1049], -[0,-3577,-7286,-5176,-3913], -[1,3,2629], -[0,0,0,2630,4], -[0,-803,-2316,-2318,-7287,-7288,-7289,-7290,-7291,-7292,-7293,-7294,-7295,-7296,-7297,-7298,-2006,-775,-3160,-2476,-3095, --3161,-1713,-3577,-7299,-4101,-7300,-2299,-2834,-5511,-7301], -[1,3,2632], -[0,0,14,2633,9], -[0,-7302,-1646,-6792,-7303,-4377,-5272,-687,-1758,-719,-7304,-3957,-5543,-7305,-7306,-7307,-7308,-1838,-3215,-4378], -[1,3,2635], -[0,2636,2637,7,4], -[0,-7309,-469,-510,-668,-715,-754,-763,-1004,-1376,-7310,-1625,-1666,-1953,-2105,-7311,-7312,-7313,-2549,-2550], -[0,-526,-556,-559,-664,-1654,-2106,-5331], -[1,3,2639], -[0,0,2640,7,10], -[0,-7314,-2392,-7315,-3915,-2210,-932,-7316,-1548,-2469,-2402,-1050,-1942,-756,-21,-7057,-1874,-2205,-2214,-2410,-23, --3037,-7317,-7318,-4372,-7319,-3704,-3044,-7320,-5286,-4773,-40,-7321,-3664,-2832,-42,-428,-7322,-427,-7323], -[1,3,2642], -[0,0,2643,7,5], -[0,-1654,-2416,-21,-23,-40], -[1,3,2645], -[0,0,2646,2647,5], -[0,-21,-23,-5870,-40,-3472,-527,-533,-537,-767,-932,-934,-958,-959,-7324,-1413,-1415,-1471,-1481,-1488,-1662,-1666,-1667, --1705,-1939,-1942,-2127,-2128,-2140,-2214,-2410], -[0,-809,-4121,-4123,-1361,-1666], -[1,3,2649], -[0,2650,2651,2652,4], -[0,-596,-1723], -[0,-7325], -[0,-510,-6367,-7326,-7327], -[1,3,2654], -[0,0,118,2655,5], -[0,-811,-7328,-5924,-7329,-7330,-6729,-7331,-7332,-7333,-7334,-7335], -[1,3,2657], -[0,2658,2659,2660,4], -[0,-1681], -[0,-627,-633,-756,-1471,-1472,-1475,-1482,-1654,-1657,-2210,-2541], -[0,-812,-1573,-7336], -[1,3,2662], -[0,0,14,2663,4], -[0,-813,-7337,-656,-7338,-6514,-6515,-6516,-2265,-5554,-5845], -[1,3,2665], -[0,2666,2667,2668,10], -[0,-7339,-7340,-7341,-7342,-1119,-1591,-1866,-7343], -[0,-985,-7344,-1849,-1866,-2125], -[0,-7345,-7346,-814,-7347,-2323,-7348,-7349,-5408,-2432], -[1,3,2670], -[0,0,2671,2672,8], -[0,-21,-40,-42,-4646,-7350,-7057,-3330,-3136,-427,-428,-535,-6046,-7351,-774,-932,-7352,-954,-959,-960,-961,-963,-965, --7353,-7354,-971,-7355,-1344,-1415,-7356,-1498,-1534,-1608,-1609,-1768,-7357,-1942,-7358,-1945,-2091,-7359,-2391,-2410, --7360], -[0,-815,-6818,-7361,-3184], -[1,3,2674], -[0,0,2675,2676,5], -[0,-3136,-1637,-2375], -[0,-7362,-7363,-5839,-7364,-7365,-7366,-7367], -[1,3,2678], -[0,2679,0,2680,8], -[0,-7368], -[0,-7208,-7369,-7370,-1015,-3589,-1631,-702,-6351,-3755,-6545,-7371,-7372,-7373,-7374,-7375,-3589], -[0,68,15,16,4], -[1,3,2683], -[0,0,2684,2685,5], -[0,-4055,-1654,-932,-1548,-2125,-1753,-615,-7376,-1003,-2416,-821,-964,-1656], -[0,-834,-7377,-7378,-7379], -[1,3,2687], -[0,0,2688,2689,5], -[0,-7380,-1654,-932,-1405,-589,-756,-7381,-1559,-3311,-7382,-7383,-7384,-350,-7385], -[0,-7386,-7387,-7388,-3634], -[1,3,2691], -[0,2692,2693,2694,10], -[0,-7389,-655,-7390,-6503,-7391,-7392,-7393,-7394,-7395,-1402,-5849,-1795,-1797,-7396,-7397,-7398,-7399,-7400], -[0,-5834,-515,-516,-7401,-932,-1065,-7402,-1283,-7403,-1365,-1777,-1788,-3335,-2156,-2177,-2322], -[0,-7404,-6439,-7378], -[1,3,2696], -[0,0,70,2697,4], -[0,-822,-1015,-6545,-7371,-2546,-702,-1631,-4055], -[1,3,2699], -[0,0,2700,2701,9], -[0,-3037,-7405,-1396,-7406,-2127,-2131,-2137,-2322,-2379,-2410,-2416], -[0,-1631,-6545,-1015,-6351,-702,-7371], -[1,3,2703], -[0,2704,2705,2706,5], -[0,-1111,-1393,-7407,-7408,-1826,-7409,-2218], -[0,-519,-589,-2331,-2384,-2541], -[0,-6693,-6999,-7410,-7411,-6694,-7412,-7413,-7414,-6688,-7415,-7416,-6695,-7417,-2125,-7418,-1107,-7419,-6656,-7420, --7421,-1076,-7422], -[1,3,2708], -[0,2709,2710,2711,10], -[0,-824,-1630,-7409], -[0,-519,-999,-7423,-2541], -[0,-5732,-687,-6693,-824,-6694,-7412,-7413,-7414,-6688,-7415,-7416,-6695,-7417,-2125,-7418,-1107,-6656,-6999,-7420,-7421, --1076,-7422,-7085], -[1,3,2713], -[0,2714,2715,2716,6], -[0,-7424,-7425], -[0,-7426,-7427,-2384,-2541], -[0,-1961,-2114,-826,-7428,-4116,-7429,-7430,-7431,-5389,-6302,-2634,-7432,-826,-510,-5867,-5923,-615,-7433,-7434,-6555], -[1,3,2718], -[0,2719,2720,2721,10], -[0,-812,-1460,-2550,-1353,-1548,-2177,-1442,-2114,-7435,-6651,-656,-1645,-7436,-1686,-755,-1048,-2115,-25,-7437,-46,-7438, --3230,-6033], -[0,-1788,-1654,-932,-2198,-2299,-1077,-1942,-767,-21,-1972,-2410,-23,-528,-7439,-39,-43,-40,-964,-969,-933,-958,-539,-940, --962,-967,-535,-5585], -[0,-7440,-7441,-5897,-7442,-827,-6137,-3015,-3016], -[1,3,2723], -[0,0,2724,2725,6], -[0,-589,-585,-932,-943,-958,-963,-966,-968,-974,-1405,-1654,-2155,-2418], -[0,-7443,-7444], -[1,3,2727], -[0,2728,2729,7,4], -[0,-812,-5892,-1111,-7445,-1639,-1646,-1872,-7446,-2114], -[0,-7447,-1344,-3781,-1771,-2250], -[1,3,2731], -[0,0,14,2732,10], -[0,-6806,-7448,-6659,-7449,-7450,-707,-2265,-5554,-6916,-7451,-7452], -[1,3,2734], -[0,2735,2736,2737,5], -[0,-6558], -[0,-7453,-3621,-3037,-7454,-932,-7455,-999,-7456,-2269,-2386,-7457,-2410], -[0,-6659,-7458], -[1,3,2739], -[0,0,2740,2741,6], -[0,-1788,-2384,-664,-1471,-1654,-932,-2127,-1110,-2501,-767,-2416,-190,-2410,-23,-1482,-534,-1492,-5758,-43,-40,-2411, --2505,-1483,-2832,-539,-1490], -[0,-834,-7459,-7378,-7460,-5554,-4055,-775,-3214], -[1,3,2743], -[0,2744,2745,2746,8], -[0,-834,-7461], -[0,-190,-7462,-7463,-3136,-3037,-7464,-7465,-518,-645,-699,-748,-778,-784,-932,-959,-968,-1041,-1110,-1276,-7466,-1331, --1344,-7467,-7468,-1415,-1534,-1607,-1643,-1650,-1758,-1889,-1891,-1906,-1908,-1927,-1942,-2375,-2376,-2379,-2410,-2411, --2437,-2501,-2503,-2505,-2516], -[0,-5889,-834,-3240,-7469,-6722,-7470,-7471,-7472,-4131,-3240,-712,-3264,-835,-7473,-7474], -[1,3,2748], -[0,119,120,2749,4], -[0,-7477,-7478,-7479,-7480,-7481,-7482,-7483,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-7487,-7488,-3966,-4336, --7489,-7490,-7491,-7492,-7493,-7494,-7495,-7496,-7497,-3552,-7498,-7499,-7500,-1847,-7501,-7502,-7503,-7504,-7505,-7506, --7507,-7508,-7282,-7509,-7510,-7511,-7512,-7513,-7514,-7515,-7516,-7517,-7518,-7519,-7520,-7521,-5150,-7522,-7523,-7524, --7525,-7526,-7527,-7528, --7529,-7530,-7531,-7532,-7533,-6582,-7534,-7535,-7536,-7537,-7538,-7539,-7540,-7541,-7542,-7543,-7544,-7545,-7546,-7547, --7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558,-7559,-5063,-7560,-7561,-7562,-6187,-7563, --856,-7275], -[1,3,2751], -[0,0,2752,2753,6], -[0,-664,-665,-1127,-1144,-1149,-1156,-1452,-1453,-1542,-1654], -[0,-664,-6537,-4865,-3634], -[1,3,2755], -[0,2756,56,57,4], -[0,-7564,-7565,-840,-1406,-1744], -[1,3,2758], -[0,2759,2760,2761,6], -[0,-2387,-2426,-7567,-3675,-151,-3676,-1025,-7568,-3677,-7569,-3678,-3679,-7570], -[0,-2384,-1415,-3682,-932,-2388,-879,-1942,-767,-2410,-3037,-7571,-3683,-3685,-3686,-3687,-428,-427], -[0,-3689,-3690,-7572,-3323,-3966,-3692], -[1,3,2763], -[0,2764,0,7,4], -[0,-2416,-1044,-1813], -[1,3,2766], -[0,2767,2768,193,8], -[0,-6789,-7573,-7574,-7575,-1276,-1610,-7576], -[0,-7577], -[1,3,2770], -[0,2771,0,2772,6], -[0,-1448], -[0,-843,-856,-1446,-7578,-1599,-3862], -[1,3,2774], -[0,0,0,2775,9], -[0,-7579,-7580,-7581,-7582,-3445,-6809], -[1,3,2777], -[0,2778,31,2779,10], -[0,-7583,-7584,-7585], -[0,-7586,-7587], -[1,3,2781], -[0,2782,2783,2784,8], -[0,-523,-2550,-848,-7588,-7589,-7590], -[0,-664,-1654,-1004,-617], -[0,-856,-5119,-4004,-4100,-3671], -[1,3,2786], -[0,2787,2788,2789,10], -[0,-3417,-7590,-7591,-469,-5769,-7592,-7593,-7594,-523,-7588,-7589,-865,-7595,-7596,-7597,-1870,-1880,-7598,-2369,-4881], -[0,-827,-1004,-1654,-2177], -[0,-856,-4004,-4100,-3671], -[1,3,2791], -[0,2792,0,2793,9], -[0,-719,-1610,-1077,-2424,-1304], -[0,-856,-3671,-3262,-7599,-711], -[1,3,2795], -[0,2796,0,193,4], -[0,-885,-7600,-7601], -[1,3,2798], -[0,2799,2800,2801,10], -[0,-7602,-7603,-7604,-7605,-1969,-2324,-2446], -[0,-615,-664,-1627,-1654], -[0,-7606,-7607], -[1,3,2803], -[0,2804,2805,2806,4], -[0,-7608,-7609,-7610,-573,-7611,-653,-7612,-6838,-7613,-7614,-7615,-5835,-7616,-7617,-7618,-7619,-7620,-7621,-1376,-7622, --7623,-7624,-1640,-1729,-7625,-7626,-7627,-2125,-7628,-7629,-7630,-2177,-7631,-7632,-7633,-2424,-7634,-2549], -[0,-7635,-7636,-7637,-711,-7638,-1666,-7639,-7640], -[0,-3260,-7641,-7642,-4258,-687,-7643,-711,-7644,-3116,-7645,-7646,-3113,-7647,-7648,-6433,-3161,-3262,-7649,-3966,-1838, --3215,-7650,-4065,-3970,-5371,-3261,-7651,-3673,-3590,-3578,-7652,-4602], -[1,3,2808], -[0,0,2809,2810,5], -[0,-3268,-3037,-3664,-6593,-589,-7653,-7654,-932,-958,-960,-2410,-2469], -[0,-3100,-3445,-4058,-3926,-1446], -[1,3,2812], -[0,0,2813,2814,6], -[0,-23,-40,-190,-3326,-350,-4062,-351,-3266,-518,-632,-724,-920,-932,-940,-1110,-1609,-6451,-1771,-1889,-1897,-1903,-1906, --1942,-2125,-2127,-4753,-2162], -[0,-3671,-2757,-7655,-856,-3262,-3214,-3756,-1599,-3437,-3862,-7452,-7656], -[1,3,2816], -[0,2817,71,2818,8], -[0,-7657,-7658,-1333,-1646,-2424,-7659], -[0,-1105,-1599,-856,-4328,-3215,-7660,-7661,-7662], -[1,3,2820], -[0,2821,2822,2823,8], -[0,-23,-3194,-25,-46,-47,-668,-679,-834,-7663,-4236,-3649,-1107,-2765,-1304,-1371,-1442,-7664,-1548,-5347,-7665,-7666, --7667,-1866,-2061,-2093,-2095,-2096,-7668,-4656,-2114,-2271,-7669,-2429,-5358,-7670,-7671,-2550], -[0,-7672,-796,-7673,-932,-940,-1077,-1344,-1415,-1456,-1534,-1658,-1942,-2251,-2359], -[0,-856,-4144,-1446,-7674,-3215,-3258], -[1,3,2825], -[0,2826,2827,2828,5], -[0,-7675,-7676,-812,-7677,-7678,-7679,-7680,-2424], -[0,-3037,-1127,-1152,-1156,-1542,-1656,-6799,-2210,-2351], -[0,-7681,-7682,-857,-7683,-5800,-7684,-7685,-5801], -[1,3,2830], -[0,2831,2832,2833,4], -[0,-3484,-1088,-1107,-668,-2006,-915,-1548,-1650,-572,-784,-1004,-1889,-1955,-2105,-2195,-3728,-2353,-1077,-1356,-719, --2019,-682,-1888,-2102,-23,-7686,-47,-518,-1304,-1607,-7687,-4356,-7688,-7689,-3649,-39,-43,-46,-2015,-7690,-40,-7691, --7692,-41,-930,-916,-26,-36], -[0,-2125,-7693,-1075,-7694], -[0,-856,-7695,-7696,-858], -[1,3,2835], -[0,2836,27,2837,5], -[0,-7697,-703,-4700,-1288,-1293,-1310,-3544,-7698,-3788,-1645,-2087,-7699,-2427,-7700], -[0,-858,-3544,-7701,-856], -[1,3,2839], -[0,2840,2841,2842,6], -[0,-44,-786], -[0,-7702,-7703,-21,-23,-42,-7704,-7705,-7706,-427,-428,-528,-534,-932,-958,-962,-964,-969,-1003,-1107,-1437,-1471,-1475, --1479,-7707,-1482,-1483,-1489,-1490,-1492,-1654,-2125,-7708,-2210,-2410,-2501], -[0,-860,-3159,-5092,-3690,-7709,-5553,-5389,-7710,-6730,-860,-7711,-7712,-775], -[1,3,2844], -[0,2845,2846,2847,4], -[0,-3223,-6585,-7713], -[0,-1415,-932,-674,-2375,-1942,-2410,-3136,-3037,-1333,-940,-428,-427], -[0,-3264,-6597,-7650], -[1,3,2849], -[0,0,2850,2851,8], -[0,-664,-932,-1127,-1132,-1144,-1148,-1149,-1155,-1442,-1471,-1474,-1475,-1479,-1482,-1483,-1654,-1942,-2177], -[0,-5092,-6527,-7714,-7650,-3264,-659,-3839,-7715], -[1,3,2853], -[0,2854,2855,2856,6], -[0,-7716], -[0,-23,-40,-3326,-351,-3561,-3266,-426,-3037,-767,-940,-967,-1437,-1449,-1471,-1473,-1475,-1479,-1485,-1486,-7717,-1646, --1771,-1939,-1942,-1989,-7718,-2125,-2127,-2132,-7719,-2142,-2387,-2410,-2541], -[0,-5092,-2544,-3264,-3839,-7720,-7107,-7721,-7722,-7723,-7724,-7725], -[1,3,2858], -[0,0,2859,2860,10], -[0,-1788,-932,-756,-1939,-5478], -[0,-3110,-5922,-5493,-7651], -[1,3,2862], -[0,0,2863,2864,4], -[0,-3037,-3542,-2210,-2250,-2251,-2319,-2410], -[0,-865,-6845,-7726,-5558,-3591,-727,-6849], -[1,3,2866], -[0,194,2867,2868,5], -[0,-3037,-2250,-2251,-2319,-2410], -[0,-865,-7727,-3591,-7728,-7729,-6845,-7726], -[1,3,2870], -[0,2871,2872,2873,4], -[0,-1116,-1866,-1825,-7730,-1591,-1043,-814,-7731,-1100,-7732,-736], -[0,-2541,-519,-1722,-7733,-2125,-1849,-7734], -[0,-867,-7347,-1334,-2105,-2435], -[1,3,2875], -[0,2876,2877,2878,9], -[0,-867,-7735,-2125], -[0,-3179,-1344,-1654,-2226,-2250], -[0,-867,-1105,-7661,-7660,-7736,-7737,-2323,-7347,-7738], -[1,3,2880], -[0,2881,2882,2883,4], -[0,-870,-871,-873,-875,-876,-874], -[0,-932,-2125,-190,-2410,-3037,-2411,-428,-427], -[0,-869,-856,-687,-1446,-620,-1599,-4055], -[1,3,2885], -[0,2886,2887,2888,8], -[0,-1111,-871,-7739,-7740,-873,-875,-7741,-876,-874], -[0,-1415,-932,-2125,-1753,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-427], -[0,-869,-856,-687], -[1,3,2890], -[0,2891,2892,2893,4], -[0,-6904], -[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-6902,-427], -[0,-869,-856], -[1,3,2895], -[0,2896,121,2897,4], -[0,-7743], -[0,-869,-856,-3110], -[1,3,2899], -[0,2900,2901,2902,4], -[0,-2330,-1446,-7744], -[0,-1415,-932,-2125,-2375,-749,-190,-2410,-3136,-3037,-7745,-7742,-2411,-428,-427], -[0,-869,-856,-1446], -[1,3,2904], -[0,2905,2906,2907,4], -[0,-1600,-1304,-1605], -[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-3661,-428,-427], -[0,-869,-856,-620], -[1,3,2909], -[0,0,121,2910,8], -[0,-869,-856,-4055], -[1,3,2912], -[0,2913,121,2914,5], -[0,-1605], -[0,-869,-856,-1599], -[1,3,2916], -[0,2917,2918,2919,4], -[0,-1033,-1361,-1792], -[0,-23,-6065,-5584,-7746,-528,-7747,-767,-824,-927,-932,-7748,-940,-951,-956,-962,-967,-969,-7749,-1059,-1168,-1174,-1184, --1188,-7750,-1201,-1208,-1212,-1243,-1266,-1415,-1942,-2006,-2019,-2052,-7751,-2347,-2417,-7752], -[0,-7753,-3496,-2006,-7754], -[1,3,2921], -[0,2922,2923,2924,5], -[0,-4007,-7755], -[0,-7756,-7757,-664,-795,-7758,-1471,-1475,-1482,-7759,-1491,-1654,-1655,-1745,-7760,-2162,-2210,-2211], -[0,-7761,-7762,-7763,-7764], -[1,3,2926], -[0,2927,2928,7,5], -[0,-2550,-2388,-7765,-1077,-7766,-2271,-1458,-7767,-7768,-7769], -[0,-932,-3037,-3041,-3048,-428,-7770,-7771,-427], -[1,3,2930], -[0,2931,0,2932,4], -[0,-7772], -[0,-7773,-880,-6582,-7685,-3445,-687,-7774,-5401], -[1,3,2934], -[0,2935,2936,113,4], -[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5366,-5340,-747,-823,-5341,-909,-5342,-5343,-5344, --3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, --4942,-2003,-4944,-2004,-2013,-2965,-2028,-5350,-5351,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5354, --5355,-2427,-2429, --5356,-2435,-5357,-5358,-5359], -[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3803,-3040,-3087,-3052,-5364,-5365,-932,-4597,-1026,-1031,-5367, --5368,-1344,-1534,-1942,-1944,-1945,-2006,-2019,-2281,-2379,-2410,-2469,-5369,-5370], -[1,3,2938], -[0,2939,2940,113,6], -[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5339,-747,-823,-5341,-5359,-909,-5342,-5343,-5344, --3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, --4942,-4944,-2013,-2965,-2028,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5355,-2427,-2429,-5356,-2435, --5357,-5358], -[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3040,-3087,-5364,-5365,-932,-1026,-1031,-5368,-1344,-1534,-1942, --1944,-1945,-2006,-2281,-2379,-2410,-2469], -[1,3,2942], -[0,0,2943,7,5], -[0,-2322,-2346], -[1,3,2945], -[0,2946,2947,110,8], -[0,-7775,-7776,-7777,-7778,-7779,-44,-3946,-7780,-7781,-7782,-7783,-7784,-682,-747,-809,-7785,-7786,-7787,-7788,-7789, --7790,-7791,-7792,-7793,-7794,-7795,-7796,-7797,-7798,-7799,-7800,-7801,-7802,-7803,-7804,-7805,-7806,-7807,-7808,-7809, --7810,-7811,-7812,-7813,-7814,-7815,-7816,-4951,-2345], -[0,-5695,-5704,-3139,-7817,-4952,-2581,-5702,-3744,-3745,-3746,-3747,-162,-3778,-4954,-5706,-4106,-5708,-5699,-283,-305, --4955,-4773,-3562,-406,-407,-409,-410,-5682,-5683,-5693,-3048,-4960,-5692,-5697,-3136,-4961,-4962,-4963,-4964,-4647, --3044,-5686,-3037,-5688,-7818,-5675,-3803,-3624,-4966,-3040,-3087,-3052,-4968,-4969,-3199,-5687,-5673,-4971,-4972,-427, --428,-464,-5595, --4973,-5674,-4974,-523,-668,-674,-5701,-5676,-767,-768,-4977,-865,-881,-5698,-3808,-932,-933,-940,-948,-952,-958,-959, --962,-7819,-963,-969,-970,-978,-1026,-4979,-1077,-1103,-1107,-5346,-1339,-1352,-1359,-1392,-1404,-1415,-4980,-1416,-1419, --1421,-4981,-4982,-1437,-1449,-4983,-3134,-1534,-1548,-5689,-4984,-1646,-1662,-1729,-1737,-1779,-1805,-1816,-5668,-1870, --1880, --1942,-1943,-1950,-1955,-1978,-1983,-4985,-4986,-4987,-2006,-2013,-5680,-2019,-3051,-4988,-4989,-4990,-2027,-4991,-2044, --4992,-2082,-2090,-2093,-2094,-2095,-4994,-5707,-4995,-2101,-2125,-5669,-2177,-2193,-2205,-2214,-5671,-5000,-2323,-2324, --2334,-2392,-2402,-2410,-5001,-5678,-2501,-2502,-5002], -[1,3,2949], -[0,0,2950,2951,10], -[0,-86,-3307,-7820,-190,-932,-940,-964,-967,-1344,-1534,-1654,-1942,-2127,-2198,-2251], -[0,-5839,-510,-6235,-7821,-885,-7208,-1961,-7822,-6302,-3445,-3100], -[1,3,2953], -[0,2954,2955,2956,11], -[0,-2387,-7823], -[0,-22,-23,-47,-7769,-7767,-7824,-262,-350,-351,-3561,-3136,-427,-428,-668,-719,-879,-928,-932,-1077,-1111,-1344,-1415, --1416,-1452,-1588,-1805,-2127,-2140,-2172,-2177,-2334,-2375,-2410], -[0,-886,-7825,-6581,-7826,-7275,-7827,-7828,-659,-3839], -[1,3,2958], -[0,2959,2960,2961,4], -[0,-7829,-1043,-7830,-1199,-7831,-7832,-7833,-1548,-1645,-7834,-1876,-2347,-2460,-2462,-2550], -[0,-3035,-3048,-7835,-3044,-3621,-3037,-4364,-4372,-3625,-7836,-7837,-7838,-3041,-664,-994,-1077,-1100,-1654,-1788,-1972, --2125,-2210,-2211,-2379,-2388,-2410], -[0,-7829,-3674,-5874,-7839,-7840,-7449,-7841], -[1,3,2963], -[0,2964,2965,2966,4], -[0,-1410], -[0,-2410,-32,-633,-932,-6272,-1446,-1582,-1654,-2416], -[0,-3110,-7651,-6899,-888], -[1,3,2968], -[0,2969,2970,2971,4], -[0,-668,-1548,-7842], -[0,-1722,-461,-510,-1127,-1654,-2210,-2239,-932,-1437,-1666,-2177,-521,-600,-2501,-7843,-7844,-615,-1813,-1942,-2347, --1003,-1026,-3767,-1132,-7845,-633,-23,-7846,-528,-534,-7847,-7848,-40,-966,-1138,-1134,-958,-1136,-1148,-968,-940,-943, --967,-974,-7849], -[0,-889,-6045,-3817], -[0,44,15,16,5], -[1,3,2974], -[0,2975,0,195,6], -[0,-3037,-1018,-7850], -[1,3,2977], -[0,2978,2979,2980,4], -[0,-668,-2550,-680,-1077,-7851,-7852,-7853,-7854,-7855,-7741], -[0,-3041,-3048], -[0,-891,-4258,-7641,-7856,-1380,-7857,-7858,-7859,-3994,-7860,-7861,-7862,-7863,-7864,-7865,-7866,-7867,-7868,-7869,-7870, --7871,-5730], -[1,3,2982], -[0,2983,2984,2985,4], -[0,-7872,-7850,-7873,-7874,-7875,-7876,-812,-1018,-7731,-1077,-7877,-7878,-7879,-7880,-1875,-7881,-2114,-2177,-2551], -[0,-427,-428,-519,-641,-708,-932,-943,-950,-958,-966,-968,-1788,-1872,-2210,-2384,-2402,-2410], -[0,-891,-7857,-7882,-3994], -[1,3,2987], -[0,2988,2989,195,10], -[0,-1018,-7883], -[0,-2322,-2250,-7884,-1849], -[1,3,2991], -[0,2992,56,57,6], -[0,-668,-1078,-1406,-7885], -[1,3,2994], -[0,2995,2996,7,8], -[0,-7886], -[0,-1127,-7887,-1130,-1144,-1148,-1155,-1413,-1437,-1471,-1475,-1479,-1481,-1487,-1542,-1548], -[1,3,2998], -[0,2999,3000,3001,5], -[0,-513,-532,-823,-1761,-2113,-2345], -[0,-7888,-7889,-526,-527,-534,-535,-539,-541,-544,-7890,-558,-564,-7891,-664,-679,-748,-756,-7892,-767,-778,-925,-932, --7893,-949,-957,-7894,-1041,-7895,-1168,-1171,-7896,-1248,-1304,-1331,-1455,-5610,-1471,-1475,-1476,-1482,-7759,-1490, --1491,-1492,-7897,-1600,-1601,-7898,-1602,-1643,-1654,-1743,-1814,-1889,-1960,-2125,-2163,-7899,-2210,-2211,-2275,-7900, --2417, --7901,-2437,-2476,-2481,-2483,-2485,-7902,-2501,-2503,-2505,-2509], -[0,-7903,-2476,-3098], -[1,3,3003], -[0,3004,3005,3006,4], -[0,-616,-7904,-7905,-7906,-1370,-7907,-7908], -[0,-627,-756,-932,-1127,-1130,-1132,-1137,-1138,-1148,-7909,-1161,-1405,-1654], -[0,-7910,-7911,-7912,-7913], -[1,3,3008], -[0,3009,3010,3011,4], -[0,-7914,-7915,-7916,-1329,-7917,-1548,-1752], -[0,-86,-3307,-519,-674,-767,-888,-932,-946,-1053,-1344,-1534,-7918,-1788,-7919,-1974,-2094,-2099,-2541], -[0,-735,-7920,-6899,-1501,-7921,-7922,-7923,-7924,-7925,-7926,-1752,-7927,-1974,-7928,-3110,-3261,-3443], -[1,3,3013], -[0,0,3014,7,5], -[0,-190,-7929,-3037,-7930,-3664,-932,-940,-967,-7931,-1942,-7932,-2379,-2410,-2411,-2469], -[1,3,3016], -[0,3017,3018,3019,10], -[0,-7933,-7934,-7935,-7936,-7937,-2731,-7938,-7939,-7940,-7941,-628,-7942,-629,-2733,-7943,-7944,-7945,-7946,-7947,-668, --680,-7948,-724,-728,-7949,-7950,-7951,-7952,-834,-7953,-5501,-7954,-5502,-7955,-999,-1000,-1004,-1044,-1047,-7956,-1077, --6345,-5505,-5367,-1107,-6343,-7957,-7958,-7959,-1336,-1369,-1376,-7960,-7961,-1548,-1600,-7962,-1645,-1676,-1758,-1767, --7834,-7963, --1888,-7964,-7965,-7966,-2114,-6195,-7967,-7968,-2177,-5509,-7969,-7970,-2330,-2342,-2353,-7971,-2488,-7972,-3730,-7973, --7974,-7975], -[0,-6346,-630,-664,-665,-7976,-6477,-726,-7977,-7978,-932,-940,-7979,-964,-965,-1054,-7980,-1449,-1514,-1654,-1722,-1788, --1942,-7981,-2269,-2293,-2341,-2359,-7982,-2512,-2518,-7983,-7984], -[0,-3994,-7985,-5375,-687,-7986,-7987,-7988,-3114], -[1,3,3021], -[0,3022,3023,3024,4], -[0,-3197,-33,-3376,-3384,-3355,-3374,-3397,-38,-3412,-40,-44,-7989,-7990,-7991,-7992,-541,-7993,-7941,-628,-7944,-7946, --702,-7994,-7995,-7955,-6195,-2177], -[0,-23,-7996,-7997,-7998,-7999,-8000,-528,-630,-664,-705,-8001,-722,-7949,-753,-7951,-8002,-902,-8003,-904,-8004,-8005, --8006,-8007,-8008,-8009,-932,-8010,-966,-7980,-8011,-1654,-1989,-2082,-7981,-2114,-2125,-2501], -[0,-525,-7986,-8012,-902,-3185,-3186], -[1,3,3026], -[0,3027,3028,3029,6], -[0,-8013,-8014,-7941,-8015,-6346,-6345,-7959,-8016,-5509,-2488], -[0,-23,-32,-33,-3376,-38,-3412,-44,-7996,-7998,-8017,-7990,-629,-630,-664,-8001,-726,-8002,-902,-903,-8018,-8003,-8004, --8005,-8006,-8007,-8008,-8009,-8019,-8020,-8021,-932,-940,-8010,-964,-965,-967,-8022,-1054,-8011,-1654,-1942,-1989,-1990, --2091,-6348,-2281,-2282,-5059,-2501], -[0,-8012,-902], -[1,3,3031], -[0,3032,3033,3034,8], -[0,-8023,-8024], -[0,-351,-3267,-3037,-1520,-2125,-2127,-2392,-2410], -[0,-905,-3264,-775,-8025,-8026], -[1,3,3036], -[0,0,0,105,8], -[1,3,3038], -[0,0,3039,3040,8], -[0,-1654,-932,-1405,-966,-958,-968,-943,-974], -[0,-6422,-907,-2435], -[1,3,3042], -[0,3043,31,3044,4], -[0,-1801], -[0,-5827,-8027,-5865,-8028,-8029,-8030,-4116], -[1,3,3046], -[0,3047,3048,7,4], -[0,-1119,-2321], -[0,-4035,-3136,-3037,-774,-932,-6929,-1344,-1415,-1534,-1623,-1942,-2410], -[1,3,3050], -[0,3051,3052,3053,4], -[0,-479,-2269], -[0,-3037,-1202,-1376,-1654,-1788,-1966,-2410], -[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3262,-3960,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3966,-3967, --1965,-1966,-3968,-3969,-2063,-3970,-3108,-3971,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], -[1,3,3055], -[0,3056,3057,3058,8], -[0,-6511,-8031,-1977,-8032], -[0,-5834,-516,-5835,-932,-993,-1365,-1777,-1788,-2156,-2322], -[0,-3223,-8033,-8034,-3264,-6422,-6420], -[1,3,3060], -[0,0,3061,3062,9], -[0,-664,-1344,-1654,-2176], -[0,-8035,-8036,-8037,-8038,-7534], -[1,3,3064], -[0,3065,122,196,5], -[0,-987,-2346], -[1,3,3067], -[0,0,3068,3069,4], -[0,-23,-5584,-39,-40,-86,-3307,-7465,-527,-528,-533,-534,-932,-934,-940,-958,-967,-8039,-1107,-1344,-1415,-1646,-3547, --7861,-1942,-6040,-2501,-2503,-2518,-8040], -[0,-3113,-6845,-5558,-8041,-8042,-8043,-8044], -[1,3,3071], -[0,3072,3073,85,4], -[0,-8045,-674,-918,-8046,-8047,-8048,-8049,-8050,-8051,-7394,-8052,-8053,-8054,-1559,-1794,-5849,-1797,-1798,-8055,-1992, --8056,-8057], -[0,-526,-6022,-557,-932,-933,-958,-962,-969,-1365,-1449,-2125,-2156], -[1,3,3075], -[0,3076,3077,85,11], -[0,-1285,-2177,-2029,-1967,-1797,-8055,-2052,-917,-918], -[0,-915,-932,-2125,-1777,-21,-1365,-23,-557,-969,-2156,-32,-933,-958,-962,-970,-535,-6022], -[1,3,3079], -[0,3080,3081,85,4], -[0,-1285,-2177,-1967,-1797,-8062,-8063,-8046], -[0,-932,-2125,-1777,-21,-1365,-23,-557,-969,-2156,-32,-933,-958,-962,-970,-535,-6022], -[1,3,3083], -[0,3084,3085,85,6], -[0,-1285,-5849], -[0,-932,-2125,-1777,-21,-1365,-23,-557,-2156,-32,-958,-934,-535,-6022], -[1,3,3087], -[0,3088,3089,7,9], -[0,-459,-929], -[0,-465,-932,-943,-958,-963,-966,-968,-1654,-1788,-2293], -[1,3,3091], -[0,3092,3093,3094,4], -[0,-461,-1026], -[0,-7150,-635,-8064,-3347,-8065,-8066,-1942,-2091], -[0,-8067,-8068,-6505,-8069,-8070,-8071,-3217,-8072,-8073,-8074,-3756,-8075,-8076,-8077,-8078,-8079], -[1,3,3096], -[0,3097,3098,3099,4], -[0,-8080,-1283,-8081,-8082,-8083,-6402,-1797], -[0,-2832,-5834,-8084,-8085,-8086,-8087,-8088,-8089,-8090,-8091,-8092,-8093,-8094,-8095,-8096,-505,-516,-5835,-932,-6283, --6503,-1402,-1777,-1788,-8097,-2156,-8098,-2322,-8099], -[0,-3214,-3217,-6505,-3756,-7374,-5846,-8100,-8101,-5831], -[1,3,3101], -[0,3102,3103,3104,11], -[0,-6704,-8102,-8103,-8104], -[0,-932,-6706,-6707,-6708,-1344,-1534,-1788,-8105,-6709,-6710], -[0,-3217,-8106,-8107,-8108,-3184,-8109,-8110,-8111,-8112,-3207,-3214,-3582,-5396,-2444,-5260,-8113], -[1,3,3106], -[0,0,3107,3108,4], -[0,-5834,-515,-932,-1365,-1414,-1788,-2156,-2416], -[0,-5396,-8108,-8114,-3214,-3217,-3582], -[1,3,3110], -[0,0,3111,3112,5], -[0,-526,-527,-535,-4098,-558,-664,-767,-1654,-2125], -[0,-3184,-6324,-525], -[1,3,3114], -[0,0,3115,3116,9], -[0,-8115,-1654,-902,-7945,-7938,-8116,-8117,-8118,-8119,-629,-7993,-8003,-8120,-8121,-6083,-6070,-8122,-6081,-548,-6072, --6068,-550,-6071,-6082], -[0,-8123,-3582,-1961,-5923], -[1,3,3118], -[0,0,3119,3120,4], -[0,-21,-23,-40,-4691,-925,-932,-940,-943,-958,-966,-968,-1344,-1788,-1942,-2210,-2322], -[0,-1961,-5923,-3184,-8124,-926], -[1,3,3122], -[0,0,3123,3124,8], -[0,-5834,-515,-664,-923,-932,-993,-1127,-1137,-1149,-1161,-1365,-1654,-1788,-1963,-8125,-2156,-2322,-2416], -[0,-3217,-3207,-3184,-5396,-1961,-5923,-8126,-6917,-8127,-8128], -[1,3,3126], -[0,0,3127,3128,5], -[0,-589,-585], -[0,-5559,-3264,-3590], -[1,3,3130], -[0,0,14,3131,10], -[0,-5559,-5569,-5570,-8129,-8130,-2265,-8131,-8132], -[1,3,3133], -[0,3134,3135,7,4], -[0,-988,-6100,-987,-2231], -[0,-461,-615,-8133,-664,-3629,-8134,-1168,-1197,-1231,-1646,-1815,-2177], -[1,3,3137], -[0,3138,3139,3140,5], -[0,-189,-5200,-8135,-8136,-7820,-8137,-8138,-8139,-8140,-426,-469,-769,-812,-930,-982,-983,-986,-8141,-6100,-1025,-8142, --1047,-1108,-1353,-8143,-1393,-8144,-1645,-5199,-1815], -[0,-2832,-23,-40,-3794,-7462,-3244,-8145,-8146,-3037,-428,-534,-652,-664,-674,-722,-753,-795,-888,-955,-8147,-7355,-8148, --8149,-8150,-987,-8151,-1107,-1110,-1116,-1125,-1431,-1498,-1534,-1600,-1602,-1610,-8152,-8153,-8154,-8155,-8156,-8157, --1654,-8158,-8159,-1942,-1959,-1972,-2066,-2082,-2177,-2195,-2210,-2410,-2501,-2503,-8160], -[0,-3272,-7148,-3214,-3217,-986], -[1,3,3142], -[0,3143,3144,197,5], -[0,-1797,-1798,-934], -[0,-2322,-887,-932,-1365,-44,-8161,-8162,-557,-969,-2156,-958,-962,-970], -[1,3,3146], -[0,3147,3148,197,4], -[0,-2177,-1797,-1798,-8167], -[0,-2322,-887,-932,-1365,-44,-8161,-8162,-557,-2156,-958], -[1,3,3150], -[0,3151,3152,3153,10], -[0,-934], -[0,-427,-428,-855,-932,-940,-958,-1344,-1534,-1771,-1942,-8168,-2410], -[0,-8164,-727,-4795,-8165,-6434,-8166,-932,-8163,-3214,-4900,-2410], -[1,3,3155], -[0,0,38,3156,8], -[0,-3939,-707,-8169,-5553,-7148,-8170,-1445,-1452,-8171,-932,-5874,-8172,-8173,-7440,-7144,-8174,-7840,-8175], -[1,3,3158], -[0,3159,38,3160,4], -[0,-190,-1110], -[0,-932,-5031,-8176], -[1,3,3162], -[0,3163,3164,3165,4], -[0,-3615,-3244,-190,-3748,-427,-428,-938,-945,-8177,-948,-958,-960,-964,-965,-7354,-978,-2411], -[0,-4367,-932,-2410], -[0,-4362,-932,-5031,-8176], -[1,3,3167], -[0,3168,3169,76,11], -[0,-965,-964,-958,-8177,-428,-7354,-427,-948], -[0,-932,-2410,-4367], -[1,3,3171], -[0,0,0,3172,6], -[0,-932,-8163,-5031,-8178,-1942], -[1,3,3174], -[0,3175,0,7,5], -[0,-23,-959,-969,-32,-958,-561,-956,-962,-8179,-428,-8167,-970,-976,-427], -[1,3,3177], -[0,0,3178,3179,5], -[0,-932,-943,-958,-965,-968,-2322], -[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8163,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2176,-2250, --8185,-5553,-8186,-8187,-8174], -[1,3,3181], -[0,0,3182,3183,4], -[0,-3330,-8096,-932,-958,-965,-968,-2322], -[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8163,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2250,-8185, --5553,-8186,-8187,-8174], -[1,3,3185], -[0,3186,3187,7,9], -[0,-190,-3560,-978,-1110,-2411], -[0,-8188,-3330,-3037,-8189,-672,-932,-8190,-8191,-1942,-2410], -[1,3,3189], -[0,3190,3191,3192,4], -[0,-8192,-7462,-3748,-8167,-1110], -[0,-519,-932], -[0,-8163,-2541,-8193,-8194,-8195,-8196,-8197,-707,-8169,-5553,-7148,-8170,-1445,-1452,-8171,-932,-5874,-8172,-2250,-8173, --7440,-7144,-8174,-7840,-8175,-5493], -[1,3,3194], -[0,0,3195,3196,10], -[0,-86,-3307,-767,-1344,-1534,-2094,-2099,-2541], -[0,-8198,-727,-932,-7921,-7922,-8199,-2541], -[1,3,3198], -[0,3199,3200,3201,4], -[0,-429,-469,-671,-719,-755,-823,-3780,-7829,-1418,-1456,-5473,-1605,-2400], -[0,-190,-3037,-4372,-8200,-3899,-6593,-932,-940,-958,-965,-967,-978,-1609,-1768,-1771,-1821,-1942,-2210,-7969,-2410,-2411, --2469], -[0,-4100,-3671,-856,-932,-3262,-3862], -[1,3,3203], -[0,3204,0,3205,8], -[0,-812,-8201,-1101,-8202,-8203,-2654,-8204], -[0,-2410,-932,-6024,-6041,-3862], -[1,3,3207], -[0,3208,3209,3210,5], -[0,-1046,-1077,-1543,-1793,-2168], -[0,-21,-23,-40,-86,-3307,-8205,-7166,-528,-533,-679,-8206,-767,-824,-825,-932,-940,-8207,-958,-1344,-1415,-1424,-1534, --1771,-1942,-2251,-2501], -[0,-932,-7148,-8170,-5932,-2501], -[1,3,3212], -[0,3213,3214,3215,4], -[0,-189,-7462,-8208,-986,-8209,-8210,-2115], -[0,-428,-519,-652,-668,-932,-8211,-947,-955,-999,-1771,-1821,-1866,-2410,-2541], -[0,-932,-5208,-3784,-519,-4004,-4043,-507,-5856,-5855,-1654], -[1,3,3217], -[0,3218,3219,3220,9], -[0,-8212], -[0,-1654,-932,-528,-1552], -[0,-525,-932,-5208,-3784,-528], -[1,3,3222], -[0,3223,3224,3225,5], -[0,-7150,-8213,-635,-658,-1047,-1110,-1565,-2177], -[0,-23,-32,-86,-3307,-3615,-190,-3470,-3471,-8214,-3268,-8215,-3330,-3136,-8216,-3199,-589,-8217,-891,-932,-940,-955,-967, --1002,-1344,-1415,-1942,-2174,-2205,-2375,-2379,-2410,-2411], -[0,-932,-4865,-6520,-3690,-7148,-657,-8218], -[1,3,3227], -[0,0,123,3228,5], -[0,-932,-5208,-8108,-4795], -[1,3,3230], -[0,3231,3232,3233,4], -[0,-930,-1353], -[0,-5380,-3037,-8219,-528,-708,-769,-932,-8220,-1077,-1654,-1788,-1810,-2125,-2177,-5621,-8221,-2816], -[0,-932,-5208,-3784,-3862,-8222,-3485,-8223,-1109,-1110,-8224,-8225,-8226,-8227,-8228,-8229], -[1,3,3235], -[0,3236,3237,198,11], -[0,-189,-988], -[0,-86,-3307,-3534,-8230,-3244,-190,-3560,-8231,-8232,-8233,-426,-3044,-3037,-428,-429,-3899,-932,-8234,-940,-947,-965, --978,-981,-982,-986,-1344,-1431,-1534,-1548,-1609,-1768,-1772,-1942,-2892,-2410,-2411,-2469], -[1,3,3239], -[0,3240,3241,3242,4], -[0,-1548,-8235], -[0,-469,-1107,-1344,-1654,-932,-2125,-8236,-6611,-21,-23,-5870,-43,-2174,-40,-32,-8237,-3201,-955,-535,-3408,-36], -[0,-932,-3862,-8238], -[1,3,3244], -[0,3245,3246,3247,8], -[0,-1333], -[0,-8239,-8240,-932,-940,-8241,-1942,-2177], -[0,-3784,-5208,-932,-3264], -[1,3,3249], -[0,3250,3251,3252,9], -[0,-8242,-8243,-8244,-8045,-505,-812,-8245,-8246,-8247,-1285,-7437,-1393,-1645,-8063,-8248,-8055,-2177,-8249,-2383], -[0,-8250,-3330,-428,-526,-527,-528,-539,-541,-557,-6089,-566,-572,-664,-767,-8251,-932,-947,-948,-955,-958,-7894,-6039, --8252,-1107,-1365,-1408,-1461,-8253,-8254,-1609,-1654,-8255,-1788,-2074,-2125,-2156,-2210,-2359,-2410,-8256], -[0,-932,-5208,-3784,-3184,-5748,-3209,-6024,-8257], -[1,3,3254], -[0,199,3255,198,6], -[0,-21,-23,-40,-42,-86,-3307,-8230,-8258,-3470,-3471,-5325,-3330,-3136,-3037,-3199,-427,-428,-429,-533,-8259,-815,-932, --940,-947,-955,-958,-965,-967,-981,-8260,-1344,-1392,-1415,-6725,-1534,-8241,-1868,-1942,-2125,-2174,-2177,-2379,-2410], -[1,3,3257], -[0,3258,3259,3260,4], -[0,-8261,-8262,-8263,-3896,-812,-930,-986,-8141,-1320,-8264,-8265,-2177,-8266,-8267], -[0,-2832,-21,-23,-32,-3203,-40,-8268,-8269,-7820,-8270,-351,-7040,-3472,-7041,-3035,-3198,-8232,-8146,-426,-4049,-3621, --3037,-3199,-8271,-3782,-535,-539,-8272,-652,-656,-664,-813,-932,-8237,-8236,-1107,-1110,-1344,-8273,-1456,-8274,-1534, --1654,-8275,-1874,-8276,-2125,-2127,-2174,-2210,-5198,-2410,-2411], -[0,-932,-3862,-1446], -[1,3,3262], -[0,3263,3264,3265,9], -[0,-189,-7820,-8137,-8277,-8278,-8279,-7356,-5199,-2653], -[0,-32,-8280,-50,-8230,-7462,-8281,-8282,-3748,-7155,-3621,-8283,-3037,-3199,-427,-428,-652,-8284,-928,-932,-940,-955, --8285,-960,-8286,-961,-963,-965,-8287,-967,-971,-980,-7355,-982,-997,-1110,-1654,-1834,-1942,-2177,-2281,-8288,-2282, --8289,-8290,-2892,-2392,-2410,-2411,-8291,-2468,-2478], -[0,-932,-5208,-3784,-7148,-8292,-1460,-4055], -[1,3,3267], -[0,3268,3269,3270,4], -[0,-5113,-8243,-505,-8293,-522,-8294,-8295,-5973,-1285,-8296,-8297,-1645,-8063,-8032,-8298], -[0,-21,-23,-32,-3203,-43,-516,-535,-557,-932,-934,-947,-955,-956,-958,-988,-1059,-1365,-1408,-7317,-1646,-1777,-1797, --1798,-2125,-2156,-2177,-2322,-8299], -[0,-932,-5208,-3784,-4665,-4666,-4146], -[1,3,3272], -[0,3273,3274,3275,4], -[0,-1618], -[0,-1788,-664,-1654,-932,-1110,-190,-8148,-8300], -[0,-932,-5208,-1599,-7148,-8170], -[1,3,3277], -[0,3278,0,3279,10], -[0,-1110,-189], -[0,-932,-5208,-3784,-1654], -[1,3,3281], -[0,3282,3283,200,9], -[0,-189,-909,-8301,-1101,-1110,-2898,-1353,-2177,-8302], -[0,-190,-3330,-426,-8303,-3037,-428,-5209,-932,-940,-947,-955,-1026,-1344,-1534,-1609,-1654,-1772,-1788,-1810,-1942,-1977, --2091,-2125,-8304,-2400,-2410], -[1,3,3285], -[0,3286,3287,200,6], -[0,-6578,-8305,-1353,-1645,-2114,-2177], -[0,-5380,-708,-932,-1026,-1110,-1654,-1788,-1810,-1977,-2125], -[1,3,3289], -[0,3290,0,3291,10], -[0,-8306,-2653], -[0,-932,-5208,-3784,-1942], -[1,3,3293], -[0,3294,3295,3296,4], -[0,-189], -[0,-428,-855,-932,-940,-947,-955,-959,-965,-967,-1110,-1344,-1415,-1534,-1772,-1942,-2410], -[0,-932,-5208,-3784,-1961,-5923], -[1,3,3298], -[0,3299,3300,201,5], -[0,-8243,-8307,-505,-8308,-8245,-8309,-988,-1285,-8296,-1645,-1798,-8063,-8055,-1967,-2114,-2177,-5010,-8310], -[0,-23,-32,-3332,-8311,-8312,-41,-3330,-426,-3037,-428,-528,-932,-934,-947,-955,-958,-981,-8260,-982,-986,-8313,-1107, --1405,-1408,-8314,-1609,-1654,-1777,-2210,-2410,-8256], -[1,3,3302], -[0,3303,3304,201,5], -[0,-2564,-23,-25,-8315,-3251], -[0,-1415,-2410,-3037,-47,-528,-3330,-426,-8316,-8317,-32,-42], -[1,3,3306], -[0,3307,3308,3309,6], -[0,-189,-5200,-3896,-8273,-8318,-8319,-8320], -[0,-50,-3462,-8230,-3244,-190,-8281,-8282,-5030,-3035,-3330,-8231,-426,-3621,-3037,-8321,-427,-428,-507,-664,-8284,-932, --940,-947,-948,-955,-958,-960,-8286,-961,-963,-965,-8322,-967,-971,-978,-980,-7355,-8323,-1609,-1654,-8324,-1588,-1772, --1788,-1834,-1942,-2177,-2281,-3085,-8288,-2892,-2392,-2410,-2411,-8291,-2468,-2478], -[0,-932,-5208,-3784,-5570,-5569], -[1,3,3311], -[0,3312,3313,3314,5], -[0,-8325], -[0,-190,-5887,-932,-8326,-940,-947,-955,-1534,-1609,-1654,-1771,-1942,-2174,-8160], -[0,-932,-7107,-8327], -[1,3,3316], -[0,3317,0,3318,9], -[0,-2410,-2177,-8328,-1566,-8329,-5200,-1645,-5198,-8320,-651,-644,-1110], -[0,-8330,-932,-5208], -[1,3,3320], -[0,0,123,3321,11], -[0,-932,-5208], -[1,3,3323], -[0,3324,3325,3326,9], -[0,-189,-3115,-6100,-1110,-1499,-1889,-1907,-1929,-2177,-8331], -[0,-23,-32,-6034,-8230,-4776,-8332,-8333,-4049,-8334,-3621,-3037,-8335,-3199,-8336,-3331,-3782,-461,-507,-928,-982,-8190, --983,-986,-1431,-1521,-1654,-1916,-1931,-2162,-2232,-2286,-2299,-8337,-2392,-2399,-2548], -[0,-932,-3784,-5208,-2299,-8338], -[1,3,3328], -[0,3329,3330,3331,5], -[0,-3331,-429], -[0,-86,-3307,-3244,-190,-3037,-5206,-3664,-6593,-3665,-932,-940,-947,-948,-8339,-965,-968,-981,-8260,-1110,-1344,-1431, --1534,-1942,-2910,-2174,-2892,-2410,-2411,-2469], -[0,-932,-5208,-3784,-7148,-5127,-3634], -[1,3,3333], -[0,3334,3335,3336,4], -[0,-429,-264,-263], -[0,-4153,-3330,-426,-932,-4164], -[0,-4165,-856,-4100,-3485,-4156,-4158,-4346,-3862], -[1,3,3338], -[0,3339,3340,3341,9], -[0,-3188,-189,-671,-680,-8340,-3347,-8341,-1110,-1366,-5894,-1451,-1878,-8342,-8343,-2177,-4096], -[0,-22,-23,-32,-3244,-8344,-428,-3782,-519,-652,-910,-932,-8211,-945,-947,-955,-960,-978,-981,-8260,-982,-986,-1536,-1609, --8345,-8346,-1768,-1772,-8275,-1821,-1951,-2410,-2478,-2548], -[0,-932,-5208,-3784,-8347,-8170,-7148,-5553,-2541], -[1,3,3343], -[0,199,3344,3345,4], -[0,-3748,-3330,-3621,-3037,-427,-428,-5206,-8348,-8349,-726,-932,-947,-955,-979,-981,-8260,-2379,-2392,-2410,-2423,-2469], -[0,-932,-5208,-3784,-8350,-2469,-8351], -[1,3,3347], -[0,3348,3349,3350,5], -[0,-189,-5199,-2788,-1931,-2177,-8352], -[0,-50,-3560,-8282,-3748,-5030,-3330,-8283,-3037,-3199,-8353,-427,-428,-3782,-3664,-507,-8284,-928,-932,-6835,-940,-955, --958,-961,-8354,-8287,-967,-978,-8190,-983,-986,-997,-1110,-1449,-1609,-1852,-1942,-2892,-2410,-8291,-2468,-2469,-2478], -[0,-932,-3784,-5031,-2476,-5173,-8199], -[1,3,3352], -[0,3353,3354,3355,6], -[0,-22,-1464,-668,-1373,-1793,-2006,-2205], -[0,-3244,-8355,-3330,-3037,-4067,-3040,-740,-932,-5135,-8356,-8357,-1431,-1741,-2269,-2410,-2469], -[0,-932,-8358], -[1,3,3357], -[0,3358,3359,38,9], -[0,-8359,-426,-8360,-988], -[0,-428,-664,-983,-986,-8159,-2195], -[1,3,3361], -[0,0,3362,38,5], -[0,-1810,-2127,-2132,-2384,-2410], -[1,3,3364], -[0,3365,0,3366,4], -[0,-941,-8361], -[0,-984], -[1,3,3368], -[0,0,0,3369,9], -[0,-4791,-3217,-8257,-6024,-3209,-3966,-4792], -[1,3,3371], -[0,3372,3373,3374,5], -[0,-461,-6426,-983], -[0,-2832,-2127,-2195,-2384,-2410], -[0,-3272,-3217,-3214,-3215,-4132,-461], -[1,3,3376], -[0,0,3377,3378,5], -[0,-6774,-8362,-8363,-1107,-1405,-8364,-1471,-1475,-1477,-1478,-1479,-1480,-1482,-1487,-8365,-1488,-1548,-1654,-8366, --2081,-2330,-2388,-2410,-2412,-8367,-2501], -[0,-3272,-3217,-987,-3214,-3215,-4132], -[1,3,3380], -[0,0,3381,7,5], -[0,-558,-566,-664,-986,-1168,-1179,-1199,-1205,-8368,-1452,-1654], -[1,3,3383], -[0,202,3384,7,6], -[0,-2410,-2447], -[1,3,3386], -[0,0,3387,3388,6], -[0,-1654,-932,-1405,-589,-2172,-2155,-585,-966,-958,-968,-943,-963,-974], -[0,-990,-1334,-4616], -[1,3,3390], -[0,3391,3392,3393,8], -[0,-8369,-992], -[0,-8370,-8371,-8372,-8373,-4272,-5686,-3037,-8096,-633,-8374,-756,-1344,-1405,-1471,-1472,-1477,-1479,-8375,-1646,-1788, --1942,-2322,-2379,-2388,-2402,-2405,-2410,-8376], -[0,-4276,-8377], -[1,3,3395], -[0,3396,3397,3398,5], -[0,-4272,-616,-760,-8378,-8379], -[0,-8380,-3037,-8381,-8096,-932,-1471,-1475,-1479,-8375,-8382,-1788,-1942,-2322,-2379,-2410], -[0,-4276,-8113,-5260], -[1,3,3400], -[0,3401,3402,3403,5], -[0,-461,-668,-2550,-1548,-615,-1077,-8383,-988,-1600,-8384,-2425], -[0,-1983,-8385,-2410,-3037], -[0,-8386,-8387,-3214,-1599,-4004], -[1,3,3405], -[0,3406,3407,3408,5], -[0,-883,-8388,-1597,-8389,-2239,-8390,-2346], -[0,-8391,-8392,-8393,-2322,-8394], -[0,-5827,-6917,-8395,-7724,-2239,-8396,-1631,-8276], -[1,3,3410], -[0,0,3411,3412,9], -[0,-589,-615,-756,-1654,-1788], -[0,-5389,-997,-6820,-8397,-8398,-8399,-8400,-6821,-8401,-8402,-1801,-8403,-8404], -[1,3,3414], -[0,0,3415,3416,4], -[0,-350,-3266,-509,-652,-1654,-2127], -[0,-8405,-8406,-8407,-8408,-8398,-8399,-6821,-8401,-6820,-5389,-1801,-8400,-8403,-8409,-8404], -[1,3,3418], -[0,0,3419,3420,5], -[0,-468,-1083,-8047,-1283,-1402,-2322], -[0,-997,-8410,-8411,-8412], -[1,3,3422], -[0,3423,3424,3425,4], -[0,-8413,-769,-1040,-1100,-8414,-1395,-1399,-1773,-1951,-2202,-8415,-8416], -[0,-3037,-519,-652,-8417,-8418,-8419,-8420,-1849,-7087,-6909,-2384,-2410,-2518,-2541], -[0,-8421,-6599,-1958,-8422,-7096,-8423,-8424,-7091,-6656,-5550,-8425,-7304,-8426,-1764,-1847,-8427,-5369], -[1,3,3427], -[0,0,3428,3429,6], -[0,-1144,-1146,-1149,-1127,-2518], -[0,-1000,-1958,-8428,-3973,-8429,-8430,-8431,-8432], -[1,3,3431], -[0,3432,3433,7,4], -[0,-8433,-8434,-5124,-4025,-5129,-1427], -[0,-7037,-4034,-668,-1361], -[1,3,3435], -[0,0,3436,3437,4], -[0,-2832,-3037,-8200,-3665,-932,-8435,-1763,-8436,-2269,-2378,-2410,-2469], -[0,-2410,-8437,-507,-3694,-2414,-4004,-3634], -[1,3,3439], -[0,3440,3441,203,4], -[0,-1983,-828,-990,-1801,-2178,-2453,-812,-1072,-743,-3122,-459,-2401,-1840,-2255,-907,-1641,-5148,-617,-929,-1335,-1800, --737,-1045,-1997,-2187,-746,-8438,-736], -[0,-888,-1296,-1788,-465,-1654,-2457,-932,-1610,-1676,-2293,-733,-744,-745,-1010,-1635,-8439], -[1,3,3443], -[0,3444,3445,203,4], -[0,-459,-8440,-617,-736,-737,-743,-746,-812,-828,-907,-929,-990,-1045,-1072,-1335,-8438,-1636,-1800,-1840,-1851,-5148, --1983,-1997,-2155,-2178,-2187,-8441,-2255,-2401,-2445,-2453], -[0,-465,-733,-744,-745,-888,-932,-1010,-1296,-1610,-1635,-1654,-1676,-1788,-8439,-2293,-2457], -[1,3,3447], -[0,3448,3449,3450,6], -[0,-23,-25,-46,-8245,-1851], -[0,-3136,-932,-1415], -[0,-4847,-1004,-1446,-4100,-3696,-8442,-856,-2305,-5886,-3262,-3960,-8443,-8444,-8445], -[1,3,3452], -[0,3453,3454,3455,4], -[0,-888,-1650,-719,-1645,-6123], -[0,-1654,-932,-2125,-2418,-2293,-2369,-966,-958,-968,-943,-974,-2450], -[0,-1004,-3161,-6125,-3578,-3691,-5728,-3122,-3994,-3690], -[1,3,3457], -[0,3458,3459,3460,5], -[0,-1107,-1119,-1276], -[0,-190,-3470,-7040,-3471,-3472,-7041,-7042,-3136,-3037,-932,-1110,-1417,-2174,-2375,-2410,-2411], -[0,-1004,-8446,-1276,-6107,-3999,-8447,-3261], -[1,3,3462], -[0,3463,3464,3465,5], -[0,-1465,-8448,-3850], -[0,-1654,-932,-1004,-2379,-1942,-2410,-3621,-3617,-739,-428,-427], -[0,-6120,-8449,-3173,-8450,-6121,-1334,-3175,-8451,-1791,-1004], -[1,3,3467], -[0,3468,3469,7,5], -[0,-743,-746,-812,-828,-6825,-1840,-2155,-2418], -[0,-465,-744,-932,-963,-1004,-1654,-1788,-2293], -[1,3,3471], -[0,3472,3473,3474,5], -[0,-469,-668,-719,-724,-754,-865,-1004,-1435,-2127,-2132,-2410,-2564], -[0,-190,-3732,-4198,-3617,-3037,-427,-428,-932,-966,-1110,-1753,-1942,-2125,-2379,-2383,-2411], -[0,-3690,-3445,-6491,-3113,-6129,-1004,-8452,-3161,-8453,-5545,-3844,-3926], -[1,3,3476], -[0,0,3477,3478,5], -[0,-652,-8454,-2210,-932,-1004,-2379,-8455,-2410,-3037,-4372,-3617,-428,-427], -[0,-8456,-8457,-4055,-2410,-3690,-1334,-1004,-8458,-8459,-2410,-5401,-8038,-8460,-8461,-8462,-8463,-8464,-4140,-4601, --3445,-8465,-8466,-2006,-8467,-8468,-8469], -[1,3,3480], -[0,3481,3482,3483,4], -[0,-1548,-2451], -[0,-2685,-8470,-8471,-3136,-3044,-427,-428,-932,-940,-958,-967,-1415,-1942,-2375,-2410], -[0,-1004,-2451,-3926,-5874,-7723,-8472,-2544], -[1,3,3485], -[0,3486,3487,3488,5], -[0,-483,-1736,-8473,-1993,-8474], -[0,-3732,-4198,-8475,-3617,-4199,-8476,-8477,-4625,-8478,-724,-754,-828,-1004,-4206,-1335,-1730,-8479,-2410,-2426,-2564, --8480], -[0,-3967,-3690,-1334,-5401,-856,-4055,-1004,-2410,-4058,-3844,-8481,-4847,-8482,-3438,-8483,-8484,-8485,-8486,-2564,-3926], -[1,3,3490], -[0,0,3491,3492,8], -[0,-5834,-8487,-932,-1445,-2322], -[0,-1015,-702,-1631], -[1,3,3494], -[0,3495,3496,3497,8], -[0,-8488,-8489], -[0,-8490,-8491,-8492,-1202,-1396,-8493,-1646,-1654,-1792], -[0,-7370,-702,-1015,-1631,-7369,-7208,-1792,-1797,-7375,-3589,-7153,-8494,-8495,-2444,-3590,-5260,-5846], -[1,3,3499], -[0,3500,3501,7,5], -[0,-510,-1543,-2168,-2510], -[0,-526,-533,-551,-556,-558,-767,-778,-825,-932,-6929,-958,-1041,-1415,-1534,-1780,-1939,-2000,-2251,-2275,-2501,-8496], -[1,3,3503], -[0,3504,3505,3506,10], -[0,-812,-1100,-2555,-8497], -[0,-427,-428,-519,-932,-943,-950,-958,-966,-968,-974,-1077,-1344,-1534,-1788,-2384,-2410], -[0,-2432,-5408,-7347], -[1,3,3508], -[0,0,3509,7,9], -[0,-1788,-1168,-1446,-1654,-2210,-932,-1548,-1813,-2347,-756,-633,-2915,-1243,-1262,-1534,-2778,-2461,-1204,-8498,-8499, --2463], -[1,3,3511], -[0,3512,3513,3514,4], -[0,-8500], -[0,-932,-937,-966,-1001,-1654,-1788,-8501,-2210], -[0,-8502,-1573,-3444,-5545,-3240,-8503], -[1,3,3516], -[0,3517,3518,3519,4], -[0,-8504], -[0,-262,-3037,-767,-1107,-8342,-2104,-2402,-2410,-2469,-8505,-8506,-1023], -[0,-8507,-8508,-5858,-3634,-8509,-8510,-8511,-1021,-8512,-8513,-1415], -[1,3,3521], -[0,3522,0,3523,8], -[0,-8514,-8515], -[0,-788,-3215,-5922,-8516,-8517,-8518], -[1,3,3525], -[0,0,3526,3527,4], -[0,-756,-864,-932,-1654,-1788,-1939,-2006,-2052,-2210,-2410], -[0,-5922,-6439,-821], -[1,3,3529], -[0,3530,3531,204,4], -[0,-8519,-8520,-1108,-5615,-1639], -[0,-8521,-6927,-8522,-4036,-3621,-3037,-8523,-4372,-8524,-932,-8525,-999,-1026,-4787,-1107,-8526,-1654,-2125,-2210,-8527, --2410], -[1,3,3533], -[0,0,3534,7,5], -[0,-3621,-3037,-1654,-2165,-2410], -[1,3,3536], -[0,3537,3538,3539,11], -[0,-8529], -[0,-23,-38,-40,-43,-3037,-534,-652,-932,-1297,-1412,-1942,-1973,-2410,-2501,-2503], -[0,-5922,-6597,-4055,-3215,-2536,-6841,-2537,-3756,-2451,-5874,-8530,-507,-8531,-8532,-3264], -[1,3,3541], -[0,0,0,3542,10], -[0,-1029,-3162,-2363,-2319,-8533,-826], -[1,3,3544], -[0,3545,3546,3547,4], -[0,-8534,-8535,-8536,-8537,-8538,-8539,-8540,-8541,-8542,-1867,-8543,-2124,-8544,-2177,-8545], -[0,-8546,-3902,-357,-3748,-5029,-3037,-469,-3907,-470,-8547,-8548,-8549,-2917,-8550,-726,-767,-932,-8551,-4848,-8552, --8553,-1335,-1435,-5265,-1464,-8554,-2884,-1730,-1972,-2240,-2384,-2410,-2426,-2453,-3612], -[0,-3578,-3161,-4055,-4058,-1805,-3690], -[1,3,3549], -[0,3550,3551,7,5], -[0,-262,-8555,-5335,-8556,-8557,-5336,-5337,-8558,-8559,-536,-541,-8560,-8561,-909,-928,-1026,-5344,-8562,-1645,-8563, --2383,-2410,-8564], -[0,-86,-3307,-367,-3136,-8565,-8566,-3037,-6025,-5367,-1344,-1415,-3640,-1534,-1942,-1944,-1945,-2125,-2379,-2392,-5369], -[1,3,3553], -[0,3554,3555,3556,10], -[0,-8567,-8568,-8569,-8570,-8571,-6369,-883,-1646,-8255,-2062,-8032,-2243,-8572,-8057,-8573,-2322,-2347], -[0,-5834,-515,-516,-932,-1365,-1777,-2156], -[0,-2319,-8574,-4004,-8575,-8576,-3240], -[1,3,3558], -[0,3559,3560,7,5], -[0,-768,-8577,-1580,-1792,-1961,-8578,-2594], -[0,-23,-824,-1059,-1168,-1174,-1201,-1243,-1361,-1417,-1632], -[1,3,3562], -[0,28,3563,3564,9], -[0,-21,-23,-40,-41,-3470,-3471,-8579,-5859,-8580,-553,-796,-932,-933,-1534,-1650,-2174], -[0,-8581,-8582,-8583,-8584,-3098,-8585,-3100,-3482,-2006,-8586,-8587,-5066,-3578,-8588,-8589,-8590,-8591,-8592,-8593, --8594,-8595,-8596,-8597,-8598,-8599,-8600,-8601,-8602,-8603,-8604,-8605], -[1,3,3566], -[0,39,3567,3568,4], -[0,-21,-23,-38,-40,-41,-42,-3326,-350,-351,-3267,-407,-409,-2622,-3136,-3040,-3052,-427,-428,-708,-726,-767,-932,-934, --940,-7476,-958,-959,-969,-970,-1415,-2006,-2019,-2082,-2127,-2140,-2375,-2387,-2410], -[0,-8606,-3100,-8607,-2074], -[1,3,3570], -[0,3571,0,3572,8], -[0,-8608,-8609,-8610,-5140], -[0,-4213,-1334,-4215,-3634,-4216,-8611], -[1,3,3574], -[0,3575,0,3576,10], -[0,-8612], -[0,-8613,-1038,-6768,-8614,-510,-5921,-8615,-6309,-1961], -[1,3,3578], -[0,75,3579,3580,4], -[0,-3037,-3665,-510,-1344,-1534,-2410,-2466,-6859,-2469], -[0,-1039,-4111,-8616,-8617,-5514], -[1,3,3582], -[0,3583,14,3584,9], -[0,-6861], -[0,-4112,-687,-7095,-3958,-8132,-8618,-8619,-8620,-1040,-8621], -[1,3,3586], -[0,205,3587,48,4], -[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-1344,-1415,-1534,-1623,-1771,-1942,-2251,-2437, --2501], -[1,3,3589], -[0,0,3590,3591,8], -[0,-21,-23,-4691,-3356], -[0,-8622,-8623,-8624], -[1,3,3593], -[0,3594,3595,3596,4], -[0,-8625,-8626,-8627,-8628], -[0,-8629,-3037,-519,-8630,-1100,-8631,-2384,-2541], -[0,-1640,-6656,-8038,-8632,-5409,-6527,-5094,-8633,-8634,-6855,-8635,-8636,-6659,-7440,-1391,-8637,-8638,-8639,-7863, --7304,-640,-6438,-8640,-7715,-8641,-8642,-5315,-8643,-8644,-8645,-8646,-8647,-8648,-8649,-8650,-8651,-1992,-8652,-8653, --8654,-8655,-8656,-8657,-5408,-2323,-8658,-8659,-7345,-8660,-7860,-8661,-8662,-8663,-8664,-8665,-8666,-8667,-8668,-8669, --8670,-8671,-8672,-8673, --8674,-8675,-6528,-8676,-8677,-5953,-8678,-8679,-8680,-8681,-8682,-8683,-8684,-8685,-8686,-8687,-8688,-3742,-8689,-8690, --8691,-8692,-8693,-8694,-8695,-8696,-8697,-8698,-8699,-8700,-8701,-8702,-8703,-8704,-2534,-8705,-8706,-8707,-8708,-8709, --8710,-8711,-8712,-8713,-8714,-6597,-8715,-8716,-4771,-8717,-8718,-8719,-6042,-8720,-8721,-8722,-8723,-8724,-8725,-8726, --8727,-8728,-8729,-8730, --8731,-8732,-8733,-8734,-8735,-8736,-8737,-8738,-8739,-8740,-8741,-8742,-8743,-8744,-8745,-8746,-8747,-8748,-8749,-8750, --8751,-8752,-8753,-5316,-8754,-8755,-8756,-8757,-7557,-8758,-8759,-8760,-8761,-8762,-8763,-8764,-8765,-8766,-7711,-8767, --8768,-8769,-8770,-8771,-8772,-8773,-8774,-8775,-8776,-8777,-8778,-8779,-8780,-8781,-8782,-8783,-8784,-8785,-8786,-8787, --8788,-8789,-8790,-8791, --8792,-8793,-6695,-8794,-8795,-8796,-7349,-8797,-8798], -[1,3,3598], -[0,0,3599,3600,9], -[0,-3266,-516,-652,-932,-1344,-1654,-2127], -[0,-6656,-1044,-8799,-8800,-8801,-651,-834], -[1,3,3602], -[0,3603,81,7,6], -[0,-812,-907,-929,-1800,-1840,-2255], -[1,3,3605], -[0,3606,3607,3608,5], -[0,-1871,-5907], -[0,-2541,-519,-824,-2384,-2331], -[0,-3324,-7421,-6491,-5573,-7282], -[1,3,3610], -[0,3611,3612,3613,4], -[0,-8802,-8803], -[0,-519,-7408,-2331,-2384,-2541], -[0,-5573,-8804,-1047,-5504,-8805,-8806,-6656,-7282,-5572,-5897,-2114,-8807,-6370,-7420,-7421,-2487,-8808,-1847], -[1,3,3615], -[0,3616,3617,3618,4], -[0,-8809,-1393,-1639,-8810], -[0,-932,-937,-966,-1001,-8811,-1654,-1759,-1788,-2114], -[0,-6656,-5573,-1047,-5504,-1107,-5572,-5574,-2114,-7282], -[1,3,3620], -[0,3621,3622,3623,4], -[0,-8812,-8813,-8814,-8815,-8816,-8817,-8818,-8819,-8820,-8821,-8822,-8823,-8824,-8825,-8826,-8827,-8828,-8829,-8830, --8831,-8832,-8833,-8834,-8835,-8836,-8837,-8838,-8839], -[0,-1168,-2127,-2410,-1244,-1252,-2143,-3266,-2134,-350,-2139,-2142,-351], -[0,-3173,-7685,-8840,-1050,-8841,-6005,-6187,-8842], -[1,3,3625], -[0,3626,3627,3628,10], -[0,-8843,-8831,-8844,-3037,-8845,-1025,-8846,-1465,-8847,-1730,-2446], -[0,-8848,-8824,-8825,-8849,-262,-8850,-3035,-4269,-8851,-3850,-3044,-5686,-3621,-4624,-8852,-8853,-4372,-3625,-3738,-427, --428,-581,-664,-665,-3629,-668,-677,-824,-932,-8854,-1168,-1199,-1208,-1261,-8855,-1548,-1646,-1654,-1693,-1722,-1771, --1788,-2105,-2106,-2150,-2210,-2211,-2379,-2410,-2550], -[0,-8856,-7685,-8840,-8841,-3173], -[1,3,3630], -[0,3631,0,3632,10], -[0,-8857,-8858,-8859,-8860,-8861,-8862,-4106,-8863,-458,-469,-470,-501,-8864,-617,-679,-8865,-695,-713,-719,-728,-754, --767,-769,-790,-8866,-8867,-8868,-1004,-1044,-1069,-1077,-1087,-8869,-1107,-8846,-1353,-1442,-1465,-1526,-8870,-1548, --8871,-1610,-6294,-1640,-1645,-1676,-1729,-1805,-1816,-3447,-1857,-8872,-8873,-1888,-1959,-8874,-2122,-2177,-8875,-8876, --8877,-8878, --4356,-2359,-8879,-8880,-8881,-2446,-2520,-2522,-2531,-2548,-2564,-8882], -[0,-8883,-687,-8884,-5801,-8885,-1050,-8841,-6224,-8886], -[1,3,3634], -[0,3635,86,3636,9], -[0,-8887,-668,-831,-8888,-8889,-2001], -[0,-7416,-5897], -[1,3,3638], -[0,3639,3640,7,5], -[0,-3048,-8566,-8890,-1077,-8891,-2488], -[0,-3037,-2125,-2319,-2410], -[1,3,3642], -[0,0,86,3643,5], -[0,-1055,-4055,-5841,-8892,-2239,-7208,-8893], -[1,3,3645], -[0,3646,206,3647,5], -[0,-812,-926,-1077,-1548,-2359], -[0,-7871], -[1,3,3649], -[0,0,3650,3651,4], -[0,-23,-36,-6064,-40,-8894,-3048,-3036,-3136,-4964,-3037,-8336,-551,-679,-756,-1077,-1107,-1415,-1942,-2125,-2127,-2128, --8895,-8896,-2141,-2334,-2375,-2379,-2387,-2410], -[0,-3214,-4224,-4120,-4121,-4123,-4122,-8897], -[1,3,3653], -[0,3654,3655,3656,9], -[0,-8898,-668,-1038,-1381,-1531,-1758,-6467,-1965,-2177,-2246,-8899,-6007], -[0,-664,-756,-932,-1405,-8900,-1654,-1939,-1972,-2210], -[0,-8901,-8902,-8903,-8904,-8421,-5550,-6836,-8905,-8906,-5921,-8907,-8908,-8427,-5801,-8909], -[1,3,3658], -[0,0,0,3659,4], -[0,-5732,-687,-8425,-7304,-5411,-4038,-8038,-8910,-7440,-7144,-3214,-3756,-8911], -[1,3,3661], -[0,3662,3663,3664,11], -[0,-2997,-8912,-8913,-1889,-2318], -[0,-23,-40,-3559,-8914,-8915,-427,-428,-518,-534,-749,-753,-767,-778,-779,-784,-932,-940,-967,-8916,-1041,-8917,-1643, --1771,-1942,-8918,-4245,-2200,-2233,-2275,-2335,-2376,-2410,-2501,-2503,-2505,-8919,-2552], -[0,-1060,-2410,-3214,-2501,-3264,-775,-5511,-8920,-2316,-7287,-8921,-8922,-8923,-8924,-7287,-8925,-7288,-7289,-8926,-7294, --8927,-8928,-7297,-7293,-7292,-7296,-8929,-932,-1942,-8930,-985,-8931], -[1,3,3666], -[0,3667,3668,3669,4], -[0,-510,-2518], -[0,-1788,-1446,-1654,-2198], -[0,-8932], -[1,3,3671], -[0,3672,3673,3674,4], -[0,-8933,-1033], -[0,-23,-534,-7747,-824,-1168,-1174,-1201,-1208,-1243,-1266,-1361,-1415,-1419,-1792,-2006,-8934,-2019,-2463,-2501,-7752], -[0,-1062,-2006,-4038,-8935], -[1,3,3676], -[0,0,3677,3678,4], -[0,-725,-932,-1004,-8936,-1654,-1788], -[0,-1334,-1342,-2435,-8937,-3323,-8938,-3590], -[1,3,3680], -[0,0,0,3681,9], -[0,-3827,-3837,-3838,-3167,-3827,-620], -[1,3,3683], -[0,3684,3685,7,11], -[0,-8050], -[0,-2832,-5834,-8084,-8939,-8096,-516,-932,-1777,-1788,-2322], -[1,3,3687], -[0,3688,3689,3690,11], -[0,-510,-8940,-702,-8941,-714,-1650,-2520,-8942,-8943,-1953,-728,-995,-1792,-8944], -[0,-664,-2471,-1654,-932,-1666,-8945,-2105,-1942,-8946,-940,-967], -[0,-687,-8947,-8948,-3674], -[1,3,3692], -[0,3693,3694,3695,8], -[0,-22,-668,-679,-755,-823,-1077,-1623,-1645,-8949,-2168,-2177,-2321], -[0,-3307,-7040,-3842,-3472,-7041,-7042,-8355,-7080,-3048,-3136,-4049,-8566,-3637,-3037,-8890,-3199,-427,-428,-721,-767, --932,-958,-966,-967,-4650,-1344,-1415,-8950,-1421,-1456,-8951,-1534,-1658,-1942,-2125,-2174,-2269,-2375,-2410,-2501], -[0,-2501,-3862,-2410,-8952,-2376,-2501,-8423,-5922], -[1,3,3697], -[0,3698,3699,3700,5], -[0,-6008,-668,-679,-1548,-1639,-1645,-2114,-2321], -[0,-8953,-7202,-3044,-4036,-8566,-3037,-3200,-3046,-664,-778,-932,-1344,-1405,-1534,-1654,-1658,-1660,-1942,-2125,-2210, --2376,-2388,-2389,-2410,-2476,-2477,-2481,-2485,-2501], -[0,-2501,-3862,-2410,-8038,-7144,-8170,-8423,-5922,-6188,-2376,-520,-8954,-7172], -[1,3,3702], -[0,3703,3704,7,6], -[0,-8955,-8956,-8957,-1285,-1641], -[0,-5834,-516,-633,-8958,-756,-769,-932,-8959,-8960,-1070,-1365,-8961,-1405,-8962,-8963,-6058,-1939,-1978,-2105,-2125, --2177,-2322], -[1,3,3706], -[0,3707,3708,3709,4], -[0,-1801,-8964,-8965], -[0,-1501,-1788,-1415,-932,-2127,-1004,-1942,-2293,-8966,-958,-3234,-940,-967,-350,-8967,-934,-351,-8968], -[0,-6463,-4053,-6582,-1985,-8969,-4055,-8970,-6656], -[1,3,3711], -[0,3712,3713,3714,9], -[0,-5220,-823,-1311,-1548,-1549,-2798,-8971,-2387], -[0,-409,-3044,-3040,-3052,-4972,-8972,-2006,-2019,-8973,-2410,-3612], -[0,-1071,-4053,-4054,-2006,-2019,-3322,-8974,-3926,-8975,-3926,-8976,-8977], -[1,3,3716], -[0,0,3717,3718,6], -[0,-1654,-932,-1405,-589,-585,-966,-958,-968,-943,-963,-974], -[0,-1072,-1334,-8978,-3324], -[1,3,3720], -[0,3721,3722,3723,4], -[0,-668,-3606,-2267], -[0,-527,-528,-534,-545,-560,-932,-949,-1001,-1415,-1626,-2501], -[0,-8979,-8980,-2501,-3862], -[1,3,3725], -[0,3726,3727,3728,4], -[0,-1442], -[0,-627,-8981,-756,-1405,-2250,-2322,-2568], -[0,-2548,-8982,-8983], -[1,3,3730], -[0,3731,3732,3733,8], -[0,-1119,-1462,-8984], -[0,-8985,-5726,-1646,-1654,-1788,-1972,-8986,-2250], -[0,-1076,-6656,-8801,-6351,-7421,-8987,-1650,-8988,-8989,-7371,-4055,-2059,-6234,-8987,-6693,-6694,-2363,-8990,-5554, --8991,-6932,-1961], -[1,3,3735], -[0,124,3736,3737,4], -[0,-3035,-3048,-3621,-3037,-664,-1077,-1405,-1654,-1788,-1942,-1948,-8992,-2379,-2410], -[0,-1076,-8801], -[1,3,3739], -[0,3740,3741,3742,4], -[0,-8993,-1077,-1693,-8994], -[0,-3048,-3623,-1654,-925,-2148,-615,-2517,-1980], -[0,-1961,-1076,-6656,-8801], -[1,3,3744], -[0,0,3745,3746,5], -[0,-1733], -[0,-1080,-8995], -[1,3,3748], -[0,3749,3750,7,11], -[0,-1650,-2125,-1370,-1119], -[0,-2319,-2250], -[1,3,3752], -[0,3753,0,3754,8], -[0,-2543,-2062], -[0,-1082,-3323,-6931], -[1,3,3756], -[0,0,3757,3758,5], -[0,-5834,-515,-516,-932,-1788,-2156,-2322], -[0,-5924,-6557,-8108,-6444,-7163,-8996], -[1,3,3760], -[0,0,3761,3762,4], -[0,-21,-23,-32,-36,-3367,-40,-42,-86,-3307,-8997,-3326,-351,-3561,-8998,-8999,-9000,-9001,-8219,-2716,-2717,-534,-932, --940,-1344,-9002,-1942,-2104,-2127,-2132,-2251,-2334,-2410,-2469,-2816,-9003], -[0,-1087,-7282,-9004], -[1,3,3764], -[0,0,3765,3766,11], -[0,-3748,-3268,-427,-428,-367,-589,-932,-943,-948,-958,-965,-968,-1344,-2391], -[0,-7314,-3578,-1334,-3844,-9005,-3445,-3161], -[1,3,3768], -[0,0,0,3769,8], -[0,-1087,-7282,-7724,-9006,-9007], -[1,3,3771], -[0,3772,3773,3774,6], -[0,-9008], -[0,-510,-1127,-9009,-1132,-1144,-1146,-2125,-2176], -[0,-2490,-1107], -[1,3,3776], -[0,0,3777,7,6], -[0,-2410,-3037], -[1,3,3779], -[0,3780,3781,3782,5], -[0,-668,-2562,-2523,-2557], -[0,-1127,-1131,-9010,-9011,-1542,-2425,-1144,-1151], -[0,-2557,-3970,-3161,-3095,-3577,-3994,-475], -[1,3,3784], -[0,3785,3786,3787,5], -[0,-668,-2218,-2562,-1548,-9012,-2557,-2425], -[0,-1693,-888,-664,-622,-1654,-2210,-932,-1650,-615,-1405,-719,-2211,-769,-1440,-665,-2070,-1657], -[0,-2557,-475,-1168,-9013,-9014,-620,-478,-9015,-2162,-1521,-3184,-525,-9016,-2410,-711,-1409,-9017,-2501,-932], -[1,3,3789], -[0,3790,3791,3792,4], -[0,-1116,-1107,-2562,-727,-1548,-689,-9018,-9019,-2557], -[0,-888,-932,-1412,-1077,-9010,-9011,-958,-9020], -[0,-2557,-3970,-3100,-3994,-9021,-3095,-5574,-9022], -[1,3,3794], -[0,0,3795,3796,5], -[0,-3037,-932,-940,-967,-968,-1942,-2319,-2410], -[0,-9023,-9024,-7329], -[1,3,3798], -[0,0,3799,3800,10], -[0,-5325,-3037,-3899,-9025,-1942,-2200,-9026,-2410,-2469], -[0,-5925,-3262,-9027,-9028,-9029,-5112,-6917,-9030], -[1,3,3802], -[0,0,3803,7,11], -[0,-21,-23,-40,-42,-3470,-3471,-7041,-3136,-3037,-427,-428,-9031,-9032,-528,-533,-534,-8167,-932,-940,-948,-951,-958,-967, --969,-970,-972,-978,-1344,-9033,-1415,-1534,-1942,-2125,-2174,-9034,-2410,-2501,-2503], -[1,3,3805], -[0,0,3806,7,4], -[0,-9035,-9036,-9037,-9038,-1788], -[1,3,3808], -[0,0,115,3809,5], -[0,-7458,-5573,-9039,-1888,-9040,-9041,-9042,-729,-1805,-5149,-9043,-9044,-6555,-9045,-9046], -[1,3,3811], -[0,0,3812,3813,4], -[0,-3037,-826,-2541], -[0,-9047,-3972,-8428,-9048,-640,-5827,-1958,-2059], -[1,3,3815], -[0,3816,3817,3818,9], -[0,-9049,-1399], -[0,-3037,-519,-9050,-9051,-8877,-2384,-2541], -[0,-9052,-5827,-1961,-9048,-2265,-5554,-640,-2059,-6582,-9053,-8800,-9054,-7208,-9048], -[1,3,3820], -[0,3821,0,3822,4], -[0,-9055], -[0,-1101,-9052,-2410,-9056,-9057], -[1,3,3824], -[0,0,3825,3826,5], -[0,-3037,-427,-428,-7636,-932,-9058,-940,-967,-7638,-9059,-1942,-7639,-2402,-2410,-7640], -[0,-9060,-9061,-9062,-9063,-9064,-9065,-1102,-9066,-9067,-8995,-9068,-3966,-9069,-3694,-2410], -[1,3,3828], -[0,3829,3830,3831,8], -[0,-510,-1111,-1077,-719,-7731,-1046,-9070], -[0,-2359,-664,-1654,-2210,-932,-9071,-9072], -[0,-5889,-1103,-1105], -[1,3,3833], -[0,3834,3835,3836,5], -[0,-5504,-9073,-9074,-9075,-1849,-9076], -[0,-528,-664,-9077,-708,-720,-796,-932,-9078,-951,-958,-964,-1654,-1658,-1788,-1972,-2174,-2210,-2211,-9079,-2449], -[0,-5889,-3322,-9080], -[1,3,3838], -[0,0,3839,3840,8], -[0,-5870,-40,-9081,-9082,-9083,-4062,-351,-3561,-3266,-4785,-664,-932,-943,-958,-966,-968,-1471,-1474,-1475,-1476,-1479, --1482,-1483,-1486,-1487,-1489,-7759,-1654,-2127,-3571,-2162,-2210,-2211], -[0,-1105,-5248,-3100,-3095], -[1,3,3842], -[0,3843,3844,7,4], -[0,-1645,-9084,-9085], -[0,-3037,-928,-1623,-1650,-1942,-2125,-2319,-2386,-2402], -[1,3,3846], -[0,3847,125,3848,9], -[0,-1393], -[0,-1107,-8807,-6817,-1847,-9086,-7421,-3956,-9087], -[1,3,3850], -[0,3851,31,7,8], -[0,-9088,-1958], -[1,3,3853], -[0,0,3854,3855,4], -[0,-6593,-519,-674,-959,-1098,-9089,-8345,-1772,-1821,-1978,-2195,-2384,-2400,-2541], -[0,-1110,-1109,-9090,-3591,-3592,-1452,-932,-9091], -[1,3,3857], -[0,3858,3859,3860,8], -[0,-8413,-1026,-1353,-7408,-2218,-8803], -[0,-3037,-519,-589,-9092,-2331,-2384,-2541], -[0,-9093,-5839,-7411,-7727,-6999,-7422,-7724,-5573,-9094,-7410,-1076,-1107,-9095,-9096,-7419,-5572,-5912,-1645,-6809, --9097,-9098,-5574,-5064,-2368,-2444,-3590,-9087,-9099,-1961,-9100,-5889], -[1,3,3862], -[0,3863,3864,3865,11], -[0,-812,-769,-9101,-9102], -[0,-510], -[0,-6524,-9103,-6527,-9104,-1355,-1112,-5845,-7450,-7378], -[1,3,3867], -[0,3868,3869,3870,4], -[0,-1729,-9105,-2387], -[0,-3037,-4201,-427,-428,-932,-9106,-958,-965,-968,-1942,-2402,-2410], -[0,-9107,-9108,-9109,-9110,-9111,-9112,-3184,-4791,-1113,-9113,-9114,-8909,-9115,-4633,-9116,-9117,-9118,-9119,-9120, --9121,-9122,-9123,-3445,-9124,-9125,-9126,-9127], -[1,3,3872], -[0,3873,3874,3875,9], -[0,-3517,-9128], -[0,-50,-3037,-427,-428,-2758,-932,-934,-935,-958,-9129,-8846,-1722,-2892,-2410,-9130,-2469], -[0,-9131,-9132,-3939,-9133,-9134,-9135,-9136,-3690,-1115,-9137,-9138,-9139], -[1,3,3877], -[0,3878,3879,3880,8], -[0,-8846,-9140], -[0,-9141,-3621,-9142,-9143,-3037,-9144,-6630,-4364,-4966,-4372,-3628,-9145,-9146,-652,-708,-767,-999,-8869,-1166,-9147, --1446,-9148,-9149,-9150,-1654,-6455,-1705,-1722,-1783,-1805,-1827,-9151,-1942,-1972,-2125,-2188,-2210,-2359,-2410,-2551], -[0,-3939,-3690,-9152,-3323,-9153], -[1,3,3882], -[0,3883,3884,3885,5], -[0,-9154,-9155,-9156,-9157,-9158,-9159,-7006,-1495,-9160,-9161,-9162,-2400], -[0,-9163,-5918,-357,-3268,-3617,-3037,-9164,-6279,-8852,-4372,-3626,-519,-523,-589,-615,-617,-652,-9165,-9166,-9167,-825, --826,-1002,-1004,-1069,-5989,-1100,-1722,-1729,-1763,-1825,-9168,-1866,-3653,-2062,-2105,-2210,-9169,-2331,-9170,-2364, --2392,-2410,-2541], -[0,-1334,-1342,-5735,-9052,-1116,-2435,-9171,-2105,-5493,-9172,-9173,-4213,-5149,-5150,-6826,-6828,-9174,-9175,-9176, --9177,-523,-2291,-1729,-9128], -[1,3,3887], -[0,0,3888,3889,4], -[0,-1168,-2218,-2127,-784,-1821,-1889,-9178,-9179,-1783,-1978,-2281,-23,-518,-1930,-1330,-3572,-40,-9180,-9181,-3326, --3266,-3561,-7189], -[0,-9182,-3100,-4189,-3110], -[1,3,3891], -[0,0,3892,3893,4], -[0,-1362,-1650,-2125,-2319], -[0,-1076,-3551,-9183,-2122,-9184,-1986,-6324,-8980,-9185,-9186,-9187,-9188,-9189,-9190], -[1,3,3895], -[0,0,0,3896,8], -[0,-1122,-9191], -[1,3,3898], -[0,33,3899,7,5], -[0,-3035,-3621,-3037,-664,-1122,-1654,-2125,-2127,-2139,-2234,-9192,-2410], -[1,3,3901], -[0,3902,0,7,9], -[0,-9193,-2387], -[1,3,3904], -[0,3905,3906,3907,8], -[0,-1442,-8493,-9194,-9195], -[0,-9196,-8491,-711,-9197,-1016,-1075,-1202,-1646,-1654,-2362,-2460,-6234], -[0,-9198,-9199,-710,-6582,-3671,-856,-7347,-9200,-9201,-1075,-9202,-3960,-3262,-1103,-5539,-3214,-3259,-3756,-4182,-1599, --9203,-1838,-3215,-6747,-9204,-5142,-3110,-2362,-2548,-3672], -[1,3,3909], -[0,3910,3911,7,9], -[0,-9205,-9206,-1551,-9073,-1696,-1969], -[0,-617,-9207,-1004,-9208,-1405,-1548,-1646,-1730,-9209], -[1,3,3913], -[0,3914,3915,3916,11], -[0,-1000,-1107,-1758,-1442,-1132,-1645,-808,-1351,-1048,-995,-9210,-9211,-9212], -[0,-9213,-2347,-9214,-1152,-9215,-1149,-1146], -[0,-4107,-510,-687,-1644,-9216,-7641,-1548,-5119,-4004,-1989,-1754,-3844,-9217,-3970,-9218,-1410,-3673], -[1,3,3918], -[0,3919,3920,3921,5], -[0,-1323], -[0,-1127,-1132,-1140,-1134,-1136,-1144,-1146,-1148,-1165,-1138], -[0,-9219,-475,-3110,-3261,-9048], -[1,3,3923], -[0,0,3924,49,4], -[0,-1127,-1159,-1131,-1163,-664], -[1,3,3926], -[0,3927,3928,3929,9], -[0,-510,-633,-9220,-1107,-1548,-2114,-2491], -[0,-1127,-1132,-1134,-1144,-1654,-2210], -[0,-9219,-633,-1127], -[1,3,3931], -[0,3932,3933,49,6], -[0,-2177], -[0,-1127,-1129,-1134,-1144,-1146,-1150,-1159,-1542], -[1,3,3935], -[0,3936,207,7,4], -[0,-1758,-9221,-6007,-1381,-9212], -[1,3,3938], -[0,3939,3940,3941,5], -[0,-510,-506,-9222,-1366], -[0,-2541,-1127,-1753,-1132,-769,-1849,-9223,-2297,-1163,-1134,-1149], -[0,-9219,-5920,-5921,-9224,-7175,-6188,-9225,-6187,-5922,-9226], -[1,3,3943], -[0,208,3944,3945,10], -[0,-1127,-9071,-1144,-1143,-1146], -[0,-9219,-6688,-7416,-6694,-6693,-824,-6695,-7417,-2125], -[1,3,3947], -[0,3948,3949,3950,8], -[0,-510,-9227,-805,-9050,-2359,-2518], -[0,-1127,-1132,-1134,-1143,-1144,-1146,-1162], -[0,-9219,-9228,-3754,-2162,-775,-7644,-3277,-5553], -[1,3,3952], -[0,3953,126,49,4], -[0,-668,-2231], -[1,3,3955], -[0,3956,3957,3958,4], -[0,-1805,-510,-1676,-729,-5763,-2186,-2187,-7006,-9229], -[0,-1127,-1144,-1143,-1146], -[0,-9219,-3844,-729,-1334], -[1,3,3960], -[0,3961,3962,49,4], -[0,-668,-9230], -[0,-1127,-1132,-1134,-1143,-1144,-1146], -[1,3,3964], -[0,3965,127,3966,5], -[0,-668,-9231,-1548,-2271], -[0,-9219,-775,-7148,-9231], -[1,3,3968], -[0,3969,127,3970,8], -[0,-668,-683,-9232], -[0,-9219,-9233,-775,-5553,-3770,-3271,-1644,-6454], -[1,3,3972], -[0,3973,126,3974,4], -[0,-668,-1948,-1323], -[0,-9219,-3264,-9234,-1644,-6454,-7175], -[1,3,3976], -[0,3977,3978,3979,8], -[0,-668,-1356,-1826,-1877,-1948,-7691,-7692,-7690,-7687], -[0,-519,-825,-1127,-2541], -[0,-9219,-6454,-8642,-6527,-5094,-9235,-8640,-1644,-7715,-3839], -[1,3,3981], -[0,3982,207,7,5], -[0,-7446], -[1,3,3984], -[0,3985,3986,49,8], -[0,-668,-9236,-1452], -[0,-1127,-1143,-1146], -[1,3,3988], -[0,3989,3990,49,6], -[0,-1521,-510,-668,-1548], -[0,-1127,-1134,-1144,-9237,-1143,-1146], -[1,3,3992], -[0,3993,3994,3995,6], -[0,-9238], -[0,-1127,-1134,-1143,-1144,-2319], -[0,-9219,-1754,-4004,-4043], -[1,3,3997], -[0,3998,127,3999,8], -[0,-510,-668,-769,-805,-2518], -[0,-9219,-3754,-2162,-775,-7644,-3277,-5553], -[1,3,4001], -[0,4002,126,49,4], -[0,-668,-9232,-9239,-2416], -[1,3,4004], -[0,4005,4006,4007,6], -[0,-1088,-510,-1548,-2353], -[0,-1127,-1132,-1153,-2425,-1144,-1143,-1146], -[0,-9219,-2490,-1540], -[1,3,4009], -[0,4010,4011,4012,4], -[0,-668,-725,-739,-1877,-1980], -[0,-1127,-1131,-1132,-1134,-1138,-1144,-1146,-1151,-9240,-9241,-1153,-1159,-1542], -[0,-1127,-9219,-739,-6908,-5887,-1573], -[1,3,4014], -[0,4015,4016,4017,10], -[0,-668,-6019,-1877], -[0,-1127,-1131,-1132,-1134,-1144,-1146,-9240,-9242,-9241,-1153,-1159,-1542], -[0,-1127,-9219,-6019,-1105,-9243,-9244,-9245,-739,-6908,-5887,-1573], -[1,3,4019], -[0,4020,4021,4022,5], -[0,-668,-932], -[0,-190,-1127,-1132,-1162], -[0,-9219,-932,-7148,-5874,-9246], -[1,3,4024], -[0,4025,4026,4027,4], -[0,-9236,-1445,-1548,-9247], -[0,-1127,-1144,-1146,-1542,-2351], -[0,-9219,-1445,-8172,-7144], -[1,3,4029], -[0,4030,4031,4032,8], -[0,-769,-1446], -[0,-1127,-1134,-1146,-1152,-2778,-1542], -[0,-9219,-1127,-856,-4100,-1446,-7674], -[1,3,4034], -[0,34,4035,4036,11], -[0,-86,-9248,-3307,-3470,-3471,-7041,-932,-943,-958,-966,-968,-974,-1003,-1127,-1131,-1149,-1150,-1151,-1152,-1159,-1344, --1471,-1475,-1479,-1482,-1542,-1654,-2174], -[0,-9219,-1471,-1127,-4004,-5119,-4043,-9249], -[1,3,4038], -[0,4039,4040,209,10], -[0,-9236,-1650], -[0,-664,-710,-1127,-1132,-9250,-1134,-1138,-1144,-9240,-9251,-9241,-9252,-1654,-2125], -[1,3,4042], -[0,208,4043,4044,10], -[0,-664,-1127,-9253,-1132,-1134,-1144,-1149,-1658,-2359,-2529], -[0,-6999,-1127,-9219,-9254], -[1,3,4046], -[0,4047,4048,4049,11], -[0,-2177,-9255,-2518], -[0,-664,-1132,-1144,-1149,-1156,-9256,-9257,-1542,-1654,-1972,-2351], -[0,-9219,-4127,-9258,-6721,-9259,-9260,-9261,-9262,-6324,-2489,-5886], -[1,3,4051], -[0,0,4052,7,10], -[0,-1127,-1131], -[1,3,4054], -[0,0,4055,4056,5], -[0,-1127,-1132,-1134,-1146,-2162,-2541], -[0,-9219,-775,-2162,-3754,-5553,-7644,-9263,-9264], -[1,3,4058], -[0,4059,4060,4061,4], -[0,-714,-1548,-1980,-9265,-9266,-5471], -[0,-1127,-1137,-1144,-1149,-1153,-9267,-1541,-1631,-8403], -[0,-9219,-1127,-5471,-4004,-1412,-1654,-1989,-9268], -[1,3,4063], -[0,4064,210,4065,11], -[0,-668,-1773,-2269], -[0,-9219,-5550,-3957,-7095,-8421,-7091,-6599,-1958,-687], -[1,3,4067], -[0,27,4068,209,9], -[0,-1127,-1144,-1654], -[1,3,4070], -[0,4071,4072,4073,11], -[0,-510,-9269,-9270,-2424,-9271], -[0,-932,-9272,-9273,-9274,-9275,-9276,-9277,-1127,-1132,-1157,-1654,-2125,-2194], -[0,-1127,-9219,-9278,-6527,-9279,-775,-9270,-7085], -[1,3,4075], -[0,4076,4077,4078,4], -[0,-668,-812,-1548,-1849], -[0,-1127,-1650,-2125,-1132,-1153,-9280,-1144], -[0,-9219,-9281,-3976,-3264,-775,-7175], -[1,3,4080], -[0,4081,4082,4083,5], -[0,-190,-427,-428,-668,-932,-940,-965,-967,-999,-1376,-1460,-1630,-1705,-1942,-2411,-2530], -[0,-9282,-7080,-3330,-3048,-3049,-9283,-3621,-9143,-3037,-4372,-3628,-9284,-652,-769,-1077,-9285,-9147,-1654,-2210,-2359, --2410], -[0,-2410,-8170,-4144,-3939], -[1,3,4085], -[0,0,4086,4087,5], -[0,-9286,-4010,-367,-7043,-9287,-3136,-3037,-8477,-4203,-932,-1415,-1730,-1942,-2125,-2293,-2410], -[0,-1167,-3578,-3161,-3967,-1334,-3690,-3445], -[1,3,4089], -[0,4090,4091,4092,6], -[0,-9288,-9179,-9289,-2462], -[0,-932,-937,-966,-1001,-1650,-1654,-1788,-2125], -[0,-7641,-5827,-4219,-9218,-3673,-6342,-9290,-9291,-5921,-9292], -[1,3,4094], -[0,4095,72,4096,4], -[0,-1187,-9293,-1208,-1451,-1570,-1597,-8390,-2347], -[0,-7841,-1168,-475,-5175,-3501,-9294,-9295], -[1,3,4098], -[0,4099,4100,4101,4], -[0,-7850,-305,-994,-1199,-1243,-9296,-1267,-1650,-1875,-1959,-7881,-2125,-2177,-2330,-2460,-2462], -[0,-1178,-1654], -[0,-7841,-9297,-5550,-9298,-891,-1105], -[1,3,4103], -[0,4104,4105,4106,4], -[0,-518,-1236,-1889,-2464], -[0,-519,-1252,-1825,-2460,-2541], -[0,-7841,-518,-1889,-775,-5899,-9299,-3271,-9263,-9300], -[1,3,4108], -[0,4109,4110,4111,4], -[0,-3698,-479,-671,-1022,-9301,-1641,-1876,-2460], -[0,-664,-9302,-932,-1168,-1243,-1654,-1942], -[0,-7841,-5817,-5940,-8403], -[1,3,4113], -[0,4114,0,4115,4], -[0,-9303,-9304,-994,-1640,-1959,-1986,-9305,-2460,-2462,-2550], -[0,-7841,-5800,-8624,-6005], -[1,3,4117], -[0,4118,4119,4120,6], -[0,-2347,-2103,-1876,-2464], -[0,-2541,-1654,-2460,-1939,-23,-1252,-3352,-3362,-3373], -[0,-7841,-525,-3186,-4795,-8165,-6434,-9306,-9307,-4132,-9308,-9309,-3214,-3116], -[1,3,4122], -[0,4123,211,4124,5], -[0,-1236], -[0,-7841,-9310,-6472,-7154,-9311,-2443,-9312,-9313,-9314], -[1,3,4126], -[0,4127,4128,4129,4], -[0,-479,-622,-1022,-1376,-1876,-2347,-2460,-2487], -[0,-664,-994,-9315,-1220,-1231,-1452,-1654,-2125,-2210,-2211,-2261], -[0,-7841,-622], -[1,3,4131], -[0,4132,4133,4134,5], -[0,-633,-1266,-634,-2062,-2347], -[0,-1654,-664,-6398], -[0,-7841,-7419,-633], -[1,3,4136], -[0,212,4137,4138,4], -[0,-1654,-2460], -[0,-1168,-7841], -[1,3,4140], -[0,4141,72,4142,10], -[0,-9316,-1876,-9317,-2177,-2347], -[0,-1168,-6453,-2177,-7841,-9318,-9319,-9320,-9321], -[1,3,4144], -[0,4145,0,4146,8], -[0,-44,-9322,-753,-9323,-1876,-2347,-2460], -[0,-7841,-1168,-3324], -[1,3,4148], -[0,4149,4150,36,4], -[0,-2347,-1554], -[0,-1654,-2460,-2198], -[1,3,4152], -[0,4153,4154,4155,9], -[0,-9324,-1236,-2363], -[0,-519,-668,-824,-1040,-1100,-1168,-2460,-2541], -[0,-7841,-6656,-6999,-9325,-9254,-9326,-9327,-9328,-4123,-9329,-9330,-3324,-9331,-9332], -[1,3,4157], -[0,4158,114,4159,6], -[0,-1022,-1876,-2125,-2347,-2460], -[0,-7841,-6688,-6694,-6693], -[1,3,4161], -[0,4162,4163,4164,6], -[0,-683,-1876,-2347,-2464], -[0,-664,-9077,-756,-1004,-1022,-1168,-1187,-1243,-1248,-1252,-1654,-1788,-2460], -[0,-775,-6688,-1644,-9216,-683,-9333,-1229,-1184,-7841,-7419], -[1,3,4166], -[0,4167,213,36,10], -[0,-711,-1876,-2103,-2347,-2464], -[1,3,4169], -[0,4170,4171,4172,8], -[0,-1266,-2347,-2518], -[0,-756,-824,-1168,-1220,-1223,-1224,-1228,-1231,-1351,-9334,-1597,-1654,-2198], -[0,-1168,-7841,-9228,-3754,-2162,-775,-7644,-3277,-5553], -[1,3,4174], -[0,4175,4176,36,4], -[0,-2460,-2347,-6193], -[0,-1168,-1654,-2198,-1405,-7035,-2261,-1252,-1657], -[1,3,4178], -[0,4179,128,4180,4], -[0,-1554,-9335,-1876,-9336,-9337,-9338,-2347,-2460], -[0,-7841,-9048,-775,-6024,-1631,-9339], -[1,3,4182], -[0,4183,128,4184,9], -[0,-2347,-1266,-1376,-834], -[0,-7841,-3976,-9340,-9341,-3959,-3955,-9342], -[1,3,4186], -[0,4187,4188,4189,4], -[0,-2178,-729,-2353,-1022,-1597,-479,-2186,-2187,-9229], -[0,-1168,-1654,-2293,-1254,-710], -[0,-7419,-729,-1540,-9343,-3844], -[1,3,4191], -[0,214,4192,4193,4], -[0,-1168,-1415,-1942,-9078], -[0,-7841,-6351,-1168], -[1,3,4195], -[0,4196,4197,4198,4], -[0,-479,-9344,-1022,-1876,-2347], -[0,-1452,-1654,-2460], -[0,-7841,-775,-9344,-7148,-8170,-3277], -[1,3,4200], -[0,4201,4202,4203,4], -[0,-2460,-9231,-9345,-2347,-1022,-1876], -[0,-1788,-1654,-2210,-932,-2125,-2198,-756,-9346,-9347,-968,-943,-974,-942], -[0,-9231,-7841], -[1,3,4205], -[0,4206,4207,4208,4], -[0,-784,-6829,-1876,-1792,-2464], -[0,-2322,-2460,-2320,-1252], -[0,-784,-1644,-6059,-7192,-7193,-775,-7841,-1889], -[1,3,4210], -[0,4211,4212,4213,4], -[0,-2746,-1876,-2464], -[0,-2322,-2460,-2320], -[0,-7841,-1644,-775], -[1,3,4215], -[0,4216,4217,4218,5], -[0,-1876,-2347,-8899], -[0,-1452,-1980,-2198,-2460], -[0,-7841,-6582,-4055,-1168], -[1,3,4220], -[0,4221,4222,4223,9], -[0,-932,-1022,-1876], -[0,-1168,-1654,-2460,-2198,-1405,-528,-9348,-9349], -[0,-7841,-932,-1168,-8980,-9350,-7440,-6916,-707,-4144,-3756,-3214,-4107,-7148,-3862], -[1,3,4225], -[0,4226,4227,4228,8], -[0,-1460,-2460,-1015,-9351,-2347,-1876,-725,-9352], -[0,-1168,-1654,-2198,-1405,-1599], -[0,-7841,-6656,-9353,-8276,-1168,-3862], -[1,3,4230], -[0,4231,4232,4233,6], -[0,-2218,-1686,-1876,-9354,-9355], -[0,-2541,-519,-1168,-2460,-1825], -[0,-7841,-7724,-1353,-6656,-6999,-5572,-1645,-1107,-9095,-2460], -[1,3,4235], -[0,215,72,4236,5], -[0,-7841,-8395,-2239,-8423,-9356,-9357,-6917,-1168], -[1,3,4238], -[0,214,4239,4240,4], -[0,-1168,-1654,-2460,-2198,-1939,-933], -[0,-7841,-1168,-5841,-9358,-1847], -[1,3,4242], -[0,4243,27,4244,4], -[0,-9359,-2102,-9360,-2347], -[0,-6146,-3276,-4144,-1168,-7841,-1599,-3437,-3862,-9361,-3240,-2102], -[1,3,4246], -[0,4247,4248,4249,8], -[0,-668,-1266,-9362,-9363,-1792,-6370,-1877,-2347], -[0,-9364,-1849], -[0,-7841,-1082,-9362,-6656,-6999,-6931,-8576,-3844,-3323,-7764,-8901,-8902], -[1,3,4251], -[0,4252,4253,4254,4], -[0,-9365,-2125,-2462,-1266,-9366,-2062], -[0,-1654,-2460,-932,-1405,-9367,-1746,-1119,-1574,-9368,-9369], -[0,-5889,-5737,-5890,-9370,-8901,-8902,-8403,-9204,-3258,-1168,-7841,-1103,-841,-1105], -[1,3,4256], -[0,4257,4258,4259,5], -[0,-9371,-1022,-1548,-1876,-2109,-9372,-2460], -[0,-932,-1654,-1660,-2125,-2198], -[0,-1168,-5889,-9373,-7841,-9321], -[1,3,4261], -[0,4262,4263,4264,9], -[0,-479,-651,-1022,-1876,-9374,-2347], -[0,-1168,-1183,-1199,-1224,-1231,-1243,-7832,-1268,-1453,-1654,-9375,-2198], -[0,-6454,-7841,-6826], -[1,3,4266], -[0,4267,4268,4269,5], -[0,-1276,-1876,-2103,-2347], -[0,-2460,-1168,-1187,-9376,-9377,-9378,-1654,-9379,-2198], -[0,-7841,-1276], -[1,3,4271], -[0,4272,4273,4274,4], -[0,-6193,-1548,-1597,-2347], -[0,-664,-1168], -[0,-5147,-7841,-9380], -[1,3,4276], -[0,4277,4278,4279,10], -[0,-702,-2218,-615,-2461,-1792,-2062], -[0,-1654,-2460,-1405,-1266,-9348,-725,-9381,-2463], -[0,-7841,-3264,-8276], -[1,3,4281], -[0,4282,4283,4284,8], -[0,-2347,-1876,-1323], -[0,-1168,-1654,-2460,-1202], -[0,-3276,-1168,-7841,-9382,-3264,-9383,-6059,-6684,-1644], -[1,3,4286], -[0,4287,4288,4289,5], -[0,-4091,-9384,-7837,-9385,-9386,-9354,-9387,-9388,-9389], -[0,-1168,-1415,-932,-2125,-9390,-4010,-1942,-367,-7043,-190,-720,-9391,-2410,-9392,-4007,-9393,-2411,-959,-940,-967,-796, --740], -[0,-7841,-1168,-3167,-3827], -[1,3,4291], -[0,4292,4293,4294,9], -[0,-2347,-9394,-9395], -[0,-1654,-1452,-1650,-2125,-2198,-2462,-1119,-908,-9396], -[0,-7841,-8978,-9397,-9398], -[1,3,4296], -[0,4297,4298,4299,11], -[0,-2347,-9394], -[0,-1452,-1654,-2198], -[0,-7841,-7724,-1645,-9353,-9399,-1199], -[1,3,4301], -[0,4302,4303,36,4], -[0,-510,-1548,-9400,-2347], -[0,-1112,-1168,-1183,-1231,-1224,-2150,-1453], -[1,3,4305], -[0,4306,4307,4308,4], -[0,-668,-1236,-1356,-1877,-1948], -[0,-519,-1357,-9401,-2460,-2541], -[0,-7841,-1356,-6527,-5094,-8634,-8635,-1644,-6684,-6454,-7715,-8640,-9235,-8642,-3839], -[1,3,4310], -[0,4311,4312,36,8], -[0,-479,-994,-1107,-1876,-2231,-2270,-2460,-2464], -[0,-1168,-1252,-1654,-2198,-2261], -[1,3,4314], -[0,4315,4316,4317,4], -[0,-506,-2347,-1022,-479,-9402,-1876,-9374,-930], -[0,-2541,-1344,-1654,-2460,-2198,-9403,-994,-86,-2174,-9404], -[0,-7841,-9405,-9406,-9407,-9408,-9409], -[1,3,4319], -[0,4320,4321,4322,4], -[0,-9410,-1876,-2347], -[0,-528,-756,-994,-1168,-1197,-1231,-1654,-1788,-2460], -[0,-7841,-9339,-775,-3264,-7920], -[1,3,4324], -[0,4325,4326,4327,9], -[0,-805,-1266,-9411,-1827,-2347,-2518], -[0,-664,-1654,-2251,-2541], -[0,-7841,-622,-1764,-1380], -[1,3,4329], -[0,4330,4331,4332,9], -[0,-1405,-9412,-1548,-1876,-2347,-2464], -[0,-1168,-1231,-1252,-9413,-1452,-1654,-2125,-2460], -[0,-7841,-4005,-1405,-9414], -[1,3,4334], -[0,4335,4336,4337,10], -[0,-1266,-1409,-2347], -[0,-1168,-2319,-1224], -[0,-1409,-7841,-5827,-7644], -[1,3,4339], -[0,4340,4341,4342,10], -[0,-506,-1412,-9415,-1876,-2347], -[0,-1168,-2460], -[0,-3440,-3161,-7841,-1412,-1989,-4043,-4679,-2319,-4873,-4004,-3634,-5119], -[1,3,4344], -[0,4345,4346,4347,4], -[0,-1445,-1876,-2347,-2350], -[0,-2261,-7423,-2460], -[0,-7841,-1445,-3214,-3217,-3756,-707,-5553,-5874,-7148,-3272,-7440,-7144], -[1,3,4349], -[0,4350,4351,36,8], -[0,-1548,-1645,-1876,-9345,-2347], -[0,-1168,-1452,-1654,-2198,-2460], -[1,3,4353], -[0,4354,4355,4356,5], -[0,-823,-831,-1440,-1876,-2347], -[0,-932,-937,-1168,-1654,-2198,-2460], -[0,-7841,-1168,-4055], -[1,3,4358], -[0,4359,4360,4361,5], -[0,-1521,-1792,-1876,-2103,-2347,-2464], -[0,-1452,-1654,-2198,-2460], -[0,-7841,-1168,-1521], -[1,3,4363], -[0,4364,4365,4366,8], -[0,-668,-812,-2460,-2353,-1022,-1550,-2062], -[0,-1654,-2210], -[0,-7841,-1540], -[1,3,4368], -[0,4369,4370,4371,5], -[0,-9416,-2114,-1022,-1639,-1048,-9417,-9418], -[0,-1654,-2210,-932,-1972,-9419,-965,-966,-958,-968,-943,-974], -[0,-7419,-1168,-4792,-6994,-9420], -[1,3,4373], -[0,4374,4375,7,10], -[0,-683,-1266,-1792,-2062,-9421,-2464], -[0,-664,-1654,-2460,-932,-1405,-1254,-9348,-1252,-9422,-9381,-9369], -[1,3,4377], -[0,4378,4379,4380,4], -[0,-7173,-2347,-1266], -[0,-664,-1168,-1654], -[0,-7841,-1644,-7175,-7192,-6454,-3264,-7173], -[1,3,4382], -[0,4383,211,4384,5], -[0,-805,-999,-1236,-1654,-2297], -[0,-7841,-1654,-4004,-3634,-5119,-3161,-4043,-4873,-3440,-1989,-4679,-2319], -[1,3,4386], -[0,4387,4388,4389,10], -[0,-9423,-1107,-1876], -[0,-664,-1168,-1654,-2460,-932,-1658,-9072], -[0,-1168,-7841,-9254,-9329], -[1,3,4391], -[0,4392,72,4393,5], -[0,-9424,-1631,-9425,-1876,-2347,-2464], -[0,-7841,-475,-5175,-4668,-9425], -[1,3,4395], -[0,4396,4397,4398,11], -[0,-714,-1168,-1753], -[0,-710,-1224,-1231,-8419,-1452,-2198], -[0,-1168,-1753,-9426,-3844,-9427,-8442,-2490,-7419,-7841], -[1,3,4400], -[0,4401,4402,4403,10], -[0,-1548,-2347,-1022,-479,-1750,-1876,-1737], -[0,-1168,-1654,-2460,-2198,-1237], -[0,-7841,-9258,-1168,-4127,-6863,-9428,-9429,-9262,-9430,-6721], -[1,3,4405], -[0,4406,4407,4408,4], -[0,-7837,-668,-9431], -[0,-519,-1825,-2410,-2460,-2541], -[0,-1168,-3862,-8112,-8113], -[1,3,4410], -[0,4411,4412,36,9], -[0,-668,-2347,-1022,-1876], -[0,-2541,-1168,-1654,-2198,-2346,-1405,-756,-994,-1657], -[1,3,4414], -[0,4415,4416,4417,9], -[0,-1022,-1876,-1907,-2464], -[0,-1788,-1654,-2210,-2460,-932,-1889,-1972,-1252], -[0,-7841,-1889,-9300,-775], -[1,3,4419], -[0,4420,4421,4422,4], -[0,-9263], -[0,-1654,-2987,-8065,-2460], -[0,-9432,-711,-8978,-812,-9433,-5558,-9399,-9321,-7841,-3264,-9434,-9435,-9353,-3214,-3277], -[1,3,4424], -[0,4425,4426,4427,5], -[0,-994,-1376,-1570], -[0,-507,-932,-9436,-1376,-1654,-1972,-2463], -[0,-7841,-1965], -[1,3,4429], -[0,4430,4431,4432,10], -[0,-1266,-1792,-2054,-2347,-2464], -[0,-1252], -[0,-7841,-2006,-4146,-6408,-8530,-3110,-3261,-6107,-9437,-9438,-7644], -[1,3,4434], -[0,4435,4436,4437,11], -[0,-994,-1750,-2105,-2347,-2460], -[0,-1168,-1262,-1183], -[0,-7841,-8908,-9439], -[1,3,4439], -[0,0,4440,36,10], -[0,-1168,-1252,-1597,-1654,-1942,-2198,-2460], -[1,3,4442], -[0,4443,4444,4445,9], -[0,-3037,-7837,-2551,-9440,-7622], -[0,-1654,-2460,-2198,-2379,-8255,-2410,-725], -[0,-7841,-8276], -[1,3,4447], -[0,4448,4449,4450,8], -[0,-1236,-9441,-9442,-9443,-9444,-2460,-9445], -[0,-519,-1825,-2541], -[0,-7841,-9446,-9447,-9448,-6131,-7175,-9318,-9319,-3324,-9449,-5142,-6342,-9450], -[1,3,4452], -[0,215,4453,4454,4], -[0,-994,-1199,-1245,-1654,-2460], -[0,-7841,-9446,-9448,-9318,-8276,-6342], -[1,3,4456], -[0,4457,4458,4459,5], -[0,-668,-742,-769,-805,-9451,-930,-1022,-1107,-4089,-9452,-1849,-1876,-2103,-2125,-2460], -[0,-1168,-1252,-9445], -[0,-7841,-3754,-2162,-775,-7644,-3277,-5553,-9453,-2231,-9454,-6915,-9455], -[1,3,4461], -[0,4462,4463,4464,6], -[0,-1863,-2269,-2103,-1876,-1552,-2464], -[0,-1168,-2162,-1654,-2460,-932,-2125,-9008,-1889,-7832,-1743,-518,-1238,-3572,-1252,-958,-934], -[0,-7841,-2162,-1168], -[1,3,4466], -[0,4467,0,4468,5], -[0,-510,-1266,-1792,-6370,-2246,-2347], -[0,-7841,-9456,-6656,-6999,-6931,-8576,-3844,-3323,-7764,-8901,-8902], -[1,3,4470], -[0,4471,4472,4473,5], -[0,-668,-1022,-1570,-1876,-2347,-2387], -[0,-9457,-9392,-3136,-9458,-3037,-7836,-427,-428,-756,-932,-940,-959,-1168,-1415,-1942,-2375,-2379,-2410,-2460], -[0,-7841,-1168,-5550,-3957], -[1,3,4475], -[0,4476,216,4477,10], -[0,-9459,-668,-1022,-1236,-1273,-1948], -[0,-7841,-1044,-6656,-8799,-1573,-9460,-4676,-812,-6826,-6828], -[1,3,4479], -[0,4480,4481,4482,4], -[0,-9461,-9462,-461,-742,-775,-9463,-8888,-1119,-2231,-9195,-2347], -[0,-620,-932,-937,-1001,-1168,-1187,-1212,-1226,-1228,-9464,-1405,-9381,-9465,-1654,-1792,-2125,-2460], -[0,-7841,-1168,-9466,-9455], -[1,3,4484], -[0,4485,216,4486,4], -[0,-23,-1236,-9467], -[0,-7841,-6817,-6694,-6693,-6688,-812,-7336,-4000,-1573,-5545,-3756,-3214,-3217,-3272,-987], -[1,3,4488], -[0,4489,213,4490,4], -[0,-9468,-1550,-1876,-2103,-2286,-2347,-2464], -[0,-1168,-2286,-775,-3277,-7841,-9321], -[1,3,4492], -[0,4493,4494,4495,4], -[0,-1876,-2302], -[0,-1107,-1168,-9469,-1654,-9470,-2460,-2541], -[0,-7841,-3167,-3843,-3839,-7715,-9278,-9279,-9471,-3262,-775,-2162,-1521,-2286,-3271,-9339,-3264,-9472,-9473,-9474,-1689], -[1,3,4497], -[0,4498,4499,4500,5], -[0,-1552,-1876,-2303], -[0,-21,-23,-40,-43,-519,-756,-767,-825,-1788,-1942,-2460,-2541], -[0,-7841,-1644,-3839,-2303], -[1,3,4502], -[0,4503,4504,4505,4], -[0,-674,-1022,-1876,-2460], -[0,-1045,-1168,-1217,-1654,-1978,-2187,-2210], -[0,-7841,-3839,-3167,-9278], -[1,3,4507], -[0,4508,4509,4510,9], -[0,-1236,-1548], -[0,-519,-1196,-2460,-2541], -[0,-7841,-1548,-2424,-3110,-7644,-3264,-7650,-9475,-9438], -[1,3,4512], -[0,4513,4514,4515,4], -[0,-479,-1022,-2346,-2460], -[0,-9392,-3037,-9476,-7837,-8890,-9457,-2125,-1168,-1231,-2410], -[0,-7841,-2410,-3214,-9477], -[1,3,4517], -[0,4518,4519,4520,9], -[0,-9457,-479,-1022,-1597,-1876,-2346], -[0,-9478,-3037,-9476,-1168,-1187,-1261,-2388,-2410], -[0,-1168,-2410,-3862,-3018,-7841,-7419,-2388,-8170,-7148], -[1,3,4522], -[0,4523,4524,4525,4], -[0,-2460,-2347,-2462,-2231,-479,-1876], -[0,-1168,-2125,-9479,-2410,-3037,-1187,-1208,-7837,-1237,-1632,-7836,-7838,-1252,-9480], -[0,-2410,-7841,-9481,-3018,-5058,-7644,-3116,-3185], -[1,3,4527], -[0,4528,4529,36,9], -[0,-9416,-1403,-2347,-2416,-9482,-9417,-2155,-1016,-9483,-2464], -[0,-2322,-2460,-932,-1942,-9484,-2341,-1938,-9485,-945,-978,-940,-967,-9486], -[1,3,4531], -[0,4532,122,4533,5], -[0,-1266,-1792,-9487], -[0,-7441,-775,-7841], -[1,3,4535], -[0,4536,4537,4538,5], -[0,-1107,-1187,-1876,-2347,-2460], -[0,-994,-2462,-1168,-1224,-1231,-1262,-1210,-1184,-1245,-1226,-1452], -[0,-7841,-9281,-1264], -[1,3,4540], -[0,4541,4542,4543,4], -[0,-1107,-1015,-9488,-1212,-2347,-2462,-1187,-994,-1876], -[0,-1788,-1168,-1654,-2460,-756,-9489,-1231,-1197,-1243,-528,-9490], -[0,-7841,-3264,-9408,-775,-7175,-9048], -[1,3,4545], -[0,4546,4547,7,6], -[0,-9491,-9492,-9493,-668,-808,-1022,-9416,-9417,-9494,-9495,-9496,-1570,-1646,-4091,-1792,-2103,-2347,-2460], -[0,-641,-756,-994,-1405,-9381,-1452,-9497,-1654,-2125,-2198], -[1,3,4549], -[0,4550,4551,4552,8], -[0,-1986,-2346,-2347,-2460,-2462,-2555,-9498], -[0,-1654,-2250,-2330], -[0,-1168,-7841,-9498,-9499,-5408,-8027,-2460,-9500], -[1,3,4554], -[0,4555,4556,4557,4], -[0,-479,-9501,-679,-1022,-1108,-1792,-1850,-1876,-2062,-2218,-2460,-9445], -[0,-756,-1405,-1654,-1657,-1972,-2125,-2198,-2210,-2261,-2269,-2541], -[0,-1168,-2490,-7841], -[1,3,4559], -[0,4560,0,4561,4], -[0,-1626,-2460,-2346,-2501,-1266], -[0,-7841,-2501], -[1,3,4563], -[0,4564,4565,4566,8], -[0,-729,-9229,-1266,-1402,-1750,-1805,-9502,-2186,-2187,-2347,-2353,-2490], -[0,-1654,-2293], -[0,-7841,-9343,-729,-1540], -[1,3,4568], -[0,4569,4570,4571,5], -[0,-1100,-1236,-2460,-9498], -[0,-519,-7342,-9431,-1168,-1825,-9503,-9445,-2541], -[0,-7841,-5408,-5409,-501,-6454,-724,-6656], -[1,3,4573], -[0,4574,4575,4576,5], -[0,-9271,-510,-2460,-2347,-1645,-2424,-9270,-9269], -[0,-1168,-1654,-932,-2125,-9273,-9504,-1195,-1632,-2461,-1215,-9505,-9274,-9275,-9272], -[0,-7841,-9270,-9278,-9279], -[1,3,4578], -[0,4579,4580,4581,11], -[0,-883], -[0,-519,-1825,-2384,-2541], -[0,-3994,-3673,-9506,-6826,-9507,-8799,-2265,-640], -[1,3,4583], -[0,4584,4585,4586,4], -[0,-9508,-9509,-9510,-9511,-2093,-9512,-9513,-2095,-4655,-4994,-9514,-9515,-9516,-9517,-9518,-9519,-9520,-9521,-9522, --9523,-9524,-9525,-9526,-9527,-9528,-9529,-9530,-5707,-9531,-9532,-9533,-9534,-9535,-9536,-9537,-6368,-2297,-9538,-9539], -[0,-350,-4062,-351,-3266,-827,-9540,-2127,-2250,-2322,-2331], -[0,-1599,-856,-3671,-4328,-5887,-7440,-9541,-8170,-7148,-8169,-1274,-2093,-2427], -[1,3,4588], -[0,0,4589,4590,10], -[0,-9542,-9543,-1127,-7887,-1136,-1137,-1144,-9544,-1148,-1149,-1153,-9545,-9546], -[0,-2363,-9547], -[1,3,4592], -[0,4593,4594,4595,8], -[0,-1646,-9548,-2231,-2525,-2416], -[0,-3983,-521,-534,-567,-589,-664,-9549,-726,-838,-879,-6897,-6867,-932,-940,-952,-953,-1077,-1127,-5974,-1132,-1134, --1136,-1137,-1138,-9550,-1148,-1149,-1162,-7848,-1344,-6785,-1534,-1654,-1661,-1689,-1788,-1942,-2177,-2210,-2410,-2424, --2501,-2505], -[0,-1276,-1689,-3110,-3264], -[1,3,4597], -[0,4598,4599,155,5], -[0,-1435,-9551,-619,-6508,-1309,-9552,-9553,-9554,-9555,-5400,-9556,-9557,-9558,-9559,-9560,-9561,-9562,-9563], -[0,-1510,-707,-1367,-9564,-9565,-1276], -[1,3,4601], -[0,4602,4603,4604,6], -[0,-6594,-3037,-4204,-3223,-6587,-2531], -[0,-3665,-7197,-2410,-2469,-4375], -[0,-1449,-5092,-4865,-3586,-9566,-3578,-3098,-3264,-5388,-5387], -[1,3,4606], -[0,0,14,4607,4], -[0,-8047,-7440,-6659,-6543,-5573,-9567,-687,-3958,-4378,-1958,-502,-4377,-6748,-7303,-9568,-1646,-1813], -[1,3,4609], -[0,0,4610,4611,4], -[0,-2832,-5834,-8084,-9569,-8096,-516,-753,-5835,-932,-9570,-1365,-1777,-1788,-2156,-2322], -[0,-6981,-8619,-9571,-9572,-3582,-5269,-753,-6948], -[1,3,4613], -[0,0,4614,7,5], -[0,-1452,-1453,-1548,-2322], -[1,3,4616], -[0,4617,4618,4619,10], -[0,-9573], -[0,-2832,-5834,-8084,-9574,-9575,-8096,-515,-516,-932,-993,-1365,-1659,-1777,-1788,-2156,-2322], -[0,-8047,-9576,-9577,-9578,-9579,-8047,-7153,-9580,-3214,-3217], -[1,3,4621], -[0,4622,4623,4624,8], -[0,-5334,-4231,-9581,-9582,-2768,-2771,-1619,-1839,-9583,-2429,-5358,-9584,-9585], -[0,-3037,-9586,-652,-1290,-1294,-1618,-1942,-9587,-2094,-2100,-2399,-2410,-7669,-2541], -[0,-9588,-9589,-3264,-9590,-3590,-2444,-1838,-9591], -[1,3,4626], -[0,4627,4628,4629,4], -[0,-5334,-9581,-9583], -[0,-3037,-9586,-9592,-652,-823,-2586,-1290,-1294,-1318,-9593,-1942,-2094,-2100,-2399,-2410,-7669,-2429,-2541], -[0,-6688,-9588,-9589,-3264,-9594,-7723,-3590,-2444,-9590,-2544], -[1,3,4631], -[0,4632,4633,4634,9], -[0,-5334,-4231,-9595,-2742,-5981,-9596,-9597,-4263,-1292,-2769,-2788,-1968,-2235,-2429,-9585], -[0,-3037,-652,-1294,-1942,-2094,-2100,-2399,-2410,-7669,-2541], -[0,-775,-9588,-9589,-3264,-5572,-3581,-5101,-9598,-3585,-6750,-9590,-3590,-2444], -[1,3,4636], -[0,4637,4638,4639,5], -[0,-426,-8316,-5334,-2742,-9596,-9599,-9600,-2769,-9601,-9602,-9603,-1968,-2235,-2276,-9583,-9585], -[0,-3037,-6426,-652,-9604,-5342,-989,-1294,-1618,-5204,-1619,-5205,-1942,-2094,-2100,-2399,-2410,-2429,-2541], -[0,-5888,-3217,-5210,-9588,-9589,-3264,-3214,-4146,-4147,-2083,-6408,-9590,-3590,-2444], -[1,3,4641], -[0,4642,217,4643,6], -[0,-5334,-4231,-9605,-2742,-2769,-2771,-1619,-1968,-2235,-2268,-9585], -[0,-9588,-9589,-3264,-6233,-6231,-9606,-9590,-3590,-2444], -[1,3,4645], -[0,4646,4647,4648,4], -[0,-426,-5334,-4231,-2742,-9596,-9600,-2769,-9601,-9602,-9603,-1968,-2235,-2276,-9583,-6648], -[0,-3037,-3040,-3052,-652,-928,-5343,-1294,-1942,-2006,-2019,-2094,-2100,-9607,-2399,-2410,-2541], -[0,-9588,-9589,-3264,-1940,-2006,-9608,-2299,-9590,-3590,-2444,-2476], -[1,3,4650], -[0,87,0,4651,4], -[0,-5398,-9589,-9588,-3264,-6233,-2265,-6231,-5554,-9590,-2444,-3590], -[1,3,4653], -[0,4654,217,4655,4], -[0,-5334,-4231,-2766,-9609], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-2265,-5398,-5554,-4308], -[1,3,4657], -[0,4658,4659,4660,4], -[0,-5334,-2742,-2767,-1968,-2235], -[0,-3037,-6426,-652,-9604,-9610,-5342,-1942,-2094,-2100,-9611,-2384,-2399,-2410,-2541], -[0,-5092,-6311,-9588,-9589,-3264,-9612,-2083,-9590,-3590,-2444,-9613,-9614], -[1,3,4662], -[0,4663,4664,7,8], -[0,-2487,-1276], -[0,-1788,-1654,-932,-2125,-2293,-963], -[1,3,4666], -[0,0,4667,4668,5], -[0,-6774,-1127,-1132,-1162,-6114,-1405,-1451,-1548,-6186,-1991,-2081,-9615,-2111,-9616], -[0,-2265,-3223,-8034,-3264,-6422,-6420,-4112], -[1,3,4670], -[0,4671,4672,7,4], -[0,-1696], -[0,-2195,-2319], -[1,3,4674], -[0,0,0,4675,4], -[0,-1004,-7107,-5146,-3445,-9617,-9618,-9619,-9620,-9621,-9622,-9623,-9624,-9625,-9626,-9627,-9628,-9629,-9630], -[1,3,4677], -[0,0,4678,7,9], -[0,-2303,-2125,-1942,-656,-2699,-23,-9631,-3408], -[1,3,4680], -[0,0,4681,7,11], -[0,-43,-40,-6056,-6035,-527,-21,-23,-528,-533,-856,-932,-956,-958,-959,-1415,-1417], -[1,3,4683], -[0,4684,4685,4686,5], -[0,-9632,-615,-9633,-9634,-9635,-9636,-9637,-9638,-9639,-9640,-1442,-9641,-1639,-9642,-1666,-1667,-1783,-1863,-6467,-2269, --2350,-9643,-9644], -[0,-9645,-5767,-3035,-4035,-3660,-4036,-3621,-3037,-9144,-4372,-9646,-652,-664,-674,-3542,-932,-9647,-9648,-1344,-1534, --1654,-2210,-2379,-2410], -[0,-3258,-3260,-7643,-3161,-1302], -[1,3,4688], -[0,4689,4690,7,8], -[0,-9649], -[0,-615,-633,-634,-725,-932,-1127,-1130,-1131,-1146,-1148,-1149,-1152,-9650,-1159,-1276,-1754,-2148,-9651,-2199,-2210, --7035,-9652,-2416], -[1,3,4692], -[0,0,4693,4694,4], -[0,-775,-824,-1107,-8318,-1449,-1654,-932,-1548,-2127,-2198,-2334,-683,-693,-719,-1276,-2410,-1339,-9653,-3621,-7694, --9654,-5758,-9655,-9656,-966,-4062,-9657,-958,-968,-943,-350,-428,-351,-427], -[0,-4131,-4132], -[1,3,4696], -[0,218,0,7,4], -[1,3,4698], -[0,39,0,4699,5], -[0,-1306,-8938], -[1,3,4701], -[0,0,219,4702,4], -[0,-8113], -[1,3,4704], -[0,4705,4706,4707,5], -[0,-1758,-1650], -[0,-2416,-1449,-9658,-2125], -[0,-1689,-3110], -[1,3,4709], -[0,4710,4711,41,10], -[0,-2029], -[0,-23,-26,-40,-41,-43,-664,-756,-761,-932,-1654,-1788,-1939,-1967,-2006,-2125,-2127,-2128,-2131,-2137,-2140], -[1,3,4713], -[0,4714,4715,7,8], -[0,-668,-2177,-1077,-719,-9659,-1982,-2234], -[0,-1415,-932,-2125,-1753,-2375,-2379,-2402,-2410,-3136,-3037,-3198,-3199,-3048,-959,-958,-9660,-428,-9661,-427], -[1,3,4717], -[0,0,4718,4719,5], -[0,-9662,-4835,-3036,-4647,-3037,-8200,-3664,-502,-9663,-9664,-928,-932,-1107,-1449,-1683,-1763,-9665,-8436,-1942,-2910, --2410,-2426,-9666,-2469,-9667,-2531,-2564], -[0,-1313,-3578,-3994,-1334,-9668,-3161,-3122,-9669,-9670,-9671,-9672,-9060,-7314,-5819,-3967], -[1,3,4721], -[0,4722,29,4723,6], -[0,-1582], -[0,-5889,-1105,-7660,-7661], -[1,3,4725], -[0,4726,86,4727,6], -[0,-725,-1650,-2125,-2177,-2433,-2518,-9673], -[0,-9674,-9675,-9676,-9677,-1764], -[1,3,4729], -[0,4730,4731,4732,6], -[0,-6585,-1333], -[0,-86,-3307,-3615,-190,-4066,-350,-351,-3266,-3267,-9678,-4862,-9679,-3037,-5286,-2970,-3664,-932,-967,-4814,-977,-1110, --1323,-1344,-7317,-1449,-1534,-1772,-1874,-1942,-2910,-2127,-2214,-2379,-2410,-2411,-2469], -[0,-1317,-3264,-5092,-3215,-1333,-9680], -[1,3,4734], -[0,0,4735,4736,9], -[0,-3037,-652,-2586,-1288,-1292,-1942,-2094,-2100,-2399,-2410,-2426,-2541], -[0,-9681,-9682,-3264,-6557,-7153,-6818,-5387,-5388], -[1,3,4738], -[0,4739,4740,4741,4], -[0,-9683], -[0,-7196,-932,-1110], -[0,-5835,-3264], -[1,3,4743], -[0,0,4744,4745,5], -[0,-86,-3307,-3268,-9684,-3136,-3037,-589,-3223,-932,-940,-958,-9685,-1297,-1344,-1942,-2251,-2375,-2386,-2392,-2410, --2411], -[0,-3264,-9686,-9687,-9688,-3223,-9689,-9690], -[1,3,4747], -[0,0,4748,4749,11], -[0,-9691,-652,-756,-2127,-2415], -[0,-3264,-5559,-6422,-9692,-6420,-3223], -[1,3,4751], -[0,4752,4753,4754,5], -[0,-1839,-1324], -[0,-824,-1415,-1344,-1623,-774,-932,-825,-2501,-920,-1936,-1942,-767,-21,-533,-1276,-23,-1534,-1771,-9693,-86,-2251,-9694, --40,-1331,-958,-940,-3307,-7166], -[0,-2501,-3264,-5932], -[1,3,4756], -[0,4757,4758,4759,5], -[0,-6512,-683,-719,-1297,-6560,-9695,-2416], -[0,-1127,-1130,-1148,-1152,-1860,-1989], -[0,-687,-6454,-9696,-775,-3264,-9383,-3214,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838,-3215,-9698,-9216], -[1,3,4761], -[0,4762,4763,4764,4], -[0,-6512,-683,-719,-3223,-6560,-9695,-2334], -[0,-86,-5121,-350,-4062,-351,-3266,-9699,-9700,-932,-943,-1344,-1392,-1415,-1419,-1534,-2127,-9701,-2466], -[0,-687,-6454,-9696,-775,-3264,-9383,-3214,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838,-3215,-2334,-9698,-9216], -[1,3,4766], -[0,4767,4768,4769,9], -[0,-1860], -[0,-2322,-2250,-2320,-1860], -[0,-3264,-6528,-1858,-1859,-3967], -[1,3,4771], -[0,4772,4773,4774,4], -[0,-6585,-1317,-2039,-2276], -[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3267,-9678,-3268,-3037,-3040,-3052,-5286,-2970,-3664,-589,-932,-967,-4814, --977,-1110,-1344,-1534,-1874,-1940,-2910,-2006,-2019,-2127,-2214,-2379,-2410,-2411,-2469], -[0,-1326,-3264,-2006,-3215,-5092], -[1,3,4776], -[0,0,4777,4778,5], -[0,-519,-674,-2541], -[0,-3264,-5177,-9702,-9566,-4108,-5388,-5387,-9703,-9704], -[1,3,4780], -[0,0,4781,4782,10], -[0,-1344,-1392,-1471,-2387,-932,-2125,-2127,-1942,-756,-1870,-2410,-1771,-1413,-1952,-1481,-9705,-1476,-9706,-8382,-7818, --1491,-9707,-9708,-1475,-9709,-3469,-9710], -[0,-9711,-9712,-659,-3264,-5092,-6527,-9472,-3839], -[1,3,4784], -[0,4785,0,4786,5], -[0,-9713,-823,-861,-1333,-9714], -[0,-3264,-3966,-5554,-9715,-9716,-6473], -[1,3,4788], -[0,4789,0,4790,5], -[0,-9717,-9718,-469,-1107,-1496,-1646,-1966,-2177], -[0,-3264,-7148,-2451,-1330], -[1,3,4792], -[0,4793,4794,4795,9], -[0,-9719,-1324,-1548,-1949,-2321], -[0,-86,-3307,-3037,-767,-774,-778,-796,-9071,-932,-7466,-1322,-1344,-1415,-1534,-1643,-1771,-1942,-1974,-9720,-2000,-2125, --2251,-2275,-2410,-2501,-2503,-9721], -[0,-2501,-3862,-3264,-1331], -[1,3,4797], -[0,4798,4799,4800,4], -[0,-9722,-719,-755,-1936], -[0,-190,-3748,-7155,-3621,-3037,-9723,-652,-784,-932,-6835,-958,-8339,-9724,-1001,-1110,-1654,-1889,-1979,-9695,-2125, --9725,-2303,-2334,-2410,-2411,-9487], -[0,-1936,-9726,-3264,-9727,-6684], -[1,3,4802], -[0,4803,4804,4805,5], -[0,-7713,-6585,-6584,-3223], -[0,-190,-3037,-3664,-932,-940,-965,-978,-1110,-1942,-2386,-2410,-2411,-2469], -[0,-3264,-3215,-8027,-6597,-5092,-9728,-3484,-9297], -[1,3,4807], -[0,4808,129,4809,6], -[0,-828,-1370,-8441,-2255,-9729], -[0,-1334,-6324], -[1,3,4811], -[0,4812,4813,7,10], -[0,-996,-9730,-1063], -[0,-2531,-1788,-9731,-510,-1654,-2177,-1003,-2228,-725,-516,-2229], -[1,3,4815], -[0,4816,4817,4818,5], -[0,-9732,-812], -[0,-3198,-3136,-3037,-511,-1415,-2375,-2410,-1971,-9056], -[0,-1334,-1971,-8484,-9733], -[1,3,4820], -[0,4821,4822,4823,4], -[0,-4623,-812,-1336,-1393,-1396,-1639], -[0,-86,-3307,-190,-3198,-3330,-3617,-9734,-3136,-4036,-3037,-4203,-4204,-617,-932,-940,-967,-1004,-1098,-1110,-1344,-1415, --1534,-9735,-1805,-4916,-8436,-1942,-2293,-2375,-2410,-2411,-2531], -[0,-7302,-1971,-5401,-1334,-1342,-729,-1004,-1030,-3548,-9736,-632,-1168,-1137,-2512,-2531,-754], -[1,3,4825], -[0,4826,4827,4828,4], -[0,-1297,-1640,-668,-9737,-9738,-1810,-1646,-2436,-579,-1336,-1888,-9739,-1319], -[0,-9740,-2319,-932,-1004,-2105,-9741], -[0,-687,-3957,-5142,-1334,-1342,-1339,-9742,-3844], -[1,3,4830], -[0,0,4831,4832,4], -[0,-2391,-1344,-1654,-932,-2198,-2379,-1942,-190,-721,-2410,-3037,-1534,-7820,-3621,-9743,-86,-2251,-9744,-2411,-964,-940, --967,-3307], -[0,-1334,-729,-3100,-9745,-1004], -[1,3,4834], -[0,0,4835,4836,8], -[0,-3048,-3136,-9746,-427,-428,-932,-935,-958,-1077,-1415,-1605,-2375,-2378,-2379,-2410], -[0,-3966,-1334,-7827,-9747,-9748,-9745,-5563], -[1,3,4838], -[0,0,0,4839,4], -[0,-1342,-9749], -[1,3,4841], -[0,4842,4843,4844,4], -[0,-812,-9732], -[0,-1415,-1971,-2375,-9056,-2410,-3136,-3037,-512,-3198,-511,-9750], -[0,-1342,-1971,-8484,-9733], -[1,3,4846], -[0,0,0,4847,10], -[0,-5889,-3322,-1939], -[1,3,4849], -[0,4850,31,4851,11], -[0,-6829,-6372,-2347], -[0,-5827,-1334,-3443,-2105,-9052,-9751,-9752,-6693,-9753,-9024], -[1,3,4853], -[0,0,4854,4855,5], -[0,-3470,-3842,-3471,-741,-932,-940,-9754,-1942,-2127,-2174,-2322], -[0,-9755,-5553,-775,-656], -[1,3,4857], -[0,0,84,4858,5], -[0,-9756,-9757,-9758,-2424,-9759,-9760,-9761,-9762,-1878,-9763,-9764,-9765,-9766,-9767], -[1,3,4860], -[0,4861,4862,4863,4], -[0,-9768,-812,-9769,-9770,-9771,-1689], -[0,-510,-744,-932,-940,-943,-958,-966,-967,-968,-974,-1004,-1344,-1534,-1654,-1788,-1942,-2198,-2210,-2548,-2293], -[0,-3110,-1348,-9772], -[1,3,4865], -[0,39,4866,4867,5], -[0,-9773,-23,-3395,-3204,-38,-39,-40,-41,-43,-3326,-350,-351,-3266,-3037,-427,-428,-3664,-571,-756,-757,-932,-934,-940, --948,-958,-9774,-1344,-9775,-9776,-9777,-9778,-9779,-1534,-1942,-2125,-2127,-2210,-2410,-2469], -[0,-1349,-9780,-1348,-9781,-9782,-9772,-9783,-9784], -[1,3,4869], -[0,0,4870,4871,4], -[0,-190,-3267,-3470,-3471,-427,-428,-932,-940,-967,-1110,-1942,-2127,-2132,-2174,-2410], -[0,-1349,-9785,-3445,-3862], -[1,3,4873], -[0,4874,4875,4876,4], -[0,-9786], -[0,-1788,-510,-9787,-9788,-1654,-9789,-932,-2177,-2105,-9790,-2410,-3037,-1002,-2884,-2832,-3748,-5029], -[0,-9788,-5845,-9791,-9792], -[1,3,4878], -[0,4879,4880,4881,5], -[0,-9793], -[0,-527,-533,-559,-562,-756,-932,-934,-958,-1417], -[0,-1971,-9794,-9795,-1415,-4215], -[1,3,4883], -[0,0,4884,4885,4], -[0,-21,-23,-40,-427,-812,-932,-9796,-958,-1650,-9797,-2125,-9798,-2319,-2359,-2379,-2410], -[0,-1353,-9799,-9100,-1777,-8199,-9800,-7724,-5570,-5569,-9094,-1107,-9801,-9802], -[1,3,4887], -[0,0,4888,4889,6], -[0,-652,-1107,-2391,-2379,-2402,-2410,-3036,-3037,-2581], -[0,-6527,-8799,-9803,-9804,-6730,-7710,-5316,-8653,-8740,-8642,-8715,-9805,-8654,-8685,-9235,-8761,-7715,-8656,-3839, --9806,-9807,-5315], -[1,3,4891], -[0,4892,4893,4894,5], -[0,-9808,-7879,-2218,-1111,-9809,-1043,-5558,-9810,-8628,-9324], -[0,-2541,-519,-824,-2331,-7687,-9401,-7692], -[0,-1644,-6454,-6527,-5093,-9235,-8640,-7715,-8642,-3839], -[1,3,4896], -[0,4897,4898,4899,5], -[0,-9808,-999,-9811,-5558,-9812,-8628], -[0,-652,-2541,-519,-2410,-3037], -[0,-6454,-6527,-9813,-1644,-7175,-7715,-9814], -[1,3,4901], -[0,4902,0,4903,10], -[0,-9815,-2062], -[0,-1358,-9715,-7920,-9816,-3323], -[1,3,4905], -[0,0,4906,4907,9], -[0,-23,-3037,-3664,-756,-9817,-9818,-1059,-1344,-1361,-9819,-1548,-1552,-1942,-1952,-2074,-2125,-9820,-2174,-2391,-9821, --2410,-2466,-2469], -[0,-1361,-9822,-9823], -[1,3,4909], -[0,0,4910,4911,8], -[0,-9824,-3136,-756,-1415,-2125,-2375,-2388,-2410], -[0,-9825], -[1,3,4913], -[0,0,0,4914,4], -[0,-1361,-6852,-9826,-6582,-7537,-5112,-7558,-9827,-5562,-7822], -[1,3,4916], -[0,186,4917,4918,5], -[0,-519,-1298,-2384,-2541], -[0,-4792,-3324,-6690,-6691,-3551,-1072,-9828], -[1,3,4920], -[0,4921,4922,4923,6], -[0,-1871,-5915], -[0,-519,-6997,-824,-999,-2541], -[0,-6024,-8427,-4792,-2114,-1109,-9318,-9829,-687], -[1,3,4925], -[0,4926,4927,4928,5], -[0,-9830,-9831,-9832,-9833,-9834,-9835,-9836], -[0,-3037,-4204,-932,-9837,-1942,-2410], -[0,-9668,-3844,-9838,-9839,-7107,-8897,-9840,-3690,-7586,-9841,-5196,-9842,-3691,-5728,-3578,-3161,-3122,-9843,-9844, --6011,-5801,-1334,-1342,-2512,-6224,-9845,-3994,-3445,-5407], -[1,3,4930], -[0,0,14,4931,10], -[0,-6806,-2265,-7210,-9846,-6722,-5554,-885,-9847], -[1,3,4933], -[0,4934,4935,4936,8], -[0,-9551,-619,-9556,-1309,-1435,-1582], -[0,-707,-1277,-1510], -[0,-6656,-7421,-8481,-1277,-3862], -[1,3,4938], -[0,4939,4940,4941,6], -[0,-786,-2776,-3546], -[0,-9848,-9849], -[0,-1368,-6187,-3161,-4729,-9850,-3264,-9851,-3844,-5092,-4865,-2127,-9613], -[1,3,4943], -[0,0,4944,4945,4], -[0,-2410,-2469], -[0,-1369,-9852,-9853,-1878,-9763,-9758,-2424,-9854,-9855,-9759,-9764,-9760,-9765,-9766,-9767,-9761], -[1,3,4947], -[0,0,71,4948,10], -[0,-9856,-7711,-9857,-9858,-9859,-1370,-4865,-633], -[1,3,4950], -[0,0,29,7,5], -[1,3,4952], -[0,4953,4954,4955,5], -[0,-9860,-480,-482,-9861,-668,-688,-690,-696,-5906,-3517,-1366,-8418,-9862,-6259,-2166,-2202,-2219,-4621,-2267,-9863, --2400,-2820,-2528,-2531,-9864], -[0,-6486,-5918,-357,-3851,-3037,-3040,-9865,-9866,-9867,-4372,-4626,-4204,-9868,-519,-623,-826,-9869,-969,-970,-1681, --1741,-1827,-1942,-2006,-9870,-2210,-2269,-2379,-2410,-2541], -[0,-2006,-687,-4146,-3973,-3098,-3958,-1940,-2074,-9871,-7650,-714,-5554], -[1,3,4957], -[0,0,4958,4959,11], -[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-775,-932,-967,-4814,-1110,-1344,-1415,-1534,-1771,-1942,-2910,-2127], -[0,-1374,-9872,-5553,-3215,-775], -[1,3,4961], -[0,0,0,4962,6], -[0,-9873,-9874,-7864,-7084,-7856,-9219,-3966,-687], -[1,3,4964], -[0,4965,4966,63,4], -[0,-3947,-231,-4106,-2900,-3950,-9875,-2153], -[0,-3952,-2410], -[1,3,4968], -[0,4969,4970,4971,11], -[0,-480,-1040,-1863,-9875,-2153], -[0,-1059,-1087,-1376], -[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-910,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966,-3967,-1965,-3968,-1966, --3969,-2063,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], -[1,3,4973], -[0,4974,0,4975,8], -[0,-9876,-714], -[0,-9877,-3966,-9878,-9879], -[1,3,4977], -[0,0,4978,4979,6], -[0,-849,-1654,-9880,-2334], -[0,-3209,-4792,-4791,-9881,-4865,-9882,-7857,-1380], -[1,3,4981], -[0,0,4982,4983,8], -[0,-932,-937,-966,-1001,-1442,-1654,-1788,-8501,-2068,-2094,-9883,-2195], -[0,-9199,-9884,-711,-6505,-3184,-3756,-4055,-1460,-4146,-2006,-9885,-2362,-3018,-2410,-6597,-2548,-9886], -[1,3,4985], -[0,0,4986,4987,8], -[0,-510,-526,-528,-549,-9887,-9888,-551,-556,-559,-9889,-566,-9890,-9891,-9892,-9893,-9894,-9895,-9896,-9897,-9898,-9899, --9900,-9901,-9902,-9903,-689,-704,-932,-9904,-1045,-1107,-1127,-1132,-1134,-1138,-9905,-9906,-1452,-1650,-1797,-2125, --2127,-2128,-2131,-9907,-5860,-2138,-2143,-9266,-2187,-2493], -[0,-1382,-1348,-9780,-9908,-3582], -[1,3,4989], -[0,0,4990,4991,4], -[0,-7,-8,-9,-10,-13,-3204,-42,-3983,-365,-407,-410,-3037,-3040,-3052,-427,-428,-4837,-9909,-535,-774,-928,-932,-948,-958, --959,-969,-970,-1028,-9910,-4693,-9911,-1127,-1131,-1132,-1134,-1137,-1140,-1149,-9912,-1160,-1162,-1339,-1415,-1419, --1437,-1541,-1874,-1942,-9913,-2006,-2019,-2162,-2193,-2299,-2351,-2379,-2410,-2466,-6859,-2476,-5627,-2567], -[0,-9914,-9915,-9916,-9917,-9918,-3162,-3962,-9567,-3823,-3214,-3862,-775,-3264,-3926,-5538,-2006,-2476,-475,-2299,-3095, --2410], -[1,3,4993], -[0,220,4994,4995,5], -[0,-633,-1059,-2319], -[0,-4004,-1384], -[1,3,4997], -[0,4998,4999,5000,6], -[0,-9919,-9920,-9921], -[0,-3037,-3664,-932,-1942,-2080,-2125,-2127,-2376,-2387,-2410,-2469], -[0,-6143,-9922,-6134,-9923,-9924,-3214,-3966,-2410], -[1,3,5002], -[0,5003,5004,221,5], -[0,-2323,-834,-9925,-1805,-2446,-668,-812,-2387,-1548,-2177,-2240,-3547,-2347,-9926,-2291,-9927,-9928,-9929,-9422,-9930, --9931,-9932,-9933,-9934,-9935,-9936,-9937,-9938], -[0,-1415,-2125,-2388,-2375,-1417,-5673,-2231,-2410,-9939,-3136,-3037,-9940,-3738,-1534,-3198,-3044,-3199,-9941,-9942, --7836,-4202,-9943], -[1,3,5006], -[0,5007,5008,5009,5], -[0,-3978], -[0,-3983,-3048,-3136,-3037,-9947,-1077,-1415,-1417,-9948,-1772,-1942,-1978,-2125,-2177,-2184,-2303,-2392,-2410], -[0,-9949,-1386,-3167,-3839,-3162,-8585,-3095,-9950,-3119,-5270], -[1,3,5011], -[0,5012,5013,5014,4], -[0,-9951,-9952,-812,-9953,-1554,-9954,-9955,-9956,-9957], -[0,-9958,-3470,-7040,-3471,-3035,-4269,-3198,-9959,-9960,-3621,-3037,-9961,-4372,-427,-428,-664,-665,-932,-940,-1654, --1788,-1942,-2174,-2188,-2210,-2379,-2384,-2402,-2410,-2446], -[0,-2071,-9844,-9962,-9963], -[1,3,5016], -[0,0,5017,7,8], -[0,-1654,-932], -[1,3,5019], -[0,5020,5021,7,5], -[0,-9964,-9788,-9965], -[0,-9966,-1032,-1445,-2322], -[1,3,5023], -[0,0,5024,5025,4], -[0,-515,-1788,-2322,-932,-6283,-1365,-2156,-5834,-6402], -[0,-2444,-8038,-4004], -[1,3,5027], -[0,5028,5029,184,9], -[0,-680], -[0,-686,-2250], -[1,3,5031], -[0,5032,88,5033,4], -[0,-9967], -[0,-6836,-9968,-7440,-8421,-8130,-9969,-1107,-9095,-9970,-1391,-5572,-3581,-5574,-5569,-8129,-2265,-4004], -[1,3,5035], -[0,5036,5037,5038,11], -[0,-9971,-7408], -[0,-519,-6997,-824,-999,-1591,-2384,-2541], -[0,-1109,-5897,-9972,-3551,-1380,-9973,-1764,-2552,-1391,-7440,-6659,-8427,-9974,-687,-8425,-7304], -[1,3,5040], -[0,0,14,5041,6], -[0,-7208,-1391,-7440,-4004,-8038,-9716,-9975,-9976,-5493], -[1,3,5043], -[0,0,5044,5045,9], -[0,-664,-985,-1202,-1654,-1655,-2127], -[0,-7440,-1391,-9977,-1403,-3214,-9978,-8493,-7208,-9716,-8038,-9571,-5846], -[1,3,5047], -[0,0,5048,5049,5], -[0,-1654,-2081], -[0,-3264,-9950,-9979,-5065], -[1,3,5051], -[0,0,5052,5053,5], -[0,-3037,-519,-2331,-2384,-2541], -[0,-5827,-8038,-8027,-9980,-8800,-9753,-6408,-7440,-6659,-1391], -[1,3,5055], -[0,5056,222,5057,5], -[0,-9981], -[0,-7440,-9983,-7084,-9984,-9261,-6659,-6836,-1958,-4000,-3974,-1391], -[1,3,5059], -[0,0,31,5060,11], -[0,-4865,-1402,-5839], -[1,3,5062], -[0,0,5063,5064,11], -[0,-985,-1202,-1654,-2127], -[0,-7440,-1391,-9977,-1403,-9978,-8493,-9985,-5269,-7208,-8038,-9571,-5846], -[1,3,5066], -[0,5067,5068,7,5], -[0,-1729,-2516], -[0,-664,-1452,-9986,-1654,-1722], -[1,3,5070], -[0,5071,5072,5073,4], -[0,-1107,-1758,-1801,-510,-2518,-9632,-1650,-987,-1442,-2114,-2525,-931,-1276,-2297], -[0,-1452,-2125,-1754,-756,-2111], -[0,-4005,-9987,-9988,-9989], -[1,3,5075], -[0,5076,56,89,4], -[0,-1078,-2446,-7885], -[1,3,5078], -[0,5079,5080,5081,5], -[0,-513,-823,-896,-9990,-1571,-1887,-2355,-9991], -[0,-9992,-526,-527,-532,-534,-536,-544,-546,-9993,-551,-555,-7890,-558,-565,-567,-664,-9994,-748,-767,-778,-932,-980, --1017,-1041,-1074,-1168,-1171,-1184,-1226,-1243,-1322,-1331,-1471,-1475,-1476,-1482,-7759,-1490,-1491,-1492,-1521,-1522, --8936,-1654,-2210,-2211,-2275,-2388,-2410,-2417,-2437,-2476,-2479,-9995,-2481,-2483,-2484,-2485,-2501,-2505,-2508], -[0,-1407,-2476,-3527,-3095,-3098,-3160,-3161], -[1,3,5083], -[0,5084,156,5085,4], -[0,-233], -[0,-6748,-3215,-4377,-5829,-9567,-687,-3957,-6722,-1838,-6747], -[1,3,5087], -[0,5088,5089,7,4], -[0,-9996,-683,-719,-9997,-9998,-1650,-9999,-2416,-2595,-10000], -[0,-10001,-10002,-756,-1004,-10003,-10004,-10005,-10006,-10007,-10008,-10009,-10010,-10011,-10012,-10013,-10014,-10015, --10016,-1610,-1810,-10017,-2125,-10018,-3013], -[1,3,5091], -[0,5092,5093,5094,5], -[0,-510,-10019,-1863], -[0,-190,-932,-4719,-1110,-1654,-1980], -[0,-7641,-687,-9218,-10020], -[1,3,5096], -[0,5097,5098,5099,4], -[0,-10021], -[0,-3326,-351,-3561,-3266,-4964,-10022,-10023,-683,-767,-10024,-1344,-1437,-10025,-1534,-1639,-10026,-2127,-4063,-8896], -[0,-10027,-6527,-5182,-10028,-10029,-8636], -[1,3,5101], -[0,5102,5103,223,6], -[0,-1107,-1413,-10030], -[0,-932,-10031], -[1,3,5105], -[0,0,5106,223,5], -[0,-3244,-190,-501,-10032,-888,-932,-952,-1107,-1110,-1449,-1942,-2162], -[1,3,5108], -[0,5109,0,5110,5], -[0,-1088,-1650,-10033,-2111,-2424,-711,-10034,-10035], -[0,-3634,-3440], -[1,3,5112], -[0,5113,0,107,4], -[0,-236,-237,-1363,-1417], -[1,3,5115], -[0,5116,5117,5118,6], -[0,-10036,-10037], -[0,-6256,-21,-23,-26,-40,-86,-9404,-533,-10038,-756,-1344,-1415,-1942], -[0,-4215,-1415,-5129,-886,-659,-4004,-5119], -[1,3,5120], -[0,5121,5122,107,6], -[0,-236,-4019,-237,-668,-4021,-1363,-4023,-1427,-4031,-2550], -[0,-3041], -[1,3,5124], -[0,5125,224,7,6], -[0,-10039,-8434,-668,-1950], -[1,3,5127], -[0,5128,224,7,5], -[0,-10040,-10041,-4647,-3037,-1449], -[1,3,5130], -[0,5131,5132,7,4], -[0,-10040,-10042,-237,-5129,-1427,-1449], -[0,-3136,-4647,-3037,-1344,-1415,-1650,-1942,-1952,-2125,-2375,-2410], -[1,3,5134], -[0,5135,5136,7,9], -[0,-10040,-10042,-237,-3037,-5129,-1427,-4031], -[0,-4034,-703], -[1,3,5138], -[0,5139,5140,5141,5], -[0,-1418], -[0,-50,-3615,-3244,-190,-8433,-3136,-427,-428,-932,-940,-948,-958,-959,-967,-1110,-1344,-1415,-10043,-1428,-1534,-1942, --2375,-5232,-2410], -[0,-1415,-10044,-1015,-10045,-4004,-3634,-6538], -[1,3,5143], -[0,5144,5145,5146,4], -[0,-1077,-1805], -[0,-23,-2695,-366,-407,-409,-410,-10046,-3136,-10047,-3037,-10048,-3040,-3052,-6192,-485,-533,-534,-542,-561,-594,-635, --656,-661,-747,-778,-779,-796,-865,-866,-929,-932,-941,-10049,-1017,-1041,-1077,-1331,-1352,-1415,-1426,-1428,-10050, --1643,-1762,-1889,-1903,-1908,-1918,-1927,-1966,-10051,-2006,-2010,-2015,-2019,-2041,-2643,-2114,-2116,-2162,-2163,-2177, --2233, --2275,-2318,-2335,-2410,-2437,-10052,-2501,-2502,-2505,-2507,-2526], -[0,-1415,-3264,-6863,-9246,-3862], -[1,3,5148], -[0,5149,5150,7,4], -[0,-1650,-2269,-2446,-6597], -[0,-1415,-10053,-2218], -[1,3,5152], -[0,0,0,5153,5], -[0,-1415,-2552,-10054,-10055], -[1,3,5155], -[0,5156,5157,7,6], -[0,-668,-1119,-4024,-1425,-1427,-4031,-2218,-8204], -[0,-4035,-2435], -[1,3,5159], -[0,5160,5161,7,8], -[0,-237,-3037,-668,-680,-1119,-1864], -[0,-4035,-8523,-1548], -[1,3,5163], -[0,5164,5165,7,5], -[0,-480,-668,-4026,-4032,-2218,-6715,-2269], -[0,-21,-23,-40,-42,-190,-5121,-237,-3470,-3471,-3037,-533,-10056,-767,-932,-940,-948,-8339,-959,-967,-1110,-1415,-10043, --1942,-2125,-2174,-2177,-2410,-2411], -[1,3,5167], -[0,5168,5169,7,6], -[0,-3037,-9581,-1427,-1632,-2297], -[0,-23,-10057,-4373,-9586,-1100,-10058,-10059], -[1,3,5171], -[0,5172,5173,5174,4], -[0,-10060,-10061,-10062,-10063,-10064,-10065,-10066,-10067,-10068,-10069,-10070,-10071,-10072,-10073,-10074,-10075,-10076, --10077,-10078,-10079,-10080,-10081,-10082,-10083,-10084,-10085,-10086], -[0,-10087,-10088,-10089,-10090,-4066,-350,-6572,-351,-3266,-5286,-932,-10091,-1848,-2127,-2132,-6483,-9701,-2386,-2410, --10092,-2469], -[0,-6527,-10093,-10094,-7715,-8640,-9235,-8653,-10095,-7069,-7066], -[1,3,5176], -[0,0,5177,7,6], -[0,-23,-3341,-3196,-24,-10096,-33,-5828,-3367,-3077,-3389,-3408,-3412,-42,-3193,-46,-47,-10097,-10098,-4776,-4777,-10099, --10100,-10101,-3037,-3664,-461,-10102,-672,-727,-734,-6860,-10103,-930,-932,-944,-989,-990,-1026,-1394,-1640,-1651,-1667, --10104,-1852,-6568,-1940,-10105,-1942,-2006,-2019,-2080,-10106,-6570,-2335,-3535,-2376,-2410,-2469,-2476,-8416,-2564], -[1,3,5179], -[0,0,0,5180,6], -[0,-3494,-10107,-10108,-3495,-10109,-10110,-3264,-5554,-3496,-10111,-3214,-2410,-10112,-1432], -[1,3,5182], -[0,5183,5184,5185,4], -[0,-1432], -[0,-3615,-7155,-367,-406,-409,-410,-3040,-3052,-427,-428,-767,-778,-932,-940,-967,-969,-970,-979,-1331,-1449,-1942,-2006, --2019,-8276,-2275,-3752,-2379,-2391,-2410,-2469,-2501,-2503,-2505], -[0,-2006,-1432,-3264,-5554,-3496,-10113,-10109,-10110,-10114], -[1,3,5187], -[0,5188,5189,5190,4], -[0,-668,-10115,-10116,-10117,-2183,-3523,-1553,-1552,-10118], -[0,-1788,-510,-1127,-2210,-1813,-756,-1132,-6758,-1153,-722,-10119,-1149,-1144,-1146], -[0,-10120,-10121,-10122,-10123,-10124,-10125,-10126,-10127,-10128,-10129,-10130,-10131,-10132,-10133,-10134,-10135,-10136, --10137,-10138,-10139,-10140,-10141,-10142,-10143,-10144,-10145,-10146,-10147,-10148,-10115,-10149,-10150,-10151,-10152, --10153,-10154,-10155,-10156,-10157,-10158,-10159,-10160,-10161,-10162,-10163,-10164,-10165,-10166,-10167,-10168,-10169, --10170,-10171,-10172,-10173,-10174,-10175,-10176,-10177,-10178,-10179,-10180,-10180, --10181,-10182,-10183,-10184,-10185,-10186,-10187,-10188,-10189,-10190,-10191,-10192,-10193,-10194,-10195,-10196,-10197, --10198,-10199,-10200,-10201,-10202,-10203,-10204,-10205,-10206,-10207,-5158,-10208,-10209,-10210,-10211,-10212,-10213, --10214,-10215,-10216,-10217,-10218,-10219,-10219,-10220,-10221,-10222,-10223,-10224,-10225,-10226,-10227,-2183,-10228, --10229,-10230,-10231,-10232,-10233,-10234,-10235,-10236,-10237,-10238,-10239,-10240,-10241, --10242,-10243,-10244,-10245,-10246,-10247,-10248], -[1,3,5192], -[0,5193,5194,5195,4], -[0,-10249,-10250,-3880,-10251,-10252,-3888,-3117], -[0,-9163,-3890,-3891,-3893,-3037,-2410], -[0,-4058,-3926], -[1,3,5197], -[0,0,0,5198,5], -[0,-2006,-4125,-9800,-4633,-10253,-4634], -[1,3,5200], -[0,0,0,5201,10], -[0,-1437,-3214,-4865,-3482], -[1,3,5203], -[0,5204,5205,7,4], -[0,-1437], -[0,-1127,-2125,-1110,-367,-10254,-10255,-1152,-10256,-1542,-10257,-10258,-10259,-10260,-1136,-1139,-9550], -[1,3,5207], -[0,0,5208,5209,11], -[0,-3037,-1654,-2410], -[0,-6118,-7304], -[1,3,5211], -[0,5212,5213,5214,4], -[0,-10261,-7829,-1107,-1441,-1758], -[0,-481,-589,-709,-1437,-1452,-1646,-1654,-1689,-2111,-2184,-2269,-2501,-2503], -[0,-6146,-10262,-10263], -[1,3,5216], -[0,0,5217,5218,4], -[0,-3266,-932,-943,-957,-963,-1127,-10258,-1137,-1146,-9544,-1149,-10264,-10265,-1942,-1989,-2091,-2127,-5090,-2134,-2250], -[0,-743,-6920,-4865,-10266,-4791,-3323,-1441,-633], -[1,3,5220], -[0,5221,5222,5223,8], -[0,-503], -[0,-1788,-5514,-1654,-932,-2127,-2195,-1103,-589,-709,-1023,-2140,-350,-351,-10267], -[0,-2548,-3215,-4142,-10268], -[1,3,5225], -[0,5226,5227,5228,10], -[0,-25,-5223,-719,-812,-822,-1107,-10269,-10270,-2001,-10271], -[0,-190,-4010,-367,-4007,-7043,-3037,-720,-740,-796,-932,-940,-959,-967,-1415,-1448,-9390,-9393,-1942,-2125,-2410,-2411], -[0,-10272,-856], -[1,3,5230], -[0,5231,5232,7,4], -[0,-714,-719,-1077,-10273,-10274,-10275,-10276,-10277,-10278,-10279], -[0,-5325,-3048,-3037,-3664,-1753,-2379,-2391,-2410,-2469], -[1,3,5234], -[0,5235,5236,5237,6], -[0,-668,-693,-719,-10280,-988,-1000,-1107,-1333,-1442,-10281,-10282,-6611,-1548,-1645,-5199,-6533,-1965,-10283,-2114, --2270,-2271,-10284,-10285,-9247,-10286,-2538], -[0,-664,-756,-3607,-1452,-1654,-2081,-2123,-2210,-2211,-10287,-10288,-2536], -[0,-8172,-4144,-7148,-8170,-4901,-5874], -[1,3,5239], -[0,5240,5241,5242,4], -[0,-25,-10289,-3661,-615,-10290,-930,-10291,-8985,-1600,-1601,-1610,-1650,-10292,-2271,-2424], -[0,-469,-1168,-1197,-1225,-1788], -[0,-856,-3214], -[1,3,5244], -[0,5245,0,5246,4], -[0,-6789,-7573,-10293,-7575,-1446,-10294,-7576], -[0,-1446,-3690,-5731,-3964,-3214,-856], -[1,3,5248], -[0,5249,0,5250,5], -[0,-6789,-717,-718,-10295,-843,-1447,-2576,-7576], -[0,-1446,-1599,-3690,-3262,-3214,-3756,-856], -[1,3,5252], -[0,5253,5254,225,5], -[0,-10296,-10297,-10298,-9683,-785,-10299,-10300,-1319,-1337,-1343,-1397,-1839,-10301,-10302,-2364,-2426,-10303,-10304, --6587,-10305,-8352], -[0,-7196,-932,-957,-965,-1110,-1442,-1645,-1654,-10306,-1772,-1810,-1880,-2177,-2188,-2354,-10307,-10308], -[1,3,5256], -[0,5257,5258,225,5], -[0,-10309,-10310,-785,-1333,-10311,-1839,-2105,-8352,-2540], -[0,-633,-714,-1339,-1452,-6810,-1754,-1888,-1980,-10312,-2493], -[1,3,5260], -[0,0,5261,5262,4], -[0,-756,-1127,-1132,-6114,-1405,-1654,-2081,-2111,-10313], -[0,-640,-5559,-3214,-4055,-6917,-8127,-2265,-6231,-3673], -[1,3,5264], -[0,5265,5266,7,8], -[0,-687,-6392,-1000,-1333,-1548,-1645,-2271], -[0,-510,-633,-739,-6019,-756,-1405,-1445,-1661,-1754,-1978,-2081,-10314,-2210,-6430,-10315,-10316], -[1,3,5268], -[0,5269,226,5270,5], -[0,-668,-1574,-1877,-6715,-2343,-9493], -[0,-1452,-6863,-4144,-3276,-7148,-5874,-10317,-6864,-3240], -[1,3,5272], -[0,5273,5274,5275,4], -[0,-10318,-10319], -[0,-3621,-3037,-427,-428,-932,-936,-958,-1654,-1788,-2379,-2410], -[0,-4055,-10320,-788,-6473,-8257,-10321,-10322,-1838,-3215,-1454,-10323,-687], -[1,3,5277], -[0,0,5278,7,8], -[0,-2251], -[1,3,5280], -[0,0,0,5281,9], -[0,-4055,-4058], -[1,3,5283], -[0,5284,5285,5286,4], -[0,-411,-414,-2702,-668,-679,-3780,-6869,-1369,-1460,-1581,-10324,-2213,-10325], -[0,-3037,-726,-1098,-1344,-2987,-8065,-2331,-2400,-2410], -[0,-4182,-3844,-8959,-3817,-3816,-10326,-4215,-4041,-4004,-3634,-3691,-6582,-10327], -[1,3,5288], -[0,5289,5290,5291,10], -[0,-655,-6511,-1402,-7584,-1795], -[0,-2832,-5834,-8084,-8086,-8090,-10328,-8096,-516,-5835,-932,-1365,-1777,-2156,-2322], -[0,-4055,-6231,-10329,-6131,-7283,-10330], -[1,3,5293], -[0,0,0,5294,5], -[0,-4055,-6231,-10331,-9594], -[1,3,5296], -[0,0,5297,5298,11], -[0,-753,-932,-943,-958,-966,-968,-974,-1771,-2081,-2127,-2129,-2131,-2137,-2140,-2210,-2319,-10332], -[0,-4055,-1460,-8108,-4795,-3217], -[1,3,5300], -[0,0,5301,7,4], -[0,-1654,-932,-2125,-2410,-3037,-3621,-428,-427], -[1,3,5303], -[0,5304,206,5305,4], -[0,-8984], -[0,-2059,-6234,-6656,-4055,-1076,-1077], -[1,3,5307], -[0,0,5308,5309,5], -[0,-7055,-10333,-664,-932,-10334,-1654], -[0,-4055,-4058,-1463,-2451,-3926], -[1,3,5311], -[0,5312,5313,5314,5], -[0,-2346,-10335], -[0,-2322,-8392,-10336,-7650,-6538,-994], -[0,-4055,-5827,-9292,-3215,-510,-6747], -[1,3,5316], -[0,5317,5318,5319,8], -[0,-1681,-10337,-2177,-10338,-10339,-10340,-1563,-10341,-10342,-1562], -[0,-1780,-1788,-514,-664,-1654,-2210,-932,-739], -[0,-3175], -[1,3,5321], -[0,5322,5323,7,5], -[0,-23,-10343,-10344,-1816,-1863], -[0,-5694,-3037,-10345,-653,-928,-932,-940,-1640,-1645,-1805,-1942,-2127,-2358,-2410], -[1,3,5325], -[0,0,5326,5327,4], -[0,-3037,-3664,-8436,-2391,-2410,-2469], -[0,-4125,-3967,-3445,-10346,-2006,-5269,-3578,-2034,-3138], -[1,3,5329], -[0,5330,5331,5332,6], -[0,-10347,-1834,-8578,-2062], -[0,-2359,-1127,-1989,-932,-589,-1132,-633,-1874,-2410,-1339,-10348,-1130,-1148,-10349], -[0,-5408,-6827,-10350], -[1,3,5334], -[0,0,5335,5336,6], -[0,-2200,-1415,-1344,-932,-2910,-2375,-2379,-1942,-2410,-23,-1534,-632,-726,-958,-940,-967,-1419,-428,-427,-948], -[0,-3175,-4865], -[1,3,5338], -[0,0,5339,5340,4], -[0,-1003,-1405,-1654], -[0,-3175,-6422,-6420], -[1,3,5342], -[0,5343,5344,5345,6], -[0,-6134,-2359,-1107,-1640,-10351,-2550,-9968,-1548,-1576,-1650,-2125,-729,-679,-1645,-2228,-1336,-2231,-617,-1119,-5506, --1997,-2594,-10352,-5758], -[0,-664,-5735,-1654,-7243,-2210,-2518,-932,-793,-2491,-1978,-2293,-633,-1474,-1972,-2211,-10353,-667,-1482,-1413,-1481, --86,-665,-1472,-2174,-966,-958,-10354,-1483,-3471,-968,-1475,-10355,-943,-974,-1479,-9404,-3470,-1473], -[0,-1471,-10356,-4043,-1471,-3756,-3214,-3634,-4004,-8908,-10357], -[1,3,5347], -[0,5348,5349,5350,6], -[0,-10358,-1548,-10359,-1645,-8016,-742], -[0,-1763,-627,-664,-1471,-1654,-2210,-2363,-5482,-932,-2114,-2491,-633,-2211,-2410,-1771,-1413,-1481,-6399,-964,-1475], -[0,-10360,-10361,-10362,-633], -[1,3,5352], -[0,5353,5354,5355,4], -[0,-1980,-2734,-10363], -[0,-1127,-932,-1159,-1131,-1152,-1542,-966,-1129,-958,-968,-943,-974,-1150,-1151], -[0,-10360,-10364,-2734,-10365], -[1,3,5357], -[0,0,0,5358,4], -[0,-1471,-10360,-664,-1654,-2198], -[1,3,5360], -[0,227,5361,5362,9], -[0,-664,-1471,-1654,-2210,-2250,-1482,-86,-2174,-3471,-9404,-3470], -[0,-10360,-10364,-10366], -[1,3,5364], -[0,5365,5366,5367,5], -[0,-5086,-6029,-5087,-5088,-5089,-1645], -[0,-86,-3307,-9248,-3470,-3471,-7041,-664,-711,-932,-943,-958,-966,-968,-974,-1127,-1132,-1155,-1159,-1344,-10367,-1471, --10368,-1479,-1482,-10369,-1654,-7243,-2111,-2174,-2210,-2211], -[0,-10360,-10361,-10370,-4005,-1405], -[1,3,5369], -[0,227,5370,5371,4], -[0,-1127,-1138,-1144,-1155,-1413,-1471,-1481,-1860], -[0,-10360,-10364,-4865,-6413,-10371,-10372,-10373,-10374,-7490,-10375,-10376,-10377,-10378,-10379,-10380], -[1,3,5373], -[0,5374,5375,5376,5], -[0,-10381], -[0,-664,-10382,-6134,-932,-943,-968,-974,-1127,-1131,-1132,-1152,-1159,-1163,-1471,-1542,-10383,-1972], -[0,-10360,-10364,-5799,-7489], -[1,3,5378], -[0,5379,5380,5381,4], -[0,-1401,-2518], -[0,-86,-3307,-3470,-3471,-7041,-1344,-1471,-1482,-1654,-1868,-2174,-2250], -[0,-1471,-3634,-10360,-10364,-10384], -[1,3,5383], -[0,34,5384,5385,5], -[0,-664,-6134,-932,-943,-968,-969,-974,-1127,-1129,-1131,-1149,-1150,-1151,-1152,-1159,-1163,-1471,-1542,-7243,-2210, --2211], -[0,-10360,-10364,-8996], -[1,3,5387], -[0,5388,5389,5390,5], -[0,-1413], -[0,-1127,-1344,-1471,-932,-1412,-86,-2174,-966,-958,-3471,-7041,-968,-943,-974,-1479,-3472,-9404,-3470], -[0,-10360,-10385,-1412], -[1,3,5392], -[0,228,5393,5394,6], -[0,-664,-932,-943,-968,-969,-974,-1127,-1129,-1131,-1150,-1152,-1155,-1159,-1471,-1474,-1475,-1479,-1489,-1542,-1654, --1658,-2210,-3470,-3471,-2174,-86,-3307,-1344], -[0,-10360,-10385,-1654], -[1,3,5396], -[0,5397,5398,5399,4], -[0,-668,-1574,-2269], -[0,-664,-1127,-1131,-1138,-1144,-1150,-1155,-1162,-1413,-1474,-1477,-1542,-1654,-1860], -[0,-10360,-10370,-1654,-664,-834,-8619], -[1,3,5401], -[0,5402,5403,5404,4], -[0,-1548,-1860], -[0,-932,-943,-969,-974,-1127,-1129,-1131,-1150,-1152,-1155,-1159,-1413,-1471,-1481,-1542], -[0,-10360,-10364,-1859], -[1,3,5406], -[0,0,5407,5408,10], -[0,-664,-1127,-1471,-1654,-1989,-932,-1159,-1131,-1481,-966,-958,-968,-943,-974,-1479], -[0,-1471,-10360,-10385,-1989], -[1,3,5410], -[0,5411,5412,5413,6], -[0,-679,-811], -[0,-23,-3412,-40,-932,-1413,-1471,-1475,-1481,-1483,-2127,-2128,-2129,-2131,-2137], -[0,-6505,-4795,-1471,-3209,-6024,-8257,-3862,-3277,-10361,-10360,-10386,-2127], -[1,3,5415], -[0,0,5416,5417,8], -[0,-1159,-1127,-1131,-1129], -[0,-10360,-10364,-10387], -[1,3,5419], -[0,5420,5421,5422,4], -[0,-10388,-5471,-4881], -[0,-86,-3307,-3470,-3471,-7041,-3048,-10389,-3037,-1344,-1412,-1471,-1481,-2174,-2410], -[0,-10360,-10364,-10390,-10391,-5471], -[1,3,5424], -[0,0,0,5425,4], -[0,-1471,-10360,-2210,-4215], -[1,3,5427], -[0,5428,5429,5430,5], -[0,-1119], -[0,-4035,-652,-932,-1413,-1471,-10392,-1475,-1481,-1942,-2127,-10393], -[0,-10360,-10361,-9454,-3214], -[1,3,5432], -[0,187,5433,5434,11], -[0,-664,-756,-1654,-1771,-1788,-2210,-2211], -[0,-10360,-6863], -[1,3,5436], -[0,5437,5438,48,8], -[0,-1107,-1645,-2508], -[0,-21,-23,-39,-40,-86,-3307,-7166,-533,-664,-665,-767,-932,-958,-967,-1344,-1405,-1412,-1415,-1471,-1474,-1475,-1482, --1491,-1534,-1626,-1654,-1939,-1942,-1978,-2251,-2501], -[1,3,5440], -[0,0,27,5441,8], -[0,-10394,-1493,-10395,-4111,-10396,-10397,-10398,-10399,-1494], -[1,3,5443], -[0,0,0,5444,6], -[0,-1494,-2063,-3103], -[1,3,5446], -[0,5447,5448,5449,6], -[0,-10400], -[0,-10401,-3653,-2581,-6486,-3664,-2125,-10402,-2384,-2469,-10403,-10404,-10405,-10406,-10407,-10408,-10409], -[0,-7372,-5846,-4634,-3324,-6495,-10410,-6005,-3445,-10411,-2071,-1671,-3742,-1691,-6321,-10412,-1724,-1582,-10413,-654], -[1,3,5451], -[0,0,5452,5453,4], -[0,-985,-2447], -[0,-5514,-687,-712,-714,-4000,-3974], -[1,3,5455], -[0,5456,5457,5458,5], -[0,-985,-10414,-812,-1548,-8945,-2068,-2350,-10415,-713,-719,-1381,-2115,-1097,-10416], -[0,-1857,-1788,-2384,-664,-1410,-2322,-1344,-1654,-1691,-2210,-932,-1692,-2125,-879,-1658,-2245,-10417,-2379,-10418,-1942, --2320,-756,-767,-1464,-2211,-2410,-3037,-8946,-1534,-10419,-10420,-665,-2234,-10421,-958,-10422,-10423,-940,-967,-5984], -[0,-10424,-5101,-6321,-10425,-1691,-10426,-2245,-5378,-1682,-4258,-10427,-7641,-7773,-7685], -[1,3,5460], -[0,5461,5462,5463,4], -[0,-8520,-1026,-10428,-1431,-1442,-1646,-10429,-1863,-1864,-10430,-2271,-2564], -[0,-237,-7057,-3660,-5686,-8523,-3046,-4879,-10431,-4651,-2392,-2410], -[0,-10432,-10433,-7711,-687,-10434,-3015,-6659,-3016,-10435,-10436,-8035,-8257,-6999,-5573,-3214,-7148,-10437,-10438, --10439,-10440,-10441,-5897,-9044,-3694,-2410,-10442,-10443,-7441,-10444], -[1,3,5465], -[0,0,5466,5467,6], -[0,-932,-1111,-10445,-1572], -[0,-775,-3589,-5387,-10366,-10384,-10446,-7489,-10387,-10447,-10448,-10449], -[1,3,5469], -[0,5470,0,5471,4], -[0,-1640,-2536,-812,-10450,-1801], -[0,-5817,-5937,-5940], -[1,3,5473], -[0,5474,5475,5476,4], -[0,-459,-736,-737,-6920,-10451,-7412,-907,-929,-1072,-10452,-1335,-1504,-1641,-1800,-1840,-2255,-2401,-2453], -[0,-652,-10453,-2226,-2250,-2293], -[0,-3578,-3994,-1334,-9668,-3161,-5401,-6854], -[1,3,5478], -[0,5479,5480,5481,5], -[0,-10454,-3734,-5586,-10455,-1070,-2400,-2564], -[0,-2832,-2581,-50,-8280,-10456,-3758,-8317,-10457,-4203,-1501,-2293,-2386,-7457,-2392,-2410], -[0,-1501,-10458,-6463,-4055,-10459,-3215,-4053], -[1,3,5483], -[0,5484,5485,5486,11], -[0,-10455,-10460,-2401], -[0,-946,-1344,-1501,-1654,-1788,-2198,-2293,-2541], -[0,-10461,-4055,-10458,-1501,-10459], -[1,3,5488], -[0,0,5489,5490,5], -[0,-708,-1415,-1612,-2250], -[0,-1501,-5401,-10462], -[1,3,5492], -[0,5493,5494,5495,6], -[0,-651,-668,-10463,-1800,-10464], -[0,-619,-652,-946,-1501,-10465,-10466,-2210,-2293,-2541], -[0,-1501,-5401,-3444,-1573], -[1,3,5497], -[0,5498,5499,5500,4], -[0,-812,-1504], -[0,-932,-943,-968,-974,-1405,-1501,-1508,-1654,-2198,-2293], -[0,-1501,-5401,-10467,-10468], -[1,3,5502], -[0,5503,5504,5505,10], -[0,-812,-1335,-1504,-1851], -[0,-1501,-1788,-668,-1344,-1654,-932,-1053,-2293,-10469,-2094,-1534,-86,-1448,-2099,-978,-3307], -[0,-1501,-5401,-10470,-3122], -[1,3,5507], -[0,5508,5509,5510,11], -[0,-812,-10471], -[0,-932,-943,-958,-966,-968,-974,-1405,-1501,-1654,-2293], -[0,-1501,-5401,-6656,-5142,-10472], -[1,3,5512], -[0,5513,5514,5515,4], -[0,-1717,-1974,-10473,-2071,-2550,-1548,-2286,-1004,-617,-10474], -[0,-664,-510,-1654,-2210,-2198,-2293,-710], -[0,-5418,-1986,-8615,-2071], -[1,3,5517], -[0,5518,5519,5520,4], -[0,-10475,-834,-932,-10476,-10477,-986,-10478,-1276,-1309,-1458,-1459,-1650,-2172,-2231,-2234,-2297,-10479], -[0,-707,-10480,-963,-10481,-2125,-2177], -[0,-4004], -[1,3,5522], -[0,5523,5524,5525,5], -[0,-5895], -[0,-519,-2177,-10482,-2384,-2541], -[0,-10483,-9318,-1764,-7861,-5897,-10484,-10485,-3551], -[1,3,5527], -[0,0,5528,5529,4], -[0,-1464,-10486,-589,-10487,-10488,-1414,-1446,-1548,-1627,-1963,-10489,-2111,-10490,-2424], -[0,-9826,-5112,-6187,-6188,-2444], -[1,3,5531], -[0,0,5532,5533,9], -[0,-2247,-1344,-1471,-1654,-2210,-932,-10491,-2127,-10492,-10493,-2416,-1482,-1489,-1534,-10494,-10495,-10496,-1480,-4062, --1478,-10497,-1475,-1487,-1479,-1486,-10498,-10499], -[0,-10500,-6917], -[1,3,5535], -[0,0,5536,5537,10], -[0,-589,-1023], -[0,-1519,-10501,-7210,-10502,-2265,-10503], -[1,3,5539], -[0,0,5540,5541,6], -[0,-8511], -[0,-7210,-10504,-5538,-3276], -[1,3,5543], -[0,5544,0,5545,8], -[0,-1787,-1371,-2323,-1866,-2247,-2446,-668,-999,-1392,-1826,-2218,-4701,-2550,-10505,-815,-9809,-1831,-2125,-2177,-914, --1442,-1827,-2346,-10506,-1077,-1098,-1376,-1591,-10507,-5917,-10508,-715,-1399,-1418,-1645,-10509,-293,-1100,-1686, --2654,-2410,-10510,-755,-1108,-10511,-10512,-2202,-1363,-10513,-1769,-10514,-2115,-10515,-2267,-2551,-10516,-305,-8500, --4236,-10517,-10518,-10519,-1767, --280,-10520,-10521,-2530,-283,-1770,-4283,-4716,-2450,-10522,-10523,-10524,-10525,-10526], -[0,-1520,-10440,-10527], -[1,3,5547], -[0,5548,5549,5550,6], -[0,-10528,-8501,-2387], -[0,-350,-4062,-351,-427,-428,-10529,-10530,-664,-652,-668,-755,-767,-932,-1077,-6720,-1107,-1111,-1127,-1132,-1134,-1137, --1152,-1161,-1162,-10531,-1418,-10532,-10533,-9237,-1646,-1654,-10534,-1771,-1856,-10535,-1874,-1961,-10536,-2114,-2127, --2140,-2142,-2177,-2200,-2351,-2379,-2410,-5252], -[0,-10537,-10538,-10539,-775,-10540,-10541,-10542,-10543,-10544,-1521,-10545,-10546,-4730,-10547,-3215,-3277,-10548, --10549,-5553,-3770,-3271,-10550,-10551], -[1,3,5552], -[0,0,5553,5554,4], -[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-533,-767,-774,-824,-825,-932,-940,-6929,-958,-959,-965,-967,-978,-1110,-1344, --1415,-1521,-10552,-1534,-1623,-1771,-1942,-2251,-2269,-2411,-2501], -[0,-2501,-5932,-1521,-10546,-10545,-775,-3277], -[1,3,5556], -[0,5557,5558,229,4], -[0,-10553,-10554,-10555], -[0,-1788,-2322,-2446,-468,-571,-1274,-2250,-2410,-3037,-40,-10556,-10557], -[1,3,5560], -[0,5561,5562,5563,8], -[0,-10559,-6127,-10560], -[0,-10561,-1788,-1107,-2322,-2331,-1032,-2125,-5420,-891,-1274,-1733,-2250,-767,-10562,-10563,-6128,-10564,-10565,-829, --10566,-10567], -[0,-10558,-1523], -[1,3,5565], -[0,5566,5567,229,11], -[0,-9508,-10568,-10569,-10570,-10571,-10572], -[0,-1788,-2322,-465,-2210,-468,-1032,-5420,-10573,-10574,-1274,-2250,-10562,-633,-2151,-10575,-10576,-725,-10577,-10578, --829,-10556,-10567], -[1,3,5569], -[0,0,5570,5571,11], -[0,-519,-10579,-10580,-10581,-10582,-10583,-10584,-1703,-10585,-2354,-2541], -[0,-1526,-10582,-10586,-10587,-2265,-7377,-834,-5922,-1087,-6547,-4310,-7378,-10588,-10589,-5554,-5572,-10590], -[1,3,5573], -[0,5574,29,5575,10], -[0,-280,-4280,-10591,-834,-1645,-1767,-1831,-2323], -[0,-1764,-1776,-4303,-687,-834], -[1,3,5577], -[0,5578,5579,5580,5], -[0,-280,-4283,-283,-680,-1767,-1831,-1957,-10592,-2059,-2177,-2202,-4297], -[0,-4298,-4299,-4300,-4286,-668,-7755,-10593,-2319], -[0,-1764,-1776,-4303,-687,-4304,-1528], -[1,3,5582], -[0,5583,29,5584,5], -[0,-280], -[0,-1764,-1776,-4303,-687,-5889,-10594,-10595], -[1,3,5586], -[0,0,5587,5588,4], -[0,-21,-23,-3367,-3350,-40,-43,-4062,-3266,-539,-664,-757,-10596,-767,-10597,-1405,-1415,-10598,-10599,-1646,-1654,-1771, --1788,-10600,-2104,-2125,-2127,-2387], -[0,-9917,-9918,-6240,-3962,-3162,-10601], -[1,3,5590], -[0,5591,5592,5593,6], -[0,-1015,-1048,-10602,-10603,-1396,-2068,-2114], -[0,-711,-932,-937,-940,-966,-1001,-1654,-1788,-2210], -[0,-4376], -[1,3,5595], -[0,0,5596,5597,4], -[0,-2581,-3136,-3037,-3806,-755,-1415,-2410,-2447], -[0,-755,-727,-3870,-7282], -[1,3,5599], -[0,0,0,5600,6], -[0,-10604,-7920,-10605,-3264,-1437,-10606,-10607,-2006,-2398,-2435], -[1,3,5602], -[0,5603,5604,5605,8], -[0,-719,-1536,-1639,-3610,-3535,-2548], -[0,-8280,-50,-86,-3307,-190,-3664,-6593,-10608,-767,-932,-940,-965,-967,-4814,-1344,-1661,-1942,-2177,-2410,-2469], -[0,-7148,-5889,-10609,-932,-1942,-2281,-707,-8169,-7440,-3276,-5874], -[1,3,5607], -[0,5608,5609,5610,4], -[0,-10610,-10611,-1398,-1399,-10612,-10613,-10614,-1826,-2153], -[0,-708,-826,-9464,-1534,-1574,-1788,-1939,-2239,-5747], -[0,-687,-4107,-4108,-4109,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], -[1,3,5612], -[0,5613,5614,158,6], -[0,-696,-713,-996,-1575,-2124,-2528], -[0,-5745,-2153,-5747], -[1,3,5616], -[0,5617,5618,7,8], -[0,-10615,-10616,-3297], -[0,-10617,-10618,-4686,-10619,-4690,-2387], -[1,3,5620], -[0,5621,5622,5623,5], -[0,-1548,-1646,-632,-10620,-731], -[0,-1654,-2210,-932,-1663,-1405], -[0,-475,-6205,-5142,-3844,-3113], -[1,3,5625], -[0,5626,5627,5628,6], -[0,-1812,-754,-2178,-714,-1676,-729,-679,-10621,-2186,-994,-1792,-10622,-9502], -[0,-1654,-932,-1452,-2293], -[0,-3577,-3113,-3673,-3844,-1334,-687], -[1,3,5630], -[0,5631,5632,7,4], -[0,-679,-10623,-6696,-2531], -[0,-711,-1654,-2198,-2210], -[1,3,5634], -[0,5635,5636,5637,4], -[0,-6838,-1107,-10532,-1442,-9641,-1542,-1548], -[0,-1127,-1144,-1149,-9650,-9280,-1158,-1972,-2210], -[0,-9219,-2548,-6838,-1127,-727], -[1,3,5639], -[0,5640,5641,5642,4], -[0,-506,-1686,-1872,-10624], -[0,-1127,-1132,-2889,-2541], -[0,-3015,-1107,-1127,-6994,-5572,-10625,-5574,-4792,-8906], -[1,3,5644], -[0,0,5645,7,6], -[0,-756,-932,-966,-1415,-1942,-2251], -[1,3,5647], -[0,5648,5649,5650,4], -[0,-10293,-1586,-10626,-10627,-10628,-10629,-10630,-10631,-2783,-10632,-10633,-10634,-10635,-10636,-10637,-10638,-10639], -[0,-1729,-2337], -[0,-7646,-3844,-3578,-3673,-3577,-3113,-754,-1640,-3691,-4215,-3690,-1971,-1586,-3445,-3100,-10640,-1339,-1334,-5735, --1342], -[1,3,5652], -[0,5653,5654,5655,4], -[0,-10347], -[0,-527,-528,-534,-535,-6079,-559,-10641,-571,-10642,-647,-754,-940,-1127,-5974,-1130,-1136,-1137,-1148,-1149,-10643, --1152,-1655,-10644,-7845,-1161,-10645,-7848,-1344,-1534,-1542,-1654,-1942,-10646,-5508,-2410,-2416,-2501,-2505], -[0,-10647,-10648,-6005,-10649], -[1,3,5657], -[0,5658,27,7,11], -[0,-523,-812,-10650,-2550], -[1,3,5660], -[0,5661,5662,5663,4], -[0,-755,-812,-1026,-10651,-2550], -[0,-528,-6048,-554,-558,-559,-849,-869,-932,-943,-958,-959,-966,-968,-972,-974,-1415,-1806,-10652,-2177], -[0,-10653,-10654,-5880,-10655,-7148,-2552,-1764,-8170,-7107,-1838], -[1,3,5665], -[0,0,0,5666,4], -[0,-3209,-10656,-2444], -[1,3,5668], -[0,0,0,5669,4], -[0,-3184,-3209,-10656,-2444], -[1,3,5671], -[0,0,0,5672,10], -[0,-10657,-7370], -[1,3,5674], -[0,0,0,5675,4], -[0,-10657,-656], -[1,3,5677], -[0,0,0,5678,5], -[0,-10657,-10658], -[1,3,5680], -[0,0,0,5681,4], -[0,-10657,-811], -[1,3,5683], -[0,0,0,5684,5], -[0,-10657,-10659], -[1,3,5686], -[0,0,0,5687,5], -[0,-10657,-5841], -[1,3,5689], -[0,0,0,5690,5], -[0,-10657,-6283], -[1,3,5692], -[0,0,0,5693,9], -[0,-10657,-9052], -[1,3,5695], -[0,0,0,5696,9], -[0,-10657,-10660], -[1,3,5698], -[0,0,0,5699,4], -[0,-10657,-10661], -[1,3,5701], -[0,0,0,5702,4], -[0,-10657,-10662], -[1,3,5704], -[0,0,0,5705,4], -[0,-1548,-10657,-10656,-2444], -[1,3,5707], -[0,0,0,5708,5], -[0,-10657,-10663], -[1,3,5710], -[0,0,0,5711,4], -[0,-10657,-10664], -[1,3,5713], -[0,0,0,5714,4], -[0,-10657,-6917], -[1,3,5716], -[0,0,0,5717,10], -[0,-10657,-5913], -[1,3,5719], -[0,0,0,5720,4], -[0,-10657,-1631], -[1,3,5722], -[0,0,0,5723,4], -[0,-10657,-10665], -[1,3,5725], -[0,0,0,5726,5], -[0,-10657,-10666], -[1,3,5728], -[0,0,0,5729,5], -[0,-10657,-8127], -[1,3,5731], -[0,5732,0,5733,4], -[0,-9496,-9497], -[0,-10657,-3110], -[1,3,5735], -[0,0,0,5736,5], -[0,-10657,-7329], -[1,3,5738], -[0,0,0,5739,4], -[0,-10657,-10667], -[1,3,5741], -[0,5742,5743,5744,5], -[0,-6703,-8038,-922,-7219,-10668,-10669,-10670], -[0,-1788,-2322,-1344,-10671,-932,-4896,-10672,-1534,-6707,-6709,-6706,-6708], -[0,-1573,-3444,-812,-648,-2520], -[1,3,5746], -[0,5747,5748,5749,5], -[0,-8416,-6861], -[0,-2541,-519,-2384,-2269], -[0,-4112,-687,-7095,-3958,-8132,-8618,-8619,-8620,-1040,-8621,-7084,-1573,-5545,-3974,-3973], -[1,3,5751], -[0,5752,5753,5754,4], -[0,-480,-690,-2219,-2269,-2528], -[0,-3037,-2267,-10673,-2384,-6786,-2541], -[0,-1573,-3444,-5545,-687,-3974,-4110,-4000,-5550,-10674,-10675,-10676,-8991,-3973,-1959,-10677,-5176], -[1,3,5756], -[0,5757,5758,5759,5], -[0,-10678,-812,-7142,-2124,-10679], -[0,-86,-3307,-10680,-5902,-9818,-932,-934,-940,-8246,-958,-967,-1077,-1344,-1392,-1788,-1942,-1972,-2319,-2410], -[0,-5545,-1573,-6459,-3966], -[1,3,5761], -[0,0,5762,5763,5], -[0,-9569,-3037,-1127,-1132,-1134,-1136,-1137,-10681,-1144,-1148,-1149,-10682,-10683,-1412,-2379,-2410], -[0,-1573,-3444,-5545,-4865], -[1,3,5765], -[0,0,5766,5767,10], -[0,-6132,-1942,-2410], -[0,-10684,-1578,-10685], -[1,3,5769], -[0,5770,5771,5772,6], -[0,-888,-828,-10686,-510,-812,-10330,-1004,-10687,-583,-615,-1369,-1752,-617,-2185,-10688,-10689,-10690,-10691,-10692, --2425,-10693,-10694,-10695,-10696], -[0,-1788,-664,-1127,-1471,-1654,-2210,-2518,-932,-756,-1132,-10697,-2293,-633,-838,-2211,-1155,-1482,-1152,-744,-10698, --10699,-1010,-1130,-1156,-1472,-10700,-1149,-10701,-1148,-10354,-10702,-1475,-10355,-10703,-1479,-7707], -[0,-3578,-5728,-3691,-3690,-1004,-2118,-1501,-6120,-7107,-5378,-1691,-7684,-6857,-1671,-10704,-1682,-10425,-6321,-2227, --10705,-3161,-3162,-10706], -[1,3,5774], -[0,5775,5776,196,5], -[0,-3187], -[0,-633,-913,-2319], -[1,3,5778], -[0,5779,5780,5781,9], -[0,-10707], -[0,-2392,-1344,-2331,-932,-1548,-825,-2379,-2410,-3037,-3044,-3617,-86,-10708,-10709,-5918,-10710,-3307], -[0,-7685,-7773,-891,-10711,-10712,-1055,-4182,-8427,-10713,-10714,-4865,-985], -[1,3,5783], -[0,0,5784,5785,5], -[0,-3037,-589,-928,-1610,-1650,-1942,-2319,-2386,-2402], -[0,-10715,-10413,-3324], -[1,3,5787], -[0,0,5788,5789,10], -[0,-3561,-407,-3667,-2127,-2132,-2410,-2466,-2469,-10716,-10717,-10718], -[0,-10719,-10720,-10721,-10722,-10723,-10724,-10725,-10726,-10727], -[1,3,5791], -[0,5792,5793,5794,9], -[0,-510,-596,-10728,-1696], -[0,-756,-1405,-1650,-1654,-1657,-2198], -[0,-6527,-640,-10729,-1958,-10095,-7069,-7068,-9235,-8640,-7715,-8642,-7066,-10730,-10731,-7334,-10732,-10733,-6337, --10502,-10734,-10735,-10736,-4162,-10737,-10738,-10739,-10740,-10741], -[1,3,5796], -[0,5797,5798,5799,5], -[0,-10742,-10743,-6789,-10508,-717,-718,-10744,-10293,-1501,-10745,-1805,-1982,-6791,-7576], -[0,-1448,-10639,-1729,-10746,-2337], -[0,-1586,-3844,-1334,-5735,-1342,-3445,-1339,-7646,-3578], -[1,3,5801], -[0,5802,5803,5804,8], -[0,-668,-715,-812,-910,-5672,-10415,-10747,-1040,-1075,-1286,-10748,-1292,-1380,-1442,-10521,-10749,-1650,-1816,-1951, --5353,-4242,-2098,-2101,-10750,-3669,-2359,-7699,-2427,-7669,-2429,-5356,-2446,-5358,-2518,-2530,-10751,-2550], -[0,-10752,-3198,-5334,-3660,-10753,-10754,-3037,-3628,-4231,-3738,-10755,-9284,-3041,-767,-8364,-2218,-2269,-2410,-2447], -[0,-1599,-10756,-10757,-3634,-856], -[1,3,5806], -[0,5807,5808,5809,8], -[0,-3115], -[0,-190,-351,-3561,-589,-8349,-740,-932,-1942,-2910,-2127,-2232,-2234,-2469], -[0,-2265,-10758,-6915,-7651,-6431], -[1,3,5811], -[0,5812,5813,5814,6], -[0,-2531,-523,-1449,-2387,-997,-1548,-1388,-3679,-7967], -[0,-932,-2402,-4204,-2410,-3037,-1771,-4647,-3044,-428,-4659,-10759,-427], -[0,-10760,-8911,-2410,-840,-4601,-9111,-3214,-10761,-10762,-10763,-10764,-10765,-9840,-10766,-10767,-7085,-10768,-10769, --856,-10770,-10771,-1589], -[1,3,5816], -[0,5817,5818,5819,4], -[0,-668,-1015,-1111,-2462,-1686,-1849,-2271], -[0,-1127,-1654,-2198,-1132], -[0,-622,-1168,-7419,-9219], -[1,3,5821], -[0,0,5822,5823,4], -[0,-4035,-3037,-519,-1119,-10772,-2331,-2384,-2541], -[0,-8988,-1650,-9218,-7411,-7410,-7421,-7420,-1847,-8807,-6370,-10773,-10774,-7371,-8990,-1076,-7422,-7000], -[1,3,5825], -[0,0,0,5826,5], -[0,-9218], -[1,3,5828], -[0,5829,5830,5831,4], -[0,-4733,-503,-578,-615,-10775,-1468,-10776,-1850,-2424,-2538], -[0,-3037,-633,-10777,-10778,-932,-10779,-1654,-2330,-2410,-2416], -[0,-8703,-3264,-10780,-10781,-1599,-3437], -[1,3,5833], -[0,5834,5835,5836,6], -[0,-3698,-6486,-10782,-10783,-10784,-10785,-10786,-10787,-10788,-10789,-469,-583,-668,-3910,-3911,-693,-9229,-9759,-1442, --1465,-1540,-1658,-1692,-1729,-1753,-1851,-1857,-1878,-2080,-2153,-2193,-2223,-2245,-2409,-10790,-2435], -[0,-10791,-10792,-4353,-10793,-10794,-2980,-8850,-10795,-3617,-3660,-4201,-5363,-4203,-427,-428,-932,-940,-967,-1076, --1415,-1847,-1942,-2234,-2293,-2375,-2376,-2383,-2410], -[0,-3445,-3690,-3691,-3967,-2410,-7685,-10796,-10797,-7643,-10798,-10799,-10800,-10801,-10802,-3742,-10425,-1691,-2409, --5406,-6120,-3173,-10803,-6005,-5940,-10804,-10805,-10806,-10807,-10808,-10809,-6113,-10810,-1594], -[1,3,5838], -[0,0,5839,5840,5], -[0,-3244,-2658,-250,-252,-254,-10811,-10812,-3044,-3037,-3040,-3052,-427,-428,-703,-784,-932,-10813,-970,-1548,-2634, --1889,-1891,-1906,-10814,-10815,-1942,-2006,-2019,-2193,-4245,-2592,-2391,-2410], -[0,-3160,-10816,-10817,-3824,-10818,-10819,-2006,-10820,-2410,-3214,-3577,-3100,-3477,-3160,-10821,-4015,-7566,-10822, --3095], -[1,3,5842], -[0,0,5843,7,5], -[0,-8392,-8394,-8393,-994,-8388], -[1,3,5845], -[0,0,5846,5847,6], -[0,-3037,-427,-428,-3664,-518,-652,-932,-935,-948,-1449,-10823,-2162,-2281,-3436,-2410,-2466,-6859,-2469], -[0,-10824,-3004,-3862,-10825,-5553], -[1,3,5849], -[0,5850,71,5851,4], -[0,-1758], -[0,-1599,-10826,-3272], -[1,3,5853], -[0,5854,5855,5856,5], -[0,-503,-3223,-10827,-10828,-10829,-10830], -[0,-3326,-350,-351,-3266,-5514,-589,-652,-664,-932,-943,-1004,-1103,-1304,-1429,-3245,-1602,-3650,-1603,-3427,-10831, --10832,-10833,-10834,-3651,-3668,-1654,-10835,-1708,-2127,-2195,-2293], -[0,-1599,-3215,-8630,-1600,-10836], -[1,3,5858], -[0,0,5859,5860,8], -[0,-3234,-519,-3425,-1637,-2234,-2250], -[0,-1599,-1600,-10836,-5147,-10837], -[1,3,5862], -[0,0,230,5863,5], -[0,-10836,-1600,-1599], -[1,3,5865], -[0,0,230,5866,8], -[0,-10836,-1600,-1599,-10838,-10839,-10840,-10841], -[1,3,5868], -[0,5869,5870,5871,4], -[0,-719,-883,-1015,-1304,-1860,-2102,-10842,-2347,-2359], -[0,-756,-1405,-10843,-2250,-2322], -[0,-1599,-6528,-5845,-3110], -[1,3,5873], -[0,0,5874,5875,4], -[0,-3037,-652,-668,-1942,-2094,-2100,-2269,-2399,-2410,-2541], -[0,-9846,-1599,-10844,-4002,-6724,-5554], -[1,3,5877], -[0,0,5878,5879,11], -[0,-7057,-3037,-3040,-3052,-10845,-928,-2006,-2019,-2034,-10106,-10846,-2410,-2476], -[0,-1599,-10847,-2006,-1940,-4146,-2476,-5173,-3944,-9608,-10848,-2034,-3264], -[1,3,5881], -[0,5882,88,5883,4], -[0,-725,-10849,-1125,-10850,-10851,-10852,-1646,-10853,-9323,-2102,-10854,-9403], -[0,-10837,-8630,-3671,-10855,-856,-10856,-10857,-9409,-10858,-1599,-3437,-3862,-4328,-4846,-2102,-10859,-7650,-4065,-4002, --10860,-10861,-10862,-6234], -[1,3,5885], -[0,5886,5887,5888,5], -[0,-1638,-10863,-10864,-10865,-10866,-10867,-10868,-10869,-2267], -[0,-190,-3748,-469,-519,-652,-2736,-932,-960,-965,-971,-978,-10870,-1111,-1442,-8274,-1461,-1600,-10831,-10834,-3651, --10871,-8345,-1771,-2335,-2362,-2410,-2501,-2503], -[0,-1599,-7148,-3437,-10872,-1608], -[1,3,5890], -[0,5891,5892,5893,10], -[0,-719,-822,-1353,-1442,-1461,-10873,-1608,-1600,-1645,-10874,-10430,-2654], -[0,-519,-8345,-2541], -[0,-1599,-1608,-687,-5732], -[1,3,5895], -[0,0,5896,5897,4], -[0,-2832,-10875,-10876,-7040,-3471,-3472,-7041,-7042,-674,-8630,-767,-5382,-928,-10877,-932,-1304,-1600,-10878,-10879, --10880,-2125,-2174,-9764,-2387,-2410], -[0,-1599,-10881,-3264], -[1,3,5899], -[0,5900,5901,163,4], -[0,-4321,-4322,-3649,-4323,-4309,-4320,-4308,-1395,-4313,-4318,-4314,-4315,-4311,-4316,-4319,-1550,-1554,-4317,-1600, --1603,-4324,-4325,-3430,-4312,-2161,-4310], -[0,-633,-674,-1107,-4327,-1654,-4326,-2250,-2251], -[1,3,5903], -[0,5904,0,7,4], -[0,-891,-10882], -[1,3,5906], -[0,5907,0,160,10], -[0,-567,-10883,-1493,-1566,-1571,-1967,-10884,-2055,-2069,-10885,-2489], -[1,3,5909], -[0,5910,5911,5912,8], -[0,-44,-10886,-10300,-10887,-5898,-10888,-2172,-6751,-10889], -[0,-23,-5585,-3391,-38,-40,-43,-8380,-3621,-427,-428,-507,-534,-652,-708,-824,-10890,-920,-932,-940,-943,-958,-964,-965, --967,-968,-1002,-10891,-1022,-1107,-1168,-1174,-1276,-10892,-1471,-1479,-1482,-1483,-1491,-3079,-1492,-1650,-1654,-1656, --10893,-10894,-10895,-10896,-10897,-10898,-1942,-1958,-2210,-10899,-2354,-2379,-2410,-2501,-10900], -[0,-10684,-10901,-7163,-10902,-10903,-3215,-8130,-6240,-6245,-10904,-10905,-7521,-5119], -[1,3,5914], -[0,5915,5916,7,10], -[0,-6130,-10906,-5852], -[0,-1654,-2501], -[1,3,5918], -[0,0,5919,5920,9], -[0,-1654,-2250], -[0,-1616,-10907,-10908], -[1,3,5922], -[0,5923,5924,5925,4], -[0,-4251,-4231,-10909,-9596,-5348,-1638,-10910,-10911,-10912,-10913,-10869,-10914], -[0,-3037,-652,-10915,-928,-7324,-2586,-1290,-1619,-10916,-1942,-2094,-2100,-2334,-2399,-2410,-2541], -[0,-3272,-1599,-10881,-10917,-10918,-1838,-4132,-10919,-9590,-3590,-2444], -[1,3,5927], -[0,5928,5929,5930,5], -[0,-5334,-4251,-9581,-9596,-10920,-10921,-9583,-2429,-5358], -[0,-3037,-9586,-652,-1290,-1294,-1618,-10922,-10923,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-9590,-10918,-10917,-9589,-9588,-2444,-3590,-1599,-3264], -[1,3,5932], -[0,0,5933,5934,6], -[0,-469,-4712], -[0,-6582,-10924,-10925,-775], -[1,3,5936], -[0,5937,0,5938,5], -[0,-10926,-10927], -[0,-10928,-3324,-3323,-9844,-10929,-10930,-10931,-10932,-1622,-10933,-7684], -[1,3,5940], -[0,5941,5942,5943,4], -[0,-10934,-10935,-10936,-10937,-10938,-10939,-10940,-10941,-10942,-10943,-10944,-10945,-10946,-2387], -[0,-3136,-6325,-3037,-496,-507,-640,-1331,-1344,-10947,-1415,-1848,-1942,-1958,-2062,-2125,-2325,-2375,-2376,-2379,-2388, --10948,-2410,-2435,-2444,-2501,-2503,-2505], -[0,-1076,-7422,-10949,-1626,-1623,-6656,-8801,-10467,-10412,-10950,-9614,-4004,-3634,-4215,-10951,-10952,-10953,-10954, --10955,-10956,-10957,-10958], -[1,3,5945], -[0,0,5946,5947,5], -[0,-5295,-3268,-3136,-10959,-8216,-3037,-427,-428,-589,-767,-932,-940,-959,-967,-1002,-10960,-1415,-1559,-1565,-1605, --10961,-5969,-9642,-10962,-1816,-1942,-2125,-2127,-2138,-2140,-2141,-2214,-2375,-2379,-2387,-2410], -[0,-5913,-10963,-3324,-6187], -[1,3,5949], -[0,0,5950,5951,5], -[0,-664,-1168,-2210,-10964,-1231,-2211,-1224,-1220,-1453], -[0,-3324,-10965,-5493,-6005], -[1,3,5953], -[0,5954,5955,5956,8], -[0,-10966,-2062], -[0,-599,-6774,-756,-932,-1405,-1654,-2198], -[0,-1076,-10412], -[1,3,5958], -[0,0,5959,5960,5], -[0,-1003,-1654,-1127,-1132,-1156,-1144,-1980], -[0,-10412,-4004,-5827,-3674,-8027,-640], -[1,3,5962], -[0,0,5963,7,4], -[0,-1654,-2198,-1733], -[1,3,5965], -[0,68,15,16,6], -[1,3,5967], -[0,0,5968,5969,5], -[0,-350,-4062,-351,-5918,-5686,-519,-10967,-722,-813,-10968,-10969,-999,-1111,-1366,-10970,-6904,-3609,-2060,-5120,-2127, --2132,-2134,-4621,-10971,-2384,-2400,-2410,-2541,-2551], -[0,-687,-8425,-2444,-3590,-4187,-4378,-3957,-6722,-1630,-10972,-10973,-3215,-5829,-5272,-3962,-7095,-4000], -[1,3,5971], -[0,0,5972,5973,4], -[0,-3035,-3621,-3037,-664,-726,-1654,-2410,-2501,-2503], -[0,-1631,-7371,-1015,-702,-7208,-4865], -[1,3,5975], -[0,0,5976,7,4], -[0,-10974,-1405], -[1,3,5978], -[0,5979,5980,5981,4], -[0,-679,-719,-812,-1125,-6796,-10975,-1639,-10976,-10977], -[0,-3244,-190,-10978,-4715,-3198,-4036,-3037,-10979,-652,-932,-958,-965,-1110,-1654,-1942,-2091,-2362,-2410], -[0,-5142,-5372,-6656,-9204,-3258,-3260,-3262,-1599,-3259,-1633,-2548], -[1,3,5983], -[0,5984,0,7,10], -[0,-10980,-5676,-1343,-10981,-10982,-2125,-2177,-2323,-2359], -[1,3,5986], -[0,5987,5988,7,8], -[0,-2453,-812,-1636,-1840], -[0,-1654,-932,-1405,-2293,-966,-958,-968,-943,-963,-974], -[1,3,5990], -[0,0,5991,5992,5], -[0,-1654,-1405], -[0,-1334,-1636], -[1,3,5994], -[0,5995,5996,5997,11], -[0,-23,-26,-10983,-3077,-3203,-3408,-3357,-40,-6056,-41,-4066,-3326,-350,-4062,-351,-10984,-10985,-518,-3766,-10986, --10987,-9459,-644,-656,-930,-1044,-1273,-1496,-1566,-1889,-1948,-2127,-5994,-4753,-2140,-2142,-2144,-5037,-2334,-10988, --2387,-2410], -[0,-21,-5870,-10989,-8280,-50,-533,-767,-10990,-932,-10991,-940,-967,-985,-1077,-1344,-1415,-1534,-10992,-1942,-2082, --2125,-2194,-2269], -[0,-4161,-2127,-10993], -[1,3,5999], -[0,6000,0,6001,4], -[0,-3198,-812,-10909,-9596,-10863,-10994,-7666,-10995,-10996,-10910,-2785,-10912,-10997,-10920,-10998,-10913,-10869], -[0,-8630,-3116,-4329,-3264,-7184,-1599,-10881,-3437,-2427,-1838,-3215,-3862,-1958,-2093,-7650,-4065,-8451,-3579], -[1,3,6003], -[0,6004,6005,6006,5], -[0,-9968,-1864], -[0,-1654,-1645,-10999,-1202], -[0,-6836,-11000,-11001,-7727,-11002,-8130,-9969,-11003,-6656,-6999,-7724,-5573,-1107,-9095,-9096,-9970,-11004,-11005, --11006,-5572,-5912,-3581,-10590,-1639,-1645,-1686,-11007,-11008,-1847,-5574,-5064,-11009,-5569,-5570,-8129,-5550,-11010, --9087], -[1,3,6008], -[0,0,6009,6010,4], -[0,-11011,-3713,-3037,-427,-428,-668,-11012,-1641,-1942,-11013,-11014,-2410], -[0,-5195,-6656,-1640,-11015,-11016,-2444], -[1,3,6012], -[0,6013,129,6014,10], -[0,-11015], -[0,-1640,-3694], -[1,3,6016], -[0,119,120,6017,4], -[0,-11017,-11018,-11019,-11020,-11021,-11022,-11023,-11024,-11025,-11018,-11026,-11027,-11028,-11029,-11030,-11031,-11032, --11033,-11034,-11035,-11036,-9234,-11037,-11038,-11039,-11040,-11041,-11042,-11043,-11044,-11045,-11046,-7530,-11047, --11048,-7561,-7562,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-11049,-7283,-6582,-7534,-7535,-7536,-7537,-7538, --7539,-7540,-7541,-7542,-7543,-7544,-7545,-8807,-6599,-5756, --11050,-11051,-7503,-7371,-7546,-7547,-7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558, --7559,-5063,-7560,-11052,-6187,-7563,-856,-7275], -[1,3,6019], -[0,6020,6021,6022,11], -[0,-2168,-2321], -[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-3037,-620,-767,-774,-778,-824,-825,-920,-932,-940,-6929,-958,-959,-960,-965, --967,-978,-1041,-1110,-1344,-1415,-1419,-1449,-1534,-1623,-1771,-1942,-2162,-2163,-2251,-2410,-2411,-2501,-2503,-2505], -[0,-2501,-775,-7347,-6211], -[1,3,6024], -[0,6025,6026,6027,5], -[0,-11053,-367,-683,-11054,-812,-928,-1047,-11055,-3751,-11056,-11057,-2334,-11058,-11059], -[0,-11060,-932,-11061,-11062,-4653,-11063], -[0,-1644,-7173,-3756,-775,-5094,-3264,-6118], -[1,3,6029], -[0,6030,6031,7,11], -[0,-11064], -[0,-2319,-2386,-1650,-2402,-1942,-3037], -[1,3,6033], -[0,0,6034,6035,4], -[0,-515,-1788,-2322,-932,-1777,-1365,-516,-2156,-5834], -[0,-4378,-9568,-3215,-1813], -[1,3,6037], -[0,6038,6039,6040,4], -[0,-719,-1730], -[0,-8477,-1415,-1942,-2375,-2410], -[0,-11065,-11066,-11067], -[1,3,6042], -[0,0,6043,6044,9], -[0,-11068,-3037,-5866,-652,-940,-1942,-2319,-2379,-2402,-2410], -[0,-8988,-7421,-11069,-9218,-11070,-7371,-5269], -[1,3,6046], -[0,6047,6048,7,5], -[0,-461,-1852,-6568,-11071], -[0,-3037,-3664,-672,-932,-944,-3190,-1431,-1942,-6570,-2410,-2423,-2469], -[1,3,6050], -[0,0,6051,6052,4], -[0,-23,-26,-33,-38,-40,-42,-44,-11072,-1059], -[0,-1652,-11073,-5927,-3159,-2006,-3476,-11074,-6106,-11075,-11076,-11077,-11078], -[1,3,6054], -[0,6055,6056,6057,5], -[0,-11079], -[0,-1652,-11079,-11080], -[0,-1652,-11073,-3159,-2006,-3476,-11074], -[1,3,6059], -[0,6060,6061,6062,4], -[0,-1297,-1681,-834,-1107,-812,-2550,-1047,-1442,-679,-1645,-1863,-3730,-1574,-2551,-11081,-7408,-2297,-11082,-2271,-930, --2182], -[0,-1788,-664,-1498,-1446,-1471,-2210,-11083,-932,-1708,-2093,-2125,-2127,-2177,-1110,-11084,-2501,-1942,-767,-190,-11085, --2410,-11086,-3037,-1339,-1482,-1600,-2503,-3041,-711,-1607,-1772,-4655,-27,-11087,-11088,-11089,-11090,-965,-3781,-1609, --11091,-3425,-1603,-3060,-1601,-4062,-11092,-4066,-1483,-1488,-1475,-350,-11093,-2144,-5995,-2136,-351,-9701,-11094, --11095], -[0,-1654,-4004,-3440,-4873,-2319,-3634,-664,-5855,-519,-1415,-2322,-1412,-1471], -[1,3,6064], -[0,6065,6066,6067,6], -[0,-4377,-1978], -[0,-664,-1654,-10534,-2410], -[0,-1654,-3636,-1978,-11096], -[1,3,6069], -[0,6070,6071,6072,5], -[0,-812,-1616,-1650,-2269,-6597], -[0,-357,-664,-11097,-932,-1654,-2125,-11098,-11099], -[0,-1654,-11100,-6863], -[1,3,6074], -[0,0,0,6075,11], -[0,-1654,-6863,-11101,-4005], -[1,3,6077], -[0,0,6078,6079,5], -[0,-664,-932,-9072,-1654,-2125,-2177], -[0,-4215,-1076,-4004,-8101,-8801,-10412], -[1,3,6081], -[0,6082,6083,6084,8], -[0,-11102,-1083,-11103,-11104,-1285,-1402,-1794], -[0,-2832,-5834,-8084,-11105,-11106,-11107,-11108,-11109,-8088,-11110,-8089,-8939,-8090,-8091,-8092,-8093,-3037,-11111, --8094,-8096,-516,-5835,-921,-932,-993,-1065,-1283,-1365,-1777,-1788,-2156,-2322], -[0,-3634,-4215,-7208,-7153,-5846,-11112,-4004,-6693,-11113], -[1,3,6086], -[0,6087,6088,231,4], -[0,-5505,-1759], -[0,-767,-932,-1654], -[1,3,6090], -[0,0,27,6091,6], -[0,-4004,-4215,-3966,-1076,-3972], -[1,3,6093], -[0,0,6094,6095,5], -[0,-1654,-2127,-2142,-2198,-2410], -[0,-4121,-4215,-4004], -[1,3,6097], -[0,0,6098,6099,6], -[0,-1405,-1452,-2210,-11115,-2471], -[0,-4215,-8611,-4792,-3551,-3324,-5119,-4004,-11116,-3634,-4873], -[1,3,6101], -[0,75,6102,6103,5], -[0,-1168,-1190,-11117,-1220,-1224,-1231,-11118,-1452,-1453,-2501], -[0,-4215,-11119,-11120], -[1,3,6105], -[0,6106,6107,6108,4], -[0,-4377,-1107,-1496,-1548,-11121,-1582,-1729,-995,-11122,-11123], -[0,-1435,-2384,-11124,-1415,-1680,-11125,-1867,-812,-11126,-648,-11127,-865,-932,-1576,-11128,-473,-1388,-1753,-11129, --2379,-2520,-11130,-11131,-1417,-11132,-1942,-756,-11133,-1418,-1765,-2293,-11134,-1969,-2410,-11135,-3037,-11136,-11137, --11138,-11139,-11140,-11141,-11142,-11143,-10453,-11144,-11145,-966,-11146,-357,-11147,-968,-940,-967,-972], -[0,-11148,-6209,-3161,-3445,-11149,-7586,-11150,-11151,-5078,-9840,-11152], -[1,3,6110], -[0,0,6111,6112,5], -[0,-1989,-2127,-767,-2410,-3037,-1488], -[0,-1666,-4121,-4123,-1838,-3276,-5874,-1348,-9772,-11153], -[1,3,6114], -[0,6115,6116,6117,4], -[0,-1666], -[0,-1127,-1134,-1144,-1146,-1148,-10264,-2410], -[0,-1666,-4121,-4123,-11154,-11155,-11156,-11157,-11158], -[1,3,6119], -[0,6120,6121,6122,5], -[0,-1461,-11159,-11160,-11161,-11162,-1848,-1942,-11163,-11164,-11165,-2548], -[0,-11166,-2970,-3664,-928,-9002,-1874,-2094,-11167,-2410,-2469,-11168], -[0,-3496,-3100,-3577,-11169,-9002,-2548], -[1,3,6124], -[0,0,6125,6126,10], -[0,-190,-3037,-3664,-932,-940,-972,-978,-1942,-2125,-2402,-2405,-7322,-2410,-2411,-2466,-6859,-2469], -[0,-11170,-11171,-11172,-5829,-11173,-3577,-3445], -[1,3,6128], -[0,6129,6130,6131,8], -[0,-6779,-11174,-6780,-6777,-11175,-6776,-8843,-11176,-11177,-2997,-11178,-617,-620,-11179,-637,-709,-719,-744,-767,-787, --865,-919,-1004,-4206,-1010,-1055,-11180,-11181,-1320,-1437,-3725,-1635,-1671,-11182,-1676,-1863,-11183,-2185], -[0,-23,-32,-40,-11184,-11185,-534,-664,-684,-726,-748,-778,-795,-932,-934,-958,-978,-11186,-1041,-1344,-1654,-11187,-1734, --1753,-2275,-2293,-2501,-2503], -[0,-8856,-11188,-7558,-7685,-11189,-3964,-11190,-11191,-6857,-1671,-11192,-11193,-11194], -[1,3,6133], -[0,6134,6135,6136,8], -[0,-637,-11195,-11196], -[0,-1788,-2384,-11197,-664,-668,-1654,-2210,-11198,-2550,-932,-2177,-11199,-1004,-1442,-2379,-1942,-2211,-2410,-3241, --3035,-3037,-667,-11200,-3621,-4372,-11201,-3199,-3617,-11202,-11203,-11204,-11205,-3625,-11206,-11207,-2234,-964,-977, --940,-967,-264,-262,-428,-11208,-6424,-9724,-11209,-427,-4814,-234], -[0,-1671,-9879,-5041], -[1,3,6138], -[0,6139,6140,6141,10], -[0,-11210,-1671,-11211,-11212,-1681,-11213], -[0,-11214,-11215,-3037,-11216,-11217,-11218,-469,-652,-674,-7743,-932,-5984,-1004,-1077,-1304,-9150,-1559,-11219,-8554, --1610,-1650,-1654,-1666,-11208,-11187,-11220,-1705,-1974,-2210,-2655,-2410,-2411,-2446], -[0,-1671,-10855,-6106,-4058,-7685,-11221,-6582,-11222,-5101,-7684,-1818,-7773], -[1,3,6143], -[0,6144,232,6145,5], -[0,-763,-727,-573,-2228,-2424,-2229,-11223], -[0,-1673,-11224,-11225,-8841,-11226,-11227], -[1,3,6147], -[0,6148,232,6149,5], -[0,-727,-729,-1673,-11228,-11223], -[0,-1673,-11229,-11224,-11225,-11230,-5412,-8841,-11231], -[1,3,6151], -[0,6152,6153,6154,8], -[0,-11232,-812,-1671,-11233,-11234,-11235,-11236,-11237,-11238,-1792], -[0,-519,-708,-932,-943,-950,-958,-966,-968,-974,-11239,-11240,-11241,-11242,-11243,-11244,-11245,-1788], -[0,-1675,-1671,-6857,-9879], -[1,3,6156], -[0,6157,6158,6159,5], -[0,-579,-812,-828,-1800,-6825], -[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2239,-2293], -[0,-1004,-1334,-3444,-5401], -[1,3,6161], -[0,44,15,16,10], -[1,3,6163], -[0,6164,6165,6166,10], -[0,-2531,-2124,-812,-11198,-2240,-11246,-11247,-1646,-4204,-1582,-11248,-725,-11249,-2062,-11250,-6279], -[0,-1788,-664,-2322,-2210,-932,-1109,-1650,-2125,-2198,-2226,-928,-1110,-2379,-679,-1942,-11251,-190,-1939,-2091,-2410, --3035,-3037,-8096,-4372,-908,-11252,-11253,-3244,-11254,-5325,-3311,-4805,-11255,-958,-940,-967,-428,-740,-3312,-11256, --427,-4646], -[0,-1680,-11257,-8403,-8404], -[1,3,6168], -[0,0,6169,7,8], -[0,-1344,-1654,-932,-1942,-1003,-1534], -[1,3,6171], -[0,6172,6173,6174,10], -[0,-11258,-719,-812,-10414,-10417], -[0,-86,-3307,-7040,-3472,-7041,-7042,-1654,-2174,-2250], -[0,-7685,-1682,-10424,-3844,-11259,-10704,-11260,-11261,-10417,-11262,-10704,-11263,-5800,-11264], -[1,3,6176], -[0,6177,6178,6179,11], -[0,-2946,-269,-4190,-11265,-743,-1122,-11266,-4193,-4194,-1851,-1863,-11267,-2255,-4195,-2364,-2400,-11268,-2550], -[0,-86,-3307,-11269,-3244,-190,-11270,-3316,-4196,-4197,-3983,-3617,-11271,-3037,-11272,-427,-428,-3310,-523,-5859,-720, --767,-768,-796,-928,-3808,-932,-940,-967,-1004,-1030,-8151,-1107,-1449,-11273,-1498,-1534,-11274,-1942,-2910,-2082,-2125, --3246,-2391,-2410,-2411,-2426,-2437,-2469,-4209,-2501,-4211,-1683], -[0,-3690,-4215,-4041,-8615,-10807,-3844,-5196,-8481,-3634,-3577,-4725], -[1,3,6181], -[0,6182,6183,6184,4], -[0,-11275,-649,-725,-1650,-1792,-2401,-2546], -[0,-821,-1004,-1069,-11276,-1654,-1788,-2125,-2250,-11277], -[0,-4053,-9751,-6463,-1069,-11278,-1004,-5401], -[1,3,6186], -[0,6187,14,6188,4], -[0,-9491,-11279,-1645], -[0,-7727,-5573,-1107,-9095,-9096,-5572,-5912,-1645,-5574,-5064,-9087], -[1,3,6190], -[0,6191,6192,6193,5], -[0,-2418,-1335,-2155], -[0,-1788,-11280,-1654,-932,-1650,-2125,-2291,-2108,-963], -[0,-6656,-7764,-1070,-5827,-5940], -[1,3,6195], -[0,6196,6197,6198,4], -[0,-5573,-1077,-1462,-1548,-3222,-1805,-2446], -[0,-1412,-1788,-11281,-2091], -[0,-793,-3264,-11282,-1688,-11283,-11284], -[1,3,6200], -[0,0,6201,6202,4], -[0,-985,-664,-2568,-1654,-932,-1452,-2127,-1978,-2416], -[0,-1689,-3110,-3261,-888], -[1,3,6204], -[0,0,6205,6206,10], -[0,-865,-1168,-1197,-1251,-1344,-1471,-1475,-1485,-1488,-11285,-11286,-1942,-10496,-1989,-2125,-2127,-2334,-11287], -[0,-4672,-3999,-11288,-7724,-7283,-7581], -[1,3,6208], -[0,6209,6210,7,11], -[0,-595,-2062,-2155,-11289], -[0,-465,-932,-2172,-11290,-11291,-11292], -[1,3,6212], -[0,6213,6214,6215,4], -[0,-1578,-9953,-10401,-1351,-11293,-11294,-11295,-11296], -[0,-652,-2392,-11297,-1110,-1942,-589,-767,-190,-1888,-2410,-3037,-11298,-3244,-3560,-3606,-940,-967,-428,-11299,-427, --5706], -[0,-1691,-3323,-3844], -[1,3,6217], -[0,6218,6219,6220,11], -[0,-8993,-1792,-8994], -[0,-1405,-615,-1654], -[0,-8124,-1961,-11300,-11301,-3184], -[1,3,6222], -[0,0,6223,6224,4], -[0,-11302], -[0,-1784,-3966,-9318,-9800,-11303,-3966,-7304,-6845], -[1,3,6226], -[0,0,6227,7,4], -[0,-596,-719,-1107,-2105,-2062,-2319,-2546], -[1,3,6229], -[0,0,6230,6231,4], -[0,-2426,-3037,-2410], -[0,-11304,-6582,-2105,-4055,-7684,-11151,-1697,-7685], -[1,3,6233], -[0,6234,6235,6236,5], -[0,-3115,-781,-786,-11305,-10883,-11306,-7222,-3768], -[0,-4757,-4754,-4749,-3136,-3037,-3140,-3040,-932,-4650,-1344,-11307,-1415,-1520,-11308,-1534,-1942,-1967,-2006,-2019, --2052,-2125,-2234,-2376,-2387,-2410,-2501,-2502,-2505,-2552], -[0,-775,-5553,-3770,-11309,-1697,-11310,-2006,-3756,-11311,-3771,-11312,-11313,-3095,-2278,-11314,-11315,-3271], -[1,3,6238], -[0,0,0,6239,8], -[0,-2446,-6555,-7231,-2435], -[1,3,6241], -[0,6242,6243,6244,4], -[0,-7872,-523,-893,-1077,-11316,-11317,-1577,-1705,-11318,-2160,-2234,-2359,-2550], -[0,-3198,-3048,-11319,-3136,-9143,-3037,-11320,-3628,-3041,-427,-428,-891,-932,-940,-967,-1415,-1874,-1942,-2125,-2376, --2410,-2501,-2503], -[0,-11321,-891,-3994,-5269,-8911], -[1,3,6246], -[0,6247,6248,6249,6], -[0,-2531,-1816,-2323,-1430,-1805,-2446,-523,-712,-1875,-2550,-8898,-1548,-1576,-1610,-1650,-1831,-2177,-7680,-2519,-2536, --987,-1966,-2195,-501,-679,-1942,-1981,-2378,-1645,-11322,-695,-2205,-2231,-2410,-11323,-3950,-11324,-11325,-11326,-8888, --11327,-11328,-6294,-7772,-1982,-280,-11329,-11330,-11331,-742,-8880,-11332,-11333,-11334,-11335,-11336], -[0,-664,-1127,-1344,-1654,-2210,-10645,-1405,-4204,-5673,-3035,-3037,-3738,-1162,-1534,-4248,-11337,-11338,-4372,-3041, --11339,-3044,-11340,-3199,-11341,-11342,-11343,-3735,-3714,-6114,-11344,-11345,-665,-1138,-2234,-1134,-1149,-11346, --11347,-4269,-11348,-3202,-11349,-740], -[0,-1702,-2410,-3214], -[1,3,6251], -[0,6252,6253,6254,6], -[0,-11350,-11351,-11352,-865,-1339,-11353,-1672,-1857,-2071,-7967,-11354,-10899,-2424,-2446,-11355], -[0,-350,-4062,-351,-9705,-3037,-427,-11356,-767,-932,-9106,-958,-965,-968,-1168,-1222,-11357,-1412,-1413,-7148,-1705, --1788,-11358,-1972,-2125,-2127,-2210,-2234,-2250,-2379,-6416,-2410,-11359,-2501,-7752], -[0,-11360,-11361,-7281,-11362,-11363,-3579,-11364,-11365,-11366,-11367,-11368,-11369,-11370,-11371,-11372,-11373,-11374, --11375,-11376,-11377,-11378,-11379,-11380,-11381,-11382,-11383,-11384,-11385,-11386], -[1,3,6256], -[0,6257,6258,6259,9], -[0,-1371,-510,-2550,-11387], -[0,-1788,-2471,-932,-756,-11388,-2091,-4646], -[0,-3870,-11389,-11390], -[1,3,6261], -[0,0,6262,6263,5], -[0,-1654,-2125,-8986], -[0,-687,-6351], -[1,3,6265], -[0,0,6266,6267,5], -[0,-3037,-3040,-427,-428,-749,-932,-940,-967,-969,-970,-1380,-1942,-2387,-2410], -[0,-11391,-3486,-2006,-3994,-11392,-11393,-5069,-3445], -[1,3,6269], -[0,6270,6271,6272,4], -[0,-510,-1650,-2424,-1545,-11394], -[0,-664,-1654,-2210,-2105,-719,-11395], -[0,-7685,-11222,-10712], -[1,3,6274], -[0,6275,6276,6277,5], -[0,-1351,-2165], -[0,-1464,-7623,-1654,-1976,-1980,-2198,-2210,-2536], -[0,-1334,-1342,-5493,-2105,-3323,-6463,-7764,-1971,-6827,-7430,-9791,-9788,-743,-8937], -[1,3,6279], -[0,6280,0,6281,5], -[0,-11396,-11397,-719,-755,-1376], -[0,-687,-5406,-9668,-3957,-3958,-11398,-11313], -[1,3,6283], -[0,6284,6285,6286,8], -[0,-11399,-510,-11400,-5676,-695,-714,-719,-790,-1044,-11401,-1548,-1650,-11402,-11403,-11404,-11405,-1951,-2177,-11406, --2524,-2538], -[0,-11407,-664,-829,-11408,-7829,-932,-960,-7819,-964,-972,-1442,-1654,-1722,-1788,-11409,-2070,-2188,-2195,-2210,-2536], -[0,-1710,-11410,-3690,-3634,-6657,-11411,-3691], -[1,3,6288], -[0,6289,6290,6291,4], -[0,-11412,-7603,-7604,-11413,-5038,-5777,-5775,-5791,-5779,-5778,-5780,-5782,-11414,-725,-1343,-11415,-11273,-1459,-11416, --2062,-11417,-2177,-2522], -[0,-3698,-11418,-11419,-11420,-11421,-11422,-305,-11423,-11424,-11425,-469,-510,-521,-2917,-652,-5980,-719,-741,-6906, --5983,-932,-960,-11426,-1107,-1116,-1344,-1446,-1534,-1547,-1722,-1969,-1972,-2125,-11427,-2210,-2291], -[0,-5805,-6187,-11230,-6032,-11428,-11429], -[1,3,6293], -[0,6294,6295,6296,5], -[0,-44,-11430,-743,-5193,-1791,-11431,-1940,-10105,-2446], -[0,-3168,-21,-23,-6064,-38,-40,-41,-42,-11432,-367,-7043,-406,-407,-409,-2622,-410,-3136,-3037,-11433,-11434,-3040,-3052, --518,-11435,-11436,-726,-784,-1415,-1419,-1428,-1683,-2634,-1889,-1891,-1916,-2006,-2019,-2516], -[0,-2006,-3967,-1791,-3175,-11437,-3173,-1713,-7204,-3177,-11438], -[1,3,6298], -[0,0,0,6299,5], -[0,-2634,-510,-11439,-11440], -[1,3,6301], -[0,0,0,6302,10], -[0,-475,-4004,-3634,-4215,-4041,-3095,-8223,-11441,-11442,-5196,-11443,-11444,-3100,-3577,-1415,-1412,-915,-8611,-6137], -[1,3,6304], -[0,6305,0,6306,4], -[0,-5,-11445,-3946,-807,-2387], -[0,-3158,-3099,-475,-3160,-3161,-3100], -[1,3,6308], -[0,6309,6310,6311,4], -[0,-1116,-2446,-2548,-7004,-1018,-1552], -[0,-664,-668,-1654,-2210,-3037], -[0,-1716,-11446,-11447,-1546,-11448], -[1,3,6313], -[0,0,6314,7,10], -[0,-664,-729,-1654,-1974,-2187,-2286], -[1,3,6316], -[0,6317,6318,6319,6], -[0,-812,-11449,-10659,-891,-11450,-11451,-1451,-11452,-1650,-6810,-1801,-2125,-11453,-2240], -[0,-510,-579,-11178,-615,-664,-665,-932,-940,-967,-1004,-1344,-1654,-11454,-1685,-1880,-1942,-2187,-2239], -[0,-1718,-891], -[1,3,6321], -[0,6322,6323,6324,6], -[0,-11455,-11456,-11457,-3035,-11458,-6192,-5113,-6535,-623,-11459,-668,-680,-695,-11460,-11461,-865,-888,-914,-1107, --1449,-1548,-1645,-1646,-1654,-11462,-1805,-1816,-8563,-2173,-2177,-11463,-2269,-2430,-2446], -[0,-99,-367,-3037,-427,-428,-749,-767,-932,-1344,-1392,-1442,-1534,-1656,-3038,-11464,-11465,-1663,-1722,-1788,-2006, --2019,-2125,-2184,-2379,-2384,-2648], -[0,-1719,-11466,-11467,-3634,-11468,-2734,-4867,-11469,-4866,-3095,-4868,-4004,-4865,-3162,-4043,-5769,-793,-1654,-4864], -[1,3,6326], -[0,6327,6328,6329,8], -[0,-4884,-357,-11470,-7755,-1851], -[0,-4888,-11471,-633,-1344,-1449,-11472,-1534,-1654,-11473,-1788,-1942,-1972,-11474,-11475], -[0,-4004,-3634,-8959,-4215,-2533,-3844], -[1,3,6331], -[0,6332,6333,7,4], -[0,-11476,-269,-1459], -[0,-1116,-1788,-664,-1415,-1654,-2210,-932,-2125,-1942,-1069,-838,-1972,-2211,-2410,-1771,-6522,-2174,-966,-964,-357,-958, --968,-940,-943,-3775], -[1,3,6335], -[0,0,6336,6337,11], -[0,-589,-596,-11477,-932,-1077,-2884,-1939,-2177], -[0,-11478,-11479,-6249,-5269,-596,-6251,-6252,-1696,-1723], -[1,3,6339], -[0,6340,6341,6342,4], -[0,-702], -[0,-1788,-1127,-1654,-2198,-756,-1132,-7845,-2410,-3037,-7887,-710,-11480,-9280,-1134,-1149,-11481,-11482], -[0,-3324,-6491,-8427,-3833,-6809,-10412,-11483,-3966,-1622,-7208], -[1,3,6344], -[0,0,6345,6346,4], -[0,-3037,-11484,-1077,-1344,-1654,-1788,-2125,-2410,-11485], -[0,-3966,-11486,-5574,-7534,-11487,-7371,-6974,-6582,-5847,-11488,-856], -[1,3,6348], -[0,6349,6350,6351,6], -[0,-808,-11489,-11490,-1097,-1646,-1737,-2114,-2177], -[0,-3037,-932,-958,-1344,-1534,-1942,-2319,-11491,-2363,-2379,-2410], -[0,-9427,-11492,-2295,-1673,-2490], -[1,3,6353], -[0,124,70,6354,11], -[0,-1727,-7421,-11070,-11493,-6656,-6235,-7547,-1076], -[1,3,6356], -[0,6357,6358,6359,4], -[0,-9154,-11494,-11495,-11496], -[0,-4646,-367,-3330,-427,-428,-3664,-7351,-774,-932,-7352,-954,-960,-961,-963,-965,-7353,-7354,-971,-979,-7355,-1344, --7356,-1498,-1534,-1608,-1609,-1768,-7357,-1942,-7358,-1945,-2091,-11497,-7359,-2391,-2410,-2469,-7360], -[0,-10838,-5493,-10841,-10840,-11498,-11499,-11500,-11501,-11502,-11503], -[1,3,6361], -[0,6362,6363,6364,4], -[0,-7026,-11504,-8966], -[0,-458,-5993,-649,-652,-664,-665,-11505,-9077,-756,-1069,-5989,-1654,-1828,-11506,-2384,-2541], -[0,-4213,-1334,-1961,-2105,-9172,-9173,-2533,-5388], -[1,3,6366], -[0,0,6367,6368,6], -[0,-633,-719,-767,-932,-11507,-1004,-1471,-1472,-1475,-1478,-1479,-1480,-1482,-1483,-1487,-1488,-1490,-11508,-1492,-1654, --1657,-11509,-1788,-6696,-2501,-2503,-11510], -[0,-11511,-11512,-11513,-11514,-770,-5374,-11515,-11516,-11517,-11518,-1334,-1342,-1616,-5150,-11519,-11520,-11521,-11522, --11523,-2191,-11524,-11525,-11526,-8905,-11527,-11528,-11529], -[1,3,6370], -[0,6371,6372,6373,9], -[0,-523,-812,-1548], -[0,-664,-1654,-1972,-2210], -[0,-3939,-5801,-5737,-5741,-5271,-11530,-11517,-11531,-1050,-5270,-491,-11532], -[1,3,6375], -[0,6376,6377,6378,9], -[0,-615,-1729], -[0,-664,-932,-1415,-2210], -[0,-11533,-11534,-11535,-3939,-11536,-11537,-11538,-11539,-11540], -[1,3,6380], -[0,6381,6382,6383,4], -[0,-5672,-11541,-1119,-10521,-1758,-1957,-2177,-2323,-2654,-2518], -[0,-596,-767,-932,-1654,-1696,-2884,-11542], -[0,-5269,-6249,-3551,-6251,-6252,-596,-6250], -[1,3,6385], -[0,6386,6387,6388,5], -[0,-780,-1297], -[0,-7177,-674,-767,-932,-11543,-1317,-11544,-11545,-11546,-6595,-11547,-1333,-11548,-11549,-1839,-2125,-10301,-2251,-2379, --2552], -[0,-3264,-3215,-3967,-2410], -[1,3,6390], -[0,6391,6392,6393,5], -[0,-510,-11550,-812,-1004,-1107,-1850,-2001,-2177,-2185,-11551,-11552,-11553,-2518,-2531,-2550], -[0,-664,-1077,-1380,-1452,-1654,-1764,-1961,-2125], -[0,-812,-7336,-6480,-6479], -[1,3,6395], -[0,6396,6397,6398,11], -[0,-459,-736,-828,-1072,-8438,-1636,-1640,-1840,-1997,-2401], -[0,-3035,-3621,-427,-428,-664,-932,-934,-940,-958,-1344,-1654,-1788,-1942,-2210,-2211,-2379,-2384,-2410], -[0,-4215,-8611,-10327,-3967,-3756,-3634,-4004,-1334,-11554], -[1,3,6400], -[0,6401,6402,6403,10], -[0,-11555,-1401,-2177,-11556,-2446,-2518], -[0,-749,-767,-932,-942,-943,-958,-966,-968,-1344,-1415,-1534,-11557,-1942,-2125], -[0,-11558,-11559,-9258,-11560,-9262,-6721,-11561,-11562,-4127], -[1,3,6405], -[0,6406,6407,6408,5], -[0,-579], -[0,-617,-1004,-1654,-2198,-2293], -[0,-1791,-11437], -[1,3,6410], -[0,89,56,57,8], -[1,3,6412], -[0,6413,6414,6415,8], -[0,-8612,-1650,-1708,-1758,-1769,-1778,-2001,-2125,-2177,-2323], -[0,-521,-1452,-1722,-2322], -[0,-5269,-6249,-3551,-6251,-6252,-596,-7304], -[1,3,6417], -[0,6418,6419,6420,4], -[0,-1723], -[0,-1654,-932,-11563,-1733,-767,-2410,-3037,-3621,-428,-427], -[0,-11564,-3975,-3974,-11565,-11566,-11567], -[1,3,6422], -[0,6423,0,6424,8], -[0,-11568,-11569,-11570,-11571,-579,-583,-754,-1004,-1077,-11572,-1758,-2177], -[0,-3496,-11532,-11573,-5411], -[1,3,6426], -[0,6427,6428,6429,10], -[0,-1696,-1088,-1107,-1630,-668,-1548,-1733,-1099,-11574,-769,-11575,-11576,-11577,-10521], -[0,-1788,-1654,-932,-2125,-1077,-11578], -[0,-775,-9264,-3277,-2162,-3754,-5553], -[1,3,6431], -[0,6432,6433,6434,4], -[0,-5414,-11579,-11580], -[0,-1788,-2322,-2210,-468,-932], -[0,-7046,-4107,-5418,-763,-11581,-10950], -[1,3,6436], -[0,6437,0,6438,4], -[0,-1813,-714,-1640], -[0,-1334,-5142,-6656,-3844], -[1,3,6440], -[0,0,6441,6442,5], -[0,-1788], -[0,-7230,-11582,-2446], -[1,3,6444], -[0,0,6445,6446,10], -[0,-1077,-1654], -[0,-11583,-2490,-11584], -[1,3,6448], -[0,6449,0,6450,8], -[0,-6597,-2550], -[0,-11585,-7084,-5196,-11586,-5545,-5389,-11587,-11588,-11589,-4107], -[1,3,6452], -[0,6453,6454,6455,4], -[0,-2534], -[0,-11590,-11591,-3037,-932,-1942,-1944,-2391,-2410,-3924,-2469], -[0,-11592,-3215,-4258,-2534,-11593], -[1,3,6457], -[0,6458,6459,6460,11], -[0,-1285,-1391], -[0,-5834,-515,-932,-1365,-7393,-1777,-1788,-1797,-2156,-2322], -[0,-1015,-11594,-11595,-702,-6351,-11596], -[1,3,6462], -[0,6463,6464,6465,5], -[0,-1116,-1696,-1460,-1993,-1548,-2324,-1077,-1733,-1740], -[0,-2487,-1654,-1452,-521,-674,-11597,-1405,-526,-756,-1440,-11598,-7382,-559], -[0,-11599,-11600,-5889,-5269], -[1,3,6467], -[0,0,6468,6469,6], -[0,-11601,-648,-652,-932,-940,-1110,-11602,-11603,-11604,-11605,-1942,-1971,-11606,-7932], -[0,-11607], -[1,3,6471], -[0,6472,6473,6474,5], -[0,-679,-812,-5911,-1645,-11608,-2177,-7741,-2297,-2363,-11609], -[0,-86,-3307,-510,-710,-932,-1344,-1654,-1788,-1972,-2174,-2198], -[0,-687,-1673,-1673,-3113,-9427,-11610,-11492,-3974], -[1,3,6476], -[0,6477,0,7,5], -[0,-888,-2319], -[1,3,6479], -[0,6480,6481,6482,4], -[0,-2125,-867,-11611,-2550,-2177], -[0,-2105,-2322], -[0,-11612,-11613,-7856,-11321,-9668], -[1,3,6484], -[0,6485,0,6486,5], -[0,-7603,-469,-470,-8547,-5329,-473,-11614,-523,-617,-679,-744,-754,-792,-1004,-4206,-11615,-11616,-1107,-1299,-11617, --11618,-1460,-11619,-1465,-11620,-1581,-5460,-11621,-1671,-1680,-1707,-7045,-11622,-1752,-1805,-1857,-11623,-2071,-11492, --2107,-11624,-11625,-2520,-3730,-2548,-2550], -[0,-11626,-1756,-3214,-3967,-3161,-3445,-3100,-5407,-11627,-11628,-11629,-11630,-4055,-11631,-4058,-1460,-2548,-3994, --11632], -[1,3,6488], -[0,6489,83,6490,4], -[0,-2424,-668], -[0,-7303,-11633,-4376,-6792,-3215], -[1,3,6492], -[0,6493,29,7,5], -[0,-9632], -[1,3,6495], -[0,0,6496,6497,8], -[0,-1202,-1646,-1654], -[0,-11634,-11635,-11636,-6656,-11637,-7693,-7839,-11638,-11639,-1076,-6811,-1847,-9358,-6517,-2218,-11640,-11641,-11642, --11643], -[1,3,6499], -[0,0,14,6500,4], -[0,-6811,-2435,-9171,-6558,-2265,-11644,-11645,-5101,-1985,-11646,-6817,-11647,-11648], -[1,3,6502], -[0,0,0,6503,5], -[0,-11649,-11644,-4865], -[1,3,6505], -[0,6506,6507,6508,4], -[0,-668,-6793,-700,-755,-824,-2762,-930,-999,-11650,-11651,-1315,-6770,-1363,-1376,-1394,-11652,-11653,-11654,-1535, --11655,-1574,-1630,-11656,-11657,-9050,-1805,-11658,-10270,-1849,-3609,-2060,-2153,-2177,-5746,-3669,-2433], -[0,-9154,-3199,-519,-722,-9982,-1077,-11659,-2210,-2269,-2331,-11660,-2541], -[0,-5732,-687,-1764,-8403,-5889,-5737,-9318,-6453,-5890], -[1,3,6510], -[0,6511,6512,6513,4], -[0,-1681,-1371,-2323,-1107,-1758,-2059,-2247,-11661,-668,-1826,-2518,-9632,-1831,-2177,-4287,-680,-11662,-9084,-1733, --1957,-11663,-1645,-4296,-4279,-1527,-1528,-1529,-11664,-11665,-2343,-11666,-1119,-11667,-10513,-11668,-11669,-10517, --11670,-11671,-4285,-2297,-1315,-1767,-1982,-280,-11672,-10520,-10521,-11673,-4291,-11674,-283,-4290,-1770,-11675,-11676, --4292,-4283,-4306,-8266,-281,-2450,-4281, --4278,-11677], -[0,-469,-2319,-834,-1722,-4307,-2093,-2125,-695,-2095,-11678,-470,-11679,-1769,-4655,-11680,-11681,-4300,-4298,-4299, --11682], -[0,-1380,-3209,-11683,-10484], -[1,3,6515], -[0,6516,6517,6518,4], -[0,-705,-1816,-1630,-668,-999,-1392,-2546,-11684,-1111,-1548,-2177,-11685,-1871,-827,-1376,-1645,-1728,-2269,-2343,-1849, --11686,-5895,-11687,-6197,-11688,-2433,-11689], -[0,-2541,-526,-567,-559,-555,-551], -[0,-1764,-11690,-3015,-7441,-5887,-7440,-11691,-3690,-9845,-687,-9594,-11692,-11693,-7856,-3016], -[1,3,6520], -[0,0,6521,6522,4], -[0,-11694,-7057,-3035,-4269,-11695,-11696,-5361,-11697,-3660,-11698,-3044,-3621,-3037,-11699,-11700,-8523,-3624,-3735, --3199,-11701,-4372,-11702,-427,-428,-656,-664,-665,-9077,-668,-695,-719,-767,-8609,-932,-940,-11703,-943,-958,-960,-965, --968,-1026,-10960,-1047,-11704,-1315,-1371,-1442,-1461,-11705,-1547,-1548,-1609,-1654,-1770,-1771,-1826,-5883,-1864, --1942,-1959,-11706,-11689, --2124,-2125,-5405,-2177,-11707,-2198,-2210,-2234,-7744,-2269,-2379,-2410,-11708,-2430,-2433,-11709,-2466,-11710,-11711, --6859,-2552], -[0,-3015,-1764,-10484,-10674,-11712,-11713], -[1,3,6524], -[0,6525,29,7,5], -[0,-1315,-1957,-2177,-2450], -[1,3,6527], -[0,6528,6529,6530,6], -[0,-469,-3907,-668,-755,-812,-1111,-1353,-1395,-1461,-1574,-1630,-1877,-2177,-2218,-2271,-2400,-2450], -[0,-3136,-3037,-427,-428,-928,-11714,-932,-11715,-11716,-954,-958,-959,-967,-978,-1040,-1415,-7357,-11717,-1942,-2375, --2410], -[0,-7148,-8170,-10484,-5879,-11718,-1768], -[1,3,6532], -[0,6533,6534,7,8], -[0,-6770,-1957], -[0,-280,-4298,-4300,-11719,-2319], -[1,3,6536], -[0,6537,6538,6539,10], -[0,-4285,-10335,-10521,-9084,-11720,-11721,-1767,-1957], -[0,-4298,-4300,-4287,-1722,-11542,-2247,-2319], -[0,-1764,-11722,-4213], -[1,3,6541], -[0,6542,6543,233,4], -[0,-668,-11084,-2060,-1645,-482,-769,-2194,-1627,-11723], -[0,-1788,-2552,-1654,-932,-2125,-708,-1827,-1077,-3037,-1938,-566,-11724,-6018,-545], -[1,3,6545], -[0,6546,6547,233,11], -[0,-2518,-11084,-1864,-482,-769,-2194,-1627,-11728], -[0,-652,-1498,-2552,-1446,-1654,-932,-9774,-2884,-516,-3781], -[1,3,6549], -[0,6550,14,6551,5], -[0,-7087,-8803], -[0,-1764,-11727,-1847,-5897,-8425,-7304,-8426,-11729,-687,-3958,-7096,-7237], -[1,3,6553], -[0,0,6554,6555,5], -[0,-3136,-3037,-427,-428,-3267,-932,-940,-1415,-1534,-10652,-2125,-2127,-2375,-2410], -[0,-11730,-856,-11731], -[1,3,6557], -[0,6558,6559,6560,4], -[0,-668,-691,-719,-812,-1376,-1965], -[0,-664,-1654,-1663,-2250], -[0,-7865,-1764,-11732], -[1,3,6562], -[0,6563,6564,6565,6], -[0,-1376,-1993], -[0,-526,-541,-551,-11733,-566,-1771], -[0,-1764,-687,-7095,-3957,-9408,-4043,-9845,-1776,-11734], -[1,3,6567], -[0,6568,6569,6570,6], -[0,-1285,-1646], -[0,-5834,-516,-5835,-932,-1365,-1431,-1788,-2156,-2322], -[0,-1777,-9100], -[1,3,6572], -[0,6573,6574,7,6], -[0,-4700,-10515,-11735,-4716], -[0,-2319,-4300,-4298], -[1,3,6576], -[0,0,6577,7,4], -[0,-664,-1437,-1449,-1654,-11736], -[1,3,6579], -[0,6580,6581,6582,4], -[0,-668,-694,-11737,-1343,-1376,-11738,-2177,-9564,-2550], -[0,-619,-707,-8326,-1277,-1510,-1658], -[0,-7107,-1780,-8327], -[1,3,6584], -[0,6585,6586,6587,5], -[0,-11739], -[0,-3136,-3037,-427,-428,-749,-932,-940,-967,-1344,-1415,-1942,-1952,-2125,-2375,-2379,-2410], -[0,-1781,-11740,-687,-3578,-3871,-7864,-2006,-3966,-2410,-3214,-2501,-1415,-3100,-3445,-5407], -[1,3,6589], -[0,0,6590,6591,6], -[0,-664,-1138,-1146,-1155,-1156,-9545,-1471,-1474,-1475,-1479,-1482,-1483,-1488,-1542,-1654], -[0,-1782,-6240,-3276,-4123,-11741,-11742], -[1,3,6593], -[0,6594,6595,6596,5], -[0,-11743,-11744,-719], -[0,-21,-23,-40,-43,-534,-539,-541,-729,-753,-767,-932,-934,-958,-1004,-1077,-1098,-11745,-11746,-11747,-11748,-1788,-1860, --2187,-2416,-2417,-2501], -[0,-3110,-7651], -[1,3,6598], -[0,0,0,6599,5], -[0,-8427,-3966], -[1,3,6601], -[0,0,6602,6603,10], -[0,-2832,-5834,-8084,-8096,-516,-652,-5835,-932,-1431,-1365,-1777,-2156,-2322], -[0,-1784,-1785,-5874], -[1,3,6605], -[0,0,0,6606,10], -[0,-775,-5180,-11749,-5912,-3585], -[1,3,6608], -[0,6609,0,6610,4], -[0,-888,-1816,-2359,-1055,-1805,-2548,-523,-701,-2387,-2550,-865,-1353,-2177,-1040,-910,-1418,-1645,-2369,-690,-1863, --2325,-692,-1075,-1461,-1773,-2267,-2551,-866,-2383,-11750,-11751,-11752,-4341,-10789,-11753,-11754], -[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340,-4347,-4343,-4344,-11755], -[1,3,6612], -[0,6613,6614,6615,4], -[0,-6028,-4003,-11756,-742,-813,-1046,-1047,-6475,-1097,-1107,-5086,-11757,-6029,-11758,-5087,-5088,-5089,-1591,-11759, --1826,-11760,-2115,-2125,-2202,-11761,-6030,-2550], -[0,-11762,-5607,-2111,-2234,-2250,-2251,-2319,-2446,-2518], -[0,-4005,-6863,-8422,-3634], -[1,3,6617], -[0,6618,6619,6620,5], -[0,-11763,-4049,-3424,-11619,-10873,-5969,-5263,-1851,-11764], -[0,-11765,-11766,-11767,-3037,-2391,-2410,-2469], -[0,-3690,-11768,-3438,-11769,-11770,-11771,-11772,-11773,-1789,-489,-11148,-856], -[1,3,6622], -[0,6623,6624,6625,4], -[0,-11763,-11774,-1442,-5263,-3792], -[0,-11765,-3660,-11775,-1722,-2391,-2410,-2469], -[0,-3690,-489,-11768,-856,-11148,-11773,-1789,-3438,-11772,-11769,-11771,-11770,-11410,-4847], -[1,3,6627], -[0,0,84,7,8], -[1,3,6629], -[0,0,6630,6631,5], -[0,-2541,-519,-1548,-1612], -[0,-7208,-7370,-1015,-3589,-4795,-3217,-3207,-6989,-11776,-3582,-5396,-4865], -[1,3,6633], -[0,0,6634,6635,4], -[0,-633,-1168,-1177,-11117,-11777,-1220,-1224,-1231,-1243,-1244,-1262,-1452,-1453,-1471,-1475,-1482,-1654], -[0,-7208,-6131,-2191,-1616], -[1,3,6637], -[0,0,6638,6639,6], -[0,-5834,-11778,-516,-753,-11779,-921,-932,-1065,-1083,-1107,-11780,-1283,-11781,-1365,-1408,-8082,-1659,-1777,-1788, --2156,-9786,-2177,-8310,-2322], -[0,-4676,-11782,-7208,-6231,-3240], -[1,3,6641], -[0,0,6642,6643,4], -[0,-5834,-8487,-932,-6283,-11783,-1391,-2322], -[0,-11784,-7373,-6947,-5396], -[1,3,6645], -[0,0,6646,6647,8], -[0,-1788,-664,-1654,-756,-1657,-11785], -[0,-6545,-1847,-11786,-11787,-9052,-7153,-864,-7375,-7208,-7369,-11788,-11789,-5846,-8893,-7372], -[1,3,6649], -[0,6650,6651,6652,6], -[0,-655,-6511,-5830,-11790,-1283,-1795], -[0,-5833,-5834,-633,-932,-1065,-1083,-5836,-1285,-1659,-1777,-1788,-2156,-5942,-2322], -[0,-11791,-7370,-6948,-1015,-11792,-11594,-11793,-11794,-5843,-3582,-5396], -[1,3,6654], -[0,6655,6656,6657,6], -[0,-655,-6511,-5830,-11790], -[0,-5833,-5834,-8569,-516,-5835,-932,-1083,-5836,-1365,-1777,-1788,-2156,-2322], -[0,-11795,-11796,-11784,-11797,-7374,-6949,-11798,-6952,-5396,-7208,-7373,-3582,-5843], -[1,3,6659], -[0,6660,6661,7,9], -[0,-11799], -[0,-1788,-1654,-932,-966,-958,-968,-943,-963,-974], -[1,3,6663], -[0,6664,71,6665,4], -[0,-11800], -[0,-1801,-5924,-6812,-6814], -[1,3,6667], -[0,6668,6669,6670,4], -[0,-11801,-11802,-502,-679,-769,-1353,-2369], -[0,-7080,-3037,-1344,-1534,-1942,-2125,-2410], -[0,-1107,-2490,-5888], -[1,3,6672], -[0,6673,6674,6675,5], -[0,-11803,-1553], -[0,-3621,-11804,-708,-1452,-1654,-1658,-1660,-1788,-2379,-2410], -[0,-11805,-11573,-11806,-11807,-11808,-10226,-11809,-11810,-11811,-9261], -[1,3,6677], -[0,6678,115,234,5], -[0,-11812,-11813,-11814,-9981,-6756,-11815], -[1,3,6680], -[0,6681,6682,6683,5], -[0,-1043,-1099,-1630,-1805,-2331], -[0,-519,-999,-2541], -[0,-5732,-687,-3994,-1805,-1810,-11816,-11817,-11818,-11819,-11820,-11821,-7095,-4865,-3496,-7237,-7863,-2435,-11822, --7303,-7091,-8421,-6599,-1958,-3258,-6656], -[1,3,6685], -[0,6686,6687,6688,6], -[0,-11823,-11824,-5263], -[0,-3136,-3660,-4049,-523,-11825,-1415,-1456,-11826,-1683,-1942,-2234,-2375,-2379,-2410], -[0,-3438,-4847,-3323,-523,-3100,-4865,-4215,-2410], -[1,3,6690], -[0,6691,6692,6693,5], -[0,-813,-1326,-1459,-1600,-1967,-2006,-2019,-2451], -[0,-32,-204,-526,-552,-9968,-756,-932,-933,-934,-958,-962,-968,-969,-1108,-1320,-1415,-1753,-1771,-2105,-2106,-5331], -[0,-4847,-3438,-11827,-3264,-856,-3262], -[1,3,6695], -[0,6696,6697,6698,11], -[0,-6280,-1696], -[0,-1107,-2105,-2322], -[0,-1809,-11828,-9565,-11829], -[1,3,6700], -[0,0,38,7,6], -[1,3,6702], -[0,6703,6704,7,8], -[0,-11830,-2105], -[0,-526,-559,-932,-933,-958,-962,-969], -[1,3,6706], -[0,6707,55,234,9], -[0,-1401], -[1,3,6709], -[0,6710,6711,235,4], -[0,-2525,-1646], -[0,-11831,-2319], -[1,3,6713], -[0,6714,6715,6716,8], -[0,-784,-11832,-1889], -[0,-527,-533,-551,-556,-558,-778,-1415,-2275,-2501], -[0,-7198,-10435,-1017,-7173,-7175,-6694,-2501], -[1,3,6718], -[0,6719,6720,6721,11], -[0,-11833,-11834,-2524,-8437,-11835,-10579], -[0,-11836,-1654], -[0,-6792,-5272,-11837,-687], -[1,3,6723], -[0,6724,6725,6726,8], -[0,-668,-690,-692,-11652,-6861,-1574,-11838,-2267], -[0,-3037,-519,-1100,-11839,-2384,-2541], -[0,-687,-6716,-6717,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], -[1,3,6728], -[0,6729,6730,6731,10], -[0,-908,-11840,-11841], -[0,-994,-1262,-1452,-1597,-1632,-1654,-1980,-2198,-2462], -[0,-510,-4107,-5921,-10462], -[1,3,6733], -[0,6734,6735,6736,11], -[0,-510,-615,-7840,-10358,-1548,-1850,-11842,-11843], -[0,-652,-668,-1107,-1654,-1671,-1691,-1857,-2177,-2198,-2210,-2245], -[0,-1818,-11221,-7685,-1691,-10425,-11844,-3742,-1671], -[1,3,6738], -[0,0,0,6739,4], -[0,-3966,-1819,-3103,-3551], -[1,3,6741], -[0,6742,71,6743,6], -[0,-8383,-10383], -[0,-5558,-3833,-11845,-11846,-1847,-1965,-11847], -[1,3,6745], -[0,0,6746,6747,4], -[0,-3035,-3048,-3621,-3037,-3046,-10755,-664,-999,-1077,-1654,-1763,-2379,-2501,-2518], -[0,-3184,-4795,-11848,-11849,-7728,-2265,-3110,-6806], -[1,3,6749], -[0,0,0,6750,5], -[0,-1823,-3586,-11850,-11851,-11852,-11853,-3100,-4865], -[1,3,6752], -[0,6753,6754,6755,5], -[0,-11854,-719,-1063,-1392,-1526,-2177,-2359,-11855], -[0,-3244,-190,-3748,-4200,-11856,-3037,-3199,-3628,-11857,-427,-428,-932,-11858,-2125,-2410], -[0,-687,-11859,-8109,-8403], -[1,3,6757], -[0,6758,6759,6760,5], -[0,-1828], -[0,-3037,-519,-826,-2384,-2541], -[0,-1961,-997,-5389,-6820,-8397,-10670,-6821,-8401,-6822,-8124,-11860,-11861,-4116,-11862,-8402,-4865,-5092,-510,-5867, --5923,-615], -[1,3,6762], -[0,0,6763,6764,5], -[0,-519,-668,-826,-7426,-7424,-7427,-2384,-2541], -[0,-1961,-6917,-11863,-4116,-7558,-9029,-9027,-11864,-11865,-510,-5867,-5923,-726,-11866,-5921,-615], -[1,3,6766], -[0,6767,6768,6769,4], -[0,-996,-1828], -[0,-5918,-3268,-3037,-589,-825,-826,-7426,-7963,-7424,-7427,-2384,-2392,-2410,-2541], -[0,-1961,-1986,-11450,-6729,-7331,-11866,-7329,-11685,-7333,-7334,-11867,-11038,-11033,-11868,-5418,-4107,-510,-5867, --5923,-615], -[1,3,6771], -[0,0,6772,6773,11], -[0,-519,-826,-7426,-9161,-2210,-7427,-2384,-2541], -[0,-1961,-7430,-6324,-11869,-510,-5867,-5923,-4123,-11870,-5391,-615], -[1,3,6775], -[0,6776,6777,6778,4], -[0,-1107], -[0,-1415,-1942,-4701], -[0,-856,-2299,-11871,-11872], -[1,3,6780], -[0,6781,6782,6783,5], -[0,-11873,-522,-594,-719,-914,-1496,-1689,-1750,-1978,-2177], -[0,-652,-932,-11874,-1654,-11875,-4654,-2210], -[0,-4665,-4666,-10432,-11876,-5879,-4864,-5986,-522,-7144,-687,-11877,-11878,-11879,-10770,-1830,-1978,-9246,-11880,-3634, --2451,-11881], -[1,3,6785], -[0,6786,6787,6788,4], -[0,-11678,-4280,-4283,-4306,-283,-4287,-11666,-9084,-1767,-1769,-4291,-1770,-1957,-10592,-11882,-2247,-2323], -[0,-280,-4298,-4300,-1315,-11719,-1722,-11883,-2125,-2319], -[0,-7442,-1764,-5889], -[1,3,6790], -[0,6791,6792,6793,8], -[0,-9491,-9492,-11884,-807,-7731,-11885,-1548,-1574,-1591,-1826,-1877,-2400,-11886], -[0,-5918,-5033,-3044,-3037,-11887,-743,-825,-1043,-1098,-9810,-1849,-11888,-2392,-2410,-2541], -[0,-11889,-3258,-9204,-3578,-2435,-9804,-8799,-9711,-11890,-11891,-5566,-4045,-9552,-3576,-7419,-1978,-10366,-6527,-3839, --7650,-3264,-11878,-9712,-8633,-8634,-7715,-8640,-9235], -[1,3,6795], -[0,0,6796,6797,4], -[0,-3037,-3664,-6593,-7653,-7654,-932,-958,-960,-1449,-2410,-2466,-2469], -[0,-3100,-3445,-3261,-3098,-3160,-6107,-9975,-9612,-11074], -[1,3,6799], -[0,0,6800,6801,11], -[0,-40,-3326,-350,-351,-932,-1103,-1654,-1687,-10835,-1788,-2127,-2140,-2195], -[0,-9506,-6827,-10350,-6826], -[1,3,6803], -[0,6804,38,6805,6], -[0,-11064,-668,-6842,-1000,-1039,-1099,-1111,-1333,-1465,-1630,-1641,-1836,-2114,-11892,-2433,-2551], -[0,-11893,-3445,-687,-10810,-3690], -[1,3,6807], -[0,6808,6809,6810,5], -[0,-11197,-1582,-2291], -[0,-190,-865,-932,-940,-958,-965,-967,-968,-1110,-1548,-1654,-1942,-2340,-2892,-2410], -[0,-11893,-3323,-4725,-11894,-3844,-3445,-3690,-3691,-4055], -[1,3,6812], -[0,0,6813,6814,6], -[0,-615,-664,-710,-1654], -[0,-5921,-5550], -[1,3,6816], -[0,6817,6818,6819,9], -[0,-44,-3345,-772,-11895,-11896,-2531], -[0,-23,-26,-38,-40,-41,-42,-190,-3266,-11897,-3470,-7040,-3471,-3472,-7041,-7042,-11898,-533,-8580,-11899,-708,-753,-767, --932,-8147,-960,-1004,-1168,-1174,-1268,-1412,-10034,-11900,-1415,-1419,-1446,-11901,-1534,-4375,-3156,-11220,-11902, --1978,-2082,-2174,-2411,-2466,-11903,-10092], -[0,-5801,-3162,-3690], -[1,3,6821], -[0,6822,0,6823,5], -[0,-3223], -[0,-3264,-3215,-5177,-11904,-4681,-5922,-11905,-11906,-6595,-1839,-4142,-11907,-11908,-1838,-6233], -[1,3,6825], -[0,0,6826,7,6], -[0,-1654,-932,-1405,-589,-11909,-585,-966,-958,-968,-943,-974], -[1,3,6828], -[0,6829,6830,6831,10], -[0,-11910,-2445,-1846], -[0,-664,-1654,-1592,-1972,-666,-11911], -[0,-1004,-729,-6120,-8449,-3173], -[1,3,6833], -[0,6834,6835,6836,8], -[0,-1845], -[0,-1592,-1654,-664,-666], -[0,-1841,-4038,-6120,-8449,-3173,-9795], -[1,3,6838], -[0,6839,236,6840,4], -[0,-1846], -[0,-1841,-8427,-6120,-8449,-3173,-11912,-5110], -[1,3,6842], -[0,6843,236,237,8], -[0,-11913,-1845], -[1,3,6845], -[0,6846,6847,237,5], -[0,-11914,-1791,-1846,-10686,-2445], -[0,-1592,-1654,-664,-1972,-666], -[1,3,6849], -[0,0,114,6850,4], -[0,-1841,-6539], -[1,3,6852], -[0,6853,0,6854,5], -[0,-1958,-2444], -[0,-11153,-1847], -[1,3,6856], -[0,0,31,6857,8], -[0,-4865,-633,-1847], -[1,3,6859], -[0,0,238,6860,5], -[0,-1847,-6788,-11915,-6656,-7693,-1076,-7422,-7000,-11786,-9330], -[1,3,6862], -[0,0,118,6863,4], -[0,-1847,-9098,-6656,-11070,-11634,-11916,-11917,-6441,-2444,-5260,-3103,-6989,-3582,-5396,-1391,-6659,-7440], -[1,3,6865], -[0,0,6866,6867,8], -[0,-6918,-5295,-3037,-3199,-3664,-10880,-2214,-2410,-2469], -[0,-1004,-5570,-10470,-9843], -[1,3,6869], -[0,0,6870,7,5], -[0,-3037,-3664,-672,-928,-932,-944,-1431,-1942,-2410,-2423,-2469,-11918], -[1,3,6872], -[0,6873,6874,57,4], -[0,-1406,-1460,-7885], -[0,-1078,-1654,-1941], -[1,3,6876], -[0,6877,6878,6879,4], -[0,-11919,-11920,-1834,-2062,-9789,-2446], -[0,-3037,-640,-997,-1942,-2322,-2410], -[0,-6528,-3262], -[1,3,6881], -[0,6882,6883,6884,10], -[0,-772,-4702,-11921,-11922,-11923], -[0,-23,-3840,-40,-190,-3326,-533,-11924,-11925,-627,-633,-659,-709,-932,-1103,-1110,-1415,-1419,-4981,-1599,-11926,-1942, --1974,-2127,-4063], -[0,-6528,-11927,-11928,-6524,-10855,-9472], -[1,3,6886], -[0,0,6887,7,4], -[0,-615,-11929,-664,-11930,-710,-1654,-1939], -[1,3,6889], -[0,6890,6891,6892,4], -[0,-10416,-11931,-11932,-11933,-11934,-11935], -[0,-11936,-11937,-510,-615,-705,-11938,-2410,-2469,-9667], -[0,-7685,-11939,-1857,-11940,-10425,-6321,-11941], -[1,3,6894], -[0,6895,6896,6897,5], -[0,-1860,-2239,-2520], -[0,-526,-527,-528,-556,-558,-559,-6089,-932,-934,-956,-958,-1059,-11942,-1415,-1417,-11943,-9913,-2125], -[0,-1858,-1859,-9879], -[1,3,6899], -[0,6900,6901,239,11], -[0,-1018,-1077,-7234,-9423,-1959,-2105,-7241,-2518], -[0,-932,-1754], -[1,3,6903], -[0,6904,6905,239,5], -[0,-925,-1018,-1077,-7234,-9423,-1959,-2105,-7241,-2518], -[0,-932,-1754,-4881], -[1,3,6907], -[0,6908,6909,6910,5], -[0,-501,-714,-728,-11944,-752,-9012,-1412,-1646,-1810,-1812,-3547,-11945,-1878,-1965,-1982,-2105,-2195,-2433], -[0,-7672,-932,-942,-943,-958,-966,-968,-974,-1405], -[0,-687,-752,-1861,-11946,-11947], -[1,3,6912], -[0,0,70,7,11], -[1,3,6914], -[0,0,0,6915,8], -[0,-3974,-714,-5538,-687,-4000], -[1,3,6917], -[0,0,6918,6919,5], -[0,-932,-10999,-1202,-1654,-1788], -[0,-1107,-5572,-1864], -[0,44,15,16,8], -[1,3,6922], -[0,0,6923,6924,9], -[0,-519,-11948,-2384,-11135,-2541], -[0,-8124,-5865,-1961,-5923,-11949,-5500,-3966,-11301,-11300,-5845,-6408,-4001,-8911,-6509,-510,-5867,-4795,-615], -[1,3,6926], -[0,6927,6928,6929,10], -[0,-11950,-11951,-11952,-11953,-8543,-11954,-11955,-7967,-11956,-11957,-11958], -[0,-2832,-11419,-11959,-3037,-468,-11960,-2917,-648,-812,-2758,-932,-958,-965,-966,-968,-999,-11961,-11962,-1362,-1415, --1573,-1577,-11963,-2884,-11964,-1939,-1972,-1976,-2125,-2177,-2240,-11965,-2269,-2322,-2347,-2379,-2384,-2410,-2520], -[0,-5922,-3444,-5827,-4055], -[1,3,6931], -[0,0,6932,6933,4], -[0,-932,-940,-8177,-966,-967,-1344,-1415,-1942,-2331], -[0,-1764,-11966,-11967,-7646,-11968], -[1,3,6935], -[0,6936,6937,6938,5], -[0,-1880], -[0,-932,-10497,-2410], -[0,-6527,-10588,-834], -[1,3,6940], -[0,6941,6942,6943,6], -[0,-8341], -[0,-2541,-519,-2384,-2331], -[0,-5897,-4055,-5756,-1764,-11969,-5573,-8804,-1047,-5504,-8805,-8806,-6656,-7282,-5572,-2114,-8807,-6370,-7420,-7421, --2487,-8808,-1847], -[1,3,6945], -[0,175,14,6946,5], -[0,-7861,-5897,-6656,-5573,-8804,-1047,-5504,-8805,-8806,-7282,-5572,-2114,-8807,-6370,-7420,-7421,-2487,-8808,-1847], -[1,3,6948], -[0,0,84,6949,5], -[0,-8041,-3674,-10484], -[1,3,6951], -[0,6952,0,7,5], -[0,-3982], -[1,3,6954], -[0,6955,6956,6957,11], -[0,-4733,-578,-2538], -[0,-633,-1654,-6810,-2568], -[0,-5736,-4865,-8995,-1875,-3215,-6597], -[1,3,6959], -[0,6960,6961,6962,4], -[0,-479], -[0,-932,-937,-966,-1001,-1654,-1788,-2410], -[0,-6324,-3862,-1266], -[1,3,6964], -[0,6965,14,6966,8], -[0,-11970], -[0,-9757,-11971,-1878,-9756,-11972,-10781,-2265,-11973,-11974,-11975], -[1,3,6968], -[0,0,6969,6970,9], -[0,-664,-1405,-1654,-2176], -[0,-9757,-11971,-1878,-9756,-9763,-1369], -[1,3,6972], -[0,6973,70,6974,8], -[0,-11976,-11977,-11978,-11979,-483,-510,-11980,-679,-11981,-719,-764,-809,-812,-910,-995,-11982,-1650,-1708,-11983, --11984,-11985,-11986,-11987,-3968,-2177,-2234,-2243,-11988,-1442], -[0,-687,-8947,-8948,-3674,-1879,-11989,-1573,-4055,-1004,-1277,-11990,-11492,-11991,-11992,-11993,-11994,-11995,-11996, --11997,-9466,-11998,-11148,-5731,-3207,-11999,-12000,-12001,-12002,-12003,-8901,-8902,-11586,-2295,-12004,-1753,-12005, --7662,-12006,-11230,-12001,-12007,-1066,-11429,-12008,-5805,-11486,-8944,-12009,-12010,-12011,-12012,-9844,-7606,-763, --8904,-12013], -[1,3,6976], -[0,0,6977,6978,4], -[0,-633,-641,-729,-932,-940,-1788,-1942,-1978,-2187,-12014,-2322], -[0,-12015,-6116,-6117,-12016,-12017,-3215,-7715,-11923,-12018,-1880], -[1,3,6980], -[0,6981,6982,6983,9], -[0,-2381], -[0,-909,-1415,-1421,-1425,-2231], -[0,-2501,-2552,-10054,-10055], -[1,3,6985], -[0,0,0,6986,4], -[0,-1882,-12019,-3015,-12020,-11037,-5922,-12021,-1380,-7856,-10606,-5880,-3209,-10440,-10527,-1764,-11683,-10484,-7442, --12022,-12023,-6694,-5881,-12024,-12025,-10444], -[1,3,6988], -[0,241,6989,6990,5], -[0,-2334,-2379,-2410], -[0,-12026,-12027,-12028,-12029,-12030,-12031,-12032,-12033,-3690,-12034,-12035,-12036,-12037,-3445,-3100,-2410], -[1,3,6992], -[0,39,6993,6994,4], -[0,-21,-23,-32,-38,-39,-40,-6056,-3326,-351,-3561,-528,-533,-535,-12038,-767,-796,-856,-932,-934,-958,-1059,-11942,-1344, --1415,-1534,-11943,-1942,-12039,-1993,-2127,-2139,-2140,-2174,-2200,-12040,-2410,-2449], -[0,-2278,-1885,-906,-12041,-3771,-12042,-2006,-5411,-2410,-12043,-12044,-12045,-712,-5535], -[1,3,6996], -[0,0,6997,6998,5], -[0,-12046,-12047,-12048,-12049,-932,-12050,-2410], -[0,-12051,-3095,-7582,-3821,-3822,-12052,-12053], -[1,3,7000], -[0,7001,7002,7003,6], -[0,-510,-812], -[0,-1415], -[0,-1334,-12054,-8113], -[1,3,7005], -[0,7006,0,7007,8], -[0,-1699,-1863,-2232], -[0,-775,-1889,-9336,-3277,-3215,-12055,-6408,-12056,-3186], -[1,3,7009], -[0,7010,7011,7012,8], -[0,-1931,-1934], -[0,-3037,-932,-940,-12057,-1889,-1942,-2410], -[0,-775,-1889,-3583,-12058,-12059], -[1,3,7014], -[0,7015,7016,7017,4], -[0,-679,-3227,-1077,-1863,-1907,-12060,-6467,-12061,-2218,-2654,-2550], -[0,-519,-652,-756,-932,-12062,-1110,-1889,-1906,-1942,-2289,-2446], -[0,-687,-1889,-9300], -[1,3,7019], -[0,7020,0,7021,6], -[0,-2953,-93,-94,-97,-12063], -[0,-712,-12064,-775,-3099,-5112,-12065,-12066,-12067,-11788,-1889,-3583,-5549,-12068,-7451,-4132], -[1,3,7023], -[0,7024,7025,7026,6], -[0,-635,-12069,-2840,-1934], -[0,-12070,-1889], -[0,-712,-714,-724,-775,-1644,-1889,-3583], -[1,3,7028], -[0,242,22,7029,9], -[0,-775,-7193,-1889,-3583], -[1,3,7031], -[0,7032,7033,7034,5], -[0,-518,-12069,-668,-12071,-12072,-1889,-12073,-12074,-1890,-12075,-12076,-12077,-12078,-12079,-12080,-12081,-12082,-1896, --1897,-1898,-12083,-12084,-12085,-12086,-12087,-1917,-12088,-12089,-12090,-12091,-12092], -[0,-526,-527,-534,-558,-560,-565,-8161,-682,-778,-12093,-12094,-12095,-12096,-12097,-932,-12098,-949,-969,-1017,-1041, --1304,-12099,-1442,-1455,-1600,-12100,-1633,-12101,-12102,-12103,-12104,-12105,-12106,-12107,-12108,-12109,-11748,-1762, --12110,-1792,-1812,-12111,-1906,-1908,-12060,-7033,-1967,-2006,-2019,-12112,-2125,-2269,-2275,-2322,-12113,-2501,-2505, --12114], -[0,-1889,-3583,-775,-5387,-12115], -[1,3,7036], -[0,7037,0,7038,5], -[0,-12116,-93,-94,-95], -[0,-12117,-12118,-775,-12119,-3586,-12120,-1889,-3583,-12121,-5101,-4681,-5387], -[1,3,7040], -[0,7041,0,7042,4], -[0,-12116,-93,-94,-12063,-1934], -[0,-775,-12119,-3586,-3587,-1889,-3583,-3589,-4681,-3591,-3592,-5387], -[1,3,7044], -[0,7045,0,7046,4], -[0,-12116,-93,-94,-1931], -[0,-12117,-12118,-775,-12119,-3586,-12122,-8109,-1889,-3583,-11315,-12123,-4681,-5387], -[1,3,7048], -[0,90,7049,7050,6], -[0,-1889,-1930,-10815], -[0,-775,-3485,-1889,-3583], -[1,3,7052], -[0,0,22,7053,9], -[0,-775,-816,-7192,-1889,-3583], -[1,3,7055], -[0,0,22,7056,4], -[0,-6454,-775,-12124,-1644,-7193,-1889,-3583], -[1,3,7058], -[0,0,7059,7060,6], -[0,-834,-1863,-1889], -[0,-1889,-775,-3583,-12125,-12126,-12127], -[1,3,7062], -[0,0,7063,7064,8], -[0,-664,-1168,-1197,-1231], -[0,-1889,-775,-3583,-12128,-6445,-12129], -[1,3,7066], -[0,7067,7068,7069,9], -[0,-1333,-3187,-1889,-1929], -[0,-8281,-518,-664,-708,-932,-940,-954,-8286,-961,-965,-8287,-967,-971,-980,-7355,-1654,-8324,-1788,-12130,-1930,-12131, --1942,-2281,-2282,-2289], -[0,-1889,-4132,-3264,-2476,-12132,-12133,-775,-1521,-2162,-3754,-12134,-2289], -[1,3,7071], -[0,7072,0,7073,10], -[0,-12063,-1934], -[0,-5182,-775,-6527,-12135,-5399,-7036,-1889,-3583,-9804,-3576], -[1,3,7075], -[0,7076,7077,7078,10], -[0,-1934,-12061,-2114], -[0,-519,-652,-932,-12062,-967,-1110,-1889,-1930,-1942,-2289], -[0,-775,-1889,-3583,-6024,-12136,-1764], -[1,3,7080], -[0,7081,0,7082,4], -[0,-1532], -[0,-1889,-12137,-12138], -[1,3,7084], -[0,7085,7086,7087,5], -[0,-1431,-2177,-755], -[0,-824,-1415,-1521,-2162,-1344,-1623,-12139,-774,-932,-784,-825,-1110,-1889,-2289,-2375,-2379,-2501,-1942,-767,-21,-190, --533,-2790,-2269,-23,-1522,-1534,-1771,-2163,-12140,-1906,-1916,-86,-965,-3560,-2251,-40,-2411,-959,-1907,-958,-6929, --978,-940,-967,-3748,-12141,-3307], -[0,-775,-1889,-9300,-2501,-5050], -[1,3,7089], -[0,7090,22,7091,6], -[0,-1934,-2280], -[0,-775,-1644,-7192,-1889,-3583], -[1,3,7093], -[0,7094,7095,7096,8], -[0,-635,-12069,-1931,-12142], -[0,-12070,-1889,-10815,-1899], -[0,-775,-7192,-1889,-3583], -[1,3,7098], -[0,60,22,7099,5], -[0,-775,-3827,-12143,-12144,-7192,-3583], -[1,3,7101], -[0,7102,22,50,10], -[0,-2840,-1934,-12142], -[1,3,7104], -[0,7105,22,7106,10], -[0,-635,-1934,-12142], -[0,-1889,-775,-3583,-1644,-7192,-5154], -[1,3,7108], -[0,7109,7110,7111,4], -[0,-783,-1931], -[0,-12145,-1889], -[0,-775,-1644,-7192,-1889,-3583,-12123], -[1,3,7113], -[0,7114,130,7115,10], -[0,-2773,-1931,-1934], -[0,-12146,-1889,-775,-3583], -[1,3,7117], -[0,90,0,7118,11], -[0,-1889,-775,-3583,-2162,-8893], -[1,3,7120], -[0,7121,0,7122,11], -[0,-12147,-98,-1931], -[0,-12148,-6599,-12149,-775,-12115,-12119,-8893,-12150,-1889,-3583,-8199,-12123,-4682,-4683,-4132,-5387], -[1,3,7124], -[0,7125,7126,7127,5], -[0,-12151,-12152,-12153], -[0,-12154,-635,-1889,-1906,-2127], -[0,-1889,-775,-3583,-12155,-6413,-12156], -[1,3,7129], -[0,0,22,7130,6], -[0,-1889,-775,-3583,-9791], -[0,60,22,50,4], -[1,3,7133], -[0,60,22,50,11], -[1,3,7135], -[0,242,22,50,8], -[1,3,7137], -[0,60,22,7138,4], -[0,-775,-6811,-7192,-7193,-1889,-3583,-2435], -[1,3,7140], -[0,7141,22,50,5], -[0,-1934,-12142], -[1,3,7143], -[0,0,7144,7145,4], -[0,-1344,-1654,-1889,-1405,-1942,-1534,-1916], -[0,-1889,-5899,-12123,-3583,-775,-3585,-3862], -[1,3,7147], -[0,7148,0,7149,5], -[0,-12157,-5297,-12158,-12159,-12160,-12161,-12162,-12163,-12164,-12165,-12166,-12167,-12168,-12169,-12170,-96,-12171, --12172,-12173,-12174,-12175,-12176,-12177,-12178,-12179,-12180,-12181,-12182,-12183,-97,-12184,-12185,-12186,-12187, --12188,-12189,-12190,-12191,-12192,-12193,-12194,-518,-635,-12195,-12196,-12197,-782,-12074,-12198,-1892,-12077,-12080, --1896,-1897,-1898,-12199,-12200,-2579,-12201,-12084,-12202,-1905,-12203, --12204,-1917,-2635,-12205,-12206,-12207,-12088,-12090,-12092], -[0,-775,-12119,-7186,-6309,-12208,-2634,-1889,-3583,-4682,-4683,-7187,-5387], -[1,3,7151], -[0,7152,7153,50,8], -[0,-635,-12069], -[0,-12070,-1329,-1889], -[1,3,7155], -[0,0,0,7156,4], -[0,-775,-1889,-12209,-3215,-8947], -[1,3,7158], -[0,0,0,7159,4], -[0,-775,-1889,-12209,-3215,-3754,-2162], -[1,3,7161], -[0,7162,7163,7,11], -[0,-783,-9649], -[0,-21,-23,-32,-4952,-26,-40,-43,-519,-535,-6831,-825,-932,-958,-1107,-1646,-1788,-1889,-2177,-2410], -[1,3,7165], -[0,7166,7167,7168,8], -[0,-1934,-2303], -[0,-12072,-1889], -[0,-775,-1644,-7192,-1889,-3583,-3839,-2303], -[1,3,7170], -[0,90,22,50,4], -[1,3,7172], -[0,0,7173,7174,4], -[0,-932,-1344,-1534,-1942,-2320,-2322], -[0,-1889,-5846,-3215], -[1,3,7176], -[0,7177,0,7178,4], -[0,-12210,-12211,-12212,-12213,-12214,-12215,-12216,-2387], -[0,-6321,-10425,-11940,-1857,-7685,-7773,-9879,-3323,-3445,-11941,-10424,-2410,-3018,-985], -[1,3,7180], -[0,7181,7182,7183,4], -[0,-4256,-4255], -[0,-86,-9404,-652,-664,-665,-667,-740,-1344,-1448,-1534,-1654,-2250], -[0,-3264,-6597,-9727,-3215,-6408,-12217,-12056,-3277,-12218], -[1,3,7185], -[0,7186,0,7187,5], -[0,-12219,-2446,-1523,-1525,-2347,-12220,-1524,-12221,-1729,-12222,-12223,-2062,-12224,-12225], -[0,-7773,-11304,-1937], -[1,3,7189], -[0,7190,7191,7192,4], -[0,-5830,-12226,-12227,-12228,-2546], -[0,-526,-566,-3067,-551,-558,-633,-3346,-12229,-1003,-1471,-1475,-10495,-1479,-1482,-12230,-1654,-12231,-7718,-1991,-2111, --2177], -[0,-1938,-507,-5855,-4004,-3634,-3217,-3272], -[1,3,7194], -[0,7195,7196,7197,6], -[0,-769,-9798,-2518], -[0,-509,-1405,-1654], -[0,-5889,-3322,-1764,-1939,-12232,-11727,-4004,-3113], -[1,3,7199], -[0,0,7200,7201,11], -[0,-12233,-12234,-23,-3408,-5321,-40,-43,-2581,-3035,-3621,-3037,-4372,-5286,-3899,-12235,-664,-756,-767,-12236,-928, --1344,-12237,-1637,-1654,-1772,-8065,-10105,-1967,-5037,-2210,-2211,-2334,-2410,-2426,-2466,-2469,-4881], -[0,-1940,-2006,-3160,-3477,-12238,-9613,-3098,-12239,-3577,-3161], -[1,3,7203], -[0,7204,27,57,5], -[0,-668,-679,-1078,-7885], -[1,3,7206], -[0,7207,7208,7209,4], -[0,-12240,-3896,-1618], -[0,-8918,-3307,-350,-4062,-351,-3136,-4251,-427,-428,-721,-932,-940,-967,-1344,-1415,-12241,-12242,-1942,-2127,-2251, --2334,-2379,-2410], -[0,-1942,-3862,-1446,-8222], -[1,3,7211], -[0,0,7212,7213,6], -[0,-3037,-12243,-519,-1942,-2410,-5627], -[0,-1942,-12244,-2410,-12245,-12246], -[1,3,7215], -[0,7216,7217,7218,8], -[0,-7969], -[0,-1772,-1942], -[0,-10484,-3862,-1942], -[1,3,7220], -[0,0,7221,7222,6], -[0,-4066,-350,-351,-3037,-519,-1942,-2127,-2141,-2299,-2379,-2387,-2410], -[0,-1942,-2299], -[1,3,7224], -[0,7225,0,7226,6], -[0,-12247,-1548,-2001], -[0,-1942,-727], -[1,3,7228], -[0,0,14,7229,4], -[0,-3240,-651,-6472,-1044,-8799,-6656,-8574,-12248,-8800,-12249,-6582,-12250,-9782,-12251], -[1,3,7231], -[0,7232,7233,7234,8], -[0,-1548,-12252], -[0,-664,-710,-711,-12253,-1654], -[0,-3240,-6324,-12254,-812,-12255,-8800,-5598,-9361,-3276,-8574], -[1,3,7236], -[0,7237,7238,7,5], -[0,-4046,-482,-2029], -[0,-3040,-6633,-3081,-1361,-1427,-2006,-2019,-2052], -[1,3,7240], -[0,7241,14,7242,6], -[0,-12256], -[0,-3240,-9361,-8574,-9854,-12248,-8800,-4123,-1681,-12257,-7219,-12258,-7434,-5554,-2265,-6240,-12259], -[1,3,7244], -[0,7245,0,7246,6], -[0,-3446,-2387,-1353,-3535,-1864,-12260,-1863], -[0,-5889,-12261,-12262,-1942,-1952,-5538,-707,-12263,-12232], -[1,3,7248], -[0,7249,7250,7251,5], -[0,-714,-1646], -[0,-1654,-1452,-2198,-1405,-756,-1657], -[0,-4055,-687,-5538,-714], -[1,3,7253], -[0,7254,7255,7256,5], -[0,-1692,-10425,-2961,-12264,-12265,-12266], -[0,-1816,-2564,-1313,-1415,-1805,-999,-1496,-12267,-1852,-865,-3913,-6570,-679,-1077,-367,-7043,-5672,-1424,-1575,-1729, --12268,-2269,-12269,-2410,-3136,-3037,-10624,-12270,-511,-1101,-12271,-1769,-12272,-12273,-12274,-12275,-12276,-10419, --12277,-3048,-12278,-4835,-4106,-12279,-12280,-12281,-5038,-12282,-12283,-12284,-12285,-12286,-8863,-12287,-12288,-12289, --5782,-12290,-12291], -[0,-4340,-12292,-12293,-12294,-12295,-7685,-7773,-7485,-12296,-4165,-12297,-12298,-12299,-1857,-12300,-12301,-12302, --12303,-12304,-12305,-12306,-12307,-12308,-12309], -[1,3,7258], -[0,0,7259,7260,4], -[0,-4201,-589,-664,-12310,-824,-12311,-932,-960,-971,-1168,-1184,-1187,-1208,-2915,-1243,-1244,-12312,-1273,-1333,-1339, --1449,-1654,-1729,-1771,-1942,-1976,-8318,-8319,-12313,-2091,-8320,-2205,-12314,-2550], -[0,-12315,-4131], -[1,3,7262], -[0,7263,7264,7265,8], -[0,-615,-617,-714,-1004,-1576,-1650,-1666,-12316,-1813,-1850,-12317], -[0,-664,-1168,-1231,-1663,-2150,-2210,-2211,-2291], -[0,-622,-6011,-11722,-7737,-7736,-3324,-5889,-12318,-5897], -[1,3,7267], -[0,0,29,7,4], -[1,3,7269], -[0,0,7270,7271,6], -[0,-2568,-1654], -[0,-1958], -[1,3,7273], -[0,0,0,7274,7275], -[0,-687,-1959], -1769904000000, -[1,3,7277], -[0,7278,0,7279,4], -[0,-668,-1959], -[0,-2501,-3862,-1959,-10677], -[1,3,7281], -[0,7282,7283,7,8], -[0,-11744], -[0,-461,-2125,-1405], -[1,3,7285], -[0,0,7286,7287,6], -[0,-633,-767,-932,-4693,-1344,-1471,-1472,-1475,-1482,-1534,-1654,-1771,-1942,-2125,-2127,-2143,-2210,-2491,-2410], -[0,-1961,-1962,-6948,-6306], -[1,3,7289], -[0,7290,226,7291,4], -[0,-1654,-2210,-2424], -[0,-5923,-6306], -[1,3,7293], -[0,89,7294,57,6], -[0,-891,-1050,-1654,-1941], -[1,3,7296], -[0,7297,7298,7299,6], -[0,-5758,-510,-2059,-5975,-2520], -[0,-932,-2471], -[0,-1965,-3958,-12319,-3926], -[0,7301,7302,7303,6], -[0,-1496,-12320], -[0,-21,-23,-36,-40,-2320,-2322], -[0,-3160,-1966,-687,-1965,-3964,-3958,-3962,-3957,-3972,-3824,-3955,-12321], -[1,3,7305], -[0,7306,7307,41,5], -[0,-1580,-1792,-2029], -[0,-533,-560,-633,-647,-932,-1365,-1415,-2006,-12322,-12323], -[1,3,7309], -[0,0,7310,7311,11], -[0,-4251,-3037,-12324,-652,-1318,-12325,-12326,-1942,-2094,-2100,-12327,-12328,-2399,-2410,-7669,-2541], -[0,-11876,-9681,-3264,-4675,-8041,-7153,-3839], -[1,3,7313], -[0,7314,7315,7316,5], -[0,-12329,-12330,-12331,-12332,-12333,-12334,-12335,-12336,-12337,-12338,-3037,-1578], -[0,-589,-633,-12339,-647,-668,-931,-932,-986,-988,-1103,-11426,-12340,-9208,-1168,-1208,-1212,-1252,-1262,-1446,-1646, --1788,-2080,-2322,-2388,-2410,-2416,-2461,-2462,-2463], -[0,-12341,-12342,-12343,-2410], -[1,3,7318], -[0,7319,7320,7321,5], -[0,-12344,-11458,-2729,-2734,-668,-1107,-1412,-2779,-1980,-5471,-2173,-2234,-2818,-2819,-2550], -[0,-3711,-3036,-9705,-12345,-8566,-3037,-617,-664,-665,-11477,-1003,-1004,-1168,-12346,-1260,-1452,-1548,-1610,-1654, --12347,-2125,-2150,-2177,-2388,-12348,-2410,-12349], -[0,-475,-4004,-3634,-11468,-12350,-11467], -[1,3,7323], -[0,7324,7325,7326,4], -[0,-4377,-12351,-812], -[0,-12352,-3198,-3136,-3037,-511,-1415,-2375,-2410,-9056], -[0,-1334,-1342,-1971,-729,-7680,-12353,-12354,-7827,-12355,-12356,-12357], -[1,3,7328], -[0,7329,7330,231,4], -[0,-12358,-12359,-2114], -[0,-1654,-12360,-2198,-2210,-2250], -[1,3,7332], -[0,7333,7334,7335,5], -[0,-668,-12361,-12362,-1376,-1392,-1548,-1639,-1728,-1820,-2177], -[0,-526,-555,-558,-824,-932,-940,-1362,-1405,-1650,-1654,-1661,-1942,-2125,-2198], -[0,-1168,-1764,-8403,-5897,-3551], -[1,3,7337], -[0,7338,7339,7340,10], -[0,-12363,-12364,-12365,-12366,-12367,-12368,-12369,-12370], -[0,-1650,-2125,-10011,-10009,-10013,-10014,-12371,-12372,-10010], -[0,-3264,-1409,-1974,-3110], -[1,3,7342], -[0,0,7343,7,4], -[0,-589,-11080,-1021,-1948,-12373,-2320,-2322], -[1,3,7345], -[0,7346,0,7347,4], -[0,-908,-1801], -[0,-8027,-11441,-7412,-5865], -[1,3,7349], -[0,0,7350,7351,4], -[0,-708,-1788,-1654], -[0,-1977,-4112,-12374,-12375,-12376,-2435,-12377], -[1,3,7353], -[0,7354,91,7355,5], -[0,-7591,-12378,-755,-11460,-12379,-12380], -[0,-1978,-10366,-11878,-4864], -[1,3,7357], -[0,7358,0,7359,8], -[0,-719,-1026,-1889,-1931], -[0,-7175,-7036,-6694,-7441,-775,-3264,-8199,-12381,-9487,-7725], -[1,3,7361], -[0,0,7362,7363,9], -[0,-1127,-1452,-1612,-1132,-1414,-1148,-1963], -[0,-1980,-1961,-5923,-6305,-6306,-6307,-6309,-510,-6310,-12382,-4865,-3966], -[1,3,7365], -[0,0,0,7366,10], -[0,-6935,-12383,-6934,-7715,-3839,-6527], -[1,3,7368], -[0,0,0,7369,4], -[0,-5514,-4111,-6935,-4000], -[1,3,7371], -[0,7372,7373,7374,4], -[0,-7397], -[0,-12384,-12385,-5834,-633,-647,-12386,-887,-921,-932,-993,-1065,-1107,-8080,-12387,-11104,-7402,-1283,-1351,-1365,-1408, --1431,-1650,-1659,-6374,-1777,-1788,-1794,-8385,-2156,-9786,-2322,-12388], -[0,-1985,-1983,-5101,-2435,-1838,-6231], -[1,3,7376], -[0,7377,7378,7379,4], -[0,-12389,-12390,-12391], -[0,-519,-589,-821,-1023,-2384,-2541], -[0,-4865,-1985,-5101,-2265,-1983,-12392,-12393,-2435,-1838,-6231,-6422,-6420,-12394,-7724], -[1,3,7381], -[0,0,7382,7383,4], -[0,-4004,-12395,-2322], -[0,-4791,-5101,-1985], -[1,3,7385], -[0,0,7386,7387,4], -[0,-652,-1339,-12396], -[0,-1986,-510,-6235,-12397,-5418,-4107,-11866,-5920], -[1,3,7389], -[0,119,120,7390,4], -[0,-1986,-11868,-12398,-12399,-12400,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-5418,-12401,-1986,-12402,-12403, --12404,-10587,-11866,-12405,-11049,-7530,-7283,-12406,-6582,-7534,-7535,-7536,-7537,-7538,-7539,-7540,-7541,-7542,-7543, --7544,-7545,-7503,-12407,-7547,-7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558,-7559,-5063, --7560,-1980,-12408,-5839,-11450,-12409, --5737,-12410,-2634,-3966,-12411,-11052,-6187,-7563,-856,-7275], -[1,3,7392], -[0,7393,7394,7395,4], -[0,-1549,-12412,-12413,-996], -[0,-1107,-2303,-1449,-932,-2286,-2469,-2379,-2501,-1942,-2376,-21,-778,-2410,-23,-3037,-1322,-2503,-534,-1304,-2275,-2287, --2508,-3046,-5286,-3983,-3164,-40,-2233,-2505,-12414,-1331,-958,-2335,-940,-962,-967,-1643,-42,-12415,-428,-8561,-12416, --427,-4011,-948], -[0,-1988,-3496,-3495,-3494,-3505,-3506,-3161], -[1,3,7397], -[0,7398,7399,7400,11], -[0,-719,-10988,-1747], -[0,-1788,-1127,-1496,-932,-2125,-2127,-2177,-589,-1054,-12417,-2111,-1972,-8573,-23,-12418,-40,-957,-966,-1138,-8022, --9544,-3326,-952,-958,-12419,-968,-1137,-3561,-943,-963,-350,-942,-351,-12420,-3840], -[0,-3634,-5119,-507,-5855,-2319,-2322,-1471,-1437], -[1,3,7402], -[0,7403,7404,7405,8], -[0,-12421], -[0,-2832,-12422,-427,-428,-3664,-549,-558,-726,-932,-940,-967,-6726,-8011,-1942,-2910,-1989,-2091,-12423,-2127,-4063, --2142,-2410,-2469,-2501], -[0,-4865,-5092,-3264,-1989,-12424,-3634], -[1,3,7407], -[0,7408,7409,7410,4], -[0,-679,-719,-12425,-1048,-12426,-2114,-2488], -[0,-510,-537,-559,-12427,-705,-10255,-10260,-957,-8022,-999,-1054,-1077,-1127,-1132,-1133,-1137,-1138,-9544,-1149,-9240, --1152,-10257,-9241,-10644,-12418,-1542,-1972,-2111,-2128,-2177], -[0,-3634,-5119,-1437], -[1,3,7412], -[0,7413,7414,7415,9], -[0,-1856], -[0,-12428,-633,-2322], -[0,-12429,-3582], -[1,3,7417], -[0,0,7418,7419,5], -[0,-21,-23,-40,-43,-47,-3326,-10022,-12430,-571,-589,-693,-767,-12431,-932,-958,-1023,-1276,-1442,-1654,-1771,-1788,-2125, --2127,-2143,-12432,-12433,-2210,-2342,-12434], -[0,-1993,-5112,-5260,-8113,-3481,-11639,-12435,-12436,-12437,-9976,-12438], -[1,3,7421], -[0,7422,27,7423,6], -[0,-2172], -[0,-6555,-12439,-12439,-10781,-3262,-12440,-5554], -[1,3,7425], -[0,177,7426,7427,5], -[0,-1859,-2250,-2320,-2322,-2568], -[0,-770,-6555], -[1,3,7429], -[0,7430,27,7,10], -[0,-1995], -[1,3,7432], -[0,0,172,7433,9], -[0,-7434,-3215,-1334], -[1,3,7435], -[0,7436,7437,7438,6], -[0,-1616,-2446,-743,-12441,-2249], -[0,-1107,-1722,-1654,-2210,-932,-2198,-1405,-1942,-710,-940], -[0,-11428,-8980,-12442,-5545,-1998,-12443], -[1,3,7440], -[0,7441,7442,7,5], -[0,-651,-12444,-1351,-1335], -[0,-1788,-1654,-932,-615,-2884,-2155,-2062,-3748,-5029], -[1,3,7444], -[0,205,7445,48,5], -[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-967,-1344,-1415,-1534,-1623,-1771,-1942,-2251, --2501], -[1,3,7447], -[0,7448,0,7449,4], -[0,-1371,-1646,-822,-2271], -[0,-727,-2001,-11642,-10659], -[1,3,7451], -[0,7452,7453,7454,5], -[0,-44,-682,-2004], -[0,-12445,-407,-409,-3059,-3136,-3037,-3040,-3052,-6265,-767,-881,-932,-959,-978,-1031,-12446,-1103,-1107,-1521,-1763, --12447,-2003,-4946,-2006,-2019,-2082,-2410], -[0,-2006,-3159,-12448,-12449,-3962,-7434], -[1,3,7456], -[0,7457,7458,7459,5], -[0,-44,-5650,-682,-2004], -[0,-12445,-409,-3136,-3040,-3052,-4972,-767,-881,-932,-978,-1031,-1103,-1521,-1763,-12447,-2006,-2019,-2410], -[0,-2006,-3159,-12450,-3821], -[1,3,7461], -[0,7462,7463,7464,5], -[0,-44,-2029], -[0,-12445,-409,-3136,-3037,-3040,-3052,-6633,-12451,-4972,-6265,-761,-767,-881,-932,-959,-978,-1031,-1107,-1344,-1534, --1763,-1942,-12447,-2006,-2019,-2410], -[0,-2006,-2444], -[1,3,7466], -[0,0,0,41,10], -[1,3,7468], -[0,7469,0,245,10], -[0,-2055], -[1,3,7471], -[0,7472,7473,245,5], -[0,-1792], -[0,-1415,-2006,-2019,-2501], -[1,3,7475], -[0,7476,7477,7478,5], -[0,-12453,-12454,-12455,-12456,-12457], -[0,-2127,-2410], -[0,-3321,-1122,-2006,-3322,-8977,-3098], -[1,3,7480], -[0,7481,0,7,11], -[0,-1992,-753,-1961,-2516,-1792,-2082], -[1,3,7483], -[0,7484,0,7485,4], -[0,-2489,-1384,-682,-1967,-12458,-860,-44,-12459,-12460,-12461,-3140,-2055,-3024], -[0,-620,-2006,-3095,-3098,-12462,-3159], -[1,3,7487], -[0,7488,7489,7490,5], -[0,-12463,-1548,-1549,-12464,-1967,-12465,-2355], -[0,-12466,-12467,-6263,-6264,-4749,-526,-527,-533,-534,-12468,-559,-560,-562,-566,-664,-12469,-778,-915,-994,-1033,-1304, --1322,-1331,-1347,-1415,-1417,-12470,-1654,-1762,-1764,-1792,-2006,-8934,-12471,-2019,-2024,-12472,-2052,-2102,-2109, --2125,-2275,-12473,-2501,-2505], -[0,-2006,-12474,-3159,-8597,-4122,-12475,-10366,-12476,-3119,-3825], -[1,3,7492], -[0,7493,7494,7495,9], -[0,-747,-1967], -[0,-21,-23,-32,-26,-36,-40,-41,-43,-534,-553,-778,-827,-932,-933,-958,-962,-969,-970,-1103,-1331,-12477,-1643,-2006,-2019, --2275,-2322,-2501,-2503,-2505], -[0,-3095,-3159,-2006,-12478,-699], -[1,3,7497], -[0,7498,7499,7500,9], -[0,-2852,-703,-807], -[0,-23,-32,-3192,-3840,-26,-40,-41,-42,-190,-12479,-3326,-350,-351,-3266,-3267,-406,-409,-410,-3330,-3136,-4961,-3037, --3040,-3052,-427,-428,-522,-533,-553,-753,-12480,-932,-940,-958,-959,-969,-970,-9724,-1344,-1415,-4980,-1416,-1419,-1534, --1548,-1942,-2006,-2019,-2127,-5090,-2162,-2223,-2281,-2282,-3436,-2285,-2375,-2387,-2410,-2411], -[0,-2006,-4222,-4120,-4121,-3159], -[1,3,7502], -[0,7503,7504,7,5], -[0,-1805,-668,-1359,-1111,-1872,-6558,-1047,-12481,-1966,-1044,-1273,-2269,-2343,-769,-2194,-635,-1543,-6197,-12482,-22, --2070,-2021,-930,-1067], -[0,-1415,-767], -[1,3,7506], -[0,7507,7508,7,6], -[0,-12483,-12484,-12485,-1025,-1311], -[0,-4010,-367,-409,-5220,-3136,-3037,-3040,-3052,-1415,-5129,-1771,-2006,-2019,-2200,-2410], -[1,3,7510], -[0,7511,7512,7,8], -[0,-12485], -[0,-4010,-367,-3136,-1771,-2200,-2410], -[1,3,7514], -[0,7515,0,7516,4], -[0,-2114,-8245,-23,-47,-4096,-3200,-46,-12486,-4776,-10101], -[0,-2006,-856,-12487], -[1,3,7518], -[0,7519,0,41,4], -[0,-2166], -[1,3,7521], -[0,7522,7523,7524,4], -[0,-12488,-12489,-1967], -[0,-21,-23,-32,-3840,-12490,-34,-12491,-6065,-5584,-12492,-38,-40,-41,-43,-86,-9404,-12493,-10709,-3326,-350,-351,-3470, --7040,-3472,-7041,-7042,-5295,-4774,-12494,-406,-407,-409,-2622,-3040,-3052,-427,-428,-533,-535,-536,-720,-767,-932,-940, --958,-962,-966,-967,-969,-970,-1344,-12495,-1357,-1415,-1534,-1609,-1868,-1942,-2006,-2019,-2049,-2052,-2125, --2127,-2140,-2174,-2214,-2275,-2278,-2410,-2501,-12496], -[0,-3159,-2006,-7581,-7582,-7764], -[1,3,7526], -[0,0,7527,7528,4], -[0,-22,-23,-2624,-533,-534,-561,-668,-679,-767,-1059,-1320,-1415,-12497,-1792,-1961,-2000,-2006,-2010,-2019,-2125,-12498, --2231,-2501], -[0,-12499,-4132,-6324,-5547,-6335,-12500,-12501,-2489], -[1,3,7530], -[0,7531,7532,7533,4], -[0,-1792,-1967,-2798,-12502], -[0,-527,-528,-537,-539,-546,-551,-558,-560,-664,-708,-740,-796,-932,-12503,-940,-958,-962,-964,-967,-969,-1405,-1471, --1474,-12504,-1475,-1476,-1479,-12505,-1482,-1486,-1490,-1491,-11508,-1654,-1942,-2006,-2019,-2125,-2127,-2128,-2131, --2137,-2138,-2210,-2211], -[0,-2022,-12506,-2006,-10855,-12507,-12508,-12509,-10606,-11729,-3956,-12510,-5553], -[1,3,7535], -[0,0,7536,7537,4], -[0,-3615,-262,-350,-351,-3266,-367,-7043,-407,-409,-3136,-3037,-3040,-3052,-3563,-795,-932,-940,-3071,-967,-969,-970, --4814,-1344,-1415,-1419,-12511,-2781,-1534,-1942,-2006,-2019,-2125,-2127,-2142,-2384,-2410,-2411,-2516,-2564], -[0,-2006,-3322,-4053,-4054,-12512,-3926,-2410,-4124], -[1,3,7539], -[0,7540,7541,7542,6], -[0,-10579,-1109,-1311,-1543,-1967,-2030,-2192,-2231], -[0,-3795,-3040,-3807,-526,-527,-528,-533,-536,-537,-546,-551,-556,-558,-560,-708,-6019,-761,-767,-915,-12513,-916,-932, --933,-940,-958,-962,-969,-1344,-1415,-1534,-1942,-2006,-2019,-12514,-2052,-2069,-2125,-2127,-2128,-2131,-2133,-2137, --2138,-2143,-2251,-12515], -[0,-2006,-3214,-2501,-6211,-1540,-12516,-10589,-12517,-5932,-11492], -[1,3,7544], -[0,7545,7546,7547,6], -[0,-44,-2770,-12518], -[0,-21,-23,-32,-12519,-36,-3204,-38,-39,-40,-41,-43,-3326,-350,-351,-3561,-3266,-406,-407,-409,-3136,-3040,-3664,-7465, --527,-3766,-6046,-756,-757,-767,-932,-933,-940,-958,-12520,-962,-969,-976,-1278,-1344,-1349,-1534,-1650,-1942,-2006, --2019,-2052,-2125,-2127,-2410,-2469,-2550], -[0,-1349,-9780,-1348,-9781,-9782,-9772,-9783,-2006,-3476], -[1,3,7549], -[0,0,7550,7551,10], -[0,-2832,-2581,-5295,-407,-409,-3037,-3040,-3052,-440,-2970,-3899,-8349,-1534,-1637,-1771,-1874,-2910,-2006,-2019,-3246, --2214,-2391,-2410,-2469], -[0,-2006,-3095,-3322,-12521,-12522,-12523,-12524,-12525,-12526,-12527], -[1,3,7553], -[0,7554,0,7555,4], -[0,-5220,-1311,-2387,-12528,-12529,-12530,-12531], -[0,-3276,-5538,-9783,-1348,-9780,-1382,-12250,-9782,-2006,-3476,-3940,-9781], -[1,3,7557], -[0,0,0,41,6], -[1,3,7559], -[0,0,7560,7,5], -[0,-656,-668,-932,-12532,-1415,-1417,-1942,-2127,-2138,-2143], -[1,3,7562], -[0,7563,7564,7565,6], -[0,-5334,-4251,-9596,-1291,-2632,-1619,-2098,-2101,-2427,-2429,-5358], -[0,-409,-3037,-3040,-3052,-652,-725,-928,-969,-4652,-1942,-2006,-2019,-2088,-12533,-2094,-2095,-2100,-4656,-2399,-2410, --2541], -[0,-3272,-8630,-3095,-4329,-1599,-2006,-3159,-2093,-2427], -[1,3,7567], -[0,7568,7569,7570,5], -[0,-12534,-1967,-2030,-2489], -[0,-12535,-526,-527,-528,-534,-535,-558,-560,-564,-756,-767,-932,-940,-12416,-958,-962,-967,-969,-5997,-1471,-1475,-1476, --1479,-1482,-1483,-1490,-1492,-1654,-1771,-1942,-2006,-2019,-2043,-2044,-2198,-2416,-2501,-2503,-2505], -[0,-2006,-3159,-4126,-12536], -[1,3,7572], -[0,7573,7574,7575,5], -[0,-1856,-1967,-1992], -[0,-525,-12537,-527,-528,-534,-709,-778,-932,-933,-949,-958,-962,-969,-1059,-11942,-12538,-12539,-1413,-1471,-1476,-1481, --12540,-1484,-1492,-12541,-1859,-2024,-2275,-2501,-2505], -[0,-2006,-3095,-3159,-12542,-12543,-12544,-12545,-5176,-12546,-3160], -[1,3,7577], -[0,7578,0,246,4], -[0,-2531,-2624,-2550,-2177,-1961,-578,-719,-1384,-2166,-481,-533,-12547,-2654,-1624,-2516,-12548,-1950,-2041,-12549,-458, --12550,-11463,-12551,-9870,-2082,-12552,-1421,-12553,-12554,-12555,-12556,-12557,-12558,-12559,-12560], -[1,3,7580], -[0,0,7581,7582,4], -[0,-12563,-12564,-12565,-932,-967,-1942,-2006,-2034,-12566,-2410], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-12568], -[1,3,7584], -[0,7585,7586,7587,6], -[0,-2550,-1967], -[0,-2006,-932,-12569,-12570,-1387,-1942,-4731,-21,-12571,-23,-528,-1064,-12572,-9081,-12573,-12574,-12575,-12576,-12577, --969,-933,-958,-940,-962,-967,-970,-3156], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-12578,-7084,-12579,-3160,-3167,-3843,-9472,-9474,-3827], -[1,3,7589], -[0,0,7590,7591,9], -[0,-21,-23,-26,-36,-3203,-40,-41,-43,-12580,-2685,-8471,-261,-6429,-3267,-407,-409,-410,-3040,-428,-528,-534,-535,-3090, --682,-703,-767,-932,-940,-949,-958,-969,-1103,-1449,-1613,-6519,-1942,-4130,-2006,-2019,-12581,-2127,-2128,-2131,-5090, --2134,-2137,-2138,-2143,-2376,-2410,-2469,-2501,-2503,-2505], -[0,-3159,-2006,-12582,-3962,-6240,-12583,-6769], -[1,3,7593], -[0,0,7594,7595,4], -[0,-23,-26,-36,-40,-6035,-3326,-528,-534,-664,-932,-1344,-1534,-1654,-1771,-1942,-2006,-2019,-2052,-12584,-2125,-2127, --2501], -[0,-2006,-12585,-12586,-12587], -[1,3,7597], -[0,0,7598,7599,4], -[0,-4066,-12588,-932,-12589,-967,-12590,-1415,-1942,-2127,-2410], -[0,-2039,-3264,-3839,-5092,-7153,-9681,-727,-2006,-2019], -[1,3,7601], -[0,7602,7603,7604,5], -[0,-12591,-12518], -[0,-262,-349,-406,-407,-409,-3037,-3140,-3040,-3052,-708,-767,-932,-940,-948,-958,-967,-969,-1449,-1942,-2006,-2019,-2074, --2125,-2391,-2410,-2411,-2469], -[0,-2006,-3476,-2074], -[0,0,0,41,4], -[1,3,7607], -[0,7608,7609,7610,4], -[0,-1346,-12592,-1967,-5582], -[0,-3267,-3035,-12593,-4647,-12594,-12595,-3621,-3040,-3052,-4372,-427,-428,-664,-767,-932,-952,-1103,-1449,-12596,-1654, --1942,-2006,-2019,-2125,-2127,-5405,-2198,-2210,-2387,-2392,-2402,-2410], -[0,-775,-3159,-12521,-2006,-3162,-12597,-12598,-3580,-12599,-3576,-3095], -[1,3,7612], -[0,7613,7614,248,6], -[0,-743,-3169], -[0,-2391,-2006,-2426,-12600,-12601,-2019,-2410,-2052,-409,-1419,-3172,-407,-410], -[1,3,7616], -[0,7617,7618,248,10], -[0,-2043], -[0,-2391,-2006,-12600,-2019,-2410], -[1,3,7620], -[0,0,7621,7622,4], -[0,-526,-527,-528,-534,-9887,-9888,-556,-559,-560,-563,-566,-932,-941,-956,-958,-962,-969,-1001,-1306,-9413,-12539,-1471, --1476,-1479,-1482,-1483,-1490,-1492,-1654,-2006,-2019,-2040,-2043,-2074,-12602,-12603,-12604,-2501], -[0,-2006,-2074,-3122], -[1,3,7624], -[0,7625,28,7,4], -[0,-594,-1415,-865,-932,-2177,-1889,-1966,-2114,-2501,-1077,-1080,-656,-533,-778,-23,-1041,-2163,-2318,-534,-635,-1426, --2275,-366,-866,-2041,-1908,-2015,-1918,-2233,-1352,-1927,-2010,-2116,-2505,-1331,-1428,-10049,-2335,-561,-1903,-2526, --941,-1643,-2507,-779,-542,-661,-2695], -[1,3,7627], -[0,7628,7629,7630,11], -[0,-44,-3772,-3778,-3819,-3024,-1624,-1967,-2055,-3820], -[0,-5131,-915,-2760,-5116,-2006,-2019], -[0,-12605,-4053,-3962,-12606,-2006,-3159,-6750,-3160], -[1,3,7632], -[0,7633,7634,7635,5], -[0,-682,-12607,-1553,-2113], -[0,-21,-23,-32,-26,-39,-40,-41,-12608,-407,-409,-410,-3037,-518,-527,-533,-534,-557,-778,-823,-824,-923,-932,-958,-969, --1004,-12609,-1168,-1243,-1344,-1415,-1419,-1440,-1455,-1534,-1812,-1908,-1942,-1992,-2006,-2019,-2082,-2210,-12610, --2275,-2417,-2501,-2503,-2505,-12611], -[0,-12612,-12613,-12614,-12615,-12449,-3159], -[1,3,7637], -[0,7638,7639,7640,5], -[0,-12616,-3081,-12617,-461,-6426,-507,-5223,-639,-684,-12618,-703,-12619,-748,-753,-8245,-12620,-925,-930,-931,-989, --11676,-5504,-12621,-3649,-1107,-12622,-1284,-1395,-12623,-12624,-12625,-12626,-12627,-12628,-12629,-12630,-1496,-12631, --1548,-9160,-1606,-12632,-3446,-1816,-1955,-1967,-12633,-12634,-2015,-2018,-12635,-12636,-12637,-2026,-5351,-2066,-2093, --12638,-2335,-8299,-12639,-2429,-2505, --2508], -[0,-21,-23,-26,-40,-6056,-41,-42,-407,-409,-12640,-12641,-12486,-12642,-426,-12643,-3136,-12644,-3044,-12645,-3037,-3803, --3040,-3052,-12646,-12647,-3046,-12648,-3806,-427,-428,-527,-528,-533,-534,-778,-12310,-12649,-12650,-12651,-932,-12652, --948,-952,-958,-962,-969,-1041,-1077,-1344,-1415,-12653,-1534,-1623,-1942,-1992,-2006,-2019,-2052,-12654,-2275,-2410, --2437,-2501, --2503], -[0,-2006,-4146,-4900,-4901,-856,-3671,-3262,-3095,-3098], -[1,3,7642], -[0,7643,7644,7645,4], -[0,-44,-401,-3140,-1967], -[0,-23,-38,-40,-41,-190,-6486,-3326,-350,-351,-3561,-3266,-409,-3136,-4647,-3037,-3040,-3052,-3714,-553,-2745,-932,-940, --969,-970,-4814,-1110,-1415,-1419,-1722,-1772,-1942,-2006,-2019,-2127,-2195,-2200,-5091,-2375,-2379,-2410,-2411], -[0,-5092,-3264,-5093,-5094,-3214,-2006,-12655,-3839,-12656,-2410], -[1,3,7647], -[0,7648,0,7649,6], -[0,-1033], -[0,-12657,-2006,-2363,-826,-12658,-2051], -[1,3,7651], -[0,7652,0,7653,8], -[0,-2029,-2166], -[0,-2006,-2034,-12659], -[1,3,7655], -[0,108,7656,7657,5], -[0,-12660,-11184,-234,-405,-3037,-3040,-3052,-440,-756,-795,-2926,-1534,-1889,-1942,-2006,-2019,-2391,-2410,-2466,-12661], -[0,-2006,-4127,-12662,-3159,-2053,-5737,-12663,-12664,-12665], -[1,3,7659], -[0,7660,7661,7662,5], -[0,-12666,-12667], -[0,-589,-633,-647,-710,-12668,-3346,-913,-12669,-923,-932,-12670,-1127,-1132,-10258,-1134,-7849,-1137,-1144,-12671,-10265, --12672,-1417,-1813,-1859,-6184,-12673,-2066,-9266,-2359,-2410,-2416,-12322,-2493], -[0,-2006,-4146,-8530,-6107], -[1,3,7664], -[0,7665,0,7666,10], -[0,-44,-860,-1580,-1967], -[0,-2006,-12546,-8111,-12674,-5176,-775,-12675], -[1,3,7668], -[0,7669,7670,7671,6], -[0,-703,-1967,-860,-1580,-44,-2030], -[0,-1415,-1344,-2006,-2490,-932,-2125,-2127,-708,-1889,-2501,-1059,-1103,-1942,-767,-1361,-1978,-2019,-21,-533,-709,-778, --23,-1041,-1534,-1891,-2503,-518,-528,-534,-1952,-2043,-2275,-1908,-39,-11942,-12676,-2044,-40,-6056,-7748,-2505,-41, --12677,-951,-969,-12678,-1331,-2052,-2128,-2143,-12679,-2138,-940,-956,-962,-967,-2131,-12680,-2137,-1017,-3840,-38, --6057, --12681,-26,-3204,-553], -[0,-2006,-3476,-3159,-9614,-4108,-12682,-12683,-12684,-4002,-12685,-5147,-12129,-6445,-4672,-9133], -[1,3,7673], -[0,7674,7675,7676,10], -[0,-2346,-2054], -[0,-1654,-1452,-2177,-6398,-633,-725,-12686], -[0,-2006,-633,-6340,-4146,-3756,-3862,-6408], -[1,3,7678], -[0,7679,7680,7681,5], -[0,-44,-2997,-682,-1967,-2804,-2055], -[0,-21,-23,-32,-34,-35,-36,-3204,-40,-41,-4757,-4762,-4754,-12687,-4749,-407,-409,-410,-3040,-528,-533,-534,-561,-620, --726,-740,-10524,-767,-12688,-879,-888,-932,-933,-940,-956,-958,-962,-969,-4756,-12689,-1415,-1419,-1449,-1455,-1637, --1942,-2006,-2019,-2022,-12690,-2043,-2052,-2410,-2501], -[0,-2058,-620,-2006,-3095,-3098,-3159,-3160], -[1,3,7683], -[0,7684,7685,7,4], -[0,-3950], -[0,-4298,-4300,-3952,-5866,-428,-652,-948,-2319,-2379,-2386,-2410], -[1,3,7687], -[0,7688,118,7689,8], -[0,-6902,-6904,-6990,-2400,-8803], -[0,-4055,-2059,-1838,-6656,-1076,-11998,-6994,-5897,-6811], -[1,3,7691], -[0,7692,14,7693,4], -[0,-8341,-2060,-2400], -[0,-4055,-2059,-1838,-6656,-1076,-11998,-6994,-5897,-5573,-8804,-1047,-5504,-8805,-8806,-7282,-5572,-2114,-8807,-6370, --7420,-7421,-2487,-8808,-1847], -[1,3,7695], -[0,7696,7697,7698,9], -[0,-458,-640,-997,-1958,-6383], -[0,-23,-6065,-5584,-3244,-350,-6572,-351,-357,-633,-652,-928,-12691,-932,-943,-958,-965,-968,-1874,-1942,-2127,-9701, --2319,-12692,-2322,-2323,-2426,-2501,-2503], -[0,-8800,-5827,-11441], -[1,3,7700], -[0,0,7701,7702,8], -[0,-2319,-1351], -[0,-2063,-12693,-6656], -[1,3,7704], -[0,0,0,7705,9], -[0,-2063,-12397,-9845,-1965,-3969,-5110,-687,-3975,-3957,-12694,-10394,-4116,-6301], -[0,68,15,16,5], -[1,3,7708], -[0,7709,7710,7711,5], -[0,-5223,-987,-2231,-12695,-2387], -[0,-23,-25,-40,-12696,-3036,-3621,-3037,-428,-932,-12670,-12697,-1107,-1534,-1654,-1942,-9880,-2410], -[0,-3272,-9306,-12698,-9308,-4132,-9307,-6747,-12699], -[0,67,15,16,8], -[1,3,7714], -[0,7715,125,7716,4], -[0,-2114], -[0,-4792,-5932,-5195,-8109,-12700], -[1,3,7718], -[0,7719,0,7720,4], -[0,-44,-12701,-1033,-1311,-2030,-5746], -[0,-2006,-12702,-3098,-12703,-3481,-8113,-12704], -[1,3,7722], -[0,124,27,7723,8], -[0,-7421,-12705], -[1,3,7725], -[0,7726,0,7727,6], -[0,-12706,-12707,-12708,-12709,-12710], -[0,-2071], -[1,3,7729], -[0,7730,7731,150,10], -[0,-3544,-3786,-1610,-3788,-1955,-2223,-1885,-863,-682,-1653,-1967,-3790,-3791,-3787,-3793,-996,-3789,-1848,-3792,-2680, --12711], -[0,-1992,-2435,-1415,-1652,-1344,-2006,-2387,-915,-932,-2125,-753,-795,-1442,-1821,-2195,-2375,-2379,-3811,-2501,-1942, --2019,-778,-2214,-2410,-3035,-3136,-3800,-3037,-3810,-2503,-3040,-3041,-1952,-2275,-3043,-3802,-3801,-3803,-3805,-3046, --2760,-3808,-3809,-4773,-3797,-3052,-3140,-2278,-3806,-585,-2505,-3799,-748,-969,-1331,-958,-3798,-1419,-2509,-3804,-428, --970,-740, --3794,-1067,-427,-12712], -[1,3,7733], -[0,7734,7735,7736,4], -[0,-12713,-12714], -[0,-2006,-2501,-2019,-2410,-3040,-3052,-3859,-12715], -[0,-2072,-3438,-3690,-4847,-856,-12716,-858,-12717], -[1,3,7738], -[0,0,7739,7740,5], -[0,-23,-3037,-427,-428,-767,-4780,-932,-941,-948,-958,-969,-970,-1107,-12718,-1942,-2125,-2153,-2391,-2410,-2469], -[0,-2074,-4782,-4125,-12719,-5112,-1361,-12517,-12516,-12720,-1062,-12721], -[1,3,7742], -[0,7743,7744,7745,5], -[0,-12722,-12723], -[0,-12724,-12725,-12726,-1344,-1534,-1771,-1942,-2466,-2469,-2541], -[0,-1062,-2074,-10951,-12727], -[1,3,7747], -[0,7748,7749,7750,5], -[0,-1548,-2029,-924,-1384,-1398,-1967,-44,-1311], -[0,-2359,-1415,-1344,-2006,-2074,-932,-2125,-708,-2501,-1059,-1942,-767,-1361,-2019,-21,-821,-2214,-23,-12728,-1534,-2040, --2503,-528,-534,-12729,-40,-41,-540,-951,-969,-6040,-2052,-958,-12726,-12730,-956,-962,-941,-2502,-970,-5295,-12416,-38, --26,-3203], -[0,-2006,-3476,-1062,-2074,-2040,-2076,-4053,-11313], -[1,3,7752], -[0,7753,7754,7755,6], -[0,-819], -[0,-527,-537,-11899,-559,-664,-708,-932,-933,-958,-962,-969,-1339,-1344,-1654,-1788,-2074,-2125,-2127,-2128,-2131,-2137, --2143,-2210], -[0,-2074,-3444,-2077,-5401], -[1,3,7757], -[0,7758,7759,7760,10], -[0,-12731], -[0,-23,-38,-39,-40], -[0,-3214,-2074,-5401,-12732,-12733,-12734], -[1,3,7762], -[0,0,7763,7764,5], -[0,-427,-428,-767,-932,-940,-1942,-2074,-2125,-2391,-2410,-2469], -[0,-2074,-12735,-5401,-12736,-1062], -[1,3,7766], -[0,0,7767,7768,4], -[0,-3035,-3621,-3037,-664,-824,-12737,-1168,-12738,-12739,-1231,-1243,-12740,-1259,-1654,-2410], -[0,-11313,-11872,-3214,-12741], -[1,3,7770], -[0,0,7771,7772,8], -[0,-708,-1127,-1162,-1405,-6186,-1991,-2111], -[0,-5569,-5570,-3214,-4112,-3262,-3673], -[1,3,7774], -[0,0,0,7775,4], -[0,-12742,-11997,-3262,-510], -[1,3,7777], -[0,7778,0,7779,6], -[0,-5334,-2087,-2090,-2427], -[0,-12743,-3272,-3264,-1838,-1958,-2083,-6233,-6231,-4132,-10919,-2427], -[1,3,7781], -[0,7782,7783,7784,5], -[0,-5334,-9581,-4264,-2766,-2427,-2429], -[0,-3037,-9586,-652,-12744,-1942,-2083,-2094,-2100,-2399,-2410,-2541], -[0,-2427,-2083,-12745,-3862,-10857,-10606,-3264], -[1,3,7786], -[0,7787,7788,7789,4], -[0,-5334,-9581,-2766,-12746,-2235,-2429], -[0,-3037,-9586,-652,-1942,-2083,-2094,-2100,-2399,-2410,-2541], -[0,-2427,-2083,-12745,-3862,-9589,-3264,-1599,-12747,-10606,-2435], -[1,3,7791], -[0,7792,7793,7794,11], -[0,-5334,-12748,-1618,-5204,-5205,-2427,-5356], -[0,-4228,-3037,-3040,-652,-932,-12749,-962,-969,-9602,-1942,-2094,-11167,-12750,-2410], -[0,-9589,-3264,-1599,-4147,-2083,-12745,-2427], -[1,3,7796], -[0,7797,0,7798,5], -[0,-5334,-2586,-2427], -[0,-12743,-3272,-3264,-1838,-3862,-2083,-12745,-4132,-10919,-2427], -[1,3,7800], -[0,7801,7802,7803,8], -[0,-5334,-1286,-5358], -[0,-3037,-652,-1942,-2090,-2094,-2098,-2100,-2101,-2399,-2410,-2427,-2429,-2541], -[0,-3264,-3862,-9591,-2083,-12745,-2427], -[1,3,7805], -[0,7806,7807,7808,4], -[0,-5334,-3649,-4264,-1292,-2429], -[0,-3037,-652,-1942,-2083,-2094,-2100,-2399,-2410,-2541], -[0,-10857,-3264,-7231,-3862,-2083,-12745,-2222,-2427], -[1,3,7810], -[0,7811,0,7812,6], -[0,-5334,-1290,-2427], -[0,-12743,-3272,-7644,-3264,-3862,-2083,-12745,-6233,-6231,-4132,-10919,-2427], -[1,3,7814], -[0,7815,7816,7817,5], -[0,-12751,-305,-12752,-512,-6563,-680,-6869,-4236,-1376,-12753,-1566,-1641,-11656,-1805,-1816,-3547,-8874,-2177,-2654, --2426,-2436,-12754,-2551], -[0,-190,-12755,-3037,-932,-8339,-1110,-3781,-1498,-12756,-12757,-1942,-2094,-12758,-2323,-2410], -[0,-7641,-5887,-5890,-12759,-5889,-1105,-7661,-9845,-6657,-1764,-8403,-5737,-9244,-2091,-7737,-11729,-5550,-6818,-3673, --9318,-2177,-3862], -[1,3,7819], -[0,7820,7821,7822,4], -[0,-1405,-1645,-1876,-2231,-2347], -[0,-932,-934,-958,-1127,-1168,-12760,-2125], -[0,-7841,-9219,-2231,-1405,-4005], -[1,3,7824], -[0,7825,0,7826,4], -[0,-2427,-4251,-2098,-5616], -[0,-12743,-3272,-7644,-1599,-10918,-1838,-1958,-2093,-6233,-6231,-4132,-10919,-2427], -[1,3,7828], -[0,7829,0,7830,11], -[0,-3190,-12761,-2093,-12762], -[0,-8425,-687,-1599,-10918,-2093,-2427], -[1,3,7832], -[0,7833,7834,7835,10], -[0,-4251,-10922,-10923,-2098,-5616,-2427], -[0,-3037,-652,-12744,-1942,-2093,-2094,-2100,-2267,-7699,-2399,-2410,-2541], -[0,-10604,-12763,-4329,-1105,-1599,-10918,-3862,-2093,-12764,-5552,-4002,-4109,-2427], -[1,3,7837], -[0,7838,7839,7840,4], -[0,-4251,-1287,-1619,-1290,-2427], -[0,-5334,-3037,-652,-10915,-2586,-1942,-2094,-4242,-2095,-4655,-2098,-2100,-12765,-4656,-2399,-2410,-5358,-2541], -[0,-7644,-3264,-1599,-10918,-3862,-2093,-12764,-6231,-2427], -[1,3,7842], -[0,7843,7844,7845,9], -[0,-5358,-2427,-4251,-12766,-5356,-12767], -[0,-652,-932,-2093,-1942,-1874,-2094,-2410,-5334,-2101,-2090,-12750,-12749,-11167], -[0,-856,-5670,-12768,-3862,-2093,-12764,-2427], -[1,3,7847], -[0,7848,0,7849,5], -[0,-4251,-1618,-10869,-2427], -[0,-12743,-3272,-1599,-10918,-1838,-3862,-2093,-12764,-4132,-10919,-2427], -[1,3,7851], -[0,7852,7853,7854,9], -[0,-12769,-12770,-2095,-12771,-12772,-9514,-9515,-9516,-9517,-9518,-12773,-9519,-12774,-9520,-12775,-12776,-12777,-12778, --9524,-12779,-9527,-12780,-12781,-12782,-12783,-12784,-12785,-9528,-12786,-12787,-12788,-12789,-12790,-12791,-12792, --12793,-9532,-9533,-9534,-12794,-9535,-9536,-4995,-12795,-4656,-12796,-12797,-2427], -[0,-86,-3307,-932,-946,-1053,-1344,-1534,-1942,-2094,-2541], -[0,-1105,-6913,-2093], -[1,3,7856], -[0,7857,7858,7859,4], -[0,-12769,-2095,-4655,-9514,-9515,-9516,-9517,-12798,-9518,-12799,-12773,-9519,-12774,-9520,-12775,-12776,-12777,-9522, --12778,-12800,-12801,-12802,-12803,-12804,-12805,-12806,-12807,-12808,-12809,-12779,-12810,-9527,-12811,-12780,-12812, --12781,-12782,-12783,-12784,-12785,-9528,-12786,-12813,-12814,-12815,-12788,-12789,-12816,-12817,-12790,-12791,-12792, --12818,-12819,-12793,-9532,-9533,-9534,-12794,-9535,-9536,-4995,-12795, --5616,-4656,-9537,-12796,-12820,-2267,-2427], -[0,-1942,-2094,-2399,-2410,-2541], -[0,-6913,-2093,-12821], -[1,3,7861], -[0,7862,7863,7864,8], -[0,-5334,-4251,-1619,-2427,-5358], -[0,-3037,-652,-1942,-2089,-2090,-2094,-2098,-2100,-5616,-2399,-2410,-2541], -[0,-9589,-3264,-1599,-10918,-3862,-12745,-2083,-12764,-2093,-2427], -[1,3,7866], -[0,7867,7868,7869,6], -[0,-503,-12822], -[0,-5514,-589,-8630,-932,-953,-985,-1202,-1304,-1610,-1654,-1788,-2127,-2133,-2137,-2140,-2184], -[0,-8630,-1599,-3437,-1838,-3215,-1958,-2102,-7650,-4065,-5554], -[1,3,7871], -[0,0,125,7872,5], -[0,-1168,-8109,-7693,-3866], -[1,3,7874], -[0,7875,7876,7877,4], -[0,-668,-1107,-2550], -[0,-190,-652,-664,-665,-932,-1654], -[0,-8276,-5554,-7002,-6656], -[1,3,7879], -[0,7880,7881,7882,10], -[0,-1983,-11197,-2446,-1015,-12823,-6397,-12824,-1069,-1641,-12825,-2155,-2364,-12826,-12827,-12828,-12829,-12830,-8956, --1856,-1459], -[0,-1788,-2322,-1471,-12831,-2125,-708,-615,-2250,-756,-12832,-8375,-633,-641,-9573,-1476,-2188,-1472,-1860,-8958,-1484], -[0,-1334,-5493,-2444,-3590], -[1,3,7884], -[0,7885,7886,7887,4], -[0,-615,-2364,-12833,-12834], -[0,-664,-1168,-668,-1548,-2125,-2105,-1231,-617,-1197,-2150,-1220,-11117,-1973], -[0,-2533,-1334,-1342,-1961,-2105,-11301,-12835,-615], -[1,3,7889], -[0,7890,7891,7892,9], -[0,-12834,-12833,-2364], -[0,-617,-664,-668,-1168,-11117,-1197,-1220,-1231,-1548,-1973,-2105,-2125,-2150], -[0,-2533,-1334,-1342,-1961,-2105,-11301,-12835,-5269], -[1,3,7894], -[0,0,7895,7,10], -[0,-2379,-2410,-710], -[1,3,7897], -[0,0,7898,7899,4], -[0,-5856], -[0,-4792,-9409,-12836], -[1,3,7901], -[0,0,7902,7903,5], -[0,-349,-409,-3044,-3040,-3052,-3714,-427,-12837,-428,-12838,-932,-969,-12839,-1449,-1548,-1565,-1624,-12840,-12718,-1942, --2006,-2019,-2040,-2125,-2195,-2391,-2410,-2469], -[0,-2006,-2074], -[1,3,7905], -[0,0,7906,7907,4], -[0,-528,-757,-932,-1412,-1413,-1471,-1475,-1479,-1481,-3569,-1486,-1488,-1490,-1491,-1962,-2127,-2141,-2410], -[0,-12841,-10095,-12523,-2444,-3323,-4865,-3582,-6989], -[1,3,7909], -[0,7910,7911,7912,10], -[0,-12842,-7437,-12843], -[0,-6455,-2319,-2359,-2322,-887,-932,-1650,-2125,-2177,-12844,-1777,-1365,-1795,-8569,-2156,-5834], -[0,-2114,-4792,-3966,-3551], -[1,3,7914], -[0,0,14,7915,5], -[0,-4792,-2114,-1847,-3551,-8388,-6546,-6024], -[1,3,7917], -[0,7918,0,7919,10], -[0,-12845,-742,-1543,-1889,-2231], -[0,-2501,-5932,-775,-6811,-6043,-2114,-2435,-2162,-9358,-6656], -[1,3,7921], -[0,7922,7923,7924,5], -[0,-12846,-3780,-1077,-1276,-1442,-12847,-2446], -[0,-21,-23,-5870,-26,-33,-36,-5584,-39,-40,-44,-86,-3531,-3470,-3471,-519,-523,-528,-539,-541,-617,-664,-12848,-756, --12310,-834,-4088,-932,-12849,-12850,-958,-963,-964,-12851,-966,-968,-971,-12852,-972,-973,-978,-1004,-12853,-1344,-1444, --1457,-1547,-1654,-1656,-12854,-1788,-2174,-12855,-2293,-12856], -[0,-3960,-489,-3262,-856,-12857,-3636,-12858,-3691,-3690,-1334], -[1,3,7926], -[0,7927,7928,7929,4], -[0,-1983,-788,-12859,-1640,-1801,-1867,-2178,-12860,-2446,-1548,-2177,-2454,-11983,-1582,-1070,-5397,-508,-8541,-12830, --12861,-6456,-12862], -[0,-1788,-1816,-664,-1107,-1654,-2210,-932,-1650,-2125,-1376,-1754,-1942,-756,-2451,-12863,-8549,-1939,-1972,-856,-12864, --12865,-960,-940,-967], -[0,-3817,-3161,-1004,-12866], -[1,3,7931], -[0,7932,83,7,4], -[0,-1983,-2536,-2548,-1351], -[1,3,7934], -[0,7935,251,7936,8], -[0,-9050,-2202], -[0,-1000,-12867,-1958,-11998,-12868,-12869,-12870,-12871,-12872,-10018,-687,-5564,-5514,-6713,-4110,-3974,-4000,-3975, --5550,-3958], -[1,3,7938], -[0,7939,0,7940,8], -[0,-615], -[0,-7685,-12873,-12874,-12875], -[1,3,7942], -[0,0,7943,7,5], -[0,-8959,-1405,-2322], -[1,3,7945], -[0,7946,7947,7948,5], -[0,-932,-3414], -[0,-3037,-1003,-1654,-1788,-2379,-2410], -[0,-6137,-6138,-4215,-5396,-3551,-5119,-4004,-12876,-4676,-8959,-4792], -[1,3,7950], -[0,0,7951,7952,4], -[0,-3415,-708,-12877,-12878,-11961,-12879,-1552,-12880,-12881,-1993,-2250,-2319,-2384], -[0,-7208,-7369,-3589,-702,-6351,-6545,-7371,-7372,-7373,-7374,-7375,-12882,-12883,-12877,-12884,-5922,-6187,-12885,-12886, --12887,-12888,-12889,-12878,-12890], -[1,3,7954], -[0,7955,7956,7957,4], -[0,-1107,-12891], -[0,-3037,-1650,-1942,-2319,-2386,-2402], -[0,-6695,-12892,-12893,-6694,-7421,-687,-7418,-7371], -[1,3,7959], -[0,7960,7961,7962,4], -[0,-1696,-3846,-6521], -[0,-1412,-12894,-12895,-12896], -[0,-12897,-11189,-12898,-10394,-9711,-6527,-12899,-11321,-2126,-5566,-12900,-12901,-12902,-12903,-712], -[1,3,7964], -[0,202,7965,7966,4], -[0,-6779,-11174,-6780,-6778,-6777,-6776,-190,-4106,-3115,-12904,-5053,-4066,-6429,-350,-4062,-351,-3561,-3266,-3267,-4785, --12905,-3621,-3037,-8523,-3199,-9146,-12906,-461,-12907,-6426,-639,-644,-679,-726,-753,-767,-12908,-923,-927,-932,-940, --967,-978,-980,-1054,-12909,-1077,-4706,-1110,-1344,-4788,-1534,-4789,-1588,-1623,-1654,-1753,-12910,-1788,-4916,-1863, --1864,-2851, --1942,-1944,-1948,-1951,-2111,-2127,-2134,-2177,-2200,-2202,-2231,-2234,-2314,-2334,-2387,-2410,-2411,-2466,-2468,-2476, --2478,-5627,-12911,-2551], -[0,-3209,-7882,-12912,-3184,-7176], -[1,3,7968], -[0,7969,7970,7971,4], -[0,-3341,-2145], -[0,-23,-3840,-33,-38,-40,-639,-932,-940,-967,-1344,-1534,-1654,-1942,-2127,-2129,-2133,-2231,-2234], -[0,-12913,-525,-4795,-3184], -[1,3,7973], -[0,7974,7975,7,11], -[0,-639,-2145], -[0,-932,-1654,-2127], -[1,3,7977], -[0,7978,7979,7980,5], -[0,-12914,-2145], -[0,-6429,-932,-1001,-1654,-1788,-2125,-2127,-12915,-12916], -[0,-2127,-12913,-3214,-3184,-3209,-3485,-12917,-7416], -[1,3,7982], -[0,7983,7984,7,4], -[0,-989,-4788,-1588,-2114,-2145], -[0,-23,-40,-43,-461,-932,-958,-1344,-1534,-4789,-1654,-1942,-4790,-2127,-2128,-2133,-2137,-2200,-2231,-2234,-2410], -[1,3,7986], -[0,7987,7988,7989,4], -[0,-1588], -[0,-22,-8355,-12918,-426,-3037,-3040,-652,-2127,-2410], -[0,-12913,-2410,-4160,-12919], -[1,3,7991], -[0,7992,7993,7,11], -[0,-2145], -[0,-932,-958,-1344,-1534,-1654,-1942,-2127,-2129,-2137,-2234], -[1,3,7995], -[0,7996,7997,7998,5], -[0,-12920,-4787,-1548,-1588,-1666,-12921,-12922,-12923], -[0,-23,-40,-43,-3326,-350,-351,-3989,-427,-428,-479,-535,-932,-934,-958,-1022,-1077,-11780,-1168,-12924,-1222,-1412,-1413, --1942,-2125,-2127,-12925,-12926,-2359,-2410], -[0,-2127,-12913], -[1,3,8000], -[0,8001,8002,252,6], -[0,-12927,-12928,-771,-12929], -[0,-9889,-812,-1654,-2127,-2128,-2136,-2184], -[1,3,8004], -[0,8005,8006,252,6], -[0,-461,-12928,-989,-1588,-12929,-2145], -[0,-527,-558,-633,-1415,-1650,-1654,-2125,-2127,-2128,-2137], -[1,3,8008], -[0,8009,8010,253,5], -[0,-3200,-644,-4793,-2114,-2145], -[0,-23,-40,-43,-922,-932,-1654,-2127,-2128,-2131,-2133,-4794,-2410], -[1,3,8012], -[0,8013,8014,253,9], -[0,-1588,-2145], -[0,-932,-958,-1344,-1534,-4789,-1654,-1942,-2127,-2129,-2200,-2231,-2410], -[1,3,8016], -[0,8017,8018,8019,10], -[0,-4785,-7149], -[0,-3267,-3037,-427,-428,-932,-940,-967,-1415,-1942,-2125,-2127,-2375,-2410], -[0,-2127,-12913,-6915,-2231,-12930], -[1,3,8021], -[0,8022,8023,8024,6], -[0,-22,-1429,-2182,-2334], -[0,-23,-1415,-1942,-2127], -[0,-2127,-12913,-2334,-1644], -[1,3,8026], -[0,8027,8028,8029,5], -[0,-2114,-2145], -[0,-639,-932,-1654,-2125,-2127,-2129,-2131,-2387,-2410], -[0,-12913,-2410,-4795], -[1,3,8031], -[0,8032,8033,8034,4], -[0,-4785,-1046,-1077,-2177,-2387], -[0,-5121,-350,-351,-12931,-3048,-12932,-3136,-3044,-3037,-4067,-3199,-427,-428,-714,-932,-12933,-1415,-1548,-1793,-2125, --2127,-12934,-2142,-2375,-2410], -[0,-2142,-2141,-12913,-2410,-4795,-2127,-1764], -[1,3,8036], -[0,8037,8038,8039,6], -[0,-22,-1429,-2182,-2416], -[0,-23,-40,-533,-1415,-1942,-2127], -[0,-2127,-12913,-9216,-1644], -[1,3,8041], -[0,8042,8043,8044,4], -[0,-1805,-1864,-2231,-2550], -[0,-350,-351,-3266,-3267,-3269,-12935,-12936,-12937,-12938,-12939,-12940,-3037,-8523,-3041,-651,-798,-6258,-7259,-7268, --799,-801,-825,-1771,-8065,-1889,-7033,-1940,-1942,-2923,-2127,-4753,-2162,-2387,-2410,-2466,-2469], -[0,-12913,-12941,-5150,-12942,-12943,-12944], -[1,3,8046], -[0,8047,8048,8049,5], -[0,-989], -[0,-426,-3136,-4036,-3037,-1344,-1415,-1534,-1639,-1942,-2127,-2131,-2137,-2141,-2200,-2375,-2388,-2410,-8256], -[0,-2127,-5260], -[1,3,8051], -[0,0,8052,7,5], -[0,-633], -[1,3,8054], -[0,8055,8056,254,10], -[0,-2694,-4007,-649,-658,-1119,-1889,-2234,-2279,-10098,-909,-2193], -[0,-12945,-22,-23,-32,-3194,-26,-35,-6062,-36,-12946,-37,-3368,-3077,-3204,-38,-40,-41,-42,-44,-46,-47,-12947,-12948, --12949,-12950,-3872,-4020,-237,-269,-12951,-12952,-12953,-12954,-12955,-5038,-3983,-367,-5052,-12956,-12957,-12958,-8355, --4776,-12959,-10100,-10101,-3269,-12960,-3732,-12961,-5085,-5033,-7080,-3198,-12962,-12963,-3036,-4035,-3850,-3044, --12964,-5587,-12965, --8523,-12966,-3040,-3052,-6633,-3199,-12967,-6832,-5673,-12968,-12969,-4204,-8559,-5900,-461,-12970,-2624,-502,-507,-512, --12971,-8561,-553,-6386,-635,-640,-651,-12972,-2740,-719,-12973,-724,-6842,-6394,-736,-737,-743,-769,-771,-2745,-7189, --7026,-812,-5034,-6381,-12974,-997,-1047,-1072,-1107,-1273,-1336,-1337,-6388,-1343,-2773,-12975,-1354,-10697,-1401,-1429, --1460,-1465,-8562, --12976,-1582,-1643,-1683,-1699,-12977,-9548,-1734,-1816,-6378,-3447,-1827,-1848,-1851,-1864,-6184,-1903,-7164,-1915, --7165,-2791,-1927,-1929,-1930,-1934,-1958,-1977,-6387,-1999,-2041,-2082,-2163,-2177,-2178,-12978,-8578,-2194,-2231,-2233, --11463,-6390,-6375,-4195,-12979,-6383,-2269,-3921,-2323,-12980,-2334,-2335,-2343,-6391,-6384,-2594,-12981,-2444,-6380, --12982,-10052,-2501,-2531,-2564], -[1,3,8058], -[0,0,8059,8060,9], -[0,-6068,-548,-6070,-6071,-8122,-6072,-6081,-6082,-6083,-550,-558,-8121,-7993,-7938,-628,-629,-8116,-7945,-8119,-8118, --902,-8003,-8004,-12983,-8117,-1654,-1963], -[0,-8123,-5923], -[1,3,8062], -[0,8063,8064,8065,5], -[0,-10415,-1863,-1889,-2271], -[0,-652,-1654,-2250], -[0,-12984,-775,-12985,-2149,-3161,-5553,-10733,-10732,-5845,-6408], -[1,3,8067], -[0,8068,8069,8070,8], -[0,-668,-1022,-1876], -[0,-1168,-1654,-2198], -[0,-7419,-11441,-5562,-1168,-1817], -[1,3,8072], -[0,0,8073,8074,5], -[0,-468,-2322], -[0,-9291,-510,-5924,-5865,-6235,-11727,-5839,-12986], -[1,3,8076], -[0,0,0,8077,4], -[0,-12987,-12988,-12989,-8408,-12990,-12991], -[1,3,8079], -[0,33,8080,8081,9], -[0,-12992,-3,-367,-4007,-3035,-3044,-3621,-3037,-3714,-4372,-3625,-12993,-427,-428,-556,-664,-12994,-712,-714,-767,-796, --7653,-930,-932,-10031,-1069,-1077,-1107,-6783,-1344,-5726,-1534,-1548,-1646,-1654,-1753,-1771,-4099,-6184,-1942,-1961, --2127,-12995,-12996,-2137,-2195,-2200,-2210,-2211,-2234,-2314,-2379,-2388,-2389,-12997,-12998,-12999,-2410,-2449,-13000, --2501], -[0,-12990,-12991,-13001,-13002,-13003,-13004,-6980,-13005,-6948,-6950], -[1,3,8083], -[0,0,31,8084,9], -[0,-640,-13006,-13007,-9594,-2155,-7107,-13008], -[1,3,8086], -[0,8087,8088,8089,4], -[0,-1365,-2177,-2550], -[0,-5834,-515,-516,-887,-932,-13009,-1788,-2322], -[0,-8403,-10483,-1764,-13010,-6818,-9594,-13011], -[1,3,8091], -[0,8092,8093,8094,4], -[0,-13012,-13013,-510,-13014,-668,-719,-13015,-724,-729,-743,-744,-746,-13016,-888,-1004,-1010,-13017,-1107,-13018,-13019, --12902,-13020,-13021,-13022,-13023,-13024,-1646,-13025,-1840,-1851,-1878,-1965,-13026,-13027,-13028,-2177,-2185,-2187, --13029,-13030,-2418,-2453,-13031], -[0,-589,-733,-932,-1003,-1077,-13032,-1654,-1783,-1888,-13033,-13034,-13035,-13036,-13037,-13038,-2198,-2229,-2293,-2359], -[0,-13039,-13040,-1004,-13041,-13042,-3817,-3816,-1818,-2228], -[1,3,8096], -[0,8097,8098,8099,5], -[0,-13043], -[0,-2322,-468,-13044,-633,-725], -[0,-6656,-6557,-13045,-7723,-5874,-5559], -[1,3,8101], -[0,8102,8103,8104,8], -[0,-823,-930,-1333,-1396,-13046,-1889], -[0,-932,-1654,-2210,-13047], -[0,-3264,-3215,-7722,-7723], -[1,3,8106], -[0,8107,0,8108,5], -[0,-679,-1361,-2232], -[0,-5553,-3754,-2162,-3277,-775], -[1,3,8110], -[0,8111,8112,8113,5], -[0,-9548], -[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-621,-767,-774,-778,-824,-825,-909,-932,-940,-6929,-958,-959,-960,-965,-967, --978,-1041,-2629,-1110,-1344,-1415,-1534,-13048,-1623,-1743,-13049,-1771,-1942,-2162,-3572,-2177,-2251,-2275,-2410,-2411, --2501,-2503,-2505], -[0,-2162,-9264,-2501,-5932], -[0,44,15,16,9], -[1,3,8116], -[0,0,8117,7,8], -[0,-1942,-2319], -[1,3,8119], -[0,8120,8121,8122,9], -[0,-13050], -[0,-13051,-652,-13052,-932,-1446], -[0,-4058,-856], -[1,3,8124], -[0,8125,8126,48,4], -[0,-469,-470,-5329,-4049], -[0,-824,-1415,-1344,-932,-825,-1110,-2501,-1942,-21,-190,-533,-2410,-23,-3037,-1534,-1771,-86,-965,-3560,-2251,-40,-959, --960,-958,-6929,-978,-940,-967,-3748,-3307], -[1,3,8128], -[0,8129,8130,8131,5], -[0,-2006,-2019,-2634], -[0,-2410,-3037,-3040,-3052,-518,-1889,-2318,-932,-10813], -[0,-13053,-13054,-1072,-5375,-770,-13055,-5375,-3634,-8576,-13056,-3551,-13057,-13058,-5376,-13059,-11152,-5150], -[1,3,8133], -[0,8134,0,8135,5], -[0,-899,-1723,-6127], -[0,-13060,-13061,-13062,-2171], -[1,3,8137], -[0,0,0,8138,4], -[0,-13063,-6555,-770], -[1,3,8140], -[0,8141,8142,8143,8], -[0,-13064,-1468,-2359,-2531], -[0,-190,-5980,-932,-940,-964,-965,-7353,-967,-1004,-1110,-1281,-1446,-1654,-1656,-1685,-1942,-2186,-2210,-2297], -[0,-4864,-11467,-3634,-11468,-12350], -[1,3,8145], -[0,8146,8147,8148,5], -[0,-7040,-13065,-3472,-7041,-7042,-13066,-755,-812,-13067,-999,-1040,-13068,-1100,-13069,-9464,-1315,-13070,-1549,-1610, --6294,-1639,-13071,-10507,-3609,-2115,-2177,-3642,-2550], -[0,-3037,-3639,-519,-652,-686,-796,-851,-13072,-1077,-1116,-1442,-1547,-8314,-13073,-1722,-1772,-13074,-1942,-2910,-2210, --13075,-2331,-2341], -[0,-13076,-4864,-5887,-3551,-5897,-8403,-9244,-2177,-9318], -[1,3,8150], -[0,8151,8152,7,4], -[0,-44,-13077,-13078,-2997,-13079,-703,-13080,-1548,-1549,-1967,-2029,-2804,-2192], -[0,-13081,-21,-23,-26,-34,-35,-37,-38,-40,-41,-43,-13082,-4227,-13083,-13084,-4773,-3040,-427,-428,-3807,-13085,-528,-534, --13086,-539,-540,-13087,-553,-12468,-13088,-664,-13089,-747,-767,-795,-812,-838,-855,-8245,-915,-932,-933,-940,-3071, --958,-962,-964,-969,-970,-1021,-1103,-1168,-1228,-1266,-1344,-6273,-1471,-1475,-12832,-1476,-1482,-1483,-1492, --1526,-1534,-1654,-1942,-1955,-1978,-2000,-2006,-13090,-13091,-2018,-2019,-2024,-2027,-2043,-2044,-13092,-13093,-13094, --2052,-13095,-2125,-13096,-13097,-7708,-2210,-2211,-2214,-2253,-13098,-2335,-13099,-2347,-2410,-2460,-2501,-2502,-2503, --2504], -[1,3,8154], -[0,8155,8156,8157,4], -[0,-932,-942,-943,-13100,-958,-965,-968,-969,-13101], -[0,-3781,-1631,-1650,-2125,-2151,-2322], -[0,-8180,-13102,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8175,-1445,-1452,-7148,-8184,-8169,-13103,-5493, --2250,-8185,-5553,-8186,-8187,-8174], -[1,3,8159], -[0,0,8160,7,5], -[0,-4298,-4300,-589,-2319], -[1,3,8162], -[0,8163,191,8164,4], -[0,-812,-907,-929,-990,-1072,-1335,-1641,-1681,-1800,-1997,-2255], -[0,-5142,-6656,-3844], -[1,3,8166], -[0,8167,8168,8169,5], -[0,-13104,-3895,-13105,-13106,-13107,-13108,-13109,-13110,-1555,-1572,-1646,-9375,-13111,-13112,-13113,-1983,-13114, --13115,-13116], -[0,-3890,-3893,-13117,-3037,-510,-13118,-756,-13119,-1276,-13120,-8936,-1942,-13121,-13122,-13123,-13124,-13125,-2410], -[0,-11151,-5196,-11148,-13126,-6209,-13127,-11150,-6210,-13128,-3161,-13129,-13130,-13131,-3481,-10809], -[1,3,8171], -[0,0,8172,8173,11], -[0,-13132,-510,-589,-932,-1660,-2319], -[0,-2180,-10432,-13133,-11385], -[1,3,8175], -[0,8176,8177,8178,5], -[0,-13134,-2446,-812,-13135,-1548,-1666,-2177,-2451,-1369,-3198,-13136,-13137,-1667,-6109,-13138,-10416], -[0,-1857,-1788,-664,-461,-826,-2763,-1344,-1654,-1826,-2210,-932,-13139,-1692,-2125,-674,-928,-13140,-13141,-2245,-10417, --10418,-13142,-749,-767,-1026,-13143,-1828,-13144,-12846,-1078,-2211,-2410,-3035,-3037,-1002,-1534,-3621,-4372,-11747, --305,-3044,-13145,-13146,-13147,-86,-665,-13148,-1609,-2174,-7382,-2234,-960,-964,-13149,-428,-13150,-9404,-427,-13151, --13152], -[0,-1691,-13140,-3742,-6321,-10425,-1857,-1682,-13153,-13139,-10424,-10418,-10704,-13154,-1818,-3967,-13155,-7685,-7773], -[1,3,8180], -[0,0,8181,8182,4], -[0,-589], -[0,-6233,-12343,-3214,-3756,-4055], -[1,3,8184], -[0,8185,37,8186,6], -[0,-812,-13156,-13157,-13158,-13159,-13160,-13161,-13162,-13163,-13164,-13165,-13166,-13167,-13168], -[0,-13169,-13170,-13171,-13172,-13173,-11573,-1434,-13174,-13175,-13176,-10225,-13177,-13178,-10227,-2183,-13179,-13180, --5827,-3975,-13181], -[1,3,8188], -[0,8189,8190,8191,4], -[0,-469,-502,-623,-668,-700,-724,-13182,-13183,-5977,-6793,-13184], -[0,-1116,-2392,-2391,-1344,-932,-2469,-1942,-2410,-1534,-50,-3732,-13185,-3664,-13186], -[0,-2455,-2184,-11151,-1339], -[1,3,8193], -[0,8194,8195,8196,6], -[0,-990,-1072,-1681,-1840,-2155], -[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293,-13187], -[0,-1004,-13188,-5401], -[1,3,8198], -[0,8199,8200,7,11], -[0,-459,-7334,-812,-929,-1335,-1641,-1840], -[0,-465,-932,-963,-1654,-1788,-2293], -[1,3,8202], -[0,8203,81,7,5], -[0,-907,-929,-1840,-2178], -[1,3,8205], -[0,8206,8207,8208,4], -[0,-13189,-1640,-1645], -[0,-86,-3307,-13190,-13191,-521,-664,-665,-720,-932,-940,-1077,-1344,-1534,-1573,-5969,-1654,-1729,-1788,-1942,-1972, --13192,-2210,-2211,-2323], -[0,-13192,-13193,-5819,-5817,-13194,-5937,-13195,-5940,-3258,-3100,-13196], -[1,3,8210], -[0,8211,8212,8213,5], -[0,-13197,-13198,-13199,-13200,-3698,-13201,-13202,-13203,-11209,-13204,-5810,-13205,-13206,-13207,-11197,-620,-4735, --13208,-5813,-13209,-1805,-7223,-2531], -[0,-13210,-4171,-13211,-3136,-3037,-3738,-4204,-427,-428,-13206,-5813,-928,-13212,-932,-940,-8246,-948,-958,-967,-1344, --1415,-13213,-13214,-13215,-13216,-1456,-1766,-1942,-5815,-2251,-2375,-2379,-2892,-2410,-2446], -[0,-3112,-5817,-3634,-1415,-13192,-4216,-2469,-5819,-5941,-5943,-5951,-13217], -[1,3,8215], -[0,8216,0,7,4], -[0,-10906,-6130], -[1,3,8218], -[0,0,8219,8220,11], -[0,-528,-558,-566,-664,-932,-1059,-13218,-1344,-1534,-1654,-1942], -[0,-2192,-8495,-6439,-10661,-7378,-13219], -[1,3,8222], -[0,8223,8224,8225,4], -[0,-2177,-13220,-8612], -[0,-8771,-2384,-13221,-2324,-1733,-13222,-1018,-13223,-2581,-1723,-13224,-1448,-13225,-13226,-13227,-13228,-13229], -[0,-9235,-7715,-5315,-5316,-9807,-8642,-3839,-8707,-13230,-6527,-10095,-13231,-7066,-10711,-13232,-13233], -[1,3,8227], -[0,0,8228,8229,5], -[0,-5834,-516,-5835,-932,-993,-1365,-1408,-1777,-1788,-2156,-2322], -[0,-3957,-1838,-13234,-5550], -[1,3,8231], -[0,8232,8233,8234,4], -[0,-999,-1026], -[0,-519,-668,-710,-932,-934,-958,-1442,-1788,-13235,-13236,-2200,-13237], -[0,-2195,-6836,-11642,-5550,-13238,-9218,-1410,-12397], -[1,3,8236], -[0,8237,8238,8239,8], -[0,-1699], -[0,-664,-1127,-1654,-913,-1132,-10682,-2351,-1158,-13239,-9256,-1130,-1156,-1542,-1136,-1144,-1148,-5295], -[0,-13240,-13241,-7231,-2446,-13242,-13243,-3005,-2197,-13244], -[1,3,8241], -[0,8242,8243,8244,4], -[0,-13245,-13246,-13247,-13248,-13249], -[0,-615,-932,-13250,-1654,-1942,-2127,-2137,-2388,-2410], -[0,-4004,-3440,-507,-2198], -[1,3,8246], -[0,75,8247,8248,4], -[0,-1127,-1134,-1136,-1144,-1148,-1150,-1151,-13251,-1152,-1163,-1449,-1542,-1856,-13252,-2177,-13253,-2234], -[0,-1599,-6473], -[1,3,8250], -[0,8251,8252,8253,8], -[0,-1646,-2195], -[0,-526,-558,-566,-932,-934,-8246,-958,-1442,-1654,-1788,-2125,-13235,-13254,-13236,-2198], -[0,-2195,-5550,-11642,-6836,-6837,-8421,-687,-3977], -[1,3,8255], -[0,0,8256,8257,9], -[0,-7080,-3037,-9867,-5866,-652,-1942,-2319,-2379,-2402,-2410], -[0,-5395,-1000], -[1,3,8259], -[0,8260,8261,8262,5], -[0,-474], -[0,-1273,-1948,-2127,-2129,-2416], -[0,-5176,-13255,-10724,-659], -[1,3,8264], -[0,8265,8266,8267,8], -[0,-13256,-13257,-812], -[0,-13258,-13259,-3198,-3136,-3037,-928,-11714,-1415,-2379,-2410], -[0,-5889,-13260,-12263], -[1,3,8269], -[0,0,8270,8271,5], -[0,-2384,-1415,-1344,-1868,-932,-2125,-2127,-1942,-767,-533,-23,-3136,-726,-13261,-1952,-44,-50,-40,-953,-13262,-32,-3326, --2140,-3561,-13263,-350,-351,-8280,-13264,-536,-37], -[0,-5070,-6814,-11889,-9668,-3161,-2006,-475,-2476,-3122,-6209,-3100], -[1,3,8273], -[0,8274,8275,8276,4], -[0,-4884,-357,-13265,-834,-2297], -[0,-23,-4885,-4886,-4887,-4888,-13266,-11471,-13267,-539,-812,-829,-928,-13268,-10877,-1099,-1534,-1654,-1788,-1942,-1978, --2125,-2177,-2195], -[0,-2210,-4004,-3634,-5119,-8611,-4216,-8959,-4123,-13269,-4215,-2533,-507], -[1,3,8278], -[0,0,8279,8280,9], -[0,-190,-652,-664,-932,-1654,-1942,-2210], -[0,-664,-6537,-4865,-13270,-13271,-2210,-3634,-7244,-7245,-7243], -[1,3,8282], -[0,8283,8284,8285,5], -[0,-4166,-3544,-510,-648,-13272,-13273,-1650,-2177,-6920,-1004,-1442,-2105,-927,-719,-1645,-1464,-1276,-617,-724,-1335, --1304,-13274,-13275,-2062,-13276], -[0,-1654,-615,-633,-13277], -[0,-6011,-5897,-7737,-11722,-3209,-1971,-3844], -[1,3,8287], -[0,8288,0,7,6], -[0,-13278,-5036,-13279], -[1,3,8290], -[0,8291,0,8292,11], -[0,-13280,-1532,-13281,-1863,-2654], -[0,-2214,-687,-985,-6187,-13282,-13283], -[1,3,8294], -[0,89,56,8295,5], -[0,-13284,-13285,-13286,-3445,-3100,-7566], -[1,3,8297], -[0,8298,8299,8300,10], -[0,-13287,-13288], -[0,-2501,-2376,-2410,-2503,-13289,-2502], -[0,-3445,-13290,-3690,-13192,-7685], -[1,3,8302], -[0,0,14,8303,5], -[0,-1847,-13291,-2218,-11635,-7084,-5845], -[1,3,8305], -[0,8306,8307,8308,4], -[0,-482,-13292], -[0,-519,-668,-13293,-2269,-2541], -[0,-4783,-2265,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958, --5554], -[1,3,8310], -[0,8311,86,8312,4], -[0,-9371,-677,-5500,-13294,-13295,-10347,-13296,-1705,-1856,-13297,-1951,-1959,-13298,-2330,-2550], -[0,-13299,-3015,-9460,-1764,-1380], -[1,3,8314], -[0,0,8315,8316,5], -[0,-11254,-3470,-3471,-3311,-652,-1654,-2174,-2250], -[0,-2223,-2222,-2265,-2443,-9312,-4112,-2435], -[1,3,8318], -[0,0,8319,8320,4], -[0,-756,-13300,-1654,-1788], -[0,-2223,-2222,-2435,-13301], -[0,44,15,16,11], -[1,3,8323], -[0,8324,0,8325,4], -[0,-668,-1370,-1646,-2062,-13302,-2269,-2343], -[0,-3240,-13303,-13304,-2250,-13305,-10317,-13306,-13307,-13308,-13309], -[1,3,8327], -[0,8328,8329,8330,5], -[0,-523,-13310,-812,-1063,-1070,-1100,-1548,-2165,-2270,-6587,-13311], -[0,-190,-3198,-3734,-3044,-3037,-13312,-6594,-617,-714,-834,-855,-883,-932,-1004,-1045,-1107,-1654,-1788,-1942,-2062, --2177,-2187,-2198,-2210,-2234,-10402,-2402,-2410,-2411], -[0,-2227], -[1,3,8332], -[0,8333,0,8334,4], -[0,-459,-13313,-754,-812,-5454,-13314,-4208], -[0,-8841,-3161,-2512,-9043,-997,-9005,-13315], -[1,3,8336], -[0,8337,0,8338,4], -[0,-13316,-812,-5455,-4208], -[0,-8841,-3161,-2512,-9043,-997,-3323], -[1,3,8340], -[0,8341,8342,8343,4], -[0,-812,-13317,-10622,-1370,-2438], -[0,-633,-913,-932,-1003,-1168,-1208,-1243,-1244,-1252,-1262,-1471,-1472,-1473,-1475,-1482,-1654,-1972,-1976,-2187,-13318, --2461,-2463], -[0,-6224,-2512], -[1,3,8345], -[0,0,8346,7,8], -[0,-652,-855,-932,-1942,-940], -[1,3,8348], -[0,0,8349,7,6], -[0,-13239,-855,-2501], -[1,3,8351], -[0,8352,8353,48,6], -[0,-1351,-2232], -[0,-21,-23,-40,-86,-3307,-7166,-533,-767,-774,-824,-825,-932,-940,-958,-1344,-1415,-1534,-1623,-1771,-1942,-2251,-2501], -[1,3,8355], -[0,8356,8357,7,4], -[0,-6829,-2231], -[0,-633,-711,-1339,-1654,-2501], -[1,3,8359], -[0,0,92,8360,5], -[0,-5092,-3264,-7451,-13319,-7205,-1838,-6231], -[1,3,8362], -[0,8363,8364,8365,8], -[0,-13320,-13321,-13322,-9193,-13323,-674,-711,-719,-1026,-1119,-1122,-13324,-1127,-1134,-1136,-1137,-1138,-1140,-1148, --1149,-1160,-1276,-1304,-1333,-1440,-1442,-13325,-1460,-1548,-1610,-13326,-1889,-2162,-2312,-2359], -[0,-21,-23,-40,-43,-4710,-13327,-664,-665,-3629,-932,-964,-966,-974,-1654,-1753,-1942,-2123,-2125,-2210,-2211], -[0,-1122,-3671,-856,-13328,-13329,-3690,-4258,-3262], -[1,3,8367], -[0,8368,8369,7,8], -[0,-2346], -[0,-994,-8392,-8393,-8394,-13330], -[1,3,8371], -[0,0,8372,7,5], -[0,-13331,-13332,-11961,-1788,-1939,-2250,-2322], -[0,0,83,7,5], -[1,3,8375], -[0,0,8376,7,4], -[0,-1168,-1654,-932,-589,-1231,-1197,-1208,-1243,-1262,-13333,-1252], -[1,3,8378], -[0,8379,8380,8381,5], -[0,-615,-712,-714,-783,-1077,-1276,-13334,-3999,-1548,-1757,-7667,-13335,-9395,-2347,-2460,-2462,-13336,-13337], -[0,-664,-756,-1405,-1654,-1657,-13338,-13339], -[0,-13340,-9278,-13341,-775,-3754,-1521,-2162,-2244,-13342,-7419], -[1,3,8383], -[0,8384,8385,8386,4], -[0,-596,-1723,-6521,-2323], -[0,-932,-1654,-12894], -[0,-10424,-3742,-2245,-7685], -[1,3,8388], -[0,8389,8390,8391,5], -[0,-13343,-13344], -[0,-932,-6461], -[0,-8905,-2246,-9456,-7721,-5550,-8421,-8908,-3323], -[1,3,8393], -[0,8394,8395,8396,10], -[0,-9084], -[0,-4298,-4300,-589], -[0,-5387,-3578,-7107,-13345,-10908,-10930,-13346,-13347,-13348,-13349,-13350,-3264], -[1,3,8398], -[0,8399,91,8400,9], -[0,-2548], -[0,-2248,-4055,-2548,-9886,-10410,-7773,-6129,-13351,-13352,-3689,-7685,-856,-3445,-6857,-1671,-1050,-1691,-2245,-6597, --13353,-10425,-4055,-6917,-13354], -[1,3,8402], -[0,0,8403,7,11], -[0,-40,-533,-1415,-13355], -[1,3,8405], -[0,8406,8407,8408,6], -[0,-932,-943,-13100,-958,-965,-968,-969,-13101,-13356], -[0,-769,-1274,-1646,-13357,-2151,-5470,-2322], -[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2250,-8185,-5553, --8186,-8187,-8174], -[1,3,8410], -[0,8411,8412,8413,5], -[0,-668,-739,-13358,-741,-10524,-831,-8888,-13359,-1040,-1047,-12340,-2177,-13360,-2550], -[0,-664,-932,-943,-958,-966,-968,-1654,-1658,-1663,-1788,-2195,-13361], -[0,-739,-13362,-5887,-5886,-5962,-9318,-475,-2250], -[1,3,8415], -[0,8416,8417,8418,4], -[0,-502,-615,-13363,-812,-999,-13364,-4703,-2648], -[0,-3037,-13365,-664,-767,-829,-13366,-13367,-13368,-1116,-1457,-3809,-1646,-1654,-13369,-10652,-2174,-13370,-2210,-2211, --8527,-2250], -[0,-6657,-5921,-3844,-11818,-4004,-3590,-4116], -[1,3,8420], -[0,8421,8422,8423,5], -[0,-13371,-10926,-1093,-13372], -[0,-2330,-1754,-2424], -[0,-2254,-13373,-13374,-13375,-8841], -[1,3,8425], -[0,0,8426,8427,5], -[0,-790,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-1999,-9374], -[0,-1334,-9745,-707], -[1,3,8429], -[0,8430,8431,8432,4], -[0,-2531,-1805,-2066,-2177,-928,-6488,-13376,-4890,-13377,-12518,-407,-410], -[0,-888,-2564,-664,-834,-1107,-1431,-2213,-999,-1526,-1623,-3548,-2006,-2218,-8609,-1111,-1699,-1778,-13378,-928,-13379, --1085,-1442,-3447,-2114,-2358,-13380,-1885,-1942,-4893,-4204,-656,-719,-2578,-1864,-13381,-2019,-3654,-2400,-12982,-2528, --4370,-3517,-13382,-1863,-2231,-2269,-2410,-23,-9939,-3037,-769,-832,-13383,-47,-6192,-4894,-4918,-25,-13384,-3199, --13385,-831,-13386, --6467,-13387,-6447,-3772,-3778,-3660,-3735,-13388,-6744,-13389,-3896,-13390,-12695,-2383,-46,-163,-6630,-13391,-13392, --13393,-11751,-3194,-13394,-8523,-13395,-2044,-13396,-747,-13397,-7080,-13398,-4239,-13399,-13400,-13401,-13402,-13403, --13404,-5474,-2271,-13405,-13406,-13407,-13408,-406,-13409,-13410,-5322,-13411,-3776,-409,-13412,-13413,-4008,-8273, --2641,-13414,-3459,-13415,-13416,-13417,-5296,-13418,-13419, --13420], -[0,-2257,-3095,-3098,-13421,-13422,-2006,-2634,-9736,-2034,-3138,-2476,-475,-2299,-3176,-4902], -[1,3,8434], -[0,8435,8436,8437,8], -[0,-1338], -[0,-13423,-4762,-4763,-4754,-13424,-13425,-13426,-13427,-4749,-4758,-13428,-407,-409,-3136,-4961,-3040,-932,-13429,-1415, --4980,-1419,-1942,-1967,-1978,-2006,-2019,-2162,-2163,-2257,-2375,-2410,-2516,-2548], -[0,-4900,-2257,-13430,-3098,-856,-3100,-13431,-13432,-13433,-13434,-13435,-1783], -[1,3,8439], -[0,8440,0,147,5], -[0,-3,-23,-40,-3538,-3539,-668,-674,-679,-714,-719,-755,-3542,-1022,-13436,-1077,-1107,-1276,-1320,-1349,-13437,-1460, --1548,-1577,-3543,-3544,-1610,-1646,-3546,-3547,-11926,-9151,-2177,-2368,-2378,-2446], -[1,3,8442], -[0,68,15,16,11], -[1,3,8444], -[0,212,8445,8446,5], -[0,-13438,-13439,-1654,-2198], -[0,-13440,-5827], -[1,3,8448], -[0,0,8449,8450,4], -[0,-351,-3621,-3037,-789,-885,-1654,-7210,-1942,-2127,-2135,-2136,-2198,-2379,-2392,-2410], -[0,-5827,-6408,-788,-7208,-3445,-3100], -[1,3,8452], -[0,8453,56,8454,5], -[0,-7590,-305,-7565,-1061,-1406,-13441,-5721], -[0,-13442,-13443,-3445], -[1,3,8456], -[0,0,0,8457,9], -[0,-2264,-3276,-2265,-4123,-4121], -[1,3,8459], -[0,0,8460,8461,4], -[0,-1168,-1177,-1231,-1243,-13444,-1262,-11473,-2416], -[0,-2265,-6816,-13445,-13446,-13447,-13448,-788,-3264,-3223,-1838,-3264,-9702,-6817,-11647,-6422,-6420,-5559,-9692], -[1,3,8463], -[0,8464,8465,8466,4], -[0,-3164,-13449,-1320,-1549,-13450,-13451,-13452], -[0,-13453,-13454,-12508], -[0,-707,-7347,-8388,-3264,-13455,-13456,-6694,-9357,-13457,-2265,-6817,-9702,-7651,-5554,-13458], -[1,3,8468], -[0,8469,14,8470,4], -[0,-13459,-2269], -[0,-2265,-7472,-4112,-6730,-13460,-6787,-13461,-13462,-13463,-6786,-13464,-13465,-5514,-5559,-5563,-687,-3958,-3974,-4000, --13466,-13467,-13468,-13469,-13470,-13471], -[1,3,8472], -[0,8473,8474,8475,5], -[0,-2737,-2738], -[0,-3037,-652,-2736,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-6231,-6422,-5559,-3264,-7472,-4846,-8034,-3223], -[1,3,8477], -[0,8478,238,8479,4], -[0,-481], -[0,-6817,-11647,-6694,-5514,-3770,-712,-5535,-714,-3974,-4000,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545, --3958,-5554], -[1,3,8481], -[0,0,14,8482,4], -[0,-6817,-9310,-6472,-7154,-9311,-4112,-2443,-9312,-6694,-6693,-11647,-5554,-2265], -[1,3,8484], -[0,0,8485,8486,4], -[0,-519,-1612,-2384,-2541], -[0,-4055,-6817,-3485,-6694,-6693,-11647,-6810,-1838,-727,-3870,-6849,-2444,-6845,-5558,-8292], -[1,3,8488], -[0,0,8489,8490,4], -[0,-1788,-664,-1722,-1654,-932,-2379,-1942,-1729,-2410,-3035,-3037,-3621,-13472,-665,-958,-1656,-940,-967,-4269,-428, --4628,-427], -[0,-2272,-13473,-13474,-3690], -[1,3,8492], -[0,8493,8494,8495,5], -[0,-510,-812,-13475,-13476,-1735,-13477,-1758,-1813,-2059,-13478,-13479,-13480,-13481,-13482,-12003,-13483,-13484,-13485, --2518,-1464,-642,-13486,-797,-1298,-1370,-1521,-1548,-1579,-10695,-11015,-13372,-1666,-2062,-9798,-2245,-13487,-10690, --13488,-13489,-13490,-11800,-2531], -[0,-932,-1445,-2319], -[0,-4344,-13491,-11755,-13492,-10705,-13493,-5804,-9733,-5805,-7641,-4161,-9844,-727,-3015,-8901,-8904,-13494,-1066,-5889, --11021,-13495,-5545,-10706,-9800,-13496,-10412,-13497,-11230,-13498,-1764,-13499,-13500,-13501,-6187,-13502,-1958,-6479, --11429,-11722,-13503,-4043,-5196,-13504,-13505,-8027,-13478,-13506,-13507,-12003,-13485,-2273,-13508,-2295,-7307,-4123, --13509], -[1,3,8497], -[0,8498,8499,8500,4], -[0,-13510,-13511,-13512,-13513,-668,-671,-5971,-719,-1395,-1460,-13514,-1942,-2355], -[0,-6327,-2843,-50,-86,-3307,-13515,-13516,-3989,-13517,-3035,-3037,-5011,-3738,-428,-3311,-13518,-3312,-461,-2834,-664, --932,-964,-969,-989,-1077,-13519,-1344,-13520,-1448,-13521,-1521,-1534,-5273,-10918,-5670,-1654,-9002,-1771,-4916,-2162, --2177,-2193,-13522,-2286,-2410,-2429,-2446,-2548], -[0,-13523,-5553,-13524,-775,-3099,-7205,-2162,-3754,-5739,-13525,-2006,-3163,-4901], -[1,3,8502], -[0,0,8503,48,4], -[0,-1415,-2162,-1344,-1449,-1623,-774,-932,-2177,-825,-2501,-920,-1942,-767,-21,-533,-778,-23,-1041,-1534,-1771,-2163, --2503,-86,-2251,-40,-2505,-958,-940,-1419,-3307,-7166], -[1,3,8505], -[0,8506,8507,8508,5], -[0,-2277], -[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3136,-427,-428,-932,-967,-4814,-1110,-1344,-1415,-1534,-1942,-2127,-2375, --2379,-2410], -[0,-2276,-775,-5553,-3214,-7208,-9680], -[1,3,8510], -[0,8511,8512,8513,6], -[0,-1374], -[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3267,-3136,-3037,-427,-428,-932,-967,-4814,-1110,-1344,-1415,-1534,-1771, --1942,-2910,-2127,-2375,-2379,-2387,-2410], -[0,-2277,-9339,-5553,-3215,-775,-7208,-9680], -[1,3,8515], -[0,8516,8517,8518,11], -[0,-3776,-5577,-13526,-13527,-786,-1889,-2192,-3768,-2387], -[0,-23,-3341,-3840,-26,-36,-3203,-40,-41,-42,-3267,-406,-407,-409,-410,-3043,-3136,-13528,-3037,-3040,-3052,-13529,-3141, --3081,-13530,-533,-535,-8560,-6046,-3563,-1415,-1419,-3667,-1428,-1440,-1942,-1967,-2006,-2019,-13531,-2034,-2052,-2127, --2131,-2133,-2137,-2138,-2139,-2140,-13532,-13533,-2410], -[0,-2006,-775,-3771,-2278,-4134], -[1,3,8520], -[0,8521,8522,8523,11], -[0,-2740], -[0,-21,-23,-36,-3077,-3373,-3204,-38,-40,-41,-43,-44,-47,-3040,-519,-3766,-9723,-742,-932,-940,-1344,-1543,-1942,-1952, --2006,-2019,-2174,-2231,-12979,-3768,-13534,-2410], -[0,-3766,-2455,-13535,-3771,-775], -[1,3,8525], -[0,8526,22,8527,10], -[0,-635,-1931], -[0,-6413,-775,-13536,-13537,-7192,-1889,-3583,-2280], -[1,3,8529], -[0,8530,8531,8532,6], -[0,-93,-7195,-94,-95,-12147,-98,-9352,-2840,-755,-777,-781,-812,-1026,-11676,-8142,-6197,-1111,-13538,-1327,-1353,-3190, --8143,-1396,-1499,-13539,-1630,-1639,-1759,-1863,-1889,-1929,-1931,-1934,-2267,-2591,-13540,-4002,-2530], -[0,-50,-13541,-5121,-13542,-13543,-13544,-5685,-3198,-13545,-13546,-13547,-13548,-4036,-6928,-13549,-8335,-13550,-9284, --589,-722,-823,-932,-13551,-958,-959,-1344,-1415,-13552,-1428,-1534,-4984,-1771,-4916,-1904,-1906,-12130,-13553,-1930, --1942,-2094,-2289,-2410], -[0,-3771,-775,-1521,-7148,-8170,-1599,-2162,-3754,-2281,-2289], -[1,3,8534], -[0,8535,8536,8537,9], -[0,-3085], -[0,-13542,-13543,-932,-13551,-1344,-1534,-1771,-1942,-2094,-2281], -[0,-2281,-13554,-2250], -[1,3,8539], -[0,0,8540,8541,5], -[0,-1788,-1415,-1344,-1868,-855,-932,-708,-2402,-1942,-13555,-767,-2281,-21,-533,-13556,-5128,-2410,-23,-5870,-1534,-1637, --43,-86,-2174,-40,-13557,-959,-977,-958,-3471,-13552,-3842,-940,-967,-2405,-42,-428,-3470,-3307,-935,-427,-3363,-5585, --26,-36], -[0,-13558,-2281,-775,-3754,-1521,-7148,-13559,-3833,-5924,-13560,-712,-13561], -[1,3,8543], -[0,8544,8545,8546,4], -[0,-1889,-13562], -[0,-932,-13563,-940,-1110,-1344,-1415,-12241,-13552,-1428,-1534,-1904,-12130,-13564,-1942,-13565,-2281], -[0,-13558,-2281,-775,-7148,-7154], -[1,3,8548], -[0,8549,8550,8551,4], -[0,-781,-1396,-1499,-1620,-13566,-13567,-1931,-1934], -[0,-722,-767,-932,-13568,-1344,-1415,-13552,-1534,-1763,-1889,-12130,-1930,-1942,-2281], -[0,-775,-9231,-7148,-8170,-3754,-2281,-13558], -[1,3,8553], -[0,8554,128,8555,6], -[0,-28,-812,-1107,-2165,-2231], -[0,-775,-3215,-5553,-9406,-1409,-6784], -[1,3,8557], -[0,8558,8559,8560,6], -[0,-1026,-1759], -[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-589,-13569,-767,-774,-778,-824,-825,-932,-940,-6929,-958,-959,-960,-965,-967, --978,-1110,-1344,-1415,-1534,-1623,-1717,-1771,-1942,-2000,-2251,-2275,-2286,-2411,-2501], -[0,-2501,-5932,-2286], -[1,3,8562], -[0,0,0,8563,11], -[0,-775,-1889,-12209,-4132,-6806,-3215], -[1,3,8565], -[0,8566,8567,8568,5], -[0,-723,-13570,-812,-13106,-1069,-1070,-1636,-1640,-1983], -[0,-21,-23,-38,-40,-44,-86,-3307,-571,-7124,-11178,-617,-633,-744,-767,-932,-946,-952,-966,-1004,-1010,-1053,-1098,-1344, --1534,-1610,-1654,-1685,-1788,-2094,-2099,-2125,-2198,-13571,-13572,-2541,-2568], -[0,-9733,-5998,-5998,-3690,-510,-5867,-523,-5391,-3323,-13573,-1116,-1334,-1334,-1342,-9128,-1961,-1961,-5923,-2105,-2105, --9176,-13503,-3691,-2122,-13574,-2291,-7430,-6408,-2533,-2540], -[1,3,8570], -[0,8571,8572,7,6], -[0,-10528], -[0,-3198,-11232,-3037,-589,-10300,-1671,-8973,-2410,-2469], -[1,3,8574], -[0,8575,8576,8577,5], -[0,-1636,-2291,-746], -[0,-1788,-1722,-1654,-2210,-932,-2198,-1004,-1972,-617,-744,-86,-958,-934,-3307], -[0,-3440,-1334,-2105,-2291,-4873,-4004,-3634], -[1,3,8579], -[0,8580,8581,8582,4], -[0,-615,-1636], -[0,-664,-665,-2123,-2517,-617,-744,-1004,-1654,-2198], -[0,-2293,-2291,-2105,-4873,-3440,-1334,-4004,-3634,-1961,-13575], -[1,3,8584], -[0,0,8585,8586,5], -[0,-2541,-519,-2384,-3037], -[0,-712,-5535,-714,-3974,-4000,-687,-5514,-3770,-3975,-5549,-5513,-5550,-2547,-3958,-6520,-13576,-13577,-6659,-13578, --13579], -[1,3,8588], -[0,8589,8590,8591,6], -[0,-3195,-3115,-5032,-426,-461,-5113,-8294,-703,-5034,-5035,-13580,-4788,-4789,-1588,-13581], -[0,-3180,-3983,-350,-351,-3266,-3989,-5114,-3037,-5040,-928,-2127,-2231,-2654,-2410,-2469], -[0,-2299,-11193,-3161,-3261,-7651], -[1,3,8593], -[0,8594,8595,8596,4], -[0,-3180,-679,-4787,-1863,-5037], -[0,-350,-4062,-351,-3561,-3267,-13582,-644,-2127,-2130,-4063,-2299,-2410,-13583,-13584,-11164,-11165,-13585,-13586], -[0,-2299,-687], -[1,3,8598], -[0,0,8599,8600,4], -[0,-23,-40,-86,-3307,-13587,-13588,-4776,-3037,-13589,-8336,-518,-5859,-711,-740,-932,-1521,-1889,-13590,-1907,-1942, --1974,-2162,-2286,-2289,-2299,-2410,-2469], -[0,-2299,-9263,-2410,-1521,-2286,-2162,-3754,-1974,-711], -[1,3,8602], -[0,8603,8604,8605,4], -[0,-2746,-1107,-2303,-510,-10310,-2460,-2542,-2550,-1442,-2520,-1689,-13591,-1566,-8054,-4733,-13592,-5981], -[0,-2541,-1415,-1521,-2162,-1880,-2286,-1870,-959,-960,-13593,-13594], -[0,-3167,-3843,-3839,-7715,-9278,-9279,-9471,-3262,-775,-2162,-1521,-2286,-3271,-9339,-3264,-9472,-9473,-9474,-1689,-7419], -[1,3,8607], -[0,8608,8609,8610,4], -[0,-719,-780,-781,-2888,-2746,-1863,-2165], -[0,-190,-5121,-350,-351,-3266,-5685,-7169,-3136,-3037,-13312,-3715,-767,-932,-1110,-1415,-1870,-1874,-1880,-1942,-2125, --2127,-2325,-2384,-2410], -[0,-2303,-3839,-7175,-1644], -[1,3,8612], -[0,8613,8614,8615,4], -[0,-824,-1570,-13595,-2415], -[0,-519,-526,-528,-556,-11733,-562,-566,-615,-932,-13596,-1626,-1650,-2210,-2501], -[0,-2501,-3862,-13597,-13595,-5196,-8615], -[1,3,8617], -[0,8618,8619,8620,8], -[0,-461,-823,-1107,-1460], -[0,-932,-1942,-2322,-13598], -[0,-4847,-13599,-3696,-8442,-856,-2305,-5885,-5886,-3262,-3960,-8443,-8444,-8445,-3438], -[1,3,8622], -[0,8623,8624,8625,4], -[0,-1111,-1442,-719,-13600,-13601], -[0,-932,-2469,-1942,-3664,-13602], -[0,-4847,-3671,-13603,-856,-3690,-9339,-3485], -[1,3,8627], -[0,0,131,8628,4], -[0,-3812,-4847,-3160,-2308,-1004,-856,-3671,-13604,-5406,-2307,-4101,-13605,-13606], -[1,3,8630], -[0,8631,8632,8633,4], -[0,-3434], -[0,-927,-1004,-13607,-1654,-1788,-1978], -[0,-4847,-1004,-3160,-4055,-856], -[1,3,8635], -[0,8636,8637,8638,6], -[0,-2416,-1813], -[0,-1548,-1004,-13608,-1654,-1003,-13609,-1521,-13610,-600,-13611,-1859,-633,-6656,-1446], -[0,-3110,-7651,-3264,-13432,-13612,-6876,-1004,-6301], -[1,3,8640], -[0,0,0,8641,9], -[0,-2311,-13613,-12449,-2363,-5270,-3162,-752,-1861,-3994,-3161,-13614,-12613,-13615,-3862,-2006,-2476,-13616], -[1,3,8643], -[0,8644,8645,8646,4], -[0,-13617,-13618,-13619], -[0,-617,-767,-1004,-13620,-1415,-1676,-2125,-2410], -[0,-2105,-1334,-1342,-3324,-633,-12397,-6367], -[1,3,8648], -[0,0,0,8649,9], -[0,-13621,-13622,-1673,-11230,-1819,-9261,-12578,-7084,-13623,-13624,-13625,-13626,-13627,-13628,-13629,-12218,-13630, --3708,-13631,-10412,-8801,-13632,-13633,-13634,-13635,-5150,-13636,-13637,-13638,-13639,-13640,-13641,-13642,-13643, --13644,-7606,-13645,-13646,-6524,-13647,-13648,-13649,-6712,-13650,-13651,-10245,-13652,-13653,-13654,-13655,-13656, --13657,-13658,-3445,-13173,-13659,-13660], -[1,3,8651], -[0,0,8652,7,4], -[0,-1805,-1496,-1654,-1650,-2125,-2127,-2334,-615,-1729,-13661,-8559,-2516,-2234,-4062,-2140,-3561,-13662,-351,-13663], -[1,3,8654], -[0,8655,8656,8657,4], -[0,-2531,-469,-754,-13664,-13665,-13666,-13667,-1548,-1676,-13668,-13669,-13670,-13671,-1004,-13672,-13673,-13674,-13675, --13676,-512,-617,-724,-737,-13677,-496,-44,-13678], -[0,-1708,-473,-13679,-13680,-2195,-13681,-722,-13682], -[0,-13683,-13684], -[1,3,8659], -[0,0,8660,8661,9], -[0,-5369,-2387,-932,-1111,-2127,-2469,-1942,-2410,-23,-3037,-40,-2132,-2411,-3664,-3326,-958,-5122,-6593,-13685,-3267, --351,-10022,-3344], -[0,-2318,-2316,-775,-3205,-13686,-13687,-1631,-9342,-13688], -[1,3,8663], -[0,0,8664,7,4], -[0,-815,-3037,-3751,-1588,-2232,-13689,-3195], -[1,3,8666], -[0,8667,0,8668,10], -[0,-13690,-13691,-13692,-13693,-13694,-13695,-13696,-13697,-13698,-13699,-13700,-13701,-13702,-13703,-13704,-13705,-13706, --13707,-13708,-13709], -[0,-507,-2319,-4004,-3634,-3161,-687,-13710,-13711], -[1,3,8670], -[0,8671,8672,8673,9], -[0,-668,-883,-1040,-1548,-1951,-10854,-13712,-2347], -[0,-13713], -[0,-2322,-2319,-1654,-4679,-6863], -[1,3,8675], -[0,0,8676,7,6], -[0,-1415,-932,-1110,-1942,-190,-533,-23,-965,-3560,-40,-959,-958,-6929,-978,-940,-967,-3748], -[1,3,8678], -[0,8679,8680,8681,9], -[0,-13714,-13715,-13716,-655,-821,-6369,-13717,-1065,-1097,-1107,-13718,-1285,-1370,-7394,-1646,-1659,-1794,-5849,-1795, --1797,-2114,-8057], -[0,-5834,-505,-516,-725,-767,-887,-13719,-5835,-921,-932,-6282,-1408,-1442,-13720,-1777,-1788,-2156,-2177,-2319,-8573], -[0,-2319,-4004,-13721,-507,-4865], -[1,3,8683], -[0,8684,8685,7,5], -[0,-13722,-13723,-9084,-11721,-13724], -[0,-2319,-1722,-2386,-13725,-2125,-2402,-1942,-11719,-3037,-908,-13726], -[1,3,8687], -[0,8688,8689,8690,5], -[0,-1976,-2325], -[0,-2125,-13727,-2250], -[0,-2323,-1076,-6656,-7738,-7421,-5827], -[1,3,8692], -[0,8693,8694,7,6], -[0,-13728,-13729,-13730], -[0,-13727,-2250,-725], -[1,3,8696], -[0,33,8697,8698,6], -[0,-6486,-6627,-3136,-3037,-427,-428,-756,-928,-932,-943,-958,-966,-968,-1415,-1942,-2375,-2410], -[0,-13731,-3555,-13732,-13733,-3100,-13734,-3445,-13735,-11074,-6235], -[1,3,8700], -[0,0,8701,8702,4], -[0,-6486,-13736,-13737,-3617,-6627,-3136,-3037,-4203,-427,-428,-617,-720,-796,-13738,-932,-943,-958,-966,-968,-1344,-1415, --1534,-1753,-7760,-1942,-2293,-2375,-2410], -[0,-13731,-3555,-13732,-13733,-3445,-13735,-6367,-1004], -[1,3,8704], -[0,8705,0,8706,8], -[0,-812,-1723,-6127], -[0,-13739,-13740,-13741,-13742,-13743,-596,-13744,-3445], -[1,3,8708], -[0,8709,8710,8711,8], -[0,-812,-1723], -[0,-190,-3561,-3198,-3037,-8612,-865,-932,-940,-972,-978,-1733,-1942,-2402,-2405,-2410,-2411,-2466,-6859,-2469], -[0,-13739,-13742,-2328,-3966,-3445], -[1,3,8713], -[0,8714,27,258,5], -[0,-2125,-1650], -[1,3,8716], -[0,8717,8718,8719,4], -[0,-1399,-5917,-2400,-13387], -[0,-3037,-519,-1849,-2363,-2384,-2541], -[0,-2330,-9214,-1847,-6656,-7421,-7420,-6909,-13745,-11846,-13746,-6555,-13747], -[1,3,8721], -[0,8722,0,8723,9], -[0,-10893,-13748,-13749,-13750,-13751,-13752,-13753,-13754], -[0,-3974,-4000,-5514,-687,-2547,-712,-13755,-13756,-5553,-3962,-13757,-12898,-13758,-5564,-3824,-6716,-6765,-13759,-13760, --13761,-12704,-6527,-7715,-9235,-8642], -[1,3,8725], -[0,8726,0,8727,11], -[0,-13762,-6372,-1370,-13763,-2347,-13764], -[0,-3824,-3974,-5514,-13765,-13766], -[1,3,8729], -[0,8730,8731,8732,6], -[0,-13767,-461,-719,-2234], -[0,-13768,-13769,-932,-8150,-985,-1654,-1939,-2127,-2177,-2231], -[0,-9216,-2334,-2415,-2416,-1644,-6684,-3214,-3217,-8108,-3184,-6052,-13770,-4795,-8165,-6434,-510,-5867], -[1,3,8734], -[0,8735,8736,8737,5], -[0,-2334,-1429,-2168,-2182,-3180], -[0,-824,-1415,-1344,-1623,-774,-932,-825,-928,-2501,-1942,-367,-767,-2416,-21,-190,-2410,-23,-3037,-1041,-1534,-1771, --2503,-11510,-86,-965,-3560,-13771,-2251,-40,-2411,-959,-748,-960,-958,-6929,-978,-940,-967,-3748,-6930,-3307], -[0,-9216,-2416,-2415,-2334,-2501,-7172,-6059,-6454,-9696,-9234,-6059,-6684,-1644,-7175,-7176], -[1,3,8739], -[0,8740,8741,8742,4], -[0,-13772,-13773,-13774,-13775,-13776,-717,-718,-10293,-1026,-10745,-7576], -[0,-1448,-1729], -[0,-2337,-4004,-4043,-687,-5119,-3634,-3673,-2322,-2319,-519,-1654], -[1,3,8744], -[0,8745,8746,8747,11], -[0,-615,-668,-1107,-1548,-1610,-1650,-13777,-13778], -[0,-3244,-190,-5294,-5767,-3036,-3044,-3037,-4372,-427,-428,-3664,-827,-932,-6611,-13779,-2210,-13780,-13781,-2391,-2392, --2410,-13782,-2469], -[0,-1599,-4004,-5119,-13783,-856,-3671], -[1,3,8749], -[0,8750,8751,8752,4], -[0,-23,-33,-37,-10983,-3395,-3383,-3376,-3384,-3393,-3350,-3385,-3374,-38,-40,-6056,-41,-44,-13784,-13785,-3037,-6558, --3442,-541,-6067,-13786,-7435,-664,-668,-13787,-711,-719,-812,-815,-824,-13788,-11460,-834,-13789,-11328,-5910,-3606, --999,-13790,-1111,-1119,-12933,-1341,-5458,-13791,-1366,-1392,-10697,-1393,-13792,-1399,-1460,-1548,-13793,-1591,-11015, --1666,-13794,-1689, --1699,-13795,-1839,-1866,-13796,-1880,-6467,-13797,-1966,-1982,-13798,-13799,-5915,-2115,-2160,-2177,-3169,-2234,-2270, --13800,-13801,-13802,-13803,-13804,-13805,-13806,-13807,-13808,-13809,-2359,-2369,-2410,-13810,-13811], -[0,-13812,-7590,-13813,-4066,-350,-6572,-351,-13814,-13815,-3035,-3198,-13816,-9939,-9283,-11011,-3622,-3735,-3199,-3172, --9660,-13817,-427,-428,-535,-579,-617,-13818,-13819,-665,-9077,-3050,-729,-754,-767,-13820,-930,-932,-13821,-7353,-1004, --13822,-1168,-1174,-13823,-1196,-1197,-1226,-13824,-13825,-8498,-1243,-13826,-1262,-3809,-1608,-1632,-1646,-13827,-1685, --13828,-1972,-2006,-13829, --2127,-2142,-2187,-2210,-7220,-2269,-13830,-2387,-2416], -[0,-13831,-5112,-4865,-6413,-3258,-3995,-3634,-4864,-4004,-4043,-4873,-507,-5855,-13832,-6948,-6950,-510,-5867], -[1,3,8754], -[0,8755,8756,8757,6], -[0,-7602,-13833,-501,-8864,-8898,-812,-13834,-851,-1098,-7772,-13835,-13836,-2324,-2359,-2426], -[0,-11344,-13837,-11339,-3198,-11347,-13838,-13839,-3628], -[0,-2340,-7606,-3634], -[1,3,8759], -[0,8760,8761,8762,5], -[0,-1548,-4654,-13840,-10846], -[0,-3037,-427,-428,-633,-13841,-13842,-767,-815,-13843,-13844,-1398,-1650,-1771,-1788,-2125,-2250,-13845,-13846,-2341, --2379,-5482,-2410], -[0,-4873,-3440,-4215,-8611,-4216,-13847,-11378], -[1,3,8764], -[0,8765,8766,8767,4], -[0,-4733,-573,-615,-13762,-719,-724,-735,-999,-1004,-13848,-1107,-1336,-1442,-1548,-1650,-1689,-1737,-1778,-13849,-2125, --2228,-13850,-13851,-8573,-2359], -[0,-13852,-633,-664,-7976,-13853,-674,-838,-932,-7979,-964,-1654,-2105,-13854,-2195,-2210,-2211,-2229,-2322], -[0,-3214,-3634,-11116,-4865], -[1,3,8769], -[0,0,8770,8771,4], -[0,-2319,-2322,-689], -[0,-5554,-4002,-9846,-4111,-10844,-6724], -[1,3,8773], -[0,0,8774,8775,4], -[0,-190,-351,-3266,-932,-13855,-952,-957,-960,-1110,-13856,-1446,-1588,-1880,-1978,-1989,-2127,-2393], -[0,-2344,-13857,-3214,-13858,-13859,-13860,-13861,-13862,-13863,-13864,-13865,-659,-3839,-5177], -[1,3,8777], -[0,0,8778,8779,4], -[0,-21,-23,-38,-40,-44,-3326,-534,-7156,-753,-932,-7157,-940,-967,-985,-1098,-13866,-7158,-1344,-1471,-1473,-1475,-1479, --1483,-1485,-1490,-1492,-1534,-1646,-13867,-1763,-1942,-1991,-2127,-7161,-2501], -[0,-811,-7329], -[1,3,8781], -[0,0,8782,8783,9], -[0,-8388,-2322,-8393], -[0,-5827,-8027,-13868,-11441], -[1,3,8785], -[0,8786,8787,8788,4], -[0,-2062], -[0,-599,-640,-664,-13869,-1654,-13870,-2250,-13871], -[0,-5827,-13872,-2346,-6408], -[1,3,8790], -[0,0,0,8791,11], -[0,-12735,-705,-3262,-5925,-1961], -[1,3,8793], -[0,0,14,8794,6], -[0,-13873,-13874,-13875,-2350,-13876,-1847,-11845,-7421,-2440,-7727,-5845], -[1,3,8796], -[0,8797,210,8798,4], -[0,-668,-12908,-1040,-9236,-13877,-1951,-2343], -[0,-1127,-8906,-9460,-4123,-13878,-9330,-13879,-9225,-6187,-8906], -[1,3,8800], -[0,8801,8802,8803,4], -[0,-13880,-13881,-13882,-13883,-13884,-13885,-13886,-13887,-13888,-13889,-13890,-13891,-13892,-13893,-13894,-13895,-13896, --13897,-13898,-13899,-13900,-13901,-13902,-13903,-13904,-13905,-13906,-13907,-13908,-13909,-13910,-13911,-13912,-13913, --13914,-13915,-13916,-13917,-13918,-13919,-13920,-13921,-13922,-13923,-13924,-13925,-13926,-13927,-13928,-13929,-13930, --13931,-13932,-13933,-13934,-13935,-13936,-13937,-13938,-13939,-13940,-13941,-13942, --13943,-13944,-13945], -[0,-1076,-1107,-1168,-1847,-2162,-1654,-2006,-932,-1548,-2125,-784,-1889,-2501,-923,-1077,-1405,-767,-1003,-1248,-1743, --2019,-778,-1183,-1967,-1187,-2163,-518,-1238,-1244,-2275,-13946,-13947,-1792,-2508,-1184,-1514,-1908,-13948,-3054,-969, --933,-958,-962,-10533,-13949,-796,-1017], -[0,-2006,-3159,-3095,-3098,-3160,-3161,-3100,-13950,-2352,-13951], -[1,3,8805], -[0,8806,8807,7,6], -[0,-10459,-812,-10622,-10623,-1792,-1983], -[0,-526,-535,-554,-559,-932,-943,-968,-974,-1004,-1088,-1654,-11943,-2251,-2293], -[1,3,8809], -[0,0,0,8810,5], -[0,-589,-13952,-13241], -[1,3,8812], -[0,0,8813,8814,5], -[0,-13953], -[0,-712,-3215,-13954], -[1,3,8816], -[0,0,0,8817,11], -[0,-3494,-2356,-7754,-3214,-3264,-5554,-10109,-10110,-10114,-3495,-10111,-3498], -[1,3,8819], -[0,0,8820,8821,4], -[0,-3037,-13239,-932,-940,-967,-978,-1942,-2892,-2410,-2411,-2466,-2469], -[0,-5922,-13955,-13956], -[1,3,8823], -[0,0,0,8824,8], -[0,-4216,-4215,-2410,-13957], -[1,3,8826], -[0,0,8827,258,4], -[0,-1654,-932,-1405,-6726,-964], -[1,3,8829], -[0,8830,8831,8832,4], -[0,-2036], -[0,-23,-13958,-3156,-1942,-2410], -[0,-2006,-3159,-13959,-12662,-3825,-13960,-13961,-2034,-2053,-13962,-13963,-2360,-4127,-4122,-13964,-687,-3162,-5270, --5271,-3578,-13965], -[1,3,8834], -[0,0,8835,8836,10], -[0,-21,-23,-37,-40,-41,-2581,-11254,-3311,-534,-664,-932,-1004,-1077,-1103,-1111,-1442,-1449,-1610,-1650,-1654,-2634, --13966,-1771,-13967,-2006,-2019,-2162,-2250,-2501,-2503], -[0,-2361,-3214,-4002,-13968,-7002,-3960,-3264,-7534,-9975], -[1,3,8838], -[0,0,8839,8840,6], -[0,-1754,-11358], -[0,-2362,-3215], -[1,3,8842], -[0,0,8843,7,6], -[0,-11719,-2319], -[1,3,8845], -[0,8846,8847,8848,6], -[0,-13969], -[0,-2832,-190,-4139,-262,-3037,-6593,-932,-940,-948,-958,-967,-3631,-1110,-1942,-2391,-2410,-2411,-2469], -[0,-4181,-743,-6920,-13970,-13570,-8792,-13971,-13972], -[1,3,8850], -[0,8851,8852,8853,4], -[0,-714,-808,-1650,-13973], -[0,-3035,-3621,-664,-689,-879,-932,-1654,-1788,-2379,-2388,-2410], -[0,-1573,-3444,-13974,-812], -[1,3,8855], -[0,8856,8857,8858,5], -[0,-11103,-13975,-7400], -[0,-5834,-516,-5835,-921,-932,-1365,-1777,-2156,-2322], -[0,-2368,-2487,-7371,-6917,-13976,-6545,-702], -[1,3,8860], -[0,0,27,8861,5], -[0,-10919,-10336,-1958,-13641,-12872,-5395], -[1,3,8863], -[0,241,8864,7,5], -[0,-3732,-4198,-3617,-3136,-724,-754,-1004,-1415,-1753,-1942,-2375,-2410,-2564], -[1,3,8866], -[0,8867,8868,8869,4], -[0,-1370,-2347,-6372,-13977,-13978,-2062], -[0,-2322,-2346,-725], -[0,-3264,-9292,-3215,-6408,-12123,-775], -[1,3,8871], -[0,8872,8873,8874,4], -[0,-3851,-3199,-1388,-1681,-2177,-9444], -[0,-2581,-3037,-3664,-637,-11187,-1672,-1806,-5326,-3246,-2410,-2469], -[0,-3445,-6857,-1671,-1672,-3862,-4058,-7773,-7684,-3018,-2410,-3324,-2071,-4634,-10412,-6495,-5101,-13979], -[1,3,8876], -[0,0,8877,161,11], -[0,-21,-23,-26,-35,-36,-40,-42,-50,-86,-3307,-4139,-262,-3268,-3136,-3044,-3738,-427,-428,-533,-589,-753,-932,-940,-967, --977,-1344,-1415,-1548,-1771,-1942,-2082,-2379,-2402,-2405,-2410,-2446], -[1,3,8879], -[0,8880,8881,8882,5], -[0,-13980,-7141,-1276,-1460,-1565,-13981,-2177,-2400,-2551], -[0,-86,-9404,-3615,-3244,-190,-5121,-4020,-237,-4776,-3048,-3136,-3660,-3759,-8216,-7211,-4036,-3037,-3199,-3041,-9146, --427,-428,-533,-10525,-739,-928,-932,-940,-958,-959,-960,-967,-999,-1026,-1077,-1110,-1344,-1415,-1442,-1534,-1623,-1942, --2125,-2379,-2410,-2411], -[0,-1415,-2410,-6915,-2006,-3634], -[1,3,8884], -[0,8885,8886,8887,5], -[0,-668,-909,-1639,-2177,-2231], -[0,-4036,-3199,-427,-428,-525,-527,-534,-556,-559,-13982,-560,-930,-932,-940,-966,-967,-1077,-1107,-1344,-1413,-1471, --1475,-1481,-1483,-1490,-1492,-1534,-1607,-1650,-1654,-1942,-2125,-2410,-2501,-2503], -[0,-2376,-13983,-2501,-5932,-2410,-3018], -[1,3,8889], -[0,8890,8891,8892,9], -[0,-4106,-719,-865,-1672,-2392], -[0,-2581,-3037,-3664,-11187,-1763,-1806,-5326,-3246,-2410,-2469], -[0,-3445,-13984,-13985,-13986,-1672,-1671,-6857,-4058,-7773,-7684,-3018,-2410,-687,-5732,-13987,-5731], -[1,3,8894], -[0,8895,8896,8897,6], -[0,-13988,-13989], -[0,-3267,-3035,-9939,-3621,-3037,-664,-11072,-767,-834,-1654,-2125,-2127,-2379,-2410], -[0,-2410,-3272,-13990,-3107,-13991], -[1,3,8899], -[0,8900,8901,8902,5], -[0,-2558,-502,-834,-461,-462,-13981,-13992,-13993,-13994,-13995,-8214,-13996,-13997], -[0,-519,-1788,-523,-2006,-13998,-1001,-1548,-2125,-2177,-11685,-1821,-2402,-367,-13999,-1100,-1972,-2410,-9939,-3037, --14000,-3040,-3044,-8890,-3199,-6744,-14001,-7772,-4364,-11347,-11708,-262], -[0,-2410,-3966,-11997,-5558,-3018,-3116], -[1,3,8904], -[0,8905,8906,8907,5], -[0,-3044,-3851,-3199,-14002,-1548,-1681,-14003,-14004,-2177], -[0,-2581,-3037,-3664,-11187,-1672,-1806,-5326,-3246,-2410,-2469], -[0,-3445,-1672,-3862,-6857,-4058,-7773,-7684,-3018,-2410,-7460,-1306,-5389,-6821,-8990,-10674,-6693,-5879,-1573], -[1,3,8909], -[0,0,37,8910,8], -[0,-2410,-2552,-10054,-10055], -[1,3,8912], -[0,8913,8914,8915,5], -[0,-1548,-3044], -[0,-2581,-3037,-3664,-1806,-5326,-3246,-2410,-2469], -[0,-3445,-3018,-2410,-14005,-14006,-11315,-8199,-6899,-14007,-14008,-14009,-14010,-14011], -[1,3,8917], -[0,8918,8919,7,9], -[0,-1460,-1646,-2270], -[0,-1415,-1344,-932,-2125,-2375,-2379,-1942,-2410,-3136,-3037,-1534,-5686,-14012,-960,-958,-940,-428,-7770,-427], -[1,3,8921], -[0,8922,8923,8924,5], -[0,-14013,-3686,-1111,-1418,-1630,-1849,-2061], -[0,-5028,-3037,-3040,-427,-428,-519,-757,-825,-932,-945,-14014,-999,-2006,-2115,-2153,-2410], -[0,-2410,-2384,-7440,-2414,-3694,-14015,-14016], -[1,3,8926], -[0,0,8927,8928,4], -[0,-23,-40,-42,-5121,-8214,-14013,-3037,-427,-428,-533,-774,-932,-940,-1415,-1942,-2410], -[0,-2410,-2384,-4037,-7440,-7144,-4004,-2414,-3694], -[1,3,8930], -[0,8931,8932,8933,10], -[0,-8200,-668,-679,-6475,-14017,-1645,-1650,-14018,-13709,-2125,-14019,-2410,-4297], -[0,-3037,-928,-1942,-2319,-2402], -[0,-2410,-5058,-9946,-985,-4791,-7641], -[1,3,8935], -[0,0,0,8936,6], -[0,-4165,-14020,-3116,-6784,-3214,-2387,-11997], -[1,3,8938], -[0,8939,8940,8941,8], -[0,-22,-644,-668,-719,-834,-1107,-1442,-1645,-1650,-2114,-2177,-2387,-7765], -[0,-305,-8355,-3035,-9939,-3036,-3660,-8566,-4811,-3621,-3037,-3200,-8890,-3199,-664,-1344,-13325,-1654,-1771,-1788,-1942, --2125,-2379,-2388,-2389,-6355,-2410,-12515], -[0,-687,-2410,-8170], -[1,3,8943], -[0,0,8944,8945,5], -[0,-1415,-1344,-1548,-2125,-2388,-2375,-1591,-1942,-14021,-720,-2410,-3136,-3037,-14022,-2390,-14023,-6630,-2174,-14024, --14025,-12348,-2449,-12349,-14026,-796,-14027], -[0,-7148,-2388,-14028,-1942,-727,-2410], -[1,3,8947], -[0,8948,8949,7,6], -[0,-7765], -[0,-3036,-3037,-714,-1107,-1771,-1847,-2388,-14029,-2410], -[1,3,8951], -[0,8952,8953,7,4], -[0,-13389,-653,-679,-734,-812,-928,-14030,-14031,-1863,-1907,-2115,-2127,-2231,-5354,-3535,-2654,-2369], -[0,-262,-4062,-367,-3198,-3037,-3200,-8349,-1055,-1889,-10815,-1942,-2114,-2132,-2162,-2271,-2299,-2301,-2334,-14032, --2391,-2410,-2469,-2817], -[1,3,8955], -[0,8956,0,8957,4], -[0,-928,-1101], -[0,-687,-11997,-3966,-8930,-4791,-985,-2410,-14033], -[1,3,8959], -[0,8960,8961,8962,6], -[0,-14034], -[0,-350,-351,-3561,-633,-2123,-2127,-2250,-14035], -[0,-6473,-3264,-1599], -[1,3,8964], -[0,0,8965,8966,10], -[0,-1127,-1654,-11875,-1132,-2111,-14036,-14037,-1156,-14038,-1138,-14039,-2234,-1134,-14040,-1144,-1148,-14041,-14042, --14043], -[0,-1456,-4058,-2451,-2394], -[1,3,8968], -[0,0,8969,8970,5], -[0,-633,-932,-1032,-14044,-2322,-14045,-2416], -[0,-770,-5374,-14046,-14047,-13351,-6131,-7372,-14048,-14049,-14050,-14051,-14052], -[1,3,8972], -[0,8973,8974,8975,5], -[0,-1077,-1462,-14053,-8984], -[0,-1771,-1860,-2416], -[0,-10838,-14054,-3215,-5093,-9474,-14055,-4112], -[1,3,8977], -[0,8978,8979,8980,9], -[0,-615,-1640,-2105], -[0,-510,-714,-719,-1654,-2123,-2210], -[0,-2398,-3690,-3691,-5827,-9292,-1791], -[1,3,8982], -[0,8983,8984,8985,11], -[0,-2105,-822], -[0,-1722,-1654,-932], -[0,-2398,-9292,-1791], -[1,3,8987], -[0,8988,0,7,4], -[0,-1646,-14056,-668], -[1,3,8990], -[0,8991,8992,8993,9], -[0,-14057], -[0,-5918,-428,-932,-14058,-815,-1002,-1772,-2384,-2410,-2411,-2541], -[0,-2410,-3018,-3694,-3590,-2444,-8113,-10665,-1631,-4055,-14059], -[1,3,8995], -[0,8996,129,8997,4], -[0,-737,-14060,-1641], -[0,-5398,-8038,-14061], -[1,3,8999], -[0,9000,9001,259,4], -[0,-14062,-3544,-1600,-1645,-2548], -[0,-190,-3800,-3661,-3621,-3037,-652,-13998,-928,-932,-1654,-1978,-2177,-2392,-2410,-2411], -[1,3,9003], -[0,9004,9005,9006,11], -[0,-14063], -[0,-3037,-2402,-2410], -[0,-14064,-14065,-3118,-14066,-14067,-14068,-2410,-856], -[1,3,9008], -[0,0,131,9009,6], -[0,-4121,-4123,-13188,-2410,-856,-14068,-2402], -[1,3,9011], -[0,0,0,9012,4], -[0,-3690,-856,-1599,-2402,-2410,-14065], -[1,3,9014], -[0,9015,9016,9017,4], -[0,-1610,-2410], -[0,-3802,-3621,-3037,-3628,-756,-1405,-1654,-1657,-2359], -[0,-4165,-856,-14069,-3214], -[1,3,9019], -[0,9020,9021,9022,4], -[0,-719,-2536,-1705,-6455,-14070,-510,-714,-1666,-1650,-7418,-14071], -[0,-664], -[0,-14072,-1599,-14073,-14074,-14075,-8676,-3110,-6473,-3262], -[1,3,9024], -[0,106,9025,7,5], -[0,-234,-3035,-4269,-3621,-14076,-3037,-664,-665,-756,-1654,-14077,-1672,-14078,-1942,-14079,-2234,-2379,-2389,-12348], -[1,3,9027], -[0,9028,9029,7,10], -[0,-1107,-2446,-483,-809,-812,-2387,-2550,-640,-815,-865,-7023,-496,-14080,-2080,-14081], -[0,-652,-1857,-664,-1168,-1344,-1392,-1654,-1682,-1691,-2071,-2210,-932,-1692,-2125,-3729,-1110,-1671,-2245,-2379,-10418, --1942,-14082,-190,-1250,-8436,-2211,-2410,-3035,-3037,-1243,-1534,-3198,-3621,-4372,-3041,-1244,-14083,-10419,-1252, --1261,-10420,-14084,-8214,-665,-3625,-3910,-7969,-2411,-14085,-2234,-14086,-960,-14087,-14088,-4269,-9660], -[1,3,9031], -[0,0,9032,9033,5], -[0,-652,-1681,-664,-834,-1107,-1498,-1654,-2387,-2518,-13998,-932,-8526,-928,-1110,-679,-1646,-3851,-190,-1863,-1874, --2410,-3035,-9939,-3621,-10755,-1461,-305,-5686,-1028,-14089,-14090,-2411,-14091,-2234,-971,-14092,-429,-9660,-14093, --5201,-5206,-14094,-14095], -[0,-4165,-14020,-3116,-6784,-3214], -[1,3,9035], -[0,9036,112,9037,4], -[0,-429,-428,-427,-5209], -[0,-3272,-3217,-3214,-2410,-3215,-4132,-932,-5208,-3784], -[1,3,9039], -[0,9040,9041,9042,10], -[0,-14096,-7829], -[0,-4811,-3621,-3037,-14097,-740,-14098,-1650,-1654,-1938,-2388,-2410,-2412], -[0,-4165], -[1,3,9044], -[0,9045,9046,9047,6], -[0,-14099,-14100,-865,-2773,-1521,-1551,-1889,-1907,-7164,-1915,-7165,-10283,-2162,-2232,-2383,-2286], -[0,-14101,-3136,-8334,-3759,-3037,-14102,-14103,-8336,-427,-428,-620,-932,-940,-1344,-1415,-14104,-1534,-14105,-1916, --1927,-1942,-14106,-2375,-2410], -[0,-775,-3754,-2162,-1521,-2286,-3209,-3862,-1889,-2410], -[1,3,9049], -[0,9050,9051,9052,8], -[0,-11661,-615,-668,-696,-715,-13789,-10511,-12631,-1575,-1646,-14107,-14108,-2433,-2525,-2546], -[0,-829,-1722,-2125,-2379,-2388,-14109,-2410], -[0,-2414,-2410,-14110,-4159,-5897,-9800,-9069], -[1,3,9054], -[0,9055,9056,9057,8], -[0,-719,-2231], -[0,-461,-1654,-2177], -[0,-9216,-2415,-2416,-1644,-6684,-3214,-3217,-8108,-3184,-6052,-13770,-4795,-8165,-6434,-510,-5867], -[1,3,9059], -[0,0,9060,9061,11], -[0,-461,-2177], -[0,-687,-6454,-9696,-14111,-3217,-6505,-8108,-3214,-3756,-14112,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838, --3215,-9698,-9216], -[1,3,9063], -[0,9064,9065,9066,9], -[0,-4287,-1046,-1401,-2168,-2182,-2231,-2416,-2510,-10059], -[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-8206,-767,-824,-825,-932,-940,-958,-1344,-1415,-1424,-1534,-1626,-1771,-1942, --2251,-2334,-2501], -[0,-9216,-2416,-2415,-2501,-7172], -[1,3,9068], -[0,9069,9070,9071,5], -[0,-14113], -[0,-1654,-932,-615,-1405,-966,-958,-968,-943,-974], -[0,-6555,-3262,-7232,-9594], -[1,3,9073], -[0,9074,0,9075,4], -[0,-44,-3040,-3052,-14114,-14115,-14116,-14117,-14118,-14119,-14120,-14121,-432,-14122,-14123,-14124,-14125,-14126,-14127, --14128,-14129,-14130,-14131,-14132,-14133,-14134,-14135,-14136,-14137,-14138,-14139,-433,-434,-14140,-14141,-14142, --14143,-14144,-14145,-14146,-14147,-5257,-435,-14148,-14149,-14150,-14151,-14152,-14153,-14154,-14155,-14156,-14157, --14158,-14159,-14160,-14161,-14162,-14163,-14164,-14165,-14166,-14167,-14168, --14169,-14170], -[0,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], -[1,3,9077], -[0,9078,9079,174,10], -[0,-1107,-1351,-1548,-2177,-2529], -[0,-1452,-1600,-1654,-1766,-2198], -[1,3,9081], -[0,0,9082,7,10], -[0,-4066,-350,-351,-3267,-3037,-589,-1942,-2127,-2387,-2410,-2469], -[1,3,9084], -[0,0,9085,9086,5], -[0,-2581,-50,-13526,-668,-5382,-928,-1111,-1273,-1600,-14171,-1771,-14172,-1948,-3768,-2469], -[0,-3264,-3110,-7723], -[1,3,9088], -[0,9089,9090,7,5], -[0,-4066,-350,-4062,-351,-3561,-4785,-14173,-734,-6860,-928,-14030,-14174,-1431,-1588,-14175,-1651,-1852,-6568,-1948, --2127,-2132,-6569,-2654,-14176], -[0,-3376,-3037,-3664,-8189,-672,-932,-944,-1942,-2410,-2469], -[1,3,9092], -[0,0,9093,9094,4], -[0,-1788,-1107,-849,-1344,-1471,-1989,-932,-2127,-2334,-757,-756,-1485,-7324,-4916,-14177,-958,-1488], -[0,-2444,-5112,-3844,-3323,-4865], -[1,3,9096], -[0,9097,9098,9099,4], -[0,-2243,-9649], -[0,-633,-14178,-932,-1405,-1654,-1657,-8276,-12323,-2424], -[0,-2424,-2265], -[1,3,9101], -[0,0,9102,9103,5], -[0,-8843,-11419,-14179,-357,-3037,-458,-2917,-652,-767,-14180,-928,-932,-1023,-1344,-1415,-14181,-2884,-1730,-1971,-2384, --2410,-2531], -[0,-4213,-1334,-1342,-1961,-2105,-9172,-9173,-2533,-5388], -[1,3,9105], -[0,9106,9107,9108,4], -[0,-4231,-14182,-9596,-1015,-1395,-14183,-5358], -[0,-14184,-5334,-4251,-3037,-652,-1942,-2094,-2100,-2384,-2399,-2410,-2541], -[0,-3272,-7644,-5398,-10280,-1838,-1958,-2083,-2093,-14185,-6233,-6231,-4132,-6408,-10919,-2427], -[1,3,9110], -[0,9111,14,9112,4], -[0,-14186], -[0,-13747,-6555,-6240,-6814,-3960,-14187,-5839,-12411,-9682], -[1,3,9114], -[0,9115,9116,9117,5], -[0,-4231,-7700,-5356], -[0,-4251,-3037,-652,-1618,-10922,-10923,-1942,-2094,-2100,-2384,-2399,-2410,-2541], -[0,-9590,-14188,-2444,-3590,-2093,-14185,-2083,-10918,-9589,-14189,-14190,-1703,-6784,-1599,-3264,-6597,-10919,-3272, --3966,-14191,-2487], -[1,3,9119], -[0,0,222,9120,5], -[0,-13875,-11002,-7727,-2430,-1847,-11845,-7421,-2440,-5550,-6836], -[1,3,9122], -[0,9123,0,9124,8], -[0,-7304,-1081,-14192,-14193,-8578,-2062], -[0,-5408,-2432,-9506,-14194,-5409,-5827,-7347], -[1,3,9126], -[0,9127,9128,9129,6], -[0,-14195,-623,-668,-14196,-2177,-8418,-728,-6848,-1514,-1394], -[0,-2541,-519,-9982,-2269,-686,-14197], -[0,-1764,-10674,-11693,-9258,-14198,-7440,-7144,-687,-3551,-5897,-9318], -[1,3,9131], -[0,0,0,9132,4], -[0,-9171,-2435,-14199,-14200,-14201,-14202,-14203,-14204,-14205,-14206,-14207,-14208,-14209,-14210,-14211,-14212,-14213, --14214], -[1,3,9134], -[0,9135,9136,9137,10], -[0,-1983,-1977], -[0,-515,-1788,-2568,-461,-1654,-932,-5834], -[0,-6747,-2435,-10433], -[1,3,9139], -[0,0,9140,9141,5], -[0,-739,-1654,-2198], -[0,-2435,-8396], -[1,3,9143], -[0,9144,9145,48,10], -[0,-1543,-1641,-2168], -[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-1041,-1344,-1415,-1534,-1623,-8913,-1771,-1942, --2251,-2501], -[1,3,9147], -[0,9148,9149,9150,5], -[0,-6614,-9730], -[0,-509,-633,-652,-1654,-1939,-14215,-14216,-2416], -[0,-6984,-3215,-9171,-2435,-1838,-5101,-2265,-1985,-6231], -[1,3,9152], -[0,9153,9154,9155,9], -[0,-1069,-14217,-1641,-1983,-2400,-2426,-14218], -[0,-2832,-14219,-7453,-14220,-8317,-14221,-3713,-3037,-14222,-4966,-14223,-3715,-8200,-9581,-3664,-649,-767,-1351,-2987, --8065,-1971,-3727,-14224,-2325,-2386,-7457,-2410,-2469], -[0,-2439,-1334,-14225,-9172,-9173,-2105,-1342,-2426,-4213], -[1,3,9157], -[0,9158,9159,9160,4], -[0,-10383], -[0,-1849], -[0,-2440,-11845,-13874,-10383,-11070,-7421,-7420,-1847,-6845,-3592,-5558,-3591,-14226], -[1,3,9162], -[0,9163,9164,9165,6], -[0,-1582,-2359], -[0,-509,-1654,-1939,-2105,-2177,-14227], -[0,-9733,-4865,-14228,-1819,-1838,-3215,-14229,-14230,-14231,-14232,-2440,-14233,-2442,-9318], -[1,3,9167], -[0,0,9168,9169,4], -[0,-756,-1405,-6186,-1991], -[0,-9791,-5835,-4112,-2443], -[1,3,9171], -[0,9172,9173,260,5], -[0,-1370,-7391,-14234,-14235,-7400], -[0,-468,-753,-14236,-1797,-1798,-2151,-2155,-2322], -[1,3,9175], -[0,0,183,260,8], -[1,3,9177], -[0,0,9178,9179,4], -[0,-32,-86,-3307,-190,-3563,-719,-932,-940,-967,-1110,-1344,-1415,-1534,-2884,-1771,-1942,-11013,-11014,-2251,-2410,-2411], -[0,-2446,-7230,-11582,-14237], -[1,3,9181], -[0,9182,9183,9184,10], -[0,-8609,-834,-1496,-5037], -[0,-14238,-985,-11747,-13279], -[0,-507,-14239,-4043,-4045,-4004], -[1,3,9186], -[0,0,9187,9188,5], -[0,-2319,-1452], -[0,-2435,-3926,-7440,-7144,-5574], -[1,3,9190], -[0,9191,9192,9193,5], -[0,-7247,-14240,-5504,-10482], -[0,-7465,-664,-6774,-720,-796,-1344,-1405,-1650,-1654,-9075,-2125,-2174,-2210], -[0,-14241,-5890,-12665,-5889,-6908,-5887], -[1,3,9195], -[0,0,9196,9197,8], -[0,-4298,-4300], -[0,-1764,-5897,-6444,-3926], -[1,3,9199], -[0,0,9200,9201,4], -[0,-21,-23,-40,-43,-528,-535,-932,-934,-958,-1654,-1771,-1788,-2125,-2127,-2128,-11290,-2416], -[0,-2451,-3926,-5874,-8472,-7723,-14242,-14243,-507], -[1,3,9203], -[0,9204,9205,9206,11], -[0,-14244,-14245,-14246], -[0,-3037,-4837,-5589,-3899,-14247,-4838,-786,-14248,-1449,-2410,-2466,-2469,-14249,-2476,-2483,-14250,-14251,-14252, --14253], -[0,-3160,-2476,-3944,-3162,-3100,-3095,-3098], -[1,3,9208], -[0,0,9209,9210,5], -[0,-1654,-932,-1405,-589,-2293,-585,-966,-958,-968,-943,-963,-974], -[0,-1334,-4616,-2453], -[1,3,9212], -[0,9213,9214,7,4], -[0,-2456], -[0,-2319,-1754], -[1,3,9216], -[0,9217,9218,7,6], -[0,-5193,-928,-679,-1069,-14254,-14255,-14256,-14257,-14258,-14259,-14260,-14261,-14262,-14263,-14264,-14265,-14266, --14267,-14268,-14269,-14270,-14271,-14272,-14273,-14274,-14275], -[0,-1681,-469,-502,-864,-985,-1371,-1816,-1805,-2466,-651,-668,-812,-999,-1623,-1971,-12508,-13969,-2518,-669,-865,-1001, --1400,-2125,-2177,-2240,-2324,-2469,-680,-708,-1004,-1047,-1658,-2379,-807,-1077,-1098,-1981,-1999,-2694,-367,-3851, --4966,-14276,-10697,-11705,-1645,-1878,-2369,-11697,-12324,-481,-12971,-695,-1424,-1641,-1729,-2269,-2410,-3136,-3037, --512,-929,-14277, --8874,-7982,-14278,-3269,-3198,-14279,-10755,-480,-511,-14280,-14281,-14282,-3199,-9941,-13839,-5977,-3124,-12274,-11855, --3637,-14283,-13376,-10519,-14284,-4105,-3048,-11328,-1025,-14285,-1767,-7162,-2991,-14286,-2992,-8566,-5363,-2946, --14287,-3713,-4201,-14288,-13184,-14289,-14290,-9750,-10046,-14291,-5124,-14292,-14293,-2591,-11857,-14294,-3234,-14295, --14296,-14297,-11702,-14298,-14299,-14300,-14301,-14302,-14303, --14304,-14305,-14306], -[1,3,9220], -[0,9221,0,9222,4], -[0,-14307,-508,-13486], -[0,-6324,-8980,-14308,-12254,-12442,-3586], -[1,3,9224], -[0,0,9225,7,4], -[0,-1654,-1405,-2293], -[1,3,9227], -[0,0,9228,9229,4], -[0,-23,-40,-86,-3307,-3326,-539,-664,-671,-708,-757,-14309,-784,-825,-932,-934,-958,-1344,-1471,-1474,-1475,-3568,-1482, --1483,-1486,-1534,-1654,-1771,-1889,-1891,-14310,-1906,-1927,-7033,-1978,-2127,-2281,-2282,-2284,-2416], -[0,-6527,-14311,-2459,-14312,-3264,-775,-3214,-3577,-3578], -[1,3,9231], -[0,9232,9233,9234,5], -[0,-14313,-702,-2103,-14314], -[0,-1788,-1654,-932,-1001,-13729,-2062,-937,-966], -[0,-9614,-7422,-6656,-7421,-9330,-1847], -[1,3,9236], -[0,9237,9238,9239,4], -[0,-599,-2347], -[0,-2322,-2463], -[0,-2460,-7419,-5845,-640,-5827], -[1,3,9241], -[0,9242,9243,9244,11], -[0,-14315,-9092,-1119,-1351,-14316,-14317,-1759,-14318,-14319,-13729,-14320,-14321,-2460,-14322], -[0,-932,-937,-1001,-1654,-1788,-2062,-2125,-2210], -[0,-1168,-14323,-2460,-6656,-8801,-1076,-8027], -[1,3,9246], -[0,9247,9248,9249,9], -[0,-2460,-2347], -[0,-1243,-2322,-2462], -[0,-2460,-1168,-7419,-9975,-5827,-2265,-5554,-14324], -[1,3,9251], -[0,185,0,9252,4], -[0,-2460,-9455,-9466,-1168], -[1,3,9254], -[0,9255,9256,9257,5], -[0,-14325,-6324,-14326,-1109,-9977,-8104,-14327,-14328], -[0,-633,-1405,-9088,-1812,-14329,-12014,-2320,-2322,-2568], -[0,-9614,-5092,-9613,-14330,-834,-7460,-4865], -[1,3,9259], -[0,9260,9261,261,6], -[0,-4787,-2127,-928,-1889,-1864,-2654], -[0,-2531,-653,-11071,-754,-990,-1651,-5042,-1805,-2162,-2213,-1852,-865,-5036,-1699,-1839,-2334,-729,-12601,-679,-2923, --3027,-14331,-14332,-1863,-769,-929,-14333,-3751,-1588,-25,-4371,-866,-989,-3572,-14334,-1906,-14335,-14336,-11751, --14337,-13397,-10046,-742,-4785,-1907,-7160,-4066,-3195,-5322,-2134,-350,-6410,-7897,-3180,-14338,-7151], -[1,3,9263], -[0,9264,9265,9266,4], -[0,-14341,-1026,-1077,-14342,-14343], -[0,-3617,-3048,-3037,-1004,-2391,-2410,-2466], -[0,-2466,-3690,-14344,-14345,-14346,-14347,-1004,-14348,-3844,-14349,-9843,-14350,-14351,-3862,-3816,-2146,-3445,-14352, --14353], -[1,3,9268], -[0,9269,9270,9271,4], -[0,-2476,-2466,-4245,-3788,-14354,-3726,-14244,-4817,-3559,-14355,-3558,-14356,-14357,-3661,-4837,-14358,-4229,-14359], -[0,-1816,-2213,-812,-999,-1826,-3548,-1699,-2125,-2127,-2177,-2469,-928,-1871,-1966,-3728,-2653,-5627,-2648,-679,-1077, --1098,-1646,-1942,-1977,-1582,-1639,-1863,-2654,-2410,-3037,-769,-1125,-1534,-1600,-3198,-6447,-14360,-3801,-3735,-1851, --3048,-5686,-1570,-14361,-3246,-4036,-3425,-1603,-2132,-13397,-7080,-1601,-4062,-13593,-14362,-14363,-4066,-14364,-1602, --6483,-14365,-3561,-9458, --350,-1926,-14366,-3662,-14367,-14368,-740,-351,-14369,-14370,-14371], -[0,-2466,-2476,-2468], -[1,3,9273], -[0,9274,9275,9276,8], -[0,-5042,-2466,-1852,-6570,-3535,-1864,-2354,-2654,-6488,-1002,-14372,-1588,-13385,-13376,-13388,-14373,-14335,-14374, --14375,-14376], -[0,-2531,-653,-1640,-14377,-1449,-7142,-1966,-13380,-1278,-14378,-462,-3037,-4647,-426,-14334,-3735,-14379,-8523,-14380, --5038,-357,-4048,-3180,-3626,-4047], -[0,-2466,-2469,-4004,-1415], -[1,3,9278], -[0,9279,9280,9281,5], -[0,-668,-1548,-1376,-1646,-2528,-1365,-1575,-2269,-556,-14381], -[0,-2541,-1168,-525,-1654,-1666,-2198,-14382,-2105,-615,-527,-1174,-1197,-14383,-14384,-1182,-14385,-559], -[0,-3690,-687,-12694,-5550,-4039,-3161,-3994,-9668,-3957,-719,-13831,-1965,-1376], -[1,3,9283], -[0,9284,0,9285,4], -[0,-834,-14386,-1107], -[0,-3634,-4679,-4004,-14387], -[1,3,9287], -[0,9288,9289,9290,6], -[0,-2359,-1107,-1640,-2059,-9498,-668,-1526,-2555,-14388,-2177,-2536,-674,-2436,-719,-1645,-1600,-14389,-1315,-14390, --14092], -[0,-1344,-1654,-2379,-1942,-3628,-2410,-3036,-6325,-3037,-14391,-14392,-1771,-3621,-8497,-1952,-3199,-11343,-14393,-86, --14394,-8566,-2174,-3661,-2234,-5361,-3307], -[0,-11859,-2472,-5195], -[1,3,9292], -[0,0,37,7,4], -[1,3,9294], -[0,9295,9296,7,4], -[0,-479,-702,-994,-1022,-1107,-1351,-1391,-2231,-2410,-2460,-2536,-2550], -[0,-9478,-14395,-9457,-3036,-14396,-8566,-3621,-3037,-12993,-9476,-7837,-3046,-11343,-3041,-427,-428,-932,-1654,-2125], -[1,3,9298], -[0,0,9299,7,9], -[0,-1654,-1650,-2501,-2410,-3037,-2503,-3621,-14397,-748,-262], -[1,3,9301], -[0,9302,0,9303,6], -[0,-14244,-14398,-9631,-7438,-3250], -[0,-2476], -[1,3,9305], -[0,0,9306,9307,5], -[0,-23,-26,-33,-3077,-40,-3035,-3621,-3037,-428,-532,-534,-7890,-664,-778,-932,-14399,-1654,-2080,-2125,-2127,-2128,-2138, --2341,-2376,-2410,-2415,-2476,-2481,-2485,-2816,-2486,-2501,-2503], -[0,-2476,-7711,-525,-2410], -[1,3,9309], -[0,9310,9311,7,9], -[0,-812,-982,-983,-986,-8141,-2177], -[0,-23,-32,-3332,-14400,-6484,-3244,-190,-3198,-426,-3037,-3199,-427,-428,-3664,-3665,-932,-8230,-961,-965,-8287,-967, --978,-7356,-1942,-2379,-2892,-2410,-2466,-2469], -[1,3,9313], -[0,0,9314,9315,5], -[0,-639,-1415,-2476], -[0,-2476,-12517,-11492], -[1,3,9317], -[0,9318,9319,9320,6], -[0,-14401,-14357,-14402], -[0,-14403], -[0,-1348,-9780,-14404,-3862,-2476,-3527], -[1,3,9322], -[0,9323,9324,7,4], -[0,-668,-1284,-12982], -[0,-23,-40,-14405,-426,-12643,-3136,-4647,-14406,-14407,-534,-14408,-740,-778,-1041,-1331,-1415,-1449,-1534,-14409,-1623, --1643,-7034,-7846,-1908,-1942,-1974,-14410,-2231,-2275,-2286,-2287,-2289,-2375,-2376,-2410,-2437,-2476,-2480,-2501,-2503, --2505,-2508,-8160], -[1,3,9326], -[0,0,9327,9328,4], -[0,-3136,-3037,-1415,-2080,-2127,-2375,-2410,-2476,-2477], -[0,-2476,-2410,-11313], -[1,3,9330], -[0,9331,9332,7,5], -[0,-3194,-14411,-14357,-14412,-679,-1460,-14378,-1588,-1651,-14413,-1852,-1864,-6569,-2654,-2981,-14414,-2548], -[0,-47,-14415,-3983,-350,-351,-3561,-3266,-12959,-14416,-8523,-8200,-4837,-7438,-14417,-3250,-4838,-10363,-14418,-731, --865,-14419,-7595,-1278,-1719,-14420,-2851,-2125,-2127,-2142,-2892,-2391,-2466,-2476], -[1,3,9334], -[0,9335,9336,7,9], -[0,-1284,-1543], -[0,-527,-533,-549,-740,-1415], -[1,3,9338], -[0,9339,0,9340,4], -[0,-14421,-1297], -[0,-2476,-3116], -[1,3,9342], -[0,262,9343,7,8], -[0,-2476,-1415,-668,-999,-6828,-932,-2127,-2177,-1004,-2501,-910,-1077,-767,-1978,-2468,-533,-778,-2410,-2481,-23,-3037, --534,-14422,-2484,-40,-7438,-2082,-6429,-2140,-2253,-3561,-14399,-2504,-2506,-350,-740,-351], -[1,3,9345], -[0,9346,0,9347,5], -[0,-14423], -[0,-2444,-1819,-14424,-1076,-2487,-14425], -[1,3,9349], -[0,9350,9351,7,4], -[0,-8566,-7955,-8891,-1645], -[0,-3136,-3037,-1107,-1415,-1623,-2125,-2375,-2410], -[1,3,9353], -[0,220,9354,9355,4], -[0,-86,-3307,-633,-720,-796,-1344,-1415,-2416], -[0,-2489,-4038,-2006,-1384], -[1,3,9357], -[0,9358,0,9359,8], -[0,-14426,-1646], -[0,-2444,-3590,-1076,-6999], -[1,3,9361], -[0,9362,9363,9364,6], -[0,-9501,-633,-679,-6369,-14427,-2347,-2546], -[0,-627,-1650,-2239,-2322,-2416,-14428], -[0,-633,-10362,-2490,-4161,-7641,-4865], -[1,3,9366], -[0,9367,123,9368,4], -[0,-13012,-10837,-510,-14429,-13017,-14430,-13025,-13026,-14431,-14432], -[0,-13039,-1818,-1691,-6321,-2071,-1671,-14433,-2492,-2157,-13042], -[1,3,9370], -[0,9371,9372,9373,8], -[0,-501,-510,-1548,-1650,-1980,-2105,-14434], -[0,-14435,-664,-665,-714,-7743,-1004,-1022,-1168,-14436,-1197,-1212,-1231,-1296,-1336,-13334,-1405,-1654,-14437,-1722, --14438,-2150,-14439,-14440,-14441,-2425,-2446,-2550], -[0,-3634,-4864,-11468,-12350,-11467], -[1,3,9375], -[0,9376,9377,9378,4], -[0,-14442,-14443,-14444,-14445,-14446,-14447,-14448,-14449,-14450,-14451,-14452,-14453,-14454,-14455,-14456,-14457,-14458], -[0,-14459,-1415,-932,-14460,-4271,-2375,-1942,-589,-2410,-3136,-1422,-3268,-14461,-958,-8378,-940,-14462,-428,-14463,-427], -[0,-14464,-7485,-3816], -[1,3,9380], -[0,9381,194,9382,8], -[0,-14465,-14466,-597,-636,-14467,-14468,-14469,-14470,-14471,-14472,-2550], -[0,-2494,-3673,-687,-14473,-4270], -[1,3,9384], -[0,9385,9386,7,11], -[0,-8231,-426,-4049,-14474,-14475,-14476,-461,-14477,-635,-14478,-909,-14335,-982,-997,-8610,-1119,-11677,-8562,-1641, --9548,-2168,-2321,-2335,-12982,-2510], -[0,-23,-41,-50,-13541,-14479,-8608,-4035,-3136,-3713,-14480,-3037,-14481,-14482,-534,-14483,-14484,-711,-753,-774,-778, --807,-922,-3068,-932,-6929,-1041,-1067,-1110,-14485,-1322,-1344,-1405,-1415,-8950,-1417,-1418,-1421,-1424,-1455,-1460, --1521,-1522,-1534,-1548,-1549,-1623,-14486,-1643,-8913,-1733,-1788,-1806,-8436,-1942,-1950,-1974,-9720,-2000,-2006,-2019, --14487,-2090,-4242, --2095,-2098,-2101,-2125,-5508,-2205,-2269,-2275,-2334,-2344,-2354,-2362,-2376,-2410,-2427,-2437,-14488,-14489,-2503, --14490,-2549], -[1,3,9388], -[0,9389,9390,9391,10], -[0,-2531,-2213,-461,-1810,-811,-719,-462,-1863,-1321,-930,-13410], -[0,-824,-664,-1168,-1415,-1652,-932,-1111,-1940,-753,-784,-1889,-2501,-1044,-1978,-682,-778,-1174,-1653,-2437,-23,-667, --2503,-518,-528,-534,-1566,-2275,-44,-1565,-14491,-1908,-9422,-40,-14492,-2505,-41,-540,-969,-14493,-2335,-14494,-14495, --38,-33,-3376], -[0,-2501,-4161,-14496,-3209,-8799,-9845,-14497,-12942,-14498,-7067], -[1,3,9393], -[0,9394,9395,9396,10], -[0,-914,-2068,-713,-719,-1381,-769,-1363,-2508,-14499,-5594,-11676,-13410,-14500], -[0,-14501], -[0,-2501,-687,-3108,-3551,-7882,-3578], -[1,3,9398], -[0,9399,9400,9401,9], -[0,-1623,-713,-1641,-1800,-1997,-2168], -[0,-1501,-1313,-1415,-999,-1344,-774,-932,-3122,-729,-825,-1004,-1030,-1110,-2501,-1942,-767,-823,-2293,-21,-190,-204, --533,-2410,-23,-3037,-1041,-1534,-1771,-1045,-5039,-3617,-86,-965,-3560,-14502,-2251,-40,-4835,-3713,-14503,-959,-960, --958,-6929,-978,-940,-967,-3748,-3307], -[0,-2501,-5401,-3113], -[1,3,9403], -[0,9404,9405,7,9], -[0,-2531,-1805,-12860,-13318,-1004,-13074,-679,-4204,-713,-11121,-3727,-724,-1119,-2186,-2168,-14504,-13386,-14505,-3617, --14506,-14507,-14508,-14509,-1338,-2504,-731,-12962,-14510], -[0,-1313,-1415,-1521,-461,-999,-1344,-14511,-1623,-774,-932,-1610,-2125,-729,-753,-2501,-1942,-1978,-2293,-21,-533,-778, --1336,-2410,-23,-3037,-1522,-1534,-1771,-2503,-534,-2275,-2230,-4356,-2508,-44,-86,-965,-2062,-2817,-3560,-2251,-40, --4835,-8477,-2411,-3732,-4035,-959,-960,-1331,-5474,-32,-14512,-7716,-958,-6929,-940,-1419,-38,-3307,-5585], -[1,3,9407], -[0,9408,9409,9410,5], -[0,-2269,-1320,-14509], -[0,-1788,-1654,-2210,-932,-1004,-2501,-1942,-2293,-967,-2504], -[0,-2501,-6211,-12517,-3551,-14513,-14514,-5401,-1004], -[1,3,9412], -[0,9413,9414,7,5], -[0,-2321,-2510], -[0,-366,-3037,-3046,-14515,-3750,-748,-824,-932,-14516,-948,-1041,-1344,-1534,-1626,-1939,-1942,-14517,-2006,-2275,-2387, --2410,-2469,-2501,-2508], -[1,3,9416], -[0,9417,9418,9419,5], -[0,-1055,-9087,-3415], -[0,-1344,-2387,-14518,-2501,-1942,-2410,-14519,-426], -[0,-2501,-1631], -[1,3,9421], -[0,0,9422,9423,5], -[0,-664,-932,-958,-1654,-1658,-1705,-2501], -[0,-2501,-5757,-3966,-4161,-14520], -[1,3,9425], -[0,0,9426,9427,5], -[0,-1415,-932,-1110,-2501,-1405,-1942,-756,-190,-2231,-2410,-3136,-965,-3560,-959,-960,-12916,-958,-6929,-978,-940,-967, --3748], -[0,-2501,-2231], -[1,3,9429], -[0,9430,0,9431,4], -[0,-1119,-769,-2359,-1860], -[0,-9711,-11891], -[1,3,9433], -[0,9434,9435,9436,8], -[0,-642,-812,-922,-14521,-13490,-14522], -[0,-641,-1168,-1224,-1453,-1452,-2322], -[0,-2512,-6224,-9005,-14523,-14524,-5737,-14525,-8841,-3844,-3323], -[1,3,9438], -[0,9439,9440,9441,5], -[0,-14526,-14527,-14528,-14529,-14530,-14531,-14532,-14533,-14534,-14535,-14536,-14537,-812,-929,-14538,-14539,-14540, --14541,-14542,-14543,-14544,-1640,-1801,-14545,-1976,-10570,-14546,-1997,-10576,-13357,-14547,-13729,-14548,-14549, --14550,-14551,-14552,-14553,-14554], -[0,-23,-32,-3367,-40,-14555,-468,-14556,-10575,-14557,-571,-14558,-640,-14559,-771,-14560,-932,-943,-958,-965,-968,-1045, --14561,-1834,-14562,-1985,-2151,-2174,-2187,-6390,-8573,-2320,-2322,-2335,-6391,-2501,-2503,-14563], -[0,-14564,-14565,-867,-14566,-14567,-14568,-14569,-9292,-14570,-14571,-14572,-6471,-14573,-2513], -[1,3,9443], -[0,9444,9445,9446,10], -[0,-596,-1696], -[0,-11836,-2319], -[0,-3708,-14574,-14575], -[1,3,9448], -[0,9449,9450,7,5], -[0,-1004,-1758,-2424], -[0,-710], -[1,3,9452], -[0,0,9453,7,4], -[0,-664,-1471,-1654,-932,-2127,-1942,-1474,-1482,-516,-1962,-14576,-1475,-1477,-1487,-1479,-5993,-8365], -[1,3,9455], -[0,0,9456,9457,6], -[0,-2493,-1107,-14577,-3691,-1460,-14578,-1452,-1650,-14579,-1813,-589,-14580,-2416,-633,-1963,-14439], -[0,-14581,-14582,-6306,-1961,-5923,-6307,-6308,-2517,-510,-6235,-11153], -[1,3,9459], -[0,9460,29,7,5], -[0,-14583], -[1,3,9462], -[0,0,9463,9464,10], -[0,-2778,-1446,-1654,-1666,-14584,-14585], -[0,-7084,-11722], -[1,3,9466], -[0,9467,9468,9469,8], -[0,-14586,-5758,-510,-1399,-14587,-14588,-2062,-7967,-2249,-8879,-2522], -[0,-21,-23,-40,-14589,-3037,-14590,-509,-14591,-932,-14592,-1415,-2125,-2240,-13361,-2347,-14593], -[0,-2520,-3444,-5545,-11989,-8948,-648,-1867,-1577,-3674,-4055,-5827], -[1,3,9471], -[0,9472,9473,9474,6], -[0,-14594,-1793,-8879,-2522], -[0,-14595,-14596,-664,-932,-966,-1654,-2125,-3708], -[0,-2520,-14597,-14598,-14599], -[1,3,9476], -[0,9477,9478,9479,4], -[0,-14587,-2062,-8879], -[0,-3037,-509,-526,-558,-821,-932,-14589,-1654,-1788,-2125,-14593], -[0,-2520,-3443,-14600], -[1,3,9481], -[0,9482,9483,9484,4], -[0,-14601,-1107,-1548,-14602,-2347,-14603], -[0,-664,-1077,-1405], -[0,-622,-5897,-4633,-9405,-11729,-3015], -[1,3,9486], -[0,0,88,9487,11], -[0,-14604,-14605,-6722,-14606,-14607,-14608,-14609,-5554,-10781,-2524,-12439,-4001], -[1,3,9489], -[0,0,31,9490,8], -[0,-10781,-4001,-11315,-3276,-6787], -[1,3,9492], -[0,9493,9494,9495,9], -[0,-7141,-1948,-4701,-2510,-14610], -[0,-3037,-3046], -[0,-14611,-14612,-2501,-14613,-6491,-14614,-14615,-14616], -[1,3,9497], -[0,9498,9499,9500,4], -[0,-482,-2267,-2269], -[0,-519,-668,-756,-3607,-1788,-2384,-2541], -[0,-4001,-14604,-2525,-14617,-14618,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513, --5550,-2547,-1573,-5545,-3958,-5554], -[1,3,9502], -[0,9503,29,9504,6], -[0,-8143,-2202], -[0,-14619,-14620], -[1,3,9506], -[0,0,9507,9508,4], -[0,-589,-642,-932,-940,-967,-1110,-1654,-1788,-1942,-13490], -[0,-14621,-14622,-14525,-14623,-14624,-3509], -[1,3,9510], -[0,9511,9512,9513,9], -[0,-7334,-615,-668,-674,-812,-14625,-1400,-1403,-1792,-3633,-14626,-14627], -[0,-756,-1405,-1654,-1657,-6810,-2125,-2210,-2250], -[0,-3690,-674,-14628,-6596,-7534,-3578], -[1,3,9515], -[0,9516,9517,9518,8], -[0,-1109,-14629,-14630,-2546], -[0,-1065,-1939,-2320,-2322], -[0,-2533,-1334,-2540,-3120,-633], -[1,3,9520], -[0,9521,9522,9523,6], -[0,-8696,-14631,-14632,-10781,-14633,-14634,-14635], -[0,-7746,-461,-1449,-1654,-2210,-932,-14636,-600,-879,-719,-2410,-3037,-14637,-14638,-957,-7894,-14639], -[0,-11592,-11593,-2534,-14640,-8787,-8713,-788,-14641,-14642,-14643,-10780,-9133], -[1,3,9525], -[0,9526,9527,9528,4], -[0,-2165], -[0,-527,-534,-558,-11550,-632,-14644,-14645,-13841,-708,-756,-767,-932,-14646,-1405,-1412,-1415,-1417,-14647,-1753,-1771, --1955,-2410,-14648,-2490,-2501], -[0,-14649,-6597,-3756,-4182,-4055,-14650,-14651,-14652,-14653,-14654,-8531,-8532,-2536,-2537,-6408,-8530,-14655,-9307, --5845,-14656,-14657,-14658,-1838,-3215,-6747], -[1,3,9530], -[0,9531,9532,9533,8], -[0,-2165,-2538], -[0,-756], -[0,-6597,-4055], -[1,3,9535], -[0,9536,219,7,4], -[0,-1309,-1435,-14659], -[1,3,9538], -[0,0,192,9539,4], -[0,-6597,-2538], -[1,3,9541], -[0,0,9542,9543,4], -[0,-1415,-2555,-14660,-932,-1753,-14661,-1942,-1100,-1771,-953,-7055,-940,-967], -[0,-5387,-5092,-6597,-3215,-3214,-14662,-14663], -[1,3,9545], -[0,0,0,9546,4], -[0,-2533,-5998], -[1,3,9548], -[0,9549,9550,9551,4], -[0,-1630,-506,-932,-1111,-1110,-1942,-1099,-2400,-1639,-755,-8275,-1849,-1101,-965,-11813,-950,-2411,-14664,-968,-978, --5918,-940,-9869,-8339,-967,-3686,-3748,-428,-14014,-9486,-8230], -[0,-1763,-519,-999,-1344,-815,-5917,-1534,-3330,-86,-6630,-4036,-1768,-1945,-3307,-7357], -[0,-5732,-687,-2541,-8193,-8196,-8197,-707,-8169,-5553,-7148,-8170,-1452,-8171,-932,-5874,-8172,-2250,-8173,-7440,-7144, --8174,-7840,-8175,-5493,-3214,-2410], -[1,3,9553], -[0,0,9554,9555,4], -[0,-4733,-920,-14665,-1654], -[0,-2542,-6597], -[1,3,9557], -[0,9558,9559,9560,10], -[0,-3345], -[0,-21,-23,-14666,-38,-40,-14667,-535,-14668,-14669,-633,-932,-1412,-1451,-1788,-14670], -[0,-5569,-5570,-14671,-4112], -[1,3,9562], -[0,9563,9564,9565,4], -[0,-719,-2858], -[0,-1788,-812,-1654,-932,-756,-2416,-633], -[0,-8472,-2544,-7723,-14242,-3962,-7107,-5559,-6422,-7724,-2451,-3264,-6138,-14672], -[1,3,9567], -[0,0,9568,9569,4], -[0,-14673,-469,-1872,-2153,-2535], -[0,-14674,-14675,-14676,-14677,-14678,-4125,-14679,-3552], -[1,3,9571], -[0,0,31,9572,10], -[0,-1015,-1631,-6792,-6696,-7208,-5839], -[1,3,9574], -[0,0,9575,9576,5], -[0,-3983,-3035,-3198,-14680,-3617,-14681,-3036,-4647,-3621,-3037,-14682,-3046,-4204,-427,-428,-664,-767,-821,-932,-960, --1004,-11616,-1107,-1449,-1654,-1689,-1741,-1788,-2233,-2234,-2376,-2410,-2443,-2501,-2503,-2531,-14683], -[0,-687,-3958,-4000,-11564,-5550,-8905,-3770,-14684,-3974,-3975,-5561,-13861,-2547], -[1,3,9578], -[0,0,9579,9580,8], -[0,-1415,-2387,-932,-2127,-1942,-190,-533,-1023,-2410,-23,-3136,-3037,-1426,-40,-2411,-3326,-3561,-940,-3267,-14685,-3412], -[0,-14686,-3215,-3270], -[1,3,9582], -[0,9583,9584,9585,10], -[0,-1107,-503], -[0,-589,-6398,-1414], -[0,-2548,-4055,-14687,-14688], -[1,3,9587], -[0,9588,9589,235,5], -[0,-701,-10415,-5505,-2267,-10751,-2551], -[0,-32,-42,-3035,-3621,-3037,-427,-14689,-652,-664,-668,-10480,-767,-769,-932,-967,-1166,-11831,-1654,-2125,-2410,-2518, --14690], -[1,3,9591], -[0,0,9592,9593,4], -[0,-32,-42,-3035,-3621,-3037,-427,-428,-652,-664,-767,-932,-1166,-1654,-1978,-2125,-2184,-2253,-2410], -[0,-6748,-3215,-2550,-3957,-687,-6747,-5829,-4377,-6748], -[1,3,9595], -[0,9596,9597,7,4], -[0,-14691,-567,-651,-656,-668,-10506,-719,-14692,-812,-10659,-834,-1105,-1371,-1384,-5894,-1526,-14693,-1645,-1650,-1728, --1733,-1796,-7772,-2059,-14694,-2105,-14695,-2125,-14696,-2177,-2270,-2323,-2325,-2441,-10523], -[0,-527,-528,-533,-534,-6085,-555,-559,-14697,-14698,-560,-562,-572,-932,-14699,-7748,-14700,-951,-14701,-956,-14702,-969, --1059,-1168,-1174,-1232,-1237,-1266,-1268,-1415,-1455,-1661,-2330,-2501], -[1,3,9599], -[0,0,0,9600,8], -[0,-2552,-2554,-3590,-5550,-1764,-13499], -[1,3,9602], -[0,9603,9604,9605,11], -[0,-5822,-11280], -[0,-599], -[0,-2432,-5408,-5827,-5409,-6656], -[1,3,9607], -[0,9608,9609,263,5], -[0,-14703,-14704,-14705,-14706,-14707,-506,-668,-719,-812,-999,-14708,-1111,-14709,-8802,-1549,-14710,-14711,-2177,-2218, --2430,-14712], -[0,-3198,-3164,-3037,-3199,-14713,-652,-757,-932,-14714,-1077,-1446,-1942,-1945,-2125,-2210,-14715,-2269,-2410,-9011, --9010], -[1,3,9611], -[0,9612,9613,263,6], -[0,-668,-812,-999,-2177,-1646,-1549,-9444,-2205,-2343,-1456,-14711,-1514,-14716,-3609,-3164,-14705], -[0,-888,-1446,-2210,-2469,-757,-1376,-1942,-2400,-4370,-2410,-9010,-3198,-4372,-3199,-9011,-14713,-5686,-14703,-12968, --14706,-4049,-2556,-3664,-1945], -[1,3,9615], -[0,0,14,9616,4], -[0,-2558,-14717,-14718,-687,-1965,-5874,-3962,-3953,-14719,-14720,-1838,-14721], -[1,3,9618], -[0,9619,9620,9621,11], -[0,-1630,-1805,-668,-2562,-1548,-1040,-10325,-14722,-14723,-9764,-14724,-14725,-728,-769,-14726,-10388,-5895,-14707,-6715, --14727,-14703,-14728,-3609,-2433,-14729,-2556], -[0,-652,-2541,-1722,-2210,-14714,-1110,-756,-14730], -[0,-5732,-687,-3577,-3113,-7646,-7641,-3578,-3673,-3970,-9471,-3976,-3262,-3960,-3994,-3871], -[1,3,9623], -[0,0,9624,9625,4], -[0,-14731,-479,-519,-668,-689,-713,-1496,-10962,-1863,-2384,-2541], -[0,-712,-5535,-714,-3974,-4000,-687,-2265,-5514,-5553,-3770,-3975,-5538,-5550,-2547,-1573,-5545,-3958,-5554], -[1,3,9627], -[0,9628,101,9629,6], -[0,-719,-1376], -[0,-2561,-3690,-3844,-3445], -[1,3,9631], -[0,9632,9633,9634,4], -[0,-1630,-668,-688,-2528,-481,-2269,-482,-2267,-14732], -[0,-2541,-1654], -[0,-5732,-687,-3976,-2559,-14733,-14734,-6335,-12665,-5514], -[1,3,9636], -[0,218,9637,9638,5], -[0,-2198,-2177,-1654], -[0,-14735,-2563,-14736,-14737,-14738,-5269,-14739,-6249], -[1,3,9640], -[0,0,0,9641,11], -[0,-2410,-4058,-3926,-8038,-8910], -[1,3,9643], -[0,9644,9645,9646,6], -[0,-523,-1004,-1851,-2564], -[0,-3731,-3035,-4269,-3732,-14740,-3617,-14741,-3621,-14742,-617,-664,-665,-720,-724,-744,-796,-932,-14743,-1380,-1654, --1676,-1764,-1942,-2251,-2379,-2410], -[0,-2564,-1004,-3690,-14744,-14745,-3445], -[1,3,9648], -[0,9649,9650,9651,10], -[0,-567,-615,-812,-13317,-1351,-1449,-1548,-1640,-1681,-2105,-2364,-2531], -[0,-526,-528,-555,-558,-617,-744,-824,-932,-1004,-1168,-1174,-1197,-11777,-1235,-1252,-1266,-1654,-1676,-1687,-12720, --2111], -[0,-4004,-3636,-3634,-9249,-4679,-4683,-14387,-11878,-4865,-3264,-5177,-5092,-775,-3214,-4868,-5998,-10640,-14746], -[1,3,9653], -[0,0,9654,7,4], -[0,-2934,-2953,-14747,-9705,-3037,-14748,-615,-10877,-1419,-1421,-1415,-1654,-1660,-1412,-2234,-1413,-10034,-2153,-2314, --2387,-2469], -[1,3,9656], -[0,9657,9658,9659,8], -[0,-14749,-7334,-633,-8958,-14750,-714,-719,-724,-742,-812,-1004,-14751,-5456,-14752,-5457,-1296,-1304,-1336,-5458,-14753, --5459,-1548,-1810,-1820,-14754,-2194,-14755,-7222,-2291,-14756,-8573,-2491,-2493,-2546,-2549,-14757], -[0,-465,-14758,-14759,-1654,-1860,-2322,-2347,-14760], -[0,-2568,-3634,-4865,-1989,-1654,-5471], -[1,3,9661], -[0,9662,40,9663,5], -[0,-293,-295,-297,-14761,-832,-2177,-2369,-2387], -[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340,-4343,-4347], -[1,3,9665], -[0,9666,40,164,6], -[0,-668,-2387,-297,-2177,-1110,-293,-7356,-429,-14761,-8167,-5201], -[1,3,9668], -[0,9669,40,9670,4], -[0,-2387,-297,-2177,-1427,-1645,-293,-1863,-4023,-1426,-2551,-4018,-11751,-4019,-1352,-14761], -[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-14762,-4340,-4347], -[1,3,9672], -[0,9673,9674,9675,9], -[0,-2387,-297,-2177,-293,-295,-2569,-14761], -[0,-1787,-2257], -[0,-4333,-4334,-4335,-14763,-4339,-4340,-4343,-4347], -[1,3,9677], -[0,9678,9679,9680,11], -[0,-14764,-14765,-2387], -[0,-14766,-14767,-4745,-2344], -[0,-14768,-2006,-14769,-14770,-5176,-9547,-7581,-12543,-14771,-14772,-14773], -[1,3,9682], -[0,9683,9684,9685,11], -[0,-14774,-2634,-2006,-2019,-14775,-2170,-14776], -[0,-3037,-3040,-3052,-932,-10813,-1889,-2318,-2410], -[0,-5375,-770,-13055,-5375,-3634,-8576,-13056,-3551,-13057,-13058,-5376,-13059,-11152,-5150], -[1,3,9687], -[0,9688,0,9689,4], -[0,-786,-1967,-44,-3772,-3773,-3765], -[0,-2006,-3159,-4217,-906], -[1,3,9691], -[0,9692,190,9693,11], -[0,-6789,-6790,-14777], -[0,-3214,-1446,-1838,-10855,-856], -[1,3,9695], -[0,9696,9697,264,4], -[0,-44,-3345], -[0,-3136,-1415], -[1,3,9699], -[0,9700,9701,9702,4], -[0,-44,-14778,-1967,-2029,-2387], -[0,-3192,-6093,-3394,-3794,-2685,-14779,-8471,-261,-3326,-350,-405,-406,-407,-14780,-409,-410,-3136,-3140,-3040,-427,-428, --3766,-14781,-14782,-639,-757,-767,-795,-932,-3071,-969,-1059,-14783,-14784,-5111,-8158,-1771,-1940,-4130,-2006,-2019, --2029,-2034,-2052,-2184,-2253,-2410], -[0,-14785,-2006,-6701,-14786,-14787,-3823,-6750,-12605,-14788,-4666,-14789,-12606,-14790], -[1,3,9704], -[0,90,0,9705,9], -[0,-4665,-4666,-5248,-10111,-775,-5564,-14791,-3962,-3214,-3756,-14792,-14793,-12898,-14794,-14795,-1889,-3583,-14796, --14797,-6750,-12123,-14798,-2363,-14799], -[1,3,9707], -[0,9708,9709,9710,9], -[0,-2857,-14800,-14801,-482,-14802,-1460,-2400,-14803], -[0,-14804,-3311,-3312,-14805,-14806,-14807,-2410], -[0,-14808,-4187,-2444,-3966,-4865,-3445,-3100,-14809,-14810], -[1,3,9712], -[0,0,0,9713,8], -[0,-3276,-7148,-14811,-7485,-4165,-4182,-14812,-14813,-14814,-7198,-14815], -[1,3,9715], -[0,9716,9717,264,5], -[0,-23,-12490,-44,-3345,-14816,-14817,-14818,-14819,-2577,-14820,-14821,-14822,-160,-14823,-2695,-14824,-4785,-14825, --2699,-366,-3735,-9947,-14826,-440,-14827,-518,-534,-14828,-5323,-635,-668,-719,-753,-778,-779,-865,-866,-1077,-1107, --1122,-14829,-1123,-1331,-1455,-1469,-1548,-1643,-1666,-14830,-1729,-1805,-1889,-1896,-1897,-1906,-1908,-12060,-1942, --1966,-6387,-2015,-2041,-2144, --5977,-2193,-2195,-2275,-14831,-2335,-14832,-2435,-2466,-11710,-2501,-2502,-2505,-5628], -[0,-14833,-3758,-3048,-3044,-14834,-4201,-6630,-13186,-5129,-1623,-1683,-1978,-2125], -[1,3,9719], -[0,34,9720,9721,5], -[0,-234,-350,-4062,-351,-3561,-3043,-3136,-3040,-427,-428,-3807,-748,-915,-932,-940,-958,-967,-969,-1415,-1419,-1449, --1788,-1942,-2006,-2019,-2125,-2127,-2130,-4063,-4064,-2142,-2144,-2233,-2375,-2376,-2379,-2387,-2402,-2501,-2503,-2505, --238,-240], -[0,-9975,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], -[1,3,9723], -[0,34,9724,9725,4], -[0,-23,-40,-42,-4066,-3136,-3037,-427,-428,-14835,-14836,-14837,-441,-4838,-5593,-753,-767,-932,-940,-958,-14838,-980, --1415,-1419,-1942,-2125,-2127,-2128,-2130,-2142,-2144,-14839,-2375,-2387,-2402,-2410,-2476,-238], -[0,-2476,-3944,-14840,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], -[1,3,9727], -[0,34,9728,9729,8], -[0,-23,-40,-42,-3035,-3136,-3621,-3037,-427,-428,-14835,-14836,-14841,-14837,-441,-4838,-5593,-664,-767,-932,-940,-958, --14838,-980,-1771,-1942,-2125,-2127,-2128,-2130,-2142,-2144,-14839,-14842,-2387,-2402,-2410,-2476,-238,-2584], -[0,-2476,-3944,-14840,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060,-5177,-775,-2316], -[1,3,9731], -[0,9732,9733,9734,5], -[0,-5334,-9596,-9582,-1839,-5358,-6648], -[0,-4251,-3037,-652,-12326,-1942,-2094,-2100,-7699,-2399,-2400,-2410,-7669,-2541], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-1838,-14843], -[1,3,9736], -[0,0,9737,9738,4], -[0,-932,-1654,-1788,-2210], -[0,-2254,-14844,-14845,-13497,-14846,-3445], -[1,3,9740], -[0,0,0,9741,4], -[0,-14847,-14848,-14849,-14850,-14851,-14852,-14853,-14854,-856,-1599], -[1,3,9743], -[0,9744,9745,9746,6], -[0,-9929,-9936,-14855,-812,-9927,-1371,-1875,-2240,-2347,-2387,-2555], -[0,-3986,-3988,-3470,-3471,-3198,-9943,-11697,-3136,-3037,-11337,-9941,-7836,-8497,-932,-1415,-1942,-2174,-2375,-2410], -[0,-5271,-5270,-687,-3162,-3994,-9946,-5269], -[1,3,9748], -[0,9749,0,9750,5], -[0,-5334,-14856,-12767,-1293,-14857,-5356,-5358], -[0,-9589,-3264,-14857,-14075,-1599,-10684,-10918,-3862,-2083,-12745,-2093,-14858,-2427], -[1,3,9752], -[0,9753,9754,9755,5], -[0,-1281,-2297], -[0,-519,-708,-2410,-2541], -[0,-10606,-3974,-14859,-687,-6659,-7440,-5514,-5560,-4000], -[1,3,9757], -[0,9758,9759,9760,11], -[0,-8609,-12518], -[0,-2832,-11432,-3615,-3244,-190,-3983,-367,-7043,-406,-407,-409,-14860,-3136,-3037,-3040,-12591,-427,-428,-9723,-932, --940,-12520,-969,-970,-976,-1110,-1344,-1415,-1419,-1534,-2634,-1942,-2006,-2019,-2965,-2125,-2177,-2410,-2411], -[0,-2592,-2006,-3322,-2105,-3324,-4213], -[1,3,9762], -[0,0,9763,9764,5], -[0,-3037,-2228,-2229,-2391,-2410], -[0,-2410,-8038,-3694,-9069,-7304,-8425,-6582,-7534,-4058,-3445,-3577,-4055,-6435,-640,-5835,-6421,-10227,-6233,-12343, --14861,-14862], -[1,3,9766], -[0,9767,9768,9769,4], -[0,-14863,-14864,-14865], -[0,-25,-46,-3983,-932,-1452,-1547,-1654,-2111,-8325,-2384,-2416], -[0,-14233,-14866,-4865,-6899,-1819,-14867,-13626,-2594,-14868,-14869,-14870,-14871,-14872,-14873,-14874], -[1,3,9771], -[0,0,9772,9773,4], -[0,-1449,-2105,-2106], -[0,-3264,-9703,-9566], -[1,3,9775], -[0,9776,9777,9778,4], -[0,-1297,-14875,-9684,-2267,-14876,-14877,-14878,-6467,-14879,-14880,-14881,-14882,-14883,-14884,-14885,-14886,-14887, --14888,-14889,-9154,-14380,-14890,-14891,-14892,-8965,-14893,-14894,-14895], -[0,-652,-999,-2210,-14896,-581,-932,-825,-14897,-1098,-1942,-367,-749,-767,-2293,-2091,-10402,-2410,-3037,-14898,-14899, --4372,-3906,-11098,-14900,-4203,-14901,-14902,-14903,-14904,-14905,-14906,-13409,-14907,-14908,-4646], -[0,-14909,-3161,-13039], -[1,3,9780], -[0,9781,9782,9783,4], -[0,-14910,-14911,-865,-1461,-1729,-4389], -[0,-14912,-14913,-3037,-4201,-932,-7060,-1942,-2125,-2392,-2410,-2469], -[0,-4344,-7547,-4165], -[1,3,9785], -[0,9786,9787,9788,8], -[0,-812,-2193,-2387,-2550,-1077,-719,-1729,-14914,-9929,-1734,-9931,-14915], -[0,-1763,-1415,-1344,-2331,-932,-2125,-2375,-1942,-2410,-3136,-3037,-3198,-11337,-8890,-50,-3048,-4201,-14916,-3986,-3988, --427], -[0,-1386,-3996,-14917,-3162,-5269,-3167,-14918], -[0,25,9790], -1753574400000, -[1,3,9792], -[0,9793,0,93,4], -[0,-682,-1384,-1967,-1993,-2006,-2019,-2029,-2489], -[1,3,9795], -[0,9796,0,9797,10], -[0,-2387,-14920,-14921,-14922], -[0,-5818,-1122,-3844,-3161,-3966,-3967,-2410], -[1,3,9799], -[0,9800,9801,221,5], -[0,-9933,-14923,-9938,-9931,-9929,-9934,-9935,-9932,-9937,-9936,-668,-812,-834,-9927,-9925,-1548,-1805,-3547,-8874,-2177, --2240,-9926,-9422,-2291,-2323,-2387], -[0,-3198,-9939,-9943,-3136,-3044,-3037,-3199,-9941,-4202,-5673,-1415,-1417,-1534,-2125,-2231,-2375,-2410], -[1,3,9803], -[0,34,9804,9805,5], -[0,-14924,-14925,-14926,-8250,-7,-8,-9,-10,-427,-428,-519,-748,-932,-940,-958,-967,-14927,-1788,-1942,-2125,-2153,-2234, --2387,-2402,-2410,-238], -[0,-475,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], -[1,3,9807], -[0,9808,9809,9810,4], -[0,-8547,-1548], -[0,-3037,-427,-428,-932,-940,-958,-967,-1942,-2125,-2127,-2130,-2142,-2144,-2387,-2402,-2410,-238], -[0,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], -[1,3,9812], -[0,9813,9814,65,5], -[0,-712,-2544], -[0,-4597,-2391,-2423], -[1,24,9816], -[0,25,9817], -1738454400000, -[1,3,9819], -[0,9820,9821,9822,4], -[0,-44,-2965], -[0,-14928,-2006,-932,-708,-2379,-1942,-767,-2019,-14929,-2410,-5111,-3040,-14784,-3052,-14930,-2052,-7465,-428,-3081,-427], -[0,-3634,-2006,-3322,-5119,-4868], -[1,3,9824], -[0,9825,0,9826,8], -[0,-14931,-14932,-14933], -[0,-10543,-9745,-11796,-9753,-6955,-9030,-2322,-14934,-4132,-14935,-3277,-14647,-11069,-6129,-11037,-5880,-7375,-14936, --14937,-6656,-14938,-14939,-10545,-3018,-3210,-14940,-1015,-3756,-3116,-14770,-6960,-11113,-12877,-4058,-14941,-14942, --6695,-14769,-12869,-6324,-4213,-2564,-6052,-9772,-6821,-5998,-8988,-14943,-11582,-14944,-6511,-5837,-1985,-3103,-14945, --14946,-5550,-1631,-1000,-8808,-8127,-3590,-1959, --7333,-2487,-7420,-5856,-9571,-6011,-3921,-10838,-14947,-2265,-11784,-6953,-4111,-14948,-10366,-9054,-6510,-3612,-11685, --6787,-11798,-12255,-14949,-7863,-14950,-12343,-5176,-719,-3272,-5831,-7373,-14773,-8411,-9027,-11822,-6849,-6962,-7199, --3690,-5846,-687,-14604,-14951,-7856,-7581,-14952,-5827,-14953,-3215,-5195,-3911,-14954,-2387,-3015,-9980,-6281,-4784, --14955,-6548,-10547,-6951,-6964,-6599,-13466, --10527,-11866,-5924,-1435,-13003,-1463,-8038,-3578,-5514,-4782,-7558,-5572,-8410,-4110,-6120,-6968,-503,-14956,-14957, --6434,-6958,-6917,-3258,-6107,-1640,-3994,-1471,-13469,-12991,-14958,-3186,-5272,-14959,-14960,-6233,-12342,-8910,-10537, --581,-6187,-3206,-5112,-2368,-6932,-7283,-14961,-11872,-11791,-3931,-6970,-6845,-510,-5874,-14962,-3771,-4113,-11792, --14963,-3815,-11112,-6717,-7331,-8027,-3634, --8163,-6977,-6280,-14964,-3322,-12020,-10549,-14965,-5210,-2547,-10544,-8108,-14966,-11153,-5092,-8989,-7822,-1361,-1415, --1412,-3481,-6370,-655,-3207,-2344,-6972,-8166,-11782,-7459,-1764,-770,-2059,-7091,-4053,-4792,-6946,-8412,-3582,-6508, --14967,-14968,-4795,-14969,-12893,-6506,-8164,-5554,-635,-6956,-682,-6557,-14970,-14622,-14971,-11070,-14972,-3930, --13770,-6987,-7334,-5842,-13468,-14525,-14973, --1080,-10539,-2518,-6947,-10440,-12892,-8132,-8421,-7404,-2451,-13467,-14974,-1961,-4142,-1122,-6966,-13234,-4679,-12883, --5549,-5395,-9918,-6971,-14975,-8996,-12543,-5829,-11797,-1810,-6655,-14976,-14977,-14978,-14979,-12888,-7370,-8616, --7237,-2319,-6748,-14980,-6439,-1076,-2074,-5569,-3173,-7230,-1983,-14981,-3770,-1993,-11793,-4107,-13465,-1039,-10413, --12437,-7303,-9173,-6989,-12990,-14982,-6978,-5553, --3270,-3185,-10330,-3217,-14983,-1030,-9172,-9917,-4055,-4665,-11821,-3324,-5563,-6784,-6965,-7421,-1359,-1654,-4676, --2105,-14984,-6545,-3175,-10541,-6130,-6957,-3276,-14985,-12025,-7200,-14986,-2489,-1666,-9261,-775,-6543,-7442,-12912, --13471,-14987,-4781,-13005,-615,-3966,-1449,-4115,-12889,-3925,-14988,-6654,-14989,-8388,-8472,-6948,-9048,-14624,-14772, --12512,-8806,-3975,-3209,-14990,-4783,-6975, --14991,-6509,-6444,-9847,-11867,-6985,-14992,-11639,-14993,-3926,-6188,-3162,-6555,-11049,-753,-3184,-14994,-664,-6986, --8128,-14995,-6131,-6852,-12435,-7372,-14996,-1573,-12021,-14997,-14998,-1456,-14999,-3923,-15000,-4134,-5562,-5101, --8047,-9826,-15001,-2525,-15002,-15003,-9577,-15004,-15005,-5396,-5208,-15006,-10548,-2114,-13872,-12438,-729,-7369, --5484,-6351,-8618,-714,-4117,-9572,-12885,-13858,-6983, --11820,-15007,-15008,-1047,-11997,-1342,-727,-15009,-5260,-15010,-8990,-4182,-8130,-6952,-518,-12878,-1986,-15011,-11817, --891,-1801,-6976,-5841,-11483,-7440,-15012,-15013,-6980], -[1,3,9828], -[0,0,9829,9830,4], -[0,-1452,-8171,-1654], -[0,-5514,-3264], -[1,3,9832], -[0,9833,9834,9835,5], -[0,-4372,-2210,-2387], -[0,-13198,-3698,-13201,-13202,-13204,-13205,-15014,-2402], -[0,-5817,-521,-3634,-4215,-8466,-15015], -[1,3,9837], -[0,0,9838,9839,8], -[0,-3561,-668,-15016,-1077,-1107,-1168,-1190,-15017,-2125,-2127,-2132,-2142,-2334,-2387,-2388,-2410], -[0,-3994,-4126,-15018,-15019,-3578,-5270,-11536,-3214,-2363,-15020,-3162,-752,-3862,-2494,-3588], -[1,3,9841], -[0,0,0,9842,5], -[0,-4000,-3162,-812], -[1,3,9844], -[0,9845,9846,9847,8], -[0,-617,-724,-812,-832,-5035,-996,-1496,-2213,-2564], -[0,-3983,-15021,-3171,-364,-3170,-365,-3865,-3330,-518,-803,-932,-940,-975,-1110,-1889,-1942,-1946,-2910,-2299,-2300, --2318,-2410,-2466,-2469], -[0,-3690,-3445,-1334,-2512,-2531,-3691,-3967], -[1,3,9849], -[0,0,9850,9851,6], -[0,-23,-40,-86,-3307,-518,-534,-632,-12427,-664,-15022,-699,-15023,-796,-15024,-1168,-15025,-1174,-15026,-15027,-1184, --1187,-1197,-1199,-1212,-1228,-1232,-1237,-1238,-1243,-1244,-1248,-15028,-1252,-1262,-1271,-15029,-1344,-15030,-1442, --1496,-1654,-1655,-15031,-4916,-1889,-1953,-2109,-2111,-2127,-2128,-3572,-3031,-15032,-2210,-4096,-15033,-2460,-15034, --2501,-7752], -[0,-775,-3754,-2162,-3756,-3576,-3575,-3161,-6334,-15035,-15036], -[1,3,9853], -[0,9854,9855,9856,9], -[0,-668,-15037], -[0,-15038,-3664,-1344,-1534,-1942,-2410,-2469], -[0,-687,-712,-714,-5535,-3958,-4000,-5538,-15039,-15040,-1573,-5545,-5550,-2265,-5553,-3770,-3974], -[1,3,9858], -[0,9859,9860,9861,8], -[0,-3776,-15041,-1606,-1967], -[0,-21,-23,-32,-5870,-26,-12490,-34,-12492,-3376,-3400,-3398,-3380,-40,-41,-15042,-3615,-3244,-190,-15043,-12687,-15044, --15045,-15046,-4749,-4758,-15047,-406,-407,-409,-15048,-410,-3136,-4961,-3037,-3040,-3052,-3804,-527,-533,-534,-8560, --15049,-4976,-15050,-684,-748,-749,-753,-767,-824,-932,-933,-940,-951,-958,-962,-967,-969,-970,-976,-1077,-1110,-15051, --1415,-4980,-1417,-1419,-15052,-1449,-1889,-1939,-1942,-1952,-2006,-2015,-2019,-2029,-15053,-2082,-2205,-2257,-2278, --15054,-2339,-15055,-13807,-2375,-2376,-2410,-2501,-2503,-2505], -[0,-2631,-15056,-15057,-3095,-3482,-4189,-3161,-2006,-4101,-15058,-3261,-15059,-15060,-15061,-15062,-4666,-15063,-15064, --15065,-712,-8038,-3999,-4684,-15066,-3160,-3477,-4727,-15067,-2278], -[1,3,9863], -[0,0,0,9864,4], -[0,-9681,-9681,-3264,-7153,-2435], -[1,3,9866], -[0,0,9867,9868,4], -[0,-15068,-1127,-1134,-1136,-1138,-1140,-1144,-1148,-1149,-15069,-1160], -[0,-14214,-14213,-15070,-15071,-3825,-4126,-6409,-12536,-13615,-1437,-8635,-3576,-3162], -[1,3,9870], -[0,9871,9872,254,11], -[0,-1889,-2694,-2279,-4007,-658,-6410], -[0,-2531,-502,-1683,-1816,-2323,-2564,-6842,-1107,-2178,-2444,-461,-2624,-651,-812,-1072,-1460,-12980,-507,-640,-649,-743, --997,-1401,-1699,-2066,-2177,-2334,-5034,-1047,-3447,-1827,-1958,-2501,-1977,-1999,-12981,-12955,-367,-4204,-719,-767, --1273,-11121,-10697,-9548,-1864,-2257,-12982,-15072,-5052,-5673,-12971,-12972,-778,-2745,-1336,-2773,-1354,-12977,-2231, --2269,-2343,-2410, --10052,-23,-237,-3036,-12967,-8559,-5900,-512,-2740,-724,-769,-1429,-2163,-12978,-2194,-6375,-12979,-3921,-47,-3872, --10098,-12956,-3269,-3198,-12963,-3040,-534,-635,-12973,-737,-12974,-1465,-12976,-1930,-8578,-2275,-2594,-12957,-5033, --3044,-3199,-12975,-8562,-6378,-2041,-5977,-6380,-44,-12960,-15073,-6381,-1851,-6383,-6384,-46,-4020,-13428,-12966,-6633, --6386,-1848,-6387,-3194,-12951, --3983,-4749,-8523,-3052,-1337,-6388,-1734,-22,-40,-13427,-12968,-771,-1343,-2233,-11463,-6390,-6391,-5038,-4776,-3732, --7080,-6832,-7026,-1927,-41,-12947,-269,-5085,-3850,-12964,-12969,-736,-1929,-2082,-32,-13186,-6394,-1934,-4195,-3251, --12948,-12952,-15043,-12965,-14296,-7165,-7967,-2335,-12949,-15074,-10100,-10101,-7189,-1903,-2791,-12953,-12959,-1643, --3077,-42,-12950,-8355,-15075,-8863, --12954,-4758,-12961,-12946,-4762,-5323,-4763,-8561,-6484,-38,-7164,-12962,-1915,-37,-3368,-15076,-3376,-3204,-3379,-3385, --3389,-553], -[1,3,9874], -[0,0,9875,9876,10], -[0,-652,-13239,-1344,-1534,-1889,-2541], -[0,-1889,-775,-3583,-10739], -[1,3,9878], -[0,9879,9880,9881,9], -[0,-674,-3050,-15077,-1630,-1641,-1863,-3240,-12379,-2218], -[0,-86,-3307,-190,-3470,-7040,-3471,-3472,-7041,-7042,-3713,-3037,-5675,-15078,-427,-428,-767,-932,-965,-999,-1110,-1344, --13856,-1534,-1870,-1942,-2125,-2174,-2410,-2469], -[0,-3998,-1978,-15079,-3167,-15080,-5270,-5271,-15081,-15082,-15083,-6527,-1594,-3162,-13188,-15084,-15085], -[1,3,9883], -[0,9884,9885,9886,9], -[0,-15086,-15087,-640,-5273,-1610,-1955,-4620,-15088], -[0,-23,-32,-40,-534,-15089,-684,-9994,-778,-932,-933,-12416,-958,-10049,-1041,-3867,-1331,-15090,-2275,-2335,-14648,-2501, --2502,-2503,-2505], -[0,-3812,-3813,-3814,-3815,-3816,-3817,-856,-15091,-15092,-2637,-4847,-15093,-15094,-15095,-15096,-15097,-15098,-15099], -[1,3,9888], -[0,94,9889,9890,5], -[0,-23,-32,-44,-932,-933,-940,-958,-962,-967,-969,-970,-1415,-3156,-1942,-2006,-2034], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-10738,-9556,-15020,-15100,-12546,-5176], -[1,3,9892], -[0,0,9893,9894,5], -[0,-23,-40,-44,-15101,-12564,-932,-1344,-1534,-2006,-2034,-2410], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-13876,-15102,-6711,-15103], -[1,3,9896], -[0,0,9897,9898,11], -[0,-23,-32,-26,-3204,-38,-40,-41,-3326,-350,-351,-407,-409,-518,-703,-796,-932,-940,-12520,-967,-969,-970,-976,-1344, --1352,-1415,-1534,-1889,-1942,-1967,-2006,-2019,-2127,-4063,-15104,-3474,-4753,-2281,-2282], -[0,-2006,-13613,-15105,-4108,-2006,-3095,-15106,-3162,-5270,-5271,-15107,-15108,-15109,-15110], -[1,3,9900], -[0,9901,9902,9903,9], -[0,-44,-15111,-15112], -[0,-23,-36,-38,-40,-41,-42,-8280,-50,-15113,-407,-409,-3040,-3052,-427,-428,-440,-528,-651,-767,-932,-940,-967,-969,-1344, --1415,-1419,-1534,-1942,-2006,-2019,-2125,-2410,-2466], -[0,-15114,-15115,-2006,-3159,-14798], -[1,3,9905], -[0,9906,9907,9908,6], -[0,-656,-15116,-2400], -[0,-2832,-3615,-190,-15117,-9705,-652,-668,-716,-722,-928,-932,-940,-967,-999,-1110,-1344,-1412,-1534,-1574,-1942,-2125, --7969,-2410,-2411], -[0,-8630,-3671,-856,-3262,-1599,-3437,-4328], -[1,3,9910], -[0,9911,9912,9913,11], -[0,-349,-703,-15118,-3517,-996,-1359,-2040,-2112,-12695,-12518,-15119], -[0,-21,-23,-40,-41,-42,-44,-15042,-10791,-8230,-3615,-190,-12608,-15120,-349,-3562,-15043,-358,-4754,-13424,-2948,-15121, --4890,-15122,-15123,-15124,-407,-409,-410,-15125,-12940,-15126,-3037,-3040,-3052,-6633,-440,-5286,-3664,-534,-15127, --8561,-635,-15050,-767,-7272,-7254,-7271,-834,-932,-15128,-940,-948,-958,-960,-962,-967,-969,-970,-15129,-4756,-1107, --1110,-1344, --1449,-1534,-1610,-1874,-1942,-2006,-2019,-2029,-2040,-2125,-2257,-2335,-2376,-2378,-2410,-2411,-6412,-2469,-15130,-2501, --2502,-2503], -[0,-2006,-3476,-14497,-3159], -[1,3,9915], -[0,9916,9917,9918,4], -[0,-15131], -[0,-15132,-15133,-15134,-15135,-350,-351,-410,-4875,-4877,-15136,-15137,-4878,-15138,-15139,-652,-664,-15140,-15141,-932, --15142,-958,-1449,-11472,-1654,-1942,-2127,-15143,-2184,-2210,-2211,-2253,-2334,-2410], -[0,-15144,-5072,-5065,-12238,-5073,-14939,-15145,-5495,-3161,-12122,-7651,-3110,-15146,-13039,-6106,-6107,-5394,-15147, --15148], -[1,3,9920], -[0,0,9921,9922,6], -[0,-23,-5585,-40,-2127,-2128,-2133,-2137,-2339,-15149,-13807,-2416], -[0,-15150,-15151,-7581,-1634,-475,-15152,-2006,-2476,-3755], -[1,3,9924], -[0,9925,9926,9927,4], -[0,-44,-15153,-4817,-809,-1549,-15154,-2355,-2451], -[0,-3341,-26,-38,-40,-42,-86,-3307,-2997,-3326,-350,-15155,-4062,-351,-3561,-15156,-15157,-15158,-15159,-3164,-3037,-3803, --5011,-6109,-427,-428,-4837,-5589,-3664,-3665,-5590,-441,-14247,-14244,-4838,-518,-523,-656,-5339,-720,-726,-767,-795, --796,-812,-15160,-928,-932,-934,-940,-958,-967,-980,-1125,-1344,-1449,-1521,-1534,-1551,-15161,-1662,-1889,-1942,-1955, --15162,-2082,-2125,-2127,-13263,-4063,-5122,-6483,-15163,-6746,-4753,-15164,-15165,-2140,-14839,-2145,-15166,-2387,-2410, --2466,-15167,-2469,-2476,-2478,-2483,-5627], -[0,-2476,-3162,-15168], -[1,3,9929], -[0,9930,9931,9932,5], -[0,-5277,-929,-1437], -[0,-23,-40,-9678,-4964,-518,-521,-15169,-757,-767,-784,-795,-7758,-865,-932,-940,-943,-958,-966,-967,-968,-974,-1753, --1889,-1890,-1891,-15170,-1896,-1903,-15171,-1906,-1916,-15172,-12060,-1942,-2125,-2127,-2128,-2131,-2133,-8895,-15173, --2137,-8896,-15174,-2140,-5281,-2214,-2281,-3085,-2302], -[0,-5298,-6656,-15175,-15176,-15177,-7581,-7582,-6527,-15178,-5069,-3162,-12536,-7764,-4634,-12217,-8883,-1437], -[1,3,9934], -[0,9935,9936,9937,5], -[0,-523,-1435,-1548,-1646,-2153], -[0,-664,-932,-4628,-1650,-1654,-2330], -[0,-4116,-826,-687,-6999,-9043,-12054,-15179,-1334,-11915,-15180,-9041,-5730,-7085,-11642,-9261,-7084,-15181,-12578], -[1,3,9939], -[0,0,9940,9941,4], -[0,-518,-632,-1168,-15182,-1194,-1208,-1226,-1238,-1243,-1244,-1252,-7832,-15183,-1899,-2281,-2282,-2550], -[0,-2649,-15184,-15185,-775,-1521,-3162], -[1,3,9943], -[0,0,0,9944,6], -[0,-2006,-4125,-9800,-4633,-2074,-4634], -[1,24,9946], -[0,25,9947], -1731196800000, -[1,3,9949], -[0,9950,9951,7,8], -[0,-15186,-4225,-4228,-15187,-15188,-15189,-4230,-15190,-703,-5342,-15191,-1026,-3649,-1289,-14857,-1618,-10922,-1619, --5397,-15192,-15193,-2590,-4241,-2088,-4242,-2095,-15194,-15195,-15196,-12978,-4245,-2218,-12508,-2378,-15197,-2429, --15198,-2548,-2564], -[0,-5048,-409,-426,-5334,-4251,-15199,-3040,-3046,-440,-15200,-9602,-9603,-2634,-2006,-2019,-2427,-2469,-15201], -[1,3,9953], -[0,9954,0,9955,4], -[0,-12260], -[0,-810,-15202,-15203,-6367,-5896,-13618,-15204,-15205,-2653], -[1,3,9957], -[0,9958,9959,204,4], -[0,-4787,-1864], -[0,-2581,-3037,-8523,-1026,-15206,-1107,-2354,-2892,-2410], -[1,3,9961], -[0,0,0,9962,8], -[0,-2410,-3694,-4004,-4043,-1001], -[1,3,9964], -[0,9965,37,9966,4], -[0,-15207,-2387], -[0,-15208,-15209,-15210,-15211,-15212,-2410,-5210,-3215,-6478,-9471,-15213,-8130,-3756,-8386,-15214,-3445,-3577], -[1,3,9968], -[0,0,28,9969,10], -[0,-12613,-3098,-3100,-3482,-2634,-1713,-2006,-12612,-12449,-3160,-4119], -[1,3,9971], -[0,108,28,9972,8], -[0,-707,-3098,-3100,-4131,-3482,-2634,-1713,-2006,-4132,-4133,-3160,-4119], -[1,3,9974], -[0,9975,28,9976,5], -[0,-2020], -[0,-3098,-7761,-878,-3100,-3482,-2634,-1713,-2006,-3160,-4119,-7764], -[1,3,9978], -[0,266,28,9979,8], -[0,-3098,-3100,-3482,-2634,-1713,-1779,-1959,-2006,-3160,-4119], -[1,3,9981], -[0,266,28,9982,4], -[0,-15215,-3098,-3100,-3482,-2634,-1713,-2006,-7282,-3160,-4119], -[1,3,9984], -[0,0,28,9985,4], -[0,-3098,-3100,-3482,-2634,-1713,-2006,-15216,-10114,-15217,-3160,-4119], -[1,3,9987], -[0,9988,9989,9990,4], -[0,-1616], -[0,-21,-23,-3204,-40,-42,-3748,-4776,-15218,-3330,-3032,-3037,-427,-428,-932,-940,-958,-960,-965,-15219,-5863,-1772,-2125, --2410,-2469], -[0,-15220,-1874,-795,-1654,-2469,-1415,-1412,-1710,-11410,-15221,-11100,-4004,-9246,-6863,-3634,-15222], -[1,3,9992], -[0,9993,9994,9995,6], -[0,-15223,-15224,-15225,-15226,-12846,-15227], -[0,-15228,-3617,-3037,-15229,-15230,-15231,-1004,-2125,-2892,-2410,-2469], -[0,-15227,-1004,-3445,-6324,-3690,-9668,-2410,-3214,-5401], -[1,3,9997], -[0,0,9998,9999,11], -[0,-1763,-10652,-2250,-4004,-15232], -[0,-3162,-11321,-7440,-4865], -[1,3,10001], -[0,10002,10003,10004,5], -[0,-5358,-2427,-5334,-1293,-8913,-12766,-2235,-5356,-12767], -[0,-652,-932,-2083,-1942,-1874,-2094,-2410,-3037,-6648,-12750,-12749,-11167,-15233], -[0,-856,-4147,-5670,-3862,-2083,-12745,-2093,-2427], -[1,3,10006], -[0,10007,10008,10009,5], -[0,-15234,-15235,-15236,-15237,-15238,-15239,-15240,-15241,-15242,-15243,-15244,-15245], -[0,-21,-2388,-2410], -[0,-15246,-3163,-12254,-6324,-3214,-11230,-8043,-15247,-3162], -[1,3,10011], -[0,10012,0,93,11], -[0,-2606,-15248,-682,-15249,-1384,-1967,-1993,-2006,-2019,-2029,-2489], -[1,3,10014], -[0,10015,0,93,10], -[0,-2006,-2019,-1967,-2606], -[1,3,10017], -[0,10018,0,10019,8], -[0,-2387,-1387,-232,-1461], -[0,-1386,-3161,-475,-3162,-3994,-3995,-3996,-752,-3997,-3998], -[1,24,10021], -[0,25,10022], -1733616000000, -[0,25,10024], -1733961600000, -[1,24,10026], -[0,25,10027], -1734220800000, -[1,3,10029], -[0,0,10030,10031,4], -[0,-2200,-2162,-2834,-2387,-932,-2125,-2127,-2149,-2334,-1753,-1889,-1077,-1942,-620,-767,-2281,-2410,-3563,-1771,-1891, --6326,-518,-726,-3564,-1547,-6327,-945,-15250,-958,-978,-6331,-3267,-428,-14014,-3573,-427], -[0,-775,-2162,-3576,-8856,-3110,-4101,-3161,-15251,-11229], -[1,3,10033], -[0,10034,10035,10036,4], -[0,-44,-15252,-15253], -[0,-21,-23,-26,-33,-5585,-38,-39,-40,-43,-3035,-3621,-3037,-528,-534,-539,-571,-15254,-15255,-633,-664,-665,-12469,-767, --932,-1004,-4652,-1449,-1654,-1788,-2105,-2125,-2228,-2335,-2410,-2490,-2491,-2501,-2503], -[0,-5801,-3162,-3690,-10810,-15256], -[1,3,10038], -[0,0,10039,10040,11], -[0,-652,-664,-726,-756,-928,-932,-1449,-1544,-1654,-2162], -[0,-3214,-3162,-5270,-5271,-8617], -[1,3,10042], -[0,10043,10044,10045,6], -[0,-1992,-712,-809,-15257,-1548,-682,-15258,-1762,-15259,-15260,-15261,-6640,-2055,-15262], -[0,-4977,-2006,-2019,-3040,-3044,-44,-3052,-15263,-409,-407,-410,-2622,-3024], -[0,-2006,-5253,-3159,-2678,-15264,-15265,-3095,-3098,-3160,-3161,-3100,-3162], -[1,3,10047], -[0,10048,10049,93,4], -[0,-2606,-15248,-15266,-2669,-2670,-682,-1384,-1967,-1993,-2006,-2019,-2489,-15249], -[0,-15267,-15268,-15269], -[1,3,10051], -[0,0,10052,10053,4], -[0,-3473,-1942,-2127,-2128,-5384,-2129], -[0,-3100,-11853,-11851], -[1,3,10055], -[0,10056,10057,10058,4], -[0,-6815], -[0,-409,-3040,-3052,-778,-1071,-1344,-2006,-2019,-2049,-2275,-2376,-8973,-2387,-2410,-2501,-3612], -[0,-6750,-15270,-15271,-15272,-3095,-3576,-3162,-2363,-6750,-3823,-15273,-12606], -[1,3,10060], -[0,10061,10062,10063,10], -[0,-4733,-668,-719,-999,-1077,-1948,-1966,-2177,-2426,-2518,-2528,-2542,-2555], -[0,-15274,-3899,-652,-1107,-1110,-6295,-8065,-1971], -[0,-2682,-15275,-15276,-3162,-5270,-15277,-5271], -[1,3,10065], -[0,10066,0,10067,4], -[0,-1867,-11957,-11964,-15278], -[0,-15279,-3444,-5545,-3262,-856,-15280,-15281], -[1,3,10069], -[0,10070,10071,10072,9], -[0,-15282,-15283,-15284,-31,-15285,-3325,-280,-11671,-469,-719,-7731,-15286,-15287,-5934,-1442,-10584,-1577,-1645,-1729, --15288,-2115,-10624,-2177,-2205,-2379,-2410], -[0,-932,-959,-969,-973,-1077,-1415,-1448,-1607,-2125,-15289], -[0,-3328,-856,-3262,-1599,-9308], -[1,3,10074], -[0,10075,10076,10077,5], -[0,-6869,-8386,-1805,-623,-668,-999,-1526,-1826,-2387,-1548,-2177,-753,-1966,-2501,-679,-1077,-2357,-719,-1327,-695,-832, --929,-2043,-5977,-2508,-15290,-2433,-15291,-2044,-15292,-3859,-15293,-4239,-2505,-15294,-1331,-15295,-15296,-2502,-15297, --15298,-15299], -[0,-7982,-7688,-3052,-3861,-13398,-2052,-13186,-11702,-15300,-15301,-14826,-14779], -[0,-2006,-5371,-2501,-856,-7695,-7696,-858], -[1,3,10079], -[0,10080,10081,268,11], -[0,-2387,-1387,-232], -[0,-1763,-1415,-2006,-932,-2125,-2127,-2375,-1077,-1942,-2019,-2410,-3136,-3037,-3040,-3052,-3986,-3988,-409,-1419,-3267, --407,-428,-2622,-427], -[1,3,10083], -[0,0,10084,10085,4], -[0,-3136,-427,-428,-753,-756,-784,-932,-1415,-1417,-1424,-1449,-15302,-2127,-2375,-2410], -[0,-12841,-3582,-6989,-5389,-10095,-12523,-2410,-3214,-9682,-3095,-11486,-12121,-5065,-3577,-3264,-4333,-4334,-15303], -[1,3,10087], -[0,10088,0,10089,4], -[0,-703,-2825,-2690,-1967,-44,-2997,-192], -[0,-2006,-3159,-4217,-15304,-4665], -[1,3,10091], -[0,10092,0,10093,6], -[0,-2690,-1967,-44], -[0,-2006,-3159,-4217,-4101], -[1,3,10095], -[0,10096,0,10097,8], -[0,-703,-2029,-2825,-1967,-44,-3140], -[0,-2006,-3159,-4217,-5260], -[1,3,10099], -[0,10100,0,95,5], -[0,-15305,-15306,-823,-1878], -[1,3,10102], -[0,269,0,95,5], -[1,3,10104], -[0,10105,10106,10107,4], -[0,-469,-2177,-1047,-15310,-15311,-12390,-8802,-1395,-3609], -[0,-6997,-2466,-2469,-757,-1026,-2410,-7982,-1772,-10267], -[0,-15312,-15313,-8902,-3184,-3161,-1168,-3214,-3264,-3482,-1599,-3967,-15314,-15315,-3995,-5372,-3255,-3256,-15316, --15317,-15318], -[1,3,10109], -[0,0,10110,10111,5], -[0,-865,-8559,-866], -[0,-2006,-2634,-9736,-865], -[1,3,10113], -[0,10114,10115,10116,4], -[0,-2624,-2231,-15319,-2168,-1320,-3606], -[0,-2558,-1415,-1623,-932,-1699,-825,-2501,-1077,-1098,-1942,-767,-1978,-2400,-1424,-2410,-23,-3136,-3037,-769,-2503,-534, --11747,-1772,-2041,-3046,-3048,-7080,-4049,-15320,-2505,-15321,-12916,-15322,-1421,-2335,-940,-967,-1419,-2506,-3204], -[0,-2006,-3214,-2501,-10675,-6211,-15323,-1540,-12516,-10589,-12517,-11492], -[1,3,10118], -[0,0,10119,10120,11], -[0,-13324,-1123,-15324], -[0,-15325,-1122,-4058,-3694,-2410,-4258,-3161,-3862], -[1,3,10122], -[0,10123,10124,10125,5], -[0,-1816,-3612,-2466,-15326,-623,-668,-999,-865,-1548,-1872,-2177,-680,-1753,-1821,-2501,-679,-1077,-1376,-1942,-719,-749, --695,-778,-2410,-2061,-15327,-15328,-635,-5676,-726,-2115,-2275,-15329,-15330,-15331,-15332,-4236,-2041,-15333,-15334, --15335,-3808,-15336,-15337,-4805,-15338,-15339,-15340,-15341,-1331,-15342,-2504,-2506,-15343,-5319,-1643,-2502,-15344, --15345,-15346,-14827,-15347,-1067, --2695], -[0,-1415,-2006,-9056,-2019,-3136,-3037,-3044,-15348,-3048,-15349,-15350,-14826], -[0,-15351,-7643,-15352,-7645,-15353,-15354,-11229,-3690,-6120,-3161,-1334,-4055,-1501,-15355,-13039,-1791,-11437,-1818, --3691,-5728,-7107,-15356,-5372,-3214,-11878,-12303,-12304,-12301,-12299,-15357,-15358,-3445,-7696,-15359,-1520,-15360, --2006,-3476], -[1,3,10127], -[0,10128,10129,10130,4], -[0,-23,-14825,-656,-755,-15361], -[0,-2303], -[0,-5049,-3839,-2006,-3103,-3690], -[1,3,10132], -[0,10133,10134,10135,4], -[0,-47,-3223], -[0,-15362], -[0,-3264,-9589,-525,-9588,-14188,-9590], -[1,3,10137], -[0,0,0,10138,4], -[0,-5141,-4601,-4602,-3578,-3445,-754], -[1,3,10140], -[0,10141,10142,168,5], -[0,-809,-713,-15363], -[0,-1344,-2469,-2410,-3037,-411,-2581,-86,-5144,-3664,-3307], -[0,23,0,97,5], -[1,3,10145], -[0,23,0,10146,9], -[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, --5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, --5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15366], -[1,3,10148], -[0,23,0,98,9], -[1,3,10150], -[0,23,0,99,4], -[0,23,0,99,5], -[1,3,10153], -[0,23,0,99,11], -[1,3,10155], -[0,10156,10157,10158,6], -[0,-3698,-13203,-15369,-15370,-11418,-617,-722,-733,-736,-744,-754,-2762,-930,-1004,-15371,-15372,-1010,-13106,-5989, --1116,-15373,-1299,-1388,-11121,-1465,-1548,-1641,-1666,-1667,-1676,-1681,-1744,-1826,-5262,-7223,-2182,-2297,-15374, --2451,-15375,-2531], -[0,-3732,-14740,-4198,-3330,-3733,-4623,-3850,-3044,-14742,-3851,-3037,-8852,-3046,-4204,-999,-1336,-1722,-2293,-2410, --2469], -[0,-5300,-1959,-15176,-15376,-15377,-5940,-9139,-15378,-6335,-3445,-2512,-1004,-8841], -[1,3,10160], -[0,10161,0,271,9], -[0,-2476,-2362,-753,-928,-1442,-2501,-679,-1582,-778,-1888,-2437,-2481,-2483,-5628,-23,-769,-1041,-518,-534,-14408,-15379, --2508,-13389,-1908,-15380,-2711,-2505,-748,-1929,-15381,-15382,-2485,-2718,-1643,-2712,-15383,-731,-15384,-2714,-1814, --2716], -[1,3,10163], -[0,10164,0,10165,6], -[0,-1955,-1600,-7898,-1603,-1601,-2718,-5614], -[0,-856,-3262,-1599,-2476,-2816], -[1,3,10167], -[0,10168,0,42,5], -[0,-2711,-1543,-1582], -[1,3,10170], -[0,10171,0,42,9], -[0,-15380,-1553], -[1,3,10173], -[0,10174,0,42,9], -[0,-15380,-769], -[1,3,10176], -[0,10177,0,42,8], -[0,-1779,-15380], -[1,3,10179], -[0,10180,0,42,5], -[0,-15380,-2718], -[1,3,10182], -[0,10183,0,42,4], -[0,-15380], -[1,3,10185], -[0,10186,10187,42,5], -[0,-668,-929,-1077,-1111,-1125,-1284,-2177,-2362,-4701], -[0,-15385], -[1,3,10189], -[0,10190,0,42,4], -[0,-1548,-2286,-5602,-2287,-15380,-2717,-15383,-2715,-15386,-2713], -[1,3,10192], -[0,10193,10194,58,4], -[0,-15387,-15388,-15389,-15390,-15391], -[0,-664,-1654,-2379,-2501,-21,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40,-15392,-15393,-42], -[1,3,10196], -[0,10197,132,58,8], -[0,-15388,-15399,-15400], -[1,3,10199], -[0,10200,10201,58,9], -[0,-1940,-6935,-747,-15401,-15402], -[0,-664,-1654,-932,-753,-2379,-2501,-2376,-21,-778,-2410,-23,-5870,-3035,-3136,-3037,-1637,-1771,-2503,-3621,-3040,-2275, --15403,-14831,-39,-43,-40,-966,-969,-958,-968,-940,-943,-967,-974,-42], -[1,3,10203], -[0,10204,10205,58,11], -[0,-2722,-15401,-15402,-15404,-15405,-15406], -[0,-664,-2494,-1654,-932,-4270,-753,-2379,-2501,-1942,-21,-2410,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40, --966,-969,-958,-968,-15407,-940,-943,-967,-974,-42], -[1,3,10207], -[0,10208,132,58,11], -[0,-2531,-15388,-15399], -[1,3,10210], -[0,10211,0,10212,6], -[0,-703,-15408], -[0,-15409,-15410,-3162,-6184], -[1,3,10214], -[0,0,0,173,4], -[1,3,10216], -[0,0,0,10217,5], -[0,-475,-3161,-4865,-7243,-3634,-5495], -[1,3,10219], -[0,117,10220,10221,4], -[0,-519,-668,-756,-1788,-2250,-2251], -[0,-5514,-9846,-687,-15411,-7210], -[1,3,10223], -[0,228,10224,10225,5], -[0,-9705,-5686,-4624,-3037,-8890,-11458,-617,-11477,-1168,-12346,-1260,-1412,-15412,-15413,-1452,-1722,-2125,-2150,-15414, --2173,-2379,-2388,-12348,-2410,-12349,-2819], -[0,-4004,-3634,-11468,-12350,-11467], -[1,3,10227], -[0,0,10228,272,5], -[0,-526,-528,-6104,-558,-6089,-562,-932,-934,-6013,-940,-956,-958,-1059,-1344,-1415,-1534,-1942,-2125,-2416], -[1,3,10230], -[0,10231,10232,10233,8], -[0,-7226,-15425,-7944,-719,-729,-7949,-1048,-1276,-6343,-7959,-1641,-15426,-2125,-7968,-2359,-7971,-2425,-7972], -[0,-190,-3035,-4269,-15427,-15428,-3617,-15429,-3713,-3037,-15430,-3628,-15431,-427,-428,-15432,-664,-665,-749,-932,-940, --964,-966,-967,-999,-1054,-1116,-5487,-1654,-1888,-1942,-7981,-2148,-2177,-2210,-2211,-7970,-2379,-2410], -[0,-6342,-4865,-7641,-4258,-3100,-9290], -[1,3,10235], -[0,10236,10237,273,4], -[0,-15425,-6343,-7964,-7966,-2125,-2148,-5509], -[0,-664,-665,-1654,-15433], -[1,3,10239], -[0,10240,10241,273,4], -[0,-7226,-1276,-3607,-1641], -[0,-664,-7979,-1004,-1452,-1654,-6347,-2106,-2148], -[1,3,10243], -[0,10244,10245,10246,4], -[0,-1343], -[0,-1445,-1452,-1654,-2198], -[0,-4864,-4865,-2734,-9711,-3634], -[1,3,10248], -[0,0,10249,10250,4], -[0,-526,-527,-15434,-558,-664,-1654], -[0,-656,-6514,-775,-5092], -[1,3,10252], -[0,0,133,10253,4], -[0,-3264,-8034,-3223,-7472,-4846,-6557,-15435], -[1,3,10255], -[0,0,133,10256,5], -[0,-3264,-15436,-8034,-3223,-7472,-4846,-6557,-15435], -[1,3,10258], -[0,0,133,10259,4], -[0,-3264,-8034,-3223,-7472,-4846,-6557], -[1,3,10261], -[0,0,10262,10263,4], -[0,-8096,-14182,-652,-725,-1288,-1292,-1942,-2087,-2094,-2100,-2125,-2322,-2399,-2410,-2427,-2541], -[0,-3264,-8034,-10902,-7472,-4846,-15435,-15437,-6557], -[1,3,10265], -[0,0,0,41,9], -[1,3,10267], -[0,10268,251,10269,4], -[0,-15438], -[0,-712,-5535,-5549,-775], -[1,3,10271], -[0,0,92,10272,5], -[0,-5092,-3264,-12064,-13319,-7205,-1838,-6231], -[1,3,10274], -[0,10275,88,10276,4], -[0,-1016,-15439,-8493], -[0,-3671,-856,-3960,-3262,-1599,-3261,-15440], -[1,3,10278], -[0,0,10279,10280,5], -[0,-1654,-664,-1405], -[0,-775,-12120,-5101,-15441,-3162,-1838,-5572], -[1,3,10282], -[0,0,10283,10284,6], -[0,-756,-1405], -[0,-2265,-4112,-7188,-775,-10310,-3582], -[1,3,10286], -[0,10287,10288,10289,4], -[0,-781], -[0,-652,-928,-932,-1654,-2127,-2232], -[0,-775,-6454,-6684,-1644,-7192,-7193,-15442], -[1,3,10291], -[0,10292,10293,10294,4], -[0,-508], -[0,-932,-940,-967,-1942,-2319], -[0,-5829,-3215,-6747,-687,-3957,-4377,-6836,-15443], -[1,3,10296], -[0,10297,0,10298,8], -[0,-492,-493,-15444,-495,-722,-1122,-1123,-1439,-7679], -[0,-15445,-3445,-1105,-15446], -[1,3,10300], -[0,10301,0,10302,4], -[0,-1439,-1848,-7679], -[0,-15445,-3445,-5800,-8904], -[1,3,10304], -[0,10305,0,10306,4], -[0,-722,-1439,-1645,-1848,-7679,-15447], -[0,-15445,-3445,-7660], -[1,3,10308], -[0,10309,0,10310,4], -[0,-15448,-1371,-1469,-1645], -[0,-15445,-3445,-15449,-15450], -[1,3,10312], -[0,10313,0,10314,5], -[0,-492,-493,-15444,-495,-722,-1122,-1123,-1439,-1848,-7679], -[0,-15445,-3445,-1105], -[1,3,10316], -[0,10317,0,10318,4], -[0,-492,-493,-15444,-495,-1439,-1848,-7679], -[0,-15445,-3445,-7661], -[1,3,10320], -[0,0,0,274,4], -[1,3,10322], -[0,10323,0,274,10], -[0,-1848], -[1,3,10325], -[0,0,10326,10327,9], -[0,-3136,-3037,-756,-1107,-1415,-1442,-15451,-2375,-2388,-2389,-12348,-2410], -[0,-14233,-6747,-3215,-14867,-3162,-15423,-9918,-11321,-1819,-7572,-4865,-15452], -[1,3,10329], -[0,10330,10331,10332,6], -[0,-1610,-1955,-15453,-15454,-15455,-4096,-3546], -[0,-1415,-523,-1344,-1520,-932,-1650,-2125,-2127,-2286,-784,-679,-12844,-1942,-5002,-767,-533,-23,-722,-1534,-1539,-1771, --632,-5977,-3983,-40,-959,-15456,-15457,-2129,-32,-958,-2143,-2138,-940,-967,-2131,-15458,-740,-2137], -[0,-4100,-3671,-856,-15459,-3262], -[1,3,10334], -[0,10335,10336,10337,10], -[0,-1805,-668,-2550,-729,-15460,-2757,-910,-1077,-1098,-1582,-15461,-1540,-2187,-2433,-9229,-15462,-731], -[0,-519,-754,-999,-1344,-932,-2125,-2127,-1534,-15463,-2251,-8177,-15464], -[0,-2757,-4100,-3671,-856,-15459,-3262,-687], -[1,3,10339], -[0,10340,0,10341,5], -[0,-15465], -[0,-5092,-2759,-1437,-3162,-13614], -[1,3,10343], -[0,10344,10345,10346,4], -[0,-14393,-1548,-2029], -[0,-21,-23,-40,-41,-533,-708,-915,-916,-932,-940,-943,-15466,-958,-966,-968,-969,-974,-1415,-1942,-15467,-1967,-1992, --2006,-2019,-2052], -[0,-915,-1415,-4045,-8911,-1950,-674,-5845,-3634,-5119,-4004], -[1,3,10348], -[0,10349,0,10350,5], -[0,-464,-15468,-615,-15469,-2387,-2536], -[0,-5409,-510,-15470,-15471,-15472,-15473,-8676,-15474,-15475,-7347,-6656,-6527,-1594,-11872,-3162,-15476,-15477,-1838, --1961,-9591,-15478,-5408], -[1,3,10352], -[0,0,14,10353,9], -[0,-5559,-9692,-3264,-8034,-3223,-15479,-7723,-8472,-3590,-3110,-9681,-5846,-15480,-2544,-15481,-15482], -[1,3,10355], -[0,10356,10357,10358,5], -[0,-674,-15483,-929,-572,-529,-569,-1077,-15484,-1610,-1646,-14584], -[0,-526,-539,-549,-566,-708,-15485,-932,-1654,-1788], -[0,-1446,-3690,-10855,-856,-6948,-15486,-6950,-15487,-6949,-15488,-6951,-15489,-11798,-15490,-6952,-15491,-15492], -[1,3,10360], -[0,0,55,10361,4], -[0,-932,-5208,-3784,-3862,-9420,-11315,-8199,-4100,-856], -[1,3,10363], -[0,0,10364,10365,4], -[0,-1116,-2251,-2322], -[0,-856,-10858,-15493,-10925,-15494,-15411,-3966], -[1,3,10367], -[0,87,275,10368,4], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-1391,-9682], -[1,3,10370], -[0,87,275,10371,6], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-775,-3585,-1838], -[1,3,10373], -[0,10374,10375,10376,4], -[0,-5334,-2742,-9596,-1968,-2235,-9584,-9585], -[0,-3705,-3037,-652,-1459,-1839,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-1839,-3272,-10919], -[1,3,10378], -[0,87,92,10379,5], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-3830,-9682,-15495,-15496,-15497], -[1,3,10381], -[0,10382,10383,10384,8], -[0,-2595], -[0,-985,-1637,-1942,-2320,-2322], -[0,-3272,-3264,-1838,-6231], -[1,3,10386], -[0,0,10387,10388,5], -[0,-3037,-652,-2586,-1288,-1292,-1729,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-3264,-9703,-6818,-6557,-9682,-15498,-5387,-5388], -[1,3,10390], -[0,10391,0,10392,5], -[0,-812], -[0,-1334,-1342,-1501,-1004,-1030,-12868,-11998,-15499,-15500,-15501,-15502,-12868,-11994,-15503,-3445], -[1,3,10394], -[0,0,130,10395,4], -[0,-775,-3209,-15504,-1889], -[1,3,10397], -[0,276,10398,277,4], -[0,-9848,-2776], -[1,3,10400], -[0,276,10401,277,6], -[0,-2774,-15505,-9848,-2776], -[1,3,10403], -[0,0,0,10404,4], -[0,-525,-2006,-1368,-3161,-4729,-9850,-3264,-9851,-3844,-5092,-4865,-2127,-15506,-15507,-5272], -[1,3,10406], -[0,0,10407,10408,4], -[0,-824,-1168,-784,-1889,-1243,-15508,-1238,-1270,-15509], -[0,-775,-3576,-3577,-3161,-3578,-15510], -[1,3,10410], -[0,10411,10412,10413,4], -[0,-1666,-2161], -[0,-510,-1127,-1138,-1145,-1148,-1162,-1446,-1548,-2105], -[0,-620,-15511,-15512,-856,-1446,-7674,-4101], -[1,3,10415], -[0,0,10416,10417,6], -[0,-9705,-3037,-11458,-1412,-1452,-2173,-2388,-12348,-2410,-12349], -[0,-4004,-3634,-11468,-12350,-11467,-1412], -[1,3,10419], -[0,10420,10421,10422,5], -[0,-10041,-13980,-3740,-1427,-1950,-2375], -[0,-15513,-4,-5,-6,-7,-8,-9,-10,-12,-13,-14,-23,-40,-86,-9404,-3244,-190,-10041,-4020,-237,-3048,-3136,-3037,-3199,-427, --428,-15514,-533,-668,-10525,-740,-767,-4805,-932,-940,-958,-959,-960,-967,-999,-1077,-15515,-1107,-1110,-1344,-1415, --1419,-1449,-1868,-1942,-2125,-2153,-2177,-2387,-2392,-2400,-2410,-2411,-2567], -[0,-1415,-2410,-475,-3634], -[1,3,10424], -[0,10425,10426,10427,5], -[0,-2699,-656,-668,-679,-719,-729,-6798,-1805,-1906,-1907,-2213,-2218,-12979,-2433,-2531], -[0,-23,-162,-3778,-163,-237,-350,-351,-15516,-367,-7043,-406,-407,-409,-410,-5039,-3136,-8334,-3037,-3040,-3052,-9947, --4764,-4204,-427,-428,-440,-15517,-4734,-518,-767,-932,-940,-943,-958,-965,-968,-969,-1415,-1428,-1521,-1753,-1771,-1889, --14336,-15518,-1942,-2006,-2019,-2029,-2125,-2127,-4063,-2132,-6483,-2162,-2278,-2318,-2410,-2466,-15519], -[0,-3634,-1415,-3100,-7566,-812,-15520], -[1,3,10429], -[0,10430,10431,10432,8], -[0,-1403,-15521], -[0,-15522,-15523,-1202,-1276,-1654,-3261], -[0,-9198,-6515,-812,-3671,-856,-6899,-3960,-3262,-1276,-4187,-8453,-4676,-15524,-15525,-1548,-5545,-1599,-3110,-3261, --15440], -[1,3,10434], -[0,10435,10436,10437,10], -[0,-15526], -[0,-1586,-1729,-2337], -[0,-1586,-15527,-9409,-3844,-3445], -[1,3,10439], -[0,10440,10441,10442,8], -[0,-10869], -[0,-3037,-652,-1638,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-1638,-15528,-15529,-6818,-7724,-15530,-3264,-4329,-1599,-2427], -[1,3,10444], -[0,0,0,10445,4], -[0,-1638,-2444,-3590,-3264,-6422], -[1,3,10447], -[0,0,0,10448,10], -[0,-1638,-2444,-3590,-3264,-6818,-6557], -[1,3,10450], -[0,0,10451,10452,4], -[0,-6874,-1127,-1452,-1666,-2525,-2416,-10264,-1154,-15531,-1149,-1136,-1144,-1148], -[0,-2442,-3162,-9918,-15423,-6659,-14867,-4865,-9318,-15532,-15533], -[1,3,10454], -[0,10455,10456,10457,4], -[0,-7177], -[0,-1415,-932,-2375,-1942,-2410,-3136,-3037,-7178,-940,-428,-427], -[0,-15534,-15535,-775], -[1,3,10459], -[0,10460,92,10461,6], -[0,-4231,-2738,-2739,-10909,-15536,-15537,-15538], -[0,-1838,-3264,-7472,-4846,-8034,-3223], -[1,3,10463], -[0,0,0,10464,4], -[0,-1889,-9300,-3756,-9339,-2006,-775,-15539], -[1,3,10466], -[0,10467,130,10468,5], -[0,-2773], -[0,-775,-3209,-1889], -[1,3,10470], -[0,0,10471,10472,9], -[0,-23,-40,-15540,-4690,-15541,-932,-1412,-1471,-1475,-1476,-1479,-1481,-1486,-1491,-11943,-1970,-1978,-2127,-2128,-3571, --2139,-2140,-10312,-4881], -[0,-9407,-1978,-1874,-4864,-15542,-15543,-4902,-3634,-11468,-1970,-11467,-4881,-15221], -[1,3,10474], -[0,10475,10476,10477,9], -[0,-567,-1275,-1967], -[0,-633,-634,-668,-824,-1168,-1179,-1205,-1243,-15544,-1262,-1266,-1632,-15545,-2006,-2019,-2463], -[0,-2006,-3159,-2319,-15546,-2363,-15547,-1275,-3162], -[1,3,10479], -[0,10480,10481,10482,8], -[0,-15548,-303,-15549,-304,-4360,-6448,-469,-470,-668,-680,-728,-812,-1125,-1353,-1442,-5265,-1641,-1789,-1790,-1816, --1966,-2177,-2205,-2223,-3610,-4002,-7982,-15550,-2426,-5721], -[0,-2581,-86,-3307,-4368,-15551,-11765,-15552,-350,-4062,-351,-3561,-3198,-3660,-3713,-3735,-3199,-15553,-15554,-3664, --13376,-1344,-1498,-1722,-4362,-5263,-1942,-2127,-6483,-2392,-2400,-2410,-2469], -[0,-3690,-489,-11768,-856,-11148,-11773,-1789,-3438,-11772,-11769,-11771,-11770,-11410,-4328,-4847], -[1,3,10484], -[0,0,10485,10486,11], -[0,-5295,-409,-3136,-3040,-3052,-13529,-427,-428,-757,-825,-932,-940,-967,-969,-970,-1103,-15555,-1415,-15556,-1637, --15302,-15557,-1942,-2006,-2019,-13531,-2214,-2375,-2410,-15558], -[0,-2006,-12474,-3159,-8597,-13241,-15559,-712,-3577,-15560,-15273,-2012,-4666,-11876,-4665,-15561], -[1,3,10488], -[0,10489,10490,10491,4], -[0,-2594], -[0,-40,-41,-3040,-915,-916,-1415,-1992,-2052,-2127,-2128,-2131,-2137], -[0,-2442,-3162,-9918,-15423,-6659,-14867,-4865,-15562,-15563,-9318,-6106,-4000], -[1,3,10493], -[0,0,10494,10495,4], -[0,-86,-3037,-3040,-3052,-3075,-427,-9700,-932,-940,-9106,-958,-965,-967,-968,-969,-1344,-1415,-1534,-1637,-1942,-1952, --2006,-2019,-2044,-2046], -[0,-2006,-9843,-3122,-2043,-2044,-15564,-2634], -[1,3,10497], -[0,0,10498,10499,4], -[0,-1788,-1449,-1471,-1654,-2006,-2074,-2210,-507,-932,-1548,-1940,-2334,-4258,-708,-753,-1958,-2501,-589,-2019,-15565, --2410,-23,-3037,-1482,-2040,-3040,-534,-11472,-1492,-50,-1025,-3052,-40,-3062,-969,-2052,-15566,-406,-1483,-1475,-1487, --1479,-14780,-428,-5030], -[0,-5922,-6439,-2006,-7378,-15567,-821], -[1,3,10501], -[0,0,0,10502,4], -[0,-2034,-3162,-5270,-5271,-7084,-6656,-14311,-15176,-15568,-6528,-4100], -[1,3,10504], -[0,0,10505,10506,4], -[0,-44,-3040,-3141,-2006,-2034,-2410], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-15071,-13615,-15569,-6527,-15570], -[1,3,10508], -[0,94,10509,10510,5], -[0,-528,-932,-933,-940,-958,-962,-967,-969,-1942,-15571], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-3160,-1959,-15572,-15573,-15574,-10677,-15575,-15576,-6716,-5176], -[1,3,10512], -[0,10513,10514,10515,4], -[0,-798,-15577,-799,-801,-1967], -[0,-15578,-4757,-6263,-4754,-15579,-528,-533,-14782,-807,-932,-943,-958,-966,-968,-969,-15580,-974,-1344,-1415,-1534, --1942,-1952,-2006,-2034,-15571,-2052], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-9472,-6581,-14497,-797], -[1,3,10517], -[0,10518,10519,10520,6], -[0,-997], -[0,-3157,-932,-12566], -[0,-2034,-3159,-12567,-2006,-3163,-3162,-5270,-5271,-3160,-10028,-15581,-15582], -[1,3,10522], -[0,10523,10524,10525,8], -[0,-2798,-2489], -[0,-15583,-21,-23,-3204,-39,-40,-6056,-41,-161,-163,-2997,-350,-351,-3561,-409,-2622,-3040,-528,-533,-767,-932,-940,-956, --959,-968,-969,-970,-1059,-11942,-1103,-15584,-1415,-15302,-1942,-1952,-2006,-2019,-15585,-2052,-2125,-2127,-2128,-2140, --2410], -[0,-2006,-2804,-12051,-3095,-7582,-3821,-3822], -[1,3,10527], -[0,10528,10529,10530,8], -[0,-15586,-2730,-682], -[0,-15587,-5295,-406,-407,-409,-15588,-3059,-3037,-3040,-3052,-440,-3899,-795,-1449,-2910,-2006,-2019,-2214,-2892,-2387, --2410,-2469], -[0,-2006,-3576,-4126,-3162,-12129], -[1,3,10532], -[0,10533,10534,10535,10], -[0,-2387,-15589], -[0,-15590,-5295,-2214,-2006,-2019], -[0,-2006,-5553,-775], -[1,3,10537], -[0,0,10538,10539,4], -[0,-509,-1654,-1939], -[0,-775,-712,-15559,-5554], -[1,3,10541], -[0,10542,0,77,5], -[0,-2869,-424,-15591,-15592,-15593,-15594,-15595,-15596,-15597,-15598,-15599,-15600,-15601], -[1,3,10544], -[0,0,10545,272,5], -[0,-23,-40,-42,-86,-3307,-3326,-15155,-3561,-3266,-3136,-3037,-427,-428,-441,-7465,-528,-533,-8349,-726,-767,-932,-943, --958,-966,-968,-980,-1103,-1344,-1392,-1415,-1419,-1534,-2125,-2127,-2142,-2410,-2478], -[1,3,10547], -[0,0,10548,259,8], -[0,-3800,-684,-748,-778,-1041,-3544,-1643,-1942,-2116,-2162,-2163,-2376,-2410,-2437,-2501,-2503,-2508], -[1,3,10550], -[0,33,10551,10552,4], -[0,-5295,-2214,-407,-409,-15590,-1419], -[0,-2006,-9080,-15602,-15603,-15604], -[1,3,10554], -[0,10555,10556,10557,6], -[0,-15605,-2387], -[0,-5295,-2214,-15590,-15606,-916,-2006,-2019], -[0,-15607,-2006,-15608], -[1,3,10559], -[0,10560,10561,10562,5], -[0,-753,-44,-15609,-15610], -[0,-1521,-2299,-2501,-778,-2410,-23,-1522,-2503,-534,-2275,-15611,-2508,-40,-2301,-2505,-42,-38,-535,-3362,-26,-36,-35], -[0,-4000,-812,-3162], -[1,3,10564], -[0,0,10565,10566,10], -[0,-3037,-4371,-2447,-2466], -[0,-2466,-3161,-8113], -[1,3,10568], -[0,0,10569,10570,5], -[0,-527,-534,-559,-767,-778,-1041,-1743,-2680,-2163,-15612,-2275,-2476,-2481,-2483,-2484,-2485,-2501,-2505], -[0,-11853,-11851,-15613,-15614,-15615,-15616,-15617,-3100,-15618], -[1,3,10572], -[0,10573,0,271,8], -[0,-653,-914,-2710,-15380,-2433,-2719,-3546], -[1,3,10575], -[0,0,10576,10577,5], -[0,-21,-23,-26,-36,-40,-42,-3330,-15619,-3136,-3037,-6630,-427,-428,-527,-533,-535,-932,-934,-940,-958,-967,-1415,-5133, --1942,-2174,-2410], -[0,-1415,-1001,-4116,-510,-5867,-1961,-4868,-3634,-5119], -[1,3,10579], -[0,10580,10581,10582,5], -[0,-11458,-2173], -[0,-9705,-11477,-1168,-12346,-1412,-1888,-15414,-2410], -[0,-3634,-11468,-12350,-11467,-5769], -[1,3,10584], -[0,10585,10586,10587,4], -[0,-464,-668,-824,-1107,-1371,-1646,-1980,-2105,-2125,-2177,-2536], -[0,-5682,-3711,-15620,-3036,-11697,-9705,-8566,-5686,-3037,-12344,-8852,-8890,-11458,-3199,-11343,-11477,-1168,-12346, --1412,-2150,-2173,-2410], -[0,-475,-4004,-3634,-1970,-11468,-12350,-11467,-2173], -[1,3,10589], -[0,117,55,10590,4], -[0,-2265,-7472,-4112,-6730,-13460,-6787,-13461,-13462,-13463,-13465,-5514,-5559,-5563,-687,-3958,-3974,-4000,-13466, --13467,-13468,-13469,-13470], -[1,3,10592], -[0,169,10593,10594,5], -[0,-3037,-928,-15621,-1496,-15622,-2410,-2447], -[0,-15623,-9669,-3161,-9670,-8615,-1334,-3690], -[1,3,10596], -[0,10597,0,10598,8], -[0,-1460,-15624,-1442,-3241], -[0,-15279,-15625,-727,-856,-15280,-15281], -[1,3,10600], -[0,0,10601,278,6], -[0,-664,-3035,-3037,-15626], -[1,3,10603], -[0,10604,0,95,10], -[0,-15631,-15632,-823,-1878], -[1,3,10606], -[0,39,0,10607,5], -[0,-2006,-3159,-4217,-3694], -[0,23,0,98,4], -[0,23,0,99,6], -[1,3,10611], -[0,10612,10613,10614,4], -[0,-15633,-10576], -[0,-5859,-633,-13719,-2322], -[0,-7581,-7582,-7580,-7762,-15634,-5177,-15635,-3100,-633], -[1,3,10616], -[0,10617,10618,10619,4], -[0,-15636,-15637,-15638,-15639,-15640,-640,-668,-671,-865,-866,-997,-1026,-14636,-1098,-1116,-1353,-1376,-7408,-1460, --15641,-15642,-5895,-1958,-2177,-2193,-2331,-2410,-15643,-15644,-15645], -[0,-2476,-15646,-15647,-15648,-15649], -[0,-2830,-15650,-3161], -[1,3,10621], -[0,10622,10623,10624,9], -[0,-44,-15651], -[0,-1415,-2162,-1344,-2006,-915,-932,-2501,-1942,-767,-2019,-21,-778,-2095,-2410,-23,-1534,-1771,-2163,-2503,-3040,-534, --2275,-15652,-15653,-4227,-15654,-4749,-40,-13427,-41,-969,-358,-15655,-940,-962,-967,-1419,-42,-4757,-15656,-4758,-428, --4762,-38,-427,-12712,-15045], -[0,-2006,-3095,-15657,-13652,-15658,-3162,-15106,-2410,-15659,-15660], -[1,3,10626], -[0,10627,10628,7,4], -[0,-668,-695,-719,-1610,-6294,-2177,-15661], -[0,-3802,-11346,-3037,-3199,-15662], -[1,3,10630], -[0,10631,10632,7,4], -[0,-15663,-2564,-703,-834,-15664,-2303,-2466,-461,-623,-812,-4245,-5358,-743,-783,-5036,-2083,-2177,-2814,-680,-5034,-928, --15665,-15666,-1442,-3447,-1827,-1966,-15667,-15668,-3535,-3027,-15669,-1864,-10430,-2422,-15670,-15671,-5113,-2654, --3545,-15672,-1321,-1588,-2551,-989,-15673,-8294,-3649,-14335,-15674,-2429,-15675,-15676,-15677,-8882,-4785,-3190,-4288, --15678,-6332,-3459,-15679,-15680], -[0,-9740,-2162,-2127,-2426,-2469,-674,-2427,-15681,-15206,-15682,-2410,-5334,-1002,-2089,-3198,-13046,-12145,-3199,-15683, --6327,-3660,-3735,-5204,-1736,-3983,-8523,-5114,-9602,-15684,-3712,-9146,-2084,-15685,-15686], -[1,3,10634], -[0,10635,0,7,5], -[0,-710,-15687,-1813,-2416], -[1,3,10637], -[0,10638,10639,10640,10], -[0,-714,-1077,-1376], -[0,-932,-959,-1415], -[0,-3871,-3262,-3976,-687,-11487], -[1,3,10642], -[0,0,10643,10644,10], -[0,-350,-351,-668,-910,-932,-940,-958,-15688,-6099,-1343,-1344,-1534,-1654,-3446,-1942,-2125,-2127,-2131,-15689,-2234, --2323,-10988], -[0,-3108,-3110,-5889], -[1,3,10646], -[0,0,10647,7,8], -[0,-427,-428,-932,-935,-940,-948,-958,-962,-967,-969,-970,-1344,-1534,-1942,-2006,-2410], -[1,3,10649], -[0,10650,10651,10652,4], -[0,-15690], -[0,-3621,-823,-1654], -[0,-3578,-4004,-4043,-15691,-1654,-3161], -[1,3,10654], -[0,0,10655,10656,4], -[0,-5295,-3136,-427,-428,-15692,-10529,-13751,-712,-932,-940,-967,-1107,-1415,-1942,-2127,-2140,-2142,-2214,-2355,-2375, --2379,-2387,-2410], -[0,-712,-3215,-5845,-13241,-15559,-5549,-12065,-15693,-12067,-1510,-15694,-12434,-775,-15695,-4665,-15696,-15697,-1644, --15698], -[1,3,10658], -[0,106,10659,280,6], -[0,-15587,-86,-3307,-2845,-4646,-3617,-3136,-3037,-427,-428,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], -[0,23,0,97,8], -[1,3,10662], -[0,10663,10664,10665,8], -[0,-6332,-6326,-6329,-15702,-5334,-3660,-4251,-2854,-15703,-2586,-1288,-1292,-1294,-1349,-1442,-14511,-1588,-15704,-10749, --5348,-2918,-2083,-4262,-5353,-2422,-2427,-2429,-5358], -[0,-3983,-3037,-3664,-2834,-15705,-2469], -[0,-3671,-856,-2834,-15706,-15707], -[1,3,10667], -[0,10668,10669,280,4], -[0,-1004,-2080], -[0,-15587,-86,-3307,-2841,-2845,-4646,-3617,-3136,-3037,-427,-428,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], -[1,3,10671], -[0,10672,10673,10674,4], -[0,-2080,-2379], -[0,-86,-3307,-4646,-3617,-3136,-3037,-427,-428,-668,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], -[0,-15699,-3967,-2410,-15700,-15701,-3161,-11894,-3445,-3482], -[1,3,10676], -[0,23,0,97,4], -[0,23,0,98,11], -[1,3,10679], -[0,262,10680,10681,4], -[0,-262,-4838], -[0,-2476,-2486,-4634,-2851,-15708,-15709,-12704,-3690,-7864,-9069,-2410,-3018,-8038,-9594], -[1,3,10683], -[0,10684,10685,151,5], -[0,-15710,-192,-15711], -[0,-41,-15712,-15713,-407,-409,-410,-3040,-3052,-440,-703,-2006,-2019,-2042,-2044,-2113,-3820,-15714,-727], -[1,3,10687], -[0,10688,10689,10690,8], -[0,-2856], -[0,-2834,-999,-15715], -[0,-15707,-15716,-856,-15717,-4245,-15718,-15706], -[0,0,0,10692,5], -[0,-15318,-15719,-3445], -[1,3,10694], -[0,10695,10696,10697,9], -[0,-15717], -[0,-4251,-4231,-9602,-2090,-2098,-2101,-4245,-2427,-5358,-15715], -[0,-15716,-856,-15717,-4245,-15718], -[1,3,10699], -[0,10700,10701,10702,8], -[0,-14800,-14801,-820,-1002,-2400], -[0,-15720,-14804,-3311,-3312,-652,-14806,-2410], -[0,-14808,-4187,-2444,-3966,-4865,-3445,-3100,-507,-4004,-664,-14809,-14810], -[1,3,10704], -[0,0,10705,10706,5], -[0,-600,-633,-756,-1405,-1654,-2198,-2416], -[0,-8472,-2544,-7723,-14242,-3962,-7107,-5559,-6422,-7724,-2451,-3264,-775,-6138,-14672], -[1,3,10708], -[0,10709,0,10710,5], -[0,-15721], -[0,-3843,-3118,-14066,-2006,-3100,-3577,-3445,-4725,-3578,-4865,-3214,-3756,-2410,-3966,-3967,-3482,-15722,-5260], -[1,3,10712], -[0,10713,0,73,9], -[0,-2984,-2885,-5766,-2400], -[1,3,10715], -[0,269,0,95,10], -[1,3,10717], -[0,10718,0,77,4], -[0,-424,-2704,-2826,-2863,-2706,-2707,-2902,-2903,-2940,-2708], -[1,3,10720], -[0,0,0,10721,4], -[0,-3843,-3118,-14066,-2006,-3100,-3577,-3445,-4725,-3578,-4865,-3214,-3756,-2410,-3966,-3967,-3482,-15724,-5260], -[0,23,0,97,6], -[1,3,10724], -[0,10725,0,246,4], -[0,-2531,-1107,-2624,-2550,-2177,-1961,-578,-719,-1384,-2166,-481,-533,-12547,-1624,-2516,-12548,-1950,-2041,-458,-12550, --11463,-12551,-9870,-2082,-12552,-1421,-12553,-12554,-12555,-12556,-12557,-12559,-12560,-15725], -[1,3,10727], -[0,10728,0,77,10], -[0,-2862,-424,-2976,-2872,-2705,-2853,-2850,-2827,-2848,-2849,-2828,-15726,-15727,-2865,-2703,-2975,-15728,-2846,-15729, --2847,-2842,-15730,-15731,-2868,-2996,-2866], -[1,3,10730], -[0,10731,10732,268,5], -[0,-2387,-2686], -[0,-2006,-932,-2125,-2127,-1942,-2019,-2410,-3037,-3040,-2043,-3052,-2044,-15732,-3986,-3988,-3075,-3267,-428,-427], -[1,3,10734], -[0,10735,10736,10737,9], -[0,-15733,-15734,-15735,-617,-1004,-15736,-1338,-2520,-2558], -[0,-15737,-15738,-15739,-15740,-15741,-3617,-4203,-1683,-2293], -[0,-15742,-7661,-15743,-15744,-15745,-3445], -[1,3,10739], -[0,23,0,98,5], -[1,3,10741], -[0,0,10742,10743,4], -[0,-509,-1654], -[0,-2873,-5514,-712,-5535,-668,-775,-15559,-5549,-15746], -[1,3,10745], -[0,10746,10747,10748,10], -[0,-4843], -[0,-3037,-3040,-3052,-440,-2634,-2006,-2019,-2466,-6859,-2469,-4842], -[0,-3690,-856,-9736,-1713,-3438,-4847], -[1,3,10750], -[0,10751,0,10752,5], -[0,-1439,-7679,-722,-15447], -[0,-15318,-15719,-3445,-7660], -[1,3,10754], -[0,0,10755,10756,4], -[0,-8096,-652,-1942,-2094,-2100,-2125,-2322,-2399,-2410,-2541], -[0,-775,-3264,-5092,-3578,-6184,-13270,-5899,-9299], -[1,3,10758], -[0,10759,10760,285,10], -[0,-1313,-2564], -[0,-15747,-86,-3307,-4835,-15748,-3036,-3037,-427,-428,-4627,-928,-932,-934,-940,-15749,-948,-958,-967,-1107,-1344,-1534, --1942,-15750,-2125,-2383,-2392,-2410], -[1,3,10762], -[0,10763,10764,285,4], -[0,-679,-2877], -[0,-502,-2392,-1107,-1344,-932,-2125,-928,-1942,-2410,-3036,-3037,-1534,-15748,-2383,-86,-15750,-958,-4627,-940,-967,-428, --934,-3307,-427,-948,-15749], -[1,3,10766], -[0,10767,10768,10769,6], -[0,-2531,-469,-2392,-5193,-1867,-2446,-649,-764,-15753,-2426,-680,-1646,-2694,-823,-1043,-11121,-1878,-15754,-1354,-1340, --11964,-1101,-1997,-14221,-15755,-14032,-1851,-2160,-15756,-15757,-8274], -[0,-2193,-2125,-2127,-928,-4204,-749,-767,-3738,-15758,-5686,-5363,-2014,-11433,-2132,-4049,-15759,-15760,-15761,-15762], -[0,-15354,-3690,-7643,-15763,-11229,-3161,-15764,-11878,-3214,-9736,-3966,-2879,-2006,-15359,-2410], -[1,24,10771], -[0,25,10772], -1743292800000, -[1,3,10774], -[0,10775,10776,10777,9], -[0,-15765,-15766,-15767,-15768,-15769], -[0,-40,-15770,-15771,-15772,-3326,-350,-351,-3561,-3048,-3037,-15773,-427,-12837,-428,-518,-534,-558,-726,-753,-756,-4809, --15774,-932,-958,-960,-5863,-1077,-1103,-3566,-15775,-15776,-1344,-15777,-15778,-1771,-15779,-1891,-15780,-15781,-15782, --2127,-8895,-4753,-15783,-8896,-2140,-2142,-2144,-2162,-5896,-15784,-5013,-2387,-2388,-15785,-2410,-8564], -[0,-12613,-15786,-12449,-12898,-2363,-11321,-3162,-2006,-2476,-475,-1940,-13615,-13616,-13613,-15787], -[1,3,10779], -[0,0,10780,10781,4], -[0,-50,-2410,-2466,-4840,-6859], -[0,-15415,-15416,-15788,-15417,-15418,-11853,-10655,-15419,-6711,-15420,-15421,-4126,-15071,-2006,-15422,-475,-2476,-5270, --3162,-11321,-15423,-15424], -[1,3,10783], -[0,10784,10785,10786,5], -[0,-15789], -[0,-15790,-3136,-3037,-664,-12469,-1002], -[0,-15791,-6121,-460,-15792,-15793,-15794,-15795], -[1,3,10788], -[0,10789,10790,7,4], -[0,-15796,-3748,-948,-8339,-965,-968,-969,-1047,-1110,-15797,-2411], -[0,-3037,-10557,-932,-1344,-3781,-1498,-15798,-1772,-2399,-2410], -[1,3,10792], -[0,10793,0,73,4], -[0,-1456], -[1,3,10795], -[0,10796,10797,286,4], -[0,-4007,-658,-3190,-1548,-1549,-15799], -[0,-15800,-3037,-1278,-2410,-15801,-15802,-15803], -[1,3,10799], -[0,10800,0,7,6], -[0,-4231], -[1,3,10802], -[0,0,10803,7,8], -[0,-2386,-932,-2469,-1942,-2410,-3037,-965,-3664,-978,-940,-428,-427], -[1,3,10805], -[0,10806,10807,10808,9], -[0,-668,-1574,-1948,-2303], -[0,-1127,-1132,-1134,-1163,-2541], -[0,-9219,-3839,-9472,-6523,-6527,-7175,-1644], -[1,3,10810], -[0,10811,10812,286,5], -[0,-928,-4007,-2886], -[0,-1415,-2410,-3136,-3037,-15806,-15807], -[1,3,10814], -[0,10815,10816,10817,5], -[0,-522], -[0,-1788,-664,-2391,-1654,-2125,-1004,-2379,-2410,-3035,-3037,-3621,-511,-3617,-3983], -[0,-4665,-5119,-3634,-4873,-3440,-4666,-5986,-1874,-522], -[1,3,10819], -[0,10820,10821,7,5], -[0,-483,-653,-6860,-13380,-14174,-15808,-5042,-1864,-2923,-7160,-2177,-3535,-2654,-2369,-15809,-15810], -[0,-15661,-15811,-15812,-15813,-15814,-3037,-8523,-3199,-8200,-15815,-15816,-3664,-3665,-4817,-8349,-815,-932,-8418,-3751, --1623,-3459,-6568,-1942,-2910,-15817,-15818,-2410,-15819,-15820,-15821,-15822,-2466,-2469], -[1,3,10823], -[0,10824,10825,10826,4], -[0,-812,-814,-1077,-1116,-7408,-2331], -[0,-3198,-15823,-3048,-664,-932,-1654], -[0,-867,-7347,-10908,-6131,-6656,-1334,-2435,-7107,-3445], -[1,3,10828], -[0,0,10829,10830,4], -[0,-3983,-3037,-3040,-9723,-1942,-2006,-2019,-3682,-2410], -[0,-2006,-5741,-12662,-12664,-12665], -[1,3,10832], -[0,10833,0,10834,5], -[0,-834,-3222,-681,-3620,-81,-66,-73,-74,-3502,-83,-68,-85,-15824,-6672,-15825], -[0,-15826,-681,-3489,-15827,-15828,-5554,-15829,-7754,-3496,-3498,-3264,-3505,-3506,-3507,-3508,-3509,-8841,-6217,-3161], -[1,3,10836], -[0,0,287,134,4], -[1,3,10838], -[0,10839,10840,10841,11], -[0,-15830,-1967,-2055], -[0,-21,-23,-32,-26,-33,-34,-35,-6034,-36,-38,-40,-41,-44,-406,-407,-409,-534,-753,-767,-932,-933,-940,-958,-962,-967,-969, --1415,-1419,-1455,-1939,-1942,-2006,-2019,-2501,-2502,-2503,-2505], -[0,-2006,-3476,-5176,-3159], -[1,3,10843], -[0,0,122,10844,5], -[0,-1107,-5569,-5570,-3215,-15831,-3116], -[1,3,10846], -[0,10847,0,10848,5], -[0,-681,-3517,-81,-15832,-66,-83,-68,-15824,-6672,-15825,-65,-15833,-3526,-15834,-15835], -[0,-15826,-681,-3489,-15827,-15828,-5554,-15829,-7754,-3496,-3498,-3264,-3505,-3506,-3507,-3508,-3509,-8841,-3161], -[1,3,10850], -[0,0,37,288,8], -[1,3,10852], -[0,10853,10854,10855,4], -[0,-15836,-458,-812,-1729], -[0,-3198,-3037,-4201,-15837], -[0,-13739,-7572,-3690,-3323,-3161,-3482,-2901], -[1,3,10857], -[0,23,0,289,4], -[0,23,0,289,5], -[1,3,10860], -[0,10861,0,170,5], -[0,-5240,-5241,-431,-15838,-5244,-5245], -[1,3,10863], -[0,10864,0,10865,9], -[0,-15839,-15840,-15841,-15842,-15843,-15844,-15845,-15846], -[0,-15847,-2257,-15848,-3634,-4004,-15849,-15849,-2034,-2006,-3162,-5270,-5271,-3578], -[1,3,10867], -[0,10868,0,10869,6], -[0,-1439,-7679,-493,-495,-15444,-492], -[0,-15318,-15719,-3445,-7661], -[1,3,10871], -[0,0,10872,10873,5], -[0,-633,-1339,-2491], -[0,-2319,-8533,-3162,-2363,-5389,-6822], -[1,3,10875], -[0,10876,10877,10878,9], -[0,-15850,-2324], -[0,-1413,-1471,-1475,-1476,-1481,-11285,-1645,-1978,-2416], -[0,-10838,-10840,-3162,-4865], -[1,3,10880], -[0,10881,10882,7,4], -[0,-8535,-15851,-11270,-4848,-15852,-15853,-1826,-3653,-2062,-7967,-8544,-15854,-15855,-2531], -[0,-13322,-9193,-13323,-15856,-357,-15857,-3037,-4204,-8549,-2917,-726,-2758,-932,-1030,-1122,-1123,-15858,-2884,-1939, --1972,-2177,-2210,-2240,-2384,-2410,-2426,-2648], -[1,3,10884], -[0,10885,10886,10887,11], -[0,-3459,-1863,-5037,-15811], -[0,-3735,-15206,-1966,-2469], -[0,-8403,-7148], -[1,3,10889], -[0,10890,10891,7,4], -[0,-25,-668,-2066,-2114,-2550], -[0,-528,-15859,-15860,-10445,-1978,-2070,-2226,-2250,-2322,-2359], -[1,3,10893], -[0,10894,132,58,5], -[0,-15861,-996,-15388,-15399], -[1,3,10896], -[0,0,0,10897,4], -[0,-15862,-3445,-13986,-11867,-7685,-2006], -[1,3,10899], -[0,0,0,10900,6], -[0,-932,-3784,-2006,-2041,-5324], -[1,3,10902], -[0,10903,10904,10905,8], -[0,-479,-9493,-812,-1022,-2778,-1446,-1597,-2359], -[0,-23,-40,-43,-528,-664,-756,-932,-951,-1168,-1174,-1197,-1212,-1220,-1231,-1252,-1654,-15863,-1788,-1939], -[0,-1168,-1446,-7674,-3214,-7841,-856], -[1,3,10907], -[0,10908,0,10909,4], -[0,-1371,-15448,-1645,-1469], -[0,-15318,-15719,-3445,-15449,-15450], -[1,3,10911], -[0,10912,10913,7,4], -[0,-15274,-652,-999,-1047,-1107,-2548], -[0,-15864,-11419,-15865,-357,-3037,-15866,-2177,-932,-2884,-2410], -[1,3,10915], -[0,0,91,10916,10], -[0,-5372,-5142,-7282,-2918,-11889,-5573], -[1,3,10918], -[0,0,10919,10920,10], -[0,-2391,-2851], -[0,-2476,-2486,-4634,-2851,-3636,-4215,-3634], -[1,3,10922], -[0,0,10923,10924,4], -[0,-527,-1168,-1171,-15867,-1187,-1229,-1243,-1248,-1252,-1262,-1942,-2128], -[0,-15868,-15869,-15870,-15871,-15872,-15873,-3162,-11853], -[1,3,10926], -[0,10927,10928,7,4], -[0,-15874], -[0,-2476,-4838,-15875], -[1,3,10930], -[0,0,10931,10932,6], -[0,-15661,-190,-15876,-15877,-3037,-3664,-6593,-932,-940,-960,-978,-1431,-7060,-1534,-8436,-1942,-15878,-15879,-2910, --2174,-2892,-2400,-2410,-2411,-2469], -[0,-15880,-10587,-12437,-11639,-5112,-14059,-1548,-1993,-10656,-3481,-3018,-3694,-2410,-2424,-2444,-8113,-3590,-5260], -[1,3,10934], -[0,10935,10936,10937,6], -[0,-14337,-5322], -[0,-5053,-11754,-15881,-4062,-639,-734,-999,-1107,-9665,-1852,-2922,-7160,-2127,-2202,-2231,-2410,-2924,-2923], -[0,-7882,-928,-7760,-2923,-2127,-2501], -[1,3,10939], -[0,0,10940,10941,5], -[0,-190,-3664,-932,-958,-960,-15882,-971,-972,-1449,-2892,-15883,-2410,-2411,-2466,-2469], -[0,-9022,-2410,-4058,-3926,-6747,-15884,-8461,-11997], -[1,3,10943], -[0,0,0,10944,6], -[0,-5889,-9080,-9800], -[1,3,10946], -[0,10947,10948,10949,10], -[0,-3819,-15885,-15886,-15887,-15888,-15889,-15890,-15891,-15892,-3117,-8915,-4836,-15893,-15874,-15894,-15895,-15896, --15897,-15898,-15899,-15900,-15901,-15902,-15903,-15904,-15905,-15906,-15907,-15908,-15909,-15910,-4816,-4817,-14358, --15911,-15912,-734,-6860,-15913,-15914,-15915,-15916,-15917,-15918,-15919,-1085,-14174,-15920,-1588,-1651,-15921,-12267, --1852,-15922,-6569,-2317,-15923,-2318,-2654,-11071,-2981,-15924,-15925, --15926,-15927], -[0,-15928,-15929,-15930,-4646,-15931,-4837,-4838,-15932,-2932,-932,-1278,-7300,-2091,-2423,-2469,-15130,-15933,-2476, --5627], -[0,-15934,-7300,-3944,-2318,-5511,-2476,-5173,-3527,-2410,-4591,-3160,-2316,-3161,-15935], -[1,3,10951], -[0,0,10952,10953,11], -[0,-3136,-1415,-2375,-2379,-2391,-2410], -[0,-3445,-4791,-9915,-15936,-15937,-15938,-15939,-15940,-15941,-15942,-15943,-775,-5272,-3100,-15944,-15945,-15946,-15947, --15948,-15949,-15950,-15951,-15952,-15953,-15954,-15955,-2410,-15956,-15957,-15958,-15959,-15960,-15961,-15962,-15963, --15964], -[1,3,10955], -[0,10956,10957,134,6], -[0,-2932,-2896], -[0,-1415,-932,-2127,-2375,-1942,-2410,-3136,-3040,-940,-967,-1419,-428,-427], -[1,3,10959], -[0,0,10960,10961,5], -[0,-3040,-3052,-2006,-2019,-2410], -[0,-2006,-8785,-3962,-15273], -[1,3,10963], -[0,10964,10965,10966,5], -[0,-15965,-15966,-15967], -[0,-15968,-15969,-15970,-15971,-15972,-15973,-15974,-15975,-15976,-15977,-15978,-15979,-15980,-15981,-15982,-15983,-15984, --15985,-15986,-15987,-15988,-15989,-15990], -[0,-2931,-4004,-3634,-10817,-4873,-664,-507,-856,-15991,-15992,-15993,-1446,-6024,-8257], -[1,3,10968], -[0,0,287,134,5], -[1,3,10970], -[0,10971,10972,10973,5], -[0,-15994,-15995,-15996,-15997,-15998,-15999,-16000,-16001,-16002,-13406,-16003,-16004,-16005,-1699,-2641,-2564,-2650], -[0,-4049,-3037,-3040,-3052,-2006,-2019,-2469,-16006], -[0,-16007,-1713,-2455,-16008,-2006,-3098,-3160,-3100,-2316,-2955,-16009,-16010,-15932,-3475,-16011,-16012,-16013,-16014, --16015,-16016,-16017,-16018,-16019,-16020,-16021], -[1,3,10975], -[0,0,0,10976,4], -[0,-12059,-775], -[1,3,10978], -[0,10979,10980,10981,4], -[0,-10782,-10784,-10786,-10793,-10788,-1691], -[0,-3136,-3037,-756,-1415,-1942,-2080,-2091,-2153,-2375,-2379,-2892,-2409,-2410], -[0,-5406,-4847,-856], -[1,3,10983], -[0,10984,10985,10986,5], -[0,-2650,-4225], -[0,-2466,-2006,-1122,-2019,-6859,-406,-440,-409,-407,-5323], -[0,-2006,-1122,-16022,-3862,-856,-10446], -[1,3,10988], -[0,10989,10990,10991,5], -[0,-1313,-1826,-865,-16023,-13074,-1582,-16024,-1125,-16025,-1456,-15672,-16026,-16027,-16028,-16029,-16030,-16031,-16032, --3234,-16033,-16034,-8863], -[0,-2564,-2391,-932,-1111,-2127,-2469,-2378,-3665,-2410,-23,-3037,-16035,-16036,-16037,-16038,-1025,-4776,-4049,-16039, --16040,-3664,-16041,-16042,-16043], -[0,-15932,-16044,-16045,-9733,-16046,-16047,-16048,-16049,-16050,-10412,-3674,-2410,-16051,-3161], -[1,3,10993], -[0,0,10994,10995,5], -[0,-50,-409,-3136,-855,-1415,-2634,-1942,-2006,-2019,-2052,-2125,-2375,-2410], -[0,-2006,-2634,-9736,-1713,-3122,-4215,-4004,-3634], -[1,3,10997], -[0,0,10998,10999,6], -[0,-262,-4066,-350,-351,-3561,-5295,-16052,-3136,-4647,-16053,-4837,-7438,-4838,-5593,-708,-740,-767,-1415,-1419,-1449, --1534,-6518,-1942,-2127,-2140,-2142,-2214,-2645,-2318,-2375,-2410,-2466,-2476,-2483,-2486,-8160], -[0,-2476,-3944,-16054,-16055,-16056,-15150,-2645,-16057,-2939,-7580,-15151,-16058,-2410,-16059,-2363,-3162,-3214,-3095, --3160], -[1,3,11001], -[0,94,0,11002,4], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-15071,-13615,-6527], -[1,3,11004], -[0,11005,11006,261,6], -[0,-16060,-4787,-3751,-1864,-1889,-2923,-2654], -[0,-25,-3195,-3180,-14337,-13397,-5322,-4066,-350,-7151,-4785,-10046,-4371,-14331,-6410,-653,-679,-729,-742,-754,-769, --5042,-865,-866,-14335,-928,-929,-989,-990,-14338,-14333,-7897,-1588,-1651,-5036,-1699,-1805,-1839,-1852,-14332,-1863, --1906,-1907,-14336,-12601,-11751,-7160,-2127,-2134,-2162,-3572,-2213,-14334,-2334,-3027,-11071,-2531], -[1,3,11008], -[0,0,0,11009,4], -[0,-2034,-3159,-5270,-5271,-11511,-770,-3162,-510,-2191,-11524,-11526,-7103,-16061,-16062,-2446], -[1,3,11011], -[0,0,37,288,9], -[1,3,11013], -[0,11014,11015,11016,9], -[0,-3165,-16063,-16064,-3168,-3698,-11418,-16065,-5772,-16066,-16067,-16068,-16069,-5702,-16070,-8859,-3778,-16071,-16072, --16073,-16074,-16075,-16076,-16077,-16078,-16079,-16080,-16081,-16082,-16083,-16084,-16085,-16086,-16087,-16088,-16089, --16090,-16091,-16092,-16093,-16094,-16095,-16096,-16097,-16098,-16099,-16100,-8863,-16101,-16102,-16103,-16104,-16105, --16106,-16107,-16108,-16109,-402,-16110,-16111,-16112,-15748,-16113,-16114, --16115,-16116,-16117,-16118,-15257,-485,-5674,-16119,-13751,-743,-16120,-809,-812,-16121,-834,-16122,-16123,-2761,-1025, --14636,-1043,-2573,-16124,-1125,-1329,-1349,-9775,-16125,-11895,-1359,-5193,-16126,-16127,-1495,-16128,-16129,-16130, --1549,-16131,-1593,-16132,-1610,-10749,-16133,-16134,-1699,-2634,-1712,-16135,-16136,-11750,-1782,-16137,-16138,-16139, --16140,-16010,-12273,-16141,-16142,-16143,-11926,-1855,-1857, --1867,-16144,-1885,-16145,-8504,-16146,-1984,-1994,-2006,-16147,-2019,-4988,-16148,-2025,-16149,-6620,-16150,-2042, --16151,-2044,-16152,-16153,-16154,-2093,-2095,-2096,-16155,-16156,-2177,-2193,-4245,-16157,-2272,-2292,-16158,-2592, --2314,-16159,-16160,-2594,-16161,-2436,-16162,-2446,-16163,-2531,-2548,-2564,-2650,-16164], -[0,-86,-14379,-16165,-16166,-16167,-16168,-16169,-16170,-10811,-16171,-3983,-5681,-3842,-407,-409,-410,-16172,-16173, --3198,-3048,-16174,-4049,-3044,-3164,-3037,-16175,-16176,-16177,-16178,-3040,-3052,-16179,-3199,-14748,-12969,-4231, --4204,-8200,-3664,-5329,-721,-734,-767,-772,-16180,-865,-866,-16181,-16182,-16183,-932,-16184,-16185,-1077,-1107,-1278, --1344,-11415,-16186,-1534,-1548,-1605,-16187, --1640,-1729,-1733,-12282,-1826,-1942,-2094,-4242,-16188,-2098,-11417,-2174,-16189,-2281,-2392,-2400,-2410,-2427,-2429, --2466,-2469], -[0,-3161,-16011,-16017,-1713,-16190,-16010,-16191,-16192,-16193,-16194], -[1,3,11018], -[0,291,135,63,5], -[1,3,11020], -[0,11021,131,11022,5], -[0,-8863,-3617,-719,-1004,-5193,-2426,-2564], -[0,-16195,-16196,-16197,-16198,-16199,-856,-10817], -[1,3,11024], -[0,11025,11026,11027,4], -[0,-4890,-13377], -[0,-2213,-1852,-2006,-2218,-2177,-2469,-13380,-2019,-2369,-3654,-3517,-1639,-1863,-2654,-2410,-3037,-3199,-14373,-4036, --5087,-16200,-2970], -[0,-2257,-4895,-2469,-3634,-4004,-3095,-3098,-13422,-2006,-2476,-2299,-4902], -[1,3,11029], -[0,11030,11031,11032,5], -[0,-997,-16201,-16202], -[0,-2501,-3136,-3037,-2503], -[0,-4123,-8503,-4004,-3634,-16203,-5858], -[1,3,11034], -[0,0,11035,11036,4], -[0,-526,-527,-534,-559,-562,-566,-567,-16204,-664,-16205,-13261,-796,-812,-829,-932,-943,-968,-974,-1017,-1041,-1077, --1322,-1331,-1471,-1474,-1475,-1479,-16206,-7707,-1480,-1482,-1483,-16207,-1484,-1487,-1488,-1492,-1654,-1753,-1860, --2125,-14439,-5471,-2174,-2416,-14648,-2437,-2501,-2505], -[0,-3576,-8897,-16208,-12613,-12449,-2363,-13616,-11594,-3162], -[1,3,11038], -[0,11039,11040,11041,5], -[0,-16209,-16210], -[0,-3040,-3052,-3804,-427,-428,-726,-932,-940,-967,-969,-16211,-16212,-1942,-2127,-2142,-2379,-2387,-2410], -[0,-16213,-16214,-16215,-2006,-5270,-5271,-3162,-16216], -[1,3,11043], -[0,0,11044,11045,6], -[0,-2006,-2034,-12566,-16217], -[0,-2034,-9021,-5270,-5271,-16218,-16219,-16220,-16221,-3161,-2006,-16222,-5269,-3209,-5922,-16223,-3682,-3970,-3110, --9437], -[1,3,11047], -[0,11048,0,11049,6], -[0,-2954,-2934], -[0,-712,-775,-3215], -[1,3,11051], -[0,0,0,11052,9], -[0,-714,-775], -[1,3,11054], -[0,11055,11056,11057,6], -[0,-16224,-23,-25,-3412,-42,-16225,-8863,-16226,-635,-719,-755,-815,-823,-834,-999,-1026,-1077,-12417,-1343,-1496,-1683, --1729,-1805,-1816,-1889,-1931,-1966,-2066,-16227,-2317,-2378,-2383,-2450,-2564,-8882], -[0,-4776,-3048,-3735,-16228,-2125,-2391,-2400,-2410], -[0,-3098,-3160,-2316,-16007,-2955], -[1,3,11059], -[0,0,0,11060,6], -[0,-2006,-2476,-9608,-9614,-16229,-16230], -[1,3,11062], -[0,0,11063,11064,6], -[0,-3136,-3037,-427,-428,-932,-936,-940,-958,-967,-968,-972,-978,-1107,-1415,-1942,-2125,-2127,-2130,-12925,-2142,-2375, --2379,-2402,-2405,-7322,-2410], -[0,-16231,-8785,-16232,-16233,-16234,-16235,-16236,-16237,-3173,-16238,-3966,-4865,-3100,-3445], -[1,3,11066], -[0,0,0,11067,6], -[0,-16239,-4053,-16240,-16241,-16242,-16243,-16244,-16245,-16246,-16247,-16248,-16249,-16250,-16251,-12512,-16252,-16253, --4055,-1456,-16254,-16244,-5495,-3100,-3214,-2410], -[1,3,11069], -[0,11070,0,73,4], -[0,-2984,-5766,-2860,-5758,-501,-523,-16255,-615,-16256,-14855,-1069,-1100,-1107,-9362,-8985,-5880,-1548,-1574,-1666, --1705,-10270,-1875,-1878,-2060,-2115,-2160,-2177,-2194,-2297,-5764,-2400,-2446,-2518,-2555], -[1,3,11072], -[0,11073,11074,11075,4], -[0,-15224,-15226], -[0,-3037,-15229,-15230,-15231,-2125,-2892,-2410,-2469], -[0,-15227,-9668,-3690,-3445,-1348,-9780], -[1,3,11077], -[0,11078,11079,11080,4], -[0,-1313,-1852,-2922,-6570,-2924,-11918,-12278,-7772,-6475,-4835,-1341,-16257,-8859,-12284,-8860,-16258,-16259], -[0,-2391,-2469,-5672,-6568,-2410,-3037,-8321,-16260,-2832,-11347], -[0,-1954,-10425,-16261,-8427,-3113,-7646,-3634], -[1,3,11082], -[0,11083,11084,11085,6], -[0,-16262,-16263], -[0,-16264,-767,-932,-1641,-16265,-1788,-1972,-16266,-2322], -[0,-5817,-5819,-5937,-13192,-5801,-16267,-16268,-5951,-5940,-5943,-16269,-3161], -[1,3,11087], -[0,11088,11089,7,4], -[0,-16270], -[0,-879,-2410,-7768], -[1,3,11091], -[0,11092,11093,11094,10], -[0,-2006,-2019,-16271], -[0,-1992,-2125,-2388,-2376,-1967,-2410,-23,-3037,-3040,-534,-3052,-3140,-520], -[0,-2356,-3488,-16272,-2006,-3496,-3264,-3494,-13460,-11889,-4258], -[1,3,11096], -[0,0,11097,11098,5], -[0,-12182,-190,-4225,-16273,-16274,-4836,-16275,-407,-409,-410,-3269,-3732,-3661,-3037,-3040,-3052,-16276,-14827,-651, --703,-724,-786,-932,-970,-2914,-1110,-1344,-1449,-1534,-1600,-1610,-1889,-1942,-8918,-2006,-16277,-2019,-2965,-16278, --2044,-2140,-2144,-16279,-2193,-2213,-2317,-2318,-2334,-16280,-2379,-2392,-2410,-2411,-11708,-2466,-6859,-15519,-2469, --16281,-2650], -[0,-2006,-3476,-9614,-6409,-16282,-4108,-12682,-12683,-12684,-4002,-4672,-9133], -[1,3,11100], -[0,11101,11102,11103,5], -[0,-4785,-12535,-462,-674,-742,-812,-14335,-1026,-1077,-1451,-1588,-1852,-1863,-2041,-2127,-2153], -[0,-16283,-16284,-4066,-350,-4062,-351,-365,-8894,-16285,-3202,-3198,-3048,-4963,-16286,-3037,-3040,-3052,-427,-428,-440, --4837,-679,-928,-13212,-932,-969,-4981,-1771,-13593,-2006,-2019,-2125,-2132,-6483,-2299,-2400,-2410,-2466,-16287,-2469, --2476], -[0,-12913,-5044,-10366,-16288,-5195,-16289,-16290,-4865,-16291], -[1,3,11105], -[0,11106,11107,7,5], -[0,-797,-16292,-16293], -[0,-652,-16294,-2392,-2466,-1449,-1654,-659,-932,-2127,-1110,-1942,-2378,-16295,-2468,-190,-2410,-3037,-1440,-3621,-16296, --7273,-3244,-16297,-4062,-16298,-7274,-3266,-1602,-940,-350,-428,-351,-427], -[1,3,11109], -[0,11110,11111,11112,6], -[0,-8612,-1063,-1343,-16299], -[0,-4835,-3037,-16300,-1313,-1722,-2359], -[0,-659,-13649,-16301,-16302,-11878,-6523,-6524,-6527,-5093,-16303,-7650,-16304,-16305,-6528,-3839,-5057], -[1,3,11114], -[0,11115,11116,11117,8], -[0,-16306], -[0,-2376,-2410,-2501,-2503,-2006,-2019,-3040,-3052], -[0,-2006,-16306,-6656,-6999,-9800,-16307,-6527,-3496,-7764,-16308,-5937,-5940,-5800,-8624], -[1,3,11119], -[0,11120,11121,11122,5], -[0,-14372,-13388,-5286], -[0,-2469,-1874], -[0,-4865,-1874,-3095,-7243,-4004,-3634], -[1,3,11124], -[0,11125,11126,11127,4], -[0,-502,-668,-679,-1098,-1099,-1125,-1304,-1351,-1535,-1610,-1978,-2177,-5977], -[0,-16309,-3802,-3199,-13186,-519,-659,-1788,-11926,-1942,-1944,-11491,-2379,-2384,-2410,-2541], -[0,-16310,-687,-16311,-856,-16312,-16313,-1599,-6528,-1978,-11096,-16314], -[1,3,11129], -[0,11130,11131,278,5], -[0,-668,-2550,-16315,-2823,-16316], -[0,-3037,-16317], -[1,3,11133], -[0,11134,91,11135,5], -[0,-2177,-2823,-16316,-16318], -[0,-15627,-15629,-15630,-4864,-3634,-3636], -[1,3,11137], -[0,11138,11139,11140,4], -[0,-16319,-16316,-16318,-2823], -[0,-2973,-16320,-15626,-5769,-1870,-11468], -[0,-15627,-15629,-15630,-4864,-3634,-3636,-11890], -[1,3,11142], -[0,11143,11144,11145,4], -[0,-719,-2683,-2822,-16321], -[0,-15624,-16322,-16323,-2983], -[0,-15279,-687,-3262,-856,-15280,-15281], -[1,3,11147], -[0,11148,0,11149,4], -[0,-16324], -[0,-15279,-15625,-16325,-16326,-856,-15280,-15281], -[1,3,11151], -[0,94,11152,11153,8], -[0,-3307,-12564,-4646,-3136,-3044,-3040,-3141,-427,-428,-721,-932,-940,-967,-1344,-1415,-16327,-1942,-2006,-2034,-12566, --2091,-2410], -[0,-2034,-3159,-5270,-5271,-16328,-16329,-3162,-5269,-3095,-6107,-7067,-14498,-11378,-2319], -[1,3,11155], -[0,11156,11157,11158,10], -[0,-2340], -[0,-16178,-1857], -[0,-10425,-6321,-3634,-7606,-2340], -[1,3,11160], -[0,11161,11162,7,6], -[0,-3195,-1864,-4247], -[0,-5694,-16224,-16330,-16331,-10097,-10098,-3037,-8523,-8200,-483,-8349,-16332,-928,-932,-16333,-1431,-1534,-1588,-2923, --2127,-3246,-2892,-2410,-16334,-15822,-2466,-2469,-2501,-2503,-2981], -[1,3,11164], -[0,72,0,11165,6], -[0,-15279,-15625,-16335,-856,-15280,-15281], -[1,3,11167], -[0,11168,0,11169,10], -[0,-16336], -[0,-15279,-15625,-16337,-6999,-856,-15280,-15281], -[1,3,11171], -[0,11172,0,73,5], -[0,-4716,-1548,-1582,-10515], -[1,3,11174], -[0,0,11175,11176,5], -[0,-50,-190,-3035,-3664,-469,-932,-940,-1942,-2125,-2134,-2210,-2334,-2384,-2387,-2402,-2405,-2411,-2466,-16338,-16339, --16340,-16341,-2468,-2469], -[0,-16342,-5177,-3214,-2410,-16343,-16344,-6899,-16345,-3162], -[1,3,11178], -[0,0,11179,11180,5], -[0,-50,-3037,-427,-428,-7438,-932,-940,-1003,-1654,-1942,-16346,-2134,-16347,-2210,-2402,-2405,-2410,-2466,-16338,-16339, --16340], -[0,-5177,-16343,-9475,-3999,-6899,-16345,-659,-7085,-3578,-3162], -[1,3,11182], -[0,11183,0,11184,4], -[0,-2357], -[0,-4144,-3214,-16348,-2987,-1942,-2410], -[1,3,11186], -[0,0,0,11187,4], -[0,-3015,-16349,-1520,-15360,-10440,-1764,-1787,-5895,-7442,-1882,-2177,-7969,-3682,-16350,-16351,-11713,-4304,-2552], -[1,3,11189], -[0,0,11190,7,4], -[0,-16352,-16353,-280,-16354,-16355,-350,-4062,-351,-7155,-4007,-11348,-16356,-16357,-11752,-719,-831,-16358,-3459,-1863, --2144,-16359,-16360], -[1,3,11192], -[0,11193,0,73,11], -[0,-2959,-2860,-5758,-8864,-5761,-523,-615,-617,-1004,-11676,-1341,-1548,-1582,-1635,-1676,-1851,-2185,-2400], -[1,3,11195], -[0,291,135,63,11], -[1,3,11197], -[0,11198,135,63,11], -[0,-3947,-231,-2944,-2900], -[1,3,11200], -[0,11201,11202,11203,10], -[0,-2564,-6860,-6415,-16361,-16362,-16363,-2292,-16364,-16365,-16122,-16366,-16367,-16368,-16369,-16370,-5038,-16371, --5779,-5782], -[0,-1683,-16178,-3631,-2410,-3037,-16372,-3617,-16373,-8859,-16374,-12285,-16375], -[0,-16376,-16377,-14981,-16378,-16379,-3445,-16380,-16381,-16382,-11877,-16383,-16384,-16385,-16386,-16387], -[1,3,11205], -[0,11206,11207,11208,10], -[0,-1047,-1863,-1875], -[0,-11337,-3040,-825,-1802,-12566,-2410], -[0,-2034,-5270,-5271,-12578,-7084,-12579,-3159,-12567,-2006,-3162,-3160,-3167,-3843,-9472,-9474,-3827], -[1,3,11210], -[0,11211,0,11212,8], -[0,-2460,-1641,-2683,-16324], -[0,-15279,-15625,-5398,-856,-15280,-15281], -[1,3,11214], -[0,0,11215,11216,9], -[0,-16388,-15583,-21,-23,-3203,-38,-40,-16389,-16390,-3326,-3561,-528,-533,-10056,-10022,-15127,-16391,-11899,-726,-865, --932,-956,-958,-9724,-1059,-11942,-13866,-1344,-1415,-5123,-12680,-4981,-4982,-1868,-16392,-1942,-1952,-1978,-16346, --2127,-16393,-2134,-2140,-2144,-2184,-2410], -[0,-3821,-3822,-3823,-3825,-16394,-16395], -[1,3,11218], -[0,0,11219,11220,9], -[0,-3266,-3621,-3037,-632,-664,-1654,-1753,-2127,-2344,-2410], -[0,-16396,-2998,-16397,-7049,-5176,-16398,-15100,-16055,-15213,-6899,-11853,-16399,-16400,-12543,-16401,-7198,-10724, --16402,-16403,-16404], -[1,3,11222], -[0,0,70,11223,9], -[0,-13351,-16405], -[1,3,11225], -[0,11226,11227,11228,9], -[0,-16406,-16407,-16408,-16409,-16410], -[0,-683,-932,-16411,-16412,-1989,-2281,-2282,-2334], -[0,-2363,-3576,-16413,-12449,-12613,-13615,-14054,-4865], -[1,3,11230], -[0,0,11231,11232,9], -[0,-664,-824,-1168,-1187,-9293,-1208,-1224,-1243,-1262,-16414,-1654], -[0,-4123,-11154,-11158,-1666,-1667,-4121], -[1,3,11234], -[0,0,0,11235,9], -[0,-3003,-7184,-5493,-11151,-16415,-8451,-3579,-8590,-3215], -[0,25,9], -[1,3,11238], -[0,11239,0,7,9], -[0,-637], -[1,3,11241], -[0,0,11242,11243,9], -[0,-1032,-2322], -[0,-3006,-10504,-10684,-16416,-11972], -[1,3,11245], -[0,0,11246,11247,9], -[0,-1654,-1003,-6851,-16417,-16418,-1818,-510], -[0,-6106,-1818,-16418,-6851], -[1,3,11249], -[0,0,0,11250,9], -[0,-16419,-14311], -[1,3,11252], -[0,11253,0,7,9], -[0,-1980,-10802,-2550,-2520,-1691,-2424,-693,-7109,-714,-2525], -[1,3,11255], -[0,11256,11257,11258,9], -[0,-1967,-16420], -[0,-21,-23,-36,-40,-41,-43,-509,-756,-915,-916,-932,-16421,-7894,-964,-969,-1449,-1654,-1788,-2006,-2019,-15571,-16422], -[0,-3839,-2034,-3010,-16423,-9682,-2006], -[1,3,11260], -[0,0,11261,7,9], -[0,-23,-40,-350,-5995,-351,-535,-571,-633,-1413,-1471,-1472,-1475,-1476,-1481,-3569,-1491,-1978,-2127,-2128,-16424,-8895, --16425,-8896,-2140,-2491], -[1,3,11263], -[0,0,11264,7,9], -[0,-2125,-1650,-16426,-16427], -[1,3,11266], -[0,0,11267,11268,9], -[0,-21,-23,-40,-528,-557,-932,-934,-940,-958,-967,-1415,-1942], -[0,-5845,-8799,-651,-16428,-3215,-16429,-7304,-6241,-8574,-12248,-6582,-1044,-6656,-8800,-3590,-5845,-6473,-3240] + "Flatpack JSON v2", + [ + 128, + "@alifd/next", + "@angular-devkit/core", + "@angular-devkit/schematics", + "@angular/animations", + "@angular/cdk", + "@angular/common", + "@angular/compiler", + "@angular/compiler-cli", + "@angular/core", + "@angular/forms", + "@angular/http", + "@angular/material", + "@angular/platform-browser", + "@angular/platform-browser-dynamic", + "@angular/platform-server", + "@angular/router", + "@ant-design/react-native", + "@ant-design/web3-common", + "@ant-design/web3-icons", + "@auth/sveltekit", + "@babel/cli", + "@babel/code-frame", + "@babel/core", + "@babel/helper-plugin-utils", + "@babel/parser", + "@babel/plugin-proposal-class-properties", + "@11ty/eleventy", + "@adobe/css-tools", + "@api-components/api-method-documentation", + "@apollo/client", + "@asyncapi/generator-react-sdk", + "@babel/eslint-parser", + "@babel/plugin-proposal-decorators", + "@babel/plugin-proposal-export-default-from", + "@babel/plugin-proposal-export-namespace-from", + "@babel/plugin-proposal-object-rest-spread", + "@babel/plugin-syntax-dynamic-import", + "@babel/plugin-transform-runtime", + "@babel/polyfill", + "@babel/preset-env", + "@babel/preset-react", + "@babel/preset-typescript", + "@babel/register", + "@babel/runtime", + "@babel/runtime-corejs2", + "@babel/traverse", + "@babel/types", + "@biz-dev-ops/md-docs", + "@bwcr_/winston-loki", + "@changesets/cli", + "@chatscope/chat-ui-kit-react", + "@ckeditor/ckeditor5-adapter-ckfinder", + "@ckeditor/ckeditor5-angular", + "@ckeditor/ckeditor5-autoformat", + "@ckeditor/ckeditor5-basic-styles", + "@ckeditor/ckeditor5-block-quote", + "@ckeditor/ckeditor5-build-balloon", + "@ckeditor/ckeditor5-build-balloon-block", + "@ckeditor/ckeditor5-build-classic", + "@ckeditor/ckeditor5-build-decoupled-document", + "@ckeditor/ckeditor5-build-inline", + "@ckeditor/ckeditor5-ckbox", + "@ckeditor/ckeditor5-ckfinder", + "@ckeditor/ckeditor5-clipboard", + "@ckeditor/ckeditor5-cloud-services", + "@ckeditor/ckeditor5-core", + "@ckeditor/ckeditor5-easy-image", + "@ckeditor/ckeditor5-engine", + "@ckeditor/ckeditor5-essentials", + "@ckeditor/ckeditor5-heading", + "@ckeditor/ckeditor5-image", + "@ckeditor/ckeditor5-indent", + "@ckeditor/ckeditor5-link", + "@ckeditor/ckeditor5-list", + "@ckeditor/ckeditor5-media-embed", + "@ckeditor/ckeditor5-paragraph", + "@ckeditor/ckeditor5-paste-from-office", + "@ckeditor/ckeditor5-react", + "@ckeditor/ckeditor5-table", + "@ckeditor/ckeditor5-typing", + "@ckeditor/ckeditor5-ui", + "@ckeditor/ckeditor5-upload", + "@ckeditor/ckeditor5-utils", + "@ckeditor/ckeditor5-vue", + "@ckeditor/ckeditor5-widget", + "@commitlint/cli", + "@compodoc/compodoc", + "@comunica/core", + "@contenthook/browser", + "@contenthook/cli", + "@contenthook/node", + "@coreui/coreui", + "@csstools/css-parser-algorithms", + "@csstools/css-tokenizer", + "@csstools/media-query-list-parser", + "@csstools/postcss-is-pseudo-class", + "@csstools/postcss-progressive-custom-properties", + "@csstools/selector-specificity", + "@cucumber/cucumber", + "@deven-org/documentation-skeleton", + "@devtea2026/aspernatur-ea-non-porro", + "@devtea2026/consectetur-ab-unde-quisquam", + "@devtea2026/cupiditate-dolorem-excepturi-impedit", + "@devtea2026/distinctio-soluta-illo-eaque", + "@devtea2026/eum-ullam-est-distinctio", + "@devtea2026/explicabo-alias-architecto-sed", + "@devtea2026/improved-journey", + "@devtea2026/inventore-facilis-corporis-cum", + "@devtea2026/ipsa-omnis-in-molestiae", + "@devtea2026/literate-computing-machine", + "@devtea2026/maxime-sequi-est-rem", + "@devtea2026/necessitatibus-dolorem-esse-atque", + "@devtea2026/odit-enim-reiciendis-pariatur", + "@devtea2026/odit-maxime-porro-asperiores", + "@devtea2026/possimus-ipsa-sint-consequuntur", + "@devtea2026/qui-quos-laborum-amet", + "@devtea2026/quia-ducimus-placeat-minima", + "@devtea2026/quidem-voluptate-repudiandae-necessitatibus", + "@devtea2026/rerum-quaerat-porro-animi", + "@devtea2026/ubiquitous-octo-memory", + "@diotoborg/adipisci-placeat-iure", + "@diotoborg/amet-architecto-est", + "@diotoborg/at-totam-perspiciatis", + "@diotoborg/commodi-voluptatum-libero", + "@diotoborg/delectus-necessitatibus-voluptatum", + "@diotoborg/deserunt-illo-tempora", + "@diotoborg/dicta-recusandae-veniam", + "@diotoborg/dolor-earum-quia", + "@diotoborg/dolor-tempora-fuga", + "@diotoborg/dolores-praesentium-assumenda", + "@diotoborg/eligendi-est-unde", + "@diotoborg/esse-accusantium-ratione", + "@diotoborg/illo-amet-architecto", + "@diotoborg/laudantium-itaque-esse", + "@diotoborg/libero-asperiores-at", + "@diotoborg/neque-inventore-corporis", + "@diotoborg/nostrum-eveniet-officiis", + "@diotoborg/odio-dolores-officia", + "@diotoborg/porro-modi-accusamus", + "@diotoborg/psychic-bassoon", + "@diotoborg/quasi-repellat-odit", + "@diotoborg/qui-ullam-ipsum", + "@diotoborg/quo-dolorem-ducimus", + "@diotoborg/ratione-error-odio", + "@diotoborg/repellat-blanditiis-quis", + "@diotoborg/tempora-voluptas-distinctio", + "@diotoborg/ullam-dignissimos-repudiandae", + "@diotoborg/velit-reiciendis-velit", + "@diotoborg/verbose-robot", + "@diplodoc/transform", + "@discordjs/rest", + "@disqada/workspace", + "@doc-tools/docs", + "@doc-tools/transform", + "@dramaorg/esse-praesentium-eligendi", + "@dramaorg/quae-dolore-nostrum", + "@eas-framework/server", + "@eightshift/frontend-libs", + "@electron/docs-parser", + "@emotion/babel-plugin", + "@emotion/core", + "@emotion/css", + "@emotion/styled", + "@erboladaiorg/ad-exercitationem-ducimus", + "@erboladaiorg/asperiores-earum-quaerat", + "@erboladaiorg/asperiores-fuga-sint", + "@erboladaiorg/asperiores-nam-adipisci", + "@erboladaiorg/autem-dolores-ipsam", + "@erboladaiorg/cupiditate-consectetur-porro", + "@erboladaiorg/cupiditate-pariatur-optio", + "@erboladaiorg/distinctio-tempora-quis", + "@erboladaiorg/error-atque-ea", + "@erboladaiorg/esse-ipsa-numquam", + "@erboladaiorg/ex-hic-molestias", + "@erboladaiorg/explicabo-eius-adipisci", + "@erboladaiorg/molestiae-voluptatibus-perferendis", + "@erboladaiorg/molestias-nulla-dolor", + "@erboladaiorg/nisi-culpa-cum", + "@erboladaiorg/officia-illum-aperiam", + "@erboladaiorg/perspiciatis-magni-ut", + "@erboladaiorg/quae-in-veniam", + "@erboladaiorg/quaerat-mollitia-adipisci", + "@erboladaiorg/quibusdam-itaque-tempora", + "@erboladaiorg/sint-deleniti-dolorem", + "@erboladaiorg/sit-nesciunt-amet", + "@erboladaiorg/tenetur-architecto-dolore", + "@erboladaiorg/ut-dignissimos-laborum", + "@erboladaiorg/velit-fugit-harum", + "@eslint-community/eslint-utils", + "@eslint/js", + "@fakeyanss/redoc", + "@floating-ui/react-dom", + "@fontsource/inter", + "@fontsource/roboto", + "@fortawesome/fontawesome-svg-core", + "@fortawesome/free-solid-svg-icons", + "@fortawesome/react-fontawesome", + "@grandlinex/core", + "@grandlinex/e-kernel", + "@grandlinex/kernel", + "@graphql-markdown/core", + "@graphql-markdown/docusaurus", + "@hajtech/webpack-config", + "@hapi/hapi", + "@hishprorg/aliquid-ad-vero", + "@hishprorg/autem-sint-quas", + "@hishprorg/cum-rem-consequuntur", + "@hishprorg/earum-sint-veritatis", + "@hishprorg/eius-vero-dicta", + "@hishprorg/est-dicta-quis", + "@hishprorg/incidunt-quibusdam-tempore", + "@hishprorg/itaque-esse-accusamus", + "@hishprorg/iure-optio-nihil", + "@hishprorg/magni-amet-id", + "@hishprorg/magni-nisi-aperiam", + "@hishprorg/maxime-voluptates-enim", + "@hishprorg/nihil-ad-ratione", + "@hishprorg/perspiciatis-ratione-unde", + "@hishprorg/quis-perferendis-culpa", + "@hishprorg/reprehenderit-excepturi-sed", + "@hishprorg/sint-nam-consequuntur", + "@hishprorg/sunt-officia-eligendi", + "@hishprorg/sunt-voluptatem-nobis", + "@hishprorg/unde-vitae-reprehenderit", + "@hishprorg/wafflejs", + "@homer0/prettier-plugin-jsdoc", + "@hookform/resolvers", + "@iamtraction/google-translate", + "@idux/cdk", + "@idux/components", + "@inquirer/core", + "@ionic/core", + "@isaacs/cliui", + "@istanbuljs/nyc-config-typescript", + "@itwin/itwinui-react", + "@jest/core", + "@jest/types", + "@jsonforms/core", + "@jsonforms/material-renderers", + "@jsonforms/react", + "@juigorg/nisi-molestiae-ut", + "@juigorg/sit-nam-neque", + "@jupyterlab/application", + "@kobedevi/sassdoc", + "@kollorg/dicta-itaque-nemo", + "@kollorg/nihil-veniam-deserunt", + "@libphamton/chatfanpage", + "@libphamton/fb-group", + "@listr2/prompt-adapter-inquirer", + "@mantine/core", + "@mantine/dates", + "@mantine/hooks", + "@mantine/modals", + "@mantine/notifications", + "@mantine/prism", + "@mantine/styles", + "@mantine/utils", + "@material-ui/core", + "@material-ui/icons", + "@mathematikoi/jsonapi", + "@mdx-js/react", + "@microsoft/api-extractor", + "@microsoft/tsdoc", + "@microsoft/tsdoc-config", + "@middy/core", + "@middy/http-json-body-parser", + "@middy/util", + "@ministryofjustice/frontend", + "@mswjs/interceptors", + "@mui/icons-material", + "@mui/lab", + "@mui/material", + "@mui/system", + "@mui/x-date-pickers", + "@neato/guider", + "@ng-doc/core", + "@ng-doc/ui-kit", + "@ng-doc/utils", + "@nomicfoundation/hardhat-chai-matchers", + "@npmcli/arborist", + "@npmcli/map-workspaces", + "@npmcli/node-gyp", + "@npmcli/run-script", + "@npmcorp/marky-markdown", + "@npmtuanmap/ex-vel-expedita-impedit", + "@npmtuanmap/psychic-guide", + "@npmtuanmap/recusandae-recusandae-nam-et", + "@npmtuanmap/sed-quo-nemo-rerum", + "@npmtuanmap/velit-esse-velit-magnam", + "@nrwl/devkit", + "@nrwl/tao", + "@nrwl/workspace", + "@nx/devkit", + "@nx/esbuild", + "@nx/eslint", + "@nx/express", + "@nx/js", + "@nx/nest", + "@nx/node", + "@nx/workspace", + "@oclif/command", + "@oclif/config", + "@oclif/core", + "@oclif/plugin-help", + "@octokit/rest", + "@opentiny/vue", + "@opentiny/vue-renderless", + "@opentiny/vue-theme", + "@opentiny/vue-theme-mobile", + "@otterhttp/cookie", + "@otterhttp/request", + "@otterhttp/response", + "@otterhttp/send", + "@pact-foundation/pact", + "@patrtorg/a-ad-expedita", + "@patrtorg/a-ut-amet", + "@patrtorg/asperiores-vel-accusantium", + "@patrtorg/aspernatur-dolorum-ducimus", + "@patrtorg/autem-et-hic", + "@patrtorg/consectetur-culpa-non", + "@patrtorg/consectetur-repudiandae-consequuntur", + "@patrtorg/consequatur-voluptatum-officiis", + "@patrtorg/ducimus-magni-quibusdam", + "@patrtorg/enim-magni-hic", + "@patrtorg/est-corrupti-deleniti", + "@patrtorg/eveniet-tempore-maiores", + "@patrtorg/illum-sapiente-quos", + "@patrtorg/laborum-doloribus-voluptate", + "@patrtorg/libero-doloribus-omnis", + "@patrtorg/libero-voluptas-sequi", + "@patrtorg/magnam-aut-adipisci", + "@patrtorg/maiores-quidem-quo", + "@patrtorg/molestias-molestias-ut", + "@patrtorg/nam-eius-unde", + "@patrtorg/pariatur-deleniti-quaerat", + "@patrtorg/porro-labore-eos", + "@patrtorg/quae-earum-eius", + "@patrtorg/quos-quasi-ipsa", + "@patrtorg/sapiente-eos-magnam", + "@patrtorg/sapiente-exercitationem-sit", + "@patrtorg/tenetur-animi-reprehenderit", + "@perseid/store", + "@phosphor/widgets", + "@phun-ky/speccer", + "@polymer/polymer", + "@qooxdoo/framework", + "@quasar/extras", + "@readyplayerme/visage", + "@reduxjs/toolkit", + "@rollup/plugin-commonjs", + "@rollup/plugin-node-resolve", + "@sanity/tsdoc", + "@scalar/api-reference", + "@scalar/fastify-api-reference", + "@serenity-js/protractor", + "@serenity-js/webdriverio", + "@sinonjs/fake-timers", + "@storybook/addon-docs", + "@subwallet/react-ui", + "@supernovaio/sdk", + "@supernovaio/sdk-exporters", + "@supernovaio/supernova-sdk", + "@sveltejs/eslint-config", + "@sveltejs/kit", + "@sveltejs/vite-plugin-svelte", + "@svgr/webpack", + "@swc/core", + "@swenkerorg/maiores-voluptatibus-nemo", + "@swenkerorg/modi-dolorum-provident", + "@swenkerorg/nulla-voluptates-voluptates", + "@swisspost/design-system-styles", + "@symbiotejs/symbiote", + "@synion/md-docs", + "@taktikorg/aut-distinctio-repellat", + "@taktikorg/consectetur-quo-quos", + "@taktikorg/corporis-nihil-odit", + "@taktikorg/deleniti-qui-dolorem", + "@taktikorg/dolor-ratione-quibusdam", + "@taktikorg/harum-reprehenderit-perferendis", + "@taktikorg/illum-accusamus-possimus", + "@taktikorg/ipsa-totam-aperiam", + "@taktikorg/iste-ex-tempore", + "@taktikorg/itaque-nam-eos", + "@taktikorg/itaque-tempore-exercitationem", + "@taktikorg/maiores-dolores-aut", + "@taktikorg/molestias-fuga-possimus", + "@taktikorg/nam-esse-animi", + "@taktikorg/necessitatibus-repudiandae-officia", + "@taktikorg/nisi-reprehenderit-amet", + "@taktikorg/placeat-voluptates-dolorum", + "@taktikorg/praesentium-dolorum-quis", + "@taktikorg/praesentium-neque-ipsam", + "@taktikorg/quo-reiciendis-quibusdam", + "@taktikorg/recusandae-ratione-veniam", + "@taktikorg/similique-natus-officia", + "@taktikorg/suscipit-modi-ratione", + "@taktikorg/tempore-veniam-in", + "@taktikorg/unde-animi-omnis", + "@taktikorg/velit-nobis-blanditiis", + "@taktikorg/voluptatem-pariatur-tenetur", + "@tanem/svg-injector", + "@tanstack/react-query", + "@tanstack/svelte-query", + "@teamhanko/hanko-frontend-sdk", + "@testing-library/cypress", + "@testing-library/dom", + "@testing-library/jest-dom", + "@testing-library/jest-native", + "@testing-library/react", + "@testing-library/user-event", + "@tinyhttp/app", + "@tinyhttp/cookie", + "@tinyhttp/cookie-signature", + "@tinyhttp/cors", + "@tinyhttp/etag", + "@tinyhttp/forwarded", + "@tinyhttp/proxy-addr", + "@tinyhttp/req", + "@tinyhttp/res", + "@tinyhttp/router", + "@tinyhttp/send", + "@tinyhttp/type-is", + "@tinyhttp/url", + "@tsparticles/engine", + "@twurple/ebs-helper", + "@types/estree", + "@typescript-eslint/eslint-plugin", + "@typescript-eslint/parser", + "@typescript-eslint/utils", + "@ucloud-fe/react-components", + "@udecode/plate-core", + "@uiw/react-button", + "@uiw/react-icon", + "@uiw/react-input", + "@uiw/react-overlay-trigger", + "@uiw/utils", + "@unleash/proxy", + "@uploadcare/file-uploader", + "@vitejs/plugin-legacy", + "@vitejs/plugin-react", + "@vue/eslint-config-typescript", + "@wesleytodd/openapi", + "@wuxh/dumi", + "@zitterorg/adipisci-quae-eius", + "@zitterorg/aspernatur-pariatur-occaecati", + "@zitterorg/at-esse-odit", + "@zitterorg/cum-ipsum-beatae", + "@zitterorg/doloremque-ut-omnis", + "@zitterorg/est-sunt-quos", + "@zitterorg/eum-veritatis-placeat", + "@zitterorg/fluffy-waddle", + "@zitterorg/glowing-barnacle", + "@zitterorg/illum-perferendis-consectetur", + "@zitterorg/itaque-nisi-veritatis", + "@zitterorg/probable-octo", + "@zitterorg/upgraded-fishstick", + "@zkportal/aleo-oracle-sdk", + "abort-controller", + "accepts", + "acl", + "acorn", + "acorn-walk", + "action-cli", + "adm-zip", + "after", + "agenda", + "aid-guard1", + "airtap", + "ajv", + "ajv-formats", + "although-line-wall-corn", + "amqp", + "amqplib", + "analsorhost-simple-bs", + "angular", + "angular-animate", + "angular-cli", + "angular-material", + "ansi-colors", + "ansi-escapes", + "ansi-regex", + "ansi-styles", + "ansis", + "ant-design-vue", + "antd", + "antfu", + "anyway-south-boy-pilot", + "api-console", + "apidoc", + "apidoc-markdown", + "apn", + "apollo-cache-inmemory", + "apollo-client", + "apollo-link", + "apollo-link-http", + "app-root-path", + "appium-android-driver", + "apple-transportation-web3-locate", + "applicationinsights", + "appsync-client-node", + "archiver", + "arg", + "argparse", + "arrangement-tell-arrange", + "array.prototype.flatmap", + "arrify", + "assert", + "assert-plus", + "assume", + "async", + "async-listen", + "async-retry", + "async-validator", + "atob", + "aud", + "auto-changelog", + "auto-install", + "autoprefixer", + "ava", + "awesome-typescript-loader", + "aws-sdk", + "axe-core", + "axios", + "azure-storage", + "babel", + "babel-cli", + "babel-core", + "babel-eslint", + "babel-generator", + "babel-helper-fixtures", + "babel-helper-plugin-test-runner", + "babel-helper-vue-jsx-merge-props", + "babel-jest", + "babel-loader", + "babel-plugin-add-module-exports", + "babel-plugin-dynamic-import-node", + "babel-plugin-external-helpers", + "babel-plugin-import", + "babel-plugin-istanbul", + "babel-plugin-lodash", + "babel-plugin-module-resolver", + "babel-plugin-named-asset-import", + "babel-plugin-syntax-dynamic-import", + "babel-plugin-syntax-jsx", + "babel-plugin-transform-async-to-generator", + "babel-plugin-transform-class-properties", + "babel-plugin-transform-decorators-legacy", + "babel-plugin-transform-es2015-block-scoping", + "babel-plugin-transform-es2015-modules-commonjs", + "babel-plugin-transform-es2015-template-literals", + "babel-plugin-transform-object-rest-spread", + "babel-plugin-transform-react-jsx", + "babel-plugin-transform-react-remove-prop-types", + "babel-plugin-transform-regenerator", + "babel-plugin-transform-runtime", + "babel-polyfill", + "babel-preset-airbnb", + "babel-preset-env", + "babel-preset-es2015", + "babel-preset-react", + "babel-preset-react-app", + "babel-preset-stage-0", + "babel-preset-stage-1", + "babel-preset-stage-2", + "babel-preset-stage-3", + "babel-register", + "babel-runtime", + "babel-template", + "babel-traverse", + "babel-types", + "babelify", + "babylon", + "backbone", + "baqend", + "bark-needs-visit4", + "base-64", + "base-individual-comfortable-crop", + "base64-js", + "basic-auth", + "batuta", + "bcrypt", + "bcrypt-nodejs", + "bcryptjs", + "bearcat", + "beautify-benchmark", + "beauty-foot-compass5", + "beefy", + "believed-usually-greater-passage", + "benchmark", + "best-lips-shoulder", + "best-valley2", + "between-cry-additional", + "beyond", + "bfj", + "bignumber.js", + "bindings", + "bip39", + "bizcharts", + "bl", + "blanket", + "blessed", + "blessed-contrib", + "blockchain-am5", + "blockchain-baby", + "blockchain-back1", + "blockchain-closely", + "blockchain-directly", + "blockchain-egg", + "blockchain-happily", + "blockchain-language", + "blockchain-own8", + "blockchain-record", + "blockchain-scientist", + "blocked", + "bluebird", + "bn.js", + "body-parser", + "bookshelf", + "boom", + "bootstrap", + "bootstrap-sass", + "bower", + "boxen", + "brain", + "branch-body-web3-feel", + "branch-camera-web3-organization", + "brfs", + "broccoli-funnel", + "broccoli-merge-trees", + "broccoli-test-helper", + "brought-tried-whether8", + "browser-sync", + "browserify", + "browserify-shim", + "browserslist", + "bs58", + "bson", + "btoa", + "buble", + "buffer", + "buffer-equal", + "bufferutil", + "built-who-entire", + "builtin-modules", + "bulma", + "bump-cli", + "bundle-collapser", + "bunyan", + "busboy", + "bytebuffer", + "bytes", + "c8", + "cac", + "cache-manager", + "call-bind", + "camelcase", + "caniuse", + "caniuse-lite", + "canvas", + "careful-faster-dirty-matter", + "case-sensitive-paths-webpack-plugin", + "casperjs", + "caught-brain-service0", + "chai", + "chai-as-promised", + "chai-passport-strategy", + "chai-subset", + "chalk", + "chance", + "chance-able-necessary-bell", + "change-case", + "changelogen", + "chart.js", + "cheerio", + "chicken-fell-spread", + "child_process", + "child-process-promise", + "choerodon-ui", + "chokidar", + "ci-info", + "ckeditor5", + "classnames", + "clean-css", + "clean-webpack-plugin", + "clear", + "clear-module", + "cli", + "cli-boxes", + "cli-color", + "cli-cursor", + "cli-spinner", + "cli-spinners", + "cli-table", + "cli-table2", + "cli-table3", + "cli-truncate", + "cli-ux", + "clipanion", + "clipboard", + "clipboardy", + "cliui", + "clone", + "clsx", + "clui", + "co", + "co-prompt", + "code", + "codecov", + "codemirror", + "coffee-script", + "coffeescript", + "color", + "colorette", + "colors", + "columnify", + "command-exists", + "command-line-args", + "command-line-usage", + "commander", + "commitizen", + "commitlint", + "common-tags", + "component-emitter", + "compression", + "concat-stream", + "concurrently", + "config", + "configstore", + "connect", + "connect-flash", + "connect-history-api-fallback", + "connect-mongo", + "connect-redis", + "consola", + "consolidate", + "content-disposition", + "content-type", + "contenthook", + "conventional-changelog", + "conventional-changelog-cli", + "conventional-changelog-conventionalcommits", + "convert-source-map", + "cookie", + "cookie-parser", + "cookie-session", + "cookie-signature", + "copy-to-clipboard", + "copy-webpack-plugin", + "copyfiles", + "corcojs-qrcode", + "corcojs-qrcode-logo", + "cordova", + "core-js", + "cors", + "cosmiconfig", + "coveralls", + "cpy-cli", + "crawler", + "crc", + "create-hash", + "create-react-class", + "critical", + "cron", + "croner", + "cronnor", + "cropperjs", + "cross-env", + "cross-fetch", + "cross-spawn", + "crypto", + "crypto-browserify", + "crypto-js", + "cson-parser", + "cspell", + "css", + "css-declaration-sorter", + "css-functions-list", + "css-loader", + "css-minimizer-webpack-plugin", + "css-select", + "css-tree", + "cssdb", + "cssesc", + "cssnano", + "cssstyle", + "csstype", + "csurf", + "csv", + "csv-generate", + "csv-parse", + "csv-stringify", + "csvtojson", + "cucumber", + "cuid", + "cypress", + "cz-conventional-changelog", + "d3", + "d3-array", + "d3-scale", + "d3-selection", + "d3-shape", + "dable-effect", + "daisyui", + "dance-you-thou", + "dargs", + "datafire", + "date-fns", + "dateformat", + "dayjs", + "deasync", + "debounce", + "debug", + "decamelize", + "decompress", + "dedent", + "dedupe", + "deep-assign", + "deep-consist-ability3", + "deep-diff", + "deep-eql", + "deep-equal", + "deep-extend", + "deepmerge", + "del", + "del-cli", + "delay", + "depcheck", + "depd", + "dependency-check", + "depth-clay-tax7", + "detect-indent", + "detect-port", + "did-enter-lay", + "diff", + "diff2html", + "difference-mile-pocket5", + "directed-graph-typed", + "dirty-chai", + "discord-backend-manager", + "discord.js", + "dist", + "distance-its-clear-rate", + "dmd", + "dmd-grunt-jsdoc2md", + "dnd-multi-backend", + "dnode", + "doc-detective", + "doc-detective-core", + "docco", + "docgen", + "dockerode", + "docpad", + "docschema", + "docsify-tabs", + "doctoc", + "documentation", + "documentdb", + "docusaurus", + "docusaurus-lunr-search", + "dom-helpers", + "dom-serializer", + "dom-to-image-more", + "dompurify", + "dot", + "dotenv", + "dotenv-expand", + "download", + "download-git-repo", + "doxdox", + "doxdox-cli", + "doxdox-core", + "doxdox-parser-dox", + "doxdox-parser-jsdoc", + "doxdox-renderer-bootstrap", + "doxdox-renderer-json", + "doxdox-renderer-markdown", + "draft-js", + "dropzone", + "dtslint", + "dubnium", + "dumi", + "dumi-cm", + "duplexer", + "dw-neit-antd", + "each", + "echarts", + "eclint", + "ejs", + "elasticsearch", + "electricity-death-web3-story", + "electron", + "electron-builder", + "electron-packager", + "electron-prebuilt", + "electron-rebuilder", + "element-resize-detector", + "element-ui", + "eleventy", + "elliptic", + "email-templates", + "emailjs", + "ember-cli", + "ember-cli-babel", + "ember-cli-htmlbars", + "emmet", + "emotion", + "encodeurl", + "end-of-stream", + "enhanced-resolve", + "enquirer", + "ent", + "enumtype", + "envify", + "envinfo", + "enzyme", + "enzyme-adapter-react-16", + "enzyme-adapter-utils", + "enzyme-shallow-equal", + "errorhandler", + "es-check", + "es-value-fixtures", + "es5-ext", + "es5-shim", + "es6-error", + "es6-promise", + "es6-promisify", + "es6-shim", + "esbuild", + "escape-html", + "escape-string-regexp", + "escodegen", + "eslint", + "eslint-config-airbnb", + "eslint-config-airbnb-base", + "eslint-config-airbnb-typescript", + "eslint-config-google", + "eslint-config-gulp", + "eslint-config-oclif", + "eslint-config-oclif-typescript", + "eslint-config-prettier", + "eslint-config-react-app", + "eslint-config-semistandard", + "eslint-config-standard", + "eslint-config-unjs", + "eslint-config-xo", + "eslint-config-xo-lass", + "eslint-doc-generator", + "eslint-import-resolver-typescript", + "eslint-loader", + "eslint-plugin-ava", + "eslint-plugin-babel", + "eslint-plugin-compat", + "eslint-plugin-es5", + "eslint-plugin-eslint-comments", + "eslint-plugin-eslint-plugin", + "eslint-plugin-flowtype", + "eslint-plugin-html", + "eslint-plugin-import", + "eslint-plugin-jest", + "eslint-plugin-jsdoc", + "eslint-plugin-jsonc", + "eslint-plugin-jsx-a11y", + "eslint-plugin-markdown", + "eslint-plugin-mocha", + "eslint-plugin-n", + "eslint-plugin-node", + "eslint-plugin-prettier", + "eslint-plugin-promise", + "eslint-plugin-react", + "eslint-plugin-react-hooks", + "eslint-plugin-regexp", + "eslint-plugin-security", + "eslint-plugin-sonarjs", + "eslint-plugin-standard", + "eslint-plugin-svelte", + "eslint-plugin-testing-library", + "eslint-plugin-tsdoc", + "eslint-plugin-unicorn", + "eslint-plugin-vitest", + "eslint-plugin-vue", + "eslint-remote-tester", + "eslint-scope", + "eslint-visitor-keys", + "eslintrc", + "esm", + "espree", + "esprima", + "estraverse", + "estree-walker", + "etag", + "ethereumjs-tx", + "ethereumjs-util", + "evalmd", + "event-stream", + "eventemitter2", + "eventemitter3", + "events", + "excellent-difficult-good", + "execa", + "exit", + "expect", + "expect-type", + "expect.js", + "express", + "express-adexe", + "express-autodoc", + "express-generator", + "express-handlebars", + "express-jwt", + "express-session", + "express-tools", + "express-typed-rpc", + "express-validator", + "express-zod-api", + "extend", + "extend-shallow", + "extract-text-webpack-plugin", + "extract-zip", + "facing-cook", + "fair-tower-web3-store", + "faker", + "fancy-log", + "fast-check", + "fast-csv", + "fast-deep-equal", + "fast-glob", + "fast-plist", + "fast-xml-parser", + "fastclick", + "fastify", + "father", + "faucet", + "fbjs", + "fe-pilot", + "feature-rising-small7", + "femo", + "fetch-mock", + "fibers", + "figlet", + "figures", + "file-loader", + "file-saver", + "file-type", + "filesize", + "finalhandler", + "find-cache-dir", + "find-up", + "findup-sync", + "firan-logging", + "firebase", + "firebase-admin", + "firebase-tools", + "fixpack", + "fixturify", + "flat", + "flatpak-bundler", + "flatpickr", + "flightplan", + "flow-bin", + "flowbite", + "fluent-ffmpeg", + "flux", + "follow-redirects", + "font-awesome", + "for-each", + "forever", + "fork-ts-checker-webpack-plugin", + "fork-ts-checker-webpack-plugin-alt", + "form-data", + "formidable", + "formik", + "fresh", + "fresh-dangerous", + "friendly-errors-webpack-plugin", + "front-matter", + "fs", + "fs-extra", + "fs-jetpack", + "fs-promise", + "fsevents", + "fstream", + "ftp", + "functions-have-names", + "fur-race-web3-pale", + "fuse.js", + "futen", + "fuzzy", + "gaze", + "gc-signals", + "generator-angular", + "generator-gulp-angular", + "generator-nitro", + "generic-pool", + "gensequence", + "gentle-party-other", + "geolib", + "get-package-type", + "get-port", + "get-stdin", + "get-stream", + "get-tsconfig", + "getmac", + "gh-pages", + "ghooks", + "github", + "github-buttons", + "glob", + "glob-parent", + "global", + "globals", + "globby", + "gm", + "gmll", + "google-spreadsheet", + "googleapis", + "got", + "government-letter-web3-till", + "govuk-frontend", + "graceful-fs", + "gradually-current-chief", + "graph-these", + "graphql", + "graphql-tag", + "graphql-tools", + "gray-matter", + "grpc", + "grunt", + "grunt-angular-templates", + "grunt-auto-release", + "grunt-browserify", + "grunt-bump", + "grunt-cli", + "grunt-concurrent", + "grunt-contrib-clean", + "grunt-contrib-compass", + "grunt-contrib-concat", + "grunt-contrib-connect", + "grunt-contrib-copy", + "grunt-contrib-csslint", + "grunt-contrib-cssmin", + "grunt-contrib-htmlmin", + "grunt-contrib-imagemin", + "grunt-contrib-internal", + "grunt-contrib-jshint", + "grunt-contrib-less", + "grunt-contrib-nodeunit", + "grunt-contrib-sass", + "grunt-contrib-uglify", + "grunt-contrib-watch", + "grunt-conventional-changelog", + "grunt-conventional-github-releaser", + "grunt-eslint", + "grunt-jscs", + "grunt-jsdoc", + "grunt-karma", + "grunt-mocha-test", + "grunt-newer", + "grunt-notify", + "grunt-npm", + "grunt-sass", + "grunt-saucelabs", + "grunt-shell", + "grunt-simple-mocha", + "grunt-spritesmith", + "grunt-usemin", + "gts", + "guarapi", + "gulp", + "gulp-angular-templatecache", + "gulp-atom-electron", + "gulp-autoprefixer", + "gulp-awspublish", + "gulp-azure-storage", + "gulp-babel", + "gulp-bom", + "gulp-bower", + "gulp-browserify", + "gulp-buffer", + "gulp-bump", + "gulp-cache", + "gulp-cached", + "gulp-changed", + "gulp-clean", + "gulp-clean-css", + "gulp-coffee", + "gulp-compass", + "gulp-concat", + "gulp-concat-css", + "gulp-conflict", + "gulp-connect", + "gulp-copy", + "gulp-csscomb", + "gulp-csslint", + "gulp-cssnano", + "gulp-csso", + "gulp-data", + "gulp-eslint", + "gulp-file-include", + "gulp-filter", + "gulp-flatmap", + "gulp-flatten", + "gulp-format-md", + "gulp-ftp", + "gulp-gh-pages", + "gulp-git", + "gulp-gzip", + "gulp-handlebars", + "gulp-header", + "gulp-html-replace", + "gulp-htmlmin", + "gulp-iconfont", + "gulp-if", + "gulp-ignore", + "gulp-image-resize", + "gulp-imagemin", + "gulp-include", + "gulp-inject", + "gulp-inline-css", + "gulp-install", + "gulp-istanbul", + "gulp-jade", + "gulp-jasmine", + "gulp-jscs", + "gulp-jshint", + "gulp-json-editor", + "gulp-less", + "gulp-livereload", + "gulp-load-plugins", + "gulp-minify-css", + "gulp-minify-html", + "gulp-mocha", + "gulp-newer", + "gulp-ng-annotate", + "gulp-nodemon", + "gulp-notify", + "gulp-plugin-extras", + "gulp-plumber", + "gulp-postcss", + "gulp-preprocess", + "gulp-prompt", + "gulp-react", + "gulp-remote-src", + "gulp-rename", + "gulp-replace", + "gulp-rev", + "gulp-rev-replace", + "gulp-ruby-sass", + "gulp-sass", + "gulp-sftp", + "gulp-shell", + "gulp-size", + "gulp-sourcemaps", + "gulp-strip-debug", + "gulp-stylus", + "gulp-svg-sprite", + "gulp-svgmin", + "gulp-svgstore", + "gulp-template", + "gulp-tsb", + "gulp-tslint", + "gulp-typescript", + "gulp-uglify", + "gulp-uncss", + "gulp-usemin", + "gulp-useref", + "gulp-util", + "gulp-vinyl-zip", + "gulp-watch", + "gulp-webpack", + "gulp-webserver", + "gulp-zip", + "gulp.spritesmith", + "gzip-size", + "hallmark", + "hammerjs", + "handlebars", + "hapi", + "happy-dom", + "happy-meant", + "hard-cool-rhythm-continued", + "has-flag", + "has-parts-ice-fact", + "has-symbols", + "hash-sum", + "hasown", + "hast-util-raw", + "hast-util-sanitize", + "hast-util-select", + "hast-util-to-estree", + "hast-util-to-html", + "hast-util-to-jsx-runtime", + "hast-util-to-string", + "hast-util-to-text", + "hastscript", + "hay-against-any-hurry", + "hbs", + "he", + "heapdump", + "helmet", + "heroicons", + "hexlet-pairs", + "hexo", + "highland", + "highlight.js", + "hiredis", + "history", + "history-brass-sound", + "hit-running-special8", + "hoek", + "hogan.js", + "hoist-non-react-statics", + "homebridge", + "hono", + "hope-slight-walk1", + "hosted-git-info", + "how-to-npm", + "html-dom-parser", + "html-element-attributes", + "html-encoding-sniffer", + "html-entities", + "html-escaper", + "html-loader", + "html-minifier", + "html-minifier-terser", + "html-pdf", + "html-react-parser", + "html-tags", + "html-to-image", + "html-to-text", + "html-validate", + "html-webpack-plugin", + "htmlnano", + "htmlparser2", + "http", + "http-errors", + "http-proxy", + "http-proxy-agent", + "http-proxy-middleware", + "http-server", + "http-status", + "http-status-codes", + "https", + "https-proxy-agent", + "husky", + "hyperquest", + "hyphenate-style-name", + "i", + "i18n", + "i18next", + "i18next-gridly-backend", + "iconv-lite", + "identity-obj-proxy", + "ignore", + "image-size", + "imagemagick", + "imagemin", + "imagemin-pngquant", + "imap", + "immer", + "immutability-helper", + "immutable", + "import-fresh", + "import-local", + "impress", + "in-publish", + "indent-string", + "inert", + "inferno", + "inflection", + "inherits", + "ini", + "iniparser", + "ink", + "inline-style-parser", + "innosetup-compiler", + "inquirer", + "inquirer-autocomplete-prompt", + "inside-throw", + "instagram-node", + "install", + "interpret", + "intl", + "intl-tel-input", + "invariant", + "inversify", + "ionic", + "ionicons", + "ioredis", + "ip", + "irc", + "is", + "is-ci", + "is-glob", + "is-installed-globally", + "is-plain-obj", + "is-plain-object", + "is-potential-custom-element-name", + "is-promise", + "is-stream", + "is-url", + "is-wsl", + "isarray", + "isobject", + "isomorphic-fetch", + "istanbul", + "itwcw-package-analytics", + "iview", + "jackspeak", + "jade", + "jake", + "jarallax", + "jasmine", + "jasmine-core", + "jasmine-node", + "jest", + "jest-canvas-mock", + "jest-cli", + "jest-diff", + "jest-environment-jsdom", + "jest-environment-jsdom-fourteen", + "jest-environment-node", + "jest-extended", + "jest-html-reporters", + "jest-junit", + "jest-pnp-resolver", + "jest-resolve", + "jest-util", + "jest-watch-typeahead", + "jest-worker", + "jimp", + "jiti", + "jodit", + "jodit-react", + "johnny-five", + "joi", + "jotai", + "jquery", + "jquery-ui", + "js-base64", + "js-beautify", + "js-cookie", + "js-yaml", + "jsarch", + "jscpd", + "jscs", + "jsdoc", + "jsdoc-api", + "jsdoc-to-markdown", + "jsdom", + "jsdom-no-contextify", + "jsesc", + "jshint", + "jshint-stylish", + "json-2-csv", + "json-loader", + "json-schema", + "json-server", + "json-stable-stringify", + "json-stringify-safe", + "json5", + "jsonc-parser", + "jsonfile", + "jsonschema", + "JSONStream", + "jsonwebtoken", + "jspm", + "jstates", + "jszip", + "jwt-decode", + "jwt-simple", + "karma", + "karma-browserify", + "karma-browserstack-launcher", + "karma-chai", + "karma-chrome-launcher", + "karma-coverage", + "karma-detect-browsers", + "karma-edge-launcher", + "karma-firefox-launcher", + "karma-ie-launcher", + "karma-jasmine", + "karma-mocha", + "karma-mocha-reporter", + "karma-phantomjs-launcher", + "karma-qunit", + "karma-rollup-preprocessor", + "karma-safari-launcher", + "karma-sauce-launcher", + "karma-sinon", + "karma-sourcemap-loader", + "karma-spec-reporter", + "karma-webpack", + "keycode", + "keypress", + "keyv", + "kleur", + "knex", + "knip", + "known-css-properties", + "knox", + "koa", + "koa-body", + "koa-bodyparser", + "koa-compose", + "koa-logger", + "koa-mount", + "koa-router", + "koa-static", + "kue", + "lab", + "label-lungs-court4", + "language-perfectly-blow-series", + "late-dress-mail5", + "latest-version", + "lazy.js", + "lead-alike-web3-applied", + "leaflet", + "left-pad", + "leftpad", + "lerna", + "less", + "less-loader", + "level", + "leveldown", + "levelup", + "leven", + "libnpmdiff", + "libnpmexec", + "libnpmfund", + "libphonenumber-js", + "liftoff", + "lilconfig", + "linkifyjs", + "lint-staged", + "listr", + "listr2", + "lit-element", + "lite-server", + "live-server", + "livereload", + "load-grunt-config", + "load-grunt-tasks", + "loader-utils", + "local-web-server", + "localforage", + "localtunnel", + "lockfile-lint", + "lodash", + "lodash-es", + "lodash.assign", + "lodash.camelcase", + "lodash.clonedeep", + "lodash.debounce", + "lodash.defaults", + "lodash.flatten", + "lodash.foreach", + "lodash.get", + "lodash.isempty", + "lodash.isequal", + "lodash.isfunction", + "lodash.isobject", + "lodash.isplainobject", + "lodash.isstring", + "lodash.map", + "lodash.memoize", + "lodash.merge", + "lodash.omit", + "lodash.pick", + "lodash.set", + "lodash.template", + "lodash.throttle", + "lodash.uniq", + "log", + "log-symbols", + "log-update", + "log4js", + "loglevel", + "long", + "loopback", + "loose-envify", + "lowdb", + "lru-cache", + "lucide", + "luck-rubber-do", + "lwip", + "lws", + "madwizard", + "magic-string", + "magmastream", + "main-bower-files", + "make-dir", + "make-node", + "mammoth", + "manifest", + "mantine-contextmenu", + "many-favorite6", + "map-stream", + "mapboxgl-legend", + "markdown", + "markdown-it", + "markdown-it-anchor", + "markdown-it-container", + "markdown-it-emoji", + "markdown-pdf", + "markdown-table", + "markdown-to-jsx", + "markdown-toc", + "markdownlint", + "markdownlint-cli", + "marked", + "marky-markdown", + "matcha", + "material-ui", + "mathjs", + "matter-view-web3-fence", + "md5", + "md5-file", + "mdast-util-from-markdown", + "mdast-util-to-hast", + "mdn-data", + "mdxts", + "memcached", + "memfs", + "memoize-one", + "memory-cache", + "memory-fs", + "memorystream", + "memwatch", + "mental-oxygen-dozen", + "meow", + "merge", + "merge-stream", + "metalsmith", + "meteor", + "method-override", + "methods", + "microbundle", + "micromark", + "micromatch", + "mime", + "mime-types", + "min-heap-typed", + "mini-css-extract-plugin", + "minify", + "minimatch", + "minimist", + "mirror-jet-printed-supper", + "missing-sport-living", + "mkcert", + "mkdirp", + "mlly", + "mobx", + "mobx-react", + "mocha", + "mocha-headless-chrome", + "mocha-junit-reporter", + "mocha-lcov-reporter", + "mock-fs", + "mock-property", + "mock-require", + "mock-stdin", + "mockdate", + "mockery", + "mockjs", + "moleculer", + "moment", + "moment-timezone", + "monaco-yaml", + "monads-io", + "mongo-express", + "mongodb", + "mongoose", + "monitor", + "monitor-dashboard", + "monk", + "morgan", + "motor-positive-spirit", + "move-wolf-throughout", + "movie-obtain-tail-prepare", + "mqtt", + "ms", + "mssql", + "msw", + "mud-slowly-five3", + "multer", + "multimatch", + "multiparty", + "multiple-cucumber-html-reporter", + "mustache", + "muuri", + "mysql", + "mysql2", + "mz", + "n", + "nails-wild-interest-garden", + "nan", + "nano", + "nano-css", + "nanoid", + "native-keymap", + "nativefier", + "nativescript", + "natural", + "nconf", + "ncp", + "near-social-bridge", + "nedb", + "needle", + "nest-commander", + "newman", + "newrelic", + "next-auth", + "nextjs", + "ng-mocks", + "ng-zorro-antd", + "ngrok", + "nib", + "nightmare", + "nightwatch", + "nine-yes-merely6", + "nise", + "nock", + "node-addon-api", + "node-cache", + "node-containerpattern", + "node-dev", + "node-dir", + "node-emoji", + "node-fetch", + "node-forge", + "node-gcm", + "node-geocoder", + "node-gyp", + "node-html-parser", + "node-inspector", + "node-mocks-http", + "node-notifier", + "node-oauth2-server", + "node-powertools", + "node-pre-gyp", + "node-pty", + "node-red", + "node-sass", + "node-schedule", + "node-static", + "node-uuid", + "node-watch", + "node-windows", + "node-xlsx", + "node.extend", + "nodegit", + "nodemailer", + "nodemon", + "nodeunit", + "nodewebkit", + "nolangjs", + "nomnom", + "nopt", + "normalize-path", + "normalize-url", + "normalize-wheel", + "normalize.css", + "np", + "npm", + "npm-check", + "npm-check-updates", + "npm-package-arg", + "npm-package-json-lint", + "npm-packlist", + "npm-registry-fetch", + "npm-run-all", + "npm-run-all2", + "npm-run-path", + "npm-to-yarn", + "npm-windows-upgrade", + "npmcli", + "npmignore", + "npmlog", + "nprogress", + "nsp", + "nuke-cli", + "numeral", + "nunjucks", + "nvm", + "nvmrc", + "nwsapi", + "nx", + "nyc", + "oas", + "oas-normalize", + "oauth", + "object-assign", + "object-hash", + "object-inspect", + "object-keys", + "object-path", + "object.assign", + "object.entries", + "observe-food-motion-hidden", + "on-finished", + "once", + "onchange", + "one-how-hand", + "onoff", + "open", + "open-cli", + "openapi-client-axios", + "openapi2html", + "opencv", + "opener", + "openweather", + "opn", + "optimist", + "optimize-css-assets-webpack-plugin", + "optionator", + "ora", + "orchestrator", + "orm", + "os", + "osenv", + "outdent", + "outline-slowly", + "overlayscrollbars", + "ovsx", + "p-event", + "p-map", + "p-queue", + "p-timeout", + "p23", + "pa11y", + "pacote", + "pageres", + "paintor", + "pako", + "para-cli", + "para-client-js", + "parallelshell", + "parse", + "parse5", + "parseurl", + "passport", + "passport-facebook", + "passport-local", + "passport-oauth", + "passport-oauth2", + "passport-strategy", + "path", + "path-browserify", + "path-exists", + "path-is-absolute", + "path-to-regexp", + "pathe", + "paypal-server-api", + "pdfjs", + "pdfkit", + "performance-now", + "pg", + "phantom", + "phantomjs", + "phantomjs-prebuilt", + "phonegap", + "pi-gpio", + "picocolors", + "picomatch", + "pie-case-nor-great", + "pify", + "pino", + "pinst", + "pitch-somehow-earth-brave", + "pixelmatch", + "pkg-dir", + "pkg-up", + "pkginfo", + "playwright", + "plist", + "plugin-error", + "plur", + "pluralize", + "pm2", + "pngjs", + "pnp-webpack-plugin", + "pnpm", + "pnpx", + "poe-api-manager", + "polished", + "political-plan-careful", + "popper.js", + "portfinder", + "postcss", + "postcss-calc", + "postcss-cli", + "postcss-color-functional-notation", + "postcss-colormin", + "postcss-convert-values", + "postcss-cssnext", + "postcss-custom-media", + "postcss-custom-properties", + "postcss-custom-selectors", + "postcss-discard-comments", + "postcss-discard-duplicates", + "postcss-discard-empty", + "postcss-discard-overridden", + "postcss-flexbugs-fixes", + "postcss-html", + "postcss-image-set-function", + "postcss-import", + "postcss-load-config", + "postcss-loader", + "postcss-merge-longhand", + "postcss-merge-rules", + "postcss-minify-font-values", + "postcss-minify-gradients", + "postcss-minify-params", + "postcss-minify-selectors", + "postcss-modules-local-by-default", + "postcss-nested", + "postcss-nesting", + "postcss-normalize", + "postcss-normalize-charset", + "postcss-normalize-positions", + "postcss-normalize-string", + "postcss-normalize-unicode", + "postcss-normalize-url", + "postcss-normalize-whitespace", + "postcss-ordered-values", + "postcss-prefix-selector", + "postcss-preset-env", + "postcss-reduce-initial", + "postcss-safe-parser", + "postcss-scss", + "postcss-selector-parser", + "postcss-svgo", + "postcss-unique-selectors", + "postcss-value-parser", + "postgrejs", + "posthtml", + "pouchdb", + "power-assert", + "pre-commit", + "preact", + "prepare-package", + "prettier", + "prettier-plugin-jsdoc", + "prettier-plugin-organize-imports", + "prettier-plugin-packagejson", + "prettier-plugin-svelte", + "prettierrc", + "pretty-bytes", + "pretty-error", + "pretty-format", + "pretty-ms", + "pretty-quick", + "prettyjson", + "prisma", + "prismjs", + "private-bower", + "proc-log", + "process", + "progress", + "progress-bar-webpack-plugin", + "promise", + "promise-polyfill", + "promises-aplus-tests", + "promo-server", + "prompt", + "prompts", + "prop-types", + "property-information", + "protobufjs", + "protractor", + "proxy", + "proxyquire", + "publish-please", + "pug", + "pull-stream", + "pump", + "punycode", + "puppeteer", + "purgecss", + "q", + "qr-image", + "qrcode-terminal", + "qs", + "query-string", + "querystring", + "queue", + "queue-typed", + "quill", + "qunit", + "qunit-dom", + "qunitjs", + "raf", + "ramda", + "random-words", + "randombytes", + "randomstring", + "range-parser", + "raven", + "raw-body", + "raw-loader", + "rc", + "rc-slider", + "rc-tooltip", + "rc-util", + "rcw-plugin", + "react", + "react-addons-css-transition-group", + "react-addons-shallow-compare", + "react-apollo", + "react-app-polyfill", + "react-bootstrap", + "react-color", + "react-copy-to-clipboard", + "react-datepicker", + "react-dev-utils", + "react-dnd", + "react-dnd-html5-backend", + "react-docgen", + "react-dom", + "react-dropzone", + "react-error-overlay", + "react-helmet", + "react-hook-form", + "react-hot-loader", + "react-i18next", + "react-icons", + "react-intersection-observer", + "react-intl", + "react-is", + "react-lifecycles-compat", + "react-markdown", + "react-modal", + "react-motion", + "react-native", + "react-native-keychain", + "react-native-vector-icons", + "react-number-format", + "react-onclickoutside", + "react-property", + "react-redux", + "react-refresh", + "react-responsive", + "react-router", + "react-router-dom", + "react-router-redux", + "react-scripts", + "react-select", + "react-slick", + "react-styleguidist", + "react-svg", + "react-tap-event-plugin", + "react-test-renderer", + "react-toastify", + "react-tools", + "react-transition-group", + "react-virtualized", + "reactify", + "reactstrap", + "read", + "read-pkg", + "read-pkg-up", + "readable-stream", + "readline", + "readline-sync", + "recall-shut-say", + "recast", + "recently-building-save", + "rechoir", + "recompose", + "recursive-readdir", + "redis", + "redoc", + "redocusaurus", + "redux", + "redux-actions", + "redux-form", + "redux-logger", + "redux-saga", + "redux-thunk", + "reflect-metadata", + "regenerate", + "regenerator-runtime", + "rehype", + "rehype-autolink-headings", + "rehype-external-links", + "rehype-mdx-code-props", + "rehype-parse", + "rehype-raw", + "rehype-slug", + "rehype-stringify", + "release-it", + "remap-istanbul", + "remark", + "remark-cli", + "remark-gfm", + "remark-html", + "remark-mermaidjs", + "remark-parse", + "remark-preset-github", + "remark-preset-wooorm", + "remark-rehype", + "remarkable", + "replace-ext", + "replace-in-file", + "request", + "request-promise", + "request-promise-native", + "require-all", + "require-dir", + "requireindex", + "requirejs", + "reselect", + "resize-observer-polyfill", + "resolve", + "resolve-from", + "resolve-url-loader", + "rest-chronicle", + "restify", + "restler", + "restore-cursor", + "rethinkdb", + "retry", + "rewire", + "rfdc", + "rimraf", + "robotjs", + "rollup", + "rollup-plugin-babel", + "rollup-plugin-buble", + "rollup-plugin-cleanup", + "rollup-plugin-commonjs", + "rollup-plugin-dts", + "rollup-plugin-json", + "rollup-plugin-license", + "rollup-plugin-node-builtins", + "rollup-plugin-node-globals", + "rollup-plugin-node-resolve", + "rollup-plugin-replace", + "rollup-plugin-sourcemaps", + "rollup-plugin-terser", + "rollup-plugin-typescript", + "rollup-plugin-typescript2", + "rollup-plugin-uglify", + "rollup-plugin-visualizer", + "rollup-pluginutils", + "routes", + "rsnext", + "rsvp", + "rtlcss", + "run-sequence", + "run-series", + "rx", + "rxjs", + "rxjs-compat", + "safe-buffer", + "safe-publish-latest", + "sails", + "salt-type-oldest-faster", + "sand-have-metal6", + "sanitize-filename", + "sanitize-html", + "sass", + "sass-loader", + "sat-local", + "sax", + "scheduler", + "schema-markdown-doc", + "schema-utils", + "science-knowledge-truth", + "seblakhotspicy", + "secp256k1", + "seedrandom", + "selenium-webdriver", + "semantic-release", + "semantic-ui-react", + "semistandard", + "semver", + "send", + "seneca", + "sentiment", + "sequelize", + "serialize-javascript", + "serialport", + "serve", + "serve-favicon", + "serve-index", + "serve-static", + "server-destroy", + "serverless-finch", + "serverless-spy", + "sha1", + "shallowequal", + "sharp", + "shell-quote", + "shelljs", + "shinning-continued-becoming", + "shortid", + "should", + "showdown", + "shx", + "sick-typical-court7", + "signal-exit", + "similar-cheese-loss", + "simple-assi-animation", + "simple-git", + "simple-prompts-web3", + "single-spa", + "sink-mighty-orbit0", + "sink-rod-lamp", + "sinon", + "sinon-chai", + "sinopia", + "sirv", + "size-limit", + "sizeitup", + "skapi-js", + "sky-buy-web3-rock", + "slash", + "slice-ansi", + "slow-deps", + "slow-voice-spell-pass", + "slug", + "slugify", + "small-grow-mix4", + "snake-seven-recall-interior", + "snazzy", + "soap", + "socket.io", + "socket.io-client", + "sockjs-client", + "source-map", + "source-map-js", + "source-map-loader", + "source-map-support", + "space-separated-tokens", + "spectaql", + "speech-section-part-frozen", + "spirit-labor-cheese", + "split", + "split2", + "spring-dust-wall-size", + "sprintf", + "sprintf-js", + "sprity", + "sqlite3", + "ssh2", + "ssri", + "st.db", + "stack-trace", + "standard", + "standard-version", + "star-location", + "start-server-and-test", + "statsd", + "statuses", + "stock-independent-balloon", + "storybook", + "storybook-django", + "straiforos-compodoc", + "strange-lady-riding9", + "stream-assert", + "stream-transform", + "streamii", + "strftime", + "string", + "string-strip-html", + "string-width", + "stringify-entities", + "strip-ansi", + "strip-bom", + "strip-json-comments", + "stripe", + "strongloop", + "style-dictionary", + "style-loader", + "style-to-js", + "style-to-object", + "styled-components", + "styled-jsx", + "stylehacks", + "stylelint", + "stylelint-config-standard", + "stylelint-declaration-strict-value", + "stylelint-order", + "stylelint-scss", + "stylus", + "stylus-loader", + "sugar-policeman-entire", + "sugarss", + "sun-grass-circle0", + "superagent", + "superjson", + "supertest", + "supertest-as-promised", + "supervisor", + "support-vessels-web3-vessels", + "supports-color", + "surrounded-characteristic-or-rain", + "svelte", + "svelte-check", + "svelte-preprocess", + "svg-sprite", + "svgo", + "sw-precache-webpack-plugin", + "swagger-autogen", + "swagger-inline", + "swagger-themes", + "swagger-ui-express", + "swam-darkness-weak", + "swig", + "swiper", + "sync-request", + "systeminformation", + "systemjs", + "tail-iron-became5", + "tailwind", + "tailwind-merge", + "tailwindcss", + "tap", + "tap-spec", + "tapable", + "tape", + "tar", + "tar-fs", + "tar-stream", + "tarant", + "tarant-sync-router-express", + "tdl", + "tdlib-native", + "temp", + "tempy", + "terminal-kit", + "terminal-menu", + "terser", + "terser-webpack-plugin", + "test-cutting", + "test-runner", + "test-snippets", + "testcafe", + "testcontainers", + "testdouble", + "testem", + "text-table", + "three", + "throttle-debounce", + "through", + "through2", + "throw-did-darkness4", + "thunkify", + "tildify", + "time-grunt", + "tinper-bee", + "tiny-lr", + "tinybench", + "tinycolor2", + "tinymce", + "tinypool", + "tinyspy", + "tmp", + "toastify-react-native", + "tocbot", + "toml", + "touch", + "tough-cookie", + "tracer", + "traffic-carry-opinion", + "train-stick-swept7", + "traverse", + "tree-kill", + "tribe-leaving-basket", + "trpc", + "trumpet", + "ts-cache-mongoose", + "ts-japi", + "ts-jest", + "ts-loader", + "ts-migrate-mongoose", + "ts-morph", + "ts-node", + "ts-patch-mongoose", + "ts-pnp", + "ts-rule-engine", + "tsconfig-paths", + "tsd", + "tsd-lite", + "tshy", + "tslib", + "tslint", + "tslint-config-prettier", + "tslint-react", + "tsup", + "tsx", + "turndown", + "tv4", + "tweetnacl", + "twemoji", + "twit", + "twitter", + "type-coverage", + "type-fest", + "type-is", + "typedoc", + "typedoc-material-theme", + "typedoc-plugin-extras", + "typedoc-plugin-markdown", + "typedocs", + "typegen", + "typegoose", + "typeorm", + "typescript", + "typescript-eslint", + "typescript-formatter", + "typescript-plugin-css-modules", + "typings", + "uglify-es", + "uglify-js", + "uglifyjs-webpack-plugin", + "uid-safe", + "uiw", + "uj-apidoc-core", + "ulid", + "ultrahtml", + "unbuild", + "underscore", + "underscore.string", + "undici", + "unified", + "unique-random-array", + "unist-util-visit", + "untildify", + "unusual-rope", + "unzip", + "update-notifier", + "urijs", + "url", + "url-join", + "url-loader", + "url-parse", + "urllib", + "user", + "user-home", + "useragent", + "utf8", + "util", + "utils-merge", + "uuid", + "uvu", + "valid-url", + "validate-commit-msg", + "validate-npm-package-name", + "validator", + "vant", + "vary", + "vasync", + "vercel", + "verror", + "vhost", + "victory-mouth", + "viewerjs", + "vinyl", + "vinyl-buffer", + "vinyl-fs", + "vinyl-source-stream", + "vinyl-sourcemaps-apply", + "virtual-dom", + "vite", + "vite-plugin-api-routes", + "vitepress", + "vitest", + "vorpal", + "vows", + "vsce", + "vscode-debugprotocol", + "vscode-nls-dev", + "vscode-textmate", + "vue", + "vue-class-component", + "vue-eslint-parser", + "vue-hot-reload-api", + "vue-i18n", + "vue-loader", + "vue-property-decorator", + "vue-router", + "vue-style-loader", + "vue-template-compiler", + "vuex", + "walk", + "walk-sync", + "warning", + "watch", + "watchify", + "waterline", + "wd", + "web3", + "web3-be", + "web3-capital", + "web3-compass", + "web3-eve-cli", + "web3-exactly6", + "web3-fruit", + "webpack", + "webpack-bundle-analyzer", + "webpack-cli", + "webpack-dev-middleware", + "webpack-dev-server", + "webpack-hot-middleware", + "webpack-manifest-plugin", + "webpack-merge", + "webpack-node-externals", + "webpack-sources", + "webshot", + "websocket", + "webtorrent", + "webworker-threads", + "weinre", + "whatwg-fetch", + "when", + "which", + "winreg", + "winston", + "winston-daily-rotate-file", + "winston-transport", + "wiredep", + "word-wrap", + "wordwrap", + "workbox-webpack-plugin", + "world-toy-kill", + "wrap-ansi", + "wrench", + "write-file-atomic", + "ws", + "x-ray", + "xhr", + "xlsx", + "xml-js", + "xml2js", + "xml2json", + "xmlbuilder", + "xmldom", + "xmlhttprequest", + "xo", + "xpath", + "xregexp", + "xss", + "xstate", + "xtend", + "xterm", + "yaml", + "yamljs", + "yargs", + "yargs-parser", + "yarn", + "yarnpkg", + "yarnrc", + "yauzl", + "yeoman-environment", + "yeoman-generator", + "yn", + "yo", + "yoctocolors-cjs", + "yonode", + "yosay", + "zmq", + "zod", + "zod-http-schemas", + "zombie", + "zone.js", + "zuul", + "@nx/cypress", + "@nx/eslint-plugin", + "@nx/jest", + "@nx/storybook", + "framer-motion", + "teajusgula", + "@mui/styled-engine", + "jsdoc-parse", + "@commercetools-frontend/constants", + "downshift", + "postcss-focus-visible", + "@augment-vir/common", + "@biomejs/biome", + "@commercetools-frontend/mc-scripts", + "@jsonforms/vanilla-renderers", + "@jsonforms/vue", + "@jsonforms/vue-vanilla", + "hast-util-from-html", + "hot-shots", + "madr", + "native-run", + "rehype-katex", + "supports-hyperlinks", + "swr", + "typed-binary", + "ua-parser-js", + "void-elements", + "@adonisjs/core", + "@aneuhold/be-ts-lib", + "@capacitor/assets", + "@devtea2025/blanditiis-numquam-expedita-neque", + "@devtea2025/doloremque-voluptas-facere-nemo", + "@devtea2025/quisquam-quod-ab-aut", + "@devtea2025/suscipit-assumenda-a-assumenda", + "@devtea2025/voluptatibus-vero-magni-rerum", + "@diahkomalasarinpm/odio-facilis-beatae", + "@diahkomalasarinpm/praesentium-sint-dolorem", + "@enact/core", + "@envelop/core", + "@ionic/cli", + "@jsonforms/angular", + "@jsonforms/examples", + "@npmtea2024/quasi-nisi-doloremque-fugit", + "@ptkhanh94npm/iusto-libero-aperiam", + "@ptkhanh94npm/quis-saepe-velit", + "@renyii/vue-renderless", + "@teamteanpm2024/aperiam-fugit-error", + "@teamteanpm2024/architecto-alias-quod", + "@teamteanpm2024/aut-voluptatum-vero", + "@teamteanpm2024/beatae-aliquid-id", + "@teamteanpm2024/expedita-labore-ipsum", + "@teamteanpm2024/odio-fugiat-in", + "@teamteanpm2024/voluptatibus-reprehenderit-odit", + "@testing-library/react-hooks", + "@zibuthe7j11/deserunt-quasi-impedit", + "anser", + "aws-sdk-client-mock", + "cupertino-pane", + "eruda", + "fasteejs", + "foundation-sites", + "gradient-string", + "grommet", + "html-url-attributes", + "magnific-popup", + "next", + "postcss-opacity-percentage", + "pwa-asset-generator", + "rapidoc", + "react-native-animatable", + "react-native-collapsible", + "react-swipeable-list", + "react-textarea-autosize", + "readme-md", + "recharts", + "riot", + "sortablejs", + "tdesign-mobile-vue", + "uploadcare-widget", + "wait-on", + "weui", + "zustand", + "fontsource", + "nextra", + "synckit", + "tinyglobby", + "tstyche", + "@ibyar/expressions", + "@mantine/carousel", + "@mantine/code-highlight", + "@mantine/dropzone", + "@mantine/nprogress", + "@mantine/spotlight", + "@mantine/store", + "@mantine/tiptap", + "allure-js-commons", + "express-intlayer", + "is-mobile", + "rehype-mermaid", + "@bugsnag/react-native", + "@enact/ui", + "@enact/webos", + "@ionic/angular", + "@npmtuanmap/velit-nobis-nostrum-nam", + "@skylernpm/hic-inventore-dolores", + "@skylernpm/reiciendis-non-corrupti", + "admin-lte", + "backendless", + "smartbanner.js", + "zarm", + "@enact/sandstone", + "perfect-scrollbar", + "react-responsive-select", + "titanium", + "@antora/logger", + "@asyncapi/generator", + "@docusaurus/core", + "@ionic/react", + "@juggle/resize-observer", + "@mui/base", + "@mui/private-theming", + "@mui/utils", + "@nestjsx/crud", + "@nestjsx/crud-typeorm", + "@netlify/framework-info", + "@next/env", + "@pmmmwh/react-refresh-webpack-plugin", + "@pothos/core", + "@storybook/addon-backgrounds", + "@strapi/strapi", + "@svgr/core", + "@svgr/hast-util-to-babel-ast", + "@tinyhttp/encode-url", + "@tinyhttp/logger", + "@tsparticles/interaction-external-push", + "@tsparticles/move-base", + "@tsparticles/shape-emoji", + "@tsparticles/updater-color", + "@tsparticles/updater-opacity", + "@tsparticles/updater-out-modes", + "@uppy/companion", + "@vuepress/core", + "@vuepress/markdown", + "@vuepress/markdown-loader", + "@vuepress/plugin-active-header-links", + "@vuepress/plugin-last-updated", + "@vuepress/plugin-nprogress", + "@vuepress/plugin-register-components", + "@vuepress/plugin-search", + "@vuepress/shared-utils", + "@vuepress/theme-default", + "@walletconnect/browser-utils", + "@walletconnect/iso-crypto", + "@walletconnect/legacy-modal", + "@walletconnect/legacy-provider", + "@walletconnect/socket-transport", + "@wordpress/primitives", + "angular-messages", + "angular-mocks", + "ansi-align", + "blocking-proxy", + "body-scroll-lock", + "broccoli", + "broccoli-builder", + "broccoli-middleware", + "browserstack", + "camelcase-css", + "character-entities", + "character-entities-html4", + "character-entities-legacy", + "character-reference-invalid", + "client-only", + "color-string", + "comma-separated-tokens", + "condense-newlines", + "css-mediaquery", + "css.escape", + "csso", + "dashdash", + "decap-cms-backend-aws-cognito-github-proxy", + "decap-cms-backend-azure", + "decap-cms-backend-bitbucket", + "decap-cms-backend-git-gateway", + "decap-cms-backend-github", + "decap-cms-backend-gitlab", + "decap-cms-backend-proxy", + "decap-cms-backend-test", + "device-detector-js", + "docsify", + "docsify-cli", + "dom7", + "enzyme-to-json", + "epub2", + "escape-goat", + "esdoc", + "eslint-rule-documentation", + "globals-docs", + "hast-util-is-element", + "hast-util-parse-selector", + "hast-util-to-parse5", + "hast-util-whitespace", + "html-parse-stringify", + "html-void-elements", + "http-graceful-shutdown", + "icss-utils", + "inferno-create-element", + "inferno-hydrate", + "inferno-vnode-flags", + "infima", + "ink-docstrap", + "jasminewd2", + "jest-preset-angular", + "jest-preview", + "logging-helpers", + "lws-index", + "micromark-extension-gfm-tagfilter", + "micromark-util-encode", + "micromark-util-html-tag-name", + "mobile-detect", + "nth-check", + "parse-entities", + "postcss-js", + "postcss-modules-values", + "query-selector-shadow-dom", + "rc-hammerjs", + "rdme", + "react-colorful", + "react-device-detect", + "react-easy-router", + "react-fast-compare", + "react-native-file-viewer", + "react-native-lightbox-v2", + "react-native-progress", + "react-native-svg-charts", + "react-native-youtube-iframe", + "react-popper", + "react-responsive-modal", + "react-style-singleton", + "text-hex", + "tsparticles", + "tua-body-scroll-lock", + "typedoc-default-themes", + "use-callback-ref", + "use-sidecar", + "vconsole", + "vitefu", + "vue-perfect-scrollbar", + "vuepress", + "wait-for-expect", + "webdriver-js-extender", + "webdriver-manager", + "widest-line", + "worktop", + "@antora/playbook-builder", + "@applitools/utils", + "@dataui/crud", + "@mui/types", + "@tsparticles/shape-circle", + "@tsparticles/updater-life", + "@tsparticles/updater-rotate", + "drag-drop", + "plasmo", + "react-h5-audio-player", + "@arethetypeswrong/cli", + "arethetypeswrong", + "astro", + "astrojs", + "cookiecutter", + "degit", + "tseslint", + "@web/test-runner-mocha", + "colord", + "@expressots/core", + "@tsparticles/interaction-particles-links", + "@astrojs/starlight", + "@expressots/adapter-express", + "@expressots/shared", + "@tsparticles/interaction-external-bounce", + "@tsparticles/interaction-external-remove", + "@tsparticles/move-parallax", + "@tsparticles/shape-polygon", + "@tsparticles/shape-square", + "pinia", + "@floating-ui/react", + "@tsparticles/shape-image", + "astro-expressive-code", + "netlify-cms-backend-test", + "rehype-expressive-code", + "@augment-vir/assert", + "cssfilter", + "@amaui/icons-material-rounded-react", + "@appium/types", + "@dataui/crud-typeorm", + "@tsparticles/basic", + "@tsparticles/updater-size", + "@onesy/icons-material-rounded-react", + "@tsparticles/interaction-external-grab", + "@tsparticles/interaction-particles-collisions", + "react-native-macos", + "@tsparticles/interaction-external-repulse", + "@tsparticles/slim", + "@ionic/react-router", + "@immobiliarelabs/backstage-plugin-gitlab-backend", + "@tsparticles/shape-star", + "kuler", + "@scalar/nextjs-api-reference", + "netlify-cms-backend-bitbucket", + "vendors", + "@busy-hour/blaze", + "@busy-hour/blaze-types", + "payload", + "attw", + "@egjs/flicking", + "body-scroll-lock-upgrade", + "@casl/ability", + "neostandard", + "@appium/schema", + "@modern-js/utils", + "@types/xast", + "css-what", + "grunt-svgmin", + "@modern-js/node-bundle-require", + "@axe-core/playwright", + "tsdown", + "careful-downloader", + "sonner", + "@ckeditor/ckeditor5-collaboration-core", + "embla-carousel-reactive-utils", + "react-smooth", + "globrex", + "@ckeditor/ckeditor5-real-time-collaboration", + "@inquirer/type", + "grammy", + "@tsparticles/plugin-hex-color", + "@tsparticles/plugin-hsl-color", + "@udecode/plate", + "loki", + "netlify-cms-backend-gitlab", + "teeny-tap", + "emoji-js", + "mercurius", + "publint", + "unbundle", + "@walletconnect/http-connection", + "convex-helpers", + "eslint-plugin-react-refresh", + "gulp-jsdoc3", + "netlify-cms-backend-git-gateway", + "borp", + "pagefind", + "@pinia/testing", + "leaflet-gesture-handling", + "@headlessui/vue", + "remeda", + "rolldown", + "valibot", + "netlify-cms-backend-proxy", + "lefthook", + "@nuxt/ui", + "country-codes-flags-phone-codes", + "embla-carousel-react", + "input-otp", + "zoroaster", + "embla-carousel", + "@assistant-ui/react", + "@csstools/css-calc", + "@globalart/nestjs-swagger", + "@graphiql/plugin-doc-explorer", + "@mastra/core", + "next-router-mock", + "vue-draggable-next", + "@tsparticles/plugin-rgb-color", + "react-native-lightbox", + "rolldown-vite", + "react-native-aes-crypto", + "@inquirer/figures", + "@lobehub/chat", + "@inquirer/confirm", + "@upstash/context7-mcp", + "@storybook/addon-vitest", + "@walletconnect/heartbeat", + "lory.js", + "react-camera-pro", + "react-native-nitro-modules", + "@csstools/css-color-parser", + "@csstools/color-helpers", + "shadcn", + "@tanstack/virtual-core", + "otp-io", + "survey-core", + "@appium/support", + "@intlayer/api", + "@prisma/dev", + "@architect/asap", + "canvaskit-wasm", + "@edsdk/n1ed-react", + "react-error-boundary", + "@crxjs/vite-plugin", + "@observablehq/plot", + "skia-canvas", + "@flmngr/flmngr-react", + "@vitest/browser-playwright", + "md-to-pdf", + "@applitools/eyes", + "@applitools/driver", + "@applitools/screenshoter", + "@tsparticles/interaction-external-slow", + "@tsparticles/shape-line", + "@antora/cli", + "@antora/navigation-builder", + "@openspacelabs/react-native-zoomable-view", + "@testcontainers/postgresql", + "unplugin", + "@antora/redirect-producer", + "@antora/site-publisher", + "@appium/logger", + "planck", + "stage-js", + "oxfmt", + "syncpack", + "nolyfill", + "@appium/base-driver", + "@inquirer/expand", + "@inquirer/select", + "@c15t/backend", + "@react-native-vector-icons/common", + "@antora/content-classifier", + "@tsparticles/interaction-particles-attract", + "@popperjs/core", + "animejs", + "blurup", + "encryptor", + "flickity", + "jstz", + "lexxy", + "mapboxgl", + "mongoid", + "nums", + "orms", + "pannellum", + "psql", + "svgs", + "swiperjs", + "tributejs", + "twbs", + "xbytes", + "dependencies", + "devDependencies", + "keywords", + "ts", + "big.js", + "@alifd/field", + "@alifd/overlay", + "@alifd/validate", + "shallow-element-equals", + "@types/react-transition-group", + "jsonp", + "ts-mocha", + "tsconfck", + "@types/co", + "html5shiv", + "react-axe", + "sass-true", + "@types/md5", + "react-live", + "solarlunar", + "@types/chai", + "@types/glob", + "@types/node", + "mochawesome", + "@types/jsonp", + "@types/react", + "@types/yargs", + "@types/big.js", + "@types/enzyme", + "@types/lodash", + "react-cropper", + "@types/webpack", + "simulate-event", + "@types/fs-extra", + "@types/inquirer", + "chrome-launcher", + "react-draggable", + "@types/react-dom", + "@types/stylelint", + "console-polyfill", + "fast-sass-loader", + "@alifd/doc-parser", + "@alifd/meet-react", + "@types/babel-core", + "@types/classnames", + "markdown-it-prism", + "@alifd/sass-mapper", + "@types/react-redux", + "@alifd/sass-tracker", + "@types/postcss-calc", + "@alifd/api-extractor", + "@alifd/dts-generator", + "babel-plugin-espower", + "es6-promise-polyfill", + "@alifd/adaptor-helper", + "@alifd/sassdoc-parser", + "eslint-plugin-cypress", + "cypress-image-snapshot", + "@alifd/adaptor-generate", + "@types/lodash.clonedeep", + "@types/react-router-dom", + "@alifd/babel-preset-next", + "@babel/plugin-syntax-jsx", + "css-split-webpack-plugin", + "karma-webdriver-launcher", + "@alifd/eslint-config-next", + "@types/react-test-renderer", + "node-sass-package-importer", + "stylelint-csstree-validator", + "@alifd/stylelint-config-next", + "stylelint-config-recommended", + "@types/cypress-image-snapshot", + "@types/react-copy-to-clipboard", + "babel-plugin-generator-prettier", + "@types/postcss-custom-properties", + "babel-plugin-transform-object-assign", + "babel-plugin-transform-proto-to-assign", + "babel-plugin-transform-react-es6-displayname", + "fusion", + "fusion design", + "component", + "ui toolkit", + "react-components", + "components", + "design", + "frontend", + "Angular CLI", + "Angular DevKit", + "core", + "devkit", + "sdk", + "blueprints", + "code generation", + "scaffolding", + "schematics", + "template", + "tooling", + "cdk", + "development", + "kit", + "@jridgewell/sourcemap-codec", + "compiler", + "@standard-schema/spec", + "material", + "material design", + "xhr2", + "@types/dom-navigation", + "router", + "rc-field-form", + "utility-types", + "lodash.mergewith", + "lodash.assignwith", + "normalize-css-color", + "react-native-codegen", + "@floating-ui/react-native", + "@rc-component/mini-decimal", + "react-native-modal-popover", + "@bang88/react-native-ultimate-listview", + "bisheng", + "jsonml.js", + "enquire.js", + "@types/jest", + "shell-utils", + "react-native-web", + "@ant-design/tools", + "@types/prop-types", + "@types/react-native", + "ant-design-palettes", + "react-github-button", + "react-native-mocker", + "react-document-title", + "react-native-screens", + "antd-mobile-demo-data", + "@react-navigation/stack", + "@types/lodash.mergewith", + "react-native-reanimated", + "@react-navigation/native", + "react-native-gesture-handler", + "@testing-library/react-native", + "@ant-design/icons-react-native", + "react-native-safe-area-context", + "metro-react-native-babel-preset", + "@react-native-community/eslint-config", + "ant", + "react-component", + "ui", + "framework", + "mobile", + "react native", + "@types/lodash-es", + "@ant-design/icons", + "@inline-svg-unique-id/react", + "icon", + "@auth/core", + "set-cookie-parser", + "@sveltejs/package", + "@sveltejs/adapter-auto", + "@types/set-cookie-parser", + "authentication", + "authjs", + "jwt", + "sveltekit", + "oidc", + "passwordless", + "fs-readdir-recursive", + "@jridgewell/trace-mapping", + "@types/fs-readdir-recursive", + "@babel/helper-transform-fixture-test-runner", + "6to5", + "es6", + "transpile", + "transpiler", + "js-tokens", + "@babel/helper-validator-identifier", + "charcodes", + "import-meta-resolve", + "gensync", + "@babel/helpers", + "@babel/template", + "@babel/generator", + "@jridgewell/remapping", + "@babel/helper-module-transforms", + "@babel/helper-compilation-targets", + "@types/debug", + "@types/semver", + "@types/resolve", + "@babel/plugin-syntax-flow", + "@types/convert-source-map", + "@babel/plugin-transform-flow-strip-types", + "@babel/plugin-transform-modules-commonjs", + "classes", + "const", + "harmony", + "let", + "modules", + "var", + "@babel/helper-fixtures", + "@babel/helper-string-parser", + "@babel/helper-check-duplicate-nodes", + "javascript", + "parser", + "tc39", + "ecmascript", + "@babel/helper-create-class-features-plugin", + "@babel/helper-plugin-test-runner", + "babel-plugin", + "moo", + "luxon", + "entities", + "liquidjs", + "iso-639-1", + "bcp-47-normalize", + "dependency-graph", + "@11ty/lodash-custom", + "@11ty/posthtml-urls", + "please-upgrade-node", + "@11ty/eleventy-utils", + "@11ty/recursive-copy", + "@11ty/dependency-tree", + "@sindresorhus/slugify", + "node-retrieve-globals", + "posthtml-match-helper", + "@11ty/dependency-tree-esm", + "@11ty/eleventy-dev-server", + "@11ty/eleventy-plugin-bundle", + "pretty", + "@iarna/toml", + "nano-staged", + "@zachleat/noop", + "@eslint/eslintrc", + "markdown-it-abbr", + "simple-git-hooks", + "jsx-async-runtime", + "@11ty/eleventy-img", + "@mdx-js/node-loader", + "@vue/server-renderer", + "zod-validation-error", + "@11ty/eleventy-plugin-rss", + "@11ty/eleventy-plugin-webc", + "@11ty/eleventy-plugin-syntaxhighlight", + "static-site-generator", + "static-site", + "ssg", + "website", + "jekyll", + "blog", + "templates", + "generator", + "11ty", + "html", + "liquid", + "@rollup/plugin-terser", + "@rollup/plugin-typescript", + "@types/benchmark", + "@types/bytes", + "stringifier", + "stylesheet", + "ast", + "css-parser", + "css-ast", + "css-tools", + "format", + "preprocessor", + "@advanced-rest-client/arc-icons", + "@advanced-rest-client/arc-marked", + "@advanced-rest-client/clipboard-copy", + "@advanced-rest-client/http-code-snippets", + "@advanced-rest-client/markdown-styles", + "@anypoint-web-components/anypoint-button", + "@anypoint-web-components/anypoint-collapse", + "@anypoint-web-components/anypoint-dropdown", + "@anypoint-web-components/anypoint-item", + "@anypoint-web-components/anypoint-listbox", + "@api-components/amf-helper-mixin", + "@api-components/api-annotation-document", + "@api-components/api-body-document", + "@api-components/api-example-generator", + "@api-components/api-headers-document", + "@api-components/api-parameters-document", + "@api-components/api-responses-document", + "@api-components/api-security-documentation", + "@api-components/http-method-label", + "lit-html", + "@advanced-rest-client/arc-demo-helper", + "@advanced-rest-client/oauth-authorization", + "@anypoint-web-components/anypoint-checkbox", + "@anypoint-web-components/anypoint-input", + "@anypoint-web-components/anypoint-styles", + "@api-components/api-model-generator", + "@api-components/api-navigation", + "@api-components/api-request", + "@api-components/api-server-selector", + "@commitlint/config-conventional", + "@open-wc/eslint-config", + "@open-wc/testing", + "@web/dev-server", + "@web/test-runner", + "@web/test-runner-playwright", + "typescript-lit-html-plugin", + "api-components", + "method-documentation", + "@graphql-typed-document-node/core", + "@wry/caches", + "@wry/equality", + "@wry/trie", + "optimism", + "apollo", + "hooks", + "client", + "cache", + "@asyncapi/parser", + "@rollup/plugin-babel", + "babel-plugin-source-map-support", + "asyncapi", + "@nicolo-ribaudo/eslint-scope-5-internals", + "@types/eslint", + "@typescript-eslint/scope-manager", + "@babel/plugin-syntax-decorators", + "array.prototype.concat", + "babel-plugin-polyfill-es-shims", + "object.getownpropertydescriptors", + "decorators", + "@babel/plugin-syntax-export-namespace-from", + "@babel/compat-data", + "@babel/plugin-syntax-object-rest-spread", + "@babel/plugin-transform-parameters", + "@babel/helper-module-imports", + "babel-plugin-polyfill-corejs2", + "babel-plugin-polyfill-corejs3", + "babel-plugin-polyfill-regenerator", + "@babel/runtime-corejs3", + "derequire", + "core-js-compat", + "@babel/preset-modules", + "@babel/helper-validator-option", + "@babel/plugin-transform-for-of", + "@babel/plugin-transform-spread", + "@babel/plugin-transform-classes", + "@babel/plugin-transform-literals", + "@babel/plugin-transform-new-target", + "@babel/plugin-transform-modules-amd", + "@babel/plugin-transform-modules-umd", + "@babel/plugin-transform-regenerator", + "@babel/plugin-transform-dotall-regex", + "@babel/plugin-transform-json-strings", + "@babel/plugin-transform-object-super", + "@babel/plugin-transform-sticky-regex", + "@babel/plugin-transform-block-scoping", + "@babel/plugin-transform-destructuring", + "@babel/plugin-transform-function-name", + "@babel/plugin-transform-typeof-symbol", + "@babel/plugin-transform-unicode-regex", + "@babel/plugin-syntax-import-assertions", + "@babel/plugin-syntax-import-attributes", + "@babel/plugin-transform-duplicate-keys", + "@babel/plugin-transform-dynamic-import", + "@babel/plugin-transform-reserved-words", + "@babel/plugin-syntax-unicode-sets-regex", + "@babel/plugin-transform-arrow-functions", + "@babel/plugin-transform-private-methods", + "@babel/plugin-transform-unicode-escapes", + "@babel/plugin-transform-class-properties", + "@babel/plugin-transform-modules-systemjs", + "@babel/plugin-transform-regexp-modifiers", + "@babel/plugin-transform-numeric-separator", + "@babel/plugin-transform-optional-chaining", + "@babel/plugin-transform-property-literals", + "@babel/plugin-transform-template-literals", + "@babel/plugin-transform-async-to-generator", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-object-rest-spread", + "@babel/plugin-transform-unicode-sets-regex", + "@babel/plugin-transform-computed-properties", + "@babel/plugin-transform-shorthand-properties", + "@babel/plugin-transform-export-namespace-from", + "@babel/plugin-transform-block-scoped-functions", + "@babel/plugin-transform-optional-catch-binding", + "@babel/plugin-transform-unicode-property-regex", + "@babel/plugin-transform-exponentiation-operator", + "@babel/plugin-proposal-private-property-in-object", + "@babel/plugin-transform-async-generator-functions", + "@babel/plugin-transform-member-expression-literals", + "@babel/plugin-transform-private-property-in-object", + "@babel/plugin-transform-nullish-coalescing-operator", + "@babel/plugin-transform-explicit-resource-management", + "@babel/plugin-transform-logical-assignment-operators", + "@babel/plugin-transform-named-capturing-groups-regex", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key", + "@babel/plugin-bugfix-safari-class-field-initializer-scope", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "@babel/plugin-transform-react-jsx", + "@babel/plugin-transform-react-display-name", + "@babel/plugin-transform-react-jsx-development", + "@babel/plugin-transform-react-pure-annotations", + "@babel/plugin-transform-typescript", + "babel-preset", + "pirates", + "clone-deep", + "@babel/helper-globals", + "@apidevtools/json-schema-ref-parser", + "@biz-dev-ops/web-components", + "@cucumber/gherkin-streams", + "@iframe-resizer/child", + "@iframe-resizer/parent", + "awilix", + "bpmn-js", + "json-schema-merge-allof", + "markdown-it-attrs", + "markdown-it-codetabs", + "markdown-it-footnote", + "markdown-it-multimd-table", + "markdown-it-plantuml-ex", + "markdown-it-task-lists", + "pdfjs-viewer-element", + "prince", + "svg-pan-zoom", + "swagger-ui-dist", + "web-resource-inliner", + "stylelint-config-standard-scss", + "md", + "openapi", + "bpmn", + "bdd", + "feature", + "async-exit-hook", + "transport", + "logger", + "backend", + "mri", + "p-limit", + "term-size", + "spawndamnit", + "@changesets/git", + "@changesets/pre", + "@changesets/read", + "@changesets/types", + "@changesets/write", + "@changesets/config", + "@changesets/errors", + "@changesets/logger", + "@manypkg/get-packages", + "package-manager-detector", + "@changesets/changelog-git", + "@inquirer/external-editor", + "@changesets/get-release-plan", + "@changesets/apply-release-plan", + "@changesets/should-skip-package", + "@changesets/get-dependents-graph", + "@changesets/assemble-release-plan", + "human-id", + "@chatscope/chat-ui-kit-styles", + "@fortawesome/fontawesome-free", + "@semantic-release/changelog", + "@semantic-release/git", + "@semantic-release/github", + "chokidar-cli", + "rollup-plugin-peer-deps-external", + "chat", + "reactjs", + "user interface", + "ui kit", + "communication", + "conversation", + "toolkit", + "library", + "reusable", + "feed", + "comments", + "social", + "talk", + "ckeditor", + "ckeditor 5", + "ckeditor5-feature", + "ckeditor5-plugin", + "ckeditor5-dll", + "@ckeditor/ckeditor5-integrations-common", + "wysiwyg", + "rich text", + "editor", + "contentEditable", + "editing", + "angular2", + "angular 5", + "ng", + "@ckeditor/ckeditor5-icons", + "@ckeditor/ckeditor5-enter", + "@ckeditor/ckeditor5-editor-balloon", + "operational transformation", + "ot", + "collaboration", + "collaborative", + "real-time", + "ckeditor5-build", + "@ckeditor/ckeditor5-editor-classic", + "@ckeditor/ckeditor5-font", + "@ckeditor/ckeditor5-alignment", + "@ckeditor/ckeditor5-editor-decoupled", + "@ckeditor/ckeditor5-editor-inline", + "blurhash", + "es-toolkit", + "ckeditor5-lib", + "@ckeditor/ckeditor5-watchdog", + "@ckeditor/ckeditor5-undo", + "@ckeditor/ckeditor5-select-all", + "color-parse", + "color-convert", + "vanilla-colorful", + "@types/color-convert", + "@ckeditor/ckeditor5-editor-multi-root", + "vue.js", + "vue component", + "vue.js component", + "@commitlint/format", + "@commitlint/lint", + "@commitlint/load", + "@commitlint/read", + "@commitlint/types", + "tinyexec", + "@commitlint/test", + "@commitlint/utils", + "@compodoc/live-server", + "@compodoc/ngd-transformer", + "@polka/send-type", + "bootstrap.native", + "decache", + "loglevel-plugin-prefix", + "lunr", + "neotraverse", + "opencollective-postinstall", + "os-name", + "polka", + "tablesort", + "vis-network", + "module", + "graph", + "@comunica/types", + "semantic", + "actor", + "messages", + "nf", + "@docsearch/css", + "@docsearch/js", + "@eslint/markdown", + "@rollup/plugin-replace", + "@stackblitz/sdk", + "bundlewatch", + "clean-css-cli", + "find-unused-sass-variables", + "hammer-simulator", + "hugo-bin", + "karma-coverage-istanbul-reporter", + "karma-jasmine-html-reporter", + "postcss-combine-duplicated-selectors", + "rollup-plugin-istanbul", + "sass-embedded", + "stylelint-config-twbs-bootstrap", + "vnu-jar", + "mobile-first", + "responsive", + "front-end", + "web", + "tokenizer", + "media query", + "matches", + "polyfill", + "postcss-plugin", + "pseudo", + "selector", + "custom", + "declarations", + "progressive", + "properties", + "utility", + "variables", + "vars", + "specificity", + "@cucumber/ci-environment", + "@cucumber/cucumber-expressions", + "@cucumber/gherkin", + "@cucumber/gherkin-utils", + "@cucumber/html-formatter", + "@cucumber/junit-xml-formatter", + "@cucumber/message-streams", + "@cucumber/messages", + "@cucumber/pretty-formatter", + "@cucumber/tag-expressions", + "assertion-error-formatter", + "capital-case", + "error-stack-parser", + "has-ansi", + "knuth-shuffle-seeded", + "read-package-up", + "string-argv", + "util-arity", + "yup", + "@cucumber/compatibility-kit", + "@cucumber/query", + "@eslint/compat", + "@types/dirty-chai", + "@types/express", + "@types/has-ansi", + "@types/lodash.merge", + "@types/luxon", + "@types/mocha", + "@types/mustache", + "@types/mz", + "@types/progress", + "@types/sinon-chai", + "@types/sinonjs__fake-timers", + "@types/stream-buffers", + "@types/tmp", + "chai-exclude", + "dependency-lint", + "genversion", + "reindent-template-literals", + "stream-to-string", + "testing", + "gherkin", + "tests", + "@types/mock-fs", + "@types/semver-compare", + "@types/signale", + "jest-mock-process", + "semver-compare", + "signale", + "deven", + "@diplodoc/cut-extension", + "@diplodoc/file-extension", + "@diplodoc/tabs-extension", + "@diplodoc/utils", + "get-root-node-polyfill", + "github-slugger", + "markdown-it-deflist", + "markdown-it-sup", + "markdownlint-rule-helpers", + "quick-lru", + "ts-dedent", + "@diplodoc/babel-preset", + "@diplodoc/lint", + "@diplodoc/tsconfig", + "@types/css", + "@types/github-slugger", + "@types/js-yaml", + "@types/markdown-it", + "@types/markdown-it-attrs", + "@types/sanitize-html", + "@vitest/coverage-v8", + "@vitest/ui", + "esbuild-sass-plugin", + "jest-serializer-html", + "markdown-it-testgen", + "terminal-link", + "yandex", + "docs", + "yfm", + "tool", + "tools", + "magic-bytes.js", + "@discordjs/util", + "discord-api-types", + "@sapphire/snowflake", + "@discordjs/collection", + "@sapphire/async-queue", + "@vladfrangu/async_event_emitter", + "turbo", + "@discordjs/scripts", + "eslint-config-neon", + "@favware/cliff-jumper", + "eslint-formatter-pretty", + "@discordjs/api-extractor", + "esbuild-plugin-version-injector", + "discord", + "api", + "rest", + "discordapp", + "discordjs", + "types", + "tsdoc", + "generated", + "@apidevtools/swagger-parser", + "@aws-sdk/client-s3", + "@diplodoc/client", + "@diplodoc/markdown-translation", + "@diplodoc/mermaid-extension", + "@diplodoc/openapi-extension", + "@doc-tools/yfm2xliff", + "@octokit/core", + "@types/json-stringify-safe", + "@yandex-cloud/nodejs-sdk", + "bem-cn-lite", + "threads", + "threads-plugin", + "@types/async", + "@types/chalk", + "@types/html-escaper", + "@types/mime-types", + "@types/shelljs", + "@types/tar-stream", + "markdown-it-meta", + "@types/markdownlint", + "@yandex-cloud/eslint-config", + "@yandex-cloud/prettier-config", + "@yandex-cloud/tsconfig", + "@tinyhttp/cookie-parser", + "cookie-encrypter", + "github-markdown-css", + "greenlock-express", + "memorystore", + "minisearch", + "selfsigned", + "sitemap", + "sql.js", + "workerpool", + "@types/body-parser", + "@types/compression", + "@types/express-session", + "@types/formidable", + "@types/prompts", + "@types/sass", + "@types/sql.js", + "@types/uuid", + "@types/workerpool", + "esbuild-wasm", + "razor", + "sqlite", + "aspx", + "@dnd-kit/core", + "@dnd-kit/modifiers", + "@dnd-kit/sortable", + "@dnd-kit/utilities", + "@stylistic/eslint-plugin", + "@stylistic/stylelint-plugin", + "@wordpress/dependency-extraction-webpack-plugin", + "lightningcss", + "swc-loader", + "@wordpress/api-fetch", + "scss", + "mixin", + "js", + "WordPress", + "@tsconfig/node22", + "@types/lodash.camelcase", + "@types/pretty-ms", + ".d.ts", + "definitions", + "@emotion/hash", + "@emotion/memoize", + "@emotion/serialize", + "babel-plugin-macros", + "find-root", + "stylis", + "babel-check-duplicated-nodes", + "styles", + "css-in-js", + "@emotion/cache", + "@emotion/sheet", + "@emotion/utils", + "@definitelytyped/dtslint", + "@emotion/is-prop-valid", + "@emotion/use-insertion-effect-with-fallbacks", + "@emotion/react", + "warun", + "dot-prop", + "installed-check", + "@typescript-eslint/types", + "@eslint-community/eslint-plugin-mysticatea", + "eslint-plugin", + "@fakeyanss/redocly-openapi-core", + "decko", + "json-pointer", + "mark.js", + "openapi-sampler", + "react-tabs", + "stickyfill", + "swagger2openapi", + "url-template", + "@cypress/webpack-preprocessor", + "@hot-loader/react-dom", + "@size-limit/preset-app", + "@types/dompurify", + "@types/enzyme-to-json", + "@types/json-pointer", + "@types/lunr", + "@types/mark.js", + "@types/marked", + "@types/prismjs", + "@types/styled-components", + "@types/tapable", + "@types/webpack-env", + "@wojtekmaj/enzyme-adapter-react-17", + "esbuild-loader", + "license-checker", + "lodash.noop", + "unfetch", + "OpenAPI", + "OpenAPI Specification", + "Swagger", + "JSON-Schema", + "API", + "REST", + "React.js", + "@floating-ui/dom", + "use-isomorphic-layout-effect", + "tooltip", + "popover", + "dropdown", + "menu", + "popup", + "positioning", + "font", + "font family", + "google fonts", + "inter", + "Inter", + "typeface", + "variable", + "roboto", + "Roboto", + "@fortawesome/fontawesome-common-types", + "awesome", + "fontawesome", + "svg", + "@babel/plugin-external-helpers", + "@fortawesome/free-brands-svg-icons", + "@semantic-release/exec", + "icons", + "server", + "@electron/rebuild", + "node-abi", + "@electron-forge/cli", + "electron-devtools-installer", + "@grandlinex/swagger-mate", + "@types/jsonwebtoken", + "@types/ms", + "@fastify/deepmerge", + "@graphql-markdown/graphql", + "@graphql-markdown/logger", + "@graphql-markdown/utils", + "@graphql-markdown/types", + "graphql-schema", + "graphql-markdown", + "@docusaurus/utils", + "@graphql-markdown/cli", + "@docusaurus/types", + "plugin", + "@tailwindcss/aspect-ratio", + "@tailwindcss/forms", + "@tailwindcss/typography", + "basename", + "filemanager-webpack-plugin", + "remove-files-webpack-plugin", + "sass-lint", + "configuration", + "boilerplate", + "@hapi/accept", + "@hapi/ammo", + "@hapi/boom", + "@hapi/bounce", + "@hapi/call", + "@hapi/catbox", + "@hapi/catbox-memory", + "@hapi/heavy", + "@hapi/hoek", + "@hapi/mimos", + "@hapi/podium", + "@hapi/shot", + "@hapi/somever", + "@hapi/statehood", + "@hapi/subtext", + "@hapi/teamwork", + "@hapi/topo", + "@hapi/validate", + "@hapi/code", + "@hapi/eslint-plugin", + "@hapi/inert", + "@hapi/lab", + "@hapi/vision", + "@hapi/wreck", + "comment-parser", + "@homer0/eslint-plugin", + "@homer0/prettier-config", + "@vitest/coverage-istanbul", + "leasot", + "@standard-schema/utils", + "@sinclair/typebox", + "@typeschema/core", + "@typeschema/main", + "@typeschema/zod", + "@vinejs/vine", + "ajv-errors", + "arktype", + "check-export-map", + "class-transformer", + "class-validator", + "computed-types", + "effect", + "fluentvalidation-ts", + "fp-ts", + "io-ts", + "io-ts-types", + "monocle-ts", + "newtype-ts", + "nope-validator", + "superstruct", + "typanion", + "vest", + "vite-tsconfig-paths", + "scheme", + "validation", + "scheme-validation", + "hookform", + "effect-ts", + "nope", + "TypeBox", + "typeschema", + "vine", + "standard-schema", + "google translate api", + "google translate", + "google api", + "translate api", + "google", + "translate", + "@atlaskit/pragmatic-drag-and-drop", + "@atlaskit/pragmatic-drag-and-drop-auto-scroll", + "@atlaskit/pragmatic-drag-and-drop-hitbox", + "vue3", + "vue 3.x", + "@ctrl/tinycolor", + "@inquirer/ansi", + "cli-width", + "fast-wrap-ansi", + "mute-stream", + "@inquirer/testing", + "@types/mute-stream", + "answer", + "answers", + "ask", + "base", + "command", + "command-line", + "confirm", + "generate", + "hyper", + "input", + "inquire", + "interface", + "iterm", + "node", + "nodejs", + "promptly", + "question", + "scaffold", + "scaffolder", + "stdin", + "stdout", + "terminal", + "tty", + "yeoman", + "zsh", + "@stencil/core", + "domino", + "@stencil/sass", + "@capacitor/core", + "playwright-core", + "@playwright/test", + "@capacitor/haptics", + "@capacitor/keyboard", + "@ionic/eslint-config", + "@capacitor/status-bar", + "@ionic/prettier-config", + "@rollup/plugin-virtual", + "@stencil/vue-output-target", + "@stencil/react-output-target", + "@stencil/angular-output-target", + "stencil", + "app", + "webapp", + "capacitor", + "progressive web app", + "pwa", + "layout", + "console", + "wrap", + "table", + "@istanbuljs/schema", + "test", + "coverage", + "@itwin/itwinui-illustrations-react", + "@swc/helpers", + "@tanstack/react-virtual", + "react-table", + "@swc/cli", + "eslint-plugin-require-extensions", + "design-system", + "itwin", + "itwinui", + "ux", + "@jest/console", + "@jest/pattern", + "@jest/reporters", + "@jest/test-result", + "@jest/transform", + "exit-x", + "jest-changed-files", + "jest-config", + "jest-haste-map", + "jest-message-util", + "jest-regex-util", + "jest-resolve-dependencies", + "jest-runner", + "jest-runtime", + "jest-snapshot", + "jest-validate", + "jest-watcher", + "@jest/test-sequencer", + "@jest/test-utils", + "@types/graceful-fs", + "@types/micromatch", + "easy", + "facebook", + "immersive", + "instant", + "mocking", + "painless", + "runner", + "sandboxed", + "snapshot", + "@jest/schemas", + "@types/istanbul-lib-coverage", + "@types/istanbul-reports", + "@types/json-schema", + "@types/redux-mock-store", + "document-register-element", + "redux-mock-store", + "form", + "forms", + "json", + "jsonforms", + "renderengine", + "schema", + "uischema", + "customization", + "@date-io/dayjs", + "@rollup/plugin-json", + "rollup-plugin-copy", + "rollup-plugin-import-css", + "renderer", + "@rollup/plugin-alias", + "@types/object-hash", + "@jupyterlab/apputils", + "@jupyterlab/coreutils", + "@jupyterlab/docregistry", + "@jupyterlab/rendermime", + "@jupyterlab/rendermime-interfaces", + "@jupyterlab/services", + "@jupyterlab/statedb", + "@jupyterlab/translation", + "@jupyterlab/ui-components", + "@lumino/algorithm", + "@lumino/application", + "@lumino/commands", + "@lumino/coreutils", + "@lumino/disposable", + "@lumino/messaging", + "@lumino/polling", + "@lumino/properties", + "@lumino/signaling", + "@lumino/widgets", + "@jupyterlab/testing", + "docopt", + "glob2base", + "lodash.difference", + "multipipe", + "safe-wipe", + "sass-convert", + "@kobedevi/sassdoc-theme-default", + "scss-comment-parser", + "strip-indent", + "vinyl-string", + "babel-plugin-transform-builtin-extend", + "opn-cli", + "doc", + "theme", + "chatfanpage", + "api-connect-x", + "api-connect-tiwtter", + "@inquirer/input", + "@inquirer/prompts", + "task", + "list", + "tasklist", + "term", + "ascii", + "unicode", + "loading", + "indicator", + "busy", + "wait", + "idle", + "react-remove-scroll", + "ui-kit", + "calendar", + "date", + "picker", + "time", + "react-hooks", + "state", + "modal", + "notification", + "notification-manager", + "notification-system", + "prism-react-renderer", + "highlight", + "syntax", + "syntax-highlight", + "styling", + "@material-ui/types", + "@material-ui/utils", + "@material-ui/styles", + "@material-ui/system", + "@microsoft/api-documenter", + "json-api", + "json:api", + "serializer", + "normalizer", + "formatter", + "@types/mdx", + "jsx", + "mdx", + "@rushstack/node-core-library", + "@microsoft/api-extractor-model", + "@rushstack/terminal", + "@rushstack/ts-command-line", + "@rushstack/rig-package", + "@rushstack/heft", + "decoupled-local-node-rig", + "local-eslint-config", + "JSDoc", + "AEDoc", + "TSDoc", + "declaration", + "dts", + "bundle", + "alpha", + "beta", + "tsdoc-build-rig", + "TypeScript", + "jju", + "@types/jju", + "@aws/durable-execution-sdk-js", + "@aws/durable-execution-sdk-js-testing", + "@datastream/core", + "@types/aws-lambda", + "Lambda", + "Middleware", + "Serverless", + "Framework", + "AWS", + "AWS Lambda", + "Function URL", + "Durable function", + "Middy", + "HTTP", + "JSON", + "Body Parser", + "JSON Body Parser", + "@aws-sdk/client-ssm", + "aws-xray-sdk", + "helper", + "moj", + "design system", + "@open-draft/deferred-promise", + "@open-draft/logger", + "@open-draft/until", + "is-node-process", + "outvariant", + "strict-event-emitter", + "@open-draft/test-server", + "@ossjs/release", + "@types/cors", + "@types/express-fileupload", + "@types/follow-redirects", + "@types/node-fetch", + "@types/superagent", + "@types/supertest", + "@types/ws", + "engine.io-parser", + "express-fileupload", + "express-rate-limit", + "socket.io-parser", + "vitest-environment-miniflare", + "web-encoding", + "webpack-http-server", + "intercept", + "fetch", + "low-level", + "mock", + "spy", + "mui", + "@mui/core-downloads-tracker", + "system", + "@mui/x-internals", + "mui-x", + "datepicker", + "timepicker", + "datetimepicker", + "@headlessui/react", + "@iconify-icon/react", + "@mdx-js/loader", + "@mdx-js/mdx", + "@shikijs/transformers", + "@theguild/remark-npm2yarn", + "@types/unist", + "@vcarl/remark-headings", + "approximate-number", + "extra-watch-webpack-plugin", + "flexsearch", + "git-url-parse", + "mdast-util-phrasing", + "next-seo", + "react-helmet-async", + "rehype-extract-excerpt", + "rehype-pretty-code", + "remark-frontmatter", + "remark-heading-id", + "remark-link-rewrite", + "shiki", + "tailwindcss-themer", + "webpack-virtual-modules", + "@types/color", + "@types/extra-watch-webpack-plugin", + "@types/git-url-parse", + "@types/mdast", + "@repo/eslint-config", + "@repo/typescript-config", + "@repo/prettier-config", + "posthtml-render", + "posthtml-parser", + "esthetic", + "builder", + "guides", + "demo", + "ng-doc", + "rehype-format", + "hast-util-has-property", + "hast-util-heading-rank", + "rehype-minify-whitespace", + "unist-util-filter", + "@shikijs/rehype", + "ordinal", + "@types/chai-as-promised", + "ethers", + "hardhat", + "@types/bn.js", + "@nomicfoundation/hardhat-ethers", + "@nomicfoundation/eslint-plugin-slow-imports", + "@nomicfoundation/eslint-plugin-hardhat-internal-rules", + "ethereum", + "smart-contracts", + "@isaacs/string-locale-compare", + "@npmcli/fs", + "@npmcli/installed-package-contents", + "@npmcli/metavuln-calculator", + "@npmcli/name-from-folder", + "@npmcli/package-json", + "@npmcli/query", + "@npmcli/redact", + "bin-links", + "cacache", + "common-ancestor-path", + "json-stringify-nice", + "npm-install-checks", + "npm-pick-manifest", + "parse-conflict-json", + "proggy", + "promise-all-reject-late", + "promise-call-limit", + "treeverse", + "walk-up-path", + "@npmcli/eslint-config", + "@npmcli/mock-registry", + "@npmcli/template-oss", + "minify-registry-metadata", + "tcompare", + "libnpm", + "workspaces", + "map-workspaces", + "@npmcli/promise-spawn", + "spawk", + "innertext", + "highlights", + "similarity", + "language-ini", + "property-ttl", + "language-dart", + "language-glsl", + "language-haxe", + "language-rust", + "lodash.pickby", + "language-erlang", + "language-stylus", + "highlights-tokens", + "atom-language-diff", + "atom-language-nginx", + "github-url-to-object", + "markdown-it-expand-tabs", + "markdown-it-lazy-headers", + "oniguruma", + "intercept-stdout", + "readme", + "gfm", + "formatted", + "syntax highlighting", + "Monorepo", + "Angular", + "React", + "Web", + "Node", + "Nest", + "Jest", + "Cypress", + "CLI", + "@zkochan/js-yaml", + "EsBuild", + "Front-end", + "Backend", + "Lint", + "ESLint", + "Testing", + "Express", + "babel-plugin-const-enum", + "babel-plugin-transform-typescript-metadata", + "Swc", + "Tsc", + "@nestjs/schematics", + "kill-port", + "@nx/docker", + "tcp-port-used", + "@oclif/errors", + "@oclif/parser", + "@oclif/help", + "@oclif/plugin-plugins", + "fancy-test", + "oclif", + "@types/indent-string", + "@types/proxyquire", + "@types/wrap-ansi", + "clean-stack", + "@oclif/prettier-config", + "@oclif/test", + "@types/clean-stack", + "@types/ejs", + "@types/pnpapi", + "@types/sinon", + "@types/supports-color", + "@types/wordwrap", + "madge", + "command line", + "args", + "argv", + "oclif-plugin", + "@octokit/plugin-paginate-rest", + "@octokit/plugin-request-log", + "@octokit/plugin-rest-endpoint-methods", + "@octokit/auth-action", + "@octokit/auth-app", + "@octokit/fixtures-server", + "@octokit/request", + "@octokit/tsconfig", + "semantic-release-plugin-update-version-in-files", + "octokit", + "api-client", + "@opentiny/vue-action-menu", + "@opentiny/vue-action-sheet", + "@opentiny/vue-alert", + "@opentiny/vue-amount", + "@opentiny/vue-anchor", + "@opentiny/vue-area", + "@opentiny/vue-async-flowchart", + "@opentiny/vue-autocomplete", + "@opentiny/vue-badge", + "@opentiny/vue-base-select", + "@opentiny/vue-breadcrumb", + "@opentiny/vue-breadcrumb-item", + "@opentiny/vue-bulletin-board", + "@opentiny/vue-button", + "@opentiny/vue-button-group", + "@opentiny/vue-calendar", + "@opentiny/vue-calendar-bar", + "@opentiny/vue-calendar-view", + "@opentiny/vue-card", + "@opentiny/vue-card-group", + "@opentiny/vue-card-template", + "@opentiny/vue-carousel", + "@opentiny/vue-carousel-item", + "@opentiny/vue-cascader", + "@opentiny/vue-cascader-menu", + "@opentiny/vue-cascader-mobile", + "@opentiny/vue-cascader-node", + "@opentiny/vue-cascader-panel", + "@opentiny/vue-cascader-select", + "@opentiny/vue-cascader-view", + "@opentiny/vue-cell", + "@opentiny/vue-checkbox", + "@opentiny/vue-checkbox-button", + "@opentiny/vue-checkbox-group", + "@opentiny/vue-col", + "@opentiny/vue-collapse", + "@opentiny/vue-collapse-item", + "@opentiny/vue-collapse-transition", + "@opentiny/vue-color-picker", + "@opentiny/vue-color-select-panel", + "@opentiny/vue-column-list-group", + "@opentiny/vue-column-list-item", + "@opentiny/vue-company", + "@opentiny/vue-config-provider", + "@opentiny/vue-container", + "@opentiny/vue-country", + "@opentiny/vue-crop", + "@opentiny/vue-currency", + "@opentiny/vue-date-panel", + "@opentiny/vue-date-picker", + "@opentiny/vue-date-picker-mobile-first", + "@opentiny/vue-date-range", + "@opentiny/vue-date-table", + "@opentiny/vue-dept", + "@opentiny/vue-dialog-box", + "@opentiny/vue-dialog-select", + "@opentiny/vue-divider", + "@opentiny/vue-drawer", + "@opentiny/vue-drop-roles", + "@opentiny/vue-drop-times", + "@opentiny/vue-dropdown", + "@opentiny/vue-dropdown-item", + "@opentiny/vue-dropdown-menu", + "@opentiny/vue-dynamic-scroller", + "@opentiny/vue-dynamic-scroller-item", + "@opentiny/vue-espace", + "@opentiny/vue-exception", + "@opentiny/vue-fall-menu", + "@opentiny/vue-file-upload", + "@opentiny/vue-filter", + "@opentiny/vue-filter-bar", + "@opentiny/vue-filter-box", + "@opentiny/vue-filter-panel", + "@opentiny/vue-float-button", + "@opentiny/vue-floatbar", + "@opentiny/vue-floating-button", + "@opentiny/vue-flowchart", + "@opentiny/vue-fluent-editor", + "@opentiny/vue-form", + "@opentiny/vue-form-item", + "@opentiny/vue-fullscreen", + "@opentiny/vue-grid", + "@opentiny/vue-grid-column", + "@opentiny/vue-grid-manager", + "@opentiny/vue-grid-select", + "@opentiny/vue-grid-toolbar", + "@opentiny/vue-guide", + "@opentiny/vue-hrapprover", + "@opentiny/vue-image", + "@opentiny/vue-image-viewer", + "@opentiny/vue-input", + "@opentiny/vue-ip-address", + "@opentiny/vue-layout", + "@opentiny/vue-link", + "@opentiny/vue-link-menu", + "@opentiny/vue-load-list", + "@opentiny/vue-loading", + "@opentiny/vue-locales", + "@opentiny/vue-logon-user", + "@opentiny/vue-logout", + "@opentiny/vue-menu", + "@opentiny/vue-message", + "@opentiny/vue-milestone", + "@opentiny/vue-mind-map", + "@opentiny/vue-modal", + "@opentiny/vue-month-range", + "@opentiny/vue-month-table", + "@opentiny/vue-nav-menu", + "@opentiny/vue-notify", + "@opentiny/vue-number-animation", + "@opentiny/vue-numeric", + "@opentiny/vue-option", + "@opentiny/vue-option-group", + "@opentiny/vue-pager", + "@opentiny/vue-pager-item", + "@opentiny/vue-panel", + "@opentiny/vue-picker", + "@opentiny/vue-pop-upload", + "@opentiny/vue-popconfirm", + "@opentiny/vue-popeditor", + "@opentiny/vue-popover", + "@opentiny/vue-popup", + "@opentiny/vue-progress", + "@opentiny/vue-pull-refresh", + "@opentiny/vue-qr-code", + "@opentiny/vue-quarter-panel", + "@opentiny/vue-query-builder", + "@opentiny/vue-radio", + "@opentiny/vue-radio-button", + "@opentiny/vue-radio-group", + "@opentiny/vue-rate", + "@opentiny/vue-record", + "@opentiny/vue-recycle-scroller", + "@opentiny/vue-river", + "@opentiny/vue-roles", + "@opentiny/vue-row", + "@opentiny/vue-scroll-text", + "@opentiny/vue-scrollbar", + "@opentiny/vue-search", + "@opentiny/vue-select", + "@opentiny/vue-select-dropdown", + "@opentiny/vue-select-mobile", + "@opentiny/vue-select-view", + "@opentiny/vue-select-wrapper", + "@opentiny/vue-selected-box", + "@opentiny/vue-signature", + "@opentiny/vue-skeleton", + "@opentiny/vue-skeleton-item", + "@opentiny/vue-slider", + "@opentiny/vue-slider-button", + "@opentiny/vue-slider-button-group", + "@opentiny/vue-space", + "@opentiny/vue-split", + "@opentiny/vue-standard-list-item", + "@opentiny/vue-statistic", + "@opentiny/vue-steps", + "@opentiny/vue-sticky", + "@opentiny/vue-switch", + "@opentiny/vue-tab-item", + "@opentiny/vue-tabbar", + "@opentiny/vue-tabbar-item", + "@opentiny/vue-table", + "@opentiny/vue-tabs", + "@opentiny/vue-tag", + "@opentiny/vue-tag-group", + "@opentiny/vue-tag-input", + "@opentiny/vue-text-popup", + "@opentiny/vue-time", + "@opentiny/vue-time-line", + "@opentiny/vue-time-panel", + "@opentiny/vue-time-picker", + "@opentiny/vue-time-picker-mobile", + "@opentiny/vue-time-range", + "@opentiny/vue-time-select", + "@opentiny/vue-time-spinner", + "@opentiny/vue-timeline-item", + "@opentiny/vue-toggle-menu", + "@opentiny/vue-tooltip", + "@opentiny/vue-top-box", + "@opentiny/vue-transfer", + "@opentiny/vue-transfer-panel", + "@opentiny/vue-tree", + "@opentiny/vue-tree-menu", + "@opentiny/vue-tree-select", + "@opentiny/vue-upload", + "@opentiny/vue-upload-dragger", + "@opentiny/vue-upload-list", + "@opentiny/vue-user", + "@opentiny/vue-user-account", + "@opentiny/vue-user-contact", + "@opentiny/vue-user-head", + "@opentiny/vue-user-head-group", + "@opentiny/vue-user-link", + "@opentiny/vue-virtual-scroll-box", + "@opentiny/vue-virtual-tree", + "@opentiny/vue-watermark", + "@opentiny/vue-wizard", + "@opentiny/vue-year-range", + "@opentiny/vue-year-table", + "component-library", + "vue-components", + "opentiny", + "renderless-components", + "headless-components", + "@opentiny/utils", + "@opentiny/vue-hooks", + "esno", + "gulp-svg-inline", + "gulp-transform", + "otterhttp", + "node.js", + "web framework", + "header-range-parser", + "@otterhttp/accepts", + "@otterhttp/content-type", + "@otterhttp/proxy-address", + "@otterhttp/type-is", + "@otterhttp/url", + "@otterhttp/router", + "req", + "es-escape-html", + "@otterhttp/content-disposition", + "@otterhttp/encode-url", + "@otterhttp/errors", + "@otterhttp/vary", + "res", + "@otterhttp/etag", + "send-file", + "@pact-foundation/pact-core", + "randexp", + "stack-utils", + "@pact-foundation/pact-js-prettier-config", + "@types/http-proxy", + "@types/nock", + "@types/ramda", + "@types/stack-utils", + "commit-and-tag-version", + "eslint-plugin-chai-friendly", + "pact", + "pact-js", + "contract testing", + "consumer driven testing", + "management", + "store", + "@phosphor/algorithm", + "@phosphor/commands", + "@phosphor/coreutils", + "@phosphor/disposable", + "@phosphor/domutils", + "@phosphor/dragdrop", + "@phosphor/keyboard", + "@phosphor/messaging", + "@phosphor/properties", + "@phosphor/signaling", + "@phosphor/virtualdom", + "@release-it/conventional-changelog", + "@types/jsdom", + "cobertura", + "eslint-config-phun-ky", + "git-cz", + "glob-bin", + "global-jsdom", + "putout", + "quibble", + "remark-github", + "remark-toc", + "typedoc-plugin-frontmatter", + "typedoc-plugin-mdn-links", + "typedoc-plugin-no-inherit", + "typedoc-plugin-remark", + "typedoc-plugin-rename-defaults", + "typedoc-vitepress-theme", + "unified-prettier", + "vitepress-plugin-group-icons", + "a11y", + "accessibility", + "anatomy", + "annotate", + "annotation", + "dissect", + "dissection", + "grid", + "grid-layout", + "html-elements", + "information", + "inspect", + "pin", + "spacing", + "spec", + "speccer", + "specification", + "specifications", + "specs", + "typography", + "stories", + "@webcomponents/shadycss", + "@polymer/gen-closure-declarations", + "@polymer/iron-component-page", + "@polymer/test-fixture", + "@webcomponents/webcomponentsjs", + "babel-preset-minify", + "dom5", + "google-closure-compiler", + "gulp-vulcanize", + "lazypipe", + "polymer-build", + "polymer-cli", + "wct-browser-legacy", + "cldr", + "gauge", + "upath", + "fontkit", + "ps-tree", + "get-value", + "set-value", + "github-api", + "unset-value", + "tap-colorize", + "core-js-bundle", + "app-module-path", + "es6-promise-pool", + "better-ajv-errors", + "jstransformer-dot", + "@metalsmith/layouts", + "@metalsmith/markdown", + "console-control-strings", + "@qooxdoo/eslint-config-qx", + "@qooxdoo/eslint-plugin-qx", + "eslint-formatter-codeframe", + "@qooxdoo/eslint-config-jsdoc-disable", + "@babel/plugin-proposal-optional-chaining-assign", + "dirsum", + "qooxdoo", + "fontend", + "back-end", + "widgets", + "gui", + "databinding", + "interfaces", + "mixins", + "@mdi/font", + "@mdi/svg", + "@xmldom/xmldom", + "animate.css", + "bootstrap-icons", + "eva-icons", + "line-awesome", + "eslint-config-quasar", + "quasar", + "fonts", + "animations", + "gltfpack", + "detect-gpu", + "r3f-perf", + "@types/three", + "three-stdlib", + "suspend-react", + "postprocessing", + "@storybook/react", + "@react-three/drei", + "@react-three/fiber", + "cypress-image-diff-js", + "rollup-plugin-postcss", + "@storybook/addon-links", + "@storybook/node-logger", + "eslint-plugin-storybook", + "@storybook/addon-actions", + "@storybook/react-webpack5", + "@react-three/test-renderer", + "@storybook/testing-library", + "@react-three/postprocessing", + "@storybook/addon-essentials", + "@storybook/addon-interactions", + "@types/testing-library__jest-dom", + "@storybook/preset-create-react-app", + "threejs", + "react-three-fiber", + "ready-player-me", + "3D", + "avatars", + "glb", + "@phryneas/ts-version", + "@size-limit/file", + "@size-limit/webpack", + "@testing-library/react-render-stream", + "@types/babel__core", + "@types/babel__helper-module-imports", + "@types/nanoid", + "@types/query-string", + "esbuild-extra", + "starter", + "reducer", + "slice", + "redux-toolkit", + "@rollup/pluginutils", + "commondir", + "fdir", + "is-reference", + "locate-character", + "require-relative", + "commonjs", + "require", + "is-module", + "string-capitalize", + "es2015", + "groq-js", + "refractor", + "@sanity/ui", + "@types/cpx", + "dotenv-flow", + "@sanity/color", + "@sanity/icons", + "@sanity/client", + "react-refractor", + "esbuild-register", + "@sanity/pkg-utils", + "@portabletext/react", + "@portabletext/toolkit", + "cpx", + "sanity", + "@types/mkdirp", + "@sanity/ui-workshop", + "@sanity/semantic-release-preset", + "eslint-plugin-simple-import-sort", + "API reference", + "@unhead/vue", + "@vueuse/core", + "microdiff", + "@scalar/agent-chat", + "@scalar/code-highlight", + "@scalar/api-client", + "@scalar/icons", + "@scalar/components", + "@scalar/helpers", + "@scalar/openapi-parser", + "@scalar/oas-utils", + "@scalar/openapi-types", + "@scalar/sidebar", + "@scalar/types", + "@scalar/snippetz", + "@scalar/use-hooks", + "@scalar/themes", + "@scalar/use-toasts", + "@scalar/workspace-store", + "@hono/node-server", + "@tailwindcss/vite", + "@vitejs/plugin-vue", + "@vue/test-utils", + "rollup-plugin-webpack-stats", + "vite-plugin-banner", + "vite-plugin-css-injected-by-js", + "@scalar/build-tooling", + "@scalar/core", + "@scalar/galaxy", + "@scalar/react-renderer", + "reference", + "swagger", + "fastify-plugin", + "@fastify/basic-auth", + "@fastify/http-proxy", + "@fastify/swagger", + "@serenity-js/core", + "@serenity-js/rest", + "@serenity-js/web", + "tiny-types", + "@integration/testing-tools", + "@serenity-js/assertions", + "@serenity-js/cucumber", + "@serenity-js/jasmine", + "@serenity-js/local-server", + "@serenity-js/mocha", + "@types/html-minifier", + "mocha-multi", + "automation", + "browser", + "e2e", + "end-to-end", + "integration", + "serenity", + "serenity-js", + "screenplay", + "screenplay-pattern", + "tdd", + "@wdio/reporter", + "@wdio/cli", + "@wdio/dot-reporter", + "@wdio/local-runner", + "@wdio/spec-reporter", + "@wdio/types", + "mocha-testdata", + "webdriverio", + "wdio", + "wdio-reporter", + "@sinonjs/commons", + "@mochify/cli", + "@mochify/driver-puppeteer", + "@mochify/driver-webdriver", + "@sinonjs/eslint-config", + "@sinonjs/referee-sinon", + "@storybook/icons", + "@storybook/csf-plugin", + "@storybook/react-dom-shim", + "telejson", + "memoizerific", + "storybook-addon", + "essentials", + "organize", + "MDX", + "autodocs", + "styleguide", + "style guide", + "web-components", + "@ant-design/colors", + "@ant-design/cssinjs", + "@ant-design/react-slick", + "@fortawesome/free-regular-svg-icons", + "@polkadot/react-identicon", + "@polkadot/util-crypto", + "@polkadot/wasm-crypto", + "@rc-component/tour", + "@zxing/browser", + "@zxing/library", + "boring-avatars", + "flatlist-react", + "jsqr", + "patch-package", + "phosphor-react", + "qrcode.react", + "rc-cascader", + "rc-checkbox", + "rc-collapse", + "rc-dialog", + "rc-drawer", + "rc-dropdown", + "rc-image", + "rc-input", + "rc-input-number", + "rc-mentions", + "rc-menu", + "rc-motion", + "rc-notification", + "rc-pagination", + "rc-picker", + "rc-progress", + "rc-rate", + "rc-resize-observer", + "rc-segmented", + "rc-select", + "rc-steps", + "rc-switch", + "rc-table", + "rc-tabs", + "rc-textarea", + "rc-tree", + "rc-tree-select", + "rc-trigger", + "rc-upload", + "react-pin-input", + "react-qrcode-logo", + "react-superellipse", + "scroll-into-view-if-needed", + "@babel/eslint-plugin", + "@emotion/babel-preset-css-prop", + "@emotion/server", + "@qixian.cs/github-contributors-list", + "@storybook/addons", + "@storybook/builder-webpack5", + "@storybook/manager-webpack5", + "@storybook/theming", + "@types/gtag.js", + "@types/jest-axe", + "@types/jest-environment-puppeteer", + "@types/jest-image-snapshot", + "@types/jquery", + "@types/puppeteer", + "@types/qs", + "@types/react-color", + "@types/react-highlight-words", + "@types/react-resizable", + "@types/react-window", + "@types/throttle-debounce", + "@types/warning", + "antd-img-crop", + "antd-token-previewer", + "array-move", + "bundlesize2", + "dekko", + "duplicate-package-checker-webpack-plugin", + "fetch-jsonp", + "jest-axe", + "jest-image-snapshot", + "jest-puppeteer", + "jsonml-to-react-element", + "lz-string", + "rc-footer", + "rc-tween-one", + "rc-virtual-list", + "react-fast-marquee", + "react-highlight-words", + "react-infinite-scroll-component", + "react-resizable", + "react-sticky-box", + "react-window", + "remark-lint", + "remark-preset-lint-recommended", + "rome", + "stylelint-config-prettier", + "stylelint-config-rational-order", + "stylelint-declaration-block-no-ignored-properties", + "sylvanas", + "vanilla-jsoneditor", + "xhr-mock", + "yaml-front-matter", + "@supernova-studio/client", + "@supernova-studio/model", + "abab", + "async-mutex", + "color2k", + "parse-color", + "string.prototype.matchall", + "@types/tinycolor2", + "trash-cli", + "tsconfig-paths-webpack-plugin", + "Supernova", + "Design Systems", + "Supernovaio", + "SDK", + "Design Tokens", + "Tokens", + "Assets", + "Components", + "Documentation", + "Markdown", + "CMS", + "expr-eval-fork", + "ml-matrix", + "postcss-calc-ast-parser", + "@ava/typescript", + "@stylistic/eslint-plugin-js", + "@svitejs/changesets-changelog-github-compact", + "eslint-config", + "@sveltejs/acorn-typescript", + "@types/cookie", + "devalue", + "esm-env", + "mrmime", + "sade", + "@opentelemetry/api", + "@types/connect", + "dts-buddy", + "official", + "obug", + "@sveltejs/vite-plugin-svelte-inspector", + "vite-plugin", + "vite plugin", + "@babel/plugin-transform-react-constant-elements", + "@svgr/plugin-jsx", + "@svgr/plugin-svgo", + "svgr", + "webpack-loader", + "@swc/counter", + "@swc/types", + "@napi-rs/cli", + "@rstest/core", + "swc", + "swcpack", + "rust", + "tsc", + "stylelint-prettier", + "@swisspost/design-system-icons", + "@swisspost/design-system-tokens", + "stylelint-config-sass-guidelines", + "collections", + "patterns", + "web components", + "ui library", + "symbiote.js", + "symbiote", + "widget", + "microfrontends", + "meta application", + "custom elements", + "shadow dom", + "shadow root", + "constructable stylesheets", + "adopted stylesheets", + "css custom properties", + "pubsub", + "import maps", + "cdn imports", + "https imports", + "reactive html attributes", + "MIT", + "JSDA", + "@types/content-type", + "istanbul-lib-coverage", + "istanbul-lib-report", + "istanbul-lib-source-maps", + "istanbul-reports", + "rollup-plugin-filesize", + "tanem-scripts", + "dom", + "images", + "img", + "scalable-vector-graphics", + "@tanstack/query-core", + "@tanstack/query-persist-client-core", + "@tanstack/query-test-utils", + "@testing-library/svelte", + "tanstack", + "query", + "@types/js-cookie", + "@github/webauthn-json", + "better-docs", + "eslint-config-preact", + "hanko", + "passkey", + "webauthn", + "passcode", + "password", + "kcd-scripts", + "functional", + "aria-query", + "@types/aria-query", + "dom-accessibility-api", + "jest-in-case", + "jest-watch-select-projects", + "jest-snapshot-serializer-ansi", + "unit", + "redent", + "@jest/globals", + "rollup-plugin-delete", + "jest-environment-jsdom-sixteen", + "jest-matcher-utils", + "@callstack/eslint-config", + "@relmify/jest-serializer-strip-ansi", + "testing-library", + "dotenv-cli", + "jest-mock", + "shared-scripts", + "@types/jest-in-case", + "@ph.fritsche/toolbox", + "jest-serializer-ansi", + "esbuild-plugin-globals", + "eslint-plugin-local-rules", + "@ph.fritsche/scripts-config", + "@esbuild-plugins/node-modules-polyfill", + "react-testing-library", + "dom-testing-library", + "regexparam", + "tinyhttp", + "static", + "@tinyhttp/vary", + "supertest-fetch", + "forwarded", + "headers", + "header", + "proxy-addr", + "net", + "network", + "@tinyhttp/accepts", + "@tinyhttp/content-disposition", + "@tinyhttp/content-type", + "params", + "particles.js", + "particlesjs", + "particles", + "particle", + "jsparticles", + "xparticles", + "particles-js", + "particles-bg", + "particles-bg-vue", + "particles-ts", + "particles.ts", + "react-particles-js", + "react-particles.js", + "react-particles", + "vue-particles", + "ngx-particles", + "angular-particles", + "particleground", + "vuejs", + "preactjs", + "angularjs", + "animation", + "html5", + "web-design", + "webdesign", + "css3", + "animated", + "background", + "confetti", + "fireworks", + "fireworks-js", + "confetti-js", + "confettijs", + "fireworksjs", + "canvas-confetti", + "@d-fischer/shared-utils", + "@twurple/api-call", + "@twurple/common", + "jose", + "twitch", + "extension", + "service", + "ebs", + "ts-api-utils", + "natural-compare", + "@eslint-community/regexpp", + "@typescript-eslint/type-utils", + "@typescript-eslint/visitor-keys", + "title-case", + "mdast-util-mdx", + "micromark-extension-mdxjs", + "@typescript-eslint/rule-tester", + "@typescript-eslint/rule-schema-to-typescript-types", + "eslintplugin", + "@typescript-eslint/typescript-estree", + "estree", + "@ucloud-fe/calendar", + "component-classes", + "create-react-context", + "emotion-theming", + "file-bytes-formatter", + "mini-store", + "rc-animate", + "rc-form", + "z-use-drag", + "@types/hoist-non-react-statics", + "@types/raf", + "@ucloud-fe/recodo-gen", + "ast-types", + "babel-plugin-emotion", + "babel-plugin-typescript-to-proptypes", + "babel-plugin-webpack-alias", + "css-hot-loader", + "jest-emotion", + "jsdom-screenshot", + "stylelint-config-styled-components", + "stylelint-processor-styled-components", + "tsc-alias", + "ucloud", + "jotai-x", + "is-hotkey", + "optics-ts", + "zustand-x", + "slate-react", + "jotai-optics", + "@udecode/slate", + "@udecode/utils", + "use-deep-compare", + "slate-hyperscript", + "@udecode/react-utils", + "@udecode/react-hotkeys", + "plate", + "slate", + "button", + "react-button", + "uiw-react", + "react.js", + "uikit", + "react-ui", + "@uiw/icons", + "react-icon", + "react-input", + "@uiw/react-overlay", + "overlay-trigger", + "react-overlay-trigger", + "utils", + "react-utils", + "prom-client", + "openapi-types", + "unleash-client", + "json-schema-to-ts", + "ts-node-dev", + "@types/type-is", + "Unleash", + "native", + "ios", + "android", + "flags", + "lit", + "keyux", + "nanostores", + "@lit/context", + "@uploadcare/cname-prefix", + "@uploadcare/image-shrink", + "@uploadcare/upload-client", + "@uploadcare/quality-insights", + "shipjs", + "render-jsx", + "lit-analyzer", + "ts-lit-plugin", + "@biomejs/js-api", + "@vitest/browser", + "eslint-plugin-wc", + "@types/svg-sprite", + "eslint-plugin-lit", + "vitest-browser-lit", + "@biomejs/wasm-nodejs", + "@size-limit/esbuild-why", + "esbuild-minify-templates", + "@total-typescript/ts-reset", + "@size-limit/preset-small-lib", + "@happy-dom/global-registrator", + "@csstools/postcss-cascade-layers", + "uploadcare", + "lighter", + "file uploader", + "adaptive image", + "image optimization", + "image editing", + "image size", + "cloud image editor", + "upload api client", + "building blocks", + "blocks", + "lr-blocks", + "uc-blocks", + "integrations", + "smart cdn", + "cloud file platform", + "transformation api", + "webp", + "avif", + "css context properties", + "meta applications", + "browserslist-to-esbuild", + "@babel/plugin-transform-react-jsx-self", + "@babel/plugin-transform-react-jsx-source", + "@rolldown/pluginutils", + "babel-plugin-react-compiler", + "fast refresh", + "@tsconfig/node20", + "pkgroll", + "create-vue", + "create-eslint-config", + "ajv-keywords", + "merge-deep", + "swagger-parser", + "@ant-design/icons-svg", + "@makotot/ghostui", + "@types/hast", + "@umijs/bundler-utils", + "@umijs/core", + "@umijs/utils", + "animated-scroll-to", + "codesandbox", + "comlink", + "dumi-afx-deps", + "estree-util-to-js", + "estree-util-visit", + "file-system-cache", + "heti", + "html2sketch", + "mdast-util-find-and-replace", + "mdast-util-to-string", + "prism-themes", + "react-loading-skeleton", + "react-simple-code-editor", + "rehype-remove-comments", + "remark-directive", + "sucrase", + "umi", + "unist-util-visit-parents", + "v8-compile-cache", + "vfile", + "dumi-assets-types", + "@types/highlight-words-core", + "@types/hosted-git-info", + "@types/lodash.throttle", + "@types/pluralize", + "@umijs/lint", + "@umijs/plugins", + "codesandbox-import-utils", + "git-repo-info", + "highlight-words-core", + "zx", + "dumi-theme-mobile", + "static site generator", + "jamstack", + "aleo", + "cryptography", + "blockchain", + "decentralized", + "zero-knowledge", + "oracle", + "event-target-shim", + "@mysticatea/eslint-plugin", + "@mysticatea/spy", + "dts-bundle-generator", + "karma-growl-reporter", + "rollup-plugin-babel-minify", + "rollup-watch", + "type-tester", + "w3c", + "whatwg", + "event", + "abort", + "cancel", + "abortcontroller", + "abortsignal", + "controller", + "signal", + "shim", + "negotiator", + "content", + "negotiation", + "accept", + "middleware", + "progress-estimator", + "@types/figlet", + "@types/git-clone", + "rollup-plugin-node-externals", + "nestjs", + "fullstack", + "zip", + "archive", + "flowcontrol", + "flow", + "control", + "arch", + "cron-parser", + "date.js", + "human-interval", + "@types/human-interval", + "job", + "jobs", + "delayed", + "blockchain-bend4", + "blockchain-meat7", + "bow-swam-troops-care", + "cent-matter-to", + "closer-composed-particularly-shout", + "coach-organized-notice", + "correct-home-silent7", + "course-whenever-merely", + "crop-birthday-web3-children", + "exchange-known-bend", + "face-eventually-bound", + "grass-dollar-crew-floating", + "information-fruit-web3-perfect", + "lay-rest-hour", + "material-balance-trade-solar", + "meat-think-stove8", + "office-deal-mostly1", + "product-slight-adult-settlers", + "recently-done-should-moon", + "scientific-exist-event2", + "sentence-won-little-western", + "speed-wing-eat", + "stay-including", + "supper-term-including-snake", + "truck-hospital-equator-hurt", + "trunk-darkness-believed-corner", + "typical-recall-industry-exchange", + "warn-clothing-whose0", + "weigh-flew-web3-farm", + "@airtap/browserify-istanbul", + "airtap-default", + "airtap-multi", + "bruce-millis-option", + "engine.io", + "engine.io-client", + "find-nearest-file", + "globs-to-files", + "humanize-duration", + "load-script", + "make-promises-safe", + "maybe-combine-errors", + "nanoresource", + "nanoresource-collection", + "on-stream-close", + "run-parallel-settled", + "tap-completed", + "thunky-with-args", + "transient-error", + "abstract-browser", + "simple-get", + "saucelabs", + "fast-uri", + "json-schema-traverse", + "require-from-string", + "@ajv-validator/config", + "@types/require-from-string", + "dayjs-plugin-utc", + "if-node-version", + "json-schema-test", + "module-from-string", + "re2", + "tsify", + "uri-js", + "json-schema-validator", + "json-schema-validation", + "Ajv", + "longjohn", + "buffer-more-ints", + "claire", + "AMQP", + "AMQP 0-9-1", + "RabbitMQ", + "simple", + "ux bootstrap", + "client-side", + "@angular-cli/ast-tools", + "@angular-cli/base-href-webpack", + "@ngtools/json-schema", + "@ngtools/webpack", + "denodeify", + "ember-cli-normalize-entity-name", + "ember-cli-string-utils", + "exists-sync", + "findup", + "get-caller-file", + "isbinaryfile", + "node-modules-path", + "script-loader", + "silent-error", + "sourcemap-istanbul-instrumenter-loader", + "component library", + "justified", + "256", + "ansi", + "bgblack", + "bgBlack", + "bgblue", + "bgBlue", + "bgcyan", + "bgCyan", + "bggreen", + "bgGreen", + "bgmagenta", + "bgMagenta", + "bgred", + "bgRed", + "bgwhite", + "bgWhite", + "bgyellow", + "bgYellow", + "black", + "blue", + "bold", + "clorox", + "colour", + "cyan", + "dim", + "formatting", + "gray", + "green", + "grey", + "hidden", + "inverse", + "italic", + "logging", + "magenta", + "red", + "reset", + "rgb", + "shell", + "str", + "strikethrough", + "style", + "text", + "underline", + "white", + "yellow", + "environment", + "escape", + "escapes", + "vt100", + "sequence", + "codes", + "cursor", + "iterm2", + "screen", + "erase", + "scrollback", + "regex", + "regexp", + "re", + "match", + "find", + "pattern", + "svg-term-cli", + "@ant-design/icons-vue", + "@emotion/unitless", + "@simonwep/pickr", + "array-tree-filter", + "dom-align", + "dom-scroll-into-view", + "shallow-equal", + "vue-types", + "@babel/plugin-proposal-optional-chaining", + "@babel/plugin-transform-object-assign", + "@types/koa", + "@types/lru-cache", + "@types/postcss-load-config", + "@vitejs/plugin-vue-jsx", + "@vue/babel-plugin-jsx", + "@vue/cli-plugin-eslint", + "@vue/eslint-config-prettier", + "@vue/vue3-jest", + "@webpack-cli/serve", + "ali-oss", + "babel-plugin-inline-import-data-uri", + "babel-plugin-transform-require-context", + "colorful", + "compare-versions", + "cz-git", + "diacritics", + "docsearch.js", + "enquire-js", + "eslint-plugin-no-explicit-type-exports", + "gulp-strip-code", + "ignore-emit-webpack-plugin", + "is-windows", + "jest-serializer-vue", + "jest-transform-stub", + "json-templater", + "less-plugin-npm-import", + "less-vars-to-js", + "majo", + "markdown-it-table-of-contents", + "merge2", + "remark-stringify", + "remark-yaml-config", + "reqwest", + "rucksack-css", + "selenium-server", + "string-replace-loader", + "umi-request", + "vue-clipboard2", + "vue-drag-resize", + "vue-infinite-scroll", + "vue-request", + "vue-tsc", + "webpackbar", + "vueComponent", + "@rc-component/form", + "@rc-component/menu", + "@rc-component/rate", + "@rc-component/tabs", + "@rc-component/tree", + "@rc-component/util", + "@rc-component/image", + "@rc-component/input", + "@rc-component/steps", + "@rc-component/table", + "@rc-component/dialog", + "@rc-component/drawer", + "@rc-component/motion", + "@rc-component/picker", + "@rc-component/qrcode", + "@rc-component/select", + "@rc-component/slider", + "@rc-component/switch", + "@rc-component/upload", + "@rc-component/tooltip", + "@rc-component/trigger", + "@ant-design/fast-color", + "@rc-component/cascader", + "@rc-component/checkbox", + "@rc-component/collapse", + "@rc-component/dropdown", + "@rc-component/mentions", + "@rc-component/progress", + "@rc-component/textarea", + "@rc-component/segmented", + "@rc-component/pagination", + "@ant-design/cssinjs-utils", + "@rc-component/tree-select", + "@rc-component/color-picker", + "@rc-component/input-number", + "@rc-component/notification", + "@rc-component/mutate-observer", + "@rc-component/resize-observer", + "p-all", + "runes2", + "mermaid", + "spinnies", + "env-paths", + "@types/tar", + "antd-style", + "@types/pngjs", + "cli-progress", + "domparser-rs", + "vanilla-tilt", + "@ant-design/x", + "react-countup", + "@prettier/sync", + "@types/adm-zip", + "@types/ali-oss", + "@blazediff/core", + "@types/css-tree", + "@types/minimist", + "@types/spinnies", + "@types/nprogress", + "lunar-typescript", + "@ant-design/x-sdk", + "csstree-validator", + "@types/http-server", + "@types/cli-progress", + "@antfu/eslint-config", + "@ant-design/compatible", + "@codecov/webpack-plugin", + "@types/isomorphic-fetch", + "dumi-plugin-color-chunk", + "@microflash/rehype-figure", + "@rc-component/virtual-list", + "circular-dependency-plugin", + "@codesandbox/sandpack-react", + "@eslint-react/eslint-plugin", + "@ant-design/happy-work-theme", + "cypress-image-diff-html-report", + "@ianvs/prettier-plugin-sort-imports", + "remark-lint-no-undefined-references", + "@madccc/duplicate-package-checker-webpack-plugin", + "@api-components/api-console-ext-comm", + "@api-components/api-documentation", + "@api-components/api-summary", + "@polymer/app-layout", + "@polymer/iron-media-query", + "@polymer/paper-toast", + "@anypoint-web-components/anypoint-menu-mixin", + "@open-wc/building-rollup", + "@polymer/iron-test-helpers", + "@web/test-runner-visual-regression", + "amf-client-js", + "rollup-plugin-cpy", + "unzipper", + "raml", + "amf", + "diff-match-patch", + "expose-loader", + "klaw-sync", + "eslint-config-recommended", + "restful", + "apidoc-light", + "portable", + "programmatic", + "cli-app", + "api-documentation", + "markdown-documentation", + "http2", + "apple", + "push", + "push notifications", + "iOS", + "apns", + "notifications", + "apollo-cache", + "apollo-utilities", + "ts-invariant", + "@types/zen-observable", + "symbol-observable", + "zen-observable", + "jsnext", + "relay", + "zen-observable-ts", + "@types/graphql", + "apollo-link-http-common", + "apollo-fetch", + "object-to-querystring", + "cracks", + "root", + "node_modules", + "@colors/colors", + "appium-adb", + "appium-chromedriver", + "asyncbox", + "io.appium.settings", + "portscanner", + "teen_process", + "@appium/eslint-config-appium-ts", + "@appium/tsconfig", + "@types/bluebird", + "@types/portscanner", + "appium", + "mobile testing", + "@azure/identity", + "@azure/core-auth", + "@azure/functions", + "diagnostic-channel", + "@opentelemetry/core", + "@azure/functions-old", + "@opentelemetry/api-logs", + "@opentelemetry/sdk-logs", + "@opentelemetry/resources", + "@opentelemetry/sdk-metrics", + "@azure/monitor-opentelemetry", + "@opentelemetry/sdk-trace-base", + "@opentelemetry/sdk-trace-node", + "diagnostic-channel-publishers", + "@opentelemetry/otlp-exporter-base", + "@opentelemetry/semantic-conventions", + "@azure/monitor-opentelemetry-exporter", + "@opentelemetry/exporter-logs-otlp-http", + "@opentelemetry/exporter-trace-otlp-http", + "@opentelemetry/exporter-metrics-otlp-http", + "@opentelemetry/exporter-metrics-otlp-proto", + "@azure/opentelemetry-instrumentation-azure-sdk", + "@types/long", + "@types/microsoft__typescript-etw", + "exception monitoring", + "request monitoring", + "performance monitoring", + "application insights", + "microsoft", + "azure", + "cloud", + "tracing", + "telemetry", + "analytics", + "apm", + "@aws-sdk/credential-provider-node", + "@aws-sdk/hash-node", + "@aws-sdk/protocol-http", + "@aws-sdk/signature-v4", + "@aws-sdk/types", + "aws-xray-sdk-core", + "@aws-amplify/amplify-appsync-simulator", + "constructs", + "prettier-plugin-organize-attributes", + "projen", + "appsync", + "aws", + "gql", + "lambda", + "xray", + "archiver-utils", + "buffer-crc32", + "readdir-glob", + "zip-stream", + "archiver-jsdoc-theme", + "stream-bench", + "stream", + "@babel/plugin-syntax-class-properties", + "option", + "define-properties", + "es-abstract", + "es-shim-unscopables", + "@es-shims/api", + "@ljharb/eslint-config", + "encoding", + "has-strict-mode", + "Array.prototype.flatMap", + "flatMap", + "array", + "ESnext", + "flatten", + "Array.prototype.flatten", + "es-shim API", + "arrayify", + "convert", + "value", + "ensure", + "is-nan", + "object-is", + "array-fill", + "fn.name", + "is-buffer", + "propget", + "pruddy-error", + "assertion", + "asserts", + "shouldjs", + "unit testing", + "babel-minify", + "rollup-plugin-npm", + "babel-preset-es2017", + "native-promise-only", + "eslint-plugin-prefer-arrow", + "babel-plugin-syntax-async-generators", + "callback", + "@types/tap", + "await", + "listen", + "then-sleep", + "@babel/node", + "@pika/pack", + "pika-plugin-build-web-babel", + "pika-plugin-ts-types", + "validate", + "libnpx", + "node-cleanup", + "npm-lockfile", + "find-package-json", + "audit", + "lockfile", + "shrinkwrap", + "import-cwd", + "parse-github-url", + "babel-plugin-rewire", + "auto", + "automatic", + "changelog", + "change", + "git", + "commit", + "commits", + "detective", + "detective-es6", + "is-builtin-module", + "package-json", + "sync-exec", + "package", + "fraction.js", + "prefix", + "@vercel/nft", + "arrgv", + "callsites", + "cbor", + "chunkd", + "ci-parallel-vars", + "code-excerpt", + "common-path-prefix", + "concordance", + "currently-unhandled", + "emittery", + "ignore-by-default", + "matcher", + "memoize", + "package-config", + "resolve-cwd", + "supertap", + "temp-dir", + "@sindresorhus/tsconfig", + "🦄", + "concurrent", + "parallel", + "fast", + "promises", + "function", + "generators", + "yield", + "observable", + "observables", + "webpack-log", + "empty-module", + "ps-node", + "loader", + "ieee754", + "jmespath", + "hash-test-vectors", + "insert-module-globals", + "amazon", + "ec2", + "simpledb", + "s3", + "sqs", + "ses", + "sns", + "route53", + "rds", + "elasticache", + "cloudfront", + "fps", + "cloudformation", + "cloudwatch", + "dynamodb", + "iam", + "swf", + "autoscaling", + "cloudsearch", + "elb", + "loadbalancing", + "emr", + "mapreduce", + "importexport", + "storagegateway", + "workflow", + "vpc", + "beanstalk", + "glacier", + "kinesis", + "cloudtrail", + "waf", + "memoizee", + "@deque/dot", + "colorjs.io", + "typedarray", + "emoji-regex", + "grunt-babel", + "revalidator", + "sri-toolbox", + "serve-handler", + "grunt-bytesize", + "weakmap-polyfill", + "clean-jsdoc-theme", + "css-selector-parser", + "@axe-core/webdriverjs", + "conventional-commits-parser", + "eslint-plugin-mocha-no-only", + "Accessibility", + "axe", + "proxy-from-env", + "dev-null", + "formdata-node", + "stream-throttle", + "karma-jasmine-ajax", + "string-replace-async", + "abortcontroller-polyfill", + "rollup-plugin-bundle-size", + "@rollup/plugin-multi-entry", + "rollup-plugin-auto-external", + "istanbul-instrumenter-loader", + "ajax", + "browserify-mime", + "json-edm-parser", + "md5.js", + "batchflow", + "factor-bundle", + "karma-env-preprocessor", + "storage", + "output-file-sync", + "v8flags", + "babel-code-frame", + "babel-helpers", + "babel-messages", + "private", + "babel-helper-transform-fixture-test-runner", + "eslint-config-babel", + "trim-right", + "try-resolve", + "babel-preset-jest", + "babel-plugin-transform-export-extensions", + "babel-preset-power-assert", + "conventional-github-releaser", + "module.exports", + "airbnb-js-shims", + "babel-plugin-transform-replace-object-assign", + "dynamic", + "import", + "@umijs/test", + "babel-preset-umi", + "react-toolbox", + "@istanbuljs/load-nyc-config", + "istanbul-lib-instrument", + "test-exclude", + "pmock", + "instrumentation", + "require-package-name", + "@babel/plugin-proposal-function-bind", + "@babel/preset-stage-0", + "lodash-bound", + "lodash-compat", + "cherry-pick", + "find-babel-config", + "prettier-eslint-cli", + "resolver", + "alias", + "rewrite", + "rename", + "mapping", + "babel-plugin-tester", + "babel-helper-remap-async-to-generator", + "babel-plugin-syntax-async-functions", + "babel-helper-function-name", + "babel-plugin-syntax-class-properties", + "babel-plugin-syntax-decorators", + "es7", + "babel-plugin-transform-strict-mode", + "babel-plugin-syntax-object-rest-spread", + "babel-helper-builder-react-jsx", + "@babel/preset-flow", + "babel-plugin-flow-react-proptypes", + "pkgfiles", + "minification", + "propTypes", + "regenerator-transform", + "@babel/plugin-proposal-numeric-separator", + "@babel/plugin-transform-property-mutators", + "@babel/plugin-proposal-optional-catch-binding", + "@babel/plugin-proposal-nullish-coalescing-operator", + "babel-plugin-check-es2015-constants", + "babel-plugin-syntax-trailing-function-commas", + "babel-plugin-transform-es2015-arrow-functions", + "babel-plugin-transform-es2015-block-scoped-functions", + "babel-plugin-transform-es2015-classes", + "babel-plugin-transform-es2015-computed-properties", + "babel-plugin-transform-es2015-destructuring", + "babel-plugin-transform-es2015-duplicate-keys", + "babel-plugin-transform-es2015-for-of", + "babel-plugin-transform-es2015-function-name", + "babel-plugin-transform-es2015-literals", + "babel-plugin-transform-es2015-modules-amd", + "babel-plugin-transform-es2015-modules-systemjs", + "babel-plugin-transform-es2015-modules-umd", + "babel-plugin-transform-es2015-object-super", + "babel-plugin-transform-es2015-parameters", + "babel-plugin-transform-es2015-shorthand-properties", + "babel-plugin-transform-es2015-spread", + "babel-plugin-transform-es2015-sticky-regex", + "babel-plugin-transform-es2015-typeof-symbol", + "babel-plugin-transform-es2015-unicode-regex", + "babel-plugin-transform-exponentiation-operator", + "electron-to-chromium", + "babel-preset-flow", + "babel-plugin-transform-react-display-name", + "babel-plugin-transform-react-jsx-source", + "babel-plugin-transform-react-jsx-self", + "@babel/plugin-proposal-private-methods", + "babel-plugin-transform-do-expressions", + "babel-plugin-transform-function-bind", + "babel-plugin-transform-class-constructor-call", + "babel-plugin-transform-decorators", + "babel-plugin-transform-async-generator-functions", + "home-or-tmp", + "esutils", + "to-fast-properties", + "lodash.zipobject", + "babel-plugin-transform-node-env-inline", + "babel-plugin-transform-flow-strip-types", + "unicode-9.0.0", + "model", + "view", + "@purtuga/esm-webpack-plugin", + "@types/validator", + "@web/test-runner-browserstack", + "@web/test-runner-junit-reporter", + "otpauth", + "backend-as-a-service", + "grunt-template", + "codec", + "decoder", + "encoder", + "base64", + "basic", + "auth", + "authorization", + "basicauth", + "sorted-object", + "ministructure", + "sinatra", + "orange sms", + "node-gyp-build", + "prebuildify", + "encryption", + "crypt", + "hash", + "esm2umd", + "pomelo-logger", + "di", + "IoC", + "AOP", + "dependency", + "injection", + "consistent", + "hot reload", + "front-backend", + "sharable codes", + "dependency injection", + "asynchronous script loading", + "magic, self-described javaScript objects", + "beautify", + "art-near-room-catch", + "blanket-line", + "born-greatly-explain3", + "bring-water-silence", + "brush-bigger-afternoon0", + "column-wore-meet-war", + "compare-breeze-mad2", + "did-straight-sister-sail", + "excitement-tonight-dead", + "gain-pleasant-prepare", + "industrial-public-immediately-until", + "is-straight-web3-attack", + "known-wet-thirty-gave", + "listen-private-thee6", + "mainly-cent", + "mountain-quarter-sit8", + "mouse-bat-web3-present", + "needs-supper-anything", + "percent-impossible-score", + "rocket-location-calm-valley", + "seldom-fire-web3-running", + "shade-swim-shells1", + "spider-melted-chemical", + "stretch-onto-driver7", + "tiny-dream-supply5", + "tool-invented-girl-jungle", + "we-hunt-process", + "web3-automobile7", + "whether-dangerous", + "ansicolors", + "ignorepatterns", + "response-stream", + "script-injector", + "find-global-packages", + "jsl", + "dotpathlookup", + "simplehttpserver", + "platform", + "docdown", + "qunit-extras", + "performance", + "speed", + "@beyond-js/specifier-parser", + "@beyond-js/fs", + "@beyond-js/bee", + "ansi-to-html", + "concat-with-sourcemaps", + "json-format", + "resolve-package-path", + "uimport", + "global-modules", + "universal", + "universal javascript", + "universal typescript", + "isomorphic", + "isomorphic javascript", + "isomorphic typescript", + "sigle page", + "spa", + "modular development", + "microfrontend", + "micro frontend", + "microservices", + "micro services", + "hmr", + "hot module replacement", + "ssr", + "server side rendering", + "typescript packager", + "JAMStack", + "real time", + "react framework", + "ssr react framework", + "vue framework", + "ssr vue framework", + "svelte framework", + "ssr svelte framework", + "websockets", + "check-types", + "hoopy", + "tryer", + "please-release-me", + "spooks", + "streamify", + "stringify", + "serialise", + "serialize", + "write", + "asynchronous", + "arbitrary", + "precision", + "arithmetic", + "big", + "number", + "decimal", + "float", + "biginteger", + "bigdecimal", + "bignumber", + "bigint", + "bignum", + "file-uri-to-path", + "addon", + "gyp", + "c", + "c++", + "@noble/hashes", + "@antv/component", + "@antv/g2", + "@antv/g2plot", + "@antv/util", + "d3-color", + "react-reconciler", + "@antv/data-set", + "@babel/preset-es2015", + "@storybook/addon-info", + "@storybook/addon-knobs", + "@storybook/addon-options", + "@umijs/fabric", + "@welldone-software/why-did-you-render", + "aphrodite", + "babel-plugin-inline-react-svg", + "babel-plugin-inline-svg", + "bx-jest-electron", + "declaration-bundler-webpack-plugin", + "git-directory-deploy", + "imports-loader", + "moment-jalaali", + "react-with-styles-interface-aphrodite", + "react-with-styles-interface-css-compiler", + "snapshot-diff", + "g2", + "@types/readable-stream", + "buffers", + "awesomesauce", + "falafel", + "foreach", + "coffee-react", + "uglify-save-license", + "curses", + "tui", + "tput", + "terminfo", + "termcap", + "ansi-term", + "drawille-canvas-blessed-contrib", + "map-canvas", + "marked-terminal", + "memory-streams", + "picture-tuber", + "sparkline", + "term-canvas", + "x256", + "@types/blessed", + "block", + "loop", + "kefir", + "baconjs", + "promises-a", + "promises-aplus", + "deferred", + "deferreds", + "future", + "flow control", + "dsl", + "fluent interface", + "standardx", + "BN", + "Big number", + "BigNum", + "Modulo", + "Montgomery", + "create-error", + "bookshelf-jsdoc-theme", + "postgresql", + "datamapper", + "active record", + "error", + "@types/mime", + "@astrojs/mdx", + "@astrojs/check", + "@astrojs/prism", + "@astrojs/sitemap", + "astro-auto-import", + "prettier-plugin-astro", + "@astrojs/markdown-remark", + "mincer", + "eyeglass-module", + "box", + "boxes", + "border", + "quote-stream", + "static-module", + "browserify-transform", + "readFileSync", + "asset", + "heimdalljs", + "array-equal", + "fs-tree-diff", + "broccoli-plugin", + "mocha-eslint", + "release-it-lerna-changelog", + "merge-trees", + "broccoli-fixture", + "copy", + "broccoli-fixturify", + "multidep", + "ts-docs-gen", + "tslint-plugin-prettier", + "browser-sync-client", + "browser-sync-ui", + "bs-recipes", + "dev-ip", + "easy-extender", + "eazy-logger", + "resp-modifier", + "bs-snippet-injector", + "generate-changelog", + "browser sync", + "live reload", + "sync", + "subarg", + "defined", + "parents", + "deps-sort", + "duplexer2", + "htmlescape", + "module-deps", + "stream-http", + "browser-pack", + "syntax-error", + "os-browserify", + "shasum-object", + "vm-browserify", + "domain-browser", + "mkdirp-classic", + "string_decoder", + "tty-browserify", + "browser-resolve", + "browserify-zlib", + "querystring-es3", + "https-browserify", + "read-only-stream", + "stream-browserify", + "timers-browserify", + "console-browserify", + "cached-path-relative", + "constants-browserify", + "labeled-stream-splicer", + "seq", + "isstream", + "coffeeify", + "browser-unpack", + "has-object-spread", + "has-template-literals", + "make-generator-function", + "commonj-esque", + "exposify", + "mothership", + "rename-function-calls", + "test-peer-range", + "transform", + "window", + "baseline-browser-mapping", + "node-releases", + "update-browserslist-db", + "browsers", + "target", + "base-x", + "ts-standard", + "base58", + "bitcoin", + "crytography", + "decode", + "decoding", + "encode", + "litecoin", + "typescript-cached-transpile", + "acorn-dynamic-import", + "acorn-jsx", + "regexpu-core", + "console-group", + "@rollup/plugin-buble", + "test262-stream", + "transpilation", + "compilation", + "esnext", + "es2017", + "arraybuffer", + "compatible", + "dataview", + "uint8array", + "equal", + "builtin", + "built-in", + "builtins", + "bundled", + "names", + "flexbox", + "@asyncapi/specs", + "@clack/prompts", + "@oclif/plugin-warn-if-update-available", + "@stoplight/yaml", + "jsonpathly", + "mergician", + "@types/jsonpath", + "bump", + "compress", + "mv", + "dtrace-provider", + "safe-json-stringify", + "ben", + "log4j", + "streamsearch", + "@mscdex/eslint-config", + "uploads", + "multipart", + "closurecompiler", + "lxiv", + "metascript", + "pretty-hrtime", + "testjs", + "utfx", + "typed array", + "webrtc", + "byte", + "converter", + "@bcoe/v8-coverage", + "foreground-child", + "v8-to-istanbul", + "chai-jest-snapshot", + "v8", + "profiler", + "inspector", + "@types/mri", + "eslint-config-rem", + "rollup-plugin-esbuild", + "@babel/plugin-syntax-typescript", + "@cacheable/utils", + "@faker-js/faker", + "@keyv/redis", + "@vitest/spy", + "cache-manager-redis-yet", + "cacheable", + "caching", + "cache manager", + "in-memory cache", + "multi-store cache", + "ttl", + "caching layer", + "cache abstraction", + "cache middleware", + "cache strategies", + "cache wrapper", + "call-bind-apply-helpers", + "es-define-property", + "get-intrinsic", + "set-function-length", + "es", + "callbind", + "callbound", + "call", + "bind", + "bound", + "call-bound", + "camel-case", + "camel", + "case", + "dash", + "hyphen", + "separator", + "pascalcase", + "pascal-case", + "support", + "prebuild-install", + "assert-rejects", + "graphic", + "graphics", + "pixman", + "cairo", + "image", + "pdf", + "case sensitive", + "slimerjs", + "scraping", + "loupe", + "pathval", + "check-error", + "assertion-error", + "@web/dev-server-rollup", + "chai-plugin", + "assertions", + "strategy", + "@debitoor/eslint-config-debitoor", + "objects", + "subset", + "contains", + "containSubset", + "deep", + "like", + "similar", + "includes", + "superset", + "yoctodelay", + "docpress", + "git-update-ghpages", + "gulp-ava", + "gulp-uglify-es", + "random", + "mersenne", + "name", + "address", + "dice", + "param-case", + "kebab-case", + "header-case", + "c12", + "confbox", + "convert-gitmoji", + "node-fetch-native", + "ofetch", + "pkg-types", + "scule", + "std-env", + "@kurkle/color", + "@rollup/plugin-inject", + "@types/offscreencanvas", + "chartjs-adapter-luxon", + "chartjs-adapter-moment", + "chartjs-test-utils", + "eslint-config-chartjs", + "eslint-plugin-es", + "karma-safari-private-launcher", + "rollup-plugin-swc3", + "charts", + "data", + "graphs", + "domutils", + "domhandler", + "cheerio-select", + "whatwg-mimetype", + "encoding-sniffer", + "parse5-parser-stream", + "parse5-htmlparser2-tree-adapter", + "@imgix/js-core", + "@octokit/graphql", + "@vitest/eslint-plugin", + "@types/whatwg-mimetype", + "htmlparser", + "scraper", + "xml", + "node-version", + "child", + "@better-scroll/core", + "add-dom-event-listener", + "choerodon-ui-font", + "css-animation", + "css-unit-converter", + "dom-closest", + "dom-lib", + "element-resize-event", + "htmlhint", + "insert-css", + "jsbarcode", + "jsonlint", + "jsonlint-mod", + "mutationobserver-shim", + "querystringify", + "quill-delta-to-html", + "react-beautiful-dnd", + "react-codemirror2", + "react-easy-crop", + "react-image-lightbox", + "react-lazy-load", + "react-quill", + "rmc-feedback", + "smooth-scroll-into-view-if-needed", + "@babel/plugin-transform-proto-to-assign", + "@types/codemirror", + "@types/element-resize-event", + "@types/faker", + "@types/insert-css", + "@types/jsbarcode", + "@types/prettier", + "@types/qrcode.react", + "@types/react-beautiful-dnd", + "@types/react-is", + "@types/react-slick", + "bisheng-plugin-choerodon-ui", + "bisheng-plugin-description", + "bisheng-plugin-react", + "bisheng-plugin-toc", + "eslint-tinker", + "intersection-observer", + "mark-twain", + "rc-queue-anim", + "rc-scroll-anim", + "react-infinite-scroller", + "react-sublime-video", + "scrollama", + "values.js", + "vfile-message", + "webpack-filter-warnings-plugin", + "choerodon", + "readdirp", + "@paulmillr/jsbt", + "watchFile", + "watcher", + "watching", + "file", + "ci", + "continuous", + "detect", + "@ckeditor/ckeditor5-emoji", + "@ckeditor/ckeditor5-style", + "@ckeditor/ckeditor5-mention", + "@ckeditor/ckeditor5-minimap", + "@ckeditor/ckeditor5-autosave", + "@ckeditor/ckeditor5-bookmark", + "@ckeditor/ckeditor5-language", + "@ckeditor/ckeditor5-highlight", + "@ckeditor/ckeditor5-code-block", + "@ckeditor/ckeditor5-fullscreen", + "@ckeditor/ckeditor5-html-embed", + "@ckeditor/ckeditor5-page-break", + "@ckeditor/ckeditor5-theme-lark", + "@ckeditor/ckeditor5-word-count", + "@ckeditor/ckeditor5-show-blocks", + "@ckeditor/ckeditor5-html-support", + "@ckeditor/ckeditor5-markdown-gfm", + "@ckeditor/ckeditor5-remove-format", + "@ckeditor/ckeditor5-source-editing", + "@ckeditor/ckeditor5-horizontal-line", + "@ckeditor/ckeditor5-find-and-replace", + "@ckeditor/ckeditor5-restricted-editing", + "@ckeditor/ckeditor5-special-characters", + "classname", + "minifier", + "@chrisblossom/eslint-config", + "@types/read-pkg-up", + "temp-sandbox", + "clean", + "parent-module", + "uncache", + "uncached", + "unrequire", + "delete", + "remove", + "rm", + "opts", + "parseopt", + "opt", + "argsparse", + "optparse", + "autocomplete", + "autocompletion", + "d", + "es6-iterator", + "timers-ext", + "eslint-config-medikoo", + "git-list-updated", + "github-release-from-cc-changelog", + "prettier-elastic", + "tad", + "toggle", + "display", + "show", + "hide", + "string-length", + "spinner", + "spinners", + "expresso", + "ansi-256-colors", + "git-rev", + "growl", + "line", + "tables", + "tabular", + "jest-runner-eslint", + "lerna-changelog", + "truncate", + "ellipsis", + "limit", + "width", + "cardinal", + "hyperlinker", + "@oclif/screen", + "extract-stack", + "object-treeify", + "@oclif/linewrap", + "natural-orderby", + "password-prompt", + "@types/strip-ansi", + "@types/ansi-styles", + "@types/extract-stack", + "@types/rollup", + "@yarnpkg/core", + "@yarnpkg/fslib", + "eslint-plugin-arca", + "rollup-plugin-multi-input", + "parsing", + "argument", + "good-listener", + "select", + "tiny-emitter", + "cut", + "clipboard-image", + "is-wayland", + "is64bit", + "powershell-utils", + "paste", + "copy-paste", + "pasteboard", + "pbcopy", + "clip", + "xclip", + "xsel", + "command line interface", + "progress bar", + "istanbul-harmony", + "coro", + "coroutine", + "mask", + "ignore-walk", + "teeny-request", + "urlgrey", + "code-coverage", + "codecov.io", + "@codemirror/lint", + "@codemirror/view", + "@codemirror/state", + "@codemirror/search", + "@codemirror/commands", + "@codemirror/language", + "@codemirror/autocomplete", + "@codemirror/buildhelper", + "google-closure-compiler-js", + "language", + "jison", + "wcwidth", + "column", + "exists", + "array-back", + "find-replace", + "typical", + "options", + "chalk-template", + "table-layout", + "usage", + "is-utf8", + "cachedir", + "find-node-modules", + "mocha-multi-reporters", + "@istanbuljs/nyc-config-babel", + "cz-conventional-changelog-default-export", + "conventional changelog", + "es2015-tag", + "es6-tag", + "heredoc", + "indent", + "indents", + "literal", + "multi", + "multiline", + "normalize", + "one", + "oneline", + "single", + "singleline", + "strings", + "strip", + "tag", + "tagged", + "emitter", + "emit", + "listener", + "observe", + "compressible", + "on-headers", + "gzip", + "deflate", + "brotli", + "buffer-from", + "ctrlc-wrapper", + "coveralls-next", + "@types/shell-quote", + "@hirez_io/observer-spy", + "eslint-plugin-import-lite", + "eslint-config-flat-gitignore", + "bash", + "sh", + "cson", + "faceoff", + "hjson", + "x2js", + "conf", + "node-config", + "config-node", + "env", + "atomically", + "is-safe-filename", + "xdg-basedir", + "settings", + "preferences", + "persist", + "persistent", + "save", + "rack", + "flash", + "kruptein", + "mongo", + "session", + "vite-plugin-dts", + "defu", + "is-unicode-supported", + "sentencer", + "reporter", + "elegant", + "clack", + "stacktrace", + "eco", + "ect", + "eta", + "slm", + "dust", + "jazz", + "just", + "mote", + "qejs", + "twig", + "vash", + "jqtpl", + "twing", + "hamlet", + "hamljs", + "liquor", + "plates", + "teacup", + "toffee", + "walrus", + "htmling", + "ractive", + "whiskers", + "tinyliquid", + "velocityjs", + "haml-coffee", + "liquid-node", + "arc-templates", + "dustjs-helpers", + "swig-templates", + "dustjs-linkedin", + "bracket-template", + "engine", + "rfc6266", + "rfc7231", + "@types/normalize-package-data", + "fd-package-json", + "normalize-package-data", + "@conventional-changelog/git-client", + "conventional-changelog-writer", + "conventional-changelog-preset-loader", + "conventional", + "tempfile", + "add-stream", + "compare-func", + "conventionalcommits.org", + "preset", + "inline-source-map", + "sourcemap", + "source", + "map", + "@borderless/ts-scripts", + "top-sites", + "cookies", + "sign", + "unsign", + "toggle-selection", + "@brettz9/node-static", + "selenium-server-standalone-jar", + "is-gzip", + "@types/glob-parent", + "@types/normalize-path", + "eslint-config-webpack", + "@types/serialize-javascript", + "transfer", + "move", + "noms", + "qr", + "qrcode", + "simple qr", + "npm qr JavaScript", + "js qr code", + "corcojs-qrcode-sample", + "logo", + "simple qrcode", + "cordova-common", + "cordova-create", + "cordova-lib", + "@cordova/eslint-config", + "ES3", + "ES5", + "ES6", + "ES7", + "ES2015", + "ES2016", + "ES2017", + "ES2018", + "ES2019", + "ES2020", + "ES2021", + "ES2022", + "ES2023", + "ES2024", + "ECMAScript 3", + "ECMAScript 5", + "ECMAScript 6", + "ECMAScript 7", + "ECMAScript 2015", + "ECMAScript 2016", + "ECMAScript 2017", + "ECMAScript 2018", + "ECMAScript 2019", + "ECMAScript 2020", + "ECMAScript 2021", + "ECMAScript 2022", + "ECMAScript 2023", + "ECMAScript 2024", + "Map", + "Set", + "WeakMap", + "WeakSet", + "TypedArray", + "Promise", + "Observable", + "Symbol", + "Iterator", + "AsyncIterator", + "URL", + "URLSearchParams", + "queueMicrotask", + "setImmediate", + "structuredClone", + "ponyfill", + "parse-json", + "@types/parse-json", + "eslint-config-davidtheclark-node", + "remark-preset-davidtheclark", + "load", + "lcov-parse", + "log-driver", + "cpy", + "cp", + "files", + "file-system", + "quick", + "contents", + "tslog", + "hpagent", + "seenreq", + "http2-wrapper", + "@types/got", + "spider", + "crc16ccitt", + "crc16kermit", + "crc16modbus", + "crc16", + "crc16xmodem", + "crc1", + "crc24", + "crc32", + "crc81wire", + "crc8", + "crc8dvbs2", + "crcjam", + "cipher-base", + "ripemd160", + "sha.js", + "async-traverse-tree", + "css-url-parser", + "data-uri-to-buffer", + "group-args", + "inline-critical", + "oust", + "penthouse", + "postcss-discard", + "postcss-image-inliner", + "postcss-url", + "normalize-newline", + "stream-array", + "optimization", + "@fast-check/jest", + "@insurgent/commitlint-config", + "@insurgent/conventional-changelog-preset", + "@semantic-release/commit-analyzer", + "@semantic-release/npm", + "@semantic-release/release-notes-generator", + "@swc/jest", + "node cron", + "node-cron", + "schedule", + "cronjob", + "cron job", + "timer", + "crontab", + "@prantlf/jsonlint", + "@prettier/plugin-xml", + "@secretlint/secretlint-rule-github", + "@secretlint/secretlint-rule-npm", + "@stryker-mutator/core", + "@stryker-mutator/tap-runner", + "@types/bun", + "eslint-plugin-array-func", + "eslint-plugin-no-unsanitized", + "jsr", + "metalint", + "secretlint", + "yaml-lint", + "@cropper/elements", + "@cropper/utils", + "crop", + "zoom", + "rotate", + "scale", + "cropper", + "cropper.js", + "image-cropping", + "image-viewing", + "image-processing", + "cropper-element", + "custom-element", + "web-component", + "@epic-web/invariant", + "@epic-web/config", + "@types/cross-spawn", + "zshy", + "cross-environment", + "environment variable", + "windows", + "cross-platform", + "rollup-plugin-esbuild-minify", + "path-key", + "shebang-command", + "babel-preset-moxy", + "eslint-config-moxy", + "spawn", + "spawnSync", + "path-ext", + "shebang", + "cmd", + "execute", + "browserify-cipher", + "browserify-sign", + "create-ecdh", + "create-hmac", + "diffie-hellman", + "hash-base", + "pbkdf2", + "public-encrypt", + "randomfill", + "pseudorandombytes", + "security", + "Hash", + "MD5", + "SHA1", + "SHA-1", + "SHA256", + "SHA-256", + "RC4", + "Rabbit", + "AES", + "DES", + "PBKDF2", + "HMAC", + "OFB", + "CFB", + "CTR", + "CBC", + "Base64", + "Base64url", + "eslint-config-groupon", + "nlm", + "@cspell/cspell-json-reporter", + "@cspell/cspell-performance-monitor", + "@cspell/cspell-pipe", + "@cspell/cspell-types", + "@cspell/cspell-worker", + "@cspell/dynamic-import", + "@cspell/url", + "cspell-config-lib", + "cspell-dictionary", + "cspell-gitignore", + "cspell-glob", + "cspell-io", + "cspell-lib", + "fast-json-stable-stringify", + "flatted", + "spell", + "checker", + "spelling", + "spell checker", + "spelling checker", + "lint", + "source-map-resolve", + "@mdn/browser-compat-data", + "@rollup/plugin-dynamic-import-vars", + "sorter", + "property", + "order", + "@swc-node/register", + "changelog-verify", + "eslint-config-nitpick", + "github-release-from-changelog", + "isomorphic-unfetch", + "rolldown-plugin-dts", + "version-changelog", + "write-json-file", + "functions", + "postcss-modules-extract-imports", + "postcss-modules-scope", + "@webpack-contrib/eslint-config-webpack", + "@swc/css", + "@parcel/css", + "@types/csso", + "@types/clean-css", + "cssnano-preset-simple", + "webpack-plugin", + "minimize", + "minimizer", + "optimize", + "optimizer", + "boolbase", + "@types/boolbase", + "cheerio-soupselect", + "sizzle", + "clap", + "json-to-ast", + "walker", + "lexer", + "web-features", + "features", + "stages", + "identifier", + "cssnano-preset-default", + "cssnano-preset-advanced", + "cssnano-preset-lite", + "optimise", + "optimisation", + "@asamuzakjp/css-color", + "@csstools/css-syntax-patches-for-csstree", + "@domenic/eslint-config", + "@webref/css", + "CSS", + "CSSStyleDeclaration", + "StyleSheet", + "@tsconfig/node24", + "@types/chokidar", + "@types/turndown", + "csrf", + "tokens", + "tsv", + "generation", + "object", + "csv-spectrum", + "pad", + "@types/lodash.set", + "csv parser", + "parse csv", + "csv to json", + "csv convert", + "tojson", + "convert csv to json", + "csv-json", + "duration", + "stack-chain", + "is-generator", + "stacktrace-js", + "serialize-error", + "cucumber-expressions", + "cucumber-tag-expressions", + "ansi-html", + "eslint-plugin-testcafe", + "riteway", + "updtr", + "guid", + "id", + "uid", + "unique id", + "hasha", + "ospath", + "blob-util", + "executable", + "@cypress/xvfb", + "@types/sizzle", + "@cypress/request", + "request-progress", + "cypress.io", + "mocks", + "spies", + "stubs", + "longest", + "conventional-commit-types", + "d3-dsv", + "d3-geo", + "d3-axis", + "d3-drag", + "d3-ease", + "d3-path", + "d3-time", + "d3-zoom", + "d3-brush", + "d3-chord", + "d3-fetch", + "d3-force", + "d3-timer", + "d3-format", + "d3-random", + "d3-contour", + "d3-polygon", + "d3-delaunay", + "d3-dispatch", + "d3-quadtree", + "d3-hierarchy", + "d3-transition", + "d3-interpolate", + "d3-time-format", + "d3-scale-chromatic", + "topojson-client", + "@observablehq/runtime", + "visualization", + "internmap", + "d3-module", + "histogram", + "bisect", + "shuffle", + "statistics", + "search", + "sort", + "selection", + "data-join", + "dable", + "tailwind css", + "tailwind react", + "tailwind vue", + "tailwind plugin", + "tailwind component", + "tailwind next", + "tailwind nuxt", + "tailwind svelte", + "tailwind css plugin", + "tailwind astro", + "tailwind laravel", + "tailwind rails", + "laravel", + "nuxt", + "css library", + "reverse", + "arguments", + "binary", + "opposite", + "invert", + "switch", + "construct", + "@captemulation/get-parameter-names", + "json-schema-faker-bb", + "request-debug", + "rss-parser", + "swagger-express-middleware", + "bun", + "cloc", + "js-fns", + "jscodeshift", + "@date-fns/tz", + "@date-fns/utc", + "@date-fns/docs", + "@size-limit/esbuild", + "typedoc-plugin-missing-exports", + "babel-plugin-replace-import-extension", + "gzip-size-cli", + "require-directory", + "sleep", + "async wrapper", + "debouncing", + "throttle", + "invoke", + "limited", + "interval", + "rate", + "batch", + "rate-limit", + "debugger", + "decamelcase", + "lowercase", + "decompress-tar", + "decompress-tarbz2", + "decompress-targz", + "decompress-unzip", + "strip-dirs", + "is-jpg", + "bz2", + "bzip2", + "extract", + "tar.bz", + "tar.gz", + "@types/babel-plugin-macros", + "console-fail-test", + "eslint-plugin-deprecation", + "eslint-plugin-no-only-tests", + "eslint-plugin-perfectionist", + "eslint-plugin-yml", + "jsonc-eslint-parser", + "npm-package-json-lint-config-default", + "prettier-plugin-curly", + "should-semantic-release", + "yaml-eslint-parser", + "multi-line string", + "duplicates", + "dupes", + "remove duplicates", + "distinct", + "deduplicate", + "deduplication", + "is-obj", + "obj", + "assign", + "recursive", + "key", + "keys", + "values", + "prop", + "json-ptr", + "difference", + "compare", + "change-tracking", + "kewlr", + "simple-assert", + "lcov-result-merger", + "eslint-config-strict", + "@js-temporal/polyfill", + "eslint-plugin-filenames", + "chai util", + "deep equal", + "object equal", + "array-buffer-byte-length", + "es-get-iterator", + "is-arguments", + "is-array-buffer", + "is-date-object", + "is-regex", + "is-shared-array-buffer", + "regexp.prototype.flags", + "side-channel", + "which-boxed-primitive", + "which-collection", + "which-typed-array", + "available-typed-arrays", + "has-proto", + "has-typed-arrays", + "equality", + "is-mergeable-object", + "jsmd", + "is-path-cwd", + "is-path-inside", + "presentable-error", + "folders", + "directories", + "destroy", + "trash", + "unlink", + "cleaning", + "cleanup", + "rmrf", + "rmdir", + "gulpfriendly", + "folder", + "directory", + "filesystem", + "temp-write", + "random-int", + "unlimited-timeout", + "in-range", + "time-span", + "defer", + "stall", + "timeout", + "settimeout", + "tick", + "threshold", + "range", + "callsite", + "deps-regex", + "is-core-module", + "@vue/compiler-sfc", + "patch-version", + "check", + "unused", + "packages", + "deprecate", + "deprecated", + "is-relative", + "read-package-json", + "detective-cjs", + "indentation", + "infer", + "identify", + "space", + "tab", + "@eggjs/tsconfig", + "egg-bin", + "eslint-config-egg", + "mm", + "tshy-after", + "port", + "jsdiff", + "patch", + "@profoundlogic/hogan", + "@eslint/json", + "@types/hogan.js", + "@types/nopt", + "all-contributors-cli", + "handlebars-loader", + "image-webpack-loader", + "is-ci-cli", + "side", + "side-by-side", + "line-by-line", + "character", + "difftohtml", + "colorized", + "data-structure-typed", + "eslint-import-resolver-alias", + "Directed Graph", + "directed graph", + "directedgraph", + "directed-graph", + "directed", + "Directed", + "digraph", + "java script", + "JavaScript", + "type script", + "vertex", + "Vertex", + "edge", + "Edge", + "graph theory", + "Graph Theory", + "graph structure", + "weighted", + "Weighted", + "unweighted", + "Unweighted", + "adjacency", + "Adjacency", + "connectivity", + "cycle", + "acyclic", + "traversal", + "depth", + "Depth", + "breadth", + "Breadth", + "first", + "depth first search", + "dfs", + "DFS", + "breadth first search", + "breadth-first search", + "bfs", + "BFS", + "graph algorithms", + "graph representation", + "connectivity matrix", + "adjacency list", + "adjacency matrix", + "matrix", + "node degree", + "sparse graph", + "dense graph", + "directed cycle", + "directed acyclic graph", + "DAG", + "topologic", + "topological", + "sorting", + "strongly connected components", + "weighted digraph", + "directed weighted edge", + "structure", + "structures", + "data structure", + "datastructure", + "data-structure", + "data structures", + "datastructures", + "data-structures", + "in data structures", + "in data structure", + "DataStructure", + "DataStructures", + "iterative", + "Node.js", + "CommonJS", + "UMD", + "esmodule", + "java.util", + "c++ stl", + "c++ std", + "Python collections", + "System.Collections.Generic", + "STL", + "stl", + "collection", + "Collection", + "Collections", + "insertion", + "deletion", + "OOP", + "@discordjs/voice", + "backend-manager", + "productivity", + "@discordjs/ws", + "lodash.snakecase", + "@discordjs/builders", + "@discordjs/formatters", + "@discordjs/docgen", + "bot", + "cache-point", + "common-sequence", + "file-set", + "walk-back", + "dmd-plugin-example", + "jsdoc2md", + "agnostic", + "dnd", + "drag", + "drop", + "dnode-protocol", + "jsonify", + "weak", + "rpc", + "callbacks", + "doc-detective-common", + "doc-detective-resolver", + "@ffmpeg-installer/ffmpeg", + "@puppeteer/browsers", + "appium-chromium-driver", + "appium-geckodriver", + "appium-safari-driver", + "geckodriver", + "jq-web", + "json-schema-faker", + "posthog-node", + "literate", + "mecano", + "parameters", + "@balena/dockerignore", + "@grpc/grpc-js", + "@grpc/proto-loader", + "docker-modem", + "docker", + "docker.io", + "@bevry/pluginloader", + "ambi", + "ansistyles", + "bal-util", + "caterpillar", + "docmatter", + "docpad-baseplugin", + "eachr", + "envfile", + "errlop", + "event-emitter-grouped", + "extendr", + "extract-opts", + "ignorefs", + "istextorbinary", + "jschardet", + "lazy-require", + "progress-title", + "query-engine", + "rfc-log-levels", + "safefs", + "safeps", + "scandirectory", + "taskgroup", + "typechecker", + "unbounded", + "watchr", + "@bevry/update-contributors", + "assert-helpers", + "coffeelint", + "kava", + "projectz", + "valid-directory", + "build", + "build and deployment", + "cms", + "compile", + "content management system", + "dev", + "dms", + "document management system", + "language agnostic", + "render", + "templating", + "web development", + "dependency-cruiser", + "dpdm", + "docsify.js", + "tabs", + "@textlint/markdown-to-ast", + "anchor-markdown-header", + "update-section", + "bitbucket", + "gitlab", + "ghost", + "doctrine-temporary-fork", + "konan", + "mdast-util-inject", + "micromark-util-character", + "parse-filepath", + "remark-reference-links", + "unist-builder", + "vfile-reporter", + "vfile-sort", + "chdir", + "documentation-schema", + "jsdoc3", + "big-integer", + "binary-search-bounds", + "int64-buffer", + "priorityqueuejs", + "semaphore", + "tunnel", + "cosmosdb", + "cosmos db", + "document database", + "nosql", + "database", + "crowdin-cli", + "imagemin-svgo", + "tree-node-cli", + "truncate-html", + "imagemin-optipng", + "imagemin-gifsicle", + "imagemin-jpegtran", + "filepath", + "glob-promise", + "websites", + "open source", + "autocomplete.js", + "lunr-languages", + "to-vfile", + "unist-util-is", + "offline-search", + "@4c/rollout", + "@4c/tsconfig", + "@react-bootstrap/babel-preset", + "@react-bootstrap/eslint-config", + "@react-bootstrap/eslint-config-typescript", + "karma-html2js-preprocessor", + "simulant", + "cross-browser", + "height", + "class", + "classlist", + "domelementtype", + "raster", + "png", + "@types/trusted-types", + "lodash.sample", + "qunit-tap", + "rollup-plugin-includepaths", + "mathml", + "secure", + "sanitizer", + "sanitize", + "filter", + "purify", + ".env", + "expand", + "interpolation", + "substitution", + "ext-name", + "filenamify", + "archive-type", + "is-zip", + "random-buffer", + "git-clone", + "repo", + "repository", + "tarball", + "import-from", + "parse-cmd-args", + "simple-update-notifier", + "ts-jest-resolver", + "dox", + "spawn-please", + "@types/temp", + "alex", + "babel-preset-fbjs", + "eslint-config-fbjs", + "fbjs-scripts", + "gulp-derequire", + "stats-webpack-plugin", + "webpack-stream", + "draftjs", + "richtext", + "just-extend", + "@parcel/transformer-inline-string", + "@parcel/transformer-sass", + "cypress-file-upload", + "karma-sinon-chai", + "parcel", + "dragndrop", + "drag and drop", + "file upload", + "upload", + "tsutils", + "dts-critic", + "@definitelytyped/utils", + "@definitelytyped/header-parser", + "@definitelytyped/typescript-versions", + "@types/strip-json-comments", + "@types/json-stable-stringify", + "proper-lockfile", + "db", + "elementscript", + "dw-neit-colors", + "dw-neit-cssinjs", + "dw-neit-cssinjs-utils", + "dw-neit-icons", + "dw-neit-ant-design-react-slick", + "dw-neit-rc-component-color-picker", + "dw-neit-rc-component-mutate-observer", + "dw-neit-rc-component-qrcode", + "dw-neit-rc-component-tour", + "dw-neit-rc-component-trigger", + "dw-neit-rc-cascader", + "dw-neit-rc-checkbox", + "dw-neit-rc-collapse", + "dw-neit-rc-dialog", + "dw-neit-rc-drawer", + "dw-neit-rc-dropdown", + "dw-neit-rc-field-form", + "dw-neit-rc-image", + "dw-neit-rc-input", + "dw-neit-rc-input-number", + "dw-neit-rc-mentions", + "dw-neit-rc-menu", + "dw-neit-rc-motion", + "dw-neit-rc-notification", + "dw-neit-rc-pagination", + "dw-neit-rc-picker", + "dw-neit-rc-progress", + "dw-neit-rc-rate", + "dw-neit-rc-resize-observer", + "dw-neit-rc-segmented", + "dw-neit-rc-select", + "dw-neit-rc-slider", + "dw-neit-rc-steps", + "dw-neit-rc-switch", + "dw-neit-rc-tabs", + "dw-neit-rc-textarea", + "dw-neit-rc-tree", + "dw-neit-rc-util", + "dw-neit-rc-table", + "dw-neit-rc-tooltip", + "dw-neit-rc-tree-select", + "dw-neit-rc-upload", + "@antv/g6", + "@types/pixelmatch", + "eslint-plugin-lodash", + "@eslint/core", + "control flow", + "iteration", + "zrender", + "@lang/rollup-plugin-dts", + "data-visualization", + "charting-library", + "apache", + "data-viz", + "editorconfig", + "gulp-exclude-gitignore", + "gulp-reporter", + "gulp-tap", + "linez", + "os-locale", + "@types/get-stream", + "@types/through2", + "@types/vinyl", + "@types/vinyl-fs", + "fix", + "enforce", + "gulpplugin", + "agentkeepalive", + "aliasify", + "backport", + "grunt-run", + "null-loader", + "through2-map", + "grunt-webpack", + "grunt-contrib-compress", + "@electron/get", + "lazy-val", + "dmg-builder", + "builder-util", + "app-builder-lib", + "builder-util-runtime", + "installer", + "packager", + "pack", + "nsis", + "dmg", + "pkg", + "msi", + "exe", + "setup", + "Windows", + "OS X", + "MacOS", + "Mac", + "appx", + "snap", + "flatpak", + "@electron/asar", + "@electron/notarize", + "@electron/osx-sign", + "@electron/universal", + "cross-spawn-windows-exe", + "galactus", + "get-package-info", + "junk", + "parse-author", + "rcedit", + "bundler", + "electron-download", + "home-path", + "wonderful-fetch", + "batch-processor", + "grunt-banner", + "@vue/component-compiler-utils", + "algoliasearch", + "babel-plugin-transform-vue-jsx", + "babel-regenerator-runtime", + "cp-cli", + "eslint-config-elemefe", + "eslint-plugin-json", + "file-save", + "gulp-cssmin", + "launch-editor-middleware", + "markdown-it-chain", + "select-version-cli", + "transliteration", + "uppercamelcase", + "vue-template-es2015-compiler", + "eleme", + "brorand", + "hash.js", + "hmac-drbg", + "minimalistic-assert", + "minimalistic-crypto-utils", + "grunt-mocha-istanbul", + "EC", + "Elliptic", + "curve", + "Cryptography", + "@ladjs/consolidate", + "@ladjs/i18n", + "get-paths", + "juice", + "nodemailer-sendgrid", + "preview-email", + "email", + "lad", + "lass", + "mailchimp", + "mailgun", + "mandrill", + "moonmail", + "postmark", + "sendgrid", + "@types/mailparser", + "@types/smtp-server", + "mailparser", + "smtp-server", + "@ember-tooling/blueprint-blueprint", + "@ember-tooling/blueprint-model", + "@ember/app-blueprint", + "@pnpm/find-workspace-dir", + "babel-remove-types", + "broccoli-concat", + "broccoli-config-loader", + "broccoli-config-replace", + "broccoli-debug", + "broccoli-funnel-reducer", + "broccoli-slow-trees", + "broccoli-source", + "broccoli-stew", + "calculate-cache-key-for-tree", + "capture-exit", + "clean-base-url", + "console-ui", + "content-tag", + "core-object", + "dag-map", + "ember-cli-is-package-missing", + "ember-cli-preprocess-registry", + "ensure-posix-path", + "find-yarn-workspace-root", + "heimdalljs-fs-monitor", + "heimdalljs-graph", + "heimdalljs-logger", + "is-git-url", + "is-language-code", + "markdown-it-terminal", + "p-defer", + "promise-map-series", + "promise.hash.helper", + "quick-temp", + "safe-stable-stringify", + "sane", + "sort-package-json", + "symlink-or-copy", + "tree-sync", + "watch-detector", + "yam", + "@ember-tooling/classic-build-addon-blueprint", + "@ember-tooling/classic-build-app-blueprint", + "chai-files", + "ember-cli-blueprint-test-helpers", + "ember-cli-internal-test-helpers", + "eslint-plugin-chai-expect", + "fixturify-project", + "release-plan", + "tmp-promise", + "yuidoc-ember-cli-theme", + "yuidocjs", + "app-kit", + "ember", + "ember-app-kit", + "ember.js", + "amd-name-resolver", + "babel-plugin-debug-macros", + "babel-plugin-ember-data-packages-polyfill", + "babel-plugin-ember-modules-api-polyfill", + "broccoli-babel-transpiler", + "ember-cli-babel-plugin-helpers", + "ember-cli-version-checker", + "@ember/optional-features", + "@ember/string", + "@ember/test-helpers", + "@glimmer/component", + "@glimmer/tracking", + "code-equality-assertions", + "ember-auto-import", + "ember-cli-dependency-checker", + "ember-cli-inject-live-reload", + "ember-load-initializers", + "ember-qunit", + "ember-resolver", + "ember-source", + "ember-source-channel-url", + "eslint-plugin-ember", + "loader.js", + "ember-addon", + "@ember/edition-utils", + "babel-plugin-ember-template-compilation", + "broccoli-persistent-filter", + "js-string-escape", + "@embroider/test-setup", + "ember-cli-clean-css", + "ember-styleguide", + "ember-template-lint", + "ember-try", + "eslint-plugin-qunit", + "@emmetio/abbreviation", + "@emmetio/css-abbreviation", + "snippets", + "coding", + "streams", + "finish", + "close", + "end", + "es-errors", + "safe-regex-test", + "entitify", + "entity", + "enum", + "enumeration", + "datatype", + "type", + "github-release-cli", + "yamlify-object", + "info", + "issues", + "reporting", + "diagnostics", + "array.prototype.flat", + "function.prototype.name", + "has", + "html-element-map", + "is-boolean-object", + "is-callable", + "is-number-object", + "is-string", + "is-subset", + "lodash.escape", + "object.values", + "rst-selector-parser", + "string.prototype.trim", + "shallow rendering", + "shallowRender", + "test utils", + "assertion helpers", + "airbnb-prop-types", + "object.fromentries", + "codependence", + "oxlint", + "pastoralist", + "check for es6", + "check for modules", + "es check", + "es matching", + "es version", + "ecmascript check", + "ecmascript matching", + "ecmascript version", + "js version", + "js version check", + "js version matching", + "test js version", + "test ecmascript version", + "has-bigints", + "intl-fallback-symbol", + "make-arrow-function", + "make-async-function", + "@ljharb/tsconfig", + "@types/array.prototype.flatmap", + "@types/call-bind", + "@types/foreach", + "@types/has-bigints", + "@types/has-symbols", + "@types/isarray", + "@types/make-arrow-function", + "@types/make-async-function", + "@types/make-generator-function", + "@types/object.assign", + "@types/reflect.ownkeys", + "@types/tape", + "reflect.ownkeys", + "symbol.prototype.description", + "well-known-symbols", + "fixture", + "fixtures", + "es6-symbol", + "esniff", + "next-tick", + "plain-promise", + "ecmascript5", + "ecmascript6", + "es5", + "extensions", + "ext", + "addons", + "extras", + "utilities", + "es5 shim", + "json3", + "broccoli-rollup", + "git-repo-version", + "broccoli-watchify", + "broccoli-uglify-js", + "promises-aplus-tests-phantom", + "babel6-plugin-strip-class-callcheck", + "babel-plugin-transform-es2015-constants", + "futures", + "promisify", + "promises-es6-tests", + "setPrototypeOf", + "set", + "__proto__", + "regular", + "expression", + "special", + "characters", + "bower-registry-client", + "commonjs-everywhere", + "@eslint/config-array", + "@eslint/config-helpers", + "@eslint/plugin-kit", + "@humanfs/node", + "@humanwhocodes/module-importer", + "@humanwhocodes/retry", + "esquery", + "file-entry-cache", + "imurmurhash", + "json-stable-stringify-without-jsonify", + "@trunkio/launcher", + "@types/esquery", + "eslint-plugin-expect-type", + "eslint-release", + "eslint-rule-extender", + "eslump", + "fs-teardown", + "metascraper", + "metascraper-description", + "metascraper-image", + "metascraper-logo", + "metascraper-logo-favicon", + "metascraper-title", + "node-polyfill-webpack-plugin", + "npm-license", + "yorkie", + "babel-tape-runner", + "eslint-find-rules", + "eslintconfig", + "airbnb", + "es2016", + "es2018", + "confusing-browser-globals", + "prettier-package-json", + "quality", + "linter", + "jslint", + "code style", + "strict", + "verify", + "hint", + "eslint config", + "eslint-config-xo-space", + "eslint-prettier", + "@rushstack/eslint-patch", + "JavaScript Standard Style", + "code checker", + "code linter", + "code standards", + "policy", + "standard style", + "style checker", + "style linter", + "@eslint/config-inspector", + "automd", + "eslint-typegen", + "obuild", + "@eslint/css", + "xoxo", + "hugs", + "kisses", + "happy", + "happiness", + "cabin", + "rules", + "@typescript/native-preview", + "eslint-import-context", + "is-bun-module", + "stable-hash-x", + "unrs-resolver", + "@webpack-contrib/defaults", + "commitlint-azure-pipelines-cli", + "eslint-friendly-formatter", + "enhance-visitors", + "espurify", + "micro-spelling-correcter", + "eslint-ava-rule-tester", + "eslint-rule-composer", + "ast-metadata-inferer", + "@tsconfig/node16", + "@types/caniuse-lite", + "@types/lodash.memoize", + "browserslist-config-erb", + "kangax", + "@vuepress/plugin-pwa", + "eslint4b", + "vue-eslint-editor", + "comment", + "directive", + "exported", + "eslint-env", + "eslint-enable", + "eslint-disable", + "eslint-disable-line", + "eslint-disable-next-line", + "@eslint-community/eslint-plugin-eslint-comments", + "@types/eslint-scope", + "@types/espree", + "@types/estraverse", + "eslint-config-not-an-aardvark", + "string-natural-compare", + "gitdown", + "eslint-config-canonical", + "flowtype", + "@html-eslint/eslint-plugin", + "@html-eslint/parser", + "markdown-link-check", + "@rtsao/scc", + "array-includes", + "array.prototype.findlastindex", + "doctrine", + "eslint-import-resolver-node", + "eslint-module-utils", + "object.groupby", + "string.prototype.trimend", + "@angular-eslint/template-parser", + "escope", + "fs-copy-file-sync", + "linklocal", + "lodash.isarray", + "npm-which", + "typescript-eslint-parser", + "export", + "@schemastore/package", + "babel-plugin-replace-ts-export-assignment", + "eslint-remote-tester-repositories", + "@es-joy/jsdoccomment", + "@es-joy/resolve.exports", + "are-docs-informative", + "object-deep-merge", + "parse-imports-exports", + "spdx-expression-parse", + "to-valid-identifier", + "@es-joy/escodegen", + "@es-joy/jsdoc-eslint-parser", + "@hkdobrev/run-if-changed", + "@types/spdx-expression-parse", + "babel-plugin-transform-import-meta", + "jsdoc-type-pratt-parser", + "json-schema-to-typescript", + "open-editor", + "replace", + "@ota-meshi/ast-token-store", + "diff-sequences", + "eslint-json-compat-utils", + "@changesets/changelog-github", + "@ota-meshi/eslint-plugin", + "@ota-meshi/site-kit-eslint-editor-vue", + "@types/natural-compare", + "env-cmd", + "eslint-plugin-eslint-rule-tester", + "eslint-plugin-json-schema-validator", + "eslint-plugin-node-dependencies", + "stylelint-config-recommended-vue", + "stylelint-config-standard-vue", + "stylelint-stylus", + "vite-plugin-eslint4b", + "jsonc", + "ast-types-flow", + "axobject-query", + "damerau-levenshtein", + "jsx-ast-utils", + "language-tags", + "string.prototype.includes", + "to-ast", + "eslint-config-eslint", + "eslint-plugin-es-x", + "ts-declaration-location", + "@types/globrex", + "ts-ignore-import", + "eslint-utils", + "prettier-linter-helpers", + "array.prototype.findlast", + "array.prototype.tosorted", + "es-iterator-helpers", + "string.prototype.repeat", + "@babel/plugin-syntax-do-expressions", + "@babel/plugin-syntax-function-bind", + "gfm-footnotes", + "ls-engines", + "hermes-parser", + "@types/estree-jsx", + "@tsconfig/strictest", + "refa", + "regexp-ast-analysis", + "scslre", + "@types/pako", + "eslint-plugin-pere", + "eslint-snapshot-rule-tester", + "mocha-chai-jest-snapshot", + "safe-regex", + "eslint-config-nodesecurity", + "nodesecurity", + "jsx-ast-utils-x", + "functional-red-black-tree", + "sonarjs", + "svelte-eslint-parser", + "@types/eslint-utils", + "@types/esutils", + "@types/less", + "@types/postcss-safe-parser", + "@types/stylus", + "svelte-i18n", + "sveltejs", + "eslint-plugin-import-x", + "clean-regexp", + "find-up-simple", + "regexp-tree", + "regjsparser", + "@lubien/fixture-beta-package", + "nano-spawn", + "node-style-text", + "unicorn", + "@veritem/eslint-config", + "bumpp", + "vitest eslint plugin", + "eslint plugin", + "xml-name-validator", + "@types/xml-name-validator", + "eslint-plugin-markdown-preferences", + "@types/babel__code-frame", + "importx", + "ink-testing-library", + "eslint-test", + "@types/esrecurse", + "esrecurse", + "eslint-plugin-requirejs", + "escomplex-js", + "everything.js", + "json-diff", + "karma-safaritechpreview-launcher", + "node-tick-processor", + "unicode-8.0.0", + "gulp-tag-version", + "ethereumjs-common", + "@ethereumjs/config-nyc", + "@ethereumjs/config-prettier", + "@ethereumjs/config-tsc", + "@ethereumjs/config-tslint", + "contributor", + "karma-tap", + "typestrict", + "transactions", + "ethereum-cryptography", + "rlp", + "@types/assert", + "@types/secp256k1", + "karma-typescript", + "os-tmpdir", + "es-lookup-scope", + "qs-iconv", + "eval", + "evaulate", + "from", + "pause-stream", + "stream-combiner", + "asynct", + "it-is", + "stream-spec", + "ubelt", + "flatmap", + "join", + "eventemitter", + "addEventListener", + "addListener", + "pub/sub", + "emits", + "on", + "publish", + "subscribe", + "EventEmitter", + "EventEmitter2", + "EventEmitter3", + "Events", + "reactor", + "eventEmitter", + "eventDispatcher", + "listeners", + "@sindresorhus/merge-streams", + "human-signals", + "strip-final-newline", + "yoctocolors", + "get-node", + "is-in-ci", + "is-running", + "log-process-errors", + "exec", + "subprocess", + "fork", + "execfile", + "bin", + "binaries", + "local", + "stdio", + "stderr", + "drain", + "flush", + "3584", + "@jest/expect-utils", + "@jest/get-type", + "eslint-plugin-mmkal", + "pkg-pr-new", + "type-check", + "merge-descriptors", + "pbkdf2-password", + "array-flatten", + "setprototypeof", + "automatically", + "autogenerate", + "autogenerator", + "autogenerated", + "express3", + "partials", + "express-unless", + "authn", + "authz", + "token", + "expressjs", + "helpers", + "hoare", + "cjs-mock", + "tRPC", + "RPC", + "express.js", + "code-generation", + "fully-typed", + "type-safe", + "typed-api", + "express-api", + "http-api", + "client-server", + "unit-testing", + "browser-client", + "web-development", + "web-api", + "@docusaurus/plugin-client-redirects", + "@docusaurus/preset-classic", + "sanitization", + "openapi3-ts", + "@express-zod-api/zod-plugin", + "@types/depd", + "@types/http-errors", + "@types/node-forge", + "camelize-ts", + "snakify-ts", + "dts-plugin", + "handler", + "documentation-tool", + "schema-validation", + "endpoint", + "openapi-specification", + "swagger-documentation", + "covert", + "assign-symbols", + "is-extendable", + "array-slice", + "benchmarked", + "for-own", + "kind-of", + "props", + "shallow", + "webpack-defaults", + "@types/yauzl", + "gulp-mustache", + "vinyl-transform", + "color-support", + "parse-node-version", + "console.log", + "timestamp", + "pure-rand", + "@fast-check/expect-type", + "@fast-check/poisoning", + "property-based testing", + "end-to-end testing", + "quickcheck", + "jscheck", + "jsverify", + "fuzzer", + "fuzz", + "@fast-csv/parse", + "@fast-csv/format", + "writer", + "csv writer", + "CSV", + "@nodelib/fs.stat", + "@nodelib/fs.walk", + "@nodelib/fs.macchiato", + "@types/merge2", + "@types/picomatch", + "bencho", + "eslint-config-mrmlnc", + "hereby", + "snap-shot-it", + "implementation", + "strnum", + "transformer", + "js2xml", + "json2xml", + "click", + "@fastify/ajv-compiler", + "@fastify/error", + "@fastify/fast-json-stringify-compiler", + "@fastify/proxy-addr", + "abstract-logging", + "avvio", + "fast-json-stringify", + "find-my-way", + "light-my-request", + "process-warning", + "secure-json-parse", + "toad-cache", + "@jsumners/line-reporter", + "ajv-i18n", + "ajv-merge-patch", + "autocannon", + "branch-comparer", + "fast-json-body", + "fluent-json-schema", + "h2url", + "markdownlint-cli2", + "@umijs/babel-preset-umi", + "@umijs/bundler-webpack", + "@umijs/case-sensitive-paths-webpack-plugin", + "@utoo/pack", + "@vercel/ncc", + "babel-plugin-styled-components", + "babel-plugin-transform-define", + "loader-runner", + "piscina", + "typescript-transform-paths", + "@types/loader-runner", + "@types/minimatch", + "array.prototype.foreach", + "array.prototype.join", + "array.prototype.map", + "array.prototype.push", + "array.prototype.slice", + "string.prototype.split", + "tap-parser", + "human", + "anything", + "protocol", + "fbjs-css-vars", + "setimmediate", + "@skypack/package-check", + "babel-plugin-minify-dead-code-elimination", + "in web", + "in javascript", + "in react", + "Plug & Play", + "web component", + "react components", + "ui component", + "advanced component", + "advanced feature", + "scanner", + "phonebook", + "voice", + "autofillotp", + "share", + "livelocationtracking", + "detectmylocation", + "colorpicker", + "wakelock", + "WhatsappShare", + "NetworkConnection", + "TextToSpeech", + "VoiceRecognition", + "SnapScanner", + "NetworkMonitor", + "View360", + "functional program", + "data management", + "@types/glob-to-regexp", + "dequal", + "glob-to-regexp", + "stub", + "detect-libc", + "fiber", + "thread", + "worker", + "art", + "banner", + "symbol", + "symbols", + "figure", + "fallback", + "filesaver", + "saveas", + "blob", + "@tokenizer/inflate", + "strtok3", + "token-types", + "uint8array-extras", + "@tokenizer/token", + "commonmark", + "noop-stream", + "magic", + "pic", + "picture", + "photo", + "video", + "exif", + "elf", + "macho", + "jpg", + "apng", + "gif", + "flif", + "xcf", + "cr2", + "cr3", + "orf", + "arw", + "dng", + "nef", + "rw2", + "tif", + "bmp", + "icns", + "jxr", + "psd", + "indd", + "rar", + "gz", + "7z", + "mp4", + "mid", + "mkv", + "webm", + "mov", + "avi", + "mpg", + "mp2", + "mp3", + "m4a", + "ogg", + "opus", + "flac", + "wav", + "amr", + "epub", + "mobi", + "rtf", + "woff", + "woff2", + "eot", + "ttf", + "otf", + "ttc", + "ico", + "flv", + "ps", + "xz", + "xpi", + "cab", + "deb", + "ar", + "rpm", + "Z", + "lz", + "cfb", + "mxf", + "mts", + "wasm", + "webassembly", + "blend", + "bpg", + "docx", + "pptx", + "3gp", + "j2c", + "jp2", + "jpm", + "jpx", + "mj2", + "aif", + "odt", + "ods", + "odp", + "heic", + "ics", + "pcap", + "dsf", + "lnk", + "voc", + "ac3", + "3g2", + "m4b", + "m4p", + "m4v", + "f4a", + "f4b", + "f4p", + "f4v", + "mie", + "qcp", + "asf", + "ogv", + "ogm", + "oga", + "spx", + "ogx", + "ape", + "wv", + "cur", + "nes", + "crx", + "ktx", + "dcm", + "mpc", + "arrow", + "shp", + "aac", + "mp1", + "it", + "s3m", + "xm", + "skp", + "eps", + "lzh", + "pgp", + "asar", + "chm", + "3mf", + "zst", + "jxl", + "vcf", + "jls", + "pst", + "dwg", + "parquet", + "arj", + "cpio", + "ace", + "avro", + "icc", + "fbx", + "vsdx", + "vtt", + "apk", + "drc", + "lz4", + "potx", + "xltx", + "dotx", + "xltm", + "ots", + "odg", + "otg", + "otp", + "ott", + "xlsm", + "docm", + "dotm", + "potm", + "pptm", + "jar", + "jmp", + "sav", + "ppsm", + "ppsx", + "reg", + "dat", + "size", + "readable", + "file system", + "locate-path", + "unicorn-magic", + "up", + "look-up", + "look", + "parent", + "walking", + "detect-file", + "resolve-dir", + "homedir-polyfill", + "@firebase/ai", + "@firebase/app", + "@firebase/auth", + "@firebase/util", + "@firebase/storage", + "@firebase/database", + "@firebase/analytics", + "@firebase/app-check", + "@firebase/app-types", + "@firebase/firestore", + "@firebase/functions", + "@firebase/messaging", + "@firebase/app-compat", + "@firebase/auth-compat", + "@firebase/performance", + "@firebase/data-connect", + "@firebase/installations", + "@firebase/remote-config", + "@firebase/storage-compat", + "@firebase/database-compat", + "@firebase/analytics-compat", + "@firebase/app-check-compat", + "@firebase/firestore-compat", + "@firebase/functions-compat", + "@firebase/messaging-compat", + "@firebase/performance-compat", + "@firebase/installations-compat", + "@firebase/remote-config-compat", + "Firebase", + "realtime", + "remote-config", + "@fastify/busboy", + "@firebase/database-types", + "farmhash-modern", + "google-auth-library", + "jwks-rsa", + "@firebase/api-documenter", + "@firebase/auth-types", + "@types/bcrypt", + "@types/firebase-token-generator", + "@types/request", + "@types/request-promise", + "firebase-token-generator", + "http-message-parser", + "admin", + "@apphosting/build", + "@apphosting/common", + "@electric-sql/pglite", + "@electric-sql/pglite-tools", + "@google-cloud/cloud-sql-connector", + "@google-cloud/pubsub", + "@modelcontextprotocol/sdk", + "async-lock", + "cjson", + "deep-equal-in-any-order", + "exegesis", + "exegesis-express", + "gaxios", + "libsodium-wrappers", + "lsofi", + "pg-gateway", + "pglite-2", + "proxy-agent", + "sql-formatter", + "stream-chain", + "stream-json", + "superstatic", + "triple-beam", + "universal-analytics", + "update-notifier-cjs", + "zod-to-json-schema", + "cdn", + "ssl", + "hosting", + "synchronization", + "alce", + "detect-newline", + "extend-object", + "@types/rimraf", + "matcher-collection", + "unflatten", + "nested", + "@types/acorn", + "rollup-plugin-livereload", + "rollup-plugin-serve", + "lightweight", + "byline", + "util-extend", + "markdox", + "deploy", + "deployment", + "commands", + "devops", + "ssh", + "tasks", + "sequential", + "remote", + "fabric", + "inference", + "wrapper", + "flowbite-datepicker", + "mini-svg-data-uri", + "@tailwindcss/cli", + "@tailwindcss/postcss", + "eslint-plugin-tailwindcss", + "flowbite-typography", + "prettier-plugin-tailwindcss", + "windicss", + "ui components", + "tailwind components", + "tailwind elements", + "tailwind library", + "tailwind sections", + "tailwind ui", + "tailwind angular", + "tailwind django", + "tailwind ruby on rails", + "tailwind flask", + "cjs", + "umd", + "ffmpeg", + "fbemitter", + "react-addons-test-utils", + "dispatcher", + "lolex", + "redirect", + "location", + "@types/is-callable", + "cliff", + "shush", + "flatiron", + "nssocket", + "forever-monitor", + "getopts", + "cli-testlab", + "fault tolerant", + "sysadmin", + "node-abort-controller", + "jest-circus", + "karton", + "typecheck", + "@types/babel-code-frame", + "increment", + "asynckit", + "combined-stream", + "es-set-tostringtag", + "browserify-istanbul", + "fake", + "far", + "is-node-modern", + "js-randomness-predictor", + "obake", + "dezalgo", + "@paralleldrive/cuid2", + "formdata-polyfill", + "prettier-plugin-pkgjson", + "@tunnckocore/prettier-config", + "www", + "ulpoad", + "tiny-warning", + "just-debounce-it", + "tsdx", + "react hooks", + "render props", + "higher order component", + "hoc", + "conditional", + "friendly", + "errors", + "check-dts", + "front matter", + "meta data", + "universalify", + "klaw", + "read-dir-files", + "extra", + "mkdir", + "mkdirs", + "create", + "output", + "release-assist", + "any-promise", + "thenify-all", + "mac", + "ie", + "@monaco-editor/loader", + "@sapphire/stopwatch", + "@sapphire/utilities", + "@snippetors/vuepress-plugin-tabs", + "@vuepress/plugin-google-analytics", + "monaco-editor", + "vuepress-plugin-google-adsense2", + "bitap", + "socket", + "sublime", + "sublime text", + "globule", + "grunt-benchmark", + "yeoman-test", + "yeoman-assert", + "insight", + "restangular", + "ui-router", + "foundation", + "traceur", + "haml", + "git-config", + "find-git-root", + "@merkle-open/eslint-config", + "nitro", + "modular", + "pool", + "pooling", + "inject-markdown", + "ts2mjs", + "iterator", + "iterators", + "iterable", + "reduce", + "@werkzeugkiste/eslint-config", + "@werkzeugkiste/release-config", + "install-deps-postmerge", + "semantic-release-conventional-commits", + "@cfware/lint", + "@cfware/nyc", + "if-ver", + "libtap", + "finder", + "free", + "available", + "connection", + "tcp", + "scan", + "preferred", + "chosen", + "std", + "concat", + "@sec-ant/readable-stream", + "onetime", + "precise-now", + "get", + "consume", + "readablestream", + "resolve-pkg-maps", + "tsconfig", + "tsconfig.json", + "eslint-config-bevry", + "make-deno-edition", + "deno", + "deno-edition", + "deno-entry", + "denoland", + "es2022", + "export-default", + "ifconfig", + "ipconfig", + "mac-address", + "typed", + "email-addresses", + "dir-compare", + "eslint-config-tschaub", + "lodash.clone", + "manage-path", + "opt-cli", + "spawn-command", + "chai-string", + "eslint-config-kentcdodds", + "travis-after-all", + "hook", + "@primer/octicons", + "@primer/primitives", + "@rollup/plugin-html", + "minipass", + "path-scurry", + "dirname", + "wildcard", + "min-document", + "is-identifier", + "identifiers", + "environments", + "glob-stream", + "all", + "fnmatch", + "globbing", + "globs", + "multiple", + "paths", + "wildcards", + "gitignore", + "array-series", + "array-parallel", + "magick", + "graphicsmagick", + "gfsl", + "eslint-config-standard-with-typescript", + "msmc", + "mc", + "minecraft", + "launcher", + "java", + "java edition", + "arm", + "arm-support", + "forge", + "instances-management", + "instances", + "mod", + "mods", + "mc-mod", + "mc-mods", + "modpack", + "modpack-api", + "extendable", + "nbt", + "jarmods", + "skin fix", + "ky", + "eslint-plugin-no-floating-promise", + "varlock", + "google spreadsheets", + "google sheets", + "spreadsheet", + "spreadsheets", + "sheets", + "gdata", + "drive", + "google docs", + "google drive", + "googleapis-common", + "@types/execa", + "@types/mv", + "@types/ncp", + "@types/nunjucks", + "@types/url-template", + "@types/yargs-parser", + "js-green-licenses", + "jsdoc-fresh", + "jsdoc-region-tag", + "linkinator", + "pdfmake", + "google apis", + "client library", + "@sindresorhus/is", + "byte-counter", + "cacheable-lookup", + "cacheable-request", + "decompress-response", + "form-data-encoder", + "lowercase-keys", + "p-cancelable", + "responselike", + "@hapi/bourne", + "@types/pem", + "chunk-data", + "create-cert", + "create-test-server", + "pem", + "slow-stream", + "then-busboy", + "uri", + "curl", + "wget", + "zstd", + "zstandard", + "requests", + "human-friendly", + "sassdoc", + "gulp-cli", + "sass-color-helpers", + "govuk-prototype-kit", + "govuk", + "reading", + "retries", + "handling", + "EMFILE", + "EAGAIN", + "EINVAL", + "EPERM", + "EACCESS", + "graphql-js", + "test-all-versions", + "@graphql-tools/schema", + "section-matter", + "strip-bom-string", + "ansi-green", + "delimiter-regex", + "assemble", + "coffee", + "extracting", + "front", + "frontmatter", + "matter", + "site", + "@mapbox/node-pre-gyp", + "@types/bytebuffer", + "electron-mocha", + "google-protobuf", + "poisson-process", + "grunt-legacy-log", + "grunt-legacy-util", + "grunt-known-options", + "difflet", + "temporary", + "eslint-config-grunt", + "uglify", + "init", + "make", + "gruntplugin", + "browserify-incremental", + "liftup", + "pad-stream", + "grunt-nodemon", + "simultaneous", + "perf", + "faster", + "bin-version-check", + "compass", + "connect-livereload", + "file-sync-cmp", + "csslint", + "maxmin", + "cssmin", + "min", + "jpeg", + "hooker", + "less-plugin-clean-css", + "nodeunit-x", + "uri-path", + "grunt-coveralls", + "grunt-istanbul", + "grunt-github-remove-all-releases", + "gh", + "release", + "releases", + "report", + "vow", + "@commitlint/travis-cli", + "TDD", + "grunt-continue", + "grunt-env", + "grunt-istanbul-coverage", + "grunt-cafe-mocha", + "newer", + "stack-parser", + "grunt-release", + "grunt-templates-dylang", + "notify", + "mountain lion", + "mavericks", + "linux", + "notify-send", + "preprocess", + "libsass", + "requestretry", + "sauce-tunnel", + "grunt-sauce-tunnel", + "yui", + "spritesheet-templates", + "spritesmith", + "url2", + "eslint-config-twolfson", + "foundry", + "foundry-release-git", + "foundry-release-npm", + "get-pixels", + "gmsmith", + "sprite", + "spritesheet", + "grunt-mocha-cli", + "usemin", + "@npm/types", + "@types/json5", + "@types/write-file-atomic", + "inline-fixtures", + "@guarapi/eslint-config-guarapi", + "@swc/register", + "glob-watcher", + "undertaker", + "pipeline", + "series", + "streaming", + "gulp-footer", + "html2js", + "templatecache", + "gulp-symdest", + "atom", + "atom-shell", + "prefixes", + "postcss-runner", + "lodash.chunk", + "concurrent-transform", + "@azure/storage-blob", + "delayed-stream", + "streamifier", + "rewriting", + "transformation", + "codegen", + "desugaring", + "bom", + "mark", + "utf-8", + "add", + "prepend", + "gulp-codecov.io", + "bump-regex", + "plugin-log", + "version", + "versioning", + "gulp-version", + "gulp-plugin", + "cache-swap", + "object.pick", + "change-file-extension", + "changed", + "modified", + "modification", + "updated", + "mtime", + "stat", + "cached", + "passthrough", + "minify-css", + "jshint-reporter-jscs", + "parse-import", + "rework", + "rework-import", + "rework-plugin-url", + "inline", + "slush", + "dest", + "conflict", + "webserver", + "csscomb", + "rcloader", + "csslint-stylish", + "node-version-check", + "from2-string", + "@shinnn/eslint-config-node", + "warnings", + "flatnest", + "balanced-match", + "include", + "streamfilter", + "to-absolute-glob", + "divide", + "separate", + "relative", + "pretty-remarkable", + "sections", + "prettify", + "jsftp", + "jsftp-mkdirp", + "ftp-test-server", + "gift", + "wrap-promise", + "octonode", + "read-remove-file", + "@shinnn/eslint-config-node-legacy", + "branch", + "any-shell-escape", + "strip-bom-stream", + "gulpgit", + "stream-to-array", + "nid", + "gulp-declare", + "gulp-define-module", + "gulp-wrap", + "nsdeclare", + "eventstream", + "istanbul-coveralls", + "htm", + "htmlmin", + "gulp-spawn", + "gulp-svg2ttf", + "gulp-ttf2eot", + "gulp-ttf2woff", + "gulp-ttf2woff2", + "gulp-svgicons2svgfont", + "metapak", + "streamtest", + "@types/gulp", + "metapak-nfroidure", + "gulp-match", + "ternary-stream", + "stream-exhaust", + "if", + "ternary", + "exclude", + "gulp-gm", + "imagemin-webp", + "group-array", + "strip-color", + "@commitlint/config-angular", + "inject", + "stylesheets", + "webcomponents", + "scripts", + "index", + "inline-css", + "lodash.groupby", + "istanbul-threshold-checker", + "isparta", + "unit test", + "jasmine-terminal-reporter", + "gulplog", + "has-gulplog", + "array-unique", + "capture-stream", + "plugins", + "vinyl-bufferstream", + "stream-combiner2", + "kew", + "bufferstreams", + "ng-annotate", + "develop", + "restart", + "windows notification", + "mac notification", + "notify-osd", + "easy-transform-stream", + "ENV", + "echo", + "ifdef", + "ifndef", + "eslint-watch", + "views", + "precompile", + "src", + "replacestream", + "modify-filename", + "rev-hash", + "rev-path", + "sort-keys", + "vinyl-file", + "rev", + "revving", + "revision", + "expire", + "assets", + "each-async", + "md5-hex", + "ruby", + "source-maps", + "sourcemaps", + "sftp", + "@types/fancy-log", + "@types/lodash.template", + "brotli-size", + "measure", + "@gulp-sourcemaps/identity-map", + "@gulp-sourcemaps/map-sources", + "debug-fabulous", + "hook-std", + "mississippi", + "source maps", + "strip-debug", + "accord", + "looks-same", + "svg2png", + "stack", + "vector", + "rwd", + "retina", + "rendering", + "@types/through", + "incremental", + "@types/ansi-colors", + "gulp-diff", + "@types/plugin-error", + "incremental compilation", + "array-each", + "make-error-cause", + "tape-catch", + "source-list-map", + "eslint-plugin-no-use-extend-native", + "uncss", + "useref", + "async-once", + "mock-gulp-dest", + "array-differ", + "array-uniq", + "beeper", + "lodash._reescape", + "lodash._reevaluate", + "lodash._reinterpolate", + "lodash.templatesettings", + "yazl", + "yazul", + "vinyl-zip", + "anymatch", + "proxy-middleware", + "vinyl-assign", + "pngparse", + "phantomjssmith", + "zlib", + "compressed", + "catering", + "deglob", + "find-file-up", + "find-githost", + "remark-autolink-references", + "remark-common-changelog", + "remark-lint-blockquote-indentation", + "remark-lint-checkbox-character-style", + "remark-lint-checkbox-content-indent", + "remark-lint-code-block-style", + "remark-lint-definition-case", + "remark-lint-emphasis-marker", + "remark-lint-fenced-code-marker", + "remark-lint-final-newline", + "remark-lint-hard-break-spaces", + "remark-lint-list-item-bullet-indent", + "remark-lint-list-item-indent", + "remark-lint-no-auto-link-without-protocol", + "remark-lint-no-blockquote-without-marker", + "remark-lint-no-duplicate-definitions", + "remark-lint-no-heading-content-indent", + "remark-lint-no-inline-padding", + "remark-lint-no-literal-urls", + "remark-lint-no-unused-definitions", + "remark-lint-rule-style", + "remark-lint-strong-marker", + "remark-lint-table-cell-padding", + "remark-lint-table-pipes", + "remark-lint-unordered-list-marker-style", + "remark-validate-links", + "unified-engine", + "vfile-reporter-shiny", + "git-pull-or-clone", + "fixer", + "changelogplease", + "git-tags", + "grunt-contrib-qunit", + "grunt-string-replace", + "jquery-hammerjs", + "gestures", + "neo-async", + "chai-diff", + "grunt-contrib-requirejs", + "ammo", + "shot", + "topo", + "heavy", + "mimos", + "bounce", + "catbox", + "podium", + "somever", + "subtext", + "teamwork", + "statehood", + "catbox-memory", + "wreck", + "vision", + "elements", + "flag", + "getopt", + "@types/core-js", + "get-own-property-symbols", + "typeof", + "sham", + "function-bind", + "@types/function-bind", + "@types/mock-property", + "hasOwnProperty", + "hasOwn", + "has-own", + "own", + "in", + "@ungap/structured-clone", + "hast-util-from-parse5", + "unist-util-position", + "web-namespaces", + "zwitch", + "@types/ungap__structured-clone", + "remark-api", + "hast-util", + "hast", + "unist", + "raw", + "aria-attributes", + "html-tag-names", + "safe", + "bcp-47-match", + "devlop", + "direction", + "selectall", + "estree-util-attach-comments", + "estree-util-is-identifier-name", + "mdast-util-mdx-expression", + "mdast-util-mdx-jsx", + "mdast-util-mdxjs-esm", + "esast-util-from-js", + "ccount", + "tostring", + "sval", + "solid", + "unist-util-find-after", + "estree-util-build-jsx", + "svg-tag-names", + "hyperscript", + "vdom", + "virtual", + "regexgen", + "sort-object", + "content-security-policy", + "cross-origin-embedder-policy", + "cross-origin-opener-policy", + "cross-origin-resource-policy", + "origin-agent-cluster", + "referrer-policy", + "strict-transport-security", + "x-content-type-options", + "x-dns-prefetch-control", + "x-download-options", + "x-frame-options", + "x-permitted-cross-domain-policies", + "x-powered-by", + "x-xss-protection", + "@vue/compiler-dom", + "abbrev", + "fast-archy", + "fast-text-table", + "hexo-cli", + "hexo-front-matter", + "hexo-fs", + "hexo-i18n", + "hexo-log", + "hexo-util", + "js-yaml-js-types", + "moize", + "titlecase", + "warehouse", + "@types/abbrev", + "0x", + "eslint-config-hexo", + "hexo-renderer-marked", + "util-deprecate", + "grunt-gh-pages", + "scrawl", + "transducers-js", + "tiny-worker", + "wcag-contrast", + "css-color-names", + "deep-freeze-es6", + "dependency-resolver", + "step", + "hap-nodejs", + "@types/source-map-support", + "eslint-plugin-import-newlines", + "@hono/eslint-config", + "bun-types", + "editorconfig-checker", + "oxc-parser", + "vite-plugin-fastly-js-compute", + "wrangler", + "application", + "cloudflare", + "workers", + "fastly", + "compute", + "workshopper-adventure", + "workshop", + "adventure", + "tutorial", + "tutor", + "@size-limit/preset-big-lib", + "@types/jscodeshift", + "pojo", + "attribute", + "element", + "@exodus/bytes", + "@types/he", + "flowgen", + "html entities", + "html entities encode", + "html entities decode", + "entities encode", + "entities decode", + "ascjs", + "unescape", + "posthtml-webp", + "unescape-unicode", + "relateurl", + "compressor", + "packer", + "uglifier", + "alpinejs", + "commitlint-config-non-conventional", + "rollup-plugin-polyfill-node", + "tags", + "void", + "self-closing", + "@types/jasmine", + "@bubkoo/tsconfig", + "@bubkoo/eslint-config", + "@bubkoo/rollup-config", + "@bubkoo/commitlint-config", + "@bubkoo/semantic-release-config", + "screenshot", + "capture", + "@selderee/plugin-htmlparser2", + "selderee", + "mail", + "plain", + "@html-validate/stylish", + "@sidvind/better-ajv-errors", + "@types/html-minifier-terser", + "pug-loader", + "webpack-recompilation-simulator", + "@types/relateurl", + "bunchee", + "eslint-plugin-unused-imports", + "srcset", + "posthtml-plugin", + "postproccessor", + "rss", + "toidentifier", + "requires-port", + "sse", + "agent-base", + "agent", + "@types/is-glob", + "mockttp", + "next.js", + "union", + "corser", + "secure-compare", + "eol", + "eslint-config-populist", + "https-server", + "@types/should", + "@types/eslint__js", + "status", + "@types/markdown-table", + "HttpStatus", + "httpclient", + "mediation", + "@types/async-retry", + "post", + "put", + "duplex", + "eslint-config-sanity", + "hyphenate", + "singular", + "plural", + "camelize", + "dasherize", + "demodulize", + "ordinalize", + "uncountable", + "singularize", + "titleize", + "tableize", + "classify", + "foreign_key", + "@messageformat/core", + "fast-printf", + "make-plural", + "math-interval-parser", + "l10n", + "@arktype/attest", + "gh-release", + "i18next-browser-languagedetector", + "i18next-fs-backend", + "i18next-http-backend", + "i18next-localstorage-cache", + "i18next-sprintf-postprocessor", + "internationalization", + "translation", + "localization", + "globalization", + "gettext", + "gridly", + "safer-buffer", + "errto", + "iconv", + "unorm", + "bench-node", + "charset", + "icu", + "harmony-reflect", + "proxies", + "identity", + "eslint-config-ostai", + "pre-suf", + "spawn-sync", + ".gitignore", + "manager", + "asterisks", + "regular-expression", + "dimensions", + "resolution", + "heif", + "tga", + "tiff", + "ow", + "p-pipe", + "image-dimensions", + "is-png", + "pngquant-bin", + "imageminplugin", + "pngquant", + "utf7", + "reader", + "cpx2", + "deep-freeze", + "import-size", + "seamless-immutable", + "type-plus", + "mutable", + "copy-on-write", + "@types/invariant", + "immutability", + "lazy", + "stateless", + "bypass", + "prefer", + "metacom", + "metaconfiguration", + "metalog", + "metaschema", + "metautil", + "metavm", + "metawatch", + "eslint-config-metarhia", + "isolation", + "enterprise", + "scalable", + "soa", + "stateful", + "routing", + "cluster", + "interactive", + "align", + "every", + "inferno-shared", + "inferno-utils", + "user interfaces", + "renderToString", + "inflections", + "inflection-js", + "humanize", + "capitalize", + "inheritance", + "klass", + "oop", + "object-oriented", + "@alcalzone/ansi-tokenize", + "auto-bind", + "patch-console", + "terminal-size", + "yoga-layout", + "@types/react-reconciler", + "@types/scheduler", + "@types/signal-exit", + "@vdemedes/prettier-config", + "eslint-config-xo-react", + "react-devtools-core", + "print", + "inline-style", + "inno", + "innosetup", + "run-async", + "fwk", + "instagram", + "ig", + "driver", + "reify", + "exports", + "packaging", + "remark-code-import", + "coffee.md", + "litcoffee", + "yml", + "babel-plugin-transform-es3-member-expression-literals", + "babel-plugin-transform-es3-property-literals", + "babel-preset-es2015-rollup", + "cldr-cal-buddhist-full", + "cldr-cal-chinese-full", + "cldr-cal-coptic-full", + "cldr-cal-dangi-full", + "cldr-cal-ethiopic-full", + "cldr-cal-hebrew-full", + "cldr-cal-indian-full", + "cldr-cal-islamic-full", + "cldr-cal-japanese-full", + "cldr-cal-persian-full", + "cldr-cal-roc-full", + "cldr-core", + "cldr-dates-full", + "cldr-numbers-full", + "estraverse-fb", + "grunt-curl", + "grunt-zip", + "rollup-plugin-memory", + "ecma402", + "@vue/tsconfig", + "flag-icons", + "google-closure-library", + "grunt-replace", + "prettier-eslint", + "international", + "country", + "dial code", + "telephone", + "phone", + "@inversifyjs/common", + "@inversifyjs/container", + "@inversifyjs/core", + "dependency inversion", + "inversion of control container", + "ioc", + "leek", + "ssh-config", + "elementtree", + "@ionic/discover", + "@ionic/utils-fs", + "superagent-proxy", + "@ionic/utils-array", + "@ionic/utils-stream", + "@ionic/cli-framework", + "@ionic/utils-network", + "@ionic/utils-process", + "@ionic/utils-terminal", + "@ionic/utils-subprocess", + "@ionic/cli-framework-prompts", + "@types/diff", + "@types/open", + "@types/split2", + "@types/os-name", + "@types/elementtree", + "ionic framework", + "ionicframework", + "hybrid", + "@types/svgo", + "jest-stencil-runner", + "icon pack", + "custom element", + "@ioredis/commands", + "cluster-key-slot", + "denque", + "lodash.isarguments", + "redis-errors", + "redis-parser", + "standard-as-callback", + "@ioredis/interface-generator", + "@types/lodash.defaults", + "@types/lodash.isarguments", + "@types/redis-errors", + "sentinel", + "pipelining", + "irc-colors", + "node-icu-charset-detector", + "ansi-color", + "is-extglob", + "braces", + "extglob", + "globstar", + "global-directory", + "globally", + "installed", + "locally", + "vanilla", + "pure", + "is-object", + "kind", + "custom element name", + "writable", + "is-inside-container", + "esmock", + "wsl", + "subsystem", + "kindof", + "lintspaces-cli", + "code coverage", + "JS code coverage", + "JS coverage", + "js-calendar", + "v-click-outside-x", + "autoprefixer-loader", + "babel-plugin-transform-es5-property-mutators", + "compression-webpack-plugin", + "vue-html-loader", + "character-parser", + "constantinople", + "jstransformer", + "transformers", + "with", + "browserify-middleware", + "code-mirror", + "github-basic", + "handle", + "highlight-codemirror", + "inconsolata", + "jade-code-mirror", + "jade-highlighter", + "jstransformer-cdata", + "jstransformer-coffee-script", + "jstransformer-less", + "jstransformer-marked", + "jstransformer-stylus", + "jstransformer-verbatim", + "less-file", + "lsr", + "pull-request", + "stop", + "filelist", + "rake", + "video-worker", + "babel-plugin-annotate-pure-calls", + "browserslist-config-nk", + "eslint-config-nk", + "json-file", + "prettier-config-nk", + "parallax", + "youtube", + "vimeo", + "@jasminejs/reporters", + "eslint-plugin-jasmine", + "css-url-embed", + "walkdir", + "jasmine-reporters", + "jasmine-growl-reporter", + "cssfontparser", + "moo-color", + "babel-plugin-version", + "@jest/diff-sequences", + "@jest/environment", + "@jest/environment-jsdom-abstract", + "@jest/fake-timers", + "jest-serializer-ansi-escapes", + "matchers", + "extended", + "@types/escape-html", + "@types/jump.js", + "@types/randomcolor", + "eslint-webpack-plugin", + "jump.js", + "randomcolor", + "web-vitals", + "libxmljs2", + "plugnplay", + "pnp", + "babel-plugin-add-import-extension", + "@types/merge-stream", + "jest-leak-detector", + "worker-farm", + "@jimp/core", + "@jimp/diff", + "@jimp/js-bmp", + "@jimp/js-gif", + "@jimp/js-jpeg", + "@jimp/js-png", + "@jimp/js-tiff", + "@jimp/plugin-blit", + "@jimp/plugin-blur", + "@jimp/plugin-circle", + "@jimp/plugin-color", + "@jimp/plugin-contain", + "@jimp/plugin-cover", + "@jimp/plugin-crop", + "@jimp/plugin-displace", + "@jimp/plugin-dither", + "@jimp/plugin-fisheye", + "@jimp/plugin-flip", + "@jimp/plugin-hash", + "@jimp/plugin-mask", + "@jimp/plugin-print", + "@jimp/plugin-quantize", + "@jimp/plugin-resize", + "@jimp/plugin-rotate", + "@jimp/plugin-threshold", + "@jimp/types", + "@jimp/utils", + "@jimp/config-eslint", + "@jimp/config-typescript", + "@jimp/config-vitest", + "@jimp/test-utils", + "node-self", + "vite-plugin-node-polyfills", + "image processing", + "image manipulation", + "resize", + "@babel/helper-simple-access", + "@rspack/cli", + "@rspack/core", + "@types/babel__helper-plugin-utils", + "@types/babel__template", + "@types/babel__traverse", + "babel-plugin-parameter-decorator", + "destr", + "nano-jsx", + "preact-render-to-string", + "solid-js", + "wysiwyg editor", + "wysiwyg html editor", + "rich editor", + "rich text editor", + "contenteditable", + "vanillajs", + "wysisyg", + "rte", + "firmata", + "temporal", + "nanotimer", + "browser-serialport", + "grunt-jsbeautifier", + "0A02", + "0A21", + "16x2 LCD", + "20x4 LCD", + "2D120X", + "2Y0A02", + "2Y0A21", + "74HC595", + "ADXL335", + "ADXL345", + "ALS-PT19", + "ALSPT19", + "ANALOG", + "arduino", + "Ardumoto", + "AT42QT1070", + "BLINKM", + "BMP180", + "Continuous Rotation", + "DEFAULT", + "Diffused LED", + "DS18B20", + "Edison Arduino Block", + "Edison GPIO Block", + "Edison I2C Block", + "Edison PWM Block", + "edison", + "ESPLORA", + "EV3", + "galileo-io", + "galileo", + "GP2D120XJ00F", + "GP2Y0A02YK0F", + "GP2Y0A21YK", + "GP2Y0A41SK0F", + "GY-521", + "GY521", + "HD44780", + "High Torque", + "Hitec HS-35HD", + "Hitec HS-422", + "Hitec HS-425BB", + "Hitec HS-625MG", + "Hitec HS-646WP", + "Hitec HS-755HB", + "Hitec HS-805BB", + "Hitec HS-85MG", + "HMC5883L", + "HMC6352", + "Hobby Motor", + "HRLV-MaxSonar-EZ0", + "HT16K33", + "HTU21D", + "i2c", + "Infrared Proximity Sensor", + "Infrared Sensor", + "intel edison", + "intel galileo", + "ISL29125", + "JHD1313M1", + "Joystick", + "LCD1602", + "LCD2004", + "LCM1602", + "LED", + "LIDAR-Lite v2", + "Ludus Protoshield Wireless", + "Ludus Protoshield", + "LV-MaxSonar-EZ0", + "LV-MaxSonar-EZ3", + "MCP23008", + "MCP23017", + "MCP9808", + "Metal Gear", + "MJKDZ", + "MMA7361", + "MMA7660", + "MMA8462Q", + "MPL115A2", + "MPL3115A2", + "MPR121", + "MPR121QR2", + "MPU-6050", + "MPU6050", + "MUXSHIELD2", + "NXT", + "OA41SK", + "PARALLEL", + "PCA9685", + "pcduino", + "PCF8574", + "PCF8574A", + "PCF8574AT", + "PCF8574T", + "PCF8575", + "PCF8591", + "photon", + "PIR Motion Sensor", + "QTOUCH", + "raspberry pi", + "raspberrypi", + "raspi-io", + "RedBoard", + "RGB LED", + "robot", + "robotics", + "rpi", + "serial", + "Servo", + "Shift Register 8-Bit SN74HC595", + "Shift Register", + "SI7020", + "spark core", + "spark-io", + "spark", + "SparkFun Essential Sensor Kit", + "SparkFun Sensor Kit", + "Speed controller", + "Temperature", + "tessel 2", + "Thumb Joystick", + "TINKERKIT", + "TMP36", + "TSL2561", + "Ultrasonic Range Finder", + "usb", + "VKEY", + "Weather Shield Arduino", + "Weather Shield Photon", + "@hapi/address", + "@hapi/formula", + "@hapi/pinpoint", + "@hapi/tlds", + "recoil", + "grunt-html", + "commitplease", + "grunt-bowercopy", + "grunt-git-authors", + "grunt-compare-size", + "jquery-test-runner", + "eslint-config-jquery", + "config-chain", + "beautifier", + "code-quality", + "grunt-exec", + "gzip-js", + "amd", + "rollup-plugin-node-polyfills", + "pyyaml", + "knifecycle", + "package-directory", + "yerror", + "architecture", + "gitignore-to-glob", + "@jscpd/badge-reporter", + "@jscpd/core", + "@jscpd/finder", + "@jscpd/tokenizer", + "@jscpd/html-reporter", + "jscpd-sarif-reporter", + "cst", + "jscs-jsdoc", + "jscs-preset-wikimedia", + "reserved-words", + "to-double-quotes", + "to-single-quotes", + "vow-fs", + "unicode-7.0.0", + "unit-coverage", + "@jsdoc/salty", + "catharsis", + "js2xmlparser", + "requizzle", + "current-module-paths", + "object-to-spawn-args", + "config-master", + "@acemir/cssom", + "@asamuzakjp/dom-selector", + "@bramus/specificity", + "data-urls", + "decimal.js", + "saxes", + "symbol-tree", + "w3c-xmlserializer", + "webidl-conversions", + "whatwg-url", + "mocha-sugar-free", + "webidl2", + "webidl2js", + "browser-request", + "cssom", + "nwmatcher", + "selenium-standalone", + "unicode-13.0.0", + "results-interpreter", + "unicode-5.2.0", + "unicode-11.0.0", + "stylish", + "deeks", + "doc-path", + "to", + "json2csv", + "csv2json", + "csv-2-json", + "milliparsec", + "sort-on", + "prototyping", + "dummy", + "@types/object-keys", + "deterministic", + "stable", + "circular", + "unicode-10.0.0", + "@stryker-mutator/mocha-runner", + "json-metaschema", + "jsonparse", + "trees", + "jws", + "lodash.once", + "lodash.includes", + "lodash.isnumber", + "lodash.isboolean", + "lodash.isinteger", + "@jspm/generator", + "@jspm/plugin-rollup", + "amaro", + "states", + "lie", + "jszip-utils", + "package-json-versionify", + "inflate", + "qjobs", + "dom-serialize", + "timer-shim", + "karma-junit-reporter", + "karma-script-launcher", + "spectacular", + "execution", + "hat", + "os-shim", + "karma-plugin", + "karma-preprocessor", + "browserify-tool", + "browserstack-local", + "karma-launcher", + "browser-stack", + "chrome", + "ibrik", + "karma-coffee-preprocessor", + "karma-requirejs", + "karma-reporter", + "Safari", + "Safari Tech Preview", + "SafariTechPreview", + "IE", + "Chrome", + "Chrome Canary", + "Chrome Headless", + "Chromium", + "Firefox", + "Opera", + "edge-launcher", + "chai-fs", + "os-homedir", + "firefox", + "karma-adapter", + "karma-rollup", + "safari", + "global-agent", + "@types/global-agent", + "sauce", + "labs", + "karma-brief-reporter", + "rollup-sourcemap-path-transform", + "keyboard", + "keyboardevent", + "keydown", + "keyup", + "metakey", + "keyname", + "@keyv/serialize", + "lru.min", + "timekeeper", + "@keyv/compress-gzip", + "@keyv/sqlite", + "@keyv/test-suite", + "@keyv/mongo", + "@keyv/compress-brotli", + "@keyv/compress-lz4", + "@keyv/memcache", + "key-value", + "adapter", + "memory", + "lru", + "tarn", + "escalade", + "pg-connection-string", + "tedious", + "oracledb", + "better-sqlite3", + "pg-query-stream", + "chai-subset-in-order", + "@tsconfig/recommended", + "toxiproxy-node-client", + "sql", + "postgres", + "cockroachdb", + "querybuilder", + "formatly", + "oxc-resolver", + "smol-toml", + "codeclimate-types", + "analysis", + "analyze", + "dead code", + "duplicate", + "entropy", + "maintenance", + "members", + "missing", + "monorepo", + "namespace", + "unreferenced", + "unresolved", + "workspace", + "lodash.sortby", + "explorer", + "opera", + "samsung-internet", + "uc-browser", + "stream-counter", + "delegates", + "http-assert", + "gen-esm-wrapper", + "@types/co-body", + "co-body", + "@koa/router", + "@types/koa__router", + "urlencoded", + "body", + "copy-to", + "bodyParser", + "compose", + "humanize-number", + "passthrough-counter", + "koa-compress", + "koa-route", + "mount", + "mounting", + "@ladjs/env", + "route", + "koa-send", + "sendfile", + "reds", + "node-redis-warlock", + "bossy", + "eslint-config-hapi", + "eslint-plugin-hapi", + "find-rc", + "will-call", + "cpr", + "lab-event-reporter", + "semver-regex", + "latest", + "package.json", + "current", + "autodoc", + "deft", + "jasmine-async", + "race.js", + "string-table", + "happen", + "leafdoc", + "bundlemon", + "git-rev-sync", + "karma-expect", + "prosthetic-hand", + "eslint-config-mourner", + "rollup-plugin-git-version", + "@mapbox/eslint-plugin-script-tags", + "gis", + "left", + "padding", + "repeat", + "numbers", + "aproba", + "cmd-shim", + "p-reduce", + "byte-size", + "write-pkg", + "wide-align", + "has-unicode", + "p-waterfall", + "libnpmaccess", + "p-map-series", + "set-blocking", + "@lerna/create", + "libnpmpublish", + "read-cmd-shim", + "load-json-file", + "init-package-json", + "make-fetch-happen", + "conventional-changelog-core", + "validate-npm-package-license", + "conventional-recommended-bump", + "conventional-changelog-angular", + "@octokit/plugin-enterprise-rest", + "multi-package", + "copy-anything", + "benny", + "bootstrap-less-port", + "html-template-tag", + "jit-grunt", + "less-plugin-autoprefix", + "mocha-teamcity-reporter", + "phin", + "read-glob", + "compile less", + "css nesting", + "css variable", + "gradients css", + "gradients css3", + "less compiler", + "less css", + "less mixins", + "less.js", + "lesscss", + "nested css", + "bootstrap css", + "bootstrap less", + "variables in css", + "css less", + "less-plugin-glob", + "browser-level", + "classic-level", + "abstract-level", + "airtap-playwright", + "@voxpelli/tsconfig", + "leveldb", + "napi-macros", + "abstract-leveldown", + "du", + "async-each", + "mkfiletree", + "readfiletree", + "prebuildify-ci", + "prebuildify-cross", + "level-concat-iterator", + "level-errors", + "level-supports", + "queue-microtask", + "deferred-leveldown", + "level-iterator-stream", + "memdown", + "trickle", + "airtap-sauce", + "run-parallel", + "encoding-down", + "simple-concat", + "fast-levenshtein", + "ld", + "levdist", + "levenshtein", + "levenshtein-component", + "levenshtein-edit-distance", + "talisman", + "distance", + "algorithm", + "comparison", + "edit", + "matching", + "binary-extensions", + "promise-retry", + "just-safe-set", + "fund", + "gitfund", + "crlf", + "gmail-send", + "jest-codemods", + "libphonenumber-metadata-generator", + "renamer", + "libphonenumber", + "fined", + "flagged-respawn", + "autolink", + "hashtag", + "link", + "mention", + "consolemock", + "staged", + "@samverschueren/stream-to-observable", + "is-observable", + "listr-silent-renderer", + "listr-update-renderer", + "listr-verbose-renderer", + "@lit-labs/ssr-dom-shim", + "@lit/reactive-element", + "@lit-internal/scripts", + "@lit-labs/testing", + "@webcomponents/template", + "connect-logger", + "http-auth", + "faye-websocket", + "livereload-js", + "resolve-pkg", + "matchdep", + "lws-basic-auth", + "lws-blacklist", + "lws-body-parser", + "lws-compress", + "lws-conditional-get", + "lws-cors", + "lws-json", + "lws-log", + "lws-mime", + "lws-range", + "lws-request-monitor", + "lws-rewrite", + "lws-spa", + "lws-static", + "full-stack", + "babel-preset-es2015-loose", + "browserify-derequire", + "grunt-es3-safe-recast", + "grunt-rollup", + "grunt-ts", + "rollupify", + "indexeddb", + "localstorage", + "websql", + "openurl", + "lockfile-lint-api", + "prettier-standard", + "lockfile check", + "lockfile lint", + "lock", + "stdlib", + "lodash-modularized", + "clonedeep", + "defaults", + "isempty", + "isequal", + "isfunction", + "isplainobject", + "isstring", + "omit", + "pick", + "uniq", + "uni-global", + "sprintf-kit", + "event-emitter", + "ncjsm", + "tape-index", + "terminal.js", + "update", + "refresh", + "overwrite", + "bar", + "date-format", + "streamroller", + "@log4js-node/sandboxed-module", + "grunt-contrib-jasmine", + "grunt-open", + "grunt-preprocess", + "math", + "int64", + "uid2", + "isemail", + "canonical-json", + "loopback-phase", + "strong-remoting", + "loopback-filters", + "strong-globalize", + "loopback-connector-remote", + "nodemailer-stub-transport", + "loopback-datasource-juggler", + "nodemailer-direct-transport", + "is-docker", + "loopback-boot", + "karma-es6-shim", + "loopback-context", + "strong-task-emitter", + "strong-error-handler", + "eslint-config-loopback", + "sqlserver", + "StrongLoop", + "mBaaS", + "steno", + "express-async-handler", + "@commitlint/prompt-cli", + "@typicode/eslint-config", + "embed", + "embedded", + "localStorage", + "sessionStorage", + "mru", + "@lucide/build-icons", + "@lucide/shared", + "@lucide/rollup-plugins", + "Lucide", + "HTML", + "Feather", + "Icons", + "Icon", + "SVG", + "Feather Icons", + "Fontawesome", + "Font Awesome", + "decree", + "manipulate", + "blur", + "sharpen", + "flip", + "mirror", + "hue", + "saturation", + "lightness", + "transparency", + "fade", + "opacity", + "contain", + "cover", + "@75lb/deep-merge", + "ansi-escape-sequences", + "create-mixin", + "load-module", + "sleep-anywhere", + "expand-home-dir", + "hast-util-to-mdast", + "mdast-util-to-markdown", + "short-unique-id", + "y18n", + "@types/columnify", + "@types/json-diff", + "@types/make-fetch-happen", + "@types/which", + "wizard", + "task graph", + "string manipulation", + "@favware/rollup-type-bundler", + "lavalink client", + "audio streaming", + "music bot", + "voice chat", + "discord integration", + "high performance", + "easy-to-use", + "feature-rich", + "seamless integration", + "community support", + "open-source", + "lavalink", + "path-type", + "intermediate", + "recursively", + "dingbat-to-unicode", + "lop", + "browserify-prepend-licenses", + "duck", + "hamjest", + "office", + "word", + "@nestjs/common", + "@nestjs/config", + "@nestjs/core", + "@nestjs/platform-express", + "@nestjs/swagger", + "@nestjs/throttler", + "@nestjs/typeorm", + "@yarnpkg/lockfile", + "uniqid", + "@codecov/bundle-analyzer", + "@nestjs/cli", + "@nestjs/testing", + "@testcontainers/mysql", + "@types/dasherize", + "crud", + "admin-panel", + "headless-cms", + "backend-framework", + "micro-backend", + "rapid-development", + "yaml-config", + "file-upload", + "api-generator", + "low-code", + "no-code", + "prototype", + "mvp", + "startup", + "baas", + "@next/eslint-plugin-next", + "@tabler/icons-react", + "eslint-config-next", + "postcss-preset-mantine", + "postcss-simple-vars", + "mantine", + "context", + "context-menu", + "context menu", + "react server components", + "user experience", + "usability", + "mapbox-gl", + "mapbox", + "legend", + "text processing", + "linkify-it", + "mdurl", + "punycode.js", + "uc.micro", + "markdown-it-for-inline", + "markdown-it-ins", + "markdown-it-mark", + "markdown-it-sub", + "ndoc", + "markdown-it-plugin", + "anchor", + "emoji", + "emojies", + "emoticon", + "emoticons", + "stream-from-to", + "pdf-text", + "rows", + "bunup", + "theredoc", + "markdown parser", + "solidjs", + "diacritics-map", + "lazy-cache", + "list-item", + "markdown-link", + "mixin-deep", + "repeat-string", + "document", + "glossary", + "heading", + "links", + "remarkableplugin", + "table of contents", + "table-of-contents", + "toc", + "micromark-core-commonmark", + "micromark-extension-directive", + "micromark-extension-gfm-autolink-literal", + "micromark-extension-gfm-footnote", + "micromark-extension-gfm-table", + "micromark-extension-math", + "micromark-util-types", + "gemoji", + "markdownlint-rule-extended-ascii", + "CommonMark", + "jsonpointer", + "run-con", + "@markedjs/eslint-config", + "@markedjs/testutils", + "esbuild-plugin-umd-wrapper", + "marked-highlight", + "marked-man", + "recheck", + "markup", + "v8-argv", + "inline-style-prefixer", + "react-event-listener", + "simple-assign", + "complex.js", + "escape-latex", + "javascript-natural-sort", + "typed-function", + "eigen", + "expr-eval", + "jsep", + "ndarray", + "ndarray-determinant", + "ndarray-gemm", + "ndarray-ops", + "ndarray-pack", + "numericjs", + "sylvester", + "zeros", + "mathematics", + "numeric", + "algebra", + "complex", + "fraction", + "charenc", + "md5sum", + "checksum", + "decode-named-character-reference", + "micromark-util-decode-numeric-character-reference", + "micromark-util-decode-string", + "micromark-util-normalize-identifier", + "micromark-util-symbol", + "unist-util-stringify-position", + "commonmark.json", + "micromark-build", + "mdast-util", + "mdast", + "tree", + "micromark-util-sanitize-uri", + "trim-lines", + "mdast-util-gfm", + "micromark-extension-gfm", + "mdn", + "mozilla", + "hashring", + "jackpot", + "InnoDB memcached API", + "failover", + "hashing", + "membase", + "memcache", + "nMemcached", + "@jsonjoy.com/fs-core", + "@jsonjoy.com/fs-fsa", + "@jsonjoy.com/fs-node", + "@jsonjoy.com/fs-node-builtins", + "@jsonjoy.com/fs-node-to-fsa", + "@jsonjoy.com/fs-node-utils", + "@jsonjoy.com/fs-print", + "@jsonjoy.com/fs-snapshot", + "@jsonjoy.com/json-pack", + "@jsonjoy.com/util", + "glob-to-regex.js", + "thingies", + "tree-dump", + "isomorphic-git", + "tslint-config-common", + "fs.js", + "in-memory", + "fsa", + "file system access", + "native file system", + "webfs", + "crudfs", + "opfs", + "casfs", + "content addressable storage", + "@types/lodash.isequal", + "fast-memoize", + "mem", + "nanocolors", + "memoization", + "gulp-exit", + "ram", + "errno", + "camelcase-keys", + "decamelize-keys", + "delete_comments", + "minimist-options", + "trim-newlines", + "cat", + "kitten", + "from2", + "lodash.clonedeepwith", + "stat-mode", + "ware", + "@metalsmith/drafts", + "assert-dir-equal", + "7zip-bin", + "node-7z", + "node-downloader-helper", + "@babel/plugin-syntax-import-meta", + "@surma/rollup-plugin-off-main-thread", + "asyncro", + "babel-plugin-transform-async-to-promises", + "babel-plugin-transform-replace-expressions", + "tiny-glob", + "@babel/plugin-proposal-throw-expressions", + "directory-tree", + "eslint-config-developit", + "npm-merge-driver-install", + "micro library", + "micromark-factory-space", + "micromark-util-chunked", + "micromark-util-combine-extensions", + "micromark-util-resolve-all", + "micromark-util-subtokenize", + "fill-range", + "bracket", + "character-class", + "expansion", + "extglobs", + "lookahead", + "lookaround", + "lookbehind", + "negate", + "negation", + "posix", + "star", + "@types/mime-db", + "mime-score", + "release-please", + "runmd", + "mime-db", + "mimetypes", + "Min Heap", + "min heap", + "maxheap", + "min-heap", + "heap", + "Binary Heap", + "binary-heap", + "heap data structure", + "min heap data structure", + "complete binary tree", + "heapify", + "heap sort", + "heapify up", + "heapify down", + "Priority Queue", + "priority queue", + "priorityqueue", + "priority-queue", + "priority q", + "priorityQ", + "efficient", + "priority", + "complete binary", + "extract min", + "min priority queue", + "efficient priority", + "ordering property", + "dynamic resizing", + "priority-based", + "priority-based processing", + "element priority", + "queue priority", + "sorted", + "decrease key", + "increase key", + "searching", + "@putout/minify", + "css-b64-images", + "html-minifier-next", + "montag", + "readjson", + "try-catch", + "try-to-catch", + "escover", + "eslint-plugin-putout", + "madrun", + "supertape", + "brace-expansion", + "signed", + "certificate", + "cert", + "@types/brace-expansion", + "make dir", + "dir", + "ufo", + "conditional-type-checks", + "mobservable", + "reactive", + "frp", + "functional-reactive-programming", + "state management", + "data flow", + "mobx-react-lite", + "expose-gc", + "browser-stdout", + "yargs-unparser", + "uslug", + "pidtree", + "rewiremock", + "unexpected", + "@mocha/docdash", + "jsdoc-ts-utils", + "unexpected-map", + "unexpected-set", + "unexpected-sinon", + "remark-inline-links", + "unexpected-eventemitter", + "fail-on-errors-webpack-plugin", + "@11ty/eleventy-plugin-inclusive-language", + "headless-chrome", + "chai-xml", + "test-console", + "xmllint", + "junit", + "lcov", + "define-data-property", + "gopd", + "has-property-descriptors", + "@types/es-value-fixtures", + "@types/for-each", + "@types/functions-have-names", + "@types/get-intrinsic", + "@types/gopd", + "@types/has-property-descriptors", + "@types/object-inspect", + "descriptor", + "define", + "swap", + "unix-dgram", + "unittest", + "gulp-coveralls", + "gulp-mocha-phantomjs", + "mockJSON", + "mockAjax", + "ipaddr.js", + "recursive-watch", + "fastest-validator", + "avsc", + "nats", + "etcd3", + "cbor-x", + "thrift", + "redlock", + "dd-trace", + "gc-stats", + "msgpack5", + "fakerator", + "kafka-node", + "v8-natives", + "@types/pino", + "notepack.io", + "benchmarkify", + "rhea-promise", + "@types/bunyan", + "jaeger-client", + "@types/ioredis", + "moleculer-repl", + "winston-context", + "event-loop-stats", + "node-nats-streaming", + "@icebob/node-memwatch", + "microservice", + "messagebus", + "services", + "micro", + "distributed", + "ender", + "timezone", + "olson", + "iana", + "zone", + "tz", + "monaco-languageserver-types", + "monaco-marker-data-provider", + "monaco-types", + "monaco-worker-manager", + "vscode-languageserver-textdocument", + "vscode-languageserver-types", + "vscode-uri", + "@remcohaszing/eslint", + "remark-preset-remcohaszing", + "yaml-language-server", + "monaco", + "monads", + "either", + "maybe", + "result", + "@codemirror/lang-javascript", + "@codemirror/theme-one-dark", + "@json2csv/plainjs", + "@lezer/highlight", + "basic-auth-connect", + "bootstrap-paginator-2", + "free-swig", + "gridfs-stream", + "mongodb-query-parser", + "renderjson-2", + "@cypress/code-coverage", + "assets-webpack-plugin", + "express-openid-connect", + "mongodb-memory-server", + "administration", + "GUI", + "manage", + "manage-mongo", + "phpmyadmin", + "UI", + "web-based", + "@mongodb-js/saslprep", + "mongodb-connection-string-url", + "aws4", + "socks", + "snappy", + "mocha-sinon", + "gcp-metadata", + "@types/kerberos", + "@types/saslprep", + "v8-heapsnapshot", + "@mongodb-js/zstd", + "@types/whatwg-url", + "@types/chai-subset", + "mongodb-client-encryption", + "@aws-sdk/credential-providers", + "kareem", + "mpath", + "mquery", + "sift", + "@ark/attest", + "@mongodb-js/mongodb-downloader", + "acquit", + "acquit-ignore", + "acquit-require", + "lodash.isequalwith", + "mongodb-runner", + "odm", + "datastore", + "backbone-callbacks", + "node-monitor", + "remote control", + "probe", + "JMX", + "core-monitor", + "dashboard", + "monitoring", + "control panel", + "@types/mongodb", + "monk-middleware-cast-ids", + "monk-middleware-fields", + "monk-middleware-handle-callback", + "monk-middleware-options", + "monk-middleware-query", + "monk-middleware-wait-for-connection", + "gitbook-cli", + "gitbook-plugin-anker-enable", + "gitbook-plugin-custom-favicon", + "gitbook-plugin-edit-link", + "gitbook-plugin-github", + "gitbook-plugin-prism", + "monk-middleware-debug", + "commist", + "help-me", + "mqtt-packet", + "worker-timers", + "number-allocator", + "aedes-cli", + "leaked-handles", + "mqtt-connection", + "@esm-bundle/chai", + "mqtt-level-store", + "esbuild-plugin-polyfill-node", + "publish/subscribe", + "@tediousjs/connection-string", + "msnodesql", + "tds", + "node-tds", + "node-sqlserver", + "msnodesqlv8", + "node-mssql", + "@types/statuses", + "headers-polyfill", + "rettime", + "until-async", + "@epic-web/test-server", + "@fastify/websocket", + "@types/json-bigint", + "@types/serviceworker", + "json-bigint", + "page-with", + "append-field", + "fs-temp", + "testdata-w3c-json-form", + "formdata", + "array-union", + "pend", + "release-it-pnpm", + "test report", + "html report", + "json to html", + "karma-story-reporter", + "mezr", + "web-animations-js", + "bin-packing", + "sqlstring", + "timezone-mock", + "urun", + "utest", + "sql-escaper", + "aws-ssl-profiles", + "generate-function", + "named-placeholders", + "poku", + "assert-diff", + "eslint-plugin-async-await", + "thenify", + "then", + "bats", + "switcher", + "couchdb", + "fastest-stable-stringify", + "rtl-css-js", + "iconista", + "libreact", + "pico", + "lite", + "in-js", + "styled", + "decorator", + "jsxstyle", + "rule", + "gitcloud", + "hasbin", + "page-icon", + "@types/hasbin", + "@types/page-icon", + "desktop", + "proxy-lib", + "font-finder", + "pbxproj-dom", + "@foxt/js-srp", + "simple-plist", + "ios-device-lib", + "email-validator", + "ios-sim-portable", + "plist-merge-patch", + "@nativescript/hook", + "@nativescript/doctor", + "nativescript-dev-xcode", + "ios-mobileprovision-finder", + "@nstudio/trapezedev-project", + "@rigor789/resolve-package-path", + "@types/plist", + "@types/retry", + "@types/byline", + "@types/pacote", + "@types/tabtab", + "@types/tunnel", + "@types/xml2js", + "@types/archiver", + "@types/qr-image", + "@types/marked-terminal", + "@types/proper-lockfile", + "@types/npmcli__arborist", + "@types/universal-analytics", + "afinn-165", + "afinn-165-financialmarketnews", + "apparatus", + "memjs", + "stopwords-iso", + "wordnet-db", + "browserfs", + "gulp-jasmine-browser", + "pegjs", + "uubench", + "natural language processing", + "artifical intelligence", + "Porter stemmer", + "Lancaster stemmer", + "bigram", + "trigram", + "quadgram", + "ngram", + "stemmer", + "bayes", + "classifier", + "phonetic", + "metaphone", + "inflector", + "Wordnet", + "tf-idf", + "logistic regression", + "doublemetaphone", + "double", + "jaro-winkler distance", + "levenshtein distance", + "string distance", + "part-of-speech tagger", + "Eric Brill", + "Brill tagger", + "sentiment analysis", + "maximum entropy modelling", + "secure-keys", + "nconf-yaml", + "key value store", + "plugabble", + "near social", + "bridge", + "near", + "binary-search-tree", + "exec-time", + "@fig/complete-commander", + "@golevelup/nestjs-discovery", + "nest", + "@postman/tough-cookie", + "chardet", + "liquid-json", + "postman-collection", + "postman-collection-transformer", + "postman-request", + "postman-runtime", + "serialised-error", + "@postman/shipit", + "dockerfile_lint", + "parse-gitignore", + "postman", + "rest-client", + "@apm-js-collab/tracing-hooks", + "@newrelic/security-agent", + "@tyriar/fibonacci-heap", + "import-in-the-middle", + "module-details-from-path", + "require-in-the-middle", + "@aws-sdk/s3-request-presigner", + "@matteo.collina/tspl", + "@newrelic/eslint-config", + "@newrelic/newrelic-oss-cli", + "@newrelic/test-utilities", + "@slack/bolt", + "@smithy/eventstream-codec", + "@smithy/util-utf8", + "git-raw-commits", + "self-cert", + "debugging", + "profiling", + "@panva/hkdf", + "openid-client", + "@edge-runtime/jest-environment", + "@types/nodemailer", + "@types/oauth", + "babel-plugin-jsx-pragmatic", + "babel-preset-preact", + "oauth2", + "nextauth", + "async handler", + "async functions", + "pipe", + "provider", + "TestBed", + "how-to", + "@ant-design/icons-angular", + "localhost", + "tunneling", + "webhook", + "deep-defaults", + "enqueue", + "function-source", + "minstache", + "sliced", + "mocha-generators", + "@nightwatch/chai", + "@nightwatch/html-reporter-template", + "@nightwatch/nightwatch-inspector", + "@types/selenium-webdriver", + "chai-nightwatch", + "devtools-protocol", + "didyoumean", + "nightwatch-axe-verbose", + "stacktrace-parser", + "mochawesome-merge", + "mochawesome-report-generator", + "nightwatchjs", + "selenium", + "webdriver", + "automated-testing", + "@sinonjs/text-encoding", + "@sinonjs/referee", + "jsdom-global", + "mochify", + "proxyquire-universal", + "proxyquireify", + "propagate", + "clang-format", + "n-api", + "napi", + "coffee-coverage", + "grunt-contrib-coffee", + "grunt-include-replace", + "internal", + "check-version-modules", + "used-deps-analyzer", + "container", + "skeleton", + "formate", + "dynamic-dedupe", + "filewatcher", + "tap-xunit", + "reload", + "subdir", + "char-regex", + "emojilib", + "skin-tone", + "sentences-per-line", + "emojis", + "smiley", + "smileys", + "smilies", + "ideogram", + "ideograms", + "fetch-blob", + "chai-iterator", + "stream-consumers", + "eslint-config-digitalbazaar", + "karma-tap-reporter", + "nodejs-websocket", + "worker-loader", + "aes", + "asn", + "asn.1", + "cbc", + "csr", + "des", + "gcm", + "hmac", + "pkcs", + "pki", + "prng", + "rc2", + "rsa", + "sha256", + "sha384", + "sha512", + "tls", + "x.509", + "x509", + "c2dm", + "fcm", + "messaging", + "geocoder", + "geocoding", + "geo", + "maps", + "mapquest", + "agol", + "arcgis", + "tomtom", + "exponential-backoff", + "require-inject", + "high5", + "html-parser", + "html5parser", + "htmljs-parser", + "htmlparser-benchmark", + "mocha-each", + "neutron-html5parser", + "biased-opener", + "strong-data-uri", + "v8-debug", + "v8-profiler", + "http mock", + "growly", + "shellwords", + "nexe", + "notification center", + "mac os x 10.8", + "terminal-notifier", + "windows 8 notification", + "toaster", + "ps-list", + "pty", + "pseudoterminal", + "forkpty", + "openpty", + "@node-red/editor-api", + "@node-red/runtime", + "@node-red/util", + "@node-red/nodes", + "node-red-admin", + "iot", + "sass-graph", + "async-foreach", + "stdout-stream", + "true-case-path", + "unique-temp-dir", + "long-timeout", + "sorted-array-functions", + "recurrent", + "rfc4122", + "fs.watch", + "watchfile", + "ngn", + "daemon", + "event logging", + "elevate", + "sudo", + "@mgcrea/eslint-config-node", + "@tsconfig/node-lts", + "excel", + "xls", + "jQuery", + "jQuery extend", + "inherit", + "combyne", + "clean-for-publish", + "libgit2", + "git2", + "@aws-sdk/client-sesv2", + "libbase64", + "libmime", + "libqp", + "nodemailer-ntlm-auth", + "proxy-test-server", + "Nodemailer", + "pstree.remy", + "undefsafe", + "autoload", + "multimeter", + "node-webkit", + "webkit", + "async-redis", + "express-ipfilter", + "express-ws", + "json-logic-js", + "json-sql", + "jsonpath-plus", + "line-reader", + "mocker-data-generator", + "node-ipc", + "promise-mysql", + "stjs", + "uuid-random", + "nolang", + "Programming", + "programming language", + "descriptive", + "5GL", + "json schema", + "Mehdi Salartayefeh", + "option parser", + "absolute", + "backslash", + "delimiter", + "file-path", + "forward", + "fp", + "slashes", + "trailing", + "unix", + "urix", + "normalization", + "normalisation", + "simplify", + "trim", + "canonical", + "mouse wheel", + "exit-hook", + "github-url-from-git", + "is-interactive", + "is-scoped", + "issue-regex", + "listr-input", + "new-github-release-url", + "npm-name", + "p-memoize", + "map-obj", + "write-package", + "archy", + "is-cidr", + "libnpmorg", + "libnpmpack", + "libnpmteam", + "fs-minipass", + "npm-profile", + "libnpmsearch", + "@sigstore/tuf", + "libnpmversion", + "@npmcli/config", + "npm-audit-report", + "minipass-pipeline", + "npm-user-validate", + "tiny-relative-date", + "fastest-levenshtein", + "json-parse-even-better-errors", + "@npmcli/git", + "@npmcli/docs", + "@tufjs/repo-mock", + "@npmcli/mock-globals", + "ajv-formats-draft2019", + "package manager", + "giturl", + "throat", + "semver-diff", + "preferred-pm", + "callsite-record", + "rc-config-loader", + "outdated", + "updates", + "updating", + "updater", + "@trivago/prettier-plugin-sort-imports", + "@types/chai-string", + "@types/cli-table", + "@types/ini", + "@types/jsonlines", + "@types/npm-registry-fetch", + "@types/parse-github-url", + "@types/semver-utils", + "@types/update-notifier", + "eslint-config-raine", + "fp-and-or", + "jsonlines", + "prompts-ncu", + "semver-utils", + "typescript-json-schema", + "verdaccio", + "vite-bundle-analyzer", + "vite-node", + "upgrade", + "versions", + "esbuild-node-externals", + "eslint-config-tc", + "eslint-config-typescript-tc", + "npm-package-json-lint-config-tc", + "auditor", + "mutate-fs", + "minipass-fetch", + "minizlib", + "registry", + "string.prototype.padend", + "eslint-config-mysticatea", + "commandline", + "npm-scripts", + "run", + "read-package-json-fast", + "script", + "string convert", + "yarn to npm", + "npm upgrade", + "babel-preset-latest", + "npm-cli", + "are-we-there-yet", + "mocha-jsdom", + "cvss", + "nodesecurity-npm-utils", + "gluegun", + "nuke", + "money", + "percentage", + "a-sync-waterfall", + "asap", + "mocha-phantomjs-core", + "mocha-phantomjs-istanbul", + "module-alias", + "node-libs-browser", + "css4", + "node-machine-id", + "resolve.exports", + "@yarnpkg/parsers", + "lines-and-columns", + "@napi-rs/wasm-runtime", + "Mobile", + "caching-transform", + "istanbul-lib-hook", + "istanbul-lib-processinfo", + "node-preload", + "process-on-spawn", + "spawn-wrap", + "any-path", + "@readme/openapi-parser", + "remove-undefined-objects", + "@readme/oas-examples", + "@types/json-schema-merge-allof", + "@types/memoizee", + "apis", + "openapi initiative", + "openapi specification", + "openapi spec", + "openapi document", + "oai", + "@readme/postman-to-openapi", + "@types/swagger2openapi", + "prollyfill", + "gulp-exec", + "@pkgjs/support", + "error-cause", + "globalthis", + "has-tostringtag", + "util.inspect", + "indexof", + "Object.keys", + "@mariocasciaro/benchpress", + "access", + "bean", + "notation", + "segment", + "es-object-atoms", + "Object.assign", + "$.extend", + "_.extend", + "Underscore", + "Object.entries", + "Object.values", + "entries", + "ES8", + "ee-first", + "wrappy", + "@blakeembrey/deque", + "@blakeembrey/template", + "epoll", + "@types/mock-require", + "gpio", + "interrupt", + "raspberry", + "raspi", + "pi", + "beaglebone", + "beaglebone-black", + "default-browser", + "define-lazy-prop", + "is-in-ssh", + "wsl-utils", + "opens", + "launch", + "start", + "xdg-open", + "xdg", + "default", + "urls", + "bath-es5", + "dereference-json-schema", + "axios-mock-adapter", + "json-schema-deref-sync", + "open api", + "computer", + "quadrocopter", + "countrynames", + "hashish", + "last-call-webpack-plugin", + "prelude-ls", + "deep-is", + "levn", + "livescript", + "option parsing", + "stdin-discarder", + "transform-tty", + "sequencify", + "stream-consume", + "sql-ddl-sync", + "sql-query", + "redshift", + "home", + "tmpdir", + "ps1", + "template string", + "template literal", + "styleable", + "scrollbar", + "scrollbars", + "scroll", + "@vscode/vsce", + "yauzl-promise", + "@types/is-ci", + "@types/yauzl-promise", + "limiter", + "vscode", + "addlistener", + "addeventlistener", + "waits", + "resolved", + "race", + "fulfilled", + "concurrency", + "ratelimit", + "fifo", + "invalidate", + "out", + "plunder", + "metadata", + "@pa11y/html_codesniffer", + "eslint-config-pa11y", + "proclaim", + "aria", + "compliance", + "headless", + "htmlcs", + "standards", + "WCAG", + "sigstore", + "npm-registry-mock", + "capture-website", + "filenamify-url", + "unused-filename", + "@types/png.js", + "png.js", + "page", + "screenshots", + "screengrab", + "striptags", + "para", + "server-side", + "idb-keyval", + "react-native-crypto-js", + "@saithodev/semantic-release-backmerge", + "@types/facebook-js-sdk", + "babel-plugin-transform-inline-environment-variables", + "jasmine-spec-reporter", + "jsdoc-babel", + "parse-server", + "vite-plugin-commonjs", + "WHATWG", + "html parser", + "html5 parser", + "html serializer", + "htmlserializer", + "fast-url-parser", + "pause", + "chai-connect-middleware", + "username", + "passport-oauth1", + "base64url", + "exist", + "isabsolute", + "is-absolute", + "zeptomatch", + "@rkusa/linebreak", + "opentype.js", + "jpeg-exif", + "linebreak", + "png-js", + "blob-stream", + "brace", + "pdfjs-dist", + "pdf writer", + "pdf generator", + "call-delayed", + "chai-increasing", + "pg-pool", + "pg-protocol", + "pg-types", + "pgpass", + "pg-cloudflare", + "@cloudflare/vitest-pool-workers", + "@cloudflare/workers-types", + "pg-copy-streams", + "libpq", + "postgre", + "rdbms", + "flow-copy-source", + "npm-watch", + "connect-phonegap", + "phonegap-build", + "phonegap build", + "phonegap/build", + "pinkie-promise", + "denodify", + "atomic-sleep", + "on-exit-leak-free", + "pino-abstract-transport", + "pino-std-serializers", + "quick-format-unescaped", + "real-require", + "@pinojs/redact", + "sonic-boom", + "thread-stream", + "@types/flush-write-stream", + "bole", + "fastbench", + "flush-write-stream", + "midnight-smoker", + "pino-pretty", + "steed", + "postinstall", + "lifecycle", + "devpostinstall", + "entry", + "irregular-plurals", + "plurals", + "count", + "irregular", + "noun", + "nouns", + "@pm2/agent", + "@pm2/js-api", + "@pm2/io", + "@pm2/pm2-version-check", + "@pm2/blessed", + "cli-tableau", + "fclone", + "pidusage", + "pm2-axon", + "pm2-axon-rpc", + "pm2-deploy", + "pm2-multimeter", + "vizion", + "logs", + "kraken", + "load balancer", + "lb", + "load-balancer", + "kubernetes", + "k8s", + "pm2-docker", + "runtime", + "graceful", + "node-pm2", + "production", + "keymetrics", + "node.js monitoring", + "strong-pm", + "supervisord", + "pm2.io", + "ghost production", + "process manager", + "probes", + "keep process alive", + "process configuration", + "clustering", + "cluster cli", + "dev ops", + "tap-dot", + "PNG", + "js-png", + "node-png", + "png-parse", + "pnpm10", + "dependency manager", + "hardlinks", + "prune", + "rapid", + "symlinks", + "uninstall", + "poe", + "economy", + "ninja", + "poe.ninja", + "poe economy", + "path of exile", + "path of exile economy", + "path of exile ninja", + "poe economy api", + "path of exile api", + "poe.watch api", + "poe.ninja api", + "babel-plugin-preval", + "pushstate-server", + "tsgen", + "glamor", + "inline-styles", + "color manipulate", + "color manipulation", + "curried color manipulation", + "@popperjs/bundle", + "@popperjs/eslint-config-popper", + "@popperjs/test", + "@popperjs/test-utils", + "nuget-publish", + "popperjs", + "position", + "attached", + "ports", + "source map", + "manipulation", + "jison-gho", + "calculation", + "calc", + "postcss-reporter", + "read-cache", + "eslint-config-problems", + "@csstools/utilities", + "comma", + "hsl", + "hsla", + "hwb", + "rgba", + "caniuse-api", + "@types/caniuse-api", + "pixrem", + "pleeease-filters", + "postcss-apply", + "postcss-attribute-case-insensitive", + "postcss-color-function", + "postcss-color-gray", + "postcss-color-hex-alpha", + "postcss-color-hsl", + "postcss-color-hwb", + "postcss-color-rebeccapurple", + "postcss-color-rgb", + "postcss-color-rgba-fallback", + "postcss-font-family-system-ui", + "postcss-font-variant", + "postcss-image-set-polyfill", + "postcss-initial", + "postcss-media-minmax", + "postcss-pseudo-class-any-link", + "postcss-pseudoelements", + "postcss-replace-overflow-wrap", + "postcss-selector-matches", + "postcss-selector-not", + "cssrecipes-custom-media-queries", + "cssrecipes-defaults", + "cssrecipes-grid", + "cssrecipes-utils", + "cssrecipes-vertical-rhythm", + "eslint-config-i-am-meticulous", + "isogram", + "markdown-it-toc-and-anchor", + "metalsmith-collections", + "metalsmith-filenames", + "metalsmith-md", + "metalsmith-react", + "metalsmith-rename", + "metalsmith-rss", + "metalsmith-url", + "metalsmith-watch", + "nano-logger", + "npmpub", + "postcss-browser-reporter", + "react-svg-inline", + "to-slug-case", + "webpack-nano-logs", + "cssnext", + "@csstools/cascade-layer-name-parser", + "at-rule", + "atrule", + "csswg", + "media", + "queries", + "declarative", + "selectors", + "empty", + "at-rules", + "@keyframes", + "@counter-style", + "flexbugs", + "flex", + "postcss-less", + "postcss-styl", + "quickapp", + "PHP", + "sss", + "image-set", + "node modules", + "postcssrc", + "postcss.config.js", + "midas", + "postcss-short", + "postcss-dark-theme-class", + "cssnano-utils", + "font-family", + "font-weight", + "@types/cssesc", + "css-modules", + "@csstools/selector-resolve-nested", + "atrules", + "children", + "nestings", + "@csstools/normalize.css", + "postcss-browser-comments", + "sanitize.css", + "@csstools/postcss-tape", + "normalizes", + "fixes", + "@csstools/postcss-alpha-function", + "@csstools/postcss-color-function", + "@csstools/postcss-color-function-display-p3-linear", + "@csstools/postcss-color-mix-function", + "@csstools/postcss-color-mix-variadic-function-arguments", + "@csstools/postcss-content-alt-text", + "@csstools/postcss-contrast-color-function", + "@csstools/postcss-exponential-functions", + "@csstools/postcss-font-format-keywords", + "@csstools/postcss-gamut-mapping", + "@csstools/postcss-gradients-interpolation-method", + "@csstools/postcss-hwb-function", + "@csstools/postcss-ic-unit", + "@csstools/postcss-initial", + "@csstools/postcss-light-dark-function", + "@csstools/postcss-logical-float-and-clear", + "@csstools/postcss-logical-overflow", + "@csstools/postcss-logical-overscroll-behavior", + "@csstools/postcss-logical-resize", + "@csstools/postcss-logical-viewport-units", + "@csstools/postcss-media-minmax", + "@csstools/postcss-media-queries-aspect-ratio-number-values", + "@csstools/postcss-mixins", + "@csstools/postcss-nested-calc", + "@csstools/postcss-normalize-display-values", + "@csstools/postcss-oklab-function", + "@csstools/postcss-position-area-property", + "@csstools/postcss-property-rule-prelude-list", + "@csstools/postcss-random-function", + "@csstools/postcss-relative-color-syntax", + "@csstools/postcss-scope-pseudo-class", + "@csstools/postcss-sign-functions", + "@csstools/postcss-stepped-value-functions", + "@csstools/postcss-syntax-descriptor-syntax-production", + "@csstools/postcss-system-ui-font-family", + "@csstools/postcss-text-decoration-shorthand", + "@csstools/postcss-trigonometric-functions", + "@csstools/postcss-unset-value", + "css-blank-pseudo", + "css-has-pseudo", + "css-prefers-color-scheme", + "postcss-clamp", + "postcss-dir-pseudo-class", + "postcss-double-position-gradients", + "postcss-focus-within", + "postcss-gap-properties", + "postcss-lab-function", + "postcss-logical", + "postcss-overflow-shorthand", + "postcss-page-break", + "postcss-place", + "lists", + "postcss-syntax", + "@jsopen/objects", + "doublylinked", + "lightning-pool", + "postgres-bytea", + "power-tasks", + "putil-promisify", + "putil-varhelpers", + "transformations", + "processor", + "ltgt", + "vuvuzela", + "spark-md5", + "level-codec", + "fetch-cookie", + "double-ended-queue", + "level-write-stream", + "empower", + "power-assert-formatter", + "universal-deep-strict-equal", + "dereserve", + "licensify", + "package-json-filterify", + "precommit", + "@actions/github", + "@actions/glob", + "babel-plugin-transform-rename-properties", + "errorstacks", + "kolorist", + "virtual dom", + "dom diff", + "binary-searching", + "jest-light-runner", + "jest-specific-snapshot", + "@vue/language-plugin-pug", + "prettier-plugin", + "imports", + "organize-imports", + "glob-fs", + "humanized", + "si", + "locale", + "localized", + "renderkid", + "jitter", + "exception", + "error-handling", + "parse-ms", + "milliseconds", + "period", + "hrtime", + "@pkgr/core", + "mercurial", + "hg", + "vcs", + "@prisma/config", + "@prisma/engines", + "@prisma/studio-core", + "ohash", + "package-up", + "ts-pattern", + "@prisma/dmmf", + "line-replace", + "@prisma/debug", + "openapi-fetch", + "xdg-app-paths", + "@libsql/client", + "@prisma/client", + "@prisma/migrate", + "get-port-please", + "@prisma/generator", + "@prisma/internals", + "checkpoint-client", + "openapi-typescript", + "@prisma/fetch-engine", + "@prisma/get-platform", + "@types/better-sqlite3", + "@prisma/adapter-libsql", + "@prisma/credentials-store", + "@prisma/management-api-sdk", + "@prisma/driver-adapter-utils", + "@prisma/client-generator-registry", + "@opentelemetry/context-async-hooks", + "ORM", + "Prisma", + "Prisma CLI", + "prisma2", + "JS", + "TS", + "SQL", + "SQLite", + "Postgres", + "PostgreSQL", + "CockroachDB", + "MySQL", + "MariaDB", + "MSSQL", + "SQL Server", + "SQLServer", + "MongoDB", + "MCP", + "danger", + "docdash", + "gulp-terser", + "regexpp", + "webfont", + "prism", + "node-rest-client", + "URIjs", + "svn", + "customize", + "sisteransi", + "interact", + "uglifyify", + "uglifyjs", + "alpha-sort", + "html-event-attributes", + "mdast-zone", + "svg-element-attributes", + "svg-event-attributes", + "@protobufjs/aspromise", + "@protobufjs/base64", + "@protobufjs/codegen", + "@protobufjs/eventemitter", + "@protobufjs/fetch", + "@protobufjs/float", + "@protobufjs/inquire", + "@protobufjs/path", + "@protobufjs/pool", + "@protobufjs/utf8", + "browserify-wrap", + "git-semver-tags", + "protobuf", + "protocol-buffers", + "serialization", + "@types/q", + "@types/jasminewd2", + "gulp-clang-format", + "natives", + "tslint-eslint-rules", + "vrsource-tslint-rules", + "webdriverjs", + "basic-auth-parser", + "@types/args", + "squid", + "privoxy", + "mod_proxy", + "via", + "x-forwarded-for", + "fill-keys", + "module-not-found-error", + "native-hello-world", + "cp-sugar", + "elegant-status", + "pug-load", + "pug-lexer", + "pug-linker", + "pug-parser", + "pug-filters", + "pug-runtime", + "pug-code-gen", + "pug-strip-comments", + "jstransformer-uglify-js", + "jstransformer-markdown-it", + "tap-bail", + "idn", + "idna", + "dns", + "domain", + "chromium-bidi", + "puppeteer-core", + "typed-query-selector", + "purge", + "fluent", + "qr code", + "@browserify/envify", + "@browserify/uglifyify", + "common-shakeify", + "has-override-mistake", + "unassertify", + "decode-uri-component", + "filter-obj", + "split-on-first", + "param", + "parameter", + "searchparams", + "retape", + "tap-esm", + "synchronous", + "FIFO", + "lifo", + "LIFO", + "work", + "queue js", + "job queue", + "job scheduling", + "task queue", + "ordered", + "iterate", + "linked list", + "dequeue", + "shift", + "item", + "parchment", + "quill-delta", + "@types/highlight.js", + "transpile-webpack-plugin", + "eslint-import-resolver-webpack", + "fuzzysort", + "grunt-search", + "eslint-plugin-json-es", + "@qunitjs/browserstack-runner", + "dom-element-descriptors", + "@types/qunit", + "@release-it-plugins/lerna-changelog", + "qunit-plugin", + "exists-stat", + "js-reporters", + "browserstack-runner", + "testling", + "requestAnimationFrame", + "babel-plugin-import-export-rename", + "envvar", + "sanctuary", + "sanctuary-identity", + "xyz", + "tacit", + "point-free", + "curried", + "fantasy-land", + "words", + "sample", + "timed-out", + "exceptions", + "sentry", + "unpipe", + "@rc-component/father-plugin", + "father-build", + "rc-test", + "react-slider", + "slider", + "react-tooltip", + "@types/responselike", + "react-addon", + "@apollo/react-common", + "@apollo/react-components", + "@apollo/react-hoc", + "@apollo/react-hooks", + "@apollo/react-ssr", + "@restart/ui", + "@restart/hooks", + "uncontrollable", + "prop-types-extra", + "ecosystem-react", + "@icons/material", + "material-colors", + "reactcss", + "@case/eslint-config", + "@storybook/addon-centered", + "babel-plugin-transform-rename-import", + "chai-spies", + "jsx-loader", + "react-context", + "react-mark", + "testdom", + "color picker", + "sketch", + "photoshop", + "html-webpack-tags-plugin", + "copy to clipboard", + "@react-docgen/cli", + "date-fns-tz", + "is-root", + "detect-port-alt", + "@react-dnd/invariant", + "@react-dnd/shallowequal", + "dnd-core", + "@types/doctrine", + "documentation-generation", + "attr-accept", + "file-selector", + "@babel/plugin-proposal-do-expressions", + "@babel/plugin-proposal-logical-assignment-operators", + "@babel/plugin-proposal-pipeline-operator", + "@commitlint/prompt", + "@size-limit/webpack-why", + "imagemin-cli", + "webpack-blocks", + "jest-fetch-mock", + "settle-promise", + "overlay", + "redbox", + "crash", + "react-side-effect", + "eslint-config-nfl", + "karma-chai-sinon", + "karma-html-reporter", + "nfl", + "head", + "title", + "meta", + "noscript", + "jest-fixed-jsdom", + "form-validation", + "enzyme-adapter-react-15", + "react-mount", + "yarn-deduplicate", + "live", + "hot", + "use-sync-external-store", + "@babel/plugin-proposal-async-generator-functions", + "eslint-plugin-jest-dom", + "viewport", + "intersection", + "observer", + "lazy load", + "inview", + "useInView", + "useIntersectionObserver", + "@formatjs/ecma402-abstract", + "@formatjs/icu-messageformat-parser", + "@formatjs/intl", + "intl-messageformat", + "eslint-config-es5", + "rehype-starry-night", + "exenv", + "@webcomponents/custom-elements", + "dialog", + "babel-browser-transform", + "inject-loader", + "isparta-loader", + "karma-jasmine-diff-reporter", + "lodash.range", + "transitiongroup", + "spring", + "tween", + "motion", + "transition", + "nullthrows", + "metro-runtime", + "hermes-compiler", + "metro-source-map", + "flow-enums-runtime", + "@react-native/codegen", + "@react-native/js-polyfills", + "@react-native/gradle-plugin", + "@react-native/assets-registry", + "@react-native/normalize-colors", + "@jest/create-cache-key-function", + "@react-native/virtualized-lists", + "babel-plugin-syntax-hermes-parser", + "@react-native/community-cli-plugin", + "app-framework", + "mobile-development", + "@react-native-community/cli", + "@react-native/eslint-config", + "@react-native/typescript-config", + "react-native-builder-bob", + "react-native-component", + "keychain", + "svg2ttf", + "fontisto", + "evil-icons", + "feather-icons", + "oslllo-svg-fixer", + "svgicons2svgfont", + "simple-line-icons", + "@entypo-icons/core", + "css-social-buttons", + "osx", + "macos", + "@cmfcmf/docusaurus-search-local", + "react-transform-hmr", + "currency", + "number-format", + "require-hijack", + "onclick", + "outside", + "onclickoutside", + "@rollup/plugin-sucrase", + "eslint-plugin-ft-flow", + "hermes-eslint", + "@types/use-sync-external-store", + "matchmediaquery", + "@types/hyphenate-style-name", + "@types/match-media-mock", + "@types/matchmediaquery", + "match-media-mock", + "media queries", + "respond", + "matchMedia", + "wireit", + "premove", + "redux-devtools", + "redux-devtools-dock-monitor", + "redux-devtools-log-monitor", + "combobox", + "multiselect", + "json2mq", + "@playwright/experimental-ct-react", + "foundation-apps", + "slick-carousel", + "why-did-you-update", + "slick", + "carousel", + "Image slider", + "orbit", + "@tippyjs/react", + "@vxna/mini-html-webpack-template", + "clipboard-copy", + "common-dir", + "es6-object-assign", + "function.name-polyfill", + "glogg", + "javascript-stringify", + "jss", + "jss-plugin-camel-case", + "jss-plugin-compose", + "jss-plugin-default-unit", + "jss-plugin-global", + "jss-plugin-isolate", + "jss-plugin-nested", + "listify", + "mini-html-webpack-plugin", + "q-i", + "qss", + "react-docgen-annotation-resolver", + "react-docgen-displayname-handler", + "react-group", + "strip-html-comments", + "type-detect", + "@types/buble", + "@types/copy-webpack-plugin", + "@types/escodegen", + "@types/hash-sum", + "@types/keymirror", + "@types/markdown-to-jsx", + "@types/terser-webpack-plugin", + "@types/type-detect", + "@types/webpack-dev-server", + "deabsdeep", + "deepfreeze", + "dog-names", + "eslint-config-tamia", + "keymirror", + "strip-shebang", + "scalable vector graphics", + "svginjector", + "TapEventPlugin", + "300ms", + "react-testing", + "@4tw/cypress-drag-drop", + "vite-plugin-istanbul", + "toast", + "alert", + "snackbar", + "message", + "commoner", + "jstransform", + "coverify", + "es3ify", + "esprima-fb", + "grunt-jest", + "jasmine-tapreporter", + "populist", + "transition-group", + "transitions", + "react-codemirror", + "eslint-config-react", + "eslint-plugin-relay", + "@babel/preset-stage-2", + "jest-environment-puppeteer", + "@babel/plugin-transform-flow-comments", + "scrolling", + "infinite", + "virtualized", + "fixed", + "es6-module-jstransform", + "@storybook/addon-storysource", + "customize-cra", + "holderjs", + "react-prism", + "esbuild-plugin-alias", + "tap-mocha-reporter", + "line by line", + "repl", + "tiny-invariant", + "@types/esprima", + "flow-parser", + "refactoring", + "pretty-printing", + "prepare", + "change-emitter", + "higher-order", + "microcomponentization", + "composition", + "lister", + "@redis/bloom", + "@redis/client", + "@redis/json", + "@redis/search", + "@redis/time-series", + "@redocly/openapi-core", + "@cfaester/enzyme-adapter-react-18", + "docusaurus-theme-redoc", + "docusaurus-plugin-redoc", + "@docusaurus/theme-common", + "api-doc", + "docusaurus-preset", + "netlify-plugin-cache", + "predictable", + "replay", + "elm", + "just-curry-it", + "reduce-reducers", + "@vitest/coverage-c8", + "eslint-config-unicorn-camelcase", + "flux-standard-action", + "actions", + "insert-line", + "redux-immutable", + "lodash-webpack-plugin", + "@redux-saga/core", + "saga", + "effects", + "side effects", + "thunk", + "redux-middleware", + "ecmarkup", + "gulp-emu", + "gulp-live-server", + "gulp-sequence", + "reflect", + "regenerator", + "abstract", + "is-hidden", + "rehype-plugin", + "is-absolute-url", + "external", + "hast-util-properties-to-mdx-jsx-attributes", + "eslint-config-remcohaszing", + "snapshot-fixtures", + "@nodeutils/defaults-deep", + "@phun-ky/typeof", + "issue-parser", + "wildcard-match", + "@octokit/request-error", + "mentoss", + "mock-stdio", + "remark-preset-webpro", + "distribution", + "intern", + "markdown-extensions", + "unified-args", + "footnote", + "remark-plugin", + "remark-slug", + "mermaid-isomorphic", + "hast-util-from-html-isomorphic", + "mermaidjs", + "remark-comment-config", + "remark-contributors", + "remark-heading-gap", + "remark-license", + "remark-lint-definition-spacing", + "remark-lint-fenced-code-flag", + "remark-lint-file-extension", + "remark-lint-final-definition", + "remark-lint-first-heading-level", + "remark-lint-heading-style", + "remark-lint-no-consecutive-blank-lines", + "remark-lint-no-emphasis-as-heading", + "remark-lint-no-file-name-articles", + "remark-lint-no-file-name-consecutive-dashes", + "remark-lint-no-file-name-irregular-characters", + "remark-lint-no-file-name-mixed-case", + "remark-lint-no-file-name-outer-dashes", + "remark-lint-no-heading-indent", + "remark-lint-no-heading-punctuation", + "remark-lint-no-missing-blank-lines", + "remark-lint-no-multiple-toplevel-headings", + "remark-lint-no-shell-dollars", + "remark-lint-no-table-indentation", + "remark-lint-no-tabs", + "remark-lint-ordered-list-marker-value", + "remark-lint-table-pipe-alignment", + "remark-retext", + "retext-english", + "retext-preset-github", + "remark-lint-correct-media-syntax", + "remark-lint-definition-sort", + "remark-lint-link-title-style", + "remark-lint-maximum-heading-length", + "remark-lint-maximum-line-length", + "remark-lint-mdx-jsx-attribute-sort", + "remark-lint-mdx-jsx-no-void-children", + "remark-lint-mdx-jsx-quote-style", + "remark-lint-mdx-jsx-self-close", + "remark-lint-mdx-jsx-shorthand-attribute", + "remark-lint-mdx-jsx-unique-attribute-name", + "remark-lint-media-style", + "remark-lint-no-duplicate-defined-urls", + "remark-lint-no-duplicate-headings-in-section", + "remark-lint-no-empty-url", + "remark-lint-no-heading-like-paragraph", + "remark-lint-no-hidden-table-cell", + "remark-lint-no-html", + "remark-lint-no-paragraph-content-indent", + "remark-lint-no-reference-like-url", + "remark-lint-no-unneeded-full-reference-image", + "remark-lint-no-unneeded-full-reference-link", + "retext-preset-wooorm", + "wooorm", + "autolinker", + "caseless", + "aws-sign2", + "oauth-sign", + "tunnel-agent", + "forever-agent", + "har-validator", + "is-typedarray", + "http-signature", + "taper", + "karma-cli", + "stealthy-require", + "request-promise-core", + "thenable", + "index.js", + "@typescript-eslint/eslint-plugin-tslint", + "@typescript/analyze-trace", + "eslint-plugin-typescript", + "micro-memoize", + "ResizeObserver", + "path-parse", + "supports-preserve-symlinks-flag", + "copy-dir", + "adjust-sourcemap-loader", + "cls-hooked", + "myrmidon", + "conventional-changelog-eslint", + "eslint-config-incredible", + "eslint-plugin-censor", + "eslint-plugin-no-secrets", + "eslint-plugin-scanjs-rules", + "fatum", + "node-package-tester", + "semantic-release-telegram", + "vesta", + "documentate", + "autodocumentate", + "ewma", + "spdy", + "restify-errors", + "escape-regexp-component", + "watershed", + "restify-clients", + "autocannon-compare", + "DTrace", + "quit", + "shutdown", + "sigterm", + "sigint", + "terminate", + "kill", + "NoSQL", + "reql", + "query language", + "leak", + "deep-copy", + "fast-copy", + "fastest-json-copy", + "nano-copy", + "plain-object-clone", + "deep-clone", + "deepclone", + "deepcopy", + "performant", + "fastclone", + "fastcopy", + "fast-clone", + "fast-deep-clone", + "fast-deep-copy", + "package-json-from-dist", + "rm -rf", + "rm -fr", + "prebuild", + "run-script-os", + "targetpractice", + "Automation", + "mouse", + "pixel", + "recognition", + "autohotkey", + "machine", + "learning", + "@mermaid-js/mermaid-cli", + "@shikijs/vitepress-twoslash", + "@vue/language-server", + "acorn-import-assertions", + "date-time", + "flru", + "npm-audit-resolver", + "wasm-pack", + "bundling", + "rollup-plugin", + "js-cleanup", + "rollup-plugin-jsx", + "sourcemap-validator", + "removal", + "@types/d3-drag", + "@types", + "commenting", + "package-name-regex", + "spdx-expression-validate", + "spdx-satisfies", + "gulp-conventional-changelog", + "rollup-plugin-prettier", + "rollup-plugin-strip-banner", + "browserify-fs", + "buffer-es6", + "process-es6", + "sourceMappingURL", + "@types/find-cache-dir", + "@types/graphlib", + "graphlib", + "rollup-plugin-re", + "@types/d3-array", + "@types/d3-color", + "@types/d3-force", + "@types/d3-hierarchy", + "@types/d3-scale", + "@types/d3-shape", + "visualizer", + "treemap", + "sunburst", + "diagram", + "@ampproject/toolbox-optimizer", + "@babel/plugin-syntax-bigint", + "@capsizecss/metrics", + "@edge-runtime/cookies", + "@edge-runtime/ponyfill", + "@edge-runtime/primitives", + "@napi-rs/triples", + "@next/polyfill-module", + "@next/polyfill-nomodule", + "@next/react-refresh-utils", + "@next/swc", + "@taskr/clear", + "@taskr/esnext", + "@types/amphtml-validator", + "@types/babel__generator", + "@types/ci-info", + "@types/content-disposition", + "@types/express-serve-static-core", + "@types/fresh", + "@types/lodash.curry", + "@types/path-to-regexp", + "@types/platform", + "@types/send", + "@types/text-table", + "@types/ua-parser-js", + "amphtml-validator", + "async-sema", + "cli-select", + "comment-json", + "edge-runtime", + "ignore-loader", + "lodash.curry", + "native-url", + "server-only", + "string-hash", + "taskr", + "unistore", + "watchpack", + "ember-cli-progress", + "rtl", + "ltr", + "run series", + "LINQ", + "FRP", + "Reactive", + "Rx", + "RxJS", + "@angular-devkit/build-optimizer", + "@types/source-map", + "check-side-effects", + "rollup-plugin-alias", + "rollup-plugin-inject", + "tslint-etc", + "tslint-no-toplevel-property-access", + "tslint-no-unused-expression-chai", + "web-streams-polyfill", + "ReactiveX", + "ReactiveExtensions", + "Streams", + "Observables", + "Stream", + "buffer allocate", + "node security", + "uninitialized", + "mock-env", + "dist-tag", + "prepublish", + "@sailshq/lodash", + "@sailshq/router", + "captains-log", + "common-js-file-extensions", + "@sailshq/csurf", + "flaverr", + "i18n-2", + "include-all", + "machine-as-action", + "machinepack-process", + "machinepack-redis", + "merge-defaults", + "merge-dictionaries", + "parley", + "rttc", + "sails-generate", + "sails-stringfile", + "skipper", + "sort-route-addresses", + "whelk", + "machinepack-fs", + "@sailshq/request", + "root-require", + "sails-hook-orm", + "sails-hook-sockets", + "sails.io.js", + "session-file-store", + "mvc", + "web-framework", + "sailsjs", + "sails.js", + "truncate-utf8-bytes", + "mktemp", + "filename", + "parse-srcset", + "eslint-config-apostrophe", + "material-components-web", + "node-sass-glob-importer", + "markdown-model", + "bare-script", + "element-model", + "food", + "drink", + "helpful", + "opensourcesoftware", + "teaching", + "experimentation", + "applications", + "ec", + "ecdh", + "ecdsa", + "seed", + "@bazel/runfiles", + "@semantic-release/error", + "aggregate-error", + "env-ci", + "find-versions", + "git-log-parser", + "import-from-esm", + "p-each-series", + "file-url", + "mockserver-client", + "p-retry", + "stream-buffers", + "author", + "@fluentui/react-component-event-listener", + "@fluentui/react-component-ref", + "@semantic-ui-react/event-stack", + "keyboard-key", + "@artsy/fresnel", + "@babel/standalone", + "@percy/cli", + "@percy/cypress", + "anchor-js", + "babel-plugin-filter-imports", + "babel-plugin-transform-react-handled-props", + "babel-plugin-universal-import", + "chai-enzyme", + "react-ace", + "react-codesandboxer", + "react-source-render", + "react-static", + "react-static-routes", + "react-universal-component", + "satisfied", + "semantic-ui-css", + "ta-scripts", + "terser-webpack-plugin-legacy", + "eslint-config-standard-jsx", + "standard-engine", + "bikeshed", + "semicolon", + "@hapi/joi", + "eraro", + "fast-safe-stringify", + "gate-executor", + "gubu", + "jsonic", + "lodash.defaultsdeep", + "optioner", + "ordu", + "patrun", + "rolling-stats", + "seneca-transport", + "use-plugin", + "@seneca/test-plugin", + "bench", + "gex", + "lab-transform-typescript", + "seneca-entity", + "seneca-error-test", + "seneca-joi", + "seneca-promisify", + "summary", + "micro-service", + "micro-services", + "micro service", + "minimum", + "viable", + "product", + "Sentimental", + "nlp", + "wkx", + "dottie", + "sequelize-pool", + "toposort-class", + "retry-as-promised", + "ibm_db", + "mariadb", + "p-props", + "p-settle", + "node-hook", + "pg-hstore", + "chai-datetime", + "snowflake-sdk", + "@octokit/types", + "js-combinatorics", + "esdoc-standard-plugin", + "esdoc-inject-style-plugin", + "esdoc-ecmascript-proposal-plugin", + "semantic-release-fail-on-major-bump", + "db2", + "snowflake", + "object relational mapper", + "@serialport/stream", + "@serialport/binding-mock", + "@serialport/bindings-cpp", + "@serialport/parser-ready", + "@serialport/parser-regex", + "@serialport/parser-cctalk", + "@serialport/parser-readline", + "@serialport/parser-delimiter", + "@serialport/parser-byte-length", + "@serialport/parser-spacepacket", + "@serialport/parser-slip-encoder", + "@serialport/parser-packet-length", + "@serialport/parser-inter-byte-timeout", + "ccTalk", + "com port", + "COM", + "data logging", + "hardware", + "modem", + "nodebots", + "RFID", + "sensor", + "serial port", + "sms gateway", + "sms", + "UART", + "update-check", + "@zeit/schemas", + "is-port-reachable", + "@vercel/style-guide", + "@types/serve-handler", + "temp-path", + "favicon", + "@serverless/utils", + "@commitlint/cz-commitlint", + "@serverless/test", + "serverless", + "serverless plugins", + "aws lambda", + "amazon web services", + "serverless.com", + "@aws-cdk/aws-lambda-python-alpha", + "@aws-sdk/client-dynamodb", + "@aws-sdk/client-eventbridge", + "@aws-sdk/client-lambda", + "@aws-sdk/client-sns", + "@aws-sdk/client-sqs", + "@aws-sdk/client-sts", + "@aws-sdk/lib-dynamodb", + "@aws-sdk/util-dynamodb", + "aws-cdk-lib", + "aws-iot-device-sdk", + "caporal", + "json-format-highlight", + "@types/aws-iot-device-sdk", + "@types/aws4", + "esbuild-runner", + "jsii", + "jsii-diff", + "jsii-docgen", + "jsii-pacmak", + "eventbridge", + "flow-remove-types", + "isequalwith", + "@img/colour", + "emnapi", + "exif-reader", + "@cpplint/cli", + "@emnapi/runtime", + "@img/sharp-libvips-dev", + "@img/sharp-libvips-win32-x64", + "@img/sharp-libvips-dev-wasm32", + "@img/sharp-libvips-win32-ia32", + "@img/sharp-libvips-win32-arm64", + "dzi", + "thumbnail", + "libvips", + "vips", + "quote", + "shelljs-changelog", + "shelljs-release", + "travis-check-changes", + "makefile", + "clean-publish", + "short", + "tiny", + "bitly", + "shorten", + "tinyid", + "should-equal", + "should-format", + "should-type", + "should-type-adaptors", + "should-util", + "eslint-config-shouldjs", + "grunt-endline", + "quiet-grunt", + "semver-sort", + "shelljs-plugin-open", + "transforms", + "@kwsites/file-exists", + "@kwsites/promise-deferred", + "@kwsites/promise-result", + "@simple-git/babel-config", + "source control", + "custom-event", + "js-correct-lockfile", + "rollup-plugin-analyzer", + "eslint-config-important-stuff", + "@sinonjs/samsam", + "@sinonjs/eslint-plugin-no-prototype-methods", + "@studio/changes", + "esbuild-plugin-istanbul", + "clock", + "vendor", + "mocks-and-spies", + "crypt3", + "fs-ext", + "express-json5", + "render-readme", + "sinopia-htpasswd", + "browserify-handlebars", + "@polka/url", + "totalist", + "bytes-iec", + "nanospinner", + "budget", + "performance budget", + "file size", + "directory size", + "get size", + "qpass", + "amazon-cognito-identity-js", + "basic-node-server", + "skapi", + "seperator", + "is-fullwidth-code-point", + "random-item", + "get-folder-size", + "js-extend", + "math-sum", + "prettier-bytes", + "tablify", + "slow", + "github-changes", + "urlify", + "standard-json", + "pretty output", + "snazzy standard", + "standard pretty", + "stylish for standard", + "stylish formatter", + "stylish reporter", + "stylish standard", + "axios-ntlm", + "xml-crypto", + "@types/sax", + "base64id", + "socket.io-adapter", + "io", + "@socket.io/component-emitter", + "eventsource", + "sockjs", + "separated", + "@anvilco/apollo-server-plugin-introspection-metadata", + "@graphql-tools/load-files", + "@graphql-tools/merge", + "@graphql-tools/utils", + "graphql-scalars", + "json-stringify-pretty-compact", + "microfiber", + "bdd-lazy-var", + "introspection", + "introspection-query", + "string-to-stream", + "binary-split", + "callback-stream", + "gulp-benchmark", + "imageinfo", + "prettydiff", + "sprity-css", + "sprity-lwip", + "object-stream", + "through2-spy", + "sprites", + "coordinates", + "css-sprite", + "asn1", + "bcrypt-pbkdf", + "integrity", + "subresource integrity", + "sri", + "sri hash", + "sri string", + "sri generator", + "encrypt", + "st", + "firestore", + "shuruhatik", + "long-stack-traces", + "version-guard", + "run-parallel-limit", + "conventional-changelog-config-spec", + "dotgitignore", + "stringify-package", + "std-mocks", + "recommended", + "check-more-types", + "lazy-ass", + "ban-sensitive-files", + "deps-ok", + "dont-crack", + "git-issues", + "pre-git", + "simple-commit-message", + "winser", + "modern-syslog", + "etsy", + "metric", + "aggregation", + "@vitest/expect", + "@storybook/global", + "store2", + "exsolve", + "empathic", + "picoquery", + "modern-tar", + "fetch-retry", + "@types/npmlog", + "@vitest/utils", + "launch-editor", + "unique-string", + "@vitest/mocker", + "bundle-require", + "flush-promises", + "@yarnpkg/libzip", + "browser-dtector", + "react-inspector", + "@react-aria/tabs", + "deep-object-diff", + "@react-aria/utils", + "@polka/compression", + "@types/detect-port", + "@ngard/tiny-isequal", + "@react-aria/toolbar", + "@react-stately/tabs", + "@react-types/shared", + "@storybook/docs-mdx", + "get-npm-tarball-url", + "use-resize-observer", + "@radix-ui/react-slot", + "@react-aria/landmark", + "@react-aria/overlays", + "@types/pretty-hrtime", + "@discoveryjs/json-ext", + "lazy-universal-dotenv", + "react-transition-state", + "@react-stately/overlays", + "@react-aria/interactions", + "react-syntax-highlighter", + "@radix-ui/react-scroll-area", + "@devtools-ds/object-inspector", + "@types/react-syntax-highlighter", + "@aw-web-design/x-default-browser", + "@fal-works/esbuild-plugin-global-externals", + "design-systems", + "component-testing", + "@glen/jest-raw-loader", + "@storybook/addon-onboarding", + "@storybook/addon-storyshots", + "@storybook/addon-storyshots-puppeteer", + "@storybook/blocks", + "@storybook/test", + "eslint-config-torchbox", + "storybookjs", + "patternlab", + "django", + "django-pattern-library", + "django-templates", + "jinja2", + "findit2", + "inside", + "funsert", + "into-stream", + "Assert", + "music-metadata", + "livestream", + "livestreaming", + "gulp-rimraf", + "string.js", + "stringjs", + "S", + "s", + "codsen-utils", + "ranges-apply", + "ranges-push", + "string-left-right", + "ast-monkey-traverse", + "ranges-invert", + "jsp", + "mixed", + "stri", + "xhtml", + "get-east-asian-width", + "visual", + "columns", + "fullwidth", + "full-width", + "wcswidth", + "full", + "cjk", + "chinese", + "japanese", + "korean", + "fixed-width", + "east-asian-width", + "undici-types", + "payment processing", + "credit cards", + "generator-loopback", + "loopback-sdk-angular-cli", + "nodefly-register", + "strong-agent", + "strong-arc", + "strong-build", + "strong-deploy", + "strong-mesh-models", + "strong-registry", + "strong-start", + "strong-supervisor", + "core-util-is", + "strong-debugger", + "strong-swagger-ui", + "swagger-ui", + "utf-8-validate", + "LoopBack", + "Platform", + "alerts", + "event loop", + "heroku", + "master", + "metrics", + "nodeops", + "npmrc", + "openshift", + "ops", + "pm", + "response", + "slc", + "slowest functions", + "strong-cli", + "strong-cluster-control", + "strongops", + "upstart", + "@bundled-es-modules/deepmerge", + "@bundled-es-modules/glob", + "@bundled-es-modules/memfs", + "@zip.js/zip.js", + "path-unified", + "@esm-bundle/chai-as-promised", + "@rollup/browser", + "@shoelace-style/shoelace", + "@web/test-runner-commands", + "hanbi", + "jsdoc-escape-at", + "jsdoc-tsimport-plugin", + "starlight-links-validator", + "style dictionary", + "dictionary", + "Android", + "@types/stylis", + "css-to-react-native", + "@types/js-beautify", + "@types/react-frame-component", + "@types/shallowequal", + "react-frame-component", + "stylis-plugin-rtl", + "ts-toolbelt", + "stylis-rule-sheet", + "zeit", + "hack", + "hacks", + "globjoin", + "mathml-tag-names", + "svg-tags", + "@changesets/get-github-info", + "@stylelint/prettier-config", + "@stylelint/remark-preset", + "@types/balanced-match", + "@types/file-entry-cache", + "@types/global-modules", + "@types/globjoin", + "@types/imurmurhash", + "@types/postcss-less", + "@types/svg-tags", + "eslint-config-stylelint", + "jest-preset-stylelint", + "postcss-sass", + "stylelint-config", + "shortcss", + "css-values", + "babel-register-ts", + "stylelint-plugin", + "delaration-strict-value", + "keyword", + "z-index", + "postcss-sorting", + "eslint-config-hudochenkov", + "postcss-styled-syntax", + "prettier-config-hudochenkov", + "postcss-media-query-parser", + "postcss-resolve-nested-selector", + "github-contributors-list", + "bootstrap-styl", + "cookiejar", + "should-http", + "tinyify", + "frisbee", + "super", + "promised", + "supports", + "capability", + "truecolor", + "16m", + "esrap", + "zimmerframe", + "@types/sade", + "vscode-languageserver", + "vscode-languageserver-protocol", + "svelte2tsx", + "svelte-language-server", + "@kiwi/eslint-config", + "@kiwi/prettier-config", + "@types/pug", + "postcss-easy-import", + "prettysize", + "@resvg/resvg-js", + "playwright-chromium", + "eslint-plugin-jest-formatting", + "sw-precache", + "git-release-notes", + "precache", + "tape-promise", + "autogen", + "promise.any", + "multilang-extract-comments", + "@readme/eslint-config", + "readmeio", + "swagger-nestjs", + "swagger-templates", + "swagger UI", + "istanbul-badges-readme", + "nodelint", + "still", + "mocha-phantomjs", + "travis-cov", + "jinja", + "swipe", + "framework7", + "gallery", + "slideshow", + "http-response-object", + "sync-rpc", + "then-request", + "flowgen2", + "system information", + "sysinfo", + "freebsd", + "openbsd", + "netbsd", + "cpu", + "cpuload", + "physical cores", + "logical cores", + "cores", + "socket type", + "fsstats", + "diskio", + "block devices", + "netstats", + "network interfaces", + "network connections", + "network stats", + "iface", + "printer", + "processes", + "users", + "internet", + "battery", + "docker stats", + "docker processes", + "graphic card", + "graphic controller", + "gpu", + "smart", + "disk layout", + "audio", + "bluetooth", + "wifi", + "wifinetworks", + "virtual box", + "virtualbox", + "vm", + "BIOS", + "chassis", + "symbol-es6", + "@jsenv/file-size-impact", + "construct-style-sheets-polyfill", + "hase", + "draht", + "limes", + "lusca", + "partof", + "timer2", + "uuidv4", + "crypto2", + "nocache", + "datasette", + "json-lines", + "processenv", + "stethoskop", + "flaschenpost", + "commands-events", + "nodeenv", + "roboter", + "assertthat", + "json-lines-client", + "cqs", + "cqrs", + "@codspeed/vitest-plugin", + "className", + "classList", + "override", + "@tailwindcss/oxide", + "@tapjs/after", + "@tapjs/after-each", + "@tapjs/asserts", + "@tapjs/before", + "@tapjs/before-each", + "@tapjs/chdir", + "@tapjs/core", + "@tapjs/filter", + "@tapjs/fixture", + "@tapjs/intercept", + "@tapjs/mock", + "@tapjs/node-serialize", + "@tapjs/run", + "@tapjs/snapshot", + "@tapjs/spawn", + "@tapjs/stdin", + "@tapjs/test", + "@tapjs/typescript", + "@tapjs/worker", + "resolve-import", + "tapjs", + "tapjs plugin", + "tap-out", + "tapes", + "@ljharb/resumer", + "@ljharb/through", + "array.prototype.every", + "dotignore", + "has-dynamic-import", + "ecstatic", + "npm-run-posix-or-windows", + "harness", + "chownr", + "yallist", + "@isaacs/fs-minipass", + "chmodr", + "events-to-array", + "brittle", + "b4a", + "streamx", + "fast-fifo", + "actor system", + "DDD", + "actor-system", + "front end", + "back end", + "@parcel/packager-ts", + "@parcel/transformer-typescript-types", + "cz-format-extension", + "telegram", + "telegram-api", + "telegram-client-api", + "tdlib", + "tglib", + "node-addon", + "tempdir", + "tmpfile", + "unique", + "seventh", + "lazyness", + "tree-kit", + "chroma-js", + "string-kit", + "nextgen-events", + "@cronvel/get-pixels", + "256 colors", + "true color", + "input field", + "gpm", + "screenbuffer", + "textbuffer", + "32-bit", + "charm", + "resumer", + "visualwidth", + "80s", + "ibm", + "@jridgewell/source-map", + "@ls-lint/ls-lint", + "astring", + "es8", + "@types/uglify-js", + "@test-runner/core", + "@test-runner/default-view", + "@test-runner/live-view", + "@test-runner/oneline-view", + "@test-runner/tom", + "multiline-ts", + "spawn-process", + "only-allow", + "sinon-assert-stub", + "sinon-mocha-test", + "unlinted", + "example", + "@devexpress/bin-v8-flags-filter", + "@devexpress/callsite-record", + "bowser", + "chrome-remote-interface", + "device-specs", + "elegant-spinner", + "get-os-info", + "import-lazy", + "is-podman", + "log-update-async-hook", + "moment-duration-format-commonjs", + "os-family", + "pinkie", + "promisify-event", + "read-file-relative", + "replicator", + "testcafe-browser-tools", + "testcafe-hammerhead", + "testcafe-legacy-api", + "testcafe-reporter-json", + "testcafe-reporter-list", + "testcafe-reporter-minimal", + "testcafe-reporter-spec", + "testcafe-reporter-xunit", + "testcafe-selector-generator", + "time-limit-promise", + "unquote", + "url-to-options", + "@devexpress/gulp-qunit-harness", + "@ffprobe-installer/ffprobe", + "@testcafe/publish-please", + "@types/callsite", + "@types/dedent", + "@types/useragent", + "browserstack-connector", + "caller", + "dom-walk", + "eslint-plugin-hammerhead", + "express-ntlm", + "gulp-clone", + "gulp-ll-next", + "gulp-mocha-simple", + "gulp-step", + "mocha-reporter-spec-with-retries", + "openssl-self-signed-certificate", + "recursive-copy", + "testcafe-browser-provider-browserstack", + "automated", + "QA", + "@types/dockerode", + "docker-compose", + "properties-reader", + "ssh-remote-port-forward", + "@types/async-lock", + "@types/properties-reader", + "@types/tar-fs", + "stringify-object-es5", + "codeclimate-test-reporter", + "cross-conf-env", + "headerify", + "is-number", + "teenytest", + "teenytest-promise", + "test double", + "fireworm", + "printf", + "spawn-args", + "styled_string", + "bluebird-retry", + "chai-shallow-deep-equal", + "saucie", + "eslint-config-mdcs", + "jpeg-js", + "three.js", + "3d", + "virtual-reality", + "augmented-reality", + "webgl", + "webgl2", + "webaudio", + "webgpu", + "webxr", + "get-port-cli", + "node-stdlib-browser", + "user-streams", + "hundreds", + "polendina", + "stream-spigot", + "streams2", + "unexpand", + "homedir", + "tilde", + "collapse", + "number-is-nan", + "profile", + "stats", + "bee-dnd", + "bee-tag", + "bee-form", + "bee-icon", + "bee-rate", + "bee-step", + "bee-tabs", + "bee-tile", + "bee-tree", + "bee-affix", + "bee-alert", + "bee-badge", + "bee-label", + "bee-menus", + "bee-modal", + "bee-panel", + "bee-radio", + "bee-table", + "bee-anchor", + "bee-button", + "bee-drawer", + "bee-layout", + "bee-locale", + "bee-navbar", + "bee-select", + "bee-slider", + "bee-switch", + "bee-upload", + "bee-animate", + "bee-backtop", + "bee-loading", + "bee-message", + "bee-overlay", + "bee-popover", + "bee-svgicon", + "bee-tooltip", + "bee-calendar", + "bee-carousel", + "bee-cascader", + "bee-checkbox", + "bee-collapse", + "bee-dropdown", + "bee-timeline", + "bee-transfer", + "bee-clipboard", + "bee-breadcrumb", + "bee-datepicker", + "bee-form-group", + "bee-pagination", + "bee-popconfirm", + "bee-timepicker", + "bee-transition", + "bee-colorpicker", + "bee-input-group", + "bee-page-layout", + "bee-tree-select", + "bee-autocomplete", + "bee-button-group", + "bee-complex-grid", + "bee-form-control", + "bee-input-number", + "bee-notification", + "bee-progress-bar", + "bee-search-panel", + "bee-loading-state", + "bee-input-group-addon", + "gulp-cleancss", + "gulp-css-wrap", + "tinper-bee-core", + "less-plugin-inline-urls", + "tinper", + "bee", + "tinylibs", + "@deno/shim-deno-test", + "tinycolor", + "worker threads", + "thread pool", + "method", + "@types/react-native-vector-icons", + "pushalert", + "react-native toast", + "react-native-toastify", + "toastify", + "react-native-notification", + "expo", + "Typescript", + "node-resemble-js", + "processmd", + "of", + "tldts", + "set-cookie", + "RFC6265", + "RFC2965", + "tinytim", + "trace", + "typedarray.prototype.slice", + "forEach", + "html-select", + "html-tokenize", + "aggregate", + "bs-logger", + "make-error", + "babel-preset-es2016", + "typescript-loader", + "migrate", + "migration", + "migrations", + "cli-tool", + "@ts-morph/common", + "code-block-writer", + "static analysis", + "code refactor", + "create-require", + "@tsconfig/node10", + "@tsconfig/node12", + "@tsconfig/node14", + "v8-compile-cache-lib", + "@cspotcode/source-map-support", + "dprint", + "@swc/wasm", + "ntypescript", + "util.promisify", + "fast-json-patch", + "omit-deep", + "power-assign", + "bre", + "rete", + "rule engine", + "rules engine", + "javascript rule engine", + "js rule engine", + "inference system", + "@types/strip-bom", + "@tsd/typescript", + "eslint-config-xo-typescript", + "typedefs", + "typedefinitions", + "jsonc-simple-parser", + "polite-json", + "sync-content", + "Microsoft", + "codelyzer", + "tslint-divid", + "@types/make-dir", + "tslint-immutable", + "tslint-misc-rules", + "tslint-microsoft-contrib", + "tslint-consistent-codestyle", + "ts-lint", + "typescript-tslint-plugin", + "fix-dts-default-cjs-exports", + "joycon", + "ts-essentials", + "typescript runner", + "@mixmark-io/domino", + "turndown-attendant", + "grunt-mocha", + "grunt-markdown", + "grunt-component-io", + "grunt-push-release", + "grunt-regex-replace", + "jshint-path-reporter", + "mocha-unfunk-reporter", + "grunt-concat-sourcemap", + "tap-browser-color", + "tweetnacl-util", + "curve25519", + "ed25519", + "nacl", + "poly1305", + "public", + "salsa20", + "signatures", + "twemoji-parser", + "DOM", + "Twitter", + "type-coverage-core", + "tagged-tag", + "@typescript/vfs", + "generics", + "media-typer", + "checking", + "@gerrit0/mini-shiki", + "@material/material-color-utilities", + "typedoc-theme", + "typedoc-plugin", + "material-design", + "material-3", + "typedocplugin", + "JsDocs", + "cli-prompt", + "concatenate", + "ebook", + "pandoc", + "kindlegen", + "latex", + "@types/mongoose", + "mongodb-memory-server-global", + "mongoose-findorcreate", + "prettier-tslint", + "sql-highlight", + "@sqltools/formatter", + "gulpclass", + "@types/sha.js", + "@sap/hana-client", + "@types/gulp-rename", + "standard-changelog", + "@google-cloud/spanner", + "@types/gulp-sourcemaps", + "@dprint/formatter", + "@esfx/canceltoken", + "@dprint/typescript", + "azure-devops-node-api", + "monocart-coverage-reports", + "mocha-fivemat-progress-reporter", + "eslint-formatter-autolinkable-stylish", + "commandpost", + "@types/power-assert", + "intelli-espower-loader", + "@types/postcss-modules-local-by-default", + "@types/postcss-modules-scope", + "@types/icss-utils", + "@types/postcss-modules-extract-imports", + "@types/reserved-words", + "jest-environment-node-single-context", + "postcss-import-sync2", + "sass-svg", + "promise-finally", + "typings-core", + "tslint-config-standard", + "definition", + "ecma", + "jsmin", + "random-bytes", + "@uiw/formatter", + "@uiw/react-affix", + "@uiw/react-alert", + "@uiw/react-auto-link", + "@uiw/react-avatar", + "@uiw/react-back-top", + "@uiw/react-badge", + "@uiw/react-breadcrumb", + "@uiw/react-button-group", + "@uiw/react-calendar", + "@uiw/react-card", + "@uiw/react-carousel", + "@uiw/react-cascader", + "@uiw/react-checkbox", + "@uiw/react-collapse", + "@uiw/react-copy-to-clipboard", + "@uiw/react-date-input", + "@uiw/react-date-picker", + "@uiw/react-descriptions", + "@uiw/react-divider", + "@uiw/react-drawer", + "@uiw/react-dropdown", + "@uiw/react-empty", + "@uiw/react-file-input", + "@uiw/react-form", + "@uiw/react-grid", + "@uiw/react-layout", + "@uiw/react-list", + "@uiw/react-loader", + "@uiw/react-menu", + "@uiw/react-message", + "@uiw/react-modal", + "@uiw/react-month-picker", + "@uiw/react-notify", + "@uiw/react-pagination", + "@uiw/react-pin-code", + "@uiw/react-popover", + "@uiw/react-portal", + "@uiw/react-progress", + "@uiw/react-radio", + "@uiw/react-rate", + "@uiw/react-search-select", + "@uiw/react-search-tree", + "@uiw/react-select", + "@uiw/react-slider", + "@uiw/react-split", + "@uiw/react-steps", + "@uiw/react-switch", + "@uiw/react-table", + "@uiw/react-tabs", + "@uiw/react-tag", + "@uiw/react-textarea", + "@uiw/react-time-picker", + "@uiw/react-tooltip", + "@uiw/react-transfer", + "@uiw/react-tree", + "@uiw/react-tree-checked", + "media-query-fns", + "parsel-js", + "citty", + "hookable", + "mkdist", + "untyped", + "pretty-bytes-cli", + "browserify-header", + "@metcoder95/https-pem", + "dns-packet", + "jsondiffpatch", + "bail", + "trough", + "@types/extend", + "retext", + "unique-random", + "non-repeating", + "unist-util", + "xast", + "nlcst", + "visit", + "pullstream", + "match-stream", + "uncompress", + "pupa", + "is-npm", + "fixture-stdout", + "notifier", + "urn", + "uri mutation", + "url mutation", + "uri manipulation", + "url manipulation", + "uri template", + "url template", + "unified resource locator", + "unified resource identifier", + "query string", + "RFC 3986", + "RFC3986", + "RFC 6570", + "RFC6570", + "jquery-plugin", + "ecosystem:jquery", + "sauce-browsers", + "sauce-test", + "formstream", + "ylru", + "@eggjs/oxlint-config", + "@tsconfig/node18", + "@types/busboy", + "@types/proxy", + "@types/selfsigned", + "string.prototype.towellformed", + "urlopen", + "userprofile", + "yamlparser", + "browserscope", + "ua", + "ua-parse", + "ua-parser", + "user agent", + "user-agent", + "is-generator-function", + "is-typed-array", + "is-async-supported", + "rfc9562", + "bundt", + "diffs", + "find-parent-dir", + "githook", + "sanitisation", + "sanitise", + "@vue/shared", + "@vant/use", + "@vant/popperjs", + "@vue/runtime-core", + "diffable-html", + "vitest-canvas-mock", + "@vant/area-data", + "@vant/cli", + "@vant/eslint-config", + "@vant/icons", + "@vercel/go", + "@vercel/h3", + "@vercel/fun", + "@vercel/koa", + "@vercel/blob", + "@vercel/hono", + "@vercel/next", + "@vercel/node", + "@vercel/ruby", + "@vercel/rust", + "@vercel/elysia", + "@vercel/nestjs", + "@vercel/python", + "@vercel/express", + "@vercel/fastify", + "@vercel/redwood", + "@vercel/backends", + "@vercel/hydrogen", + "@vercel/build-utils", + "@vercel/detect-agent", + "@vercel/static-build", + "@vercel/remix-builder", + "epipebomb", + "promisepipe", + "@sentry/node", + "@types/title", + "jaro-winkler", + "@types/chance", + "@types/dotenv", + "@vercel/client", + "pcre-to-regexp", + "git-last-commit", + "@inquirer/search", + "@tootallnate/once", + "http-proxy-node16", + "@inquirer/checkbox", + "@inquirer/password", + "@vercel/frameworks", + "@vercel/error-utils", + "line-async-iterator", + "@vercel/fs-detectors", + "@types/load-json-file", + "@vercel/routing-utils", + "@types/npm-package-arg", + "@types/write-json-file", + "@vercel-internals/types", + "@edge-runtime/node-utils", + "json-parse-better-errors", + "@types/jest-expect-message", + "@vercel-internals/constants", + "@alex_neo/jest-expect-message", + "@types/json-parse-better-errors", + "@vercel-internals/get-package-json", + "extsprintf", + "err", + "create-banner", + "postcss-header", + "viewer", + "viewer.js", + "teex", + "remove-trailing-separator", + "fs-mkdirp-stream", + "is-valid-glob", + "lead", + "resolve-options", + "stream-composer", + "to-through", + "value-or-function", + "vinyl-sourcemap", + "vinyl-adapter", + "classic", + "browser-split", + "ev-store", + "x-is-array", + "x-is-string", + "run-browser", + "vtree", + "artichokie", + "periscopic", + "http-proxy-3", + "strip-literal", + "es-module-lexer", + "postcss-modules", + "@oxc-project/types", + "host-validation-middleware", + "dev-server", + "build-tool", + "dotenv-local", + "slash-path", + "vite-plugin-builder", + "api-router", + "api-routers", + "vite-plugin-api", + "vite-plugin-rest-api", + "express-router", + "file-system-based", + "rest-api", + "api-rest", + "Remix", + "Next.js", + "focus-trap", + "@shikijs/core", + "@shikijs/types", + "@vue/devtools-api", + "@vueuse/integrations", + "@iconify-json/simple-icons", + "@iconify/utils", + "@mdit-vue/shared", + "@mdit-vue/plugin-sfc", + "@mdit-vue/plugin-toc", + "markdown-it-mathjax3", + "@mdit-vue/plugin-title", + "@mdit-vue/plugin-headers", + "@types/markdown-it-emoji", + "@mdit-vue/plugin-component", + "@mdit-vue/plugin-frontmatter", + "@types/markdown-it-container", + "@types/postcss-prefix-selector", + "tinyrainbow", + "@vitest/runner", + "@vitest/snapshot", + "why-is-node-running", + "@vitest/pretty-format", + "birpc", + "local-pkg", + "@edge-runtime/vm", + "@antfu/install-pkg", + "node-localstorage", + "gulp-xo", + "vorpal-less", + "vorpal-repl", + "load-plugins", + "eyes", + "BDD", + "keytar", + "parse-semver", + "typed-rest-client", + "@types/read", + "@types/yazl", + "@types/cheerio", + "@types/url-join", + "@types/clone", + "@types/iconv-lite", + "vscode-oniguruma", + "@vue/runtime-dom", + "eslint-plugin-vue-libs", + "@babel/plugin-syntax-pipeline-operator", + "@intlify/shared", + "@intlify/core-base", + "@intlify/devtools-types", + "intlify", + "@intlify/vue-i18n-loader", + "@types/mini-css-extract-plugin", + "@types/webpack-merge", + "cache-loader", + "markdown-loader", + "pug-plain-loader", + "@vue-macros/common", + "ast-walker-scope", + "muggle-string", + "unplugin-utils", + "@pinia/colada", + "@types/nightwatch", + "@vue/language-core", + "chromedriver", + "faked-promise", + "nightwatch-helpers", + "de-indent", + "todomvc-app-css", + "foreachasync", + "sys", + "walkSync", + "exec-sh", + "outpipe", + "win-spawn", + "encrypted-attr", + "lodash.issafeinteger", + "waterline-schema", + "waterline-utils", + "active-record", + "vargs", + "bdd-with-opts", + "gulp-debug", + "mu2", + "promise-simple", + "sauce-connect-launcher", + "spawn-mocha-parallel", + "sv-selenium", + "web3-eth", + "web3-net", + "web3-core", + "web3-types", + "web3-utils", + "web3-errors", + "web3-eth-abi", + "web3-eth-ens", + "web3-eth-iban", + "web3-validator", + "web3-rpc-methods", + "web3-eth-accounts", + "web3-eth-contract", + "web3-eth-personal", + "web3-providers-ws", + "web3-rpc-providers", + "web3-providers-http", + "in3", + "ganache", + "web3-providers-ipc", + "eslint-config-base-web3", + "@truffle/hdwallet-provider", + "Ethereum", + "@solana/spl-token", + "@solana/web3.js", + "kva-email-service", + "micro-ed25519-hdkey", + "ssl-http-with-docker", + "tailwind-animation-extension", + "telegram-assistant", + "web3-react-task", + "sol", + "@webassemblyjs/ast", + "@webassemblyjs/wasm-edit", + "@webassemblyjs/wasm-parser", + "acorn-import-phases", + "chrome-trace-event", + "@codspeed/core", + "@types/neo-async", + "@types/xxhashjs", + "assemblyscript", + "bundle-loader", + "coffee-loader", + "hash-wasm", + "meriyah", + "rehype-sanitize", + "wast-loader", + "webassembly-feature", + "xxhashjs", + "lodash.partial", + "eslint-config-th0r", + "postcss-icss-values", + "@carrotsearch/foamtree", + "eslint-config-th0r-react", + "analyzer", + "chart", + "zoomable", + "@webpack-cli/info", + "@webpack-cli/configtest", + "@types/envinfo", + "@fastify/express", + "@types/on-finished", + "@types/sockjs", + "@types/bonjour", + "bonjour-service", + "@types/serve-index", + "@types/serve-static", + "ansi-html-community", + "@types/connect-history-api-fallback", + "klona", + "@types/sockjs-client", + "reloading", + "hot-reloading", + "@types/webpack-sources", + "eslint-config-shellscape", + "prettier-plugin-package", + "dts-cli", + "@types/flat", + "externals", + "typedarray-to-buffer", + "yaeti", + "networking", + "comet", + "RFC-6455", + "@silentbot1/nat-api", + "@thaunknown/simple-peer", + "@webtorrent/http-node", + "addr-to-ip-port", + "bitfield", + "bittorrent-dht", + "bittorrent-protocol", + "cache-chunk-store", + "chunk-store-iterator", + "cpus", + "create-torrent", + "cross-fetch-ponyfill", + "fs-chunk-store", + "fsa-chunk-store", + "immediate-chunk-store", + "join-async-iterator", + "load-ip-set", + "lt_donthave", + "memory-chunk-store", + "parse-torrent", + "random-iterate", + "speed-limiter", + "throughput", + "torrent-discovery", + "torrent-piece", + "uint8-util", + "unordered-array-remove", + "ut_metadata", + "ut_pex", + "@webtorrent/semantic-release-config", + "airtap-manual", + "airtap-system", + "bittorrent-tracker", + "chrome-net", + "disc", + "network-address", + "path-esm", + "webtorrent-fixtures", + "bittorrent", + "bittorrent client", + "mad science", + "p2p", + "peer-to-peer", + "peers", + "swarm", + "torrent", + "web torrent", + "webrtc data", + "web worker", + "a gogo", + "url-search-params", + "poly", + "buster", + "exorcist", + "microtime", + "cujo", + "Promises/A+", + "isexe", + "taffydb", + "unit.js", + "@dabh/diagnostics", + "logform", + "one-time", + "@dabh/eslint-config-populist", + "abstract-winston-transport", + "cross-spawn-async", + "hock", + "winston-compat", + "file-stream-rotator", + "@alcalzone/release-script", + "@alcalzone/release-script-plugin-license", + "daily-rotate-file", + "log-rotate", + "logrotate", + "winston3", + "bower-config", + "propprop", + "wiredep-cli", + "break", + "carriage", + "new-line", + "newline", + "return", + "soft", + "workbox-build", + "workbox", + "workboxjs", + "service worker", + "fetch requests", + "offline", + "file manifest", + "wordbreak", + "linewrap", + "writeFile", + "atomic", + "HyBi", + "Push", + "WebSocket", + "WebSockets", + "enstore", + "x-ray-crawler", + "x-ray-parse", + "scrape", + "is-function", + "parse-headers", + "ssf", + "wmf", + "crc-32", + "adler-32", + "codepage", + "fflate", + "exit-on-epipe", + "@sheetjs/uglify-js", + "markdown-spellcheck", + "xlsb", + "dbf", + "dif", + "sylk", + "cash-cat", + "codacy-coverage", + "globify", + "jsonpath", + "unminified-webpack-plugin", + "XML", + "cdata", + "CDATA", + "doctype", + "processing instruction", + "Javascript", + "transforming", + "convertor", + "converting", + "conversion", + "node-expat", + "dom-js", + "xmltest", + "DOMParser", + "XMLSerializer", + "find-cache-directory", + "func-xml", + "@babel/plugin-proposal-unicode-property-regex", + "@unicode/unicode-14.0.0", + "babel-plugin-array-includes", + "babel-plugin-transform-xregexp", + "unicode-property-value-aliases", + "regular expression", + "whitelist", + "@scion-scxml/test-framework", + "statechart", + "state machine", + "finite state machine", + "finite automata", + "scxml", + "interpreter", + "@types/deep-equal", + "@types/express-ws", + "@types/utf8", + "xterm-benchmark", + "terminal-emulator", + "jest-ts-webcompat-resolver", + "YAML", + "yaml2json", + "json2yaml", + "browserslist-generator", + "yargs-test-extends", + "babel-plugin-transform-inline-imports-commonjs", + "death", + "loud-rejection", + "repeating", + "request-capture-har", + "roadrunner", + "babel-preset-es2015-node4", + "babel-preset-node5", + "eslint-config-fb-strict", + "eslint-config-kittens", + "eslint-plugin-flow-vars", + "eslint-plugin-no-async-without-await", + "@yeoman/adapter", + "@yeoman/conflicter", + "@yeoman/namespace", + "@yeoman/transform", + "@yeoman/types", + "fly-import", + "grouped-queue", + "mem-fs", + "mem-fs-editor", + "which-package-manager", + "@yeoman/eslint", + "esmocha", + "sinon-test", + "github-username", + "yes", + "no", + "true", + "false", + "lenient", + "cli-list", + "fullname", + "parse-help", + "root-check", + "npm-keyword", + "yeoman-doctor", + "humanize-string", + "yeoman-character", + "registry-url", + "@jonahsnider/benchmark", + "pad-component", + "cowsay", + "say", + "zeromq", + "0mq", + "ømq", + "libzmq", + "binding", + "@types/cookie-parser", + "@types/express-useragent", + "@types/morgan", + "express-useragent", + "schemas", + "runtime types", + "DSL", + "@externs/nodejs", + "@types/systemjs", + "JSON2", + "char-split", + "express-state", + "firefox-profile", + "istanbul-middleware", + "shallow-copy", + "stack-mapper", + "tap-finished", + "zuul-localtunnel", + "browzers", + "bulk-require", + "zuul-ngrok", + "@phenomnomnominal/tsquery", + "Unit Testing", + "Storybook", + "motion-dom", + "motion-utils", + "@radix-ui/react-dialog", + "@thednp/dommatrix", + "react animation", + "pose", + "react pose", + "popmotion", + "framer", + "waapi", + "belalangkayu", + "rengginangbasi", + "tehtarik3", + "sort-array", + "compute-scroll-into-view", + "@docusaurus/module-type-aliases", + "@testing-library/preact", + "babel-plugin-no-side-effect-class-properties", + "babel-preset-react-native", + "flow-coverage-report", + "get-pkg-repo", + "enhanced input", + "autosuggest", + "typeahead", + "omnibox", + "WAI-ARIA", + "multiple selection", + "focus", + "keyboards", + "mice", + "pen", + "pointer", + "pseudos", + "ring", + "textarea", + "trackpad", + "@augment-vir/core", + "@date-vir/duration", + "deepcopy-esm", + "typed-event-target", + "@web/dev-server-esbuild", + "execute-in-browser", + "istanbul-smart-text-reporter", + "runstorm", + "augment", + "vir", + "augment-vir", + "toolchain", + "JSONC", + "JSX", + "TSX", + "GraphQL", + "@commercetools-frontend/application-components", + "@commercetools-frontend/application-config", + "@commercetools-frontend/assets", + "@commercetools-frontend/babel-preset-mc-app", + "@commercetools-frontend/mc-dev-authentication", + "@commercetools-frontend/mc-html-template", + "@commercetools/http-user-agent", + "@formatjs/cli-lib", + "@rollup/plugin-graphql", + "@svgr/babel-preset", + "@types/webpack-bundle-analyzer", + "@vitejs/plugin-react-swc", + "babel-plugin-formatjs", + "graphql-request", + "moment-locales-webpack-plugin", + "svg-url-loader", + "thread-loader", + "@commercetools/composable-commerce-test-data", + "@types/moment-locales-webpack-plugin", + "@vue/cli-plugin-babel", + "@vue/cli-plugin-typescript", + "@vue/cli-service", + "eslint-plugin-prettier-vue", + "rollup-plugin-vue", + "vue 3", + "@vue/cli-plugin-unit-mocha", + "symlink-dir", + "tokenize", + "dogstatsd", + "datadog", + "telegraf", + "adr", + "decision record", + "any decision record", + "architectural decision", + "architectural decision record", + "architecture decision", + "architecture decision record", + "software quality", + "bplist-parser", + "@types/katex", + "katex", + "tex", + "hyperlink", + "@type-challenges/utils", + "deserialization", + "deserialize", + "detect-europe-js", + "is-standalone-pwa", + "ua-is-frozen", + "client-hints", + "device", + "browser-detection", + "device-detection", + "os-detection", + "bot-detection", + "ai-detection", + "app-detection", + "crawler-detection", + "youch", + "@adonisjs/ace", + "@adonisjs/env", + "parse-imports", + "@adonisjs/fold", + "@adonisjs/hash", + "@adonisjs/repl", + "youch-terminal", + "@poppinss/utils", + "@adonisjs/config", + "@adonisjs/events", + "@adonisjs/health", + "@adonisjs/logger", + "@poppinss/colors", + "@poppinss/dumper", + "@poppinss/macroable", + "@adonisjs/bodyparser", + "@adonisjs/encryption", + "@adonisjs/application", + "@adonisjs/http-server", + "error-stack-parser-es", + "argon2", + "edge.js", + "@japa/assert", + "@japa/runner", + "@japa/snapshot", + "@japa/expect-type", + "@japa/file-system", + "@adonisjs/tsconfig", + "ts-node-maintained", + "@adonisjs/assembler", + "@types/test-console", + "@adonisjs/eslint-config", + "@adonisjs/prettier-config", + "adonisjs", + "@aneuhold/core-ts-api-lib", + "@aneuhold/core-ts-lib", + "@aneuhold/local-npm-registry", + "@aneuhold/main-scripts", + "@capacitor/cli", + "@trapezedev/project", + "@types/slice-ansi", + "resources", + "splash screen", + "webOS", + "@envelop/types", + "@envelop/instrumentation", + "@whatwg-node/promise-helpers", + "@ionic/cli-framework-output", + "@angular-eslint/eslint-plugin", + "@angular-eslint/eslint-plugin-template", + "@angular-eslint/schematics", + "ng-packagr", + "docz", + "docz-utils", + "docz-theme-default", + "@asdfgertyjhnpm/nesciunt-molestias-reprehenderit-occaecati", + "@drftgyhuji7npm/rem-sint-necessitatibus-possimus", + "@drftgyhuji7npm/repellendus-eum-et-itaque", + "typeerror", + "Reflect.getPrototypeOf", + "Int8Array", + "Array", + "configurable", + "minimal", + "descriptors", + "channel", + "matchAll", + "Uint32Array", + "Array.prototype.filter", + "setter", + "Uint16Array", + "exit-code", + "isConcatSpreadable", + "weakmap", + "syntaxerror", + "sharedarraybuffer", + "Object", + "Array.prototype.flat", + "toSorted", + "typesafe", + "preserve-symlinks", + "negative zero", + "[[Prototype]]", + "tester", + "ArrayBuffer.prototype.slice", + "byteOffset", + "zero", + "ArrayBuffer#slice", + "trimRight", + "getter", + "Array.prototype.contains", + "findLastIndex", + "last", + "Int16Array", + "Int32Array", + "rangeerror", + "Float32Array", + "take", + "workspace:*", + "byteLength", + "censor", + "Symbol.toStringTag", + "operating-system", + "coercible", + "Function.prototype.name", + "gdpr", + "ArrayBuffer", + "private data", + "Object.fromEntries", + "0", + "tostringtag", + "-0", + "negative", + "Array.prototype.findLast", + "enumerable", + "toobject", + "interrupts", + "groupBy", + "handlers", + "reuse", + "Float64Array", + "group", + "some", + "collection.es6", + "sameValueZero", + "positive", + "code points", + "regular expressions", + "findLast", + "robust", + "description", + "Uint8ClampedArray", + "pnpm9", + "length", + "defineProperty", + "RegExp#flags", + "valid", + "accessor", + "@smithy/types", + "aws-lambda", + "elapsed-time-logger", + "gulp-open", + "cupertino", + "pane", + "slide", + "@pouchlab/ui", + "chai-jquery", + "corejs-typeahead", + "doiuse", + "gulp-add-src", + "gulp-cache-bust", + "gulp-check-deps", + "gulp-sass-lint", + "gulp4-run-sequence", + "is-empty-object", + "motion-ui", + "sassy-lists", + "undertaker-forward-reference", + "vinyl-named", + "handlebars-helper-rel", + "handlebars-helper-slugify", + "tinygradient", + "@bokub/prettier-config", + "gradient", + "gradients", + "grommet-icons", + "@chromatic-com/storybook", + "@storybook/addon-a11y", + "@storybook/addon-toolbars", + "@storybook/addon-webpack5-compiler-babel", + "@storybook/manager-api", + "@storybook/source-loader", + "@testing-library/testcafe", + "babel-plugin-transform-imports", + "chromatic", + "grommet-theme-hpe", + "jest-styled-components", + "react-shadow", + "tarball-extract", + "testcafe-react-selectors", + "grommet.io", + "grommetux", + "theming", + "sticker sheets", + "design patterns", + "app templates", + "atomic design", + "WCAG 2.1", + "keyboard navigation", + "screen reader tags", + "interaction", + "graphical user interface", + "dart-sass", + "grunt-jekyll", + "zepto", + "lightbox", + "@next/font", + "axe-playwright", + "@storybook/test-runner", + "@base-ui-components/react", + "@storybook/addon-webpack5-compiler-swc", + "find-process", + "@types/pretty", + "chromium", + "launch-image", + "splashscreen", + "splash-screen", + "image-generation", + "mstile", + "pwa-assets", + "@apitools/openapi-parser", + "base64-arraybuffer", + "xml-but-prettier", + "babel-plugin-template-html-minifier", + "inspectpack", + "Custom Element", + "Web Component", + "swagger ui", + "openapi ui", + "openapi themes", + "openapi viewer", + "openapi renderer", + "openapi explorer", + "swagger themes", + "animatable", + "@react-native/babel-preset", + "collapsible", + "accordion", + "rollup-plugin-local-resolve", + "swipeable", + "customizable", + "touchscreen", + "listview", + "swipe-to-delete", + "swipe-actions", + "use-composed-ref", + "use-latest", + "@preconstruct/cli", + "autosize", + "grow", + "md-writer", + "@types/common-tags", + "decimal.js-light", + "victory-vendor", + "@recharts/devtools", + "@storybook/builder-vite", + "@storybook/react-vite", + "@stryker-mutator/typescript-checker", + "@stryker-mutator/vitest-runner", + "@types/d3-interpolate", + "@types/d3-time-format", + "babel-plugin-dev-expression", + "eslint-config-airbnb-extended", + "eslint-plugin-react-perf", + "vitest-axe", + "@riotjs/dom-bindings", + "@riotjs/compiler", + "@riotjs/prettier-config", + "@riotjs/register", + "@riotjs/util", + "@wdio/mocha-framework", + "@wdio/sauce-service", + "bianco.attr", + "bianco.query", + "cumpa", + "curri", + "eslint-config-riot", + "rollup-plugin-riot", + "custom tags", + "minimalist", + "data binding", + "riotjs", + "riot.js", + "testcafe-browser-provider-saucelabs", + "sortable", + "reorder", + "ng-sortable", + "@use-gesture/vanilla", + "tdesign-icons-vue-next", + "@rollup/plugin-eslint", + "@rollup/plugin-url", + "@soerenmartius/vue3-clipboard", + "@tdesign/site-components", + "@tdesign/theme-generator", + "dom-parser", + "lodash.upperfirst", + "qrcode.vue", + "rollup-plugin-ignore-import", + "rollup-plugin-static-import", + "rollup-plugin-styles", + "tdesign-publish-cli", + "vite-plugin-tdoc", + "tdesign", + "babel-plugin-html-tag", + "postcss-css-variables", + "postcss-hexrgba", + "postcss-prefixer", + "rollup-plugin-module-replacement", + "rollup-plugin-string", + "uploader", + "preview", + "chunk", + "image-edit", + "sockets", + "ready", + "win32", + "gulp-convert-css-var", + "picklog", + "wechat", + "weixin", + "@formatjs/intl-localematcher", + "@napi-rs/simple-git", + "@shikijs/twoslash", + "@theguild/remark-mermaid", + "better-react-mathjax", + "estree-util-value-to-estree", + "react-compiler-runtime", + "react-medium-image-zoom", + "remark-math", + "remark-reading-time", + "remark-smartypants", + "unist-util-remove", + "unist-util-visit-children", + "@types/negotiator", + "esbuild-plugin-svgr", + "esbuild-react-compiler-plugin", + "make-synchronized", + "make-synchronous", + "sync-threads", + "synchronize", + "fs-fixture", + "@ibyar/decorators", + "aurora", + "ibyar", + "expressions", + "template-syntax", + "template-expression", + "scope", + "evaluation", + "command-center", + "rich-text-editor", + "tiptap", + "@types/babel__preset-env", + "eslint-plugin-no-null", + "allure", + "codeceptjs", + "testops", + "@intlayer/chokidar", + "@intlayer/config", + "@intlayer/core", + "@intlayer/types", + "intlayer", + "@types/cls-hooked", + "@utils/ts-config", + "@utils/ts-config-types", + "@utils/tsdown-config", + "user-agents", + "unist-util-remove-position", + "@bugsnag/core", + "@bugsnag/delivery-react-native", + "@bugsnag/plugin-console-breadcrumbs", + "@bugsnag/plugin-network-breadcrumbs", + "@bugsnag/plugin-react", + "@bugsnag/plugin-react-native-client-sync", + "@bugsnag/plugin-react-native-event-sync", + "@bugsnag/plugin-react-native-global-error-handler", + "@bugsnag/plugin-react-native-hermes", + "@bugsnag/plugin-react-native-session", + "@bugsnag/plugin-react-native-unhandled-rejection", + "iserror", + "bugsnag", + "stability", + "@enact/i18n", + "ilib", + "eslint-plugin-astro", + "control-panel", + "backendless-request", + "backendless-rt-client", + "backendless-console-sdk", + "bannerize", + "backendless.com", + "ahooks", + "better-scroll", + "@zarm-design/bem", + "@use-gesture/react", + "@zarm-design/icons", + "@floating-ui/react-dom-interactions", + "@zarm-design/cli", + "zarm-ui", + "zarm-mobile", + "@enact/spotlight", + "@enact/docs-utils", + "@enact/ui-test-utils", + "eslint-config-enact-proxy", + "react select", + "react dropdown", + "accessible react select", + "accessible", + "@reporters/github", + "titanium-sdk", + "tidev", + "iphone", + "@antora/expand-path-helper", + "antora", + "static site", + "web publishing", + "@asyncapi/generator-components", + "@asyncapi/generator-helpers", + "@asyncapi/generator-hooks", + "@asyncapi/multi-parser", + "fs.extra", + "global-dirs", + "requireg", + "unixify", + "react-loadable", + "combine-promises", + "@docusaurus/babel", + "@docusaurus/logger", + "@docusaurus/bundler", + "react-router-config", + "@docusaurus/mdx-loader", + "@docusaurus/utils-common", + "@docusaurus/utils-validation", + "react-loadable-ssr-addon-v5-slorber", + "@total-typescript/shoehorn", + "@types/react-router-config", + "parcel-bundler", + "Vue", + "unstyled", + "@nestjsx/crud-request", + "@nestjsx/util", + "crud-generator", + "frameworks", + "@zmotivat0r/o0", + "p-filter", + "p-locate", + "dependency-management", + "continuous-integration", + "npmjs", + "package-manager", + "gatsby", + "hugo", + "netlify", + "core-js-pure", + "jest-location-mock", + "@types/module-alias", + "webpack-plugin-serve", + "hotreload", + "@pothos/test-utils", + "pothos", + "yalc", + "@strapi/core", + "@strapi/i18n", + "@strapi/admin", + "@strapi/email", + "@strapi/types", + "@strapi/utils", + "@strapi/logger", + "@strapi/upload", + "@types/nodemon", + "@strapi/openapi", + "@strapi/database", + "@strapi/cloud-cli", + "@strapi/generators", + "get-latest-version", + "@strapi/permissions", + "@strapi/data-transfer", + "@strapi/content-manager", + "@strapi/content-releases", + "@strapi/review-workflows", + "@strapi/typescript-utils", + "@strapi/content-type-builder", + "@strapi/ts-zen", + "eslint-config-custom", + "@types/webpack-hot-middleware", + "strapi", + "cmf", + "content management framework", + "admin panel", + "koajs", + "jam", + "graphqL", + "infrastructure", + "self hosted", + "lernajs", + "snake-case", + "@types/svg-parser", + "http-status-emojis", + "tsparticles-plugin", + "@tsparticles/interaction", + "@tsparticles/move", + "tsparticles-shape", + "@tsparticles/updater", + "@aws-sdk/lib-storage", + "@aws-sdk/s3-presigned-post", + "express-interceptor", + "express-prom-bundle", + "grant", + "tus-js-client", + "webdav", + "resumable uploads", + "tus", + "dropbox", + "webpack-chain", + "@vuepress/types", + "vue-server-renderer", + "@vue/babel-preset-app", + "vuepress-plugin-container", + "vuepress-html-webpack-plugin", + "@types/diacritics", + "vuepress-plugin-smooth-scroll", + "detect-browser", + "@walletconnect/types", + "@walletconnect/safe-json", + "@walletconnect/window-getters", + "@walletconnect/window-metadata", + "@ethersproject/address", + "@types/lodash.isnumber", + "wallet", + "walletconnect", + "jsonrpc", + "cryptocurrency", + "dapp", + "@walletconnect/utils", + "@walletconnect/crypto", + "@walletconnect/legacy-types", + "@walletconnect/legacy-utils", + "@types/qrcode", + "@walletconnect/legacy-client", + "@walletconnect/jsonrpc-provider", + "@walletconnect/jsonrpc-http-connection", + "ethereum-test-network", + "@wordpress/element", + "wordpress", + "gutenberg", + "center", + "jasmine-co", + "jasmine-ts", + "selenium-mock", + "body scroll", + "body scroll lock", + "react scroll lock", + "react scroll", + "freeze", + "disable", + "overflow", + "vanilla-js", + "tablet", + "bsl", + "broccoli-node-info", + "resolve-path", + "@types/console-ui", + "@types/esm", + "@types/findup-sync", + "@types/sane", + "@types/underscore.string", + "broccoli-node-api", + "mocha-jshint", + "babel-plugin-optimize-starts-with", + "replacement", + "html4", + "invalid", + "color-name", + "is-whitespace", + "verb", + "mediaquery", + "csstree", + "completion", + "apollo-link-context", + "decap-cms", + "aws-cognito", + "what-the-diff", + "gotrue-js", + "git-gateway", + "gateway", + "napa", + "detector", + "tinydate", + "tweezer.js", + "medium-zoom", + "autoprefixer-stylus", + "rollup-plugin-async", + "eslint-plugin-playwright", + "creator", + "cp-file", + "yargonaut", + "docsify-server-renderer", + "cli-prompts-test", + "rollup-plugin-executable", + "ssr-window", + "eslint-config-standard-react", + "prettier-check", + "array-hyper-unique", + "crlf-normalize", + "book", + "books", + "chapter", + "comic", + "epub-maker", + "epub-maker2", + "node-novel", + "novel", + "volume", + "escaping", + "interpolate", + "goat", + "🐐", + "color-logger", + "ice-cap", + "esdoc-importpath-plugin", + "ECMAScript6", + "ECMAScript2015", + "ECMAScript7", + "ECMAScript2016", + "ECMAScript8", + "ECMAScript2017", + "proposal", + "mdc", + "developer", + "inter-element", + "white-space", + "whitespace", + "tagname", + "force", + "graceful-shutdown", + "http-shutdown", + "http-terminate", + "prometheus", + "icss", + "inferno-hyperscript", + "vnode", + "createVNode", + "gulp-rtlcss", + "postcss-preset-infima", + "dark mode", + "bootswatch", + "docstrap", + "@angular-devkit/build-angular", + "angular-eslint", + "github-files-fetcher", + "@stitches/react", + "animate-sass", + "postcss-trolling", + "vite-plugin-svgr", + "preview jest", + "log-utils", + "engine-base", + "engine-handlebars", + "lo", + "lo-dash", + "serve-index-75lb", + "lws-middleware", + "micromark-extension", + "tagfilter", + "dangerous", + "grunt-jasmine-node", + "mobilegrade", + "sniff", + "nth-child", + "nth", + "is-alphanumerical", + "is-decimal", + "is-hexadecimal", + "cssinjs", + "@wdio/selenium-standalone-service", + "babelrc-rollup", + "queryselector", + "shadowdom", + "gulp-streamify", + "rc-tools", + "tappable", + "hammer", + "@actions/core", + "@oclif/plugin-autocomplete", + "toposort", + "@readme/better-ajv-errors", + "@readme/standards", + "@types/toposort", + "@types/unzipper", + "goober", + "jest-esm-jsx-transform", + "parcel-plugin-css-to-string", + "use-throttled-effect", + "hex", + "color-picker", + "wai-aria", + "smart-tv", + "smarttv", + "simple-routing", + "nano-equal", + "shallow-equal-fuzzy", + "shouldComponentUpdate", + "quicklook", + "image-gallery", + "image-viewer", + "react-native-svg", + "progressindicator", + "circle", + "pie", + "progressbar", + "indeterminate", + "d3-interpolate-path", + "@react-native-community/bob", + "@storybook/react-native", + "eslint-plugin-react-native", + "youtube-iframe", + "iframe", + "@atomico/rollup-plugin-sizes", + "git-branch-is", + "react-spring", + "@bedrock-layout/use-forwarded-ref", + "@codecov/vite-plugin", + "@types/body-scroll-lock", + "get-nonce", + "@theuiteam/lib-builder", + "@tsparticles/shape-text", + "@tsparticles/updater-roll", + "@tsparticles/updater-tilt", + "@tsparticles/updater-wobble", + "@tsparticles/plugin-emitters", + "@tsparticles/updater-destroy", + "@tsparticles/updater-twinkle", + "@tsparticles/plugin-absorbers", + "@tsparticles/interaction-external-trail", + "@tsparticles/plugin-emitters-shape-circle", + "@tsparticles/plugin-emitters-shape-square", + "useRef", + "createRef", + "merge refs", + "detect-node-es", + "@types/enzyme-adapter-react-16", + "code spliting", + "sidecar", + "mutation-observer", + "copy-text-to-clipboard", + "svelte-loader", + "scss-loader", + "perfect-scroll", + "vue-perfect-scroll", + "vue-scroll", + "vue-scrollbar", + "vue-plugin", + "滚动条", + "@types/eslint-plugin-prettier", + "@types/form-data", + "is-uuid", + "rewrite-imports", + "serviceworker", + "convict", + "antora-component", + "@applitools/test-utils", + "applitools", + "eyes-sdk", + "test automation", + "visual regression", + "@dataui/crud-request", + "@dataui/crud-util", + "blob-to-buffer", + "drag drop", + "drag & drop", + "@expo/spawn-async", + "@parcel/core", + "@parcel/fs", + "@parcel/package-manager", + "@parcel/watcher", + "mnemonic-id", + "node-object-hash", + "@plasmohq/parcel-config", + "@plasmohq/parcel-core", + "@plasmohq/init", + "@plasmo/config", + "@plasmo/constants", + "@plasmo/utils", + "@plasmo/framework-shared", + "browser-extensions", + "@iconify/react", + "@types/events", + "static-server", + "@storybook/cli", + "less-plugin-sass2less", + "@storybook/addon-mdx-gfm", + "music", + "player", + "mse", + "eme", + "@arethetypeswrong/core", + "ts-expose-internals", + "dlv", + "dset", + "flattie", + "fontace", + "unifont", + "magicast", + "piccolore", + "unstorage", + "zod-to-ts", + "xxhash-wasm", + "yocto-spinner", + "@oslojs/encoding", + "@astrojs/compiler", + "@astrojs/telemetry", + "@capsizecss/unpack", + "http-cache-semantics", + "@astrojs/internal-helpers", + "deterministic-object-hash", + "@types/dlv", + "rehype-toc", + "astro-scripts", + "remark-code-titles", + "@types/common-ancestor-path", + "@types/http-cache-semantics", + "strata", + "fuzzysearch", + "sander", + "@web/test-runner-core", + "testrunner", + "ac-colors", + "hsv", + "lch", + "color-names", + "cmyk", + "mix", + "harmonies", + "expressots", + "clean-architecture", + "typescript-framework", + "@pagefind/default-ui", + "bcp-47", + "mdast-util-directive", + "linkedom", + "withastro", + "astro-integration", + "piña", + "pigna", + "tabbable", + "@floating-ui/utils", + "@radix-ui/react-checkbox", + "@radix-ui/react-icons", + "vitest-browser-react", + "@internal/test-utils", + "code-blocks", + "expressive-code", + "syntax-highlighting", + "netlify-cms", + "@types/deep-eql", + "@amaui/ui-react", + "amaui", + "firefoxos", + "onesy", + "@react-native-macos/virtualized-lists", + "@tsparticles/plugin-easing-quad", + "@tsparticles/updater-stroke-color", + "@tsparticles/interaction-external-pause", + "@tsparticles/interaction-external-bubble", + "@tsparticles/interaction-external-attract", + "@tsparticles/interaction-external-connect", + "@types/react-router", + "@backstage/backend-plugin-api", + "@backstage/config", + "@backstage/integration", + "express-promise-router", + "@backstage/backend-test-utils", + "@backstage/catalog-model", + "@backstage/cli", + "@backstage/plugin-catalog-common", + "@backstage/plugin-catalog-node", + "backstage", + "ci/cd", + "immobiliare", + "immobiliarelabs", + "rgv", + "@asteasolutions/zod-to-openapi", + "@trpc/server", + "eslint-import-resolver-custom-alias", + "resolve-tspaths", + "event-driven", + "blaze", + "qs-esm", + "dataloader", + "bson-objectid", + "console-table-printer", + "@payloadcms/translations", + "graphql-http", + "@types/range-parser", + "@monaco-editor/react", + "@payloadcms/eslint-config", + "@hyrious/esbuild-plugin-commonjs", + "content management", + "graphQL", + "@cfcs/core", + "@egjs/axes", + "@egjs/component", + "@egjs/imready", + "@egjs/list-differ", + "@daybrush/jsdoc", + "@egjs/flicking-plugins", + "@egjs/release-helper", + "@types/resize-observer-browser", + "egjs-jsdoc-template", + "html-to-react", + "http-serve", + "jsdoc-to-mdx", + "karma-typescript-es6-transform", + "postcss-clean", + "print-coveralls", + "print-sizes", + "pvu", + "rollup-plugin-prototype-minify", + "ts-mock-imports", + "ttypescript", + "flicking", + "egjs", + "body scroll lock upgrade", + "@ucast/mongo2js", + "@casl/dx", + "permissions", + "abac", + "rbac", + "ibac", + "cancan", + "@humanwhocodes/gitignore-to-minimatch", + "peowly", + "list-dependents-cli", + "rslog", + "@rslib/core", + "@modern-js/rslib", + "@modern-js/types", + "@scripts/rstest-config", + "modern", + "modern.js", + "@scripts/build", + "@scripts/jest-config", + "import-without-cache", + "unconfig-core", + "unrun", + "@publint/pack", + "@sxzz/eslint-config", + "@sxzz/prettier-config", + "@sxzz/test-utils", + "@unocss/eslint-plugin", + "@vitejs/devtools", + "rolldown-plugin-dts-snapshot", + "rolldown-plugin-require-cjs", + "unocss", + "unplugin-ast", + "unplugin-lightningcss", + "unplugin-unused", + "@types/decompress", + "@ckeditor/ckeditor5-comments", + "@ckeditor/ckeditor5-track-changes", + "CKEditor", + "WYSIWYG", + "WYSIWYW", + "rich-text", + "fast-equals", + "glob2regx", + "ckeditor5-collaboration", + "@ckeditor/ckeditor5-revision-history", + "@ckeditor/ckeditor5-operations-compressor", + "@ckeditor/ckeditor-cloud-services-collaboration", + "@grammyjs/types", + "deno2node", + "@udecode/plate-utils", + "@loki/integration-react", + "@loki/integration-react-native", + "@loki/integration-vue", + "@loki/runner", + "@loki/target-chrome-app", + "@loki/target-chrome-docker", + "@loki/target-native-android-emulator", + "@loki/target-native-ios-simulator", + "storybook-addons", + "react-storybook", + "visual testing", + "emoji-datasource", + "@fastify/static", + "graphql-jit", + "mqemitter", + "single-user-cache", + "tiny-lru", + "@matteo.collina/snap", + "@types/isomorphic-form-data", + "graphql-ws", + "blue-tape", + "events.once", + "xhr2-cookies", + "convex", + "mock-spawn", + "@fastify/pre-commit", + "@reporters/silent", + "desm", + "gulp-better-rollup", + "Leaflet", + "Maps", + "Gesture", + "Handling", + "two", + "fingers", + "@tanstack/vue-virtual", + "@testing-library/vue", + "@fast-check/vitest", + "@types/eslint-config-prettier", + "prettier-plugin-pkg", + "prettier-plugin-sh", + "algo", + "@oxc-node/cli", + "eslint-plugin-redos-detector", + "tsm", + "bundle-size", + "@iconify/vue", + "@internationalized/date", + "@internationalized/number", + "@nuxt/fonts", + "@nuxt/icon", + "@nuxt/kit", + "@nuxt/schema", + "@nuxtjs/color-mode", + "@tanstack/vue-table", + "@tiptap/core", + "@tiptap/extension-bubble-menu", + "@tiptap/extension-code", + "@tiptap/extension-collaboration", + "@tiptap/extension-drag-handle", + "@tiptap/extension-drag-handle-vue-3", + "@tiptap/extension-floating-menu", + "@tiptap/extension-horizontal-rule", + "@tiptap/extension-image", + "@tiptap/extension-mention", + "@tiptap/extension-node-range", + "@tiptap/extension-placeholder", + "@tiptap/markdown", + "@tiptap/pm", + "@tiptap/starter-kit", + "@tiptap/suggestion", + "@tiptap/vue-3", + "@vueuse/shared", + "colortranslator", + "embla-carousel-auto-height", + "embla-carousel-auto-scroll", + "embla-carousel-autoplay", + "embla-carousel-class-names", + "embla-carousel-fade", + "embla-carousel-vue", + "embla-carousel-wheel-gestures", + "knitwork", + "motion-v", + "reka-ui", + "tailwind-variants", + "unplugin-auto-import", + "unplugin-vue-components", + "vaul-vue", + "vue-component-type-helpers", + "@nuxt/eslint-config", + "@nuxt/module-builder", + "@nuxt/test-utils", + "@tanstack/table-core", + "ai", + "vitest-environment-nuxt", + "nuxt-ui", + "ui-framework", + "country-code", + "country-codes", + "country-flags", + "country-names", + "country-telephone-codes", + "country-telephone-prefixes", + "countries", + "country-iso-codes", + "iso", + "iso-codes", + "iso-country-codes", + "iso-country-names", + "iso-country-telephone-codes", + "iso-country-telephone-prefixes", + "iso-countries", + "emoji-flags", + "phone-codes", + "phone-prefixes", + "telephone-codes", + "telephone-prefixes", + "world-countries", + "world-country-codes", + "world-country-flags", + "world-country-names", + "world-country-telephone-codes", + "world-country-telephone-prefixes", + "world-iso-codes", + "world-iso-country-codes", + "world-iso-country-names", + "@zoroaster/assert", + "@zoroaster/mask", + "alamode", + "@a-la/fixture-alamode", + "@a-la/fixture-babel", + "@artdeco/clean-stack", + "@artdeco/erte", + "@artdeco/scripts.json", + "@depack/render", + "@wrote/exists", + "@wrote/rm", + "@zoroaster/reducer", + "@zoroaster/types", + "argufy", + "catchment", + "documentary", + "erotic", + "eslint-config-artdeco", + "makepromise", + "promto", + "reloquent", + "snapshot-context", + "spawncommand", + "temp-context", + "usually", + "yarn-s", + "IDE", + "suggestions", + "intellisense", + "assistant-cloud", + "@assistant-ui/tap", + "@assistant-ui/store", + "@radix-ui/primitive", + "@radix-ui/react-compose-refs", + "@radix-ui/react-context", + "@radix-ui/react-dropdown-menu", + "@radix-ui/react-popover", + "@radix-ui/react-primitive", + "@radix-ui/react-use-callback-ref", + "@radix-ui/react-use-escape-keydown", + "assistant-stream", + "@assistant-ui/x-buildutils", + "radix-ui", + "ai-sdk", + "assistant", + "openai", + "chatbot", + "copilot", + "ai-chat", + "ai-chatbot", + "ai-assistant", + "ai-copilot", + "chatgpt", + "gpt4", + "gpt-4", + "conversational-ui", + "conversational-ai", + "graphiql", + "radash", + "@a2a-js/sdk", + "js-tiktoken", + "@lukeed/uuid", + "hono-openapi", + "@isaacs/ttlcache", + "@ai-sdk/provider-v5", + "@ai-sdk/provider-v6", + "@ai-sdk/ui-utils-v5", + "@mastra/schema-compat", + "@ai-sdk/provider-utils-v5", + "@ai-sdk/provider-utils-v6", + "@ai-sdk/azure", + "@ai-sdk/openai", + "@internal/lint", + "@internal/ai-v6", + "@internal/ai-sdk-v4", + "@internal/ai-sdk-v5", + "@internal/types-builder", + "@internal/external-types", + "@openrouter/ai-sdk-provider", + "llm", + "llms", + "agents", + "vectorstore", + "embeddings", + "rag", + "evals", + "otel", + "@tailwindcss/ui", + "@types/sortablejs", + "vue-next", + "draggable", + "drag-and-drop", + "vue-draggable", + "kanban", + "composition-api", + "@oxc-project/runtime", + "hmac256", + "hmac512", + "@ant-design/pro-components", + "@anthropic-ai/sdk", + "@azure-rest/ai-inference", + "@cfworker/json-schema", + "@clerk/localizations", + "@clerk/nextjs", + "@clerk/themes", + "@cyntler/react-doc-viewer", + "@fal-ai/client", + "@formkit/auto-animate", + "@google/genai", + "@huggingface/inference", + "@icons-pack/react-simple-icons", + "@khmyznikov/pwa-install", + "@langchain/community", + "@lobechat/agent-runtime", + "@lobechat/const", + "@lobechat/context-engine", + "@lobechat/database", + "@lobechat/electron-client-ipc", + "@lobechat/electron-server-ipc", + "@lobechat/fetch-sse", + "@lobechat/file-loaders", + "@lobechat/model-runtime", + "@lobechat/observability-otel", + "@lobechat/prompts", + "@lobechat/python-interpreter", + "@lobechat/utils", + "@lobechat/web-crawler", + "@lobehub/analytics", + "@lobehub/charts", + "@lobehub/chat-plugin-sdk", + "@lobehub/chat-plugins-gateway", + "@lobehub/editor", + "@lobehub/icons", + "@lobehub/market-sdk", + "@lobehub/tts", + "@lobehub/ui", + "@neondatabase/serverless", + "@next/third-parties", + "@opentelemetry/exporter-jaeger", + "@opentelemetry/winston-transport", + "@react-pdf/renderer", + "@react-spring/web", + "@saintno/comfyui-sdk", + "@serwist/next", + "@t3-oss/env-nextjs", + "@trpc/client", + "@trpc/next", + "@trpc/react-query", + "@vercel/analytics", + "@vercel/edge-config", + "@vercel/functions", + "@vercel/speed-insights", + "@virtuoso.dev/masonry", + "@xterm/xterm", + "brotli-wasm", + "countries-and-timezones", + "dexie", + "drizzle-orm", + "drizzle-zod", + "gpt-tokenizer", + "i18next-resources-to-backend", + "js-sha256", + "jsonl-parse-stringify", + "langchain", + "langfuse", + "langfuse-core", + "lucide-react", + "markdown-to-txt", + "model-bank", + "modern-screenshot", + "next-mdx-remote", + "nextjs-toploader", + "nuqs", + "officeparser", + "oidc-provider", + "ollama", + "partial-json", + "path-browserify-esm", + "pdf-parse", + "plaiceholder", + "posthog-js", + "pwa-install-handler", + "react-confetti", + "react-hotkeys-hook", + "react-layout-kit", + "react-pdf", + "react-rnd", + "react-scan", + "react-virtuoso", + "react-wrap-balancer", + "resolve-accept-language", + "rtl-detect", + "ssrf-safe-fetch", + "svix", + "tokenx", + "ts-md5", + "unstructured-client", + "use-merge-value", + "word-extractor", + "zustand-utils", + "@huggingface/tasks", + "@lobehub/i18n-cli", + "@lobehub/lint", + "@lobehub/market-types", + "@lobehub/seo-cli", + "@next/bundle-analyzer", + "@peculiar/webcrypto", + "@types/chroma-js", + "@types/crypto-js", + "@types/ip", + "@types/numeral", + "@types/oidc-provider", + "@types/pdfkit", + "@types/pg", + "@types/rtl-detect", + "dbdocs", + "dpdm-fast", + "drizzle-dbml-generator", + "drizzle-kit", + "eslint-plugin-mdx", + "fake-indexeddb", + "just-diff", + "mcp-hello-world", + "remark-mdx", + "serwist", + "vercel-ai", + "azure-openai", + "visual-model", + "tts", + "stt", + "modelcontextprotocol", + "mcp", + "context7", + "vibe-coding", + "developer tools", + "@types/istanbul-lib-report", + "@walletconnect/time", + "@walletconnect/events", + "label", + "better-npm-run", + "clamp.js", + "karma-fixture", + "karma-opera-launcher", + "minimalistic", + "@types/webrtc", + "detectrtc", + "install-peers-cli", + "prepend-file", + "camera", + "webcam", + "cam", + "webRTC", + "react-native-worklets", + "visionOS", + "tvOS", + "macOS", + "cpp", + "swift", + "jsi", + "@antfu/ni", + "@dotenvx/dotenvx", + "@types/validate-npm-package-name", + "stringify-object", + "@types/stringify-object", + "virtual-core", + "datagrid", + "2fa", + "hotp", + "topt", + "google authenticator", + "authenticator", + "one time password", + "one-time-password", + "2 factor", + "survey", + "surveyjs", + "survey-library", + "form-component", + "form-rendering", + "survey-renderer", + "dynamic-form", + "interactive-form", + "form-library", + "form-management", + "questionnaire", + "data-collection", + "data-validation", + "input-validation", + "ui-component", + "schema-form", + "base64-stream", + "bplist-creator", + "@mrleebo/prisma-ast", + "@electric-sql/pglite-socket", + "@prisma/query-plan-executor", + "common-stuff", + "accelerate", + "@aws-lite/client", + "@aws-lite/s3", + "@architect/eslint-config", + "mock-tmp", + "tap-arc", + "cloudfunctions", + "apigateway", + "api gateway", + "@webgpu/types", + "@tinymce/tinymce-react", + "n1ed", + "@headlessui/tailwindcss", + "@heroicons/react", + "@tailwindplus/elements", + "@types/sharp", + "react-docgen-typescript", + "react-lib-tools", + "rollup-preserve-directives", + "ts-blank-space", + "vitest-fail-on-console", + "windowed", + "@extend-chrome/messages", + "@extend-chrome/storage", + "@types/chrome", + "@types/jsesc", + "vite-plugin-inspect", + "chrome-extension", + "webext", + "webextension", + "browser-extension", + "isoformat", + "interval-tree-1d", + "htl", + "@types/d3", + "apache-arrow", + "d3-geo-projection", + "@observablehq/stdlib", + "string-split-by", + "cargo-cp-artifact", + "skia", + "offscreen", + "compositing", + "vulkan", + "metal", + "flmngr", + "imgpen", + "unsplash", + "@types/listr", + "markdown-to-pdf", + "pdf-generation", + "assignments", + "homework", + "html-to-pdf", + "@applitools/core", + "@applitools/logger", + "@applitools/req", + "@applitools/snippets", + "@applitools/image", + "@applitools/spec-driver-webdriver", + "@antora/user-require-helper", + "kapok-js", + "@asciidoctor/core", + "@antora/asciidoc-loader", + "navigation", + "asciidoc", + "pod-install", + "pinch-to-zoom", + "pinch", + "@farmfe/cli", + "@farmfe/core", + "bun-types-no-globals", + "eslint-plugin-format", + "unloader", + "redirects", + "@antora/file-publisher", + "publisher", + "vite-plugin-dts-bundle-generator", + "vite-plugin-pages", + "vite-plugin-typescript", + "vite-plugin-typescript-transform", + "box2d", + "game", + "physics", + "2d", + "replace-in-files-cli", + "sandboxed-module", + "oxc", + "exact-versions", + "turborepo", + "version-linter", + "@jsdevtools/ez-spawn", + "@napi-rs/magic-string", + "@pnpm/list", + "@pnpm/workspace.find-packages", + "@types/treeverse", + "@types/yarnpkg__lockfile", + "fast-npm-meta", + "@nolyfill/internal", + "@nolyfill/promise.any", + "fumadb", + "kysely", + "@orpc/zod", + "@orpc/otel", + "neverthrow", + "@c15t/logger", + "@orpc/server", + "@orpc/openapi", + "@orpc/contract", + "@c15t/translations", + "@opentelemetry/sdk-node", + "kysely-pglite", + "@c15t/vitest-config", + "@libsql/kysely-libsql", + "@c15t/typescript-config", + "consent", + "privacy", + "ccpa", + "lgpd", + "self-host", + "consent-management", + "user-privacy", + "data-protection", + "cookie-banner", + "consent-management-platform", + "cmp", + "consent-banner", + "@ampproject/rollup-plugin-closure-compiler", + "@fezvrasta/tsc-silent", + "@khanacademy/flow-to-ts", + "babel-plugin-inline-replace-variables", + "poster", + "rollup-plugin-flow-entry", + "popper", + "positioning engine", + "anime", + "anime.js", + "timeline", + "easings", + "cubic-bezier", + "splitText", + "WAAPI", + "Canvas", + "WebGL", + "decrypt", + "ev-emitter", + "fizzy-ui-utils", + "get-size", + "imagesloaded", + "unidragger", + "eslint-plugin-metafizzy", + "jquery-bridget", + "flick", + "gulp-wrap-commonjs", + "lex", + "maths", + "persist-schema", + "jugglingdb", + "panorama", + "rip-out", + "eslint-config-godaddy-react", + "setup-env", + "compatiblity", + "rollup-plugin-eslint", + "rollup-plugin-sass", + "testit", + "gethub", + "bits", + "iec" + ], + [5, 293, 294], + [0, -3015, -3016, -3017, -3018], + 1771718400000, + 1771113600000, + 1770508800000, + [0], + 1772323200000, + 1772409600000, + 1772064000000, + 1771804800000, + [1, 24, 619], + [1, 3, 621], + [0, -519, -2384, -2541], + [0, -3040, -3052, -1031, -2006, -2019, -2410], + [0, -3095, -3098, -3099, -3161, -3100, -2006, -3159, -3160, -2494], + [1, 3, 440], + [1, 3, 1832], + [0, -3488, -681, -3489, -3490, -3491, -3492], + [1, 3, 1826], + [0, -3220], + [0, -1889], + [0, -424], + [0, -3557, -3018], + true, + [1, 3, 622], + [0, -1654], + [0, -2006, -2019], + [0, -4298, -4300, -2319], + [1, 3, 1783], + [0, -2322], + [1, 24, 585], + [0, -2387], + [0, -1548], + [0, -531], + [0, -7841], + [0, -2410], + [0, -932], + [0, -44], + [0, -1787], + [0, -2006], + [0, -856, -3262, -2476, -2816], + [1, 3, 674], + [ + 0, -18, -19, -471, -487, -498, -504, -577, -588, -590, -591, -592, -603, -604, -605, -5421, -606, -607, -608, + -609, -610, -5422, -611, -612, -613, -5423, -626, -631, -643, -660, -663, -5424, -670, -676, -5425, -5426, + -5427, -5428, -5429, -804, -830, -833, -836, -998, -5430, -5431, -1019, -1020, -1095, -1121, -5432, -1280, + -1282, -1307, -1308, -5433, -1378, -1511, -1512, -1513, -5434, -1516, -1584, -1596, -5435, -1615, -5436, -1648, + -1679, -1684, -1695, -1720, -1799, -5437, -1803, -1822, -1869, -1886, -5438, -1994, -2067, -5439, -2158, -2169, + -5440, -5441, -2196, -2201, -2203, -2209, -2217, -2237, -5442, -2238, -2252, -5443, -2256, -2290, -5444, -2296, + -2298, -2309, -2348, -2366, -2370, -5445, -5446, -5447, -2426, -5448, -5449, -2527 + ], + [0, -18, -19, -676, -1994, -2426], + [1, 3, 1519], + [1, 3, 2972], + [0, -2501], + [0, -9219], + [0, -775, -1889, -3583], + [0, -23, -3219], + [1, 3, 1044], + [1, 3, 1396], + [1, 3, 1875], + [0, -519, -2541], + [0, -1654, -1941], + [0, -4633, -3445, -3100, -7566], + [0, -15394, -15395, -4276, -15396, -3162, -6935, -2494, -770, -15397, -15398], + [0, -3488, -681, -3489, -3518, -3492], + [0, -1934], + [1, 3, 623], + [1, 24, 645], + [ + 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -3959, -910, -3960, -3262, -3961, -3962, -3963, -1376, -3964, + -3965, -3214, -3824, -3966, -3967, -1965, -3968, -1966, -3969, -2063, -3970, -3971, -3108, -3972, -3973, -3974, + -3975, -3160, -3976, -2559, -3977 + ], + [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -4339, -4340], + [0, -2476, -3944, -3100, -4590, -3098, -4591, -4592, -4593, -4594], + [1, 3, 1380], + [ + 0, -18, -19, -471, -498, -504, -577, -588, -590, -591, -592, -603, -604, -605, -606, -607, -608, -609, -5423, + -626, -631, -660, -663, -670, -676, -5426, -5429, -804, -830, -833, -836, -998, -5431, -1095, -1121, -5432, + -1280, -1282, -1308, -5433, -1511, -1512, -1513, -1516, -1584, -1596, -1615, -1648, -1679, -1684, -1695, -1720, + -1799, -5437, -1803, -1822, -1869, -1886, -5438, -1994, -2169, -5441, -2201, -2203, -2209, -2217, -2237, -5442, + -2238, -2252, -2256, -2290, -5444, -2296, -2298, -2309, -2348, -2366, -2370, -5445, -5446, -5447, -2426, -5448, + -5449 + ], + [ + 0, -18, -19, -467, -471, -487, -498, -504, -6147, -575, -577, -588, -590, -591, -592, -6148, -603, -604, -605, + -5421, -606, -607, -608, -609, -610, -5422, -611, -612, -613, -6149, -5423, -625, -626, -6150, -631, -6151, + -643, -660, -663, -5424, -670, -675, -676, -5425, -5426, -6152, -6153, -5427, -5428, -5429, -804, -830, -833, + -6154, -836, -842, -890, -998, -5430, -6155, -5431, -1019, -1020, -1035, -1073, -1084, -6156, -1095, -1117, + -1120, -1121, -5432, -1279, -1280, -1282, -1295, -1307, -1308, -1314, -6157, -5433, -1378, -6158, -6159, -1511, + -1512, -1513, -5434, -1516, -6160, -1584, -6161, -1596, -5435, -1615, -5436, -1648, -1677, -6162, -6163, -1678, + -1679, -1684, -1695, -6164, -1720, -1799, -5437, -1803, -1822, -6165, -1865, -1869, -1886, -5438, -1994, -2067, + -5439, -6166, -2158, -2159, -2164, -2169, -5440, -6167, -5441, -6168, -2196, -2201, -2203, -2208, -2209, -2217, + -2221, -2224, -2225, -2237, -5442, -6169, -2238, -2241, -2252, -5443, -2256, -6170, -2288, -2290, -5444, -2296, + -2298, -2309, -2315, -2348, -6171, -6172, -2366, -2370, -5445, -5446, -5447, -2426, -2431, -2458, -5448, -6173, + -6174, -2496, -2497, -5449, -6175, -2527 + ], + [1, 3, 2681], + [0, -1654, -2198], + [0, -2319], + [0, -2460], + [0, -4864, -3214, -11467, -11468, -5270, -5271, -15723, -3634], + [1, 3, 308], + [0, -719], + [0, -4362], + [ + 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, + -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, + -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, + -5186, -5187, -5188, -5189 + ], + [1, 3, 1342], + [1, 3, 1453], + [1, 3, 1877], + [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293], + [1, 3, 2054], + [0, -1754], + [0, -2471], + [0, -3214, -8058, -8059, -4004, -3476, -2006, -1062, -3634, -8060, -8061, -4873, -1654], + [0, -2250], + [0, -5334], + [0, -1202, -1654], + [0, -1406], + [0, -1931], + [0, -3037], + [0, -3037, -652, -1942, -2094, -2100, -2399, -2410, -2541], + [0, -3161, -3481, -3098, -3162, -14919], + [0, -1967], + [0, -2410, -2409, -11398, -5406, -3691, -5728, -3690, -10796, -15307, -3445, -15308], + [1, 3, 10143], + [ + 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, + -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, + -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, + -5186, -5187, -5188, -5189, -15364, -15365 + ], + [ + 0, -3577, -3100, -2808, -5157, -5158, -659, -5159, -5160, -5161, -5155, -5164, -5165, -2410, -3214, -5176, + -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -15367 + ], + [ + 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, + -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, + -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, + -5186, -5187, -5188, -5189, -15364, -15368 + ], + [1, 3, 10608], + [0, -23], + [0, -3510, -3488, -681, -3489, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161], + [1, 24, 583], + [0, -1599, -3670, -3671, -3672, -856, -3673, -3674, -3262], + [0, -3770, -906, -2006, -775, -3771], + [0, -2080], + [ + 0, -519, -525, -4005, -4037, -1001, -4038, -4039, -4040, -1412, -1415, -1449, -1654, -4041, -4042, -1989, -4043, + -4044, -4045, -2319, -2322, -4004, -3634, -2410, -2490 + ], + [0, -703], + [0, -475, -856, -3262, -4258, -4259, -3690, -4260, -4261], + [0, -3158, -3095, -3098, -3099, -3161, -3100, -2006, -3159, -3160], + [0, -5014, -5015, -5016, -5017, -5018, -5019, -5020, -5021, -5022, -5023, -5024], + [0, -2469, -3664], + [0, -3262, -5355, -2501, -2006, -5371, -5372, -1599, -3098, -856], + [0, -1654, -664], + [0, -3037, -519, -2384, -2541], + [0, -567], + [0, -2267], + [0, -2541], + [0, -7475], + [0, -3136, -3037, -427, -428, -932, -940, -7476, -948, -958, -1415, -1942, -2375, -2391, -2402, -2410], + [0, -1415, -932, -2125, -2375, -190, -2410, -3136, -3037, -7742, -2411, -428, -427], + [0, -2320, -2322], + [0, -932, -1654], + [0, -1645], + [0, -932, -937, -1001, -1654, -1788], + [0, -1127, -1134, -1144, -1143, -1146], + [0, -1127, -1134, -1143, -1144, -1146], + [0, -664, -1654], + [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788], + [0, -756, -932, -940, -1344, -1415, -1534, -1889, -1942], + [0, -3037, -2410], + [ + 0, -664, -1654, -2379, -2501, -21, -23, -5870, -3035, -3136, -3037, -1771, -2503, -3621, -39, -43, -40, -15393, + -42 + ], + [0, -8096, -14182, -652, -725, -1942, -2094, -2100, -2125, -2322, -2399, -2410, -2541], + [0, -12449, -12613, -13616, -13615, -8897, -2363, -3214, -2410, -2006, -2476, -2299, -9608], + [0, -3951, -2410], + [1, 3, 313], + [0, -3183, -525, -3184, -3185, -3186, -526, -3116], + [0, -3183, -525, -3205, -3206, -3184, -3207, -3208, -3209, -3185, -3186, -3210, -527, -3116], + [0, -24], + [0, -753, -2082], + [ + 0, -3417, -3418, -3419, -3420, -3421, -3422, -3423, -714, -1028, -1039, -1107, -1442, -1449, -3424, -1600, + -3245, -1601, -3425, -3426, -1602, -3427, -3428, -3429, -3430, -1616, -1689, -3431, -3432, -1955, -1974, -1978, + -3433, -3434, -2446, -3435, -2550 + ], + [0, -2281, -3436, -2284], + [0, -687, -1599, -3437, -3438, -3328, -3439, -3440, -3441, -856, -3262], + [0, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161, -3510, -3488, -681, -3489], + [ + 0, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161, -3488, -681, -3489, + -3518, -3492 + ], + [0, -739, -721, -687], + [0, -3499, -475, -856, -3098, -3551, -3552, -3015, -1599], + [0, -775, -2162, -3575, -3576, -3577, -3161, -3578], + [0, -3634, -3440, -793, -3635, -3636], + [0, -3812, -3813, -3814, -3815, -3816, -3817, -856, -3818], + [0, -3821, -3822, -3823, -3824, -3825, -3826, -2006, -2019], + [0, -3836], + [0, -3827, -3837, -3838, -3167, -3839, -620], + [ + 0, -3136, -3037, -427, -428, -932, -933, -935, -940, -958, -959, -962, -967, -1415, -1424, -1942, -2375, -2376, + -2379, -2402, -2410 + ], + [0, -3161, -1334, -3690, -3578], + [0, -3037, -928, -1942, -2319, -2386, -2402], + [0, -687, -3958, -3999, -3099, -4000, -4001, -4002], + [ + 0, -1535, -1536, -687, -4107, -4108, -4109, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, + -4116, -4117 + ], + [1, 3, 825], + [0, -2006, -3159, -3119, -1613], + [0, -4055, -3690, -4140, -4141, -4142, -4143, -4144, -2410, -3018, -3445, -3577], + [0, -4165, -856, -4100, -3485, -4156, -3215, -2250], + [0, -4328, -4329, -1105, -4330, -1599, -3437, -856, -4331, -3264, -1764], + [0, -4332, -4335, -4345, -4346, -4340, -4347], + [0, -4332, -4336, -4337, -4338, -4339, -4340, -4344], + [0, -234, -3044, -5011, -3738, -865, -985, -1771, -1788, -5012, -2376, -5013, -2392, -2469, -2503, -2509], + [0, -5096], + [0, -5141, -4601, -4602, -3578, -3445], + [0, -5140], + [0, -3497, -3496, -3161, -3264, -5246, -3862, -3495, -5247, -3494], + [0, -433, -436], + [0, -1788, -1654, -932, -821, -966, -958, -968, -943, -963, -974], + [0, -475, -3161, -4865, -5495], + [0, -3690, -489, -4100, -856, -3691, -5728], + [0, -1047], + [1, 3, 1788], + [0, -2155], + [0, -581, -5110, -6120, -3173, -6129, -6130, -770], + [1, 3, 1820], + [1, 3, 1876], + [1, 3, 1878], + [0, -1309], + [0, -1592, -1654, -664], + [0, -6657, -6658, -4868, -4004, -6659], + [0, -2231], + [0, -6689, -2115], + [0, -714], + [0, -3966, -3957, -6722, -687, -4002, -6723, -6724, -4112, -714, -4672], + [0, -3214, -6784, -711, -3116], + [0, -2337], + [0, -465, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293], + [0, -711], + [0, -856, -1599], + [0, -865], + [0, -891], + [0, -5558, -3591, -633, -6340, -6408, -6916, -3870], + [0, -932, -8163, -727, -8164, -3214, -4900, -4795, -8165, -6434, -8166], + [0, -932, -5208, -3784], + [0, -429], + [0, -932, -5208, -3784, -3966, -3967, -3217, -7094, -6656, -1847, -6024, -4792], + [0, -932, -3784, -5208, -2006], + [0, -426], + [0, -1004, -3161, -6125, -3578, -1334, -3691, -5728, -3122, -3994, -3690], + [0, -1107, -5064, -5922, -8528], + [0, -1543, -2168], + [0, -1654, -2125, -2250], + [0, -1127, -1144], + [0, -510, -2125], + [0, -9219, -1654, -4004], + [0, -1127, -1132, -2541], + [0, -519, -1168, -1825, -2460, -2541], + [0, -2347], + [0, -1252, -1654, -2198, -2460], + [0, -2347, -1876], + [0, -1876, -2347], + [0, -519, -1825, -2460, -2541], + [0, -3037, -652, -1294, -1942, -2094, -2100, -2399, -2410, -2541], + [0, -1696, -596], + [0, -707, -1510], + [0, -1580], + [0, -1386, -9944, -9945, -3162, -3994, -9946, -752, -5269, -1861], + [0, -519, -9982, -2384, -2541], + [0, -4004, -3634, -1412, -4873, -3440], + [0, -4034], + [0, -5092, -3264, -5388, -5387], + [0, -1452], + [0, -2518], + [0, -1646], + [0, -1523, -10558, -5827, -7685, -7773, -4634, -6005, -4055], + [0, -3326, -351, -3266, -652, -932, -943, -1600, -3668, -1654, -2127], + [0, -4792, -6137, -6138, -6134, -9405, -11114, -4004, -4215, -8611], + [0, -1127], + [0, -687, -3957, -11725, -3673, -1764, -11726, -11727, -8907, -10227, -5921, -4107], + [ + 0, -3994, -1805, -1810, -11816, -11817, -11818, -11819, -11820, -11821, -7095, -4865, -3496, -7237, -7863, + -2435, -11822, -7303, -4377, -7091, -8421, -6599, -1958, -3258, -6656 + ], + [0, -6748, -4377, -5829, -3215, -6747, -687, -3957], + [0, -1654, -664, -666], + [0, -1841, -6120, -8449, -3173, -8450, -6121, -1791, -11437], + [0, -2541, -519, -2384], + [0, -1859, -11878, -11613], + [1, 3, 6920], + [0, -523], + [0, -635, -1934], + [1, 3, 7131], + [1, 3, 7300], + [0, -2006, -12452], + [0, -2006, -2034, -5271, -5270, -3162, -7085, -12561, -12562], + [1, 3, 7605], + [0, -2006, -3122, -10470, -9843, -1306, -10606], + [1, 3, 7706], + [1, 3, 7712], + [0, -2384, -2541], + [0, -12913], + [0, -2127, -12913, -4795, -1764, -3209], + [0, -2006, -3161, -1713, -3578, -3844, -3966, -3577, -3445, -687, -2455], + [1, 3, 8114], + [1, 3, 8321], + [1, 3, 8373], + [0, -9214, -2359, -2330, -13745, -6909, -11846, -13746], + [0, -2410, -856, -3262], + [0, -2444], + [0, -3100, -3161, -6211, -14339, -14340, -2466], + [0, -14357], + [0, -3113, -7646, -7641, -3673, -687, -3970, -3108, -3960, -3262, -3976, -3994], + [0, -3214, -3100, -2006, -3481], + [1, 24, 9789], + [0, -2662], + [1, 24, 10023], + [0, -1386, -3161, -2006, -3162, -3994, -9946, -3995, -752, -3997, -3998], + [0, -15309], + [1, 3, 10151], + [0, -856, -3262, -2476], + [ + 0, -15415, -15416, -15417, -15418, -11853, -10655, -15419, -6711, -15420, -15421, -4126, -15071, -2006, -15422, + -475, -2476, -5270, -3162, -11321, -15423, -15424 + ], + [0, -4258, -7641, -3100, -4865, -6342, -9290], + [0, -15445, -3445], + [0, -3037, -652, -1942, -2094, -2100, -2384, -2399, -2410, -2541], + [0, -1368], + [0, -525, -2006, -1368, -3161, -4729, -9850, -9613], + [0, -15627, -14386, -15628, -15629, -15630, -4864, -3634, -3636], + [1, 3, 10609], + [0, -15699, -3967, -6209, -2410, -15700, -15701, -3161, -11894], + [1, 3, 10660], + [1, 3, 10677], + [1, 3, 10691], + [1, 3, 10722], + [0, -1313, -3445, -15751, -15752, -3161, -9840], + [0, -2006, -3161, -15804, -15805], + [0, -1415, -932, -2127, -2375, -1942, -2410, -3136, -940, -967, -1419, -428, -427], + [ + 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -3959, -910, -3960, -3262, -3961, -3962, -3963, -1376, -3964, + -3965, -3214, -3824, -3966, -3967, -1965, -3968, -1966, -3969, -2063, -3970, -3971, -3108, -3972, -3973, -3974, + -3975, -3694, -2410, -3160, -3976, -2559, -3977 + ], + [ + 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, + -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, + -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, + -5186, -5187, -5188, -5189, -15364 + ], + [1, 3, 10858], + [0, -231, -2900], + [1, 24, 11236], + [ + 0, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, + -24, -25, -26, -27, -28, -29, -30, -31, -32, -33, -34, -35, -36, -37, -38, -39, -40, -41, -42, -43, -44, -45, + -46, -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -61, -62, -63, -64, -65, -66, -67, + -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -81, -82, -83, -84, -85, -86, -87, -88, -89, + -90, -91, -92, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -103, -104, -105, -106, -107, -108, -109, + -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, + -128, -129, -130, -131, -132, -133, -134, -135, -136, -137, -138, -139, -140, -141, -142, -143, -144, -145, + -146, -147, -148, -149, -150, -151, -152, -153, -154, -155, -156, -157, -158, -159, -160, -161, -162, -163, + -164, -165, -166, -167, -168, -169, -170, -171, -172, -173, -174, -175, -176, -177, -178, -179, -180, -181, + -182, -183, -184, -185, -186, -187, -188, -189, -190, -191, -192, -193, -194, -195, -196, -197, -198, -199, + -200, -201, -202, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -215, -216, -217, + -218, -219, -220, -221, -222, -223, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, -235, + -236, -237, -238, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, -253, + -254, -255, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, -270, -271, + -272, -273, -274, -275, -276, -277, -278, -279, -280, -281, -282, -283, -284, -285, -286, -287, -288, -289, + -290, -291, -292, -293, -294, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -305, -306, -307, + -308, -309, -310, -311, -312, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, + -326, -327, -328, -329, -330, -331, -332, -333, -334, -335, -336, -337, -338, -339, -340, -341, -342, -343, + -344, -345, -346, -347, -348, -349, -350, -351, -352, -353, -354, -355, -356, -357, -358, -359, -360, -361, + -362, -363, -364, -365, -366, -367, -368, -369, -370, -371, -372, -373, -374, -375, -376, -377, -378, -379, + -380, -381, -382, -383, -384, -385, -386, -387, -388, -389, -390, -391, -392, -393, -394, -395, -396, -397, + -398, -399, -400, -401, -402, -403, -404, -405, -406, -407, -408, -409, -410, -411, -412, -413, -414, -415, + -416, -417, -418, -419, -420, -421, -422, -423, -424, -425, -426, -427, -428, -429, -430, -431, -432, -433, + -434, -435, -436, -437, -438, -439, -440, -441, -442, -443, -444, -445, -446, -447, -448, -449, -450, -451, + -452, -453, -454, -455, -456, -457, -458, -459, -460, -461, -462, -463, -464, -465, -466, -467, -468, -469, + -470, -471, -472, -473, -474, -475, -476, -477, -478, -479, -480, -481, -482, -483, -484, -485, -486, -487, + -488, -489, -490, -491, -492, -493, -494, -495, -496, -497, -498, -499, -500, -501, -502, -503, -504, -505, + -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -517, -518, -519, -520, -521, -522, -523, + -524, -525, -526, -527, -528, -529, -530, -531, -532, -533, -534, -535, -536, -537, -538, -539, -540, -541, + -542, -543, -544, -545, -546, -547, -548, -549, -550, -551, -552, -553, -554, -555, -556, -557, -558, -559, + -560, -561, -562, -563, -564, -565, -566, -567, -568, -569, -570, -571, -572, -573, -574, -575, -576, -577, + -578, -579, -580, -581, -582, -583, -584, -585, -586, -587, -588, -589, -590, -591, -592, -593, -594, -595, + -596, -597, -598, -599, -600, -601, -602, -603, -604, -605, -606, -607, -608, -609, -610, -611, -612, -613, + -614, -615, -616, -617, -618, -619, -620, -621, -622, -623, -624, -625, -626, -627, -628, -629, -630, -631, + -632, -633, -634, -635, -636, -637, -638, -639, -640, -641, -642, -643, -644, -645, -646, -647, -648, -649, + -650, -651, -652, -653, -654, -655, -656, -657, -658, -659, -660, -661, -662, -663, -664, -665, -666, -667, + -668, -669, -670, -671, -672, -673, -674, -675, -676, -677, -678, -679, -680, -681, -682, -683, -684, -685, + -686, -687, -688, -689, -690, -691, -692, -693, -694, -695, -696, -697, -698, -699, -700, -701, -702, -703, + -704, -705, -706, -707, -708, -709, -710, -711, -712, -713, -714, -715, -716, -717, -718, -719, -720, -721, + -722, -723, -724, -725, -726, -727, -728, -729, -730, -731, -732, -733, -734, -735, -736, -737, -738, -739, + -740, -741, -742, -743, -744, -745, -746, -747, -748, -749, -750, -751, -752, -753, -754, -755, -756, -757, + -758, -759, -760, -761, -762, -763, -764, -765, -766, -767, -768, -769, -770, -771, -772, -773, -774, -775, + -776, -777, -778, -779, -780, -781, -782, -783, -784, -785, -786, -787, -788, -789, -790, -791, -792, -793, + -794, -795, -796, -797, -798, -799, -800, -801, -802, -803, -804, -805, -806, -807, -808, -809, -810, -811, + -812, -813, -814, -815, -816, -817, -818, -819, -820, -821, -822, -823, -824, -825, -826, -827, -828, -829, + -830, -831, -832, -833, -834, -835, -836, -837, -838, -839, -840, -841, -842, -843, -844, -845, -846, -847, + -848, -849, -850, -851, -852, -853, -854, -855, -856, -857, -858, -859, -860, -861, -862, -863, -864, -865, + -866, -867, -868, -869, -870, -871, -872, -873, -874, -875, -876, -877, -878, -879, -880, -881, -882, -883, + -884, -885, -886, -887, -888, -889, -890, -891, -892, -893, -894, -895, -896, -897, -898, -899, -900, -901, + -902, -903, -904, -905, -906, -907, -908, -909, -910, -911, -912, -913, -914, -915, -916, -917, -918, -919, + -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -932, -933, -934, -935, -936, -937, + -938, -939, -940, -941, -942, -943, -944, -945, -946, -947, -948, -949, -950, -951, -952, -953, -954, -955, + -956, -957, -958, -959, -960, -961, -962, -963, -964, -965, -966, -967, -968, -969, -970, -971, -972, -973, + -974, -975, -976, -977, -978, -979, -980, -981, -982, -983, -984, -985, -986, -987, -988, -989, -990, -991, + -992, -993, -994, -995, -996, -997, -998, -999, -1000, -1001, -1002, -1003, -1004, -1005, -1006, -1007, -1008, + -1009, -1010, -1011, -1012, -1013, -1014, -1015, -1016, -1017, -1018, -1019, -1020, -1021, -1022, -1023, -1024, + -1025, -1026, -1027, -1028, -1029, -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, + -1041, -1042, -1043, -1044, -1045, -1046, -1047, -1048, -1049, -1050, -1051, -1052, -1053, -1054, -1055, -1056, + -1057, -1058, -1059, -1060, -1061, -1062, -1063, -1064, -1065, -1066, -1067, -1068, -1069, -1070, -1071, -1072, + -1073, -1074, -1075, -1076, -1077, -1078, -1079, -1080, -1081, -1082, -1083, -1084, -1085, -1086, -1087, -1088, + -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -1103, -1104, + -1105, -1106, -1107, -1108, -1109, -1110, -1111, -1112, -1113, -1114, -1115, -1116, -1117, -1118, -1119, -1120, + -1121, -1122, -1123, -1124, -1125, -1126, -1127, -1128, -1129, -1130, -1131, -1132, -1133, -1134, -1135, -1136, + -1137, -1138, -1139, -1140, -1141, -1142, -1143, -1144, -1145, -1146, -1147, -1148, -1149, -1150, -1151, -1152, + -1153, -1154, -1155, -1156, -1157, -1158, -1159, -1160, -1161, -1162, -1163, -1164, -1165, -1166, -1167, -1168, + -1169, -1170, -1171, -1172, -1173, -1174, -1175, -1176, -1177, -1178, -1179, -1180, -1181, -1182, -1183, -1184, + -1185, -1186, -1187, -1188, -1189, -1190, -1191, -1192, -1193, -1194, -1195, -1196, -1197, -1198, -1199, -1200, + -1201, -1202, -1203, -1204, -1205, -1206, -1207, -1208, -1209, -1210, -1211, -1212, -1213, -1214, -1215, -1216, + -1217, -1218, -1219, -1220, -1221, -1222, -1223, -1224, -1225, -1226, -1227, -1228, -1229, -1230, -1231, -1232, + -1233, -1234, -1235, -1236, -1237, -1238, -1239, -1240, -1241, -1242, -1243, -1244, -1245, -1246, -1247, -1248, + -1249, -1250, -1251, -1252, -1253, -1254, -1255, -1256, -1257, -1258, -1259, -1260, -1261, -1262, -1263, -1264, + -1265, -1266, -1267, -1268, -1269, -1270, -1271, -1272, -1273, -1274, -1275, -1276, -1277, -1278, -1279, -1280, + -1281, -1282, -1283, -1284, -1285, -1286, -1287, -1288, -1289, -1290, -1291, -1292, -1293, -1294, -1295, -1296, + -1297, -1298, -1299, -1300, -1301, -1302, -1303, -1304, -1305, -1306, -1307, -1308, -1309, -1310, -1311, -1312, + -1313, -1314, -1315, -1316, -1317, -1318, -1319, -1320, -1321, -1322, -1323, -1324, -1325, -1326, -1327, -1328, + -1329, -1330, -1331, -1332, -1333, -1334, -1335, -1336, -1337, -1338, -1339, -1340, -1341, -1342, -1343, -1344, + -1345, -1346, -1347, -1348, -1349, -1350, -1351, -1352, -1353, -1354, -1355, -1356, -1357, -1358, -1359, -1360, + -1361, -1362, -1363, -1364, -1365, -1366, -1367, -1368, -1369, -1370, -1371, -1372, -1373, -1374, -1375, -1376, + -1377, -1378, -1379, -1380, -1381, -1382, -1383, -1384, -1385, -1386, -1387, -1388, -1389, -1390, -1391, -1392, + -1393, -1394, -1395, -1396, -1397, -1398, -1399, -1400, -1401, -1402, -1403, -1404, -1405, -1406, -1407, -1408, + -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1419, -1420, -1421, -1422, -1423, -1424, + -1425, -1426, -1427, -1428, -1429, -1430, -1431, -1432, -1433, -1434, -1435, -1436, -1437, -1438, -1439, -1440, + -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -1452, -1453, -1454, -1455, -1456, + -1457, -1458, -1459, -1460, -1461, -1462, -1463, -1464, -1465, -1466, -1467, -1468, -1469, -1470, -1471, -1472, + -1473, -1474, -1475, -1476, -1477, -1478, -1479, -1480, -1481, -1482, -1483, -1484, -1485, -1486, -1487, -1488, + -1489, -1490, -1491, -1492, -1493, -1494, -1495, -1496, -1497, -1498, -1499, -1500, -1501, -1502, -1503, -1504, + -1505, -1506, -1507, -1508, -1509, -1510, -1511, -1512, -1513, -1514, -1515, -1516, -1517, -1518, -1519, -1520, + -1521, -1522, -1523, -1524, -1525, -1526, -1527, -1528, -1529, -1530, -1531, -1532, -1533, -1534, -1535, -1536, + -1537, -1538, -1539, -1540, -1541, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -1549, -1550, -1551, -1552, + -1553, -1554, -1555, -1556, -1557, -1558, -1559, -1560, -1561, -1562, -1563, -1564, -1565, -1566, -1567, -1568, + -1569, -1570, -1571, -1572, -1573, -1574, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -1583, -1584, + -1585, -1586, -1587, -1588, -1589, -1590, -1591, -1592, -1593, -1594, -1595, -1596, -1597, -1598, -1599, -1600, + -1601, -1602, -1603, -1604, -1605, -1606, -1607, -1608, -1609, -1610, -1611, -1612, -1613, -1614, -1615, -1616, + -1617, -1618, -1619, -1620, -1621, -1622, -1623, -1624, -1625, -1626, -1627, -1628, -1629, -1630, -1631, -1632, + -1633, -1634, -1635, -1636, -1637, -1638, -1639, -1640, -1641, -1642, -1643, -1644, -1645, -1646, -1647, -1648, + -1649, -1650, -1651, -1652, -1653, -1654, -1655, -1656, -1657, -1658, -1659, -1660, -1661, -1662, -1663, -1664, + -1665, -1666, -1667, -1668, -1669, -1670, -1671, -1672, -1673, -1674, -1675, -1676, -1677, -1678, -1679, -1680, + -1681, -1682, -1683, -1684, -1685, -1686, -1687, -1688, -1689, -1690, -1691, -1692, -1693, -1694, -1695, -1696, + -1697, -1698, -1699, -1700, -1701, -1702, -1703, -1704, -1705, -1706, -1707, -1708, -1709, -1710, -1711, -1712, + -1713, -1714, -1715, -1716, -1717, -1718, -1719, -1720, -1721, -1722, -1723, -1724, -1725, -1726, -1727, -1728, + -1729, -1730, -1731, -1732, -1733, -1734, -1735, -1736, -1737, -1738, -1739, -1740, -1741, -1742, -1743, -1744, + -1745, -1746, -1747, -1748, -1749, -1750, -1751, -1752, -1753, -1754, -1755, -1756, -1757, -1758, -1759, -1760, + -1761, -1762, -1763, -1764, -1765, -1766, -1767, -1768, -1769, -1770, -1771, -1772, -1773, -1774, -1775, -1776, + -1777, -1778, -1779, -1780, -1781, -1782, -1783, -1784, -1785, -1786, -1787, -1788, -1789, -1790, -1791, -1792, + -1793, -1794, -1795, -1796, -1797, -1798, -1799, -1800, -1801, -1802, -1803, -1804, -1805, -1806, -1807, -1808, + -1809, -1810, -1811, -1812, -1813, -1814, -1815, -1816, -1817, -1818, -1819, -1820, -1821, -1822, -1823, -1824, + -1825, -1826, -1827, -1828, -1829, -1830, -1831, -1832, -1833, -1834, -1835, -1836, -1837, -1838, -1839, -1840, + -1841, -1842, -1843, -1844, -1845, -1846, -1847, -1848, -1849, -1850, -1851, -1852, -1853, -1854, -1855, -1856, + -1857, -1858, -1859, -1860, -1861, -1862, -1863, -1864, -1865, -1866, -1867, -1868, -1869, -1870, -1871, -1872, + -1873, -1874, -1875, -1876, -1877, -1878, -1879, -1880, -1881, -1882, -1883, -1884, -1885, -1886, -1887, -1888, + -1889, -1890, -1891, -1892, -1893, -1894, -1895, -1896, -1897, -1898, -1899, -1900, -1901, -1902, -1903, -1904, + -1905, -1906, -1907, -1908, -1909, -1910, -1911, -1912, -1913, -1914, -1915, -1916, -1917, -1918, -1919, -1920, + -1921, -1922, -1923, -1924, -1925, -1926, -1927, -1928, -1929, -1930, -1931, -1932, -1933, -1934, -1935, -1936, + -1937, -1938, -1939, -1940, -1941, -1942, -1943, -1944, -1945, -1946, -1947, -1948, -1949, -1950, -1951, -1952, + -1953, -1954, -1955, -1956, -1957, -1958, -1959, -1960, -1961, -1962, -1963, -1964, -1965, -1966, -1967, -1968, + -1969, -1970, -1971, -1972, -1973, -1974, -1975, -1976, -1977, -1978, -1979, -1980, -1981, -1982, -1983, -1984, + -1985, -1986, -1987, -1988, -1989, -1990, -1991, -1992, -1993, -1994, -1995, -1996, -1997, -1998, -1999, -2000, + -2001, -2002, -2003, -2004, -2005, -2006, -2007, -2008, -2009, -2010, -2011, -2012, -2013, -2014, -2015, -2016, + -2017, -2018, -2019, -2020, -2021, -2022, -2023, -2024, -2025, -2026, -2027, -2028, -2029, -2030, -2031, -2032, + -2033, -2034, -2035, -2036, -2037, -2038, -2039, -2040, -2041, -2042, -2043, -2044, -2045, -2046, -2047, -2048, + -2049, -2050, -2051, -2052, -2053, -2054, -2055, -2056, -2057, -2058, -2059, -2060, -2061, -2062, -2063, -2064, + -2065, -2066, -2067, -2068, -2069, -2070, -2071, -2072, -2073, -2074, -2075, -2076, -2077, -2078, -2079, -2080, + -2081, -2082, -2083, -2084, -2085, -2086, -2087, -2088, -2089, -2090, -2091, -2092, -2093, -2094, -2095, -2096, + -2097, -2098, -2099, -2100, -2101, -2102, -2103, -2104, -2105, -2106, -2107, -2108, -2109, -2110, -2111, -2112, + -2113, -2114, -2115, -2116, -2117, -2118, -2119, -2120, -2121, -2122, -2123, -2124, -2125, -2126, -2127, -2128, + -2129, -2130, -2131, -2132, -2133, -2134, -2135, -2136, -2137, -2138, -2139, -2140, -2141, -2142, -2143, -2144, + -2145, -2146, -2147, -2148, -2149, -2150, -2151, -2152, -2153, -2154, -2155, -2156, -2157, -2158, -2159, -2160, + -2161, -2162, -2163, -2164, -2165, -2166, -2167, -2168, -2169, -2170, -2171, -2172, -2173, -2174, -2175, -2176, + -2177, -2178, -2179, -2180, -2181, -2182, -2183, -2184, -2185, -2186, -2187, -2188, -2189, -2190, -2191, -2192, + -2193, -2194, -2195, -2196, -2197, -2198, -2199, -2200, -2201, -2202, -2203, -2204, -2205, -2206, -2207, -2208, + -2209, -2210, -2211, -2212, -2213, -2214, -2215, -2216, -2217, -2218, -2219, -2220, -2221, -2222, -2223, -2224, + -2225, -2226, -2227, -2228, -2229, -2230, -2231, -2232, -2233, -2234, -2235, -2236, -2237, -2238, -2239, -2240, + -2241, -2242, -2243, -2244, -2245, -2246, -2247, -2248, -2249, -2250, -2251, -2252, -2253, -2254, -2255, -2256, + -2257, -2258, -2259, -2260, -2261, -2262, -2263, -2264, -2265, -2266, -2267, -2268, -2269, -2270, -2271, -2272, + -2273, -2274, -2275, -2276, -2277, -2278, -2279, -2280, -2281, -2282, -2283, -2284, -2285, -2286, -2287, -2288, + -2289, -2290, -2291, -2292, -2293, -2294, -2295, -2296, -2297, -2298, -2299, -2300, -2301, -2302, -2303, -2304, + -2305, -2306, -2307, -2308, -2309, -2310, -2311, -2312, -2313, -2314, -2315, -2316, -2317, -2318, -2319, -2320, + -2321, -2322, -2323, -2324, -2325, -2326, -2327, -2328, -2329, -2330, -2331, -2332, -2333, -2334, -2335, -2336, + -2337, -2338, -2339, -2340, -2341, -2342, -2343, -2344, -2345, -2346, -2347, -2348, -2349, -2350, -2351, -2352, + -2353, -2354, -2355, -2356, -2357, -2358, -2359, -2360, -2361, -2362, -2363, -2364, -2365, -2366, -2367, -2368, + -2369, -2370, -2371, -2372, -2373, -2374, -2375, -2376, -2377, -2378, -2379, -2380, -2381, -2382, -2383, -2384, + -2385, -2386, -2387, -2388, -2389, -2390, -2391, -2392, -2393, -2394, -2395, -2396, -2397, -2398, -2399, -2400, + -2401, -2402, -2403, -2404, -2405, -2406, -2407, -2408, -2409, -2410, -2411, -2412, -2413, -2414, -2415, -2416, + -2417, -2418, -2419, -2420, -2421, -2422, -2423, -2424, -2425, -2426, -2427, -2428, -2429, -2430, -2431, -2432, + -2433, -2434, -2435, -2436, -2437, -2438, -2439, -2440, -2441, -2442, -2443, -2444, -2445, -2446, -2447, -2448, + -2449, -2450, -2451, -2452, -2453, -2454, -2455, -2456, -2457, -2458, -2459, -2460, -2461, -2462, -2463, -2464, + -2465, -2466, -2467, -2468, -2469, -2470, -2471, -2472, -2473, -2474, -2475, -2476, -2477, -2478, -2479, -2480, + -2481, -2482, -2483, -2484, -2485, -2486, -2487, -2488, -2489, -2490, -2491, -2492, -2493, -2494, -2495, -2496, + -2497, -2498, -2499, -2500, -2501, -2502, -2503, -2504, -2505, -2506, -2507, -2508, -2509, -2510, -2511, -2512, + -2513, -2514, -2515, -2516, -2517, -2518, -2519, -2520, -2521, -2522, -2523, -2524, -2525, -2526, -2527, -2528, + -2529, -2530, -2531, -2532, -2533, -2534, -2535, -2536, -2537, -2538, -2539, -2540, -2541, -2542, -2543, -2544, + -2545, -2546, -2547, -2548, -2549, -2550, -2551, -2552, -2553, -2554, -2555, -2556, -2557, -2558, -2559, -2560, + -2561, -2562, -2563, -2564, -2565, -2566, -2567, -2568, -2569, -2570, -2571, -2572, -2573, -2574, -2575, -2576, + -2577, -2578, -2579, -2580, -2581, -2582, -2583, -2584, -2585, -2586, -2587, -2588, -2589, -2590, -2591, -2592, + -2593, -2594, -2595, -2596, -2597, -2598, -2599, -2600, -2601, -2602, -2603, -2604, -2605, -2606, -2607, -2608, + -2609, -2610, -2611, -2612, -2613, -2614, -2615, -2616, -2617, -2618, -2619, -2620, -2621, -2622, -2623, -2624, + -2625, -2626, -2627, -2628, -2629, -2630, -2631, -2632, -2633, -2634, -2635, -2636, -2637, -2638, -2639, -2640, + -2641, -2642, -2643, -2644, -2645, -2646, -2647, -2648, -2649, -2650, -2651, -2652, -2653, -2654, -2655, -2656, + -2657, -2658, -2659, -2660, -2661, -2662, -2663, -2664, -2665, -2666, -2667, -2668, -2669, -2670, -2671, -2672, + -2673, -2674, -2675, -2676, -2677, -2678, -2679, -2680, -2681, -2682, -2683, -2684, -2685, -2686, -2687, -2688, + -2689, -2690, -2691, -2692, -2693, -2694, -2695, -2696, -2697, -2698, -2699, -2700, -2701, -2702, -2703, -2704, + -2705, -2706, -2707, -2708, -2709, -2710, -2711, -2712, -2713, -2714, -2715, -2716, -2717, -2718, -2719, -2720, + -2721, -2722, -2723, -2724, -2725, -2726, -2727, -2728, -2729, -2730, -2731, -2732, -2733, -2734, -2735, -2736, + -2737, -2738, -2739, -2740, -2741, -2742, -2743, -2744, -2745, -2746, -2747, -2748, -2749, -2750, -2751, -2752, + -2753, -2754, -2755, -2756, -2757, -2758, -2759, -2760, -2761, -2762, -2763, -2764, -2765, -2766, -2767, -2768, + -2769, -2770, -2771, -2772, -2773, -2774, -2775, -2776, -2777, -2778, -2779, -2780, -2781, -2782, -2783, -2784, + -2785, -2786, -2787, -2788, -2789, -2790, -2791, -2792, -2793, -2794, -2795, -2796, -2797, -2798, -2799, -2800, + -2801, -2802, -2803, -2804, -2805, -2806, -2807, -2808, -2809, -2810, -2811, -2812, -2813, -2814, -2815, -2816, + -2817, -2818, -2819, -2820, -2821, -2822, -2823, -2824, -2825, -2826, -2827, -2828, -2829, -2830, -2831, -2832, + -2833, -2834, -2835, -2836, -2837, -2838, -2839, -2840, -2841, -2842, -2843, -2844, -2845, -2846, -2847, -2848, + -2849, -2850, -2851, -2852, -2853, -2854, -2855, -2856, -2857, -2858, -2859, -2860, -2861, -2862, -2863, -2864, + -2865, -2866, -2867, -2868, -2869, -2870, -2871, -2872, -2873, -2874, -2875, -2876, -2877, -2878, -2879, -2880, + -2881, -2882, -2883, -2884, -2885, -2886, -2887, -2888, -2889, -2890, -2891, -2892, -2893, -2894, -2895, -2896, + -2897, -2898, -2899, -2900, -2901, -2902, -2903, -2904, -2905, -2906, -2907, -2908, -2909, -2910, -2911, -2912, + -2913, -2914, -2915, -2916, -2917, -2918, -2919, -2920, -2921, -2922, -2923, -2924, -2925, -2926, -2927, -2928, + -2929, -2930, -2931, -2932, -2933, -2934, -2935, -2936, -2937, -2938, -2939, -2940, -2941, -2942, -2943, -2944, + -2945, -2946, -2947, -2948, -2949, -2950, -2951, -2952, -2953, -2954, -2955, -2956, -2957, -2958, -2959, -2960, + -2961, -2962, -2963, -2964, -2965, -2966, -2967, -2968, -2969, -2970, -2971, -2972, -2973, -2974, -2975, -2976, + -2977, -2978, -2979, -2980, -2981, -2982, -2983, -2984, -2985, -2986, -2987, -2988, -2989, -2990, -2991, -2992, + -2993, -2994, -2995, -2996, -2997, -2998, -2999, -3000, -3001, -3002, -3003, -3004, -3005, -3006, -3007, -3008, + -3009, -3010, -3011, -3012, -3013, -3014 + ], + [ + 0, 295, 300, 304, 74, 309, 136, 136, 314, 74, 318, 74, 321, 324, 74, 326, 329, 333, 338, 343, 348, 353, 357, + 361, 365, 367, 372, 375, 380, 384, 389, 393, 398, 402, 407, 409, 412, 416, 418, 422, 425, 429, 432, 436, 17, + 441, 444, 447, 451, 453, 458, 462, 467, 470, 474, 477, 480, 483, 486, 489, 492, 495, 498, 501, 504, 507, 510, + 513, 516, 519, 522, 525, 528, 531, 534, 537, 540, 543, 546, 550, 553, 556, 559, 562, 565, 569, 572, 576, 579, + 103, 32, 103, 587, 591, 594, 597, 600, 604, 607, 610, 614, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, + 13, 12, 13, 12, 12, 12, 12, 12, 12, 12, 13, 13, 12, 17, 12, 12, 26, 17, 13, 12, 12, 12, 12, 12, 12, 13, 13, 13, + 61, 17, 12, 12, 17, 12, 17, 13, 624, 628, 633, 637, 641, 62, 17, 647, 652, 657, 662, 13, 666, 670, 12, 12, 12, + 26, 12, 12, 12, 12, 12, 26, 12, 12, 12, 17, 43, 12, 12, 12, 26, 12, 12, 12, 26, 12, 13, 675, 679, 682, 686, 690, + 693, 696, 698, 700, 704, 707, 712, 716, 721, 726, 730, 12, 12, 12, 12, 734, 12, 12, 12, 12, 26, 13, 12, 12, 12, + 12, 12, 12, 12, 12, 17, 12, 737, 742, 747, 751, 756, 761, 765, 770, 772, 776, 781, 785, 788, 793, 798, 12, 61, + 802, 806, 26, 13, 811, 32, 814, 818, 822, 159, 827, 830, 834, 838, 842, 845, 848, 851, 854, 858, 863, 866, 870, + 874, 879, 883, 886, 891, 894, 898, 902, 906, 910, 915, 918, 921, 924, 929, 933, 937, 940, 944, 32, 948, 32, 62, + 32, 951, 954, 957, 960, 964, 968, 971, 975, 979, 982, 985, 988, 992, 996, 1001, 1006, 1011, 1014, 1018, 1021, + 1024, 1027, 1031, 1035, 1039, 12, 12, 13, 12, 13, 17, 12, 12, 52, 12, 12, 43, 12, 17, 12, 12, 12, 12, 12, 12, + 52, 12, 26, 26, 12, 12, 12, 1045, 1049, 1053, 1057, 1061, 1066, 1070, 1075, 1080, 1085, 1090, 1095, 1100, 1105, + 1110, 1115, 1119, 1124, 1128, 1131, 1134, 1138, 1143, 1148, 1153, 1158, 17, 17, 13, 1163, 1168, 1171, 12, 12, + 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 12, 13, 12, 12, 12, 12, 1173, 1178, + 1181, 1185, 1190, 1195, 1200, 1205, 1210, 1214, 1218, 1222, 1225, 1228, 1232, 1235, 1238, 1242, 1246, 1250, + 1253, 1257, 1261, 1264, 1266, 52, 1270, 1275, 1279, 1283, 1288, 1291, 1294, 1298, 1301, 1305, 1308, 1313, 1318, + 1323, 1328, 1333, 1338, 12, 12, 12, 78, 13, 17, 26, 12, 13, 12, 12, 78, 17, 1343, 1347, 1352, 1356, 43, 1360, + 1363, 1368, 1372, 1375, 66, 1381, 1386, 1391, 53, 1397, 1401, 1406, 1410, 1412, 1415, 1419, 1422, 1426, 1430, + 1434, 1438, 1441, 1446, 1450, 79, 1454, 1459, 1463, 1468, 1473, 1476, 1480, 1484, 1488, 1492, 53, 1497, 1502, + 1507, 1512, 1515, 46, 1520, 1525, 1528, 1533, 1536, 1541, 1545, 1549, 1553, 1557, 1560, 1565, 1570, 1575, 1579, + 1584, 1589, 1594, 1598, 1603, 13, 1608, 1612, 1616, 1620, 1624, 1627, 1630, 1633, 1637, 1641, 1645, 1650, 1652, + 1657, 1662, 1667, 1672, 1675, 1677, 1679, 1682, 1685, 1690, 1693, 1697, 1699, 1702, 1705, 1709, 1712, 1714, + 1717, 1722, 1726, 1730, 1733, 1736, 1739, 1742, 1745, 1748, 1752, 1755, 1758, 1762, 1766, 1769, 1773, 1778, 30, + 1784, 176, 1789, 1793, 1797, 1802, 1806, 1809, 1812, 1817, 179, 1821, 20, 1827, 18, 46, 18, 1833, 1837, 1842, + 1845, 1849, 1853, 1858, 1863, 1868, 1871, 46, 20, 20, 46, 53, 53, 54, 180, 80, 181, 80, 1879, 1883, 1887, 1891, + 1894, 1899, 1903, 1906, 1910, 1913, 17, 30, 20, 1918, 1923, 1928, 1933, 20, 1937, 1942, 1947, 1952, 1956, 1961, + 1965, 1968, 1973, 1978, 1982, 80, 1987, 1990, 1994, 1999, 2003, 2008, 2013, 2018, 2022, 2027, 2030, 2035, 2040, + 2043, 2046, 2049, 82, 2055, 2059, 18, 2062, 2066, 2071, 2074, 2078, 2082, 46, 2086, 2089, 2093, 2098, 30, 13, + 2103, 2108, 2113, 2118, 2121, 2125, 2129, 2133, 2138, 2141, 2144, 2148, 2152, 2157, 2162, 2165, 2169, 2173, + 2177, 2180, 2184, 2188, 2193, 2198, 2202, 2206, 2208, 2212, 2216, 2220, 2225, 2229, 2234, 2239, 2242, 2245, + 2250, 2253, 2257, 2262, 2266, 2270, 2275, 2279, 2284, 2288, 2292, 2295, 2299, 2302, 2307, 2312, 2316, 2321, + 2324, 2327, 2332, 2336, 2340, 2344, 2348, 103, 2352, 2356, 2360, 2364, 2368, 2372, 2376, 2381, 2384, 2389, 2394, + 2398, 2401, 2406, 2411, 2414, 2419, 2424, 2429, 2434, 2439, 2442, 2447, 2451, 2456, 2461, 2464, 2468, 2472, + 2477, 2482, 13, 2487, 2491, 2494, 2498, 2503, 2508, 2512, 2516, 2521, 2526, 2531, 2536, 2540, 2544, 2549, 2554, + 2558, 2563, 2568, 2572, 2576, 2580, 2584, 2588, 2592, 2596, 2600, 2605, 2610, 2615, 2619, 2624, 2628, 82, 2631, + 2634, 2638, 2641, 2644, 2648, 2653, 2656, 2661, 2664, 2669, 2673, 2677, 69, 2682, 2686, 2690, 2695, 2698, 2702, + 2707, 2712, 2717, 2722, 2726, 54, 2730, 2733, 20, 2738, 2742, 20, 2747, 2750, 2754, 2757, 2762, 30, 2765, 2769, + 2773, 2776, 2780, 2785, 2790, 2794, 2797, 2802, 2807, 2811, 2815, 2819, 2824, 2829, 2834, 2838, 2843, 2848, + 2852, 2857, 2861, 2865, 2869, 2874, 2879, 2884, 2889, 2894, 2898, 2903, 2908, 2911, 2915, 2920, 2925, 2929, + 2933, 2937, 2941, 2944, 2948, 2952, 2957, 2962, 2967, 47, 2973, 2976, 2981, 2986, 2990, 2993, 2997, 26, 3002, + 3007, 3012, 3015, 3020, 3025, 3030, 3035, 3037, 3041, 3045, 3049, 3054, 3059, 3063, 3066, 3070, 3074, 3078, + 3082, 3086, 3090, 3095, 3100, 3105, 3109, 3113, 3117, 3121, 52, 3125, 3129, 3132, 3136, 3141, 3145, 3149, 3154, + 3157, 3161, 3166, 3170, 3173, 3176, 3180, 3184, 3188, 3193, 3197, 3202, 3206, 3211, 3216, 3221, 3226, 3229, + 3234, 3238, 3243, 3248, 3253, 3256, 3261, 3266, 3271, 3276, 3280, 3284, 3288, 3292, 3297, 3301, 3305, 3310, + 3315, 3319, 3322, 3327, 3332, 3337, 3342, 3346, 3351, 3356, 3360, 3363, 3367, 3370, 3375, 3379, 3382, 3385, + 3389, 3394, 3399, 3404, 3409, 3413, 3417, 54, 3421, 3426, 3430, 3434, 13, 3438, 3442, 3446, 3451, 3456, 3461, + 3466, 3470, 3475, 3479, 3484, 3489, 3493, 3498, 3502, 79, 79, 3507, 3510, 3515, 3520, 3524, 3528, 3532, 3535, + 3540, 3543, 3548, 3552, 3557, 3561, 47, 3565, 3569, 3573, 3577, 3581, 3585, 3588, 3592, 3597, 3601, 3604, 3609, + 3614, 12, 3619, 3624, 3629, 3633, 3637, 3641, 3644, 3648, 3652, 3657, 3660, 3665, 3670, 3675, 3679, 3682, 3686, + 3691, 3696, 3701, 3705, 3710, 3715, 30, 3719, 3724, 13, 3729, 3734, 3738, 3743, 3747, 3751, 3755, 47, 3759, + 3763, 3767, 3770, 3775, 3778, 3783, 3788, 3793, 3797, 18, 3801, 3804, 3807, 3810, 3814, 3819, 3823, 3827, 3832, + 43, 3837, 3841, 3845, 3849, 3852, 3856, 3861, 3866, 3871, 3876, 3881, 66, 3886, 3890, 66, 20, 3894, 3897, 3900, + 3903, 3908, 3912, 3917, 3922, 3925, 3930, 3934, 3937, 3942, 3946, 3951, 3954, 3959, 3963, 3967, 3971, 3975, + 3980, 3983, 3987, 3991, 3996, 4000, 4003, 4008, 4013, 4018, 4023, 4028, 4033, 4037, 4041, 4045, 4050, 4053, + 4057, 4062, 4066, 4069, 4074, 4079, 4084, 4088, 4093, 4097, 4102, 4107, 4112, 4116, 4121, 4125, 4130, 4135, + 4139, 4143, 4147, 4151, 4156, 4160, 4165, 4168, 4173, 4177, 4181, 4185, 4190, 4194, 4199, 4204, 4209, 4214, + 4219, 4224, 4229, 4234, 4237, 4241, 4245, 4250, 4255, 4260, 4265, 4270, 4275, 4280, 4285, 4290, 4295, 4300, + 4304, 4309, 4313, 4318, 4323, 4328, 4333, 4338, 4343, 4348, 4352, 4357, 4362, 4367, 4372, 4376, 4381, 4385, + 4390, 4394, 4399, 4404, 4409, 4413, 4418, 4423, 4428, 4433, 4438, 4441, 4446, 4451, 4455, 4460, 4465, 4469, + 4474, 4478, 4483, 4487, 4491, 4496, 4501, 4506, 4511, 4516, 4521, 4526, 4530, 4534, 4539, 4544, 4548, 4553, + 4558, 4562, 4567, 4572, 4577, 4582, 4587, 4591, 4596, 4600, 47, 18, 4605, 18, 4608, 4612, 4615, 4620, 4625, + 4630, 4635, 4640, 4644, 4649, 4652, 4656, 30, 4661, 4665, 4669, 4673, 4676, 4679, 4682, 4687, 4691, 4695, 4697, + 180, 18, 4700, 4703, 4708, 4712, 4716, 30, 4720, 4724, 4728, 4733, 4737, 4742, 4746, 4750, 4755, 4760, 4765, + 4770, 4775, 4779, 4783, 4787, 4791, 4796, 4801, 13, 4806, 4810, 4814, 4819, 4824, 4829, 4833, 4837, 4840, 4845, + 4848, 4852, 4856, 4859, 4864, 4868, 4872, 4877, 4882, 4886, 43, 4890, 4895, 4900, 4904, 4908, 4912, 4915, 4919, + 4924, 13, 4929, 4932, 4937, 4942, 4946, 4949, 26, 4951, 4956, 4960, 4963, 4967, 80, 4972, 4976, 4980, 4984, + 4988, 4992, 4996, 5001, 5005, 5010, 5015, 5018, 5022, 5026, 5030, 5034, 5039, 5042, 5046, 17, 5050, 17, 5054, + 5058, 5061, 5065, 5069, 5074, 5077, 5082, 5086, 5090, 5095, 5100, 5104, 5107, 5111, 5114, 5119, 5123, 5126, + 5129, 5133, 5137, 5142, 5147, 5151, 5154, 5158, 5162, 5166, 5170, 5175, 5178, 5181, 5186, 5191, 5196, 5199, + 5202, 5206, 5210, 5215, 5219, 5224, 5229, 5233, 5238, 5243, 5247, 5251, 5255, 5259, 5263, 5267, 5271, 5276, + 5279, 5282, 5287, 5292, 5295, 5299, 5302, 5306, 5310, 5315, 5320, 5324, 5328, 5333, 5337, 5341, 5346, 5351, + 5356, 5359, 5363, 5368, 5372, 5377, 5382, 5386, 5391, 5395, 5400, 5405, 5409, 5414, 5418, 5423, 5426, 5431, + 5435, 5439, 5442, 5445, 5450, 5454, 5459, 5464, 5468, 5472, 5477, 5482, 5487, 5491, 5496, 5501, 5506, 5511, + 5516, 46, 20, 54, 5521, 5526, 20, 5530, 5534, 5538, 5542, 5546, 5551, 5555, 5559, 5564, 5568, 5572, 5576, 5581, + 5585, 5589, 5594, 5598, 5601, 5606, 5611, 5615, 5619, 5624, 5629, 5633, 5638, 5643, 5646, 5651, 5656, 5659, + 5664, 5667, 5670, 5673, 5676, 5679, 5682, 5685, 5688, 5691, 5694, 5697, 5700, 5703, 5706, 5709, 5712, 5715, + 5718, 5721, 5724, 5727, 5730, 5734, 5737, 5740, 5745, 5750, 5755, 5760, 5764, 5768, 5773, 5777, 5782, 5786, 18, + 5790, 5795, 5800, 5805, 5810, 5815, 5820, 5824, 5827, 5832, 5837, 20, 5841, 5844, 5848, 5852, 5857, 5861, 5864, + 5867, 5872, 5876, 5880, 5884, 5889, 5894, 5898, 5902, 5905, 5908, 18, 5913, 5917, 5921, 5926, 5931, 13, 5935, + 5939, 5944, 5948, 5952, 5957, 5961, 5964, 5966, 5970, 5974, 5977, 5982, 5985, 5989, 5993, 5998, 6002, 6007, + 6011, 6015, 6018, 6023, 6028, 6032, 69, 20, 6036, 6041, 6045, 6049, 6053, 6058, 6063, 6068, 6073, 6076, 6080, + 6085, 6089, 6092, 6096, 6100, 6104, 6109, 6113, 6118, 6123, 6127, 6132, 6137, 6142, 6146, 6150, 6155, 47, 6160, + 20, 6162, 6167, 6170, 6175, 82, 6180, 6185, 6189, 6194, 6199, 6203, 6207, 6211, 6216, 6221, 53, 6225, 6228, + 6232, 6237, 26, 6240, 6245, 6250, 6255, 6260, 6264, 6268, 6273, 6278, 6282, 6287, 6292, 6297, 6300, 6303, 6307, + 6312, 6315, 6320, 82, 6325, 6330, 6334, 6338, 6343, 6347, 6352, 6355, 6360, 6365, 6369, 6374, 6379, 6384, 6389, + 6394, 6399, 6404, 6409, 6411, 6416, 6421, 6425, 6430, 6435, 6439, 6443, 6447, 6451, 6456, 6461, 6466, 6470, + 6475, 6478, 6483, 6487, 6491, 6494, 6498, 6501, 61, 6504, 6509, 6514, 6519, 6523, 6526, 6531, 6535, 6540, 6544, + 6548, 6552, 6556, 6561, 6566, 6571, 6575, 6578, 6583, 6588, 6592, 6597, 6600, 6604, 6607, 6611, 6616, 6621, + 6626, 6628, 6632, 6636, 6640, 6644, 6648, 6653, 18, 6658, 6662, 6666, 18, 6671, 6676, 6679, 6684, 6689, 6694, + 6699, 6701, 6705, 6708, 6712, 6717, 6722, 6727, 6732, 6737, 6740, 6744, 20, 6748, 6751, 6756, 6761, 6765, 6770, + 6774, 6779, 6784, 6789, 6794, 6798, 6802, 6806, 6811, 6815, 6820, 6824, 6827, 6832, 6837, 6841, 6844, 6848, + 6851, 6855, 6858, 6861, 6864, 6868, 6871, 6875, 6880, 6885, 6888, 6893, 6898, 6902, 6906, 6911, 6913, 6916, 240, + 6921, 6925, 6930, 18, 6934, 6939, 6944, 6947, 6950, 6953, 6958, 6963, 6967, 6971, 6975, 6979, 6984, 78, 6987, + 6991, 18, 6995, 6999, 7004, 7008, 7013, 7018, 7022, 7027, 7030, 7035, 7039, 7043, 7047, 7051, 7054, 7057, 7061, + 7065, 7070, 7074, 7079, 7083, 7088, 7092, 7097, 7100, 7103, 7107, 7112, 7116, 7119, 7123, 7128, 243, 7132, 7134, + 7136, 243, 7139, 7142, 7146, 7150, 7154, 7157, 7160, 7164, 7169, 7171, 7175, 7179, 7184, 7188, 7193, 7198, 7202, + 52, 7205, 7210, 7214, 7219, 7223, 7227, 7230, 7235, 7239, 7243, 7247, 7252, 7257, 7261, 7266, 7268, 7272, 7276, + 7280, 7284, 7288, 7292, 7295, 244, 7304, 7308, 7312, 7317, 7322, 7327, 7331, 7336, 7341, 7344, 7348, 7352, 7356, + 7360, 7364, 7367, 7370, 7375, 7380, 7384, 7388, 7391, 7396, 7401, 7406, 7411, 7416, 7420, 7424, 7428, 7431, + 7434, 7439, 7443, 7446, 7450, 7455, 7460, 12, 7465, 7467, 7470, 7474, 7479, 7482, 7486, 7491, 7496, 7501, 7505, + 7509, 7513, 7517, 7520, 7525, 7529, 7534, 7538, 7543, 13, 7548, 7552, 7556, 7558, 7561, 7566, 7571, 7576, 7579, + 7583, 7588, 7592, 7596, 7600, 247, 7606, 7611, 7615, 7619, 7623, 7626, 7631, 7636, 7641, 7646, 7650, 7654, 7658, + 7663, 7667, 7672, 7677, 7682, 7686, 7690, 7694, 7699, 7703, 249, 7707, 250, 7713, 7717, 7721, 7724, 7728, 7732, + 7737, 7741, 7746, 7751, 7756, 7761, 7765, 7769, 7773, 7776, 7780, 7785, 7790, 7795, 7799, 7804, 7809, 7813, + 7818, 7823, 7827, 7831, 7836, 7841, 7846, 7850, 7855, 7860, 7865, 7870, 7873, 7878, 7883, 7888, 17, 7893, 7896, + 17, 7900, 7904, 7908, 7913, 7916, 7920, 7925, 7930, 7933, 7937, 7941, 7944, 7949, 7953, 7958, 7963, 7967, 7972, + 7976, 7981, 7985, 7990, 7994, 7999, 8003, 8007, 8011, 8015, 8020, 8025, 8030, 8035, 8040, 8045, 8050, 8053, + 8057, 8061, 8066, 8071, 8075, 8078, 61, 8082, 8085, 8090, 181, 47, 8095, 8100, 8105, 8109, 255, 8115, 247, 8118, + 8123, 18, 8127, 8132, 8136, 8139, 8144, 8149, 8153, 8158, 8161, 8165, 8170, 8174, 8179, 8183, 8187, 8192, 8197, + 8201, 13, 8204, 8209, 8214, 8217, 8221, 8226, 8230, 250, 8235, 8240, 8245, 8249, 18, 8254, 18, 8258, 8263, 244, + 8268, 240, 20, 8272, 8277, 8281, 8286, 8289, 8293, 8296, 20, 8301, 8304, 8309, 30, 8313, 8317, 256, 47, 8322, + 8326, 8331, 8335, 8339, 8344, 8347, 8350, 8354, 8358, 8361, 20, 18, 8366, 8370, 30, 257, 8374, 8377, 8382, 8387, + 8392, 8397, 8401, 8404, 8409, 46, 8414, 8419, 8424, 18, 8428, 8433, 8438, 8441, 8443, 8447, 8451, 8455, 8458, + 8462, 8467, 8471, 8476, 8480, 8483, 8487, 8491, 8496, 8501, 8504, 8509, 8514, 8519, 8524, 8528, 8533, 8538, + 8542, 8547, 8552, 8556, 30, 8561, 20, 8564, 8569, 8573, 8578, 257, 54, 8583, 18, 8587, 8592, 8597, 8601, 8606, + 8611, 8616, 8621, 8626, 8629, 54, 8634, 8639, 8642, 8647, 8650, 255, 8653, 8658, 8662, 8665, 8669, 8674, 8677, + 8682, 8686, 8691, 8695, 8699, 8703, 8707, 8712, 8715, 8720, 8724, 8728, 8733, 249, 8738, 8743, 8748, 8753, 8758, + 8763, 8768, 8772, 8776, 8780, 8784, 176, 8789, 8792, 8795, 8799, 8804, 8808, 8811, 8815, 8818, 8822, 8825, 8828, + 8833, 8837, 8841, 8844, 8849, 18, 69, 8854, 8859, 53, 8862, 8865, 8870, 8875, 8878, 8883, 8888, 8893, 8898, + 8903, 8908, 8911, 8916, 8920, 8925, 8929, 8934, 8937, 8942, 8946, 8950, 8954, 8958, 8963, 8967, 8971, 8976, + 8981, 8986, 8989, 8994, 8998, 9002, 9007, 9010, 9013, 9018, 9023, 9026, 9030, 9034, 9038, 9043, 9048, 9053, + 9058, 9062, 9067, 9072, 9076, 9080, 9083, 9087, 9091, 9095, 9100, 9104, 9109, 9113, 9118, 30, 9121, 9125, 9130, + 9133, 9138, 9142, 9146, 9151, 43, 9156, 9161, 9166, 9170, 9174, 9176, 9180, 9185, 9189, 9194, 9198, 9202, 9207, + 9211, 9215, 9219, 9223, 66, 9226, 9230, 9235, 9240, 9245, 9250, 9253, 9258, 9262, 9267, 9272, 9277, 9282, 9286, + 9291, 9293, 9297, 9300, 9304, 9308, 9312, 9316, 9321, 9325, 9329, 9333, 9337, 9341, 9344, 9348, 9352, 9356, + 9360, 9365, 9369, 9374, 69, 66, 256, 9379, 179, 69, 9383, 9387, 9392, 9397, 9402, 9406, 9411, 9415, 9420, 9424, + 9428, 9432, 9437, 9442, 9447, 9451, 9454, 9458, 9461, 9465, 9470, 9475, 9480, 9485, 9488, 9491, 79, 9496, 17, + 9501, 9505, 9509, 9514, 9519, 9524, 9529, 9534, 9537, 9540, 9544, 9547, 9552, 9556, 9561, 9566, 9570, 9573, + 9577, 9581, 9586, 9590, 52, 9594, 9598, 9601, 9606, 9610, 9614, 9617, 9622, 9626, 9630, 9635, 9639, 9642, 9647, + 9652, 9655, 9660, 9664, 9667, 9671, 9676, 9681, 9686, 9690, 9694, 9698, 9703, 9706, 9711, 9714, 9718, 9722, + 9726, 9730, 9735, 9739, 9742, 9747, 9751, 9756, 9761, 9765, 9770, 9774, 9779, 9784, 32, 32, 32, 62, 32, 265, + 265, 9791, 9794, 9798, 9802, 9806, 62, 62, 32, 9811, 13, 17, 13, 26, 9815, 13, 61, 9818, 9823, 9827, 9831, 9836, + 9840, 9843, 9848, 9852, 9857, 9862, 9865, 9869, 9873, 9877, 9882, 9887, 9891, 9895, 9899, 9904, 9909, 9914, + 9919, 9923, 9928, 9933, 9938, 9942, 9945, 9948, 9952, 9956, 9960, 9963, 9967, 9970, 9973, 9977, 9980, 159, 9983, + 9986, 9991, 9996, 10000, 10005, 10010, 10013, 10016, 10020, 267, 10025, 10028, 10032, 10037, 10041, 10046, + 10050, 10054, 10059, 10064, 10068, 10073, 10078, 10082, 10086, 10090, 10094, 10098, 10101, 10103, 10108, 10112, + 10117, 43, 10121, 10126, 10131, 10136, 10139, 96, 10144, 10147, 10149, 270, 10152, 10154, 10159, 10162, 10166, + 10169, 10172, 10175, 10178, 10181, 10184, 10188, 10191, 10195, 10198, 10202, 10206, 10209, 10213, 10215, 10218, + 10222, 10226, 10229, 10234, 10238, 10242, 10247, 10251, 10254, 10257, 10260, 10264, 10266, 10270, 10273, 10277, + 10281, 10285, 10290, 10295, 10299, 10303, 10307, 10311, 10315, 10319, 10321, 10324, 10328, 10333, 10338, 10342, + 10347, 10351, 10354, 10359, 10362, 10366, 10369, 10372, 10377, 10380, 10385, 10389, 10393, 10396, 10399, 10402, + 10405, 10409, 10414, 10418, 10423, 10428, 10433, 10438, 10443, 10446, 10449, 10453, 10458, 10462, 10465, 10469, + 10473, 10478, 10483, 10487, 10492, 10496, 10500, 10503, 10507, 10511, 10516, 10521, 10526, 10531, 10536, 10540, + 10543, 10546, 10549, 10553, 10558, 10563, 10567, 10571, 10574, 10578, 10583, 10588, 10591, 10595, 10599, 10602, + 10605, 100, 279, 270, 10610, 10615, 10620, 10625, 267, 10629, 10633, 10636, 10641, 10645, 10648, 10653, 10657, + 281, 10661, 10666, 10670, 96, 10675, 282, 282, 100, 10678, 10682, 100, 10686, 283, 10693, 10698, 10703, 10707, + 10711, 10714, 10716, 279, 10719, 284, 284, 10723, 96, 10726, 10729, 10733, 10738, 10740, 10744, 10749, 10753, + 10757, 10761, 10765, 10770, 10773, 10778, 10782, 10787, 10791, 10794, 10798, 10801, 10804, 10809, 10813, 10818, + 10822, 10827, 10831, 10835, 10837, 10842, 10845, 10849, 10851, 10856, 290, 10859, 10862, 10866, 10870, 10874, + 10879, 10883, 10888, 10892, 10895, 10898, 10901, 10906, 10910, 10914, 10917, 10921, 10925, 10929, 10933, 10938, + 283, 10942, 10945, 10950, 10954, 10958, 10962, 10967, 10969, 10974, 10977, 10982, 10987, 10992, 10996, 290, + 11000, 11003, 11007, 11010, 11012, 11017, 11019, 11023, 11028, 11033, 11037, 11042, 11046, 11050, 11053, 11058, + 11061, 11065, 11068, 11071, 11076, 11081, 11086, 11090, 11095, 11099, 11104, 11108, 11113, 11118, 11123, 11128, + 11132, 11136, 96, 100, 11141, 11146, 11150, 11154, 11159, 11163, 11166, 11170, 11173, 11177, 11181, 11185, + 11188, 11191, 11194, 11196, 11199, 11204, 11209, 281, 11213, 11217, 78, 11221, 11224, 11229, 11233, 292, 11237, + 11240, 11244, 11248, 11251, 11254, 292, 11259, 11262, 11265 + ], + [1, 3, 296], + [0, 297, 298, 299, 10], + [0, -809, -2387, -3019, -682, -1967, -3020, -567, -3021, -3022, -1552, -2055, -3023, -1311, -2030, -2113, -3024], + [ + 0, -705, -888, -1616, -664, -1107, -1521, -2162, -2466, -668, -1344, -3025, -1471, -1654, -2006, -2074, -2210, + -2550, -915, -932, -1548, -1666, -2093, -2177, -2388, -2439, -674, -795, -928, -1889, -2379, -2501, -522, -679, + -923, -1077, -1376, -1646, -1783, -1942, -3026, -2378, -3027, -3028, -1003, -3029, -1978, -3030, -2016, -2019, + -3031, -2281, -2376, -3032, -527, -778, -3033, -3034, -2410, -23, -3035, -3036, -3037, -1482, -1534, -1600, + -3038, -2040, -3039, -3040, -3041, -518, -528, -534, -1543, -1588, -1890, -1938, -2043, -2275, -2516, -305, + -3042, -3043, -3044, -1492, -3045, -3046, -556, -1906, -1908, -3047, -2285, -86, -3048, -3049, -3050, -2015, + -3051, -263, -3052, -3053, -558, -3054, -3055, -1962, -2044, -3056, -3057, -3058, -3059, -3060, -3061, -3062, + -560, -1601, -2505, -3063, -3064, -969, -977, -1491, -2052, -3065, -3066, -440, -3067, -562, -3068, -958, -3069, + -3070, -539, -3071, -1475, -739, -3072, -940, -962, -963, -1490, -3073, -3074, -3075, -916, -2013, -2017, -3076, + -3077, -3078, -3079, -1899, -3080, -428, -1897, -3081, -3082, -1017, -3083, -3084, -3085, -3086, -3087, -555, + -535, -3088, -3089, -427, -661, -3090, -3091, -26, -547, -741, -3092 + ], + [0, -3093, -3094, -2634, -3095, -3096, -2006, -3097, -3098, -3099, -3100], + [1, 3, 301], + [0, 302, 0, 303, 11], + [0, -469, -2153, -1864, -2231, -470, -1461], + [0, -3101, -3102, -475, -3103, -3104, -3105], + [1, 3, 305], + [0, 306, 0, 307, 9], + [0, -1816, -2153, -1461, -1588, -2], + [0, -3101, -3102, -475, -3106, -3107, -3104, -3108, -3109, -3105, -3110, -3111], + [0, 33, 0, 7, 5], + [1, 3, 310], + [0, 311, 0, 312, 4], + [0, -2387, -1839], + [0, -475, -3112, -3095, -3113, -3114], + [0, 33, 0, 7, 4], + [1, 3, 315], + [0, 316, 37, 317, 4], + [0, -2387, -2550, -2177, -679, -23, -2080, -742, -3115], + [0, -475, -3116], + [1, 3, 319], + [0, 320, 0, 7, 11], + [0, -2387, -3117], + [1, 3, 322], + [0, 33, 0, 323, 9], + [0, -475, -3118, -3119, -3098], + [1, 3, 325], + [0, 33, 0, 7, 6], + [1, 3, 327], + [0, 328, 0, 7, 4], + [0, -3120, -2387], + [1, 3, 330], + [0, 33, 331, 332, 10], + [0, -3121], + [0, -475, -3122], + [1, 3, 334], + [0, 335, 336, 337, 5], + [0, -809, -2004, -682, -567, -3123, -3124, -3125, -3126, -3127, -3128, -2639, -3129, -3130, -3131, -3132], + [ + 0, -485, -1107, -1415, -2006, -932, -2388, -3133, -2375, -1662, -767, -3134, -2019, -533, -3135, -1939, -2028, + -2410, -23, -3136, -1534, -3137, -3040, -528, -726, -2034, -44, -3138, -3139, -3140, -3141, -3142, -3143, -3144, + -2052, -3145, -3146, -3147, -3148, -3149, -2013, -3150, -3151, -428, -408, -3152, -3153, -3154, -3155, -3156, + -3157 + ], + [0, -3158, -3099, -2006, -3159, -3095, -3098, -3160, -3161, -3100, -3162, -3163], + [1, 3, 339], + [0, 340, 341, 342, 4], + [0, -1549], + [0, -485, -2006, -1031, -2019, -2410, -3040, -3164, -3052], + [0, -3158, -3099, -2494, -485, -3095, -3098, -3161, -3100, -2006, -3159, -3160], + [1, 3, 344], + [0, 345, 346, 347, 5], + [0, -682, -3165, -3166], + [0, -485, -1107, -2006, -1031, -2019, -2410, -3040, -3052], + [0, -3158, -3099, -2494, -485, -3095, -3098, -3161, -3100, -2006, -3159, -3160, -3167], + [1, 3, 349], + [0, 350, 351, 352, 4], + [0, -3168, -3169], + [0, -2387, -2299, -2402, -2300, -364, -3170, -3171, -2405, -3172, -365], + [0, -3173, -3174, -3175, -3176, -1791, -3177, -3178, -2299], + [1, 3, 354], + [0, 355, 356, 137, 4], + [0, -1107, -2218, -1591, -719, -742, -3179, -3180], + [0, -2177, -23, -3036, -3181, -3182], + [1, 3, 358], + [0, 359, 360, 7, 4], + [0, -3187, -1863, -3188], + [0, -3189, -2269, -3190], + [1, 3, 362], + [0, 363, 364, 138, 4], + [0, -812, -1460, -2177, -3191, -47, -25, -3192, -3193, -46, -3194, -22, -742, -3195, -3196, -3197], + [0, -2392, -2125, -2379, -3198, -3199, -3200, -40, -42, -3201, -3180, -3202, -3203, -3204, -3182], + [1, 3, 366], + [0, 0, 101, 7, 5], + [1, 3, 368], + [0, 369, 370, 371, 5], + [0, -47], + [0, -3189, -22, -3211, -3212, -3188, -3213], + [0, -525, -3214, -3215, -3216, -3217, -25], + [1, 3, 373], + [0, 374, 51, 21, 4], + [0, -3218, -24], + [1, 3, 376], + [0, 377, 378, 379, 5], + [ + 0, -3221, -812, -1496, -3222, -2177, -1442, -2223, -679, -3223, -1044, -3224, -1646, -1783, -1936, -3225, -1864, + -2654, -1125, -1600, -3226, -3227, -3228, -3229, -3230, -3231, -3232, -3233, -3234, -3235, -3236, -3237, -3238, + -3239 + ], + [ + 0, -652, -519, -2392, -2476, -2564, -2162, -2006, -932, -1610, -3240, -2125, -1110, -1942, -2019, -190, -2410, + -3241, -3037, -3242, -3243, -3244, -3245, -3246, -3247, -1603, -3248, -3249, -3250, -3251, -940, -3252, -3253, + -3254 + ], + [0, -3255, -3256, -3257, -856, -3258, -3259, -3260, -3261, -3262, -3161, -898, -3263, -3264, -1599, -3265, -1783], + [1, 3, 381], + [0, 0, 382, 383, 4], + [ + 0, -2832, -2581, -350, -351, -3266, -3267, -3268, -3269, -3136, -3037, -589, -651, -1415, -2127, -2132, -2375, + -2387, -2410 + ], + [0, -775, -3215, -3270, -3271, -3272, -2410, -3273, -3274, -3275, -1644, -3276, -3277], + [1, 3, 385], + [0, 386, 387, 388, 4], + [ + 0, -3278, -3279, -3280, -3281, -3282, -3283, -3284, -3285, -3286, -3287, -3288, -3289, -3290, -3291, -3292, + -3293, -3294, -3295, -3296, -1537, -3297 + ], + [ + 0, -3298, -3299, -3300, -3301, -3302, -3303, -3304, -3305, -3306, -86, -3307, -3308, -3309, -3310, -3311, -3312, + -932, -940, -1344, -1534, -2210, -2410, -3313 + ], + [0, -3314, -488, -856, -3315], + [1, 3, 390], + [0, 391, 0, 392, 9], + [0, -3316, -3317, -3318, -3319, -1123, -3320, -2387], + [0, -3321, -1122, -2006, -3322, -3323, -3324], + [1, 3, 394], + [0, 395, 396, 397, 6], + [0, -2006, -2127, -1967, -23, -3325, -40, -2234, -41, -3326, -3327], + [0, -1415, -932, -2375, -767, -2410, -3136, -3040, -1448, -969, -973, -972], + [0, -3328, -856, -3262, -2006, -3105, -3110], + [1, 3, 399], + [0, 400, 401, 7, 10], + [0, -2177, -983, -3329], + [0, -815, -932, -23, -3330, -426, -2411, -3211, -3331], + [1, 3, 403], + [0, 404, 405, 406, 5], + [0, -24, -3332, -3218], + [0, -23, -46, -3333, -3334, -3219, -3335], + [0, -525, -3220, -3336], + [1, 3, 408], + [0, 139, 51, 21, 10], + [1, 3, 410], + [0, 411, 51, 21, 11], + [0, -24, -3337], + [1, 3, 413], + [0, 414, 415, 21, 4], + [0, -3338, -3197, -24, -3339, -3340], + [0, -23, -3219, -25], + [1, 3, 417], + [0, 139, 101, 21, 5], + [1, 3, 419], + [0, 420, 421, 21, 10], + [0, -2177, -24, -3341, -3342, -3343, -3344], + [0, -1591, -23, -3192, -44, -40, -3345, -3343, -3219], + [1, 3, 423], + [0, 140, 424, 7, 8], + [0, -633, -647, -3346, -2416], + [1, 3, 426], + [0, 427, 428, 7, 4], + [ + 0, -2177, -3347, -3338, -3348, -24, -3342, -3343, -3349, -3350, -3351, -3352, -3353, -3197, -3344, -3354, -3340, + -3355, -3356, -3357, -3358, -3359, -3360, -3361, -3362, -3363, -3364, -3365, -3366, -3367, -3368, -3369, -3370, + -3371, -3372, -3373, -3374, -3375, -3376, -3204, -3377, -3378, -3379, -3380, -3381, -3382, -3383, -3384, -3385, + -3386, -3387, -3388, -3389, -3390, -3391, -3392, -3393, -3394, -3395, -3396, -3397, -3398, -3399, -3400, -3401, + -3402, -3403, -3404, -3405, -3406, -3407 + ], + [0, -23, -46, -3219], + [1, 3, 430], + [0, 431, 51, 7, 4], + [0, -24, -3349, -3408, -3409, -3410, -3411], + [1, 3, 433], + [0, 434, 51, 435, 8], + [0, -3077, -24, -3349, -3412, -3204], + [0, -3413, -2410], + [1, 3, 437], + [0, 438, 439, 7, 4], + [0, -3414, -1591, -3415, -1046, -2234], + [0, -633, -23, -3373, -3204], + [0, 0, 0, 7, 5], + [1, 3, 442], + [0, 443, 0, 7, 5], + [0, -753], + [1, 3, 445], + [0, 446, 51, 7, 4], + [0, -812, -47, -25, -3193, -3194, -22, -3416], + [1, 3, 448], + [0, 449, 450, 7, 6], + [0, -3212, -3188], + [0, -25, -3194, -3211], + [1, 3, 452], + [0, 141, 142, 143, 8], + [1, 3, 454], + [0, 455, 456, 457, 4], + [0, -3442, -1116, -1666, -1969, -2522], + [0, -756, -932, -940, -943, -958, -966, -967, -968, -974, -2250], + [0, -2520, -2905, -3443, -3444, -3445], + [1, 3, 459], + [0, 460, 461, 7, 4], + [ + 0, -3446, -2177, -680, -3447, -910, -1077, -3448, -1863, -479, -3449, -2115, -3450, -3451, -3452, -3453, -3454, + -3455, -3456, -3457, -3458, -3459, -3460, -3461, -3462, -3463, -3464, -3465, -3466 + ], + [0, -1821, -3467, -2269, -3199], + [1, 3, 463], + [0, 464, 465, 466, 4], + [0, -3468, -3469, -195, -196, -197, -682, -1967], + [ + 0, -21, -23, -26, -40, -41, -86, -3307, -3326, -350, -351, -3470, -3471, -3472, -427, -428, -528, -553, -3473, + -932, -962, -969, -970, -1344, -1534, -1942, -2006, -2019, -2127, -3474, -2140, -2174, -2410 + ], + [ + 0, -3475, -2006, -3476, -3160, -3477, -3098, -3478, -3479, -3480, -3481, -3482, -3100, -3483, -3484, -3485, + -3486, -3487 + ], + [1, 3, 468], + [0, 469, 0, 19, 4], + [0, -681, -66, -82], + [1, 3, 471], + [0, 472, 0, 473, 6], + [0, -3493, -2387], + [0, -3494, -3495, -3496, -3264, -3497, -3498, -475, -3499, -3500, -3501, -3095, -3488, -681, -3489], + [1, 3, 475], + [0, 476, 0, 19, 5], + [0, -681, -66, -83, -68, -80, -70], + [1, 3, 478], + [0, 479, 0, 19, 5], + [0, -681, -81, -66, -3502, -83, -68, -80], + [1, 3, 481], + [0, 482, 0, 19, 4], + [0, -681, -81, -66, -3503, -3502, -83, -80], + [1, 3, 484], + [0, 485, 0, 144, 5], + [0, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -65, -3504, -52, -77], + [1, 3, 487], + [0, 488, 0, 144, 4], + [0, -81, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -65, -3504, -52, -77], + [1, 3, 490], + [0, 491, 0, 102, 4], + [0, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -65, -3511, -52, -77], + [1, 3, 493], + [0, 494, 0, 102, 8], + [ + 0, -3512, -73, -74, -62, -71, -79, -72, -80, -70, -63, -3513, -76, -54, -67, -69, -56, -75, -55, -65, -52, + -3514, -77 + ], + [1, 3, 496], + [0, 497, 0, 102, 8], + [0, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -3515, -65, -52, -77], + [1, 3, 499], + [0, 500, 0, 19, 6], + [0, -3516, -681, -3517, -81, -66, -3502, -71, -83, -68, -82, -65], + [1, 3, 502], + [0, 503, 0, 19, 4], + [0, -681, -81, -66, -3502, -71, -83], + [1, 3, 505], + [0, 506, 0, 19, 8], + [0, -3517, -81, -66, -83, -68, -85], + [1, 3, 508], + [0, 509, 0, 59, 6], + [0, -681, -66, -83], + [1, 3, 511], + [0, 512, 0, 145, 11], + [0, -3517, -81, -83, -68, -3519], + [1, 3, 514], + [0, 515, 0, 19, 8], + [0, -681, -66, -83, -82, -65], + [1, 3, 517], + [0, 518, 0, 145, 10], + [0, -3517, -83], + [1, 3, 520], + [0, 521, 0, 19, 4], + [0, -681, -81, -66, -3520, -3503, -80, -64, -3521], + [1, 3, 523], + [0, 524, 0, 19, 10], + [0, -681, -81, -66, -3502, -83, -68, -76], + [1, 3, 526], + [0, 527, 0, 19, 5], + [0, -681, -3517, -81, -66, -3520, -3502, -83, -68, -80, -82, -85, -64], + [1, 3, 529], + [0, 530, 0, 19, 8], + [0, -681, -81, -66, -74, -3502, -83, -68, -70], + [1, 3, 532], + [0, 533, 0, 19, 11], + [0, -681, -3517, -81, -66, -3502, -71, -83, -68, -80, -85, -64], + [1, 3, 535], + [0, 536, 0, 19, 4], + [0, -681, -81, -66, -3512, -3503, -3502, -83, -68, -80, -64], + [1, 3, 538], + [0, 539, 0, 19, 4], + [0, -681, -81, -66, -3520, -3502, -83, -68, -80, -85, -64], + [1, 3, 541], + [0, 542, 0, 19, 4], + [0, -81, -66, -3502, -83, -68], + [1, 3, 544], + [0, 545, 0, 19, 6], + [0, -681, -66, -68, -64], + [1, 3, 547], + [0, 548, 0, 549, 8], + [0, -3493], + [0, -3494, -3495, -3496, -3264, -3497, -3498, -2006, -3159, -3488, -681, -3489], + [1, 3, 551], + [0, 552, 0, 19, 6], + [0, -681, -3517, -81, -66, -3502, -83, -68, -85, -64], + [1, 3, 554], + [0, 555, 0, 19, 11], + [0, -3517, -66, -83, -68], + [1, 3, 557], + [0, 558, 0, 59, 11], + [0, -3517, -3522, -3523, -3524, -3525, -66, -3502, -83, -68, -3526], + [1, 3, 560], + [0, 561, 0, 59, 11], + [0, -66, -83], + [1, 3, 563], + [0, 564, 0, 59, 4], + [0, -3517, -81], + [1, 3, 566], + [0, 567, 0, 568, 4], + [0, -3493, -1549], + [0, -3494, -3495, -3496, -3264, -3497, -3498, -2476, -3527, -3528, -3529, -3488, -681, -3489], + [1, 3, 570], + [0, 571, 0, 59, 4], + [0, -3517, -81, -66, -3503, -3502, -83, -68, -80], + [1, 3, 573], + [0, 574, 575, 146, 5], + [0, -3530, -3531, -3532, -3533, -3534, -3535, -2550], + [0, -3536, -3537, -3149, -3037, -3041, -1077, -3125], + [1, 3, 577], + [0, 578, 0, 147, 5], + [ + 0, -3, -23, -3374, -40, -3538, -3539, -3540, -617, -3541, -674, -679, -714, -719, -755, -3542, -927, -1022, + -1026, -1077, -1107, -1276, -1320, -1349, -1460, -1548, -1577, -3543, -3544, -1610, -1646, -3545, -3546, -3547, + -1863, -3548, -1955, -2177, -2213, -3433, -3549, -2378, -2446, -3550 + ], + [1, 3, 580], + [0, 581, 0, 582, 4], + [0, -3553, -1361], + [0, -3554, -3555, -3161, -997, -3556], + [0, 25, 584], + 1732406400000, + [0, 25, 586], + 1733011200000, + [1, 3, 588], + [0, 589, 590, 148, 9], + [0, -1320], + [ + 0, -21, -23, -40, -3558, -3559, -3560, -2997, -3326, -350, -351, -3561, -3562, -518, -620, -3563, -3564, -699, + -767, -932, -945, -957, -958, -978, -3565, -1110, -1111, -3566, -1320, -3567, -1389, -1412, -1437, -1471, -1473, + -1475, -3568, -1477, -1479, -1481, -3569, -1486, -1547, -1753, -1771, -1889, -1891, -3570, -2125, -2127, -3571, + -3572, -3031, -2195, -2281, -3573, -2334, -3574 + ], + [1, 3, 592], + [0, 0, 0, 593, 4], + [0, -775, -3215], + [1, 3, 595], + [0, 0, 0, 596, 6], + [0, -775, -3579], + [1, 3, 598], + [0, 0, 0, 599, 4], + [0, -775, -3580, -3215], + [1, 3, 601], + [0, 602, 0, 603, 4], + [0, -98, -1931], + [0, -775, -1391, -3581, -3582, -1889, -3583, -3584, -3585], + [1, 3, 605], + [0, 60, 0, 606, 9], + [0, -775, -3586, -3587, -1889, -3583, -3588, -3589, -3590, -3591, -3592], + [1, 3, 608], + [0, 0, 0, 609, 4], + [0, -775, -1931, -3593], + [1, 3, 611], + [0, 612, 613, 149, 5], + [ + 0, -3594, -3595, -3596, -3419, -3597, -3598, -3599, -3600, -3601, -3602, -3603, -3604, -3605, -668, -695, -719, + -812, -3606, -1040, -1107, -3607, -1366, -1394, -1399, -3608, -1566, -3125, -3222, -1640, -1650, -1693, -1959, + -3609, -2177, -3610, -2297, -2400, -3611, -2548, -3612 + ], + [ + 0, -3613, -3614, -3615, -3244, -190, -262, -357, -3035, -3198, -3616, -3617, -3048, -3618, -3619, -3149, -3620, + -3621, -3622, -3623, -3037, -3624, -3199, -3625, -3626, -3627, -3628, -427, -428, -664, -3629, -711, -3630, + -838, -932, -958, -965, -978, -1004, -1077, -3631, -1654, -1689, -1788, -1942, -3632, -2200, -2210, -2211, + -3633, -2359, -2379, -2384, -2402, -2410 + ], + [1, 3, 615], + [0, 616, 617, 618, 4], + [0, -653, -668, -685, -695, -1077, -2375], + [ + 0, -86, -3307, -3048, -3049, -3136, -3637, -3638, -3639, -427, -428, -481, -693, -910, -932, -940, -967, -1344, + -1415, -3640, -1637, -1658, -1847, -1942, -3641, -3642, -2410 + ], + [0, -3643, -856], + [0, 25, 620], + 1730419200000, + [0, 0, 0, 7, 4], + [0, 0, 0, 7, 6], + [0, 0, 0, 7, 11], + [1, 3, 625], + [0, 626, 627, 104, 8], + [ + 0, -3644, -3645, -3646, -3647, -668, -674, -775, -2858, -3648, -3649, -1442, -1548, -1600, -3425, -3650, -3651, + -1608, -3652, -3653, -2161, -2223, -2303, -3654 + ], + [ + 0, -3655, -3656, -3657, -3658, -3659, -3660, -3044, -3661, -3662, -3037, -3663, -3664, -3665, -518, -928, -3666, + -1304, -3667, -3668, -1771, -1889, -1927, -2162, -3669, -2410, -2469 + ], + [1, 3, 629], + [0, 630, 631, 632, 9], + [0, -2387, -2426, -3675, -3676, -3677, -3678, -3679, -3680, -3681], + [0, -2391, -3682, -932, -2469, -1942, -767, -2410, -3037, -3683, -3684, -3664, -3685, -3686, -3687, -3688], + [0, -3689, -3690, -3691, -3692, -3693], + [1, 3, 634], + [0, 75, 635, 636, 4], + [0, -1654, -1942], + [0, -3694, -2414, -1446, -3695, -2402, -3671, -856, -3696], + [1, 3, 638], + [0, 639, 640, 104, 5], + [ + 0, -3697, -3698, -3699, -3700, -3701, -3702, -154, -3703, -3704, -3036, -3705, -3706, -469, -510, -521, -3707, + -668, -865, -1028, -1107, -1304, -1321, -1341, -1442, -1459, -1641, -1645, -1734, -2195, -2205, -2223, -2325, + -3708, -3709, -2488, -2550 + ], + [ + 0, -3710, -3711, -3712, -3660, -3044, -3713, -3037, -3714, -3715, -3041, -427, -428, -528, -928, -932, -972, + -1344, -1534, -1548, -2375, -2379, -2410 + ], + [1, 3, 642], + [0, 643, 644, 104, 6], + [0, -3646, -668, -3648, -3649, -1442, -1548, -1600, -3425, -3650, -3716, -3651, -1608, -3652, -2161, -2223], + [ + 0, -23, -3204, -40, -3659, -3136, -3660, -3044, -3661, -3662, -3717, -3037, -3663, -3718, -3719, -3720, -518, + -528, -928, -3666, -932, -972, -1304, -1415, -3668, -1889, -1927, -1942, -2082, -2375, -2410 + ], + [0, 25, 646], + 1734825600000, + [1, 3, 648], + [0, 649, 650, 651, 4], + [ + 0, -3234, -367, -411, -3721, -617, -668, -686, -724, -3722, -1010, -1028, -1070, -3723, -3724, -1304, -1460, + -1600, -3245, -1601, -3425, -3725, -3726, -1734, -1966, -2162, -3727, -3728, -2231, -2232, -2234, -3729, -2299, + -2446, -3730 + ], + [ + 0, -86, -3307, -3470, -3471, -3731, -3732, -3733, -3734, -3048, -3661, -3662, -3037, -3735, -3736, -3737, -3738, + -3739, -427, -428, -652, -3740, -1077, -1344, -1978, -2080, -2174, -2410 + ], + [0, -3122, -3445, -1334, -3161, -3741, -3742, -3743], + [1, 3, 653], + [0, 654, 655, 656, 10], + [ + 0, -3744, -3745, -3746, -3747, -3748, -3749, -367, -3750, -518, -635, -778, -779, -932, -940, -967, -969, -970, + -1110, -1344, -3751, -1643, -1889, -1908, -1930, -2162, -2163, -2275, -2281, -2282, -3436, -3752, -2335, -2501, + -2503, -2507, -2508 + ], + [0, -3753, -1534], + [0, -3100, -3754, -3755, -3756, -3590, -3551, -3757], + [1, 3, 658], + [0, 659, 660, 661, 9], + [0, -3661, -664, -668, -1551, -1600, -1816, -1951], + [0, -3758, -3035, -3759, -3037, -3760, -1344, -1534, -1942, -2410, -2469], + [0, -891, -3671, -856, -3690, -2410, -3761, -3762], + [1, 3, 663], + [0, 664, 665, 105, 5], + [0, -3341, -44, -3763, -3764, -3765, -3766, -742, -930, -3767, -2231, -3768], + [0, -23, -3769], + [1, 3, 667], + [0, 668, 669, 105, 4], + [0, -160, -3772, -3765, -3773, -3774], + [0, -3775, -2410], + [1, 3, 671], + [0, 672, 673, 7, 5], + [0, -44, -160, -3776, -3765, -3777, -3774], + [0, -3775, -3778, -2006, -2410], + [0, 0, 0, 7, 8], + [1, 3, 676], + [0, 677, 678, 38, 5], + [0, -983], + [ + 0, -652, -1498, -1654, -3779, -932, -1810, -2125, -2127, -2177, -3780, -1942, -2468, -2410, -1772, -3330, -426, + -3781, -2132, -3782, -2139, -428, -3783 + ], + [1, 3, 680], + [0, 0, 0, 681, 5], + [0, -3214, -3784, -932], + [1, 3, 683], + [0, 684, 685, 150, 4], + [ + 0, -3785, -682, -3786, -863, -996, -3787, -3544, -3788, -1610, -1653, -3789, -1848, -2680, -1885, -1955, -1967, + -3790, -2223, -3791, -3792, -3793 + ], + [ + 0, -3794, -3795, -3796, -3035, -3797, -3043, -3798, -3136, -3799, -3800, -3801, -3802, -3037, -3803, -3140, + -3040, -3052, -3804, -3805, -3046, -3806, -3041, -427, -428, -3807, -585, -740, -748, -753, -756, -778, -795, + -915, -2760, -3808, -932, -958, -969, -970, -1067, -1331, -1344, -1415, -1442, -3809, -3810, -1652, -1821, + -1942, -1952, -1992, -2006, -2019, -2024, -2125, -2195, -2214, -2275, -2278, -2375, -2379, -2387, -2410, -3811, + -2435, -2501, -2503, -2505, -2509 + ], + [1, 3, 687], + [0, 688, 689, 151, 4], + [0, -3819], + [0, -41, -409, -3040, -3052, -440, -2006, -2019, -3820, -727], + [1, 3, 691], + [0, 0, 0, 692, 4], + [0, -2651, -3827, -3828, -3829, -3830, -3831, -775, -2162, -3577, -3578, -3832, -3833], + [1, 3, 694], + [0, 0, 0, 695, 9], + [0, -2651, -3827, -3828, -3829, -3834, -3835, -775, -2162, -3577, -3578, -3832, -3833], + [1, 3, 697], + [0, 152, 0, 153, 8], + [1, 3, 699], + [0, 152, 0, 153, 4], + [1, 3, 701], + [0, 0, 702, 703, 6], + [ + 0, -23, -3840, -40, -41, -42, -86, -3307, -190, -195, -3841, -196, -3470, -3842, -3471, -406, -407, -409, -3136, + -3040, -3052, -635, -658, -741, -767, -932, -940, -958, -959, -962, -967, -969, -970, -976, -978, -1110, -1344, + -1415, -1419, -1942, -1952, -2006, -2019, -2125, -2174, -2375, -2379, -2391, -2410, -2411 + ], + [0, -3838, -1064, -2006, -3214, -3839, -3843], + [1, 3, 705], + [0, 106, 154, 706, 9], + [0, -2410, -3161, -3844, -3445, -1818], + [1, 3, 708], + [0, 709, 710, 711, 8], + [0, -3845, -198, -891, -3846], + [ + 0, -3847, -3037, -427, -428, -767, -891, -3848, -932, -933, -935, -940, -958, -962, -967, -1942, -2376, -2379, + -2402, -2410 + ], + [0, -2410, -3161, -891, -3844, -3445], + [1, 3, 713], + [0, 714, 154, 715, 9], + [0, -198, -3849, -3850, -3851, -617, -1465, -2080], + [0, -2410, -3161, -1004, -1818, -3844, -3445], + [1, 3, 717], + [0, 718, 719, 720, 6], + [0, -3852, -3853, -3854, -3855], + [0, -3856], + [0, -1122, -3857, -856, -1599, -3858], + [1, 3, 722], + [0, 723, 724, 725, 5], + [0, -3859, -3860, -3855, -3854], + [0, -3861, -3856], + [0, -858, -1122, -3857, -856, -3862, -1599, -3858], + [1, 3, 727], + [0, 728, 0, 729, 4], + [ + 0, -23, -40, -3863, -3864, -3865, -518, -534, -3866, -753, -767, -778, -779, -1041, -3867, -1643, -1889, -1908, + -3868, -2162, -3869, -2163, -2318, -2437, -2501, -2503 + ], + [0, -2501, -3870, -3871, -3100], + [1, 3, 731], + [0, 732, 733, 155, 6], + [ + 0, -3872, -3873, -3874, -3875, -3876, -3877, -3878, -3879, -3880, -3881, -3882, -3883, -3884, -3885, -3886, + -3887, -3888, -3889 + ], + [0, -3890, -3891, -3892, -3893, -3894, -3895, -3037, -1276, -1435, -2410], + [1, 24, 735], + [0, 25, 736], + 1724872768784, + [1, 3, 738], + [0, 739, 740, 741, 5], + [0, -3896, -1993], + [0, -86, -3307, -3897, -3898, -3470, -3471, -3899, -932, -1344, -1392, -3900, -1534, -1942, -2174, -2469], + [0, -1446, -1942, -3485, -856, -3214], + [1, 3, 743], + [0, 744, 745, 746, 4], + [0, -3901], + [ + 0, -2581, -3902, -3117, -406, -407, -409, -410, -3037, -3040, -3903, -3904, -3905, -3906, -440, -469, -3907, + -470, -3908, -3909, -3910, -3911, -3912, -767, -3913, -3914, -3915, -3916, -3917, -1435, -1449, -2926, -1637, + -3918, -3919, -3920, -1771, -2006, -2019, -2023, -2080, -3921, -3922, -2410, -2924, -3923, -2466, -3924, -2469, + -3612, -2564 + ], + [ + 0, -3925, -3926, -3927, -3928, -2023, -3612, -1435, -3921, -2410, -2564, -3923, -3911, -3916, -3929, -3930, + -3912, -3922, -469, -3931, -3908, -3932, -3933, -3914, -3934 + ], + [1, 3, 748], + [0, 749, 38, 750, 4], + [0, -2426], + [0, -3935, -3936, -3937, -3938, -3939, -3940, -3690], + [1, 3, 752], + [0, 753, 754, 755, 5], + [0, -3941, -3942, -3943, -3819, -1549], + [0, -2125, -2476, -2483], + [0, -2476, -3944, -3945, -3100, -3161, -3160, -3112, -3095, -3098, -3113, -3114], + [1, 3, 757], + [0, 758, 759, 760, 4], + [0, -3763, -229, -807, -1549], + [0, -3946, -2125, -2476, -2483], + [0, -2476, -3944, -3945, -3100, -3161, -3160, -3095, -3098], + [1, 3, 762], + [0, 763, 764, 63, 4], + [0, -3947, -2944, -2900, -3948, -3949, -3950, -2202], + [0, -3951, -3952, -3037, -2410], + [1, 3, 766], + [0, 767, 768, 769, 10], + [0, -2387, -1387, -3978], + [ + 0, -1415, -2162, -668, -999, -2184, -3979, -932, -2127, -1077, -1417, -1942, -2281, -3136, -3037, -3980, -3564, + -3981, -3982, -2284, -3983, -3984, -3985, -2891, -3986, -3987, -3988, -3989, -940, -428, -3990, -351, -3991, + -3992, -427 + ], + [0, -1386, -3161, -3993, -3162, -3994, -3995, -3996, -752, -891, -3997, -3998], + [1, 3, 771], + [0, 0, 156, 157, 4], + [1, 3, 773], + [0, 774, 0, 775, 4], + [0, -4003], + [0, -2410, -727, -1788, -4004, -4005], + [1, 3, 777], + [0, 778, 779, 780, 4], + [0, -2852, -4006, -4007, -4008, -682, -4009], + [0, -4010, -367, -407, -409, -410, -3664, -932, -940, -4011, -1449, -2006, -2019, -2410, -2466, -2469], + [0, -3095, -3098, -4012, -3099, -3161, -3100, -4013, -4014, -3159, -2006, -3160, -4015], + [1, 3, 782], + [0, 783, 784, 107, 4], + [ + 0, -4016, -4017, -4018, -4019, -4020, -237, -3037, -480, -668, -680, -4021, -1119, -4022, -4023, -4024, -4025, + -4026, -1426, -4027, -4028, -4029, -4030, -1427, -4031, -4032, -1639, -1950, -2218 + ], + [0, -4033, -4034, -4035, -4036], + [1, 3, 786], + [0, 787, 0, 7, 4], + [0, -4017, -4046, -4047, -4048, -3037, -3041, -668], + [1, 3, 789], + [0, 790, 791, 792, 6], + [0, -4049, -469, -470, -1548], + [ + 0, -234, -4050, -427, -428, -519, -4051, -932, -940, -958, -967, -1449, -1788, -1942, -2074, -4052, -2125, + -2127, -2130, -2142, -2144, -2234, -2379, -2387, -2402, -2410 + ], + [0, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -3926, -4057, -1463, -4058, -4059, -3999, -4060], + [1, 3, 794], + [0, 795, 796, 797, 5], + [0, -4061, -809, -1548], + [ + 0, -3778, -163, -270, -272, -274, -350, -4062, -351, -3561, -3043, -3136, -3040, -3052, -427, -428, -3807, -748, + -915, -932, -940, -958, -967, -969, -1415, -1419, -1449, -1788, -1942, -2006, -2019, -2125, -2127, -2130, -4063, + -4064, -2142, -2144, -2233, -2375, -2376, -2387, -2402, -2410, -2501, -2503, -2505, -238, -240 + ], + [0, -3118, -4065, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], + [1, 3, 799], + [0, 34, 800, 801, 6], + [ + 0, -4066, -3043, -3136, -4067, -3040, -3062, -427, -428, -3807, -767, -915, -932, -940, -958, -967, -969, -1415, + -1449, -1788, -1942, -2006, -2019, -2040, -2074, -4052, -2125, -2127, -2130, -2142, -2144, -2375, -2387, -2402, + -2410, -238 + ], + [0, -2006, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], + [1, 3, 803], + [0, 804, 805, 7, 4], + [ + 0, -3469, -4068, -4069, -4070, -4071, -4072, -4073, -4074, -4075, -4076, -4077, -4078, -4079, -4080, -4081, + -4082, -4083, -4084, -4085, -4086 + ], + [0, -4087, -3136, -1415, -2125, -2410], + [1, 3, 807], + [0, 808, 809, 810, 9], + [ + 0, -482, -567, -668, -725, -4088, -1107, -4089, -1442, -4090, -1572, -1645, -1650, -4091, -2125, -4092, -4093, + -4094, -4095, -4096, -2347, -2433, -2462, -2463, -4097 + ], + [0, -526, -4098, -555, -558, -756, -808, -1451, -1654, -1788, -4099, -2155, -2210, -2250, -2460], + [0, -2162, -3754, -775, -4100, -856, -3485, -4101], + [1, 3, 812], + [0, 0, 0, 813, 10], + [0, -4102, -4103, -4104], + [1, 3, 815], + [0, 816, 817, 158, 5], + [0, -2900], + [0, -231, -4105, -4106, -1536], + [1, 3, 819], + [0, 820, 28, 821, 6], + [0, -2852, -703, -2037, -4118, -2641, -2400], + [0, -3098, -3099, -3100, -3482, -2634, -1713, -2006, -3160, -4119], + [1, 3, 823], + [0, 108, 28, 824, 8], + [0, -4120, -3098, -4121, -3100, -3482, -2634, -1713, -4122, -2006, -4123, -3160, -4119], + [0, 0, 0, 826, 5], + [0, -3100, -3322, -3482, -2634, -1713, -2006, -4124, -4125], + [1, 3, 828], + [0, 0, 28, 829, 6], + [0, -3098, -3959, -3100, -3482, -4126, -2634, -1713, -2006, -3160, -4119], + [1, 3, 831], + [0, 832, 28, 833, 6], + [0, -2662, -2055], + [0, -3098, -3100, -3482, -2634, -1713, -4127, -4128, -4129, -2006, -3160, -4119], + [1, 3, 835], + [0, 836, 0, 837, 4], + [0, -4130, -257], + [0, -2006, -2634, -1713, -3160, -3098, -4119, -3482, -3100, -707, -4131, -4132, -4133], + [1, 3, 839], + [0, 840, 0, 841, 10], + [0, -703, -786], + [0, -2006, -2634, -1713, -3160, -3482, -3100, -906, -3771, -4134], + [1, 3, 843], + [0, 0, 0, 844, 5], + [0, -2006, -2634, -1713, -3482, -3100, -4124, -3322, -4125], + [1, 3, 846], + [0, 847, 0, 160, 4], + [0, -703, -2029, -1887, -1967, -44, -4135, -4136, -4137, -4138, -2055, -1311, -3024], + [1, 3, 849], + [0, 39, 0, 850, 4], + [0, -2006, -3159, -3119, -1613, -3843], + [1, 3, 852], + [0, 0, 853, 161, 4], + [ + 0, -1415, -2446, -1344, -932, -1548, -753, -2379, -2402, -1942, -589, -21, -533, -2410, -23, -3136, -3738, + -1771, -3044, -50, -86, -3268, -40, -977, -2082, -940, -967, -2405, -42, -262, -4139, -428, -3307, -427, -26, + -36, -35 + ], + [1, 3, 855], + [0, 856, 0, 857, 5], + [0, -4145], + [0, -4146, -1599, -4147, -2006, -2093], + [1, 3, 859], + [0, 860, 861, 862, 10], + [0, -264, -263, -834, -1548, -1645, -2114, -2177, -2231, -2410, -4148, -4149, -4150, -4151, -4152], + [0, -4153, -3044, -3200, -3199, -932, -4154, -4155], + [0, -2410, -3816, -4156, -4157, -4158, -3960, -856, -4159, -4160, -3761, -2127, -4161, -3116, -4162, -4163], + [1, 3, 864], + [0, 0, 865, 162, 4], + [0, -932, -4153, -4164], + [1, 3, 867], + [0, 868, 869, 162, 4], + [0, -469, -4166, -2114, -263], + [0, -932, -4167, -3200, -4153, -4164], + [1, 3, 871], + [0, 0, 872, 873, 5], + [0, -4168, -4169, -4170, -4171, -3037], + [0, -4172, -4173, -4174, -4175, -4176, -4177, -4178, -4179], + [1, 3, 875], + [0, 876, 877, 878, 8], + [0, -267], + [0, -265, -4171, -2400], + [0, -4172, -4173, -4174, -4175, -4176, -4177, -4180, -4181, -3816, -4182, -4183, -4184], + [1, 3, 880], + [0, 0, 881, 882, 4], + [0, -4185, -265, -4171, -3037, -4186], + [0, -4172, -4173, -4174, -4175, -4176, -4177, -4187, -2444], + [1, 3, 884], + [0, 0, 0, 885, 5], + [0, -4188, -3100, -4189, -3110], + [1, 3, 887], + [0, 888, 889, 890, 4], + [0, -4190, -4191, -4192, -4193, -4194, -4195], + [ + 0, -86, -3307, -4196, -4197, -3983, -4198, -3617, -4199, -4200, -3037, -4201, -4202, -4203, -4204, -523, -617, + -720, -754, -767, -796, -4205, -1004, -4206, -4207, -1063, -1116, -1278, -1449, -1729, -3246, -2228, -2229, + -4208, -2291, -2293, -2892, -2410, -2426, -2469, -4209, -2817, -4210, -2501, -4211, -2531 + ], + [0, -2105, -4212, -1334, -1342, -2540, -2533, -4213, -4214, -4215, -4216, -3634], + [1, 3, 892], + [0, 39, 0, 893, 4], + [0, -2006, -3159, -4217, -1613, -3119, -3843], + [1, 3, 895], + [0, 896, 0, 897, 6], + [0, -703, -2825, -2690, -1967, -273, -44], + [0, -2006, -3159, -4217, -1613, -3119, -1510], + [1, 3, 899], + [0, 900, 0, 901, 4], + [0, -703, -786, -2029, -2825, -2690, -1967, -273, -44, -2997, -2055, -4218, -3024], + [0, -2006, -3159, -4217, -1613, -3119], + [1, 3, 903], + [0, 904, 0, 905, 9], + [0, -703, -786, -2825, -2690, -1967, -44, -2575, -2689], + [0, -2006, -3159, -4217, -4219], + [1, 3, 907], + [0, 908, 0, 909, 4], + [0, -44, -2690, -3024, -703, -1967, -2055, -4220], + [0, -2006, -3159, -4217, -4221, -1613, -3119, -4222, -4223, -4224], + [1, 3, 911], + [0, 912, 913, 914, 5], + [ + 0, -4225, -4226, -4227, -4228, -4229, -4230, -4231, -4232, -4233, -682, -712, -4234, -4235, -4236, -1107, -1125, + -4237, -4238, -4239, -4240, -4241, -4242, -2095, -4243, -4244, -4245, -4246, -2400, -2427, -2429, -2501, -4247, + -2650 + ], + [ + 0, -4248, -4249, -4250, -4251, -3040, -3046, -518, -726, -2634, -1906, -2006, -2019, -2083, -2318, -2391, -2410, + -4252, -4253, -4254 + ], + [0, -4147, -856, -1713, -1599], + [1, 3, 916], + [0, 917, 0, 109, 9], + [0, -4255, -4256, -2888, -4257], + [1, 3, 919], + [0, 920, 0, 109, 11], + [0, -2387, -276], + [1, 3, 922], + [0, 923, 0, 109, 5], + [0, -2083, -4262, -2087, -2090, -3649, -4263, -4264, -1292, -2429, -4265, -4266, -4267, -668, -4245, -2427, -2268], + [1, 3, 925], + [0, 926, 927, 928, 5], + [0, -4268, -820, -665, -4269], + [ + 0, -664, -616, -1654, -932, -4270, -2125, -4271, -2379, -1098, -1942, -2410, -3035, -3037, -4272, -595, -964, + -958, -940, -967, -428, -4273, -427, -279, -4274, -4275 + ], + [0, -4276, -4277, -4271, -3634], + [1, 3, 930], + [0, 931, 932, 7, 5], + [ + 0, -4278, -4279, -4280, -281, -4281, -4282, -282, -4283, -4284, -4285, -283, -4286, -4287, -4288, -1315, -4289, + -1582, -1645, -1758, -4290, -1767, -4291, -1770, -1831, -4292, -1957, -4293, -4294, -4295, -2177, -2247, -4296, + -4297 + ], + [0, -4298, -4299, -4300, -589, -4301, -1722, -2319, -2325, -4302], + [1, 3, 934], + [0, 935, 29, 936, 5], + [0, -4282, -4283, -1107, -1645], + [0, -1764, -1776, -4303, -687, -4304, -4305], + [1, 3, 938], + [0, 0, 29, 939, 10], + [0, -1764, -687, -1733], + [1, 3, 941], + [0, 942, 943, 7, 6], + [0, -282, -4283, -4306, -1733, -1957, -2518], + [0, -4298, -4300, -4307, -2319], + [1, 3, 945], + [0, 946, 947, 163, 5], + [ + 0, -4308, -4309, -4310, -1600, -1395, -4311, -4312, -4313, -4314, -4315, -4316, -1550, -4317, -2161, -3649, + -4318, -4319, -1554, -4320, -1603, -4321, -4322, -4323, -3430, -4324, -4325 + ], + [0, -1107, -1654, -674, -2250, -4326, -633, -4327, -2251], + [1, 24, 949], + [0, 25, 950], + 1734998400000, + [1, 3, 952], + [0, 953, 0, 64, 4], + [0, -293], + [1, 3, 955], + [0, 956, 0, 64, 10], + [0, -1787, -2387], + [1, 3, 958], + [0, 959, 0, 64, 4], + [0, -300], + [1, 3, 961], + [0, 962, 963, 64, 5], + [0, -4341, -888, -2387, -2177, -2551, -1645, -910], + [0, -1415, -1787], + [1, 3, 965], + [0, 966, 40, 967, 4], + [0, -2387, -297, -293, -1863, -2654, -2383], + [0, -4332, -4342, -4335, -4340, -4343, -4344], + [1, 3, 969], + [0, 970, 40, 164, 4], + [0, -2387, -297, -2177, -293, -2410], + [1, 3, 972], + [0, 973, 0, 974, 9], + [0, -2387, -297, -299, -293], + [0, -4332, -4336, -4348, -4338, -4339, -4340, -4344], + [1, 3, 976], + [0, 977, 40, 978, 11], + [ + 0, -668, -2387, -1353, -2177, -715, -3187, -1864, -293, -1863, -2654, -23, -832, -1461, -1773, -300, -44, -4341, + -40, -2234, -3766, -4349, -42, -38, -33, -3376, -4350 + ], + [0, -4332, -4335, -4336, -4351, -4352, -4340, -4343, -4344], + [1, 3, 980], + [0, 981, 0, 165, 4], + [0, -2387, -297, -299, -293, -295, -4353], + [1, 3, 983], + [0, 984, 40, 165, 8], + [0, -2387, -297, -2571, -4354, -293, -4355, -295, -4356], + [1, 3, 986], + [0, 987, 40, 64, 9], + [0, -1787, -668, -2387, -2177, -910, -1864, -293, -2551, -4341], + [1, 3, 989], + [0, 990, 991, 76, 4], + [0, -302, -4357, -4358, -4359, -812, -2177], + [ + 0, -4360, -3035, -3621, -3037, -3199, -664, -697, -740, -932, -938, -939, -4361, -1111, -1654, -2210, -2379, + -2410 + ], + [1, 3, 993], + [0, 994, 995, 76, 5], + [0, -4357, -4358, -812, -1111, -1401, -2387], + [ + 0, -3035, -4363, -3044, -3621, -3037, -4364, -4365, -664, -740, -932, -938, -939, -4361, -1548, -1654, -1972, + -2379, -2410 + ], + [1, 3, 997], + [0, 998, 999, 1000, 4], + [ + 0, -480, -483, -4366, -692, -812, -888, -1097, -1366, -1401, -1532, -1645, -2177, -2267, -2297, -2654, -2820, + -2525, -2528 + ], + [ + 0, -3307, -3615, -304, -4360, -4367, -4368, -3268, -3035, -4269, -4369, -3198, -4370, -4363, -3621, -3037, + -4371, -4372, -4373, -4374, -4365, -589, -664, -665, -721, -767, -932, -938, -940, -1344, -1534, -4375, -1654, + -1788, -1942, -2200, -2210, -2379, -2384, -2410 + ], + [0, -4362, -687, -3957, -4376, -3215, -4377, -4378], + [1, 3, 1002], + [0, 1003, 1004, 1005, 6], + [0, -303], + [ + 0, -3307, -3615, -4367, -4368, -3035, -3621, -3037, -664, -721, -932, -938, -940, -1344, -1534, -1654, -4362, + -1942, -2200, -2379, -2410 + ], + [0, -4379], + [1, 3, 1007], + [0, 1008, 1009, 1010, 4], + [0, -3704, -4380, -4381, -4382], + [0, -4383, -4384, -4385, -4386, -4387, -3037, -3664, -928, -1037, -1107, -1722, -1942, -4388, -2410, -2426, -2469], + [0, -4389, -1105, -3691, -4390], + [1, 3, 1012], + [0, 1013, 0, 65, 4], + [ + 0, -4391, -4392, -4393, -4394, -4395, -4396, -4397, -4398, -4399, -4400, -4401, -4402, -4403, -4404, -4405, + -4406, -4407, -4408, -4409, -4410, -4411, -4412, -4413, -4414, -4415, -4416, -4417, -4418, -4419, -4420, -4421, + -4422, -4423, -4424, -4425, -4426, -4427, -4428, -4429, -4430, -4431, -4432, -4433, -4434, -4435, -4436, -4437, + -4438, -4439, -4440, -4441, -4442, -4443, -4444, -4445, -4446, -4447, -4448, -4449, -4450, -4451, -4452, -4453, + -4454, -4455, -4456, -4457, -4458, -4459, -4460, -4461, -4462, -4463, -4464, -4465, -4466, -4467, -4468, -4469, + -4470, -4471, -4472, -4473, -4474, -4475, -4476, -4477, -4478, -4479, -4480, -4481, -4482, -4483, -4484, -4485, + -4486, -4487, -4488, -4489, -4490, -4491, -4492, -4493, -4494, -4495, -4496, -4497, -4498, -4499, -4500, -4501, + -4502, -4503, -4504, -4505, -4506, -4507, -4508, -4509, -4510, -4511, -4512, -4513, -4514, -4515, -4516, -4517, + -4518, -4519, -4520, -4521, -4522, -4523, -4524, -4525, -4526, -4527, -4528, -4529, -4530, -4531, -4532, -4533, + -4534, -4535, -4536, -4537, -4538, -4539, -4540, -4541, -4542, -4543, -4544, -4545, -4546, -4547, -4548, -4549, + -4550, -4551, -4552, -4553, -4554, -4555, -4556, -4557, -4558, -4559, -4560, -4561, -4562, -4563, -4564, -4565, + -4566, -4567, -4568, -4569, -4570, -4571, -4572, -4573, -4574, -4575, -4576, -4577, -4578, -4579, -4580, -4581, + -4582, -4583, -4584, -4585, -4586, -4587, -4588, -4589 + ], + [1, 3, 1015], + [0, 1016, 1017, 65, 5], + [0, -4595, -4596, -712], + [0, -4597, -2391], + [1, 3, 1019], + [0, 0, 1020, 65, 8], + [0, -21, -23, -40, -1026, -1168, -1171, -1184, -1187, -1226, -4598, -4599, -2125, -2281, -2282, -2303], + [1, 3, 1022], + [0, 0, 1023, 65, 8], + [0, -21, -23, -40, -1168, -1171, -1184, -1226, -2125, -2281, -2282], + [1, 3, 1025], + [0, 0, 0, 1026, 4], + [0, -4600, -4601, -4602, -3578, -3445, -743], + [1, 3, 1028], + [0, 1029, 0, 1030, 4], + [0, -4603, -4604, -310, -4605, -4606, -4607, -4608, -4609], + [0, -4600, -4601, -4602, -3578, -3445, -4610, -2105], + [1, 3, 1032], + [0, 1033, 0, 1034, 5], + [0, -4611, -1640, -4612, -4605, -310, -4613, -4614, -311, -313, -4615], + [0, -4600, -4601, -4602, -3578, -3445, -4616], + [1, 3, 1036], + [0, 1037, 0, 1038, 4], + [0, -1640, -4617, -4614], + [0, -4600, -4601, -4602, -3578, -3445, -4616, -2178, -4618], + [1, 3, 1040], + [0, 1041, 1042, 1043, 4], + [0, -4619, -523, -617, -668, -1004, -1122, -1123, -1336, -1343, -1439, -1548, -1993, -4620, -3122, -4621], + [ + 0, -21, -23, -40, -4622, -3035, -4269, -3617, -4623, -3044, -3621, -4624, -3037, -4625, -4372, -3625, -4626, + -427, -428, -664, -665, -4627, -749, -932, -934, -935, -940, -948, -4628, -958, -964, -1654, -1722, -1788, + -1942, -1972, -2125, -2210, -2211, -2234, -2392, -2410 + ], + [0, -4629, -4630, -3214, -4631, -3634, -4632], + [0, 0, 0, 7, 10], + [1, 3, 1046], + [0, 1047, 0, 1048, 6], + [0, -1851], + [0, -4125, -4633, -2006, -2476, -2299, -4634, -2410, -3214, -3100, -3445, -1109, -3160, -1062, -3122], + [1, 3, 1050], + [0, 1051, 1052, 7, 4], + [0, -4635, -4636, -4637, -4638, -4639, -4640, -4641, -4642, -4643, -4644, -4645], + [ + 0, -3035, -3621, -664, -778, -925, -1471, -1475, -1479, -1480, -1482, -1483, -1654, -2125, -3047, -2275, -2402, + -2410, -2501 + ], + [1, 3, 1054], + [0, 0, 1055, 1056, 4], + [ + 0, -3983, -4646, -351, -3266, -406, -407, -4647, -3037, -4648, -784, -932, -4649, -4650, -4651, -4652, -1110, + -1449, -1889, -1891, -1942, -4653, -4654, -2091, -4655, -4656, -2127, -2132, -2142, -2286, -2379, -2387, -2392, + -2402, -4657, -2405, -4658, -4659, -4660, -4661, -4662, -2410, -4663, -2468, -4664 + ], + [ + 0, -4665, -4666, -4667, -4668, -4669, -775, -3099, -4189, -4670, -4671, -856, -4672, -4673, -3264, -4674, -4675, + -4676, -3214, -4677, -4678, -4679, -4680, -4681, -4682, -4683, -2410, -4684, -2257, -4685, -2006, -3322 + ], + [1, 3, 1058], + [0, 1059, 1060, 7, 4], + [0, -4686], + [ + 0, -4687, -4688, -4689, -4690, -528, -4691, -824, -4692, -957, -1077, -4693, -1168, -1174, -1197, -1212, -1244, + -1251, -4694, -4695, -1632, -1839, -4696, -4697, -2347, -2410, -4698 + ], + [1, 3, 1062], + [0, 1063, 1064, 1065, 8], + [ + 0, -469, -864, -2359, -4699, -1107, -2162, -510, -4700, -4701, -2550, -932, -2125, -2177, -2334, -2536, -1004, + -4702, -4703, -571, -679, -867, -1376, -1942, -2199, -715, -4704, -4705, -633, -4706, -1354, -1633, -1729, -23, + -1793, -4707, -47, -4708, -25, -305, -2232, -4709, -46, -4710, -2104, -2433, -3194, -4711, -40, -4712, -4713, + -41, -4714, -960, -2082, -32, -4715, -1458, -4716, -3077, -42, -4717, -4718, -4719, -3408, -4720, -3362, -4721, + -3398 + ], + [0, -2322, -4722, -2234], + [0, -4723, -3116, -687, -3161, -3577, -4724, -3162, -4725, -3445, -4726, -4727, -4728, -3205, -4729, -4730, -3186], + [1, 3, 1067], + [0, 0, 1068, 1069, 9], + [0, -932, -3469, -4731, -4732, -4733, -4734, -4735, -768, -769, -4736, -1077, -1387, -4737, -2654, -4738], + [0, -4739, -3161, -4740, -3843, -4741], + [1, 3, 1071], + [0, 1072, 1073, 1074, 9], + [0, -1983, -1436, -4742, -4743, -1416], + [ + 0, -1344, -2006, -2344, -932, -2127, -795, -2501, -1942, -4744, -2019, -2257, -2410, -3136, -3037, -3040, -4745, + -4746, -2046, -4747, -4748, -86, -4749, -3052, -2044, -4750, -2132, -4751, -1352, -969, -933, -958, -2140, + -4752, -4753, -4754, -4755, -409, -940, -962, -967, -350, -4756, -4757, -2113, -3267, -4758, -407, -428, -970, + -4759, -4760, -4761, -351, -4762, -410, -4763, -2413, -3307, -935, -4764, -427, -3474, -4765, -3394 + ], + [0, -2006, -2344, -4766, -4767, -4768, -4769, -4770, -4771, -3100], + [1, 3, 1076], + [0, 1077, 1078, 1079, 5], + [0, -3117, -3901, -1359, -2074, -2079, -2112], + [ + 0, -2832, -23, -3341, -262, -4772, -4773, -4774, -406, -409, -4775, -410, -4776, -4777, -3705, -4778, -3037, + -4779, -3040, -3052, -3041, -427, -428, -523, -928, -4780, -932, -940, -941, -956, -958, -962, -967, -969, -970, + -1077, -1384, -1449, -1459, -1683, -1729, -1942, -1984, -2006, -2019, -2125, -2214, -2387, -2391, -2392, -2410, + -2924, -3924, -2469, -2550 + ], + [0, -2074, -2006, -4781, -3481, -4782, -4783, -1359, -1361, -4784], + [1, 3, 1081], + [0, 1082, 1083, 1084, 4], + [0, -4785, -4786, -989, -4787, -4788, -1588, -1864], + [0, -4062, -351, -4789, -4790, -2127, -2231, -2234, -2410], + [0, -2127, -3862, -1764, -3209, -4791, -4792], + [1, 3, 1086], + [0, 1087, 1088, 1089, 10], + [0, -4785, -3200, -823, -4793, -2114], + [0, -23, -3412, -3326, -350, -4062, -922, -2127, -2231, -4794], + [0, -2127, -3862, -4795, -1764, -3209], + [1, 3, 1091], + [0, 1092, 1093, 1094, 4], + [ + 0, -653, -2359, -754, -2466, -668, -1111, -1650, -1872, -928, -1004, -4796, -1306, -2223, -679, -4797, -4798, + -4799, -4800, -1461, -4801, -4802, -4803, -4804, -263, -4805, -4806, -4807, -440, -4808, -264, -262, -4149 + ], + [ + 0, -4809, -2446, -2006, -932, -2125, -4810, -2469, -1942, -2019, -3628, -2410, -4198, -3037, -3738, -1534, + -3040, -3041, -1772, -4811, -3617, -3052, -2174, -2278, -4812, -969, -940, -962, -967, -428, -970, -1945, -4813, + -427, -4814 + ], + [0, -4810, -4158, -4165, -3816, -4815, -3960, -856], + [1, 3, 1096], + [0, 1097, 1098, 1099, 5], + [ + 0, -2921, -4816, -4817, -1085, -3649, -4818, -1699, -2476, -4819, -4820, -4821, -4822, -4823, -4824, -4825, + -4826, -4827, -4828, -4829, -4830, -4831, -4832, -4833, -4834 + ], + [ + 0, -4835, -3983, -4836, -4837, -3250, -4838, -1313, -1449, -2006, -4839, -2318, -2466, -4840, -4841, -2469, + -4842, -4843, -4844, -4845 + ], + [0, -3095, -856, -3438, -4846, -4679, -4847, -2476, -3944], + [1, 3, 1101], + [0, 1102, 1103, 1104, 4], + [0, -4848, -3649, -4825, -4827, -4843], + [0, -4849, -4850, -4851, -1030, -2466, -2469, -2548, -353, -4842], + [0, -3690, -856, -1030, -3438, -4847], + [1, 3, 1106], + [0, 1107, 1108, 1109, 4], + [0, -4852, -4853, -4854, -823, -2792, -4855], + [ + 0, -4856, -4857, -4858, -4859, -4860, -4861, -3035, -3617, -4862, -3621, -523, -617, -652, -767, -1004, -1323, + -1654, -4863, -1970, -2253, -2379, -2410 + ], + [ + 0, -4864, -4865, -4866, -4867, -4868, -4869, -4870, -4871, -4872, -4043, -3160, -3100, -475, -2006, -2476, + -3440, -4873, -4004, -3634 + ], + [1, 3, 1111], + [0, 1112, 1113, 1114, 10], + [0, -4852, -4853, -4854, -4874, -823, -4855], + [0, -4856, -3621, -4875, -4876, -4877, -4878, -4879, -523, -652, -767, -1654, -4863, -4880, -2253, -4881], + [ + 0, -4864, -4865, -4866, -4867, -4868, -4869, -4870, -4871, -4872, -4043, -3160, -3100, -3440, -4873, -4004, + -3634, -4881, -4882, -4883 + ], + [1, 3, 1116], + [0, 1117, 1118, 7, 4], + [0, -4884], + [0, -4885, -4886, -4887, -4888, -4889, -928, -1344, -1449, -1534, -1654, -1788, -1942], + [1, 3, 1120], + [0, 1121, 1122, 1123, 4], + [0, -2006, -2019, -3654, -261, -4890, -4891, -4892], + [ + 0, -2466, -2006, -2361, -1885, -4893, -2019, -3517, -2410, -4228, -2089, -3040, -4894, -3523, -3649, -2795, + -1606, -4785, -3525, -2085 + ], + [ + 0, -3671, -856, -2257, -4895, -4896, -4897, -4898, -1599, -4899, -4900, -4901, -3095, -3098, -2006, -2476, -475, + -2299, -4902 + ], + [1, 3, 1125], + [0, 1126, 1127, 110, 6], + [ + 0, -4903, -4904, -3165, -4905, -44, -3946, -195, -4906, -196, -197, -4907, -4908, -4909, -4910, -4911, -4912, + -595, -4913, -682, -747, -809, -4914, -4915, -4916, -4917, -4918, -4919, -4920, -4921, -4922, -4923, -4924, + -3123, -4925, -4926, -4927, -4928, -4929, -4930, -4931, -4932, -4933, -4934, -4935, -4936, -4937, -4938, -2002, + -4939, -4940, -4941, -4942, -4943, -2003, -4944, -4945, -4946, -4947, -2004, -2013, -4948, -4949, -4950, -2053, + -4951, -2344, -2345 + ], + [ + 0, -3139, -23, -4952, -4953, -162, -3778, -4954, -4955, -4773, -3562, -4757, -4762, -4763, -4754, -4956, -4957, + -4958, -4749, -4760, -4959, -406, -407, -409, -410, -4960, -3136, -4961, -4962, -4963, -4964, -3044, -3803, + -4965, -4966, -3040, -4967, -3087, -3052, -4968, -4969, -4970, -4971, -4972, -427, -428, -4973, -4974, -4975, + -534, -4976, -668, -674, -767, -4977, -881, -4978, -3808, -932, -933, -940, -948, -952, -958, -959, -962, -963, + -969, -970, -4756, -978, -1026, -4979, -1077, -1103, -1107, -1339, -1344, -1352, -1359, -1360, -1376, -1404, + -1415, -4980, -1416, -1419, -1421, -4981, -4982, -1437, -1449, -4983, -3134, -1534, -1548, -4984, -1662, -1805, + -1942, -1943, -1950, -1955, -1959, -1983, -4985, -4986, -4987, -2006, -2012, -2016, -2017, -2019, -3051, -4988, + -4989, -4990, -4991, -2044, -4992, -4993, -2093, -2094, -4994, -4995, -4996, -2177, -2205, -2214, -2281, -4997, + -4998, -2282, -4999, -5000, -2334, -2379, -2402, -2410, -5001, -2502, -5002, -5003 + ], + [1, 3, 1129], + [0, 1130, 166, 111, 4], + [0, -5004, -5005, -5006, -5007, -2741, -5008, -1085, -1548, -5009, -5010, -2355, -2446], + [1, 3, 1132], + [0, 1133, 166, 111, 5], + [0, -5004, -5005], + [1, 3, 1135], + [0, 1136, 1137, 111, 4], + [0, -5006, -5007, -2741, -5008, -5025, -1085, -1343, -1548, -5026, -1729, -5009, -5027, -5010, -2355, -2446], + [ + 0, -5028, -3044, -3037, -5011, -3738, -519, -865, -1771, -1942, -5012, -2376, -2379, -5013, -2388, -2389, -2410, + -2501, -2503, -2509 + ], + [1, 3, 1139], + [0, 1140, 1141, 1142, 6], + [0, -1110], + [0, -50, -5029, -5030, -932, -940, -965, -975, -2299, -2410, -2411], + [0, -932, -727, -5031, -2299], + [1, 3, 1144], + [0, 1145, 1146, 1147, 5], + [0, -3117, -5032, -5033, -461, -743, -5034, -5035, -1496, -1588, -5036, -5037, -3169, -2213], + [0, -5038, -3983, -365, -5039, -3037, -3172, -5040, -2127, -2299, -2301, -2410, -2466, -2469], + [0, -3161, -5041, -2299, -3176, -2466], + [1, 3, 1149], + [0, 1150, 1151, 1152, 5], + [0, -5042, -2814, -823, -1588, -5043], + [0, -2162, -2466, -2299, -3198], + [0, -5044, -5045, -2466, -2299], + [1, 3, 1154], + [0, 1155, 1156, 1157, 5], + [0, -23, -5046, -40, -41, -42, -2699, -5047, -5048], + [0, -534, -1626, -2437, -2501], + [0, -5049, -3839, -2006, -2501, -5050], + [1, 3, 1159], + [0, 1160, 1161, 1162, 5], + [0, -5051, -5052], + [0, -5053, -5054, -767, -2410], + [0, -5055, -5056, -525, -2410, -5057, -2501, -5058], + [1, 3, 1164], + [0, 1165, 1166, 1167, 5], + [0, -620, -2997], + [ + 0, -1107, -1168, -1415, -2162, -2125, -1889, -1942, -749, -1248, -2281, -1232, -2410, -3037, -518, -1238, -1930, + -2285, -5059, -5060, -5061, -5062 + ], + [0, -3754, -3098, -4902, -5063, -5064, -3482, -4012, -3160, -3100], + [1, 3, 1169], + [0, 0, 37, 1170, 10], + [ + 0, -5065, -5066, -5067, -5068, -5069, -5070, -5071, -3100, -2410, -3214, -5072, -5073, -5074, -5075, -5076, + -5077, -5078, -5079, -5080, -5081, -5082, -5083, -5084 + ], + [1, 3, 1172], + [0, 141, 142, 143, 4], + [1, 3, 1174], + [0, 1175, 1176, 1177, 9], + [0, -44, -737, -2387], + [ + 0, -23, -38, -40, -42, -3244, -190, -3983, -3326, -350, -351, -3561, -3266, -5085, -3037, -427, -428, -539, + -932, -940, -5086, -5087, -5088, -5089, -1772, -1942, -2127, -5090, -2200, -5091, -2410 + ], + [0, -5092, -3264, -5093, -5094, -3214, -5095, -3839, -2410], + [1, 3, 1179], + [0, 167, 1180, 7, 4], + [0, -409, -4775, -3040, -3052, -440, -757, -1772, -2006, -2019, -2965, -5097, -5098], + [1, 3, 1182], + [0, 167, 1183, 1184, 5], + [0, -2299, -2300, -3170, -975, -5099, -428, -5098, -365], + [0, -5100, -5101, -2299], + [1, 3, 1186], + [0, 1187, 1188, 1189, 4], + [0, -5102], + [ + 0, -5103, -3136, -427, -5104, -932, -936, -5105, -940, -967, -968, -1415, -1419, -1441, -1446, -1637, -2375, + -2376, -2410 + ], + [0, -5106, -5107, -5108, -5109, -5110, -3100, -3323, -3105], + [1, 3, 1191], + [0, 1192, 1193, 1194, 5], + [0, -44, -406], + [0, -795, -2410, -5111, -1771], + [0, -3634, -795, -3160, -5092, -4868, -5112, -4867, -4866], + [1, 3, 1196], + [0, 1197, 1198, 1199, 4], + [0, -4984, -5113, -1863, -1950, -44, -22, -5114, -5115], + [0, -1449, -2410, -5111, -635, -658, -5116, -407, -5117, -5118], + [0, -3634, -3160, -5092, -1449, -5119, -4868, -5112, -4867, -4866], + [1, 3, 1201], + [0, 1202, 1203, 1204, 4], + [0, -5120, -5113, -2745, -1863, -28, -5115], + [0, -1449, -1001, -2127, -2469, -2410, -5111, -5121, -1950, -5122, -350, -5117, -5123], + [0, -3634, -5092, -1415, -1449], + [1, 3, 1206], + [0, 1207, 1208, 1209, 10], + [0, -668, -5120, -1418, -1950, -5124], + [ + 0, -1415, -1344, -2006, -932, -1942, -21, -720, -2410, -23, -3136, -3040, -1952, -2034, -44, -2174, -3141, + -2052, -5125, -796, -3081, -3153, -3156, -5126 + ], + [0, -3634, -5127, -1415, -2034], + [1, 3, 1211], + [0, 39, 1212, 1213, 5], + [0, -406, -407, -3040, -3052, -668, -5128, -1418, -5111, -1772, -2006, -2019, -2125, -2410], + [0, -3634, -2006, -3160, -5092, -1449, -5119, -4868, -5112, -4867, -4866], + [1, 3, 1215], + [0, 0, 1216, 1217, 4], + [ + 0, -1392, -1449, -2006, -1001, -928, -2379, -5129, -2019, -2745, -2410, -5111, -3040, -5116, -5130, -5089, + -5131, -5087, -5132, -406, -5133, -5086, -409, -5134, -5088, -407, -5135, -5136, -3626, -948, -5137 + ], + [0, -5138, -5139, -2006, -3634], + [1, 3, 1219], + [0, 1220, 0, 1221, 6], + [0, -4603, -5140, -412, -417, -418, -419, -420], + [0, -5141, -3122, -3445, -1334, -3161, -3690], + [1, 3, 1223], + [0, 0, 0, 1224, 9], + [0, -5141, -4601, -4602, -3578, -3445, -743], + [1, 3, 1226], + [0, 0, 0, 1227, 11], + [0, -5141, -4601, -4602, -3578, -3445, -5142, -743], + [1, 3, 1229], + [0, 1230, 1231, 168, 4], + [0, -5143], + [0, -652, -2392, -1344, -2410, -3037, -411, -2581, -86, -5144, -3307], + [1, 3, 1233], + [0, 0, 0, 1234, 6], + [0, -5141, -4601, -4602, -3578, -3445, -990], + [1, 3, 1236], + [0, 0, 0, 1237, 9], + [0, -5141, -4601, -4602, -3578, -3445, -5145, -5146, -5147], + [1, 3, 1239], + [0, 1240, 0, 1241, 4], + [0, -416], + [0, -5141, -4601, -4602, -3578, -3445, -5148, -1389, -5149, -5150], + [1, 3, 1243], + [0, 1244, 0, 1245, 6], + [0, -4603, -5151, -422, -423], + [0, -5141, -4601, -4602, -3578, -3445, -4610, -2105], + [1, 3, 1247], + [0, 1248, 0, 1249, 4], + [0, -5143, -1640, -5152, -412, -413, -2701, -418, -421], + [0, -5141, -4601, -4602, -3578, -3445, -4616], + [1, 3, 1251], + [0, 169, 0, 1252, 8], + [0, -5141, -4601, -4602, -3578, -3445, -3122], + [1, 3, 1254], + [0, 1255, 0, 1256, 5], + [0, -1640, -415, -5153], + [0, -5141, -4601, -4602, -3578, -3445, -4616, -2178, -4618], + [1, 3, 1258], + [0, 1259, 0, 1260, 9], + [0, -1640, -5153], + [0, -5141, -4601, -4602, -3578, -3445, -4610, -2105, -2401, -3214], + [1, 3, 1262], + [0, 0, 0, 1263, 6], + [0, -5141, -4601, -4602, -3578, -3445, -4610, -2105, -2435, -5154, -5101], + [1, 3, 1265], + [0, 0, 0, 77, 5], + [1, 3, 1267], + [0, 1268, 0, 1269, 9], + [0, -5190, -5191, -5192, -5193, -2387], + [0, -5194, -5195, -3445, -5196, -5197, -3690], + [1, 3, 1271], + [0, 1272, 1273, 1274, 11], + [0, -1353, -5198, -5199, -429, -5200, -5201, -5202, -3331], + [0, -469, -1610, -2469, -1942, -5203, -4251, -3040, -1605, -5204, -2429, -4049, -3664, -1618, -5205, -5206, -5207], + [0, -932, -5208, -3784, -2410], + [1, 3, 1276], + [0, 1277, 112, 1278, 6], + [0, -812, -3782, -5202, -3331, -5209], + [0, -3272, -3217, -3214, -2410, -3215, -4132, -932], + [1, 3, 1280], + [0, 1281, 112, 1282, 5], + [0, -3782, -189, -3331, -5209], + [0, -932, -2410, -5210], + [1, 3, 1284], + [0, 1285, 1286, 1287, 8], + [ + 0, -161, -163, -5211, -682, -5212, -5213, -906, -5214, -5215, -1311, -1548, -5216, -1666, -1967, -5217, -4922, + -5218, -4929, -4934, -2002, -2004, -2030, -4991, -2055, -2113, -2192, -2489, -5219 + ], + [ + 0, -21, -23, -26, -33, -38, -39, -40, -41, -42, -86, -3307, -407, -409, -3059, -5220, -3044, -5221, -3040, + -3052, -427, -428, -5222, -5223, -523, -528, -533, -534, -5224, -540, -5225, -5226, -720, -5227, -778, -796, + -915, -916, -2760, -932, -969, -970, -1041, -1077, -1331, -1344, -1415, -5228, -4981, -5229, -1534, -1643, + -1667, -1814, -1942, -2000, -2006, -2019, -2049, -2052, -2251, -2275, -2281, -3085, -5230, -5231, -5232, -2410, + -2417, -2437, -2501, -2502, -2503 + ], + [0, -2006, -3159, -3095, -3098, -3100, -5233], + [1, 3, 1289], + [0, 1290, 0, 170, 5], + [ + 0, -703, -1436, -1548, -1699, -5234, -2650, -5235, -5236, -5237, -5238, -5239, -1320, -5240, -5241, -5242, + -5243, -5244, -5245 + ], + [1, 3, 1292], + [0, 171, 0, 1293, 5], + [ + 0, -5248, -5249, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, + -3577, -3100 + ], + [1, 3, 1295], + [0, 1296, 0, 1297, 4], + [0, -5254], + [ + 0, -3167, -5255, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, + -3577, -3100 + ], + [1, 3, 1299], + [0, 171, 0, 1300, 4], + [ + 0, -3962, -5256, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, + -3577, -3100 + ], + [1, 3, 1302], + [0, 1303, 0, 1304, 8], + [0, -5257, -436], + [ + 0, -5258, -5259, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, + -3577, -3100 + ], + [1, 3, 1306], + [0, 0, 0, 1307, 6], + [ + 0, -5260, -5261, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, + -3577, -3100 + ], + [1, 3, 1309], + [0, 1310, 1311, 1312, 5], + [0, -1983, -754, -1004, -2401, -724, -5262, -5263, -5264, -5265, -442], + [ + 0, -1415, -2177, -2375, -2293, -533, -2410, -23, -4198, -3136, -3037, -5266, -2581, -3617, -5267, -4203, -3732, + -3697 + ], + [0, -5268, -3100, -5269, -5270, -5271, -3441, -5272], + [1, 3, 1314], + [0, 1315, 1316, 1317, 4], + [0, -5273, -5274, -5275, -5276, -5277, -5278, -5279, -5280], + [ + 0, -2384, -2392, -2391, -2466, -1344, -932, -2125, -5281, -2469, -928, -1889, -2910, -2281, -1747, -1874, -5282, + -2214, -2302, -2410, -3037, -1534, -1771, -3040, -5283, -5284, -2581, -5285, -5286, -2284, -5287, -5288, -5289, + -2411, -5290, -3664, -5291, -2832, -5292, -5293, -2282, -5294, -2970, -5295, -5296, -5297, -4999 + ], + [ + 0, -5065, -5298, -5299, -5300, -5301, -5302, -5303, -5304, -5305, -5067, -5306, -5307, -5308, -5309, -5310, + -5069, -5311, -3100, -2410, -5312, -5313, -5314, -5315, -5316, -5072, -5073, -5074, -5317, -5318, -5083 + ], + [1, 3, 1319], + [0, 1320, 1321, 1322, 5], + [0, -753, -2314, -23, -635, -1588, -40, -2082, -5319, -3343, -3344, -3370, -3377], + [0, -4787, -2466, -461, -2892, -1863], + [0, -3100, -2466, -5044, -439], + [1, 3, 1324], + [0, 1325, 1326, 1327, 6], + [0, -23, -5320, -5321, -5322, -4776, -2041], + [0, -5323, -2006, -2019, -2923, -2892], + [0, -525, -5324, -2006, -2041, -2466, -5044], + [1, 3, 1329], + [0, 1330, 1331, 1332, 5], + [0, -429, -1026, -2411, -2478], + [0, -5325, -3037, -932, -980, -999, -5326, -1942, -2392, -2410, -2469, -2476], + [0, -2476, -5327, -5328, -932, -2410], + [1, 3, 1334], + [0, 1335, 1336, 1337, 10], + [0, -469, -470, -5329, -1335, -5330, -1851, -3122, -2187, -5331, -3434, -2548], + [0, -1004, -1654, -2250, -2293], + [0, -1004, -3438, -4847, -856], + [1, 3, 1339], + [0, 1340, 1341, 113, 5], + [ + 0, -5332, -5333, -3562, -367, -5334, -4251, -5335, -5336, -5337, -5338, -682, -5339, -5340, -747, -823, -5341, + -909, -5342, -5343, -5344, -3649, -2766, -1286, -1289, -1292, -5345, -1315, -1329, -5346, -1442, -1571, -5347, + -5348, -1779, -1878, -4130, -5349, -1955, -2000, -4930, -4942, -2003, -4944, -2004, -2013, -2965, -2028, -5350, + -5351, -2084, -5352, -2090, -5353, -4242, -2095, -2098, -2101, -2162, -3728, -5354, -5355, -2427, -2429, -5356, + -2435, -5357, -5358, -5359 + ], + [ + 0, -86, -3307, -3659, -5360, -5361, -3660, -5362, -3037, -5363, -3803, -3040, -3087, -3052, -5364, -5365, -5366, + -932, -4597, -1026, -1031, -5367, -5368, -1344, -1534, -1942, -1944, -1945, -2006, -2019, -2281, -2379, -2410, + -2469, -5369, -5370 + ], + [0, 0, 0, 7, 9], + [1, 3, 1344], + [0, 0, 1345, 1346, 4], + [0, -3037, -427, -428, -932, -934, -958, -2125, -2127, -2142, -2410], + [0, -3445, -5373, -5374, -5375, -5376, -5377, -5378], + [1, 3, 1348], + [0, 1349, 1350, 1351, 4], + [0, -5379], + [ + 0, -23, -3204, -40, -43, -5380, -5381, -3621, -3037, -507, -708, -5382, -932, -1471, -1475, -1476, -1479, -5383, + -1480, -1482, -1486, -1654, -1771, -1788, -1810, -2125, -2127, -2128, -5384, -2131, -2137, -2139, -2141, -5385, + -2379, -5386, -2410 + ], + [0, -5387, -5388, -5389, -997, -5390, -5391, -5392, -5393, -5394, -5395, -5396], + [1, 3, 1353], + [0, 1354, 172, 1355, 5], + [0, -1641, -5397], + [0, -5398, -5399, -5400, -459], + [1, 3, 1357], + [0, 1358, 114, 1359, 5], + [0, -510, -615, -1548, -1671, -2071], + [0, -5401, -460, -3578], + [1, 3, 1361], + [0, 1362, 0, 7, 10], + [0, -461], + [1, 3, 1364], + [0, 1365, 1366, 1367, 8], + [0, -523, -668, -719, -1039, -1077, -1376, -1816, -5402, -2205], + [ + 0, -350, -4062, -351, -3266, -5403, -3048, -5404, -3049, -3037, -2125, -2127, -4063, -5405, -2142, -5232, -2387, + -2388, -2410 + ], + [0, -687, -463, -2476, -2006, -5406, -5407, -2410, -3967], + [1, 3, 1369], + [0, 0, 1370, 1371, 4], + [0, -664, -1351, -1654, -1942, -2125], + [0, -5408, -1636, -5409, -2432], + [1, 3, 1373], + [0, 0, 27, 1374, 5], + [0, -5410, -465, -5411, -5412, -5413], + [1, 3, 1376], + [0, 1377, 1378, 1379, 8], + [0, -5414, -5415, -812, -5416, -3222], + [0, -3198, -5417, -3620, -3037, -3664, -2210, -2379, -2392, -2469], + [0, -5418, -5419, -763, -5420, -2166, -4043], + [0, 44, 15, 16, 6], + [1, 3, 1382], + [0, 1383, 1384, 1385, 4], + [ + 0, -5450, -5451, -5452, -633, -5453, -724, -812, -5454, -5455, -1004, -5456, -5457, -1336, -5458, -1442, -5459, + -5460, -5461, -1646, -5462, -5463, -5464, -2062, -5465, -2188, -2194, -5466, -5467, -5468, -2446, -2491 + ], + [0, -5469, -767, -1274, -1788, -5470, -2250, -2322, -2331], + [0, -468, -4865, -5471, -2319, -2322, -3634], + [1, 3, 1387], + [0, 1388, 1389, 1390, 5], + [0, -1025, -5472, -5473, -5474], + [ + 0, -5475, -350, -4062, -351, -3267, -3035, -3621, -3037, -5476, -427, -428, -470, -633, -664, -767, -809, -5477, + -932, -940, -1107, -1344, -5478, -1430, -1440, -5479, -1471, -1475, -1482, -1534, -1654, -5480, -1729, -1788, + -1942, -5481, -2127, -2140, -2379, -5482, -2410, -5483 + ], + [0, -4182, -4058, -2451, -3926, -1463, -1456, -5484, -5485], + [1, 3, 1392], + [0, 1393, 1394, 1395, 4], + [0, -469], + [0, -5475, -3136, -3037, -427, -428, -469, -932, -940, -1344, -1415, -5479, -1534, -1942, -2375, -2410], + [0, -5486, -3815, -3276, -3926], + [0, 45, 15, 16, 10], + [1, 3, 1398], + [0, 34, 1399, 1400, 6], + [0, -1813, -5487], + [0, -472], + [1, 3, 1402], + [0, 1403, 1404, 1405, 4], + [0, -5488, -2438], + [0, -5489, -1654, -1788, -2416], + [0, -5490, -5491, -5492], + [1, 3, 1407], + [0, 0, 1408, 1409, 6], + [0, -2162], + [0, -775, -2162, -3160, -3576, -3577, -5493, -5494], + [1, 3, 1411], + [0, 0, 0, 173, 5], + [1, 3, 1413], + [0, 0, 0, 1414, 5], + [0, -475, -3161, -4865, -5176, -5495], + [1, 3, 1416], + [0, 1417, 0, 1418, 5], + [ + 0, -5496, -5497, -7, -8, -9, -5498, -5499, -510, -518, -668, -722, -778, -784, -812, -5500, -834, -5501, -5502, + -5503, -1017, -1041, -5504, -1077, -5505, -1107, -1331, -1369, -1376, -5506, -1455, -1490, -1492, -1521, -1522, + -1548, -1645, -5507, -1743, -1758, -1812, -1816, -1888, -1908, -2000, -2092, -2114, -2125, -2148, -2163, -5508, + -2177, -5509, -2233, -5510, -2275, -2286, -2287, -2330, -2346, -2410, -2437, -2488, -2501, -2505, -2508, -2510, + -2567 + ], + [0, -475, -477], + [1, 3, 1420], + [0, 0, 0, 1421, 4], + [0, -5175, -3118, -4865, -5495, -3119, -5511, -3098], + [1, 3, 1423], + [0, 0, 1424, 1425, 9], + [0, -3542, -1202, -5512, -1654, -2343], + [ + 0, -5513, -5514, -5515, -5516, -5517, -5518, -5519, -5520, -5521, -5522, -5523, -5524, -5525, -5526, -5527, + -5528, -5529, -5530, -5531, -5532, -5533, -687, -5534, -712, -714, -5535, -4376, -3958, -4000, -5536, -5537, + -5538, -5539, -5540, -5541, -5542, -5543, -5544, -1496, -1573, -5545, -5546, -5547, -5548, -5549, -5550, -5551, + -5552, -2265, -5553, -3770, -3974, -5554, -3975, -5555, -5556, -2547, -5557 + ], + [1, 3, 1427], + [0, 1428, 115, 1429, 6], + [0, -5558], + [ + 0, -5514, -3974, -4000, -687, -2265, -3975, -5559, -5560, -5538, -5550, -2547, -1573, -5545, -3958, -5554, + -5561, -5562, -5412, -707, -5563, -5564, -3965, -5565, -685, -5566, -5567, -5568 + ], + [1, 3, 1431], + [0, 0, 1432, 1433, 10], + [0, -2541, -519, -2384, -480], + [ + 0, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -2265, -3975, -5559, -5538, -5549, -5513, -5550, -2547, + -3958, -5554, -5569, -5570, -5571, -5572, -4004, -5573, -5574 + ], + [1, 3, 1435], + [0, 0, 1436, 1437, 5], + [0, -2541, -519, -2384, -5575], + [ + 0, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -2265, -3975, -5559, -5538, -5549, -5513, -5550, -2547, + -1573, -5545, -3958, -5554 + ], + [1, 3, 1439], + [0, 0, 0, 1440, 6], + [0, -5514, -714, -687], + [1, 3, 1442], + [0, 1443, 1444, 1445, 11], + [ + 0, -4903, -5576, -44, -3946, -3763, -5577, -5578, -5579, -513, -786, -809, -5580, -5581, -1548, -1549, -2113, + -4951, -5582, -3768, -2345, -5583, -2489 + ], + [ + 0, -21, -23, -26, -34, -35, -36, -5584, -37, -3396, -5585, -3381, -38, -3382, -3412, -39, -40, -42, -86, -3307, + -305, -3326, -3732, -3048, -3136, -5586, -3164, -5587, -3661, -3037, -5588, -427, -428, -439, -4837, -5589, + -5590, -5591, -5592, -441, -4838, -5593, -4817, -5594, -461, -5595, -518, -523, -528, -533, -534, -538, -5596, + -539, -5597, -661, -668, -674, -708, -5339, -5598, -719, -5599, -767, -778, -779, -5600, -807, -5601, -5602, + -4978, -5603, -928, -3808, -929, -932, -940, -957, -958, -959, -963, -5604, -967, -980, -1026, -4979, -1077, + -1107, -1111, -1125, -1168, -1174, -5605, -1261, -1331, -1344, -5606, -5607, -1415, -1419, -1421, -5608, -5609, + -1439, -5610, -3025, -1521, -1522, -5611, -5612, -1534, -5613, -1600, -1601, -1602, -1603, -5614, -1610, -5615, + -1643, -1646, -1650, -1662, -1666, -1779, -1889, -1908, -1942, -1952, -1955, -1959, -2000, -4242, -2098, -5616, + -5617, -3868, -5618, -2125, -5619, -5620, -2177, -2218, -5621, -2275, -2281, -4997, -4998, -2282, -4999, -2284, + -2335, -2347, -2355, -2375, -2376, -2392, -2402, -2410, -5622, -2427, -2437, -5001, -2466, -2476, -5623, -5624, + -2478, -2480, -5625, -2481, -5626, -2483, -2484, -5627, -2486, -2501, -2502, -2503, -2505, -2508, -5628, -5002 + ], + [0, -2476, -3944, -3158, -3099, -485, -5629, -3095, -3098, -3160, -3161, -3100], + [1, 3, 1447], + [0, 1448, 1449, 110, 4], + [ + 0, -703, -809, -44, -3165, -2345, -4903, -5630, -5631, -5632, -5633, -4910, -5634, -5635, -4904, -5636, -5637, + -5638, -5639, -5640, -5641, -5642, -5643, -5644, -5645, -5646, -5647, -5648, -5649, -5650, -5651, -5652, -5653, + -5654, -5655, -5656, -5657, -5658, -4905, -5659, -5660, -5661, -5662, -5663, -5664, -5665, -4951, -5666, -5667 + ], + [ + 0, -469, -1816, -2592, -2323, -2392, -881, -1107, -1415, -1805, -523, -668, -4977, -1344, -1359, -1392, -1449, + -5668, -1880, -2006, -2193, -865, -932, -1031, -1437, -1548, -2093, -2125, -5669, -2177, -464, -5595, -5670, + -1955, -2402, -2501, -781, -1077, -1103, -4980, -1646, -1662, -1942, -5671, -5002, -767, -5672, -1026, -3134, + -4984, -1978, -4985, -2019, -5673, -5674, -1729, -1888, -2094, -2095, -2205, -2214, -2410, -3136, -3037, -5346, + -1339, -1534, -2026, -4994, -162, -4647, -5675, -3040, -5676, -5677, -4986, -5678, -5679, -3744, -305, -4964, + -3044, -3199, -4973, -1737, -1950, -5680, -2101, -2581, -3778, -5681, -5682, -5683, -4960, -3803, -4972, -3649, + -4982, -5684, -4954, -3562, -5685, -3048, -4961, -5686, -3624, -5687, -3051, -4773, -5688, -3052, -1404, -1416, + -5689, -2044, -4992, -2090, -3139, -5690, -3746, -4106, -5691, -3745, -3747, -283, -5692, -959, -1352, -4988, + -5001, -5693, -1292, -4981, -5694, -406, -4974, -952, -1421, -4989, -5695, -409, -962, -1419, -5696, -5697, + -5698, -4983, -2502, -4971, -3459, -5699, -407, -970, -5700, -4963, -5701, -5702, -5703, -410, -2914, -5704, + -4968, -5705, -4995, -4990, -4962, -5706, -4955, -5707, -5708 + ], + [1, 3, 1451], + [0, 1452, 0, 7, 5], + [0, -1805], + [0, 67, 15, 16, 4], + [1, 3, 1455], + [0, 1456, 1457, 1458, 9], + [0, -3278, -3279, -3299, -3283, -3288, -5709, -5710, -3304, -3305, -5711, -5712, -5713, -5714, -1537, -3297], + [ + 0, -3285, -3286, -3287, -5715, -3302, -3303, -86, -3307, -5716, -3308, -3309, -5717, -3310, -3311, -3312, -5718, + -5719, -617, -823, -932, -940, -985, -1004, -1077, -1344, -1442, -1534, -1685, -1724, -1889, -2125, -2127, + -5720, -4753, -2210, -2359, -2410, -3313, -2416, -5721, -2446 + ], + [0, -4902, -5722, -3690, -488, -856, -5723, -1789], + [1, 3, 1460], + [0, 1461, 1462, 174, 4], + [ + 0, -620, -719, -5724, -3808, -5725, -1077, -1107, -1276, -1351, -1437, -5726, -1548, -1600, -1753, -1955, -2177, + -2275, -2501, -2503, -2520 + ], + [0, -3044, -3621, -3037, -932, -5727, -943, -958, -966, -968, -1654], + [1, 3, 1464], + [0, 1465, 1466, 1467, 4], + [0, -5729, -888, -2177, -2433, -2550], + [0, -4370, -3037, -3199, -3041, -519, -1077, -2410], + [0, -489, -1599, -5730, -3690, -4100, -856, -3262, -5731, -687, -5732, -3958, -3691, -5728, -5733, -5734], + [1, 3, 1469], + [0, 1470, 1471, 1472, 5], + [0, -812, -5735, -1730, -1465, -2456], + [0, -664, -665, -1654, -2210, -2211], + [0, -5736, -5737, -5738, -5739, -5740, -5741], + [1, 3, 1474], + [0, 1475, 0, 7, 4], + [0, -5742, -5743, -3320, -5744, -2387], + [1, 3, 1477], + [0, 1478, 0, 1479, 8], + [0, -5745, -5742, -494, -5743, -5746, -5744, -2387, -5747], + [0, -3217, -4795, -5748, -3214, -5749, -1764, -2006], + [1, 3, 1481], + [0, 1482, 1483, 7, 6], + [0, -5743, -5744, -2387, -5750], + [0, -5751, -3136, -3037, -1122, -1123, -1415, -2125, -2127, -2375, -2388, -2410], + [1, 3, 1485], + [0, 1486, 1487, 7, 6], + [0, -494, -5752, -2387], + [0, -5751, -3136, -5753, -1037, -1122, -1123, -1415, -5754, -2125, -2127, -2375, -2388, -2410], + [1, 3, 1489], + [0, 0, 1490, 1491, 5], + [0, -708, -756, -5755, -796, -1104, -1405, -1654, -1657, -1663, -1788, -2174, -2449], + [0, -5756, -1847, -3590, -2444, -3966, -3551, -3209, -5757, -4792, -3994], + [1, 3, 1493], + [0, 1494, 1495, 1496, 4], + [0, -2959, -5758, -5759, -5760, -5761, -523, -615, -5762, -1548, -1582, -1666, -1667, -5763, -2177, -5764, -2531], + [ + 0, -5765, -5766, -2860, -3470, -3471, -5767, -3044, -3621, -3037, -5768, -3199, -4204, -4733, -664, -665, -741, + -1654, -1942, -2174, -2210, -2379, -2410, -2542 + ], + [0, -5769, -5271, -3634, -4864, -3162, -5770], + [1, 3, 1498], + [0, 1499, 1500, 1501, 10], + [ + 0, -5771, -5772, -5773, -5038, -5774, -5775, -5776, -5777, -5778, -5779, -5780, -5781, -5782, -5783, -5784, + -5785, -5786, -5787, -5788, -5789, -5790, -5791, -5792 + ], + [0, -1788, -1722, -1654, -2210, -932, -1942, -2410, -5793, -3037, -3621, -4372, -3199, -966, -428, -5794, -427], + [0, -5795, -5796, -5797, -5798, -5799, -5800, -5801, -5802, -5803, -5804, -5805], + [1, 3, 1503], + [0, 1504, 1505, 1506, 5], + [0, -5806, -5807, -5808, -5809, -5810, -5811], + [ + 0, -5812, -3136, -3037, -427, -428, -5813, -932, -940, -948, -958, -967, -1122, -1415, -1942, -5814, -1944, + -5815, -2251, -2375, -2379, -2410 + ], + [0, -5816, -5817, -3445, -5818, -1122, -5819, -3967, -2410, -5820], + [1, 3, 1508], + [0, 1509, 1510, 1511, 4], + [0, -5821, -510, -5822, -2062, -5823, -2325, -5824], + [0, -5825, -664, -1446, -1650, -1654, -2125, -5826, -2323, -2555], + [0, -5409, -501, -5827, -5408, -2323], + [1, 3, 1513], + [0, 0, 1514, 7, 8], + [0, -664, -1415, -1942], + [1, 3, 1516], + [0, 0, 1517, 1518, 10], + [0, -32, -5828, -932, -1654, -1788], + [0, -687, -3215, -503, -5829, -4377], + [0, 45, 15, 16, 6], + [1, 3, 1521], + [0, 1522, 1523, 1524, 6], + [0, -655, -5830, -5831, -5832], + [0, -5833, -5834, -516, -5835, -932, -993, -1065, -5836, -1365, -1777, -1788, -1794, -2156, -2322], + [0, -5837, -5838, -5839, -5840, -5396, -3582, -5841, -5842, -5843], + [1, 3, 1526], + [0, 0, 14, 1527, 6], + [0, -5839, -506, -5844, -5845, -5846, -5847], + [1, 3, 1529], + [0, 1530, 1531, 1532, 5], + [0, -2444, -5848, -655, -5849, -1797], + [0, -2322, -468, -753, -767, -21, -5850, -23, -1798, -40, -3335], + [0, -507, -4865], + [1, 3, 1534], + [0, 0, 1535, 7, 4], + [0, -2322, -1032], + [1, 3, 1537], + [0, 1538, 1539, 1540, 4], + [0, -820, -5851, -5852, -1794, -5853, -5854], + [0, -633, -1405, -1654, -1939], + [0, -507, -5855, -5856, -509, -3440, -1001, -1003, -2198, -5857, -4679, -4873, -4004, -3634, -3636, -5858, -5119], + [1, 3, 1542], + [0, 0, 1543, 1544, 4], + [ + 0, -1788, -664, -2148, -1446, -1471, -1654, -2550, -932, -2127, -2177, -674, -571, -615, -1077, -589, -633, -23, + -925, -1482, -5859, -566, -1472, -5860, -559, -5861, -5862, -32, -1483, -539, -1487, -1479, -5863, -2137, -535, + -5864, -549 + ], + [0, -510, -5865, -3551, -3590], + [1, 3, 1546], + [0, 0, 1547, 1548, 9], + [0, -3037, -5866, -2319, -2379, -2410], + [0, -510, -5867, -3184, -1334, -5868, -5149, -1961, -3844], + [1, 3, 1550], + [0, 1551, 1552, 7, 4], + [0, -2122], + [0, -519, -932, -1942, -1729, -1939, -5869, -1534, -969, -933, -958, -940, -962], + [1, 3, 1554], + [0, 0, 1555, 1556, 4], + [0, -23, -5870, -40, -42, -5871, -3136, -533, -756, -1415, -1534, -1763, -5872, -5873, -1939, -1942, -2379, -2410], + [0, -2451, -5874, -510], + [1, 3, 1558], + [0, 0, 0, 1559, 5], + [0, -514, -4865], + [1, 3, 1561], + [0, 1562, 1563, 1564, 6], + [0, -2359, -714, -5875, -2177, -5876, -5877, -5878], + [0, -1788, -2322, -932, -1777, -516, -2156, -5834], + [0, -5879, -5880, -5881, -1764, -5879], + [1, 3, 1566], + [0, 1567, 1568, 1569, 6], + [0, -719, -1276, -5882, -1729, -5883, -2177], + [0, -23, -43, -539, -5884, -664, -708, -767, -1609, -1654, -1788, -2226, -2250], + [0, -5885, -5886, -5887, -5888, -1573, -3262, -5889, -5890, -5891, -1306], + [1, 3, 1571], + [0, 1572, 1573, 1574, 5], + [0, -679, -714, -5892, -5893, -1107, -5894, -1574, -1816, -5895, -2105, -5896, -2550], + [0, -526, -559, -664, -932, -933, -958, -962, -969, -1654], + [0, -5885, -3015, -1380, -5897, -2490], + [1, 3, 1576], + [0, 1577, 0, 1578, 10], + [0, -635, -658, -5898, -1863, -1934], + [0, -518, -775, -5899, -1889, -3583], + [1, 3, 1580], + [0, 1581, 1582, 1583, 8], + [ + 0, -5900, -461, -462, -482, -5901, -506, -5902, -5903, -668, -5904, -680, -5905, -696, -5906, -5907, -5908, + -5909, -812, -5910, -1040, -1111, -5911, -1366, -1396, -1398, -5912, -5913, -1681, -1826, -5914, -1864, -1877, + -1951, -5915, -4621, -5916, -5917, -2530, -2550 + ], + [0, -5028, -5918, -3037, -480, -652, -999, -1001, -2210, -2319, -2331, -2384, -2410, -2541, -5747], + [ + 0, -5919, -4004, -4043, -3634, -519, -5920, -5921, -5922, -4873, -5732, -687, -1415, -1654, -2322, -2319, -1989, + -1412, -507, -5855, -1961, -5923, -510, -5924, -5867, -3262, -5925, -5926, -5927, -5928, -5119, -4045, -1001, + -2410 + ], + [1, 3, 1585], + [0, 1586, 1587, 1588, 4], + [0, -668, -909, -1543, -1548, -1639, -1650, -2234, -5929], + [ + 0, -3035, -3044, -4036, -3621, -3037, -3714, -4372, -3046, -615, -664, -5930, -1077, -1344, -1534, -1654, -1942, + -5931, -2125, -2195, -2251, -2330, -2388, -2410, -2501, -2503 + ], + [0, -2501, -5932, -5050, -2410], + [1, 3, 1590], + [0, 1591, 1592, 1593, 5], + [0, -2165, -2435, -2444, -2446, -640, -997, -2536, -5933, -5934, -1985], + [ + 0, -664, -1471, -1654, -932, -708, -1412, -2501, -793, -2416, -633, -2410, -3037, -1455, -711, -1413, -1481, + -5935, -5936, -1475 + ], + [ + 0, -3690, -5937, -5817, -5938, -5939, -5940, -5941, -5942, -5943, -5944, -5945, -5946, -5947, -5948, -5949, + -5950, -5951, -5952, -5953, -5954, -5955, -5956, -5957, -5958, -5959, -5960, -5961, -5962, -5197, -5963, -5964, + -5965, -5966, -5967, -5968 + ], + [1, 3, 1595], + [0, 0, 1596, 1597, 4], + [ + 0, -664, -1107, -668, -702, -999, -1127, -1344, -1446, -1449, -1471, -1654, -2210, -932, -1437, -753, -928, + -1110, -1821, -1376, -5969, -1942, -2416, -5970, -5113, -5971, -1474, -5972, -2410, -23, -3037, -5973, -925, + -5974, -1339, -1482, -1489, -1534, -1771, -5975, -5976, -1320, -1737, -4916, -5977, -5978, -2251, -5979, -40, + -5980, -1480, -2173, -5981, -1134, -1149, -1491, -1136, -1148, -5982, -1475, -2253, -3345, -940, -1479, -5983, + -5984, -36 + ], + [0, -5985, -4665, -3634, -5119, -4873, -3440, -5986], + [1, 3, 1599], + [0, 1600, 1601, 1602, 4], + [0, -1069, -5987, -1063], + [ + 0, -652, -1168, -668, -1344, -1471, -1654, -2210, -932, -1685, -1831, -2127, -1004, -5988, -1077, -5969, -1646, + -756, -767, -1070, -1100, -1276, -3727, -2325, -2410, -23, -617, -925, -1489, -1413, -1948, -5989, -1481, -516, + -86, -5990, -40, -5991, -4062, -4066, -3326, -1488, -2140, -5992, -1475, -1487, -1479, -1490, -350, -5993, + -1486, -5994, -5995, -351, -5996, -5997, -3307 + ], + [0, -2533, -1334, -5998, -1961, -3966, -4865, -4213, -3691, -3690, -3323], + [1, 3, 1604], + [0, 1605, 1606, 1607, 4], + [0, -5999, -1015, -6000, -6001, -2062, -2105, -2424, -2446, -2451, -2536, -2538, -1456], + [ + 0, -6002, -633, -756, -6003, -1127, -1154, -2778, -1405, -1471, -1475, -1478, -6004, -1479, -1480, -1482, -1483, + -1654, -1657, -1722, -2198, -2416, -2491 + ], + [0, -3966, -5800, -6005], + [1, 3, 1609], + [0, 1610, 1611, 137, 4], + [0, -527, -556, -566, -567, -719, -742, -3179, -1107, -1548, -6006, -1850, -2218, -2231, -6007, -679], + [0, -530], + [1, 3, 1613], + [0, 1614, 1615, 138, 9], + [ + 0, -6008, -529, -6009, -6010, -566, -567, -568, -569, -570, -572, -742, -812, -1460, -1548, -1645, -1850, -6011, + -2218, -2231 + ], + [0, -530, -6012, -556], + [1, 3, 1617], + [0, 1618, 1619, 7, 5], + [0, -2114, -47, -25, -46, -22, -983], + [0, -1344, -1654, -815, -932, -986, -1942, -1534, -528, -6013, -958, -956, -967], + [1, 3, 1621], + [0, 1622, 1623, 7, 5], + [0, -6010, -567, -570, -831, -1451, -1548, -2231, -6014], + [0, -530, -572], + [1, 3, 1625], + [0, 1626, 0, 7, 4], + [0, -567, -1548, -6015, -2177], + [1, 3, 1628], + [0, 1629, 0, 7, 5], + [0, -567, -6012], + [1, 3, 1631], + [0, 0, 0, 1632, 6], + [0, -525, -2476, -4146], + [1, 3, 1634], + [0, 1635, 1636, 7, 4], + [0, -4020, -4776, -539, -6016, -668, -1119, -2218], + [0, -23, -4034, -4035], + [1, 3, 1638], + [0, 175, 1639, 1640, 8], + [0, -21, -23, -32, -40, -652, -932, -940, -967, -1110, -1344, -1534, -1942, -2501], + [0, -2501, -5932, -525, -3184, -3186, -3551], + [1, 3, 1642], + [0, 0, 1643, 1644, 8], + [ + 0, -23, -34, -40, -526, -527, -528, -5884, -6017, -558, -6018, -560, -568, -570, -6019, -932, -940, -943, -958, + -966, -967, -968, -974, -1654, -1938, -1942, -2125, -2156 + ], + [0, -3220, -6020], + [1, 3, 1646], + [0, 1647, 1648, 1649, 4], + [0, -1797], + [ + 0, -2322, -932, -2125, -526, -527, -1365, -23, -528, -566, -6021, -40, -557, -559, -2156, -958, -934, -537, + -3840, -535, -3382, -6022, -550 + ], + [0, -525, -3862, -6023, -6024, -3966], + [1, 3, 1651], + [0, 116, 35, 21, 5], + [1, 3, 1653], + [0, 1654, 1655, 1656, 10], + [0, -3341], + [ + 0, -23, -41, -6025, -527, -6026, -756, -932, -933, -940, -958, -967, -1031, -1344, -1534, -1613, -1763, -1942, + -6027 + ], + [0, -3220, -485], + [1, 3, 1658], + [0, 1659, 1660, 1661, 4], + [0, -24, -6028, -4003, -6029, -6030], + [0, -21, -23, -3362, -3204, -43, -664, -756, -767, -1654, -1788, -6031, -2250], + [0, -1405, -525, -3862, -6032], + [1, 3, 1663], + [0, 1664, 1665, 1666, 4], + [0, -3341, -47, -1107, -1548, -6033], + [ + 0, -21, -23, -6034, -36, -3201, -3077, -38, -40, -41, -6035, -43, -4754, -510, -535, -540, -664, -6036, -6037, + -1549, -1654, -1993, -2011 + ], + [0, -3220, -6038, -1548, -3209], + [1, 3, 1668], + [0, 1669, 1670, 1671, 6], + [0, -6039, -1107, -1872, -2112, -2114], + [0, -21, -23, -37, -3204, -40, -527, -533, -722, -932, -934, -940, -958, -1344, -1415, -1534, -6040, -2251], + [0, -525, -3220, -3551, -6041, -6042, -6043, -2114, -6044, -6045, -4792, -6024], + [1, 3, 1673], + [0, 0, 1674, 7, 5], + [0, -1415, -6046], + [1, 3, 1676], + [0, 0, 0, 21, 5], + [1, 3, 1678], + [0, 0, 0, 21, 4], + [1, 3, 1680], + [0, 1681, 35, 21, 5], + [0, -6047, -6048, -567], + [1, 3, 1683], + [0, 1684, 35, 21, 5], + [0, -6049, -6050, -567, -568], + [1, 3, 1686], + [0, 1687, 1688, 1689, 6], + [0, -6051, -567, -568], + [0, -526, -546, -555, -559, -664, -1654], + [0, -525, -3220, -6052, -3336], + [1, 3, 1691], + [0, 1692, 35, 21, 5], + [0, -567, -568, -569, -570, -1548], + [1, 3, 1694], + [0, 1695, 1696, 21, 6], + [0, -6053, -567, -568, -570], + [0, -531, -6054], + [1, 3, 1698], + [0, 116, 35, 21, 10], + [1, 3, 1700], + [0, 1701, 35, 21, 4], + [0, -6054, -567], + [1, 3, 1703], + [0, 1704, 35, 21, 5], + [0, -567, -6055, -544], + [1, 3, 1706], + [0, 0, 1707, 1708, 4], + [ + 0, -21, -23, -3194, -3840, -26, -3203, -40, -6056, -41, -43, -528, -6057, -664, -932, -933, -951, -956, -958, + -962, -964, -967, -969, -1111, -1654, -6058, -1942 + ], + [0, -525, -3220, -2006, -6059, -6060], + [1, 3, 1710], + [0, 1711, 35, 7, 4], + [0, -6061], + [1, 3, 1713], + [0, 116, 35, 21, 4], + [1, 3, 1715], + [0, 1716, 0, 7, 6], + [0, -567, -753, -2082], + [1, 3, 1718], + [0, 1719, 1720, 1721, 6], + [0, -40, -41, -24, -3352, -38, -6062, -5584, -36, -3381, -6063, -3382, -6064, -553, -3393, -6065, -3396], + [0, -932, -23, -44, -2156, -958, -934], + [0, -525, -3184, -4795, -3214], + [1, 3, 1723], + [0, 1724, 1725, 7, 5], + [ + 0, -6066, -6067, -545, -6068, -6069, -548, -6070, -6071, -6072, -6073, -6074, -6075, -6076, -6077, -549, -6078, + -6079, -6080, -6081, -6082, -6083, -6084, -550, -6085, -6086, -6087, -554, -635, -1384, -2177 + ], + [ + 0, -526, -528, -530, -531, -539, -558, -566, -664, -708, -932, -6013, -956, -1077, -1548, -1654, -1788, -6088, + -2125 + ], + [1, 3, 1727], + [0, 1728, 1729, 7, 6], + [ + 0, -6066, -6068, -6069, -548, -6070, -6071, -6072, -6073, -6074, -6075, -6076, -6077, -549, -6078, -6079, -6080, + -6081, -6082, -6083, -6084, -550, -6085, -6086, -554 + ], + [0, -6012, -531], + [1, 3, 1731], + [0, 1732, 0, 7, 8], + [0, -6089, -544, -6090, -552, -6091, -6092], + [1, 3, 1734], + [0, 1735, 0, 7, 4], + [0, -23, -26, -33, -6065, -6062, -5584, -6093, -3394, -3203, -3409, -38, -40, -41, -42, -44, -3766, -553], + [1, 3, 1737], + [0, 1738, 0, 7, 9], + [0, -6094, -6095, -563], + [1, 3, 1740], + [0, 1741, 0, 7, 5], + [0, -6096, -6017, -564], + [1, 3, 1743], + [0, 1744, 0, 7, 4], + [0, -565, -6097, -543, -546], + [1, 3, 1746], + [0, 1747, 0, 7, 5], + [0, -6067, -6098, -545, -6087, -551], + [1, 3, 1749], + [0, 1750, 1751, 7, 4], + [0, -527, -567, -753, -6099, -1548, -1650, -2234], + [0, -3542], + [1, 3, 1753], + [0, 140, 1754, 7, 8], + [0, -6009, -555], + [1, 3, 1756], + [0, 1757, 0, 7, 4], + [0, -567, -569, -570, -572, -1548], + [1, 3, 1759], + [0, 1760, 1761, 7, 5], + [0, -6008, -6010, -567, -570, -572, -812, -1110, -1384, -1548], + [0, -529], + [1, 3, 1763], + [0, 1764, 1765, 7, 6], + [0, -567, -6100, -1548, -6101], + [0, -529, -572], + [1, 3, 1767], + [0, 0, 1768, 7, 5], + [0, -2319, -633, -23, -6102, -40, -6056, -742, -41, -6103, -3381, -3409], + [1, 3, 1770], + [0, 0, 1771, 1772, 6], + [ + 0, -519, -526, -528, -530, -537, -539, -6104, -559, -562, -668, -708, -767, -932, -6013, -956, -1059, -1788, + -2125, -2127, -2128, -2137, -5385, -6105 + ], + [0, -525, -3214, -3215, -572], + [1, 3, 1774], + [0, 1775, 1776, 1777, 4], + [0, -2424], + [0, -711, -757, -849, -932, -958, -1471, -1485, -1989, -2104, -2127, -2416], + [0, -6106, -6107, -5394, -3122, -3844, -3323, -4865], + [1, 3, 1779], + [0, 1780, 1781, 1782, 11], + [0, -719, -1107, -1376, -1805, -2125, -2387, -2446, -2451], + [ + 0, -6108, -3036, -3049, -3037, -3738, -6109, -3046, -427, -428, -3311, -6110, -6111, -3312, -664, -932, -958, + -966, -1654, -1656, -6112, -2195, -2200, -2335, -2376, -2379, -2402, -2410, -5260, -2501, -2503 + ], + [0, -3445, -574, -1671, -3105, -6113], + [0, 44, 15, 16, 4], + [1, 3, 1785], + [0, 0, 1786, 1787, 5], + [0, -756, -1127, -1132, -1162, -6114, -1405, -1654, -2081], + [0, -6115, -6116, -6117, -6118, -514, -638], + [0, 45, 15, 16, 11], + [1, 3, 1790], + [0, 0, 1791, 1792, 8], + [0, -5859, -589, -633, -2322], + [0, -6118], + [1, 3, 1794], + [0, 177, 1795, 1796, 5], + [0, -1654, -932, -1405, -966, -958, -968, -943, -963, -974], + [0, -6119, -6120, -6121, -6122], + [1, 3, 1798], + [0, 1799, 1800, 1801, 4], + [0, -888, -1645, -1646, -1650, -6123], + [0, -932, -943, -958, -966, -968, -974, -1654, -2125, -2293, -2369, -2418, -2450], + [0, -1004, -3161, -6124, -6125, -6126, -1752, -3578, -3691, -5728, -3122, -3994, -1954, -3445, -3690], + [1, 3, 1803], + [0, 1804, 1805, 178, 4], + [0, -1723, -6127], + [0, -1415, -6128], + [1, 3, 1807], + [0, 0, 0, 1808, 4], + [0, -581, -3214, -3756, -6131, -5110, -6120, -3173, -6129, -6130, -770], + [1, 3, 1810], + [0, 0, 1811, 178, 8], + [0, -581, -6132, -1942, -2410], + [1, 3, 1813], + [0, 1814, 1815, 1816, 9], + [0, -6133, -719, -679], + [0, -1003, -1127, -600, -1130, -1156, -1134, -1148], + [0, -6134, -6135, -6136, -6137, -6138, -6139, -3870, -6140, -6141, -6142, -6143, -6144, -6145], + [1, 3, 1818], + [0, 0, 0, 1819, 5], + [0, -589, -6146], + [0, 68, 15, 16, 8], + [1, 3, 1822], + [0, 1823, 1824, 1825, 8], + [ + 0, -1640, -1805, -2518, -2546, -1519, -2114, -2346, -679, -1646, -6176, -1888, -1948, -725, -6177, -2062, -6178, + -6179, -6180 + ], + [0, -6181, -4215, -2322, -2363, -1405, -2491, -633, -6182], + [0, -6183, -633], + [0, 45, 15, 16, 4], + [1, 3, 1828], + [0, 1829, 1830, 1831, 11], + [0, -1548, -6184], + [0, -756, -6185, -1405, -6186, -1991, -2111], + [0, -589, -6187, -6188], + [0, 45, 15, 16, 5], + [1, 3, 1834], + [0, 1835, 0, 1836, 9], + [ + 0, -6189, -6190, -6191, -23, -3194, -25, -26, -6093, -5828, -3355, -3204, -3408, -40, -42, -46, -4228, -4145, + -3037, -469, -6192, -501, -510, -674, -679, -683, -714, -6193, -742, -1070, -1323, -6194, -1729, -1847, -1942, + -6195, -2162, -2228, -2231, -2245, -2299, -2410, -2416, -6196, -2476, -2550, -1376, -6197 + ], + [ + 0, -6198, -6199, -6200, -6201, -6202, -6203, -3161, -2410, -3214, -3018, -5065, -4726, -3445, -6204, -6205, + -6206, -6207, -6208, -6209, -6210, -6211, -6212, -6213, -6214, -6215, -4160, -6216, -6217, -2006, -6218, -6219, + -2476, -6220, -6221, -4726, -2299, -6222, -6223, -2228, -6224 + ], + [1, 3, 1838], + [0, 1839, 1840, 1841, 10], + [0, -6225, -6226, -6227], + [0, -523, -664, -932, -1654, -6228, -1972, -6229], + [0, -4055, -6230, -6231, -2487, -1838, -3215, -6232, -6233, -2059, -6234, -510, -6235], + [1, 3, 1843], + [0, 0, 0, 1844, 5], + [0, -6236, -6237, -6238, -6239, -6240, -6241, -6242, -6243, -6244, -6245, -6246, -6247], + [1, 3, 1846], + [0, 1847, 0, 1848, 8], + [0, -6248], + [0, -5269, -6249, -596, -6250, -5968, -6251, -6252], + [1, 3, 1850], + [0, 1851, 1852, 7, 4], + [0, -6253], + [0, -1788, -2322, -2388, -1942, -1729, -1972, -2410, -3037], + [1, 3, 1854], + [0, 1855, 1856, 1857, 9], + [0, -6254, -6255, -6256, -6257, -3204, -38, -2687, -6022, -6258, -2965, -6259, -2489], + [ + 0, -6260, -21, -23, -3204, -40, -6261, -43, -44, -4757, -2697, -358, -6262, -6263, -4754, -6264, -4956, -4749, + -4959, -409, -3136, -3052, -6265, -6266, -6021, -6267, -533, -534, -6268, -6269, -539, -557, -560, -6026, -567, + -6270, -683, -756, -767, -799, -6271, -932, -6272, -1168, -1261, -1266, -6273, -1365, -1415, -1422, -1440, + -1666, -6274, -1743, -1763, -1771, -1782, -1788, -1939, -1942, -2000, -2006, -2019, -6275, -6276, -2125, -2156, + -2163, -6277, -2275, -2375, -2376, -2410, -2501, -2502, -2503 + ], + [0, -598, -6278], + [1, 3, 1859], + [0, 1860, 1861, 1862, 8], + [0, -6279, -640, -1370, -2062], + [0, -1032, -2250, -2322, -2410], + [0, -640, -6280, -5827, -6281], + [1, 3, 1864], + [0, 1865, 1866, 1867, 5], + [0, -461, -6282, -6283, -1402, -1795, -2546], + [0, -510, -6284, -710, -1127, -1132, -1134, -1136, -1144, -1148, -1542, -1654, -1859, -2111, -2006, -6285], + [0, -4005], + [1, 3, 1869], + [0, 0, 0, 1870, 5], + [0, -6286, -6287, -6288, -6289, -6290], + [1, 3, 1872], + [0, 1873, 1874, 7, 6], + [0, -6291, -668, -6292, -1548, -6293, -1610, -6294, -6295, -1627, -6296, -6297, -2269, -6298, -6299], + [0, -6300, -601, -714, -932, -943, -958, -966, -968, -974], + [0, 45, 15, 16, 8], + [0, 67, 15, 16, 10], + [0, 67, 15, 16, 5], + [0, 67, 15, 16, 6], + [1, 3, 1880], + [0, 0, 1881, 1882, 5], + [0, -1405], + [0, -6301, -5389, -6302, -6187], + [1, 3, 1884], + [0, 0, 1885, 1886, 5], + [ + 0, -705, -2152, -1107, -1805, -461, -6303, -1654, -2210, -1452, -1650, -2125, -6304, -615, -1303, -1405, -1813, + -693, -2416, -462, -633, -617, -769, -2187, -1453, -1161 + ], + [0, -1961, -6187, -5923, -6305, -6306, -510, -5867, -6307, -6308, -6309, -6310, -6311, -6312], + [1, 3, 1888], + [0, 0, 1889, 1890, 6], + [0, -1654, -6313, -953], + [0, -6314, -6315, -6316, -6317, -6318], + [1, 3, 1892], + [0, 1893, 81, 7, 6], + [0, -651, -737, -812, -1335, -1351, -1800, -1983, -1999, -2401], + [1, 3, 1895], + [0, 1896, 1897, 1898, 4], + [0, -615, -6319, -1369, -1548], + [ + 0, -6320, -664, -932, -940, -967, -1344, -1446, -1497, -1534, -1654, -1691, -1788, -1857, -1942, -2210, -2211, + -2245, -2446 + ], + [0, -1818, -1691, -6321, -3742, -6322, -6323], + [1, 3, 1900], + [0, 182, 1901, 1902, 4], + [0, -707, -1510, -1607], + [0, -6324, -1334], + [1, 3, 1904], + [0, 0, 1905, 148, 4], + [ + 0, -1389, -2564, -1640, -2162, -2834, -1471, -932, -1111, -1437, -2093, -2127, -2149, -2334, -1412, -1442, + -1753, -1889, -2195, -3574, -1942, -699, -767, -3031, -2281, -21, -1354, -23, -6325, -3563, -1333, -1891, -2096, + -6326, -518, -1772, -3559, -3564, -1481, -1547, -6327, -6328, -2997, -3660, -3803, -3649, -3562, -6329, -945, + -3566, -2429, -40, -6330, -957, -3326, -958, -978, -1475, -1477, -6331, -3561, -963, -1479, -3571, -350, -6332, + -2084, -1486, -3565, -351, -1473, -3569, -3573, -3568 + ], + [1, 3, 1907], + [0, 0, 1908, 1909, 4], + [0, -2162, -6333, -888], + [0, -620, -2162, -775, -6334], + [1, 3, 1911], + [0, 0, 0, 1912, 4], + [0, -622], + [1, 3, 1914], + [0, 1915, 1916, 1917, 8], + [0, -2728, -656, -668, -688, -2267, -2400, -2820, -2528], + [0, -519, -1788, -2384, -2541], + [0, -687, -6335, -6336, -3974, -4110, -4000, -4111, -4112, -6337, -5554], + [1, 3, 1919], + [0, 1920, 1921, 1922, 4], + [0, -6338, -2114, -6339, -2347], + [0, -633, -725, -2319, -2346], + [0, -633, -6340, -1076, -6341, -3862, -5142, -6342, -4161, -6118], + [1, 3, 1924], + [0, 1925, 1926, 1927, 4], + [0, -812, -1645, -2488, -6343, -6344, -6345, -6346], + [0, -664, -1654, -2125, -1077, -2091, -6347, -964, -630, -6348], + [0, -6346, -3214], + [1, 3, 1929], + [0, 1930, 1931, 1932, 4], + [0, -6346, -6349], + [0, -6350, -630, -664, -1654, -6347], + [0, -6346, -1631, -6351], + [1, 3, 1934], + [0, 1935, 1936, 7, 6], + [0, -3628, -2731, -1054, -6345, -2359, -2488], + [0, -3035, -3621, -3037, -6352, -664, -726, -1654, -6353, -1788, -1942, -6354, -2388, -2389, -6355, -2410], + [1, 3, 1938], + [0, 1939, 1940, 1941, 6], + [ + 0, -6356, -6357, -6358, -668, -679, -729, -731, -6359, -6360, -6361, -990, -1072, -1077, -1336, -1361, -1639, + -1812, -5763, -1999, -6362, -2152, -2178, -2186, -2187, -2188, -2228, -2594, -2550 + ], + [ + 0, -3037, -6363, -664, -6364, -1119, -5735, -1654, -1942, -1980, -2105, -2111, -2125, -2210, -2229, -2234, + -2269, -2293, -2410, -2460 + ], + [0, -6365, -775, -6366, -6367], + [1, 3, 1943], + [0, 1944, 1945, 1946, 5], + [ + 0, -2435, -1107, -2444, -2546, -507, -640, -997, -1285, -6368, -6369, -6370, -1958, -2114, -1370, -1977, -2347, + -6371, -6372, -1464, -6373, -6374, -2194, -6375, -6376, -6377, -725, -6378, -6379, -6380, -6381, -6382, -6383, + -6384, -6385, -6386, -1848, -6387, -2062, -6388, -6389, -771, -6390, -6391, -6392, -6393, -6394, -5936, -6395 + ], + [0, -6396, -2319, -2330, -2177, -2346, -573, -6397, -6398, -710, -6399, -6400, -6401, -6402], + [0, -4865, -4792, -4791, -6403, -4161, -1764, -3214], + [1, 3, 1948], + [0, 1949, 1950, 1951, 9], + [0, -6404, -6405, -6406, -2114, -2346], + [0, -1449, -1705, -1972, -2105, -2125, -2319, -6407], + [0, -633, -6340, -5396, -1109, -1110, -6408, -6409, -4791], + [1, 3, 1953], + [0, 1954, 0, 1955, 9], + [0, -6410, -658, -6088, -6411, -6412], + [0, -657, -6413, -6414], + [1, 3, 1957], + [0, 1958, 1959, 1960, 11], + [0, -6415], + [0, -2322, -2125, -2410, -3037, -6416], + [0, -6417, -6418, -770, -6419, -6420, -6421, -6422, -5835, -6423], + [1, 3, 1962], + [0, 0, 1963, 1964, 10], + [ + 0, -1788, -2323, -2384, -664, -2446, -668, -1654, -2210, -932, -2127, -2379, -1942, -589, -1729, -2211, -2410, + -3035, -3037, -3621, -4372, -1588, -3625, -2234, -977, -940, -967, -262, -3267, -428, -351, -6424, -427, -234 + ], + [0, -1671, -637, -3215], + [1, 3, 1966], + [0, 0, 0, 1967, 6], + [0, -638, -4865], + [1, 3, 1969], + [0, 1970, 1971, 1972, 8], + [0, -461, -6425, -6426, -668, -1588, -1646, -6427], + [0, -6428, -932, -1107, -1654, -2125, -2127, -6429, -350, -4062, -351, -2231, -2234, -6430], + [0, -3214, -6431, -6432, -6433, -4795, -6434, -3184, -6052], + [1, 3, 1974], + [0, 1975, 1976, 1977, 11], + [0, -578, -5933], + [0, -468, -589, -633, -725, -1345, -5852, -5848, -2239, -2322, -2347, -2416], + [0, -6435, -4865, -633, -640, -6436, -6437, -6438], + [1, 3, 1979], + [0, 0, 1980, 1981, 4], + [0, -5834, -515, -516, -932, -1365, -1777, -2156, -2322], + [0, -640, -6439], + [1, 3, 1983], + [0, 1984, 1985, 1986, 4], + [0, -6127], + [0, -1654, -1733, -6128], + [0, -642], + [1, 3, 1988], + [0, 0, 14, 1989, 5], + [0, -6440, -6441, -6442, -3966, -3209, -3103, -6443, -4108, -5839, -6444], + [1, 3, 1991], + [0, 0, 1992, 1993, 5], + [0, -784, -1891, -1942, -2125, -2162], + [0, -775, -2162, -3754, -6445, -4672, -3576, -3161], + [1, 3, 1995], + [0, 1996, 1997, 1998, 5], + [0, -3417, -6446, -6447, -303, -304, -6448, -6449, -5007, -523, -668, -812, -6450, -6451, -1805], + [ + 0, -4367, -4368, -3035, -3198, -6452, -3621, -3037, -4372, -427, -664, -932, -938, -939, -940, -967, -1654, + -1661, -1722, -1763, -1788, -4362, -2200, -2210, -2379, -2410 + ], + [0, -3690, -856, -3438, -3328, -6453, -687], + [1, 3, 2000], + [0, 2001, 31, 2002, 5], + [0, -6376, -6399, -725, -6282, -1646, -2347], + [0, -633, -4161, -6454, -1644, -4792], + [1, 3, 2004], + [0, 2005, 2006, 2007, 6], + [0, -6455, -1666, -6456, -6457], + [0, -6458, -2319, -2454, -2456, -1607], + [0, -1573, -5545, -6459, -4055, -648], + [1, 3, 2009], + [0, 2010, 2011, 2012, 6], + [0, -6460], + [0, -6461, -932], + [0, -6462, -4054, -6463, -1069], + [1, 3, 2014], + [0, 2015, 2016, 2017, 4], + [0, -1578], + [0, -6464, -6465, -6466, -6467, -6468, -6469], + [0, -5149, -5839, -640, -6435, -6470, -650, -4055, -2512, -6471], + [1, 3, 2019], + [0, 0, 2020, 2021, 4], + [0, -932, -963, -1654, -1788], + [0, -6472, -651, -3590, -1838, -3215, -5845, -6473], + [1, 3, 2023], + [0, 2024, 2025, 2026, 4], + [0, -6474, -4003, -1047, -6475, -5086, -5087, -5089, -6030, -6476, -2550, -2551], + [0, -3037, -664, -6477, -767, -1654, -2250, -2379, -2410], + [0, -4005, -6478, -4004, -1405, -6479, -6480, -3966], + [1, 3, 2028], + [0, 0, 2029, 7, 5], + [ + 0, -3446, -1415, -999, -1344, -1111, -2127, -928, -5354, -2375, -2379, -2402, -1077, -1942, -6481, -2410, -23, + -3136, -1534, -1607, -3048, -2174, -6482, -2132, -6483, -350, -796, -351, -6484 + ], + [1, 3, 2031], + [0, 2032, 2033, 2034, 11], + [0, -1495, -6485], + [0, -2581, -6486, -6487, -3037, -3664, -6488, -6489, -2125, -2391, -2410, -2469, -6490], + [0, -3324, -6491, -6492, -3966, -4601, -6493, -2071, -1622, -6494, -6495, -6496, -6497, -6498, -6499, -6500], + [1, 3, 2036], + [0, 2037, 2038, 2039, 4], + [0, -6501, -6502, -6503, -6504], + [0, -5834, -516, -5835, -921, -932, -993, -1065, -5836, -1365, -1777, -1788, -1794, -2156, -2322], + [0, -3214, -3217, -6505, -3756, -6506, -6507, -6508, -6509, -6510, -655, -6511, -5924, -5831], + [1, 3, 2041], + [0, 0, 14, 2042, 4], + [0, -656, -6512, -6513, -6514, -6515, -6516, -864, -2424, -6517, -2265, -5554, -5845, -6518, -6519], + [1, 3, 2044], + [0, 0, 0, 2045, 4], + [0, -5180, -5177, -3839, -4865], + [1, 3, 2047], + [0, 0, 0, 2048, 5], + [0, -6520], + [1, 3, 2050], + [0, 2051, 2052, 2053, 9], + [0, -1723, -6521], + [0, -3037, -6522, -1004, -1442, -1654, -1870, -2250, -2384, -2410], + [0, -659, -6523, -6524, -6525, -6526, -6527, -5093, -6528], + [0, 45, 15, 16, 9], + [1, 3, 2056], + [0, 0, 2057, 2058, 4], + [0, -516, -932, -934, -958, -1077, -1654, -2501], + [0, -2501, -3862, -6529, -6024, -4792], + [1, 3, 2060], + [0, 0, 0, 2061, 5], + [0, -1859, -6530, -4004, -3634, -6531], + [1, 3, 2063], + [0, 0, 2064, 2065, 5], + [ + 0, -652, -6532, -1654, -932, -928, -1110, -6533, -820, -1942, -190, -2410, -6534, -6535, -3311, -960, -6536, + -350, -3312 + ], + [0, -4004, -5855, -507, -3634, -664], + [1, 3, 2067], + [0, 2068, 2069, 2070, 5], + [0, -6534], + [0, -652, -664, -1654, -932, -1110, -1942, -190], + [0, -664, -6537, -4865, -510, -3634, -6538, -5923, -6306], + [1, 3, 2072], + [0, 0, 183, 2073, 9], + [0, -664, -1841, -6539], + [1, 3, 2075], + [0, 0, 2076, 2077, 9], + [0, -664, -1654, -1405, -756, -6347, -6540], + [0, -664, -6537, -6541, -6542, -6543, -3862, -6544, -6545, -6546, -5572, -6547, -6548, -6549], + [1, 3, 2079], + [0, 0, 2080, 2081, 8], + [0, -652, -2541, -519, -2384, -999, -1612, -1575, -6550, -3037, -3523], + [ + 0, -712, -5535, -714, -3974, -4000, -687, -2265, -5514, -5553, -3770, -3975, -5538, -5549, -5513, -5550, -2547, + -1573, -5545, -3958, -5554 + ], + [1, 3, 2083], + [0, 0, 2084, 2085, 10], + [0, -519, -528, -756, -6551, -932, -6552, -1168, -6553, -1197, -1243, -1252, -6554, -1548, -1788, -1976], + [0, -669, -6555, -3262, -4004, -6556, -6557, -6558, -6559], + [1, 3, 2087], + [0, 0, 0, 2088, 5], + [0, -5888, -6514, -5845, -6408, -6512, -6519, -6560, -6561, -6562], + [1, 3, 2090], + [0, 2091, 2092, 7, 4], + [0, -6563, -6564, -734, -6565, -3446, -6566, -6567, -1805, -1852, -6568, -6569, -2177, -6570], + [0, -3037, -3199, -3664, -932, -944, -1431, -1942, -2251, -2410, -2423, -2469], + [1, 3, 2094], + [0, 2095, 2096, 2097, 4], + [0, -6571], + [ + 0, -350, -6572, -4062, -351, -367, -426, -6573, -427, -428, -6574, -6575, -6576, -726, -756, -767, -932, -6577, + -6578, -957, -963, -985, -1107, -1412, -1413, -1471, -1475, -1476, -1478, -1479, -1481, -3569, -1486, -6579, + -1491, -3222, -1666, -1667, -1870, -2127, -2130, -3571, -6580, -2140, -2410, -2550 + ], + [0, -659, -6581, -6582, -6583, -5177, -3576], + [1, 3, 2099], + [0, 2100, 2101, 2102, 11], + [0, -1839, -2426, -6584, -6585, -1333, -6586, -861, -6587, -6588, -6589, -6590], + [ + 0, -2392, -2386, -1344, -1449, -932, -1437, -2469, -1110, -1942, -2354, -190, -2410, -3037, -1534, -4647, -3615, + -6591, -965, -6592, -2411, -3664, -960, -6593, -978, -1943, -6594, -940 + ], + [0, -6595, -1437, -3585, -6596, -3215, -5092, -6597, -3264], + [1, 3, 2104], + [0, 2105, 2106, 2107, 5], + [0, -769, -6598, -1962], + [0, -526, -6066, -548, -559, -664, -932, -1452, -1654], + [0, -6599, -1958, -5923], + [1, 3, 2109], + [0, 2110, 2111, 2112, 4], + [ + 0, -44, -6600, -3946, -6601, -5579, -513, -595, -6602, -682, -709, -5212, -747, -753, -761, -6603, -6604, -6605, + -6606, -5581, -6607, -3135, -6608, -6609, -1398, -1442, -6610, -1452, -6611, -6612, -5216, -1666, -6613, -1942, + -4918, -6614, -6615, -1992, -4930, -4987, -6616, -6617, -6618, -6619, -2027, -2029, -6620, -6621, -2040, -2048, + -2056, -2113, -6622, -4951, -2192, -6623, -2387, -2424, -2489, -2446 + ], + [ + 0, -23, -26, -33, -34, -35, -36, -3396, -5585, -3381, -6624, -38, -3351, -3382, -40, -41, -3744, -3746, -3747, + -3562, -3059, -6625, -6626, -3043, -6627, -6628, -3136, -6629, -3044, -6630, -6631, -5221, -3040, -6632, -3052, + -6633, -6634, -4972, -427, -428, -482, -518, -523, -527, -528, -533, -534, -538, -5596, -3133, -6635, -6636, + -6637, -6638, -661, -668, -5598, -719, -767, -778, -3078, -786, -4977, -5603, -915, -916, -2760, -932, -933, + -940, -951, -958, -959, -962, -963, -969, -6639, -1017, -1021, -4979, -1041, -1074, -1103, -1107, -1168, -1174, + -1252, -5605, -1261, -1344, -1352, -1360, -6640, -1415, -1449, -3134, -1521, -5611, -1534, -1548, -4984, -5613, + -6641, -5615, -1643, -1646, -1650, -1652, -1653, -1662, -1664, -1667, -1792, -1814, -1889, -1908, -1952, -4923, + -6642, -6643, -4986, -2006, -2012, -2013, -2016, -2017, -3145, -3143, -6644, -2028, -6645, -4242, -2098, -5616, + -5617, -3868, -5618, -2125, -5619, -6646, -2281, -4997, -4998, -2282, -4999, -2284, -2335, -2347, -2376, -2410, + -2427, -2437, -6647, -6648, -2501, -6649, -2508, -5628, -5002, -3120, -2534 + ], + [0, -6650, -3099, -2006, -3159, -3095, -3098, -3160, -3161, -3100], + [1, 3, 2114], + [0, 2115, 2116, 2117, 4], + [0, -6651], + [0, -6652, -3037, -1942, -2358, -2410, -4701], + [0, -1076, -2490, -6653, -6654, -6655, -6656, -1080], + [1, 3, 2119], + [0, 0, 2120, 184, 5], + [0, -686, -1344, -2910, -2250, -2322], + [1, 3, 2122], + [0, 2123, 0, 2124, 5], + [ + 0, -81, -66, -3512, -73, -74, -3520, -62, -6660, -3503, -3502, -71, -6661, -79, -83, -68, -72, -80, -82, -85, + -70, -6662, -6663, -6664, -6665, -63, -6666, -3519, -3513, -64, -6667, -76, -54, -6668, -67, -69, -6669, -6670, + -6671, -3521, -6672, -6673, -56, -75, -6674, -55, -6675, -6676, -3515, -6677, -65, -3504, -3511, -6678, -6679, + -52, -3514, -6680, -3526, -77, -6681, -6682 + ], + [0, -3488, -681, -3489, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161], + [1, 3, 2126], + [0, 0, 2127, 2128, 5], + [0, -2384, -2127, -2354, -1339, -1605, -4062, -350, -351], + [0, -2006, -775, -3205, -6683, -682, -2444, -3590], + [1, 3, 2130], + [0, 185, 2131, 2132, 5], + [0, -633, -932, -934, -1336, -1722, -2188, -2471], + [0, -775, -6684], + [1, 3, 2134], + [0, 2135, 2136, 2137, 10], + [0, -824], + [ + 0, -21, -23, -40, -42, -6685, -3136, -3037, -6686, -533, -708, -767, -825, -932, -999, -1344, -1415, -1534, + -1535, -1763, -1942, -2061, -2177, -6687, -2410, -2501 + ], + [0, -2501, -3862, -6688, -3966], + [1, 3, 2139], + [0, 0, 0, 2140, 5], + [0, -5514, -685, -3974], + [1, 3, 2142], + [0, 186, 14, 2143, 8], + [0, -685, -3551, -4792, -6024, -3324, -6690, -6691, -6692, -3346, -6693, -6694, -6695, -1072], + [1, 3, 2145], + [0, 2146, 0, 2147, 5], + [0, -1107, -1000], + [0, -687, -4376, -6696, -6697, -6698, -4377, -4000, -6699, -6700, -6701, -3957, -6702], + [1, 3, 2149], + [0, 0, 2150, 2151, 8], + [0, -519, -2410, -2541], + [0, -687, -6335, -6336, -3974, -4110, -4000, -4111, -4112, -6337, -5554, -4055], + [1, 3, 2153], + [0, 2154, 2155, 2156, 4], + [0, -6703, -922, -6704, -5969, -6705], + [0, -932, -6706, -6707, -6708, -1344, -1534, -1788, -6709, -6710], + [0, -5514, -712, -4000, -3974, -687, -5550, -1573, -5545, -2547], + [1, 3, 2158], + [0, 2159, 2160, 2161, 11], + [0, -2120], + [0, -3037, -519, -2410, -2541], + [0, -687, -5564, -5514, -6711, -6712, -6713, -6714, -4110, -3974, -4000, -3975, -5550, -3958], + [1, 3, 2163], + [0, 0, 0, 2164, 9], + [0, -687], + [1, 3, 2166], + [0, 0, 2167, 2168, 4], + [0, -519, -1575, -6715, -2410, -2541], + [0, -687, -6716, -6717, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, -4116, -4117, -4055], + [1, 3, 2170], + [0, 187, 2171, 2172, 10], + [0, -2198, -6718], + [0, -687, -714, -4002], + [1, 3, 2174], + [0, 2175, 2176, 188, 5], + [0, -1548, -2267, -714], + [0, -6719, -664, -693, -756, -6720, -6721, -1168, -1220, -1231, -1266, -2210, -2211], + [1, 3, 2178], + [0, 117, 2179, 188, 10], + [0, -693, -932, -940, -967, -1415, -6725, -6726, -1942], + [1, 3, 2181], + [0, 2182, 14, 2183, 10], + [0, -2219, -2267], + [0, -6727, -6728, -5554, -6729, -4783, -687, -3974, -4110, -5550, -6730, -5514, -2265], + [1, 3, 2185], + [0, 2186, 2187, 76, 4], + [ + 0, -668, -2387, -1401, -1548, -2177, -1442, -6731, -1077, -2269, -303, -482, -4366, -6732, -480, -5676, -2267, + -6733, -6734, -1366, -6735, -2297, -6736, -6737, -6738, -2591 + ], + [ + 0, -664, -523, -1654, -932, -2379, -4361, -2410, -3035, -3037, -3621, -3044, -3199, -3660, -3048, -665, -6739, + -6740, -4369, -938, -6741, -4373, -4269, -939 + ], + [1, 3, 2189], + [0, 2190, 2191, 2192, 5], + [0, -3922], + [ + 0, -351, -3267, -3136, -3044, -3037, -6742, -427, -428, -6743, -6744, -932, -6745, -969, -1100, -1415, -1548, + -2127, -6746, -2375, -2379, -2410 + ], + [0, -687, -2410, -3215, -6747, -6748, -4377, -5829, -3957], + [1, 3, 2194], + [0, 2195, 2196, 2197, 5], + [0, -6749, -6750, -6751], + [ + 0, -23, -40, -534, -664, -767, -932, -934, -940, -958, -967, -1344, -1471, -1474, -1475, -1482, -1489, -1492, + -1534, -1654, -1942, -2210, -2384, -2417, -2501, -2503 + ], + [0, -699, -6351, -6752], + [1, 3, 2199], + [0, 2200, 55, 2201, 4], + [0, -6753, -999, -6754, -1401, -6755, -6756], + [0, -699, -6351, -6757, -6758, -6759, -2059, -6234, -6760, -6761, -6762, -6763], + [1, 3, 2203], + [0, 2204, 2205, 157, 4], + [0, -2267, -2269, -2528], + [0, -3037, -427, -428, -652, -664, -668, -767, -932, -958, -965, -1166, -1654, -2125, -6313, -2410], + [1, 3, 2207], + [0, 0, 83, 7, 6], + [1, 3, 2209], + [0, 0, 2210, 2211, 10], + [0, -985, -2447, -2334], + [0, -3205, -6683, -682], + [1, 3, 2213], + [0, 2214, 0, 2215, 5], + [0, -689], + [0, -6764, -4340, -6297, -6765, -6716, -4700, -6722, -4000, -640], + [1, 3, 2217], + [0, 0, 2218, 2219, 6], + [0, -633, -6766, -1654, -1693], + [0, -510, -5411, -3262, -6767, -6768], + [1, 3, 2221], + [0, 2222, 2223, 2224, 4], + [0, -1494], + [0, -2198, -1654, -705], + [0, -3974, -4000, -1965, -3959, -5110, -6769, -705], + [1, 3, 2226], + [0, 182, 2227, 2228, 5], + [0, -1510, -1607], + [0, -4004, -1001, -5855], + [1, 3, 2230], + [0, 2231, 2232, 2233, 11], + [0, -4378, -6770, -1442, -6771, -6772], + [0, -932, -940, -1344, -1415, -1534, -1658, -1942], + [0, -4005, -6773, -6774, -708], + [1, 3, 2235], + [0, 2236, 2237, 2238, 6], + [0, -6775, -6776, -6777, -6778, -6779, -6780, -6781], + [0, -6782], + [0, -3496, -707], + [1, 3, 2240], + [0, 0, 2241, 189, 10], + [0, -849, -6783, -1304, -1600, -2424], + [1, 3, 2243], + [0, 0, 2244, 189, 4], + [0, -23, -40, -4691, -709, -849, -1304, -6785, -1600, -1978, -2424, -2501], + [1, 3, 2246], + [0, 2247, 2248, 2249, 4], + [0, -3523, -2741], + [0, -1654, -2384, -2541], + [0, -712, -5535, -775], + [1, 3, 2251], + [0, 0, 0, 2252, 5], + [0, -3974, -3770, -712, -5514], + [1, 3, 2254], + [0, 0, 2255, 2256, 5], + [0, -932, -936], + [0, -5514, -3974, -714], + [1, 3, 2258], + [0, 2259, 2260, 2261, 11], + [0, -2269, -6786], + [0, -526, -559, -668, -2320, -2322], + [0, -6787, -5554, -5514, -4000, -3974, -4001, -4002], + [1, 3, 2263], + [0, 0, 2264, 2265, 6], + [0, -1003, -1452, -1654], + [0, -687, -3957, -6788], + [1, 3, 2267], + [0, 2268, 190, 2269, 11], + [0, -6789, -6790, -1551, -6791], + [0, -4378, -1838, -6748, -4377, -5829, -6792, -3215, -6747, -687, -3957, -6722], + [1, 3, 2271], + [0, 2272, 2273, 2274, 4], + [0, -6789, -6793, -6794, -6791], + [0, -350, -351, -1448, -2127, -2337], + [0, -3974, -4376, -6795, -3262], + [1, 3, 2276], + [0, 0, 2277, 2278, 4], + [0, -2384, -1415, -932, -1110, -2375, -1942, -190, -2410, -3136, -3037, -2411, -959, -940], + [0, -719, -3957, -5829, -3215, -687, -6748, -4377, -4378], + [1, 3, 2280], + [0, 2281, 2282, 2283, 5], + [0, -1107, -815, -1548, -6796, -6797, -1077, -1376, -1646, -3767, -2270, -831, -6798, -2271, -796], + [ + 0, -1788, -664, -2446, -1654, -2210, -1104, -2177, -708, -1753, -21, -1365, -1972, -23, -43, -2174, -40, -1656, + -539, -6799, -6800, -6801, -36, -741 + ], + [0, -5890, -3240, -3276, -6802, -720], + [1, 3, 2285], + [0, 2286, 2287, 146, 4], + [0, -86, -3534], + [0, -3536, -3537, -3535], + [1, 3, 2289], + [0, 0, 2290, 2291, 6], + [ + 0, -526, -528, -535, -546, -6017, -558, -566, -708, -767, -855, -932, -940, -967, -1415, -1639, -1942, -2125, + -2127, -2128, -2137, -2143, -2517 + ], + [ + 0, -5839, -525, -4795, -6803, -3184, -6804, -6805, -3264, -6806, -6807, -6722, -6808, -6809, -6810, -6811, + -6812, -6813, -6814, -6815, -2265, -6816, -6817, -6818, -6819, -3110 + ], + [1, 3, 2293], + [0, 0, 55, 2294, 6], + [0, -5389, -6820, -997, -6821, -6822, -5078, -6823], + [1, 3, 2296], + [0, 2297, 191, 2298, 5], + [0, -651, -6824, -812, -5397, -6825, -2155, -2453], + [0, -724, -6826, -6827, -5401, -1004, -6828, -1334, -5827], + [1, 3, 2300], + [0, 2301, 31, 7, 4], + [0, -6829, -1370, -2062, -5972], + [1, 3, 2303], + [0, 2304, 2305, 2306, 4], + [0, -2153, -668, -2550, -2369, -2194, -2297], + [ + 0, -1344, -932, -2469, -928, -1110, -1942, -190, -2410, -3037, -1534, -3610, -3041, -6830, -6831, -2411, -6832, + -3664, -2156, -4373, -6593, -6833, -940, -967, -6834, -6835, -4814 + ], + [0, -6836, -5920, -5921, -726, -3957, -6837], + [1, 3, 2308], + [0, 2309, 2310, 2311, 4], + [0, -1460], + [0, -3037, -652, -711, -6838, -6839, -6840, -3589, -2105, -2177, -2362, -2379, -2410, -2424, -6841, -2548], + [0, -6842, -727, -3870, -6843, -6844, -6845, -5558], + [1, 3, 2313], + [0, 2314, 55, 2315, 4], + [0, -6846, -3780, -1119, -6847, -6848], + [0, -727, -4634, -6005, -3870, -6849, -6850, -4055, -6582, -6851, -6852, -6853], + [1, 3, 2317], + [0, 2318, 2319, 2320, 4], + [0, -812, -1045, -1840, -2445], + [0, -932, -1654, -1788, -2293], + [0, -3161, -3578, -5401, -729, -6854], + [1, 3, 2322], + [0, 0, 84, 2323, 11], + [0, -729, -1004, -6855, -3556], + [1, 3, 2325], + [0, 0, 2326, 7, 4], + [0, -932, -1415, -2210], + [1, 3, 2328], + [0, 2329, 2330, 2331, 4], + [0, -812, -6856], + [ + 0, -5028, -86, -3307, -3244, -190, -3198, -3617, -3733, -3037, -4203, -427, -428, -519, -652, -708, -932, -940, + -954, -967, -1004, -1010, -1103, -1344, -1534, -1671, -1771, -1806, -1942, -2251, -2293, -2892, -2402, -2410 + ], + [0, -729, -6857, -1671, -6858, -1004], + [1, 3, 2333], + [0, 0, 2334, 2335, 5], + [0, -2581, -3733, -3037, -3664, -1010, -2379, -2410, -2466, -6859, -2469], + [0, -729, -2071, -6858, -1004], + [1, 3, 2337], + [0, 0, 2338, 2339, 8], + [0, -6447, -3037, -3664, -672, -6860, -932, -944, -6861, -1942, -6862, -6570, -2267, -2410, -2423, -2469], + [0, -4000, -3444, -6863, -6864, -687, -6198, -2427, -1965, -6865, -3276, -6324, -6866], + [1, 3, 2341], + [0, 0, 2342, 2343, 5], + [ + 0, -2541, -519, -864, -6867, -6868, -888, -6869, -1974, -6870, -6871, -6872, -6873, -6874, -6875, -2310, -6876, + -6877, -1344, -6878, -2006, -6879, -932, -6880, -6881, -6882, -1548, -6883, -2177, -6884, -6885, -6886, -1053, + -6887, -6888, -1310, -1689, -1783, -6889, -2019, -1276, -2094, -6890, -2424, -6891, -23, -6892, -1534, -6893, + -6894, -710, -6895, -6896, -6897, -6898, -41, -2099, -946 + ], + [0, -6899, -3110, -6107], + [1, 3, 2345], + [0, 0, 2346, 2347, 6], + [0, -652, -932, -943, -958, -963, -966, -968, -974], + [0, -736, -1334, -6900, -4616], + [1, 3, 2349], + [0, 0, 2350, 2351, 5], + [0, -1788, -1654, -932, -821, -966, -958, -968, -943, -974], + [0, -737, -1334, -4610, -4616, -6901], + [1, 3, 2353], + [0, 2354, 0, 2355, 4], + [0, -6902, -6903, -1630, -6904, -6905, -5983, -6906, -6907], + [0, -739, -6908, -5887, -1573, -687], + [1, 3, 2357], + [0, 2358, 0, 2359, 9], + [0, -1630, -6909, -6910, -739], + [0, -687, -5732, -739, -6908, -5887, -1573], + [1, 3, 2361], + [0, 2362, 0, 2363, 11], + [0, -6911], + [0, -739, -6912, -6913], + [1, 3, 2365], + [0, 0, 2366, 2367, 4], + [0, -6914, -2319], + [0, -5845, -6915, -6916, -6917, -4865, -812], + [1, 3, 2369], + [0, 0, 2370, 2371, 5], + [0, -6918, -3664, -6919, -2410, -2469], + [0, -743, -6920], + [1, 3, 2373], + [0, 2374, 81, 2375, 4], + [0, -743, -746], + [0, -743, -5401], + [1, 3, 2377], + [0, 2378, 2379, 2380, 10], + [0, -6920, -812, -6825, -2155], + [0, -729, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293], + [0, -729, -1004, -5401, -6858], + [1, 3, 2382], + [0, 0, 0, 2383, 4], + [0, -743, -6921, -6922], + [1, 3, 2385], + [0, 2386, 2387, 2388, 4], + [0, -6923], + [0, -633, -1646, -1719, -6924, -1813, -6925, -2416], + [0, -699, -6351, -4865], + [1, 3, 2390], + [0, 2391, 2392, 2393, 4], + [0, -2654, -1108, -2168, -1759, -2182], + [ + 0, -824, -1415, -1344, -1623, -774, -932, -825, -1110, -6926, -2501, -1942, -767, -21, -190, -533, -2410, -23, + -3037, -1041, -1534, -1771, -86, -965, -3560, -2251, -40, -2411, -6927, -959, -960, -32, -958, -6928, -6929, + -978, -940, -967, -3748, -6930, -3307 + ], + [0, -2501, -3862, -6931, -6932, -6351], + [1, 3, 2395], + [0, 2396, 2397, 7, 4], + [0, -1107, -1645, -1650, -6933, -2347, -2430, -2550], + [0, -2125, -2322, -2320], + [1, 3, 2399], + [0, 0, 27, 2400, 4], + [0, -6934, -6935, -3262, -6936, -6937, -6938], + [1, 3, 2402], + [0, 2403, 2404, 2405, 4], + [0, -1559, -750, -6939], + [0, -3040, -3052, -2410, -2006, -2019], + [0, -2006, -2410, -6935, -6940, -6941], + [1, 3, 2407], + [0, 2408, 2409, 2410, 4], + [0, -728, -6942, -6943, -6944, -3496, -999, -1758, -2177, -2313], + [0, -6945, -652, -1412, -2123], + [0, -752, -3323, -687], + [1, 3, 2412], + [0, 0, 0, 2413, 5], + [ + 0, -6946, -6947, -6948, -6949, -6950, -6951, -6952, -6953, -6954, -6955, -6956, -6957, -6958, -6959, -6960, + -6961, -6962, -6963, -6964, -6965, -6966, -6967, -6968, -6969, -6970, -6971, -6972, -6973, -6974, -6975, -6976, + -6977, -6978, -6979, -6980, -6981, -6982, -6983, -6984, -6985, -6986, -6987, -6988, -3582, -6989, -5396 + ], + [1, 3, 2415], + [0, 2416, 2417, 2418, 4], + [0, -1792, -2453], + [0, -465, -932, -1004, -1654, -1788, -2293], + [0, -754, -1004, -729, -5401], + [1, 3, 2420], + [0, 2421, 2422, 2423, 6], + [0, -5672, -1362, -1442, -6990], + [ + 0, -3660, -3037, -6991, -427, -428, -3899, -767, -932, -6992, -940, -948, -958, -966, -979, -1344, -1534, -6689, + -1942, -6993, -2410, -2469 + ], + [0, -6994, -3870, -727], + [1, 3, 2425], + [0, 2426, 2427, 2428, 4], + [0, -1442, -6995, -6996, -1646, -2105], + [0, -1654, -1788, -2198, -2200, -2210, -2541], + [0, -4005, -756], + [1, 3, 2430], + [0, 2431, 2432, 2433, 4], + [0, -6997, -1111, -1630], + [0, -519, -999, -1849, -6909, -2541], + [ + 0, -5732, -687, -6351, -6998, -6997, -6656, -6999, -702, -1076, -5827, -1107, -7000, -1705, -5922, -7001, -6582, + -5398, -7002 + ], + [1, 3, 2435], + [0, 2436, 2437, 2438, 4], + [0, -1116, -7003, -674, -7004, -7005, -1351, -7006], + [0, -652, -519, -2392, -1722, -2210, -932, -1110, -190, -7007, -2410, -3037, -2364, -2411], + [0, -3214, -758, -7008, -6596, -6531, -1437, -3967, -1334, -1342, -5735, -1116, -2105, -2435, -5150, -6826], + [1, 3, 2440], + [0, 0, 0, 2441, 11], + [0, -759, -7009, -7010, -7011, -7012, -7013, -7014, -7015, -7016, -7017, -7018, -7019, -7020], + [1, 3, 2443], + [0, 2444, 2445, 2446, 5], + [0, -7021, -1370, -6001, -7022, -7023], + [0, -5935, -2155, -2250, -2320, -2322], + [0, -770], + [1, 3, 2448], + [0, 2449, 2450, 41, 5], + [0, -1580, -1792], + [0, -1415, -1967, -2006, -2019, -2501], + [1, 3, 2452], + [0, 2453, 2454, 2455, 10], + [ + 0, -28, -7024, -683, -722, -7025, -7026, -812, -1047, -1099, -1111, -1116, -7027, -1366, -7028, -1393, -1435, + -1548, -1549, -1591, -1630, -7029, -5668, -7030, -1863, -1876, -1889, -7031, -7032, -7033, -2103, -2218, -2331, + -2347, -2460 + ], + [0, -510, -767, -1045, -1098, -1415, -1722, -7034, -2187, -7035, -2261, -2463, -2541], + [0, -762, -1847, -775, -7036], + [1, 3, 2457], + [0, 2458, 2459, 2460, 8], + [0, -3620, -3222], + [ + 0, -86, -190, -7037, -7038, -7039, -3470, -7040, -3471, -3472, -7041, -7042, -367, -7043, -3136, -3037, -4372, + -767, -932, -940, -959, -967, -1344, -1415, -1534, -1942, -2174, -2210, -2410, -2411 + ], + [0, -763, -7044, -7045, -7046, -2166, -7047, -7048], + [1, 3, 2462], + [0, 0, 0, 2463, 4], + [0, -763, -3577, -3445, -3215, -764, -7046, -2166, -7049, -4107, -5418, -6201, -7050], + [1, 3, 2465], + [0, 0, 2466, 2467, 4], + [ + 0, -5285, -5291, -7051, -7052, -7053, -7054, -7055, -7056, -7057, -3037, -932, -7058, -954, -958, -960, -964, + -965, -7059, -968, -971, -978, -1110, -7060, -1608, -7061, -1768, -1942, -2910, -7062, -2402, -2410, -7063 + ], + [0, -763, -7050, -2166, -765, -3577, -3445], + [1, 3, 2469], + [0, 2470, 0, 2471, 4], + [0, -7064, -7065], + [ + 0, -6527, -7066, -6932, -7067, -7068, -7069, -7070, -7071, -7072, -7073, -7074, -7075, -7076, -7077, -3264, + -775, -3214, -3577, -3578 + ], + [1, 3, 2473], + [0, 2474, 2475, 2476, 5], + [0, -7078, -769], + [0, -7079, -7080, -3037, -3664, -3665, -932, -1942, -2410, -2469, -7081], + [0, -7082, -7083, -7084, -7085], + [1, 3, 2478], + [0, 2479, 2480, 2481, 5], + [0, -1729], + [ + 0, -1788, -664, -1722, -1344, -1654, -2550, -2125, -2127, -2177, -708, -1004, -2501, -2250, -720, -2410, -3035, + -3037, -617, -1534, -2186, -2503, -3621, -2516, -86, -2251, -4063, -1655, -6483, -796, -7086, -3307 + ], + [0, -4213, -1334, -2435, -1961, -510, -5867, -6201, -6198, -3966, -2006, -5269, -4865, -6989, -5388, -2533, -5998], + [1, 3, 2483], + [0, 2484, 2485, 2486, 6], + [0, -2518, -7087, -7088], + [0, -1415, -1344, -932, -1650, -2125, -527, -533, -1534, -86, -2251, -7089, -7090, -3307], + [0, -7091, -7092, -7084, -7085, -7093, -7094, -7095, -7096], + [1, 3, 2488], + [0, 2489, 2490, 7, 5], + [0, -7097, -7098, -7099, -760, -7100, -7101, -7102, -1370, -7103, -7104, -1995, -7105], + [0, -5834, -932, -5935, -1788, -1798, -7106, -2155, -2177, -2322], + [1, 3, 2492], + [0, 0, 0, 2493, 5], + [ + 0, -7107, -770, -7108, -7109, -7110, -7111, -7112, -7113, -7114, -7115, -7116, -7117, -7118, -7119, -7120, + -7121, -7122, -7123, -7124, -7125 + ], + [1, 3, 2495], + [0, 192, 2496, 2497, 4], + [0, -652, -932, -7126, -958, -964, -966, -967, -1654, -7127, -1771, -1942], + [0, -6838, -3215], + [1, 3, 2499], + [0, 2500, 2501, 2502, 4], + [ + 0, -7128, -7129, -7130, -7131, -7132, -7133, -7134, -481, -668, -6793, -719, -7135, -7136, -7137, -7138, -7139, + -7140, -7141, -7142, -2177, -2654 + ], + [0, -4036, -3199, -1639, -1645], + [0, -7143, -7144, -707, -6513, -6514, -7145, -7146, -7147, -7148], + [1, 3, 2504], + [0, 2505, 2506, 2507, 4], + [0, -1370, -2231, -7149], + [0, -1654, -2198, -1612, -651], + [0, -775, -3215, -3270, -3271], + [1, 3, 2509], + [0, 0, 2510, 2511, 9], + [0, -190, -7150, -7151, -932, -1889, -2127, -2447], + [0, -1889, -3583, -775, -4159, -7152, -7153, -7154], + [1, 3, 2513], + [0, 0, 2514, 2515, 5], + [ + 0, -7155, -4647, -3621, -3037, -4201, -7156, -932, -7157, -940, -967, -7158, -1344, -7159, -1449, -1534, -1654, + -1763, -1942, -2923, -7160, -2410, -7161, -7162 + ], + [0, -775, -7163, -4108], + [1, 3, 2517], + [0, 2518, 2519, 2520, 4], + [0, -2773, -1889, -7164, -1915, -7165, -2791, -1934, -2177], + [ + 0, -21, -23, -40, -86, -3307, -7166, -533, -767, -774, -825, -920, -932, -940, -958, -1041, -1344, -1415, -1419, + -1521, -1522, -1534, -1623, -1643, -1771, -1908, -1927, -1942, -2162, -2163, -2251, -2269, -2275, -2286, -2287, + -2437, -2501 + ], + [0, -2501, -775, -5932, -2435, -6024], + [1, 3, 2522], + [0, 2523, 2524, 2525, 5], + [0, -784, -1889, -1429, -2168, -2182, -3180], + [ + 0, -824, -2746, -1415, -2162, -1344, -1623, -774, -932, -825, -928, -1110, -2289, -2501, -7167, -1942, -683, + -767, -21, -190, -533, -778, -2410, -23, -7168, -7169, -3037, -1534, -1771, -2163, -3751, -86, -965, -3560, + -7170, -2251, -40, -959, -748, -960, -958, -7171, -6929, -978, -940, -967, -1643, -3748, -6930, -3307 + ], + [0, -784, -775, -2746, -683, -5055, -928, -2501, -7172, -7173, -7174, -1644, -6684, -7175, -7176], + [1, 3, 2527], + [0, 2528, 2529, 2530, 4], + [0, -7177, -2888, -6584, -2788, -6585], + [0, -2386, -2469, -2410, -3037, -1333, -2581, -7178, -7179, -3664], + [0, -775, -3585, -7180], + [1, 3, 2532], + [0, 2533, 2534, 2535, 4], + [0, -1620, -2232], + [0, -652, -7181, -928, -932, -7182, -1654, -2127], + [0, -775, -3272, -3579, -3215, -7183, -7184, -3262, -5260, -4132, -3926], + [1, 3, 2537], + [0, 0, 2538, 2539, 4], + [0, -7150, -635, -1107, -1889, -1891, -1927, -2177, -2281, -2282, -7185], + [0, -775, -7186, -4682, -7187], + [1, 3, 2541], + [0, 0, 2542, 2543, 4], + [0, -526, -558, -708, -1127, -6114, -1405, -1654, -2081, -2111], + [0, -775, -5559, -7188, -2265, -3673], + [1, 3, 2545], + [0, 2546, 2547, 2548, 4], + [0, -1532, -7189], + [0, -518, -1889, -7190, -7191], + [0, -775, -6454, -1644, -7192, -7193, -1889, -3583], + [1, 3, 2550], + [0, 2551, 2552, 2553, 11], + [0, -7194, -7195, -781, -1582], + [0, -7196, -7197, -932, -940, -967, -1110, -1942], + [0, -7198, -7199, -7200], + [1, 3, 2555], + [0, 0, 2556, 2557, 4], + [ + 0, -23, -40, -42, -190, -7150, -7201, -7202, -5685, -3136, -4647, -3037, -6630, -7203, -533, -668, -679, -781, + -940, -967, -1059, -1415, -1449, -1620, -1942, -2091, -2392, -2393, -2410, -2411 + ], + [0, -775, -5553, -2410, -5411, -2414, -3694, -3762], + [1, 3, 2559], + [0, 2560, 2561, 2562, 5], + [0, -7204, -743, -1335, -746], + [0, -1788, -1654, -932, -729, -2293, -617, -744, -745, -966, -958, -968, -943, -963, -974], + [0, -7204, -7205, -5401, -1004], + [1, 3, 2564], + [0, 2565, 2566, 2567, 4], + [0, -789, -790, -791, -2262], + [0, -351, -3621, -3037, -885, -1654, -1942, -2127, -2135, -2136, -2198, -2379, -2410], + [0, -3966, -788, -7206, -3215, -1838, -3270, -6231, -6408, -5827, -3960, -7207, -3445, -3100], + [1, 3, 2569], + [0, 0, 2570, 2571, 5], + [0, -351, -3621, -3037, -815, -885, -1654, -1942, -2127, -2135, -2136, -2198, -2379, -2410], + [0, -5827, -3960, -788, -7208, -3445, -3100], + [1, 3, 2573], + [0, 0, 2574, 2575, 5], + [ + 0, -351, -3621, -3037, -789, -7209, -815, -885, -1654, -7210, -1942, -2127, -2135, -2136, -2198, -2262, -2379, + -2410 + ], + [0, -788, -1838, -3215, -5845, -7206, -5827, -3445, -3100], + [1, 3, 2577], + [0, 0, 2578, 2579, 9], + [0, -351, -3621, -3037, -789, -815, -885, -1004, -1654, -1942, -2127, -2135, -2136, -2198, -2379, -2410], + [0, -788, -6231, -3270, -3445, -3100], + [1, 3, 2581], + [0, 34, 2582, 2583, 4], + [0, -7211, -3621, -3037, -543, -756, -1646, -1654, -1788, -2210, -2375, -2379, -2410, -2417, -2501, -2503], + [0, -788, -7212, -7213, -792, -4055, -7214, -7215, -7216, -7217, -7218], + [1, 3, 2585], + [0, 2586, 2587, 149, 8], + [ + 0, -1693, -1107, -714, -1548, -2456, -1040, -3635, -2114, -615, -7219, -1959, -719, -1399, -695, -5203, -3611, + -7220, -3610, -7221, -1366, -7222, -7223, -7224, -930, -3608, -7225, -3604 + ], + [ + 0, -1788, -2359, -664, -1654, -2210, -932, -729, -753, -571, -1077, -1689, -1942, -7226, -756, -21, -633, -2211, + -23, -528, -711, -2187, -43, -3630, -3633, -40, -966, -951, -2082, -958, -539, -968, -940, -943, -967, -974, + -6034 + ], + [1, 3, 2589], + [0, 0, 2590, 2591, 4], + [0, -556, -558, -566, -633, -932, -7227, -1339, -1650, -7228, -2322, -2339, -2416, -7229, -2491], + [0, -7230, -7231, -7232, -7233, -2446], + [1, 3, 2593], + [0, 2594, 0, 2595, 4], + [ + 0, -2359, -5413, -668, -809, -812, -999, -7234, -2555, -640, -1536, -1548, -7235, -680, -1040, -1958, -615, + -6797, -910, -1077, -1646, -7236, -719, -2369, -2430, -3628, -690, -695, -7237, -722, -1018, -1574, -1948, + -7238, -7239, -995, -5987, -2297, -7240, -7241, -2313, -1394, -3626 + ], + [0, -4864, -4865, -795, -7242, -4866, -4867, -4868, -3095, -7243, -4043, -7244, -7245, -4004, -3634], + [1, 3, 2597], + [0, 2598, 2599, 7, 5], + [0, -668, -7246, -2524, -720, -1564, -3532, -7247], + [0, -664, -1654, -2177, -1942, -3035, -755, -3621, -1660, -2174], + [1, 3, 2601], + [0, 2602, 2603, 2604, 5], + [ + 0, -7248, -7249, -7250, -7251, -7252, -7253, -7254, -7255, -798, -7256, -7257, -6258, -7258, -7259, -799, -801, + -7260, -7261, -7262, -7263, -7264, -7265, -7266, -7267, -7268, -800, -7269, -7270, -7271, -7272 + ], + [0, -1654, -932, -2127, -2468, -7273, -2967, -4062, -7274, -3266, -351], + [0, -797, -5092, -7275, -3839, -5176, -659], + [1, 3, 2606], + [0, 2607, 2608, 2609, 8], + [0, -7276], + [0, -351, -7248, -7262, -932, -1449, -1654, -2127, -2140], + [0, -797, -7277, -7278, -7279, -7280, -7281, -7282, -7283, -5839], + [1, 3, 2611], + [0, 2612, 2613, 2614, 10], + [0, -798, -7261, -7270, -7254, -7271], + [0, -6258, -932, -1654, -2127, -2140], + [0, -797, -7277, -7069, -7275], + [1, 3, 2616], + [0, 0, 2617, 2618, 5], + [0, -932, -1449, -1654, -2127, -2140], + [0, -797, -7277, -5092, -7284, -7285], + [1, 3, 2620], + [0, 2621, 2622, 2623, 6], + [0, -7253], + [0, -7264, -932, -1654, -2127, -2140], + [0, -797, -7277, -6524, -7275, -659, -3839], + [1, 3, 2625], + [0, 2626, 0, 2627, 5], + [0, -1049], + [0, -3577, -7286, -5176, -3913], + [1, 3, 2629], + [0, 0, 0, 2630, 4], + [ + 0, -803, -2316, -2318, -7287, -7288, -7289, -7290, -7291, -7292, -7293, -7294, -7295, -7296, -7297, -7298, + -2006, -775, -3160, -2476, -3095, -3161, -1713, -3577, -7299, -4101, -7300, -2299, -2834, -5511, -7301 + ], + [1, 3, 2632], + [0, 0, 14, 2633, 9], + [ + 0, -7302, -1646, -6792, -7303, -4377, -5272, -687, -1758, -719, -7304, -3957, -5543, -7305, -7306, -7307, -7308, + -1838, -3215, -4378 + ], + [1, 3, 2635], + [0, 2636, 2637, 7, 4], + [ + 0, -7309, -469, -510, -668, -715, -754, -763, -1004, -1376, -7310, -1625, -1666, -1953, -2105, -7311, -7312, + -7313, -2549, -2550 + ], + [0, -526, -556, -559, -664, -1654, -2106, -5331], + [1, 3, 2639], + [0, 0, 2640, 7, 10], + [ + 0, -7314, -2392, -7315, -3915, -2210, -932, -7316, -1548, -2469, -2402, -1050, -1942, -756, -21, -7057, -1874, + -2205, -2214, -2410, -23, -3037, -7317, -7318, -4372, -7319, -3704, -3044, -7320, -5286, -4773, -40, -7321, + -3664, -2832, -42, -428, -7322, -427, -7323 + ], + [1, 3, 2642], + [0, 0, 2643, 7, 5], + [0, -1654, -2416, -21, -23, -40], + [1, 3, 2645], + [0, 0, 2646, 2647, 5], + [ + 0, -21, -23, -5870, -40, -3472, -527, -533, -537, -767, -932, -934, -958, -959, -7324, -1413, -1415, -1471, + -1481, -1488, -1662, -1666, -1667, -1705, -1939, -1942, -2127, -2128, -2140, -2214, -2410 + ], + [0, -809, -4121, -4123, -1361, -1666], + [1, 3, 2649], + [0, 2650, 2651, 2652, 4], + [0, -596, -1723], + [0, -7325], + [0, -510, -6367, -7326, -7327], + [1, 3, 2654], + [0, 0, 118, 2655, 5], + [0, -811, -7328, -5924, -7329, -7330, -6729, -7331, -7332, -7333, -7334, -7335], + [1, 3, 2657], + [0, 2658, 2659, 2660, 4], + [0, -1681], + [0, -627, -633, -756, -1471, -1472, -1475, -1482, -1654, -1657, -2210, -2541], + [0, -812, -1573, -7336], + [1, 3, 2662], + [0, 0, 14, 2663, 4], + [0, -813, -7337, -656, -7338, -6514, -6515, -6516, -2265, -5554, -5845], + [1, 3, 2665], + [0, 2666, 2667, 2668, 10], + [0, -7339, -7340, -7341, -7342, -1119, -1591, -1866, -7343], + [0, -985, -7344, -1849, -1866, -2125], + [0, -7345, -7346, -814, -7347, -2323, -7348, -7349, -5408, -2432], + [1, 3, 2670], + [0, 0, 2671, 2672, 8], + [ + 0, -21, -40, -42, -4646, -7350, -7057, -3330, -3136, -427, -428, -535, -6046, -7351, -774, -932, -7352, -954, + -959, -960, -961, -963, -965, -7353, -7354, -971, -7355, -1344, -1415, -7356, -1498, -1534, -1608, -1609, -1768, + -7357, -1942, -7358, -1945, -2091, -7359, -2391, -2410, -7360 + ], + [0, -815, -6818, -7361, -3184], + [1, 3, 2674], + [0, 0, 2675, 2676, 5], + [0, -3136, -1637, -2375], + [0, -7362, -7363, -5839, -7364, -7365, -7366, -7367], + [1, 3, 2678], + [0, 2679, 0, 2680, 8], + [0, -7368], + [0, -7208, -7369, -7370, -1015, -3589, -1631, -702, -6351, -3755, -6545, -7371, -7372, -7373, -7374, -7375, -3589], + [0, 68, 15, 16, 4], + [1, 3, 2683], + [0, 0, 2684, 2685, 5], + [0, -4055, -1654, -932, -1548, -2125, -1753, -615, -7376, -1003, -2416, -821, -964, -1656], + [0, -834, -7377, -7378, -7379], + [1, 3, 2687], + [0, 0, 2688, 2689, 5], + [0, -7380, -1654, -932, -1405, -589, -756, -7381, -1559, -3311, -7382, -7383, -7384, -350, -7385], + [0, -7386, -7387, -7388, -3634], + [1, 3, 2691], + [0, 2692, 2693, 2694, 10], + [ + 0, -7389, -655, -7390, -6503, -7391, -7392, -7393, -7394, -7395, -1402, -5849, -1795, -1797, -7396, -7397, + -7398, -7399, -7400 + ], + [0, -5834, -515, -516, -7401, -932, -1065, -7402, -1283, -7403, -1365, -1777, -1788, -3335, -2156, -2177, -2322], + [0, -7404, -6439, -7378], + [1, 3, 2696], + [0, 0, 70, 2697, 4], + [0, -822, -1015, -6545, -7371, -2546, -702, -1631, -4055], + [1, 3, 2699], + [0, 0, 2700, 2701, 9], + [0, -3037, -7405, -1396, -7406, -2127, -2131, -2137, -2322, -2379, -2410, -2416], + [0, -1631, -6545, -1015, -6351, -702, -7371], + [1, 3, 2703], + [0, 2704, 2705, 2706, 5], + [0, -1111, -1393, -7407, -7408, -1826, -7409, -2218], + [0, -519, -589, -2331, -2384, -2541], + [ + 0, -6693, -6999, -7410, -7411, -6694, -7412, -7413, -7414, -6688, -7415, -7416, -6695, -7417, -2125, -7418, + -1107, -7419, -6656, -7420, -7421, -1076, -7422 + ], + [1, 3, 2708], + [0, 2709, 2710, 2711, 10], + [0, -824, -1630, -7409], + [0, -519, -999, -7423, -2541], + [ + 0, -5732, -687, -6693, -824, -6694, -7412, -7413, -7414, -6688, -7415, -7416, -6695, -7417, -2125, -7418, -1107, + -6656, -6999, -7420, -7421, -1076, -7422, -7085 + ], + [1, 3, 2713], + [0, 2714, 2715, 2716, 6], + [0, -7424, -7425], + [0, -7426, -7427, -2384, -2541], + [ + 0, -1961, -2114, -826, -7428, -4116, -7429, -7430, -7431, -5389, -6302, -2634, -7432, -826, -510, -5867, -5923, + -615, -7433, -7434, -6555 + ], + [1, 3, 2718], + [0, 2719, 2720, 2721, 10], + [ + 0, -812, -1460, -2550, -1353, -1548, -2177, -1442, -2114, -7435, -6651, -656, -1645, -7436, -1686, -755, -1048, + -2115, -25, -7437, -46, -7438, -3230, -6033 + ], + [ + 0, -1788, -1654, -932, -2198, -2299, -1077, -1942, -767, -21, -1972, -2410, -23, -528, -7439, -39, -43, -40, + -964, -969, -933, -958, -539, -940, -962, -967, -535, -5585 + ], + [0, -7440, -7441, -5897, -7442, -827, -6137, -3015, -3016], + [1, 3, 2723], + [0, 0, 2724, 2725, 6], + [0, -589, -585, -932, -943, -958, -963, -966, -968, -974, -1405, -1654, -2155, -2418], + [0, -7443, -7444], + [1, 3, 2727], + [0, 2728, 2729, 7, 4], + [0, -812, -5892, -1111, -7445, -1639, -1646, -1872, -7446, -2114], + [0, -7447, -1344, -3781, -1771, -2250], + [1, 3, 2731], + [0, 0, 14, 2732, 10], + [0, -6806, -7448, -6659, -7449, -7450, -707, -2265, -5554, -6916, -7451, -7452], + [1, 3, 2734], + [0, 2735, 2736, 2737, 5], + [0, -6558], + [0, -7453, -3621, -3037, -7454, -932, -7455, -999, -7456, -2269, -2386, -7457, -2410], + [0, -6659, -7458], + [1, 3, 2739], + [0, 0, 2740, 2741, 6], + [ + 0, -1788, -2384, -664, -1471, -1654, -932, -2127, -1110, -2501, -767, -2416, -190, -2410, -23, -1482, -534, + -1492, -5758, -43, -40, -2411, -2505, -1483, -2832, -539, -1490 + ], + [0, -834, -7459, -7378, -7460, -5554, -4055, -775, -3214], + [1, 3, 2743], + [0, 2744, 2745, 2746, 8], + [0, -834, -7461], + [ + 0, -190, -7462, -7463, -3136, -3037, -7464, -7465, -518, -645, -699, -748, -778, -784, -932, -959, -968, -1041, + -1110, -1276, -7466, -1331, -1344, -7467, -7468, -1415, -1534, -1607, -1643, -1650, -1758, -1889, -1891, -1906, + -1908, -1927, -1942, -2375, -2376, -2379, -2410, -2411, -2437, -2501, -2503, -2505, -2516 + ], + [0, -5889, -834, -3240, -7469, -6722, -7470, -7471, -7472, -4131, -3240, -712, -3264, -835, -7473, -7474], + [1, 3, 2748], + [0, 119, 120, 2749, 4], + [ + 0, -7477, -7478, -7479, -7480, -7481, -7482, -7483, -3214, -7484, -7485, -3756, -2410, -7486, -4165, -3018, + -7487, -7488, -3966, -4336, -7489, -7490, -7491, -7492, -7493, -7494, -7495, -7496, -7497, -3552, -7498, -7499, + -7500, -1847, -7501, -7502, -7503, -7504, -7505, -7506, -7507, -7508, -7282, -7509, -7510, -7511, -7512, -7513, + -7514, -7515, -7516, -7517, -7518, -7519, -7520, -7521, -5150, -7522, -7523, -7524, -7525, -7526, -7527, -7528, + -7529, -7530, -7531, -7532, -7533, -6582, -7534, -7535, -7536, -7537, -7538, -7539, -7540, -7541, -7542, -7543, + -7544, -7545, -7546, -7547, -7548, -6948, -7549, -7550, -7551, -7552, -7553, -7554, -7555, -7556, -7557, -2444, + -7558, -7559, -5063, -7560, -7561, -7562, -6187, -7563, -856, -7275 + ], + [1, 3, 2751], + [0, 0, 2752, 2753, 6], + [0, -664, -665, -1127, -1144, -1149, -1156, -1452, -1453, -1542, -1654], + [0, -664, -6537, -4865, -3634], + [1, 3, 2755], + [0, 2756, 56, 57, 4], + [0, -7564, -7565, -840, -1406, -1744], + [1, 3, 2758], + [0, 2759, 2760, 2761, 6], + [0, -2387, -2426, -7567, -3675, -151, -3676, -1025, -7568, -3677, -7569, -3678, -3679, -7570], + [ + 0, -2384, -1415, -3682, -932, -2388, -879, -1942, -767, -2410, -3037, -7571, -3683, -3685, -3686, -3687, -428, + -427 + ], + [0, -3689, -3690, -7572, -3323, -3966, -3692], + [1, 3, 2763], + [0, 2764, 0, 7, 4], + [0, -2416, -1044, -1813], + [1, 3, 2766], + [0, 2767, 2768, 193, 8], + [0, -6789, -7573, -7574, -7575, -1276, -1610, -7576], + [0, -7577], + [1, 3, 2770], + [0, 2771, 0, 2772, 6], + [0, -1448], + [0, -843, -856, -1446, -7578, -1599, -3862], + [1, 3, 2774], + [0, 0, 0, 2775, 9], + [0, -7579, -7580, -7581, -7582, -3445, -6809], + [1, 3, 2777], + [0, 2778, 31, 2779, 10], + [0, -7583, -7584, -7585], + [0, -7586, -7587], + [1, 3, 2781], + [0, 2782, 2783, 2784, 8], + [0, -523, -2550, -848, -7588, -7589, -7590], + [0, -664, -1654, -1004, -617], + [0, -856, -5119, -4004, -4100, -3671], + [1, 3, 2786], + [0, 2787, 2788, 2789, 10], + [ + 0, -3417, -7590, -7591, -469, -5769, -7592, -7593, -7594, -523, -7588, -7589, -865, -7595, -7596, -7597, -1870, + -1880, -7598, -2369, -4881 + ], + [0, -827, -1004, -1654, -2177], + [0, -856, -4004, -4100, -3671], + [1, 3, 2791], + [0, 2792, 0, 2793, 9], + [0, -719, -1610, -1077, -2424, -1304], + [0, -856, -3671, -3262, -7599, -711], + [1, 3, 2795], + [0, 2796, 0, 193, 4], + [0, -885, -7600, -7601], + [1, 3, 2798], + [0, 2799, 2800, 2801, 10], + [0, -7602, -7603, -7604, -7605, -1969, -2324, -2446], + [0, -615, -664, -1627, -1654], + [0, -7606, -7607], + [1, 3, 2803], + [0, 2804, 2805, 2806, 4], + [ + 0, -7608, -7609, -7610, -573, -7611, -653, -7612, -6838, -7613, -7614, -7615, -5835, -7616, -7617, -7618, -7619, + -7620, -7621, -1376, -7622, -7623, -7624, -1640, -1729, -7625, -7626, -7627, -2125, -7628, -7629, -7630, -2177, + -7631, -7632, -7633, -2424, -7634, -2549 + ], + [0, -7635, -7636, -7637, -711, -7638, -1666, -7639, -7640], + [ + 0, -3260, -7641, -7642, -4258, -687, -7643, -711, -7644, -3116, -7645, -7646, -3113, -7647, -7648, -6433, -3161, + -3262, -7649, -3966, -1838, -3215, -7650, -4065, -3970, -5371, -3261, -7651, -3673, -3590, -3578, -7652, -4602 + ], + [1, 3, 2808], + [0, 0, 2809, 2810, 5], + [0, -3268, -3037, -3664, -6593, -589, -7653, -7654, -932, -958, -960, -2410, -2469], + [0, -3100, -3445, -4058, -3926, -1446], + [1, 3, 2812], + [0, 0, 2813, 2814, 6], + [ + 0, -23, -40, -190, -3326, -350, -4062, -351, -3266, -518, -632, -724, -920, -932, -940, -1110, -1609, -6451, + -1771, -1889, -1897, -1903, -1906, -1942, -2125, -2127, -4753, -2162 + ], + [0, -3671, -2757, -7655, -856, -3262, -3214, -3756, -1599, -3437, -3862, -7452, -7656], + [1, 3, 2816], + [0, 2817, 71, 2818, 8], + [0, -7657, -7658, -1333, -1646, -2424, -7659], + [0, -1105, -1599, -856, -4328, -3215, -7660, -7661, -7662], + [1, 3, 2820], + [0, 2821, 2822, 2823, 8], + [ + 0, -23, -3194, -25, -46, -47, -668, -679, -834, -7663, -4236, -3649, -1107, -2765, -1304, -1371, -1442, -7664, + -1548, -5347, -7665, -7666, -7667, -1866, -2061, -2093, -2095, -2096, -7668, -4656, -2114, -2271, -7669, -2429, + -5358, -7670, -7671, -2550 + ], + [0, -7672, -796, -7673, -932, -940, -1077, -1344, -1415, -1456, -1534, -1658, -1942, -2251, -2359], + [0, -856, -4144, -1446, -7674, -3215, -3258], + [1, 3, 2825], + [0, 2826, 2827, 2828, 5], + [0, -7675, -7676, -812, -7677, -7678, -7679, -7680, -2424], + [0, -3037, -1127, -1152, -1156, -1542, -1656, -6799, -2210, -2351], + [0, -7681, -7682, -857, -7683, -5800, -7684, -7685, -5801], + [1, 3, 2830], + [0, 2831, 2832, 2833, 4], + [ + 0, -3484, -1088, -1107, -668, -2006, -915, -1548, -1650, -572, -784, -1004, -1889, -1955, -2105, -2195, -3728, + -2353, -1077, -1356, -719, -2019, -682, -1888, -2102, -23, -7686, -47, -518, -1304, -1607, -7687, -4356, -7688, + -7689, -3649, -39, -43, -46, -2015, -7690, -40, -7691, -7692, -41, -930, -916, -26, -36 + ], + [0, -2125, -7693, -1075, -7694], + [0, -856, -7695, -7696, -858], + [1, 3, 2835], + [0, 2836, 27, 2837, 5], + [0, -7697, -703, -4700, -1288, -1293, -1310, -3544, -7698, -3788, -1645, -2087, -7699, -2427, -7700], + [0, -858, -3544, -7701, -856], + [1, 3, 2839], + [0, 2840, 2841, 2842, 6], + [0, -44, -786], + [ + 0, -7702, -7703, -21, -23, -42, -7704, -7705, -7706, -427, -428, -528, -534, -932, -958, -962, -964, -969, + -1003, -1107, -1437, -1471, -1475, -1479, -7707, -1482, -1483, -1489, -1490, -1492, -1654, -2125, -7708, -2210, + -2410, -2501 + ], + [0, -860, -3159, -5092, -3690, -7709, -5553, -5389, -7710, -6730, -860, -7711, -7712, -775], + [1, 3, 2844], + [0, 2845, 2846, 2847, 4], + [0, -3223, -6585, -7713], + [0, -1415, -932, -674, -2375, -1942, -2410, -3136, -3037, -1333, -940, -428, -427], + [0, -3264, -6597, -7650], + [1, 3, 2849], + [0, 0, 2850, 2851, 8], + [ + 0, -664, -932, -1127, -1132, -1144, -1148, -1149, -1155, -1442, -1471, -1474, -1475, -1479, -1482, -1483, -1654, + -1942, -2177 + ], + [0, -5092, -6527, -7714, -7650, -3264, -659, -3839, -7715], + [1, 3, 2853], + [0, 2854, 2855, 2856, 6], + [0, -7716], + [ + 0, -23, -40, -3326, -351, -3561, -3266, -426, -3037, -767, -940, -967, -1437, -1449, -1471, -1473, -1475, -1479, + -1485, -1486, -7717, -1646, -1771, -1939, -1942, -1989, -7718, -2125, -2127, -2132, -7719, -2142, -2387, -2410, + -2541 + ], + [0, -5092, -2544, -3264, -3839, -7720, -7107, -7721, -7722, -7723, -7724, -7725], + [1, 3, 2858], + [0, 0, 2859, 2860, 10], + [0, -1788, -932, -756, -1939, -5478], + [0, -3110, -5922, -5493, -7651], + [1, 3, 2862], + [0, 0, 2863, 2864, 4], + [0, -3037, -3542, -2210, -2250, -2251, -2319, -2410], + [0, -865, -6845, -7726, -5558, -3591, -727, -6849], + [1, 3, 2866], + [0, 194, 2867, 2868, 5], + [0, -3037, -2250, -2251, -2319, -2410], + [0, -865, -7727, -3591, -7728, -7729, -6845, -7726], + [1, 3, 2870], + [0, 2871, 2872, 2873, 4], + [0, -1116, -1866, -1825, -7730, -1591, -1043, -814, -7731, -1100, -7732, -736], + [0, -2541, -519, -1722, -7733, -2125, -1849, -7734], + [0, -867, -7347, -1334, -2105, -2435], + [1, 3, 2875], + [0, 2876, 2877, 2878, 9], + [0, -867, -7735, -2125], + [0, -3179, -1344, -1654, -2226, -2250], + [0, -867, -1105, -7661, -7660, -7736, -7737, -2323, -7347, -7738], + [1, 3, 2880], + [0, 2881, 2882, 2883, 4], + [0, -870, -871, -873, -875, -876, -874], + [0, -932, -2125, -190, -2410, -3037, -2411, -428, -427], + [0, -869, -856, -687, -1446, -620, -1599, -4055], + [1, 3, 2885], + [0, 2886, 2887, 2888, 8], + [0, -1111, -871, -7739, -7740, -873, -875, -7741, -876, -874], + [0, -1415, -932, -2125, -1753, -2375, -190, -2410, -3136, -3037, -7742, -2411, -428, -427], + [0, -869, -856, -687], + [1, 3, 2890], + [0, 2891, 2892, 2893, 4], + [0, -6904], + [0, -1415, -932, -2125, -2375, -190, -2410, -3136, -3037, -7742, -2411, -428, -6902, -427], + [0, -869, -856], + [1, 3, 2895], + [0, 2896, 121, 2897, 4], + [0, -7743], + [0, -869, -856, -3110], + [1, 3, 2899], + [0, 2900, 2901, 2902, 4], + [0, -2330, -1446, -7744], + [0, -1415, -932, -2125, -2375, -749, -190, -2410, -3136, -3037, -7745, -7742, -2411, -428, -427], + [0, -869, -856, -1446], + [1, 3, 2904], + [0, 2905, 2906, 2907, 4], + [0, -1600, -1304, -1605], + [0, -1415, -932, -2125, -2375, -190, -2410, -3136, -3037, -7742, -2411, -3661, -428, -427], + [0, -869, -856, -620], + [1, 3, 2909], + [0, 0, 121, 2910, 8], + [0, -869, -856, -4055], + [1, 3, 2912], + [0, 2913, 121, 2914, 5], + [0, -1605], + [0, -869, -856, -1599], + [1, 3, 2916], + [0, 2917, 2918, 2919, 4], + [0, -1033, -1361, -1792], + [ + 0, -23, -6065, -5584, -7746, -528, -7747, -767, -824, -927, -932, -7748, -940, -951, -956, -962, -967, -969, + -7749, -1059, -1168, -1174, -1184, -1188, -7750, -1201, -1208, -1212, -1243, -1266, -1415, -1942, -2006, -2019, + -2052, -7751, -2347, -2417, -7752 + ], + [0, -7753, -3496, -2006, -7754], + [1, 3, 2921], + [0, 2922, 2923, 2924, 5], + [0, -4007, -7755], + [ + 0, -7756, -7757, -664, -795, -7758, -1471, -1475, -1482, -7759, -1491, -1654, -1655, -1745, -7760, -2162, -2210, + -2211 + ], + [0, -7761, -7762, -7763, -7764], + [1, 3, 2926], + [0, 2927, 2928, 7, 5], + [0, -2550, -2388, -7765, -1077, -7766, -2271, -1458, -7767, -7768, -7769], + [0, -932, -3037, -3041, -3048, -428, -7770, -7771, -427], + [1, 3, 2930], + [0, 2931, 0, 2932, 4], + [0, -7772], + [0, -7773, -880, -6582, -7685, -3445, -687, -7774, -5401], + [1, 3, 2934], + [0, 2935, 2936, 113, 4], + [ + 0, -5332, -5333, -3562, -367, -5334, -4251, -5335, -5336, -5337, -5338, -682, -5366, -5340, -747, -823, -5341, + -909, -5342, -5343, -5344, -3649, -2766, -1286, -1289, -1292, -5345, -1315, -1329, -5346, -1442, -1571, -5347, + -5348, -1779, -1878, -4130, -5349, -1955, -2000, -4930, -4942, -2003, -4944, -2004, -2013, -2965, -2028, -5350, + -5351, -2084, -5352, -2090, -5353, -4242, -2095, -2098, -2101, -2162, -3728, -5354, -5355, -2427, -2429, -5356, + -2435, -5357, -5358, -5359 + ], + [ + 0, -86, -3307, -3659, -5360, -5361, -3660, -5362, -3037, -5363, -3803, -3040, -3087, -3052, -5364, -5365, -932, + -4597, -1026, -1031, -5367, -5368, -1344, -1534, -1942, -1944, -1945, -2006, -2019, -2281, -2379, -2410, -2469, + -5369, -5370 + ], + [1, 3, 2938], + [0, 2939, 2940, 113, 6], + [ + 0, -5332, -5333, -3562, -367, -5334, -4251, -5335, -5336, -5337, -5338, -682, -5339, -747, -823, -5341, -5359, + -909, -5342, -5343, -5344, -3649, -2766, -1286, -1289, -1292, -5345, -1315, -1329, -5346, -1442, -1571, -5347, + -5348, -1779, -1878, -4130, -5349, -1955, -2000, -4930, -4942, -4944, -2013, -2965, -2028, -2084, -5352, -2090, + -5353, -4242, -2095, -2098, -2101, -2162, -3728, -5355, -2427, -2429, -5356, -2435, -5357, -5358 + ], + [ + 0, -86, -3307, -3659, -5360, -5361, -3660, -5362, -3037, -5363, -3040, -3087, -5364, -5365, -932, -1026, -1031, + -5368, -1344, -1534, -1942, -1944, -1945, -2006, -2281, -2379, -2410, -2469 + ], + [1, 3, 2942], + [0, 0, 2943, 7, 5], + [0, -2322, -2346], + [1, 3, 2945], + [0, 2946, 2947, 110, 8], + [ + 0, -7775, -7776, -7777, -7778, -7779, -44, -3946, -7780, -7781, -7782, -7783, -7784, -682, -747, -809, -7785, + -7786, -7787, -7788, -7789, -7790, -7791, -7792, -7793, -7794, -7795, -7796, -7797, -7798, -7799, -7800, -7801, + -7802, -7803, -7804, -7805, -7806, -7807, -7808, -7809, -7810, -7811, -7812, -7813, -7814, -7815, -7816, -4951, + -2345 + ], + [ + 0, -5695, -5704, -3139, -7817, -4952, -2581, -5702, -3744, -3745, -3746, -3747, -162, -3778, -4954, -5706, + -4106, -5708, -5699, -283, -305, -4955, -4773, -3562, -406, -407, -409, -410, -5682, -5683, -5693, -3048, -4960, + -5692, -5697, -3136, -4961, -4962, -4963, -4964, -4647, -3044, -5686, -3037, -5688, -7818, -5675, -3803, -3624, + -4966, -3040, -3087, -3052, -4968, -4969, -3199, -5687, -5673, -4971, -4972, -427, -428, -464, -5595, -4973, + -5674, -4974, -523, -668, -674, -5701, -5676, -767, -768, -4977, -865, -881, -5698, -3808, -932, -933, -940, + -948, -952, -958, -959, -962, -7819, -963, -969, -970, -978, -1026, -4979, -1077, -1103, -1107, -5346, -1339, + -1352, -1359, -1392, -1404, -1415, -4980, -1416, -1419, -1421, -4981, -4982, -1437, -1449, -4983, -3134, -1534, + -1548, -5689, -4984, -1646, -1662, -1729, -1737, -1779, -1805, -1816, -5668, -1870, -1880, -1942, -1943, -1950, + -1955, -1978, -1983, -4985, -4986, -4987, -2006, -2013, -5680, -2019, -3051, -4988, -4989, -4990, -2027, -4991, + -2044, -4992, -2082, -2090, -2093, -2094, -2095, -4994, -5707, -4995, -2101, -2125, -5669, -2177, -2193, -2205, + -2214, -5671, -5000, -2323, -2324, -2334, -2392, -2402, -2410, -5001, -5678, -2501, -2502, -5002 + ], + [1, 3, 2949], + [0, 0, 2950, 2951, 10], + [0, -86, -3307, -7820, -190, -932, -940, -964, -967, -1344, -1534, -1654, -1942, -2127, -2198, -2251], + [0, -5839, -510, -6235, -7821, -885, -7208, -1961, -7822, -6302, -3445, -3100], + [1, 3, 2953], + [0, 2954, 2955, 2956, 11], + [0, -2387, -7823], + [ + 0, -22, -23, -47, -7769, -7767, -7824, -262, -350, -351, -3561, -3136, -427, -428, -668, -719, -879, -928, -932, + -1077, -1111, -1344, -1415, -1416, -1452, -1588, -1805, -2127, -2140, -2172, -2177, -2334, -2375, -2410 + ], + [0, -886, -7825, -6581, -7826, -7275, -7827, -7828, -659, -3839], + [1, 3, 2958], + [0, 2959, 2960, 2961, 4], + [0, -7829, -1043, -7830, -1199, -7831, -7832, -7833, -1548, -1645, -7834, -1876, -2347, -2460, -2462, -2550], + [ + 0, -3035, -3048, -7835, -3044, -3621, -3037, -4364, -4372, -3625, -7836, -7837, -7838, -3041, -664, -994, -1077, + -1100, -1654, -1788, -1972, -2125, -2210, -2211, -2379, -2388, -2410 + ], + [0, -7829, -3674, -5874, -7839, -7840, -7449, -7841], + [1, 3, 2963], + [0, 2964, 2965, 2966, 4], + [0, -1410], + [0, -2410, -32, -633, -932, -6272, -1446, -1582, -1654, -2416], + [0, -3110, -7651, -6899, -888], + [1, 3, 2968], + [0, 2969, 2970, 2971, 4], + [0, -668, -1548, -7842], + [ + 0, -1722, -461, -510, -1127, -1654, -2210, -2239, -932, -1437, -1666, -2177, -521, -600, -2501, -7843, -7844, + -615, -1813, -1942, -2347, -1003, -1026, -3767, -1132, -7845, -633, -23, -7846, -528, -534, -7847, -7848, -40, + -966, -1138, -1134, -958, -1136, -1148, -968, -940, -943, -967, -974, -7849 + ], + [0, -889, -6045, -3817], + [0, 44, 15, 16, 5], + [1, 3, 2974], + [0, 2975, 0, 195, 6], + [0, -3037, -1018, -7850], + [1, 3, 2977], + [0, 2978, 2979, 2980, 4], + [0, -668, -2550, -680, -1077, -7851, -7852, -7853, -7854, -7855, -7741], + [0, -3041, -3048], + [ + 0, -891, -4258, -7641, -7856, -1380, -7857, -7858, -7859, -3994, -7860, -7861, -7862, -7863, -7864, -7865, + -7866, -7867, -7868, -7869, -7870, -7871, -5730 + ], + [1, 3, 2982], + [0, 2983, 2984, 2985, 4], + [ + 0, -7872, -7850, -7873, -7874, -7875, -7876, -812, -1018, -7731, -1077, -7877, -7878, -7879, -7880, -1875, + -7881, -2114, -2177, -2551 + ], + [0, -427, -428, -519, -641, -708, -932, -943, -950, -958, -966, -968, -1788, -1872, -2210, -2384, -2402, -2410], + [0, -891, -7857, -7882, -3994], + [1, 3, 2987], + [0, 2988, 2989, 195, 10], + [0, -1018, -7883], + [0, -2322, -2250, -7884, -1849], + [1, 3, 2991], + [0, 2992, 56, 57, 6], + [0, -668, -1078, -1406, -7885], + [1, 3, 2994], + [0, 2995, 2996, 7, 8], + [0, -7886], + [0, -1127, -7887, -1130, -1144, -1148, -1155, -1413, -1437, -1471, -1475, -1479, -1481, -1487, -1542, -1548], + [1, 3, 2998], + [0, 2999, 3000, 3001, 5], + [0, -513, -532, -823, -1761, -2113, -2345], + [ + 0, -7888, -7889, -526, -527, -534, -535, -539, -541, -544, -7890, -558, -564, -7891, -664, -679, -748, -756, + -7892, -767, -778, -925, -932, -7893, -949, -957, -7894, -1041, -7895, -1168, -1171, -7896, -1248, -1304, -1331, + -1455, -5610, -1471, -1475, -1476, -1482, -7759, -1490, -1491, -1492, -7897, -1600, -1601, -7898, -1602, -1643, + -1654, -1743, -1814, -1889, -1960, -2125, -2163, -7899, -2210, -2211, -2275, -7900, -2417, -7901, -2437, -2476, + -2481, -2483, -2485, -7902, -2501, -2503, -2505, -2509 + ], + [0, -7903, -2476, -3098], + [1, 3, 3003], + [0, 3004, 3005, 3006, 4], + [0, -616, -7904, -7905, -7906, -1370, -7907, -7908], + [0, -627, -756, -932, -1127, -1130, -1132, -1137, -1138, -1148, -7909, -1161, -1405, -1654], + [0, -7910, -7911, -7912, -7913], + [1, 3, 3008], + [0, 3009, 3010, 3011, 4], + [0, -7914, -7915, -7916, -1329, -7917, -1548, -1752], + [ + 0, -86, -3307, -519, -674, -767, -888, -932, -946, -1053, -1344, -1534, -7918, -1788, -7919, -1974, -2094, + -2099, -2541 + ], + [ + 0, -735, -7920, -6899, -1501, -7921, -7922, -7923, -7924, -7925, -7926, -1752, -7927, -1974, -7928, -3110, + -3261, -3443 + ], + [1, 3, 3013], + [0, 0, 3014, 7, 5], + [0, -190, -7929, -3037, -7930, -3664, -932, -940, -967, -7931, -1942, -7932, -2379, -2410, -2411, -2469], + [1, 3, 3016], + [0, 3017, 3018, 3019, 10], + [ + 0, -7933, -7934, -7935, -7936, -7937, -2731, -7938, -7939, -7940, -7941, -628, -7942, -629, -2733, -7943, -7944, + -7945, -7946, -7947, -668, -680, -7948, -724, -728, -7949, -7950, -7951, -7952, -834, -7953, -5501, -7954, + -5502, -7955, -999, -1000, -1004, -1044, -1047, -7956, -1077, -6345, -5505, -5367, -1107, -6343, -7957, -7958, + -7959, -1336, -1369, -1376, -7960, -7961, -1548, -1600, -7962, -1645, -1676, -1758, -1767, -7834, -7963, -1888, + -7964, -7965, -7966, -2114, -6195, -7967, -7968, -2177, -5509, -7969, -7970, -2330, -2342, -2353, -7971, -2488, + -7972, -3730, -7973, -7974, -7975 + ], + [ + 0, -6346, -630, -664, -665, -7976, -6477, -726, -7977, -7978, -932, -940, -7979, -964, -965, -1054, -7980, + -1449, -1514, -1654, -1722, -1788, -1942, -7981, -2269, -2293, -2341, -2359, -7982, -2512, -2518, -7983, -7984 + ], + [0, -3994, -7985, -5375, -687, -7986, -7987, -7988, -3114], + [1, 3, 3021], + [0, 3022, 3023, 3024, 4], + [ + 0, -3197, -33, -3376, -3384, -3355, -3374, -3397, -38, -3412, -40, -44, -7989, -7990, -7991, -7992, -541, -7993, + -7941, -628, -7944, -7946, -702, -7994, -7995, -7955, -6195, -2177 + ], + [ + 0, -23, -7996, -7997, -7998, -7999, -8000, -528, -630, -664, -705, -8001, -722, -7949, -753, -7951, -8002, -902, + -8003, -904, -8004, -8005, -8006, -8007, -8008, -8009, -932, -8010, -966, -7980, -8011, -1654, -1989, -2082, + -7981, -2114, -2125, -2501 + ], + [0, -525, -7986, -8012, -902, -3185, -3186], + [1, 3, 3026], + [0, 3027, 3028, 3029, 6], + [0, -8013, -8014, -7941, -8015, -6346, -6345, -7959, -8016, -5509, -2488], + [ + 0, -23, -32, -33, -3376, -38, -3412, -44, -7996, -7998, -8017, -7990, -629, -630, -664, -8001, -726, -8002, + -902, -903, -8018, -8003, -8004, -8005, -8006, -8007, -8008, -8009, -8019, -8020, -8021, -932, -940, -8010, + -964, -965, -967, -8022, -1054, -8011, -1654, -1942, -1989, -1990, -2091, -6348, -2281, -2282, -5059, -2501 + ], + [0, -8012, -902], + [1, 3, 3031], + [0, 3032, 3033, 3034, 8], + [0, -8023, -8024], + [0, -351, -3267, -3037, -1520, -2125, -2127, -2392, -2410], + [0, -905, -3264, -775, -8025, -8026], + [1, 3, 3036], + [0, 0, 0, 105, 8], + [1, 3, 3038], + [0, 0, 3039, 3040, 8], + [0, -1654, -932, -1405, -966, -958, -968, -943, -974], + [0, -6422, -907, -2435], + [1, 3, 3042], + [0, 3043, 31, 3044, 4], + [0, -1801], + [0, -5827, -8027, -5865, -8028, -8029, -8030, -4116], + [1, 3, 3046], + [0, 3047, 3048, 7, 4], + [0, -1119, -2321], + [0, -4035, -3136, -3037, -774, -932, -6929, -1344, -1415, -1534, -1623, -1942, -2410], + [1, 3, 3050], + [0, 3051, 3052, 3053, 4], + [0, -479, -2269], + [0, -3037, -1202, -1376, -1654, -1788, -1966, -2410], + [ + 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -3959, -910, -3262, -3960, -3961, -3962, -3963, -1376, -3964, + -3965, -3214, -3966, -3967, -1965, -1966, -3968, -3969, -2063, -3970, -3108, -3971, -3972, -3973, -3974, -3975, + -3160, -3976, -2559, -3977 + ], + [1, 3, 3055], + [0, 3056, 3057, 3058, 8], + [0, -6511, -8031, -1977, -8032], + [0, -5834, -516, -5835, -932, -993, -1365, -1777, -1788, -2156, -2322], + [0, -3223, -8033, -8034, -3264, -6422, -6420], + [1, 3, 3060], + [0, 0, 3061, 3062, 9], + [0, -664, -1344, -1654, -2176], + [0, -8035, -8036, -8037, -8038, -7534], + [1, 3, 3064], + [0, 3065, 122, 196, 5], + [0, -987, -2346], + [1, 3, 3067], + [0, 0, 3068, 3069, 4], + [ + 0, -23, -5584, -39, -40, -86, -3307, -7465, -527, -528, -533, -534, -932, -934, -940, -958, -967, -8039, -1107, + -1344, -1415, -1646, -3547, -7861, -1942, -6040, -2501, -2503, -2518, -8040 + ], + [0, -3113, -6845, -5558, -8041, -8042, -8043, -8044], + [1, 3, 3071], + [0, 3072, 3073, 85, 4], + [ + 0, -8045, -674, -918, -8046, -8047, -8048, -8049, -8050, -8051, -7394, -8052, -8053, -8054, -1559, -1794, -5849, + -1797, -1798, -8055, -1992, -8056, -8057 + ], + [0, -526, -6022, -557, -932, -933, -958, -962, -969, -1365, -1449, -2125, -2156], + [1, 3, 3075], + [0, 3076, 3077, 85, 11], + [0, -1285, -2177, -2029, -1967, -1797, -8055, -2052, -917, -918], + [0, -915, -932, -2125, -1777, -21, -1365, -23, -557, -969, -2156, -32, -933, -958, -962, -970, -535, -6022], + [1, 3, 3079], + [0, 3080, 3081, 85, 4], + [0, -1285, -2177, -1967, -1797, -8062, -8063, -8046], + [0, -932, -2125, -1777, -21, -1365, -23, -557, -969, -2156, -32, -933, -958, -962, -970, -535, -6022], + [1, 3, 3083], + [0, 3084, 3085, 85, 6], + [0, -1285, -5849], + [0, -932, -2125, -1777, -21, -1365, -23, -557, -2156, -32, -958, -934, -535, -6022], + [1, 3, 3087], + [0, 3088, 3089, 7, 9], + [0, -459, -929], + [0, -465, -932, -943, -958, -963, -966, -968, -1654, -1788, -2293], + [1, 3, 3091], + [0, 3092, 3093, 3094, 4], + [0, -461, -1026], + [0, -7150, -635, -8064, -3347, -8065, -8066, -1942, -2091], + [0, -8067, -8068, -6505, -8069, -8070, -8071, -3217, -8072, -8073, -8074, -3756, -8075, -8076, -8077, -8078, -8079], + [1, 3, 3096], + [0, 3097, 3098, 3099, 4], + [0, -8080, -1283, -8081, -8082, -8083, -6402, -1797], + [ + 0, -2832, -5834, -8084, -8085, -8086, -8087, -8088, -8089, -8090, -8091, -8092, -8093, -8094, -8095, -8096, + -505, -516, -5835, -932, -6283, -6503, -1402, -1777, -1788, -8097, -2156, -8098, -2322, -8099 + ], + [0, -3214, -3217, -6505, -3756, -7374, -5846, -8100, -8101, -5831], + [1, 3, 3101], + [0, 3102, 3103, 3104, 11], + [0, -6704, -8102, -8103, -8104], + [0, -932, -6706, -6707, -6708, -1344, -1534, -1788, -8105, -6709, -6710], + [0, -3217, -8106, -8107, -8108, -3184, -8109, -8110, -8111, -8112, -3207, -3214, -3582, -5396, -2444, -5260, -8113], + [1, 3, 3106], + [0, 0, 3107, 3108, 4], + [0, -5834, -515, -932, -1365, -1414, -1788, -2156, -2416], + [0, -5396, -8108, -8114, -3214, -3217, -3582], + [1, 3, 3110], + [0, 0, 3111, 3112, 5], + [0, -526, -527, -535, -4098, -558, -664, -767, -1654, -2125], + [0, -3184, -6324, -525], + [1, 3, 3114], + [0, 0, 3115, 3116, 9], + [ + 0, -8115, -1654, -902, -7945, -7938, -8116, -8117, -8118, -8119, -629, -7993, -8003, -8120, -8121, -6083, -6070, + -8122, -6081, -548, -6072, -6068, -550, -6071, -6082 + ], + [0, -8123, -3582, -1961, -5923], + [1, 3, 3118], + [0, 0, 3119, 3120, 4], + [0, -21, -23, -40, -4691, -925, -932, -940, -943, -958, -966, -968, -1344, -1788, -1942, -2210, -2322], + [0, -1961, -5923, -3184, -8124, -926], + [1, 3, 3122], + [0, 0, 3123, 3124, 8], + [ + 0, -5834, -515, -664, -923, -932, -993, -1127, -1137, -1149, -1161, -1365, -1654, -1788, -1963, -8125, -2156, + -2322, -2416 + ], + [0, -3217, -3207, -3184, -5396, -1961, -5923, -8126, -6917, -8127, -8128], + [1, 3, 3126], + [0, 0, 3127, 3128, 5], + [0, -589, -585], + [0, -5559, -3264, -3590], + [1, 3, 3130], + [0, 0, 14, 3131, 10], + [0, -5559, -5569, -5570, -8129, -8130, -2265, -8131, -8132], + [1, 3, 3133], + [0, 3134, 3135, 7, 4], + [0, -988, -6100, -987, -2231], + [0, -461, -615, -8133, -664, -3629, -8134, -1168, -1197, -1231, -1646, -1815, -2177], + [1, 3, 3137], + [0, 3138, 3139, 3140, 5], + [ + 0, -189, -5200, -8135, -8136, -7820, -8137, -8138, -8139, -8140, -426, -469, -769, -812, -930, -982, -983, -986, + -8141, -6100, -1025, -8142, -1047, -1108, -1353, -8143, -1393, -8144, -1645, -5199, -1815 + ], + [ + 0, -2832, -23, -40, -3794, -7462, -3244, -8145, -8146, -3037, -428, -534, -652, -664, -674, -722, -753, -795, + -888, -955, -8147, -7355, -8148, -8149, -8150, -987, -8151, -1107, -1110, -1116, -1125, -1431, -1498, -1534, + -1600, -1602, -1610, -8152, -8153, -8154, -8155, -8156, -8157, -1654, -8158, -8159, -1942, -1959, -1972, -2066, + -2082, -2177, -2195, -2210, -2410, -2501, -2503, -8160 + ], + [0, -3272, -7148, -3214, -3217, -986], + [1, 3, 3142], + [0, 3143, 3144, 197, 5], + [0, -1797, -1798, -934], + [0, -2322, -887, -932, -1365, -44, -8161, -8162, -557, -969, -2156, -958, -962, -970], + [1, 3, 3146], + [0, 3147, 3148, 197, 4], + [0, -2177, -1797, -1798, -8167], + [0, -2322, -887, -932, -1365, -44, -8161, -8162, -557, -2156, -958], + [1, 3, 3150], + [0, 3151, 3152, 3153, 10], + [0, -934], + [0, -427, -428, -855, -932, -940, -958, -1344, -1534, -1771, -1942, -8168, -2410], + [0, -8164, -727, -4795, -8165, -6434, -8166, -932, -8163, -3214, -4900, -2410], + [1, 3, 3155], + [0, 0, 38, 3156, 8], + [ + 0, -3939, -707, -8169, -5553, -7148, -8170, -1445, -1452, -8171, -932, -5874, -8172, -8173, -7440, -7144, -8174, + -7840, -8175 + ], + [1, 3, 3158], + [0, 3159, 38, 3160, 4], + [0, -190, -1110], + [0, -932, -5031, -8176], + [1, 3, 3162], + [0, 3163, 3164, 3165, 4], + [0, -3615, -3244, -190, -3748, -427, -428, -938, -945, -8177, -948, -958, -960, -964, -965, -7354, -978, -2411], + [0, -4367, -932, -2410], + [0, -4362, -932, -5031, -8176], + [1, 3, 3167], + [0, 3168, 3169, 76, 11], + [0, -965, -964, -958, -8177, -428, -7354, -427, -948], + [0, -932, -2410, -4367], + [1, 3, 3171], + [0, 0, 0, 3172, 6], + [0, -932, -8163, -5031, -8178, -1942], + [1, 3, 3174], + [0, 3175, 0, 7, 5], + [0, -23, -959, -969, -32, -958, -561, -956, -962, -8179, -428, -8167, -970, -976, -427], + [1, 3, 3177], + [0, 0, 3178, 3179, 5], + [0, -932, -943, -958, -965, -968, -2322], + [ + 0, -8180, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8163, -8175, -1445, -1452, -7148, -8184, + -8169, -5493, -2176, -2250, -8185, -5553, -8186, -8187, -8174 + ], + [1, 3, 3181], + [0, 0, 3182, 3183, 4], + [0, -3330, -8096, -932, -958, -965, -968, -2322], + [ + 0, -8180, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8163, -8175, -1445, -1452, -7148, -8184, + -8169, -5493, -2250, -8185, -5553, -8186, -8187, -8174 + ], + [1, 3, 3185], + [0, 3186, 3187, 7, 9], + [0, -190, -3560, -978, -1110, -2411], + [0, -8188, -3330, -3037, -8189, -672, -932, -8190, -8191, -1942, -2410], + [1, 3, 3189], + [0, 3190, 3191, 3192, 4], + [0, -8192, -7462, -3748, -8167, -1110], + [0, -519, -932], + [ + 0, -8163, -2541, -8193, -8194, -8195, -8196, -8197, -707, -8169, -5553, -7148, -8170, -1445, -1452, -8171, -932, + -5874, -8172, -2250, -8173, -7440, -7144, -8174, -7840, -8175, -5493 + ], + [1, 3, 3194], + [0, 0, 3195, 3196, 10], + [0, -86, -3307, -767, -1344, -1534, -2094, -2099, -2541], + [0, -8198, -727, -932, -7921, -7922, -8199, -2541], + [1, 3, 3198], + [0, 3199, 3200, 3201, 4], + [0, -429, -469, -671, -719, -755, -823, -3780, -7829, -1418, -1456, -5473, -1605, -2400], + [ + 0, -190, -3037, -4372, -8200, -3899, -6593, -932, -940, -958, -965, -967, -978, -1609, -1768, -1771, -1821, + -1942, -2210, -7969, -2410, -2411, -2469 + ], + [0, -4100, -3671, -856, -932, -3262, -3862], + [1, 3, 3203], + [0, 3204, 0, 3205, 8], + [0, -812, -8201, -1101, -8202, -8203, -2654, -8204], + [0, -2410, -932, -6024, -6041, -3862], + [1, 3, 3207], + [0, 3208, 3209, 3210, 5], + [0, -1046, -1077, -1543, -1793, -2168], + [ + 0, -21, -23, -40, -86, -3307, -8205, -7166, -528, -533, -679, -8206, -767, -824, -825, -932, -940, -8207, -958, + -1344, -1415, -1424, -1534, -1771, -1942, -2251, -2501 + ], + [0, -932, -7148, -8170, -5932, -2501], + [1, 3, 3212], + [0, 3213, 3214, 3215, 4], + [0, -189, -7462, -8208, -986, -8209, -8210, -2115], + [0, -428, -519, -652, -668, -932, -8211, -947, -955, -999, -1771, -1821, -1866, -2410, -2541], + [0, -932, -5208, -3784, -519, -4004, -4043, -507, -5856, -5855, -1654], + [1, 3, 3217], + [0, 3218, 3219, 3220, 9], + [0, -8212], + [0, -1654, -932, -528, -1552], + [0, -525, -932, -5208, -3784, -528], + [1, 3, 3222], + [0, 3223, 3224, 3225, 5], + [0, -7150, -8213, -635, -658, -1047, -1110, -1565, -2177], + [ + 0, -23, -32, -86, -3307, -3615, -190, -3470, -3471, -8214, -3268, -8215, -3330, -3136, -8216, -3199, -589, + -8217, -891, -932, -940, -955, -967, -1002, -1344, -1415, -1942, -2174, -2205, -2375, -2379, -2410, -2411 + ], + [0, -932, -4865, -6520, -3690, -7148, -657, -8218], + [1, 3, 3227], + [0, 0, 123, 3228, 5], + [0, -932, -5208, -8108, -4795], + [1, 3, 3230], + [0, 3231, 3232, 3233, 4], + [0, -930, -1353], + [ + 0, -5380, -3037, -8219, -528, -708, -769, -932, -8220, -1077, -1654, -1788, -1810, -2125, -2177, -5621, -8221, + -2816 + ], + [0, -932, -5208, -3784, -3862, -8222, -3485, -8223, -1109, -1110, -8224, -8225, -8226, -8227, -8228, -8229], + [1, 3, 3235], + [0, 3236, 3237, 198, 11], + [0, -189, -988], + [ + 0, -86, -3307, -3534, -8230, -3244, -190, -3560, -8231, -8232, -8233, -426, -3044, -3037, -428, -429, -3899, + -932, -8234, -940, -947, -965, -978, -981, -982, -986, -1344, -1431, -1534, -1548, -1609, -1768, -1772, -1942, + -2892, -2410, -2411, -2469 + ], + [1, 3, 3239], + [0, 3240, 3241, 3242, 4], + [0, -1548, -8235], + [ + 0, -469, -1107, -1344, -1654, -932, -2125, -8236, -6611, -21, -23, -5870, -43, -2174, -40, -32, -8237, -3201, + -955, -535, -3408, -36 + ], + [0, -932, -3862, -8238], + [1, 3, 3244], + [0, 3245, 3246, 3247, 8], + [0, -1333], + [0, -8239, -8240, -932, -940, -8241, -1942, -2177], + [0, -3784, -5208, -932, -3264], + [1, 3, 3249], + [0, 3250, 3251, 3252, 9], + [ + 0, -8242, -8243, -8244, -8045, -505, -812, -8245, -8246, -8247, -1285, -7437, -1393, -1645, -8063, -8248, -8055, + -2177, -8249, -2383 + ], + [ + 0, -8250, -3330, -428, -526, -527, -528, -539, -541, -557, -6089, -566, -572, -664, -767, -8251, -932, -947, + -948, -955, -958, -7894, -6039, -8252, -1107, -1365, -1408, -1461, -8253, -8254, -1609, -1654, -8255, -1788, + -2074, -2125, -2156, -2210, -2359, -2410, -8256 + ], + [0, -932, -5208, -3784, -3184, -5748, -3209, -6024, -8257], + [1, 3, 3254], + [0, 199, 3255, 198, 6], + [ + 0, -21, -23, -40, -42, -86, -3307, -8230, -8258, -3470, -3471, -5325, -3330, -3136, -3037, -3199, -427, -428, + -429, -533, -8259, -815, -932, -940, -947, -955, -958, -965, -967, -981, -8260, -1344, -1392, -1415, -6725, + -1534, -8241, -1868, -1942, -2125, -2174, -2177, -2379, -2410 + ], + [1, 3, 3257], + [0, 3258, 3259, 3260, 4], + [0, -8261, -8262, -8263, -3896, -812, -930, -986, -8141, -1320, -8264, -8265, -2177, -8266, -8267], + [ + 0, -2832, -21, -23, -32, -3203, -40, -8268, -8269, -7820, -8270, -351, -7040, -3472, -7041, -3035, -3198, -8232, + -8146, -426, -4049, -3621, -3037, -3199, -8271, -3782, -535, -539, -8272, -652, -656, -664, -813, -932, -8237, + -8236, -1107, -1110, -1344, -8273, -1456, -8274, -1534, -1654, -8275, -1874, -8276, -2125, -2127, -2174, -2210, + -5198, -2410, -2411 + ], + [0, -932, -3862, -1446], + [1, 3, 3262], + [0, 3263, 3264, 3265, 9], + [0, -189, -7820, -8137, -8277, -8278, -8279, -7356, -5199, -2653], + [ + 0, -32, -8280, -50, -8230, -7462, -8281, -8282, -3748, -7155, -3621, -8283, -3037, -3199, -427, -428, -652, + -8284, -928, -932, -940, -955, -8285, -960, -8286, -961, -963, -965, -8287, -967, -971, -980, -7355, -982, -997, + -1110, -1654, -1834, -1942, -2177, -2281, -8288, -2282, -8289, -8290, -2892, -2392, -2410, -2411, -8291, -2468, + -2478 + ], + [0, -932, -5208, -3784, -7148, -8292, -1460, -4055], + [1, 3, 3267], + [0, 3268, 3269, 3270, 4], + [0, -5113, -8243, -505, -8293, -522, -8294, -8295, -5973, -1285, -8296, -8297, -1645, -8063, -8032, -8298], + [ + 0, -21, -23, -32, -3203, -43, -516, -535, -557, -932, -934, -947, -955, -956, -958, -988, -1059, -1365, -1408, + -7317, -1646, -1777, -1797, -1798, -2125, -2156, -2177, -2322, -8299 + ], + [0, -932, -5208, -3784, -4665, -4666, -4146], + [1, 3, 3272], + [0, 3273, 3274, 3275, 4], + [0, -1618], + [0, -1788, -664, -1654, -932, -1110, -190, -8148, -8300], + [0, -932, -5208, -1599, -7148, -8170], + [1, 3, 3277], + [0, 3278, 0, 3279, 10], + [0, -1110, -189], + [0, -932, -5208, -3784, -1654], + [1, 3, 3281], + [0, 3282, 3283, 200, 9], + [0, -189, -909, -8301, -1101, -1110, -2898, -1353, -2177, -8302], + [ + 0, -190, -3330, -426, -8303, -3037, -428, -5209, -932, -940, -947, -955, -1026, -1344, -1534, -1609, -1654, + -1772, -1788, -1810, -1942, -1977, -2091, -2125, -8304, -2400, -2410 + ], + [1, 3, 3285], + [0, 3286, 3287, 200, 6], + [0, -6578, -8305, -1353, -1645, -2114, -2177], + [0, -5380, -708, -932, -1026, -1110, -1654, -1788, -1810, -1977, -2125], + [1, 3, 3289], + [0, 3290, 0, 3291, 10], + [0, -8306, -2653], + [0, -932, -5208, -3784, -1942], + [1, 3, 3293], + [0, 3294, 3295, 3296, 4], + [0, -189], + [0, -428, -855, -932, -940, -947, -955, -959, -965, -967, -1110, -1344, -1415, -1534, -1772, -1942, -2410], + [0, -932, -5208, -3784, -1961, -5923], + [1, 3, 3298], + [0, 3299, 3300, 201, 5], + [ + 0, -8243, -8307, -505, -8308, -8245, -8309, -988, -1285, -8296, -1645, -1798, -8063, -8055, -1967, -2114, -2177, + -5010, -8310 + ], + [ + 0, -23, -32, -3332, -8311, -8312, -41, -3330, -426, -3037, -428, -528, -932, -934, -947, -955, -958, -981, + -8260, -982, -986, -8313, -1107, -1405, -1408, -8314, -1609, -1654, -1777, -2210, -2410, -8256 + ], + [1, 3, 3302], + [0, 3303, 3304, 201, 5], + [0, -2564, -23, -25, -8315, -3251], + [0, -1415, -2410, -3037, -47, -528, -3330, -426, -8316, -8317, -32, -42], + [1, 3, 3306], + [0, 3307, 3308, 3309, 6], + [0, -189, -5200, -3896, -8273, -8318, -8319, -8320], + [ + 0, -50, -3462, -8230, -3244, -190, -8281, -8282, -5030, -3035, -3330, -8231, -426, -3621, -3037, -8321, -427, + -428, -507, -664, -8284, -932, -940, -947, -948, -955, -958, -960, -8286, -961, -963, -965, -8322, -967, -971, + -978, -980, -7355, -8323, -1609, -1654, -8324, -1588, -1772, -1788, -1834, -1942, -2177, -2281, -3085, -8288, + -2892, -2392, -2410, -2411, -8291, -2468, -2478 + ], + [0, -932, -5208, -3784, -5570, -5569], + [1, 3, 3311], + [0, 3312, 3313, 3314, 5], + [0, -8325], + [0, -190, -5887, -932, -8326, -940, -947, -955, -1534, -1609, -1654, -1771, -1942, -2174, -8160], + [0, -932, -7107, -8327], + [1, 3, 3316], + [0, 3317, 0, 3318, 9], + [0, -2410, -2177, -8328, -1566, -8329, -5200, -1645, -5198, -8320, -651, -644, -1110], + [0, -8330, -932, -5208], + [1, 3, 3320], + [0, 0, 123, 3321, 11], + [0, -932, -5208], + [1, 3, 3323], + [0, 3324, 3325, 3326, 9], + [0, -189, -3115, -6100, -1110, -1499, -1889, -1907, -1929, -2177, -8331], + [ + 0, -23, -32, -6034, -8230, -4776, -8332, -8333, -4049, -8334, -3621, -3037, -8335, -3199, -8336, -3331, -3782, + -461, -507, -928, -982, -8190, -983, -986, -1431, -1521, -1654, -1916, -1931, -2162, -2232, -2286, -2299, -8337, + -2392, -2399, -2548 + ], + [0, -932, -3784, -5208, -2299, -8338], + [1, 3, 3328], + [0, 3329, 3330, 3331, 5], + [0, -3331, -429], + [ + 0, -86, -3307, -3244, -190, -3037, -5206, -3664, -6593, -3665, -932, -940, -947, -948, -8339, -965, -968, -981, + -8260, -1110, -1344, -1431, -1534, -1942, -2910, -2174, -2892, -2410, -2411, -2469 + ], + [0, -932, -5208, -3784, -7148, -5127, -3634], + [1, 3, 3333], + [0, 3334, 3335, 3336, 4], + [0, -429, -264, -263], + [0, -4153, -3330, -426, -932, -4164], + [0, -4165, -856, -4100, -3485, -4156, -4158, -4346, -3862], + [1, 3, 3338], + [0, 3339, 3340, 3341, 9], + [0, -3188, -189, -671, -680, -8340, -3347, -8341, -1110, -1366, -5894, -1451, -1878, -8342, -8343, -2177, -4096], + [ + 0, -22, -23, -32, -3244, -8344, -428, -3782, -519, -652, -910, -932, -8211, -945, -947, -955, -960, -978, -981, + -8260, -982, -986, -1536, -1609, -8345, -8346, -1768, -1772, -8275, -1821, -1951, -2410, -2478, -2548 + ], + [0, -932, -5208, -3784, -8347, -8170, -7148, -5553, -2541], + [1, 3, 3343], + [0, 199, 3344, 3345, 4], + [ + 0, -3748, -3330, -3621, -3037, -427, -428, -5206, -8348, -8349, -726, -932, -947, -955, -979, -981, -8260, + -2379, -2392, -2410, -2423, -2469 + ], + [0, -932, -5208, -3784, -8350, -2469, -8351], + [1, 3, 3347], + [0, 3348, 3349, 3350, 5], + [0, -189, -5199, -2788, -1931, -2177, -8352], + [ + 0, -50, -3560, -8282, -3748, -5030, -3330, -8283, -3037, -3199, -8353, -427, -428, -3782, -3664, -507, -8284, + -928, -932, -6835, -940, -955, -958, -961, -8354, -8287, -967, -978, -8190, -983, -986, -997, -1110, -1449, + -1609, -1852, -1942, -2892, -2410, -8291, -2468, -2469, -2478 + ], + [0, -932, -3784, -5031, -2476, -5173, -8199], + [1, 3, 3352], + [0, 3353, 3354, 3355, 6], + [0, -22, -1464, -668, -1373, -1793, -2006, -2205], + [0, -3244, -8355, -3330, -3037, -4067, -3040, -740, -932, -5135, -8356, -8357, -1431, -1741, -2269, -2410, -2469], + [0, -932, -8358], + [1, 3, 3357], + [0, 3358, 3359, 38, 9], + [0, -8359, -426, -8360, -988], + [0, -428, -664, -983, -986, -8159, -2195], + [1, 3, 3361], + [0, 0, 3362, 38, 5], + [0, -1810, -2127, -2132, -2384, -2410], + [1, 3, 3364], + [0, 3365, 0, 3366, 4], + [0, -941, -8361], + [0, -984], + [1, 3, 3368], + [0, 0, 0, 3369, 9], + [0, -4791, -3217, -8257, -6024, -3209, -3966, -4792], + [1, 3, 3371], + [0, 3372, 3373, 3374, 5], + [0, -461, -6426, -983], + [0, -2832, -2127, -2195, -2384, -2410], + [0, -3272, -3217, -3214, -3215, -4132, -461], + [1, 3, 3376], + [0, 0, 3377, 3378, 5], + [ + 0, -6774, -8362, -8363, -1107, -1405, -8364, -1471, -1475, -1477, -1478, -1479, -1480, -1482, -1487, -8365, + -1488, -1548, -1654, -8366, -2081, -2330, -2388, -2410, -2412, -8367, -2501 + ], + [0, -3272, -3217, -987, -3214, -3215, -4132], + [1, 3, 3380], + [0, 0, 3381, 7, 5], + [0, -558, -566, -664, -986, -1168, -1179, -1199, -1205, -8368, -1452, -1654], + [1, 3, 3383], + [0, 202, 3384, 7, 6], + [0, -2410, -2447], + [1, 3, 3386], + [0, 0, 3387, 3388, 6], + [0, -1654, -932, -1405, -589, -2172, -2155, -585, -966, -958, -968, -943, -963, -974], + [0, -990, -1334, -4616], + [1, 3, 3390], + [0, 3391, 3392, 3393, 8], + [0, -8369, -992], + [ + 0, -8370, -8371, -8372, -8373, -4272, -5686, -3037, -8096, -633, -8374, -756, -1344, -1405, -1471, -1472, -1477, + -1479, -8375, -1646, -1788, -1942, -2322, -2379, -2388, -2402, -2405, -2410, -8376 + ], + [0, -4276, -8377], + [1, 3, 3395], + [0, 3396, 3397, 3398, 5], + [0, -4272, -616, -760, -8378, -8379], + [0, -8380, -3037, -8381, -8096, -932, -1471, -1475, -1479, -8375, -8382, -1788, -1942, -2322, -2379, -2410], + [0, -4276, -8113, -5260], + [1, 3, 3400], + [0, 3401, 3402, 3403, 5], + [0, -461, -668, -2550, -1548, -615, -1077, -8383, -988, -1600, -8384, -2425], + [0, -1983, -8385, -2410, -3037], + [0, -8386, -8387, -3214, -1599, -4004], + [1, 3, 3405], + [0, 3406, 3407, 3408, 5], + [0, -883, -8388, -1597, -8389, -2239, -8390, -2346], + [0, -8391, -8392, -8393, -2322, -8394], + [0, -5827, -6917, -8395, -7724, -2239, -8396, -1631, -8276], + [1, 3, 3410], + [0, 0, 3411, 3412, 9], + [0, -589, -615, -756, -1654, -1788], + [0, -5389, -997, -6820, -8397, -8398, -8399, -8400, -6821, -8401, -8402, -1801, -8403, -8404], + [1, 3, 3414], + [0, 0, 3415, 3416, 4], + [0, -350, -3266, -509, -652, -1654, -2127], + [0, -8405, -8406, -8407, -8408, -8398, -8399, -6821, -8401, -6820, -5389, -1801, -8400, -8403, -8409, -8404], + [1, 3, 3418], + [0, 0, 3419, 3420, 5], + [0, -468, -1083, -8047, -1283, -1402, -2322], + [0, -997, -8410, -8411, -8412], + [1, 3, 3422], + [0, 3423, 3424, 3425, 4], + [0, -8413, -769, -1040, -1100, -8414, -1395, -1399, -1773, -1951, -2202, -8415, -8416], + [0, -3037, -519, -652, -8417, -8418, -8419, -8420, -1849, -7087, -6909, -2384, -2410, -2518, -2541], + [ + 0, -8421, -6599, -1958, -8422, -7096, -8423, -8424, -7091, -6656, -5550, -8425, -7304, -8426, -1764, -1847, + -8427, -5369 + ], + [1, 3, 3427], + [0, 0, 3428, 3429, 6], + [0, -1144, -1146, -1149, -1127, -2518], + [0, -1000, -1958, -8428, -3973, -8429, -8430, -8431, -8432], + [1, 3, 3431], + [0, 3432, 3433, 7, 4], + [0, -8433, -8434, -5124, -4025, -5129, -1427], + [0, -7037, -4034, -668, -1361], + [1, 3, 3435], + [0, 0, 3436, 3437, 4], + [0, -2832, -3037, -8200, -3665, -932, -8435, -1763, -8436, -2269, -2378, -2410, -2469], + [0, -2410, -8437, -507, -3694, -2414, -4004, -3634], + [1, 3, 3439], + [0, 3440, 3441, 203, 4], + [ + 0, -1983, -828, -990, -1801, -2178, -2453, -812, -1072, -743, -3122, -459, -2401, -1840, -2255, -907, -1641, + -5148, -617, -929, -1335, -1800, -737, -1045, -1997, -2187, -746, -8438, -736 + ], + [0, -888, -1296, -1788, -465, -1654, -2457, -932, -1610, -1676, -2293, -733, -744, -745, -1010, -1635, -8439], + [1, 3, 3443], + [0, 3444, 3445, 203, 4], + [ + 0, -459, -8440, -617, -736, -737, -743, -746, -812, -828, -907, -929, -990, -1045, -1072, -1335, -8438, -1636, + -1800, -1840, -1851, -5148, -1983, -1997, -2155, -2178, -2187, -8441, -2255, -2401, -2445, -2453 + ], + [0, -465, -733, -744, -745, -888, -932, -1010, -1296, -1610, -1635, -1654, -1676, -1788, -8439, -2293, -2457], + [1, 3, 3447], + [0, 3448, 3449, 3450, 6], + [0, -23, -25, -46, -8245, -1851], + [0, -3136, -932, -1415], + [0, -4847, -1004, -1446, -4100, -3696, -8442, -856, -2305, -5886, -3262, -3960, -8443, -8444, -8445], + [1, 3, 3452], + [0, 3453, 3454, 3455, 4], + [0, -888, -1650, -719, -1645, -6123], + [0, -1654, -932, -2125, -2418, -2293, -2369, -966, -958, -968, -943, -974, -2450], + [0, -1004, -3161, -6125, -3578, -3691, -5728, -3122, -3994, -3690], + [1, 3, 3457], + [0, 3458, 3459, 3460, 5], + [0, -1107, -1119, -1276], + [0, -190, -3470, -7040, -3471, -3472, -7041, -7042, -3136, -3037, -932, -1110, -1417, -2174, -2375, -2410, -2411], + [0, -1004, -8446, -1276, -6107, -3999, -8447, -3261], + [1, 3, 3462], + [0, 3463, 3464, 3465, 5], + [0, -1465, -8448, -3850], + [0, -1654, -932, -1004, -2379, -1942, -2410, -3621, -3617, -739, -428, -427], + [0, -6120, -8449, -3173, -8450, -6121, -1334, -3175, -8451, -1791, -1004], + [1, 3, 3467], + [0, 3468, 3469, 7, 5], + [0, -743, -746, -812, -828, -6825, -1840, -2155, -2418], + [0, -465, -744, -932, -963, -1004, -1654, -1788, -2293], + [1, 3, 3471], + [0, 3472, 3473, 3474, 5], + [0, -469, -668, -719, -724, -754, -865, -1004, -1435, -2127, -2132, -2410, -2564], + [0, -190, -3732, -4198, -3617, -3037, -427, -428, -932, -966, -1110, -1753, -1942, -2125, -2379, -2383, -2411], + [0, -3690, -3445, -6491, -3113, -6129, -1004, -8452, -3161, -8453, -5545, -3844, -3926], + [1, 3, 3476], + [0, 0, 3477, 3478, 5], + [0, -652, -8454, -2210, -932, -1004, -2379, -8455, -2410, -3037, -4372, -3617, -428, -427], + [ + 0, -8456, -8457, -4055, -2410, -3690, -1334, -1004, -8458, -8459, -2410, -5401, -8038, -8460, -8461, -8462, + -8463, -8464, -4140, -4601, -3445, -8465, -8466, -2006, -8467, -8468, -8469 + ], + [1, 3, 3480], + [0, 3481, 3482, 3483, 4], + [0, -1548, -2451], + [0, -2685, -8470, -8471, -3136, -3044, -427, -428, -932, -940, -958, -967, -1415, -1942, -2375, -2410], + [0, -1004, -2451, -3926, -5874, -7723, -8472, -2544], + [1, 3, 3485], + [0, 3486, 3487, 3488, 5], + [0, -483, -1736, -8473, -1993, -8474], + [ + 0, -3732, -4198, -8475, -3617, -4199, -8476, -8477, -4625, -8478, -724, -754, -828, -1004, -4206, -1335, -1730, + -8479, -2410, -2426, -2564, -8480 + ], + [ + 0, -3967, -3690, -1334, -5401, -856, -4055, -1004, -2410, -4058, -3844, -8481, -4847, -8482, -3438, -8483, + -8484, -8485, -8486, -2564, -3926 + ], + [1, 3, 3490], + [0, 0, 3491, 3492, 8], + [0, -5834, -8487, -932, -1445, -2322], + [0, -1015, -702, -1631], + [1, 3, 3494], + [0, 3495, 3496, 3497, 8], + [0, -8488, -8489], + [0, -8490, -8491, -8492, -1202, -1396, -8493, -1646, -1654, -1792], + [ + 0, -7370, -702, -1015, -1631, -7369, -7208, -1792, -1797, -7375, -3589, -7153, -8494, -8495, -2444, -3590, + -5260, -5846 + ], + [1, 3, 3499], + [0, 3500, 3501, 7, 5], + [0, -510, -1543, -2168, -2510], + [ + 0, -526, -533, -551, -556, -558, -767, -778, -825, -932, -6929, -958, -1041, -1415, -1534, -1780, -1939, -2000, + -2251, -2275, -2501, -8496 + ], + [1, 3, 3503], + [0, 3504, 3505, 3506, 10], + [0, -812, -1100, -2555, -8497], + [0, -427, -428, -519, -932, -943, -950, -958, -966, -968, -974, -1077, -1344, -1534, -1788, -2384, -2410], + [0, -2432, -5408, -7347], + [1, 3, 3508], + [0, 0, 3509, 7, 9], + [ + 0, -1788, -1168, -1446, -1654, -2210, -932, -1548, -1813, -2347, -756, -633, -2915, -1243, -1262, -1534, -2778, + -2461, -1204, -8498, -8499, -2463 + ], + [1, 3, 3511], + [0, 3512, 3513, 3514, 4], + [0, -8500], + [0, -932, -937, -966, -1001, -1654, -1788, -8501, -2210], + [0, -8502, -1573, -3444, -5545, -3240, -8503], + [1, 3, 3516], + [0, 3517, 3518, 3519, 4], + [0, -8504], + [0, -262, -3037, -767, -1107, -8342, -2104, -2402, -2410, -2469, -8505, -8506, -1023], + [0, -8507, -8508, -5858, -3634, -8509, -8510, -8511, -1021, -8512, -8513, -1415], + [1, 3, 3521], + [0, 3522, 0, 3523, 8], + [0, -8514, -8515], + [0, -788, -3215, -5922, -8516, -8517, -8518], + [1, 3, 3525], + [0, 0, 3526, 3527, 4], + [0, -756, -864, -932, -1654, -1788, -1939, -2006, -2052, -2210, -2410], + [0, -5922, -6439, -821], + [1, 3, 3529], + [0, 3530, 3531, 204, 4], + [0, -8519, -8520, -1108, -5615, -1639], + [ + 0, -8521, -6927, -8522, -4036, -3621, -3037, -8523, -4372, -8524, -932, -8525, -999, -1026, -4787, -1107, -8526, + -1654, -2125, -2210, -8527, -2410 + ], + [1, 3, 3533], + [0, 0, 3534, 7, 5], + [0, -3621, -3037, -1654, -2165, -2410], + [1, 3, 3536], + [0, 3537, 3538, 3539, 11], + [0, -8529], + [0, -23, -38, -40, -43, -3037, -534, -652, -932, -1297, -1412, -1942, -1973, -2410, -2501, -2503], + [0, -5922, -6597, -4055, -3215, -2536, -6841, -2537, -3756, -2451, -5874, -8530, -507, -8531, -8532, -3264], + [1, 3, 3541], + [0, 0, 0, 3542, 10], + [0, -1029, -3162, -2363, -2319, -8533, -826], + [1, 3, 3544], + [0, 3545, 3546, 3547, 4], + [0, -8534, -8535, -8536, -8537, -8538, -8539, -8540, -8541, -8542, -1867, -8543, -2124, -8544, -2177, -8545], + [ + 0, -8546, -3902, -357, -3748, -5029, -3037, -469, -3907, -470, -8547, -8548, -8549, -2917, -8550, -726, -767, + -932, -8551, -4848, -8552, -8553, -1335, -1435, -5265, -1464, -8554, -2884, -1730, -1972, -2240, -2384, -2410, + -2426, -2453, -3612 + ], + [0, -3578, -3161, -4055, -4058, -1805, -3690], + [1, 3, 3549], + [0, 3550, 3551, 7, 5], + [ + 0, -262, -8555, -5335, -8556, -8557, -5336, -5337, -8558, -8559, -536, -541, -8560, -8561, -909, -928, -1026, + -5344, -8562, -1645, -8563, -2383, -2410, -8564 + ], + [ + 0, -86, -3307, -367, -3136, -8565, -8566, -3037, -6025, -5367, -1344, -1415, -3640, -1534, -1942, -1944, -1945, + -2125, -2379, -2392, -5369 + ], + [1, 3, 3553], + [0, 3554, 3555, 3556, 10], + [ + 0, -8567, -8568, -8569, -8570, -8571, -6369, -883, -1646, -8255, -2062, -8032, -2243, -8572, -8057, -8573, + -2322, -2347 + ], + [0, -5834, -515, -516, -932, -1365, -1777, -2156], + [0, -2319, -8574, -4004, -8575, -8576, -3240], + [1, 3, 3558], + [0, 3559, 3560, 7, 5], + [0, -768, -8577, -1580, -1792, -1961, -8578, -2594], + [0, -23, -824, -1059, -1168, -1174, -1201, -1243, -1361, -1417, -1632], + [1, 3, 3562], + [0, 28, 3563, 3564, 9], + [0, -21, -23, -40, -41, -3470, -3471, -8579, -5859, -8580, -553, -796, -932, -933, -1534, -1650, -2174], + [ + 0, -8581, -8582, -8583, -8584, -3098, -8585, -3100, -3482, -2006, -8586, -8587, -5066, -3578, -8588, -8589, + -8590, -8591, -8592, -8593, -8594, -8595, -8596, -8597, -8598, -8599, -8600, -8601, -8602, -8603, -8604, -8605 + ], + [1, 3, 3566], + [0, 39, 3567, 3568, 4], + [ + 0, -21, -23, -38, -40, -41, -42, -3326, -350, -351, -3267, -407, -409, -2622, -3136, -3040, -3052, -427, -428, + -708, -726, -767, -932, -934, -940, -7476, -958, -959, -969, -970, -1415, -2006, -2019, -2082, -2127, -2140, + -2375, -2387, -2410 + ], + [0, -8606, -3100, -8607, -2074], + [1, 3, 3570], + [0, 3571, 0, 3572, 8], + [0, -8608, -8609, -8610, -5140], + [0, -4213, -1334, -4215, -3634, -4216, -8611], + [1, 3, 3574], + [0, 3575, 0, 3576, 10], + [0, -8612], + [0, -8613, -1038, -6768, -8614, -510, -5921, -8615, -6309, -1961], + [1, 3, 3578], + [0, 75, 3579, 3580, 4], + [0, -3037, -3665, -510, -1344, -1534, -2410, -2466, -6859, -2469], + [0, -1039, -4111, -8616, -8617, -5514], + [1, 3, 3582], + [0, 3583, 14, 3584, 9], + [0, -6861], + [0, -4112, -687, -7095, -3958, -8132, -8618, -8619, -8620, -1040, -8621], + [1, 3, 3586], + [0, 205, 3587, 48, 4], + [ + 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -767, -824, -825, -932, -940, -958, -1344, -1415, -1534, + -1623, -1771, -1942, -2251, -2437, -2501 + ], + [1, 3, 3589], + [0, 0, 3590, 3591, 8], + [0, -21, -23, -4691, -3356], + [0, -8622, -8623, -8624], + [1, 3, 3593], + [0, 3594, 3595, 3596, 4], + [0, -8625, -8626, -8627, -8628], + [0, -8629, -3037, -519, -8630, -1100, -8631, -2384, -2541], + [ + 0, -1640, -6656, -8038, -8632, -5409, -6527, -5094, -8633, -8634, -6855, -8635, -8636, -6659, -7440, -1391, + -8637, -8638, -8639, -7863, -7304, -640, -6438, -8640, -7715, -8641, -8642, -5315, -8643, -8644, -8645, -8646, + -8647, -8648, -8649, -8650, -8651, -1992, -8652, -8653, -8654, -8655, -8656, -8657, -5408, -2323, -8658, -8659, + -7345, -8660, -7860, -8661, -8662, -8663, -8664, -8665, -8666, -8667, -8668, -8669, -8670, -8671, -8672, -8673, + -8674, -8675, -6528, -8676, -8677, -5953, -8678, -8679, -8680, -8681, -8682, -8683, -8684, -8685, -8686, -8687, + -8688, -3742, -8689, -8690, -8691, -8692, -8693, -8694, -8695, -8696, -8697, -8698, -8699, -8700, -8701, -8702, + -8703, -8704, -2534, -8705, -8706, -8707, -8708, -8709, -8710, -8711, -8712, -8713, -8714, -6597, -8715, -8716, + -4771, -8717, -8718, -8719, -6042, -8720, -8721, -8722, -8723, -8724, -8725, -8726, -8727, -8728, -8729, -8730, + -8731, -8732, -8733, -8734, -8735, -8736, -8737, -8738, -8739, -8740, -8741, -8742, -8743, -8744, -8745, -8746, + -8747, -8748, -8749, -8750, -8751, -8752, -8753, -5316, -8754, -8755, -8756, -8757, -7557, -8758, -8759, -8760, + -8761, -8762, -8763, -8764, -8765, -8766, -7711, -8767, -8768, -8769, -8770, -8771, -8772, -8773, -8774, -8775, + -8776, -8777, -8778, -8779, -8780, -8781, -8782, -8783, -8784, -8785, -8786, -8787, -8788, -8789, -8790, -8791, + -8792, -8793, -6695, -8794, -8795, -8796, -7349, -8797, -8798 + ], + [1, 3, 3598], + [0, 0, 3599, 3600, 9], + [0, -3266, -516, -652, -932, -1344, -1654, -2127], + [0, -6656, -1044, -8799, -8800, -8801, -651, -834], + [1, 3, 3602], + [0, 3603, 81, 7, 6], + [0, -812, -907, -929, -1800, -1840, -2255], + [1, 3, 3605], + [0, 3606, 3607, 3608, 5], + [0, -1871, -5907], + [0, -2541, -519, -824, -2384, -2331], + [0, -3324, -7421, -6491, -5573, -7282], + [1, 3, 3610], + [0, 3611, 3612, 3613, 4], + [0, -8802, -8803], + [0, -519, -7408, -2331, -2384, -2541], + [ + 0, -5573, -8804, -1047, -5504, -8805, -8806, -6656, -7282, -5572, -5897, -2114, -8807, -6370, -7420, -7421, + -2487, -8808, -1847 + ], + [1, 3, 3615], + [0, 3616, 3617, 3618, 4], + [0, -8809, -1393, -1639, -8810], + [0, -932, -937, -966, -1001, -8811, -1654, -1759, -1788, -2114], + [0, -6656, -5573, -1047, -5504, -1107, -5572, -5574, -2114, -7282], + [1, 3, 3620], + [0, 3621, 3622, 3623, 4], + [ + 0, -8812, -8813, -8814, -8815, -8816, -8817, -8818, -8819, -8820, -8821, -8822, -8823, -8824, -8825, -8826, + -8827, -8828, -8829, -8830, -8831, -8832, -8833, -8834, -8835, -8836, -8837, -8838, -8839 + ], + [0, -1168, -2127, -2410, -1244, -1252, -2143, -3266, -2134, -350, -2139, -2142, -351], + [0, -3173, -7685, -8840, -1050, -8841, -6005, -6187, -8842], + [1, 3, 3625], + [0, 3626, 3627, 3628, 10], + [0, -8843, -8831, -8844, -3037, -8845, -1025, -8846, -1465, -8847, -1730, -2446], + [ + 0, -8848, -8824, -8825, -8849, -262, -8850, -3035, -4269, -8851, -3850, -3044, -5686, -3621, -4624, -8852, + -8853, -4372, -3625, -3738, -427, -428, -581, -664, -665, -3629, -668, -677, -824, -932, -8854, -1168, -1199, + -1208, -1261, -8855, -1548, -1646, -1654, -1693, -1722, -1771, -1788, -2105, -2106, -2150, -2210, -2211, -2379, + -2410, -2550 + ], + [0, -8856, -7685, -8840, -8841, -3173], + [1, 3, 3630], + [0, 3631, 0, 3632, 10], + [ + 0, -8857, -8858, -8859, -8860, -8861, -8862, -4106, -8863, -458, -469, -470, -501, -8864, -617, -679, -8865, + -695, -713, -719, -728, -754, -767, -769, -790, -8866, -8867, -8868, -1004, -1044, -1069, -1077, -1087, -8869, + -1107, -8846, -1353, -1442, -1465, -1526, -8870, -1548, -8871, -1610, -6294, -1640, -1645, -1676, -1729, -1805, + -1816, -3447, -1857, -8872, -8873, -1888, -1959, -8874, -2122, -2177, -8875, -8876, -8877, -8878, -4356, -2359, + -8879, -8880, -8881, -2446, -2520, -2522, -2531, -2548, -2564, -8882 + ], + [0, -8883, -687, -8884, -5801, -8885, -1050, -8841, -6224, -8886], + [1, 3, 3634], + [0, 3635, 86, 3636, 9], + [0, -8887, -668, -831, -8888, -8889, -2001], + [0, -7416, -5897], + [1, 3, 3638], + [0, 3639, 3640, 7, 5], + [0, -3048, -8566, -8890, -1077, -8891, -2488], + [0, -3037, -2125, -2319, -2410], + [1, 3, 3642], + [0, 0, 86, 3643, 5], + [0, -1055, -4055, -5841, -8892, -2239, -7208, -8893], + [1, 3, 3645], + [0, 3646, 206, 3647, 5], + [0, -812, -926, -1077, -1548, -2359], + [0, -7871], + [1, 3, 3649], + [0, 0, 3650, 3651, 4], + [ + 0, -23, -36, -6064, -40, -8894, -3048, -3036, -3136, -4964, -3037, -8336, -551, -679, -756, -1077, -1107, -1415, + -1942, -2125, -2127, -2128, -8895, -8896, -2141, -2334, -2375, -2379, -2387, -2410 + ], + [0, -3214, -4224, -4120, -4121, -4123, -4122, -8897], + [1, 3, 3653], + [0, 3654, 3655, 3656, 9], + [0, -8898, -668, -1038, -1381, -1531, -1758, -6467, -1965, -2177, -2246, -8899, -6007], + [0, -664, -756, -932, -1405, -8900, -1654, -1939, -1972, -2210], + [0, -8901, -8902, -8903, -8904, -8421, -5550, -6836, -8905, -8906, -5921, -8907, -8908, -8427, -5801, -8909], + [1, 3, 3658], + [0, 0, 0, 3659, 4], + [0, -5732, -687, -8425, -7304, -5411, -4038, -8038, -8910, -7440, -7144, -3214, -3756, -8911], + [1, 3, 3661], + [0, 3662, 3663, 3664, 11], + [0, -2997, -8912, -8913, -1889, -2318], + [ + 0, -23, -40, -3559, -8914, -8915, -427, -428, -518, -534, -749, -753, -767, -778, -779, -784, -932, -940, -967, + -8916, -1041, -8917, -1643, -1771, -1942, -8918, -4245, -2200, -2233, -2275, -2335, -2376, -2410, -2501, -2503, + -2505, -8919, -2552 + ], + [ + 0, -1060, -2410, -3214, -2501, -3264, -775, -5511, -8920, -2316, -7287, -8921, -8922, -8923, -8924, -7287, + -8925, -7288, -7289, -8926, -7294, -8927, -8928, -7297, -7293, -7292, -7296, -8929, -932, -1942, -8930, -985, + -8931 + ], + [1, 3, 3666], + [0, 3667, 3668, 3669, 4], + [0, -510, -2518], + [0, -1788, -1446, -1654, -2198], + [0, -8932], + [1, 3, 3671], + [0, 3672, 3673, 3674, 4], + [0, -8933, -1033], + [ + 0, -23, -534, -7747, -824, -1168, -1174, -1201, -1208, -1243, -1266, -1361, -1415, -1419, -1792, -2006, -8934, + -2019, -2463, -2501, -7752 + ], + [0, -1062, -2006, -4038, -8935], + [1, 3, 3676], + [0, 0, 3677, 3678, 4], + [0, -725, -932, -1004, -8936, -1654, -1788], + [0, -1334, -1342, -2435, -8937, -3323, -8938, -3590], + [1, 3, 3680], + [0, 0, 0, 3681, 9], + [0, -3827, -3837, -3838, -3167, -3827, -620], + [1, 3, 3683], + [0, 3684, 3685, 7, 11], + [0, -8050], + [0, -2832, -5834, -8084, -8939, -8096, -516, -932, -1777, -1788, -2322], + [1, 3, 3687], + [0, 3688, 3689, 3690, 11], + [0, -510, -8940, -702, -8941, -714, -1650, -2520, -8942, -8943, -1953, -728, -995, -1792, -8944], + [0, -664, -2471, -1654, -932, -1666, -8945, -2105, -1942, -8946, -940, -967], + [0, -687, -8947, -8948, -3674], + [1, 3, 3692], + [0, 3693, 3694, 3695, 8], + [0, -22, -668, -679, -755, -823, -1077, -1623, -1645, -8949, -2168, -2177, -2321], + [ + 0, -3307, -7040, -3842, -3472, -7041, -7042, -8355, -7080, -3048, -3136, -4049, -8566, -3637, -3037, -8890, + -3199, -427, -428, -721, -767, -932, -958, -966, -967, -4650, -1344, -1415, -8950, -1421, -1456, -8951, -1534, + -1658, -1942, -2125, -2174, -2269, -2375, -2410, -2501 + ], + [0, -2501, -3862, -2410, -8952, -2376, -2501, -8423, -5922], + [1, 3, 3697], + [0, 3698, 3699, 3700, 5], + [0, -6008, -668, -679, -1548, -1639, -1645, -2114, -2321], + [ + 0, -8953, -7202, -3044, -4036, -8566, -3037, -3200, -3046, -664, -778, -932, -1344, -1405, -1534, -1654, -1658, + -1660, -1942, -2125, -2210, -2376, -2388, -2389, -2410, -2476, -2477, -2481, -2485, -2501 + ], + [0, -2501, -3862, -2410, -8038, -7144, -8170, -8423, -5922, -6188, -2376, -520, -8954, -7172], + [1, 3, 3702], + [0, 3703, 3704, 7, 6], + [0, -8955, -8956, -8957, -1285, -1641], + [ + 0, -5834, -516, -633, -8958, -756, -769, -932, -8959, -8960, -1070, -1365, -8961, -1405, -8962, -8963, -6058, + -1939, -1978, -2105, -2125, -2177, -2322 + ], + [1, 3, 3706], + [0, 3707, 3708, 3709, 4], + [0, -1801, -8964, -8965], + [ + 0, -1501, -1788, -1415, -932, -2127, -1004, -1942, -2293, -8966, -958, -3234, -940, -967, -350, -8967, -934, + -351, -8968 + ], + [0, -6463, -4053, -6582, -1985, -8969, -4055, -8970, -6656], + [1, 3, 3711], + [0, 3712, 3713, 3714, 9], + [0, -5220, -823, -1311, -1548, -1549, -2798, -8971, -2387], + [0, -409, -3044, -3040, -3052, -4972, -8972, -2006, -2019, -8973, -2410, -3612], + [0, -1071, -4053, -4054, -2006, -2019, -3322, -8974, -3926, -8975, -3926, -8976, -8977], + [1, 3, 3716], + [0, 0, 3717, 3718, 6], + [0, -1654, -932, -1405, -589, -585, -966, -958, -968, -943, -963, -974], + [0, -1072, -1334, -8978, -3324], + [1, 3, 3720], + [0, 3721, 3722, 3723, 4], + [0, -668, -3606, -2267], + [0, -527, -528, -534, -545, -560, -932, -949, -1001, -1415, -1626, -2501], + [0, -8979, -8980, -2501, -3862], + [1, 3, 3725], + [0, 3726, 3727, 3728, 4], + [0, -1442], + [0, -627, -8981, -756, -1405, -2250, -2322, -2568], + [0, -2548, -8982, -8983], + [1, 3, 3730], + [0, 3731, 3732, 3733, 8], + [0, -1119, -1462, -8984], + [0, -8985, -5726, -1646, -1654, -1788, -1972, -8986, -2250], + [ + 0, -1076, -6656, -8801, -6351, -7421, -8987, -1650, -8988, -8989, -7371, -4055, -2059, -6234, -8987, -6693, + -6694, -2363, -8990, -5554, -8991, -6932, -1961 + ], + [1, 3, 3735], + [0, 124, 3736, 3737, 4], + [0, -3035, -3048, -3621, -3037, -664, -1077, -1405, -1654, -1788, -1942, -1948, -8992, -2379, -2410], + [0, -1076, -8801], + [1, 3, 3739], + [0, 3740, 3741, 3742, 4], + [0, -8993, -1077, -1693, -8994], + [0, -3048, -3623, -1654, -925, -2148, -615, -2517, -1980], + [0, -1961, -1076, -6656, -8801], + [1, 3, 3744], + [0, 0, 3745, 3746, 5], + [0, -1733], + [0, -1080, -8995], + [1, 3, 3748], + [0, 3749, 3750, 7, 11], + [0, -1650, -2125, -1370, -1119], + [0, -2319, -2250], + [1, 3, 3752], + [0, 3753, 0, 3754, 8], + [0, -2543, -2062], + [0, -1082, -3323, -6931], + [1, 3, 3756], + [0, 0, 3757, 3758, 5], + [0, -5834, -515, -516, -932, -1788, -2156, -2322], + [0, -5924, -6557, -8108, -6444, -7163, -8996], + [1, 3, 3760], + [0, 0, 3761, 3762, 4], + [ + 0, -21, -23, -32, -36, -3367, -40, -42, -86, -3307, -8997, -3326, -351, -3561, -8998, -8999, -9000, -9001, + -8219, -2716, -2717, -534, -932, -940, -1344, -9002, -1942, -2104, -2127, -2132, -2251, -2334, -2410, -2469, + -2816, -9003 + ], + [0, -1087, -7282, -9004], + [1, 3, 3764], + [0, 0, 3765, 3766, 11], + [0, -3748, -3268, -427, -428, -367, -589, -932, -943, -948, -958, -965, -968, -1344, -2391], + [0, -7314, -3578, -1334, -3844, -9005, -3445, -3161], + [1, 3, 3768], + [0, 0, 0, 3769, 8], + [0, -1087, -7282, -7724, -9006, -9007], + [1, 3, 3771], + [0, 3772, 3773, 3774, 6], + [0, -9008], + [0, -510, -1127, -9009, -1132, -1144, -1146, -2125, -2176], + [0, -2490, -1107], + [1, 3, 3776], + [0, 0, 3777, 7, 6], + [0, -2410, -3037], + [1, 3, 3779], + [0, 3780, 3781, 3782, 5], + [0, -668, -2562, -2523, -2557], + [0, -1127, -1131, -9010, -9011, -1542, -2425, -1144, -1151], + [0, -2557, -3970, -3161, -3095, -3577, -3994, -475], + [1, 3, 3784], + [0, 3785, 3786, 3787, 5], + [0, -668, -2218, -2562, -1548, -9012, -2557, -2425], + [0, -1693, -888, -664, -622, -1654, -2210, -932, -1650, -615, -1405, -719, -2211, -769, -1440, -665, -2070, -1657], + [ + 0, -2557, -475, -1168, -9013, -9014, -620, -478, -9015, -2162, -1521, -3184, -525, -9016, -2410, -711, -1409, + -9017, -2501, -932 + ], + [1, 3, 3789], + [0, 3790, 3791, 3792, 4], + [0, -1116, -1107, -2562, -727, -1548, -689, -9018, -9019, -2557], + [0, -888, -932, -1412, -1077, -9010, -9011, -958, -9020], + [0, -2557, -3970, -3100, -3994, -9021, -3095, -5574, -9022], + [1, 3, 3794], + [0, 0, 3795, 3796, 5], + [0, -3037, -932, -940, -967, -968, -1942, -2319, -2410], + [0, -9023, -9024, -7329], + [1, 3, 3798], + [0, 0, 3799, 3800, 10], + [0, -5325, -3037, -3899, -9025, -1942, -2200, -9026, -2410, -2469], + [0, -5925, -3262, -9027, -9028, -9029, -5112, -6917, -9030], + [1, 3, 3802], + [0, 0, 3803, 7, 11], + [ + 0, -21, -23, -40, -42, -3470, -3471, -7041, -3136, -3037, -427, -428, -9031, -9032, -528, -533, -534, -8167, + -932, -940, -948, -951, -958, -967, -969, -970, -972, -978, -1344, -9033, -1415, -1534, -1942, -2125, -2174, + -9034, -2410, -2501, -2503 + ], + [1, 3, 3805], + [0, 0, 3806, 7, 4], + [0, -9035, -9036, -9037, -9038, -1788], + [1, 3, 3808], + [0, 0, 115, 3809, 5], + [0, -7458, -5573, -9039, -1888, -9040, -9041, -9042, -729, -1805, -5149, -9043, -9044, -6555, -9045, -9046], + [1, 3, 3811], + [0, 0, 3812, 3813, 4], + [0, -3037, -826, -2541], + [0, -9047, -3972, -8428, -9048, -640, -5827, -1958, -2059], + [1, 3, 3815], + [0, 3816, 3817, 3818, 9], + [0, -9049, -1399], + [0, -3037, -519, -9050, -9051, -8877, -2384, -2541], + [0, -9052, -5827, -1961, -9048, -2265, -5554, -640, -2059, -6582, -9053, -8800, -9054, -7208, -9048], + [1, 3, 3820], + [0, 3821, 0, 3822, 4], + [0, -9055], + [0, -1101, -9052, -2410, -9056, -9057], + [1, 3, 3824], + [0, 0, 3825, 3826, 5], + [0, -3037, -427, -428, -7636, -932, -9058, -940, -967, -7638, -9059, -1942, -7639, -2402, -2410, -7640], + [0, -9060, -9061, -9062, -9063, -9064, -9065, -1102, -9066, -9067, -8995, -9068, -3966, -9069, -3694, -2410], + [1, 3, 3828], + [0, 3829, 3830, 3831, 8], + [0, -510, -1111, -1077, -719, -7731, -1046, -9070], + [0, -2359, -664, -1654, -2210, -932, -9071, -9072], + [0, -5889, -1103, -1105], + [1, 3, 3833], + [0, 3834, 3835, 3836, 5], + [0, -5504, -9073, -9074, -9075, -1849, -9076], + [ + 0, -528, -664, -9077, -708, -720, -796, -932, -9078, -951, -958, -964, -1654, -1658, -1788, -1972, -2174, -2210, + -2211, -9079, -2449 + ], + [0, -5889, -3322, -9080], + [1, 3, 3838], + [0, 0, 3839, 3840, 8], + [ + 0, -5870, -40, -9081, -9082, -9083, -4062, -351, -3561, -3266, -4785, -664, -932, -943, -958, -966, -968, -1471, + -1474, -1475, -1476, -1479, -1482, -1483, -1486, -1487, -1489, -7759, -1654, -2127, -3571, -2162, -2210, -2211 + ], + [0, -1105, -5248, -3100, -3095], + [1, 3, 3842], + [0, 3843, 3844, 7, 4], + [0, -1645, -9084, -9085], + [0, -3037, -928, -1623, -1650, -1942, -2125, -2319, -2386, -2402], + [1, 3, 3846], + [0, 3847, 125, 3848, 9], + [0, -1393], + [0, -1107, -8807, -6817, -1847, -9086, -7421, -3956, -9087], + [1, 3, 3850], + [0, 3851, 31, 7, 8], + [0, -9088, -1958], + [1, 3, 3853], + [0, 0, 3854, 3855, 4], + [0, -6593, -519, -674, -959, -1098, -9089, -8345, -1772, -1821, -1978, -2195, -2384, -2400, -2541], + [0, -1110, -1109, -9090, -3591, -3592, -1452, -932, -9091], + [1, 3, 3857], + [0, 3858, 3859, 3860, 8], + [0, -8413, -1026, -1353, -7408, -2218, -8803], + [0, -3037, -519, -589, -9092, -2331, -2384, -2541], + [ + 0, -9093, -5839, -7411, -7727, -6999, -7422, -7724, -5573, -9094, -7410, -1076, -1107, -9095, -9096, -7419, + -5572, -5912, -1645, -6809, -9097, -9098, -5574, -5064, -2368, -2444, -3590, -9087, -9099, -1961, -9100, -5889 + ], + [1, 3, 3862], + [0, 3863, 3864, 3865, 11], + [0, -812, -769, -9101, -9102], + [0, -510], + [0, -6524, -9103, -6527, -9104, -1355, -1112, -5845, -7450, -7378], + [1, 3, 3867], + [0, 3868, 3869, 3870, 4], + [0, -1729, -9105, -2387], + [0, -3037, -4201, -427, -428, -932, -9106, -958, -965, -968, -1942, -2402, -2410], + [ + 0, -9107, -9108, -9109, -9110, -9111, -9112, -3184, -4791, -1113, -9113, -9114, -8909, -9115, -4633, -9116, + -9117, -9118, -9119, -9120, -9121, -9122, -9123, -3445, -9124, -9125, -9126, -9127 + ], + [1, 3, 3872], + [0, 3873, 3874, 3875, 9], + [0, -3517, -9128], + [0, -50, -3037, -427, -428, -2758, -932, -934, -935, -958, -9129, -8846, -1722, -2892, -2410, -9130, -2469], + [0, -9131, -9132, -3939, -9133, -9134, -9135, -9136, -3690, -1115, -9137, -9138, -9139], + [1, 3, 3877], + [0, 3878, 3879, 3880, 8], + [0, -8846, -9140], + [ + 0, -9141, -3621, -9142, -9143, -3037, -9144, -6630, -4364, -4966, -4372, -3628, -9145, -9146, -652, -708, -767, + -999, -8869, -1166, -9147, -1446, -9148, -9149, -9150, -1654, -6455, -1705, -1722, -1783, -1805, -1827, -9151, + -1942, -1972, -2125, -2188, -2210, -2359, -2410, -2551 + ], + [0, -3939, -3690, -9152, -3323, -9153], + [1, 3, 3882], + [0, 3883, 3884, 3885, 5], + [0, -9154, -9155, -9156, -9157, -9158, -9159, -7006, -1495, -9160, -9161, -9162, -2400], + [ + 0, -9163, -5918, -357, -3268, -3617, -3037, -9164, -6279, -8852, -4372, -3626, -519, -523, -589, -615, -617, + -652, -9165, -9166, -9167, -825, -826, -1002, -1004, -1069, -5989, -1100, -1722, -1729, -1763, -1825, -9168, + -1866, -3653, -2062, -2105, -2210, -9169, -2331, -9170, -2364, -2392, -2410, -2541 + ], + [ + 0, -1334, -1342, -5735, -9052, -1116, -2435, -9171, -2105, -5493, -9172, -9173, -4213, -5149, -5150, -6826, + -6828, -9174, -9175, -9176, -9177, -523, -2291, -1729, -9128 + ], + [1, 3, 3887], + [0, 0, 3888, 3889, 4], + [ + 0, -1168, -2218, -2127, -784, -1821, -1889, -9178, -9179, -1783, -1978, -2281, -23, -518, -1930, -1330, -3572, + -40, -9180, -9181, -3326, -3266, -3561, -7189 + ], + [0, -9182, -3100, -4189, -3110], + [1, 3, 3891], + [0, 0, 3892, 3893, 4], + [0, -1362, -1650, -2125, -2319], + [0, -1076, -3551, -9183, -2122, -9184, -1986, -6324, -8980, -9185, -9186, -9187, -9188, -9189, -9190], + [1, 3, 3895], + [0, 0, 0, 3896, 8], + [0, -1122, -9191], + [1, 3, 3898], + [0, 33, 3899, 7, 5], + [0, -3035, -3621, -3037, -664, -1122, -1654, -2125, -2127, -2139, -2234, -9192, -2410], + [1, 3, 3901], + [0, 3902, 0, 7, 9], + [0, -9193, -2387], + [1, 3, 3904], + [0, 3905, 3906, 3907, 8], + [0, -1442, -8493, -9194, -9195], + [0, -9196, -8491, -711, -9197, -1016, -1075, -1202, -1646, -1654, -2362, -2460, -6234], + [ + 0, -9198, -9199, -710, -6582, -3671, -856, -7347, -9200, -9201, -1075, -9202, -3960, -3262, -1103, -5539, -3214, + -3259, -3756, -4182, -1599, -9203, -1838, -3215, -6747, -9204, -5142, -3110, -2362, -2548, -3672 + ], + [1, 3, 3909], + [0, 3910, 3911, 7, 9], + [0, -9205, -9206, -1551, -9073, -1696, -1969], + [0, -617, -9207, -1004, -9208, -1405, -1548, -1646, -1730, -9209], + [1, 3, 3913], + [0, 3914, 3915, 3916, 11], + [0, -1000, -1107, -1758, -1442, -1132, -1645, -808, -1351, -1048, -995, -9210, -9211, -9212], + [0, -9213, -2347, -9214, -1152, -9215, -1149, -1146], + [ + 0, -4107, -510, -687, -1644, -9216, -7641, -1548, -5119, -4004, -1989, -1754, -3844, -9217, -3970, -9218, -1410, + -3673 + ], + [1, 3, 3918], + [0, 3919, 3920, 3921, 5], + [0, -1323], + [0, -1127, -1132, -1140, -1134, -1136, -1144, -1146, -1148, -1165, -1138], + [0, -9219, -475, -3110, -3261, -9048], + [1, 3, 3923], + [0, 0, 3924, 49, 4], + [0, -1127, -1159, -1131, -1163, -664], + [1, 3, 3926], + [0, 3927, 3928, 3929, 9], + [0, -510, -633, -9220, -1107, -1548, -2114, -2491], + [0, -1127, -1132, -1134, -1144, -1654, -2210], + [0, -9219, -633, -1127], + [1, 3, 3931], + [0, 3932, 3933, 49, 6], + [0, -2177], + [0, -1127, -1129, -1134, -1144, -1146, -1150, -1159, -1542], + [1, 3, 3935], + [0, 3936, 207, 7, 4], + [0, -1758, -9221, -6007, -1381, -9212], + [1, 3, 3938], + [0, 3939, 3940, 3941, 5], + [0, -510, -506, -9222, -1366], + [0, -2541, -1127, -1753, -1132, -769, -1849, -9223, -2297, -1163, -1134, -1149], + [0, -9219, -5920, -5921, -9224, -7175, -6188, -9225, -6187, -5922, -9226], + [1, 3, 3943], + [0, 208, 3944, 3945, 10], + [0, -1127, -9071, -1144, -1143, -1146], + [0, -9219, -6688, -7416, -6694, -6693, -824, -6695, -7417, -2125], + [1, 3, 3947], + [0, 3948, 3949, 3950, 8], + [0, -510, -9227, -805, -9050, -2359, -2518], + [0, -1127, -1132, -1134, -1143, -1144, -1146, -1162], + [0, -9219, -9228, -3754, -2162, -775, -7644, -3277, -5553], + [1, 3, 3952], + [0, 3953, 126, 49, 4], + [0, -668, -2231], + [1, 3, 3955], + [0, 3956, 3957, 3958, 4], + [0, -1805, -510, -1676, -729, -5763, -2186, -2187, -7006, -9229], + [0, -1127, -1144, -1143, -1146], + [0, -9219, -3844, -729, -1334], + [1, 3, 3960], + [0, 3961, 3962, 49, 4], + [0, -668, -9230], + [0, -1127, -1132, -1134, -1143, -1144, -1146], + [1, 3, 3964], + [0, 3965, 127, 3966, 5], + [0, -668, -9231, -1548, -2271], + [0, -9219, -775, -7148, -9231], + [1, 3, 3968], + [0, 3969, 127, 3970, 8], + [0, -668, -683, -9232], + [0, -9219, -9233, -775, -5553, -3770, -3271, -1644, -6454], + [1, 3, 3972], + [0, 3973, 126, 3974, 4], + [0, -668, -1948, -1323], + [0, -9219, -3264, -9234, -1644, -6454, -7175], + [1, 3, 3976], + [0, 3977, 3978, 3979, 8], + [0, -668, -1356, -1826, -1877, -1948, -7691, -7692, -7690, -7687], + [0, -519, -825, -1127, -2541], + [0, -9219, -6454, -8642, -6527, -5094, -9235, -8640, -1644, -7715, -3839], + [1, 3, 3981], + [0, 3982, 207, 7, 5], + [0, -7446], + [1, 3, 3984], + [0, 3985, 3986, 49, 8], + [0, -668, -9236, -1452], + [0, -1127, -1143, -1146], + [1, 3, 3988], + [0, 3989, 3990, 49, 6], + [0, -1521, -510, -668, -1548], + [0, -1127, -1134, -1144, -9237, -1143, -1146], + [1, 3, 3992], + [0, 3993, 3994, 3995, 6], + [0, -9238], + [0, -1127, -1134, -1143, -1144, -2319], + [0, -9219, -1754, -4004, -4043], + [1, 3, 3997], + [0, 3998, 127, 3999, 8], + [0, -510, -668, -769, -805, -2518], + [0, -9219, -3754, -2162, -775, -7644, -3277, -5553], + [1, 3, 4001], + [0, 4002, 126, 49, 4], + [0, -668, -9232, -9239, -2416], + [1, 3, 4004], + [0, 4005, 4006, 4007, 6], + [0, -1088, -510, -1548, -2353], + [0, -1127, -1132, -1153, -2425, -1144, -1143, -1146], + [0, -9219, -2490, -1540], + [1, 3, 4009], + [0, 4010, 4011, 4012, 4], + [0, -668, -725, -739, -1877, -1980], + [0, -1127, -1131, -1132, -1134, -1138, -1144, -1146, -1151, -9240, -9241, -1153, -1159, -1542], + [0, -1127, -9219, -739, -6908, -5887, -1573], + [1, 3, 4014], + [0, 4015, 4016, 4017, 10], + [0, -668, -6019, -1877], + [0, -1127, -1131, -1132, -1134, -1144, -1146, -9240, -9242, -9241, -1153, -1159, -1542], + [0, -1127, -9219, -6019, -1105, -9243, -9244, -9245, -739, -6908, -5887, -1573], + [1, 3, 4019], + [0, 4020, 4021, 4022, 5], + [0, -668, -932], + [0, -190, -1127, -1132, -1162], + [0, -9219, -932, -7148, -5874, -9246], + [1, 3, 4024], + [0, 4025, 4026, 4027, 4], + [0, -9236, -1445, -1548, -9247], + [0, -1127, -1144, -1146, -1542, -2351], + [0, -9219, -1445, -8172, -7144], + [1, 3, 4029], + [0, 4030, 4031, 4032, 8], + [0, -769, -1446], + [0, -1127, -1134, -1146, -1152, -2778, -1542], + [0, -9219, -1127, -856, -4100, -1446, -7674], + [1, 3, 4034], + [0, 34, 4035, 4036, 11], + [ + 0, -86, -9248, -3307, -3470, -3471, -7041, -932, -943, -958, -966, -968, -974, -1003, -1127, -1131, -1149, + -1150, -1151, -1152, -1159, -1344, -1471, -1475, -1479, -1482, -1542, -1654, -2174 + ], + [0, -9219, -1471, -1127, -4004, -5119, -4043, -9249], + [1, 3, 4038], + [0, 4039, 4040, 209, 10], + [0, -9236, -1650], + [0, -664, -710, -1127, -1132, -9250, -1134, -1138, -1144, -9240, -9251, -9241, -9252, -1654, -2125], + [1, 3, 4042], + [0, 208, 4043, 4044, 10], + [0, -664, -1127, -9253, -1132, -1134, -1144, -1149, -1658, -2359, -2529], + [0, -6999, -1127, -9219, -9254], + [1, 3, 4046], + [0, 4047, 4048, 4049, 11], + [0, -2177, -9255, -2518], + [0, -664, -1132, -1144, -1149, -1156, -9256, -9257, -1542, -1654, -1972, -2351], + [0, -9219, -4127, -9258, -6721, -9259, -9260, -9261, -9262, -6324, -2489, -5886], + [1, 3, 4051], + [0, 0, 4052, 7, 10], + [0, -1127, -1131], + [1, 3, 4054], + [0, 0, 4055, 4056, 5], + [0, -1127, -1132, -1134, -1146, -2162, -2541], + [0, -9219, -775, -2162, -3754, -5553, -7644, -9263, -9264], + [1, 3, 4058], + [0, 4059, 4060, 4061, 4], + [0, -714, -1548, -1980, -9265, -9266, -5471], + [0, -1127, -1137, -1144, -1149, -1153, -9267, -1541, -1631, -8403], + [0, -9219, -1127, -5471, -4004, -1412, -1654, -1989, -9268], + [1, 3, 4063], + [0, 4064, 210, 4065, 11], + [0, -668, -1773, -2269], + [0, -9219, -5550, -3957, -7095, -8421, -7091, -6599, -1958, -687], + [1, 3, 4067], + [0, 27, 4068, 209, 9], + [0, -1127, -1144, -1654], + [1, 3, 4070], + [0, 4071, 4072, 4073, 11], + [0, -510, -9269, -9270, -2424, -9271], + [0, -932, -9272, -9273, -9274, -9275, -9276, -9277, -1127, -1132, -1157, -1654, -2125, -2194], + [0, -1127, -9219, -9278, -6527, -9279, -775, -9270, -7085], + [1, 3, 4075], + [0, 4076, 4077, 4078, 4], + [0, -668, -812, -1548, -1849], + [0, -1127, -1650, -2125, -1132, -1153, -9280, -1144], + [0, -9219, -9281, -3976, -3264, -775, -7175], + [1, 3, 4080], + [0, 4081, 4082, 4083, 5], + [0, -190, -427, -428, -668, -932, -940, -965, -967, -999, -1376, -1460, -1630, -1705, -1942, -2411, -2530], + [ + 0, -9282, -7080, -3330, -3048, -3049, -9283, -3621, -9143, -3037, -4372, -3628, -9284, -652, -769, -1077, -9285, + -9147, -1654, -2210, -2359, -2410 + ], + [0, -2410, -8170, -4144, -3939], + [1, 3, 4085], + [0, 0, 4086, 4087, 5], + [0, -9286, -4010, -367, -7043, -9287, -3136, -3037, -8477, -4203, -932, -1415, -1730, -1942, -2125, -2293, -2410], + [0, -1167, -3578, -3161, -3967, -1334, -3690, -3445], + [1, 3, 4089], + [0, 4090, 4091, 4092, 6], + [0, -9288, -9179, -9289, -2462], + [0, -932, -937, -966, -1001, -1650, -1654, -1788, -2125], + [0, -7641, -5827, -4219, -9218, -3673, -6342, -9290, -9291, -5921, -9292], + [1, 3, 4094], + [0, 4095, 72, 4096, 4], + [0, -1187, -9293, -1208, -1451, -1570, -1597, -8390, -2347], + [0, -7841, -1168, -475, -5175, -3501, -9294, -9295], + [1, 3, 4098], + [0, 4099, 4100, 4101, 4], + [0, -7850, -305, -994, -1199, -1243, -9296, -1267, -1650, -1875, -1959, -7881, -2125, -2177, -2330, -2460, -2462], + [0, -1178, -1654], + [0, -7841, -9297, -5550, -9298, -891, -1105], + [1, 3, 4103], + [0, 4104, 4105, 4106, 4], + [0, -518, -1236, -1889, -2464], + [0, -519, -1252, -1825, -2460, -2541], + [0, -7841, -518, -1889, -775, -5899, -9299, -3271, -9263, -9300], + [1, 3, 4108], + [0, 4109, 4110, 4111, 4], + [0, -3698, -479, -671, -1022, -9301, -1641, -1876, -2460], + [0, -664, -9302, -932, -1168, -1243, -1654, -1942], + [0, -7841, -5817, -5940, -8403], + [1, 3, 4113], + [0, 4114, 0, 4115, 4], + [0, -9303, -9304, -994, -1640, -1959, -1986, -9305, -2460, -2462, -2550], + [0, -7841, -5800, -8624, -6005], + [1, 3, 4117], + [0, 4118, 4119, 4120, 6], + [0, -2347, -2103, -1876, -2464], + [0, -2541, -1654, -2460, -1939, -23, -1252, -3352, -3362, -3373], + [0, -7841, -525, -3186, -4795, -8165, -6434, -9306, -9307, -4132, -9308, -9309, -3214, -3116], + [1, 3, 4122], + [0, 4123, 211, 4124, 5], + [0, -1236], + [0, -7841, -9310, -6472, -7154, -9311, -2443, -9312, -9313, -9314], + [1, 3, 4126], + [0, 4127, 4128, 4129, 4], + [0, -479, -622, -1022, -1376, -1876, -2347, -2460, -2487], + [0, -664, -994, -9315, -1220, -1231, -1452, -1654, -2125, -2210, -2211, -2261], + [0, -7841, -622], + [1, 3, 4131], + [0, 4132, 4133, 4134, 5], + [0, -633, -1266, -634, -2062, -2347], + [0, -1654, -664, -6398], + [0, -7841, -7419, -633], + [1, 3, 4136], + [0, 212, 4137, 4138, 4], + [0, -1654, -2460], + [0, -1168, -7841], + [1, 3, 4140], + [0, 4141, 72, 4142, 10], + [0, -9316, -1876, -9317, -2177, -2347], + [0, -1168, -6453, -2177, -7841, -9318, -9319, -9320, -9321], + [1, 3, 4144], + [0, 4145, 0, 4146, 8], + [0, -44, -9322, -753, -9323, -1876, -2347, -2460], + [0, -7841, -1168, -3324], + [1, 3, 4148], + [0, 4149, 4150, 36, 4], + [0, -2347, -1554], + [0, -1654, -2460, -2198], + [1, 3, 4152], + [0, 4153, 4154, 4155, 9], + [0, -9324, -1236, -2363], + [0, -519, -668, -824, -1040, -1100, -1168, -2460, -2541], + [0, -7841, -6656, -6999, -9325, -9254, -9326, -9327, -9328, -4123, -9329, -9330, -3324, -9331, -9332], + [1, 3, 4157], + [0, 4158, 114, 4159, 6], + [0, -1022, -1876, -2125, -2347, -2460], + [0, -7841, -6688, -6694, -6693], + [1, 3, 4161], + [0, 4162, 4163, 4164, 6], + [0, -683, -1876, -2347, -2464], + [0, -664, -9077, -756, -1004, -1022, -1168, -1187, -1243, -1248, -1252, -1654, -1788, -2460], + [0, -775, -6688, -1644, -9216, -683, -9333, -1229, -1184, -7841, -7419], + [1, 3, 4166], + [0, 4167, 213, 36, 10], + [0, -711, -1876, -2103, -2347, -2464], + [1, 3, 4169], + [0, 4170, 4171, 4172, 8], + [0, -1266, -2347, -2518], + [0, -756, -824, -1168, -1220, -1223, -1224, -1228, -1231, -1351, -9334, -1597, -1654, -2198], + [0, -1168, -7841, -9228, -3754, -2162, -775, -7644, -3277, -5553], + [1, 3, 4174], + [0, 4175, 4176, 36, 4], + [0, -2460, -2347, -6193], + [0, -1168, -1654, -2198, -1405, -7035, -2261, -1252, -1657], + [1, 3, 4178], + [0, 4179, 128, 4180, 4], + [0, -1554, -9335, -1876, -9336, -9337, -9338, -2347, -2460], + [0, -7841, -9048, -775, -6024, -1631, -9339], + [1, 3, 4182], + [0, 4183, 128, 4184, 9], + [0, -2347, -1266, -1376, -834], + [0, -7841, -3976, -9340, -9341, -3959, -3955, -9342], + [1, 3, 4186], + [0, 4187, 4188, 4189, 4], + [0, -2178, -729, -2353, -1022, -1597, -479, -2186, -2187, -9229], + [0, -1168, -1654, -2293, -1254, -710], + [0, -7419, -729, -1540, -9343, -3844], + [1, 3, 4191], + [0, 214, 4192, 4193, 4], + [0, -1168, -1415, -1942, -9078], + [0, -7841, -6351, -1168], + [1, 3, 4195], + [0, 4196, 4197, 4198, 4], + [0, -479, -9344, -1022, -1876, -2347], + [0, -1452, -1654, -2460], + [0, -7841, -775, -9344, -7148, -8170, -3277], + [1, 3, 4200], + [0, 4201, 4202, 4203, 4], + [0, -2460, -9231, -9345, -2347, -1022, -1876], + [0, -1788, -1654, -2210, -932, -2125, -2198, -756, -9346, -9347, -968, -943, -974, -942], + [0, -9231, -7841], + [1, 3, 4205], + [0, 4206, 4207, 4208, 4], + [0, -784, -6829, -1876, -1792, -2464], + [0, -2322, -2460, -2320, -1252], + [0, -784, -1644, -6059, -7192, -7193, -775, -7841, -1889], + [1, 3, 4210], + [0, 4211, 4212, 4213, 4], + [0, -2746, -1876, -2464], + [0, -2322, -2460, -2320], + [0, -7841, -1644, -775], + [1, 3, 4215], + [0, 4216, 4217, 4218, 5], + [0, -1876, -2347, -8899], + [0, -1452, -1980, -2198, -2460], + [0, -7841, -6582, -4055, -1168], + [1, 3, 4220], + [0, 4221, 4222, 4223, 9], + [0, -932, -1022, -1876], + [0, -1168, -1654, -2460, -2198, -1405, -528, -9348, -9349], + [0, -7841, -932, -1168, -8980, -9350, -7440, -6916, -707, -4144, -3756, -3214, -4107, -7148, -3862], + [1, 3, 4225], + [0, 4226, 4227, 4228, 8], + [0, -1460, -2460, -1015, -9351, -2347, -1876, -725, -9352], + [0, -1168, -1654, -2198, -1405, -1599], + [0, -7841, -6656, -9353, -8276, -1168, -3862], + [1, 3, 4230], + [0, 4231, 4232, 4233, 6], + [0, -2218, -1686, -1876, -9354, -9355], + [0, -2541, -519, -1168, -2460, -1825], + [0, -7841, -7724, -1353, -6656, -6999, -5572, -1645, -1107, -9095, -2460], + [1, 3, 4235], + [0, 215, 72, 4236, 5], + [0, -7841, -8395, -2239, -8423, -9356, -9357, -6917, -1168], + [1, 3, 4238], + [0, 214, 4239, 4240, 4], + [0, -1168, -1654, -2460, -2198, -1939, -933], + [0, -7841, -1168, -5841, -9358, -1847], + [1, 3, 4242], + [0, 4243, 27, 4244, 4], + [0, -9359, -2102, -9360, -2347], + [0, -6146, -3276, -4144, -1168, -7841, -1599, -3437, -3862, -9361, -3240, -2102], + [1, 3, 4246], + [0, 4247, 4248, 4249, 8], + [0, -668, -1266, -9362, -9363, -1792, -6370, -1877, -2347], + [0, -9364, -1849], + [0, -7841, -1082, -9362, -6656, -6999, -6931, -8576, -3844, -3323, -7764, -8901, -8902], + [1, 3, 4251], + [0, 4252, 4253, 4254, 4], + [0, -9365, -2125, -2462, -1266, -9366, -2062], + [0, -1654, -2460, -932, -1405, -9367, -1746, -1119, -1574, -9368, -9369], + [0, -5889, -5737, -5890, -9370, -8901, -8902, -8403, -9204, -3258, -1168, -7841, -1103, -841, -1105], + [1, 3, 4256], + [0, 4257, 4258, 4259, 5], + [0, -9371, -1022, -1548, -1876, -2109, -9372, -2460], + [0, -932, -1654, -1660, -2125, -2198], + [0, -1168, -5889, -9373, -7841, -9321], + [1, 3, 4261], + [0, 4262, 4263, 4264, 9], + [0, -479, -651, -1022, -1876, -9374, -2347], + [0, -1168, -1183, -1199, -1224, -1231, -1243, -7832, -1268, -1453, -1654, -9375, -2198], + [0, -6454, -7841, -6826], + [1, 3, 4266], + [0, 4267, 4268, 4269, 5], + [0, -1276, -1876, -2103, -2347], + [0, -2460, -1168, -1187, -9376, -9377, -9378, -1654, -9379, -2198], + [0, -7841, -1276], + [1, 3, 4271], + [0, 4272, 4273, 4274, 4], + [0, -6193, -1548, -1597, -2347], + [0, -664, -1168], + [0, -5147, -7841, -9380], + [1, 3, 4276], + [0, 4277, 4278, 4279, 10], + [0, -702, -2218, -615, -2461, -1792, -2062], + [0, -1654, -2460, -1405, -1266, -9348, -725, -9381, -2463], + [0, -7841, -3264, -8276], + [1, 3, 4281], + [0, 4282, 4283, 4284, 8], + [0, -2347, -1876, -1323], + [0, -1168, -1654, -2460, -1202], + [0, -3276, -1168, -7841, -9382, -3264, -9383, -6059, -6684, -1644], + [1, 3, 4286], + [0, 4287, 4288, 4289, 5], + [0, -4091, -9384, -7837, -9385, -9386, -9354, -9387, -9388, -9389], + [ + 0, -1168, -1415, -932, -2125, -9390, -4010, -1942, -367, -7043, -190, -720, -9391, -2410, -9392, -4007, -9393, + -2411, -959, -940, -967, -796, -740 + ], + [0, -7841, -1168, -3167, -3827], + [1, 3, 4291], + [0, 4292, 4293, 4294, 9], + [0, -2347, -9394, -9395], + [0, -1654, -1452, -1650, -2125, -2198, -2462, -1119, -908, -9396], + [0, -7841, -8978, -9397, -9398], + [1, 3, 4296], + [0, 4297, 4298, 4299, 11], + [0, -2347, -9394], + [0, -1452, -1654, -2198], + [0, -7841, -7724, -1645, -9353, -9399, -1199], + [1, 3, 4301], + [0, 4302, 4303, 36, 4], + [0, -510, -1548, -9400, -2347], + [0, -1112, -1168, -1183, -1231, -1224, -2150, -1453], + [1, 3, 4305], + [0, 4306, 4307, 4308, 4], + [0, -668, -1236, -1356, -1877, -1948], + [0, -519, -1357, -9401, -2460, -2541], + [0, -7841, -1356, -6527, -5094, -8634, -8635, -1644, -6684, -6454, -7715, -8640, -9235, -8642, -3839], + [1, 3, 4310], + [0, 4311, 4312, 36, 8], + [0, -479, -994, -1107, -1876, -2231, -2270, -2460, -2464], + [0, -1168, -1252, -1654, -2198, -2261], + [1, 3, 4314], + [0, 4315, 4316, 4317, 4], + [0, -506, -2347, -1022, -479, -9402, -1876, -9374, -930], + [0, -2541, -1344, -1654, -2460, -2198, -9403, -994, -86, -2174, -9404], + [0, -7841, -9405, -9406, -9407, -9408, -9409], + [1, 3, 4319], + [0, 4320, 4321, 4322, 4], + [0, -9410, -1876, -2347], + [0, -528, -756, -994, -1168, -1197, -1231, -1654, -1788, -2460], + [0, -7841, -9339, -775, -3264, -7920], + [1, 3, 4324], + [0, 4325, 4326, 4327, 9], + [0, -805, -1266, -9411, -1827, -2347, -2518], + [0, -664, -1654, -2251, -2541], + [0, -7841, -622, -1764, -1380], + [1, 3, 4329], + [0, 4330, 4331, 4332, 9], + [0, -1405, -9412, -1548, -1876, -2347, -2464], + [0, -1168, -1231, -1252, -9413, -1452, -1654, -2125, -2460], + [0, -7841, -4005, -1405, -9414], + [1, 3, 4334], + [0, 4335, 4336, 4337, 10], + [0, -1266, -1409, -2347], + [0, -1168, -2319, -1224], + [0, -1409, -7841, -5827, -7644], + [1, 3, 4339], + [0, 4340, 4341, 4342, 10], + [0, -506, -1412, -9415, -1876, -2347], + [0, -1168, -2460], + [0, -3440, -3161, -7841, -1412, -1989, -4043, -4679, -2319, -4873, -4004, -3634, -5119], + [1, 3, 4344], + [0, 4345, 4346, 4347, 4], + [0, -1445, -1876, -2347, -2350], + [0, -2261, -7423, -2460], + [0, -7841, -1445, -3214, -3217, -3756, -707, -5553, -5874, -7148, -3272, -7440, -7144], + [1, 3, 4349], + [0, 4350, 4351, 36, 8], + [0, -1548, -1645, -1876, -9345, -2347], + [0, -1168, -1452, -1654, -2198, -2460], + [1, 3, 4353], + [0, 4354, 4355, 4356, 5], + [0, -823, -831, -1440, -1876, -2347], + [0, -932, -937, -1168, -1654, -2198, -2460], + [0, -7841, -1168, -4055], + [1, 3, 4358], + [0, 4359, 4360, 4361, 5], + [0, -1521, -1792, -1876, -2103, -2347, -2464], + [0, -1452, -1654, -2198, -2460], + [0, -7841, -1168, -1521], + [1, 3, 4363], + [0, 4364, 4365, 4366, 8], + [0, -668, -812, -2460, -2353, -1022, -1550, -2062], + [0, -1654, -2210], + [0, -7841, -1540], + [1, 3, 4368], + [0, 4369, 4370, 4371, 5], + [0, -9416, -2114, -1022, -1639, -1048, -9417, -9418], + [0, -1654, -2210, -932, -1972, -9419, -965, -966, -958, -968, -943, -974], + [0, -7419, -1168, -4792, -6994, -9420], + [1, 3, 4373], + [0, 4374, 4375, 7, 10], + [0, -683, -1266, -1792, -2062, -9421, -2464], + [0, -664, -1654, -2460, -932, -1405, -1254, -9348, -1252, -9422, -9381, -9369], + [1, 3, 4377], + [0, 4378, 4379, 4380, 4], + [0, -7173, -2347, -1266], + [0, -664, -1168, -1654], + [0, -7841, -1644, -7175, -7192, -6454, -3264, -7173], + [1, 3, 4382], + [0, 4383, 211, 4384, 5], + [0, -805, -999, -1236, -1654, -2297], + [0, -7841, -1654, -4004, -3634, -5119, -3161, -4043, -4873, -3440, -1989, -4679, -2319], + [1, 3, 4386], + [0, 4387, 4388, 4389, 10], + [0, -9423, -1107, -1876], + [0, -664, -1168, -1654, -2460, -932, -1658, -9072], + [0, -1168, -7841, -9254, -9329], + [1, 3, 4391], + [0, 4392, 72, 4393, 5], + [0, -9424, -1631, -9425, -1876, -2347, -2464], + [0, -7841, -475, -5175, -4668, -9425], + [1, 3, 4395], + [0, 4396, 4397, 4398, 11], + [0, -714, -1168, -1753], + [0, -710, -1224, -1231, -8419, -1452, -2198], + [0, -1168, -1753, -9426, -3844, -9427, -8442, -2490, -7419, -7841], + [1, 3, 4400], + [0, 4401, 4402, 4403, 10], + [0, -1548, -2347, -1022, -479, -1750, -1876, -1737], + [0, -1168, -1654, -2460, -2198, -1237], + [0, -7841, -9258, -1168, -4127, -6863, -9428, -9429, -9262, -9430, -6721], + [1, 3, 4405], + [0, 4406, 4407, 4408, 4], + [0, -7837, -668, -9431], + [0, -519, -1825, -2410, -2460, -2541], + [0, -1168, -3862, -8112, -8113], + [1, 3, 4410], + [0, 4411, 4412, 36, 9], + [0, -668, -2347, -1022, -1876], + [0, -2541, -1168, -1654, -2198, -2346, -1405, -756, -994, -1657], + [1, 3, 4414], + [0, 4415, 4416, 4417, 9], + [0, -1022, -1876, -1907, -2464], + [0, -1788, -1654, -2210, -2460, -932, -1889, -1972, -1252], + [0, -7841, -1889, -9300, -775], + [1, 3, 4419], + [0, 4420, 4421, 4422, 4], + [0, -9263], + [0, -1654, -2987, -8065, -2460], + [0, -9432, -711, -8978, -812, -9433, -5558, -9399, -9321, -7841, -3264, -9434, -9435, -9353, -3214, -3277], + [1, 3, 4424], + [0, 4425, 4426, 4427, 5], + [0, -994, -1376, -1570], + [0, -507, -932, -9436, -1376, -1654, -1972, -2463], + [0, -7841, -1965], + [1, 3, 4429], + [0, 4430, 4431, 4432, 10], + [0, -1266, -1792, -2054, -2347, -2464], + [0, -1252], + [0, -7841, -2006, -4146, -6408, -8530, -3110, -3261, -6107, -9437, -9438, -7644], + [1, 3, 4434], + [0, 4435, 4436, 4437, 11], + [0, -994, -1750, -2105, -2347, -2460], + [0, -1168, -1262, -1183], + [0, -7841, -8908, -9439], + [1, 3, 4439], + [0, 0, 4440, 36, 10], + [0, -1168, -1252, -1597, -1654, -1942, -2198, -2460], + [1, 3, 4442], + [0, 4443, 4444, 4445, 9], + [0, -3037, -7837, -2551, -9440, -7622], + [0, -1654, -2460, -2198, -2379, -8255, -2410, -725], + [0, -7841, -8276], + [1, 3, 4447], + [0, 4448, 4449, 4450, 8], + [0, -1236, -9441, -9442, -9443, -9444, -2460, -9445], + [0, -519, -1825, -2541], + [0, -7841, -9446, -9447, -9448, -6131, -7175, -9318, -9319, -3324, -9449, -5142, -6342, -9450], + [1, 3, 4452], + [0, 215, 4453, 4454, 4], + [0, -994, -1199, -1245, -1654, -2460], + [0, -7841, -9446, -9448, -9318, -8276, -6342], + [1, 3, 4456], + [0, 4457, 4458, 4459, 5], + [0, -668, -742, -769, -805, -9451, -930, -1022, -1107, -4089, -9452, -1849, -1876, -2103, -2125, -2460], + [0, -1168, -1252, -9445], + [0, -7841, -3754, -2162, -775, -7644, -3277, -5553, -9453, -2231, -9454, -6915, -9455], + [1, 3, 4461], + [0, 4462, 4463, 4464, 6], + [0, -1863, -2269, -2103, -1876, -1552, -2464], + [0, -1168, -2162, -1654, -2460, -932, -2125, -9008, -1889, -7832, -1743, -518, -1238, -3572, -1252, -958, -934], + [0, -7841, -2162, -1168], + [1, 3, 4466], + [0, 4467, 0, 4468, 5], + [0, -510, -1266, -1792, -6370, -2246, -2347], + [0, -7841, -9456, -6656, -6999, -6931, -8576, -3844, -3323, -7764, -8901, -8902], + [1, 3, 4470], + [0, 4471, 4472, 4473, 5], + [0, -668, -1022, -1570, -1876, -2347, -2387], + [ + 0, -9457, -9392, -3136, -9458, -3037, -7836, -427, -428, -756, -932, -940, -959, -1168, -1415, -1942, -2375, + -2379, -2410, -2460 + ], + [0, -7841, -1168, -5550, -3957], + [1, 3, 4475], + [0, 4476, 216, 4477, 10], + [0, -9459, -668, -1022, -1236, -1273, -1948], + [0, -7841, -1044, -6656, -8799, -1573, -9460, -4676, -812, -6826, -6828], + [1, 3, 4479], + [0, 4480, 4481, 4482, 4], + [0, -9461, -9462, -461, -742, -775, -9463, -8888, -1119, -2231, -9195, -2347], + [ + 0, -620, -932, -937, -1001, -1168, -1187, -1212, -1226, -1228, -9464, -1405, -9381, -9465, -1654, -1792, -2125, + -2460 + ], + [0, -7841, -1168, -9466, -9455], + [1, 3, 4484], + [0, 4485, 216, 4486, 4], + [0, -23, -1236, -9467], + [0, -7841, -6817, -6694, -6693, -6688, -812, -7336, -4000, -1573, -5545, -3756, -3214, -3217, -3272, -987], + [1, 3, 4488], + [0, 4489, 213, 4490, 4], + [0, -9468, -1550, -1876, -2103, -2286, -2347, -2464], + [0, -1168, -2286, -775, -3277, -7841, -9321], + [1, 3, 4492], + [0, 4493, 4494, 4495, 4], + [0, -1876, -2302], + [0, -1107, -1168, -9469, -1654, -9470, -2460, -2541], + [ + 0, -7841, -3167, -3843, -3839, -7715, -9278, -9279, -9471, -3262, -775, -2162, -1521, -2286, -3271, -9339, + -3264, -9472, -9473, -9474, -1689 + ], + [1, 3, 4497], + [0, 4498, 4499, 4500, 5], + [0, -1552, -1876, -2303], + [0, -21, -23, -40, -43, -519, -756, -767, -825, -1788, -1942, -2460, -2541], + [0, -7841, -1644, -3839, -2303], + [1, 3, 4502], + [0, 4503, 4504, 4505, 4], + [0, -674, -1022, -1876, -2460], + [0, -1045, -1168, -1217, -1654, -1978, -2187, -2210], + [0, -7841, -3839, -3167, -9278], + [1, 3, 4507], + [0, 4508, 4509, 4510, 9], + [0, -1236, -1548], + [0, -519, -1196, -2460, -2541], + [0, -7841, -1548, -2424, -3110, -7644, -3264, -7650, -9475, -9438], + [1, 3, 4512], + [0, 4513, 4514, 4515, 4], + [0, -479, -1022, -2346, -2460], + [0, -9392, -3037, -9476, -7837, -8890, -9457, -2125, -1168, -1231, -2410], + [0, -7841, -2410, -3214, -9477], + [1, 3, 4517], + [0, 4518, 4519, 4520, 9], + [0, -9457, -479, -1022, -1597, -1876, -2346], + [0, -9478, -3037, -9476, -1168, -1187, -1261, -2388, -2410], + [0, -1168, -2410, -3862, -3018, -7841, -7419, -2388, -8170, -7148], + [1, 3, 4522], + [0, 4523, 4524, 4525, 4], + [0, -2460, -2347, -2462, -2231, -479, -1876], + [0, -1168, -2125, -9479, -2410, -3037, -1187, -1208, -7837, -1237, -1632, -7836, -7838, -1252, -9480], + [0, -2410, -7841, -9481, -3018, -5058, -7644, -3116, -3185], + [1, 3, 4527], + [0, 4528, 4529, 36, 9], + [0, -9416, -1403, -2347, -2416, -9482, -9417, -2155, -1016, -9483, -2464], + [0, -2322, -2460, -932, -1942, -9484, -2341, -1938, -9485, -945, -978, -940, -967, -9486], + [1, 3, 4531], + [0, 4532, 122, 4533, 5], + [0, -1266, -1792, -9487], + [0, -7441, -775, -7841], + [1, 3, 4535], + [0, 4536, 4537, 4538, 5], + [0, -1107, -1187, -1876, -2347, -2460], + [0, -994, -2462, -1168, -1224, -1231, -1262, -1210, -1184, -1245, -1226, -1452], + [0, -7841, -9281, -1264], + [1, 3, 4540], + [0, 4541, 4542, 4543, 4], + [0, -1107, -1015, -9488, -1212, -2347, -2462, -1187, -994, -1876], + [0, -1788, -1168, -1654, -2460, -756, -9489, -1231, -1197, -1243, -528, -9490], + [0, -7841, -3264, -9408, -775, -7175, -9048], + [1, 3, 4545], + [0, 4546, 4547, 7, 6], + [ + 0, -9491, -9492, -9493, -668, -808, -1022, -9416, -9417, -9494, -9495, -9496, -1570, -1646, -4091, -1792, -2103, + -2347, -2460 + ], + [0, -641, -756, -994, -1405, -9381, -1452, -9497, -1654, -2125, -2198], + [1, 3, 4549], + [0, 4550, 4551, 4552, 8], + [0, -1986, -2346, -2347, -2460, -2462, -2555, -9498], + [0, -1654, -2250, -2330], + [0, -1168, -7841, -9498, -9499, -5408, -8027, -2460, -9500], + [1, 3, 4554], + [0, 4555, 4556, 4557, 4], + [0, -479, -9501, -679, -1022, -1108, -1792, -1850, -1876, -2062, -2218, -2460, -9445], + [0, -756, -1405, -1654, -1657, -1972, -2125, -2198, -2210, -2261, -2269, -2541], + [0, -1168, -2490, -7841], + [1, 3, 4559], + [0, 4560, 0, 4561, 4], + [0, -1626, -2460, -2346, -2501, -1266], + [0, -7841, -2501], + [1, 3, 4563], + [0, 4564, 4565, 4566, 8], + [0, -729, -9229, -1266, -1402, -1750, -1805, -9502, -2186, -2187, -2347, -2353, -2490], + [0, -1654, -2293], + [0, -7841, -9343, -729, -1540], + [1, 3, 4568], + [0, 4569, 4570, 4571, 5], + [0, -1100, -1236, -2460, -9498], + [0, -519, -7342, -9431, -1168, -1825, -9503, -9445, -2541], + [0, -7841, -5408, -5409, -501, -6454, -724, -6656], + [1, 3, 4573], + [0, 4574, 4575, 4576, 5], + [0, -9271, -510, -2460, -2347, -1645, -2424, -9270, -9269], + [0, -1168, -1654, -932, -2125, -9273, -9504, -1195, -1632, -2461, -1215, -9505, -9274, -9275, -9272], + [0, -7841, -9270, -9278, -9279], + [1, 3, 4578], + [0, 4579, 4580, 4581, 11], + [0, -883], + [0, -519, -1825, -2384, -2541], + [0, -3994, -3673, -9506, -6826, -9507, -8799, -2265, -640], + [1, 3, 4583], + [0, 4584, 4585, 4586, 4], + [ + 0, -9508, -9509, -9510, -9511, -2093, -9512, -9513, -2095, -4655, -4994, -9514, -9515, -9516, -9517, -9518, + -9519, -9520, -9521, -9522, -9523, -9524, -9525, -9526, -9527, -9528, -9529, -9530, -5707, -9531, -9532, -9533, + -9534, -9535, -9536, -9537, -6368, -2297, -9538, -9539 + ], + [0, -350, -4062, -351, -3266, -827, -9540, -2127, -2250, -2322, -2331], + [0, -1599, -856, -3671, -4328, -5887, -7440, -9541, -8170, -7148, -8169, -1274, -2093, -2427], + [1, 3, 4588], + [0, 0, 4589, 4590, 10], + [0, -9542, -9543, -1127, -7887, -1136, -1137, -1144, -9544, -1148, -1149, -1153, -9545, -9546], + [0, -2363, -9547], + [1, 3, 4592], + [0, 4593, 4594, 4595, 8], + [0, -1646, -9548, -2231, -2525, -2416], + [ + 0, -3983, -521, -534, -567, -589, -664, -9549, -726, -838, -879, -6897, -6867, -932, -940, -952, -953, -1077, + -1127, -5974, -1132, -1134, -1136, -1137, -1138, -9550, -1148, -1149, -1162, -7848, -1344, -6785, -1534, -1654, + -1661, -1689, -1788, -1942, -2177, -2210, -2410, -2424, -2501, -2505 + ], + [0, -1276, -1689, -3110, -3264], + [1, 3, 4597], + [0, 4598, 4599, 155, 5], + [ + 0, -1435, -9551, -619, -6508, -1309, -9552, -9553, -9554, -9555, -5400, -9556, -9557, -9558, -9559, -9560, + -9561, -9562, -9563 + ], + [0, -1510, -707, -1367, -9564, -9565, -1276], + [1, 3, 4601], + [0, 4602, 4603, 4604, 6], + [0, -6594, -3037, -4204, -3223, -6587, -2531], + [0, -3665, -7197, -2410, -2469, -4375], + [0, -1449, -5092, -4865, -3586, -9566, -3578, -3098, -3264, -5388, -5387], + [1, 3, 4606], + [0, 0, 14, 4607, 4], + [ + 0, -8047, -7440, -6659, -6543, -5573, -9567, -687, -3958, -4378, -1958, -502, -4377, -6748, -7303, -9568, -1646, + -1813 + ], + [1, 3, 4609], + [0, 0, 4610, 4611, 4], + [0, -2832, -5834, -8084, -9569, -8096, -516, -753, -5835, -932, -9570, -1365, -1777, -1788, -2156, -2322], + [0, -6981, -8619, -9571, -9572, -3582, -5269, -753, -6948], + [1, 3, 4613], + [0, 0, 4614, 7, 5], + [0, -1452, -1453, -1548, -2322], + [1, 3, 4616], + [0, 4617, 4618, 4619, 10], + [0, -9573], + [0, -2832, -5834, -8084, -9574, -9575, -8096, -515, -516, -932, -993, -1365, -1659, -1777, -1788, -2156, -2322], + [0, -8047, -9576, -9577, -9578, -9579, -8047, -7153, -9580, -3214, -3217], + [1, 3, 4621], + [0, 4622, 4623, 4624, 8], + [0, -5334, -4231, -9581, -9582, -2768, -2771, -1619, -1839, -9583, -2429, -5358, -9584, -9585], + [0, -3037, -9586, -652, -1290, -1294, -1618, -1942, -9587, -2094, -2100, -2399, -2410, -7669, -2541], + [0, -9588, -9589, -3264, -9590, -3590, -2444, -1838, -9591], + [1, 3, 4626], + [0, 4627, 4628, 4629, 4], + [0, -5334, -9581, -9583], + [ + 0, -3037, -9586, -9592, -652, -823, -2586, -1290, -1294, -1318, -9593, -1942, -2094, -2100, -2399, -2410, -7669, + -2429, -2541 + ], + [0, -6688, -9588, -9589, -3264, -9594, -7723, -3590, -2444, -9590, -2544], + [1, 3, 4631], + [0, 4632, 4633, 4634, 9], + [0, -5334, -4231, -9595, -2742, -5981, -9596, -9597, -4263, -1292, -2769, -2788, -1968, -2235, -2429, -9585], + [0, -3037, -652, -1294, -1942, -2094, -2100, -2399, -2410, -7669, -2541], + [0, -775, -9588, -9589, -3264, -5572, -3581, -5101, -9598, -3585, -6750, -9590, -3590, -2444], + [1, 3, 4636], + [0, 4637, 4638, 4639, 5], + [0, -426, -8316, -5334, -2742, -9596, -9599, -9600, -2769, -9601, -9602, -9603, -1968, -2235, -2276, -9583, -9585], + [ + 0, -3037, -6426, -652, -9604, -5342, -989, -1294, -1618, -5204, -1619, -5205, -1942, -2094, -2100, -2399, -2410, + -2429, -2541 + ], + [0, -5888, -3217, -5210, -9588, -9589, -3264, -3214, -4146, -4147, -2083, -6408, -9590, -3590, -2444], + [1, 3, 4641], + [0, 4642, 217, 4643, 6], + [0, -5334, -4231, -9605, -2742, -2769, -2771, -1619, -1968, -2235, -2268, -9585], + [0, -9588, -9589, -3264, -6233, -6231, -9606, -9590, -3590, -2444], + [1, 3, 4645], + [0, 4646, 4647, 4648, 4], + [0, -426, -5334, -4231, -2742, -9596, -9600, -2769, -9601, -9602, -9603, -1968, -2235, -2276, -9583, -6648], + [0, -3037, -3040, -3052, -652, -928, -5343, -1294, -1942, -2006, -2019, -2094, -2100, -9607, -2399, -2410, -2541], + [0, -9588, -9589, -3264, -1940, -2006, -9608, -2299, -9590, -3590, -2444, -2476], + [1, 3, 4650], + [0, 87, 0, 4651, 4], + [0, -5398, -9589, -9588, -3264, -6233, -2265, -6231, -5554, -9590, -2444, -3590], + [1, 3, 4653], + [0, 4654, 217, 4655, 4], + [0, -5334, -4231, -2766, -9609], + [0, -9590, -9589, -9588, -2444, -3590, -3264, -2265, -5398, -5554, -4308], + [1, 3, 4657], + [0, 4658, 4659, 4660, 4], + [0, -5334, -2742, -2767, -1968, -2235], + [0, -3037, -6426, -652, -9604, -9610, -5342, -1942, -2094, -2100, -9611, -2384, -2399, -2410, -2541], + [0, -5092, -6311, -9588, -9589, -3264, -9612, -2083, -9590, -3590, -2444, -9613, -9614], + [1, 3, 4662], + [0, 4663, 4664, 7, 8], + [0, -2487, -1276], + [0, -1788, -1654, -932, -2125, -2293, -963], + [1, 3, 4666], + [0, 0, 4667, 4668, 5], + [0, -6774, -1127, -1132, -1162, -6114, -1405, -1451, -1548, -6186, -1991, -2081, -9615, -2111, -9616], + [0, -2265, -3223, -8034, -3264, -6422, -6420, -4112], + [1, 3, 4670], + [0, 4671, 4672, 7, 4], + [0, -1696], + [0, -2195, -2319], + [1, 3, 4674], + [0, 0, 0, 4675, 4], + [ + 0, -1004, -7107, -5146, -3445, -9617, -9618, -9619, -9620, -9621, -9622, -9623, -9624, -9625, -9626, -9627, + -9628, -9629, -9630 + ], + [1, 3, 4677], + [0, 0, 4678, 7, 9], + [0, -2303, -2125, -1942, -656, -2699, -23, -9631, -3408], + [1, 3, 4680], + [0, 0, 4681, 7, 11], + [0, -43, -40, -6056, -6035, -527, -21, -23, -528, -533, -856, -932, -956, -958, -959, -1415, -1417], + [1, 3, 4683], + [0, 4684, 4685, 4686, 5], + [ + 0, -9632, -615, -9633, -9634, -9635, -9636, -9637, -9638, -9639, -9640, -1442, -9641, -1639, -9642, -1666, + -1667, -1783, -1863, -6467, -2269, -2350, -9643, -9644 + ], + [ + 0, -9645, -5767, -3035, -4035, -3660, -4036, -3621, -3037, -9144, -4372, -9646, -652, -664, -674, -3542, -932, + -9647, -9648, -1344, -1534, -1654, -2210, -2379, -2410 + ], + [0, -3258, -3260, -7643, -3161, -1302], + [1, 3, 4688], + [0, 4689, 4690, 7, 8], + [0, -9649], + [ + 0, -615, -633, -634, -725, -932, -1127, -1130, -1131, -1146, -1148, -1149, -1152, -9650, -1159, -1276, -1754, + -2148, -9651, -2199, -2210, -7035, -9652, -2416 + ], + [1, 3, 4692], + [0, 0, 4693, 4694, 4], + [ + 0, -775, -824, -1107, -8318, -1449, -1654, -932, -1548, -2127, -2198, -2334, -683, -693, -719, -1276, -2410, + -1339, -9653, -3621, -7694, -9654, -5758, -9655, -9656, -966, -4062, -9657, -958, -968, -943, -350, -428, -351, + -427 + ], + [0, -4131, -4132], + [1, 3, 4696], + [0, 218, 0, 7, 4], + [1, 3, 4698], + [0, 39, 0, 4699, 5], + [0, -1306, -8938], + [1, 3, 4701], + [0, 0, 219, 4702, 4], + [0, -8113], + [1, 3, 4704], + [0, 4705, 4706, 4707, 5], + [0, -1758, -1650], + [0, -2416, -1449, -9658, -2125], + [0, -1689, -3110], + [1, 3, 4709], + [0, 4710, 4711, 41, 10], + [0, -2029], + [ + 0, -23, -26, -40, -41, -43, -664, -756, -761, -932, -1654, -1788, -1939, -1967, -2006, -2125, -2127, -2128, + -2131, -2137, -2140 + ], + [1, 3, 4713], + [0, 4714, 4715, 7, 8], + [0, -668, -2177, -1077, -719, -9659, -1982, -2234], + [ + 0, -1415, -932, -2125, -1753, -2375, -2379, -2402, -2410, -3136, -3037, -3198, -3199, -3048, -959, -958, -9660, + -428, -9661, -427 + ], + [1, 3, 4717], + [0, 0, 4718, 4719, 5], + [ + 0, -9662, -4835, -3036, -4647, -3037, -8200, -3664, -502, -9663, -9664, -928, -932, -1107, -1449, -1683, -1763, + -9665, -8436, -1942, -2910, -2410, -2426, -9666, -2469, -9667, -2531, -2564 + ], + [0, -1313, -3578, -3994, -1334, -9668, -3161, -3122, -9669, -9670, -9671, -9672, -9060, -7314, -5819, -3967], + [1, 3, 4721], + [0, 4722, 29, 4723, 6], + [0, -1582], + [0, -5889, -1105, -7660, -7661], + [1, 3, 4725], + [0, 4726, 86, 4727, 6], + [0, -725, -1650, -2125, -2177, -2433, -2518, -9673], + [0, -9674, -9675, -9676, -9677, -1764], + [1, 3, 4729], + [0, 4730, 4731, 4732, 6], + [0, -6585, -1333], + [ + 0, -86, -3307, -3615, -190, -4066, -350, -351, -3266, -3267, -9678, -4862, -9679, -3037, -5286, -2970, -3664, + -932, -967, -4814, -977, -1110, -1323, -1344, -7317, -1449, -1534, -1772, -1874, -1942, -2910, -2127, -2214, + -2379, -2410, -2411, -2469 + ], + [0, -1317, -3264, -5092, -3215, -1333, -9680], + [1, 3, 4734], + [0, 0, 4735, 4736, 9], + [0, -3037, -652, -2586, -1288, -1292, -1942, -2094, -2100, -2399, -2410, -2426, -2541], + [0, -9681, -9682, -3264, -6557, -7153, -6818, -5387, -5388], + [1, 3, 4738], + [0, 4739, 4740, 4741, 4], + [0, -9683], + [0, -7196, -932, -1110], + [0, -5835, -3264], + [1, 3, 4743], + [0, 0, 4744, 4745, 5], + [ + 0, -86, -3307, -3268, -9684, -3136, -3037, -589, -3223, -932, -940, -958, -9685, -1297, -1344, -1942, -2251, + -2375, -2386, -2392, -2410, -2411 + ], + [0, -3264, -9686, -9687, -9688, -3223, -9689, -9690], + [1, 3, 4747], + [0, 0, 4748, 4749, 11], + [0, -9691, -652, -756, -2127, -2415], + [0, -3264, -5559, -6422, -9692, -6420, -3223], + [1, 3, 4751], + [0, 4752, 4753, 4754, 5], + [0, -1839, -1324], + [ + 0, -824, -1415, -1344, -1623, -774, -932, -825, -2501, -920, -1936, -1942, -767, -21, -533, -1276, -23, -1534, + -1771, -9693, -86, -2251, -9694, -40, -1331, -958, -940, -3307, -7166 + ], + [0, -2501, -3264, -5932], + [1, 3, 4756], + [0, 4757, 4758, 4759, 5], + [0, -6512, -683, -719, -1297, -6560, -9695, -2416], + [0, -1127, -1130, -1148, -1152, -1860, -1989], + [ + 0, -687, -6454, -9696, -775, -3264, -9383, -3214, -9234, -6059, -6684, -1644, -7175, -7176, -7858, -9697, -1838, + -3215, -9698, -9216 + ], + [1, 3, 4761], + [0, 4762, 4763, 4764, 4], + [0, -6512, -683, -719, -3223, -6560, -9695, -2334], + [ + 0, -86, -5121, -350, -4062, -351, -3266, -9699, -9700, -932, -943, -1344, -1392, -1415, -1419, -1534, -2127, + -9701, -2466 + ], + [ + 0, -687, -6454, -9696, -775, -3264, -9383, -3214, -9234, -6059, -6684, -1644, -7175, -7176, -7858, -9697, -1838, + -3215, -2334, -9698, -9216 + ], + [1, 3, 4766], + [0, 4767, 4768, 4769, 9], + [0, -1860], + [0, -2322, -2250, -2320, -1860], + [0, -3264, -6528, -1858, -1859, -3967], + [1, 3, 4771], + [0, 4772, 4773, 4774, 4], + [0, -6585, -1317, -2039, -2276], + [ + 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -3267, -9678, -3268, -3037, -3040, -3052, -5286, -2970, + -3664, -589, -932, -967, -4814, -977, -1110, -1344, -1534, -1874, -1940, -2910, -2006, -2019, -2127, -2214, + -2379, -2410, -2411, -2469 + ], + [0, -1326, -3264, -2006, -3215, -5092], + [1, 3, 4776], + [0, 0, 4777, 4778, 5], + [0, -519, -674, -2541], + [0, -3264, -5177, -9702, -9566, -4108, -5388, -5387, -9703, -9704], + [1, 3, 4780], + [0, 0, 4781, 4782, 10], + [ + 0, -1344, -1392, -1471, -2387, -932, -2125, -2127, -1942, -756, -1870, -2410, -1771, -1413, -1952, -1481, -9705, + -1476, -9706, -8382, -7818, -1491, -9707, -9708, -1475, -9709, -3469, -9710 + ], + [0, -9711, -9712, -659, -3264, -5092, -6527, -9472, -3839], + [1, 3, 4784], + [0, 4785, 0, 4786, 5], + [0, -9713, -823, -861, -1333, -9714], + [0, -3264, -3966, -5554, -9715, -9716, -6473], + [1, 3, 4788], + [0, 4789, 0, 4790, 5], + [0, -9717, -9718, -469, -1107, -1496, -1646, -1966, -2177], + [0, -3264, -7148, -2451, -1330], + [1, 3, 4792], + [0, 4793, 4794, 4795, 9], + [0, -9719, -1324, -1548, -1949, -2321], + [ + 0, -86, -3307, -3037, -767, -774, -778, -796, -9071, -932, -7466, -1322, -1344, -1415, -1534, -1643, -1771, + -1942, -1974, -9720, -2000, -2125, -2251, -2275, -2410, -2501, -2503, -9721 + ], + [0, -2501, -3862, -3264, -1331], + [1, 3, 4797], + [0, 4798, 4799, 4800, 4], + [0, -9722, -719, -755, -1936], + [ + 0, -190, -3748, -7155, -3621, -3037, -9723, -652, -784, -932, -6835, -958, -8339, -9724, -1001, -1110, -1654, + -1889, -1979, -9695, -2125, -9725, -2303, -2334, -2410, -2411, -9487 + ], + [0, -1936, -9726, -3264, -9727, -6684], + [1, 3, 4802], + [0, 4803, 4804, 4805, 5], + [0, -7713, -6585, -6584, -3223], + [0, -190, -3037, -3664, -932, -940, -965, -978, -1110, -1942, -2386, -2410, -2411, -2469], + [0, -3264, -3215, -8027, -6597, -5092, -9728, -3484, -9297], + [1, 3, 4807], + [0, 4808, 129, 4809, 6], + [0, -828, -1370, -8441, -2255, -9729], + [0, -1334, -6324], + [1, 3, 4811], + [0, 4812, 4813, 7, 10], + [0, -996, -9730, -1063], + [0, -2531, -1788, -9731, -510, -1654, -2177, -1003, -2228, -725, -516, -2229], + [1, 3, 4815], + [0, 4816, 4817, 4818, 5], + [0, -9732, -812], + [0, -3198, -3136, -3037, -511, -1415, -2375, -2410, -1971, -9056], + [0, -1334, -1971, -8484, -9733], + [1, 3, 4820], + [0, 4821, 4822, 4823, 4], + [0, -4623, -812, -1336, -1393, -1396, -1639], + [ + 0, -86, -3307, -190, -3198, -3330, -3617, -9734, -3136, -4036, -3037, -4203, -4204, -617, -932, -940, -967, + -1004, -1098, -1110, -1344, -1415, -1534, -9735, -1805, -4916, -8436, -1942, -2293, -2375, -2410, -2411, -2531 + ], + [0, -7302, -1971, -5401, -1334, -1342, -729, -1004, -1030, -3548, -9736, -632, -1168, -1137, -2512, -2531, -754], + [1, 3, 4825], + [0, 4826, 4827, 4828, 4], + [0, -1297, -1640, -668, -9737, -9738, -1810, -1646, -2436, -579, -1336, -1888, -9739, -1319], + [0, -9740, -2319, -932, -1004, -2105, -9741], + [0, -687, -3957, -5142, -1334, -1342, -1339, -9742, -3844], + [1, 3, 4830], + [0, 0, 4831, 4832, 4], + [ + 0, -2391, -1344, -1654, -932, -2198, -2379, -1942, -190, -721, -2410, -3037, -1534, -7820, -3621, -9743, -86, + -2251, -9744, -2411, -964, -940, -967, -3307 + ], + [0, -1334, -729, -3100, -9745, -1004], + [1, 3, 4834], + [0, 0, 4835, 4836, 8], + [0, -3048, -3136, -9746, -427, -428, -932, -935, -958, -1077, -1415, -1605, -2375, -2378, -2379, -2410], + [0, -3966, -1334, -7827, -9747, -9748, -9745, -5563], + [1, 3, 4838], + [0, 0, 0, 4839, 4], + [0, -1342, -9749], + [1, 3, 4841], + [0, 4842, 4843, 4844, 4], + [0, -812, -9732], + [0, -1415, -1971, -2375, -9056, -2410, -3136, -3037, -512, -3198, -511, -9750], + [0, -1342, -1971, -8484, -9733], + [1, 3, 4846], + [0, 0, 0, 4847, 10], + [0, -5889, -3322, -1939], + [1, 3, 4849], + [0, 4850, 31, 4851, 11], + [0, -6829, -6372, -2347], + [0, -5827, -1334, -3443, -2105, -9052, -9751, -9752, -6693, -9753, -9024], + [1, 3, 4853], + [0, 0, 4854, 4855, 5], + [0, -3470, -3842, -3471, -741, -932, -940, -9754, -1942, -2127, -2174, -2322], + [0, -9755, -5553, -775, -656], + [1, 3, 4857], + [0, 0, 84, 4858, 5], + [0, -9756, -9757, -9758, -2424, -9759, -9760, -9761, -9762, -1878, -9763, -9764, -9765, -9766, -9767], + [1, 3, 4860], + [0, 4861, 4862, 4863, 4], + [0, -9768, -812, -9769, -9770, -9771, -1689], + [ + 0, -510, -744, -932, -940, -943, -958, -966, -967, -968, -974, -1004, -1344, -1534, -1654, -1788, -1942, -2198, + -2210, -2548, -2293 + ], + [0, -3110, -1348, -9772], + [1, 3, 4865], + [0, 39, 4866, 4867, 5], + [ + 0, -9773, -23, -3395, -3204, -38, -39, -40, -41, -43, -3326, -350, -351, -3266, -3037, -427, -428, -3664, -571, + -756, -757, -932, -934, -940, -948, -958, -9774, -1344, -9775, -9776, -9777, -9778, -9779, -1534, -1942, -2125, + -2127, -2210, -2410, -2469 + ], + [0, -1349, -9780, -1348, -9781, -9782, -9772, -9783, -9784], + [1, 3, 4869], + [0, 0, 4870, 4871, 4], + [0, -190, -3267, -3470, -3471, -427, -428, -932, -940, -967, -1110, -1942, -2127, -2132, -2174, -2410], + [0, -1349, -9785, -3445, -3862], + [1, 3, 4873], + [0, 4874, 4875, 4876, 4], + [0, -9786], + [ + 0, -1788, -510, -9787, -9788, -1654, -9789, -932, -2177, -2105, -9790, -2410, -3037, -1002, -2884, -2832, -3748, + -5029 + ], + [0, -9788, -5845, -9791, -9792], + [1, 3, 4878], + [0, 4879, 4880, 4881, 5], + [0, -9793], + [0, -527, -533, -559, -562, -756, -932, -934, -958, -1417], + [0, -1971, -9794, -9795, -1415, -4215], + [1, 3, 4883], + [0, 0, 4884, 4885, 4], + [0, -21, -23, -40, -427, -812, -932, -9796, -958, -1650, -9797, -2125, -9798, -2319, -2359, -2379, -2410], + [0, -1353, -9799, -9100, -1777, -8199, -9800, -7724, -5570, -5569, -9094, -1107, -9801, -9802], + [1, 3, 4887], + [0, 0, 4888, 4889, 6], + [0, -652, -1107, -2391, -2379, -2402, -2410, -3036, -3037, -2581], + [ + 0, -6527, -8799, -9803, -9804, -6730, -7710, -5316, -8653, -8740, -8642, -8715, -9805, -8654, -8685, -9235, + -8761, -7715, -8656, -3839, -9806, -9807, -5315 + ], + [1, 3, 4891], + [0, 4892, 4893, 4894, 5], + [0, -9808, -7879, -2218, -1111, -9809, -1043, -5558, -9810, -8628, -9324], + [0, -2541, -519, -824, -2331, -7687, -9401, -7692], + [0, -1644, -6454, -6527, -5093, -9235, -8640, -7715, -8642, -3839], + [1, 3, 4896], + [0, 4897, 4898, 4899, 5], + [0, -9808, -999, -9811, -5558, -9812, -8628], + [0, -652, -2541, -519, -2410, -3037], + [0, -6454, -6527, -9813, -1644, -7175, -7715, -9814], + [1, 3, 4901], + [0, 4902, 0, 4903, 10], + [0, -9815, -2062], + [0, -1358, -9715, -7920, -9816, -3323], + [1, 3, 4905], + [0, 0, 4906, 4907, 9], + [ + 0, -23, -3037, -3664, -756, -9817, -9818, -1059, -1344, -1361, -9819, -1548, -1552, -1942, -1952, -2074, -2125, + -9820, -2174, -2391, -9821, -2410, -2466, -2469 + ], + [0, -1361, -9822, -9823], + [1, 3, 4909], + [0, 0, 4910, 4911, 8], + [0, -9824, -3136, -756, -1415, -2125, -2375, -2388, -2410], + [0, -9825], + [1, 3, 4913], + [0, 0, 0, 4914, 4], + [0, -1361, -6852, -9826, -6582, -7537, -5112, -7558, -9827, -5562, -7822], + [1, 3, 4916], + [0, 186, 4917, 4918, 5], + [0, -519, -1298, -2384, -2541], + [0, -4792, -3324, -6690, -6691, -3551, -1072, -9828], + [1, 3, 4920], + [0, 4921, 4922, 4923, 6], + [0, -1871, -5915], + [0, -519, -6997, -824, -999, -2541], + [0, -6024, -8427, -4792, -2114, -1109, -9318, -9829, -687], + [1, 3, 4925], + [0, 4926, 4927, 4928, 5], + [0, -9830, -9831, -9832, -9833, -9834, -9835, -9836], + [0, -3037, -4204, -932, -9837, -1942, -2410], + [ + 0, -9668, -3844, -9838, -9839, -7107, -8897, -9840, -3690, -7586, -9841, -5196, -9842, -3691, -5728, -3578, + -3161, -3122, -9843, -9844, -6011, -5801, -1334, -1342, -2512, -6224, -9845, -3994, -3445, -5407 + ], + [1, 3, 4930], + [0, 0, 14, 4931, 10], + [0, -6806, -2265, -7210, -9846, -6722, -5554, -885, -9847], + [1, 3, 4933], + [0, 4934, 4935, 4936, 8], + [0, -9551, -619, -9556, -1309, -1435, -1582], + [0, -707, -1277, -1510], + [0, -6656, -7421, -8481, -1277, -3862], + [1, 3, 4938], + [0, 4939, 4940, 4941, 6], + [0, -786, -2776, -3546], + [0, -9848, -9849], + [0, -1368, -6187, -3161, -4729, -9850, -3264, -9851, -3844, -5092, -4865, -2127, -9613], + [1, 3, 4943], + [0, 0, 4944, 4945, 4], + [0, -2410, -2469], + [0, -1369, -9852, -9853, -1878, -9763, -9758, -2424, -9854, -9855, -9759, -9764, -9760, -9765, -9766, -9767, -9761], + [1, 3, 4947], + [0, 0, 71, 4948, 10], + [0, -9856, -7711, -9857, -9858, -9859, -1370, -4865, -633], + [1, 3, 4950], + [0, 0, 29, 7, 5], + [1, 3, 4952], + [0, 4953, 4954, 4955, 5], + [ + 0, -9860, -480, -482, -9861, -668, -688, -690, -696, -5906, -3517, -1366, -8418, -9862, -6259, -2166, -2202, + -2219, -4621, -2267, -9863, -2400, -2820, -2528, -2531, -9864 + ], + [ + 0, -6486, -5918, -357, -3851, -3037, -3040, -9865, -9866, -9867, -4372, -4626, -4204, -9868, -519, -623, -826, + -9869, -969, -970, -1681, -1741, -1827, -1942, -2006, -9870, -2210, -2269, -2379, -2410, -2541 + ], + [0, -2006, -687, -4146, -3973, -3098, -3958, -1940, -2074, -9871, -7650, -714, -5554], + [1, 3, 4957], + [0, 0, 4958, 4959, 11], + [ + 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -775, -932, -967, -4814, -1110, -1344, -1415, -1534, + -1771, -1942, -2910, -2127 + ], + [0, -1374, -9872, -5553, -3215, -775], + [1, 3, 4961], + [0, 0, 0, 4962, 6], + [0, -9873, -9874, -7864, -7084, -7856, -9219, -3966, -687], + [1, 3, 4964], + [0, 4965, 4966, 63, 4], + [0, -3947, -231, -4106, -2900, -3950, -9875, -2153], + [0, -3952, -2410], + [1, 3, 4968], + [0, 4969, 4970, 4971, 11], + [0, -480, -1040, -1863, -9875, -2153], + [0, -1059, -1087, -1376], + [ + 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -910, -3962, -3963, -1376, -3964, -3965, -3214, -3824, -3966, + -3967, -1965, -3968, -1966, -3969, -2063, -3972, -3973, -3974, -3975, -3160, -3976, -2559, -3977 + ], + [1, 3, 4973], + [0, 4974, 0, 4975, 8], + [0, -9876, -714], + [0, -9877, -3966, -9878, -9879], + [1, 3, 4977], + [0, 0, 4978, 4979, 6], + [0, -849, -1654, -9880, -2334], + [0, -3209, -4792, -4791, -9881, -4865, -9882, -7857, -1380], + [1, 3, 4981], + [0, 0, 4982, 4983, 8], + [0, -932, -937, -966, -1001, -1442, -1654, -1788, -8501, -2068, -2094, -9883, -2195], + [ + 0, -9199, -9884, -711, -6505, -3184, -3756, -4055, -1460, -4146, -2006, -9885, -2362, -3018, -2410, -6597, + -2548, -9886 + ], + [1, 3, 4985], + [0, 0, 4986, 4987, 8], + [ + 0, -510, -526, -528, -549, -9887, -9888, -551, -556, -559, -9889, -566, -9890, -9891, -9892, -9893, -9894, + -9895, -9896, -9897, -9898, -9899, -9900, -9901, -9902, -9903, -689, -704, -932, -9904, -1045, -1107, -1127, + -1132, -1134, -1138, -9905, -9906, -1452, -1650, -1797, -2125, -2127, -2128, -2131, -9907, -5860, -2138, -2143, + -9266, -2187, -2493 + ], + [0, -1382, -1348, -9780, -9908, -3582], + [1, 3, 4989], + [0, 0, 4990, 4991, 4], + [ + 0, -7, -8, -9, -10, -13, -3204, -42, -3983, -365, -407, -410, -3037, -3040, -3052, -427, -428, -4837, -9909, + -535, -774, -928, -932, -948, -958, -959, -969, -970, -1028, -9910, -4693, -9911, -1127, -1131, -1132, -1134, + -1137, -1140, -1149, -9912, -1160, -1162, -1339, -1415, -1419, -1437, -1541, -1874, -1942, -9913, -2006, -2019, + -2162, -2193, -2299, -2351, -2379, -2410, -2466, -6859, -2476, -5627, -2567 + ], + [ + 0, -9914, -9915, -9916, -9917, -9918, -3162, -3962, -9567, -3823, -3214, -3862, -775, -3264, -3926, -5538, + -2006, -2476, -475, -2299, -3095, -2410 + ], + [1, 3, 4993], + [0, 220, 4994, 4995, 5], + [0, -633, -1059, -2319], + [0, -4004, -1384], + [1, 3, 4997], + [0, 4998, 4999, 5000, 6], + [0, -9919, -9920, -9921], + [0, -3037, -3664, -932, -1942, -2080, -2125, -2127, -2376, -2387, -2410, -2469], + [0, -6143, -9922, -6134, -9923, -9924, -3214, -3966, -2410], + [1, 3, 5002], + [0, 5003, 5004, 221, 5], + [ + 0, -2323, -834, -9925, -1805, -2446, -668, -812, -2387, -1548, -2177, -2240, -3547, -2347, -9926, -2291, -9927, + -9928, -9929, -9422, -9930, -9931, -9932, -9933, -9934, -9935, -9936, -9937, -9938 + ], + [ + 0, -1415, -2125, -2388, -2375, -1417, -5673, -2231, -2410, -9939, -3136, -3037, -9940, -3738, -1534, -3198, + -3044, -3199, -9941, -9942, -7836, -4202, -9943 + ], + [1, 3, 5006], + [0, 5007, 5008, 5009, 5], + [0, -3978], + [ + 0, -3983, -3048, -3136, -3037, -9947, -1077, -1415, -1417, -9948, -1772, -1942, -1978, -2125, -2177, -2184, + -2303, -2392, -2410 + ], + [0, -9949, -1386, -3167, -3839, -3162, -8585, -3095, -9950, -3119, -5270], + [1, 3, 5011], + [0, 5012, 5013, 5014, 4], + [0, -9951, -9952, -812, -9953, -1554, -9954, -9955, -9956, -9957], + [ + 0, -9958, -3470, -7040, -3471, -3035, -4269, -3198, -9959, -9960, -3621, -3037, -9961, -4372, -427, -428, -664, + -665, -932, -940, -1654, -1788, -1942, -2174, -2188, -2210, -2379, -2384, -2402, -2410, -2446 + ], + [0, -2071, -9844, -9962, -9963], + [1, 3, 5016], + [0, 0, 5017, 7, 8], + [0, -1654, -932], + [1, 3, 5019], + [0, 5020, 5021, 7, 5], + [0, -9964, -9788, -9965], + [0, -9966, -1032, -1445, -2322], + [1, 3, 5023], + [0, 0, 5024, 5025, 4], + [0, -515, -1788, -2322, -932, -6283, -1365, -2156, -5834, -6402], + [0, -2444, -8038, -4004], + [1, 3, 5027], + [0, 5028, 5029, 184, 9], + [0, -680], + [0, -686, -2250], + [1, 3, 5031], + [0, 5032, 88, 5033, 4], + [0, -9967], + [ + 0, -6836, -9968, -7440, -8421, -8130, -9969, -1107, -9095, -9970, -1391, -5572, -3581, -5574, -5569, -8129, + -2265, -4004 + ], + [1, 3, 5035], + [0, 5036, 5037, 5038, 11], + [0, -9971, -7408], + [0, -519, -6997, -824, -999, -1591, -2384, -2541], + [0, -1109, -5897, -9972, -3551, -1380, -9973, -1764, -2552, -1391, -7440, -6659, -8427, -9974, -687, -8425, -7304], + [1, 3, 5040], + [0, 0, 14, 5041, 6], + [0, -7208, -1391, -7440, -4004, -8038, -9716, -9975, -9976, -5493], + [1, 3, 5043], + [0, 0, 5044, 5045, 9], + [0, -664, -985, -1202, -1654, -1655, -2127], + [0, -7440, -1391, -9977, -1403, -3214, -9978, -8493, -7208, -9716, -8038, -9571, -5846], + [1, 3, 5047], + [0, 0, 5048, 5049, 5], + [0, -1654, -2081], + [0, -3264, -9950, -9979, -5065], + [1, 3, 5051], + [0, 0, 5052, 5053, 5], + [0, -3037, -519, -2331, -2384, -2541], + [0, -5827, -8038, -8027, -9980, -8800, -9753, -6408, -7440, -6659, -1391], + [1, 3, 5055], + [0, 5056, 222, 5057, 5], + [0, -9981], + [0, -7440, -9983, -7084, -9984, -9261, -6659, -6836, -1958, -4000, -3974, -1391], + [1, 3, 5059], + [0, 0, 31, 5060, 11], + [0, -4865, -1402, -5839], + [1, 3, 5062], + [0, 0, 5063, 5064, 11], + [0, -985, -1202, -1654, -2127], + [0, -7440, -1391, -9977, -1403, -9978, -8493, -9985, -5269, -7208, -8038, -9571, -5846], + [1, 3, 5066], + [0, 5067, 5068, 7, 5], + [0, -1729, -2516], + [0, -664, -1452, -9986, -1654, -1722], + [1, 3, 5070], + [0, 5071, 5072, 5073, 4], + [0, -1107, -1758, -1801, -510, -2518, -9632, -1650, -987, -1442, -2114, -2525, -931, -1276, -2297], + [0, -1452, -2125, -1754, -756, -2111], + [0, -4005, -9987, -9988, -9989], + [1, 3, 5075], + [0, 5076, 56, 89, 4], + [0, -1078, -2446, -7885], + [1, 3, 5078], + [0, 5079, 5080, 5081, 5], + [0, -513, -823, -896, -9990, -1571, -1887, -2355, -9991], + [ + 0, -9992, -526, -527, -532, -534, -536, -544, -546, -9993, -551, -555, -7890, -558, -565, -567, -664, -9994, + -748, -767, -778, -932, -980, -1017, -1041, -1074, -1168, -1171, -1184, -1226, -1243, -1322, -1331, -1471, + -1475, -1476, -1482, -7759, -1490, -1491, -1492, -1521, -1522, -8936, -1654, -2210, -2211, -2275, -2388, -2410, + -2417, -2437, -2476, -2479, -9995, -2481, -2483, -2484, -2485, -2501, -2505, -2508 + ], + [0, -1407, -2476, -3527, -3095, -3098, -3160, -3161], + [1, 3, 5083], + [0, 5084, 156, 5085, 4], + [0, -233], + [0, -6748, -3215, -4377, -5829, -9567, -687, -3957, -6722, -1838, -6747], + [1, 3, 5087], + [0, 5088, 5089, 7, 4], + [0, -9996, -683, -719, -9997, -9998, -1650, -9999, -2416, -2595, -10000], + [ + 0, -10001, -10002, -756, -1004, -10003, -10004, -10005, -10006, -10007, -10008, -10009, -10010, -10011, -10012, + -10013, -10014, -10015, -10016, -1610, -1810, -10017, -2125, -10018, -3013 + ], + [1, 3, 5091], + [0, 5092, 5093, 5094, 5], + [0, -510, -10019, -1863], + [0, -190, -932, -4719, -1110, -1654, -1980], + [0, -7641, -687, -9218, -10020], + [1, 3, 5096], + [0, 5097, 5098, 5099, 4], + [0, -10021], + [ + 0, -3326, -351, -3561, -3266, -4964, -10022, -10023, -683, -767, -10024, -1344, -1437, -10025, -1534, -1639, + -10026, -2127, -4063, -8896 + ], + [0, -10027, -6527, -5182, -10028, -10029, -8636], + [1, 3, 5101], + [0, 5102, 5103, 223, 6], + [0, -1107, -1413, -10030], + [0, -932, -10031], + [1, 3, 5105], + [0, 0, 5106, 223, 5], + [0, -3244, -190, -501, -10032, -888, -932, -952, -1107, -1110, -1449, -1942, -2162], + [1, 3, 5108], + [0, 5109, 0, 5110, 5], + [0, -1088, -1650, -10033, -2111, -2424, -711, -10034, -10035], + [0, -3634, -3440], + [1, 3, 5112], + [0, 5113, 0, 107, 4], + [0, -236, -237, -1363, -1417], + [1, 3, 5115], + [0, 5116, 5117, 5118, 6], + [0, -10036, -10037], + [0, -6256, -21, -23, -26, -40, -86, -9404, -533, -10038, -756, -1344, -1415, -1942], + [0, -4215, -1415, -5129, -886, -659, -4004, -5119], + [1, 3, 5120], + [0, 5121, 5122, 107, 6], + [0, -236, -4019, -237, -668, -4021, -1363, -4023, -1427, -4031, -2550], + [0, -3041], + [1, 3, 5124], + [0, 5125, 224, 7, 6], + [0, -10039, -8434, -668, -1950], + [1, 3, 5127], + [0, 5128, 224, 7, 5], + [0, -10040, -10041, -4647, -3037, -1449], + [1, 3, 5130], + [0, 5131, 5132, 7, 4], + [0, -10040, -10042, -237, -5129, -1427, -1449], + [0, -3136, -4647, -3037, -1344, -1415, -1650, -1942, -1952, -2125, -2375, -2410], + [1, 3, 5134], + [0, 5135, 5136, 7, 9], + [0, -10040, -10042, -237, -3037, -5129, -1427, -4031], + [0, -4034, -703], + [1, 3, 5138], + [0, 5139, 5140, 5141, 5], + [0, -1418], + [ + 0, -50, -3615, -3244, -190, -8433, -3136, -427, -428, -932, -940, -948, -958, -959, -967, -1110, -1344, -1415, + -10043, -1428, -1534, -1942, -2375, -5232, -2410 + ], + [0, -1415, -10044, -1015, -10045, -4004, -3634, -6538], + [1, 3, 5143], + [0, 5144, 5145, 5146, 4], + [0, -1077, -1805], + [ + 0, -23, -2695, -366, -407, -409, -410, -10046, -3136, -10047, -3037, -10048, -3040, -3052, -6192, -485, -533, + -534, -542, -561, -594, -635, -656, -661, -747, -778, -779, -796, -865, -866, -929, -932, -941, -10049, -1017, + -1041, -1077, -1331, -1352, -1415, -1426, -1428, -10050, -1643, -1762, -1889, -1903, -1908, -1918, -1927, -1966, + -10051, -2006, -2010, -2015, -2019, -2041, -2643, -2114, -2116, -2162, -2163, -2177, -2233, -2275, -2318, -2335, + -2410, -2437, -10052, -2501, -2502, -2505, -2507, -2526 + ], + [0, -1415, -3264, -6863, -9246, -3862], + [1, 3, 5148], + [0, 5149, 5150, 7, 4], + [0, -1650, -2269, -2446, -6597], + [0, -1415, -10053, -2218], + [1, 3, 5152], + [0, 0, 0, 5153, 5], + [0, -1415, -2552, -10054, -10055], + [1, 3, 5155], + [0, 5156, 5157, 7, 6], + [0, -668, -1119, -4024, -1425, -1427, -4031, -2218, -8204], + [0, -4035, -2435], + [1, 3, 5159], + [0, 5160, 5161, 7, 8], + [0, -237, -3037, -668, -680, -1119, -1864], + [0, -4035, -8523, -1548], + [1, 3, 5163], + [0, 5164, 5165, 7, 5], + [0, -480, -668, -4026, -4032, -2218, -6715, -2269], + [ + 0, -21, -23, -40, -42, -190, -5121, -237, -3470, -3471, -3037, -533, -10056, -767, -932, -940, -948, -8339, + -959, -967, -1110, -1415, -10043, -1942, -2125, -2174, -2177, -2410, -2411 + ], + [1, 3, 5167], + [0, 5168, 5169, 7, 6], + [0, -3037, -9581, -1427, -1632, -2297], + [0, -23, -10057, -4373, -9586, -1100, -10058, -10059], + [1, 3, 5171], + [0, 5172, 5173, 5174, 4], + [ + 0, -10060, -10061, -10062, -10063, -10064, -10065, -10066, -10067, -10068, -10069, -10070, -10071, -10072, + -10073, -10074, -10075, -10076, -10077, -10078, -10079, -10080, -10081, -10082, -10083, -10084, -10085, -10086 + ], + [ + 0, -10087, -10088, -10089, -10090, -4066, -350, -6572, -351, -3266, -5286, -932, -10091, -1848, -2127, -2132, + -6483, -9701, -2386, -2410, -10092, -2469 + ], + [0, -6527, -10093, -10094, -7715, -8640, -9235, -8653, -10095, -7069, -7066], + [1, 3, 5176], + [0, 0, 5177, 7, 6], + [ + 0, -23, -3341, -3196, -24, -10096, -33, -5828, -3367, -3077, -3389, -3408, -3412, -42, -3193, -46, -47, -10097, + -10098, -4776, -4777, -10099, -10100, -10101, -3037, -3664, -461, -10102, -672, -727, -734, -6860, -10103, -930, + -932, -944, -989, -990, -1026, -1394, -1640, -1651, -1667, -10104, -1852, -6568, -1940, -10105, -1942, -2006, + -2019, -2080, -10106, -6570, -2335, -3535, -2376, -2410, -2469, -2476, -8416, -2564 + ], + [1, 3, 5179], + [0, 0, 0, 5180, 6], + [0, -3494, -10107, -10108, -3495, -10109, -10110, -3264, -5554, -3496, -10111, -3214, -2410, -10112, -1432], + [1, 3, 5182], + [0, 5183, 5184, 5185, 4], + [0, -1432], + [ + 0, -3615, -7155, -367, -406, -409, -410, -3040, -3052, -427, -428, -767, -778, -932, -940, -967, -969, -970, + -979, -1331, -1449, -1942, -2006, -2019, -8276, -2275, -3752, -2379, -2391, -2410, -2469, -2501, -2503, -2505 + ], + [0, -2006, -1432, -3264, -5554, -3496, -10113, -10109, -10110, -10114], + [1, 3, 5187], + [0, 5188, 5189, 5190, 4], + [0, -668, -10115, -10116, -10117, -2183, -3523, -1553, -1552, -10118], + [0, -1788, -510, -1127, -2210, -1813, -756, -1132, -6758, -1153, -722, -10119, -1149, -1144, -1146], + [ + 0, -10120, -10121, -10122, -10123, -10124, -10125, -10126, -10127, -10128, -10129, -10130, -10131, -10132, + -10133, -10134, -10135, -10136, -10137, -10138, -10139, -10140, -10141, -10142, -10143, -10144, -10145, -10146, + -10147, -10148, -10115, -10149, -10150, -10151, -10152, -10153, -10154, -10155, -10156, -10157, -10158, -10159, + -10160, -10161, -10162, -10163, -10164, -10165, -10166, -10167, -10168, -10169, -10170, -10171, -10172, -10173, + -10174, -10175, -10176, -10177, -10178, -10179, -10180, -10180, -10181, -10182, -10183, -10184, -10185, -10186, + -10187, -10188, -10189, -10190, -10191, -10192, -10193, -10194, -10195, -10196, -10197, -10198, -10199, -10200, + -10201, -10202, -10203, -10204, -10205, -10206, -10207, -5158, -10208, -10209, -10210, -10211, -10212, -10213, + -10214, -10215, -10216, -10217, -10218, -10219, -10219, -10220, -10221, -10222, -10223, -10224, -10225, -10226, + -10227, -2183, -10228, -10229, -10230, -10231, -10232, -10233, -10234, -10235, -10236, -10237, -10238, -10239, + -10240, -10241, -10242, -10243, -10244, -10245, -10246, -10247, -10248 + ], + [1, 3, 5192], + [0, 5193, 5194, 5195, 4], + [0, -10249, -10250, -3880, -10251, -10252, -3888, -3117], + [0, -9163, -3890, -3891, -3893, -3037, -2410], + [0, -4058, -3926], + [1, 3, 5197], + [0, 0, 0, 5198, 5], + [0, -2006, -4125, -9800, -4633, -10253, -4634], + [1, 3, 5200], + [0, 0, 0, 5201, 10], + [0, -1437, -3214, -4865, -3482], + [1, 3, 5203], + [0, 5204, 5205, 7, 4], + [0, -1437], + [ + 0, -1127, -2125, -1110, -367, -10254, -10255, -1152, -10256, -1542, -10257, -10258, -10259, -10260, -1136, + -1139, -9550 + ], + [1, 3, 5207], + [0, 0, 5208, 5209, 11], + [0, -3037, -1654, -2410], + [0, -6118, -7304], + [1, 3, 5211], + [0, 5212, 5213, 5214, 4], + [0, -10261, -7829, -1107, -1441, -1758], + [0, -481, -589, -709, -1437, -1452, -1646, -1654, -1689, -2111, -2184, -2269, -2501, -2503], + [0, -6146, -10262, -10263], + [1, 3, 5216], + [0, 0, 5217, 5218, 4], + [ + 0, -3266, -932, -943, -957, -963, -1127, -10258, -1137, -1146, -9544, -1149, -10264, -10265, -1942, -1989, + -2091, -2127, -5090, -2134, -2250 + ], + [0, -743, -6920, -4865, -10266, -4791, -3323, -1441, -633], + [1, 3, 5220], + [0, 5221, 5222, 5223, 8], + [0, -503], + [0, -1788, -5514, -1654, -932, -2127, -2195, -1103, -589, -709, -1023, -2140, -350, -351, -10267], + [0, -2548, -3215, -4142, -10268], + [1, 3, 5225], + [0, 5226, 5227, 5228, 10], + [0, -25, -5223, -719, -812, -822, -1107, -10269, -10270, -2001, -10271], + [ + 0, -190, -4010, -367, -4007, -7043, -3037, -720, -740, -796, -932, -940, -959, -967, -1415, -1448, -9390, -9393, + -1942, -2125, -2410, -2411 + ], + [0, -10272, -856], + [1, 3, 5230], + [0, 5231, 5232, 7, 4], + [0, -714, -719, -1077, -10273, -10274, -10275, -10276, -10277, -10278, -10279], + [0, -5325, -3048, -3037, -3664, -1753, -2379, -2391, -2410, -2469], + [1, 3, 5234], + [0, 5235, 5236, 5237, 6], + [ + 0, -668, -693, -719, -10280, -988, -1000, -1107, -1333, -1442, -10281, -10282, -6611, -1548, -1645, -5199, + -6533, -1965, -10283, -2114, -2270, -2271, -10284, -10285, -9247, -10286, -2538 + ], + [0, -664, -756, -3607, -1452, -1654, -2081, -2123, -2210, -2211, -10287, -10288, -2536], + [0, -8172, -4144, -7148, -8170, -4901, -5874], + [1, 3, 5239], + [0, 5240, 5241, 5242, 4], + [0, -25, -10289, -3661, -615, -10290, -930, -10291, -8985, -1600, -1601, -1610, -1650, -10292, -2271, -2424], + [0, -469, -1168, -1197, -1225, -1788], + [0, -856, -3214], + [1, 3, 5244], + [0, 5245, 0, 5246, 4], + [0, -6789, -7573, -10293, -7575, -1446, -10294, -7576], + [0, -1446, -3690, -5731, -3964, -3214, -856], + [1, 3, 5248], + [0, 5249, 0, 5250, 5], + [0, -6789, -717, -718, -10295, -843, -1447, -2576, -7576], + [0, -1446, -1599, -3690, -3262, -3214, -3756, -856], + [1, 3, 5252], + [0, 5253, 5254, 225, 5], + [ + 0, -10296, -10297, -10298, -9683, -785, -10299, -10300, -1319, -1337, -1343, -1397, -1839, -10301, -10302, + -2364, -2426, -10303, -10304, -6587, -10305, -8352 + ], + [ + 0, -7196, -932, -957, -965, -1110, -1442, -1645, -1654, -10306, -1772, -1810, -1880, -2177, -2188, -2354, + -10307, -10308 + ], + [1, 3, 5256], + [0, 5257, 5258, 225, 5], + [0, -10309, -10310, -785, -1333, -10311, -1839, -2105, -8352, -2540], + [0, -633, -714, -1339, -1452, -6810, -1754, -1888, -1980, -10312, -2493], + [1, 3, 5260], + [0, 0, 5261, 5262, 4], + [0, -756, -1127, -1132, -6114, -1405, -1654, -2081, -2111, -10313], + [0, -640, -5559, -3214, -4055, -6917, -8127, -2265, -6231, -3673], + [1, 3, 5264], + [0, 5265, 5266, 7, 8], + [0, -687, -6392, -1000, -1333, -1548, -1645, -2271], + [0, -510, -633, -739, -6019, -756, -1405, -1445, -1661, -1754, -1978, -2081, -10314, -2210, -6430, -10315, -10316], + [1, 3, 5268], + [0, 5269, 226, 5270, 5], + [0, -668, -1574, -1877, -6715, -2343, -9493], + [0, -1452, -6863, -4144, -3276, -7148, -5874, -10317, -6864, -3240], + [1, 3, 5272], + [0, 5273, 5274, 5275, 4], + [0, -10318, -10319], + [0, -3621, -3037, -427, -428, -932, -936, -958, -1654, -1788, -2379, -2410], + [0, -4055, -10320, -788, -6473, -8257, -10321, -10322, -1838, -3215, -1454, -10323, -687], + [1, 3, 5277], + [0, 0, 5278, 7, 8], + [0, -2251], + [1, 3, 5280], + [0, 0, 0, 5281, 9], + [0, -4055, -4058], + [1, 3, 5283], + [0, 5284, 5285, 5286, 4], + [0, -411, -414, -2702, -668, -679, -3780, -6869, -1369, -1460, -1581, -10324, -2213, -10325], + [0, -3037, -726, -1098, -1344, -2987, -8065, -2331, -2400, -2410], + [0, -4182, -3844, -8959, -3817, -3816, -10326, -4215, -4041, -4004, -3634, -3691, -6582, -10327], + [1, 3, 5288], + [0, 5289, 5290, 5291, 10], + [0, -655, -6511, -1402, -7584, -1795], + [0, -2832, -5834, -8084, -8086, -8090, -10328, -8096, -516, -5835, -932, -1365, -1777, -2156, -2322], + [0, -4055, -6231, -10329, -6131, -7283, -10330], + [1, 3, 5293], + [0, 0, 0, 5294, 5], + [0, -4055, -6231, -10331, -9594], + [1, 3, 5296], + [0, 0, 5297, 5298, 11], + [ + 0, -753, -932, -943, -958, -966, -968, -974, -1771, -2081, -2127, -2129, -2131, -2137, -2140, -2210, -2319, + -10332 + ], + [0, -4055, -1460, -8108, -4795, -3217], + [1, 3, 5300], + [0, 0, 5301, 7, 4], + [0, -1654, -932, -2125, -2410, -3037, -3621, -428, -427], + [1, 3, 5303], + [0, 5304, 206, 5305, 4], + [0, -8984], + [0, -2059, -6234, -6656, -4055, -1076, -1077], + [1, 3, 5307], + [0, 0, 5308, 5309, 5], + [0, -7055, -10333, -664, -932, -10334, -1654], + [0, -4055, -4058, -1463, -2451, -3926], + [1, 3, 5311], + [0, 5312, 5313, 5314, 5], + [0, -2346, -10335], + [0, -2322, -8392, -10336, -7650, -6538, -994], + [0, -4055, -5827, -9292, -3215, -510, -6747], + [1, 3, 5316], + [0, 5317, 5318, 5319, 8], + [0, -1681, -10337, -2177, -10338, -10339, -10340, -1563, -10341, -10342, -1562], + [0, -1780, -1788, -514, -664, -1654, -2210, -932, -739], + [0, -3175], + [1, 3, 5321], + [0, 5322, 5323, 7, 5], + [0, -23, -10343, -10344, -1816, -1863], + [0, -5694, -3037, -10345, -653, -928, -932, -940, -1640, -1645, -1805, -1942, -2127, -2358, -2410], + [1, 3, 5325], + [0, 0, 5326, 5327, 4], + [0, -3037, -3664, -8436, -2391, -2410, -2469], + [0, -4125, -3967, -3445, -10346, -2006, -5269, -3578, -2034, -3138], + [1, 3, 5329], + [0, 5330, 5331, 5332, 6], + [0, -10347, -1834, -8578, -2062], + [0, -2359, -1127, -1989, -932, -589, -1132, -633, -1874, -2410, -1339, -10348, -1130, -1148, -10349], + [0, -5408, -6827, -10350], + [1, 3, 5334], + [0, 0, 5335, 5336, 6], + [ + 0, -2200, -1415, -1344, -932, -2910, -2375, -2379, -1942, -2410, -23, -1534, -632, -726, -958, -940, -967, + -1419, -428, -427, -948 + ], + [0, -3175, -4865], + [1, 3, 5338], + [0, 0, 5339, 5340, 4], + [0, -1003, -1405, -1654], + [0, -3175, -6422, -6420], + [1, 3, 5342], + [0, 5343, 5344, 5345, 6], + [ + 0, -6134, -2359, -1107, -1640, -10351, -2550, -9968, -1548, -1576, -1650, -2125, -729, -679, -1645, -2228, + -1336, -2231, -617, -1119, -5506, -1997, -2594, -10352, -5758 + ], + [ + 0, -664, -5735, -1654, -7243, -2210, -2518, -932, -793, -2491, -1978, -2293, -633, -1474, -1972, -2211, -10353, + -667, -1482, -1413, -1481, -86, -665, -1472, -2174, -966, -958, -10354, -1483, -3471, -968, -1475, -10355, -943, + -974, -1479, -9404, -3470, -1473 + ], + [0, -1471, -10356, -4043, -1471, -3756, -3214, -3634, -4004, -8908, -10357], + [1, 3, 5347], + [0, 5348, 5349, 5350, 6], + [0, -10358, -1548, -10359, -1645, -8016, -742], + [ + 0, -1763, -627, -664, -1471, -1654, -2210, -2363, -5482, -932, -2114, -2491, -633, -2211, -2410, -1771, -1413, + -1481, -6399, -964, -1475 + ], + [0, -10360, -10361, -10362, -633], + [1, 3, 5352], + [0, 5353, 5354, 5355, 4], + [0, -1980, -2734, -10363], + [0, -1127, -932, -1159, -1131, -1152, -1542, -966, -1129, -958, -968, -943, -974, -1150, -1151], + [0, -10360, -10364, -2734, -10365], + [1, 3, 5357], + [0, 0, 0, 5358, 4], + [0, -1471, -10360, -664, -1654, -2198], + [1, 3, 5360], + [0, 227, 5361, 5362, 9], + [0, -664, -1471, -1654, -2210, -2250, -1482, -86, -2174, -3471, -9404, -3470], + [0, -10360, -10364, -10366], + [1, 3, 5364], + [0, 5365, 5366, 5367, 5], + [0, -5086, -6029, -5087, -5088, -5089, -1645], + [ + 0, -86, -3307, -9248, -3470, -3471, -7041, -664, -711, -932, -943, -958, -966, -968, -974, -1127, -1132, -1155, + -1159, -1344, -10367, -1471, -10368, -1479, -1482, -10369, -1654, -7243, -2111, -2174, -2210, -2211 + ], + [0, -10360, -10361, -10370, -4005, -1405], + [1, 3, 5369], + [0, 227, 5370, 5371, 4], + [0, -1127, -1138, -1144, -1155, -1413, -1471, -1481, -1860], + [ + 0, -10360, -10364, -4865, -6413, -10371, -10372, -10373, -10374, -7490, -10375, -10376, -10377, -10378, -10379, + -10380 + ], + [1, 3, 5373], + [0, 5374, 5375, 5376, 5], + [0, -10381], + [ + 0, -664, -10382, -6134, -932, -943, -968, -974, -1127, -1131, -1132, -1152, -1159, -1163, -1471, -1542, -10383, + -1972 + ], + [0, -10360, -10364, -5799, -7489], + [1, 3, 5378], + [0, 5379, 5380, 5381, 4], + [0, -1401, -2518], + [0, -86, -3307, -3470, -3471, -7041, -1344, -1471, -1482, -1654, -1868, -2174, -2250], + [0, -1471, -3634, -10360, -10364, -10384], + [1, 3, 5383], + [0, 34, 5384, 5385, 5], + [ + 0, -664, -6134, -932, -943, -968, -969, -974, -1127, -1129, -1131, -1149, -1150, -1151, -1152, -1159, -1163, + -1471, -1542, -7243, -2210, -2211 + ], + [0, -10360, -10364, -8996], + [1, 3, 5387], + [0, 5388, 5389, 5390, 5], + [0, -1413], + [ + 0, -1127, -1344, -1471, -932, -1412, -86, -2174, -966, -958, -3471, -7041, -968, -943, -974, -1479, -3472, + -9404, -3470 + ], + [0, -10360, -10385, -1412], + [1, 3, 5392], + [0, 228, 5393, 5394, 6], + [ + 0, -664, -932, -943, -968, -969, -974, -1127, -1129, -1131, -1150, -1152, -1155, -1159, -1471, -1474, -1475, + -1479, -1489, -1542, -1654, -1658, -2210, -3470, -3471, -2174, -86, -3307, -1344 + ], + [0, -10360, -10385, -1654], + [1, 3, 5396], + [0, 5397, 5398, 5399, 4], + [0, -668, -1574, -2269], + [0, -664, -1127, -1131, -1138, -1144, -1150, -1155, -1162, -1413, -1474, -1477, -1542, -1654, -1860], + [0, -10360, -10370, -1654, -664, -834, -8619], + [1, 3, 5401], + [0, 5402, 5403, 5404, 4], + [0, -1548, -1860], + [0, -932, -943, -969, -974, -1127, -1129, -1131, -1150, -1152, -1155, -1159, -1413, -1471, -1481, -1542], + [0, -10360, -10364, -1859], + [1, 3, 5406], + [0, 0, 5407, 5408, 10], + [0, -664, -1127, -1471, -1654, -1989, -932, -1159, -1131, -1481, -966, -958, -968, -943, -974, -1479], + [0, -1471, -10360, -10385, -1989], + [1, 3, 5410], + [0, 5411, 5412, 5413, 6], + [0, -679, -811], + [0, -23, -3412, -40, -932, -1413, -1471, -1475, -1481, -1483, -2127, -2128, -2129, -2131, -2137], + [0, -6505, -4795, -1471, -3209, -6024, -8257, -3862, -3277, -10361, -10360, -10386, -2127], + [1, 3, 5415], + [0, 0, 5416, 5417, 8], + [0, -1159, -1127, -1131, -1129], + [0, -10360, -10364, -10387], + [1, 3, 5419], + [0, 5420, 5421, 5422, 4], + [0, -10388, -5471, -4881], + [0, -86, -3307, -3470, -3471, -7041, -3048, -10389, -3037, -1344, -1412, -1471, -1481, -2174, -2410], + [0, -10360, -10364, -10390, -10391, -5471], + [1, 3, 5424], + [0, 0, 0, 5425, 4], + [0, -1471, -10360, -2210, -4215], + [1, 3, 5427], + [0, 5428, 5429, 5430, 5], + [0, -1119], + [0, -4035, -652, -932, -1413, -1471, -10392, -1475, -1481, -1942, -2127, -10393], + [0, -10360, -10361, -9454, -3214], + [1, 3, 5432], + [0, 187, 5433, 5434, 11], + [0, -664, -756, -1654, -1771, -1788, -2210, -2211], + [0, -10360, -6863], + [1, 3, 5436], + [0, 5437, 5438, 48, 8], + [0, -1107, -1645, -2508], + [ + 0, -21, -23, -39, -40, -86, -3307, -7166, -533, -664, -665, -767, -932, -958, -967, -1344, -1405, -1412, -1415, + -1471, -1474, -1475, -1482, -1491, -1534, -1626, -1654, -1939, -1942, -1978, -2251, -2501 + ], + [1, 3, 5440], + [0, 0, 27, 5441, 8], + [0, -10394, -1493, -10395, -4111, -10396, -10397, -10398, -10399, -1494], + [1, 3, 5443], + [0, 0, 0, 5444, 6], + [0, -1494, -2063, -3103], + [1, 3, 5446], + [0, 5447, 5448, 5449, 6], + [0, -10400], + [ + 0, -10401, -3653, -2581, -6486, -3664, -2125, -10402, -2384, -2469, -10403, -10404, -10405, -10406, -10407, + -10408, -10409 + ], + [ + 0, -7372, -5846, -4634, -3324, -6495, -10410, -6005, -3445, -10411, -2071, -1671, -3742, -1691, -6321, -10412, + -1724, -1582, -10413, -654 + ], + [1, 3, 5451], + [0, 0, 5452, 5453, 4], + [0, -985, -2447], + [0, -5514, -687, -712, -714, -4000, -3974], + [1, 3, 5455], + [0, 5456, 5457, 5458, 5], + [0, -985, -10414, -812, -1548, -8945, -2068, -2350, -10415, -713, -719, -1381, -2115, -1097, -10416], + [ + 0, -1857, -1788, -2384, -664, -1410, -2322, -1344, -1654, -1691, -2210, -932, -1692, -2125, -879, -1658, -2245, + -10417, -2379, -10418, -1942, -2320, -756, -767, -1464, -2211, -2410, -3037, -8946, -1534, -10419, -10420, -665, + -2234, -10421, -958, -10422, -10423, -940, -967, -5984 + ], + [0, -10424, -5101, -6321, -10425, -1691, -10426, -2245, -5378, -1682, -4258, -10427, -7641, -7773, -7685], + [1, 3, 5460], + [0, 5461, 5462, 5463, 4], + [0, -8520, -1026, -10428, -1431, -1442, -1646, -10429, -1863, -1864, -10430, -2271, -2564], + [0, -237, -7057, -3660, -5686, -8523, -3046, -4879, -10431, -4651, -2392, -2410], + [ + 0, -10432, -10433, -7711, -687, -10434, -3015, -6659, -3016, -10435, -10436, -8035, -8257, -6999, -5573, -3214, + -7148, -10437, -10438, -10439, -10440, -10441, -5897, -9044, -3694, -2410, -10442, -10443, -7441, -10444 + ], + [1, 3, 5465], + [0, 0, 5466, 5467, 6], + [0, -932, -1111, -10445, -1572], + [0, -775, -3589, -5387, -10366, -10384, -10446, -7489, -10387, -10447, -10448, -10449], + [1, 3, 5469], + [0, 5470, 0, 5471, 4], + [0, -1640, -2536, -812, -10450, -1801], + [0, -5817, -5937, -5940], + [1, 3, 5473], + [0, 5474, 5475, 5476, 4], + [ + 0, -459, -736, -737, -6920, -10451, -7412, -907, -929, -1072, -10452, -1335, -1504, -1641, -1800, -1840, -2255, + -2401, -2453 + ], + [0, -652, -10453, -2226, -2250, -2293], + [0, -3578, -3994, -1334, -9668, -3161, -5401, -6854], + [1, 3, 5478], + [0, 5479, 5480, 5481, 5], + [0, -10454, -3734, -5586, -10455, -1070, -2400, -2564], + [0, -2832, -2581, -50, -8280, -10456, -3758, -8317, -10457, -4203, -1501, -2293, -2386, -7457, -2392, -2410], + [0, -1501, -10458, -6463, -4055, -10459, -3215, -4053], + [1, 3, 5483], + [0, 5484, 5485, 5486, 11], + [0, -10455, -10460, -2401], + [0, -946, -1344, -1501, -1654, -1788, -2198, -2293, -2541], + [0, -10461, -4055, -10458, -1501, -10459], + [1, 3, 5488], + [0, 0, 5489, 5490, 5], + [0, -708, -1415, -1612, -2250], + [0, -1501, -5401, -10462], + [1, 3, 5492], + [0, 5493, 5494, 5495, 6], + [0, -651, -668, -10463, -1800, -10464], + [0, -619, -652, -946, -1501, -10465, -10466, -2210, -2293, -2541], + [0, -1501, -5401, -3444, -1573], + [1, 3, 5497], + [0, 5498, 5499, 5500, 4], + [0, -812, -1504], + [0, -932, -943, -968, -974, -1405, -1501, -1508, -1654, -2198, -2293], + [0, -1501, -5401, -10467, -10468], + [1, 3, 5502], + [0, 5503, 5504, 5505, 10], + [0, -812, -1335, -1504, -1851], + [0, -1501, -1788, -668, -1344, -1654, -932, -1053, -2293, -10469, -2094, -1534, -86, -1448, -2099, -978, -3307], + [0, -1501, -5401, -10470, -3122], + [1, 3, 5507], + [0, 5508, 5509, 5510, 11], + [0, -812, -10471], + [0, -932, -943, -958, -966, -968, -974, -1405, -1501, -1654, -2293], + [0, -1501, -5401, -6656, -5142, -10472], + [1, 3, 5512], + [0, 5513, 5514, 5515, 4], + [0, -1717, -1974, -10473, -2071, -2550, -1548, -2286, -1004, -617, -10474], + [0, -664, -510, -1654, -2210, -2198, -2293, -710], + [0, -5418, -1986, -8615, -2071], + [1, 3, 5517], + [0, 5518, 5519, 5520, 4], + [ + 0, -10475, -834, -932, -10476, -10477, -986, -10478, -1276, -1309, -1458, -1459, -1650, -2172, -2231, -2234, + -2297, -10479 + ], + [0, -707, -10480, -963, -10481, -2125, -2177], + [0, -4004], + [1, 3, 5522], + [0, 5523, 5524, 5525, 5], + [0, -5895], + [0, -519, -2177, -10482, -2384, -2541], + [0, -10483, -9318, -1764, -7861, -5897, -10484, -10485, -3551], + [1, 3, 5527], + [0, 0, 5528, 5529, 4], + [0, -1464, -10486, -589, -10487, -10488, -1414, -1446, -1548, -1627, -1963, -10489, -2111, -10490, -2424], + [0, -9826, -5112, -6187, -6188, -2444], + [1, 3, 5531], + [0, 0, 5532, 5533, 9], + [ + 0, -2247, -1344, -1471, -1654, -2210, -932, -10491, -2127, -10492, -10493, -2416, -1482, -1489, -1534, -10494, + -10495, -10496, -1480, -4062, -1478, -10497, -1475, -1487, -1479, -1486, -10498, -10499 + ], + [0, -10500, -6917], + [1, 3, 5535], + [0, 0, 5536, 5537, 10], + [0, -589, -1023], + [0, -1519, -10501, -7210, -10502, -2265, -10503], + [1, 3, 5539], + [0, 0, 5540, 5541, 6], + [0, -8511], + [0, -7210, -10504, -5538, -3276], + [1, 3, 5543], + [0, 5544, 0, 5545, 8], + [ + 0, -1787, -1371, -2323, -1866, -2247, -2446, -668, -999, -1392, -1826, -2218, -4701, -2550, -10505, -815, -9809, + -1831, -2125, -2177, -914, -1442, -1827, -2346, -10506, -1077, -1098, -1376, -1591, -10507, -5917, -10508, -715, + -1399, -1418, -1645, -10509, -293, -1100, -1686, -2654, -2410, -10510, -755, -1108, -10511, -10512, -2202, + -1363, -10513, -1769, -10514, -2115, -10515, -2267, -2551, -10516, -305, -8500, -4236, -10517, -10518, -10519, + -1767, -280, -10520, -10521, -2530, -283, -1770, -4283, -4716, -2450, -10522, -10523, -10524, -10525, -10526 + ], + [0, -1520, -10440, -10527], + [1, 3, 5547], + [0, 5548, 5549, 5550, 6], + [0, -10528, -8501, -2387], + [ + 0, -350, -4062, -351, -427, -428, -10529, -10530, -664, -652, -668, -755, -767, -932, -1077, -6720, -1107, + -1111, -1127, -1132, -1134, -1137, -1152, -1161, -1162, -10531, -1418, -10532, -10533, -9237, -1646, -1654, + -10534, -1771, -1856, -10535, -1874, -1961, -10536, -2114, -2127, -2140, -2142, -2177, -2200, -2351, -2379, + -2410, -5252 + ], + [ + 0, -10537, -10538, -10539, -775, -10540, -10541, -10542, -10543, -10544, -1521, -10545, -10546, -4730, -10547, + -3215, -3277, -10548, -10549, -5553, -3770, -3271, -10550, -10551 + ], + [1, 3, 5552], + [0, 0, 5553, 5554, 4], + [ + 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -533, -767, -774, -824, -825, -932, -940, -6929, -958, -959, + -965, -967, -978, -1110, -1344, -1415, -1521, -10552, -1534, -1623, -1771, -1942, -2251, -2269, -2411, -2501 + ], + [0, -2501, -5932, -1521, -10546, -10545, -775, -3277], + [1, 3, 5556], + [0, 5557, 5558, 229, 4], + [0, -10553, -10554, -10555], + [0, -1788, -2322, -2446, -468, -571, -1274, -2250, -2410, -3037, -40, -10556, -10557], + [1, 3, 5560], + [0, 5561, 5562, 5563, 8], + [0, -10559, -6127, -10560], + [ + 0, -10561, -1788, -1107, -2322, -2331, -1032, -2125, -5420, -891, -1274, -1733, -2250, -767, -10562, -10563, + -6128, -10564, -10565, -829, -10566, -10567 + ], + [0, -10558, -1523], + [1, 3, 5565], + [0, 5566, 5567, 229, 11], + [0, -9508, -10568, -10569, -10570, -10571, -10572], + [ + 0, -1788, -2322, -465, -2210, -468, -1032, -5420, -10573, -10574, -1274, -2250, -10562, -633, -2151, -10575, + -10576, -725, -10577, -10578, -829, -10556, -10567 + ], + [1, 3, 5569], + [0, 0, 5570, 5571, 11], + [0, -519, -10579, -10580, -10581, -10582, -10583, -10584, -1703, -10585, -2354, -2541], + [ + 0, -1526, -10582, -10586, -10587, -2265, -7377, -834, -5922, -1087, -6547, -4310, -7378, -10588, -10589, -5554, + -5572, -10590 + ], + [1, 3, 5573], + [0, 5574, 29, 5575, 10], + [0, -280, -4280, -10591, -834, -1645, -1767, -1831, -2323], + [0, -1764, -1776, -4303, -687, -834], + [1, 3, 5577], + [0, 5578, 5579, 5580, 5], + [0, -280, -4283, -283, -680, -1767, -1831, -1957, -10592, -2059, -2177, -2202, -4297], + [0, -4298, -4299, -4300, -4286, -668, -7755, -10593, -2319], + [0, -1764, -1776, -4303, -687, -4304, -1528], + [1, 3, 5582], + [0, 5583, 29, 5584, 5], + [0, -280], + [0, -1764, -1776, -4303, -687, -5889, -10594, -10595], + [1, 3, 5586], + [0, 0, 5587, 5588, 4], + [ + 0, -21, -23, -3367, -3350, -40, -43, -4062, -3266, -539, -664, -757, -10596, -767, -10597, -1405, -1415, -10598, + -10599, -1646, -1654, -1771, -1788, -10600, -2104, -2125, -2127, -2387 + ], + [0, -9917, -9918, -6240, -3962, -3162, -10601], + [1, 3, 5590], + [0, 5591, 5592, 5593, 6], + [0, -1015, -1048, -10602, -10603, -1396, -2068, -2114], + [0, -711, -932, -937, -940, -966, -1001, -1654, -1788, -2210], + [0, -4376], + [1, 3, 5595], + [0, 0, 5596, 5597, 4], + [0, -2581, -3136, -3037, -3806, -755, -1415, -2410, -2447], + [0, -755, -727, -3870, -7282], + [1, 3, 5599], + [0, 0, 0, 5600, 6], + [0, -10604, -7920, -10605, -3264, -1437, -10606, -10607, -2006, -2398, -2435], + [1, 3, 5602], + [0, 5603, 5604, 5605, 8], + [0, -719, -1536, -1639, -3610, -3535, -2548], + [ + 0, -8280, -50, -86, -3307, -190, -3664, -6593, -10608, -767, -932, -940, -965, -967, -4814, -1344, -1661, -1942, + -2177, -2410, -2469 + ], + [0, -7148, -5889, -10609, -932, -1942, -2281, -707, -8169, -7440, -3276, -5874], + [1, 3, 5607], + [0, 5608, 5609, 5610, 4], + [0, -10610, -10611, -1398, -1399, -10612, -10613, -10614, -1826, -2153], + [0, -708, -826, -9464, -1534, -1574, -1788, -1939, -2239, -5747], + [0, -687, -4107, -4108, -4109, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, -4116, -4117], + [1, 3, 5612], + [0, 5613, 5614, 158, 6], + [0, -696, -713, -996, -1575, -2124, -2528], + [0, -5745, -2153, -5747], + [1, 3, 5616], + [0, 5617, 5618, 7, 8], + [0, -10615, -10616, -3297], + [0, -10617, -10618, -4686, -10619, -4690, -2387], + [1, 3, 5620], + [0, 5621, 5622, 5623, 5], + [0, -1548, -1646, -632, -10620, -731], + [0, -1654, -2210, -932, -1663, -1405], + [0, -475, -6205, -5142, -3844, -3113], + [1, 3, 5625], + [0, 5626, 5627, 5628, 6], + [0, -1812, -754, -2178, -714, -1676, -729, -679, -10621, -2186, -994, -1792, -10622, -9502], + [0, -1654, -932, -1452, -2293], + [0, -3577, -3113, -3673, -3844, -1334, -687], + [1, 3, 5630], + [0, 5631, 5632, 7, 4], + [0, -679, -10623, -6696, -2531], + [0, -711, -1654, -2198, -2210], + [1, 3, 5634], + [0, 5635, 5636, 5637, 4], + [0, -6838, -1107, -10532, -1442, -9641, -1542, -1548], + [0, -1127, -1144, -1149, -9650, -9280, -1158, -1972, -2210], + [0, -9219, -2548, -6838, -1127, -727], + [1, 3, 5639], + [0, 5640, 5641, 5642, 4], + [0, -506, -1686, -1872, -10624], + [0, -1127, -1132, -2889, -2541], + [0, -3015, -1107, -1127, -6994, -5572, -10625, -5574, -4792, -8906], + [1, 3, 5644], + [0, 0, 5645, 7, 6], + [0, -756, -932, -966, -1415, -1942, -2251], + [1, 3, 5647], + [0, 5648, 5649, 5650, 4], + [ + 0, -10293, -1586, -10626, -10627, -10628, -10629, -10630, -10631, -2783, -10632, -10633, -10634, -10635, -10636, + -10637, -10638, -10639 + ], + [0, -1729, -2337], + [ + 0, -7646, -3844, -3578, -3673, -3577, -3113, -754, -1640, -3691, -4215, -3690, -1971, -1586, -3445, -3100, + -10640, -1339, -1334, -5735, -1342 + ], + [1, 3, 5652], + [0, 5653, 5654, 5655, 4], + [0, -10347], + [ + 0, -527, -528, -534, -535, -6079, -559, -10641, -571, -10642, -647, -754, -940, -1127, -5974, -1130, -1136, + -1137, -1148, -1149, -10643, -1152, -1655, -10644, -7845, -1161, -10645, -7848, -1344, -1534, -1542, -1654, + -1942, -10646, -5508, -2410, -2416, -2501, -2505 + ], + [0, -10647, -10648, -6005, -10649], + [1, 3, 5657], + [0, 5658, 27, 7, 11], + [0, -523, -812, -10650, -2550], + [1, 3, 5660], + [0, 5661, 5662, 5663, 4], + [0, -755, -812, -1026, -10651, -2550], + [ + 0, -528, -6048, -554, -558, -559, -849, -869, -932, -943, -958, -959, -966, -968, -972, -974, -1415, -1806, + -10652, -2177 + ], + [0, -10653, -10654, -5880, -10655, -7148, -2552, -1764, -8170, -7107, -1838], + [1, 3, 5665], + [0, 0, 0, 5666, 4], + [0, -3209, -10656, -2444], + [1, 3, 5668], + [0, 0, 0, 5669, 4], + [0, -3184, -3209, -10656, -2444], + [1, 3, 5671], + [0, 0, 0, 5672, 10], + [0, -10657, -7370], + [1, 3, 5674], + [0, 0, 0, 5675, 4], + [0, -10657, -656], + [1, 3, 5677], + [0, 0, 0, 5678, 5], + [0, -10657, -10658], + [1, 3, 5680], + [0, 0, 0, 5681, 4], + [0, -10657, -811], + [1, 3, 5683], + [0, 0, 0, 5684, 5], + [0, -10657, -10659], + [1, 3, 5686], + [0, 0, 0, 5687, 5], + [0, -10657, -5841], + [1, 3, 5689], + [0, 0, 0, 5690, 5], + [0, -10657, -6283], + [1, 3, 5692], + [0, 0, 0, 5693, 9], + [0, -10657, -9052], + [1, 3, 5695], + [0, 0, 0, 5696, 9], + [0, -10657, -10660], + [1, 3, 5698], + [0, 0, 0, 5699, 4], + [0, -10657, -10661], + [1, 3, 5701], + [0, 0, 0, 5702, 4], + [0, -10657, -10662], + [1, 3, 5704], + [0, 0, 0, 5705, 4], + [0, -1548, -10657, -10656, -2444], + [1, 3, 5707], + [0, 0, 0, 5708, 5], + [0, -10657, -10663], + [1, 3, 5710], + [0, 0, 0, 5711, 4], + [0, -10657, -10664], + [1, 3, 5713], + [0, 0, 0, 5714, 4], + [0, -10657, -6917], + [1, 3, 5716], + [0, 0, 0, 5717, 10], + [0, -10657, -5913], + [1, 3, 5719], + [0, 0, 0, 5720, 4], + [0, -10657, -1631], + [1, 3, 5722], + [0, 0, 0, 5723, 4], + [0, -10657, -10665], + [1, 3, 5725], + [0, 0, 0, 5726, 5], + [0, -10657, -10666], + [1, 3, 5728], + [0, 0, 0, 5729, 5], + [0, -10657, -8127], + [1, 3, 5731], + [0, 5732, 0, 5733, 4], + [0, -9496, -9497], + [0, -10657, -3110], + [1, 3, 5735], + [0, 0, 0, 5736, 5], + [0, -10657, -7329], + [1, 3, 5738], + [0, 0, 0, 5739, 4], + [0, -10657, -10667], + [1, 3, 5741], + [0, 5742, 5743, 5744, 5], + [0, -6703, -8038, -922, -7219, -10668, -10669, -10670], + [0, -1788, -2322, -1344, -10671, -932, -4896, -10672, -1534, -6707, -6709, -6706, -6708], + [0, -1573, -3444, -812, -648, -2520], + [1, 3, 5746], + [0, 5747, 5748, 5749, 5], + [0, -8416, -6861], + [0, -2541, -519, -2384, -2269], + [0, -4112, -687, -7095, -3958, -8132, -8618, -8619, -8620, -1040, -8621, -7084, -1573, -5545, -3974, -3973], + [1, 3, 5751], + [0, 5752, 5753, 5754, 4], + [0, -480, -690, -2219, -2269, -2528], + [0, -3037, -2267, -10673, -2384, -6786, -2541], + [ + 0, -1573, -3444, -5545, -687, -3974, -4110, -4000, -5550, -10674, -10675, -10676, -8991, -3973, -1959, -10677, + -5176 + ], + [1, 3, 5756], + [0, 5757, 5758, 5759, 5], + [0, -10678, -812, -7142, -2124, -10679], + [ + 0, -86, -3307, -10680, -5902, -9818, -932, -934, -940, -8246, -958, -967, -1077, -1344, -1392, -1788, -1942, + -1972, -2319, -2410 + ], + [0, -5545, -1573, -6459, -3966], + [1, 3, 5761], + [0, 0, 5762, 5763, 5], + [ + 0, -9569, -3037, -1127, -1132, -1134, -1136, -1137, -10681, -1144, -1148, -1149, -10682, -10683, -1412, -2379, + -2410 + ], + [0, -1573, -3444, -5545, -4865], + [1, 3, 5765], + [0, 0, 5766, 5767, 10], + [0, -6132, -1942, -2410], + [0, -10684, -1578, -10685], + [1, 3, 5769], + [0, 5770, 5771, 5772, 6], + [ + 0, -888, -828, -10686, -510, -812, -10330, -1004, -10687, -583, -615, -1369, -1752, -617, -2185, -10688, -10689, + -10690, -10691, -10692, -2425, -10693, -10694, -10695, -10696 + ], + [ + 0, -1788, -664, -1127, -1471, -1654, -2210, -2518, -932, -756, -1132, -10697, -2293, -633, -838, -2211, -1155, + -1482, -1152, -744, -10698, -10699, -1010, -1130, -1156, -1472, -10700, -1149, -10701, -1148, -10354, -10702, + -1475, -10355, -10703, -1479, -7707 + ], + [ + 0, -3578, -5728, -3691, -3690, -1004, -2118, -1501, -6120, -7107, -5378, -1691, -7684, -6857, -1671, -10704, + -1682, -10425, -6321, -2227, -10705, -3161, -3162, -10706 + ], + [1, 3, 5774], + [0, 5775, 5776, 196, 5], + [0, -3187], + [0, -633, -913, -2319], + [1, 3, 5778], + [0, 5779, 5780, 5781, 9], + [0, -10707], + [ + 0, -2392, -1344, -2331, -932, -1548, -825, -2379, -2410, -3037, -3044, -3617, -86, -10708, -10709, -5918, + -10710, -3307 + ], + [0, -7685, -7773, -891, -10711, -10712, -1055, -4182, -8427, -10713, -10714, -4865, -985], + [1, 3, 5783], + [0, 0, 5784, 5785, 5], + [0, -3037, -589, -928, -1610, -1650, -1942, -2319, -2386, -2402], + [0, -10715, -10413, -3324], + [1, 3, 5787], + [0, 0, 5788, 5789, 10], + [0, -3561, -407, -3667, -2127, -2132, -2410, -2466, -2469, -10716, -10717, -10718], + [0, -10719, -10720, -10721, -10722, -10723, -10724, -10725, -10726, -10727], + [1, 3, 5791], + [0, 5792, 5793, 5794, 9], + [0, -510, -596, -10728, -1696], + [0, -756, -1405, -1650, -1654, -1657, -2198], + [ + 0, -6527, -640, -10729, -1958, -10095, -7069, -7068, -9235, -8640, -7715, -8642, -7066, -10730, -10731, -7334, + -10732, -10733, -6337, -10502, -10734, -10735, -10736, -4162, -10737, -10738, -10739, -10740, -10741 + ], + [1, 3, 5796], + [0, 5797, 5798, 5799, 5], + [0, -10742, -10743, -6789, -10508, -717, -718, -10744, -10293, -1501, -10745, -1805, -1982, -6791, -7576], + [0, -1448, -10639, -1729, -10746, -2337], + [0, -1586, -3844, -1334, -5735, -1342, -3445, -1339, -7646, -3578], + [1, 3, 5801], + [0, 5802, 5803, 5804, 8], + [ + 0, -668, -715, -812, -910, -5672, -10415, -10747, -1040, -1075, -1286, -10748, -1292, -1380, -1442, -10521, + -10749, -1650, -1816, -1951, -5353, -4242, -2098, -2101, -10750, -3669, -2359, -7699, -2427, -7669, -2429, + -5356, -2446, -5358, -2518, -2530, -10751, -2550 + ], + [ + 0, -10752, -3198, -5334, -3660, -10753, -10754, -3037, -3628, -4231, -3738, -10755, -9284, -3041, -767, -8364, + -2218, -2269, -2410, -2447 + ], + [0, -1599, -10756, -10757, -3634, -856], + [1, 3, 5806], + [0, 5807, 5808, 5809, 8], + [0, -3115], + [0, -190, -351, -3561, -589, -8349, -740, -932, -1942, -2910, -2127, -2232, -2234, -2469], + [0, -2265, -10758, -6915, -7651, -6431], + [1, 3, 5811], + [0, 5812, 5813, 5814, 6], + [0, -2531, -523, -1449, -2387, -997, -1548, -1388, -3679, -7967], + [0, -932, -2402, -4204, -2410, -3037, -1771, -4647, -3044, -428, -4659, -10759, -427], + [ + 0, -10760, -8911, -2410, -840, -4601, -9111, -3214, -10761, -10762, -10763, -10764, -10765, -9840, -10766, + -10767, -7085, -10768, -10769, -856, -10770, -10771, -1589 + ], + [1, 3, 5816], + [0, 5817, 5818, 5819, 4], + [0, -668, -1015, -1111, -2462, -1686, -1849, -2271], + [0, -1127, -1654, -2198, -1132], + [0, -622, -1168, -7419, -9219], + [1, 3, 5821], + [0, 0, 5822, 5823, 4], + [0, -4035, -3037, -519, -1119, -10772, -2331, -2384, -2541], + [ + 0, -8988, -1650, -9218, -7411, -7410, -7421, -7420, -1847, -8807, -6370, -10773, -10774, -7371, -8990, -1076, + -7422, -7000 + ], + [1, 3, 5825], + [0, 0, 0, 5826, 5], + [0, -9218], + [1, 3, 5828], + [0, 5829, 5830, 5831, 4], + [0, -4733, -503, -578, -615, -10775, -1468, -10776, -1850, -2424, -2538], + [0, -3037, -633, -10777, -10778, -932, -10779, -1654, -2330, -2410, -2416], + [0, -8703, -3264, -10780, -10781, -1599, -3437], + [1, 3, 5833], + [0, 5834, 5835, 5836, 6], + [ + 0, -3698, -6486, -10782, -10783, -10784, -10785, -10786, -10787, -10788, -10789, -469, -583, -668, -3910, -3911, + -693, -9229, -9759, -1442, -1465, -1540, -1658, -1692, -1729, -1753, -1851, -1857, -1878, -2080, -2153, -2193, + -2223, -2245, -2409, -10790, -2435 + ], + [ + 0, -10791, -10792, -4353, -10793, -10794, -2980, -8850, -10795, -3617, -3660, -4201, -5363, -4203, -427, -428, + -932, -940, -967, -1076, -1415, -1847, -1942, -2234, -2293, -2375, -2376, -2383, -2410 + ], + [ + 0, -3445, -3690, -3691, -3967, -2410, -7685, -10796, -10797, -7643, -10798, -10799, -10800, -10801, -10802, + -3742, -10425, -1691, -2409, -5406, -6120, -3173, -10803, -6005, -5940, -10804, -10805, -10806, -10807, -10808, + -10809, -6113, -10810, -1594 + ], + [1, 3, 5838], + [0, 0, 5839, 5840, 5], + [ + 0, -3244, -2658, -250, -252, -254, -10811, -10812, -3044, -3037, -3040, -3052, -427, -428, -703, -784, -932, + -10813, -970, -1548, -2634, -1889, -1891, -1906, -10814, -10815, -1942, -2006, -2019, -2193, -4245, -2592, + -2391, -2410 + ], + [ + 0, -3160, -10816, -10817, -3824, -10818, -10819, -2006, -10820, -2410, -3214, -3577, -3100, -3477, -3160, + -10821, -4015, -7566, -10822, -3095 + ], + [1, 3, 5842], + [0, 0, 5843, 7, 5], + [0, -8392, -8394, -8393, -994, -8388], + [1, 3, 5845], + [0, 0, 5846, 5847, 6], + [ + 0, -3037, -427, -428, -3664, -518, -652, -932, -935, -948, -1449, -10823, -2162, -2281, -3436, -2410, -2466, + -6859, -2469 + ], + [0, -10824, -3004, -3862, -10825, -5553], + [1, 3, 5849], + [0, 5850, 71, 5851, 4], + [0, -1758], + [0, -1599, -10826, -3272], + [1, 3, 5853], + [0, 5854, 5855, 5856, 5], + [0, -503, -3223, -10827, -10828, -10829, -10830], + [ + 0, -3326, -350, -351, -3266, -5514, -589, -652, -664, -932, -943, -1004, -1103, -1304, -1429, -3245, -1602, + -3650, -1603, -3427, -10831, -10832, -10833, -10834, -3651, -3668, -1654, -10835, -1708, -2127, -2195, -2293 + ], + [0, -1599, -3215, -8630, -1600, -10836], + [1, 3, 5858], + [0, 0, 5859, 5860, 8], + [0, -3234, -519, -3425, -1637, -2234, -2250], + [0, -1599, -1600, -10836, -5147, -10837], + [1, 3, 5862], + [0, 0, 230, 5863, 5], + [0, -10836, -1600, -1599], + [1, 3, 5865], + [0, 0, 230, 5866, 8], + [0, -10836, -1600, -1599, -10838, -10839, -10840, -10841], + [1, 3, 5868], + [0, 5869, 5870, 5871, 4], + [0, -719, -883, -1015, -1304, -1860, -2102, -10842, -2347, -2359], + [0, -756, -1405, -10843, -2250, -2322], + [0, -1599, -6528, -5845, -3110], + [1, 3, 5873], + [0, 0, 5874, 5875, 4], + [0, -3037, -652, -668, -1942, -2094, -2100, -2269, -2399, -2410, -2541], + [0, -9846, -1599, -10844, -4002, -6724, -5554], + [1, 3, 5877], + [0, 0, 5878, 5879, 11], + [0, -7057, -3037, -3040, -3052, -10845, -928, -2006, -2019, -2034, -10106, -10846, -2410, -2476], + [0, -1599, -10847, -2006, -1940, -4146, -2476, -5173, -3944, -9608, -10848, -2034, -3264], + [1, 3, 5881], + [0, 5882, 88, 5883, 4], + [0, -725, -10849, -1125, -10850, -10851, -10852, -1646, -10853, -9323, -2102, -10854, -9403], + [ + 0, -10837, -8630, -3671, -10855, -856, -10856, -10857, -9409, -10858, -1599, -3437, -3862, -4328, -4846, -2102, + -10859, -7650, -4065, -4002, -10860, -10861, -10862, -6234 + ], + [1, 3, 5885], + [0, 5886, 5887, 5888, 5], + [0, -1638, -10863, -10864, -10865, -10866, -10867, -10868, -10869, -2267], + [ + 0, -190, -3748, -469, -519, -652, -2736, -932, -960, -965, -971, -978, -10870, -1111, -1442, -8274, -1461, + -1600, -10831, -10834, -3651, -10871, -8345, -1771, -2335, -2362, -2410, -2501, -2503 + ], + [0, -1599, -7148, -3437, -10872, -1608], + [1, 3, 5890], + [0, 5891, 5892, 5893, 10], + [0, -719, -822, -1353, -1442, -1461, -10873, -1608, -1600, -1645, -10874, -10430, -2654], + [0, -519, -8345, -2541], + [0, -1599, -1608, -687, -5732], + [1, 3, 5895], + [0, 0, 5896, 5897, 4], + [ + 0, -2832, -10875, -10876, -7040, -3471, -3472, -7041, -7042, -674, -8630, -767, -5382, -928, -10877, -932, + -1304, -1600, -10878, -10879, -10880, -2125, -2174, -9764, -2387, -2410 + ], + [0, -1599, -10881, -3264], + [1, 3, 5899], + [0, 5900, 5901, 163, 4], + [ + 0, -4321, -4322, -3649, -4323, -4309, -4320, -4308, -1395, -4313, -4318, -4314, -4315, -4311, -4316, -4319, + -1550, -1554, -4317, -1600, -1603, -4324, -4325, -3430, -4312, -2161, -4310 + ], + [0, -633, -674, -1107, -4327, -1654, -4326, -2250, -2251], + [1, 3, 5903], + [0, 5904, 0, 7, 4], + [0, -891, -10882], + [1, 3, 5906], + [0, 5907, 0, 160, 10], + [0, -567, -10883, -1493, -1566, -1571, -1967, -10884, -2055, -2069, -10885, -2489], + [1, 3, 5909], + [0, 5910, 5911, 5912, 8], + [0, -44, -10886, -10300, -10887, -5898, -10888, -2172, -6751, -10889], + [ + 0, -23, -5585, -3391, -38, -40, -43, -8380, -3621, -427, -428, -507, -534, -652, -708, -824, -10890, -920, -932, + -940, -943, -958, -964, -965, -967, -968, -1002, -10891, -1022, -1107, -1168, -1174, -1276, -10892, -1471, + -1479, -1482, -1483, -1491, -3079, -1492, -1650, -1654, -1656, -10893, -10894, -10895, -10896, -10897, -10898, + -1942, -1958, -2210, -10899, -2354, -2379, -2410, -2501, -10900 + ], + [0, -10684, -10901, -7163, -10902, -10903, -3215, -8130, -6240, -6245, -10904, -10905, -7521, -5119], + [1, 3, 5914], + [0, 5915, 5916, 7, 10], + [0, -6130, -10906, -5852], + [0, -1654, -2501], + [1, 3, 5918], + [0, 0, 5919, 5920, 9], + [0, -1654, -2250], + [0, -1616, -10907, -10908], + [1, 3, 5922], + [0, 5923, 5924, 5925, 4], + [0, -4251, -4231, -10909, -9596, -5348, -1638, -10910, -10911, -10912, -10913, -10869, -10914], + [0, -3037, -652, -10915, -928, -7324, -2586, -1290, -1619, -10916, -1942, -2094, -2100, -2334, -2399, -2410, -2541], + [0, -3272, -1599, -10881, -10917, -10918, -1838, -4132, -10919, -9590, -3590, -2444], + [1, 3, 5927], + [0, 5928, 5929, 5930, 5], + [0, -5334, -4251, -9581, -9596, -10920, -10921, -9583, -2429, -5358], + [0, -3037, -9586, -652, -1290, -1294, -1618, -10922, -10923, -1942, -2094, -2100, -2399, -2410, -2541], + [0, -9590, -10918, -10917, -9589, -9588, -2444, -3590, -1599, -3264], + [1, 3, 5932], + [0, 0, 5933, 5934, 6], + [0, -469, -4712], + [0, -6582, -10924, -10925, -775], + [1, 3, 5936], + [0, 5937, 0, 5938, 5], + [0, -10926, -10927], + [0, -10928, -3324, -3323, -9844, -10929, -10930, -10931, -10932, -1622, -10933, -7684], + [1, 3, 5940], + [0, 5941, 5942, 5943, 4], + [0, -10934, -10935, -10936, -10937, -10938, -10939, -10940, -10941, -10942, -10943, -10944, -10945, -10946, -2387], + [ + 0, -3136, -6325, -3037, -496, -507, -640, -1331, -1344, -10947, -1415, -1848, -1942, -1958, -2062, -2125, -2325, + -2375, -2376, -2379, -2388, -10948, -2410, -2435, -2444, -2501, -2503, -2505 + ], + [ + 0, -1076, -7422, -10949, -1626, -1623, -6656, -8801, -10467, -10412, -10950, -9614, -4004, -3634, -4215, -10951, + -10952, -10953, -10954, -10955, -10956, -10957, -10958 + ], + [1, 3, 5945], + [0, 0, 5946, 5947, 5], + [ + 0, -5295, -3268, -3136, -10959, -8216, -3037, -427, -428, -589, -767, -932, -940, -959, -967, -1002, -10960, + -1415, -1559, -1565, -1605, -10961, -5969, -9642, -10962, -1816, -1942, -2125, -2127, -2138, -2140, -2141, + -2214, -2375, -2379, -2387, -2410 + ], + [0, -5913, -10963, -3324, -6187], + [1, 3, 5949], + [0, 0, 5950, 5951, 5], + [0, -664, -1168, -2210, -10964, -1231, -2211, -1224, -1220, -1453], + [0, -3324, -10965, -5493, -6005], + [1, 3, 5953], + [0, 5954, 5955, 5956, 8], + [0, -10966, -2062], + [0, -599, -6774, -756, -932, -1405, -1654, -2198], + [0, -1076, -10412], + [1, 3, 5958], + [0, 0, 5959, 5960, 5], + [0, -1003, -1654, -1127, -1132, -1156, -1144, -1980], + [0, -10412, -4004, -5827, -3674, -8027, -640], + [1, 3, 5962], + [0, 0, 5963, 7, 4], + [0, -1654, -2198, -1733], + [1, 3, 5965], + [0, 68, 15, 16, 6], + [1, 3, 5967], + [0, 0, 5968, 5969, 5], + [ + 0, -350, -4062, -351, -5918, -5686, -519, -10967, -722, -813, -10968, -10969, -999, -1111, -1366, -10970, -6904, + -3609, -2060, -5120, -2127, -2132, -2134, -4621, -10971, -2384, -2400, -2410, -2541, -2551 + ], + [ + 0, -687, -8425, -2444, -3590, -4187, -4378, -3957, -6722, -1630, -10972, -10973, -3215, -5829, -5272, -3962, + -7095, -4000 + ], + [1, 3, 5971], + [0, 0, 5972, 5973, 4], + [0, -3035, -3621, -3037, -664, -726, -1654, -2410, -2501, -2503], + [0, -1631, -7371, -1015, -702, -7208, -4865], + [1, 3, 5975], + [0, 0, 5976, 7, 4], + [0, -10974, -1405], + [1, 3, 5978], + [0, 5979, 5980, 5981, 4], + [0, -679, -719, -812, -1125, -6796, -10975, -1639, -10976, -10977], + [ + 0, -3244, -190, -10978, -4715, -3198, -4036, -3037, -10979, -652, -932, -958, -965, -1110, -1654, -1942, -2091, + -2362, -2410 + ], + [0, -5142, -5372, -6656, -9204, -3258, -3260, -3262, -1599, -3259, -1633, -2548], + [1, 3, 5983], + [0, 5984, 0, 7, 10], + [0, -10980, -5676, -1343, -10981, -10982, -2125, -2177, -2323, -2359], + [1, 3, 5986], + [0, 5987, 5988, 7, 8], + [0, -2453, -812, -1636, -1840], + [0, -1654, -932, -1405, -2293, -966, -958, -968, -943, -963, -974], + [1, 3, 5990], + [0, 0, 5991, 5992, 5], + [0, -1654, -1405], + [0, -1334, -1636], + [1, 3, 5994], + [0, 5995, 5996, 5997, 11], + [ + 0, -23, -26, -10983, -3077, -3203, -3408, -3357, -40, -6056, -41, -4066, -3326, -350, -4062, -351, -10984, + -10985, -518, -3766, -10986, -10987, -9459, -644, -656, -930, -1044, -1273, -1496, -1566, -1889, -1948, -2127, + -5994, -4753, -2140, -2142, -2144, -5037, -2334, -10988, -2387, -2410 + ], + [ + 0, -21, -5870, -10989, -8280, -50, -533, -767, -10990, -932, -10991, -940, -967, -985, -1077, -1344, -1415, + -1534, -10992, -1942, -2082, -2125, -2194, -2269 + ], + [0, -4161, -2127, -10993], + [1, 3, 5999], + [0, 6000, 0, 6001, 4], + [ + 0, -3198, -812, -10909, -9596, -10863, -10994, -7666, -10995, -10996, -10910, -2785, -10912, -10997, -10920, + -10998, -10913, -10869 + ], + [ + 0, -8630, -3116, -4329, -3264, -7184, -1599, -10881, -3437, -2427, -1838, -3215, -3862, -1958, -2093, -7650, + -4065, -8451, -3579 + ], + [1, 3, 6003], + [0, 6004, 6005, 6006, 5], + [0, -9968, -1864], + [0, -1654, -1645, -10999, -1202], + [ + 0, -6836, -11000, -11001, -7727, -11002, -8130, -9969, -11003, -6656, -6999, -7724, -5573, -1107, -9095, -9096, + -9970, -11004, -11005, -11006, -5572, -5912, -3581, -10590, -1639, -1645, -1686, -11007, -11008, -1847, -5574, + -5064, -11009, -5569, -5570, -8129, -5550, -11010, -9087 + ], + [1, 3, 6008], + [0, 0, 6009, 6010, 4], + [0, -11011, -3713, -3037, -427, -428, -668, -11012, -1641, -1942, -11013, -11014, -2410], + [0, -5195, -6656, -1640, -11015, -11016, -2444], + [1, 3, 6012], + [0, 6013, 129, 6014, 10], + [0, -11015], + [0, -1640, -3694], + [1, 3, 6016], + [0, 119, 120, 6017, 4], + [ + 0, -11017, -11018, -11019, -11020, -11021, -11022, -11023, -11024, -11025, -11018, -11026, -11027, -11028, + -11029, -11030, -11031, -11032, -11033, -11034, -11035, -11036, -9234, -11037, -11038, -11039, -11040, -11041, + -11042, -11043, -11044, -11045, -11046, -7530, -11047, -11048, -7561, -7562, -3214, -7484, -7485, -3756, -2410, + -7486, -4165, -3018, -11049, -7283, -6582, -7534, -7535, -7536, -7537, -7538, -7539, -7540, -7541, -7542, -7543, + -7544, -7545, -8807, -6599, -5756, -11050, -11051, -7503, -7371, -7546, -7547, -7548, -6948, -7549, -7550, + -7551, -7552, -7553, -7554, -7555, -7556, -7557, -2444, -7558, -7559, -5063, -7560, -11052, -6187, -7563, -856, + -7275 + ], + [1, 3, 6019], + [0, 6020, 6021, 6022, 11], + [0, -2168, -2321], + [ + 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -3037, -620, -767, -774, -778, -824, -825, -920, -932, -940, + -6929, -958, -959, -960, -965, -967, -978, -1041, -1110, -1344, -1415, -1419, -1449, -1534, -1623, -1771, -1942, + -2162, -2163, -2251, -2410, -2411, -2501, -2503, -2505 + ], + [0, -2501, -775, -7347, -6211], + [1, 3, 6024], + [0, 6025, 6026, 6027, 5], + [0, -11053, -367, -683, -11054, -812, -928, -1047, -11055, -3751, -11056, -11057, -2334, -11058, -11059], + [0, -11060, -932, -11061, -11062, -4653, -11063], + [0, -1644, -7173, -3756, -775, -5094, -3264, -6118], + [1, 3, 6029], + [0, 6030, 6031, 7, 11], + [0, -11064], + [0, -2319, -2386, -1650, -2402, -1942, -3037], + [1, 3, 6033], + [0, 0, 6034, 6035, 4], + [0, -515, -1788, -2322, -932, -1777, -1365, -516, -2156, -5834], + [0, -4378, -9568, -3215, -1813], + [1, 3, 6037], + [0, 6038, 6039, 6040, 4], + [0, -719, -1730], + [0, -8477, -1415, -1942, -2375, -2410], + [0, -11065, -11066, -11067], + [1, 3, 6042], + [0, 0, 6043, 6044, 9], + [0, -11068, -3037, -5866, -652, -940, -1942, -2319, -2379, -2402, -2410], + [0, -8988, -7421, -11069, -9218, -11070, -7371, -5269], + [1, 3, 6046], + [0, 6047, 6048, 7, 5], + [0, -461, -1852, -6568, -11071], + [0, -3037, -3664, -672, -932, -944, -3190, -1431, -1942, -6570, -2410, -2423, -2469], + [1, 3, 6050], + [0, 0, 6051, 6052, 4], + [0, -23, -26, -33, -38, -40, -42, -44, -11072, -1059], + [0, -1652, -11073, -5927, -3159, -2006, -3476, -11074, -6106, -11075, -11076, -11077, -11078], + [1, 3, 6054], + [0, 6055, 6056, 6057, 5], + [0, -11079], + [0, -1652, -11079, -11080], + [0, -1652, -11073, -3159, -2006, -3476, -11074], + [1, 3, 6059], + [0, 6060, 6061, 6062, 4], + [ + 0, -1297, -1681, -834, -1107, -812, -2550, -1047, -1442, -679, -1645, -1863, -3730, -1574, -2551, -11081, -7408, + -2297, -11082, -2271, -930, -2182 + ], + [ + 0, -1788, -664, -1498, -1446, -1471, -2210, -11083, -932, -1708, -2093, -2125, -2127, -2177, -1110, -11084, + -2501, -1942, -767, -190, -11085, -2410, -11086, -3037, -1339, -1482, -1600, -2503, -3041, -711, -1607, -1772, + -4655, -27, -11087, -11088, -11089, -11090, -965, -3781, -1609, -11091, -3425, -1603, -3060, -1601, -4062, + -11092, -4066, -1483, -1488, -1475, -350, -11093, -2144, -5995, -2136, -351, -9701, -11094, -11095 + ], + [0, -1654, -4004, -3440, -4873, -2319, -3634, -664, -5855, -519, -1415, -2322, -1412, -1471], + [1, 3, 6064], + [0, 6065, 6066, 6067, 6], + [0, -4377, -1978], + [0, -664, -1654, -10534, -2410], + [0, -1654, -3636, -1978, -11096], + [1, 3, 6069], + [0, 6070, 6071, 6072, 5], + [0, -812, -1616, -1650, -2269, -6597], + [0, -357, -664, -11097, -932, -1654, -2125, -11098, -11099], + [0, -1654, -11100, -6863], + [1, 3, 6074], + [0, 0, 0, 6075, 11], + [0, -1654, -6863, -11101, -4005], + [1, 3, 6077], + [0, 0, 6078, 6079, 5], + [0, -664, -932, -9072, -1654, -2125, -2177], + [0, -4215, -1076, -4004, -8101, -8801, -10412], + [1, 3, 6081], + [0, 6082, 6083, 6084, 8], + [0, -11102, -1083, -11103, -11104, -1285, -1402, -1794], + [ + 0, -2832, -5834, -8084, -11105, -11106, -11107, -11108, -11109, -8088, -11110, -8089, -8939, -8090, -8091, + -8092, -8093, -3037, -11111, -8094, -8096, -516, -5835, -921, -932, -993, -1065, -1283, -1365, -1777, -1788, + -2156, -2322 + ], + [0, -3634, -4215, -7208, -7153, -5846, -11112, -4004, -6693, -11113], + [1, 3, 6086], + [0, 6087, 6088, 231, 4], + [0, -5505, -1759], + [0, -767, -932, -1654], + [1, 3, 6090], + [0, 0, 27, 6091, 6], + [0, -4004, -4215, -3966, -1076, -3972], + [1, 3, 6093], + [0, 0, 6094, 6095, 5], + [0, -1654, -2127, -2142, -2198, -2410], + [0, -4121, -4215, -4004], + [1, 3, 6097], + [0, 0, 6098, 6099, 6], + [0, -1405, -1452, -2210, -11115, -2471], + [0, -4215, -8611, -4792, -3551, -3324, -5119, -4004, -11116, -3634, -4873], + [1, 3, 6101], + [0, 75, 6102, 6103, 5], + [0, -1168, -1190, -11117, -1220, -1224, -1231, -11118, -1452, -1453, -2501], + [0, -4215, -11119, -11120], + [1, 3, 6105], + [0, 6106, 6107, 6108, 4], + [0, -4377, -1107, -1496, -1548, -11121, -1582, -1729, -995, -11122, -11123], + [ + 0, -1435, -2384, -11124, -1415, -1680, -11125, -1867, -812, -11126, -648, -11127, -865, -932, -1576, -11128, + -473, -1388, -1753, -11129, -2379, -2520, -11130, -11131, -1417, -11132, -1942, -756, -11133, -1418, -1765, + -2293, -11134, -1969, -2410, -11135, -3037, -11136, -11137, -11138, -11139, -11140, -11141, -11142, -11143, + -10453, -11144, -11145, -966, -11146, -357, -11147, -968, -940, -967, -972 + ], + [0, -11148, -6209, -3161, -3445, -11149, -7586, -11150, -11151, -5078, -9840, -11152], + [1, 3, 6110], + [0, 0, 6111, 6112, 5], + [0, -1989, -2127, -767, -2410, -3037, -1488], + [0, -1666, -4121, -4123, -1838, -3276, -5874, -1348, -9772, -11153], + [1, 3, 6114], + [0, 6115, 6116, 6117, 4], + [0, -1666], + [0, -1127, -1134, -1144, -1146, -1148, -10264, -2410], + [0, -1666, -4121, -4123, -11154, -11155, -11156, -11157, -11158], + [1, 3, 6119], + [0, 6120, 6121, 6122, 5], + [0, -1461, -11159, -11160, -11161, -11162, -1848, -1942, -11163, -11164, -11165, -2548], + [0, -11166, -2970, -3664, -928, -9002, -1874, -2094, -11167, -2410, -2469, -11168], + [0, -3496, -3100, -3577, -11169, -9002, -2548], + [1, 3, 6124], + [0, 0, 6125, 6126, 10], + [ + 0, -190, -3037, -3664, -932, -940, -972, -978, -1942, -2125, -2402, -2405, -7322, -2410, -2411, -2466, -6859, + -2469 + ], + [0, -11170, -11171, -11172, -5829, -11173, -3577, -3445], + [1, 3, 6128], + [0, 6129, 6130, 6131, 8], + [ + 0, -6779, -11174, -6780, -6777, -11175, -6776, -8843, -11176, -11177, -2997, -11178, -617, -620, -11179, -637, + -709, -719, -744, -767, -787, -865, -919, -1004, -4206, -1010, -1055, -11180, -11181, -1320, -1437, -3725, + -1635, -1671, -11182, -1676, -1863, -11183, -2185 + ], + [ + 0, -23, -32, -40, -11184, -11185, -534, -664, -684, -726, -748, -778, -795, -932, -934, -958, -978, -11186, + -1041, -1344, -1654, -11187, -1734, -1753, -2275, -2293, -2501, -2503 + ], + [0, -8856, -11188, -7558, -7685, -11189, -3964, -11190, -11191, -6857, -1671, -11192, -11193, -11194], + [1, 3, 6133], + [0, 6134, 6135, 6136, 8], + [0, -637, -11195, -11196], + [ + 0, -1788, -2384, -11197, -664, -668, -1654, -2210, -11198, -2550, -932, -2177, -11199, -1004, -1442, -2379, + -1942, -2211, -2410, -3241, -3035, -3037, -667, -11200, -3621, -4372, -11201, -3199, -3617, -11202, -11203, + -11204, -11205, -3625, -11206, -11207, -2234, -964, -977, -940, -967, -264, -262, -428, -11208, -6424, -9724, + -11209, -427, -4814, -234 + ], + [0, -1671, -9879, -5041], + [1, 3, 6138], + [0, 6139, 6140, 6141, 10], + [0, -11210, -1671, -11211, -11212, -1681, -11213], + [ + 0, -11214, -11215, -3037, -11216, -11217, -11218, -469, -652, -674, -7743, -932, -5984, -1004, -1077, -1304, + -9150, -1559, -11219, -8554, -1610, -1650, -1654, -1666, -11208, -11187, -11220, -1705, -1974, -2210, -2655, + -2410, -2411, -2446 + ], + [0, -1671, -10855, -6106, -4058, -7685, -11221, -6582, -11222, -5101, -7684, -1818, -7773], + [1, 3, 6143], + [0, 6144, 232, 6145, 5], + [0, -763, -727, -573, -2228, -2424, -2229, -11223], + [0, -1673, -11224, -11225, -8841, -11226, -11227], + [1, 3, 6147], + [0, 6148, 232, 6149, 5], + [0, -727, -729, -1673, -11228, -11223], + [0, -1673, -11229, -11224, -11225, -11230, -5412, -8841, -11231], + [1, 3, 6151], + [0, 6152, 6153, 6154, 8], + [0, -11232, -812, -1671, -11233, -11234, -11235, -11236, -11237, -11238, -1792], + [ + 0, -519, -708, -932, -943, -950, -958, -966, -968, -974, -11239, -11240, -11241, -11242, -11243, -11244, -11245, + -1788 + ], + [0, -1675, -1671, -6857, -9879], + [1, 3, 6156], + [0, 6157, 6158, 6159, 5], + [0, -579, -812, -828, -1800, -6825], + [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2239, -2293], + [0, -1004, -1334, -3444, -5401], + [1, 3, 6161], + [0, 44, 15, 16, 10], + [1, 3, 6163], + [0, 6164, 6165, 6166, 10], + [ + 0, -2531, -2124, -812, -11198, -2240, -11246, -11247, -1646, -4204, -1582, -11248, -725, -11249, -2062, -11250, + -6279 + ], + [ + 0, -1788, -664, -2322, -2210, -932, -1109, -1650, -2125, -2198, -2226, -928, -1110, -2379, -679, -1942, -11251, + -190, -1939, -2091, -2410, -3035, -3037, -8096, -4372, -908, -11252, -11253, -3244, -11254, -5325, -3311, -4805, + -11255, -958, -940, -967, -428, -740, -3312, -11256, -427, -4646 + ], + [0, -1680, -11257, -8403, -8404], + [1, 3, 6168], + [0, 0, 6169, 7, 8], + [0, -1344, -1654, -932, -1942, -1003, -1534], + [1, 3, 6171], + [0, 6172, 6173, 6174, 10], + [0, -11258, -719, -812, -10414, -10417], + [0, -86, -3307, -7040, -3472, -7041, -7042, -1654, -2174, -2250], + [0, -7685, -1682, -10424, -3844, -11259, -10704, -11260, -11261, -10417, -11262, -10704, -11263, -5800, -11264], + [1, 3, 6176], + [0, 6177, 6178, 6179, 11], + [ + 0, -2946, -269, -4190, -11265, -743, -1122, -11266, -4193, -4194, -1851, -1863, -11267, -2255, -4195, -2364, + -2400, -11268, -2550 + ], + [ + 0, -86, -3307, -11269, -3244, -190, -11270, -3316, -4196, -4197, -3983, -3617, -11271, -3037, -11272, -427, + -428, -3310, -523, -5859, -720, -767, -768, -796, -928, -3808, -932, -940, -967, -1004, -1030, -8151, -1107, + -1449, -11273, -1498, -1534, -11274, -1942, -2910, -2082, -2125, -3246, -2391, -2410, -2411, -2426, -2437, + -2469, -4209, -2501, -4211, -1683 + ], + [0, -3690, -4215, -4041, -8615, -10807, -3844, -5196, -8481, -3634, -3577, -4725], + [1, 3, 6181], + [0, 6182, 6183, 6184, 4], + [0, -11275, -649, -725, -1650, -1792, -2401, -2546], + [0, -821, -1004, -1069, -11276, -1654, -1788, -2125, -2250, -11277], + [0, -4053, -9751, -6463, -1069, -11278, -1004, -5401], + [1, 3, 6186], + [0, 6187, 14, 6188, 4], + [0, -9491, -11279, -1645], + [0, -7727, -5573, -1107, -9095, -9096, -5572, -5912, -1645, -5574, -5064, -9087], + [1, 3, 6190], + [0, 6191, 6192, 6193, 5], + [0, -2418, -1335, -2155], + [0, -1788, -11280, -1654, -932, -1650, -2125, -2291, -2108, -963], + [0, -6656, -7764, -1070, -5827, -5940], + [1, 3, 6195], + [0, 6196, 6197, 6198, 4], + [0, -5573, -1077, -1462, -1548, -3222, -1805, -2446], + [0, -1412, -1788, -11281, -2091], + [0, -793, -3264, -11282, -1688, -11283, -11284], + [1, 3, 6200], + [0, 0, 6201, 6202, 4], + [0, -985, -664, -2568, -1654, -932, -1452, -2127, -1978, -2416], + [0, -1689, -3110, -3261, -888], + [1, 3, 6204], + [0, 0, 6205, 6206, 10], + [ + 0, -865, -1168, -1197, -1251, -1344, -1471, -1475, -1485, -1488, -11285, -11286, -1942, -10496, -1989, -2125, + -2127, -2334, -11287 + ], + [0, -4672, -3999, -11288, -7724, -7283, -7581], + [1, 3, 6208], + [0, 6209, 6210, 7, 11], + [0, -595, -2062, -2155, -11289], + [0, -465, -932, -2172, -11290, -11291, -11292], + [1, 3, 6212], + [0, 6213, 6214, 6215, 4], + [0, -1578, -9953, -10401, -1351, -11293, -11294, -11295, -11296], + [ + 0, -652, -2392, -11297, -1110, -1942, -589, -767, -190, -1888, -2410, -3037, -11298, -3244, -3560, -3606, -940, + -967, -428, -11299, -427, -5706 + ], + [0, -1691, -3323, -3844], + [1, 3, 6217], + [0, 6218, 6219, 6220, 11], + [0, -8993, -1792, -8994], + [0, -1405, -615, -1654], + [0, -8124, -1961, -11300, -11301, -3184], + [1, 3, 6222], + [0, 0, 6223, 6224, 4], + [0, -11302], + [0, -1784, -3966, -9318, -9800, -11303, -3966, -7304, -6845], + [1, 3, 6226], + [0, 0, 6227, 7, 4], + [0, -596, -719, -1107, -2105, -2062, -2319, -2546], + [1, 3, 6229], + [0, 0, 6230, 6231, 4], + [0, -2426, -3037, -2410], + [0, -11304, -6582, -2105, -4055, -7684, -11151, -1697, -7685], + [1, 3, 6233], + [0, 6234, 6235, 6236, 5], + [0, -3115, -781, -786, -11305, -10883, -11306, -7222, -3768], + [ + 0, -4757, -4754, -4749, -3136, -3037, -3140, -3040, -932, -4650, -1344, -11307, -1415, -1520, -11308, -1534, + -1942, -1967, -2006, -2019, -2052, -2125, -2234, -2376, -2387, -2410, -2501, -2502, -2505, -2552 + ], + [ + 0, -775, -5553, -3770, -11309, -1697, -11310, -2006, -3756, -11311, -3771, -11312, -11313, -3095, -2278, -11314, + -11315, -3271 + ], + [1, 3, 6238], + [0, 0, 0, 6239, 8], + [0, -2446, -6555, -7231, -2435], + [1, 3, 6241], + [0, 6242, 6243, 6244, 4], + [0, -7872, -523, -893, -1077, -11316, -11317, -1577, -1705, -11318, -2160, -2234, -2359, -2550], + [ + 0, -3198, -3048, -11319, -3136, -9143, -3037, -11320, -3628, -3041, -427, -428, -891, -932, -940, -967, -1415, + -1874, -1942, -2125, -2376, -2410, -2501, -2503 + ], + [0, -11321, -891, -3994, -5269, -8911], + [1, 3, 6246], + [0, 6247, 6248, 6249, 6], + [ + 0, -2531, -1816, -2323, -1430, -1805, -2446, -523, -712, -1875, -2550, -8898, -1548, -1576, -1610, -1650, -1831, + -2177, -7680, -2519, -2536, -987, -1966, -2195, -501, -679, -1942, -1981, -2378, -1645, -11322, -695, -2205, + -2231, -2410, -11323, -3950, -11324, -11325, -11326, -8888, -11327, -11328, -6294, -7772, -1982, -280, -11329, + -11330, -11331, -742, -8880, -11332, -11333, -11334, -11335, -11336 + ], + [ + 0, -664, -1127, -1344, -1654, -2210, -10645, -1405, -4204, -5673, -3035, -3037, -3738, -1162, -1534, -4248, + -11337, -11338, -4372, -3041, -11339, -3044, -11340, -3199, -11341, -11342, -11343, -3735, -3714, -6114, -11344, + -11345, -665, -1138, -2234, -1134, -1149, -11346, -11347, -4269, -11348, -3202, -11349, -740 + ], + [0, -1702, -2410, -3214], + [1, 3, 6251], + [0, 6252, 6253, 6254, 6], + [0, -11350, -11351, -11352, -865, -1339, -11353, -1672, -1857, -2071, -7967, -11354, -10899, -2424, -2446, -11355], + [ + 0, -350, -4062, -351, -9705, -3037, -427, -11356, -767, -932, -9106, -958, -965, -968, -1168, -1222, -11357, + -1412, -1413, -7148, -1705, -1788, -11358, -1972, -2125, -2127, -2210, -2234, -2250, -2379, -6416, -2410, + -11359, -2501, -7752 + ], + [ + 0, -11360, -11361, -7281, -11362, -11363, -3579, -11364, -11365, -11366, -11367, -11368, -11369, -11370, -11371, + -11372, -11373, -11374, -11375, -11376, -11377, -11378, -11379, -11380, -11381, -11382, -11383, -11384, -11385, + -11386 + ], + [1, 3, 6256], + [0, 6257, 6258, 6259, 9], + [0, -1371, -510, -2550, -11387], + [0, -1788, -2471, -932, -756, -11388, -2091, -4646], + [0, -3870, -11389, -11390], + [1, 3, 6261], + [0, 0, 6262, 6263, 5], + [0, -1654, -2125, -8986], + [0, -687, -6351], + [1, 3, 6265], + [0, 0, 6266, 6267, 5], + [0, -3037, -3040, -427, -428, -749, -932, -940, -967, -969, -970, -1380, -1942, -2387, -2410], + [0, -11391, -3486, -2006, -3994, -11392, -11393, -5069, -3445], + [1, 3, 6269], + [0, 6270, 6271, 6272, 4], + [0, -510, -1650, -2424, -1545, -11394], + [0, -664, -1654, -2210, -2105, -719, -11395], + [0, -7685, -11222, -10712], + [1, 3, 6274], + [0, 6275, 6276, 6277, 5], + [0, -1351, -2165], + [0, -1464, -7623, -1654, -1976, -1980, -2198, -2210, -2536], + [0, -1334, -1342, -5493, -2105, -3323, -6463, -7764, -1971, -6827, -7430, -9791, -9788, -743, -8937], + [1, 3, 6279], + [0, 6280, 0, 6281, 5], + [0, -11396, -11397, -719, -755, -1376], + [0, -687, -5406, -9668, -3957, -3958, -11398, -11313], + [1, 3, 6283], + [0, 6284, 6285, 6286, 8], + [ + 0, -11399, -510, -11400, -5676, -695, -714, -719, -790, -1044, -11401, -1548, -1650, -11402, -11403, -11404, + -11405, -1951, -2177, -11406, -2524, -2538 + ], + [ + 0, -11407, -664, -829, -11408, -7829, -932, -960, -7819, -964, -972, -1442, -1654, -1722, -1788, -11409, -2070, + -2188, -2195, -2210, -2536 + ], + [0, -1710, -11410, -3690, -3634, -6657, -11411, -3691], + [1, 3, 6288], + [0, 6289, 6290, 6291, 4], + [ + 0, -11412, -7603, -7604, -11413, -5038, -5777, -5775, -5791, -5779, -5778, -5780, -5782, -11414, -725, -1343, + -11415, -11273, -1459, -11416, -2062, -11417, -2177, -2522 + ], + [ + 0, -3698, -11418, -11419, -11420, -11421, -11422, -305, -11423, -11424, -11425, -469, -510, -521, -2917, -652, + -5980, -719, -741, -6906, -5983, -932, -960, -11426, -1107, -1116, -1344, -1446, -1534, -1547, -1722, -1969, + -1972, -2125, -11427, -2210, -2291 + ], + [0, -5805, -6187, -11230, -6032, -11428, -11429], + [1, 3, 6293], + [0, 6294, 6295, 6296, 5], + [0, -44, -11430, -743, -5193, -1791, -11431, -1940, -10105, -2446], + [ + 0, -3168, -21, -23, -6064, -38, -40, -41, -42, -11432, -367, -7043, -406, -407, -409, -2622, -410, -3136, -3037, + -11433, -11434, -3040, -3052, -518, -11435, -11436, -726, -784, -1415, -1419, -1428, -1683, -2634, -1889, -1891, + -1916, -2006, -2019, -2516 + ], + [0, -2006, -3967, -1791, -3175, -11437, -3173, -1713, -7204, -3177, -11438], + [1, 3, 6298], + [0, 0, 0, 6299, 5], + [0, -2634, -510, -11439, -11440], + [1, 3, 6301], + [0, 0, 0, 6302, 10], + [ + 0, -475, -4004, -3634, -4215, -4041, -3095, -8223, -11441, -11442, -5196, -11443, -11444, -3100, -3577, -1415, + -1412, -915, -8611, -6137 + ], + [1, 3, 6304], + [0, 6305, 0, 6306, 4], + [0, -5, -11445, -3946, -807, -2387], + [0, -3158, -3099, -475, -3160, -3161, -3100], + [1, 3, 6308], + [0, 6309, 6310, 6311, 4], + [0, -1116, -2446, -2548, -7004, -1018, -1552], + [0, -664, -668, -1654, -2210, -3037], + [0, -1716, -11446, -11447, -1546, -11448], + [1, 3, 6313], + [0, 0, 6314, 7, 10], + [0, -664, -729, -1654, -1974, -2187, -2286], + [1, 3, 6316], + [0, 6317, 6318, 6319, 6], + [0, -812, -11449, -10659, -891, -11450, -11451, -1451, -11452, -1650, -6810, -1801, -2125, -11453, -2240], + [ + 0, -510, -579, -11178, -615, -664, -665, -932, -940, -967, -1004, -1344, -1654, -11454, -1685, -1880, -1942, + -2187, -2239 + ], + [0, -1718, -891], + [1, 3, 6321], + [0, 6322, 6323, 6324, 6], + [ + 0, -11455, -11456, -11457, -3035, -11458, -6192, -5113, -6535, -623, -11459, -668, -680, -695, -11460, -11461, + -865, -888, -914, -1107, -1449, -1548, -1645, -1646, -1654, -11462, -1805, -1816, -8563, -2173, -2177, -11463, + -2269, -2430, -2446 + ], + [ + 0, -99, -367, -3037, -427, -428, -749, -767, -932, -1344, -1392, -1442, -1534, -1656, -3038, -11464, -11465, + -1663, -1722, -1788, -2006, -2019, -2125, -2184, -2379, -2384, -2648 + ], + [ + 0, -1719, -11466, -11467, -3634, -11468, -2734, -4867, -11469, -4866, -3095, -4868, -4004, -4865, -3162, -4043, + -5769, -793, -1654, -4864 + ], + [1, 3, 6326], + [0, 6327, 6328, 6329, 8], + [0, -4884, -357, -11470, -7755, -1851], + [0, -4888, -11471, -633, -1344, -1449, -11472, -1534, -1654, -11473, -1788, -1942, -1972, -11474, -11475], + [0, -4004, -3634, -8959, -4215, -2533, -3844], + [1, 3, 6331], + [0, 6332, 6333, 7, 4], + [0, -11476, -269, -1459], + [ + 0, -1116, -1788, -664, -1415, -1654, -2210, -932, -2125, -1942, -1069, -838, -1972, -2211, -2410, -1771, -6522, + -2174, -966, -964, -357, -958, -968, -940, -943, -3775 + ], + [1, 3, 6335], + [0, 0, 6336, 6337, 11], + [0, -589, -596, -11477, -932, -1077, -2884, -1939, -2177], + [0, -11478, -11479, -6249, -5269, -596, -6251, -6252, -1696, -1723], + [1, 3, 6339], + [0, 6340, 6341, 6342, 4], + [0, -702], + [ + 0, -1788, -1127, -1654, -2198, -756, -1132, -7845, -2410, -3037, -7887, -710, -11480, -9280, -1134, -1149, + -11481, -11482 + ], + [0, -3324, -6491, -8427, -3833, -6809, -10412, -11483, -3966, -1622, -7208], + [1, 3, 6344], + [0, 0, 6345, 6346, 4], + [0, -3037, -11484, -1077, -1344, -1654, -1788, -2125, -2410, -11485], + [0, -3966, -11486, -5574, -7534, -11487, -7371, -6974, -6582, -5847, -11488, -856], + [1, 3, 6348], + [0, 6349, 6350, 6351, 6], + [0, -808, -11489, -11490, -1097, -1646, -1737, -2114, -2177], + [0, -3037, -932, -958, -1344, -1534, -1942, -2319, -11491, -2363, -2379, -2410], + [0, -9427, -11492, -2295, -1673, -2490], + [1, 3, 6353], + [0, 124, 70, 6354, 11], + [0, -1727, -7421, -11070, -11493, -6656, -6235, -7547, -1076], + [1, 3, 6356], + [0, 6357, 6358, 6359, 4], + [0, -9154, -11494, -11495, -11496], + [ + 0, -4646, -367, -3330, -427, -428, -3664, -7351, -774, -932, -7352, -954, -960, -961, -963, -965, -7353, -7354, + -971, -979, -7355, -1344, -7356, -1498, -1534, -1608, -1609, -1768, -7357, -1942, -7358, -1945, -2091, -11497, + -7359, -2391, -2410, -2469, -7360 + ], + [0, -10838, -5493, -10841, -10840, -11498, -11499, -11500, -11501, -11502, -11503], + [1, 3, 6361], + [0, 6362, 6363, 6364, 4], + [0, -7026, -11504, -8966], + [0, -458, -5993, -649, -652, -664, -665, -11505, -9077, -756, -1069, -5989, -1654, -1828, -11506, -2384, -2541], + [0, -4213, -1334, -1961, -2105, -9172, -9173, -2533, -5388], + [1, 3, 6366], + [0, 0, 6367, 6368, 6], + [ + 0, -633, -719, -767, -932, -11507, -1004, -1471, -1472, -1475, -1478, -1479, -1480, -1482, -1483, -1487, -1488, + -1490, -11508, -1492, -1654, -1657, -11509, -1788, -6696, -2501, -2503, -11510 + ], + [ + 0, -11511, -11512, -11513, -11514, -770, -5374, -11515, -11516, -11517, -11518, -1334, -1342, -1616, -5150, + -11519, -11520, -11521, -11522, -11523, -2191, -11524, -11525, -11526, -8905, -11527, -11528, -11529 + ], + [1, 3, 6370], + [0, 6371, 6372, 6373, 9], + [0, -523, -812, -1548], + [0, -664, -1654, -1972, -2210], + [0, -3939, -5801, -5737, -5741, -5271, -11530, -11517, -11531, -1050, -5270, -491, -11532], + [1, 3, 6375], + [0, 6376, 6377, 6378, 9], + [0, -615, -1729], + [0, -664, -932, -1415, -2210], + [0, -11533, -11534, -11535, -3939, -11536, -11537, -11538, -11539, -11540], + [1, 3, 6380], + [0, 6381, 6382, 6383, 4], + [0, -5672, -11541, -1119, -10521, -1758, -1957, -2177, -2323, -2654, -2518], + [0, -596, -767, -932, -1654, -1696, -2884, -11542], + [0, -5269, -6249, -3551, -6251, -6252, -596, -6250], + [1, 3, 6385], + [0, 6386, 6387, 6388, 5], + [0, -780, -1297], + [ + 0, -7177, -674, -767, -932, -11543, -1317, -11544, -11545, -11546, -6595, -11547, -1333, -11548, -11549, -1839, + -2125, -10301, -2251, -2379, -2552 + ], + [0, -3264, -3215, -3967, -2410], + [1, 3, 6390], + [0, 6391, 6392, 6393, 5], + [0, -510, -11550, -812, -1004, -1107, -1850, -2001, -2177, -2185, -11551, -11552, -11553, -2518, -2531, -2550], + [0, -664, -1077, -1380, -1452, -1654, -1764, -1961, -2125], + [0, -812, -7336, -6480, -6479], + [1, 3, 6395], + [0, 6396, 6397, 6398, 11], + [0, -459, -736, -828, -1072, -8438, -1636, -1640, -1840, -1997, -2401], + [ + 0, -3035, -3621, -427, -428, -664, -932, -934, -940, -958, -1344, -1654, -1788, -1942, -2210, -2211, -2379, + -2384, -2410 + ], + [0, -4215, -8611, -10327, -3967, -3756, -3634, -4004, -1334, -11554], + [1, 3, 6400], + [0, 6401, 6402, 6403, 10], + [0, -11555, -1401, -2177, -11556, -2446, -2518], + [0, -749, -767, -932, -942, -943, -958, -966, -968, -1344, -1415, -1534, -11557, -1942, -2125], + [0, -11558, -11559, -9258, -11560, -9262, -6721, -11561, -11562, -4127], + [1, 3, 6405], + [0, 6406, 6407, 6408, 5], + [0, -579], + [0, -617, -1004, -1654, -2198, -2293], + [0, -1791, -11437], + [1, 3, 6410], + [0, 89, 56, 57, 8], + [1, 3, 6412], + [0, 6413, 6414, 6415, 8], + [0, -8612, -1650, -1708, -1758, -1769, -1778, -2001, -2125, -2177, -2323], + [0, -521, -1452, -1722, -2322], + [0, -5269, -6249, -3551, -6251, -6252, -596, -7304], + [1, 3, 6417], + [0, 6418, 6419, 6420, 4], + [0, -1723], + [0, -1654, -932, -11563, -1733, -767, -2410, -3037, -3621, -428, -427], + [0, -11564, -3975, -3974, -11565, -11566, -11567], + [1, 3, 6422], + [0, 6423, 0, 6424, 8], + [0, -11568, -11569, -11570, -11571, -579, -583, -754, -1004, -1077, -11572, -1758, -2177], + [0, -3496, -11532, -11573, -5411], + [1, 3, 6426], + [0, 6427, 6428, 6429, 10], + [0, -1696, -1088, -1107, -1630, -668, -1548, -1733, -1099, -11574, -769, -11575, -11576, -11577, -10521], + [0, -1788, -1654, -932, -2125, -1077, -11578], + [0, -775, -9264, -3277, -2162, -3754, -5553], + [1, 3, 6431], + [0, 6432, 6433, 6434, 4], + [0, -5414, -11579, -11580], + [0, -1788, -2322, -2210, -468, -932], + [0, -7046, -4107, -5418, -763, -11581, -10950], + [1, 3, 6436], + [0, 6437, 0, 6438, 4], + [0, -1813, -714, -1640], + [0, -1334, -5142, -6656, -3844], + [1, 3, 6440], + [0, 0, 6441, 6442, 5], + [0, -1788], + [0, -7230, -11582, -2446], + [1, 3, 6444], + [0, 0, 6445, 6446, 10], + [0, -1077, -1654], + [0, -11583, -2490, -11584], + [1, 3, 6448], + [0, 6449, 0, 6450, 8], + [0, -6597, -2550], + [0, -11585, -7084, -5196, -11586, -5545, -5389, -11587, -11588, -11589, -4107], + [1, 3, 6452], + [0, 6453, 6454, 6455, 4], + [0, -2534], + [0, -11590, -11591, -3037, -932, -1942, -1944, -2391, -2410, -3924, -2469], + [0, -11592, -3215, -4258, -2534, -11593], + [1, 3, 6457], + [0, 6458, 6459, 6460, 11], + [0, -1285, -1391], + [0, -5834, -515, -932, -1365, -7393, -1777, -1788, -1797, -2156, -2322], + [0, -1015, -11594, -11595, -702, -6351, -11596], + [1, 3, 6462], + [0, 6463, 6464, 6465, 5], + [0, -1116, -1696, -1460, -1993, -1548, -2324, -1077, -1733, -1740], + [0, -2487, -1654, -1452, -521, -674, -11597, -1405, -526, -756, -1440, -11598, -7382, -559], + [0, -11599, -11600, -5889, -5269], + [1, 3, 6467], + [0, 0, 6468, 6469, 6], + [0, -11601, -648, -652, -932, -940, -1110, -11602, -11603, -11604, -11605, -1942, -1971, -11606, -7932], + [0, -11607], + [1, 3, 6471], + [0, 6472, 6473, 6474, 5], + [0, -679, -812, -5911, -1645, -11608, -2177, -7741, -2297, -2363, -11609], + [0, -86, -3307, -510, -710, -932, -1344, -1654, -1788, -1972, -2174, -2198], + [0, -687, -1673, -1673, -3113, -9427, -11610, -11492, -3974], + [1, 3, 6476], + [0, 6477, 0, 7, 5], + [0, -888, -2319], + [1, 3, 6479], + [0, 6480, 6481, 6482, 4], + [0, -2125, -867, -11611, -2550, -2177], + [0, -2105, -2322], + [0, -11612, -11613, -7856, -11321, -9668], + [1, 3, 6484], + [0, 6485, 0, 6486, 5], + [ + 0, -7603, -469, -470, -8547, -5329, -473, -11614, -523, -617, -679, -744, -754, -792, -1004, -4206, -11615, + -11616, -1107, -1299, -11617, -11618, -1460, -11619, -1465, -11620, -1581, -5460, -11621, -1671, -1680, -1707, + -7045, -11622, -1752, -1805, -1857, -11623, -2071, -11492, -2107, -11624, -11625, -2520, -3730, -2548, -2550 + ], + [ + 0, -11626, -1756, -3214, -3967, -3161, -3445, -3100, -5407, -11627, -11628, -11629, -11630, -4055, -11631, + -4058, -1460, -2548, -3994, -11632 + ], + [1, 3, 6488], + [0, 6489, 83, 6490, 4], + [0, -2424, -668], + [0, -7303, -11633, -4376, -6792, -3215], + [1, 3, 6492], + [0, 6493, 29, 7, 5], + [0, -9632], + [1, 3, 6495], + [0, 0, 6496, 6497, 8], + [0, -1202, -1646, -1654], + [ + 0, -11634, -11635, -11636, -6656, -11637, -7693, -7839, -11638, -11639, -1076, -6811, -1847, -9358, -6517, + -2218, -11640, -11641, -11642, -11643 + ], + [1, 3, 6499], + [0, 0, 14, 6500, 4], + [0, -6811, -2435, -9171, -6558, -2265, -11644, -11645, -5101, -1985, -11646, -6817, -11647, -11648], + [1, 3, 6502], + [0, 0, 0, 6503, 5], + [0, -11649, -11644, -4865], + [1, 3, 6505], + [0, 6506, 6507, 6508, 4], + [ + 0, -668, -6793, -700, -755, -824, -2762, -930, -999, -11650, -11651, -1315, -6770, -1363, -1376, -1394, -11652, + -11653, -11654, -1535, -11655, -1574, -1630, -11656, -11657, -9050, -1805, -11658, -10270, -1849, -3609, -2060, + -2153, -2177, -5746, -3669, -2433 + ], + [0, -9154, -3199, -519, -722, -9982, -1077, -11659, -2210, -2269, -2331, -11660, -2541], + [0, -5732, -687, -1764, -8403, -5889, -5737, -9318, -6453, -5890], + [1, 3, 6510], + [0, 6511, 6512, 6513, 4], + [ + 0, -1681, -1371, -2323, -1107, -1758, -2059, -2247, -11661, -668, -1826, -2518, -9632, -1831, -2177, -4287, + -680, -11662, -9084, -1733, -1957, -11663, -1645, -4296, -4279, -1527, -1528, -1529, -11664, -11665, -2343, + -11666, -1119, -11667, -10513, -11668, -11669, -10517, -11670, -11671, -4285, -2297, -1315, -1767, -1982, -280, + -11672, -10520, -10521, -11673, -4291, -11674, -283, -4290, -1770, -11675, -11676, -4292, -4283, -4306, -8266, + -281, -2450, -4281, -4278, -11677 + ], + [ + 0, -469, -2319, -834, -1722, -4307, -2093, -2125, -695, -2095, -11678, -470, -11679, -1769, -4655, -11680, + -11681, -4300, -4298, -4299, -11682 + ], + [0, -1380, -3209, -11683, -10484], + [1, 3, 6515], + [0, 6516, 6517, 6518, 4], + [ + 0, -705, -1816, -1630, -668, -999, -1392, -2546, -11684, -1111, -1548, -2177, -11685, -1871, -827, -1376, -1645, + -1728, -2269, -2343, -1849, -11686, -5895, -11687, -6197, -11688, -2433, -11689 + ], + [0, -2541, -526, -567, -559, -555, -551], + [0, -1764, -11690, -3015, -7441, -5887, -7440, -11691, -3690, -9845, -687, -9594, -11692, -11693, -7856, -3016], + [1, 3, 6520], + [0, 0, 6521, 6522, 4], + [ + 0, -11694, -7057, -3035, -4269, -11695, -11696, -5361, -11697, -3660, -11698, -3044, -3621, -3037, -11699, + -11700, -8523, -3624, -3735, -3199, -11701, -4372, -11702, -427, -428, -656, -664, -665, -9077, -668, -695, + -719, -767, -8609, -932, -940, -11703, -943, -958, -960, -965, -968, -1026, -10960, -1047, -11704, -1315, -1371, + -1442, -1461, -11705, -1547, -1548, -1609, -1654, -1770, -1771, -1826, -5883, -1864, -1942, -1959, -11706, + -11689, -2124, -2125, -5405, -2177, -11707, -2198, -2210, -2234, -7744, -2269, -2379, -2410, -11708, -2430, + -2433, -11709, -2466, -11710, -11711, -6859, -2552 + ], + [0, -3015, -1764, -10484, -10674, -11712, -11713], + [1, 3, 6524], + [0, 6525, 29, 7, 5], + [0, -1315, -1957, -2177, -2450], + [1, 3, 6527], + [0, 6528, 6529, 6530, 6], + [ + 0, -469, -3907, -668, -755, -812, -1111, -1353, -1395, -1461, -1574, -1630, -1877, -2177, -2218, -2271, -2400, + -2450 + ], + [ + 0, -3136, -3037, -427, -428, -928, -11714, -932, -11715, -11716, -954, -958, -959, -967, -978, -1040, -1415, + -7357, -11717, -1942, -2375, -2410 + ], + [0, -7148, -8170, -10484, -5879, -11718, -1768], + [1, 3, 6532], + [0, 6533, 6534, 7, 8], + [0, -6770, -1957], + [0, -280, -4298, -4300, -11719, -2319], + [1, 3, 6536], + [0, 6537, 6538, 6539, 10], + [0, -4285, -10335, -10521, -9084, -11720, -11721, -1767, -1957], + [0, -4298, -4300, -4287, -1722, -11542, -2247, -2319], + [0, -1764, -11722, -4213], + [1, 3, 6541], + [0, 6542, 6543, 233, 4], + [0, -668, -11084, -2060, -1645, -482, -769, -2194, -1627, -11723], + [0, -1788, -2552, -1654, -932, -2125, -708, -1827, -1077, -3037, -1938, -566, -11724, -6018, -545], + [1, 3, 6545], + [0, 6546, 6547, 233, 11], + [0, -2518, -11084, -1864, -482, -769, -2194, -1627, -11728], + [0, -652, -1498, -2552, -1446, -1654, -932, -9774, -2884, -516, -3781], + [1, 3, 6549], + [0, 6550, 14, 6551, 5], + [0, -7087, -8803], + [0, -1764, -11727, -1847, -5897, -8425, -7304, -8426, -11729, -687, -3958, -7096, -7237], + [1, 3, 6553], + [0, 0, 6554, 6555, 5], + [0, -3136, -3037, -427, -428, -3267, -932, -940, -1415, -1534, -10652, -2125, -2127, -2375, -2410], + [0, -11730, -856, -11731], + [1, 3, 6557], + [0, 6558, 6559, 6560, 4], + [0, -668, -691, -719, -812, -1376, -1965], + [0, -664, -1654, -1663, -2250], + [0, -7865, -1764, -11732], + [1, 3, 6562], + [0, 6563, 6564, 6565, 6], + [0, -1376, -1993], + [0, -526, -541, -551, -11733, -566, -1771], + [0, -1764, -687, -7095, -3957, -9408, -4043, -9845, -1776, -11734], + [1, 3, 6567], + [0, 6568, 6569, 6570, 6], + [0, -1285, -1646], + [0, -5834, -516, -5835, -932, -1365, -1431, -1788, -2156, -2322], + [0, -1777, -9100], + [1, 3, 6572], + [0, 6573, 6574, 7, 6], + [0, -4700, -10515, -11735, -4716], + [0, -2319, -4300, -4298], + [1, 3, 6576], + [0, 0, 6577, 7, 4], + [0, -664, -1437, -1449, -1654, -11736], + [1, 3, 6579], + [0, 6580, 6581, 6582, 4], + [0, -668, -694, -11737, -1343, -1376, -11738, -2177, -9564, -2550], + [0, -619, -707, -8326, -1277, -1510, -1658], + [0, -7107, -1780, -8327], + [1, 3, 6584], + [0, 6585, 6586, 6587, 5], + [0, -11739], + [0, -3136, -3037, -427, -428, -749, -932, -940, -967, -1344, -1415, -1942, -1952, -2125, -2375, -2379, -2410], + [0, -1781, -11740, -687, -3578, -3871, -7864, -2006, -3966, -2410, -3214, -2501, -1415, -3100, -3445, -5407], + [1, 3, 6589], + [0, 0, 6590, 6591, 6], + [0, -664, -1138, -1146, -1155, -1156, -9545, -1471, -1474, -1475, -1479, -1482, -1483, -1488, -1542, -1654], + [0, -1782, -6240, -3276, -4123, -11741, -11742], + [1, 3, 6593], + [0, 6594, 6595, 6596, 5], + [0, -11743, -11744, -719], + [ + 0, -21, -23, -40, -43, -534, -539, -541, -729, -753, -767, -932, -934, -958, -1004, -1077, -1098, -11745, + -11746, -11747, -11748, -1788, -1860, -2187, -2416, -2417, -2501 + ], + [0, -3110, -7651], + [1, 3, 6598], + [0, 0, 0, 6599, 5], + [0, -8427, -3966], + [1, 3, 6601], + [0, 0, 6602, 6603, 10], + [0, -2832, -5834, -8084, -8096, -516, -652, -5835, -932, -1431, -1365, -1777, -2156, -2322], + [0, -1784, -1785, -5874], + [1, 3, 6605], + [0, 0, 0, 6606, 10], + [0, -775, -5180, -11749, -5912, -3585], + [1, 3, 6608], + [0, 6609, 0, 6610, 4], + [ + 0, -888, -1816, -2359, -1055, -1805, -2548, -523, -701, -2387, -2550, -865, -1353, -2177, -1040, -910, -1418, + -1645, -2369, -690, -1863, -2325, -692, -1075, -1461, -1773, -2267, -2551, -866, -2383, -11750, -11751, -11752, + -4341, -10789, -11753, -11754 + ], + [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -4339, -4340, -4347, -4343, -4344, -11755], + [1, 3, 6612], + [0, 6613, 6614, 6615, 4], + [ + 0, -6028, -4003, -11756, -742, -813, -1046, -1047, -6475, -1097, -1107, -5086, -11757, -6029, -11758, -5087, + -5088, -5089, -1591, -11759, -1826, -11760, -2115, -2125, -2202, -11761, -6030, -2550 + ], + [0, -11762, -5607, -2111, -2234, -2250, -2251, -2319, -2446, -2518], + [0, -4005, -6863, -8422, -3634], + [1, 3, 6617], + [0, 6618, 6619, 6620, 5], + [0, -11763, -4049, -3424, -11619, -10873, -5969, -5263, -1851, -11764], + [0, -11765, -11766, -11767, -3037, -2391, -2410, -2469], + [0, -3690, -11768, -3438, -11769, -11770, -11771, -11772, -11773, -1789, -489, -11148, -856], + [1, 3, 6622], + [0, 6623, 6624, 6625, 4], + [0, -11763, -11774, -1442, -5263, -3792], + [0, -11765, -3660, -11775, -1722, -2391, -2410, -2469], + [0, -3690, -489, -11768, -856, -11148, -11773, -1789, -3438, -11772, -11769, -11771, -11770, -11410, -4847], + [1, 3, 6627], + [0, 0, 84, 7, 8], + [1, 3, 6629], + [0, 0, 6630, 6631, 5], + [0, -2541, -519, -1548, -1612], + [0, -7208, -7370, -1015, -3589, -4795, -3217, -3207, -6989, -11776, -3582, -5396, -4865], + [1, 3, 6633], + [0, 0, 6634, 6635, 4], + [ + 0, -633, -1168, -1177, -11117, -11777, -1220, -1224, -1231, -1243, -1244, -1262, -1452, -1453, -1471, -1475, + -1482, -1654 + ], + [0, -7208, -6131, -2191, -1616], + [1, 3, 6637], + [0, 0, 6638, 6639, 6], + [ + 0, -5834, -11778, -516, -753, -11779, -921, -932, -1065, -1083, -1107, -11780, -1283, -11781, -1365, -1408, + -8082, -1659, -1777, -1788, -2156, -9786, -2177, -8310, -2322 + ], + [0, -4676, -11782, -7208, -6231, -3240], + [1, 3, 6641], + [0, 0, 6642, 6643, 4], + [0, -5834, -8487, -932, -6283, -11783, -1391, -2322], + [0, -11784, -7373, -6947, -5396], + [1, 3, 6645], + [0, 0, 6646, 6647, 8], + [0, -1788, -664, -1654, -756, -1657, -11785], + [0, -6545, -1847, -11786, -11787, -9052, -7153, -864, -7375, -7208, -7369, -11788, -11789, -5846, -8893, -7372], + [1, 3, 6649], + [0, 6650, 6651, 6652, 6], + [0, -655, -6511, -5830, -11790, -1283, -1795], + [0, -5833, -5834, -633, -932, -1065, -1083, -5836, -1285, -1659, -1777, -1788, -2156, -5942, -2322], + [0, -11791, -7370, -6948, -1015, -11792, -11594, -11793, -11794, -5843, -3582, -5396], + [1, 3, 6654], + [0, 6655, 6656, 6657, 6], + [0, -655, -6511, -5830, -11790], + [0, -5833, -5834, -8569, -516, -5835, -932, -1083, -5836, -1365, -1777, -1788, -2156, -2322], + [0, -11795, -11796, -11784, -11797, -7374, -6949, -11798, -6952, -5396, -7208, -7373, -3582, -5843], + [1, 3, 6659], + [0, 6660, 6661, 7, 9], + [0, -11799], + [0, -1788, -1654, -932, -966, -958, -968, -943, -963, -974], + [1, 3, 6663], + [0, 6664, 71, 6665, 4], + [0, -11800], + [0, -1801, -5924, -6812, -6814], + [1, 3, 6667], + [0, 6668, 6669, 6670, 4], + [0, -11801, -11802, -502, -679, -769, -1353, -2369], + [0, -7080, -3037, -1344, -1534, -1942, -2125, -2410], + [0, -1107, -2490, -5888], + [1, 3, 6672], + [0, 6673, 6674, 6675, 5], + [0, -11803, -1553], + [0, -3621, -11804, -708, -1452, -1654, -1658, -1660, -1788, -2379, -2410], + [0, -11805, -11573, -11806, -11807, -11808, -10226, -11809, -11810, -11811, -9261], + [1, 3, 6677], + [0, 6678, 115, 234, 5], + [0, -11812, -11813, -11814, -9981, -6756, -11815], + [1, 3, 6680], + [0, 6681, 6682, 6683, 5], + [0, -1043, -1099, -1630, -1805, -2331], + [0, -519, -999, -2541], + [ + 0, -5732, -687, -3994, -1805, -1810, -11816, -11817, -11818, -11819, -11820, -11821, -7095, -4865, -3496, -7237, + -7863, -2435, -11822, -7303, -7091, -8421, -6599, -1958, -3258, -6656 + ], + [1, 3, 6685], + [0, 6686, 6687, 6688, 6], + [0, -11823, -11824, -5263], + [0, -3136, -3660, -4049, -523, -11825, -1415, -1456, -11826, -1683, -1942, -2234, -2375, -2379, -2410], + [0, -3438, -4847, -3323, -523, -3100, -4865, -4215, -2410], + [1, 3, 6690], + [0, 6691, 6692, 6693, 5], + [0, -813, -1326, -1459, -1600, -1967, -2006, -2019, -2451], + [ + 0, -32, -204, -526, -552, -9968, -756, -932, -933, -934, -958, -962, -968, -969, -1108, -1320, -1415, -1753, + -1771, -2105, -2106, -5331 + ], + [0, -4847, -3438, -11827, -3264, -856, -3262], + [1, 3, 6695], + [0, 6696, 6697, 6698, 11], + [0, -6280, -1696], + [0, -1107, -2105, -2322], + [0, -1809, -11828, -9565, -11829], + [1, 3, 6700], + [0, 0, 38, 7, 6], + [1, 3, 6702], + [0, 6703, 6704, 7, 8], + [0, -11830, -2105], + [0, -526, -559, -932, -933, -958, -962, -969], + [1, 3, 6706], + [0, 6707, 55, 234, 9], + [0, -1401], + [1, 3, 6709], + [0, 6710, 6711, 235, 4], + [0, -2525, -1646], + [0, -11831, -2319], + [1, 3, 6713], + [0, 6714, 6715, 6716, 8], + [0, -784, -11832, -1889], + [0, -527, -533, -551, -556, -558, -778, -1415, -2275, -2501], + [0, -7198, -10435, -1017, -7173, -7175, -6694, -2501], + [1, 3, 6718], + [0, 6719, 6720, 6721, 11], + [0, -11833, -11834, -2524, -8437, -11835, -10579], + [0, -11836, -1654], + [0, -6792, -5272, -11837, -687], + [1, 3, 6723], + [0, 6724, 6725, 6726, 8], + [0, -668, -690, -692, -11652, -6861, -1574, -11838, -2267], + [0, -3037, -519, -1100, -11839, -2384, -2541], + [0, -687, -6716, -6717, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, -4116, -4117], + [1, 3, 6728], + [0, 6729, 6730, 6731, 10], + [0, -908, -11840, -11841], + [0, -994, -1262, -1452, -1597, -1632, -1654, -1980, -2198, -2462], + [0, -510, -4107, -5921, -10462], + [1, 3, 6733], + [0, 6734, 6735, 6736, 11], + [0, -510, -615, -7840, -10358, -1548, -1850, -11842, -11843], + [0, -652, -668, -1107, -1654, -1671, -1691, -1857, -2177, -2198, -2210, -2245], + [0, -1818, -11221, -7685, -1691, -10425, -11844, -3742, -1671], + [1, 3, 6738], + [0, 0, 0, 6739, 4], + [0, -3966, -1819, -3103, -3551], + [1, 3, 6741], + [0, 6742, 71, 6743, 6], + [0, -8383, -10383], + [0, -5558, -3833, -11845, -11846, -1847, -1965, -11847], + [1, 3, 6745], + [0, 0, 6746, 6747, 4], + [0, -3035, -3048, -3621, -3037, -3046, -10755, -664, -999, -1077, -1654, -1763, -2379, -2501, -2518], + [0, -3184, -4795, -11848, -11849, -7728, -2265, -3110, -6806], + [1, 3, 6749], + [0, 0, 0, 6750, 5], + [0, -1823, -3586, -11850, -11851, -11852, -11853, -3100, -4865], + [1, 3, 6752], + [0, 6753, 6754, 6755, 5], + [0, -11854, -719, -1063, -1392, -1526, -2177, -2359, -11855], + [0, -3244, -190, -3748, -4200, -11856, -3037, -3199, -3628, -11857, -427, -428, -932, -11858, -2125, -2410], + [0, -687, -11859, -8109, -8403], + [1, 3, 6757], + [0, 6758, 6759, 6760, 5], + [0, -1828], + [0, -3037, -519, -826, -2384, -2541], + [ + 0, -1961, -997, -5389, -6820, -8397, -10670, -6821, -8401, -6822, -8124, -11860, -11861, -4116, -11862, -8402, + -4865, -5092, -510, -5867, -5923, -615 + ], + [1, 3, 6762], + [0, 0, 6763, 6764, 5], + [0, -519, -668, -826, -7426, -7424, -7427, -2384, -2541], + [ + 0, -1961, -6917, -11863, -4116, -7558, -9029, -9027, -11864, -11865, -510, -5867, -5923, -726, -11866, -5921, + -615 + ], + [1, 3, 6766], + [0, 6767, 6768, 6769, 4], + [0, -996, -1828], + [0, -5918, -3268, -3037, -589, -825, -826, -7426, -7963, -7424, -7427, -2384, -2392, -2410, -2541], + [ + 0, -1961, -1986, -11450, -6729, -7331, -11866, -7329, -11685, -7333, -7334, -11867, -11038, -11033, -11868, + -5418, -4107, -510, -5867, -5923, -615 + ], + [1, 3, 6771], + [0, 0, 6772, 6773, 11], + [0, -519, -826, -7426, -9161, -2210, -7427, -2384, -2541], + [0, -1961, -7430, -6324, -11869, -510, -5867, -5923, -4123, -11870, -5391, -615], + [1, 3, 6775], + [0, 6776, 6777, 6778, 4], + [0, -1107], + [0, -1415, -1942, -4701], + [0, -856, -2299, -11871, -11872], + [1, 3, 6780], + [0, 6781, 6782, 6783, 5], + [0, -11873, -522, -594, -719, -914, -1496, -1689, -1750, -1978, -2177], + [0, -652, -932, -11874, -1654, -11875, -4654, -2210], + [ + 0, -4665, -4666, -10432, -11876, -5879, -4864, -5986, -522, -7144, -687, -11877, -11878, -11879, -10770, -1830, + -1978, -9246, -11880, -3634, -2451, -11881 + ], + [1, 3, 6785], + [0, 6786, 6787, 6788, 4], + [ + 0, -11678, -4280, -4283, -4306, -283, -4287, -11666, -9084, -1767, -1769, -4291, -1770, -1957, -10592, -11882, + -2247, -2323 + ], + [0, -280, -4298, -4300, -1315, -11719, -1722, -11883, -2125, -2319], + [0, -7442, -1764, -5889], + [1, 3, 6790], + [0, 6791, 6792, 6793, 8], + [0, -9491, -9492, -11884, -807, -7731, -11885, -1548, -1574, -1591, -1826, -1877, -2400, -11886], + [0, -5918, -5033, -3044, -3037, -11887, -743, -825, -1043, -1098, -9810, -1849, -11888, -2392, -2410, -2541], + [ + 0, -11889, -3258, -9204, -3578, -2435, -9804, -8799, -9711, -11890, -11891, -5566, -4045, -9552, -3576, -7419, + -1978, -10366, -6527, -3839, -7650, -3264, -11878, -9712, -8633, -8634, -7715, -8640, -9235 + ], + [1, 3, 6795], + [0, 0, 6796, 6797, 4], + [0, -3037, -3664, -6593, -7653, -7654, -932, -958, -960, -1449, -2410, -2466, -2469], + [0, -3100, -3445, -3261, -3098, -3160, -6107, -9975, -9612, -11074], + [1, 3, 6799], + [0, 0, 6800, 6801, 11], + [0, -40, -3326, -350, -351, -932, -1103, -1654, -1687, -10835, -1788, -2127, -2140, -2195], + [0, -9506, -6827, -10350, -6826], + [1, 3, 6803], + [0, 6804, 38, 6805, 6], + [ + 0, -11064, -668, -6842, -1000, -1039, -1099, -1111, -1333, -1465, -1630, -1641, -1836, -2114, -11892, -2433, + -2551 + ], + [0, -11893, -3445, -687, -10810, -3690], + [1, 3, 6807], + [0, 6808, 6809, 6810, 5], + [0, -11197, -1582, -2291], + [0, -190, -865, -932, -940, -958, -965, -967, -968, -1110, -1548, -1654, -1942, -2340, -2892, -2410], + [0, -11893, -3323, -4725, -11894, -3844, -3445, -3690, -3691, -4055], + [1, 3, 6812], + [0, 0, 6813, 6814, 6], + [0, -615, -664, -710, -1654], + [0, -5921, -5550], + [1, 3, 6816], + [0, 6817, 6818, 6819, 9], + [0, -44, -3345, -772, -11895, -11896, -2531], + [ + 0, -23, -26, -38, -40, -41, -42, -190, -3266, -11897, -3470, -7040, -3471, -3472, -7041, -7042, -11898, -533, + -8580, -11899, -708, -753, -767, -932, -8147, -960, -1004, -1168, -1174, -1268, -1412, -10034, -11900, -1415, + -1419, -1446, -11901, -1534, -4375, -3156, -11220, -11902, -1978, -2082, -2174, -2411, -2466, -11903, -10092 + ], + [0, -5801, -3162, -3690], + [1, 3, 6821], + [0, 6822, 0, 6823, 5], + [0, -3223], + [0, -3264, -3215, -5177, -11904, -4681, -5922, -11905, -11906, -6595, -1839, -4142, -11907, -11908, -1838, -6233], + [1, 3, 6825], + [0, 0, 6826, 7, 6], + [0, -1654, -932, -1405, -589, -11909, -585, -966, -958, -968, -943, -974], + [1, 3, 6828], + [0, 6829, 6830, 6831, 10], + [0, -11910, -2445, -1846], + [0, -664, -1654, -1592, -1972, -666, -11911], + [0, -1004, -729, -6120, -8449, -3173], + [1, 3, 6833], + [0, 6834, 6835, 6836, 8], + [0, -1845], + [0, -1592, -1654, -664, -666], + [0, -1841, -4038, -6120, -8449, -3173, -9795], + [1, 3, 6838], + [0, 6839, 236, 6840, 4], + [0, -1846], + [0, -1841, -8427, -6120, -8449, -3173, -11912, -5110], + [1, 3, 6842], + [0, 6843, 236, 237, 8], + [0, -11913, -1845], + [1, 3, 6845], + [0, 6846, 6847, 237, 5], + [0, -11914, -1791, -1846, -10686, -2445], + [0, -1592, -1654, -664, -1972, -666], + [1, 3, 6849], + [0, 0, 114, 6850, 4], + [0, -1841, -6539], + [1, 3, 6852], + [0, 6853, 0, 6854, 5], + [0, -1958, -2444], + [0, -11153, -1847], + [1, 3, 6856], + [0, 0, 31, 6857, 8], + [0, -4865, -633, -1847], + [1, 3, 6859], + [0, 0, 238, 6860, 5], + [0, -1847, -6788, -11915, -6656, -7693, -1076, -7422, -7000, -11786, -9330], + [1, 3, 6862], + [0, 0, 118, 6863, 4], + [ + 0, -1847, -9098, -6656, -11070, -11634, -11916, -11917, -6441, -2444, -5260, -3103, -6989, -3582, -5396, -1391, + -6659, -7440 + ], + [1, 3, 6865], + [0, 0, 6866, 6867, 8], + [0, -6918, -5295, -3037, -3199, -3664, -10880, -2214, -2410, -2469], + [0, -1004, -5570, -10470, -9843], + [1, 3, 6869], + [0, 0, 6870, 7, 5], + [0, -3037, -3664, -672, -928, -932, -944, -1431, -1942, -2410, -2423, -2469, -11918], + [1, 3, 6872], + [0, 6873, 6874, 57, 4], + [0, -1406, -1460, -7885], + [0, -1078, -1654, -1941], + [1, 3, 6876], + [0, 6877, 6878, 6879, 4], + [0, -11919, -11920, -1834, -2062, -9789, -2446], + [0, -3037, -640, -997, -1942, -2322, -2410], + [0, -6528, -3262], + [1, 3, 6881], + [0, 6882, 6883, 6884, 10], + [0, -772, -4702, -11921, -11922, -11923], + [ + 0, -23, -3840, -40, -190, -3326, -533, -11924, -11925, -627, -633, -659, -709, -932, -1103, -1110, -1415, -1419, + -4981, -1599, -11926, -1942, -1974, -2127, -4063 + ], + [0, -6528, -11927, -11928, -6524, -10855, -9472], + [1, 3, 6886], + [0, 0, 6887, 7, 4], + [0, -615, -11929, -664, -11930, -710, -1654, -1939], + [1, 3, 6889], + [0, 6890, 6891, 6892, 4], + [0, -10416, -11931, -11932, -11933, -11934, -11935], + [0, -11936, -11937, -510, -615, -705, -11938, -2410, -2469, -9667], + [0, -7685, -11939, -1857, -11940, -10425, -6321, -11941], + [1, 3, 6894], + [0, 6895, 6896, 6897, 5], + [0, -1860, -2239, -2520], + [ + 0, -526, -527, -528, -556, -558, -559, -6089, -932, -934, -956, -958, -1059, -11942, -1415, -1417, -11943, + -9913, -2125 + ], + [0, -1858, -1859, -9879], + [1, 3, 6899], + [0, 6900, 6901, 239, 11], + [0, -1018, -1077, -7234, -9423, -1959, -2105, -7241, -2518], + [0, -932, -1754], + [1, 3, 6903], + [0, 6904, 6905, 239, 5], + [0, -925, -1018, -1077, -7234, -9423, -1959, -2105, -7241, -2518], + [0, -932, -1754, -4881], + [1, 3, 6907], + [0, 6908, 6909, 6910, 5], + [ + 0, -501, -714, -728, -11944, -752, -9012, -1412, -1646, -1810, -1812, -3547, -11945, -1878, -1965, -1982, -2105, + -2195, -2433 + ], + [0, -7672, -932, -942, -943, -958, -966, -968, -974, -1405], + [0, -687, -752, -1861, -11946, -11947], + [1, 3, 6912], + [0, 0, 70, 7, 11], + [1, 3, 6914], + [0, 0, 0, 6915, 8], + [0, -3974, -714, -5538, -687, -4000], + [1, 3, 6917], + [0, 0, 6918, 6919, 5], + [0, -932, -10999, -1202, -1654, -1788], + [0, -1107, -5572, -1864], + [0, 44, 15, 16, 8], + [1, 3, 6922], + [0, 0, 6923, 6924, 9], + [0, -519, -11948, -2384, -11135, -2541], + [ + 0, -8124, -5865, -1961, -5923, -11949, -5500, -3966, -11301, -11300, -5845, -6408, -4001, -8911, -6509, -510, + -5867, -4795, -615 + ], + [1, 3, 6926], + [0, 6927, 6928, 6929, 10], + [0, -11950, -11951, -11952, -11953, -8543, -11954, -11955, -7967, -11956, -11957, -11958], + [ + 0, -2832, -11419, -11959, -3037, -468, -11960, -2917, -648, -812, -2758, -932, -958, -965, -966, -968, -999, + -11961, -11962, -1362, -1415, -1573, -1577, -11963, -2884, -11964, -1939, -1972, -1976, -2125, -2177, -2240, + -11965, -2269, -2322, -2347, -2379, -2384, -2410, -2520 + ], + [0, -5922, -3444, -5827, -4055], + [1, 3, 6931], + [0, 0, 6932, 6933, 4], + [0, -932, -940, -8177, -966, -967, -1344, -1415, -1942, -2331], + [0, -1764, -11966, -11967, -7646, -11968], + [1, 3, 6935], + [0, 6936, 6937, 6938, 5], + [0, -1880], + [0, -932, -10497, -2410], + [0, -6527, -10588, -834], + [1, 3, 6940], + [0, 6941, 6942, 6943, 6], + [0, -8341], + [0, -2541, -519, -2384, -2331], + [ + 0, -5897, -4055, -5756, -1764, -11969, -5573, -8804, -1047, -5504, -8805, -8806, -6656, -7282, -5572, -2114, + -8807, -6370, -7420, -7421, -2487, -8808, -1847 + ], + [1, 3, 6945], + [0, 175, 14, 6946, 5], + [ + 0, -7861, -5897, -6656, -5573, -8804, -1047, -5504, -8805, -8806, -7282, -5572, -2114, -8807, -6370, -7420, + -7421, -2487, -8808, -1847 + ], + [1, 3, 6948], + [0, 0, 84, 6949, 5], + [0, -8041, -3674, -10484], + [1, 3, 6951], + [0, 6952, 0, 7, 5], + [0, -3982], + [1, 3, 6954], + [0, 6955, 6956, 6957, 11], + [0, -4733, -578, -2538], + [0, -633, -1654, -6810, -2568], + [0, -5736, -4865, -8995, -1875, -3215, -6597], + [1, 3, 6959], + [0, 6960, 6961, 6962, 4], + [0, -479], + [0, -932, -937, -966, -1001, -1654, -1788, -2410], + [0, -6324, -3862, -1266], + [1, 3, 6964], + [0, 6965, 14, 6966, 8], + [0, -11970], + [0, -9757, -11971, -1878, -9756, -11972, -10781, -2265, -11973, -11974, -11975], + [1, 3, 6968], + [0, 0, 6969, 6970, 9], + [0, -664, -1405, -1654, -2176], + [0, -9757, -11971, -1878, -9756, -9763, -1369], + [1, 3, 6972], + [0, 6973, 70, 6974, 8], + [ + 0, -11976, -11977, -11978, -11979, -483, -510, -11980, -679, -11981, -719, -764, -809, -812, -910, -995, -11982, + -1650, -1708, -11983, -11984, -11985, -11986, -11987, -3968, -2177, -2234, -2243, -11988, -1442 + ], + [ + 0, -687, -8947, -8948, -3674, -1879, -11989, -1573, -4055, -1004, -1277, -11990, -11492, -11991, -11992, -11993, + -11994, -11995, -11996, -11997, -9466, -11998, -11148, -5731, -3207, -11999, -12000, -12001, -12002, -12003, + -8901, -8902, -11586, -2295, -12004, -1753, -12005, -7662, -12006, -11230, -12001, -12007, -1066, -11429, + -12008, -5805, -11486, -8944, -12009, -12010, -12011, -12012, -9844, -7606, -763, -8904, -12013 + ], + [1, 3, 6976], + [0, 0, 6977, 6978, 4], + [0, -633, -641, -729, -932, -940, -1788, -1942, -1978, -2187, -12014, -2322], + [0, -12015, -6116, -6117, -12016, -12017, -3215, -7715, -11923, -12018, -1880], + [1, 3, 6980], + [0, 6981, 6982, 6983, 9], + [0, -2381], + [0, -909, -1415, -1421, -1425, -2231], + [0, -2501, -2552, -10054, -10055], + [1, 3, 6985], + [0, 0, 0, 6986, 4], + [ + 0, -1882, -12019, -3015, -12020, -11037, -5922, -12021, -1380, -7856, -10606, -5880, -3209, -10440, -10527, + -1764, -11683, -10484, -7442, -12022, -12023, -6694, -5881, -12024, -12025, -10444 + ], + [1, 3, 6988], + [0, 241, 6989, 6990, 5], + [0, -2334, -2379, -2410], + [ + 0, -12026, -12027, -12028, -12029, -12030, -12031, -12032, -12033, -3690, -12034, -12035, -12036, -12037, -3445, + -3100, -2410 + ], + [1, 3, 6992], + [0, 39, 6993, 6994, 4], + [ + 0, -21, -23, -32, -38, -39, -40, -6056, -3326, -351, -3561, -528, -533, -535, -12038, -767, -796, -856, -932, + -934, -958, -1059, -11942, -1344, -1415, -1534, -11943, -1942, -12039, -1993, -2127, -2139, -2140, -2174, -2200, + -12040, -2410, -2449 + ], + [0, -2278, -1885, -906, -12041, -3771, -12042, -2006, -5411, -2410, -12043, -12044, -12045, -712, -5535], + [1, 3, 6996], + [0, 0, 6997, 6998, 5], + [0, -12046, -12047, -12048, -12049, -932, -12050, -2410], + [0, -12051, -3095, -7582, -3821, -3822, -12052, -12053], + [1, 3, 7000], + [0, 7001, 7002, 7003, 6], + [0, -510, -812], + [0, -1415], + [0, -1334, -12054, -8113], + [1, 3, 7005], + [0, 7006, 0, 7007, 8], + [0, -1699, -1863, -2232], + [0, -775, -1889, -9336, -3277, -3215, -12055, -6408, -12056, -3186], + [1, 3, 7009], + [0, 7010, 7011, 7012, 8], + [0, -1931, -1934], + [0, -3037, -932, -940, -12057, -1889, -1942, -2410], + [0, -775, -1889, -3583, -12058, -12059], + [1, 3, 7014], + [0, 7015, 7016, 7017, 4], + [0, -679, -3227, -1077, -1863, -1907, -12060, -6467, -12061, -2218, -2654, -2550], + [0, -519, -652, -756, -932, -12062, -1110, -1889, -1906, -1942, -2289, -2446], + [0, -687, -1889, -9300], + [1, 3, 7019], + [0, 7020, 0, 7021, 6], + [0, -2953, -93, -94, -97, -12063], + [0, -712, -12064, -775, -3099, -5112, -12065, -12066, -12067, -11788, -1889, -3583, -5549, -12068, -7451, -4132], + [1, 3, 7023], + [0, 7024, 7025, 7026, 6], + [0, -635, -12069, -2840, -1934], + [0, -12070, -1889], + [0, -712, -714, -724, -775, -1644, -1889, -3583], + [1, 3, 7028], + [0, 242, 22, 7029, 9], + [0, -775, -7193, -1889, -3583], + [1, 3, 7031], + [0, 7032, 7033, 7034, 5], + [ + 0, -518, -12069, -668, -12071, -12072, -1889, -12073, -12074, -1890, -12075, -12076, -12077, -12078, -12079, + -12080, -12081, -12082, -1896, -1897, -1898, -12083, -12084, -12085, -12086, -12087, -1917, -12088, -12089, + -12090, -12091, -12092 + ], + [ + 0, -526, -527, -534, -558, -560, -565, -8161, -682, -778, -12093, -12094, -12095, -12096, -12097, -932, -12098, + -949, -969, -1017, -1041, -1304, -12099, -1442, -1455, -1600, -12100, -1633, -12101, -12102, -12103, -12104, + -12105, -12106, -12107, -12108, -12109, -11748, -1762, -12110, -1792, -1812, -12111, -1906, -1908, -12060, + -7033, -1967, -2006, -2019, -12112, -2125, -2269, -2275, -2322, -12113, -2501, -2505, -12114 + ], + [0, -1889, -3583, -775, -5387, -12115], + [1, 3, 7036], + [0, 7037, 0, 7038, 5], + [0, -12116, -93, -94, -95], + [0, -12117, -12118, -775, -12119, -3586, -12120, -1889, -3583, -12121, -5101, -4681, -5387], + [1, 3, 7040], + [0, 7041, 0, 7042, 4], + [0, -12116, -93, -94, -12063, -1934], + [0, -775, -12119, -3586, -3587, -1889, -3583, -3589, -4681, -3591, -3592, -5387], + [1, 3, 7044], + [0, 7045, 0, 7046, 4], + [0, -12116, -93, -94, -1931], + [0, -12117, -12118, -775, -12119, -3586, -12122, -8109, -1889, -3583, -11315, -12123, -4681, -5387], + [1, 3, 7048], + [0, 90, 7049, 7050, 6], + [0, -1889, -1930, -10815], + [0, -775, -3485, -1889, -3583], + [1, 3, 7052], + [0, 0, 22, 7053, 9], + [0, -775, -816, -7192, -1889, -3583], + [1, 3, 7055], + [0, 0, 22, 7056, 4], + [0, -6454, -775, -12124, -1644, -7193, -1889, -3583], + [1, 3, 7058], + [0, 0, 7059, 7060, 6], + [0, -834, -1863, -1889], + [0, -1889, -775, -3583, -12125, -12126, -12127], + [1, 3, 7062], + [0, 0, 7063, 7064, 8], + [0, -664, -1168, -1197, -1231], + [0, -1889, -775, -3583, -12128, -6445, -12129], + [1, 3, 7066], + [0, 7067, 7068, 7069, 9], + [0, -1333, -3187, -1889, -1929], + [ + 0, -8281, -518, -664, -708, -932, -940, -954, -8286, -961, -965, -8287, -967, -971, -980, -7355, -1654, -8324, + -1788, -12130, -1930, -12131, -1942, -2281, -2282, -2289 + ], + [0, -1889, -4132, -3264, -2476, -12132, -12133, -775, -1521, -2162, -3754, -12134, -2289], + [1, 3, 7071], + [0, 7072, 0, 7073, 10], + [0, -12063, -1934], + [0, -5182, -775, -6527, -12135, -5399, -7036, -1889, -3583, -9804, -3576], + [1, 3, 7075], + [0, 7076, 7077, 7078, 10], + [0, -1934, -12061, -2114], + [0, -519, -652, -932, -12062, -967, -1110, -1889, -1930, -1942, -2289], + [0, -775, -1889, -3583, -6024, -12136, -1764], + [1, 3, 7080], + [0, 7081, 0, 7082, 4], + [0, -1532], + [0, -1889, -12137, -12138], + [1, 3, 7084], + [0, 7085, 7086, 7087, 5], + [0, -1431, -2177, -755], + [ + 0, -824, -1415, -1521, -2162, -1344, -1623, -12139, -774, -932, -784, -825, -1110, -1889, -2289, -2375, -2379, + -2501, -1942, -767, -21, -190, -533, -2790, -2269, -23, -1522, -1534, -1771, -2163, -12140, -1906, -1916, -86, + -965, -3560, -2251, -40, -2411, -959, -1907, -958, -6929, -978, -940, -967, -3748, -12141, -3307 + ], + [0, -775, -1889, -9300, -2501, -5050], + [1, 3, 7089], + [0, 7090, 22, 7091, 6], + [0, -1934, -2280], + [0, -775, -1644, -7192, -1889, -3583], + [1, 3, 7093], + [0, 7094, 7095, 7096, 8], + [0, -635, -12069, -1931, -12142], + [0, -12070, -1889, -10815, -1899], + [0, -775, -7192, -1889, -3583], + [1, 3, 7098], + [0, 60, 22, 7099, 5], + [0, -775, -3827, -12143, -12144, -7192, -3583], + [1, 3, 7101], + [0, 7102, 22, 50, 10], + [0, -2840, -1934, -12142], + [1, 3, 7104], + [0, 7105, 22, 7106, 10], + [0, -635, -1934, -12142], + [0, -1889, -775, -3583, -1644, -7192, -5154], + [1, 3, 7108], + [0, 7109, 7110, 7111, 4], + [0, -783, -1931], + [0, -12145, -1889], + [0, -775, -1644, -7192, -1889, -3583, -12123], + [1, 3, 7113], + [0, 7114, 130, 7115, 10], + [0, -2773, -1931, -1934], + [0, -12146, -1889, -775, -3583], + [1, 3, 7117], + [0, 90, 0, 7118, 11], + [0, -1889, -775, -3583, -2162, -8893], + [1, 3, 7120], + [0, 7121, 0, 7122, 11], + [0, -12147, -98, -1931], + [ + 0, -12148, -6599, -12149, -775, -12115, -12119, -8893, -12150, -1889, -3583, -8199, -12123, -4682, -4683, -4132, + -5387 + ], + [1, 3, 7124], + [0, 7125, 7126, 7127, 5], + [0, -12151, -12152, -12153], + [0, -12154, -635, -1889, -1906, -2127], + [0, -1889, -775, -3583, -12155, -6413, -12156], + [1, 3, 7129], + [0, 0, 22, 7130, 6], + [0, -1889, -775, -3583, -9791], + [0, 60, 22, 50, 4], + [1, 3, 7133], + [0, 60, 22, 50, 11], + [1, 3, 7135], + [0, 242, 22, 50, 8], + [1, 3, 7137], + [0, 60, 22, 7138, 4], + [0, -775, -6811, -7192, -7193, -1889, -3583, -2435], + [1, 3, 7140], + [0, 7141, 22, 50, 5], + [0, -1934, -12142], + [1, 3, 7143], + [0, 0, 7144, 7145, 4], + [0, -1344, -1654, -1889, -1405, -1942, -1534, -1916], + [0, -1889, -5899, -12123, -3583, -775, -3585, -3862], + [1, 3, 7147], + [0, 7148, 0, 7149, 5], + [ + 0, -12157, -5297, -12158, -12159, -12160, -12161, -12162, -12163, -12164, -12165, -12166, -12167, -12168, + -12169, -12170, -96, -12171, -12172, -12173, -12174, -12175, -12176, -12177, -12178, -12179, -12180, -12181, + -12182, -12183, -97, -12184, -12185, -12186, -12187, -12188, -12189, -12190, -12191, -12192, -12193, -12194, + -518, -635, -12195, -12196, -12197, -782, -12074, -12198, -1892, -12077, -12080, -1896, -1897, -1898, -12199, + -12200, -2579, -12201, -12084, -12202, -1905, -12203, -12204, -1917, -2635, -12205, -12206, -12207, -12088, + -12090, -12092 + ], + [0, -775, -12119, -7186, -6309, -12208, -2634, -1889, -3583, -4682, -4683, -7187, -5387], + [1, 3, 7151], + [0, 7152, 7153, 50, 8], + [0, -635, -12069], + [0, -12070, -1329, -1889], + [1, 3, 7155], + [0, 0, 0, 7156, 4], + [0, -775, -1889, -12209, -3215, -8947], + [1, 3, 7158], + [0, 0, 0, 7159, 4], + [0, -775, -1889, -12209, -3215, -3754, -2162], + [1, 3, 7161], + [0, 7162, 7163, 7, 11], + [0, -783, -9649], + [ + 0, -21, -23, -32, -4952, -26, -40, -43, -519, -535, -6831, -825, -932, -958, -1107, -1646, -1788, -1889, -2177, + -2410 + ], + [1, 3, 7165], + [0, 7166, 7167, 7168, 8], + [0, -1934, -2303], + [0, -12072, -1889], + [0, -775, -1644, -7192, -1889, -3583, -3839, -2303], + [1, 3, 7170], + [0, 90, 22, 50, 4], + [1, 3, 7172], + [0, 0, 7173, 7174, 4], + [0, -932, -1344, -1534, -1942, -2320, -2322], + [0, -1889, -5846, -3215], + [1, 3, 7176], + [0, 7177, 0, 7178, 4], + [0, -12210, -12211, -12212, -12213, -12214, -12215, -12216, -2387], + [0, -6321, -10425, -11940, -1857, -7685, -7773, -9879, -3323, -3445, -11941, -10424, -2410, -3018, -985], + [1, 3, 7180], + [0, 7181, 7182, 7183, 4], + [0, -4256, -4255], + [0, -86, -9404, -652, -664, -665, -667, -740, -1344, -1448, -1534, -1654, -2250], + [0, -3264, -6597, -9727, -3215, -6408, -12217, -12056, -3277, -12218], + [1, 3, 7185], + [0, 7186, 0, 7187, 5], + [0, -12219, -2446, -1523, -1525, -2347, -12220, -1524, -12221, -1729, -12222, -12223, -2062, -12224, -12225], + [0, -7773, -11304, -1937], + [1, 3, 7189], + [0, 7190, 7191, 7192, 4], + [0, -5830, -12226, -12227, -12228, -2546], + [ + 0, -526, -566, -3067, -551, -558, -633, -3346, -12229, -1003, -1471, -1475, -10495, -1479, -1482, -12230, -1654, + -12231, -7718, -1991, -2111, -2177 + ], + [0, -1938, -507, -5855, -4004, -3634, -3217, -3272], + [1, 3, 7194], + [0, 7195, 7196, 7197, 6], + [0, -769, -9798, -2518], + [0, -509, -1405, -1654], + [0, -5889, -3322, -1764, -1939, -12232, -11727, -4004, -3113], + [1, 3, 7199], + [0, 0, 7200, 7201, 11], + [ + 0, -12233, -12234, -23, -3408, -5321, -40, -43, -2581, -3035, -3621, -3037, -4372, -5286, -3899, -12235, -664, + -756, -767, -12236, -928, -1344, -12237, -1637, -1654, -1772, -8065, -10105, -1967, -5037, -2210, -2211, -2334, + -2410, -2426, -2466, -2469, -4881 + ], + [0, -1940, -2006, -3160, -3477, -12238, -9613, -3098, -12239, -3577, -3161], + [1, 3, 7203], + [0, 7204, 27, 57, 5], + [0, -668, -679, -1078, -7885], + [1, 3, 7206], + [0, 7207, 7208, 7209, 4], + [0, -12240, -3896, -1618], + [ + 0, -8918, -3307, -350, -4062, -351, -3136, -4251, -427, -428, -721, -932, -940, -967, -1344, -1415, -12241, + -12242, -1942, -2127, -2251, -2334, -2379, -2410 + ], + [0, -1942, -3862, -1446, -8222], + [1, 3, 7211], + [0, 0, 7212, 7213, 6], + [0, -3037, -12243, -519, -1942, -2410, -5627], + [0, -1942, -12244, -2410, -12245, -12246], + [1, 3, 7215], + [0, 7216, 7217, 7218, 8], + [0, -7969], + [0, -1772, -1942], + [0, -10484, -3862, -1942], + [1, 3, 7220], + [0, 0, 7221, 7222, 6], + [0, -4066, -350, -351, -3037, -519, -1942, -2127, -2141, -2299, -2379, -2387, -2410], + [0, -1942, -2299], + [1, 3, 7224], + [0, 7225, 0, 7226, 6], + [0, -12247, -1548, -2001], + [0, -1942, -727], + [1, 3, 7228], + [0, 0, 14, 7229, 4], + [0, -3240, -651, -6472, -1044, -8799, -6656, -8574, -12248, -8800, -12249, -6582, -12250, -9782, -12251], + [1, 3, 7231], + [0, 7232, 7233, 7234, 8], + [0, -1548, -12252], + [0, -664, -710, -711, -12253, -1654], + [0, -3240, -6324, -12254, -812, -12255, -8800, -5598, -9361, -3276, -8574], + [1, 3, 7236], + [0, 7237, 7238, 7, 5], + [0, -4046, -482, -2029], + [0, -3040, -6633, -3081, -1361, -1427, -2006, -2019, -2052], + [1, 3, 7240], + [0, 7241, 14, 7242, 6], + [0, -12256], + [ + 0, -3240, -9361, -8574, -9854, -12248, -8800, -4123, -1681, -12257, -7219, -12258, -7434, -5554, -2265, -6240, + -12259 + ], + [1, 3, 7244], + [0, 7245, 0, 7246, 6], + [0, -3446, -2387, -1353, -3535, -1864, -12260, -1863], + [0, -5889, -12261, -12262, -1942, -1952, -5538, -707, -12263, -12232], + [1, 3, 7248], + [0, 7249, 7250, 7251, 5], + [0, -714, -1646], + [0, -1654, -1452, -2198, -1405, -756, -1657], + [0, -4055, -687, -5538, -714], + [1, 3, 7253], + [0, 7254, 7255, 7256, 5], + [0, -1692, -10425, -2961, -12264, -12265, -12266], + [ + 0, -1816, -2564, -1313, -1415, -1805, -999, -1496, -12267, -1852, -865, -3913, -6570, -679, -1077, -367, -7043, + -5672, -1424, -1575, -1729, -12268, -2269, -12269, -2410, -3136, -3037, -10624, -12270, -511, -1101, -12271, + -1769, -12272, -12273, -12274, -12275, -12276, -10419, -12277, -3048, -12278, -4835, -4106, -12279, -12280, + -12281, -5038, -12282, -12283, -12284, -12285, -12286, -8863, -12287, -12288, -12289, -5782, -12290, -12291 + ], + [ + 0, -4340, -12292, -12293, -12294, -12295, -7685, -7773, -7485, -12296, -4165, -12297, -12298, -12299, -1857, + -12300, -12301, -12302, -12303, -12304, -12305, -12306, -12307, -12308, -12309 + ], + [1, 3, 7258], + [0, 0, 7259, 7260, 4], + [ + 0, -4201, -589, -664, -12310, -824, -12311, -932, -960, -971, -1168, -1184, -1187, -1208, -2915, -1243, -1244, + -12312, -1273, -1333, -1339, -1449, -1654, -1729, -1771, -1942, -1976, -8318, -8319, -12313, -2091, -8320, + -2205, -12314, -2550 + ], + [0, -12315, -4131], + [1, 3, 7262], + [0, 7263, 7264, 7265, 8], + [0, -615, -617, -714, -1004, -1576, -1650, -1666, -12316, -1813, -1850, -12317], + [0, -664, -1168, -1231, -1663, -2150, -2210, -2211, -2291], + [0, -622, -6011, -11722, -7737, -7736, -3324, -5889, -12318, -5897], + [1, 3, 7267], + [0, 0, 29, 7, 4], + [1, 3, 7269], + [0, 0, 7270, 7271, 6], + [0, -2568, -1654], + [0, -1958], + [1, 3, 7273], + [0, 0, 0, 7274, 7275], + [0, -687, -1959], + 1769904000000, + [1, 3, 7277], + [0, 7278, 0, 7279, 4], + [0, -668, -1959], + [0, -2501, -3862, -1959, -10677], + [1, 3, 7281], + [0, 7282, 7283, 7, 8], + [0, -11744], + [0, -461, -2125, -1405], + [1, 3, 7285], + [0, 0, 7286, 7287, 6], + [ + 0, -633, -767, -932, -4693, -1344, -1471, -1472, -1475, -1482, -1534, -1654, -1771, -1942, -2125, -2127, -2143, + -2210, -2491, -2410 + ], + [0, -1961, -1962, -6948, -6306], + [1, 3, 7289], + [0, 7290, 226, 7291, 4], + [0, -1654, -2210, -2424], + [0, -5923, -6306], + [1, 3, 7293], + [0, 89, 7294, 57, 6], + [0, -891, -1050, -1654, -1941], + [1, 3, 7296], + [0, 7297, 7298, 7299, 6], + [0, -5758, -510, -2059, -5975, -2520], + [0, -932, -2471], + [0, -1965, -3958, -12319, -3926], + [0, 7301, 7302, 7303, 6], + [0, -1496, -12320], + [0, -21, -23, -36, -40, -2320, -2322], + [0, -3160, -1966, -687, -1965, -3964, -3958, -3962, -3957, -3972, -3824, -3955, -12321], + [1, 3, 7305], + [0, 7306, 7307, 41, 5], + [0, -1580, -1792, -2029], + [0, -533, -560, -633, -647, -932, -1365, -1415, -2006, -12322, -12323], + [1, 3, 7309], + [0, 0, 7310, 7311, 11], + [ + 0, -4251, -3037, -12324, -652, -1318, -12325, -12326, -1942, -2094, -2100, -12327, -12328, -2399, -2410, -7669, + -2541 + ], + [0, -11876, -9681, -3264, -4675, -8041, -7153, -3839], + [1, 3, 7313], + [0, 7314, 7315, 7316, 5], + [0, -12329, -12330, -12331, -12332, -12333, -12334, -12335, -12336, -12337, -12338, -3037, -1578], + [ + 0, -589, -633, -12339, -647, -668, -931, -932, -986, -988, -1103, -11426, -12340, -9208, -1168, -1208, -1212, + -1252, -1262, -1446, -1646, -1788, -2080, -2322, -2388, -2410, -2416, -2461, -2462, -2463 + ], + [0, -12341, -12342, -12343, -2410], + [1, 3, 7318], + [0, 7319, 7320, 7321, 5], + [0, -12344, -11458, -2729, -2734, -668, -1107, -1412, -2779, -1980, -5471, -2173, -2234, -2818, -2819, -2550], + [ + 0, -3711, -3036, -9705, -12345, -8566, -3037, -617, -664, -665, -11477, -1003, -1004, -1168, -12346, -1260, + -1452, -1548, -1610, -1654, -12347, -2125, -2150, -2177, -2388, -12348, -2410, -12349 + ], + [0, -475, -4004, -3634, -11468, -12350, -11467], + [1, 3, 7323], + [0, 7324, 7325, 7326, 4], + [0, -4377, -12351, -812], + [0, -12352, -3198, -3136, -3037, -511, -1415, -2375, -2410, -9056], + [0, -1334, -1342, -1971, -729, -7680, -12353, -12354, -7827, -12355, -12356, -12357], + [1, 3, 7328], + [0, 7329, 7330, 231, 4], + [0, -12358, -12359, -2114], + [0, -1654, -12360, -2198, -2210, -2250], + [1, 3, 7332], + [0, 7333, 7334, 7335, 5], + [0, -668, -12361, -12362, -1376, -1392, -1548, -1639, -1728, -1820, -2177], + [0, -526, -555, -558, -824, -932, -940, -1362, -1405, -1650, -1654, -1661, -1942, -2125, -2198], + [0, -1168, -1764, -8403, -5897, -3551], + [1, 3, 7337], + [0, 7338, 7339, 7340, 10], + [0, -12363, -12364, -12365, -12366, -12367, -12368, -12369, -12370], + [0, -1650, -2125, -10011, -10009, -10013, -10014, -12371, -12372, -10010], + [0, -3264, -1409, -1974, -3110], + [1, 3, 7342], + [0, 0, 7343, 7, 4], + [0, -589, -11080, -1021, -1948, -12373, -2320, -2322], + [1, 3, 7345], + [0, 7346, 0, 7347, 4], + [0, -908, -1801], + [0, -8027, -11441, -7412, -5865], + [1, 3, 7349], + [0, 0, 7350, 7351, 4], + [0, -708, -1788, -1654], + [0, -1977, -4112, -12374, -12375, -12376, -2435, -12377], + [1, 3, 7353], + [0, 7354, 91, 7355, 5], + [0, -7591, -12378, -755, -11460, -12379, -12380], + [0, -1978, -10366, -11878, -4864], + [1, 3, 7357], + [0, 7358, 0, 7359, 8], + [0, -719, -1026, -1889, -1931], + [0, -7175, -7036, -6694, -7441, -775, -3264, -8199, -12381, -9487, -7725], + [1, 3, 7361], + [0, 0, 7362, 7363, 9], + [0, -1127, -1452, -1612, -1132, -1414, -1148, -1963], + [0, -1980, -1961, -5923, -6305, -6306, -6307, -6309, -510, -6310, -12382, -4865, -3966], + [1, 3, 7365], + [0, 0, 0, 7366, 10], + [0, -6935, -12383, -6934, -7715, -3839, -6527], + [1, 3, 7368], + [0, 0, 0, 7369, 4], + [0, -5514, -4111, -6935, -4000], + [1, 3, 7371], + [0, 7372, 7373, 7374, 4], + [0, -7397], + [ + 0, -12384, -12385, -5834, -633, -647, -12386, -887, -921, -932, -993, -1065, -1107, -8080, -12387, -11104, + -7402, -1283, -1351, -1365, -1408, -1431, -1650, -1659, -6374, -1777, -1788, -1794, -8385, -2156, -9786, -2322, + -12388 + ], + [0, -1985, -1983, -5101, -2435, -1838, -6231], + [1, 3, 7376], + [0, 7377, 7378, 7379, 4], + [0, -12389, -12390, -12391], + [0, -519, -589, -821, -1023, -2384, -2541], + [0, -4865, -1985, -5101, -2265, -1983, -12392, -12393, -2435, -1838, -6231, -6422, -6420, -12394, -7724], + [1, 3, 7381], + [0, 0, 7382, 7383, 4], + [0, -4004, -12395, -2322], + [0, -4791, -5101, -1985], + [1, 3, 7385], + [0, 0, 7386, 7387, 4], + [0, -652, -1339, -12396], + [0, -1986, -510, -6235, -12397, -5418, -4107, -11866, -5920], + [1, 3, 7389], + [0, 119, 120, 7390, 4], + [ + 0, -1986, -11868, -12398, -12399, -12400, -3214, -7484, -7485, -3756, -2410, -7486, -4165, -3018, -5418, -12401, + -1986, -12402, -12403, -12404, -10587, -11866, -12405, -11049, -7530, -7283, -12406, -6582, -7534, -7535, -7536, + -7537, -7538, -7539, -7540, -7541, -7542, -7543, -7544, -7545, -7503, -12407, -7547, -7548, -6948, -7549, -7550, + -7551, -7552, -7553, -7554, -7555, -7556, -7557, -2444, -7558, -7559, -5063, -7560, -1980, -12408, -5839, + -11450, -12409, -5737, -12410, -2634, -3966, -12411, -11052, -6187, -7563, -856, -7275 + ], + [1, 3, 7392], + [0, 7393, 7394, 7395, 4], + [0, -1549, -12412, -12413, -996], + [ + 0, -1107, -2303, -1449, -932, -2286, -2469, -2379, -2501, -1942, -2376, -21, -778, -2410, -23, -3037, -1322, + -2503, -534, -1304, -2275, -2287, -2508, -3046, -5286, -3983, -3164, -40, -2233, -2505, -12414, -1331, -958, + -2335, -940, -962, -967, -1643, -42, -12415, -428, -8561, -12416, -427, -4011, -948 + ], + [0, -1988, -3496, -3495, -3494, -3505, -3506, -3161], + [1, 3, 7397], + [0, 7398, 7399, 7400, 11], + [0, -719, -10988, -1747], + [ + 0, -1788, -1127, -1496, -932, -2125, -2127, -2177, -589, -1054, -12417, -2111, -1972, -8573, -23, -12418, -40, + -957, -966, -1138, -8022, -9544, -3326, -952, -958, -12419, -968, -1137, -3561, -943, -963, -350, -942, -351, + -12420, -3840 + ], + [0, -3634, -5119, -507, -5855, -2319, -2322, -1471, -1437], + [1, 3, 7402], + [0, 7403, 7404, 7405, 8], + [0, -12421], + [ + 0, -2832, -12422, -427, -428, -3664, -549, -558, -726, -932, -940, -967, -6726, -8011, -1942, -2910, -1989, + -2091, -12423, -2127, -4063, -2142, -2410, -2469, -2501 + ], + [0, -4865, -5092, -3264, -1989, -12424, -3634], + [1, 3, 7407], + [0, 7408, 7409, 7410, 4], + [0, -679, -719, -12425, -1048, -12426, -2114, -2488], + [ + 0, -510, -537, -559, -12427, -705, -10255, -10260, -957, -8022, -999, -1054, -1077, -1127, -1132, -1133, -1137, + -1138, -9544, -1149, -9240, -1152, -10257, -9241, -10644, -12418, -1542, -1972, -2111, -2128, -2177 + ], + [0, -3634, -5119, -1437], + [1, 3, 7412], + [0, 7413, 7414, 7415, 9], + [0, -1856], + [0, -12428, -633, -2322], + [0, -12429, -3582], + [1, 3, 7417], + [0, 0, 7418, 7419, 5], + [ + 0, -21, -23, -40, -43, -47, -3326, -10022, -12430, -571, -589, -693, -767, -12431, -932, -958, -1023, -1276, + -1442, -1654, -1771, -1788, -2125, -2127, -2143, -12432, -12433, -2210, -2342, -12434 + ], + [0, -1993, -5112, -5260, -8113, -3481, -11639, -12435, -12436, -12437, -9976, -12438], + [1, 3, 7421], + [0, 7422, 27, 7423, 6], + [0, -2172], + [0, -6555, -12439, -12439, -10781, -3262, -12440, -5554], + [1, 3, 7425], + [0, 177, 7426, 7427, 5], + [0, -1859, -2250, -2320, -2322, -2568], + [0, -770, -6555], + [1, 3, 7429], + [0, 7430, 27, 7, 10], + [0, -1995], + [1, 3, 7432], + [0, 0, 172, 7433, 9], + [0, -7434, -3215, -1334], + [1, 3, 7435], + [0, 7436, 7437, 7438, 6], + [0, -1616, -2446, -743, -12441, -2249], + [0, -1107, -1722, -1654, -2210, -932, -2198, -1405, -1942, -710, -940], + [0, -11428, -8980, -12442, -5545, -1998, -12443], + [1, 3, 7440], + [0, 7441, 7442, 7, 5], + [0, -651, -12444, -1351, -1335], + [0, -1788, -1654, -932, -615, -2884, -2155, -2062, -3748, -5029], + [1, 3, 7444], + [0, 205, 7445, 48, 5], + [ + 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -767, -824, -825, -932, -940, -958, -967, -1344, -1415, -1534, + -1623, -1771, -1942, -2251, -2501 + ], + [1, 3, 7447], + [0, 7448, 0, 7449, 4], + [0, -1371, -1646, -822, -2271], + [0, -727, -2001, -11642, -10659], + [1, 3, 7451], + [0, 7452, 7453, 7454, 5], + [0, -44, -682, -2004], + [ + 0, -12445, -407, -409, -3059, -3136, -3037, -3040, -3052, -6265, -767, -881, -932, -959, -978, -1031, -12446, + -1103, -1107, -1521, -1763, -12447, -2003, -4946, -2006, -2019, -2082, -2410 + ], + [0, -2006, -3159, -12448, -12449, -3962, -7434], + [1, 3, 7456], + [0, 7457, 7458, 7459, 5], + [0, -44, -5650, -682, -2004], + [ + 0, -12445, -409, -3136, -3040, -3052, -4972, -767, -881, -932, -978, -1031, -1103, -1521, -1763, -12447, -2006, + -2019, -2410 + ], + [0, -2006, -3159, -12450, -3821], + [1, 3, 7461], + [0, 7462, 7463, 7464, 5], + [0, -44, -2029], + [ + 0, -12445, -409, -3136, -3037, -3040, -3052, -6633, -12451, -4972, -6265, -761, -767, -881, -932, -959, -978, + -1031, -1107, -1344, -1534, -1763, -1942, -12447, -2006, -2019, -2410 + ], + [0, -2006, -2444], + [1, 3, 7466], + [0, 0, 0, 41, 10], + [1, 3, 7468], + [0, 7469, 0, 245, 10], + [0, -2055], + [1, 3, 7471], + [0, 7472, 7473, 245, 5], + [0, -1792], + [0, -1415, -2006, -2019, -2501], + [1, 3, 7475], + [0, 7476, 7477, 7478, 5], + [0, -12453, -12454, -12455, -12456, -12457], + [0, -2127, -2410], + [0, -3321, -1122, -2006, -3322, -8977, -3098], + [1, 3, 7480], + [0, 7481, 0, 7, 11], + [0, -1992, -753, -1961, -2516, -1792, -2082], + [1, 3, 7483], + [0, 7484, 0, 7485, 4], + [0, -2489, -1384, -682, -1967, -12458, -860, -44, -12459, -12460, -12461, -3140, -2055, -3024], + [0, -620, -2006, -3095, -3098, -12462, -3159], + [1, 3, 7487], + [0, 7488, 7489, 7490, 5], + [0, -12463, -1548, -1549, -12464, -1967, -12465, -2355], + [ + 0, -12466, -12467, -6263, -6264, -4749, -526, -527, -533, -534, -12468, -559, -560, -562, -566, -664, -12469, + -778, -915, -994, -1033, -1304, -1322, -1331, -1347, -1415, -1417, -12470, -1654, -1762, -1764, -1792, -2006, + -8934, -12471, -2019, -2024, -12472, -2052, -2102, -2109, -2125, -2275, -12473, -2501, -2505 + ], + [0, -2006, -12474, -3159, -8597, -4122, -12475, -10366, -12476, -3119, -3825], + [1, 3, 7492], + [0, 7493, 7494, 7495, 9], + [0, -747, -1967], + [ + 0, -21, -23, -32, -26, -36, -40, -41, -43, -534, -553, -778, -827, -932, -933, -958, -962, -969, -970, -1103, + -1331, -12477, -1643, -2006, -2019, -2275, -2322, -2501, -2503, -2505 + ], + [0, -3095, -3159, -2006, -12478, -699], + [1, 3, 7497], + [0, 7498, 7499, 7500, 9], + [0, -2852, -703, -807], + [ + 0, -23, -32, -3192, -3840, -26, -40, -41, -42, -190, -12479, -3326, -350, -351, -3266, -3267, -406, -409, -410, + -3330, -3136, -4961, -3037, -3040, -3052, -427, -428, -522, -533, -553, -753, -12480, -932, -940, -958, -959, + -969, -970, -9724, -1344, -1415, -4980, -1416, -1419, -1534, -1548, -1942, -2006, -2019, -2127, -5090, -2162, + -2223, -2281, -2282, -3436, -2285, -2375, -2387, -2410, -2411 + ], + [0, -2006, -4222, -4120, -4121, -3159], + [1, 3, 7502], + [0, 7503, 7504, 7, 5], + [ + 0, -1805, -668, -1359, -1111, -1872, -6558, -1047, -12481, -1966, -1044, -1273, -2269, -2343, -769, -2194, -635, + -1543, -6197, -12482, -22, -2070, -2021, -930, -1067 + ], + [0, -1415, -767], + [1, 3, 7506], + [0, 7507, 7508, 7, 6], + [0, -12483, -12484, -12485, -1025, -1311], + [0, -4010, -367, -409, -5220, -3136, -3037, -3040, -3052, -1415, -5129, -1771, -2006, -2019, -2200, -2410], + [1, 3, 7510], + [0, 7511, 7512, 7, 8], + [0, -12485], + [0, -4010, -367, -3136, -1771, -2200, -2410], + [1, 3, 7514], + [0, 7515, 0, 7516, 4], + [0, -2114, -8245, -23, -47, -4096, -3200, -46, -12486, -4776, -10101], + [0, -2006, -856, -12487], + [1, 3, 7518], + [0, 7519, 0, 41, 4], + [0, -2166], + [1, 3, 7521], + [0, 7522, 7523, 7524, 4], + [0, -12488, -12489, -1967], + [ + 0, -21, -23, -32, -3840, -12490, -34, -12491, -6065, -5584, -12492, -38, -40, -41, -43, -86, -9404, -12493, + -10709, -3326, -350, -351, -3470, -7040, -3472, -7041, -7042, -5295, -4774, -12494, -406, -407, -409, -2622, + -3040, -3052, -427, -428, -533, -535, -536, -720, -767, -932, -940, -958, -962, -966, -967, -969, -970, -1344, + -12495, -1357, -1415, -1534, -1609, -1868, -1942, -2006, -2019, -2049, -2052, -2125, -2127, -2140, -2174, -2214, + -2275, -2278, -2410, -2501, -12496 + ], + [0, -3159, -2006, -7581, -7582, -7764], + [1, 3, 7526], + [0, 0, 7527, 7528, 4], + [ + 0, -22, -23, -2624, -533, -534, -561, -668, -679, -767, -1059, -1320, -1415, -12497, -1792, -1961, -2000, -2006, + -2010, -2019, -2125, -12498, -2231, -2501 + ], + [0, -12499, -4132, -6324, -5547, -6335, -12500, -12501, -2489], + [1, 3, 7530], + [0, 7531, 7532, 7533, 4], + [0, -1792, -1967, -2798, -12502], + [ + 0, -527, -528, -537, -539, -546, -551, -558, -560, -664, -708, -740, -796, -932, -12503, -940, -958, -962, -964, + -967, -969, -1405, -1471, -1474, -12504, -1475, -1476, -1479, -12505, -1482, -1486, -1490, -1491, -11508, -1654, + -1942, -2006, -2019, -2125, -2127, -2128, -2131, -2137, -2138, -2210, -2211 + ], + [0, -2022, -12506, -2006, -10855, -12507, -12508, -12509, -10606, -11729, -3956, -12510, -5553], + [1, 3, 7535], + [0, 0, 7536, 7537, 4], + [ + 0, -3615, -262, -350, -351, -3266, -367, -7043, -407, -409, -3136, -3037, -3040, -3052, -3563, -795, -932, -940, + -3071, -967, -969, -970, -4814, -1344, -1415, -1419, -12511, -2781, -1534, -1942, -2006, -2019, -2125, -2127, + -2142, -2384, -2410, -2411, -2516, -2564 + ], + [0, -2006, -3322, -4053, -4054, -12512, -3926, -2410, -4124], + [1, 3, 7539], + [0, 7540, 7541, 7542, 6], + [0, -10579, -1109, -1311, -1543, -1967, -2030, -2192, -2231], + [ + 0, -3795, -3040, -3807, -526, -527, -528, -533, -536, -537, -546, -551, -556, -558, -560, -708, -6019, -761, + -767, -915, -12513, -916, -932, -933, -940, -958, -962, -969, -1344, -1415, -1534, -1942, -2006, -2019, -12514, + -2052, -2069, -2125, -2127, -2128, -2131, -2133, -2137, -2138, -2143, -2251, -12515 + ], + [0, -2006, -3214, -2501, -6211, -1540, -12516, -10589, -12517, -5932, -11492], + [1, 3, 7544], + [0, 7545, 7546, 7547, 6], + [0, -44, -2770, -12518], + [ + 0, -21, -23, -32, -12519, -36, -3204, -38, -39, -40, -41, -43, -3326, -350, -351, -3561, -3266, -406, -407, + -409, -3136, -3040, -3664, -7465, -527, -3766, -6046, -756, -757, -767, -932, -933, -940, -958, -12520, -962, + -969, -976, -1278, -1344, -1349, -1534, -1650, -1942, -2006, -2019, -2052, -2125, -2127, -2410, -2469, -2550 + ], + [0, -1349, -9780, -1348, -9781, -9782, -9772, -9783, -2006, -3476], + [1, 3, 7549], + [0, 0, 7550, 7551, 10], + [ + 0, -2832, -2581, -5295, -407, -409, -3037, -3040, -3052, -440, -2970, -3899, -8349, -1534, -1637, -1771, -1874, + -2910, -2006, -2019, -3246, -2214, -2391, -2410, -2469 + ], + [0, -2006, -3095, -3322, -12521, -12522, -12523, -12524, -12525, -12526, -12527], + [1, 3, 7553], + [0, 7554, 0, 7555, 4], + [0, -5220, -1311, -2387, -12528, -12529, -12530, -12531], + [0, -3276, -5538, -9783, -1348, -9780, -1382, -12250, -9782, -2006, -3476, -3940, -9781], + [1, 3, 7557], + [0, 0, 0, 41, 6], + [1, 3, 7559], + [0, 0, 7560, 7, 5], + [0, -656, -668, -932, -12532, -1415, -1417, -1942, -2127, -2138, -2143], + [1, 3, 7562], + [0, 7563, 7564, 7565, 6], + [0, -5334, -4251, -9596, -1291, -2632, -1619, -2098, -2101, -2427, -2429, -5358], + [ + 0, -409, -3037, -3040, -3052, -652, -725, -928, -969, -4652, -1942, -2006, -2019, -2088, -12533, -2094, -2095, + -2100, -4656, -2399, -2410, -2541 + ], + [0, -3272, -8630, -3095, -4329, -1599, -2006, -3159, -2093, -2427], + [1, 3, 7567], + [0, 7568, 7569, 7570, 5], + [0, -12534, -1967, -2030, -2489], + [ + 0, -12535, -526, -527, -528, -534, -535, -558, -560, -564, -756, -767, -932, -940, -12416, -958, -962, -967, + -969, -5997, -1471, -1475, -1476, -1479, -1482, -1483, -1490, -1492, -1654, -1771, -1942, -2006, -2019, -2043, + -2044, -2198, -2416, -2501, -2503, -2505 + ], + [0, -2006, -3159, -4126, -12536], + [1, 3, 7572], + [0, 7573, 7574, 7575, 5], + [0, -1856, -1967, -1992], + [ + 0, -525, -12537, -527, -528, -534, -709, -778, -932, -933, -949, -958, -962, -969, -1059, -11942, -12538, + -12539, -1413, -1471, -1476, -1481, -12540, -1484, -1492, -12541, -1859, -2024, -2275, -2501, -2505 + ], + [0, -2006, -3095, -3159, -12542, -12543, -12544, -12545, -5176, -12546, -3160], + [1, 3, 7577], + [0, 7578, 0, 246, 4], + [ + 0, -2531, -2624, -2550, -2177, -1961, -578, -719, -1384, -2166, -481, -533, -12547, -2654, -1624, -2516, -12548, + -1950, -2041, -12549, -458, -12550, -11463, -12551, -9870, -2082, -12552, -1421, -12553, -12554, -12555, -12556, + -12557, -12558, -12559, -12560 + ], + [1, 3, 7580], + [0, 0, 7581, 7582, 4], + [0, -12563, -12564, -12565, -932, -967, -1942, -2006, -2034, -12566, -2410], + [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -12568], + [1, 3, 7584], + [0, 7585, 7586, 7587, 6], + [0, -2550, -1967], + [ + 0, -2006, -932, -12569, -12570, -1387, -1942, -4731, -21, -12571, -23, -528, -1064, -12572, -9081, -12573, + -12574, -12575, -12576, -12577, -969, -933, -958, -940, -962, -967, -970, -3156 + ], + [ + 0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -12578, -7084, -12579, -3160, -3167, -3843, -9472, -9474, + -3827 + ], + [1, 3, 7589], + [0, 0, 7590, 7591, 9], + [ + 0, -21, -23, -26, -36, -3203, -40, -41, -43, -12580, -2685, -8471, -261, -6429, -3267, -407, -409, -410, -3040, + -428, -528, -534, -535, -3090, -682, -703, -767, -932, -940, -949, -958, -969, -1103, -1449, -1613, -6519, + -1942, -4130, -2006, -2019, -12581, -2127, -2128, -2131, -5090, -2134, -2137, -2138, -2143, -2376, -2410, -2469, + -2501, -2503, -2505 + ], + [0, -3159, -2006, -12582, -3962, -6240, -12583, -6769], + [1, 3, 7593], + [0, 0, 7594, 7595, 4], + [ + 0, -23, -26, -36, -40, -6035, -3326, -528, -534, -664, -932, -1344, -1534, -1654, -1771, -1942, -2006, -2019, + -2052, -12584, -2125, -2127, -2501 + ], + [0, -2006, -12585, -12586, -12587], + [1, 3, 7597], + [0, 0, 7598, 7599, 4], + [0, -4066, -12588, -932, -12589, -967, -12590, -1415, -1942, -2127, -2410], + [0, -2039, -3264, -3839, -5092, -7153, -9681, -727, -2006, -2019], + [1, 3, 7601], + [0, 7602, 7603, 7604, 5], + [0, -12591, -12518], + [ + 0, -262, -349, -406, -407, -409, -3037, -3140, -3040, -3052, -708, -767, -932, -940, -948, -958, -967, -969, + -1449, -1942, -2006, -2019, -2074, -2125, -2391, -2410, -2411, -2469 + ], + [0, -2006, -3476, -2074], + [0, 0, 0, 41, 4], + [1, 3, 7607], + [0, 7608, 7609, 7610, 4], + [0, -1346, -12592, -1967, -5582], + [ + 0, -3267, -3035, -12593, -4647, -12594, -12595, -3621, -3040, -3052, -4372, -427, -428, -664, -767, -932, -952, + -1103, -1449, -12596, -1654, -1942, -2006, -2019, -2125, -2127, -5405, -2198, -2210, -2387, -2392, -2402, -2410 + ], + [0, -775, -3159, -12521, -2006, -3162, -12597, -12598, -3580, -12599, -3576, -3095], + [1, 3, 7612], + [0, 7613, 7614, 248, 6], + [0, -743, -3169], + [0, -2391, -2006, -2426, -12600, -12601, -2019, -2410, -2052, -409, -1419, -3172, -407, -410], + [1, 3, 7616], + [0, 7617, 7618, 248, 10], + [0, -2043], + [0, -2391, -2006, -12600, -2019, -2410], + [1, 3, 7620], + [0, 0, 7621, 7622, 4], + [ + 0, -526, -527, -528, -534, -9887, -9888, -556, -559, -560, -563, -566, -932, -941, -956, -958, -962, -969, + -1001, -1306, -9413, -12539, -1471, -1476, -1479, -1482, -1483, -1490, -1492, -1654, -2006, -2019, -2040, -2043, + -2074, -12602, -12603, -12604, -2501 + ], + [0, -2006, -2074, -3122], + [1, 3, 7624], + [0, 7625, 28, 7, 4], + [ + 0, -594, -1415, -865, -932, -2177, -1889, -1966, -2114, -2501, -1077, -1080, -656, -533, -778, -23, -1041, + -2163, -2318, -534, -635, -1426, -2275, -366, -866, -2041, -1908, -2015, -1918, -2233, -1352, -1927, -2010, + -2116, -2505, -1331, -1428, -10049, -2335, -561, -1903, -2526, -941, -1643, -2507, -779, -542, -661, -2695 + ], + [1, 3, 7627], + [0, 7628, 7629, 7630, 11], + [0, -44, -3772, -3778, -3819, -3024, -1624, -1967, -2055, -3820], + [0, -5131, -915, -2760, -5116, -2006, -2019], + [0, -12605, -4053, -3962, -12606, -2006, -3159, -6750, -3160], + [1, 3, 7632], + [0, 7633, 7634, 7635, 5], + [0, -682, -12607, -1553, -2113], + [ + 0, -21, -23, -32, -26, -39, -40, -41, -12608, -407, -409, -410, -3037, -518, -527, -533, -534, -557, -778, -823, + -824, -923, -932, -958, -969, -1004, -12609, -1168, -1243, -1344, -1415, -1419, -1440, -1455, -1534, -1812, + -1908, -1942, -1992, -2006, -2019, -2082, -2210, -12610, -2275, -2417, -2501, -2503, -2505, -12611 + ], + [0, -12612, -12613, -12614, -12615, -12449, -3159], + [1, 3, 7637], + [0, 7638, 7639, 7640, 5], + [ + 0, -12616, -3081, -12617, -461, -6426, -507, -5223, -639, -684, -12618, -703, -12619, -748, -753, -8245, -12620, + -925, -930, -931, -989, -11676, -5504, -12621, -3649, -1107, -12622, -1284, -1395, -12623, -12624, -12625, + -12626, -12627, -12628, -12629, -12630, -1496, -12631, -1548, -9160, -1606, -12632, -3446, -1816, -1955, -1967, + -12633, -12634, -2015, -2018, -12635, -12636, -12637, -2026, -5351, -2066, -2093, -12638, -2335, -8299, -12639, + -2429, -2505, -2508 + ], + [ + 0, -21, -23, -26, -40, -6056, -41, -42, -407, -409, -12640, -12641, -12486, -12642, -426, -12643, -3136, -12644, + -3044, -12645, -3037, -3803, -3040, -3052, -12646, -12647, -3046, -12648, -3806, -427, -428, -527, -528, -533, + -534, -778, -12310, -12649, -12650, -12651, -932, -12652, -948, -952, -958, -962, -969, -1041, -1077, -1344, + -1415, -12653, -1534, -1623, -1942, -1992, -2006, -2019, -2052, -12654, -2275, -2410, -2437, -2501, -2503 + ], + [0, -2006, -4146, -4900, -4901, -856, -3671, -3262, -3095, -3098], + [1, 3, 7642], + [0, 7643, 7644, 7645, 4], + [0, -44, -401, -3140, -1967], + [ + 0, -23, -38, -40, -41, -190, -6486, -3326, -350, -351, -3561, -3266, -409, -3136, -4647, -3037, -3040, -3052, + -3714, -553, -2745, -932, -940, -969, -970, -4814, -1110, -1415, -1419, -1722, -1772, -1942, -2006, -2019, + -2127, -2195, -2200, -5091, -2375, -2379, -2410, -2411 + ], + [0, -5092, -3264, -5093, -5094, -3214, -2006, -12655, -3839, -12656, -2410], + [1, 3, 7647], + [0, 7648, 0, 7649, 6], + [0, -1033], + [0, -12657, -2006, -2363, -826, -12658, -2051], + [1, 3, 7651], + [0, 7652, 0, 7653, 8], + [0, -2029, -2166], + [0, -2006, -2034, -12659], + [1, 3, 7655], + [0, 108, 7656, 7657, 5], + [ + 0, -12660, -11184, -234, -405, -3037, -3040, -3052, -440, -756, -795, -2926, -1534, -1889, -1942, -2006, -2019, + -2391, -2410, -2466, -12661 + ], + [0, -2006, -4127, -12662, -3159, -2053, -5737, -12663, -12664, -12665], + [1, 3, 7659], + [0, 7660, 7661, 7662, 5], + [0, -12666, -12667], + [ + 0, -589, -633, -647, -710, -12668, -3346, -913, -12669, -923, -932, -12670, -1127, -1132, -10258, -1134, -7849, + -1137, -1144, -12671, -10265, -12672, -1417, -1813, -1859, -6184, -12673, -2066, -9266, -2359, -2410, -2416, + -12322, -2493 + ], + [0, -2006, -4146, -8530, -6107], + [1, 3, 7664], + [0, 7665, 0, 7666, 10], + [0, -44, -860, -1580, -1967], + [0, -2006, -12546, -8111, -12674, -5176, -775, -12675], + [1, 3, 7668], + [0, 7669, 7670, 7671, 6], + [0, -703, -1967, -860, -1580, -44, -2030], + [ + 0, -1415, -1344, -2006, -2490, -932, -2125, -2127, -708, -1889, -2501, -1059, -1103, -1942, -767, -1361, -1978, + -2019, -21, -533, -709, -778, -23, -1041, -1534, -1891, -2503, -518, -528, -534, -1952, -2043, -2275, -1908, + -39, -11942, -12676, -2044, -40, -6056, -7748, -2505, -41, -12677, -951, -969, -12678, -1331, -2052, -2128, + -2143, -12679, -2138, -940, -956, -962, -967, -2131, -12680, -2137, -1017, -3840, -38, -6057, -12681, -26, + -3204, -553 + ], + [0, -2006, -3476, -3159, -9614, -4108, -12682, -12683, -12684, -4002, -12685, -5147, -12129, -6445, -4672, -9133], + [1, 3, 7673], + [0, 7674, 7675, 7676, 10], + [0, -2346, -2054], + [0, -1654, -1452, -2177, -6398, -633, -725, -12686], + [0, -2006, -633, -6340, -4146, -3756, -3862, -6408], + [1, 3, 7678], + [0, 7679, 7680, 7681, 5], + [0, -44, -2997, -682, -1967, -2804, -2055], + [ + 0, -21, -23, -32, -34, -35, -36, -3204, -40, -41, -4757, -4762, -4754, -12687, -4749, -407, -409, -410, -3040, + -528, -533, -534, -561, -620, -726, -740, -10524, -767, -12688, -879, -888, -932, -933, -940, -956, -958, -962, + -969, -4756, -12689, -1415, -1419, -1449, -1455, -1637, -1942, -2006, -2019, -2022, -12690, -2043, -2052, -2410, + -2501 + ], + [0, -2058, -620, -2006, -3095, -3098, -3159, -3160], + [1, 3, 7683], + [0, 7684, 7685, 7, 4], + [0, -3950], + [0, -4298, -4300, -3952, -5866, -428, -652, -948, -2319, -2379, -2386, -2410], + [1, 3, 7687], + [0, 7688, 118, 7689, 8], + [0, -6902, -6904, -6990, -2400, -8803], + [0, -4055, -2059, -1838, -6656, -1076, -11998, -6994, -5897, -6811], + [1, 3, 7691], + [0, 7692, 14, 7693, 4], + [0, -8341, -2060, -2400], + [ + 0, -4055, -2059, -1838, -6656, -1076, -11998, -6994, -5897, -5573, -8804, -1047, -5504, -8805, -8806, -7282, + -5572, -2114, -8807, -6370, -7420, -7421, -2487, -8808, -1847 + ], + [1, 3, 7695], + [0, 7696, 7697, 7698, 9], + [0, -458, -640, -997, -1958, -6383], + [ + 0, -23, -6065, -5584, -3244, -350, -6572, -351, -357, -633, -652, -928, -12691, -932, -943, -958, -965, -968, + -1874, -1942, -2127, -9701, -2319, -12692, -2322, -2323, -2426, -2501, -2503 + ], + [0, -8800, -5827, -11441], + [1, 3, 7700], + [0, 0, 7701, 7702, 8], + [0, -2319, -1351], + [0, -2063, -12693, -6656], + [1, 3, 7704], + [0, 0, 0, 7705, 9], + [0, -2063, -12397, -9845, -1965, -3969, -5110, -687, -3975, -3957, -12694, -10394, -4116, -6301], + [0, 68, 15, 16, 5], + [1, 3, 7708], + [0, 7709, 7710, 7711, 5], + [0, -5223, -987, -2231, -12695, -2387], + [ + 0, -23, -25, -40, -12696, -3036, -3621, -3037, -428, -932, -12670, -12697, -1107, -1534, -1654, -1942, -9880, + -2410 + ], + [0, -3272, -9306, -12698, -9308, -4132, -9307, -6747, -12699], + [0, 67, 15, 16, 8], + [1, 3, 7714], + [0, 7715, 125, 7716, 4], + [0, -2114], + [0, -4792, -5932, -5195, -8109, -12700], + [1, 3, 7718], + [0, 7719, 0, 7720, 4], + [0, -44, -12701, -1033, -1311, -2030, -5746], + [0, -2006, -12702, -3098, -12703, -3481, -8113, -12704], + [1, 3, 7722], + [0, 124, 27, 7723, 8], + [0, -7421, -12705], + [1, 3, 7725], + [0, 7726, 0, 7727, 6], + [0, -12706, -12707, -12708, -12709, -12710], + [0, -2071], + [1, 3, 7729], + [0, 7730, 7731, 150, 10], + [ + 0, -3544, -3786, -1610, -3788, -1955, -2223, -1885, -863, -682, -1653, -1967, -3790, -3791, -3787, -3793, -996, + -3789, -1848, -3792, -2680, -12711 + ], + [ + 0, -1992, -2435, -1415, -1652, -1344, -2006, -2387, -915, -932, -2125, -753, -795, -1442, -1821, -2195, -2375, + -2379, -3811, -2501, -1942, -2019, -778, -2214, -2410, -3035, -3136, -3800, -3037, -3810, -2503, -3040, -3041, + -1952, -2275, -3043, -3802, -3801, -3803, -3805, -3046, -2760, -3808, -3809, -4773, -3797, -3052, -3140, -2278, + -3806, -585, -2505, -3799, -748, -969, -1331, -958, -3798, -1419, -2509, -3804, -428, -970, -740, -3794, -1067, + -427, -12712 + ], + [1, 3, 7733], + [0, 7734, 7735, 7736, 4], + [0, -12713, -12714], + [0, -2006, -2501, -2019, -2410, -3040, -3052, -3859, -12715], + [0, -2072, -3438, -3690, -4847, -856, -12716, -858, -12717], + [1, 3, 7738], + [0, 0, 7739, 7740, 5], + [ + 0, -23, -3037, -427, -428, -767, -4780, -932, -941, -948, -958, -969, -970, -1107, -12718, -1942, -2125, -2153, + -2391, -2410, -2469 + ], + [0, -2074, -4782, -4125, -12719, -5112, -1361, -12517, -12516, -12720, -1062, -12721], + [1, 3, 7742], + [0, 7743, 7744, 7745, 5], + [0, -12722, -12723], + [0, -12724, -12725, -12726, -1344, -1534, -1771, -1942, -2466, -2469, -2541], + [0, -1062, -2074, -10951, -12727], + [1, 3, 7747], + [0, 7748, 7749, 7750, 5], + [0, -1548, -2029, -924, -1384, -1398, -1967, -44, -1311], + [ + 0, -2359, -1415, -1344, -2006, -2074, -932, -2125, -708, -2501, -1059, -1942, -767, -1361, -2019, -21, -821, + -2214, -23, -12728, -1534, -2040, -2503, -528, -534, -12729, -40, -41, -540, -951, -969, -6040, -2052, -958, + -12726, -12730, -956, -962, -941, -2502, -970, -5295, -12416, -38, -26, -3203 + ], + [0, -2006, -3476, -1062, -2074, -2040, -2076, -4053, -11313], + [1, 3, 7752], + [0, 7753, 7754, 7755, 6], + [0, -819], + [ + 0, -527, -537, -11899, -559, -664, -708, -932, -933, -958, -962, -969, -1339, -1344, -1654, -1788, -2074, -2125, + -2127, -2128, -2131, -2137, -2143, -2210 + ], + [0, -2074, -3444, -2077, -5401], + [1, 3, 7757], + [0, 7758, 7759, 7760, 10], + [0, -12731], + [0, -23, -38, -39, -40], + [0, -3214, -2074, -5401, -12732, -12733, -12734], + [1, 3, 7762], + [0, 0, 7763, 7764, 5], + [0, -427, -428, -767, -932, -940, -1942, -2074, -2125, -2391, -2410, -2469], + [0, -2074, -12735, -5401, -12736, -1062], + [1, 3, 7766], + [0, 0, 7767, 7768, 4], + [0, -3035, -3621, -3037, -664, -824, -12737, -1168, -12738, -12739, -1231, -1243, -12740, -1259, -1654, -2410], + [0, -11313, -11872, -3214, -12741], + [1, 3, 7770], + [0, 0, 7771, 7772, 8], + [0, -708, -1127, -1162, -1405, -6186, -1991, -2111], + [0, -5569, -5570, -3214, -4112, -3262, -3673], + [1, 3, 7774], + [0, 0, 0, 7775, 4], + [0, -12742, -11997, -3262, -510], + [1, 3, 7777], + [0, 7778, 0, 7779, 6], + [0, -5334, -2087, -2090, -2427], + [0, -12743, -3272, -3264, -1838, -1958, -2083, -6233, -6231, -4132, -10919, -2427], + [1, 3, 7781], + [0, 7782, 7783, 7784, 5], + [0, -5334, -9581, -4264, -2766, -2427, -2429], + [0, -3037, -9586, -652, -12744, -1942, -2083, -2094, -2100, -2399, -2410, -2541], + [0, -2427, -2083, -12745, -3862, -10857, -10606, -3264], + [1, 3, 7786], + [0, 7787, 7788, 7789, 4], + [0, -5334, -9581, -2766, -12746, -2235, -2429], + [0, -3037, -9586, -652, -1942, -2083, -2094, -2100, -2399, -2410, -2541], + [0, -2427, -2083, -12745, -3862, -9589, -3264, -1599, -12747, -10606, -2435], + [1, 3, 7791], + [0, 7792, 7793, 7794, 11], + [0, -5334, -12748, -1618, -5204, -5205, -2427, -5356], + [0, -4228, -3037, -3040, -652, -932, -12749, -962, -969, -9602, -1942, -2094, -11167, -12750, -2410], + [0, -9589, -3264, -1599, -4147, -2083, -12745, -2427], + [1, 3, 7796], + [0, 7797, 0, 7798, 5], + [0, -5334, -2586, -2427], + [0, -12743, -3272, -3264, -1838, -3862, -2083, -12745, -4132, -10919, -2427], + [1, 3, 7800], + [0, 7801, 7802, 7803, 8], + [0, -5334, -1286, -5358], + [0, -3037, -652, -1942, -2090, -2094, -2098, -2100, -2101, -2399, -2410, -2427, -2429, -2541], + [0, -3264, -3862, -9591, -2083, -12745, -2427], + [1, 3, 7805], + [0, 7806, 7807, 7808, 4], + [0, -5334, -3649, -4264, -1292, -2429], + [0, -3037, -652, -1942, -2083, -2094, -2100, -2399, -2410, -2541], + [0, -10857, -3264, -7231, -3862, -2083, -12745, -2222, -2427], + [1, 3, 7810], + [0, 7811, 0, 7812, 6], + [0, -5334, -1290, -2427], + [0, -12743, -3272, -7644, -3264, -3862, -2083, -12745, -6233, -6231, -4132, -10919, -2427], + [1, 3, 7814], + [0, 7815, 7816, 7817, 5], + [ + 0, -12751, -305, -12752, -512, -6563, -680, -6869, -4236, -1376, -12753, -1566, -1641, -11656, -1805, -1816, + -3547, -8874, -2177, -2654, -2426, -2436, -12754, -2551 + ], + [0, -190, -12755, -3037, -932, -8339, -1110, -3781, -1498, -12756, -12757, -1942, -2094, -12758, -2323, -2410], + [ + 0, -7641, -5887, -5890, -12759, -5889, -1105, -7661, -9845, -6657, -1764, -8403, -5737, -9244, -2091, -7737, + -11729, -5550, -6818, -3673, -9318, -2177, -3862 + ], + [1, 3, 7819], + [0, 7820, 7821, 7822, 4], + [0, -1405, -1645, -1876, -2231, -2347], + [0, -932, -934, -958, -1127, -1168, -12760, -2125], + [0, -7841, -9219, -2231, -1405, -4005], + [1, 3, 7824], + [0, 7825, 0, 7826, 4], + [0, -2427, -4251, -2098, -5616], + [0, -12743, -3272, -7644, -1599, -10918, -1838, -1958, -2093, -6233, -6231, -4132, -10919, -2427], + [1, 3, 7828], + [0, 7829, 0, 7830, 11], + [0, -3190, -12761, -2093, -12762], + [0, -8425, -687, -1599, -10918, -2093, -2427], + [1, 3, 7832], + [0, 7833, 7834, 7835, 10], + [0, -4251, -10922, -10923, -2098, -5616, -2427], + [0, -3037, -652, -12744, -1942, -2093, -2094, -2100, -2267, -7699, -2399, -2410, -2541], + [0, -10604, -12763, -4329, -1105, -1599, -10918, -3862, -2093, -12764, -5552, -4002, -4109, -2427], + [1, 3, 7837], + [0, 7838, 7839, 7840, 4], + [0, -4251, -1287, -1619, -1290, -2427], + [ + 0, -5334, -3037, -652, -10915, -2586, -1942, -2094, -4242, -2095, -4655, -2098, -2100, -12765, -4656, -2399, + -2410, -5358, -2541 + ], + [0, -7644, -3264, -1599, -10918, -3862, -2093, -12764, -6231, -2427], + [1, 3, 7842], + [0, 7843, 7844, 7845, 9], + [0, -5358, -2427, -4251, -12766, -5356, -12767], + [0, -652, -932, -2093, -1942, -1874, -2094, -2410, -5334, -2101, -2090, -12750, -12749, -11167], + [0, -856, -5670, -12768, -3862, -2093, -12764, -2427], + [1, 3, 7847], + [0, 7848, 0, 7849, 5], + [0, -4251, -1618, -10869, -2427], + [0, -12743, -3272, -1599, -10918, -1838, -3862, -2093, -12764, -4132, -10919, -2427], + [1, 3, 7851], + [0, 7852, 7853, 7854, 9], + [ + 0, -12769, -12770, -2095, -12771, -12772, -9514, -9515, -9516, -9517, -9518, -12773, -9519, -12774, -9520, + -12775, -12776, -12777, -12778, -9524, -12779, -9527, -12780, -12781, -12782, -12783, -12784, -12785, -9528, + -12786, -12787, -12788, -12789, -12790, -12791, -12792, -12793, -9532, -9533, -9534, -12794, -9535, -9536, + -4995, -12795, -4656, -12796, -12797, -2427 + ], + [0, -86, -3307, -932, -946, -1053, -1344, -1534, -1942, -2094, -2541], + [0, -1105, -6913, -2093], + [1, 3, 7856], + [0, 7857, 7858, 7859, 4], + [ + 0, -12769, -2095, -4655, -9514, -9515, -9516, -9517, -12798, -9518, -12799, -12773, -9519, -12774, -9520, + -12775, -12776, -12777, -9522, -12778, -12800, -12801, -12802, -12803, -12804, -12805, -12806, -12807, -12808, + -12809, -12779, -12810, -9527, -12811, -12780, -12812, -12781, -12782, -12783, -12784, -12785, -9528, -12786, + -12813, -12814, -12815, -12788, -12789, -12816, -12817, -12790, -12791, -12792, -12818, -12819, -12793, -9532, + -9533, -9534, -12794, -9535, -9536, -4995, -12795, -5616, -4656, -9537, -12796, -12820, -2267, -2427 + ], + [0, -1942, -2094, -2399, -2410, -2541], + [0, -6913, -2093, -12821], + [1, 3, 7861], + [0, 7862, 7863, 7864, 8], + [0, -5334, -4251, -1619, -2427, -5358], + [0, -3037, -652, -1942, -2089, -2090, -2094, -2098, -2100, -5616, -2399, -2410, -2541], + [0, -9589, -3264, -1599, -10918, -3862, -12745, -2083, -12764, -2093, -2427], + [1, 3, 7866], + [0, 7867, 7868, 7869, 6], + [0, -503, -12822], + [0, -5514, -589, -8630, -932, -953, -985, -1202, -1304, -1610, -1654, -1788, -2127, -2133, -2137, -2140, -2184], + [0, -8630, -1599, -3437, -1838, -3215, -1958, -2102, -7650, -4065, -5554], + [1, 3, 7871], + [0, 0, 125, 7872, 5], + [0, -1168, -8109, -7693, -3866], + [1, 3, 7874], + [0, 7875, 7876, 7877, 4], + [0, -668, -1107, -2550], + [0, -190, -652, -664, -665, -932, -1654], + [0, -8276, -5554, -7002, -6656], + [1, 3, 7879], + [0, 7880, 7881, 7882, 10], + [ + 0, -1983, -11197, -2446, -1015, -12823, -6397, -12824, -1069, -1641, -12825, -2155, -2364, -12826, -12827, + -12828, -12829, -12830, -8956, -1856, -1459 + ], + [ + 0, -1788, -2322, -1471, -12831, -2125, -708, -615, -2250, -756, -12832, -8375, -633, -641, -9573, -1476, -2188, + -1472, -1860, -8958, -1484 + ], + [0, -1334, -5493, -2444, -3590], + [1, 3, 7884], + [0, 7885, 7886, 7887, 4], + [0, -615, -2364, -12833, -12834], + [0, -664, -1168, -668, -1548, -2125, -2105, -1231, -617, -1197, -2150, -1220, -11117, -1973], + [0, -2533, -1334, -1342, -1961, -2105, -11301, -12835, -615], + [1, 3, 7889], + [0, 7890, 7891, 7892, 9], + [0, -12834, -12833, -2364], + [0, -617, -664, -668, -1168, -11117, -1197, -1220, -1231, -1548, -1973, -2105, -2125, -2150], + [0, -2533, -1334, -1342, -1961, -2105, -11301, -12835, -5269], + [1, 3, 7894], + [0, 0, 7895, 7, 10], + [0, -2379, -2410, -710], + [1, 3, 7897], + [0, 0, 7898, 7899, 4], + [0, -5856], + [0, -4792, -9409, -12836], + [1, 3, 7901], + [0, 0, 7902, 7903, 5], + [ + 0, -349, -409, -3044, -3040, -3052, -3714, -427, -12837, -428, -12838, -932, -969, -12839, -1449, -1548, -1565, + -1624, -12840, -12718, -1942, -2006, -2019, -2040, -2125, -2195, -2391, -2410, -2469 + ], + [0, -2006, -2074], + [1, 3, 7905], + [0, 0, 7906, 7907, 4], + [ + 0, -528, -757, -932, -1412, -1413, -1471, -1475, -1479, -1481, -3569, -1486, -1488, -1490, -1491, -1962, -2127, + -2141, -2410 + ], + [0, -12841, -10095, -12523, -2444, -3323, -4865, -3582, -6989], + [1, 3, 7909], + [0, 7910, 7911, 7912, 10], + [0, -12842, -7437, -12843], + [0, -6455, -2319, -2359, -2322, -887, -932, -1650, -2125, -2177, -12844, -1777, -1365, -1795, -8569, -2156, -5834], + [0, -2114, -4792, -3966, -3551], + [1, 3, 7914], + [0, 0, 14, 7915, 5], + [0, -4792, -2114, -1847, -3551, -8388, -6546, -6024], + [1, 3, 7917], + [0, 7918, 0, 7919, 10], + [0, -12845, -742, -1543, -1889, -2231], + [0, -2501, -5932, -775, -6811, -6043, -2114, -2435, -2162, -9358, -6656], + [1, 3, 7921], + [0, 7922, 7923, 7924, 5], + [0, -12846, -3780, -1077, -1276, -1442, -12847, -2446], + [ + 0, -21, -23, -5870, -26, -33, -36, -5584, -39, -40, -44, -86, -3531, -3470, -3471, -519, -523, -528, -539, -541, + -617, -664, -12848, -756, -12310, -834, -4088, -932, -12849, -12850, -958, -963, -964, -12851, -966, -968, -971, + -12852, -972, -973, -978, -1004, -12853, -1344, -1444, -1457, -1547, -1654, -1656, -12854, -1788, -2174, -12855, + -2293, -12856 + ], + [0, -3960, -489, -3262, -856, -12857, -3636, -12858, -3691, -3690, -1334], + [1, 3, 7926], + [0, 7927, 7928, 7929, 4], + [ + 0, -1983, -788, -12859, -1640, -1801, -1867, -2178, -12860, -2446, -1548, -2177, -2454, -11983, -1582, -1070, + -5397, -508, -8541, -12830, -12861, -6456, -12862 + ], + [ + 0, -1788, -1816, -664, -1107, -1654, -2210, -932, -1650, -2125, -1376, -1754, -1942, -756, -2451, -12863, -8549, + -1939, -1972, -856, -12864, -12865, -960, -940, -967 + ], + [0, -3817, -3161, -1004, -12866], + [1, 3, 7931], + [0, 7932, 83, 7, 4], + [0, -1983, -2536, -2548, -1351], + [1, 3, 7934], + [0, 7935, 251, 7936, 8], + [0, -9050, -2202], + [ + 0, -1000, -12867, -1958, -11998, -12868, -12869, -12870, -12871, -12872, -10018, -687, -5564, -5514, -6713, + -4110, -3974, -4000, -3975, -5550, -3958 + ], + [1, 3, 7938], + [0, 7939, 0, 7940, 8], + [0, -615], + [0, -7685, -12873, -12874, -12875], + [1, 3, 7942], + [0, 0, 7943, 7, 5], + [0, -8959, -1405, -2322], + [1, 3, 7945], + [0, 7946, 7947, 7948, 5], + [0, -932, -3414], + [0, -3037, -1003, -1654, -1788, -2379, -2410], + [0, -6137, -6138, -4215, -5396, -3551, -5119, -4004, -12876, -4676, -8959, -4792], + [1, 3, 7950], + [0, 0, 7951, 7952, 4], + [0, -3415, -708, -12877, -12878, -11961, -12879, -1552, -12880, -12881, -1993, -2250, -2319, -2384], + [ + 0, -7208, -7369, -3589, -702, -6351, -6545, -7371, -7372, -7373, -7374, -7375, -12882, -12883, -12877, -12884, + -5922, -6187, -12885, -12886, -12887, -12888, -12889, -12878, -12890 + ], + [1, 3, 7954], + [0, 7955, 7956, 7957, 4], + [0, -1107, -12891], + [0, -3037, -1650, -1942, -2319, -2386, -2402], + [0, -6695, -12892, -12893, -6694, -7421, -687, -7418, -7371], + [1, 3, 7959], + [0, 7960, 7961, 7962, 4], + [0, -1696, -3846, -6521], + [0, -1412, -12894, -12895, -12896], + [ + 0, -12897, -11189, -12898, -10394, -9711, -6527, -12899, -11321, -2126, -5566, -12900, -12901, -12902, -12903, + -712 + ], + [1, 3, 7964], + [0, 202, 7965, 7966, 4], + [ + 0, -6779, -11174, -6780, -6778, -6777, -6776, -190, -4106, -3115, -12904, -5053, -4066, -6429, -350, -4062, + -351, -3561, -3266, -3267, -4785, -12905, -3621, -3037, -8523, -3199, -9146, -12906, -461, -12907, -6426, -639, + -644, -679, -726, -753, -767, -12908, -923, -927, -932, -940, -967, -978, -980, -1054, -12909, -1077, -4706, + -1110, -1344, -4788, -1534, -4789, -1588, -1623, -1654, -1753, -12910, -1788, -4916, -1863, -1864, -2851, -1942, + -1944, -1948, -1951, -2111, -2127, -2134, -2177, -2200, -2202, -2231, -2234, -2314, -2334, -2387, -2410, -2411, + -2466, -2468, -2476, -2478, -5627, -12911, -2551 + ], + [0, -3209, -7882, -12912, -3184, -7176], + [1, 3, 7968], + [0, 7969, 7970, 7971, 4], + [0, -3341, -2145], + [ + 0, -23, -3840, -33, -38, -40, -639, -932, -940, -967, -1344, -1534, -1654, -1942, -2127, -2129, -2133, -2231, + -2234 + ], + [0, -12913, -525, -4795, -3184], + [1, 3, 7973], + [0, 7974, 7975, 7, 11], + [0, -639, -2145], + [0, -932, -1654, -2127], + [1, 3, 7977], + [0, 7978, 7979, 7980, 5], + [0, -12914, -2145], + [0, -6429, -932, -1001, -1654, -1788, -2125, -2127, -12915, -12916], + [0, -2127, -12913, -3214, -3184, -3209, -3485, -12917, -7416], + [1, 3, 7982], + [0, 7983, 7984, 7, 4], + [0, -989, -4788, -1588, -2114, -2145], + [ + 0, -23, -40, -43, -461, -932, -958, -1344, -1534, -4789, -1654, -1942, -4790, -2127, -2128, -2133, -2137, -2200, + -2231, -2234, -2410 + ], + [1, 3, 7986], + [0, 7987, 7988, 7989, 4], + [0, -1588], + [0, -22, -8355, -12918, -426, -3037, -3040, -652, -2127, -2410], + [0, -12913, -2410, -4160, -12919], + [1, 3, 7991], + [0, 7992, 7993, 7, 11], + [0, -2145], + [0, -932, -958, -1344, -1534, -1654, -1942, -2127, -2129, -2137, -2234], + [1, 3, 7995], + [0, 7996, 7997, 7998, 5], + [0, -12920, -4787, -1548, -1588, -1666, -12921, -12922, -12923], + [ + 0, -23, -40, -43, -3326, -350, -351, -3989, -427, -428, -479, -535, -932, -934, -958, -1022, -1077, -11780, + -1168, -12924, -1222, -1412, -1413, -1942, -2125, -2127, -12925, -12926, -2359, -2410 + ], + [0, -2127, -12913], + [1, 3, 8000], + [0, 8001, 8002, 252, 6], + [0, -12927, -12928, -771, -12929], + [0, -9889, -812, -1654, -2127, -2128, -2136, -2184], + [1, 3, 8004], + [0, 8005, 8006, 252, 6], + [0, -461, -12928, -989, -1588, -12929, -2145], + [0, -527, -558, -633, -1415, -1650, -1654, -2125, -2127, -2128, -2137], + [1, 3, 8008], + [0, 8009, 8010, 253, 5], + [0, -3200, -644, -4793, -2114, -2145], + [0, -23, -40, -43, -922, -932, -1654, -2127, -2128, -2131, -2133, -4794, -2410], + [1, 3, 8012], + [0, 8013, 8014, 253, 9], + [0, -1588, -2145], + [0, -932, -958, -1344, -1534, -4789, -1654, -1942, -2127, -2129, -2200, -2231, -2410], + [1, 3, 8016], + [0, 8017, 8018, 8019, 10], + [0, -4785, -7149], + [0, -3267, -3037, -427, -428, -932, -940, -967, -1415, -1942, -2125, -2127, -2375, -2410], + [0, -2127, -12913, -6915, -2231, -12930], + [1, 3, 8021], + [0, 8022, 8023, 8024, 6], + [0, -22, -1429, -2182, -2334], + [0, -23, -1415, -1942, -2127], + [0, -2127, -12913, -2334, -1644], + [1, 3, 8026], + [0, 8027, 8028, 8029, 5], + [0, -2114, -2145], + [0, -639, -932, -1654, -2125, -2127, -2129, -2131, -2387, -2410], + [0, -12913, -2410, -4795], + [1, 3, 8031], + [0, 8032, 8033, 8034, 4], + [0, -4785, -1046, -1077, -2177, -2387], + [ + 0, -5121, -350, -351, -12931, -3048, -12932, -3136, -3044, -3037, -4067, -3199, -427, -428, -714, -932, -12933, + -1415, -1548, -1793, -2125, -2127, -12934, -2142, -2375, -2410 + ], + [0, -2142, -2141, -12913, -2410, -4795, -2127, -1764], + [1, 3, 8036], + [0, 8037, 8038, 8039, 6], + [0, -22, -1429, -2182, -2416], + [0, -23, -40, -533, -1415, -1942, -2127], + [0, -2127, -12913, -9216, -1644], + [1, 3, 8041], + [0, 8042, 8043, 8044, 4], + [0, -1805, -1864, -2231, -2550], + [ + 0, -350, -351, -3266, -3267, -3269, -12935, -12936, -12937, -12938, -12939, -12940, -3037, -8523, -3041, -651, + -798, -6258, -7259, -7268, -799, -801, -825, -1771, -8065, -1889, -7033, -1940, -1942, -2923, -2127, -4753, + -2162, -2387, -2410, -2466, -2469 + ], + [0, -12913, -12941, -5150, -12942, -12943, -12944], + [1, 3, 8046], + [0, 8047, 8048, 8049, 5], + [0, -989], + [ + 0, -426, -3136, -4036, -3037, -1344, -1415, -1534, -1639, -1942, -2127, -2131, -2137, -2141, -2200, -2375, + -2388, -2410, -8256 + ], + [0, -2127, -5260], + [1, 3, 8051], + [0, 0, 8052, 7, 5], + [0, -633], + [1, 3, 8054], + [0, 8055, 8056, 254, 10], + [0, -2694, -4007, -649, -658, -1119, -1889, -2234, -2279, -10098, -909, -2193], + [ + 0, -12945, -22, -23, -32, -3194, -26, -35, -6062, -36, -12946, -37, -3368, -3077, -3204, -38, -40, -41, -42, + -44, -46, -47, -12947, -12948, -12949, -12950, -3872, -4020, -237, -269, -12951, -12952, -12953, -12954, -12955, + -5038, -3983, -367, -5052, -12956, -12957, -12958, -8355, -4776, -12959, -10100, -10101, -3269, -12960, -3732, + -12961, -5085, -5033, -7080, -3198, -12962, -12963, -3036, -4035, -3850, -3044, -12964, -5587, -12965, -8523, + -12966, -3040, -3052, -6633, -3199, -12967, -6832, -5673, -12968, -12969, -4204, -8559, -5900, -461, -12970, + -2624, -502, -507, -512, -12971, -8561, -553, -6386, -635, -640, -651, -12972, -2740, -719, -12973, -724, -6842, + -6394, -736, -737, -743, -769, -771, -2745, -7189, -7026, -812, -5034, -6381, -12974, -997, -1047, -1072, -1107, + -1273, -1336, -1337, -6388, -1343, -2773, -12975, -1354, -10697, -1401, -1429, -1460, -1465, -8562, -12976, + -1582, -1643, -1683, -1699, -12977, -9548, -1734, -1816, -6378, -3447, -1827, -1848, -1851, -1864, -6184, -1903, + -7164, -1915, -7165, -2791, -1927, -1929, -1930, -1934, -1958, -1977, -6387, -1999, -2041, -2082, -2163, -2177, + -2178, -12978, -8578, -2194, -2231, -2233, -11463, -6390, -6375, -4195, -12979, -6383, -2269, -3921, -2323, + -12980, -2334, -2335, -2343, -6391, -6384, -2594, -12981, -2444, -6380, -12982, -10052, -2501, -2531, -2564 + ], + [1, 3, 8058], + [0, 0, 8059, 8060, 9], + [ + 0, -6068, -548, -6070, -6071, -8122, -6072, -6081, -6082, -6083, -550, -558, -8121, -7993, -7938, -628, -629, + -8116, -7945, -8119, -8118, -902, -8003, -8004, -12983, -8117, -1654, -1963 + ], + [0, -8123, -5923], + [1, 3, 8062], + [0, 8063, 8064, 8065, 5], + [0, -10415, -1863, -1889, -2271], + [0, -652, -1654, -2250], + [0, -12984, -775, -12985, -2149, -3161, -5553, -10733, -10732, -5845, -6408], + [1, 3, 8067], + [0, 8068, 8069, 8070, 8], + [0, -668, -1022, -1876], + [0, -1168, -1654, -2198], + [0, -7419, -11441, -5562, -1168, -1817], + [1, 3, 8072], + [0, 0, 8073, 8074, 5], + [0, -468, -2322], + [0, -9291, -510, -5924, -5865, -6235, -11727, -5839, -12986], + [1, 3, 8076], + [0, 0, 0, 8077, 4], + [0, -12987, -12988, -12989, -8408, -12990, -12991], + [1, 3, 8079], + [0, 33, 8080, 8081, 9], + [ + 0, -12992, -3, -367, -4007, -3035, -3044, -3621, -3037, -3714, -4372, -3625, -12993, -427, -428, -556, -664, + -12994, -712, -714, -767, -796, -7653, -930, -932, -10031, -1069, -1077, -1107, -6783, -1344, -5726, -1534, + -1548, -1646, -1654, -1753, -1771, -4099, -6184, -1942, -1961, -2127, -12995, -12996, -2137, -2195, -2200, + -2210, -2211, -2234, -2314, -2379, -2388, -2389, -12997, -12998, -12999, -2410, -2449, -13000, -2501 + ], + [0, -12990, -12991, -13001, -13002, -13003, -13004, -6980, -13005, -6948, -6950], + [1, 3, 8083], + [0, 0, 31, 8084, 9], + [0, -640, -13006, -13007, -9594, -2155, -7107, -13008], + [1, 3, 8086], + [0, 8087, 8088, 8089, 4], + [0, -1365, -2177, -2550], + [0, -5834, -515, -516, -887, -932, -13009, -1788, -2322], + [0, -8403, -10483, -1764, -13010, -6818, -9594, -13011], + [1, 3, 8091], + [0, 8092, 8093, 8094, 4], + [ + 0, -13012, -13013, -510, -13014, -668, -719, -13015, -724, -729, -743, -744, -746, -13016, -888, -1004, -1010, + -13017, -1107, -13018, -13019, -12902, -13020, -13021, -13022, -13023, -13024, -1646, -13025, -1840, -1851, + -1878, -1965, -13026, -13027, -13028, -2177, -2185, -2187, -13029, -13030, -2418, -2453, -13031 + ], + [ + 0, -589, -733, -932, -1003, -1077, -13032, -1654, -1783, -1888, -13033, -13034, -13035, -13036, -13037, -13038, + -2198, -2229, -2293, -2359 + ], + [0, -13039, -13040, -1004, -13041, -13042, -3817, -3816, -1818, -2228], + [1, 3, 8096], + [0, 8097, 8098, 8099, 5], + [0, -13043], + [0, -2322, -468, -13044, -633, -725], + [0, -6656, -6557, -13045, -7723, -5874, -5559], + [1, 3, 8101], + [0, 8102, 8103, 8104, 8], + [0, -823, -930, -1333, -1396, -13046, -1889], + [0, -932, -1654, -2210, -13047], + [0, -3264, -3215, -7722, -7723], + [1, 3, 8106], + [0, 8107, 0, 8108, 5], + [0, -679, -1361, -2232], + [0, -5553, -3754, -2162, -3277, -775], + [1, 3, 8110], + [0, 8111, 8112, 8113, 5], + [0, -9548], + [ + 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -621, -767, -774, -778, -824, -825, -909, -932, -940, -6929, + -958, -959, -960, -965, -967, -978, -1041, -2629, -1110, -1344, -1415, -1534, -13048, -1623, -1743, -13049, + -1771, -1942, -2162, -3572, -2177, -2251, -2275, -2410, -2411, -2501, -2503, -2505 + ], + [0, -2162, -9264, -2501, -5932], + [0, 44, 15, 16, 9], + [1, 3, 8116], + [0, 0, 8117, 7, 8], + [0, -1942, -2319], + [1, 3, 8119], + [0, 8120, 8121, 8122, 9], + [0, -13050], + [0, -13051, -652, -13052, -932, -1446], + [0, -4058, -856], + [1, 3, 8124], + [0, 8125, 8126, 48, 4], + [0, -469, -470, -5329, -4049], + [ + 0, -824, -1415, -1344, -932, -825, -1110, -2501, -1942, -21, -190, -533, -2410, -23, -3037, -1534, -1771, -86, + -965, -3560, -2251, -40, -959, -960, -958, -6929, -978, -940, -967, -3748, -3307 + ], + [1, 3, 8128], + [0, 8129, 8130, 8131, 5], + [0, -2006, -2019, -2634], + [0, -2410, -3037, -3040, -3052, -518, -1889, -2318, -932, -10813], + [ + 0, -13053, -13054, -1072, -5375, -770, -13055, -5375, -3634, -8576, -13056, -3551, -13057, -13058, -5376, + -13059, -11152, -5150 + ], + [1, 3, 8133], + [0, 8134, 0, 8135, 5], + [0, -899, -1723, -6127], + [0, -13060, -13061, -13062, -2171], + [1, 3, 8137], + [0, 0, 0, 8138, 4], + [0, -13063, -6555, -770], + [1, 3, 8140], + [0, 8141, 8142, 8143, 8], + [0, -13064, -1468, -2359, -2531], + [ + 0, -190, -5980, -932, -940, -964, -965, -7353, -967, -1004, -1110, -1281, -1446, -1654, -1656, -1685, -1942, + -2186, -2210, -2297 + ], + [0, -4864, -11467, -3634, -11468, -12350], + [1, 3, 8145], + [0, 8146, 8147, 8148, 5], + [ + 0, -7040, -13065, -3472, -7041, -7042, -13066, -755, -812, -13067, -999, -1040, -13068, -1100, -13069, -9464, + -1315, -13070, -1549, -1610, -6294, -1639, -13071, -10507, -3609, -2115, -2177, -3642, -2550 + ], + [ + 0, -3037, -3639, -519, -652, -686, -796, -851, -13072, -1077, -1116, -1442, -1547, -8314, -13073, -1722, -1772, + -13074, -1942, -2910, -2210, -13075, -2331, -2341 + ], + [0, -13076, -4864, -5887, -3551, -5897, -8403, -9244, -2177, -9318], + [1, 3, 8150], + [0, 8151, 8152, 7, 4], + [0, -44, -13077, -13078, -2997, -13079, -703, -13080, -1548, -1549, -1967, -2029, -2804, -2192], + [ + 0, -13081, -21, -23, -26, -34, -35, -37, -38, -40, -41, -43, -13082, -4227, -13083, -13084, -4773, -3040, -427, + -428, -3807, -13085, -528, -534, -13086, -539, -540, -13087, -553, -12468, -13088, -664, -13089, -747, -767, + -795, -812, -838, -855, -8245, -915, -932, -933, -940, -3071, -958, -962, -964, -969, -970, -1021, -1103, -1168, + -1228, -1266, -1344, -6273, -1471, -1475, -12832, -1476, -1482, -1483, -1492, -1526, -1534, -1654, -1942, -1955, + -1978, -2000, -2006, -13090, -13091, -2018, -2019, -2024, -2027, -2043, -2044, -13092, -13093, -13094, -2052, + -13095, -2125, -13096, -13097, -7708, -2210, -2211, -2214, -2253, -13098, -2335, -13099, -2347, -2410, -2460, + -2501, -2502, -2503, -2504 + ], + [1, 3, 8154], + [0, 8155, 8156, 8157, 4], + [0, -932, -942, -943, -13100, -958, -965, -968, -969, -13101], + [0, -3781, -1631, -1650, -2125, -2151, -2322], + [ + 0, -8180, -13102, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8175, -1445, -1452, -7148, + -8184, -8169, -13103, -5493, -2250, -8185, -5553, -8186, -8187, -8174 + ], + [1, 3, 8159], + [0, 0, 8160, 7, 5], + [0, -4298, -4300, -589, -2319], + [1, 3, 8162], + [0, 8163, 191, 8164, 4], + [0, -812, -907, -929, -990, -1072, -1335, -1641, -1681, -1800, -1997, -2255], + [0, -5142, -6656, -3844], + [1, 3, 8166], + [0, 8167, 8168, 8169, 5], + [ + 0, -13104, -3895, -13105, -13106, -13107, -13108, -13109, -13110, -1555, -1572, -1646, -9375, -13111, -13112, + -13113, -1983, -13114, -13115, -13116 + ], + [ + 0, -3890, -3893, -13117, -3037, -510, -13118, -756, -13119, -1276, -13120, -8936, -1942, -13121, -13122, -13123, + -13124, -13125, -2410 + ], + [ + 0, -11151, -5196, -11148, -13126, -6209, -13127, -11150, -6210, -13128, -3161, -13129, -13130, -13131, -3481, + -10809 + ], + [1, 3, 8171], + [0, 0, 8172, 8173, 11], + [0, -13132, -510, -589, -932, -1660, -2319], + [0, -2180, -10432, -13133, -11385], + [1, 3, 8175], + [0, 8176, 8177, 8178, 5], + [ + 0, -13134, -2446, -812, -13135, -1548, -1666, -2177, -2451, -1369, -3198, -13136, -13137, -1667, -6109, -13138, + -10416 + ], + [ + 0, -1857, -1788, -664, -461, -826, -2763, -1344, -1654, -1826, -2210, -932, -13139, -1692, -2125, -674, -928, + -13140, -13141, -2245, -10417, -10418, -13142, -749, -767, -1026, -13143, -1828, -13144, -12846, -1078, -2211, + -2410, -3035, -3037, -1002, -1534, -3621, -4372, -11747, -305, -3044, -13145, -13146, -13147, -86, -665, -13148, + -1609, -2174, -7382, -2234, -960, -964, -13149, -428, -13150, -9404, -427, -13151, -13152 + ], + [ + 0, -1691, -13140, -3742, -6321, -10425, -1857, -1682, -13153, -13139, -10424, -10418, -10704, -13154, -1818, + -3967, -13155, -7685, -7773 + ], + [1, 3, 8180], + [0, 0, 8181, 8182, 4], + [0, -589], + [0, -6233, -12343, -3214, -3756, -4055], + [1, 3, 8184], + [0, 8185, 37, 8186, 6], + [0, -812, -13156, -13157, -13158, -13159, -13160, -13161, -13162, -13163, -13164, -13165, -13166, -13167, -13168], + [ + 0, -13169, -13170, -13171, -13172, -13173, -11573, -1434, -13174, -13175, -13176, -10225, -13177, -13178, + -10227, -2183, -13179, -13180, -5827, -3975, -13181 + ], + [1, 3, 8188], + [0, 8189, 8190, 8191, 4], + [0, -469, -502, -623, -668, -700, -724, -13182, -13183, -5977, -6793, -13184], + [0, -1116, -2392, -2391, -1344, -932, -2469, -1942, -2410, -1534, -50, -3732, -13185, -3664, -13186], + [0, -2455, -2184, -11151, -1339], + [1, 3, 8193], + [0, 8194, 8195, 8196, 6], + [0, -990, -1072, -1681, -1840, -2155], + [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293, -13187], + [0, -1004, -13188, -5401], + [1, 3, 8198], + [0, 8199, 8200, 7, 11], + [0, -459, -7334, -812, -929, -1335, -1641, -1840], + [0, -465, -932, -963, -1654, -1788, -2293], + [1, 3, 8202], + [0, 8203, 81, 7, 5], + [0, -907, -929, -1840, -2178], + [1, 3, 8205], + [0, 8206, 8207, 8208, 4], + [0, -13189, -1640, -1645], + [ + 0, -86, -3307, -13190, -13191, -521, -664, -665, -720, -932, -940, -1077, -1344, -1534, -1573, -5969, -1654, + -1729, -1788, -1942, -1972, -13192, -2210, -2211, -2323 + ], + [0, -13192, -13193, -5819, -5817, -13194, -5937, -13195, -5940, -3258, -3100, -13196], + [1, 3, 8210], + [0, 8211, 8212, 8213, 5], + [ + 0, -13197, -13198, -13199, -13200, -3698, -13201, -13202, -13203, -11209, -13204, -5810, -13205, -13206, -13207, + -11197, -620, -4735, -13208, -5813, -13209, -1805, -7223, -2531 + ], + [ + 0, -13210, -4171, -13211, -3136, -3037, -3738, -4204, -427, -428, -13206, -5813, -928, -13212, -932, -940, + -8246, -948, -958, -967, -1344, -1415, -13213, -13214, -13215, -13216, -1456, -1766, -1942, -5815, -2251, -2375, + -2379, -2892, -2410, -2446 + ], + [0, -3112, -5817, -3634, -1415, -13192, -4216, -2469, -5819, -5941, -5943, -5951, -13217], + [1, 3, 8215], + [0, 8216, 0, 7, 4], + [0, -10906, -6130], + [1, 3, 8218], + [0, 0, 8219, 8220, 11], + [0, -528, -558, -566, -664, -932, -1059, -13218, -1344, -1534, -1654, -1942], + [0, -2192, -8495, -6439, -10661, -7378, -13219], + [1, 3, 8222], + [0, 8223, 8224, 8225, 4], + [0, -2177, -13220, -8612], + [ + 0, -8771, -2384, -13221, -2324, -1733, -13222, -1018, -13223, -2581, -1723, -13224, -1448, -13225, -13226, + -13227, -13228, -13229 + ], + [ + 0, -9235, -7715, -5315, -5316, -9807, -8642, -3839, -8707, -13230, -6527, -10095, -13231, -7066, -10711, -13232, + -13233 + ], + [1, 3, 8227], + [0, 0, 8228, 8229, 5], + [0, -5834, -516, -5835, -932, -993, -1365, -1408, -1777, -1788, -2156, -2322], + [0, -3957, -1838, -13234, -5550], + [1, 3, 8231], + [0, 8232, 8233, 8234, 4], + [0, -999, -1026], + [0, -519, -668, -710, -932, -934, -958, -1442, -1788, -13235, -13236, -2200, -13237], + [0, -2195, -6836, -11642, -5550, -13238, -9218, -1410, -12397], + [1, 3, 8236], + [0, 8237, 8238, 8239, 8], + [0, -1699], + [ + 0, -664, -1127, -1654, -913, -1132, -10682, -2351, -1158, -13239, -9256, -1130, -1156, -1542, -1136, -1144, + -1148, -5295 + ], + [0, -13240, -13241, -7231, -2446, -13242, -13243, -3005, -2197, -13244], + [1, 3, 8241], + [0, 8242, 8243, 8244, 4], + [0, -13245, -13246, -13247, -13248, -13249], + [0, -615, -932, -13250, -1654, -1942, -2127, -2137, -2388, -2410], + [0, -4004, -3440, -507, -2198], + [1, 3, 8246], + [0, 75, 8247, 8248, 4], + [ + 0, -1127, -1134, -1136, -1144, -1148, -1150, -1151, -13251, -1152, -1163, -1449, -1542, -1856, -13252, -2177, + -13253, -2234 + ], + [0, -1599, -6473], + [1, 3, 8250], + [0, 8251, 8252, 8253, 8], + [0, -1646, -2195], + [0, -526, -558, -566, -932, -934, -8246, -958, -1442, -1654, -1788, -2125, -13235, -13254, -13236, -2198], + [0, -2195, -5550, -11642, -6836, -6837, -8421, -687, -3977], + [1, 3, 8255], + [0, 0, 8256, 8257, 9], + [0, -7080, -3037, -9867, -5866, -652, -1942, -2319, -2379, -2402, -2410], + [0, -5395, -1000], + [1, 3, 8259], + [0, 8260, 8261, 8262, 5], + [0, -474], + [0, -1273, -1948, -2127, -2129, -2416], + [0, -5176, -13255, -10724, -659], + [1, 3, 8264], + [0, 8265, 8266, 8267, 8], + [0, -13256, -13257, -812], + [0, -13258, -13259, -3198, -3136, -3037, -928, -11714, -1415, -2379, -2410], + [0, -5889, -13260, -12263], + [1, 3, 8269], + [0, 0, 8270, 8271, 5], + [ + 0, -2384, -1415, -1344, -1868, -932, -2125, -2127, -1942, -767, -533, -23, -3136, -726, -13261, -1952, -44, -50, + -40, -953, -13262, -32, -3326, -2140, -3561, -13263, -350, -351, -8280, -13264, -536, -37 + ], + [0, -5070, -6814, -11889, -9668, -3161, -2006, -475, -2476, -3122, -6209, -3100], + [1, 3, 8273], + [0, 8274, 8275, 8276, 4], + [0, -4884, -357, -13265, -834, -2297], + [ + 0, -23, -4885, -4886, -4887, -4888, -13266, -11471, -13267, -539, -812, -829, -928, -13268, -10877, -1099, + -1534, -1654, -1788, -1942, -1978, -2125, -2177, -2195 + ], + [0, -2210, -4004, -3634, -5119, -8611, -4216, -8959, -4123, -13269, -4215, -2533, -507], + [1, 3, 8278], + [0, 0, 8279, 8280, 9], + [0, -190, -652, -664, -932, -1654, -1942, -2210], + [0, -664, -6537, -4865, -13270, -13271, -2210, -3634, -7244, -7245, -7243], + [1, 3, 8282], + [0, 8283, 8284, 8285, 5], + [ + 0, -4166, -3544, -510, -648, -13272, -13273, -1650, -2177, -6920, -1004, -1442, -2105, -927, -719, -1645, -1464, + -1276, -617, -724, -1335, -1304, -13274, -13275, -2062, -13276 + ], + [0, -1654, -615, -633, -13277], + [0, -6011, -5897, -7737, -11722, -3209, -1971, -3844], + [1, 3, 8287], + [0, 8288, 0, 7, 6], + [0, -13278, -5036, -13279], + [1, 3, 8290], + [0, 8291, 0, 8292, 11], + [0, -13280, -1532, -13281, -1863, -2654], + [0, -2214, -687, -985, -6187, -13282, -13283], + [1, 3, 8294], + [0, 89, 56, 8295, 5], + [0, -13284, -13285, -13286, -3445, -3100, -7566], + [1, 3, 8297], + [0, 8298, 8299, 8300, 10], + [0, -13287, -13288], + [0, -2501, -2376, -2410, -2503, -13289, -2502], + [0, -3445, -13290, -3690, -13192, -7685], + [1, 3, 8302], + [0, 0, 14, 8303, 5], + [0, -1847, -13291, -2218, -11635, -7084, -5845], + [1, 3, 8305], + [0, 8306, 8307, 8308, 4], + [0, -482, -13292], + [0, -519, -668, -13293, -2269, -2541], + [ + 0, -4783, -2265, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -3975, -5559, -5538, -5549, -5513, -5550, + -2547, -1573, -5545, -3958, -5554 + ], + [1, 3, 8310], + [0, 8311, 86, 8312, 4], + [0, -9371, -677, -5500, -13294, -13295, -10347, -13296, -1705, -1856, -13297, -1951, -1959, -13298, -2330, -2550], + [0, -13299, -3015, -9460, -1764, -1380], + [1, 3, 8314], + [0, 0, 8315, 8316, 5], + [0, -11254, -3470, -3471, -3311, -652, -1654, -2174, -2250], + [0, -2223, -2222, -2265, -2443, -9312, -4112, -2435], + [1, 3, 8318], + [0, 0, 8319, 8320, 4], + [0, -756, -13300, -1654, -1788], + [0, -2223, -2222, -2435, -13301], + [0, 44, 15, 16, 11], + [1, 3, 8323], + [0, 8324, 0, 8325, 4], + [0, -668, -1370, -1646, -2062, -13302, -2269, -2343], + [0, -3240, -13303, -13304, -2250, -13305, -10317, -13306, -13307, -13308, -13309], + [1, 3, 8327], + [0, 8328, 8329, 8330, 5], + [0, -523, -13310, -812, -1063, -1070, -1100, -1548, -2165, -2270, -6587, -13311], + [ + 0, -190, -3198, -3734, -3044, -3037, -13312, -6594, -617, -714, -834, -855, -883, -932, -1004, -1045, -1107, + -1654, -1788, -1942, -2062, -2177, -2187, -2198, -2210, -2234, -10402, -2402, -2410, -2411 + ], + [0, -2227], + [1, 3, 8332], + [0, 8333, 0, 8334, 4], + [0, -459, -13313, -754, -812, -5454, -13314, -4208], + [0, -8841, -3161, -2512, -9043, -997, -9005, -13315], + [1, 3, 8336], + [0, 8337, 0, 8338, 4], + [0, -13316, -812, -5455, -4208], + [0, -8841, -3161, -2512, -9043, -997, -3323], + [1, 3, 8340], + [0, 8341, 8342, 8343, 4], + [0, -812, -13317, -10622, -1370, -2438], + [ + 0, -633, -913, -932, -1003, -1168, -1208, -1243, -1244, -1252, -1262, -1471, -1472, -1473, -1475, -1482, -1654, + -1972, -1976, -2187, -13318, -2461, -2463 + ], + [0, -6224, -2512], + [1, 3, 8345], + [0, 0, 8346, 7, 8], + [0, -652, -855, -932, -1942, -940], + [1, 3, 8348], + [0, 0, 8349, 7, 6], + [0, -13239, -855, -2501], + [1, 3, 8351], + [0, 8352, 8353, 48, 6], + [0, -1351, -2232], + [ + 0, -21, -23, -40, -86, -3307, -7166, -533, -767, -774, -824, -825, -932, -940, -958, -1344, -1415, -1534, -1623, + -1771, -1942, -2251, -2501 + ], + [1, 3, 8355], + [0, 8356, 8357, 7, 4], + [0, -6829, -2231], + [0, -633, -711, -1339, -1654, -2501], + [1, 3, 8359], + [0, 0, 92, 8360, 5], + [0, -5092, -3264, -7451, -13319, -7205, -1838, -6231], + [1, 3, 8362], + [0, 8363, 8364, 8365, 8], + [ + 0, -13320, -13321, -13322, -9193, -13323, -674, -711, -719, -1026, -1119, -1122, -13324, -1127, -1134, -1136, + -1137, -1138, -1140, -1148, -1149, -1160, -1276, -1304, -1333, -1440, -1442, -13325, -1460, -1548, -1610, + -13326, -1889, -2162, -2312, -2359 + ], + [ + 0, -21, -23, -40, -43, -4710, -13327, -664, -665, -3629, -932, -964, -966, -974, -1654, -1753, -1942, -2123, + -2125, -2210, -2211 + ], + [0, -1122, -3671, -856, -13328, -13329, -3690, -4258, -3262], + [1, 3, 8367], + [0, 8368, 8369, 7, 8], + [0, -2346], + [0, -994, -8392, -8393, -8394, -13330], + [1, 3, 8371], + [0, 0, 8372, 7, 5], + [0, -13331, -13332, -11961, -1788, -1939, -2250, -2322], + [0, 0, 83, 7, 5], + [1, 3, 8375], + [0, 0, 8376, 7, 4], + [0, -1168, -1654, -932, -589, -1231, -1197, -1208, -1243, -1262, -13333, -1252], + [1, 3, 8378], + [0, 8379, 8380, 8381, 5], + [ + 0, -615, -712, -714, -783, -1077, -1276, -13334, -3999, -1548, -1757, -7667, -13335, -9395, -2347, -2460, -2462, + -13336, -13337 + ], + [0, -664, -756, -1405, -1654, -1657, -13338, -13339], + [0, -13340, -9278, -13341, -775, -3754, -1521, -2162, -2244, -13342, -7419], + [1, 3, 8383], + [0, 8384, 8385, 8386, 4], + [0, -596, -1723, -6521, -2323], + [0, -932, -1654, -12894], + [0, -10424, -3742, -2245, -7685], + [1, 3, 8388], + [0, 8389, 8390, 8391, 5], + [0, -13343, -13344], + [0, -932, -6461], + [0, -8905, -2246, -9456, -7721, -5550, -8421, -8908, -3323], + [1, 3, 8393], + [0, 8394, 8395, 8396, 10], + [0, -9084], + [0, -4298, -4300, -589], + [0, -5387, -3578, -7107, -13345, -10908, -10930, -13346, -13347, -13348, -13349, -13350, -3264], + [1, 3, 8398], + [0, 8399, 91, 8400, 9], + [0, -2548], + [ + 0, -2248, -4055, -2548, -9886, -10410, -7773, -6129, -13351, -13352, -3689, -7685, -856, -3445, -6857, -1671, + -1050, -1691, -2245, -6597, -13353, -10425, -4055, -6917, -13354 + ], + [1, 3, 8402], + [0, 0, 8403, 7, 11], + [0, -40, -533, -1415, -13355], + [1, 3, 8405], + [0, 8406, 8407, 8408, 6], + [0, -932, -943, -13100, -958, -965, -968, -969, -13101, -13356], + [0, -769, -1274, -1646, -13357, -2151, -5470, -2322], + [ + 0, -8180, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8175, -1445, -1452, -7148, -8184, -8169, + -5493, -2250, -8185, -5553, -8186, -8187, -8174 + ], + [1, 3, 8410], + [0, 8411, 8412, 8413, 5], + [0, -668, -739, -13358, -741, -10524, -831, -8888, -13359, -1040, -1047, -12340, -2177, -13360, -2550], + [0, -664, -932, -943, -958, -966, -968, -1654, -1658, -1663, -1788, -2195, -13361], + [0, -739, -13362, -5887, -5886, -5962, -9318, -475, -2250], + [1, 3, 8415], + [0, 8416, 8417, 8418, 4], + [0, -502, -615, -13363, -812, -999, -13364, -4703, -2648], + [ + 0, -3037, -13365, -664, -767, -829, -13366, -13367, -13368, -1116, -1457, -3809, -1646, -1654, -13369, -10652, + -2174, -13370, -2210, -2211, -8527, -2250 + ], + [0, -6657, -5921, -3844, -11818, -4004, -3590, -4116], + [1, 3, 8420], + [0, 8421, 8422, 8423, 5], + [0, -13371, -10926, -1093, -13372], + [0, -2330, -1754, -2424], + [0, -2254, -13373, -13374, -13375, -8841], + [1, 3, 8425], + [0, 0, 8426, 8427, 5], + [0, -790, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -1999, -9374], + [0, -1334, -9745, -707], + [1, 3, 8429], + [0, 8430, 8431, 8432, 4], + [0, -2531, -1805, -2066, -2177, -928, -6488, -13376, -4890, -13377, -12518, -407, -410], + [ + 0, -888, -2564, -664, -834, -1107, -1431, -2213, -999, -1526, -1623, -3548, -2006, -2218, -8609, -1111, -1699, + -1778, -13378, -928, -13379, -1085, -1442, -3447, -2114, -2358, -13380, -1885, -1942, -4893, -4204, -656, -719, + -2578, -1864, -13381, -2019, -3654, -2400, -12982, -2528, -4370, -3517, -13382, -1863, -2231, -2269, -2410, -23, + -9939, -3037, -769, -832, -13383, -47, -6192, -4894, -4918, -25, -13384, -3199, -13385, -831, -13386, -6467, + -13387, -6447, -3772, -3778, -3660, -3735, -13388, -6744, -13389, -3896, -13390, -12695, -2383, -46, -163, + -6630, -13391, -13392, -13393, -11751, -3194, -13394, -8523, -13395, -2044, -13396, -747, -13397, -7080, -13398, + -4239, -13399, -13400, -13401, -13402, -13403, -13404, -5474, -2271, -13405, -13406, -13407, -13408, -406, + -13409, -13410, -5322, -13411, -3776, -409, -13412, -13413, -4008, -8273, -2641, -13414, -3459, -13415, -13416, + -13417, -5296, -13418, -13419, -13420 + ], + [0, -2257, -3095, -3098, -13421, -13422, -2006, -2634, -9736, -2034, -3138, -2476, -475, -2299, -3176, -4902], + [1, 3, 8434], + [0, 8435, 8436, 8437, 8], + [0, -1338], + [ + 0, -13423, -4762, -4763, -4754, -13424, -13425, -13426, -13427, -4749, -4758, -13428, -407, -409, -3136, -4961, + -3040, -932, -13429, -1415, -4980, -1419, -1942, -1967, -1978, -2006, -2019, -2162, -2163, -2257, -2375, -2410, + -2516, -2548 + ], + [0, -4900, -2257, -13430, -3098, -856, -3100, -13431, -13432, -13433, -13434, -13435, -1783], + [1, 3, 8439], + [0, 8440, 0, 147, 5], + [ + 0, -3, -23, -40, -3538, -3539, -668, -674, -679, -714, -719, -755, -3542, -1022, -13436, -1077, -1107, -1276, + -1320, -1349, -13437, -1460, -1548, -1577, -3543, -3544, -1610, -1646, -3546, -3547, -11926, -9151, -2177, + -2368, -2378, -2446 + ], + [1, 3, 8442], + [0, 68, 15, 16, 11], + [1, 3, 8444], + [0, 212, 8445, 8446, 5], + [0, -13438, -13439, -1654, -2198], + [0, -13440, -5827], + [1, 3, 8448], + [0, 0, 8449, 8450, 4], + [0, -351, -3621, -3037, -789, -885, -1654, -7210, -1942, -2127, -2135, -2136, -2198, -2379, -2392, -2410], + [0, -5827, -6408, -788, -7208, -3445, -3100], + [1, 3, 8452], + [0, 8453, 56, 8454, 5], + [0, -7590, -305, -7565, -1061, -1406, -13441, -5721], + [0, -13442, -13443, -3445], + [1, 3, 8456], + [0, 0, 0, 8457, 9], + [0, -2264, -3276, -2265, -4123, -4121], + [1, 3, 8459], + [0, 0, 8460, 8461, 4], + [0, -1168, -1177, -1231, -1243, -13444, -1262, -11473, -2416], + [ + 0, -2265, -6816, -13445, -13446, -13447, -13448, -788, -3264, -3223, -1838, -3264, -9702, -6817, -11647, -6422, + -6420, -5559, -9692 + ], + [1, 3, 8463], + [0, 8464, 8465, 8466, 4], + [0, -3164, -13449, -1320, -1549, -13450, -13451, -13452], + [0, -13453, -13454, -12508], + [0, -707, -7347, -8388, -3264, -13455, -13456, -6694, -9357, -13457, -2265, -6817, -9702, -7651, -5554, -13458], + [1, 3, 8468], + [0, 8469, 14, 8470, 4], + [0, -13459, -2269], + [ + 0, -2265, -7472, -4112, -6730, -13460, -6787, -13461, -13462, -13463, -6786, -13464, -13465, -5514, -5559, + -5563, -687, -3958, -3974, -4000, -13466, -13467, -13468, -13469, -13470, -13471 + ], + [1, 3, 8472], + [0, 8473, 8474, 8475, 5], + [0, -2737, -2738], + [0, -3037, -652, -2736, -1942, -2094, -2100, -2399, -2410, -2541], + [0, -6231, -6422, -5559, -3264, -7472, -4846, -8034, -3223], + [1, 3, 8477], + [0, 8478, 238, 8479, 4], + [0, -481], + [ + 0, -6817, -11647, -6694, -5514, -3770, -712, -5535, -714, -3974, -4000, -2265, -3975, -5559, -5538, -5549, + -5513, -5550, -2547, -1573, -5545, -3958, -5554 + ], + [1, 3, 8481], + [0, 0, 14, 8482, 4], + [0, -6817, -9310, -6472, -7154, -9311, -4112, -2443, -9312, -6694, -6693, -11647, -5554, -2265], + [1, 3, 8484], + [0, 0, 8485, 8486, 4], + [0, -519, -1612, -2384, -2541], + [0, -4055, -6817, -3485, -6694, -6693, -11647, -6810, -1838, -727, -3870, -6849, -2444, -6845, -5558, -8292], + [1, 3, 8488], + [0, 0, 8489, 8490, 4], + [ + 0, -1788, -664, -1722, -1654, -932, -2379, -1942, -1729, -2410, -3035, -3037, -3621, -13472, -665, -958, -1656, + -940, -967, -4269, -428, -4628, -427 + ], + [0, -2272, -13473, -13474, -3690], + [1, 3, 8492], + [0, 8493, 8494, 8495, 5], + [ + 0, -510, -812, -13475, -13476, -1735, -13477, -1758, -1813, -2059, -13478, -13479, -13480, -13481, -13482, + -12003, -13483, -13484, -13485, -2518, -1464, -642, -13486, -797, -1298, -1370, -1521, -1548, -1579, -10695, + -11015, -13372, -1666, -2062, -9798, -2245, -13487, -10690, -13488, -13489, -13490, -11800, -2531 + ], + [0, -932, -1445, -2319], + [ + 0, -4344, -13491, -11755, -13492, -10705, -13493, -5804, -9733, -5805, -7641, -4161, -9844, -727, -3015, -8901, + -8904, -13494, -1066, -5889, -11021, -13495, -5545, -10706, -9800, -13496, -10412, -13497, -11230, -13498, + -1764, -13499, -13500, -13501, -6187, -13502, -1958, -6479, -11429, -11722, -13503, -4043, -5196, -13504, + -13505, -8027, -13478, -13506, -13507, -12003, -13485, -2273, -13508, -2295, -7307, -4123, -13509 + ], + [1, 3, 8497], + [0, 8498, 8499, 8500, 4], + [0, -13510, -13511, -13512, -13513, -668, -671, -5971, -719, -1395, -1460, -13514, -1942, -2355], + [ + 0, -6327, -2843, -50, -86, -3307, -13515, -13516, -3989, -13517, -3035, -3037, -5011, -3738, -428, -3311, + -13518, -3312, -461, -2834, -664, -932, -964, -969, -989, -1077, -13519, -1344, -13520, -1448, -13521, -1521, + -1534, -5273, -10918, -5670, -1654, -9002, -1771, -4916, -2162, -2177, -2193, -13522, -2286, -2410, -2429, + -2446, -2548 + ], + [0, -13523, -5553, -13524, -775, -3099, -7205, -2162, -3754, -5739, -13525, -2006, -3163, -4901], + [1, 3, 8502], + [0, 0, 8503, 48, 4], + [ + 0, -1415, -2162, -1344, -1449, -1623, -774, -932, -2177, -825, -2501, -920, -1942, -767, -21, -533, -778, -23, + -1041, -1534, -1771, -2163, -2503, -86, -2251, -40, -2505, -958, -940, -1419, -3307, -7166 + ], + [1, 3, 8505], + [0, 8506, 8507, 8508, 5], + [0, -2277], + [ + 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -3136, -427, -428, -932, -967, -4814, -1110, -1344, -1415, + -1534, -1942, -2127, -2375, -2379, -2410 + ], + [0, -2276, -775, -5553, -3214, -7208, -9680], + [1, 3, 8510], + [0, 8511, 8512, 8513, 6], + [0, -1374], + [ + 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -3267, -3136, -3037, -427, -428, -932, -967, -4814, -1110, + -1344, -1415, -1534, -1771, -1942, -2910, -2127, -2375, -2379, -2387, -2410 + ], + [0, -2277, -9339, -5553, -3215, -775, -7208, -9680], + [1, 3, 8515], + [0, 8516, 8517, 8518, 11], + [0, -3776, -5577, -13526, -13527, -786, -1889, -2192, -3768, -2387], + [ + 0, -23, -3341, -3840, -26, -36, -3203, -40, -41, -42, -3267, -406, -407, -409, -410, -3043, -3136, -13528, + -3037, -3040, -3052, -13529, -3141, -3081, -13530, -533, -535, -8560, -6046, -3563, -1415, -1419, -3667, -1428, + -1440, -1942, -1967, -2006, -2019, -13531, -2034, -2052, -2127, -2131, -2133, -2137, -2138, -2139, -2140, + -13532, -13533, -2410 + ], + [0, -2006, -775, -3771, -2278, -4134], + [1, 3, 8520], + [0, 8521, 8522, 8523, 11], + [0, -2740], + [ + 0, -21, -23, -36, -3077, -3373, -3204, -38, -40, -41, -43, -44, -47, -3040, -519, -3766, -9723, -742, -932, + -940, -1344, -1543, -1942, -1952, -2006, -2019, -2174, -2231, -12979, -3768, -13534, -2410 + ], + [0, -3766, -2455, -13535, -3771, -775], + [1, 3, 8525], + [0, 8526, 22, 8527, 10], + [0, -635, -1931], + [0, -6413, -775, -13536, -13537, -7192, -1889, -3583, -2280], + [1, 3, 8529], + [0, 8530, 8531, 8532, 6], + [ + 0, -93, -7195, -94, -95, -12147, -98, -9352, -2840, -755, -777, -781, -812, -1026, -11676, -8142, -6197, -1111, + -13538, -1327, -1353, -3190, -8143, -1396, -1499, -13539, -1630, -1639, -1759, -1863, -1889, -1929, -1931, + -1934, -2267, -2591, -13540, -4002, -2530 + ], + [ + 0, -50, -13541, -5121, -13542, -13543, -13544, -5685, -3198, -13545, -13546, -13547, -13548, -4036, -6928, + -13549, -8335, -13550, -9284, -589, -722, -823, -932, -13551, -958, -959, -1344, -1415, -13552, -1428, -1534, + -4984, -1771, -4916, -1904, -1906, -12130, -13553, -1930, -1942, -2094, -2289, -2410 + ], + [0, -3771, -775, -1521, -7148, -8170, -1599, -2162, -3754, -2281, -2289], + [1, 3, 8534], + [0, 8535, 8536, 8537, 9], + [0, -3085], + [0, -13542, -13543, -932, -13551, -1344, -1534, -1771, -1942, -2094, -2281], + [0, -2281, -13554, -2250], + [1, 3, 8539], + [0, 0, 8540, 8541, 5], + [ + 0, -1788, -1415, -1344, -1868, -855, -932, -708, -2402, -1942, -13555, -767, -2281, -21, -533, -13556, -5128, + -2410, -23, -5870, -1534, -1637, -43, -86, -2174, -40, -13557, -959, -977, -958, -3471, -13552, -3842, -940, + -967, -2405, -42, -428, -3470, -3307, -935, -427, -3363, -5585, -26, -36 + ], + [0, -13558, -2281, -775, -3754, -1521, -7148, -13559, -3833, -5924, -13560, -712, -13561], + [1, 3, 8543], + [0, 8544, 8545, 8546, 4], + [0, -1889, -13562], + [ + 0, -932, -13563, -940, -1110, -1344, -1415, -12241, -13552, -1428, -1534, -1904, -12130, -13564, -1942, -13565, + -2281 + ], + [0, -13558, -2281, -775, -7148, -7154], + [1, 3, 8548], + [0, 8549, 8550, 8551, 4], + [0, -781, -1396, -1499, -1620, -13566, -13567, -1931, -1934], + [0, -722, -767, -932, -13568, -1344, -1415, -13552, -1534, -1763, -1889, -12130, -1930, -1942, -2281], + [0, -775, -9231, -7148, -8170, -3754, -2281, -13558], + [1, 3, 8553], + [0, 8554, 128, 8555, 6], + [0, -28, -812, -1107, -2165, -2231], + [0, -775, -3215, -5553, -9406, -1409, -6784], + [1, 3, 8557], + [0, 8558, 8559, 8560, 6], + [0, -1026, -1759], + [ + 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -589, -13569, -767, -774, -778, -824, -825, -932, -940, -6929, + -958, -959, -960, -965, -967, -978, -1110, -1344, -1415, -1534, -1623, -1717, -1771, -1942, -2000, -2251, -2275, + -2286, -2411, -2501 + ], + [0, -2501, -5932, -2286], + [1, 3, 8562], + [0, 0, 0, 8563, 11], + [0, -775, -1889, -12209, -4132, -6806, -3215], + [1, 3, 8565], + [0, 8566, 8567, 8568, 5], + [0, -723, -13570, -812, -13106, -1069, -1070, -1636, -1640, -1983], + [ + 0, -21, -23, -38, -40, -44, -86, -3307, -571, -7124, -11178, -617, -633, -744, -767, -932, -946, -952, -966, + -1004, -1010, -1053, -1098, -1344, -1534, -1610, -1654, -1685, -1788, -2094, -2099, -2125, -2198, -13571, + -13572, -2541, -2568 + ], + [ + 0, -9733, -5998, -5998, -3690, -510, -5867, -523, -5391, -3323, -13573, -1116, -1334, -1334, -1342, -9128, + -1961, -1961, -5923, -2105, -2105, -9176, -13503, -3691, -2122, -13574, -2291, -7430, -6408, -2533, -2540 + ], + [1, 3, 8570], + [0, 8571, 8572, 7, 6], + [0, -10528], + [0, -3198, -11232, -3037, -589, -10300, -1671, -8973, -2410, -2469], + [1, 3, 8574], + [0, 8575, 8576, 8577, 5], + [0, -1636, -2291, -746], + [0, -1788, -1722, -1654, -2210, -932, -2198, -1004, -1972, -617, -744, -86, -958, -934, -3307], + [0, -3440, -1334, -2105, -2291, -4873, -4004, -3634], + [1, 3, 8579], + [0, 8580, 8581, 8582, 4], + [0, -615, -1636], + [0, -664, -665, -2123, -2517, -617, -744, -1004, -1654, -2198], + [0, -2293, -2291, -2105, -4873, -3440, -1334, -4004, -3634, -1961, -13575], + [1, 3, 8584], + [0, 0, 8585, 8586, 5], + [0, -2541, -519, -2384, -3037], + [ + 0, -712, -5535, -714, -3974, -4000, -687, -5514, -3770, -3975, -5549, -5513, -5550, -2547, -3958, -6520, -13576, + -13577, -6659, -13578, -13579 + ], + [1, 3, 8588], + [0, 8589, 8590, 8591, 6], + [0, -3195, -3115, -5032, -426, -461, -5113, -8294, -703, -5034, -5035, -13580, -4788, -4789, -1588, -13581], + [0, -3180, -3983, -350, -351, -3266, -3989, -5114, -3037, -5040, -928, -2127, -2231, -2654, -2410, -2469], + [0, -2299, -11193, -3161, -3261, -7651], + [1, 3, 8593], + [0, 8594, 8595, 8596, 4], + [0, -3180, -679, -4787, -1863, -5037], + [ + 0, -350, -4062, -351, -3561, -3267, -13582, -644, -2127, -2130, -4063, -2299, -2410, -13583, -13584, -11164, + -11165, -13585, -13586 + ], + [0, -2299, -687], + [1, 3, 8598], + [0, 0, 8599, 8600, 4], + [ + 0, -23, -40, -86, -3307, -13587, -13588, -4776, -3037, -13589, -8336, -518, -5859, -711, -740, -932, -1521, + -1889, -13590, -1907, -1942, -1974, -2162, -2286, -2289, -2299, -2410, -2469 + ], + [0, -2299, -9263, -2410, -1521, -2286, -2162, -3754, -1974, -711], + [1, 3, 8602], + [0, 8603, 8604, 8605, 4], + [ + 0, -2746, -1107, -2303, -510, -10310, -2460, -2542, -2550, -1442, -2520, -1689, -13591, -1566, -8054, -4733, + -13592, -5981 + ], + [0, -2541, -1415, -1521, -2162, -1880, -2286, -1870, -959, -960, -13593, -13594], + [ + 0, -3167, -3843, -3839, -7715, -9278, -9279, -9471, -3262, -775, -2162, -1521, -2286, -3271, -9339, -3264, + -9472, -9473, -9474, -1689, -7419 + ], + [1, 3, 8607], + [0, 8608, 8609, 8610, 4], + [0, -719, -780, -781, -2888, -2746, -1863, -2165], + [ + 0, -190, -5121, -350, -351, -3266, -5685, -7169, -3136, -3037, -13312, -3715, -767, -932, -1110, -1415, -1870, + -1874, -1880, -1942, -2125, -2127, -2325, -2384, -2410 + ], + [0, -2303, -3839, -7175, -1644], + [1, 3, 8612], + [0, 8613, 8614, 8615, 4], + [0, -824, -1570, -13595, -2415], + [0, -519, -526, -528, -556, -11733, -562, -566, -615, -932, -13596, -1626, -1650, -2210, -2501], + [0, -2501, -3862, -13597, -13595, -5196, -8615], + [1, 3, 8617], + [0, 8618, 8619, 8620, 8], + [0, -461, -823, -1107, -1460], + [0, -932, -1942, -2322, -13598], + [0, -4847, -13599, -3696, -8442, -856, -2305, -5885, -5886, -3262, -3960, -8443, -8444, -8445, -3438], + [1, 3, 8622], + [0, 8623, 8624, 8625, 4], + [0, -1111, -1442, -719, -13600, -13601], + [0, -932, -2469, -1942, -3664, -13602], + [0, -4847, -3671, -13603, -856, -3690, -9339, -3485], + [1, 3, 8627], + [0, 0, 131, 8628, 4], + [0, -3812, -4847, -3160, -2308, -1004, -856, -3671, -13604, -5406, -2307, -4101, -13605, -13606], + [1, 3, 8630], + [0, 8631, 8632, 8633, 4], + [0, -3434], + [0, -927, -1004, -13607, -1654, -1788, -1978], + [0, -4847, -1004, -3160, -4055, -856], + [1, 3, 8635], + [0, 8636, 8637, 8638, 6], + [0, -2416, -1813], + [0, -1548, -1004, -13608, -1654, -1003, -13609, -1521, -13610, -600, -13611, -1859, -633, -6656, -1446], + [0, -3110, -7651, -3264, -13432, -13612, -6876, -1004, -6301], + [1, 3, 8640], + [0, 0, 0, 8641, 9], + [ + 0, -2311, -13613, -12449, -2363, -5270, -3162, -752, -1861, -3994, -3161, -13614, -12613, -13615, -3862, -2006, + -2476, -13616 + ], + [1, 3, 8643], + [0, 8644, 8645, 8646, 4], + [0, -13617, -13618, -13619], + [0, -617, -767, -1004, -13620, -1415, -1676, -2125, -2410], + [0, -2105, -1334, -1342, -3324, -633, -12397, -6367], + [1, 3, 8648], + [0, 0, 0, 8649, 9], + [ + 0, -13621, -13622, -1673, -11230, -1819, -9261, -12578, -7084, -13623, -13624, -13625, -13626, -13627, -13628, + -13629, -12218, -13630, -3708, -13631, -10412, -8801, -13632, -13633, -13634, -13635, -5150, -13636, -13637, + -13638, -13639, -13640, -13641, -13642, -13643, -13644, -7606, -13645, -13646, -6524, -13647, -13648, -13649, + -6712, -13650, -13651, -10245, -13652, -13653, -13654, -13655, -13656, -13657, -13658, -3445, -13173, -13659, + -13660 + ], + [1, 3, 8651], + [0, 0, 8652, 7, 4], + [ + 0, -1805, -1496, -1654, -1650, -2125, -2127, -2334, -615, -1729, -13661, -8559, -2516, -2234, -4062, -2140, + -3561, -13662, -351, -13663 + ], + [1, 3, 8654], + [0, 8655, 8656, 8657, 4], + [ + 0, -2531, -469, -754, -13664, -13665, -13666, -13667, -1548, -1676, -13668, -13669, -13670, -13671, -1004, + -13672, -13673, -13674, -13675, -13676, -512, -617, -724, -737, -13677, -496, -44, -13678 + ], + [0, -1708, -473, -13679, -13680, -2195, -13681, -722, -13682], + [0, -13683, -13684], + [1, 3, 8659], + [0, 0, 8660, 8661, 9], + [ + 0, -5369, -2387, -932, -1111, -2127, -2469, -1942, -2410, -23, -3037, -40, -2132, -2411, -3664, -3326, -958, + -5122, -6593, -13685, -3267, -351, -10022, -3344 + ], + [0, -2318, -2316, -775, -3205, -13686, -13687, -1631, -9342, -13688], + [1, 3, 8663], + [0, 0, 8664, 7, 4], + [0, -815, -3037, -3751, -1588, -2232, -13689, -3195], + [1, 3, 8666], + [0, 8667, 0, 8668, 10], + [ + 0, -13690, -13691, -13692, -13693, -13694, -13695, -13696, -13697, -13698, -13699, -13700, -13701, -13702, + -13703, -13704, -13705, -13706, -13707, -13708, -13709 + ], + [0, -507, -2319, -4004, -3634, -3161, -687, -13710, -13711], + [1, 3, 8670], + [0, 8671, 8672, 8673, 9], + [0, -668, -883, -1040, -1548, -1951, -10854, -13712, -2347], + [0, -13713], + [0, -2322, -2319, -1654, -4679, -6863], + [1, 3, 8675], + [0, 0, 8676, 7, 6], + [0, -1415, -932, -1110, -1942, -190, -533, -23, -965, -3560, -40, -959, -958, -6929, -978, -940, -967, -3748], + [1, 3, 8678], + [0, 8679, 8680, 8681, 9], + [ + 0, -13714, -13715, -13716, -655, -821, -6369, -13717, -1065, -1097, -1107, -13718, -1285, -1370, -7394, -1646, + -1659, -1794, -5849, -1795, -1797, -2114, -8057 + ], + [ + 0, -5834, -505, -516, -725, -767, -887, -13719, -5835, -921, -932, -6282, -1408, -1442, -13720, -1777, -1788, + -2156, -2177, -2319, -8573 + ], + [0, -2319, -4004, -13721, -507, -4865], + [1, 3, 8683], + [0, 8684, 8685, 7, 5], + [0, -13722, -13723, -9084, -11721, -13724], + [0, -2319, -1722, -2386, -13725, -2125, -2402, -1942, -11719, -3037, -908, -13726], + [1, 3, 8687], + [0, 8688, 8689, 8690, 5], + [0, -1976, -2325], + [0, -2125, -13727, -2250], + [0, -2323, -1076, -6656, -7738, -7421, -5827], + [1, 3, 8692], + [0, 8693, 8694, 7, 6], + [0, -13728, -13729, -13730], + [0, -13727, -2250, -725], + [1, 3, 8696], + [0, 33, 8697, 8698, 6], + [0, -6486, -6627, -3136, -3037, -427, -428, -756, -928, -932, -943, -958, -966, -968, -1415, -1942, -2375, -2410], + [0, -13731, -3555, -13732, -13733, -3100, -13734, -3445, -13735, -11074, -6235], + [1, 3, 8700], + [0, 0, 8701, 8702, 4], + [ + 0, -6486, -13736, -13737, -3617, -6627, -3136, -3037, -4203, -427, -428, -617, -720, -796, -13738, -932, -943, + -958, -966, -968, -1344, -1415, -1534, -1753, -7760, -1942, -2293, -2375, -2410 + ], + [0, -13731, -3555, -13732, -13733, -3445, -13735, -6367, -1004], + [1, 3, 8704], + [0, 8705, 0, 8706, 8], + [0, -812, -1723, -6127], + [0, -13739, -13740, -13741, -13742, -13743, -596, -13744, -3445], + [1, 3, 8708], + [0, 8709, 8710, 8711, 8], + [0, -812, -1723], + [ + 0, -190, -3561, -3198, -3037, -8612, -865, -932, -940, -972, -978, -1733, -1942, -2402, -2405, -2410, -2411, + -2466, -6859, -2469 + ], + [0, -13739, -13742, -2328, -3966, -3445], + [1, 3, 8713], + [0, 8714, 27, 258, 5], + [0, -2125, -1650], + [1, 3, 8716], + [0, 8717, 8718, 8719, 4], + [0, -1399, -5917, -2400, -13387], + [0, -3037, -519, -1849, -2363, -2384, -2541], + [0, -2330, -9214, -1847, -6656, -7421, -7420, -6909, -13745, -11846, -13746, -6555, -13747], + [1, 3, 8721], + [0, 8722, 0, 8723, 9], + [0, -10893, -13748, -13749, -13750, -13751, -13752, -13753, -13754], + [ + 0, -3974, -4000, -5514, -687, -2547, -712, -13755, -13756, -5553, -3962, -13757, -12898, -13758, -5564, -3824, + -6716, -6765, -13759, -13760, -13761, -12704, -6527, -7715, -9235, -8642 + ], + [1, 3, 8725], + [0, 8726, 0, 8727, 11], + [0, -13762, -6372, -1370, -13763, -2347, -13764], + [0, -3824, -3974, -5514, -13765, -13766], + [1, 3, 8729], + [0, 8730, 8731, 8732, 6], + [0, -13767, -461, -719, -2234], + [0, -13768, -13769, -932, -8150, -985, -1654, -1939, -2127, -2177, -2231], + [ + 0, -9216, -2334, -2415, -2416, -1644, -6684, -3214, -3217, -8108, -3184, -6052, -13770, -4795, -8165, -6434, + -510, -5867 + ], + [1, 3, 8734], + [0, 8735, 8736, 8737, 5], + [0, -2334, -1429, -2168, -2182, -3180], + [ + 0, -824, -1415, -1344, -1623, -774, -932, -825, -928, -2501, -1942, -367, -767, -2416, -21, -190, -2410, -23, + -3037, -1041, -1534, -1771, -2503, -11510, -86, -965, -3560, -13771, -2251, -40, -2411, -959, -748, -960, -958, + -6929, -978, -940, -967, -3748, -6930, -3307 + ], + [0, -9216, -2416, -2415, -2334, -2501, -7172, -6059, -6454, -9696, -9234, -6059, -6684, -1644, -7175, -7176], + [1, 3, 8739], + [0, 8740, 8741, 8742, 4], + [0, -13772, -13773, -13774, -13775, -13776, -717, -718, -10293, -1026, -10745, -7576], + [0, -1448, -1729], + [0, -2337, -4004, -4043, -687, -5119, -3634, -3673, -2322, -2319, -519, -1654], + [1, 3, 8744], + [0, 8745, 8746, 8747, 11], + [0, -615, -668, -1107, -1548, -1610, -1650, -13777, -13778], + [ + 0, -3244, -190, -5294, -5767, -3036, -3044, -3037, -4372, -427, -428, -3664, -827, -932, -6611, -13779, -2210, + -13780, -13781, -2391, -2392, -2410, -13782, -2469 + ], + [0, -1599, -4004, -5119, -13783, -856, -3671], + [1, 3, 8749], + [0, 8750, 8751, 8752, 4], + [ + 0, -23, -33, -37, -10983, -3395, -3383, -3376, -3384, -3393, -3350, -3385, -3374, -38, -40, -6056, -41, -44, + -13784, -13785, -3037, -6558, -3442, -541, -6067, -13786, -7435, -664, -668, -13787, -711, -719, -812, -815, + -824, -13788, -11460, -834, -13789, -11328, -5910, -3606, -999, -13790, -1111, -1119, -12933, -1341, -5458, + -13791, -1366, -1392, -10697, -1393, -13792, -1399, -1460, -1548, -13793, -1591, -11015, -1666, -13794, -1689, + -1699, -13795, -1839, -1866, -13796, -1880, -6467, -13797, -1966, -1982, -13798, -13799, -5915, -2115, -2160, + -2177, -3169, -2234, -2270, -13800, -13801, -13802, -13803, -13804, -13805, -13806, -13807, -13808, -13809, + -2359, -2369, -2410, -13810, -13811 + ], + [ + 0, -13812, -7590, -13813, -4066, -350, -6572, -351, -13814, -13815, -3035, -3198, -13816, -9939, -9283, -11011, + -3622, -3735, -3199, -3172, -9660, -13817, -427, -428, -535, -579, -617, -13818, -13819, -665, -9077, -3050, + -729, -754, -767, -13820, -930, -932, -13821, -7353, -1004, -13822, -1168, -1174, -13823, -1196, -1197, -1226, + -13824, -13825, -8498, -1243, -13826, -1262, -3809, -1608, -1632, -1646, -13827, -1685, -13828, -1972, -2006, + -13829, -2127, -2142, -2187, -2210, -7220, -2269, -13830, -2387, -2416 + ], + [ + 0, -13831, -5112, -4865, -6413, -3258, -3995, -3634, -4864, -4004, -4043, -4873, -507, -5855, -13832, -6948, + -6950, -510, -5867 + ], + [1, 3, 8754], + [0, 8755, 8756, 8757, 6], + [0, -7602, -13833, -501, -8864, -8898, -812, -13834, -851, -1098, -7772, -13835, -13836, -2324, -2359, -2426], + [0, -11344, -13837, -11339, -3198, -11347, -13838, -13839, -3628], + [0, -2340, -7606, -3634], + [1, 3, 8759], + [0, 8760, 8761, 8762, 5], + [0, -1548, -4654, -13840, -10846], + [ + 0, -3037, -427, -428, -633, -13841, -13842, -767, -815, -13843, -13844, -1398, -1650, -1771, -1788, -2125, + -2250, -13845, -13846, -2341, -2379, -5482, -2410 + ], + [0, -4873, -3440, -4215, -8611, -4216, -13847, -11378], + [1, 3, 8764], + [0, 8765, 8766, 8767, 4], + [ + 0, -4733, -573, -615, -13762, -719, -724, -735, -999, -1004, -13848, -1107, -1336, -1442, -1548, -1650, -1689, + -1737, -1778, -13849, -2125, -2228, -13850, -13851, -8573, -2359 + ], + [ + 0, -13852, -633, -664, -7976, -13853, -674, -838, -932, -7979, -964, -1654, -2105, -13854, -2195, -2210, -2211, + -2229, -2322 + ], + [0, -3214, -3634, -11116, -4865], + [1, 3, 8769], + [0, 0, 8770, 8771, 4], + [0, -2319, -2322, -689], + [0, -5554, -4002, -9846, -4111, -10844, -6724], + [1, 3, 8773], + [0, 0, 8774, 8775, 4], + [ + 0, -190, -351, -3266, -932, -13855, -952, -957, -960, -1110, -13856, -1446, -1588, -1880, -1978, -1989, -2127, + -2393 + ], + [0, -2344, -13857, -3214, -13858, -13859, -13860, -13861, -13862, -13863, -13864, -13865, -659, -3839, -5177], + [1, 3, 8777], + [0, 0, 8778, 8779, 4], + [ + 0, -21, -23, -38, -40, -44, -3326, -534, -7156, -753, -932, -7157, -940, -967, -985, -1098, -13866, -7158, + -1344, -1471, -1473, -1475, -1479, -1483, -1485, -1490, -1492, -1534, -1646, -13867, -1763, -1942, -1991, -2127, + -7161, -2501 + ], + [0, -811, -7329], + [1, 3, 8781], + [0, 0, 8782, 8783, 9], + [0, -8388, -2322, -8393], + [0, -5827, -8027, -13868, -11441], + [1, 3, 8785], + [0, 8786, 8787, 8788, 4], + [0, -2062], + [0, -599, -640, -664, -13869, -1654, -13870, -2250, -13871], + [0, -5827, -13872, -2346, -6408], + [1, 3, 8790], + [0, 0, 0, 8791, 11], + [0, -12735, -705, -3262, -5925, -1961], + [1, 3, 8793], + [0, 0, 14, 8794, 6], + [0, -13873, -13874, -13875, -2350, -13876, -1847, -11845, -7421, -2440, -7727, -5845], + [1, 3, 8796], + [0, 8797, 210, 8798, 4], + [0, -668, -12908, -1040, -9236, -13877, -1951, -2343], + [0, -1127, -8906, -9460, -4123, -13878, -9330, -13879, -9225, -6187, -8906], + [1, 3, 8800], + [0, 8801, 8802, 8803, 4], + [ + 0, -13880, -13881, -13882, -13883, -13884, -13885, -13886, -13887, -13888, -13889, -13890, -13891, -13892, + -13893, -13894, -13895, -13896, -13897, -13898, -13899, -13900, -13901, -13902, -13903, -13904, -13905, -13906, + -13907, -13908, -13909, -13910, -13911, -13912, -13913, -13914, -13915, -13916, -13917, -13918, -13919, -13920, + -13921, -13922, -13923, -13924, -13925, -13926, -13927, -13928, -13929, -13930, -13931, -13932, -13933, -13934, + -13935, -13936, -13937, -13938, -13939, -13940, -13941, -13942, -13943, -13944, -13945 + ], + [ + 0, -1076, -1107, -1168, -1847, -2162, -1654, -2006, -932, -1548, -2125, -784, -1889, -2501, -923, -1077, -1405, + -767, -1003, -1248, -1743, -2019, -778, -1183, -1967, -1187, -2163, -518, -1238, -1244, -2275, -13946, -13947, + -1792, -2508, -1184, -1514, -1908, -13948, -3054, -969, -933, -958, -962, -10533, -13949, -796, -1017 + ], + [0, -2006, -3159, -3095, -3098, -3160, -3161, -3100, -13950, -2352, -13951], + [1, 3, 8805], + [0, 8806, 8807, 7, 6], + [0, -10459, -812, -10622, -10623, -1792, -1983], + [0, -526, -535, -554, -559, -932, -943, -968, -974, -1004, -1088, -1654, -11943, -2251, -2293], + [1, 3, 8809], + [0, 0, 0, 8810, 5], + [0, -589, -13952, -13241], + [1, 3, 8812], + [0, 0, 8813, 8814, 5], + [0, -13953], + [0, -712, -3215, -13954], + [1, 3, 8816], + [0, 0, 0, 8817, 11], + [0, -3494, -2356, -7754, -3214, -3264, -5554, -10109, -10110, -10114, -3495, -10111, -3498], + [1, 3, 8819], + [0, 0, 8820, 8821, 4], + [0, -3037, -13239, -932, -940, -967, -978, -1942, -2892, -2410, -2411, -2466, -2469], + [0, -5922, -13955, -13956], + [1, 3, 8823], + [0, 0, 0, 8824, 8], + [0, -4216, -4215, -2410, -13957], + [1, 3, 8826], + [0, 0, 8827, 258, 4], + [0, -1654, -932, -1405, -6726, -964], + [1, 3, 8829], + [0, 8830, 8831, 8832, 4], + [0, -2036], + [0, -23, -13958, -3156, -1942, -2410], + [ + 0, -2006, -3159, -13959, -12662, -3825, -13960, -13961, -2034, -2053, -13962, -13963, -2360, -4127, -4122, + -13964, -687, -3162, -5270, -5271, -3578, -13965 + ], + [1, 3, 8834], + [0, 0, 8835, 8836, 10], + [ + 0, -21, -23, -37, -40, -41, -2581, -11254, -3311, -534, -664, -932, -1004, -1077, -1103, -1111, -1442, -1449, + -1610, -1650, -1654, -2634, -13966, -1771, -13967, -2006, -2019, -2162, -2250, -2501, -2503 + ], + [0, -2361, -3214, -4002, -13968, -7002, -3960, -3264, -7534, -9975], + [1, 3, 8838], + [0, 0, 8839, 8840, 6], + [0, -1754, -11358], + [0, -2362, -3215], + [1, 3, 8842], + [0, 0, 8843, 7, 6], + [0, -11719, -2319], + [1, 3, 8845], + [0, 8846, 8847, 8848, 6], + [0, -13969], + [ + 0, -2832, -190, -4139, -262, -3037, -6593, -932, -940, -948, -958, -967, -3631, -1110, -1942, -2391, -2410, + -2411, -2469 + ], + [0, -4181, -743, -6920, -13970, -13570, -8792, -13971, -13972], + [1, 3, 8850], + [0, 8851, 8852, 8853, 4], + [0, -714, -808, -1650, -13973], + [0, -3035, -3621, -664, -689, -879, -932, -1654, -1788, -2379, -2388, -2410], + [0, -1573, -3444, -13974, -812], + [1, 3, 8855], + [0, 8856, 8857, 8858, 5], + [0, -11103, -13975, -7400], + [0, -5834, -516, -5835, -921, -932, -1365, -1777, -2156, -2322], + [0, -2368, -2487, -7371, -6917, -13976, -6545, -702], + [1, 3, 8860], + [0, 0, 27, 8861, 5], + [0, -10919, -10336, -1958, -13641, -12872, -5395], + [1, 3, 8863], + [0, 241, 8864, 7, 5], + [0, -3732, -4198, -3617, -3136, -724, -754, -1004, -1415, -1753, -1942, -2375, -2410, -2564], + [1, 3, 8866], + [0, 8867, 8868, 8869, 4], + [0, -1370, -2347, -6372, -13977, -13978, -2062], + [0, -2322, -2346, -725], + [0, -3264, -9292, -3215, -6408, -12123, -775], + [1, 3, 8871], + [0, 8872, 8873, 8874, 4], + [0, -3851, -3199, -1388, -1681, -2177, -9444], + [0, -2581, -3037, -3664, -637, -11187, -1672, -1806, -5326, -3246, -2410, -2469], + [ + 0, -3445, -6857, -1671, -1672, -3862, -4058, -7773, -7684, -3018, -2410, -3324, -2071, -4634, -10412, -6495, + -5101, -13979 + ], + [1, 3, 8876], + [0, 0, 8877, 161, 11], + [ + 0, -21, -23, -26, -35, -36, -40, -42, -50, -86, -3307, -4139, -262, -3268, -3136, -3044, -3738, -427, -428, + -533, -589, -753, -932, -940, -967, -977, -1344, -1415, -1548, -1771, -1942, -2082, -2379, -2402, -2405, -2410, + -2446 + ], + [1, 3, 8879], + [0, 8880, 8881, 8882, 5], + [0, -13980, -7141, -1276, -1460, -1565, -13981, -2177, -2400, -2551], + [ + 0, -86, -9404, -3615, -3244, -190, -5121, -4020, -237, -4776, -3048, -3136, -3660, -3759, -8216, -7211, -4036, + -3037, -3199, -3041, -9146, -427, -428, -533, -10525, -739, -928, -932, -940, -958, -959, -960, -967, -999, + -1026, -1077, -1110, -1344, -1415, -1442, -1534, -1623, -1942, -2125, -2379, -2410, -2411 + ], + [0, -1415, -2410, -6915, -2006, -3634], + [1, 3, 8884], + [0, 8885, 8886, 8887, 5], + [0, -668, -909, -1639, -2177, -2231], + [ + 0, -4036, -3199, -427, -428, -525, -527, -534, -556, -559, -13982, -560, -930, -932, -940, -966, -967, -1077, + -1107, -1344, -1413, -1471, -1475, -1481, -1483, -1490, -1492, -1534, -1607, -1650, -1654, -1942, -2125, -2410, + -2501, -2503 + ], + [0, -2376, -13983, -2501, -5932, -2410, -3018], + [1, 3, 8889], + [0, 8890, 8891, 8892, 9], + [0, -4106, -719, -865, -1672, -2392], + [0, -2581, -3037, -3664, -11187, -1763, -1806, -5326, -3246, -2410, -2469], + [ + 0, -3445, -13984, -13985, -13986, -1672, -1671, -6857, -4058, -7773, -7684, -3018, -2410, -687, -5732, -13987, + -5731 + ], + [1, 3, 8894], + [0, 8895, 8896, 8897, 6], + [0, -13988, -13989], + [0, -3267, -3035, -9939, -3621, -3037, -664, -11072, -767, -834, -1654, -2125, -2127, -2379, -2410], + [0, -2410, -3272, -13990, -3107, -13991], + [1, 3, 8899], + [0, 8900, 8901, 8902, 5], + [0, -2558, -502, -834, -461, -462, -13981, -13992, -13993, -13994, -13995, -8214, -13996, -13997], + [ + 0, -519, -1788, -523, -2006, -13998, -1001, -1548, -2125, -2177, -11685, -1821, -2402, -367, -13999, -1100, + -1972, -2410, -9939, -3037, -14000, -3040, -3044, -8890, -3199, -6744, -14001, -7772, -4364, -11347, -11708, + -262 + ], + [0, -2410, -3966, -11997, -5558, -3018, -3116], + [1, 3, 8904], + [0, 8905, 8906, 8907, 5], + [0, -3044, -3851, -3199, -14002, -1548, -1681, -14003, -14004, -2177], + [0, -2581, -3037, -3664, -11187, -1672, -1806, -5326, -3246, -2410, -2469], + [ + 0, -3445, -1672, -3862, -6857, -4058, -7773, -7684, -3018, -2410, -7460, -1306, -5389, -6821, -8990, -10674, + -6693, -5879, -1573 + ], + [1, 3, 8909], + [0, 0, 37, 8910, 8], + [0, -2410, -2552, -10054, -10055], + [1, 3, 8912], + [0, 8913, 8914, 8915, 5], + [0, -1548, -3044], + [0, -2581, -3037, -3664, -1806, -5326, -3246, -2410, -2469], + [0, -3445, -3018, -2410, -14005, -14006, -11315, -8199, -6899, -14007, -14008, -14009, -14010, -14011], + [1, 3, 8917], + [0, 8918, 8919, 7, 9], + [0, -1460, -1646, -2270], + [ + 0, -1415, -1344, -932, -2125, -2375, -2379, -1942, -2410, -3136, -3037, -1534, -5686, -14012, -960, -958, -940, + -428, -7770, -427 + ], + [1, 3, 8921], + [0, 8922, 8923, 8924, 5], + [0, -14013, -3686, -1111, -1418, -1630, -1849, -2061], + [0, -5028, -3037, -3040, -427, -428, -519, -757, -825, -932, -945, -14014, -999, -2006, -2115, -2153, -2410], + [0, -2410, -2384, -7440, -2414, -3694, -14015, -14016], + [1, 3, 8926], + [0, 0, 8927, 8928, 4], + [0, -23, -40, -42, -5121, -8214, -14013, -3037, -427, -428, -533, -774, -932, -940, -1415, -1942, -2410], + [0, -2410, -2384, -4037, -7440, -7144, -4004, -2414, -3694], + [1, 3, 8930], + [0, 8931, 8932, 8933, 10], + [0, -8200, -668, -679, -6475, -14017, -1645, -1650, -14018, -13709, -2125, -14019, -2410, -4297], + [0, -3037, -928, -1942, -2319, -2402], + [0, -2410, -5058, -9946, -985, -4791, -7641], + [1, 3, 8935], + [0, 0, 0, 8936, 6], + [0, -4165, -14020, -3116, -6784, -3214, -2387, -11997], + [1, 3, 8938], + [0, 8939, 8940, 8941, 8], + [0, -22, -644, -668, -719, -834, -1107, -1442, -1645, -1650, -2114, -2177, -2387, -7765], + [ + 0, -305, -8355, -3035, -9939, -3036, -3660, -8566, -4811, -3621, -3037, -3200, -8890, -3199, -664, -1344, + -13325, -1654, -1771, -1788, -1942, -2125, -2379, -2388, -2389, -6355, -2410, -12515 + ], + [0, -687, -2410, -8170], + [1, 3, 8943], + [0, 0, 8944, 8945, 5], + [ + 0, -1415, -1344, -1548, -2125, -2388, -2375, -1591, -1942, -14021, -720, -2410, -3136, -3037, -14022, -2390, + -14023, -6630, -2174, -14024, -14025, -12348, -2449, -12349, -14026, -796, -14027 + ], + [0, -7148, -2388, -14028, -1942, -727, -2410], + [1, 3, 8947], + [0, 8948, 8949, 7, 6], + [0, -7765], + [0, -3036, -3037, -714, -1107, -1771, -1847, -2388, -14029, -2410], + [1, 3, 8951], + [0, 8952, 8953, 7, 4], + [ + 0, -13389, -653, -679, -734, -812, -928, -14030, -14031, -1863, -1907, -2115, -2127, -2231, -5354, -3535, -2654, + -2369 + ], + [ + 0, -262, -4062, -367, -3198, -3037, -3200, -8349, -1055, -1889, -10815, -1942, -2114, -2132, -2162, -2271, + -2299, -2301, -2334, -14032, -2391, -2410, -2469, -2817 + ], + [1, 3, 8955], + [0, 8956, 0, 8957, 4], + [0, -928, -1101], + [0, -687, -11997, -3966, -8930, -4791, -985, -2410, -14033], + [1, 3, 8959], + [0, 8960, 8961, 8962, 6], + [0, -14034], + [0, -350, -351, -3561, -633, -2123, -2127, -2250, -14035], + [0, -6473, -3264, -1599], + [1, 3, 8964], + [0, 0, 8965, 8966, 10], + [ + 0, -1127, -1654, -11875, -1132, -2111, -14036, -14037, -1156, -14038, -1138, -14039, -2234, -1134, -14040, + -1144, -1148, -14041, -14042, -14043 + ], + [0, -1456, -4058, -2451, -2394], + [1, 3, 8968], + [0, 0, 8969, 8970, 5], + [0, -633, -932, -1032, -14044, -2322, -14045, -2416], + [0, -770, -5374, -14046, -14047, -13351, -6131, -7372, -14048, -14049, -14050, -14051, -14052], + [1, 3, 8972], + [0, 8973, 8974, 8975, 5], + [0, -1077, -1462, -14053, -8984], + [0, -1771, -1860, -2416], + [0, -10838, -14054, -3215, -5093, -9474, -14055, -4112], + [1, 3, 8977], + [0, 8978, 8979, 8980, 9], + [0, -615, -1640, -2105], + [0, -510, -714, -719, -1654, -2123, -2210], + [0, -2398, -3690, -3691, -5827, -9292, -1791], + [1, 3, 8982], + [0, 8983, 8984, 8985, 11], + [0, -2105, -822], + [0, -1722, -1654, -932], + [0, -2398, -9292, -1791], + [1, 3, 8987], + [0, 8988, 0, 7, 4], + [0, -1646, -14056, -668], + [1, 3, 8990], + [0, 8991, 8992, 8993, 9], + [0, -14057], + [0, -5918, -428, -932, -14058, -815, -1002, -1772, -2384, -2410, -2411, -2541], + [0, -2410, -3018, -3694, -3590, -2444, -8113, -10665, -1631, -4055, -14059], + [1, 3, 8995], + [0, 8996, 129, 8997, 4], + [0, -737, -14060, -1641], + [0, -5398, -8038, -14061], + [1, 3, 8999], + [0, 9000, 9001, 259, 4], + [0, -14062, -3544, -1600, -1645, -2548], + [0, -190, -3800, -3661, -3621, -3037, -652, -13998, -928, -932, -1654, -1978, -2177, -2392, -2410, -2411], + [1, 3, 9003], + [0, 9004, 9005, 9006, 11], + [0, -14063], + [0, -3037, -2402, -2410], + [0, -14064, -14065, -3118, -14066, -14067, -14068, -2410, -856], + [1, 3, 9008], + [0, 0, 131, 9009, 6], + [0, -4121, -4123, -13188, -2410, -856, -14068, -2402], + [1, 3, 9011], + [0, 0, 0, 9012, 4], + [0, -3690, -856, -1599, -2402, -2410, -14065], + [1, 3, 9014], + [0, 9015, 9016, 9017, 4], + [0, -1610, -2410], + [0, -3802, -3621, -3037, -3628, -756, -1405, -1654, -1657, -2359], + [0, -4165, -856, -14069, -3214], + [1, 3, 9019], + [0, 9020, 9021, 9022, 4], + [0, -719, -2536, -1705, -6455, -14070, -510, -714, -1666, -1650, -7418, -14071], + [0, -664], + [0, -14072, -1599, -14073, -14074, -14075, -8676, -3110, -6473, -3262], + [1, 3, 9024], + [0, 106, 9025, 7, 5], + [ + 0, -234, -3035, -4269, -3621, -14076, -3037, -664, -665, -756, -1654, -14077, -1672, -14078, -1942, -14079, + -2234, -2379, -2389, -12348 + ], + [1, 3, 9027], + [0, 9028, 9029, 7, 10], + [0, -1107, -2446, -483, -809, -812, -2387, -2550, -640, -815, -865, -7023, -496, -14080, -2080, -14081], + [ + 0, -652, -1857, -664, -1168, -1344, -1392, -1654, -1682, -1691, -2071, -2210, -932, -1692, -2125, -3729, -1110, + -1671, -2245, -2379, -10418, -1942, -14082, -190, -1250, -8436, -2211, -2410, -3035, -3037, -1243, -1534, -3198, + -3621, -4372, -3041, -1244, -14083, -10419, -1252, -1261, -10420, -14084, -8214, -665, -3625, -3910, -7969, + -2411, -14085, -2234, -14086, -960, -14087, -14088, -4269, -9660 + ], + [1, 3, 9031], + [0, 0, 9032, 9033, 5], + [ + 0, -652, -1681, -664, -834, -1107, -1498, -1654, -2387, -2518, -13998, -932, -8526, -928, -1110, -679, -1646, + -3851, -190, -1863, -1874, -2410, -3035, -9939, -3621, -10755, -1461, -305, -5686, -1028, -14089, -14090, -2411, + -14091, -2234, -971, -14092, -429, -9660, -14093, -5201, -5206, -14094, -14095 + ], + [0, -4165, -14020, -3116, -6784, -3214], + [1, 3, 9035], + [0, 9036, 112, 9037, 4], + [0, -429, -428, -427, -5209], + [0, -3272, -3217, -3214, -2410, -3215, -4132, -932, -5208, -3784], + [1, 3, 9039], + [0, 9040, 9041, 9042, 10], + [0, -14096, -7829], + [0, -4811, -3621, -3037, -14097, -740, -14098, -1650, -1654, -1938, -2388, -2410, -2412], + [0, -4165], + [1, 3, 9044], + [0, 9045, 9046, 9047, 6], + [ + 0, -14099, -14100, -865, -2773, -1521, -1551, -1889, -1907, -7164, -1915, -7165, -10283, -2162, -2232, -2383, + -2286 + ], + [ + 0, -14101, -3136, -8334, -3759, -3037, -14102, -14103, -8336, -427, -428, -620, -932, -940, -1344, -1415, + -14104, -1534, -14105, -1916, -1927, -1942, -14106, -2375, -2410 + ], + [0, -775, -3754, -2162, -1521, -2286, -3209, -3862, -1889, -2410], + [1, 3, 9049], + [0, 9050, 9051, 9052, 8], + [0, -11661, -615, -668, -696, -715, -13789, -10511, -12631, -1575, -1646, -14107, -14108, -2433, -2525, -2546], + [0, -829, -1722, -2125, -2379, -2388, -14109, -2410], + [0, -2414, -2410, -14110, -4159, -5897, -9800, -9069], + [1, 3, 9054], + [0, 9055, 9056, 9057, 8], + [0, -719, -2231], + [0, -461, -1654, -2177], + [0, -9216, -2415, -2416, -1644, -6684, -3214, -3217, -8108, -3184, -6052, -13770, -4795, -8165, -6434, -510, -5867], + [1, 3, 9059], + [0, 0, 9060, 9061, 11], + [0, -461, -2177], + [ + 0, -687, -6454, -9696, -14111, -3217, -6505, -8108, -3214, -3756, -14112, -9234, -6059, -6684, -1644, -7175, + -7176, -7858, -9697, -1838, -3215, -9698, -9216 + ], + [1, 3, 9063], + [0, 9064, 9065, 9066, 9], + [0, -4287, -1046, -1401, -2168, -2182, -2231, -2416, -2510, -10059], + [ + 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -8206, -767, -824, -825, -932, -940, -958, -1344, -1415, + -1424, -1534, -1626, -1771, -1942, -2251, -2334, -2501 + ], + [0, -9216, -2416, -2415, -2501, -7172], + [1, 3, 9068], + [0, 9069, 9070, 9071, 5], + [0, -14113], + [0, -1654, -932, -615, -1405, -966, -958, -968, -943, -974], + [0, -6555, -3262, -7232, -9594], + [1, 3, 9073], + [0, 9074, 0, 9075, 4], + [ + 0, -44, -3040, -3052, -14114, -14115, -14116, -14117, -14118, -14119, -14120, -14121, -432, -14122, -14123, + -14124, -14125, -14126, -14127, -14128, -14129, -14130, -14131, -14132, -14133, -14134, -14135, -14136, -14137, + -14138, -14139, -433, -434, -14140, -14141, -14142, -14143, -14144, -14145, -14146, -14147, -5257, -435, -14148, + -14149, -14150, -14151, -14152, -14153, -14154, -14155, -14156, -14157, -14158, -14159, -14160, -14161, -14162, + -14163, -14164, -14165, -14166, -14167, -14168, -14169, -14170 + ], + [0, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, -3577, -3100], + [1, 3, 9077], + [0, 9078, 9079, 174, 10], + [0, -1107, -1351, -1548, -2177, -2529], + [0, -1452, -1600, -1654, -1766, -2198], + [1, 3, 9081], + [0, 0, 9082, 7, 10], + [0, -4066, -350, -351, -3267, -3037, -589, -1942, -2127, -2387, -2410, -2469], + [1, 3, 9084], + [0, 0, 9085, 9086, 5], + [0, -2581, -50, -13526, -668, -5382, -928, -1111, -1273, -1600, -14171, -1771, -14172, -1948, -3768, -2469], + [0, -3264, -3110, -7723], + [1, 3, 9088], + [0, 9089, 9090, 7, 5], + [ + 0, -4066, -350, -4062, -351, -3561, -4785, -14173, -734, -6860, -928, -14030, -14174, -1431, -1588, -14175, + -1651, -1852, -6568, -1948, -2127, -2132, -6569, -2654, -14176 + ], + [0, -3376, -3037, -3664, -8189, -672, -932, -944, -1942, -2410, -2469], + [1, 3, 9092], + [0, 0, 9093, 9094, 4], + [ + 0, -1788, -1107, -849, -1344, -1471, -1989, -932, -2127, -2334, -757, -756, -1485, -7324, -4916, -14177, -958, + -1488 + ], + [0, -2444, -5112, -3844, -3323, -4865], + [1, 3, 9096], + [0, 9097, 9098, 9099, 4], + [0, -2243, -9649], + [0, -633, -14178, -932, -1405, -1654, -1657, -8276, -12323, -2424], + [0, -2424, -2265], + [1, 3, 9101], + [0, 0, 9102, 9103, 5], + [ + 0, -8843, -11419, -14179, -357, -3037, -458, -2917, -652, -767, -14180, -928, -932, -1023, -1344, -1415, -14181, + -2884, -1730, -1971, -2384, -2410, -2531 + ], + [0, -4213, -1334, -1342, -1961, -2105, -9172, -9173, -2533, -5388], + [1, 3, 9105], + [0, 9106, 9107, 9108, 4], + [0, -4231, -14182, -9596, -1015, -1395, -14183, -5358], + [0, -14184, -5334, -4251, -3037, -652, -1942, -2094, -2100, -2384, -2399, -2410, -2541], + [0, -3272, -7644, -5398, -10280, -1838, -1958, -2083, -2093, -14185, -6233, -6231, -4132, -6408, -10919, -2427], + [1, 3, 9110], + [0, 9111, 14, 9112, 4], + [0, -14186], + [0, -13747, -6555, -6240, -6814, -3960, -14187, -5839, -12411, -9682], + [1, 3, 9114], + [0, 9115, 9116, 9117, 5], + [0, -4231, -7700, -5356], + [0, -4251, -3037, -652, -1618, -10922, -10923, -1942, -2094, -2100, -2384, -2399, -2410, -2541], + [ + 0, -9590, -14188, -2444, -3590, -2093, -14185, -2083, -10918, -9589, -14189, -14190, -1703, -6784, -1599, -3264, + -6597, -10919, -3272, -3966, -14191, -2487 + ], + [1, 3, 9119], + [0, 0, 222, 9120, 5], + [0, -13875, -11002, -7727, -2430, -1847, -11845, -7421, -2440, -5550, -6836], + [1, 3, 9122], + [0, 9123, 0, 9124, 8], + [0, -7304, -1081, -14192, -14193, -8578, -2062], + [0, -5408, -2432, -9506, -14194, -5409, -5827, -7347], + [1, 3, 9126], + [0, 9127, 9128, 9129, 6], + [0, -14195, -623, -668, -14196, -2177, -8418, -728, -6848, -1514, -1394], + [0, -2541, -519, -9982, -2269, -686, -14197], + [0, -1764, -10674, -11693, -9258, -14198, -7440, -7144, -687, -3551, -5897, -9318], + [1, 3, 9131], + [0, 0, 0, 9132, 4], + [ + 0, -9171, -2435, -14199, -14200, -14201, -14202, -14203, -14204, -14205, -14206, -14207, -14208, -14209, -14210, + -14211, -14212, -14213, -14214 + ], + [1, 3, 9134], + [0, 9135, 9136, 9137, 10], + [0, -1983, -1977], + [0, -515, -1788, -2568, -461, -1654, -932, -5834], + [0, -6747, -2435, -10433], + [1, 3, 9139], + [0, 0, 9140, 9141, 5], + [0, -739, -1654, -2198], + [0, -2435, -8396], + [1, 3, 9143], + [0, 9144, 9145, 48, 10], + [0, -1543, -1641, -2168], + [ + 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -767, -824, -825, -932, -940, -958, -1041, -1344, -1415, + -1534, -1623, -8913, -1771, -1942, -2251, -2501 + ], + [1, 3, 9147], + [0, 9148, 9149, 9150, 5], + [0, -6614, -9730], + [0, -509, -633, -652, -1654, -1939, -14215, -14216, -2416], + [0, -6984, -3215, -9171, -2435, -1838, -5101, -2265, -1985, -6231], + [1, 3, 9152], + [0, 9153, 9154, 9155, 9], + [0, -1069, -14217, -1641, -1983, -2400, -2426, -14218], + [ + 0, -2832, -14219, -7453, -14220, -8317, -14221, -3713, -3037, -14222, -4966, -14223, -3715, -8200, -9581, -3664, + -649, -767, -1351, -2987, -8065, -1971, -3727, -14224, -2325, -2386, -7457, -2410, -2469 + ], + [0, -2439, -1334, -14225, -9172, -9173, -2105, -1342, -2426, -4213], + [1, 3, 9157], + [0, 9158, 9159, 9160, 4], + [0, -10383], + [0, -1849], + [0, -2440, -11845, -13874, -10383, -11070, -7421, -7420, -1847, -6845, -3592, -5558, -3591, -14226], + [1, 3, 9162], + [0, 9163, 9164, 9165, 6], + [0, -1582, -2359], + [0, -509, -1654, -1939, -2105, -2177, -14227], + [0, -9733, -4865, -14228, -1819, -1838, -3215, -14229, -14230, -14231, -14232, -2440, -14233, -2442, -9318], + [1, 3, 9167], + [0, 0, 9168, 9169, 4], + [0, -756, -1405, -6186, -1991], + [0, -9791, -5835, -4112, -2443], + [1, 3, 9171], + [0, 9172, 9173, 260, 5], + [0, -1370, -7391, -14234, -14235, -7400], + [0, -468, -753, -14236, -1797, -1798, -2151, -2155, -2322], + [1, 3, 9175], + [0, 0, 183, 260, 8], + [1, 3, 9177], + [0, 0, 9178, 9179, 4], + [ + 0, -32, -86, -3307, -190, -3563, -719, -932, -940, -967, -1110, -1344, -1415, -1534, -2884, -1771, -1942, + -11013, -11014, -2251, -2410, -2411 + ], + [0, -2446, -7230, -11582, -14237], + [1, 3, 9181], + [0, 9182, 9183, 9184, 10], + [0, -8609, -834, -1496, -5037], + [0, -14238, -985, -11747, -13279], + [0, -507, -14239, -4043, -4045, -4004], + [1, 3, 9186], + [0, 0, 9187, 9188, 5], + [0, -2319, -1452], + [0, -2435, -3926, -7440, -7144, -5574], + [1, 3, 9190], + [0, 9191, 9192, 9193, 5], + [0, -7247, -14240, -5504, -10482], + [0, -7465, -664, -6774, -720, -796, -1344, -1405, -1650, -1654, -9075, -2125, -2174, -2210], + [0, -14241, -5890, -12665, -5889, -6908, -5887], + [1, 3, 9195], + [0, 0, 9196, 9197, 8], + [0, -4298, -4300], + [0, -1764, -5897, -6444, -3926], + [1, 3, 9199], + [0, 0, 9200, 9201, 4], + [0, -21, -23, -40, -43, -528, -535, -932, -934, -958, -1654, -1771, -1788, -2125, -2127, -2128, -11290, -2416], + [0, -2451, -3926, -5874, -8472, -7723, -14242, -14243, -507], + [1, 3, 9203], + [0, 9204, 9205, 9206, 11], + [0, -14244, -14245, -14246], + [ + 0, -3037, -4837, -5589, -3899, -14247, -4838, -786, -14248, -1449, -2410, -2466, -2469, -14249, -2476, -2483, + -14250, -14251, -14252, -14253 + ], + [0, -3160, -2476, -3944, -3162, -3100, -3095, -3098], + [1, 3, 9208], + [0, 0, 9209, 9210, 5], + [0, -1654, -932, -1405, -589, -2293, -585, -966, -958, -968, -943, -963, -974], + [0, -1334, -4616, -2453], + [1, 3, 9212], + [0, 9213, 9214, 7, 4], + [0, -2456], + [0, -2319, -1754], + [1, 3, 9216], + [0, 9217, 9218, 7, 6], + [ + 0, -5193, -928, -679, -1069, -14254, -14255, -14256, -14257, -14258, -14259, -14260, -14261, -14262, -14263, + -14264, -14265, -14266, -14267, -14268, -14269, -14270, -14271, -14272, -14273, -14274, -14275 + ], + [ + 0, -1681, -469, -502, -864, -985, -1371, -1816, -1805, -2466, -651, -668, -812, -999, -1623, -1971, -12508, + -13969, -2518, -669, -865, -1001, -1400, -2125, -2177, -2240, -2324, -2469, -680, -708, -1004, -1047, -1658, + -2379, -807, -1077, -1098, -1981, -1999, -2694, -367, -3851, -4966, -14276, -10697, -11705, -1645, -1878, -2369, + -11697, -12324, -481, -12971, -695, -1424, -1641, -1729, -2269, -2410, -3136, -3037, -512, -929, -14277, -8874, + -7982, -14278, -3269, -3198, -14279, -10755, -480, -511, -14280, -14281, -14282, -3199, -9941, -13839, -5977, + -3124, -12274, -11855, -3637, -14283, -13376, -10519, -14284, -4105, -3048, -11328, -1025, -14285, -1767, -7162, + -2991, -14286, -2992, -8566, -5363, -2946, -14287, -3713, -4201, -14288, -13184, -14289, -14290, -9750, -10046, + -14291, -5124, -14292, -14293, -2591, -11857, -14294, -3234, -14295, -14296, -14297, -11702, -14298, -14299, + -14300, -14301, -14302, -14303, -14304, -14305, -14306 + ], + [1, 3, 9220], + [0, 9221, 0, 9222, 4], + [0, -14307, -508, -13486], + [0, -6324, -8980, -14308, -12254, -12442, -3586], + [1, 3, 9224], + [0, 0, 9225, 7, 4], + [0, -1654, -1405, -2293], + [1, 3, 9227], + [0, 0, 9228, 9229, 4], + [ + 0, -23, -40, -86, -3307, -3326, -539, -664, -671, -708, -757, -14309, -784, -825, -932, -934, -958, -1344, + -1471, -1474, -1475, -3568, -1482, -1483, -1486, -1534, -1654, -1771, -1889, -1891, -14310, -1906, -1927, -7033, + -1978, -2127, -2281, -2282, -2284, -2416 + ], + [0, -6527, -14311, -2459, -14312, -3264, -775, -3214, -3577, -3578], + [1, 3, 9231], + [0, 9232, 9233, 9234, 5], + [0, -14313, -702, -2103, -14314], + [0, -1788, -1654, -932, -1001, -13729, -2062, -937, -966], + [0, -9614, -7422, -6656, -7421, -9330, -1847], + [1, 3, 9236], + [0, 9237, 9238, 9239, 4], + [0, -599, -2347], + [0, -2322, -2463], + [0, -2460, -7419, -5845, -640, -5827], + [1, 3, 9241], + [0, 9242, 9243, 9244, 11], + [0, -14315, -9092, -1119, -1351, -14316, -14317, -1759, -14318, -14319, -13729, -14320, -14321, -2460, -14322], + [0, -932, -937, -1001, -1654, -1788, -2062, -2125, -2210], + [0, -1168, -14323, -2460, -6656, -8801, -1076, -8027], + [1, 3, 9246], + [0, 9247, 9248, 9249, 9], + [0, -2460, -2347], + [0, -1243, -2322, -2462], + [0, -2460, -1168, -7419, -9975, -5827, -2265, -5554, -14324], + [1, 3, 9251], + [0, 185, 0, 9252, 4], + [0, -2460, -9455, -9466, -1168], + [1, 3, 9254], + [0, 9255, 9256, 9257, 5], + [0, -14325, -6324, -14326, -1109, -9977, -8104, -14327, -14328], + [0, -633, -1405, -9088, -1812, -14329, -12014, -2320, -2322, -2568], + [0, -9614, -5092, -9613, -14330, -834, -7460, -4865], + [1, 3, 9259], + [0, 9260, 9261, 261, 6], + [0, -4787, -2127, -928, -1889, -1864, -2654], + [ + 0, -2531, -653, -11071, -754, -990, -1651, -5042, -1805, -2162, -2213, -1852, -865, -5036, -1699, -1839, -2334, + -729, -12601, -679, -2923, -3027, -14331, -14332, -1863, -769, -929, -14333, -3751, -1588, -25, -4371, -866, + -989, -3572, -14334, -1906, -14335, -14336, -11751, -14337, -13397, -10046, -742, -4785, -1907, -7160, -4066, + -3195, -5322, -2134, -350, -6410, -7897, -3180, -14338, -7151 + ], + [1, 3, 9263], + [0, 9264, 9265, 9266, 4], + [0, -14341, -1026, -1077, -14342, -14343], + [0, -3617, -3048, -3037, -1004, -2391, -2410, -2466], + [ + 0, -2466, -3690, -14344, -14345, -14346, -14347, -1004, -14348, -3844, -14349, -9843, -14350, -14351, -3862, + -3816, -2146, -3445, -14352, -14353 + ], + [1, 3, 9268], + [0, 9269, 9270, 9271, 4], + [ + 0, -2476, -2466, -4245, -3788, -14354, -3726, -14244, -4817, -3559, -14355, -3558, -14356, -14357, -3661, -4837, + -14358, -4229, -14359 + ], + [ + 0, -1816, -2213, -812, -999, -1826, -3548, -1699, -2125, -2127, -2177, -2469, -928, -1871, -1966, -3728, -2653, + -5627, -2648, -679, -1077, -1098, -1646, -1942, -1977, -1582, -1639, -1863, -2654, -2410, -3037, -769, -1125, + -1534, -1600, -3198, -6447, -14360, -3801, -3735, -1851, -3048, -5686, -1570, -14361, -3246, -4036, -3425, + -1603, -2132, -13397, -7080, -1601, -4062, -13593, -14362, -14363, -4066, -14364, -1602, -6483, -14365, -3561, + -9458, -350, -1926, -14366, -3662, -14367, -14368, -740, -351, -14369, -14370, -14371 + ], + [0, -2466, -2476, -2468], + [1, 3, 9273], + [0, 9274, 9275, 9276, 8], + [ + 0, -5042, -2466, -1852, -6570, -3535, -1864, -2354, -2654, -6488, -1002, -14372, -1588, -13385, -13376, -13388, + -14373, -14335, -14374, -14375, -14376 + ], + [ + 0, -2531, -653, -1640, -14377, -1449, -7142, -1966, -13380, -1278, -14378, -462, -3037, -4647, -426, -14334, + -3735, -14379, -8523, -14380, -5038, -357, -4048, -3180, -3626, -4047 + ], + [0, -2466, -2469, -4004, -1415], + [1, 3, 9278], + [0, 9279, 9280, 9281, 5], + [0, -668, -1548, -1376, -1646, -2528, -1365, -1575, -2269, -556, -14381], + [ + 0, -2541, -1168, -525, -1654, -1666, -2198, -14382, -2105, -615, -527, -1174, -1197, -14383, -14384, -1182, + -14385, -559 + ], + [0, -3690, -687, -12694, -5550, -4039, -3161, -3994, -9668, -3957, -719, -13831, -1965, -1376], + [1, 3, 9283], + [0, 9284, 0, 9285, 4], + [0, -834, -14386, -1107], + [0, -3634, -4679, -4004, -14387], + [1, 3, 9287], + [0, 9288, 9289, 9290, 6], + [ + 0, -2359, -1107, -1640, -2059, -9498, -668, -1526, -2555, -14388, -2177, -2536, -674, -2436, -719, -1645, -1600, + -14389, -1315, -14390, -14092 + ], + [ + 0, -1344, -1654, -2379, -1942, -3628, -2410, -3036, -6325, -3037, -14391, -14392, -1771, -3621, -8497, -1952, + -3199, -11343, -14393, -86, -14394, -8566, -2174, -3661, -2234, -5361, -3307 + ], + [0, -11859, -2472, -5195], + [1, 3, 9292], + [0, 0, 37, 7, 4], + [1, 3, 9294], + [0, 9295, 9296, 7, 4], + [0, -479, -702, -994, -1022, -1107, -1351, -1391, -2231, -2410, -2460, -2536, -2550], + [ + 0, -9478, -14395, -9457, -3036, -14396, -8566, -3621, -3037, -12993, -9476, -7837, -3046, -11343, -3041, -427, + -428, -932, -1654, -2125 + ], + [1, 3, 9298], + [0, 0, 9299, 7, 9], + [0, -1654, -1650, -2501, -2410, -3037, -2503, -3621, -14397, -748, -262], + [1, 3, 9301], + [0, 9302, 0, 9303, 6], + [0, -14244, -14398, -9631, -7438, -3250], + [0, -2476], + [1, 3, 9305], + [0, 0, 9306, 9307, 5], + [ + 0, -23, -26, -33, -3077, -40, -3035, -3621, -3037, -428, -532, -534, -7890, -664, -778, -932, -14399, -1654, + -2080, -2125, -2127, -2128, -2138, -2341, -2376, -2410, -2415, -2476, -2481, -2485, -2816, -2486, -2501, -2503 + ], + [0, -2476, -7711, -525, -2410], + [1, 3, 9309], + [0, 9310, 9311, 7, 9], + [0, -812, -982, -983, -986, -8141, -2177], + [ + 0, -23, -32, -3332, -14400, -6484, -3244, -190, -3198, -426, -3037, -3199, -427, -428, -3664, -3665, -932, + -8230, -961, -965, -8287, -967, -978, -7356, -1942, -2379, -2892, -2410, -2466, -2469 + ], + [1, 3, 9313], + [0, 0, 9314, 9315, 5], + [0, -639, -1415, -2476], + [0, -2476, -12517, -11492], + [1, 3, 9317], + [0, 9318, 9319, 9320, 6], + [0, -14401, -14357, -14402], + [0, -14403], + [0, -1348, -9780, -14404, -3862, -2476, -3527], + [1, 3, 9322], + [0, 9323, 9324, 7, 4], + [0, -668, -1284, -12982], + [ + 0, -23, -40, -14405, -426, -12643, -3136, -4647, -14406, -14407, -534, -14408, -740, -778, -1041, -1331, -1415, + -1449, -1534, -14409, -1623, -1643, -7034, -7846, -1908, -1942, -1974, -14410, -2231, -2275, -2286, -2287, + -2289, -2375, -2376, -2410, -2437, -2476, -2480, -2501, -2503, -2505, -2508, -8160 + ], + [1, 3, 9326], + [0, 0, 9327, 9328, 4], + [0, -3136, -3037, -1415, -2080, -2127, -2375, -2410, -2476, -2477], + [0, -2476, -2410, -11313], + [1, 3, 9330], + [0, 9331, 9332, 7, 5], + [ + 0, -3194, -14411, -14357, -14412, -679, -1460, -14378, -1588, -1651, -14413, -1852, -1864, -6569, -2654, -2981, + -14414, -2548 + ], + [ + 0, -47, -14415, -3983, -350, -351, -3561, -3266, -12959, -14416, -8523, -8200, -4837, -7438, -14417, -3250, + -4838, -10363, -14418, -731, -865, -14419, -7595, -1278, -1719, -14420, -2851, -2125, -2127, -2142, -2892, + -2391, -2466, -2476 + ], + [1, 3, 9334], + [0, 9335, 9336, 7, 9], + [0, -1284, -1543], + [0, -527, -533, -549, -740, -1415], + [1, 3, 9338], + [0, 9339, 0, 9340, 4], + [0, -14421, -1297], + [0, -2476, -3116], + [1, 3, 9342], + [0, 262, 9343, 7, 8], + [ + 0, -2476, -1415, -668, -999, -6828, -932, -2127, -2177, -1004, -2501, -910, -1077, -767, -1978, -2468, -533, + -778, -2410, -2481, -23, -3037, -534, -14422, -2484, -40, -7438, -2082, -6429, -2140, -2253, -3561, -14399, + -2504, -2506, -350, -740, -351 + ], + [1, 3, 9345], + [0, 9346, 0, 9347, 5], + [0, -14423], + [0, -2444, -1819, -14424, -1076, -2487, -14425], + [1, 3, 9349], + [0, 9350, 9351, 7, 4], + [0, -8566, -7955, -8891, -1645], + [0, -3136, -3037, -1107, -1415, -1623, -2125, -2375, -2410], + [1, 3, 9353], + [0, 220, 9354, 9355, 4], + [0, -86, -3307, -633, -720, -796, -1344, -1415, -2416], + [0, -2489, -4038, -2006, -1384], + [1, 3, 9357], + [0, 9358, 0, 9359, 8], + [0, -14426, -1646], + [0, -2444, -3590, -1076, -6999], + [1, 3, 9361], + [0, 9362, 9363, 9364, 6], + [0, -9501, -633, -679, -6369, -14427, -2347, -2546], + [0, -627, -1650, -2239, -2322, -2416, -14428], + [0, -633, -10362, -2490, -4161, -7641, -4865], + [1, 3, 9366], + [0, 9367, 123, 9368, 4], + [0, -13012, -10837, -510, -14429, -13017, -14430, -13025, -13026, -14431, -14432], + [0, -13039, -1818, -1691, -6321, -2071, -1671, -14433, -2492, -2157, -13042], + [1, 3, 9370], + [0, 9371, 9372, 9373, 8], + [0, -501, -510, -1548, -1650, -1980, -2105, -14434], + [ + 0, -14435, -664, -665, -714, -7743, -1004, -1022, -1168, -14436, -1197, -1212, -1231, -1296, -1336, -13334, + -1405, -1654, -14437, -1722, -14438, -2150, -14439, -14440, -14441, -2425, -2446, -2550 + ], + [0, -3634, -4864, -11468, -12350, -11467], + [1, 3, 9375], + [0, 9376, 9377, 9378, 4], + [ + 0, -14442, -14443, -14444, -14445, -14446, -14447, -14448, -14449, -14450, -14451, -14452, -14453, -14454, + -14455, -14456, -14457, -14458 + ], + [ + 0, -14459, -1415, -932, -14460, -4271, -2375, -1942, -589, -2410, -3136, -1422, -3268, -14461, -958, -8378, + -940, -14462, -428, -14463, -427 + ], + [0, -14464, -7485, -3816], + [1, 3, 9380], + [0, 9381, 194, 9382, 8], + [0, -14465, -14466, -597, -636, -14467, -14468, -14469, -14470, -14471, -14472, -2550], + [0, -2494, -3673, -687, -14473, -4270], + [1, 3, 9384], + [0, 9385, 9386, 7, 11], + [ + 0, -8231, -426, -4049, -14474, -14475, -14476, -461, -14477, -635, -14478, -909, -14335, -982, -997, -8610, + -1119, -11677, -8562, -1641, -9548, -2168, -2321, -2335, -12982, -2510 + ], + [ + 0, -23, -41, -50, -13541, -14479, -8608, -4035, -3136, -3713, -14480, -3037, -14481, -14482, -534, -14483, + -14484, -711, -753, -774, -778, -807, -922, -3068, -932, -6929, -1041, -1067, -1110, -14485, -1322, -1344, + -1405, -1415, -8950, -1417, -1418, -1421, -1424, -1455, -1460, -1521, -1522, -1534, -1548, -1549, -1623, -14486, + -1643, -8913, -1733, -1788, -1806, -8436, -1942, -1950, -1974, -9720, -2000, -2006, -2019, -14487, -2090, -4242, + -2095, -2098, -2101, -2125, -5508, -2205, -2269, -2275, -2334, -2344, -2354, -2362, -2376, -2410, -2427, -2437, + -14488, -14489, -2503, -14490, -2549 + ], + [1, 3, 9388], + [0, 9389, 9390, 9391, 10], + [0, -2531, -2213, -461, -1810, -811, -719, -462, -1863, -1321, -930, -13410], + [ + 0, -824, -664, -1168, -1415, -1652, -932, -1111, -1940, -753, -784, -1889, -2501, -1044, -1978, -682, -778, + -1174, -1653, -2437, -23, -667, -2503, -518, -528, -534, -1566, -2275, -44, -1565, -14491, -1908, -9422, -40, + -14492, -2505, -41, -540, -969, -14493, -2335, -14494, -14495, -38, -33, -3376 + ], + [0, -2501, -4161, -14496, -3209, -8799, -9845, -14497, -12942, -14498, -7067], + [1, 3, 9393], + [0, 9394, 9395, 9396, 10], + [0, -914, -2068, -713, -719, -1381, -769, -1363, -2508, -14499, -5594, -11676, -13410, -14500], + [0, -14501], + [0, -2501, -687, -3108, -3551, -7882, -3578], + [1, 3, 9398], + [0, 9399, 9400, 9401, 9], + [0, -1623, -713, -1641, -1800, -1997, -2168], + [ + 0, -1501, -1313, -1415, -999, -1344, -774, -932, -3122, -729, -825, -1004, -1030, -1110, -2501, -1942, -767, + -823, -2293, -21, -190, -204, -533, -2410, -23, -3037, -1041, -1534, -1771, -1045, -5039, -3617, -86, -965, + -3560, -14502, -2251, -40, -4835, -3713, -14503, -959, -960, -958, -6929, -978, -940, -967, -3748, -3307 + ], + [0, -2501, -5401, -3113], + [1, 3, 9403], + [0, 9404, 9405, 7, 9], + [ + 0, -2531, -1805, -12860, -13318, -1004, -13074, -679, -4204, -713, -11121, -3727, -724, -1119, -2186, -2168, + -14504, -13386, -14505, -3617, -14506, -14507, -14508, -14509, -1338, -2504, -731, -12962, -14510 + ], + [ + 0, -1313, -1415, -1521, -461, -999, -1344, -14511, -1623, -774, -932, -1610, -2125, -729, -753, -2501, -1942, + -1978, -2293, -21, -533, -778, -1336, -2410, -23, -3037, -1522, -1534, -1771, -2503, -534, -2275, -2230, -4356, + -2508, -44, -86, -965, -2062, -2817, -3560, -2251, -40, -4835, -8477, -2411, -3732, -4035, -959, -960, -1331, + -5474, -32, -14512, -7716, -958, -6929, -940, -1419, -38, -3307, -5585 + ], + [1, 3, 9407], + [0, 9408, 9409, 9410, 5], + [0, -2269, -1320, -14509], + [0, -1788, -1654, -2210, -932, -1004, -2501, -1942, -2293, -967, -2504], + [0, -2501, -6211, -12517, -3551, -14513, -14514, -5401, -1004], + [1, 3, 9412], + [0, 9413, 9414, 7, 5], + [0, -2321, -2510], + [ + 0, -366, -3037, -3046, -14515, -3750, -748, -824, -932, -14516, -948, -1041, -1344, -1534, -1626, -1939, -1942, + -14517, -2006, -2275, -2387, -2410, -2469, -2501, -2508 + ], + [1, 3, 9416], + [0, 9417, 9418, 9419, 5], + [0, -1055, -9087, -3415], + [0, -1344, -2387, -14518, -2501, -1942, -2410, -14519, -426], + [0, -2501, -1631], + [1, 3, 9421], + [0, 0, 9422, 9423, 5], + [0, -664, -932, -958, -1654, -1658, -1705, -2501], + [0, -2501, -5757, -3966, -4161, -14520], + [1, 3, 9425], + [0, 0, 9426, 9427, 5], + [ + 0, -1415, -932, -1110, -2501, -1405, -1942, -756, -190, -2231, -2410, -3136, -965, -3560, -959, -960, -12916, + -958, -6929, -978, -940, -967, -3748 + ], + [0, -2501, -2231], + [1, 3, 9429], + [0, 9430, 0, 9431, 4], + [0, -1119, -769, -2359, -1860], + [0, -9711, -11891], + [1, 3, 9433], + [0, 9434, 9435, 9436, 8], + [0, -642, -812, -922, -14521, -13490, -14522], + [0, -641, -1168, -1224, -1453, -1452, -2322], + [0, -2512, -6224, -9005, -14523, -14524, -5737, -14525, -8841, -3844, -3323], + [1, 3, 9438], + [0, 9439, 9440, 9441, 5], + [ + 0, -14526, -14527, -14528, -14529, -14530, -14531, -14532, -14533, -14534, -14535, -14536, -14537, -812, -929, + -14538, -14539, -14540, -14541, -14542, -14543, -14544, -1640, -1801, -14545, -1976, -10570, -14546, -1997, + -10576, -13357, -14547, -13729, -14548, -14549, -14550, -14551, -14552, -14553, -14554 + ], + [ + 0, -23, -32, -3367, -40, -14555, -468, -14556, -10575, -14557, -571, -14558, -640, -14559, -771, -14560, -932, + -943, -958, -965, -968, -1045, -14561, -1834, -14562, -1985, -2151, -2174, -2187, -6390, -8573, -2320, -2322, + -2335, -6391, -2501, -2503, -14563 + ], + [0, -14564, -14565, -867, -14566, -14567, -14568, -14569, -9292, -14570, -14571, -14572, -6471, -14573, -2513], + [1, 3, 9443], + [0, 9444, 9445, 9446, 10], + [0, -596, -1696], + [0, -11836, -2319], + [0, -3708, -14574, -14575], + [1, 3, 9448], + [0, 9449, 9450, 7, 5], + [0, -1004, -1758, -2424], + [0, -710], + [1, 3, 9452], + [0, 0, 9453, 7, 4], + [ + 0, -664, -1471, -1654, -932, -2127, -1942, -1474, -1482, -516, -1962, -14576, -1475, -1477, -1487, -1479, -5993, + -8365 + ], + [1, 3, 9455], + [0, 0, 9456, 9457, 6], + [ + 0, -2493, -1107, -14577, -3691, -1460, -14578, -1452, -1650, -14579, -1813, -589, -14580, -2416, -633, -1963, + -14439 + ], + [0, -14581, -14582, -6306, -1961, -5923, -6307, -6308, -2517, -510, -6235, -11153], + [1, 3, 9459], + [0, 9460, 29, 7, 5], + [0, -14583], + [1, 3, 9462], + [0, 0, 9463, 9464, 10], + [0, -2778, -1446, -1654, -1666, -14584, -14585], + [0, -7084, -11722], + [1, 3, 9466], + [0, 9467, 9468, 9469, 8], + [0, -14586, -5758, -510, -1399, -14587, -14588, -2062, -7967, -2249, -8879, -2522], + [0, -21, -23, -40, -14589, -3037, -14590, -509, -14591, -932, -14592, -1415, -2125, -2240, -13361, -2347, -14593], + [0, -2520, -3444, -5545, -11989, -8948, -648, -1867, -1577, -3674, -4055, -5827], + [1, 3, 9471], + [0, 9472, 9473, 9474, 6], + [0, -14594, -1793, -8879, -2522], + [0, -14595, -14596, -664, -932, -966, -1654, -2125, -3708], + [0, -2520, -14597, -14598, -14599], + [1, 3, 9476], + [0, 9477, 9478, 9479, 4], + [0, -14587, -2062, -8879], + [0, -3037, -509, -526, -558, -821, -932, -14589, -1654, -1788, -2125, -14593], + [0, -2520, -3443, -14600], + [1, 3, 9481], + [0, 9482, 9483, 9484, 4], + [0, -14601, -1107, -1548, -14602, -2347, -14603], + [0, -664, -1077, -1405], + [0, -622, -5897, -4633, -9405, -11729, -3015], + [1, 3, 9486], + [0, 0, 88, 9487, 11], + [0, -14604, -14605, -6722, -14606, -14607, -14608, -14609, -5554, -10781, -2524, -12439, -4001], + [1, 3, 9489], + [0, 0, 31, 9490, 8], + [0, -10781, -4001, -11315, -3276, -6787], + [1, 3, 9492], + [0, 9493, 9494, 9495, 9], + [0, -7141, -1948, -4701, -2510, -14610], + [0, -3037, -3046], + [0, -14611, -14612, -2501, -14613, -6491, -14614, -14615, -14616], + [1, 3, 9497], + [0, 9498, 9499, 9500, 4], + [0, -482, -2267, -2269], + [0, -519, -668, -756, -3607, -1788, -2384, -2541], + [ + 0, -4001, -14604, -2525, -14617, -14618, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -2265, -3975, + -5559, -5538, -5549, -5513, -5550, -2547, -1573, -5545, -3958, -5554 + ], + [1, 3, 9502], + [0, 9503, 29, 9504, 6], + [0, -8143, -2202], + [0, -14619, -14620], + [1, 3, 9506], + [0, 0, 9507, 9508, 4], + [0, -589, -642, -932, -940, -967, -1110, -1654, -1788, -1942, -13490], + [0, -14621, -14622, -14525, -14623, -14624, -3509], + [1, 3, 9510], + [0, 9511, 9512, 9513, 9], + [0, -7334, -615, -668, -674, -812, -14625, -1400, -1403, -1792, -3633, -14626, -14627], + [0, -756, -1405, -1654, -1657, -6810, -2125, -2210, -2250], + [0, -3690, -674, -14628, -6596, -7534, -3578], + [1, 3, 9515], + [0, 9516, 9517, 9518, 8], + [0, -1109, -14629, -14630, -2546], + [0, -1065, -1939, -2320, -2322], + [0, -2533, -1334, -2540, -3120, -633], + [1, 3, 9520], + [0, 9521, 9522, 9523, 6], + [0, -8696, -14631, -14632, -10781, -14633, -14634, -14635], + [ + 0, -7746, -461, -1449, -1654, -2210, -932, -14636, -600, -879, -719, -2410, -3037, -14637, -14638, -957, -7894, + -14639 + ], + [0, -11592, -11593, -2534, -14640, -8787, -8713, -788, -14641, -14642, -14643, -10780, -9133], + [1, 3, 9525], + [0, 9526, 9527, 9528, 4], + [0, -2165], + [ + 0, -527, -534, -558, -11550, -632, -14644, -14645, -13841, -708, -756, -767, -932, -14646, -1405, -1412, -1415, + -1417, -14647, -1753, -1771, -1955, -2410, -14648, -2490, -2501 + ], + [ + 0, -14649, -6597, -3756, -4182, -4055, -14650, -14651, -14652, -14653, -14654, -8531, -8532, -2536, -2537, + -6408, -8530, -14655, -9307, -5845, -14656, -14657, -14658, -1838, -3215, -6747 + ], + [1, 3, 9530], + [0, 9531, 9532, 9533, 8], + [0, -2165, -2538], + [0, -756], + [0, -6597, -4055], + [1, 3, 9535], + [0, 9536, 219, 7, 4], + [0, -1309, -1435, -14659], + [1, 3, 9538], + [0, 0, 192, 9539, 4], + [0, -6597, -2538], + [1, 3, 9541], + [0, 0, 9542, 9543, 4], + [0, -1415, -2555, -14660, -932, -1753, -14661, -1942, -1100, -1771, -953, -7055, -940, -967], + [0, -5387, -5092, -6597, -3215, -3214, -14662, -14663], + [1, 3, 9545], + [0, 0, 0, 9546, 4], + [0, -2533, -5998], + [1, 3, 9548], + [0, 9549, 9550, 9551, 4], + [ + 0, -1630, -506, -932, -1111, -1110, -1942, -1099, -2400, -1639, -755, -8275, -1849, -1101, -965, -11813, -950, + -2411, -14664, -968, -978, -5918, -940, -9869, -8339, -967, -3686, -3748, -428, -14014, -9486, -8230 + ], + [0, -1763, -519, -999, -1344, -815, -5917, -1534, -3330, -86, -6630, -4036, -1768, -1945, -3307, -7357], + [ + 0, -5732, -687, -2541, -8193, -8196, -8197, -707, -8169, -5553, -7148, -8170, -1452, -8171, -932, -5874, -8172, + -2250, -8173, -7440, -7144, -8174, -7840, -8175, -5493, -3214, -2410 + ], + [1, 3, 9553], + [0, 0, 9554, 9555, 4], + [0, -4733, -920, -14665, -1654], + [0, -2542, -6597], + [1, 3, 9557], + [0, 9558, 9559, 9560, 10], + [0, -3345], + [0, -21, -23, -14666, -38, -40, -14667, -535, -14668, -14669, -633, -932, -1412, -1451, -1788, -14670], + [0, -5569, -5570, -14671, -4112], + [1, 3, 9562], + [0, 9563, 9564, 9565, 4], + [0, -719, -2858], + [0, -1788, -812, -1654, -932, -756, -2416, -633], + [0, -8472, -2544, -7723, -14242, -3962, -7107, -5559, -6422, -7724, -2451, -3264, -6138, -14672], + [1, 3, 9567], + [0, 0, 9568, 9569, 4], + [0, -14673, -469, -1872, -2153, -2535], + [0, -14674, -14675, -14676, -14677, -14678, -4125, -14679, -3552], + [1, 3, 9571], + [0, 0, 31, 9572, 10], + [0, -1015, -1631, -6792, -6696, -7208, -5839], + [1, 3, 9574], + [0, 0, 9575, 9576, 5], + [ + 0, -3983, -3035, -3198, -14680, -3617, -14681, -3036, -4647, -3621, -3037, -14682, -3046, -4204, -427, -428, + -664, -767, -821, -932, -960, -1004, -11616, -1107, -1449, -1654, -1689, -1741, -1788, -2233, -2234, -2376, + -2410, -2443, -2501, -2503, -2531, -14683 + ], + [0, -687, -3958, -4000, -11564, -5550, -8905, -3770, -14684, -3974, -3975, -5561, -13861, -2547], + [1, 3, 9578], + [0, 0, 9579, 9580, 8], + [ + 0, -1415, -2387, -932, -2127, -1942, -190, -533, -1023, -2410, -23, -3136, -3037, -1426, -40, -2411, -3326, + -3561, -940, -3267, -14685, -3412 + ], + [0, -14686, -3215, -3270], + [1, 3, 9582], + [0, 9583, 9584, 9585, 10], + [0, -1107, -503], + [0, -589, -6398, -1414], + [0, -2548, -4055, -14687, -14688], + [1, 3, 9587], + [0, 9588, 9589, 235, 5], + [0, -701, -10415, -5505, -2267, -10751, -2551], + [ + 0, -32, -42, -3035, -3621, -3037, -427, -14689, -652, -664, -668, -10480, -767, -769, -932, -967, -1166, -11831, + -1654, -2125, -2410, -2518, -14690 + ], + [1, 3, 9591], + [0, 0, 9592, 9593, 4], + [ + 0, -32, -42, -3035, -3621, -3037, -427, -428, -652, -664, -767, -932, -1166, -1654, -1978, -2125, -2184, -2253, + -2410 + ], + [0, -6748, -3215, -2550, -3957, -687, -6747, -5829, -4377, -6748], + [1, 3, 9595], + [0, 9596, 9597, 7, 4], + [ + 0, -14691, -567, -651, -656, -668, -10506, -719, -14692, -812, -10659, -834, -1105, -1371, -1384, -5894, -1526, + -14693, -1645, -1650, -1728, -1733, -1796, -7772, -2059, -14694, -2105, -14695, -2125, -14696, -2177, -2270, + -2323, -2325, -2441, -10523 + ], + [ + 0, -527, -528, -533, -534, -6085, -555, -559, -14697, -14698, -560, -562, -572, -932, -14699, -7748, -14700, + -951, -14701, -956, -14702, -969, -1059, -1168, -1174, -1232, -1237, -1266, -1268, -1415, -1455, -1661, -2330, + -2501 + ], + [1, 3, 9599], + [0, 0, 0, 9600, 8], + [0, -2552, -2554, -3590, -5550, -1764, -13499], + [1, 3, 9602], + [0, 9603, 9604, 9605, 11], + [0, -5822, -11280], + [0, -599], + [0, -2432, -5408, -5827, -5409, -6656], + [1, 3, 9607], + [0, 9608, 9609, 263, 5], + [ + 0, -14703, -14704, -14705, -14706, -14707, -506, -668, -719, -812, -999, -14708, -1111, -14709, -8802, -1549, + -14710, -14711, -2177, -2218, -2430, -14712 + ], + [ + 0, -3198, -3164, -3037, -3199, -14713, -652, -757, -932, -14714, -1077, -1446, -1942, -1945, -2125, -2210, + -14715, -2269, -2410, -9011, -9010 + ], + [1, 3, 9611], + [0, 9612, 9613, 263, 6], + [0, -668, -812, -999, -2177, -1646, -1549, -9444, -2205, -2343, -1456, -14711, -1514, -14716, -3609, -3164, -14705], + [ + 0, -888, -1446, -2210, -2469, -757, -1376, -1942, -2400, -4370, -2410, -9010, -3198, -4372, -3199, -9011, + -14713, -5686, -14703, -12968, -14706, -4049, -2556, -3664, -1945 + ], + [1, 3, 9615], + [0, 0, 14, 9616, 4], + [0, -2558, -14717, -14718, -687, -1965, -5874, -3962, -3953, -14719, -14720, -1838, -14721], + [1, 3, 9618], + [0, 9619, 9620, 9621, 11], + [ + 0, -1630, -1805, -668, -2562, -1548, -1040, -10325, -14722, -14723, -9764, -14724, -14725, -728, -769, -14726, + -10388, -5895, -14707, -6715, -14727, -14703, -14728, -3609, -2433, -14729, -2556 + ], + [0, -652, -2541, -1722, -2210, -14714, -1110, -756, -14730], + [0, -5732, -687, -3577, -3113, -7646, -7641, -3578, -3673, -3970, -9471, -3976, -3262, -3960, -3994, -3871], + [1, 3, 9623], + [0, 0, 9624, 9625, 4], + [0, -14731, -479, -519, -668, -689, -713, -1496, -10962, -1863, -2384, -2541], + [ + 0, -712, -5535, -714, -3974, -4000, -687, -2265, -5514, -5553, -3770, -3975, -5538, -5550, -2547, -1573, -5545, + -3958, -5554 + ], + [1, 3, 9627], + [0, 9628, 101, 9629, 6], + [0, -719, -1376], + [0, -2561, -3690, -3844, -3445], + [1, 3, 9631], + [0, 9632, 9633, 9634, 4], + [0, -1630, -668, -688, -2528, -481, -2269, -482, -2267, -14732], + [0, -2541, -1654], + [0, -5732, -687, -3976, -2559, -14733, -14734, -6335, -12665, -5514], + [1, 3, 9636], + [0, 218, 9637, 9638, 5], + [0, -2198, -2177, -1654], + [0, -14735, -2563, -14736, -14737, -14738, -5269, -14739, -6249], + [1, 3, 9640], + [0, 0, 0, 9641, 11], + [0, -2410, -4058, -3926, -8038, -8910], + [1, 3, 9643], + [0, 9644, 9645, 9646, 6], + [0, -523, -1004, -1851, -2564], + [ + 0, -3731, -3035, -4269, -3732, -14740, -3617, -14741, -3621, -14742, -617, -664, -665, -720, -724, -744, -796, + -932, -14743, -1380, -1654, -1676, -1764, -1942, -2251, -2379, -2410 + ], + [0, -2564, -1004, -3690, -14744, -14745, -3445], + [1, 3, 9648], + [0, 9649, 9650, 9651, 10], + [0, -567, -615, -812, -13317, -1351, -1449, -1548, -1640, -1681, -2105, -2364, -2531], + [ + 0, -526, -528, -555, -558, -617, -744, -824, -932, -1004, -1168, -1174, -1197, -11777, -1235, -1252, -1266, + -1654, -1676, -1687, -12720, -2111 + ], + [ + 0, -4004, -3636, -3634, -9249, -4679, -4683, -14387, -11878, -4865, -3264, -5177, -5092, -775, -3214, -4868, + -5998, -10640, -14746 + ], + [1, 3, 9653], + [0, 0, 9654, 7, 4], + [ + 0, -2934, -2953, -14747, -9705, -3037, -14748, -615, -10877, -1419, -1421, -1415, -1654, -1660, -1412, -2234, + -1413, -10034, -2153, -2314, -2387, -2469 + ], + [1, 3, 9656], + [0, 9657, 9658, 9659, 8], + [ + 0, -14749, -7334, -633, -8958, -14750, -714, -719, -724, -742, -812, -1004, -14751, -5456, -14752, -5457, -1296, + -1304, -1336, -5458, -14753, -5459, -1548, -1810, -1820, -14754, -2194, -14755, -7222, -2291, -14756, -8573, + -2491, -2493, -2546, -2549, -14757 + ], + [0, -465, -14758, -14759, -1654, -1860, -2322, -2347, -14760], + [0, -2568, -3634, -4865, -1989, -1654, -5471], + [1, 3, 9661], + [0, 9662, 40, 9663, 5], + [0, -293, -295, -297, -14761, -832, -2177, -2369, -2387], + [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -4339, -4340, -4343, -4347], + [1, 3, 9665], + [0, 9666, 40, 164, 6], + [0, -668, -2387, -297, -2177, -1110, -293, -7356, -429, -14761, -8167, -5201], + [1, 3, 9668], + [0, 9669, 40, 9670, 4], + [0, -2387, -297, -2177, -1427, -1645, -293, -1863, -4023, -1426, -2551, -4018, -11751, -4019, -1352, -14761], + [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -14762, -4340, -4347], + [1, 3, 9672], + [0, 9673, 9674, 9675, 9], + [0, -2387, -297, -2177, -293, -295, -2569, -14761], + [0, -1787, -2257], + [0, -4333, -4334, -4335, -14763, -4339, -4340, -4343, -4347], + [1, 3, 9677], + [0, 9678, 9679, 9680, 11], + [0, -14764, -14765, -2387], + [0, -14766, -14767, -4745, -2344], + [0, -14768, -2006, -14769, -14770, -5176, -9547, -7581, -12543, -14771, -14772, -14773], + [1, 3, 9682], + [0, 9683, 9684, 9685, 11], + [0, -14774, -2634, -2006, -2019, -14775, -2170, -14776], + [0, -3037, -3040, -3052, -932, -10813, -1889, -2318, -2410], + [0, -5375, -770, -13055, -5375, -3634, -8576, -13056, -3551, -13057, -13058, -5376, -13059, -11152, -5150], + [1, 3, 9687], + [0, 9688, 0, 9689, 4], + [0, -786, -1967, -44, -3772, -3773, -3765], + [0, -2006, -3159, -4217, -906], + [1, 3, 9691], + [0, 9692, 190, 9693, 11], + [0, -6789, -6790, -14777], + [0, -3214, -1446, -1838, -10855, -856], + [1, 3, 9695], + [0, 9696, 9697, 264, 4], + [0, -44, -3345], + [0, -3136, -1415], + [1, 3, 9699], + [0, 9700, 9701, 9702, 4], + [0, -44, -14778, -1967, -2029, -2387], + [ + 0, -3192, -6093, -3394, -3794, -2685, -14779, -8471, -261, -3326, -350, -405, -406, -407, -14780, -409, -410, + -3136, -3140, -3040, -427, -428, -3766, -14781, -14782, -639, -757, -767, -795, -932, -3071, -969, -1059, + -14783, -14784, -5111, -8158, -1771, -1940, -4130, -2006, -2019, -2029, -2034, -2052, -2184, -2253, -2410 + ], + [0, -14785, -2006, -6701, -14786, -14787, -3823, -6750, -12605, -14788, -4666, -14789, -12606, -14790], + [1, 3, 9704], + [0, 90, 0, 9705, 9], + [ + 0, -4665, -4666, -5248, -10111, -775, -5564, -14791, -3962, -3214, -3756, -14792, -14793, -12898, -14794, + -14795, -1889, -3583, -14796, -14797, -6750, -12123, -14798, -2363, -14799 + ], + [1, 3, 9707], + [0, 9708, 9709, 9710, 9], + [0, -2857, -14800, -14801, -482, -14802, -1460, -2400, -14803], + [0, -14804, -3311, -3312, -14805, -14806, -14807, -2410], + [0, -14808, -4187, -2444, -3966, -4865, -3445, -3100, -14809, -14810], + [1, 3, 9712], + [0, 0, 0, 9713, 8], + [0, -3276, -7148, -14811, -7485, -4165, -4182, -14812, -14813, -14814, -7198, -14815], + [1, 3, 9715], + [0, 9716, 9717, 264, 5], + [ + 0, -23, -12490, -44, -3345, -14816, -14817, -14818, -14819, -2577, -14820, -14821, -14822, -160, -14823, -2695, + -14824, -4785, -14825, -2699, -366, -3735, -9947, -14826, -440, -14827, -518, -534, -14828, -5323, -635, -668, + -719, -753, -778, -779, -865, -866, -1077, -1107, -1122, -14829, -1123, -1331, -1455, -1469, -1548, -1643, + -1666, -14830, -1729, -1805, -1889, -1896, -1897, -1906, -1908, -12060, -1942, -1966, -6387, -2015, -2041, + -2144, -5977, -2193, -2195, -2275, -14831, -2335, -14832, -2435, -2466, -11710, -2501, -2502, -2505, -5628 + ], + [0, -14833, -3758, -3048, -3044, -14834, -4201, -6630, -13186, -5129, -1623, -1683, -1978, -2125], + [1, 3, 9719], + [0, 34, 9720, 9721, 5], + [ + 0, -234, -350, -4062, -351, -3561, -3043, -3136, -3040, -427, -428, -3807, -748, -915, -932, -940, -958, -967, + -969, -1415, -1419, -1449, -1788, -1942, -2006, -2019, -2125, -2127, -2130, -4063, -4064, -2142, -2144, -2233, + -2375, -2376, -2379, -2387, -2402, -2501, -2503, -2505, -238, -240 + ], + [0, -9975, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], + [1, 3, 9723], + [0, 34, 9724, 9725, 4], + [ + 0, -23, -40, -42, -4066, -3136, -3037, -427, -428, -14835, -14836, -14837, -441, -4838, -5593, -753, -767, -932, + -940, -958, -14838, -980, -1415, -1419, -1942, -2125, -2127, -2128, -2130, -2142, -2144, -14839, -2375, -2387, + -2402, -2410, -2476, -238 + ], + [ + 0, -2476, -3944, -14840, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, + -4060 + ], + [1, 3, 9727], + [0, 34, 9728, 9729, 8], + [ + 0, -23, -40, -42, -3035, -3136, -3621, -3037, -427, -428, -14835, -14836, -14841, -14837, -441, -4838, -5593, + -664, -767, -932, -940, -958, -14838, -980, -1771, -1942, -2125, -2127, -2128, -2130, -2142, -2144, -14839, + -14842, -2387, -2402, -2410, -2476, -238, -2584 + ], + [ + 0, -2476, -3944, -14840, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, + -4060, -5177, -775, -2316 + ], + [1, 3, 9731], + [0, 9732, 9733, 9734, 5], + [0, -5334, -9596, -9582, -1839, -5358, -6648], + [0, -4251, -3037, -652, -12326, -1942, -2094, -2100, -7699, -2399, -2400, -2410, -7669, -2541], + [0, -9590, -9589, -9588, -2444, -3590, -3264, -1838, -14843], + [1, 3, 9736], + [0, 0, 9737, 9738, 4], + [0, -932, -1654, -1788, -2210], + [0, -2254, -14844, -14845, -13497, -14846, -3445], + [1, 3, 9740], + [0, 0, 0, 9741, 4], + [0, -14847, -14848, -14849, -14850, -14851, -14852, -14853, -14854, -856, -1599], + [1, 3, 9743], + [0, 9744, 9745, 9746, 6], + [0, -9929, -9936, -14855, -812, -9927, -1371, -1875, -2240, -2347, -2387, -2555], + [ + 0, -3986, -3988, -3470, -3471, -3198, -9943, -11697, -3136, -3037, -11337, -9941, -7836, -8497, -932, -1415, + -1942, -2174, -2375, -2410 + ], + [0, -5271, -5270, -687, -3162, -3994, -9946, -5269], + [1, 3, 9748], + [0, 9749, 0, 9750, 5], + [0, -5334, -14856, -12767, -1293, -14857, -5356, -5358], + [0, -9589, -3264, -14857, -14075, -1599, -10684, -10918, -3862, -2083, -12745, -2093, -14858, -2427], + [1, 3, 9752], + [0, 9753, 9754, 9755, 5], + [0, -1281, -2297], + [0, -519, -708, -2410, -2541], + [0, -10606, -3974, -14859, -687, -6659, -7440, -5514, -5560, -4000], + [1, 3, 9757], + [0, 9758, 9759, 9760, 11], + [0, -8609, -12518], + [ + 0, -2832, -11432, -3615, -3244, -190, -3983, -367, -7043, -406, -407, -409, -14860, -3136, -3037, -3040, -12591, + -427, -428, -9723, -932, -940, -12520, -969, -970, -976, -1110, -1344, -1415, -1419, -1534, -2634, -1942, -2006, + -2019, -2965, -2125, -2177, -2410, -2411 + ], + [0, -2592, -2006, -3322, -2105, -3324, -4213], + [1, 3, 9762], + [0, 0, 9763, 9764, 5], + [0, -3037, -2228, -2229, -2391, -2410], + [ + 0, -2410, -8038, -3694, -9069, -7304, -8425, -6582, -7534, -4058, -3445, -3577, -4055, -6435, -640, -5835, + -6421, -10227, -6233, -12343, -14861, -14862 + ], + [1, 3, 9766], + [0, 9767, 9768, 9769, 4], + [0, -14863, -14864, -14865], + [0, -25, -46, -3983, -932, -1452, -1547, -1654, -2111, -8325, -2384, -2416], + [ + 0, -14233, -14866, -4865, -6899, -1819, -14867, -13626, -2594, -14868, -14869, -14870, -14871, -14872, -14873, + -14874 + ], + [1, 3, 9771], + [0, 0, 9772, 9773, 4], + [0, -1449, -2105, -2106], + [0, -3264, -9703, -9566], + [1, 3, 9775], + [0, 9776, 9777, 9778, 4], + [ + 0, -1297, -14875, -9684, -2267, -14876, -14877, -14878, -6467, -14879, -14880, -14881, -14882, -14883, -14884, + -14885, -14886, -14887, -14888, -14889, -9154, -14380, -14890, -14891, -14892, -8965, -14893, -14894, -14895 + ], + [ + 0, -652, -999, -2210, -14896, -581, -932, -825, -14897, -1098, -1942, -367, -749, -767, -2293, -2091, -10402, + -2410, -3037, -14898, -14899, -4372, -3906, -11098, -14900, -4203, -14901, -14902, -14903, -14904, -14905, + -14906, -13409, -14907, -14908, -4646 + ], + [0, -14909, -3161, -13039], + [1, 3, 9780], + [0, 9781, 9782, 9783, 4], + [0, -14910, -14911, -865, -1461, -1729, -4389], + [0, -14912, -14913, -3037, -4201, -932, -7060, -1942, -2125, -2392, -2410, -2469], + [0, -4344, -7547, -4165], + [1, 3, 9785], + [0, 9786, 9787, 9788, 8], + [0, -812, -2193, -2387, -2550, -1077, -719, -1729, -14914, -9929, -1734, -9931, -14915], + [ + 0, -1763, -1415, -1344, -2331, -932, -2125, -2375, -1942, -2410, -3136, -3037, -3198, -11337, -8890, -50, -3048, + -4201, -14916, -3986, -3988, -427 + ], + [0, -1386, -3996, -14917, -3162, -5269, -3167, -14918], + [0, 25, 9790], + 1753574400000, + [1, 3, 9792], + [0, 9793, 0, 93, 4], + [0, -682, -1384, -1967, -1993, -2006, -2019, -2029, -2489], + [1, 3, 9795], + [0, 9796, 0, 9797, 10], + [0, -2387, -14920, -14921, -14922], + [0, -5818, -1122, -3844, -3161, -3966, -3967, -2410], + [1, 3, 9799], + [0, 9800, 9801, 221, 5], + [ + 0, -9933, -14923, -9938, -9931, -9929, -9934, -9935, -9932, -9937, -9936, -668, -812, -834, -9927, -9925, -1548, + -1805, -3547, -8874, -2177, -2240, -9926, -9422, -2291, -2323, -2387 + ], + [ + 0, -3198, -9939, -9943, -3136, -3044, -3037, -3199, -9941, -4202, -5673, -1415, -1417, -1534, -2125, -2231, + -2375, -2410 + ], + [1, 3, 9803], + [0, 34, 9804, 9805, 5], + [ + 0, -14924, -14925, -14926, -8250, -7, -8, -9, -10, -427, -428, -519, -748, -932, -940, -958, -967, -14927, + -1788, -1942, -2125, -2153, -2234, -2387, -2402, -2410, -238 + ], + [0, -475, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], + [1, 3, 9807], + [0, 9808, 9809, 9810, 4], + [0, -8547, -1548], + [0, -3037, -427, -428, -932, -940, -958, -967, -1942, -2125, -2127, -2130, -2142, -2144, -2387, -2402, -2410, -238], + [0, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], + [1, 3, 9812], + [0, 9813, 9814, 65, 5], + [0, -712, -2544], + [0, -4597, -2391, -2423], + [1, 24, 9816], + [0, 25, 9817], + 1738454400000, + [1, 3, 9819], + [0, 9820, 9821, 9822, 4], + [0, -44, -2965], + [ + 0, -14928, -2006, -932, -708, -2379, -1942, -767, -2019, -14929, -2410, -5111, -3040, -14784, -3052, -14930, + -2052, -7465, -428, -3081, -427 + ], + [0, -3634, -2006, -3322, -5119, -4868], + [1, 3, 9824], + [0, 9825, 0, 9826, 8], + [0, -14931, -14932, -14933], + [ + 0, -10543, -9745, -11796, -9753, -6955, -9030, -2322, -14934, -4132, -14935, -3277, -14647, -11069, -6129, + -11037, -5880, -7375, -14936, -14937, -6656, -14938, -14939, -10545, -3018, -3210, -14940, -1015, -3756, -3116, + -14770, -6960, -11113, -12877, -4058, -14941, -14942, -6695, -14769, -12869, -6324, -4213, -2564, -6052, -9772, + -6821, -5998, -8988, -14943, -11582, -14944, -6511, -5837, -1985, -3103, -14945, -14946, -5550, -1631, -1000, + -8808, -8127, -3590, -1959, -7333, -2487, -7420, -5856, -9571, -6011, -3921, -10838, -14947, -2265, -11784, + -6953, -4111, -14948, -10366, -9054, -6510, -3612, -11685, -6787, -11798, -12255, -14949, -7863, -14950, -12343, + -5176, -719, -3272, -5831, -7373, -14773, -8411, -9027, -11822, -6849, -6962, -7199, -3690, -5846, -687, -14604, + -14951, -7856, -7581, -14952, -5827, -14953, -3215, -5195, -3911, -14954, -2387, -3015, -9980, -6281, -4784, + -14955, -6548, -10547, -6951, -6964, -6599, -13466, -10527, -11866, -5924, -1435, -13003, -1463, -8038, -3578, + -5514, -4782, -7558, -5572, -8410, -4110, -6120, -6968, -503, -14956, -14957, -6434, -6958, -6917, -3258, -6107, + -1640, -3994, -1471, -13469, -12991, -14958, -3186, -5272, -14959, -14960, -6233, -12342, -8910, -10537, -581, + -6187, -3206, -5112, -2368, -6932, -7283, -14961, -11872, -11791, -3931, -6970, -6845, -510, -5874, -14962, + -3771, -4113, -11792, -14963, -3815, -11112, -6717, -7331, -8027, -3634, -8163, -6977, -6280, -14964, -3322, + -12020, -10549, -14965, -5210, -2547, -10544, -8108, -14966, -11153, -5092, -8989, -7822, -1361, -1415, -1412, + -3481, -6370, -655, -3207, -2344, -6972, -8166, -11782, -7459, -1764, -770, -2059, -7091, -4053, -4792, -6946, + -8412, -3582, -6508, -14967, -14968, -4795, -14969, -12893, -6506, -8164, -5554, -635, -6956, -682, -6557, + -14970, -14622, -14971, -11070, -14972, -3930, -13770, -6987, -7334, -5842, -13468, -14525, -14973, -1080, + -10539, -2518, -6947, -10440, -12892, -8132, -8421, -7404, -2451, -13467, -14974, -1961, -4142, -1122, -6966, + -13234, -4679, -12883, -5549, -5395, -9918, -6971, -14975, -8996, -12543, -5829, -11797, -1810, -6655, -14976, + -14977, -14978, -14979, -12888, -7370, -8616, -7237, -2319, -6748, -14980, -6439, -1076, -2074, -5569, -3173, + -7230, -1983, -14981, -3770, -1993, -11793, -4107, -13465, -1039, -10413, -12437, -7303, -9173, -6989, -12990, + -14982, -6978, -5553, -3270, -3185, -10330, -3217, -14983, -1030, -9172, -9917, -4055, -4665, -11821, -3324, + -5563, -6784, -6965, -7421, -1359, -1654, -4676, -2105, -14984, -6545, -3175, -10541, -6130, -6957, -3276, + -14985, -12025, -7200, -14986, -2489, -1666, -9261, -775, -6543, -7442, -12912, -13471, -14987, -4781, -13005, + -615, -3966, -1449, -4115, -12889, -3925, -14988, -6654, -14989, -8388, -8472, -6948, -9048, -14624, -14772, + -12512, -8806, -3975, -3209, -14990, -4783, -6975, -14991, -6509, -6444, -9847, -11867, -6985, -14992, -11639, + -14993, -3926, -6188, -3162, -6555, -11049, -753, -3184, -14994, -664, -6986, -8128, -14995, -6131, -6852, + -12435, -7372, -14996, -1573, -12021, -14997, -14998, -1456, -14999, -3923, -15000, -4134, -5562, -5101, -8047, + -9826, -15001, -2525, -15002, -15003, -9577, -15004, -15005, -5396, -5208, -15006, -10548, -2114, -13872, + -12438, -729, -7369, -5484, -6351, -8618, -714, -4117, -9572, -12885, -13858, -6983, -11820, -15007, -15008, + -1047, -11997, -1342, -727, -15009, -5260, -15010, -8990, -4182, -8130, -6952, -518, -12878, -1986, -15011, + -11817, -891, -1801, -6976, -5841, -11483, -7440, -15012, -15013, -6980 + ], + [1, 3, 9828], + [0, 0, 9829, 9830, 4], + [0, -1452, -8171, -1654], + [0, -5514, -3264], + [1, 3, 9832], + [0, 9833, 9834, 9835, 5], + [0, -4372, -2210, -2387], + [0, -13198, -3698, -13201, -13202, -13204, -13205, -15014, -2402], + [0, -5817, -521, -3634, -4215, -8466, -15015], + [1, 3, 9837], + [0, 0, 9838, 9839, 8], + [ + 0, -3561, -668, -15016, -1077, -1107, -1168, -1190, -15017, -2125, -2127, -2132, -2142, -2334, -2387, -2388, + -2410 + ], + [0, -3994, -4126, -15018, -15019, -3578, -5270, -11536, -3214, -2363, -15020, -3162, -752, -3862, -2494, -3588], + [1, 3, 9841], + [0, 0, 0, 9842, 5], + [0, -4000, -3162, -812], + [1, 3, 9844], + [0, 9845, 9846, 9847, 8], + [0, -617, -724, -812, -832, -5035, -996, -1496, -2213, -2564], + [ + 0, -3983, -15021, -3171, -364, -3170, -365, -3865, -3330, -518, -803, -932, -940, -975, -1110, -1889, -1942, + -1946, -2910, -2299, -2300, -2318, -2410, -2466, -2469 + ], + [0, -3690, -3445, -1334, -2512, -2531, -3691, -3967], + [1, 3, 9849], + [0, 0, 9850, 9851, 6], + [ + 0, -23, -40, -86, -3307, -518, -534, -632, -12427, -664, -15022, -699, -15023, -796, -15024, -1168, -15025, + -1174, -15026, -15027, -1184, -1187, -1197, -1199, -1212, -1228, -1232, -1237, -1238, -1243, -1244, -1248, + -15028, -1252, -1262, -1271, -15029, -1344, -15030, -1442, -1496, -1654, -1655, -15031, -4916, -1889, -1953, + -2109, -2111, -2127, -2128, -3572, -3031, -15032, -2210, -4096, -15033, -2460, -15034, -2501, -7752 + ], + [0, -775, -3754, -2162, -3756, -3576, -3575, -3161, -6334, -15035, -15036], + [1, 3, 9853], + [0, 9854, 9855, 9856, 9], + [0, -668, -15037], + [0, -15038, -3664, -1344, -1534, -1942, -2410, -2469], + [0, -687, -712, -714, -5535, -3958, -4000, -5538, -15039, -15040, -1573, -5545, -5550, -2265, -5553, -3770, -3974], + [1, 3, 9858], + [0, 9859, 9860, 9861, 8], + [0, -3776, -15041, -1606, -1967], + [ + 0, -21, -23, -32, -5870, -26, -12490, -34, -12492, -3376, -3400, -3398, -3380, -40, -41, -15042, -3615, -3244, + -190, -15043, -12687, -15044, -15045, -15046, -4749, -4758, -15047, -406, -407, -409, -15048, -410, -3136, + -4961, -3037, -3040, -3052, -3804, -527, -533, -534, -8560, -15049, -4976, -15050, -684, -748, -749, -753, -767, + -824, -932, -933, -940, -951, -958, -962, -967, -969, -970, -976, -1077, -1110, -15051, -1415, -4980, -1417, + -1419, -15052, -1449, -1889, -1939, -1942, -1952, -2006, -2015, -2019, -2029, -15053, -2082, -2205, -2257, + -2278, -15054, -2339, -15055, -13807, -2375, -2376, -2410, -2501, -2503, -2505 + ], + [ + 0, -2631, -15056, -15057, -3095, -3482, -4189, -3161, -2006, -4101, -15058, -3261, -15059, -15060, -15061, + -15062, -4666, -15063, -15064, -15065, -712, -8038, -3999, -4684, -15066, -3160, -3477, -4727, -15067, -2278 + ], + [1, 3, 9863], + [0, 0, 0, 9864, 4], + [0, -9681, -9681, -3264, -7153, -2435], + [1, 3, 9866], + [0, 0, 9867, 9868, 4], + [0, -15068, -1127, -1134, -1136, -1138, -1140, -1144, -1148, -1149, -15069, -1160], + [0, -14214, -14213, -15070, -15071, -3825, -4126, -6409, -12536, -13615, -1437, -8635, -3576, -3162], + [1, 3, 9870], + [0, 9871, 9872, 254, 11], + [0, -1889, -2694, -2279, -4007, -658, -6410], + [ + 0, -2531, -502, -1683, -1816, -2323, -2564, -6842, -1107, -2178, -2444, -461, -2624, -651, -812, -1072, -1460, + -12980, -507, -640, -649, -743, -997, -1401, -1699, -2066, -2177, -2334, -5034, -1047, -3447, -1827, -1958, + -2501, -1977, -1999, -12981, -12955, -367, -4204, -719, -767, -1273, -11121, -10697, -9548, -1864, -2257, + -12982, -15072, -5052, -5673, -12971, -12972, -778, -2745, -1336, -2773, -1354, -12977, -2231, -2269, -2343, + -2410, -10052, -23, -237, -3036, -12967, -8559, -5900, -512, -2740, -724, -769, -1429, -2163, -12978, -2194, + -6375, -12979, -3921, -47, -3872, -10098, -12956, -3269, -3198, -12963, -3040, -534, -635, -12973, -737, -12974, + -1465, -12976, -1930, -8578, -2275, -2594, -12957, -5033, -3044, -3199, -12975, -8562, -6378, -2041, -5977, + -6380, -44, -12960, -15073, -6381, -1851, -6383, -6384, -46, -4020, -13428, -12966, -6633, -6386, -1848, -6387, + -3194, -12951, -3983, -4749, -8523, -3052, -1337, -6388, -1734, -22, -40, -13427, -12968, -771, -1343, -2233, + -11463, -6390, -6391, -5038, -4776, -3732, -7080, -6832, -7026, -1927, -41, -12947, -269, -5085, -3850, -12964, + -12969, -736, -1929, -2082, -32, -13186, -6394, -1934, -4195, -3251, -12948, -12952, -15043, -12965, -14296, + -7165, -7967, -2335, -12949, -15074, -10100, -10101, -7189, -1903, -2791, -12953, -12959, -1643, -3077, -42, + -12950, -8355, -15075, -8863, -12954, -4758, -12961, -12946, -4762, -5323, -4763, -8561, -6484, -38, -7164, + -12962, -1915, -37, -3368, -15076, -3376, -3204, -3379, -3385, -3389, -553 + ], + [1, 3, 9874], + [0, 0, 9875, 9876, 10], + [0, -652, -13239, -1344, -1534, -1889, -2541], + [0, -1889, -775, -3583, -10739], + [1, 3, 9878], + [0, 9879, 9880, 9881, 9], + [0, -674, -3050, -15077, -1630, -1641, -1863, -3240, -12379, -2218], + [ + 0, -86, -3307, -190, -3470, -7040, -3471, -3472, -7041, -7042, -3713, -3037, -5675, -15078, -427, -428, -767, + -932, -965, -999, -1110, -1344, -13856, -1534, -1870, -1942, -2125, -2174, -2410, -2469 + ], + [ + 0, -3998, -1978, -15079, -3167, -15080, -5270, -5271, -15081, -15082, -15083, -6527, -1594, -3162, -13188, + -15084, -15085 + ], + [1, 3, 9883], + [0, 9884, 9885, 9886, 9], + [0, -15086, -15087, -640, -5273, -1610, -1955, -4620, -15088], + [ + 0, -23, -32, -40, -534, -15089, -684, -9994, -778, -932, -933, -12416, -958, -10049, -1041, -3867, -1331, + -15090, -2275, -2335, -14648, -2501, -2502, -2503, -2505 + ], + [ + 0, -3812, -3813, -3814, -3815, -3816, -3817, -856, -15091, -15092, -2637, -4847, -15093, -15094, -15095, -15096, + -15097, -15098, -15099 + ], + [1, 3, 9888], + [0, 94, 9889, 9890, 5], + [0, -23, -32, -44, -932, -933, -940, -958, -962, -967, -969, -970, -1415, -3156, -1942, -2006, -2034], + [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -10738, -9556, -15020, -15100, -12546, -5176], + [1, 3, 9892], + [0, 0, 9893, 9894, 5], + [0, -23, -40, -44, -15101, -12564, -932, -1344, -1534, -2006, -2034, -2410], + [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -13876, -15102, -6711, -15103], + [1, 3, 9896], + [0, 0, 9897, 9898, 11], + [ + 0, -23, -32, -26, -3204, -38, -40, -41, -3326, -350, -351, -407, -409, -518, -703, -796, -932, -940, -12520, + -967, -969, -970, -976, -1344, -1352, -1415, -1534, -1889, -1942, -1967, -2006, -2019, -2127, -4063, -15104, + -3474, -4753, -2281, -2282 + ], + [0, -2006, -13613, -15105, -4108, -2006, -3095, -15106, -3162, -5270, -5271, -15107, -15108, -15109, -15110], + [1, 3, 9900], + [0, 9901, 9902, 9903, 9], + [0, -44, -15111, -15112], + [ + 0, -23, -36, -38, -40, -41, -42, -8280, -50, -15113, -407, -409, -3040, -3052, -427, -428, -440, -528, -651, + -767, -932, -940, -967, -969, -1344, -1415, -1419, -1534, -1942, -2006, -2019, -2125, -2410, -2466 + ], + [0, -15114, -15115, -2006, -3159, -14798], + [1, 3, 9905], + [0, 9906, 9907, 9908, 6], + [0, -656, -15116, -2400], + [ + 0, -2832, -3615, -190, -15117, -9705, -652, -668, -716, -722, -928, -932, -940, -967, -999, -1110, -1344, -1412, + -1534, -1574, -1942, -2125, -7969, -2410, -2411 + ], + [0, -8630, -3671, -856, -3262, -1599, -3437, -4328], + [1, 3, 9910], + [0, 9911, 9912, 9913, 11], + [0, -349, -703, -15118, -3517, -996, -1359, -2040, -2112, -12695, -12518, -15119], + [ + 0, -21, -23, -40, -41, -42, -44, -15042, -10791, -8230, -3615, -190, -12608, -15120, -349, -3562, -15043, -358, + -4754, -13424, -2948, -15121, -4890, -15122, -15123, -15124, -407, -409, -410, -15125, -12940, -15126, -3037, + -3040, -3052, -6633, -440, -5286, -3664, -534, -15127, -8561, -635, -15050, -767, -7272, -7254, -7271, -834, + -932, -15128, -940, -948, -958, -960, -962, -967, -969, -970, -15129, -4756, -1107, -1110, -1344, -1449, -1534, + -1610, -1874, -1942, -2006, -2019, -2029, -2040, -2125, -2257, -2335, -2376, -2378, -2410, -2411, -6412, -2469, + -15130, -2501, -2502, -2503 + ], + [0, -2006, -3476, -14497, -3159], + [1, 3, 9915], + [0, 9916, 9917, 9918, 4], + [0, -15131], + [ + 0, -15132, -15133, -15134, -15135, -350, -351, -410, -4875, -4877, -15136, -15137, -4878, -15138, -15139, -652, + -664, -15140, -15141, -932, -15142, -958, -1449, -11472, -1654, -1942, -2127, -15143, -2184, -2210, -2211, + -2253, -2334, -2410 + ], + [ + 0, -15144, -5072, -5065, -12238, -5073, -14939, -15145, -5495, -3161, -12122, -7651, -3110, -15146, -13039, + -6106, -6107, -5394, -15147, -15148 + ], + [1, 3, 9920], + [0, 0, 9921, 9922, 6], + [0, -23, -5585, -40, -2127, -2128, -2133, -2137, -2339, -15149, -13807, -2416], + [0, -15150, -15151, -7581, -1634, -475, -15152, -2006, -2476, -3755], + [1, 3, 9924], + [0, 9925, 9926, 9927, 4], + [0, -44, -15153, -4817, -809, -1549, -15154, -2355, -2451], + [ + 0, -3341, -26, -38, -40, -42, -86, -3307, -2997, -3326, -350, -15155, -4062, -351, -3561, -15156, -15157, + -15158, -15159, -3164, -3037, -3803, -5011, -6109, -427, -428, -4837, -5589, -3664, -3665, -5590, -441, -14247, + -14244, -4838, -518, -523, -656, -5339, -720, -726, -767, -795, -796, -812, -15160, -928, -932, -934, -940, + -958, -967, -980, -1125, -1344, -1449, -1521, -1534, -1551, -15161, -1662, -1889, -1942, -1955, -15162, -2082, + -2125, -2127, -13263, -4063, -5122, -6483, -15163, -6746, -4753, -15164, -15165, -2140, -14839, -2145, -15166, + -2387, -2410, -2466, -15167, -2469, -2476, -2478, -2483, -5627 + ], + [0, -2476, -3162, -15168], + [1, 3, 9929], + [0, 9930, 9931, 9932, 5], + [0, -5277, -929, -1437], + [ + 0, -23, -40, -9678, -4964, -518, -521, -15169, -757, -767, -784, -795, -7758, -865, -932, -940, -943, -958, + -966, -967, -968, -974, -1753, -1889, -1890, -1891, -15170, -1896, -1903, -15171, -1906, -1916, -15172, -12060, + -1942, -2125, -2127, -2128, -2131, -2133, -8895, -15173, -2137, -8896, -15174, -2140, -5281, -2214, -2281, + -3085, -2302 + ], + [ + 0, -5298, -6656, -15175, -15176, -15177, -7581, -7582, -6527, -15178, -5069, -3162, -12536, -7764, -4634, + -12217, -8883, -1437 + ], + [1, 3, 9934], + [0, 9935, 9936, 9937, 5], + [0, -523, -1435, -1548, -1646, -2153], + [0, -664, -932, -4628, -1650, -1654, -2330], + [ + 0, -4116, -826, -687, -6999, -9043, -12054, -15179, -1334, -11915, -15180, -9041, -5730, -7085, -11642, -9261, + -7084, -15181, -12578 + ], + [1, 3, 9939], + [0, 0, 9940, 9941, 4], + [ + 0, -518, -632, -1168, -15182, -1194, -1208, -1226, -1238, -1243, -1244, -1252, -7832, -15183, -1899, -2281, + -2282, -2550 + ], + [0, -2649, -15184, -15185, -775, -1521, -3162], + [1, 3, 9943], + [0, 0, 0, 9944, 6], + [0, -2006, -4125, -9800, -4633, -2074, -4634], + [1, 24, 9946], + [0, 25, 9947], + 1731196800000, + [1, 3, 9949], + [0, 9950, 9951, 7, 8], + [ + 0, -15186, -4225, -4228, -15187, -15188, -15189, -4230, -15190, -703, -5342, -15191, -1026, -3649, -1289, + -14857, -1618, -10922, -1619, -5397, -15192, -15193, -2590, -4241, -2088, -4242, -2095, -15194, -15195, -15196, + -12978, -4245, -2218, -12508, -2378, -15197, -2429, -15198, -2548, -2564 + ], + [ + 0, -5048, -409, -426, -5334, -4251, -15199, -3040, -3046, -440, -15200, -9602, -9603, -2634, -2006, -2019, + -2427, -2469, -15201 + ], + [1, 3, 9953], + [0, 9954, 0, 9955, 4], + [0, -12260], + [0, -810, -15202, -15203, -6367, -5896, -13618, -15204, -15205, -2653], + [1, 3, 9957], + [0, 9958, 9959, 204, 4], + [0, -4787, -1864], + [0, -2581, -3037, -8523, -1026, -15206, -1107, -2354, -2892, -2410], + [1, 3, 9961], + [0, 0, 0, 9962, 8], + [0, -2410, -3694, -4004, -4043, -1001], + [1, 3, 9964], + [0, 9965, 37, 9966, 4], + [0, -15207, -2387], + [ + 0, -15208, -15209, -15210, -15211, -15212, -2410, -5210, -3215, -6478, -9471, -15213, -8130, -3756, -8386, + -15214, -3445, -3577 + ], + [1, 3, 9968], + [0, 0, 28, 9969, 10], + [0, -12613, -3098, -3100, -3482, -2634, -1713, -2006, -12612, -12449, -3160, -4119], + [1, 3, 9971], + [0, 108, 28, 9972, 8], + [0, -707, -3098, -3100, -4131, -3482, -2634, -1713, -2006, -4132, -4133, -3160, -4119], + [1, 3, 9974], + [0, 9975, 28, 9976, 5], + [0, -2020], + [0, -3098, -7761, -878, -3100, -3482, -2634, -1713, -2006, -3160, -4119, -7764], + [1, 3, 9978], + [0, 266, 28, 9979, 8], + [0, -3098, -3100, -3482, -2634, -1713, -1779, -1959, -2006, -3160, -4119], + [1, 3, 9981], + [0, 266, 28, 9982, 4], + [0, -15215, -3098, -3100, -3482, -2634, -1713, -2006, -7282, -3160, -4119], + [1, 3, 9984], + [0, 0, 28, 9985, 4], + [0, -3098, -3100, -3482, -2634, -1713, -2006, -15216, -10114, -15217, -3160, -4119], + [1, 3, 9987], + [0, 9988, 9989, 9990, 4], + [0, -1616], + [ + 0, -21, -23, -3204, -40, -42, -3748, -4776, -15218, -3330, -3032, -3037, -427, -428, -932, -940, -958, -960, + -965, -15219, -5863, -1772, -2125, -2410, -2469 + ], + [ + 0, -15220, -1874, -795, -1654, -2469, -1415, -1412, -1710, -11410, -15221, -11100, -4004, -9246, -6863, -3634, + -15222 + ], + [1, 3, 9992], + [0, 9993, 9994, 9995, 6], + [0, -15223, -15224, -15225, -15226, -12846, -15227], + [0, -15228, -3617, -3037, -15229, -15230, -15231, -1004, -2125, -2892, -2410, -2469], + [0, -15227, -1004, -3445, -6324, -3690, -9668, -2410, -3214, -5401], + [1, 3, 9997], + [0, 0, 9998, 9999, 11], + [0, -1763, -10652, -2250, -4004, -15232], + [0, -3162, -11321, -7440, -4865], + [1, 3, 10001], + [0, 10002, 10003, 10004, 5], + [0, -5358, -2427, -5334, -1293, -8913, -12766, -2235, -5356, -12767], + [0, -652, -932, -2083, -1942, -1874, -2094, -2410, -3037, -6648, -12750, -12749, -11167, -15233], + [0, -856, -4147, -5670, -3862, -2083, -12745, -2093, -2427], + [1, 3, 10006], + [0, 10007, 10008, 10009, 5], + [0, -15234, -15235, -15236, -15237, -15238, -15239, -15240, -15241, -15242, -15243, -15244, -15245], + [0, -21, -2388, -2410], + [0, -15246, -3163, -12254, -6324, -3214, -11230, -8043, -15247, -3162], + [1, 3, 10011], + [0, 10012, 0, 93, 11], + [0, -2606, -15248, -682, -15249, -1384, -1967, -1993, -2006, -2019, -2029, -2489], + [1, 3, 10014], + [0, 10015, 0, 93, 10], + [0, -2006, -2019, -1967, -2606], + [1, 3, 10017], + [0, 10018, 0, 10019, 8], + [0, -2387, -1387, -232, -1461], + [0, -1386, -3161, -475, -3162, -3994, -3995, -3996, -752, -3997, -3998], + [1, 24, 10021], + [0, 25, 10022], + 1733616000000, + [0, 25, 10024], + 1733961600000, + [1, 24, 10026], + [0, 25, 10027], + 1734220800000, + [1, 3, 10029], + [0, 0, 10030, 10031, 4], + [ + 0, -2200, -2162, -2834, -2387, -932, -2125, -2127, -2149, -2334, -1753, -1889, -1077, -1942, -620, -767, -2281, + -2410, -3563, -1771, -1891, -6326, -518, -726, -3564, -1547, -6327, -945, -15250, -958, -978, -6331, -3267, + -428, -14014, -3573, -427 + ], + [0, -775, -2162, -3576, -8856, -3110, -4101, -3161, -15251, -11229], + [1, 3, 10033], + [0, 10034, 10035, 10036, 4], + [0, -44, -15252, -15253], + [ + 0, -21, -23, -26, -33, -5585, -38, -39, -40, -43, -3035, -3621, -3037, -528, -534, -539, -571, -15254, -15255, + -633, -664, -665, -12469, -767, -932, -1004, -4652, -1449, -1654, -1788, -2105, -2125, -2228, -2335, -2410, + -2490, -2491, -2501, -2503 + ], + [0, -5801, -3162, -3690, -10810, -15256], + [1, 3, 10038], + [0, 0, 10039, 10040, 11], + [0, -652, -664, -726, -756, -928, -932, -1449, -1544, -1654, -2162], + [0, -3214, -3162, -5270, -5271, -8617], + [1, 3, 10042], + [0, 10043, 10044, 10045, 6], + [0, -1992, -712, -809, -15257, -1548, -682, -15258, -1762, -15259, -15260, -15261, -6640, -2055, -15262], + [0, -4977, -2006, -2019, -3040, -3044, -44, -3052, -15263, -409, -407, -410, -2622, -3024], + [0, -2006, -5253, -3159, -2678, -15264, -15265, -3095, -3098, -3160, -3161, -3100, -3162], + [1, 3, 10047], + [0, 10048, 10049, 93, 4], + [0, -2606, -15248, -15266, -2669, -2670, -682, -1384, -1967, -1993, -2006, -2019, -2489, -15249], + [0, -15267, -15268, -15269], + [1, 3, 10051], + [0, 0, 10052, 10053, 4], + [0, -3473, -1942, -2127, -2128, -5384, -2129], + [0, -3100, -11853, -11851], + [1, 3, 10055], + [0, 10056, 10057, 10058, 4], + [0, -6815], + [0, -409, -3040, -3052, -778, -1071, -1344, -2006, -2019, -2049, -2275, -2376, -8973, -2387, -2410, -2501, -3612], + [0, -6750, -15270, -15271, -15272, -3095, -3576, -3162, -2363, -6750, -3823, -15273, -12606], + [1, 3, 10060], + [0, 10061, 10062, 10063, 10], + [0, -4733, -668, -719, -999, -1077, -1948, -1966, -2177, -2426, -2518, -2528, -2542, -2555], + [0, -15274, -3899, -652, -1107, -1110, -6295, -8065, -1971], + [0, -2682, -15275, -15276, -3162, -5270, -15277, -5271], + [1, 3, 10065], + [0, 10066, 0, 10067, 4], + [0, -1867, -11957, -11964, -15278], + [0, -15279, -3444, -5545, -3262, -856, -15280, -15281], + [1, 3, 10069], + [0, 10070, 10071, 10072, 9], + [ + 0, -15282, -15283, -15284, -31, -15285, -3325, -280, -11671, -469, -719, -7731, -15286, -15287, -5934, -1442, + -10584, -1577, -1645, -1729, -15288, -2115, -10624, -2177, -2205, -2379, -2410 + ], + [0, -932, -959, -969, -973, -1077, -1415, -1448, -1607, -2125, -15289], + [0, -3328, -856, -3262, -1599, -9308], + [1, 3, 10074], + [0, 10075, 10076, 10077, 5], + [ + 0, -6869, -8386, -1805, -623, -668, -999, -1526, -1826, -2387, -1548, -2177, -753, -1966, -2501, -679, -1077, + -2357, -719, -1327, -695, -832, -929, -2043, -5977, -2508, -15290, -2433, -15291, -2044, -15292, -3859, -15293, + -4239, -2505, -15294, -1331, -15295, -15296, -2502, -15297, -15298, -15299 + ], + [0, -7982, -7688, -3052, -3861, -13398, -2052, -13186, -11702, -15300, -15301, -14826, -14779], + [0, -2006, -5371, -2501, -856, -7695, -7696, -858], + [1, 3, 10079], + [0, 10080, 10081, 268, 11], + [0, -2387, -1387, -232], + [ + 0, -1763, -1415, -2006, -932, -2125, -2127, -2375, -1077, -1942, -2019, -2410, -3136, -3037, -3040, -3052, + -3986, -3988, -409, -1419, -3267, -407, -428, -2622, -427 + ], + [1, 3, 10083], + [0, 0, 10084, 10085, 4], + [0, -3136, -427, -428, -753, -756, -784, -932, -1415, -1417, -1424, -1449, -15302, -2127, -2375, -2410], + [ + 0, -12841, -3582, -6989, -5389, -10095, -12523, -2410, -3214, -9682, -3095, -11486, -12121, -5065, -3577, -3264, + -4333, -4334, -15303 + ], + [1, 3, 10087], + [0, 10088, 0, 10089, 4], + [0, -703, -2825, -2690, -1967, -44, -2997, -192], + [0, -2006, -3159, -4217, -15304, -4665], + [1, 3, 10091], + [0, 10092, 0, 10093, 6], + [0, -2690, -1967, -44], + [0, -2006, -3159, -4217, -4101], + [1, 3, 10095], + [0, 10096, 0, 10097, 8], + [0, -703, -2029, -2825, -1967, -44, -3140], + [0, -2006, -3159, -4217, -5260], + [1, 3, 10099], + [0, 10100, 0, 95, 5], + [0, -15305, -15306, -823, -1878], + [1, 3, 10102], + [0, 269, 0, 95, 5], + [1, 3, 10104], + [0, 10105, 10106, 10107, 4], + [0, -469, -2177, -1047, -15310, -15311, -12390, -8802, -1395, -3609], + [0, -6997, -2466, -2469, -757, -1026, -2410, -7982, -1772, -10267], + [ + 0, -15312, -15313, -8902, -3184, -3161, -1168, -3214, -3264, -3482, -1599, -3967, -15314, -15315, -3995, -5372, + -3255, -3256, -15316, -15317, -15318 + ], + [1, 3, 10109], + [0, 0, 10110, 10111, 5], + [0, -865, -8559, -866], + [0, -2006, -2634, -9736, -865], + [1, 3, 10113], + [0, 10114, 10115, 10116, 4], + [0, -2624, -2231, -15319, -2168, -1320, -3606], + [ + 0, -2558, -1415, -1623, -932, -1699, -825, -2501, -1077, -1098, -1942, -767, -1978, -2400, -1424, -2410, -23, + -3136, -3037, -769, -2503, -534, -11747, -1772, -2041, -3046, -3048, -7080, -4049, -15320, -2505, -15321, + -12916, -15322, -1421, -2335, -940, -967, -1419, -2506, -3204 + ], + [0, -2006, -3214, -2501, -10675, -6211, -15323, -1540, -12516, -10589, -12517, -11492], + [1, 3, 10118], + [0, 0, 10119, 10120, 11], + [0, -13324, -1123, -15324], + [0, -15325, -1122, -4058, -3694, -2410, -4258, -3161, -3862], + [1, 3, 10122], + [0, 10123, 10124, 10125, 5], + [ + 0, -1816, -3612, -2466, -15326, -623, -668, -999, -865, -1548, -1872, -2177, -680, -1753, -1821, -2501, -679, + -1077, -1376, -1942, -719, -749, -695, -778, -2410, -2061, -15327, -15328, -635, -5676, -726, -2115, -2275, + -15329, -15330, -15331, -15332, -4236, -2041, -15333, -15334, -15335, -3808, -15336, -15337, -4805, -15338, + -15339, -15340, -15341, -1331, -15342, -2504, -2506, -15343, -5319, -1643, -2502, -15344, -15345, -15346, + -14827, -15347, -1067, -2695 + ], + [0, -1415, -2006, -9056, -2019, -3136, -3037, -3044, -15348, -3048, -15349, -15350, -14826], + [ + 0, -15351, -7643, -15352, -7645, -15353, -15354, -11229, -3690, -6120, -3161, -1334, -4055, -1501, -15355, + -13039, -1791, -11437, -1818, -3691, -5728, -7107, -15356, -5372, -3214, -11878, -12303, -12304, -12301, -12299, + -15357, -15358, -3445, -7696, -15359, -1520, -15360, -2006, -3476 + ], + [1, 3, 10127], + [0, 10128, 10129, 10130, 4], + [0, -23, -14825, -656, -755, -15361], + [0, -2303], + [0, -5049, -3839, -2006, -3103, -3690], + [1, 3, 10132], + [0, 10133, 10134, 10135, 4], + [0, -47, -3223], + [0, -15362], + [0, -3264, -9589, -525, -9588, -14188, -9590], + [1, 3, 10137], + [0, 0, 0, 10138, 4], + [0, -5141, -4601, -4602, -3578, -3445, -754], + [1, 3, 10140], + [0, 10141, 10142, 168, 5], + [0, -809, -713, -15363], + [0, -1344, -2469, -2410, -3037, -411, -2581, -86, -5144, -3664, -3307], + [0, 23, 0, 97, 5], + [1, 3, 10145], + [0, 23, 0, 10146, 9], + [ + 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, + -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, + -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, + -5186, -5187, -5188, -5189, -15364, -15366 + ], + [1, 3, 10148], + [0, 23, 0, 98, 9], + [1, 3, 10150], + [0, 23, 0, 99, 4], + [0, 23, 0, 99, 5], + [1, 3, 10153], + [0, 23, 0, 99, 11], + [1, 3, 10155], + [0, 10156, 10157, 10158, 6], + [ + 0, -3698, -13203, -15369, -15370, -11418, -617, -722, -733, -736, -744, -754, -2762, -930, -1004, -15371, + -15372, -1010, -13106, -5989, -1116, -15373, -1299, -1388, -11121, -1465, -1548, -1641, -1666, -1667, -1676, + -1681, -1744, -1826, -5262, -7223, -2182, -2297, -15374, -2451, -15375, -2531 + ], + [ + 0, -3732, -14740, -4198, -3330, -3733, -4623, -3850, -3044, -14742, -3851, -3037, -8852, -3046, -4204, -999, + -1336, -1722, -2293, -2410, -2469 + ], + [0, -5300, -1959, -15176, -15376, -15377, -5940, -9139, -15378, -6335, -3445, -2512, -1004, -8841], + [1, 3, 10160], + [0, 10161, 0, 271, 9], + [ + 0, -2476, -2362, -753, -928, -1442, -2501, -679, -1582, -778, -1888, -2437, -2481, -2483, -5628, -23, -769, + -1041, -518, -534, -14408, -15379, -2508, -13389, -1908, -15380, -2711, -2505, -748, -1929, -15381, -15382, + -2485, -2718, -1643, -2712, -15383, -731, -15384, -2714, -1814, -2716 + ], + [1, 3, 10163], + [0, 10164, 0, 10165, 6], + [0, -1955, -1600, -7898, -1603, -1601, -2718, -5614], + [0, -856, -3262, -1599, -2476, -2816], + [1, 3, 10167], + [0, 10168, 0, 42, 5], + [0, -2711, -1543, -1582], + [1, 3, 10170], + [0, 10171, 0, 42, 9], + [0, -15380, -1553], + [1, 3, 10173], + [0, 10174, 0, 42, 9], + [0, -15380, -769], + [1, 3, 10176], + [0, 10177, 0, 42, 8], + [0, -1779, -15380], + [1, 3, 10179], + [0, 10180, 0, 42, 5], + [0, -15380, -2718], + [1, 3, 10182], + [0, 10183, 0, 42, 4], + [0, -15380], + [1, 3, 10185], + [0, 10186, 10187, 42, 5], + [0, -668, -929, -1077, -1111, -1125, -1284, -2177, -2362, -4701], + [0, -15385], + [1, 3, 10189], + [0, 10190, 0, 42, 4], + [0, -1548, -2286, -5602, -2287, -15380, -2717, -15383, -2715, -15386, -2713], + [1, 3, 10192], + [0, 10193, 10194, 58, 4], + [0, -15387, -15388, -15389, -15390, -15391], + [ + 0, -664, -1654, -2379, -2501, -21, -23, -5870, -3035, -3136, -3037, -1771, -2503, -3621, -39, -43, -40, -15392, + -15393, -42 + ], + [1, 3, 10196], + [0, 10197, 132, 58, 8], + [0, -15388, -15399, -15400], + [1, 3, 10199], + [0, 10200, 10201, 58, 9], + [0, -1940, -6935, -747, -15401, -15402], + [ + 0, -664, -1654, -932, -753, -2379, -2501, -2376, -21, -778, -2410, -23, -5870, -3035, -3136, -3037, -1637, + -1771, -2503, -3621, -3040, -2275, -15403, -14831, -39, -43, -40, -966, -969, -958, -968, -940, -943, -967, + -974, -42 + ], + [1, 3, 10203], + [0, 10204, 10205, 58, 11], + [0, -2722, -15401, -15402, -15404, -15405, -15406], + [ + 0, -664, -2494, -1654, -932, -4270, -753, -2379, -2501, -1942, -21, -2410, -23, -5870, -3035, -3136, -3037, + -1771, -2503, -3621, -39, -43, -40, -966, -969, -958, -968, -15407, -940, -943, -967, -974, -42 + ], + [1, 3, 10207], + [0, 10208, 132, 58, 11], + [0, -2531, -15388, -15399], + [1, 3, 10210], + [0, 10211, 0, 10212, 6], + [0, -703, -15408], + [0, -15409, -15410, -3162, -6184], + [1, 3, 10214], + [0, 0, 0, 173, 4], + [1, 3, 10216], + [0, 0, 0, 10217, 5], + [0, -475, -3161, -4865, -7243, -3634, -5495], + [1, 3, 10219], + [0, 117, 10220, 10221, 4], + [0, -519, -668, -756, -1788, -2250, -2251], + [0, -5514, -9846, -687, -15411, -7210], + [1, 3, 10223], + [0, 228, 10224, 10225, 5], + [ + 0, -9705, -5686, -4624, -3037, -8890, -11458, -617, -11477, -1168, -12346, -1260, -1412, -15412, -15413, -1452, + -1722, -2125, -2150, -15414, -2173, -2379, -2388, -12348, -2410, -12349, -2819 + ], + [0, -4004, -3634, -11468, -12350, -11467], + [1, 3, 10227], + [0, 0, 10228, 272, 5], + [ + 0, -526, -528, -6104, -558, -6089, -562, -932, -934, -6013, -940, -956, -958, -1059, -1344, -1415, -1534, -1942, + -2125, -2416 + ], + [1, 3, 10230], + [0, 10231, 10232, 10233, 8], + [ + 0, -7226, -15425, -7944, -719, -729, -7949, -1048, -1276, -6343, -7959, -1641, -15426, -2125, -7968, -2359, + -7971, -2425, -7972 + ], + [ + 0, -190, -3035, -4269, -15427, -15428, -3617, -15429, -3713, -3037, -15430, -3628, -15431, -427, -428, -15432, + -664, -665, -749, -932, -940, -964, -966, -967, -999, -1054, -1116, -5487, -1654, -1888, -1942, -7981, -2148, + -2177, -2210, -2211, -7970, -2379, -2410 + ], + [0, -6342, -4865, -7641, -4258, -3100, -9290], + [1, 3, 10235], + [0, 10236, 10237, 273, 4], + [0, -15425, -6343, -7964, -7966, -2125, -2148, -5509], + [0, -664, -665, -1654, -15433], + [1, 3, 10239], + [0, 10240, 10241, 273, 4], + [0, -7226, -1276, -3607, -1641], + [0, -664, -7979, -1004, -1452, -1654, -6347, -2106, -2148], + [1, 3, 10243], + [0, 10244, 10245, 10246, 4], + [0, -1343], + [0, -1445, -1452, -1654, -2198], + [0, -4864, -4865, -2734, -9711, -3634], + [1, 3, 10248], + [0, 0, 10249, 10250, 4], + [0, -526, -527, -15434, -558, -664, -1654], + [0, -656, -6514, -775, -5092], + [1, 3, 10252], + [0, 0, 133, 10253, 4], + [0, -3264, -8034, -3223, -7472, -4846, -6557, -15435], + [1, 3, 10255], + [0, 0, 133, 10256, 5], + [0, -3264, -15436, -8034, -3223, -7472, -4846, -6557, -15435], + [1, 3, 10258], + [0, 0, 133, 10259, 4], + [0, -3264, -8034, -3223, -7472, -4846, -6557], + [1, 3, 10261], + [0, 0, 10262, 10263, 4], + [0, -8096, -14182, -652, -725, -1288, -1292, -1942, -2087, -2094, -2100, -2125, -2322, -2399, -2410, -2427, -2541], + [0, -3264, -8034, -10902, -7472, -4846, -15435, -15437, -6557], + [1, 3, 10265], + [0, 0, 0, 41, 9], + [1, 3, 10267], + [0, 10268, 251, 10269, 4], + [0, -15438], + [0, -712, -5535, -5549, -775], + [1, 3, 10271], + [0, 0, 92, 10272, 5], + [0, -5092, -3264, -12064, -13319, -7205, -1838, -6231], + [1, 3, 10274], + [0, 10275, 88, 10276, 4], + [0, -1016, -15439, -8493], + [0, -3671, -856, -3960, -3262, -1599, -3261, -15440], + [1, 3, 10278], + [0, 0, 10279, 10280, 5], + [0, -1654, -664, -1405], + [0, -775, -12120, -5101, -15441, -3162, -1838, -5572], + [1, 3, 10282], + [0, 0, 10283, 10284, 6], + [0, -756, -1405], + [0, -2265, -4112, -7188, -775, -10310, -3582], + [1, 3, 10286], + [0, 10287, 10288, 10289, 4], + [0, -781], + [0, -652, -928, -932, -1654, -2127, -2232], + [0, -775, -6454, -6684, -1644, -7192, -7193, -15442], + [1, 3, 10291], + [0, 10292, 10293, 10294, 4], + [0, -508], + [0, -932, -940, -967, -1942, -2319], + [0, -5829, -3215, -6747, -687, -3957, -4377, -6836, -15443], + [1, 3, 10296], + [0, 10297, 0, 10298, 8], + [0, -492, -493, -15444, -495, -722, -1122, -1123, -1439, -7679], + [0, -15445, -3445, -1105, -15446], + [1, 3, 10300], + [0, 10301, 0, 10302, 4], + [0, -1439, -1848, -7679], + [0, -15445, -3445, -5800, -8904], + [1, 3, 10304], + [0, 10305, 0, 10306, 4], + [0, -722, -1439, -1645, -1848, -7679, -15447], + [0, -15445, -3445, -7660], + [1, 3, 10308], + [0, 10309, 0, 10310, 4], + [0, -15448, -1371, -1469, -1645], + [0, -15445, -3445, -15449, -15450], + [1, 3, 10312], + [0, 10313, 0, 10314, 5], + [0, -492, -493, -15444, -495, -722, -1122, -1123, -1439, -1848, -7679], + [0, -15445, -3445, -1105], + [1, 3, 10316], + [0, 10317, 0, 10318, 4], + [0, -492, -493, -15444, -495, -1439, -1848, -7679], + [0, -15445, -3445, -7661], + [1, 3, 10320], + [0, 0, 0, 274, 4], + [1, 3, 10322], + [0, 10323, 0, 274, 10], + [0, -1848], + [1, 3, 10325], + [0, 0, 10326, 10327, 9], + [0, -3136, -3037, -756, -1107, -1415, -1442, -15451, -2375, -2388, -2389, -12348, -2410], + [0, -14233, -6747, -3215, -14867, -3162, -15423, -9918, -11321, -1819, -7572, -4865, -15452], + [1, 3, 10329], + [0, 10330, 10331, 10332, 6], + [0, -1610, -1955, -15453, -15454, -15455, -4096, -3546], + [ + 0, -1415, -523, -1344, -1520, -932, -1650, -2125, -2127, -2286, -784, -679, -12844, -1942, -5002, -767, -533, + -23, -722, -1534, -1539, -1771, -632, -5977, -3983, -40, -959, -15456, -15457, -2129, -32, -958, -2143, -2138, + -940, -967, -2131, -15458, -740, -2137 + ], + [0, -4100, -3671, -856, -15459, -3262], + [1, 3, 10334], + [0, 10335, 10336, 10337, 10], + [ + 0, -1805, -668, -2550, -729, -15460, -2757, -910, -1077, -1098, -1582, -15461, -1540, -2187, -2433, -9229, + -15462, -731 + ], + [0, -519, -754, -999, -1344, -932, -2125, -2127, -1534, -15463, -2251, -8177, -15464], + [0, -2757, -4100, -3671, -856, -15459, -3262, -687], + [1, 3, 10339], + [0, 10340, 0, 10341, 5], + [0, -15465], + [0, -5092, -2759, -1437, -3162, -13614], + [1, 3, 10343], + [0, 10344, 10345, 10346, 4], + [0, -14393, -1548, -2029], + [ + 0, -21, -23, -40, -41, -533, -708, -915, -916, -932, -940, -943, -15466, -958, -966, -968, -969, -974, -1415, + -1942, -15467, -1967, -1992, -2006, -2019, -2052 + ], + [0, -915, -1415, -4045, -8911, -1950, -674, -5845, -3634, -5119, -4004], + [1, 3, 10348], + [0, 10349, 0, 10350, 5], + [0, -464, -15468, -615, -15469, -2387, -2536], + [ + 0, -5409, -510, -15470, -15471, -15472, -15473, -8676, -15474, -15475, -7347, -6656, -6527, -1594, -11872, + -3162, -15476, -15477, -1838, -1961, -9591, -15478, -5408 + ], + [1, 3, 10352], + [0, 0, 14, 10353, 9], + [ + 0, -5559, -9692, -3264, -8034, -3223, -15479, -7723, -8472, -3590, -3110, -9681, -5846, -15480, -2544, -15481, + -15482 + ], + [1, 3, 10355], + [0, 10356, 10357, 10358, 5], + [0, -674, -15483, -929, -572, -529, -569, -1077, -15484, -1610, -1646, -14584], + [0, -526, -539, -549, -566, -708, -15485, -932, -1654, -1788], + [ + 0, -1446, -3690, -10855, -856, -6948, -15486, -6950, -15487, -6949, -15488, -6951, -15489, -11798, -15490, + -6952, -15491, -15492 + ], + [1, 3, 10360], + [0, 0, 55, 10361, 4], + [0, -932, -5208, -3784, -3862, -9420, -11315, -8199, -4100, -856], + [1, 3, 10363], + [0, 0, 10364, 10365, 4], + [0, -1116, -2251, -2322], + [0, -856, -10858, -15493, -10925, -15494, -15411, -3966], + [1, 3, 10367], + [0, 87, 275, 10368, 4], + [0, -9590, -9589, -9588, -2444, -3590, -3264, -1391, -9682], + [1, 3, 10370], + [0, 87, 275, 10371, 6], + [0, -9590, -9589, -9588, -2444, -3590, -3264, -775, -3585, -1838], + [1, 3, 10373], + [0, 10374, 10375, 10376, 4], + [0, -5334, -2742, -9596, -1968, -2235, -9584, -9585], + [0, -3705, -3037, -652, -1459, -1839, -1942, -2094, -2100, -2399, -2410, -2541], + [0, -9590, -9589, -9588, -2444, -3590, -3264, -1839, -3272, -10919], + [1, 3, 10378], + [0, 87, 92, 10379, 5], + [0, -9590, -9589, -9588, -2444, -3590, -3264, -3830, -9682, -15495, -15496, -15497], + [1, 3, 10381], + [0, 10382, 10383, 10384, 8], + [0, -2595], + [0, -985, -1637, -1942, -2320, -2322], + [0, -3272, -3264, -1838, -6231], + [1, 3, 10386], + [0, 0, 10387, 10388, 5], + [0, -3037, -652, -2586, -1288, -1292, -1729, -1942, -2094, -2100, -2399, -2410, -2541], + [0, -3264, -9703, -6818, -6557, -9682, -15498, -5387, -5388], + [1, 3, 10390], + [0, 10391, 0, 10392, 5], + [0, -812], + [ + 0, -1334, -1342, -1501, -1004, -1030, -12868, -11998, -15499, -15500, -15501, -15502, -12868, -11994, -15503, + -3445 + ], + [1, 3, 10394], + [0, 0, 130, 10395, 4], + [0, -775, -3209, -15504, -1889], + [1, 3, 10397], + [0, 276, 10398, 277, 4], + [0, -9848, -2776], + [1, 3, 10400], + [0, 276, 10401, 277, 6], + [0, -2774, -15505, -9848, -2776], + [1, 3, 10403], + [0, 0, 0, 10404, 4], + [0, -525, -2006, -1368, -3161, -4729, -9850, -3264, -9851, -3844, -5092, -4865, -2127, -15506, -15507, -5272], + [1, 3, 10406], + [0, 0, 10407, 10408, 4], + [0, -824, -1168, -784, -1889, -1243, -15508, -1238, -1270, -15509], + [0, -775, -3576, -3577, -3161, -3578, -15510], + [1, 3, 10410], + [0, 10411, 10412, 10413, 4], + [0, -1666, -2161], + [0, -510, -1127, -1138, -1145, -1148, -1162, -1446, -1548, -2105], + [0, -620, -15511, -15512, -856, -1446, -7674, -4101], + [1, 3, 10415], + [0, 0, 10416, 10417, 6], + [0, -9705, -3037, -11458, -1412, -1452, -2173, -2388, -12348, -2410, -12349], + [0, -4004, -3634, -11468, -12350, -11467, -1412], + [1, 3, 10419], + [0, 10420, 10421, 10422, 5], + [0, -10041, -13980, -3740, -1427, -1950, -2375], + [ + 0, -15513, -4, -5, -6, -7, -8, -9, -10, -12, -13, -14, -23, -40, -86, -9404, -3244, -190, -10041, -4020, -237, + -3048, -3136, -3037, -3199, -427, -428, -15514, -533, -668, -10525, -740, -767, -4805, -932, -940, -958, -959, + -960, -967, -999, -1077, -15515, -1107, -1110, -1344, -1415, -1419, -1449, -1868, -1942, -2125, -2153, -2177, + -2387, -2392, -2400, -2410, -2411, -2567 + ], + [0, -1415, -2410, -475, -3634], + [1, 3, 10424], + [0, 10425, 10426, 10427, 5], + [0, -2699, -656, -668, -679, -719, -729, -6798, -1805, -1906, -1907, -2213, -2218, -12979, -2433, -2531], + [ + 0, -23, -162, -3778, -163, -237, -350, -351, -15516, -367, -7043, -406, -407, -409, -410, -5039, -3136, -8334, + -3037, -3040, -3052, -9947, -4764, -4204, -427, -428, -440, -15517, -4734, -518, -767, -932, -940, -943, -958, + -965, -968, -969, -1415, -1428, -1521, -1753, -1771, -1889, -14336, -15518, -1942, -2006, -2019, -2029, -2125, + -2127, -4063, -2132, -6483, -2162, -2278, -2318, -2410, -2466, -15519 + ], + [0, -3634, -1415, -3100, -7566, -812, -15520], + [1, 3, 10429], + [0, 10430, 10431, 10432, 8], + [0, -1403, -15521], + [0, -15522, -15523, -1202, -1276, -1654, -3261], + [ + 0, -9198, -6515, -812, -3671, -856, -6899, -3960, -3262, -1276, -4187, -8453, -4676, -15524, -15525, -1548, + -5545, -1599, -3110, -3261, -15440 + ], + [1, 3, 10434], + [0, 10435, 10436, 10437, 10], + [0, -15526], + [0, -1586, -1729, -2337], + [0, -1586, -15527, -9409, -3844, -3445], + [1, 3, 10439], + [0, 10440, 10441, 10442, 8], + [0, -10869], + [0, -3037, -652, -1638, -1942, -2094, -2100, -2399, -2410, -2541], + [0, -1638, -15528, -15529, -6818, -7724, -15530, -3264, -4329, -1599, -2427], + [1, 3, 10444], + [0, 0, 0, 10445, 4], + [0, -1638, -2444, -3590, -3264, -6422], + [1, 3, 10447], + [0, 0, 0, 10448, 10], + [0, -1638, -2444, -3590, -3264, -6818, -6557], + [1, 3, 10450], + [0, 0, 10451, 10452, 4], + [0, -6874, -1127, -1452, -1666, -2525, -2416, -10264, -1154, -15531, -1149, -1136, -1144, -1148], + [0, -2442, -3162, -9918, -15423, -6659, -14867, -4865, -9318, -15532, -15533], + [1, 3, 10454], + [0, 10455, 10456, 10457, 4], + [0, -7177], + [0, -1415, -932, -2375, -1942, -2410, -3136, -3037, -7178, -940, -428, -427], + [0, -15534, -15535, -775], + [1, 3, 10459], + [0, 10460, 92, 10461, 6], + [0, -4231, -2738, -2739, -10909, -15536, -15537, -15538], + [0, -1838, -3264, -7472, -4846, -8034, -3223], + [1, 3, 10463], + [0, 0, 0, 10464, 4], + [0, -1889, -9300, -3756, -9339, -2006, -775, -15539], + [1, 3, 10466], + [0, 10467, 130, 10468, 5], + [0, -2773], + [0, -775, -3209, -1889], + [1, 3, 10470], + [0, 0, 10471, 10472, 9], + [ + 0, -23, -40, -15540, -4690, -15541, -932, -1412, -1471, -1475, -1476, -1479, -1481, -1486, -1491, -11943, -1970, + -1978, -2127, -2128, -3571, -2139, -2140, -10312, -4881 + ], + [0, -9407, -1978, -1874, -4864, -15542, -15543, -4902, -3634, -11468, -1970, -11467, -4881, -15221], + [1, 3, 10474], + [0, 10475, 10476, 10477, 9], + [0, -567, -1275, -1967], + [0, -633, -634, -668, -824, -1168, -1179, -1205, -1243, -15544, -1262, -1266, -1632, -15545, -2006, -2019, -2463], + [0, -2006, -3159, -2319, -15546, -2363, -15547, -1275, -3162], + [1, 3, 10479], + [0, 10480, 10481, 10482, 8], + [ + 0, -15548, -303, -15549, -304, -4360, -6448, -469, -470, -668, -680, -728, -812, -1125, -1353, -1442, -5265, + -1641, -1789, -1790, -1816, -1966, -2177, -2205, -2223, -3610, -4002, -7982, -15550, -2426, -5721 + ], + [ + 0, -2581, -86, -3307, -4368, -15551, -11765, -15552, -350, -4062, -351, -3561, -3198, -3660, -3713, -3735, + -3199, -15553, -15554, -3664, -13376, -1344, -1498, -1722, -4362, -5263, -1942, -2127, -6483, -2392, -2400, + -2410, -2469 + ], + [0, -3690, -489, -11768, -856, -11148, -11773, -1789, -3438, -11772, -11769, -11771, -11770, -11410, -4328, -4847], + [1, 3, 10484], + [0, 0, 10485, 10486, 11], + [ + 0, -5295, -409, -3136, -3040, -3052, -13529, -427, -428, -757, -825, -932, -940, -967, -969, -970, -1103, + -15555, -1415, -15556, -1637, -15302, -15557, -1942, -2006, -2019, -13531, -2214, -2375, -2410, -15558 + ], + [0, -2006, -12474, -3159, -8597, -13241, -15559, -712, -3577, -15560, -15273, -2012, -4666, -11876, -4665, -15561], + [1, 3, 10488], + [0, 10489, 10490, 10491, 4], + [0, -2594], + [0, -40, -41, -3040, -915, -916, -1415, -1992, -2052, -2127, -2128, -2131, -2137], + [0, -2442, -3162, -9918, -15423, -6659, -14867, -4865, -15562, -15563, -9318, -6106, -4000], + [1, 3, 10493], + [0, 0, 10494, 10495, 4], + [ + 0, -86, -3037, -3040, -3052, -3075, -427, -9700, -932, -940, -9106, -958, -965, -967, -968, -969, -1344, -1415, + -1534, -1637, -1942, -1952, -2006, -2019, -2044, -2046 + ], + [0, -2006, -9843, -3122, -2043, -2044, -15564, -2634], + [1, 3, 10497], + [0, 0, 10498, 10499, 4], + [ + 0, -1788, -1449, -1471, -1654, -2006, -2074, -2210, -507, -932, -1548, -1940, -2334, -4258, -708, -753, -1958, + -2501, -589, -2019, -15565, -2410, -23, -3037, -1482, -2040, -3040, -534, -11472, -1492, -50, -1025, -3052, -40, + -3062, -969, -2052, -15566, -406, -1483, -1475, -1487, -1479, -14780, -428, -5030 + ], + [0, -5922, -6439, -2006, -7378, -15567, -821], + [1, 3, 10501], + [0, 0, 0, 10502, 4], + [0, -2034, -3162, -5270, -5271, -7084, -6656, -14311, -15176, -15568, -6528, -4100], + [1, 3, 10504], + [0, 0, 10505, 10506, 4], + [0, -44, -3040, -3141, -2006, -2034, -2410], + [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -15071, -13615, -15569, -6527, -15570], + [1, 3, 10508], + [0, 94, 10509, 10510, 5], + [0, -528, -932, -933, -940, -958, -962, -967, -969, -1942, -15571], + [ + 0, -2034, -3159, -12567, -2006, -3162, -5270, -3160, -1959, -15572, -15573, -15574, -10677, -15575, -15576, + -6716, -5176 + ], + [1, 3, 10512], + [0, 10513, 10514, 10515, 4], + [0, -798, -15577, -799, -801, -1967], + [ + 0, -15578, -4757, -6263, -4754, -15579, -528, -533, -14782, -807, -932, -943, -958, -966, -968, -969, -15580, + -974, -1344, -1415, -1534, -1942, -1952, -2006, -2034, -15571, -2052 + ], + [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -9472, -6581, -14497, -797], + [1, 3, 10517], + [0, 10518, 10519, 10520, 6], + [0, -997], + [0, -3157, -932, -12566], + [0, -2034, -3159, -12567, -2006, -3163, -3162, -5270, -5271, -3160, -10028, -15581, -15582], + [1, 3, 10522], + [0, 10523, 10524, 10525, 8], + [0, -2798, -2489], + [ + 0, -15583, -21, -23, -3204, -39, -40, -6056, -41, -161, -163, -2997, -350, -351, -3561, -409, -2622, -3040, + -528, -533, -767, -932, -940, -956, -959, -968, -969, -970, -1059, -11942, -1103, -15584, -1415, -15302, -1942, + -1952, -2006, -2019, -15585, -2052, -2125, -2127, -2128, -2140, -2410 + ], + [0, -2006, -2804, -12051, -3095, -7582, -3821, -3822], + [1, 3, 10527], + [0, 10528, 10529, 10530, 8], + [0, -15586, -2730, -682], + [ + 0, -15587, -5295, -406, -407, -409, -15588, -3059, -3037, -3040, -3052, -440, -3899, -795, -1449, -2910, -2006, + -2019, -2214, -2892, -2387, -2410, -2469 + ], + [0, -2006, -3576, -4126, -3162, -12129], + [1, 3, 10532], + [0, 10533, 10534, 10535, 10], + [0, -2387, -15589], + [0, -15590, -5295, -2214, -2006, -2019], + [0, -2006, -5553, -775], + [1, 3, 10537], + [0, 0, 10538, 10539, 4], + [0, -509, -1654, -1939], + [0, -775, -712, -15559, -5554], + [1, 3, 10541], + [0, 10542, 0, 77, 5], + [0, -2869, -424, -15591, -15592, -15593, -15594, -15595, -15596, -15597, -15598, -15599, -15600, -15601], + [1, 3, 10544], + [0, 0, 10545, 272, 5], + [ + 0, -23, -40, -42, -86, -3307, -3326, -15155, -3561, -3266, -3136, -3037, -427, -428, -441, -7465, -528, -533, + -8349, -726, -767, -932, -943, -958, -966, -968, -980, -1103, -1344, -1392, -1415, -1419, -1534, -2125, -2127, + -2142, -2410, -2478 + ], + [1, 3, 10547], + [0, 0, 10548, 259, 8], + [ + 0, -3800, -684, -748, -778, -1041, -3544, -1643, -1942, -2116, -2162, -2163, -2376, -2410, -2437, -2501, -2503, + -2508 + ], + [1, 3, 10550], + [0, 33, 10551, 10552, 4], + [0, -5295, -2214, -407, -409, -15590, -1419], + [0, -2006, -9080, -15602, -15603, -15604], + [1, 3, 10554], + [0, 10555, 10556, 10557, 6], + [0, -15605, -2387], + [0, -5295, -2214, -15590, -15606, -916, -2006, -2019], + [0, -15607, -2006, -15608], + [1, 3, 10559], + [0, 10560, 10561, 10562, 5], + [0, -753, -44, -15609, -15610], + [ + 0, -1521, -2299, -2501, -778, -2410, -23, -1522, -2503, -534, -2275, -15611, -2508, -40, -2301, -2505, -42, -38, + -535, -3362, -26, -36, -35 + ], + [0, -4000, -812, -3162], + [1, 3, 10564], + [0, 0, 10565, 10566, 10], + [0, -3037, -4371, -2447, -2466], + [0, -2466, -3161, -8113], + [1, 3, 10568], + [0, 0, 10569, 10570, 5], + [ + 0, -527, -534, -559, -767, -778, -1041, -1743, -2680, -2163, -15612, -2275, -2476, -2481, -2483, -2484, -2485, + -2501, -2505 + ], + [0, -11853, -11851, -15613, -15614, -15615, -15616, -15617, -3100, -15618], + [1, 3, 10572], + [0, 10573, 0, 271, 8], + [0, -653, -914, -2710, -15380, -2433, -2719, -3546], + [1, 3, 10575], + [0, 0, 10576, 10577, 5], + [ + 0, -21, -23, -26, -36, -40, -42, -3330, -15619, -3136, -3037, -6630, -427, -428, -527, -533, -535, -932, -934, + -940, -958, -967, -1415, -5133, -1942, -2174, -2410 + ], + [0, -1415, -1001, -4116, -510, -5867, -1961, -4868, -3634, -5119], + [1, 3, 10579], + [0, 10580, 10581, 10582, 5], + [0, -11458, -2173], + [0, -9705, -11477, -1168, -12346, -1412, -1888, -15414, -2410], + [0, -3634, -11468, -12350, -11467, -5769], + [1, 3, 10584], + [0, 10585, 10586, 10587, 4], + [0, -464, -668, -824, -1107, -1371, -1646, -1980, -2105, -2125, -2177, -2536], + [ + 0, -5682, -3711, -15620, -3036, -11697, -9705, -8566, -5686, -3037, -12344, -8852, -8890, -11458, -3199, -11343, + -11477, -1168, -12346, -1412, -2150, -2173, -2410 + ], + [0, -475, -4004, -3634, -1970, -11468, -12350, -11467, -2173], + [1, 3, 10589], + [0, 117, 55, 10590, 4], + [ + 0, -2265, -7472, -4112, -6730, -13460, -6787, -13461, -13462, -13463, -13465, -5514, -5559, -5563, -687, -3958, + -3974, -4000, -13466, -13467, -13468, -13469, -13470 + ], + [1, 3, 10592], + [0, 169, 10593, 10594, 5], + [0, -3037, -928, -15621, -1496, -15622, -2410, -2447], + [0, -15623, -9669, -3161, -9670, -8615, -1334, -3690], + [1, 3, 10596], + [0, 10597, 0, 10598, 8], + [0, -1460, -15624, -1442, -3241], + [0, -15279, -15625, -727, -856, -15280, -15281], + [1, 3, 10600], + [0, 0, 10601, 278, 6], + [0, -664, -3035, -3037, -15626], + [1, 3, 10603], + [0, 10604, 0, 95, 10], + [0, -15631, -15632, -823, -1878], + [1, 3, 10606], + [0, 39, 0, 10607, 5], + [0, -2006, -3159, -4217, -3694], + [0, 23, 0, 98, 4], + [0, 23, 0, 99, 6], + [1, 3, 10611], + [0, 10612, 10613, 10614, 4], + [0, -15633, -10576], + [0, -5859, -633, -13719, -2322], + [0, -7581, -7582, -7580, -7762, -15634, -5177, -15635, -3100, -633], + [1, 3, 10616], + [0, 10617, 10618, 10619, 4], + [ + 0, -15636, -15637, -15638, -15639, -15640, -640, -668, -671, -865, -866, -997, -1026, -14636, -1098, -1116, + -1353, -1376, -7408, -1460, -15641, -15642, -5895, -1958, -2177, -2193, -2331, -2410, -15643, -15644, -15645 + ], + [0, -2476, -15646, -15647, -15648, -15649], + [0, -2830, -15650, -3161], + [1, 3, 10621], + [0, 10622, 10623, 10624, 9], + [0, -44, -15651], + [ + 0, -1415, -2162, -1344, -2006, -915, -932, -2501, -1942, -767, -2019, -21, -778, -2095, -2410, -23, -1534, + -1771, -2163, -2503, -3040, -534, -2275, -15652, -15653, -4227, -15654, -4749, -40, -13427, -41, -969, -358, + -15655, -940, -962, -967, -1419, -42, -4757, -15656, -4758, -428, -4762, -38, -427, -12712, -15045 + ], + [0, -2006, -3095, -15657, -13652, -15658, -3162, -15106, -2410, -15659, -15660], + [1, 3, 10626], + [0, 10627, 10628, 7, 4], + [0, -668, -695, -719, -1610, -6294, -2177, -15661], + [0, -3802, -11346, -3037, -3199, -15662], + [1, 3, 10630], + [0, 10631, 10632, 7, 4], + [ + 0, -15663, -2564, -703, -834, -15664, -2303, -2466, -461, -623, -812, -4245, -5358, -743, -783, -5036, -2083, + -2177, -2814, -680, -5034, -928, -15665, -15666, -1442, -3447, -1827, -1966, -15667, -15668, -3535, -3027, + -15669, -1864, -10430, -2422, -15670, -15671, -5113, -2654, -3545, -15672, -1321, -1588, -2551, -989, -15673, + -8294, -3649, -14335, -15674, -2429, -15675, -15676, -15677, -8882, -4785, -3190, -4288, -15678, -6332, -3459, + -15679, -15680 + ], + [ + 0, -9740, -2162, -2127, -2426, -2469, -674, -2427, -15681, -15206, -15682, -2410, -5334, -1002, -2089, -3198, + -13046, -12145, -3199, -15683, -6327, -3660, -3735, -5204, -1736, -3983, -8523, -5114, -9602, -15684, -3712, + -9146, -2084, -15685, -15686 + ], + [1, 3, 10634], + [0, 10635, 0, 7, 5], + [0, -710, -15687, -1813, -2416], + [1, 3, 10637], + [0, 10638, 10639, 10640, 10], + [0, -714, -1077, -1376], + [0, -932, -959, -1415], + [0, -3871, -3262, -3976, -687, -11487], + [1, 3, 10642], + [0, 0, 10643, 10644, 10], + [ + 0, -350, -351, -668, -910, -932, -940, -958, -15688, -6099, -1343, -1344, -1534, -1654, -3446, -1942, -2125, + -2127, -2131, -15689, -2234, -2323, -10988 + ], + [0, -3108, -3110, -5889], + [1, 3, 10646], + [0, 0, 10647, 7, 8], + [0, -427, -428, -932, -935, -940, -948, -958, -962, -967, -969, -970, -1344, -1534, -1942, -2006, -2410], + [1, 3, 10649], + [0, 10650, 10651, 10652, 4], + [0, -15690], + [0, -3621, -823, -1654], + [0, -3578, -4004, -4043, -15691, -1654, -3161], + [1, 3, 10654], + [0, 0, 10655, 10656, 4], + [ + 0, -5295, -3136, -427, -428, -15692, -10529, -13751, -712, -932, -940, -967, -1107, -1415, -1942, -2127, -2140, + -2142, -2214, -2355, -2375, -2379, -2387, -2410 + ], + [ + 0, -712, -3215, -5845, -13241, -15559, -5549, -12065, -15693, -12067, -1510, -15694, -12434, -775, -15695, + -4665, -15696, -15697, -1644, -15698 + ], + [1, 3, 10658], + [0, 106, 10659, 280, 6], + [ + 0, -15587, -86, -3307, -2845, -4646, -3617, -3136, -3037, -427, -428, -932, -940, -1344, -1415, -1942, -2091, + -2375, -2410 + ], + [0, 23, 0, 97, 8], + [1, 3, 10662], + [0, 10663, 10664, 10665, 8], + [ + 0, -6332, -6326, -6329, -15702, -5334, -3660, -4251, -2854, -15703, -2586, -1288, -1292, -1294, -1349, -1442, + -14511, -1588, -15704, -10749, -5348, -2918, -2083, -4262, -5353, -2422, -2427, -2429, -5358 + ], + [0, -3983, -3037, -3664, -2834, -15705, -2469], + [0, -3671, -856, -2834, -15706, -15707], + [1, 3, 10667], + [0, 10668, 10669, 280, 4], + [0, -1004, -2080], + [ + 0, -15587, -86, -3307, -2841, -2845, -4646, -3617, -3136, -3037, -427, -428, -932, -940, -1344, -1415, -1942, + -2091, -2375, -2410 + ], + [1, 3, 10671], + [0, 10672, 10673, 10674, 4], + [0, -2080, -2379], + [0, -86, -3307, -4646, -3617, -3136, -3037, -427, -428, -668, -932, -940, -1344, -1415, -1942, -2091, -2375, -2410], + [0, -15699, -3967, -2410, -15700, -15701, -3161, -11894, -3445, -3482], + [1, 3, 10676], + [0, 23, 0, 97, 4], + [0, 23, 0, 98, 11], + [1, 3, 10679], + [0, 262, 10680, 10681, 4], + [0, -262, -4838], + [0, -2476, -2486, -4634, -2851, -15708, -15709, -12704, -3690, -7864, -9069, -2410, -3018, -8038, -9594], + [1, 3, 10683], + [0, 10684, 10685, 151, 5], + [0, -15710, -192, -15711], + [ + 0, -41, -15712, -15713, -407, -409, -410, -3040, -3052, -440, -703, -2006, -2019, -2042, -2044, -2113, -3820, + -15714, -727 + ], + [1, 3, 10687], + [0, 10688, 10689, 10690, 8], + [0, -2856], + [0, -2834, -999, -15715], + [0, -15707, -15716, -856, -15717, -4245, -15718, -15706], + [0, 0, 0, 10692, 5], + [0, -15318, -15719, -3445], + [1, 3, 10694], + [0, 10695, 10696, 10697, 9], + [0, -15717], + [0, -4251, -4231, -9602, -2090, -2098, -2101, -4245, -2427, -5358, -15715], + [0, -15716, -856, -15717, -4245, -15718], + [1, 3, 10699], + [0, 10700, 10701, 10702, 8], + [0, -14800, -14801, -820, -1002, -2400], + [0, -15720, -14804, -3311, -3312, -652, -14806, -2410], + [0, -14808, -4187, -2444, -3966, -4865, -3445, -3100, -507, -4004, -664, -14809, -14810], + [1, 3, 10704], + [0, 0, 10705, 10706, 5], + [0, -600, -633, -756, -1405, -1654, -2198, -2416], + [0, -8472, -2544, -7723, -14242, -3962, -7107, -5559, -6422, -7724, -2451, -3264, -775, -6138, -14672], + [1, 3, 10708], + [0, 10709, 0, 10710, 5], + [0, -15721], + [ + 0, -3843, -3118, -14066, -2006, -3100, -3577, -3445, -4725, -3578, -4865, -3214, -3756, -2410, -3966, -3967, + -3482, -15722, -5260 + ], + [1, 3, 10712], + [0, 10713, 0, 73, 9], + [0, -2984, -2885, -5766, -2400], + [1, 3, 10715], + [0, 269, 0, 95, 10], + [1, 3, 10717], + [0, 10718, 0, 77, 4], + [0, -424, -2704, -2826, -2863, -2706, -2707, -2902, -2903, -2940, -2708], + [1, 3, 10720], + [0, 0, 0, 10721, 4], + [ + 0, -3843, -3118, -14066, -2006, -3100, -3577, -3445, -4725, -3578, -4865, -3214, -3756, -2410, -3966, -3967, + -3482, -15724, -5260 + ], + [0, 23, 0, 97, 6], + [1, 3, 10724], + [0, 10725, 0, 246, 4], + [ + 0, -2531, -1107, -2624, -2550, -2177, -1961, -578, -719, -1384, -2166, -481, -533, -12547, -1624, -2516, -12548, + -1950, -2041, -458, -12550, -11463, -12551, -9870, -2082, -12552, -1421, -12553, -12554, -12555, -12556, -12557, + -12559, -12560, -15725 + ], + [1, 3, 10727], + [0, 10728, 0, 77, 10], + [ + 0, -2862, -424, -2976, -2872, -2705, -2853, -2850, -2827, -2848, -2849, -2828, -15726, -15727, -2865, -2703, + -2975, -15728, -2846, -15729, -2847, -2842, -15730, -15731, -2868, -2996, -2866 + ], + [1, 3, 10730], + [0, 10731, 10732, 268, 5], + [0, -2387, -2686], + [ + 0, -2006, -932, -2125, -2127, -1942, -2019, -2410, -3037, -3040, -2043, -3052, -2044, -15732, -3986, -3988, + -3075, -3267, -428, -427 + ], + [1, 3, 10734], + [0, 10735, 10736, 10737, 9], + [0, -15733, -15734, -15735, -617, -1004, -15736, -1338, -2520, -2558], + [0, -15737, -15738, -15739, -15740, -15741, -3617, -4203, -1683, -2293], + [0, -15742, -7661, -15743, -15744, -15745, -3445], + [1, 3, 10739], + [0, 23, 0, 98, 5], + [1, 3, 10741], + [0, 0, 10742, 10743, 4], + [0, -509, -1654], + [0, -2873, -5514, -712, -5535, -668, -775, -15559, -5549, -15746], + [1, 3, 10745], + [0, 10746, 10747, 10748, 10], + [0, -4843], + [0, -3037, -3040, -3052, -440, -2634, -2006, -2019, -2466, -6859, -2469, -4842], + [0, -3690, -856, -9736, -1713, -3438, -4847], + [1, 3, 10750], + [0, 10751, 0, 10752, 5], + [0, -1439, -7679, -722, -15447], + [0, -15318, -15719, -3445, -7660], + [1, 3, 10754], + [0, 0, 10755, 10756, 4], + [0, -8096, -652, -1942, -2094, -2100, -2125, -2322, -2399, -2410, -2541], + [0, -775, -3264, -5092, -3578, -6184, -13270, -5899, -9299], + [1, 3, 10758], + [0, 10759, 10760, 285, 10], + [0, -1313, -2564], + [ + 0, -15747, -86, -3307, -4835, -15748, -3036, -3037, -427, -428, -4627, -928, -932, -934, -940, -15749, -948, + -958, -967, -1107, -1344, -1534, -1942, -15750, -2125, -2383, -2392, -2410 + ], + [1, 3, 10762], + [0, 10763, 10764, 285, 4], + [0, -679, -2877], + [ + 0, -502, -2392, -1107, -1344, -932, -2125, -928, -1942, -2410, -3036, -3037, -1534, -15748, -2383, -86, -15750, + -958, -4627, -940, -967, -428, -934, -3307, -427, -948, -15749 + ], + [1, 3, 10766], + [0, 10767, 10768, 10769, 6], + [ + 0, -2531, -469, -2392, -5193, -1867, -2446, -649, -764, -15753, -2426, -680, -1646, -2694, -823, -1043, -11121, + -1878, -15754, -1354, -1340, -11964, -1101, -1997, -14221, -15755, -14032, -1851, -2160, -15756, -15757, -8274 + ], + [ + 0, -2193, -2125, -2127, -928, -4204, -749, -767, -3738, -15758, -5686, -5363, -2014, -11433, -2132, -4049, + -15759, -15760, -15761, -15762 + ], + [0, -15354, -3690, -7643, -15763, -11229, -3161, -15764, -11878, -3214, -9736, -3966, -2879, -2006, -15359, -2410], + [1, 24, 10771], + [0, 25, 10772], + 1743292800000, + [1, 3, 10774], + [0, 10775, 10776, 10777, 9], + [0, -15765, -15766, -15767, -15768, -15769], + [ + 0, -40, -15770, -15771, -15772, -3326, -350, -351, -3561, -3048, -3037, -15773, -427, -12837, -428, -518, -534, + -558, -726, -753, -756, -4809, -15774, -932, -958, -960, -5863, -1077, -1103, -3566, -15775, -15776, -1344, + -15777, -15778, -1771, -15779, -1891, -15780, -15781, -15782, -2127, -8895, -4753, -15783, -8896, -2140, -2142, + -2144, -2162, -5896, -15784, -5013, -2387, -2388, -15785, -2410, -8564 + ], + [ + 0, -12613, -15786, -12449, -12898, -2363, -11321, -3162, -2006, -2476, -475, -1940, -13615, -13616, -13613, + -15787 + ], + [1, 3, 10779], + [0, 0, 10780, 10781, 4], + [0, -50, -2410, -2466, -4840, -6859], + [ + 0, -15415, -15416, -15788, -15417, -15418, -11853, -10655, -15419, -6711, -15420, -15421, -4126, -15071, -2006, + -15422, -475, -2476, -5270, -3162, -11321, -15423, -15424 + ], + [1, 3, 10783], + [0, 10784, 10785, 10786, 5], + [0, -15789], + [0, -15790, -3136, -3037, -664, -12469, -1002], + [0, -15791, -6121, -460, -15792, -15793, -15794, -15795], + [1, 3, 10788], + [0, 10789, 10790, 7, 4], + [0, -15796, -3748, -948, -8339, -965, -968, -969, -1047, -1110, -15797, -2411], + [0, -3037, -10557, -932, -1344, -3781, -1498, -15798, -1772, -2399, -2410], + [1, 3, 10792], + [0, 10793, 0, 73, 4], + [0, -1456], + [1, 3, 10795], + [0, 10796, 10797, 286, 4], + [0, -4007, -658, -3190, -1548, -1549, -15799], + [0, -15800, -3037, -1278, -2410, -15801, -15802, -15803], + [1, 3, 10799], + [0, 10800, 0, 7, 6], + [0, -4231], + [1, 3, 10802], + [0, 0, 10803, 7, 8], + [0, -2386, -932, -2469, -1942, -2410, -3037, -965, -3664, -978, -940, -428, -427], + [1, 3, 10805], + [0, 10806, 10807, 10808, 9], + [0, -668, -1574, -1948, -2303], + [0, -1127, -1132, -1134, -1163, -2541], + [0, -9219, -3839, -9472, -6523, -6527, -7175, -1644], + [1, 3, 10810], + [0, 10811, 10812, 286, 5], + [0, -928, -4007, -2886], + [0, -1415, -2410, -3136, -3037, -15806, -15807], + [1, 3, 10814], + [0, 10815, 10816, 10817, 5], + [0, -522], + [0, -1788, -664, -2391, -1654, -2125, -1004, -2379, -2410, -3035, -3037, -3621, -511, -3617, -3983], + [0, -4665, -5119, -3634, -4873, -3440, -4666, -5986, -1874, -522], + [1, 3, 10819], + [0, 10820, 10821, 7, 5], + [ + 0, -483, -653, -6860, -13380, -14174, -15808, -5042, -1864, -2923, -7160, -2177, -3535, -2654, -2369, -15809, + -15810 + ], + [ + 0, -15661, -15811, -15812, -15813, -15814, -3037, -8523, -3199, -8200, -15815, -15816, -3664, -3665, -4817, + -8349, -815, -932, -8418, -3751, -1623, -3459, -6568, -1942, -2910, -15817, -15818, -2410, -15819, -15820, + -15821, -15822, -2466, -2469 + ], + [1, 3, 10823], + [0, 10824, 10825, 10826, 4], + [0, -812, -814, -1077, -1116, -7408, -2331], + [0, -3198, -15823, -3048, -664, -932, -1654], + [0, -867, -7347, -10908, -6131, -6656, -1334, -2435, -7107, -3445], + [1, 3, 10828], + [0, 0, 10829, 10830, 4], + [0, -3983, -3037, -3040, -9723, -1942, -2006, -2019, -3682, -2410], + [0, -2006, -5741, -12662, -12664, -12665], + [1, 3, 10832], + [0, 10833, 0, 10834, 5], + [0, -834, -3222, -681, -3620, -81, -66, -73, -74, -3502, -83, -68, -85, -15824, -6672, -15825], + [ + 0, -15826, -681, -3489, -15827, -15828, -5554, -15829, -7754, -3496, -3498, -3264, -3505, -3506, -3507, -3508, + -3509, -8841, -6217, -3161 + ], + [1, 3, 10836], + [0, 0, 287, 134, 4], + [1, 3, 10838], + [0, 10839, 10840, 10841, 11], + [0, -15830, -1967, -2055], + [ + 0, -21, -23, -32, -26, -33, -34, -35, -6034, -36, -38, -40, -41, -44, -406, -407, -409, -534, -753, -767, -932, + -933, -940, -958, -962, -967, -969, -1415, -1419, -1455, -1939, -1942, -2006, -2019, -2501, -2502, -2503, -2505 + ], + [0, -2006, -3476, -5176, -3159], + [1, 3, 10843], + [0, 0, 122, 10844, 5], + [0, -1107, -5569, -5570, -3215, -15831, -3116], + [1, 3, 10846], + [0, 10847, 0, 10848, 5], + [0, -681, -3517, -81, -15832, -66, -83, -68, -15824, -6672, -15825, -65, -15833, -3526, -15834, -15835], + [ + 0, -15826, -681, -3489, -15827, -15828, -5554, -15829, -7754, -3496, -3498, -3264, -3505, -3506, -3507, -3508, + -3509, -8841, -3161 + ], + [1, 3, 10850], + [0, 0, 37, 288, 8], + [1, 3, 10852], + [0, 10853, 10854, 10855, 4], + [0, -15836, -458, -812, -1729], + [0, -3198, -3037, -4201, -15837], + [0, -13739, -7572, -3690, -3323, -3161, -3482, -2901], + [1, 3, 10857], + [0, 23, 0, 289, 4], + [0, 23, 0, 289, 5], + [1, 3, 10860], + [0, 10861, 0, 170, 5], + [0, -5240, -5241, -431, -15838, -5244, -5245], + [1, 3, 10863], + [0, 10864, 0, 10865, 9], + [0, -15839, -15840, -15841, -15842, -15843, -15844, -15845, -15846], + [0, -15847, -2257, -15848, -3634, -4004, -15849, -15849, -2034, -2006, -3162, -5270, -5271, -3578], + [1, 3, 10867], + [0, 10868, 0, 10869, 6], + [0, -1439, -7679, -493, -495, -15444, -492], + [0, -15318, -15719, -3445, -7661], + [1, 3, 10871], + [0, 0, 10872, 10873, 5], + [0, -633, -1339, -2491], + [0, -2319, -8533, -3162, -2363, -5389, -6822], + [1, 3, 10875], + [0, 10876, 10877, 10878, 9], + [0, -15850, -2324], + [0, -1413, -1471, -1475, -1476, -1481, -11285, -1645, -1978, -2416], + [0, -10838, -10840, -3162, -4865], + [1, 3, 10880], + [0, 10881, 10882, 7, 4], + [0, -8535, -15851, -11270, -4848, -15852, -15853, -1826, -3653, -2062, -7967, -8544, -15854, -15855, -2531], + [ + 0, -13322, -9193, -13323, -15856, -357, -15857, -3037, -4204, -8549, -2917, -726, -2758, -932, -1030, -1122, + -1123, -15858, -2884, -1939, -1972, -2177, -2210, -2240, -2384, -2410, -2426, -2648 + ], + [1, 3, 10884], + [0, 10885, 10886, 10887, 11], + [0, -3459, -1863, -5037, -15811], + [0, -3735, -15206, -1966, -2469], + [0, -8403, -7148], + [1, 3, 10889], + [0, 10890, 10891, 7, 4], + [0, -25, -668, -2066, -2114, -2550], + [0, -528, -15859, -15860, -10445, -1978, -2070, -2226, -2250, -2322, -2359], + [1, 3, 10893], + [0, 10894, 132, 58, 5], + [0, -15861, -996, -15388, -15399], + [1, 3, 10896], + [0, 0, 0, 10897, 4], + [0, -15862, -3445, -13986, -11867, -7685, -2006], + [1, 3, 10899], + [0, 0, 0, 10900, 6], + [0, -932, -3784, -2006, -2041, -5324], + [1, 3, 10902], + [0, 10903, 10904, 10905, 8], + [0, -479, -9493, -812, -1022, -2778, -1446, -1597, -2359], + [ + 0, -23, -40, -43, -528, -664, -756, -932, -951, -1168, -1174, -1197, -1212, -1220, -1231, -1252, -1654, -15863, + -1788, -1939 + ], + [0, -1168, -1446, -7674, -3214, -7841, -856], + [1, 3, 10907], + [0, 10908, 0, 10909, 4], + [0, -1371, -15448, -1645, -1469], + [0, -15318, -15719, -3445, -15449, -15450], + [1, 3, 10911], + [0, 10912, 10913, 7, 4], + [0, -15274, -652, -999, -1047, -1107, -2548], + [0, -15864, -11419, -15865, -357, -3037, -15866, -2177, -932, -2884, -2410], + [1, 3, 10915], + [0, 0, 91, 10916, 10], + [0, -5372, -5142, -7282, -2918, -11889, -5573], + [1, 3, 10918], + [0, 0, 10919, 10920, 10], + [0, -2391, -2851], + [0, -2476, -2486, -4634, -2851, -3636, -4215, -3634], + [1, 3, 10922], + [0, 0, 10923, 10924, 4], + [0, -527, -1168, -1171, -15867, -1187, -1229, -1243, -1248, -1252, -1262, -1942, -2128], + [0, -15868, -15869, -15870, -15871, -15872, -15873, -3162, -11853], + [1, 3, 10926], + [0, 10927, 10928, 7, 4], + [0, -15874], + [0, -2476, -4838, -15875], + [1, 3, 10930], + [0, 0, 10931, 10932, 6], + [ + 0, -15661, -190, -15876, -15877, -3037, -3664, -6593, -932, -940, -960, -978, -1431, -7060, -1534, -8436, -1942, + -15878, -15879, -2910, -2174, -2892, -2400, -2410, -2411, -2469 + ], + [ + 0, -15880, -10587, -12437, -11639, -5112, -14059, -1548, -1993, -10656, -3481, -3018, -3694, -2410, -2424, + -2444, -8113, -3590, -5260 + ], + [1, 3, 10934], + [0, 10935, 10936, 10937, 6], + [0, -14337, -5322], + [ + 0, -5053, -11754, -15881, -4062, -639, -734, -999, -1107, -9665, -1852, -2922, -7160, -2127, -2202, -2231, + -2410, -2924, -2923 + ], + [0, -7882, -928, -7760, -2923, -2127, -2501], + [1, 3, 10939], + [0, 0, 10940, 10941, 5], + [0, -190, -3664, -932, -958, -960, -15882, -971, -972, -1449, -2892, -15883, -2410, -2411, -2466, -2469], + [0, -9022, -2410, -4058, -3926, -6747, -15884, -8461, -11997], + [1, 3, 10943], + [0, 0, 0, 10944, 6], + [0, -5889, -9080, -9800], + [1, 3, 10946], + [0, 10947, 10948, 10949, 10], + [ + 0, -3819, -15885, -15886, -15887, -15888, -15889, -15890, -15891, -15892, -3117, -8915, -4836, -15893, -15874, + -15894, -15895, -15896, -15897, -15898, -15899, -15900, -15901, -15902, -15903, -15904, -15905, -15906, -15907, + -15908, -15909, -15910, -4816, -4817, -14358, -15911, -15912, -734, -6860, -15913, -15914, -15915, -15916, + -15917, -15918, -15919, -1085, -14174, -15920, -1588, -1651, -15921, -12267, -1852, -15922, -6569, -2317, + -15923, -2318, -2654, -11071, -2981, -15924, -15925, -15926, -15927 + ], + [ + 0, -15928, -15929, -15930, -4646, -15931, -4837, -4838, -15932, -2932, -932, -1278, -7300, -2091, -2423, -2469, + -15130, -15933, -2476, -5627 + ], + [0, -15934, -7300, -3944, -2318, -5511, -2476, -5173, -3527, -2410, -4591, -3160, -2316, -3161, -15935], + [1, 3, 10951], + [0, 0, 10952, 10953, 11], + [0, -3136, -1415, -2375, -2379, -2391, -2410], + [ + 0, -3445, -4791, -9915, -15936, -15937, -15938, -15939, -15940, -15941, -15942, -15943, -775, -5272, -3100, + -15944, -15945, -15946, -15947, -15948, -15949, -15950, -15951, -15952, -15953, -15954, -15955, -2410, -15956, + -15957, -15958, -15959, -15960, -15961, -15962, -15963, -15964 + ], + [1, 3, 10955], + [0, 10956, 10957, 134, 6], + [0, -2932, -2896], + [0, -1415, -932, -2127, -2375, -1942, -2410, -3136, -3040, -940, -967, -1419, -428, -427], + [1, 3, 10959], + [0, 0, 10960, 10961, 5], + [0, -3040, -3052, -2006, -2019, -2410], + [0, -2006, -8785, -3962, -15273], + [1, 3, 10963], + [0, 10964, 10965, 10966, 5], + [0, -15965, -15966, -15967], + [ + 0, -15968, -15969, -15970, -15971, -15972, -15973, -15974, -15975, -15976, -15977, -15978, -15979, -15980, + -15981, -15982, -15983, -15984, -15985, -15986, -15987, -15988, -15989, -15990 + ], + [0, -2931, -4004, -3634, -10817, -4873, -664, -507, -856, -15991, -15992, -15993, -1446, -6024, -8257], + [1, 3, 10968], + [0, 0, 287, 134, 5], + [1, 3, 10970], + [0, 10971, 10972, 10973, 5], + [ + 0, -15994, -15995, -15996, -15997, -15998, -15999, -16000, -16001, -16002, -13406, -16003, -16004, -16005, + -1699, -2641, -2564, -2650 + ], + [0, -4049, -3037, -3040, -3052, -2006, -2019, -2469, -16006], + [ + 0, -16007, -1713, -2455, -16008, -2006, -3098, -3160, -3100, -2316, -2955, -16009, -16010, -15932, -3475, + -16011, -16012, -16013, -16014, -16015, -16016, -16017, -16018, -16019, -16020, -16021 + ], + [1, 3, 10975], + [0, 0, 0, 10976, 4], + [0, -12059, -775], + [1, 3, 10978], + [0, 10979, 10980, 10981, 4], + [0, -10782, -10784, -10786, -10793, -10788, -1691], + [0, -3136, -3037, -756, -1415, -1942, -2080, -2091, -2153, -2375, -2379, -2892, -2409, -2410], + [0, -5406, -4847, -856], + [1, 3, 10983], + [0, 10984, 10985, 10986, 5], + [0, -2650, -4225], + [0, -2466, -2006, -1122, -2019, -6859, -406, -440, -409, -407, -5323], + [0, -2006, -1122, -16022, -3862, -856, -10446], + [1, 3, 10988], + [0, 10989, 10990, 10991, 5], + [ + 0, -1313, -1826, -865, -16023, -13074, -1582, -16024, -1125, -16025, -1456, -15672, -16026, -16027, -16028, + -16029, -16030, -16031, -16032, -3234, -16033, -16034, -8863 + ], + [ + 0, -2564, -2391, -932, -1111, -2127, -2469, -2378, -3665, -2410, -23, -3037, -16035, -16036, -16037, -16038, + -1025, -4776, -4049, -16039, -16040, -3664, -16041, -16042, -16043 + ], + [0, -15932, -16044, -16045, -9733, -16046, -16047, -16048, -16049, -16050, -10412, -3674, -2410, -16051, -3161], + [1, 3, 10993], + [0, 0, 10994, 10995, 5], + [0, -50, -409, -3136, -855, -1415, -2634, -1942, -2006, -2019, -2052, -2125, -2375, -2410], + [0, -2006, -2634, -9736, -1713, -3122, -4215, -4004, -3634], + [1, 3, 10997], + [0, 0, 10998, 10999, 6], + [ + 0, -262, -4066, -350, -351, -3561, -5295, -16052, -3136, -4647, -16053, -4837, -7438, -4838, -5593, -708, -740, + -767, -1415, -1419, -1449, -1534, -6518, -1942, -2127, -2140, -2142, -2214, -2645, -2318, -2375, -2410, -2466, + -2476, -2483, -2486, -8160 + ], + [ + 0, -2476, -3944, -16054, -16055, -16056, -15150, -2645, -16057, -2939, -7580, -15151, -16058, -2410, -16059, + -2363, -3162, -3214, -3095, -3160 + ], + [1, 3, 11001], + [0, 94, 0, 11002, 4], + [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -15071, -13615, -6527], + [1, 3, 11004], + [0, 11005, 11006, 261, 6], + [0, -16060, -4787, -3751, -1864, -1889, -2923, -2654], + [ + 0, -25, -3195, -3180, -14337, -13397, -5322, -4066, -350, -7151, -4785, -10046, -4371, -14331, -6410, -653, + -679, -729, -742, -754, -769, -5042, -865, -866, -14335, -928, -929, -989, -990, -14338, -14333, -7897, -1588, + -1651, -5036, -1699, -1805, -1839, -1852, -14332, -1863, -1906, -1907, -14336, -12601, -11751, -7160, -2127, + -2134, -2162, -3572, -2213, -14334, -2334, -3027, -11071, -2531 + ], + [1, 3, 11008], + [0, 0, 0, 11009, 4], + [0, -2034, -3159, -5270, -5271, -11511, -770, -3162, -510, -2191, -11524, -11526, -7103, -16061, -16062, -2446], + [1, 3, 11011], + [0, 0, 37, 288, 9], + [1, 3, 11013], + [0, 11014, 11015, 11016, 9], + [ + 0, -3165, -16063, -16064, -3168, -3698, -11418, -16065, -5772, -16066, -16067, -16068, -16069, -5702, -16070, + -8859, -3778, -16071, -16072, -16073, -16074, -16075, -16076, -16077, -16078, -16079, -16080, -16081, -16082, + -16083, -16084, -16085, -16086, -16087, -16088, -16089, -16090, -16091, -16092, -16093, -16094, -16095, -16096, + -16097, -16098, -16099, -16100, -8863, -16101, -16102, -16103, -16104, -16105, -16106, -16107, -16108, -16109, + -402, -16110, -16111, -16112, -15748, -16113, -16114, -16115, -16116, -16117, -16118, -15257, -485, -5674, + -16119, -13751, -743, -16120, -809, -812, -16121, -834, -16122, -16123, -2761, -1025, -14636, -1043, -2573, + -16124, -1125, -1329, -1349, -9775, -16125, -11895, -1359, -5193, -16126, -16127, -1495, -16128, -16129, -16130, + -1549, -16131, -1593, -16132, -1610, -10749, -16133, -16134, -1699, -2634, -1712, -16135, -16136, -11750, -1782, + -16137, -16138, -16139, -16140, -16010, -12273, -16141, -16142, -16143, -11926, -1855, -1857, -1867, -16144, + -1885, -16145, -8504, -16146, -1984, -1994, -2006, -16147, -2019, -4988, -16148, -2025, -16149, -6620, -16150, + -2042, -16151, -2044, -16152, -16153, -16154, -2093, -2095, -2096, -16155, -16156, -2177, -2193, -4245, -16157, + -2272, -2292, -16158, -2592, -2314, -16159, -16160, -2594, -16161, -2436, -16162, -2446, -16163, -2531, -2548, + -2564, -2650, -16164 + ], + [ + 0, -86, -14379, -16165, -16166, -16167, -16168, -16169, -16170, -10811, -16171, -3983, -5681, -3842, -407, -409, + -410, -16172, -16173, -3198, -3048, -16174, -4049, -3044, -3164, -3037, -16175, -16176, -16177, -16178, -3040, + -3052, -16179, -3199, -14748, -12969, -4231, -4204, -8200, -3664, -5329, -721, -734, -767, -772, -16180, -865, + -866, -16181, -16182, -16183, -932, -16184, -16185, -1077, -1107, -1278, -1344, -11415, -16186, -1534, -1548, + -1605, -16187, -1640, -1729, -1733, -12282, -1826, -1942, -2094, -4242, -16188, -2098, -11417, -2174, -16189, + -2281, -2392, -2400, -2410, -2427, -2429, -2466, -2469 + ], + [0, -3161, -16011, -16017, -1713, -16190, -16010, -16191, -16192, -16193, -16194], + [1, 3, 11018], + [0, 291, 135, 63, 5], + [1, 3, 11020], + [0, 11021, 131, 11022, 5], + [0, -8863, -3617, -719, -1004, -5193, -2426, -2564], + [0, -16195, -16196, -16197, -16198, -16199, -856, -10817], + [1, 3, 11024], + [0, 11025, 11026, 11027, 4], + [0, -4890, -13377], + [ + 0, -2213, -1852, -2006, -2218, -2177, -2469, -13380, -2019, -2369, -3654, -3517, -1639, -1863, -2654, -2410, + -3037, -3199, -14373, -4036, -5087, -16200, -2970 + ], + [0, -2257, -4895, -2469, -3634, -4004, -3095, -3098, -13422, -2006, -2476, -2299, -4902], + [1, 3, 11029], + [0, 11030, 11031, 11032, 5], + [0, -997, -16201, -16202], + [0, -2501, -3136, -3037, -2503], + [0, -4123, -8503, -4004, -3634, -16203, -5858], + [1, 3, 11034], + [0, 0, 11035, 11036, 4], + [ + 0, -526, -527, -534, -559, -562, -566, -567, -16204, -664, -16205, -13261, -796, -812, -829, -932, -943, -968, + -974, -1017, -1041, -1077, -1322, -1331, -1471, -1474, -1475, -1479, -16206, -7707, -1480, -1482, -1483, -16207, + -1484, -1487, -1488, -1492, -1654, -1753, -1860, -2125, -14439, -5471, -2174, -2416, -14648, -2437, -2501, -2505 + ], + [0, -3576, -8897, -16208, -12613, -12449, -2363, -13616, -11594, -3162], + [1, 3, 11038], + [0, 11039, 11040, 11041, 5], + [0, -16209, -16210], + [ + 0, -3040, -3052, -3804, -427, -428, -726, -932, -940, -967, -969, -16211, -16212, -1942, -2127, -2142, -2379, + -2387, -2410 + ], + [0, -16213, -16214, -16215, -2006, -5270, -5271, -3162, -16216], + [1, 3, 11043], + [0, 0, 11044, 11045, 6], + [0, -2006, -2034, -12566, -16217], + [ + 0, -2034, -9021, -5270, -5271, -16218, -16219, -16220, -16221, -3161, -2006, -16222, -5269, -3209, -5922, + -16223, -3682, -3970, -3110, -9437 + ], + [1, 3, 11047], + [0, 11048, 0, 11049, 6], + [0, -2954, -2934], + [0, -712, -775, -3215], + [1, 3, 11051], + [0, 0, 0, 11052, 9], + [0, -714, -775], + [1, 3, 11054], + [0, 11055, 11056, 11057, 6], + [ + 0, -16224, -23, -25, -3412, -42, -16225, -8863, -16226, -635, -719, -755, -815, -823, -834, -999, -1026, -1077, + -12417, -1343, -1496, -1683, -1729, -1805, -1816, -1889, -1931, -1966, -2066, -16227, -2317, -2378, -2383, + -2450, -2564, -8882 + ], + [0, -4776, -3048, -3735, -16228, -2125, -2391, -2400, -2410], + [0, -3098, -3160, -2316, -16007, -2955], + [1, 3, 11059], + [0, 0, 0, 11060, 6], + [0, -2006, -2476, -9608, -9614, -16229, -16230], + [1, 3, 11062], + [0, 0, 11063, 11064, 6], + [ + 0, -3136, -3037, -427, -428, -932, -936, -940, -958, -967, -968, -972, -978, -1107, -1415, -1942, -2125, -2127, + -2130, -12925, -2142, -2375, -2379, -2402, -2405, -7322, -2410 + ], + [0, -16231, -8785, -16232, -16233, -16234, -16235, -16236, -16237, -3173, -16238, -3966, -4865, -3100, -3445], + [1, 3, 11066], + [0, 0, 0, 11067, 6], + [ + 0, -16239, -4053, -16240, -16241, -16242, -16243, -16244, -16245, -16246, -16247, -16248, -16249, -16250, + -16251, -12512, -16252, -16253, -4055, -1456, -16254, -16244, -5495, -3100, -3214, -2410 + ], + [1, 3, 11069], + [0, 11070, 0, 73, 4], + [ + 0, -2984, -5766, -2860, -5758, -501, -523, -16255, -615, -16256, -14855, -1069, -1100, -1107, -9362, -8985, + -5880, -1548, -1574, -1666, -1705, -10270, -1875, -1878, -2060, -2115, -2160, -2177, -2194, -2297, -5764, -2400, + -2446, -2518, -2555 + ], + [1, 3, 11072], + [0, 11073, 11074, 11075, 4], + [0, -15224, -15226], + [0, -3037, -15229, -15230, -15231, -2125, -2892, -2410, -2469], + [0, -15227, -9668, -3690, -3445, -1348, -9780], + [1, 3, 11077], + [0, 11078, 11079, 11080, 4], + [ + 0, -1313, -1852, -2922, -6570, -2924, -11918, -12278, -7772, -6475, -4835, -1341, -16257, -8859, -12284, -8860, + -16258, -16259 + ], + [0, -2391, -2469, -5672, -6568, -2410, -3037, -8321, -16260, -2832, -11347], + [0, -1954, -10425, -16261, -8427, -3113, -7646, -3634], + [1, 3, 11082], + [0, 11083, 11084, 11085, 6], + [0, -16262, -16263], + [0, -16264, -767, -932, -1641, -16265, -1788, -1972, -16266, -2322], + [0, -5817, -5819, -5937, -13192, -5801, -16267, -16268, -5951, -5940, -5943, -16269, -3161], + [1, 3, 11087], + [0, 11088, 11089, 7, 4], + [0, -16270], + [0, -879, -2410, -7768], + [1, 3, 11091], + [0, 11092, 11093, 11094, 10], + [0, -2006, -2019, -16271], + [0, -1992, -2125, -2388, -2376, -1967, -2410, -23, -3037, -3040, -534, -3052, -3140, -520], + [0, -2356, -3488, -16272, -2006, -3496, -3264, -3494, -13460, -11889, -4258], + [1, 3, 11096], + [0, 0, 11097, 11098, 5], + [ + 0, -12182, -190, -4225, -16273, -16274, -4836, -16275, -407, -409, -410, -3269, -3732, -3661, -3037, -3040, + -3052, -16276, -14827, -651, -703, -724, -786, -932, -970, -2914, -1110, -1344, -1449, -1534, -1600, -1610, + -1889, -1942, -8918, -2006, -16277, -2019, -2965, -16278, -2044, -2140, -2144, -16279, -2193, -2213, -2317, + -2318, -2334, -16280, -2379, -2392, -2410, -2411, -11708, -2466, -6859, -15519, -2469, -16281, -2650 + ], + [0, -2006, -3476, -9614, -6409, -16282, -4108, -12682, -12683, -12684, -4002, -4672, -9133], + [1, 3, 11100], + [0, 11101, 11102, 11103, 5], + [0, -4785, -12535, -462, -674, -742, -812, -14335, -1026, -1077, -1451, -1588, -1852, -1863, -2041, -2127, -2153], + [ + 0, -16283, -16284, -4066, -350, -4062, -351, -365, -8894, -16285, -3202, -3198, -3048, -4963, -16286, -3037, + -3040, -3052, -427, -428, -440, -4837, -679, -928, -13212, -932, -969, -4981, -1771, -13593, -2006, -2019, + -2125, -2132, -6483, -2299, -2400, -2410, -2466, -16287, -2469, -2476 + ], + [0, -12913, -5044, -10366, -16288, -5195, -16289, -16290, -4865, -16291], + [1, 3, 11105], + [0, 11106, 11107, 7, 5], + [0, -797, -16292, -16293], + [ + 0, -652, -16294, -2392, -2466, -1449, -1654, -659, -932, -2127, -1110, -1942, -2378, -16295, -2468, -190, -2410, + -3037, -1440, -3621, -16296, -7273, -3244, -16297, -4062, -16298, -7274, -3266, -1602, -940, -350, -428, -351, + -427 + ], + [1, 3, 11109], + [0, 11110, 11111, 11112, 6], + [0, -8612, -1063, -1343, -16299], + [0, -4835, -3037, -16300, -1313, -1722, -2359], + [ + 0, -659, -13649, -16301, -16302, -11878, -6523, -6524, -6527, -5093, -16303, -7650, -16304, -16305, -6528, + -3839, -5057 + ], + [1, 3, 11114], + [0, 11115, 11116, 11117, 8], + [0, -16306], + [0, -2376, -2410, -2501, -2503, -2006, -2019, -3040, -3052], + [0, -2006, -16306, -6656, -6999, -9800, -16307, -6527, -3496, -7764, -16308, -5937, -5940, -5800, -8624], + [1, 3, 11119], + [0, 11120, 11121, 11122, 5], + [0, -14372, -13388, -5286], + [0, -2469, -1874], + [0, -4865, -1874, -3095, -7243, -4004, -3634], + [1, 3, 11124], + [0, 11125, 11126, 11127, 4], + [0, -502, -668, -679, -1098, -1099, -1125, -1304, -1351, -1535, -1610, -1978, -2177, -5977], + [0, -16309, -3802, -3199, -13186, -519, -659, -1788, -11926, -1942, -1944, -11491, -2379, -2384, -2410, -2541], + [0, -16310, -687, -16311, -856, -16312, -16313, -1599, -6528, -1978, -11096, -16314], + [1, 3, 11129], + [0, 11130, 11131, 278, 5], + [0, -668, -2550, -16315, -2823, -16316], + [0, -3037, -16317], + [1, 3, 11133], + [0, 11134, 91, 11135, 5], + [0, -2177, -2823, -16316, -16318], + [0, -15627, -15629, -15630, -4864, -3634, -3636], + [1, 3, 11137], + [0, 11138, 11139, 11140, 4], + [0, -16319, -16316, -16318, -2823], + [0, -2973, -16320, -15626, -5769, -1870, -11468], + [0, -15627, -15629, -15630, -4864, -3634, -3636, -11890], + [1, 3, 11142], + [0, 11143, 11144, 11145, 4], + [0, -719, -2683, -2822, -16321], + [0, -15624, -16322, -16323, -2983], + [0, -15279, -687, -3262, -856, -15280, -15281], + [1, 3, 11147], + [0, 11148, 0, 11149, 4], + [0, -16324], + [0, -15279, -15625, -16325, -16326, -856, -15280, -15281], + [1, 3, 11151], + [0, 94, 11152, 11153, 8], + [ + 0, -3307, -12564, -4646, -3136, -3044, -3040, -3141, -427, -428, -721, -932, -940, -967, -1344, -1415, -16327, + -1942, -2006, -2034, -12566, -2091, -2410 + ], + [0, -2034, -3159, -5270, -5271, -16328, -16329, -3162, -5269, -3095, -6107, -7067, -14498, -11378, -2319], + [1, 3, 11155], + [0, 11156, 11157, 11158, 10], + [0, -2340], + [0, -16178, -1857], + [0, -10425, -6321, -3634, -7606, -2340], + [1, 3, 11160], + [0, 11161, 11162, 7, 6], + [0, -3195, -1864, -4247], + [ + 0, -5694, -16224, -16330, -16331, -10097, -10098, -3037, -8523, -8200, -483, -8349, -16332, -928, -932, -16333, + -1431, -1534, -1588, -2923, -2127, -3246, -2892, -2410, -16334, -15822, -2466, -2469, -2501, -2503, -2981 + ], + [1, 3, 11164], + [0, 72, 0, 11165, 6], + [0, -15279, -15625, -16335, -856, -15280, -15281], + [1, 3, 11167], + [0, 11168, 0, 11169, 10], + [0, -16336], + [0, -15279, -15625, -16337, -6999, -856, -15280, -15281], + [1, 3, 11171], + [0, 11172, 0, 73, 5], + [0, -4716, -1548, -1582, -10515], + [1, 3, 11174], + [0, 0, 11175, 11176, 5], + [ + 0, -50, -190, -3035, -3664, -469, -932, -940, -1942, -2125, -2134, -2210, -2334, -2384, -2387, -2402, -2405, + -2411, -2466, -16338, -16339, -16340, -16341, -2468, -2469 + ], + [0, -16342, -5177, -3214, -2410, -16343, -16344, -6899, -16345, -3162], + [1, 3, 11178], + [0, 0, 11179, 11180, 5], + [ + 0, -50, -3037, -427, -428, -7438, -932, -940, -1003, -1654, -1942, -16346, -2134, -16347, -2210, -2402, -2405, + -2410, -2466, -16338, -16339, -16340 + ], + [0, -5177, -16343, -9475, -3999, -6899, -16345, -659, -7085, -3578, -3162], + [1, 3, 11182], + [0, 11183, 0, 11184, 4], + [0, -2357], + [0, -4144, -3214, -16348, -2987, -1942, -2410], + [1, 3, 11186], + [0, 0, 0, 11187, 4], + [ + 0, -3015, -16349, -1520, -15360, -10440, -1764, -1787, -5895, -7442, -1882, -2177, -7969, -3682, -16350, -16351, + -11713, -4304, -2552 + ], + [1, 3, 11189], + [0, 0, 11190, 7, 4], + [ + 0, -16352, -16353, -280, -16354, -16355, -350, -4062, -351, -7155, -4007, -11348, -16356, -16357, -11752, -719, + -831, -16358, -3459, -1863, -2144, -16359, -16360 + ], + [1, 3, 11192], + [0, 11193, 0, 73, 11], + [ + 0, -2959, -2860, -5758, -8864, -5761, -523, -615, -617, -1004, -11676, -1341, -1548, -1582, -1635, -1676, -1851, + -2185, -2400 + ], + [1, 3, 11195], + [0, 291, 135, 63, 11], + [1, 3, 11197], + [0, 11198, 135, 63, 11], + [0, -3947, -231, -2944, -2900], + [1, 3, 11200], + [0, 11201, 11202, 11203, 10], + [ + 0, -2564, -6860, -6415, -16361, -16362, -16363, -2292, -16364, -16365, -16122, -16366, -16367, -16368, -16369, + -16370, -5038, -16371, -5779, -5782 + ], + [0, -1683, -16178, -3631, -2410, -3037, -16372, -3617, -16373, -8859, -16374, -12285, -16375], + [ + 0, -16376, -16377, -14981, -16378, -16379, -3445, -16380, -16381, -16382, -11877, -16383, -16384, -16385, + -16386, -16387 + ], + [1, 3, 11205], + [0, 11206, 11207, 11208, 10], + [0, -1047, -1863, -1875], + [0, -11337, -3040, -825, -1802, -12566, -2410], + [ + 0, -2034, -5270, -5271, -12578, -7084, -12579, -3159, -12567, -2006, -3162, -3160, -3167, -3843, -9472, -9474, + -3827 + ], + [1, 3, 11210], + [0, 11211, 0, 11212, 8], + [0, -2460, -1641, -2683, -16324], + [0, -15279, -15625, -5398, -856, -15280, -15281], + [1, 3, 11214], + [0, 0, 11215, 11216, 9], + [ + 0, -16388, -15583, -21, -23, -3203, -38, -40, -16389, -16390, -3326, -3561, -528, -533, -10056, -10022, -15127, + -16391, -11899, -726, -865, -932, -956, -958, -9724, -1059, -11942, -13866, -1344, -1415, -5123, -12680, -4981, + -4982, -1868, -16392, -1942, -1952, -1978, -16346, -2127, -16393, -2134, -2140, -2144, -2184, -2410 + ], + [0, -3821, -3822, -3823, -3825, -16394, -16395], + [1, 3, 11218], + [0, 0, 11219, 11220, 9], + [0, -3266, -3621, -3037, -632, -664, -1654, -1753, -2127, -2344, -2410], + [ + 0, -16396, -2998, -16397, -7049, -5176, -16398, -15100, -16055, -15213, -6899, -11853, -16399, -16400, -12543, + -16401, -7198, -10724, -16402, -16403, -16404 + ], + [1, 3, 11222], + [0, 0, 70, 11223, 9], + [0, -13351, -16405], + [1, 3, 11225], + [0, 11226, 11227, 11228, 9], + [0, -16406, -16407, -16408, -16409, -16410], + [0, -683, -932, -16411, -16412, -1989, -2281, -2282, -2334], + [0, -2363, -3576, -16413, -12449, -12613, -13615, -14054, -4865], + [1, 3, 11230], + [0, 0, 11231, 11232, 9], + [0, -664, -824, -1168, -1187, -9293, -1208, -1224, -1243, -1262, -16414, -1654], + [0, -4123, -11154, -11158, -1666, -1667, -4121], + [1, 3, 11234], + [0, 0, 0, 11235, 9], + [0, -3003, -7184, -5493, -11151, -16415, -8451, -3579, -8590, -3215], + [0, 25, 9], + [1, 3, 11238], + [0, 11239, 0, 7, 9], + [0, -637], + [1, 3, 11241], + [0, 0, 11242, 11243, 9], + [0, -1032, -2322], + [0, -3006, -10504, -10684, -16416, -11972], + [1, 3, 11245], + [0, 0, 11246, 11247, 9], + [0, -1654, -1003, -6851, -16417, -16418, -1818, -510], + [0, -6106, -1818, -16418, -6851], + [1, 3, 11249], + [0, 0, 0, 11250, 9], + [0, -16419, -14311], + [1, 3, 11252], + [0, 11253, 0, 7, 9], + [0, -1980, -10802, -2550, -2520, -1691, -2424, -693, -7109, -714, -2525], + [1, 3, 11255], + [0, 11256, 11257, 11258, 9], + [0, -1967, -16420], + [ + 0, -21, -23, -36, -40, -41, -43, -509, -756, -915, -916, -932, -16421, -7894, -964, -969, -1449, -1654, -1788, + -2006, -2019, -15571, -16422 + ], + [0, -3839, -2034, -3010, -16423, -9682, -2006], + [1, 3, 11260], + [0, 0, 11261, 7, 9], + [ + 0, -23, -40, -350, -5995, -351, -535, -571, -633, -1413, -1471, -1472, -1475, -1476, -1481, -3569, -1491, -1978, + -2127, -2128, -16424, -8895, -16425, -8896, -2140, -2491 + ], + [1, 3, 11263], + [0, 0, 11264, 7, 9], + [0, -2125, -1650, -16426, -16427], + [1, 3, 11266], + [0, 0, 11267, 11268, 9], + [0, -21, -23, -40, -528, -557, -932, -934, -940, -958, -967, -1415, -1942], + [ + 0, -5845, -8799, -651, -16428, -3215, -16429, -7304, -6241, -8574, -12248, -6582, -1044, -6656, -8800, -3590, + -5845, -6473, -3240 + ] ] From b13061cadaaf8ef481c514e4d2ec25cd5caaef66 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Fri, 6 Mar 2026 07:02:08 +0100 Subject: [PATCH 08/26] fix snapshots --- .../fixtures/cspell-cache-flatpack.json | 452 +++--------------- .../__snapshots__/FlatpackV1_fileList.jsonc | 31 +- .../FlatpackV1_fileObjects.jsonc | 31 +- .../__snapshots__/FlatpackV2_fileList.jsonc | 31 +- .../FlatpackV2_fileObjects.jsonc | 31 +- .../src/__snapshots__/storage_fileList.jsonc | 31 +- .../__snapshots__/storage_fileObjects.jsonc | 31 +- .../src/__snapshots__/unpack_fileList.jsonc | 31 +- .../__snapshots__/unpack_fileObjects.jsonc | 31 +- packages/flatpack-json/src/storage.mts | 34 +- packages/flatpack-json/src/stringify.mts | 19 +- 11 files changed, 129 insertions(+), 624 deletions(-) diff --git a/packages/flatpack-json/fixtures/cspell-cache-flatpack.json b/packages/flatpack-json/fixtures/cspell-cache-flatpack.json index 115671a19730..662201a59554 100644 --- a/packages/flatpack-json/fixtures/cspell-cache-flatpack.json +++ b/packages/flatpack-json/fixtures/cspell-cache-flatpack.json @@ -1433,77 +1433,7 @@ [1,10,8935], [1,7,8954], [1,7,8959], -[0,1435,327,1436,1437,1438,328,222,183,224,621,622,623,625,1442,630,631,1446,634,636,225,330,1454,1455,1457,638,639,640, -642,1463,1465,1467,226,646,1469,1471,647,1474,1477,333,1481,1484,648,1486,1487,1488,650,185,1491,1492,1493,651,1497,334, -1500,1501,652,336,1505,1508,1510,655,1513,1514, -338,656,1518,340,1522,230,1525,343,1527,344,1530,1532,1534,1536,659,1540,660,1544,1546,186,1548,1550,661,662,1556,1558, -1560,231,1563,663,1567,664,1569,665,1574,666,1576,667,1579,1580,1582,669,1584,1585,349,1588,670,1591,351,1593,352,1597, -673,1601,1603,675,1606,676,1611,1612,233,1614,677,1618, -679,1620,680,1623,357,681,1628,358,1632,359,683,684,1639,685,1641,686,1644,235,1646,360,1650,688,1653,689,1656,1657,692, -693,1660,695,1662,238,1664,697,1667,1669,698,1671,699,1673,1674,364,700,1679,366,702,1684,368,1688,1692,1693,1695,239, -1698,1700,1701,370,1704,371,1708,1711,1712,705,1716, -1719,707,708,709,1725,710,1729,1731,711,712,1733,1734,375,1739,715,719,1742,1743,1744,242,721,1746,1747,377,1749,723, -1751,378,1754,379,1757,726,1761,727,1763,1765,728,730,1771,1772,382,1776,384,731,1781,732,1783,733,734,1788,735,736,1790, -1791,385,1793,737,1796,1798,1799,739,1801,387,1805, -741,742,1811,244,1813,744,746,1817,1819,1820,747,1823,748,749,1828,750,1831,389,1834,1836,1837,751,1840,752,390,1848, -1851,391,1854,1856,755,1859,756,757,1864,1865,393,758,394,1869,759,760,761,762,763,1877,1878,765,1880,766,1883,1885,395, -768,1889,1891,1894,396,1896,397,1898,399,1901,1902, -400,1905,1907,1909,772,1911,774,1915,1918,1919,1921,1923,401,1926,775,402,1930,778,1934,403,1940,1941,779,1943,781,1945, -782,247,783,1953,1955,1957,1960,1961,786,787,788,405,1969,790,1971,791,1975,1977,1978,792,1981,409,1984,794,1986,410, -1990,795,1993,1994,249,1997,798,1999,2000,801,802,2006, -2007,2008,2011,250,2015,805,2017,806,807,808,2022,2023,2025,251,2028,2030,810,2035,413,2038,2040,812,2044,813,815,2053, -816,2055,2057,817,818,2061,2062,820,2064,821,2068,2070,415,822,2074,2075,824,2078,2081,254,825,2085,2088,2090,152,2092, -2095,828,2097,830,2100,420,2104,2106,2108,2109,831,2113, -2116,832,2120,833,2123,834,2128,2129,835,2133,836,2138,424,2140,425,2145,839,2148,840,2152,841,2155,842,843,2159,844, -2164,846,2166,427,2170,2173,849,2175,850,2180,2182,852,2186,428,2190,256,2194,257,2199,2201,853,2204,2205,429,2210,855, -856,2215,857,2218,859,2221,861,2225,258,862,2230,2232, -863,2236,2238,2240,2241,432,2245,433,865,2252,866,2257,867,435,2261,868,2265,869,2268,871,2272,2275,437,2279,872,2283, -873,2287,876,2290,877,2294,259,2298,878,2303,879,2308,438,2311,440,2313,441,2317,881,2322,882,2325,883,2328,884,2331,885, -2335,442,2337,887,2341,888,2344,890,2346,891,893, -2348,895,2352,443,2356,896,2361,260,2364,444,2368,2370,446,2374,898,899,2379,900,2382,2384,901,2387,447,2389,903,2393, -904,905,2397,2400,907,2403,908,2407,910,2410,2412,913,2416,2417,915,2421,916,2425,2426,450,2430,451,2433,918,2436,262, -2438,919,2442,920,2448,921,2453,2454,452,2456,2459,263, -2462,922,2466,923,2470,924,925,2475,264,2478,926,2482,453,2486,927,2488,928,2491,929,2494,930,2497,932,2499,933,2502,265, -2505,934,2509,2511,935,2514,936,937,2519,938,2521,939,2525,940,2528,2530,942,2534,2535,455,2538,456,2542,2545,457,2547, -2548,458,2552,945,2555,2557,2559,2561,2563,946,2565, -459,2567,948,949,950,2576,2577,952,2580,2581,460,2585,2586,955,2590,2591,268,2593,2594,958,959,2596,960,461,2598,2601, -961,2604,201,2607,269,2612,2614,462,2619,966,2622,967,2626,2627,463,2630,968,2635,969,970,2639,971,464,2646,2649,974, -2653,976,2658,465,2661,977,2665,978,2667,270,2672,979, -2675,2678,2681,466,2685,982,2687,2688,2692,469,2696,2697,985,2701,470,2706,2708,2709,471,2712,2713,988,2716,472,2719, -2722,2724,2726,474,2730,2732,2733,2735,271,2739,2740,2741,2742,475,2744,477,992,2748,2749,2751,995,2754,272,2757,2760, -996,2764,479,2767,273,2771,480,2774,999,2778,2780,2781,1001,2783, -1002,2786,1003,2790,481,2792,1004,1005,2797,202,2800,483,2804,1006,2807,1007,2810,1008,2813,485,2817,1009,2821,2824,2826, -486,2830,1010,1011,2835,1012,2839,2840,2842,1015,2845,2847,488,2850,2851,489,2853,2855,490,1018,492,2860,1020,2864,1021, -1022,2870,1024,1026,2876,1028,2879,2880,1029,2884,1030,2888,494,2892, -2895,1032,2898,276,2901,2903,1035,1036,2906,1037,2908,1038,2910,2912,1039,2915,278,1041,2919,203,2924,1043,2926,495,1044, -2931,1046,496,2935,1048,1049,2941,1050,2943,2944,2946,497,2950,1051,2954,1052,1053,2958,1054,2961,1055,2967,2969,499, -2974,1056,1057,2978,501,2980,2982,1058,1060,2987,2989,2992,2994,502,1061, -3000,1062,3003,3005,1063,1064,3010,279,3012,1065,3015,1066,3022,3025,1067,3027,1068,3031,503,3033,1069,3038,1070,3040, -504,3042,3043,505,3045,3047,506,3051,3053,3055,3058,1072,3063,3065,1074,3071,3073,3077,3078,1075,3081,3082,3083,1076, -3085,1077,3088,3089,1079,1080,3093,1081,1082,3099,509,1085,3101,3105,1087,3108, -1088,1089,3111,1090,3116,1091,3119,3120,1092,3124,3125,1093,3128,3129,510,3132,1095,3135,1096,3139,1097,3141,3143,1098, -3146,3147,1099,1100,3150,3151,3152,3153,3154,206,3157,1101,3161,511,3164,512,1102,3170,3171,3173,3176,3178,514,1105,3183, -1107,3187,3190,515,3195,3197,1108,3199,516,3201,1109,1111,3206,1112,3211, -3213,1113,3218,3220,3222,3223,1114,207,1115,3229,3232,517,3236,3239,1116,3243,3244,1117,3248,1118,3252,518,3256,3258, -1120,3260,1121,3264,1122,3267,3269,519,3272,1123,3277,1124,3281,520,3284,1125,3288,521,3291,3293,3294,522,3297,1127,3300, -1128,3304,1129,3309,3311,3312,1131,3316,3317,1132,1134,1135,3322,1136,3325, -3326,3327,1138,3329,3330,1139,525,3336,3339,1140,3341,1141,3344,3346,526,3349,3352,3354,3356,1142,3359,1143,3361,527, -3365,283,3368,1145,3372,1146,3375,529,3378,3380,530,3383,3385,531,3388,1148,3391,1149,3394,532,3397,533,3401,3404,1150, -3407,1151,3409,3411,1153,3415,3416,3417,210,3420,3422,3423,1155,3427,1156, -3431,1157,3435,3438,534,3442,1158,3446,3448,1159,1160,3452,3455,3456,535,3459,3461,1161,3463,3465,3466,3467,3468,3469, -3470,536,3471,1163,3476,3479,1165,538,3482,3484,539,3490,3495,1168,3501,1169,3505,1170,3510,1171,3512,3513,3514,3516, -1173,3521,3523,3524,1175,3526,3528,3530,171,1176,3533,3534,3535,3536,1177,3538, -287,1178,3545,3546,3547,3548,1179,3550,541,1180,3555,3556,3557,3558,1181,3560,542,1182,3564,3565,3566,3567,1183,3569,174, -3571,544,3574,3576,3577,3578,1187,3580,546,3583,3584,3585,549,3587,1189,3589,550,1190,3594,3597,3598,3599,3600,1191,3603, -1194,3607,1196,3610,3611,3612,3615,552,3617,3618,1197,3620,554,3623, -3624,3625,3626,1198,3628,293,3632,3633,1200,3635,556,3638,3639,3640,3641,1201,3643,557,1203,3651,3652,3653,3654,1204, -3656,558,559,1206,1207,3662,3663,560,1209,3667,3668,3669,3670,1210,3672,299,3674,3675,562,3677,1212,3682,563,3684,3685, -3686,3687,1214,3690,3691,565,3693,1215,3696,566,3698,3699,3700,3701,1216, -3703,1218,3709,302,3712,3713,3714,176,3718,1220,3721,3722,3723,1221,3724,1223,3730,3731,3732,3734,1224,1225,3739,3740, -306,1229,3744,3745,3748,1231,568,1232,3754,3755,569,3758,570,3763,3764,1234,1235,571,3772,3773,1236,3775,1238,3777,3778, -1239,3780,574,3782,3783,3784,3785,1240,3787,1241,3789,3790,3791,1242,309, -3796,575,3802,1245,1246,3807,3809,3812,1248,3815,3817,3819,3821,577,3822,3824,3826,310,3830,1252,3832,3834,1253,3839, -3841,3843,3846,1254,3852,3853,3857,3859,1257,3862,3864,3866,3868,3871,3874,3875,1259,311,3881,3884,1260,1261,3890], +[0,1435,327,1436,1437,1438,328,222,183,224,621,622,623,625,1442,630,631,1446,634,636,225,330,1454,1455,1457,638,639,640,642,1463,1465,1467,226,646,1469,1471,647,1474,1477,333,1481,1484,648,1486,1487,1488,650,185,1491,1492,1493,651,1497,334,1500,1501,652,336,1505,1508,1510,655,1513,1514,338,656,1518,340,1522,230,1525,343,1527,344,1530,1532,1534,1536,659,1540,660,1544,1546,186,1548,1550,661,662,1556,1558,1560,231,1563,663,1567,664,1569,665,1574,666,1576,667,1579,1580,1582,669,1584,1585,349,1588,670,1591,351,1593,352,1597,673,1601,1603,675,1606,676,1611,1612,233,1614,677,1618,679,1620,680,1623,357,681,1628,358,1632,359,683,684,1639,685,1641,686,1644,235,1646,360,1650,688,1653,689,1656,1657,692,693,1660,695,1662,238,1664,697,1667,1669,698,1671,699,1673,1674,364,700,1679,366,702,1684,368,1688,1692,1693,1695,239,1698,1700,1701,370,1704,371,1708,1711,1712,705,1716,1719,707,708,709,1725,710,1729,1731,711,712,1733,1734,375,1739,715,719,1742,1743,1744,242,721,1746,1747,377,1749,723,1751,378,1754,379,1757,726,1761,727,1763,1765,728,730,1771,1772,382,1776,384,731,1781,732,1783,733,734,1788,735,736,1790,1791,385,1793,737,1796,1798,1799,739,1801,387,1805,741,742,1811,244,1813,744,746,1817,1819,1820,747,1823,748,749,1828,750,1831,389,1834,1836,1837,751,1840,752,390,1848,1851,391,1854,1856,755,1859,756,757,1864,1865,393,758,394,1869,759,760,761,762,763,1877,1878,765,1880,766,1883,1885,395,768,1889,1891,1894,396,1896,397,1898,399,1901,1902,400,1905,1907,1909,772,1911,774,1915,1918,1919,1921,1923,401,1926,775,402,1930,778,1934,403,1940,1941,779,1943,781,1945,782,247,783,1953,1955,1957,1960,1961,786,787,788,405,1969,790,1971,791,1975,1977,1978,792,1981,409,1984,794,1986,410,1990,795,1993,1994,249,1997,798,1999,2000,801,802,2006,2007,2008,2011,250,2015,805,2017,806,807,808,2022,2023,2025,251,2028,2030,810,2035,413,2038,2040,812,2044,813,815,2053,816,2055,2057,817,818,2061,2062,820,2064,821,2068,2070,415,822,2074,2075,824,2078,2081,254,825,2085,2088,2090,152,2092,2095,828,2097,830,2100,420,2104,2106,2108,2109,831,2113,2116,832,2120,833,2123,834,2128,2129,835,2133,836,2138,424,2140,425,2145,839,2148,840,2152,841,2155,842,843,2159,844,2164,846,2166,427,2170,2173,849,2175,850,2180,2182,852,2186,428,2190,256,2194,257,2199,2201,853,2204,2205,429,2210,855,856,2215,857,2218,859,2221,861,2225,258,862,2230,2232,863,2236,2238,2240,2241,432,2245,433,865,2252,866,2257,867,435,2261,868,2265,869,2268,871,2272,2275,437,2279,872,2283,873,2287,876,2290,877,2294,259,2298,878,2303,879,2308,438,2311,440,2313,441,2317,881,2322,882,2325,883,2328,884,2331,885,2335,442,2337,887,2341,888,2344,890,2346,891,893,2348,895,2352,443,2356,896,2361,260,2364,444,2368,2370,446,2374,898,899,2379,900,2382,2384,901,2387,447,2389,903,2393,904,905,2397,2400,907,2403,908,2407,910,2410,2412,913,2416,2417,915,2421,916,2425,2426,450,2430,451,2433,918,2436,262,2438,919,2442,920,2448,921,2453,2454,452,2456,2459,263,2462,922,2466,923,2470,924,925,2475,264,2478,926,2482,453,2486,927,2488,928,2491,929,2494,930,2497,932,2499,933,2502,265,2505,934,2509,2511,935,2514,936,937,2519,938,2521,939,2525,940,2528,2530,942,2534,2535,455,2538,456,2542,2545,457,2547,2548,458,2552,945,2555,2557,2559,2561,2563,946,2565,459,2567,948,949,950,2576,2577,952,2580,2581,460,2585,2586,955,2590,2591,268,2593,2594,958,959,2596,960,461,2598,2601,961,2604,201,2607,269,2612,2614,462,2619,966,2622,967,2626,2627,463,2630,968,2635,969,970,2639,971,464,2646,2649,974,2653,976,2658,465,2661,977,2665,978,2667,270,2672,979,2675,2678,2681,466,2685,982,2687,2688,2692,469,2696,2697,985,2701,470,2706,2708,2709,471,2712,2713,988,2716,472,2719,2722,2724,2726,474,2730,2732,2733,2735,271,2739,2740,2741,2742,475,2744,477,992,2748,2749,2751,995,2754,272,2757,2760,996,2764,479,2767,273,2771,480,2774,999,2778,2780,2781,1001,2783,1002,2786,1003,2790,481,2792,1004,1005,2797,202,2800,483,2804,1006,2807,1007,2810,1008,2813,485,2817,1009,2821,2824,2826,486,2830,1010,1011,2835,1012,2839,2840,2842,1015,2845,2847,488,2850,2851,489,2853,2855,490,1018,492,2860,1020,2864,1021,1022,2870,1024,1026,2876,1028,2879,2880,1029,2884,1030,2888,494,2892,2895,1032,2898,276,2901,2903,1035,1036,2906,1037,2908,1038,2910,2912,1039,2915,278,1041,2919,203,2924,1043,2926,495,1044,2931,1046,496,2935,1048,1049,2941,1050,2943,2944,2946,497,2950,1051,2954,1052,1053,2958,1054,2961,1055,2967,2969,499,2974,1056,1057,2978,501,2980,2982,1058,1060,2987,2989,2992,2994,502,1061,3000,1062,3003,3005,1063,1064,3010,279,3012,1065,3015,1066,3022,3025,1067,3027,1068,3031,503,3033,1069,3038,1070,3040,504,3042,3043,505,3045,3047,506,3051,3053,3055,3058,1072,3063,3065,1074,3071,3073,3077,3078,1075,3081,3082,3083,1076,3085,1077,3088,3089,1079,1080,3093,1081,1082,3099,509,1085,3101,3105,1087,3108,1088,1089,3111,1090,3116,1091,3119,3120,1092,3124,3125,1093,3128,3129,510,3132,1095,3135,1096,3139,1097,3141,3143,1098,3146,3147,1099,1100,3150,3151,3152,3153,3154,206,3157,1101,3161,511,3164,512,1102,3170,3171,3173,3176,3178,514,1105,3183,1107,3187,3190,515,3195,3197,1108,3199,516,3201,1109,1111,3206,1112,3211,3213,1113,3218,3220,3222,3223,1114,207,1115,3229,3232,517,3236,3239,1116,3243,3244,1117,3248,1118,3252,518,3256,3258,1120,3260,1121,3264,1122,3267,3269,519,3272,1123,3277,1124,3281,520,3284,1125,3288,521,3291,3293,3294,522,3297,1127,3300,1128,3304,1129,3309,3311,3312,1131,3316,3317,1132,1134,1135,3322,1136,3325,3326,3327,1138,3329,3330,1139,525,3336,3339,1140,3341,1141,3344,3346,526,3349,3352,3354,3356,1142,3359,1143,3361,527,3365,283,3368,1145,3372,1146,3375,529,3378,3380,530,3383,3385,531,3388,1148,3391,1149,3394,532,3397,533,3401,3404,1150,3407,1151,3409,3411,1153,3415,3416,3417,210,3420,3422,3423,1155,3427,1156,3431,1157,3435,3438,534,3442,1158,3446,3448,1159,1160,3452,3455,3456,535,3459,3461,1161,3463,3465,3466,3467,3468,3469,3470,536,3471,1163,3476,3479,1165,538,3482,3484,539,3490,3495,1168,3501,1169,3505,1170,3510,1171,3512,3513,3514,3516,1173,3521,3523,3524,1175,3526,3528,3530,171,1176,3533,3534,3535,3536,1177,3538,287,1178,3545,3546,3547,3548,1179,3550,541,1180,3555,3556,3557,3558,1181,3560,542,1182,3564,3565,3566,3567,1183,3569,174,3571,544,3574,3576,3577,3578,1187,3580,546,3583,3584,3585,549,3587,1189,3589,550,1190,3594,3597,3598,3599,3600,1191,3603,1194,3607,1196,3610,3611,3612,3615,552,3617,3618,1197,3620,554,3623,3624,3625,3626,1198,3628,293,3632,3633,1200,3635,556,3638,3639,3640,3641,1201,3643,557,1203,3651,3652,3653,3654,1204,3656,558,559,1206,1207,3662,3663,560,1209,3667,3668,3669,3670,1210,3672,299,3674,3675,562,3677,1212,3682,563,3684,3685,3686,3687,1214,3690,3691,565,3693,1215,3696,566,3698,3699,3700,3701,1216,3703,1218,3709,302,3712,3713,3714,176,3718,1220,3721,3722,3723,1221,3724,1223,3730,3731,3732,3734,1224,1225,3739,3740,306,1229,3744,3745,3748,1231,568,1232,3754,3755,569,3758,570,3763,3764,1234,1235,571,3772,3773,1236,3775,1238,3777,3778,1239,3780,574,3782,3783,3784,3785,1240,3787,1241,3789,3790,3791,1242,309,3796,575,3802,1245,1246,3807,3809,3812,1248,3815,3817,3819,3821,577,3822,3824,3826,310,3830,1252,3832,3834,1253,3839,3841,3843,3846,1254,3852,3853,3857,3859,1257,3862,3864,3866,3868,3871,3874,3875,1259,311,3881,3884,1260,1261,3890], "../bin.mjs", "../CODE_OF_CONDUCT.md", "../codecov.yaml", @@ -3960,85 +3890,13 @@ [3,1261,28], "odule.css", [2,3888,3889], -[0,3892,4285,4300,4303,4313,4316,4319,4322,4332,4344,4346,4348,4350,4356,4359,4362,4371,4377,4380,4385,4394,4399,4402, -4405,4422,4425,4428,4431,4434,4437,4440,4443,4446,4449,4452,4455,4458,4461,4464,4467,4470,4473,4476,4479,4484,4489,4492, -4500,4503,4508,4513,4516,4528,123,4532,4535,4538,4541,4544,4547,4550,123,4553, -4556,4559,4562,4565,4568,4571,4574,4577,4580,4583,4586,4589,4592,4595,4598,4601,4604,4607,4610,4613,4616,4619,4622,4625, -4628,4631,4634,4637,4640,4643,4646,4649,4652,4655,4658,4661,4664,4667,4670,4673,4676,4679,4682,4685,4688,4691,4694,4697, -4700,4703,4706,4709,4712,4715,4718,4721,4724,4727,4730,4733,4736,4739,4742,4745, -4748,4751,4754,4757,4760,4763,4766,4769,4772,4775,4778,4781,4784,4787,4790,4793,4796,4799,4802,4805,4808,4811,4814,4817, -4820,4823,4825,4827,4830,4833,4836,4839,4842,4845,4848,4851,4854,4857,4860,4868,4873,4876,4879,4884,4889,4892,4895,4898, -4901,4904,4907,4910,4913,4916,4919,4922,4925,4928,4931,4934,4937,4940,4943,4946, -4949,4952,4955,4958,4961,4964,4967,4970,4973,4976,601,4981,4984,4987,4990,4993,4996,4999,5002,1345,5007,123,5010,5013, -5016,5019,5022,5025,5028,5031,5034,5037,5040,5043,5046,5049,5052,5055,123,5058,5061,5064,5067,5070,5073,5076,5079,5082, -5085,5088,1345,5091,123,5094,5097,5100,5103,5106,5109,5112,5115,5118,5121,5124, -5127,5130,5133,5136,5139,5142,5145,5148,5151,5154,5157,5160,5163,5166,5169,5172,5175,5178,5181,5184,5187,5190,5193,5196, -5199,5202,5205,5208,5211,5214,5217,5220,5223,5226,123,5229,5232,5235,5238,5241,5244,5247,5250,5253,5256,5259,5262,5265, -5268,5271,5274,5277,5280,5283,5286,5289,5292,5295,5298,5301,5304,5307,5310,5313, -5316,5319,5322,5325,5328,5331,5334,5337,5340,5343,5346,5349,5352,5355,5358,5361,5364,5367,5370,5373,5376,5379,5382,5385, -5388,5391,5394,5397,5400,5403,5406,5409,5412,5415,5418,5421,5424,5427,5430,5433,5436,5439,5442,5445,5448,5450,5453,5456, -5459,5462,5465,5468,5471,5474,5477,1347,5482,5492,5495,5500,5502,5508,5511,5514, -5517,5522,5525,5528,5531,5534,5537,5540,5543,5546,5549,5552,5555,5558,5561,5564,5567,5570,5573,5575,5578,5581,5584,5587, -5590,5593,5596,5599,5602,5605,5608,5611,5614,5617,5620,5623,5626,5629,5632,5635,5638,5641,5644,5647,5650,5653,5656,5659, -5662,5665,5668,5671,5674,5677,5680,5683,5686,5689,5692,5695,5698,5701,5704,5707, -5710,5713,5716,5719,5722,5725,5728,5731,5734,5737,5740,5743,5746,5749,5752,5755,5758,5761,5764,5767,5770,5773,5776,5779, -5782,5785,5788,5791,5794,5797,5800,5803,5806,5809,5812,5815,5818,5821,5824,5827,5830,5833,5836,5839,5842,5845,5848,5851, -5854,5857,5860,5863,5866,5869,5872,5875,5878,5881,5884,5887,5890,5893,5896,5899, -5902,5905,5908,5911,5914,5917,5920,5923,5926,5929,5932,5935,5938,5941,5944,5947,5950,5953,5956,5959,5962,5965,5968,5971, -5974,5977,5980,5983,5986,5989,5992,5995,5998,6001,6004,6007,6010,6013,6016,6019,6022,6025,6028,6031,6034,6037,6040,6043, -6046,6049,6052,6054,6057,6060,6063,6066,6069,6072,6075,6078,6081,6083,6086,6088, -6091,6094,6097,6100,6103,6106,6109,6112,6115,6118,6121,6124,6127,6130,6133,6136,6139,6142,6145,6148,6151,6154,6157,6160, -6163,6166,6169,6172,6175,6178,6181,6184,6187,6190,6193,6196,6199,6202,601,6205,6208,6211,6214,123,6217,1351,6222,6225, -6228,6231,6234,6237,6240,6243,6246,6249,6252,6255,6258,6261,6264,6267,6270,6273, -6276,6279,6282,6285,6288,6291,6294,6297,6300,6303,6306,6309,6312,6315,6318,6321,6324,6327,6330,6333,6336,6339,6342,6345, -6348,6351,6354,6357,6360,6363,6366,6369,6372,6375,6378,6381,6384,6387,1351,6390,6393,6396,6399,6402,6405,6408,6411,6414, -6417,6420,6423,6426,123,6429,6432,6435,6438,6441,6444,6447,6450,6453,6456,6459, -6462,6465,6468,6471,6474,6477,1347,6480,123,6483,6486,6489,6492,6495,6498,6501,6504,6507,6510,6513,6521,6526,6531,6534, -6537,6540,6543,6546,6549,6552,6555,6558,6561,6564,6567,6570,6573,6576,6579,6582,6585,6588,6591,6594,6597,6600,6603,6606, -6609,6612,6615,6618,6621,6624,6627,6630,6633,6636,6639,6642,6645,6648,6651,6654, -6657,6660,6663,6666,6669,6672,6675,6678,6681,6684,6686,6689,6692,6695,6698,6701,6704,6707,6710,6713,6716,6719,6722,6725, -6728,6730,6733,6736,6739,6742,6745,6748,6751,6754,6766,6771,6774,6779,6782,6785,6788,6791,6794,6797,6800,6803,6806,6809, -6812,6815,6818,6821,6824,6827,6830,6833,6836,6839,6842,6845,6848,6851,6854,6857, -6860,6863,6866,6869,6872,6875,6878,6881,6884,6887,6890,6893,6896,6899,6902,6905,6908,6911,6914,6917,6920,6923,6926,6929, -6932,6935,6938,6941,6944,6947,6950,6953,6956,6959,6962,6965,6968,6971,6974,1354,6979,6982,6985,6988,6991,6994,6997,7000, -7003,7006,7009,7012,7015,7018,7021,7024,7027,7030,7033,7036,7039,7042,7045,7048, -7051,7054,7057,7060,7063,7075,7078,7081,7084,7087,7090,7093,7096,7099,7102,7105,7108,7111,7114,7117,7120,7123,7126,7129, -7132,7135,7138,7141,7144,7147,7150,7153,7156,7159,7162,7165,7168,7171,7174,7177,7180,7183,7186,7189,7192,7195,7198,7201, -7204,7207,7210,7213,7216,7219,7222,7225,7228,7231,7234,7237,7240,7243,7246,7249, -7252,7255,7258,7261,7264,7267,7270,7273,7276,7279,7282,7285,7288,7291,7294,7296,7299,7302,7305,7308,7311,7314,7317,7320, -7323,7326,1354,7329,7332,7335,7338,7341,7344,7347,7350,7353,7356,7359,7362,7365,7368,7371,7374,7376,7379,123,7382,7385, -7388,7391,123,7394,7397,7400,7403,7406,7409,7412,7415,7418,7421,7424,7427,7430, -1355,7435,7438,7441,7444,1355,7447,7450,7453,7456,7459,7462,123,7465,7470,7473,7476,7479,7482,7485,7488,7491,7494,7497, -7500,7503,7506,7514,7517,7522,7528,7532,7543,7546,7549,7552,7555,7558,7561,7564,7567,7570,7573,7576,7579,7582,7585,7588, -7591,7594,7597,7600,7603,7606,7609,7612,7615,7618,7621,7624,7627,7630,7633,7636, -7639,7642,7645,7648,7651,7654,7657,7660,7663,7666,7669,7672,7675,7678,7681,7684,7687,7690,7693,7696,7699,7702,7705,7708, -7711,7714,7717,7720,7723,7726,7729,7732,7735,7738,7741,7744,7747,7750,7753,7756,7759,7762,7765,7768,7771,7774,7777,7780, -7783,7786,7789,7792,7795,7798,7801,7804,123,7807,7810,7813,7816,7819,7822,7825, -7828,7831,7834,601,7837,7840,7843,7846,7849,7852,7855,7858,7861,7864,7867,7870,7873,7876,7879,7882,7885,7888,7896,7901, -7904,7907,7910,7913,7916,7919,7922,7925,7928,7931,7934,7937,7940,7943,7946,7949,7952,7955,7958,7961,7964,7967,7970,7973, -7976,7979,7982,7985,7988,7991,7994,7997,8002,8005,8008,8011,8014,8017,8020,8023, -8026,8029,8032,8035,8038,8041,8044,8047,8050,8053,8056,8059,8062,8065,8068,8071,8074,8077,8080,8083,8086,8089,8092,8095, -8098,8101,8104,8107,8110,8113,8116,8119,8128,8140,8143,8146,8149,8152,8155,8158,8161,8164,8167,8170,8173,8179,8182,8185, -8188,8191,8194,8197,8200,8203,8206,8209,8212,8215,8218,8221,8224,8227,8230,8233, -1362,8238,1362,8241,1363,606,8248,8251,1364,8256,1364,8259,8262,606,8265,8268,8271,8274,8277,8280,1363,606,8283,8286, -8289,8291,8293,8302,8305,8307,608,8311,8319,8322,8324,608,1372,8329,8331,8334,8337,8340,8343,8346,8349,608,8352,1372, -8355,8364,8369,8372,8375,8378,8381,8384,8387,8390,8393,8396,8399,1374,8404,8407, -8410,8413,8416,8419,1374,1375,8424,8427,1376,1377,8434,1375,8437,8440,8443,1376,1377,8446,1378,1379,8453,611,1380,8460, -8463,8466,8481,8483,8485,8487,8490,8496,1378,1379,8499,611,1380,8502,8505,8508,8511,8514,8517,612,8522,1391,8527,8530, -8533,612,8536,8539,8542,611,1392,8547,8550,1391,8553,8556,8559,8562,8565,1392, -612,8568,8571,8574,8586,8589,8594,8600,8607,8609,8619,8621,8626,8628,8636,8639,8642,8645,8647,8650,8653,8664,8667,8670, -8673,8686,8690,8692,8695,8698,8711,8715,8717,8719,8722,8725,8728,8731,8734,8737,8740,8743,8746,8749,8752,8755,8758,8761, -8764,8767,1412,8772,8775,8778,8781,8784,1412,8787,8790,8797,8802,8804,8807,8816, -8839,8845,8869,8875,8878,8881,8884,8887,8890,8893,8896,8899,8902,8905,8913,8919,8922,8925,8930,8933,8938,8941,8944,8947, -8950,8965,8968,8971,8974,8977,8980,8983,8986,8989,8992,8995,9001,9004,9007,9010,9013,9016,9019,9024,9027,9030,9033], +[0,3892,4285,4300,4303,4313,4316,4319,4322,4332,4344,4346,4348,4350,4356,4359,4362,4371,4377,4380,4385,4394,4399,4402,4405,4422,4425,4428,4431,4434,4437,4440,4443,4446,4449,4452,4455,4458,4461,4464,4467,4470,4473,4476,4479,4484,4489,4492,4500,4503,4508,4513,4516,4528,123,4532,4535,4538,4541,4544,4547,4550,123,4553,4556,4559,4562,4565,4568,4571,4574,4577,4580,4583,4586,4589,4592,4595,4598,4601,4604,4607,4610,4613,4616,4619,4622,4625,4628,4631,4634,4637,4640,4643,4646,4649,4652,4655,4658,4661,4664,4667,4670,4673,4676,4679,4682,4685,4688,4691,4694,4697,4700,4703,4706,4709,4712,4715,4718,4721,4724,4727,4730,4733,4736,4739,4742,4745,4748,4751,4754,4757,4760,4763,4766,4769,4772,4775,4778,4781,4784,4787,4790,4793,4796,4799,4802,4805,4808,4811,4814,4817,4820,4823,4825,4827,4830,4833,4836,4839,4842,4845,4848,4851,4854,4857,4860,4868,4873,4876,4879,4884,4889,4892,4895,4898,4901,4904,4907,4910,4913,4916,4919,4922,4925,4928,4931,4934,4937,4940,4943,4946,4949,4952,4955,4958,4961,4964,4967,4970,4973,4976,601,4981,4984,4987,4990,4993,4996,4999,5002,1345,5007,123,5010,5013,5016,5019,5022,5025,5028,5031,5034,5037,5040,5043,5046,5049,5052,5055,123,5058,5061,5064,5067,5070,5073,5076,5079,5082,5085,5088,1345,5091,123,5094,5097,5100,5103,5106,5109,5112,5115,5118,5121,5124,5127,5130,5133,5136,5139,5142,5145,5148,5151,5154,5157,5160,5163,5166,5169,5172,5175,5178,5181,5184,5187,5190,5193,5196,5199,5202,5205,5208,5211,5214,5217,5220,5223,5226,123,5229,5232,5235,5238,5241,5244,5247,5250,5253,5256,5259,5262,5265,5268,5271,5274,5277,5280,5283,5286,5289,5292,5295,5298,5301,5304,5307,5310,5313,5316,5319,5322,5325,5328,5331,5334,5337,5340,5343,5346,5349,5352,5355,5358,5361,5364,5367,5370,5373,5376,5379,5382,5385,5388,5391,5394,5397,5400,5403,5406,5409,5412,5415,5418,5421,5424,5427,5430,5433,5436,5439,5442,5445,5448,5450,5453,5456,5459,5462,5465,5468,5471,5474,5477,1347,5482,5492,5495,5500,5502,5508,5511,5514,5517,5522,5525,5528,5531,5534,5537,5540,5543,5546,5549,5552,5555,5558,5561,5564,5567,5570,5573,5575,5578,5581,5584,5587,5590,5593,5596,5599,5602,5605,5608,5611,5614,5617,5620,5623,5626,5629,5632,5635,5638,5641,5644,5647,5650,5653,5656,5659,5662,5665,5668,5671,5674,5677,5680,5683,5686,5689,5692,5695,5698,5701,5704,5707,5710,5713,5716,5719,5722,5725,5728,5731,5734,5737,5740,5743,5746,5749,5752,5755,5758,5761,5764,5767,5770,5773,5776,5779,5782,5785,5788,5791,5794,5797,5800,5803,5806,5809,5812,5815,5818,5821,5824,5827,5830,5833,5836,5839,5842,5845,5848,5851,5854,5857,5860,5863,5866,5869,5872,5875,5878,5881,5884,5887,5890,5893,5896,5899,5902,5905,5908,5911,5914,5917,5920,5923,5926,5929,5932,5935,5938,5941,5944,5947,5950,5953,5956,5959,5962,5965,5968,5971,5974,5977,5980,5983,5986,5989,5992,5995,5998,6001,6004,6007,6010,6013,6016,6019,6022,6025,6028,6031,6034,6037,6040,6043,6046,6049,6052,6054,6057,6060,6063,6066,6069,6072,6075,6078,6081,6083,6086,6088,6091,6094,6097,6100,6103,6106,6109,6112,6115,6118,6121,6124,6127,6130,6133,6136,6139,6142,6145,6148,6151,6154,6157,6160,6163,6166,6169,6172,6175,6178,6181,6184,6187,6190,6193,6196,6199,6202,601,6205,6208,6211,6214,123,6217,1351,6222,6225,6228,6231,6234,6237,6240,6243,6246,6249,6252,6255,6258,6261,6264,6267,6270,6273,6276,6279,6282,6285,6288,6291,6294,6297,6300,6303,6306,6309,6312,6315,6318,6321,6324,6327,6330,6333,6336,6339,6342,6345,6348,6351,6354,6357,6360,6363,6366,6369,6372,6375,6378,6381,6384,6387,1351,6390,6393,6396,6399,6402,6405,6408,6411,6414,6417,6420,6423,6426,123,6429,6432,6435,6438,6441,6444,6447,6450,6453,6456,6459,6462,6465,6468,6471,6474,6477,1347,6480,123,6483,6486,6489,6492,6495,6498,6501,6504,6507,6510,6513,6521,6526,6531,6534,6537,6540,6543,6546,6549,6552,6555,6558,6561,6564,6567,6570,6573,6576,6579,6582,6585,6588,6591,6594,6597,6600,6603,6606,6609,6612,6615,6618,6621,6624,6627,6630,6633,6636,6639,6642,6645,6648,6651,6654,6657,6660,6663,6666,6669,6672,6675,6678,6681,6684,6686,6689,6692,6695,6698,6701,6704,6707,6710,6713,6716,6719,6722,6725,6728,6730,6733,6736,6739,6742,6745,6748,6751,6754,6766,6771,6774,6779,6782,6785,6788,6791,6794,6797,6800,6803,6806,6809,6812,6815,6818,6821,6824,6827,6830,6833,6836,6839,6842,6845,6848,6851,6854,6857,6860,6863,6866,6869,6872,6875,6878,6881,6884,6887,6890,6893,6896,6899,6902,6905,6908,6911,6914,6917,6920,6923,6926,6929,6932,6935,6938,6941,6944,6947,6950,6953,6956,6959,6962,6965,6968,6971,6974,1354,6979,6982,6985,6988,6991,6994,6997,7000,7003,7006,7009,7012,7015,7018,7021,7024,7027,7030,7033,7036,7039,7042,7045,7048,7051,7054,7057,7060,7063,7075,7078,7081,7084,7087,7090,7093,7096,7099,7102,7105,7108,7111,7114,7117,7120,7123,7126,7129,7132,7135,7138,7141,7144,7147,7150,7153,7156,7159,7162,7165,7168,7171,7174,7177,7180,7183,7186,7189,7192,7195,7198,7201,7204,7207,7210,7213,7216,7219,7222,7225,7228,7231,7234,7237,7240,7243,7246,7249,7252,7255,7258,7261,7264,7267,7270,7273,7276,7279,7282,7285,7288,7291,7294,7296,7299,7302,7305,7308,7311,7314,7317,7320,7323,7326,1354,7329,7332,7335,7338,7341,7344,7347,7350,7353,7356,7359,7362,7365,7368,7371,7374,7376,7379,123,7382,7385,7388,7391,123,7394,7397,7400,7403,7406,7409,7412,7415,7418,7421,7424,7427,7430,1355,7435,7438,7441,7444,1355,7447,7450,7453,7456,7459,7462,123,7465,7470,7473,7476,7479,7482,7485,7488,7491,7494,7497,7500,7503,7506,7514,7517,7522,7528,7532,7543,7546,7549,7552,7555,7558,7561,7564,7567,7570,7573,7576,7579,7582,7585,7588,7591,7594,7597,7600,7603,7606,7609,7612,7615,7618,7621,7624,7627,7630,7633,7636,7639,7642,7645,7648,7651,7654,7657,7660,7663,7666,7669,7672,7675,7678,7681,7684,7687,7690,7693,7696,7699,7702,7705,7708,7711,7714,7717,7720,7723,7726,7729,7732,7735,7738,7741,7744,7747,7750,7753,7756,7759,7762,7765,7768,7771,7774,7777,7780,7783,7786,7789,7792,7795,7798,7801,7804,123,7807,7810,7813,7816,7819,7822,7825,7828,7831,7834,601,7837,7840,7843,7846,7849,7852,7855,7858,7861,7864,7867,7870,7873,7876,7879,7882,7885,7888,7896,7901,7904,7907,7910,7913,7916,7919,7922,7925,7928,7931,7934,7937,7940,7943,7946,7949,7952,7955,7958,7961,7964,7967,7970,7973,7976,7979,7982,7985,7988,7991,7994,7997,8002,8005,8008,8011,8014,8017,8020,8023,8026,8029,8032,8035,8038,8041,8044,8047,8050,8053,8056,8059,8062,8065,8068,8071,8074,8077,8080,8083,8086,8089,8092,8095,8098,8101,8104,8107,8110,8113,8116,8119,8128,8140,8143,8146,8149,8152,8155,8158,8161,8164,8167,8170,8173,8179,8182,8185,8188,8191,8194,8197,8200,8203,8206,8209,8212,8215,8218,8221,8224,8227,8230,8233,1362,8238,1362,8241,1363,606,8248,8251,1364,8256,1364,8259,8262,606,8265,8268,8271,8274,8277,8280,1363,606,8283,8286,8289,8291,8293,8302,8305,8307,608,8311,8319,8322,8324,608,1372,8329,8331,8334,8337,8340,8343,8346,8349,608,8352,1372,8355,8364,8369,8372,8375,8378,8381,8384,8387,8390,8393,8396,8399,1374,8404,8407,8410,8413,8416,8419,1374,1375,8424,8427,1376,1377,8434,1375,8437,8440,8443,1376,1377,8446,1378,1379,8453,611,1380,8460,8463,8466,8481,8483,8485,8487,8490,8496,1378,1379,8499,611,1380,8502,8505,8508,8511,8514,8517,612,8522,1391,8527,8530,8533,612,8536,8539,8542,611,1392,8547,8550,1391,8553,8556,8559,8562,8565,1392,612,8568,8571,8574,8586,8589,8594,8600,8607,8609,8619,8621,8626,8628,8636,8639,8642,8645,8647,8650,8653,8664,8667,8670,8673,8686,8690,8692,8695,8698,8711,8715,8717,8719,8722,8725,8728,8731,8734,8737,8740,8743,8746,8749,8752,8755,8758,8761,8764,8767,1412,8772,8775,8778,8781,8784,1412,8787,8790,8797,8802,8804,8807,8816,8839,8845,8869,8875,8878,8881,8884,8887,8890,8893,8896,8899,8902,8905,8913,8919,8922,8925,8930,8933,8938,8941,8944,8947,8950,8965,8968,8971,8974,8977,8980,8983,8986,8989,8992,8995,9001,9004,9007,9010,9013,9016,9019,9024,9027,9030,9033], [1,2,3894], "data", [0,3,4284], "d", [0,3897,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86], "h", [0,3901,3902], "dict.txt", @@ -4429,9 +4287,7 @@ true, [1,2,4286], [0,8,4299], [0,4288,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], [0,4292,4293], [3,588,109], "entities.txt.gz", @@ -4449,9 +4305,7 @@ true, [1,2,4304], [0,1320,4312], [0,4306,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,596,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70, -71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,596,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], [0,4310,4311], [3,589,76], "dict/k8s.txt", @@ -4470,9 +4324,7 @@ true, [1,2,4323], [0,318,4331], [0,4325,87,88], -[0,11,12,13,1321,1323,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44, -45,46,47,48,49,50,51,52,596,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,1321,1323,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,596,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], [0,4328,4329], [3,183,13], [2,4327,1322], @@ -4482,9 +4334,7 @@ true, [1,2,4333], [0,319,1327], [0,4335,87,88], -[0,11,12,13,1325,1326,1328,1330,1332,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39, -40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66, -67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,1325,1326,1328,1330,1332,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], [0,4338,4339], "cspell", [2,624,597], @@ -4503,9 +4353,7 @@ true, [0,4352,4355], [1,10,4353], [0,4354,87,88], -[0,11,12,13,1325,1326,1328,1330,1332,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39, -40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63, -64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,1325,1326,1328,1330,1332,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], "37468914003753d7b1a07b8df9928548", [1,2,4357], [0,318,4358], @@ -4517,9 +4365,7 @@ true, [0,4364,4370], [1,10,4365], [0,4366,87,88], -[0,11,12,13,1334,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44, -45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67, -68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86], +[0,11,12,13,1334,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86], [0,1335,4369], [3,183,18,27], "8d9fe7a81bc2ad3641b0aa505d6000f2", @@ -4528,9 +4374,7 @@ true, [0,4373,4376], [1,10,4374], [0,4375,87,88], -[0,11,12,13,1334,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46, -47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67, -68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,1334,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], "a62ed8a89a26760f4a2a3362c90c1d0a", [1,2,4378], [0,318,4379], @@ -4539,15 +4383,11 @@ true, [0,4382,1324], [1,10,4383], [0,4384,87,88], -[0,11,12,13,1321,1323,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44, -45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69, -70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,1321,1323,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], [1,2,4386], [0,1336,4393], [0,4388,87,88], -[0,11,12,13,598,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46, -47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67, -68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,598,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], [0,4391,4392], [3,330,22], [2,4390,1322], @@ -4556,9 +4396,7 @@ true, [1,2,4395], [0,108,4398], [0,4397,87,88], -[0,11,12,13,598,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45, -46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67, -68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86], +[0,11,12,13,598,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86], "dc8af609b0ce16051759f6d633f152f6", [1,2,4400], [0,108,4401], @@ -4570,9 +4408,7 @@ true, [0,4407,4421], [1,10,4408], [0,4409,87,88], -[0,11,12,13,598,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70, -71,72,1337,1340,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,598,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,1337,1340,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], [0,1339,4414], [3,1312,79], "dict/bash", @@ -4645,16 +4481,12 @@ true, [1,2,4480], [0,133,4483], [0,4482,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69, -70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], "f9d14dc28980c04a05383da7ba1a76cf", [1,2,4485], [0,161,4488], [0,4487,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, -72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], "a19e4a6ecd68176a64769769fca6a7bc", [1,95,4490], [0,4491], @@ -4662,9 +4494,7 @@ true, [1,2,4493], [0,1341,1318], [0,4495,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,320], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,320], [0,4498,4499], [3,185,39], [2,4497,312], @@ -4676,15 +4506,11 @@ true, [0,4505,162], [1,10,4506], [0,4507,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, -72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,320], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,320], [1,2,4509], [0,1342,4512], [0,4511,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,320], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,320], "42c270afd74ad4193ddaa89e21800c86", [1,2,4514], [0,1342,4515], @@ -4693,9 +4519,7 @@ true, [0,4518,4527], [1,10,4519], [0,4520,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,4521,69,70, -71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,320], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,4521,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,320], [1,7,4522], [0,4525,4526], [3,593,71], @@ -5038,9 +4862,7 @@ true, [1,2,4861], [0,600,4867], [0,4863,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,321], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,321], [0,4865,4866], [2,188,218], "c2bba43310e2e6f219b8b643caacbb25", @@ -5049,9 +4871,7 @@ true, [0,4870,162], [1,10,4871], [0,4872,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, -72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,321], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,321], [1,2,4874], [0,600,4875], "b32314bec757e3dff081df2efd038322", @@ -5061,16 +4881,12 @@ true, [1,2,4880], [0,100,4883], [0,4882,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,321], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,321], "861d3005e14d97f586e36b14ea3edbb8", [1,2,4885], [0,1344,4888], [0,4887,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69, -70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,321], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,321], "ff223fcf8699bd0394341064a95425c7", [1,2,4890], [0,100,4891], @@ -5668,9 +5484,7 @@ true, [1,2,5483], [0,5,5491], [0,5485,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,322], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,322], [0,5489,5490], [3,597,14], [2,5487,317], @@ -5683,9 +5497,7 @@ true, [1,2,5496], [0,135,5499], [0,5498,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,322], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,322], "dd13d4fe84707af342d03b344a5e08c0", [1,2,5501], [0,135,1348], @@ -5693,9 +5505,7 @@ true, [0,5504,5507], [1,10,5505], [0,5506,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69, -70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,322], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,322], "c33d162a934a26bcf9e770d203a802d0", [1,2,5509], [0,135,5510], @@ -5710,9 +5520,7 @@ true, [0,5519,162], [1,10,5520], [0,5521,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, -72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,322], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,322], [1,2,5523], [0,135,5524], "1a20908467e66a6a06e185ca981ad994", @@ -6707,9 +6515,7 @@ true, [1,2,6514], [0,92,6520], [0,6516,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,602], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,602], [0,6518,6519], [2,168,1352], "874d2ef214a58fc4e6b553a2ee7b8132", @@ -6717,17 +6523,13 @@ true, [1,2,6522], [0,603,6525], [0,6524,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,602], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,602], "943cb5c9b43bee3cdcba4608cd5786de", [1,2,6527], [0,6528,162], [1,10,6529], [0,6530,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, -72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,602], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,602], [1,2,6532], [0,603,6533], "d411dda5f9b9801b6bed379d7a1445b5", @@ -6954,9 +6756,7 @@ true, [1,2,6755], [0,6,6765], [0,6757,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,323,37,38,39,40,41,42,105,43,44,45, -46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67, -68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,324], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,323,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,324], [0,1353,6761], "s-es@3.0.3/node_modules/@cspell/dict-es-", [2,6759,585], @@ -6968,9 +6768,7 @@ true, [1,2,6767], [0,325,6770], [0,6769,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,323,37,38,39,40,41,42,43,44,45,46, -47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67, -68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,324], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,323,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,324], "454a35eb556a84a72f057104ea472ac8", [1,2,6772], [0,325,6773], @@ -6979,9 +6777,7 @@ true, [0,6776,162], [1,10,6777], [0,6778,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,323,37,38,39,40,41,42,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70, -71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,324], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,323,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,324], [1,2,6780], [0,325,6781], "117c1ed2deff5ea85f7e2e6ae2a62d02", @@ -7270,9 +7066,7 @@ true, [0,7065,7074], [1,10,7066], [0,7067,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,7068,323,37,38,39,40,41,42,105,43, -44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66, -67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,324], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,7068,323,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,324], [1,7,7069], [0,7072,7073], [3,1353,79], @@ -7673,9 +7467,7 @@ true, [1,2,7466], [0,1356,7469], [0,7468,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,106,84,85,86], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,106,84,85,86], "d4415a1755e4ecb6bf5538670c8e698c", [1,2,7471], [0,3,7472], @@ -7716,9 +7508,7 @@ true, [1,2,7507], [0,9,7513], [0,7509,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,220], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,220], [0,7511,7512], [2,138,219], "32902c14646906e4e1498d8d3d2dfbd2", @@ -7730,30 +7520,22 @@ true, [0,7519,1348], [1,10,7520], [0,7521,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], [1,2,7523], [0,7524,7527], [1,10,7525], [0,7526,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69, -70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], "c275e4bb3458c70f1eebb5cae6899831", [1,2,7529], [0,604,162], [0,7531,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, -72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], [1,2,7533], [0,7534,7542], [1,10,7535], [0,7536,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,1357,56,57,58,59,60,61,62,94,63,64,65,66,67, -68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,1357,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,220], [0,7540,7541], [3,1300,91], "dict/lorem.txt", @@ -8108,9 +7890,7 @@ true, [1,2,7889], [0,104,7895], [0,7891,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,605], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,605], [0,7893,7894], [2,158,1352], "a41b90bf27684a094f4a19ce328d9f35", @@ -8118,9 +7898,7 @@ true, [1,2,7897], [0,1358,7900], [0,7899,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,605], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,605], "3969c896131782db6f649426928239eb", [1,95,7902], [0,7903], @@ -8221,9 +7999,7 @@ true, [1,2,7998], [0,1359,8001], [0,8000,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, -72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,605], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,605], "008be8b1263ad5d61395b87b8c0d0681", [1,2,8003], [0,1358,8004], @@ -8345,9 +8121,7 @@ true, [1,2,8120], [0,1360,8127], [0,8122,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, -72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1361], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1361], [0,8125,8126], [3,538,37], [2,8124,218], @@ -8357,9 +8131,7 @@ true, [0,8130,8139], [1,10,8131], [0,8132,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,8133,36,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, -72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1361], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,8133,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1361], [1,7,8134], [0,8137,8138], [3,1282,80], @@ -8404,9 +8176,7 @@ true, [0,8175,8178], [1,10,8176], [0,8177,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, -72,1337,1340,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,1337,1340,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86], "3fcc6658a4dd79be6390db9c96660048", [1,2,8180], [0,133,8181], @@ -8525,9 +8295,7 @@ true, [1,2,8294], [0,1367,607], [0,8296,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8297], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8297], [1,7,8298], [0,8300,8301], [3,544,56], @@ -8545,9 +8313,7 @@ true, [1,2,8312], [0,1369,1370], [0,8314,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8315], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8315], [1,7,8316], [0,8317,8318], [2,1188,181], @@ -8592,9 +8358,7 @@ true, [0,8357,8363], [1,10,8358], [0,8359,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1373], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1373], [0,8361,8362], [2,551,181], "6bf7f382ba45975e4f3a86d398130acb", @@ -8602,9 +8366,7 @@ true, [1,2,8365], [0,610,8368], [0,8367,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1373], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1373], "1f754e82a21913a3b26ad702ee33db18", [1,2,8370], [0,610,8371], @@ -8706,9 +8468,7 @@ true, [1,2,8467], [0,1381,8480], [0,8469,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1382,1384,1385,1387,1389], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1382,1384,1385,1387,1389], [0,1383,8471], "388dfb8a44ebfe383d53df52ca11652f", [0,8475,8476], @@ -8733,9 +8493,7 @@ true, [0,8492,8495], [1,10,8493], [0,8494,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1382,1384,1385,1387,1389], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1382,1384,1385,1387,1389], "72d3b341308b69ea59cb47e9c9d492db", [1,2,8497], [0,3,8498], @@ -8819,9 +8577,7 @@ true, [0,8576,8585], [1,10,8577], [0,8578,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,613], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,613], [0,8583,8584], [3,1335,19,25], ".config", @@ -8836,23 +8592,17 @@ true, [0,8591,1393], [1,10,8592], [0,8593,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, -72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,613], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,613], [1,2,8595], [0,8596,8599], [1,10,8597], [0,8598,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,613], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,613], "fd8efa07131f2a6277ec65fbac472cdb", [1,2,8601], [0,614,1365], [0,8603,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1394], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1394], [0,8605,8606], [2,304,181], "ccc2d1066420a0959711f42a13de76a3", @@ -8862,9 +8612,7 @@ true, [0,8611,607], [1,10,8612], [0,8613,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8614], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8614], [1,7,8615], [0,8617,8618], [3,1220,52], @@ -8875,18 +8623,14 @@ true, [1,2,8622], [0,1395,8625], [0,8624,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1394], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1394], "8c37bbd1f947a25559f0847619ba776f", [1,2,8627], [0,1395,609], [1,2,8629], [0,1396,1370], [0,8631,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8632], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,8632], [1,7,8633], [0,8634,8635], [2,1222,181], @@ -8912,9 +8656,7 @@ true, [0,8655,8663], [1,10,8656], [0,8657,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,8658], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,8658], [1,7,8659], [0,8661,8662], [3,1224,42], @@ -8933,9 +8675,7 @@ true, [1,2,8674], [0,1397,8685], [0,8676,87,88], -[0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48, -102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69, -70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1398,1401,1402], +[0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1398,1401,1402], [0,1400,8679], [3,180,15,75], "801dd6efb9e1cf30b06c8a095f6e31f4", @@ -8948,9 +8688,7 @@ true, [1,2,8687], [0,615,1403], [0,8689,87,88], -[0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48, -49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72, -73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1398,1401,1402], +[0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1398,1401,1402], [1,2,8691], [0,615,1404], [1,2,8693], @@ -8962,9 +8700,7 @@ true, [1,2,8699], [0,616,8710], [0,8701,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,1405,1407,1408,1410], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,1405,1407,1408,1410], [0,1406,8703], "234ab67fcae73e97a1a40888d8725f84", [0,8706,8707], @@ -8977,9 +8713,7 @@ true, [1,2,8712], [0,140,1409], [0,8714,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71, -72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,1405,1407,1408,1410], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,1405,1407,1408,1410], [1,2,8716], [0,140,1411], [1,2,8718], @@ -9058,18 +8792,14 @@ true, [1,2,8791], [0,1413,1371], [0,8793,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1414], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,1414], [0,8795,8796], [2,308,219], "8a80554c91d9fca8acb82f023de02f11", [1,2,8798], [0,1415,8801], [0,8800,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1414], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,1414], "9a4e247bc261ef5a8b0b22cc7ddf0eae", [1,2,8803], [0,1415,609], @@ -9080,9 +8810,7 @@ true, [0,8809,8815], [1,10,8810], [0,8811,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221], [0,8813,8814], [2,1243,219], "a09d0b2ea2069aac912249c0f5c1d20c", @@ -9091,9 +8819,7 @@ true, [0,8818,1424], [1,10,8819], [0,8820,87,88], -[0,1416,1419,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44, -45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69, -70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1420,1422,1423], +[0,1416,1419,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1420,1422,1423], [0,1418], [3,1287,21,52], [0,8826], @@ -9116,17 +8842,13 @@ true, [0,8841,8844], [1,10,8842], [0,8843,87,88], -[0,1416,1419,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44, -45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66, -67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1420,1422,1423], +[0,1416,1419,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1420,1422,1423], "88bcb91b13ca0e0e6a818a0c213ad0af", [1,2,8846], [0,8847,1424], [1,10,8848], [0,8849,87,88], -[0,1425,1427,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44, -45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69, -70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1428,1430], +[0,1425,1427,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1428,1430], [0,1426], [3,1417,28], [3,1283,18,39], @@ -9150,9 +8872,7 @@ true, [0,8871,8874], [1,10,8872], [0,8873,87,88], -[0,1425,1427,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44, -45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66, -67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1428,1430], +[0,1425,1427,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,221,1428,1430], "42a4067531f558c933e7e82a2e9c540e", [1,2,8876], [0,3,8877], @@ -9187,9 +8907,7 @@ true, [1,2,8906], [0,182,8912], [0,8908,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46, -47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,163], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,107,81,82,83,106,84,85,86,163], [0,8910,8911], [2,177,218], "859964b96e4ff5ac6122b109744b8ea0", @@ -9198,9 +8916,7 @@ true, [0,8915,8918], [1,10,8916], [0,8917,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69, -70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], "ffb11ec2753d2ea4e800d803eab86424", [1,2,8920], [0,182,8921], @@ -9211,9 +8927,7 @@ true, [1,2,8926], [0,114,8929], [0,8928,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], "85a8af0906b9e0336a929ede6d5b9e93", [1,2,8931], [0,114,8932], @@ -9221,9 +8935,7 @@ true, [1,2,8934], [0,1431,8937], [0,8936,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,49,50,51,52,596,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70, -71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,596,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], "24f4c98cfe88b1df417949cb9b7f76ef", [1,95,8939], [0,8940], @@ -9240,9 +8952,7 @@ true, [1,2,8951], [0,618,8964], [0,8953,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,1432,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,1433,41,42,105,43, -44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64, -65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,106,84,85,86,163], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,1432,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,1433,41,42,105,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,56,57,58,59,60,61,101,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,106,84,85,86,163], [0,8957,8958], [3,1274,76], "dict/css.txt", @@ -9288,9 +8998,7 @@ true, [0,8997,9000], [1,10,8998], [0,8999,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47, -48,102,49,103,50,51,52,53,54,55,1357,56,57,58,59,60,61,62,94,63,64,65,66,67, -68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,41,42,43,44,45,46,47,48,102,49,103,50,51,52,53,54,55,1357,56,57,58,59,60,61,62,94,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], "fa7374ccdef4a314104b7d7910c08e76", [1,2,9002], [0,114,9003], @@ -9313,9 +9021,7 @@ true, [1,2,9020], [0,619,9023], [0,9022,87,88], -[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,1432,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,1433,41,42,105,43, -44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68, -69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], +[0,11,12,13,14,15,16,17,18,19,90,20,21,22,23,24,1432,25,26,27,28,29,30,31,32,33,34,35,36,89,37,38,39,40,1433,41,42,105,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,91,78,79,80,81,82,83,84,85,86,163], "1908952e54fff1991de634178bb8acb4", [1,2,9025], [0,619,9026], diff --git a/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileList.jsonc b/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileList.jsonc index 96759a2e418a..c7fc36ede7d1 100644 --- a/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileList.jsonc +++ b/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileList.jsonc @@ -1,35 +1,6 @@ [ "Flatpack JSON v1", -[0,2,3,4,7,10,12,15,17,20,22,24,26,28,31,33,35,37,39,42,44,46,48,50,52,55,57,59,62,64,67,71,73,76,79,81,83,85,88,90,93,95, -96,99,101,103,106,108,111,112,114,116,120,122,125,127,132,134,136,138,140,142,144,146, -148,150,152,154,156,159,161,163,165,166,169,170,172,174,176,179,181,183,186,188,191,193,195,198,200,203,206,209,211,214, -216,218,220,222,223,225,227,229,231,233,236,238,240,242,246,249,250,253,255,258,260,262,264,266,268,271,273,275,278,280, -282,285,287,289, -292,295,298,300,301,305,307,310,312,313,316,318,320,322,324,326,328,330,332,335,337,339,341,344,346,348,350,353,355,358, -360,362,364,366,368,370,372,374,376,378,381,384,385,387,389,391,393,395,397,400,402,405,407,409,411,413,415,417,419,422, -424,426,429,431, -433,435,437,439,442,444,446,448,451,453,456,458,460,462,464,467,469,471,473,474,476,478,481,483,485,487,489,491,493,495, -497,499,501,503,505,507,509,511,513,515,517,519,521,523,525,527,529,531,533,535,537,539,541,543,545,547,549,551,553,555, -557,559,561,563, -565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599,601,603,605,607,609,611,613,615,617,619,621,623, -625,627,629,631,633,635,637,639,641,643,645,647,649,651,653,655,657,659,661,663,665,667,669,671,673,675,677,679,681,683, -685,687,689,691, -693,695,696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734,736,738,740,742,744,746,748,750, -752,754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798,800,802,804,806,808,810, -812,814,816,818, -820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862,864,866,868,870,872,874,876,879, -881,883,885,886,888,890,892,894,896,898,899,901,903,904,907,910,912,914,915,916,919,922,924,928,931,935,937,939,941,943, -946,948,950,952, -954,957,959,961,963,965,967,970,972,974,977,979,982,985,987,990,993,995,997,999,1001,1003,1006,1008,1009,1011,1013,1015, -1018,1020,1023,1024,1026,1028,1032,1034,1037,1039,1041,1043,1045,1047,1049,1051,1052,1054,1056,1058,1061,1063,1065,1068, -1070,1072,1074,1076,1078,1080,1082,1084,1086,1089,1091,1093, -1096,1098,1101,1103,1105,1109,1111,1114,1117,1120,1122,1125,1127,1129,1131,1133,1134,1136,1138,1140,1142,1144,1147,1149, -1151,1153,1156,1159,1160,1162,1164,1166,1168,1171,1173,1175,1177,1179,1181,1184,1186,1188,1191,1193,1195,1198,1200,1202, -1205,1208,1211,1213,1214,1217,1219,1222,1224,1225,1228,1230,1232,1234,1236,1238, -1240,1243,1245,1248,1250,1253,1255,1258,1260,1262,1264,1267,1269,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292, -1295,1297,1299,1301,1303,1306,1308,1310,1312,1315,1317,1320,1322,1324,1326,1328,1330,1332,1334,1337,1339,1341,1344,1346, -1348,1350,1352,1354,1357,1359,1361,1363,1366,1368,1371,1373,1375,1377,1379,1381, -1384,1386,1389,1391,1393,1395,1397,1399], +[0,2,3,4,7,10,12,15,17,20,22,24,26,28,31,33,35,37,39,42,44,46,48,50,52,55,57,59,62,64,67,71,73,76,79,81,83,85,88,90,93,95,96,99,101,103,106,108,111,112,114,116,120,122,125,127,132,134,136,138,140,142,144,146,148,150,152,154,156,159,161,163,165,166,169,170,172,174,176,179,181,183,186,188,191,193,195,198,200,203,206,209,211,214,216,218,220,222,223,225,227,229,231,233,236,238,240,242,246,249,250,253,255,258,260,262,264,266,268,271,273,275,278,280,282,285,287,289,292,295,298,300,301,305,307,310,312,313,316,318,320,322,324,326,328,330,332,335,337,339,341,344,346,348,350,353,355,358,360,362,364,366,368,370,372,374,376,378,381,384,385,387,389,391,393,395,397,400,402,405,407,409,411,413,415,417,419,422,424,426,429,431,433,435,437,439,442,444,446,448,451,453,456,458,460,462,464,467,469,471,473,474,476,478,481,483,485,487,489,491,493,495,497,499,501,503,505,507,509,511,513,515,517,519,521,523,525,527,529,531,533,535,537,539,541,543,545,547,549,551,553,555,557,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599,601,603,605,607,609,611,613,615,617,619,621,623,625,627,629,631,633,635,637,639,641,643,645,647,649,651,653,655,657,659,661,663,665,667,669,671,673,675,677,679,681,683,685,687,689,691,693,695,696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734,736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798,800,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862,864,866,868,870,872,874,876,879,881,883,885,886,888,890,892,894,896,898,899,901,903,904,907,910,912,914,915,916,919,922,924,928,931,935,937,939,941,943,946,948,950,952,954,957,959,961,963,965,967,970,972,974,977,979,982,985,987,990,993,995,997,999,1001,1003,1006,1008,1009,1011,1013,1015,1018,1020,1023,1024,1026,1028,1032,1034,1037,1039,1041,1043,1045,1047,1049,1051,1052,1054,1056,1058,1061,1063,1065,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1089,1091,1093,1096,1098,1101,1103,1105,1109,1111,1114,1117,1120,1122,1125,1127,1129,1131,1133,1134,1136,1138,1140,1142,1144,1147,1149,1151,1153,1156,1159,1160,1162,1164,1166,1168,1171,1173,1175,1177,1179,1181,1184,1186,1188,1191,1193,1195,1198,1200,1202,1205,1208,1211,1213,1214,1217,1219,1222,1224,1225,1228,1230,1232,1234,1236,1238,1240,1243,1245,1248,1250,1253,1255,1258,1260,1262,1264,1267,1269,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1295,1297,1299,1301,1303,1306,1308,1310,1312,1315,1317,1320,1322,1324,1326,1328,1330,1332,1334,1337,1339,1341,1344,1346,1348,1350,1352,1354,1357,1359,1361,1363,1366,1368,1371,1373,1375,1377,1379,1381,1384,1386,1389,1391,1393,1395,1397,1399], "api/api.d.ts", "dist/esm/Cache/cspell.cache.d.ts", [2,5,6], diff --git a/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileObjects.jsonc b/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileObjects.jsonc index 275e319bad3f..f82a87084dd3 100644 --- a/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileObjects.jsonc +++ b/packages/flatpack-json/src/__snapshots__/FlatpackV1_fileObjects.jsonc @@ -1,35 +1,6 @@ [ "Flatpack JSON v1", -[0,2,10,13,18,23,27,32,36,41,45,49,53,57,62,66,70,74,78,83,87,91,95,99,103,108,112,116,121,125,130,136,140,145,150,154, -158,162,167,171,176,180,183,188,192,196,201,205,210,213,217,221,227,231,236,240,247,251,255,259,263,267,271,275, -279,283,287,291,295,300,304,308,312,315,320,323,327,331,335,340,344,348,353,357,362,366,370,375,379,384,389,394,398,403, -407,411,415,419,422,426,430,434,438,442,447,451,455,459,465,470,473,478,482,487,491,495,499,503,507,512,516,520,525,529, -533,538,542,546, -551,556,561,565,568,574,578,583,587,590,595,599,603,607,611,615,619,623,627,632,636,640,644,649,653,657,661,666,670,675, -679,683,687,691,695,699,703,707,711,715,720,725,728,732,736,740,744,748,752,757,761,766,770,774,778,782,786,790,794,799, -803,807,812,816, -820,824,828,832,837,841,845,849,854,858,863,867,871,875,879,884,888,892,896,899,903,907,912,916,920,924,928,932,936,940, -944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048, -1052,1056,1060,1064,1068,1072,1076, -1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172, -1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268, -1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332, -1336,1340,1343,1347,1351,1355,1359,1363,1367,1371,1375,1379,1383,1387,1391,1395,1399,1403,1407,1411,1415,1419,1423,1427, -1431,1435,1439,1443,1447,1451,1455,1459,1463,1467,1471,1475,1479,1483,1487,1491,1495,1499,1503,1507,1511,1515,1519,1523, -1527,1531,1535,1539,1543,1547,1551,1555,1559,1563,1567,1571,1575,1579,1583,1587, -1591,1595,1599,1603,1607,1611,1615,1619,1623,1627,1631,1635,1639,1643,1647,1651,1655,1659,1663,1667,1671,1675,1679,1683, -1687,1691,1695,1699,1703,1708,1712,1716,1720,1723,1727,1731,1735,1739,1743,1747,1750,1754,1758,1761,1766,1771,1775,1779, -1782,1785,1790,1795,1799,1805,1810,1816,1820,1824,1828,1832,1837,1841,1845,1849, -1853,1858,1862,1866,1870,1874,1878,1883,1887,1891,1896,1900,1905,1910,1914,1919,1924,1928,1932,1936,1940,1944,1949,1953, -1956,1960,1964,1968,1973,1977,1982,1985,1989,1993,1999,2003,2008,2012,2016,2020,2024,2028,2032,2036,2039,2043,2047,2051, -2056,2060,2064,2069,2073,2077,2081,2085,2089,2093,2097,2101,2105,2110,2114,2118, -2123,2127,2132,2136,2140,2146,2150,2155,2160,2165,2169,2174,2178,2182,2186,2190,2193,2197,2201,2205,2209,2213,2218,2222, -2226,2230,2235,2240,2243,2247,2251,2255,2259,2264,2268,2272,2276,2280,2284,2289,2293,2297,2302,2306,2310,2315,2319,2323, -2328,2333,2338,2342,2345,2350,2354,2359,2363,2366,2371,2375,2379,2383,2387,2391, -2395,2400,2404,2409,2413,2418,2422,2427,2431,2435,2439,2444,2448,2453,2457,2461,2465,2469,2473,2477,2481,2485,2489,2493, -2498,2502,2506,2510,2514,2519,2523,2527,2531,2536,2540,2545,2549,2553,2557,2561,2565,2569,2573,2578,2582,2586,2591,2595, -2599,2603,2607,2611,2616,2620,2624,2628,2633,2637,2642,2646,2650,2654,2658,2662, -2667,2671,2676,2680,2684,2688,2692,2696], +[0,2,10,13,18,23,27,32,36,41,45,49,53,57,62,66,70,74,78,83,87,91,95,99,103,108,112,116,121,125,130,136,140,145,150,154,158,162,167,171,176,180,183,188,192,196,201,205,210,213,217,221,227,231,236,240,247,251,255,259,263,267,271,275,279,283,287,291,295,300,304,308,312,315,320,323,327,331,335,340,344,348,353,357,362,366,370,375,379,384,389,394,398,403,407,411,415,419,422,426,430,434,438,442,447,451,455,459,465,470,473,478,482,487,491,495,499,503,507,512,516,520,525,529,533,538,542,546,551,556,561,565,568,574,578,583,587,590,595,599,603,607,611,615,619,623,627,632,636,640,644,649,653,657,661,666,670,675,679,683,687,691,695,699,703,707,711,715,720,725,728,732,736,740,744,748,752,757,761,766,770,774,778,782,786,790,794,799,803,807,812,816,820,824,828,832,837,841,845,849,854,858,863,867,871,875,879,884,888,892,896,899,903,907,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1343,1347,1351,1355,1359,1363,1367,1371,1375,1379,1383,1387,1391,1395,1399,1403,1407,1411,1415,1419,1423,1427,1431,1435,1439,1443,1447,1451,1455,1459,1463,1467,1471,1475,1479,1483,1487,1491,1495,1499,1503,1507,1511,1515,1519,1523,1527,1531,1535,1539,1543,1547,1551,1555,1559,1563,1567,1571,1575,1579,1583,1587,1591,1595,1599,1603,1607,1611,1615,1619,1623,1627,1631,1635,1639,1643,1647,1651,1655,1659,1663,1667,1671,1675,1679,1683,1687,1691,1695,1699,1703,1708,1712,1716,1720,1723,1727,1731,1735,1739,1743,1747,1750,1754,1758,1761,1766,1771,1775,1779,1782,1785,1790,1795,1799,1805,1810,1816,1820,1824,1828,1832,1837,1841,1845,1849,1853,1858,1862,1866,1870,1874,1878,1883,1887,1891,1896,1900,1905,1910,1914,1919,1924,1928,1932,1936,1940,1944,1949,1953,1956,1960,1964,1968,1973,1977,1982,1985,1989,1993,1999,2003,2008,2012,2016,2020,2024,2028,2032,2036,2039,2043,2047,2051,2056,2060,2064,2069,2073,2077,2081,2085,2089,2093,2097,2101,2105,2110,2114,2118,2123,2127,2132,2136,2140,2146,2150,2155,2160,2165,2169,2174,2178,2182,2186,2190,2193,2197,2201,2205,2209,2213,2218,2222,2226,2230,2235,2240,2243,2247,2251,2255,2259,2264,2268,2272,2276,2280,2284,2289,2293,2297,2302,2306,2310,2315,2319,2323,2328,2333,2338,2342,2345,2350,2354,2359,2363,2366,2371,2375,2379,2383,2387,2391,2395,2400,2404,2409,2413,2418,2422,2427,2431,2435,2439,2444,2448,2453,2457,2461,2465,2469,2473,2477,2481,2485,2489,2493,2498,2502,2506,2510,2514,2519,2523,2527,2531,2536,2540,2545,2549,2553,2557,2561,2565,2569,2573,2578,2582,2586,2591,2595,2599,2603,2607,2611,2616,2620,2624,2628,2633,2637,2642,2646,2650,2654,2658,2662,2667,2671,2676,2680,2684,2688,2692,2696], [1,3,6], [0,4,5], "filename", diff --git a/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.jsonc b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.jsonc index 752f7e4747d5..77430005794a 100644 --- a/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.jsonc +++ b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileList.jsonc @@ -1,35 +1,6 @@ [ "Flatpack JSON v2", -[0,2,3,4,7,10,12,15,17,20,22,24,26,28,31,33,35,37,39,42,44,46,48,50,52,55,57,59,62,64,67,71,73,76,79,81,83,85,88,90,93,95, -96,99,101,103,106,108,111,112,114,116,120,122,125,127,132,134,136,138,140,142,144,146, -148,150,152,154,156,159,161,163,165,166,169,170,172,174,176,179,181,183,186,188,191,193,195,198,200,203,206,209,211,214, -216,218,220,222,223,225,227,229,231,233,236,238,240,242,246,249,250,253,255,258,260,262,264,266,268,271,273,275,278,280, -282,285,287,289, -292,295,298,300,301,305,307,310,312,313,316,318,320,322,324,326,328,330,332,335,337,339,341,344,346,348,350,353,355,358, -360,362,364,366,368,370,372,374,376,378,381,384,385,387,389,391,393,395,397,400,402,405,407,409,411,413,415,417,419,422, -424,426,429,431, -433,435,437,439,442,444,446,448,451,453,456,458,460,462,464,467,469,471,473,474,476,478,481,483,485,487,489,491,493,495, -497,499,501,503,505,507,509,511,513,515,517,519,521,523,525,527,529,531,533,535,537,539,541,543,545,547,549,551,553,555, -557,559,561,563, -565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599,601,603,605,607,609,611,613,615,617,619,621,623, -625,627,629,631,633,635,637,639,641,643,645,647,649,651,653,655,657,659,661,663,665,667,669,671,673,675,677,679,681,683, -685,687,689,691, -693,695,696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734,736,738,740,742,744,746,748,750, -752,754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798,800,802,804,806,808,810, -812,814,816,818, -820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862,864,866,868,870,872,874,876,879, -881,883,885,886,888,890,892,894,896,898,899,901,903,904,907,910,912,914,915,916,919,922,924,928,931,935,937,939,941,943, -946,948,950,952, -954,957,959,961,963,965,967,970,972,974,977,979,982,985,987,990,993,995,997,999,1001,1003,1006,1008,1009,1011,1013,1015, -1018,1020,1023,1024,1026,1028,1032,1034,1037,1039,1041,1043,1045,1047,1049,1051,1052,1054,1056,1058,1061,1063,1065,1068, -1070,1072,1074,1076,1078,1080,1082,1084,1086,1089,1091,1093, -1096,1098,1101,1103,1105,1109,1111,1114,1117,1120,1122,1125,1127,1129,1131,1133,1134,1136,1138,1140,1142,1144,1147,1149, -1151,1153,1156,1159,1160,1162,1164,1166,1168,1171,1173,1175,1177,1179,1181,1184,1186,1188,1191,1193,1195,1198,1200,1202, -1205,1208,1211,1213,1214,1217,1219,1222,1224,1225,1228,1230,1232,1234,1236,1238, -1240,1243,1245,1248,1250,1253,1255,1258,1260,1262,1264,1267,1269,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292, -1295,1297,1299,1301,1303,1306,1308,1310,1312,1315,1317,1320,1322,1324,1326,1328,1330,1332,1334,1337,1339,1341,1344,1346, -1348,1350,1352,1354,1357,1359,1361,1363,1366,1368,1371,1373,1375,1377,1379,1381, -1384,1386,1389,1391,1393,1395,1397,1399], +[0,2,3,4,7,10,12,15,17,20,22,24,26,28,31,33,35,37,39,42,44,46,48,50,52,55,57,59,62,64,67,71,73,76,79,81,83,85,88,90,93,95,96,99,101,103,106,108,111,112,114,116,120,122,125,127,132,134,136,138,140,142,144,146,148,150,152,154,156,159,161,163,165,166,169,170,172,174,176,179,181,183,186,188,191,193,195,198,200,203,206,209,211,214,216,218,220,222,223,225,227,229,231,233,236,238,240,242,246,249,250,253,255,258,260,262,264,266,268,271,273,275,278,280,282,285,287,289,292,295,298,300,301,305,307,310,312,313,316,318,320,322,324,326,328,330,332,335,337,339,341,344,346,348,350,353,355,358,360,362,364,366,368,370,372,374,376,378,381,384,385,387,389,391,393,395,397,400,402,405,407,409,411,413,415,417,419,422,424,426,429,431,433,435,437,439,442,444,446,448,451,453,456,458,460,462,464,467,469,471,473,474,476,478,481,483,485,487,489,491,493,495,497,499,501,503,505,507,509,511,513,515,517,519,521,523,525,527,529,531,533,535,537,539,541,543,545,547,549,551,553,555,557,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599,601,603,605,607,609,611,613,615,617,619,621,623,625,627,629,631,633,635,637,639,641,643,645,647,649,651,653,655,657,659,661,663,665,667,669,671,673,675,677,679,681,683,685,687,689,691,693,695,696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734,736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798,800,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862,864,866,868,870,872,874,876,879,881,883,885,886,888,890,892,894,896,898,899,901,903,904,907,910,912,914,915,916,919,922,924,928,931,935,937,939,941,943,946,948,950,952,954,957,959,961,963,965,967,970,972,974,977,979,982,985,987,990,993,995,997,999,1001,1003,1006,1008,1009,1011,1013,1015,1018,1020,1023,1024,1026,1028,1032,1034,1037,1039,1041,1043,1045,1047,1049,1051,1052,1054,1056,1058,1061,1063,1065,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1089,1091,1093,1096,1098,1101,1103,1105,1109,1111,1114,1117,1120,1122,1125,1127,1129,1131,1133,1134,1136,1138,1140,1142,1144,1147,1149,1151,1153,1156,1159,1160,1162,1164,1166,1168,1171,1173,1175,1177,1179,1181,1184,1186,1188,1191,1193,1195,1198,1200,1202,1205,1208,1211,1213,1214,1217,1219,1222,1224,1225,1228,1230,1232,1234,1236,1238,1240,1243,1245,1248,1250,1253,1255,1258,1260,1262,1264,1267,1269,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1295,1297,1299,1301,1303,1306,1308,1310,1312,1315,1317,1320,1322,1324,1326,1328,1330,1332,1334,1337,1339,1341,1344,1346,1348,1350,1352,1354,1357,1359,1361,1363,1366,1368,1371,1373,1375,1377,1379,1381,1384,1386,1389,1391,1393,1395,1397,1399], "api/api.d.ts", "dist/esm/Cache/cspell.cache.d.ts", [2,5,6], diff --git a/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.jsonc b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.jsonc index 32e4f196992e..8b2f33daec5d 100644 --- a/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.jsonc +++ b/packages/flatpack-json/src/__snapshots__/FlatpackV2_fileObjects.jsonc @@ -1,35 +1,6 @@ [ "Flatpack JSON v2", -[0,2,10,13,18,23,27,32,36,41,45,49,53,57,62,66,70,74,78,83,87,91,95,99,103,108,112,116,121,125,130,136,140,145,150,154, -158,162,167,171,176,180,183,188,192,196,201,205,210,213,217,221,227,231,236,240,247,251,255,259,263,267,271,275, -279,283,287,291,295,300,304,308,312,315,320,323,327,331,335,340,344,348,353,357,362,366,370,375,379,384,389,394,398,403, -407,411,415,419,422,426,430,434,438,442,447,451,455,459,465,470,473,478,482,487,491,495,499,503,507,512,516,520,525,529, -533,538,542,546, -551,556,561,565,568,574,578,583,587,590,595,599,603,607,611,615,619,623,627,632,636,640,644,649,653,657,661,666,670,675, -679,683,687,691,695,699,703,707,711,715,720,725,728,732,736,740,744,748,752,757,761,766,770,774,778,782,786,790,794,799, -803,807,812,816, -820,824,828,832,837,841,845,849,854,858,863,867,871,875,879,884,888,892,896,899,903,907,912,916,920,924,928,932,936,940, -944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048, -1052,1056,1060,1064,1068,1072,1076, -1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172, -1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268, -1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332, -1336,1340,1343,1347,1351,1355,1359,1363,1367,1371,1375,1379,1383,1387,1391,1395,1399,1403,1407,1411,1415,1419,1423,1427, -1431,1435,1439,1443,1447,1451,1455,1459,1463,1467,1471,1475,1479,1483,1487,1491,1495,1499,1503,1507,1511,1515,1519,1523, -1527,1531,1535,1539,1543,1547,1551,1555,1559,1563,1567,1571,1575,1579,1583,1587, -1591,1595,1599,1603,1607,1611,1615,1619,1623,1627,1631,1635,1639,1643,1647,1651,1655,1659,1663,1667,1671,1675,1679,1683, -1687,1691,1695,1699,1703,1708,1712,1716,1720,1723,1727,1731,1735,1739,1743,1747,1750,1754,1758,1761,1766,1771,1775,1779, -1782,1785,1790,1795,1799,1805,1810,1816,1820,1824,1828,1832,1837,1841,1845,1849, -1853,1858,1862,1866,1870,1874,1878,1883,1887,1891,1896,1900,1905,1910,1914,1919,1924,1928,1932,1936,1940,1944,1949,1953, -1956,1960,1964,1968,1973,1977,1982,1985,1989,1993,1999,2003,2008,2012,2016,2020,2024,2028,2032,2036,2039,2043,2047,2051, -2056,2060,2064,2069,2073,2077,2081,2085,2089,2093,2097,2101,2105,2110,2114,2118, -2123,2127,2132,2136,2140,2146,2150,2155,2160,2165,2169,2174,2178,2182,2186,2190,2193,2197,2201,2205,2209,2213,2218,2222, -2226,2230,2235,2240,2243,2247,2251,2255,2259,2264,2268,2272,2276,2280,2284,2289,2293,2297,2302,2306,2310,2315,2319,2323, -2328,2333,2338,2342,2345,2350,2354,2359,2363,2366,2371,2375,2379,2383,2387,2391, -2395,2400,2404,2409,2413,2418,2422,2427,2431,2435,2439,2444,2448,2453,2457,2461,2465,2469,2473,2477,2481,2485,2489,2493, -2498,2502,2506,2510,2514,2519,2523,2527,2531,2536,2540,2545,2549,2553,2557,2561,2565,2569,2573,2578,2582,2586,2591,2595, -2599,2603,2607,2611,2616,2620,2624,2628,2633,2637,2642,2646,2650,2654,2658,2662, -2667,2671,2676,2680,2684,2688,2692,2696], +[0,2,10,13,18,23,27,32,36,41,45,49,53,57,62,66,70,74,78,83,87,91,95,99,103,108,112,116,121,125,130,136,140,145,150,154,158,162,167,171,176,180,183,188,192,196,201,205,210,213,217,221,227,231,236,240,247,251,255,259,263,267,271,275,279,283,287,291,295,300,304,308,312,315,320,323,327,331,335,340,344,348,353,357,362,366,370,375,379,384,389,394,398,403,407,411,415,419,422,426,430,434,438,442,447,451,455,459,465,470,473,478,482,487,491,495,499,503,507,512,516,520,525,529,533,538,542,546,551,556,561,565,568,574,578,583,587,590,595,599,603,607,611,615,619,623,627,632,636,640,644,649,653,657,661,666,670,675,679,683,687,691,695,699,703,707,711,715,720,725,728,732,736,740,744,748,752,757,761,766,770,774,778,782,786,790,794,799,803,807,812,816,820,824,828,832,837,841,845,849,854,858,863,867,871,875,879,884,888,892,896,899,903,907,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1343,1347,1351,1355,1359,1363,1367,1371,1375,1379,1383,1387,1391,1395,1399,1403,1407,1411,1415,1419,1423,1427,1431,1435,1439,1443,1447,1451,1455,1459,1463,1467,1471,1475,1479,1483,1487,1491,1495,1499,1503,1507,1511,1515,1519,1523,1527,1531,1535,1539,1543,1547,1551,1555,1559,1563,1567,1571,1575,1579,1583,1587,1591,1595,1599,1603,1607,1611,1615,1619,1623,1627,1631,1635,1639,1643,1647,1651,1655,1659,1663,1667,1671,1675,1679,1683,1687,1691,1695,1699,1703,1708,1712,1716,1720,1723,1727,1731,1735,1739,1743,1747,1750,1754,1758,1761,1766,1771,1775,1779,1782,1785,1790,1795,1799,1805,1810,1816,1820,1824,1828,1832,1837,1841,1845,1849,1853,1858,1862,1866,1870,1874,1878,1883,1887,1891,1896,1900,1905,1910,1914,1919,1924,1928,1932,1936,1940,1944,1949,1953,1956,1960,1964,1968,1973,1977,1982,1985,1989,1993,1999,2003,2008,2012,2016,2020,2024,2028,2032,2036,2039,2043,2047,2051,2056,2060,2064,2069,2073,2077,2081,2085,2089,2093,2097,2101,2105,2110,2114,2118,2123,2127,2132,2136,2140,2146,2150,2155,2160,2165,2169,2174,2178,2182,2186,2190,2193,2197,2201,2205,2209,2213,2218,2222,2226,2230,2235,2240,2243,2247,2251,2255,2259,2264,2268,2272,2276,2280,2284,2289,2293,2297,2302,2306,2310,2315,2319,2323,2328,2333,2338,2342,2345,2350,2354,2359,2363,2366,2371,2375,2379,2383,2387,2391,2395,2400,2404,2409,2413,2418,2422,2427,2431,2435,2439,2444,2448,2453,2457,2461,2465,2469,2473,2477,2481,2485,2489,2493,2498,2502,2506,2510,2514,2519,2523,2527,2531,2536,2540,2545,2549,2553,2557,2561,2565,2569,2573,2578,2582,2586,2591,2595,2599,2603,2607,2611,2616,2620,2624,2628,2633,2637,2642,2646,2650,2654,2658,2662,2667,2671,2676,2680,2684,2688,2692,2696], [1,3,6], [0,4,5], "filename", diff --git a/packages/flatpack-json/src/__snapshots__/storage_fileList.jsonc b/packages/flatpack-json/src/__snapshots__/storage_fileList.jsonc index 22810c92005b..b24a5080b811 100644 --- a/packages/flatpack-json/src/__snapshots__/storage_fileList.jsonc +++ b/packages/flatpack-json/src/__snapshots__/storage_fileList.jsonc @@ -1,35 +1,6 @@ [ "Flatpack JSON v1", -[0,2,3,6,9,11,14,16,19,21,23,27,31,34,36,40,42,44,47,49,51,54,56,58,61,63,65,68,70,73,78,80,83,86,88,92,94,98,100,102,104, -105,109,111,114,117,119,122,123,127,129,134,136,139,141,143,145,148,150,153,155,158,160,162, -164,167,169,173,176,178,180,182,183,186,187,189,191,193,196,200,202,205,207,211,213,215,217,219,222,225,228,230,233,235, -237,241,243,244,247,249,251,253,255,258,260,262,266,271,274,275,277,281,284,286,288,290,292,294,299,301,303,306,308,310, -315,317,319,323, -327,330,332,334,338,340,343,345,346,349,351,353,355,357,359,361,365,367,370,372,376,378,381,383,385,387,390,392,395,397, -399,401,403,405,407,409,411,414,416,419,424,425,427,429,431,433,435,437,440,442,445,447,449,451,453,455,457,459,462,464, -466,469,471,473, -475,479,481,484,486,488,490,493,495,498,500,502,504,506,509,511,513,515,516,518,520,523,525,527,529,531,533,535,537,539, -541,543,545,547,549,551,553,555,557,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599, -601,603,605,606, -608,609,611,613,614,616,618,620,622,624,626,628,630,632,634,636,638,640,642,644,646,648,650,652,654,656,658,660,662,663, -665,666,668,670,671,673,675,677,679,681,683,685,687,689,691,693,695,697,699,701,703,705,707,709,711,713,715,717,719,721, -723,725,727,729, -731,733,734,736,738,739,741,742,744,746,748,749,751,753,755,757,759,761,763,765,767,769,771,773,775,777,779,781,783,785, -787,789,790,792,794,795,797,799,801,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842, -844,846,848,849, -851,852,854,856,858,860,862,864,866,867,869,871,873,875,877,878,880,882,883,885,886,888,890,892,893,895,897,899,902,903, -905,907,908,910,912,914,915,917,918,919,920,922,923,926,929,931,933,934,935,937,940,942,943,946,951,953,957,960,961,964, -966,967,969,970, -974,976,979,982,984,987,990,991,993,997,999,1003,1007,1009,1013,1016,1018,1021,1023,1026,1028,1033,1036,1037,1040,1042, -1045,1048,1051,1054,1055,1058,1060,1064,1066,1070,1072,1076,1078,1081,1083,1086,1088,1091,1093,1096,1098,1101,1103,1106, -1109,1111,1114,1117,1119,1121,1123,1125,1128,1130,1133,1136,1138,1142, -1144,1148,1150,1152,1156,1158,1162,1165,1169,1171,1175,1177,1179,1181,1183,1184,1185,1187,1188,1190,1192,1193,1195,1196, -1199,1202,1206,1209,1211,1212,1213,1214,1217,1219,1221,1223,1224,1226,1227,1229,1230,1234,1237,1239,1243,1246,1249,1253, -1257,1261,1263,1266,1269,1271,1275,1277,1278,1282,1284,1287,1289,1292,1294,1297, -1300,1302,1306,1308,1311,1313,1314,1316,1317,1319,1323,1325,1329,1331,1334,1336,1339,1342,1344,1347,1349,1351,1353,1356, -1358,1360,1362,1364,1366,1368,1371,1373,1376,1378,1381,1383,1386,1388,1390,1392,1395,1397,1400,1402,1405,1408,1410,1413, -1415,1418,1420,1424,1426,1429,1431,1434,1436,1439,1441,1443,1445,1447,1449,1452, -1454,1458,1460,1462,1463,1466,1468,38], +[0,2,3,6,9,11,14,16,19,21,23,27,31,34,36,40,42,44,47,49,51,54,56,58,61,63,65,68,70,73,78,80,83,86,88,92,94,98,100,102,104,105,109,111,114,117,119,122,123,127,129,134,136,139,141,143,145,148,150,153,155,158,160,162,164,167,169,173,176,178,180,182,183,186,187,189,191,193,196,200,202,205,207,211,213,215,217,219,222,225,228,230,233,235,237,241,243,244,247,249,251,253,255,258,260,262,266,271,274,275,277,281,284,286,288,290,292,294,299,301,303,306,308,310,315,317,319,323,327,330,332,334,338,340,343,345,346,349,351,353,355,357,359,361,365,367,370,372,376,378,381,383,385,387,390,392,395,397,399,401,403,405,407,409,411,414,416,419,424,425,427,429,431,433,435,437,440,442,445,447,449,451,453,455,457,459,462,464,466,469,471,473,475,479,481,484,486,488,490,493,495,498,500,502,504,506,509,511,513,515,516,518,520,523,525,527,529,531,533,535,537,539,541,543,545,547,549,551,553,555,557,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599,601,603,605,606,608,609,611,613,614,616,618,620,622,624,626,628,630,632,634,636,638,640,642,644,646,648,650,652,654,656,658,660,662,663,665,666,668,670,671,673,675,677,679,681,683,685,687,689,691,693,695,697,699,701,703,705,707,709,711,713,715,717,719,721,723,725,727,729,731,733,734,736,738,739,741,742,744,746,748,749,751,753,755,757,759,761,763,765,767,769,771,773,775,777,779,781,783,785,787,789,790,792,794,795,797,799,801,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,849,851,852,854,856,858,860,862,864,866,867,869,871,873,875,877,878,880,882,883,885,886,888,890,892,893,895,897,899,902,903,905,907,908,910,912,914,915,917,918,919,920,922,923,926,929,931,933,934,935,937,940,942,943,946,951,953,957,960,961,964,966,967,969,970,974,976,979,982,984,987,990,991,993,997,999,1003,1007,1009,1013,1016,1018,1021,1023,1026,1028,1033,1036,1037,1040,1042,1045,1048,1051,1054,1055,1058,1060,1064,1066,1070,1072,1076,1078,1081,1083,1086,1088,1091,1093,1096,1098,1101,1103,1106,1109,1111,1114,1117,1119,1121,1123,1125,1128,1130,1133,1136,1138,1142,1144,1148,1150,1152,1156,1158,1162,1165,1169,1171,1175,1177,1179,1181,1183,1184,1185,1187,1188,1190,1192,1193,1195,1196,1199,1202,1206,1209,1211,1212,1213,1214,1217,1219,1221,1223,1224,1226,1227,1229,1230,1234,1237,1239,1243,1246,1249,1253,1257,1261,1263,1266,1269,1271,1275,1277,1278,1282,1284,1287,1289,1292,1294,1297,1300,1302,1306,1308,1311,1313,1314,1316,1317,1319,1323,1325,1329,1331,1334,1336,1339,1342,1344,1347,1349,1351,1353,1356,1358,1360,1362,1364,1366,1368,1371,1373,1376,1378,1381,1383,1386,1388,1390,1392,1395,1397,1400,1402,1405,1408,1410,1413,1415,1418,1420,1424,1426,1429,1431,1434,1436,1439,1441,1443,1445,1447,1449,1452,1454,1458,1460,1462,1463,1466,1468,38], "api/api.d.ts", "dist/esm/Cache/cspell.cache.d.ts", [3,3,28], diff --git a/packages/flatpack-json/src/__snapshots__/storage_fileObjects.jsonc b/packages/flatpack-json/src/__snapshots__/storage_fileObjects.jsonc index 18f04f651d80..c59d1ce224aa 100644 --- a/packages/flatpack-json/src/__snapshots__/storage_fileObjects.jsonc +++ b/packages/flatpack-json/src/__snapshots__/storage_fileObjects.jsonc @@ -1,35 +1,6 @@ [ "Flatpack JSON v1", -[0,2,10,13,18,23,27,32,36,41,45,49,55,59,64,68,74,78,82,87,91,95,100,104,108,113,117,121,126,130,135,142,146,151,156,160, -166,170,176,180,184,188,191,197,201,206,211,215,220,223,227,231,238,242,247,251,255,259,264,268,273,277,282,286, -290,294,299,303,309,314,318,322,326,329,334,337,341,345,349,354,360,364,369,373,378,382,386,391,395,400,405,410,414,419, -423,427,431,435,438,443,447,451,455,459,464,468,472,478,485,490,493,497,501,506,510,514,518,522,526,531,535,539,544,548, -552,559,563,567, -572,578,583,587,591,597,601,606,610,613,618,622,626,630,634,638,642,648,652,657,661,667,671,676,680,684,688,693,697,702, -706,710,714,718,722,726,730,734,739,743,748,755,758,762,766,770,774,778,782,787,791,796,800,804,808,812,816,820,824,829, -833,837,842,846, -850,854,860,864,869,873,877,881,886,890,895,899,903,907,911,916,920,924,928,931,935,939,944,948,952,956,960,964,968,972, -976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072, -1076,1080,1084,1088,1092,1096,1100,1104,1108, -1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204, -1208,1212,1216,1220,1224,1228,1232,1236,1239,1243,1247,1250,1254,1258,1262,1266,1270,1274,1278,1282,1286,1290,1294,1298, -1302,1306,1310,1314,1318,1322,1326,1330,1334,1338,1342,1346,1350,1354,1358,1362, -1366,1370,1374,1377,1381,1385,1388,1392,1395,1399,1403,1407,1410,1414,1418,1422,1426,1430,1434,1438,1442,1446,1450,1454, -1458,1462,1466,1470,1474,1478,1482,1486,1490,1494,1498,1502,1506,1510,1514,1518,1522,1526,1530,1534,1538,1542,1546,1550, -1554,1558,1562,1566,1570,1574,1578,1582,1586,1590,1594,1598,1602,1606,1610,1614, -1617,1621,1624,1628,1632,1636,1640,1644,1648,1652,1655,1659,1663,1667,1671,1675,1678,1682,1686,1689,1693,1696,1700,1704, -1708,1711,1715,1719,1723,1728,1731,1735,1739,1742,1746,1750,1754,1757,1761,1764,1767,1770,1774,1777,1782,1787,1791,1795, -1798,1801,1805,1810,1814,1817,1822,1829,1833,1839,1844,1847,1852,1856,1859,1863, -1866,1872,1876,1881,1886,1890,1895,1900,1903,1907,1913,1917,1923,1929,1933,1938,1943,1947,1952,1956,1961,1965,1970,1975, -1978,1983,1987,1992,1997,2002,2007,2010,2015,2019,2025,2029,2035,2039,2045,2049,2054,2058,2063,2067,2072,2076,2081,2085, -2090,2094,2099,2104,2108,2113,2118,2122,2126,2130,2134,2139,2143,2148,2153,2157, -2160,2164,2170,2174,2178,2184,2188,2194,2199,2205,2209,2215,2219,2223,2227,2231,2234,2237,2241,2244,2248,2252,2255,2259, -2262,2267,2272,2278,2283,2287,2290,2293,2296,2301,2305,2309,2313,2316,2320,2323,2327,2330,2336,2341,2345,2351,2356,2361, -2367,2373,2379,2383,2388,2393,2397,2403,2407,2410,2416,2420,2425,2429,2434,2438, -2443,2448,2452,2458,2462,2467,2471,2474,2478,2481,2485,2491,2495,2501,2505,2510,2514,2519,2524,2528,2533,2537,2541,2545, -2550,2554,2558,2562,2566,2570,2574,2579,2583,2588,2592,2597,2601,2606,2610,2614,2618,2623,2627,2632,2636,2641,2646,2650, -2655,2659,2664,2668,2674,2678,2683,2687,2692,2696,2701,2705,2709,2713,2717,2721, -2726,2730,2736,2740,2744,2747,2752,2756], +[0,2,10,13,18,23,27,32,36,41,45,49,55,59,64,68,74,78,82,87,91,95,100,104,108,113,117,121,126,130,135,142,146,151,156,160,166,170,176,180,184,188,191,197,201,206,211,215,220,223,227,231,238,242,247,251,255,259,264,268,273,277,282,286,290,294,299,303,309,314,318,322,326,329,334,337,341,345,349,354,360,364,369,373,378,382,386,391,395,400,405,410,414,419,423,427,431,435,438,443,447,451,455,459,464,468,472,478,485,490,493,497,501,506,510,514,518,522,526,531,535,539,544,548,552,559,563,567,572,578,583,587,591,597,601,606,610,613,618,622,626,630,634,638,642,648,652,657,661,667,671,676,680,684,688,693,697,702,706,710,714,718,722,726,730,734,739,743,748,755,758,762,766,770,774,778,782,787,791,796,800,804,808,812,816,820,824,829,833,837,842,846,850,854,860,864,869,873,877,881,886,890,895,899,903,907,911,916,920,924,928,931,935,939,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1239,1243,1247,1250,1254,1258,1262,1266,1270,1274,1278,1282,1286,1290,1294,1298,1302,1306,1310,1314,1318,1322,1326,1330,1334,1338,1342,1346,1350,1354,1358,1362,1366,1370,1374,1377,1381,1385,1388,1392,1395,1399,1403,1407,1410,1414,1418,1422,1426,1430,1434,1438,1442,1446,1450,1454,1458,1462,1466,1470,1474,1478,1482,1486,1490,1494,1498,1502,1506,1510,1514,1518,1522,1526,1530,1534,1538,1542,1546,1550,1554,1558,1562,1566,1570,1574,1578,1582,1586,1590,1594,1598,1602,1606,1610,1614,1617,1621,1624,1628,1632,1636,1640,1644,1648,1652,1655,1659,1663,1667,1671,1675,1678,1682,1686,1689,1693,1696,1700,1704,1708,1711,1715,1719,1723,1728,1731,1735,1739,1742,1746,1750,1754,1757,1761,1764,1767,1770,1774,1777,1782,1787,1791,1795,1798,1801,1805,1810,1814,1817,1822,1829,1833,1839,1844,1847,1852,1856,1859,1863,1866,1872,1876,1881,1886,1890,1895,1900,1903,1907,1913,1917,1923,1929,1933,1938,1943,1947,1952,1956,1961,1965,1970,1975,1978,1983,1987,1992,1997,2002,2007,2010,2015,2019,2025,2029,2035,2039,2045,2049,2054,2058,2063,2067,2072,2076,2081,2085,2090,2094,2099,2104,2108,2113,2118,2122,2126,2130,2134,2139,2143,2148,2153,2157,2160,2164,2170,2174,2178,2184,2188,2194,2199,2205,2209,2215,2219,2223,2227,2231,2234,2237,2241,2244,2248,2252,2255,2259,2262,2267,2272,2278,2283,2287,2290,2293,2296,2301,2305,2309,2313,2316,2320,2323,2327,2330,2336,2341,2345,2351,2356,2361,2367,2373,2379,2383,2388,2393,2397,2403,2407,2410,2416,2420,2425,2429,2434,2438,2443,2448,2452,2458,2462,2467,2471,2474,2478,2481,2485,2491,2495,2501,2505,2510,2514,2519,2524,2528,2533,2537,2541,2545,2550,2554,2558,2562,2566,2570,2574,2579,2583,2588,2592,2597,2601,2606,2610,2614,2618,2623,2627,2632,2636,2641,2646,2650,2655,2659,2664,2668,2674,2678,2683,2687,2692,2696,2701,2705,2709,2713,2717,2721,2726,2730,2736,2740,2744,2747,2752,2756], [1,3,6], [0,4,5], "filename", diff --git a/packages/flatpack-json/src/__snapshots__/unpack_fileList.jsonc b/packages/flatpack-json/src/__snapshots__/unpack_fileList.jsonc index 22810c92005b..b24a5080b811 100644 --- a/packages/flatpack-json/src/__snapshots__/unpack_fileList.jsonc +++ b/packages/flatpack-json/src/__snapshots__/unpack_fileList.jsonc @@ -1,35 +1,6 @@ [ "Flatpack JSON v1", -[0,2,3,6,9,11,14,16,19,21,23,27,31,34,36,40,42,44,47,49,51,54,56,58,61,63,65,68,70,73,78,80,83,86,88,92,94,98,100,102,104, -105,109,111,114,117,119,122,123,127,129,134,136,139,141,143,145,148,150,153,155,158,160,162, -164,167,169,173,176,178,180,182,183,186,187,189,191,193,196,200,202,205,207,211,213,215,217,219,222,225,228,230,233,235, -237,241,243,244,247,249,251,253,255,258,260,262,266,271,274,275,277,281,284,286,288,290,292,294,299,301,303,306,308,310, -315,317,319,323, -327,330,332,334,338,340,343,345,346,349,351,353,355,357,359,361,365,367,370,372,376,378,381,383,385,387,390,392,395,397, -399,401,403,405,407,409,411,414,416,419,424,425,427,429,431,433,435,437,440,442,445,447,449,451,453,455,457,459,462,464, -466,469,471,473, -475,479,481,484,486,488,490,493,495,498,500,502,504,506,509,511,513,515,516,518,520,523,525,527,529,531,533,535,537,539, -541,543,545,547,549,551,553,555,557,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599, -601,603,605,606, -608,609,611,613,614,616,618,620,622,624,626,628,630,632,634,636,638,640,642,644,646,648,650,652,654,656,658,660,662,663, -665,666,668,670,671,673,675,677,679,681,683,685,687,689,691,693,695,697,699,701,703,705,707,709,711,713,715,717,719,721, -723,725,727,729, -731,733,734,736,738,739,741,742,744,746,748,749,751,753,755,757,759,761,763,765,767,769,771,773,775,777,779,781,783,785, -787,789,790,792,794,795,797,799,801,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842, -844,846,848,849, -851,852,854,856,858,860,862,864,866,867,869,871,873,875,877,878,880,882,883,885,886,888,890,892,893,895,897,899,902,903, -905,907,908,910,912,914,915,917,918,919,920,922,923,926,929,931,933,934,935,937,940,942,943,946,951,953,957,960,961,964, -966,967,969,970, -974,976,979,982,984,987,990,991,993,997,999,1003,1007,1009,1013,1016,1018,1021,1023,1026,1028,1033,1036,1037,1040,1042, -1045,1048,1051,1054,1055,1058,1060,1064,1066,1070,1072,1076,1078,1081,1083,1086,1088,1091,1093,1096,1098,1101,1103,1106, -1109,1111,1114,1117,1119,1121,1123,1125,1128,1130,1133,1136,1138,1142, -1144,1148,1150,1152,1156,1158,1162,1165,1169,1171,1175,1177,1179,1181,1183,1184,1185,1187,1188,1190,1192,1193,1195,1196, -1199,1202,1206,1209,1211,1212,1213,1214,1217,1219,1221,1223,1224,1226,1227,1229,1230,1234,1237,1239,1243,1246,1249,1253, -1257,1261,1263,1266,1269,1271,1275,1277,1278,1282,1284,1287,1289,1292,1294,1297, -1300,1302,1306,1308,1311,1313,1314,1316,1317,1319,1323,1325,1329,1331,1334,1336,1339,1342,1344,1347,1349,1351,1353,1356, -1358,1360,1362,1364,1366,1368,1371,1373,1376,1378,1381,1383,1386,1388,1390,1392,1395,1397,1400,1402,1405,1408,1410,1413, -1415,1418,1420,1424,1426,1429,1431,1434,1436,1439,1441,1443,1445,1447,1449,1452, -1454,1458,1460,1462,1463,1466,1468,38], +[0,2,3,6,9,11,14,16,19,21,23,27,31,34,36,40,42,44,47,49,51,54,56,58,61,63,65,68,70,73,78,80,83,86,88,92,94,98,100,102,104,105,109,111,114,117,119,122,123,127,129,134,136,139,141,143,145,148,150,153,155,158,160,162,164,167,169,173,176,178,180,182,183,186,187,189,191,193,196,200,202,205,207,211,213,215,217,219,222,225,228,230,233,235,237,241,243,244,247,249,251,253,255,258,260,262,266,271,274,275,277,281,284,286,288,290,292,294,299,301,303,306,308,310,315,317,319,323,327,330,332,334,338,340,343,345,346,349,351,353,355,357,359,361,365,367,370,372,376,378,381,383,385,387,390,392,395,397,399,401,403,405,407,409,411,414,416,419,424,425,427,429,431,433,435,437,440,442,445,447,449,451,453,455,457,459,462,464,466,469,471,473,475,479,481,484,486,488,490,493,495,498,500,502,504,506,509,511,513,515,516,518,520,523,525,527,529,531,533,535,537,539,541,543,545,547,549,551,553,555,557,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593,595,597,599,601,603,605,606,608,609,611,613,614,616,618,620,622,624,626,628,630,632,634,636,638,640,642,644,646,648,650,652,654,656,658,660,662,663,665,666,668,670,671,673,675,677,679,681,683,685,687,689,691,693,695,697,699,701,703,705,707,709,711,713,715,717,719,721,723,725,727,729,731,733,734,736,738,739,741,742,744,746,748,749,751,753,755,757,759,761,763,765,767,769,771,773,775,777,779,781,783,785,787,789,790,792,794,795,797,799,801,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,849,851,852,854,856,858,860,862,864,866,867,869,871,873,875,877,878,880,882,883,885,886,888,890,892,893,895,897,899,902,903,905,907,908,910,912,914,915,917,918,919,920,922,923,926,929,931,933,934,935,937,940,942,943,946,951,953,957,960,961,964,966,967,969,970,974,976,979,982,984,987,990,991,993,997,999,1003,1007,1009,1013,1016,1018,1021,1023,1026,1028,1033,1036,1037,1040,1042,1045,1048,1051,1054,1055,1058,1060,1064,1066,1070,1072,1076,1078,1081,1083,1086,1088,1091,1093,1096,1098,1101,1103,1106,1109,1111,1114,1117,1119,1121,1123,1125,1128,1130,1133,1136,1138,1142,1144,1148,1150,1152,1156,1158,1162,1165,1169,1171,1175,1177,1179,1181,1183,1184,1185,1187,1188,1190,1192,1193,1195,1196,1199,1202,1206,1209,1211,1212,1213,1214,1217,1219,1221,1223,1224,1226,1227,1229,1230,1234,1237,1239,1243,1246,1249,1253,1257,1261,1263,1266,1269,1271,1275,1277,1278,1282,1284,1287,1289,1292,1294,1297,1300,1302,1306,1308,1311,1313,1314,1316,1317,1319,1323,1325,1329,1331,1334,1336,1339,1342,1344,1347,1349,1351,1353,1356,1358,1360,1362,1364,1366,1368,1371,1373,1376,1378,1381,1383,1386,1388,1390,1392,1395,1397,1400,1402,1405,1408,1410,1413,1415,1418,1420,1424,1426,1429,1431,1434,1436,1439,1441,1443,1445,1447,1449,1452,1454,1458,1460,1462,1463,1466,1468,38], "api/api.d.ts", "dist/esm/Cache/cspell.cache.d.ts", [3,3,28], diff --git a/packages/flatpack-json/src/__snapshots__/unpack_fileObjects.jsonc b/packages/flatpack-json/src/__snapshots__/unpack_fileObjects.jsonc index 18f04f651d80..c59d1ce224aa 100644 --- a/packages/flatpack-json/src/__snapshots__/unpack_fileObjects.jsonc +++ b/packages/flatpack-json/src/__snapshots__/unpack_fileObjects.jsonc @@ -1,35 +1,6 @@ [ "Flatpack JSON v1", -[0,2,10,13,18,23,27,32,36,41,45,49,55,59,64,68,74,78,82,87,91,95,100,104,108,113,117,121,126,130,135,142,146,151,156,160, -166,170,176,180,184,188,191,197,201,206,211,215,220,223,227,231,238,242,247,251,255,259,264,268,273,277,282,286, -290,294,299,303,309,314,318,322,326,329,334,337,341,345,349,354,360,364,369,373,378,382,386,391,395,400,405,410,414,419, -423,427,431,435,438,443,447,451,455,459,464,468,472,478,485,490,493,497,501,506,510,514,518,522,526,531,535,539,544,548, -552,559,563,567, -572,578,583,587,591,597,601,606,610,613,618,622,626,630,634,638,642,648,652,657,661,667,671,676,680,684,688,693,697,702, -706,710,714,718,722,726,730,734,739,743,748,755,758,762,766,770,774,778,782,787,791,796,800,804,808,812,816,820,824,829, -833,837,842,846, -850,854,860,864,869,873,877,881,886,890,895,899,903,907,911,916,920,924,928,931,935,939,944,948,952,956,960,964,968,972, -976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072, -1076,1080,1084,1088,1092,1096,1100,1104,1108, -1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204, -1208,1212,1216,1220,1224,1228,1232,1236,1239,1243,1247,1250,1254,1258,1262,1266,1270,1274,1278,1282,1286,1290,1294,1298, -1302,1306,1310,1314,1318,1322,1326,1330,1334,1338,1342,1346,1350,1354,1358,1362, -1366,1370,1374,1377,1381,1385,1388,1392,1395,1399,1403,1407,1410,1414,1418,1422,1426,1430,1434,1438,1442,1446,1450,1454, -1458,1462,1466,1470,1474,1478,1482,1486,1490,1494,1498,1502,1506,1510,1514,1518,1522,1526,1530,1534,1538,1542,1546,1550, -1554,1558,1562,1566,1570,1574,1578,1582,1586,1590,1594,1598,1602,1606,1610,1614, -1617,1621,1624,1628,1632,1636,1640,1644,1648,1652,1655,1659,1663,1667,1671,1675,1678,1682,1686,1689,1693,1696,1700,1704, -1708,1711,1715,1719,1723,1728,1731,1735,1739,1742,1746,1750,1754,1757,1761,1764,1767,1770,1774,1777,1782,1787,1791,1795, -1798,1801,1805,1810,1814,1817,1822,1829,1833,1839,1844,1847,1852,1856,1859,1863, -1866,1872,1876,1881,1886,1890,1895,1900,1903,1907,1913,1917,1923,1929,1933,1938,1943,1947,1952,1956,1961,1965,1970,1975, -1978,1983,1987,1992,1997,2002,2007,2010,2015,2019,2025,2029,2035,2039,2045,2049,2054,2058,2063,2067,2072,2076,2081,2085, -2090,2094,2099,2104,2108,2113,2118,2122,2126,2130,2134,2139,2143,2148,2153,2157, -2160,2164,2170,2174,2178,2184,2188,2194,2199,2205,2209,2215,2219,2223,2227,2231,2234,2237,2241,2244,2248,2252,2255,2259, -2262,2267,2272,2278,2283,2287,2290,2293,2296,2301,2305,2309,2313,2316,2320,2323,2327,2330,2336,2341,2345,2351,2356,2361, -2367,2373,2379,2383,2388,2393,2397,2403,2407,2410,2416,2420,2425,2429,2434,2438, -2443,2448,2452,2458,2462,2467,2471,2474,2478,2481,2485,2491,2495,2501,2505,2510,2514,2519,2524,2528,2533,2537,2541,2545, -2550,2554,2558,2562,2566,2570,2574,2579,2583,2588,2592,2597,2601,2606,2610,2614,2618,2623,2627,2632,2636,2641,2646,2650, -2655,2659,2664,2668,2674,2678,2683,2687,2692,2696,2701,2705,2709,2713,2717,2721, -2726,2730,2736,2740,2744,2747,2752,2756], +[0,2,10,13,18,23,27,32,36,41,45,49,55,59,64,68,74,78,82,87,91,95,100,104,108,113,117,121,126,130,135,142,146,151,156,160,166,170,176,180,184,188,191,197,201,206,211,215,220,223,227,231,238,242,247,251,255,259,264,268,273,277,282,286,290,294,299,303,309,314,318,322,326,329,334,337,341,345,349,354,360,364,369,373,378,382,386,391,395,400,405,410,414,419,423,427,431,435,438,443,447,451,455,459,464,468,472,478,485,490,493,497,501,506,510,514,518,522,526,531,535,539,544,548,552,559,563,567,572,578,583,587,591,597,601,606,610,613,618,622,626,630,634,638,642,648,652,657,661,667,671,676,680,684,688,693,697,702,706,710,714,718,722,726,730,734,739,743,748,755,758,762,766,770,774,778,782,787,791,796,800,804,808,812,816,820,824,829,833,837,842,846,850,854,860,864,869,873,877,881,886,890,895,899,903,907,911,916,920,924,928,931,935,939,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1239,1243,1247,1250,1254,1258,1262,1266,1270,1274,1278,1282,1286,1290,1294,1298,1302,1306,1310,1314,1318,1322,1326,1330,1334,1338,1342,1346,1350,1354,1358,1362,1366,1370,1374,1377,1381,1385,1388,1392,1395,1399,1403,1407,1410,1414,1418,1422,1426,1430,1434,1438,1442,1446,1450,1454,1458,1462,1466,1470,1474,1478,1482,1486,1490,1494,1498,1502,1506,1510,1514,1518,1522,1526,1530,1534,1538,1542,1546,1550,1554,1558,1562,1566,1570,1574,1578,1582,1586,1590,1594,1598,1602,1606,1610,1614,1617,1621,1624,1628,1632,1636,1640,1644,1648,1652,1655,1659,1663,1667,1671,1675,1678,1682,1686,1689,1693,1696,1700,1704,1708,1711,1715,1719,1723,1728,1731,1735,1739,1742,1746,1750,1754,1757,1761,1764,1767,1770,1774,1777,1782,1787,1791,1795,1798,1801,1805,1810,1814,1817,1822,1829,1833,1839,1844,1847,1852,1856,1859,1863,1866,1872,1876,1881,1886,1890,1895,1900,1903,1907,1913,1917,1923,1929,1933,1938,1943,1947,1952,1956,1961,1965,1970,1975,1978,1983,1987,1992,1997,2002,2007,2010,2015,2019,2025,2029,2035,2039,2045,2049,2054,2058,2063,2067,2072,2076,2081,2085,2090,2094,2099,2104,2108,2113,2118,2122,2126,2130,2134,2139,2143,2148,2153,2157,2160,2164,2170,2174,2178,2184,2188,2194,2199,2205,2209,2215,2219,2223,2227,2231,2234,2237,2241,2244,2248,2252,2255,2259,2262,2267,2272,2278,2283,2287,2290,2293,2296,2301,2305,2309,2313,2316,2320,2323,2327,2330,2336,2341,2345,2351,2356,2361,2367,2373,2379,2383,2388,2393,2397,2403,2407,2410,2416,2420,2425,2429,2434,2438,2443,2448,2452,2458,2462,2467,2471,2474,2478,2481,2485,2491,2495,2501,2505,2510,2514,2519,2524,2528,2533,2537,2541,2545,2550,2554,2558,2562,2566,2570,2574,2579,2583,2588,2592,2597,2601,2606,2610,2614,2618,2623,2627,2632,2636,2641,2646,2650,2655,2659,2664,2668,2674,2678,2683,2687,2692,2696,2701,2705,2709,2713,2717,2721,2726,2730,2736,2740,2744,2747,2752,2756], [1,3,6], [0,4,5], "filename", diff --git a/packages/flatpack-json/src/storage.mts b/packages/flatpack-json/src/storage.mts index 10250679b584..776c78eddbaf 100644 --- a/packages/flatpack-json/src/storage.mts +++ b/packages/flatpack-json/src/storage.mts @@ -1,10 +1,26 @@ import { CompactStorageV1 } from './storageV1.mjs'; import { CompactStorageV2 } from './storageV2.mjs'; +import type { StringifyOptions } from './stringify.mjs'; import { stringifyFlatpacked } from './stringify.mjs'; import type { Flatpacked, FlatpackOptions, Serializable, Unpacked } from './types.mjs'; import { dataHeader, dataHeaderV1_0, dataHeaderV2_0 } from './types.mjs'; export function toJSON(json: V, options?: FlatpackOptions): Flatpacked { + options = normalizeOptions(options); + return options.format === 'V1' + ? new CompactStorageV1(options).toJSON(json) + : new CompactStorageV2(options).toJSON(json); +} + +export function stringify(data: Unpacked, pretty = true, options?: FlatpackOptions & StringifyOptions): string { + const normalizedOptions = normalizeOptions(options); + const json = toJSON(data, normalizedOptions); + const stringifyOptions: StringifyOptions | undefined = + normalizedOptions.format === 'V1' ? undefined : options || {}; + return pretty ? stringifyFlatpacked(json, stringifyOptions) : JSON.stringify(json); +} + +function normalizeOptions(options?: FlatpackOptions): Required { let header = dataHeader; let stringTableAllowed = dataHeader !== dataHeaderV1_0; if (options?.format === 'V1') { @@ -20,13 +36,17 @@ export function toJSON(json: V, options?: FlatpackOption stringTableAllowed = true; } const useStringTable = stringTableAllowed && (options?.useStringTable || header === dataHeaderV2_0); - options = { ...options, format: header === dataHeaderV1_0 ? 'V1' : 'V2', useStringTable }; - const v1 = header === dataHeaderV1_0; - return v1 ? new CompactStorageV1(options).toJSON(json) : new CompactStorageV2(options).toJSON(json); -} + const dedupe = options?.dedupe ?? true; + const sortKeys = options?.sortKeys || dedupe; -export function stringify(data: Unpacked, pretty = true, options?: FlatpackOptions): string { - const json = toJSON(data, options); - return pretty ? stringifyFlatpacked(json) : JSON.stringify(json); + const result: Required = { + ...options, + format: header === dataHeaderV1_0 ? 'V1' : 'V2', + useStringTable, + dedupe, + sortKeys, + optimize: options?.optimize ?? false, + }; + return result; } diff --git a/packages/flatpack-json/src/stringify.mts b/packages/flatpack-json/src/stringify.mts index 6973bb1a23f5..d2c23307dd13 100644 --- a/packages/flatpack-json/src/stringify.mts +++ b/packages/flatpack-json/src/stringify.mts @@ -3,13 +3,23 @@ import type { Flatpacked } from './types.mjs'; const maxLineLength = 120; const maxBatchSize = 64; -export function stringifyFlatpacked(input: Flatpacked): string { +export interface StringifyOptions { + maxLineLength?: number; + maxBatchSize?: number; +} + +export const DEFAULT_STRINGIFY_OPTIONS: Required = { + maxLineLength, + maxBatchSize, +}; + +export function stringifyFlatpacked(input: Flatpacked, options?: StringifyOptions): string { let result = '[\n' + JSON.stringify(input[0]); let prev = ''; for (let i = 1; i < input.length; i++) { - const next = formatLine(input[i]); + const next = formatLine(input[i], options); result += prev === next ? ',' : ',\n'; result += next; prev = next; @@ -19,10 +29,11 @@ export function stringifyFlatpacked(input: Flatpacked): string { return result; } -function formatLine(elem: unknown): string { - if (!Array.isArray(elem)) { +function formatLine(elem: unknown, options?: StringifyOptions): string { + if (!options || !Array.isArray(elem)) { return JSON.stringify(elem); } + const { maxLineLength, maxBatchSize } = { ...DEFAULT_STRINGIFY_OPTIONS, ...options }; const input = elem; const result: string[] = []; From 6e7d0b016d305dcf3d9cfaa3c627665c6d2812db Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Fri, 6 Mar 2026 07:13:39 +0100 Subject: [PATCH 09/26] do not format fixture files --- .../fixtures/.npm-packages-info-v1.json | 78516 ++++++++-------- .../fixtures/.npm-packages-info-v2.json | 47038 +++------ .../flatpack-json/fixtures/.prettierignore | 1 + 3 files changed, 52290 insertions(+), 73265 deletions(-) create mode 100644 packages/flatpack-json/fixtures/.prettierignore diff --git a/packages/flatpack-json/fixtures/.npm-packages-info-v1.json b/packages/flatpack-json/fixtures/.npm-packages-info-v1.json index 6f619003bef9..1fe72091b400 100644 --- a/packages/flatpack-json/fixtures/.npm-packages-info-v1.json +++ b/packages/flatpack-json/fixtures/.npm-packages-info-v1.json @@ -1,41647 +1,36873 @@ [ - "Flatpack JSON v1", - [5, 2, 25598], - [ - 0, 3, 4, 7, 10, 13, 16, 19, 21, 24, 26, 28, 30, 32, 34, 37, 39, 40, 43, 46, 47, 48, 51, 53, 56, 58, 61, 62, 63, - 64, 65, 66, 68, 71, 73, 76, 78, 81, 83, 85, 87, 90, 92, 94, 97, 99, 101, 104, 105, 106, 107, 110, 111, 114, 116, - 119, 122, 124, 126, 129, 133, 135, 137, 140, 143, 146, 148, 150, 153, 155, 157, 159, 162, 164, 167, 169, 171, - 174, 175, 177, 180, 182, 185, 187, 189, 191, 192, 195, 197, 198, 201, 203, 204, 205, 208, 213, 215, 218, 220, - 221, 222, 225, 228, 231, 233, 235, 238, 240, 243, 245, 247, 249, 251, 253, 258, 260, 262, 265, 267, 269, 271, - 272, 275, 277, 280, 282, 285, 288, 290, 293, 296, 298, 301, 303, 305, 308, 310, 313, 315, 319, 322, 324, 327, - 329, 331, 334, 338, 340, 342, 345, 346, 347, 350, 351, 354, 355, 358, 359, 360, 361, 362, 365, 368, 370, 371, - 374, 377, 379, 381, 384, 387, 392, 394, 399, 401, 404, 406, 409, 411, 413, 415, 419, 422, 425, 427, 430, 432, - 434, 438, 439, 442, 443, 444, 445, 448, 449, 452, 456, 457, 460, 462, 465, 468, 469, 470, 471, 478, 481, 483, - 486, 488, 490, 493, 495, 497, 502, 505, 507, 513, 516, 518, 525, 528, 533, 536, 538, 539, 540, 541, 542, 545, - 546, 547, 548, 549, 550, 551, 554, 555, 559, 560, 561, 564, 565, 566, 567, 572, 573, 576, 577, 578, 581, 583, - 585, 587, 589, 593, 595, 596, 598, 601, 602, 603, 606, 608, 609, 613, 615, 616, 617, 618, 621, 622, 624, 626, - 627, 628, 631, 633, 634, 635, 638, 641, 643, 646, 649, 652, 654, 656, 659, 660, 663, 665, 666, 669, 672, 675, - 677, 679, 682, 683, 684, 687, 688, 691, 692, 693, 697, 700, 702, 703, 706, 709, 711, 712, 713, 716, 721, 724, - 727, 732, 735, 738, 740, 742, 745, 749, 751, 753, 758, 763, 767, 770, 773, 776, 782, 785, 790, 793, 795, 798, - 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 816, 817, 818, 821, 822, 825, 826, 827, 828, 829, 831, 834, - 835, 838, 840, 841, 842, 843, 846, 849, 850, 851, 852, 853, 857, 860, 864, 870, 872, 876, 881, 885, 891, 896, - 898, 905, 910, 913, 915, 917, 920, 925, 929, 933, 935, 938, 944, 948, 951, 954, 955, 958, 961, 962, 963, 966, - 968, 971, 972, 974, 975, 978, 980, 983, 985, 987, 989, 991, 993, 996, 997, 1001, 1003, 1004, 1005, 1006, 1009, - 1011, 1012, 1013, 1014, 1015, 1018, 1021, 1023, 1025, 1026, 1027, 1028, 1030, 1031, 1032, 1033, 1034, 1043, - 1045, 1050, 1054, 1056, 1059, 1061, 1063, 1066, 1073, 1075, 1077, 1078, 1079, 1080, 1081, 1082, 1084, 1085, - 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1098, 1100, 1102, 1103, 1104, 1107, 1109, - 1110, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1120, 1121, 1122, 1125, 1127, 1129, 1130, 1131, 1132, 1135, - 1136, 1137, 1138, 1139, 1140, 1143, 1144, 1145, 1147, 1148, 1149, 1151, 1154, 1156, 1157, 1158, 1159, 1162, - 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1175, 1178, 1180, 1184, 1189, 1191, 1193, 1195, 1198, - 1201, 1203, 1205, 1208, 1210, 1212, 1216, 1217, 1220, 1225, 1230, 1233, 1235, 1240, 1244, 1245, 1248, 1251, - 1253, 1255, 1257, 1261, 1264, 1267, 1268, 1270, 1272, 1275, 1277, 1279, 1280, 1282, 1284, 1287, 1288, 1290, - 1291, 1292, 1293, 1294, 1295, 1298, 1301, 1304, 1305, 1306, 1308, 1309, 1310, 1311, 1314, 1315, 1316, 1317, - 1318, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1335, 1336, 1339, 1342, 1344, 1346, - 1348, 1350, 1352, 1354, 1356, 1358, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1369, 1370, 1371, 1372, 1373, - 1376, 1377, 1378, 1381, 1385, 1386, 1387, 1389, 1391, 1393, 1394, 1395, 1396, 1397, 1398, 1400, 1401, 1402, - 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1413, 1414, 1415, 1416, 1417, 1420, 1421, 1423, 1424, 1425, 1426, - 1427, 1428, 1429, 1431, 1434, 1436, 1437, 1438, 1440, 1443, 1446, 1447, 1448, 1449, 1450, 1455, 1456, 1457, - 1458, 1459, 1461, 1462, 1465, 1468, 1470, 200, 1471, 1474, 1477, 1479, 1480, 1481, 1482, 1483, 1486, 1488, 1489, - 1492, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1503, 1505, 1506, 1509, 1473, 1511, 1512, 1513, 1516, - 1519, 1522, 1525, 1527, 1529, 1532, 1533, 1536, 1537, 1540, 1541, 1543, 1544, 1546, 1549, 1551, 1553, 1556, - 1559, 1560, 1562, 1565, 1566, 1567, 1570, 1573, 977, 1575, 1578, 1581, 1582, 1584, 1587, 1588, 1590, 1591, 1593, - 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1603, 1604, 1605, 1606, 1608, 1609, 1610, 1613, 1615, 1616, 1618, - 1620, 1621, 1622, 1623, 1624, 1627, 1628, 1630, 1632, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, - 1645, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1658, 1660, 1661, 1662, 1663, 1664, 1665, 1668, - 1672, 1673, 1674, 1675, 1676, 1677, 1679, 1680, 1681, 1682, 1686, 1688, 1690, 1693, 1696, 1699, 1700, 1701, - 1702, 1703, 1704, 1705, 1706, 1707, 1710, 1711, 1687, 1713, 1715, 1718, 1719, 1720, 1723, 1724, 1726, 1727, - 1728, 1729, 1730, 1731, 1733, 1734, 1735, 1736, 1737, 1738, 1741, 1742, 1745, 1748, 467, 1750, 1751, 1754, 1756, - 1757, 1758, 1759, 1763, 1764, 1766, 1767, 1768, 1770, 1774, 1777, 1779, 1782, 1784, 1785, 1786, 1787, 1788, - 1789, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1801, 1804, 1806, 1809, 1812, 1816, 1817, 1819, 1820, - 1821, 1822, 1824, 1825, 1827, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1842, 1843, 1845, - 1847, 1850, 1853, 1854, 1855, 1856, 1859, 1860, 1863, 1865, 1866, 668, 1869, 1874, 1875, 1177, 1879, 1881, 1883, - 1886, 1889, 1891, 1893, 1895, 1898, 1900, 1903, 1905, 1907, 1909, 1912, 1915, 1916, 1920, 1922, 1924, 1926, - 1930, 1933, 1935, 1937, 1938, 1939, 1942, 1945, 1947, 1948, 1951, 1953, 1954, 1955, 1958, 1959, 1961, 1964, - 1966, 1969, 1970, 1972, 1976, 1978, 1982, 1985, 1988, 1992, 1994, 1996, 1998, 1999, 2000, 2003, 2004, 2007, 984, - 2008, 2010, 2011, 2012, 2015, 2017, 2018, 2019, 2020, 2021, 2022, 2024, 2025, 2026, 2028, 2031, 2033, 2037, - 2039, 2040, 2042, 2045, 2046, 2048, 2051, 2053, 2054, 2057, 2058, 2059, 2060, 2061, 2064, 2067, 2069, 2071, - 2073, 2075, 2077, 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2086, 2087, 2088, 2089, 2092, 2095, 2096, 2098, - 2099, 2102, 2105, 2107, 2108, 2109, 2111, 2113, 2114, 2116, 2117, 2119, 2122, 2123, 2126, 2128, 2129, 2130, - 2131, 2132, 2133, 2134, 2135, 2137, 2139, 2141, 2144, 2145, 2147, 2148, 2149, 2150, 2151, 2152, 2153, 2154, - 2155, 2156, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2167, 2170, 2172, 2175, 2176, 2177, 2178, 2179, 2182, - 2185, 2188, 2191, 2192, 2193, 2194, 2195, 2197, 2070, 2200, 2202, 2203, 2205, 2206, 2207, 2209, 2211, 2212, - 2213, 2214, 2215, 2216, 2217, 2220, 2222, 2225, 2226, 2227, 2228, 2231, 2234, 2236, 2239, 2240, 2243, 2247, - 2250, 2253, 2256, 2258, 2260, 2263, 2266, 2268, 2271, 2273, 2274, 2277, 2279, 2281, 2283, 2285, 2290, 2291, - 2293, 2296, 2298, 2300, 2302, 2305, 2307, 2308, 2311, 2314, 2316, 2318, 2320, 2321, 2322, 2323, 2327, 2330, - 2332, 2334, 2336, 2338, 2341, 2344, 2346, 2348, 2351, 2352, 2354, 2357, 2359, 2361, 2363, 2366, 2367, 2368, - 2371, 2372, 2373, 2375, 2377, 2379, 2381, 2383, 2384, 2387, 2390, 2393, 2396, 2398, 2400, 2401, 2404, 2405, - 2406, 2409, 2411, 2413, 2416, 2419, 2421, 2423, 2425, 2427, 2430, 2433, 2435, 2436, 2438, 2441, 2444, 2447, - 2449, 2450, 2453, 2455, 2459, 2461, 2463, 2464, 2467, 2469, 2472, 2476, 2479, 2482, 2486, 2489, 2490, 2493, - 2494, 2496, 2498, 2500, 2503, 2504, 2506, 2507, 2508, 2510, 2512, 2515, 2517, 2519, 2520, 2521, 2524, 2526, - 2529, 2530, 2533, 2536, 2539, 2541, 2543, 2544, 2547, 2549, 2550, 2552, 2553, 2554, 2555, 2036, 2556, 2559, - 2562, 2563, 2564, 2567, 2569, 2570, 2571, 2572, 2575, 2577, 2579, 2581, 2583, 2584, 2586, 2588, 2589, 2590, - 2591, 2592, 2593, 2594, 2595, 2596, 2597, 2600, 2601, 2602, 2605, 2606, 2607, 2608, 2609, 2610, 2611, 2612, - 2613, 2614, 2616, 2620, 2623, 2626, 2628, 2629, 2633, 2635, 2637, 2639, 2641, 2644, 2646, 2650, 2651, 2652, - 2654, 27, 2657, 2659, 2661, 2664, 2665, 2668, 2670, 2671, 2674, 2675, 2676, 2677, 2678, 2679, 2681, 2683, 2685, - 2686, 2687, 2689, 2692, 2267, 2694, 2695, 2696, 2697, 2700, 2702, 2704, 2707, 2708, 2709, 2710, 2711, 2712, - 2713, 2714, 2715, 2716, 2718, 2719, 2720, 2722, 2723, 2726, 1161, 2727, 2728, 2730, 2731, 2732, 2733, 2735, - 2738, 2739, 2740, 2741, 2742, 2743, 2744, 2745, 2747, 2750, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2759, - 2760, 2761, 2762, 2437, 2763, 2764, 2765, 2766, 2768, 1192, 2771, 2774, 2777, 2780, 2782, 2784, 2787, 2792, - 2794, 2796, 2797, 2798, 2802, 2805, 2806, 2807, 2808, 2810, 2811, 2812, 2813, 2814, 2816, 2817, 2820, 2821, - 2822, 2823, 2824, 2292, 1776, 2826, 2829, 2832, 2834, 2835, 2272, 2839, 2841, 2843, 2845, 2848, 2851, 2854, - 2856, 2858, 2859, 2860, 2861, 2863, 2864, 2865, 2866, 2867, 2870, 2297, 2871, 2876, 2878, 2881, 2886, 2889, - 2891, 2895, 2897, 2898, 2900, 2904, 2906, 2908, 2910, 2912, 2915, 2918, 2921, 2923, 2925, 2926, 2927, 2928, - 2929, 2930, 2931, 2932, 2933, 2934, 2935, 2936, 2941, 2943, 2945, 2946, 2948, 2949, 620, 2950, 2954, 2957, 2960, - 2961, 2962, 2963, 2964, 2967, 2968, 695, 2969, 2970, 2972, 2973, 2975, 2976, 2979, 2981, 2982, 2983, 2984, 2986, - 2990, 2991, 2992, 2993, 2996, 2997, 3000, 3003, 3006, 3008, 3010, 3012, 3014, 3019, 1209, 3021, 3023, 3025, - 3028, 3029, 3032, 3034, 3037, 3039, 3041, 3044, 3047, 3049, 3051, 3052, 3054, 3057, 3060, 3062, 3064, 3066, - 3067, 3070, 3072, 3073, 3074, 3077, 3078, 3079, 3080, 3081, 3082, 3083, 3084, 3085, 3086, 3087, 3088, 3089, - 3090, 3091, 3092, 3093, 3095, 3096, 3097, 3098, 3099, 3102, 3103, 1783, 3105, 3107, 3112, 3114, 3116, 3117, - 3120, 3123, 3124, 3125, 3127, 3129, 3130, 3132, 3133, 3134, 3135, 3136, 3137, 3140, 3141, 3142, 3143, 3144, - 3145, 3148, 3150, 3152, 3153, 3156, 3157, 1698, 3159, 3160, 3161, 3162, 3164, 3165, 3167, 3170, 3171, 3173, - 3174, 3177, 3178, 3181, 3183, 3185, 3186, 3187, 3188, 3189, 3190, 3191, 2899, 3198, 3200, 3202, 3203, 3206, - 3210, 3211, 3213, 3215, 3216, 3219, 3220, 3222, 3223, 3226, 3229, 3230, 3232, 3233, 3235, 3236, 3237, 3238, - 3239, 3240, 3241, 3242, 3243, 3244, 3245, 3246, 3249, 3253, 3256, 3257, 3258, 3259, 3260, 3261, 1952, 3262, - 3263, 2378, 3264, 3266, 3268, 3270, 3271, 3273, 3274, 3275, 3276, 3277, 3278, 3282, 3283, 3284, 3285, 3287, - 3288, 3289, 3290, 3291, 3292, 3294, 3295, 3296, 3297, 3299, 3300, 3303, 3305, 3308, 3309, 3310, 3313, 3316, - 3318, 640, 3322, 3324, 3327, 3330, 3332, 3334, 3337, 3339, 3341, 3342, 3345, 3347, 3349, 3350, 3353, 3355, 3357, - 3359, 3361, 3363, 2276, 3365, 3366, 3367, 3368, 3369, 3371, 3373, 3376, 3377, 3378, 3379, 3381, 3386, 3390, - 3393, 3397, 3400, 3401, 3404, 3406, 3408, 3409, 3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, - 3420, 3421, 3422, 3423, 3424, 3427, 3429, 3431, 3433, 3434, 3435, 3438, 3439, 3440, 3441, 3442, 3443, 3444, - 3445, 3446, 3451, 3453, 3455, 3456, 3458, 3459, 3460, 3463, 3466, 3467, 3468, 3469, 888, 3470, 3471, 3472, 3475, - 3476, 3477, 3478, 3479, 3480, 3481, 3482, 3483, 3484, 3485, 3486, 3488, 3490, 3492, 1644, 3493, 3494, 3495, - 3498, 3499, 3500, 3501, 1433, 3403, 3502, 3505, 3507, 3509, 3510, 3511, 3512, 3513, 3518, 3519, 3520, 3521, - 3524, 3525, 3526, 3527, 3530, 3531, 3532, 3533, 3534, 3535, 3536, 3537, 3539, 3540, 3541, 2072, 3544, 3545, - 3547, 3548, 3549, 3551, 3552, 3553, 3554, 3555, 3558, 3559, 3560, 3561, 3564, 3566, 3570, 3572, 3575, 3577, - 3579, 3584, 3587, 3591, 3598, 3600, 3603, 3605, 3606, 3611, 3613, 3616, 3618, 3622, 3625, 3628, 3633, 3635, - 3636, 3638, 3640, 3643, 3647, 3649, 3652, 3653, 3657, 3660, 3662, 3664, 3668, 3672, 3674, 3676, 3678, 3681, - 3683, 3686, 3688, 3691, 3692, 3693, 3696, 3697, 3698, 3699, 1894, 3703, 3706, 3708, 3710, 3711, 3714, 3716, - 3717, 3718, 3720, 3722, 3724, 3725, 3726, 3727, 3729, 3730, 3732, 1862, 3734, 3736, 3739, 3741, 3742, 3744, - 3746, 3747, 3750, 2658, 3752, 3753, 3754, 3755, 3756, 3757, 3758, 3759, 3760, 3761, 3762, 3763, 3765, 3767, - 3768, 3770, 3771, 2907, 3773, 3774, 3775, 3776, 3777, 3779, 3780, 3781, 3783, 3784, 3786, 1997, 3787, 3788, - 3789, 3790, 89, 3793, 3799, 3802, 3803, 3804, 3807, 3810, 3813, 3816, 3817, 3820, 3822, 3824, 3826, 3829, 3830, - 3833, 3836, 3837, 3839, 3843, 3846, 3847, 3849, 3850, 3853, 3856, 3857, 3861, 3864, 3867, 3869, 3872, 3876, - 3878, 3882, 3884, 3885, 3887, 3889, 3891, 3893, 3895, 3897, 3899, 3904, 3906, 3909, 3911, 3913, 3914, 3916, - 3917, 3919, 3921, 3923, 3925, 3927, 3928, 3930, 3931, 3932, 3935, 3938, 1552, 3939, 3941, 3875, 3943, 3945, - 3946, 3948, 3950, 3951, 3954, 3957, 3958, 3963, 3968, 3970, 3971, 3973, 3975, 3978, 3980, 3981, 3984, 3985, - 3988, 3989, 3991, 3992, 3995, 3998, 3999, 4001, 4002, 4005, 705, 4008, 4010, 4012, 4015, 4018, 4019, 4022, 4023, - 814, 4025, 4028, 4029, 4031, 4033, 4035, 4036, 1153, 4037, 4038, 4039, 4041, 4042, 4045, 4048, 4052, 4055, 4057, - 4058, 4060, 4064, 4066, 4067, 4069, 4071, 4073, 4075, 4076, 4077, 4079, 4081, 4083, 4084, 4085, 4086, 4089, - 4092, 4093, 4094, 4098, 4100, 4103, 4104, 4105, 4106, 4108, 4110, 2278, 4111, 4112, 4113, 4116, 4119, 4121, - 4124, 4125, 4126, 4127, 4130, 4131, 4134, 1899, 4135, 710, 4136, 4137, 4140, 4143, 4145, 4146, 4148, 4150, 4151, - 4153, 4156, 4159, 4160, 4163, 4164, 4165, 4167, 4168, 4169, 4170, 4171, 4172, 4173, 4174, 4177, 4181, 4183, - 4187, 4188, 4189, 4192, 4193, 4196, 4199, 4200, 4201, 4204, 4205, 4206, 4207, 4208, 4209, 4212, 3974, 4213, - 4214, 4215, 4216, 4217, 4218, 4220, 4224, 4227, 4228, 4230, 4232, 4233, 4234, 4235, 4236, 4237, 4238, 4239, - 4242, 4243, 4245, 4246, 4247, 4248, 4249, 4252, 4255, 4257, 4258, 4261, 4264, 4266, 4267, 4270, 4272, 4275, - 4277, 4278, 4280, 4282, 4283, 1871, 4288, 4290, 4292, 4294, 4296, 4300, 4302, 4303, 4305, 4307, 4309, 4311, - 4315, 4317, 4319, 4320, 4323, 4326, 4328, 4330, 4333, 4334, 4335, 4337, 4338, 4339, 4341, 4342, 4343, 4345, - 4347, 4351, 4352, 3709, 4355, 4359, 4360, 4361, 4362, 4363, 4365, 4367, 4369, 4370, 4371, 4372, 4373, 4375, - 4376, 4377, 4380, 4382, 4383, 4384, 4387, 4388, 4389, 4390, 4391, 4393, 4394, 4397, 4398, 4399, 1241, 4400, - 4401, 4404, 4072, 4409, 4411, 1187, 4413, 4415, 4419, 4421, 4423, 4425, 4426, 4427, 4430, 4431, 4433, 4434, - 4435, 4436, 4437, 4438, 4441, 4443, 4445, 4447, 4448, 4449, 4450, 4451, 4452, 4453, 4454, 4455, 4456, 4457, 100, - 4459, 4461, 4462, 4463, 4464, 4465, 4468, 4469, 4470, 4473, 4474, 4475, 4477, 4478, 4480, 4481, 4482, 4483, - 4484, 4487, 4490, 4492, 4493, 4494, 4495, 4496, 4497, 4498, 4499, 4500, 4505, 4507, 1000, 4508, 4510, 4512, - 4514, 4515, 4517, 4520, 4521, 91, 4523, 4526, 4531, 4532, 4533, 4535, 4537, 4538, 4539, 4540, 4541, 4542, 4543, - 4545, 4547, 4548, 4549, 4554, 4555, 4558, 4559, 4560, 4562, 4563, 1002, 4566, 4027, 4567, 4568, 4569, 4572, - 4576, 4577, 614, 4578, 3348, 4579, 4582, 4585, 4588, 1155, 4589, 4590, 4591, 4592, 4593, 4594, 4595, 4596, 4597, - 4599, 4600, 4603, 4606, 4608, 1983, 4612, 4614, 1984, 4615, 4616, 4617, 4618, 4621, 4624, 188, 4629, 4630, 4632, - 4633, 4634, 4638, 4639, 4640, 4645, 4646, 4647, 4648, 4649, 2282, 4650, 4651, 4652, 4653, 4656, 4659, 4662, - 4664, 4667, 4669, 2924, 4676, 4677, 4679, 4681, 4684, 4686, 4689, 4693, 4695, 4696, 4699, 4702, 4703, 4704, - 4705, 4706, 4707, 4708, 4709, 4711, 4715, 4716, 4717, 4720, 4723, 4724, 4726, 4727, 4728, 4729, 4730, 4731, - 3354, 4733, 4734, 4735, 4736, 4737, 4738, 1906, 4739, 4740, 4741, 4742, 1695, 4744, 4745, 4746, 4747, 4748, - 4749, 4751, 4752, 4753, 4754, 4756, 4757, 4758, 4759, 4760, 4761, 4762, 4763, 4767, 4768, 4769, 4770, 4771, - 4772, 4774, 4775, 4776, 4777, 4782, 4783, 4786, 4788, 4791, 639, 11976, 662, 3405, 5010, 6781, 23276, 6974, - 15279, 15484, 17429, 15887, 26713, 18240, 11804, 24566, 475, 24782, 25169, 25219, 25266, 25307, 25432, 25443, - 25395, 25490, 25766, 25775, 25798, 25809, 25833, 25882, 25931, 29350, 29385, 29389, 29407, 29414, 29394, 29435, - 29448, 29460, 20562, 29477, 31705, 29524, 29537, 29546, 29560, 33408, 29564, 29610, 31821, 29626, 3286, 30757, - 29683, 29729, 29754, 5065, 29805, 9011, 29821, 24737, 29850, 29889, 29942, 29955, 28519, 29993, 9355, 8199, 680, - 19571, 27921, 29998, 30145, 30165, 26706, 30182, 30196, 30218, 9041, 30233, 30252, 30257, 30281, 30312, 906, - 30405, 30458, 30463, 30469, 30477, 30488, 30607, 30612, 30624, 30731, 907, 8119, 30798, 30829, 940, 26636, - 20202, 29755, 14673, 9274, 9293, 9273, 30926, 30957, 30972, 33145, 24723, 30979, 14684, 31064, 11518, 31086, - 12016, 15951, 31198, 31231, 31244, 31262, 31272, 31282, 31289, 31290, 31332, 31347, 31314, 31353, 31375, 21287, - 21288, 31343, 31386, 31421, 31430, 31465, 31473, 31485, 31501, 31509, 31521, 14904, 31180, 31528, 14959, 18699, - 18717, 14336, 31544, 26854, 34576, 34578, 31644, 33204, 11421, 23288, 31677, 31713, 11890, 16858, 31728, 31749, - 31760, 31782, 31793, 31805, 31816, 31822, 31827, 31835, 17964, 21594, 31838, 8160, 31930, 29013, 33653, 31961, - 17988, 12421, 23352, 23250, 23292, 31752, 23253, 32029, 16837, 32144, 32166, 24114, 32182, 13896, 31182, 32201, - 31734, 32238, 26180, 32265, 27263, 32294, 32311, 16870, 32319, 17167, 16842, 11071, 32347, 32397, 32415, 32443, - 32456, 21174, 32468, 32493, 32499, 32506, 32531, 32225, 32546, 32564, 32577, 12042, 32634, 32747, 32760, 32766, - 32778, 11501, 32790, 19469, 9252, 31184, 31186, 9731, 32816, 999, 32884, 32892, 9272, 32914, 32926, 32934, - 32939, 32940, 32962, 5517, 1083, 34683, 33053, 8392, 10572, 11960, 24509, 30299, 1300, 30527, 34676, 1302, - 30535, 26450, 26482, 26483, 26489, 26495, 32977, 8703, 1418, 26414, 1419, 28763, 2115, 7606, 1441, 13412, 26273, - 28880, 28909, 1442, 28458, 28479, 28493, 1445, 32733, 1466, 1475, 29032, 26257, 1476, 28595, 28885, 1491, 1502, - 28323, 1510, 5290, 26241, 1526, 29197, 28873, 4090, 1530, 9378, 26158, 3845, 8654, 1531, 1761, 26082, 1535, - 26699, 29865, 1555, 2245, 8605, 28450, 28899, 28901, 1558, 5993, 28354, 29834, 1607, 1667, 23535, 1670, 1790, - 26644, 7585, 20304, 28327, 28400, 26421, 1678, 2221, 10973, 1689, 28865, 8550, 22378, 8540, 1691, 26032, 29417, - 1692, 26591, 29304, 1694, 28069, 31474, 31486, 31507, 31524, 1802, 28906, 1813, 29853, 1814, 8604, 1841, 27959, - 1857, 28466, 1918, 32834, 32863, 32890, 30286, 31680, 31400, 1979, 31833, 33277, 13387, 1980, 21374, 2001, 2035, - 5666, 5564, 2049, 17110, 5287, 2362, 32818, 25810, 2050, 2065, 25762, 29012, 29031, 2066, 25802, 34043, 28092, - 29161, 2094, 34032, 28872, 2097, 34161, 33479, 2106, 2140, 2142, 36878, 36879, 2186, 28117, 2219, 29019, 6372, - 2238, 7995, 9107, 12097, 13676, 17199, 26746, 33929, 18012, 20093, 34468, 20362, 21610, 23755, 23769, 24602, - 19617 - ], - "@alifd/next", - "@angular-devkit/core", - [3, 4, 16], - "schematics", - [2, 5, 6], - [3, 4, 8], - "/animations", - [2, 8, 9], - [3, 10, 9], - "cdk", - [2, 11, 12], - [3, 13, 10], - "ommon", - [2, 14, 15], - [3, 16, 12], - "piler", - [2, 17, 18], - "-cli", - [2, 19, 20], - [3, 16, 11], - "re", - [2, 22, 23], - "forms", - [2, 11, 25], - "http", - [2, 11, 27], - "material", - [2, 11, 29], - "platform-browser", - [2, 11, 31], - "-dynamic", - [2, 32, 33], - [3, 32, 18], - "server", - [2, 35, 36], - "router", - [2, 11, 38], - "@ant-design/react-native", - [3, 40, 12], - "web3-common", - [2, 41, 42], - [3, 43, 17], - "icons", - [2, 44, 45], - "@auth/sveltekit", - "@babel/cli", - [3, 48, 8], - "ode-frame", - [2, 49, 50], - [3, 51, 9], - [2, 52, 23], - [3, 48, 7], - "helper-plugin-utils", - [2, 54, 55], - "parser", - [2, 54, 57], - [3, 58, 8], - "lugin-proposal-class-properties", - [2, 59, 60], - "@11ty/eleventy", - "@adobe/css-tools", - "@api-components/api-method-documentation", - "@apollo/client", - "@asyncapi/generator-react-sdk", - "eslint-parser", - [2, 54, 67], - [3, 61, 23], - "decorators", - [2, 69, 70], - "export-default-from", - [2, 69, 72], - [3, 73, 30], - "namespace-from", - [2, 74, 75], - "object-rest-spread", - [2, 69, 77], - [3, 61, 14], - "syntax-dynamic-import", - [2, 79, 80], - "transform-runtime", - [2, 79, 82], - "olyfill", - [2, 59, 84], - "reset-env", - [2, 59, 86], - [3, 87, 14], - "react", - [2, 88, 89], - "typescript", - [2, 88, 91], - "register", - [2, 54, 93], - [3, 94, 8], - "untime", - [2, 95, 96], - "-corejs2", - [2, 97, 98], - "traverse", - [2, 54, 100], - [3, 101, 8], - "ypes", - [2, 102, 103], - "@biz-dev-ops/md-docs", - "@bwcr_/winston-loki", - "@changesets/cli", - "@cha", - "tscope/chat-ui-kit-react", - [2, 108, 109], - "@ckeditor/ckeditor5-adapter-ckfinder", - [3, 111, 21], - "ngular", - [2, 112, 113], - "utoformat", - [2, 112, 115], - [3, 111, 20], - "basic-styles", - [2, 117, 118], - [3, 119, 21], - "lock-quote", - [2, 120, 121], - "uild-balloon", - [2, 120, 123], - "-block", - [2, 124, 125], - [3, 124, 26], - "classic", - [2, 127, 128], - "deco", - "upled-document", - [2, 130, 131], - [2, 127, 132], - "inline", - [2, 127, 134], - "ckbox", - [2, 117, 136], - [3, 137, 22], - "finder", - [2, 138, 139], - [3, 137, 21], - "lipboard", - [2, 141, 142], - [3, 143, 22], - "oud-services", - [2, 144, 145], - "ore", - [2, 141, 147], - "easy-image", - [2, 117, 149], - [3, 150, 21], - "ngine", - [2, 151, 152], - "ssentials", - [2, 151, 154], - "heading", - [2, 117, 156], - "image", - [2, 117, 158], - [3, 159, 21], - "ndent", - [2, 160, 161], - "link", - [2, 117, 163], - [3, 164, 22], - "st", - [2, 165, 166], - "media-embed", - [2, 117, 168], - "paragraph", - [2, 117, 170], - [3, 171, 22], - "ste-from-office", - [2, 172, 173], - [2, 117, 89], - "table", - [2, 117, 176], - [3, 177, 21], - "yping", - [2, 178, 179], - "ui", - [2, 117, 181], - [3, 182, 21], - "pload", - [2, 183, 184], - "tils", - [2, 183, 186], - "vue", - [2, 117, 188], - "widget", - [2, 117, 190], - "@commitlint/cli", - "@com", - "podoc/compodoc", - [2, 193, 194], - "unica/core", - [2, 193, 196], - "@contenthook/browser", - [3, 198, 13], - "cli", - [2, 199, 200], - "node", - [2, 199, 202], - "@coreui/coreui", - "@csstools/css-parser-algorithms", - [3, 205, 14], - "tokenizer", - [2, 206, 207], - [3, 205, 10], - "media-", - "query-list-parser", - [2, 210, 211], - [2, 209, 212], - "postcss-is-pseudo-class", - [2, 209, 214], - [3, 215, 18], - "progressive-custom-properties", - [2, 216, 217], - "selector-specificity", - [2, 209, 219], - "@cucumber/cucumber", - "@deven-org/documentation-skeleton", - "@dev", - "tea2026/aspernatur-ea-non-porro", - [2, 223, 224], - [3, 225, 12], - "consectetur-ab-unde-quisquam", - [2, 226, 227], - [3, 228, 13], - "upiditate-dolorem-excepturi-impedit", - [2, 229, 230], - "distinctio-soluta-illo-eaque", - [2, 226, 232], - "eum-ullam-est-distinctio", - [2, 226, 234], - [3, 235, 13], - "xplicabo-alias-architecto-sed", - [2, 236, 237], - "improved-journey", - [2, 226, 239], - [3, 240, 13], - "nventore-facilis-corporis-cum", - [2, 241, 242], - "psa-omnis-in-molestiae", - [2, 241, 244], - "literate-computing-machine", - [2, 226, 246], - "maxime-sequi-est-rem", - [2, 226, 248], - "necessitatibus-dolorem-esse-atque", - [2, 226, 250], - "odit-enim-reiciendis-pariatur", - [2, 226, 252], - [3, 253, 17], - "maxime-", - "porro-asperiores", - [2, 255, 256], - [2, 254, 257], - "possimus-ipsa-sint-consequuntur", - [2, 226, 259], - "qui-quos-laborum-amet", - [2, 226, 261], - [3, 262, 15], - "a-ducimus-placeat-minima", - [2, 263, 264], - "dem-voluptate-repudiandae-necessitatibus", - [2, 263, 266], - "rerum-quaerat-porro-animi", - [2, 226, 268], - "ubiquitous-octo-memory", - [2, 226, 270], - "@diotoborg/adipisci-placeat-iure", - [3, 272, 12], - "met-architecto-est", - [2, 273, 274], - "t-totam-perspiciatis", - [2, 273, 276], - [3, 272, 11], - "commodi-voluptatum-libero", - [2, 278, 279], - "delectus-necessitatibus-voluptatum", - [2, 278, 281], - [3, 282, 13], - "serunt-illo-tempora", - [2, 283, 284], - [3, 282, 12], - "icta-recusandae-veniam", - [2, 286, 287], - "olor-earum-quia", - [2, 286, 289], - [3, 290, 17], - "tempora-fuga", - [2, 291, 292], - [3, 290, 16], - "es-praesentium-assumenda", - [2, 294, 295], - "eligendi-est-unde", - [2, 278, 297], - [3, 298, 12], - "sse-accusantium-ratione", - [2, 299, 300], - "illo-amet-architecto", - [2, 278, 302], - "laudantium-itaque-esse", - [2, 278, 304], - [3, 305, 12], - "ibero-asperiores-at", - [2, 306, 307], - "neque-inventore-corporis", - [2, 278, 309], - [3, 310, 12], - "ostrum-eveniet-officiis", - [2, 311, 312], - "odio-dolores-officia", - [2, 278, 314], - "porro-", - "modi-accusamus", - [2, 316, 317], - [2, 278, 318], - [3, 319, 12], - "sychic-bassoon", - [2, 320, 321], - "quasi-repellat-odit", - [2, 278, 323], - [3, 324, 13], - "i-ullam-ipsum", - [2, 325, 326], - "o-dolorem-ducimus", - [2, 325, 328], - "ratione-error-odio", - [2, 278, 330], - [3, 331, 12], - "epellat-blanditiis-quis", - [2, 332, 333], - [3, 292, 8], - "voluptas-distinctio", - [2, 335, 336], - [2, 278, 337], - "ullam-dignissimos-repudiandae", - [2, 278, 339], - "velit-reiciendis-velit", - [2, 278, 341], - [3, 342, 13], - "rbose-robot", - [2, 343, 344], - "@diplodoc/transform", - "@discordjs/rest", - "@dis", - "qada/workspace", - [2, 348, 349], - "@doc-tools/docs", - [3, 351, 11], - [3, 82, 9], - [2, 352, 353], - "@dramaorg/esse-praesentium-eligendi", - [3, 355, 10], - "quae-dolore-nostrum", - [2, 356, 357], - "@eas-framework/server", - "@eightshift/frontend-libs", - "@electron/docs-parser", - "@emotion/babel-plugin", - [3, 362, 9], - "core", - [2, 363, 364], - [3, 365, 10], - "ss", - [2, 366, 367], - "styled", - [2, 363, 369], - "@erboladaiorg/ad-exercitationem-ducimus", - [3, 371, 15], - "speriores-earum-quaerat", - [2, 372, 373], - [3, 374, 25], - "fuga-sint", - [2, 375, 376], - "nam-adipisci", - [2, 375, 378], - "utem-dolores-ipsam", - [2, 372, 380], - [3, 371, 14], - "cupiditate-consectetur-porro", - [2, 382, 383], - [3, 384, 25], - "pariatur-optio", - [2, 385, 386], - [3, 232, 11], - "quis", - [2, 335, 389], - [2, 388, 390], - [2, 382, 391], - "error-atque-ea", - [2, 382, 393], - [3, 394, 15], - "sse-", - "ipsa-numquam", - [2, 396, 397], - [2, 395, 398], - "x-hic-molestias", - [2, 395, 400], - [3, 401, 16], - "plicabo-eius-adipisci", - [2, 402, 403], - "molestiae-voluptatibus-perferendis", - [2, 382, 405], - [3, 406, 22], - "s-nulla-dolor", - [2, 407, 408], - "nisi-culpa-cum", - [2, 382, 410], - "officia-illum-aperiam", - [2, 382, 412], - "perspiciatis-magni-ut", - [2, 382, 414], - "quae-", - "in-veniam", - [2, 416, 417], - [2, 382, 418], - [3, 419, 18], - "rat-mollitia-adipisci", - [2, 420, 421], - [3, 419, 16], - "ibusdam-itaque-tempora", - [2, 423, 424], - "sint-deleniti-dolorem", - [2, 382, 426], - [3, 427, 16], - "t-nesciunt-amet", - [2, 428, 429], - "tenetur-architecto-dolore", - [2, 382, 431], - "ut-dignissimos-laborum", - [2, 382, 433], - "velit-", - "fugit-harum", - [2, 435, 436], - [2, 382, 437], - "@eslint-community/eslint-utils", - "@eslint", - "/js", - [2, 440, 441], - "@fakeyanss/redoc", - "@floating-ui/react-dom", - "@fontsource/inter", - [3, 445, 12], - "roboto", - [2, 446, 447], - "@fortawesome/fontawesome-svg-core", - [3, 449, 14], - "ree-solid-svg-icons", - [2, 450, 451], - [3, 449, 13], - "-fontawesome", - [2, 89, 454], - [2, 453, 455], - "@grandlinex/core", - [3, 457, 12], - "e-kernel", - [2, 458, 459], - "kernel", - [2, 458, 461], - "@gra", - "phql-markdown/core", - [2, 463, 464], - [3, 465, 18], - "docusaurus", - [2, 466, 467], - "@hajtech/webpack-config", - "@hapi/hapi", - "@hishprorg/aliquid-ad-vero", - [3, 471, 12], - "utem-", - "sint-", - "@adonisjs/core", - "sint-quas", - [2, 473, 476], - [2, 472, 477], - [3, 471, 11], - "cum-rem-consequuntur", - [2, 479, 480], - "earum-sint-veritatis", - [2, 479, 482], - [3, 483, 12], - "ius-vero-dicta", - [2, 484, 485], - "st-dicta-quis", - [2, 484, 487], - "incidunt-quibusdam-tempore", - [2, 479, 489], - [3, 490, 12], - "taque-esse-accusamus", - [2, 491, 492], - "ure-optio-nihil", - [2, 491, 494], - "magni-amet-id", - [2, 479, 496], - [3, 497, 17], - "nisi-", - "aperiam", - [2, 499, 500], - [2, 498, 501], - [3, 497, 13], - "xime-voluptates-enim", - [2, 503, 504], - "nihil-ad-ratione", - [2, 479, 506], - [3, 414, 13], - [3, 330, 8], - "unde", - [2, 509, 510], - [2, 508, 511], - [2, 479, 512], - "-perferendis-culpa", - [2, 389, 514], - [2, 479, 515], - "reprehenderit-excepturi-sed", - [2, 479, 517], - "nam-", - "conse", - "quuntur", - [2, 520, 521], - [2, 519, 522], - [2, 474, 523], - [2, 479, 524], - [3, 525, 12], - "unt-officia-eligendi", - [2, 526, 527], - [3, 528, 16], - "volupta", - "tem-nobis", - [2, 530, 531], - [2, 529, 532], - "-vitae-reprehenderit", - [2, 510, 534], - [2, 479, 535], - "wafflejs", - [2, 479, 537], - "@homer0/prettier-plugin-jsdoc", - "@hookform/resolvers", - "@iamtraction/google-translate", - "@idux/cdk", - "@idux/c", - "omponents", - [2, 543, 544], - "@inquirer/core", - "@ionic/core", - "@isaacs/cliui", - "@istanbuljs/nyc-config-typescript", - "@itwin/itwinui-react", - "@jest/core", - "@jest/", - "types", - [2, 552, 553], - "@jsonforms/core", - [3, 555, 11], - "-renderers", - [2, 29, 557], - [2, 556, 558], - [2, 556, 89], - "@juigorg/nisi-molestiae-ut", - [3, 561, 9], - "sit-nam-neque", - [2, 562, 563], - "@jupyterlab/application", - "@kobedevi/sassdoc", - "@kollorg/dicta-itaque-nemo", - [3, 567, 9], - "nihil-", - "veniam-deserunt", - [2, 569, 570], - [2, 568, 571], - "@libphamton/chatfanpage", - [3, 573, 12], - "fb-group", - [2, 574, 575], - "@listr2/prompt-adapter-inquirer", - "@mantine/core", - [3, 578, 9], - "dates", - [2, 579, 580], - "hooks", - [2, 579, 582], - "modals", - [2, 579, 584], - "notifications", - [2, 579, 586], - "prism", - [2, 579, 588], - "style", - "s", - "styles", - [2, 579, 592], - "utils", - [2, 579, 594], - "@material-ui/core", - [3, 596, 13], - [2, 597, 45], - "@mat", - "hematikoi/jsonapi", - [2, 599, 600], - "@mdx-js/react", - "@microsoft/api-extractor", - [3, 603, 11], - "tsdoc", - [2, 604, 605], - "-config", - [2, 606, 607], - "@middy/core", - "@middy/", - "-json-body-parser", - [2, 27, 611], - [2, 610, 612], - "util", - [2, 610, 614], - "@ministryofjustice/frontend", - "@mswjs/interceptors", - "@mui/icons-material", - "@mui/", - "lab", - "@mui/lab", - [2, 619, 29], - "system", - [2, 619, 623], - "x-date-pickers", - [2, 619, 625], - "@neato/guider", - "@ng-doc/core", - [3, 628, 8], - "ui-kit", - [2, 629, 630], - [3, 631, 9], - [2, 632, 186], - "@nomicfoundation/hardhat-chai-matchers", - "@npmcli/arborist", - [3, 635, 8], - "map-workspaces", - [2, 636, 637], - "@augment-vir/common", - "node-gyp", - [2, 636, 640], - "run-script", - [2, 636, 642], - "@npmc", - "orp/marky-markdown", - [2, 644, 645], - "@npm", - "tuanmap/ex-vel-expedita-impedit", - [2, 647, 648], - [3, 649, 12], - "psychic-guide", - [2, 650, 651], - "recusandae-recusandae-nam-et", - [2, 650, 653], - "sed-quo-nemo-rerum", - [2, 650, 655], - "esse-velit-magnam", - [2, 435, 657], - [2, 650, 658], - "@nrwl/devkit", - "@nrwl/", - [2, 3388, 3399], - "@nrwl/tao", - "workspace", - [2, 661, 664], - "@nx/devkit", - "@nx/", - "esbuild", - [2, 667, 668], - "@nx/es", - "lint", - [2, 670, 671], - "@nx/e", - "xpress", - [2, 673, 674], - "js", - "@nx/js", - "nest", - "@nx/nest", - "nextra", - "ode", - "@nx/node", - [2, 667, 664], - "@oclif/command", - [3, 684, 9], - "nfig", - [2, 685, 686], - [2, 685, 23], - "@oclif/", - "plugin-help", - [2, 689, 690], - "@octokit/rest", - "@opentiny/vue", - "-render", - "less", - [2, 694, 695], - [2, 693, 696], - [3, 697, 14], - "theme", - [2, 698, 699], - "-mobile", - [2, 700, 701], - "@otterhttp/cookie", - [3, 703, 11], - "request", - [2, 704, 705], - [3, 706, 13], - "sponse", - [2, 707, 708], - "send", - [2, 704, 710], - "@pact-foundation/pact", - "@patrtorg/a-ad-expedita", - [3, 713, 12], - "ut-amet", - [2, 714, 715], - [3, 713, 11], - [3, 373, 10], - "vel-accusantium", - [2, 718, 719], - [2, 717, 720], - [3, 721, 15], - "natur-dolorum-ducimus", - [2, 722, 723], - "et-hic", - [2, 473, 725], - [2, 717, 726], - [3, 713, 10], - [3, 227, 12], - "culpa-non", - [2, 729, 730], - [2, 728, 731], - [3, 732, 22], - "repudiandae-consequuntur", - [2, 733, 734], - [3, 732, 15], - "quatur-voluptatum-officiis", - [2, 736, 737], - "ducimus-magni-quibusdam", - [2, 728, 739], - "enim-magni-hic", - [2, 728, 741], - [3, 742, 11], - "st-corrupti-deleniti", - [2, 743, 744], - "veni", - "et-tempore-maiores", - [2, 746, 747], - [2, 743, 748], - "illum-sapiente-quos", - [2, 728, 750], - "laborum-doloribus-voluptate", - [2, 728, 752], - [3, 753, 11], - "ibero-", - "doloribus-omnis", - [2, 755, 756], - [2, 754, 757], - [3, 758, 17], - [3, 336, 9], - "sequi", - [2, 760, 761], - [2, 759, 762], - "magn", - "am-aut-adipisci", - [2, 764, 765], - [2, 728, 766], - [3, 767, 12], - "iores-quidem-quo", - [2, 768, 769], - [3, 767, 11], - "olestias-molestias-ut", - [2, 771, 772], - "eius-unde", - [2, 519, 774], - [2, 728, 775], - [3, 386, 9], - "dele", - "niti-quaerat", - [2, 778, 779], - [2, 777, 780], - [2, 728, 781], - [3, 782, 11], - "orro-labore-eos", - [2, 783, 784], - "earum-", - "eius", - [2, 786, 787], - [2, 416, 788], - [2, 728, 789], - [3, 790, 12], - "os-quasi-ipsa", - [2, 791, 792], - "sapiente-eos-magnam", - [2, 728, 794], - [3, 795, 20], - "xercitationem-sit", - [2, 796, 797], - [3, 431, 9], - "nimi-reprehenderit", - [2, 799, 800], - [2, 728, 801], - "@perseid/store", - "@phosphor/widgets", - "@phun-ky/speccer", - "@polymer/polymer", - "@qooxdoo/framework", - "@quasar/extras", - "@readyplayerme/visage", - "@reduxjs/toolkit", - "@rollup/plugin-commonjs", - [3, 811, 15], - "node-", - "resolve", - [2, 813, 814], - [2, 812, 815], - "@sanity/tsdoc", - "@scalar/api-reference", - [3, 818, 8], - "fastify-api-reference", - [2, 819, 820], - "@serenity-js/protractor", - [3, 822, 13], - "webdriverio", - [2, 823, 824], - "@sinonjs/fake-timers", - "@storybook/addon-docs", - "@subwallet/react-ui", - "@supernovaio/sdk", - "-exporters", - [2, 829, 830], - [3, 829, 14], - "upernova-sdk", - [2, 832, 833], - "@sveltejs/eslint-config", - [3, 835, 10], - "kit", - [2, 836, 837], - "vite-plugin-svelte", - [2, 836, 839], - "@svgr/webpack", - "@swc/core", - "@swenkerorg/maiores-voluptatibus-nemo", - [3, 843, 13], - "odi-dolorum-provident", - [2, 844, 845], - [3, 843, 12], - "nulla-voluptates-voluptates", - [2, 847, 848], - "@swisspost/design-system-styles", - "@symbiotejs/symbiote", - "@synion/md-docs", - "@taktikorg/aut-distinctio-repellat", - [3, 853, 11], - "quo-quos", - [2, 729, 855], - [2, 854, 856], - [3, 857, 13], - "rporis-nihil-odit", - [2, 858, 859], - [3, 780, 11], - "i-dolorem", - [2, 861, 862], - [2, 854, 863], - [3, 864, 12], - "olor-", - "quibusdam", - [2, 509, 867], - [2, 866, 868], - [2, 865, 869], - "harum-reprehenderit-perferendis", - [2, 854, 871], - "illum-", - "accusamus-possimus", - [2, 873, 874], - [2, 854, 875], - [3, 876, 12], - "psa-", - "totam-aperiam", - [2, 878, 879], - [2, 877, 880], - "ste-", - "ex-tempore", - [2, 882, 883], - [2, 877, 884], - "taque-", - "nam-e", - "os", - "nam-eos", - [2, 886, 889], - [2, 877, 890], - [3, 891, 18], - "tempor", - "e-exercitationem", - [2, 893, 894], - [2, 892, 895], - "maiores-dolores-aut", - [2, 854, 897], - [3, 898, 12], - [3, 772, 9], - "fuga-", - [3, 259, 8], - [2, 901, 902], - [2, 900, 903], - [2, 899, 904], - "@bugsnag/react-native", - "@enact/sandstone", - "sse-animi", - [2, 887, 908], - [2, 854, 909], - [3, 910, 12], - "ecessitatibus-repudiandae-officia", - [2, 911, 912], - "isi-reprehenderit-amet", - [2, 911, 914], - "placeat-voluptates-dolorum", - [2, 854, 916], - [3, 917, 12], - "raesentium-dolorum-quis", - [2, 918, 919], - [3, 920, 23], - "neque-i", - "psam", - [2, 922, 923], - [2, 921, 924], - "quo-", - "reiciendis-quibusdam", - [2, 926, 927], - [2, 854, 928], - [3, 653, 12], - "atione-veniam", - [2, 930, 931], - [2, 854, 932], - "similique-natus-officia", - [2, 854, 934], - [3, 935, 12], - "uscipit-modi-ratione", - [2, 936, 937], - [3, 895, 8], - "@antora/logger", - "in", - "veniam-in", - [2, 939, 942], - [2, 854, 943], - "unde-", - "animi-omnis", - [2, 945, 946], - [2, 854, 947], - "nobis-blanditiis", - [2, 435, 949], - [2, 854, 950], - [3, 951, 12], - "oluptatem-pariatur-tenetur", - [2, 952, 953], - "@tanem/svg-injector", - "@tan", - "stack/react-query", - [2, 956, 957], - [3, 958, 10], - "svelte-query", - [2, 959, 960], - "@teamhanko/hanko-frontend-sdk", - "@testing-library/cypress", - [3, 963, 17], - "dom", - [2, 964, 965], - "jest-dom", - [2, 964, 967], - [3, 968, 22], - "native", - [2, 969, 970], - [2, 964, 89], - "user-event", - [2, 964, 973], - "@tinyhttp/app", - [3, 975, 10], - "cookie", - [2, 976, 977], - "-signature", - [2, 978, 979], - [3, 978, 12], - "rs", - [2, 981, 982], - "etag", - [2, 976, 984], - "forwarded", - [2, 976, 986], - "proxy-addr", - [2, 976, 988], - "req", - [2, 976, 990], - [3, 991, 12], - [2, 992, 591], - [3, 991, 11], - "outer", - [2, 994, 995], - [2, 976, 710], - "type", - [2, 29611, 30768], - "type-is", - [2, 976, 1000], - "url", - [2, 976, 1002], - "@tsparticles/engine", - "@twurple/ebs-helper", - "@types/estree", - "@types", - "cript-eslint/eslint-plugin", - [2, 1007, 1008], - [3, 1009, 19], - [2, 1010, 57], - [2, 1010, 594], - "@ucloud-fe/react-components", - "@udecode/plate-core", - "@uiw/react-button", - [3, 1015, 11], - "icon", - [2, 1016, 1017], - [3, 1018, 12], - "nput", - [2, 1019, 1020], - "overlay-trigger", - [2, 1016, 1022], - "@uiw/", - "@uiw/utils", - "@unleash/proxy", - "@uploadcare/file-uploader", - "@vitejs/plugin-legacy", - [3, 1028, 15], - [2, 1029, 89], - "@vue/eslint-config-typescript", - "@wesleytodd/openapi", - "@wuxh/dumi", - "@zitterorg/adipisci-quae-eius", - [3, 1034, 12], - "sper", - "natur-", - [3, 386, 10], - "ccaecati", - [2, 1038, 1039], - [2, 1037, 1040], - [2, 1036, 1041], - [2, 1035, 1042], - "t-esse-odit", - [2, 1035, 1044], - [3, 1034, 11], - "cum-", - "ipsum-beatae", - [2, 1047, 1048], - [2, 1046, 1049], - "dolor", - "emque-ut-omnis", - [2, 1051, 1052], - [2, 1046, 1053], - "est-sunt-quos", - [2, 1046, 1055], - [3, 1056, 12], - "um-veritatis-placeat", - [2, 1057, 1058], - "fluffy-waddle", - [2, 1046, 1060], - "glowing-barnacle", - [2, 1046, 1062], - "perferendis-consectetur", - [2, 873, 1064], - [2, 1046, 1065], - [3, 1066, 12], - "taque-n", - "isi-", - "veritatis", - [2, 1069, 1070], - [2, 1068, 1071], - [2, 1067, 1072], - "probable-octo", - [2, 1046, 1074], - "upgraded-fishstick", - [2, 1046, 1076], - "@zkportal/aleo-oracle-sdk", - "abort-controller", - "accepts", - "acl", - "acorn", - "arethetypeswrong", - "acorn-walk", - "action-cli", - "adm-zip", - "after", - "agenda", - "aid-guard1", - "airtap", - "ajv", - "ajv-formats", - "although-line-wall-corn", - "amqp", - "lib", - "amqplib", - "analsorhost-simple-bs", - "angular", - "-animate", - [2, 1098, 1099], - "angular-", - [2, 1101, 200], - [2, 1101, 29], - "ansi-colors", - "ansi-", - "escapes", - [2, 1105, 1106], - "regex", - "ansi-regex", - [2, 1105, 592], - "ansi", - "ansis", - "ant-design-vue", - "antd", - "antfu", - "anyway-south-boy-pilot", - "api-console", - "apidoc", - "-markdown", - [2, 1118, 1119], - "apn", - "apollo-cache-inmemory", - "apollo-c", - "lient", - [2, 1123, 1124], - "apollo-", - [2, 1126, 163], - "-http", - [2, 1127, 1128], - "app-root-path", - "appium-android-driver", - "apple-transportation-web3-locate", - "appl", - "icationinsights", - [2, 1133, 1134], - "appsync-client-node", - "archiver", - "arg", - "argparse", - "arrangement-tell-arrange", - "arra", - "y.prototype.flatmap", - [2, 1141, 1142], - "arrify", - "assert", - "-plus", - "assert-plus", - "assume", - "async", - "-listen", - [2, 1149, 1150], - "async-", - "retry", - "async-retry", - "validator", - [2, 1152, 1155], - "atob", - "aud", - "auto-changelog", - "auto-", - "install", - [2, 1160, 1161], - "auto", - "prefixer", - [2, 1163, 1164], - "ava", - "awesome-typescript-loader", - "aws-sdk", - "axe-core", - "axios", - "azure-storage", - "babel", - "babel-cli", - "babel-c", - "babel-core", - "babel-", - "eslint", - [2, 1176, 1177], - "generator", - [2, 1176, 1179], - [3, 55, 7], - "fixtures", - [2, 1181, 1182], - [2, 1176, 1183], - [3, 1184, 13], - "plugin-", - "test-runner", - [2, 1186, 1187], - [2, 1185, 1188], - "vue-jsx-merge-props", - [2, 1185, 1190], - "jest", - "babel-jest", - "loader", - [2, 1176, 1194], - "add-module-exports", - [2, 1186, 1196], - [2, 1176, 1197], - [3, 1198, 13], - "dynamic-import-node", - [2, 1199, 1200], - "external-helpers", - [2, 1199, 1202], - "import", - [2, 1199, 1204], - [3, 1205, 14], - "stanbul", - [2, 1206, 1207], - "lodash", - [2, 1199, 1209], - "module-resolver", - [2, 1199, 1211], - "name", - "d-asset-import", - [2, 1213, 1214], - [2, 1199, 1215], - [2, 1199, 80], - [3, 1217, 20], - "jsx", - [2, 1218, 1219], - [3, 82, 10], - "to-generator", - [2, 1152, 1222], - [2, 1221, 1223], - [2, 1199, 1224], - [3, 1225, 23], - "class", - "-properties", - [2, 1227, 1228], - [2, 1226, 1229], - "-legacy", - [2, 70, 1231], - [2, 1226, 1232], - "es2015-block-scoping", - [2, 1226, 1234], - [3, 1235, 30], - "module", - "s-commonjs", - [2, 1237, 1238], - [2, 1236, 1239], - "temp", - "late-literals", - [2, 1241, 1242], - [2, 1236, 1243], - [2, 1226, 77], - "react-", - "react-jsx", - [2, 1226, 1247], - [3, 1248, 29], - "remove-prop-types", - [2, 1249, 1250], - [3, 1248, 25], - [2, 1252, 1179], - [3, 1248, 24], - [2, 1254, 96], - "babel-p", - [2, 1256, 84], - "reset-", - "airbnb", - [2, 1258, 1259], - [2, 1256, 1260], - [3, 1261, 13], - "env", - [2, 1262, 1263], - [3, 1264, 14], - "s2015", - [2, 1265, 1266], - [2, 1262, 89], - "-app", - [2, 1268, 1269], - "stage-0", - [2, 1262, 1271], - [3, 1272, 19], - "1", - [2, 1273, 1274], - "2", - [2, 1273, 1276], - "3", - [2, 1273, 1278], - [2, 1176, 93], - "babel-r", - [2, 1281, 96], - "template", - [2, 1176, 1283], - "babel-t", - "raverse", - [2, 1285, 1286], - [2, 1285, 103], - "ify", - "babelify", - "babylon", - "backbone", - "baqend", - "bark-needs-visit4", - "base-64", - "base-", - "individual-comfortable-crop", - [2, 1296, 1297], - "base", - "@expressots/core", - "base64-js", - [2, 30536, 26449, 2026], - "auth", - "basic-auth", - "batuta", - "bcrypt", - "-nodejs", - [2, 1306, 1307], - "bcryptjs", - "bearcat", - "beautify-benchmark", - "beaut", - "y-foot-compass5", - [2, 1312, 1313], - "beefy", - "believed-usually-greater-passage", - "benchmark", - "best-lips-shoulder", - "best-", - "valley2", - [2, 1319, 1320], - "between-cry-additional", - "beyond", - "bfj", - "bignumber.js", - "bindings", - "bip39", - "bizcharts", - "bl", - "blanket", - "blessed", - "-con", - "trib", - "-contrib", - [2, 1331, 1334], - "blockchain-am5", - [3, 1336, 11], - "baby", - [2, 1337, 1338], - [3, 1339, 13], - "ck1", - [2, 1340, 1341], - "closely", - [2, 1337, 1343], - "directly", - [2, 1337, 1345], - "egg", - [2, 1337, 1347], - "happily", - [2, 1337, 1349], - "language", - [2, 1337, 1351], - "own8", - [2, 1337, 1353], - "record", - [2, 1337, 1355], - "scientist", - [2, 1337, 1357], - "block", - "ed", - "blocked", - "bluebird", - "bn.js", - "body-parser", - "bookshelf", - "boom", - "bootstrap", - "-sass", - [2, 1367, 1368], - "bower", - "boxen", - "brain", - "branch-body-web3-feel", - "branch-", - "camera-web3-organization", - [2, 1374, 1375], - "brfs", - "broccoli-funnel", - [3, 1378, 9], - "merge-trees", - [2, 1379, 1380], - "test-", - "helper", - "test-helper", - [2, 1379, 1384], - "brought-tried-whether8", - "browser-sync", - "browser", - "browserify", - "-shim", - [2, 1389, 1390], - "slist", - [2, 1388, 1392], - "bs58", - "bson", - "btoa", - "buble", - "buffer", - "-equal", - [2, 1398, 1399], - "bufferutil", - "built-who-entire", - "built", - "in-modules", - [2, 1403, 1404], - "bulma", - "bump-cli", - "bundle-collapser", - "bunyan", - "busboy", - "bytebuffer", - "byte", - "bytes", - "c8", - "cac", - "cache-manager", - "call-bind", - [2, 32731, 158], - [2, 30999, 28513], - "camelcase", - "caniuse", - "-lite", - [2, 1421, 1422], - "canvas", - "careful-faster-dirty-matter", - "case-sensitive-paths-webpack-plugin", - "casperjs", - "caught-brain-service0", - "chai", - "-as-promised", - [2, 1429, 1430], - "chai-", - "passport-strategy", - [2, 1432, 1433], - "subset", - "chai-subset", - "chalk", - "chance", - "-able-necessary-bell", - [2, 1438, 1439], - "@amaui/icons-material-rounded-react", - [2, 26909, 26910], - "change-case", - "change", - [2, 27056, 28675], - "changelogen", - "chart.js", - "cheerio", - "chicken-fell-spread", - "child_process", - "child", - "-pro", - "cess-promise", - [2, 1452, 1453], - [2, 1451, 1454], - "choerodon-ui", - "chokidar", - "ci-info", - "ckeditor5", - "names", - "classnames", - "clean-css", - "clean-", - "webpack-plugin", - [2, 1463, 1464], - [2, 29755, 25720], - "r", - "clear", - "-module", - [2, 1468, 1469], - "cli-boxes", - "cli-", - "color", - "cli-color", - "@immobiliarelabs/backstage-plugin-gitlab-backend", - [2, 819, 28594], - "cli-cursor", - "spinner", - "cli-spinner", - [2, 1479, 591], - "cli-table", - "cli-table2", - "cli-table3", - "cli-t", - "runcate", - [2, 1484, 1485], - "ux", - "cli-ux", - "clipanion", - "clip", - "@busy-hour/blaze", - "clipboard", - "y", - "clipboardy", - "cliui", - "clone", - "clsx", - "clui", - "co", - "co-prompt", - "code", - [2, 1491, 3172], - "codecov", - "mirror", - "codemirror", - "coffee-script", - "coffee", - "script", - [2, 1507, 1508], - "attw", - "colorette", - "colors", - "columnify", - "comm", - "and-exists", - [2, 1514, 1515], - "command-", - "line-args", - [2, 1517, 1518], - [3, 1519, 13], - "usage", - [2, 1520, 1521], - "command", - "er", - "commander", - "@casl/ability", - "commitizen", - "commit", - "commitlint", - "@types/xast", - "tsdown", - "common-tags", - "component-emitter", - "comp", - [2, 15679, 26697], - "compression", - "concat-stream", - "conc", - "urrently", - [2, 1538, 1539], - "config", - "store", - "configstore", - "connect", - "-flash", - [2, 1544, 1545], - "connect-", - "history-api-fallback", - [2, 1547, 1548], - "mongo", - [2, 1547, 1550], - "redis", - [2, 1547, 1552], - "cons", - "globrex", - "consola", - "consol", - [3, 1014, 14], - "consolidate", - "content-disposition", - "content-", - [2, 1561, 998], - "content", - "hook", - "contenthook", - "conventional-changelog", - [2, 1566, 20], - [3, 1567, 24], - "onventionalcommits", - [2, 1568, 1569], - "conve", - "rt-source-map", - [2, 1571, 1572], - "-parser", - [2, 977, 1574], - "cookie-", - "session", - [2, 1576, 1577], - "cookie-s", - "ignature", - [2, 1579, 1580], - "copy-to-clipboard", - "copy-", - [2, 1583, 1464], - "copy", - "files", - "copyfiles", - "corcojs-qrcode", - "-logo", - [2, 1588, 1589], - "cordova", - "-js", - "core-js", - "cors", - "cosmiconfig", - "coveralls", - "cpy-cli", - "crawler", - "crc", - "create-hash", - "create-", - "react-class", - [2, 1601, 1602], - "critical", - "cron", - "croner", - "emoji-js", - "cronnor", - "cropperjs", - "cross-env", - "cross-", - "fetch", - "cross-fetch", - "spawn", - "cross-spawn", - "crypto", - "-browserify", - [2, 1616, 1617], - "crypto-", - "crypto-js", - "cson-parser", - "cspell", - "css", - "css-declaration-sorter", - "css-", - "functions-list", - [2, 1625, 1626], - "css-loader", - "minimizer-webpack-plugin", - [2, 1625, 1629], - "select", - "css-select", - "tree", - "css-tree", - "cssdb", - "cssesc", - "cssnano", - "cssstyle", - "csstype", - "csurf", - "csv", - "csv-generate", - "csv-", - "parse", - "csv-parse", - "stringify", - [2, 1643, 1646], - "csvtojson", - "cucumber", - "cuid", - "cypress", - "cz-conventional-changelog", - "d3", - "d3-array", - "d3-scale", - "d3-s", - "election", - [2, 1656, 1657], - "hape", - "d3-shape", - "dable-effect", - "daisyui", - "dance-you-thou", - "dargs", - "datafire", - "date", - "mercurius", - "date-fns", - "form", - "unbundle", - "format", - "dateformat", - "dayjs", - "deasync", - "debounce", - "debug", - "decamelize", - "@pinia/testing", - "decompress", - "dedent", - "dedupe", - "deep-assign", - "deep-", - "ist-ability3", - [2, 1554, 1684], - [2, 1683, 1685], - "diff", - "deep-diff", - "remeda", - "deep-eql", - "@nuxt/ui", - "input-otp", - "deep-equal", - "@assistant-ui/react", - "xtend", - "deep-extend", - "deep", - "merge", - "deepmerge", - "del", - "del-cli", - "delay", - "depcheck", - "depd", - "dependency-check", - "depth-clay-tax7", - "detect-indent", - "detect-", - "port", - "detect-port", - "did-enter-lay", - "2html", - "diff2html", - "erence-mile-pocket5", - [2, 1687, 1714], - "direct", - "ed-graph-typed", - [2, 1716, 1717], - "dirty-chai", - "discord-backend-manager", - "discord", - ".js", - "discord.js", - "dist", - "ance-its-clear-rate", - [2, 1724, 1725], - "dmd", - "dmd-grunt-jsdoc2md", - "dnd-multi-backend", - "dnode", - "doc-detective", - "-core", - [2, 1731, 1732], - "docco", - "docgen", - "dockerode", - "docpad", - "docschema", - "docs", - "ify-tabs", - [2, 1739, 1740], - "doctoc", - "docu", - "mentation", - [2, 1743, 1744], - "document", - "db", - "documentdb", - "-lunr-search", - [2, 467, 1749], - "dom-helpers", - "dom-", - "serializer", - [2, 1752, 1753], - "to-image-more", - [2, 1752, 1755], - "dompurify", - "dot", - "dotenv", - "-exp", - [2, 26024, 1764, 1524], - "-expand", - [2, 1759, 1762], - "download", - "-git-repo", - [2, 1764, 1765], - "doxdox", - [2, 1767, 20], - "doxdox-c", - [2, 1769, 147], - "doxdox-", - "-dox", - [2, 57, 1772], - [2, 1771, 1773], - [3, 1774, 14], - "jsdoc", - [2, 1775, 1776], - "renderer-bootstrap", - [2, 1771, 1778], - [3, 1779, 16], - "json", - [2, 1780, 1781], - "markdown", - [2, 1780, 1783], - "draft-js", - "dropzone", - "dtslint", - "dubnium", - "dumi", - [2, 31436, 31494], - "dumi-cm", - "duplexer", - "dw-neit-antd", - "each", - "echarts", - "eclint", - "ejs", - "elasticsearch", - "elect", - "ricity-death-web3-story", - [2, 1799, 1800], - [2, 28004, 28078], - "on", - "electron", - "-builder", - [2, 1804, 1805], - [3, 1806, 9], - "packager", - [2, 1807, 1808], - [3, 1809, 10], - "rebuilt", - [2, 1810, 1811], - [3, 32493, 21], - [2, 28080, 31811], - "rebuilder", - [2, 1807, 1815], - "element-resize-detector", - "element-", - "element-ui", - "eleventy", - "elliptic", - "email-templates", - "email", - "emailjs", - "ember-cli", - "-babel", - [2, 1825, 1826], - [3, 1827, 10], - "htmlbars", - [2, 1828, 1829], - "emmet", - "emotion", - "encodeurl", - "end-of-stream", - "enhanced-resolve", - "enquirer", - "ent", - "enumtype", - "envify", - "envi", - "@lobehub/chat", - "envinfo", - "enzyme", - "-adapter-react-16", - [2, 1843, 1844], - [3, 1845, 15], - [2, 1846, 594], - "enzyme-", - "shallow-equal", - [2, 1848, 1849], - "error", - "handler", - [2, 1851, 1852], - "es-check", - "es-value-fixtures", - "es5-ext", - "@upstash/context7-mcp", - "shim", - "es5-shim", - "es6-error", - "es6-", - "promise", - "es6-promise", - [3, 1863, 10], - [2, 1864, 1289], - "es6-shim", - "escape", - "-html", - "escape-html", - "escape-", - "string", - "-regexp", - [2, 1871, 1872], - [2, 1870, 1873], - "escodegen", - [3, 67, 7], - "-airbnb", - [2, 1541, 1877], - [2, 1876, 1878], - "-base", - [2, 1879, 1880], - [3, 1881, 21], - [2, 1882, 91], - [3, 1879, 14], - "google", - [2, 1884, 1885], - [3, 1886, 15], - "ulp", - [2, 1887, 1888], - "oclif", - [2, 1884, 1890], - "-typescript", - [2, 1891, 1892], - "prettier", - [2, 1884, 1894], - "app", - "react-app", - [2, 1884, 1897], - "semistandard", - [2, 1884, 1899], - [3, 1900, 15], - "tandard", - [2, 1901, 1902], - "unjs", - [2, 1884, 1904], - "xo", - [2, 1884, 1906], - "-lass", - [2, 1907, 1908], - "doc-", - [2, 1910, 1179], - [2, 1876, 1911], - "-resolver-typescript", - [2, 1204, 1913], - [2, 1876, 1914], - [2, 1876, 1194], - [3, 67, 8], - [2, 32825, 32833], - "lugin-ava", - [2, 1917, 1919], - [3, 1920, 14], - [2, 1921, 1172], - "compat", - [2, 1921, 1923], - "es5", - [2, 1921, 1925], - [3, 1926, 16], - "-comments", - [2, 671, 1928], - [2, 1927, 1929], - [3, 1930, 21], - "plugin", - [2, 1931, 1932], - "flowtype", - [2, 1921, 1934], - "html", - [2, 1921, 1936], - [2, 1921, 1204], - [2, 1921, 1192], - [3, 1939, 15], - "sdoc", - [2, 1940, 1941], - [3, 1942, 16], - "onc", - [2, 1943, 1944], - "x-a11y", - [2, 1943, 1946], - [2, 1921, 1783], - [3, 1948, 15], - "ocha", - [2, 1949, 1950], - "n", - [2, 1921, 1952], - [2, 1953, 681], - [2, 1921, 1894], - [3, 1955, 16], - "omise", - [2, 1956, 1957], - [2, 1921, 89], - "-hooks", - [2, 1959, 1960], - [3, 1959, 16], - "gexp", - [2, 1962, 1963], - "security", - [2, 1921, 1965], - [3, 1966, 15], - "onarjs", - [2, 1967, 1968], - [2, 1967, 1902], - "velte", - [2, 1967, 1971], - "test", - "ing-library", - [2, 1973, 1974], - [2, 1921, 1975], - [3, 1976, 15], - [2, 1977, 1941], - [2, 26374, 26377], - [2, 30307, 5592], - "unicorn", - [2, 1921, 1981], - "vite", - "vitest", - [2, 1921, 1984], - [3, 1985, 15], - "ue", - [2, 1986, 1987], - "remo", - "te-tester", - [2, 1989, 1990], - [2, 1876, 1991], - "scope", - [2, 1876, 1993], - "visitor-keys", - [2, 1876, 1995], - "rc", - "eslintrc", - "esm", - "espree", - "@architect/asap", - "ima", - "esprima", - "estraverse", - "estr", - "ee-walker", - [2, 2005, 2006], - "ethereumjs-tx", - [3, 2008, 11], - [2, 2009, 614], - "evalmd", - "event-stream", - "event", - "emitter2", - [2, 2013, 2014], - [3, 2015, 12], - [2, 2016, 1278], - "events", - "excellent-difficult-good", - "execa", - "exit", - "expect", - "-type", - "expect-type", - "expect.js", - "express", - "-adexe", - [2, 2026, 2027], - [3, 2028, 9], - "utodoc", - [2, 2029, 2030], - "express-", - [2, 2032, 1179], - "handle", - "canvaskit-wasm", - "handlebars", - [2, 2032, 2036], - "jwt", - "express-jwt", - [2, 2032, 1577], - "tools", - [2, 2032, 2041], - [3, 2042, 9], - "yped-rpc", - [2, 2043, 2044], - [2, 2032, 1155], - "zod-api", - [2, 2032, 2047], - "@crxjs/vite-plugin", - [2, 32904, 37123], - "extend", - "-shallow", - [2, 2051, 2052], - "extract-text-webpack-plugin", - "extract-", - "zip", - "extract-zip", - "facing-cook", - "fair-tower-web3-store", - "faker", - "fancy-log", - "fast", - "-check", - "fast-check", - [2, 32904, 13392], - "@antora/cli", - "fast-csv", - "fast-", - [2, 2068, 1693], - "glob", - "fast-glob", - "plist", - "fast-plist", - "xml-parser", - [2, 2068, 2074], - "click", - "fastclick", - "fastify", - "father", - "faucet", - "fbjs", - "fe-pilot", - "feature-rising-small7", - "femo", - "-mock", - "fetch-mock", - "fibers", - "figlet", - "figures", - "file", - "-loader", - "file-loader", - "file-", - [2, 29611, 7436, 26391], - "file-saver", - "file-type", - "planck", - "filesize", - "finalhandler", - "find", - "-cache-dir", - [2, 2100, 2101], - "find-", - "up", - "find-up", - "syncpack", - "findup-sync", - "firan-logging", - "firebase", - "-admin", - [2, 2109, 2110], - [3, 2111, 9], - [2, 2112, 2041], - "fixpack", - [2, 2120, 1145], - "fixturify", - "flat", - "pak-bundler", - [2, 2117, 2118], - [3, 639, 13], - [2, 2125, 23], - "flatpickr", - "flightplan", - "flow", - [3, 639, 15], - "flow-bin", - "@date-vir/duration", - "flowbite", - "fluent-ffmpeg", - "flux", - "follow-redirects", - "font-awesome", - "for-each", - "forever", - "fork-ts-checker-webpack-plugin", - "-alt", - [2, 2135, 2136], - "-data", - "form-data", - "nolyfill", - "formidable", - [2, 13402, 31197], - "k", - "formik", - "fresh", - "-dangerous", - [2, 2145, 2146], - "friendly-errors-webpack-plugin", - "front-matter", - "fs", - "fs-extra", - "fs-jetpack", - "fs-promise", - "fsevents", - "fstream", - "ftp", - [3, 1626, 10], - "have-names", - [2, 2157, 2158], - "fur-race-web3-pale", - "fuse.js", - "futen", - "fuzzy", - "gaze", - "gc-signals", - "-angular", - [2, 1179, 2166], - [3, 2167, 10], - "gulp-angular", - [2, 2168, 2169], - "nitro", - [2, 2168, 2171], - "gener", - "ic-pool", - [2, 2173, 2174], - "gensequence", - "gentle-party-other", - "geolib", - "get-package-type", - [2, 2181, 668], - [3, 15376, 16], - "get-port", - "get-", - "stdin", - "get-stdin", - "@c15t/backend", - "ream", - "get-stream", - "execute-in-browser", - "tsconfig", - [2, 2183, 2190], - "getmac", - "gh-pages", - "ghooks", - "github", - "-buttons", - [2, 2195, 2196], - [2, 11941, 2201], - "-parent", - "glob-parent", - "smart-text-reporter", - "global", - "globals", - "by", - "globby", - "gm", - "gmll", - "-spreadsheet", - [2, 1885, 2208], - "apis", - "googleapis", - "got", - "government-letter-web3-till", - "govuk-frontend", - "graceful-fs", - "gradually-current-chief", - "graph-these", - "graph", - [2, 25849, 25854], - "graphql", - "leaflet-gesture-handling", - "graphql-tag", - [3, 2222, 9], - "ools", - [2, 2223, 2224], - "gray-matter", - "grpc", - "grunt", - "-templates", - [2, 2166, 2229], - [2, 2228, 2230], - "grunt-a", - "uto-release", - [2, 2232, 2233], - "grunt-", - [2, 2235, 1389], - "grunt-b", - "animejs", - "grunt-bump", - "grunt-cli", - "grunt-c", - "oncurrent", - [2, 2241, 2242], - [3, 2243, 9], - [2, 26107, 26938], - "trib-clean", - [2, 2244, 2246], - [3, 2247, 15], - "ompass", - [2, 2248, 2249], - [3, 2250, 16], - "ncat", - [2, 2251, 2252], - [3, 2253, 17], - "nect", - [2, 2254, 2255], - "py", - [2, 2251, 2257], - "sslint", - [2, 2248, 2259], - [3, 2260, 17], - "min", - [2, 2261, 2262], - [3, 2247, 14], - "htmlmin", - [2, 2264, 2265], - "imagemin", - [2, 2264, 2267], - [3, 2268, 15], - "nternal", - [2, 2269, 2270], - "jshint", - [2, 2264, 2272], - [2, 2264, 695], - "unit", - "nodeunit", - [2, 2264, 2276], - "sass", - [2, 2264, 2278], - "uglify", - [2, 2264, 2280], - "watch", - [2, 2264, 2282], - "ventional-changelog", - [2, 2244, 2284], - [3, 2285, 19], - "github-", - "releaser", - [2, 2287, 2288], - [2, 2286, 2289], - [2, 2235, 1177], - "jscs", - "grunt-jscs", - "grunt-js", - "doc", - "grunt-jsdoc", - "karma", - "grunt-karma", - "mocha-test", - [2, 2235, 2299], - "newer", - "grunt-newer", - "grunt-n", - "otify", - [2, 2303, 2304], - "pm", - "grunt-npm", - "grunt-sass", - "grunt-sa", - "ucelabs", - [2, 2309, 2310], - "grunt-s", - "augment", - "grunt-shell", - "imple-mocha", - [2, 2312, 2315], - "pritesmith", - [2, 2312, 2317], - "usemin", - [2, 2235, 2319], - "gts", - "guarapi", - "gulp", - [3, 2229, 9], - "cache", - [2, 2324, 2325], - [2, 2169, 2326], - "gulp-a", - "tom-electron", - [2, 2328, 2329], - "utoprefixer", - [2, 2328, 2331], - "wspublish", - [2, 2328, 2333], - "zure-storage", - [2, 2328, 2335], - "gulp-", - "gulp-babel", - "gulp-b", - "vir", - "gulp-bom", - [1, 2343, 2349], - [0, 4796, 4797, 4798, 4799], - "gulp-bower", - "rowserify", - [2, 2339, 2345], - "uffer", - "gulp-buffer", - [0, 2358, 2380, 2388, 2399], - "augment-vir", - "gulp-bump", - "gulp-cache", - "d", - "gulp-cached", - "gulp-c", - "hanged", - [2, 2355, 2356], - [0, 1673, 4484, 4809, 1461, 3744, 4804, 1282, 4805, 4806, 3028, 3911, 4812, 2609, 3849, 4023, 4808], - "gulp-clean", - "-css", - [2, 2359, 2360], - "@flmngr/flmngr-react", - "gulp-coffee", - "gulp-co", - "mpass", - [2, 2364, 2365], - "gulp-concat", - [2, 2367, 2360], - "gulp-con", - "flict", - [2, 2369, 2370], - [2, 2369, 2255], - "gulp-copy", - "sscomb", - [2, 2355, 2374], - "gulp-css", - [2, 2376, 671], - "nano", - [2, 2376, 2378], - [ - 0, 1499, 1797, 3135, 1429, 2070, 695, 2278, 1983, 1437, 2675, 4868, 2297, 2899, 89, 3875, 4193, 4747, 1843, - 1177, 1209, 3220, 3984, 4135, 4487, 4568, 1448, 1651, 668, 3561, 4474, 2924, 1169, 1457, 1859, 2151, 2720, 3183, - 3416, 1894, 4952, 4473, 4955, 4860, 2025, 4919, 3758, 4929, 3817, 3824, 4939, 4320, 4469, 4873, 1175, 1628, - 4937, 4941, 91, 53, 4856, 4865, 4874, 2900, 2990, 3105, 4925, 3876, 4869, 4880, 4892, 1165, 1178, 1195, 3008, - 3090, 3564, 3696, 3884, 4307, 4705, 692, 4855, 4863, 4870, 2925, 4931, 4891, 1257, 3613, 3618, 4940, 4330, 192, - 4864, 4866, 4907, 3816, 4934, 606, 4883, 4890, 1264, 4909, 4917, 3734, 3885, 4824, 4831, 4852, 4859, 4923, 4835, - 4884, 1268, 3107, 4681, 4840, 4875, 1959, 1978, 2923, 3904, 4820, 4827, 1030, 4895, 1272, 4913, 1938, 4817, - 4842, 1208, 4916, 2881, 1566, 32965, 1895, 1947, 1948, 2921, 4815, 4872, 4887, 1845, 3810, 3820, 4822, 4851, - 4912, 4922, 3591, 4829, 1011, 3584, 4889, 4927, 2054, 4949, 4849, 4946, 33009, 4882, 1255, 1198, 4897, 4879, - 1009, 1426, 4899, 4903, 61, 1233, 1570, 4906 - ], - "gulp-csso", - "data", - "gulp-data", - "gulp-eslint", - "include", - [2, 2093, 2385], - [2, 2337, 2386], - [0, 4957, 4959, 3286, 4627, 4960, 89, 4962, 4963, 4964, 4967], - "ter", - "gulp-filter", - "gulp-f", - "latmap", - [2, 2391, 2392], - [3, 2393, 9], - "ten", - [2, 2394, 2395], - "ormat-md", - [2, 2391, 2397], - 1772064000000, - "gulp-ftp", - [2, 2337, 2193], - [1, 2343, 2418], - "it", - "gulp-git", - "gulp-gzip", - [2, 2337, 2036], - "gulp-h", - "eader", - "gulp-header", - "tml-replace", - [2, 2407, 2410], - [3, 2411, 9], - [2, 2412, 2262], - "font", - "iconfont", - [2, 2337, 2415], - "gulp-i", - [0, 2431, 0, 2442, 2443], - "gulp-if", - "gnore", - "gulp-ignore", - "mage-resize", - [2, 2417, 2422], - [3, 2423, 10], - [2, 2424, 2262], - "nclude", - [2, 2417, 2426], - "gulp-in", - "ject", - "gulp-inject", - [0, 1091, 4094, 3530, 4227, 1092, 2858], - "line-css", - [2, 2428, 2432], - "stall", - [2, 2428, 2434], - [2, 2417, 1207], - "jade", - "gulp-jade", - "gulp-ja", - "smine", - [2, 2439, 2440], - [0, 4973, 4976, 1098, 364, 4977, 4978], - 1771804800000, - "gulp-jscs", - "gulp-js", - "hint", - "gulp-jshint", - "on-editor", - [2, 2445, 2448], - "gulp-less", - "gulp-l", - "ivereload", - [2, 2451, 2452], - "oad-plugins", - [2, 2451, 2454], - "mini", - [1, 2343, 2470], - "minify-css", - [2, 2337, 2458], - [3, 2459, 12], - [2, 2460, 1936], - "gulp-m", - "gulp-mocha", - "gulp-newer", - "gulp-n", - "g-annotate", - [2, 2465, 2466], - "odemon", - [2, 2465, 2468], - [0, 2471, 0, 2483, 34352], - [0, 3467, 4094, 2858, 3090, 4], - "gulp-notify", - "extra", - "extras", - [2, 1186, 2474], - [2, 2337, 2475], - "gulp-plu", - "mber", - [2, 2477, 2478], - "gulp-p", - "ostcss", - [2, 2480, 2481], - [0, 4973, 4976, 1098, 4986, 4988, 4977, 4989, 6, 4978, 1283, 4991], - "ocess", - "reprocess", - [2, 2480, 2485], - 1770508800000, - [1, 2343, 2497], - "gulp-prompt", - [2, 2337, 89], - "gulp-re", - "mote-src", - [2, 2491, 2492], - "gulp-rename", - "place", - [2, 2491, 2495], - [0, 2513, 0, 2514, 2523], - "gulp-rev", - "-replace", - [2, 2498, 2499], - "gulp-r", - "uby-sass", - [2, 2501, 2502], - "gulp-sass", - "gulp-s", - "gulp-sftp", - "gulp-shell", - "gulp-size", - "ourcemaps", - [2, 2505, 2509], - "trip-debug", - [2, 2505, 2511], - [0, 4484], - [0], - "gulp-stylus", - "vg-sprite", - [2, 2505, 2516], - "gulp-svg", - "gulp-svgmin", - [2, 2518, 1542], - [2, 2337, 1283], - "gulp-t", - 1771113600000, - "gulp-tsb", - "gulp-ts", - [2, 2525, 671], - "cript", - "ypescript", - [2, 2522, 2528], - "gulp-uglify", - [1, 2343, 2532], - [0, 2534, 0, 2535, 2537], - "gulp-uncss", - [0, 4484, 3493], - [0, 1098, 12, 4627, 5001, 837], - "gulp-usemin", - 1771718400000, - "ref", - "gulp-useref", - [1, 2343, 2561], - "gulp-util", - "vinyl-zip", - [2, 2337, 2542], - "gulp-watch", - "gulp-w", - "ebpack", - [2, 2545, 2546], - "gulp-web", - [2, 2548, 36], - "gulp-zip", - ".spritesmith", - [2, 2323, 2551], - "gzip-size", - "hallmark", - "hammerjs", - "hapi", - [2, 5323, 33498], - [2, 5340, 6374], - "happy-dom", - "happy-", - [0, 2513, 0, 2514, 2537], - "happy-meant", - "hard-cool-rhythm-continued", - "has-flag", - "has-", - "parts-ice-fact", - [2, 2565, 2566], - "symbols", - "has-symbols", - "hash-sum", - "hasown", - "hast-util-raw", - [3, 2572, 10], - "sanitize", - [2, 2573, 2574], - [3, 2575, 11], - [2, 2576, 1799], - "to-estree", - [2, 2573, 2578], - [3, 2579, 13], - [2, 2580, 1936], - "jsx-runtime", - [2, 2580, 2582], - [2, 2580, 1871], - "text", - [2, 2580, 2585], - "hast", - "hastscript", - "hay-against-any-hurry", - "hbs", - "he", - "heapdump", - "helmet", - "heroicons", - "hexlet-pairs", - "hexo", - "highland", - "highl", - "ight.js", - [2, 2598, 2599], - "hiredis", - "history", - "history-", - "brass-sound", - [2, 2603, 2604], - "hit-running-special8", - "hoek", - "hogan.js", - "hoist-non-react-statics", - "homebridge", - "hono", - "hope-slight-walk1", - "hosted-git-info", - "how-to-npm", - "-dom-parser", - [2, 1936, 2615], - "html-", - "attributes", - [2, 1818, 2618], - [2, 2617, 2619], - "html-e", - "ncoding-sniffer", - [2, 2621, 2622], - "html-en", - "tities", - [2, 2624, 2625], - "scaper", - [2, 2621, 2627], - "html-loader", - [1, 2343, 2647], - "ier", - "minifier", - [2, 2617, 2632], - "-terser", - [2, 2633, 2634], - "pdf", - "html-pdf", - [2, 1246, 57], - [2, 2617, 2638], - "tags", - "html-tags", - "html-t", - "o-image", - [2, 2642, 2643], - "html-to-", - [2, 2645, 2585], - [0, 2648, 2667, 2684, 2537], - [0, 4484, 4747, 4135, 1457, 53, 3951, 1573, 5012], - "validate", - [2, 2617, 2649], - [2, 2617, 1464], - "htmlnano", - "parser2", - "htmlparser2", - "http-", - "errors", - "http-errors", - "proxy", - "http-proxy", - "-agent", - [2, 2659, 2660], - [3, 2661, 11], - "middleware", - [2, 2662, 2663], - [2, 2655, 36], - "http-s", - [0, 91], - "http-status", - "-codes", - [2, 2668, 2669], - "https", - "xy-agent", - [2, 1452, 2672], - [2, 2671, 2673], - "husky", - "hyperquest", - "hyphenate-style-name", - "i", - "i18n", - "ext", - "i18next", - "-gridly-backend", - [2, 2681, 2682], - [0, 1098, 4643], - "iconv-lite", - "identity-obj-proxy", - "ignore", - [1, 2343, 2690], - "image-size", - [0, 2691, 0, 2514, 2443], - [0, 4484, 26364], - "imagemagick", - "-pngquant", - [2, 2267, 2693], - "imap", - "immer", - "immutability-helper", - [1, 2343, 2705], - "le", - "immutable", - "import-", - [2, 2701, 2145], - "local", - [2, 2701, 2703], - [0, 2513, 0, 2736, 34352], - "ess", - "impress", - "in-publish", - "indent-string", - "inert", - "inferno", - "inflection", - "inherits", - "ini", - "iniparser", - "ink", - "-style-parser", - [2, 134, 2717], - "innosetup-compiler", - "inquirer", - "-autocomplete-prompt", - [2, 2720, 2721], - "inside-throw", - "insta", - "gram-node", - [2, 2724, 2725], - "interpret", - "intl", - "-tel-input", - [2, 2728, 2729], - "invariant", - "inversify", - "ionic", - [2, 34017, 34020], - "ionicons", - [0, 1098, 29, 5027, 4963], - [1, 2343, 2773], - "ioredis", - "ip", - "irc", - "is", - "is-ci", - "is-glob", - "is-installed-globally", - "is-plain-obj", - "ect", - [2, 2745, 2746], - "is-p", - "otential-custom-element-name", - [2, 2748, 2749], - "romise", - "is-promise", - "is-stream", - "is-url", - "is-wsl", - "isarray", - "isobject", - "isomorphic-fetch", - "istanbul", - "itwcw-package-analytics", - "iview", - "jackspeak", - "jake", - "jarallax", - "jasmine", - [2, 2765, 1732], - "jasmine-", - [2, 2767, 202], - "jest-", - "canvas-mock", - [2, 2769, 2770], - "jest-c", - [0, 2513, 0, 2514, 2487], - "jest-cli", - [1, 2343, 2776], - [0, 2789, 0, 2514, 2537], - "jest-diff", - "ronment-jsdom", - [2, 1840, 2778], - [2, 2769, 2779], - "-fourteen", - [2, 2780, 2781], - [3, 2780, 17], - [2, 2783, 202], - "jest-e", - "xtended", - [2, 2785, 2786], - "html-re", - [0, 5038, 4484], - "porters", - [2, 2788, 2790], - [2, 2769, 2791], - "junit", - "jest-junit", - "pnp-resolver", - [2, 2769, 2795], - [2, 2769, 814], - "jest-util", - [1, 2343, 2803], - "-typeahead", - [2, 2282, 2800], - [2, 2769, 2801], - [0, 2513, 2804, 2815, 2399], - [0, 2734], - "jest-worker", - "jimp", - "jiti", - "jodit", - "-react", - "jodit-react", - "johnny-five", - "joi", - "jotai", - "jquery", - [0, 1098, 38], - "jquery-ui", - "js-base64", - [1, 2343, 2819], - [0, 2830, 2836, 2837, 2523], - "js-beautify", - "js-cookie", - "js-yaml", - "jsarch", - "jscpd", - "-api", - "jsdoc-api", - "jsdoc-", - "to-markdown", - [2, 2827, 2828], - [0, 1673, 3789, 1461, 1282, 5060, 5071, 6476, 5057, 5059, 5062, 5065, 5049, 5050, 5069, 5047], - "m", - "jsdom", - "-no-contextify", - [2, 2832, 2833], - "jsesc", - [ - 0, 1114, 2070, 1192, 89, 1177, 4487, 5098, 4468, 3213, 1610, 5102, 3824, 1193, 5100, 3697, 3846, 91, 53, 5087, - 2990, 5125, 4880, 1178, 1540, 3857, 97, 5123, 5076, 5090, 5091, 5094, 5108, 5113, 3904, 5106, 5121, 5097, 5084, - 6498, 3810, 5115, 5082, 1011, 971, 5110, 5085, 5075, 5118, 5103, 5079 - ], - [0, 5127, 4964, 89, 5128, 4627, 4963, 181, 5130, 4967, 5131, 5133], - "-stylish", - [2, 2272, 2838], - [1, 2343, 2868], - "json-2-csv", - "json-", - "json-loader", - [3, 6, 6], - "json-schema", - "json-s", - "erver", - "json-server", - "-stringify", - [2, 176, 2849], - [2, 2846, 2850], - "json-st", - "ringify-safe", - [2, 2852, 2853], - "5", - "json5", - "c-parser", - [2, 1781, 2857], - "jsonfile", - "jsonschema", - "JSONStream", - "webtoken", - [2, 1781, 2862], - "jspm", - "jstates", - "jszip", - "jwt-decode", - [0, 2884, 2901, 2938, 2537], - "simple", - "jwt-simple", - [2, 2297, 1617], - [3, 2871, 13], - "stack", - "-launcher", - [2, 2873, 2874], - [2, 2872, 2875], - "karma-", - "karma-chai", - "karma-ch", - "rome-launcher", - [2, 2879, 2880], - "karma-c", - "over", - [0, 3021], - "overage", - [2, 2882, 2885], - "browsers", - [2, 1708, 2887], - [2, 2877, 2888], - "edge-launcher", - [2, 2877, 2890], - "fire", - "fox-launcher", - [2, 2892, 2893], - [2, 2877, 2894], - "ie-launcher", - [2, 2877, 2896], - [2, 2877, 2765], - "mocha", - "karma-mocha", - [0, 1114, 89, 2079, 3824, 91, 4880, 5139, 4883], - "orter", - "-reporter", - [2, 2900, 2903], - "phantomjs-launcher", - [2, 2877, 2905], - "qunit", - "karma-qunit", - "rollup-preprocessor", - [2, 2877, 2909], - "safari-launcher", - [2, 2877, 2911], - "karma-sa", - "uce-launcher", - [2, 2913, 2914], - "karma-s", - "inon", - "karma-sinon", - "ourcemap", - [2, 2919, 2091], - [2, 2916, 2920], - "pec-reporter", - [2, 2916, 2922], - "webpack", - [2, 2877, 2924], - "keycode", - "keypress", - "keyv", - "kleur", - "knex", - "knip", - "known-css-properties", - "knox", - "koa", - "koa-body", - [2, 2935, 57], - "koa-", - [0, 5127, 4964, 4653, 1114, 4627, 4963, 5130, 4967, 89, 5128, 181], - [1, 2343, 2974], - "compose", - "koa-compose", - "logger", - "koa-logger", - "mount", - "koa-mount", - [2, 2937, 38], - "static", - "koa-static", - "kue", - "label-lungs-court4", - "-perfe", - "ctly-blow-series", - [2, 2951, 2952], - [2, 1351, 2953], - "late-", - "dress-mail5", - [2, 2955, 2956], - "late", - "st-version", - [2, 2958, 2959], - "lazy.js", - "lead-alike-web3-applied", - "leaflet", - "left-pad", - "left", - "pad", - "leftpad", - "lerna", - [2, 695, 2091], - "level", - "down", - "leveldown", - "levelup", - [0, 2985, 2988, 3011, 2523], - "leven", - "libnpmdiff", - "libnpm", - "exec", - "libnpmexec", - "fund", - "libnpmfund", - "libphonenumber-js", - "liftoff", - "lilconfig", - [0, 1461, 5145, 5146], - "linkifyjs", - "lint-", - [0, 1114, 2070, 89, 2079, 3824, 91, 4880, 4883], - "staged", - "lint-staged", - "listr", - "listr2", - "lit-element", - "lite", - "-server", - "lite-server", - "live-server", - "live", - "reload", - "livereload", - "load", - "-grunt-config", - [2, 3001, 3002], - [3, 3003, 11], - "tasks", - [2, 3004, 3005], - "-utils", - [2, 1194, 3007], - "-web-server", - [2, 2703, 3009], - [0, 5127, 4964, 4653, 1114, 4627, 4963, 5130, 4967, 89, 5128, 181, 1017], - "localforage", - "tunnel", - "localtunnel", - "lock", - [1, 2343, 3017], - [0, 3075, 3100, 3104, 2537], - "file-lint", - [2, 3015, 3018], - "-es", - "lodash-es", - ".assign", - [2, 1209, 3022], - "lodash.", - [2, 3024, 1420], - "lodash.c", - "lonedeep", - [2, 3026, 3027], - [2, 3024, 1675], - [3, 3029, 9], - "faults", - [2, 3030, 3031], - "flatten", - [2, 3024, 3033], - "lodash.f", - "oreach", - [2, 3035, 3036], - "get", - "lodash.get", - "isempty", - [2, 3024, 3040], - [3, 3041, 10], - "qual", - [2, 3042, 3043], - [3, 3041, 9], - "function", - [2, 3045, 3046], - "object", - [2, 3045, 3048], - "plainobject", - [2, 3045, 3050], - [2, 3045, 1871], - "map", - "lodash.map", - "lodash.m", - "emoize", - [2, 3055, 3056], - [3, 3057, 9], - "rge", - [2, 3058, 3059], - "omit", - "lodash.omit", - "pick", - "lodash.pick", - "set", - "lodash.set", - [2, 3024, 1283], - "lodash.t", - "hrottle", - [2, 3068, 3069], - "uniq", - "lodash.uniq", - "log", - "log-symbols", - [0, 5154, 5152], - "update", - "log-update", - "log4js", - "loglevel", - "long", - "loopback", - "loose-envify", - "lowdb", - "lru-cache", - "lucide", - "luck-rubber-do", - "lwip", - "lws", - "madwizard", - "magic-string", - "magmastream", - "main-bower-files", - "make-dir", - "make-", - "make-node", - "mammoth", - "manifest", - "mantine-contextmenu", - "many-favorite6", - [0, 4484, 3709, 4508, 4355, 838, 5160, 5159, 4514, 5162, 840], - "stream", - "map-stream", - "mapboxgl-legend", - [0, 5165, 5166, 2038, 5167, 3424, 5168, 5170, 3709], - "markdown-it", - "-anchor", - [2, 3105, 3106], - [3, 3107, 12], - "cont", - [1, 2343, 3168], - "container", - [2, 3108, 3111], - "emoji", - [2, 3108, 3113], - [3, 3105, 9], - [2, 3115, 2636], - [2, 3115, 176], - [3, 3117, 10], - "o-jsx", - [2, 3118, 3119], - [3, 3120, 11], - "c", - [2, 3121, 3122], - [2, 1783, 671], - [2, 3124, 20], - "mark", - "marked", - "y-markdown", - [2, 3126, 3128], - "matcha", - [3, 558, 9], - [2, 3131, 181], - "mathjs", - "matter-view-web3-fence", - "md5", - "md5-file", - "mdast-util-from-markdown", - [3, 3137, 11], - "to-hast", - [2, 3138, 3139], - "mdn-data", - "mdxts", - "memcached", - "memfs", - "memoize-one", - "memo", - "ry-cache", - [2, 3146, 3147], - "memory-", - "memory-fs", - "memory", - [2, 3151, 3101], - "memwatch", - "menta", - "l-oxygen-dozen", - [2, 3154, 3155], - "meow", - "merge-", - [2, 3158, 3101], - "metalsmith", - "meteor", - "method-override", - "method", - "methods", - "microbundle", - "micro", - "micromark", - [0, 3169, 3179, 3182, 2537], - [0, 2070, 4207, 3093, 1525, 1573, 5175, 5180], - "micromatch", - "mime", - "-types", - "mime-types", - "min-heap-typed", - "-extract-plugin", - [2, 2360, 3175], - [2, 2456, 3176], - "minify", - [0, 4135, 53, 4865, 5185, 5191], - "atch", - "minimatch", - [0, 5193, 1172, 5194, 5197, 5198, 1173, 4643], - "minimist", - "-jet-printed-supper", - [2, 1504, 3184], - "missing-sport-living", - "mkcert", - "mkdirp", - "mlly", - "mobx", - "mobx-react", - "mocha-", - "head", - "less-", - "chrome", - "less-chrome", - [2, 3193, 3196], - [2, 3192, 3197], - [2, 2793, 2903], - [2, 3192, 3199], - "lcov-reporter", - [2, 3192, 3201], - "mock-fs", - "mock-", - "property", - [2, 3204, 3205], - [1, 2343, 3208], - [0, 3214, 3217, 2514, 2537], - "require", - [2, 3204, 3209], - "mock-stdin", - "mock", - "mockdate", - [0, 9673, 3527, 5279], - "mockery", - "mockjs", - [0, 5282, 4294, 5210], - [2, 3224, 3225], - "moleculer", - "moment", - "-timezone", - [2, 3220, 3221], - "monaco-yaml", - [3, 5838, 28], - "xp-modifiers", - "monads-io", - "ress", - "-express", - [2, 1550, 3228], - "mongodb", - "ose", - "mongoose", - "monitor", - "-dashboard", - [2, 3233, 3234], - "monk", - "morgan", - "motor-positive-spirit", - "move-wolf-throughout", - "movie-obtain-tail-prepare", - "mqtt", - "ms", - "mssql", - "msw", - "mud-slowly-five3", - "multer", - [1, 2343, 3248], - [0, 3252, 3269, 3272, 2537], - "multimatch", - "multi", - "part", - [0, 1676, 2856, 4135, 5233, 104, 58, 5228, 5230, 101, 5216, 51, 1573, 31292, 5226, 5222], - "multiparty", - "multip", - "le-cucumber-html-reporter", - [2, 3254, 3255], - "mustache", - "muuri", - "mysql", - "mysql2", - "mz", - "nails-wild-interest-garden", - "nan", - "nano-css", - "id", - "nanoid", - "-keymap", - [2, 970, 3267], - [0, 4494, 4039, 4474, 5245, 5254, 5251, 87, 92, 5235, 5180, 5244, 5240, 5241, 5191], - "nativefier", - [2, 970, 1508], - [0, 5193, 1172, 5256, 5257, 5194, 5258, 5259, 5260, 5197, 5198, 5261, 1175, 4643], - "natural", - "nconf", - "ncp", - "near-social-bridge", - "nedb", - "needle", - [1, 2343, 3280], - [0, 0, 3293, 2514, 2523], - "-commander", - [2, 678, 3281], - "newman", - "newrelic", - "next-auth", - "next", - "nextjs", - "ng-mocks", - "ng-zorro-antd", - "ngrok", - "nib", - "nightmare", - [0, 53], - "nightwatch", - "nine-yes-merely6", - "nise", - "nock", - "addon-api", - [2, 813, 3298], - "node-cache", - "node-c", - "ontainerpattern", - [2, 3301, 3302], - "dev", - "node-dev", - "node-d", - [1, 2343, 3311], - "node-dir", - "node-emoji", - "node-fetch", - [0, 3328, 3338, 3398, 2523], - "orge", - "node-forge", - "node-g", - "toolchain", - "node-gcm", - "eocoder", - [2, 3314, 3317], - "JSONC", - "arser", - "html-parser", - [2, 813, 3321], - "inspector", - [2, 813, 3323], - "JSX", - "mocks-http", - [2, 813, 3326], - [0, 104], - "notifier", - [2, 813, 3329], - "oauth2-server", - [2, 813, 3331], - "powertools", - [2, 813, 3333], - "node-p", - "re-gyp", - [2, 3335, 3336], - [0, 5282, 51, 5274, 5276, 5279, 5273], - "node-pty", - "node-re", - "node-red", - "node-sass", - "node-s", - "chedule", - [2, 3343, 3344], - "tatic", - "node-static", - "uuid", - "node-uuid", - "node-watch", - "node-w", - "indows", - [2, 3351, 3352], - "xlsx", - "node-xlsx", - ".extend", - [2, 202, 3356], - "git", - "nodegit", - "mailer", - "nodemailer", - "TSX", - "nodemon", - "webkit", - "nodewebkit", - "nolangjs", - "nomnom", - "nopt", - "normalize-path", - [3, 3369, 10], - [2, 3370, 1002], - "wheel", - [2, 3370, 3372], - [3, 3369, 9], - ".css", - [2, 3374, 3375], - "np", - "npm", - "npm-check", - "-updates", - [2, 3379, 3380], - "npm-", - "package", - "GraphQL", - "package-arg", - [2, 3382, 3385], - [3, 3386, 12], - [3, 4786, 24], - "json-lint", - [2, 3387, 3389], - "npm-pack", - "list", - [2, 3391, 3392], - "regist", - "ry-fetch", - [2, 3394, 3395], - [2, 3382, 3396], - [0, 1172, 5284, 57, 5285, 5286, 58], - "mc-scripts", - "npm-run-all", - [2, 3400, 1276], - "npm-run-", - "path", - [2, 3402, 3403], - [2, 556, 11398, 3902, 591], - "npm-to-yarn", - "windows-upgrade", - [2, 3382, 3407], - "npmcli", - "npmignore", - "npmlog", - "nprogress", - "nsp", - "nuke-cli", - "numeral", - "nunjucks", - "nvm", - "nvmrc", - "nwsapi", - "nx", - "nyc", - "oas", - "oas-normalize", - "oauth", - [3, 77, 7], - "assign", - [2, 3425, 3426], - "hash", - "object-hash", - "inspect", - [2, 3425, 3430], - "keys", - "object-keys", - "object-path", - [2, 3048, 3022], - "object.", - "entries", - [2, 3436, 3437], - "observe-food-motion-hidden", - "on-finished", - "once", - "onchange", - "one-how-hand", - "onoff", - "open", - "open-cli", - "api-c", - [1, 2343, 3454], - "lient-axios", - [2, 3447, 3449], - [2, 3445, 3450], - "openapi", - [2, 3452, 1712], - [0, 3457, 3464, 3465, 2537], - "opencv", - "opener", - [0, 5292, 56], - "openweather", - "opn", - "optimist", - "optimi", - "ze-css-assets-webpack-plugin", - [2, 3461, 3462], - [0, 53, 5295], - [0, 5297], - "optionator", - "ora", - "orchestrator", - "orm", - "osenv", - "outdent", - "outline-slowly", - "overlay", - "scrollbars", - [2, 3473, 3474], - "ovsx", - "p-event", - "p-map", - "p-queue", - "p-timeout", - "p23", - "pa11y", - "pacote", - "pageres", - "paintor", - "pako", - "para", - "para-cli", - "ent-js", - [2, 3488, 3489], - "llelshell", - [2, 3487, 3491], - "parse5", - "parseurl", - "passport", - [3, 1433, 9], - "facebook", - [2, 3496, 3497], - [2, 3496, 2703], - [2, 3496, 3424], - [2, 3500, 1276], - [2, 3403, 1617], - "path-", - "exists", - "path-exists", - "is-absolute", - [2, 3503, 3506], - "to-regexp", - [2, 3503, 3508], - "pathe", - "paypal-server-api", - "pdfjs", - "pdfkit", - "perf", - [1, 2343, 3516], - [0, 3538, 3546, 3581, 2523], - "ormance-now", - [2, 3514, 3517], - "pg", - "phantom", - [3, 2905, 9], - [3, 2905, 10], - "prebuilt", - [2, 3522, 3523], - "phonegap", - "pi-gpio", - "picocolors", - "pico", - "match", - "picomatch", - "pie-case-nor-great", - "pify", - "pino", - "pinst", - "pitch-somehow-earth-brave", - "pixelmatch", - "pkg-dir", - [ - 0, 5302, 1676, 2929, 5303, 4135, 2822, 4213, 1457, 18089, 2098, 5305, 3183, 3416, 3692, 5306, 3530, 27921, 2226, - 3105, 5312, 5314, 5319, 27482, 5320, 5321, 27512, 5323, 5328, 27513, 27514, 2557, 5332, 2558 - ], - "pkg-up", - "pkginfo", - "playwright", - "plugin-e", - "rror", - [2, 3542, 3543], - "plur", - [ - 0, 1414, 1166, 4494, 188, 4763, 2278, 89, 1177, 3127, 3721, 4039, 2203, 1894, 3824, 442, 91, 5307, 4874, 29549, - 27521, 19181, 5944, 9245, 30864, 3114, 27517, 27519, 5337, 25652, 1895, 27518, 30114, 5344 - ], - "pluralize", - "pm2", - "pngjs", - "pnp-", - [2, 3550, 1464], - "pnpm", - "pnpx", - "poe-api-manager", - "polished", - "poli", - "tical-plan-careful", - [2, 3556, 3557], - "popper.js", - "portfinder", - "postcss", - [3, 214, 8], - "calc", - [2, 3562, 3563], - [3, 3564, 9], - "postcss-cli", - "al-notation", - [2, 3046, 3567], - [2, 866, 3568], - [2, 3565, 3569], - [3, 3570, 13], - [2, 3571, 2262], - [3, 3570, 10], - "nvert-values", - [2, 3573, 3574], - "ssnext", - [2, 3565, 3576], - "ustom-media", - [2, 3565, 3578], - [3, 3579, 15], - [0, 5347, 5348, 5349, 1745, 5351, 5352, 5353, 5354, 1179, 5130, 1820, 5355, 1936, 1783, 5356, 3416], - "ies", - "properties", - [2, 3580, 3583], - [3, 219, 8], - "selectors", - [2, 3580, 3586], - "disc", - "ard-comments", - [2, 3588, 3589], - [2, 3562, 3590], - [3, 3591, 16], - [1, 2343, 3594], - [0, 0, 3596, 3601, 2537], - "es", - [0, 5517, 11976, 811, 816, 10615, 10817, 5366, 5364, 5087, 4874, 1317, 1413, 1192, 4042, 4057, 4468, 4484, 91], - "duplicates", - [2, 3592, 3597], - "empty", - [2, 3592, 3599], - [0, 1623, 57, 5374, 5376, 6892, 91, 31130, 31139, 31177, 3178, 1671, 7121], - "overridden", - [2, 3592, 3602], - "flexbugs-fixes", - [2, 3562, 3604], - [2, 3562, 1936], - [3, 214, 9], - "mage-", - "set-function", - [2, 3608, 3609], - [2, 3607, 3610], - [3, 3611, 10], - [2, 3612, 1709], - "load-", - "load-config", - [2, 3562, 3615], - [3, 3616, 12], - [2, 3617, 1524], - "hand", - "longhand", - [2, 3158, 3620], - [2, 3562, 3621], - [3, 3622, 14], - "rules", - [2, 3623, 3624], - [3, 3622, 9], - "inify-font-values", - [2, 3626, 3627], - [3, 3628, 15], - "grad", - [1, 2343, 3645], - "gradients", - [2, 3629, 3632], - "params", - [2, 3629, 3634], - [2, 3629, 3586], - "odules-local-by-default", - [2, 3626, 3637], - "nested", - [2, 3562, 3639], - [3, 3640, 12], - "ing", - [2, 3641, 3642], - [3, 3640, 9], - [0, 3654, 3655, 3690, 2537], - "ormalize", - [2, 3644, 3646], - "-charset", - [2, 3647, 3648], - [3, 3649, 18], - "positions", - [2, 3650, 3651], - [2, 3650, 1871], - [ - 0, 5381, 5383, 5387, 5391, 5393, 5394, 5397, 5400, 5402, 5405, 5408, 5411, 5414, 5416, 5419, 5423, 5425, 5430, - 5436, 2993, 5438 - ], - [ - 0, 5441, 5446, 5450, 5452, 5453, 5456, 5458, 5461, 5464, 192, 5467, 5470, 5473, 5474, 5476, 5478, 1177, 1895, - 2675, 2990, 4193, 91, 5480 - ], - "unicode", - [2, 3650, 3656], - [3, 3657, 19], - "rl", - [2, 3658, 3659], - "whitespace", - [2, 3650, 3661], - "ordered-values", - [2, 3562, 3663], - "prefix", - "-selector", - [2, 3665, 3666], - [2, 3562, 3667], - [3, 3668, 11], - "set-", - "set-env", - [2, 3669, 3671], - "reduce-initial", - [2, 3562, 3673], - "safe-parser", - [2, 3562, 3675], - [3, 3676, 9], - [2, 3677, 1623], - "or-parser", - [2, 1799, 3679], - [2, 3677, 3680], - "vgo", - [2, 3677, 3682], - "ue-selectors", - [2, 3071, 3684], - [2, 3562, 3685], - "value-parser", - [2, 3562, 3687], - "post", - [0, 5483, 1117, 1745, 5484], - "postgrejs", - "posthtml", - "pouchdb", - "power", - "-assert", - [2, 3694, 3695], - "pre-commit", - "preact", - "prepare-package", - "-plu", - "gin-jsdoc", - [2, 3700, 3701], - [2, 1894, 3702], - [3, 3703, 16], - "organize-imports", - [2, 3704, 3705], - "packagejson", - [2, 3704, 3707], - "svelte", - [2, 3704, 3709], - "prettierrc", - "prett", - "y-bytes", - [2, 3712, 3713], - "pretty-", - [2, 3715, 1851], - [2, 3715, 1671], - "pretty-ms", - "quick", - [2, 3715, 3719], - "pretty", - "prettyjson", - [1, 2343, 3728], - "prisma", - "prismjs", - "private-bower", - "proc-log", - [0, 3740, 0, 3748, 34352], - "process", - [3, 217, 8], - "-bar-webpack-plugin", - [2, 3730, 3731], - "-polyfill", - [2, 1862, 3733], - "s-aplus-tests", - [2, 1862, 3735], - "prom", - "o-server", - [2, 3737, 3738], - [0, 5497, 5498, 5502, 5504, 2222, 5506, 4484], - "prompt", - "prompts", - "prop", - "prop-types", - "-information", - [2, 3205, 3745], - "protobufjs", - [0, 5575, 2220, 89, 582, 5576, 2325], - [2, 38087, 27470], - "protractor", - "quire", - "proxyquire", - "publish-please", - "pug", - "pull-stream", - "pump", - "punycode", - "puppeteer", - "purgecss", - "q", - "qr-image", - "qrcode-terminal", - "qs", - "query-", - [2, 3764, 1871], - "query", - "querystring", - "queue", - "-typed", - "queue-typed", - "quill", - "-dom", - "qunit-dom", - "qunitjs", - "raf", - "ramda", - "random-words", - "random", - "randombytes", - [2, 3778, 1871], - "range-parser", - [1, 2343, 3785], - "raven", - "raw-body", - [0, 3796, 3806, 3823, 2487], - "raw-loader", - "rc-slider", - "rc-tooltip", - "rc-util", - "rcw-plugin", - "react-a", - "ddons-css-transition-group", - [2, 3791, 3792], - [3, 3793, 13], - "shallow-", - [0, 89, 4042, 3744, 53, 5582, 87, 4232, 90, 5583, 5589], - "compare", - [2, 3795, 3797], - [2, 3794, 3798], - "react-ap", - "ollo", - [2, 3800, 3801], - [2, 1897, 3733], - [2, 1246, 1367], - "react-c", - [0, 1192, 1177, 4468, 1610, 91, 5087, 4880, 2829, 1959, 1969, 1966], - "react-color", - "react-co", - "py-to-clipboard", - [2, 3808, 3809], - "picker", - "datepicker", - [2, 1246, 3812], - "react-d", - "ev-utils", - [2, 3814, 3815], - "react-dnd", - "5-backend", - [2, 1868, 3818], - [2, 3817, 3819], - "ocgen", - [2, 3814, 3821], - [0, 5593, 1745, 1179, 89, 4978, 1283], - "react-dom", - "ropzone", - [2, 3814, 3825], - "error-", - [2, 3827, 3473], - [2, 1246, 3828], - [2, 1246, 2593], - "react-h", - "ook-form", - [2, 3831, 3832], - "react-ho", - "t-loader", - [2, 3834, 3835], - [2, 1246, 2681], - "react-i", - "react-icons", - "nter", - "section-observer", - [2, 3840, 3841], - [2, 3838, 3842], - [1, 2343, 3851], - [2, 28573, 26849], - "react-intl", - "react-is", - "lifecycles-compat", - [2, 1246, 3848], - [2, 1246, 1783], - [0, 3859, 3873, 2514, 2399], - "odal", - "react-modal", - "react-mo", - "tion", - [2, 3854, 3855], - [2, 1246, 970], - "-key", - [0, 4135, 1996, 5598], - "-keychain", - [2, 3857, 3860], - [3, 3861, 13], - "vector-icons", - [2, 3862, 3863], - "react-n", - "umber-format", - [2, 3865, 3866], - "onclickoutside", - [2, 1246, 3868], - "react-p", - "roperty", - [2, 3870, 3871], - [0, 1680, 1177, 53, 5601, 1006, 4523, 5274, 5604], - "x", - "redux", - "react-redux", - "react-re", - [2, 3877, 2145], - [1, 2343, 3880], - [0, 3892, 3896, 3907, 2523], - "sponsive", - [2, 3877, 3881], - "react-r", - [2, 3883, 995], - [2, 3884, 3772], - [3, 3885, 13], - [2, 3886, 3875], - "scripts", - [2, 1246, 3888], - "react-s", - [2, 3890, 1799], - [0, 56, 5611, 5292], - "react-slick", - "tyleguidist", - [2, 3890, 3894], - [0, 53, 101, 5615, 5617, 5295, 5619], - "react-svg", - "tap-event-plugin", - [2, 1246, 3898], - "react-t", - "est-", - "renderer", - [2, 3901, 3902], - [2, 3900, 3903], - "oastify", - [2, 3900, 3905], - [0, 1172, 5297, 70], - [1, 2343, 3918], - "react-tools", - "ransition-group", - [2, 3900, 3910], - "virtualized", - [2, 1246, 3912], - "reactify", - "strap", - [2, 89, 3915], - "read", - [0, 3920, 3464, 3465, 2399], - "read-pkg", - [0, 56], - "read-pkg-up", - "able-stream", - [2, 3917, 3922], - "line", - "readline", - "-sync", - [2, 3925, 3926], - "recall-shut-say", - [1, 2343, 3933], - "recast", - "recently-building-save", - "rechoir", - [0, 3934, 3464, 3465, 2443], - [0, 56, 5631], - "recompose", - "recu", - "rsive-readdir", - [2, 3936, 3937], - "redoc", - "usaurus", - [2, 3939, 3940], - "-actions", - [2, 3875, 3942], - "redux-", - "redux-form", - [2, 3944, 2942], - "saga", - "redux-saga", - "thunk", - "redux-thunk", - "reflect-metadata", - [1, 2343, 3953], - [0, 3982, 3983, 3465, 2537], - "regenerate", - [3, 3954, 9], - "or-runtime", - [2, 3955, 3956], - "rehype", - "-auto", - "-headings", - [2, 163, 3960], - [2, 3959, 3961], - [2, 3958, 3962], - "rehype-", - [3, 1202, 9], - "links", - [2, 3965, 3966], - [2, 3964, 3967], - "mdx-code-props", - [2, 3964, 3969], - [2, 3964, 1644], - "raw", - "rehype-raw", - "slug", - "rehype-slug", - "rehype-s", - "tringify", - [2, 3976, 3977], - "release", - "release-it", - "remap-istanbul", - [0, 5637, 5222, 56, 5638, 5640], - [0, 53, 5295, 58], - "remark", - [2, 3984, 20], - "remark-", - "gfm", - "remark-gfm", - "remark-html", - "mermaidjs", - [2, 3986, 3990], - [2, 3986, 1644], - "remark-p", - [2, 1258, 2195], - [2, 3993, 3994], - [3, 3995, 14], - "wooorm", - [2, 3996, 3997], - [2, 3986, 3958], - "able", - "remarkable", - "replace-ext", - "replace-", - "in-file", - [2, 4003, 4004], - [1, 2343, 4011], - "-promise", - [2, 705, 4007], - "-native", - [2, 4008, 4009], - [0, 3920, 3293, 3465, 2523], - "require-all", - "require-", - "dir", - "require-dir", - [1, 2343, 4032], - "index", - [2, 3209, 4017], - "requirejs", - "rese", - "lect", - "reselect", - "resize-observer-polyfill", - "-from", - [2, 814, 4024], - "resolve-", - "url-loader", - [2, 4026, 4027], - "rest-chronicle", - "rest", - "restify", - [0, 4091, 4095, 3465, 2399], - "restler", - "ore-cursor", - [2, 4030, 4034], - "rethinkdb", - "rewire", - "rfdc", - "rimraf", - "robot", - "robotjs", - "rollup", - "rollup-p", - "lugin-babel", - [2, 4043, 4044], - [3, 4045, 15], - "uble", - [2, 4046, 4047], - [3, 4045, 14], - "clean", - "cleanup", - [2, 4049, 4051], - [3, 4052, 15], - "ommonjs", - [2, 4053, 4054], - "dts", - [2, 4049, 4056], - [2, 4049, 1781], - "license", - [2, 4049, 4059], - "builtin", - "builtins", - [2, 813, 4062], - [2, 4049, 4063], - [3, 4064, 19], - [2, 4065, 2203], - [2, 4065, 814], - "replace", - [2, 4049, 4068], - "sourcemaps", - [2, 4049, 4070], - "terser", - [2, 4049, 4072], - [3, 4073, 15], - [2, 4074, 2528], - [2, 4075, 1276], - [2, 4049, 2280], - "visualizer", - [2, 4049, 4078], - [3, 4045, 13], - [2, 4080, 594], - "route", - "routes", - "rsnext", - "rsvp", - "rtlcss", - "run-s", - "equence", - [2, 4087, 4088], - "@modern-js/utils", - [0, 4135, 56, 5652, 5656, 5658, 5660], - "run-series", - "rx", - "rxjs", - [0, 3093, 53, 5228, 97, 87, 5663, 5658, 5295], - [1, 2343, 4114], - "-compat", - "rxjs-compat", - "safe-", - "safe-buffer", - "safe-p", - "ublish-latest", - [2, 4101, 4102], - "sails", - "salt-type-oldest-faster", - "sand-have-metal6", - "-filename", - [2, 2574, 4107], - [3, 4108, 9], - [2, 4109, 1936], - "sass-loader", - "sat-local", - "sax", - [0, 4115, 4138, 2514, 4139], - [0, 1593, 3957], - "scheduler", - "-doc", - [2, 1119, 4117], - [2, 2844, 4118], - "schema-", - [2, 4120, 594], - "scien", - "ce-knowledge-truth", - [2, 4122, 4123], - "seblakhotspicy", - "secp256k1", - "seedrandom", - "sele", - "nium-webdriver", - [2, 4128, 4129], - "semantic-release", - [3, 4131, 9], - "ui-react", - [2, 4132, 4133], - "semver", - "seneca", - "sentiment", - [0, 1389, 1408, 5669, 4535], - 1772323200000, - "sequelize", - [3, 1753, 9], - "-javascript", - [2, 4141, 4142], - "serial", - "serialport", - "serve", - "-favicon", - [2, 4146, 4147], - "serve-", - "serve-index", - [2, 4149, 2947], - "-destroy", - [2, 36, 4152], - [1, 2343, 4194], - "less-finch", - [2, 36, 4155], - [3, 4156, 11], - "spy", - [2, 4157, 4158], - "sha1", - "shallow", - "equal", - [2, 4161, 4162], - "sharp", - "shell-quote", - "shell", - "shelljs", - "shinning-continued-becoming", - "shortid", - "should", - "showdown", - "shx", - "sick-typical-court7", - "signal-exit", - "simil", - "ar-cheese-loss", - [2, 4175, 4176], - "-ass", - "i-animation", - [2, 4178, 4179], - [2, 2869, 4180], - "simple-", - "simple-git", - "-web", - "-web3", - [2, 3742, 4185], - [2, 4182, 4186], - "single-spa", - "sink-mighty-orbit0", - "sink-", - "rod-lamp", - [2, 4190, 4191], - "sinon", - [0, 4197, 4198, 2514, 2537], - "-chai", - "sinon-chai", - [ - 0, 4135, 5867, 5637, 5866, 56, 5656, 5658, 5676, 5788, 5850, 5761, 5797, 5222, 5660, 5816, 5640, 5809, 5812, - 5838, 5769, 5793, 5823, 5852, 5756, 5766, 5790, 5856, 5863, 5712, 5715, 5771, 5778, 5842, 5741, 5743, 5830, - 5859, 5757, 5241, 5810, 3218, 5820, 5827, 5835, 5853, 5751, 5759, 5821, 5865, 5764, 5846, 5785, 5754, 5825, - 5862, 5782, 5700, 5749, 5806, 5832, 5818, 29299, 5800, 5813, 5678, 5685, 5694, 5690, 5776, 5688 - ], - [0, 53, 101, 5295], - "sinopia", - "sirv", - "size-limit", - "size", - [1, 2343, 4222], - "sizeitup", - "skapi-js", - "sky-buy-web3-rock", - "slash", - "slice-ansi", - "slow-deps", - "slow-", - "voice-spell-pass", - [2, 4210, 4211], - "slugify", - "small-grow-mix4", - "snake-seven-recall-interior", - "snazzy", - "soap", - "socket.io", - "-client", - [2, 4218, 4219], - "sock", - [0, 4240, 3464, 2514, 2537], - "js-client", - [2, 4221, 4223], - "source", - "-map", - "source-map", - [2, 4227, 1592], - [3, 4228, 11], - [2, 4229, 1194], - "support", - [2, 4229, 4231], - "space-separated-tokens", - "spectaql", - "speech-section-part-frozen", - "spirit-labor-cheese", - "split", - "split2", - "spring-dust-wall-size", - [0, 56, 5676, 5874, 5879, 5881, 5883], - [1, 2343, 4244], - "sprintf", - "sprintf-js", - [0, 4253, 3464, 4254, 4139], - "sprity", - "sqlite3", - "ssh2", - "ssri", - "st.db", - "stack-", - "trace", - "stack-trace", - [0, 4851, 56, 5676, 5889, 5241], - [0, 5891, 91], - "standard", - "-version", - [2, 4255, 4256], - "star-location", - "star", - "t-server-and-test", - [2, 4259, 4260], - "stat", - [1, 2343, 4265], - "statsd", - [0, 4269, 4281, 2514, 2537], - "statuses", - "stock-independent-balloon", - "stor", - [0, 5896, 3093, 5898, 2102, 4232], - "storybook", - "-django", - [2, 4270, 4271], - "stra", - "iforos-compodoc", - [2, 4273, 4274], - "nge-lady-riding9", - [2, 4273, 4276], - [2, 3101, 3695], - "stream-", - [2, 4279, 353], - [0, 1389, 53, 5743, 5241], - "streamii", - "strftime", - "string-", - "stri", - [1, 2343, 4297], - "strip-html", - [2, 4284, 4287], - "width", - [2, 4284, 4289], - "-entities", - [2, 1646, 4291], - "strip-", - "strip-ansi", - "bom", - "strip-bom", - [0, 0, 0, 2514, 2523], - "comments", - [2, 2842, 4298], - [2, 4293, 4299], - "strip", - "stripe", - "strongloop", - "-dictionary", - [2, 590, 4304], - "style-", - [2, 4306, 1194], - [1, 2343, 4313], - "style-to-js", - [3, 4309, 9], - [2, 4310, 3048], - "-comp", - [0, 4316, 0, 2514, 2523], - "-components", - [2, 369, 4314], - [0, 1593], - "styled-jsx", - "hacks", - "stylehacks", - "stylelint", - "-standard", - [2, 607, 4321], - [2, 4320, 4322], - [3, 4323, 10], - "declaration-strict-value", - [2, 4324, 4325], - "order", - [2, 4324, 4327], - "scss", - [2, 4324, 4329], - [1, 2343, 4336], - "us", - "stylus", - [2, 4333, 2091], - "sugar-policeman-entire", - [0, 4344, 3464, 2514, 2537], - "sugarss", - "sun-grass-circle0", - "superagent", - "super", - "superjson", - "supertest", - [2, 4342, 1430], - [0, 1676, 104, 58, 5230, 5216, 51, 30873], - "supervisor", - "-vessels-web3-vessels", - [2, 4231, 4346], - [1, 2343, 4356], - "lor", - "s-color", - [2, 4231, 4350], - "surrounded-characteristic-or-rain", - "svelte-", - "check", - [2, 4353, 4354], - [0, 4379, 4392, 2514, 2487], - "rocess", - "preprocess", - [2, 4353, 4358], - "svg-sprite", - "svgo", - "sw-precache-webpack-plugin", - "swagger-autogen", - "swagger-", - [2, 4364, 134], - "themes", - [2, 4364, 4366], - "ui-express", - [2, 4364, 4368], - "swam-darkness-weak", - "swig", - "swiper", - "sync-request", - "information", - [2, 623, 4374], - "systemjs", - "tail-iron-became5", - "tail", - [0, 5276, 5279], - "tailwind", - "-merge", - [2, 4380, 4381], - "tailwindcss", - "tap", - "tap-", - "spec", - "tap-spec", - "tapable", - "tape", - "tar", - "tar-fs", - [0, 58, 5216, 5274], - "tar-stream", - "tarant", - "-router-express", - [2, 3926, 4395], - [2, 4394, 4396], - "tdl", - "tdlib-native", - "tempy", - "terminal-kit", - [3, 4401, 9], - "menu", - [2, 4402, 4403], - "pack", - "-plugin", - "pack-plugin", - [2, 4184, 4407], - [2, 4072, 4408], - "cutting", - [2, 1382, 4410], - "snippets", - [2, 1382, 4412], - "cafe", - "testcafe", - "testc", - [1, 2343, 4422], - "ontainers", - [2, 4416, 4418], - "double", - "testdouble", - [0, 4424, 4429, 4442, 4139], - "testem", - [ - 0, 5923, 5927, 5930, 5931, 5934, 5935, 5936, 1512, 2075, 2088, 2070, 2822, 2832, 5941, 3105, 5944, 3107, 5946, - 5949, 3112, 26767, 5953, 5956, 5961, 3135, 3257, 5963, 5966, 3725, 3754, 3758, 5969, 5971, 3348, 5975, 4747 - ], - "text-table", - "three", - "throttle-debounce", - "thro", - [0, 4320, 5978, 4328], - "through", - "through2", - "w-did-darkness4", - [2, 4428, 4432], - "thunkify", - "tildify", - "time-grunt", - "tinper-bee", - "tiny-lr", - "tiny", - "bench", - "tinybench", - [0, 200, 1783, 5980, 3452, 5593, 5981, 5982, 5983, 1745, 1179], - "tinycolor2", - [1, 2343, 4458], - "tinymce", - "pool", - "tinypool", - "tinyspy", - "tmp", - "toastify-react-native", - "tocbot", - "toml", - "touch", - "tough-cookie", - "tracer", - "traffic-carry-opinion", - "train-stick-swept7", - [0, 4466, 4471, 4472, 2537], - "tree-kill", - "e-leaving-basket", - [2, 1333, 4460], - "trpc", - "trumpet", - "ts-cache-mongoose", - "ts-japi", - [0, 5990, 2212, 3220, 3747, 4715], - "est", - "ts-jest", - "ts-loader", - "ts-migrate-mongoose", - [0, 1596, 1177, 1895, 1903, 1938, 1954, 1955, 1958, 1970, 4255], - [0, 4709, 5993, 4714, 2942, 5995], - "ts-morph", - "ts-node", - "ts-patch-mongoose", - [1, 2343, 4485], - "ts-pnp", - "ts-rule-engine", - "-paths", - [2, 2190, 4479], - "tsd", - "tsd-lite", - "tshy", - "tslib", - [0, 4502, 4503, 2514, 2537], - "nt", - "tslint", - "-config-", - [2, 4488, 1894], - [2, 4487, 4489], - "tslint-", - [2, 4491, 89], - "tsup", - "tsx", - "turndown", - "tv4", - "tweetnacl", - "twemoji", - "twit", - "twitter", - "type-", - [ - 0, 6041, 4135, 1458, 6042, 1836, 2151, 6049, 3527, 1104, 6047, 4025, 6024, 6027, 6028, 6032, 6034, 6009, 6010, - 6025, 6037, 3749, 6007, 6039, 6022, 6003, 6031, 6017, 6006 - ], - [0, 3471, 6040, 4294, 5254], - "coverage", - [2, 4501, 4504], - [1, 2343, 4516], - "type-fest", - "typedoc", - "-material-theme", - [2, 4508, 4509], - "typedoc-", - [2, 4511, 2475], - [3, 4512, 15], - [2, 4513, 1783], - "typedocs", - [0, 4518, 4519, 4527, 2537], - "typegen", - [0, 6056, 6059, 449, 452, 456, 1461, 3744], - [ - 0, 48, 53, 61, 87, 90, 192, 5467, 5583, 811, 816, 6061, 6063, 6065, 1009, 1011, 1178, 1251, 6066, 1177, 1947, - 1959, 1961, 2675, 2990, 1894, 89, 3824, 4042, 6068, 4073, 4131, 91 - ], - "typegoose", - "typeorm", - "-eslint", - [2, 91, 4522], - [3, 4523, 11], - "formatter", - [2, 4524, 4525], - [0, 6070, 89, 6071, 181, 6073, 4963, 6074, 6077, 6080, 6081, 6082, 4967, 6083, 6084, 4298, 6085, 6086], - [1, 2343, 4544], - "css-modules", - [2, 1186, 4529], - [2, 4524, 4530], - "typings", - "uglify-es", - "uglify-", - "uglify-js", - "js-webpack-plugin", - [2, 2280, 4536], - "uid-safe", - "uiw", - "uj-apidoc-core", - "ulid", - "ultrahtml", - "unbuild", - [0, 4556, 0, 4557, 2537], - "underscore", - ".string", - [2, 4545, 4546], - "undici", - "unified", - "unique-", - "random-", - "array", - [2, 4551, 4552], - [2, 4550, 4553], - "unist-util-visit", - [0, 1459, 148, 185], - [0, 6092, 1459, 6094, 6096, 6098, 6100], - "untildify", - "unusual-rope", - "unzip", - "-notifier", - [2, 3076, 4561], - "urijs", - "url-", - "join", - "url-join", - "url-parse", - "urllib", - "user", - "user-", - "home", - "user-home", - [1, 2343, 4574], - [0, 4583, 0, 4642, 2487], - "agent", - "useragent", - "utf8", - [2, 594, 4381], - "uvu", - "valid", - "-url", - "valid-url", - [0, 27715, 4484], - "-commit-msg", - [2, 2649, 4584], - [3, 4585, 9], - [2, 3387, 1213], - [2, 4586, 4587], - "vant", - "vary", - "vasync", - "vercel", - "verror", - "vhost", - "victory-mouth", - "viewerjs", - "vinyl", - "vinyl-", - [2, 4598, 1398], - "vinyl-fs", - "source-", - [2, 4601, 3101], - [2, 4598, 4602], - [3, 4603, 12], - "maps-apply", - [2, 4604, 4605], - "virtual", - "virtual-dom", - [3, 839, 12], - "api-", - "api-routes", - [2, 4609, 4611], - "press", - "vitepress", - "vorpal", - "vows", - "vsce", - "vscode-debugprotocol", - "vscode-", - "nls-dev", - [2, 4619, 4620], - "mate", - "textmate", - [2, 4619, 4623], - "vue-", - "class-", - [3, 1533, 9], - [2, 4626, 4627], - [2, 4625, 4628], - [2, 4625, 67], - "hot-reload-api", - [2, 4625, 4631], - "vue-i18n", - "vue-loader", - [3, 3746, 9], - [3, 70, 9], - [2, 4635, 4636], - [2, 4625, 4637], - [2, 4625, 38], - [2, 4625, 4307], - [3, 1243, 9], - [0, 6105, 6106, 6038, 1936, 6108, 6110, 1098, 6111, 6112, 6113, 4627, 6092, 1459, 6094], - "compiler", - [2, 4641, 4643], - [2, 4625, 4644], - "vuex", - "walk", - "walk-sync", - "warning", - "watchify", - "waterline", - "wd", - "web3", - "web3-", - [1, 2343, 4668], - "web3-be", - "web3-c", - "apital", - [2, 4657, 4658], - [3, 42, 8], - "pass", - [2, 4660, 4661], - "eve-cli", - [2, 4654, 4663], - "web3-e", - "xactly6", - [2, 4665, 4666], - [0, 4672, 0, 4557, 2523], - "web3-fruit", - "webpack-", - "bundle-", - [0, 1459, 148, 187, 153, 180, 157], - [1, 2343, 4697], - "analyzer", - [2, 4671, 4674], - [2, 4670, 4675], - [2, 4670, 200], - "dev-middleware", - [2, 4670, 4678], - [3, 4679, 12], - [2, 4680, 36], - "hot-", - [2, 4682, 2663], - [2, 4670, 4683], - [2, 3097, 4406], - [2, 4670, 4685], - [3, 4686, 9], - "erge", - [2, 4687, 4688], - "node-e", - "xternals", - [2, 4690, 4691], - [2, 4670, 4692], - "sources", - [2, 4670, 4694], - "webshot", - [0, 4698, 0, 4557, 2523], - [0, 1459, 182, 148, 29468, 187, 153, 180], - "websocket", - [1, 2343, 4701], - [0, 4725, 0, 4557, 2537], - "webtorrent", - "webworker-threads", - "weinre", - "whatwg-fetch", - "when", - "which", - "winreg", - "winston", - "-daily-rotate-file", - [2, 4709, 4710], - "winston-", - "trans", - "transport", - [2, 4712, 4714], - "wiredep", - "word-wrap", - "word", - "wrap", - "wordwrap", - "work", - "box-webpack-plugin", - [2, 4721, 4722], - "world-toy-kill", - [0, 1459, 182, 148, 6127, 29468, 187, 180], - "wrap-ansi", - "wrench", - "write-file-atomic", - "ws", - "x-ray", - "xhr", - "xml-", - "xml-js", - "xml2js", - "xml2json", - "xmlbuilder", - "xmldom", - "xmlhttprequest", - "xpath", - "xregexp", - "xss", - "xstate", - [1, 2343, 4773], - "xterm", - "yaml", - "yamljs", - "yargs", - [2, 4747, 1574], - "yarn", - "pkg", - "yarnpkg", - "yarnrc", - "yauzl", - "yeoman-environment", - "yeoman-", - [2, 4755, 1179], - "yn", - "yo", - "yoctocolors-cjs", - "yonode", - "yosay", - "zmq", - "zod", - "zod-", - "chemas", - [2, 2666, 4765], - [2, 4764, 4766], - "zombie", - "zone.js", - "zuul", - [2, 667, 1651], - [2, 672, 4406], - [0, 4792, 0, 4801, 2523], - "@nx/jest", - [2, 667, 4270], - "framer-motion", - "teajusgula", - "@mui/s", - "tyle", - "d-engine", - [2, 4779, 4780], - [2, 4778, 4781], - "jsdoc-parse", - "@comm", - "ercetools-frontend/constants", - [2, 4784, 4785], - "shift", - "downshift", - [3, 3605, 9], - "ocus-visible", - [2, 4789, 4790], - [0, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 146, 6133, 111, 174], - [2, 3388, 4794, 4963], - [3, 18878, 12], - [3, 1705, 9], - [2, 4795, 3582], - "devDependencies", - "keywords", - "ts", - [2, 4837, 686], - [0, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130, 6148, 6092, 1459, 6094], - [3, 3, 7], - "field", - [2, 4802, 4803], - [2, 4802, 3473], - [2, 4802, 2649], - "@types/", - [2, 4807, 3911], - "big.js", - [3, 1849, 9], - "lement-equals", - [2, 4810, 4811], - [1, 2343, 4918], - "adaptor-generate", - [2, 4802, 4814], - [3, 4815, 15], - [2, 4816, 1383], - "@alifd/a", - "pi-extractor", - [2, 4818, 4819], - [2, 1262, 3286], - [2, 4802, 4821], - [2, 1910, 57], - [2, 4802, 4823], - "@alifd/d", - "ts-generator", - [2, 4825, 4826], - [2, 1884, 3286], - [2, 4802, 4828], - "meet-react", - [2, 4802, 4830], - "sass-", - "mapper", - "sass-mapper", - [2, 4802, 4834], - [3, 4835, 12], - [3, 4793, 38], - [2, 4867, 4924], - "tracker", - [2, 4836, 4839], - [3, 4835, 11], - [2, 4841, 4823], - "@alifd/s", - "lint-co", - "-next", - "nfig-next", - [2, 4844, 4846], - [2, 4779, 4847], - [2, 4843, 4848], - [3, 81, 21], - [2, 4850, 1219], - [2, 4807, 1175], - "@types/b", - "ig.js", - [2, 4853, 4854], - "@types/chai", - "@types/c", - "lassnames", - [2, 4857, 4858], - "@types/co", - "@types/e", - "nzyme", - [2, 4861, 4862], - [2, 4807, 2151], - "@types/glob", - [2, 4807, 2720], - [3, 4793, 25], - "jsonp", - [2, 4807, 4868], - [2, 4807, 1209], - ".clonedeep", - [2, 4870, 4871], - "@types/md5", - [2, 4807, 202], - [2, 4807, 3564], - [3, 4875, 16], - "ustom-", - [2, 4877, 3583], - [2, 4876, 4878], - [3, 4808, 12], - [3, 4808, 13], - [2, 4881, 1582], - [2, 4881, 965], - [2, 4881, 3875], - [3, 4884, 14], - "outer-dom", - [2, 4885, 4886], - [3, 4808, 14], - [2, 4888, 3903], - [2, 4807, 4320], - [2, 4807, 2924], - [2, 4807, 4747], - [3, 1203, 14], - "spower", - [2, 4893, 4894], - [2, 2168, 1894], - [2, 1199, 4896], - [3, 1245, 30], - [2, 4898, 3426], - "proto", - "-to-assign", - [2, 4900, 4901], - [2, 1226, 4902], - "displayname", - [2, 1861, 4904], - [2, 1249, 4905], - [2, 3195, 2874], - "e-polyfill", - [2, 1557, 4908], - "css-s", - "plit-webpack-plugin", - [2, 4910, 4911], - [2, 1863, 3733], - [3, 1924, 15], - "ypress", - [2, 4914, 4915], - [2, 2068, 4111], - [0, 4943, 0, 4801, 2537], - "html5shiv", - [3, 2925, 9], - "driver-launcher", - [2, 4920, 4921], - [2, 3108, 588], - "ssets", - "mochawesome", - "-package-importer", - [2, 3342, 4926], - [2, 3388, 16690, 4935], - "react-axe", - "ropper", - [2, 3805, 4930], - "react-dr", - "aggable", - [2, 4932, 4933], - "c-app", - "ve", - "react-live", - "true", - "sass-true", - "simulate-event", - "solarlunar", - [3, 4323, 17], - [0, 182, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 146, 6133, 111, 174], - [2, 4950, 4951], - "recommended", - [2, 4942, 4945], - [3, 4323, 11], - "sstree-validator", - [2, 4947, 4948], - [3, 662, 27], - "dev-authentication", - "ts-mocha", - [1, 2343, 4969], - [2, 4950, 4956], - "tsconfck", - [3, 25922, 13], - "fusion", - " design", - [2, 4957, 4958], - "ui toolkit", - "mponents", - [2, 3808, 4961], - "components", - "design", - "front", - "end", - "frontend", - [2, 4970, 4971], - [0, 4979, 0, 4983, 2537], - [3, 4786, 14], - "/http-user-agent", - [2, 31787, 4980], - "Angular CLI", - "Angular ", - "DevKit", - [2, 4974, 4975], - "devkit", - "sdk", - [0, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 146, 6158, 111, 174], - "cli-lib", - [2, 812, 2220], - "@svgr/babel-preset", - [0, 6148, 6092, 1459, 6094, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130], - "blue", - [2, 4807, 4676], - "blueprints", - " generation", - [2, 1501, 4987], - "scaffolding", - "tool", - "tooling", - [2, 1030, 4993], - "-swc", - [1, 2343, 4998], - [2, 5559, 705], - [2, 4997, 4999], - "moment-loca", - [0, 5003, 0, 4983, 4139], - [3, 8303, 18, 2], - "svg-url-loader", - "development", - "thread-loader", - [ - 0, 6164, 164, 167, 137, 159, 177, 162, 180, 157, 140, 6166, 171, 116, 150, 155, 122, 169, 119, 146, 111, 6168, - 174 - ], - [1, 2343, 5005], - [0, 5006, 0, 4983, 4139], - [0, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 6173, 146, 111, 174], - [1, 2343, 5008], - [0, 5011, 0, 4557, 2487], - [2, 4807, 4996], - [2, 6776, 1987], - [0, 6178, 1459, 16485, 182, 148, 29468, 159, 187, 153, 185, 146], - "@jridgewell/sourcemap-codec", - [1, 2343, 5014], - [0, 5015, 0, 4557, 2537], - [0, 1459, 182, 148, 29468, 159, 187], - [1, 2343, 5017], - [0, 5018, 0, 4557, 4139], - [0, 16485, 182, 148, 187, 153, 191], - [1, 2343, 5020], - [0, 5021, 0, 5022, 2487], - [0, 1459, 148, 187], - [0, 6092, 1459, 6094, 6192, 6100], - [1, 2343, 5024], - [0, 5025, 0, 5026, 2443], - [0, 16485, 182, 187, 153, 6200], - [0, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130, 6092, 1459, 6094, 6192, 6100], - [2, 29, 4958], - [1, 2343, 5029], - [0, 5030, 0, 4557, 4139], - [0, 1459, 148, 187, 185, 146], - [1, 2343, 5032], - [0, 5033, 0, 5026, 2399], - [0, 16485, 187], - [1, 2343, 5035], - [0, 5036, 0, 4557, 2537], - [0, 1459, 182, 148, 6215, 6127, 180, 143, 6217], - [1, 2343, 5039], - "xhr2", - [0, 5040, 0, 4557, 2399], - [0, 1459, 182, 148, 29468, 187, 153, 171], - [1, 2343, 5042], - [0, 5043, 0, 4557, 2523], - [0, 1459, 16485, 182, 148, 6215, 29468, 187, 153, 180, 185, 191, 143], - [1, 2343, 5045], - [0, 5046, 0, 4557, 4139], - [0, 1459, 182, 148, 167, 29468, 187, 153, 157], - "@bang88/react-native-ultimate-listview", - [3, 444, 19], - [2, 5048, 970], - "@rc-component/mini-decimal", - "@types/s", - [1, 2343, 5053], - [0, 5072, 0, 4557, 2443], - "hallowequal", - [2, 5051, 5054], - "with", - [2, 3023, 5056], - "css-color", - [2, 3370, 5058], - "rc-field-form", - "codegen", - [2, 3862, 5061], - [3, 5062, 15], - "llapsible", - [2, 5063, 5064], - "modal", - "-popover", - [2, 5066, 5067], - [2, 3862, 5068], - "ity-types", - [2, 614, 5070], - [0, 1459, 16485, 182, 148, 29468, 159, 187, 153, 180, 191, 143], - [2, 2809, 4009], - [2, 45, 5073], - [2, 41, 5074], - [2, 41, 2041], - "@rea", - "ct-native-community/eslint-config", - [2, 5077, 5078], - [3, 5079, 9], - "vigation/native", - [2, 5080, 5081], - [3, 5082, 18], - [2, 5083, 2873], - [2, 972, 4009], - "@types/j", - "@types/jest", - "@types/p", - "rop-types", - [2, 5088, 5089], - [2, 4881, 970], - [3, 1113, 11], - "palettes", - [2, 5092, 5093], - "-demo-data", - [2, 701, 5095], - [2, 1114, 5096], - "bisheng", - [1, 2343, 5101], - "enquire.js", - [0, 5126, 0, 4557, 2537], - "jsonml.js", - "metro-react-native-babel-preset", - [3, 3822, 9], - "ument-title", - [2, 5104, 5105], - [3, 2197, 13], - [2, 1246, 5107], - "gesture-handler", - [2, 3862, 5109], - [3, 5069, 15], - "cker", - [2, 5111, 5112], - "reanimated", - [2, 3862, 5114], - "area-context", - [2, 4099, 5116], - [2, 3862, 5117], - [3, 5118, 14], - "creens", - [2, 5119, 5120], - "web", - [2, 3862, 5122], - "shell-", - [2, 5124, 594], - [0, 1459, 182, 148, 6164, 6127, 29468, 187, 153, 180, 143], - "ant", - [3, 4962, 15], - "frame", - "framework", - "mobile", - " native", - [2, 89, 5132], - [1, 2343, 5135], - [0, 5136, 0, 4557, 2537], - [0, 1459, 182, 148, 6215, 29468, 187, 153, 180, 191, 143], - [1, 2343, 5138], - [0, 5140, 0, 4557, 2537], - [2, 4870, 3020], - [0, 182, 148, 29468, 187, 153], - [1, 2343, 5142], - [0, 5143, 0, 4557, 2487], - [0, 1459, 148, 153, 143], - [1, 2343, 5147], - [3, 5075, 17], - "@inline-svg-unique-id/react", - [0, 5148, 0, 5149, 4139], - [0, 27715], - [0, 6105, 6106, 6038, 1936, 6108, 6110, 89, 5128, 6092, 1459, 6094], - [1, 2343, 5151], - [0, 5163, 0, 4557, 2487], - [2, 3670, 1575], - [2, 5928, 5155], - "@auth/core", - "junit-xml-formatter", - "adapt", - "er-auto", - [2, 5156, 5157], - [2, 836, 5158], - [2, 836, 3383], - "et-cookie-parser", - [2, 5051, 5161], - [0, 1459, 16485, 182, 148, 29468, 187, 153, 191, 143], - "entication", - [2, 1303, 5164], - "authjs", - "sveltekit", - "oidc", - "wordless", - [2, 4661, 5169], - [1, 2343, 5172], - [0, 5173, 0, 4557, 2443], - [0, 16485, 148, 187, 153], - [1, 2343, 5177], - "fs-readdir-recursive", - [3, 5012, 12], - [0, 5181, 0, 5022, 2443], - "-mapping", - [2, 4251, 5178], - [2, 5176, 5179], - [0, 16485, 6268, 6271, 6272, 28829, 148, 29468, 187, 153, 15716], - [3, 4864, 10], - "dir-recursive", - [2, 3917, 5183], - [2, 5182, 5184], - [3, 56, 14], - "fixture", - "-test-runner", - [2, 5187, 5188], - [2, 1221, 5189], - [2, 5186, 5190], - [2, 5195, 5196], - "6to5", - "es6", - [3, 7710, 11], - "ut-extension", - "transpile", - "transpiler", - [1, 2343, 5201], - [2, 7623, 671], - [0, 5202, 0, 5022, 2443], - [0, 148, 187], - [1, 2343, 5205], - "ighlight", - [0, 5206, 0, 5022, 2537], - [0, 16485, 182], - "meta", - "-resolve", - [2, 5207, 5208], - [2, 2701, 5209], - [1, 2343, 5212], - [0, 5213, 0, 5214, 2537], - [0, 27715, 3021], - [0, 6105, 6106, 6038, 1936, 6108, 6110, 188, 6284, 6285, 6287, 6092, 1459, 6094], - "@ampproject/remapping", - [2, 54, 1179], - "compil", - "ation", - "-targets", - [2, 5218, 5219], - [2, 5217, 5220], - [2, 5186, 5221], - "module-", - [2, 353, 591], - [2, 5223, 5224], - [2, 5186, 5225], - [3, 56, 13], - [2, 5227, 591], - "emplate", - [2, 102, 5229], - [1, 2343, 5232], - [0, 5234, 0, 5022, 2537], - "gensync", - [0, 16485, 182, 148, 6127, 29468, 187, 153, 180], - [2, 4850, 2124], - [3, 83, 24], - "flow-", - [2, 4293, 553], - [2, 5237, 5238], - [2, 5236, 5239], - [2, 5236, 1239], - "nvert-", - [2, 5242, 4227], - [2, 4860, 5243], - [2, 4807, 1676], - "@types/g", - "ensync", - [2, 5246, 5247], - [3, 4808, 9], - "solve", - [2, 5249, 5250], - [3, 5162, 9], - "mver", - [2, 5252, 5253], - [1, 2343, 5262], - "classes", - "const", - "harmony", - "let", - "modules", - "var", - [0, 5263, 5264, 5265, 2523], - [0, 6297, 6298, 6301, 6302, 6303, 26379, 4747], - [0, 6306, 6307, 6498, 4874, 4892, 2151, 6476], - [0, 1566, 1529, 200], - [1, 2343, 5267], - [0, 5268, 0, 5269, 2523], - [ - 0, 7, 53, 5830, 87, 6316, 6318, 31736, 1364, 6320, 1448, 1457, 1512, 1525, 1595, 6323, 1866, 2061, 2071, 2151, - 2070, 2036, 2626, 2681, 2856, 1209, 3079, 6326, 6327, 3127, 3183, 5732, 6330, 6331, 3527, 23802, 3725, 4135, - 4200, 5969, 6334, 4473, 3348, 6335 - ], - [0, 6111, 1098, 1745, 4963, 1237, 2218, 4796, 1783], - [1, 2343, 5280], - [3, 5222, 15], - "heck-duplicate-nodes", - [2, 5271, 5272], - [2, 5186, 1182], - [2, 4284, 57], - [2, 5186, 5275], - "-identifier", - [2, 1155, 5277], - [2, 5186, 5278], - [0, 5283, 0, 5288, 2537], - "codes", - "charcodes", - [0, 6343, 2700], - "javascript", - "tc39", - "ecmascript", - "skia-canvas", - [0, 6345, 6346, 5130, 2018, 6347], - [1, 5293, 5296], - "@egjs/flicking", - "reate-class-features-plugin", - [2, 5271, 5291], - [0, 8389, 4799], - [3, 56, 21], - [2, 5294, 1187], - [0, 8391, 5298], - [3, 1198, 12], - 1732406400000, - [1, 5293, 5300], - [0, 8391, 5301], - 1733011200000, - "moo", - "luxon", - "hamljs", - "liquidjs", - "iso-639-1", - "@iarna/toml", - "-urls", - [2, 3692, 5308], - [3, 3938, 10], - [2, 5310, 1585], - "bcp-47-normalize", - [3, 1705, 11], - [2, 5313, 2218], - "@11ty/", - "lodash-", - "custom", - [2, 5316, 5317], - [2, 5315, 5318], - "please-upgrade-node", - [2, 62, 3007], - [2, 5313, 1633], - [2, 5315, 5322], - "@sin", - "dres", - "orhus/slugify", - [2, 5325, 5326], - [2, 5324, 5327], - [3, 5321, 15], - "dev-", - [2, 5330, 36], - [2, 5329, 5331], - [1, 2343, 5345], - "@vue/", - "server-", - [2, 5335, 3902], - [2, 5334, 5336], - "plugin-vue", - [2, 5329, 5338], - [3, 5339, 22], - "syntax", - [3, 2600, 9], - [2, 5341, 5342], - [2, 5340, 5343], - [0, 5350, 5358, 5359, 34352], - "-site-generator", - [2, 2947, 5346], - [3, 5347, 11], - "ssg", - [0, 2626], - "website", - "jekyll", - "blog", - "templates", - "11ty", - "liquid", - "haml", - [ - 0, 48, 53, 87, 37046, 6371, 27928, 6372, 5583, 811, 816, 6373, 11275, 1165, 1367, 6375, 6376, 1492, 1610, 1177, - 1907, 1937, 1938, 1982, 6379, 2203, 2205, 6382, 2626, 6383, 2739, 2765, 2814, 2297, 2876, 2881, 6385, 2889, - 2895, 2898, 6387, 2910, 3019, 3363, 3400, 3561, 3566, 6389, 4039, 4042, 6390, 21688, 4939, 4167, 4320, 6392, - 4072, 6393 - ], - [0, 1623, 2278, 6396, 6398, 6400, 5130, 5122], - [1, 2343, 5361], - [0, 0, 0, 5372, 2537], - "parcel", - "ytes", - [2, 4853, 5363], - "enchmark", - [2, 4853, 5365], - "@parcel/packager-ts", - "@parcel/", - "er-typescript-types", - [2, 353, 5369], - [2, 5368, 5370], - [0, 1623, 57], - [1, 2343, 5377], - "stringifier", - "heet", - "stylesheet", - [0, 0, 0, 5378, 2487], - [0, 1623, 207], - [1, 2343, 5380], - [0, 0, 0, 5426, 2537], - "@advanced-rest-client/arc-icons", - [3, 5381, 26], - [2, 5382, 3127], - [3, 5381, 22], - "-copy", - [2, 1492, 5385], - [2, 5384, 5386], - "-snippets", - [2, 1501, 5388], - [2, 2655, 5389], - [2, 5384, 5390], - [2, 3115, 592], - [2, 5384, 5392], - "@anypoint-web-components/anypoint-button", - [3, 5394, 34], - "collapse", - [2, 5395, 5396], - "drop", - "dropdown", - [2, 5395, 5399], - "item", - [2, 5395, 5401], - "box", - "listbox", - [2, 5395, 5404], - [3, 64, 17], - "mf-helper-mixin", - [2, 5406, 5407], - [3, 64, 20], - "annotation-document", - [2, 5409, 5410], - "body-", - [2, 5412, 1746], - [2, 5409, 5413], - "example-generator", - [2, 5409, 5415], - "ers-document", - [2, 3193, 5417], - [2, 5409, 5418], - "param", - "eters-document", - [2, 5420, 5421], - [2, 5409, 5422], - "responses-document", - [2, 5409, 5424], - [0, 1623, 6415, 57], - "umentation", - [2, 4117, 5427], - [2, 1965, 5428], - [2, 5409, 5429], - [3, 64, 16], - "method-", - "label", - [2, 5432, 5433], - [2, 2655, 5434], - [2, 5431, 5435], - [1, 2343, 5448], - "lit-html", - [2, 7623, 594], - "demo-helper", - [2, 5382, 5440], - "-aut", - "horization", - [2, 5442, 5443], - [2, 3424, 5444], - [2, 5384, 5445], - [3, 5397, 35], - [0, 5481, 0, 5485, 2537], - "heckbox", - [2, 5447, 5449], - [3, 5402, 35], - [2, 5451, 1020], - [2, 5395, 592], - [3, 64, 21], - "odel-generator", - [2, 5454, 5455], - "navigation", - [2, 5409, 5457], - [3, 5425, 22], - "quest", - [2, 5459, 5460], - [3, 5430, 22], - "rver-selector", - [2, 5462, 5463], - [3, 192, 13], - "onfig-conventional", - [2, 5465, 5466], - "@open", - "-wc/eslint-config", - [2, 5468, 5469], - [3, 5470, 9], - "testing", - [2, 5471, 5472], - "@web/dev-server", - "@web/", - [2, 5475, 1187], - "-playwright", - [2, 5476, 5477], - [2, 5438, 4406], - [2, 4524, 5479], - [0, 220, 3681], - "api-co", - [2, 5482, 4961], - [2, 5432, 1745], - [0, 1623, 2741, 6421, 6422, 3561, 6425, 6426, 3585], - [1, 2343, 5487], - [0, 5488, 0, 5492, 34352], - [0, 3688], - [3, 465, 9], - "typed", - [3, 5428, 9], - [0, 1623, 5317, 6433, 3561, 6425, 6434, 3583, 6435, 6436, 6437], - [1, 2343, 5503], - "-node/core", - [2, 5491, 5494], - [2, 5490, 5495], - [2, 5489, 5496], - "@wry/caches", - "@wry/", - "@hapi/eslint-plugin", - "equality", - [2, 5499, 5501], - [0, 0, 0, 5507, 2537], - "@wry/trie", - "optimis", - "optimism", - [0, 1623, 3681, 6443], - "response", - "-iterator", - [2, 5508, 5509], - "symbol", - "-observable", - [2, 5511, 5512], - "ts-invariant", - "zen-observable-ts", - [1, 2343, 5524], - "@arethetypeswrong/cli", - [3, 107, 13], - "hange", - "log-github", - [2, 5519, 5520], - [2, 5518, 5521], - [3, 5497, 10], - [0, 5538, 5539, 5543, 2523], - "ools/merge", - [2, 5523, 5525], - [3, 5526, 15], - [2, 5527, 2844], - [2, 5527, 594], - "@size-limit/esbuild-why", - [3, 5530, 12], - "pres", - "et-small-lib", - [2, 5532, 5533], - [2, 5531, 5534], - "@tsconfig/node20", - "@types/f", - [ - 0, 6450, 6452, 6453, 5930, 6455, 6457, 5153, 6463, 6465, 30874, 6467, 6470, 6471, 1437, 1483, 1525, 1676, 6473, - 2089, 2070, 6474, 2709, 2744, 2753, 6475, 3060, 6476, 5303, 3171, 3188, 3261, 3730, 27168, 4135, 6479, 4351, - 4507, 6481, 4745, 6482 - ], - [ - 0, 6487, 6488, 19438, 19181, 442, 603, 826, 4856, 5245, 6493, 6494, 4864, 6497, 6309, 6498, 6501, 6503, 6505, - 6507, 4874, 6510, 5254, 6512, 6515, 6519, 6520, 1009, 1011, 1429, 6522, 1509, 6525, 1719, 1177, 1938, 1953, - 1982, 2026, 2151, 6526, 2899, 3257, 3421, 1894, 6527, 4172, 4193, 4196, 6530, 4449, 4474, 4481, 4508, 91 - ], - [2, 4807, 2609], - "-fetch", - [2, 4874, 5541], - [0, 5472, 5982, 1649, 6532, 6533], - [1, 2343, 5548], - "use-sync-external-store", - [2, 4807, 5545], - "rule", - [0, 5549, 5553, 5565, 2537], - [0, 1415, 1437, 1468, 1483, 2151, 4468], - "rule-tester", - [2, 1010, 5550], - [2, 1010, 553], - [ - 0, 192, 5467, 4864, 4866, 5087, 6541, 6544, 6547, 1009, 1011, 1109, 1481, 1836, 1177, 1895, 1955, 2675, 1192, - 6551, 3165, 3203, 3403, 1894, 6552, 6554, 91 - ], - "local-", - "local-rules", - [2, 1921, 5555], - [3, 1961, 20], - [2, 5557, 4643], - "graphql-", - "graphql-ws", - "patch-package", - [3, 3829, 12], - "boundary", - [2, 5562, 5563], - [0, 6557, 1745], - [1, 5293, 5567], - [0, 8391, 5568], - 1730419200000, - "ts-api-utils", - [3, 1913, 9], - [2, 4468, 5570], - "wait-for-observables", - "web-streams-polyfill", - [1, 2343, 5577], - "apollo", - "client", - [0, 0, 0, 2514, 2537], - [1, 2343, 5579], - [0, 0, 0, 2514, 2487], - [1, 2343, 5590], - [3, 66, 10], - [2, 5581, 57], - [2, 812, 1172], - [3, 1217, 14], - "ource", - "-support", - [2, 4226, 5586], - [2, 5585, 5587], - [2, 5584, 5588], - [0, 0, 0, 2514, 2443], - [1, 2343, 5594], - "api", - "asyncapi", - [0, 5595, 5596, 5597, 4139], - [ - 0, 5192, 27292, 7605, 5439, 1437, 1448, 1623, 7606, 7608, 7610, 2822, 1209, 3105, 5946, 7612, 7617, 3124, 7621, - 29457, 4110, 4213, 4361, 11143 - ], - [ - 0, 7624, 5200, 7631, 7632, 7634, 7637, 4870, 7639, 7641, 4874, 7643, 7677, 23203, 1165, 668, 7645, 2600, 26503, - 7648, 3400, 3561, 3672, 2278, 26573, 91, 1984 - ], - [0, 1783, 7650, 1739, 7651, 1745, 4990, 2041, 1179], - "@nicolo-ribaudo/eslint-scope-5-internals", - [1, 2343, 5605], - [3, 1006, 9], - [2, 5600, 671], - "-manager", - [2, 1993, 5602], - [2, 1010, 5603], - [0, 5606, 5607, 5608, 34352], - [0, 4484, 4548, 7658, 7660, 7663, 7664, 7665, 7668, 7669], - [0, 4493, 7671, 1177, 1984, 1894, 1610, 91, 4874, 7672, 7674, 7677, 7678, 7681, 7685, 7690], - [0, 1721, 5592, 4030, 7692, 7693], - [3, 81, 22], - "ecorators", - [2, 5609, 5610], - [1, 2343, 5620], - [3, 1143, 16], - "concat", - [2, 5613, 5614], - "polyfill-es-shims", - [2, 1199, 5616], - "getownpropertydescriptors", - [2, 3436, 5618], - [0, 5621, 5622, 5623, 2537], - [0, 1525], - [0, 2899, 1894], - [0, 553, 4532, 1776, 605, 4508, 1739, 1745, 7701], - [1, 2343, 5626], - [2, 4850, 72], - [0, 5627, 5628, 5597, 2523], - [ - 0, 7708, 7709, 7710, 7715, 7718, 7721, 354, 7723, 7725, 4865, 7729, 7730, 1091, 1149, 1168, 7731, 1437, 1759, - 2075, 2070, 2600, 2628, 2670, 2822, 2854, 3173, 3181, 3322, 4167, 4183, 4213, 4393, 7734, 7735, 4648, 4747 - ], - [ - 0, 7737, 7740, 7744, 7637, 4870, 7746, 4874, 7749, 7752, 4892, 1009, 1011, 1178, 668, 1177, 1966, 2675, 2990, - 1209, 4468, 4474, 91 - ], - [1, 2343, 5632], - [3, 5625, 28], - [2, 5630, 75], - [0, 5633, 5634, 5597, 2487], - [0, 7605, 1437, 7608, 7610, 2822, 1209, 3105, 5946, 7612, 7615, 7617, 3124, 7621, 4110, 4213], - [ - 0, 53, 5241, 87, 7634, 5087, 7637, 4870, 7639, 7641, 7759, 4874, 7643, 7761, 7762, 7763, 1165, 1178, 668, 7645, - 1177, 1966, 2600, 1192, 7648, 3561, 3672, 1894, 3957, 4468, 91 - ], - [1, 5293, 5641], - "mpat-data", - [2, 52, 5636], - [2, 4850, 77], - [3, 5422, 10], - [2, 5236, 5639], - [0, 8391, 5642], - 1734825600000, - [1, 2343, 5644], - [0, 5645, 5646, 5647, 2537], - [ - 0, 5328, 842, 975, 7788, 1364, 1437, 1470, 1536, 7791, 2040, 2075, 2141, 7793, 7794, 2600, 2856, 3105, 5944, - 3107, 5946, 7796, 7797, 3322, 3742, 2278, 7798, 7799, 4227, 4228, 4232, 7800, 3709, 3348, 7801 - ], - [ - 0, 192, 5467, 6061, 6063, 7804, 7806, 7808, 7810, 4864, 7639, 7641, 4874, 7812, 7814, 7816, 7819, 7822, 1009, - 1011, 1414, 7824, 2151, 2675, 3758, 3951, 4131, 91 - ], - [0, 38, 5995, 27, 5130, 7826, 7827, 7828], - [1, 2343, 5649], - [0, 5654, 5661, 5664, 2399], - [3, 5226, 21], - "imports", - [2, 5650, 5651], - [3, 5617, 22], - [ - 0, 7833, 7837, 7839, 7840, 19344, 7847, 842, 7858, 1165, 1393, 1628, 1630, 1177, 1895, 1955, 1959, 1961, 2203, - 2675, 16860, 3177, 3561, 3618, 3678, 2278, 4111, 4307, 4320, 4323, 5978, 7873, 4409, 2924, 4677, 4686, 4689 - ], - "corejs2", - [2, 5653, 5655], - [3, 5656, 28], - [2, 5657, 1278], - [3, 3957, 11], - [2, 5653, 5659], - [0, 7849, 2990], - [3, 99, 21], - [2, 5662, 1278], - [0, 4967, 4329, 7880, 676, 6435, 1237, 7881], - [1, 2343, 5667], - "@edsdk/n1ed-react", - [0, 5668, 5670, 5671, 34352], - [0, 7639, 1429, 1437, 3025, 3105, 3467, 3718], - "derequire", - [0, 27134, 4856, 7889, 4874, 7895, 2675, 2990, 1894, 91, 1984], - [0, 1804, 1739, 1745, 5592, 91, 7897, 7900], - [1, 2343, 5673], - [0, 5703, 5705, 5708, 2523], - [3, 5279, 24], - "option", - [2, 5674, 5675], - "bugfix-firefox-class-in-computed-class-key", - [2, 79, 5677], - [3, 5678, 21], - "safari-", - "-initializer-scope", - [2, 4803, 5681], - [2, 4626, 5682], - [2, 5680, 5683], - [2, 5679, 5684], - [3, 5685, 28], - "id-destructuring-collision-in-function-expression", - [2, 5686, 5687], - "v8-spread-parameters-in-optional-chaining", - [2, 5679, 5689], - [3, 5690, 25], - "-class-fields-redefine-readonly", - [2, 3346, 5692], - [2, 5691, 5693], - "private-", - [3, 3746, 11], - "-object", - [2, 5696, 5697], - [2, 5695, 5698], - [2, 69, 5699], - "generators", - [2, 1152, 5701], - [0, 5652, 97, 7905, 7907, 7910, 7913, 1573, 1874, 7915, 4227, 7917], - [2, 4850, 1229], - [0, 53, 7922], - "static-", - [2, 5706, 1359], - [0, 592, 1832, 89, 1623, 7165], - "ions", - "assertions", - [2, 2701, 5710], - [2, 4850, 5711], - [3, 5712, 29], - "ttributes", - [2, 5713, 5714], - [3, 5712, 28], - [2, 5716, 5207], - [1, 2343, 5719], - [0, 5720, 5722, 5708, 2537], - [0, 362, 7931, 7910, 7932, 7933], - "logical-assignment-operators", - [0, 7935, 91], - [1, 2343, 5724], - [0, 5725, 5726, 2514, 2523], - [0, 97, 362, 7943, 7910, 7946, 7933], - [0, 7935, 7948, 89, 91], - [1, 2343, 5729], - "meric-separator", - [0, 0, 0, 2514, 4139], - [1, 2343, 5733], - "ptional-catch-binding", - "neotraverse", - [0, 5735, 5794, 5795, 2523], - "haining", - [0, 1996], - [2, 4850, 5699], - "top-level-await", - [2, 4850, 5737], - "-sets-regex", - [2, 3656, 5739], - [2, 4850, 5740], - "arrow-functions", - [2, 5236, 5742], - [3, 5743, 25], - "sync-", - [3, 1626, 9], - [2, 2168, 5746], - [2, 5745, 5747], - [2, 5744, 5748], - [3, 5749, 30], - [2, 5750, 1222], - "-scoped-functions", - [2, 1359, 5752], - [2, 5236, 5753], - [3, 5754, 34], - [2, 5755, 3642], - [2, 5236, 1229], - [3, 5757, 30], - [2, 5758, 5707], - [3, 5757, 29], - [2, 5760, 3595], - [3, 5757, 25], - "omputed-properties", - [2, 5762, 5763], - "destructuring", - [2, 5236, 5765], - [3, 5766, 25], - "otall-regex", - [2, 5767, 5768], - "uplicate-keys", - [2, 5767, 5770], - [3, 5771, 34], - "named-", - "capturing-groups-regex", - [2, 5773, 5774], - [2, 5772, 5775], - "ynamic-import", - [2, 5767, 5777], - "expo", - "nentiation-operator", - [2, 5779, 5780], - [2, 5236, 5781], - [3, 5782, 28], - "rt-namespace-from", - [2, 5783, 5784], - [3, 5240, 25], - "or-of", - [2, 5786, 5787], - "unction-name", - [2, 5786, 5789], - [3, 2854, 11], - [2, 5791, 591], - [2, 5236, 5792], - [ - 0, 1414, 2931, 2899, 8099, 1177, 3456, 4039, 4042, 4135, 8098, 1894, 4614, 91, 3401, 5601, 1006, 17529, 4057, - 5552, 4071, 1011, 8097 - ], - [0, 1177], - "literals", - [2, 5236, 5796], - [3, 5797, 25], - "ogical-assignment-operators", - [2, 5798, 5799], - [3, 5241, 25], - "ember-", - "ion-literals", - [2, 2026, 5803], - [2, 5802, 5804], - [2, 5801, 5805], - [3, 5241, 32], - "amd", - [2, 5807, 5808], - [2, 5807, 4376], - "umd", - [2, 5807, 5811], - [2, 5236, 5775], - [3, 5813, 25], - "ew-target", - [2, 5814, 5815], - "ullish-coalescing-operator", - [2, 5814, 5817], - [3, 5818, 26], - [2, 5819, 5728], - [2, 5236, 77], - [3, 5821, 31], - [2, 5822, 4340], - [3, 5821, 25], - [2, 5824, 5731], - [3, 5825, 34], - [2, 5826, 5734], - [3, 5640, 25], - "rivate-methods", - [2, 5828, 5829], - [3, 5830, 32], - [2, 5831, 5698], - [3, 5830, 26], - "operty-literals", - [2, 5833, 5834], - [3, 83, 25], - "egenerator", - [2, 5836, 5837], - [3, 5838, 26], - "d-words", - [2, 4146, 5840], - [2, 5839, 5841], - "short", - [2, 3619, 1228], - [2, 5843, 5844], - [2, 5236, 5845], - [3, 5846, 25], - [1, 2343, 5868], - "pread", - [2, 5847, 5849], - "ticky-regex", - [2, 5847, 5851], - [2, 5236, 1243], - [3, 5853, 25], - "ypeof-symbol", - [2, 5854, 5855], - "unicode-", - [2, 5857, 1106], - [2, 5236, 5858], - [3, 5859, 32], - [2, 4635, 1108], - [2, 5860, 5861], - [2, 5860, 1108], - "sets-regex", - [2, 5860, 5864], - [2, 88, 5260], - [2, 1593, 4097], - [0, 0, 0, 5869, 2523], - [0, 5284, 6939, 1177], - [1, 2343, 5871], - [0, 5872, 5884, 5885, 2537], - [ - 0, 8110, 1461, 8111, 1757, 2017, 8113, 6327, 8114, 3127, 3191, 8116, 3502, 8119, 3555, 3725, 3744, 8122, 4213, - 8123, 8126, 8127 - ], - "act-jsx", - [2, 5839, 5873], - [3, 5874, 30], - "display", - "-name", - [2, 5876, 5877], - [2, 5875, 5878], - "-development", - [2, 5874, 5880], - "pure-annotations", - [2, 5875, 5882], - [ - 0, 8129, 8130, 8132, 4856, 8136, 4863, 8139, 5087, 8141, 8144, 8146, 8147, 4874, 8149, 5090, 4880, 4883, 8152, - 8155, 4891, 8157, 4892, 1009, 1011, 8158, 1311, 1567, 1584, 1593, 1596, 1628, 1651, 1843, 8160, 8161, 1177, - 1938, 1959, 1961, 2135, 2651, 2675, 1192, 2822, 8163, 8165, 3190, 3471, 1894, 3720, 3775, 89, 3824, 3836, 4039, - 4167, 4201, 4307, 4315, 4468, 4474, 4484, 91, 8166, 1002, 2924, 4677, 4681, 4693 - ], - [0, 8168, 8170, 8171, 6975, 8172, 8173, 1745, 8175], - [1, 2343, 5887], - [0, 5890, 5892, 5893, 2537], - [3, 5856, 28], - [2, 5888, 1508], - [0, 8181], - [3, 1261, 12], - [0, 90, 972, 4880, 4883, 1030, 89, 3824, 8187, 1541], - [0, 8190, 8191, 5399, 4403, 8192, 8194, 89, 3824], - [1, 2343, 5895], - [0, 0, 0, 5897, 2537], - "pirates", - [0, 8199, 2414, 8201, 8203, 6941, 8204, 1623, 2278, 6400, 5122, 8206, 6884], - "clone-deep", - [1, 2343, 5900], - [0, 0, 0, 5901, 34352], - [0, 8199, 2414, 8201, 8203, 447, 8211, 1623, 2278, 6400, 5122, 8206, 6884], - [1, 2343, 5903], - [0, 5904, 0, 5905, 4139], - [0, 8218], - [0, 2414, 7176, 8220, 1017, 8221, 1367], - [1, 2343, 5907], - [0, 5904, 0, 5905, 2537], - [1, 2343, 5909], - [0, 0, 5910, 5911, 2487], - [ - 0, 53, 8229, 87, 90, 92, 192, 5467, 442, 449, 7008, 452, 6061, 21120, 6063, 966, 968, 972, 5087, 4880, 4883, - 1393, 1423, 1570, 1610, 1177, 1895, 1938, 1939, 1947, 1955, 1959, 1961, 1976, 1982, 2203, 2675, 1192, 2780, - 1894, 3720, 89, 3824, 4039, 4131, 4468, 4474, 4493, 91, 4523 - ], - [0, 8220, 2132, 89, 5284, 8221, 45], - [1, 2343, 5913], - [0, 5914, 5916, 5918, 34352], - [0, 3951], - "to-fast-properties", - [ - 0, 5087, 4874, 1009, 1011, 1177, 1879, 1883, 1895, 1938, 1939, 1947, 1955, 1192, 2794, 1894, 4468, 4469, 4474, - 4508, 91 - ], - [2, 29288, 594], - [0, 91, 5130, 36, 5995, 3469], - [1, 2343, 5920], - [0, 5937, 5958, 5964, 4139], - "@api", - "devtools/json-schema-ref-parser", - [2, 5921, 5922], - [3, 105, 13], - "web-", - [2, 5925, 4963], - [2, 5924, 5926], - [3, 221, 10], - "gherkin-streams", - [2, 5928, 5929], - "@iframe-resizer/child", - [3, 5931, 16], - "parent", - [2, 5932, 5933], - "awilix", - "bpmn-js", - [0, 8245, 457, 1804, 8248], - "of", - "-allof", - [2, 4381, 5939], - [2, 2845, 5940], - [3, 3107, 13], - "bbr", - [2, 5942, 5943], - "ttrs", - [2, 5942, 5945], - [3, 3112, 14], - "detabs", - [2, 5947, 5948], - "multim", - "d-table", - [2, 5950, 5951], - [2, 3108, 5952], - [3, 4923, 13], - "lantuml-ex", - [2, 5954, 5955], - "task", - [0, 8252, 4874, 1009, 1011, 1610, 1804, 8256, 1177, 1879, 1883, 1895, 1938, 1947, 1955, 1894, 4469, 4474, 4508, 91], - "-lists", - "task-lists", - [2, 3108, 5960], - "-viewer-element", - [2, 3512, 5962], - [0, 91, 5130, 1804, 36, 5995], - [1, 2343, 5976], - "prince", - "svg-", - "pan-zoom", - [2, 5967, 5968], - [3, 4369, 11], - [2, 5970, 1724], - "reso", - "urce-inliner", - [2, 5972, 5973], - [2, 5925, 5974], - [0, 5979, 5916, 5984, 34352], - "-scss", - [2, 4323, 5977], - [0, 457, 8263, 8264, 24156, 1364, 2863, 3951], - "md", - "bpmn", - "bdd", - "feature", - [0, 91, 5130, 2026, 3469, 36, 5995], - [1, 2343, 5986], - [0, 5987, 5988, 5991, 2487], - [0, 31740, 8271, 8272, 8273], - [0, 8275], - "exit-hook", - [2, 1152, 5989], - [0, 2220, 8277, 1745, 1783, 8278], - [1, 2343, 5994], - "loki", - [0, 5996, 5997, 5998, 2523], - "backend", - [0, 32359, 6446, 8273, 8272], - [0, 8286, 8275], - [0, 467, 2220, 8277, 1745, 1932, 1783, 8278], - [1, 2343, 6012], - [3, 107, 12], - "y-release-plan", - [2, 1133, 6001], - [2, 6000, 6002], - [3, 6003, 13], - "ssemble-release-plan", - [2, 6004, 6005], - [3, 5522, 25], - "onfig", - [2, 5518, 6008], - [2, 6000, 2656], - "dependen", - [0, 6013, 0, 6046, 2537], - [ - 0, 53, 87, 8292, 8294, 8296, 1165, 1195, 8297, 1593, 1610, 1628, 1630, 2092, 8301, 3177, 3561, 3618, 8304, 2278, - 8306, 4111, 4383, 4027, 2924, 4677 - ], - "ts-graph", - [2, 6011, 6014], - [2, 2183, 6015], - [2, 6000, 6016], - [3, 6017, 16], - "release-", - "plan", - [2, 6019, 6020], - [2, 6018, 6021], - [3, 6017, 13], - [2, 6023, 2403], - [2, 6000, 2942], - "pre", - [2, 6000, 6026], - [2, 6000, 3917], - "-skip-package", - [2, 4170, 6029], - [2, 6000, 6030], - [2, 6000, 553], - "write", - [2, 6000, 6033], - "@man", - "ypkg/get-packages", - [2, 6035, 6036], - "editor", - [2, 26670, 26671], - "human-id", - "mri", - "p-limit", - "pref", - "erred-pm", - [2, 6043, 6044], - [0, 2924, 8309, 8310, 4967], - "spawndamnit", - "term", - "term-size", - [1, 2343, 6051], - [0, 6053, 6054, 6060, 2487], - "@mui/x-internals", - [0, 8317, 8320, 8321, 8324, 8325, 8328, 8330, 8333, 8335, 8337, 8339, 8341, 8344, 8346, 8348, 8350, 8353, 8354], - [0, 8357, 5500, 8358, 8359, 8362, 8364, 4874, 2036, 2812, 91], - [3, 110, 23], - [2, 6055, 592], - [3, 449, 25], - "free", - [2, 6057, 6058], - [0, 5130, 27, 5592, 5122], - "@semantic-release/changelog", - [3, 6061, 18], - [2, 6062, 3358], - "hub", - [2, 6063, 6064], - [2, 1457, 20], - "peer-deps-external", - [2, 4049, 6067], - [1, 5293, 6075], - "chat", - "reactjs", - " interface", - [2, 4569, 6072], - "ui kit", - [0, 8391, 6087], - "unication", - [2, 1514, 6076], - "conver", - "sation", - [2, 6078, 6079], - "toolkit", - "library", - "reusable", - "feed", - "social", - "talk", - 1724872768784, - [1, 2343, 6089], - [0, 6090, 6091, 6093, 2523], - [0, 8506, 3776], - [0, 192, 5467, 8509, 8511, 6061, 6063, 16480, 1177, 2675, 2742, 8512, 2990, 1894, 4131, 1984], - "ckeditor", - [0, 1776, 1894, 4298, 1745, 5284], - "ckeditor 5", - "-feature", - [2, 1459, 6095], - [3, 6096, 10], - [2, 6097, 1932], - "dll", - [2, 6097, 6099], - [1, 2343, 6102], - [0, 6103, 6104, 6114, 2537], - [0, 5917], - [ - 0, 11976, 8520, 26364, 966, 968, 972, 974, 4874, 4880, 8524, 8527, 8528, 8529, 1030, 1091, 8531, 1092, 6685, - 8534, 8536, 6809, 7250, 1610, 8537, 8556, 8538, 7091, 8539, 2812, 2832, 8540, 3165, 8543, 8544, 8547, 3400, 89, - 3824, 3833, 3951, 7080, 7103, 91, 8550, 7114, 1983, 8552, 1984, 6482, 4763 - ], - "wysiwyg", - "rich text", - "Editable", - [2, 1563, 6107], - "edit", - "editing", - "angular2", - "angular 5", - "ng", - [ - 0, 6659, 7020, 7130, 6663, 3833, 6482, 2812, 7080, 91, 4763, 7114, 6809, 7091, 8558, 7209, 7250, 7103, 1091, - 7196, 6685, 8560, 8561, 8556, 29291 - ], - [1, 2343, 6116], - [0, 6117, 5795, 6118, 2537], - [0, 4548], - [0, 8571, 8572, 8573, 8570, 1885, 8574, 5592], - [1, 2343, 6120], - [0, 6121, 6122, 6123, 2523], - [0, 8579, 8582, 8585, 8181, 3021], - [0, 4039, 188, 4639], - [0, 188, 8588, 8591, 4967, 5130, 181, 12, 4627, 4963, 5001, 837], - [1, 2343, 6125], - [0, 6128, 6129, 6130, 2537], - [3, 153, 22], - [2, 6126, 2389], - [0, 7905, 542, 1668, 3021], - [0, 8597, 4039, 188, 4639], - [0, 188, 8588, 8591, 4967, 5130, 181, 4627, 4963], - [1, 2343, 6146], - "ditor-balloon", - [2, 151, 6132], - "@jest/pattern", - "oper", - "al transformation", - [2, 5218, 6136], - [2, 6135, 6137], - "ot", - "colla", - "boration", - [2, 6140, 6141], - [3, 6142, 11], - [2, 6143, 4936], - "real-time", - [0, 6149, 6150, 6151, 2537], - "build", - [2, 6097, 6147], - [0, 31874, 8604, 8605, 8611, 34224, 8612, 4174], - [0, 8616, 8608, 4874, 91], - [ - 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 8622, 1836, 8623, 1179, 8624, 6847, 8625, 2720, 8626, 8628, 5284, - 4403, 202, 6710, 3741, 8630, 3742, 8631, 3925, 8632, 8633, 4989, 2184, 8634, 7009, 6621, 181, 8635, 4758, 8636 - ], - [1, 2343, 6153], - [0, 6154, 6155, 6156, 2399], - [0, 4484, 2735, 8641], - [ - 0, 1192, 2278, 1437, 2020, 4146, 8643, 1177, 4042, 2151, 2774, 1894, 4320, 5087, 4874, 8645, 6376, 8647, 30071, - 4328, 8648, 8651, 8653, 8654, 8656, 8659, 8660, 8661, 1895, 1011, 8665, 816, 8669, 8671, 1009 - ], - [0, 2733, 5130, 8673, 5131, 1896, 8674, 8675, 1591, 1804, 8677, 8678], - [3, 6133, 27], - [2, 6157, 128], - [1, 2343, 6160], - [0, 0, 6161, 6162, 2537], - [0, 4874, 668, 1894, 4384, 4483, 4508], - [0, 200, 6876, 8691, 4964, 7201, 4719, 176], - [1, 2343, 6169], - [2, 117, 2414], - "lignment", - [2, 112, 6165], - [3, 132, 9], - [2, 6157, 6167], - [0, 6170, 0, 6171, 2537], - [0, 8697], - [0, 91, 1541, 3421, 1973, 4504], - [1, 2343, 6174], - [2, 6157, 134], - [0, 6175, 6176, 6177, 2537], - [0, 8703, 8710, 8712, 8714, 1461, 8716], - [0, 8719, 842, 968, 972, 974, 7677, 1177, 1895, 8724, 2832, 89, 3824, 91, 1983, 1984], - [0, 4627, 4963, 8727, 4964, 5130, 4967, 8728, 8729, 5128, 89, 181, 1487], - "blurhash", - [1, 2343, 6180], - [0, 6181, 6182, 6183, 2537], - [ - 0, 8744, 6134, 8752, 8762, 8755, 554, 4874, 1107, 1437, 1458, 29680, 2215, 8769, 8734, 8750, 8765, 8758, 2797, - 8771, 8737, 8739, 8746, 2798, 8747, 8741, 3170, 3717, 4207 - ], - [0, 8782, 8776, 8780, 8778], - [ - 0, 1166, 1172, 4504, 8784, 2022, 3497, 8786, 8787, 2765, 1192, 2832, 2899, 8788, 8790, 2907, 8791, 8795, 8745, - 4384, 4389, 1973, 5472, 91, 2282 - ], - [1, 2343, 6185], - [0, 6186, 0, 2514, 2537], - [0, 6134, 8801, 8809, 8806, 4874, 4892, 1437], - [1, 2343, 6188], - [0, 6189, 6190, 6191, 2487], - [0, 8818, 1091, 1092, 1209], - [ - 0, 549, 8826, 1009, 1011, 1166, 8832, 1177, 1895, 1938, 1955, 2832, 3421, 1894, 3875, 8824, 4039, 4042, 4052, - 4076, 4079, 4232, 4474, 4484, 4508, 91 - ], - [0, 1669, 25, 1781, 8836, 4967, 1179, 6847, 7020, 8838, 2860, 2844, 8839, 8691, 8841], - [2, 6097, 1095], - [1, 2343, 6194], - [0, 6195, 6196, 6198, 2523], - [0, 8846, 1673, 1209], - [ - 0, 7948, 370, 618, 622, 626, 811, 8850, 816, 6373, 4863, 5087, 4880, 4883, 1009, 1011, 8158, 1584, 1843, 1177, - 1895, 1938, 1955, 1959, 1192, 2780, 2832, 3421, 1894, 89, 3824, 4039, 4042, 4052, 8849, 8853, 4076, 4079, 4230, - 4468, 4469, 4484, 4508, 91, 2924, 4677, 4681, 555, 560 - ], - [3, 191, 21], - [0, 29, 3902, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], - "atchdog", - [2, 6197, 6199], - [1, 2343, 6202], - [0, 6203, 6204, 6205, 2487], - [0, 1209], - [ - 0, 8862, 4863, 5087, 8860, 4880, 4884, 1009, 1011, 8158, 1610, 1843, 1177, 1895, 1938, 1955, 1959, 1192, 2832, - 3421, 1894, 89, 3824, 3876, 3875, 8824, 4039, 4042, 4052, 4076, 4079, 4468, 4484, 4508, 91, 555 - ], - [0, 89, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], - [1, 2343, 6207], - [0, 6208, 6209, 2514, 2537], - [ - 0, 6059, 8918, 8923, 8928, 8926, 8934, 8921, 8913, 8931, 8932, 8894, 8916, 8892, 8897, 8906, 8900, 8887, 8910, - 8902, 8890 - ], - [0, 8937, 5087, 1192, 4039, 91], - [1, 2343, 6211], - [0, 6212, 6213, 6218, 34352], - [ - 0, 1110, 1282, 1437, 1537, 8942, 2070, 8944, 2822, 8947, 3072, 3181, 3188, 8949, 4039, 8951, 8952, 8954, 8957, - 8959, 4431, 4562, 4600, 4603, 8962 - ], - [0, 1173, 8966, 1255, 1264, 1596, 1672, 2835, 2899, 3421, 8967, 4100, 4193, 4255, 4597], - "ndo", - [2, 183, 6214], - "select-all", - [2, 117, 6216], - [0, 2278, 4329, 1623, 2295, 1745, 4298, 699], - [1, 2343, 6220], - [0, 0, 0, 6221, 2399], - [0, 8980, 8984, 8987], - [1, 2343, 6223], - [0, 6224, 6225, 6226, 2523], - [0, 8605], - [0, 546, 8997, 8998, 2992], - [0, 2991, 2992, 200, 5957, 3392, 9000, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921], - [1, 2343, 6228], - [0, 6229, 6230, 6231, 2487], - [0, 8703, 1497, 3867, 9008, 9011, 4507], - [0, 89, 3824], - [0, 4963, 4964, 4967, 6082, 3286, 3287, 89, 181, 630], - [1, 2343, 6233], - [0, 6234, 6230, 6235, 4139], - [0, 1497], - [0, 9026, 4963, 1666, 4967, 6082, 3286, 3287, 3811, 89, 6901, 181, 630], - [1, 2343, 6237], - [0, 0, 0, 6238, 2523], - [0, 4967, 582, 6082, 3286, 3287, 89, 6687, 6649], - [1, 2343, 6240], - [0, 0, 6230, 6241, 2487], - [0, 4963, 8622, 4967, 6082, 5066, 3286, 3287, 89, 181, 630], - [1, 2343, 6243], - [0, 6244, 6230, 6245, 2487], - [0, 9041, 3911], - [0, 4963, 4967, 6082, 3286, 3287, 9044, 9045, 9047, 89, 181, 630], - [1, 2343, 6247], - [0, 6248, 0, 6249, 2537], - [0, 9054, 595], - [0, 89, 3286, 3287, 181, 4963, 630, 6082, 4967, 1501, 5342, 5341, 9057], - [1, 2343, 6251], - [0, 6252, 0, 6253, 2399], - [0, 1497, 1639], - [0, 89, 3286, 3287, 181, 6082, 4967, 1832, 7165, 7297], - [1, 2343, 6255], - [0, 0, 0, 6256, 2523], - [0, 89, 3286, 3287, 6082, 4967, 6687, 582, 6649], - [1, 2343, 6258], - [0, 6259, 0, 6260, 2537], - [0, 1497, 3847, 3559, 3744, 97, 9075, 9076, 9071, 9074, 3911, 2609, 4808], - [0, 89, 5128, 5027, 3132], - [1, 2343, 6262], - [0, 6263, 0, 6264, 2537], - [0, 97], - [0, 89, 5128, 5027, 3132, 45], - [1, 2343, 6266], - [0, 0, 6267, 6273, 2537], - [ - 0, 1192, 3348, 2675, 1177, 1209, 1593, 4474, 4508, 1894, 1317, 48, 1193, 91, 53, 5087, 7819, 3400, 4870, 107, - 192, 5366, 87, 1978, 3957, 1895, 1955, 4514, 92, 603, 9089, 1011, 5467, 1009, 61, 78, 76 - ], - "color-parse", - "color-", - "convert", - [2, 6269, 6270], - "vanilla-colorful", - [0, 1781, 5592, 9091, 9093, 1753, 9094, 4525, 91, 4799, 5995, 6400], - [1, 2343, 6275], - [0, 6276, 0, 6277, 2523], - [0, 9100], - [0, 1219, 1783, 9102, 89, 3984], - [1, 2343, 6279], - [0, 6280, 6281, 6282, 2399], - [0, 608, 606, 1687, 1209, 3181, 814, 4135, 4227, 91, 9111, 9110, 9113, 9119, 9121], - [0, 9125, 4870, 5251, 5254, 1177, 29339, 9130], - [0, 91, 8172, 9132, 9133, 9134, 8623, 1745, 6432, 4056, 7897, 4042, 6374, 4643, 9135, 9136], - "@aws/durable-execution-sdk-js", - "vue.js", - "vue component", - " component", - [2, 6284, 6286], - [1, 2343, 6289], - [0, 0, 6290, 6291, 2537], - [0, 1177, 9125, 9141], - [0, 6869, 1745, 2295, 4298, 9132, 57, 4255], - [1, 2343, 6293], - [0, 6294, 6295, 6291, 2537], - [0, 1091, 9153, 814, 606], - [0, 1177, 9156, 5251, 9125, 9141], - [3, 192, 12], - [2, 6296, 1671], - [2, 6296, 671], - [3, 6298, 13], - "oad", - [2, 6299, 6300], - [2, 6296, 3917], - [2, 6296, 553], - [1, 2343, 6310], - [3, 6303, 13], - [2, 6305, 4467], - [2, 6296, 594], - [3, 4872, 14], - [2, 6308, 1698], - [0, 0, 6311, 6312, 2523], - [0, 6283, 33639, 9163, 9167, 4874], - [0, 9169, 9170, 9171, 9172, 9173, 9174, 33959, 33964], - [1, 2343, 6314], - [0, 6321, 6322, 6340, 4139], - [3, 195, 10], - [2, 6315, 2997], - "ngd-transformer", - [2, 6315, 6317], - ".native", - [2, 1367, 6319], - [0, 615], - [0, 609, 9167, 4507], - "decache", - "-plugin-", - [2, 6324, 3665], - [2, 3079, 6325], - "lunr", - "openc", - "ollective-postinstall", - [2, 6328, 6329], - "os-name", - "pdfmake", - "sort", - "tablesort", - "vis-network", - [2, 6337, 6338], - [3, 10088, 18], - "-list", - [2, 10217, 6341], - [0, 9169, 9170, 9171, 9172, 9173, 9174, 9182, 9183, 8172, 6671, 9184, 9186], - "icky", - [3, 197, 10], - [2, 6342, 553], - [1, 2343, 6350], - "semantic", - "actor", - "messages", - [2, 698, 9352, 6349, 10029], - "scroll-b", - [0, 0, 6353, 6356, 2537], - [2, 6352, 1633], - [3, 6348, 22], - [0, 9193, 609, 9167, 4874, 9196], - "cms", - "management", - [0, 9169, 9170, 9171, 9172, 9173, 9174, 1383, 614], - [1, 2343, 6358], - [0, 0, 0, 6359, 2523], - [0, 9203, 4967, 9204, 1283], - [1, 2343, 6361], - [0, 6362, 6363, 6364, 2537], - [0, 9213, 9215, 9217, 9218, 9219, 9221], - [ - 0, 192, 5467, 9225, 9226, 8648, 9227, 6494, 9231, 9237, 4874, 5542, 24360, 9240, 9241, 1170, 1364, 1527, 1594, - 1610, 1652, 9242, 2026, 9243, 9244, 2131, 2212, 2559, 2832, 3310, 9245, 4218, 4220, 9247, 4339, 4342, 1531, 91, - 4548, 1984, 9250, 9252, 9255, 2924, 9258, 4729 - ], - [0, 705, 9261, 27, 2671, 4738, 4731, 1612, 9262, 3212, 4158, 5472], - [1, 2343, 6366], - [0, 6263, 0, 6367, 2537], - [0, 89, 5128, 9267, 3132, 5027, 45], - [1, 2343, 6394], - "@doc", - "search/js", - [2, 6369, 6370], - "@popperjs/core", - [2, 812, 4068], - "bundle", - "bundlewatch", - [2, 1462, 20], - "find-u", - "nused-sass-variables", - [2, 6377, 6378], - "hammer", - "-simulator", - [2, 6380, 6381], - "hugo-bin", - "-istanbul-reporter", - [2, 2886, 6384], - [2, 1868, 2903], - [2, 2898, 6386], - "mbine-duplicated-selectors", - [2, 3573, 6388], - [2, 4049, 2759], - "twbs-bootstrap", - [2, 4942, 6391], - "vnu-jar", - [0, 6397, 0, 6401, 2487], - "-first", - [2, 5131, 6395], - [0, 1497, 9272, 9273, 3744, 624, 97], - "responsive", - "front-", - "front-end", - [0, 89, 5128, 9267, 3132, 5027, 620], - [1, 2343, 6403], - [0, 6404, 0, 6405, 2537], - [0, 1497, 1639, 3847, 9272, 9273, 3744, 624, 97, 6372, 3911, 9284, 4808], - [0, 89, 5128, 9267, 3132, 5027], - [1, 2343, 6407], - [0, 6408, 0, 6409, 34352], - [0, 1497, 1639, 9272, 9273, 3744, 97, 4782, 9293], - [0, 89, 5128, 9267, 623], - [1, 2343, 6411], - [0, 6412, 0, 6414, 2537], - [0, 97, 9273, 4808, 1497, 3744, 3911, 6052], - "media", - [0, 89, 5128, 9267, 9300, 3132, 5027, 3812, 9301, 9302], - "media query", - [1, 2343, 6417], - [0, 6418, 6419, 6420, 2523], - [ - 0, 9307, 9308, 9310, 9311, 9312, 9313, 9315, 9316, 9317, 1461, 1473, 9319, 9321, 9322, 2070, 2226, 9324, 9327, - 9329, 9334, 9337, 9340, 3988, 9343, 9347, 9348, 9351, 4507, 4549, 4555, 2924, 9354, 9355 - ], - [0, 9357, 9359, 9362, 9363, 4880, 4891, 1165, 1540, 3286, 3613, 89, 3824, 3958, 4383, 4493, 91, 9364, 9367, 9368], - [0, 9102, 1745, 3287, 1783], - "matches", - "polyfill", - [3, 3668, 9], - "lugin", - [2, 6423, 6424], - "pseudo", - [1, 2343, 6428], - [0, 6429, 0, 6430, 34352], - [0, 9375, 9376, 9378, 9379], - [0, 1098, 1745, 1179, 9381, 9382, 5592, 9383, 9384], - [1, 2343, 6438], - [3, 4325, 11], - [2, 6432, 591], - [3, 217, 11], - "utility", - "variables", - "vars", - [0, 6439, 0, 6430, 2443], - [0, 4484, 628], - [1, 2343, 6441], - [0, 6442, 0, 6430, 2523], - [0, 3958, 9393, 3971, 3978, 7610, 9396, 9401, 2584, 4555, 9405, 9407, 9409, 1437, 9348, 4549, 4292], - "specificity", - [1, 2343, 6445], - [0, 6459, 6460, 6480, 2523], - [2, 6447, 25240], - [3, 465, 19], - [3, 221, 11], - "i-environment", - [2, 6448, 6449], - [2, 3228, 5709], - [2, 221, 6451], - [3, 5930, 17], - [3, 5930, 18], - [2, 6454, 594], - [2, 2617, 4525], - [2, 5928, 6456], - "message", - [0, 9414, 1690, 1431, 9417], - [ - 0, 1429, 1363, 2899, 1177, 9420, 4039, 9422, 4474, 2182, 1894, 91, 4856, 4874, 9424, 1325, 1951, 1938, 1895, - 1955, 1011, 9426, 1009, 634, 9431, 9437 - ], - "-streams", - [2, 6458, 6461], - [2, 5928, 6462], - [3, 6463, 17], - [2, 6464, 591], - "tag-expressions", - [2, 5928, 6466], - [3, 5710, 9], - "-error-formatter", - [2, 6468, 6469], - "capital-case", - [2, 4250, 57], - [2, 3827, 6472], - "has-ansi", - "knuth-shuffle-seeded", - [2, 3060, 5056], - "resolve-pkg", - "argv", - "string-argv", - [0, 9439, 9440, 9422, 5472], - "util-arity", - "yup", - [1, 2343, 6506], - "ompa", - "tibility-kit", - [2, 6484, 6485], - [2, 6448, 6486], - [2, 5928, 3766], - "-xml", - [2, 4856, 6489], - "@types/d", - "irty-chai", - [2, 6491, 6492], - [2, 4861, 674], - "@types/h", - "as-ansi", - [2, 6495, 6496], - [2, 6309, 5056], - "@types/l", - "uxon", - [2, 6499, 6500], - "@types/m", - [2, 6502, 1950], - "ustache", - [2, 6502, 6504], - [0, 6531, 6534, 2514, 2523], - "@types/mz", - [3, 5090, 10], - "gress", - [2, 6508, 6509], - "inon-chai", - [2, 5051, 6511], - [3, 6512, 12], - "js__fake-timers", - [2, 6513, 6514], - [3, 4890, 9], - "-buffers", - [2, 2187, 6517], - [2, 6516, 6518], - "@types/tmp", - "exclude", - [2, 1432, 6521], - "xml", - "chai-xml", - [2, 5313, 671], - "genversion", - "reindent-template-literals", - "stream-t", - "o-string", - [2, 6528, 6529], - [ - 0, 9501, 9452, 9510, 638, 9496, 9493, 641, 9479, 9456, 9459, 643, 9449, 9448, 9485, 2613, 9472, 3084, 3181, - 3368, 9465, 3386, 9462, 3397, 3483, 9476, 3727, 9447, 9490, 9469, 4135, 4248, 9451, 9455 - ], - "gherkin", - "tests", - [0, 9516, 26037, 9515, 1317, 9520, 3297, 4384, 4393, 9512], - [1, 2343, 6536], - [0, 6537, 6538, 6542, 2523], - [0, 9493, 9479, 2070, 3181], - [0, 9516, 9515, 4384], - [3, 6503, 10], - "k-fs", - [2, 6539, 6540], - [0, 3378, 3409, 2977, 200, 9527, 637], - "-compare", - [2, 5254, 6543], - [3, 6512, 9], - "gnale", - [2, 6545, 6546], - "mock-pro", - "cess", - [2, 6548, 6549], - [2, 2769, 6550], - [2, 4135, 6543], - "signal", - "signale", - [1, 2343, 6556], - [0, 0, 6538, 6558, 2399], - "deven", - [0, 3378, 200, 640], - [1, 2343, 6560], - [0, 6561, 6562, 2514, 2487], - [0, 641, 9479, 9539, 640, 3727, 4707], - [0, 9516, 9515, 9542, 4384], - "toobject", - [3, 3568, 10], - "urable", - [2, 1541, 6565], - "promises", - "ReactiveX", - "WeakSet", - "ES3", - [1, 2343, 6576], - "cloudsearch", - "uninstall", - "windows", - "cjk", - [0, 6595, 6603, 6604, 2523], - "negative", - "shar", - "shared", - "Symbol.toStringTag", - "full-width", - "Object", - "Array.prototype.flatMap", - "Uint8", - "ClampedArray", - [2, 6584, 6585], - "start", - "starter", - "infer", - "ence", - "inference", - [3, 6583, 17], - "indLast", - [2, 6592, 6593], - [ - 0, 9547, 9548, 9550, 3105, 2745, 9552, 9554, 9556, 9558, 9560, 9562, 3023, 9563, 4110, 7610, 9565, 9566, 3032, - 9568, 3114, 9569, 9573, 9577, 5961, 9580, 9584 - ], - "replay", - "[[Prototype]]", - "es7", - "cloud", - "ion", - "formation", - [2, 6599, 6601], - [0, 2070, 2899, 1448, 4255, 9586, 1389, 9588, 4257], - [0, 9591, 3987, 2195, 9593, 1783, 5980, 1745, 9595, 1936, 3378], - "look", - "last", - "regular expression", - "ECMAScript 2023", - "hot", - "rm -fr", - "chinese", - [1, 5293, 6617], - "consume", - "look-up", - "ES8", - "rgb", - [0, 8391, 6628], - "deep-copy", - "iam", - "ES2022", - "tty", - "status", - "length", - "view", - "dom-t", - "esting-library", - [2, 6625, 6626], - 1734998400000, - "elb", - [1, 2343, 6655], - "getter", - [3, 6608, 13], - "19", - [2, 6632, 6633], - "macos", - "__proto__", - "asserts", - "deepclone", - [3, 2779, 11], - [2, 6639, 591], - "crypt", - [3, 6634, 14], - "8", - [2, 6642, 6643], - "push", - "monorepo", - "lone", - "fast-clone", - "state", - "lru", - [2, 1177, 1541], - "endpoint", - "a11y", - "weakmap", - [0, 6656, 0, 6658, 2537], - [0, 666], - "streams2", - [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 9627, 9628], - "scheme", - ".json", - [2, 3383, 6660], - "ajax", - "hookform", - [1, 2343, 6672], - "autoscaling", - "packages", - "linux", - "rfc4122", - [3, 2069, 10], - [2, 6669, 1585], - "JSON", - [0, 6675, 0, 6658, 2399], - "matchAll", - "iterate", - [0, 3420, 4484], - [1, 2343, 6679], - "structuredClone", - "trim", - [0, 6682, 0, 6658, 2537], - "@cfcs/core", - [3, 3518, 11], - [0, 683], - "findLast", - [1, 2343, 6699], - "arktype", - [3, 3833, 10], - [2, 6686, 591], - "prototype", - "sigint", - "sinatra", - "Object.", - "value", - "values", - [2, 6691, 6693], - "reduce", - "reducer", - "Function.prototype.name", - "lockfile", - [0, 6712, 6717, 6658, 2523], - "full", - "fullwidth", - "groupBy", - "wait", - "duplex", - "css less", - "helpers", - "optimize", - "optimizer", - "emr", - "nodejs", - "defineProperty", - [0, 29309, 1797, 4484, 4135, 4748, 3181, 1836], - "pyyaml", - "call", - "bind", - "callbind", - [0, 1192, 3420], - "styleguide", - [1, 2343, 6722], - "watchFile", - "code ", - [0, 6730, 6736, 6744, 2537], - "code points", - "Index", - [2, 6683, 6724], - "Map", - "flatMap", - "l10n", - "WebSocket", - [0, 4484, 677, 666, 3527, 27921, 4480], - "utilities", - "high", - "er-order", - [2, 6732, 6733], - "dataview", - [0, 3420], - "handling", - [2, 3827, 6737], - "define", - "ebs", - [2, 1177, 1932], - "estree", - [2, 6642, 2855], - [0, 9621, 9647, 9623, 9628, 9648, 9649], - [1, 2343, 6756], - "ES2015", - [3, 6608, 11], - [2, 6747, 1278], - "operati", - "ng-system", - [2, 6749, 6750], - "RegExp#flags", - "loading", - "range", - "rangeerror", - [0, 6757, 6736, 6767, 2537], - [0, 4484, 677, 4135, 666, 91], - "accessor", - "ESnext", - "limited", - "RFC-6455", - "URLSearchParams", - "es-shim API", - "col-buffers", - [2, 4900, 6764], - "lesscss", - [0, 9621, 9623, 9657, 9658, 9628, 9659], - "nce", - "sequence", - " system", - "file system", - [1, 2343, 6785], - "pnpm9", - "metadata", - "YAML", - [3, 3405, 12], - "ES2023", - "es2015", - "simpledb", - "hasOwn", - [2, 5010, 6972], - "debugger", - " zero", - [2, 6577, 6783], - [0, 6815, 0, 6819, 34352], - "fast-copy", - "spinners", - "predictable", - "ES6", - "rm", - [3, 6583, 16], - "contain", - "contains", - [2, 6791, 6793], - "japanese", - [3, 6608, 14], - [2, 6796, 1274], - [2, 20413, 2659], - "byteOffset", - "setter", - "Object.keys", - "flags", - "key", - "ender", - "ponyfill", - [2, 20413, 8124], - "logging", - "sns", - [2, 4626, 1155], - "ses", - "output", - "worker", - "export", - [2, 1204, 6813], - [0, 4484, 677, 682, 666], - "tester", - "waf", - "setImmediate", - [0, 9621, 9624, 9667, 9626, 9627, 9628, 9649], - "typedarrays", - "walking", - "descriptor", - [1, 2343, 6826], - "hardlinks", - "buffers", - [0, 6833, 6736, 6851, 2443], - "typesafe", - "Set", - "CSS", - "es-abstract", - "agegateway", - [2, 4268, 6831], - [ - 0, 1437, 4484, 2687, 4135, 1513, 9673, 3530, 666, 3527, 27921, 53, 1710, 2858, 3404, 683, 97, 29309, 87, 4232, - 7913, 9676, 92, 83, 71, 5757, 9678 - ], - [2, 6838, 1172], - "cloudfront", - "7", - [2, 6642, 6836], - [3, 13067, 16], - "ES2019", - [2, 6855, 6872], - "reuse", - "acter", - "character", - "prese", - "rve-symlinks", - [2, 6844, 6845], - "input", - [3, 1461, 9], - "Underscore", - "ec2", - [0, 9621, 9623, 9624, 9680, 9681, 9628, 9648, 9649], - [1, 2343, 6861], - "indicator", - "AsyncIterator", - "@vue/cli", - "performant", - "folder", - "Stream", - "0", - "ES2020", - [0, 6862, 0, 6880, 2537], - [0, 4484, 677, 682, 666, 672, 9687], - [2, 6822, 591], - "te", - "delete", - "arraybuffer", - [2, 6579, 6866], - "emit", - "TypeScript", - "batch", - "rds", - [3, 4075, 18, 6], - [2, 6896, 11100], - "Uint16Array", - "password", - [3, 1519, 12], - " manager", - [2, 3383, 6877], - "mru", - [0, 9621, 9624, 9625, 9626, 9627, 9628, 9649], - "byteLength", - "rate", - "css ", - "variable", - [2, 6883, 6884], - [1, 2343, 6895], - "speed", - "own", - "has-own", - ".env", - "elm", - "ast", - "6", - [2, 6747, 6893], - [0, 6900, 6736, 6880, 4139], - "@vue/cli-", - " compiler", - [2, 695, 6897], - [3, 3938, 9], - [0, 4484, 677, 4774, 29540, 666, 26784, 672, 18052], - "time", - [2, 1955, 12054], - "bundling", - [2, 6916, 1987], - "Uint32Array", - [1, 2343, 6908], - "minimal", - [0, 6909, 6736, 6658, 34352], - [0, 3420, 1437, 4484, 4135, 1836, 3530, 666, 4748, 29309], - "collection", - " css", - "nested css", - "slice", - "has", - "sorted", - [3, 4079, 15], - "iteration", - "ES2021", - "Float32Array", - "regular", - "idle", - "column", - "Iterator", - [1, 2343, 6927], - "throttle", - "guid", - [0, 6928, 6934, 6936, 2537], - [0, 687, 9704, 9706, 9708, 1676, 4135], - "watching", - "sqs", - "vue 3", - "less css", - "glacier", - [0, 9712, 4856, 6503, 4874, 5254, 1429, 1488, 1567, 1177, 1891, 1893, 9714, 2205, 2899, 4193, 4474, 91], - "sett", - [0, 1890], - "settings", - "ascii", - [3, 1920, 13], - "break", - "inter", - [1, 2343, 6978], - "internal", - [2, 6691, 3437], - [2, 6747, 6836], - "Array", - "Buffer#slice", - [2, 6946, 6947], - "s3", - "shrinkwrap", - "sham", - "art", - "safe", - ":*", - [2, 664, 6954], - [3, 6677, 9], - [2, 2382, 6956], - "Property", - [2, 6780, 6958], - "korean", - "regexp", - [2, 1367, 6911], - "beanstalk", - "ES5", - [2, 3632, 6911], - "take", - [3, 6962, 10], - [2, 6967, 695], - "tdd", - "jQuery", - "enum", - "-vanilla", - "enumerable", - "hot-shots", - "JSON-Schema", - "workflow", - "CSSStyleDeclaration", - [0, 6982, 6984, 6936, 2523], - "route53", - "wordbreak", - "columns", - [0, 9704, 9706, 1676, 2205, 2755, 4484], - "formatting", - [0, 4856, 9723, 4870, 6503, 4874, 9725, 8610, 1429, 1567, 1177, 1891, 1893, 9714, 1209, 2899, 3752, 4474, 91], - "one", - "fastclone", - "shebang", - "number", - [1, 2343, 6992], - "ache", - "elasticache", - [0, 6995, 6999, 7000, 2537], - [2, 6838, 7005], - "concurrency", - [0, 1107, 1112, 9730, 1480, 1676, 1797, 2179, 2709, 2755, 2984, 3181, 4135, 4290, 4351, 27921, 9731, 4720, 4726], - "bundler", - "amazon", - "toSorted", - [ - 0, 5467, 19438, 691, 9712, 9736, 9737, 5366, 4856, 9417, 9740, 5245, 9741, 9723, 6503, 4874, 9743, 6513, 9746, - 9749, 8610, 1317, 1429, 1431, 1529, 1610, 1177, 1891, 1895, 2675, 2990, 9750, 2899, 3421, 1894, 4172, 4193, - 4474, 4481, 91 - ], - [0, 1890, 200, 1523, 9753, 57, 7058, 6478], - "chromium", - "obj", - "await", - "move", - "unit-mocha", - "symlink-dir", - "persistent", - [2, 11169, 7036], - "terminal", - "coercible", - "ES2016", - [1, 2343, 7013], - [0, 7030, 7032, 7034, 2487], - "identifiers", - "includes", - "swf", - "readable", - "protobuf", - "form-", - "validation", - [2, 7019, 7020], - "RxJS", - "busy", - "fps", - [2, 6965, 1278], - "-0", - "Observable", - "mixins", - "parents", - [0, 688], - "typeof", - [ - 0, 5467, 19438, 9736, 9737, 4856, 6503, 4874, 1429, 1529, 1177, 1891, 1895, 2675, 2990, 2899, 1890, 1894, 4172, - 4474, 91 - ], - "interrupts", - [0, 9760], - "fastcopy", - "brands-svg-icons", - "prune", - [3, 6583, 20], - [2, 7038, 2395], - [2, 7027, 591], - "Microtask", - [2, 3768, 7041], - [1, 2343, 7063], - "es2018", - "circular", - "streams", - "runtime", - "make", - "serializ", - [2, 7049, 5218], - "limit", - "Dispatcher", - [2, 2013, 7052], - "balancing", - [2, 3001, 7054], - "es2016", - "WebSockets", - "args", - "ath", - "jsonpath", - [2, 6796, 1276], - "visual", - [0, 7066, 7068, 7079, 2537], - "positive", - "es-shim", - [0, 7725, 9767, 9771, 9774], - "every", - [0, 9778, 9781, 9783, 9785, 9786, 4874, 7677, 668, 2086, 2070, 3297, 1894, 9794, 91, 4548, 1984], - "trimRight", - "mimetypes", - "handlers", - "ratelimit", - "signals", - "rmdir", - "es8", - "findup", - "stable", - "robust", - [0, 9796, 2195, 4030, 9797], - "superstruct", - ".es6", - [2, 6910, 7081], - "intrinsic", - [3, 6948, 11], - "curl", - "symlinks", - "ES2018", - [1, 2343, 7093], - "writable", - "rapid", - "io-ts", - "weak", - [0, 7095, 0, 7097, 2537], - "throat", - [ - 0, 9804, 9807, 9810, 9811, 9813, 9815, 9819, 9821, 9829, 9834, 9838, 9841, 9843, 9846, 9848, 9849, 9850, 9852, - 9855, 9856, 9858, 9861, 9862, 9864, 9866, 9869, 9871, 9873, 9874, 9875, 9878, 9933, 9935, 9937, 9938, 9940, - 9941, 9945, 9949, 9953, 9955, 9957, 9960, 9964, 9967, 9969, 9971, 9974, 9977, 9979, 9983, 9985, 9986, 9989, - 9991, 9993, 9996, 9998, 10001, 10004, 10006, 10007, 10009, 10013, 10014, 10016, 10019, 10021, 10024, 10026, - 10027, 10030, 10032, 10034, 10037, 10041, 10044, 10047, 10048, 10049, 10051, 10053, 10055, 10058, 7127, 10060, - 10063, 10065, 10066, 10068, 10075, 10077, 10081, 10083, 10084, 6336, 10088, 10092, 10094, 10097, 10102, 10105, - 10107, 10110, 10114, 10117, 10119, 10126, 10128, 28711, 10130, 10131, 10132, 10134, 10135, 10137, 10139, 10142, - 10144, 10145, 10146, 10147, 10149, 10151, 10153, 10156, 10159, 10162, 10163, 10165, 10167, 10170, 10173, 10178, - 10180, 10183, 10186, 10188, 10191, 10193, 10195, 10197, 10198, 33633, 10200, 10201, 10203, 10204, 10206, 10207, - 10208, 33138, 10210, 10213, 10216, 10219, 6339, 10223, 10226, 10228, 10229, 10230, 10231, 10234, 10235, 34233, - 10237, 10239, 10241, 10245, 10247, 10248, 10249, 10250, 10253, 10255, 10260, 10262, 10264, 10267, 10269, 10272, - 10273, 10275, 10276, 10278, 10280, 10283, 10285, 10290, 10291, 10292, 10293, 6348, 6351, 10295, 10300, 10302, - 10304 - ], - "restful", - [0, 188, 8588, 4967, 10307, 4963, 10309, 10310, 10313, 10315], - "deep-clone", - "Rx", - "symlink", - "vpc", - "whatwg", - "typanion", - "Float", - "64Array", - [2, 7104, 7105], - "$.extend", - "Promise", - "Reactive", - "Extensions", - [2, 7109, 7110], - [1, 2343, 7113], - [0, 7118, 7124, 7097, 2523], - "vest", - "from", - "-package", - [2, 3250, 7116], - [0, 28591, 29506, 1473], - "parsing", - "or", - [2, 4358, 7120], - ".inspect", - [2, 614, 7122], - [0, 10321, 4493], - "fromEntries", - [2, 6691, 7125], - [2, 10056, 1631], - "getopt", - "-validation", - [2, 6659, 7129], - "filter", - "Emitter", - [2, 2013, 7132], - "URL", - "fixed-width", - [1, 2343, 7137], - [0, 0, 7138, 7097, 4139], - [0, 48, 53, 87, 2071, 2323, 2332, 2361, 2367, 2450, 10327, 10328, 4039, 4320, 4323, 4361], - [1, 2343, 7140], - [0, 0, 7142, 7097, 4139], - "encryption", - [0, 48, 53, 87, 2323, 2332, 2361, 2450, 4039, 4320, 4323], - [1, 2343, 7154], - "TypedArray", - "isConcatSpreadable", - "StyleSheet", - "create", - "mkdir", - "mkdirs", - "zero", - "sameValueZero", - "linewrap", - "side", - [0, 0, 0, 7156, 2537], - "listeners", - [0, 10337, 10339, 10340, 5122, 5995, 977], - "censor", - "watcher", - "typeerror", - [1, 2343, 7166], - "make dir", - "bound", - "patch", - "in-js", - "css-in-js", - [0, 7173, 0, 7186, 2537], - "deepcopy", - "setPrototypeOf", - "characters", - "pipe", - [2, 6747, 2855], - "Push", - [0, 10347, 10348, 703, 10351, 10353, 10354, 10355, 10357], - "trail", - "cloudtrail", - "awesome", - "sauce", - [2, 7176, 7177], - "banner", - "redux-t", - "oolkit", - [2, 7180, 7181], - "dete", - "rministic", - [2, 7183, 7184], - [0, 10337, 10339, 10340, 5122, 5995, 990, 705], - [1, 2343, 7195], - "extension", - "lazy", - [3, 1705, 10], - [2, 7190, 6877], - "es2017", - "search", - "ES2017", - [0, 7203, 0, 7206, 2523], - "TypeBox", - " in css", - [2, 6436, 7197], - "Streams", - "aws", - "console", - "Reflect.getPrototypeOf", - [0, 10363, 3171, 10367, 10351, 703, 10370, 10373, 706, 711, 10374], - "directory", - [2, 6607, 591], - [0, 10337, 10339, 10340, 5122, 5995, 10376], - [1, 2343, 7216], - "colour", - "nope", - "flag", - [3, 2982, 14], - "syntaxerror", - [3, 3904, 10], - [2, 7213, 1974], - "kinesis", - [0, 7217, 0, 7225, 2537], - [0, 3171, 10382, 10373], - "rm -rf", - "exit-", - "exit-code", - "ES7", - "jsdiff", - "private", - "slot", - [0, 10337, 10339, 10340, 5122, 5995, 10376, 710, 10384], - "sigterm", - "group", - "less.js", - "gdpr", - "east-asian-width", - [3, 6820, 10], - "Int32Array", - "argument", - "compile", - " less", - [2, 7234, 7235], - [1, 2343, 7238], - [0, 7240, 7243, 7246, 2537], - "callbound", - [0, 10389, 1170, 1364, 1437, 2026, 2220, 2222, 2659, 2674, 2817, 1209, 3776, 10397, 38, 13781], - "callback", - "installer", - [ - 0, 48, 53, 87, 10401, 4856, 9417, 6494, 10406, 4870, 6503, 10410, 4874, 10413, 6513, 6512, 24164, 1009, 1011, - 1429, 1431, 10417, 1587, 1177, 1881, 1883, 1895, 1915, 10419, 1938, 1951, 2899, 3297, 3421, 1894, 3752, 4039, - 4193, 4196, 4232, 4494, 91 - ], - "256", - "tostringtag", - [0, 10426, 10427, 5284, 10430, 5472, 10432], - " data", - [2, 7223, 7247], - "uted-types", - [2, 1534, 7249], - "nel", - "channel", - "iterator", - "mapreduce", - [2, 7017, 3101], - [3, 5804, 10], - [1, 2343, 7261], - "less mixins", - [2, 6796, 6859], - "forEach", - [0, 0, 0, 2514, 2399], - "description", - "Symbol", - [1, 2343, 7266], - "generics", - [0, 7267, 0, 7269, 2487], - [0, 3509], - "stdlib", - [0, 6649, 6355, 89, 188, 3709, 1542, 91, 5284, 4967, 5995, 2202, 181, 2130, 38], - "typed array", - [1, 2343, 7273], - "call-bound", - [0, 7274, 7277, 2514, 2537], - [0, 10593, 10594, 10596, 10597, 10600, 10602, 10603, 10604, 10605, 10606, 10608], - "WeakMap", - [2, 6691, 3426], - [0, 4856, 6503, 1429, 1628, 1863, 2297, 2881, 2895, 2897, 2900, 2904, 2899, 4039, 4940, 4307, 4508, 91, 2924], - [1, 2343, 7279], - [0, 0, 7280, 7281, 2537], - [ - 0, 8648, 10614, 816, 10615, 966, 968, 13204, 4874, 10616, 1637, 1177, 28727, 10619, 32765, 10621, 2203, 2832, - 3561, 3566, 1894, 10624, 10627, 3980, 10630, 10632, 4042, 4057, 4076, 4333, 4474, 4484, 4494, 4508, 10633, 4514, - 10636, 10638, 10639, 10643, 30098, 91, 10646, 4614, 32507 - ], - [ - 0, 6653, 7320, 10655, 10650, 10648, 1623, 4964, 9204, 10657, 10656, 1745, 10052, 10667, 1936, 10661, 4374, 3430, - 5284, 10651, 10663, 4386, 10665, 10658, 10654, 10659, 91, 8295, 4270, 28842, 89, 582 - ], - "stateless", - [3, 6670, 11], - [2, 7283, 6647], - "telephone", - "some", - "efficient", - "_.extend", - "wget", - [3, 6594, 18], - "lter", - [2, 7290, 7291], - "remove", - [1, 2343, 7302], - "soft", - "Microsoft", - "styling", - "ie", - "HyBi", - "Int16Array", - "cloudwatch", - [0, 7304, 7306, 2514, 2537], - "css nesting", - [0, 10675], - "mime-db", - [ - 0, 10708, 10703, 10691, 10706, 1178, 10688, 1700, 10677, 1937, 2151, 10697, 2323, 2338, 2384, 2419, 2496, 2508, - 10686, 10678, 3159, 3493, 10683, 10681, 4431, 91, 10687 - ], - [1, 2343, 7312], - "dynamodb", - [2, 6642, 6893], - "phone", - "Int8Array", - [0, 7314, 7321, 7322, 4139], - ".prototype.flags", - [ - 0, 1091, 1758, 4449, 10739, 2070, 2278, 1149, 9892, 10761, 4747, 1177, 4039, 4135, 4072, 4734, 2026, 10752, - 10756, 1290, 1457, 1764, 2720, 1894, 4171, 1513, 10753, 10757, 1389, 10754, 2689, 3160, 3310, 53, 3429, 10760, - 104, 10759, 58, 692, 4228, 10746, 101, 10737, 4005, 4562, 5216, 10748, 87, 10738, 10755, 90, 10721, 1942, 3957, - 68, 10723, 2851, 10744, 4851, 92, 10731, 10734, 10751, 5874, 10728, 5756, 10720, 5818 - ], - [3, 7313, 11], - [2, 7315, 6913], - [2, 7084, 7316], - "access", - "ibility", - [2, 7318, 7319], - [0, 4389, 10763, 4232], - [0, 10765, 4643, 200, 5130, 6400, 10766, 5131, 10768, 5995, 8889, 10769, 10771, 5256, 10772, 7028, 5198], - [1, 2343, 7324], - [0, 0, 7325, 7326, 34352], - [0, 1177, 6059, 10777, 10779, 10780, 10783, 10785, 1613, 1615, 10786, 2151, 2735, 10788, 27921, 33050], - [0, 10791, 5130, 10792, 45, 10793], - [1, 2343, 7328], - [0, 7329, 7330, 7331, 34352], - [0, 3763, 2813, 10800, 10799, 2771], - [ - 0, 2675, 89, 4426, 1177, 4042, 1651, 2924, 1894, 10852, 3824, 4270, 91, 5087, 4874, 4880, 10846, 10858, 3889, - 10855, 10810, 192, 10837, 4883, 3885, 10805, 4057, 10808, 2686, 1959, 1879, 1938, 4073, 10848, 10854, 10828, - 10831, 972, 1895, 1947, 1955, 811, 10851, 10821, 4023, 10817, 10840, 968, 1011, 1961, 10815, 10841, 10811, 816, - 10825, 974, 10827, 4531, 5467, 1883, 10844, 1009, 6068, 10836, 5700 - ], - [0, 89, 4426, 10860, 10863, 10865, 10866, 10867, 10868, 4967], - [1, 2343, 7333], - [0, 7334, 7335, 7337, 2523], - [0, 26364, 5917, 2696, 3875, 3950, 4022], - [ - 0, 5517, 53, 5652, 603, 10874, 10875, 10876, 966, 972, 30788, 974, 10879, 10883, 7729, 10886, 4874, 10887, 4880, - 4883, 4892, 1009, 1011, 1170, 668, 10888, 1177, 1895, 1898, 1935, 1938, 1947, 1955, 1959, 1961, 2151, 2731, - 2832, 2854, 3244, 3310, 1894, 3765, 89, 3824, 4039, 4201, 4484, 4493, 4494, 91, 8550, 8552, 1984, 4747 - ], - "quote", - [0, 3875, 89, 6588, 6081, 6696, 6913, 2696, 2700, 7182], - [1, 2343, 7339], - [0, 7340, 7341, 7342, 2537], - [0, 10895, 10897, 2007, 20378, 10898, 3090, 3530], - [0, 8850, 816, 10902, 10904, 4042, 4227, 4232, 91], - [0, 4042, 1932, 3378, 5260, 10906, 3209], - [1, 2343, 7344], - [0, 7345, 7346, 7347, 2399], - [0, 10895, 5251, 1699, 10912, 814], - [0, 53, 5889, 5583, 811, 8850, 1856, 4042, 4227, 10916], - [0, 4042, 1932, 6778, 3378, 5260], - [1, 2343, 7352], - [2, 7350, 7351], - [3, 818, 9], - "gent-chat", - [0, 7354, 7355, 7356, 2537], - "microdiff", - [ - 0, 1415, 4449, 1594, 1983, 1437, 2205, 3188, 3539, 668, 2026, 10923, 2602, 4213, 1457, 10947, 10925, 10927, - 10929, 2858, 10930, 10931, 10933, 10935, 606, 10936, 10939, 10940, 1030, 10942, 608, 603, 9110 - ], - [ - 0, 10944, 3348, 89, 1177, 4039, 10946, 1984, 1894, 3824, 6520, 91, 9227, 4874, 7819, 2990, 4880, 4892, 3401, - 10949, 6494, 4883, 4131, 4315, 10951, 1959, 1895, 1947, 1955, 1011, 1961, 3708, 10960, 1009, 10964 - ], - [0, 10946, 9134, 6869, 8172, 10966, 8623, 1745], - [1, 2343, 7359], - [2, 819, 6706], - [0, 7360, 7361, 7362, 2523], - [ - 0, 10973, 10981, 10984, 2161, 7610, 7353, 3266, 188, 7349, 10990, 10992, 28910, 11005, 7358, 10975, 10995, 8079, - 29841, 10996, 10978, 7374, 10999, 11003, 28843 - ], - [ - 0, 23531, 8648, 29273, 11016, 5337, 11018, 2611, 2832, 89, 11022, 4383, 1983, 11026, 11033, 1984, 11039, 7387, - 11041, 28988 - ], - [0, 4627, 1745, 3452, 11043, 4386, 8124, 188, 8588], - [1, 2343, 7364], - [0, 7365, 7366, 7367, 2537], - [0, 11049, 7610, 10975, 8079, 7387], - [0, 11051, 6798, 6806, 2078, 1983, 1984, 4745, 818, 11039], - [0, 5592, 1745, 2078, 3452, 8124], - [1, 2343, 7369], - [0, 7370, 7371, 7372, 2537], - [0, 11064, 11065, 11066, 1699, 11071, 11073], - [ - 0, 11075, 11076, 11079, 11080, 11082, 11083, 4856, 6494, 11085, 6503, 1170, 1364, 1414, 1610, 2026, 2633, 2899, - 11086, 3750, 4261, 4474, 91 - ], - [ - 0, 13428, 1388, 11862, 11861, 11857, 8210, 11088, 8214, 27718, 8791, 181, 4967, 1098, 89, 188, 5982, 6969, 1973, - 5472 - ], - [1, 2343, 7376], - [2, 7375, 582], - [3, 11003, 12], - [0, 7377, 7378, 7379, 2399], - [0, 11064, 11065, 11066, 11093, 1699, 11073], - [0, 11075, 6503, 11096, 11105, 11109, 11111, 11112, 1170, 1414, 1610, 2899, 11086, 11113, 4261, 824], - [ - 0, 13428, 1388, 11862, 11861, 11857, 8210, 11088, 8214, 27718, 8791, 181, 4967, 5982, 6969, 1973, 5472, 824, - 11116, 11117 - ], - [1, 2343, 7381], - [0, 7382, 7383, 2514, 2537], - [0, 11124], - [0, 11126, 11130, 11133, 11134, 11138, 668, 2675, 2832, 2990, 2899, 3421, 1894], - [2, 10829, 45], - [1, 2343, 7386], - [0, 7388, 7389, 7390, 2537], - [2, 11004, 23], - [0, 89, 3824, 11143, 602, 7384, 11146, 11151], - [ - 0, 1983, 89, 4451, 3555, 29318, 3824, 16485, 91, 9311, 3975, 4880, 30157, 6271, 7610, 32415, 3120, 10895, 28829, - 3968 - ], - [0, 1739, 1745, 4270, 29043, 10824, 11156, 29045, 1783, 29181, 6718, 25172, 4627, 4963, 89, 188, 1098, 3709, 5926], - [1, 2343, 7392], - [0, 7393, 7394, 7395, 2487], - [ - 0, 11161, 11164, 5145, 11168, 97, 8597, 449, 11172, 452, 456, 11175, 11179, 11182, 11185, 11186, 11188, 1325, - 11189, 1461, 1582, 1673, 11191, 11192, 5561, 11193, 11196, 11197, 11199, 11201, 11202, 11204, 11207, 5060, - 11208, 11210, 11212, 11213, 11216, 11219, 11220, 11221, 11223, 11224, 11225, 11228, 11231, 11233, 3787, 11235, - 11236, 11238, 11240, 11242, 3788, 11244, 11246, 11249, 11251, 3789, 3810, 11253, 11257, 11261, 3906, 11264, - 4426, 4427 - ], - [ - 0, 5076, 53, 11267, 11271, 368, 7948, 11273, 11274, 10875, 11275, 10821, 10825, 10827, 10828, 11277, 11282, - 11285, 10837, 10841, 11288, 966, 968, 972, 974, 11290, 5087, 11292, 11296, 11300, 11301, 4870, 8149, 11303, - 11305, 4880, 11307, 4882, 4883, 11312, 11315, 11317, 11320, 11322, 1009, 1011, 11325, 11331, 11333, 1195, 11335, - 1437, 1448, 1610, 11336, 1789, 11343, 8161, 1177, 1879, 1895, 1915, 1924, 1938, 1939, 1947, 1948, 1959, 1961, - 10851, 1982, 2071, 11345, 2151, 2193, 2070, 2665, 2675, 2686, 2696, 2697, 2720, 2758, 1192, 11347, 2771, 2780, - 2784, 11348, 11350, 2814, 2832, 11356, 5102, 2990, 1209, 11357, 3213, 3445, 1894, 3703, 3717, 3725, 3730, 3763, - 11360, 11362, 11363, 89, 3807, 3817, 3820, 3824, 4934, 11366, 11368, 11371, 11374, 3885, 11377, 11378, 3984, - 3985, 11380, 11382, 11383, 4135, 4183, 4201, 4320, 11384, 11389, 4323, 11396, 11397, 4072, 4474, 4508, 91, - 11400, 4676, 11401, 11405 - ], - [0, 5127, 4627, 4963, 4964, 5130, 4967, 89, 5128, 181], - [1, 2343, 7397], - [0, 7398, 7399, 7400, 2537], - [0, 11413, 11416, 11417, 11420, 11421, 11422, 2161, 1209, 11428, 11434, 4443, 3348], - [0, 549, 4870, 11438, 7819, 1759, 1999, 3400, 3421, 11439, 4469, 11440, 4494, 1984, 4677, 4693], - [0, 11442, 11443, 11445, 11446, 11449, 11448, 11450, 11451, 11452, 11453, 11454], - [2, 11425, 7402], - "-fork", - [2, 12213, 7404], - [3, 12229, 13], - [1, 2343, 7407], - [2, 7408, 594], - [0, 7409, 7399, 7400, 2523], - [3, 7403, 15], - [0, 11413, 11416], - [1, 2343, 7411], - [0, 7412, 7413, 7400, 2537], - [0, 11417, 11420, 11421, 11422, 7401, 2161, 2674, 1209, 11426, 3310, 11428, 11430, 11434, 4443, 3348], - [ - 0, 11436, 4870, 4874, 11438, 7819, 1166, 1759, 3400, 1894, 11439, 4469, 4474, 11440, 4487, 4490, 91, 2924, 4677, - 4693 - ], - [1, 2343, 7415], - [0, 7416, 7417, 7418, 2487], - [0, 2203], - [0, 107, 7844, 11470, 1177, 1895, 1953, 1972, 3709, 91, 4523], - [0, 1177, 1541, 7625, 3709], - [1, 2343, 7420], - [0, 7421, 7422, 7423, 2523], - [0, 26364, 23826, 11477, 1082, 977, 11478, 11479, 2929, 3090, 11480, 11481, 5152, 4200], - [0, 13471, 8648, 840, 11485, 4874, 5162, 11486, 4042, 3709, 4359, 91, 1983, 1984], - [0, 5130, 11489, 3709, 5167, 1983], - [1, 2343, 7425], - [0, 7427, 7428, 7429, 2523], - "location", - [0, 30023, 11501, 1699, 3090, 11497], - [0, 2278, 1983, 3709, 5245], - [0, 11504, 11506, 1983, 3709], - [1, 2343, 7431], - [0, 7432, 7434, 7435, 2523], - [0, 53, 11516, 87, 90, 92, 11518, 11520, 11522], - "routing", - [0, 1195, 3150, 4027, 2924], - [0, 11525, 8221, 89, 2924, 11526], - "redirect", - [1, 2343, 7438], - [0, 7439, 7440, 7441, 2523], - [0, 11533, 11534], - [0, 11536, 28491, 1610, 91], - [0, 11538, 11539, 1172, 91, 9561, 2924, 11540], - [1, 2343, 7443], - [0, 7444, 7445, 7446, 2523], - [0, 1367, 6372], - [ - 0, 2070, 2323, 1192, 2278, 4039, 3561, 1894, 1587, 2504, 4320, 2464, 91, 4874, 1165, 2482, 3678, 4330, 11598, - 11592, 11591, 11595 - ], - [0, 4329, 4963, 5926, 11600, 11601, 6082, 8727, 181, 4967], - [1, 2343, 7448], - [0, 0, 2667, 7449, 2399], - [ - 0, 11608, 11609, 11612, 11613, 190, 11615, 11617, 4967, 91, 5284, 11619, 11622, 11624, 11626, 11627, 11630, - 11631, 11633, 11634, 11636, 11639, 11640, 32767 - ], - [1, 2343, 7451], - [0, 4424, 4429, 4442, 2537], - [1, 2343, 7453], - [0, 7454, 7455, 7456, 34352], - [0, 97, 1562, 4484], - [ - 0, 53, 83, 87, 92, 19181, 442, 8648, 5583, 811, 816, 6373, 10615, 11796, 4874, 1009, 1011, 1208, 1177, 1895, - 11935, 11938, 11940, 11943, 3401, 1894, 4042, 11802, 4172, 11803, 91 - ], - [0, 965, 1936, 11806, 11807, 5284, 11815, 8221, 91], - [1, 2343, 7458], - [0, 7459, 7460, 2514, 2537], - [0, 11821], - [0, 972, 30788, 4880, 4883, 1030, 1597, 3401, 89, 3824, 5564, 7464, 27122], - "pkgroll", - [1, 2343, 7468], - "create-vue", - [2, 7467, 7472], - [2, 7466, 7469], - "create-e", - [3, 11821, 16], - [0, 7459, 7470, 7471, 2523], - "slint-config", - [0, 3709, 4355, 5160, 1972, 11827, 1011, 27122, 840], - [0, 32401, 3766, 3709], - "persist-client-core", - [1, 2343, 7474], - [0, 7475, 7476, 7477, 2537], - [0, 11833], - [0, 11835, 5087, 1009, 11837, 1177, 1886, 11840, 1895, 1955, 1958, 1192, 2780, 2821, 1776, 3165, 4468, 4469, 91], - [0, 11842, 11843, 11846, 11847, 6875, 4967, 5576, 4978], - [1, 2343, 7479], - [0, 7480, 7481, 7482, 2523], - [0, 97, 966], - [0, 1651, 91, 11853, 3400], - [0, 5472, 1651, 181, 965, 11857, 6564, 11861, 11862], - [1, 2343, 7484], - [0, 7485, 7486, 7487, 2537], - [0, 11357, 11869, 3527, 3717, 97, 51, 11868, 11871], - [0, 2832, 91, 11853, 1393, 1423, 11875, 968, 11884, 11879], - [0, 5472, 181, 965, 2832, 2275, 11857, 6564, 11861, 11862], - [1, 2343, 7489], - [0, 7490, 7491, 7492, 2537], - [0, 11891, 11869, 11890, 3527, 63, 11871], - [0, 2832, 2022, 4042, 1984, 91, 11853, 11893, 3717, 11899, 811, 11884, 11896], - [0, 5472, 965, 1192, 2832], - [1, 2343, 7494], - [0, 7495, 7496, 7497, 2399], - [0, 1437, 11891, 2777, 3717, 11907], - [ - 0, 1192, 2675, 89, 1177, 1894, 48, 1527, 91, 53, 5087, 4880, 3720, 3857, 97, 4131, 5091, 3904, 11909, 1652, - 4889, 5085, 5103, 11912 - ], - [0, 5472, 1975, 1192, 3857], - [1, 2343, 7499], - [0, 6263, 7500, 7501, 2523], - [0, 966, 968, 4880, 4883, 1437, 11918, 2777, 11853, 3401, 89, 3824, 4039, 91], - [0, 5472, 89, 181, 965, 2832, 2275, 11857, 6564, 11861, 11862], - [1, 2343, 7503], - [0, 0, 7504, 7505, 2537], - [ - 0, 2742, 2832, 89, 2022, 668, 4474, 11944, 3824, 11890, 91, 11853, 4880, 11875, 11952, 11943, 11931, 11938, - 11929, 966, 11948, 11935, 972, 11933, 11940, 968, 5556, 11925, 6515, 1915, 11924 - ], - [0, 7214, 6627, 89, 5472], - [1, 2343, 7507], - [0, 7508, 0, 7509, 2487], - [0, 10347, 11959, 978, 989, 991, 993, 996], - [0, 11961, 38, 5995, 27, 5130, 5592], - [1, 2343, 7511], - [0, 0, 0, 7512, 34352], - [0, 11961, 10339, 10340, 5122, 5995, 977], - [1, 2343, 7514], - [0, 0, 0, 7515, 2443], - [0, 11961, 10339, 10340, 5122, 5995, 2947, 977], - [1, 2343, 7520], - "fp", - "drag", - "react ", - [0, 7533, 7536, 7537, 2537], - "animation", - [2, 7519, 7521], - "pure", - "fantasy-land", - [2, 4570, 7046], - [3, 5941, 12], - [2, 7526, 1155], - "framer", - [3, 7527, 19], - [2, 7529, 6600], - "pose", - "tacit", - [0, 11974], - "balanced", - "react pose", - [0, 1414, 4494, 2675, 91, 4874, 975, 11976, 192, 11978, 5467], - [0, 11961, 10339, 10340, 5122, 5995], - [1, 2343, 7539], - [0, 0, 0, 7540, 2487], - [0, 11961, 10339, 10340, 5122, 5995, 984], - [1, 2343, 7542], - [0, 0, 0, 7543, 34352], - [0, 11961, 10339, 10340, 5122, 5995, 986, 11988, 10345], - [1, 2343, 7545], - [0, 7546, 0, 7547, 2537], - [0, 987], - [0, 11961, 10339, 10340, 5122, 5995, 988, 2739, 11995, 11996], - [1, 2343, 7549], - [0, 7550, 0, 7551, 2487], - [0, 10347, 12003, 1001, 1003], - [0, 11961, 10339, 10340, 5122, 5995, 990, 705], - [1, 2343, 7553], - [0, 7554, 0, 7555, 2537], - [0, 11974, 3171, 12011, 978, 980, 12016, 991, 997], - [0, 11961, 10339, 10340, 5122, 5995, 10376], - [1, 2343, 7557], - [0, 7558, 0, 7559, 4139], - [0, 11959], - [0, 11961, 10339, 10340, 5122, 5995, 38], - [1, 2343, 7561], - [0, 7562, 0, 7563, 2523], - [0, 3171, 985, 12027], - [0, 11961, 10339, 10340, 5122, 5995, 10376, 710, 10384], - [1, 2343, 7565], - [0, 7566, 0, 7567, 34352], - [0, 3171, 12027], - [0, 11961, 10339, 10340, 5122, 5995, 990, 705, 1000, 5284], - [1, 2343, 7569], - [0, 0, 0, 7570, 2487], - [0, 11961, 10339, 10340, 5122, 5995, 990, 705, 1002, 3634, 3766], - [1, 2343, 7572], - [0, 0, 0, 7573, 2523], - [ - 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, - 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, - 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, - 12094 - ], - [1, 2343, 7575], - [0, 7576, 0, 7577, 34352], - [0, 12099, 12103, 12104, 12105, 4484], - [0, 12108, 7188, 5995, 11100, 6740, 5592], - [1, 2343, 7579], - [0, 7580, 7581, 7586, 2443], - [0, 2687, 5569, 12118, 1012, 12121, 12123, 12124, 5604], - [0, 1091, 3127, 1984, 1894, 12126, 9363, 4880, 3117, 12127, 4555, 8818, 7677, 3137, 12133, 5551, 12137], - [2, 7583, 7584], - [3, 439, 8], - "react/eslint-plugin", - [2, 5557, 26375], - [0, 1177, 6741, 6939, 91], - [1, 2343, 7588], - [0, 7589, 7590, 7591, 2487], - [0, 1676, 5552, 12124, 5604, 12145], - [0, 1984, 7677], - [0, 6892, 5286, 5284, 91, 57, 5341, 1177], - [1, 2343, 7593], - [0, 7596, 7590, 7599, 2523], - "point-free", - "curried", - [0, 5552, 439, 5604, 12145], - "gestures", - "3d", - [0, 1177, 91, 6742], - [1, 2343, 7601], - [0, 7602, 7622, 7626, 4139], - [ - 0, 365, 370, 12159, 1461, 12160, 12163, 1832, 12166, 12170, 2609, 1209, 12172, 3220, 3744, 12173, 11202, 12175, - 11216, 11224, 3787, 3789, 3849, 11374, 3911, 4023, 4163, 4649, 12176 - ], - [3, 346, 11], - "abs-extension", - [2, 7603, 7604], - "cssfilter", - "root-node-polyfill", - [2, 2183, 7607], - "slugger", - [2, 2287, 7609], - "deflist", - [2, 3108, 7611], - [3, 5953, 13], - "eta", - [2, 7613, 7614], - "sup", - [2, 3108, 7616], - [3, 3125, 13], - "rule-", - [2, 7619, 6706], - [2, 7618, 7620], - [ - 0, 48, 53, 61, 71, 83, 85, 87, 90, 92, 192, 5467, 968, 972, 4859, 5540, 4870, 12179, 4880, 4883, 1009, 1011, - 12182, 12184, 1170, 1178, 1193, 1195, 12186, 1210, 12191, 12193, 1527, 12195, 1628, 1652, 1843, 1845, 8160, - 1177, 1959, 1961, 2092, 2151, 2651, 2675, 1192, 12196, 11348, 12198, 2990, 3177, 3222, 3463, 1894, 3786, 89, - 3824, 3895, 3904, 4257, 4307, 4320, 4946, 12201, 12205, 12206, 91, 4537, 4027, 2924, 4676, 4677 - ], - [3, 346, 10], - [2, 7623, 5891], - [3, 1879, 13], - [0, 89, 5128, 4627, 4963, 4967, 12208], - [3, 3703, 9], - [2, 7627, 1541], - [1, 2343, 7649], - "sconfig", - [2, 7603, 7630], - "@types/css", - "ithub-slugger", - [2, 5246, 7633], - [3, 4869, 9], - "-yaml", - [2, 7635, 7636], - "arkdown-it", - [2, 6502, 7638], - "-attrs", - [2, 7639, 7640], - "anitize-html", - [2, 5051, 7642], - [2, 1368, 4406], - [2, 668, 7644], - [3, 5961, 13], - "estgen", - [2, 7646, 7647], - [0, 7652, 0, 7653, 2523], - "yandex", - "yfm", - [ - 0, 1497, 2813, 1209, 3266, 12224, 9355, 12220, 12226, 12233, 12217, 12222, 2626, 12215, 12219, 12232, 12216, - 7406, 7403 - ], - [0, 6108, 6038, 5130, 1936, 12236, 1932, 6106, 12214, 6105], - [1, 2343, 7655], - [0, 7670, 0, 7691, 2523], - "magic-", - "bytes.js", - [2, 7656, 7657], - [3, 347, 11], - [2, 7659, 614], - "discord-", - "api-types", - [2, 7661, 7662], - "@sapphire/snowflake", - [2, 7659, 6910], - [3, 7664, 10], - "async-queue", - [2, 7666, 7667], - "@vladfrangu/async_event_emitter", - [0, 1018, 1025], - "turbo", - [2, 7659, 3888], - [3, 4828, 16], - [2, 7673, 1803], - "@vite", - "st/coverage-v8", - [2, 7675, 7676], - "@favware/cliff-jumper", - "-pretty", - [2, 4525, 7679], - [2, 1876, 7680], - "extract", - "extractor", - [2, 4610, 7683], - [2, 7659, 7684], - "esbuild-", - "plugin-v", - "ersion-injector", - [2, 7687, 7688], - [2, 7686, 7689], - [0, 10039, 12244, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], - "discordapp", - "discordjs", - [1, 2343, 7695], - [0, 7696, 0, 7697, 2537], - [0, 12253], - [0, 1017, 12255, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], - [1, 2343, 7699], - [0, 7670, 0, 7700, 2537], - [0, 6847, 12260, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], - "generated", - [1, 2343, 7703], - [0, 7704, 0, 7705, 4139], - [0, 12265, 1025], - [0, 1022, 12268, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], - [3, 5923, 13], - [2, 4364, 57], - [2, 7706, 7707], - "@aws-sdk/client-s3", - [2, 7623, 5576], - [1, 2343, 7712], - [0, 0, 0, 7732, 2487], - "ranslation", - [2, 3118, 7713], - [2, 7623, 7714], - [3, 7715, 11], - "ermaid-extension", - [2, 7716, 7717], - "openapi-", - [2, 7719, 7188], - [2, 7623, 7720], - "yfm2xliff", - [2, 352, 7722], - [3, 692, 9], - [2, 7724, 364], - [3, 4869, 11], - "-safe", - [2, 2849, 7727], - [2, 7726, 7728], - "@yandex-cloud/nodejs-sdk", - "bem-cn-lite", - [0, 594, 12274, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], - "nanostores", - "threads", - [2, 7734, 4406], - [1, 2343, 7741], - [2, 4807, 1149], - [3, 4856, 10], - "lk", - [2, 7738, 7739], - [0, 7742, 7753, 7754, 2523], - [0, 3763, 1594, 2026, 1000, 1536, 12286, 12285, 12287, 12284, 1032], - "tml-escaper", - [2, 6495, 7743], - "ime-types", - [2, 6502, 7745], - [3, 5055, 9], - "elljs", - [2, 7747, 7748], - "@types/t", - "ar-stream", - [2, 7750, 7751], - [0, 1192, 4135, 4468, 4342, 1193, 91, 53, 9227, 5087, 4874, 12292, 11976, 6494, 12290, 9240, 7806, 7708], - [0, 12294, 4967, 970, 12295, 12296, 5983, 6802], - [2, 12302, 26070], - [1, 2343, 7757], - [0, 7764, 7765, 7766, 2537], - [3, 7639, 15], - [2, 7758, 671], - [3, 7730, 14], - [2, 7760, 7625], - [2, 7760, 7628], - [2, 7760, 2190], - [0, 34690, 12301, 7733, 28314, 7755, 12305, 12307, 28554], - [ - 0, 4481, 4494, 4493, 1983, 2675, 1177, 4039, 12309, 1984, 668, 3561, 23535, 4320, 3350, 3541, 28464, 4201, 4360, - 91, 4874, 2990, 3400, 4880, 29000, 29038, 11976, 30684, 17214, 4328, 33264, 33385, 34203, 4523, 34205, 7677, - 33382, 5517, 5530, 34207, 4323, 12312, 32818, 5535, 12315, 30630, 11396 - ], - [ - 0, 11608, 12318, 12319, 12322, 12324, 12326, 12328, 12329, 12331, 11612, 12334, 12336, 11010, 12337, 12338, 190, - 12339, 4967, 91, 12342, 12346, 12348, 12349, 12350, 11619, 11622, 11624, 12354, 12355, 11640 - ], - [1, 2343, 7768], - [0, 7769, 7770, 7771, 2523], - [0, 1593, 4376, 53, 1393, 3090, 87, 3957, 12361, 5658, 5660, 5778, 5810], - [0, 20378, 1983, 1082, 1531, 3527], - [0, 4967, 1983, 11504, 1028], - [1, 2343, 7773], - [0, 7774, 7775, 7776, 2487], - [0, 53, 12370, 12372, 28465, 10879, 3878], - [0, 30521, 89, 3824, 28865, 1531], - [0, 1172, 27158, 89, 3878, 1983, 11504], - [1, 2343, 7778], - [0, 7779, 7780, 7781, 2523], - [0, 1012, 2071, 4523, 4630], - [0, 5536, 4874, 1177, 1988, 2020, 7461, 1894, 4494, 91, 1984, 188], - [0, 188, 7463, 7465, 1177, 91], - [1, 2343, 7783], - [0, 7784, 7785, 7786, 2399], - [0, 1091, 1092, 12384, 2657, 12385, 3509, 38, 4151, 7707, 5971, 4745], - [0, 2026, 2899, 4255, 4342], - [0, 2026, 3452, 8124, 1745], - [3, 980, 17], - [2, 7787, 57], - "encrypt", - "encrypter", - [2, 1576, 7790], - [2, 3115, 1623], - [2, 2287, 7792], - "greenlock-express", - "memoryst", - [2, 7795, 147], - "minisearch", - "selfsigned", - "sitemap", - "sql.js", - "workerpool", - [1, 2343, 7825], - "ody-parser", - [2, 4853, 7803], - "mpression", - [2, 4860, 7805], - "-session", - [2, 6494, 7807], - "ormidable", - [2, 5537, 7809], - "mpts", - [2, 6508, 7811], - [3, 7643, 9], - [2, 7813, 367], - "ql.js", - [2, 5051, 7815], - "@types/u", - "uid", - "@types/uuid", - "@types/w", - "orkerpool", - [2, 7820, 7821], - "wasm", - [2, 7686, 7823], - [0, 7829, 7830, 7831, 2523], - "razor", - "sqlite", - "aspx", - [ - 0, 12393, 12394, 11275, 842, 12396, 9363, 12397, 12399, 12400, 12403, 1461, 12405, 12406, 1582, 1699, 12409, - 1835, 12412, 12415, 12419, 7610, 12421, 2572, 2579, 2584, 12422, 2613, 2646, 12424, 2822, 3070, 12427, 12429, - 3412, 3547, 9054, 12431, 3725, 3786, 11219, 11240, 3788, 11244, 3789, 3810, 5564, 3846, 12435, 12438, 3963, - 12441, 3978, 12443, 9340, 3988, 3992, 3999, 2278, 7799, 12444, 12445, 4549, 4555, 12447, 1002, 12448, 12449, - 12452 - ], - [ - 0, 192, 5467, 7634, 12455, 12458, 7637, 12459, 4874, 12461, 8149, 4880, 4882, 4883, 12462, 12463, 12467, 1177, - 10321, 2071, 2079, 12471, 12472, 2675, 2990, 1894, 3706, 3708, 89, 3824, 4320, 4474, 91, 1984, 12473, 12475 - ], - [0, 1179, 12445, 2924, 89, 12478, 12479, 1783, 4963, 1745], - [1, 2343, 7835], - "@dnd-kit/core", - [3, 7833, 9], - [0, 0, 7841, 7843, 2537], - "modifiers", - [2, 7834, 7836], - "sortable", - [2, 7834, 7838], - [2, 7834, 6731], - [0, 4874, 1009, 1011, 1177, 1881, 1938, 4039, 4042, 4076, 91], - "ui-components", - [0, 5995, 12586, 12588, 12589, 12590, 12592, 12593], - "@stylistic/eslint-plugin-js", - [3, 7844, 11], - [2, 4324, 1932], - [2, 7845, 7846], - [1, 2343, 7852], - "@wordpress/api-fetch", - [3, 7849, 11], - "block-", - [0, 7853, 7859, 7860, 2537], - [0, 12600], - "ion-", - [2, 7854, 1464], - [2, 7682, 7855], - [2, 5313, 7856], - [2, 7850, 7857], - [ - 0, 53, 5241, 87, 94, 12602, 12604, 6503, 4874, 1145, 1503, 12607, 1177, 2297, 2881, 2886, 2895, 12609, 2897, - 2900, 2910, 2899, 3400, 3421, 3456, 4039, 4042, 4045, 12611, 4055, 4067, 4071, 4075, 12613, 4474, 12614, 91 - ], - [0, 12616, 7102, 2013, 2018, 12617, 12618, 12621, 12622, 12620, 6553, 1858], - [1, 2343, 7864], - [2, 7153, 694], - [2, 5335, 7862], - [0, 7865, 7866, 7867, 2523], - [0, 3173, 12627], - [0, 3421, 2899, 1177, 1693, 1954, 1938, 1958, 1903, 1948, 1970], - [0, 1563, 12631, 8316, 1080], - "promis", - "ify-", - [3, 1455, 13], - [2, 7869, 7870], - [2, 7868, 7871], - "swc-loader", - [1, 2343, 7875], - [0, 7876, 7878, 7879, 2523], - [0, 1149, 1362, 1209, 3230, 1552], - "ol", - [0, 2899, 1429], - [0, 2663, 1081, 5122], - "mixin", - "WordPress", - [1, 2343, 7883], - [0, 7884, 0, 2514, 2399], - [0, 1082], - [1, 2343, 7886], - [0, 7896, 7898, 7899, 4139], - [3, 4872, 15], - "amelcase", - [2, 7887, 7888], - [3, 7746, 9], - "nimist", - [2, 7890, 7891], - [3, 5090, 9], - "etty-ms", - [2, 7893, 7894], - [0, 1170, 1437, 1525, 2088, 2151, 2720, 3467, 7956, 4183], - ".d.ts", - [0, 811, 8850, 816, 10615, 12654, 4864, 12656, 4866, 4874, 4039, 4042, 8849, 11054, 4076, 12206, 4484, 4487, 91], - [0, 200, 1085, 188, 89, 12659, 12660, 91, 6710], - "definitions", - [1, 2343, 7902], - [0, 0, 7903, 7904, 2537], - [0, 1429, 2685, 2899, 1894, 4039], - [0, 2056, 3164, 12666, 4560], - [2, 363, 3428], - "memoize", - [2, 363, 7906], - [3, 370, 10], - "erialize", - [2, 7908, 7909], - [3, 1212, 14], - "acros", - [2, 7911, 7912], - "root", - "find-root", - [1, 2343, 7918], - "stylis", - [0, 0, 7923, 7924, 2523], - [3, 5272, 14], - "d-nodes", - [2, 7919, 7920], - [2, 1174, 7921], - [0, 2899], - [0, 12674, 1087, 2124, 12619, 12675], - [1, 2343, 7926], - [0, 7927, 7928, 7929, 4139], - [0, 12680, 12681, 1676, 12685, 5303], - [0, 5245, 12688, 6501, 4874, 7677, 4193, 4474, 4494, 1984], - [0, 12692, 12693, 1605, 12694, 4116, 8791], - [1, 2343, 7934], - [2, 366, 6990], - [2, 7908, 5375], - [2, 363, 594], - [0, 7936, 7938, 7939, 2487], - "@definitelytyped/dtslint", - [ - 0, 43, 46, 1093, 1116, 1132, 1140, 1298, 1316, 1318, 1321, 1322, 1336, 1339, 1342, 12701, 1344, 1346, 1348, - 1350, 1352, 12703, 1354, 1356, 1358, 12704, 1376, 1386, 1402, 1425, 1428, 12705, 1440, 1450, 12708, 12709, - 12710, 12711, 12714, 1663, 1706, 1711, 1715, 2019, 12715, 12719, 2058, 2059, 2177, 2217, 12720, 2563, 2567, - 2605, 2606, 12722, 2723, 2950, 2954, 2957, 12726, 2962, 3086, 3099, 12730, 3134, 12733, 3186, 3240, 3245, 3262, - 3295, 3439, 12736, 3443, 3472, 3535, 3558, 12737, 3777, 3931, 12740, 4105, 4124, 12743, 12747, 4168, 4173, 4177, - 4192, 4206, 4235, 12749, 4236, 4258, 12750, 4267, 4338, 12755, 4347, 4352, 4370, 4433, 4456, 4461, 12756, 12757, - 12760, 4548, 12763, 12764, 4724 - ], - "import-cwd", - [0, 4880, 4883, 2079, 89, 3824, 91], - [0, 4627, 4963, 4964, 5130, 4967, 89, 5128, 181, 4653], - "is-pro", - "p-valid", - [2, 7940, 7941], - [2, 363, 7942], - [3, 7933, 10], - "se-insertion-effect-with-fallbacks", - [2, 7944, 7945], - [1, 2343, 7949], - [2, 363, 89], - [0, 7950, 7951, 7952, 2537], - [ - 0, 12771, 12773, 12775, 1389, 12776, 1536, 1676, 12777, 12779, 2026, 12783, 12785, 2659, 12788, 2822, 12789, - 12792, 12793, 3183, 12795, 12799, 12802, 3923, 12809, 4153, 4165, 12812, 12814, 12818, 3348, 4650 - ], - [0, 12820, 1610, 2554, 3421, 12823, 4255, 4389, 4400], - [0, 1090, 1388, 12826, 4384, 4389, 5472], - [1, 2343, 7954], - [0, 7955, 7958, 7959, 2523], - [0, 2069, 12832, 12834, 12837], - [2, 17912, 7957], - "estimator", - [ - 0, 12839, 811, 8850, 816, 10817, 4856, 6503, 4874, 12842, 1009, 1011, 1092, 1389, 1429, 1610, 1673, 12846, 1177, - 1895, 2070, 2675, 12847, 2806, 2820, 12848, 2297, 2881, 2900, 2990, 2899, 12849, 3310, 3421, 1894, 12850, 4042, - 4073, 4474, 12851, 91, 12852 - ], - [0, 6671, 2844, 1155, 7020, 2860, 2845, 7527, 7530], - [1, 2343, 7961], - [0, 7962, 7963, 7964, 2537], - [0, 1091], - [0, 12839, 5087, 4874, 1009, 1011, 1091, 1177, 1895, 2675, 1192, 12848, 2990, 1894, 4468, 91], - [0, 12860, 6975, 1671, 7020], - [1, 2343, 7966], - [0, 7967, 7938, 7939, 2399], - [0, 43, 46, 1450, 3777, 4548], - [1, 2343, 7969], - [0, 6203, 7970, 7971, 2487], - [0, 3460, 12870], - [0, 1094], - [1, 2343, 7973], - [0, 7974, 7975, 7976, 2537], - [0, 12879, 4567], - [0, 12882, 2899, 3421, 4535], - [0, 12884, 12886, 12887], - [1, 2343, 7978], - [0, 0, 7979, 7980, 2487], - [0, 2278], - [0, 1623, 2278, 181, 6398, 6400, 2869, 12893], - [1, 2343, 7982], - [0, 0, 0, 7983, 2523], - [0, 1098, 5130, 1388, 12899], - [1, 2343, 7985], - [0, 0, 0, 7986, 2523], - [0, 1098, 5130, 1388, 7521, 12899], - [1, 2343, 7988], - [0, 7989, 0, 7990, 2523], - [ - 0, 12910, 12914, 19, 21, 24, 12915, 12917, 1149, 1165, 1437, 1532, 1628, 1637, 1676, 12918, 1687, 12923, 12925, - 12926, 2054, 2092, 7076, 2151, 12929, 2070, 2651, 2712, 2720, 12930, 2843, 2921, 2925, 695, 2969, 1209, 3181, - 12935, 3342, 3368, 3459, 3467, 3560, 3618, 3786, 3981, 814, 4039, 4085, 4111, 12936, 4135, 12937, 4230, 12944, - 4307, 4333, 4334, 1241, 4430, 91, 4027, 4648, 2924, 4681, 4689, 4695, 4769 - ], - [0, 1098, 1102], - [1, 2343, 7993], - [2, 27465, 3469], - [0, 0, 0, 7994, 2537], - [0, 12074, 29, 1388, 12899, 5027, 12951, 4963], - "blurup", - [1, 2343, 34387], - [0, 6323, 2398, 12956, 2899, 4425], - [ - 0, 7244, 1111, 12958, 12959, 12961, 12963, 12964, 12965, 12966, 12967, 12968, 12969, 12970, 12971, 12972, 12973, - 12974, 12975, 12976, 4984, 12977, 200, 12978, 1473, 1512, 7208, 9753, 6876, 7201, 12979, 12980, 6983, 12981, - 12982, 12983, 12984, 12986, 12987, 2929, 3073, 6807, 12990, 12991, 10958, 6616, 4166, 12992, 12994, 1871, 590, - 592, 7009, 2585, 6621, 12996, 12997, 4744, 12998 - ], - [1, 2343, 8000], - [0, 8001, 8002, 8003, 2487], - [0, 6639], - [0, 4874, 1166, 4481, 1906], - [ - 0, 1111, 7009, 7201, 200, 1871, 6621, 1867, 1106, 6983, 4166, 4744, 3073, 6807, 6876, 2585, 13005, 6769, 12619, - 1501, 5281, 13006, 8628, 13007, 1468, 13008, 13009, 13011 - ], - [1, 2343, 8005], - [0, 0, 8006, 8007, 2399], - [0, 1906, 1166, 4481, 1107], - [ - 0, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 1871, 6621, 1867, 6983, 6616, 7244, 4166, 4744, 6876, 2585, - 1108, 6961, 23, 3529, 1973, 2100, 13017 - ], - [1, 2343, 8009], - [0, 0, 8010, 8011, 2523], - [0, 1906, 1166, 4481, 13024], - [ - 0, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 1871, 6621, 1867, 6983, 6616, 7244, 4166, 4744, 3073, 6807, - 6876, 2585 - ], - [1, 2343, 8013], - [0, 0, 0, 8014, 2487], - [0, 1111, 1512, 200], - [1, 2343, 8016], - [0, 8017, 8018, 8019, 2443], - [ - 0, 11161, 13035, 97, 8597, 7905, 13037, 13038, 13042, 1156, 1639, 1673, 13045, 13047, 1209, 3021, 4023, 11264, - 1849, 7917, 4427, 13049, 4649 - ], - [ - 0, 48, 53, 61, 73, 76, 78, 13051, 81, 5806, 13052, 5835, 83, 5853, 5889, 85, 87, 92, 192, 5467, 692, 5583, 7806, - 4864, 5087, 13055, 5139, 13057, 7639, 4874, 13059, 1009, 1011, 1028, 11016, 13061, 13063, 13067, 13069, 1031, - 11018, 13072, 10984, 13077, 1082, 13078, 1165, 1170, 1178, 1193, 1195, 1205, 13080, 1208, 13085, 1426, 1437, - 1448, 1503, 12405, 13086, 1525, 13088, 1610, 1628, 1630, 13089, 1668, 13090, 13092, 11343, 13093, 668, 8161, - 1869, 1177, 1895, 1937, 1938, 1939, 1948, 13097, 1955, 1988, 2071, 11345, 2151, 2070, 2205, 2226, 2323, 2338, - 13099, 2529, 2651, 2675, 13101, 13103, 1192, 2780, 2784, 13105, 13108, 2817, 13110, 4868, 695, 2969, 13115, - 13118, 2990, 13119, 3105, 3107, 3112, 3114, 13122, 3127, 13123, 3177, 3183, 3188, 3213, 3220, 3412, 3561, 3618, - 1894, 3720, 3725, 3730, 3786, 9340, 3992, 13124, 13127, 8304, 13128, 4039, 13129, 13131, 4135, 4207, 13134, - 4307, 4320, 11384, 11389, 4323, 11396, 4328, 4409, 4431, 4443, 4468, 4469, 4494, 4508, 91, 13135, 4549, 4027, - 11400, 1983, 188, 13138, 13142, 4630, 4633, 13145, 4634, 13149, 4639, 4640, 13151, 4646, 2924, 4676, 4677, 4681, - 4689, 13152, 11401 - ], - [0, 188, 8588, 5127, 4964, 1114, 13154, 4627, 4963, 181, 5130, 4967], - [1, 2343, 8021], - [0, 8022, 8023, 7395, 2537], - [ - 0, 1497, 1673, 97, 5145, 4427, 11161, 7992, 27467, 33386, 33387, 11185, 33389, 33393, 11164, 33396, 33397, - 33399, 33401, 33403, 33404, 33406, 33417, 13166, 33418, 33422, 33423, 33424, 33426, 13169, 8048, 33428, 33430, - 33431, 33433, 33436, 33441, 33443, 11168, 33444, 33447, 13159, 33449, 13162, 33450, 33451, 11264, 13165, 33452 - ], - [ - 0, 1091, 3467, 26713, 4390, 4494, 1789, 2070, 1192, 3445, 1170, 1437, 11336, 2675, 2696, 2742, 2832, 13233, - 3549, 89, 4164, 1759, 1177, 2079, 2814, 1209, 3984, 4039, 13241, 4135, 1086, 13078, 25131, 3725, 4508, 2924, - 1634, 2151, 2193, 11347, 3183, 3213, 1894, 13243, 11401, 1610, 16473, 2071, 5102, 11357, 3758, 11360, 3824, - 13214, 13215, 3310, 3560, 3985, 3988, 4183, 4201, 91, 5087, 4874, 12424, 2665, 2990, 3839, 11380, 368, 13204, - 13210, 4880, 13223, 33230, 11362, 13245, 33461, 7833, 692, 11301, 4870, 5254, 11325, 3330, 3717, 13235, 3999, - 11976, 7948, 27424, 13194, 13196, 11290, 8149, 11322, 7610, 11350, 27047, 11273, 11275, 16934, 4864, 11292, - 7892, 6510, 13213, 4934, 10875, 13205, 4883, 2758, 2771, 13232, 3885, 11377, 3978, 5076, 33233, 7839, 8998, - 29467, 7837, 7840, 643, 13200, 1939, 2686, 11366, 11400, 13198, 2584, 11348, 25366, 966, 11331, 1924, 2784, - 11368, 13175, 972, 1947, 2780, 13182, 13203, 13228, 11356, 4676, 11320, 3749, 13192, 968, 1961, 33635, 11300, - 13221, 13187, 7582, 974, 7585, 13178, 11312, 26969, 11382, 11371, 11296, 13188, 11274, 13240, 13189 - ], - [1, 2343, 8025], - [0, 8026, 0, 2514, 2523], - [0, 3445], - [1, 2343, 8028], - [0, 8029, 7938, 7939, 2537], - [ - 0, 43, 46, 1093, 1132, 1140, 1298, 1316, 1318, 1321, 1322, 1336, 1339, 1342, 1344, 1346, 1348, 1350, 12704, - 1376, 1386, 1425, 1428, 1440, 1450, 12709, 12714, 1663, 1706, 1711, 1715, 2019, 12719, 2177, 2217, 12720, 2563, - 2567, 2606, 12722, 2950, 2954, 2957, 2962, 3086, 3099, 3134, 3186, 3240, 3245, 3262, 3295, 3439, 12736, 3443, - 3472, 3535, 3558, 12737, 3777, 4124, 12747, 4173, 4177, 4192, 4206, 4235, 12749, 4236, 4258, 4267, 4338, 12755, - 4347, 4352, 4370, 4433, 4456, 4461, 12756, 12757, 12760, 4548, 12763, 12764 - ], - [1, 2343, 8031], - [0, 8032, 8033, 8034, 34352], - [0, 5381, 5383, 5446, 5394, 5408, 13261, 13262, 5458, 5461, 32772, 13264, 13267, 13272, 2993, 5438], - [ - 0, 5400, 5402, 5405, 13276, 5453, 5456, 192, 5467, 13280, 5470, 5473, 13282, 5474, 5476, 5478, 13286, 13287, - 1364, 1699, 1177, 1895, 1999, 2026, 2151, 2675, 2822, 2990, 3246, 3300, 3561, 4039, 4042, 13289, 10854, 4193, - 4449, 91, 5480, 4535, 13291, 3348 - ], - [0, 5926, 13293, 5592, 1117, 1745, 13294, 3422], - [1, 2343, 8036], - [0, 8037, 8038, 8039, 2537], - [ - 0, 1367, 1525, 13302, 8161, 13304, 2151, 2070, 2036, 2685, 2814, 13305, 1209, 3105, 3363, 3725, 4135, 4307, - 2924, 4677, 4709 - ], - [0, 4870, 6503, 4874, 1177, 13311, 1903, 1938, 1954, 1958, 2899], - [0, 5592, 1118, 2295, 1745, 4030, 7096], - [1, 2343, 8041], - [0, 8042, 8043, 8044, 2537], - [0, 13319, 1797, 4135, 4562, 4747], - [0, 9741, 4874, 5254, 4892, 1166, 2151, 91], - [0, 1118, 1783, 13322, 5592, 2295, 1745, 1179, 13325, 200, 13326, 6876, 4030, 7096, 13327, 13328], - [1, 2343, 8046], - [0, 8047, 8049, 8050, 2523], - [0, 1676, 13333, 3313, 2863, 4593], - [2, 41, 27443], - [0, 1429, 1431, 2899, 4193, 4196], - [0, 13336, 6645, 13338, 13339, 13340, 586], - [1, 2343, 8052], - [0, 8053, 0, 2514, 2537], - [0, 13345, 13346, 5506, 5514, 4484], - [1, 2343, 8055], - [0, 8056, 0, 8057, 4139], - [0, 13352, 13345, 1127, 13346, 5513, 5514, 4484, 13351], - [0, 5286, 6778, 13354, 5284, 13356, 3378, 89], - [1, 2343, 8059], - [0, 8060, 8061, 2514, 2487], - [0, 13346, 5514, 4484, 5515], - [0, 13364, 5087, 4874, 2220, 2222, 1192, 4039, 4042, 4468, 4487, 91], - [1, 2343, 8063], - [0, 8064, 8065, 2514, 2487], - [0, 1127, 13370, 4484], - [0, 13364, 5087, 13372, 2086, 2220, 2222, 1192, 13374, 4039, 4042, 4468, 4487, 91], - [1, 2343, 8067], - [0, 0, 8068, 8069, 2523], - [0, 1503, 1596, 13379, 1652, 2194, 2759, 2899, 3202, 3215, 3421, 4131, 4585], - [0, 7914, 3403, 6435, 614, 202, 1237, 5260, 13382, 3209, 1896], - [1, 2343, 8071], - [0, 8072, 8073, 8074, 2537], - [0, 13387, 13388, 13390, 13394, 13395, 1170, 1362, 13396, 1209, 3084, 3220, 3222, 13399, 4135, 13400, 4729], - [ - 0, 13406, 13411, 13412, 6061, 6063, 13414, 4870, 6503, 4874, 13417, 5254, 9241, 10780, 1429, 1431, 1570, 2899, - 1894, 4131, 4193, 4474, 91, 4739 - ], - [0, 13426, 12296, 5472, 13428, 5131, 13429], - [1, 2343, 8076], - [0, 8077, 8078, 8080, 2399], - [ - 0, 13446, 13437, 13512, 13471, 13508, 13476, 9637, 13474, 13497, 13495, 13500, 13454, 13502, 13504, 13510, - 13493, 13507, 13456, 13479, 13488, 13484, 30243, 13467 - ], - [0, 3421, 3297, 2899, 4193, 1177, 1894, 91, 13514, 4874, 6503, 6513, 5254, 1954, 1011, 13518, 1009], - [2, 8182, 553], - [0, 13524, 13525, 13526, 13529, 13530, 13531, 6599, 13532, 13535, 13538, 13539], - [1, 2343, 8082], - [0, 8083, 8084, 8085, 2523], - [0, 13547, 13551, 13554, 13558, 13559, 13560], - [ - 0, 13564, 5087, 4874, 1009, 1011, 13566, 1177, 1895, 1915, 1938, 1955, 2220, 1192, 1894, 13568, 3706, 13569, - 4257, 4468, 4474, 91 - ], - [0, 13571, 7200, 5995, 13572, 2220, 13573, 6710, 91, 13574], - [1, 2343, 8087], - [0, 8088, 8089, 8090, 2537], - [0, 13579, 1149, 13581, 3923, 13583, 4393, 13584], - [0, 13590, 1429, 1776, 3188, 2899, 4039, 13591, 4390, 4753], - [0, 12666, 1137, 3101, 2056, 4390], - [1, 2343, 8092], - [0, 0, 8093, 2514, 4139], - [0, 1429, 1192, 1894], - [3, 439, 25], - "mysticatea", - [2, 1186, 8095], - [2, 8094, 8096], - "dot-prop", - "warun", - [1, 2343, 8101], - [0, 0, 8102, 8103, 2399], - [0, 68, 5704, 1177, 2899, 3421], - [0, 200, 57, 1139, 5675, 7058], - [1, 2343, 8105], - [0, 7967, 7938, 7939, 2487], - [1, 2343, 8107], - [0, 8108, 8120, 8121, 2487], - [0, 1417, 13609, 6830, 13611], - "ly-openapi-core", - [2, 443, 8109], - "decko", - "pointer", - [2, 2842, 8112], - "mark.js", - "sampler", - [2, 7719, 8115], - "perfe", - "ct-scrollbar", - [2, 8117, 8118], - [0, 13613, 13614, 1159, 9254, 1177, 2011, 2133, 13619, 2708, 3410, 3421, 3431, 4103, 4389], - [0, 6583, 6727, 4552, 6759, 1858, 6422, 3033, 7039, 6763], - "react-tabs", - "stickyfill", - "swagger", - "2openapi", - [2, 8124, 8125], - [2, 4564, 1283], - [1, 2343, 8133], - "@cypress/webpack-preprocessor", - "@hot-loader/react-dom", - [3, 5535, 19], - [2, 8131, 1896], - [0, 0, 8134, 8142, 2487], - [0, 1166, 4481, 1906], - "ompurify", - [2, 6491, 8135], - "-to-", - "-to-json", - [2, 4863, 8138], - [3, 7729, 12], - [2, 8140, 8112], - [0, 4552, 1144, 13625, 6270, 6692, 13626], - [1, 2343, 8164], - "@types/lunr", - [3, 7639, 11], - [2, 8145, 1722], - [2, 8145, 1360], - "ismjs", - [2, 7893, 8148], - [3, 4890, 12], - "d-components", - [2, 8150, 8151], - [3, 7752, 9], - "pable", - [2, 8153, 8154], - "-env", - [2, 4891, 8156], - "@wojtekmaj/enzyme-adapter-react-17", - "to-json", - [2, 1848, 8159], - [2, 7686, 1194], - "-checker", - [2, 4059, 8162], - [0, 8167, 8176, 8177, 2523], - "lodash.noop", - "unfetch", - [0, 614, 13633, 1417, 13635, 3435], - "OpenAPI", - " Specification", - [2, 8168, 8169], - "Swagger", - "API", - "REST", - "React", - "React.js", - [0, 4389, 1090, 1593, 1610, 48, 13638, 53, 3438, 87, 5619], - [0, 1145, 1388], - [1, 2343, 8179], - [0, 0, 8188, 2514, 2537], - [3, 444, 13], - [2, 8180, 965], - [3, 10975, 16], - "use-", - [3, 2758, 11], - "layout-effect", - [2, 8184, 8185], - [2, 8183, 8186], - [0, 4389, 2080], - "tip", - "tooltip", - "popover", - "popup", - "position", - "positioning", - [1, 2343, 8196], - [0, 8197, 8198, 8200, 2537], - [0, 1690, 13648, 13651, 3431, 13652, 13653], - [0, 1389, 2759, 2899, 3697], - "fontsource", - [0, 1145, 6468, 6637, 1148, 5982, 2022, 2025, 4170, 13656, 4386, 6969, 1973, 5472, 6533, 13657, 2275], - "font family", - " fonts", - [2, 1885, 8202], - "Inter", - "face", - "typeface", - [1, 2343, 8208], - [0, 0, 8209, 8212, 2537], - [ - 0, 3421, 1429, 4085, 1776, 2297, 2899, 4747, 1177, 4042, 4135, 1448, 1290, 1362, 2151, 1317, 1389, 53, 1863, - 2900, 13662, 1280, 2871, 13674, 1267, 13665, 13672, 68, 2904, 1208, 2912, 2895, 13668, 4067, 1198, 13663, 1240 - ], - "serenity", - "Roboto", - [0, 1149, 7241, 1237, 6435], - [1, 2343, 8215], - "screenplay", - [0, 0, 8219, 8222, 34352], - "common-t", - [2, 8216, 103], - [2, 6057, 8217], - [0, 4874, 13680, 4384, 4474, 91], - "fontawesome", - "svg", - [0, 1149, 7003, 5194, 27, 13682, 11995, 1862, 36], - [1, 2343, 8224], - [0, 8225, 8226, 2514, 2537], - [0, 1153], - [0, 1166, 1177, 1894, 3310, 3697, 13688, 2990, 1959, 1879, 1938, 1895, 1947], - [1, 2343, 8228], - [0, 0, 8230, 8233, 2537], - [2, 79, 1202], - [0, 53, 13693, 87, 92, 13694, 5087, 1193, 1596, 1192, 2990, 3377, 13695, 13698, 3697, 1894, 4474, 91], - "stage-3", - [2, 88, 8231], - [0, 1155, 2649, 1149], - [1, 2343, 8235], - [0, 0, 0, 8236, 2523], - [0, 1157, 1388], - [1, 2343, 8238], - [0, 8239, 8240, 8241, 2487], - [0, 4449, 1512, 13709, 4135, 13711, 13712, 13713], - [0, 3421, 4389, 1177, 3410, 1159, 4103, 13614], - [0, 13716, 6698, 6950, 3378, 13716], - [1, 2343, 8246], - [3, 361, 10], - "rebuild", - [2, 8243, 8244], - [0, 8247, 8249, 8257, 2487], - [0, 1525, 2036, 7937, 3310, 13723, 4135], - "node-abi", - [0, 53, 94, 1208, 13725, 1429, 1503, 1610, 3125, 2899, 3421, 4216, 4255], - [3, 361, 9], - "-forge/cli", - [2, 8250, 8251], - "devtools", - "-installer", - [2, 8253, 8254], - [2, 1807, 8255], - [0, 1163, 13728, 13729, 1444, 3073, 1179, 3358, 1528, 13730, 2602], - [1, 2343, 8259], - [0, 8260, 8261, 8265, 2523], - [0, 1457, 1512, 13736, 13738, 2070, 10911, 3074, 3467, 9478, 705, 13739, 4747], - [0, 1173, 1267, 1429, 1177, 1879, 1938, 1947, 1959, 2899], - [2, 4364, 4622], - [2, 458, 8262], - [2, 7726, 2862], - [0, 1163, 4796, 1161, 3383, 2282], - [1, 2343, 8267], - [0, 8268, 0, 8269, 2399], - [0, 1393, 1423, 13746, 3527, 3688], - [0, 1165, 1623, 3665, 3561, 6425], - [1, 2343, 8274], - [2, 466, 2220], - [2, 466, 2942], - [2, 466, 594], - [0, 8276, 8279, 8280, 4139], - [2, 466, 553], - [ - 0, 13753, 1082, 1084, 1110, 13754, 1144, 13757, 13758, 1437, 13759, 1458, 13760, 1486, 13763, 13765, 13767, - 13770, 1676, 13772, 2089, 2205, 13775, 2709, 2747, 2752, 13777, 7906, 3242, 3478, 13778, 3530, 3545, 3718, - 13780, 13781, 13784, 13786, 4728, 4747 - ], - [2, 5559, 2844], - [2, 5559, 1783], - [0, 11436, 13789, 4874, 1107, 1414, 2020, 2022, 4193, 4384, 4400, 4481, 91, 1906, 13351], - [ - 0, 13791, 1973, 8791, 5472, 1166, 13792, 12804, 2062, 6969, 13326, 200, 1192, 2899, 4389, 4384, 2907, 2765, - 1145, 6468, 1862, 6567, 1149, 3046, 7003, 1179, 5701, 13793, 13795, 13796, 2275, 8745, 2022, 91 - ], - [1, 2343, 8282], - [0, 8283, 8287, 8288, 2537], - [0, 1437, 1835, 3008, 1209, 3170, 3188, 4232, 13802], - "/types", - [2, 3940, 8284], - [2, 6369, 8285], - [ - 0, 4856, 4870, 8778, 6503, 4874, 7749, 6513, 4891, 1362, 1429, 13804, 2151, 2675, 2990, 2899, 1894, 13805, 4039, - 4167, 4257, 1241, 4487, 91, 2924, 4677 - ], - [0, 2924, 1194, 11526, 91], - [1, 2343, 8290], - [0, 8291, 8305, 8307, 2523], - [0, 4113, 1002, 614, 3348, 1398, 2018, 4734, 13811, 13812, 3767], - "@tailwindcss/aspect-ratio", - [3, 8292, 13], - [2, 8293, 25], - "typography", - [2, 8293, 8295], - "basename", - "manage", - "r-webpack-plugin", - [2, 8298, 8299], - [2, 2090, 8300], - "remove-", - [2, 1586, 4408], - [2, 8302, 8303], - [ - 0, 1429, 2297, 2899, 1177, 1503, 2765, 2924, 1649, 4535, 1389, 91, 4874, 2843, 1509, 2766, 2898, 13817, 13818, - 2881 - ], - "sass-lint", - [ - 0, 5592, 6997, 7200, 6850, 6779, 6949, 6930, 6810, 6808, 6979, 6871, 6991, 6835, 7024, 6602, 7301, 7308, 6619, - 7016, 6665, 6572, 6629, 7055, 6709, 7254, 6814, 6832, 6976, 6740, 7101, 6963, 6933, 7215, 7175, 6817 - ], - [3, 6566, 9], - [2, 8308, 3855], - "boilerplate", - [1, 2343, 8312], - [0, 0, 8313, 8314, 2537], - [ - 0, 1429, 2070, 1437, 1496, 2020, 2228, 2675, 1776, 2832, 2297, 2899, 4193, 1177, 2814, 1593, 668, 2203, 3471, - 2720, 13824, 1894, 4535, 13825, 11869, 13827, 2878, 7231, 91, 53, 4874, 13829, 1863, 13831, 2665, 2900, 2918, - 2990, 3400, 13832, 13833, 2626, 3330, 5561, 13834, 13836, 4257, 13837, 87, 13838, 2897, 4130, 13839, 2247, 2283, - 2923, 2253, 2281, 13842, 2881, 4261, 5663, 1895, 2895, 13848, 13850, 78 - ], - [0, 13852, 6653, 5472, 2275, 6969, 5982, 11346], - "@hapi/", - "accept", - [2, 8315, 8316], - [1, 2343, 8319], - [0, 8331, 8332, 8334, 2537], - "@hapi/ammo", - "@hapi/boom", - "@hapi/bo", - "unce", - [2, 8322, 8323], - "@hapi/call", - "@hapi/ca", - "tbox", - [2, 8326, 8327], - "-memory", - [2, 8328, 8329], - [0, 2139, 13860, 2131], - [ - 0, 1414, 2323, 1437, 2675, 2297, 2899, 4193, 1177, 3246, 3483, 4042, 2026, 13868, 2151, 13824, 3183, 1596, 1610, - 2141, 2188, 2036, 7798, 4393, 91, 53, 1364, 1863, 2918, 2766, 3714, 13870, 2898, 1159, 192, 13880, 87, 13873, - 8850, 8862, 5583, 2915, 4073, 13882, 2881, 2912, 2895, 2921, 811, 13867, 2910, 13879, 13866, 816, 13875, 13871, - 5467 - ], - "@hapi/heavy", - [0, 4731, 27, 6662, 1862, 202, 1388, 1612, 4030, 5592, 5576], - "@hapi/hoek", - "mimos", - "@hapi/mimos", - "podium", - [2, 8315, 8338], - "shot", - "@hapi/shot", - "@hapi/s", - "omever", - [2, 8342, 8343], - "tatehood", - [2, 8342, 8345], - "ubtext", - [2, 8342, 8347], - "teamwork", - [2, 8315, 8349], - [1, 2343, 8352], - [0, 8355, 8356, 8365, 2537], - "@hapi/topo", - [2, 8315, 2649], - [0, 13889, 2051, 13891, 13892, 3923, 705, 4545, 3348, 1155, 4734, 4736, 2845], - [ - 0, 13894, 1389, 1596, 13895, 2228, 2296, 13896, 2759, 2297, 2881, 2891, 13899, 2895, 2897, 2900, 2904, 2899, - 3202, 3297, 4170, 4535, 4650 - ], - "@hapi/code", - "@hapi/inert", - "@hapi/lab", - "@hapi/v", - "ision", - [2, 8360, 8361], - "wreck", - "@hapi/wreck", - [0, 202, 13531, 13901], - [1, 2343, 8367], - [0, 8368, 8369, 3182, 2537], - [0, 1175, 1257, 1280, 1282, 1525, 1573, 5175, 2070, 1209, 13913, 3507, 4207, 4227, 13914, 1457], - [0, 1184], - [1, 2343, 8371], - [0, 8372, 8373, 3272, 34352], - [ - 0, 13922, 1180, 13924, 13928, 1280, 1282, 1284, 1287, 1288, 1291, 1573, 1676, 2856, 1209, 3181, 3507, 7223, - 4207, 4227 - ], - [0, 1184, 13930, 1257], - [1, 2343, 8375], - [0, 8376, 8377, 2514, 2523], - [0, 814, 104, 58, 101, 51, 1996], - [0, 2675, 2899, 1680, 1177, 2000, 1894, 2990, 1178, 13936, 1938, 1935, 1955], - [1, 2343, 8379], - [0, 8380, 8381, 2514, 2523], - [0, 13928, 1282, 1288, 1707, 2835, 1209, 4227, 13942], - [0, 1184, 1291], - [1, 2343, 8383], - [0, 8384, 0, 2514, 2537], - [0, 1282, 1209, 13948, 4135], - [1, 2343, 8386], - [0, 8387, 0, 2514, 2523], - [0, 1282, 13930], - [1, 2343, 8390], - "nf", - [0, 0, 0, 8393, 2487], - true, - "cookiecutter", - [0, 1172, 188, 1219], - [1, 2343, 8395], - [0, 8396, 8397, 2514, 2537], - [0, 8755, 10879, 1208, 13961, 1437, 2215, 4207], - [0, 53, 8776, 8780], - [1, 2343, 8399], - [0, 8400, 8401, 8402, 4139], - [0, 2105], - [0, 48, 53, 68, 87, 1414, 1177, 1895, 1955, 2203, 2675, 2990, 1894, 2924], - [0, 2924, 1194, 1172, 5194, 5198, 1237], - [1, 2343, 8404], - [0, 0, 8405, 8406, 4139], - [ - 0, 53, 73, 87, 1173, 1175, 1178, 13725, 13982, 1264, 13983, 1268, 1284, 1288, 13985, 1177, 1895, 1903, 1938, - 1954, 1955, 1958, 1970, 2899, 3696, 1894, 4039, 4103 - ], - [0, 5297, 13988], - [1, 2343, 8408], - [0, 8409, 8410, 8411, 2537], - [0, 3435], - [ - 0, 4389, 1177, 4039, 1173, 1175, 2708, 53, 1178, 1280, 13995, 87, 1261, 1267, 4103, 1938, 1881, 1203, 8229, - 1198, 5853, 13998, 1244 - ], - [0, 1172, 1932, 14000, 1204, 202], - [1, 2343, 8413], - [0, 8414, 8415, 3465, 2523], - [0, 1282], - [0, 1189], - [1, 2343, 8417], - [0, 8418, 8434, 8444, 2399], - [0, 5652], - "@keyv/redis", - [2, 1416, 8421], - "-redis-yet", - "cacheable", - "opens", - "spring", - "icu", - "charset", - "launch", - "xdg", - "cmd", - "xdg-open", - "iconv", - "popmotion", - "exe", - [0, 53, 90, 14011, 1175, 14012, 1596, 1177, 1879, 1895, 1938, 1955, 2079, 2675, 2990, 3132, 3377, 1894, 14014], - "executable", - "cache manager", - [2, 27105, 15292], - "multi-store cache", - "caching layer", - "cache abstraction", - "cache middleware", - "cache strategies", - "cache wrapper", - [0, 5297, 1114], - [1, 2343, 8446], - [0, 8447, 8448, 8449, 2537], - [0, 56, 14022, 8697, 14024, 14025], - [0, 48, 53, 5756, 5241, 94, 1429, 1596, 1610, 2899, 3421, 14027, 4255], - [0, 2759, 1172, 1932, 14029], - [1, 2343, 8451], - [0, 8452, 8453, 8454, 2537], - [0, 5652, 104, 2070, 1209, 14035], - [ - 0, 48, 53, 14039, 78, 5235, 4851, 83, 87, 90, 14041, 94, 10828, 1149, 1198, 1210, 1429, 14042, 14045, 3021, - 2899, 3776, 3804 - ], - [0, 5297, 14047, 1209, 5260], - [1, 2343, 8456], - [0, 8457, 8458, 8459, 2487], - [0, 14053, 2070, 3539, 4022, 814], - [0, 48, 53, 81, 5241, 87, 1175, 1193, 1532, 1177, 1881, 1895, 1938, 2675, 1192, 2990, 10623, 4257], - [0, 1172, 5297, 1237, 14056, 8861, 9345, 814, 14057, 14059, 3209, 1204], - [1, 2343, 8461], - [0, 0, 8462, 2514, 2523], - [0, 1192, 14065], - [1, 2343, 8464], - [0, 0, 0, 3465, 2523], - [1, 2343, 8466], - [0, 0, 0, 3465, 2537], - [1, 2343, 8468], - [0, 8469, 8415, 3465, 2523], - [0, 14078, 14080, 1282], - [1, 2343, 8471], - [0, 8472, 8415, 3465, 2523], - [0, 14086, 14087, 1282, 1284], - [1, 2343, 8474], - [0, 8475, 8476, 8477, 2487], - [0, 14093, 1282, 1284], - [0, 1173, 1230, 1255, 1267, 1429, 2899], - [0, 1172, 5297, 6598, 70], - [1, 2343, 8479], - [0, 8480, 8415, 3465, 2523], - [0, 1282, 1284, 1287, 1288, 1209], - [1, 2343, 8482], - [0, 8483, 8484, 3465, 2487], - [0, 14107, 1282, 1284, 1288], - [0, 1189, 14109], - [1, 2343, 8486], - [0, 8414, 8415, 3465, 2399], - [1, 2343, 8488], - [0, 8489, 8415, 3465, 2537], - [0, 14109, 1282], - [1, 2343, 8491], - [0, 8492, 8415, 3465, 2523], - [0, 1282, 14123, 1220], - [1, 2343, 8494], - [0, 0, 8495, 8496, 2537], - [ - 0, 48, 53, 5216, 8229, 61, 5240, 87, 14128, 90, 94, 1178, 14132, 1429, 1177, 1879, 1922, 1935, 1938, 1947, 1951, - 1955, 1959, 2205, 2899, 14133, 1894 - ], - [0, 1172, 5297, 89, 14137, 14139], - [1, 2343, 8498], - [0, 8499, 8415, 2514, 2537], - [0, 14145], - [1, 2343, 8501], - [0, 8414, 8415, 3465, 2537], - [1, 2343, 8503], - [0, 8504, 0, 2514, 2487], - [0, 1282, 1593, 3957], - "comment", - [2, 8505, 1574], - [1, 2343, 8513], - [3, 539, 8], - [2, 8508, 6939], - [3, 539, 17], - [2, 8510, 1541], - "leasot", - [0, 8514, 8515, 8516, 2487], - [0, 87, 90, 56, 5761, 83, 14160, 13051, 78, 5835, 14163, 5853, 14167, 1251, 5782, 14170, 5806], - [0, 1177, 53, 97, 4103, 1938, 1881], - [0, 1172, 5194, 6778, 5284], - [1, 2343, 8518], - [0, 8522, 8541, 2514, 2523], - "clair/typebox", - [2, 5324, 8519], - "@typesc", - [ - 0, 14184, 14191, 1225, 14192, 14195, 1235, 14196, 14198, 14199, 14201, 14204, 14206, 14207, 14209, 1240, 14210, - 14211, 14213, 14214, 14215, 14217, 14218, 1244, 14220, 14222, 14224, 1253, 1393, 2731, 4135 - ], - "hema/core", - [2, 8521, 8523], - [3, 8524, 12], - "main", - [2, 8525, 8526], - [2, 8525, 4763], - "@vinejs/vine", - "ajv-", - "ajv-errors", - "-export", - "-export-map", - [2, 4354, 8533], - [3, 5370, 11], - [2, 4626, 8535], - "effect", - "fp-ts", - "io-ts-types", - "lefthook", - [0, 1173, 1178, 1184, 1189, 1208, 1264, 1280, 1429, 1503, 1177, 13936, 1935, 2151, 1209, 2899, 3421, 14227, 4039], - [1, 2343, 8545], - "monocle-ts", - "newtype-ts", - [0, 8548, 8557, 2514, 2487], - "-validator", - [2, 7209, 8546], - [ - 0, 14184, 14192, 14195, 1235, 14196, 14198, 14199, 14201, 14204, 14206, 14207, 14209, 1240, 14210, 14211, 14213, - 14214, 14215, 14217, 14218, 1244, 14220, 14222, 1253 - ], - "bot", - "valibot", - "vite-", - [2, 8551, 4480], - "fluent", - "-ts", - [2, 7020, 8554], - [2, 8553, 8555], - [0, 13930, 1189], - "effect-ts", - [1, 2343, 8562], - "typeschema", - "vine", - [0, 8563, 0, 2514, 4139], - [0, 14237, 1220, 14238, 1248, 14240, 14243], - [1, 2343, 8565], - [0, 8566, 0, 2514, 2537], - [0, 53, 61, 71, 14170, 14160, 13051, 14249, 5700, 5240, 5879, 83, 87, 90, 92, 97, 7913, 1251], - "google ", - " api", - "late api", - [2, 4713, 8569], - [2, 8567, 8570], - [3, 8571, 16], - "google api", - [3, 8570, 9], - [1, 2343, 8576], - [0, 8577, 0, 2514, 34352], - [0, 14256, 14257, 1275], - [1, 2343, 8586], - "@atlaskit/pragmatic-drag-and-drop", - "-scroll", - [2, 3959, 8580], - [2, 8579, 8581], - [3, 8582, 34], - "hitbox", - [2, 8583, 8584], - [0, 8587, 0, 2514, 2523], - [0, 14265, 13982, 1277], - "vue3", - "vue ", - [1, 2343, 8592], - "vue 3.x", - [0, 8593, 0, 2514, 2537], - [0, 1279, 14270, 1217, 1230], - [1, 2343, 8595], - [0, 8596, 0, 2514, 2523], - [0, 14191, 14276, 1225, 14224, 1245], - "@ctrl/tinycolor", - [1, 2343, 8599], - [0, 8600, 8601, 2514, 2537], - [0, 1175, 1282, 1593, 14282, 1209, 3188, 4232], - [0, 6323], - [1, 2343, 8613], - [3, 546, 10], - [2, 8603, 2089], - [2, 8603, 998], - [3, 6505, 9], - "te-stream", - [2, 8606, 8607], - "rap-ansi", - [2, 7820, 8609], - "cli-width", - "mute-stream", - [0, 4115, 8617, 2514, 4139], - [3, 8605, 11], - "esting", - [2, 8614, 8615], - [0, 13924, 1255], - "answer", - "answers", - "ask", - [1, 2343, 8627], - "confirm", - "generate", - "hyper", - "inquire", - "interface", - [0, 8629, 0, 2514, 2537], - "iterm", - [0, 1282, 1287, 1288, 1291, 1209], - "promptly", - "question", - "scaffold", - "scaffolder", - "stdout", - "yeoman", - "zsh", - [1, 2343, 8638], - [0, 8639, 8640, 2514, 2523], - [0, 13922, 13928, 1282, 1288, 1291, 1676, 2203, 2731, 1209], - [0, 1180], - "@stencil/core", - [1, 2343, 8672], - "domino", - [3, 8641, 9], - [2, 8644, 2278], - "@clack/prompts", - "@capacitor/core", - "@playwright/test", - [3, 8647, 11], - "haptics", - [2, 8649, 8650], - "keyboard", - [2, 8649, 8652], - "@axe-core/playwright", - "@ionic/", - [2, 8655, 7625], - "-bar", - "status-bar", - [2, 8649, 8658], - [2, 8655, 7628], - [2, 812, 4607], - "-target", - [2, 6811, 8662], - [2, 4625, 8663], - [2, 8644, 8664], - "react-o", - "utput-target", - [2, 8666, 8667], - [2, 8644, 8668], - [2, 1101, 8663], - [2, 8644, 8670], - [0, 8679, 8680, 2514, 2487], - "stencil", - "webapp", - "capacitor", - " web app", - [2, 6434, 8676], - "pwa", - [0, 1282, 14301, 1209, 5915], - [0, 1180, 1291], - [1, 2343, 8682], - [0, 0, 8684, 2514, 2523], - "-cjs", - [0, 4384, 1389, 53, 14311, 87, 14128, 1573, 90, 14309, 5835, 5879], - [1, 2343, 8686], - [0, 0, 8687, 8688, 2487], - [ - 0, 1166, 1173, 1178, 1184, 1203, 1208, 14318, 1267, 1272, 1437, 1503, 1610, 1177, 13936, 1935, 2126, 3421, 4039, - 4042, 4045, 4067, 12613, 14320 - ], - [0, 1172, 5284, 57, 1291], - "standardx", - [1, 2343, 8692], - "layout", - [0, 8693, 8694, 8695, 2537], - [0, 4545], - [0, 1509, 1597, 1734, 1177, 1938, 2297, 2908, 2907, 4005, 4042, 4535], - [0, 11415, 6624, 12620, 38, 36, 5576, 1388], - [3, 549, 12], - [2, 8696, 2844], - [1, 2343, 8699], - [0, 8700, 8701, 8702, 2443], - [0, 1525, 2070, 2720, 3445, 4039, 4484, 3348, 1155], - [ - 0, 14333, 4865, 4866, 4874, 7819, 14334, 4891, 1009, 1011, 5476, 14337, 14338, 5478, 1429, 1177, 1938, 1954, - 2899, 3200, 14339, 4167, 4172, 4409, 4469, 4474, 4508, 91, 594, 2924, 4677 - ], - [0, 5995, 1293, 3230, 4978, 14344], - [3, 444, 18], - [3, 550, 15], - "illu", - [1, 2343, 8715], - "tions-react", - [2, 4273, 8707], - [2, 8705, 8708], - [2, 8704, 8709], - "@swc/", - [2, 8711, 6706], - [3, 958, 16], - [2, 8713, 4607], - [0, 7936, 7938, 7939, 2537], - "react-table", - [1, 2343, 8718], - [0, 0, 8720, 8721, 2523], - "@swc/cli", - [0, 1596, 2228, 2240, 2314, 14352, 2759, 2899, 3954], - [0, 14354, 14355, 14356, 14357, 1157, 1396], - "-extensions", - [2, 3751, 8722], - [2, 1962, 8723], - [1, 2343, 8730], - "-system", - [2, 4964, 8726], - "itwin", - "itwinui", - [0, 7967, 7938, 7939, 2443], - [1, 2343, 8732], - [0, 0, 8733, 8735, 4139], - [0, 13662, 1317, 1389, 4389], - "jest-config", - [0, 14357], - "unner", - "jest-runner", - "jest-run", - [2, 8738, 6901], - [3, 2802, 10], - [2, 8740, 1524], - [3, 551, 8], - "nsole", - [2, 8742, 8743], - "snapshot", - [2, 2769, 8745], - [2, 2769, 2649], - "jest-h", - "aste-map", - [2, 8748, 8749], - "reporters", - [2, 552, 8751], - "@jest/t", - "ransform", - [2, 8753, 8754], - "jest-re", - "gex-util", - [2, 8756, 8757], - [1, 2343, 8760], - [0, 8766, 8772, 8774, 2523], - "est-result", - [2, 8753, 8761], - "jest-m", - "essage-util", - [2, 8763, 8764], - [0, 4100], - "-files", - [2, 2356, 8767], - [2, 2772, 8768], - "-dependencies", - [2, 2797, 8770], - [0, 2899, 1177, 2759, 1954, 1938, 1958, 1903, 1948, 1970], - [3, 6494, 9], - [0, 14372, 1303, 14374, 14375], - [3, 8762, 11], - [2, 8775, 594], - "cromatch", - [2, 7890, 8777], - "raceful-fs", - [2, 5246, 8779], - "sequencer", - [2, 8775, 8781], - [1, 2343, 8789], - "easy", - "sive", - "immersive", - "instant", - "mocking", - [0, 8792, 8793, 8794, 2537], - "painless", - "runner", - [0, 1797, 3181, 3183, 3188, 14380], - [0, 1177, 1903, 1938, 1954, 1958, 1970, 2899, 4039, 4342, 4459, 4538, 4588], - [0, 2026, 5130, 14387, 6690, 14388, 3361, 5122, 4030, 7096, 38, 1896, 3724, 5995, 5592], - "sandboxed", - [1, 2343, 8797], - [0, 8798, 8799, 8810, 2537], - [0, 3299, 15160], - [0, 1192, 15164], - "schemas", - [2, 552, 8800], - "@types/i", - "-report", - "-reports", - [2, 1207, 8804], - [2, 8802, 8805], - [3, 8806, 16], - "lib-coverage", - [2, 8807, 8808], - [0, 1306, 6875, 1303, 5165, 7141, 6641, 1616], - "@tsd/typescript", - [1, 2343, 8813], - [0, 0, 0, 8814, 2537], - [0, 1306, 5284, 676, 3428, 6875, 1303, 5165, 7141, 6641, 1616], - [1, 2343, 8819], - [3, 7729, 13], - "chema", - [2, 8816, 8817], - [0, 0, 8822, 8810, 4139], - "jsdom-", - [2, 8820, 2202], - [0, 1306, 26406, 1894, 91], - "mock-store", - [2, 3944, 8823], - "dux-mock-store", - [2, 5249, 8825], - "-reg", - "iste", - "r-element", - [2, 8828, 8829], - [2, 8827, 8830], - [2, 1746, 8831], - [1, 2343, 8834], - [0, 8835, 8842, 8843, 34352], - [0, 14413, 1525, 1457], - "jsonforms", - "rendere", - [2, 8837, 152], - "uischema", - "ization", - [2, 5317, 8840], - [0, 2025, 2228, 1330, 2236, 2300, 2247, 2281], - [0, 14416, 14417, 14418, 7190, 14419, 14421, 8309, 14422, 14423, 14426, 14428, 14430, 14433], - [1, 2343, 8845], - [0, 0, 0, 8847, 2523], - "@date-io/dayjs", - [0, 1317, 14438], - [3, 4055, 16], - [2, 8848, 2257], - [2, 812, 1781], - [3, 6390, 15], - "mport-css", - [2, 8851, 8852], - [1, 2343, 8855], - [0, 8856, 7938, 7939, 4139], - [ - 0, 43, 46, 1089, 1093, 1116, 1132, 1140, 14443, 1294, 1298, 1316, 1318, 1321, 1322, 14444, 1336, 1339, 1342, - 12701, 1344, 1346, 1348, 1350, 1352, 12703, 1354, 1356, 1358, 14445, 12704, 1373, 1376, 14446, 1386, 14447, - 1402, 1425, 1428, 12705, 1440, 1449, 1450, 12708, 12709, 14450, 14453, 12710, 12711, 12714, 1663, 1706, 1711, - 14458, 1715, 1726, 1801, 2019, 12715, 14459, 12719, 2058, 2059, 2083, 2147, 2160, 14460, 2177, 2213, 2216, 2217, - 12720, 2562, 2563, 2567, 2589, 2605, 2606, 2612, 14461, 12722, 2723, 14464, 14467, 2950, 2954, 2957, 12726, - 2962, 14469, 3086, 14471, 3099, 12730, 3134, 12733, 3186, 3238, 14473, 14474, 3239, 3240, 3245, 3262, 14477, - 3295, 3439, 12736, 3443, 3472, 14478, 3531, 3535, 3558, 12737, 3777, 3931, 12740, 14479, 4105, 4106, 4112, 4124, - 12743, 14480, 12747, 14483, 4168, 4173, 4177, 4189, 4192, 4206, 4212, 4214, 4215, 4235, 12749, 14484, 4236, - 4239, 4258, 12750, 4267, 14487, 4335, 4338, 12755, 4347, 4352, 4370, 4377, 4433, 14489, 14491, 4456, 4461, - 12756, 12757, 12760, 4548, 4559, 4595, 12763, 14492, 14496, 4659, 4662, 12764, 14497, 4724 - ], - [1, 2343, 8858], - [0, 8859, 8863, 8864, 4139], - [0, 3171, 3445, 4707, 1695, 2967, 814, 4430, 1457, 3183, 14502, 3560, 3714, 1537, 14506, 3923, 14508, 14512, 14505], - [2, 4807, 3429], - "alias", - [2, 812, 8861], - [0, 14515, 3212, 4389, 4453, 2759, 4650, 1389, 14514], - [0, 14518, 1389], - [1, 2343, 8866], - [0, 7967, 7938, 7939, 2537], - [1, 2343, 8868], - [0, 8869, 8870, 8871, 2443], - [0, 1209, 12344], - [0, 1596, 14527, 2759, 14529, 3774, 4019], - [0, 1317, 6681, 6887], - [1, 2343, 8873], - [0, 7967, 7938, 7939, 2523], - [1, 2343, 8875], - [0, 8876, 0, 8877, 34352], - [ - 0, 14544, 14546, 14548, 53, 5216, 58, 61, 14249, 5704, 5809, 5241, 5874, 87, 92, 101, 9311, 9100, 4874, 1091, - 14552, 1137, 1149, 1448, 1457, 1462, 1512, 14557, 1573, 2141, 2633, 14558, 3310, 3403, 1894, 14562, 2278, 4218, - 4227, 4246, 3709, 91, 4535, 14563, 188, 4747, 2720, 14564 - ], - [ - 0, 14566, 14568, 14570, 14571, 14572, 14574, 5130, 91, 5284, 4799, 11608, 8889, 5995, 14575, 14576, 14579, - 14580, 14582, 14584, 14587, 11498, 14591, 14592, 14594, 14596, 4056, 14597, 14600, 89, 14601, 14602, 188, 14603, - 14605, 8889, 3709, 14607, 14608, 4218, 14609 - ], - 1769904000000, - [1, 2343, 8880], - [0, 8881, 8882, 8883, 2399], - [0, 14615, 14616, 14617], - [0, 1170, 1429, 1177, 2899, 14621, 3752, 14622], - [0, 1781, 14626, 1646, 4647, 1644, 57, 14628, 4141, 3917, 6033, 1149, 14629], - [1, 2343, 8885], - [0, 0, 0, 8886, 2523], - [0, 14634, 14635, 14636, 14637, 6988, 14638, 14639, 14640, 14641, 14642, 14643, 14644], - "@lumino/polling", - "@lumino/", - "widgets", - [2, 8888, 8889], - "commands", - [2, 8888, 8891], - "algorithm", - [2, 8888, 8893], - [3, 8892, 10], - "reutils", - [2, 8895, 8896], - [1, 2343, 8903], - "messaging", - [2, 8888, 8899], - "signaling", - [2, 8888, 8901], - [0, 8904, 0, 8908, 4139], - [0, 14652], - "disposable", - [2, 8888, 8905], - [3, 8887, 9], - [0, 970, 11154, 1326, 14654, 6817, 3122, 14655], - "roperties", - [2, 8907, 8909], - [3, 565, 12], - "statedb", - [2, 8911, 8912], - [3, 8894, 9], - "pplication", - [2, 8914, 8915], - [3, 565, 15], - [2, 8917, 594], - [3, 8913, 13], - "ervices", - [2, 8919, 8920], - "coreutils", - [2, 8911, 8922], - "render", - "rendermime", - [2, 8911, 8925], - "docregistry", - [2, 8911, 8927], - [1, 2343, 8935], - "translation", - [2, 8911, 8930], - [2, 8911, 7842], - "-interfaces", - [2, 8926, 8933], - [0, 8938, 8939, 2514, 2537], - [3, 8931, 13], - [2, 8936, 8615], - [0, 14660], - [0, 3421, 4389, 4487, 1894, 3310, 3752, 91, 4874], - [1, 2343, 8941], - [0, 8943, 8948, 8950, 34352], - "docopt", - [0, 14667, 14669, 14671, 14672, 5241, 83, 14673, 13998, 14674, 5564, 14676, 4649], - "glob2base", - "lodash.d", - "ifference", - [2, 8945, 8946], - [ - 0, 14680, 48, 53, 5241, 87, 14682, 94, 97, 10821, 14684, 827, 14687, 14689, 10828, 14691, 11277, 10837, 11288, - 972, 5087, 4883, 14693, 14694, 13995, 14695, 1193, 1195, 14697, 14698, 1208, 1261, 1268, 14012, 1282, 14699, - 1462, 1596, 1610, 1655, 14702, 1177, 14707, 2323, 2529, 2541, 14708, 2708, 1192, 2787, 2820, 3220, 14711, 3342, - 3377, 3400, 3415, 3421, 3697, 1894, 3786, 89, 3824, 14714, 14719, 4039, 4103, 4111, 14721, 4307, 4468, 4469, 91, - 2924, 4676, 4677 - ], - "multipipe", - [0, 1328, 14723], - "safe-wipe", - [2, 4832, 6270], - "-theme-default", - [2, 566, 8953], - "-comment", - [2, 8955, 1574], - [2, 4329, 8956], - "indent", - [2, 4293, 8958], - "vinyl-s", - "tring", - [2, 8960, 8961], - [1, 2343, 8968], - "builtin-", - [2, 8964, 2051], - [2, 1226, 8965], - "opn-cli", - [0, 8969, 8970, 8971, 4139], - [0, 14731, 1398, 2713, 3923], - [0, 2080, 4255, 4389, 91], - [0, 1398, 6825, 3101, 7178], - [1, 2343, 8973], - [0, 8974, 8975, 8976, 2523], - [0, 1082, 14738, 14741, 2756, 3433, 1695], - [0, 1149, 14744, 1506, 2228, 2240, 2247, 2253, 2273, 2281, 3006, 2899, 3521, 4019, 89, 14748], - [0, 4504], - [1, 2343, 8978], - [0, 0, 0, 8979, 2523], - [0, 14755, 14756, 14757, 14759, 14761], - "chatfanpage", - "api-con", - "-x", - "nect-x", - [2, 8981, 8983], - [3, 8984, 12], - "tiwtter", - [2, 8985, 8986], - [1, 2343, 8989], - [0, 8990, 8991, 2514, 2487], - [0, 14768, 1437, 14769, 1209, 14770, 3127, 14774, 14775, 3152, 14776, 14777, 4294, 14780, 14781], - [0, 14785, 1331, 1512, 1177, 1903, 1938, 1954, 1958, 1970], - [1, 2343, 8993], - [0, 7967, 7938, 7939, 4139], - [1, 2343, 8995], - [0, 8029, 7938, 7939, 2399], - [1, 2343, 8999], - [2, 8603, 6847], - [2, 8603, 3742], - [0, 8029, 7938, 7939, 2523], - "tasklist", - [1, 2343, 9002], - [0, 8029, 7938, 7939, 2487], - [1, 2343, 9004], - [0, 0, 9012, 9013, 2523], - "move-", - "scroll", - "move-scroll", - [2, 3877, 9007], - "react-te", - "xtarea-autosize", - [2, 9009, 9010], - [0, 2759], - [0, 1359, 2013, 14824, 6681], - [1, 2343, 9015], - [0, 0, 9016, 9017, 2523], - [ - 0, 1499, 4093, 2070, 3445, 1082, 14830, 2899, 4193, 2272, 3188, 4039, 14829, 1362, 2597, 2759, 3460, 1481, 4535, - 1084, 1389, 1364, 1615, 4151, 2839, 2311 - ], - [0, 1862, 6681, 6567, 14832, 14833, 1149, 7003, 14834, 14835, 14836, 14838, 14839, 14840], - [1, 2343, 9019], - [0, 0, 9020, 9021, 2487], - [0, 2899, 8689, 1926], - [0, 14846, 14847, 14848, 14849, 14850], - [1, 2343, 9023], - [0, 9024, 9025, 2514, 2487], - [0, 1413, 1562, 1676, 2657, 2685, 3440, 3763, 3784, 1000], - [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342], - "calendar", - [1, 2343, 9028], - [0, 9029, 9030, 9031, 2537], - [0, 1362, 14864, 2712, 1209], - [0, 14869, 1429, 1177, 1895, 1955, 2675, 1776, 2930, 2990, 2899, 3259, 3421, 3519, 1894, 4193, 4196, 4246, 3348], - [0, 3469, 3259, 14873, 7827, 14874, 14877], - [1, 2343, 9033], - [0, 9034, 9035, 9036, 2537], - [0, 2607], - [0, 1501, 620, 3123], - [0, 1851, 27], - [1, 2343, 9038], - [0, 0, 9039, 5359, 2537], - [ - 0, 2739, 4763, 3171, 2278, 34683, 2297, 1177, 2205, 2814, 3984, 4042, 4086, 4072, 2765, 2822, 3363, 3561, 4167, - 6393, 1894, 1492, 1610, 4939, 4320, 48, 2689, 53, 27098, 6375, 2654, 3566, 3989, 30616, 1165, 3401, 6371, 6376, - 2898, 3019, 34673, 29226, 6372, 7637, 8149, 7610, 11275, 26407, 1907, 6382, 4555, 87, 29568, 1937, 5583, 1938, - 1982, 2881, 2889, 30620, 6373, 1948, 2895, 6390, 811, 33071, 3963, 2910, 6379, 816, 2876, 6387, 6392, 6385 - ], - [3, 593, 11], - [2, 9040, 147], - [1, 2343, 9043], - [0, 0, 9048, 9049, 2537], - [3, 586, 12], - [2, 9044, 5602], - [3, 9045, 13], - [2, 9046, 623], - [0, 2278, 14892, 1797], - [0, 1367, 2278, 1623, 14894], - [1, 2343, 9051], - [0, 0, 0, 9055, 2537], - "-react-", - [2, 9052, 3902], - [2, 588, 9053], - [0, 1370], - [3, 80, 7], - [2, 9056, 5342], - [1, 2343, 9059], - [0, 9060, 9061, 9062, 4139], - [0, 14904, 1420, 1437, 1471, 4290, 4507, 9731, 4726], - [0, 1166, 3421, 4481, 1906], - [0, 200, 5403, 14907, 7009, 6048, 7201, 6938, 3656, 14908, 2585], - [1, 2343, 9064], - [0, 9065, 9066, 9067, 2537], - [0, 14923, 814, 14924, 4431], - [0, 1389, 1537, 4384, 4430], - [0, 1389, 14927, 2150, 14930, 1932, 2947, 14932, 6374, 14357], - [1, 2343, 9069], - [0, 9070, 9077, 9078, 2537], - [0, 1676, 3181, 4648, 14940, 14937, 14939, 14938], - [2, 597, 592], - [3, 9071, 14], - "ystem", - [2, 9072, 9073], - [2, 597, 553], - [2, 597, 594], - [0, 1429, 2899, 4039, 2151, 3980, 14942, 1951, 1385, 14944], - [0, 14938, 5284], - [1, 2343, 9080], - [0, 9081, 9082, 9083, 2537], - [0, 14938, 1380], - [0, 14953, 1385, 1429, 2899, 14942], - [0, 14938, 1698, 1585], - [1, 2343, 9085], - [0, 9086, 9090, 2514, 2487], - [0, 6520, 14959, 2116, 14939, 4449, 4648], - [3, 603, 15], - "documenter", - [2, 9087, 9088], - [0, 4856, 6503, 4874, 14962, 1429, 1540, 2899, 14964, 3421, 1894, 14967, 4487, 4490, 14970, 91], - "json-api", - [1, 2343, 9095], - "json:api", - "normalizer", - [0, 9096, 9097, 9098, 2487], - [ - 0, 14978, 14980, 14981, 1437, 1457, 1544, 1549, 14982, 14985, 14986, 984, 2145, 2151, 2659, 2700, 3170, 3459, - 13399, 3784, 14990, 4093, 710, 4150, 4151, 4153, 4218, 11804, 4747 - ], - [ - 0, 4874, 14992, 1429, 14995, 2215, 13333, 2899, 1894, 3760, 705, 4019, 4039, 4193, 4220, 4232, 4294, 4342, 91, - 4597 - ], - [0, 14998, 1623, 15000, 15001], - [3, 4873, 9], - "@types/mdx", - [1, 2343, 9103], - "mdx", - [0, 9104, 9105, 9106, 2523], - [ - 0, 1002, 2070, 614, 1695, 1145, 1398, 2018, 2571, 15043, 15016, 7029, 3729, 814, 2713, 3757, 4431, 15017, 15019, - 2861, 15020, 15030, 4165, 15040, 15006, 15044, 1537, 15031, 15037, 15048, 15018, 15028, 15042, 15047, 15007, - 15009, 3502, 15033, 3923, 15022, 15036, 1618, 15039, 15046, 15014, 15013, 15015, 13818, 15024 - ], - [0, 15060, 4384, 1241, 4135, 4430, 1292, 15057, 15052, 1506, 15051, 15055, 15056, 15059], - [0, 1388, 3209, 10906, 15064, 6374, 3378, 5284], - "encryptor", - [1, 2343, 34414], - "-model", - [2, 603, 9109], - "@rushstack/node-core-library", - [3, 9111, 11], - [2, 9112, 7009], - [3, 9113, 12], - "s-comm", - [0, 15070, 15071, 15073, 814, 4430], - "and-line", - [2, 9115, 9117], - [2, 9114, 9118], - "rig-package", - [2, 9112, 9120], - [0, 2832, 3275, 3752, 705, 4039, 4384, 15077], - "heft-node-rig", - [2, 9112, 9123], - [3, 9124, 15], - "eft-jest", - [2, 6495, 9126], - [3, 7892, 12], - [2, 9128, 3180], - [2, 5554, 7625], - [0, 1389, 14927, 1858, 2202, 2203, 353, 11316, 10906], - "JSDoc", - "AEDoc", - "TSDoc", - "alpha", - "beta", - [1, 2343, 9138], - [0, 9139, 0, 9140, 34352], - [0, 28572, 1423, 14227, 15085, 15088], - [0, 1421, 2887, 15090], - "tsdoc-build-rig", - [1, 2343, 9144], - "ig", - [0, 9145, 9147, 9148, 2443], - [0, 15095], - [3, 1937, 15], - [0, 4389, 4039, 91, 4874, 15097], - [0, 15100, 15101, 1616, 15102, 15103, 15105, 10368, 9254, 15107], - [1, 2343, 9150], - [0, 0, 9151, 9152, 2399], - [ - 0, 3421, 4390, 4481, 1429, 3348, 1437, 2899, 4193, 1177, 4042, 4474, 1894, 1317, 3310, 4196, 91, 4856, 4874, - 6503, 6513, 3090, 6512, 4232, 1978, 1895, 1955, 603, 10817, 1011, 816, 15115, 1009, 549 - ], - [0, 3230, 1395, 57], - "jju", - [1, 2343, 9155], - [0, 0, 0, 9157, 2487], - "@types/jju", - [0, 1396, 1388], - [1, 2343, 9159], - [0, 9160, 9164, 9168, 4139], - [0, 1082, 15127, 15128, 1437, 3090, 3183, 15130], - "@dat", - "astream/core", - [2, 9161, 9162], - [0, 15132, 1177, 2070, 2899, 4039, 4042, 15134, 811, 8850, 816, 4227, 4232, 15136], - "@types/a", - "ws-lambda", - [2, 9165, 9166], - [0, 5284, 15139, 15140, 15141, 6778, 7192, 5194, 6598], - "Lambda", - "Middleware", - "Serverless", - "Framework", - "AWS", - "AWS Lambda", - [1, 2343, 9176], - [0, 9177, 9178, 9179, 2443], - [0, 1301, 13811], - [0, 1090, 1317, 1389, 1537, 2676, 13651, 13633, 4237, 4389, 4431, 4535], - [0, 6866, 1388, 1389, 1398, 15148, 6735, 15149], - [1, 2343, 9181], - [0, 0, 9187, 9188, 2537], - "Middy", - "HTTP", - "Body Parser", - " Body Parser", - [2, 6671, 9185], - [0, 13614, 1158, 1159, 1177, 2708, 3410, 4103, 4389], - [0, 1398, 4162], - [1, 2343, 9190], - [0, 9197, 9198, 9199, 2537], - [3, 7709, 17], - "sm", - [2, 9191, 9192], - "aws-", - "xray-sdk", - [2, 9194, 9195], - [0, 15160], - [0, 2899, 640, 15164], - [0, 1401], - [1, 2343, 9201], - [0, 0, 8134, 9202, 2523], - [0, 4061, 15174, 4062, 202, 5260, 364, 15175, 3392, 4552, 1460], - "moj", - [2, 4964, 6770], - [1, 2343, 9206], - [0, 0, 9208, 9222, 2523], - "hash-base", - [0, 1637, 3566, 1894, 4039, 2278], - "@open-", - "draft", - "/deferred-promise", - [2, 9210, 9211], - [2, 9209, 9212], - [3, 9213, 12], - [2, 9214, 2942], - "until", - [2, 9214, 9216], - "is-node-process", - "outvariant", - "ct-event-emitter", - [2, 4285, 9220], - [0, 1623, 2278, 4329, 15182, 10052, 6398, 5130], - [1, 2343, 9232], - "test-server", - [2, 9214, 9224], - "@ossjs/release", - [2, 4860, 982], - [3, 7808, 15], - "upload", - "fileupload", - [2, 9228, 9230], - [0, 9234, 9238, 9253, 2523], - "rate-limit", - [0, 5923, 15187, 8646, 688, 691, 9296, 15194, 11420, 1170, 1437, 1676, 29297, 15197, 3445], - [3, 7810, 9], - "llow-redirects", - [2, 9235, 9236], - [ - 0, 9736, 9737, 4856, 5245, 15203, 6503, 4874, 6513, 1009, 1429, 1177, 1891, 1893, 1895, 1955, 2899, 3211, 3297, - 3377, 3421, 1890, 4172, 4193, 4474, 91 - ], - "upertest", - [2, 5051, 9239], - "@types/ws", - "engine.io-parser", - [2, 2032, 9230], - [2, 2032, 9233], - [2, 4183, 1960], - [3, 4220, 10], - [2, 9246, 57], - "ironment-miniflare", - [2, 8156, 9248], - [2, 1984, 9249], - [3, 5572, 9], - [2, 9251, 2022], - [0, 5592, 1745, 3452, 5593, 15208, 200], - "encoding", - [2, 5925, 9254], - [3, 4684, 9], - "ttp-server", - [2, 9256, 9257], - [1, 2343, 9260], - [0, 9263, 9264, 9265, 2523], - "intercept", - "low-level", - [0, 15006, 15051, 1537, 14738, 3183, 4431], - [0, 4389], - [0, 1389, 6374, 15215, 3178, 3209], - [1, 2343, 9268], - "mui", - [0, 9269, 9270, 9271, 2487], - [0, 15221, 3220, 15220, 15223], - [0, 15225, 4384, 4591, 4593, 3123], - [0, 3073, 6807, 15227, 1781, 1409], - [2, 619, 553], - [2, 619, 594], - "@mui/base", - [1, 2343, 9276], - [0, 9277, 9278, 9279, 2487], - [0, 15232], - [0, 15234, 1177], - [0, 15236, 25, 15237, 2139], - "core-", - "s-tracker", - [2, 1764, 9281], - [2, 9280, 9282], - [2, 619, 9283], - [1, 2343, 9286], - [0, 9287, 9288, 9289, 2537], - [0, 3080], - [0, 14408, 15243, 14406, 15245, 14405, 14404], - [0, 11995, 4552, 1398, 6866, 7270, 1411, 1781, 4699, 15247], - [1, 2343, 9294], - "theming", - [2, 5695, 9291], - [2, 619, 9292], - [0, 0, 9295, 9297, 2537], - [0, 1177, 1948, 2899, 3421], - [2, 9710, 15201], - [0, 1412, 1413, 6435, 1644, 57, 6270, 15253], - [1, 2343, 9299], - [0, 9303, 9304, 9305, 2537], - "mui-x", - "timepicker", - [2, 1666, 9301], - [0, 15258, 8697, 2105, 15261, 11935, 11938, 11943, 14025, 15262, 4747, 4748], - [0, 4874, 1429, 15264, 1610, 2899, 4255, 4474, 91], - [0, 4504, 15266, 1973, 2759, 15267, 3323, 202], - [1, 2343, 9325], - "@headlessui/react", - "@iconify-icon/react", - [3, 602, 8], - [2, 9309, 1194], - "@mdx-js/mdx", - "@shikijs/transformers", - "@theguild/remark-npm2yarn", - "nist", - [2, 7817, 9314], - "@vcarl/remark-headings", - "approximate-number", - "-watch-webpack-plugin", - [2, 2473, 9318], - "flex", - "flexsearch", - "git-url-parse", - "phrasing", - [2, 3138, 9323], - [0, 0, 9326, 2514, 2523], - [ - 0, 6041, 1192, 2020, 2675, 2205, 4042, 668, 12444, 4468, 4474, 4508, 2151, 1894, 15275, 91, 53, 5087, 2990, - 3123, 4864, 4131, 15276, 4057, 15277, 811, 1652, 816, 15273 - ], - "next-seo", - "-async", - [2, 3830, 9328], - [3, 3968, 10], - "ract", - "-excerpt", - [2, 9331, 9332], - [2, 9330, 9333], - "rehype-p", - "retty-code", - [2, 9335, 9336], - "matter", - "frontmatter", - [2, 3986, 9339], - "remark-h", - "eading-id", - [2, 9341, 9342], - "link-", - "rewrite", - [2, 9344, 9345], - [2, 3986, 9346], - "shiki", - [1, 2343, 9356], - "-themer", - [2, 4383, 9350], - "virtual-", - [2, 9352, 5260], - [2, 4670, 9353], - "zustand", - [0, 9369, 9370, 9371, 2443], - [2, 4860, 4349], - "tra-watch-webpack-plugin", - [2, 8773, 9358], - [3, 7634, 10], - "-url-parse", - [2, 9360, 9361], - [2, 9099, 6892], - "@repo/eslint-config", - "@repo/", - [2, 4524, 1541], - [2, 9365, 9366], - [2, 9365, 7628], - [0, 2928, 32554], - [0, 11976, 15288, 8419, 4874, 7677, 37080, 8420, 4039, 4493, 91, 1984, 8422], - [0, 2325, 20164, 8436, 202, 10339, 8437, 1552, 3143, 8438, 9553, 8439, 8440, 8441, 8442, 8443], - [1, 2343, 9373], - [0, 9377, 9380, 9385, 2537], - [3, 5309, 9], - [2, 9374, 8924], - [2, 9374, 57], - [0, 9441, 15305, 15308, 15310], - "css-what", - "esthetic", - [0, 13614, 1159, 9254, 1855, 1177, 2011, 2133, 13619, 2708, 3410, 3421, 3431, 4103, 4389], - "builder", - "guides", - "demo", - "ng-doc", - [0, 5284, 5286, 3595, 676, 6716, 7239, 6714, 6715, 7162, 1417, 7272, 3046, 6830], - [1, 2343, 9387], - [0, 0, 8134, 9388, 2537], - [0, 1420, 15320, 15318, 15321, 13230, 15322, 1758, 4545, 15323, 1871, 2585, 6270, 15324, 15326], - [1, 2343, 9390], - [0, 0, 0, 9391, 2537], - [0, 12080, 12075, 8221, 1388], - [1, 2343, 9399], - [2, 3964, 1671], - "has-p", - [2, 9394, 3871], - [2, 2573, 9395], - [3, 9396, 11], - "eading-", - [0, 0, 0, 9410, 2523], - "eading-rank", - [2, 9397, 9400], - "rehype-m", - "inify-", - [2, 9403, 3661], - [2, 9402, 9404], - [3, 4555, 11], - [2, 9406, 7131], - [3, 9312, 9], - [2, 9408, 3958], - [0, 4231], - [1, 2343, 9412], - [0, 9413, 9418, 9419, 34352], - [0, 3299, 32944], - "ordinal", - [3, 6490, 12], - "as-promised", - [2, 9415, 9416], - [0, 4874, 15342, 2026, 2822, 2899, 3536, 4255, 4481, 91], - [0, 1424, 15344, 11812, 15345, 15346, 158, 11806, 2636], - "ethers", - "hat", - "hardhat", - "n.js", - [2, 4853, 9423], - [3, 634, 25], - [2, 9425, 9420], - [3, 634, 17], - "low-", - "low-imports", - [2, 1967, 9429], - [2, 9427, 9430], - [3, 9431, 31], - "-inter", - "nal-rules", - [2, 9433, 9434], - [2, 9422, 9435], - [2, 9432, 9436], - [1, 2343, 9442], - "ethereum", - "smart-contracts", - [2, 1417, 15307], - [0, 0, 9443, 9444, 2537], - [0, 1159, 1177, 1881, 1938, 2151, 2899, 2924], - [0, 2924, 1932, 15356, 1204, 3209], - [1, 2343, 9446], - [0, 0, 0, 9450, 2523], - "proggy", - "cacache", - "bin-links", - [0, 3521, 15361, 1973, 5472, 15362], - "treeverse", - "@npmcli/fs", - "walk-", - "up-path", - [2, 9453, 9454], - [2, 636, 3766], - [3, 643, 9], - "edact", - [2, 9457, 9458], - "npm-p", - "ick-manifest", - [2, 9460, 9461], - "-checks", - [2, 1161, 9463], - [2, 3382, 9464], - "promise-", - [1, 2343, 9482], - "call-limit", - [2, 9466, 9468], - [3, 2854, 15], - "nice", - [2, 9470, 9471], - "-conf", - "lict-json", - [2, 9473, 9474], - [2, 1644, 9475], - "package-", - [2, 9477, 1781], - [2, 636, 9478], - "common-", - "ance", - [0, 0, 9511, 9521, 2523], - "stor-path", - [2, 9481, 9483], - [2, 9480, 9484], - "read-p", - "ackage-json-fast", - [2, 9486, 9487], - "all-reject-late", - [2, 9466, 9489], - [3, 641, 9], - "ame-from-folder", - [2, 9491, 9492], - [3, 638, 9], - "etavuln-calculator", - [2, 9494, 9495], - [3, 548, 8], - "e-compare", - [2, 2703, 9498], - [2, 4284, 9499], - [2, 9497, 9500], - "json-p", - "arse", - "-even-better-errors", - [2, 9503, 9504], - [2, 9502, 9505], - "installe", - "d-package-contents", - [2, 9507, 9508], - [2, 636, 9509], - [0, 1414, 15370, 2899, 1177, 668, 2203, 15371, 1690, 1894, 442, 91, 15373, 15374, 5476, 1942, 15376, 811, 5478], - "tcompare", - "oss", - [2, 4641, 9513], - [2, 636, 9514], - [2, 636, 7625], - "minify-", - [3, 3396, 9], - [2, 9518, 6774], - [2, 9517, 9519], - [0, 1973, 6468, 1145, 5472, 1429], - [1, 2343, 9523], - [0, 9524, 9525, 9526, 2523], - [0, 15373], - [0, 1414, 1429, 2899, 1177, 2203, 1894, 442], - [0, 1429, 15385, 1388, 1149, 5472, 5710, 6567, 14833], - [2, 664, 591], - [1, 2343, 9529], - [0, 0, 9530, 9531, 34352], - [0, 3095, 2899, 1429], - [0, 1429, 3495, 15393], - [1, 2343, 9533], - [0, 0, 9534, 9535, 34352], - [0, 1429, 2899, 2759, 1596, 14942, 15398], - [0, 1429, 15385, 15400, 1435, 6793, 1932, 15402, 1697, 15403, 3529, 9549, 7015, 15405], - [3, 9479, 9], - "-spawn", - [2, 2751, 9537], - [2, 9536, 9538], - [1, 2343, 9541], - [0, 0, 9543, 9544, 4139], - "spawk", - [0, 1414, 1906, 1166, 4481, 2020, 3130, 3077, 15411, 4874, 6271], - [ - 0, 1473, 7208, 1512, 7009, 7201, 200, 1871, 1111, 590, 592, 6621, 6983, 6616, 7244, 4166, 4744, 3073, 6807, - 6876, 2585 - ], - [1, 2343, 9546], - [0, 0, 9571, 9581, 2399], - "innertext", - "highlights", - "similar", - "similarity", - [3, 2954, 9], - [2, 9551, 2714], - "ttl", - [2, 4635, 9553], - "dart", - [2, 9551, 9555], - "glsl", - [2, 9551, 9557], - "haxe", - [2, 9551, 9559], - "rust", - [2, 9551, 9561], - [2, 3064, 2204], - "erlang", - [2, 9551, 9564], - [2, 9551, 4333], - "-tokens", - [2, 9548, 9567], - "atom-language-diff", - [3, 9569, 14], - [0, 1166, 1178, 1596, 15418, 1177, 15421, 2323, 15423, 2384, 2494, 2510, 15424, 1209, 3421, 3756], - "nginx", - [2, 9570, 9572], - "url-t", - "o-object", - [2, 9574, 9575], - [2, 2287, 9576], - [3, 3114, 13], - "xpand-tabs", - [2, 9578, 9579], - [0, 1438, 3778, 1179, 1973, 15426, 1213, 15427, 15428], - "-headers", - [2, 7189, 9582], - [2, 3108, 9583], - [1, 2343, 9589], - "oniguruma", - "-stdout", - [2, 9261, 9587], - [0, 0, 0, 9590, 2523], - [0, 1444, 15321, 6270, 353, 15320, 15326, 15436, 15437, 15439], - "readme", - [1, 2343, 9596], - "formatted", - " highlighting", - [2, 5341, 9594], - [0, 9597, 9598, 2514, 2537], - [0, 15444, 9632, 1556, 15447, 6041, 15448, 15449, 3445, 3510, 15450, 15451, 4135, 15452], - [0, 4874, 5254, 7677, 1177, 1905, 2807, 1894, 4257, 91, 4543, 1984], - [1, 2343, 9600], - [0, 9601, 9602, 9603, 2537], - [0, 15458], - [ - 0, 811, 15460, 8850, 816, 842, 1006, 15463, 1009, 1011, 15465, 15467, 15469, 1540, 1596, 1610, 1177, 15471, - 1927, 1937, 1948, 1999, 2070, 2765, 2766, 2297, 2881, 2886, 2891, 2895, 2898, 6387, 2910, 15475, 2923, 5303, - 3220, 3222, 3536, 4042, 4052, 6390, 15478, 4073, 91, 4747 - ], - [0, 1424, 15480, 2382, 15481, 12075, 6398], - [1, 2343, 9605], - [0, 9606, 9607, 9608, 2443], - [0, 3493, 4548, 15488, 15487, 2654, 15486, 1754, 15502, 15491, 15499, 15495], - [ - 0, 4494, 4483, 2675, 2832, 1177, 2814, 1984, 2203, 1894, 4441, 442, 91, 4874, 2990, 13204, 19438, 15504, 1953, - 15505, 4523, 7677, 1942, 22839, 1982, 3703, 15507, 1895 - ], - [0, 15512, 2814, 3585, 15514, 57, 965, 6523, 1936], - [1, 2343, 9610], - [0, 9611, 9612, 9613, 2523], - [0, 1615, 15526, 3734], - [0, 1173, 14184, 1235, 1267, 1429, 1177, 2272, 2899], - [0, 1451, 3729, 6567], - [1, 2343, 9615], - [0, 9616, 9617, 9618, 2537], - [ - 0, 97, 15533, 8597, 15538, 13042, 1156, 1325, 15540, 1461, 1505, 12160, 1582, 1593, 1603, 15541, 15545, 15547, - 15548, 13047, 15550, 5100, 15551, 15553, 2752, 2822, 15554, 2272, 15555, 15556, 12172, 3220, 15559, 1894, 11196, - 15560, 15562, 3775, 11219, 11363, 15566, 15568, 15570, 15573, 3843, 3847, 15575, 15578, 3876, 3893, 3913, 4023, - 15579, 11264, 4163, 15580, 4484, 4545, 4649, 3348 - ], - [ - 0, 53, 61, 71, 73, 76, 78, 5806, 13052, 5835, 15585, 83, 5850, 5853, 87, 90, 7833, 7839, 7840, 11275, 4859, - 15587, 15592, 4863, 15594, 15596, 5087, 15598, 4870, 15600, 15602, 12179, 4880, 15605, 4883, 15606, 15607, - 11322, 1009, 1011, 1110, 1165, 1170, 1175, 1178, 1193, 1195, 1205, 13080, 5098, 15609, 15611, 15612, 15613, - 1426, 1437, 13086, 1525, 1610, 1628, 4912, 1639, 11336, 13093, 1843, 1845, 8160, 1177, 1879, 1895, 1922, 1938, - 1939, 1947, 1948, 1959, 15615, 2054, 2060, 11345, 2092, 2148, 2193, 2070, 2323, 2338, 2510, 13099, 2529, 2675, - 2686, 2697, 15616, 1192, 2832, 5102, 695, 13115, 2990, 1209, 11357, 13119, 15618, 13123, 3177, 3183, 3188, 3190, - 3191, 3213, 3216, 3222, 3427, 3463, 3561, 3618, 3720, 11204, 15619, 15622, 11362, 89, 3807, 3810, 3817, 3820, - 5106, 5108, 15624, 3846, 15627, 9340, 3992, 13124, 13127, 8304, 13128, 4039, 13129, 15629, 4320, 11384, 11389, - 4323, 11396, 4328, 4409, 4431, 4469, 91, 4549, 4027, 15630, 15632, 2924, 15635, 4689, 13152, 11401, 5038, 3354 - ], - [0, 15637, 4964, 89, 5128, 4627, 4963, 181, 5130, 4967], - [1, 2343, 9620], - [0, 9629, 9630, 9631, 2537], - "Monorepo", - "Angular", - "Web", - "Node", - "Nest", - "Jest", - "Cypress", - "CLI", - [0, 15648], - [0, 15645, 4874, 1894, 4448, 91, 10761], - [0, 2150, 2282, 6720, 7158, 6929, 2090, 2154], - "confbox", - [1, 2343, 9634], - [0, 0, 9635, 9636, 2523], - [0, 1470, 2675, 23535, 4255, 4389], - [0, 15656, 15658, 11857, 1973, 13735], - [2, 13512, 9638], - "-old", - [1, 2343, 9640], - [0, 9641, 0, 9642, 2523], - [ - 0, 182, 148, 6164, 164, 167, 6215, 137, 27531, 6127, 29468, 159, 15664, 177, 187, 153, 162, 180, 185, 191, 157, - 15667, 15670, 15672, 27537, 140, 15676, 6200, 6166, 143, 15678, 171, 116, 15681, 150, 155, 29542, 15685, 15687, - 6217, 15690, 15692, 122, 169, 15695, 119, 15697, 15700, 6173, 15703, 146, 6133, 6158, 15706, 15712, 111, 6168, - 15714, 15716, 174, 15720, 15724 - ], - [0, 6092, 1459, 6094, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130], - [1, 2343, 9644], - [0, 0, 9645, 9646, 2523], - [0, 4481, 4042, 4441, 2665, 3117, 8850, 811, 816], - [0, 89, 1623, 5256, 6848, 1461, 614, 6435], - "EsBuild", - "Front-end", - "Backend", - [1, 2343, 9651], - [0, 9652, 9653, 9655, 2523], - [0, 4227], - [0, 1389, 1177, 1881, 2659, 3297, 4153, 4616], - "linter", - [0, 1623, 2632], - [1, 2343, 9660], - "Lint", - "ESLint", - "Testing", - [0, 9661, 9662, 9663, 2399], - [0, 1700], - [ - 0, 48, 53, 87, 92, 15742, 5087, 4874, 15745, 1193, 1503, 1610, 1701, 1177, 2020, 2675, 1192, 2990, 2991, 3377, - 1894, 3921, 4135, 15747, 91, 2924 - ], - [0, 2924, 1932, 4050, 202], - [1, 2343, 9665], - [0, 0, 0, 9666, 2523], - [0, 1111, 1468, 7009], - "Express", - [1, 2343, 9669], - [0, 9670, 8134, 9671, 4139], - [0, 15757, 4025], - [0, 1468, 1237, 3209, 1204, 2325, 15759, 15760, 15761, 5669, 6865, 7293, 6790, 2145], - [1, 2343, 9674], - "js-tokens", - [0, 9679, 0, 9682, 2523], - "const-enum", - [2, 1199, 9675], - [2, 4524, 6774], - [2, 1226, 9677], - [0, 2070, 2021], - "Swc", - "Tsc", - [0, 200, 9753, 15767, 15769, 15768, 7058, 7201, 15770, 15771, 15774, 1523, 15776], - [1, 2343, 9684], - [0, 0, 9685, 9686, 4139], - [0, 1166, 91, 1906], - [0, 200, 5403, 14907, 7009, 6048, 7201, 6938, 3656, 14908, 2585, 1781], - "@nestjs/schematics", - "@phenomnomnominal/tsquery", - "@date-fns/tz", - [1, 2343, 9691], - [0, 9693, 9694, 9695, 2537], - [3, 23750, 37, 8], - [0, 2353, 1856, 15786, 13824, 15788], - [0, 1177, 15793, 15797, 15801, 2675, 2990, 3421, 15804, 15805], - [0, 1111, 1473, 7201, 7009, 200, 4166, 3073, 6807, 4744], - [1, 2343, 9697], - [0, 9698, 9699, 9700, 2443], - [0, 4035], - [0, 4874, 1166, 91, 1906], - [0, 200, 13006, 1111, 15813, 5876, 15814, 15815, 6048, 7009, 7201, 6621, 4166, 6876], - [1, 2343, 9702], - [0, 0, 0, 9703, 34352], - [0, 200], - [2, 689, 2656], - [3, 691, 8], - [2, 9705, 3320], - "help", - [2, 689, 9707], - [1, 2343, 9713], - [3, 691, 14], - "plugins", - [2, 9710, 9711], - [0, 0, 9715, 9716, 2537], - "fancy-test", - [0, 1166, 3077, 15826, 91, 1906], - [0, 200, 1478, 6787, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921, 1781], - [1, 2343, 9718], - [0, 9719, 9720, 9726, 2399], - [0, 1512], - [0, 4170, 15833], - [3, 4866, 9], - "dent-string", - [2, 9721, 9722], - "xyquire", - [2, 6508, 9724], - [0, 200, 1512, 176], - [1, 2343, 9728], - [0, 9729, 9732, 9751, 2523], - [0, 1209, 4290, 1512], - "clean-stack", - "widest-line", - [0, 15841, 1429, 1481, 1596, 15843, 15844, 2323, 2436, 2463, 2541, 4193, 4196], - "rett", - "ier-config", - [2, 9733, 9734], - [2, 9705, 9735], - [2, 689, 1973], - [3, 4859, 9], - "ean-stack", - [2, 9738, 9739], - "@types/ejs", - "npapi", - [2, 5088, 9742], - [3, 9240, 10], - "ports-color", - [2, 9744, 9745], - [3, 7822, 10], - "dwrap", - [2, 9747, 9748], - "madge", - [0, 202, 1523, 3924, 200, 176, 15846, 15847, 3656, 1512, 10052], - " line", - [2, 1523, 9752], - [1, 2343, 9755], - [0, 9756, 9757, 9751, 2399], - [0, 4290], - [0, 1481, 1177, 1895, 1955, 1192, 15853, 15854, 1894], - [1, 2343, 9759], - [0, 9761, 8134, 9762, 2399], - [2, 1890, 4406], - [0, 4208, 4290], - [0, 15862, 15864, 2585, 7051, 6913, 200, 7009, 6048, 4166, 4289, 1111, 1871], - [1, 2343, 9764], - [0, 9775, 9795, 6936, 2537], - "paginate-rest", - [2, 1186, 9765], - [2, 7724, 9766], - [3, 9767, 16], - "request-", - "request-log", - [2, 9768, 9770], - [3, 9771, 18], - "st-endpoint-methods", - [2, 9772, 9773], - [ - 0, 1437, 4484, 2755, 1209, 4135, 2822, 15869, 2151, 4294, 688, 1110, 9730, 15871, 1107, 13223, 4290, 15872, - 15873, 2709, 15876, 4351, 15877, 15880, 15883, 15887 - ], - "-action", - "auth-action", - [2, 7724, 9777], - [3, 9778, 15], - "pp", - [2, 9779, 9780], - [2, 1182, 2995], - [2, 7724, 9782], - [3, 692, 11], - [2, 9784, 5460], - [2, 7724, 2190], - "update-", - "vers", - "in-files", - [2, 7854, 9789], - [2, 9788, 9790], - [2, 9787, 9791], - [2, 6324, 9792], - [2, 4131, 9793], - [ - 0, 1429, 1170, 2899, 1177, 4474, 9714, 91, 4856, 4874, 6503, 4870, 5254, 7637, 4864, 1431, 15891, 15893, 9740, - 1891, 15897, 9746, 9417, 1893 - ], - "octokit", - [3, 3450, 10], - [1, 2343, 9799], - [0, 9800, 9801, 9802, 2523], - [0, 7103], - [ - 0, 816, 10817, 5087, 4870, 4874, 27744, 1009, 1011, 15903, 15906, 1177, 15909, 1959, 2188, 1192, 1209, 4042, - 15911, 4468, 4474, 91 - ], - [0, 200, 91, 57, 7119, 7233, 7058, 5675, 1523], - "action-menu", - [2, 698, 9803], - [3, 9804, 21], - "sheet", - [2, 9805, 9806], - [3, 9804, 15], - "lert", - [2, 9808, 9809], - [2, 9808, 2944], - "nchor", - [2, 9808, 9812], - "rea", - [2, 9808, 9814], - "chart", - "flowchart", - [2, 5745, 9817], - [2, 9808, 9818], - "utocomplete", - [2, 9808, 9820], - [1, 2343, 9823], - [0, 9824, 9825, 9827, 2523], - [0, 15917, 1631, 15918], - [ - 0, 53, 87, 1195, 1429, 1610, 1177, 1881, 1895, 1938, 1955, 2675, 2297, 2878, 2881, 2900, 2918, 2925, 2990, 2899, - 1894, 4193, 4481, 4537, 2924, 4677 - ], - "vatar", - [0, 1492, 1585, 15921], - "badge", - [2, 698, 9828], - [3, 9829, 16], - [1, 2343, 9832], - [0, 9836, 9839, 9881, 2537], - "se-select", - [2, 9830, 9833], - [3, 9829, 15], - [0, 34216, 2020, 32794, 2755, 15926, 28429], - "readcrumb", - [2, 9835, 9837], - [0, 1166, 1906], - "-item", - [2, 9838, 9840], - "ulletin-board", - [2, 9835, 9842], - [3, 9843, 16], - "tton", - [2, 9844, 9845], - "-group", - [2, 9846, 9847], - [2, 698, 9026], - [2, 9849, 8657], - [3, 9850, 23], - [2, 9851, 6624], - [3, 9849, 16], - "rd", - [2, 9853, 9854], - [2, 9855, 9847], - [3, 9856, 19], - [2, 9857, 1283], - [3, 9855, 17], - "ousel", - [2, 9859, 9860], - [2, 9861, 9840], - "scader", - [2, 9853, 9863], - "-menu", - [2, 9864, 9865], - [3, 9866, 24], - "obile", - [2, 9867, 9868], - [3, 9866, 23], - [2, 9870, 202], - "panel", - [2, 9870, 9872], - [2, 9870, 1631], - [2, 9870, 6624], - [3, 9849, 15], - "ell", - [2, 9876, 9877], - "hart", - [2, 9876, 9879], - [0, 1492, 1585, 15928, 15929, 15930, 3917, 6033, 15931, 1490, 15932, 15933], - [1, 2343, 9883], - [0, 9884, 9885, 6162, 2537], - [0, 4290, 4294, 4726], - [0, 4874, 1009, 1011, 1414, 1429, 1437, 1610, 1177, 1938, 1953, 2321, 2899, 4039, 8689, 91], - [1, 2343, 9887], - [0, 0, 9888, 2514, 2487], - [0, 2276], - [1, 2343, 9890], - [0, 0, 9891, 9893, 2399], - [0, 1999, 4579, 4072], - "gauge", - [0, 5256, 6848, 1461], - [1, 2343, 9895], - [0, 9896, 0, 9897, 2523], - [0, 1474], - [0, 15953, 9628, 14777, 15955, 1478, 9892, 3924, 7201, 1398], - [1, 2343, 9899], - [0, 0, 9900, 9901, 2487], - [0, 1389, 15960, 2899, 3261], - [0, 1149, 2124, 1179, 15962, 15964], - [1, 2343, 9903], - [0, 9904, 9905, 9907, 2537], - [0, 2927], - [0, 4170, 2899, 1499], - "pie", - [0, 7009, 7201, 3741, 8622, 6875, 10098, 1499], - [1, 2343, 9909], - [0, 9034, 9910, 9911, 2523], - [0, 620, 3123], - [0, 1973, 2022, 6468], - [1, 2343, 9913], - [0, 9914, 9915, 9916, 2443], - [0, 6478, 15980, 2822, 15984, 15985], - [0, 1177, 1895, 2675, 1192, 2990, 3203, 1894], - [0, 4504, 15988, 15990, 1503], - [1, 2343, 9918], - [0, 9919, 9920, 9921, 2487], - [0, 15997, 15999, 16000, 16002, 16003, 16005, 16006], - [0, 16009], - [0, 6038, 1501], - [1, 2343, 9923], - [0, 0, 9924, 9926, 2399], - [0, 1734, 16015, 2600, 3105, 4545], - "fall", - [0, 5284, 1351, 1509, 4643], - [1, 2343, 9928], - [0, 0, 9929, 9926, 2537], - [0, 53, 87, 10688, 1505, 1734, 2600, 16021, 3105, 3758, 4545, 2924], - [1, 2343, 9946], - [3, 9880, 16], - "eckbox", - [2, 9931, 9932], - "-button", - [2, 9933, 9934], - [3, 9935, 23], - [2, 9936, 7227], - [2, 9876, 7877], - "lapse", - [2, 9938, 9939], - [2, 9940, 9840], - [3, 9941, 23], - "ition", - "transition", - [2, 9942, 9944], - [0, 9972, 9975, 10072, 2537], - "icker", - "or-picker", - [2, 9938, 9948], - [3, 9949, 20], - "select-", - [2, 9951, 9872], - [2, 9950, 9952], - "umn-list-group", - [2, 9938, 9954], - [3, 9955, 26], - [2, 9956, 5401], - [3, 9938, 16], - "mpany", - [2, 9958, 9959], - "nfig-", - "provider", - [2, 9961, 9962], - [2, 9958, 9963], - [3, 9964, 17], - "tainer", - [2, 9965, 9966], - "untry", - [2, 9958, 9968], - "rop", - [2, 9876, 9970], - [0, 6271, 11421], - "urrency", - [2, 9876, 9973], - [0, 2899, 4481, 1906], - "date-panel", - [2, 698, 9976], - [3, 9977, 20], - [2, 9978, 9947], - "-mobile-", - "first", - [2, 9980, 9981], - [2, 9979, 9982], - [3, 9977, 19], - [2, 9984, 6754], - [2, 9984, 176], - [3, 9977, 15], - "ept", - [2, 9987, 9988], - "ialog-box", - [2, 9987, 9990], - [3, 9991, 21], - [2, 9992, 1631], - [3, 9991, 16], - "vider", - [2, 9994, 9995], - "rawer", - [2, 9987, 9997], - [3, 9998, 16], - "op-roles", - [2, 9999, 10000], - [3, 10001, 19], - "times", - [2, 10002, 10003], - [3, 10001, 18], - [2, 10005, 2971], - [2, 10006, 9840], - [3, 10007, 23], - [2, 10008, 4403], - "ynamic-", - "scroller", - [2, 10010, 10011], - [2, 9987, 10012], - [2, 10013, 9840], - "espace", - [2, 698, 10015], - [3, 10016, 15], - "xception", - [2, 10017, 10018], - "fall-menu", - [2, 698, 10020], - [3, 10021, 15], - "ile-upload", - [2, 10022, 10023], - [3, 10024, 17], - [2, 10025, 2389], - [2, 10026, 8657], - [3, 10027, 22], - "ox", - [2, 10028, 10029], - [3, 10027, 21], - [2, 10031, 9872], - "loat-button", - [2, 10022, 10033], - [3, 10034, 19], - "bar", - [2, 10035, 10036], - "ing-", - "button", - "ing-button", - [2, 10035, 10040], - [3, 10034, 17], - "wchart", - [2, 10042, 10043], - [3, 10034, 16], - "uent-editor", - [2, 10045, 10046], - [2, 10022, 3469], - [2, 10048, 9840], - "ullscreen", - [2, 10022, 10050], - "grid", - [2, 698, 10052], - "-column", - [2, 10053, 10054], - [3, 10055, 19], - "manager", - [2, 10056, 10057], - "toolbar", - [2, 10056, 10059], - [3, 10053, 15], - "uide", - [2, 10061, 10062], - "hrapprover", - [2, 698, 10064], - [2, 698, 158], - "-viewer", - [2, 10066, 10067], - [3, 10066, 15], - "ndex-bar", - [2, 10069, 10070], - [0, 1473, 7208, 1623], - [3, 10071, 16], - "put", - [2, 10073, 10074], - "p-address", - [2, 10069, 10076], - [2, 698, 5433], - [3, 10078, 16], - "yout", - [2, 10079, 10080], - [3, 10078, 15], - [2, 10082, 2716], - [2, 10083, 9865], - [1, 2343, 10086], - [0, 0, 0, 10090, 2523], - "oading", - [2, 10082, 10087], - [3, 10088, 16], - [0, 7009, 592, 1473, 1111], - "cales", - [2, 10089, 10091], - "gon-user", - [2, 10089, 10093], - [3, 10094, 18], - "ut", - [2, 10095, 10096], - "mask", - [2, 698, 10098], - [3, 10099, 15], - "enu", - [2, 10100, 10101], - [3, 10102, 16], - "ssage", - [2, 10103, 10104], - "ilestone", - [2, 10100, 10106], - [3, 10107, 16], - "nd-map", - [2, 10108, 10109], - [1, 2343, 10112], - [0, 0, 10113, 10120, 2523], - [0, 1177, 1886], - [2, 10100, 3852], - [3, 10114, 16], - "nth-range", - [2, 10115, 10116], - [3, 10117, 20], - [2, 10118, 176], - [0, 1111, 7009, 1512], - [1, 2343, 10122], - [0, 10140, 10184, 10220, 2443], - "nav-bar", - [2, 698, 10123], - [3, 10124, 18], - [2, 10125, 4403], - [3, 10124, 15], - [2, 10127, 2304], - "umeric", - [2, 10127, 10129], - [2, 698, 5675], - [2, 10131, 9847], - "pager", - [2, 698, 10133], - [2, 10134, 9840], - [3, 10134, 16], - [2, 10136, 7251], - [3, 10134, 15], - [2, 10138, 9947], - [0, 4294, 16041], - "op-upload", - [2, 10138, 10141], - [3, 10142, 17], - [2, 10143, 8622], - [2, 10143, 6038], - [2, 10143, 2883], - [2, 10143, 2104], - "rogress", - [2, 10138, 10148], - "ull-refresh", - [2, 10138, 10150], - "qr-code", - [2, 698, 10152], - [3, 10153, 15], - "uarter-panel", - [2, 10154, 10155], - [3, 10156, 16], - "ery-builder", - [2, 10157, 10158], - [3, 697, 15], - "adio", - [2, 10160, 10161], - [2, 10162, 9934], - [3, 10163, 20], - [2, 10164, 7227], - [3, 10162, 16], - [2, 10166, 6864], - [3, 697, 16], - "cord", - [2, 10168, 10169], - [3, 10170, 17], - "ycle-scroller", - [2, 10171, 10172], - "ich-text-editor", - [2, 10160, 10174], - [3, 10175, 16], - "ver", - [2, 10176, 10177], - "oles", - [2, 10160, 10179], - [3, 10180, 16], - "w", - [2, 10181, 10182], - [0, 1173, 1267, 1437, 4387, 4389], - "scroll-text", - [2, 698, 10185], - [3, 10186, 20], - [2, 10187, 10036], - [3, 10186, 15], - "earch", - [2, 10189, 10190], - [3, 10191, 16], - [2, 10192, 4021], - "-dropdown", - [2, 10193, 10194], - [3, 10195, 21], - [2, 10196, 5131], - [2, 10196, 6624], - "ed-box", - [2, 10193, 10199], - [2, 10189, 1580], - "keleton", - [2, 10189, 10202], - [2, 10203, 9840], - "lider", - [2, 10189, 10205], - [2, 10206, 9934], - [2, 10207, 9847], - "plit", - [2, 10189, 10209], - "-list-item", - [2, 1902, 10211], - [2, 10189, 10212], - [3, 10213, 17], - "tistic", - [2, 10214, 10215], - [3, 10213, 16], - "eps", - [2, 10217, 10218], - [0, 6922, 2585, 1111, 7201, 7009, 4719, 176], - [1, 2343, 10242], - "witch", - [2, 10189, 10222], - [3, 700, 15], - "ab-item", - [2, 10224, 10225], - [3, 10226, 17], - [2, 10227, 10036], - [2, 10228, 9840], - [2, 10227, 2699], - [2, 10227, 591], - [3, 10226, 16], - "g", - [2, 10232, 10233], - [2, 10234, 9847], - "ext-popup", - [2, 10224, 10236], - "ime", - [2, 10224, 10238], - "-line", - [2, 10239, 10240], - [0, 0, 10243, 10265, 2487], - [0, 2025, 2272, 2899], - [3, 10241, 19], - [2, 10244, 9872], - [3, 10245, 20], - [2, 10246, 9947], - [2, 10247, 701], - [2, 10244, 6754], - [2, 10244, 1631], - [3, 10250, 20], - "pinner", - [2, 10251, 10252], - "line-item", - [2, 10239, 10254], - "oast", - [2, 10224, 10256], - [3, 10257, 16], - "ggle-menu", - [2, 10258, 10259], - "oltip", - [2, 10258, 10261], - "p-box", - [2, 10258, 10263], - [0, 200, 1523, 3504], - "ransfer", - [2, 10224, 10266], - "-panel", - [2, 10267, 10268], - [3, 10267, 16], - "ee", - [2, 10270, 10271], - [2, 10272, 9865], - [3, 10273, 19], - [2, 10274, 1631], - [2, 698, 9229], - "-dragger", - [2, 10276, 10277], - [3, 10278, 21], - [2, 10279, 3392], - [3, 10276, 15], - "ser", - [2, 10281, 10282], - "-account", - [2, 10283, 10284], - [3, 10285, 19], - [1, 2343, 10288], - [0, 10297, 10298, 10305, 2443], - "contact", - [2, 10286, 10289], - [2, 10286, 3193], - [2, 10291, 9847], - [2, 10286, 163], - "watermark", - [2, 698, 10294], - [3, 10295, 15], - [0, 16053, 16056, 3025, 16057], - [0, 1187], - "izard", - [2, 10296, 10299], - "year-range", - [2, 698, 10301], - [3, 10302, 19], - [2, 10303, 176], - [0, 6478, 1644, 7233, 7058, 5675, 14690, 57, 7119, 200, 1523, 3924], - [3, 1533, 10], - [2, 10306, 6082], - "vue-c", - [2, 10308, 544], - "opentiny", - "less-c", - [2, 10311, 544], - [2, 8924, 10312], - [3, 3197, 10], - [2, 10314, 544], - [1, 2343, 10317], - [0, 10318, 10319, 10320, 2537], - [0, 16053, 16064, 16066, 16057], - [0, 811, 816, 2829, 4042, 1187], - [0, 7009, 9753, 1521, 1179], - "esno", - [1, 2343, 10323], - [0, 0, 10324, 10325, 2537], - [0, 4481, 1192, 1177, 2203, 4468, 1894, 442, 91, 5087, 4874, 4523, 1939, 1895], - [0, 1525, 1523, 5675, 57, 200, 7233, 7058, 6478], - [3, 2517, 9], - [2, 10326, 134], - [2, 2522, 8754], - [1, 2343, 10330], - [0, 10331, 10332, 10333, 2523], - [0, 2070, 1680, 1209, 16085, 16078, 2151, 2720, 3183, 7915, 4296, 1707, 16082, 4300, 1652], - [ - 0, 3421, 1429, 3348, 2899, 4193, 2194, 4135, 1503, 3363, 48, 2708, 3752, 53, 94, 4131, 87, 3200, 1208, 16092, - 16088, 16090, 78, 1570 - ], - [0, 1528, 3721, 1671, 16096, 1527], - [1, 2343, 10335], - [0, 10336, 10338, 5265, 2537], - [0, 192, 6303], - "otterhttp", - [0, 6306, 6307, 26379], - "node.js", - "web framework", - [1, 2343, 10343], - [3, 17194, 17], - [0, 0, 10344, 10358, 2487], - [ - 0, 1173, 1178, 1198, 1230, 13982, 1264, 1280, 1503, 1610, 1742, 1177, 1895, 1955, 1192, 3170, 1894, 4039, 4042, - 4045, 4067, 4077, 4706 - ], - "header", - "-range-parser", - [2, 10345, 10346], - [2, 704, 1080], - [3, 703, 13], - "ntent-type", - [2, 10349, 10350], - [2, 988, 2706], - [2, 704, 10352], - [2, 704, 1000], - [2, 704, 1002], - [3, 706, 12], - [2, 10356, 995], - [ - 0, 4552, 1172, 6778, 16107, 5194, 16108, 16109, 1936, 8958, 16110, 3924, 16111, 3250, 16112, 3374, 6985, 16113, - 16114, 16115, 1871, 16116, 4301, 10381, 16117, 1283 - ], - [1, 2343, 10360], - [0, 0, 9839, 10361, 2487], - [0, 2013, 13771, 2018, 6868, 15535, 11631, 16123], - [1, 2343, 10365], - "es-escape-html", - [3, 10351, 19], - [0, 10375, 10377, 10378, 2523], - "disposition", - [2, 10364, 10366], - "encode", - "encode-url", - [2, 704, 10369], - [3, 10370, 12], - "rrors", - [2, 10371, 10372], - [2, 704, 4590], - [0, 1413, 16130, 1676, 12627, 16128, 4100, 4590], - "res", - [0, 1087, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342], - [0, 1536, 16518, 25386, 2663, 2026, 21665, 27, 3101], - [1, 2343, 10380], - [0, 10383, 9264, 2514, 2537], - "tag", - [2, 10371, 10381], - [0, 16136, 2713, 3923, 7231], - "send-file", - [1, 2343, 10386], - [0, 10387, 10388, 10390, 2537], - [0, 4094, 1437, 4747, 4459, 4165, 4351], - [ - 0, 2675, 1177, 1984, 668, 2203, 1894, 442, 91, 4874, 2990, 6479, 4892, 16151, 16150, 4523, 16149, 7677, 4103, - 9746, 22839, 16144, 1895, 1955, 16152, 23753, 10964 - ], - [2, 712, 1732], - [0, 16159, 13792, 12804, 1540, 1523, 16160], - [1, 2343, 10394], - "fined", - "undefined", - [0, 10395, 10396, 10398, 2537], - [0, 2856], - [0, 4874, 1414, 1509, 16166, 34218, 16167, 3583, 705, 4135, 4452, 4474, 91, 4545, 16168, 4745], - "randexp", - [0, 12084, 1541, 8309, 16172, 16174, 1263, 6639], - [3, 10389, 22], - "js-prettier-config", - [2, 10399, 10400], - "i-color", - [2, 9738, 10402], - [3, 7744, 9], - "tp-proxy", - [2, 10404, 10405], - "isnil", - [2, 6308, 10407], - [3, 4874, 9], - "@types/nock", - [1, 2343, 10412], - [0, 10414, 9839, 10415, 2537], - "@types/ramda", - [0, 16181, 8098, 2215, 34027, 16184], - [0, 1541, 1542, 13901, 8309, 6937, 16188, 1781, 2382, 16189, 7007, 14745], - "-and-tag-version", - [2, 1528, 10416], - "hai-friendly", - [2, 4914, 10418], - [3, 3028, 12], - [1, 2343, 10422], - [0, 10423, 10424, 10425, 2537], - [0, 1676, 2099, 3494, 4578], - [0, 1177, 2899, 3421, 4342], - [0, 5130, 5122, 2663, 1544, 16196], - "pact", - "pact-js", - " testing", - "ract testing", - [2, 3109, 10429], - "r driven testing", - [2, 6613, 10431], - [1, 2343, 10434], - [0, 0, 10435, 10436, 2443], - [0, 4616], - [0, 1544, 2026, 16202, 6347], - [1, 2343, 10438], - [0, 0, 10439, 2514, 2537], - [0, 1177, 1192, 4193], - [1, 2343, 10444], - "default", - "waapi", - "urls", - [0, 10445, 10447, 10448, 2537], - [0, 1676, 16211], - "arguments", - [ - 0, 11436, 192, 5467, 19181, 442, 5245, 6494, 7808, 4874, 9240, 1009, 1011, 1166, 1414, 1503, 1177, 1895, 1930, - 1955, 2026, 2040, 2193, 2675, 2990, 3230, 3400, 3446, 1894, 4257, 4342, 1531, 4508, 91 - ], - [0, 1544, 1550, 3230, 1577, 2026], - [1, 2343, 10450], - [0, 0, 10451, 10452, 2523], - [0, 11976, 7808, 4874, 7677, 2040, 4474, 91, 1983, 26744, 1984], - [0, 1544, 1552, 1577, 2026], - [1, 2343, 10454], - [0, 0, 10455, 10456, 4139], - [0, 8646, 4874, 7677, 1446, 16230, 1177, 1905, 16232, 1894, 16234, 15452, 4290, 91, 4543, 1984], - [0, 7201, 2942, 16237, 16238, 200, 14566, 4549, 3741, 16239, 1671, 1851, 16240], - [1, 2343, 10458], - [0, 0, 10459, 10460, 2523], - [ - 0, 1906, 1166, 1758, 16257, 2746, 1797, 7614, 3754, 16272, 16249, 16262, 16264, 16268, 16270, 4371, 16277, - 16279, 2675, 16263, 89, 16278, 1177, 16260, 5304, 16267, 1209, 16269, 4135, 16274, 16276, 16281, 2114, 16261, - 16271, 2608, 3257, 3416, 16282, 3824, 2036, 3985, 16275, 4545, 16280, 53, 16259, 2990, 16265, 16245, 1506, - 16251, 16273, 16256, 16248, 90, 3995, 1909 - ], - [0, 16284, 1283, 6624], - [1, 2343, 10462], - [0, 0, 10463, 10464, 2487], - [0, 1414, 1177, 1903, 1938, 1948, 1954, 1958, 1970], - [0, 1560, 27, 16290, 10376], - [1, 2343, 10467], - "fd-package-json", - [0, 0, 10468, 10469, 2523], - [0, 3421, 2899, 1177, 1693, 1954, 1938, 1958, 1903, 1970], - [0, 1562, 27, 990, 10376, 16296], - [1, 2343, 10471], - [0, 10472, 0, 10473, 2537], - [0, 18186, 10466, 3157, 18183, 16309, 13848, 28401, 16322], - [0, 1566, 16094, 13729, 3073, 200], - [1, 2343, 10475], - [0, 10476, 0, 10477, 34352], - [0, 3157, 16330, 16329, 1566], - [0, 200, 13326, 1566, 16094, 13729, 3073], - [1, 2343, 10479], - [0, 10480, 0, 10481, 2443], - [0, 16337], - [0, 1566, 16341, 16342], - [1, 2343, 10483], - [0, 0, 10484, 10485, 2537], - [0, 16349, 4384], - [0, 6270, 12938, 4225, 3053, 1388, 1676], - [1, 2343, 10487], - [0, 0, 10488, 10489, 2523], - [0, 29867, 7677, 16356, 91, 1984], - [0, 977, 16358], - [1, 2343, 10491], - [0, 10492, 9025, 10493, 2537], - [0, 977, 1581], - [0, 977, 2663], - [1, 2343, 10495], - [0, 10496, 10497, 10498, 2399], - [0, 16358, 1676, 16128, 4100], - [0, 1544, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342], - [0, 1544, 2026, 2663, 1577], - [1, 2343, 10500], - [0, 0, 0, 10501, 2537], - [0, 977, 16375, 16376], - [1, 2343, 10503], - [0, 10504, 10505, 10506, 2537], - [0, 16382], - [0, 1389, 3183, 3294, 16384, 3460, 16389, 4535], - [0, 1492, 1585, 1388], - [1, 2343, 10508], - [0, 10509, 10510, 10511, 2537], - [0, 27921, 2200, 4121, 3369, 4143], - [ - 0, 1700, 1192, 2675, 3144, 1622, 1177, 1701, 2203, 16407, 2924, 1894, 1610, 48, 442, 1193, 91, 53, 4874, 2092, - 2990, 3400, 192, 1953, 27928, 4257, 87, 4523, 16396, 1939, 1942, 68, 1938, 16398, 20281, 1982, 1895, 1955, - 19344, 16400, 5467 - ], - [0, 2924, 1932, 16410, 7004, 1585], - [1, 2343, 10513], - [0, 10514, 10515, 2514, 2537], - [0, 2070, 3181, 3188, 16415, 4431, 4558, 4747], - [0, 4039, 4389, 4387], - [1, 2343, 10517], - [0, 0, 7923, 10518, 2537], - [0, 16421, 11194, 1179, 16423, 16424, 16425], - [1, 2343, 10520], - [0, 10521, 10522, 10523, 2537], - [0, 3044, 1588, 16432], - [0, 4880, 4883, 91, 89, 3824], - [0, 89, 91, 11194, 11255, 16435], - [1, 2343, 10525], - [0, 10526, 10527, 10528, 2537], - [0, 1543, 16446, 16449, 16444, 6038, 2020, 3368, 4135, 4375], - [0, 16454, 1414, 2765, 4037], - [0, 1591, 5576, 200], - [1, 2343, 10530], - [0, 0, 0, 10531, 2523], - [ - 0, 6570, 6964, 6789, 7221, 6746, 7011, 7194, 7087, 6839, 6860, 6918, 6620, 6777, 16461, 6748, 7171, 6894, 6945, - 6743, 7309, 6837, 6644, 6634, 7259, 6797, 7061, 6608, 16462, 6726, 6828, 7275, 6569, 7144, 7108, 7027, 7263, - 6923, 6854, 7134, 6762, 7042, 6818, 6677, 6422, 6805, 1858 - ], - [1, 2343, 10533], - [0, 10534, 10535, 10536, 2537], - [0, 3427, 4590], - [0, 1087, 1177, 2026, 2899, 3421, 4342], - [0, 1594, 2026, 1544, 2663], - [1, 2343, 10538], - [0, 10539, 10540, 10541, 2487], - [0, 16473, 2702, 2822, 16474], - [ - 0, 7637, 4874, 16478, 1009, 1011, 16480, 1610, 1177, 16482, 1895, 1915, 1938, 1954, 1985, 2675, 2990, 15757, - 1894, 16484, 91, 1984 - ], - [0, 3001, 8309, 1541], - [1, 2343, 10543], - [0, 10544, 10545, 10546, 2537], - [0, 2822, 16491, 16492, 3183, 705], - [0, 2899, 3421, 4170, 4172, 4193, 1906], - [0, 4504, 1596], - [1, 2343, 10548], - [0, 10549, 10550, 10551, 2537], - [0, 16499, 2205, 3157], - [0, 1166, 2020, 3505, 16330, 1906], - [0, 13326, 200, 1585, 16502, 16499, 2090, 1586, 1496, 2150, 3101, 2070, 16503, 3275, 2062, 3719, 2382, 1563, 16504], - [1, 2343, 10553], - [0, 10554, 10555, 10556, 2537], - [0, 2212, 16513, 1448, 16509, 16512, 2685, 16511], - [0, 1414, 1166, 4494, 3297, 4193, 1177, 2203, 442, 16515, 91, 4874, 4454, 4523], - [0, 5284, 1598, 16517, 15514, 15362, 2814, 6710, 27, 2671, 13333, 2212, 705, 1002, 11996, 16518], - "@epic-web/invariant", - [1, 2343, 10559], - [0, 0, 0, 10560, 2443], - [0, 1599, 16523, 16526, 16528, 16524, 16530, 16531, 16532, 13580, 16533, 16534, 16536, 16537], - [1, 2343, 10562], - [0, 10563, 10564, 10565, 2523], - [0, 16542, 2713, 13892, 16543, 16544], - [0, 13817, 4100, 4255, 4387, 4389], - [0, 1616], - [1, 2343, 10567], - [0, 10568, 10569, 10570, 2523], - [0, 3082, 3427], - [0, 1192, 3744, 89, 3824, 2924], - [0, 89], - [1, 2343, 10573], - "degit", - [0, 10574, 10575, 10576, 2399], - [ - 0, 63, 16560, 1462, 1532, 16563, 16566, 1676, 2105, 2185, 2205, 2212, 16568, 2709, 16570, 2743, 2812, 1209, - 3021, 3093, 3157, 16571, 13233, 16572, 3527, 3544, 3561, 16573, 16576, 16578, 4002, 4207, 4400, 4431, 4597 - ], - [0, 1149, 1610, 2099, 2182, 1192, 3297, 16581, 4151, 16584, 4278, 4603, 1906], - [0, 1604, 3403, 1623, 16587], - [1, 2343, 10578], - [0, 10579, 10580, 10581, 4139], - [0, 6501, 5303], - [ - 0, 192, 442, 16596, 16597, 16602, 6061, 16607, 6063, 6065, 16608, 16612, 842, 16145, 5087, 4874, 6513, 1610, - 1177, 1895, 1939, 1955, 2675, 1192, 2990, 1894, 4131, 4193, 91, 4523 - ], - [0, 1605, 16615, 16617, 16618, 4116, 16619, 16621], - [1, 2343, 10583], - [0, 0, 0, 10584, 2537], - [0, 1605, 6400, 5995, 57, 1606, 16618, 4116, 16629, 5957, 12692, 14571, 16631], - [1, 2343, 10586], - [0, 0, 10587, 10588, 2537], - [ - 0, 30684, 33382, 16636, 16637, 33968, 33969, 16638, 33971, 17212, 4874, 1177, 16644, 1930, 1938, 1942, 1951, - 1953, 16647, 1958, 1964, 1982, 2203, 25209, 3124, 16649, 3390, 1894, 23535, 33974, 4508, 91, 16650 - ], - [0, 1605, 16631, 4116, 1608, 6400, 5995], - [1, 2343, 10590], - [0, 10591, 0, 10609, 2537], - [0, 10870, 16666], - [3, 804, 10], - [2, 10592, 8893], - [2, 10592, 8891], - [3, 10594, 12], - [2, 10595, 8896], - [2, 10592, 8905], - [3, 10597, 11], - "omutils", - [2, 10598, 10599], - "ragdrop", - [2, 10598, 10601], - [2, 10592, 8652], - [2, 10592, 8899], - [2, 10592, 3583], - [2, 10592, 8901], - "virtualdom", - [2, 10592, 10607], - [ - 0, 158, 12712, 7004, 16660, 16661, 16662, 16663, 16664, 29241, 29242, 29244, 29245, 29247, 29248, 1936, 1623, - 5284, 6400, 5122 - ], - [1, 2343, 10611], - [0, 10612, 10613, 10618, 2523], - [0, 10557, 1615], - [0, 31088, 21122, 4874, 7677, 23203, 1177, 1894, 91, 1984, 31103], - "@release-it/conventional-changelog", - [2, 812, 4072], - "cobertura", - "git-", - [0, 16674, 16676, 6574, 16697], - "git-cz", - [1, 2343, 10625], - "global-jsdom", - [2, 7627, 1177], - [2, 10622, 20], - "putout", - [0, 10626, 10628, 10629, 2523], - [0, 3310], - "quibble", - [ - 0, 3421, 1429, 3297, 2675, 2899, 4747, 4039, 4042, 4135, 1503, 2026, 2924, 4255, 1527, 91, 4856, 4874, 1364, - 2990, 4150, 4677, 6503, 4705, 192, 4257, 8849, 3198, 15277, 1652, 28710, 5467 - ], - [0, 1612, 27, 1002, 1862, 1149, 7003, 14571, 14566, 202, 89, 970, 1388, 6805, 7102, 4731, 6662], - "remark-github", - "toc", - "remark-toc", - [2, 4513, 9339], - [3, 4514, 16], - "dn-links", - [2, 10634, 10635], - "no-inherit", - [2, 4513, 10637], - [2, 4513, 3984], - [3, 10639, 17], - "-defaults", - [2, 1213, 10641], - [2, 10640, 10642], - [1, 2343, 10647], - "-prettier", - [2, 4549, 10645], - [0, 10649, 10662, 10664, 2487], - [3, 5410, 10], - [0, 4707, 16687, 16688], - "annotate", - "pin", - "specific", - "ations", - [2, 10652, 10653], - "anatomy", - "dissection", - "dissect", - [3, 10654, 13], - "specs", - [3, 2620, 12], - [2, 10660, 591], - [0, 1192, 2675, 1177, 3188, 4039, 1175, 1193, 2990, 192, 4257, 16692, 16694, 5467], - "spacing", - [0, 1614, 16696, 6574, 16697, 16699, 6987, 8429, 16701], - "speccer", - [1, 2343, 10668], - "grid-layout", - [0, 10669, 10670, 2514, 2523], - [0, 16710, 16713, 16716, 1600, 16719, 16721, 9207, 2713, 16722, 16725, 3779, 16726], - [0, 13614, 1177, 13817, 3421, 3438, 16728, 4100, 4135, 4389], - [1, 2343, 10676], - "@web", - "/shadycss", - [2, 4963, 10673], - [2, 10672, 10674], - [0, 0, 0, 10680, 2523], - "dom5", - "lazypipe", - "poly", - [ - 0, 1965, 1616, 16733, 16734, 16735, 16736, 16737, 16739, 16740, 16741, 16742, 16743, 16744, 16745, 16746, 16747, - 16748, 16749, 16750, 16751 - ], - "polymer-cli", - "polymer-", - [2, 10682, 6147], - "gulp-v", - "ulcanize", - [2, 10684, 10685], - "wct-browser-legacy", - [2, 1262, 3178], - [3, 806, 9], - [2, 1382, 5187], - [2, 10689, 10690], - "google-", - "clos", - [1, 2343, 10709], - "ure-compiler", - [2, 10693, 10695], - [2, 10692, 10696], - "iron", - [3, 4314, 10], - "-page", - [2, 10699, 10700], - [2, 10698, 10701], - [2, 10689, 10702], - [3, 10675, 15], - "webcomponentsjs", - [2, 10704, 10705], - "gen-closure-declarations", - [2, 10689, 10707], - [0, 10710, 10711, 10712, 2537], - [0, 1509], - [0, 1414, 1177, 16758, 1938, 1951, 1954, 1955, 2899, 16759, 3400, 1894], - [0, 16166, 57], - [3, 78, 24], - [3, 5731, 9], - [1, 2343, 10716], - [0, 10758, 10762, 10764, 2537], - "-assign", - [2, 5734, 10717], - [2, 10714, 10718], - [2, 10713, 10719], - "@metalsmith/layouts", - [3, 10721, 12], - [2, 10722, 1783], - [3, 807, 9], - "disable", - [2, 2827, 10725], - [2, 1884, 10726], - [2, 10724, 10727], - [3, 10728, 23], - "qx", - [2, 10729, 10730], - [3, 10728, 16], - "plugin-qx", - [2, 10732, 10733], - "app-", - "module-path", - [2, 10735, 10736], - "better-ajv-errors", - "cldr", - "console-", - "contr", - "ol-strings", - [2, 10741, 10742], - [2, 10740, 10743], - "core-js-", - [2, 10745, 6374], - [3, 4913, 14], - [2, 10747, 7877], - [3, 7681, 17], - "codeframe", - [2, 10749, 10750], - "fontkit", - "get-value", - "github-api", - "jstransformer-dot", - "ps-tree", - "set-value", - [ - 0, 16765, 34219, 16767, 16768, 34222, 16770, 16771, 1109, 1437, 16064, 1525, 28612, 16772, 16775, 16778, 16779, - 16780, 16781, 26385, 4135, 27921 - ], - "tap-colorize", - "unset-value", - "upath", - [0, 8778, 5254, 3170, 3181], - "dirsum", - [0, 16789, 16790, 1501, 15318, 15321, 16791, 16793, 16794, 671], - "qooxdoo", - "fontend", - [1, 2343, 10773], - "back-end", - "gui", - "binding", - "databinding", - "interfaces", - [0, 10774, 10775, 10776, 2537], - [0, 2713, 4227, 16799], - [0, 2899, 4170, 3130, 1413], - [0, 1623, 57, 5374, 5376], - "@mdi/font", - [1, 2343, 10781], - "@mdi/svg", - "@xmldom/xmldom", - [0, 0, 10782, 10789, 34352], - [0, 442, 16805, 16808, 1177, 3561, 4042, 4579], - "animate.css", - [3, 1369, 10], - [2, 10784, 45], - "eva-icons", - "line-a", - "line-awesome", - [0, 3561, 6425, 1623, 6432, 16811, 3205, 4327], - "ar", - "quasar", - "fonts", - "animations", - [1, 2343, 10795], - [0, 0, 10796, 10797, 2523], - [ - 0, 23339, 13204, 6503, 4874, 5542, 16818, 1177, 16821, 1895, 1955, 16824, 2675, 16825, 2832, 2990, 2899, 3377, - 1894, 28865, 29444, 91, 16827, 16831 - ], - [0, 1623, 5746, 3392], - "gpu", - "detect-gpu", - "gltfpack", - [1, 2343, 10803], - "@react-", - [0, 10812, 10813, 10819, 2537], - "three/drei", - [2, 10802, 10804], - [3, 10805, 13], - "fiber", - [2, 10806, 10807], - "processing", - [2, 3689, 10809], - [2, 10806, 10810], - [0, 16837, 3561, 16840, 3638, 16841, 16842, 3688, 4135], - [ - 0, 48, 53, 87, 192, 5467, 16405, 1193, 1610, 1622, 1701, 1854, 1177, 1895, 1938, 2092, 2675, 1192, 2780, 695, - 2969, 2990, 3144, 3177, 3400, 3618, 3672, 1894, 2278, 4111, 4257, 4294, 4307, 4333, 4334, 4027, 2924 - ], - "test-renderer", - [2, 10806, 10814], - [3, 10615, 16], - [2, 10816, 2528], - [3, 827, 17], - [0, 2924, 1623, 1194, 1002, 1204], - "actions", - [2, 10818, 10820], - [1, 2343, 10823], - [0, 10838, 10845, 10856, 2523], - "essentials", - [2, 10818, 10824], - "interactions", - [2, 10818, 10826], - [2, 10818, 3966], - [3, 827, 11], - [2, 813, 2942], - [2, 10829, 10830], - "preset-", - [3, 1603, 13], - [2, 10833, 1896], - [2, 10832, 10834], - [2, 10829, 10835], - [2, 10829, 89], - [0, 1637, 3561, 2805, 4121, 4143, 5180], - "-webpack5", - [2, 10837, 10839], - [2, 10829, 1975], - "__jest-dom", - [2, 6626, 10842], - [2, 7750, 10843], - [ - 0, 1700, 16858, 1192, 2278, 2675, 3144, 1622, 1177, 1701, 668, 2203, 4337, 2924, 16851, 1894, 1462, 1610, 48, - 442, 1193, 1628, 91, 53, 16850, 16854, 4874, 2990, 3400, 4111, 16860, 192, 1953, 27928, 16853, 4257, 87, 1939, - 1584, 1942, 1938, 16857, 20281, 1982, 1895, 1955, 3177, 19344, 16400, 5467 - ], - "@types/three", - "-image-diff-js", - [2, 1651, 10847], - [3, 1970, 16], - "orybook", - [2, 10849, 10850], - "r3f-perf", - [3, 6068, 15], - [2, 10853, 2481], - "suspend-react", - [0, 1637, 1623, 16858, 1462, 11538, 668, 2924, 1464, 16862, 16863, 3178, 2632, 6707, 6708], - [1, 2343, 10859], - "three-stdlib", - [0, 10861, 10869, 10871, 2537], - "threejs", - [0, 16868, 9378, 15488, 16870, 15487], - "hree-fiber", - [2, 3900, 10862], - "y-player-me", - [2, 3917, 10864], - "3D", - "avatars", - "glb", - [0, 4483, 1984, 91, 4874, 2654, 11976, 16874, 16877, 7677], - "@cropper/elements", - [0, 1623, 3585, 16879], - [1, 2343, 10873], - [0, 10885, 10889, 10890, 2537], - "@phryneas/ts-version", - [2, 5531, 2090], - [2, 5531, 2924], - [3, 4852, 12], - "__core", - [2, 10877, 10878], - [3, 10879, 14], - [2, 5223, 5651], - [2, 1181, 10881], - [2, 10880, 10882], - "@types/n", - [0, 3141, 4228], - "@types/nanoid", - [2, 4807, 3765], - [2, 7686, 2473], - [0, 1414, 16885, 668, 1177, 16889, 2899, 4042], - [0, 1623, 6892, 207, 57, 16891, 16892, 1179, 594, 5341, 7020], - [1, 2343, 10892], - [0, 0, 10893, 10899, 2537], - [0, 16805, 1393, 2070, 3561, 3566, 3672, 4135, 4320, 4323, 16898], - [3, 811, 14], - [2, 10894, 594], - "common", - "commondir", - "is-reference", - [0, 1623, 16897, 10654, 16900], - "locat", - "e-character", - [2, 10900, 10901], - "relative", - [2, 4013, 10903], - [1, 2343, 10907], - "commonjs", - [0, 0, 10908, 10909, 2537], - [0, 1173, 1264, 1503, 2228, 14352, 2759, 2899, 3954, 4019], - [0, 1623, 1867, 16906, 1871, 4990], - [1, 2343, 10913], - "is-builtin-module", - "is-module", - [0, 10914, 10917, 10918, 2537], - [0, 2984, 16912], - "capitalize", - [2, 4284, 10915], - [0, 1165, 3561, 16915, 16916], - [0, 1623, 15215, 3178, 16918, 16919, 3561, 6425], - [1, 2343, 10920], - [0, 10921, 10922, 10926, 2443], - [0, 28920, 30928, 1634, 3084], - [0, 23591, 23205, 1177, 1895, 1955, 2203, 1894], - "groq-js", - [3, 817, 8], - "@sanity/ui", - [0, 6829, 6977, 7146], - "@types/cpx", - [1, 2343, 10937], - "dotenv-flow", - [2, 10924, 1473], - [2, 10924, 45], - "@sanity/c", - [2, 10932, 1124], - [3, 3878, 10], - [2, 10934, 6346], - [2, 7686, 93], - [0, 0, 10943, 10945, 2537], - "pkg-utils", - [2, 10924, 10938], - "@portabletext/react", - [3, 10940, 14], - [2, 10941, 6081], - [ - 0, 53, 87, 92, 442, 16805, 33227, 16933, 16934, 5087, 13204, 4874, 15600, 16938, 1193, 1437, 1457, 1634, 1895, - 1955, 2126, 1192, 2832, 3141, 1894, 3980, 4494, 4495, 91, 4523 - ], - "cpx", - [0, 1623, 590, 91, 2124, 4532, 553, 7900], - "sanity", - "refractor", - "kdirp", - [2, 6502, 10948], - "-workshop", - [2, 10925, 10950], - "vitest-", - [1, 2343, 10954], - [0, 10955, 10956, 10965, 2523], - [0, 16944, 977, 2657, 1581], - [0, 3421, 2899, 1177, 1544, 4342, 1364, 1575, 1578, 1954, 1938, 1958, 1903, 1948, 1970], - [3, 9794, 18], - "reset", - [2, 10957, 10958], - [2, 10924, 10959], - "imple-", - "import-sort", - [2, 10961, 10962], - [2, 1967, 10963], - [0, 16944, 11590, 2663, 2026], - "API reference", - [1, 2343, 10968], - [0, 10969, 10970, 10971, 2537], - [0, 1642, 1645, 1647, 4280], - [0, 816, 6503, 4874, 1794, 2899, 1894, 4042, 4064, 4066, 4170, 4474, 91], - [0, 202, 1641, 16956, 57, 1644, 5374, 1646, 353, 3101, 8623, 16957, 5995, 4967], - [3, 9307, 12], - [2, 10972, 188], - [2, 7719, 57], - [2, 819, 10974], - [2, 4807, 1143], - "snippetz", - [2, 819, 10977], - [2, 10987, 14037], - [1, 2343, 10983], - "@unhead/vue", - "@vue", - [0, 0, 10985, 10986, 2523], - "@vueuse/core", - [0, 816, 6503, 4874, 1680, 1794, 2899, 1894, 4042, 4064, 4066, 4170, 4474, 91], - [0, 3101, 8623, 1641, 3048, 5995, 4967], - [3, 35505, 11], - "code-", - [2, 10988, 5342], - [2, 819, 10989], - [3, 818, 12], - [2, 10991, 5576], - "@scalar/o", - "as-utils", - [2, 10993, 10994], - [2, 819, 553], - "@scalar/t", - "hemes", - [2, 10997, 10998], - "toast", - [1, 2343, 11006], - "use-toasts", - [2, 819, 11002], - "@scalar/co", - [2, 11004, 4961], - [0, 0, 11007, 11009, 2523], - [0, 816, 6503, 4874, 1642, 16971, 1680, 1794, 2899, 2966, 1894, 4042, 4064, 4066, 4170, 4280, 4474, 91], - [2, 27553, 1794], - [0, 1641, 1644, 57, 6270, 16956, 3101, 5995, 4967], - "blocks", - [2, 10829, 11010], - [1, 2343, 11014], - [2, 5249, 11020], - [0, 0, 11015, 11019, 34352], - [0, 816, 6503, 4874, 1642, 1680, 1794, 2026, 2899, 1894, 4042, 4064, 4066, 4170, 4474, 91], - [2, 1029, 188], - "test-utils", - [2, 5334, 11017], - [0, 1641, 1646, 5374, 5995, 4967], - "flect.ownkeys", - "webpack-stats", - [2, 4049, 11021], - [1, 2343, 11024], - [0, 6203, 11025, 11029, 2537], - [0, 35960, 6503, 4874, 1217, 1596, 3183, 2899, 3421, 4193, 4468, 4474, 91, 4537, 2924, 4677], - [2, 4609, 7179], - "css-in", - "well-known-symbols", - [0, 1641, 16984, 16986, 1648, 1781, 16989, 16990, 16991, 16994, 16995], - [1, 2343, 11035], - "jected-by-js", - [2, 11027, 11031], - [2, 4609, 11032], - "media-mock", - [0, 11036, 11042, 5543, 4139], - [ - 0, 3261, 2070, 1512, 1209, 4593, 2089, 6532, 814, 1362, 17003, 3730, 1525, 2753, 1483, 12126, 6481, 17010, 6479, - 17007, 2709, 17011, 17009, 17000, 1874, 6475, 17002, 6470 - ], - "-tooling", - [2, 6147, 11037], - [2, 819, 11038], - "galaxy", - [2, 819, 11040], - [ - 0, 3421, 4449, 1429, 2899, 4193, 1177, 1544, 1593, 1290, 2151, 3257, 1894, 17013, 1596, 48, 1389, 4196, 53, - 1178, 1509, 4151, 94, 6525, 6530, 87, 1954, 1922, 3957, 1938, 1208, 1958, 1895, 1903, 1955, 1970, 14039 - ], - "reference", - [1, 2343, 11045], - [0, 0, 11046, 11047, 2537], - [0, 1257, 1264, 1280, 1389, 1177, 17019, 2665, 3188, 17020, 4389, 4415, 4535, 17021, 4650], - [0, 6926, 3265, 7818, 17025, 3348], - [3, 820, 8], - [2, 11048, 1932], - [1, 2343, 11055], - "@fastify/basic-auth", - "external", - "externals", - [2, 4065, 11053], - [0, 11056, 0, 11057, 2537], - [ - 0, 4449, 12675, 1437, 1673, 1676, 2020, 29952, 4753, 1398, 2992, 1209, 17031, 1458, 2089, 3729, 1362, 16078, - 1836, 2151, 3183, 17036, 1525, 4459, 4558, 6520, 1477, 1483, 8435, 1532, 2057, 3074, 3714, 17039, 17041, 2015, - 13860, 4351, 17042, 17047, 4375, 2744, 6515 - ], - [0, 13428, 1388, 1651, 17049, 11862, 11861, 11857, 4627, 17050, 8791, 17051, 17052, 1973, 5472], - [1, 2343, 11059], - [0, 11060, 11061, 2514, 2523], - [0, 1437, 17059, 4717, 1527, 3054, 6301, 17058], - [0, 1429, 2899, 4135, 1894, 4856, 1595, 6503, 3210, 4131], - [1, 2343, 11063], - [0, 11074, 11087, 11089, 2523], - [2, 823, 364], - [2, 823, 4030], - [3, 825, 16], - "query-s", - "elector-", - "shadow-dom", - [2, 11068, 11069], - [2, 11067, 11070], - "tiny-", - "tiny-types", - [ - 0, 17081, 17090, 17067, 17080, 17082, 17093, 17101, 17108, 1654, 17068, 17071, 14674, 17083, 17086, 1655, 1660, - 17104, 17089, 17098, 17074, 17096, 17075, 17078, 17097, 17091, 1658, 17107, 17092, 17103, 17100 - ], - "@integration/testing-tools", - [2, 823, 5710], - [3, 11064, 14], - "ucumber", - [2, 11077, 11078], - [2, 823, 2765], - [2, 5554, 36], - [2, 823, 11081], - [2, 823, 2899], - [3, 7744, 12], - [2, 11084, 2632], - "mocha-multi", - [0, 2899, 1177, 4042, 4614, 17113, 17110, 8850, 17112, 10615, 816], - "serenity-js", - [0, 1653, 965, 17116, 8221, 7521, 1424], - [1, 2343, 11091], - [0, 11092, 11094, 11098, 4139], - [0, 17122], - "@wdio/reporter", - [0, 816, 17081, 17098, 1177, 2832, 2899, 4042, 4073], - "@wdio/", - "@wdio/cli", - [3, 8255, 9], - [0, 1653, 17125, 17128, 17129, 17130, 17134, 7193, 6333, 4552], - [1, 2343, 11101], - "service", - [0, 11102, 11106, 11107, 2399], - [0, 1654, 17089, 17092, 17101, 17103], - "@wdio/d", - "ot-reporter", - [2, 11103, 11104], - [0, 14674, 1177, 2899, 4042, 4073], - [0, 1653, 17125, 16662, 17116], - "local-runner", - [2, 11095, 11108], - [2, 4386, 2903], - [2, 11095, 11110], - "@wdio/types", - [2, 2299, 2382], - [2, 3758, 1732], - [1, 2343, 11118], - "wdio", - [2, 11116, 2903], - [0, 0, 11119, 11120, 2523], - [0, 1177, 2832, 2899, 4042, 4073], - [0, 1653, 17125, 965, 17146, 17147], - [1, 2343, 11125], - [3, 826, 9], - "commons", - [2, 11122, 11123], - [0, 11135, 11136, 11139, 2487], - "@mochify/cli", - "@mochify/", - "driver-", - [2, 11128, 3758], - [2, 11127, 11129], - [3, 11130, 16], - [3, 824, 9], - [2, 11131, 11132], - [2, 11122, 7625], - [0, 17093], - [0, 17096, 1177, 2899, 4042, 4073], - "referee-sinon", - [2, 11122, 11137], - [0, 1653, 17125, 11812, 17116, 1424, 8221], - [1, 2343, 11141], - [0, 11142, 0, 11144, 2523], - [0, 2108], - "ts-dedent", - [0, 6400, 17159, 7521, 8537], - "csf-plugin", - [2, 10829, 11145], - [3, 10840, 17], - "dom-s", - [1, 2343, 11152], - "dom-shim", - [2, 11147, 11150], - [0, 0, 0, 11153, 2537], - [ - 0, 1662, 4380, 4383, 21029, 21038, 21039, 11483, 11487, 21054, 21052, 21042, 17164, 21057, 21050, 17166, 89, - 1623, 181, 188, 4627, 5130, 3287, 6400, 17171, 699, 29332, 3709, 34683, 12951, 29336 - ], - "addon", - "notes", - "organize", - [1, 2343, 11158], - [0, 0, 8134, 11159, 34352], - [ - 0, 17179, 3183, 14690, 10446, 7058, 6802, 200, 3368, 1525, 17180, 1523, 12986, 17181, 17183, 17184, 13565, 1644, - 57, 6478 - ], - [1, 2343, 11166], - [2, 41, 1512], - [3, 11161, 13], - "ssinjs", - [2, 11162, 11163], - [3, 40, 18], - [0, 11198, 11203, 2514, 2537], - "slick", - [2, 11165, 11167], - [3, 452, 18], - "-svg-icons", - [2, 6920, 11170], - [2, 11169, 11171], - "@pol", - "kadot/react-identicon", - [2, 11173, 11174], - "@polkadot/", - "util-", - "util-crypto", - [2, 11176, 11178], - [2, 19177, 11195], - "wasm-crypto", - [2, 11176, 11181], - [3, 5050, 14], - "tour", - [2, 11183, 11184], - "@zxing/browser", - "@zxing/", - [2, 11187, 6082], - "boring-avatars", - "list-react", - [2, 2117, 11190], - "jsqr", - "phosphor-react", - "qrcode", - "plugin-kit", - "qrcode.react", - "rc-cascader", - [ - 0, 17191, 1091, 1149, 1437, 1513, 1594, 1605, 2026, 2720, 17194, 3148, 3220, 3722, 705, 17195, 17196, 17198, - 4746, 4747 - ], - "rc-checkbox", - "ollapse", - "rc-collapse", - "rc-dialog", - [0, 1173, 1257, 1267, 1429, 2899, 4008, 7707], - "rc-drawer", - [1, 2343, 11214], - "opdown", - "rc-dropdown", - "rc-image", - "@humanfs/node", - "rc-input", - "-number", - [2, 11210, 11211], - "rc-mentions", - [0, 0, 11217, 2514, 2399], - "u", - "rc-menu", - [ - 0, 17218, 4494, 17219, 8538, 4193, 1177, 17220, 1209, 1984, 4508, 2109, 1894, 1596, 48, 17212, 3541, 4183, 4201, - 91, 53, 4874, 17221, 9689, 6513, 17209, 7725, 4870, 17206, 17214, 10875, 87, 17210, 7677, 5517, 92, 1011, 17223, - 1009, 9692 - ], - "otion", - "rc-motion", - "rc-notification", - "rc-pagination", - [1, 2343, 11230], - "rc-picker", - "rc-progress", - "rc-rate", - "rc-r", - "esize-observer", - [2, 11226, 11227], - "rc-s", - [0, 0, 11232, 2514, 2523], - "rc-segmented", - [0, 2899, 4535, 48, 53, 87], - "rc-select", - "teps", - "rc-steps", - "rc-switch", - [1, 2343, 11239], - "rc-table", - [0, 0, 11247, 11248, 2523], - "rc-tabs", - "extarea", - "rc-textarea", - "ree", - "rc-tree", - "-select", - [2, 11244, 11245], - [ - 0, 48, 53, 13693, 87, 6065, 1175, 1193, 1203, 1610, 1177, 1881, 1938, 1939, 17232, 2766, 1192, 2297, 2898, 2915, - 3213, 3220, 3222, 3275, 3697, 1894, 4042, 4045, 4073, 4201, 91 - ], - [0, 1673, 1666, 6901, 2700, 3220], - "rc-trigger", - [1, 2343, 11254], - "rc-upload", - "in-input", - [2, 3870, 11252], - [0, 11258, 11259, 11265, 2537], - "logo", - "qrcode-logo", - [2, 1246, 11256], - [0, 1326, 3299], - [0, 17240], - "uperellipse", - [2, 3890, 11260], - "scroll-", - "into-view-if-needed", - [2, 11262, 11263], - [0, 1149, 15001, 17242, 17244], - [3, 68, 15], - [2, 11266, 6424], - [3, 362, 16], - "css-prop", - [2, 1258, 11269], - [2, 11268, 11270], - [3, 7910, 12], - [2, 11272, 10177], - "@qixian.cs/github-contributors-list", - "@stackblitz/sdk", - [3, 827, 16], - [2, 11276, 591], - [3, 11011, 12], - "uild", - "er-webpack5", - [2, 11279, 11280], - [2, 11278, 11281], - [3, 8300, 15], - [2, 11283, 2855], - [2, 10829, 11284], - [3, 10841, 12], - "heming", - [2, 11286, 11287], - "tag.js", - [2, 5246, 11289], - "-axe", - [2, 5087, 11291], - [3, 11292, 12], - [3, 2779, 12], - [2, 11294, 3758], - [2, 11293, 11295], - "image-s", - "napshot", - [2, 11297, 11298], - [2, 11293, 11299], - [2, 5086, 3766], - "uppeteer", - [2, 5088, 11302], - "@types/q", - "@types/qs", - [3, 4882, 15], - [2, 11306, 4349], - "-wor", - [1, 2343, 11324], - "-words", - [2, 5342, 11310], - [2, 4881, 11311], - [3, 4884, 15], - "sizable", - [2, 11313, 11314], - "window", - [2, 4881, 11316], - "@types/thr", - "ottle-debounce", - [2, 11318, 11319], - "arning", - [2, 7820, 11321], - "antd-", - [0, 0, 11332, 11334, 2523], - "antd-img-crop", - "token", - "-pre", - "viewer", - "-previewer", - [2, 11326, 11329], - [2, 11323, 11330], - [0, 1906], - "array-move", - [0, 1675, 17251, 3046, 6925, 17252, 7051, 6760, 17253, 6882, 6870, 9233], - "bundlesize2", - "dekko", - [3, 3597, 9], - [3, 4926, 9], - "er-webpack", - [2, 11339, 4406], - [2, 4354, 11340], - [2, 11338, 11341], - [2, 11337, 11342], - "fetch-", - "fetch-jsonp", - "axe", - "jest-axe", - [2, 2769, 11299], - "jest-p", - [2, 11349, 11302], - "jsonml", - "react-e", - [1, 2343, 11358], - "react-element", - [2, 8137, 11354], - [2, 11351, 11355], - "lz-string", - [0, 11359, 11361, 11379, 2537], - [0, 3242], - "rc-footer", - [0, 1377, 1389, 1596, 2297, 2871, 2881, 2900, 2899, 3202, 4193, 1906], - "rc-tween-one", - "rc-virtual-list", - "react-f", - "ast-marquee", - [2, 11364, 11365], - [2, 5204, 11310], - [2, 3831, 11367], - "react-in", - "finite-scroll-component", - [2, 11369, 11370], - [3, 3882, 9], - "izable", - [2, 11372, 11373], - "react-st", - "icky-box", - [2, 11375, 11376], - "react-window", - [0, 1676, 3073, 6782], - "remark-lint", - [2, 2987, 4945], - [2, 3996, 11381], - "rome", - [2, 4942, 1894], - [3, 4946, 18], - [1, 2343, 11387], - [0, 0, 8134, 11402, 2537], - "ational-order", - [2, 11385, 11388], - [3, 4326, 22], - "no-i", - "d-properties", - [2, 2420, 11392], - [2, 11391, 11393], - [2, 7851, 11394], - [2, 11390, 11395], - "sylvanas", - "vanilla-", - "jsoneditor", - [2, 11398, 11399], - "xhr-mock", - [0, 1677, 17266, 1420, 17267, 15321, 13230, 15322, 1871, 2585, 6270], - [1, 2343, 11406], - "-front-matter", - [2, 4745, 11404], - [0, 11407, 11408, 11409, 2399], - [0, 17273, 17275, 17277, 17279, 2215, 3093, 3532, 17281], - [0, 1999, 17283, 3505, 3532, 4039], - [0, 17274, 17285, 1679, 7682, 4390, 17286, 17288, 2056, 4560], - [1, 2343, 11418], - [3, 829, 10], - "-studio/client", - [2, 11411, 11412], - [3, 11413, 18], - "model", - [2, 11414, 11415], - "abab", - [0, 0, 11419, 11423, 4139], - [ - 0, 48, 87, 92, 10614, 17296, 17212, 5601, 5087, 1009, 1011, 1198, 14065, 17298, 1622, 1177, 17300, 1930, 1939, - 1942, 1945, 1948, 1953, 17303, 17306, 1964, 17308, 2675, 1192, 17310, 2931, 2990, 3124, 3125, 3390, 17312, 1894, - 17314, 3708, 3980, 17318, 4493, 91, 17319 - ], - "async-mutex", - [2, 6269, 1871], - "color2k", - [0, 1680, 10381, 17323, 5194], - "presentable-error", - "expr-eval", - "ml-matrix", - [1, 2343, 11431], - "parse-color", - "-ast-parser", - [2, 3564, 11429], - [0, 0, 11435, 11441, 2523], - "matchall", - [2, 7315, 11432], - [2, 1871, 11433], - [0, 5087, 3165, 4468], - "@ava/typescript", - "inycolor2", - [2, 7750, 11437], - "trash-cli", - [2, 4480, 4408], - [0, 3597, 17329, 4552, 17331, 17332, 17335, 17337], - "Supernova", - "Design Systems", - "io", - "Supernovaio", - "SDK", - [1, 2343, 11455], - "Tokens", - "Design Tokens", - "Assets", - "Components", - "Documentation", - "Markdown", - "CMS", - [0, 11456, 0, 11457, 4139], - [0, 17342], - [0, 3048, 7002, 3426, 2051, 3583, 1698, 1496, 1585, 7880, 1697, 6899, 6803, 3432, 6693, 3743, 3583], - [1, 2343, 11459], - [0, 8856, 7938, 7939, 2537], - [1, 2343, 11461], - [0, 0, 11462, 11463, 2523], - [0, 1781, 2899, 1177, 1209, 4039, 3363, 1362, 17352, 2025, 4535, 1693, 1951, 3200], - [0, 1687, 17354, 3797, 17358], - [1, 2343, 11465], - [0, 0, 11466, 11467, 2523], - [0, 17363, 2899, 1177, 2759, 1317, 1596, 17366, 3044, 5476, 17370, 17373, 17374, 811, 17377], - [0, 17380, 17382, 17383, 5472], - [1, 2343, 11469], - [0, 11471, 11472, 11473, 2399], - "@svitejs/changesets-changelog-github-compact", - [ - 0, 17391, 1417, 17392, 15308, 17395, 17399, 17400, 17403, 17406, 2756, 13635, 3433, 3435, 17407, 17409, 17411, - 17413, 17416 - ], - [0, 13614, 1158, 1159, 17418, 1177, 2133, 17421, 2569, 17425, 2708, 3410, 3421, 5619, 4103, 4135, 4389], - [0, 5501, 4162, 3797], - [1, 2343, 11475], - [0, 0, 11488, 11490, 2537], - "okie", - [2, 4860, 11476], - "devalue", - "esm-env", - "mrmime", - "sade", - "tiny-glob", - [2, 21032, 1932], - [3, 5244, 10], - [2, 11484, 2255], - "dts-buddy", - [3, 21031, 18], - [0, 2899, 4170], - "official", - [0, 1696, 2051, 1697, 6899, 1695, 1496, 1698, 1781], - [1, 2343, 11492], - [0, 0, 11493, 11494, 34352], - [0, 4874, 17439, 2747, 17440, 4042, 4055, 4067, 4389, 4474, 91, 4535], - [0, 1698, 1697, 2051, 1585, 1496, 6899], - [1, 2343, 11499], - "-inspector", - [2, 840, 11496], - "hmr", - [0, 11500, 11502, 11503, 2523], - [0, 2205, 2743, 17447, 17450, 3478, 11424, 4207], - "vitefu", - [0, 1166, 1317, 4400, 4481, 1906], - [ - 0, 6865, 1586, 17453, 17455, 7293, 14858, 17456, 17457, 4050, 17458, 4051, 6790, 17459, 4039, 7074, 2070, 17461, - 2090, 6857, 7204, 2150, 17462 - ], - [3, 839, 11], - [1, 2343, 11507], - "vite plugin", - [0, 11508, 11509, 11510, 2399], - [0, 1700, 3157, 11424], - [0, 1166, 2020, 17468, 1906], - [ - 0, 13326, 200, 6865, 1700, 7293, 14858, 17456, 17457, 4050, 17458, 4051, 6790, 17459, 4039, 7074, 2070, 2090, - 1586, 6857, 7204, 2150, 17462, 16697 - ], - [1, 2343, 11523], - "element", - "elements", - "ant-elements", - [2, 5257, 11514], - [2, 5875, 11515], - "@svgr/", - "@svgr/core", - "plugin-jsx", - [2, 11517, 11519], - [3, 11520, 13], - [2, 11521, 4361], - [0, 11524, 11527, 11528, 2487], - [0, 29654, 28415], - "svgr", - [2, 4670, 1194], - [0, 17474, 17477, 4481, 1906], - [ - 0, 1862, 814, 1702, 17479, 6703, 2434, 17481, 17484, 2013, 14824, 3286, 17485, 1702, 1149, 7003, 6567, 1362, - 17487, 6754, 3778 - ], - [1, 2343, 11530], - [0, 11531, 11535, 11537, 2399], - [ - 0, 1676, 2856, 4747, 2687, 1209, 4135, 2822, 814, 17495, 15648, 1420, 3181, 17497, 3249, 1595, 2107, 4025, 58, - 17501, 101, 17494, 5320, 14035 - ], - "unter", - "@swc/counter", - "@swc/types", - [ - 0, 3421, 2899, 1177, 4170, 3709, 2151, 1894, 1610, 48, 3752, 91, 53, 1178, 17504, 85, 94, 87, 1951, 1959, 1879, - 1938, 1208, 1895, 1947, 1955, 1198, 13052 - ], - "@napi-rs/cli", - [0, 4354, 17507, 3383, 6666, 1703, 7190, 4796, 4797], - "swc", - "swcpack", - "tsc", - [1, 2343, 11542], - [0, 0, 11543, 11544, 2487], - [0, 1317, 1311, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2759, 2899, 4100, 4538], - [0, 17514, 17515], - [1, 2343, 11546], - [0, 11547, 11548, 2514, 2537], - [0, 1676, 13736, 2205, 17522, 3170, 3183, 3539, 17523, 814], - [0, 17527, 2675, 17529, 3400, 4255], - [1, 2343, 11550], - [0, 0, 8134, 11551, 2399], - [0, 8958, 17537, 13735, 6589, 17539, 1501, 1871, 2585, 4225, 17540, 16630], - [1, 2343, 11553], - [0, 11556, 11557, 11558, 2523], - "@rtsao/scc", - [2, 18997, 4966], - [0, 15427], - [0, 36688, 6503, 4874, 17547, 1177, 17554, 2020, 17546, 4294, 4483, 36684, 91], - [0, 13735, 1709], - [1, 2343, 11560], - [0, 0, 11561, 11562, 2487], - [ - 0, 3421, 4481, 1429, 2297, 2899, 1177, 4042, 2203, 2924, 1610, 4535, 442, 91, 53, 2900, 1195, 2925, 13388, 94, - 87, 4523, 4681, 2904, 5517, 1208, 2921 - ], - [0, 1687, 7222, 3797, 7163, 2585, 1781, 1623, 5284], - [1, 2343, 11564], - [0, 11565, 11566, 11567, 4139], - [0, 1687, 28365], - [ - 0, 442, 19194, 17579, 5087, 4874, 17580, 17584, 1165, 1406, 1492, 1584, 1628, 1637, 1177, 1939, 1958, 2092, - 2203, 2036, 17589, 2651, 2675, 17591, 17592, 1192, 2990, 3123, 3177, 3188, 3368, 3561, 3566, 3613, 3618, 3672, - 1894, 4468, 4469, 4474, 91, 4523, 4027, 2924, 4677, 4681, 4705 - ], - [0, 3358, 1687, 3721, 7153, 3924, 17595, 17597, 6843, 5342, 3721, 1473, 1936, 1713, 17599, 17600], - [1, 2343, 11569], - [0, 11570, 11571, 11572, 2537], - [0, 17610], - [0, 5087, 4874, 1009, 1011, 1177, 1895, 17613, 1915, 1938, 1192, 1894, 4468, 4493, 4508, 91], - [ - 0, 17615, 17618, 17619, 17620, 17616, 17621, 17622, 5284, 17625, 17626, 676, 91, 17627, 6869, 4799, 17629, - 17630, 202, 9624, 17631, 17632, 17634, 17635, 17637, 17640, 17641, 17642, 17643, 2218, 17644, 17645, 17647, - 3403, 17648, 17649, 17651, 17652, 17653, 17656, 17657, 9981, 7193, 17659, 17660, 17661, 17662, 17665, 17666, - 17667, 17669, 17673, 17675, 17677, 17680, 17679, 11996, 17683, 17686, 17687, 17689, 17691, 17692, 17695, 17696, - 17697, 17700, 17702, 17705, 2382, 6956, 17706, 17710, 6957, 17711, 17712, 17713, 17714, 17715, 17716, 17717, - 17718, 17720, 17721, 17722, 6789, 17723, 17724, 17726, 17727, 17729, 17730, 17731, 17732, 17733, 614, 6910, - 17734, 11600, 17735, 17737, 17739, 6681, 17740, 1745, 17116 - ], - [1, 2343, 11574], - [0, 0, 11575, 11576, 2487], - [0, 1429, 1431, 2228, 2273, 2283, 2300, 2272, 2839, 3006, 2899], - [0, 1429, 15385, 1388, 5472], - [1, 2343, 11578], - [0, 11579, 11580, 11581, 2537], - [0, 17752, 17754, 1723, 2760, 3345], - [0, 2899, 3699], - [0, 6355, 5995, 4967, 17758], - [1, 2343, 11583], - [0, 11584, 11585, 11586, 2487], - [0, 4484, 4548, 17763, 7658, 347, 7660, 2069, 17766, 7663, 17768, 7664, 7665, 17770], - [0, 4481, 1192, 7671, 1177, 4487, 1787, 1894, 1610, 91, 4874, 17772, 7672, 7678, 7681, 7685, 1011, 1009], - [0, 1721, 5592, 8549, 5576, 202, 7692], - [1, 2343, 11588], - [0, 11599, 0, 2514, 2537], - [3, 850, 25], - "tokens", - [2, 11589, 11590], - [2, 11589, 45], - [3, 4323, 18], - "ass-guidelines", - [2, 11593, 11594], - [3, 7846, 11], - "rettier", - [2, 11596, 11597], - [0, 4535, 2098, 3460], - [2, 6910, 591], - "patterns", - [1, 2343, 11603], - [0, 11604, 11606, 11610, 4139], - [0, 16053, 17786, 17787, 17788, 2036, 3127, 17798], - "gfm-footnotes", - [0, 17805], - "web ", - [2, 11607, 4963], - "ui library", - [0, 1745, 1783], - [1, 2343, 11620], - "symbiote.js", - "symbiote", - "frontends", - [2, 3166, 11614], - " application", - [2, 5207, 11616], - " elements", - [2, 5317, 11618], - [0, 11621, 0, 11623, 2487], - [0, 2829], - "shadow dom", - [0, 1727, 1745, 1776, 17813, 1783, 1932], - "shadow root", - "ructable stylesheets", - [2, 5257, 11625], - "adopted stylesheets", - "custom ", - [2, 11628, 3583], - [2, 6883, 11629], - "pubsub", - [1, 2343, 11641], - "import maps", - "cdn imports", - " imports", - [2, 2671, 11635], - "reacti", - "ve html attributes", - [2, 11637, 11638], - "MIT", - [0, 0, 0, 11642, 34352], - [0, 17818, 17819, 7518, 5398, 5995, 3250], - [1, 2343, 11644], - [0, 11645, 9264, 11646, 2399], - [0, 17826, 17827, 7092], - [0, 17829, 17830], - [1, 2343, 11648], - [0, 11649, 11650, 11651, 4139], - [0, 1170, 4747, 1733, 17838, 29861, 17835], - [0, 1429, 2899, 2026, 1364], - [0, 1745, 2275, 1973, 2295, 1739], - [1, 2343, 11653], - [0, 11654, 11655, 11656, 2399], - [ - 0, 5923, 17835, 17846, 1091, 13426, 17849, 17851, 17853, 1170, 17838, 29861, 1759, 17850, 11663, 10342, 3536, - 3549, 17859, 4459, 824 - ], - [0, 1703, 2026, 2899, 4135], - [0, 1745, 1973, 2295, 1739], - [1, 2343, 11658], - [0, 11659, 0, 11660, 34352], - [0, 1525, 3127, 2151, 4545, 2600], - [0, 1745, 1739, 1179, 17867, 1509], - [1, 2343, 11662], - [0, 11664, 0, 11610, 2537], - "jq-web", - [0, 1794, 17872, 5639], - [1, 2343, 11666], - [0, 11667, 11668, 11669, 2399], - [0, 17877, 28367, 28371, 17881, 3747, 4391, 3348], - [0, 1362, 1429, 3152, 2899], - [0, 17878, 17884], - [1, 2343, 11671], - [0, 11672, 11673, 11674, 2537], - [ - 0, 17889, 17890, 17892, 1292, 17893, 1415, 17895, 16166, 17896, 17898, 17899, 9254, 17900, 17901, 17904, 17905, - 17906, 17907, 2720, 17909, 17910, 17911, 3171, 3310, 17914, 17915, 17916, 4039, 17917, 17919, 17920, 4135, - 17921, 17922, 17923, 4545, 17924, 4746 - ], - [0, 17929, 17930, 16966, 1509, 17931, 3220, 17934, 17936], - [ - 0, 5353, 6147, 17939, 9381, 200, 6354, 1509, 7234, 4643, 17944, 3304, 5001, 17945, 17946, 15141, 5130, 1179, - 17948, 202, 1644, 57, 8924, 3902, 8632, 12478, 5354, 17950, 4990, 6435, 5122, 17951, 10340 - ], - [1, 2343, 11676], - [0, 0, 11677, 11678, 2523], - [0, 5366, 4874, 7677, 22839, 1317, 33261, 35609, 1177, 1938, 1942, 91, 1984], - [0, 4967, 5995, 2844, 7020, 1776], - [1, 2343, 11680], - [0, 0, 11681, 11682, 2487], - [ - 0, 53, 87, 442, 5583, 811, 8850, 816, 10615, 1165, 1387, 1536, 1854, 1177, 1895, 2203, 3125, 15197, 3400, 3561, - 3584, 3605, 3613, 1894, 4039, 4042, 10854, 2278 - ], - [0, 1739, 17964, 17965, 1745, 1179, 5284, 676, 1783, 5980, 1932, 16630, 17966], - [1, 2343, 11684], - [0, 11685, 11686, 11687, 4139], - [0, 17971, 17972, 2654, 3183, 4545, 17974], - [0, 4384], - [0, 2195, 1783, 1745, 9591, 57, 17977, 17978, 17979], - [1, 2343, 11689], - [0, 11690, 11691, 11692, 4139], - [ - 0, 53, 5216, 58, 101, 104, 1437, 1457, 1687, 17986, 9322, 7610, 2070, 17988, 2600, 2714, 2822, 17989, 1209, - 12427, 17990, 17995, 17997, 3532, 3921, 3984, 3988, 3989, 18000, 10632, 814, 4300, 18002, 4555, 12449, 18004, - 18005, 4747 - ], - [0, 18007, 1652, 18009, 1177, 1895, 2151, 2675, 1192, 2845, 2990, 3203, 1894, 4257, 4449], - [0, 1745, 4525, 1776, 18011, 57, 5351], - [1, 2343, 11694], - [0, 11695, 11696, 11697, 2523], - [0, 18016, 18018, 1676, 18019, 18020, 18023, 3013, 4545], - [0, 4874, 2228, 2291, 2300, 3006, 3200, 16092, 4193, 4436], - [0, 18028, 18031, 1748, 18036, 13531, 18037, 18035, 6599], - [1, 2343, 11699], - [0, 11700, 11701, 11702, 2537], - [ - 0, 6084, 2164, 2070, 1437, 89, 1843, 1209, 3188, 1291, 1637, 2026, 3561, 3725, 705, 4167, 7799, 4438, 2151, - 2267, 1525, 3824, 1461, 3560, 4001, 53, 18042, 104, 1165, 2600, 3123, 18051, 18052, 18055, 18056, 7610, 85, 94, - 101, 3816, 18050, 87, 18045, 18047, 90, 1874, 1845, 61, 78 - ], - [0, 4039, 17996, 2149, 18059], - [0, 1745, 18061, 18063, 467], - [1, 2343, 11704], - [0, 11705, 7923, 11706, 2523], - [0, 18068, 1497, 9892, 2577, 2586, 2608, 6327, 18070, 8114, 3181, 3971, 18071, 4549, 18072], - [0, 467, 6327, 18074, 1745], - [1, 2343, 11708], - [0, 11709, 11710, 11711, 2487], - [0, 97, 1639], - [ - 0, 28581, 29292, 48, 53, 92, 29293, 29294, 29492, 1009, 1011, 1178, 1195, 1177, 1938, 1947, 1951, 1959, 2025, - 2070, 2814, 2297, 2881, 2895, 26470, 2900, 2904, 2918, 2921, 2925, 2899, 4039, 33564, 4193, 91, 2924 - ], - [0, 1751, 5128, 965, 5592, 18080, 590, 2013, 18081, 4289, 1751, 1227, 18082, 1623], - [1, 2343, 11713], - [0, 11714, 11715, 11716, 2537], - [0, 18089, 15487, 18087], - [0, 1192, 1177, 1448, 4468, 1894, 91, 5087, 4874, 2654, 1895, 1011, 1009], - [0, 1936, 6523, 8924], - [1, 2343, 11718], - [0, 0, 11719, 11720, 4139], - [0, 1429, 1177, 2228, 2240, 2273, 2281, 2283, 2298, 2822, 2297, 2878, 2881, 2895, 2900, 2904, 2899, 1894, 4135], - [0, 965, 158, 18097, 8924, 1936, 1424, 8221, 18048], - [1, 2343, 11722], - [0, 11723, 11724, 11725, 2487], - [0, 37513], - [ - 0, 53, 87, 5583, 816, 6373, 10615, 1006, 4874, 1610, 1895, 1955, 2814, 2832, 2297, 2876, 2881, 2895, 2908, 2910, - 18103, 3183, 3400, 3697, 1894, 2907, 18102, 4039, 4042, 4057, 18106, 4076, 4484, 91, 1906 - ], - [0, 965, 4741, 1936, 8221, 18110, 1965, 18112, 18113, 2574, 7131, 18114], - [1, 2343, 11727], - [0, 0, 11728, 11729, 2399], - [0, 3421, 1177, 1596, 3697, 12847], - [0, 1283, 2062, 2869, 17950], - [1, 2343, 11731], - [0, 0, 11732, 11733, 2537], - [0, 4874, 6323, 4193, 4255, 4257, 4384, 91], - [0, 1759, 1263, 6890, 6639, 6436, 1541, 6937], - [1, 2343, 11735], - [0, 11736, 11737, 11738, 2523], - [0, 1759], - [0, 4874, 4255, 4257, 4384, 91], - [0, 1759, 18132, 6436, 18135, 18137, 1263, 6890], - [1, 2343, 11740], - [0, 11741, 11742, 11743, 2537], - [0, 2212, 3532, 3477, 18143, 3093, 2096, 1679, 18145, 2188, 18142, 1560], - [0, 1906, 1166, 3297, 18147, 4039, 3505, 18148], - [0, 1764, 7682, 27, 705, 1002], - [1, 2343, 11745], - [0, 11746, 11747, 11748, 34352], - [0, 1764, 12650, 4039], - [0, 5175, 2675, 2899, 4216, 4255], - [0, 1764, 2195, 17978, 17977, 12468, 18157, 4390, 7682, 18158], - [1, 2343, 11750], - [0, 11751, 11752, 11753, 2537], - [0, 1768, 1770, 1777, 1782, 1784, 1779], - [0, 1177, 4039, 442, 91, 4874, 4523, 1011, 1009], - [0, 1767, 1745, 200, 1776, 1367, 1783, 1781], - [1, 2343, 11755], - [0, 11756, 11757, 11758, 4139], - [0, 2205, 1770, 18170, 18173, 1777, 1782, 18174, 1784, 1779], - [0, 1192, 1177, 4039, 3363, 4468, 442, 91, 5087, 4874, 5571, 4523, 1011, 1009], - [0, 1767, 1745, 200], - [1, 2343, 11760], - [0, 11761, 11762, 11763, 2537], - [0, 18183], - [0, 1192, 1177, 4039, 4468, 442, 91, 5087, 4874, 5571, 4523, 1011, 18186, 1009], - [0, 1767, 1745], - [1, 2343, 11765], - [0, 11766, 11767, 11768, 2537], - [0, 18192], - [0, 1192, 1177, 4039, 4468, 442, 91, 5087, 4874, 5571, 4523, 1011, 1009], - [0, 1767, 1745, 1283], - [1, 2343, 11770], - [0, 11771, 11772, 11773, 2537], - [0, 1241, 1776, 18201], - [0, 1192, 1177, 4039, 4468, 1587, 442, 91, 5087, 4874, 18203, 5571, 4523, 1011, 1009], - [0, 1767, 1745, 1776], - [1, 2343, 11775], - [0, 11776, 11777, 11778, 2537], - [0, 3105, 2600, 3117], - [0, 1192, 1177, 4039, 4468, 442, 91, 5087, 4874, 5571, 4523, 7639, 1011, 1009], - [0, 1767, 1745, 1367], - [1, 2343, 11780], - [0, 0, 11767, 11781, 4139], - [0, 1767, 1745, 1781], - [1, 2343, 11783], - [0, 11784, 11767, 11785, 2523], - [0, 3117], - [0, 1767, 1745, 1783], - [1, 2343, 11787], - [0, 11788, 11789, 11790, 2537], - [0, 2081, 2700, 3427], - [ - 0, 53, 14170, 13051, 18225, 1178, 18228, 1610, 1700, 1866, 1177, 18229, 1895, 1922, 1935, 1947, 1955, 1959, - 18230, 2126, 2323, 2338, 2361, 2368, 18233, 2396, 2409, 2419, 2494, 2541, 1192, 1894, 89, 3824, 3904, 18235, - 4431, 4537, 18237 - ], - [0, 18239, 6038, 89, 18241], - [1, 2343, 11792], - [0, 11793, 11794, 11805, 2523], - [0, 8712, 18248], - [0, 18254, 18255, 1429, 1651, 18259, 2297, 2881, 2900, 18260, 2923, 2899, 3198, 3347, 5362, 2278, 4193, 4196], - "tent-type", - [2, 11484, 11795], - [1, 2343, 11798], - [0, 26964, 0, 26991, 34352], - "a-parser-js", - [2, 7817, 11799], - "null-loader", - [2, 4049, 2098], - "tanem-scripts", - "ua-parser-js", - [0, 18263, 18266, 18267, 9229], - "images", - "img", - "scal", - "able-", - "vector-", - "ics", - "graphics", - [2, 11810, 11812], - [2, 11809, 11813], - [2, 11808, 11814], - [1, 2343, 11817], - [0, 11818, 11819, 2514, 2523], - [0, 4747, 4487, 18272, 2151, 18275, 4300, 2851, 18277, 18279, 18282], - [0, 1177, 4874, 4892, 4864, 1011, 18285, 18290, 1009], - "query-core", - [2, 959, 11820], - [1, 2343, 11823], - [0, 11824, 0, 11825, 2537], - [0, 28142], - [0, 1747, 1788, 2382, 18035, 5995, 200, 18295, 2663], - [1, 2343, 11828], - [2, 964, 3709], - [0, 11829, 11830, 7831, 2537], - [ - 0, 12393, 12394, 11275, 842, 12396, 9363, 12397, 12399, 12400, 12403, 1461, 12467, 12406, 1582, 1699, 12409, - 1835, 12412, 12415, 12419, 7610, 12421, 2572, 2579, 2584, 12422, 2613, 2646, 12424, 2822, 3070, 12427, 12429, - 3412, 3547, 9054, 12431, 3725, 3786, 11219, 11240, 3788, 11244, 3789, 3810, 5564, 3846, 12435, 12438, 3963, - 12441, 3978, 12443, 9340, 3988, 3992, 3999, 2278, 7799, 12444, 12445, 4549, 4555, 12447, 1002, 12448, 12449, - 12452 - ], - [ - 0, 192, 5467, 7634, 12455, 12458, 7637, 12459, 4874, 12461, 8149, 4880, 4882, 4883, 12462, 12463, 1177, 10321, - 2071, 2079, 12471, 12472, 2675, 2990, 1894, 3706, 3708, 89, 3824, 4320, 4474, 91, 1984, 12473, 12475 - ], - [1, 2343, 11834], - [3, 7637, 10], - [2, 11832, 977], - [0, 11841, 11844, 7831, 2487], - "@github/webauthn-json", - "better-", - "better-docs", - [3, 1895, 17], - "act", - [2, 11838, 11839], - [ - 0, 12393, 12394, 11275, 842, 12396, 9363, 12397, 12399, 12400, 12403, 1461, 12405, 1582, 1699, 12409, 12452, - 1835, 12412, 12415, 12419, 7610, 12421, 2572, 2579, 2584, 12422, 2613, 2646, 12424, 2822, 3070, 12427, 12429, - 3412, 3547, 9054, 12431, 3725, 3786, 11219, 11240, 11244, 3810, 5564, 3846, 3963, 12441, 3978, 12443, 9340, - 3988, 3992, 3999, 2278, 7799, 12445, 4549, 4555, 12447, 1002, 12448, 12449 - ], - "hanko", - "passkey", - [ - 0, 192, 5467, 7634, 12455, 12458, 7637, 12459, 4874, 12461, 4880, 4882, 12462, 12463, 1177, 2071, 2079, 12472, - 2675, 2990, 1894, 3706, 3708, 89, 4320, 4474, 91, 1984 - ], - [1, 2343, 11848], - "webauthn", - "passcode", - [0, 0, 11849, 2514, 2523], - [0, 4389, 4430], - [1, 2343, 11851], - [0, 11852, 11854, 7395, 4139], - [ - 0, 18313, 18315, 18316, 18317, 18322, 97, 8597, 18328, 18332, 18333, 18334, 18336, 1461, 1582, 1673, 18339, - 18340, 18344, 18347, 18349, 18351, 18354, 18355, 18357, 18358, 18360, 18362, 18364, 18365, 18368, 18370, 18371, - 18372, 18374, 18376, 18378, 18380, 18381, 18382, 18383, 18385, 18386, 18387, 18389, 18391, 18392, 18394, 11264, - 4427 - ], - "kcd-scripts", - [ - 0, 13175, 13178, 5076, 13181, 11267, 11976, 13187, 7833, 7837, 7839, 7840, 368, 7948, 11273, 13188, 8998, 13189, - 13192, 643, 692, 11274, 10875, 11275, 966, 968, 972, 974, 13194, 13196, 13198, 4864, 11290, 13200, 13203, 5087, - 11292, 11296, 11300, 11301, 13204, 4870, 7892, 4874, 13205, 13207, 13210, 8149, 6510, 11305, 4880, 4882, 4883, - 11312, 11315, 5254, 13213, 13214, 11320, 11322, 1009, 1011, 1086, 13078, 11325, 13215, 11331, 1170, 1437, 1448, - 13221, 13223, 1610, 1613, 11336, 1759, 1789, 13228, 8161, 1177, 1879, 1895, 1915, 1924, 1938, 1939, 1947, 13231, - 1948, 1959, 1961, 1982, 2071, 11345, 2151, 2193, 2070, 12424, 2665, 2686, 2696, 2742, 2758, 1192, 11347, 2771, - 2780, 2784, 11348, 11350, 2814, 2832, 11356, 5102, 2990, 1209, 13232, 11357, 3183, 3213, 3310, 3330, 3412, 3445, - 3467, 13233, 3536, 3549, 1894, 3703, 3717, 3725, 3758, 3763, 11360, 11362, 11363, 89, 3810, 13235, 3824, 4934, - 11366, 11368, 11371, 3843, 11374, 3885, 11377, 3957, 3978, 3984, 3985, 3988, 11380, 13240, 11382, 3999, 4039, - 13241, 4135, 4164, 4183, 4201, 13243, 11397, 4390, 4391, 4072, 4494, 4508, 91, 11400, 13245, 2924, 4676, 11401 - ], - [1, 2343, 11856], - [0, 0, 11858, 11859, 2399], - "integration", - [0, 192, 5467, 19193, 442, 1177, 1895, 1951, 1955, 2675, 2990, 2899, 1894, 4042, 4170, 4257], - [0, 4552, 1149, 14629, 18402, 1794, 3048, 1862, 6917, 14824, 5995, 4967], - [1, 2343, 11863], - "end-to-end", - "e2e", - [0, 11864, 11865, 11866, 2443], - [0, 4484, 18407], - [ - 0, 51, 53, 104, 18282, 18277, 18409, 603, 811, 816, 6373, 5087, 1009, 1011, 1437, 1525, 1787, 668, 1177, 2151, - 2205, 2675, 1192, 2771, 2272, 3090, 3445, 4042, 4073, 4127, 4135, 4072, 4468, 91 - ], - [0, 1795, 18411, 15480, 18412, 17116, 18413, 18415, 1424, 8221], - "ria-query", - [2, 9165, 11867], - "aria-query", - [2, 7320, 2825], - [2, 1752, 11870], - [1, 2343, 11873], - [0, 11885, 11886, 11887, 2537], - "n-case", - "jest-in-case", - "-ser", - "ializer-ansi", - [2, 11876, 11877], - [2, 8746, 11878], - [3, 2802, 11], - "select-p", - "rojects", - [2, 11881, 11882], - [2, 11880, 11883], - [0, 18420, 2096, 18423, 2390, 18425, 18426, 18427, 1209, 3181, 18428, 3544, 4431, 4597, 4600, 4747], - [ - 0, 4856, 4864, 18432, 4870, 6503, 4874, 9725, 6513, 6512, 18435, 18438, 18440, 4892, 1429, 2012, 2151, 2188, - 2899, 3421, 3752, 4039, 4193, 4196, 4474, 4487, 91 - ], - [0, 18420, 2041, 2649, 18442, 18443, 6589, 18444], - [1, 2343, 11889], - [0, 11892, 11900, 11901, 2537], - "css.escape", - "redent", - [0, 2763], - [2, 552, 2203], - [3, 2782, 23], - "sixteen", - [2, 11894, 11895], - [3, 4057, 15], - "elete", - [2, 11897, 11898], - [0, 91, 68, 1389, 1177, 14707, 1776, 3084, 2899, 4535], - [0, 1283, 17950, 16284, 1797], - [1, 2343, 11903], - [0, 11904, 11905, 11908, 2537], - [0, 1437, 1209, 18456], - [ - 0, 3297, 1082, 1149, 2228, 2899, 4193, 4237, 1177, 2814, 3220, 4135, 1168, 1330, 2924, 18458, 18459, 1362, 3460, - 1894, 4431, 2025, 2071, 7915, 2240, 18463, 1389, 53, 11801, 1178, 1195, 18464, 17568, 87, 1954, 2258, 2247, - 1938, 2253, 2281, 1958, 1895, 1903, 1955, 1970, 18461 - ], - "atcher-utils", - [2, 8763, 11906], - [0, 1798, 14059, 8173], - "@callstack/eslint-config", - "@rel", - "mify/jest-serializer-strip-ansi", - [2, 11910, 11911], - [1, 2343, 11914], - [0, 7936, 7938, 7939, 2523], - [1, 2343, 11916], - [0, 11917, 0, 11919, 2487], - [0, 4874, 2057, 18473], - "dotenv-cli", - [0, 1804], - [1, 2343, 11921], - [0, 11922, 11923, 11927, 2537], - [0, 1437, 4747, 1458, 2151, 18479, 18480, 18482, 18484, 18488, 18174], - [0, 4892, 4864], - "@esbuild-plugins/node-modules-polyfill", - "@ph.fritsche/scripts-config", - [3, 11925, 13], - [ - 0, 1804, 9381, 6147, 7242, 1161, 1808, 4405, 18493, 1896, 18494, 4750, 18495, 8433, 18496, 18497, 18498, 18499, - 18500, 18501, 18502, 18503, 13322 - ], - "toolbox", - [2, 11926, 11928], - [3, 11300, 13], - [2, 11930, 11874], - [3, 7690, 15], - [2, 11932, 2203], - "-lib-coverage", - [2, 2759, 11934], - [3, 11935, 13], - "report", - [2, 11936, 11937], - [2, 4227, 591], - [2, 11936, 11939], - "istanbul-", - "reports", - [2, 11941, 11942], - [3, 6551, 9], - "jest-s", - "r-ansi", - [2, 7909, 11946], - [2, 11945, 11947], - [1, 2343, 11950], - [0, 11953, 11954, 11955, 2537], - "-scripts", - [2, 6579, 11951], - [ - 0, 18509, 18473, 18511, 18513, 18514, 18518, 1676, 2057, 18145, 2151, 18521, 18524, 18525, 18527, 2072, 18528, - 814, 4135, 4748 - ], - [0, 1009, 1011, 1166, 1400, 1503, 1177, 1903, 1920, 1938, 1954, 1958, 3421, 3539, 4193, 4481, 4508, 91], - [0, 1804, 1808, 6996, 1896], - "@ember/app-blueprint", - [1, 2343, 11962], - "aram", - "regexparam", - "tseslint", - "tinyhttp", - [0, 11963, 11964, 11919, 2399], - [0, 2057, 18537], - [0, 4389, 4255, 18540, 3505], - [1, 2343, 11966], - [0, 11967, 11580, 11581, 2487], - [0, 1437, 2152, 2760, 18545], - [1, 2343, 11969], - [0, 11970, 11971, 2514, 4139], - [0, 18552], - [0, 2228, 18555, 2236, 2273, 2281, 2298, 2766, 2814, 2297, 2881, 2895, 2898, 2912, 3006, 1209], - [1, 2343, 11973], - [0, 11975, 11979, 11980, 2523], - [2, 976, 4590], - [0, 1156, 1191, 1699, 3373, 4023, 4427], - "@biomejs/biome", - [3, 4343, 10], - [2, 11977, 1612], - [ - 0, 18566, 18569, 1173, 1175, 1195, 1198, 1208, 1212, 1220, 18571, 1264, 1277, 18574, 1429, 1457, 1584, 1596, - 18575, 1610, 1628, 1863, 1177, 18580, 1916, 1937, 17585, 2092, 18581, 2323, 2332, 18582, 2504, 2600, 2651, 2843, - 13110, 2297, 2881, 2886, 2900, 18260, 2921, 2923, 2925, 18584, 3105, 3107, 18587, 3112, 3177, 2899, 3342, 3463, - 3561, 3732, 4039, 4111, 18590, 4193, 4196, 4307, 18592, 4537, 18595, 4027, 188, 4634, 4639, 4645, 18599, 2924, - 4677, 4681, 4693 - ], - [0, 13449, 188, 4963], - [1, 2343, 11982], - [0, 11983, 11984, 11985, 2537], - [0, 1363, 18609, 18610, 18611, 2713, 18613, 18616], - [0, 1377, 1596, 1177, 2228, 2236, 2240, 2256, 2258, 2281, 17567, 2311, 2759, 2899], - [0, 18619, 18620, 18621, 18622], - [1, 2343, 11987], - [0, 11989, 11990, 11991, 2537], - "headers", - [0, 18627, 18629, 18632, 2646, 18633, 1209, 3361], - [0, 192, 5467, 1166, 1448, 1610, 1797, 1177, 1909, 2114, 2675, 2990, 18637, 3421, 18634, 3754, 3985, 3995, 1906], - [0, 1559, 1823, 16284, 2934, 18639, 18640, 18643, 18645, 18646, 18647, 3361, 18648, 3754, 18649, 1283, 5354, 4714], - [1, 2343, 11994], - "ipaddr.js", - [0, 0, 11997, 2514, 2523], - "net", - "network", - [0, 442, 18657, 4874, 18659, 7677, 1177, 1895, 1955, 18660, 1894, 18661, 4474, 91, 4523, 1984], - [1, 2343, 11999], - [0, 12000, 12004, 12005, 2399], - [ - 0, 30697, 27276, 11956, 18740, 18684, 14959, 18693, 18733, 18735, 18687, 1378, 18737, 1381, 18717, 18720, 18695, - 18686, 18747, 18683, 1437, 1458, 18689, 1536, 1543, 18671, 18678, 18679, 18668, 1687, 18753, 12923, 18758, - 12925, 18704, 2020, 2021, 2026, 2098, 2105, 18745, 2151, 14939, 12929, 12471, 2070, 14940, 18728, 18701, 18708, - 2659, 2712, 2720, 18673, 18702, 1209, 3105, 18726, 3181, 3237, 3368, 3386, 18428, 18669, 3560, 18714, 18722, - 18675, 814, 14562, 18730, 18667, 4135, 12937, 18710, 18698, 1241, 4423, 4438, 18670, 4648, 18692, 7801, 18666, - 31963, 31947 - ], - [3, 975, 11], - "ccepts", - [2, 12001, 12002], - [ - 0, 14938, 1385, 1429, 1431, 18761, 15264, 1540, 18774, 18771, 1177, 1895, 18766, 1951, 1953, 2116, 18706, 2832, - 2960, 2899, 3297, 3421, 1894, 6021, 4294, 4342, 4421, 4449, 36864, 4699, 4707, 18764, 18760 - ], - [0, 1896, 18776, 12589, 200, 18777, 18778, 18779, 837], - [1, 2343, 12007], - [0, 12008, 12013, 12014, 2537], - [ - 0, 5222, 71, 5757, 5759, 5809, 5830, 5832, 83, 5889, 87, 97, 18784, 18787, 18790, 18795, 1212, 18801, 18687, - 1378, 18695, 18747, 1496, 18803, 18807, 18704, 14562, 4135 - ], - "ntent-", - [2, 12009, 10366], - [2, 981, 12010], - [3, 985, 11], - [ - 0, 53, 18809, 18811, 18812, 18813, 18815, 1178, 1385, 1429, 1499, 18867, 1532, 18671, 1593, 18679, 18823, 1825, - 18825, 1830, 18829, 18832, 18833, 18834, 18835, 18839, 1177, 18840, 1954, 18706, 18841, 2899, 2907, 3957, 6021, - 814, 4039, 2924 - ], - [0, 1172, 18777, 18844, 1825, 5197, 5198], - "ncode-url", - [2, 12012, 12015], - [1, 2343, 12018], - [0, 12019, 12020, 12021, 2487], - [0, 18852, 18855, 18687, 18865, 14938, 14939, 18708, 18868, 12937, 4648], - [ - 0, 53, 68, 71, 5757, 83, 5889, 97, 18809, 18812, 18872, 18787, 1381, 1385, 1429, 18867, 1540, 18823, 1825, 1827, - 18873, 18825, 18829, 18832, 18833, 18834, 18835, 18839, 18889, 18892, 18894, 1177, 1895, 18840, 1951, 1953, - 1955, 18895, 2116, 18841, 2899, 1894, 2907, 3773, 3980, 14944, 4320, 4323, 11598, 2924 - ], - [0, 18844, 1825], - [1, 2343, 12023], - [0, 12024, 12025, 12028, 4139], - [0, 18901, 18906], - [0, 816, 10817, 4874, 2968, 4039, 4042, 4494, 91], - [3, 12011, 18], - [2, 12026, 998], - [0, 1831, 1936, 1623, 4412, 18909], - [1, 2343, 12030], - [0, 0, 0, 5708, 4139], - [1, 2343, 12032], - [0, 0, 12033, 12034, 4139], - [0, 2899, 1177, 2759, 1954, 1938, 1958, 1903, 1970], - [0, 10368, 1833, 1002], - [1, 2343, 12036], - [0, 12037, 9264, 12038, 2537], - [0, 3441], - [0, 3101, 7046, 7241, 18924, 12706, 4966, 6703], - [1, 2343, 12040], - [0, 12041, 12043, 2514, 2537], - [0, 2215, 4388], - "tsparticles", - [0, 8780, 5087, 4874, 1622, 1177, 20281, 2675, 1192, 2990, 3144, 1894, 91], - "particles.js", - "particles", - "particlesjs", - "particle", - "jsparticles", - "xparticles", - "particles-js", - [1, 2343, 12052], - [0, 12057, 12064, 12065, 2537], - "particles-bg", - "-vue", - [2, 12053, 12054], - "particles-ts", - [0, 1104, 4294], - "particles.ts", - [3, 2638, 9], - "ticles-js", - [2, 12059, 12060], - [3, 12061, 15], - [2, 12062, 1722], - [0, 4874, 2398, 2720, 2899, 3421, 3742, 91], - [ - 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 8622, 1836, 1179, 8623, 8624, 6847, 8625, 2720, 8626, 8628, 5284, - 202, 6710, 3741, 3742, 8630, 8631, 3925, 8632, 4989, 8633, 2184, 8634, 7009, 6621, 181, 8635, 4758, 8636 - ], - "vue-particles", - "ngx-particles", - [2, 1101, 12045], - [1, 2343, 12077], - "ground", - [2, 12047, 12070], - "vuejs", - "preactjs", - "angularjs", - "html5", - "web-design", - [0, 12078, 12085, 12095, 4139], - [0, 7272, 12240, 3757, 19647], - "webdesign", - "css3", - "vtt", - "animated", - "background", - "conf", - [0, 13614, 1159, 9254, 1177, 2011, 2708, 3410, 3421, 4103, 4389], - "confetti", - "works", - "fireworks", - "fireworks-js", - "confetti-js", - "confettijs", - "fireworksjs", - "canvas-", - [2, 12093, 12086], - [0, 18089, 18943, 18944, 1936, 10368, 15103], - "apk", - "flickity", - [1, 2343, 34419], - "@d-fischer/shared-utils", - [3, 1005, 9], - "all", - "api-call", - [2, 12100, 12102], - [2, 12100, 10896], - "jose", - [0, 1429, 2675, 2899, 1899], - [0, 6971, 18951, 18952, 998, 6956], - "twitch", - [1, 2343, 12110], - [0, 12111, 12112, 12113, 2523], - [0, 2003, 4430], - [0, 4387, 4389], - [0, 6639, 6436, 1389, 14927, 353, 4225, 8309], - [1, 2343, 12115], - [0, 0, 12116, 12125, 2537], - [ - 0, 53, 13051, 85, 87, 192, 5467, 17584, 1175, 1178, 1193, 1195, 1177, 1881, 1895, 1938, 1955, 18964, 2070, 2675, - 1192, 3183, 6331, 4750, 1894, 10623, 2924, 4677, 4707, 18966 - ], - [1, 2343, 12568], - [2, 3273, 6543], - [3, 439, 18], - "regexpp", - [2, 12119, 12120], - [3, 5552, 23], - [2, 12122, 3007], - [2, 1010, 1995], - [0, 5001, 1263, 6639, 18523, 18968, 18969, 18971], - "title-case", - [2, 3138, 9102], - "pecific-snapshot", - [2, 11945, 12128], - [3, 8722, 10], - "-mdxjs", - [2, 12130, 12131], - [2, 3167, 12132], - [3, 5551, 24], - "to-typescript-types", - [2, 4120, 12135], - [2, 12134, 12136], - [1, 2343, 12139], - [0, 12140, 12141, 12143, 2537], - [ - 0, 18976, 1448, 1850, 18980, 6914, 18982, 18984, 18986, 18989, 17403, 18990, 18992, 18993, 3044, 3431, 13635, - 3435, 3438, 18994, 3775, 18995, 18997 - ], - [0, 1173, 13998, 1261, 1177, 1879, 1938, 1947, 1959, 2708, 2832, 4039, 4103], - "pastoralist", - [0, 5284, 19001, 19003, 1973, 6071, 89, 2130, 5472, 19005, 19007, 6969, 2899], - "cript-estree", - [2, 5552, 12144], - [1, 2343, 12147], - [0, 12148, 12149, 12143, 2443], - [0, 2571, 4135, 3847, 3744, 3435, 18994, 3904, 1847, 1850], - [0, 1843, 1177, 4039, 3410, 48, 2708, 53, 1261, 1959, 4103, 68, 1879, 1938, 1947, 1961, 1198, 13998], - [1, 2343, 12151], - [0, 12152, 12154, 12143, 2537], - [0, 2571, 4135, 3744, 3435, 19018, 19020, 18980], - [2, 12155, 27730], - [0, 1177, 4039, 3410, 48, 2708, 53, 1261, 1959, 4103, 68, 1879, 1938, 1947, 1961, 1198, 13998], - [3, 20826, 14], - [1, 2343, 12157], - [0, 12164, 12167, 12143, 2487], - [3, 1013, 11], - [2, 12158, 9026], - [2, 10306, 5256], - [3, 1603, 14], - "ontext", - [2, 12161, 12162], - [0, 2571, 13635], - "-theming", - [2, 1832, 12165], - [0, 1177, 4039, 3410, 48, 2708, 53, 1261, 4103, 68, 1938, 1881, 1198, 13998], - "-formatter", - [2, 1413, 12168], - [2, 2093, 12169], - "mini-", - "mini-store", - "rc-animate", - [1, 2343, 12177], - "rc-form", - "z-use-drag", - [0, 12183, 12210, 2514, 34352], - "@types/ra", - "@types/raf", - [3, 1013, 13], - "codo-gen", - [2, 12180, 12181], - [0, 1080, 1869], - "ast-types", - "motion", - [2, 4893, 12185], - [3, 1225, 14], - "proptypes", - [2, 8137, 12188], - [2, 2528, 12189], - [2, 12187, 12190], - [2, 4670, 8861], - [2, 1199, 12192], - "hot-loader", - [2, 1625, 12194], - "jest-emotion", - "screenshot", - [2, 8820, 12197], - [3, 4323, 19], - "yled-components", - [2, 12199, 12200], - [3, 11598, 12], - "or-styled-components", - [2, 2484, 12203], - [2, 12202, 12204], - "tsc-alias", - "@electric-sql/pglite", - "ucloud", - "lsofi", - [0, 1087, 1177, 1903, 1938, 1948, 1954, 1958, 2899, 3421, 4342], - [1, 2343, 12212], - [0, 12218, 12221, 12223, 2537], - [3, 1014, 9], - "slate", - [2, 12213, 12214], - "slate-hyperscript", - "slate-react", - [0, 1082, 2071], - [2, 12213, 594], - "is-hotkey", - [0, 16805, 1393, 19038, 5867, 30889, 12142, 1894, 3980], - "jotai-optics", - [0, 19042, 19044, 3595, 19045, 19046, 19047, 5286, 19049, 19052, 19053, 676, 19054, 19055, 19057, 19059, 19060], - "jotai-x", - [1, 2343, 12230], - "optics-ts", - [3, 3836, 9], - "keys-hook", - [2, 12227, 12228], - [0, 12234, 12235, 12237, 2537], - "deep-compare", - [2, 8183, 12231], - "zustand-x", - [0, 19066, 2569, 19071, 19073, 19078, 15059, 3435], - [ - 0, 5517, 13614, 23237, 10976, 10979, 11008, 27564, 27568, 27571, 27573, 27575, 27576, 27580, 11013, 19325, 1143, - 1159, 9254, 1177, 14741, 15308, 2756, 3410, 3421, 19082, 4103, 19084, 4389, 11028 - ], - "plate", - [0, 5284, 5286, 3595, 676, 6693, 6692, 5187, 1182, 6830], - [1, 2343, 12239], - [0, 12241, 12243, 12249, 2443], - "es-errors", - [0, 15786, 19092, 19093, 19094], - "react-b", - [0, 1177, 15793, 15797, 15801, 2675, 2990, 3421, 19097, 15804, 15805], - "react-button", - "uiw-react", - "react.js", - "uikit", - "react-ui", - [0, 5286, 19099, 19100, 1925, 5194, 19101, 2680, 19102, 2474, 5258, 5284, 6422, 1858, 614, 594, 6731], - [1, 2343, 12251], - [0, 0, 12252, 12254, 2537], - [0, 13614, 1158, 1177, 2708, 2768, 3421, 4103, 4535], - [2, 1024, 45], - [0, 1858, 1925, 19108, 5284, 5286, 6422], - [3, 3839, 10], - [1, 2343, 12257], - [0, 0, 12258, 12259, 2523], - [0, 1173, 1175, 1198, 8966, 1264, 1429, 1610, 2899, 4039], - [0, 5194, 1851, 1172], - "react-input", - [1, 2343, 12262], - [0, 0, 12263, 12264, 34352], - [ - 0, 19118, 2899, 1825, 18686, 18693, 19119, 19121, 19122, 19123, 1381, 18801, 18825, 19125, 19127, 14217, 14196, - 19130, 14214, 1235, 14199, 14192, 1244, 14198, 14215 - ], - [0, 19132, 6422, 1862, 6567], - [3, 1023, 18], - [1, 2343, 12269], - "verlay-trigger", - [2, 8666, 12267], - [0, 0, 12270, 12271, 2537], - [0, 48, 53, 87, 10688, 1863, 1177, 1895, 1903, 1938, 1954, 1958, 2675, 3421, 1894, 4193, 4389], - [0, 1862, 6567, 5194, 19138, 1865], - [1, 2343, 12275], - "react-u", - "react-utils", - [0, 0, 12276, 12277, 4139], - [0, 13614, 1158, 1429, 1859, 1177, 2011, 2228, 2256, 2283, 2311, 2708, 2899, 3421, 3736, 19146, 4103, 4389, 4535], - [0, 5286, 5258, 5194, 1858, 1862, 6567, 7168, 3053, 3065, 6636], - [2, 12279, 8295], - "flowbite-", - [1, 2343, 12281], - [0, 0, 12282, 12288, 2523], - [0, 1317, 1311], - "to-ts", - [2, 7526, 12283], - [2, 7719, 553], - "prom-client", - "unleash-client", - [0, 1867, 1936, 6435], - "ype-is", - [2, 7750, 12289], - [1, 2343, 12293], - "ts-node-dev", - [0, 0, 8134, 12297, 2399], - "Unleash", - "ios", - "android", - [0, 1867, 1108, 6961, 6920, 7256, 1871, 19161, 7169], - [1, 2343, 12299], - [0, 12300, 12303, 2514, 2537], - [0, 2004, 14301, 2003, 4227], - "keyux", - [3, 1027, 12], - [0, 1082, 1362, 19168, 1429, 6522, 19172, 2323, 2384, 2463, 3183, 3466, 4135], - "image-shrink", - [2, 12302, 12304], - [2, 9229, 4219], - [2, 12302, 12306], - [1, 2343, 12311], - "shipjs", - "@esm-bundle/chai", - [0, 12316, 12317, 12321, 2523], - "@total-typescript/ts-reset", - "@hap", - "py-dom/global-registrator", - [2, 12313, 12314], - [ - 0, 439, 12121, 19180, 27907, 19193, 11180, 11209, 19182, 19184, 1006, 1091, 1615, 1676, 1874, 1994, 1996, 2000, - 19186, 14301, 2069, 16783, 2105, 2200, 2687, 19187, 2743, 19189, 3181, 12118, 3466 - ], - [ - 0, 5517, 53, 87, 8129, 19194, 19181, 19195, 19581, 4874, 1011, 1195, 1414, 1429, 1448, 1532, 1593, 1651, 1797, - 1933, 15510, 17308, 19206, 32793, 19210, 2003, 19213, 2070, 2203, 2212, 2226, 2807, 2931, 2990, 3105, 3112, - 3127, 19216, 19219, 19221, 19222, 19223, 19224, 2899, 19227, 19230, 1894, 3730, 3752, 3930, 3957, 4135, 4167, - 4193, 91, 2924, 4677, 19235 - ], - "uploadcare", - "lighter", - "file ", - [0, 6892, 671, 5284, 5286, 2000], - "file uploader", - "ive image", - [2, 5156, 12323], - " optimization", - [2, 158, 12325], - "image ", - [2, 12327, 6110], - "image size", - " image editor", - [2, 6599, 12330], - " client", - " api client", - [2, 9229, 12333], - "ing blocks", - [2, 6147, 12335], - "lr-blocks", - "uc-blocks", - [2, 11857, 591], - "smart", - [1, 2343, 12356], - "smart cdn", - "cloud ", - [3, 31, 8], - "file platform", - [2, 12343, 12345], - "ation api", - [2, 353, 12347], - "webp", - "avif", - "css c", - " properties", - [2, 12162, 12352], - [2, 12351, 12353], - [2, 11617, 591], - [0, 12357, 12358, 12359, 2523], - [0, 3435, 3438, 1881], - [0, 4389, 1796, 1177, 2708, 97, 19243, 19247, 1261, 1959, 4103, 1938, 1947, 1961], - [0, 1177, 6651, 1541, 1259, 5284, 6718, 6778, 7056, 7192, 7044], - [2, 8137, 668], - [2, 1393, 12360], - [1, 2343, 12363], - [0, 12364, 12365, 12359, 2537], - [0, 4135, 3435, 3438, 19254], - [0, 4389, 1796, 1177, 2708, 97, 19243, 19247, 1261, 4103, 1938], - [1, 2343, 12367], - [0, 12373, 12374, 12375, 2399], - [3, 5881, 34], - "self", - [2, 12368, 12369], - [3, 12370, 35], - [2, 12371, 5585], - [0, 1881], - [0, 1009, 1011, 1742, 1177, 1895, 1938, 2675, 2990, 3400, 1894, 19263, 91], - [0, 1259, 1541, 6778, 7056, 7192, 7044, 1177, 6651, 5284, 6718, 91], - [1, 2343, 12377], - [0, 0, 5795, 12378, 4139], - [ - 0, 1885, 1501, 19269, 590, 671, 9654, 2292, 2272, 19270, 1177, 2649, 19271, 15717, 4354, 16790, 19273, 18443, - 2446 - ], - [1, 2343, 12380], - [0, 12381, 5795, 12382, 2537], - [0, 442, 2203], - [0, 1177, 7625, 19281], - [1, 2343, 12386], - [2, 8530, 4798], - "merge-deep", - [0, 12387, 12388, 12389, 2537], - [0, 19438, 19181, 442, 19344, 1009, 1011, 1891, 1907, 19286, 1915, 1938, 1942, 1951, 1953, 17306, 1982, 4523], - [0, 9736, 1177, 91], - [0, 1890, 1177, 7625, 19281], - [1, 2343, 12391], - [0, 12401, 12404, 6936, 2443], - [3, 5075, 18], - [2, 12392, 8221], - "@makotot/ghostui", - [3, 6497, 10], - "@types/hast", - "@umijs/bundler-utils", - "@umijs/", - "@umijs/core", - [2, 12398, 594], - [0, 1953, 1951, 1938, 19286, 1011, 17306, 1009, 1915], - "-scroll-to", - [2, 12082, 12402], - [0, 1177, 91, 9736], - "codesandbox", - "comlink", - "dumi-", - [1, 2343, 12417], - "dumi-afx-deps", - "estree-", - "util-to-js", - [2, 12410, 12411], - [3, 12412, 12], - "visit", - [2, 12413, 12414], - "file-s", - [0, 0, 0, 12423, 2487], - "ystem-cache", - [2, 12416, 12418], - "is-element", - [2, 2573, 12420], - "heti", - [0, 1177, 6651, 7625, 28987, 1894], - "html2sketch", - [3, 3137, 12], - "ind-and-replace", - [2, 12425, 12426], - [3, 3140, 14], - [2, 12428, 1871], - [1, 2343, 12453], - "prism-themes", - "react-l", - "-skeleton", - [2, 10087, 12433], - [2, 12432, 12434], - "code-editor", - [2, 10961, 12436], - [2, 3890, 12437], - "rehype-r", - "emove-comments", - [2, 12439, 12440], - "directive", - [2, 3986, 12442], - "sucrase", - "umi", - "-parents", - [2, 4555, 12446], - "v8-compile-cache", - "vfile", - "dumi-a", - "ssets-types", - [2, 12450, 12451], - [0, 12464, 0, 2514, 2523], - [2, 11367, 1732], - [2, 6495, 12454], - [3, 5540, 9], - "sted-git-info", - [2, 12456, 12457], - [2, 6308, 6925], - "luralize", - [2, 5088, 12460], - "@umijs/lint", - [2, 12398, 9711], - [0, 53, 1939, 1959, 68, 1938, 1270, 1935, 1947, 19302, 1011, 19254, 1961, 1976, 1009], - [1, 2343, 12469], - "-import-utils", - [2, 12405, 12466], - "repo", - [0, 0, 12470, 12476, 2523], - [0, 1177, 1903, 1938, 1953, 1958, 4389], - "git-repo-info", - [2, 11311, 1732], - "zx", - [2, 699, 701], - [2, 12407, 12474], - [ - 0, 19309, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 6651, 2446, 2292, 2272, 671, 19315, 19269, - 2869, 1899, 4255, 19317, 590, 19318, 19320, 19273 - ], - " site generator", - [2, 2947, 12477], - "jamstack", - [1, 2343, 12481], - [0, 0, 12482, 12483, 2537], - [0, 5601, 19325, 1177, 1938, 1953, 1958, 4389], - [ - 0, 19309, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 6651, 2446, 2292, 2272, 671, 19315, 19269, - 2869, 4255, 19317, 590, 19318, 19320, 19273 - ], - [1, 2343, 12485], - [0, 12486, 12487, 2514, 34352], - [0, 442, 27928, 1982, 2203, 4523], - [0, 19333, 5601, 4874, 19336, 1446, 1177, 19339, 33860, 1894, 91], - [1, 2343, 12489], - [0, 12490, 12491, 12492, 2537], - [0, 29371, 19194, 19344, 19254, 2203], - [0, 1166, 1177], - [ - 0, 6651, 1906, 19347, 19348, 19349, 19350, 19353, 1501, 19269, 590, 671, 9654, 2292, 2272, 19270, 1177, 2649, - 19271, 4255, 15717, 4354, 16790, 19273, 18443, 2446, 2869 - ], - [1, 2343, 12494], - [0, 0, 12495, 12496, 2399], - [0, 192, 5467, 1610, 2675, 2990, 3985, 3995, 1906], - [0, 19359, 1541, 1177, 18639, 18640, 3624, 1906], - [1, 2343, 12498], - [0, 12499, 12500, 12501, 2537], - [0, 1012, 1091, 1443, 1525, 1595, 1699, 8098, 18420, 2777, 2845, 12834, 3117, 4507], - [ - 0, 442, 4874, 6513, 29891, 16480, 22839, 1177, 1895, 1938, 1953, 1955, 1982, 3125, 3390, 3400, 3471, 1894, 4193, - 18710, 91, 4523, 1984 - ], - [0, 2295, 1739, 1745, 1177, 1179, 1932], - [1, 2343, 12503], - [0, 12504, 0, 12505, 4139], - [0, 1676, 27418, 2191, 19380, 29856, 27921, 12578], - [0, 91, 1177, 1204, 14056, 1932], - [1, 2343, 12507], - [0, 12508, 12509, 12510, 2523], - [0, 2102, 2151, 3008, 3429, 4121], - [ - 0, 48, 53, 87, 192, 5467, 19401, 16405, 1178, 1193, 1457, 19403, 1610, 1700, 1701, 1177, 1895, 19405, 1938, - 2675, 1192, 2794, 2990, 3400, 1894, 4257, 2924 - ], - [0, 1177, 671, 9654, 1194, 2924], - [1, 2343, 12512], - [0, 12513, 12514, 12515, 2537], - [0, 439, 19194, 19413, 2000, 19415, 19419, 4025], - [0, 1011, 1166, 1414, 1437, 1177, 19422, 1912, 1933, 2020, 3400, 3471, 3532, 91, 1906], - [0, 1177, 6741, 6939, 1166, 1973, 8791, 1145, 6637, 6468, 2899], - [1, 2343, 12517], - [0, 12518, 12519, 12520, 34352], - [0, 19209], - [0, 2899, 1177, 1178, 3028], - [0, 1172, 1177, 6741, 6939, 1178], - [1, 2343, 12522], - [0, 12523, 12524, 12526, 2523], - [0, 16805, 19436, 1393, 1423, 2105, 2203, 3057, 4135], - [ - 0, 53, 68, 192, 5467, 19438, 442, 6061, 6063, 19441, 5366, 19443, 5601, 5087, 19446, 5254, 1317, 19449, 1804, - 1177, 1895, 1933, 1955, 2024, 2675, 1192, 1894, 4131, 4183, 4468, 4474, 91, 4523 - ], - "object-deep-merge", - [0, 1177, 1388, 4231, 5592, 671, 1421, 19451], - [1, 2343, 12528], - [0, 0, 12529, 12530, 2523], - [0, 1177, 2899], - [0, 1177, 6741, 1925, 6778], - [1, 2343, 12532], - [0, 12535, 12536, 12537, 2537], - [2, 19573, 24759], - "diff-sequences", - [0, 1874, 2687], - [0, 12602, 4874, 19464, 1178, 1503, 1615, 1177, 19466, 2151, 2899, 3421, 3456, 4039, 4135, 13134, 19468, 19469], - [0, 1177, 6741, 6939, 1932, 8505, 4298, 12442, 2202, 2203, 19472, 19473, 19475, 19478, 19479, 19482], - [1, 2343, 12539], - [0, 12540, 12541, 12542, 2443], - [0, 439, 2004], - [ - 0, 192, 5467, 6303, 19492, 19181, 442, 27928, 19611, 19580, 31200, 1006, 4870, 4874, 1011, 1012, 16480, 1177, - 19494, 1895, 1912, 1953, 1982, 1992, 1994, 2000, 2675, 2807, 2990, 1209, 3125, 3390, 3401, 1894, 1531, 91, 4523, - 1984 - ], - [0, 1177, 6741, 6939], - [1, 2343, 12544], - [0, 12545, 12546, 12547, 2537], - [0, 1209, 19500], - [ - 0, 1091, 2070, 2675, 2899, 1177, 4039, 19505, 15555, 48, 53, 13693, 94, 4131, 87, 68, 19504, 5235, 1933, 1198, - 5874, 78 - ], - [0, 1177, 1932, 1934], - [1, 2343, 12549], - [0, 12550, 12551, 12552, 4139], - [0, 2654], - [0, 19512, 19514, 1177, 1895, 19516, 1894, 4135], - [0, 6939, 6741, 1177, 1936], - [1, 2343, 12554], - [0, 12555, 12556, 12558, 34352], - [ - 0, 11554, 19522, 19525, 18976, 1143, 1676, 19526, 19527, 19378, 2571, 17501, 2743, 3181, 19020, 19531, 18994, - 4135, 11555, 4480 - ], - [ - 0, 19535, 5601, 1011, 1173, 1175, 1178, 1208, 1212, 1261, 14237, 1280, 1291, 1429, 1610, 19538, 1177, 1912, - 1915, 1933, 1938, 17585, 14053, 19539, 2070, 2708, 2762, 2858, 19540, 19541, 3125, 2899, 19544, 3421, 3875, - 4039, 4103, 4193, 4449, 91, 19545 - ], - "stable-hash", - [0, 1177, 6741, 6939, 5194, 13354, 5260, 1204, 6813], - [1, 2343, 12560], - [0, 12561, 12562, 12542, 2487], - [0, 1012], - [ - 0, 48, 53, 87, 92, 192, 5467, 19492, 19552, 6061, 6063, 5536, 5601, 5087, 4874, 5254, 1009, 1011, 1012, 1193, - 19555, 1680, 1177, 1895, 1912, 1933, 1938, 1953, 1955, 1992, 19560, 2675, 2742, 1192, 15853, 2990, 19516, 3534, - 1894, 4039, 4131, 4135, 4474, 91 - ], - [1, 2343, 12564], - [0, 12565, 12566, 12567, 2537], - [0, 19567, 12533, 19568, 8506, 1676, 1874, 2000, 19186, 2626, 12525, 27427, 4135, 19570, 30614], - [ - 0, 5517, 48, 53, 68, 5240, 87, 19574, 19577, 19193, 19578, 816, 16607, 6065, 16608, 4856, 5245, 19580, 19581, - 1006, 8818, 6503, 4874, 5254, 19586, 5552, 1198, 1208, 19588, 1414, 1420, 1429, 1677, 1177, 19504, 19505, 2070, - 2203, 2675, 19592, 2845, 26696, 2990, 2899, 19595, 3541, 4068, 4039, 4042, 4131, 4193, 5569, 91, 4523 - ], - [0, 1177, 1932, 1776], - [0, 12569, 19601, 12572, 34352], - [0, 439, 19193, 11180, 12570, 12534, 12668, 17310, 12118, 19571], - [2, 19606, 12571], - "ast-token-store", - [0, 1177, 6741, 6939, 671, 19632, 2856, 1781], - [1, 2343, 12574], - [0, 12575, 12576, 12577, 2537], - [0, 11869, 19522, 1143, 19638, 1169, 19639, 19640, 13829, 2571, 19644, 19645, 3181, 19020, 19647, 19648], - [ - 0, 48, 53, 68, 5240, 94, 1159, 1198, 1261, 1177, 1881, 1912, 1933, 1935, 1938, 2004, 2126, 2708, 2762, 17221, - 3183, 3410, 3435, 3438, 4039, 4103, 4135, 4389, 19650 - ], - [0, 1177, 6741, 6939, 6653, 7320, 1219], - "unrs-resolver", - [1, 2343, 12580], - [0, 12581, 12582, 12583, 2537], - [0, 3137], - [0, 3421, 1429, 2899, 1177, 2203, 442, 19206, 19657], - [0, 1177, 6741, 1783, 671, 9654], - [1, 2343, 12585], - [0, 12587, 0, 12594, 2399], - "aleo", - [0, 2203, 439], - "cryptography", - [3, 1336, 10], - "decentralized", - "-knowledge", - [2, 7150, 12591], - "oracle", - [0, 1177, 6741, 6939, 2899], - [1, 2343, 12596], - [0, 12597, 12601, 12615, 34352], - [0, 439, 1835, 19671, 2191, 2203, 1555, 2687, 4135, 29860], - "event-", - "target-shim", - [2, 12598, 12599], - [ - 0, 442, 5601, 1006, 27303, 4874, 1011, 12145, 1177, 1895, 1912, 1933, 2071, 2675, 2990, 3125, 2899, 3401, 3421, - 3456, 1894, 3757, 3980, 4039, 19676, 4507, 91 - ], - "@mysticatea/eslint-plugin", - [3, 12602, 12], - [2, 12603, 4158], - "dts-bu", - "ndle-generator", - [2, 12605, 12606], - "growl-reporter", - [2, 2877, 12608], - "-minify", - [2, 4045, 12610], - "rollup-", - "rollup-watch", - "type-tester", - [0, 1177, 6741, 6939, 202, 6710, 5286, 6987, 2090, 3403, 1204, 3209], - "w3c", - "abort", - "cancel", - "control", - "controller", - [2, 12617, 12620], - "abortsignal", - [1, 2343, 12624], - [0, 12625, 12626, 12615, 2487], - [0, 1927, 19414, 2687, 3181, 814, 4135], - [0, 12602, 1503, 1177, 2071, 2203, 2899, 3421, 3456, 3757, 4039], - "negotiator", - [1, 2343, 12629], - [0, 12630, 0, 12632, 2399], - [0, 19689, 19571], - "negotiation", - [0, 1177, 6741, 6939, 1894], - [1, 2343, 12634], - [0, 12635, 12636, 12637, 2537], - [0, 439], - [0, 1011, 1742, 1177, 1895, 1912, 1933, 1939, 1953, 1955, 2203, 2675, 1192, 2990, 3401, 1894, 91], - [0, 1177, 6741, 6939, 1862, 6567], - [1, 2343, 12639], - [0, 12640, 12641, 12642, 2523], - [ - 0, 19522, 19724, 1143, 19726, 19526, 19641, 2004, 2571, 19644, 3181, 3438, 19020, 18994, 3744, 814, 4135, 11434, - 19729 - ], - [ - 0, 53, 68, 5611, 19731, 19735, 90, 5601, 1006, 4874, 1011, 1178, 1177, 1881, 1912, 1933, 1938, 1992, 19560, - 1994, 2000, 11605, 2070, 2759, 2762, 19736, 3125, 2899, 3410, 4193, 91, 19545 - ], - [0, 1177, 6939, 6741, 89], - [1, 2343, 12644], - [0, 12645, 12646, 12642, 2523], - [0, 4763, 53, 58, 21131, 25652], - [0, 1192, 91, 4874, 104, 1178, 5601, 1006, 19877, 36694, 68, 92], - [1, 2343, 12648], - [0, 12649, 12651, 12652, 2487], - [0, 439, 12121, 8506, 19592, 19745, 19750, 19751], - "git-clone", - [ - 0, 107, 6022, 19492, 19181, 442, 19605, 19609, 11470, 4856, 5601, 19611, 1006, 6503, 4874, 19759, 1009, 1011, - 1145, 1429, 19619, 1177, 1895, 1912, 1915, 1933, 1938, 1942, 19622, 1945, 1948, 1953, 19757, 1955, 1964, 1982, - 1988, 17308, 19756, 3125, 2899, 19761, 3090, 3401, 3421, 3486, 1894, 4135, 4320, 4946, 19624, 1531, 4494, 91, - 4523, 19630, 4614, 4630 - ], - [0, 1177, 6741, 6939, 6961, 1108], - "iglet", - [2, 5537, 12653], - [3, 9362, 11], - [2, 12655, 1496], - [1, 2343, 12658], - [0, 12661, 12662, 12663, 2523], - "nestjs", - "fullstack", - [0, 19767], - [0, 442, 13729, 1177, 19771, 1895, 1912, 1933, 2990, 3125, 2899, 3400, 1894, 4131, 19235], - [0, 1177, 1965, 19773], - [1, 2343, 12665], - [0, 12667, 0, 12669, 34352], - "archive", - [0, 91, 4135, 31800, 3060, 19780, 12121, 3181, 5569, 19751, 1413, 1405, 2203], - "eslint-json-compat-utils", - [0, 19786, 1177, 6741], - [1, 2343, 12671], - [0, 0, 12529, 12672, 2443], - [0, 1177, 6741], - [1, 2343, 12676], - "flowcontrol", - "arch", - [0, 12677, 12678, 12679, 34352], - [0, 439, 5012, 14301, 2203, 2932, 3561, 3616, 3676, 4135, 19795], - [ - 0, 53, 68, 14039, 19492, 10879, 19797, 19798, 8818, 19799, 6503, 4874, 19800, 5254, 19802, 5604, 5552, 1082, - 1145, 668, 1994, 19339, 1996, 2000, 2807, 695, 2899, 3640, 3681, 2278, 4228, 4333, 3709, 19803, 4494, 4505, 4745 - ], - [0, 1177, 6939, 6741, 3709, 19805], - "cron-parser", - "date.js", - "human-i", - [1, 2343, 12686], - "nterval", - [2, 12682, 12684], - [0, 12691, 12695, 12696, 2523], - "uman-interval", - [2, 6495, 12687], - [2, 8329, 2995], - [2, 3230, 12689], - [0, 5604, 1012], - "job", - "jobs", - "delayed", - [ - 0, 192, 5467, 19181, 442, 4874, 5551, 7677, 22839, 23203, 1177, 1895, 1912, 1915, 32525, 1953, 1958, 1992, - 19560, 2203, 2675, 2807, 2990, 1894, 23535, 4131, 1531, 91, 4523, 1984 - ], - [0, 1177, 6741, 6939, 671, 1975, 5472], - [1, 2343, 12698], - [0, 12723, 12724, 12725, 2537], - [3, 1339, 12], - "end4", - [2, 12699, 12700], - "meat7", - [2, 1337, 12702], - "bow-swam-troops-care", - "cent-matter-to", - "close", - "r-composed-particularly-shout", - [2, 12706, 12707], - "coach-organized-notice", - "correct-home-silent7", - "course-whenever-merely", - "crop", - "-birthday-web3-children", - [2, 12712, 12713], - "exchange-known-bend", - "-even", - "tually-bound", - [2, 12716, 12717], - [2, 8205, 12718], - "grass-dollar-crew-floating", - "-fruit-web3-perfect", - [2, 4374, 12721], - [0, 1012, 608, 606], - [0, 9125, 5601, 1006, 1177, 9141], - [0, 6869, 1745, 2295, 4298, 9132, 9134, 9658, 1932], - "lay-rest-hour", - "balance", - "-trade-solar", - [2, 12727, 12728], - [2, 3131, 12729], - "meat", - "-think-stove8", - [2, 12731, 12732], - "offic", - "e-deal-mostly1", - [2, 12734, 12735], - "product-slight-adult-settlers", - [3, 3931, 9], - "done-should-moon", - [2, 12738, 12739], - "scienti", - "fic-exist-event2", - [2, 12741, 12742], - "sent", - "-won-little-western", - [2, 6590, 12745], - [2, 12744, 12746], - "-wing-eat", - [2, 6887, 12748], - "stay-including", - "supp", - "er-t", - "erm-including-snake", - [2, 12752, 12753], - [2, 12751, 12754], - "truck-hospital-equator-hurt", - "trunk-darkness-believed-corner", - "typi", - "cal-recall-industry-exchange", - [2, 12758, 12759], - "warn", - "-clothing-whose0", - [2, 12761, 12762], - "weigh-flew-web3-farm", - [1, 2343, 12766], - [0, 12767, 12768, 12769, 34352], - [0, 5279, 439, 1443, 1458, 19824, 5867, 30055, 2203, 2709, 10911, 2835, 3547, 19826, 19827, 4135, 8959], - [ - 0, 51, 53, 68, 19181, 19829, 1011, 5552, 1166, 1414, 1836, 1177, 19422, 1907, 1912, 1933, 1942, 1982, 1992, - 19560, 1994, 2000, 2992, 3125, 17269, 27922, 3390, 3401, 19595, 3471, 3718, 91, 4630, 4745 - ], - [0, 1177, 6741, 6939, 1981, 9654, 671, 590, 1906], - [1, 2343, 12781], - "@airtap/browserify-istanbul", - "-default", - [2, 1090, 12772], - "airtap-", - "airtap-multi", - "bruce-millis-option", - [3, 9242, 9], - [3, 9242, 10], - [2, 12778, 5576], - "near", - [0, 12561, 12794, 12797, 2537], - "nearest-file", - [2, 2103, 12782], - "s-to-files", - [2, 2070, 12784], - "human", - "ize-duration", - [2, 12786, 12787], - "load-script", - [3, 3736, 9], - [2, 12790, 6953], - [2, 3094, 12791], - "maybe-combine-errors", - [ - 0, 19344, 5601, 6503, 4874, 1009, 1011, 5551, 19838, 19839, 1540, 1177, 1912, 1933, 1985, 1992, 19560, 4474, - 4494, 91, 4543, 1984 - ], - "nanoresource", - "-col", - [0, 1177, 6741, 6939, 19842, 1984, 19844], - "-collection", - [2, 12795, 12798], - "on-str", - "eam-close", - [2, 12800, 12801], - "run-", - "parallel", - [1, 2343, 12806], - [0, 12810, 12811, 12816, 2523], - "-settled", - [2, 12804, 12807], - [2, 12803, 12808], - [0, 439, 12118, 16870, 3681, 4135, 19851], - [ - 0, 107, 27928, 19609, 19344, 11470, 5601, 19616, 4874, 5254, 19853, 1009, 1011, 5552, 7677, 1145, 19619, 668, - 1177, 23753, 1895, 1933, 1938, 1945, 29743, 19623, 1955, 1982, 19339, 1996, 2000, 2018, 2203, 2832, 3125, 3510, - 1894, 1531, 91, 19630, 4614, 1984, 4630 - ], - "tap-completed", - "y-with-args", - [2, 3949, 12813], - "transi", - [0, 1177, 6939, 7625, 188, 12072, 3624], - "ent-error", - [2, 12815, 12817], - [1, 2343, 12821], - "abstract-browser", - [0, 12822, 12824, 12827, 2487], - [0, 51, 2861, 1437, 2716, 3429, 89, 4183], - "simple-get", - [0, 19181, 19861, 5601, 4874, 8860, 4880, 1567, 1177, 5556, 19862, 19864, 2807, 3339, 4294, 91, 1984], - "labs", - "saucelabs", - [0, 1177, 19866], - [1, 2343, 12829], - [0, 12830, 12838, 5795, 34352], - [0, 34028, 1006, 19871, 2004], - "uri", - "fast-uri", - [3, 12284, 13], - [2, 12833, 1286], - "-string", - "from-string", - [2, 4013, 12836], - [0, 1011, 1429, 1996, 2000, 19230, 4167], - "@ajv-validator/config", - "quire-", - [2, 12840, 12836], - [2, 5249, 12841], - [1, 2343, 12853], - "tc", - "-plugin-utc", - [2, 1673, 12845], - "if-node-version", - [2, 12833, 4467], - [2, 5223, 12836], - "re2", - "tsify", - "uri-js", - [0, 0, 12854, 5795, 2523], - [0, 3456, 4042, 4057, 4481, 91], - [1, 2343, 12856], - [0, 12857, 0, 12858, 2537], - [0, 1898, 19884], - [0, 1998], - [1, 2343, 12861], - "Ajv", - [0, 0, 0, 12862, 34352], - [0, 10906, 5286, 6813, 1204, 5260, 202, 3209], - [1, 2343, 12864], - [0, 12865, 12866, 12867, 2523], - [0, 1082, 15128, 1996], - [0, 5517, 4042, 4167, 4481, 91], - [0, 6892, 5286, 5284, 57, 5341, 1082], - [1, 2343, 12869], - [0, 0, 12871, 12872, 2523], - "longjohn", - [ - 0, 15990, 19905, 19907, 2070, 2759, 19878, 2297, 2881, 2889, 2891, 2895, 2897, 2900, 2912, 19910, 2915, 1209, - 2899, 19912, 3954, 1241, 4487, 91, 4526, 19914, 2924 - ], - [0, 6892, 5286, 2003, 5284, 57, 5341], - [1, 2343, 12874], - [0, 0, 12875, 2514, 2523], - [0, 1264, 1280, 1429, 2000, 2323, 2351, 2390, 2404, 19922, 2272, 2899], - [1, 2343, 12880], - "buffer-", - "more-ints", - [2, 12877, 12878], - [0, 12881, 12883, 2514, 2487], - [0, 1006], - "claire", - [0, 91, 4579], - "AMQP", - [1, 2343, 12888], - "AMQP 0-9-1", - "RabbitMQ", - [0, 0, 12889, 12890, 2487], - [0, 2899, 1177, 2759, 1317, 4127, 4100, 1311, 1954, 1938, 1958, 1903, 1948, 1970], - [0, 984, 27, 10376], - [1, 2343, 12892], - [0, 12894, 12895, 12896, 4139], - "ux bootstrap", - [0, 19937, 2010], - [ - 0, 19939, 19941, 19942, 19944, 9424, 7892, 4874, 19325, 1389, 19945, 1596, 2675, 2759, 2297, 2871, 2889, 2895, - 19946, 3183, 3421, 1894, 4389, 4474, 4487, 4508, 4514, 91, 19948 - ], - [0, 9439, 19950], - [1, 2343, 12898], - [0, 12900, 12901, 12902, 2523], - "client-side", - [0, 9424, 1363, 1600, 19956, 19957], - [0, 19961, 4874, 19963, 19325, 1177, 2297, 2881, 2895, 19946, 19965, 3421, 1894, 4389, 4474, 91], - [0, 9439, 6731, 594], - [1, 2343, 12904], - [0, 12905, 12906, 12907, 2523], - [0, 1082, 1437, 4747, 1209, 1362, 2151, 19972, 2004, 3105, 19971, 4547], - [0, 3763, 19974, 91, 4874], - [0, 19976, 19977, 5284, 1783, 1973], - [3, 4, 9], - "cli/ast-tools", - [2, 12908, 12909], - [3, 12910, 13], - "href-webpack", - [2, 1296, 12912], - [2, 12911, 12913], - "@ngtools/json-schema", - "@ngtools/", - [2, 12916, 2924], - "denodeify", - [1, 2343, 12920], - [0, 12927, 12932, 12933, 2523], - "entity-name", - [2, 3370, 12921], - [2, 1828, 12922], - [2, 4284, 594], - [2, 1828, 12924], - "exists-sync", - [0, 1792, 7115, 3102, 19982, 4237, 19984, 4430], - "caller-file", - [2, 2183, 12928], - "isbinaryfile", - "node-mo", - [0, 19986, 19987, 19988, 4389, 19989], - [0, 3101, 3053, 19991, 7131, 4237, 4565, 1698, 4068], - "dules-path", - [2, 12931, 12934], - [2, 1508, 2091], - "silent-error", - [3, 4070, 9], - [3, 6384, 10], - "inst", - "rumenter-loader", - [2, 12940, 12941], - [2, 12939, 12942], - [2, 12938, 12943], - [1, 2343, 12946], - [0, 0, 12947, 12948, 34352], - [0, 1317, 1362, 1596, 2899, 3421], - [0, 2013, 2018, 13771, 2016, 19997, 19998, 19999, 6868, 20000, 1803, 3441, 20001, 20003], - [1, 2343, 12952], - " library", - [2, 4627, 12950], - [0, 0, 12953, 12954, 2537], - [0, 811, 10615, 1148, 1414, 2899, 4042], - [0, 20014, 20015, 20016, 20018, 19997, 19998, 6868, 20000, 13771, 2013, 3441, 19999, 20001, 20019, 20003], - [1, 2343, 12957], - "justified", - [0, 0, 12960, 12962, 2523], - "bgblack", - "bgBlack", - [0, 1090, 2159, 6914, 2569, 2756, 4389], - "bgblue", - [0, 2018, 7133, 7053, 7155], - "bgBlue", - "bgcyan", - "bgCyan", - "bggreen", - "bgGreen", - "bgmagenta", - "bgMagenta", - "bgred", - "bgRed", - "bgwhite", - "bgWhite", - "bgyellow", - "bgYellow", - "black", - "bold", - "clorox", - "cyan", - "dim", - "gray", - "green", - "grey", - "hidden", - [1, 2343, 12988], - "inverse", - "italic", - [0, 12989, 12995, 12999, 2537], - [0, 20033, 1615, 2089, 2188, 20035, 2745, 2753, 3404, 3718, 4174, 20039, 20040], - "magenta", - "red", - "str", - "kethrough", - [2, 4285, 12993], - [0, 4874, 1166, 1414, 20042, 20044, 20047, 29888, 3505, 16687, 16330, 4481, 91, 4707, 1906], - "underline", - "white", - "yellow", - [0, 2978, 1451, 3729, 20049, 16701, 20050, 20051, 1614, 2090, 4166, 20052, 17180, 20054, 3378, 3403, 2703, 12473], - [1, 2343, 13001], - [0, 0, 13003, 13004, 2487], - "@jest/get-type", - [0, 2273, 2277, 2283, 2228, 4707], - [0, 2021, 3729, 20061, 8634, 20062, 20063, 20064, 20065], - "vt100", - "cursor", - "iterm2", - "screen", - "erase", - [1, 2343, 13012], - "scrollback", - [0, 13013, 13014, 2514, 2537], - [0, 20076, 13002, 11907, 8765, 11944, 2798], - [0, 16596, 8776, 1437, 2700], - [1, 2343, 13016], - [0, 0, 13018, 13019, 2537], - "pattern", - [0, 5517, 4874, 29891, 23203, 1177, 20083, 3377, 20085, 4294, 4473, 91, 1984], - [0, 91, 20088, 1145, 553, 4532, 1973, 5472], - [1, 2343, 13021], - [0, 13022, 13023, 13025, 2537], - [ - 0, 3763, 1704, 984, 3441, 710, 4590, 1676, 2145, 977, 38, 1080, 1000, 3494, 4266, 1833, 3173, 988, 1364, 1869, - 2657, 3440, 1562, 2099, 3781, 4151, 1581, 20103, 1560 - ], - [0, 1797, 2590, 3421, 1087, 2899, 4594, 1177, 3127, 3237, 4342, 1553, 1575, 1578, 2040, 3162, 20106], - "svg-term-cli", - [0, 2026, 5130, 6690, 5122, 27, 4030, 7096, 38, 1896, 5592], - [1, 2343, 13027], - [0, 13028, 13029, 13025, 2537], - [ - 0, 1080, 20098, 1364, 1560, 1562, 977, 1581, 1676, 1704, 1833, 1869, 984, 2099, 2145, 2657, 20103, 3164, 3440, - 3494, 3509, 988, 3763, 3781, 4100, 710, 4151, 20099, 4266, 1000, 4578, 4590 - ], - [0, 1087, 1553, 1575, 1578, 1797, 1177, 2040, 2590, 3127, 3162, 2899, 3237, 3421, 20106, 4342, 4594], - "truecolor", - [2, 31213, 31214], - [1, 2343, 13033], - [0, 13034, 13040, 13043, 2487], - [0, 53, 58, 101, 19526, 3509], - [2, 12392, 188], - "nitless", - [2, 7944, 13036], - "@simonwep/pickr", - "array-", - [0, 5087, 1177, 1192], - "tree-filter", - [2, 13039, 13041], - [0, 8124, 2026, 1776, 2295, 7701, 20120, 1745, 4363, 13728, 1179, 8623, 20121, 20123, 20124], - [1, 2343, 13048], - "dom-align", - "croll-into-view", - [2, 11148, 13046], - [0, 13050, 13054, 13070, 2537], - "vue-types", - [0, 1797, 3188, 1525, 3181, 14380], - [3, 10720, 40], - [2, 5822, 3426], - "@types/k", - [0, 2899, 1177, 4039, 4538, 4342, 4459, 1954, 1938, 1958, 1903, 1970, 4588], - "@types/koa", - "ru-cache", - [2, 6499, 13056], - [3, 4875, 15], - [2, 13058, 3615], - "-jsx", - [2, 11016, 13060], - [2, 1199, 1219], - [2, 5334, 13062], - "slint", - [2, 3542, 13064], - [2, 1472, 13065], - [2, 5334, 13066], - [3, 1031, 19], - [2, 13068, 1894], - [0, 2026, 5130, 6690, 5122, 4030, 7096, 38, 1896, 5592], - "vue3-jest", - [2, 5334, 13071], - "pack-", - [1, 2343, 13081], - "cli/serve", - [2, 13073, 13075], - [2, 10672, 13076], - "ali-oss", - "nline-import-data-uri", - [2, 1206, 13079], - [0, 13082, 13091, 13102, 2523], - [0, 2070, 2215, 2036], - "context", - "quire-context", - [2, 1252, 13084], - "colorful", - "-versions", - [2, 3797, 13087], - "cz-git", - "diacritics", - [0, 442, 6061, 16607, 6063, 6065, 16608, 16612, 5087, 4874, 1177, 2203, 2774, 4131, 4468, 91, 4523], - "docsearch.js", - "enquire-js", - [3, 1954, 16], - "licit-type-exports", - [2, 1760, 13095], - [2, 13094, 13096], - [3, 2512, 11], - [2, 13098, 1501], - "-emit-webpack-plugin", - [2, 2687, 13100], - [0, 2026, 20137, 2036, 6624, 8691, 20140, 5354], - "is-windows", - [3, 11948, 16], - [2, 13104, 188], - "stub", - [2, 1221, 13106], - [2, 2769, 13107], - "templater", - [2, 2842, 13109], - [1, 2343, 13116], - "mport", - "npm-import", - [2, 1186, 13113], - [2, 3194, 13114], - [0, 13139, 13140, 13146, 2523], - "vars-to-js", - [2, 3194, 13117], - "majo", - [3, 5961, 14], - "ble-of-contents", - [2, 13120, 13121], - "merge2", - [2, 3986, 1646], - "yaml-", - "yaml-config", - [2, 3986, 13126], - "reqwest", - "rucksack-css", - [3, 4130, 9], - [2, 13130, 36], - [3, 1873, 9], - [2, 2495, 2091], - [2, 13132, 13133], - "umi-request", - "vue-cl", - "ipboard2", - [2, 13136, 13137], - [0, 2863, 20147, 8264], - [0, 2899, 1177, 2026, 4474, 1894, 91, 6503, 6494, 1566, 1011, 1009], - "drag-resize", - [2, 4625, 13141], - "vue-i", - "nfinite-scroll", - [2, 13143, 13144], - [0, 1303, 20150, 5165, 20151, 14374, 27, 2038, 11326, 3424, 2026], - [1, 2343, 13150], - "equest", - "vue-request", - [0, 13153, 13155, 2514, 2523], - "vue-tsc", - "webpackbar", - [0, 977, 1581, 1676, 1704, 16128, 3494, 4100, 4538], - "vueComponent", - [0, 1087, 1575, 1177, 1948, 2026, 2899, 3421, 4342], - [1, 2343, 13157], - [0, 13158, 13160, 13170, 2523], - [0, 1091, 1437, 1525, 1536, 1594, 1759, 2026, 2812, 4042, 4057, 91, 4763], - [2, 11164, 3007], - [0, 442, 7806, 9227, 6494, 4874, 1009, 1011, 1177, 1954, 2203, 3363, 1894, 4039, 4474, 4480, 4523], - "color-picker", - [2, 11183, 13161], - [3, 5050, 15], - "utate-observer", - [2, 13163, 13164], - [2, 11183, 11194], - [3, 11185, 15], - "rigger", - [2, 13167, 13168], - [0, 5592, 5995, 20164, 5001, 7141, 2026, 20165, 5130, 6706, 6807, 36, 7020], - [3, 11161, 14], - "mpat", - [1, 2343, 13180], - "mpatible", - [2, 13171, 13174], - "work-theme", - [2, 2560, 13176], - [2, 41, 13177], - "@ant", - [0, 0, 13208, 13209, 2523], - "@antv/g6", - "@codecov/webpack-plugin", - "@code", - "sandbox", - "/sandpack-react", - [2, 13184, 13185], - [2, 13183, 13186], - "@ianvs/prettier-plugin-sort-imports", - "@madccc/duplicate-package-checker-webpack-plugin", - "@micro", - "flash/rehype-figure", - [2, 13190, 13191], - "dm-zip", - [2, 9165, 13193], - "li-oss", - [2, 9165, 13195], - [3, 10403, 11], - [2, 13197, 3730], - [3, 10406, 12], - [2, 13199, 36], - [3, 8806, 9], - "omorphic-fetch", - [2, 13201, 13202], - [2, 7635, 965], - [2, 10884, 3730], - "ixelmatch", - [2, 5088, 13206], - [0, 1414, 20171, 4193, 1177, 2026, 4474, 20170, 91, 4874, 6513, 6494, 1011, 1009], - [ - 0, 20173, 20174, 1781, 91, 5592, 27, 2026, 20175, 20176, 91, 2663, 998, 20178, 20179, 20182, 20183, 20184, 9091, - 10339, 5995, 20186, 20188, 89, 20189, 20194, 20195 - ], - "@types/pngjs", - [1, 2343, 13217], - "pinnies", - [2, 5051, 13212], - [3, 7752, 10], - "antd-style", - [3, 8770, 10], - [0, 13222, 13242, 13244, 2537], - "ugin", - "y-plugin", - [2, 13216, 13219], - [2, 7045, 13220], - [0, 1209, 1155], - "cli-progress", - "plugin-c", - "chunk", - "olor-chunk", - [2, 13224, 13226], - [2, 12407, 13227], - [3, 5556, 16], - "dash", - [2, 13229, 13230], - "lunar-typescript", - "p-all", - "untup", - [2, 3808, 13234], - "-no-", - "-references", - [2, 10393, 13237], - [2, 13236, 13238], - [2, 11380, 13239], - "runes2", - [0, 20202, 20207, 20212, 5087, 4870, 1009, 1011, 1177, 1895, 1938, 1955, 1192, 1894, 4468, 91], - "spinnies", - [0, 2026, 1155, 7020, 2649, 2574, 20215, 4741], - "vanilla-tilt", - [1, 2343, 13247], - [0, 13248, 13249, 13250, 2523], - [0, 1112, 3327, 20221, 3776, 13031], - [ - 0, 7806, 9227, 27478, 6494, 9231, 27327, 22102, 10413, 20232, 1536, 1594, 1704, 2026, 9243, 2657, 3313, 20243, - 91, 4548, 4763, 34143 - ], - [ - 0, 6710, 5592, 27, 2663, 1745, 1781, 2026, 91, 2844, 36, 1852, 8124, 20246, 3452, 20247, 6652, 20251, 20252, - 4763, 7020 - ], - [1, 2343, 13252], - [0, 0, 13253, 13254, 4139], - [0, 13614, 13616, 1177, 2292, 4389], - [0, 2051, 1496, 1698], - [1, 2343, 13256], - [0, 13257, 13258, 13269, 4139], - [0, 20263, 20266], - [0, 20268, 20269, 20272, 2398, 2747, 20273, 3183, 2899, 3427], - "ext-comm", - [2, 10740, 13259], - [2, 5409, 13260], - [2, 5409, 1745], - "app-layout", - [2, 10689, 13263], - [3, 10703, 14], - [3, 212, 11], - [2, 13265, 13266], - [3, 806, 10], - [0, 3426, 1496, 2051, 1698, 7002, 3048, 3427, 3435, 3743, 3583, 3205, 20275, 4161, 614, 6435, 594, 6692], - [1, 2343, 13273], - "aper-toast", - [2, 13268, 13271], - [0, 13274, 13288, 2514, 2523], - [0, 1149, 3008, 4121, 4695], - "menu-mixin", - [2, 5395, 13275], - "building", - "-rollup", - [2, 13277, 13278], - [2, 5471, 13279], - [2, 1384, 591], - [2, 13265, 13281], - [3, 5478, 17], - "-regression", - [2, 7062, 13284], - [2, 13283, 13285], - "amf-client-js", - [ - 0, 1173, 1193, 1245, 1257, 1264, 1610, 1628, 1701, 1177, 20281, 1938, 2092, 1192, 2990, 3413, 3697, 3786, 4257, - 4307, 2924, 20283 - ], - [2, 4053, 2257], - "per", - "unzipper", - [1, 2343, 13295], - "raml", - "amf", - [0, 13296, 13297, 13298, 2399], - [0, 1676, 2188, 4753, 20290], - [0, 1009, 1011, 1166, 1177, 1903, 1920, 1938, 1954, 1958, 1970, 2151, 2675, 2990, 3421, 4481, 91], - [0, 4560, 2056, 7682], - [1, 2343, 13300], - [0, 0, 13306, 2514, 34352], - "-match-patch", - [2, 1687, 13301], - "se-loader", - [2, 5779, 13303], - "klaw-sync", - [ - 0, 3421, 2323, 1776, 2899, 4193, 1177, 1209, 3460, 4431, 1596, 1389, 20304, 2494, 2530, 2990, 13896, 4599, 2401, - 20305, 20306, 4603 - ], - [3, 1898, 16], - [1, 2343, 13309], - [0, 13312, 13313, 13314, 2537], - "commended", - [2, 13307, 13310], - [0, 20312], - [0, 1177, 1889, 1954, 2022, 2899, 3421, 20314, 4193], - [0, 20317, 3073, 2942, 6807, 3721, 20319], - [1, 2343, 13316], - [0, 13317, 13320, 13321, 2537], - [0, 20325], - "light", - "apidoc-light", - [0, 603, 4874, 1610, 2070, 19826, 4005, 4508, 91, 1984, 20328, 20330, 2064], - [0, 20334, 20335, 13657, 5472, 20336, 20339, 20340, 2060, 20342, 20341, 1192], - "portable", - [1, 2343, 13324], - [0, 13329, 0, 13330, 4139], - "programmatic", - "cli-app", - [2, 4610, 1745], - [2, 3115, 1745], - [0, 20351, 20349], - [0, 1641, 57, 2062, 20353, 20354, 20355], - [1, 2343, 13332], - [0, 0, 13334, 13335, 2537], - "http2", - [0, 1596, 1758, 1177, 2899, 3421, 3697, 89, 3904, 4193, 91], - [0, 2062, 4162, 1693], - "apple", - " notifications", - [2, 6645, 13337], - "iOS", - "apns", - [1, 2343, 13342], - [0, 13343, 13344, 13347, 2537], - [0, 20366, 19185, 2200, 13123, 3170], - [ - 0, 20369, 16396, 20371, 8778, 6503, 4874, 20374, 6513, 20375, 1177, 20377, 2020, 2071, 20378, 2070, 20380, 2899, - 4039, 4193, 20382, 91 - ], - [3, 1122, 12], - [2, 1126, 6731], - [0, 2070, 11601, 2062, 20385], - [1, 2343, 13349], - [0, 0, 13350, 2514, 2523], - [0, 6503, 4874, 2899, 4113, 91], - [3, 5515, 14], - [2, 4807, 13351], - [1, 2343, 13355], - "jsnext", - [0, 13357, 13358, 13359, 2443], - "relay", - [0, 20394], - [0, 53, 83, 87, 94, 4874, 1195, 1414, 1177, 2591, 2765, 1894, 3753, 91, 2924, 4677], - [0, 2062, 6523, 1781, 57, 4734, 16168, 4735, 676, 1155, 2649, 8535, 1145, 20398, 20400, 1936], - [1, 2343, 13361], - [0, 0, 0, 13365, 2399], - [3, 8780, 10], - "phql", - [2, 13362, 13363], - [0, 2077, 5131, 4453, 4384, 2076, 1702], - [1, 2343, 13367], - [0, 13368, 13371, 13375, 2537], - [0, 20428, 20414, 20434, 13597, 20418, 20409, 20426, 20412, 20420, 3533, 20416, 4038, 20423, 4135, 20410], - "-common", - [2, 1129, 13369], - [ - 0, 28002, 8520, 826, 19344, 7844, 4874, 1091, 8531, 1092, 20437, 20446, 20441, 28400, 20450, 1540, 1610, 1177, - 20444, 11049, 20453, 20436, 2657, 2812, 12284, 2861, 20451, 29197, 3313, 3752, 4238, 4481, 91, 4548, 4590, 6482 - ], - [2, 1126, 1612], - "to-querystring", - [2, 3425, 13373], - [0, 5122, 5130, 1781, 2844, 3445, 5592], - [1, 2343, 13377], - [0, 13378, 13380, 2514, 2523], - [ - 0, 603, 20472, 12397, 20467, 20482, 12399, 12400, 27329, 20463, 1201, 1212, 20479, 20476, 1835, 668, 2071, - 12419, 20465, 3181, 20460, 4480, 91, 20474 - ], - "cracks", - [ - 0, 192, 5467, 842, 5087, 20485, 9129, 4874, 14011, 12471, 2675, 1192, 6551, 2990, 1894, 3706, 3708, 4039, 4474, - 4494, 12473 - ], - "_modules", - [2, 202, 13381], - [1, 2343, 13384], - [0, 13385, 13386, 13389, 2399], - [ - 0, 20490, 20491, 20492, 20493, 20494, 15016, 1792, 3183, 19544, 3923, 19647, 4243, 20495, 18997, 20496, 4389, - 4431 - ], - [0, 13614, 1158, 1159, 1177, 2708, 3410, 4103], - "@appium/support", - "@colors/colors", - [0, 4384, 12786, 1973, 20499, 20500, 3721], - "appium-adb", - "appium-", - "driver", - "chromedriver", - [2, 13391, 13393], - "asyncbox", - "io.appium.settings", - "ports", - [1, 2343, 13401], - "portscanner", - "teen_process", - [0, 13407, 13408, 2514, 2523], - "@appium/", - [3, 1879, 15], - "ppium-ts", - [2, 13403, 13404], - [2, 13402, 13405], - [0, 1613, 20507, 3082, 3427, 1862, 20508, 11804], - [0, 53, 1700, 2126, 2323, 2338, 2396, 2494, 2700, 2774, 3159], - [1, 2343, 13420], - "@appium/t", - [2, 13410, 7630], - [2, 13410, 103], - "luebird", - [2, 4853, 13413], - [3, 4875, 9], - "rtscanner", - [2, 13415, 13416], - [2, 5051, 5588], - "@types/te", - [0, 6230, 13421, 13422, 34352], - [0, 48, 53, 87, 90, 6061, 6063, 20514, 13662, 20517, 1251, 1652, 1177, 1879, 2990, 3188, 4131], - [ - 0, 20519, 20520, 20521, 20522, 4963, 20523, 4967, 6082, 89, 20524, 20525, 11609, 5122, 20526, 20528, 20531, - 20533, 17751, 20536, 20537, 20539, 20541, 20542, 20543, 20544, 20545, 20546, 20547, 20548, 20551, 20553 - ], - [1, 2343, 13424], - [0, 6263, 13425, 13427, 2537], - [ - 0, 48, 53, 83, 87, 90, 92, 5583, 811, 816, 10817, 968, 972, 20562, 5087, 4880, 4883, 1009, 1011, 1503, 1540, - 1610, 1177, 1881, 1895, 17613, 1938, 1939, 1959, 1961, 1192, 89, 3824, 3957, 4042, 4073, 4468, 4484, 91 - ], - "appium", - [0, 20566, 4967, 20568, 3875], - "automation", - [2, 5131, 10428], - [1, 2343, 13431], - [0, 13432, 0, 13433, 4139], - [0, 20577, 20573, 20575, 11959], - [0, 1612, 27, 3212, 5472, 4158, 13106], - [1, 2343, 13435], - [0, 13436, 0, 13438, 2399], - [0, 20584], - "@azure/core-auth", - [0, 10807, 2087, 15964, 20586, 1149, 12804, 6812, 14836, 1862], - [1, 2343, 13440], - [0, 5621, 13443, 13448, 2537], - "pipeline", - "reg", - [0, 4874, 23203, 1149, 2675, 2990, 91, 1983, 26744, 1984], - "@azure/", - "identity", - [2, 13444, 13445], - "monitor-", - [0, 2088, 6938, 6952, 7179, 1111], - "eleme", - [1, 2343, 13451], - [0, 13460, 8134, 13461, 34352], - "opentelemetry", - [2, 13447, 13452], - [2, 13444, 13453], - [3, 830, 9], - [2, 13454, 13455], - "-inst", - "rument", - "ation-", - [0, 16232], - [0, 3656, 200, 8429, 6876, 7169, 5511, 2568, 20597, 2089, 20598], - "azure-sdk", - [2, 13459, 13462], - [2, 13458, 13463], - [2, 13457, 13464], - [2, 13452, 13465], - [2, 13444, 13466], - "@opent", - [1, 2343, 13472], - "elemetry/api", - [2, 13468, 13470], - [0, 13511, 13519, 13533, 2537], - "-logs", - [2, 13471, 13473], - [3, 13471, 15], - [2, 13475, 364], - "er-logs-otlp-http", - [2, 6813, 13477], - [2, 13475, 13478], - [3, 13479, 24], - "metr", - "ics-otlp-http", - [2, 13481, 13482], - [2, 13480, 13483], - "trace-", - "otlp-http", - [2, 13485, 13486], - [2, 13480, 13487], - "otlp-", - "exporter-", - [2, 13490, 1299], - [2, 13489, 13491], - [2, 13475, 13492], - "resources", - [2, 13475, 13494], - "sdk-logs", - [2, 13475, 13496], - [3, 13497, 19], - "metrics", - [2, 13498, 13499], - "trace-base", - [2, 13498, 13501], - [3, 13502, 25], - [2, 13503, 202], - [3, 13497, 16], - "emantic-conventions", - [2, 13505, 13506], - "diagnostic-channel", - "-publishers", - [2, 13508, 13509], - [0, 3008, 4121], - [2, 13444, 5746], - [3, 4870, 9], - "@types/long", - [3, 8778, 12], - "__typescript-etw", - [2, 7295, 13516], - [2, 13515, 13517], - [ - 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 1610, 1700, 1701, 1177, 1895, 1938, 2675, 1192, 2990, 3144, 3400, - 1894, 4257, 4027, 2924 - ], - "exce", - "ption", - " monitoring", - [2, 13521, 13522], - [2, 13520, 13523], - [2, 705, 13522], - [2, 6681, 13522], - [3, 1135, 11], - " insights", - [2, 13527, 13528], - "microsoft", - "azure", - "tracing", - [0, 2924], - [1, 2343, 13536], - "telemetry", - [0, 0, 13537, 13540, 4139], - [0, 48, 53, 10688, 5812], - "analytics", - "apm", - [0, 20611, 20613, 20614], - [1, 2343, 13542], - [0, 13543, 13555, 13556, 2537], - [0, 13687, 20619, 20621, 20624], - [3, 7709, 10], - "ial-provider-node", - [2, 11891, 13545], - [2, 13544, 13546], - [3, 7709, 9], - "hash-", - "hash-node", - [2, 13548, 13550], - [3, 6765, 9], - [2, 13552, 27], - [2, 13548, 13553], - [0, 20626, 4874, 1166, 20627, 2188, 20628, 4481, 1906], - [ - 0, 3171, 2090, 998, 14431, 12666, 158, 11807, 20630, 20631, 16202, 20632, 20634, 13735, 4354, 2741, 20635, - 14242, 20636, 8433, 17180, 1398, 15149, 20637, 18048, 20638, 20639, 12349, 20640, 20641, 20642, 20643, 20644, - 20645, 20646, 20647, 20648, 3775, 20649, 20650, 20651, 20652, 20653, 20654, 2056, 4390, 20655, 17276, 17274, - 20656, 18494, 20657, 20658, 20659, 20660, 20661, 20662, 20663, 20664, 20665, 20666, 20667, 20668, 20669, 20670, - 20671, 2636, 20672, 20673, 7016, 20674, 20675, 20676, 20677, 20678, 20679, 13705, 20680, 20681, 17918, 20682, - 7827, 20683, 20684, 20685, 10790, 20686, 20687, 20688, 20689, 20690, 20691, 7823, 20694, 20695, 20696, 20697, - 20698, 3354, 20699, 20700, 20701, 20702, 20703, 20704, 20705, 20706, 20707, 20708, 6523, 20709, 11811, 10868, - 20710, 20711, 20712, 8861, 20713, 20714, 20715, 20716, 20717, 20718, 20719, 20720, 20721, 20722, 20723, 20724, - 20725, 20726, 20727, 20728, 20729, 20730, 20731, 20732, 20733, 20734, 20735, 20736, 20737, 20738, 20739, 20740, - 20741, 20742, 2403, 20743, 20744, 20746, 12350, 10218, 20747, 20748, 18508, 17733, 20749, 20750, 20751, 20752, - 20753, 20754, 20755, 20756, 20757, 1227, 20758, 20759, 20760, 20761, 20762, 20763, 20764, 12081, 12096, 28922, - 28923, 28924, 28925, 28926, 28931, 28932, 28942, 28943, 28946, 28947, 37859, 28949, 28955, 28958, 28961, 34876, - 33671, 6790, 33677, 27669, 29579, 17288, 13442, 18883 - ], - "signature-v4", - [2, 13548, 13557], - [2, 13548, 553], - [2, 9196, 1732], - [1, 2343, 13570], - "@aws-", - "amplify/amplify-appsync-simulator", - [2, 13562, 13563], - "construct", - "constructs", - [3, 3706, 25], - [2, 13567, 2618], - "projen", - [0, 0, 13575, 13576, 34352], - "appsync", - "gql", - "lambda", - "xray", - [0, 10615, 1159, 1414, 1177, 2675, 2899, 4042], - [0, 2090, 2098, 4202, 7017, 6771, 1413, 1687], - [1, 2343, 13578], - [0, 13582, 9025, 2514, 2487], - [2, 1137, 3007], - "crc32", - "buffer-crc32", - [0, 1676, 1833, 1869, 3440, 3494, 4266], - "readdir-glob", - "zip-stream", - [1, 2343, 13588], - "archiver-", - "jsdoc-t", - [0, 13592, 13593, 13594, 2523], - "jsdoc-theme", - [2, 13586, 13589], - [2, 4279, 4440], - [0, 3537, 13765], - [0, 1906, 1166, 1700, 4481, 4400], - [0, 2325, 7204, 20164, 2100, 7193], - [1, 2343, 13596], - [0, 13598, 13599, 13600, 2537], - [2, 27994, 27995], - [0, 20786, 20789], - [0, 1166, 17450, 4400, 4481, 1906], - [0, 2100, 2104, 2105, 7076, 6614, 6605, 2090, 7193, 3529, 3383, 814, 5933, 7029, 6857, 7204, 4647, 6821, 3403], - [1, 2343, 13602], - [0, 13603, 13604, 13605, 2537], - [0, 20796, 2743, 3170, 20797], - [0, 1177, 1889, 1954, 2022, 20801, 2899, 3369, 3421, 814], - [0, 2090, 2100, 2105, 7076, 2070, 3529, 13017, 814, 7193], - [1, 2343, 13607], - [0, 13608, 13620, 13621, 2537], - [ - 0, 13612, 20819, 20822, 20824, 20825, 20826, 20828, 20829, 20831, 20833, 20836, 20837, 20839, 20840, 20841, - 12153, 20843, 20846, 20847, 20848, 20849, 20850, 20851, 20852, 20853, 20857, 20858, 20859 - ], - [2, 6739, 1228], - "-unscopables", - [2, 7065, 13610], - "@firebase/ai", - "@es-shims/api", - "@ljharb/eslint-config", - "cover", - "covert", - "has-s", - "trict-mode", - [2, 13617, 13618], - [0, 2323, 4042, 91, 2496, 2510, 4077, 10615, 4060, 811, 4071, 4076, 816], - [0, 5165, 18035, 20862, 2109, 20863, 13901, 6681, 20845], - [1, 2343, 13623], - [0, 13624, 13627, 13628, 2399], - [0, 20870, 20848, 20872, 4874, 20873, 2069, 20917, 2863, 20874, 3313, 3348], - "arrayify", - "ensure", - [ - 0, 20883, 20839, 20840, 20885, 603, 20886, 4856, 9417, 20888, 8264, 4870, 7892, 6503, 10410, 16936, 20889, 6513, - 6512, 7819, 1009, 1011, 1306, 1429, 1431, 6522, 1437, 1455, 1700, 1177, 20892, 2323, 2390, 2409, 2529, 20895, - 1209, 3183, 2899, 3261, 3297, 3400, 3421, 705, 4008, 4089, 4193, 4196, 4474, 91, 4747 - ], - [0, 20897, 18035, 20862, 20863, 5165], - [1, 2343, 13630], - [0, 13632, 0, 13634, 2399], - "is-n", - [ - 0, 32557, 32562, 12207, 20745, 20904, 20905, 8998, 29421, 1079, 1091, 1092, 1137, 20908, 1364, 1457, 20909, - 1483, 1511, 1525, 1543, 1594, 1610, 1615, 1645, 20911, 20912, 20913, 2026, 2098, 2139, 2151, 2163, 20914, 2070, - 20917, 2687, 2822, 2863, 2975, 20918, 1209, 12209, 3127, 14774, 3171, 3181, 3237, 3310, 3445, 3467, 6042, 3519, - 30172, 30174, 3560, 3730, 20921, 1153, 4135, 20922, 20924, 20925, 20928, 18052, 4449, 20931, 20934, 20935, 3348, - 4709, 4715, 4729, 4745, 4763, 33069 - ], - "is-nan", - [0, 20937, 200, 20938, 6599, 20940, 2109, 20863, 14609, 20943], - "object-is", - [1, 2343, 13637], - [0, 13639, 13640, 13641, 34352], - "array-fill", - [0, 20948, 1437, 1707, 20949, 20951, 1997], - [0, 4255], - [0, 4051, 3383], - [1, 2343, 13643], - [0, 13644, 13645, 2514, 2523], - [0, 4864, 9129, 20959, 2151, 20960, 4648], - [0, 4874, 4039, 4384, 91], - [1, 2343, 13647], - [0, 0, 13640, 13649, 2523], - "fn.name", - [0, 2117, 1781, 3033, 20966, 4237, 3048, 3639], - [1, 2343, 13654], - "is-buffer", - "propget", - "pruddy-error", - [0, 13655, 13658, 13659, 2523], - [0, 1676, 1865, 2151, 1209, 4449], - "shouldjs", - "unit testing", - [0, 2899, 4039, 4255], - [0, 18503], - [1, 2343, 13661], - [0, 0, 13670, 13675, 2537], - [2, 1176, 3178], - [2, 1218, 5702], - [3, 1267, 18], - [2, 13664, 6836], - [3, 1955, 17], - "fer-arrow", - [2, 13666, 13667], - "native-", - [ - 0, 53, 78, 14167, 87, 20978, 4864, 4865, 5087, 11301, 4874, 19802, 1245, 1457, 1596, 2151, 2070, 1192, 1894, - 4039, 4042, 4045, 20981, 20983, 4075, 4072, 4468, 4474, 4484, 91 - ], - "promise-only", - [2, 13669, 13671], - [3, 4064, 15], - [2, 13673, 2306], - [0, 5284, 9302, 9026, 1666, 6901, 3811, 20986], - "jstz", - [1, 2343, 19602], - [0, 20991, 1437, 2087, 2727, 2983, 3368, 15245, 3741, 4135, 4247, 20992, 13914], - [0, 1429, 1596, 1177, 2759, 20995, 2899, 3697, 3752, 4193], - [3, 8155, 10], - [0, 20997, 20998, 8891, 20999, 2978, 4166, 16159, 21000, 3005, 12804, 21003, 21004, 2703, 6599, 14692], - "listen", - [1, 2343, 13684], - [0, 0, 0, 13685, 2537], - [0, 13326, 200, 20052, 17180, 2124, 3497, 998, 6591, 4354, 16790, 5284, 676, 21009], - [1, 2343, 13690], - [2, 13689, 25388], - "then-sleep", - [3, 20626, 11], - [0, 13691, 13692, 13699, 2443], - [0, 6372, 21020, 21016, 3561, 4383], - [ - 0, 53, 87, 6371, 28962, 28963, 1009, 1011, 1165, 1195, 1587, 1593, 1610, 1628, 1630, 1637, 1177, 1895, 1955, - 21023, 2092, 12278, 3177, 3400, 1894, 21024, 9348, 4172, 4230, 4307, 4409, 4469, 91, 2924, 4677, 4681, 21026, - 4749 - ], - [2, 54, 202], - "@pika/pack", - "pika-plugin-build-web-babel", - [3, 13695, 12], - "ts-types", - [2, 13696, 13697], - [ - 0, 2128, 91, 5284, 2924, 1936, 1623, 12951, 21028, 4380, 21029, 21031, 21033, 21034, 21036, 21029, 21037, 21038, - 21039, 21040, 21042, 21044, 21047, 21050, 21052, 21054, 21057, 21060, 1177, 1894, 17526, 1999, 5811 - ], - [1, 2343, 13701], - [0, 13702, 13703, 13704, 2537], - [0, 1149, 4707], - [0, 3421, 1776, 2899, 4170], - [0, 21067], - "ttc", - [1, 2343, 13707], - [0, 13708, 13710, 13714, 2537], - [0, 21072, 2081], - "libnpx", - [ - 0, 53, 1195, 18228, 1700, 2323, 2338, 2396, 2409, 2494, 2541, 2700, 1192, 2780, 3427, 89, 21074, 3824, 4603, - 2924, 18237 - ], - "node-cleanup", - [2, 3382, 6698], - [2, 2103, 9478], - [0, 2130, 89, 3497, 21077], - [1, 2343, 13717], - "audit", - [0, 0, 13718, 13719, 2537], - [0, 1537, 1177, 2026, 21082, 2899, 3421], - [0, 27, 2671, 1002, 7436, 5576, 7426, 6435], - [1, 2343, 13724], - "parse-", - [3, 9577, 10], - [2, 13721, 13722], - [0, 0, 0, 13726, 34352], - [2, 1199, 4037], - [0, 2414, 7176, 8220, 1017, 2414, 1367], - [1, 2343, 13731], - "automatic", - [3, 1446, 9], - "commits", - [0, 13732, 13733, 2514, 2443], - [0, 18986], - [0, 5517, 13614, 23237, 27570, 19325, 1159, 1177, 3410, 3421, 4389], - [1, 2343, 13737], - "detect", - "detective", - [0, 13740, 13741, 13742, 2443], - "detective-es6", - "sync-exec", - [0, 1149, 21097, 1496, 21098, 1512, 3188, 4709, 21099, 21100, 3722, 1543, 2015, 3427, 21102], - [0, 1429, 4616, 2899, 1177, 3220, 21104, 705, 1894, 21106, 1895, 1955], - [0, 200, 21110, 21111, 2041], - [1, 2343, 13744], - [0, 13745, 13747, 13748, 4139], - [0, 51, 1437, 1457, 1595, 1699, 2151, 3144, 3181, 21118, 4121, 4135, 4388], - "fraction.js", - [ - 0, 5467, 16607, 21120, 6065, 16608, 16612, 19861, 21122, 4864, 5087, 8818, 9129, 6541, 4874, 20959, 5254, 1009, - 1011, 1529, 1610, 1177, 1938, 1954, 1955, 10619, 2675, 1192, 21124, 2784, 2845, 21125, 2990, 3203, 1894, 4039, - 4131, 4294, 4468, 91, 2924 - ], - [0, 2924, 1932, 91, 21127, 4469, 2924, 20050, 2062], - [1, 2343, 13750], - [0, 13751, 13752, 13761, 2523], - [0, 13922, 1437, 1457, 1209, 3170, 3181, 814, 4388], - [ - 0, 21134, 16933, 4870, 8778, 9129, 4874, 5251, 4891, 1429, 1628, 1177, 2675, 2759, 2990, 2899, 3203, 3210, 1894, - 4039, 4193, 4469, 4487, 4490, 91, 188, 4629, 4634, 4645, 2924 - ], - "@vercel/nft", - "arrgv", - "site", - "sites", - "callsites", - "cbor", - "chunkd", - "ci-parallel-vars", - [0, 2924, 1932, 91, 998, 16790, 9654, 20050, 2062, 6887, 4469, 1167, 21136, 1464], - [1, 2343, 13766], - "code-excerpt", - "path-prefix", - [2, 9480, 13764], - [0, 13776, 13779, 2514, 2487], - "concordance", - "curr", - "ently-unhandled", - [2, 13768, 13769], - "emitter", - "emittery", - "ignore-", - "by-default", - [2, 13773, 13774], - [0, 21141, 21144, 13917, 2571, 3173], - "matcher", - [2, 9477, 1541], - [ - 0, 13614, 1159, 1389, 21146, 1596, 1615, 1177, 21147, 21148, 2141, 2708, 21152, 2759, 26259, 21153, 14133, 3697, - 3758, 705, 4039, 4135, 4389 - ], - "resolve-cwd", - [2, 4250, 594], - [1, 2343, 13783], - [0, 13785, 13787, 13790, 2537], - "supertap", - [0, 3441, 21158, 24987], - "temp-dir", - [0, 2934, 3421, 1192, 1177, 4042, 2026, 1894, 4342, 21163, 1938, 5328, 1895, 1955, 811, 21165, 1881, 816, 21161], - [3, 5328, 14], - [2, 13788, 2190], - [0, 15237, 1669, 2382, 3767, 21167, 1781, 21168, 2090], - "🦄", - [3, 1540, 10], - "yield", - [1, 2343, 13797], - "observable", - "observables", - [0, 13798, 13799, 13800, 34352], - [0, 5540, 1699, 2609, 1209, 3021, 21174, 21175, 4484], - [0, 972, 4870, 4880, 4883, 11322, 21179, 89, 3824, 21180, 91, 6482], - [0, 2144, 1669, 25, 89, 3824, 582, 21182, 7020, 21185, 7020, 21188, 21189], - [1, 2343, 13803], - "webpack-log", - [0, 0, 13806, 13807, 2487], - [2, 3599, 1469], - "ps-node", - [0, 2899, 1177, 2759, 1317, 1311, 1954, 1938, 1958, 1903, 1948, 1970], - [0, 2145, 27, 21195, 2325], - [1, 2343, 13809], - [0, 13810, 13813, 13815, 2537], - [0, 1437, 6473, 4290], - "ieee754", - "jmespath", - [0, 1175, 1178, 1195, 1225, 1268, 1177, 1916, 2022, 1192, 3150, 2924], - "vector", - [0, 17460, 2656, 2924, 1932], - "test-vectors", - [2, 13549, 13816], - "insert-module-globals", - [1, 2343, 13820], - [0, 13821, 13822, 13823, 2537], - [0, 2822], - [0, 1377, 21210, 1596, 2759, 4255, 4389, 4770], - [0, 4745, 21214, 21216], - "memoizee", - "@deque/dot", - [1, 2343, 13844], - "colorjs.io", - "-regex", - "emoji-regex", - "abel", - "grunt-babel", - "revalidator", - "sri-toolbox", - [2, 4149, 1852], - "ytesize", - [2, 2237, 13835], - [2, 6654, 3733], - [2, 1463, 13589], - [2, 1632, 3679], - [3, 8654, 10], - "webdriverjs", - [2, 13840, 13841], - "browser-", - [0, 13845, 13851, 13853, 4139], - [0, 2215, 2859, 21224], - [3, 1566, 14], - "ommits-parser", - [2, 13846, 13847], - "-no-only", - [2, 1951, 13849], - [0, 21226, 13305, 3183, 2899, 3421, 3752, 21228, 4255], - "Accessibility", - [ - 0, 2150, 2090, 6771, 1585, 7204, 2473, 3188, 7148, 7149, 6899, 1781, 3917, 6033, 2473, 6865, 7293, 4453, 7147, - 2585, 6811, 7004, 1862 - ], - [1, 2343, 13855], - [0, 13856, 13858, 13861, 2537], - [0, 3181], - "proxy-", - [0, 4856, 4864, 6503, 4874, 1429, 2151, 2759, 2899, 3421, 1894, 3714, 21237, 4474, 91], - "from-env", - [2, 13857, 13859], - [0, 2150, 6771], - "multi-", - [1, 2343, 13877], - "entry", - "multi-entry", - [2, 812, 13865], - [2, 12621, 3733], - "dev-null", - "data-node", - [2, 1669, 13869], - [2, 11941, 12942], - [3, 6387, 14], - [2, 13872, 6662], - [2, 1160, 11052], - [2, 4049, 13874], - [3, 4048, 16], - [0, 13883, 13884, 13885, 2537], - "ndle-size", - [2, 13876, 13878], - [2, 6528, 3069], - [3, 13134, 15], - [2, 13881, 1149], - [0, 21243, 2151, 3261, 21246], - [0, 4864, 6507, 2899, 1863, 4085, 1362, 4706, 3760], - [0, 1862, 2150, 2090, 6771], - [1, 2343, 13887], - [0, 0, 13893, 13900, 2523], - [3, 1391, 11], - [2, 13888, 3171], - "edm-parser", - [2, 2842, 13890], - "md5.js", - [0, 640], - "batchflow", - "factor-bundle", - "ink-docstrap", - "karma-e", - "nv-preprocessor", - [2, 13897, 13898], - [0, 2154, 16718], - "storage", - [1, 2343, 13903], - [0, 13904, 13905, 2514, 2443], - [0, 3188, 4039, 2713, 2215], - [0, 4384, 4255], - [1, 2343, 13907], - [0, 13908, 0, 13910, 4139], - [0, 4740, 3923], - "output-", - [0, 2156, 5576, 16410], - [1, 2343, 13915], - "file-sync", - [2, 13909, 13912], - "v8flags", - [0, 0, 13916, 13918, 2523], - [0, 13614, 1158, 1159, 1177, 3421, 4103, 4389], - "es-set-tostringtag", - [0, 3046, 1213, 1925, 1460, 5746, 7298], - [1, 2343, 13926], - "babel-co", - "de-frame", - [2, 13920, 13921], - [3, 1184, 12], - [2, 13923, 591], - "babel-m", - [0, 0, 13929, 13931, 2537], - "essages", - [2, 13925, 13927], - [ - 0, 48, 53, 68, 78, 5712, 87, 92, 192, 5467, 21276, 5583, 816, 6373, 21279, 21280, 21281, 21285, 19464, 21287, - 21288, 1195, 1177, 1895, 2675, 21290, 1894, 4005, 4042, 4057, 4257, 4072, 91, 1984, 19469, 21294 - ], - [2, 1185, 5190], - [0, 2163, 7193, 21296], - [1, 2343, 13933], - [0, 0, 13934, 13935, 2443], - [0, 19344, 5366, 1009, 1011, 842, 1317, 1177, 1903, 1915, 1938, 1953, 1958, 2675, 4493], - [0, 17218, 5122, 27, 36, 21302, 5995, 5130], - [2, 1884, 1172], - [1, 2343, 13938], - [0, 0, 0, 13939, 4139], - [0, 2163, 7193, 7131, 21307, 21309], - [1, 2343, 13941], - [0, 13943, 13944, 13945, 2487], - "trim-right", - [0, 21315], - [0, 1149, 2228, 21317, 2240, 2273, 2277, 4039, 1899], - [0, 2282, 2070], - [1, 2343, 13947], - [0, 0, 13949, 2514, 2487], - "try-resolve", - [0, 91, 4874], - [1, 2343, 13951], - [0, 13952, 13953, 13954, 2523], - [0, 1437, 4761, 4716, 4756], - [0, 2228, 2239, 21329, 21328, 3006, 4547, 2273, 2290], - [0, 4756, 8632, 5130, 4627, 6400, 1896, 1098], - [1, 2343, 13956], - [0, 13957, 13958, 13959, 2523], - [0, 1437, 4207, 4761, 1209, 16442, 4756, 4547], - [0, 3261, 1797, 1429, 1370, 2899, 4193, 1177, 3188, 1362, 2759, 1525, 4196, 1615, 2820, 1431, 3938, 3202], - [ - 0, 4756, 1098, 2323, 21337, 21339, 1367, 1103, 21340, 2278, 695, 5194, 1172, 21341, 91, 1509, 2437, 5357, 2924, - 1177 - ], - [1, 2343, 13962], - [2, 1262, 1192], - [0, 13963, 13964, 13965, 2537], - [0, 2212, 2070, 4761, 1541, 1209, 1474, 21350, 21348, 4756], - [0, 1797, 1177, 2765, 2151, 21329, 21328, 1938, 21352], - [0, 4756, 8632, 4967, 1896, 2171, 4627, 13017, 21354], - [1, 2343, 13967], - [0, 0, 13968, 13969, 2523], - [0, 4874, 1177, 1895, 1955, 1958, 1894, 4384, 91], - [0, 4446, 21360, 6925], - [3, 13725, 15], - [1, 2343, 13972], - [0, 0, 13973, 13974, 2399], - [0, 5536, 4874, 16480, 26265, 1894, 4172, 21365, 91, 1984], - [0, 5701, 1179, 7253, 21367, 21369, 6564, 3053, 6695], - [1, 2343, 13976], - [0, 0, 13977, 2514, 2443], - [ - 0, 48, 53, 87, 92, 6061, 6063, 16608, 5087, 4874, 1009, 1011, 21377, 21380, 1178, 1193, 1195, 19254, 1177, 1895, - 1915, 1922, 1938, 1955, 1959, 1961, 1966, 1982, 2675, 21385, 1192, 2990, 1894, 4039, 4131, 21388, 91, 2924, 4677 - ], - [1, 2343, 13979], - [0, 0, 13986, 2514, 2537], - [3, 1235, 24], - "xport-extensions", - [2, 13980, 13981], - [2, 1262, 3696], - [3, 1566, 13], - [2, 13984, 2289], - [0, 21393, 21395, 21396, 21397, 3421], - ".exports", - [2, 1237, 13987], - [1, 2343, 13990], - [0, 0, 8002, 13991, 2523], - [0, 1709, 2100, 139, 3560, 6058, 21402, 21404, 1544, 3445, 11995, 21405, 20529, 3778, 21406, 21407], - [1, 2343, 13993], - [0, 0, 13999, 14001, 2537], - "-js-shims", - [2, 1259, 13994], - "place-", - [2, 13996, 3427], - [2, 1252, 13997], - [0, 4874, 1702, 1906], - "dynamic", - [0, 21413, 2184, 20061, 5614, 1398, 3101, 3729, 3917], - [1, 2343, 14003], - [0, 14004, 14005, 14006, 34352], - [0, 21418, 2753], - [0, 4874, 1166, 21420, 21423, 20925, 4481, 1906], - [0, 3038, 3101, 1862, 5614, 1871, 2585, 1398, 3917, 2382, 6613, 7017, 7255, 3048, 5614], - [1, 2343, 14008], - [0, 14009, 0, 14010, 2537], - [0, 21430], - [0, 2191, 3038, 91, 2190, 21432], - "@umijs/test", - [2, 1262, 12445], - [3, 3909, 10], - [2, 14013, 5403], - [1, 2343, 14016], - [0, 0, 14017, 14018, 2523], - [0, 4874, 1009, 1011, 17930, 1177, 21439, 1895, 1955, 17931, 21442, 1894, 17934, 4508, 91, 17936], - [0, 21444, 21447, 21450, 21452, 21455, 21456, 2192, 21457, 21458, 16718, 21459, 202, 5490, 553, 91], - [1, 2343, 14026], - "nyc-config", - [2, 3614, 14020], - [2, 8696, 14021], - "instrument", - [2, 11936, 14023], - [2, 1382, 6521], - [0, 14028, 14030, 14031, 4139], - "pmock", - [0, 1149, 2205, 2151, 1525, 18145, 2102, 21466], - [2, 14023, 5218], - [0, 4449, 1429, 2899, 4193, 1177, 21468, 21470], - [0, 3358, 2193, 2195], - [1, 2343, 14033], - [0, 14036, 14043, 14046, 2523], - [2, 9477, 1213], - [2, 4013, 14034], - [0, 7076, 10420, 21476, 21477, 3505, 16142], - "-bind", - [2, 3046, 14037], - [2, 69, 14038], - [3, 8232, 20], - [2, 14040, 6859], - [2, 5316, 7162], - [ - 0, 1178, 1429, 21480, 1503, 1527, 1652, 1177, 21482, 1922, 1938, 1951, 2899, 3203, 3421, 3752, 4131, 4193, 4196, - 21486, 4585 - ], - "ompat", - "lodash-compat", - [0, 3358, 582, 1564], - "cherry-pick", - [1, 2343, 14049], - [0, 0, 14050, 14051, 4139], - [ - 0, 13693, 87, 21495, 21498, 21499, 8850, 816, 6373, 10615, 10895, 1429, 1177, 1903, 1938, 1954, 1958, 2297, - 2878, 2881, 2886, 2895, 2900, 2904, 2910, 2912, 2918, 18260, 2899, 4042, 6390, 2278, 4193, 4196 - ], - [0, 2195, 10039, 4967, 4627], - [2, 13920, 686], - [2, 2103, 14052], - [1, 2343, 14055], - [0, 14058, 14060, 2514, 2537], - "resolver", - "rename", - [0, 3181, 21505, 21507], - "mapping", - [0, 4874, 668, 3144, 3188, 1894, 4039, 4384, 4483, 4508], - [1, 2343, 14062], - [0, 14063, 14066, 14067, 34352], - [0, 2743], - "ester", - [2, 12187, 14064], - [0, 1177, 1889, 2022, 2899, 3421], - [0, 2070, 5933, 4301, 3403, 21519, 7204, 1299, 21520], - [1, 2343, 14069], - [0, 14070, 9264, 2514, 4139], - [0, 21526, 3729], - [1, 2343, 14072], - [0, 0, 14073, 14074, 2537], - [0, 22839, 1166, 1448, 1939, 2182, 26260, 17269, 3401, 3471, 3758, 4167, 4481, 4507, 1906], - [0, 2203, 2202, 7014, 6436, 6437, 2272, 1177, 6640], - [1, 2343, 14081], - "remap-", - [2, 14076, 1223], - [2, 1185, 14077], - [3, 13663, 26], - [2, 14079, 5746], - [0, 14082, 14083, 14084, 4139], - [0, 20033, 2071, 2687, 17450, 4207, 20789], - [0, 4874, 1166, 1317, 21539, 4400, 4481, 1906], - [ - 0, 12101, 4552, 17455, 18132, 1586, 17462, 7131, 2100, 21541, 17453, 2150, 2070, 21543, 21544, 17461, 3529, - 13777, 3181, 3250, 15294, 18104, 13017, 11601, 100, 614, 6435, 21520, 21545, 1862, 16774, 3358 - ], - [3, 1184, 14], - [2, 14085, 5789], - [2, 1218, 1229], - [1, 2343, 14089], - [0, 14090, 14091, 14094, 2443], - [0, 1676, 1615, 21552, 21550], - [0, 1149], - [3, 1217, 21], - [2, 14092, 5610], - [0, 11812, 21555, 158, 21556, 2692, 2206, 6270, 17539, 3797], - [1, 2343, 14096], - [0, 14097, 14098, 14100, 2537], - [0, 3310, 14231, 4484], - [0, 4874, 5542, 1009, 1011, 1177, 21564, 1938, 1953, 1958, 1894, 4508, 91], - "chunk-data", - [ - 0, 21566, 21567, 21568, 15473, 17623, 21571, 5194, 10906, 2207, 21572, 21573, 14692, 21574, 6355, 21576, 21577, - 21578, 21579, 21580, 21581, 21582, 21583, 5995, 21584, 21585, 21586, 21587 - ], - [1, 2343, 14102], - [0, 14103, 14105, 14108, 34352], - [0, 16485, 21668], - "strict-", - [0, 107, 4874, 1009, 1011, 21594, 1177, 1881, 1883, 1938, 21597, 20917, 3297, 1531, 91, 15822, 1984], - "strict-mode", - [2, 1226, 14106], - [0, 21600, 21603, 1885, 21604, 21599, 21605, 21606, 5592, 2211, 21607, 21608, 21611], - [2, 1218, 77], - [1, 2343, 14111], - [0, 14112, 14113, 14114, 4139], - [0, 20917, 21616], - [ - 0, 21619, 6503, 21620, 21621, 4874, 21623, 15600, 9725, 11305, 6513, 6520, 21625, 21626, 1414, 1503, 1610, 2020, - 20914, 2321, 21627, 1776, 29342, 29343, 21630, 2899, 15221, 3275, 3297, 3416, 3445, 3479, 6332, 1894, 3752, - 4039, 4153, 4193, 4449, 91, 4748 - ], - [0, 1885, 5592, 21632, 5576, 21633], - [1, 2343, 14116], - [0, 14117, 14118, 14119, 2523], - [0, 21642, 21651, 21645, 21647, 21650, 21649, 16511, 2928, 21641, 21638, 21639, 4507], - [ - 0, 21662, 13789, 826, 5366, 6494, 4874, 21654, 14731, 16936, 6513, 6515, 1166, 1170, 1317, 1362, 1364, 1414, - 14099, 21656, 21663, 1701, 1702, 2024, 2026, 2139, 13870, 2188, 3297, 3310, 3377, 3477, 21653, 3532, 29457, - 3923, 705, 4193, 21657, 4400, 21659, 4454, 4494, 91, 1906 - ], - [ - 0, 27, 2671, 13333, 3038, 2212, 1002, 12831, 705, 2869, 7085, 7289, 1612, 11995, 11996, 16518, 21665, 27778, - 27408, 21666, 21667, 1170, 4339, 3310, 21668 - ], - [1, 2343, 14124], - "-react-jsx", - [2, 9381, 14121], - [2, 1185, 14122], - [0, 0, 14125, 14126, 2537], - [ - 0, 2323, 4207, 4042, 1637, 3471, 3561, 21689, 21681, 3416, 3758, 4320, 53, 1165, 3678, 2650, 21688, 87, 21684, - 21679, 5583, 10615, 6373, 16912 - ], - [0, 21691, 4967, 9204, 1283], - [1, 2343, 14134], - [2, 88, 2124], - [3, 3872, 10], - [2, 14129, 553], - [2, 5237, 14130], - [2, 1199, 14131], - "pkgfiles", - [0, 0, 14135, 14136, 2537], - [0, 2702, 3188, 4039, 4384], - [0, 2150, 1237, 21697, 1153, 21699, 3768, 1851, 2656, 6737, 21700, 21701, 21702, 21703, 21704], - "minification", - [1, 2343, 14140], - "propTypes", - [0, 0, 0, 14141, 4139], - [0, 2220, 21715], - [1, 2343, 14143], - [0, 2513, 14146, 2514, 2523], - [3, 3957, 12], - [2, 14144, 353], - [0, 4856, 6503, 4874, 1429, 2220, 2899, 4039, 4042, 4071, 4232, 21721, 91], - [1, 2343, 14148], - [0, 14149, 0, 2514, 34352], - [0, 5528, 4484], - [1, 2343, 14151], - [0, 14152, 14153, 14154, 4139], - [0, 2822, 20273, 21731, 21732], - [0, 21734, 20269, 1509, 21735, 2053, 2149, 2398, 3183, 2899, 4452, 4597, 6033], - [ - 0, 21738, 1507, 1506, 2382, 1739, 1745, 7682, 21740, 4965, 2149, 9339, 8623, 1179, 2193, 12981, 5284, 5352, 676, - 6671, 1783, 9338, 1644, 57, 7119, 13755, 2947, 1283, 4452, 4745, 7651 - ], - [1, 2343, 14156], - [0, 14165, 14171, 2514, 34352], - "numer", - "ic-separator", - [2, 14157, 14158], - [2, 69, 14159], - [3, 5835, 33], - "mutators", - [2, 14161, 14162], - [3, 10720, 33], - [0, 14393, 21746, 3025, 10420, 3263, 3747], - "atch-binding", - [2, 14164, 14166], - [3, 14160, 25], - "llish-coalescing-operator", - [2, 14168, 14169], - [0, 1364, 21748, 2026, 21749, 2759, 1209, 3183, 3313, 21752], - [1, 2343, 14173], - [0, 14174, 14175, 14176, 2443], - [0, 2021, 2070, 3368, 2822, 2240, 3181, 1672, 2685, 2107, 2015, 21761, 21763, 21759], - [0, 21765, 4431, 21770, 2291, 21768, 2283, 2277], - [0, 5957, 1149, 200, 3178, 2280, 6147, 1209, 2275, 1973, 2907, 2276, 36, 21772, 8632, 7048, 2763, 4990], - [3, 9676, 14], - "heck-", - "es2015-", - "constant", - "constants", - [2, 14179, 14181], - [2, 14178, 14182], - [2, 14177, 14183], - "function-", - "comma", - "commas", - [2, 14185, 14187], - [2, 10038, 14188], - [2, 7174, 14189], - [2, 1218, 14190], - [2, 1236, 5742], - [3, 1235, 40], - "ed-functions", - [2, 14193, 14194], - [2, 1236, 5256], - [3, 14196, 31], - [2, 14197, 5763], - [2, 1236, 5765], - [3, 14199, 31], - [2, 14200, 5770], - [1, 2343, 14225], - "for-of", - [2, 1236, 14203], - [3, 14204, 31], - [2, 14205, 5789], - [2, 1236, 5796], - [3, 1240, 38], - [2, 14208, 5808], - [2, 14208, 4376], - [2, 14208, 5811], - [2, 3425, 4340], - [2, 1236, 14212], - [2, 1236, 5639], - [2, 1236, 5845], - [3, 14215, 31], - [2, 14216, 5849], - [2, 14216, 5851], - [3, 1244, 31], - [2, 14219, 5855], - [2, 5857, 1108], - [2, 1236, 14221], - [3, 13982, 27], - [2, 14223, 5780], - [0, 14228, 14229, 14230, 2523], - "to-chromium", - [2, 1807, 14226], - [0, 2633], - [0, 2228, 2240, 2263, 2247, 2253, 2273, 2277, 2281, 2320, 2258], - [0, 21779, 1098, 1283, 5354, 5614], - "gfsl", - [1, 2343, 14233], - [0, 0, 14234, 14235, 2537], - [0, 2228, 2307, 2239, 2316, 1429], - [0, 21779], - [1, 2343, 14244], - [2, 1262, 2124], - [2, 1249, 5878], - "-source", - [2, 1248, 14239], - [3, 14240, 34], - "elf", - [2, 14241, 14242], - [0, 14245, 14246, 14247, 34352], - [0, 1149, 1389, 21791, 2070, 1209, 814, 4650], - [0, 2228, 2240, 2247, 2273, 2899, 4193], - [0, 21779, 1389, 2228], - [3, 5700, 31], - [2, 14248, 3164], - [1, 2343, 14251], - [0, 14252, 14253, 14235, 2487], - [0, 4135], - [0, 2228, 2234, 2247, 2273, 2277, 2285, 2307, 3006], - [3, 1233, 24], - "o-expressions", - [2, 14254, 14255], - [2, 1226, 14038], - [1, 2343, 14259], - [0, 14260, 14261, 2514, 2537], - [0, 3368, 21804, 13914, 2727, 21759], - [0, 2228, 2273], - [3, 1230, 29], - "or-call", - [2, 13565, 14263], - [2, 14262, 14264], - [1, 2343, 14267], - [0, 14268, 14269, 14271, 2523], - [0, 1149, 1144, 21810, 2709], - [0, 1906, 2228, 3363, 2240, 1615, 3505, 21814, 4351, 2316, 2247, 2283], - [3, 1233, 33], - [0, 21779, 13792, 12804, 21820, 6707, 6887, 3514, 6681, 2062, 21821], - [1, 2343, 14273], - [0, 14274, 14277, 14278, 2399], - [0, 1149, 4039], - [3, 1225, 29], - [2, 14275, 5747], - [0, 2228, 21468, 2273, 2271, 2277], - [0, 21779, 4050, 4051, 7293, 6865, 1700, 6790, 17459, 4039], - [1, 2343, 14280], - [0, 14281, 14283, 14284, 4139], - [0, 1149, 21834, 1664, 21420, 4449, 4707], - "home-or-tmp", - [0, 2228, 2240, 2247, 2271, 2273, 2277, 2314], - [0, 21779, 21837, 4329, 2278, 1623, 7234, 7121, 590], - [1, 2343, 14286], - [0, 14287, 14288, 14235, 2537], - [0, 1437, 4227], - [0, 2228, 2247, 2273, 2271, 2277], - [1, 2343, 14290], - [0, 14291, 14292, 14293, 2537], - [0, 3445, 1149, 3237, 1544, 13399, 4150, 4151, 16511, 21847], - [0, 2228, 2273, 2271, 2277], - [0, 21779, 36, 1544, 27], - [1, 2343, 14295], - [0, 14296, 14297, 14235, 2537], - [0, 1437, 21855], - [0, 2228, 2240, 2247, 2271, 2273, 2277], - [1, 2343, 14299], - [0, 14300, 14302, 14303, 2523], - [0, 1437, 21861, 1209, 4300], - "esutils", - [0, 2228, 2247, 2271, 2273, 2277], - [0, 21779, 1623, 671, 21861], - [1, 2343, 14305], - [0, 14306, 14302, 14312, 4139], - [0, 1437, 1462, 21867], - "nv-inline", - [2, 4690, 14307], - [2, 1226, 14308], - "zipobject", - [2, 3024, 14310], - [0, 21779, 21869, 1623, 590, 592, 5376, 3178, 15215], - [1, 2343, 14314], - [0, 14315, 14288, 14321, 2537], - [0, 1437, 3714, 2633], - [3, 14257, 24], - [2, 9428, 5238], - [2, 14316, 14317], - "9.0.0", - [2, 5857, 14319], - [0, 21779, 1936, 2262, 3178, 15215, 6707], - [1, 2343, 14323], - [0, 14324, 14325, 14326, 4139], - [0, 1437, 2267, 3478, 3545, 3714, 18045, 18047, 18050, 18051], - [0, 1166, 1701, 2228, 1906], - [0, 21779, 15215, 20639, 158, 11807, 21881, 20637, 3178, 18048, 8221], - [1, 2343, 14328], - [0, 14329, 14261, 2514, 2523], - [0, 17523], - [1, 2343, 14331], - [0, 14332, 14335, 14235, 4139], - [0, 1437, 21890, 2272], - "@purtuga/esm-webpack-plugin", - [2, 4807, 1155], - [0, 2228, 2271, 2277], - "browserstack", - [2, 13283, 14336], - [2, 13283, 3199], - "otpauth", - [1, 2343, 14341], - [0, 14342, 14345, 14235, 2487], - [0, 695, 1149, 1437, 1209], - "-as-a-service", - [2, 5995, 14343], - [0, 2228, 2247, 2273, 21898, 2271, 2277], - [1, 2343, 14347], - [0, 14348, 14349, 14350, 2487], - [0, 21903], - [0, 2228, 2247, 2271, 2273, 4384], - [0, 21779, 2276, 1973, 8791], - [1, 2343, 14353], - [2, 2235, 1283], - [0, 14358, 14302, 14359, 4139], - "codec", - "decoder", - "encoder", - "base64", - [0, 1149, 1437, 1615, 1664, 4707], - [0, 21779, 4329, 2278, 1623, 7234, 7121, 590], - [1, 2343, 14361], - [0, 14362, 14288, 14235, 2537], - [0, 1437, 21867, 21915, 4535], - [1, 2343, 14364], - [0, 14365, 14366, 14367, 2487], - [0, 2164, 1149, 1209, 4438], - [0, 2228, 2240, 2293, 4547, 2273, 2271, 2277], - [0, 21779, 2282, 3000], - [1, 2343, 14369], - [0, 14370, 14371, 14376, 2537], - [0, 1437, 1537, 1566, 3545, 3760], - [0, 2228, 2239, 2240, 2247, 2258, 2273, 2277, 2290, 21929, 21930, 2293, 2307, 3006], - "basic", - "orization", - [2, 1303, 14373], - "basicauth", - [0, 2228, 21779, 1566, 16094, 13729, 3073], - [1, 2343, 14378], - [0, 14379, 14381, 14382, 2399], - [0, 1437, 13985, 3545], - [2, 6915, 5697], - [0, 2228, 2239, 2240, 2247, 2273, 2277, 21929, 21942, 21930, 2293, 2307, 3006], - [0, 2228, 21779, 13985, 2195, 21944, 3979, 21945, 1566, 16094, 13729, 3073], - [1, 2343, 14384], - [0, 14385, 14389, 14390, 2523], - [0, 1437, 1177], - "tructure", - "ministructure", - "orange sms", - [0, 442, 2228, 2240, 2314], - [0, 21779, 1177, 671, 2649, 11937], - [1, 2343, 14392], - [0, 14394, 14395, 14396, 2537], - "@mapbox/node-pre-gyp", - [0, 21890, 2292, 1209, 21956], - [0, 2228, 2273, 2277, 3006, 4436], - [0, 21779, 2292, 19271, 16790], - [1, 2343, 14398], - [0, 14399, 14400, 14401, 4139], - [0, 1615, 1776], - [0, 2228, 2247, 2277, 2291, 13896, 3006], - [0, 21779, 2228, 1745, 2295, 1776, 18011], - [1, 2343, 14403], - [0, 6203, 14409, 14410, 2443], - "utfx", - "testjs", - "metascript", - "closure", - [2, 14407, 4643], - [ - 0, 192, 21970, 5467, 6061, 6063, 16608, 1177, 1903, 1938, 1954, 1958, 1970, 2025, 2228, 2239, 2283, 2285, 2290, - 2291, 2307, 2675, 2297, 2881, 2895, 2900, 3006, 2899, 4131 - ], - [0, 21779, 2297, 2228, 1973, 2275, 8791, 21972], - [1, 2343, 14412], - [0, 14414, 14415, 14420, 2399], - "pomelo-logger", - [0, 21890, 3188], - [0, 1429, 1506, 2228, 2240, 21980, 2247, 2258, 2273, 21929, 21982, 21930, 21984, 2899, 4039], - "di", - "IoC", - "AOP", - "injection", - [0, 21779, 2899, 1973], - "consistent", - "hot reload", - [2, 6399, 5995], - [1, 2343, 14434], - "able codes", - [2, 6578, 14425], - [3, 7191, 11], - [2, 14427, 14419], - "hronous script loading", - [2, 1149, 14429], - "magic", - ", self-described javaScript objects", - [2, 14431, 14432], - [0, 14274, 14435, 14436, 2399], - [0, 1429, 2228, 21991, 2240, 2247, 2273, 2283, 3203, 4449, 4727], - [0, 1586, 2228, 21779, 2301], - [1, 2343, 14439], - "beautify", - [0, 14440, 14441, 14442, 2443], - [0, 4135, 6472, 4707], - [0, 1429, 2240, 2273, 2283, 2300, 22000, 22002, 3006, 2899, 3752, 4436], - [0, 21779, 9044, 22005, 15844, 22008, 22009, 6667, 22011, 1851, 4649, 13728], - "art-near-room-catch", - "blanket-line", - "born-greatly-explain3", - "bring-water-silence", - "brush-bigger-afternoon0", - "e-meet-war", - [2, 11308, 14448], - [2, 6922, 14449], - "compare-", - "breeze-mad2", - [2, 14451, 14452], - "did-", - "strai", - "ght-sister-sail", - [2, 14455, 14456], - [2, 14454, 14457], - "excitement-tonight-dead", - "gain-pleasant-prepare", - "industrial-public-immediately-until", - "is-str", - "aight-web3-attack", - [2, 14462, 14463], - "known-", - "wet-thirty-gave", - [2, 14465, 14466], - "-private-thee6", - [2, 13682, 14468], - [1, 2343, 14493], - "mainly-cent", - "ain-quarter-sit8", - [2, 2944, 14472], - "mouse-bat-web3-present", - "need", - "s-supper-anything", - [2, 14475, 14476], - "percent-impossible-score", - "rocket-location-calm-valley", - "seldom-fire-web3-running", - "shad", - "e-swim-shells1", - [2, 14481, 14482], - "spider-melted-chemical", - "stre", - "tch-onto-driver7", - [2, 14485, 14486], - "dream-supply5", - [2, 11072, 14488], - "-invented-girl-jungle", - [2, 4990, 14490], - "we-hunt-process", - [0, 0, 14494, 2514, 2399], - [0, 2228, 2239], - "automobile7", - [2, 4654, 14495], - "whether-dangerous", - [1, 2343, 14499], - [0, 0, 14500, 14501, 2523], - [0, 2228, 2240, 2247, 2277, 2278, 1906], - [0, 21779, 1623, 2278, 4329, 590, 7234, 4358, 22022], - "ansicolors", - "global-", - [2, 14503, 6666], - [2, 2103, 14504], - [2, 2687, 11601], - [3, 5510, 9], - [2, 14507, 3101], - "script-", - "inject", - "injector", - [2, 14509, 14511], - [1, 2343, 14516], - "dotpathlookup", - "jsl", - [0, 14519, 14520, 14521, 2537], - "httpserver", - [2, 2869, 14517], - [0, 1512, 1209, 3760, 22027, 22031, 12826], - [0, 2228, 2256, 2273, 2283, 2293, 22035, 3003, 1698, 20001], - [0, 21779, 2228, 12826, 1973, 2765, 2899, 2907, 22037], - [1, 2343, 14523], - [0, 14524, 14525, 14526, 2443], - [0, 1437, 3404, 4294], - [0, 2228, 2240, 1906], - [0, 21779, 4166, 1523, 8429, 2978, 1614, 1451, 3729, 200], - "docdown", - [1, 2343, 14530], - "qunit-extras", - [0, 7923, 14531, 14420, 34352], - [0, 2228, 2273, 2899], - [1, 2343, 14533], - [0, 14534, 14535, 14536, 2443], - [0, 1149, 22054, 22057, 4545, 22058], - [0, 1177, 22062, 22064, 22066, 22068, 22071, 22072, 2228, 2240, 2302, 2899, 4039, 4165], - [0, 2228, 21779, 22074, 158, 22075, 1623, 22057, 16697], - [1, 2343, 14538], - [0, 14539, 14540, 14541, 2537], - [0, 1437, 1676, 1209, 3505], - [0, 2228, 3188, 4039, 2240, 2293, 22081, 2273], - [0, 21779, 2319, 8635, 1936, 1623, 6707], - [1, 2343, 14543], - [0, 14549, 14551, 14565, 2523], - "@beyond-js/specifier-parser", - [3, 14544, 11], - [2, 14545, 2150], - "bee", - [2, 14545, 14547], - [0, 442, 1009, 1011, 1437, 1177, 1895, 1953, 1955, 2020, 2720, 2856, 3157, 3275, 1894, 4523, 4728], - "tml", - [ - 0, 22088, 21122, 5601, 4864, 4866, 22089, 6503, 21621, 4874, 6513, 6520, 22092, 1414, 1615, 2151, 22093, 21627, - 2899, 4193, 4449, 91 - ], - "ansi-to-html", - "concat-", - "maps", - "-sourcemaps", - [2, 5056, 14555], - [2, 14553, 14556], - "json-format", - [3, 6477, 9], - "ackage-", - "ackage-path", - [2, 14559, 14561], - "uimport", - [2, 14503, 5260], - [0, 91, 9654, 4525, 1885], - "universal", - " javascript", - [2, 14566, 14567], - "universal ", - [2, 14569, 91], - [3, 2758, 10], - [2, 14571, 14567], - [3, 14572, 11], - [2, 14573, 91], - "sigle page", - "spa", - "modul", - "ar development", - [2, 14577, 14578], - [3, 11615, 13], - " frontend", - [2, 3166, 14581], - "micros", - [2, 14583, 8920], - "micro ", - "services", - [2, 14585, 14586], - "hot ", - " replacement", - [2, 1237, 14589], - [2, 14588, 14590], - "ssr", - " side rendering", - [2, 36, 14593], - " packager", - [2, 91, 14595], - "JAMStack", - [1, 2343, 14599], - [0, 0, 14610, 14611, 2523], - "real time", - [2, 7519, 5130], - "ssr react framework", - [2, 8589, 5130], - "ssr ", - [2, 14604, 14603], - " framework", - [2, 3709, 14606], - [2, 14604, 14607], - "websockets", - [0, 22099, 8719, 842, 16145, 22100, 5087, 4874, 22102, 9240, 1177, 1192, 3313, 1894, 4039, 4342, 91], - [0, 2322, 5122, 5130, 6710, 27, 5592, 5995], - [1, 2343, 14613], - [0, 14618, 14623, 14624, 2487], - "check-", - "check-types", - "hoopy", - "tryer", - [0, 22110, 21681, 22109, 4600], - "please-", - "release-me", - [2, 14619, 14620], - "spooks", - [0, 1177, 1889, 1954, 2022, 3188, 2899, 3421, 4039], - [0, 6147, 3101, 623, 7048, 4990, 14932, 13441, 22114, 12804, 22115], - [1, 2343, 14627], - "streamify", - [0, 14630, 14631, 14632, 2537], - "serialise", - [3, 14430, 12], - [0, 2367, 22122, 2409, 2835, 3067, 3102, 19984, 4431], - [0, 4597], - [0, 18444, 2323, 1098, 12074, 6113, 22126, 22127], - [1, 2343, 14645], - "arbitrary", - "precision", - "arithmetic", - "big", - "decimal", - "float", - "biginteger", - "bigdecimal", - [3, 1325, 9], - "bigint", - "bignum", - [0, 14646, 14647, 14648, 2537], - [0, 18473, 692, 2012, 2390, 2494, 22133, 2543, 3188, 2072, 3730, 18528, 4039, 4135, 1241, 4597, 4600], - [0, 2348, 2899], - [0, 18444, 16179, 4166, 22137, 1804, 2195], - "uri-", - [1, 2343, 14653], - "uri-to-path", - [2, 2093, 14651], - [0, 14656, 14657, 14658, 2537], - "gyp", - "c++", - [0, 1165, 2476, 3561, 4606], - [0, 1166, 2510, 3477, 4597, 1906], - [0, 18444, 1165, 3561, 1623, 3665, 22145, 5376, 4358, 22147], - [1, 2343, 14661], - "@noble/hashes", - [0, 14662, 14663, 14664, 2537], - [0, 7709, 1104, 1443, 2061, 22153, 3173, 3544, 4597], - [0, 1429, 22157, 1177, 2323, 2494, 2899, 1894], - [0, 18444, 7200, 6949, 20001], - [1, 2343, 14668], - "@antv/", - [2, 14666, 4627], - [0, 14670, 0, 14677, 2537], - "@antv/g2", - [0, 22167, 22168, 2012, 3171, 3730, 3768, 22170, 4597, 4600, 4747], - "@antv/g2plot", - "@antv/util", - "@juggle/resize-observer", - "d3-color", - "conciler", - [2, 3877, 14675], - [0, 18444, 13531, 20614, 13901], - "data-", - "data-set", - [2, 14666, 14679], - [3, 87, 15], - [2, 14681, 1266], - "backgrounds", - [2, 10818, 14683], - [3, 10827, 19], - "fo", - [2, 14685, 14686], - "knobs", - [2, 10818, 14688], - "options", - [2, 10818, 14690], - "fabric", - "@umijs/fabric", - "@welldone-software/why-did-you-render", - "aphrodite", - [3, 13080, 20], - [2, 14696, 3897], - [2, 14696, 8221], - "bx-jest-electron", - [3, 4325, 12], - [2, 6996, 4408], - [2, 14700, 14701], - [1, 2343, 14704], - [0, 14716, 14722, 14724, 2487], - "-deploy", - [2, 7204, 14705], - [2, 10617, 14706], - [2, 5651, 2091], - "moment-", - "jalaali", - [2, 14709, 14710], - "react-wi", - "th-styles-interface-aphrodite", - [2, 14712, 14713], - [3, 14714, 28], - [0, 4431, 4002, 3544, 4606], - "mpiler", - "css-compiler", - [2, 14715, 14718], - "-diff", - [2, 8745, 14720], - [0, 1906, 2899, 4597, 3697, 53, 2510, 5761, 5756, 5743], - "g2", - [0, 18444, 1172, 5198, 6778, 7056, 7192, 22179, 22180, 5341, 5061, 22181, 5284, 4643], - [1, 2343, 14726], - [0, 14727, 14729, 14732, 2523], - [0, 2476], - [3, 4808, 10], - [0, 1166, 2323, 3477, 4597, 1906], - "dable-stream", - [2, 14728, 14730], - [0, 18444, 4295, 1412, 4327, 3126, 4577, 22188, 22189, 22190], - [1, 2343, 14734], - [0, 14735, 14737, 14740, 2537], - [0, 1104, 1370, 2061, 2720, 3544, 4431, 4597, 4647], - "bun-types", - [0, 1429, 2012, 22198, 2436, 2463, 2272, 2899, 4039, 4193, 4196, 4278], - "falafel", - "fore", - [0, 18444, 1370], - "foreach", - [1, 2343, 14746], - "coffee-", - [2, 14743, 89], - "save", - [0, 14749, 14750, 14751, 2523], - "save-license", - [2, 4534, 14747], - [0, 1389, 2541, 1391, 3923, 4431], - [0, 2899, 1429, 15052], - [0, 18444, 17461, 1389], - [1, 2343, 14753], - [0, 14754, 14758, 14760, 2537], - [0, 4431], - "curses", - "tui", - "tput", - [0, 2899, 4597], - "terminfo", - [0, 2323, 18444], - "termcap", - [1, 2343, 14763], - [0, 14764, 14631, 14765, 2399], - [0, 22217, 3544, 22218, 4135, 4431], - [0, 2323, 15208, 4135, 18444, 15525, 22220, 22222, 22223], - [1, 2343, 14767], - [0, 14771, 0, 14772, 4139], - "ansi-term", - "drawille-canvas-blessed-contrib", - "map-canvas", - [0, 97, 22229, 1593, 22230, 3544, 4431, 4597], - [0, 18444, 2323, 2325], - "-terminal", - [2, 3127, 14773], - [2, 3149, 7046], - "picture-tuber", - "sparkline", - [1, 2343, 14779], - [0, 14782, 14786, 14787, 2537], - "term-canvas", - "x256", - [0, 4431, 3032], - "@types/bl", - "essed", - [2, 14783, 14784], - [0, 2899, 4597, 4170], - [0, 18444], - [1, 2343, 14789], - [0, 14790, 14791, 14792, 34352], - [0, 22246, 2476, 4453], - [0, 1166, 1437, 1700, 2089, 2188, 2323, 4597, 1906], - [0, 18444, 2090, 1586, 22249, 2301, 22251, 22253, 15795, 6901, 22254, 4262, 2325, 16077, 22255], - [1, 2343, 14794], - [0, 14795, 7878, 14796, 2487], - [0, 2061, 3544, 4039, 4431, 4597], - [0, 18444, 4050, 7293, 6865], - [1, 2343, 14798], - [0, 14799, 14800, 14801, 2487], - [0, 1462, 3544, 4431, 4606], - [0, 1429, 21480, 1596, 2026, 2061, 2323, 2367, 2494, 2504, 2510, 2899, 3421, 4597], - [0, 1623, 4050, 3178, 2280, 1462, 2458, 2459, 2361, 18444, 17461], - [1, 2343, 14803], - [0, 14804, 14805, 14787, 2399], - [0, 1509, 3544, 4002, 4431, 4606], - [0, 2510, 2899, 4170, 4597], - [1, 2343, 14807], - [0, 14808, 14809, 14810, 4139], - [0, 2541, 4431, 4707], - [0, 1596, 1700, 2323, 2436, 2444, 2447, 2455, 2463, 2685, 22280, 3102, 2899, 4170], - [0, 2323, 18444, 21837, 4329, 2278, 1623, 7234, 7121, 590], - [1, 2343, 14812], - [0, 14813, 14814, 14787, 2537], - [0, 4597, 4431, 14557], - [0, 2323, 2899, 4170, 2759, 16584, 4278, 2510, 3202], - [1, 2343, 14816], - [0, 14817, 14818, 14819, 2537], - [0, 3032, 22291, 3544, 22292, 22293, 22296, 4431, 4597], - [0, 1429, 2899], - [0, 18444, 5614, 1623, 1204, 1698, 134], - [1, 2343, 14821], - [0, 14822, 14818, 14823, 34352], - [0, 4431, 2541, 2720, 1687], - [0, 18444, 8635, 22303, 22304, 8622, 8620, 22306], - "loop", - [1, 2343, 14826], - [0, 14827, 14828, 14831, 2537], - [0, 710, 1544, 4438, 2061, 3102, 1104, 4150, 4151, 21847], - [0, 2323, 2899, 4342, 2515, 1506], - "baconjs", - "kefir", - [0, 17461, 1544, 3000, 22313, 36], - [3, 3736, 10], - [3, 3736, 14], - "deferred", - "deferreds", - "future", - " control", - "flow control", - "dsl", - [2, 8553, 6072], - [1, 2343, 14842], - [0, 14843, 14844, 14845, 2537], - [0, 4431, 3544], - [0, 2323, 1192, 1894, 21482], - [0, 18444, 1585, 2323], - "BN", - "Big number", - "BigNum", - "Modulo", - "Montgomery", - [1, 2343, 14852], - [0, 14853, 14854, 14857, 2537], - [0, 1104, 22324, 2061, 3544, 4431], - [0, 2272, 2899, 4597], - "unpipe", - "destr", - [0, 18444, 1623, 22324, 671, 9654, 7121], - "destroy", - [1, 2343, 14860], - [0, 14861, 14862, 14863, 2537], - [0, 4597, 21861, 22331, 4431, 2061, 3544], - [0, 3421, 2899, 4193, 1177, 4039, 4170, 1596, 22333, 22334, 1958, 1903, 1970, 1900], - [0, 21861, 18444], - [2, 1601, 1851], - [1, 2343, 14866], - [0, 14867, 14870, 14875, 2537], - [0, 1637, 16136, 3544, 3427, 4606], - "-jsdoc-theme", - [2, 1365, 14868], - [0, 4389, 4597, 4387, 2510], - "postgre", - "sql", - "postgresql", - "datamapper", - [0, 1637, 3178, 14137, 16918, 16919, 1623, 18444, 3561], - [1, 2343, 14878], - "active record", - [0, 14879, 14880, 14881, 2537], - [0, 16858, 3544, 4606], - [0, 4389, 4597, 4387], - [0, 18444, 3178, 1623], - [1, 2343, 14883], - [0, 14884, 14885, 14886, 2523], - [0, 3544, 4431, 20992], - [0, 2272, 3760, 4170, 4597], - [0, 18444, 2382, 1781, 2323], - [1, 2343, 14888], - [0, 14889, 14890, 14891, 34352], - [0, 1177, 2061, 3544], - [0, 2323, 2899, 4597, 4170, 2759, 1178, 22360, 22363], - [0, 18444, 1177, 2323, 2656, 22365, 4354, 4225, 1501, 4525, 676, 5284, 5957, 671, 1932], - "mincer", - [1, 2343, 14895], - "eyeglass-module", - [0, 14896, 14897, 14898, 4139], - [0, 2856, 4597, 2051, 22372, 4431, 3544, 1537, 22371], - [0, 2323, 2899, 4170, 2759, 1783], - [0, 18444, 2090, 2385, 4068, 2323, 1932], - [1, 2343, 14900], - [0, 14901, 14902, 14905, 2487], - [0, 4207, 3249, 3544, 22379, 22382], - [0, 1906, 1166, 2323, 4597, 3477], - "align", - "ansi-align", - [0, 18444, 7131, 2687, 2090, 1586, 3529, 3181, 2070, 21543, 4597], - [1, 2343, 14909], - "boxes", - "border", - [0, 14910, 14631, 14911, 2523], - [0, 3544, 4431], - [0, 18444, 19991, 4237, 20050, 22390, 22392, 3053, 2323], - [1, 2343, 14913], - [0, 14843, 14914, 14915, 2537], - [0, 2323, 2899, 4597, 4170, 3697, 1879], - [0, 18444, 2323, 3033, 10903, 3403], - [1, 2343, 14917], - [0, 14918, 7923, 14919, 2537], - [0, 22402, 4001, 21035, 4431], - [0, 14438, 1671, 4525, 2323, 18444, 1783, 5980, 1932, 22405, 3721, 4001], - [1, 2343, 14921], - [0, 14925, 14926, 14928, 4139], - "-stream", - "quote-stream", - [2, 5706, 1237], - [0, 1437, 2541, 22410, 22412, 3427, 7029, 3545, 4431], - [0, 22414, 3505], - [2, 13888, 353], - [0, 18444, 2156, 22410, 2090, 1586, 16410, 20500, 36, 5576, 9229, 20997, 20998], - [1, 2343, 14931], - "readFileSync", - [0, 14933, 14934, 14935, 2537], - "asset", - [0, 22420, 4039, 4600, 2541, 22422, 3923], - [0, 2899, 4597, 1177, 2759, 22425, 3349, 2215, 3074, 22427, 22428], - [0, 3358, 6645, 1528, 22430, 20997, 20998, 20001, 13755, 5351, 2323, 18444, 2193, 1724, 2195], - [1, 2343, 14941], - "array-equal", - [2, 1379, 1932], - "fs-tree-diff", - "heimdalljs", - [0, 14945, 14946, 14947, 2523], - [2, 3192, 1177], - "-lerna-changelog", - [2, 3980, 14943], - [0, 22437, 2061, 1209, 3544, 4015, 22440, 4597], - [0, 1177, 2899, 3210, 4039, 4170], - [0, 2323, 3358, 22443, 18444, 22223], - [1, 2343, 14949], - [0, 14950, 14954, 14955, 34352], - [0, 1104, 1413, 2061, 3544, 22449, 4431], - [3, 1378, 10], - "ixture", - [2, 14951, 14952], - [0, 2323, 2359, 2390, 2447, 2463, 2494, 18426, 2544, 2839, 2899, 22451, 4170], - [0, 15215, 18444, 16518], - [1, 2343, 14957], - [0, 14958, 14960, 14963, 2523], - [0, 2036, 3544, 4002, 4431], - "broccoli", - [0, 4597, 2323, 2367, 22460, 22463, 22465, 2899, 22466, 4170], - [3, 14953, 15], - [2, 14961, 1289], - [0, 18444, 2036], - "multidep", - [1, 2343, 14966], - [0, 14971, 14972, 14973, 2537], - "ts-docs-gen", - "plugin-p", - [2, 14968, 11597], - [2, 4491, 14969], - [0, 14557, 1209, 3102, 4431], - [0, 1429, 2323], - [0, 10345, 18444, 22475], - [1, 2343, 14975], - [0, 14976, 14977, 14984, 2399], - [0, 1496, 4207, 1362, 4599, 3427, 3923], - [0, 2899, 4597, 2759, 2541, 22360, 1537, 22481, 4603], - [2, 1387, 4219], - [3, 14978, 13], - [2, 14979, 181], - "bs-recipes", - "dev-ip", - "easy-", - [0, 18444, 1936, 4068], - "easy-extender", - "eazy-logger", - [1, 2343, 14988], - [0, 14989, 14991, 14993, 4139], - [0, 4431, 3544, 2633], - "resp-modifier", - [0, 2323, 2899, 4597, 2398], - "bs-snippet-injector", - [0, 1671, 2323, 18444, 22489, 1936, 2265, 14137, 2632, 3178], - "-changelog", - [2, 8623, 14994], - [1, 2343, 14997], - [0, 14999, 15002, 15003, 2523], - "browser sync", - [0, 8949, 22495, 18438, 22497, 22502, 22379, 22504, 22505, 22500], - "live reload", - "sync", - [ - 0, 2323, 1192, 1177, 4039, 22509, 8719, 1894, 842, 16145, 442, 1527, 22512, 91, 22507, 8712, 22511, 4523, 1939, - 1895, 1955, 1652, 1567 - ], - [0, 18444, 2323, 1017, 2414], - [1, 2343, 15005], - [0, 15025, 15026, 15029, 34352], - "browser-pack", - [2, 13843, 814], - "zlib", - [2, 13888, 15008], - "d-pa", - "th-relative", - [2, 15010, 15011], - [2, 2325, 15012], - [2, 10740, 1389], - [2, 14181, 1617], - "defined", - "deps-sort", - "domain-browser", - "duplexer2", - "htmlescape", - "https-", - [2, 15021, 1389], - "ed-stream-splicer", - [2, 5433, 15023], - [0, 4431, 22518, 22519], - [0, 2899, 2272, 3188, 4039, 4170, 4600, 2215, 1834, 22522], - "-classic", - [2, 3188, 15027], - [0, 18444, 21195, 22524, 22525], - "module-deps", - "os-browserify", - "-es3", - [2, 3767, 15032], - "read-", - "only-stream", - [2, 15034, 15035], - "shasum-object", - "stream-b", - [2, 15038, 2345], - [2, 4279, 27], - "_decoder", - [2, 1871, 15041], - "subarg", - [2, 9056, 1851], - "rs-browserify", - [2, 6901, 15045], - "tty-browserify", - "vm-browserify", - [1, 2343, 15061], - "unpack", - [2, 13843, 15050], - "coffeeify", - "has-o", - "bject-spread", - [2, 15053, 15054], - [2, 2565, 1243], - "isstream", - [3, 5747, 18], - [2, 3094, 15058], - "seq", - [0, 15062, 15063, 15065, 2443], - [0, 4431, 22518], - [0, 2272, 2899, 4170], - "commonj-esque", - [0, 18444, 7131, 3181, 2385, 6521, 2390], - [1, 2343, 15067], - [0, 15068, 15069, 14787, 2537], - [0, 1149, 1209, 22536, 4431], - [0, 2206, 2323, 2359, 2463, 2447, 4089, 2839], - "exposify", - "mothership", - "-function-calls", - [2, 14057, 15072], - [1, 2343, 15075], - [0, 15078, 15079, 15080, 2537], - "peer-range", - [2, 1382, 15076], - [0, 1437, 2476, 2267, 3545, 3714], - [0, 1166, 2694, 24006, 4597, 1906], - [0, 18444, 2267, 158, 11807, 20631, 20632, 3178, 2632, 15215, 18048, 20637, 21881, 20639, 8221], - [1, 2343, 15082], - [0, 15083, 15089, 14787, 4139], - [0, 1104, 2012, 2070, 3544, 4227, 4296, 4597, 4606], - "leases", - [2, 3340, 15084], - [3, 12361, 13], - [2, 15086, 1747], - [2, 9787, 15087], - [0, 2323, 2510, 2899, 4170, 4278], - "target", - [1, 2343, 15092], - [0, 15093, 15094, 15096, 2537], - [0, 1144, 4431, 2061, 1104, 22555, 3544, 22449, 1874], - [0, 1906, 2675, 2899, 4597, 4170, 22557, 2012, 192, 4131, 22559], - "base-x", - [0, 18444, 14510, 22561, 22562, 3888, 4017], - "ts-standard", - [1, 2343, 15099], - [0, 15104, 15106, 15108, 2537], - "base58", - "bitcoin", - "crytography", - "decode", - [0, 22568, 3544, 4431], - "decoding", - [0, 1178, 1596, 2012, 2323, 2384, 2463, 2899, 3421, 4597], - "litecoin", - [0, 18444, 134, 1623, 1936, 1823], - [1, 2343, 15110], - [0, 15111, 15116, 15117, 34352], - [0, 1664, 2541, 22576, 3479, 4431, 4707], - [3, 9366, 12], - "d-transpile", - [2, 6990, 15113], - [2, 15112, 15114], - [0, 1429, 2899, 4257, 1906], - [0, 18444, 1370, 3378, 1161], - [1, 2343, 15119], - [0, 15120, 15121, 15122, 34352], - [0, 2759, 22584, 1209, 3544, 4431, 4606], - [0, 2323, 2463, 2510, 22588, 2272, 2899, 4039, 4597], - [0, 18444, 4504, 2759, 22590], - [1, 2343, 15124], - [0, 15129, 15131, 15137, 2399], - "acorn-", - [3, 1200, 14], - [2, 15125, 15126], - "acorn-jsx", - [0, 2541, 2437, 4431], - "regexpu-core", - [0, 2323, 4384, 2447], - [2, 10740, 7227], - [3, 5583, 16], - [2, 15133, 4047], - "262-stream", - [2, 1973, 15135], - [0, 2437, 18444, 3101, 7234], - "transpil", - [2, 15138, 5218], - [3, 5221, 11], - "esnext", - [1, 2343, 15143], - [0, 15144, 15145, 15146, 2399], - [0, 1144, 2765, 22602, 3544, 4431], - [0, 2323, 4597], - [0, 5982, 5130, 18444, 2765, 2907, 8791, 4386, 4384, 6969, 1973, 5472, 2275], - [1, 2343, 15150], - "compatible", - "uint8array", - [0, 15151, 15152, 15153, 2537], - [0, 2292, 3544, 4431, 4435], - [0, 4278, 17468, 4597], - [0, 18444, 2292, 5284, 5286, 676, 1501, 590, 2649, 671, 6892, 4354, 16790], - [1, 2343, 15155], - [0, 15156, 15157, 14787, 4139], - [0, 1209, 3181, 3544, 22331, 4431], - [0, 2323, 2272, 2899, 4170, 4597], - [1, 2343, 15161], - "-build", - [2, 640, 15159], - [0, 15162, 15163, 15165, 2523], - [0, 1699, 1707, 2820, 3544, 4431], - [0, 1177, 1889, 2323, 2899, 4170, 4597], - "prebuildify", - [0, 18444, 2323, 1781], - [1, 2343, 15167], - [0, 15168, 15169, 15170, 2523], - [0, 695, 3427, 3544, 4002, 4431, 4606], - [0, 2272, 2899, 4170, 4597], - [0, 18444, 2323, 695], - [1, 2343, 15172], - [0, 15173, 15176, 15177, 4139], - [0, 1437, 1676, 4597, 4438, 2061, 3023, 3923], - "built-in", - "bundled", - [0, 2899, 4193], - [0, 18444, 3000], - [1, 2343, 15179], - [0, 15180, 15181, 15183, 2523], - [0, 22639, 814, 2061, 3170, 2107, 22640, 22638], - [0, 2899, 4193, 1177, 3752, 22643, 1953, 1954, 1938, 1958, 1903, 1970], - "flexbox", - [0, 17461, 2323, 3209, 3001, 9711], - [1, 2343, 15185], - [0, 15186, 15188, 2514, 2399], - [0, 1462, 2541, 3427, 3923, 22649, 4606], - [2, 5581, 10659], - [0, 1429, 2899, 4597, 1177, 2759, 2515, 22360, 2510, 22651, 22481, 22428], - [1, 2343, 15190], - [0, 15191, 15195, 15196, 2537], - [0, 16862, 4431, 2541], - "@sto", - "plight/yaml", - [2, 15192, 15193], - [0, 1429, 2323, 2899], - [0, 18444, 3178, 6707, 16918, 15215, 1936, 16862], - "mergician", - [1, 2343, 15199], - [0, 15200, 14729, 15202, 2523], - [0, 1664, 2020, 2476, 2899, 4351], - "warn-if-update-available", - [0, 18444, 2899, 1973, 5472, 2275, 5130, 8791, 6969, 5982, 2907, 4386, 4384], - [2, 4869, 7059], - "err", - [1, 2343, 15206], - [0, 15207, 15209, 15210, 2399], - [0, 22667, 2070, 3544], - "bump", - [0, 1429, 2323, 2899, 4597, 1177, 3203, 21470], - [0, 2323, 18444, 2301, 22254], - [1, 2343, 15212], - [0, 15213, 14631, 15214, 2523], - [0, 22675, 1698, 22676, 3544, 4431, 4606], - [0, 18444, 1098, 12074, 10650, 22676], - "compress", - [1, 2343, 15217], - [0, 15218, 15219, 15224, 2443], - [0, 1512, 2323, 3363], - [0, 1506, 2447, 2463, 20047, 2272, 4170], - "dtrace-provider", - "mv", - [3, 2854, 14], - [2, 4099, 15222], - [0, 2323, 3363, 22684, 36, 22687, 20120, 2282, 17461, 18444], - "ben", - [1, 2343, 15228], - "log4j", - [0, 15229, 15230, 15231, 2399], - [0, 1209, 4431, 2061, 1104, 3357, 3544, 3330], - [0, 2323, 2899, 4597, 4170, 2479], - [0, 18444, 22005, 2323, 9044, 16237, 22695, 22696, 22011, 22699, 15844], - "streamsearch", - [1, 2343, 15235], - "@mscdex/eslint-config", - [0, 15238, 15239, 15240, 2537], - "uploads", - [3, 3253, 9], - [0, 18438, 1437, 22706], - [0, 1166, 3477, 91, 4597, 1906], - [0, 2323, 1932, 2474, 6731], - [1, 2343, 15242], - [0, 15246, 15248, 14787, 34352], - "lxiv", - "hrtime", - [2, 3715, 15244], - [0, 1437, 4431, 2061, 3544], - "webrtc", - [0, 1906, 2323, 2899, 4170, 4430, 2759, 1596, 2012, 3202], - [1, 2343, 15250], - [0, 15251, 15252, 15254, 34352], - [0, 2061, 3544, 3616, 4606], - [0, 3421, 2899, 4193, 4597, 1177, 3561, 3752, 2510], - "converter", - [0, 18444, 3561, 22147, 1623], - [1, 2343, 15256], - [0, 15257, 15259, 15263, 2537], - [0, 4358], - "@bcoe/v8-coverage", - [0, 2899, 33479, 30889, 4597], - "ground-child", - [2, 14739, 15260], - "v8-to-istanbul", - [0, 22726, 1509, 21195, 1676, 22729, 6639, 6521, 22223, 18444, 1936, 22727, 22728, 2385, 5284, 7121], - [2, 1432, 8746], - [1, 2343, 15268], - "v8", - "profiler", - [0, 15269, 15270, 15271, 2523], - [0, 2012, 2720, 3067], - [0, 1145, 1177, 22735, 2720, 2899, 3752, 4603], - [0, 18444, 3741], - [3, 5738, 22], - [2, 15272, 2528], - [1, 2343, 15280], - "@types/mri", - [2, 13307, 2831], - [2, 4049, 668], - [3, 207, 8], - "madr", - [0, 15281, 15282, 15283, 2399], - [0, 2541, 3427, 3909, 4431, 4606], - [0, 2510], - [0, 18444, 89, 1219, 353, 8535, 1283, 5354, 6624, 22743, 22746, 7234], - [1, 2343, 15285], - [0, 15291, 15293, 15295, 2443], - "@fake", - "r-js/faker", - [2, 15286, 15287], - [3, 1909, 17], - [2, 15289, 91], - [0, 2012, 3357, 705, 4431, 4597], - " cache", - [0, 2323, 2530, 2359], - "multiple", - [0, 18444, 21004, 22753], - [1, 2343, 15297], - [0, 0, 15298, 14787, 2399], - [0, 2323, 2510, 3102, 2899, 1894, 4170, 4597], - [1, 2343, 15302], - "es-de", - "fine", - [0, 15303, 15306, 15311, 34352], - [0, 4874, 18438, 4748, 22762, 17909], - "fine-property", - [2, 15300, 15304], - [0, 2899, 4597, 4170, 4474, 19544, 91, 1537], - "-apply-helpers", - [2, 2183, 7083], - "-length", - [2, 3609, 15309], - [0, 18444, 4068], - "gopd", - [1, 2343, 15314], - [0, 15315, 15316, 15317, 4139], - [0, 2476, 22771, 22772, 22774, 22776, 4597, 22778], - [0, 1166, 3477, 1906], - [0, 18444, 22781, 22782, 22783, 3428, 6707, 15525, 22220, 2325, 22784, 2947, 14932, 22785], - "camel", - "-case", - "camel-case", - "case", - "hyphen", - "separator", - "pascalcase", - [1, 2343, 15327], - "pascal-case", - [0, 14910, 15328, 15329, 2537], - [0, 2012, 2390, 2498, 2899, 4597], - [0, 18444, 22781, 22783, 15525, 4068, 14932], - [1, 2343, 15331], - [0, 15332, 15333, 15334, 2523], - [0, 1437, 1573, 1615, 1664, 22795, 1874, 2061, 2070, 8944, 22798, 3505, 3544, 4002, 4039, 4597], - [0, 2323, 2510, 22778], - [0, 18444, 4329, 2278, 1623, 7234, 7121, 590, 22801, 4227, 11939, 12938, 4070], - [1, 2343, 15336], - [0, 15337, 15338, 15339, 2487], - [0, 3527, 4294, 4002, 3544, 3028, 4606], - [0, 2323, 2278, 2899, 4597, 1177, 4039, 21315, 3561, 18426, 3342, 1165, 2482, 21688, 2510, 1938, 1881], - [0, 18444, 2278, 2323], - "assert-", - "rejects", - [2, 15340, 15341], - [1, 2343, 15347], - "graphic", - "pixman", - "cairo", - [0, 15348, 0, 15349, 2523], - [0, 1149, 2541, 3427, 7029, 4247, 4431], - [0, 18444, 22813, 2090, 1586, 16410, 20500, 36, 5576, 9229, 20997, 20998], - [1, 2343, 15351], - [0, 15352, 15353, 15354, 2523], - [0, 1437, 2061, 3067, 3544, 4431, 4484], - [ - 0, 22821, 22507, 5087, 22823, 4874, 18435, 1009, 1011, 1596, 1177, 1895, 1939, 2323, 1192, 1894, 4468, 4474, 91, - 4597 - ], - [0, 18444, 2323, 4166, 1523], - " sensitive", - [2, 15321, 15355], - [1, 2343, 15358], - [0, 15359, 15360, 15363, 2399], - [0, 22829, 1437, 2061, 2476, 2553, 3714], - [0, 1166, 3477, 4597, 1906], - "slimerjs", - "scraping", - [0, 18444, 2098, 2090, 4202, 3073, 22832, 3430, 1676, 16518, 21665], - [1, 2343, 15365], - [0, 15366, 15367, 15368, 2537], - [0, 22837, 22841, 1082, 1573, 1623, 22843, 20949, 2215, 4227, 21732, 4431], - [0, 1367, 1177, 1889, 2022, 2323, 2367, 2419, 2450, 2455, 22845, 2759, 22481, 22848, 2899, 3427, 4039, 4597], - [0, 18444, 2323, 22850, 4070], - [1, 2343, 15372], - "loupe", - "pathval", - [0, 15375, 15360, 15377, 2537], - "check-error", - [3, 6470, 15], - [0, 53, 2476, 22857], - [2, 5474, 13278], - [0, 18444, 4301, 7293, 6865, 4050, 1676, 6782, 7201, 3073, 6807, 676, 5284, 5286, 6892, 2003], - [1, 2343, 15379], - [0, 15380, 14805, 15381, 2537], - [0, 22863, 3023, 3544, 4002, 4333, 4431, 4606], - [0, 2323, 4333, 1623, 7121, 18444, 22223], - [1, 2343, 15383], - [0, 15384, 15386, 15387, 2537], - [0, 3544, 4360], - "chai-plugin", - [0, 2070, 2323, 22871, 2899, 22872, 4597, 1906], - [ - 0, 18444, 1017, 45, 8221, 18048, 22074, 22075, 2873, 1179, 1623, 2278, 695, 4333, 5376, 134, 1936, 13814, 22874, - 22875, 3257 - ], - [1, 2343, 15389], - [0, 15390, 15391, 15392, 2523], - [0, 3028, 3544, 4361], - [0, 48, 53, 87, 94, 1166, 1596, 1610, 1701, 3421, 1894, 4597, 1906], - [0, 18444, 3178, 8221, 4361], - "strategy", - [1, 2343, 15395], - [0, 15396, 15397, 15399, 2537], - [0, 1448, 2061, 3544, 4597], - [0, 2099, 2323, 2430, 2899, 3758, 4151, 4193], - "@debitoor/eslint-config-debitoor", - [0, 18444, 8221, 1017, 22074], - "objects", - "Subset", - [2, 6792, 15401], - "like", - [1, 2343, 15406], - "superset", - [0, 15407, 15408, 15409, 34352], - [0, 2476, 1209], - [0, 1166, 2383, 4597, 1906], - [0, 18444, 1209, 4545, 1283, 7234, 1936, 8924, 22894, 22746], - [1, 2343, 15412], - "yoctodelay", - [0, 15413, 15414, 15415, 2537], - [0, 1104, 2061, 4430, 4597], - [0, 22507, 4874, 22900, 18438, 20959, 22821, 4039, 2323, 2463, 91], - [0, 18444, 91, 5284, 22902], - [1, 2343, 15417], - [0, 15422, 15425, 15429, 34352], - "docpress", - "git-u", - "pdate-ghpages", - [2, 15419, 15420], - [0, 22821, 1104, 2061, 3102, 3544, 4430], - "gulp-ava", - [2, 2530, 3020], - [0, 22909, 4874, 22900, 2323, 2367, 2529, 4487, 91], - "mersenne", - "address", - "dice", - [0, 2323, 91, 1932, 4799, 18444, 17461, 4487, 9654, 671], - [1, 2343, 15431], - [0, 15432, 15433, 15434, 2537], - [0, 4597, 4431, 4600, 4227, 1104, 3544], - [0, 2323, 4039, 22920, 91, 4874, 2367, 2409, 18438, 2479, 3159, 18435, 18440, 2510, 22919], - [0, 91, 18444, 22924, 4799, 11540, 7234, 4643, 5197], - [1, 2343, 15440], - "param-case", - "kebab-case", - "header-", - "header-case", - [0, 15441, 15442, 14787, 34352], - [0, 22639, 2757, 4431, 4535, 22930, 22640, 4100, 2053, 22933, 4606], - [0, 4389, 4597, 1177, 1894, 22941, 4421, 3696, 22939, 1907, 1982, 1895, 1955, 22937], - [1, 2343, 15453], - "c12", - "convert-", - "gitmoji", - [2, 15445, 15446], - [2, 3310, 4009], - "ofetch", - "pkg-types", - "scule", - "std-env", - [0, 15454, 12112, 15455, 2523], - [0, 2541, 3427, 22946], - [0, 17507, 1623, 18444], - [1, 2343, 15459], - "dogstatsd", - "@kurkle/color", - [0, 15479, 15485, 15489, 2523], - [2, 812, 14510], - "@types/o", - "ffscreencanvas", - [2, 15461, 15462], - "js-adapter-luxon", - [2, 9816, 15464], - [3, 15465, 16], - [2, 15466, 3220], - "chartjs-", - [2, 15468, 11017], - "chartjs", - [2, 1884, 15470], - [3, 2912, 13], - "launcher", - [2, 5695, 15473], - [2, 15472, 15474], - [3, 4071, 15], - "wc3", - [2, 15476, 15477], - [0, 2070, 2367, 3544, 4431, 4597], - "charts", - "graphs", - "datadog", - "telegraf", - "native-run", - [0, 2012, 4600, 2323, 2447, 2463, 2530, 2413, 2361, 2498, 2450, 2272], - [2, 1448, 11245], - "domhandler", - "domutils", - [0, 18444, 2319, 2536], - "-sniffer", - [2, 9254, 15490], - "-tree-adapter", - [2, 2653, 15492], - [2, 1868, 15493], - [2, 3493, 15494], - "parse5-", - "parser-", - [2, 15497, 3101], - [2, 15496, 15498], - "whatwg-", - "mimetype", - [2, 15500, 15501], - [1, 2343, 15511], - "@imgix/js-core", - [2, 7724, 2220], - "hatwg-mimetype", - [2, 7820, 15506], - [3, 1926, 15], - "xpect-type", - [2, 15508, 15509], - [0, 15513, 15515, 15516, 2537], - [3, 2654, 10], - [0, 2070, 2051, 22959, 2419, 4431, 4600, 2367, 2012, 3544], - "scraper", - [0, 3421, 2323, 2899, 4597, 1596, 22961, 2463, 2384, 2494, 1178, 22963], - [0, 18444, 1936, 3888, 1623, 6707, 5614], - [1, 2343, 15518], - [0, 15519, 15520, 2514, 2487], - [ - 0, 22970, 22971, 22972, 1437, 1672, 2061, 22639, 22640, 22974, 22979, 22983, 3067, 3183, 8949, 3427, 4002, 4431, - 4597 - ], - [0, 1400, 1596, 2012, 2759, 22481, 2272, 22985, 2899, 4039, 4170], - [1, 2343, 15522], - [0, 15523, 15524, 15527, 4139], - [0, 3768, 4430, 4431, 4597, 4600, 4753, 22990], - [0, 2899, 4255, 1241], - "version", - [2, 813, 15525], - [0, 2323, 18444, 22990, 22993, 2056, 7046, 4597, 2542], - [1, 2343, 15529], - [0, 15530, 15531, 15532, 2537], - [0, 1104, 15642, 1457, 2061, 2200, 3427, 3507, 3544, 3923, 4207, 4597, 22778], - [0, 1596, 2759, 2899, 3202, 3752, 4039, 4170, 4193, 4278, 4294, 1906], - [0, 2323, 2282, 18444], - "@better-scroll/core", - "add-", - "listener", - [2, 12598, 15535], - [2, 1752, 15536], - [2, 15534, 15537], - "-font", - [2, 1456, 15539], - [2, 1625, 7521], - [1, 2343, 15546], - "-converter", - [2, 2275, 15543], - [2, 1625, 15544], - [0, 15552, 0, 15563, 2537], - "dom-closest", - "dom-lib", - [3, 1817, 15], - [2, 15549, 2013], - "htmlhint", - [0, 3150, 4597, 4430, 2924, 2541], - "insert-css", - "jsbarcode", - "jsonlint", - "jsonlint-mod", - "mutat", - "ionobserver-shim", - [2, 15557, 15558], - [2, 3767, 1289], - "-delta-to-html", - [2, 3771, 15561], - [0, 18444, 2924], - [1, 2343, 15576], - "eautiful-dnd", - [2, 12242, 15565], - "demirror2", - [2, 3808, 15567], - "asy-crop", - [2, 11352, 15569], - "lightbox", - [2, 3608, 15571], - [2, 3838, 15572], - "azy-load", - [2, 12432, 15574], - [0, 15577, 15581, 15583, 4139], - [0, 1544, 21847, 2541, 2756, 3357, 3445, 23009, 4150, 4151, 4431, 4438, 2282], - "react-quill", - "rmc-feedback", - "smooth-scroll-into-view-if-needed", - [0, 2899, 4342], - [3, 5835, 27], - [0, 18444, 22313, 1544, 3000], - "to-to-assign", - [2, 15582, 15584], - "demirror", - [2, 4860, 15586], - "lement-", - [1, 2343, 15593], - "resize-event", - [2, 15588, 15590], - [2, 4861, 15591], - [0, 15603, 15617, 15620, 2523], - "@types/faker", - "sert-css", - [2, 9721, 15595], - "barcode", - [2, 7635, 15597], - [3, 7895, 12], - [2, 15599, 2631], - "rcode.react", - [2, 11304, 15601], - [0, 2188, 2476, 4597, 22990], - "beautiful-dnd", - [2, 4881, 15604], - [2, 4881, 2741], - [2, 4881, 11167], - [2, 6324, 1456], - [2, 5098, 15608], - [3, 15609, 15], - [2, 15610, 7262], - [2, 15610, 89], - [2, 15610, 10631], - "tinker", - [2, 1876, 15614], - [2, 6941, 3841], - [0, 1166, 17279, 22706, 2323, 3477, 23017, 22778, 1906], - "mark-twain", - "rc-queue-anim", - [0, 18444, 2056, 12666, 1137, 15215, 1536, 2090], - "croll-anim", - [2, 11229, 15621], - [3, 11371, 21], - [2, 15623, 1524], - "react-su", - "blime-video", - [2, 15625, 15626], - [1, 2343, 15631], - "scrollama", - "values.js", - [0, 15636, 15638, 15639, 2523], - "vfile-message", - "-warnings-plugin", - [2, 7131, 15633], - [2, 4670, 15634], - [0, 22058, 1149, 4597, 4431, 3181, 4545, 22057, 22054], - [3, 1456, 9], - [0, 2323, 2899, 1177, 4039, 22064, 23026, 2381, 3159, 4599, 2425, 23025, 22066, 22068, 22062], - [0, 18444, 22057, 22074, 22075], - [1, 2343, 15641], - [0, 15646, 15647, 15649, 2443], - "anymatch", - "braces", - "is-b", - "@paulmillr/jsbt", - [0, 1792], - [0, 1166, 3477, 4481, 1906], - "readdirp", - [0, 1896, 4990, 15008, 16518, 23034, 4202, 1871, 1398], - [1, 2343, 15651], - [0, 15652, 15653, 15654, 2537], - [ - 0, 23040, 23041, 23043, 23045, 3984, 23051, 23054, 3988, 10630, 11380, 23059, 23065, 23070, 23075, 23078, 23080, - 23082, 23085, 23092, 23096, 23098, 23103, 23110, 23113, 23118, 23121, 23123, 13240, 23126, 23128, 23133, 23136, - 23139, 23141, 23143, 15043, 4351, 23145, 23149 - ], - [0, 811, 8850, 816, 10615, 1703, 23155, 4042, 4255, 4389, 4400], - [0, 1783, 1745, 1739, 9591, 13729, 4354, 23158, 9654, 671, 19269, 2554, 3984, 4549], - [1, 2343, 15657], - "ci", - [0, 0, 15660, 15661, 2399], - "continuous", - [2, 15674, 15682], - [0, 23163, 23164, 2228, 18555, 2253, 2256, 2273, 23165, 2281, 2283, 2293, 23167, 23169], - [0, 4453, 7597], - [1, 2343, 15683], - [3, 6217, 21], - [2, 15663, 4779], - [3, 169, 22], - "ntion", - [2, 15665, 15666], - [3, 169, 21], - "inimap", - [2, 15668, 15669], - [3, 116, 24], - [2, 15671, 14745], - [3, 164, 21], - [3, 5276, 15], - "anguage", - [2, 15673, 15675], - [3, 157, 21], - [2, 15677, 5204], - [3, 148, 22], - "de-block", - [2, 15679, 15680], - "imple-access", - [0, 15688, 15708, 15709, 4139], - "tml-embed", - [2, 15677, 15684], - "ge-break", - [2, 172, 15686], - [0, 3183, 23175, 4227, 4720, 4535], - "heme-lark", - [2, 178, 15689], - "ord-count", - [2, 6197, 15691], - [2, 15698, 15725, 186], - "how-blocks", - [2, 15663, 15694], - [3, 15685, 25], - [2, 15696, 4231], - [3, 10883, 21], - "arkdown-gfm", - [2, 15668, 15699], - [3, 175, 22], - "move-format", - [2, 15701, 15702], - "ource-", - [2, 15704, 6110], - [2, 15663, 15705], - "oriz", - [ - 0, 8648, 1168, 1195, 1282, 1317, 1429, 23177, 1540, 1719, 1787, 16256, 16257, 1177, 1895, 1924, 1926, 2151, - 2228, 13831, 2240, 2247, 2253, 2256, 2258, 23178, 2281, 2283, 2314, 17568, 2675, 16021, 2990, 2899, 3211, 3257, - 3421, 1894, 4135, 4193, 91, 4545, 2924, 4681 - ], - [0, 2036, 3257, 1283, 1936], - "ontal-line", - [2, 15707, 15710], - [2, 15677, 15711], - [3, 6164, 21], - [2, 15713, 12426], - "multi-root", - [2, 6157, 15715], - "strict", - "ed-editing", - [2, 15717, 15718], - [2, 15701, 15719], - "peci", - "al-characters", - [2, 15721, 15722], - [2, 15663, 15723], - "plugin-u", - "nano-jsx", - [1, 2343, 15729], - "solid-js", - [0, 15730, 15731, 6060, 2523], - [ - 0, 2812, 23184, 1366, 6714, 2607, 8340, 17693, 23185, 8336, 8316, 23187, 23188, 8338, 23189, 23190, 8349, 23192, - 23193 - ], - [0, 620, 1501, 2710, 8363, 23196, 2036], - [1, 2343, 15733], - [0, 15734, 15735, 15736, 2487], - [0, 15507, 4874, 9241, 18089, 15502, 4729], - [0, 23203, 23205, 91, 1984, 9750], - [0, 2832, 965, 1388, 5317, 11513, 5122, 4963, 1936, 7102, 12616], - [1, 2343, 15738], - [0, 0, 8134, 15739, 2537], - [0, 6914, 4354, 13735, 6793, 2100, 7210, 200, 6876, 6478, 3729, 1138, 7058, 7233, 10446, 7128, 3183, 3460], - [1, 2343, 15741], - [0, 0, 15746, 15748, 2537], - "@chrisblossom/eslint-config", - [3, 14731, 11], - "-pkg-up", - [2, 15743, 15744], - [0, 5517, 13614, 23237, 26398, 19325, 1159, 1593, 9254, 1177, 23225, 2708, 3410, 3421, 4103, 4389], - "temp-sandbox", - [0, 7263, 2568, 7031, 6951, 6422, 970, 1593, 6789], - [1, 2343, 15750], - [0, 0, 15751, 2514, 2523], - [0, 2272, 2839, 1209, 4389], - [1, 2343, 15753], - [0, 15754, 15755, 15756, 2399], - [0, 14038], - [0, 5517, 13614, 23237, 23239, 23241, 19325, 1158, 1159, 1177, 2011, 2708, 3206, 3410, 3421, 4103, 4389], - [0, 6914, 6959, 6780, 6889, 6888, 6914, 3205, 941, 5284, 5286], - [2, 5933, 1469], - [1, 2343, 15762], - "uncache", - "uncached", - "unrequire", - [0, 15763, 15764, 15765, 4139], - [0, 12396, 9315, 23247, 23249, 23250, 23253, 3140, 3493, 23254, 4555, 12449, 23257, 23258], - [0, 4874, 23262, 1414, 2581, 2588, 3137, 1894, 23264, 3985, 3998, 4505, 91, 18002, 1906], - [0, 23267, 2587, 1936, 23266, 6435, 614, 1644, 3972], - [1, 2343, 15772], - "opts", - "opt", - "parseopt", - "argsparse", - "optparse", - [0, 15777, 15778, 15779, 2537], - "complete", - "autocomplete", - [3, 15774, 11], - [2, 15775, 6600], - [0, 12396, 23247, 23254], - [0, 4874, 23262, 23274, 1414, 1699, 23276, 2581, 2588, 2620, 23279, 1894, 3985, 3998, 4505, 91, 18002, 4555, 1906], - [0, 4050, 23267, 2587, 1936, 6953, 2574, 6435, 614, 23266, 4741], - [1, 2343, 15781], - [0, 15782, 15783, 15784, 34352], - [0, 12396, 9315, 23286, 23288, 13839, 23289, 23291, 9396, 2584, 23292, 16870, 3746, 4233, 4555, 23258], - [0, 4874, 1414, 2588, 1894, 3985, 3998, 4505, 91, 18002, 1906], - [0, 1623, 23267, 2587, 1936, 3529, 6421, 3766, 23296, 3585, 1631, 23266, 6435, 614], - [1, 2343, 15787], - [2, 1861, 7253], - [0, 15789, 15790, 15791, 2523], - "timers-ext", - [0, 1006, 19877, 12396, 23288, 23289, 23302, 23308, 23292, 23310, 23312, 23314, 3746, 4233, 4309, 23254, 23258], - [0, 4874, 15128, 1414, 23316, 12412, 2007, 2588, 3137, 12127, 3140, 12133, 1894, 3985, 3998, 4505, 91, 4555, 1906], - [0, 1444, 5286, 6742, 23267, 2587, 1936, 5284, 1219, 9102, 3958, 353, 23266, 6435, 614], - "medikoo", - [2, 1884, 15792], - "list-", - "updated", - "list-updated", - [2, 10617, 15796], - [3, 2289, 14], - "-cc-changelog", - [2, 4024, 15799], - [2, 15798, 15800], - "prettier-e", - "lastic", - [2, 15802, 15803], - "tad", - [1, 2343, 15807], - [0, 15808, 15809, 15810, 2487], - [0, 12396, 9315, 23322, 23288, 23292, 23253, 3140, 3746, 4233, 4292, 23258], - [0, 4874, 1414, 2588, 1894, 3985, 3998, 4505, 91, 1906], - [0, 23267, 2587, 1936, 4141, 1646, 23324, 23266, 6435, 614], - [1, 2343, 15812], - [0, 15816, 15817, 15818, 2537], - "toggle", - "show", - "hide", - [0, 1006, 12396, 9315, 23288, 23289, 23308, 23292, 23310, 23312, 23314, 3746, 4233, 4309, 23254, 15632], - [0, 4874, 4880, 4883, 1414, 668, 12415, 2588, 1894, 89, 3824, 3985, 3998, 23330, 4505, 91, 1906], - [0, 23267, 2587, 1936, 3698, 89, 23332, 3709, 23266, 6435, 614, 188], - [1, 2343, 15820], - [0, 15821, 0, 15823, 2537], - [0, 12396], - "varlock", - [0, 1563, 2587, 23267, 1936, 4141, 1871, 1646, 2585, 23266, 614, 6435], - [1, 2343, 15825], - [0, 15827, 15809, 15828, 2537], - "string-length", - [0, 12396, 9315, 12421, 23344], - [0, 23266, 2587, 23267, 614, 6435, 1936, 1871, 1563, 2585, 9547], - [1, 2343, 15830], - [0, 15831, 15832, 15834, 2537], - [0, 12396, 23288, 23352, 3746, 4233], - [0, 4874, 15128, 1414, 23316, 23356, 12412, 1894, 3985, 3998, 23359, 4481, 4505, 91, 1906], - "expresso", - [0, 965, 14839, 23267, 2587, 1936, 23362, 3958, 23266, 6435, 614, 23361, 4607], - [1, 2343, 15836], - [0, 15837, 15839, 2514, 4139], - [0, 4647, 2036], - "fast-text-table", - [0, 3421, 2899, 1177, 4039, 4342, 1948], - "256-colors", - [2, 1105, 15840], - "git-re", - "git-rev", - "growl", - [1, 2343, 15848], - "tables", - "tabular", - [0, 0, 15849, 15850, 2523], - [0, 15990, 2228, 2240, 2314, 14352, 2759, 2835, 1209, 14529, 3774, 3954, 23375, 4019, 23376], - [0, 1871, 18089, 18944, 1936, 10368, 15103, 3656], - [1, 2343, 15852], - [0, 15855, 15856, 2514, 2537], - [2, 8737, 4522], - [2, 2968, 14994], - [0, 3263], - [0, 4167, 4384], - [1, 2343, 15858], - [0, 0, 0, 15859, 2537], - [ - 0, 2026, 1965, 11988, 5995, 23389, 23391, 23397, 23400, 23404, 23407, 23410, 23411, 23412, 23413, 23414, 23415, - 23416, 23417 - ], - [1, 2343, 15861], - [0, 0, 15863, 2514, 34352], - "truncate", - [0, 4361, 4039, 1894, 1420, 11518, 53, 23423, 5874], - "ellipsis", - [1, 2343, 15866], - [0, 0, 15867, 2514, 2443], - [0, 94, 87, 14128, 14041, 1175, 48, 53, 1178, 1193, 1745, 1177, 1935, 1938, 1939, 1192, 2774], - [1, 2343, 15870], - "cardinal", - [0, 15881, 15885, 15888, 2523], - "hyperlinker", - [2, 689, 13008], - [2, 2055, 2873], - "object-t", - "reeify", - [2, 15874, 15875], - [2, 689, 7152], - "natural-", - "orderby", - [2, 15878, 15879], - [ - 0, 23432, 1362, 27433, 15838, 23434, 23436, 23438, 23439, 23440, 23441, 2822, 23444, 3170, 19445, 3220, 3222, - 3416, 3527, 15245, 4294, 4435, 23445, 23446 - ], - "-prompt", - [2, 6875, 15882], - [3, 4351, 9], - [ - 0, 23450, 13414, 4856, 8780, 7637, 8778, 6503, 4874, 21623, 6513, 23448, 1414, 1429, 1448, 6323, 1177, 23453, - 23456, 2675, 2990, 2899, 4193, 4474, 91 - ], - "hyperlinks", - [2, 15884, 15886], - [0, 5351, 5353, 6354, 5130, 2596], - [3, 6519, 10], - "ip-ansi", - [2, 15889, 15890], - "nsi-styles", - [2, 9165, 15892], - [3, 9359, 12], - [1, 2343, 15898], - "ct-stack", - [2, 15894, 15896], - [0, 15899, 15900, 2514, 4139], - [0, 23462], - [ - 0, 1362, 1389, 1391, 1537, 1177, 2228, 2236, 2239, 2277, 2281, 2283, 2291, 23466, 2307, 2036, 2276, 4085, 23469, - 4171, 4193, 16584, 23471, 4535 - ], - [1, 2343, 15902], - [0, 0, 15912, 15913, 2537], - "@yarnpkg/core", - "@yarnpkg/", - "fslib", - [2, 15904, 15905], - [3, 1920, 15], - "rca", - [2, 15907, 15908], - "multi-input", - [2, 4049, 15910], - [ - 0, 1623, 1700, 2070, 19745, 2832, 2899, 1177, 1209, 4042, 4170, 4072, 1462, 1481, 1525, 2036, 91, 2665, 23482, - 6503, 18059, 23483, 13388, 23476, 23479, 1954, 8850, 23480, 1938, 1958, 1903, 811, 1011, 816, 1009 - ], - [0, 5342, 5341], - [1, 2343, 15915], - [0, 15916, 0, 2514, 2537], - [0, 3263, 1326], - "good-listener", - "tiny-emitter", - [1, 2343, 15920], - [0, 6263, 0, 15922, 2523], - "cut", - [0, 2602, 7426], - [1, 2343, 15924], - [0, 0, 15925, 15927, 2537], - [0, 1501, 620], - "is64bit", - [0, 6731], - "paste", - "copy-paste", - "pasteboard", - "pbcopy", - "xclip", - "xsel", - [1, 2343, 15935], - [0, 15936, 15937, 15938, 2523], - [0, 3368, 3188], - [0, 4535, 2832, 23509, 4039], - [0, 3257, 1283], - [1, 2343, 15940], - [0, 15941, 15942, 10570, 2399], - [0, 3847], - [0, 53, 61, 87, 90, 94, 1429, 1596, 1603, 1177, 2899, 3421, 3697, 3744, 89, 4039, 4042, 4045, 4055, 4067, 4073], - [1, 2343, 15944], - [0, 15945, 15946, 2514, 4139], - [0, 1437, 4135, 2151, 1525, 23520, 3762, 4232], - [ - 0, 1192, 1177, 4039, 3363, 4468, 4474, 4508, 91, 5087, 4874, 5245, 5254, 4864, 1939, 1938, 13418, 1011, 23523, - 1009 - ], - [1, 2343, 15948], - [0, 0, 15949, 15950, 2523], - [ - 0, 23528, 23531, 4865, 13204, 4874, 29891, 7677, 1138, 14736, 30932, 668, 1177, 2070, 2832, 3244, 3377, 30794, - 20085, 1894, 23535, 91, 4548, 23538, 1984, 23539, 4729, 4763 - ], - [0, 2611, 5122, 1896, 27, 13527, 5130, 38, 23542, 23543, 23544, 23545, 21444, 17218, 13573, 6710], - [2, 976, 2942], - [1, 2343, 15954], - [2, 9753, 6072], - [0, 15957, 6538, 15958, 2487], - "progress bar", - "@exodus/bytes", - [0, 3084], - [0, 3358, 2195, 17977, 17978], - [1, 2343, 15961], - [2, 11941, 5258], - [0, 15963, 13640, 15965, 2487], - "coro", - [0, 1537, 3188, 4039, 4135, 4562, 4707, 23559], - "coroutine", - [0, 23561, 23562, 23563, 23564, 3378], - [1, 2343, 15967], - [0, 15968, 15969, 15970, 2487], - [0, 15487, 2654], - [ - 0, 192, 5467, 19438, 442, 8862, 811, 816, 10615, 10817, 23572, 11085, 23573, 4874, 17214, 32818, 7677, 1177, - 1955, 10964, 1978, 2203, 2633, 2675, 17221, 2832, 2990, 3401, 3541, 1894, 23535, 4042, 4201, 4474, 91, 4523, - 1984 - ], - [0, 2616, 1936, 965, 57, 2654, 23578], - [1, 2343, 15972], - [0, 0, 15973, 15974, 34352], - [0, 4874, 1414, 23276, 2577, 2584, 1894, 3985, 3998, 4505, 91, 4548, 1906], - [0, 23584, 11512, 1936, 1213, 3205, 10381, 12616, 7102], - [1, 2343, 15976], - [0, 15977, 15978, 15979, 2537], - [0, 15956], - [0, 23591, 1177, 2203], - [0, 9254, 1936], - "ignore-walk", - [1, 2343, 15982], - [0, 0, 15983, 15986, 2523], - [ - 0, 192, 5467, 5366, 23597, 5087, 4874, 1317, 18089, 1177, 1895, 1938, 23598, 2591, 2675, 1894, 4257, 4468, 4483, - 4494, 91, 4523 - ], - "teeny-request", - "urlgrey", - [0, 1936, 23601, 23603, 23605, 18089, 23606, 23608], - [1, 2343, 15989], - [2, 10988, 4504], - [0, 0, 15991, 15992, 2443], - "codecov.io", - [0, 23613, 1414, 1596, 4042, 4533], - [0, 1936, 1867, 10368, 23615, 15103, 18089], - [1, 2343, 15994], - [0, 15995, 16007, 16010, 2523], - [0, 3493, 2635], - "mirror/lint", - [2, 13183, 15996], - [3, 15997, 12], - [2, 15998, 6624], - [2, 15998, 6649], - [3, 16000, 13], - [2, 16001, 10190], - [2, 15998, 8891], - [3, 15997, 13], - [2, 16004, 15675], - [2, 15998, 15774], - [ - 0, 1700, 1192, 2675, 3144, 1622, 1177, 1701, 2924, 1854, 3692, 1894, 1610, 48, 1193, 2036, 53, 2990, 3400, - 23621, 192, 4257, 23623, 87, 2651, 1938, 1895, 5467, 16405 - ], - "buildhelper", - [2, 15998, 16008], - [0, 2924, 1936, 1194], - [1, 2343, 16012], - [0, 16013, 16014, 16016, 2523], - [0, 15320, 1462, 1525, 2591, 15436, 23631, 4535], - [0, 2228, 2236, 2281, 2291, 3524, 2907], - [2, 10697, 1592], - [ - 0, 200, 15215, 23634, 1623, 1936, 2265, 5284, 2262, 14137, 2632, 3178, 6707, 6708, 4405, 23635, 1644, 57, 23637, - 2280 - ], - [1, 2343, 16018], - [0, 16019, 16020, 16023, 2537], - [0, 15320, 1462, 1525, 18089, 15436, 23631, 4072], - [0, 192, 11893, 811, 8850, 816, 10615, 23643, 23648, 1177, 1903, 2675, 2742, 1192, 2780, 2990, 4042, 23652, 1983], - "jison", - [2, 5249, 23751], - [ - 0, 200, 15215, 23634, 1623, 1936, 2265, 5284, 2262, 14137, 2632, 3178, 6707, 6708, 4405, 23635, 1644, 57, 4072, - 23637, 2280 - ], - [1, 2343, 16025], - [0, 16026, 16027, 16028, 34352], - [0, 3524], - [0, 4389, 4255, 4387, 3524], - [0, 1936, 2636, 3520, 3521, 6710], - [1, 2343, 16030], - [0, 16031, 16032, 16033, 2537], - [0, 15487, 2616, 3872, 4309], - [ - 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 10817, 23572, 5366, 4874, 4880, 4883, 17214, 32818, 7677, - 1317, 1177, 1955, 10964, 1978, 2203, 2675, 2990, 3541, 3698, 23535, 89, 3824, 4042, 4201, 4474, 91, 4523, 1984 - ], - [0, 2639, 1936, 89, 57, 965], - [1, 2343, 16035], - [0, 0, 16036, 16037, 2523], - [0, 1166, 1448, 1906], - [0, 1936, 12075, 2640, 11513, 3392, 7102, 12616, 23670, 23674], - [1, 2343, 16039], - [0, 0, 16040, 16042, 2399], - [ - 0, 2675, 2742, 2297, 4484, 1177, 4039, 4042, 1894, 1596, 3536, 91, 3400, 2766, 3720, 2898, 23689, 2886, 23687, - 19965, 13207, 2923, 23681, 23683, 2881, 23679, 6059, 23686 - ], - "wcwidth", - [0, 12197, 23691, 1424, 1936, 965, 158, 13814, 8221], - [1, 2343, 16044], - [0, 16045, 0, 16046, 2523], - [0, 23696, 1699, 1754, 2654, 23699], - [0, 1936, 202, 2585, 18641, 19096, 15253], - [1, 2343, 16048], - [0, 16049, 0, 16050, 2523], - [0, 23708, 23709, 1091, 2070, 2929, 3183, 3742, 4135], - [0, 1936, 671, 1155, 2650], - [1, 2343, 16052], - [0, 16054, 16055, 16058, 34352], - "array-back", - [0, 23736, 2635, 1209, 3716, 4388], - [ - 0, 192, 5467, 4874, 1610, 1622, 1628, 1652, 21468, 1177, 17589, 2629, 2675, 1192, 2990, 3177, 3400, 1894, 3754, - 23738, 3786, 4039, 4257, 4307, 91, 2924, 4677, 23742 - ], - "find-replace", - "typical", - [0, 2924, 1932, 1936, 2651], - [1, 2343, 16060], - [0, 16061, 16062, 16063, 2537], - [0, 16022, 1525, 1595, 3692], - [ - 0, 442, 19344, 23339, 6503, 4874, 34737, 1414, 1637, 1177, 23753, 1938, 32525, 27790, 2022, 2203, 2899, 3561, - 3759, 23631, 4039, 23754, 4361, 4072, 91, 4523, 22946 - ], - [0, 3692, 23757, 1936, 23760, 2632], - [2, 1437, 2324], - "table-", - "table-layout", - [1, 2343, 16068], - [0, 16069, 16070, 16071, 2523], - [0, 18087, 15487, 15488, 18089], - [0, 442, 4874, 7677, 1177, 1895, 1953, 1982, 2203, 1894, 4483, 91, 4523, 1984], - [0, 1936, 57, 7046, 6523, 965, 23767, 6084, 16179], - [1, 2343, 16073], - [0, 16074, 16075, 16076, 2487], - [0, 1704, 2713, 20099, 4266, 23775], - [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421], - [0, 27, 1851], - "cached", - "cachedir", - "find-n", - "ode-", - "ode-modules", - [2, 16079, 16081], - "is-u", - [1, 2343, 16086], - "is-utf8", - [0, 16093, 16097, 2514, 2399], - [3, 549, 23], - [2, 16087, 1172], - [2, 12772, 8532], - [2, 1652, 16089], - "-reporters", - [2, 11086, 16091], - [0, 2017, 23783, 2131], - [3, 1566, 12], - " changelog", - [2, 16094, 16095], - [0, 4729, 3421, 23785, 1149, 2899, 4135, 2025, 4218, 1537, 1159, 4220], - [1, 2343, 16099], - [0, 16100, 16101, 16102, 2523], - [0, 23791, 1676], - [0, 5245, 5087, 4874, 1151, 1192, 4468, 91, 2658, 2190], - [0, 27, 2658, 6652, 4575], - [1, 2343, 16104], - [0, 16105, 16106, 16118, 2537], - [0, 10406, 1676, 2659, 2743, 2747, 3170], - [ - 0, 192, 5467, 442, 5245, 5601, 6494, 19386, 5087, 8778, 4874, 9240, 9241, 1364, 1177, 1895, 1955, 2026, 2182, - 2203, 2675, 1192, 2990, 23800, 3445, 5561, 20085, 1894, 4342, 4468, 91, 4523, 4729 - ], - "es2015-tag", - "es6-tag", - "heredoc", - "indents", - "literal", - "multiline", - "oneline", - "single", - "singleline", - "strings", - "tagged", - [0, 17179, 2658, 2663, 27, 2671, 1544, 2026, 2078, 23802, 23803, 1387, 2323, 2256, 4699, 4729, 1594], - [1, 2343, 16120], - [0, 16121, 16122, 16124, 2537], - [0, 2591, 3171, 1437, 23808, 23809, 3456, 3183, 4566, 1304, 2659, 3560, 23811, 2623], - [0, 23813, 4384, 1177, 2026, 705, 23816], - "observe", - [0, 200, 1523, 2947, 27, 2671, 2665, 23818, 36], - [1, 2343, 16126], - [0, 0, 16127, 16129, 2537], - [ - 0, 4493, 2675, 2899, 1177, 4170, 4474, 1894, 442, 1529, 91, 4874, 2990, 19193, 6503, 16954, 192, 4257, 19335, - 4523, 1951, 1895, 1955, 5467 - ], - "on-headers", - [0, 27, 1544, 4967, 6622, 2026], - "compressible", - [1, 2343, 16132], - [0, 0, 16133, 16134, 4139], - [0, 4864, 5087, 23829, 1009, 1011, 1177, 1883, 1938, 2151, 1192, 3117, 4468, 4473, 4474, 91], - [0, 202, 27, 18413, 23831, 23832, 6622, 5281], - [1, 2343, 16137], - "buffer-from", - [0, 0, 0, 16138, 2537], - [0, 2671, 23837], - [1, 2343, 16140], - [0, 16143, 16147, 16153, 2537], - "-command", - [2, 1614, 16141], - [0, 1676, 23791], - "@hirez_io/observer-spy", - "@swc/jest", - [3, 7749, 12], - [0, 1192, 2658, 4468, 2190, 91, 5087, 4874, 1154, 5245, 1151, 23843], - "-quote", - [2, 16146, 16148], - [2, 1596, 4845], - "ctrlc-wrapper", - [2, 32524, 2994], - [0, 2671, 2658, 6652, 4575], - "instance", - [1, 2343, 16156], - [0, 0, 0, 16157, 2399], - [0, 3358, 582, 3697], - [1, 2343, 16161], - "bash", - "sh", - [0, 16162, 9264, 16163, 2443], - [0, 16136, 15019, 4431], - [0, 3101, 27, 4714, 705, 3038, 3689, 10074, 6865, 6704, 21360], - [1, 2343, 16165], - [0, 0, 16169, 16170, 2523], - "cson", - "hjson", - "x2js", - [0, 6061, 21120, 6063, 1570, 1177, 1895, 23860, 1894, 4042, 4131, 4389], - [0, 23862, 590, 1623, 1420], - "fig", - "node-config", - [1, 2343, 16175], - "config-node", - [0, 0, 10435, 16176, 2523], - [0, 23868, 23869, 23870, 4545, 23872, 23874, 23875, 23876, 3547, 23877, 23878, 23879, 23881, 23883], - [1, 2343, 16178], - [0, 16180, 16182, 16183, 2537], - "atom", - [0, 23888, 1676, 23891, 23894, 23897, 3257], - "atomically", - [ - 0, 1149, 1575, 1177, 1895, 1903, 1938, 1954, 1955, 1958, 1970, 2026, 2675, 2990, 2899, 3421, 1894, 4170, 4193, - 4745, 4342 - ], - [0, 1283, 2679, 6728], - "xdg-basedir", - [1, 2343, 16187], - "prefer", - [0, 6263, 16190, 16191, 2523], - "preferences", - "persist", - [ - 0, 27386, 53, 5749, 5241, 83, 85, 87, 90, 94, 5583, 811, 816, 10615, 4874, 1009, 1011, 7677, 1290, 1596, 1597, - 1177, 1881, 1895, 1915, 1938, 23909, 2675, 23913, 23915, 23917, 23921, 23926, 2990, 1894, 4039, 4042, 4193, 91, - 1984 - ], - [0, 2681, 23932, 2679, 8930, 23933, 6728, 23934, 23936], - [1, 2343, 16193], - [0, 0, 16194, 16195, 2537], - [0, 442, 10817, 6061, 6063, 1009, 1011, 1177, 1895, 1955, 2203, 1894, 4042, 4057, 4131, 91], - [0, 2681, 23942, 5995, 1932], - "rack", - [1, 2343, 16198], - [0, 16199, 16200, 16201, 2537], - [0, 23948], - [0, 3421, 1149, 23950, 8431, 2899, 23952, 1177, 4135, 705, 27387, 91, 4874, 2024, 29197, 5517, 19344, 7844], - [0, 8431, 6270, 8426, 8425], - "flash", - [1, 2343, 16204], - [0, 16205, 16206, 16207, 2523], - [0, 23960], - [0, 1175, 1193, 1267, 1272, 1596, 1177, 1881, 1938, 2774], - [0, 2658, 23964, 13445, 1192, 3212], - [1, 2343, 16209], - [0, 0, 16210, 16212, 2537], - [0, 48, 53, 87, 1009, 1676, 1177, 23971, 1938, 3188, 23974, 4039, 23975, 4384, 4449, 4474, 91], - "kruptein", - [0, 2687, 23977, 16774, 3410, 3624, 10057, 7131, 6961, 1108, 21541, 2070, 23980, 23982], - [1, 2343, 16214], - [0, 0, 16215, 16216, 2487], - [0, 1414, 2070, 4493, 4474, 4508, 91, 4865, 4874, 11976], - [ - 0, 158, 4202, 23989, 23992, 4289, 18081, 12350, 20650, 20733, 20639, 20709, 23993, 20651, 20680, 21881, 20752, - 18048, 20653, 8221, 23994, 23995, 12349 - ], - [1, 2343, 16218], - [0, 16219, 16220, 16221, 2523], - [0, 24003, 18525, 4207, 2205, 24004, 2096, 6639, 29721, 20624, 22246], - [0, 1906, 1166, 1700, 4400, 18051, 24006, 18047], - [0, 3178, 15215, 158, 11806, 21881, 20637, 18048, 20639, 8221], - [1, 2343, 16223], - [0, 16224, 16225, 16226, 2523], - [0, 24003, 2020, 24012, 6639, 24013, 20624], - [0, 1414, 1906, 1166, 91, 4874], - [0, 15215, 158, 24016, 3178, 6707, 18048, 24017], - [1, 2343, 16228], - [0, 16229, 0, 16236, 2399], - [0, 24022, 3923], - "defu", - "nicode-supported", - [2, 16083, 16231], - "sentence", - "sentencer", - "sisteransi", - [0, 2695, 18641, 1823, 24024, 5576], - "reporter", - "elegant", - "clack", - "stacktrace", - [1, 2343, 16242], - [0, 0, 16243, 16244, 34352], - [ - 0, 53, 4874, 7677, 1596, 24029, 24030, 2126, 2675, 2700, 24032, 1209, 3028, 1894, 3720, 3875, 4039, 24033, 4131, - 4493, 33863, 91, 1983, 1984 - ], - [0, 2700, 24036, 24038], - "arc-templates", - "brac", - "ket-template", - [2, 16246, 16247], - "dust", - "js-helpers", - [2, 16249, 16250], - "dustjs-", - [1, 2343, 16254], - [0, 0, 16258, 16266, 4139], - "linkedin", - [2, 16252, 16255], - "eco", - [0, 24045, 5087, 1596, 1192, 4039, 4468, 4487, 91], - "haml-coffee", - "hamlet", - "htmling", - "jazz", - "jqtpl", - "just", - "liquid-node", - [0, 24047], - "liquor", - "mote", - "plates", - "qejs", - "ractive", - "slm", - [2, 4371, 2229], - "teacup", - "tinyliquid", - "toffee", - "twig", - "twing", - "vash", - "velocityjs", - "walrus", - "whiskers", - [1, 2343, 16285], - "engine", - [0, 0, 0, 16286, 2537], - [0, 2700, 7007, 7189, 2382, 6957, 6564, 6910, 7282, 6769, 6917], - [1, 2343, 16288], - [0, 9670, 16289, 16291, 2523], - [0, 1166, 2592, 4481, 1906], - "rfc6266", - [0, 3209, 2325, 15759, 15760, 1237, 2145, 24057], - [1, 2343, 16293], - [0, 16294, 16295, 16297, 2487], - [0, 3537, 13780], - [0, 1166, 16499, 1700, 2020, 1906], - "rfc7231", - [0, 1204, 2703, 3209, 814, 2202, 15525, 16186, 200], - [1, 2343, 16299], - [0, 16300, 16301, 16302, 2523], - [0, 24069, 24073, 24075, 24077, 24078, 24080, 24081], - [0, 4874, 9241, 1177, 24085, 1894, 91], - [ - 0, 13527, 36, 24088, 24089, 1965, 20986, 24090, 5592, 17829, 24091, 11100, 24092, 4030, 7096, 5122, 5130, 38, - 7433, 24093, 7223, 6599, 27, 2671, 4699, 14609, 24095, 1896, 5995, 12660 - ], - [1, 2343, 16304], - [0, 0, 8134, 16305, 2399], - [0, 8958, 1871, 2966, 14903, 3924, 2585, 1794, 7067], - [3, 1567, 23], - [2, 16306, 1098], - [3, 1570, 25], - "@conventional-changelog/git-client", - [2, 16308, 23], - [2, 16306, 1177], - [1, 2343, 16313], - [0, 16314, 16315, 16317, 4139], - [0, 23184, 1366, 23187, 2607, 2812, 3084], - [0, 1501, 2556, 620], - "tom", - [0, 2090, 7204, 1852, 2556, 1932], - [1, 2343, 16319], - [0, 16320, 16324, 16325, 2487], - [0, 1639, 24114, 6330], - [2, 10832, 1194], - [2, 16306, 16321], - [2, 4402, 4202], - [0, 24118, 24117], - [0, 2711, 6681, 5130, 10772, 24120, 1936, 24122, 36, 965, 1388, 4042, 23361], - [1, 2343, 16327], - [0, 0, 16328, 16331, 2537], - [0, 91, 1984], - "add-stream", - "tempfile", - [0, 2712, 24128, 24129, 3547, 23877, 23870, 4545, 24130, 10915, 23872, 23878, 23874, 23879, 23881, 23883, 23875], - [1, 2343, 16333], - [0, 0, 11686, 16334, 2399], - [0, 24136, 1227, 24137, 24138, 24140, 2713, 1388, 1389], - [1, 2343, 16336], - [0, 0, 6538, 2514, 2523], - "compare-func", - [1, 2343, 16339], - [0, 16343, 16344, 16345, 2523], - "commits.org", - [2, 16094, 16340], - "preset", - [ - 0, 24151, 1107, 1110, 24152, 1437, 1471, 1477, 1486, 13763, 16485, 2709, 20044, 24153, 14676, 4116, 4174, 4208, - 13781, 4290, 16323, 4507, 9731, 4726, 4729, 24154 - ], - [ - 0, 15288, 13789, 826, 24156, 4874, 4880, 24157, 34148, 24162, 6513, 24164, 9241, 24165, 1166, 1371, 1702, 24166, - 1959, 1961, 3242, 3339, 3479, 1894, 89, 24169, 4193, 4294, 4474, 91, 1906 - ], - [0, 89, 200, 1219, 8634, 4963, 6876, 3698, 3875, 24171, 8924, 1512, 2585], - [1, 2343, 16350], - "inline-s", - [3, 5588, 9], - [2, 16347, 16348], - [0, 0, 16351, 16352, 2443], - [ - 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 1623, 1177, 1955, 10964, 2203, 2675, 1192, 2990, 3400, 1894, - 23535, 4042 - ], - [0, 2718, 24177, 590, 57, 1623], - [1, 2343, 16354], - [0, 0, 0, 16355, 2487], - [0, 24182, 24183, 18496, 6574, 7242, 21779, 202, 200], - "top-sites", - [1, 2343, 16359], - "cookies", - [0, 16360, 16361, 6151, 2537], - [0, 31874, 546, 8998, 8605, 8612, 24188, 4094], - [0, 8608, 91], - [1, 2343, 16363], - [0, 16364, 16365, 16366, 2443], - [0, 1107, 2089, 3527, 24188, 4094], - [0, 2126, 2163, 2720], - [ - 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 1836, 6847, 8625, 2720, 8626, 8628, 5284, 4403, 202, 6710, 3741, - 8630, 3742, 8631, 3925, 2184, 8634, 7009, 6621, 181, 8635, 4758, 8636 - ], - [1, 2343, 16368], - [0, 16369, 0, 16370, 4139], - [0, 24202, 1512], - [0, 24204, 202, 9143, 13392], - [1, 2343, 16372], - [0, 0, 16373, 16374, 2487], - [0, 1734, 2899, 24209, 4072], - [0, 5260, 3209, 10906, 24211, 1388, 24213, 1808, 1161], - "sign", - "unsign", - [1, 2343, 16378], - [0, 0, 16379, 16380, 4139], - [0, 1177, 1889, 1954, 2022, 2822, 2899, 3421, 20314, 3932, 3985, 24220, 4167], - [0, 1507, 24223, 1509, 3595, 5194, 676, 1781, 2856, 1219, 89, 24224, 4452, 4799, 91, 6523, 4745, 17307], - "-selection", - [2, 15813, 16381], - [1, 2343, 16386], - "@brettz9/node-static", - "-standa", - [0, 0, 16390, 16391, 4139], - "lone-jar", - [2, 16385, 16387], - [2, 13131, 16388], - [ - 0, 1149, 1173, 1178, 1240, 24231, 24234, 1245, 1257, 1267, 24235, 1280, 24237, 24241, 24245, 24247, 24249, - 24251, 24254, 24257, 24259, 24262, 24264, 24266, 24269, 24272, 1474, 1498, 1177, 24273, 2099, 2070, 2228, 2240, - 2247, 2258, 24274, 24275, 2272, 3188, 3435, 4039, 4042, 4045, 4055, 24278, 13674, 4069, 4077, 22031, 4151, 4652 - ], - [0, 2728, 2679, 23932, 24282, 6422], - [1, 2343, 16393], - [0, 0, 16394, 16395, 2537], - [ - 0, 19, 21, 24, 26, 32, 5241, 92, 8648, 840, 968, 974, 4874, 4880, 4883, 1009, 1011, 11016, 33975, 1198, 1622, - 668, 1177, 1915, 1938, 1939, 1959, 1961, 2075, 24289, 10697, 24291, 2228, 2239, 2240, 2247, 2256, 2263, 2283, - 24295, 2308, 2314, 2665, 1192, 2780, 2814, 3003, 3541, 1894, 10622, 89, 3824, 2278, 4164, 3709, 4436, 4474, 91, - 1983, 26744, 188, 13151, 4769 - ], - [ - 0, 24298, 24299, 24302, 7285, 7310, 5131, 6847, 7210, 5399, 5284, 1932, 1623, 1936, 7020, 6983, 89, 188, 1098, - 3709, 4627, 91 - ], - [2, 4865, 2199], - "rmalize-path", - [2, 10409, 16397], - "rialize-javascript", - [2, 5252, 16399], - "@webpack-c", - "ontr", - "ib/eslint-config-webpack", - [2, 16402, 16403], - [2, 16401, 16404], - [1, 2343, 16408], - "is-gzip", - [0, 16409, 16411, 16412, 2523], - [0, 3082], - "transfer", - [0, 1389, 2126, 4384], - [0, 1973, 2731], - [1, 2343, 16414], - [0, 16416, 16417, 16418, 2487], - "noms", - [0, 16579, 16585, 23711], - [0, 4874, 7677, 1177, 1894, 3951, 4039, 4042, 4469, 4484, 91, 1984], - [0, 14428, 24316, 14416, 24319, 24320, 5284, 202, 91], - [1, 2343, 16420], - [0, 16422, 16426, 16427, 2523], - "qr", - [ - 0, 4390, 1687, 24346, 3445, 3348, 1437, 1676, 4484, 1209, 4135, 4238, 6331, 4431, 24347, 4339, 24345, 24332, - 24337, 22651, 24349, 24335, 24340, 24327, 24338, 24339, 24344, 24343, 24329 - ], - "simple qr", - "npm qr JavaScript", - "js qr code", - [ - 0, 1192, 4039, 4487, 4468, 2774, 13214, 4227, 91, 17577, 5087, 4874, 24354, 7819, 2990, 5245, 4870, 5254, 24358, - 24356, 18435, 24360, 24352 - ], - [0, 2733, 24362, 24363, 5131, 1896, 24364, 1591, 970, 3525], - [1, 2343, 16429], - [0, 16433, 16434, 16436, 2523], - [3, 1590, 15], - "sample", - [2, 16430, 16431], - [0, 8641], - [0, 8648, 4864, 5087, 4874, 24370, 2151, 1192, 2774, 27442, 3401, 1894, 3758, 4039, 4135, 4146, 4361, 4494, 91], - [2, 16423, 1501], - [0, 24373, 2733, 1017, 8221, 5131, 20523, 4627, 24374, 5027, 12295], - [1, 2343, 16438], - [0, 16439, 16440, 16441, 2537], - [0, 24379, 24382, 1676, 24383, 3032, 24386, 24389, 24391, 24393], - [ - 0, 24397, 6061, 16607, 6063, 4856, 9417, 5245, 24398, 24400, 6503, 4874, 24403, 6513, 1009, 1011, 1429, 1431, - 1177, 1895, 2899, 3421, 1894, 4131, 4153, 4193, 4474, 4481, 4508, 91, 3348 - ], - [0, 1552, 24093, 24406, 24408], - "insight", - "-lib", - "cordova-lib", - "cordova-", - [2, 16445, 10896], - "cordova-c", - "reate", - [2, 16447, 16448], - "loud-rejection", - [1, 2343, 16455], - "@cor", - "dova/eslint-config", - [2, 16452, 16453], - [0, 0, 16456, 2514, 4139], - [0, 2899, 1177], - [1, 2343, 16458], - [0, 16459, 16463, 2514, 2523], - [0, 24416, 8431, 24419], - "4", - "ES2024", - [2, 6796, 16460], - [0, 24421, 2080, 2292, 4389], - [1, 2343, 16465], - [0, 0, 16466, 16467, 2537], - [0, 1158, 3421, 4389, 1177, 14741, 2708, 4103, 13614, 15059], - [0, 614, 998, 1973], - [1, 2343, 16469], - [0, 16470, 16471, 9636, 34352], - [0, 1458], - [0, 1470, 4255], - [1, 2343, 16475], - "env-paths", - "parse-json", - [0, 16486, 16487, 16488, 2537], - "arse-", - "arse-json", - [2, 5088, 16477], - [3, 7677, 17], - [2, 16479, 2759], - "davidtheclark-node", - [2, 1884, 16481], - [3, 16481, 13], - [2, 3996, 16483], - "es-toolkit", - [0, 24437], - [0, 2398, 2899], - [0, 16159, 15643, 4354, 2978, 7256, 24440, 2070, 21543, 24441, 2741, 3529, 6421, 13017, 1108, 6920, 1871, 1973], - [1, 2343, 16490], - [0, 16493, 16494, 16495, 2443], - "lcov-parse", - "log-driver", - [0, 24446, 17450], - [0, 1166, 16499, 1700, 2020, 3093, 4481, 1906], - [0, 2202, 3383, 24449, 1237, 1161, 24450, 3378, 4749, 2741, 4354, 13735, 2703, 24451, 200, 20052, 17180], - [1, 2343, 16497], - [0, 0, 8134, 16498, 2487], - [0, 3048, 2741, 4354, 1973, 998, 19096, 24456, 7523, 2869], - "cpy", - [1, 2343, 16501], - [0, 0, 16505, 16506, 34352], - "cp", - [3, 12419, 11], - "contents", - [0, 1429, 1999, 2398, 2899, 3198, 4042], - [0, 4354, 2741, 24462, 2757, 5284, 24463, 20273, 3048, 19096, 998, 7031, 6692], - [1, 2343, 16508], - [0, 0, 16510, 16514, 2523], - "hpagent", - [0, 2899, 3954], - "http2-wrapper", - "seenreq", - "tslog", - [0, 1936, 24374, 24470, 11608], - "@types/got", - [1, 2343, 16519], - "spider", - "gzip", - [0, 0, 16520, 16521, 2523], - [0, 4874, 1166, 4400, 4481, 1906], - [0, 3101, 998, 7046, 7089, 7017, 6704, 353, 4354, 13735, 2741], - [1, 2343, 16525], - "crc16ccitt", - "crc16", - [0, 16527, 16529, 16535, 2523], - "crc16kermit", - [0, 24488], - "crc16modbus", - [0, 1166, 24491, 4481, 1906], - "crc16xmodem", - "crc1", - "crc24", - "crc81wire", - "crc8", - [0, 4354, 24493, 6574, 24494, 6667, 13735, 16159, 3729, 7201, 7009, 2741], - "crc8dvbs2", - "crcjam", - [1, 2343, 16539], - [0, 0, 9264, 16540, 2443], - [0, 1388, 2756, 4552], - [1, 2343, 16545], - "cipher-base", - "ripemd160", - "sha.js", - [0, 0, 16546, 16547, 2443], - [0, 1999, 2398, 2899, 4042], - [0, 4354, 2741, 24462, 2757, 24463, 20273, 24504, 970, 3048, 998, 7031, 6692], - [1, 2343, 16549], - [0, 16550, 16551, 2514, 2523], - [0, 3310, 4705], - [0, 1429, 2272, 24512, 2899, 3297], - [1, 2343, 16553], - [0, 16554, 16555, 16556, 2537], - [0, 2070, 3368, 3441, 1149, 4707, 23432, 3188, 2003, 2822, 814, 4720, 1875, 2036, 4351], - [0, 2272, 4039, 2276, 1596, 4019], - [0, 4504, 24520, 24521, 24525], - "async-t", - "-tree", - "raverse-tree", - [2, 16557, 16559], - "css-u", - "rl-parser", - [2, 16561, 16562], - "uri-to-", - [2, 16564, 1398], - [2, 14678, 16565], - [1, 2343, 16577], - "group-args", - "inline-", - [2, 16569, 1604], - "oust", - "penthouse", - [3, 3591, 15], - [3, 3611, 14], - "inliner", - [2, 16574, 16575], - [0, 16582, 11580, 16583, 2537], - "postcss-url", - "@inversifyjs/common", - "newline", - [2, 3370, 16580], - [0, 2152, 3348, 18545], - [0, 2760], - "stream-array", - [2, 23712, 29231], - [1, 2343, 16588], - "optimization", - [0, 16589, 16590, 16591, 2523], - [0, 1156, 1699, 1817, 24536, 3070, 3559, 4443, 24537], - [ - 0, 24539, 1173, 1175, 1191, 1195, 1201, 1220, 1230, 24541, 1245, 1255, 18571, 1264, 1279, 1282, 1429, 24542, - 1584, 1610, 1628, 1177, 1988, 2054, 2092, 2148, 2323, 2332, 2361, 2450, 2494, 2629, 2651, 2297, 2881, 2886, - 2900, 18260, 2921, 2923, 2925, 695, 2969, 21082, 2899, 4193, 4196, 4307, 4487, 91, 4537, 4027, 188, 4632, 24545, - 4634, 4639, 4640, 4645, 2924, 4681, 4689 - ], - [0, 2761, 188, 6284, 4627, 4963, 181, 5130], - [1, 2343, 16594], - "@fast", - [0, 16613, 6161, 16614, 2537], - "-check/jest", - [2, 16593, 16595], - "@insurgent/commitlint-config", - [3, 16597, 13], - "nvent", - "ional-changelog-preset", - [2, 16599, 16600], - [2, 16598, 16601], - [3, 6061, 19], - "ommit", - "-analyzer", - [2, 16604, 16605], - [2, 16603, 16606], - [2, 6062, 3378], - "-generator", - [2, 11155, 16609], - [2, 6019, 16610], - [2, 6062, 16611], - [0, 548], - [0, 7233, 57, 7058, 5675, 7210, 200, 1523, 3924, 1644, 7119], - "node cron", - [1, 2343, 16620], - "node-cron", - "schedule", - "cronjob", - [0, 16622, 16623, 2514, 2537], - "cron job", - [0, 24560, 1462, 1525, 24562, 24563, 3188, 24564, 4535, 24566, 5056], - [ - 0, 24570, 24571, 1596, 2026, 24574, 2034, 24576, 24577, 24581, 24584, 24587, 24591, 24592, 24593, 24594, 24596, - 24598, 24599, 3127, 3456, 24600, 4039, 24601, 24602 - ], - [1, 2343, 16625], - [0, 16627, 16628, 16632, 2523], - "tz", - [0, 1149, 24607, 3527], - [0, 442, 1177, 10751, 2203, 2899, 3760], - "timer", - "tab", - "crontab", - [0, 6147, 200, 7048, 24610], - [1, 2343, 16634], - [0, 16635, 16648, 16651, 2537], - [0, 24617], - "@prantlf/jsonlint", - "@prettier/plugin-xml", - "@stryker-mutator/core", - [3, 16638, 17], - [2, 3192, 8791], - [2, 16639, 16640], - [3, 15909, 16], - "ray-func", - [2, 16642, 16643], - [3, 13097, 17], - "unsanitized", - [2, 16645, 16646], - [ - 0, 5583, 816, 6373, 10615, 11301, 24621, 24624, 1462, 1610, 24625, 2675, 2814, 16830, 2990, 3170, 24627, 4042, - 8849, 20983 - ], - "metalint", - "yaml-lint", - [0, 24631, 158, 12083, 24633, 24634, 20634], - [1, 2343, 16653], - [0, 16654, 16655, 16659, 2487], - [0, 2070, 2766, 23576], - [0, 1177, 24287], - [2, 1601, 7179], - [3, 3606, 9], - [2, 16657, 2408], - [0, 1973, 5472, 2765, 6969, 5982], - "zoom", - "rotate", - "scale", - "cropper", - "cropper.js", - [1, 2343, 16667], - [2, 29236, 594], - [0, 0, 16668, 16659, 2523], - [0, 19181, 442, 1137, 24645, 1797, 1177, 1924, 2070, 2203, 2832, 1894, 2278], - [1, 2343, 16670], - [0, 16671, 0, 16672, 2523], - [0, 2164, 3188, 24653, 4019, 4545, 1509, 24652, 24651], - [0, 5472, 5982], - "ironment", - [2, 1610, 16673], - " variable", - [2, 6639, 16675], - [1, 2343, 16678], - [0, 16679, 0, 6183, 2537], - [0, 551, 554, 2704, 2774], - [1, 2343, 16681], - [0, 16682, 16683, 16684, 2487], - [0, 24665, 24666], - [0, 14671, 48, 53, 61, 87, 192, 22559, 1193, 24668, 1596, 2675, 1192, 1894], - [0, 3212, 1192, 11944, 1795, 1424, 1973, 2275], - [1, 2343, 16686], - [0, 16689, 16695, 6183, 2487], - "path-key", - [2, 6987, 16141], - [0, 551, 8762, 554, 1437, 29680, 2704, 8734, 2798, 8747, 4747], - [3, 10688, 14], - "oxy", - [2, 16690, 16691], - [3, 15793, 15], - [2, 16693, 16691], - [0, 4892], - "spawnSync", - [2, 1611, 12344], - [1, 2343, 16700], - "path-ext", - [0, 16702, 16703, 2514, 2487], - "execute", - [0, 16729, 13002, 1437, 3717], - [0, 8776], - [1, 2343, 16705], - [0, 16706, 16703, 2514, 2523], - [0, 24690, 16738, 13204, 4874, 2832], - [1, 2343, 16708], - [0, 16714, 16715, 2514, 2537], - "cipher", - [2, 13888, 16709], - [3, 1391, 12], - "ign", - [2, 16711, 16712], - [0, 24690, 24694, 554, 11944, 2798, 2832], - [0, 5087, 13204, 4874, 2675, 1192, 3188, 1894, 3720, 4039, 4468, 91], - "create-ecdh", - [1, 2343, 16727], - "mac", - "create-hmac", - "ie-hellman", - [2, 1687, 16720], - "pbkdf2", - "publi", - "c-encrypt", - [2, 16723, 16724], - "randomfill", - [0, 16730, 16731, 2514, 34352], - [2, 6426, 3779], - "@jest/diff-sequences", - [0, 24690, 24694, 554, 4874, 11944, 2798, 8747], - [0, 8776, 1497], - [1, 2343, 16752], - "Hash", - "MD5", - "SHA1", - "SHA-1", - "SHA256", - [2, 24690, 20072], - "SHA-256", - "RC4", - "Rabbit", - "AES", - "DES", - "PBKDF2", - "HMAC", - "OFB", - "CFB", - "CTR", - "CBC", - "Base64", - "Base64url", - [0, 16753, 16754, 16755, 2523], - [0, 2777], - [ - 0, 107, 19438, 19181, 442, 20076, 5087, 1009, 1011, 1177, 1895, 1915, 1938, 1939, 1955, 2203, 2675, 1192, 24713, - 2802, 2990, 1894, 4468, 12206, 91 - ], - [0, 1192, 24715, 2051, 24717, 1973, 5472, 5710], - [1, 2343, 16760], - "roupon", - [2, 1887, 16757], - "nlm", - [0, 16761, 16762, 16763, 2537], - [0, 2151, 3445], - [ - 0, 53, 24723, 841, 968, 972, 974, 24725, 5087, 24727, 4874, 24729, 4880, 4883, 14552, 1114, 1193, 1195, 1216, - 1270, 1324, 1393, 1420, 1426, 1582, 1628, 1630, 1652, 1759, 1763, 1869, 1177, 1898, 24732, 2054, 2092, 2151, - 2651, 2686, 1192, 2797, 2802, 24733, 3177, 3376, 3561, 3605, 3618, 3647, 3672, 3742, 24734, 89, 3803, 3816, - 3824, 3878, 24737, 814, 4028, 2278, 4111, 4135, 4230, 4307, 4383, 4409, 91, 4027, 24739, 2924, 4676, 4681, 4686, - 4723 - ], - [0, 1192, 1936, 16237, 11937, 1932], - [1, 2343, 16776], - "@cspell/cspell-json-reporter", - [3, 16765, 15], - [2, 16766, 7170], - [2, 16766, 553], - "@cspell/", - [2, 16769, 15126], - "@cspell/url", - [2, 1622, 4304], - "cspell-", - "gitignore", - [2, 16773, 16774], - [0, 16777, 16784, 2514, 2537], - [0, 3188, 4294, 3348, 6523], - "cspell-glob", - "cspell-io", - "cspell-lib", - [2, 2068, 2851], - "entry-cache", - [2, 2093, 16782], - [0, 1192, 24746, 4207], - "@types/fi", - "le-entry-cache", - [2, 16785, 16786], - [1, 2343, 16795], - "spell", - "checker", - "spelling", - " checker", - "spell checker", - [2, 16791, 16792], - [0, 0, 0, 16796, 2523], - [0, 1192, 4749, 24753, 24754], - [1, 2343, 16798], - [0, 16800, 16801, 2514, 2487], - [2, 4229, 814], - [0, 1437, 2215, 8750, 2796, 2798, 8747, 4207, 12578], - [0, 8780, 1002], - [1, 2343, 16803], - [0, 16809, 16810, 2514, 4139], - "@rspack/cli", - "@mdn/browser-compat-data", - [3, 1200, 15], - [2, 16806, 6437], - [2, 812, 16807], - [0, 554, 4874, 1437, 1458, 2215, 3530], - [0, 8780, 20374, 1209], - "sorter", - [1, 2343, 16813], - [0, 16814, 16815, 2514, 2523], - [0, 1107, 1437, 8758, 8741, 4207, 15826, 4294], - [ - 0, 48, 53, 87, 92, 442, 11893, 554, 6061, 6063, 4874, 1193, 17217, 1610, 1177, 1895, 1915, 32525, 1939, 1955, - 2203, 1192, 24713, 1894, 4039, 4131, 4135, 91, 4523 - ], - [1, 2343, 16829], - "-verify", - [2, 13729, 16817], - [3, 4828, 15], - "itpick", - [2, 16819, 16820], - [3, 15801, 21], - "hangelog", - [2, 16822, 16823], - [2, 8184, 8166], - "version-", - [2, 16826, 13729], - "write-", - [0, 16832, 16833, 2514, 2487], - "json-file", - [2, 16828, 16830], - [0, 4874, 23247, 2798, 3159, 4351], - [0, 53, 24781, 9746, 23262, 2188, 24779, 24777], - [1, 2343, 16835], - [0, 16836, 16844, 16845, 2537], - [ - 0, 18635, 24786, 27788, 27793, 27795, 27796, 27797, 27802, 27813, 27817, 27820, 27825, 27832, 27833, 27834, - 27841, 27844, 27870, 27878, 27879, 27880, 27881, 27883, 27884, 27887, 24789, 27888 - ], - "icss-utils", - [3, 3638, 16], - [2, 2055, 5651], - [2, 16838, 16839], - [2, 16838, 1993], - [2, 16838, 6693], - "@hapi/address", - [ - 0, 27890, 27893, 27895, 24793, 8862, 811, 15460, 816, 10615, 17214, 1177, 27898, 3502, 4042, 4057, 15277, 23652, - 4483, 91, 27900, 1984 - ], - [0, 158, 24795, 24799, 18048, 20637, 21881, 20650, 24800, 16662, 12712], - [1, 2343, 16847], - [0, 0, 16848, 2514, 2487], - [ - 0, 53, 5652, 5226, 56, 15659, 71, 5704, 5712, 4851, 5785, 5874, 5889, 92, 5230, 101, 104, 16804, 33146, 10879, - 10883, 15693, 24807, 31666, 4874, 7677, 1082, 24813, 1446, 1541, 1556, 16230, 14856, 1874, 1177, 1905, 2007, - 984, 2071, 2744, 3171, 3189, 3222, 15726, 3510, 15450, 3698, 28423, 1894, 89, 3824, 3951, 15728, 15452, 4409, - 26379, 4469, 91, 1984, 188, 20040, 4763 - ], - [1, 2343, 16859], - "@parcel/css", - "@swc/css", - [3, 9740, 13], - [2, 16852, 1623], - "@types/csso", - "set-simple", - [2, 11327, 16855], - [2, 1637, 16856], - "csso", - [0, 0, 0, 16861, 2487], - "lightningcss", - [0, 6105, 24822, 24827, 6106, 24829, 24830, 1936, 2585, 6038, 24832, 5284, 91, 24833, 2808], - "minimize", - [3, 1629, 9], - [1, 2343, 16865], - [0, 16866, 16867, 16869, 2537], - [0, 2808], - [ - 0, 19438, 23339, 842, 966, 972, 974, 4880, 4883, 1009, 1011, 1610, 1628, 1177, 1895, 1955, 1959, 1961, 1985, - 2651, 2832, 1894, 89, 3824, 4068, 4307, 7873, 4474, 4493, 91, 1984, 2924, 4677, 4681 - ], - "boolbase", - [0, 89, 2808, 1936, 2585, 6038, 24842, 24829, 24830, 24843], - "nth-check", - [1, 2343, 16878], - [3, 7804, 9], - "olbase", - [2, 16872, 16873], - "cheerio-s", - "oupselect", - [2, 16875, 16876], - [0, 16880, 16881, 16882, 2537], - "sizzle", - [0, 1437, 24854, 24849, 24848, 4145, 6271, 3029, 3028, 24853], - [0, 3421, 1149, 2228, 4193, 3460, 1596, 2240, 15929, 2293, 1532, 24857, 2283, 2273, 2277], - [ - 0, 24859, 24860, 24861, 24862, 24863, 24864, 24867, 24868, 24869, 24872, 24873, 24874, 24875, 24876, 24877, - 24878, 24879, 24880, 24881, 24882, 24883, 24884, 24885, 24888, 24890, 24892, 24893, 24894, 24895, 24854, 24896, - 24897, 24898, 24899, 24902, 24904, 24905, 24906, 24907, 24908, 24909, 24912, 24915, 24917, 24920, 24922, 24924, - 24927, 24928, 24929, 24930, 24931, 24932, 24933, 24934, 24935, 24938, 24940, 24942, 24943, 24944, 24945, 24945, - 24946, 24947, 24948, 24949, 24950, 24951, 24952, 24953, 24955, 24956, 24959, 24960, 24961, 24962, 24963, 24966, - 24967, 24968, 24969, 24970, 24972, 24973, 24974, 24975, 24976, 24977, 24978, 12047, 24979, 24980, 24981, 24983, - 24985, 24986, 24988, 24991, 24992, 24993, 24994, 24995, 24995, 24997, 25000, 25001, 25002, 4040, 25003, 25004, - 4144, 4145, 25006, 25007, 25008, 25009, 25012, 25014, 25010, 25015, 25019, 25020, 25021, 25022, 25023, 25024, - 25025, 25026, 25027, 25028, 25029, 25030, 25033 - ], - [1, 2343, 16884], - [0, 16886, 16887, 16888, 2537], - "clap", - [0, 16843, 25038, 8335, 25039, 25040, 8353, 26364], - [0, 21662, 8357, 5500, 8359, 4874, 91], - [0, 2844, 7020], - "json-to-ast", - [1, 2343, 16893], - "walker", - "lexer", - [0, 0, 0, 16895, 2523], - "jquery-test-runner", - [0, 89, 6649, 10057, 6355, 25054, 1542], - [1, 2343, 16899], - "features", - "web-features", - [0, 0, 0, 16901, 2399], - "stages", - [0, 2814, 5284, 1388, 6082], - [1, 2343, 16903], - [0, 16904, 16905, 2514, 2537], - [0, 2814], - [0, 2228, 4039, 2203, 842, 25088, 25063, 2291, 25090, 3006, 25070, 25074, 16894, 25076, 2253, 2260, 23178], - [3, 7014, 10], - [1, 2343, 16908], - [0, 0, 16909, 16910, 2443], - [0, 4874, 2899, 91], - [0, 14357, 17180], - [3, 16857, 15], - [2, 16911, 10441], - [1, 2343, 16917], - "advanced", - [2, 16911, 16914], - [2, 16911, 2994], - [0, 16920, 16921, 16922, 2537], - "optimise", - [2, 5505, 5218], - [0, 25106, 18420, 2070, 2821, 3368], - [0, 1109, 1317, 1505, 2814, 2272, 3183, 2899, 3257, 4019, 4146, 4294, 2924, 4677], - [0, 14438, 24856, 25109], - "@jscpd/badge-reporter", - [1, 2343, 16925], - [0, 0, 16926, 16927, 2537], - [ - 0, 10615, 1177, 1903, 1937, 1948, 2228, 25074, 2256, 2277, 23165, 2283, 17565, 25060, 1894, 2907, 3980, 4042, - 11802, 4060, 4255 - ], - [0, 977, 16358, 1388, 5808, 10906, 5576, 2821, 1389], - [2, 27440, 27441], - [1, 2343, 16930], - [0, 16939, 16940, 16941, 4139], - [3, 4856, 9], - "okidar", - [2, 16931, 16932], - [2, 7632, 16558], - [3, 12842, 11], - [2, 16935, 4467], - "urndown", - [2, 7750, 16937], - [0, 1139], - [0, 3421, 1111, 2899, 1177, 4042, 4167, 2193, 1317, 1505, 2064, 4073, 811, 816, 19232], - [0, 4745, 57, 1753, 6713], - [1, 2343, 16943], - [0, 16945, 16946, 16947, 2399], - "csrf", - [0, 58, 12184, 1525, 1676, 1696, 2070, 25125, 27534, 1997, 25126], - [ - 0, 442, 8719, 842, 8712, 16145, 4874, 1527, 1567, 1652, 1177, 1895, 1939, 1955, 1192, 2829, 22509, 22511, 1894, - 4039, 91, 4523 - ], - [0, 25135, 1745], - [1, 2343, 16949], - [0, 16951, 16955, 2514, 2537], - "@acemir/cssom", - [0, 1512, 1525, 2151, 25141, 16923, 25147, 25144, 25148, 25142, 25146], - [2, 812, 1177], - "ould", - [2, 7747, 16953], - [0, 5536, 4864, 4874, 7677, 3363, 4474, 4493, 91, 1984], - "tsv", - "generation", - [1, 2343, 16959], - [0, 16960, 16961, 16962, 2487], - [ - 0, 1437, 1481, 1525, 25154, 2004, 2021, 2070, 2654, 2822, 25156, 25160, 15555, 1209, 3181, 12118, 15371, 3741, - 25162, 814, 4296, 4300, 25163, 25164, 21956, 25165, 4736 - ], - [0, 1429, 1596, 6474, 2272, 2899, 3954, 4037, 4193, 4196, 25168, 25170, 4734], - [0, 19271, 4525, 671, 9654, 25172, 2649], - [1, 2343, 16965], - "@bramus/specificity", - [0, 16967, 16968, 16969, 2537], - "coffeelint", - [0, 58, 25177, 7639, 1362, 25178, 1874, 25179, 21226, 3105, 3107, 3127, 3188, 25181, 4300, 4545], - [0, 1091, 2323, 2384, 2449, 3421], - [0, 1745, 5284], - [1, 2343, 16972], - "csv-spectrum", - [0, 16973, 0, 16974, 2537], - [0, 16053, 17786, 25190, 17788, 1776, 25193, 17798], - [0, 1776, 5592, 13325, 8626, 5284, 1745], - [1, 2343, 16976], - [0, 16977, 0, 16978, 2523], - [0, 16053, 1519, 1522, 25203, 1727, 2826, 4783, 17798], - [0, 1776, 1783, 5592, 1179, 5284, 676, 1745], - [1, 2343, 16980], - [0, 16981, 16982, 16983, 2523], - [ - 0, 16950, 16928, 16964, 15956, 1638, 25211, 25212, 2623, 2661, 2674, 2750, 3493, 25213, 25215, 4454, 4548, - 25216, 23201, 15502, 25217, 19851 - ], - [0, 23591, 1177, 1937, 1953, 2203, 2822, 3181, 2899, 25221, 3401, 3456, 3549, 4135, 4153, 4441, 27602, 25224], - [0, 965, 1936, 7102, 12616], - "csv parser", - [1, 2343, 16987], - "parse csv", - [0, 16988, 16992, 16983, 2523], - [0, 25231, 25232, 1638, 2654, 25233, 3493, 705, 19851, 4738], - "csv to json", - "csv convert", - "tojson", - [0, 1389, 1512, 2665, 2272, 16112, 2276, 3560, 3760, 25238, 4652], - " csv to json", - [2, 6270, 16993], - "csv-json", - [1, 2343, 16997], - [0, 0, 16998, 16999, 2537], - [0, 1596, 2228, 2240, 14352, 2759, 2899, 3954, 4019, 25244], - [0, 1398, 1867, 5284, 1781, 3053, 3065, 1871, 1646, 4990], - [2, 1649, 6451], - "cucumber-", - [2, 17001, 6466], - "duration", - [1, 2343, 17005], - [0, 17012, 17014, 2514, 4139], - "enerator", - "is-generator", - [3, 4143, 10], - [2, 17008, 1851], - "stack-chain", - [2, 16240, 1592], - [0, 200, 15014, 2021, 2654, 1209, 3181, 4300], - "ansi-html", - [0, 1149, 1389, 1566, 13985, 1596, 2759, 2292, 3211, 2276, 3758, 3954, 25251, 4193, 15136, 25253, 25256], - [1, 2343, 17016], - [0, 17017, 17022, 17024, 2523], - [0, 1437, 3074, 3545, 15826, 4425, 22972], - [3, 1976, 18], - [2, 17018, 4414], - "riteway", - "updtr", - [0, 2272], - "unique", - [0, 2272, 16237, 4525, 1671, 671, 2649, 25264, 16238, 3721], - "unique id", - [1, 2343, 17027], - [0, 17028, 17029, 17030, 2537], - [0, 25269, 25272], - [0, 6503, 4874, 1009, 1011, 1177, 1886, 1938, 2899, 3421, 4474, 91], - [0, 1781, 17420, 1641, 15253, 6813, 25276, 25277, 1644, 57, 2841, 25279, 200], - "ospath", - [1, 2343, 17033], - [0, 0, 17035, 2514, 4139], - "lazy-ass", - [0, 4257], - "blob-util", - [3, 8129, 9], - [1, 2343, 17043], - "@cypress/xvfb", - "zzle", - [2, 6545, 17040], - [2, 17037, 705], - [0, 0, 0, 17048, 34352], - "more-types", - [2, 14614, 17044], - [3, 4008, 11], - [2, 17046, 6509], - [0, 1781, 2844], - "cypress.io", - "mocks", - "spies", - "stubs", - [1, 2343, 17054], - [0, 17055, 17056, 17060, 2537], - [0, 975, 983, 15951, 1437, 1457, 8098, 7614, 2712, 2856, 3083, 25292, 4200, 25294], - [0, 4874, 1540, 2182, 2675, 33479, 30889, 4400, 4507, 91], - [3, 13848, 19], - [2, 17057, 3172], - "longest", - [0, 6671, 36, 21147, 8173, 8172, 25094, 3212, 8788, 1973, 5472, 4030, 2382, 28726], - [1, 2343, 17062], - [0, 17063, 17064, 17065, 2399], - [0, 1417, 7272, 2756, 17827, 3433], - [0, 5517, 13614, 23237, 10979, 27571, 27016, 19325, 1159, 9254, 1177, 2708, 3410, 4103, 4389], - [0, 1781, 1646, 7185, 3428, 6333, 7077], - [1, 2343, 17069], - "d3-axis", - "d3-brush", - [0, 0, 0, 17070, 2523], - [0, 1781, 1646, 7045, 6953], - "d3-chord", - [1, 2343, 17073], - [0, 0, 17076, 17077, 2443], - "d3-contour", - "d3-delaunay", - [0, 1593, 1177, 1903, 1938, 1954, 1958, 1970, 3400, 3954, 4042, 4048, 4055, 4067, 4073, 4193, 4384, 25313], - [0, 1781, 2856, 1925, 6778, 5286], - "d3-dispatch", - [1, 2343, 17084], - "d3-drag", - "d3-dsv", - "d3-ease", - "d3-fetch", - [0, 0, 17085, 2514, 2537], - [0, 2899, 1177, 4039, 91, 4874, 6503, 1011, 1009], - "d3-force", - [1, 2343, 17088], - [0, 17094, 13658, 17095, 2537], - "d3-format", - "d3-geo", - "d3-hierarchy", - "d3-interpolate", - "d3-path", - [0, 21224], - [0, 3917, 6033, 2090, 1781, 2150, 2151], - "d3-polygon", - "d3-quadtree", - "d3-random", - "-chromatic", - [2, 1655, 17099], - "d3-time", - "-format", - [2, 17101, 17102], - "d3-timer", - [1, 2343, 17106], - [0, 0, 17109, 17114, 2523], - "d3-transition", - "d3-zoom", - [0, 16638, 16641, 1429, 1177, 25328, 2899], - "@observablehq/plot", - [3, 17110, 14], - [2, 17111, 7047], - "topojson-client", - [0, 1781, 2844, 2860, 1155, 7020], - "visualiz", - [2, 17115, 5218], - [1, 2343, 17118], - [0, 17119, 17120, 17123, 2523], - [0, 4430, 25336], - [0, 4389, 19987, 18718, 8924, 5710, 2012], - "intern", - "internmap", - [0, 1781, 3101, 22115, 57, 1149, 7119], - [1, 2343, 17126], - "d3-module", - [0, 17127, 17131, 17133, 4139], - [0, 3242, 25343, 4135, 25355, 25346, 25353, 3052, 25347, 25350, 3051], - "histogram", - "bisect", - "shuffle", - [0, 3413, 3421, 1157, 1429, 2899, 4193, 1177, 1566], - "stic", - [0, 2038], - "statistics", - [1, 2343, 17136], - [0, 17137, 17138, 2514, 2523], - [0, 53, 25363, 17144, 3467, 3527], - [0, 25366, 4874, 26142, 1415, 668, 1177, 1895, 3171, 3181, 3445, 1894, 4042, 4448, 91], - [1, 2343, 17140], - [0, 0, 17141, 17143, 2537], - [0, 4874, 7677, 20085, 4493, 91, 1984], - "uniqid", - [0, 6649, 6710, 5995, 25372, 89, 970, 5122, 3857, 5123], - "@jspm/plugin-rollup", - [1, 2343, 17148], - "selection", - "data-join", - [0, 17149, 17150, 17151, 2487], - [0, 25377, 3486, 20508, 3923], - [0, 4449, 2228, 2907, 1177, 1317, 2240, 1389, 3541, 91, 2665, 25379, 2236, 2281, 25383], - [0, 2056, 25386, 25388], - [1, 2343, 17153], - [0, 0, 17154, 17155, 2487], - [ - 0, 4172, 1192, 2675, 1177, 23535, 4468, 4474, 1894, 91, 53, 2990, 1387, 1540, 1938, 1895, 1955, 2780, 1011, - 1009, 1915 - ], - [0, 2038, 1388], - [1, 2343, 17157], - [0, 0, 17158, 17160, 2537], - [0, 2025, 2759, 2899], - "dable", - [0, 2038, 10368, 15103], - [1, 2343, 17162], - [0, 17163, 17168, 17170, 2487], - [ - 0, 14416, 4449, 2070, 3171, 25404, 4747, 15643, 1209, 3078, 3188, 4039, 1544, 1457, 3181, 4218, 2659, 4227, - 1364, 2215, 12930, 3781, 11804, 25403, 13388 - ], - [2, 21029, 17165], - " plugin", - [2, 21045, 17169], - "postcss-js", - [ - 0, 1429, 13333, 2899, 17050, 4193, 4707, 1177, 1649, 4650, 3758, 4342, 1389, 2878, 3752, 4196, 25411, 1436, - 2900, 2766, 2898, 192, 1431, 2871, 4131, 1954, 1938, 25407, 2904, 6063, 1958, 2881, 25410, 1903, 1970, 2895, - 22559, 6061, 2876 - ], - "ails", - [0, 2297, 25415, 8791, 2297, 676, 5284, 5472, 1973, 21004, 25416], - "laravel", - [1, 2343, 17173], - [0, 17174, 17175, 17176, 2487], - [0, 9421, 1209, 25421, 3181, 18868, 1573], - [ - 0, 3377, 1377, 1429, 2297, 2899, 4193, 4453, 12851, 1177, 814, 4650, 1389, 4196, 91, 3400, 2766, 2898, 15051, - 1951, 2881 - ], - [0, 25425, 25427, 25429, 1389], - [1, 2343, 17178], - [0, 17182, 17185, 17186, 2537], - "reverse", - "binary", - "opposite", - [0, 3760, 14336, 25092], - "invert", - "switch", - [0, 2228, 1177, 2307, 2239, 2291, 3006, 1954, 2234, 1938, 1958, 1903, 1970, 2285, 2290], - [0, 25425, 25436, 14336, 25437], - [1, 2343, 17188], - [0, 0, 0, 17192, 2537], - "@cap", - "temulation/get-parameter-names", - [2, 17189, 17190], - [0, 2297, 25425, 1429, 2899, 4170], - "faker-bb", - [2, 7526, 17193], - [2, 9769, 1676], - "rss-parser", - [2, 2032, 2663], - [2, 4364, 17197], - "lexxy", - [1, 2343, 34442], - [0, 4707], - [0, 1429, 2297, 2899, 4193, 4255, 2900, 192, 4131, 6063, 22559, 6061], - [0, 25425, 25436, 3195], - "@date-", - "fns/docs", - [2, 17204, 17205], - [1, 2343, 17208], - [0, 17211, 17224, 17225, 2523], - "@date-fns/utc", - [3, 5530, 19], - [0, 11935, 14024, 11938, 11940, 11943, 3181], - "@types/bun", - "@vitest/", - [2, 17213, 1388], - [3, 1198, 17], - [2, 2701, 7188], - [2, 17215, 17216], - "bun", - "cloc", - "js-fns", - "jscodeshift", - "issing-exports", - [2, 10634, 17222], - [ - 0, 192, 5467, 21970, 6061, 6063, 16608, 1429, 1509, 1177, 1903, 1938, 1954, 1958, 1970, 2228, 2240, 2298, 2307, - 2675, 25453, 2297, 25455, 2895, 2900, 25458, 2899, 17050, 4019, 4131, 4193, 4196 - ], - [0, 25425, 25427, 25462, 4504, 2759], - [1, 2343, 17227], - [0, 17201, 17228, 17229, 2537], - [0, 2228, 2258, 2273, 2298, 2766, 2297, 2898, 3524], - [0, 25425, 25436, 1388, 2887, 25468, 25470, 25472, 25473, 17632, 25474, 25476, 25479, 25481, 25484, 25485], - [1, 2343, 17231], - [0, 17233, 17234, 17235, 2523], - [2, 2553, 20], - [0, 2890], - [0, 1429, 25492, 14416, 1177, 1903, 1958, 1970, 2228, 2239, 2240, 2291, 2307, 2316, 2297, 3006, 25493, 3752], - [0, 25425, 25436, 13530, 17631], - [1, 2343, 17237], - [0, 17238, 17241, 17245, 2537], - [0, 2755, 4707], - "ectory", - [2, 4015, 17239], - [0, 192, 5467, 6061, 6063, 16608, 2675, 2297, 2900, 2899, 3534, 4131, 4255], - "sleep", - " wrapper", - [2, 1149, 17243], - [0, 2297, 5472, 25425, 25436, 25501], - [1, 2343, 17247], - [0, 6203, 17248, 17249, 2523], - [ - 0, 1429, 14416, 1177, 1903, 1958, 1959, 1970, 2228, 2234, 2239, 2283, 2285, 2290, 2291, 2307, 2316, 2297, 3006, - 17050, 4193, 4196 - ], - [0, 25425, 25436, 7298], - [2, 17257, 24717, 17258], - "debouncing", - "invoke", - "interval", - [1, 2343, 17255], - [0, 17256, 17259, 17260, 2523], - [0, 2766], - [3, 7621, 18], - "-ascii", - [0, 2228, 2675, 2297, 1177, 2765, 192, 4131, 1954, 1938, 6063, 16608, 1958, 1903, 1970, 2895, 6065, 22559, 6061], - [0, 25425, 25514, 2765], - [1, 2343, 17262], - [0, 17263, 17264, 17265, 2487], - [0, 3183], - [ - 0, 1429, 1177, 1903, 1958, 1959, 1970, 2228, 2234, 2239, 2285, 2291, 2298, 2307, 2297, 2878, 2881, 2895, 2918, - 3006, 2899, 3203, 4193, 6061, 6063, 4131, 192, 5467, 2675 - ], - [0, 25425, 25514, 2899], - "decamelcase", - "lowercase", - [1, 2343, 17270], - "nano-spawn", - [0, 17271, 17280, 17282, 2537], - [0, 1437, 3074, 4294], - "-tar", - [2, 1679, 17272], - "bz2", - [2, 17273, 17274], - "gz", - [2, 17273, 17276], - [3, 17273, 11], - [2, 17278, 4560], - [0, 1429, 2228, 2239, 2258, 2273, 2285, 2298, 2314, 2766, 2878, 2889, 3006, 2899, 3524], - "strip-dirs", - [0, 25425, 25462, 2899, 1429, 1687, 2568], - "is-jpg", - [1, 2343, 17287], - "bzip2", - "tar.bz", - [0, 17289, 17290, 17291, 2537], - "tar.gz", - [0, 1209, 3524], - [0, 1177, 1903, 1959, 1970, 2228, 2234, 2239, 2285, 2291, 2298, 2307, 2766, 2297, 2898, 3006], - [0, 25425, 25436, 3521], - [1, 2343, 17301], - [3, 4852, 13], - "plugin-m", - [2, 17294, 7912], - [2, 17293, 17295], - "fail-test", - [2, 10740, 17297], - "deprecation", - [2, 1921, 17299], - [0, 0, 17320, 17324, 2399], - "only-tests", - [2, 16645, 17302], - [3, 1955, 15], - "erfectionist", - [2, 17304, 17305], - "yml", - [2, 1921, 17307], - "jsonc-", - [2, 17309, 67], - [2, 4488, 10441], - [2, 3390, 17311], - "curly", - [2, 3704, 17313], - "should-s", - "emantic-", - [2, 17316, 3979], - [2, 17315, 17317], - [2, 13125, 67], - [0, 1429, 2228, 2297, 2899, 2907, 1177, 2307, 2239, 2898, 1954, 1938, 1958, 1903, 1970, 2895], - " string", - "line string", - [2, 13862, 17322], - [0, 2297, 25425, 25514, 2907], - [1, 2343, 17326], - [0, 17327, 17328, 17333, 2487], - [0, 1457, 1675], - [0, 53, 5889, 87, 1177, 2766, 2297, 2881, 2898, 2904, 4042, 4045, 4048, 4055, 4067], - "dupes", - " duplicates", - [2, 7293, 17330], - [3, 232, 8], - [0, 3595, 6778, 2297, 5260, 1204, 6813, 1932, 7121, 25427, 25425, 25544, 4042], - [1, 2343, 17338], - "deduplicate", - "deduplicat", - [2, 17336, 6600], - [0, 0, 17339, 17340, 4139], - [0, 2307, 2228, 2239, 2234], - [0, 25425, 25436, 25550], - [1, 2343, 17343], - "is-obj", - [0, 17344, 17345, 17346, 2537], - [0, 25555, 12826, 824], - [0, 192, 5467, 6061, 6063, 16608, 4864, 25558, 4874, 2675, 2765, 2297, 2898, 4131, 91], - [0, 25425, 25436, 7177, 12825, 12826], - [1, 2343, 17348], - [0, 0, 0, 17349, 2537], - [0, 2297, 25425, 4193, 3212], - [1, 2343, 17351], - [0, 17353, 17359, 17360, 2523], - "json-ptr", - [0, 2215], - [3, 1715, 10], - "change-", - "adr", - "tracking", - [2, 17355, 17357], - [0, 8780, 1414, 1177, 2766, 2297, 25571, 2881, 2898, 1894, 4042, 25575], - [0, 25425, 25427, 11939, 5284], - [1, 2343, 17368], - "decision record", - "kewlr", - "any decision record", - [2, 17379, 17381], - "simple-assert", - "lcov-re", - [0, 9719, 17378, 17385, 2443], - "sult-merger", - [2, 17367, 17369], - [3, 1903, 16], - "rict", - [2, 17371, 17372], - "@js-temporal/polyfill", - [3, 1935, 15], - "ilenames", - [2, 17375, 17376], - [0, 1429, 1596, 2899, 3400, 3421, 4193, 4196], - [3, 25135, 11], - "chai util", - "al decision", - "deep equal", - "object equal", - [2, 17365, 17394], - [0, 25425, 16237], - [1, 2343, 17387], - [0, 17408, 17417, 13533, 4139], - "array-b", - "-byte-length", - [2, 2347, 17389], - [2, 17388, 17390], - "es-get-iterator", - "is-a", - " record", - "is-arguments", - "is-ar", - [2, 25135, 17401], - "ray-buffer", - [2, 17396, 17398], - "is-date-object", - " decision", - "gex", - "is-regex", - "is-s", - "hared-array-buffer", - [2, 17404, 17405], - [2, 6961, 7313], - [0, 2070, 3181, 4689], - "side-channel", - "-boxed-primitive", - [2, 4707, 17410], - "which-", - [2, 17412, 6910], - "typed-", - "typed-array", - [2, 17412, 17415], - [ - 0, 48, 53, 85, 87, 192, 5467, 16405, 1193, 1429, 1431, 1610, 1177, 1938, 1955, 2675, 2759, 2765, 1192, 2297, - 2878, 2881, 2900, 2923, 2990, 3150, 2899, 3697, 1894, 3758, 4257, 2924 - ], - "available-typed-arrays", - [1, 2343, 17427], - "to", - "has-proto", - "has-t", - [2, 17397, 17394], - "yped-arrays", - [2, 17422, 17424], - "software quality", - [0, 0, 7923, 17428, 4139], - [0, 8652, 2926, 25591, 6938, 25592, 25594, 25595, 25596, 2927], - "rehype-katex", - [1, 2343, 17431], - [0, 0, 0, 17432, 2487], - [0, 2927, 3925, 364], - [1, 2343, 17434], - [0, 17435, 17441, 17442, 2487], - [0, 25605], - "is-m", - "able-object", - [2, 4688, 17437], - [2, 17436, 17438], - "jsmd", - [0, 18073, 29457, 11976, 15288, 7677, 4039, 25609, 4481, 1984, 26108, 26131, 26132, 26124, 26104, 29233, 26123], - [ - 0, 6803, 6692, 1542, 2325, 9553, 25611, 13901, 5995, 25513, 1552, 3230, 7827, 3259, 14873, 3151, 3300, 3084, - 6650, 1416 - ], - [1, 2343, 17444], - [0, 0, 17445, 17446, 2537], - [0, 1999, 4579], - [0, 1111, 200, 1473, 1512, 7201, 7009], - "is-path-cwd", - "is-path-", - "inside", - [2, 17448, 17449], - [1, 2343, 17452], - [0, 17454, 17463, 17464, 2523], - "folders", - [0, 1999, 25625, 1676, 1209, 21104, 3932, 4435, 25623, 1511, 1525, 2727, 4025, 2179, 25624], - "directories", - "trash", - "unlink", - "cleaning", - "rmrf", - "friendly", - "gulpfriendly", - "filesystem", - [ - 0, 3519, 3421, 4481, 1429, 2763, 4389, 2675, 2899, 3259, 4193, 1177, 3260, 4039, 1787, 3203, 4246, 25635, 4474, - 25633, 1894, 4387, 1596, 1610, 2861, 4196, 91, 4874, 21106, 2990, 25629, 25634, 1431, 4232, 25632, 1938, 25628, - 25636, 1895, 1955, 13850 - ], - [0, 14872, 3766, 14873, 25638, 3259, 25639, 4246, 12593, 3243, 9381, 25640, 6147, 1747, 18035], - [1, 2343, 17466], - [0, 17467, 17469, 17470, 2537], - [0, 19185, 2071, 17471, 2807, 2822, 3183, 29943, 3527, 3530, 25648, 4300, 4763], - "temp-write", - [0, 554, 17212, 7637, 7892, 20374, 4891, 11112, 19706, 32765, 4494, 91], - [ - 0, 19748, 25658, 1227, 200, 25660, 4796, 13735, 4797, 11337, 25661, 6971, 6813, 1586, 2100, 5284, 671, 25663, - 25664, 18750, 6646, 23255, 3383, 20529, 553, 91, 25667, 25669, 17507, 664 - ], - "formatly", - [1, 2343, 17473], - [0, 0, 17476, 17478, 2487], - "in-range", - "time-", - [0, 1177, 2205, 25675, 3072], - "time-span", - [0, 1623, 3583, 12616, 3195, 25501, 25677, 17631, 25550, 25678, 25679, 25682], - "defer", - "out", - "timeout", - [1, 2343, 17483], - [0, 17486, 0, 17488, 2537], - "settimeout", - "tick", - [0, 3171, 4734, 1676, 25688, 3441], - "threshold", - [0, 7200, 6997, 6949], - [1, 2343, 17490], - [0, 17491, 17499, 17502, 2537], - [0, 1080, 1560, 1562, 16358, 25696, 14858, 1833, 1869, 2145, 25699, 2657, 2941, 3173, 3440, 3494, 4266, 1000, 4590], - "@vue/c", - "ompiler-sfc", - [2, 17492, 17493], - "callsite", - "deps-", - "deps-regex", - "is-c", - [0, 1414, 25710, 4216, 4255, 4342], - "ore-module", - [2, 17498, 17500], - [0, 5122, 1896, 27, 13527, 5130, 2663, 16196], - "patch-", - "patch-version", - [1, 2343, 17506], - [0, 17508, 17509, 17510, 2523], - "unused", - [0, 25717, 7810, 13055, 25718, 2141, 4507, 4763], - [0, 5517, 11976, 107, 5522, 28385, 27134, 36694, 24819, 9240, 2934, 4342, 4483, 36684, 4494, 91], - [0, 2934, 25723, 15237, 1781, 20443, 57, 1669], - [1, 2343, 17512], - [0, 17513, 17516, 17517, 2443], - [0, 25718, 25728, 1000], - "deprecate", - "deprecated", - [0, 1909, 2675, 2934, 2899, 3421, 4170, 4342, 1906], - [0, 25732, 1781, 25723, 2934, 20443], - [1, 2343, 17519], - [0, 0, 17520, 17521, 2523], - [0, 1503, 1192, 3130, 4255], - [0, 2934, 2663, 2940], - "is-relative", - [3, 9488, 17], - [1, 2343, 17525], - [0, 17530, 17531, 17532, 2487], - "cjs", - "detective-cjs", - [3, 9509, 10], - [2, 17528, 4354], - [0, 1413, 1437, 25743, 3440, 25745], - [0, 1366, 1414, 1909, 2934, 25748, 25749, 4193, 4342, 1906], - [0, 2934, 2663, 2942, 3073], - [1, 2343, 17534], - [0, 17535, 17536, 17538, 2537], - [0, 1676, 2941], - [0, 1177, 1903, 1958, 1970, 2759, 2934, 2948, 2899, 4170, 4342], - "indentation", - [0, 2934, 2663, 2944, 25757], - "identify", - "space", - [1, 2343, 17542], - [0, 17543, 17544, 17545, 2399], - [0, 1676, 2657, 2941, 3509], - [0, 2934, 3421, 1437, 2675, 2899, 1177, 2114, 4342, 25763, 3985, 2990, 192, 2829, 3995, 1982, 5467], - [0, 2934, 2663, 4082, 38], - "mm", - "egg-bin", - [1, 2343, 17549], - [0, 17550, 17552, 17553, 2443], - [0, 1676, 25771], - "ontributor", - [0, 1177, 1903, 1938, 1954, 1958, 1970, 2759, 2934, 2899, 4342], - [0, 2934, 2663, 2090, 2947, 25774], - [2, 1884, 1347], - [1, 2343, 17556], - [0, 17557, 17558, 17559, 2537], - [0, 3291, 3754, 25782, 1552, 4747, 1209, 4333, 2026, 1364, 25781], - [0, 1429, 1149, 2899, 4193, 4170, 4342, 1506], - [0, 12692, 3768, 6812, 1552], - [1, 2343, 17561], - [0, 17562, 17563, 17564, 2537], - [0, 25789, 1687, 1177, 25791, 25792, 2000, 25793, 2036, 2607, 2851, 2854, 3188, 4127, 4227, 4232, 4351, 25794], - [0, 1501, 25796, 1948, 25797, 4039, 4135], - [0, 1973], - "grunt-exec", - [3, 2300, 12], - [2, 17566, 2759], - [2, 2235, 2924], - [1, 2343, 17570], - [0, 17571, 17572, 17573, 2523], - [0, 9478], - [0, 1166, 4135, 25814, 4481, 1906], - [0, 25816, 15525, 3378, 4750, 3383, 6661, 25188, 1237], - [1, 2343, 17575], - [0, 0, 17576, 17587, 2537], - [0, 2861, 25821, 1317, 25822, 25823, 2768, 1776, 1209, 3152, 3736, 25825, 4019, 25826, 4545], - "@types/diff", - "gan.js", - [2, 12456, 17578], - "@types/nopt", - "all-", - "ibutors-cli", - [2, 10741, 17582], - [2, 17581, 17583], - [3, 1945, 18], - [3, 3463, 9], - [0, 7189, 6564, 6681, 6887, 614], - [1, 2343, 17593], - [2, 2036, 2091], - "image-", - [2, 17590, 11526], - "is-ci-cli", - [0, 0, 17594, 17596, 34352], - [ - 0, 4248, 2675, 2297, 2899, 4193, 1177, 25846, 4042, 25850, 25840, 4535, 2900, 2918, 2990, 25844, 25848, 25851, - 2897, 8850, 2891, 25843, 2881, 2912, 2895, 2910, 25853, 25838 - ], - "side-by-side", - [0, 25855, 3053], - "line-by-line", - [1, 2343, 17601], - "difftohtml", - "colorized", - [0, 0, 17602, 17603, 2399], - [0, 1317, 2064], - [0, 2967, 2965, 2966, 23119, 1871, 19728], - [1, 2343, 17605], - [0, 0, 17606, 17607, 2487], - [0, 20340], - [0, 2966, 25866, 6983, 1671], - "data-s", - [2, 14386, 3769], - [2, 17608, 17609], - [1, 2343, 17614], - [3, 1915, 23], - [2, 17612, 8861], - [0, 17624, 0, 17628, 4139], - "Directed Graph", - "directed", - " graph", - [2, 17616, 17617], - [2, 17616, 2218], - [3, 1718, 14], - "Directed", - "digraph", - "java", - [ - 0, 3420, 2714, 4390, 3532, 4248, 3348, 1437, 2020, 2742, 3478, 4207, 10761, 4747, 25871, 1680, 24004, 3483, - 4039, 4135, 1842, 2822, 3479, 4430, 25872, 2151, 2182, 2720, 3093, 25873, 13786, 25874, 1513, 2753, 2777, 3181, - 25875, 666, 2188, 3249, 27921, 91, 25878, 1595, 2200, 25879, 25880, 4174, 2704, 25881, 3393, 25884, 4025, 25886, - 4290, 4748, 25887, 692, 20312, 9322, 25888, 25891, 25892, 3386, 635, 25893, 26567, 4728, 643, 3397, 9479, 10744, - 4588, 16310, 25898, 25901, 16307, 25904 - ], - "java script", - "JavaScript", - "type script", - [0, 2968, 6646, 7117], - "vertex", - "Vertex", - "edge", - "Edge", - [1, 2343, 17638], - "graph theory", - "Graph Theory", - "graph ", - [2, 17636, 6956], - [0, 17639, 17646, 17650, 2487], - [0, 25910, 20314, 4484], - "weighted", - "Weighted", - "unweighted", - "Unweighted", - "adjacency", - "Adjacency", - [ - 0, 811, 8850, 816, 1009, 1011, 25917, 25920, 1429, 1414, 1437, 1595, 1610, 1177, 2151, 15843, 2070, 2205, 2228, - 2240, 2247, 2256, 2291, 2311, 2314, 25922, 2777, 25923, 25925, 21898, 3183, 2899, 25928, 3400, 3518, 25929, - 3541, 1862, 25930, 814, 4042, 4073, 4076, 4135, 4172, 4436, 4474, 91, 12247 - ], - "connectivity", - "cycle", - "acyclic", - [ - 0, 7236, 7303, 6885, 1623, 6965, 7025, 6898, 6932, 7258, 695, 7228, 6766, 7028, 6912, 57, 7121, 6962, 6968, 590, - 592, 5376, 7198, 6705 - ], - "traversal", - "depth", - "Depth", - [1, 2343, 17655], - [0, 0, 17682, 17684, 2537], - "breadth", - "Breadth", - " first search", - [2, 17652, 17658], - "dfs", - "DFS", - [2, 17656, 17658], - " search", - [2, 6395, 17663], - [2, 17656, 17664], - "bfs", - "BFS", - "algorithms", - [2, 17636, 17668], - "repre", - "sentation", - [2, 17670, 17671], - [2, 17636, 17672], - " matrix", - [2, 17647, 17674], - " list", - [2, 17644, 17676], - "adjacency ", - "matrix", - [2, 17678, 17679], - "node ", - [ - 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 1193, 1610, 1622, 1700, 1701, 1177, 1895, 20281, 1938, 1939, 1953, - 1955, 1982, 2203, 2675, 1192, 695, 25936, 2990, 3144, 3400, 1894, 4257, 4294, 4523, 2924 - ], - "node degree", - [0, 2924, 1194, 695, 6766, 7228, 1623, 7121], - [1, 2343, 17694], - "sparse graph", - "dense graph", - "directed ", - [2, 17688, 17648], - "acyclic graph", - [2, 17688, 17690], - "DAG", - "topo", - [0, 17703, 17707, 17708, 2537], - "topologic", - "topological", - "sorting", - "strongl", - "y connected components", - [2, 17698, 17699], - " digraph", - [2, 17640, 17701], - [0, 25946, 25948, 25944], - "weighted edge", - [2, 17688, 17704], - "structures", - [0, 3421, 4389, 3348, 1090, 1290, 2554, 4255, 91, 4874, 87, 25951, 25950], - [0, 2970, 25954, 3101, 18035, 1747, 1542, 13901, 1781], - " structure", - [2, 2382, 17709], - [3, 17610, 14], - [2, 17710, 591], - [2, 6957, 591], - [2, 17711, 591], - "in data structures", - [3, 17715, 17], - "DataStructure", - [2, 17717, 591], - [1, 2343, 17725], - "iterative", - "Node.js", - "CommonJS", - "UMD", - "esmodule", - [0, 17728, 17736, 17738, 4139], - "java.util", - "c++ stl", - [0, 25960, 15160, 25959], - "c++ std", - "Python collections", - "System.Collections.Generic", - "STL", - "stl", - "Collection", - "Collections", - [ - 0, 25964, 3421, 2070, 4389, 4400, 2080, 4039, 12694, 1804, 2554, 640, 4255, 1610, 25963, 25968, 15164, 25974, - 25969, 1705, 25972, 25967 - ], - "insertion", - [0, 25954, 2970], - "deletion", - "OOP", - [1, 2343, 17742], - [0, 17743, 17744, 17708, 2443], - [0, 23040, 25983, 25987, 25990, 25981, 25985], - [ - 0, 3421, 4389, 1087, 4193, 1090, 2080, 12694, 25995, 26000, 2554, 4255, 25963, 1389, 4092, 25992, 25996, 1537, - 25994, 25997, 1705, 25951, 25967 - ], - [1, 2343, 17746], - [0, 0, 17747, 17748, 2443], - [0, 1166, 26007, 26008, 26009, 26006, 26010, 26014, 3273, 26015, 4441, 1906], - [0, 2975, 26006, 26017, 8893, 1871, 17354, 1687, 2062, 2163, 9549, 9550, 3797, 26020, 6109, 2585, 3529, 19051], - [1, 2343, 17750], - [0, 17755, 6538, 17756, 2399], - "voice", - [2, 7659, 17751], - "backend-", - [2, 17753, 10057], - [0, 635, 9510, 26026, 1687, 3181, 3386, 3483, 4390], - [0, 3378, 3409, 2977, 200, 1687], - "product", - "productivity", - [1, 2343, 17760], - [0, 17761, 17762, 17771, 2523], - [0, 635, 9479, 643, 1458, 3386, 3483, 3727, 29698, 3917, 4135, 4174, 9455], - [0, 9516, 26037, 9515, 9449, 1437, 18248, 26035, 4384], - [2, 7659, 4729], - "lodash.s", - "nakecase", - [2, 17764, 17765], - "builders", - [2, 7659, 17767], - "formatters", - [2, 7659, 17769], - [0, 3378, 3409, 2977, 200, 9527, 2979], - [2, 7659, 1735], - [1, 2343, 17774], - [0, 17775, 6538, 17776, 2523], - [0, 635], - [0, 3378, 3409, 2977, 200, 3358, 2980, 26044], - [1, 2343, 17778], - [0, 0, 17779, 17780, 2537], - [ - 0, 48, 53, 5712, 5788, 87, 94, 8850, 10615, 1208, 1429, 1597, 26049, 1610, 32572, 2759, 1192, 25913, 26052, - 3183, 2899, 3400, 3421, 26053, 4005, 4039, 4042, 4484 - ], - [0, 7285, 7310, 6988, 6847, 5131, 7211], - [1, 2343, 17782], - [0, 17783, 17784, 17785, 2487], - [0, 2051, 2107, 10392, 26060, 2747, 3932, 814], - [0, 1509, 1177, 1889, 1895, 1954, 2022, 2899, 3421, 4193], - [0, 9753], - "cache-point", - [2, 9480, 6769], - "file-set", - [1, 2343, 17791], - "reduce-", - [0, 0, 17792, 17794, 2537], - [0, 11976, 5087, 4874, 8157, 1595, 1192, 91, 4579], - "without", - [0, 1595, 1541, 8309, 7193], - [1, 2343, 17796], - [0, 0, 0, 17797, 2487], - [0, 26072, 1823, 26073, 1936, 2814, 163, 26074, 89, 4500, 1002], - "walk-back", - [1, 2343, 17802], - "dmd-", - [3, 2475, 9], - [0, 17806, 17807, 17808, 4139], - "ample", - [2, 17801, 17803], - [2, 17800, 17804], - [0, 1525, 2992, 3170, 6479, 26379, 4745], - [ - 0, 5522, 107, 192, 5467, 442, 7677, 22839, 26081, 1610, 1177, 1895, 1953, 1955, 10964, 2675, 3211, 1894, 4135, - 91, 1984 - ], - [0, 671, 3358, 2989, 1177, 1894, 4320, 1501, 19269, 4354, 1671, 2649], - [1, 2343, 17810], - [0, 17811, 17812, 17814, 2537], - [0, 26087, 26090, 2752, 2753, 26092, 26095, 26099, 3478, 4094], - [0, 1503, 1702, 22845, 2990, 3074, 3421, 3697, 4237, 13351], - "jsdoc2md", - [0, 200, 5957, 3392, 9000, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921], - [1, 2343, 17816], - [0, 17817, 17820, 6226, 2487], - [0, 1486, 1511, 2017, 3077, 4038, 4726], - "agnostic", - "dnd", - [0, 13352, 4094, 13351], - [1, 2343, 17822], - [0, 17823, 17824, 2514, 4139], - [0, 26114, 26111, 5438], - [0, 26121, 26117, 10675, 26122, 10706, 4484], - "-protocol", - [2, 1730, 17825], - "jsonify", - [1, 2343, 17831], - "rpc", - "callbacks", - [0, 17832, 17833, 17834, 2523], - [0, 1209, 3183, 1387, 26129, 1549], - [0, 2899, 4193, 1177, 3215, 2759], - [0, 1098, 14576, 2947, 36, 5001], - "@ffmpeg-installer/ffmpeg", - [3, 1733, 16], - "mmon", - [2, 17836, 17837], - [1, 2343, 17840], - [0, 17841, 17842, 17843, 2487], - [0, 3459, 1594, 710, 1512, 3237, 1544, 1457, 26136, 4150, 2012, 3427, 26137, 23009], - [0, 2899, 1177, 2272, 4342], - [0, 6400, 5001, 4990, 36, 27, 200], - [1, 2343, 17845], - [0, 17854, 17855, 2514, 2537], - "@puppeteer/browsers", - [3, 13394, 12], - "ium-driver", - [2, 17847, 17848], - "geckodriver", - [2, 13391, 17850], - [2, 5680, 13392], - [2, 13391, 17852], - [0, 1457, 26144, 15767, 4729], - [0, 1509, 2899, 4170, 4193], - [1, 2343, 17857], - [0, 17858, 17860, 17861, 2537], - [0, 16166, 2070, 25923, 2822, 23444, 3006, 1209], - "posthog-node", - [0, 2228, 2273, 2283, 23466, 22081, 2305, 3752, 4193], - [0, 21779, 4745, 16166, 2228, 1541], - [1, 2343, 17863], - [0, 17864, 17865, 17866, 2537], - [0, 1144, 3249, 3539, 6477], - [0, 2228, 2240, 26158, 1906], - [0, 4796, 2070, 2228, 3001, 3529, 26160, 13017, 3209, 3005], - [3, 246, 8], - [1, 2343, 17869], - [0, 0, 17870, 2514, 2487], - [0, 1596, 1177, 1954, 1192, 1894, 4257], - [1, 2343, 17873], - "mecano", - [0, 17874, 17875, 17876, 2537], - [ - 0, 25190, 3088, 26169, 26172, 26173, 26175, 26178, 26179, 26180, 26181, 26182, 26183, 26184, 26187, 26189, - 26190, 26192 - ], - [0, 3310, 1187], - [ - 0, 3304, 36, 5122, 4990, 6400, 5001, 1594, 3171, 4030, 3212, 5592, 2658, 3088, 5995, 4967, 26196, 2665, 27, - 13333, 2671 - ], - "@balena/dockerignore", - "docker", - [1, 2343, 17880], - [0, 17882, 17883, 17885, 2537], - "docker-modem", - [0, 25377], - [ - 0, 1175, 1178, 1195, 1198, 14211, 1267, 26204, 1290, 26205, 1408, 1594, 1895, 2228, 13831, 2236, 2253, 2256, - 2281, 2283, 26208, 2291, 3198, 26210, 18463, 2311, 26212, 17568, 2675, 2990, 3006, 2899, 1894, 26213, 12936, 91, - 4535, 2924, 4681 - ], - "docker.io", - [0, 26216, 26217, 13901, 26218], - [1, 2343, 17887], - [0, 17888, 7923, 2514, 2443], - [0, 1170, 1676, 26223, 4747], - "@bevry/pluginloader", - "ambi", - [1, 2343, 17894], - "ansistyles", - "bal-util", - [0, 17925, 17932, 17933, 2537], - "caterpillar", - "docmatter", - "-baseplugin", - [2, 1737, 17897], - "eachr", - "envfile", - "errlop", - "-grouped", - [2, 13771, 17902], - [2, 12598, 17903], - "extendr", - "extract-opts", - "ignorefs", - "xtorbinary", - [2, 8828, 17908], - "jschardet", - "lazy-require", - [3, 3732, 9], - "title", - [2, 17912, 17913], - "query-engine", - "rfc-log-levels", - "safefs", - "ps", - "safeps", - "scandirectory", - "taskgroup", - "typechecker", - "unbounded", - "watchr", - [0, 1595, 1676, 2071, 26228, 4747], - "@bevry/", - [3, 17583, 12], - [2, 9787, 17927], - [2, 17926, 17928], - [2, 15340, 6706], - "kava", - [ - 0, 1178, 14080, 1253, 1264, 1267, 1734, 1767, 1177, 1903, 1938, 1939, 1954, 1958, 1966, 1970, 1192, 3446, 26230, - 4135 - ], - [0, 26232, 26234, 6698, 3015, 671, 4749, 3378, 9654, 1965, 1644], - "projectz", - "valid-", - [2, 17935, 7204], - [1, 2343, 17941], - " and deployment", - [2, 6147, 17938], - " manage", - [0, 0, 0, 17949, 2537], - "ment system", - [2, 17940, 17942], - [2, 1563, 17943], - "dms", - [2, 1746, 17943], - " agnostic", - [2, 1351, 17947], - [0, 5260, 7268, 614], - "templating", - [2, 11607, 5001], - [1, 2343, 17953], - [0, 0, 0, 17954, 2537], - [0, 5194, 5260, 7268, 614], - [1, 2343, 17956], - [0, 0, 0, 17957, 2399], - [0, 26249, 3426], - [1, 2343, 17959], - [0, 0, 0, 17960, 2537], - [0, 26249, 1420], - [1, 2343, 17962], - [0, 0, 0, 17963, 2523], - [0, 26249, 26258], - "docsify", - "docsify.js", - "tabs", - [1, 2343, 17968], - [0, 0, 0, 17969, 2537], - [0, 26249, 1675], - [1, 2343, 17975], - "@textlint/markdown-to-ast", - "anchor-markdown-header", - "section", - [2, 9787, 17973], - [0, 0, 0, 17976, 2523], - [0, 26249, 19400], - "bitbucket", - "gitlab", - "ghost", - [1, 2343, 17981], - [0, 0, 0, 17983, 2523], - [2, 20413, 4699], - [0, 26249, 3033], - "doct", - "rine-temporary-fork", - [2, 17984, 17985], - [1, 2343, 18006], - "globals-docs", - "konan", - [2, 3138, 14510], - "micromark-", - "util-c", - "haracter", - [2, 17992, 17993], - [2, 17991, 17994], - "filepath", - [2, 13721, 17996], - [3, 3999, 9], - "ference-links", - [2, 17998, 17999], - "unist-", - [2, 18001, 9381], - "vfile-", - [2, 18003, 16237], - "vfile-sort", - [0, 0, 0, 18010, 2523], - "chdir", - "-schema", - [2, 1745, 18008], - [0, 26249, 14741], - "jsdoc3", - "nums", - [1, 2343, 34449], - [0, 26249, 3038], - [1, 2343, 18021], - "big-integer", - "-search-bounds", - [2, 17180, 18017], - "int64-buffer", - "priorityqueuejs", - [0, 0, 0, 18022, 34352], - [0, 26249, 3040], - "semaphore", - [1, 2343, 18025], - [0, 0, 0, 18026, 2537], - [0, 26249, 26287], - [1, 2343, 18029], - "cosmosdb", - [0, 0, 0, 18030, 2537], - [0, 26249, 26292], - "cosmos db", - "document ", - [1, 2343, 18034], - [0, 0, 0, 18038, 2537], - "database", - [2, 18032, 18035], - "nosql", - [0, 1209, 26249, 7268, 614], - [1, 2343, 18040], - [0, 0, 0, 18041, 2523], - [0, 26249, 26301], - "crowdin-cli", - [3, 2694, 9], - "gifsicle", - [2, 18043, 18044], - "jpegtran", - [2, 18043, 18046], - "png", - "optipng", - [2, 18043, 18049], - [2, 18043, 4361], - "tcp-port-used", - [1, 2343, 18054], - [0, 0, 0, 18057, 2537], - "tree-node-cli", - [2, 15862, 1868], - [0, 26249, 26307], - [1, 2343, 18060], - "glob-promise", - [0, 0, 0, 18062, 2537], - "websites", - [0, 26249, 3053], - "open source", - [1, 2343, 18065], - [0, 0, 0, 18066, 2399], - [0, 26249, 7906], - [1, 2343, 18075], - [2, 15774, 1722], - "-languages", - [2, 6327, 18069], - "to-vfile", - [2, 9406, 2741], - "lru.min", - "offline-search", - [0, 0, 0, 18076, 2537], - [0, 26249, 1698], - [1, 2343, 18078], - [0, 0, 0, 18079, 2537], - [0, 26249, 3061], - [2, 1611, 1388], - "height", - "classlist", - [1, 2343, 18084], - [0, 0, 0, 18085, 2523], - [0, 26249, 3063], - [1, 2343, 18088], - "domelementtype", - [0, 0, 0, 18090, 2523], - "entities", - [0, 26249, 3065], - [1, 2343, 18092], - [0, 18093, 0, 18094, 2537], - [0, 22983, 22985], - [0, 26249, 1283], - [1, 2343, 18096], - [0, 0, 0, 18098, 2523], - "raster", - [0, 26249, 6925], - [1, 2343, 18100], - [0, 0, 0, 18101, 2537], - [0, 26249, 3071], - "qunit-tap", - "lodash.sample", - "paths", - "ncludepaths", - [2, 8851, 18105], - [1, 2343, 18109], - "math", - [0, 18111, 18115, 18116, 2523], - "mathml", - [0, 2353, 998, 1856, 17003, 26351, 26350, 26349], - "secure", - "sanitizer", - "purify", - [0, 3421, 4389, 2675, 26357, 1177, 10824, 26358, 2990, 15797, 15804, 15793, 15801], - [0, 3073, 2942, 1676, 1409, 4709], - [1, 2343, 18118], - [0, 18119, 18120, 18121, 2523], - [0, 20040, 16232], - [0, 1906, 1166, 4481, 4294], - [0, 3656, 200, 8429, 6876, 7169, 5511, 2568, 20597, 2089, 20598, 6574, 3073, 6807, 7009, 8634], - [1, 2343, 18123], - [0, 18125, 18126, 18127, 2537], - [3, 4257, 9], - [0, 1107, 1477, 4208, 4294, 4726], - [0, 4874, 4290, 26371, 4481, 16041, 1906], - [0, 3073, 2942, 6807, 200, 7009, 6048, 7201, 4166, 3076, 26375, 26376, 6811, 8634, 3730, 10036, 7521], - [1, 2343, 18129], - [0, 18130, 18131, 18133, 2523], - [0, 26383, 1676, 26385, 4038, 26388], - [ - 0, 192, 5467, 26390, 13757, 24030, 1177, 1881, 1895, 19527, 1938, 1955, 2151, 2675, 2742, 3421, 1894, 3752, - 4384, 91 - ], - "expand", - [0, 6807, 3073, 15227, 202], - [1, 2343, 18136], - "interpolation", - [0, 0, 18138, 18139, 2523], - "substitution", - [0, 26398, 4874, 2228, 2240, 2247, 2253, 2256, 24293, 2273, 2281, 2283, 26399, 26400, 2765, 4474, 91], - [0, 3073, 2942, 6807, 1388], - [1, 2343, 18141], - [0, 0, 18144, 18146, 2399], - "archive-type", - "ext-name", - [0, 26406, 1894, 91], - "filenamify", - [0, 18108, 3080, 26408], - "is-zip", - [2, 4551, 1398], - [1, 2343, 18150], - [0, 18151, 18152, 18153, 2487], - [ - 0, 1797, 1704, 26413, 1149, 1676, 7077, 2026, 26416, 1309, 1362, 2712, 3361, 1364, 4148, 26417, 26420, 26423, - 26426, 26429, 4547, 26435, 26438, 26443, 26448 - ], - [ - 0, 3421, 1429, 2228, 2297, 2899, 4193, 4707, 1177, 1596, 2240, 26453, 4342, 1389, 1719, 4196, 2298, 2900, 2291, - 1575, 26455, 26457, 2040, 2236, 2300, 2871, 26459, 2283, 26462, 2281, 25407, 26465, 2881, 25410, 26466, 2895, - 26470 - ], - [ - 0, 5122, 7096, 4030, 5592, 2026, 4031, 2934, 1303, 1965, 12593, 3259, 18037, 1550, 3230, 26472, 3243, 25638, - 14873, 4217, 26473, 5130, 5131, 26474 - ], - [1, 2343, 18155], - [0, 18156, 18159, 12113, 2523], - [0, 9673], - "repository", - "tarball", - [0, 1389, 1839, 4384], - [1, 2343, 18161], - [0, 18162, 18163, 18164, 34352], - [0, 26484], - [0, 4494, 2675, 4400, 1177, 1209, 1701, 4474, 91, 4874, 4870, 6494, 192, 26488, 26486, 13789, 25298, 5467], - [0, 18035, 1747, 1804, 26490, 21687, 2117, 6671, 2703, 26492, 26493, 1388, 1999], - [1, 2343, 18166], - [0, 0, 18167, 18168, 2523], - [0, 4874, 1317, 668, 3127, 3188, 1894, 4384, 4483, 4508], - [0, 6879, 6650, 2325], - [1, 2343, 18175], - "import-from", - "parse-c", - "md-args", - [2, 18171, 18172], - [2, 4182, 4562], - [0, 0, 18176, 18177, 2399], - [0, 6373, 968, 26503, 4042, 4057, 91, 1983, 1984, 26504, 25079, 26507], - [0, 26509, 26510, 26511, 26512, 26513, 26514, 26516, 26517, 26520], - [1, 2343, 18179], - [0, 18180, 18184, 18187, 34352], - [0, 1149, 1326, 26528, 3263], - [3, 3369, 12], - "ckage-data", - [2, 18181, 18182], - [0, 1596, 2759, 3188, 2899, 3202, 4170], - [3, 16398, 19], - [2, 18185, 18182], - [ - 0, 158, 1398, 26532, 3729, 24800, 16662, 16661, 21881, 20637, 18048, 20639, 12712, 26533, 26534, 6870, 26535, - 1504, 14908, 23119, 26536, 26537, 26539, 9135, 26541, 26542, 26543, 6792, 13615 - ], - [1, 2343, 18189], - [0, 18190, 18191, 18193, 2523], - [0, 26548, 26551, 16053, 25874, 1519, 1522, 26552, 25190, 2934, 26553, 3445, 3762, 16057, 17798], - [0, 2829, 26192, 3310, 26556, 1187], - "dox", - [0, 3088, 36, 27, 13333, 2671, 5995, 2665, 3304, 5122], - [1, 2343, 18195], - [0, 18196, 18197, 18198, 4139], - [ - 0, 1437, 1513, 1676, 1836, 16473, 25623, 26563, 2089, 2149, 2572, 26565, 2584, 1161, 2822, 26567, 26568, 3188, - 3467, 3718, 12443, 9340, 3992, 3999, 26572, 26573, 4449, 18071, 4549, 18002, 4555, 12447, 3348, 12449, 4707, - 4728, 26574, 4747 - ], - [ - 0, 26578, 5245, 12396, 7637, 26579, 26581, 4874, 6520, 9315, 7819, 26584, 22092, 4892, 1610, 19878, 4207, 4294, - 91, 4579 - ], - [0, 1783, 26586, 26587, 5472, 1745], - "spawn-", - "please", - "spawn-please", - [1, 2343, 18204], - "@types/temp", - [0, 18205, 18206, 18207, 4139], - [0, 5012], - [0, 442, 816, 6373, 1317, 19839, 1567, 1177, 1894, 23535, 4042, 4228, 4232, 1984], - [0, 1871, 26597, 12938, 17950, 15139], - [1, 2343, 18209], - [0, 18210, 18211, 18212, 2487], - [0, 4729, 1170, 2832, 4484, 2018, 1209, 2738, 7665, 18730], - [0, 1177, 4508, 9241, 91, 4874, 3400, 13204, 4870, 1011, 10638, 26606, 1009], - [ - 0, 26608, 21009, 91, 1723, 10339, 17623, 5284, 26611, 26614, 26617, 26620, 26622, 24090, 26624, 26626, 16697, - 26628, 26631, 1745, 26632, 26633, 3091 - ], - [1, 2343, 18214], - [0, 18215, 18216, 18217, 2537], - [0, 1437, 2051, 2205, 4600, 3249, 3505, 4300], - [0, 2228, 2899, 4170, 2240], - [0, 1370, 2323, 17461, 21779], - [1, 2343, 18219], - [0, 0, 18221, 18222, 2537], - "bplist-parser", - [0, 8780, 4874, 1166, 2215, 21537, 4400, 4481, 1906], - [0, 7148, 3188, 7048, 17455, 17453, 7204, 6857, 3403, 5933, 7029, 26647, 26648, 6899, 7147, 2150, 17462, 16503], - [1, 2343, 18224], - [0, 0, 0, 18238, 2523], - "alex", - [3, 14237, 14], - "bjs", - [2, 18226, 18227], - [2, 1884, 2081], - "fbjs-scripts", - "gulp-d", - "erequire", - [2, 18231, 18232], - "stats", - [2, 18234, 4408], - "webpack-st", - [2, 18236, 2187], - [0, 7048], - "draftjs", - "typed-binary", - "richtext", - [1, 2343, 18243], - [0, 18244, 18245, 18246, 2537], - [0, 10780, 1139, 1301, 1362, 26657, 2866, 26658, 3507, 4545, 4736], - [0, 4874, 1389, 26662, 26663, 1177, 26664, 2899, 1241, 91, 4535], - [0, 20697, 1936, 26666, 4718, 1783, 5980], - [1, 2343, 18249], - "just-extend", - [0, 18251, 18257, 18261, 2487], - [3, 5371, 20], - [ - 0, 7709, 15288, 26675, 26677, 26678, 26681, 26684, 26412, 26685, 29310, 1091, 1309, 1437, 8536, 6809, 1481, - 21847, 23872, 2822, 2863, 3000, 3203, 3260, 3310, 3363, 3509, 3519, 3547, 3951, 4094, 4164, 4213, 4246, 4521, - 17142, 1002 - ], - "ring", - "inline-string", - [2, 18250, 18253], - [2, 18250, 2278], - "cypress-", - [ - 0, 28091, 26688, 9687, 26690, 28084, 28092, 20886, 26694, 6494, 7637, 5542, 12461, 9240, 1009, 1011, 1177, 1895, - 1955, 2150, 1192, 3403, 1894, 4232, 4342, 4468, 4469, 4480, 91 - ], - "file-upload", - [2, 18256, 18258], - [2, 2918, 4195], - [ - 0, 5995, 5592, 4030, 6710, 91, 18035, 30967, 28976, 6354, 28986, 29686, 26147, 29690, 13126, 7827, 25638, 3259, - 4521, 12659, 1303, 5165, 18258, 13901, 6949, 29732, 29735, 30183, 6688, 30184, 33629, 14344, 29744, 3097 - ], - [1, 2343, 18264], - "dragndrop", - [0, 0, 18268, 18269, 2523], - " and drop", - [2, 7518, 18265], - [3, 12322, 11], - [ - 0, 19181, 26706, 578, 583, 587, 32379, 26707, 4870, 4874, 4880, 4883, 1009, 1011, 1497, 1637, 1177, 4828, 1961, - 1209, 3286, 3561, 3566, 3613, 26710, 26712, 1894, 89, 3824, 4164, 9348, 26713, 4493, 91 - ], - [ - 0, 181, 26709, 13083, 4403, 26715, 26717, 89, 26720, 91, 5284, 6400, 4967, 6073, 181, 26726, 1487, 17758, 26727, - 4627 - ], - [1, 2343, 18271], - [0, 0, 18273, 2514, 2523], - "tsutils", - [0, 19987, 19989, 19988, 2012, 7115], - [1, 2343, 18283], - "dts-critic", - [3, 7935, 17], - [2, 18276, 594], - [2, 15438, 57], - [2, 18276, 18278], - "versions", - [2, 4524, 18280], - [2, 18276, 18281], - [0, 0, 18291, 18292, 2487], - [3, 15891, 13], - [2, 18284, 4299], - [3, 7729, 14], - "able-str", - "ingify", - [2, 18287, 18288], - [2, 18286, 18289], - [0, 4874, 1009, 1011, 7677, 1165, 1414, 1177, 1883, 1915, 2832, 26743, 2278, 4320, 5978, 91, 1983, 26744, 1984], - [0, 26741, 26746, 1932, 26747, 590], - [1, 2343, 18294], - [0, 18296, 11686, 18297, 2537], - [2, 11513, 2527], - [0, 3368], - [0, 1783, 26755, 6892], - [1, 2343, 18299], - [0, 18300, 18301, 18302, 2523], - [0, 1139, 18089, 26761, 26762, 26763, 26764], - [ - 0, 5583, 811, 816, 10615, 1111, 1317, 1414, 1429, 1177, 1903, 2026, 2193, 2600, 2805, 5944, 3112, 7612, 3114, - 26767, 26770, 26772, 26774, 26776, 7617, 7648, 2899, 26777, 3278, 4042, 4167, 4342 - ], - [0, 1783, 57, 20627, 3105, 26780], - [1, 2343, 18304], - [0, 0, 18305, 18306, 4139], - [0, 5328, 1166, 5946, 3165, 4232, 4255], - [0, 1783, 3105, 26780, 10345, 26786], - [1, 2343, 18308], - [0, 0, 18309, 18310, 2523], - [0, 5583, 816, 10615, 1414, 1177, 1903, 3105, 7648, 2899, 4042], - [0, 26780, 3105, 1783], - [1, 2343, 18342], - "dw-neit-", - [2, 18312, 1512], - "dw-neit-c", - [2, 18314, 11163], - [2, 18315, 3007], - [2, 18312, 45], - [3, 1793, 11], - "-des", - "ign-react-slick", - [2, 18319, 18320], - [2, 18318, 18321], - "rc-co", - "mponent", - [2, 12796, 9948], - [2, 18324, 18325], - [2, 18323, 18326], - [2, 18312, 18327], - [3, 18328, 21], - "e-observer", - [2, 15557, 18330], - [2, 18329, 18331], - [2, 18329, 11194], - [2, 18329, 11184], - [3, 18334, 22], - [2, 18335, 13168], - [3, 18328, 12], - "ascader", - [2, 18337, 18338], - [2, 18337, 5449], - [3, 18328, 13], - [0, 0, 18309, 18352, 4139], - "llapse", - [2, 18341, 18343], - [3, 18328, 11], - "dialog", - [2, 18345, 18346], - [3, 18347, 12], - [2, 18348, 9997], - [3, 18349, 13], - [2, 18350, 11206], - [0, 26780, 3105, 1783, 3113, 26796, 26799, 26800], - "field-form", - [2, 18345, 18353], - [2, 18345, 158], - [3, 18355, 12], - [2, 18356, 1020], - [2, 18357, 11211], - "mentions", - [2, 18345, 18359], - [3, 18360, 14], - [2, 18361, 11215], - [3, 18360, 12], - [2, 18363, 11218], - [2, 18345, 9044], - [1, 2343, 18395], - "pagination", - [2, 18345, 18367], - [3, 18368, 12], - [2, 18369, 9947], - [2, 18369, 10148], - [2, 18345, 6882], - [3, 18372, 12], - [2, 18373, 11227], - "segmented", - [2, 18345, 18375], - [3, 18376, 13], - [2, 18377, 4021], - [3, 18376, 12], - [2, 18379, 10205], - [2, 18379, 11234], - [2, 18379, 10222], - [2, 18345, 17966], - [3, 18383, 12], - [2, 18384, 11241], - [2, 18384, 11243], - [2, 18345, 614], - [3, 18383, 14], - [2, 18388, 2699], - "ooltip", - [2, 18384, 18390], - [2, 18386, 11245], - [3, 18387, 12], - [2, 18393, 184], - [0, 18396, 18397, 18398, 2537], - [0, 1525, 1792, 2051, 2600, 3524, 4001, 26806, 4431, 4449], - [0, 1596, 2759, 26808, 4255, 4389], - [0, 1783, 2636, 6270, 1283], - [1, 2343, 18400], - [0, 0, 18401, 18403, 2537], - [0, 4874, 1414, 1437, 1894, 3985, 3998, 4294, 4505, 91, 1906], - "control flow", - [0, 14903, 1783, 26815, 176, 15847, 2585], - [1, 2343, 18405], - [0, 0, 18406, 18408, 2443], - [0, 17212, 4874, 4880, 4883, 33492, 668, 89, 3824, 3857, 15728, 26827, 91, 188], - "zrender", - [0, 1783, 33510, 89, 3698, 1219, 188, 12072, 8588, 23332, 33512, 3857, 1936], - "@lang/rollup-plugin-dts", - [1, 2343, 18414], - [2, 14678, 17116], - [2, 9816, 1974], - "apache", - [0, 18416, 16487, 18417, 2537], - "data-viz", - [0, 1537, 26835, 2226, 26836, 26837, 26838, 3183, 26839, 22230, 4001, 26840, 22557], - [ - 0, 26786, 20627, 1739, 1746, 1745, 26842, 156, 4017, 3966, 1783, 5980, 1932, 9591, 11043, 4001, 26843, 8924, - 3902, 176, 26845, 26847, 10631, 6033 - ], - [1, 2343, 18419], - [0, 18429, 18436, 18437, 2523], - [2, 6038, 1541], - "gulp-e", - "xclude-gitignore", - [2, 18421, 18422], - "gulp-rep", - [2, 18424, 2902], - "gulp-tap", - "linez", - "os-locale", - [0, 3167, 27252, 18578, 26852, 28035, 28719, 28722, 26987, 4290], - [3, 5248, 9], - "t-stream", - [2, 18430, 18431], - [3, 11320, 11], - "ugh2", - [2, 18433, 18434], - [ - 0, 442, 19344, 1091, 1166, 1414, 26854, 1177, 1942, 1953, 1964, 1982, 26855, 2205, 2822, 26696, 2858, 3105, - 26770, 26776, 7617, 17250, 17269, 3400, 4409, 4452, 91, 2924, 4677 - ], - [0, 1783, 671, 5980, 26859, 3124], - "@types/vinyl", - "-fs", - [2, 18438, 18439], - [1, 2343, 18445], - "fix", - "enforce", - "gulpplugin", - [0, 18446, 18447, 18448, 2399], - [0, 1525, 1696, 2687, 2822, 2858, 26865, 3124, 3105, 3181, 26866, 25648, 27921], - [0, 1166, 17269, 1906], - [0, 1783, 3124, 200, 13326], - [1, 2343, 18450], - [0, 0, 18451, 18452, 2537], - [ - 0, 5517, 26873, 26876, 16607, 6063, 6065, 16608, 16612, 1448, 20627, 1610, 12607, 668, 26739, 1177, 2600, 3105, - 26878, 26880, 26881, 4039, 4131, 23878, 4484, 91 - ], - [0, 1783, 26885, 1936], - [1, 2343, 18454], - [0, 18457, 18465, 6604, 2537], - "keepalive", - [2, 4575, 18455], - [ - 0, 9569, 9573, 7610, 9577, 9548, 9568, 9547, 2745, 9556, 9565, 9558, 9560, 9552, 9562, 9566, 3023, 3032, 9563, - 3105, 3114, 9580, 9584, 5961, 9554, 4110, 9550 - ], - "aliasify", - "backport", - [3, 2250, 18], - [2, 18460, 3227], - "run", - "grunt-run", - [2, 4431, 4226], - [0, 1389, 1448, 2070, 9588, 2899, 9586, 4255, 4257], - [1, 2343, 18467], - [0, 18468, 0, 2514, 2537], - [0, 1804, 26895], - [1, 2343, 18470], - [0, 18471, 0, 6260, 2399], - [0, 1282, 26902, 2926, 3060, 3070, 3744, 26906, 3911, 3935, 26908, 4649], - [1, 2343, 18474], - [2, 8243, 3038], - [0, 18475, 18476, 18477, 4139], - [0, 97, 26915, 25212, 26917, 13746, 26921, 4127, 15918, 26922], - [ - 0, 53, 13052, 5825, 83, 87, 94, 19961, 6503, 1009, 1011, 1145, 1195, 1414, 1503, 1700, 26703, 1854, 1177, 1895, - 1903, 1938, 1951, 1953, 1955, 1958, 2024, 11425, 2061, 2070, 2323, 2338, 2036, 26924, 2297, 2895, 2900, 2904, - 2923, 4922, 2925, 3188, 2899, 3200, 26925, 26927, 26930, 26932, 26933, 26935, 1894, 3729, 4193, 26940, 4441, - 4474, 91, 2924, 26941 - ], - [0, 18108, 26944, 5746, 26934, 26945, 57, 7256, 6988, 14642, 26946, 26947, 17679, 2275], - [1, 2343, 18485], - "lazy-val", - "dmg-builder", - "builder-", - [2, 18481, 614], - "builder-lib", - [2, 10735, 18483], - [0, 18486, 18489, 2514, 2399], - [0, 6641, 26956, 13651], - "-runtime", - [2, 18482, 18487], - [0, 2899, 2924], - "-ci", - "@types/is-ci", - [1, 2343, 18504], - "nsis", - "dmg", - "msi", - "setup", - "Windows", - "OS X", - "MacOS", - "Mac", - "appx", - "snap", - "flatpak", - [0, 0, 18505, 18506, 34352], - [0, 2899, 4255], - [0, 3135, 26963, 26965], - [1, 2343, 18515], - "asar", - [2, 8243, 18508], - "notarize", - [2, 8243, 18510], - "osx-sign", - [2, 8243, 18512], - [2, 8243, 14566], - [0, 18516, 18519, 18520, 2537], - [0, 9363, 9315, 26972, 23289, 12429, 3167, 26981, 26983, 26985, 26986, 26987, 26990], - "-windows-exe", - [2, 1615, 18517], - [0, 4874, 1414, 26992, 668, 17232, 23276, 2581, 3140, 26993, 1894, 3985, 3998, 4072, 4505, 91, 1906], - [0, 6892, 1783, 26885, 26995, 26564, 1644, 5341, 1633, 23266, 6435, 614], - "galactus", - [3, 2179, 12], - "info", - [2, 18522, 18523], - "junk", - "author", - "parse-author", - "rcedit", - [2, 27093, 33977], - [1, 2343, 18531], - [0, 18532, 18533, 18534, 2523], - [0, 12396, 9363, 23247, 23289, 27003, 27006, 23254, 4555, 12449], - [0, 4874, 23262, 1414, 2581, 2588, 3137, 27008, 27010, 1894, 3985, 3998, 4505, 91, 1906], - [0, 23266, 26564, 26995, 2587, 23267, 614, 6435, 1783, 1936], - [3, 8256, 10], - "ownload", - [2, 18535, 18536], - [1, 2343, 18539], - [0, 0, 18541, 18542, 2487], - "home-path", - [0, 1091, 10738], - [0, 2382, 27017, 27018, 1623], - [1, 2343, 18544], - [0, 18546, 0, 18547, 2523], - "wonderful-fetch", - [0, 27073, 27076], - [0, 27078, 2325, 5576, 24093, 27080, 27081, 27083, 27084, 3143, 27085, 18037], - [1, 2343, 18549], - [0, 18550, 18553, 18554, 2537], - [0, 18529, 33978, 33980, 33981, 33983, 33990, 33998, 34001, 27092, 27094, 26256, 27472, 27096, 4484], - "-processor", - [2, 6870, 18551], - [ - 0, 5087, 27098, 4874, 1130, 1145, 1398, 2651, 2675, 27099, 1192, 3502, 1894, 3729, 3923, 4039, 4393, 4468, 4469, - 4474, 4487, 27101, 91, 1002, 614, 2924, 4677, 4681 - ], - [ - 0, 2150, 17462, 27103, 3150, 3144, 2090, 6771, 2944, 3151, 27105, 4607, 1973, 5472, 3212, 27106, 27108, 27110, - 27111, 27112, 27113, 27114, 27119 - ], - "grunt-banner", - [1, 2343, 18557], - [0, 0, 18558, 18559, 2523], - [ - 0, 5535, 5366, 5087, 27124, 19446, 4874, 1009, 1011, 1317, 1610, 1177, 1895, 1939, 1955, 2024, 27125, 1192, - 3044, 3057, 3117, 27126, 13824, 19445, 27127, 3467, 1894, 4039, 4042, 4069, 4073, 4075, 4201, 4468, 4474, 4484, - 91 - ], - [0, 7906, 27130, 2325, 6681], - [1, 2343, 18567], - "@vue/comp", - "onent", - "iler-utils", - [2, 4312, 18563], - [2, 18562, 18564], - [2, 18561, 18565], - [0, 0, 18568, 18577, 2523], - [0, 1429, 2323, 4193, 27136, 2463, 4196, 2447, 2436, 2839], - "algoliasearch", - "vue-jsx", - [2, 1226, 18570], - [3, 1280, 9], - [2, 17006, 18487], - [2, 18572, 18573], - "cp-cli", - [3, 17554, 15], - [0, 2325, 27138, 2869, 13901], - [2, 27009, 12442], - "lemefe", - [2, 18576, 18579], - [3, 2095, 9], - "gulp-cssmin", - "-editor-middleware", - [2, 8427, 18583], - [3, 3112, 13], - "hain", - [2, 18585, 18586], - [1, 2343, 18600], - "version-cli", - [2, 9951, 18589], - "transl", - [2, 18591, 6917], - "uppe", - "rcamelcase", - [2, 18593, 18594], - [3, 4645, 13], - "es2015-co", - [2, 18597, 14717], - [2, 18596, 18598], - [0, 18601, 18602, 18603, 4139], - [0, 25911, 3923], - [0, 1329, 15990, 1596, 1177, 2759, 2899, 4170], - [0, 2150, 3151], - [1, 2343, 18605], - [0, 0, 18606, 18607, 2523], - [0, 2025, 2899, 2228, 2240, 2300, 2273, 3760], - [0, 3151, 1973, 3101, 2041, 7046, 1398], - [1, 2343, 18617], - "brorand", - "hash.js", - "hmac-drbg", - "istic-assert", - [2, 6907, 18612], - [3, 18613, 13], - [2, 1619, 594], - [2, 18614, 18615], - [0, 0, 18618, 2514, 2537], - [0, 2899, 4170, 640], - "EC", - "Elliptic", - "curve", - "Cryptography", - [1, 2343, 18624], - [0, 8856, 7938, 7939, 2487], - [1, 2343, 18626], - [0, 0, 18628, 18630, 2523], - "@ladjs/consolidate", - [ - 0, 811, 8850, 816, 13789, 7892, 1166, 27163, 1532, 1677, 27164, 27166, 2020, 2205, 2709, 27171, 18183, 27168, - 3919, 11891, 4042, 4057, 4060, 13781, 27162, 4481, 4507, 91, 1906, 4748 - ], - "@ladjs/i18n", - [0, 200, 20052, 614, 6435, 1383, 6478, 1523, 3924, 3157, 27173, 27174, 57, 5675, 6802, 6847, 8429, 7201], - [1, 2343, 18638], - "get-paths", - "juice", - "preview-email", - "@jimp/core", - "-sendgrid", - [2, 3361, 18636], - [0, 0, 18642, 18644, 2537], - "lad", - "lass", - "mail", - [0, 4856, 6503, 4874, 1429, 1540, 2899, 91, 2924, 4677], - "mailchimp", - [0, 1698, 6899, 2051, 1496, 3048, 1388], - "mailgun", - "mandrill", - "moonmail", - "postmark", - "sendgrid", - [1, 2343, 18651], - [0, 0, 18652, 2514, 2537], - [0, 27184, 2759], - [1, 2343, 18654], - [0, 18662, 18663, 18664, 2537], - [3, 7639, 9], - "ilparser", - [2, 18655, 18656], - "mtp-server", - [2, 5051, 18658], - "mailparser", - "smtp-server", - [0, 1457, 1525, 1676, 2226, 16085, 27189, 3170, 27190, 27191], - [0, 19181, 442, 27194, 10723, 5245, 8778, 4874, 27196, 1414, 1177, 1938, 1953, 2203, 2899, 1894, 3980, 4452, 91], - [0, 2947, 12479, 2090, 13755, 5351, 5353, 1179, 1783, 5352, 3160, 4745], - [1, 2343, 18672], - "yam", - "sane", - "dag-map", - "p-defer", - "tree-sync", - "console-ui", - [0, 18674, 0, 2514, 2399], - "is-git-url", - [0, 27202, 13223, 2674, 27203, 27206, 4039, 4135, 4390, 4449], - "quick-temp", - [1, 2343, 18677], - [0, 18680, 18681, 2514, 4139], - "content-tag", - "core-object", - [0, 4590, 1676, 3164, 3494], - [0, 2899, 1177, 2759, 4342, 1954, 1938, 1958, 1903, 1948, 1970], - [1, 2343, 18696], - "capture-exit", - [2, 26872, 33868], - "stew", - [2, 1379, 18685], - [2, 1379, 1676], - "base-url", - [2, 1463, 18688], - "watch-", - "detector", - [2, 18690, 18691], - [2, 1379, 5614], - "broccoli-s", - [2, 18694, 5585], - [0, 0, 18711, 18712, 2523], - "-or-copy", - [2, 7100, 18697], - [2, 1379, 9381], - "-graph", - [2, 14940, 18700], - "is-language-code", - "-posix-path", - [2, 13626, 18703], - "-project", - [2, 2116, 18705], - [3, 18701, 11], - [2, 18707, 2942], - [2, 11338, 1781], - [2, 6333, 18709], - [0, 2899, 2759], - [0, 27, 3164], - "map-series", - [2, 9466, 18713], - [3, 1381, 10], - "iddleware", - [2, 18715, 18716], - "trees", - "low-trees", - [2, 18694, 18719], - ".hash.helper", - [2, 1862, 18721], - [3, 7648, 14], - [1, 2343, 18738], - "rminal", - [2, 18723, 18725], - "fs-monitor", - [2, 18707, 18727], - [2, 7077, 2849], - [2, 4099, 18729], - [3, 18693, 12], - "fig-loader", - [2, 18731, 18732], - [3, 18733, 16], - [2, 18734, 4068], - "-reducer", - [2, 1378, 18736], - [0, 18739, 18749, 18754, 2443], - [ - 0, 53, 61, 5717, 4851, 5240, 5874, 5838, 87, 14128, 90, 8862, 5583, 811, 8850, 816, 27221, 27223, 1165, 7913, - 27225, 27228, 22829, 1405, 1420, 1874, 2098, 2553, 2929, 3060, 3561, 3714, 4042, 13879, 10854, 4073, 4076, 4079, - 11481, 4072, 11482, 4484, 91 - ], - "@pnpm/find-workspace-dir", - "-works", - "pace-root", - [2, 18741, 18742], - [2, 4749, 18743], - [2, 2103, 18744], - "ulate-cache-key-for-tree", - [2, 3563, 18746], - "is-pa", - [ - 0, 48, 13693, 27232, 5522, 107, 1193, 1610, 27234, 1177, 27238, 1895, 1955, 1999, 2151, 2675, 1192, 2990, 27244, - 1894, 3957, 4039, 4165, 4294 - ], - "missing", - "ckage-missing", - [2, 18748, 18751], - [2, 1828, 18752], - [0, 6374, 4042, 27246], - [1, 2343, 18759], - "-registry", - [2, 4358, 18756], - [2, 1828, 18757], - [0, 18775, 0, 18780, 2537], - "yuidocjs", - "chai-files", - "yuidoc", - "-ember-cli-theme", - [2, 18762, 18763], - [3, 10419, 19], - [2, 18765, 2022], - [3, 18753, 11], - "-test-", - [2, 18768, 6706], - [2, 2270, 18769], - [2, 18767, 18770], - [3, 1827, 11], - "lueprint-test-helpers", - [2, 18772, 18773], - [ - 0, 5245, 1676, 26972, 23289, 27252, 27256, 17995, 27259, 27262, 26981, 27263, 26985, 27265, 27003, 27267, 26986, - 26987 - ], - "app-kit", - "ember", - [2, 5802, 18776], - "ember.js", - [0, 20627, 4643, 3987, 1936, 16892, 1783, 26885, 5980, 4549, 1644, 57, 1932, 3729, 3984, 8924, 3902, 11326, 207], - [1, 2343, 18782], - [0, 18783, 18797, 18798, 2523], - [0, 15643, 3530], - "amd-name-resolver", - [3, 1201, 14], - "ebug-macros", - [2, 18785, 18786], - [3, 12186, 15], - "ber-data-packages-polyfill", - [2, 18788, 18789], - [3, 18790, 19], - "modules-", - [2, 4610, 6422], - [2, 18792, 18793], - [2, 18791, 18794], - "broccoli-b", - [0, 2899, 3181, 27275, 2398], - [ - 0, 16159, 27277, 27278, 18132, 27280, 7256, 24440, 27281, 2090, 1586, 7131, 2100, 2070, 21543, 21544, 24441, - 27282, 27285, 27287, 3529, 13777, 6421, 19051, 3170, 3181, 3249, 27289, 27291, 3403, 13017, 11601, 27293, 1108, - 6961, 6920, 4166, 4259, 21520 - ], - "-transpiler", - [2, 13830, 18799], - [2, 18796, 18800], - [2, 6324, 6706], - [2, 1827, 18802], - "version-ch", - "ecker", - [2, 18804, 18805], - [2, 1828, 18806], - [1, 2343, 18821], - "@ember/optional-features", - "@ember/", - [2, 18810, 1871], - [2, 18810, 13281], - "@glimmer/component", - "@glimmer/", - [2, 18814, 17357], - [3, 10614, 11], - "s/lerna-changelog", - [2, 4406, 18817], - [2, 18816, 18818], - "ember-a", - [0, 0, 18836, 18837, 2537], - "uto-import", - [2, 18820, 18822], - [2, 1705, 1524], - [2, 1828, 18824], - [3, 18771, 12], - "-live-reload", - [2, 2429, 18827], - [2, 18826, 18828], - "initializers", - [2, 3614, 18830], - [2, 5802, 18831], - "ember-qunit", - [2, 5802, 14056], - [2, 5802, 4225], - [0, 27299, 7746, 4874, 1009, 1011, 1437, 27301, 3173, 1894, 23901, 27302, 91], - [0, 7188, 2090, 3171, 7305, 7070, 614], - "-channel-url", - [2, 18835, 18838], - [2, 15508, 2478], - "loader.js", - [1, 2343, 18843], - [0, 18845, 16075, 18846, 2399], - "ember-addon", - [0, 7305], - [0, 3171, 553], - [1, 2343, 18848], - [0, 11570, 11571, 18849, 2537], - [ - 0, 27314, 27315, 27316, 27317, 27318, 27319, 27320, 27322, 27323, 27315, 27325, 27326, 27328, 27330, 27332, - 27333, 27337, 27338, 27340, 27341, 27343, 2262, 7287, 27334, 27344, 27346, 27348, 27350, 27353, 27355, 27357, - 27358, 17697, 27359, 27360, 17737, 17739, 5284, 17625, 17626, 676, 91, 17627, 6869, 4799, 6915, 6333, 2382, - 6956, 17706, 17710, 6957, 17711, 17712, 17713, 17714, 17715, 17716, 17717, 17718, 5933, 1451, 7914, 27363, - 27365, 17651, 6899, 17720, 17721, 17722, 6789, 17723, 17724, 17726, 17727, 17729, 17730, 17731, 17732, 17733, - 614, 6910, 17734, 11600, 17735, 27366, 6681, 17740, 1745, 17116 - ], - [1, 2343, 18861], - "edition-utils", - [2, 18810, 18851], - [3, 4644, 15], - [2, 18853, 5218], - [2, 18791, 18854], - "-inline-precompile", - [2, 1829, 18856], - [2, 1199, 18857], - "broccoli-p", - "ersi", - [0, 18862, 18866, 18869, 2443], - [0, 4121, 4388], - "stent-filter", - [2, 18860, 18863], - [2, 18859, 18864], - [ - 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 4874, 1367, 1610, 1622, 1628, 1700, 1701, 1854, 1177, 1895, 20281, - 1938, 1939, 1942, 1953, 1955, 1982, 2092, 2203, 2675, 1192, 2780, 2832, 2990, 3144, 3400, 1894, 2278, 4111, - 4257, 91, 4523, 2924, 4677, 4681 - ], - "code-equality-assertions", - "js-string-escape", - [0, 2924, 1623, 7682, 11498], - "@emb", - "roider/test-setup", - [2, 18870, 18871], - [2, 1828, 1462], - [1, 2343, 18875], - [0, 18879, 18880, 18881, 2523], - "ort-", - "-global", - [2, 13527, 18877], - [0, 27377, 842, 1462, 27379, 1676, 668, 2105, 30621, 16860, 28134, 27380, 4072, 27385, 27388], - [0, 27390, 1177, 27393, 27394, 10624, 27395], - [0, 3178, 16862, 676, 1623, 11807, 1936, 14357], - [1, 2343, 18884], - "dat", - [0, 18885, 18887, 2514, 2443], - [0, 27404], - "ember-s", - [0, 4384, 4483, 3188, 4508, 1894, 4874], - "tyleguide", - [2, 18886, 18888], - [3, 1243, 11], - [2, 18890, 4486], - [2, 5802, 18891], - [1, 2343, 18896], - "ember-try", - [2, 1921, 2907], - [0, 0, 18897, 18898, 2537], - [0, 1158, 3421, 4389, 1177, 3410, 2708, 1159, 4103, 13614], - [0, 6478, 7128, 57, 3460], - [1, 2343, 18900], - [0, 18907, 18908, 18910, 2537], - "@emmetio/abbreviation", - "@emmetio/", - "css-a", - "bbreviation", - [2, 18903, 18904], - [2, 18902, 18905], - [0, 1525, 3313], - [0, 22102, 1192, 1894, 4468, 91], - "coding", - [0, 27425, 27428, 21655], - [1, 2343, 18912], - [0, 0, 18913, 18914, 34352], - [0, 27407, 4874, 13680, 1414, 1895, 1894, 4384, 4474, 4508, 91], - [0, 7148, 7204, 7161, 7048, 4014, 6899, 970], - [1, 2343, 18916], - [0, 18917, 18918, 2514, 2523], - [0, 1082, 3510, 15450, 27438], - [0, 4874, 7677, 1446, 1177, 1905, 5210, 2807, 1894, 15452, 91, 4543, 1984], - [1, 2343, 18920], - [0, 0, 18921, 18922, 2537], - [0, 53, 61, 71, 83, 87, 92, 97, 27445, 2126], - [0, 3190, 27447, 13795, 5128, 89, 6071, 27448, 11415, 27449, 27456, 27458, 27459], - [1, 2343, 18925], - "finish", - [0, 18926, 18927, 18928, 2523], - [0, 27464], - [0, 3190, 27464, 27468], - [0, 3190, 27447, 5128, 89, 6071, 27448], - [1, 2343, 18930], - [0, 18931, 18932, 18933, 2537], - [ - 0, 2591, 3242, 1687, 2070, 1676, 4747, 2105, 2822, 1457, 3181, 3527, 7801, 3074, 4748, 27476, 17450, 4351, - 27481, 4300, 1874, 4143 - ], - [ - 0, 3421, 1429, 2931, 1776, 2297, 4193, 27510, 1177, 3278, 3984, 4039, 4042, 4135, 2203, 26079, 2924, 1894, 1610, - 442, 27500, 91, 27501, 4874, 2665, 2900, 3105, 4677, 4892, 1509, 3123, 3401, 10630, 62, 27490, 27497, 27506, - 27507, 1953, 17529, 3125, 27509, 5946, 3114, 4923, 3107, 8850, 27499, 8862, 2904, 2915, 2881, 811, 27504, 4079, - 13866, 4066, 816, 23652, 27495, 27487 - ], - [0, 2899, 1973, 5982, 6969, 4384, 5472, 1429, 6468, 1166, 1192, 4389, 2765, 2297], - [1, 2343, 18935], - [0, 18936, 18937, 18938, 2487], - [0, 7058, 3758], - [0, 1429, 2899, 25928, 91], - [0, 2899, 6533, 3758, 3197], - [1, 2343, 18940], - [0, 18941, 18942, 18945, 2523], - [0, 1676, 3135, 3188, 4294, 6523], - [0, 826, 1429, 6524, 1177, 2899, 4039, 27525, 27526], - "entitify", - "entity", - [0, 2899, 2793, 16237], - [1, 2343, 18947], - [0, 0, 0, 18948, 2443], - [0, 2899, 16237, 27532, 4504], - [1, 2343, 18950], - [0, 0, 18953, 18954, 2523], - "enumeration", - "datatype", - [0, 1429, 1177, 21470, 2899, 4039, 4135], - [0, 3212, 2150, 1973, 1182, 6771, 3151], - [1, 2343, 18956], - [0, 18957, 18958, 18959, 4139], - [0, 27544, 2159, 15312, 27547, 2571, 2756, 3431], - [ - 0, 5517, 13614, 23237, 27552, 27555, 27557, 27559, 27562, 27564, 27567, 27568, 27570, 27571, 27573, 27575, - 27576, 4874, 27578, 27580, 19325, 1159, 9254, 1855, 1177, 2011, 2133, 2569, 2708, 3410, 3421, 4103, 4389 - ], - [0, 5472, 3212, 3048, 3205, 6692, 6822, 1973, 6865, 6739], - [1, 2343, 18961], - [0, 18962, 18967, 18970, 2537], - [0, 12929, 3369], - [3, 15801, 15], - [2, 18963, 200], - "ify-object", - [2, 4745, 18965], - [0, 1610, 1177, 2899], - "issues", - "reporting", - [0, 3209, 7190, 14419, 14416, 14510, 22228, 1973, 3212, 13106], - "diagnostics", - [1, 2343, 18973], - [0, 0, 7923, 18974, 2487], - [0, 1973, 3212, 202, 2150, 2184], - [1, 2343, 18987], - [3, 1143, 20], - "function.", - ".name", - [2, 6688, 18978], - [2, 18977, 18979], - [3, 2620, 13], - [2, 18981, 3053], - "oolean-object", - [2, 15644, 18983], - "allable", - "is-callable", - [0, 0, 18991, 18998, 2523], - "umber-object", - [2, 13631, 18988], - "is-string", - [0, 2899, 4042, 4076, 4170, 91], - "is-subset", - [2, 3024, 1867], - [2, 3436, 6693], - "rst-selector-parser", - [3, 11434, 17], - [2, 18996, 6678], - [0, 1666, 3212, 1973], - [1, 2343, 19004], - " rendering", - [2, 4161, 19000], - "Render", - [2, 4161, 19002], - [0, 0, 19008, 19009, 2487], - "test utils", - " helpers", - [2, 6468, 19006], - [0, 2759, 2272, 4193, 27601, 4616], - [0, 3212, 13106, 3209, 1237, 2325, 2275, 1973, 27603, 5472, 6969], - [1, 2343, 19011], - [0, 5621, 19012, 19013, 2523], - [0, 2323, 2372, 27608, 2436, 2447, 2463, 27610, 2272, 2839, 2924], - [0, 3212, 27612, 27614], - [1, 2343, 19015], - [0, 19016, 19021, 19022, 2537], - [0, 7058, 2070, 2929, 1209, 11993, 3084, 3310, 2015, 27624, 27623], - "airbnb-", - [2, 19017, 3744], - "fromentries", - [2, 3436, 19019], - [ - 0, 2812, 4481, 27633, 1192, 3241, 27649, 3533, 1676, 27637, 1409, 27635, 1759, 1177, 3078, 27658, 1096, 2738, - 3363, 27656, 4474, 4709, 27636, 27643, 2774, 27648, 1894, 1596, 27641, 2777, 3379, 4342, 27645, 3747, 91, 27659, - 4874, 27632, 27655, 27634, 27657, 27628, 27644, 27630, 27647, 25710, 27660, 27640, 1954, 27652, 826, 27626, - 1958, 1895, 1955, 1966 - ], - [0, 27662, 14584, 5130, 5995, 27664, 17829, 14586, 3166, 11631, 24090, 27666], - [1, 2343, 19024], - [0, 0, 19025, 19026, 2523], - [0, 2907, 4042, 1610, 91, 4874, 2915], - [0, 3220, 1666, 6901, 1644, 1671, 2649, 2679, 6728, 6804], - [1, 2343, 19028], - [0, 19029, 19030, 19031, 2537], - [0, 3220], - [0, 2228, 2247, 2273, 2277, 2281, 17565, 91], - [0, 3220, 1666, 6901, 27679, 27680, 27681, 27678, 16626], - [1, 2343, 19033], - [0, 19034, 19035, 19037, 2523], - [0, 2858, 27688, 27692, 27693, 27696, 3502, 1894, 27700, 27702, 27703, 4745], - [0, 27709, 32818, 7677, 668, 21290, 3541, 3985, 27711, 91, 1984, 27714], - [2, 6296, 3741], - [0, 6038, 4967, 6400, 27708, 21290, 4745], - "codependence", - [1, 2343, 19040], - [0, 0, 19061, 19062, 2399], - " for es6", - [2, 4354, 19041], - "check for ", - [2, 19043, 5260], - "es check", - "es matching", - "es version", - " check", - [2, 5286, 19048], - [3, 19049, 11], - "matching", - [2, 19050, 19051], - [2, 19050, 15525], - "js version", - [2, 19054, 19048], - [3, 19055, 11], - [2, 19056, 19051], - "test ", - [2, 19058, 19054], - [2, 19058, 19053], - [0, 442, 4874, 7677, 1177, 1895, 1966, 1982, 1894, 4039, 4508, 4514, 17223, 91, 4523, 1983, 26744, 1984], - [0, 27722, 27723, 27724, 5675, 27725, 6400, 5995], - [1, 2343, 19064], - [0, 19068, 19075, 19079, 4139], - "bigints", - "has-bigints", - "intl-", - [ - 0, 16003, 32967, 16005, 16000, 19267, 15999, 20870, 23721, 19282, 6372, 27731, 1364, 1367, 23723, 1395, 1505, - 1525, 1575, 1610, 1640, 1759, 1853, 2026, 9243, 2040, 2117, 27735, 27737, 2626, 2814, 7796, 3162, 3230, 27740, - 3237, 3527, 23726, 4148 - ], - "back-symbol", - [2, 9925, 19069], - [2, 19067, 19070], - [3, 5742, 14], - [2, 3094, 19072], - "make-a", - [ - 0, 53, 68, 87, 27742, 27743, 1195, 1429, 1465, 1540, 1584, 1628, 1651, 1177, 1881, 1938, 1982, 26154, 2092, - 2675, 2899, 12690, 3322, 3363, 4307, 4342, 2924, 4677 - ], - "unction", - "sync-function", - [2, 19074, 19077], - [0, 20897, 27746, 6910, 18035, 27747, 8626, 8298, 27749, 1550, 3230, 27750, 27751, 27752], - "reflect", - ".ownkeys", - [2, 19080, 19081], - [2, 7315, 7262], - [2, 5511, 19083], - [1, 2343, 19086], - [0, 19087, 19088, 19089, 4139], - [0, 1395, 27759, 27762], - [ - 0, 3421, 4481, 29749, 1429, 1437, 2899, 4193, 27764, 4747, 1177, 4135, 27765, 2026, 2822, 4474, 1894, 4196, 91, - 5307, 4856, 4874, 1436, 27767, 6503, 6513, 27768, 5254, 6494, 27772, 27775, 27776, 27779, 6512, 27781, 27782, - 4232, 1951, 1978, 1895, 1955, 608, 603, 1011, 27786, 15115, 27790, 27792, 1009, 10964, 549 - ], - [0, 3230, 13392, 11489], - [1, 2343, 19091], - [0, 19095, 19098, 19103, 2399], - "es6-symbol", - "esniff", - "next-tick", - [0, 27798, 3230, 27799, 27800, 3242, 27801], - "plain", - [2, 19096, 4007], - [ - 0, 30604, 29957, 4874, 27803, 27805, 27807, 1091, 1414, 1448, 18192, 1177, 13850, 2026, 2151, 2600, 21630, 3044, - 27810, 20451, 3127, 3188, 2899, 3220, 27786, 12690, 29780, 3275, 3754, 4193, 29998, 91, 4523, 3348 - ], - "ecmascript5", - "ecmascript6", - "extensions", - "addons", - [0, 3230, 1746, 11415, 2844, 18035, 27812, 2382, 27814, 3766, 18037, 3469, 1747], - [1, 2343, 19105], - [0, 19106, 19107, 19109, 2523], - [0, 1605, 1541, 1292, 4218, 4545, 4220, 27822], - [0, 2228], - "es5 shim", - [0, 3233, 27826, 27827, 20863, 27829, 27830], - [1, 2343, 19111], - [0, 19112, 19107, 19113, 2523], - [0, 1541, 1544, 3233, 27835, 27822], - [0, 3233, 27837, 27826, 27827, 27838, 12619, 20863, 27840], - "rettime", - [1, 2343, 19116], - [0, 19117, 19131, 19133, 4139], - [0, 27847, 1676, 3230, 27849, 27852, 27855, 27856, 27857, 27859, 3427], - "json3", - [2, 1379, 4042], - "git-repo-", - [2, 19120, 15525], - [2, 1379, 4650], - [2, 1379, 4535], - "-phantom", - [2, 3736, 19124], - "6-plugin-strip-class-callcheck", - [2, 1172, 19126], - [3, 14198, 32], - "nstants", - [2, 19128, 19129], - [0, 1166, 1503, 1177, 1903, 1920, 1938, 1954, 1958, 1970, 27861, 27866, 27869, 27872, 27873, 27874, 27875, 3421], - "futures", - [0, 3236, 3230, 1550, 13392], - [1, 2343, 19135], - [0, 19136, 19137, 19139, 2523], - [0, 1304, 1676, 1704, 3440, 16128], - [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4237, 4342], - [3, 7872, 9], - [0, 2026, 27, 2942, 2663], - [1, 2343, 19141], - [0, 7936, 7938, 7939, 2399], - [1, 2343, 19143], - [0, 19144, 19147, 19148, 2399], - [0, 4729, 4038, 1676, 27764, 4238, 27897, 27899, 3183, 9241, 3084, 27902, 1537, 27910, 3923, 27905, 14731], - "es6-tests", - [2, 12790, 19145], - [ - 0, 3421, 1429, 4389, 4193, 1177, 2202, 3188, 4039, 4170, 4216, 668, 2203, 4474, 1457, 1894, 27912, 442, 3697, - 3980, 91, 4856, 4874, 19325, 6513, 1834, 27918, 27920, 19181, 12310, 5536, 5476, 10936, 27924, 1938, 1895, 1955, - 1011, 1567, 5478, 27915, 1009, 10614 - ], - [0, 3241, 27927, 20001, 20003], - [1, 2343, 19150], - [0, 0, 19152, 2514, 4139], - [2, 31089, 9224], - [0, 2675, 2899, 1177, 1894, 2025, 2990], - [2, 31715, 31719], - [1, 2343, 19155], - [0, 19156, 19157, 19158, 2399], - [0, 27936, 1525, 1676, 25625, 25635], - [0, 192, 5467, 16607, 6065, 16608, 16612, 2899, 4131, 4255], - [0, 18035, 3243, 14872, 36, 27939, 26472, 27940, 27942, 25635, 27944, 26472, 27945, 13531, 27948], - [1, 2343, 19160], - [0, 19162, 19163, 19164, 2443], - "special", - [0, 27959, 617, 9213, 27962, 977, 2220, 27964, 9218, 9219, 3509, 3527, 19114, 4266, 9221, 4454, 4507, 27955, 4747], - [ - 0, 192, 5467, 19151, 19181, 442, 17982, 5497, 9225, 9226, 8648, 6494, 27966, 4874, 19153, 1009, 1011, 5474, - 1170, 13662, 1527, 1610, 1613, 1652, 668, 8161, 1177, 1895, 1955, 2026, 2078, 19213, 2070, 2832, 27967, 2931, - 2990, 27969, 1894, 23535, 3957, 4039, 9245, 4493, 91, 4523, 4548, 4027, 1984, 9250, 2924, 9258, 3244 - ], - [0, 5592, 3212, 8788, 6812, 6688, 36, 11100, 1852, 5472, 6400, 10768], - [1, 2343, 19166], - [0, 19169, 19170, 19173, 2537], - [2, 18756, 4219], - [2, 1370, 19167], - [0, 27978, 1410, 1537, 3188, 3427, 1000, 1695], - [0, 1693, 2026, 2139, 27981, 2899, 3421, 4039, 4255, 27984], - "-everywhere", - [2, 10906, 19171], - [0, 1669, 3689, 15237, 2139, 27986, 2026, 2663], - [1, 2343, 19175], - [0, 19176, 8134, 19178, 2537], - [0, 22970, 27992, 3181], - [3, 442, 8], - [0, 18132, 2100, 2070, 21543, 21544, 3529, 13777, 3181, 13017, 11601, 21520], - "config-array", - [2, 19177, 19179], - [2, 19177, 1998], - "@humanwhocodes/module-importer", - [3, 19182, 15], - [2, 19183, 1153], - "@nodelib/fs.walk", - "esquery", - "imurmurhash", - "-without-jsonify", - [2, 2851, 19188], - "levn", - [1, 2343, 19196], - "@eslint/co", - [2, 19192, 23], - [2, 442, 1803], - "@trunkio/launcher", - [0, 19197, 19198, 19199, 2523], - [0, 4538, 2657, 4100], - [0, 3421, 27999, 2899, 1177, 3188, 4039, 4339, 4012, 1948], - [0, 2090, 9229, 2141, 3101, 6949], - [1, 2343, 19201], - [0, 19211, 19212, 19214, 2537], - [2, 3192, 5130], - [2, 11095, 19202], - [3, 1992, 9], - "lease", - [2, 19204, 19205], - "eslint-r", - "ule-composer", - [2, 19207, 19208], - "eslump", - [0, 2100, 2151, 2859, 1209, 5303, 3445, 3348], - [0, 2765, 3421, 33373, 3980], - "fs-teardown", - [0, 1649, 1936, 28007, 3256, 28009, 28012], - [1, 2343, 19217], - "metascraper", - [0, 0, 19228, 19229, 2537], - "-description", - [2, 19216, 19218], - [3, 19219, 12], - [2, 19220, 158], - [2, 19220, 11255], - [2, 19222, 4147], - [2, 19220, 17913], - "node-po", - "lyfill-webpack-plugin", - [2, 19225, 19226], - [0, 1999, 1429, 4770, 2899, 1177, 2272, 4042, 3758, 4535], - [0, 3257, 1283, 5354, 1797], - "npm-license", - "polyfills", - [2, 4065, 19231], - [1, 2343, 19234], - [0, 0, 19236, 19237, 2399], - "yorkie", - [0, 1759, 2323, 2384, 2508, 2675, 2297, 2881, 2908, 2915, 28023, 28024, 1894, 25851, 2907, 4039, 4042, 4072, 28027], - [0, 10052, 8691, 28030, 7131, 6333, 7518], - "sql-escaper", - [1, 2343, 19240], - [0, 19241, 19245, 2514, 2443], - [0, 1325, 3923, 4100, 28036], - "ape-runner", - [2, 1285, 19242], - "eslint-f", - [0, 1087, 1177, 4127, 28038, 28039, 28040], - "ind-rules", - [2, 19244, 19246], - [1, 2343, 19249], - [0, 19250, 19251, 19252, 2537], - [0, 3080, 24383, 18073, 2685, 19238, 28047, 28049, 28052], - [ - 0, 1414, 4494, 28059, 2203, 1894, 1317, 1610, 442, 3560, 91, 4874, 28056, 19181, 27928, 6473, 1895, 1955, 1011, - 28058, 1009, 13188 - ], - [0, 3259, 5576, 36], - "using-browser-globals", - [2, 12084, 19253], - [1, 2343, 19256], - [0, 19257, 19258, 19259, 2443], - [0, 21243, 3427, 21246], - [0, 2759, 1362, 2899], - [0, 19138, 1862, 28067, 21244, 5194], - [1, 2343, 19264], - [3, 3703, 10], - [3, 9487, 11], - [2, 19261, 19262], - [0, 0, 19265, 19266, 2537], - [0, 28072], - [0, 3417, 202, 15525, 10057, 28074, 202, 17180, 1263], - [2, 15998, 23720], - [1, 2343, 19272], - "quality", - "jslint", - "code style", - [0, 0, 19274, 2514, 2537], - "verify", - [0, 1326, 1525, 2070, 705, 3923, 4384, 1695], - [1, 2343, 19276], - [0, 0, 19277, 19278, 2537], - [0, 4548, 4874, 91], - [0, 28088, 2382, 705, 1781, 18037, 3166, 2378, 18035], - [1, 2343, 19283], - " config", - [2, 1177, 19280], - "@lezer/highlight", - [0, 19284, 19285, 19287, 2523], - [0, 5012, 1634, 1639, 28094, 26902, 28095, 17011, 7917], - [ - 0, 10821, 10828, 10837, 5087, 4874, 5090, 4880, 1177, 10619, 2675, 28098, 1192, 2968, 28101, 2990, 1894, 3744, - 89, 3824, 3904, 4039, 4232, 4469, 4484, 91, 2924, 4676, 4681, 4749 - ], - [2, 15289, 17540], - [0, 1623, 590, 592, 3528, 2378, 2994, 89, 676, 7164, 7165, 369, 4636, 4627, 4315, 28103, 5547, 5376], - [2, 19289, 1564], - [3, 28155, 14], - [1, 2343, 19291], - [0, 0, 0, 19292, 4139], - [0, 3348, 3778, 3265, 1002], - [1, 2343, 19294], - [0, 19295, 19296, 19297, 2537], - [0, 18509, 1170, 1809, 2151, 28115, 28116, 3079, 3275, 28118, 4108, 4232, 4449, 4747], - [ - 0, 5245, 4864, 28120, 5087, 21621, 4874, 28123, 6520, 4892, 1009, 1011, 1804, 1177, 1895, 1955, 1192, 3541, - 1894, 4039, 4469, 91, 2924, 4677 - ], - [0, 28125, 1804, 1896, 970, 21009], - [1, 2343, 19299], - [0, 19300, 19303, 19304, 2487], - [ - 0, 4729, 3467, 4390, 2806, 3445, 3348, 1170, 1473, 2072, 4747, 20991, 1209, 3078, 3127, 3188, 3483, 4135, 3013, - 4708, 4734, 2003, 3742, 4167, 1137, 1457, 1894, 3761, 4473, 3181, 28130, 1483, 4183, 4227, 91, 28132, 8612, - 28133, 19499, 28135, 20949, 28136, 28137, 14774, 28142, 3762, 635, 28145, 28151, 19288, 1573, 20934, 28155, - 28158, 28164, 28214, 28167 - ], - "eslint-patch", - [2, 9112, 19301], - [ - 0, 1429, 2228, 2675, 2899, 4193, 26212, 2759, 9241, 13214, 4856, 4874, 7819, 2314, 2990, 9357, 28177, 28178, - 6513, 4892, 28180, 4870, 28182, 5254, 28184, 28187, 28189, 7812, 7749, 14352, 28192, 28195, 1431, 2258, 4232, - 2247, 2283, 33046, 28203, 9417, 28206, 5244, 28211, 1567 - ], - [0, 3271, 91, 5284], - [1, 2343, 19306], - [0, 19307, 19321, 19322, 2487], - [0, 28219, 28223, 28224, 1759, 2665, 28225, 3232, 3519, 1552, 18730, 28228, 26940, 4545, 3348, 28230], - " Standard Style", - [2, 17626, 19308], - "code checker", - "code linter", - "code st", - "andards", - [2, 19312, 19313], - "policy", - " style", - [2, 4255, 19316], - [2, 590, 16792], - "style ", - "style linter", - [ - 0, 811, 8850, 816, 23689, 4874, 1009, 28232, 1610, 1177, 21564, 1938, 1953, 1958, 2323, 2441, 28233, 2765, 2766, - 671, 3275, 3421, 28234, 3752, 4039, 4042, 4193, 4232, 4255, 4474, 15097, 91, 28235, 2924, 18237 - ], - [ - 0, 28238, 28241, 17134, 28242, 28243, 207, 28244, 28245, 28246, 28247, 28248, 28249, 28251, 28253, 28256, 28258, - 28260, 28261, 28265, 28266, 4420, 28267, 28269, 28271, 28273, 28274, 28275, 28277, 28280 - ], - [1, 2343, 19324], - [0, 19326, 19327, 19328, 34352], - "@types/tape", - [0, 2714, 1149, 4747, 28285], - [0, 3421, 4616, 1177, 1596, 28287, 3980, 10614], - [0, 8309, 28289, 28291], - [1, 2343, 19330], - [0, 0, 19331, 19340, 2523], - [0, 2899, 4039, 21228], - [3, 19180, 15], - [2, 19332, 3323], - "__js", - [2, 5601, 19334], - "automd", - "eslint-t", - "ypegen", - [2, 19337, 19338], - [0, 200, 1585], - [1, 2343, 19342], - [0, 0, 19343, 19345, 2523], - [0, 4874, 4880, 1009, 1011, 1587, 1177, 1895, 1955, 1959, 1961, 1161, 1894, 4484, 91], - [3, 7844, 24], - [0, 28303, 6085, 89, 1896, 28304, 12780, 190, 5995], - [1, 2343, 19351], - "xoxo", - "hugs", - "kisses", - "happy", - [0, 19352, 19354, 19355, 2537], - [0, 1149, 3188, 4545, 3012, 28310], - "happiness", - [0, 1429, 2899, 4193, 705, 1525, 28312], - [0, 18035, 27814, 21687], - [1, 2343, 19357], - [0, 19358, 19360, 19361, 2523], - [0, 2685, 4113], - "cabin", - [0, 2861, 17910, 2899, 3756, 3760, 4170, 4193, 4734], - [0, 27, 2671, 2869, 705, 5576, 15237, 9229, 2658, 25386, 17481, 8426, 8431, 977, 7436], - [1, 2343, 19363], - [0, 19364, 0, 19365, 2523], - [0, 28324, 28325, 1525, 1595, 2720], - [0, 200, 12659, 13527, 1523, 6876, 678, 4636], - "boolean", - [1, 2343, 19368], - [0, 19369, 19370, 19371, 4139], - [ - 0, 28331, 1149, 28333, 13223, 1483, 1512, 1525, 1645, 2098, 28335, 1209, 3188, 28340, 28342, 28344, 28346, 3718, - 4135, 28348, 4717, 4736 - ], - [ - 0, 28353, 1429, 1705, 28356, 18420, 1177, 1942, 13231, 1951, 1966, 2822, 2899, 3297, 3421, 28358, 3938, 4153, - 4167, 4193, 4734 - ], - [0, 3283, 28360, 5592, 5472, 15656, 28362, 4030], - [1, 2343, 19373], - [0, 19374, 19375, 19376, 2537], - [ - 0, 30869, 28367, 28371, 28372, 13471, 13474, 13476, 30243, 13495, 13497, 13500, 13502, 28373, 1537, 2674, 28375, - 27967, 2854, 28379, 3923, 28380, 4135, 4715 - ], - [ - 0, 7709, 28384, 36559, 28387, 28390, 28394, 692, 28395, 28396, 28399, 1091, 1149, 1168, 28400, 1414, 13838, - 1525, 1570, 28401, 13848, 1177, 1942, 28406, 2070, 2212, 2675, 1776, 2990, 3019, 3297, 3747, 3752, 4039, 28408, - 4193, 4339 - ], - [0, 13539, 6681, 27838, 14029, 28411, 28413], - [2, 5223, 594], - [2, 1876, 19377], - [1, 2343, 19381], - "is-bun-module", - [0, 19382, 19383, 19384, 2523], - [0, 97, 28418, 977, 12105, 3424, 28420, 3698, 28423, 3348], - [ - 0, 5154, 48, 53, 14167, 83, 87, 90, 92, 28436, 842, 16145, 966, 968, 972, 20562, 974, 5087, 4874, 28426, 28425, - 4880, 4883, 1165, 28435, 28433, 1540, 1637, 1192, 2780, 2802, 3244, 3286, 3561, 3566, 3640, 89, 3824, 4705 - ], - [0, 89, 6710, 3424, 2038, 28438, 5165, 3287, 16944, 5168, 28439], - "@types/is-", - [2, 19385, 2070], - [1, 2343, 19388], - [0, 0, 0, 19389, 2523], - [0, 3286, 1149, 28445, 28446], - "node-lib", - [1, 2343, 19392], - [0, 0, 0, 19393, 2399], - [ - 0, 1098, 1973, 5472, 3212, 8788, 4627, 12442, 7170, 9962, 11100, 28453, 28454, 4967, 6400, 1192, 2765, 1843, - 13106, 7190 - ], - [1, 2343, 19395], - [0, 19396, 0, 19397, 2537], - [0, 13, 28459, 8597, 1668, 4484], - [0, 5127, 4964, 1098, 181, 5130, 4967], - [1, 2343, 19406], - [3, 16405, 17], - "defaults", - [2, 19399, 19400], - "-azure-pipelines-cli", - [2, 1529, 19402], - "riendly-formatter", - [2, 19244, 19404], - [0, 19407, 19408, 19409, 2537], - [0, 2212, 3348, 4745, 16509, 2057, 3028], - [0, 1429, 1437, 2899, 4193, 4874], - [0, 3290, 28467, 28468, 3014, 28469], - [1, 2343, 19416], - "enhance", - "-visitors", - [2, 19411, 19412], - [2, 1876, 594], - "espurify", - [0, 0, 19417, 2514, 2399], - [0, 1429, 1544, 2899, 3754, 4151, 4333], - "-spelling-correcter", - [2, 3166, 19418], - [1, 2343, 19423], - "ava-rule-tester", - [2, 1876, 19421], - [0, 19424, 19425, 19426, 2487], - [0, 1676, 28480, 19400, 1804, 28483, 28484, 2835, 28485, 3188, 16112, 3441, 4039, 28486, 4238], - [0, 1149, 1304, 27731, 1362, 1429, 1431, 1177, 1895, 1955, 2026, 2675, 2899, 28488, 3246, 3549, 1894, 4151, 4237], - [0, 3292, 1804], - [1, 2343, 19428], - [0, 19429, 19430, 19431, 2487], - [ - 0, 28494, 28498, 28500, 4856, 28502, 14552, 11869, 15374, 1371, 28503, 1437, 1458, 1483, 28504, 28505, 1759, - 1797, 1842, 2070, 2832, 1209, 3181, 3183, 2899, 28510, 3445, 3467, 20460, 4130, 4135, 28512, 4294, 4558, 3348 - ], - [ - 0, 221, 842, 4874, 1009, 1011, 1587, 1610, 1177, 2675, 2742, 2822, 2990, 3200, 4925, 28514, 28517, 3215, 3297, - 3421, 89, 3824, 4039, 4146, 4474, 4481, 28519 - ], - [ - 0, 3294, 28521, 28522, 5472, 11132, 14336, 11861, 28525, 11862, 4627, 11857, 1973, 1388, 5131, 8791, 13426, - 1649, 2899, 13428 - ], - [1, 2343, 19433], - [0, 19437, 19447, 19450, 4139], - "ast-m", - "etadata-inferer", - [2, 19434, 19435], - [0, 11124, 826, 28535, 18248, 3509], - [2, 19192, 13172], - [3, 5536, 14], - "16", - [2, 19439, 19440], - "aniuse-lite", - [2, 4857, 19442], - [3, 6309, 16], - "moize", - [2, 19444, 19445], - [0, 11134, 28537, 1389, 2675, 2832, 8821, 2990, 2899, 28539, 3421, 1894, 3752, 28542, 28543], - "config-erb", - [2, 15086, 19448], - [0, 1973, 5472, 21147, 3212, 4731, 36], - "kangax", - [1, 2343, 19453], - [0, 19454, 19455, 2514, 2537], - [0, 28550, 617, 2854], - [ - 0, 2212, 3421, 1429, 1192, 2899, 4193, 1177, 4039, 1894, 2139, 1719, 3752, 4196, 91, 3400, 15342, 4131, 1954, - 1951, 826, 1938, 1958, 1895, 1903, 7935 - ], - [1, 2343, 19457], - [0, 0, 19458, 19459, 2443], - [0, 1317, 1326, 28556, 1177, 2151, 29197, 3697, 4135], - [0, 28558, 28559, 11154, 970, 1326, 3122, 14655, 3263, 3299], - [1, 2343, 19461], - [0, 19465, 19470, 19471, 2537], - "/plugin-pwa", - [2, 4613, 19462], - [2, 10982, 19463], - [0, 1496], - "eslint4b", - [3, 4630, 11], - [2, 19467, 6038], - "vuepress", - [0, 3421, 2228, 2899, 4170, 1596, 2240, 18463, 91, 4874, 18555, 1506, 28565, 22081, 2247, 2283, 28567, 28570], - [0, 2325, 20164, 2703, 6884, 3250, 3151, 6943, 202, 3143, 3048], - "exported", - "eslint-env", - "eslint-en", - [2, 19474, 4000], - "eslint-d", - "isable", - [2, 19476, 19477], - [2, 19478, 10240], - [3, 19479, 15], - "next-line", - [2, 19480, 19481], - [1, 2343, 19484], - [0, 0, 19485, 19486, 2537], - [0, 4874, 28577, 2151, 2675, 2899, 3421, 4039, 91, 28580], - [0, 202, 3111, 13017, 6956, 28582, 6899, 6726, 2382, 13626, 28583, 1745], - [1, 2343, 19495], - [3, 8097, 32], - [3, 1879, 9], - "mments", - [2, 19489, 19490], - [2, 19488, 19491], - "ot-an-aardvark", - [2, 16819, 19493], - [0, 19496, 19497, 19498, 2487], - [0, 1672, 28589, 28590, 2179, 3183, 3330, 814, 4135], - [0, 4874, 1177, 1938, 2675, 2990, 1894, 4384, 28593, 4453, 4474, 91], - [0, 22687, 2999, 4345, 3233, 2282], - "@foxt/js-srp", - [2, 4284, 12118], - [1, 2343, 19506], - [3, 15471, 15], - "anonical", - [2, 19502, 19503], - "gitdown", - [0, 13856, 11488, 19507, 2443], - [0, 3308, 7204, 4014, 28599, 2090, 14629, 17721, 2150], - [1, 2343, 19509], - [0, 19510, 19511, 19517, 2537], - [0, 21642, 28604, 28605, 28608], - [ - 0, 10614, 842, 5601, 1009, 1011, 7677, 17298, 1622, 1177, 17300, 1930, 1942, 1945, 1948, 1953, 17303, 17306, - 1964, 1985, 17308, 2675, 17310, 2931, 2990, 3124, 3125, 3390, 17312, 1894, 17314, 3708, 3980, 28611, 17318, - 4493, 91, 1984, 17319 - ], - "@html-eslint/eslint-plugin", - [3, 19512, 13], - [2, 19513, 57], - "link-check", - [2, 3115, 19515], - [0, 3113, 2869, 26800, 26799, 28613, 28614, 28615, 28617, 28618, 28619], - [1, 2343, 19519], - [0, 19520, 19521, 19529, 2537], - [0, 16566, 28624, 21163], - [0, 1079, 13867, 1410, 1414, 1429, 1431, 28626, 21480, 1596, 2139, 13870, 2899, 3480, 28628, 4481, 1906], - [2, 13039, 7015], - [3, 1143, 17], - "indlastindex", - [2, 19523, 19524], - "doctrine", - [2, 17612, 202], - "object.g", - [0, 1612, 27, 1862, 705, 7085, 7289, 4731, 7102], - "roupby", - [2, 19528, 19530], - [1, 2343, 19536], - "/template-parser", - [2, 1177, 19533], - [2, 12908, 19534], - [0, 0, 19537, 19542, 2487], - [ - 0, 1389, 1525, 1610, 1177, 28635, 2026, 2297, 2871, 2881, 2891, 2895, 2897, 2900, 2904, 2912, 2915, 2921, 28636, - 2925, 2899, 3202, 28638, 3421, 15767, 2924, 4677, 28639 - ], - "escope", - "fs-copy-file-sync", - "linklocal", - [2, 3045, 4552], - [ - 0, 28641, 28642, 28643, 28644, 1616, 12588, 28645, 28646, 28647, 28648, 27, 2671, 3135, 11996, 28649, 28650, - 28651, 28652, 28653, 4160, 28654, 28655, 28656, 21000, 28657, 28658, 28659 - ], - [1, 2343, 19546], - "npm-which", - [2, 4523, 1574], - [0, 19547, 19548, 19549, 34352], - [0, 1170, 1676, 1209], - [0, 1429, 2899, 3752, 4193], - [0, 1885, 6599, 6645, 586, 12296, 28666, 28647, 28667, 2109, 12295, 1121, 8899], - [1, 2343, 19551], - [0, 19556, 19557, 19558, 34352], - "@schemastore/package", - "ts-export-assignment", - [2, 13996, 19553], - [2, 13970, 19554], - [0, 1362, 3310], - [0, 1429, 1177, 1192, 4193], - [0, 28674, 28676, 28677, 1885, 14554, 28678, 28679, 28680, 28681], - "-repositories", - [2, 1992, 19559], - [1, 2343, 19562], - [0, 19563, 19564, 19572, 2537], - [0, 16473, 28688, 2215, 26567, 3368, 3727, 4135, 4390, 27921, 4707], - [0, 1326, 1610, 1177, 2899, 3263, 29197, 28691], - "@es-", - "joy/jsdoccomment", - [2, 19565, 19566], - "are-docs-informative", - [2, 13721, 5651], - "spdx-expression-parse", - "synckit", - [0, 970, 11154, 1237, 3122, 14655, 1326, 14654], - "@es-joy/", - [2, 19573, 1875], - [3, 19567, 13], - [2, 4522, 1574], - [2, 19575, 19576], - "@hkdobrev/run-if-changed", - "pree", - [2, 5600, 19579], - [2, 5600, 3766], - "defaultsdeep", - [2, 6308, 19582], - "@types/sp", - "dx-expression-parse", - [2, 19584, 19585], - [3, 5210, 11], - [2, 1226, 19587], - "ype-", - "pratt-parser", - [2, 19589, 19590], - [2, 13587, 19591], - [2, 3032, 1697], - [1, 2343, 19596], - "open-editor", - [0, 19597, 19598, 19599, 2523], - [0, 1632, 2591], - [ - 0, 16868, 1448, 1610, 1177, 28698, 2616, 3321, 28699, 28702, 15512, 28704, 2654, 28706, 28707, 3493, 4039, - 25213, 4257, 4474, 4749 - ], - [0, 1936, 57, 6710, 91], - [1, 2343, 19604], - [ - 0, 68, 5522, 107, 19492, 19194, 19605, 19609, 19344, 23339, 6503, 19616, 4874, 5254, 1009, 1011, 1414, 19619, - 668, 1177, 1895, 1933, 19620, 1942, 19622, 1945, 1948, 1953, 19623, 1955, 1964, 1988, 17308, 1994, 2018, 2203, - 2899, 3486, 1894, 4135, 4320, 19624, 4323, 19626, 19629, 1531, 4494, 91, 4523, 19630, 4614, 4630 - ], - [0, 13678, 13679, 13681, 34352], - [1, 2343, 34428], - [0, 19613, 19618, 19631, 2523], - "@ota-meshi/eslint-plugin", - [3, 19605, 11], - "-kit-eslint-editor-vue", - [2, 13755, 19607], - [2, 19606, 19608], - "-scope", - [2, 5601, 19610], - [3, 19611, 14], - [0, 1149, 28713, 1676, 2026, 2070, 3507, 1997, 4135, 4148, 28715, 28716, 28717, 4707, 4729, 4747], - "@types/na", - "tural-compare", - [2, 19614, 19615], - "xbytes", - [0, 1429, 2151, 1161, 2272, 2899, 3378, 1862, 4039], - "env-cmd", - [2, 1931, 5550], - [2, 18008, 8546], - [2, 17585, 19621], - [2, 1954, 8770], - [2, 4946, 12054], - [3, 5978, 26], - [2, 19625, 188], - [3, 4330, 11], - "tylus", - [2, 19627, 19628], - [2, 4609, 19466], - [0, 1676, 6782, 3323, 15267], - "jsonc", - [1, 2343, 19634], - [0, 19635, 19636, 19642, 2443], - [0, 1080, 1560, 1704, 2145, 20103, 3164, 3171, 3494, 3781, 1000], - [0, 4856, 6503, 1009, 1011, 1429, 1177, 1881, 1895, 1938, 2675, 2899, 3421, 1894, 4193, 4196, 4474, 4481, 91], - "-flow", - [2, 12184, 19637], - "axobject-query", - "damerau-levenshtein", - "es-iterator-helpers", - [0, 3212, 13106, 28726, 6710, 676, 5472, 1973, 27, 28728], - [1, 2343, 19649], - "jsx-ast-utils", - [2, 9551, 2640], - "regex-test", - [2, 4099, 19646], - [2, 18996, 7015], - [0, 19651, 19652, 19653, 2399], - "to-ast", - [0, 28733, 2755, 4135, 28735, 3348, 4707], - [0, 1587, 1610, 1177, 1900, 1903, 1938, 1954, 1958, 2675, 1192, 2990, 28737, 1894, 4039], - [0, 28740, 28743, 22005, 28744, 22011, 15844, 28747, 28748, 9044], - [1, 2343, 19655], - [0, 19656, 19658, 19659, 2523], - [0, 1304], - [2, 18576, 13064], - [0, 1364, 2026, 2899, 4170, 4342], - [0, 3424, 28438], - [1, 2343, 19661], - [0, 16583, 11580, 11581, 4139], - [1, 2343, 19663], - [0, 19664, 19665, 19666, 4139], - [0, 20584, 3188, 3278, 3368, 3393, 3411, 1997, 4039, 4135, 4390], - [0, 1168, 2272, 3297, 4389], - [0, 970, 11154, 1237, 3122, 14655, 1326, 17180], - [1, 2343, 19668], - [0, 19669, 19670, 19672, 2537], - [0, 3299], - [0, 2899, 1177, 28768, 640, 1610, 91, 4874, 6503, 1011, 1009], - [2, 1927, 8982], - [0, 28770, 6621, 7009, 28771, 28772, 28773], - "ts-i", - [1, 2343, 19677], - "gnore-import", - [2, 19673, 19675], - [0, 19678, 0, 19679, 4139], - [0, 28792, 28790, 28782, 28786, 1304, 1309, 1594, 2026, 2151, 28783, 3368, 4135], - [0, 6038, 8899, 28794, 2124], - [1, 2343, 19681], - [0, 19682, 19683, 19684, 2399], - [0, 3263, 2164, 2070, 3157, 1437, 1209, 640, 2185, 28799, 1615, 28800, 28802, 28804, 26567], - [0, 3421, 2899, 1177, 4039, 2151, 28806], - [0, 1623, 22022, 7121, 2278, 4329, 590], - [1, 2343, 19686], - [0, 19690, 19691, 19693, 2537], - "-helpers", - [2, 9654, 19687], - [2, 7627, 19688], - [0, 12680, 28813, 28816], - [0, 3421, 4389, 4193, 1090, 1177], - [3, 3995, 13], - [0, 16618, 5957, 12692, 1605, 28821, 27105], - [1, 2343, 19695], - [0, 19697, 0, 19698, 2537], - "@chromatic-com/storybook", - [0, 3460, 1512, 3171], - [0, 27, 2947, 2090, 36], - [1, 2343, 19700], - [0, 0, 19701, 19702, 2523], - [0, 3421], - [0, 6926, 6668, 3348], - [1, 2343, 19704], - [0, 0, 19705, 19710, 2399], - [0, 2151, 2899], - [2, 19707, 103], - [3, 35573, 13], - "ug", - [2, 17304, 19708], - [0, 28837, 2282, 28838], - [3, 3708, 17], - "kg", - [2, 19711, 19712], - [1, 2343, 19715], - [0, 19716, 0, 19717, 4139], - [0, 6523, 4747], - [0, 28844, 6574, 11100, 28845, 6807, 2013, 28847, 28849, 28850, 5957], - [1, 2343, 19719], - [0, 19720, 19721, 19722, 2537], - [0, 3354], - [0, 28856, 28858, 4874, 1177, 1894, 3706, 4493, 91, 8552, 1984], - [0, 28860, 57, 9381, 3354, 28861], - [1, 2343, 19727], - [3, 19525, 24], - "tosorted", - [2, 5613, 19725], - [0, 19730, 19733, 19737, 2443], - "repeat", - [2, 18996, 19728], - [0, 2571, 2741], - [2, 5609, 14255], - [3, 5235, 22], - [0, 13614, 1158, 1177, 2708, 17400, 3410, 3421, 3435, 4103, 4389], - "unction-bind", - [2, 19732, 19734], - "ls-engines", - [0, 2051, 6970, 28869, 1496, 1585, 24135], - [1, 2343, 19739], - [0, 19740, 19741, 19742, 2523], - [0, 2212, 3263, 2856, 3776, 1209, 4391, 2151, 640, 3337], - [0, 4647, 2899, 2272, 1168, 1448, 28877, 2759, 1173, 1596, 2820, 28879, 17370, 1267], - [0, 28881, 28882, 3358, 970], - [1, 2343, 19744], - [0, 0, 19746, 19747, 2487], - "refa", - [0, 28043, 1409, 1414, 1177, 1895, 2203, 28890, 28891, 28892, 28894, 1894, 2658, 28895, 18661], - [0, 28897], - "analysis", - "-ast-analysis", - [2, 6961, 19749], - "scslre", - [1, 2343, 19760], - "eslint-s", - "-rule-tester", - [2, 11298, 19754], - [2, 19753, 19755], - [2, 19758, 29135], - [3, 17306, 17], - "@types/pako", - [0, 19762, 19763, 19764, 2523], - [2, 3192, 15264], - [0, 1457, 1676, 13775, 3181, 28904, 4135, 18174, 4351, 4453, 28903], - [0, 192, 5467, 1149, 1506, 1177, 2675, 2899, 3421, 3752, 4131, 4170], - [0, 200, 3233, 3233, 5001, 22687, 28908, 2999, 7009], - [1, 2343, 19766], - [0, 19768, 0, 2514, 2523], - "safe-regex", - [0, 1797, 4384], - [3, 19494, 16], - "desecurity", - [2, 19769, 19770], - [1, 2343, 19774], - [2, 202, 1965], - [0, 19775, 19776, 19777, 2537], - [0, 4039, 1764, 28917, 4747, 4135], - [0, 705, 4389], - [0, 28921, 3364, 7242, 28125, 13527], - [3, 3568, 11], - "red-black-tree", - [2, 19778, 19779], - [1, 2343, 19785], - "al-red-black-tree", - [2, 19076, 19782], - [2, 5537, 19783], - [0, 19787, 0, 19788, 2523], - "sonarjs", - [ - 0, 28367, 1091, 1092, 20437, 12384, 1096, 28927, 1170, 1364, 1457, 1575, 1594, 1648, 2026, 9243, 28929, 28930, - 2070, 2593, 28933, 28934, 2856, 28935, 2863, 28936, 3083, 12792, 28940, 3230, 3241, 3277, 16617, 28859, 3361, - 3445, 3519, 28944, 1552, 2999, 4010, 28945, 28948, 4709, 7801, 4745, 4747 - ], - [ - 0, 28950, 3366, 5284, 6710, 5130, 5995, 4967, 12660, 28951, 28954, 28956, 28957, 1781, 28959, 2844, 2856, 4745, - 1896, 28960 - ], - [1, 2343, 19790], - [0, 19791, 9888, 19792, 2537], - [0, 4545, 1437], - [0, 10446, 28967, 9753, 14690, 57], - [1, 2343, 19794], - [0, 19796, 6538, 2514, 2523], - [2, 4353, 67], - [0, 23432], - [2, 19612, 594], - [2, 5600, 594], - "@types/less", - [2, 13058, 3675], - [3, 4890, 11], - [2, 19801, 4332], - "svelte-i18n", - [1, 2343, 19806], - "sveltejs", - [0, 0, 19807, 19808, 4139], - [0, 2398, 3183, 2899], - [ - 0, 28977, 28978, 28979, 2090, 28980, 17996, 18442, 28981, 7517, 2150, 3374, 3403, 10903, 15323, 4207, 28982, - 28983, 28984, 28985 - ], - [1, 2343, 19810], - [0, 0, 8134, 19813, 2537], - "-formatting", - [2, 1939, 19811], - [0, 3374, 1002, 12831, 15427, 1871, 28992, 28994, 3766, 3767, 28996, 4301, 6678, 28997], - [1, 2343, 19815], - [0, 0, 0, 19816, 2523], - [0, 29004, 28992, 1388], - [1, 2343, 19818], - [0, 19819, 19820, 19821, 2537], - [ - 0, 1437, 16064, 1494, 1595, 1700, 29013, 1874, 2020, 5989, 29016, 2613, 15980, 2704, 2720, 2744, 29018, 29020, - 29022, 2991, 29023, 3074, 3157, 29024, 29025, 21420, 3445, 29026, 27534, 3505, 27168, 3919, 4094, 4135, 5513, - 26573, 4562 - ], - [0, 21642, 5254, 1166, 1532, 24491, 2151, 29028, 4193, 4294, 4400, 29030, 1906], - [0, 13326, 200, 3378, 20001, 3358, 6645, 15525, 15208, 1528], - [1, 2343, 19823], - [0, 19828, 19830, 19831, 2537], - [2, 1463, 6961], - "regexp-", - "regexp-tree", - "regjsparser", - [ - 0, 3242, 2714, 4390, 2070, 3368, 3917, 4248, 23433, 1437, 3478, 4707, 23432, 3483, 4135, 9448, 1458, 29037, - 21505, 640, 3727, 29039, 3181, 9451, 9452, 2976, 2979, 2981, 29042, 29044, 4425, 29051, 2215, 29053, 25881, - 29054, 29055, 25888, 29056, 29057, 9459, 4351, 2613, 3386, 3762, 635, 29059, 25893, 26567, 29061, 9462, 29063, - 643, 9465, 3397, 29066, 29067, 9476, 9479, 9539, 19570, 638, 4588, 9496, 9501, 9506 - ], - "@lubien/fixture-beta-package", - [ - 0, 1091, 4384, 1687, 3297, 9542, 3984, 4039, 1483, 3988, 29069, 1092, 29070, 3393, 10630, 29071, 29073, 9515, - 9516, 26037, 29077 - ], - [0, 1161, 5260, 6878, 6661], - [1, 2343, 19833], - [0, 19834, 19840, 19845, 2537], - [ - 0, 1499, 3467, 3157, 1437, 2020, 2742, 1695, 29085, 2205, 1209, 4135, 7094, 3537, 1703, 2720, 3181, 3309, 4294, - 4425, 3505, 29088, 9478, 6045, 14564, 29084, 4562, 29087 - ], - "@ver", - "/eslint-config", - [2, 5401, 19836], - [2, 19835, 19837], - "bumpp", - [0, 1906, 1173, 1282, 1267, 1255, 1245], - " eslint plugin", - [2, 1984, 19841], - "eslint ", - [2, 19843, 1932], - [0, 3378, 29093, 4796, 17507, 13729, 4354, 24313, 5592, 24095, 200, 6953, 29095, 29096, 7242, 4797], - [1, 2343, 19847], - [0, 0, 19848, 19852, 2537], - [ - 0, 29101, 17212, 4856, 9417, 29103, 29104, 12458, 29105, 7637, 29111, 4870, 6503, 4874, 29115, 29117, 20374, - 6510, 7812, 5254, 29122, 6513, 29125, 1009, 1011, 1420, 1429, 1431, 21480, 1437, 1483, 1525, 1610, 20573, 1177, - 1895, 29128, 1903, 1938, 1942, 1953, 1958, 2071, 27125, 2105, 29129, 2613, 2714, 2822, 2858, 29133, 3019, 1209, - 3125, 2899, 3397, 3400, 3478, 13723, 3530, 1894, 3730, 29136, 29087, 4038, 4039, 11054, 4135, 29138, 4170, 4193, - 4232, 18201, 4294, 4474, 91, 29139, 4558, 4562, 29140, 1983, 29141, 29142, 26744, 4749 - ], - "name-", - [2, 19849, 1155], - [2, 4732, 19850], - [0, 4796, 3378, 6661, 3076, 29144, 18280], - [2, 4807, 19851], - [1, 2343, 19855], - [0, 19856, 6538, 2514, 2523], - [0, 2613, 3727, 4135, 4588], - [1, 2343, 19858], - [0, 19859, 19865, 19867, 2487], - [0, 1091, 8531, 1437, 1595, 1676, 2205, 2687, 2745, 2858, 3074, 3157, 3545, 4135, 4207, 4300, 4507, 4588], - [3, 10879, 16], - [2, 19860, 13921], - "importx", - "ink-", - [2, 19863, 1975], - [ - 0, 5087, 4874, 1009, 1011, 668, 29154, 1177, 29155, 29158, 1930, 1938, 1939, 1955, 1982, 2089, 1192, 17312, - 29160, 1894, 4468, 91 - ], - "eslint-test", - [0, 671, 9654, 6661, 13716, 29162, 3390], - [1, 2343, 19869], - [0, 19870, 19872, 2514, 4139], - [0, 15980, 3727], - "esrecurse", - [0, 635, 9516, 9515, 29169, 4384], - [1, 2343, 19874], - [0, 19875, 19876, 19879, 2399], - [0, 9459, 25336, 26567, 21505, 29176, 29174, 3386, 3727], - [0, 9516, 9515, 9448, 3297, 28691, 4248, 4384], - [2, 1006, 13060], - "json-diff", - [0, 3378, 29179, 1612], - [1, 2343, 19881], - [0, 19882, 19885, 19886, 2537], - [0, 1437, 26079, 3919, 3181, 1110, 1615, 4165, 3152, 29185], - [3, 8724, 21], - [2, 19883, 676], - [0, 3421, 4749, 2899, 1177, 4039, 1503, 3479, 2151, 4874, 3696, 1280, 29188, 13983, 1225], - [0, 200, 1523, 29190, 4990, 3378, 29191, 18462, 21003, 4144, 12804, 5957], - [1, 2343, 19888], - [0, 19889, 19890, 19886, 2443], - [0, 4707, 26079, 3530, 1110, 1615, 4165, 3152, 9488], - [0, 1414, 2931, 4749, 1776, 2899, 1177, 23909, 29197, 1159, 17529], - [1, 2343, 19892], - [0, 19893, 8134, 19894, 2523], - [0, 16687, 20789], - [0, 3378, 18462, 3403, 3383, 20052, 17180, 20054, 1508, 200, 6876, 16701, 8435], - "-fb", - "esprima-fb", - [1, 2343, 19898], - [0, 0, 19899, 19900, 2523], - [0, 5087, 4874, 1009, 1011, 10817, 1177, 1895, 1192, 2990, 26230, 4039, 4042, 4468, 91], - [0, 29208, 1745, 29210], - [1, 2343, 19902], - [0, 19903, 19904, 19915, 2537], - [0, 1437, 1479, 1525, 1676, 2720, 3741], - [0, 1429, 2899, 3215, 4255], - "escomplex-js", - "thing.js", - [2, 7067, 19906], - [3, 2912, 12], - "techpreview-launcher", - [2, 19908, 19909], - [2, 17485, 18551], - [2, 813, 19911], - "8.0.0", - [2, 5857, 19913], - [0, 18497, 3378, 29218], - [1, 2343, 19917], - [0, 19918, 19919, 19923, 2487], - [0, 2720, 3776], - [0, 1173, 1212, 1245, 29224, 1280, 3400], - "gulp-ta", - "g-version", - [2, 19920, 19921], - [0, 3378, 200, 8429, 1523, 3888, 8791, 24095, 3409, 29227], - [1, 2343, 19925], - [0, 19926, 19927, 19928, 2487], - [0, 2571, 3183], - [0, 13614, 1159, 9254, 1177, 2708, 2807, 3421, 4103, 4389], - [0, 3410, 16774], - [1, 2343, 19930], - [0, 19931, 19932, 2514, 2487], - [0, 9892, 25886, 29239, 10744], - [0, 4384, 9515, 9516], - [1, 2343, 19934], - [0, 0, 19935, 2514, 2537], - [0, 1429, 2814, 2832, 2899, 29246], - [1, 2343, 19938], - [2, 2009, 10896], - [0, 19947, 19949, 19951, 2537], - "@ethereumjs/config-nyc", - [3, 19939, 19], - [2, 19940, 1894], - [2, 19940, 11540], - [3, 19942, 21], - [2, 19943, 671], - [3, 17583, 11], - "karma-tap", - [0, 1437, 1482, 29251, 2674, 2720, 29253, 4135, 8363, 4747], - "typestrict", - [0, 1366, 1501, 19771, 2556, 620, 3203], - "transactions", - [0, 1965, 3413, 19773], - [1, 2343, 19953], - [0, 19954, 19958, 19959, 2523], - [0, 29260], - "-cryptography", - [2, 9439, 19955], - "rlp", - [0, 5087, 4874, 1009, 1011, 1587, 1177, 1895, 1955, 2675, 1192, 1894, 3720, 4039, 4468, 4474, 91], - [0, 3414, 29263, 200, 5122, 8310, 18496, 89, 202, 91, 5284, 2924, 1192, 4967, 5995, 12660], - [1, 2343, 19966], - "@types/assert", - "cp256k1", - [2, 5252, 19962], - "karma-t", - [2, 19964, 2528], - [0, 0, 19967, 19968, 2487], - [0, 1429, 2258, 2277, 2298, 2300, 23167, 2297, 2878, 2881, 2895, 2900, 2904, 2915, 3006, 2899], - [0, 3415, 6988, 1671, 6901, 29269, 29271], - [1, 2343, 19970], - [0, 19973, 19975, 19978, 2523], - "es-lookup-scope", - "os-tmpdir", - [0, 29276, 29277, 1525], - "qs-iconv", - [ - 0, 48, 53, 87, 94, 1195, 1208, 1212, 1544, 1593, 1610, 1177, 1881, 1938, 2026, 2151, 2182, 29280, 29282, 29283, - 29285, 3421, 3524, 4151, 4535, 4537, 2924 - ], - "eval", - "evaulate", - [0, 1283, 17950], - [1, 2343, 19980], - [0, 0, 0, 19981, 2523], - [0, 2703, 202], - "pause-stream", - "combiner", - [2, 4279, 19983], - [1, 2343, 19990], - "asynct", - "it-is", - "stream-spec", - "ubelt", - [0, 0, 19992, 19993, 2399], - "flatmap", - [0, 5517, 13614, 23237, 19325, 1159, 1414, 9254, 1177, 2807, 2708, 3410, 4103, 4389], - [0, 3417, 3418, 2649], - [1, 2343, 19995], - [0, 0, 0, 19996, 2399], - [0, 1623, 12080, 29300, 13777, 3585], - "addEventListener", - "addListener", - "pub/sub", - "emits", - "publish", - [1, 2343, 20004], - "subscribe", - [0, 20005, 0, 20006, 2537], - [ - 0, 1797, 3467, 4449, 2117, 3445, 4745, 1170, 1495, 4484, 4747, 1759, 2687, 4135, 2089, 1836, 2777, 3181, 4459, - 1477, 3527, 4393, 1480, 2149, 2858, 3404, 4290, 4748, 1763, 4480, 29306, 24759, 29308, 29309, 29310, 29313, - 29317 - ], - [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 9627, 9628, 9659, 9648, 9649, 29319], - [1, 2343, 20013], - "-browser", - "-browsers", - [2, 7177, 20009], - "sauce-", - "sauce-test", - [0, 20017, 20020, 20021, 2537], - "EventEmitter", - [2, 20014, 1276], - [2, 20014, 1278], - [ - 0, 14022, 8697, 29324, 1573, 1677, 2102, 2105, 15261, 2179, 2070, 11935, 29325, 14024, 29328, 11938, 11940, - 11943, 3093, 29330, 3478, 29334, 4025, 4039, 4174, 29335, 14025, 4747 - ], - "Events", - "reactor", - [0, 29338, 13103, 4019, 4232, 4255, 4257, 4384, 3348, 4707], - [0, 4504, 16237, 20049, 5472], - [1, 2343, 20023], - [0, 20024, 20025, 20026, 2523], - [0, 29358, 8818, 5941, 28935, 26865, 13824, 12285, 3509, 29349], - [0, 29355, 29359, 29362, 4874, 4493, 91, 1984], - [0, 5592, 2210, 3452, 29365, 29367, 29368, 29369, 29370, 3422, 1118, 27662, 1745], - [1, 2343, 20028], - [0, 20029, 20030, 20031, 2537], - [0, 29358, 29377, 2822, 12285, 8126], - [0, 29355, 7637, 29380, 3297, 4493, 91, 1984], - [0, 5592, 1118, 2210, 1745, 27662, 29370, 3422, 3452, 29369, 29365, 29368, 29367, 28360, 8124], - [2, 3159, 591], - [2, 13788, 20032], - "human-", - [2, 20034, 7073], - [1, 2343, 20037], - [0, 0, 10435, 2514, 4139], - "final-newline", - [2, 4293, 20038], - [3, 4759, 11], - [1, 2343, 20045], - "get-node", - "is-in", - "is-in-ci", - [0, 0, 20046, 20048, 2523], - [0, 1906, 1166, 1209, 3130], - "is-running", - [0, 3048, 3426, 2051, 3583, 6778, 5286, 5258, 6805, 29390, 6422, 1858, 1388], - "subprocess", - "fork", - "execfile", - "bin", - [1, 2343, 20055], - "binaries", - [0, 0, 20056, 20057, 2537], - [0, 1389, 2323, 2346, 27608, 29396, 2436, 2447, 2463, 2494, 2496, 2530, 2272, 2839, 2297, 2881, 2900, 2899], - [0, 3048, 3428, 4160, 3135], - [1, 2343, 20059], - [0, 0, 20060, 20066, 2487], - [ - 0, 13614, 29404, 1159, 1593, 22932, 1855, 1177, 2133, 2159, 2070, 29406, 2569, 29410, 2708, 2762, 19073, 3206, - 3410, 3421, 4103, 23948, 4135, 19729, 4389 - ], - "stdio", - "stderr", - "drain", - "flush", - "3584", - [0, 3430, 7123, 3048, 1646, 3721], - [1, 2343, 20068], - [0, 0, 20069, 20070, 2537], - [0, 13614, 13616, 1177, 14741, 29416, 2741, 4389], - [0, 6801, 3432, 6964, 1858], - [1, 2343, 20073], - "-jsdom-abstract", - [0, 0, 20077, 20078, 4139], - "expect-", - [2, 20074, 594], - [2, 552, 20075], - [0, 3421, 1429, 2899, 1596, 3202, 29424], - [0, 1697, 3403, 7318, 29426, 3038, 3205, 1758, 3743, 3048, 7002, 29428, 29429, 6692, 3639, 6803], - [1, 2343, 20080], - [0, 20081, 20084, 20086, 2487], - [0, 1417, 7272, 13609, 29440, 2569, 3433], - "mkal", - [2, 1949, 20082], - [0, 13613, 13614, 1389, 1177, 2133, 2159, 13619, 2571, 3206, 3410, 3421, 4103, 6810, 4389], - "pkg-pr-new", - [0, 7276, 3426, 6789, 2051, 7107, 6970, 7288, 6849, 6763, 6422, 1858], - [1, 2343, 20089], - "type-check", - [0, 20090, 20091, 20092, 2487], - [0, 1417, 7272, 13609, 29440], - [0, 13613, 13614, 20492, 1159, 9254, 1177, 2159, 13619, 2708, 3410, 3421, 4103, 4389], - [0, 6944, 6694, 6801, 3437, 6693, 7221, 6615, 7194, 1858, 3048, 3432, 6422, 6763], - "orms", - [1, 2343, 34459], - [0, 29450], - "array-f", - [0, 3421, 2899, 1177, 1954, 1938, 1958, 1903, 1948, 1970], - "array-flatten", - "setprototypeof", - "merge-de", - [1, 2343, 20104], - "scriptors", - [2, 20100, 20102], - [0, 20107, 11686, 20108, 2537], - "-password", - [2, 16722, 20105], - [0, 29456], - [0, 3441, 3046, 6985, 16114], - [1, 2343, 20110], - [0, 20111, 20112, 20113, 2537], - [0, 29462, 29464, 1138, 1457, 1615, 2687, 4459], - [0, 21122, 4874, 2675, 2990, 1894, 4039, 91], - [0, 2070, 2282, 1444], - [1, 2343, 20115], - [0, 20116, 20118, 20119, 2523], - [0, 29474, 3029], - [2, 30722, 20731], - [0, 6503, 29476, 1503, 2272, 2899, 3203, 3210, 3421, 4474, 91], - [0, 29478, 28794, 29479, 24996, 29480, 25004, 20181, 29481, 29483, 6667], - "automatically", - [2, 1163, 8623], - [3, 20121, 11], - [2, 20122, 7120], - [2, 20121, 2353], - [1, 2343, 20126], - [0, 20127, 8002, 20128, 2523], - [0, 29488, 29490, 28428, 24488, 28429, 27908], - [ - 0, 1896, 3445, 3456, 8423, 8427, 6587, 8430, 8428, 10441, 8429, 1388, 6038, 8435, 8433, 1002, 10443, 10446, - 7058, 1614, 2978, 1451, 3729, 5351, 2090 - ], - [1, 2343, 20130], - [0, 20131, 20132, 20133, 2523], - [0, 2096, 2185, 3157, 3445, 4400], - [0, 1166, 2020, 1906], - [ - 0, 13326, 200, 1896, 3445, 3456, 8423, 8427, 6587, 8430, 8428, 10441, 8429, 1388, 6038, 8435, 8433, 1002, 10443, - 10446, 1614, 2978, 1451, 3729, 5351, 2090 - ], - [1, 2343, 20135], - [0, 20136, 20138, 20139, 2487], - [0, 29501, 29505, 12285], - "express3", - [0, 5087, 7637, 8818, 1170, 29509, 1192, 2845, 29512, 3244, 1894, 4232, 4468, 4474, 91], - [0, 3452, 8124, 5576, 1170, 4967, 1388, 3212, 91], - "partials", - [1, 2343, 20142], - [0, 20143, 20144, 20145, 2523], - [0, 1677, 2639, 2854, 3105, 3744, 89, 3824, 1155], - [ - 0, 68, 470, 1173, 1248, 15643, 1596, 1177, 1879, 1881, 1938, 1947, 1958, 1959, 2200, 2626, 1192, 3363, 3400, - 705, 4008, 7707 - ], - [0, 8124, 3452, 29521, 1936, 1745, 1179], - "unless", - [2, 2032, 20146], - [1, 2343, 20149], - [0, 20152, 20153, 20154, 2443], - "authn", - "authz", - [0, 6825, 3263], - [0, 2070, 705, 4389], - [0, 3455, 29528, 23196, 29531], - [1, 2343, 20156], - [0, 0, 5795, 2514, 2487], - [1, 2343, 20158], - [0, 20159, 20160, 2514, 4139], - [0, 29539, 705], - [0, 1173, 1267, 1177, 1879, 1938, 1947, 1959], - [1, 2343, 20162], - [0, 20163, 9839, 20128, 34352], - [0, 2755], - "caching", - "expressjs", - [1, 2343, 20167], - [0, 20168, 20169, 20172, 2537], - [0, 4720, 3183], - [0, 29551, 4384], - "cjs-mock", - "hoare", - [0, 7233, 7058, 5675, 57, 7119, 200, 1523], - "tRPC", - "RPC", - "express.js", - [2, 10988, 16957], - [1, 2343, 20180], - "fully-typed", - "type-safe", - [0, 20187, 20191, 20192, 4139], - "pi", - "typed-api", - "express-api", - "http-api", - "client-s", - [2, 20185, 2847], - [0, 1637, 29559, 3561], - "unit-testing", - [2, 13843, 5576], - "web-de", - [0, 1175, 1193, 1245, 1257, 1264, 1628, 1192, 4307, 2924], - [0, 6829, 11337, 2054, 16862, 6707, 7293, 2924], - "velopment", - [2, 20190, 20193], - "web-api", - [1, 2343, 20197], - [0, 20198, 20199, 20200, 2443], - [0, 29566, 29567, 4717, 20088, 19190, 26007], - [0, 29569, 2899], - [0, 14690, 6802, 29572, 200], - [3, 8286, 12], - [2, 20201, 364], - "lient-", - "redirects", - [2, 20203, 20204], - [2, 13224, 20205], - [2, 20201, 20206], - [3, 20207, 13], - [1, 2343, 20210], - [0, 20213, 20214, 20216, 4139], - "reset-classic", - [2, 20208, 20211], - [0, 1437, 1477, 1480, 29018, 16232, 3074, 29581, 4290], - [0, 4874, 1166, 2188, 29583, 4481, 1906], - "sanitization", - [0, 200, 1478, 6787, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921], - [1, 2343, 20218], - [0, 20219, 20220, 20222, 2399], - [0, 1834, 29590, 29591], - [0, 2012, 2530, 2272, 3102, 3159, 2899, 3760, 4170, 4600], - "openapi3-ts", - [0, 1149, 5957, 12804, 2940], - [3, 19441, 15], - [2, 20223, 6643], - [1, 2343, 20228], - "wagger-ui-express", - [2, 5051, 20226], - [0, 20229, 20230, 20231, 2443], - [0, 1149, 1362, 18443, 9421, 1209, 3507, 29600, 29601], - [0, 1414, 1437, 2070, 2899, 3230, 3259, 3519, 4135, 4170, 4193, 4246], - [0, 3469, 27812, 18035, 3259, 25638, 29605, 7827, 3230], - "camelize-ts", - [1, 2343, 20234], - [0, 0, 0, 20235, 2537], - [0, 202, 888, 364, 1237], - [1, 2343, 20237], - [0, 20238, 11686, 20239, 2487], - [0, 19972, 25493], - [0, 6639, 6884, 4571, 29615, 3403, 3741, 29616], - [1, 2343, 20241], - [0, 0, 20242, 20244, 2537], - [0, 4856, 4864, 6503, 4874, 4891, 26584, 1429, 2020, 2151, 2899, 3377, 4474, 2924, 4707], - "snakify-ts", - [0, 5194, 6778, 29622, 29624, 18135, 1871, 1283, 8958], - [3, 18009, 14], - [2, 20245, 4990], - [2, 4120, 7020], - [3, 8116, 9], - [1, 2343, 20253], - "pecification", - [2, 20248, 20250], - [2, 4364, 1745], - [0, 0, 0, 20254, 2523], - [0, 3475, 5317, 29632, 29633, 3474, 9006, 4967, 1388], - [1, 2343, 20256], - [0, 20257, 20258, 20259, 2523], - [0, 29638, 1525, 2131, 2742, 2975, 4135, 4449, 36872], - [0, 19181, 442, 19344, 9237, 18491, 4874, 5254, 6520, 36890, 1009, 1011, 1177, 26698, 4039, 91], - [0, 200, 29641, 19101, 20001], - [1, 2343, 20261], - [0, 20264, 20265, 20267, 2523], - "-symbols", - [2, 3426, 20262], - [0, 3480], - [0, 4874, 1166, 1702, 4481, 1906], - "is-extendable", - [ - 0, 1862, 2018, 2013, 13771, 2016, 26349, 6868, 20000, 15535, 19138, 29647, 29648, 6703, 29649, 1803, 1388, 965, - 1149, 7003, 6567, 1362 - ], - "array-slice", - "benchmarked", - [1, 2343, 20271], - [0, 0, 20274, 20276, 2523], - "for-own", - "kind-of", - [0, 1166, 1437, 1702, 17474, 29654, 17477, 4481, 1906], - "props", - [0, 1862, 3053, 29656, 6703, 6910, 21369, 7253, 25824, 29657, 1149, 7003, 6567, 1540, 6994, 12804, 1362], - [1, 2343, 20278], - [0, 20279, 20285, 20286, 2537], - [0, 2017, 3480], - [2, 20284, 29685], - [2, 1884, 2924], - [3, 4679, 10], - [2, 20282, 3031], - "@pa11y/", - [0, 13789, 5366, 4874, 1317, 1701, 1702, 17474, 18669, 29654, 17477, 4481, 4494, 91, 1906], - [ - 0, 1862, 3768, 28483, 7051, 6760, 6994, 6925, 7094, 6882, 6870, 7072, 27334, 27338, 29664, 12692, 5957, 1149, - 7003, 6567, 1362 - ], - [1, 2343, 20288], - [0, 0, 20289, 20291, 2443], - [0, 1166, 1702, 17474, 21638, 4193, 17477, 4481, 1906], - "@types/yauzl", - [0, 1862, 17481, 1851, 29672, 1149, 7003, 6567, 6901, 17480, 12618, 1362], - [1, 2343, 20293], - [0, 20294, 20295, 20296, 2537], - [0, 2070], - [0, 1192, 1894, 10761], - [0, 1745, 3709, 29679, 6774], - [1, 2343, 20298], - [0, 20299, 20300, 20301, 2523], - [0, 20280, 1169, 1324, 1525, 1842, 2929, 3257, 3357, 3758, 4135], - [0, 1414, 1177, 29689, 2899, 29691, 10627, 4193], - [ - 0, 6653, 7320, 19748, 31152, 13716, 13428, 11346, 1169, 16790, 200, 33055, 29727, 34150, 26632, 3482, 3758, - 11937, 34151, 5472, 1155, 34152 - ], - [1, 2343, 20303], - [0, 20307, 20308, 20309, 2537], - "gulp-jsdoc3", - [2, 2462, 6504], - [2, 4598, 353], - [0, 29069, 9510, 9479, 9539, 643, 9448, 29051, 21505, 3386, 3393, 9462, 3397, 3727, 29698, 29697, 4248, 4390], - [0, 635, 9516, 9515, 2613, 29169, 3297, 29701, 4039, 4384], - [0, 6666, 3378, 3358], - [1, 2343, 20311], - [0, 20313, 20315, 20316, 4139], - "color-support", - [0, 22970, 22971, 29707, 1668, 18145, 29708, 1209, 3074, 3093, 3478, 3545, 4507, 29711], - [2, 13721, 15526], - [0, 13789, 11477, 4870, 4874, 29717, 977, 1701, 2096, 2182, 29721, 3505, 29722, 4494, 91, 1906], - [ - 0, 27968, 5351, 13755, 5122, 1002, 23992, 4202, 12197, 29724, 29726, 13008, 8745, 8340, 6398, 17461, 3758, 3195, - 158, 8221, 8924, 1936, 29727, 23691, 20630, 20631, 18048, 20637, 21881 - ], - "console.log", - [1, 2343, 20320], - "timestamp", - [0, 0, 20321, 20322, 2537], - [0, 4874, 7677, 22839, 33261, 35609, 1177, 1938, 1942, 2832, 91, 1983, 1984], - [0, 4967, 5995, 5354, 4963, 181, 6624, 24456, 23362, 27448], - [1, 2343, 20324], - [0, 0, 20326, 20331, 2443], - "pure-rand", - [0, 87, 5583, 811, 816, 1177, 2193, 2899, 3253, 26777, 3421, 4042, 4073, 4167], - [3, 16596, 12], - [2, 20327, 2024], - "poisoning", - [2, 20327, 20329], - [0, 15008, 25386, 25388, 16518], - "based", - "based testing", - [2, 4635, 20333], - [2, 11861, 10428], - "quickcheck", - [1, 2343, 20338], - [0, 20343, 5795, 20344, 2487], - "jscheck", - "jsverify", - "fuzz", - "fuzzer", - [0, 27404, 1437, 12084, 2021, 2088, 2185, 2205, 2654, 2863, 3157, 3173, 3490, 814, 29742, 4562, 4748], - [0, 3487, 5995, 200, 29744, 5592], - [1, 2343, 20346], - [0, 20352, 20356, 20357, 2523], - "@fast-c", - "sv/format", - [2, 20347, 20348], - "@fast-csv/", - [2, 20350, 1644], - [0, 29749, 3084, 4339], - "writer", - "csv writer", - "CSV", - [0, 442, 1759, 1177, 1895, 1938, 1953, 1955, 1958, 2203, 1209, 2899, 1894, 4419, 1531, 91], - [0, 3487, 5576, 10768, 29752, 36, 5995, 5592, 4030, 1781], - [1, 2343, 20359], - [0, 0, 20360, 20361, 2487], - [0, 1362, 1429, 1506, 2899], - [0, 12804, 4166], - "psql", - [1, 2343, 20364], - [0, 20367, 34487, 20379, 34352], - [3, 19185, 12], - [2, 20365, 4262], - [0, 97, 5663, 1620, 29762, 29765, 4729], - "macchiato", - [2, 20365, 20368], - "erge2", - [2, 6502, 20370], - "@types/pi", - "comatch", - [2, 20372, 20373], - "bencho", - "rmlnc", - [2, 16693, 20376], - "fdir", - [0, 6599, 5131, 5592], - "hereby", - [1, 2343, 20383], - "snap-shot-it", - [0, 20386, 0, 20387, 2523], - "imple", - [2, 20384, 1744], - [0, 18089], - [0, 1936, 57, 12075, 29790, 10658, 2062, 29791, 29792, 15512, 3493, 1753, 29793, 29794, 1644, 4141], - [1, 2343, 20389], - [0, 0, 20390, 2514, 2487], - [0, 2899, 1177, 2759, 1317, 29801, 1311, 1954, 1938, 1958, 1903, 1970], - [1, 2343, 20392], - [0, 20393, 20395, 20396, 2399], - [0, 29806, 4578, 1433], - "strnum", - [0, 1429, 2899, 3095, 3752, 1434, 29810], - [0, 2026, 1544, 1303, 20150, 5165], - [1, 2343, 20399], - "js2xml", - [0, 20401, 20402, 20403, 4139], - "json2xml", - [0, 3501], - [0, 3095, 2899, 1429, 1434], - [0, 3495, 3497, 1303, 20150, 5165, 13445], - [1, 2343, 20405], - [0, 20406, 20407, 20408, 2537], - [0, 1433], - [0, 2899, 1429, 1434], - [0, 3495, 2703, 1303, 20150, 5165, 29824, 6875], - "avvio", - "toad-cache", - [1, 2343, 20421], - "find-my-way", - "@fastify/", - [2, 20413, 1851], - "-warning", - [2, 3729, 20415], - "abstract-", - [2, 20417, 6807], - "-my-request", - [2, 13318, 20419], - [0, 20429, 20407, 20430, 4139], - "-json-parse", - [2, 18112, 20422], - [3, 16781, 12], - "ringify", - [2, 20424, 20425], - [2, 8530, 4643], - [2, 20413, 20427], - [0, 29829, 3501], - [0, 3495, 1303, 20150, 5165, 20151, 14374, 3424, 28438], - [1, 2343, 20435], - "-compiler", - [2, 20426, 20432], - [2, 20413, 20433], - [0, 20438, 20439, 20430, 2523], - "h2url", - "ajv-i18n", - [0, 29835, 3424, 1433, 26413, 4578], - [0, 3095, 2899, 1429, 3752, 1434], - [1, 2343, 20448], - "autocannon", - "fast-json-", - "body", - [2, 20442, 20443], - "merge-patch", - [2, 8530, 20445], - "branch-c", - [0, 0, 7878, 20455, 2537], - "omparer", - [2, 20447, 20449], - [2, 3125, 1276], - "fluent-", - [2, 20452, 2845], - [2, 20413, 3697], - [0, 3495, 15393], - [1, 2343, 20457], - [0, 20458, 0, 20459, 2523], - [0, 3729, 614], - [0, 6804, 3403], - "piscina", - "@vercel/n", - [1, 2343, 20483], - "@vercel/ncc", - "loader-", - [2, 20464, 8791], - [3, 12397, 15], - [2, 20466, 2924], - "@umijs/b", - "abel-", - "preset-umi", - [2, 20469, 20470], - [2, 20468, 20471], - [2, 1221, 18104], - [2, 4524, 20473], - [3, 1233, 25], - [2, 20475, 15301], - "tyled-", - [2, 20477, 4963], - [2, 5584, 20478], - "@umijs/c", - "ase-sensitive-paths-webpack-plugin", - [2, 20480, 20481], - [0, 0, 9264, 20486, 4139], - "ader-runner", - [2, 13513, 20484], - [0, 1388, 1389, 3403], - [1, 2343, 20488], - [0, 0, 20489, 20497, 2523], - [0, 1906, 1166, 4481], - [2, 19523, 3036], - [2, 5613, 4565], - [2, 5613, 3053], - [2, 5613, 6645], - [2, 5613, 6913], - [2, 18996, 4237], - [2, 4385, 57], - [0, 3403, 3504, 29854, 2090, 17996, 2150, 17462, 16503, 7318, 4262], - [1, 2343, 20501], - "anything", - "protocol", - [0, 0, 11332, 20502, 2537], - [0, 3403, 18104, 2090, 4014, 28977, 29862, 3506, 15174, 614, 594, 364, 6805, 6422, 1858, 2741, 13735, 4354], - [1, 2343, 20504], - [0, 0, 20505, 20506, 4139], - [0, 29867, 5535, 4874, 5254, 7677, 26881, 4201, 91, 1984], - [0, 2026, 6961, 4082, 7433], - "fbjs-css-vars", - "setimmediate", - [1, 2343, 20510], - [0, 0, 20511, 2514, 2523], - [0, 4874, 7677, 1446, 668, 1177, 1905, 2807, 1894, 91, 4543, 1984, 28862], - [1, 2343, 20513], - [0, 20518, 20530, 11581, 2537], - "@skypack/package-check", - "dead-code-elimination", - [2, 9403, 20515], - [2, 7911, 20516], - [0, 2760, 2856, 18545], - "in web", - "in javascript", - "in react", - "Plug & Play", - [3, 11608, 13], - [2, 7519, 4963], - "ui component", - [2, 16914, 6286], - "advanced ", - [2, 20527, 5983], - "scan", - [0, 2152, 2899, 3699], - "scanner", - [1, 2343, 20534], - "phonebook", - [0, 20535, 20552, 20554, 2537], - [0, 29882, 29884, 3486, 3923, 23952, 3348], - "autofillotp", - "share", - [2, 7426, 17357], - [2, 2998, 20538], - "mylocation", - [2, 13735, 20540], - "colorpicker", - "wakelock", - "WhatsappShare", - "NetworkConnection", - "TextToSpeech", - "VoiceRecognition", - "SnapScanner", - "Network", - "Monitor", - [2, 20549, 20550], - [0, 4874, 1398, 2018, 1894, 4389, 91], - "View360", - [0, 2636, 1179], - [1, 2343, 20556], - [0, 20557, 20558, 20559, 2399], - [0, 1620, 10752, 29893, 29894, 29895], - [ - 0, 53, 8229, 87, 442, 5583, 1193, 29897, 27401, 1377, 1389, 1424, 1505, 1177, 2193, 2203, 1192, 2780, 11348, - 1783, 29899, 1894, 3754, 4042, 8849 - ], - [0, 2636, 29901, 29903, 11812, 1746, 13814], - [1, 2343, 20563], - [3, 5085, 23], - [2, 20561, 582], - [0, 0, 20564, 2514, 2537], - [0, 1362, 29908, 1429, 29913, 1506, 2899, 3697], - " program", - [2, 6564, 20565], - "data ", - [2, 20567, 6355], - [1, 2343, 20570], - [0, 20571, 20572, 20578, 2537], - [0, 25624, 29919, 29923, 29920, 29918, 29928], - [0, 28042, 29934, 1149, 1362, 1499, 29933, 91, 1984, 23539], - "dequal", - "glob-", - [2, 20574, 3508], - [3, 16396, 12], - [2, 20576, 3508], - [0, 18035, 29937, 3519, 14871, 25638, 14873, 29938], - [1, 2343, 20580], - [0, 20581, 20582, 20583, 2523], - [0, 3524, 4237, 4709], - [0, 1173, 1175, 1178, 1257, 1264, 1267, 14237, 1177, 1881, 1935, 1938, 2126, 29945, 1192, 2774, 29946, 10622, 4039], - [0, 3520, 3521, 13392], - "detect-libc", - [1, 2343, 20587], - "thread", - [0, 20588, 20589, 20590, 2443], - [0, 2057, 2151, 29952, 22667, 3730, 705, 17047, 4707], - [0, 1177, 2276], - [0, 3521, 29727, 3364], - [1, 2343, 20592], - [0, 20593, 20594, 20590, 2523], - [0, 1863, 2057, 2151, 29952, 22667, 3730, 705, 17047, 4707], - [0, 1177, 2276, 824], - "@pinojs/redact", - [1, 2343, 20599], - "figure", - "fallback", - [0, 20600, 20601, 20602, 2523], - [0, 1137, 1512, 1543, 29964, 1591, 16442, 2765, 3183, 3456, 3459, 6331, 29965, 3547, 3741, 3762, 705, 4167, 4562], - [0, 18007, 1177, 1900, 1903, 1938, 1954, 1958, 1970, 2759], - [0, 200, 1591, 3525, 29969, 29971], - [1, 2343, 20604], - [0, 0, 11488, 2514, 2443], - [1, 2343, 20606], - [0, 0, 0, 20607, 4139], - [0, 7009, 1512, 6983, 200, 7201], - [1, 2343, 20609], - [0, 0, 20610, 20612, 2523], - [0, 1177, 27275, 2398, 2899, 3421], - "filesaver", - [0, 2070, 3529, 3530], - "saveas", - "blob", - [1, 2343, 20616], - [0, 7936, 7938, 7939, 4139], - [1, 2343, 20618], - [0, 0, 20620, 20625, 34352], - "strtok3", - [0, 1166, 29991, 4481, 27659, 1906], - "token-types", - "-extra", - "-extras", - [2, 15149, 20623], - [0, 19138, 7241, 1862, 6567, 29994, 12918, 202, 21244, 28067, 6270, 353, 4719, 21009, 6715, 1149, 7003, 6778, 1362], - "@tokenizer/token", - "commonmark", - "noop-stream", - [1, 2343, 20633], - "pic", - "picture", - "photo", - [0, 20692, 20693, 20765, 2399], - "video", - "exif", - "macho", - "jpg", - "apng", - "gif", - "flif", - "xcf", - "cr2", - "cr3", - "orf", - "arw", - "dng", - "nef", - "rw2", - "tif", - "bmp", - "icns", - "jxr", - "psd", - "indd", - "rar", - "7z", - "mp4", - "mid", - "mkv", - "webm", - "mov", - "avi", - "mpg", - "mp2", - "mp3", - "m4a", - "ogg", - "opus", - "flac", - "wav", - "amr", - "epub", - "mobi", - "rtf", - "woff", - "woff2", - "eot", - "ttf", - "otf", - "ico", - "flv", - "xz", - "xpi", - "cab", - "deb", - "rpm", - "Z", - "lz", - "cfb", - "mxf", - "mts", - [0, 30001, 30004, 30007, 30011, 20416, 30015, 30017, 18730, 20595, 30018, 30019], - [ - 0, 5517, 36559, 30022, 4874, 1090, 30024, 28400, 1409, 1676, 21594, 1177, 1938, 1953, 1954, 1958, 2020, 30025, - 30027, 2702, 1192, 3073, 3079, 30028, 29197, 28941, 3697, 3752, 3756, 4039, 4135, 4238, 30029, 4294, 4389, 4431, - 4474, 4481, 91, 4709 - ], - "webassembly", - "blend", - "bpg", - "docx", - "pptx", - "3gp", - "j2c", - "jp2", - "jpm", - "jpx", - "mj2", - "aif", - "odt", - "ods", - "odp", - "heic", - "pcap", - "dsf", - "lnk", - "voc", - "ac3", - "3g2", - "m4b", - "m4p", - "m4v", - "f4a", - "f4b", - "f4p", - "f4v", - "mie", - "qcp", - "asf", - "ogv", - "ogm", - "oga", - "spx", - "ogx", - "ape", - "wv", - "cur", - "nes", - "crx", - "ktx", - "dcm", - "mpc", - "arrow", - "shp", - "aac", - "mp1", - "s3m", - "xm", - [2, 12207, 35471], - "skp", - "lzh", - "pgp", - "chm", - "3mf", - "zst", - "jxl", - "vcf", - "jls", - "pst", - "dwg", - "parquet", - "arj", - "cpio", - "ace", - "avro", - "icc", - "fbx", - "vsdx", - [0, 2062, 2942, 3101, 1781], - [1, 2343, 20767], - [0, 0, 20768, 20769, 2537], - [0, 1177, 1895, 19286, 1954, 1955, 2675, 1192, 1894, 4400], - [0, 3378, 30036, 30037, 3304, 30038], - [1, 2343, 20771], - [0, 20772, 20773, 20774, 2523], - [0, 3549], - [0, 1177, 25843, 91], - [0, 158, 26020, 1687], - [1, 2343, 20776], - [0, 20777, 20778, 20779, 2487], - [0, 30055], - [0, 1906, 1166, 4481, 4400], - [ - 0, 3383, 1781, 7914, 3378, 13864, 2100, 2104, 2105, 7076, 6614, 6605, 2090, 7193, 3529, 814, 5933, 7029, 6857, - 7204, 4647, 6821, 3403 - ], - [1, 2343, 20781], - [0, 8400, 8134, 20782, 2523], - [ - 0, 4750, 3383, 2090, 2100, 2104, 2105, 7076, 6614, 6605, 7193, 3529, 814, 5933, 7029, 6857, 7204, 4647, 6821, - 3403 - ], - [1, 2343, 20784], - [0, 0, 10435, 20785, 2523], - [0, 18523, 2041, 6661], - "locate-path", - [1, 2343, 20790], - "-magic", - [2, 1981, 20788], - [0, 20791, 0, 2514, 2523], - [0, 30071], - [1, 2343, 20793], - [0, 20794, 20795, 20798, 2443], - [0, 10780, 1301, 4736], - [0, 1389, 2899, 16112, 4770], - "detect-file", - "resolve-dir", - [0, 13336, 1388, 16718, 2072, 57, 6523], - [1, 2343, 20802], - "dir-polyfill", - [2, 4571, 20800], - [0, 20803, 20804, 20805, 2537], - [0, 1104], - [0, 1177, 1889, 1954, 2022, 2899, 3421, 91], - [0, 1851, 1932, 2541], - [1, 2343, 20807], - [0, 20808, 8134, 20809, 4139], - [0, 30088], - [0, 23869, 30090, 3547, 23868, 30091, 4718, 1871, 30092, 30093, 30094], - [1, 2343, 20811], - [0, 0, 20812, 20813, 34352], - [0, 1429, 2759, 2899, 1899], - [0, 23869, 30090, 3547, 23868, 23877, 2712], - [1, 2343, 20815], - [0, 20816, 11488, 20817, 4139], - [ - 0, 30110, 30115, 30106, 30122, 1112, 1149, 29183, 1457, 30117, 1525, 1606, 1673, 1676, 1836, 2015, 30104, 3188, - 3278, 30107, 30108, 30119, 30112, 30120, 8630, 4135, 4232, 4243, 30105, 2822 - ], - [ - 0, 200, 21110, 21111, 2041, 3548, 30124, 3073, 1781, 2026, 2556, 30125, 2999, 30127, 30128, 30130, 30131, 30132, - 30134, 7047, 22850, 30135, 27662, 13325, 5258, 30137, 30139, 30140, 30141, 30142, 20997, 20998, 28845, 4345, - 30143, 3363, 30144, 17979, 30147, 27838, 30140, 30148, 2134, 28413, 30149, 13539, 3111, 21102, 30153, 30155, - 30156, 30158, 24093, 17878, 1605, 20999, 30159 - ], - [1, 2343, 20854], - "@firebase/app", - [3, 20819, 11], - "uth", - [2, 20820, 20821], - "@firebase/", - [2, 20823, 614], - [2, 20823, 13901], - [2, 20823, 18035], - "nalytics", - [2, 20820, 20827], - [2, 20819, 2063], - [3, 20829, 14], - [2, 20830, 553], - "firestore", - [2, 20823, 20832], - [3, 20833, 11], - "unctions", - [2, 20834, 20835], - [2, 20823, 8899], - [3, 20829, 15], - [2, 20838, 14044], - [2, 20822, 4097], - [2, 20823, 6681], - [2, 1161, 10653], - [2, 20823, 20842], - "remote-", - [2, 20844, 1541], - [2, 20823, 20845], - [2, 20825, 4097], - [2, 20826, 4097], - [2, 20828, 4097], - [2, 20829, 4097], - [2, 20833, 4097], - [2, 20836, 4097], - [2, 20837, 4097], - [0, 0, 20855, 20856, 2537], - [0, 1389, 1400, 1544, 1177, 1895, 3421, 1894, 3758, 4151, 30164, 4389], - [0, 30166, 14355, 14356, 30167, 30168, 57, 18048, 29895, 30170, 3549], - [2, 20841, 4097], - [2, 20843, 4097], - [2, 20846, 4097], - [1, 2343, 20861], - [0, 20864, 20865, 20866, 34352], - "Firebase", - "realtime", - [0, 4477], - [0, 1835, 1192, 2784, 2796, 4227], - [0, 2924, 4749, 24753, 24754], - [1, 2343, 20877], - "@fastify/b", - "usboy", - [2, 20868, 20869], - [3, 20848, 19], - [2, 20871, 553], - "farmhash-modern", - "jwks-rsa", - "@google-cloud/firestore", - [3, 20875, 14], - [0, 0, 0, 20878, 2537], - [ - 0, 3552, 28100, 4796, 7191, 7287, 2062, 6824, 1161, 7242, 163, 6698, 5260, 6646, 7117, 3378, 6878, 6661, 6666, - 7037, 7090, 7293, 6950, 7086, 6573, 664 - ], - [3, 20819, 12], - [1, 2343, 20881], - [0, 20896, 20898, 20899, 2523], - "i-documenter", - [2, 20879, 20882], - [3, 20840, 15], - [2, 20884, 553], - [2, 4853, 6641], - "rebase-token-generator", - [2, 16785, 20887], - [2, 16936, 4007], - [3, 2113, 11], - "ken-generator", - [2, 20890, 20891], - "http-me", - "ssage-parser", - [2, 20893, 20894], - [0, 1170], - "admin", - [0, 4072, 4474, 91], - [0, 30190, 30191, 30192, 30193, 30194, 30198, 30200, 30202, 5592, 30203, 30204, 30207, 30208, 5995, 4967, 91], - [1, 2343, 20901], - [0, 6263, 20906, 20907, 2537], - "-sql-connector", - [2, 6599, 20902], - [2, 20876, 20903], - [2, 20876, 11631], - [ - 0, 48, 53, 68, 83, 85, 87, 14128, 5583, 816, 6373, 1178, 1193, 1198, 30214, 1610, 1652, 1745, 1177, 1881, 1938, - 2126, 29945, 2675, 1192, 2990, 29946, 1894, 30216, 3776, 4042, 4071, 4073, 4131, 4172, 30217, 91, 4585 - ], - [0, 4315, 3555, 1832, 30219, 7165, 30220, 89, 2124, 91, 30223, 30225, 30227, 1473, 7208], - "async-lock", - "cjson", - "-in-any-order", - [2, 1693, 20910], - "exegesis", - [2, 20912, 3228], - "gaxios", - [1, 2343, 20919], - "auth-library", - [2, 10692, 20916], - "libsodium-wrappers", - [0, 0, 20920, 20923, 2523], - [0, 30236, 30239, 30240, 30241, 1177, 30242, 91], - "proxy-agent", - "sql-formatter", - [0, 30245, 4627, 5398, 8190, 8191, 8193, 30247], - "stream-chain", - "stream-json", - [1, 2343, 20927], - [0, 20929, 20930, 20932, 2487], - "superstatic", - [0, 1149, 1676], - [0, 1192], - "triple-beam", - [0, 27, 13397, 6731], - "-analytics", - [2, 14566, 20933], - [2, 4562, 8683], - [1, 2343, 20939], - "cdn", - "ssl", - [0, 20941, 0, 20944, 4139], - "hosting", - [0, 3266, 3527, 4228], - "hronization", - [2, 15001, 20942], - [0, 1623, 3561, 22292, 7121, 57, 30258, 353, 24798, 5198], - [1, 2343, 20946], - [0, 20947, 20952, 20953, 4139], - [0, 3681, 3688], - "alce", - [2, 1708, 16580], - "extend-", - [2, 20950, 3048], - [0, 4874, 1177, 1895, 30265, 3561, 1894, 91], - [0, 1623, 3561, 6425, 30268, 3563], - [1, 2343, 20955], - [0, 20956, 20957, 20958, 2537], - [0, 1457, 5314, 2151, 3527, 3616, 30274, 15245, 30275, 4207, 27921, 4747], - [0, 1166, 1414, 1596, 1177, 30279, 2203, 3561, 3613, 1894, 4337, 3348], - [0, 200, 3561, 22147], - "@types/rimraf", - [2, 13777, 12798], - [1, 2343, 20962], - [0, 20963, 0, 20964, 2487], - [0, 30286, 205, 208, 218, 30287], - [0, 1473, 14186, 1623, 4964, 6564, 30289, 30290, 30291, 29428, 3561, 6425, 6616, 30292, 17540, 5341], - [1, 2343, 20967], - "unflatten", - [0, 20968, 20969, 20970, 2487], - [0, 1393, 30298, 30299, 3688], - [0, 30302, 3561], - [0, 1473, 1512, 1536, 1623, 3178, 3561, 6425], - [1, 2343, 20972], - [0, 20973, 20974, 20975, 34352], - [0, 1393, 3688], - [0, 3561], - [0, 1623, 16919, 3561, 6425], - [1, 2343, 20977], - [0, 20984, 20985, 20987, 2523], - "@types/acorn", - [3, 4060, 16], - "vereload", - [2, 20979, 20980], - "erve", - [2, 15476, 20982], - [ - 0, 1165, 30298, 1437, 30314, 30315, 3561, 30317, 30326, 3564, 30327, 30329, 30331, 30334, 30336, 30338, 30341, - 30343, 3579, 3584, 3587, 30346, 30348, 30350, 30353, 30356, 3643, 30358, 30360, 30363, 30365, 30366 - ], - [ - 0, 1173, 1175, 1195, 1264, 1268, 1279, 19243, 1461, 1628, 30368, 30370, 30371, 30372, 30378, 1177, 30380, 1916, - 1959, 2054, 2092, 2600, 30381, 2822, 2843, 3105, 30383, 3160, 30385, 30389, 30390, 30391, 30393, 30395, 30396, - 30397, 30399, 29285, 3376, 30400, 3427, 3459, 30402, 3613, 3618, 30274, 16578, 3744, 89, 3824, 30404, 4039, - 4294, 4307, 4389, 30407, 2924, 4681, 30410 - ], - "lightweight", - [0, 3561, 6425, 1623, 12616, 30413], - [1, 2343, 20989], - [0, 20990, 0, 20993, 2523], - [0, 30424, 205, 208, 213], - "byline", - "util-extend", - [0, 30426, 30427, 1623, 30428, 5317, 6413, 3561, 6425, 30430, 3766, 10658, 12616], - [1, 2343, 20996], - "markdox", - [0, 21001, 0, 21002, 2537], - "deploy", - "deployment", - "devops", - "ssh", - [0, 30424, 205, 208, 30287, 3688], - [0, 1623, 30428, 5317, 6433, 3561, 6425, 3583, 10658, 6436, 6437, 12616], - "sequential", - "remote", - [1, 2343, 21006], - [0, 21007, 0, 21008, 2537], - [0, 30424, 205, 208, 3681], - [0, 30426, 30427, 1623, 30428, 5317, 30442, 19101, 3561, 6425, 5547, 3586, 10658, 12616], - "wrapper", - [1, 2343, 21011], - [0, 21012, 21013, 21017, 2487], - [0, 3681], - [0, 3561, 3678, 26712], - "mini-s", - "vg-data-uri", - [2, 21014, 21015], - [0, 1623, 4298, 3561, 6425], - [1, 2343, 21021], - "-datepicker", - [2, 2128, 21019], - [0, 0, 20974, 21025, 34352], - "ailwindcss", - [2, 1977, 21022], - [2, 3704, 4383], - [0, 1623, 1681, 16918, 3561, 6425], - "windicss", - [1, 2343, 21051], - [2, 20525, 591], - [2, 4380, 6911], - "tailwind c", - [2, 21030, 544], - "tailwind ", - [2, 21032, 11513], - [2, 21032, 6082], - "sections", - [2, 21032, 21035], - "tailwind ui", - [2, 21032, 89], - [2, 21032, 188], - [2, 21032, 1098], - "tailwind s", - [2, 21041, 1971], - "django", - [2, 21032, 21043], - "tailwind r", - "uby on rails", - [2, 21045, 21046], - "tailwind l", - "aravel", - [2, 21048, 21049], - [0, 0, 20974, 21058, 2537], - "tailwind nuxt", - "tailwind n", - [2, 21053, 2680], - "tailwind a", - "stro", - [2, 21055, 21056], - [0, 15215, 1623, 3599, 3178, 16919, 3561, 6425], - "flask", - [2, 21032, 21059], - [1, 2343, 21062], - [0, 0, 21063, 21064, 2487], - [0, 1687, 3527, 3561], - [0, 3561, 1623, 6425, 30462, 30465, 30466], - [1, 2343, 21066], - [0, 0, 21068, 21069, 4139], - "ffmpeg", - [0, 1429, 2323, 2384, 2463], - [0, 3561, 1623, 6425, 30472, 15182, 9320], - [1, 2343, 21071], - [0, 21073, 21075, 21076, 34352], - "fbemitter", - [0, 2654, 9673, 3561, 3676], - [2, 3794, 11017], - [ - 0, 19605, 1165, 1429, 1503, 1177, 1895, 1930, 19622, 1945, 1953, 19623, 1955, 1964, 1988, 17308, 2899, 19761, - 3421, 30479, 3678, 30481, 1894, 4320, 4323, 4337 - ], - [0, 3561, 5341, 1936, 188, 30483, 30484, 1623, 695, 2278, 4329, 30485, 4337], - "dispatcher", - [1, 2343, 21079], - [0, 21080, 0, 21081, 2399], - [0, 30287, 3688], - [0, 12083, 1623, 158, 30491, 12631, 16587, 3561, 6425, 23992, 6398], - "lolex", - [1, 2343, 21084], - [0, 21085, 21086, 21087, 2399], - [0, 3688, 30275, 814], - [0, 1166, 1414, 1177, 30279, 1955, 2203, 3561, 3678, 1894, 4337], - [0, 1623, 3561, 6425, 1204, 30498, 3378], - [1, 2343, 21089], - [0, 21090, 0, 21091, 2537], - [0, 2984], - [0, 3561, 30504, 30506], - [1, 2343, 21093], - [0, 21094, 21095, 21096, 2523], - [0, 2807, 4135, 1595], - [ - 0, 1700, 1192, 695, 2278, 2675, 3144, 30512, 1622, 1177, 1637, 1701, 2203, 3561, 4337, 4468, 4474, 2924, 1894, - 1610, 48, 442, 1193, 17167, 4294, 53, 2969, 2990, 3400, 4111, 30520, 3613, 3640, 192, 1953, 27928, 4257, 87, - 4523, 1939, 3616, 1938, 20281, 1982, 1895, 1955, 19344, 30518, 5467 - ], - [0, 1623, 3561, 22147, 2924, 11526], - "cliff", - "shush", - "flatiron", - "nssocket", - "-monitor", - [2, 2134, 21101], - [1, 2343, 21105], - "getopts", - [0, 21107, 20974, 21112, 2487], - "cli-testlab", - [0, 3688, 4319], - "fault", - " tolerant", - [2, 21108, 21109], - "sysadmin", - [0, 1623, 3178, 16918, 3561, 6425], - [1, 2343, 21114], - [0, 21115, 21119, 21123, 4139], - [0, 1393, 30298, 3681, 30532], - "node-ab", - [2, 18876, 12620], - [2, 21116, 21117], - [0, 30302, 3561, 26712, 3591], - [2, 6062, 2978], - "ross-spawn", - [2, 4857, 21121], - [0, 1623, 16918, 3561, 6425], - "jest-circus", - "karton", - [1, 2343, 21128], - "typecheck", - [0, 5488, 20974, 21130, 2523], - [2, 1218, 21131], - [0, 1623, 2414, 30541, 30542, 16918, 6425], - "hermes-parser", - [1, 2343, 21135], - [3, 4852, 15], - [2, 21133, 13921], - [0, 21137, 20974, 21138, 2399], - "increment", - [0, 30299, 3688, 30532], - [0, 1623, 3561, 6425], - [1, 2343, 21140], - [0, 21145, 20974, 21150, 2399], - "asynckit", - "combine", - "d-stream", - [2, 21142, 21143], - [0, 1393, 3688, 30532], - [2, 13888, 2759], - "fake", - "far", - "is-node-", - [0, 3561, 1623, 6425, 3178, 16918, 3634], - "modern", - [2, 21149, 21151], - "obake", - [1, 2343, 21157], - [2, 31868, 7625], - [2, 31865, 21160], - [0, 21159, 21164, 21169, 2537], - "dezalgo", - [0, 1636, 3681], - [3, 9367, 18, 5], - "@tunnckocore/prettier-config", - "formdata-", - [2, 21162, 6422], - [0, 30559, 3561], - [2, 19713, 1781], - [2, 3862, 18481, 21172], - "www", - "ulpoad", - [0, 1623, 3178, 16918, 3561, 6425, 3586], - [1, 2343, 21171], - [0, 21176, 21181, 21183, 2399], - "bob", - [3, 11366, 11], - [2, 21173, 3797], - "tiny-warning", - [0, 16837, 3681, 3688], - "just-", - "debounce-it", - [2, 21177, 21178], - "tsdx", - [0, 1596, 1177, 1895, 2675, 1192, 2990, 3561, 1894], - [2, 7519, 582], - [0, 4529, 3561, 1623, 6425], - [1, 2343, 21190], - "render props", - "higher", - " order component", - [2, 21186, 21187], - "hoc", - [0, 21012, 0, 21191, 2443], - [0, 3561, 1623, 6425, 2278, 3639], - [1, 2343, 21193], - [0, 21194, 0, 21196, 2443], - [0, 30577, 220, 3681], - "conditional", - [0, 30579, 1451, 30581, 1623, 30413, 30428, 3639, 30582, 3561, 6425, 3624, 3586, 10654, 10659, 5341, 12616], - [1, 2343, 21198], - [0, 21199, 21200, 21201, 2523], - [0, 30587, 30589, 30590], - [0, 20117, 1393, 3561, 3613, 4042], - [0, 3561, 1623, 6425, 30594, 2887, 30595], - [1, 2343, 21203], - [0, 0, 20974, 21204, 2487], - [0, 3561, 1623, 6425, 8426], - [1, 2343, 21206], - [0, 5488, 20974, 21138, 2537], - [1, 2343, 21208], - [0, 5488, 20974, 21138, 2443], - [1, 2343, 21211], - "check-dts", - [0, 20973, 20974, 21138, 4139], - [1, 2343, 21213], - [0, 5488, 20974, 21215, 2537], - "front matter", - [0, 1623, 3374, 16918, 16919, 3561, 6425, 1002], - "meta data", - [1, 2343, 21218], - [0, 21219, 20974, 21138, 2523], - [0, 3688, 30532], - [1, 2343, 21221], - [0, 0, 21222, 21223, 2537], - [0, 2675, 2899, 3561, 2759, 1894, 2990, 3640], - [0, 3561, 3665, 3586, 6425, 1623, 3585, 1932], - "universalify", - [1, 2343, 21229], - "klaw", - "dir-files", - [2, 15034, 21227], - [0, 21230, 0, 21231, 2523], - [ - 0, 28789, 30630, 30633, 28817, 30636, 26477, 30640, 32579, 30643, 30647, 30649, 30652, 30654, 30657, 30658, 215, - 30662, 30670, 30673, 30677, 30678, 30682, 30686, 30690, 31001, 30693, 30701, 30703, 27930, 218, 28640, 27069, - 30708, 30712, 29388, 30715, 32835, 29704, 30721, 30724, 30725, 1165, 1393, 30728, 30733, 30736, 1635, 30326, - 30739, 3570, 30331, 30338, 3579, 3584, 3587, 30742, 30744, 4791, 30747, 30348, 30749, 3611, 30751, 30754, 3643, - 30757, 30759, 30761, 30763, 30358, 30363, 30366 - ], - [0, 1623, 30428, 16897, 14836, 30765, 3286, 3561, 6425, 10654, 10659, 16900, 12616], - [1, 2343, 21233], - [0, 21234, 21235, 21138, 4139], - [0, 1393, 30298], - [0, 30302, 2646, 3561], - "assist", - [2, 6019, 21236], - [1, 2343, 21239], - [0, 0, 0, 21240, 2537], - [0, 1623, 3561, 30775, 57, 21110], - [1, 2343, 21242], - [0, 0, 0, 21245, 2537], - "any-promise", - "then", - [0, 1623, 3561, 30775, 57, 4329, 2278], - "thenify-all", - [1, 2343, 21248], - [0, 21249, 21250, 2514, 2443], - [0, 1636, 23462], - [0, 48, 53, 68, 11267, 61, 87, 94, 1166, 1198, 16150, 1701, 1177, 1938, 2070, 3183, 3421, 3561, 4135, 91], - [1, 2343, 21252], - [0, 21253, 21254, 21255, 4139], - [0, 3688, 4361], - [0, 30315, 3561], - [0, 1623, 3178, 16918, 3561, 6425, 8221, 4361], - [1, 2343, 21257], - [0, 21012, 20974, 21138, 2537], - [1, 2343, 21259], - [0, 0, 21260, 21261, 2537], - [0, 1177, 2675, 2990, 1894, 4387, 4389], - [0, 3561, 6692, 57], - [1, 2343, 21263], - [0, 21264, 0, 21265, 2537], - [0, 28807, 30805, 30808, 30811, 30813, 30816, 30818, 4484], - [0, 14873, 25638, 14871, 3519, 18035, 1747, 13392, 5576, 5995, 29938, 14872, 91, 4799, 1999], - [1, 2343, 21267], - [0, 21268, 21269, 21270, 2537], - [0, 9376, 9375], - [0, 192, 22559, 1414, 1429, 1431, 1436, 1567, 2675, 2829, 2990, 2899, 4255], - [0, 1936, 6523, 23760, 57, 353, 30826, 24798, 7121, 26467], - [1, 2343, 21272], - [0, 21273, 0, 21274, 2523], - [0, 30840, 3348, 2970, 2973, 4431, 30843, 2972, 30842, 3310, 30837, 30834, 3923, 30833, 30839], - [0, 1747, 28088, 3693], - [1, 2343, 21295], - "@monaco-editor/loader", - [3, 7664, 11], - "topwatch", - [2, 21277, 21278], - [2, 7666, 6731], - "@snippetors/vuepress-plugin-tabs", - [3, 19464, 17], - "google-a", - [2, 21283, 20827], - [2, 21282, 21284], - [2, 93, 4314], - [2, 21282, 21286], - [2, 21282, 7193], - "monaco-", - [2, 21289, 6038], - "dsense2", - [2, 21283, 21291], - [2, 6324, 21292], - [2, 19469, 21293], - [0, 21297, 21298, 21299, 2537], - "bitap", - [0, 13609, 30849, 30850, 30855, 1695], - [ - 0, 1173, 1280, 4895, 1245, 1264, 1389, 5669, 30857, 2025, 2297, 2881, 25848, 2895, 2900, 30859, 2899, 30862, - 18102, 3774, 4019, 4135 - ], - [0, 3696, 1145, 6468, 1973, 5472, 5286, 6892], - "@types/katex", - [1, 2343, 21303], - "socket", - [0, 21304, 21305, 21310, 2487], - [0, 1615, 23975, 4707], - [0, 1148, 2759, 2899], - "tex", - "sublime", - "katex", - "sublime text", - [0, 3358, 582, 3378, 3697, 30872, 18462, 1973, 5001], - [1, 2343, 21312], - [0, 0, 21313, 21314, 2443], - [ - 0, 30877, 30879, 53, 5874, 12372, 87, 94, 11976, 4856, 6503, 4874, 6513, 17214, 16480, 30881, 1429, 1596, 1610, - 30883, 668, 2675, 30888, 3165, 2899, 3401, 30889, 28423, 3744, 11481, 4193, 4196, 4072, 91, 4548, 1983, 1984, - 824 - ], - [0, 3698, 89, 181, 6073, 30891, 23361, 4963, 30892, 6400, 5130], - "globule", - [1, 2343, 21318], - [2, 2237, 5365], - [0, 21319, 7923, 11581, 2523], - [0, 1437, 1457, 2152, 18545], - [1, 2343, 21321], - [0, 21322, 21323, 21324, 2537], - [0, 30905, 8506, 3137], - [ - 0, 21024, 5467, 811, 8850, 816, 5087, 9363, 1009, 1011, 1529, 1177, 1895, 1955, 2675, 1192, 30912, 12129, 1894, - 4042, 4257, 4072, 4474, 91 - ], - [0, 1894, 1932, 1776, 8505], - [1, 2343, 21326], - [0, 0, 21327, 21330, 2487], - [0, 4874, 30922, 1166, 1894, 91, 13151], - [2, 4755, 1145], - "yeoman-test", - [0, 1894, 30924, 91, 5651, 3705], - [1, 2343, 21332], - [0, 21333, 21334, 21335, 4139], - [0, 18710], - [0, 3401, 1894], - [0, 6661, 1932, 1894], - [1, 2343, 21338], - "restangular", - [0, 0, 21342, 21343, 2487], - "ui-router", - "foundation", - "traceur", - [0, 8862, 811, 816, 4874, 1166, 1894, 4042, 4075, 3709, 4474, 4484, 91], - [0, 1894, 3709], - [1, 2343, 21345], - [0, 21346, 0, 21347, 2487], - [0, 30940, 1209, 1997], - [0, 1894, 1541], - "find-git-root", - [1, 2343, 21353], - "git-config", - [3, 31021, 19], - "@merkle-open/eslint-config", - [0, 0, 8134, 21355, 2537], - "modular", - [0, 3721, 1413, 1412, 2098, 4202, 2090, 12786, 30946, 7017, 30947, 2382, 30948, 23933, 30950], - [1, 2343, 21357], - [0, 21358, 21359, 21361, 4139], - [0, 1209, 30956], - [0, 1429, 1506, 1509, 30958, 2899], - "pooling", - [0, 3721, 1851, 30960, 1676, 6738, 7017, 13086, 22405, 1671, 12786], - [1, 2343, 21363], - [0, 21364, 21366, 2514, 2523], - [0, 8801, 1110, 3847], - "ts2mjs", - [0, 4880, 15606, 4889, 2700, 2798, 89, 3824, 3904], - "iterators", - [1, 2343, 21370], - "iterable", - [0, 21372, 8134, 21375, 2487], - [2, 21373, 29777], - [0, 30970], - "@prisma/d", - "@prisma/dev", - [0, 3721, 22405, 12786, 24130, 30946, 7017, 6901, 3242, 30974, 17003, 30975, 6754, 2585, 1871, 6988, 15244], - [1, 2343, 21382], - "@werkzeugkiste/eslint-config", - [3, 21377, 15], - [2, 6019, 1541], - [2, 21378, 21379], - "install-", - [0, 21389, 0, 21390, 2487], - "postmerge", - [2, 17496, 21383], - [2, 21381, 21384], - [3, 9794, 17], - [3, 13848, 20], - [2, 21386, 21387], - [0, 6041, 4484, 2687, 26379, 3530, 30097, 3527], - [0, 3358, 30981, 30982, 1894, 3720, 6983, 1501, 30983, 30872], - [1, 2343, 21392], - [0, 21394, 21398, 21399, 2523], - "@cfware/lint", - [0, 1512, 3183], - "@cfware/nyc", - "if-ver", - "libtap", - [0, 2899, 2272, 4170, 2759, 1596, 3202], - [0, 1781, 200, 6983, 1512], - [1, 2343, 21401], - [0, 21403, 21408, 21409, 2523], - "available", - [0, 3260, 25638, 21374, 28286, 30996, 21351], - "connection", - "tcp", - [3, 6045, 9], - "chosen", - [ - 0, 3467, 4763, 2611, 1192, 3445, 2020, 2929, 28974, 3510, 1759, 8537, 15452, 1457, 2151, 842, 16145, 16473, - 2794, 3077, 3310, 29710, 4294, 31000, 91, 5087, 4874, 6477, 28076, 1151, 2191, 31004, 3393, 31006, 32248, 31008, - 28229, 31009, 25629, 31013, 4864, 33235, 23531, 8998, 29420, 31015, 31018, 13471, 32470, 31023, 31026, 33237, - 28231, 29421, 26285, 33683, 21371, 13502, 29425, 31475 - ], - [ - 0, 9628, 31034, 31035, 31037, 31038, 18035, 1747, 17626, 31039, 6869, 31040, 31041, 31042, 3519, 31043, 31045, - 31046, 31047, 31048, 31049, 31050, 31051, 31052, 31221 - ], - [1, 2343, 21411], - [0, 0, 21412, 21414, 2537], - [ - 0, 5542, 1317, 1429, 31058, 1700, 31061, 1177, 1942, 1964, 2323, 2361, 2367, 2409, 20304, 2494, 2496, 31063, - 2553, 2654, 2665, 2832, 2899, 3310, 3400, 1894, 3756, 19745, 19750, 12120, 3980, 19751, 4183, 31066, 4747 - ], - "std", - [0, 588, 5342], - [1, 2343, 21416], - [0, 21417, 21419, 21421, 4139], - [0, 1362, 1364, 1512, 2026, 3078, 3188, 3220, 31074, 3460, 3507, 31075], - "@sec-ant/readable-stream", - [0, 1429, 2323, 2463, 3215, 4089, 4193, 4196, 4339], - "onetime", - [0, 1370, 7223, 29179, 18157, 12468, 2325, 3358, 31078, 3383], - [1, 2343, 21424], - "precise-now", - [0, 0, 6538, 2514, 2537], - [1, 2343, 21426], - [0, 0, 21427, 21428, 2487], - [0, 4770, 2899], - [0, 3729], - "-maps", - [2, 6477, 21429], - [1, 2343, 21433], - [2, 2190, 6660], - [0, 0, 0, 21434, 8878], - [0, 200, 3730], - [1, 2343, 21436], - [0, 21443, 0, 21445, 2537], - [3, 13936, 15], - "evry", - [2, 21437, 21438], - "make-d", - "eno-edition", - [2, 21440, 21441], - [0, 1437, 3730], - "deno", - [0, 2924, 1932, 3730, 10036], - [1, 2343, 21448], - "deno-edition", - [0, 21449, 21451, 2514, 4139], - [0, 29277], - "deno-entry", - [0, 1082, 4039, 2759], - "denoland", - [1, 2343, 21454], - [0, 0, 21460, 21461, 2487], - "es2022", - [3, 72, 14], - "ifconfig", - "ipconfig", - "mac-address", - [ - 0, 1389, 1610, 1177, 10697, 2675, 2297, 2871, 2881, 2900, 2990, 2899, 3400, 1894, 4039, 4042, 4077, 4193, 4650, - 91 - ], - [0, 1862, 3734, 6789, 14833], - [1, 2343, 21463], - [0, 21467, 17022, 21471, 2537], - "email-", - "addresses", - [2, 21464, 21465], - [0, 2899, 4193, 4545], - "dir-compare", - "tschaub", - [2, 1884, 21469], - [0, 6567, 14833], - [1, 2343, 21473], - [0, 16583, 21474, 11581, 2487], - [0, 1804, 2109, 2899, 3699], - [1, 2343, 21478], - "manage-path", - "opt-cli", - [0, 21484, 21487, 21488, 2487], - "chai-s", - "chai-string", - "kentcdodds", - [2, 1884, 21481], - "trav", - [0, 13388, 1149, 3917, 13832, 4709], - "is-after-all", - [2, 21483, 21485], - [0, 1177, 4616], - [0, 3741, 6876, 31122, 7020], - [1, 2343, 21490], - [0, 21491, 21492, 21493, 2487], - [0, 2929, 16235], - [0, 48, 53, 78, 87, 4387, 4389], - [0, 181, 3742, 200, 3741, 8626, 6876, 6847, 1523, 2184, 4403, 8620, 31129], - [1, 2343, 21500], - "@primer/octicons", - "@primer/", - "primitives", - [2, 21496, 21497], - [2, 812, 1936], - [0, 21501, 21502, 10570, 2523], - [0, 3082, 3427, 3847], - [0, 1193, 1268, 1389, 1408, 1177, 2708, 1192, 89, 31135, 31136], - [1, 2343, 21504], - [0, 0, 21506, 21508, 2443], - "minipass", - [0, 9363, 4874, 31142, 1414, 2620, 31145, 31147, 1894, 3985, 3998, 31148, 31150, 4505, 91, 18002, 1906], - "path-scurry", - [0, 31152, 23584, 1936, 4374, 18523, 3205, 8221], - "-from-dist", - [2, 9478, 21509], - [1, 2343, 21513], - [2, 5745, 1563], - [0, 21514, 21515, 21516, 2523], - [0, 31157, 31159, 31160, 31161, 31162, 31165, 31166, 31167, 31169, 31170, 4874, 3080], - [ - 0, 1317, 1389, 31172, 1408, 1437, 1875, 1177, 2000, 2004, 2193, 28406, 31174, 21749, 2323, 2409, 2419, 2510, - 2530, 1776, 3183, 3421, 3951, 4389, 4487, 91, 4535, 4599, 4600, 4603 - ], - [0, 7018, 6765, 7050, 91], - [1, 2343, 21518], - [0, 21521, 21522, 21523, 2523], - "dirname", - "wildcard", - [0, 11304, 28502, 31180, 14336, 1437, 2070, 2765, 31182, 3760, 12826, 4130, 4232, 31184, 31186, 4747], - [ - 0, 7740, 4865, 23689, 31188, 9129, 4874, 1364, 1429, 1431, 28556, 2025, 2026, 2323, 31190, 2526, 2272, 1209, - 3127, 2899, 31191, 4039, 4089, 4135, 4487, 31194, 91, 31195 - ], - [0, 1098, 1973, 5472, 11132, 13841, 28522], - [1, 2343, 21525], - [0, 21527, 21528, 21529, 2537], - "min-document", - [0, 7058, 31202, 1676], - [0, 31205, 5245, 5087, 4874, 1151, 1192, 4468, 91, 2190], - [0, 27, 2671, 2658, 1544, 3013, 31207, 31209, 18413, 31210, 31211, 31212], - [1, 2343, 21531], - [0, 21532, 21533, 18970, 2537], - [0, 31218, 31220, 814], - [0, 2899, 31224, 4170, 4193, 4255], - [1, 2343, 21535], - [0, 21538, 21540, 21542, 2523], - "path-t", - "path-type", - [0, 1437, 31229, 31233, 2720, 2742, 1209, 3170, 3309, 3470, 4135], - "glob-stream", - [0, 1173, 1255, 1264, 1700, 1177, 1895, 2702, 2759, 3188, 2899, 3211, 1894, 4039, 4170], - "fnmatch", - [0, 2323, 3378, 20001, 3383, 1237], - "globbing", - "globs", - "wildcards", - [1, 2343, 21547], - [0, 21548, 21549, 21551, 2399], - [0, 31249, 31246, 31248, 31250, 31243, 31251, 31242, 31254], - [0, 3188, 4039, 24592, 24587, 24594, 24596, 31259, 31258, 24591], - [2, 13039, 12804], - [0, 1936, 2437, 3754, 1283], - "array-series", - [1, 2343, 21554], - [0, 0, 21557, 2514, 2537], - "magick", - [2, 11812, 21555], - [0, 1317, 27468, 2060, 3714, 31266, 4387, 4389], - [1, 2343, 21559], - [0, 21560, 0, 21561, 2537], - [0, 1834, 3441], - [0, 7046, 7170, 14858, 7241], - "-with", - [2, 21562, 1892], - [2, 1903, 21563], - [1, 2343, 21569], - "msmc", - "mc", - "minecraft", - [0, 0, 21570, 21588, 2537], - [0, 1503, 3421, 2899], - "java edition", - "arm", - "arm-support", - "forge", - "s-management", - [2, 16154, 21575], - "instances", - "mod", - "mods", - "mc-mod", - "mc-mods", - "modpack", - "modpack-api", - "extendable", - "nbt", - "jarmods", - "skin fix", - [0, 3757, 3656, 31277, 31278, 31279, 1002, 31280], - [1, 2343, 21590], - [0, 21591, 21592, 21593, 2523], - [0, 17846, 31286, 1595, 28504, 11114, 31288], - [0, 4874], - [0, 3758, 3195, 29727, 13428], - "docsify-cli", - "ing-promise", - [2, 14639, 21595], - [2, 16645, 21596], - [1, 2343, 21601], - "spreadsheets", - [2, 8567, 21599], - [0, 21602, 0, 21609, 4139], - [0, 1525, 2071, 3561, 3681], - "google sheets", - [3, 21599, 11], - "sheets", - "gdata", - "drive", - "google docs", - [0, 6707, 16587, 7293, 17507, 1623, 1936, 3624, 31297, 22946, 18114], - "svgs", - "google drive", - [1, 2343, 26326], - [0, 2228, 2272, 3130, 2240, 2768, 2281, 3736], - [0, 3760, 1862, 6567, 14832, 14833, 14834, 14836, 1149, 14838, 8553, 1388, 202], - [1, 2343, 21617], - [2, 2211, 13369], - [0, 0, 0, 21618, 2399], - [0, 11194, 31307, 16421, 18048, 8221, 158], - "@types/execa", - "@types/mv", - "@types/ncp", - "unjucks", - [2, 10884, 21622], - "rl-template", - [2, 7817, 21624], - [2, 4892, 1574], - "js-green-licenses", - [1, 2343, 21629], - [0, 0, 0, 21631, 2537], - "linkinator", - [0, 1111, 6938, 11194, 7201], - [2, 8573, 591], - [2, 5576, 12950], - [1, 2343, 21635], - [0, 21636, 21637, 21643, 2537], - [0, 17409], - [ - 0, 31317, 31319, 13614, 1389, 1408, 31322, 1796, 1855, 1177, 2011, 2133, 2070, 19066, 31328, 27547, 17421, 2569, - 2685, 2708, 2762, 2807, 3188, 3206, 15030, 3410, 3421, 3431, 19974, 4103, 23948, 4389, 31329 - ], - "p-cancelable", - "responselike", - "-keys", - [2, 17267, 21640], - [2, 13788, 2741], - [0, 3767, 3763, 3766, 1002, 1644, 1646], - "able-lookup", - [2, 2325, 21644], - "cacheable-", - [2, 21646, 705], - "-encoder", - [2, 2139, 21648], - [2, 17278, 5508], - "byte-counter", - [1, 2343, 21660], - "pem", - "@types/pem", - "cert", - "create-cert", - "slow-stream", - "then-", - "then-busboy", - [0, 21661, 21664, 21669, 2537], - [0, 31337, 31339, 31341], - "@hapi/bourne", - [2, 1601, 9224], - [0, 1166, 1317, 1693, 2064, 4481, 1906], - "brotli", - "requests", - [2, 20034, 17460], - "ky", - [0, 1388, 3767, 3766, 1871, 3763, 5420, 31344, 1002, 1644, 1646, 10368, 15103, 31345, 7131], - [1, 2343, 21671], - [0, 0, 21672, 21673, 2537], - [0, 1973, 31350, 4389], - [0, 10906, 3766, 3767], - [1, 2343, 21675], - [0, 0, 21685, 21686, 2537], - "govuk-", - "-kit", - [2, 6688, 21677], - [2, 21676, 21678], - "gulp-cl", - "gulp-cli", - "sass-co", - "lor-helpers", - [2, 21682, 21683], - [0, 1414, 2665, 31357], - [0, 3768, 1149, 14629, 31360, 12692, 5957, 6994, 13792], - "embedded", - [2, 4832, 21687], - "sassdoc", - [1, 2343, 21692], - "govuk", - [0, 11570, 11571, 21693, 2537], - [ - 0, 3768, 29664, 31365, 31366, 31367, 5284, 17625, 17626, 676, 91, 17627, 6869, 4799, 12692, 4721, 3768, 31369, - 31370, 31374, 8893, 6994, 31376, 6915, 17697, 6333, 31377, 2382, 6956, 17706, 17710, 6957, 17711, 17712, 17713, - 17714, 17715, 17716, 17717, 17718, 17651, 6674, 17721, 17722, 6789, 17723, 17724, 17726, 17727, 17729, 17730, - 17731, 17732, 17733, 614, 6910, 17734, 11600, 17735, 3760, 31379, 4552, 28483, 31381, 6645, 4787, 3286, 202, - 5401, 27366, 6681, 17740, 1745, 17116 - ], - [1, 2343, 21695], - [0, 21696, 21698, 21705, 2537], - [0, 3021, 31388, 31389, 2017], - "reading", - [ - 0, 2070, 4361, 2832, 1177, 4333, 1984, 4474, 2924, 1894, 4469, 48, 1628, 91, 53, 4874, 2629, 4677, 1195, 2600, - 4307, 4334, 4689, 4891, 17214, 8648, 5139, 87, 4230, 4681, 31392, 2651, 1938, 4409, 1895, 1947, 1955, 3177, 92, - 31394, 1011, 20476, 31393, 1009, 8724, 1915 - ], - "retries", - "EMFILE", - "EAGAIN", - "EINVAL", - "EPERM", - "EACCESS", - [0, 3771, 6038, 6106, 6105, 6138, 6139, 5130], - [1, 2343, 21707], - [0, 21708, 21709, 21710, 2443], - [0, 1525, 11482, 3350], - [ - 0, 3421, 2228, 2929, 1177, 4039, 4042, 4135, 1317, 2116, 31401, 4019, 3752, 20496, 53, 31402, 87, 1937, 1954, - 2258, 18895, 23165, 5583, 1924, 1938, 31404, 1958, 2256, 6373, 1903, 1948, 811, 1900, 816, 31405, 8229 - ], - [0, 5472, 2275, 1145, 6468, 4384, 4389, 2297, 2814], - [1, 2343, 21712], - [0, 21713, 21714, 21716, 4139], - [0, 31413], - [ - 0, 5517, 31417, 1009, 1011, 7677, 1240, 1264, 1540, 1177, 1895, 1955, 15854, 18841, 1894, 23535, 2907, 3980, - 18819, 4042, 8849, 4076, 91, 1984, 2924 - ], - "graphql-js", - [0, 1388, 965, 1936, 2907, 31419, 5472], - [1, 2343, 21718], - [0, 21719, 21722, 21723, 2537], - [0, 1457, 1525, 31426, 2107, 31427, 814, 4648], - "all-versions", - [2, 1382, 21720], - [ - 0, 1149, 1203, 1267, 31429, 1499, 25063, 25076, 1937, 18895, 2020, 2116, 2151, 2228, 2240, 2243, 2256, 2258, - 23165, 2283, 21929, 2291, 25070, 21930, 26210, 31402, 3006, 3752, 4019, 4045, 4135 - ], - [0, 5472, 2275, 2814], - [1, 2343, 21725], - [0, 21726, 21727, 21728, 34352], - [0, 3518], - [0, 31437, 1389, 4389], - [0, 31440, 6422], - [1, 2343, 21733], - "section-", - [2, 21730, 9338], - [2, 4296, 12835], - [0, 0, 21736, 21737, 2523], - "ansi-green", - "delimiter-regex", - [ - 0, 48, 53, 87, 94, 104, 5583, 24621, 31447, 1290, 1317, 1481, 1610, 31448, 1177, 1938, 2064, 2036, 2822, 2899, - 3400, 3421, 4039, 4042, 4077, 31449, 31452, 4193, 4423, 31453 - ], - [0, 3776, 6564, 594, 6731, 6081, 7517, 7532, 7594, 7595, 7523, 7524], - "assemble", - [1, 2343, 21741], - "extracting", - [0, 21742, 7923, 21743, 2487], - [0, 4127], - [0, 3778, 28734, 28734, 4718, 1179, 16431, 2585], - [1, 2343, 21747], - [3, 5364, 11], - [2, 21745, 1398], - [0, 8766, 21753, 21754, 2523], - [2, 1807, 2899], - [2, 10692, 7018], - "pois", - "son-process", - [2, 21750, 21751], - [0, 3521, 4255, 4387, 4389, 4770], - [0, 1616, 3778], - [1, 2343, 21756], - [0, 21764, 7923, 2514, 2399], - "grunt-k", - "nown-options", - [2, 21757, 21758], - "legacy-log", - [2, 2235, 21760], - [3, 21761, 13], - [2, 21762, 614], - [0, 3779], - "difflet", - [3, 16758, 16], - "unt", - [2, 21766, 21767], - [1, 2343, 21771], - "temporary", - [0, 0, 7866, 21773, 34352], - "init", - [0, 6754, 57, 27], - [1, 2343, 21775], - [0, 21776, 21777, 21778, 2487], - [0, 3135, 3348, 977, 31479, 4252], - [0, 2070, 3297, 2899, 4193, 1177, 4170, 2759, 1894, 1506, 1895], - [0, 28411, 2656, 31482, 6807, 3783, 31483], - "gruntplugin", - [1, 2343, 21781], - [0, 21782, 21783, 2514, 2523], - [0, 1413, 14855, 2685, 2657], - [0, 3421, 2899, 1177, 1362, 29197, 4100, 3923, 19344, 7844], - [1, 2343, 21785], - [0, 13511, 21786, 13533, 2523], - [ - 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 1610, 1700, 1701, 1177, 1895, 1938, 1955, 2675, 1192, 2990, 3144, - 3400, 1894, 4257, 2924 - ], - [1, 2343, 21788], - [0, 21792, 0, 21793, 2537], - [3, 21146, 12], - "ncremental", - [2, 21789, 21790], - [0, 2714, 3183, 1696, 4300], - [0, 1541, 1997, 28984, 19400], - [1, 2343, 21795], - [0, 21796, 21797, 21798, 2523], - [0, 97, 1461, 3789], - [ - 0, 31504, 968, 972, 4859, 5087, 4874, 4880, 4883, 14693, 1610, 1789, 1177, 1939, 1982, 2079, 31506, 2193, 2070, - 695, 3377, 31508, 3788, 11249, 89, 3824, 3957, 91 - ], - [0, 89, 5128, 31511, 31512, 6847, 6754], - [1, 2343, 21800], - [0, 21801, 21802, 21803, 2523], - [0, 97, 13169, 1461, 3789], - [0, 31504, 972, 5087, 4880, 4883, 11322, 1610, 1789, 1177, 1982, 2079, 2193, 695, 3377, 31508, 89, 3824, 91], - [0, 89, 5128, 31519, 8190], - "liftup", - [1, 2343, 21806], - [0, 21807, 21808, 21809, 2523], - [0, 97, 3847], - [ - 0, 31504, 972, 5087, 4874, 4880, 4883, 15606, 31527, 11322, 14693, 1603, 1610, 1789, 1177, 1939, 1982, 2079, - 2070, 2675, 2990, 3377, 1894, 31508, 89, 3824, 91 - ], - [0, 89, 614], - "pad-stream", - [1, 2343, 21812], - [0, 0, 0, 10570, 2399], - [1, 2343, 21815], - "grunt-nodemon", - [0, 21816, 0, 21817, 2399], - [0, 3911], - [0, 89, 31542], - [1, 2343, 21819], - [0, 21822, 21823, 21817, 2523], - "simultaneous", - "faster", - [0, 3427], - [0, 1192, 89, 3824, 2924], - [1, 2343, 21825], - [0, 21826, 21827, 21828, 2523], - [0, 31555, 31558, 31560, 31563, 31564], - [0, 4042, 91], - [0, 5575, 2220, 89, 582, 21189, 4963], - [1, 2343, 21835], - [2, 21831, 36], - [3, 30922, 14], - "bin-", - [3, 18806, 13], - [2, 21832, 21833], - [0, 21836, 0, 2514, 2443], - [0, 3775, 1593, 1862, 4705, 3427, 3957], - "compass", - [1, 2343, 21839], - [0, 21840, 0, 21841, 2537], - [0, 4649, 2731, 1461, 3744, 31577, 1751, 97, 31575, 31581, 31578, 5090, 3911, 4808], - [0, 1367, 89, 4627, 4963, 31583, 5128], - [1, 2343, 21843], - [0, 21844, 21845, 21846, 2523], - [0, 31590, 1209, 3021, 31591, 3744, 31592, 4443], - [ - 0, 31594, 31598, 14689, 14691, 10837, 1173, 1175, 1193, 1195, 31600, 1267, 1268, 1272, 1280, 1429, 31602, 1628, - 1843, 2012, 2081, 2600, 2629, 2651, 2678, 1192, 2774, 31603, 2899, 3376, 3378, 3427, 89, 21074, 31605, 3824, - 3836, 31606, 3904, 4001, 4015, 4039, 4307, 31608, 2924, 4681 - ], - [0, 89, 31611, 5128, 20542, 3811, 31612, 3195, 31614, 5027, 8192], - [2, 1547, 3000], - [1, 2343, 21849], - [0, 21850, 21851, 21852, 34352], - [0, 1582, 3744], - [ - 0, 48, 53, 68, 61, 78, 87, 90, 94, 1195, 1251, 1628, 1703, 1177, 1879, 1938, 1947, 1959, 1961, 2193, 2651, - 31622, 3177, 89, 3824, 4307, 4389, 2924, 4677, 4681 - ], - [0, 4627, 5128, 89, 31625, 1492], - [1, 2343, 21854], - [0, 21856, 21857, 21858, 34352], - "file-sync-cmp", - [0, 8703, 1497, 1668], - [ - 0, 53, 68, 5228, 8229, 61, 87, 90, 92, 442, 31633, 5583, 811, 816, 10615, 10817, 966, 972, 974, 5601, 5087, - 11292, 4874, 4880, 4883, 1009, 1011, 1169, 1193, 1251, 1593, 33872, 1177, 1895, 1938, 1939, 1959, 1961, 27790, - 2675, 1192, 11347, 2771, 2780, 2990, 1209, 1894, 89, 3824, 4042, 11802, 2278, 4213, 4320, 4323, 5978, 4330, - 4468, 4484, 91, 4523 - ], - [0, 89, 3812, 9026, 1666, 5128], - [1, 2343, 21860], - [0, 21862, 21863, 2514, 2523], - "csslint", - [ - 0, 3445, 1437, 2696, 2205, 3539, 15427, 2105, 31642, 3742, 2098, 2553, 4294, 4425, 1615, 4165, 1393, 3008, - 14564, 31640, 51, 3938, 3829, 1874, 2135 - ], - [0, 1192, 1610], - [1, 2343, 21865], - [0, 21866, 21868, 2514, 2487], - [0, 31650, 31652, 31654, 2069, 2609], - "maxmin", - [0, 8719, 842, 972, 5540, 5087, 4874, 4880, 4883, 1192, 11944, 3400, 89, 3824, 4172, 91], - "cssmin", - [1, 2343, 21871], - [0, 21872, 21873, 2514, 4139], - [0, 31654], - [0, 8719, 842, 5087, 3400, 4172, 91], - [1, 2343, 21875], - [0, 21876, 0, 21877, 2537], - [0, 814, 19526, 53, 104, 8959, 5251, 101, 31669, 10879, 31666], - [0, 89, 1745, 31671], - [1, 2343, 21879], - [0, 21880, 0, 10570, 2537], - [0, 4116], - "jpeg", - [1, 2343, 21883], - [0, 21884, 21885, 21886, 2537], - [0, 31683, 31686, 3744], - [ - 0, 48, 53, 68, 8229, 31689, 73, 31690, 14170, 13051, 31693, 83, 87, 90, 94, 192, 22559, 19036, 26486, 5583, 811, - 816, 6061, 16607, 6065, 16608, 16612, 5535, 10876, 31695, 966, 968, 972, 20562, 4880, 4883, 1009, 1011, 1193, - 1198, 1201, 1527, 1610, 1177, 1895, 1938, 1947, 1954, 1955, 1959, 1961, 2675, 31696, 2694, 1192, 2990, 3125, - 3534, 1894, 89, 3824, 3895, 3904, 4039, 4042, 4073, 4131, 4201, 4307, 4315, 91, 2924, 31699 - ], - [0, 5128, 89, 7518, 5398, 9229], - [1, 2343, 21888], - [0, 0, 21889, 21891, 2537], - [ - 0, 51, 53, 31705, 1193, 1195, 1270, 1437, 1457, 1610, 2126, 2626, 1192, 31706, 3427, 1862, 3786, 89, 3803, 3824, - 4039, 31708, 4227, 2924 - ], - "hooker", - [0, 3473, 5341, 1851, 12991, 5403, 31710, 31711, 4649], - [1, 2343, 21893], - [0, 21894, 21895, 21896, 2537], - [0, 3427, 3744, 21174, 31718], - [ - 0, 1175, 1178, 1203, 1208, 1230, 1245, 1264, 1268, 1429, 1503, 1567, 1652, 1177, 31721, 1895, 1938, 1947, 1951, - 1955, 1959, 2759, 2297, 2878, 30885, 2881, 2886, 2895, 31723, 2900, 2910, 2921, 2923, 28636, 2899, 1894, 89, - 3824, 4039, 4042, 4045, 4055, 4067, 4069, 4193, 4196 - ], - [0, 3830, 31725, 89, 1746, 3193, 17913, 5207, 163, 1508, 1299, 31726, 590], - [3, 13115, 12], - [2, 21897, 1462], - [1, 2343, 21900], - [0, 0, 21901, 21902, 2537], - [ - 0, 19438, 603, 811, 816, 10615, 842, 16145, 968, 972, 5087, 4874, 4880, 4883, 6375, 1651, 1177, 1895, 4916, - 1955, 1959, 1961, 10964, 2675, 1192, 2780, 27412, 31734, 2990, 1894, 89, 3824, 4039, 4042, 4076, 4481, 91, 4523, - 4705, 4763 - ], - [0, 89, 582, 1669, 25, 7021, 7020, 91, 6687], - "nodeunit-x", - [1, 2343, 21905], - [0, 21906, 21907, 21908, 2487], - [0, 26007, 2202, 2609, 3008, 3744, 3849, 4163, 4227], - [ - 0, 8130, 4880, 8158, 1173, 1175, 1178, 1193, 1201, 1203, 1230, 1245, 1257, 1264, 1268, 1503, 13985, 1603, 1610, - 1843, 31742, 1845, 1177, 1879, 1895, 1938, 1947, 1959, 2675, 1192, 2990, 1894, 89, 3824, 31743, 3904, 3935, - 4039, 4042, 4045, 4055, 4058, 4067, 4069, 4077, 4257, 31745 - ], - [0, 89, 5284, 2924, 11498, 3000, 2998, 6109, 6609, 1194, 2999], - [1, 2343, 21910], - [0, 21911, 21912, 21913, 2487], - [0, 97, 31752, 5545], - [ - 0, 48, 53, 68, 23908, 78, 5241, 83, 85, 87, 90, 94, 5583, 811, 816, 6373, 10615, 966, 968, 972, 5087, 4880, - 7677, 17584, 1175, 7913, 14065, 1596, 1597, 1610, 1177, 1879, 1895, 1938, 31755, 1947, 1959, 1976, 2559, 2675, - 2681, 2990, 3188, 1894, 89, 3824, 3904, 4039, 4042, 91, 1984, 4747 - ], - [0, 2681, 23932, 2679, 8930, 23933, 6728, 23934, 89, 6071], - [1, 2343, 21916], - "uri-path", - [0, 0, 21917, 21918, 2399], - [ - 0, 5517, 11976, 5535, 968, 972, 4874, 4880, 4883, 1030, 32818, 16480, 19839, 2990, 3165, 3400, 3541, 23535, 89, - 3824, 9245, 4201, 4493, 91, 1984 - ], - [0, 89, 4627, 582, 31765, 31766, 31767, 31769, 31770, 31771, 31779], - [1, 2343, 21920], - [0, 21921, 0, 21922, 2537], - [0, 5540, 2609, 4484, 26222, 31797, 31791, 31799], - [0, 1671, 6983, 23934, 2679, 23932, 2728, 30948, 23933, 89, 6071, 8574, 8930], - [1, 2343, 21924], - [0, 0, 0, 10570, 2487], - [1, 2343, 21926], - [0, 0, 21931, 2514, 2523], - "grunt-co", - "veralls", - [2, 21927, 21928], - [2, 2235, 2759], - [0, 1420, 1437, 1177, 31815, 1192, 2774, 1894, 4042, 4069, 4077], - [1, 2343, 21933], - [0, 21934, 21935, 21936, 2487], - [0, 12396, 9363, 23289, 2583, 31821, 3140, 3992, 3999, 4549, 4555, 12449], - [ - 0, 972, 4874, 4880, 4883, 1414, 1537, 668, 1959, 10621, 1894, 89, 3824, 3973, 29250, 3985, 3988, 3998, 10632, - 4505, 91, 1906 - ], - [0, 6892, 20627, 4627, 3987, 1783, 89, 5128, 3984, 4549], - [3, 2289, 9], - [1, 2343, 21943], - "all-releases", - [2, 9005, 21939], - [2, 21937, 21940], - [2, 2235, 21941], - [0, 21946, 21947, 21948, 2523], - "gh", - "releases", - [0, 31828, 3744, 3849, 4649], - [ - 0, 31832, 1173, 1175, 1178, 1195, 1198, 1264, 1268, 1277, 1596, 1610, 1177, 1895, 31393, 1938, 1947, 1955, 1959, - 13871, 2297, 2881, 2886, 2895, 2900, 2904, 2921, 2925, 2899, 3400, 1894, 89, 3824, 3884, 3885, 4170, 4535, 2924, - 4677, 4681 - ], - [0, 89, 5128, 5066, 18346], - [1, 2343, 21950], - [0, 21951, 21952, 21953, 2523], - [0, 3518, 3744, 3775], - [ - 0, 1172, 31840, 1175, 1178, 1195, 1505, 1628, 1177, 1879, 1916, 1938, 1947, 1959, 2126, 29945, 31841, 31842, - 2766, 2297, 2886, 2898, 31844, 2906, 2925, 31845, 3521, 3836, 4307, 2924, 4681 - ], - [0, 89, 4627, 5128, 31847, 8424, 31849, 12185, 7521, 9944, 181], - [1, 2343, 21955], - [0, 21957, 0, 21958, 2537], - "vow", - [ - 0, 4729, 31705, 4747, 4135, 1862, 1301, 1525, 2731, 4116, 1109, 1193, 31856, 27921, 3145, 4705, 31859, 3717, - 3878, 30781, 1079, 31861, 28512, 31864, 24169, 3957, 31867, 2784, 31871, 31877, 31880, 31884, 31891, 31893, - 21129, 31896 - ], - [0, 89, 3857, 12296, 12295, 5131, 16697, 31904, 31906], - [1, 2343, 21960], - [0, 0, 21961, 21962, 2537], - [0, 29525, 21155, 21156, 1177, 1955, 1894, 89, 3857, 21166, 91], - [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 31914], - [1, 2343, 21964], - [0, 21965, 21966, 21967, 2487], - [0, 4747, 3744], - [ - 0, 89, 1177, 31934, 31928, 2735, 1894, 10777, 48, 31923, 53, 1178, 2132, 31926, 21495, 31929, 31935, 31932, - 31920, 31922, 1959, 1879, 1938, 1895, 1947, 1955, 1961, 5103 - ], - [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 31937, 6574, 6635, 181, 1017, 45, 13814, 22875, 2414], - [1, 2343, 21971], - "ravis-cli", - [2, 6305, 21969], - [0, 0, 21973, 21974, 34352], - "TDD", - [ - 0, 48, 53, 61, 78, 5240, 87, 90, 94, 31942, 20202, 20212, 602, 15134, 10817, 968, 972, 974, 4880, 1011, 1178, - 1195, 1198, 4899, 1461, 1497, 1610, 1177, 1895, 1916, 1938, 1959, 2193, 2832, 3132, 15326, 1894, 9054, 89, 3824, - 31945, 4042, 4045, 4055, 11802, 4060, 4067, 4069, 4077, 4469, 91, 1984, 2924, 4677, 4681 - ], - [0, 5128, 89, 31948, 6847, 6988, 31950, 10098], - [1, 2343, 21976], - [0, 0, 21977, 21981, 2537], - [ - 0, 53, 61, 78, 87, 14041, 5583, 1178, 1195, 1429, 1177, 2675, 2990, 2899, 3400, 1894, 89, 3824, 3904, 31956, - 4039, 4042, 2924 - ], - [3, 2247, 10], - "inue", - [2, 21978, 21979], - [0, 89, 31958, 31959, 3868], - "grunt-env", - "-coverage", - [2, 21930, 21983], - [1, 2343, 21986], - [0, 0, 21987, 21988, 2537], - [0, 8862, 31964, 1177, 31966, 1955, 31967, 1192, 1894, 4042, 91], - [0, 3872, 1936, 8221, 965, 3205, 23584, 1541, 89, 3824], - [1, 2343, 21992], - "afe-mocha", - [2, 2241, 21990], - [0, 21993, 21994, 21997, 2523], - [0, 5546, 5545], - [ - 0, 603, 810, 966, 968, 972, 4874, 5090, 4880, 4883, 1503, 1610, 1177, 1895, 1915, 1938, 1955, 1959, 2832, 1894, - 89, 3824, 3875, 4039, 4493, 91, 4523, 1984 - ], - [2, 21996, 995], - "@sailshq/r", - [0, 89, 6071, 3875], - [1, 2343, 21999], - [0, 0, 0, 10570, 2537], - "grunt-release", - "s-dylang", - [2, 14352, 22001], - [1, 2343, 22004], - [0, 22006, 22007, 22010, 2537], - "notify", - [0, 2677, 31983, 3744, 1849], - [ - 0, 10817, 4856, 31986, 13204, 31989, 31992, 6503, 4880, 4883, 6513, 1009, 1011, 1429, 1610, 1177, 1924, 2193, - 2832, 31994, 2899, 1894, 89, 3824, 4039, 4042, 11054, 4170, 4193, 4484, 4494, 4508, 91 - ], - "mountain lion", - "mavericks", - [0, 1623, 5128, 31765, 89, 5131, 31997, 31999, 6415, 32001, 6398, 4627], - "notify-send", - [1, 2343, 22013], - [0, 22014, 22015, 22016, 2487], - [0, 977, 5152], - [0, 4493, 89, 4548, 22205, 28119, 3824, 91, 3904, 972, 2780, 5162, 968, 974], - [0, 89, 38, 4082, 7433, 2602, 163], - [1, 2343, 22018], - [0, 22019, 22020, 22016, 2399], - [0, 3884], - [0, 4493, 89, 22205, 3824, 91], - [1, 2343, 22023], - "libsass", - [0, 0, 22024, 22025, 2537], - [ - 0, 1173, 1175, 1178, 1195, 24231, 24234, 1257, 1267, 1268, 1275, 1280, 1177, 1898, 1935, 1938, 1947, 1959, 2022, - 2602, 22588, 31842, 2297, 2886, 2895, 2900, 2904, 2921, 2925, 2899, 89, 3824, 3876, 3884, 3875, 32020, 32023, - 32026, 2924 - ], - [0, 89, 3875, 38], - [1, 2343, 22028], - [2, 705, 1153], - [0, 22029, 6230, 2514, 2537], - [ - 0, 1324, 1192, 1759, 1177, 4135, 3561, 3742, 814, 2924, 2151, 2154, 1420, 1193, 1628, 53, 2092, 4111, 4383, - 1195, 1393, 2797, 4307, 841, 1763, 3878, 3618, 3816, 3647, 4230, 2686, 3672, 3803, 4028, 4681, 2651, 2802, - 24732, 4409, 1270, 3605, 4723, 1898, 3177, 4686, 1630, 1216, 1426, 24723 - ], - [1, 2343, 22032], - "sauce-tunnel", - [0, 22036, 22038, 22039, 2443], - [3, 2311, 11], - "-tunnel", - [2, 22033, 22034], - [0, 97, 7931, 7948, 8181, 4808, 3145, 3744, 3911, 8187], - "yui", - [0, 11931, 1843, 8160, 11875, 89, 3824], - [0, 32039, 1669, 6847, 32040, 89, 5128, 1631, 181], - [1, 2343, 22041], - [0, 22042, 22043, 22044, 2523], - [0, 1461, 32046, 3029, 4023], - [ - 0, 48, 53, 68, 61, 85, 87, 90, 28598, 968, 972, 974, 4874, 1165, 1175, 1193, 1195, 1261, 1628, 1699, 1700, 1859, - 1177, 1938, 1959, 2026, 32049, 2323, 2494, 2675, 1192, 2780, 2820, 2843, 2990, 3459, 3618, 1894, 3775, 89, 3824, - 3957, 4193, 32051, 4307, 4537, 2924, 4677, 4681, 32052 - ], - [0, 11167, 32054, 32055, 32056, 31512, 5128], - [1, 2343, 22046], - [0, 22047, 22048, 22049, 2523], - [ - 0, 32061, 4889, 32062, 1082, 15128, 1145, 12184, 1397, 1465, 5386, 1497, 32063, 1584, 1593, 19526, 32064, 1863, - 1874, 1875, 2007, 29067, 7076, 32067, 7610, 2070, 32068, 2570, 2745, 32070, 32071, 32072, 32076, 32080, 32081, - 32084, 32085, 2929, 32086, 1209, 21641, 3120, 32087, 6041, 3467, 3725, 3744, 32088, 32089, 3816, 3822, 32091, - 32095, 32097, 3839, 12438, 3930, 3984, 32098, 4409, 19650, 32099, 4555, 4681, 4689 - ], - [ - 0, 48, 53, 61, 87, 14128, 90, 92, 968, 972, 32102, 32104, 31669, 32107, 1006, 32109, 5087, 32112, 4870, 32114, - 4874, 8149, 4880, 4883, 32116, 32118, 4891, 32120, 8157, 1009, 1011, 1175, 1178, 1193, 1195, 1628, 31058, 32121, - 32123, 32124, 1177, 32126, 1915, 1924, 1938, 1947, 1959, 2092, 2151, 2675, 1192, 32129, 2990, 3144, 1894, 3775, - 89, 3824, 3904, 32130, 4307, 91, 4027, 2924, 4677 - ], - [0, 89, 1219, 6718, 25172, 1745, 1739, 1179, 4627, 4963], - [1, 2343, 22051], - [0, 22056, 22059, 22063, 2537], - "sprit", - "esheet-templates", - [2, 22052, 22053], - "sprites", - [0, 97, 955, 5090, 3744], - "spritesmith", - "url2", - [ - 0, 53, 83, 87, 90, 442, 15288, 5583, 811, 816, 6373, 10615, 972, 5087, 13204, 4874, 4880, 4883, 7749, 1251, - 11890, 1177, 1895, 1959, 1961, 10964, 2203, 1192, 2780, 3297, 3401, 1894, 89, 3824, 4042, 4167, 4172, 11803, - 4468, 4474, 91, 4523 - ], - [3, 21470, 15], - "wolfson", - [2, 22060, 22061], - [0, 965, 1936, 11806, 11807, 5284, 89, 32142, 8221, 32145, 91], - "foundry", - "-release-git", - [2, 22064, 22065], - [3, 22066, 16], - [2, 22067, 3378], - [1, 2343, 22070], - [0, 22073, 0, 22076, 2487], - "get-pixels", - "gmsmith", - [0, 2081], - "sprite", - [3, 22054, 11], - [0, 32151, 89, 4453, 1702, 32152, 3899], - [1, 2343, 22078], - [0, 22079, 0, 22080, 4139], - [0, 3847, 4116], - [0, 89, 3857, 32162], - [2, 17566, 200], - [1, 2343, 22083], - [0, 6234, 22084, 22085, 2523], - [ - 0, 32167, 27742, 549, 963, 4874, 4880, 4883, 1030, 1596, 1651, 8540, 2990, 3561, 1894, 89, 3824, 4493, 91, 1983, - 32170 - ], - [0, 89, 9044, 11000, 5128, 3906, 6645, 32172, 26264, 6458], - [1, 2343, 22087], - [0, 22094, 22095, 22096, 2523], - "@npm/types", - [2, 7726, 2855], - [3, 8610, 9], - "ite-file-atomic", - [2, 22090, 22091], - [2, 16569, 1182], - [0, 32177, 32178], - [ - 0, 1317, 1389, 1408, 1506, 32180, 5669, 1839, 32181, 1859, 1177, 19896, 2228, 2240, 25074, 2247, 18461, 2256, - 2273, 32183, 25060, 32186, 2774, 3460, 3521, 12344, 32188, 3930, 22031, 4449, 91, 4535, 31135, 4652 - ], - [0, 89, 1219, 8535, 6624], - [1, 2343, 22098], - [0, 22103, 0, 22104, 2399], - "@guarapi/eslint-config-guarapi", - [2, 8711, 93], - [3, 5542, 13], - [2, 22101, 3312], - [0, 97, 1751, 3082, 3744], - [0, 89, 9944, 19102, 32195, 7521, 1623, 32196], - [1, 2343, 22106], - [0, 22107, 22108, 22111, 2487], - [0, 1497, 3744, 1751, 3082, 97, 3849], - [ - 0, 1192, 2675, 89, 2282, 1177, 4039, 4042, 1503, 3561, 2924, 2126, 2193, 1894, 1610, 2700, 3758, 3824, 48, 1193, - 1505, 1628, 53, 2092, 2990, 3566, 4677, 1165, 1178, 1195, 3720, 3884, 4307, 3618, 85, 29945, 32207, 3885, 87, - 14128, 18229, 4681, 90, 32203, 1922, 1959, 32205, 2651, 3904, 4045, 4077, 32202, 4069, 1895, 1935, 1947, 1955, - 4055, 32206, 4067, 2054, 8229, 83, 14132, 28972, 61, 5241, 1251 - ], - "undertaker", - "glob-watcher", - [0, 89, 6071, 5128, 4607, 3392, 32209, 32210, 3912, 176, 32211, 10345, 9320, 15182, 10052, 21604], - [1, 2343, 22113], - [0, 22116, 22117, 22118, 2399], - "series", - "streaming", - [0, 4430, 3909], - [0, 2899, 2272, 4135, 15052, 1389, 1537, 32218], - [0, 89, 1389, 14927, 1219, 676, 1932, 353], - [1, 2343, 22120], - [0, 22121, 22123, 22124, 2523], - [0, 97, 6372, 1461, 3744, 32225, 3911], - "gulp-footer", - [ - 0, 48, 53, 68, 73, 76, 78, 5241, 87, 90, 10821, 10825, 10828, 32229, 10837, 968, 972, 974, 4880, 1178, 1193, - 1195, 1270, 1367, 1540, 1567, 25901, 1610, 32231, 1787, 1797, 1177, 1879, 1895, 1935, 1938, 1947, 1959, 10851, - 32233, 1192, 2780, 2832, 2843, 3165, 1894, 89, 3824, 3830, 32236, 3884, 3904, 91, 2924 - ], - [0, 3916, 1367, 89, 4627, 4963, 5128, 181], - [1, 2343, 22128], - "html2js", - [2, 1283, 2325], - [0, 22129, 22130, 2514, 2537], - [0, 8612], - [0, 9516, 9515, 8608, 13680, 1011, 1414, 1915, 4384, 4474, 4483, 91], - [1, 2343, 22132], - [0, 22134, 11332, 22135, 4139], - "gulp-symdest", - [0, 18186, 18183, 16474, 4507, 20789], - [0, 1781, 3917, 1644, 2090, 2150, 30135, 3001, 3383, 3374], - [1, 2343, 22138], - "atom-shell", - [0, 22139, 8134, 22140, 2537], - [0, 30055, 3919, 4507], - [ - 0, 1781, 3917, 1644, 2090, 2150, 30135, 3001, 3383, 2100, 2104, 2105, 7076, 6614, 6605, 7193, 3529, 814, 5933, - 7029, 6857, 7204, 4647, 6821, 3403 - ], - [1, 2343, 22142], - [0, 22143, 22144, 22148, 34352], - [0, 1079, 1398, 2018, 3729, 15042], - [ - 0, 53, 14170, 13051, 19181, 811, 15460, 816, 826, 1389, 1414, 668, 32258, 1177, 1903, 1938, 1953, 1958, 3541, - 1894, 4042, 23652, 4384, 32262, 4389, 4390, 4548, 2924, 4677 - ], - "prefixes", - [3, 3674, 9], - [2, 22146, 8736], - [0, 7017, 3101, 7170], - [1, 2343, 22150], - [0, 0, 22151, 22152, 4139], - [0, 4384, 2685], - [0, 3925, 32271, 2090], - "lodash.chunk", - [1, 2343, 22155], - [0, 0, 0, 22158, 34352], - "-transform", - [2, 13792, 22156], - [0, 3925, 31360, 24095, 3741, 8631, 6875, 200, 6621, 1523, 32276, 8652, 6703, 1359], - [1, 2343, 22160], - [0, 8856, 7938, 7939, 2523], - [1, 2343, 22162], - [0, 22163, 22165, 22169, 2523], - [0, 12184, 2003, 4227, 32284, 4484], - "b", - [0, 53, 58, 87, 32287, 4865, 6503, 4874, 1011, 1177, 19896, 32288, 2070, 2990, 2899, 1894, 24209, 91], - "storage-blob", - [2, 13444, 22166], - [2, 12694, 14922], - [0, 6892, 22179, 32291, 5061, 5341, 22180, 7119, 32293], - "streamifier", - [1, 2343, 22172], - [0, 8029, 7938, 7939, 4139], - [1, 2343, 22174], - [0, 22175, 14066, 22176, 2537], - [0, 814], - [0, 3209, 1194, 7188, 19101, 32302], - [1, 2343, 22178], - [0, 22182, 0, 22183, 2537], - "rewriting", - [3, 12348, 14], - "desugaring", - [0, 97, 32307, 2081, 2609, 3849, 5513], - [0, 89, 6734, 4963, 32310, 6081, 6731, 32312], - [1, 2343, 22185], - [0, 13856, 7923, 22186, 4139], - [0, 7204, 32318], - [1, 2343, 22191], - "utf-8", - "add", - "prepend", - [0, 22192, 0, 22193, 2487], - [0, 32325, 32327, 32329, 32330, 32333], - [0, 1552], - [1, 2343, 22195], - [0, 22196, 22199, 5885, 2399], - [ - 0, 6327, 8111, 3127, 8114, 3725, 4213, 3555, 1757, 1461, 3191, 3744, 8122, 8123, 8113, 8127, 2017, 8116, 3502, - 8126, 8119, 32343 - ], - "decov.io", - [2, 2364, 22197], - [ - 0, 3775, 1002, 1192, 3190, 2675, 89, 4484, 1843, 1177, 4039, 1593, 1651, 2822, 3471, 4167, 4468, 4474, 8166, - 2924, 1894, 3824, 1628, 4201, 91, 4856, 5087, 8144, 4874, 8165, 4677, 4880, 4892, 3720, 4307, 4863, 8147, 8146, - 8149, 8155, 4891, 8160, 8161, 8163, 10875, 8136, 4883, 5090, 4315, 8157, 1311, 4681, 8141, 1584, 1959, 2651, - 1938, 8139, 2780, 4693, 8152, 1011, 1961, 1567, 8129, 2135, 1009, 32341 - ], - [1, 2343, 22201], - [0, 22202, 22203, 22204, 2537], - [0, 32353, 32351], - [0, 89, 2924, 3824, 91, 4880, 4883, 32359, 32358], - [0, 3939, 3452, 5592, 8124, 1745, 32361, 467, 32363], - "wireit", - [1, 2343, 22207], - [0, 0, 22208, 22209, 2523], - [ - 0, 53, 4874, 1009, 1011, 1610, 10888, 1177, 1898, 1915, 1938, 1959, 1961, 2070, 32368, 1894, 4039, 4094, 4493, - 91, 1984 - ], - [0, 3875, 6696, 6649, 6788, 6564, 2700, 6609, 2998, 6596, 2130, 6891], - [1, 2343, 22211], - [0, 22212, 22213, 22214, 2523], - [0, 32376, 32378], - [0, 32380, 32383, 32385, 2675, 2990, 3400, 1894, 1983, 1984, 1906], - [0, 2130, 3875, 27106, 10820], - [1, 2343, 22216], - [0, 22219, 22221, 22224, 2523], - "bump-regex", - "plugin-log", - [0, 1209, 3847, 1860, 2731, 2752, 3744, 97, 2609], - "versioning", - [ - 0, 4449, 1192, 2675, 89, 3875, 1177, 4039, 1503, 2924, 2126, 1894, 1610, 2700, 3824, 48, 1693, 4201, 53, 32392, - 2990, 3876, 4677, 1178, 1195, 32394, 87, 90, 1210, 1922, 1959, 10623, 3904, 1938, 32385, 32393, 1935, 1947, - 1898, 4676, 1961, 5535, 31393, 83, 61, 5240 - ], - "gulp-version", - [3, 2476, 11], - [0, 89, 6071, 2130, 3875, 3876, 3945, 1669, 4636], - [1, 2343, 22226], - [0, 22227, 22231, 22232, 2487], - [0, 1688], - "swap", - "cache-swap", - "object.pick", - [ - 0, 1175, 1203, 29775, 1267, 1429, 1503, 1177, 1879, 1938, 1947, 1959, 2665, 2675, 2899, 3421, 3875, 4039, 4042, - 4045, 4055, 4067, 4077, 4193 - ], - [0, 3875, 2942, 3946, 2663], - [1, 2343, 22234], - [0, 22235, 22236, 22237, 2399], - [0, 32408], - [0, 53, 83, 85, 87], - [0, 5284, 3875, 2663, 3947, 32416, 32418], - [1, 2343, 22239], - [0, 0, 22240, 22241, 2523], - [0, 1009, 1011, 1610, 1177, 1895, 1894, 3875, 4039, 4493, 91, 1984], - [0, 3875, 3949, 2663, 32425, 2130], - "file-e", - [1, 2343, 22247], - "xtension", - [2, 22242, 22244], - [2, 17355, 22245], - [0, 0, 22248, 22250, 2537], - [0, 4856, 6503, 4874, 1429, 1700, 32431, 2323, 32433, 32435, 2463, 2494, 32436, 2524, 2899, 91], - "changed", - [0, 4636, 6774, 5284, 19080], - "modified", - [1, 2343, 22256], - "modification", - "mtime", - "passthrough", - [0, 0, 22257, 22258, 4139], - [0, 1503, 2228, 2314, 2759, 14529, 3774, 4019], - [0, 1108, 6961, 5284, 3656, 1179, 4990], - [1, 2343, 22260], - [0, 0, 0, 22261, 2537], - [0, 5659, 7047, 1179, 1149], - [1, 2343, 22263], - [0, 22264, 0, 22265, 2487], - [0, 12396, 3971, 3978, 4549], - [0, 32452, 6892, 1936, 1644, 3729, 3958, 4141, 1646, 5341, 1633, 4549], - [1, 2343, 22267], - [0, 22268, 22269, 22270, 2523], - [0, 12396, 23247, 9401, 12421, 4549, 4555], - [0, 4874, 23262, 1414, 32460, 1894, 3958, 3985, 3998, 4505, 91, 1906], - [0, 4549, 3958, 32462, 1932, 156, 163, 1936], - [1, 2343, 22272], - [0, 22273, 22274, 22275, 2537], - [0, 12396, 23247, 12421, 32467, 4233, 4555], - [0, 4874, 23262, 1414, 1894, 3958, 3985, 3998, 4505, 91, 1906], - [0, 4549, 3958, 32462, 1932, 2587, 1936, 1783, 11052, 163, 1002], - [1, 2343, 22278], - "jshint-", - [0, 22281, 22282, 22283, 2443], - "reporter-jscs", - [2, 22277, 22279], - [0, 12396, 32481, 3137, 12127, 12133, 4549, 12447], - [0, 9311, 4874, 4880, 1414, 1177, 27706, 1947, 1959, 23312, 1894, 3985, 27711, 32484, 91], - [0, 2587, 1936, 1783, 9102, 3958, 32462, 4549], - [1, 2343, 22285], - [0, 22286, 0, 22287, 2523], - [0, 12396, 23276, 4549], - [0, 32452, 6892, 1936, 1644, 1932, 3958, 32462, 5341, 1633, 4549], - [1, 2343, 22289], - [0, 22290, 22297, 22298, 4139], - [0, 12396, 2572, 12449], - [3, 19569, 12], - "rework", - "rework-import", - "rework-", - "plugin-url", - [2, 22294, 22295], - [0, 4874, 1414, 1894, 3978, 3985, 3992, 3998, 3999, 4505, 91, 4549, 4555, 1906], - [0, 1936, 1932, 3972, 3958, 32462, 4549], - [1, 2343, 22300], - [0, 22301, 22302, 22305, 2537], - [0, 12396, 7610, 9401, 2584, 4555], - [0, 4874, 1414, 1894, 3958, 3985, 3998, 4505, 91, 1906], - "slush", - "dest", - [0, 156, 1936, 3265, 1932, 3958, 32462, 3974, 4549], - "conflict", - [1, 2343, 22308], - [0, 22309, 0, 22310, 2487], - [0, 12396, 2581, 4549], - [0, 32452, 6892, 7234, 1936, 1932, 3958, 32462, 4141, 1646, 5341, 1633, 4549], - [1, 2343, 22312], - [0, 22314, 22315, 22317, 2523], - "webserver", - [ - 0, 22353, 692, 29431, 1154, 15444, 1458, 7614, 9322, 2720, 32513, 3060, 3173, 29024, 3445, 3467, 6331, 20921, - 4135, 27921, 4548, 4566, 32514, 4748 - ], - [0, 442, 32523, 4874, 1177, 32525, 2203, 17529, 2931, 29442, 32519, 1894, 3985, 32522, 4390, 91], - "hyperlink", - [ - 0, 6147, 13729, 1528, 32528, 3358, 2195, 17978, 24095, 15656, 3378, 20001, 6645, 3979, 3980, 18157, 1508, 4166, - 10381, 4990, 15525, 4135, 1932 - ], - [1, 2343, 22319], - [0, 22320, 22321, 22322, 2537], - [0, 2759, 3181, 3544, 4227, 4431], - [0, 1177, 1881, 1938, 2228, 2323, 17121, 4039], - [0, 18444, 21779, 4227, 2759, 4504], - [1, 2343, 22325], - "csscomb", - [0, 22326, 0, 22327, 2537], - [0, 4549, 9363, 3992, 13124], - [0, 32452, 6892, 7234, 1783, 26564, 1644, 3729, 3984, 4141, 1646, 5341, 1633, 4549], - [1, 2343, 22329], - [0, 22330, 0, 22332, 2443], - [0, 5210, 32544, 3984, 32545], - "rcloader", - [0, 20052, 200, 1783, 26564, 3984, 4549], - [2, 21861, 2838], - [2, 15526, 2063], - [1, 2343, 22336], - [0, 22337, 22338, 22339, 2399], - [0, 9363, 27008, 27010, 3992, 13124, 4549], - [0, 4874, 1414, 32460, 1894, 3984, 3985, 3998, 4290, 18071, 4505, 91, 1906], - [0, 26072, 26766, 3987, 2195, 1783, 26564, 1932, 3984, 32553, 12994, 176, 9000, 4549], - [1, 2343, 22341], - [0, 22342, 22343, 22344, 2537], - [0, 9363, 2575, 3140, 2581, 4549], - [ - 0, 12396, 4874, 1414, 26992, 23276, 1894, 3985, 9340, 3988, 10630, 3992, 3998, 32560, 10632, 4505, 91, 12449, - 1906 - ], - [0, 7234, 1936, 1783, 26564, 1932, 3984, 32553, 1646, 4549], - [1, 2343, 22346], - [0, 22347, 22348, 22349, 34352], - [0, 12449, 4549, 9363, 32568, 12447, 32567], - [0, 1414, 1177, 3984, 1894, 3541, 3985, 91, 12396, 3999, 3978, 32484, 27706, 27711], - [0, 1745, 25131, 3990, 1932, 3984, 32553, 4549], - [1, 2343, 22351], - [0, 22352, 0, 22354, 2523], - [0, 9363, 3137, 26987, 4549], - "@nodeutils/defaults-deep", - [0, 32452, 6892, 1783, 26564, 1644, 1932, 3984, 32553, 5341, 1633, 4549], - [1, 2343, 22356], - [0, 22357, 22358, 22359, 34352], - [ - 0, 32582, 32584, 3988, 32587, 32591, 23059, 23065, 23070, 23075, 23078, 32593, 23080, 32595, 23082, 32599, - 32601, 32606, 32609, 23098, 32613, 23113, 32617, 32620, 32626, 32629, 32631, 32636, 23118, 32638, 32640, 32646, - 32651, 32654, 32656, 32658, 32664, 23128, 23133, 23136, 32667, 23139, 23141, 11382, 32668, 10632, 32669, 32672, - 4549 - ], - [0, 192, 5467, 1177, 1909, 2114, 2675, 2990, 1894, 3985, 1906], - [0, 2195, 16342, 3984], - "from2-string", - "@shi", - "nnn/eslint-config-node", - [2, 22361, 22362], - [1, 2343, 22366], - "warnings", - [0, 22367, 22368, 22369, 2537], - [ - 0, 32582, 3988, 10630, 23059, 23065, 23070, 23075, 29079, 23078, 29082, 32593, 23080, 32595, 23082, 32599, - 32601, 32606, 23092, 32609, 32681, 32686, 32689, 29091, 29097, 29100, 29132, 29143, 29147, 29149, 32613, 32692, - 23113, 32696, 32617, 32699, 32620, 32626, 32629, 32631, 32636, 23118, 32638, 32703, 29151, 32705, 32646, 32651, - 32707, 32710, 32654, 32656, 32658, 32715, 32717, 32664, 23128, 23133, 23136, 32667, 23139, 23141, 11382, 32668, - 13124, 10632, 23143, 32669, 32719, 4290, 4549 - ], - [0, 1894, 3985, 4505, 91, 1906], - [0, 16342, 3984, 3997], - "-match", - [2, 7534, 22370], - "flatnest", - [1, 2343, 22374], - [0, 22376, 22377, 22383, 4139], - "@type-challenges/utils", - [0, 12396, 9363, 3140, 4549, 12449], - [0, 4874, 1414, 1894, 3975, 3978, 3985, 3992, 3998, 13124, 4505, 91, 1906], - [2, 29833, 2658], - [2, 3101, 7131], - "to-a", - "bsolute-glob", - [2, 22380, 22381], - [0, 2587, 1936, 1783, 26564, 1932, 32462, 3958, 32553, 3984, 4549], - [1, 2343, 22385], - [0, 22386, 22387, 22388, 2487], - [0, 1139, 32732], - [0, 1111, 1317, 20627, 1177, 1926, 1999, 2398, 2600, 3127, 2899, 3421, 4042, 4058, 4067, 4073, 4146], - [0, 20627, 1783, 5980, 1644, 57, 3729, 4001, 8924, 3902, 2585], - [1, 2343, 22391], - "divide", - [0, 0, 14066, 22393, 2523], - "separate", - [0, 2323, 19101, 17996, 8297], - [1, 2343, 22395], - [0, 22396, 22397, 22398, 2537], - [0, 1437, 2070, 4747], - [0, 442, 1414, 1429, 1431, 1177, 2899], - [0, 4068, 2585, 16504, 2090], - [1, 2343, 22400], - [0, 22401, 22403, 22404, 2399], - [ - 0, 3763, 29749, 3348, 2051, 32749, 15057, 32751, 2139, 3173, 32753, 4100, 4454, 32754, 32756, 32757, 32758, - 32759, 21144, 3518, 2854 - ], - [2, 3715, 4001], - [ - 0, 3421, 4389, 2297, 32761, 4039, 1503, 1362, 4255, 1596, 32762, 19946, 1389, 1400, 14038, 2886, 4153, 2871, - 3524, 21146, 2906 - ], - [0, 27, 2869, 614, 6435], - "prettify", - [1, 2343, 22407], - [0, 22408, 22409, 22411, 2537], - [0, 1362, 4454, 32768, 32770], - [0, 1429, 2323, 1437, 1209, 4039, 705, 2463, 1364, 2384, 4089, 2436, 27608, 3753], - "jsftp", - [0, 4731, 27, 2671, 1862, 705, 21244, 32773, 1362], - "jsftp-mkdirp", - [1, 2343, 22415], - "ftp-test-server", - [0, 22416, 22417, 22418, 34352], - [0, 32770, 32768, 4454], - [0, 1364, 1429, 1437, 2323, 27608, 2384, 2436, 2463, 1209, 3753, 705, 4039, 4089], - [0, 4731, 27, 2671, 1862, 705, 21244, 32773, 970], - [1, 2343, 22421], - "gift", - [0, 0, 22423, 2514, 2399], - "wrap-promise", - [0, 4474, 91, 1506], - [1, 2343, 22429], - "octonode", - [3, 8304, 11], - [2, 15034, 22426], - [2, 22363, 1231], - [0, 0, 22431, 22432, 2537], - "branch", - [0, 6637], - [0, 3209, 4017, 32792], - [1, 2343, 22434], - [0, 0, 22441, 22442, 2523], - "any-", - [2, 5124, 1867], - [2, 22435, 22436], - [3, 21732, 13], - "eam", - [2, 22438, 22439], - [ - 0, 810, 972, 4870, 4880, 4883, 7749, 1009, 32801, 1011, 32804, 1177, 1959, 32805, 2832, 1209, 3057, 3145, 32807, - 32368, 1894, 89, 3824, 3876, 4039, 4167, 4493, 91, 1984 - ], - [0, 89, 3875], - "gulpgit", - [1, 2343, 22445], - [0, 0, 22446, 22447, 2537], - [0, 1178, 1597, 1177, 2765, 2766, 2297, 2881, 2895, 2898, 6387, 2910, 2915, 2921, 2923, 3734, 4042, 4075, 91], - [0, 32814, 24800, 31767, 614, 5576, 1388, 6422, 6805], - [3, 6530, 10], - [2, 22448, 4552], - [1, 2343, 22452], - "nid", - [0, 22453, 22454, 22455, 2399], - [0, 32820, 17501, 32824], - [0, 15221, 4384, 4449, 4389, 1796, 1177, 3188, 4039, 4135, 32826, 3410, 2708, 3433, 20492, 4103, 13614], - [0, 814, 3209, 202, 1237], - [1, 2343, 22457], - [0, 0, 8134, 22459, 2523], - "gulp-de", - [0, 3209, 814, 3403, 1237, 7115, 15403, 1204], - "gulp-declare", - [1, 2343, 22464], - "fine-module", - [2, 22458, 22462], - [0, 22467, 0, 22468, 2399], - "gulp-wrap", - "nsdeclare", - [0, 32836, 1573, 3008, 3561, 4227], - [0, 2924, 1194, 1623, 3374, 9345, 814, 1002, 2278, 10903, 2090], - [1, 2343, 22470], - [0, 22471, 22472, 22473, 2523], - [0, 32842, 8098, 2151, 2036, 2822, 32843, 3348], - [ - 0, 48, 53, 13693, 61, 71, 78, 13051, 85, 87, 97, 192, 6298, 6061, 6063, 1166, 1170, 1178, 1208, 1212, 1364, - 1429, 16311, 1596, 31058, 1687, 8942, 1177, 32848, 32850, 1938, 1948, 1951, 32852, 1954, 1958, 1964, 32855, - 1966, 1969, 1982, 2026, 32856, 2675, 2824, 2848, 3019, 2899, 3200, 32858, 3421, 4131, 32860, 4342, 32861 - ], - [0, 8623, 1118, 1179, 1745, 32864, 6533, 32867, 4030, 5592, 27], - [1, 2343, 22476], - "eventstream", - [0, 22477, 22478, 22479, 2537], - [ - 0, 3763, 1641, 32874, 3171, 3441, 3533, 710, 32876, 3348, 1209, 4135, 4591, 30107, 3084, 2141, 12627, 1147, - 20412, 32759, 32875, 15220, 32873 - ], - [ - 0, 3421, 3467, 1429, 2070, 2899, 4193, 1177, 3188, 4039, 2720, 2276, 1894, 1596, 1155, 32883, 20441, 3697, 3752, - 1745, 32881, 32878, 1942, 1895, 1955 - ], - [0, 8173, 5130, 2026, 32885], - [1, 2343, 22482], - [2, 11941, 1596], - [0, 22483, 9888, 2514, 2537], - [0, 3763, 4734, 4745, 2685], - [1, 2343, 22485], - [0, 22486, 22487, 22488, 4139], - [0, 21420, 4174], - [0, 4481, 1906], - [ - 0, 2021, 32896, 3729, 30135, 32897, 7226, 6689, 32899, 32900, 24601, 200, 13006, 1111, 15814, 6048, 7009, 7201, - 6621, 4166, 6876 - ], - "htm", - [1, 2343, 22491], - [0, 22492, 0, 22493, 4139], - [0, 1362], - [0, 18035, 32906, 32907, 32909], - [1, 2343, 22503], - "gulp-spawn", - [2, 22501, 33473], - "gulp-svg2ttf", - "2svgfont", - [2, 45, 22498], - [2, 2518, 22499], - [3, 29059, 12], - "gulp-ttf2eot", - [0, 0, 22506, 2514, 2523], - "gulp-ttf2woff", - [2, 22504, 1276], - [0, 21147, 2759, 4389], - "@types/gulp", - [1, 2343, 22513], - "metapak", - "-nfroidure", - [2, 22509, 22510], - "streamtest", - [0, 22514, 22515, 22516, 2523], - [0, 1177, 5896], - [0, 4874, 2025, 2899, 3421, 4474, 91], - [0, 7190, 14419, 3212, 1858, 1237, 2275, 1973, 27916, 3430, 21147, 3209], - [1, 2343, 22520], - "gulp-match", - "ternary-stream", - [0, 0, 22523, 22526, 2537], - "exhaust", - [2, 4279, 22521], - [0, 5898, 1503, 6618, 6786, 30025, 32925, 3028, 32927, 32930, 3776, 4255, 4384, 4481], - "if", - "ternary", - [ - 0, 3048, 7002, 3583, 1496, 1585, 1697, 6899, 6803, 3432, 6693, 3743, 7098, 6638, 6618, 7167, 2062, 6681, 6856, - 6986, 7035, 6648, 7284, 6786, 6670 - ], - [1, 2343, 22528], - [0, 22529, 22530, 22531, 2537], - [0, 2070, 21510], - [0, 4874, 3188, 1894, 4384, 4483, 4508], - [0, 6790, 7218, 6610, 7293, 7204, 200, 7074, 6899], - [1, 2343, 22533], - [0, 22534, 22535, 22537, 2537], - [0, 3263, 8248, 32944], - [0, 2765, 32942, 32947, 32949], - "gulp-gm", - [0, 32951, 27747, 29002, 8652, 12197, 158, 32952, 28125, 4041, 13008, 32954, 32956, 32959, 32961, 1473], - [1, 2343, 22539], - [0, 12881, 22540, 22541, 2537], - [ - 0, 16003, 32967, 16005, 16002, 16000, 15999, 442, 8998, 5012, 25130, 11536, 8862, 15134, 811, 8850, 816, 6373, - 10615, 10817, 10895, 32970, 6503, 4874, 20374, 5254, 21626, 21830, 1082, 32971, 15128, 1397, 1405, 1457, 1540, - 1593, 1610, 32972, 1859, 1866, 1177, 1895, 1955, 1982, 1988, 2116, 32973, 2151, 10754, 2203, 2675, 10898, 2990, - 10902, 3090, 3144, 2899, 3363, 22496, 3421, 5561, 3527, 3530, 32977, 1894, 3706, 3714, 3718, 4019, 4042, 4060, - 4135, 4172, 4174, 4227, 4232, 4376, 4072, 4484, 91, 4523, 1983, 4614, 188, 4630, 13151, 32979, 4748 - ], - [0, 5260, 6996, 6903, 5194, 6708], - [1, 2343, 22543], - [0, 22544, 22545, 22546, 2537], - [0, 5652, 4081], - [0, 53, 8229, 71, 83, 87, 1397, 1177, 1895, 1955, 2675, 2990, 2899, 1894, 4042, 4048, 4058, 4227, 4232], - [0, 4080, 1172, 6778, 5194], - [1, 2343, 22548], - [0, 22549, 22550, 2514, 2443], - [0, 1397, 4081], - [0, 1177, 2899, 4042], - [1, 2343, 22552], - [0, 22553, 22554, 22556, 2523], - [0, 32998, 4081], - [0, 15134, 1177, 2022, 2899, 3421, 4039, 4042, 33001, 33002], - "group-array", - [0, 4042, 4080, 5284, 5194, 5260, 4298, 33005, 4051], - "strip-color", - [3, 5467, 19], - [2, 22558, 1098], - [1, 2343, 22563], - [2, 5376, 591], - [3, 10705, 13], - [0, 22564, 22565, 2514, 2537], - [0, 2007, 10898, 3090, 814, 4081], - [ - 0, 53, 87, 94, 1082, 1177, 1938, 2675, 2990, 10902, 2899, 1894, 10904, 4042, 4045, 4058, 4067, 4172, 4227, 4232, - 91 - ], - [1, 2343, 22567], - [0, 22569, 22570, 22571, 2537], - "inline-css", - [0, 3090], - [0, 51, 19861, 33017, 1006, 4874, 4880, 1414, 4042, 91], - [0, 4080, 91, 4056, 1007], - [1, 2343, 22573], - [0, 22574, 22577, 2514, 2443], - [0, 4081], - "lodash.g", - [2, 22575, 19530], - [0, 1177, 1938, 2675, 2990, 2899, 1894, 4042, 4048, 4067, 4232], - [1, 2343, 22579], - [0, 22580, 22581, 22582, 2523], - [0, 33028, 20378, 1209, 3090, 3220, 33029, 33031, 33036], - [ - 0, 53, 87, 94, 5583, 811, 816, 8661, 1009, 1011, 1104, 1198, 1177, 1881, 1938, 2061, 2151, 29406, 2323, 33038, - 2441, 2765, 2766, 1894, 4039, 4042, 27720, 33042, 4449, 91 - ], - [0, 4042, 4080], - [2, 17487, 8162], - [2, 11941, 22583], - [1, 2343, 22586], - [0, 22587, 22589, 22591, 2487], - [0, 33048, 33051, 1618, 33052], - "isparta", - [0, 24235, 1676, 2899, 4042, 4045, 4066, 4146], - "unit test", - [0, 4080], - [1, 2343, 22593], - [0, 22594, 22597, 22591, 2487], - [0, 1082, 33051, 2007, 3090, 33052, 4081], - [2, 34675, 22596], - "-links-validator", - [0, 1175, 1264, 1389, 1192, 3188, 2899, 4039, 4042, 4045, 4067], - [1, 2343, 22599], - [0, 22600, 22603, 22604, 2523], - [0, 5251, 1405, 10912, 814, 4081], - [2, 4402, 16237], - [2, 2767, 22601], - [0, 53, 87, 94, 1856, 1177, 2899, 4042, 4045, 4055, 4058, 10916, 91], - [0, 4042, 4080, 6778, 3378, 5260], - [1, 2343, 22606], - [0, 22607, 22608, 22604, 34352], - [0, 3090, 4081], - [0, 1177, 1938, 2675, 2990, 10902, 2899, 1894, 4042, 4048, 4172, 4227, 91], - [1, 2343, 22610], - [0, 22611, 22612, 22613, 2399], - [0, 10895, 16799], - [0, 10817, 4874, 1009, 1011, 1177, 1895, 1955, 1192, 1894, 4039, 4042, 4468, 91], - [0, 4042, 4080, 12938, 4227, 33078], - [1, 2343, 22615], - [0, 22616, 22617, 22618, 2487], - [0, 51, 2805, 4143, 4072], - [0, 53, 1192, 1894, 4042], - [0, 4042, 4080, 4072, 3178], - [1, 2343, 22620], - [0, 22621, 22622, 22623, 2523], - [0, 814, 4081], - [0, 1397, 1177, 2899, 4039, 4042, 4048, 4055, 4484, 91], - [0, 4080, 91, 6778], - [1, 2343, 22625], - [0, 22626, 22627, 22628, 2537], - [0, 10895, 2102, 2151, 4135, 4484], - [ - 0, 11893, 811, 816, 33097, 4864, 33099, 5087, 4870, 4874, 8860, 5254, 1009, 1011, 1512, 1177, 33100, 1192, 1209, - 3429, 4039, 4042, 33101, 4076, 4468, 91 - ], - [0, 4076, 4075, 4080, 91, 6778, 4042, 3378], - [1, 2343, 22630], - [0, 22631, 22632, 22633, 2487], - [0, 51, 2805, 4143, 4535], - [0, 53, 87, 1193, 1192, 1894, 4042], - [0, 4042, 4080, 2280, 3178], - [1, 2343, 22635], - [0, 22636, 22637, 22641, 2537], - [0, 3445, 3530, 4227, 4747], - [ - 0, 811, 816, 10615, 10817, 5364, 33115, 33116, 33118, 33120, 33121, 33123, 4874, 20374, 4892, 1413, 1654, 14674, - 17086, 17091, 1655, 1660, 1701, 3400, 30889, 3561, 16578, 3698, 1894, 28865, 4042, 10854, 2278, 4484, 91, 1983, - 1984 - ], - "array-unique", - "gulplog", - "has-gulplog", - [0, 4080, 4078, 11996, 33126, 33127, 33129], - "capture-", - [2, 22642, 3101], - [1, 2343, 22645], - [0, 22646, 22647, 22648, 2523], - [0, 2007], - [0, 1006, 5087, 8778, 4874, 2675, 1192, 2990, 3170, 1894, 4042, 4055, 4067, 4075, 4172, 4468, 4487, 91, 19545], - [0, 4042, 594], - [2, 4599, 3101], - [1, 2343, 22652], - [2, 19984, 1276], - [0, 0, 22653, 2514, 2523], - [0, 1389], - [1, 2343, 22655], - [0, 22656, 22657, 22658, 2399], - [0, 33145, 8712, 1410, 1423, 2215, 3561, 4232, 4317, 33146, 1835, 4164], - [ - 0, 33152, 51, 53, 68, 5216, 61, 76, 14160, 78, 33153, 81, 5715, 4851, 5241, 83, 87, 90, 92, 97, 101, 104, 33156, - 33158, 33159, 33162, 8317, 8755, 554, 617, 33165, 33167, 33170, 33172, 33173, 13471, 8648, 842, 11534, 33174, - 33176, 33178, 19861, 10879, 33179, 24807, 31666, 5364, 33181, 7806, 33183, 11796, 11477, 21122, 5245, 33189, - 33191, 4865, 8780, 8264, 4870, 33193, 13057, 33195, 20374, 33197, 4880, 4883, 15606, 5254, 33198, 16149, 13214, - 23452, 11800, 9241, 20463, 13753, 1082, 33199, 31705, 1138, 1145, 1154, 33200, 20476, 1251, 15009, 1393, 1398, - 1413, 33202, 33204, 1525, 33206, 1536, 12084, 15015, 1560, 1562, 977, 1615, 1618, 11890, 16912, 16566, 1676, - 11478, 15018, 33208, 2018, 2105, 2145, 2070, 2553, 2659, 2661, 15022, 2674, 16837, 33209, 2689, 26453, 2755, - 2805, 2856, 2863, 20465, 33210, 3084, 3177, 3244, 3266, 33211, 23175, 3322, 3467, 15031, 6042, 3479, 3502, 3509, - 3530, 12344, 3605, 16840, 3638, 16841, 16842, 3672, 3676, 3678, 3688, 3729, 3757, 15033, 3784, 3878, 3957, 4111, - 4135, 710, 27062, 20508, 4165, 4227, 4230, 28512, 15039, 15040, 9221, 33212, 15042, 4294, 7080, 4390, 33213, - 4072, 4409, 4425, 15046, 15047, 11804, 33214, 614, 15048, 33215, 24739, 2924, 4729, 4763 - ], - [0, 89, 5130, 3287, 5122, 36, 202, 6400, 5995, 200, 4592], - [1, 2343, 22660], - [0, 0, 22661, 22662, 34352], - [ - 0, 14192, 1235, 14196, 14198, 19130, 14199, 14214, 14215, 14217, 1244, 1264, 19127, 18801, 18693, 1378, 1381, - 19119, 18686, 19123, 19122, 1825, 18825, 18829, 33223, 19121, 2899, 3736 - ], - [0, 19132, 6567], - [1, 2343, 22664], - [0, 22665, 22666, 22668, 2523], - [0, 25623, 3527, 3561, 4300], - [0, 1414, 2899, 4255], - "kew", - [0, 33231, 1623, 33232, 4086, 5130, 590, 1504, 26535, 6270, 353], - [1, 2343, 22670], - [0, 22671, 22672, 22673, 4139], - [0, 1437, 2061, 3544], - [0, 2323, 2899, 4170], - [0, 17461, 7170, 6769, 2323, 3468], - "treams", - [2, 6825, 22674], - "ng-annotate", - [1, 2343, 22678], - [0, 0, 22679, 22680, 2523], - [0, 1090, 4389], - [0, 22114, 1149, 3046, 7241, 14629, 18462, 4552, 33244], - [1, 2343, 22682], - [0, 0, 0, 22683, 2537], - [0, 33249, 33250, 7109, 20018, 7099, 7022], - "develop", - [1, 2343, 22686], - [0, 2513, 22688, 22689, 34352], - "restart", - [ - 0, 33256, 7, 842, 8712, 4856, 4870, 6503, 4874, 7749, 6513, 6512, 28198, 1009, 1011, 1257, 1429, 33258, 1473, - 1512, 1610, 1652, 33261, 1874, 1177, 24287, 2139, 2151, 2070, 16015, 2675, 13305, 2990, 1209, 3183, 2899, 3363, - 3400, 8967, 12344, 1894, 1862, 4042, 32414, 33263, 4067, 4167, 4172, 4193, 4196, 4232, 4376, 4474, 4487, 4490, - 33265, 33267, 33273, 91, 4585, 5573, 2924 - ], - [0, 7099, 7022, 6568, 7111, 7199, 7040, 7027, 6858, 6789, 6746], - [1, 2343, 22691], - [0, 0, 9264, 22692, 34352], - [0, 1398, 33283, 33284, 6953, 4100, 1965, 33287], - [1, 2343, 22697], - [3, 13337, 13], - [2, 6574, 22694], - "mac notification", - [0, 22698, 22700, 22701, 2537], - [0, 2708, 4135, 4747], - "notify-osd", - [0, 13614, 1158, 1159, 1796, 1177, 33293, 3421, 4389], - [0, 20001, 25816, 3378, 33295, 10381, 6953, 33297], - [1, 2343, 22703], - [0, 22707, 22708, 22709, 2537], - [3, 13107, 12], - [2, 22704, 2187], - [2, 14983, 22705], - [ - 0, 33304, 21995, 1149, 33307, 1437, 1525, 33312, 1536, 1544, 977, 1575, 1581, 29500, 1797, 2026, 2040, 33313, - 2070, 33315, 33316, 32959, 33319, 33322, 33324, 33325, 33327, 3183, 33328, 3494, 3509, 3547, 3741, 33329, 33332, - 33335, 4135, 4148, 4151, 33336, 33339, 4538, 4590, 33340 - ], - [ - 0, 1317, 1553, 1177, 2025, 2151, 33342, 2899, 3416, 3560, 33344, 33346, 33349, 33352, 33354, 33357, 4170, 4220, - 4342, 4449 - ], - [0, 33359, 33362, 2026, 33363, 33365, 8173, 8172, 3469, 4218], - [1, 2343, 22711], - [0, 22712, 22713, 22714, 2523], - [0, 33379], - [0, 4389, 1090, 33381, 1389, 1537], - [0, 2090, 1213, 33383, 2574, 2649, 1867], - "acorn-typescript", - "esrap", - [1, 2343, 22718], - [0, 22719, 22721, 22722, 4139], - [0, 1699, 1874, 2654, 2747, 33390, 3561], - "zimmerframe", - [0, 1177, 2899, 4193, 33395], - [0, 1936, 57, 18113, 2574], - [1, 2343, 22724], - [0, 22725, 0, 22730, 2523], - [0, 1457, 2700, 4228], - "ENV", - "ifdef", - "ifndef", - "echo", - [0, 590, 4329, 2278, 7121, 1623], - [1, 2343, 22732], - [0, 22733, 22734, 22736, 2523], - [0, 23175], - [ - 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 1369, 1610, 1622, 1628, 1700, 1701, 1835, 1177, 1895, 20281, 1938, - 1939, 1942, 1953, 1955, 1982, 2092, 33408, 2203, 2675, 1192, 2990, 33415, 3144, 3342, 33420, 3400, 1894, 2278, - 21688, 4135, 4257, 4307, 91, 4523, 2924, 4677, 4681 - ], - [2, 1876, 2282], - [0, 2278, 22022, 2924, 1194], - [1, 2343, 22738], - [0, 0, 22739, 2514, 4139], - [0, 1894, 4384], - [1, 2343, 22741], - [0, 22742, 22744, 22745, 34352], - [0, 33435], - "views", - [0, 33437, 1414, 33438, 1177, 1776], - [0, 2844, 1745], - "precompile", - [1, 2343, 22748], - [0, 22749, 22750, 13533, 2537], - [0, 1091, 1092, 12384, 8818], - [ - 0, 1700, 1192, 2675, 1177, 1701, 2203, 2924, 1894, 48, 442, 1193, 91, 53, 4874, 2990, 3400, 192, 1953, 27928, - 4257, 87, 1939, 1942, 1938, 20281, 1982, 1895, 1955, 19344, 5467 - ], - [1, 2343, 22752], - [0, 22754, 22755, 22756, 2523], - "src", - [0, 89, 3824, 3286], - [0, 91, 4874, 4880, 4883, 1165, 3561, 4383, 1177, 4828], - [ - 0, 33454, 33455, 2145, 12589, 1616, 33456, 12589, 5472, 20500, 33459, 1237, 33462, 33464, 12590, 33465, 27666, - 11996 - ], - [1, 2343, 22758], - [0, 22759, 0, 22760, 2523], - [0, 1821, 3299, 15160], - [0, 29395, 33471, 33472, 4126], - [1, 2343, 22763], - [2, 4068, 3101], - [0, 0, 0, 22764, 2537], - [0, 33477, 3778, 1616], - [1, 2343, 22766], - [0, 22767, 22768, 22773, 4139], - [0, 33482, 2866, 4449, 4729], - [ - 0, 442, 13838, 1177, 1895, 1951, 1953, 17303, 1955, 2026, 2203, 2564, 1776, 2899, 3200, 3246, 1894, 4150, 4193, - 4351 - ], - "modif", - "y-filename", - [2, 22769, 22770], - "rev-hash", - [0, 13428, 28522, 5472, 11132, 13841], - "rev-path", - "sort-", - "sort-keys", - [1, 2343, 22779], - "vinyl-file", - [0, 22780, 22786, 22787, 2523], - [ - 0, 16607, 33490, 6065, 16608, 16612, 33491, 1595, 1676, 33493, 2020, 2089, 33494, 2188, 33497, 22845, 2613, - 33499, 3021, 3127, 14774, 3170, 33500, 25873, 27168, 4025, 4135, 6554, 4747 - ], - "rev", - "revving", - "revision", - "expire", - "assets", - [ - 0, 4874, 6547, 1166, 1414, 1470, 1652, 1736, 33503, 2151, 2212, 2822, 3019, 19736, 33505, 3297, 3401, 33507, - 1894, 23535, 4193, 23730, 4400, 4421 - ], - [0, 18526, 13428, 13729, 1237, 3383, 20001, 3979, 4135, 15525], - [1, 2343, 22790], - "deserialization", - [0, 22792, 22793, 2514, 2537], - "deserialize", - [0, 97, 33513, 33515, 6372, 33519, 1497, 33520, 1209, 3021, 3744, 3847, 32225, 4163], - [ - 0, 33522, 48, 53, 61, 73, 76, 81, 83, 87, 90, 94, 33525, 9310, 33528, 33530, 10875, 4880, 1009, 1011, 8158, - 33532, 1178, 1195, 33537, 1208, 1210, 33541, 1251, 31600, 33543, 1429, 33545, 1582, 1610, 1651, 1676, 1719, - 1742, 19526, 1843, 1177, 1879, 1895, 4916, 1938, 1947, 1951, 1959, 1961, 2060, 2193, 2323, 2455, 2541, 2675, - 14708, 2297, 2881, 32762, 2886, 2900, 2904, 2925, 2975, 2990, 2899, 1894, 3725, 3758, 3786, 89, 33546, 33550, - 3822, 3824, 3836, 3843, 3884, 3885, 33552, 33553, 33556, 3904, 33558, 4039, 33560, 33562, 33564, 4193, 4196, - 4201, 4261, 33565, 4409, 33566, 4431, 91, 4597, 2924, 4676, 4677, 4679 - ], - [1, 2343, 22796], - "each-async", - [0, 22797, 22799, 22800, 2537], - [0, 1177, 1900, 1903, 33572, 1938, 1953, 1958, 1959, 33573], - "md5-hex", - [0, 17529, 1698, 3188, 4039, 4092, 4389], - [ - 0, 19309, 33576, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 2446, 2292, 2272, 671, 19315, - 19269, 33578, 2869, 4255, 19317, 590, 19318, 19320, 19273 - ], - "ruby", - [1, 2343, 22803], - [0, 0, 22805, 2514, 2523], - "@img/colour", - [0, 9516, 9515, 1317, 4384], - [1, 2343, 22807], - [0, 22808, 10377, 22809, 2537], - [0, 1676, 1833, 1869, 984, 2145, 2657, 3173, 3242, 3440, 3781, 4266], - [0, 2947, 2090, 36], - [1, 2343, 22811], - [0, 22812, 22814, 22815, 2523], - [ - 0, 22966, 8364, 33593, 33596, 33598, 33599, 22967, 19593, 3034, 3072, 3183, 22451, 22968, 33602, 33603, 3763, - 33605, 28440, 33606 - ], - "sftp", - [ - 0, 8357, 8359, 33608, 4874, 1149, 4440, 1596, 17402, 2036, 33612, 21082, 1894, 33615, 33618, 28664, 33620, - 25649, 91 - ], - [0, 3166, 11100, 27662, 33624, 14584, 33625, 14586, 14587, 33626, 5130, 33627, 33628, 17757, 6081, 33629], - [1, 2343, 22817], - [0, 0, 22818, 22824, 2443], - [0, 33634, 1149, 1317, 1177, 3210, 4384], - "@types/fa", - "ncy-log", - [2, 22819, 22820], - [3, 12459, 15], - [2, 22822, 5229], - [0, 4137, 19748, 33636, 28277], - [1, 2343, 22826], - [0, 22827, 22828, 22830, 2523], - [0, 33646, 3348, 1676, 33641, 1209, 3220, 4135, 1155, 2712, 5245, 33643, 33645, 3222, 14334, 33642, 25624], - [ - 0, 3519, 3421, 1429, 1082, 1702, 33653, 2675, 2899, 3478, 4193, 1177, 33663, 3260, 4039, 1448, 668, 33669, - 33673, 4246, 25635, 25633, 33674, 1587, 1610, 2071, 33672, 3480, 33675, 32842, 2152, 4196, 91, 4856, 4874, 2024, - 2990, 6503, 6513, 29283, 692, 4870, 33652, 33682, 33649, 192, 1431, 33668, 3125, 4131, 17370, 4232, 1942, 1951, - 33662, 1011, 33660, 22559, 1009, 33655, 33681 - ], - "brotli-size", - [ - 0, 3259, 33669, 7827, 14873, 25638, 3519, 3243, 33684, 33663, 14872, 25633, 26472, 33685, 3469, 6710, 33690, - 18035, 1747 - ], - [1, 2343, 22833], - "measure", - [0, 0, 22834, 22835, 2537], - [0, 1317], - [0, 4141, 7050, 5284, 676, 1781], - [1, 2343, 22846], - "@gulp-sourcemaps/identity-map", - [3, 22837, 17], - [2, 22844, 36113], - "map-sources", - [2, 22838, 22840], - "-fabulous", - [2, 1676, 22842], - "@vitest/e", - "hook-std", - [0, 22849, 2667, 22851, 2487], - "@codspeed/vitest-plugin", - "mississippi", - [0, 1676, 33735, 33702, 33705, 33725, 33727, 33713, 33723, 33714, 33710, 33734, 33729, 33722, 33718], - "source maps", - [ - 0, 33737, 33738, 33739, 33740, 33741, 28794, 2811, 33742, 33744, 33745, 25003, 33746, 33748, 4144, 4145, 33749, - 33750, 3101, 6621, 33751 - ], - [1, 2343, 22853], - [0, 22854, 22855, 22858, 2537], - [0, 1091, 1138, 1371, 1437, 1494, 1536, 33757, 33758, 13834, 16064, 33761], - [0, 2212, 4494, 4493, 2675, 1177, 1984, 1894, 91, 2990, 107, 7806, 33765, 7677, 33768], - "device", - "strip-debug", - [0, 4592, 4146, 3166, 2665], - [1, 2343, 22861], - "client-hints", - [0, 22862, 22864, 22865, 2487], - [0, 984, 2145, 3242, 3494, 4100], - "accord", - [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342, 33775], - [0, 2026, 33777, 2663], - [1, 2343, 22867], - [0, 22868, 22869, 2514, 2443], - [0, 1080, 6870, 1676, 1869, 2657, 3173, 3494], - [0, 1087, 1177, 1948, 2899, 3421, 4342], - [1, 2343, 22876], - "looks-same", - "svg2png", - "@cpplint/cli", - "rwd", - "retina", - [0, 22877, 9025, 2514, 2523], - [0, 1833, 1869, 3494, 710], - [1, 2343, 22879], - [0, 22880, 22881, 22882, 2537], - [0, 33798, 3171, 3181], - [ - 0, 192, 5467, 33801, 33803, 1168, 1429, 1431, 1527, 1177, 1895, 2151, 2675, 2990, 3073, 13824, 2899, 3310, 3421, - 1894, 3752, 33804, 4193, 4196, 4390 - ], - [0, 33804, 33807, 13573, 7200, 33808, 6997, 33811, 6949, 5351, 4967, 33813], - [2, 33888, 22889], - [1, 2343, 22885], - [0, 22886, 22887, 22888, 2523], - [ - 0, 33819, 33821, 33823, 33824, 7709, 33826, 33827, 33828, 27792, 33831, 13559, 33836, 33838, 33840, 29749, 1367, - 10785, 33841, 13566, 33843, 3445, 17009, 4729 - ], - [ - 0, 33846, 9167, 33848, 5087, 4874, 7819, 9241, 1009, 1011, 33838, 13566, 668, 33850, 1177, 1895, 19527, 1915, - 1938, 1955, 2675, 1192, 33851, 33852, 33854, 33857, 2845, 3381, 1894, 13569, 4257, 4468, 4474, 1531, 91, 3348 - ], - [0, 12, 7200, 5472, 1192, 33804, 4158, 1984, 13573, 6930, 6808, 7308, 33822], - "arm64", - [1, 2343, 22891], - [0, 22892, 0, 2514, 2537], - [0, 26956, 6641], - [1, 2343, 22895], - "rendering", - [0, 0, 22896, 22897, 2443], - [0, 1178, 1264, 1280, 1429, 1177, 2126, 33869, 2675, 2990, 2899, 1894], - [0, 4163, 4161, 4162, 26287, 3797, 33871], - [1, 2343, 22899], - [0, 22901, 22903, 22904, 2537], - [3, 18435, 14], - [0, 4135, 22804, 20584], - "incremental", - [0, 20762, 4481, 33891, 4391, 640, 33894, 2057, 22873, 11976, 3299, 33877, 2829, 33882, 33890, 33884, 33887, 22883], - [0, 21881, 18048, 12349, 12350, 23995, 20639, 8221, 20701, 33896, 158, 24800, 33897, 12712, 26490, 33898, 33899], - [1, 2343, 22906], - [0, 0, 22907, 22910, 2523], - [0, 13614, 1159, 9254, 1177, 2011, 2708, 2762, 3410, 3421, 4103, 4389], - [3, 15893, 12], - [2, 22908, 1512], - [0, 1523, 1644, 7336, 4166], - [1, 2343, 22912], - [0, 22913, 22914, 22915, 2537], - [0, 2020, 2071], - [0, 1166, 1437, 1506, 1177, 1881, 1938, 2822, 3421, 33910, 33912, 4172, 33916], - [0, 4167, 16159, 28984, 4166, 33918, 7048, 2763, 31360], - "@types/plu", - [1, 2343, 22921], - "gin-error", - [2, 22916, 22918], - "gulp-diff", - [0, 22922, 22925, 22926, 4139], - [0, 3266], - " compilation", - [2, 22902, 22923], - [0, 1429, 2228, 2899, 1839, 2240, 26399, 4436, 2305, 34238, 22000, 2236, 2300, 3006, 2253, 2273, 2281, 5535], - [0, 5843, 4439, 3265, 3348, 33927, 33928, 33929, 4169, 33930], - [1, 2343, 22928], - [0, 22929, 22931, 22934, 2537], - [0, 33936, 33937, 33938, 33941, 33942], - "array-each", - [0, 1362, 1177, 33945, 2899, 1894, 4042, 4067, 4487, 91], - "error-cause", - [2, 3094, 22932], - [0, 1973, 5982, 1145, 4170], - [3, 16647, 18], - "se-extend-native", - [2, 22935, 22936], - "list-map", - [2, 4601, 22938], - [1, 2343, 22942], - "tape-catch", - [0, 5621, 22943, 22944, 2537], - [0, 2228, 2247, 2253, 2273, 2281, 2285, 2290, 33953, 2291, 2316, 2832, 3006, 3518, 33954, 4135, 33955, 4232], - [0, 1783, 15253], - [1, 2343, 22947], - "uncss", - [0, 22948, 22949, 22950, 4139], - [0, 3183, 4167], - [0, 1173, 1264, 1280, 1177, 1881, 19527, 1938, 2822, 2899, 3421, 4039, 33910, 33963, 33912, 4170], - [0, 4167, 4166, 28984, 16159, 16160, 2978, 200, 8636], - [1, 2343, 22952], - [0, 0, 22953, 22954, 34352], - [0, 21122, 4874, 24162, 13680, 1414, 1894, 4384, 4474, 4508, 91], - [0, 6553, 2021], - [1, 2343, 22956], - [0, 22957, 22958, 22960, 2523], - [0, 1097], - [0, 2553, 3714, 4042, 4048, 4535], - "useref", - [0, 7521, 5224, 26514, 1424], - "async-once", - "gulp-dest", - [2, 3204, 22962], - [1, 2343, 22965], - [0, 22969, 22976, 22977, 4139], - "@hapi/joi", - "jsonic", - "optioner", - [0, 33986, 33989, 1676], - "array-differ", - "array-uniq", - "beeper", - "_reescape", - [2, 3024, 22973], - [3, 22974, 11], - [0, 33992, 33997, 5245, 5087, 4874, 668, 29154, 1192, 4474, 91], - [0, 3358, 34000, 30983], - "valuate", - [2, 22975, 22978], - "lodash._re", - [1, 2343, 22984], - "interpolate", - [2, 22980, 22982], - [0, 0, 22986, 22987, 2523], - [2, 3067, 6937], - [ - 0, 4481, 1192, 2675, 3534, 1177, 4039, 4042, 1894, 1610, 1193, 53, 5087, 1540, 34009, 3720, 97, 107, 87, 1926, - 34015, 68, 5583, 4073, 6373, 34019, 811, 816, 5522, 34013, 1201, 81 - ], - [0, 11615, 16114, 27968, 13527, 5130, 89, 1098, 188, 38, 14584, 4967], - [1, 2343, 22994], - "@test-runner/core", - "yazl", - [2, 22996, 32078, 6624], - "qpass", - "yazul", - [0, 22995, 22998, 22999, 2537], - [0, 11124, 826, 34034, 1687, 4351], - [3, 22989, 13], - [2, 22996, 23000], - [ - 0, 53, 11126, 11130, 11133, 11134, 34040, 28537, 34041, 1208, 1676, 1705, 668, 27502, 26739, 2185, 2990, 2899, - 3421, 1894, 3758, 4039, 4135, 4167 - ], - [0, 4193, 1973, 5472, 2275, 13106, 4158, 21147, 6901, 34044, 3212, 4731, 1145], - "live-view", - [2, 22996, 23003], - [1, 2343, 23005], - "oneline-view", - [2, 22996, 16316], - [0, 0, 23006, 23007, 34352], - [0, 442, 1414, 1429, 1177, 2899, 1894, 4193], - [0, 1429, 15385, 1388, 34050, 34053, 4193, 5472, 17051, 17052, 17050], - [1, 2343, 23010], - [2, 13857, 2663], - [0, 23011, 23012, 23013, 2523], - [ - 0, 9153, 6327, 1149, 1409, 34066, 34065, 3188, 4135, 16358, 2026, 2822, 705, 1866, 1525, 3181, 2861, 2036, 1364, - 1536, 2657, 2600, 34060, 34062, 3923, 34064 - ], - [0, 2899, 1362, 1389, 34068], - [0, 7223, 3383, 18157, 29179, 5260, 2658, 36], - [1, 2343, 23015], - [0, 23016, 0, 2514, 2487], - [0, 34076, 11480, 34078], - [2, 4598, 3426], - [1, 2343, 23019], - [0, 23020, 0, 23021, 2443], - [0, 34085, 2984, 34086, 3527, 27921], - [0, 4201, 200, 1999, 6681, 34088, 34090], - [1, 2343, 23023], - [0, 16583, 11580, 23027, 2523], - "smith", - [2, 3521, 23024], - "pngparse", - [0, 34096, 34098, 34099, 5995, 4967, 17758], - [1, 2343, 23029], - [0, 23030, 23031, 23032, 2399], - [0, 22992, 34105], - [0, 2924, 4469, 91, 4677, 23319, 4676], - [0, 5995, 34107, 5592, 33804, 18035], - [1, 2343, 23035], - "compressed", - [0, 0, 8134, 23036, 2523], - [0, 3403, 34116, 4207, 28978, 6574, 6270], - [1, 2343, 23038], - [0, 23039, 23042, 23044, 2537], - [0, 1110, 34121], - "catering", - "deglob", - [0, 1166, 1437, 34125, 4294, 1906], - "find-file-up", - [ - 0, 6913, 1871, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 6621, 1867, 6983, 6616, 7244, 4166, 4744, 3073, - 6807, 6876, 2585 - ], - "find-githost", - "link-re", - [1, 2343, 23067], - "ferences", - [2, 23046, 23048], - [2, 1163, 23049], - [2, 3986, 23050], - "remark-c", - [2, 15, 14994], - [2, 23052, 23053], - [3, 13240, 12], - "quote-", - [2, 23056, 17537], - [2, 1359, 23057], - [2, 23055, 23058], - "box-", - "-style", - [2, 6843, 23061], - [2, 23060, 23062], - [2, 4354, 23063], - [2, 23055, 23064], - [3, 23065, 22], - [0, 23068, 13640, 23072, 2537], - [0, 22437, 1455, 12918, 34132, 34134, 25377, 34136, 3275, 3518, 34137, 3718, 3730, 34139, 1241, 4747], - "ontent-indent", - [2, 23066, 23069], - [3, 23065, 13], - [0, 34141, 4796, 22832, 3378, 1161], - "block-style", - [2, 16080, 23073], - [2, 23071, 23074], - [3, 7900, 10], - [2, 23076, 15319], - [2, 23055, 23077], - "emphasis-marker", - [2, 23055, 23079], - "fenced-code-marker", - [2, 23055, 23081], - [3, 23082, 13], - "inal-newline", - [2, 23083, 23084], - "hard-", - [1, 2343, 23088], - [0, 0, 23089, 23106, 2523], - [0, 12310, 6061, 6063, 5476, 1414, 2899, 4131, 4255], - "break-spaces", - [2, 23086, 23090], - [2, 23055, 23091], - "-bullet-indent", - [2, 5401, 23093], - [2, 15794, 23094], - [2, 23055, 23095], - [3, 23096, 22], - [2, 23097, 8958], - [3, 13240, 15], - [2, 17793, 17825], - [2, 9344, 23100], - [2, 1160, 23101], - [2, 23099, 23102], - [3, 23058, 11], - "without-", - [0, 4213, 3974, 1871, 4577, 22188, 3656, 1002], - "marker", - [2, 23105, 23107], - [2, 23104, 23108], - [2, 23099, 23109], - "duplicate-", - [2, 23111, 7900], - [2, 23099, 23112], - "-cont", - "ent-indent", - [2, 23114, 23115], - [2, 156, 23116], - [2, 23099, 23117], - "padding", - [2, 16569, 23119], - [2, 23099, 23120], - "literal-urls", - [2, 23099, 23122], - [3, 13240, 17], - "used-definitions", - [2, 23124, 23125], - "rule-style", - [2, 23055, 23127], - [1, 2343, 23130], - [0, 0, 23131, 23146, 2537], - [0, 1596, 34154, 2899, 3421], - "strong-marker", - [2, 23055, 23132], - "cell-padding", - [2, 16065, 23134], - [2, 23055, 23135], - [3, 23136, 18], - "pipes", - [2, 23137, 23138], - "unordered-list-marker-style", - [2, 23055, 23140], - [2, 4586, 3966], - [2, 3986, 23142], - "unified-", - [2, 23144, 16284], - [0, 4213, 3974, 1002, 34156], - [1, 2343, 23150], - "-shiny", - [2, 18004, 23148], - [0, 7936, 7938, 7939, 2443], - "pull-", - [1, 2343, 23153], - [0, 23156, 0, 23157, 2537], - "pull-or-clone", - [2, 10617, 23154], - [0, 1437, 2713, 3183, 3923, 34167, 4294, 4425], - [0, 3721, 34170, 34172, 4255, 34174, 25264, 34177, 34179, 34181, 34182], - "fixer", - [1, 2343, 23160], - [0, 23161, 23162, 23170, 2523], - [0, 1170, 34189, 1676, 2131, 2141, 2188, 1209, 4113, 4296, 15502, 34190], - [ - 0, 442, 5245, 7810, 4870, 4874, 34194, 15507, 1364, 1512, 1687, 1742, 1792, 1177, 2026, 2099, 2070, 2899, 3421, - 1894, 3923, 4135, 4151, 4170, 4193, 4232, 25609, 4508, 91, 4523 - ], - [2, 13729, 18200], - "git-tags", - [2, 2264, 2907], - [2, 8961, 2499], - [2, 2312, 23166], - "jquery-", - [2, 23168, 2555], - [0, 4217], - [1, 2343, 23172], - [0, 23173, 0, 23174, 2537], - [0, 1080, 34200, 1594, 1676, 12777, 34201, 9247], - [0, 20863, 5130, 4699, 21405, 2018, 21302, 11444], - "neo-async", - [1, 2343, 23179], - "chai-diff", - [2, 2264, 4019], - [0, 23180, 0, 23181, 2537], - [0, 34208, 1676, 12779, 9247], - [0, 20863, 5130, 4699, 21405, 2018, 5576], - [1, 2343, 23183], - [0, 23186, 23191, 23194, 2537], - "ammo", - "heavy", - [0, 1676, 34226, 26137, 2713, 4567], - "bounce", - "catbox", - "somever", - "subtext", - [ - 0, 1389, 1839, 1177, 2025, 2323, 2409, 2494, 2496, 2510, 2530, 2297, 2871, 2876, 2881, 2900, 2899, 3752, 3756, - 4151, 34228, 4599, 4603 - ], - "statehood", - [2, 23188, 8329], - [0, 14609, 4699], - [1, 2343, 23197], - "vision", - [0, 0, 23198, 2514, 4139], - [0, 1414, 1742, 1177, 1894, 1895], - [1, 2343, 23200], - [0, 0, 23202, 2514, 2487], - "webidl-conversions", - [0, 34238, 1742, 2924], - "@vitest/ui", - [1, 2343, 23206], - "@webref/css", - [0, 23207, 23208, 13533, 2487], - [0, 2685, 4228], - [ - 0, 48, 53, 87, 192, 5467, 16405, 1193, 1610, 1622, 1700, 1701, 1177, 1895, 1938, 2675, 1192, 2990, 3144, 3400, - 1894, 4257, 2924 - ], - [1, 2343, 23210], - [0, 23211, 23212, 2514, 2537], - [0, 16136, 4227], - [0, 1389, 1509, 2665, 2899, 2924], - [1, 2343, 23214], - [0, 0, 23215, 23216, 2523], - [0, 4874, 1414, 1894, 3985, 3998, 4505, 91, 1906], - [0, 965, 1936, 17540, 34254, 11590, 1644, 1646], - [1, 2343, 23218], - [0, 23219, 23220, 23221, 4139], - [ - 0, 34270, 34266, 5526, 5528, 5529, 1448, 1509, 1525, 2071, 2215, 2220, 34264, 2228, 2247, 2253, 2256, 2258, - 2263, 2281, 2283, 2308, 2036, 2600, 2654, 2820, 2822, 34269, 2856, 1209, 3127, 34261, 3561, 2278, 4373, 4449 - ], - [ - 0, 48, 53, 87, 94, 10737, 34272, 1429, 1431, 6522, 1177, 1951, 1954, 1970, 2899, 3363, 1894, 4037, 4039, 4193, - 4196 - ], - [0, 2220, 1739, 1745, 34276, 34279, 5592, 9381, 1179], - [1, 2343, 23223], - [0, 23226, 23227, 2514, 4139], - "own-property-symbols", - [2, 2183, 23224], - [0, 4430], - [0, 2012, 19987, 19988, 19989, 34294], - [1, 2343, 23229], - [0, 0, 23230, 2514, 2523], - [0, 34300, 34301, 30025, 3421, 3697, 4255, 4389], - [1, 2343, 23232], - [0, 0, 9888, 2514, 2523], - [1, 2343, 23234], - [0, 0, 23235, 2514, 2537], - [0, 2323, 2899, 1177, 1317, 2463, 2384, 2409, 2494, 2530, 34312, 2510], - "@ljharb/", - [2, 23236, 2190], - [3, 19784, 15], - [2, 23238, 14037], - [3, 6541, 12], - [2, 23240, 3205], - [1, 2343, 23243], - [0, 23244, 23259, 23263, 2523], - [ - 0, 1362, 1473, 1512, 1636, 2151, 2036, 34317, 8691, 1209, 3367, 17997, 34318, 22519, 4431, 4597, 4600, 34319, - 34321 - ], - [2, 8727, 591], - [2, 10306, 5472], - "@ungap/structured-clone", - "from-parse5", - [2, 2573, 23248], - [2, 2580, 3493], - "html-v", - "oid-elements", - [2, 23251, 23252], - [2, 9406, 8193], - [3, 75, 9], - "namespaces", - [2, 5925, 23256], - "zwitch", - [0, 1429, 1596, 2759, 2899, 3202, 34324, 34326], - [3, 9315, 9], - "gap__structured-clone", - [2, 23260, 23261], - [0, 22055, 22074, 34328, 1623, 4329, 695, 2278, 4245, 34331, 17461], - "remark-api", - [1, 2343, 23268], - "unist", - [3, 2572, 9], - [0, 23269, 23270, 23271, 2537], - [0, 1326, 3299, 32944, 4390], - [0, 1177, 2899, 32942], - [0, 14872, 7827, 4246, 18035], - [1, 2343, 23280], - "aria-", - [2, 23273, 2618], - [3, 23249, 15], - [2, 23275, 1936], - "html-tag", - "-names", - [2, 23277, 23278], - [0, 23281, 23282, 23283, 2523], - [0, 34342, 34345], - [0, 1177, 15234], - [0, 21000, 4247, 22813, 18112, 4166, 2978, 21004, 5576], - [1, 2343, 23285], - [0, 23290, 23294, 23295, 2399], - "bcp-47-match", - "-separated-tokens", - [2, 14186, 23287], - "devlop", - [0, 21505], - "direction", - [2, 2573, 3661], - "not", - [0, 9516, 9515, 1317], - [0, 12616, 5122, 1965, 34354, 26965, 27081, 34355, 34356, 34357, 34359, 34360, 1936], - "selectall", - [1, 2343, 23298], - [0, 23299, 21592, 23300, 34352], - [0, 4745], - [ - 0, 4249, 1781, 4745, 17307, 25611, 1747, 7141, 7789, 166, 1721, 18035, 1745, 5995, 1550, 3230, 2109, 3259, 4246, - 6523, 20832, 25638, 1781, 3053, 34366 - ], - "attach-comments", - [2, 12413, 23301], - "is-i", - "dent", - "ifier-name", - [2, 23304, 23305], - [2, 23303, 23306], - [2, 12413, 23307], - [3, 6451, 11], - [2, 12127, 23309], - [3, 23310, 15], - [2, 23311, 1219], - "js-esm", - [2, 12127, 23313], - [1, 2343, 23317], - "esast-util-from-js", - [0, 0, 23318, 2514, 2443], - [0, 87, 1193, 1192, 34373], - "basic-node-server", - [1, 2343, 23321], - [0, 23323, 23325, 23326, 2487], - "ccount", - [0, 1177, 1903, 33572, 1938, 1953, 1958, 1959, 33573, 34380], - "tostring", - [0, 1615, 2554, 3183, 34383, 4092, 12823, 4389], - [ - 0, 19309, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 2446, 2292, 2272, 671, 19315, 19269, 2869, - 4255, 19317, 590, 19318, 19320, 19273 - ], - [1, 2343, 23328], - [0, 23329, 23331, 23333, 2523], - [0, 1437, 1566, 34392, 1570, 25901, 1707, 20949, 34393, 2089, 2105, 31174, 4135, 28154, 4747], - "sval", - [0, 1429, 1177, 1903, 1938, 1954, 1958, 2899, 3203, 3215, 3421, 4167, 34395], - "solid", - [0, 1566, 4945, 13729, 13728, 6976, 15525, 1098, 4255], - [1, 2343, 23335], - [0, 23337, 23338, 23341, 2537], - "wcswidth", - [0, 1138, 1362, 17045, 1676, 2020, 17034, 10756, 28519], - [ - 0, 4874, 34405, 1429, 1610, 1705, 34407, 34408, 34409, 2212, 2848, 8163, 3183, 2899, 34410, 26230, 4131, 34413, - 4193, 4196, 20382, 4255 - ], - [2, 23340, 93], - "@swc-node/", - [0, 15656, 12804, 36, 6587, 1973, 6435, 6703], - [3, 9407, 13], - "nd-after", - [2, 23342, 23343], - "exsolve", - [1, 2343, 23347], - [0, 23348, 23349, 23350, 2523], - [0, 34423, 27073, 2175, 34421], - [0, 1241, 2276, 4545], - [0, 4264, 34426, 34427, 34429, 20863], - [2, 13721, 3585], - [2, 2573, 23351], - [1, 2343, 23357], - "build-", - "build-jsx", - [2, 12413, 23355], - [0, 0, 23358, 23360, 2523], - [0, 1645, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 3784, 22449], - "svg-tag-names", - [0, 27, 6622, 1501], - "vdom", - "hyperscript", - "@glen/jest-raw-loader", - [1, 2343, 23365], - [0, 23366, 23367, 23368, 2537], - [0, 4729, 3445, 3930, 4135, 668, 37080, 36874, 7384, 26870, 5545, 968, 974], - [ - 0, 1797, 4763, 1429, 1687, 2070, 2807, 4200, 2020, 2975, 3144, 23802, 89, 4207, 20573, 2205, 3266, 3411, 28853, - 668, 23345, 2161, 2822, 6042, 814, 4448, 24324, 3555, 1894, 29318, 9241, 1420, 1525, 4788, 3530, 28863, 3824, - 11143, 4507, 33215, 4726, 9741, 16485, 30414, 3527, 4227, 4294, 91, 53, 17577, 4874, 1615, 1710, 29514, 104, - 14552, 30157, 11196, 58, 29515, 5254, 37084, 1707, 37491, 15245, 35349, 8646, 7931, 7948, 7637, 7812, 26380, - 15906, 36119, 8506, 30253, 32284, 4480, 101, 370, 15600, 30254, 30260, 30262, 24759, 5216, 30464, 20374, 30283, - 3885, 33523, 1582, 37017, 21122, 30913, 9329, 30284, 33228, 33534, 33538, 30300, 30313, 12837, 4300, 30321, - 30375, 31673, 30398, 966, 25114, 37449, 28465, 30406, 7943, 972, 33554, 33526, 8714, 19592, 9011, 30387, 3749, - 30453, 30454, 30467, 12315, 30468, 30470, 30471 - ], - [0, 4270, 4627, 4963, 23245, 23246, 89, 3286, 23803, 3857, 5123, 188, 1098, 3709, 5167, 5926], - [1, 2343, 23370], - [0, 23371, 23372, 23373, 4139], - [0, 2664], - [ - 0, 23363, 10825, 10827, 10828, 28147, 34473, 34475, 11011, 10837, 10840, 29877, 968, 972, 5087, 11292, 4880, - 1177, 34480, 1192, 11347, 2780, 1894, 3744, 3758, 89, 3824, 2278, 4111, 4270, 4468, 91, 4705, 4745 - ], - [0, 6718, 4270, 34484, 4963, 1745, 4967, 34485, 21043, 34491, 34493, 34494, 3416], - [1, 2343, 23377], - "regexgen", - "sort-object", - [0, 23378, 0, 5269, 2523], - [ - 0, 7, 53, 87, 6316, 6318, 1437, 1448, 1457, 1512, 1525, 1595, 6323, 2061, 34500, 2151, 2070, 2036, 2626, 2681, - 17449, 2856, 1209, 3079, 6326, 6327, 3127, 3183, 6330, 6331, 29899, 6332, 4135, 100, 4473, 3348 - ], - [1, 2343, 23380], - [0, 8856, 7938, 7939, 2443], - [1, 2343, 23382], - [0, 14754, 23383, 23384, 2523], - [0, 34508, 34510, 2899, 4170], - [0, 34513, 3101], - [1, 2343, 23386], - [0, 0, 23393, 23394, 2537], - [3, 5429, 9], - [2, 23387, 19315], - [2, 1561, 23388], - "origin-embedder-policy", - [2, 1611, 23390], - [3, 23391, 13], - [0, 816, 6503, 4874, 1642, 1794, 2899, 2966, 1894, 4042, 4064, 4066, 4170, 4474, 4494, 91], - [0, 3101, 353, 1641, 3048, 5995, 4967], - "-policy", - [2, 3456, 23395], - [2, 23392, 23396], - [3, 5974, 9], - [2, 23398, 19315], - [2, 23392, 23399], - "origin-", - "-cluster", - [2, 4575, 23402], - [2, 23401, 23403], - "refer", - "rer-policy", - [2, 23405, 23406], - "-security", - [2, 4714, 23408], - [2, 14104, 23409], - "x-content-type-options", - "x-dns-prefetch-control", - "x-download-options", - "x-frame-options", - "x-permitted-cross-domain-policies", - "x-powered-by", - "x-xss-protection", - [1, 2343, 23419], - [0, 23420, 11580, 23421, 2523], - [0, 17835, 692, 17754, 2129, 2760, 34524, 13291], - [0, 34527, 34528, 5995], - [3, 17494, 14], - [2, 23422, 965], - [1, 2343, 23425], - [0, 0, 0, 23426, 34352], - [0, 4283, 1671, 1871, 6901, 1666], - [1, 2343, 23428], - [0, 0, 23429, 23430, 2537], - [0, 2323, 2346, 2463, 2494, 34537, 2530, 28539, 4535], - [ - 0, 1871, 16116, 34540, 34541, 34542, 591, 1641, 1936, 18089, 1644, 1936, 2640, 4301, 6678, 10368, 15103, 1867, - 23615 - ], - [1, 2343, 23437], - "abbrev", - "archy", - "hexo-cli", - "hexo-", - [2, 23435, 2149], - [0, 23442, 23447, 23457, 2537], - "hexo-fs", - "hexo-i18n", - "hexo-log", - "hexo-util", - [0, 5139, 34547, 2626, 3021, 34551, 34553, 34556], - "-js-types", - [2, 2822, 23443], - "titlecase", - "warehouse", - [0, 34559, 34560, 17913], - "0x", - "bbrev", - [2, 9165, 23449], - "xt-table", - [2, 13419, 23451], - [2, 1884, 2596], - [3, 1778, 9], - [2, 23454, 3127], - [2, 23435, 23455], - [0, 1501, 7682, 7115, 1936, 34562, 34563, 7293, 22392, 4285, 1871, 4301, 2640, 17950, 2585, 34564], - [1, 2343, 23459], - [0, 23460, 8134, 23461, 2537], - [0, 34569, 4294], - [ - 0, 1871, 6843, 3656, 4289, 7062, 6922, 6981, 6701, 6581, 16041, 23336, 6700, 1111, 1867, 5281, 200, 6876, 7009, - 7201, 6575, 6611, 6795, 6960, 7135, 7230 - ], - [2, 11177, 17514], - [1, 2343, 23467], - "grunt-g", - "h-pages", - [2, 23464, 23465], - [0, 23468, 23472, 23473, 2523], - [0, 34576, 34578], - "scrawl", - "ducers-js", - [2, 4713, 23470], - [0, 4874, 1414, 26854, 1894, 3985, 3998, 4505, 91, 1906], - [0, 1646, 10368, 1867, 1936, 6843, 11043, 18944, 18089], - [1, 2343, 23475], - [0, 23477, 20489, 23481, 2537], - [2, 5058, 23278], - [0, 1109], - "freeze-es6", - [2, 1683, 23478], - [2, 5313, 14056], - [ - 0, 4301, 6678, 7293, 1111, 592, 1473, 7208, 1512, 7009, 7201, 1871, 6621, 1867, 6983, 6616, 7244, 4166, 4744, - 3073, 6807, 6876, 2585 - ], - "tiny-worker", - "wcag-contrast", - [1, 2343, 23485], - [0, 0, 8134, 23486, 2537], - [0, 4301, 4295, 1412, 4327, 3126, 3656, 4577, 22188, 7293, 6865, 6678, 2585, 1871], - [1, 2343, 23488], - [0, 0, 23489, 23490, 2537], - [0, 1166, 3130, 4481, 1906], - [0, 1781, 4301, 4298, 7293, 6865, 6678, 16112, 1644, 1541, 8309, 6937, 614, 1263, 6639, 19632], - [1, 2343, 23492], - [0, 0, 23493, 23494, 2537], - [ - 0, 3421, 1429, 3297, 2899, 1177, 4474, 1894, 3310, 91, 4856, 4874, 6503, 23496, 1431, 1938, 3200, 1895, 1955, - 9417, 1011, 10419, 1009 - ], - [0, 4302, 34601, 34602, 5592], - [1, 2343, 23497], - "undici-types", - [0, 23498, 23499, 23500, 2523], - [ - 0, 1149, 1676, 34607, 34610, 3324, 34612, 3368, 3460, 3917, 34613, 34615, 34616, 34619, 34622, 30142, 34625, - 34626, 34629, 4707, 2861, 1401, 34631, 1653, 2592, 2713, 695, 1209, 3081, 26443, 7305, 34421, 3220, 3923, 23975, - 4246, 34634, 26423, 34636, 34637, 34639, 29456, 4729 - ], - [0, 1177, 2292, 4384], - [ - 0, 9649, 34642, 29319, 34643, 26473, 34644, 13538, 4575, 13539, 6147, 6374, 24093, 1541, 4796, 20997, 20999, - 34647, 2134, 3358, 27318, 34650, 6807, 26474, 10057, 25202, 3151, 13499, 27838, 34651, 3378, 34652, 34653, - 26931, 6681, 2306, 3729, 15267, 28413, 29179, 5508, 8791, 11100, 34654, 34656, 7046, 34613, 34657, 34660, 30142, - 34629, 4303, 34661, 4345, 17184, 6901, 34662 - ], - [1, 2343, 23502], - [0, 23503, 23504, 23505, 2537], - [0, 34667, 34668, 34669, 34670, 1437, 1443, 13827, 1525, 2745, 2856, 34671, 1894, 4443], - [ - 0, 34673, 34676, 107, 192, 5467, 34677, 34679, 8661, 34680, 4856, 4874, 11438, 7819, 1011, 5476, 34681, 5478, - 1082, 34683, 1429, 1177, 1951, 1959, 2007, 2151, 34684, 2675, 34686, 2829, 34689, 695, 2990, 34690, 26564, - 25131, 2899, 21290, 3400, 5561, 2278, 4135, 4164, 22595, 4333, 91, 4555, 3348, 4745 - ], - [0, 34693, 590, 34692, 1623, 4964, 11590, 2278, 4329, 13339, 34694, 89, 5133, 25172], - [1, 2343, 23507], - [0, 0, 23508, 13533, 2537], - [ - 0, 1192, 2278, 2675, 2832, 3144, 1622, 1177, 4135, 1701, 2924, 1854, 1894, 1610, 48, 1193, 1628, 53, 2092, 2990, - 3400, 4111, 4677, 192, 4257, 87, 4681, 1938, 1895, 2780, 5467, 16405 - ], - "step", - [1, 2343, 23511], - [0, 23512, 23513, 23514, 2523], - [0, 4311], - [ - 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 5087, 1009, 1011, 1177, 1955, 10964, 2203, 2675, 1192, 2990, - 1894, 4042, 4468, 4474, 91 - ], - [0, 4309, 1623, 590, 5284, 3048, 23578], - [1, 2343, 23516], - [0, 23517, 23518, 23519, 2487], - [0, 2718], - [ - 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 10817, 5087, 4874, 1009, 1011, 1177, 1955, 10964, 2203, 2675, - 1192, 2990, 3400, 1894, 23535, 4042, 4468, 4474, 4484, 91 - ], - [0, 4311, 134, 590, 57, 1623, 3048, 23578], - "hap-nodejs", - [1, 2343, 23524], - "-newlines", - [2, 1938, 23522], - [0, 23525, 23526, 23527, 2443], - [0, 7943, 13037, 34715, 34718, 1639, 3561, 4163, 7917, 4484], - [ - 0, 53, 5652, 8229, 61, 78, 5240, 87, 90, 92, 10817, 966, 968, 972, 974, 4863, 5087, 34720, 4874, 4880, 4883, - 34722, 5091, 4889, 5055, 1193, 1198, 20479, 14065, 6375, 1192, 2780, 26503, 2802, 2820, 1894, 3744, 89, 3824, - 34725, 3857, 3904, 4042, 4055, 4058, 4067, 4069, 4071, 4073, 34727, 34730, 91 - ], - [0, 89, 1623, 7165, 4315, 7297], - "@hono/eslint-config", - "@hono/", - "node-server", - [2, 23529, 23530], - [1, 2343, 23533], - [0, 23534, 23540, 23541, 2443], - [0, 33204], - "publint", - "ly-js-compute", - [2, 2062, 23536], - [2, 4609, 23537], - "wrangler", - [ - 0, 48, 53, 78, 4851, 5743, 5241, 83, 87, 90, 94, 97, 104, 4880, 1166, 7913, 34737, 1573, 1177, 1895, 2675, 3008, - 1894, 3720, 89, 3824, 4131, 4227, 33212, 7917, 34741, 91 - ], - [0, 7913, 4592, 34743, 7165, 1623], - "cloudflare", - "workers", - "fastly", - "compute", - [1, 2343, 23547], - [0, 23548, 20974, 23549, 2399], - [0, 1393, 3681], - [0, 2887, 1623, 34749, 4318, 16918, 3561, 6425, 4319], - [1, 2343, 23551], - [0, 23552, 23553, 23554, 2487], - [ - 0, 205, 30928, 208, 213, 30577, 220, 22371, 30299, 1595, 1627, 1634, 1676, 2071, 29067, 16783, 14564, 2205, - 34755, 2641, 2687, 5210, 19187, 2747, 2932, 34757, 3157, 3170, 3369, 3527, 3561, 3676, 3681, 3688, 4290, 15887, - 34762, 176, 4728 - ], - [ - 0, 107, 34765, 11893, 34768, 34770, 34773, 16934, 5245, 16787, 34775, 34776, 34778, 8778, 16398, 34780, 19800, - 34785, 22092, 1317, 1532, 1699, 1177, 34787, 1938, 1939, 2675, 1192, 34791, 2802, 2990, 11357, 3400, 5561, 3606, - 3613, 30479, 34793, 3678, 1894, 3985, 4337, 91 - ], - [0, 7165, 1623, 695, 671, 9654, 1783, 2278, 4329, 4320, 4337], - [1, 2343, 23556], - [0, 23557, 23565, 23566, 34352], - [0, 4946], - "hopper-adventure", - [2, 12087, 23558], - "svelte2tsx", - "workshop", - "adventure", - "tutorial", - "tutor", - [0, 34768, 34770, 1177, 34787, 2675, 2990, 3400, 1894, 3985, 4320], - [0, 4320, 34801, 4255], - [1, 2343, 23568], - [0, 0, 23569, 23570, 2523], - [ - 0, 3421, 1192, 2675, 3534, 1742, 1177, 1503, 4508, 1894, 34810, 1610, 4320, 48, 1193, 34809, 11918, 91, 53, - 13693, 2990, 3165, 94, 192, 4131, 87, 34806, 1939, 1978, 1938, 6063, 34791, 21120, 1895, 1955, 4514, 92, 1011, - 6061, 5467, 1883, 1009, 5766, 13052, 61, 78 - ], - [0, 7846, 4320, 1623, 4329, 695, 671, 34818, 6884, 3046, 34819, 1473, 34820], - "big-lib", - [2, 8131, 23571], - [2, 7635, 23575], - "karma-co", - "codeshift", - "@jasminejs/reporters", - [1, 2343, 23579], - "pojo", - [0, 23580, 23581, 23582, 2537], - [0, 3561, 34826], - [0, 1177, 34829, 1895, 2203, 2675, 1192, 30912, 34791, 2802, 2990, 3606, 30479, 34832, 1894, 34835, 4320], - [0, 7846, 4320, 1623, 671, 4327], - [1, 2343, 23585], - [3, 2618, 9], - [0, 23586, 23587, 23588, 2537], - [0, 1634, 2747, 2932, 3141, 34842, 34760, 3681, 3688], - [0, 1532, 1610, 1177, 34847, 2675, 1192, 34791, 2990, 3377, 3561, 30479, 3678, 1894, 4320], - [0, 1623, 21861, 671, 9654, 4329, 4320, 7846], - [1, 2343, 23590], - [0, 23592, 14818, 23593, 2487], - "@domenic/eslint-config", - [0, 63, 1676, 2070, 4113, 4227], - [0, 1623, 57, 590, 22561, 2437, 1351], - [1, 2343, 23595], - [0, 23596, 23599, 23609, 2487], - [0, 2071, 3369], - [3, 9127, 9], - "flowgen", - [ - 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 1317, 34860, 1610, 1622, 1628, 1700, 1701, 1177, 1895, 20281, 1938, - 1939, 1942, 1953, 1955, 1982, 2203, 2675, 1192, 2990, 3144, 3291, 3400, 1894, 3786, 4257, 4307, 4333, 4523, 2924 - ], - " entities", - [2, 1936, 23600], - " encode", - [2, 23601, 23602], - [3, 23603, 14], - [2, 23604, 15103], - [2, 18089, 23602], - "entities ", - [2, 23607, 15103], - [0, 2924, 1194, 4333], - [1, 2343, 23611], - [0, 0, 0, 23612, 2443], - [0, 1623, 3561, 30775, 5341, 8958, 57], - "ascjs", - [1, 2343, 23616], - "unescape", - [0, 23617, 23618, 23619, 2523], - [0, 1533, 34877, 1676, 33596, 2139, 2141, 3164, 3171, 3763], - [ - 0, 48, 53, 83, 87, 97, 192, 5467, 1290, 16750, 27731, 1364, 1389, 1575, 1610, 1177, 1909, 1924, 1954, 2026, - 2040, 2114, 2182, 2675, 2990, 3127, 2899, 3246, 3421, 3985, 3995, 4039, 4170, 34879, 34881, 1906, 4770 - ], - [ - 0, 4575, 6662, 6662, 5592, 1149, 7003, 1170, 12618, 5576, 34883, 2212, 27, 27, 2671, 21668, 1862, 1862, 6567, - 705, 705, 21666, 5508, 4030, 1153, 4340, 4339, 17481, 353, 4731, 4738 - ], - [1, 2343, 23624], - [2, 9374, 12349], - "-unicode", - [2, 23615, 23622], - [0, 23625, 23626, 2514, 2487], - [0, 25910], - [0, 5245, 27847, 4874, 1317, 25212, 3230, 21180, 91, 1984], - [1, 2343, 23628], - [0, 23629, 23630, 23632, 2523], - [0, 3164, 4339, 1581], - [0, 3421, 3297, 2899, 4193, 1177, 4170, 2026, 3752, 1364, 1575, 192, 1938, 1881, 5467], - "relateurl", - [0, 5982, 27, 705, 4339, 6969, 1973, 5472], - [1, 2343, 23636], - "compressor", - "packer", - [0, 23638, 23639, 23640, 2537], - "uglifier", - [0, 1362, 3164], - [0, 1429, 1431, 4037, 4706, 1364, 1575, 2026, 2899, 4170], - [0, 4342, 4339, 705, 6969, 5982, 27, 1973, 5472, 1862, 34901], - "detect-europe-js", - [1, 2343, 23650], - "alpinejs", - [3, 19403, 11], - "config-no", - "n-conventional", - [2, 23645, 23646], - [2, 23644, 23647], - [3, 10854, 16], - [0, 0, 23653, 23654, 2523], - "lyfill-node", - [2, 23649, 23651], - [0, 1906, 1166, 4481, 4874], - [ - 0, 1473, 7208, 1512, 7009, 7201, 200, 1111, 592, 6621, 6616, 7244, 4166, 4744, 6876, 4231, 25986, 34915, 13735, - 13030, 34916 - ], - [1, 2343, 23656], - [0, 23657, 23658, 23661, 2487], - [0, 31292, 5012, 23826, 1006, 1082, 11869, 19639, 1497, 11478, 11479, 22716, 10898, 10902, 3090, 22720], - [0, 5180, 8648, 811, 816, 10615, 8661, 11868, 4874, 11486, 668, 4042, 4227, 27921, 91, 1984], - [2, 23660, 23663], - "browser-d", - [0, 3709, 27751, 5130, 5354, 17950], - [1, 2343, 23665], - "etection", - "device-detection", - [0, 23666, 23669, 23671, 2537], - [0, 5180, 1457, 20378, 3527, 11481], - "os-detection", - "bot-detection", - [0, 811, 8850, 816, 6373, 10817, 34939, 1405, 4042, 4052, 8849, 3709, 91, 34940, 34942, 27702, 27703, 23560, 34945], - "void", - [0, 3709, 200], - [1, 2343, 23673], - [0, 0, 23675, 23676, 2537], - "self-closing", - [ - 0, 53, 87, 192, 5467, 34951, 34953, 10879, 4874, 34955, 19802, 1165, 13662, 1509, 1567, 1177, 695, 3561, 34958, - 3616, 1894, 3754, 2278, 4333, 4337, 3709, 91, 1984 - ], - [0, 3709, 4358, 91, 695, 4333, 2278, 4329, 3754, 1509], - [1, 2343, 23678], - [0, 23690, 23692, 23693, 2537], - "@bubkoo/commitlint-config", - "@bubkoo/", - [2, 23680, 7625], - [2, 12612, 1541], - [2, 23680, 23682], - [3, 21388, 20], - [2, 23684, 16171], - [2, 23680, 23685], - [2, 23680, 2190], - "asmine", - [2, 5086, 23688], - [0, 16858, 2070, 4361, 1149, 25232, 4597, 4739, 4747, 2822, 4709, 3257, 34967, 3060, 18993, 10780, 34966, 13839], - "capture", - [0, 1906, 1192, 695, 2278, 3549, 4333, 3536, 1939, 1942, 34971, 19812], - [ - 0, 1017, 45, 8221, 18048, 22074, 22075, 2873, 1179, 1623, 2278, 695, 4333, 5376, 134, 1936, 13814, 22874, 22875, - 3257, 17461 - ], - [1, 2343, 23695], - [0, 23697, 23698, 23700, 2537], - "@selderee/plugin-htmlparser2", - [0, 1525, 1632, 1634, 9378, 16858, 3527, 4113], - [ - 0, 442, 11893, 811, 816, 10615, 16934, 16854, 5087, 4874, 34194, 7752, 1610, 1177, 2203, 1192, 3536, 3541, 3549, - 1894, 4039, 4042, 4393, 4481, 91 - ], - "selderee", - [0, 4361, 8221, 6707, 3178], - [1, 2343, 23702], - [0, 23703, 23704, 23710, 2537], - [0, 1700, 3067, 34984, 4533], - [0, 1166, 1173, 1178, 1257, 29224, 1272, 1280, 1362, 1177, 34989, 3150, 3188, 4193, 2924], - "@html-", - "/stylish", - [2, 2649, 23706], - [2, 23705, 23707], - "@sidvind/better-ajv-errors", - [0, 2924, 1932, 34991, 34984, 11100, 6812], - [2, 23712, 23], - [3, 16579, 15], - [1, 2343, 23714], - [0, 23715, 23716, 23717, 4139], - [0, 1082, 1699, 2070, 2856], - [0, 1177, 1894, 4389, 34997], - [0, 8124, 34999, 7701, 20120, 1745, 4363, 1163, 13728, 1179, 8623, 20121, 20123, 20124, 3452], - [1, 2343, 23719], - [0, 23724, 23727, 23728, 2537], - "theme-one-dark", - "@json2csv/plainjs", - [2, 6019, 3888], - [2, 27733, 23725], - [0, 2205, 2822, 1525, 35011, 35008], - "-2", - "renderjson-2", - [0, 1177, 1984, 1894, 7677, 35013], - [0, 8124, 1739, 35015, 1745, 5592, 134, 4298], - "uffers", - [2, 15038, 23729], - [1, 2343, 23732], - [0, 0, 23733, 23734, 2537], - [0, 4874, 91], - [0, 8168, 8124, 181, 4369, 2026, 1745, 1739, 35021, 12659, 4367, 699, 35024, 35026], - [1, 2343, 23737], - [2, 11085, 2634], - [0, 23743, 23744, 23745, 2537], - "pug-loader", - "recomp", - "ilation-simulator", - [2, 23739, 23740], - [2, 4670, 23741], - [0, 5971], - [0, 1866, 2026, 35036, 2899, 3421, 3758], - [0, 8124, 2026, 181, 1781, 1745], - [1, 2343, 23747], - [0, 23748, 23749, 23752, 2487], - [0, 4535, 3460], - [0, 1209, 2026, 35046, 2899, 2025, 35047, 695, 35048, 1330, 35051, 3521, 1389, 2090, 1776], - "@aminya/babel-plugin-replace-import-extension", - "lateurl", - [0, 1283, 17950, 1936, 21043, 35053, 16277, 2026, 1359], - [2, 31806, 31807], - "srcset", - "swiperjs", - [3, 9376, 10], - [2, 23756, 6424], - "postproc", - "cessor", - [2, 23758, 23759], - [1, 2343, 34505], - [0, 4372, 35058, 31512, 4453, 12295, 5131, 1591, 3525, 1896, 5130, 35059, 32054, 35060, 1932, 89, 188, 35062], - [1, 2343, 23764], - [0, 23765, 23766, 23768, 2537], - [0, 35068, 35071, 35072], - [0, 1364, 1610, 2026, 35074, 1192, 3237, 4039, 91], - "rss", - [0, 705, 27, 2671, 2325, 1389, 31360, 15001], - "tributejs", - [1, 2343, 34522], - [ - 0, 35081, 35082, 3233, 27838, 888, 6667, 31937, 6574, 35084, 35085, 35086, 35087, 35088, 35089, 35092, 26467, - 35093, 7734, 35095, 3151, 6771, 35096, 35097, 35099, 35100, 11996, 35102, 35105, 35106, 35107, 35108, 35109, - 35110, 35111, 35112, 17878, 35115, 35117, 11812, 35119, 35122, 10798, 5876, 12340, 35125, 25028, 35126, 35128, - 35129, 35131, 35133, 35134, 24079, 5995, 33741, 35135, 35136 - ], - [1, 2343, 23773], - [0, 0, 23774, 2514, 2537], - [ - 0, 3445, 2929, 2899, 3188, 4039, 4042, 4072, 1362, 3310, 35146, 20463, 4705, 4232, 8850, 4073, 6373, 35141, 816, - 35145 - ], - "toidentifier", - [1, 2343, 23777], - [0, 23778, 23779, 23780, 2537], - [ - 0, 4729, 1091, 1594, 35154, 35155, 35156, 35157, 1209, 3237, 35158, 35159, 35161, 35162, 2026, 35163, 35164, - 35166, 35168, 35169, 1154, 1364, 1536, 1562, 35171, 1130, 97, 35173 - ], - [0, 3278, 1096, 35175, 35176, 4167, 35178, 1532, 35179], - [0, 35181, 35182], - [1, 2343, 23784], - "s-port", - [2, 3209, 23782], - [0, 0, 23786, 23787, 34352], - "sse", - [ - 0, 12473, 4484, 1177, 2205, 4042, 1984, 1894, 91, 53, 4874, 87, 4057, 4523, 7677, 5583, 1938, 11899, 22839, - 22847, 10817, 816, 24621, 5660 - ], - [0, 4383, 4380, 1623, 5256, 35189, 35191, 1698, 22306, 35193], - [1, 2343, 23789], - [0, 0, 23790, 2514, 2537], - [0, 1680, 4874, 16860, 3090, 4228, 23956, 31292], - "agent-base", - [1, 2343, 23793], - [0, 23794, 0, 23795, 2399], - [ - 0, 35205, 35206, 35209, 35212, 35213, 35214, 35216, 35217, 35220, 35221, 35222, 35226, 35227, 35228, 35230, - 35232, 35233, 35235, 35236, 35237 - ], - [0, 1145, 4384, 1973, 5472, 5130, 200, 35239, 35240], - [1, 2343, 23797], - [0, 23798, 23799, 23801, 34352], - [0, 1437, 1792, 2089, 1209, 3718, 26840, 35245, 4431], - [0, 35247], - "mockttp", - [0, 4389, 4384, 2899, 4386, 16237], - "polka", - "next.js", - [1, 2343, 23805], - [0, 0, 23806, 2514, 2487], - [0, 1192, 1177, 2203, 1894, 442, 1193, 53, 1953, 27928, 87, 1939, 1938, 20281, 1982, 1895, 1955, 19344], - [1, 2343, 23812], - "union", - "corser", - "secure-", - [2, 23810, 3797], - [0, 23817, 23819, 23820, 34352], - "eol", - [3, 1895, 15], - "opulist", - [2, 23814, 23815], - [ - 0, 35260, 35263, 35264, 1417, 1693, 15016, 35265, 2133, 2179, 2070, 35266, 2571, 2713, 17403, 3183, 3206, 3431, - 13635, 3433, 3435, 814, 18997 - ], - [2, 15021, 36], - [ - 0, 13614, 1143, 1159, 1537, 1610, 1796, 35268, 9254, 1855, 1177, 14738, 2762, 2822, 35271, 3410, 3421, 4103, - 4135, 4384, 20496 - ], - [0, 4384, 1973, 35273, 1145, 1388], - [1, 2343, 23822], - [0, 23823, 23824, 2514, 2523], - [0, 35279, 35280, 21505, 29174, 35278], - [0, 4384, 3297, 4483, 35282, 4039, 4508, 1894, 29169, 4874, 1834, 35285], - [1, 2343, 23827], - [2, 836, 22715], - [0, 23830, 23833, 23834, 2523], - [3, 7639, 16], - [2, 23828, 176], - [0, 3756, 4393], - "HttpStatus", - [2, 27, 5576], - [0, 4039, 35291, 4255], - [0, 4390, 2150, 2090, 18158, 7204, 3101], - [1, 2343, 23836], - [0, 23838, 23839, 2514, 2487], - "mediation", - [0, 35297, 35299, 35298], - [0, 35291, 4255, 1537], - [1, 2343, 23841], - [0, 2513, 23844, 23845, 2487], - "-retry", - [2, 7737, 23842], - [0, 15288, 15594, 5087, 4874, 1009, 1011, 1596, 668, 1177, 1903, 1938, 1954, 1958, 1192, 1894, 4468, 91], - [0, 35306, 6346, 35307, 35308, 4967, 35310, 5995, 35312, 27448, 14629], - [1, 2343, 23847], - [0, 0, 23848, 23849, 2537], - [ - 0, 15288, 5367, 5371, 6494, 15594, 5087, 4874, 9240, 1009, 1011, 1364, 1527, 1652, 35317, 1177, 1903, 1938, - 1954, 1958, 2675, 1192, 2990, 3363, 5362, 1894, 4342, 4468, 91 - ], - [0, 35306, 6346, 35307, 35308, 5995, 35312, 15001, 2026], - [1, 2343, 23851], - [0, 23852, 0, 23853, 4139], - [0, 1676, 3299, 15160], - [0, 32859, 35324, 35327, 35328, 35329, 1326, 35330, 5995], - [1, 2343, 23855], - [0, 23856, 23857, 23858, 4139], - [0, 1676, 3299], - [0, 442, 6373, 5245, 4874, 20584, 1759, 1177, 1895, 1966, 1982, 640, 1894, 4508, 4514, 91, 4523, 1983, 26744, 1984], - [0, 32859, 35328, 4398, 202, 5995], - "anity", - [2, 1901, 23859], - [1, 2343, 23863], - [3, 2677, 9], - [0, 23864, 7923, 23865, 2523], - [0, 4039, 3188], - [0, 21770, 4449, 1241, 35342, 16330, 29615, 35343], - [1, 2343, 23867], - [0, 23871, 23873, 23880, 2537], - "singular", - "plural", - "camelize", - [0, 2753, 13786, 4507, 35349], - "dasherize", - [0, 4874, 1166, 3505, 4453, 4481, 1906], - "demodulize", - "ordinalize", - "uncountable", - "singularize", - "titleize", - "tableize", - [0, 1241, 21770, 3403, 2090, 7204, 6857, 16330, 35342, 29615, 35343, 3778, 17023], - "classify", - [1, 2343, 23884], - "foreign_key", - [0, 23885, 0, 23886, 34352], - [0, 26925, 35364, 35359, 35367, 35358, 35365, 35363, 35356], - [ - 0, 7009, 7201, 1111, 200, 4744, 1473, 35369, 35371, 590, 6847, 35373, 29002, 35374, 13006, 4403, 1478, 15955, - 35375, 35376, 35377, 32312, 158, 18048, 21881, 20639 - ], - [1, 2343, 23889], - "@messageformat/core", - [0, 23890, 0, 23892, 2443], - [0, 35382, 15019, 2713, 35259, 4431, 35383], - "fast-printf", - [0, 4403, 7009, 1111, 35385, 35386], - [1, 2343, 23898], - "make-plural", - "val-parser", - [2, 9433, 23895], - [2, 18108, 23896], - [0, 23899, 23900, 23902, 2487], - [0, 35392, 1082, 1525, 4232], - [0, 35394, 35395, 1177, 19210, 1999, 2899, 3697, 4042, 4135, 4227], - [2, 23927, 23929], - [0, 2280, 4072, 4533, 4535, 3178, 2632, 5284, 5286, 1925, 5194, 6598, 7075, 6778, 7056, 7192, 1149, 7003], - [1, 2343, 23935], - [3, 5702, 15], - "-function", - "-functions", - [2, 23904, 23906], - [2, 69, 23907], - "gh-release", - "i18next-", - [2, 1351, 18691], - [2, 13843, 23911], - [2, 23910, 23912], - "fs-backend", - [2, 23910, 23914], - [2, 2655, 5995], - [2, 23910, 23916], - "storage-", - [2, 23918, 2325], - [2, 2703, 23919], - [2, 23910, 23920], - "sprintf-", - [3, 10810, 11], - [2, 23923, 7120], - [2, 23922, 23924], - [2, 23910, 23925], - [3, 6021, 10], - "interna", - "ease", - "alization", - [2, 3855, 23930], - [2, 23928, 23931], - [2, 2703, 8840], - [2, 2202, 8840], - [0, 23937, 23938, 23939, 2523], - "gettext", - [0, 4072, 2805, 4121, 4143, 5180], - [ - 0, 1700, 1192, 2675, 3144, 1622, 1177, 1701, 668, 2924, 1894, 842, 1610, 4535, 48, 442, 91, 53, 4874, 2092, - 2990, 3400, 4677, 28639, 192, 1953, 27928, 35403, 4257, 87, 4523, 1939, 1584, 1942, 1938, 20281, 1982, 1895, - 1955, 19344, 16400, 5467 - ], - [0, 2280, 4535, 4533, 4072, 2924, 1464, 14137, 15215, 23634, 2262, 14137, 2632, 3178, 6707, 6708], - [1, 2343, 23941], - [0, 23943, 23944, 23945, 2537], - "gridly", - [0, 22989, 22991, 22997, 23001, 23004, 1519, 1522, 25190, 2071, 26553, 17798], - [0, 2829, 3310], - [0, 1187, 1973, 8791, 200, 2275, 5472, 4990, 4389, 4384, 1166, 2899], - [1, 2343, 23947], - [0, 23949, 23951, 23953, 2443], - "safer-buffer", - [0, 1362, 1437, 2070, 1209, 3127, 3188, 35417, 35419], - "errto", - [ - 0, 19181, 442, 12312, 13414, 4865, 4870, 4874, 6513, 1009, 1011, 7677, 1703, 1177, 15555, 35422, 4193, 35425, - 35426, 4493, 4494, 91, 35428, 1984 - ], - "unorm", - [0, 1783, 1973, 2275, 29352, 1745, 1739], - [1, 2343, 23955], - [0, 23957, 23961, 23962, 2537], - [2, 8293, 23958], - [ - 0, 53, 71, 81, 5717, 5749, 5751, 5757, 5759, 5782, 5788, 5821, 5830, 83, 87, 14128, 90, 97, 35437, 35439, 4874, - 15427, 5990, 1212, 14191, 35440, 17495, 1429, 1437, 35443, 1509, 1525, 1676, 1680, 1700, 35444, 28504, 1687, - 35446, 28137, 13772, 6473, 2020, 35450, 2205, 2215, 33100, 2670, 12788, 35453, 2709, 2742, 26453, 2743, 35455, - 2753, 2856, 1209, 35457, 3093, 7305, 3220, 35461, 3257, 3266, 35462, 3493, 3532, 35463, 3549, 15245, 35465, - 3742, 3762, 35467, 35469, 13780, 4025, 4108, 4135, 5152, 4232, 4296, 35473, 35476, 35479, 35482, 35484, 35485, - 35486, 35487, 35494, 35496, 4449, 4459, 91, 35497, 35500 - ], - "oxide", - "-reflect", - [2, 5258, 23959], - [ - 0, 33640, 17835, 35502, 8862, 811, 15460, 816, 29544, 35505, 4856, 5245, 35507, 17577, 22089, 27299, 6505, 7812, - 5254, 5162, 13418, 35510, 1009, 1011, 1198, 1304, 1364, 35512, 35513, 1431, 21480, 4907, 1544, 1594, 1610, - 35514, 1874, 1177, 35517, 17303, 2026, 35518, 2323, 2338, 35519, 2383, 2384, 2450, 35521, 35523, 20305, 2494, - 35527, 2530, 8163, 3124, 3159, 3183, 35531, 3246, 35533, 3752, 89, 5311, 4042, 4076, 4151, 4193, 17010, 4294, - 35537, 4484, 4535 - ], - [0, 35539, 6564, 1388, 2887, 5351, 8674, 5472, 13428, 1973, 8791, 6969, 1145, 6468, 35540, 6789, 6746, 1149, 7003], - [1, 2343, 23965], - "proxies", - [0, 23966, 23967, 23968, 2487], - [0, 17877, 35547, 1137, 20908, 20991, 1676, 35549, 1736, 2182, 28142, 35550, 35555, 4391, 4449, 4548], - [0, 28192, 35558, 28180, 5245, 28203, 35561, 35563, 6520], - [0, 4419, 17878, 5472], - [3, 1891, 15], - "stai", - [2, 23969, 23970], - [1, 2343, 23973], - [0, 23976, 23978, 23979, 2523], - "pre-suf", - "spawn-sync", - [0, 1209, 10627, 35570, 26827], - ".gitignore", - [ - 0, 4874, 1009, 1011, 1389, 35573, 35575, 1610, 1680, 35576, 35577, 2752, 3188, 3400, 3421, 4039, 4255, 35579, - 35580, 4421, 4474, 12851, 91 - ], - [0, 6969, 5982, 3212, 13106, 4158, 35582, 4420], - "asterisks", - "regular-", - [2, 23981, 7256], - [1, 2343, 23984], - [0, 23985, 23986, 23987, 2537], - [ - 0, 10780, 1292, 1362, 35382, 1525, 1536, 1559, 2020, 2026, 35588, 2070, 2659, 2822, 1209, 3188, 3257, 3330, - 3411, 35589, 4039, 4218, 25192, 35591, 20496, 4449 - ], - [0, 35593, 1389, 1429, 18761, 35596, 1448, 1719, 1177, 18766, 1951, 2899, 705, 35598, 4167, 4193, 4196, 4220, 4389], - [0, 5284, 5472, 27603, 1388], - [1, 2343, 23990], - "dimensions", - [0, 0, 23991, 23996, 2537], - [0, 4384, 4389, 1474], - "resolution", - "heif", - "tga", - "tiff", - [0, 2585, 176, 14903, 6938, 26815, 15847], - [1, 2343, 23998], - [0, 0, 23999, 24000, 2537], - [0, 442, 816, 10615, 1177, 35611, 1924, 1937, 1942, 2203, 29741, 1776, 3090, 3549, 3758, 2907, 4042, 4495], - [0, 4426, 35617, 5284, 7598, 35619, 35620, 35621, 35622, 35625, 35628, 35629, 1424, 8221, 12075], - [1, 2343, 24002], - [0, 0, 24005, 24007, 2537], - "ow", - "p-pipe", - [ - 0, 48, 53, 83, 87, 97, 5583, 1195, 16818, 1593, 1177, 16821, 1895, 1955, 1999, 2182, 35634, 16824, 2675, 2297, - 2876, 2881, 2895, 2904, 2908, 2921, 2925, 2990, 3183, 35637, 3377, 1894, 3774, 4042, 16827, 2924 - ], - "imagemin-webp", - [0, 1675, 6925], - [1, 2343, 24009], - [0, 0, 24010, 24011, 34352], - [0, 7115, 4389, 19988], - [0, 3101, 7046, 7525, 7170], - "is-png", - "pngquant-bin", - [1, 2343, 24015], - [0, 24018, 24019, 24020, 2537], - [2, 2267, 1932], - "pngquant", - [0, 3923], - [0, 1329, 1398, 1429, 35649, 2899, 35650, 4255, 35653], - [0, 3101, 6657, 4430, 353], - [1, 2343, 24023], - "utf7", - [0, 0, 0, 24025, 2443], - "reader", - [0, 3949, 1499, 1179, 5701, 1862], - [1, 2343, 24027], - [0, 0, 8134, 24028, 2487], - [0, 35667, 35668, 35670, 4435, 5396, 3403, 4571, 7204, 4569, 18132, 6270], - "cpx2", - [3, 23479, 11], - [1, 2343, 24034], - "import-size", - "seamless-immutable", - [0, 24035, 14525, 24039, 2537], - [0, 1437, 32972, 2089, 21890, 35675, 3718, 4425], - "mutable", - "on-write", - [2, 1583, 24037], - [0, 2228, 3005, 22832, 6901, 35677, 4262, 18234, 3514, 6681, 3005], - [1, 2343, 24041], - [0, 24042, 24043, 24046, 2537], - [ - 0, 35720, 35797, 35724, 35730, 35781, 35789, 35795, 35799, 35810, 35682, 35684, 35697, 35739, 35750, 35754, - 35769, 35779, 35793, 35685, 35700, 35721, 35741, 35748, 35756, 35785, 35787, 35792, 35812, 35689, 35694, 35743, - 35752, 35762, 35774, 35791, 35805, 35702, 35705, 35706, 35708, 35710, 35723, 35802, 35806, 35709, 35699, 35718, - 35729, 35767, 35772, 35804, 35808, 35713, 35733, 35764, 35811, 35690, 35701, 35717, 35727, 35738, 35761, 35776, - 35783, 35746, 35736 - ], - [ - 0, 2150, 2070, 2323, 3403, 2278, 2899, 89, 1177, 1209, 4039, 1637, 3561, 2924, 1859, 2151, 2759, 1610, 2025, - 2504, 3342, 3824, 1628, 2359, 3744, 2367, 4111, 1165, 2482, 2496, 4307, 35814, 35816, 3427, 4689, 2361, 2960, - 3618, 35819, 4909, 1959, 1879, 1938, 1947, 25925, 35818, 1652, 2054 - ], - "variant", - [2, 9721, 24044], - [0, 89, 5128, 4627, 4963, 181, 5130, 4967, 35821, 4437, 14547], - [3, 2697, 12], - [1, 2343, 24049], - [0, 24050, 24051, 2514, 2487], - [0, 20443, 1676, 26137, 26144, 3427, 3763], - [0, 1173, 1198, 1253, 1267, 1177, 1903, 1958, 1970, 2026, 2164, 2899, 29946, 4257, 4342], - [1, 2343, 24053], - [0, 0, 0, 24054, 2523], - [0, 1317, 35832, 4439], - [1, 2343, 24056], - [0, 0, 24058, 24059, 2523], - "bypass", - [0, 35837], - [0, 1473, 57, 35839], - [1, 2343, 24061], - [0, 0, 0, 24062, 2443], - [0, 6105, 4445, 18241, 5284, 1936, 2585, 24829, 24830, 24843, 6106, 24832, 6110], - [1, 2343, 24064], - [0, 0, 24065, 24066, 2537], - [0, 4874, 34238, 1177, 1895, 1955, 1982, 1894, 1531, 91, 4523, 1983, 1984], - [0, 2062, 35849, 35851], - [1, 2343, 24068], - [0, 0, 0, 24071, 4139], - "metacom", - "metaco", - [0, 4158, 3212, 91, 3163], - "nfiguration", - [2, 24070, 24072], - [1, 2343, 24076], - "metalog", - [0, 0, 24082, 23865, 2537], - "metaschema", - "metautil", - "vm", - "metavm", - "metawatch", - [0, 2899, 1177, 2759, 15854, 1951], - [3, 15793, 16], - "tarhia", - [2, 24083, 24084], - [1, 2343, 24087], - [0, 24094, 24096, 24098, 2537], - "isolation", - "enterprise", - "scalable", - "soa", - "stateful", - "cluster", - [0, 3864], - "interactive", - [0, 53, 29553, 5103, 1894, 91], - [2, 24101, 103], - [ - 0, 89, 5128, 35865, 11000, 8192, 35867, 35869, 3857, 3906, 35868, 35870, 4450, 9044, 3811, 5779, 200, 5131, - 12295, 12296, 5122, 35871 - ], - [1, 2343, 24100], - [0, 0, 24102, 24103, 2399], - [3, 9312, 10], - [ - 0, 48, 53, 81, 87, 90, 11976, 12310, 5476, 1195, 1429, 1177, 2026, 2151, 2193, 2205, 2822, 2832, 3127, 3188, - 2899, 3286, 35877, 3400, 35878, 89, 3824, 2278, 4255, 2924, 4677 - ], - [0, 4451, 5284, 176, 5938, 16504, 8623, 1936, 6956, 24456], - [1, 2343, 24105], - [0, 0, 24106, 24107, 2487], - [0, 2276, 28234], - [0, 4452, 57], - [1, 2343, 24109], - [0, 0, 24110, 2514, 2487], - [0, 29169, 4384], - [1, 2343, 24112], - [0, 24115, 24119, 24123, 2487], - "-vnode-flags", - [2, 2711, 24113], - [0, 25671], - "inferno-", - [2, 24116, 594], - [2, 24116, 6579], - [0, 5517, 442, 9089, 603, 4874, 22839, 1177, 1895, 1915, 1938, 1955, 6526, 2203, 1894, 4493, 91, 4523, 1984], - [2, 6073, 591], - "ToString", - [2, 8924, 24121], - [0, 9183, 977, 16358, 35896, 34877, 34876, 35897, 35898], - [1, 2343, 24125], - [0, 24126, 24127, 24131, 2537], - [0, 1512, 1672, 3188, 35904], - [0, 4856, 6503, 1429, 1474, 1787, 1177, 2899, 3421, 4474, 4487, 91], - [2, 2712, 591], - [2, 2712, 1592], - "humanize", - [0, 3073, 2942, 4251, 1676], - [1, 2343, 24133], - [0, 24134, 24141, 24142, 2523], - [0, 15312, 35917, 17416], - "inherit", - "inheritance", - "klass", - "oop", - "oriented", - [2, 3425, 24139], - [0, 13614, 1159, 9254, 1855, 1177, 2708, 3410, 4103, 4389], - [0, 100, 4647, 6899, 3053, 7260, 1697, 1496], - [1, 2343, 24144], - [0, 0, 7923, 24145, 2523], - [0, 1633, 18718, 3729, 35109, 32900, 6553], - [1, 2343, 24147], - [0, 20896, 24148, 2514, 2523], - [0, 7806, 9227, 6494, 5087, 1536, 1594, 2026, 1192, 3363, 1894, 4468, 91, 4763], - [1, 2343, 24150], - [0, 24155, 24158, 24159, 2537], - "@alcalzone/ansi-tokenize", - "auto-bind", - [2, 17503, 7201], - "yoga-layout", - [0, 2713, 4431, 15019, 35935, 35938, 3923], - "@types/ms", - [2, 11313, 14675], - [0, 4389, 4430, 1537], - [0, 1936, 22115, 57, 353, 3586, 1623], - [3, 6547, 13], - "-exit", - [2, 24160, 24161], - "ack-utils", - [2, 6516, 24163], - "@vdemedes/prettier-config", - [2, 15289, 89], - [3, 3816, 9], - "tools-core", - [2, 24167, 24168], - [1, 2343, 24172], - "print", - [0, 24173, 24174, 24175, 2537], - [0, 24156, 5254, 2738, 3242, 4135, 22776], - [0, 11976, 4874, 7677, 1395, 12690, 3232, 3446, 7461, 9245, 91, 1984], - [0, 5995, 1550, 3230, 3232, 1932, 2844, 1747, 18037, 4799, 91, 2325, 1552, 1542, 3151, 9553, 3766, 35948], - [1, 2343, 24178], - [3, 2718, 12], - [0, 0, 24179, 6273, 2443], - [ - 0, 48, 53, 61, 76, 78, 87, 92, 107, 192, 5467, 9089, 603, 5366, 5087, 4870, 7819, 1009, 1011, 1193, 1317, 1593, - 1177, 1895, 1955, 1978, 2675, 1192, 1209, 3400, 1894, 3957, 4474, 4508, 4514, 91, 3348 - ], - [1, 2343, 24185], - [2, 24184, 4013, 17526], - "inno", - [3, 2719, 9], - [3, 29444, 16], - [0, 24186, 24187, 24189, 2523], - [0, 35957, 16781, 2036, 2856, 3057, 35958, 4135, 4507, 4748], - [ - 0, 192, 22559, 19438, 19181, 442, 11893, 8755, 554, 10879, 4864, 5087, 7637, 7889, 19446, 35960, 8778, 4874, - 5254, 4892, 21626, 1009, 1011, 1193, 16307, 1566, 668, 1177, 1895, 1938, 1939, 1942, 1955, 2020, 2071, 2151, - 2203, 2675, 1192, 2822, 2990, 3144, 1894, 4039, 4474, 91, 4523 - ], - "run-async", - [0, 1192, 91, 12938, 89, 5472], - [1, 2343, 24191], - [0, 24192, 24193, 24194, 2523], - [0, 1437, 1835, 3170, 4135, 4227], - [ - 0, 8778, 5254, 1009, 1011, 1172, 1175, 1195, 1257, 1267, 35968, 1268, 1874, 1177, 1895, 1954, 1955, 2151, 2070, - 2675, 2766, 2297, 2881, 2898, 2904, 2921, 2925, 2990, 3123, 3188, 2899, 1894, 4039, 91, 2924, 4677 - ], - [0, 4469, 35972, 2924, 1194, 91, 4799], - [1, 2343, 25249], - [1, 2343, 24198], - [0, 8998, 1525, 1759, 3232, 4494], - [0, 24197, 34525, 24199, 34352], - [0, 5995, 31012, 35980, 35981, 3232, 3230, 1550, 2844, 1747, 18037, 4799, 91, 200, 13326, 35982, 13325], - [1, 2343, 24201], - [0, 24203, 24205, 24206, 2487], - "fwk", - [0, 35987, 35989], - [3, 2726, 9], - [0, 10817, 4856, 17577, 6503, 4874, 1429, 27445, 1610, 1687, 2899, 4039, 4042, 4474, 91], - [0, 91, 6892, 35993, 4988, 35995], - [1, 2343, 24208], - [0, 24210, 24212, 24215, 2523], - "reify", - [0, 4757, 1138, 1687, 1082, 1084, 35958, 24806, 36000, 36001, 32335, 19441, 36002, 36005], - "exports", - [ - 0, 1166, 3421, 1170, 89, 36007, 2022, 1209, 4039, 4135, 7094, 3471, 4508, 842, 36008, 2188, 3752, 91, 17577, - 4874, 36009, 4880, 4870, 20959, 5254, 15906, 36011, 28142, 9725, 28203, 29139, 603 - ], - "packaging", - "unrun", - [0, 91, 202, 7047, 6639, 4799, 4643], - [1, 2343, 24217], - [0, 24221, 24222, 24225, 2523], - "remark-co", - "de-import", - [2, 24218, 24219], - [0, 4870, 24156, 5254, 36017, 1209, 3242, 36018, 36020, 4135], - [0, 11976, 4874, 7677, 12690, 3232, 3446, 7461, 9245, 91, 1984], - "coffee.md", - "litcoffee", - [0, 5995, 3232, 1932, 1550, 2844, 1747, 18037, 4799, 91, 7163, 2602, 2013, 6868, 7147, 3076, 6865, 13716, 3073], - [2, 24227, 553], - [3, 37196, 18], - [1, 2343, 24243], - [3, 1235, 25], - "3-member-expression-literals", - [2, 24229, 24230], - [3, 24231, 27], - [2, 4635, 5796], - [2, 24232, 24233], - [2, 1267, 13278], - "-cal-buddhist-full", - [2, 10739, 24236], - "cldr-cal-", - "-full", - "chinese-full", - [2, 24238, 24240], - "cldr-cal-c", - [0, 0, 2667, 24252, 4139], - "optic-full", - [2, 24242, 24244], - "dangi-full", - [2, 24238, 24246], - "ethiopic-full", - [2, 24238, 24248], - "hebrew-full", - [2, 24238, 24250], - [0, 91, 4749, 24753, 24754], - "indian-full", - [2, 24238, 24253], - "cldr-cal-i", - "slamic-full", - [2, 24255, 24256], - [2, 6795, 24239], - [2, 24238, 24258], - [1, 2343, 24265], - "persian-full", - [2, 24238, 24261], - "roc-full", - [2, 24238, 24263], - [0, 24270, 24279, 24281, 2523], - "cldr-core", - "cldr-", - "dates-full", - [2, 24267, 24268], - [0, 1209, 4870], - "numbers-full", - [2, 24267, 24271], - [2, 2004, 19895], - "grunt-curl", - "grunt-zip", - [3, 15911, 15], - "emory", - [2, 24276, 24277], - [0, 11976, 4874, 7677, 3446, 7461, 9245, 91, 1984], - "ecma", - [0, 5995, 4799, 91, 36033, 36034, 5547, 3624, 16284, 36036, 36037, 36039, 36040, 36041], - "ecma402", - "jsonc-simple-parser", - [1, 2343, 24285], - [0, 24286, 24288, 2514, 34352], - [0, 2856, 3183, 4296], - [2, 1940, 23688], - [ - 0, 1192, 2675, 1177, 4039, 4468, 4474, 1894, 91, 5087, 4874, 2990, 7892, 36047, 1942, 1938, 1895, 1011, 18285, - 1009 - ], - "flag-icons", - [3, 10697, 15], - [2, 24290, 6082], - [3, 2273, 15], - [2, 24292, 23688], - "grunt-re", - [2, 24294, 2495], - [1, 2343, 24297], - [0, 24300, 24301, 24303, 2523], - [3, 23932, 13], - "country", - [0, 8811, 7681, 2205, 2777, 3157, 3505, 3921], - [0, 11436, 4874, 4880, 1009, 1011, 1166, 1597, 1701, 1177, 1907, 15290, 2020, 89, 4025, 4094, 91], - "dial code", - [0, 91, 4481, 4354, 4532, 553, 36055, 36059], - [1, 2343, 24305], - [0, 0, 24306, 24307, 2537], - [0, 53, 87, 92, 11893, 19441, 8811, 4874, 1009, 1011, 1193, 1622, 1177, 1895, 1192, 1894, 91], - [0, 91, 4481, 8784, 4354, 16790, 1973, 4532, 553], - [1, 2343, 24309], - [0, 24310, 24311, 24312, 2399], - [0, 29891, 1437, 1457, 15261, 24283, 3181, 3188, 36071, 35237, 4039, 21512, 91, 9455], - [0, 4874, 668, 1894, 4384, 4508], - [0, 91, 11540, 24364, 1999, 10906, 6147], - "updates", - [1, 2343, 24321], - [3, 14428, 13], - [2, 24315, 15525], - "inversi", - "on of control container", - [2, 24317, 24318], - "ioc", - [0, 0, 0, 24322, 2487], - [0, 6869, 7296, 4643, 1351, 5284, 4484, 7047], - [1, 2343, 24330], - "empathic", - [3, 547, 8], - "li-framework", - [2, 24325, 24326], - "-prompts", - [2, 24327, 24328], - [0, 24333, 24350, 24357, 4139], - "discover", - [2, 8655, 24331], - [0, 51, 1405, 1437, 1525, 1687, 2070, 2822, 3181, 3188, 814, 4135, 4484, 18272], - "utils-array", - [2, 8655, 24334], - [3, 24335, 13], - [2, 24336, 2150], - [2, 24336, 11996], - [2, 24336, 3729], - [2, 24336, 3101], - [3, 24340, 14], - "ubprocess", - [2, 24341, 24342], - [2, 24336, 7009], - "elementtree", - "leek", - "ssh-config", - "-proxy", - [2, 4339, 24348], - [ - 0, 692, 19861, 4856, 17577, 4865, 7637, 9129, 10949, 6503, 4874, 5251, 20959, 5254, 1429, 2675, 34269, 2899, - 3400, 3421, 1894, 4039, 4474, 4487, 4490, 14970, 91, 31745 - ], - [3, 15592, 14], - [2, 24351, 1633], - "pen", - "@types/open", - "s-name", - [2, 15461, 24355], - [0, 200, 91, 9654], - "@types/split2", - [3, 9240, 12], - [2, 24359, 4575], - [1, 2343, 24365], - [2, 2733, 14606], - [2, 2733, 5130], - "hybrid", - [0, 0, 24366, 24367, 2523], - [ - 0, 1192, 2675, 1209, 4039, 4487, 4468, 3093, 1894, 36090, 1527, 91, 5087, 4874, 36097, 4492, 36088, 15600, 4131, - 36098, 36103, 31194, 4585, 31195, 36100, 1652, 36095 - ], - [0, 671, 4487, 36106, 1894, 1541, 91], - [1, 2343, 24369], - [0, 24371, 24372, 2514, 2487], - "@types/svgo", - [0, 18272], - [0, 4865, 4874, 1512, 2070, 3400, 3403, 4487, 36114, 91], - "icon pack", - [3, 11619, 14], - [1, 2343, 24376], - [0, 24377, 24378, 2514, 2537], - [0, 36119, 1415, 1457, 1556, 1676, 668, 28795, 36120, 3527, 3616, 4025, 4042, 4227, 12444, 26379, 27921, 4459], - [ - 0, 603, 8850, 842, 5245, 4874, 5251, 19839, 2117, 3561, 26712, 1894, 814, 4057, 2278, 4300, 3709, 4359, 4072, - 36123, 4493, 91, 1984, 9252 - ], - "@ioredis/commands", - [1, 2343, 24394], - "-key-slot", - [2, 24093, 24381], - "denque", - [3, 19541, 11], - "guments", - [2, 24384, 24385], - "-error", - "-errors", - "redis-errors", - "redis-", - [2, 24390, 57], - "as-callback", - [2, 18124, 24392], - [0, 24404, 0, 24405, 2537], - "@ioredis/", - [2, 8626, 16609], - [2, 24395, 24396], - [3, 19583, 22], - [3, 10408, 16], - [2, 24399, 10446], - [3, 8826, 10], - "is-errors", - [2, 24401, 24402], - [0, 668, 2191], - [0, 200, 7047, 202, 17526, 10906, 1999, 91, 36130], - "sentinel", - [1, 2343, 24409], - "pipelining", - [0, 24410, 24411, 24412, 2487], - [0, 36135], - [0, 811, 816, 6373, 1389, 4037, 4042, 4255, 36140], - [0, 15253, 1936, 1783], - [1, 2343, 24414], - [0, 0, 24415, 24420, 2399], - [ - 0, 2228, 2899, 29691, 2240, 4019, 36157, 36156, 2300, 36149, 2258, 36160, 4232, 2247, 36163, 2273, 2281, 36165, - 36167, 36153 - ], - "irc-colors", - "node-i", - "cu-charset-detector", - [2, 24417, 24418], - [0, 2845, 2844, 1155, 4496], - [3, 1104, 10], - [1, 2343, 24423], - [0, 0, 24424, 24425, 2523], - [0, 1389, 1177, 2080, 36176, 4389, 36178, 4535], - [0, 1616, 12588, 36181, 36182, 7789, 3428, 6803, 36183, 36185, 36186, 36187, 36189], - [1, 2343, 24427], - [0, 24428, 24429, 24430, 2523], - [0, 2151, 2859, 36194, 21224], - [0, 3400, 3524, 4535], - [0, 3113, 36197, 57, 11806, 22875, 36198, 3656], - [1, 2343, 24432], - [0, 24433, 24434, 24435, 34352], - [0, 1362, 3171, 705], - [0, 1149, 1512, 1525, 2899, 4037, 4193], - [0, 4500, 5592, 4030, 3101, 22115, 3424], - [1, 2343, 24438], - "is-extglob", - [0, 24439, 24442, 24443, 2443], - [0, 705, 1696], - "extglob", - "globstar", - [0, 3297, 2899, 1177], - [0, 4500, 22115, 3424], - [1, 2343, 24445], - [0, 24447, 0, 2514, 2537], - [2, 14503, 7204], - [0, 3183, 36215, 1437], - [1, 2343, 24452], - "globally", - [3, 9509, 9], - "locally", - [0, 24453, 24454, 24455, 34352], - [0, 31081], - [0, 13789, 1011, 1177, 28753, 1680, 2024, 3401, 4481, 91, 4523, 1906], - [0, 91, 4799, 553, 6435, 614, 6731, 3061, 1698, 1781, 7265], - "vanilla", - [1, 2343, 24458], - [0, 24459, 16075, 24460, 2537], - [0, 1562, 36226, 3173], - [0, 1563, 998, 36228], - [1, 2343, 24464], - "is-object", - "kind", - [0, 24465, 24466, 24467, 2537], - [0, 24648, 6327, 3105, 3181, 4745], - [0, 442, 8144, 7639, 6503, 4874, 1414, 36007, 668, 1177, 2899, 3758, 4135, 4494, 91, 4523], - [0, 91, 1745, 1179], - [1, 2343, 24471], - " name", - [2, 24374, 24469], - [0, 24472, 24473, 24474, 2443], - [0, 36241], - [0, 4874, 4508, 91], - [0, 36244, 36245, 29, 36246, 36247, 36248, 91, 1745], - [1, 2343, 24476], - [0, 0, 23733, 24477, 2487], - [0, 1666, 6901, 33777, 91, 1745, 36248, 4508], - [1, 2343, 24479], - [0, 0, 0, 24480, 2537], - [0, 5592, 1745, 1783, 4508, 91, 36245], - [1, 2343, 24482], - [0, 24483, 24484, 24485, 2537], - [0, 3127, 91], - [0, 8147, 6503, 4874, 6520, 1596, 2759, 2899, 3202, 4449], - [0, 6869, 1745, 36263, 5284], - "is-ins", - "ide-container", - [2, 24486, 24487], - [1, 2343, 24490], - [0, 24492, 24495, 24496, 2537], - "esmock", - [0, 1525, 4734, 3275, 15221, 36270, 1149, 1512, 3220, 3188, 7074, 36272], - "wsl", - "subsystem", - [0, 1429], - [0, 36275, 1783, 36276, 36278, 26916, 20672, 1283, 15253, 1179], - [1, 2343, 24498], - [0, 5914, 24499, 2514, 2523], - [ - 0, 549, 4856, 9417, 6503, 36284, 4874, 1429, 1431, 1596, 2899, 36285, 3232, 36289, 1894, 36290, 4232, 4474, - 4490, 31194 - ], - [1, 2343, 24501], - [0, 24502, 24503, 2514, 2399], - [0, 2070, 3348, 1112, 1673, 1676, 4484, 4747, 1398, 1680, 1759, 16544, 1130, 24697, 3951, 36295], - [ - 0, 1414, 3519, 1429, 2323, 2675, 2742, 2899, 3243, 3259, 1552, 4193, 1177, 3260, 4039, 7800, 2203, 3230, 4246, - 4474, 25633, 1894, 36308, 442, 2507, 20085, 4196, 91, 4856, 4874, 2494, 2990, 5245, 6503, 6513, 4892, 2496, - 36307, 25629, 2510, 2529, 25634, 27585, 19441, 1431, 6512, 8536, 18710, 4523, 36303, 4232, 28290, 1942, 28033, - 36305, 9417, 13418 - ], - "kindof", - [1, 2343, 24506], - [0, 0, 24507, 24508, 2523], - [ - 0, 1414, 3242, 1429, 1687, 2070, 2931, 2899, 4484, 4707, 36007, 1177, 20380, 668, 2203, 1457, 3183, 24156, 442, - 3527, 3541, 91, 4856, 17577, 6503, 26584, 2858, 692, 7892, 2075, 36315, 36316, 4523, 36318, 4232, 1964, 36323, - 1012, 13418, 27909, 12123, 5551, 36326, 36331 - ], - [0, 6869, 7296, 4643, 1351, 5284], - [2, 13283, 2899], - [1, 2343, 24513], - "spaces-cli", - [2, 671, 24511], - [0, 24514, 7590, 24515, 2537], - [0, 1012, 1011, 1009, 12145], - [0, 6892, 5286, 5284, 91, 57, 5341, 1177, 6741, 6939], - [1, 2343, 24517], - [0, 24518, 24522, 24526, 2399], - [0, 36342, 18420], - "code c", - [2, 24519, 2885], - "JS code coverage", - [0, 10949, 6503, 4874, 36345, 1567, 36348, 3188, 2899, 3696, 4487, 91, 4526], - "@metcoder95/https-pem", - "verage", - "JS coverage", - [0, 6869], - [1, 2343, 24528], - [0, 24529, 24530, 24531, 2487], - [0, 36356, 36358, 1759, 16837, 695, 3025, 3561, 3616, 16840, 3638, 16841, 25162, 2278, 4228, 4480, 4333], - [ - 0, 36361, 5087, 19799, 7889, 4874, 36362, 36364, 19802, 1009, 1011, 1367, 1177, 1895, 2675, 1192, 33412, 2990, - 36366, 3640, 3672, 1894, 36367, 4468, 91 - ], - [0, 1623, 4329, 2278, 695, 4333, 5260, 1932, 3561, 91], - [1, 2343, 24533], - [0, 24534, 24535, 24538, 4139], - [0, 23433, 1362, 1437, 1486, 1513, 35446, 25879, 32086, 3077, 3183, 36374, 36375, 4562, 4720, 1695], - [0, 1705, 3297, 4039, 4474, 4487, 36377, 91], - "js-calendar", - "v-click-outside-x", - [0, 4532, 91, 23076, 6432, 3383, 10057, 5490], - [2, 1165, 2091], - "5-property-mutators", - [2, 24229, 24540], - [2, 1536, 4408], - "vue-h", - "tml-loader", - [2, 24543, 24544], - [1, 2343, 24547], - [0, 24548, 24549, 24550, 4139], - [0, 1525, 4227], - [0, 1082, 2899, 4135], - [0, 2280, 4533, 4535, 3178, 2632, 5284, 5286, 1925, 5194, 6598, 7075, 6778, 7056, 7192, 1149, 7003], - [1, 2343, 24552], - [0, 0, 24553, 24554, 2443], - [0, 1082, 4135], - [ - 0, 200, 15215, 23634, 24280, 5286, 3595, 1925, 5284, 676, 36390, 2262, 14137, 2632, 3178, 6707, 6708, 4405, - 23635, 1644, 57, 23637, 2280 - ], - [1, 2343, 24556], - [0, 24557, 24558, 24565, 34352], - [0, 9448, 2102, 2755, 4121, 4143, 4227, 4535, 4695, 24777], - [ - 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 19403, 1610, 1700, 1701, 1177, 1895, 1938, 2675, 1192, 2794, 2990, - 3150, 3400, 1894, 4257, 4072, 2924 - ], - "character-", - [2, 24559, 57], - "inople", - [2, 14180, 24561], - [3, 10755, 13], - [2, 8535, 591], - [0, 2280, 4535, 4533, 2924, 1464], - "void-elements", - [1, 2343, 24572], - [3, 13889, 13], - "ddleware", - [2, 24568, 24569], - "code-mirror", - [0, 24573, 24578, 24579, 2523], - [0, 36402], - "github-basic", - "highlight-", - [2, 24575, 1505], - "inconsolata", - [0, 2899, 1177, 1362, 2759, 1954, 1938, 1958, 1903, 1970], - [0, 3778, 1179, 7818, 6953], - "-code-mirror", - [2, 2437, 24580], - "jade-", - "highlighter", - [2, 24582, 24583], - [3, 10755, 14], - "cdata", - [2, 24585, 24586], - [3, 24587, 15], - [1, 2343, 24597], - "offee-script", - [2, 24588, 24590], - [2, 24585, 695], - [2, 24585, 3127], - [2, 24585, 4333], - "verbatim", - [2, 24585, 24595], - [0, 24603, 0, 24604, 2537], - "less-file", - "lsr", - [2, 23151, 705], - "stop", - "twbs", - [ - 0, 97, 4880, 4883, 36409, 36411, 36413, 36415, 36416, 36420, 36422, 36423, 1015, 36424, 36425, 36427, 36429, - 36430, 36432, 36433, 36435, 36437, 36439, 36442, 36444, 36445, 36447, 36448, 36451, 36453, 36454, 1018, 1021, - 36455, 36457, 36458, 36459, 36461, 36463, 36466, 36467, 12265, 1023, 36468, 36471, 36473, 36476, 36477, 36478, - 36480, 36483, 36485, 36487, 36489, 36490, 36491, 36492, 36493, 36495, 36497, 36499, 36502, 36503, 36504, 36506, - 36509 - ], - [0, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], - [1, 2343, 24606], - [0, 24608, 24609, 8039, 2399], - "filelist", - [0, 2070, 2685, 1209, 4135, 4727], - [0, 2272, 3105, 2899, 3381, 4170], - "rake", - [1, 2343, 24612], - [0, 0, 24613, 2514, 2399], - [0, 8862, 811, 816, 10817, 4874, 1317, 1894, 4042, 4484, 91, 1984], - [1, 2343, 24615], - [0, 0, 24616, 24618, 2523], - [0, 11976, 107, 34715, 1437, 12607, 668, 2205, 2553, 3105, 36526, 3400, 36528, 3714, 7917, 1984], - "video-worker", - [0, 1936, 1283, 2574], - [3, 1198, 14], - "nnotate-pure-calls", - [2, 24619, 24620], - [3, 19449, 20], - "nk", - [2, 24622, 24623], - [2, 16819, 2143], - "-nk", - [2, 7628, 24626], - [1, 2343, 24629], - [0, 24630, 24632, 2514, 2523], - [ - 0, 8862, 811, 8850, 816, 6373, 10895, 36534, 1556, 16230, 668, 28795, 36538, 2807, 3090, 36536, 3189, 3510, - 15450, 3714, 4042, 4057, 15451, 27921, 36537 - ], - "parallax", - [0, 5757, 4874, 7677, 19336, 1446, 1177, 1905, 1894, 91, 1984], - "youtube", - "vimeo", - [1, 2343, 24636], - [0, 0, 24637, 24638, 2537], - [0, 3421, 2070, 1734, 2675, 2297, 2907, 1177, 4042, 4072, 1597, 1596, 2908, 17232, 5561, 36544, 1938, 2915], - [0, 614, 6564, 36, 5576, 1388], - [1, 2343, 24640], - [0, 24641, 24642, 24643, 2537], - [0, 4243, 23462], - [0, 1389, 36552, 1177, 2759, 2899, 3202, 4068, 31136, 4545], - [0, 4545, 1871], - [1, 2343, 24646], - "css-url-embed", - [0, 0, 24647, 24649, 2523], - [ - 0, 20870, 36559, 24523, 826, 4874, 1079, 28400, 1414, 1610, 36560, 668, 1177, 2064, 2675, 1192, 31808, 29197, - 3313, 2658, 4481, 91, 4729 - ], - "@gerrit0/mini-shiki", - [0, 1612, 27, 2671, 1862, 705, 7085, 7289, 4731, 7102], - [1, 2343, 24654], - [2, 2767, 12608], - [2, 2767, 8751], - "walkdir", - [0, 24655, 24656, 24657, 2537], - [0, 9315, 31265, 23289, 2051, 2745, 36568, 12449], - [0, 36571, 12396, 9363, 4874, 1414, 1894, 3985, 3998, 4481, 4505, 91, 1906], - [0, 6892, 7234, 1563, 25154, 1644, 3729, 3958, 3984, 36573, 4141, 1646, 5341, 353, 1633, 4549], - [1, 2343, 24659], - [0, 24660, 8134, 24661, 2537], - [0, 36578], - [0, 17023, 3778, 6988, 16114, 8623, 36580, 4552, 5401, 11512], - [1, 2343, 24663], - [0, 24664, 24667, 24669, 2523], - [0, 9315, 18072, 12447], - "cssfontparser", - "moo-color", - [0, 9363, 4874, 1414, 3137, 27008, 27010, 1894, 3985, 3998, 4481, 4505, 91, 1906], - [2, 1199, 15525], - [ - 0, 23266, 36587, 614, 6435, 3984, 36573, 3958, 26564, 2587, 36588, 36589, 3273, 1351, 1783, 1936, 6523, 1633, - 6892, 202, 12414, 4647 - ], - [1, 2343, 24671], - [0, 0, 16529, 24672, 2523], - [0, 35670, 27280, 18132, 4558, 3403, 4571, 7204, 4569, 4166, 16159], - [1, 2343, 24674], - [0, 24675, 0, 24676, 4139], - [0, 17180, 2155, 36602, 36604, 20508, 3923], - [0, 2056, 4560, 15008, 36606, 12666, 3101, 7682], - [1, 2343, 24678], - [0, 24679, 24680, 24681, 2487], - [0, 36612, 1371, 1437, 36611, 4135, 20044, 1543, 16184, 2960, 2744], - [0, 1906, 1166, 24491, 4294, 1470, 36615], - [0, 3378, 3076, 29096, 22005, 3329, 4354, 16790, 200, 1237, 3383, 15525], - [1, 2343, 24683], - [0, 0, 0, 24684, 2537], - [ - 0, 12831, 1002, 36621, 36622, 36623, 36626, 36628, 36630, 36632, 36637, 36639, 36641, 36642, 36643, 36646, - 36649, 36650, 36653 - ], - [1, 2343, 24686], - [0, 24687, 24691, 24692, 2399], - [0, 3763, 3757], - "@jest/e", - "nvironment", - [2, 24688, 24689], - [0, 1158, 3421, 4770, 1082, 2899, 1177, 13614], - [0, 7119, 1002, 25658], - "fake-timers", - [2, 552, 24693], - [1, 2343, 24696], - [0, 0, 24698, 24699, 2523], - "sql-highlight", - [0, 1566, 2899, 4170], - [0, 1002, 4565], - [1, 2343, 24701], - [0, 24702, 24703, 13533, 2399], - [0, 3008, 3173, 4121], - [ - 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 1610, 1700, 1701, 1177, 1895, 1938, 2092, 2675, 1192, 2990, 3144, - 21016, 3400, 1894, 4257, 2924 - ], - [1, 2343, 24705], - [0, 24706, 24707, 24708, 2523], - [0, 15560, 23783], - [0, 1148, 1389, 1414, 2899, 3697, 20010, 20012, 4535], - [0, 7134, 57, 12831, 1002, 1644, 3766, 1871, 3767, 1646], - [1, 2343, 24710], - [0, 24711, 24714, 24716, 34352], - [0, 2139, 36681, 3173, 3763, 4507, 4548, 36680], - "-escapes", - [2, 11948, 24712], - [ - 0, 5517, 30494, 36688, 20224, 36694, 36687, 7746, 4874, 36685, 11305, 36691, 7752, 29891, 23247, 7677, 1410, - 1610, 2685, 33479, 30889, 2658, 7798, 28531, 4393, 4483, 36684, 91, 1984 - ], - "matchers", - [0, 4568, 27, 36696, 7085, 7289, 705, 2671, 4548, 1612], - "extended", - [1, 2343, 24720], - [2, 38074, 1177], - [0, 24721, 24722, 24735, 2537], - [0, 25493], - [0, 3505], - "@pmmmwh/react-refresh-webpack-plugin", - "cape-html", - [2, 5600, 24724], - "ump.js", - [2, 5086, 24726], - "ndomcolor", - [2, 12178, 24728], - "eslint-w", - [2, 2546, 4406], - [2, 24730, 24731], - "jump.js", - "randomcolor", - [0, 4569, 4571, 35668, 25493, 4014, 7204, 6857, 3403, 1263, 6437, 6639, 6436, 36706], - [1, 2343, 24740], - "recharts", - [2, 30495, 674], - "web-vitals", - [0, 24741, 24742, 24743, 2487], - [0, 3084, 4449], - [0, 1148, 2899, 3697, 705, 4135, 36712], - [0, 4575, 1388, 36715, 888, 1644, 57, 36716, 36717, 36718, 36719, 4569, 36720, 4576, 15525], - [1, 2343, 24745], - [0, 0, 24747, 24748, 2537], - "libxmljs2", - [0, 1596, 2759, 14529, 3774], - [0, 8426, 9254, 3656, 4577], - [1, 2343, 24750], - [0, 24751, 24752, 24755, 2523], - [0, 2713, 17395, 25700, 36732, 17416], - [0, 1090, 1593, 36736, 3435, 3438, 4092, 4100, 4389], - "plugnplay", - "pnp", - [0, 614], - [1, 2343, 24757], - [0, 0, 9530, 24755, 4139], - [1, 2343, 24760], - [2, 814, 13987], - [0, 0, 24761, 24763, 2537], - [ - 0, 68, 192, 5467, 442, 6375, 1525, 1177, 1895, 1955, 2203, 2675, 1192, 2990, 29197, 3400, 1894, 23901, 27302, - 4257, 91, 4523 - ], - "@vercel/h3", - [0, 3348, 6926, 6668, 36760], - [1, 2343, 24765], - [0, 24766, 24767, 24768, 2399], - [0, 20573, 1687, 2929, 11481], - [0, 36767, 1999, 29283, 34078], - [0, 1145, 36769, 8791, 8745, 1973], - [1, 2343, 24770], - [0, 0, 24771, 24772, 2523], - [0, 4384, 2272], - [0, 1002, 7020, 4354, 16790, 13017], - [1, 2343, 24774], - [0, 24775, 24776, 24784, 2523], - [0, 17058, 36781, 7076, 25814], - [0, 17584, 1429, 15990, 1527, 1652, 2675, 2759, 3188, 2899, 21477, 4039, 4131, 4193], - "worker-farm", - "leak-detector", - [2, 2769, 24778], - [3, 20371, 12], - [2, 24780, 14922], - "@aneuhold/be-ts-lib", - "@vercel/koa", - [0, 36785, 1528, 6458, 3358, 16094, 13729], - "@vercel/hono", - "@jimp/diff", - "@jimp/", - [2, 24787, 9711], - "@jimp/types", - [1, 2343, 24803], - "@jimp/t", - "est-utils", - [2, 24791, 24792], - "@adonisjs/ace", - [2, 12327, 10809], - [3, 475, 10], - [2, 24801, 8915], - "manipulation", - [2, 12327, 24798], - "resize", - [3, 24794, 11], - [2, 24796, 24815], - [0, 0, 24804, 24814, 4139], - [0, 9516, 9515], - [3, 1603, 9], - [2, 24805, 3751], - [2, 10880, 1283], - [3, 5617, 14], - "eter", - "-decorator", - [2, 24809, 24810], - [2, 11958, 24811], - [2, 24808, 24812], - [0, 3378, 3383, 1460, 7020], - "bodyparser", - [2, 24825, 686], - [1, 2343, 24820], - [2, 29401, 166], - [2, 13055, 25721], - [0, 0, 24824, 24834, 2537], - " editor", - [2, 6105, 24821], - "wysiwyg ", - [0, 48, 53, 87, 94, 1178, 1198, 1177, 1881, 1938, 2899, 3400, 3421, 4039, 4042, 4045, 28038, 4535], - [3, 475, 12], - "html editor", - [2, 24823, 24826], - [2, 24796, 7141], - "rich editor", - [2, 6106, 24821], - "editable", - [2, 1563, 24831], - "vanillajs", - [0, 1155, 7020, 2649, 20215, 2574, 36796, 36798, 1145], - [1, 2343, 24837], - "@adonisjs/env", - [0, 24838, 24839, 24840, 2443], - [0, 36805, 36809, 36806], - [ - 0, 4874, 11016, 13061, 16480, 36812, 11018, 1639, 36814, 2832, 91, 1983, 1984, 36815, 188, 4639, 36820, 36821, - 36816, 36817 - ], - [0, 181, 188, 8588, 5131, 4967, 4627, 4963], - [2, 24846, 24847], - "wysisyg", - "rte", - [1, 2343, 24845], - [0, 0, 24851, 24865, 2523], - [3, 24828, 11], - "vents", - "nanotimer", - "temporal", - [3, 1387, 9], - [0, 2899, 1177, 2759, 1317, 4342, 1311, 1954, 1938, 1958, 1903, 1948, 1970], - "erialport", - [2, 24850, 24852], - "firmata", - [2, 24796, 24858], - "beautifier", - [2, 2294, 24856], - "fold", - "0A02", - "0A21", - "16x2 LCD", - "20x4 LCD", - "2D120X", - "2Y0A02", - [0, 27, 10376, 4590], - [1, 2343, 24870], - "2Y0A21", - "74HC595", - "ADXL335", - [0, 24901, 24903, 2514, 2537], - [2, 24796, 3428], - "ADXL345", - "ALS-PT19", - "ALSPT19", - "ANALOG", - "arduino", - "Ardumoto", - "AT42QT1070", - "BLINKM", - "BMP180", - "Continuous Rotation", - "DEFAULT", - "Diffused LED", - "DS18B20", - "Edison Arduino Block", - "Edison ", - "GPIO Block", - [2, 24886, 24887], - "I2C Block", - [2, 24886, 24889], - "PWM Block", - [2, 24886, 24891], - "edison", - "ESPLORA", - "EV3", - "galileo-io", - "galileo", - "GP2D120XJ00F", - "GP2Y0A02YK0F", - [2, 24925, 24926], - [0, 4593], - "GP2Y0A21YK", - [0, 4384, 2276], - "GP2Y0A41SK0F", - "GY-521", - "GY521", - "HD44780", - "High Torque", - "Hitec HS-35HD", - "Hitec HS-", - [1, 2343, 24939], - "Hitec HS-422", - [3, 24912, 11], - "5BB", - [2, 24913, 24914], - "625MG", - [2, 24910, 24916], - "Hitec HS-6", - "46WP", - [2, 24918, 24919], - "755HB", - [2, 24910, 24921], - "805BB", - [2, 24910, 24923], - [3, 24871, 11], - "ealth", - "Hitec HS-85MG", - "HMC5883L", - "HMC6352", - "Hobby Motor", - "HRLV-MaxSonar-EZ0", - "HT16K33", - "HTU21D", - "i2c", - "Infrared Proximity Sensor", - "Infrared ", - "Sensor", - [2, 24936, 24937], - [0, 24941, 24957, 2514, 2487], - "intel edison", - [ - 0, 12105, 668, 1457, 2139, 36838, 24762, 36840, 24783, 30162, 24785, 36841, 36842, 36843, 24818, 28111, 29471, - 36845, 24738, 28441, 36848, 30929, 36850, 36852, 31275, 36855, 36859 - ], - "intel galileo", - "ISL29125", - "JHD1313M1", - "Joystick", - "LCD1602", - "LCD2004", - "LCM1602", - "LED", - "LIDAR-Lite v2", - "Ludus Protoshield Wireless", - [3, 24951, 17], - "LV-MaxSonar-EZ0", - [3, 24953, 14], - [2, 24954, 1278], - "MCP23008", - [ - 0, 3242, 1091, 1138, 1758, 1999, 2714, 3467, 3445, 1983, 1413, 1437, 1676, 2020, 3144, 2658, 17913, 25671, 4707, - 1438, 1759, 2022, 2754, 4039, 4135, 4238, 4391, 1984, 1458, 1503, 2026, 2105, 3203, 4474, 1668, 2151, 2182, - 3761, 3784, 33145, 842, 24156, 11305, 36861, 26453, 29133, 3181, 3547, 4459, 29105, 31142, 1109, 33200, 1483, - 2794, 3173, 3310, 4294, 91, 5087, 4874, 1154, 1869, 36863, 20921, 36864, 36867, 5364, 5245, 27066, 26584, 1107, - 1151, 36868, 36869, 36871, 5254, 24358, 35563, 13834, 5071, 31008, 36872, 6541, 36873, 36874, 25892, 36875, - 8997, 4864, 28137, 2069, 36877, 3386, 16831, 36878, 34118, 36879, 9129, 12461, 27959, 36880, 7746, 5542, 30493, - 33761, 36882, 31071, 23843, 24725, 36885, 11907, 36887, 36889, 15887, 36890, 36892, 5328, 36895, 36897, 36899, - 29125, 36901, 36906, 36909, 36911, 36915, 36917, 36918, 36920, 36922 - ], - [2, 24925, 9257], - "MCP23017", - "MCP9808", - "Metal Gear", - "MJKDZ", - "MMA7361", - [2, 24796, 2942], - [1, 2343, 24971], - "MMA7660", - "MMA8462Q", - "MPL115A2", - "MPL3115A2", - "MPR121", - [0, 24982, 0, 24990, 2537], - "MPR121QR2", - "MPU-6050", - "MPU6050", - "MUXSHIELD2", - "NXT", - "OA41SK", - "PARALLEL", - "PCA9685", - "pcduino", - "PCF8574", - [0, 36927, 1147, 34631], - "PCF8574A", - [2, 24796, 32276], - "PCF8574AT", - "PCF8574T", - "@paralleldrive/cuid2", - "PCF8575", - "@poppinss/colors", - [0, 1851, 2656, 15204, 30960, 31482, 5317], - "PCF8591", - "photon", - "PIR Motion Sensor", - "QTOUCH", - "raspberry pi", - "raspberry", - "raspberrypi", - [2, 24999, 25005], - "@poppinss/", - "raspi-io", - "RedBoard", - "RGB LED", - "robotics", - "rpi", - "dumper", - "Servo", - "Shift Register 8-Bit SN74HC595", - [3, 25007, 14], - "SI7020", - "spark", - [2, 24999, 25017], - "spark core", - [1, 2343, 25035], - "spark-io", - "SparkFun Essential Sensor Kit", - "SparkFun ", - "macroable", - "Sensor Kit", - [2, 25016, 25018], - "Speed controller", - "Temperature", - "tessel 2", - "Thumb Joystick", - "TINKERKIT", - "TMP36", - "TSL2561", - "Ultrasonic Range Finder", - "usb", - "VKEY", - "Weather Shield Arduino", - [3, 25030, 15], - "Photon", - [2, 25031, 25032], - [2, 24999, 594], - [0, 0, 25036, 2514, 2537], - [0, 2899, 2759, 4342], - [1, 2343, 25041], - "@hapi/formula", - "@hapi/pinpoint", - "@hapi/tlds", - [0, 0, 25043, 25044, 2537], - [2, 6473, 3020], - [ - 0, 53, 87, 192, 5467, 5583, 1208, 1429, 1443, 1503, 1597, 16656, 1637, 1701, 1177, 1881, 1938, 2675, 2297, 2878, - 2881, 6385, 2900, 2904, 2910, 2990, 2899, 3400, 3561, 3566, 16658, 3613, 3672, 16578, 3758, 4042, 4320, 4323, - 4328, 4535 - ], - [0, 158, 11328, 4596, 36941, 1936, 1623, 5284, 6400, 5122], - [1, 2343, 25046], - [0, 25048, 25050, 25051, 2523], - "youch", - [0, 36951, 1496, 4002, 36950], - "youch-terminal", - [0, 3421, 2899, 1177, 2022, 35299, 3923, 1889, 1954], - [0, 4607, 17462, 2090, 7204, 4262, 3403], - [1, 2343, 25056], - [2, 24801, 25055], - "recoil", - "ssembler", - [0, 25057, 25061, 25062, 2537], - [0, 1329, 4431], - [2, 25059, 25082], - "@adonis", - "gzip-js", - [0, 4389, 4603], - [0, 4597, 17461, 6270, 1398, 3101], - "commitplease", - [1, 2343, 25065], - [0, 25066, 25068, 25078, 2443], - [0, 36965, 21539, 2215, 2685, 36966, 36967, 3369, 36968, 36971, 35299, 36972, 36975, 4597, 36976], - "grunt-git", - [0, 1177, 1889, 2022, 2899, 3421, 3923, 4039, 4193], - "-authors", - [2, 25067, 25069], - "-webkit", - [2, 3541, 25071], - "mpare-size", - [2, 21927, 25073], - [3, 10727, 15], - [2, 25075, 3766], - "karma-j", - [0, 2323, 36981, 4597, 2090, 6771, 2150, 7046], - [2, 26505, 6579], - [1, 2343, 25081], - [0, 25084, 25087, 25093, 34352], - [3, 835, 16, 7], - [2, 25085, 25086], - [0, 4597, 4431], - [3, 475, 8], - [3, 24165, 17, 8], - [0, 2494, 4389, 4600], - "grunt-html", - "owercopy", - [2, 2237, 25089], - "-local", - [2, 14336, 25091], - [0, 4597, 2323, 17461, 24456, 3101, 1871, 2585, 128], - "prototyping", - [1, 2343, 25096], - [0, 9652, 0, 25097, 2537], - [0, 4597, 4070, 22850, 2323], - [2, 24796, 2190], - "@japa/assert", - [1, 2343, 25101], - [0, 25102, 25105, 25107, 2523], - [0, 36996, 1851, 36997, 2202, 24462, 19094, 36998, 37000], - "@japa/expect-type", - "@japa/file-system", - [0, 1389, 2759, 21526, 3459, 37002, 30164, 4387, 4389, 4770], - "config-chain", - [0, 4607, 965, 23361, 37004, 1687, 7163, 1388], - "@japa/runner", - "code-quality", - "@japa/snapshot", - [1, 2343, 25112], - [0, 25113, 25116, 25117, 2487], - [0, 20378, 4042, 668, 3561, 3530, 27921], - [2, 25115, 15244], - [3, 7895, 14], - [ - 0, 4729, 1415, 27438, 1594, 984, 3189, 30023, 3445, 2278, 4200, 3510, 1759, 11480, 3266, 3493, 4072, 1544, - 28119, 1457, 28865, 4955, 37012, 34928, 3527, 1615, 1869, 31308, 16860, 3090, 58, 9743, 1763, 2007, 21688, - 37013, 3613, 37014, 37015, 24759, 30787, 37017, 24725, 1573, 10895, 3616, 29444, 8862, 31292, 28465, 4060, 811, - 28572, 18584, 5180, 28575, 16808 - ], - [0, 4967, 5130, 11498, 5331, 37019, 1983], - [2, 25119, 25121], - [3, 10844, 11], - [1, 2343, 25123], - "-console", - "argon2", - [0, 25124, 25132, 25133, 2537], - [0, 25375, 2071, 2151, 37024, 26479], - "knifecycle", - "yerror", - "edge.js", - "@mer", - "maid-js/mermaid-cli", - [2, 25128, 25129], - "mermaid", - [0, 6494, 4864, 4874, 2026, 4493, 91, 1983], - [ - 0, 1983, 5592, 37028, 37029, 37030, 37032, 2026, 37034, 36, 37036, 7433, 37031, 37038, 1932, 8172, 4083, 5995, - 37039, 37040 - ], - [1, 2343, 25136], - "architecture", - [0, 25139, 25149, 25150, 2537], - [2, 25138, 25151], - "ts-node-", - [ - 0, 188, 1983, 9348, 8114, 37052, 7797, 36805, 10984, 6371, 37047, 37046, 24097, 37049, 7639, 11016, 37051, 9312, - 25447 - ], - "-to-glob", - [2, 16774, 25140], - "@jscpd/html-reporter", - "@jscpd/", - [2, 25143, 139], - "-sarif-reporter", - [2, 2824, 25145], - "@jscpd/core", - [2, 25143, 207], - [ - 0, 3467, 4200, 1676, 2020, 3478, 23802, 3266, 4039, 4042, 4135, 1984, 668, 3537, 3742, 7799, 19571, 13151, - 28519, 1457, 2151, 2182, 3183, 1894, 3757, 3084, 3170, 3527, 27921, 91, 4874, 1615, 2226, 2990, 3105, 5245, - 8646, 30795, 8146, 7812, 3509, 4864, 7892, 3067, 37067, 9245, 8778, 5946, 3114, 4057, 37017, 21122, 3107, 8850, - 34971, 37061, 37065, 8862, 37074, 3112, 15277, 37062, 6373, 22823, 811, 3668, 37059, 7641, 37070, 37056, 1567, - 816, 37058, 37069, 37071 - ], - [0, 1983, 188, 4614], - "maintained", - [1, 2343, 25153], - [0, 25166, 25171, 25173, 4139], - "cst", - "adonisjs", - "jscs-jsdoc", - "jscs-", - "wikimedia", - [2, 10832, 25158], - [2, 25157, 25159], - "rved-words", - [2, 4020, 25161], - "to-double-quotes", - "to-single-quotes", - "vow-fs", - [ - 0, 30023, 1983, 3510, 15452, 26379, 3530, 4441, 27921, 37080, 2024, 37082, 3090, 37084, 36874, 26380, 37085, - 37014, 37087, 37092, 37093 - ], - "7.0.0", - [2, 5857, 25167], - [2, 8649, 22785], - "unit-coverage", - [ - 0, 4729, 1415, 3171, 37095, 2832, 26385, 3742, 24324, 2559, 37096, 1084, 4874, 13204, 1006, 37013, 7812, 37097, - 20374, 37100, 13471, 826, 8806, 5180, 6515, 8809 - ], - "style guide", - [0, 1983, 1984, 1973, 1192], - [1, 2343, 25175], - [0, 25176, 25180, 25182, 2523], - [0, 1437, 1209, 2720, 3183, 4726, 2708, 3077, 4294, 1257, 37108], - "@jsdoc/salty", - "catharsis", - [2, 20398, 57], - [0, 1906, 2323, 1172, 2899, 3220, 4170, 37110, 705, 1362, 1175, 2338, 2384, 37115, 37117, 2357, 37113, 1267], - "requizzle", - [0, 5592, 200, 32276, 4166, 8786, 5130, 1896, 13527, 1523, 1525, 35539, 3741, 2720], - [2, 25184, 25186], - "@aneuhold/", - [1, 2343, 25187], - "core-ts-api-lib", - [0, 25196, 0, 25197, 2537], - "current", - [2, 1469, 4479], - [2, 25188, 25189], - "object-to-", - "spawn-args", - [2, 25191, 25192], - [2, 25195, 1095], - [3, 25183, 18], - [0, 1687, 37123, 2070], - [0, 5472, 4386, 1973, 37125], - [1, 2343, 25199], - [0, 25201, 25206, 25207, 2487], - "ool", - [ - 0, 4449, 2070, 3171, 3917, 22990, 1437, 2975, 4753, 37130, 4135, 4734, 1448, 4566, 1525, 3181, 3105, 37131, - 2613, 37132, 36323 - ], - "master", - "config-master", - [2, 25184, 25205], - "main-scripts", - [ - 0, 2675, 2899, 4474, 1894, 6520, 91, 4865, 27098, 4874, 15743, 37139, 3400, 6503, 20290, 3720, 5254, 28189, - 37135, 192, 37137, 9129, 4131, 7639, 4232, 12458, 5467 - ], - [0, 29641, 4617, 7188], - [1, 2343, 25210], - "jsr", - [0, 0, 2667, 2514, 2537], - "data-urls", - "decimal.js", - "saxes", - [1, 2343, 25218], - "symbol-tree", - "w3c-xmlserializer", - "whatwg-url", - [0, 25222, 25223, 2514, 2537], - [2, 25261, 25262], - "sugar-free", - [2, 3192, 25220], - [0, 1104, 1496, 2012, 2061, 2070, 2685, 2741, 4227, 91, 4597, 4734, 4747], - [ - 0, 22909, 37149, 22821, 4865, 37152, 9129, 6503, 4874, 28198, 22900, 18438, 4891, 28189, 4892, 1009, 1011, 1177, - 2899, 4039 - ], - "webidl2js", - [1, 2343, 25226], - [0, 0, 25227, 2514, 34352], - [0, 2899, 3188, 2924, 91, 4874, 4677, 6503, 37157, 1584, 603], - [2, 25239, 25240], - [1, 2343, 25234], - "browser-re", - [2, 25230, 5460], - "cssom", - "nwmatcher", - [0, 25236, 0, 25241, 2487], - "selenium-s", - [0, 36805, 37163, 23423, 17494, 5337], - "tandalone", - [2, 25235, 25237], - [3, 8647, 12], - "li", - [0, 188], - [1, 2343, 25246], - "13.0.0", - [2, 5857, 25243], - "@trapezedev/project", - [0, 0, 25247, 25248, 2523], - [ - 0, 53, 61, 71, 4851, 87, 4856, 6503, 4874, 1011, 1191, 1195, 18571, 1429, 1628, 1177, 37170, 2899, 3951, 4039, - 4042, 4045, 4069, 4421, 4469, 91, 4533, 188, 4634, 4645, 19469, 4646, 2924, 4677 - ], - [0, 188, 1227, 1172, 91], - [0, 25260, 25258, 2514, 34352], - [2, 5051, 25257], - "results-interpreter", - "5.2.0", - [2, 5857, 25252], - "unicode-1", - "1.0.0", - [2, 25254, 25255], - "lice-ansi", - [ - 0, 53, 68, 5611, 37178, 15273, 19181, 442, 5245, 1006, 4874, 5254, 1009, 1011, 7677, 23203, 1177, 19492, 1945, - 1953, 19623, 1955, 1982, 17310, 1894, 4474, 1531, 91, 1983, 1984 - ], - "splash screen", - [0, 1676, 1994, 1996, 2000, 19186, 4135], - [3, 225, 10], - "5/blanditiis-numquam-expedita-neque", - [1, 2343, 25301], - "stylish", - [1, 2343, 25267], - [2, 25303, 25304], - [0, 0, 25268, 25270, 2523], - [0, 1397, 1192, 188], - "deeks", - [0, 188, 6609, 2999], - [1, 2343, 25273], - "doc-path", - [0, 25274, 25275, 25278, 2487], - [0, 37192, 37049, 37190], - [0, 24226], - "json2csv", - "csv2json", - [0, 2679, 23932, 37202, 1932, 188, 6284], - "csv-2-json", - [3, 25219, 12], - [1, 2343, 25282], - [0, 25283, 25286, 2514, 2537], - [0, 1437, 2570, 33215], - [2, 25280, 25285, 25288], - [3, 780, 9], - [ - 0, 53, 87, 37211, 1006, 32109, 5087, 13204, 37213, 37214, 1195, 37215, 1567, 1628, 2092, 2651, 1192, 2832, 2990, - 37217, 3144, 3177, 16581, 11801, 3618, 1894, 3754, 37220, 4227, 4307, 4333, 4334, 4337, 4468, 4469, 91, 4027, - 188, 4633, 2924, 4677, 4681, 4689, 19235 - ], - [1, 2343, 25289], - "aut-officiis-quae", - [0, 0, 25290, 25291, 2537], - [0, 5087, 4874, 1192, 3951, 4042, 4468, 91, 188, 4629], - [0, 188, 91, 4636], - "milliparsec", - [1, 2343, 25295], - "sort-on", - [0, 25299, 25300, 2514, 2523], - "@typ", - "icode/eslint-config", - [2, 25296, 25297], - [0, 5216, 28126, 37049, 30206, 1457, 2856, 37096, 3090, 3189, 30230, 3510, 3530, 15451, 27921, 29161, 30959, 4745], - [ - 0, 104, 31940, 8648, 811, 816, 6373, 10615, 33179, 37232, 20374, 29891, 11016, 17494, 34157, 5337, 11018, 25092, - 13393, 1549, 1759, 37235, 17850, 2559, 3294, 37236, 32977, 4039, 4042, 4076, 1531, 4493, 1983, 188 - ], - [0, 25305, 25306, 2514, 34352], - [1, 2343, 25412], - [3, 25284, 13], - "oloremque-voluptas-facere-nemo", - [0, 2570, 3008], - [0, 1175, 1193, 1240, 1567, 1192], - [2, 25280, 25391], - [1, 2343, 25309], - [0, 25310, 0, 25311, 2537], - [0, 37247, 2591], - [0, 188, 4643], - "0.0.0", - [2, 25254, 25312], - [1, 2343, 25315], - [0, 25316, 25317, 2514, 4139], - [0, 37049], - [ - 0, 188, 1192, 1437, 2020, 21665, 1177, 4042, 4135, 2026, 2924, 1836, 2151, 1610, 3758, 4614, 1193, 1628, 91, - 4634, 53, 4874, 1195, 37253, 4640, 87, 17494, 3957, 15134, 4073, 4261, 6373, 37170, 4679, 4684, 811, 1567, 816 - ], - [1, 2343, 25319], - [0, 25320, 0, 25321, 2523], - [0, 37258], - [0, 614, 888, 37260, 2150, 4647, 37261], - [1, 2343, 25323], - [0, 25324, 25325, 2514, 2537], - [0, 9129, 18704, 20960, 3181], - [0, 5087, 4874, 2070, 1192, 3144, 4039, 4468, 91], - [1, 2343, 25327], - [0, 16409, 25329, 25330, 2537], - [2, 2842, 24077], - [0, 192, 5467, 1389, 1527, 1652, 2675, 1192, 4535], - [0, 4649, 3497, 89, 2731], - [1, 2343, 25332], - [0, 25334, 0, 25335, 4139], - "meriyah", - [0, 37277, 3183], - [0, 614, 6435, 2150, 1586], - "jsonparse", - [1, 2343, 25338], - [0, 25339, 25340, 25341, 2487], - [0, 15642, 1389, 1457, 15016, 37284, 4431, 1695], - [0, 1377, 3188, 4237, 4389, 4535, 37286], - [0, 1389, 25429, 2282, 6374, 6147, 1388], - [1, 2343, 25348], - "jws", - "lodash.i", - "ncludes", - [2, 25344, 25345], - [2, 3045, 19366], - [0, 25354, 12529, 25356, 2537], - "integer", - [2, 3045, 25349], - "lodash.isn", - "umber", - [2, 25351, 25352], - [0, 33304, 26786, 1149, 37294, 33313, 37297, 33328, 33329, 37298, 37300], - "lodash.once", - [0, 33359, 3469, 3259, 14873, 1552, 3230, 37303, 4651, 4104, 33365], - [1, 2343, 25358], - [0, 25359, 25360, 25367, 4139], - [0, 1137, 1149, 1209, 3188, 3760, 705, 37308], - [ - 0, 37313, 1429, 1431, 1512, 18192, 2026, 2061, 2323, 37315, 2384, 2419, 2463, 2590, 2659, 34317, 2759, 2899, - 37316, 3297, 37317, 4089, 37320, 37324, 37325, 4547, 3348, 4747 - ], - [2, 25362, 25364], - [3, 32971, 13], - "@jspm/generator", - "phases", - "fu/eslint-config", - [2, 13179, 25365], - [0, 5472, 13428, 11132, 13841, 28522], - [1, 2343, 25369], - [0, 25371, 25373, 25374, 2537], - "webdav", - [ - 0, 37331, 37332, 37334, 37335, 37336, 37337, 37339, 37342, 37344, 37345, 37347, 37350, 37352, 37355, 37358, - 37361, 37363 - ], - "states", - [ - 0, 37365, 1192, 1177, 37366, 9422, 4468, 1894, 1317, 91, 5087, 2787, 5366, 37368, 1938, 19956, 1895, 37371, - 1011, 37374, 1009 - ], - [0, 37376, 17626, 8172], - "dotenv-local", - [2, 28322, 364], - "lie", - [1, 2343, 25381], - "jszip-utils", - [3, 21510, 13], - [0, 25384, 11736, 25385, 4139], - "versionify", - [2, 25380, 25382], - [0, 37390, 37393, 1327, 1394, 37394, 37397, 37398, 37401, 37404, 37408, 4747], - [0, 4653, 4990, 200, 37410, 9420], - "deflate", - [1, 2343, 25389], - "inflate", - [0, 25390, 25392, 2514, 2443], - [ - 0, 19611, 1006, 8818, 37424, 37427, 37429, 1082, 25361, 1393, 37433, 1835, 37014, 1994, 2018, 20575, 2215, 9506, - 20465, 3173, 23175, 4121, 4388, 4409, 33215, 4695 - ], - "quisquam-quod-ab-aut", - [ - 0, 53, 90, 107, 34765, 25376, 20577, 8780, 5087, 7746, 28919, 4874, 25422, 37436, 1195, 37437, 37438, 1509, - 1593, 1622, 1628, 1668, 1856, 4913, 1177, 20281, 2092, 2135, 2203, 37439, 2629, 2675, 2759, 1192, 21124, 2774, - 2777, 2784, 2794, 2843, 2856, 695, 2969, 2990, 1209, 3021, 3144, 25333, 3177, 21016, 640, 3421, 3446, 20085, - 1894, 3717, 3754, 23738, 3786, 89, 3824, 30570, 3978, 9340, 3988, 3992, 3999, 4039, 12936, 4183, 4294, 4307, - 4072, 4426, 4441, 4452, 4469, 91, 4549, 4027, 37440, 37441, 4677, 37442, 4746 - ], - [1, 2343, 25394], - [0, 25396, 25397, 25398, 2399], - "@diahkomalasarinpm/odio-facilis-beatae", - [0, 4729, 4200, 1082, 3456, 1675, 1525, 1084, 3527, 2628, 1874, 37449], - [ - 0, 1700, 1429, 2323, 1192, 3190, 1177, 2205, 3698, 1593, 1637, 3561, 2924, 2098, 3758, 1461, 1628, 2338, 3191, - 4027, 53, 1436, 4677, 1165, 1178, 1195, 3060, 4307, 97, 3057, 37457, 3618, 22651, 87, 37453, 4681, 90, 1210, - 1959, 37458, 4409, 37451, 37454, 83, 71, 5757 - ], - [0, 2924, 6374, 4674, 5260, 4202, 24095, 9816, 33126, 37460, 16660], - [1, 2343, 25400], - [0, 25401, 25402, 25405, 2399], - [0, 1842, 3932, 1511, 1525, 2727, 1615, 2704, 4689, 37466, 13077, 29067, 37449, 37468], - [0, 37472], - [3, 1754, 13], - "qjobs", - [0, 2924, 200, 4989, 1237, 6996, 5122], - "unit-reporter", - [2, 25077, 25406], - "cript-", - [2, 25408, 15473], - [2, 2916, 25409], - "timer-shim", - [0, 25414, 25417, 25418, 34352], - [1, 2343, 25419], - [0, 3144, 1511, 3173, 3440, 3781, 4121], - "spectacular", - "execution", - [ - 0, 2934, 2611, 1192, 2020, 2675, 1622, 1177, 38, 1544, 1701, 2026, 2078, 2203, 2924, 1894, 1610, 1699, 4342, 48, - 442, 470, 1193, 91, 53, 4874, 2092, 2990, 3400, 2099, 11485, 6494, 192, 1953, 27928, 37480, 4257, 87, 23531, - 7746, 37482, 1939, 1942, 1938, 20281, 1982, 1895, 1955, 19344, 5467 - ], - [0, 2924, 2663, 5001], - [0, 25431, 25433, 2514, 34352], - [1, 2343, 25567], - "os-shim", - [2, 25423, 25430], - "@types/x", - "karma-p", - "karma-plugin", - "reprocessor", - [2, 25424, 25426], - [3, 14927, 12], - [2, 25428, 25200], - "xhashjs", - [ - 0, 4729, 3445, 32876, 34228, 2026, 33507, 1457, 9241, 1511, 11993, 7798, 1536, 2215, 4150, 4121, 37490, 37491, - 37493, 6494, 37494, 37499, 37500, 37503, 2664, 4679, 1549, 33189, 37505 - ], - [2, 25280, 25435], - [ - 0, 2611, 1192, 695, 1082, 2020, 2675, 37507, 3144, 1622, 1177, 3127, 4039, 1544, 1593, 2924, 1894, 3758, 4342, - 48, 1193, 1628, 2659, 91, 53, 4874, 2969, 2990, 3400, 4677, 1195, 4307, 4224, 18052, 4689, 97, 192, 1953, 3923, - 9252, 27928, 4257, 87, 23531, 22102, 4523, 7806, 8780, 1939, 1942, 2651, 12837, 68, 37508, 37513, 1938, 20281, - 1895, 2780, 83, 5467, 13052 - ], - [1, 2343, 25439], - "suscipit-assumenda-a-assumenda", - [2, 2877, 15473], - "browser-stack", - [2, 25280, 25442], - [0, 25440, 25441, 25444, 2523], - [0, 4294, 2626, 37503], - [0, 3421, 2899, 4193, 1177, 2026, 2924, 1894, 4342, 1955, 4679], - "vitae-sequi-voluptas-a", - [2, 25445, 25446], - [0, 2924, 11498, 6609, 1237, 37523, 37525, 2663, 2026], - [3, 25438, 13], - "oluptatibus-vero-magni-rerum", - [2, 29825, 29840], - [1, 2343, 25449], - [0, 25450, 25451, 2514, 2523], - [0, 4388, 4695], - [ - 0, 841, 4874, 4891, 37531, 7858, 1584, 1700, 1177, 37534, 1915, 2092, 2675, 2990, 3150, 3697, 1894, 37535, 89, - 4307, 4484, 91, 1984, 2924, 4689 - ], - [1, 2343, 25459], - "ibrik", - "ffee-preprocessor", - [2, 23574, 25454], - "karma-r", - "equirejs", - [2, 25456, 25457], - [0, 25463, 25464, 25465, 2523], - "karma-re", - "porter", - [2, 25460, 25461], - [0, 2117, 21520, 5898], - [0, 2675, 4484, 37542, 2924, 1894, 91, 37544, 1006], - [0, 2924, 1698], - [1, 2343, 25467], - [0, 0, 25475, 25480, 2523], - "Safari", - " Tech Preview", - [2, 25468, 25469], - "TechPreview", - [2, 25468, 25471], - "IE", - "Chrome", - [0, 1429, 1177, 1938, 2899, 3203, 3275, 2924], - "Chrome Canary", - "Chrome ", - "Headless", - [2, 25477, 25478], - [0, 2924, 13382, 202, 6374, 11053], - "Chromium", - [1, 2343, 25483], - [0, 0, 25486, 25487, 2523], - "Firefox", - "Opera", - [ - 0, 1192, 1177, 2203, 2924, 2759, 1894, 1596, 442, 4227, 91, 5087, 1953, 27928, 1939, 1942, 33002, 1938, 20281, - 1982, 1895, 1955, 19344 - ], - [0, 2924, 4227], - [1, 2343, 25489], - [0, 25491, 0, 25494, 2537], - [2, 25764, 25765], - [0, 2215, 1615, 4449, 3524], - "chai-fs", - "os-homedir", - [0, 12197, 29726], - [1, 2343, 25496], - [0, 25497, 25498, 25499, 4139], - [0, 1401, 1676, 1856, 37568, 34639, 37569], - [0, 1400, 2323, 2447, 2839, 2272, 4389], - [0, 4699, 14609, 21302, 37572, 37573, 6645, 6761, 20863, 36, 5576], - "@asdfgertyjhnpm/a-unde-explicabo-eaque", - "firefox", - [1, 2343, 25503], - [0, 25504, 25505, 25506, 2523], - [ - 0, 37578, 37579, 37581, 37585, 37586, 37587, 37589, 37592, 37594, 37595, 37598, 37600, 1676, 1869, 37602, 37603, - 37606, 37609, 37612, 37613, 37615, 3171, 3441, 37617, 3756, 25990, 37619, 3781, 25996, 34383, 37623, 35299, - 37624, 37628, 37631, 37633, 37636, 37637, 37638 - ], - [ - 0, 53, 68, 5712, 87, 37641, 1090, 37644, 25992, 37646, 1290, 37647, 1398, 37648, 1618, 3588, 1177, 1903, 1938, - 1953, 1958, 2099, 37650, 3486, 37652, 3767, 4092, 4131, 4151, 15039, 20496, 4387, 4389, 4409, 15046, 2924, 4677, - 37654 - ], - [0, 37656, 37657, 1764, 37658, 37659, 37663, 37665, 22115, 37666, 37616, 37667, 15247, 37668, 4702], - [1, 2343, 25508], - [0, 25509, 25512, 25515, 2399], - [0, 1326, 3263], - [2, 25511, 25517], - [3, 25500, 16], - [0, 29569, 4384], - "adapter", - [2, 2877, 25513], - [0, 7734, 37674, 37675], - [1, 2343, 25518], - "nesciunt-molestias-reprehenderit-occaecati", - [0, 25519, 25520, 2514, 2523], - [0, 2026, 3368, 4545], - [0, 1506], - [3, 25395, 19], - [1, 2343, 25523], - [0, 0, 25524, 2514, 2537], - [0, 1429, 2297, 2899, 1177, 4042, 1894, 2878, 2900, 1159, 3734, 37688, 2881, 2889, 2912, 2895, 13867, 19910], - [1, 2343, 25526], - [0, 0, 25527, 25528, 2487], - [0, 4652, 2070, 10679, 4030, 2856, 37693, 2272, 3188, 37694, 3460, 1317, 26825, 4535, 1389, 3736, 37320], - [0, 37696, 37698, 14833, 1862, 6567, 14834, 14835, 4706, 1149, 14629, 6804], - [1, 2343, 25530], - [0, 25531, 6538, 2514, 2523], - [0, 37703], - [1, 2343, 25533], - [0, 0, 25534, 25535, 2399], - [0, 13896, 1776, 2899, 3220, 37708, 37709], - [0, 6574, 29179], - [1, 2343, 25537], - [0, 25538, 25539, 25540, 4139], - [0, 37715, 13388, 1149, 2753, 37716, 37718, 3923, 18730, 4252, 20931, 4715], - [0, 48, 53, 87, 37721, 4874, 37722, 1148, 37724, 1177, 37725, 1192, 4039, 4238, 34395, 4431, 37727], - [0, 4709, 2942, 6807, 30124, 21111, 1409, 3533, 3079, 2041, 1781, 3101], - [1, 2343, 25542], - [0, 25543, 25545, 25546, 2487], - [0, 37735, 3429, 20931, 4715], - [3, 2910, 12], - [0, 37739, 37741, 1429, 1177, 1954, 2899, 4039, 7734], - [0, 4709, 37743, 37744, 37745], - [1, 2343, 25548], - [0, 25549, 25551, 25552, 2537], - [0, 37716, 3923, 20931], - "safari", - [0, 4874, 1148, 1173, 1264, 1693, 1177, 37721, 2899, 3421, 4039, 37727], - [0, 4709, 4714, 37752], - [1, 2343, 25554], - [0, 25556, 25559, 25560, 2537], - "global-agent", - [0, 37758, 2070, 1209, 37759, 4431, 37760], - "al-agent", - [2, 4865, 25557], - [0, 1429, 2151, 2759], - [0, 1370, 3383, 6355, 14510, 1508, 4796], - [1, 2343, 25562], - [0, 0, 16487, 25563, 2443], - [0, 6940, 37767, 3924, 37769, 16580, 37770, 7295, 2585, 4718, 4717, 28734, 4719], - [1, 2343, 25565], - [0, 0, 9264, 25566, 4139], - [0, 4718, 4719, 5547, 1671, 6922], - [0, 25576, 25577, 25578, 34352], - [1, 2343, 25597], - "karma-br", - "ief-reporter", - [2, 25569, 25570], - "sourcemap-", - [2, 21536, 8754], - [2, 25572, 25573], - [2, 12612, 25574], - [0, 16781, 3714, 10761, 4695, 37780], - [0, 4874, 4891], - [0, 37783, 37784, 2924, 37786, 20164, 37788, 37789, 37790], - [1, 2343, 25580], - [0, 25581, 25582, 25583, 2537], - [0, 1110, 4290, 4294], - [0, 1166, 1437, 1596, 6474, 3421, 4481, 1906], - [ - 0, 4719, 6940, 4720, 6980, 7152, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 1871, 6621, 1867, 6983, 6616, - 7244, 4166, 4744, 3073, 6807, 6876, 2585 - ], - [1, 2343, 25585], - [0, 25586, 6538, 25587, 2487], - [0, 19187, 4174], - [0, 37808, 29999], - [1, 2343, 25589], - [0, 0, 25590, 25593, 2537], - [0, 1317, 1401, 1177, 1895, 1955, 2203, 2899, 3421, 1894, 34639], - [2, 8652, 2013], - "keydown", - [0, 7299, 7172, 6761, 6729, 7057, 6145], - "keyup", - "metakey", - "keyname", - [0, 25599, 25600, 25601, 34352], - [ - 0, 2342, 2402, 2457, 2488, 2531, 2540, 2540, 2630, 2488, 2688, 2488, 2698, 2737, 2488, 2775, 2799, 2818, 2840, - 2939, 3016, 3110, 3207, 3247, 3279, 3307, 3448, 3515, 3593, 3631, 3723, 3782, 3844, 3879, 3908, 3929, 3952, - 4006, 4016, 4096, 4154, 4203, 4241, 4263, 4286, 4308, 4331, 4348, 4417, 4444, 4476, 4506, 4528, 4573, 4655, - 4673, 4700, 4743, 4813, 4953, 4994, 5004, 5007, 5013, 5016, 5019, 5023, 5028, 5031, 5034, 5037, 5041, 5044, - 5052, 5099, 5134, 5137, 5141, 5144, 5150, 5171, 5174, 5199, 5203, 5211, 5231, 5255, 5266, 5270, 5289, 5299, - 5289, 5333, 5360, 5373, 5379, 5437, 5486, 5493, 5516, 5544, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, - 5566, 5566, 5566, 5566, 5566, 5574, 5566, 5574, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5574, 5574, 5566, - 4286, 5566, 5566, 5578, 4286, 5574, 5566, 5566, 5566, 5566, 5566, 5566, 5574, 5574, 5574, 5580, 4286, 5566, - 5566, 4286, 5566, 4286, 5574, 5591, 5599, 5612, 5624, 5629, 5635, 4286, 5643, 5648, 5665, 5672, 5574, 5718, - 5723, 5566, 5566, 5566, 5578, 5566, 5566, 5566, 5566, 5566, 5578, 5566, 5566, 5566, 4286, 5727, 5566, 5566, - 5566, 5578, 5566, 5566, 5566, 5578, 5566, 5574, 5730, 5848, 5870, 5886, 5894, 5899, 5902, 5906, 5908, 5912, - 5919, 5965, 5985, 5992, 5999, 6050, 5566, 5566, 5566, 5566, 6069, 5566, 5566, 5566, 5566, 5578, 5574, 5566, - 5566, 5566, 5566, 5566, 5566, 5566, 5566, 4286, 5566, 6088, 6101, 6115, 6119, 6124, 6131, 6152, 6159, 6163, - 6172, 6179, 6184, 6187, 6193, 6201, 5566, 5580, 6206, 6210, 5578, 5574, 6219, 5299, 6222, 6227, 6232, 6236, - 6239, 6242, 6246, 6250, 6254, 6257, 6261, 6265, 6274, 6278, 6288, 6292, 6304, 6313, 6344, 6357, 6360, 6365, - 6368, 6402, 6406, 6410, 6416, 6427, 6431, 6440, 6444, 6483, 6535, 6555, 6559, 6571, 5299, 6612, 5299, 5635, - 5299, 6630, 6664, 6676, 6684, 6719, 6745, 6772, 6823, 6852, 6886, 6906, 6924, 6942, 6989, 7012, 7043, 7088, - 7112, 7136, 7139, 7143, 7160, 7187, 7207, 7237, 5566, 5566, 5574, 5566, 5574, 4286, 5566, 5566, 7257, 5566, - 5566, 5727, 5566, 4286, 5566, 5566, 5566, 5566, 5566, 5566, 7257, 5566, 5578, 5578, 5566, 5566, 5566, 7264, - 7271, 7278, 7294, 7307, 7323, 7327, 7332, 7338, 7343, 7348, 7357, 7363, 7368, 7373, 7380, 7385, 7391, 7396, - 7405, 7410, 7414, 7419, 7424, 7430, 7437, 4286, 4286, 5574, 7442, 7447, 7450, 5566, 5566, 5566, 5566, 5566, - 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5574, 5566, 5574, - 5566, 5566, 5566, 5566, 7452, 7457, 7462, 7473, 7478, 7483, 7488, 7493, 7498, 7502, 7506, 7510, 7513, 7516, - 7538, 7541, 7544, 7548, 7552, 7556, 7560, 7564, 7568, 7571, 7574, 7257, 7578, 7587, 7592, 7600, 7629, 7654, - 7694, 7698, 7702, 7711, 7736, 7756, 7767, 7772, 7777, 7782, 7802, 5566, 5566, 5566, 27071, 5574, 4286, 5578, - 5566, 5574, 5566, 5566, 27071, 4286, 7832, 7848, 7861, 7874, 5727, 7882, 7885, 7901, 7916, 7925, 7930, 7947, - 7953, 7960, 7965, 7968, 7972, 7977, 7981, 7984, 7987, 7991, 7996, 7999, 8004, 8008, 8012, 8015, 8020, 8024, - 8027, 8030, 8035, 8040, 8045, 8051, 8054, 8058, 8062, 8066, 8070, 7965, 8075, 8081, 8086, 8091, 8100, 8104, - 8106, 8128, 8143, 8178, 8195, 8207, 8213, 8223, 8227, 8234, 8237, 8242, 8258, 8266, 8270, 8281, 8289, 8311, - 8318, 8351, 5574, 8366, 8370, 8374, 8378, 8382, 8385, 8388, 8394, 8398, 8403, 8407, 8412, 8416, 8445, 8450, - 8455, 8460, 8463, 8465, 8467, 8470, 8473, 8478, 8481, 8485, 8487, 8490, 8493, 8497, 8500, 8502, 8507, 8517, - 8542, 8559, 8564, 8575, 8578, 8590, 8594, 8598, 8602, 8621, 8637, 8642, 8681, 8685, 8690, 8698, 8706, 8717, - 8725, 8731, 8759, 8783, 8796, 8812, 8815, 8833, 8844, 8854, 8857, 8865, 8867, 8872, 8104, 8872, 8874, 8879, - 8884, 8898, 8929, 8940, 8963, 8972, 8977, 8988, 8104, 8865, 8865, 8104, 7965, 7965, 8992, 8994, 8996, 9001, - 8996, 9003, 9014, 9018, 9022, 9027, 9032, 9037, 9042, 9050, 9058, 4286, 8706, 8865, 9063, 9068, 9079, 9084, - 8865, 9092, 9101, 9108, 9137, 9142, 9149, 9154, 9158, 9175, 9180, 9189, 8996, 9200, 9205, 9223, 9259, 9266, - 9275, 9285, 9290, 9298, 9306, 9349, 9372, 9386, 9389, 9392, 9411, 34415, 9438, 9445, 8872, 9467, 9522, 9528, - 9532, 9540, 9545, 8104, 9585, 9592, 9599, 9604, 8706, 5574, 9609, 9614, 9619, 9633, 9639, 9643, 9650, 9656, - 9664, 9668, 9672, 9683, 9690, 9696, 9701, 9709, 9717, 9727, 9754, 9758, 9763, 9798, 9822, 9831, 9882, 9886, - 9889, 9894, 9898, 9902, 9908, 9912, 9917, 9922, 9927, 9930, 10085, 10111, 10121, 10221, 10287, 10316, 10322, - 10329, 10334, 10341, 10359, 10362, 10379, 10385, 10391, 10411, 10421, 10433, 10437, 10440, 10449, 10453, 10457, - 10461, 10465, 5289, 10470, 10474, 10478, 10482, 10486, 10490, 10494, 10499, 10502, 10507, 10512, 10516, 10519, - 10524, 10529, 10532, 10537, 10542, 10547, 10552, 10558, 10561, 10566, 10571, 10577, 10582, 10585, 10589, 10610, - 10620, 10644, 5574, 10666, 10671, 10694, 10715, 10767, 10778, 10794, 10801, 10822, 10857, 10872, 10891, 10905, - 10910, 10919, 10928, 10953, 10967, 10980, 11001, 11012, 11023, 11030, 11044, 11050, 11058, 11062, 11090, 11099, - 11115, 11121, 11140, 11149, 34415, 11157, 11160, 11205, 11222, 11237, 11250, 11309, 11353, 11386, 11403, 11410, - 11427, 11447, 11458, 11460, 11464, 11468, 11474, 11491, 11495, 11505, 11511, 11529, 11541, 11545, 8992, 11549, - 11552, 8865, 11559, 11563, 8865, 11568, 11573, 11577, 11582, 11587, 8706, 11602, 11611, 11632, 11643, 11647, - 11652, 11657, 11661, 11665, 11670, 11675, 11679, 11683, 11688, 11693, 11698, 11703, 11707, 11712, 11717, 11721, - 11726, 11730, 11734, 11739, 11744, 11749, 11754, 11759, 11764, 11769, 11774, 11779, 11782, 11786, 11791, 11816, - 11822, 11826, 11831, 11845, 11850, 11855, 11860, 11872, 11888, 11902, 11913, 11915, 11920, 11949, 11957, 11965, - 11968, 11972, 5578, 11981, 11986, 11992, 11998, 12006, 12017, 12022, 12029, 12031, 12035, 12039, 12051, 12069, - 12098, 12109, 12114, 12138, 12146, 12150, 12156, 12174, 12211, 12225, 12238, 12250, 12256, 12261, 12266, 12272, - 7257, 12280, 12291, 12298, 12308, 12341, 12362, 12366, 12376, 12379, 12383, 12390, 12408, 12430, 12465, 12480, - 12484, 12488, 12493, 12497, 12502, 12506, 12511, 12516, 12521, 12527, 12531, 12538, 12543, 12548, 12553, 12559, - 12563, 12117, 12573, 12579, 12584, 12595, 12623, 12628, 12633, 12638, 12643, 12647, 12657, 12664, 12670, 12673, - 12683, 12697, 12765, 12770, 12805, 12819, 12828, 12843, 12855, 12859, 12863, 12868, 12873, 12876, 12885, 12891, - 12897, 12903, 12919, 12945, 12949, 12955, 8992, 12985, 13000, 13010, 13015, 5574, 13020, 13026, 13032, 13044, - 13074, 13111, 13147, 13156, 13173, 13211, 13246, 13251, 13255, 13270, 13292, 8027, 8027, 13299, 13308, 13315, - 13323, 13331, 13341, 13348, 13353, 13360, 13366, 13376, 13383, 13398, 13409, 11913, 13423, 13430, 13434, 13439, - 13450, 13469, 13534, 13541, 13561, 13577, 13585, 13595, 13601, 5566, 13606, 13622, 13629, 13636, 13642, 13646, - 13650, 13660, 13677, 13683, 13686, 13700, 13706, 13715, 13720, 13727, 13734, 13743, 13749, 13762, 13782, 13794, - 13801, 8706, 13808, 13819, 5574, 13826, 13854, 13863, 13886, 13902, 13906, 13911, 11913, 13919, 13932, 13937, - 13940, 13946, 13950, 13955, 13960, 13966, 13971, 8872, 13975, 13978, 13989, 13992, 14002, 14007, 14015, 14019, - 14032, 5727, 14048, 14054, 14061, 14068, 14071, 14075, 14088, 14095, 14101, 14110, 14115, 7930, 14120, 14127, - 7930, 8865, 14138, 14142, 14147, 14150, 14155, 14172, 14202, 14232, 14236, 14250, 14258, 14266, 14272, 14279, - 14285, 14289, 14294, 14298, 14304, 14313, 14322, 14327, 14330, 14340, 14346, 14351, 14360, 14363, 14368, 14377, - 14383, 14391, 14397, 14402, 14411, 14424, 14437, 14470, 14498, 14513, 14522, 14528, 14532, 14537, 14542, 14598, - 14612, 14625, 14633, 14650, 14659, 14665, 14703, 14725, 14733, 14742, 14752, 14762, 14766, 14778, 14788, 14793, - 14797, 14802, 14806, 14811, 14815, 14820, 14825, 14841, 14851, 14859, 14865, 14876, 14882, 14887, 14893, 14899, - 14906, 14912, 14916, 14920, 14929, 14936, 14948, 14956, 14965, 14974, 14987, 14996, 15004, 15049, 15066, 15074, - 15081, 15091, 15098, 15109, 15118, 15123, 15142, 15147, 15154, 15158, 15166, 15171, 15178, 15184, 15189, 15198, - 15205, 15211, 15216, 15226, 15233, 15241, 15249, 15255, 15265, 15274, 15284, 15296, 15299, 15313, 15325, 15330, - 15335, 15343, 15350, 15357, 15364, 15369, 15378, 15382, 15388, 15394, 15404, 15410, 15416, 15430, 15435, 15443, - 15456, 15503, 15517, 15521, 15528, 15542, 15564, 15589, 15628, 15640, 15650, 15655, 15662, 15727, 15732, 11913, - 8872, 15737, 8872, 15740, 15749, 15752, 15758, 15766, 15780, 15785, 15806, 15811, 15819, 15824, 15829, 8706, - 15835, 15845, 15851, 15857, 15860, 15865, 15868, 15895, 15901, 15914, 15919, 8994, 8872, 15923, 15934, 15939, - 15943, 15947, 8706, 15952, 15959, 15966, 15971, 15975, 15981, 15987, 15993, 16011, 16017, 16024, 16029, 16034, - 16038, 16043, 16047, 16051, 16059, 16067, 5574, 16072, 16084, 16098, 16103, 16119, 16125, 16131, 16135, 16139, - 16155, 16158, 16164, 16173, 16177, 16185, 16192, 16197, 16203, 16208, 16213, 5727, 16217, 16222, 16227, 16241, - 16253, 16283, 16287, 16292, 16298, 5574, 16303, 16312, 16318, 16326, 16332, 16335, 5578, 16338, 16346, 16353, - 16357, 16362, 8996, 16367, 16371, 16377, 16383, 16392, 16406, 16413, 16419, 16428, 16437, 16451, 16457, 16464, - 16468, 16472, 16489, 16496, 16500, 16507, 4286, 16516, 4286, 16522, 16538, 16541, 16548, 16552, 16567, 16586, - 16592, 16616, 16624, 16633, 16652, 16665, 16669, 16677, 16680, 16685, 16698, 16704, 16707, 16717, 16732, 16756, - 16764, 16788, 16797, 16802, 16812, 16816, 16834, 16846, 16849, 16864, 16871, 16883, 16890, 16896, 16902, 16907, - 16913, 16924, 16929, 16942, 16948, 16958, 16963, 16970, 16975, 16979, 16985, 16996, 17004, 17015, 17026, 17032, - 17038, 17053, 17061, 17066, 17072, 17079, 17087, 17105, 17117, 17124, 17135, 17139, 17145, 17152, 17156, 17161, - 17172, 17177, 17187, 17200, 17207, 17226, 17230, 17236, 17246, 17254, 17261, 17268, 17284, 17292, 17325, 17334, - 17341, 17347, 17350, 17361, 17386, 17419, 17430, 17433, 17443, 17451, 17465, 17472, 17482, 17489, 17505, 17511, - 17518, 17524, 17533, 17541, 17548, 17555, 17560, 8104, 8865, 8992, 17569, 17574, 8865, 17588, 17598, 17604, - 17611, 17633, 17654, 17685, 17719, 17741, 17745, 17749, 17759, 17773, 17777, 17781, 17789, 17795, 17799, 17809, - 17815, 17821, 17828, 17839, 17844, 17856, 17862, 17868, 17871, 17879, 17886, 17891, 17937, 17952, 17955, 17958, - 17961, 17967, 17970, 17980, 17987, 18013, 18015, 18024, 18027, 18033, 18039, 18053, 18058, 18064, 18067, 18077, - 18083, 18086, 18091, 18095, 18099, 18107, 18117, 18122, 18128, 18134, 18140, 18149, 18154, 18160, 18165, 18169, - 8872, 18178, 18188, 18194, 18202, 18208, 18213, 18218, 18223, 18242, 18247, 18262, 8865, 18270, 18274, 18293, - 18298, 18303, 18307, 18311, 18366, 18399, 18404, 18410, 18418, 18441, 18449, 18453, 18466, 18469, 18472, 8872, - 18478, 18492, 18507, 18530, 18538, 5574, 18543, 18548, 18556, 18560, 18588, 18604, 18608, 18623, 18625, 18631, - 18650, 18653, 18665, 18676, 18682, 18724, 18755, 18781, 18808, 18842, 18847, 18850, 18874, 18882, 18893, 11458, - 8865, 18899, 18911, 18915, 18919, 18923, 18929, 18934, 18939, 18946, 18949, 18955, 18960, 18972, 18975, 18999, - 19010, 19014, 19023, 19027, 19032, 19039, 19063, 19085, 19090, 19104, 19110, 19115, 19134, 11913, 19140, 8865, - 19142, 19149, 19154, 19159, 34415, 19165, 19174, 19191, 19200, 19215, 19233, 19239, 19248, 19255, 19260, 7965, - 19268, 19275, 19279, 19290, 5578, 19293, 19298, 19305, 19323, 19329, 19341, 19346, 19356, 19362, 19367, 19372, - 19379, 19387, 19391, 19394, 19398, 19410, 19420, 19427, 34415, 19432, 19452, 19456, 19460, 19483, 19487, 19501, - 19508, 19518, 19532, 19543, 19550, 19561, 19594, 19600, 19633, 19643, 19654, 19660, 19662, 19667, 19674, 19680, - 19685, 19694, 19699, 19703, 19714, 19718, 19723, 19738, 19743, 19752, 19765, 19772, 19781, 19789, 19793, 19804, - 19809, 19814, 5580, 19817, 19822, 19832, 19846, 19854, 19857, 19868, 19873, 19880, 19887, 19891, 19897, 19901, - 19916, 19924, 19929, 19933, 19936, 19952, 19960, 19969, 19979, 19985, 19994, 20002, 20007, 20022, 20027, 20036, - 20041, 20053, 20058, 20067, 20071, 20079, 20087, 8872, 20094, 20101, 20109, 8872, 20114, 20125, 20129, 20134, - 20141, 20148, 20155, 20157, 20161, 20166, 20177, 20196, 20209, 20217, 20225, 20233, 20236, 20240, 8865, 20249, - 20255, 20260, 20270, 20277, 20287, 20292, 20297, 20302, 20310, 20318, 20323, 20337, 20345, 20358, 20363, 20381, - 20388, 20391, 20397, 20404, 20411, 20431, 20440, 20456, 20462, 20487, 20498, 20503, 20509, 20512, 20532, 20555, - 20560, 20569, 20579, 20585, 20591, 20596, 20603, 20605, 20608, 20615, 20617, 20629, 20766, 8872, 20770, 20775, - 20780, 20783, 20787, 20792, 20799, 20806, 20810, 20814, 20818, 20860, 20867, 27071, 20880, 20900, 8872, 20915, - 20926, 20936, 20945, 20954, 20961, 20965, 20971, 20976, 20988, 20994, 21005, 21010, 21018, 21027, 21061, 21065, - 21070, 21078, 21083, 21088, 21092, 21103, 21113, 21126, 21132, 21139, 21154, 21170, 21184, 21192, 21197, 21202, - 21205, 21207, 21209, 21212, 21205, 21217, 21220, 21225, 21232, 21238, 21241, 21247, 21251, 21256, 21258, 21262, - 21266, 21271, 21275, 21301, 21311, 21316, 7257, 21320, 21325, 21331, 21336, 21344, 21349, 21356, 21362, 21368, - 21376, 21391, 21400, 21410, 21415, 21422, 21425, 21431, 21435, 21446, 21453, 21462, 21472, 21475, 21489, 21494, - 21503, 21511, 21517, 21524, 21530, 21534, 21546, 21553, 21558, 21565, 21589, 21598, 21612, 21615, 21628, 21634, - 21652, 21670, 21674, 21690, 21694, 21706, 21711, 21717, 21724, 21729, 21739, 21744, 21755, 21769, 21774, 21780, - 21784, 21787, 21794, 21799, 21805, 5566, 21811, 21813, 21818, 21824, 21829, 21838, 21842, 21848, 21853, 21859, - 21864, 21870, 21874, 21878, 21882, 21887, 21892, 21899, 21904, 21909, 5574, 21914, 21919, 21923, 21925, 21932, - 21938, 21949, 21954, 21959, 21963, 21968, 21975, 21985, 21989, 21998, 22003, 22012, 22017, 22021, 22026, 22030, - 22040, 22045, 22050, 22069, 22077, 22082, 22086, 22097, 22105, 22112, 22119, 22125, 22131, 22136, 22141, 22149, - 22154, 22159, 22161, 22171, 22173, 22177, 22184, 22187, 22194, 22200, 22206, 22210, 22215, 22225, 22233, 22238, - 22243, 22252, 22259, 22262, 22266, 22271, 22276, 22284, 22288, 22299, 22307, 22311, 22318, 22323, 22328, 22335, - 22340, 22345, 22350, 22355, 22364, 22373, 22384, 22389, 22394, 22399, 22406, 22413, 4286, 22419, 22424, 4286, - 22433, 22444, 22450, 22456, 22461, 22469, 22474, 22480, 22484, 22490, 22494, 22508, 22517, 22527, 22532, 22538, - 22542, 22547, 22551, 22560, 22566, 22572, 22578, 22585, 22592, 22598, 22605, 22609, 22614, 22619, 22624, 22629, - 22634, 22644, 22650, 22654, 22659, 22663, 22669, 22677, 22681, 22685, 5580, 22690, 22693, 22702, 9001, 11913, - 22710, 22717, 22723, 22731, 34503, 22737, 21998, 22740, 22747, 8872, 22751, 22757, 22761, 22765, 22777, 22788, - 22794, 22802, 22806, 22810, 22816, 22825, 22831, 22836, 22852, 22859, 22866, 22870, 5574, 22878, 22884, 22890, - 22893, 22898, 22905, 22911, 22171, 22917, 22927, 22940, 22945, 8872, 22951, 8872, 22955, 22964, 21489, 22981, - 20615, 8865, 22988, 23002, 23008, 23014, 23018, 23022, 23028, 8865, 23033, 23037, 23047, 8706, 23087, 23129, - 23147, 11913, 23152, 23159, 23171, 23176, 23182, 23195, 23199, 23204, 23209, 23213, 23217, 8865, 8872, 23222, - 23228, 8706, 23231, 23233, 23242, 23265, 23272, 23284, 23297, 23315, 23320, 23327, 8104, 23334, 23346, 23353, - 8872, 23364, 23369, 23374, 23379, 23381, 23385, 23418, 23424, 23427, 23431, 23458, 23463, 23474, 23484, 23487, - 23491, 23495, 23501, 23506, 23510, 23515, 23521, 23532, 23546, 23550, 23555, 23567, 23577, 23583, 23589, 23594, - 8706, 23610, 8865, 23614, 23620, 23627, 23633, 23231, 8992, 23642, 8872, 23655, 23662, 23672, 23677, 23694, - 23701, 23713, 23718, 23731, 23735, 8992, 23746, 23761, 23763, 23770, 23772, 34503, 23776, 23781, 23788, 23792, - 23796, 23804, 23807, 23821, 23825, 23835, 23840, 23846, 23850, 23854, 23861, 23866, 23882, 23887, 23893, 23903, - 22159, 23940, 23946, 23954, 23963, 23972, 23983, 23988, 23997, 24001, 24008, 24014, 8725, 24021, 24026, 24031, - 24040, 24048, 24052, 24055, 24060, 24063, 24067, 24074, 24086, 24099, 24104, 24108, 24111, 24124, 8872, 11458, - 24132, 24143, 7965, 24146, 24149, 24170, 24176, 24180, 24190, 24196, 24200, 24207, 24216, 24228, 24260, 24284, - 24296, 24304, 24308, 24314, 24323, 24361, 24368, 24375, 24380, 24407, 24413, 24422, 24426, 24431, 24436, 24444, - 24448, 24457, 24461, 24468, 24475, 24478, 24481, 24489, 24497, 24500, 24505, 24510, 24516, 24527, 24532, 24546, - 24551, 24555, 24567, 24589, 24605, 24611, 24614, 24628, 24635, 24639, 24644, 24650, 24658, 24662, 24670, 8706, - 24673, 24677, 24682, 24685, 24695, 24700, 24704, 24709, 5727, 24718, 24736, 24744, 24749, 24756, 24758, 24764, - 24769, 24773, 24790, 24817, 24835, 24844, 24866, 24911, 24965, 25013, 7930, 25037, 25045, 25052, 25064, 25080, - 25095, 25100, 25111, 25120, 25134, 25152, 25174, 25185, 25198, 25208, 25214, 25225, 25229, 25242, 24195, 25265, - 25271, 25281, 25287, 25293, 25263, 25308, 25314, 25318, 25322, 25326, 25331, 25337, 25342, 25357, 25368, 11458, - 7930, 23147, 25378, 8854, 11458, 25387, 25393, 25399, 25302, 25413, 25434, 25448, 25452, 25466, 25482, 25488, - 25495, 25502, 25507, 25516, 25522, 25525, 25529, 25532, 25536, 25541, 25547, 25553, 25561, 25564, 25420, 8027, - 25579, 4286, 25584, 25588, 25568, 25602, 25610, 25616, 25621, 25641, 25644, 25647, 25656, 25662, 25672, 25680, - 25686, 25695, 25702, 25706, 25713, 25722, 25729, 25734, 7257, 25738, 25746, 25751, 25756, 25768, 25773, 25778, - 25787, 25800, 25808, 25818, 25830, 25834, 25859, 25869, 25883, 25905, 25909, 25916, 25934, 25940, 25953, 25961, - 25976, 25991, 26003, 26019, 26023, 26031, 26038, 26042, 26047, 26056, 26063, 26068, 26076, 26080, 26088, 26102, - 26115, 26134, 26140, 26148, 26152, 26162, 26167, 5299, 5299, 5299, 5635, 5299, 26191, 26191, 26195, 26200, - 26214, 26221, 26229, 5635, 5635, 5299, 26238, 5574, 4286, 5574, 5578, 26243, 5574, 5580, 26250, 26255, 26266, - 26270, 26277, 26281, 26284, 26293, 26297, 26303, 26309, 26313, 26317, 26321, 26327, 26331, 26336, 26341, 26348, - 26356, 26363, 26369, 26381, 26389, 26395, 26405, 26452, 26476, 26498, 26502, 26518, 26523, 26527, 26538, 26545, - 26558, 26561, 26582, 26589, 26594, 6236, 26599, 26602, 26623, 26638, 26642, 26650, 26656, 26667, 26672, 26691, - 26701, 26724, 26730, 26735, 26745, 26751, 26758, 26778, 26785, 26791, 26797, 26803, 26814, 26820, 26826, 26831, - 26841, 26853, 26860, 26864, 26879, 26889, 26893, 26899, 5727, 26912, 26928, 26948, 26953, 26957, 26961, 11797, - 26967, 26998, 27004, 27011, 27013, 26994, 27027, 27031, 27021, 27035, 27041, 27044, 27048, 27051, 27055, 27059, - 27065, 27038, 27079, 27088, 27097, 27121, 27128, 27132, 27140, 27144, 27148, 27153, 27159, 27172, 27179, 27183, - 27192, 27199, 27207, 34417, 27211, 27215, 27218, 27229, 27245, 27250, 27270, 27279, 27288, 27296, 27306, 27310, - 27331, 27351, 27364, 27369, 27373, 27382, 27397, 27402, 27413, 27417, 27422, 27434, 27437, 27453, 27466, 27516, - 27528, 27536, 27545, 27581, 27586, 27589, 27595, 27598, 27604, 27611, 27618, 27627, 27665, 27672, 27677, 27704, - 27734, 27748, 27755, 27770, 27889, 27925, 27935, 27947, 27956, 27973, 27979, 27988, 27996, 28003, 28013, 28016, - 28020, 28031, 28054, 28063, 28071, 28083, 28097, 28105, 28108, 28113, 28127, 28140, 28160, 28173, 28186, 28213, - 28218, 28252, 28281, 28295, 28298, 28302, 28308, 28316, 28319, 28328, 28334, 27004, 28351, 28410, 28431, 28451, - 26701, 28520, 28530, 28545, 28552, 28562, 28584, 28602, 28630, 28663, 28668, 28683, 28700, 26961, 28759, 28765, - 28765, 28328, 28774, 28808, 28328, 28822, 28833, 28836, 28851, 28871, 28918, 28995, 29052, 29068, 28334, 29078, - 29164, 29164, 29172, 26961, 29180, 29217, 29230, 29272, 29275, 29289, 29337, 29473, 29496, 29523, 29548, 29613, - 29705, 29734, 29871, 29982, 30002, 30185, 30205, 30250, 30474, 30500, 30528, 30557, 30598, 30615, 30782, 30800, - 30827, 30910, 30931, 30938, 31020, 31216, 31274, 31387, 31487, 31513, 31532, 31630, 31664, 31709, 31738, 31753, - 31758, 31763, 31785, 31817, 31853, 31927, 31938, 31984, 32340, 32496, 32532, 32547, 28833, 32556, 32748, 32781, - 32809, 32862, 32887, 32921, 32936, 33045, 33079, 33092, 33104, 33109, 33218, 31274, 33225, 33240, 33248, 33279, - 33281, 33375, 33478, 33484, 33501, 33563, 33630, 33670, 33696, 33719, 33773, 33781, 33788, 33814, 33833, 33858, - 33866, 33906, 33924, 33933, 33956, 33961, 34004, 34021, 34047, 34059, 34075, 34091, 34101, 34108, 26961, 28328, - 34122, 34133, 34142, 34147, 34160, 34185, 34195, 34211, 34214, 34249, 34253, 34258, 34296, 34325, 34330, 34333, - 34336, 34341, 34348, 28663, 34353, 34388, 27071, 34420, 19603, 34444, 34450, 34454, 34456, 34460, 34469, 34488, - 34499, 34506, 34454, 34526, 34535, 34544 - ], - [0, 6870, 1362, 1437, 1448, 1676, 37818, 2754, 2757, 3427, 6530, 37821, 37823], - [0, 1596, 2759, 2899, 3202, 16112, 4039, 4193, 4255], - [0, 5592, 1448, 37826, 15514, 6956, 5122], - [1, 2343, 25603], - [0, 25604, 25606, 25608, 4139], - [0, 2202, 37833, 37834, 1695], - "@keyv/serialize", - [0, 2133, 3697, 4387, 4389], - "keep", - [0, 4731, 27, 4738, 5038, 1389], - "timekeeper", - [1, 2343, 25612], - "key-value", - [0, 25613, 25614, 25615, 2487], - [0, 20689, 37845, 37846, 4718, 37844, 37841, 37843], - [0, 18225, 1082, 2832, 2899, 4193, 1177, 37853, 1330, 1787, 1525, 91, 4874, 37852, 37850, 1937, 17585, 37856], - [0, 28860, 28861, 3354, 37858, 37859, 20707, 1641, 37860, 37861, 37862, 26666, 21604], - [1, 2343, 25617], - [0, 25618, 25619, 25620, 2537], - [0, 4113], - [ - 0, 1175, 1195, 1264, 28713, 1387, 37868, 37869, 35573, 1503, 1596, 1610, 1177, 37870, 2759, 2765, 1192, 2774, - 7060, 3363, 3400, 3725, 91, 37871, 2282, 2924 - ], - [ - 0, 37873, 6523, 676, 6671, 1781, 24586, 37874, 37875, 37880, 37882, 20398, 20400, 4734, 4735, 353, 8535, 37883, - 22180, 6270, 37884, 37885, 37887, 1644, 57, 7119 - ], - [1, 2343, 25622], - [0, 25626, 25630, 25637, 4139], - "escalade", - "pg-connection-string", - "tarn", - [0, 4113, 4736], - [3, 5536, 10], - [2, 25627, 4945], - [2, 11836, 4246], - [0, 1596], - "-in-order", - [2, 1436, 25631], - "oracledb", - "pg-query-stream", - "tedious", - "toxiproxy-node-client", - [0, 6523, 1781], - "postgres", - "cockroachdb", - [2, 3766, 9381], - [1, 2343, 25642], - [0, 25643, 15925, 2514, 2537], - [0, 2607, 2812, 37899], - [1, 2343, 25645], - [0, 0, 10710, 25646, 2537], - [0, 6523, 4736], - [1, 2343, 25653], - "smol-toml", - "summary", - [3, 8555, 11], - [2, 25650, 1851], - [2, 4764, 25651], - [0, 0, 25654, 25655, 2537], - [0, 1192, 4753, 37908, 1177, 3363, 37909, 1894, 2188, 3400, 1926, 16638, 1895, 1955], - [0, 12616, 965, 6523, 57, 5284, 37911, 37912], - [1, 2343, 25657], - [0, 0, 0, 25659, 2537], - "analyze", - [0, 4731, 6662], - "dead code", - "entropy", - [1, 2343, 25665], - "maintenance", - "members", - [0, 25666, 25668, 25670, 2537], - [ - 0, 3157, 1144, 1177, 2205, 2203, 1894, 2185, 4507, 3170, 1595, 19595, 3505, 2191, 1953, 29490, 1920, 4523, - 25803, 1958, 1982, 13789, 1895, 24166, 32525, 1955, 7681, 19344, 1011, 15290, 22937, 19492 - ], - "unreferenced", - [0, 3377, 1166, 2020, 2675, 1680, 13786, 2990, 5601, 192, 15600, 8778, 3390, 3708, 5467, 17312], - "unresolved", - [ - 0, 13326, 200, 1906, 19347, 19350, 19353, 1501, 19269, 590, 671, 9654, 2272, 19270, 1177, 2649, 19271, 4255, - 15717, 4354, 16790, 19273, 18443, 2446, 2869, 5284, 91 - ], - "tldts", - [1, 2343, 25673], - [0, 0, 25674, 25676, 2537], - [0, 10780, 1854, 37928, 2899], - "lodash.sortby", - [0, 4739, 6523], - "explorer", - "opera", - "samsung-internet", - [1, 2343, 25681], - [0, 25683, 25684, 25685, 2399], - "uc-browser", - [0, 5663], - [0, 48, 53, 37936, 83, 87, 37937, 1198, 37940, 37941, 1389, 1177, 2765, 2835, 3421, 37945], - [0, 1108, 6961, 6607, 3656], - [1, 2343, 25690], - "stream-co", - [2, 25687, 11532], - [2, 25521, 25692], - [0, 25691, 25693, 25694, 2537], - [0, 1525, 7606], - "praesentium-accusamus-maiores-autem", - [0, 3421, 1676, 2899, 1177, 1596, 4535, 1389], - [0, 20215, 4741, 2574, 36796, 6847, 1965, 1867, 10368, 7131, 1155, 1936, 14419, 37953], - [1, 2343, 25697], - "delegates", - [0, 0, 25698, 25701, 2537], - [0, 37958, 1091, 3539, 4094, 4733], - "http-assert", - [2, 17007, 23905], - [0, 37960, 37963, 37968, 37971, 37972, 6649, 37973, 2218], - [1, 2343, 25703], - [0, 0, 9264, 25704, 2399], - [0, 2051, 1698, 14690, 15767, 3048, 4552], - [3, 21482, 15], - [1, 2343, 25708], - "gen-", - [0, 0, 25711, 25712, 2523], - "esm-wrapper", - [2, 25707, 25709], - [ - 0, 8648, 4856, 5245, 37983, 6494, 37984, 4865, 13204, 6503, 4874, 37987, 4891, 9241, 1009, 1011, 1429, 1610, - 1693, 1177, 1942, 2026, 28930, 2070, 2832, 2899, 3257, 3339, 3421, 4230, 4232, 4469, 91, 4577, 2924, 4677, 4729, - 37988 - ], - [0, 200, 6876, 7201, 28770, 4166, 21000, 592, 37991, 7009, 6621, 13005, 35621, 4744], - [1, 2343, 25714], - [0, 0, 25715, 25719, 4139], - [ - 0, 1192, 4484, 1177, 4042, 1894, 442, 1193, 2064, 91, 53, 5087, 4874, 2797, 87, 4523, 5583, 6373, 1895, 10817, - 37998, 5889 - ], - "-body", - [2, 4860, 25716], - "co-body", - [0, 6775, 57, 5374], - "-router", - "__router", - [1, 2343, 25724], - "urlencoded", - [0, 25725, 25726, 25727, 2399], - [0, 2070, 1139], - [0, 1317, 15052, 2768], - [0, 4745, 1781, 38007, 38008], - "copy-to", - [1, 2343, 25730], - [0, 25731, 25733, 20172, 2523], - [0, 1495, 25623, 12929, 4290, 26574, 4748], - "bodyParser", - [ - 0, 68, 92, 4856, 6503, 4874, 1009, 25912, 1414, 1429, 1437, 25796, 1610, 1615, 1177, 1955, 2321, 29551, 2899, - 4039, 91, 4707, 38017 - ], - [1, 2343, 25735], - [0, 0, 25736, 25737, 2537], - [0, 68, 92, 4856, 6503, 4874, 1009, 1011, 1414, 1429, 1610, 1177, 2321, 2899, 3758, 4039, 4146, 4261, 91], - [0, 7233, 57, 4747, 1523, 200, 7119, 5675, 7058, 7233], - [1, 2343, 25739], - [0, 25740, 25741, 2514, 2537], - [ - 0, 38035, 1282, 1413, 1420, 1437, 25872, 1525, 38036, 1676, 19400, 1687, 2195, 2714, 2731, 10911, 2975, 16450, - 3181, 3188, 3309, 640, 3434, 28142, 3917, 38037, 705, 38040, 4039, 38041, 4135, 4296, 4390, 4393, 4572, 25898 - ], - [ - 0, 1175, 1178, 1193, 1195, 14220, 1255, 1267, 38044, 38047, 1268, 1272, 1291, 1177, 38050, 18229, 38052, 1922, - 38055, 1935, 38058, 1959, 2126, 2323, 2338, 2464, 2479, 2541, 2544, 1192, 2843, 3211, 1241, 2924 - ], - "humanize-", - [2, 25742, 6988], - "-counter", - [2, 22255, 25744], - [1, 2343, 25747], - [0, 0, 0, 25750, 4139], - "koa-compress", - [3, 2946, 9], - [0, 4749, 4752, 6435, 4166, 3378, 34652], - [1, 2343, 25752], - [0, 25753, 25754, 25755, 2443], - [0, 13581, 27999], - [0, 1329], - [0, 4560, 2056, 3101, 12666, 2090], - [1, 2343, 25759], - "mounting", - "@drftgyhuji7npm/repellendus-eum-et-itaque", - [0, 25760, 25761, 25767, 2523], - [ - 0, 38073, 38076, 38077, 38078, 38080, 1144, 1437, 1525, 1676, 2020, 38082, 2205, 38083, 20786, 3021, 38084, - 38086, 4135, 4207, 4558, 38088 - ], - [ - 0, 5245, 5139, 4874, 5254, 24719, 1414, 1597, 1177, 38092, 2151, 1776, 1894, 3708, 4039, 4193, 38093, 4294, 91, - 21328, 21329 - ], - [2, 29234, 32235, 1524], - "@ladjs/env", - [3, 25689, 31], - "sint-dolorem", - "@enact/core", - [0, 5001, 3304, 6147, 4990, 200, 8632, 4989, 8623, 1179, 8635, 1896], - [1, 2343, 25769], - [0, 25770, 25772, 25767, 2487], - [0, 1437, 1676, 2020, 4135, 3183, 3021, 22776, 4183, 4425, 2845, 38086, 2960, 38101, 27168, 5139, 38077], - "koa-send", - [ - 0, 1797, 1776, 4193, 1984, 1597, 2720, 1894, 4507, 9741, 91, 21329, 5245, 6513, 5254, 21328, 24719, 7892, 38073, - 23452, 38078, 8818, 4754, 7677, 3708 - ], - [1, 2343, 25776], - "sendfile", - "@envelop/core", - [0, 0, 8134, 25777, 2537], - [0, 4757, 38108, 27631, 200, 3741, 2649, 6847, 8618, 4938, 38109, 1644, 38111], - [1, 2343, 25779], - [0, 25783, 25784, 25785, 2443], - "is-warlock", - [2, 3341, 25780], - "reds", - [ - 0, 3157, 3445, 1437, 4761, 1209, 2089, 25294, 38117, 38118, 23878, 38121, 38122, 1543, 1615, 38123, 25555, 9478, - 38080, 15826, 38126, 38073, 38127, 27168, 4562, 38131, 4754 - ], - [0, 1414, 1906, 3297, 4193, 38092, 2203, 1596, 38133], - [0, 13326, 200, 6400, 5001, 3304, 6147, 5122, 4990, 8632, 2873, 8635, 1179, 8623, 1896, 8310], - "webOS", - [1, 2343, 25788], - [0, 0, 25795, 25799, 2537], - "bossy", - [3, 23453, 15], - [2, 25790, 5592], - [2, 9146, 5592], - "find-rc", - "will-call", - [0, 38139, 1104, 1166, 1437, 1474, 1511, 2929, 27127, 3527, 4481, 1906], - "cpr", - "lab-event-reporter", - "@ionic/cli", - [0, 1473, 7208, 1512, 7009, 7201, 200, 1871, 1111, 590, 592, 6621, 6983, 4166, 4744, 3073, 6807, 6876, 2585], - [1, 2343, 25801], - [0, 25805, 3293, 25807, 2487], - [2, 29611, 5457, 1805], - [2, 2102, 17239], - [2, 25806, 553], - [0, 1525, 2720], - "@envelop/", - [0, 4760, 5592, 36, 5995], - [1, 2343, 25811], - [2, 556, 1098], - "md-to-pdf", - [0, 25812, 25815, 25817, 2537], - [0, 3157, 1437, 1471, 4726, 1109, 4294, 1110, 4290, 38150], - "semver-", - "semver-regex", - [0, 1906, 2899], - "latest", - [0, 13326, 200, 8635, 4758, 38152, 38153, 5403, 6458, 1111], - [1, 2343, 25820], - [2, 25829, 6811], - [0, 15916, 25827, 25828, 2523], - "autodoc", - "deft", - [2, 2767, 1149], - "race", - "race.js", - [2, 4284, 176], - [0, 4170, 4135, 2899], - [0, 38160, 4762, 38161, 38162, 38163, 970, 10770, 11154], - [3, 24329, 21], - [1, 2343, 25831], - [0, 0, 0, 25832, 2443], - [0, 91, 2844, 7020, 998, 6591], - [2, 556, 25877], - [1, 2343, 25839], - "@mapbox/", - "cript-tags", - [2, 1967, 25836], - [2, 25835, 25837], - [0, 25845, 25847, 25856, 2487], - "bundlemon", - [3, 16694, 16], - "urner", - [2, 25841, 25842], - "git-rev-sync", - [0, 1170, 2026, 3509, 4763], - "happen", - [ - 0, 7804, 4856, 9417, 7806, 38176, 6494, 38177, 6503, 38179, 1364, 1429, 1431, 1527, 1536, 1575, 1652, 1177, - 38182, 1161, 2899, 3237, 3378, 1894, 4257, 4474, 91 - ], - "karma-expect", - [3, 2066, 9], - "leafdoc", - "prosthetic-hand", - "git-version", - [2, 4049, 25852], - "ontent-classifier", - "gis", - [0, 4763, 2026, 5592, 8800, 38185, 5995], - [2, 8, 25858], - [3, 1008, 21, 5], - [1, 2343, 25860], - [0, 25861, 25864, 25865, 2399], - [0, 1282, 1362, 1676, 34226, 2685, 2832, 1209, 3171, 3242, 705, 4454, 4729], - [2, 25857, 2324], - [2, 25867, 6], - [ - 0, 1173, 1178, 1255, 1264, 1364, 1575, 1700, 1177, 2026, 2323, 2338, 2384, 29396, 2472, 2510, 2541, 2899, 3237, - 3253, 6596, 4019 - ], - [ - 0, 1973, 6533, 5472, 21972, 4386, 10659, 37125, 29727, 1388, 1936, 12075, 965, 1623, 5284, 11857, 6662, 26196, - 38192 - ], - "numbers", - [3, 19535, 16], - "ng-packagr", - [1, 2343, 25870], - [0, 0, 25876, 2514, 2537], - "aproba", - "cmd-shim", - "p-reduce", - "byte-size", - "write-pkg", - [ - 0, 28069, 30286, 38197, 23689, 4874, 32440, 1362, 26739, 2780, 2784, 1192, 2899, 3210, 2765, 4232, 2766, 24652, - 4094, 4376, 4484, 1984 - ], - "examples", - "wide-align", - "has-unicode", - "p-waterfall", - [2, 2977, 7318], - "@npmtea2024/quasi-nisi-doloremque-fugit", - [1, 2343, 25889], - "p-map-series", - "blocking", - "set-blocking", - "@lerna/create", - [2, 2977, 20001], - [0, 25890, 25895, 25896, 4139], - [ - 0, 38202, 6870, 1389, 21146, 38204, 1512, 1525, 1536, 1573, 1676, 2026, 38207, 12783, 38209, 12785, 2590, 2600, - 2659, 12788, 38210, 12789, 1209, 3456, 3470, 38212, 4165, 38213, 17011, 4339, 38215, 20496, 4650, 4652, 1695, - 4746, 38217 - ], - "read-cmd-shim", - [2, 3614, 16830], - [2, 21772, 18709], - "strong-", - [0, 1087, 38221, 38222, 2899, 3524, 4389, 4431, 38224], - [0, 4770, 5472, 1388, 2907, 2899, 12826], - [3, 4588, 21], - [2, 25897, 4059], - "-bump", - [2, 4945, 25899], - [2, 13984, 25900], - "-rest", - [2, 24089, 25902], - [2, 9768, 25903], - [1, 2343, 25906], - [0, 25907, 6736, 25908, 2523], - [0, 666, 672, 677, 9688, 1710, 4135, 4459, 4484], - [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 9627, 9628, 9648, 9659], - [1, 2343, 25914], - [2, 1583, 20499], - "errno", - [2, 15086, 1179], - "jest-codemods", - [0, 25915, 6736, 6767, 2487], - [0, 1437, 4484, 677, 4135, 2203, 666, 17310, 1012, 9688, 19254, 12123], - [1, 2343, 25918], - "benny", - [0, 25932, 6736, 25933, 2537], - "less-port", - [2, 10784, 25919], - "emplate-tag", - [2, 2642, 25921], - "jit-grunt", - [3, 1165, 10], - [2, 21897, 25924], - "mocha-te", - "amcity-reporter", - [2, 25926, 25927], - "phin", - "read-glob", - "@ptkhanh94npm/iusto-libero-aperiam", - [0, 4484, 677, 4135, 2798, 3181, 666, 3527, 8734, 2797, 4748, 8752, 24759, 8762, 2686, 9688], - [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 38247, 9628, 9659], - [1, 2343, 25935], - [0, 25937, 25938, 25939, 34352], - [2, 21897, 2070], - [0, 4484, 677, 4135, 666, 672, 4771, 9688], - [0, 3420, 4270], - [0, 9622, 8174, 9623, 38255, 9627, 9628, 9648, 9659], - [1, 2343, 25941], - [0, 25945, 25949, 25952, 2443], - "abstract-l", - "evel", - [2, 25942, 25943], - [0, 30508, 30509, 4484], - "browser-level", - "-level", - [2, 128, 25947], - [0, 34030, 26312, 10846, 4426], - "@voxpelli/tsconfig", - [2, 12774, 3541], - [0, 7522, 89, 7531, 7535, 7521, 7597, 7518, 8424, 8432, 7528, 10442], - [1, 2343, 25955], - "leveldb", - [0, 25956, 25957, 25958, 2443], - [0, 38264, 3286, 89, 3824, 38265, 4125, 38266], - [0, 4874, 4880, 4883, 1177, 4828, 3561, 4383, 91], - [0, 12589, 1616, 33456, 12589, 5472, 20500, 33459, 1237, 33462, 33464, 12590, 33465, 27666, 11996], - [2, 25944, 2971], - "napi-macros", - [1, 2343, 25962], - [0, 25973, 0, 25975, 2537], - "async-each", - "du", - "cat-iterator", - [2, 1332, 25965], - [2, 2970, 25966], - "mkfiletree", - [2, 15164, 18490], - [3, 25969, 13], - "ross", - [2, 25970, 25971], - [0, 1639, 3744, 97, 7931, 7932, 7910], - "readfiletree", - [0, 89, 5128, 9267, 1832], - [1, 2343, 25977], - [0, 25978, 10298, 25979, 2443], - [0, 16053, 16056, 38278], - [0, 5284, 1776, 1644, 1746, 1745], - "-leveldown", - [2, 14834, 25980], - "level-", - "level-errors", - [2, 7253, 14922], - [2, 25982, 25984], - "supports", - [2, 25982, 25986], - "queue-", - "microtask", - [2, 25988, 25989], - [1, 2343, 25998], - "airtap-sauce", - "encoding-", - [2, 25993, 2971], - "memdown", - [3, 12809, 12], - [2, 4182, 5614], - [0, 25999, 26001, 26002, 2537], - [0, 97, 5663], - "trickle", - [0, 5087, 1192], - [0, 5284, 4967, 89, 6081], - [1, 2343, 26004], - [0, 26005, 26016, 26018, 2537], - [0, 97, 38293, 3744, 3847, 4484], - "levenshtein", - [2, 2068, 26006], - "ld", - "levdist", - [2, 26006, 10699], - [3, 26010, 12], - "-distance", - [2, 6109, 26012], - [2, 26011, 26013], - "talisman", - [ - 0, 5228, 14249, 5700, 8129, 20202, 38298, 20212, 602, 5583, 811, 963, 966, 968, 38299, 972, 974, 5087, 5090, - 4880, 1009, 1011, 7913, 38302, 38304, 1397, 1597, 1610, 1651, 1177, 4916, 1959, 2126, 38307, 38309, 11853, - 19227, 3400, 3698, 9054, 89, 3824, 3847, 3857, 3904, 4146, 4261, 91 - ], - "distance", - [0, 38313, 89, 15774, 38316, 38317, 5399, 1631, 32039, 38319, 7320, 38320, 32040, 38322], - [1, 2343, 26021], - "comparison", - [0, 21012, 0, 26022, 34352], - [ - 0, 6653, 7320, 10039, 24832, 1623, 13006, 38327, 6847, 5284, 676, 38328, 38329, 29002, 24353, 8112, 3561, 6425, - 38330, 18252, 1631, 3586, 38332, 4453, 38333 - ], - [1, 2343, 26027], - "careful-", - "binary-", - [2, 26025, 19101], - [0, 26028, 26029, 26030, 34352], - [0, 2115, 2121, 2127, 1110, 28827, 2856, 4507, 26907], - [0, 2180, 5476, 5478, 2189, 2198, 31852, 91], - [0, 2313, 1383, 614, 202, 1388, 5995, 4967, 2340, 2350], - [1, 2343, 26033], - "country-codes-flags-phone-codes", - [0, 0, 0, 26034, 4139], - [0, 1671, 671, 3315, 17626, 6869, 6671, 3319, 3325, 3362, 6829, 3384], - "just-safe-set", - "ock-registry", - [2, 9494, 26036], - [1, 2343, 26039], - [0, 26040, 26041, 26002, 2523], - [ - 0, 53, 31689, 97, 5663, 4793, 4800, 4838, 4928, 4786, 4944, 4954, 4968, 362, 4972, 24723, 4981, 10895, 4982, - 11518, 841, 7812, 24370, 4985, 1030, 4992, 1165, 1195, 29040, 30521, 1393, 1437, 1525, 1593, 1628, 1630, 1759, - 1763, 2151, 2070, 2220, 4995, 2222, 2651, 2843, 2867, 1209, 3177, 3220, 4996, 3310, 3445, 3561, 3579, 3584, - 3613, 3618, 30274, 1894, 3742, 15033, 3816, 3878, 4079, 13834, 4164, 4167, 4307, 5000, 4409, 5002, 1002, 1983, - 29141, 2924, 4676, 4681, 13152 - ], - [0, 29536, 27134, 4864, 4870, 5009, 5542, 15600, 33768, 11944, 3144, 3244, 3758, 4039], - [1, 2343, 26043], - [0, 6203, 26045, 26046, 2523], - "gitfund", - [ - 0, 549, 811, 8850, 816, 6373, 4863, 5087, 4880, 1009, 1011, 8158, 1584, 1843, 1177, 1895, 1938, 1955, 1959, - 1192, 2780, 2832, 3421, 1894, 89, 3824, 4039, 4042, 4052, 8849, 8853, 4076, 4079, 4230, 4468, 4469, 4474, 4484, - 4508, 2924, 4677, 4681, 555, 560 - ], - [0, 24456, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], - [1, 2343, 26048], - [0, 6203, 26054, 26055, 2537], - "crlf", - [3, 2982, 15], - [2, 6774, 16609], - [2, 26050, 26051], - "renamer", - [ - 0, 53, 87, 92, 8862, 5087, 4874, 1009, 1011, 6834, 6840, 6873, 1031, 11018, 13072, 1593, 1610, 1177, 1895, 1938, - 6902, 1988, 1192, 2780, 1894, 4039, 4042, 4045, 4052, 4076, 4079, 6904, 4468, 4484, 4508, 91, 188, 555 - ], - [0, 188, 8588, 6931, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], - [1, 2343, 26058], - [2, 33018, 188], - [0, 6203, 26061, 26062, 4139], - "ged-respawn", - [2, 7210, 26059], - [ - 0, 53, 87, 92, 4856, 5087, 6503, 4874, 1009, 1011, 6834, 6840, 6993, 6873, 1031, 11018, 13072, 1429, 1610, 1177, - 1895, 1938, 6902, 1988, 3400, 1894, 4039, 4042, 4045, 4052, 4076, 4079, 6904, 7006, 4484, 4508, 91, 188, 555, - 5010 - ], - [0, 188, 8588, 6931, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841, 12075, 1623, 4380], - [1, 2343, 26064], - [0, 26065, 26066, 26067, 2523], - [0, 12396, 23289, 23249, 3493, 12449, 15632], - [0, 9363, 4874, 1414, 31147, 1894, 3985, 3998, 18071, 4505, 4507, 91, 18002, 1906], - [0, 23266, 2587, 23267, 614, 6435, 1936, 1644, 15278], - [1, 2343, 26069], - [0, 0, 26071, 26075, 2537], - "cname-prefix", - [0, 1177, 2899, 3421, 4193], - "autolink", - "hashtag", - "mention", - [0, 4264, 15457, 15482, 13499, 15483, 5995], - [1, 2343, 26077], - [0, 0, 0, 26078, 2537], - [0, 17356, 17362, 17364, 17365, 17384, 17397, 17423, 17426, 1745, 1783], - "pidtree", - [1, 2343, 26083], - "consolemock", - "sonner", - [0, 26084, 26085, 26086, 2487], - [0, 24337, 24344, 18220, 1676, 24345, 2714, 2072, 4238, 4431, 4484, 4753], - [ - 0, 8656, 8660, 6061, 6063, 5245, 24352, 29105, 5087, 4874, 28177, 24358, 18435, 20290, 1177, 1192, 1894, 4131, - 4468, 91 - ], - [0, 12296, 12295, 200, 5131, 1896, 24364, 970], - "@samverschueren/stream-to-observable", - [1, 2343, 26089], - [0, 26100, 0, 26101, 2523], - "is-observable", - "-silent-renderer", - [2, 2991, 26091], - "listr-", - [2, 9787, 3902], - [2, 26093, 26094], - "verb", - "ose-renderer", - [2, 26096, 26097], - [2, 26093, 26098], - [0, 12396, 21300, 32567, 2586, 21308, 12447, 12449], - [0, 2587, 1936, 21308, 26916, 1783, 18108, 26564, 1932, 3958, 32462, 3984, 21306, 4549], - [1, 2343, 26103], - [0, 26105, 26106, 26110, 2523], - "@keyv/compress-brotli", - [0, 2564, 4351], - [0, 1166, 1503, 91, 1906], - [3, 175, 23], - [2, 26109, 16518], - [3, 26104, 15], - [0, 163, 7009, 22316, 200, 13735, 4354, 1111, 1106, 7201], - "@lit/reactive-element", - "@lit", - "-labs/ssr-dom-shim", - [2, 26112, 26113], - [1, 2343, 26125], - "@lit-labs/", - [2, 26116, 5472], - "@lit-", - "/scripts", - [2, 6943, 26119], - [2, 26118, 26120], - [2, 10704, 1283], - "@keyv/memcache", - "@keyv/mongo", - [0, 26126, 26130, 26133, 2443], - [0, 20573, 5545], - "connect-l", - "ogger", - [2, 26127, 26128], - [ - 0, 5517, 28436, 19438, 19181, 442, 8648, 842, 16145, 966, 968, 972, 22375, 5087, 4874, 4880, 5546, 1009, 1011, - 34737, 1177, 1895, 31755, 1959, 1961, 1976, 2203, 2675, 1192, 2780, 2990, 3286, 1894, 89, 3824, 5564, 4039, - 4135, 91, 4523 - ], - "@keyv/sqlite", - "@keyv/test-suite", - [0, 26713, 89, 582, 705, 2325, 1612], - [1, 2343, 26135], - [0, 0, 26138, 26139, 2523], - "http-auth", - "faye-websocket", - [0, 4874, 4218, 4220, 4493, 91], - [ - 0, 91, 998, 553, 5490, 17180, 20052, 2382, 6956, 2844, 5995, 6400, 1781, 6866, 1398, 9254, 15105, 4144, 4141, - 7050, 22789, 22791 - ], - [1, 2343, 26141], - [0, 26143, 26145, 26146, 2537], - "amaro", - [0, 23641, 27185, 29561], - [2, 3000, 1592], - [0, 58, 101, 8648, 1177, 2272, 3019, 2899, 4019, 19767, 4481, 4535], - [0, 36720, 22860, 1388, 16284, 888, 22856, 35087, 11804, 23659, 23664, 23667, 23668, 29725, 29728, 32633], - "micro-backend", - [1, 2343, 26149], - [0, 0, 26150, 26151, 2537], - [0, 2832, 705, 4008], - [0, 1936, 23670, 11513], - [1, 2343, 26153], - [0, 26156, 26157, 26161, 2537], - [2, 2032, 26155, 26159], - "openid-c", - [ - 0, 2591, 25047, 23597, 4290, 24794, 24836, 19569, 15245, 24855, 24871, 24984, 25049, 25034, 24816, 24841, 24900, - 24964, 24989, 24998, 21642, 37100, 25011, 24802, 24828, 24987, 24797, 24958, 25042 - ], - [ - 0, 1414, 2020, 4193, 25122, 1306, 1177, 1701, 25127, 2182, 1894, 842, 1587, 1610, 4342, 3980, 25609, 91, 4874, - 25099, 25108, 6513, 8529, 27525, 25110, 9240, 25103, 25104, 25098, 25137, 25053, 25118, 25114, 25058, 25083, - 10614 - ], - "grunt-svgmin", - "onnect", - "matchdep", - [0, 25155, 5130, 33359], - [1, 2343, 26163], - [0, 26164, 26165, 26166, 2537], - [0, 25183, 25194, 1759, 2858, 3310, 9796], - [0, 33460, 25204, 4874, 5542, 1177, 25209, 1894, 4039, 4494, 91, 1984], - [0, 9649, 17721, 6869], - [1, 2343, 26168], - [0, 26171, 26174, 26188, 4139], - "lws-basic-auth", - "lws-b", - [0, 1676, 4164, 4484, 4747, 2151, 1525, 3310, 25228, 24337, 3322, 24335, 25245], - "lws-blacklist", - [2, 26170, 7803], - [ - 0, 3377, 1192, 2675, 4400, 1177, 4039, 4468, 1894, 91, 5087, 4874, 5245, 28177, 20959, 107, 4864, 5542, 25250, - 8656, 8660, 1009 - ], - "lws-compress", - "lws-co", - "nditional-get", - [2, 26176, 26177], - "lws-cors", - "lws-index", - "lws-json", - "lws-log", - "lws-mime", - "lws-range", - "lws-r", - [2, 13148, 21101], - [2, 26185, 26186], - [0, 2733, 8675, 13494, 5131, 970, 1017, 25259], - "lws-rewrite", - "lws-spa", - [1, 5293, 26193], - "lws-static", - [0, 8391, 26194], - 1753574400000, - [1, 2343, 26197], - "full-stack", - [0, 26198, 0, 26199, 2537], - [0, 1461, 2731, 3744, 3776, 89, 3824, 3847, 4649], - [0, 5130, 6081, 4963, 5131, 25786], - [1, 2343, 26201], - [0, 26209, 0, 26211, 2399], - [3, 24235, 20], - "loose", - [2, 26202, 26203], - [2, 13888, 5669], - "grunt-es", - "3-safe-recast", - [2, 26206, 26207], - [0, 4484, 25804, 29321, 29322], - "grunt-rollup", - [0, 13572, 2220, 36, 5130, 202, 6710, 91], - "grunt-ts", - "rollupify", - [1, 2343, 26215], - [0, 26219, 26220, 16427, 2523], - "indexeddb", - [3, 23920, 12], - "websql", - [ - 0, 24327, 25819, 24329, 24335, 24337, 24338, 24339, 24340, 24343, 24344, 1437, 1676, 1687, 24345, 24346, 1209, - 3445, 6331, 20921, 4135, 4238, 24347, 22651, 4339, 4390, 4484 - ], - [0, 5245, 17577, 24352, 5087, 4870, 4874, 5254, 24358, 24360, 13214, 1192, 2774, 2990, 4039, 4227, 4468, 91], - [1, 2343, 26224], - [2, 31787, 26225], - "openurl", - [0, 6203, 26226, 26227, 2523], - "ecma402-abstract", - [ - 0, 25857, 25862, 25863, 19535, 19, 21, 24, 26, 1009, 1011, 1166, 1584, 1177, 1895, 1938, 1955, 25868, 3421, - 1894, 4039, 4094, 4232, 4484, 4508, 91, 555 - ], - [0, 1098, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], - [2, 3019, 2825], - [1, 2343, 26231], - [2, 7627, 4255], - [0, 26235, 26236, 26237, 2537], - [2, 6698, 19048], - "lockfile ", - [2, 26233, 671], - [0, 20437, 1209], - [0, 4874, 1009, 1011, 1177, 1895, 1938, 1955, 1894, 4039, 4042, 4052, 4076, 4079, 4484, 4508, 91, 555], - [0, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], - [1, 2343, 26239], - [0, 26240, 26242, 7097, 2523], - [0, 1473, 4741], - [2, 31528, 29413], - [0, 10321, 4493, 4543], - [1, 5293, 26244], - [0, 8391, 26245], - 1738454400000, - "@egjs/axes", - "@egjs/imready", - "modularized", - [2, 5316, 26248], - [1, 2343, 26251], - [0, 26252, 26253, 26254, 2537], - [0, 97, 5564], - [ - 0, 29519, 89, 1177, 1503, 4474, 1894, 1610, 3824, 29520, 91, 11853, 4880, 38309, 4883, 29522, 3904, 17584, 1011, - 4889, 1009 - ], - [0, 5472, 89, 582, 2275, 11857], - [1, 2343, 26261], - [2, 27471, 1722], - "kuler", - "clonedeep", - "js-randomness-predictor", - [3, 23307, 13], - [0, 26262, 0, 26263, 4139], - [0, 25510, 29529, 25758], - [ - 0, 6932, 6622, 6694, 6704, 6860, 6695, 4389, 7159, 5341, 7202, 7121, 7060, 7161, 7141, 7287, 6698, 3743, 7311, - 6946, 2090, 6566, 6907, 7228, 4799, 5261, 6863, 2051, 676, 4643, 7535, 6748, 6739, 6618, 2844, 7252, 6673, 6790, - 7531, 7226, 1851, 1612, 4763, 6598, 6728, 6868, 6662, 7148, 6905, 6668, 7292, 7272, 6583, 3767, 364, 6800, 6874, - 4166, 1698, 2021, 6821, 3065, 6435, 3730, 6882, 4647, 6857, 6637, 7031, 7223, 7080, 3113, 7220, 1871, 6801, - 7087, 6938, 7145, 3195, 7255, 7162, 6482, 7094, 6922, 6615, 6738, 6654, 8433, 7212, 7050, 7521, 1525, 6892, - 6830, 3432, 10442, 7053, 7253, 10443, 6937, 6894, 6977, 5592, 6692, 200, 6940, 6867, 7242, 7518, 6582, 3101, - 7038, 57, 7188, 6809, 6998, 4484, 4796, 7089, 7178, 7182, 6827, 7015, 6912, 7011, 6743, 1451, 6575, 7117, 6994, - 3046, 2812, 7199, 2860, 998, 5122, 1111, 6696, 6910, 3529, 7133, 6048, 1303, 6634, 1139, 6846, 6784, 7192, 6777, - 3053, 5351, 6624, 3171, 1896, 2297, 6960, 7022, 6597, 5198, 6802, 6816, 7317, 4141, 6765, 6591, 7236, 1306, - 6681, 5257, 6564, 100, 7004, 6333, 6799, 6774, 7276, 7196, 6797, 1263, 1149, 2649, 7150, 7165, 6753, 7107, 6948, - 6975, 6822, 6787, 6760, 7046, 5472, 6651, 6569, 6825, 7069, 582, 7191, 6968, 6631, 6742, 4744, 7258, 1925, 6794, - 6804, 965, 7149, 6917, 2700, 1192, 2765, 6081, 7029, 1417, 5258, 4426, 6608, 7044, 7123, 7222, 3378, 1616, 3917, - 1614, 1669, 3209, 6570, 7155, 6422, 6714, 6725, 6606, 6778, 7300, 6610, 6716, 1259, 2585, 1393, 6918, 1461, - 1213, 7232, 7172, 6755, 4014, 6919, 7209, 7075, 6818, 6870, 7039, 6795, 6761, 6966, 2154, 6885, 4707, 6964, - 6646, 7218, 7169, 2978, 5501, 1155, 6611, 6955, 1862, 1753, 2220, 6837, 7336, 4386, 6638, 6616, 6553, 7310, - 7061, 6881, 7298, 8424, 5675, 3437, 3456, 6929, 7157, 6580, 6751, 7010, 6648, 3426, 6952, 8435, 4384, 7233, - 6697, 4162, 2150, 3875, 1108, 5165, 6926, 3763, 7229, 592, 3776, 7288, 5957, 6700, 2088, 6650, 7595, 10446, - 7289, 6805, 7099, 7084, 7144, 590, 5374, 5197, 7077, 5286, 7248, 2078, 7085, 7285, 1781, 6653, 10441, 2325, - 5281, 1351, 7309, 7204, 2696, 2899, 3430, 705, 7126, 1697, 2038, 7025, 6641, 6620, 1671, 6859, 6573, 7146, 7245, - 4649, 3220, 6667, 1623, 6793, 6666, 6903, 7230, 7026, 6588, 6858, 1362, 202, 2832, 7023, 7284, 6659, 6577, 7158, - 6594, 7115, 20215, 6789, 5614, 7057, 7528, 7021, 6605, 6621, 5260, 6973, 6913, 6828, 6563, 6715, 1460, 7067, - 7072, 6762, 7033, 7517, 6702, 7020, 6887, 5131, 3778, 6915, 1593, 5194, 7071, 1429, 7042, 6636, 6841, 3428, - 7007, 7532, 6803, 7106, 3073, 6824, 7227, 7286, 2845, 7082, 7114, 7151, 7297, 6769, 3766, 6914, 7189, 7064, - 4720, 6723, 7205, 6780, 6683, 7078, 1858, 6741, 7262, 6962, 814, 6657, 7524, 1544, 7002, 7527, 1585, 5511, 1512, - 6921, 6951, 6856, 7598, 6854, 8428, 6586, 6773, 2105, 7047, 2671, 1541, 6623, 594, 6711, 7147, 6671, 7256, 7194, - 1165, 6786, 3768, 6752, 8427, 1804, 3441, 7275, 3033, 6943, 4354, 4580, 6758, 7027 - ], - "snackbar", - "inject-markdown", - [1, 2343, 26267], - [0, 0, 26268, 26269, 2537], - [0, 2272, 19270, 2899], - [0, 1111, 1936], - [1, 2343, 26271], - [0, 26272, 26275, 26276, 2523], - [0, 6513, 4193, 4484], - [2, 32920, 4521], - "rchitecto-", - [0, 33821, 7709, 33826, 33827, 33831, 33836, 29543, 4508], - [0, 7200, 1168, 5472, 3212, 20188, 29545], - [1, 2343, 26278], - [0, 0, 26279, 26280, 4139], - [0, 6373, 1437, 29550, 2151, 2070, 2323, 2372, 29552, 4039, 4042, 4057, 4076, 4072, 4484, 4487, 91], - [0, 1896, 5066, 29554, 29555, 5122, 12295, 14554, 5284, 4453, 29556, 5131, 1591, 1932, 4653, 6434], - [1, 2343, 26282], - [0, 0, 0, 26283, 2523], - [0, 7201, 5131, 1676], - [1, 2343, 26288], - [2, 28288, 26286, 33678], - "redential", - "isequal", - [0, 26289, 26290, 26291, 4139], - [0, 1364, 1536, 1676, 1710, 11479, 2017, 2929, 4200, 4763], - [ - 0, 8648, 29574, 5159, 838, 5160, 840, 8296, 5601, 1165, 1662, 1177, 1895, 1972, 2203, 3561, 1894, 3710, 23535, - 3709, 4355, 4383, 91, 1983, 1984 - ], - [0, 5592, 5995, 27, 4699, 4729, 4030, 6710], - "isfunction", - [1, 2343, 26294], - [0, 0, 26295, 26296, 2487], - [ - 0, 53, 87, 192, 5467, 1165, 1195, 1387, 31429, 1429, 29582, 1492, 29584, 1652, 29585, 2323, 29586, 2338, 29587, - 29589, 2361, 2367, 2384, 2390, 2419, 2455, 2464, 2479, 2482, 2494, 2496, 2504, 29592, 2510, 2530, 2550, 29593, - 2675, 29594, 2822, 2929, 2899, 3198, 29595, 5561, 3561, 3722, 4015, 4019, 4042, 4045, 21688, 4939, 29596, 4193, - 8959, 29597, 4597, 29599, 2924, 18237 - ], - [0, 1623, 4329, 2278, 676, 6398, 6396, 5130, 14894, 29603, 29607], - [1, 2343, 26298], - [0, 26299, 26300, 26302, 34352], - [0, 1437, 29614], - [0, 29618, 7677, 2675, 2990, 1894, 91, 1984], - "isplainobject", - [0, 200, 1473, 1512, 7208, 6876, 7201, 6983, 29609, 3632, 3073, 6807, 4166, 1871, 590, 592, 7009], - [1, 2343, 26304], - [0, 26305, 26306, 26308, 4139], - [0, 7943, 29630, 3120, 3744], - [ - 0, 48, 53, 68, 13693, 61, 31689, 73, 31693, 5757, 5800, 5818, 5827, 87, 90, 19696, 19438, 19181, 442, 34467, - 32229, 29634, 28970, 29636, 10837, 10840, 29639, 966, 968, 972, 29642, 974, 5087, 11292, 4874, 4880, 4883, 8152, - 1175, 1193, 1195, 20479, 29643, 11335, 29645, 1465, 1584, 1587, 1593, 1610, 1700, 1177, 1879, 1895, 1922, 1938, - 1947, 1955, 1959, 1961, 1976, 2151, 2203, 29646, 1192, 11347, 2774, 2780, 29652, 2832, 3561, 3697, 1894, 3720, - 89, 3816, 3824, 3847, 29655, 3957, 4183, 4270, 4315, 29660, 4415, 29661, 35487, 4468, 4469, 91, 2924, 4677, 4681 - ], - "isstring", - [ - 0, 29610, 29666, 29667, 4627, 6082, 9204, 5130, 89, 699, 9291, 5354, 29668, 29669, 29670, 29671, 7320, 29673, - 29674, 29676, 1473, 998, 8691, 8295, 29677, 181, 6073, 10769, 29678, 4315 - ], - [1, 2343, 26310], - [0, 0, 0, 26311, 2537], - [0, 23584, 23584, 1936, 3205, 1002], - "@thednp/dommatrix", - [1, 2343, 26314], - [0, 0, 26315, 26316, 2537], - [0, 29693, 2228, 2247, 2253, 2258, 2263, 2273, 2281, 2283, 29694, 2308], - [0, 36653, 36650, 29702, 15571, 8192, 5066, 11316, 18346, 35060, 2814, 20632, 6398, 5131], - [1, 2343, 26318], - [0, 26319, 26320, 22658, 2443], - [0, 3561, 33145, 4317, 8712, 1423, 28572], - [ - 0, 4729, 1138, 3244, 3467, 4390, 4763, 12084, 2070, 710, 614, 1082, 31705, 1413, 1676, 2145, 2856, 33213, 1145, - 1398, 1410, 977, 2018, 2755, 3266, 3930, 4135, 4072, 11478, 2105, 6042, 3479, 3729, 2924, 3757, 3784, 33214, - 33173, 842, 9241, 1525, 1610, 2553, 11993, 26453, 23175, 3530, 4270, 33215, 29709, 11534, 13214, 33200, 33202, - 1628, 11890, 2659, 16837, 2689, 33211, 4227, 4294, 4425, 91, 24739, 53, 554, 4865, 33198, 20463, 13753, 1154, - 33204, 1536, 1615, 2805, 4111, 27062, 4165, 15040, 33212, 7080, 104, 8317, 33146, 33174, 5364, 5245, 33191, - 4880, 1195, 1393, 33206, 1562, 33208, 2863, 33210, 3678, 20508, 4307, 11804, 33176, 11477, 4870, 5254, 33209, - 20465, 15031, 3878, 13834, 15048, 97, 33181, 26733, 15018, 3509, 15042, 15047, 101, 8755, 29877, 33197, 15606, - 15009, 3502, 15033, 5216, 33165, 8648, 10837, 20374, 4883, 2661, 15022, 3322, 51, 87, 11011, 23452, 1618, 2674, - 4230, 28512, 15039, 15046, 13471, 10879, 7806, 21122, 16149, 16566, 3672, 90, 33156, 617, 11796, 8264, 33193, - 11800, 1560, 3676, 3957, 68, 33768, 15015, 3688, 9221, 25652, 33158, 33167, 34467, 33195, 36897, 16841, 18730, - 4409, 33159, 29876, 24807, 31666, 16912, 3605, 16842, 33170, 33179, 3177, 4851, 92, 33162, 19861, 29517, 29421, - 33172, 10840, 33183, 33153, 10825, 30521, 10827, 20476, 15273, 83, 16840, 33189, 3638, 81, 5715, 29874, 5757, - 5241, 5820, 5821, 5785, 1251 - ], - [1, 2343, 26323], - [2, 1882, 24717], - [0, 0, 26324, 26325, 2399], - [0, 1414, 34238, 2675, 2990, 3561, 1906], - [0, 3561, 1623, 6425, 26543], - [0, 0, 21613, 21614, 34352], - [1, 2343, 34498], - [0, 1448, 4907, 29733, 3157, 3173, 3527, 3721, 11114, 4207], - [ - 0, 192, 5467, 442, 6061, 16607, 6063, 6065, 16608, 16612, 7746, 4874, 13210, 29740, 1009, 1011, 1610, 1177, - 1953, 2020, 2203, 2675, 29741, 2990, 3536, 1894, 4039, 4131, 91, 1984 - ], - [0, 8678, 3758, 7001, 1017, 29745, 12295, 12296, 29746, 29747, 29748, 158, 3097, 5131, 33777, 29750, 29751], - [1, 2343, 26332], - [0, 26333, 26334, 26335, 34352], - [0, 29758, 29759, 1398, 34690, 3127, 3725, 10397, 29761], - [ - 0, 53, 68, 87, 1195, 29776, 1465, 24542, 1628, 1177, 1879, 31393, 1938, 24732, 2092, 8301, 2651, 29784, 4307, - 4409, 37871, 2924, 4676, 4677, 4681 - ], - [ - 0, 8168, 8170, 8171, 6975, 8172, 8173, 1745, 29786, 29787, 29729, 8124, 29788, 29795, 29796, 29797, 29798, - 29802, 29803 - ], - [1, 2343, 26337], - [0, 26338, 26339, 26340, 2523], - [0, 3744], - [0, 53, 68, 97, 1177, 1879, 1895, 1938, 1947, 1955, 1959, 1961, 1192, 5103, 1894, 89, 3857], - [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 26542, 23187, 29556, 29804, 9944, 7521], - [1, 2343, 26342], - [0, 0, 26345, 26347, 2523], - [3, 532, 8], - [2, 26346, 26651], - [0, 53, 87, 97, 29817, 21155, 1177, 2675, 2990, 89, 3857, 91], - "@tdesign/", - [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 5396, 29819, 15813, 29820], - [1, 2343, 26352], - [3, 17904, 13], - "sprintf-kit", - "uni-global", - [0, 0, 26354, 26355, 2443], - [3, 25092, 13], - [ - 0, 53, 68, 61, 5241, 83, 87, 90, 5583, 811, 816, 968, 972, 1165, 1497, 1652, 1177, 1895, 31755, 1955, 1959, - 1961, 1976, 2675, 2686, 1192, 2990, 3561, 1894, 3744, 89, 3824, 4042, 8849, 29826, 6068, 10854, 4320, 4323 - ], - [0, 89, 35058, 29831, 3392, 89, 4627, 29832, 5131, 12295, 12296, 29836, 29837, 29838, 29839], - [1, 2343, 26359], - "ncjsm", - "tape-index", - [0, 26360, 26361, 26362, 34352], - [0, 97, 29843, 29844], - [ - 0, 53, 78, 83, 87, 90, 92, 5522, 107, 29846, 968, 972, 4880, 4883, 1009, 1011, 1030, 1178, 1413, 1610, 1177, - 1895, 1955, 1959, 2675, 1192, 2780, 2990, 1894, 89, 3824, 4039, 91, 1983 - ], - [0, 29848, 29849, 89, 5128, 38332], - [1, 2343, 26365], - "@standard-schema/spec", - [0, 26366, 26367, 26368, 2487], - [0, 1420, 29855, 4507], - [ - 0, 5517, 19438, 442, 29857, 23689, 1414, 1437, 1516, 1532, 668, 1177, 1895, 1955, 2020, 2203, 2675, 2765, 2990, - 3074, 1894, 4039, 18710, 91, 4523 - ], - [0, 20627, 1739, 1745, 1179, 1783, 5980, 9591], - [1, 2343, 26370], - [0, 26372, 26373, 26378, 2443], - "terminal.js", - [0, 810, 1497, 26570, 16485, 2017, 2696, 3876, 4022, 32284, 5545, 29869], - [ - 0, 48, 53, 87, 90, 92, 97, 19696, 28091, 19492, 19438, 442, 28598, 30507, 810, 11275, 34467, 827, 10828, 28147, - 28466, 31235, 7384, 31237, 28473, 28476, 968, 972, 974, 29879, 33123, 29880, 4874, 4880, 4883, 15606, 1030, - 17214, 7677, 1195, 29883, 20476, 1393, 29645, 1610, 17100, 17101, 17103, 1687, 1177, 26322, 1895, 1915, 1938, - 1942, 1947, 1955, 1959, 1961, 30553, 10851, 2070, 2203, 2675, 2832, 2990, 3127, 3541, 1894, 89, 3824, 3847, - 3876, 4039, 4270, 4409, 4469, 4473, 91, 4523, 15088, 1984, 29887, 2924, 4676, 4677 - ], - [3, 28685, 11], - "refresh", - "overwrite", - "irtual-core", - [0, 89, 6071, 9816, 5128], - "tinyexec", - [2, 17213, 28937], - [1, 2343, 26382], - [0, 26384, 26386, 26387, 2537], - "date-format", - [0, 29896], - "flatted", - [ - 0, 29900, 29905, 29910, 29911, 811, 816, 974, 11096, 11109, 19203, 29914, 11111, 29917, 29921, 1414, 1429, - 29922, 29924, 1177, 29925, 1938, 2832, 8821, 2899, 1894, 4042, 29926, 4146, 4193, 4196, 4261, 4072, 91 - ], - [ - 0, 29935, 11619, 11608, 30891, 11622, 6907, 29936, 12899, 5130, 30442, 17950, 1283, 29939, 33359, 11415, 6624, - 12620, 29940, 29941 - ], - "streamroller", - [1, 2343, 26392], - "@log4js-node/sandboxed-module", - "-producer", - [0, 0, 26393, 26394, 2487], - [0, 53, 13052, 87, 4042, 4045, 4058, 4067, 4415, 29949, 35487, 4535], - [0, 7838, 29953, 7518, 3161, 1098, 29954, 89, 188, 7880], - [1, 2343, 26401], - [3, 9227, 10], - "e-js", - [2, 26396, 26397], - "grunt-open", - [2, 2235, 4358], - [0, 26402, 26403, 26404, 2537], - [0, 97, 29959, 10984, 1673, 3021, 29960, 4443, 1155], - [ - 0, 5652, 61, 83, 87, 92, 192, 5467, 6372, 5583, 811, 16952, 8850, 816, 6373, 29966, 29967, 29980, 26344, 5139, - 4874, 8149, 11438, 14334, 1009, 1011, 11016, 13061, 7677, 23203, 13063, 1031, 36812, 36805, 11018, 1165, 1170, - 1420, 12405, 1527, 1540, 1610, 1651, 1652, 1676, 29972, 668, 1177, 1881, 1895, 1938, 1955, 1988, 2226, 2675, - 2832, 695, 2990, 3025, 26804, 3213, 3561, 1894, 3725, 29973, 3957, 4039, 4042, 34019, 8849, 11899, 15277, 29974, - 15911, 10854, 29975, 29978, 4073, 6904, 4081, 29983, 4484, 91, 1983, 29987, 1984, 188, 4630, 4639, 13151 - ], - [0, 188, 5131, 29990], - [1, 2343, 26427], - "esm2umd", - [2, 26409, 26410], - "int64", - "@astrojs/s", - "itemap", - "@pagefind/default-ui", - [2, 26689, 27593], - "uid2", - "astro-expressive-code", - "bcp-47", - "isemail", - "canonical-json", - [2, 3138, 12442], - "-phase", - [2, 3081, 26419], - "pagefind", - "remoting", - [2, 25894, 26422], - "loopback-", - "filters", - [2, 26424, 26425], - [0, 26430, 26432, 26451, 2523], - "globalize", - [2, 25894, 26428], - [0, 7755, 1869, 2814], - "linkedom", - [ - 0, 53, 87, 23572, 11301, 1165, 1168, 30000, 1597, 1610, 1637, 1651, 18259, 1759, 1177, 1895, 1903, 1938, 1954, - 1955, 1958, 1970, 3363, 3561, 3564, 3566, 30030, 3579, 3605, 30033, 3613, 3640, 30039, 30274, 1894, 4039, 4042, - 4045, 4055, 4058, 20981, 30041, 4067, 20983, 32978, 4073, 12309, 4201, 4320, 4946, 4360 - ], - "or-remote", - [2, 1544, 26433], - [2, 26424, 26434], - [3, 18637, 12], - "tub-transport", - [2, 26436, 26437], - "datas", - "withastro", - "ource-juggler", - [2, 26439, 26441], - [2, 26424, 26442], - [3, 18637, 11], - "astro-integration", - "-transport", - [2, 1716, 26446], - [2, 26444, 26447], - "adapter-", - [2, 32700, 23187], - [0, 12318, 2090, 30044, 30045, 13225, 7518, 5398, 158, 30046, 190, 5131, 18346, 9229, 1542, 30826, 20937, 2814], - [1, 2343, 26454], - "is-docker", - [0, 26460, 26471, 26475, 2523], - "loopback-boot", - "s6-shim", - [2, 13897, 26456], - [3, 26435, 12], - [2, 26458, 2585], - [0, 1170, 2812, 1209, 3183, 4094], - "task-emitter", - [2, 25894, 26461], - [3, 6738, 11], - [2, 26463, 1524], - [2, 25894, 26464], - [2, 1884, 3081], - "processor", - "-preprocessor", - [2, 22126, 26468], - [2, 2877, 26469], - [0, 1429, 1177, 10419, 3188, 2899, 1241], - "sqlserver", - "StrongLoop", - "mBaaS", - [ - 0, 6703, 1702, 200, 1586, 21405, 13397, 33351, 27, 29854, 30053, 21402, 13322, 16697, 28984, 6667, 6574, 30056, - 31937 - ], - [1, 2343, 26480], - [2, 26478, 29168], - [3, 30636, 28], - [2, 26868, 26869], - [0, 0, 26496, 26497, 2537], - "exact-versions", - [2, 32700, 7293], - [2, 26485, 24631], - "steno", - [3, 31231, 18], - [2, 19036, 20], - [2, 5745, 1852], - [2, 2029, 26487], - [2, 32731, 26494], - "embed", - "Storage", - "localStorage", - [2, 1577, 26491], - "polygon", - [2, 32731, 32729], - [0, 1165, 1387, 2323, 30061, 2379, 2409, 2450, 2482, 2494, 2496, 2510, 18426, 30064, 3591, 4320, 4323, 4747], - [0, 29993, 30066, 30067, 1623, 695, 5131], - [1, 2343, 26500], - "rslog", - [0, 0, 0, 26501, 2487], - [0, 89, 6649, 10057, 6355, 3875, 1542], - [1, 5293, 26508], - [2, 13104, 1936], - "@lucide/build-icons", - "@lucide/", - [2, 4080, 591], - [2, 26505, 26506], - [0, 8391, 26515], - "Lucide", - "HTML", - "Feather", - "Icons", - "Icon", - "SVG", - 1731196800000, - "Feather Icons", - "Fontawesome", - [1, 2343, 26519], - [0, 26521, 26522, 2514, 4139], - "Font Awesome", - [ - 0, 30078, 9307, 9311, 30068, 30052, 30073, 9313, 30072, 1497, 12412, 30075, 2071, 7610, 2579, 21308, 3137, - 27008, 3140, 12627, 26929, 26914, 17429, 9337, 3973, 9340, 3988, 30049, 30069, 30059, 27062, 9348, 4207, 17913, - 4473, 30058, 4555, 28830, 4745, 4763 - ], - [0, 11522, 972, 1006, 12396, 9363, 30082, 4880, 4891, 1030, 30084, 23312, 23314, 3286, 89, 3824, 4549, 1984, 28965], - [1, 2343, 26524], - [0, 26525, 0, 26526, 2537], - [0, 30097], - [0, 1674, 30099, 30100, 15001, 13739, 35071, 30103, 30113, 19571], - [1, 2343, 26529], - "decree", - [0, 26530, 26531, 13347, 2537], - [0, 20378, 3530], - [0, 11976, 4874, 20374, 2071, 30138, 2070, 4441, 1531, 91], - "manipulate", - "blur", - "sharpen", - "flip", - "hue", - "saturation", - [1, 2343, 26540], - "lightness", - [0, 0, 0, 26544, 4139], - "transparency", - "fade", - "opacity", - [0, 91, 553, 1973, 8791, 2022], - [1, 2343, 26546], - [0, 26547, 2667, 26554, 2537], - [0, 30173, 4484], - "@75lb/deep-merge", - [3, 1107, 11], - "-sequences", - [2, 26549, 26550], - [2, 1601, 7880], - "load-module", - [0, 30175, 30176, 27227, 30177, 30178, 91, 6742, 57, 15266, 2873, 1993, 7256, 676, 19976, 30179, 5995, 6400], - "-anywhere", - [2, 17242, 26555], - [2, 30307, 553], - [1, 2343, 26559], - [0, 0, 6230, 26560, 2399], - [0, 32054, 4963, 4967, 6082, 3286, 3287, 89, 11167, 31512, 181, 630], - [1, 2343, 26569], - "-home-dir", - [2, 18132, 26562], - "mdast", - [2, 2580, 26564], - "fetch-happen", - [2, 3094, 26566], - [2, 12428, 1783], - [0, 6234, 6230, 26575, 4139], - [2, 25212, 28139], - "-unique-id", - [2, 5843, 26571], - [2, 4402, 163], - "y18n", - [0, 1501, 4963, 4967, 5342, 6082, 3286, 3287, 89, 5341, 9057, 181, 630], - [3, 9357, 10], - "umnify", - [2, 26576, 26577], - [2, 8140, 1687], - "ke-fetch-happen", - [2, 18655, 26580], - [1, 2343, 26583], - [0, 26585, 6230, 26588, 2523], - "@types/which", - [0, 3826], - "wizard", - "task graph", - [0, 4963, 18263, 1786, 4967, 6082, 3286, 3287, 89, 181, 630, 9229], - [1, 2343, 26590], - [0, 26592, 6230, 26593, 4139], - "zoroaster", - [0, 9041], - [0, 4963, 4967, 6082, 3286, 3287, 3412, 3730, 89, 181, 630], - [1, 2343, 26595], - [0, 26592, 6230, 26598, 2537], - " manipulation", - [2, 1871, 26596], - [0, 30246, 4963, 4967, 6082, 3286, 3287, 89, 7193, 181, 630], - [1, 2343, 26600], - [0, 0, 6230, 26601, 2537], - [0, 4963, 4967, 6082, 3286, 3287, 89, 30256, 24843, 30251, 181, 630], - [1, 2343, 26607], - [3, 7678, 9], - [2, 4501, 6996], - [2, 12612, 26604], - [2, 26603, 26605], - [0, 26613, 26615, 26618, 2537], - "lavalink client", - "audi", - "o streaming", - [2, 26609, 26610], - "music", - [0, 3135], - "music bot", - [ - 0, 48, 53, 5241, 87, 92, 19344, 10879, 30263, 5601, 4873, 4874, 1009, 1011, 1177, 1895, 1938, 1942, 1953, 30266, - 13668, 3401, 4039, 91, 1984 - ], - "emoji-datasource", - "voice chat", - [0, 30270, 3541, 1651, 2899, 1984, 1192, 2765, 3283, 28360, 30271, 2793, 1973, 11937, 16237, 5472, 30272], - " integration", - [2, 1721, 26619], - " performance", - [2, 6732, 26621], - [1, 2343, 26625], - "easy-to-use", - [0, 26634, 26635, 26637, 2487], - "feature-rich", - "seamless", - [2, 26627, 26619], - "communi", - "ty support", - [2, 26629, 26630], - "open-source", - "lavalink", - [0, 30288, 30293, 30295, 26557, 32842, 30297], - [0, 30303, 6494, 4874, 30306, 30305, 30310, 2026, 4039, 1531, 91, 1984], - [3, 66, 19], - [0, 30297, 2026, 5995, 1851, 5592, 13527, 91, 5284, 2663], - [1, 2343, 26639], - [0, 0, 26640, 26641, 2443], - [0, 3377, 26230, 4255, 1973, 30351], - [0, 5131, 28125, 4354, 1388], - [1, 2343, 26643], - [0, 26645, 26646, 26649, 2523], - "convex-helpers", - [0, 12449, 4549, 12396, 2586, 21016, 32568, 4233, 12447, 32567], - [0, 1414, 1177, 3958, 1894, 3541, 3985, 91, 4874, 15632, 32484, 27706, 27711, 30411], - "intermediate", - "recursively", - [0, 1745, 9102, 25131, 1932, 3958, 32462, 3984, 4549], - [1, 2343, 26652], - "theme-generator", - [0, 26653, 26654, 26655, 2523], - [0, 30416, 30425, 30431, 30434, 30438, 30439, 30441, 30445, 30447, 30449, 30450, 30452], - [0, 48, 4487, 91], - [0, 30455, 5133, 30960, 1851, 5284, 27838, 18969, 30456, 5131], - [1, 2343, 26659], - "dingbat-to-unicode", - "lop", - [0, 26665, 0, 26199, 2443], - "-licenses", - [2, 22190, 26660], - [2, 13888, 26661], - "duck", - "hamjest", - [0, 25766, 30802, 1461, 30809, 2731, 3744, 3776, 89, 3824, 3847, 4649], - "office", - [1, 2343, 26668], - [0, 26669, 0, 26199, 2399], - [0, 89, 3824, 3744, 25766], - [3, 36878, 12], - "ternal-editor", - [1, 2343, 26673], - [0, 26686, 0, 26687, 4139], - "@nestjs/", - [2, 26674, 10896], - "@nestjs/co", - [2, 26676, 686], - [2, 26676, 23], - [3, 31, 9], - [2, 26679, 2026], - [2, 26674, 26680], - [3, 9687, 9], - "wagger", - [2, 26682, 26683], - [2, 26674, 4521], - [0, 4484, 2735, 547, 2858], - [0, 2733, 5130, 1098, 5131, 1896, 8674, 8675, 1591, 8677, 8678], - "@nestjs/cli", - "@nestjs/t", - [2, 26689, 8615], - [1, 5293, 26692], - [0, 8391, 26700], - "asherize", - [2, 6491, 26693], - [3, 12284, 16], - [2, 26695, 2528], - "llaboration-core", - "limiter", - "embla-carousel-reactive-utils", - 1733616000000, - [1, 5293, 26722], - [2, 19183, 26714, 3181], - "eigen", - [3, 578, 11], - "de-highlight", - [2, 26704, 26705], - "@tabler/icons-react", - [3, 3672, 15], - "mantine", - [2, 26708, 26709], - "imple-vars", - [2, 3677, 26711], - "swr", - [3, 25141, 13], - "context-menu", - "peowly", - "context menu", - "server ", - [2, 26718, 4963], - [2, 7519, 26719], - "user ", - [0, 8391, 26723], - 1733961600000, - [1, 5293, 26728], - "experience", - [2, 26721, 26725], - "usability", - [0, 8391, 26729], - 1734220800000, - [1, 2343, 26731], - [0, 0, 26732, 26734, 2537], - [ - 0, 4172, 2278, 34683, 4484, 1177, 4039, 4042, 4086, 4072, 3363, 3561, 2151, 1894, 1367, 1610, 4320, 91, 6375, - 3400, 3566, 30616, 1165, 1540, 6376, 3019, 34673, 1907, 30617, 1938, 1982, 30620, 10817, 1011, 15290, 6392, 1009 - ], - "axe-playwright", - [0, 1623, 2278, 6398, 20897, 1283, 699, 5130, 30622, 27837], - [1, 2343, 26736], - [0, 26737, 26738, 26742, 2537], - [0, 97, 30628, 30666], - [ - 0, 48, 53, 61, 71, 13052, 83, 85, 87, 94, 4856, 6503, 4874, 1178, 1195, 1208, 1290, 30691, 30696, 1389, 1429, - 1431, 31602, 1610, 1177, 2026, 10621, 2832, 2899, 3421, 705, 4039, 4218, 4409, 91, 2282, 4650, 2924, 4677 - ], - [2, 11932, 26740], - "umd-wrapper", - "mapbox", - [0, 6599, 5131, 5592, 29744, 30730], - "mapbox-gl", - [2, 4609, 4056], - [1, 2343, 26748], - "mapboxgl", - "legend", - [0, 0, 26749, 26750, 2443], - [0, 1414, 1429, 1540, 1596, 668, 1177, 2832, 3010, 2899, 2278], - [0, 5284, 5131, 12295, 12296, 7179], - [1, 2343, 26752], - [0, 26753, 26756, 26757, 2487], - [0, 3775, 1473, 1673, 30778, 1209, 1461, 30779, 3376, 30774, 30772, 30776, 15616, 3911, 30770], - " processing", - [2, 2585, 26754], - [0, 11336, 89, 3824, 4880, 4870, 97, 4883, 30783, 972, 968, 974, 20562, 4808], - [0, 89, 12248, 5128, 30731, 30785, 30786, 4627, 4963, 181, 5130, 4967, 5131], - [1, 2343, 26759], - [0, 26760, 26765, 26199, 2537], - [0, 25766, 30802, 30803, 30405, 30458, 1461, 2731, 3744, 3776, 89, 3824, 4649, 30809], - "linkify-it", - "mdurl", - "punycode.js", - "uc.micro", - [0, 30819, 30820, 30822], - "footnote", - [2, 3108, 26766], - [3, 26767, 14], - "r-inline", - [2, 26768, 26769], - "ins", - [2, 3108, 26771], - "ark", - [2, 7613, 26773], - [3, 7617, 14], - [2, 26775, 22164], - "ndoc", - [1, 2343, 26781], - [3, 5956, 14], - [2, 26779, 13218], - [0, 0, 26782, 26783, 2537], - [0, 6066, 1894, 4042, 4045, 12611, 4048], - [0, 4967, 9006, 29633], - "@nx/docker", - [1, 2343, 26787], - "anchor", - [0, 26788, 26789, 26790, 2537], - [0, 16115], - [0, 972, 4880, 4883, 1628, 2144, 2675, 89, 3824, 3895, 4307, 4469, 21180, 4484, 91, 2924, 6482], - [0, 1631, 30845, 30847, 30848, 4627, 6398, 5131, 4453, 1631, 5399, 30858, 32040], - [1, 2343, 26792], - [0, 26793, 26794, 26795, 2399], - [0, 10780, 1437, 1525, 2020, 2151, 3714, 3742, 4135, 4548, 4707, 4726, 4739, 4753], - [0, 30868, 16480, 1414, 2070, 2203, 14775, 30889, 2658], - [0, 30829, 31731, 30870, 5131, 12295, 30871, 12296], - "emojies", - [1, 2343, 26798], - [0, 26801, 0, 26802, 2537], - "emoticon", - "emoticons", - [0, 3533, 30018, 28941, 29602], - [0, 29699, 2942, 6807, 1179, 1745, 29703, 29753], - [1, 2343, 26810], - [2, 26807, 26809], - "from-to", - [2, 4279, 26805], - "lodash.u", - "pdf-text", - "pperfirst", - [0, 26811, 26812, 26813, 34352], - [ - 0, 31834, 31846, 29951, 66, 29890, 5582, 635, 29057, 1091, 1525, 18145, 30089, 31002, 13812, 2822, 26014, 3079, - 3181, 3310, 30095, 4025, 6477, 4135, 4183, 4474, 91 - ], - [0, 1177, 1939, 1959, 1969, 2151, 1192, 2829, 3123, 4039, 30269], - [0, 5593, 1745, 1179, 1783, 5061], - [1, 2343, 26816], - "rows", - [0, 26817, 26818, 26819, 2523], - [ - 0, 7614, 19976, 3445, 1371, 1437, 2020, 2975, 3478, 4484, 1209, 4135, 1593, 3742, 2924, 1457, 2151, 4447, 1525, - 2641, 1483, 1710, 1869, 3884, 13834, 4689, 30459, 4562, 30876, 3885, 30878, 32359, 30882, 9329, 4681, 30890, - 2651, 30895, 30896, 4676, 30899, 30900, 30902 - ], - [0, 36864, 18055, 4883, 8286, 30913, 3904, 33768, 29125, 30915, 30919, 4985, 38298], - [0, 89, 12478, 2924, 1745, 18061, 18063, 467], - [1, 2343, 26821], - [0, 26822, 26823, 26824, 2443], - [0, 4484, 2735, 547], - [ - 0, 3377, 1192, 89, 1177, 4039, 4042, 4468, 2151, 1894, 3824, 91, 5087, 4874, 4880, 4883, 8656, 8660, 972, 2780, - 10817, 968, 1011, 20562, 1009 - ], - [0, 2733, 5130, 89, 5131, 1896, 24364, 8674, 1591, 8677, 8678], - "microtime", - [1, 2343, 26828], - "theredoc", - [0, 0, 26829, 26830, 2537], - [0, 5087, 1009, 1011, 1593, 1596, 1637, 1177, 1192, 2774, 2794, 2832, 30935, 4042, 4468, 91], - [ - 0, 32814, 6422, 6805, 2013, 24800, 31767, 91, 5284, 11512, 4627, 3111, 30430, 11608, 6400, 1936, 9622, 8174, - 30937 - ], - [1, 2343, 26832], - [0, 26833, 0, 26834, 2537], - [0, 1497, 9272, 9273, 3744, 97, 6372, 444], - [0, 89, 5128, 9267, 30943, 6653], - [2, 13090, 4226], - "lazy-cache", - "list-item", - [3, 19516, 13], - "mixin-deep", - "repeat-string", - [1, 2343, 26848], - "glossary", - [2, 4001, 1932], - " of contents", - [2, 176, 26844], - "of-contents", - [2, 16065, 26846], - [0, 26850, 0, 26851, 2487], - "node-bundle-require", - [0, 9273, 3744, 97], - [0, 89, 5128, 9267, 699], - [2, 28001, 28034, 16111], - [1, 2343, 26856], - [2, 24559, 18089], - "gemoji", - [0, 26857, 0, 26858, 4139], - [0, 1497, 3847, 9272, 3744, 97, 5090], - [0, 89, 5128, 9267, 594], - "CommonMark", - [1, 2343, 26861], - [0, 26862, 0, 26863, 2523], - [0, 30963, 30964, 1699, 3547], - [0, 91, 4521, 678, 12659, 4030, 7096, 5592, 30967, 30968, 5995, 30969], - [1, 2343, 26867], - "jsonpointer", - "run-con", - [0, 26871, 0, 26863, 2523], - [3, 11026, 13], - "uilder", - [2, 10829, 2202], - [0, 30978], - "babel-re", - "@markedjs/eslint-config", - "@markedjs/", - "testutils", - [2, 26874, 26875], - "marked-", - [2, 26877, 5342], - [1, 2343, 26884], - "marked-man", - "recheck", - "@egjs/component", - "@egjs/list-differ", - [0, 26886, 26887, 26888, 2537], - "markup", - [0, 1091, 4135, 2105, 30986, 30987, 31339, 20786, 2745, 27168], - [0, 16499, 1983, 1984, 1597, 2071, 91, 36864, 3401, 19232], - [ - 0, 30990, 30991, 20998, 5194, 5130, 2323, 5284, 1936, 6082, 1783, 6710, 30993, 38087, 8674, 12479, 5347, 5348, - 30997, 30998, 30999 - ], - [1, 2343, 26890], - [0, 0, 26891, 26892, 2523], - [0, 1759, 20463, 1763], - [0, 89, 3286, 23803, 1759], - [1, 2343, 26894], - [0, 26896, 26897, 26898, 2537], - "v8-argv", - [0, 31705, 4227, 31044, 4121, 2626, 6473], - [ - 0, 4757, 1192, 3144, 1177, 3266, 1701, 2924, 2151, 2182, 1894, 1610, 3758, 4507, 2794, 91, 53, 5087, 4874, 1615, - 4677, 1195, 29283, 3401, 3878, 4891, 4864, 21122, 8818, 31054, 4681, 31055, 33002, 31057, 2784, 4409, 1895, - 1955, 2780, 4684, 5241 - ], - [0, 89, 5284, 2924, 26375, 11498, 31062, 3000, 2998, 6109, 6609, 2999], - [1, 2343, 26903], - [3, 2718, 14], - "refixer", - [2, 26900, 26901], - [0, 0, 26904, 26911, 2443], - [0, 34264, 2222, 31069], - "vent-listener", - [2, 11352, 26905], - "typed-event-target", - "simple-assign", - "@onesy", - [3, 1441, 29, 6], - [0, 31076, 2220, 2844, 553, 91, 9381, 5130, 1932], - [1, 2343, 26913], - [0, 26918, 26919, 26923, 2523], - "react-medium-image-zoom", - "complex.js", - "latex", - "escape-latex", - [ - 0, 3467, 6482, 1983, 31090, 1371, 1437, 2020, 1759, 1209, 3539, 4135, 1458, 3363, 3471, 2924, 1457, 2151, 2720, - 1894, 1525, 1587, 1483, 1628, 91, 3921, 31091, 31093, 1393, 13223, 1540, 4025, 4307, 31094, 31095, 31096, 31097, - 9322, 3878, 31098, 31099, 31101, 8161, 29182, 31105, 10936, 31106, 31109, 31110, 31111, 2651, 31114, 4679, 4684, - 31117, 12361, 3177, 4676, 31120, 31123, 31125, 4992, 31127, 2135, 24723 - ], - [0, 1192, 89, 2190, 3824, 5087, 4874, 4870, 31131, 4864, 31134, 31138, 4985], - "-natural-sort", - [2, 5284, 26920], - [2, 17414, 3046], - [ - 0, 31140, 6354, 31141, 17944, 31146, 31153, 27837, 5592, 1303, 5130, 27, 1781, 2934, 31154, 33359, 3424, 28438, - 3469, 4030, 7096, 1965, 31155, 12479, 5284, 29727, 31047, 31048, 31045, 31042, 31156, 31171, 5995, 18063, 31175, - 2968, 31176, 89, 6071 - ], - "jsep", - "ndarray", - "-determinant", - [2, 26925, 26926], - [1, 2343, 26937], - [2, 28402, 28403], - "ndarray-gemm", - "ops", - "ndarray-ops", - "ndarray-pack", - "numeric", - "numericjs", - "pad-", - [0, 26939, 26942, 26943, 2537], - "l-time-collaboration", - [0, 53, 4982, 1420, 1595, 31187], - "sylvester", - "zeros", - [0, 4361], - [0, 11525, 8221, 89, 364, 5592], - "mathematics", - "algebra", - "complex", - "fraction", - [1, 2343, 26949], - [0, 26950, 26951, 26952, 2537], - [0, 104, 18089], - [0, 31206], - [0, 1936, 2587, 1172, 23267, 36587, 23266], - [1, 2343, 26954], - [0, 0, 0, 26955, 2537], - [0, 11961, 10339, 10340, 5122, 5995, 1594], - "charenc", - [1, 2343, 26958], - [0, 26959, 26960, 7537, 2523], - [0, 1673, 1511, 31225], - [0, 2675, 1984, 91, 4874, 975, 11976, 192, 11978, 7677, 5467], - [1, 2343, 26962], - [0, 26964, 0, 26966, 2523], - "md5sum", - [0, 1004], - "checksum", - [ - 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, - 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, - 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, - 12094, 31238, 31239 - ], - [1, 2343, 26968], - [0, 26964, 0, 26997, 34352], - [2, 27022, 27023], - "d-character-reference", - [2, 5877, 26970], - [2, 15103, 26971], - [3, 17995, 15], - "decode-n", - "-char", - "-reference", - [2, 6842, 26976], - [2, 26975, 26977], - [2, 10129, 26978], - [2, 26974, 26979], - [2, 26973, 26980], - [3, 26981, 22], - [2, 26982, 1871], - [2, 3370, 16906], - [2, 26973, 26984], - [2, 26973, 5511], - [2, 26973, 553], - [3, 4292, 10], - [2, 26988, 8193], - [2, 9406, 26989], - [ - 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, - 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, - 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, - 12094, 31238, 31260 - ], - [2, 20627, 6660], - [2, 17991, 6147], - [1, 2343, 26996], - [3, 3137, 10], - [0, 27025, 0, 27026, 34352], - [ - 0, 6400, 4967, 12042, 12045, 12047, 1424, 12048, 12049, 12050, 12044, 12056, 12058, 91, 5284, 7521, 5122, 12075, - 12076, 12079, 1623, 1936, 12080, 12082, 12083, 31268 - ], - [1, 2343, 26999], - [0, 26964, 0, 27001, 2537], - [3, 26986, 16], - [ - 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, - 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, - 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, - 12094, 31238, 31276 - ], - "anitize-uri", - [2, 27000, 27002], - [1, 2343, 27007], - "lines", - "trim-lines", - [0, 26964, 0, 27001, 2523], - [2, 3138, 3987], - [3, 12133, 20], - [2, 27009, 3987], - [1, 2343, 27012], - [0, 26964, 0, 27001, 2443], - [1, 2343, 27014], - [0, 27015, 27019, 27020, 2487], - [ - 0, 7709, 33828, 31294, 31296, 28384, 1364, 1532, 1553, 1560, 1575, 1594, 29013, 1874, 2026, 31300, 31303, 2040, - 33596, 13870, 2212, 31305, 2593, 2738, 11993, 2863, 1209, 3173, 3220, 3222, 3237, 3242, 3345, 3478, 12286, - 17009, 4143, 4351, 31306, 1155, 25370, 4729 - ], - [2, 27577, 3432], - "mdn", - "mozilla", - [ - 0, 7806, 38176, 9227, 5601, 7808, 10406, 8264, 4870, 38179, 24156, 4874, 16936, 4891, 9241, 2020, 2659, 3297, - 4342, 91, 1984 - ], - [0, 12322, 3730, 30045, 31310, 31311, 6949, 21611, 31312, 5403, 5995, 4699, 2026, 20863], - [1, 2343, 27024], - [3, 10848, 19], - [3, 2791, 11], - [0, 27037, 0, 27034, 34352], - [ - 0, 188, 4452, 1593, 668, 2822, 2924, 1457, 3084, 1628, 3560, 4027, 4634, 4639, 13152, 53, 1615, 2092, 1165, - 1195, 37215, 31325, 4689, 36119, 3618, 31331, 31332, 4681, 1584, 3676, 31333, 31334, 4645, 31343, 3177, 31347, - 31348, 1549, 31351, 31353, 3463, 21287 - ], - [0, 1745, 1179, 188], - [1, 2343, 27028], - [0, 27029, 0, 27030, 2487], - [0, 3725, 3105, 18587, 3114, 3107, 31343, 13122], - [0, 1745, 1179, 1783, 188, 19469], - [1, 2343, 27032], - [0, 27033, 0, 27034, 2523], - [0, 31332, 3008, 3084], - [0, 1745, 1179, 188, 19469], - [1, 2343, 27036], - [0, 27040, 0, 27034, 34352], - [0, 31331, 3029], - [1, 2343, 27039], - [0, 27075, 27077, 27064, 34352], - [0, 31331, 1615], - [1, 2343, 27042], - [0, 27043, 0, 27034, 4139], - [0, 3412, 31331], - [1, 2343, 27045], - [0, 27046, 0, 27034, 2523], - [0, 31331, 31343], - "@blazediff/core", - [1, 2343, 27049], - [0, 27050, 0, 27034, 2537], - [0, 31331], - [1, 2343, 27052], - [0, 27053, 27054, 27034, 2523], - [0, 1437, 1869, 2151, 2205, 2226, 2570, 4135, 4452, 10761], - [0, 31414], - [1, 2343, 27057], - [3, 26482, 36], - [0, 27058, 0, 27034, 2537], - [0, 1209, 4333, 13092, 4334, 31331, 21288, 31348, 31375, 31425, 31314], - [1, 2343, 27060], - [0, 27061, 27063, 27064, 2537], - [0, 31434, 31435, 31438, 31442, 31444], - "server-only", - [0, 1429, 2899, 4474, 2924, 48, 53, 13693, 4856, 5087, 4874, 3400, 4677, 6503, 85, 94, 87, 31455, 31456, 92], - [0, 31459, 31460, 9439, 31461, 5131, 11194, 4653, 1616, 31462, 31463], - [1, 2343, 27067], - "@types/title", - [0, 27068, 27070, 27064, 4139], - [0, 31435, 31469, 31470], - [2, 27074, 29387], - [0, 1429, 2899, 4474, 2924, 48, 53, 13693, 4856, 5087, 4874, 3400, 4677, 6503, 85, 94, 87, 31456, 92], - [1, 2343, 27072], - [0, 0, 0, 2514, 34352], - "hashring", - [3, 30708, 19], - [0, 3698, 11194, 1582, 31477, 31480], - "jackpot", - [ - 0, 1429, 2899, 1177, 1593, 4474, 2924, 4469, 48, 1628, 91, 53, 13693, 4856, 5087, 4874, 3165, 3400, 4677, 6503, - 4880, 4307, 31484, 5000, 85, 94, 87, 1954, 1959, 1938, 1958, 1895, 1903, 1955, 1970, 92 - ], - "InnoDB memcached API", - [1, 2343, 27082], - "failover", - "hashing", - [0, 27086, 27087, 27064, 2443], - "membase", - "memcache", - "nMemcached", - [0, 31465, 31477, 31480, 31489, 31490, 31492], - [ - 0, 1429, 4653, 2899, 1177, 9420, 1593, 4474, 2924, 1894, 48, 91, 53, 13693, 4856, 5087, 4874, 3400, 4677, 6503, - 85, 94, 87, 1954, 1959, 1938, 1958, 31496, 1895, 1903, 1955, 1970, 92 - ], - [1, 2343, 27089], - [0, 27095, 27070, 27064, 2443], - "@json", - "joy.com/json-pack", - [2, 27090, 27091], - [3, 27092, 13], - [2, 27093, 614], - [0, 4729, 31435, 31469], - "tree-dump", - [1, 2343, 27102], - [3, 7746, 11], - [2, 8184, 3358], - [3, 4490, 14], - [2, 27100, 10896], - [0, 27104, 0, 27116, 2487], - "fs.js", - [0, 1497, 31515], - "in-memory", - "fsa", - " access", - [2, 6771, 27107], - " file system", - [2, 970, 27109], - "webfs", - "crudfs", - "opfs", - "casfs", - "content ", - [0, 31517, 31518, 5131, 12344], - "able storage", - [2, 15427, 27117], - [2, 27115, 27118], - "pvu", - [1, 2343, 27123], - [2, 7467, 11017], - [0, 0, 0, 7983, 2537], - [2, 24399, 4162], - [2, 2068, 7906], - "mem", - "nanocolors", - [1, 2343, 27129], - [0, 0, 0, 27131, 2523], - "memoization", - [0, 1098, 5130, 1388, 17050, 5472, 12899], - [1, 2343, 27133], - [0, 9756, 27137, 27139, 2537], - [2, 27135, 1276], - [3, 5536, 15], - "gulp-exit", - [0, 1166, 1437, 1596, 3421, 4255, 4257], - "ram", - [0, 1111, 14903, 200, 30248, 2966], - [1, 2343, 27141], - [0, 17263, 27142, 27143, 2523], - [ - 0, 23689, 7892, 10410, 4874, 20959, 28502, 1364, 28556, 2323, 31190, 2526, 2765, 31539, 31540, 2272, 3297, 4039, - 4089, 31541, 4130, 4474, 4487, 31194, 91, 31195, 31186 - ], - [0, 1973, 5472, 11132, 13841, 28522], - [1, 2343, 27145], - [0, 0, 27146, 27147, 2523], - [ - 0, 1173, 1178, 14318, 1264, 14237, 1272, 1177, 1881, 13936, 1895, 1935, 1938, 2126, 2675, 1192, 2990, 1894, - 4039, 4535 - ], - [ - 0, 31549, 31550, 31553, 31565, 9006, 3015, 31566, 15813, 10725, 30672, 5066, 15571, 89, 31567, 1098, 188, 12295, - 5131, 28125, 31568, 31569 - ], - [1, 2343, 27149], - [0, 27150, 27151, 27152, 4139], - [ - 0, 17013, 31573, 18695, 1525, 1544, 18671, 2107, 2036, 14940, 18708, 3173, 31576, 4039, 18667, 4449, 18670, - 4547, 18692 - ], - [ - 0, 442, 4856, 9417, 31586, 31593, 6494, 31595, 7746, 4874, 31607, 6520, 31613, 1009, 1011, 31615, 1429, 1431, - 1587, 1177, 1895, 1951, 1954, 1955, 2020, 2116, 2212, 12870, 2899, 3560, 1894, 6021, 4085, 4135, 4193, 4196, - 18698, 4474, 91 - ], - [0, 14932, 1388, 6147, 9381, 4967, 13441], - [1, 2343, 27154], - [0, 27155, 27156, 27157, 2537], - [0, 31573, 14940, 18714, 18675, 4039, 4085, 12937], - [0, 1429, 1431, 2899, 31627], - [0, 9381, 6147, 4967, 1388, 14932, 13441], - "fast refresh", - [1, 2343, 27160], - [0, 27161, 27169, 27157, 2537], - [0, 17013, 2036, 6474, 3173], - "trim-newlines", - [2, 1420, 21640], - [2, 1677, 21640], - "_comments", - [2, 6865, 27165], - [3, 9488, 13], - [2, 27167, 2104], - [0, 1429, 18766, 2026, 2272, 2899, 14942, 4008, 4085], - "-options", - [2, 3183, 27170], - [1, 2343, 27175], - "cat", - "kitten", - [0, 27176, 27177, 27178, 2537], - [0, 2674], - [0, 2292, 2272, 2899, 4170], - [0, 13428, 1388, 14336, 12197, 5472], - [1, 2343, 27180], - [0, 0, 27181, 27182, 2537], - [0, 1173, 1175, 31653, 1264, 1429, 2899], - [0, 1420, 15321, 1623, 965], - [1, 2343, 27186], - "from2", - "is-standalone-pwa", - [0, 0, 27187, 27188, 2537], - [0, 19325, 31265, 1414, 1537, 1894, 3985, 3998, 4039, 4389, 4505, 91, 1906], - [0, 1936, 18944, 18089, 6843, 11043, 1213, 31661], - [2, 3028, 5056], - "stat-mode", - "ware", - [1, 2343, 27197], - "drafts", - [2, 10722, 27193], - "dir-equal", - [2, 15340, 27195], - [0, 0, 27187, 27198, 2523], - [0, 1936, 31670, 18944, 18089, 6843, 11043, 1213, 31661], - [1, 2343, 27200], - [0, 0, 27187, 27201, 2537], - [0, 1936, 18944, 18089, 6843, 11043, 1213], - "7zip-bin", - "node-7z", - "er-helper", - [2, 18536, 27204], - [2, 3306, 27205], - [1, 2343, 27208], - [0, 0, 27209, 27210, 2537], - [0, 19325, 31265, 1414, 1537, 2577, 2584, 1894, 3971, 3985, 3998, 4039, 4389, 4505, 91, 4549, 1906], - [0, 1936, 18944, 26934, 6843, 11043, 31661, 31676, 1213], - [1, 2343, 27212], - [0, 27213, 22487, 27214, 2537], - [0, 31701], - [0, 1473, 7208, 6616, 1623], - [1, 2343, 27216], - [0, 0, 23215, 27217, 2523], - [0, 965, 1936, 14186, 34254, 11590, 1644, 1646], - [1, 2343, 27219], - [0, 27220, 16487, 27222, 2537], - [0, 2053, 31724, 20273], - "@surma/rollup-plugin-off-main-thread", - [0, 1739, 1745, 8623, 1179, 1783, 5354, 26096], - "asyncro", - [3, 1225, 32], - [2, 27224, 6567], - [3, 13998, 31], - [2, 7256, 591], - [2, 27226, 27227], - [1, 2343, 27236], - "throw-", - [2, 27230, 27227], - [2, 69, 27231], - "directory-", - [2, 27233, 1633], - [3, 16482, 15], - [0, 0, 27240, 27241, 2523], - "evelopit", - [2, 27235, 27237], - "merge-d", - [0, 2899, 1429, 2759], - [0, 1623, 6413, 3766, 31991, 5131, 1644, 3529], - "river-install", - [2, 27239, 27242], - [2, 3382, 27243], - [1, 2343, 27247], - [2, 14585, 6082], - [0, 0, 27248, 27249, 2487], - [0, 1596, 2759], - [0, 1871, 3656, 16906, 1623, 25232, 6422], - [1, 2343, 27253], - [2, 9280, 20627], - [2, 17991, 27251], - [0, 27254, 27268, 27269, 2537], - [0, 1634], - "factory-space", - [2, 17991, 27255], - [3, 17995, 17], - "unked", - [2, 27257, 27258], - [3, 17995, 16], - "ombine-extensions", - [2, 27260, 27261], - [2, 26973, 10368], - "resolve-all", - [2, 26973, 27264], - "ubtokenize", - [2, 27000, 27266], - [0, 1414, 668, 1177, 2899, 4042, 4228], - [0, 1623, 15215, 2632, 3178, 16918, 16919, 31748], - [1, 2343, 27271], - [0, 27272, 27273, 27274, 2537], - [0, 1147], - [0, 1177, 1895, 1955, 1894, 4384], - [0, 5675, 57, 7119, 200, 1523, 7058, 16159, 31759], - "fill-range", - "@ember-tooling/blueprint-model", - "bracket", - [2, 24559, 1227], - [1, 2343, 27283], - "expansion", - "extglobs", - "lookahead", - [0, 27284, 0, 27286, 4139], - [0, 1122, 1125, 31764, 1129, 1532, 2220, 2222, 2817, 18023], - "lookaround", - [0, 31775, 5995, 2195, 31776], - "lookbehind", - [1, 2343, 27290], - "negate", - [0, 27294, 0, 27295, 2537], - "negation", - [2, 7623, 22245], - "posix", - [0, 2817, 3502, 18023], - [0, 31775, 5995, 13531, 20999], - [1, 2343, 27297], - [0, 27300, 0, 27305, 2537], - [3, 7746, 12], - [2, 27298, 1747], - [0, 1532, 2817, 3181, 3502, 18023, 31802], - "mime-score", - "runmd", - [2, 4865, 27304], - "rex", - [0, 31775, 5995, 17977], - [1, 2343, 27307], - [0, 27308, 0, 27309, 2537], - [0, 31809, 2714, 2867, 3181], - [0, 31775, 5995, 31804, 31812], - [1, 2343, 27311], - [0, 27312, 0, 27313, 2523], - [0, 1122, 1125, 31764, 1129, 1532, 2220, 2222, 2817, 3502, 18023], - [0, 31775, 5995, 2195], - "Min Heap", - "min heap", - "maxheap", - "min-heap", - "heap", - "Binary Heap", - "binary-heap", - [2, 7247, 17709], - [2, 27318, 27321], - [2, 27315, 27321], - " binary tree", - [2, 15773, 27324], - "heapify", - [2, 13199, 2656], - "heap sort", - "@utoo/pack", - "heapify up", - [1, 2343, 27335], - "heapify down", - "Priority Queue", - "priority", - [0, 27342, 0, 27345, 2537], - " queue", - [2, 27334, 27336], - [3, 18020, 13], - "-queue", - [2, 27334, 27339], - "priority q", - [0, 1122, 1125, 31764, 1129, 2817, 3502, 18023], - "priorityQ", - [3, 27325, 15], - [0, 31775, 5995, 17978], - "extract min", - "min ", - [2, 27347, 27337], - " priority", - [2, 7287, 27349], - [1, 2343, 27361], - "ing property", - [2, 4327, 27352], - " resizing", - [2, 14000, 27354], - "priority-", - [2, 27356, 20332], - [2, 27357, 26754], - [2, 11512, 27349], - [2, 3768, 27349], - [0, 0, 0, 27362, 2537], - [0, 31775, 5995], - "decrease key", - [1, 2343, 27367], - "increase key", - "searching", - [0, 27368, 0, 27362, 2399], - [0, 3502], - [1, 2343, 27370], - [0, 0, 27371, 27372, 34352], - [0, 5087, 4874, 1596, 2070, 1192, 2822, 31851, 4468, 4487, 4490, 31194, 91], - [0, 36720, 7119, 57, 22856, 5131, 31568, 7310, 28125, 888, 8549, 1388, 18691], - [1, 2343, 27374], - [0, 27375, 27376, 27381, 2487], - [0, 3127, 3725, 31872, 31873, 31869, 8959, 6330], - [ - 0, 1192, 1170, 2675, 2968, 1177, 3188, 4039, 4042, 4333, 1637, 1457, 32826, 1894, 11401, 1610, 1193, 53, 1532, - 2990, 2997, 3400, 1387, 13834, 8648, 87, 1939, 31897, 31901, 4048, 68, 1938, 4077, 4069, 1895, 1955, 4055, - 31899, 1567, 4067 - ], - "@putout/minify", - "b64-images", - [2, 1625, 27378], - "readjson", - [0, 2295, 1739, 1745, 31903, 1179], - [1, 2343, 27383], - [0, 27384, 27389, 27396, 2399], - [0, 3445, 1437, 4747, 1544, 31910, 17964, 1836, 2151, 2182, 3084, 31915, 3000, 4151, 4562, 21847, 31911, 1549], - "try-catch", - "@arktype/attest", - "bench-node", - "try-to-catch", - [0, 1166, 1594, 2020, 2675, 1177, 4039, 4042, 2990, 31917, 4257, 19286, 31919], - "escover", - [3, 19709, 16], - "tout", - [2, 27391, 27392], - "madrun", - "supertape", - [0, 17964, 2295, 1739, 1745, 31903, 1179, 200], - [1, 2343, 27398], - [0, 27399, 0, 27400, 2523], - [0, 31939], - [0, 965, 31838, 2814, 5131, 35059], - "brace", - [1, 2343, 27405], - "-expansion", - [2, 27401, 27403], - [0, 27409, 27410, 27411, 2537], - [2, 25824, 27403], - [2, 4853, 27406], - "zstandard", - [0, 37135, 1209, 3847], - [ - 0, 48, 53, 87, 90, 1193, 1503, 1843, 1845, 1177, 1895, 1903, 31952, 1938, 1954, 1958, 1959, 1970, 1192, 1894, - 31953, 3744, 3775, 89, 3824, 3904 - ], - [0, 1843, 1192, 8745, 21009, 3717, 1448, 6270, 5472, 2275, 1973], - "jest-fixed-jsdom", - [1, 2343, 27414], - [0, 27415, 0, 27416, 2523], - [0, 1086, 31969, 1362, 31970, 4484, 4734], - [ - 0, 12666, 1149, 31972, 31973, 31974, 31975, 20672, 31976, 31977, 7682, 2090, 158, 3097, 6774, 5131, 31978, - 31979, 1644, 1862, 3972, 31980, 2056 - ], - [1, 2343, 27419], - [2, 27423, 13083], - [0, 0, 8134, 27420, 34352], - [0, 1867, 23615, 1936, 18944, 18089, 31998, 2574, 20215, 6435, 1283, 23584, 6692, 22982, 4741, 32000, 32002], - [3, 927, 11], - [1, 2343, 27429], - [3, 1915, 14], - [2, 27426, 15001], - "signed", - "@prettier/", - [2, 19569, 27530], - "certificate", - [0, 27430, 27431, 27432, 2523], - [0, 1448, 32006, 1869, 1291, 1180, 1287, 2151, 32007, 3127, 3183, 37708], - [0, 1173, 1208, 1240, 1280, 1503, 32009, 1177, 2899, 3421], - [0, 1776, 5592, 1746, 1745, 6789, 32011, 6746, 32013, 7221, 32015, 7011, 32016, 6615, 32018, 7194, 32019, 32027], - "fast-archy", - [1, 2343, 27435], - [0, 0, 9839, 27436, 2537], - [0, 1177, 6741, 6939, 1932, 9711, 5547, 3624, 2295, 1745], - [1, 2343, 27439], - "ufo", - [0, 0, 27446, 27452, 2537], - [3, 28920, 12], - "dom-selector", - "jest-stencil-runner", - "fast-color", - [2, 2023, 9463], - [2, 21195, 27444], - [0, 2212, 4257, 4389], - "mobservable", - "reactive", - "frp", - [3, 19780, 13], - "active", - [0, 1745, 3966, 32037, 27018, 32038, 30248, 202], - [1, 2343, 27460], - "-programming", - [2, 27451, 27454], - [2, 27450, 27455], - [3, 17943, 11], - [2, 6649, 27457], - "data flow", - [0, 15821, 27461, 27462, 2537], - [0, 4874, 1414, 1894, 3985, 3998, 4481, 4505, 91, 1906], - [0, 23266, 2587, 23267, 614, 6435, 1936, 2741, 11512], - [3, 517, 14], - [2, 3191, 1422], - [3, 31504, 15], - [1, 2343, 27469], - [2, 13163, 10101], - "expose-gc", - [0, 15821, 27461, 27473, 2487], - "-detector", - [3, 20575, 13], - "thingies", - [0, 23266, 2587, 23267, 614, 6435, 1936, 1623, 3585, 1644], - "browser-st", - "dout", - [2, 27474, 27475], - "yargs-", - "@types/depd", - "rser", - "unparser", - [2, 27477, 27480], - "@11ty/posthtml-urls", - "inclu", - "-language", - [2, 8785, 27484], - [2, 27483, 27485], - [2, 5340, 27486], - "@moch", - "a/docdash", - [2, 27488, 27489], - "fail-", - "on-e", - [2, 10372, 4408], - [2, 27492, 27493], - [2, 27491, 27494], - "s-utils", - [2, 13587, 27496], - "inline-links", - [2, 3986, 27498], - "rewiremock", - "unexpected", - [2, 668, 27511], - "-eventemitter", - [2, 27501, 27503], - [3, 27504, 11], - [2, 27505, 3053], - [2, 27505, 3065], - [3, 27507, 12], - [2, 27508, 2917], - "uslug", - [3, 1208, 16, 5], - "@11ty/recursive-copy", - "node-retrieve-globals", - [2, 9374, 27515], - "match-helper", - [1, 2343, 27522], - [2, 5329, 11807], - [2, 5340, 23767], - [2, 9309, 27520], - "node-loader", - "@zachleat/noop", - [0, 27523, 27524, 27527, 2537], - [0, 12396, 23288, 23289, 3746, 4233, 23257, 23258], - [0, 7729, 4874, 1414, 2854, 3493, 1894, 3985, 3998, 4505, 91, 1906], - "test-console", - "xmllint", - [0, 23266, 2587, 23267, 614, 6435, 1936, 3493, 6892, 1633], - [1, 2343, 27529], - [0, 15821, 23215, 27535, 2523], - "-exports", - [2, 151, 27533], - "lcov", - "moji", - [2, 9477, 7204], - [0, 23266, 2587, 23267, 614, 6435, 1936, 6941, 11512, 32101, 32122, 3661], - [1, 2343, 27538], - [2, 120, 28708], - [0, 27539, 27540, 27541, 4139], - [0, 24566], - [0, 1999, 3165, 1894, 4387, 4389], - [0, 6892, 1936, 1644, 1646], - "define-", - [2, 14678, 3205], - [2, 27542, 27543], - [1, 2343, 27548], - "-descriptors", - [2, 9395, 27546], - [0, 0, 27560, 27561, 2523], - "-val", - "ue-fixtures", - [2, 27549, 27550], - [2, 5600, 27551], - [3, 7810, 10], - "-each", - [2, 27553, 27554], - "s-have-names", - [2, 23238, 27556], - [3, 18432, 11], - [2, 27558, 7083], - [0, 4874, 1414, 23276, 2577, 2584, 3310, 1894, 3985, 3998, 4505, 91, 1906], - [0, 1936, 23670, 10381, 1213, 11512, 32143, 12616, 7102], - "@types/gopd", - [3, 6497, 11], - [2, 27563, 19065], - [3, 4637, 11], - [2, 27565, 20102], - [2, 27563, 27566], - [2, 27563, 2568], - [3, 18491, 11], - [2, 27569, 18985], - [2, 13201, 4552], - [3, 26581, 12], - [2, 27572, 19072], - [3, 27573, 13], - [2, 27574, 19077], - [2, 27572, 15058], - [3, 8860, 14], - [2, 27577, 3430], - [3, 8860, 13], - [2, 27579, 3022], - [1, 2343, 27582], - [0, 27583, 0, 27584, 2523], - [0, 1676], - [0, 27, 2671, 2934, 2026, 2078, 32897, 30135, 33117, 32150, 32153, 32154, 32897, 30131, 32155, 5995], - "@sap/hana-client", - [1, 2343, 27587], - [0, 0, 21181, 27588, 2537], - [0, 1623, 5260, 32164, 3561], - [1, 2343, 27590], - [0, 27591, 27592, 27594, 2537], - [0, 2711], - [0, 24118, 24114], - "hrottler", - [0, 1172, 89, 2711, 5130, 10772, 24120, 23361], - [1, 2343, 27596], - [0, 27591, 27597, 27594, 2487], - [0, 32144, 32191, 24118, 24114], - [1, 2343, 27599], - [0, 0, 0, 27600, 2537], - [0, 1172, 89, 2711, 5130, 10772, 24120, 1936, 24122, 36, 965, 1388, 4042, 32199, 32200, 6802], - "unix-dgram", - "webidl2", - "unittest", - [1, 2343, 27605], - [0, 0, 27606, 27607, 2537], - [0, 1700, 2323, 1637, 3561, 2494, 32214, 2482, 2549, 32215], - [0, 1623, 6398, 6400, 5130, 5122, 32219], - [2, 2364, 21928], - "-phantomjs", - [2, 2463, 27609], - [1, 2343, 27613], - "mockJSON", - [0, 27615, 27616, 27617, 2537], - "mockAjax", - [0, 3220, 4110], - [0, 1149, 2228, 2258, 2274, 2281, 2314, 1776, 1209, 705], - [0, 1367, 32226, 32227, 1745, 1776, 18011, 699], - [1, 2343, 27620], - "faste", - [0, 0, 27621, 27625, 2487], - [0, 23689, 4874, 28502, 2765, 2272, 4130, 4487, 31194, 91, 31195], - "st-validator", - [2, 27619, 27622], - [2, 5310, 2282], - [0, 1973, 5472, 11132, 13841, 28522, 2765], - "@icebob/node-memwatch", - [1, 2343, 27642], - "@types/bunyan", - "oredis", - [2, 8802, 27629], - "no", - "@types/pino", - "avsc", - [2, 1317, 1289], - "cbor-x", - "dd-trace", - "etcd3", - "event-l", - "oop-stats", - [2, 27638, 27639], - "fakerator", - [0, 27653, 27661, 27663, 2523], - "gc-stats", - "jaeger-client", - "kafka-node", - "-repl", - [2, 3219, 27646], - "msgpack5", - "nats", - "node-n", - "ats-streaming", - [2, 27650, 27651], - [0, 16738, 35957, 7824, 2798, 3717, 4468], - [2, 29351, 4255, 591], - "notepack.io", - "redlock", - "rhea-promise", - "thrift", - "v8-natives", - [2, 4712, 13083], - [ - 0, 32243, 10, 13, 16, 19, 21, 24, 26, 30, 32, 34, 53, 87, 192, 22559, 19181, 442, 16738, 8755, 554, 4864, 5087, - 4874, 5254, 1009, 1011, 27726, 1193, 1437, 16307, 1567, 1610, 10936, 1177, 1895, 1938, 1939, 1942, 1955, 2020, - 2151, 32245, 2070, 2203, 2675, 1192, 2780, 2832, 3534, 1894, 4039, 4094, 4135, 4484, 4494, 4507, 91, 4523, 4769 - ], - [3, 14584, 12], - [0, 1192, 91, 1098, 5472], - "messagebus", - [1, 2343, 27667], - "distributed", - [0, 27668, 27670, 27671, 2523], - [0, 11518, 1420, 1437, 1457, 1525, 1544, 16082, 3445, 3613, 3616, 4200, 4207, 33212, 4562, 4729], - "ppsm", - [ - 0, 53, 368, 7948, 370, 554, 811, 816, 32251, 842, 16145, 966, 968, 972, 974, 11485, 5087, 19799, 4874, 4880, - 4883, 24370, 10844, 9241, 1009, 1011, 1030, 32252, 10783, 1165, 1610, 1177, 1895, 1903, 1938, 1953, 1958, 1959, - 1192, 2802, 695, 3363, 3400, 3561, 37015, 32253, 1894, 89, 3824, 3847, 4039, 4042, 8849, 4057, 15277, 2278, - 4315, 4383, 91, 1983, 32255 - ], - [0, 5472, 1192, 4967, 17758, 1676, 32264], - [1, 2343, 27673], - [0, 27674, 27675, 27676, 4139], - [0, 2757, 32269], - [0, 32272, 32273, 2398, 2036, 2899, 5354], - [ - 0, 21738, 13230, 1676, 1739, 1745, 16284, 8623, 1179, 2036, 1383, 6706, 3430, 32275, 32277, 1209, 6807, 1783, - 1283, 5354, 26096 - ], - [1, 2343, 27682], - "zone", - "timezone", - "olson", - "iana", - [0, 27683, 27684, 27685, 2399], - [0, 32281], - [0, 3088, 3310, 1187], - [0, 3088, 32289, 4017, 36, 5995], - [2, 5335, 553], - [2, 1351, 27686], - [2, 21289, 27687], - "-provider", - [2, 2138, 27689], - [2, 23107, 27690], - [2, 21289, 27691], - [2, 21289, 553], - "worker-", - [2, 27694, 10057], - [2, 21289, 27695], - [3, 27687, 16], - "extdocument", - [2, 27697, 27698], - [2, 4619, 27699], - [3, 27700, 23], - [2, 27701, 103], - "vscode-uri", - [1, 2343, 27721], - "cohaszing", - [2, 15276, 27705], - [3, 25072, 11], - "monaco", - "@remcohaszing/eslint", - "remcohaszing", - [2, 3996, 27710], - "yaml-l", - [2, 15675, 2995], - [2, 27712, 27713], - [2, 27716, 27717], - [3, 162, 22], - "tegrations-common", - [2, 8214, 27719], - "-pattern", - [2, 10853, 11597], - [0, 27727, 27728, 27729, 4139], - "monads", - "either", - "maybe", - "result", - [2, 1101, 1177], - [0, 26987], - [0, 4874, 1414, 3167, 1894, 3985, 3998, 4505, 91, 1906], - [0, 3167, 32300, 32301, 10381, 7131, 32303, 1936, 3987, 1783, 4549], - "-connect", - [2, 1304, 27730], - "paginator", - [2, 10784, 27732], - [1, 2343, 27736], - "free-swig", - [0, 0, 0, 27741, 2537], - "gridfs-stream", - "mongodb-", - [2, 3764, 57], - [2, 27738, 27739], - [0, 3167, 614, 6435, 1936, 10368], - [2, 17037, 15988], - [2, 22785, 4408], - "@types/rollup", - "istration", - [2, 20897, 27745], - "GUI", - [1, 2343, 27753], - "manage-mongo", - "phpmyadmin", - "UI", - "web-based", - [0, 0, 0, 27754, 2399], - [0, 3167, 614, 6435, 1936, 10381, 1213], - [1, 2343, 27756], - [0, 0, 27763, 27766, 2537], - "@mon", - "godb-js/saslprep", - [2, 27757, 27758], - "-string-url", - [2, 21404, 27760], - [2, 27738, 27761], - [0, 16268, 2228, 2272, 3220, 4720, 4535, 17565, 2296, 32324, 2283, 2253, 2273, 2281], - "socks", - "snappy", - [0, 4576, 5131, 7310, 31568, 13735, 22856, 1388, 15525, 32334, 32336], - "mocha-sinon", - "gcp-metadata", - "legacy", - [1, 2343, 27783], - "erberos", - [2, 13053, 27771], - [3, 7814, 10], - "lprep", - [2, 27773, 27774], - "v8-heapsnapshot", - [3, 27759, 12], - "zstd", - [2, 27777, 27778], - [3, 15507, 14], - [2, 27780, 1002], - [2, 9415, 1435], - [0, 27794, 27808, 27809, 2537], - "mongodb-c", - [2, 20203, 7141], - [2, 27784, 27785], - [3, 1982, 16], - "@jimp/js-bmp", - "used-imports", - [2, 27787, 27789], - [3, 13547, 28], - [2, 27791, 591], - "@jimp/js-gif", - [0, 16868], - "@jimp/js-jpeg", - "@jimp/js-png", - "@jimp/js-tiff", - "kareem", - "mpath", - "mquery", - "sift", - [2, 27804, 27811], - "acquit", - [3, 24788, 12], - "acquit-ignore", - "acquit-", - [2, 27806, 3209], - [0, 1192, 1177, 4468, 1894, 91, 5087, 4874, 16874, 1895, 1011, 1009], - [0, 32345, 32346, 1623], - [2, 3044, 5056], - "-blit", - "odm", - [2, 27815, 27816], - "datastore", - [3, 27802, 15], - "ur", - [2, 27818, 27819], - [3, 27802, 13], - "circle", - [2, 27823, 27824], - "-callbacks", - [2, 1292, 27821], - [3, 27817, 14], - "olor", - [2, 27828, 27831], - "node-monitor", - [2, 21004, 14837], - [3, 27820, 15], - "probe", - "JMX", - "ntain", - [2, 27828, 10177], - [2, 27823, 9970], - [2, 27818, 27836], - [2, 9280, 3233], - "displace", - "dashboard", - "monitoring", - "control ", - [2, 27839, 9872], - [2, 27842, 27843], - [3, 27834, 15], - "ther", - [2, 27818, 27860], - [3, 6503, 9], - "ngodb", - [2, 27845, 27846], - "-middleware-cast-ids", - [2, 3236, 27848], - [3, 27849, 16], - "fields", - [2, 27850, 27851], - "-callback", - [2, 2034, 27853], - [2, 27850, 27854], - [2, 27850, 14690], - [2, 27850, 3766], - [2, 9251, 21404], - [2, 27850, 27858], - "fisheye", - "gitbook-cli", - "gitbook-", - "plugin-a", - "nker-enable", - [2, 27863, 27864], - [2, 27862, 27865], - [3, 27866, 15], - [2, 5317, 4147], - [2, 27867, 27868], - [2, 27876, 27877], - "edit-link", - [2, 27867, 27871], - [2, 27867, 2195], - [2, 27867, 588], - [2, 27850, 1676], - [3, 27844, 14], - "lip", - [2, 27818, 3428], - [2, 27818, 10098], - [2, 27818, 24171], - [2, 27818, 27882], - "quantize", - [2, 27818, 24800], - [2, 27885, 27886], - [3, 27883, 14], - "otate", - [2, 27818, 17487], - "@jimp/utils", - [1, 2343, 27903], - [2, 27891, 27892], - "@jimp/co", - "nfig-eslint", - [2, 24787, 27894], - [3, 549, 17, 16], - [2, 27896, 1984], - [3, 27890, 13], - "commist", - "node-self", - "help-me", - [2, 1983, 27901], - [3, 19232, 22, 6], - "mqtt-packet", - [0, 27906, 23215, 27911, 2487], - "-allocator", - [2, 6988, 27904], - [0, 9315, 34578, 31644, 26972, 32360, 32364, 32365], - [2, 19332, 6706], - "wsl-utils", - "monocart-coverage-reports", - "worker-timers", - [0, 1644, 1936, 6843, 11043, 18944, 18089], - "aedes-cli", - [3, 5616, 9], - [2, 27913, 202], - [2, 11932, 27914], - "leak", - "ed-handles", - [2, 27916, 27917], - "mqtt-", - [2, 27919, 21404], - "tinyglobby", - "node-style-text", - "level-store", - [2, 27919, 27923], - [1, 2343, 27929], - "/subscribe", - [2, 20001, 27926], - [2, 19177, 1783], - [0, 0, 0, 27932, 2537], - [2, 27931, 29682], - [3, 218, 19], - [0, 3561, 22147, 676, 134, 89, 1623, 32372], - [2, 26343, 27934], - "ibus-quod", - [1, 2343, 27937], - "@tediousjs/connection-string", - [0, 27938, 21181, 27941, 2523], - [0, 16837], - "msnodesql", - "tds", - [0, 1623, 5260, 3561], - "node-tds", - "qlserver", - [2, 3343, 27943], - "msnodesqlv8", - "node-m", - [1, 2343, 27950], - "node-mssql", - "list-dependents-cli", - [0, 0, 27951, 27952, 34352], - [ - 0, 53, 87, 32389, 10706, 32390, 1177, 2765, 2297, 2881, 2886, 2895, 2898, 2910, 2923, 29946, 3750, 3758, 4042, - 4045, 6390, 4071, 4073, 25238, 824 - ], - [0, 22562, 3758, 3541, 13428, 32395, 32396, 5926, 5472, 11132, 3750, 28522, 824, 30271], - "@bundled-es-modules/cookie", - [3, 27953, 20], - "until-async", - [1, 2343, 27965], - [3, 546, 12], - "nfirm", - [2, 27957, 27958], - "@types/sta", - "tuses", - [2, 27960, 27961], - "headers-", - [2, 27963, 6422], - [0, 27970, 27971, 27972, 34352], - [2, 8140, 14643], - "json-bigint", - "page", - "page-with", - [0, 1282, 2555, 3744], - [0, 1389, 1391, 1437, 1700, 2323, 2351, 2404, 2494, 32402, 2530, 2541, 3159, 32405, 89, 3824, 4603], - [0, 89, 5128, 4384, 32410, 4453, 6380, 2555, 5131], - [1, 2343, 27974], - [0, 27975, 27976, 27977, 4139], - [ - 0, 32421, 688, 28208, 691, 9712, 9296, 1091, 1092, 1437, 1458, 1543, 1676, 2226, 2687, 2822, 12284, 3173, 3422, - 3423, 3467, 3742, 4135, 4183, 4213, 6479, 176, 36864, 28731, 4548, 13291 - ], - [ - 0, 11976, 192, 5467, 9737, 32432, 29355, 27654, 811, 8850, 816, 6373, 5245, 7637, 7746, 7812, 5254, 28736, - 28557, 7677, 36874, 2675, 2931, 3297, 1890, 12285, 1894, 4042, 15277, 4494, 4507, 91, 1984 - ], - [0, 5592, 1118, 2210, 1745, 27662, 29370, 3422, 3452, 29369, 29365, 29368, 29367, 28360, 9591, 8124], - "append-field", - [1, 2343, 27980], - [0, 0, 27985, 27987, 2443], - "fs-temp", - "testd", - "ata-w3c-json-form", - [2, 27982, 27983], - [ - 0, 5535, 972, 5087, 4880, 4883, 34722, 1009, 1011, 1597, 1701, 1177, 1895, 1955, 1959, 1961, 2193, 32447, 1192, - 32448, 3165, 30935, 32449, 1894, 89, 3824, 34725, 4201, 4468, 91, 32450 - ], - "formdata", - [0, 89, 31611, 5128, 20542, 4439, 32453, 1473, 6400, 13161, 30858, 3807, 7320, 31152, 6653, 32454], - [1, 2343, 27989], - [0, 27990, 27991, 27993, 2537], - [0, 11804], - [0, 87, 90, 4880, 1843, 1845, 1192, 3775, 3904, 4042, 4045, 4055, 4067], - "array-union", - [0, 4576, 5131, 7310, 31568, 13735, 22856, 1388, 32464, 32465, 15525, 11415, 7201], - [3, 20454, 11], - "oxy-addr", - [1, 2343, 27997], - [0, 0, 27998, 28000, 2537], - [ - 0, 192, 4874, 4880, 4883, 4887, 1009, 23648, 1177, 1895, 21564, 1938, 1953, 1955, 1958, 1959, 2675, 1192, 2990, - 3165, 1894, 3720, 89, 3824, 3885, 3889 - ], - "pend", - [0, 89, 7433, 38, 3884, 3885, 32473, 3286], - [3, 32265, 24], - "@jsumners/line-reporter", - [1, 2343, 28005], - "vue-drag", - [0, 0, 28006, 28011, 2537], - [ - 0, 3421, 2832, 2297, 2899, 89, 3875, 4193, 1145, 1177, 1209, 3698, 4072, 9381, 1503, 1593, 3729, 2924, 1317, - 3824, 32487, 91, 53, 4874, 2900, 3876, 4880, 1195, 8821, 2925, 107, 2069, 4883, 87, 4884, 1959, 3904, 32488, - 966, 2904, 2881, 2912, 2895, 38299, 1011, 11470 - ], - "test report", - "html ", - "html report", - " to ", - [0, 2062, 4162, 89, 3797, 32491, 1693], - "json to html", - [1, 2343, 28014], - [0, 0, 0, 28015, 2537], - [0, 3857, 5131, 12295, 12296, 6574, 2090, 11328, 30045, 32497, 2636, 2295], - [1, 2343, 28017], - [0, 0, 28018, 28019, 2537], - [0, 97, 4880, 5091, 89, 3857, 91], - [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 15571, 35060, 32504, 158, 32505], - [1, 2343, 28021], - [0, 26338, 28028, 28029, 2523], - "tory-reporter", - [2, 2916, 28022], - "mezr", - "web-a", - "nimations-js", - [2, 28025, 28026], - [0, 1178, 1177, 1879, 1895, 1938, 1947, 1955, 1959, 1894, 32510], - [0, 3857, 5128, 31912, 89, 5131, 12295, 181, 3730, 32516, 27819, 9906, 10036, 32527, 32529, 1478, 7521], - "bin-packing", - [1, 2343, 28032], - [0, 28037, 28041, 28053, 2537], - [2, 20876, 28090], - "autolink-", - [2, 28001, 26766], - "sqlstring", - [0, 1654, 32535, 1655, 1660, 3744], - [2, 27679, 2085], - "urun", - "utest", - [ - 0, 32538, 10821, 14689, 10828, 32540, 1178, 1193, 38304, 1668, 1177, 1903, 1938, 1954, 1958, 1959, 32541, 1970, - 2675, 1192, 2990, 1894, 3720, 89, 3857, 32510, 3904 - ], - [2, 28050, 28065], - [2, 28887, 28044], - "v2", - "aws-s", - "sl-profiles", - [2, 28045, 28046], - "generate-", - [2, 28048, 3046], - [3, 29934, 12], - "placeholders", - [2, 5773, 28051], - [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 13814, 15480, 9816, 1653], - [1, 2343, 28055], - [0, 28060, 28061, 28062, 2487], - "assert-diff", - "sync-await", - [2, 15907, 28057], - "poku", - [0, 2018], - [0, 5079, 1177, 21166], - [0, 3857, 5128, 31912, 89, 5133, 5131, 12295, 12296, 181, 24633, 32543, 32552], - [1, 2343, 28064], - [0, 28066, 28068, 28070, 4139], - "vitest-pool-workers", - [0, 21174, 4649], - "thenify", - [ - 0, 32558, 48, 53, 5241, 85, 87, 14128, 90, 365, 370, 6372, 811, 816, 6373, 972, 20562, 4880, 1178, 1193, 1610, - 1177, 1895, 1935, 1939, 1958, 1959, 1961, 2126, 29945, 2193, 32559, 1192, 30935, 1894, 3720, 89, 3824, 32561, - 3904, 4039, 4042, 4045, 4073, 91 - ], - [2, 31468, 31471], - [0, 89, 32225, 30245, 4627, 5398, 8190, 8191], - [1, 2343, 28077], - "bats", - [2, 28075, 28493, 28553], - "switcher", - "@", - "@prisma/dmmf", - [0, 28079, 28081, 28082, 4139], - "gable-next", - [0, 32571, 31528, 1461], - [3, 29754, 14], - [ - 0, 30533, 5535, 966, 968, 972, 32573, 4859, 4874, 4880, 4883, 1030, 16480, 1651, 2832, 23535, 89, 3824, 4201, - 1531, 4484, 91, 1984 - ], - [0, 89, 6398, 5066, 5131, 9320], - [1, 2343, 28086], - [2, 28085, 3259], - [3, 28092, 16], - [0, 28087, 28089, 28096, 2399], - [0, 4484, 32597], - "couchdb", - [0, 32632, 5535, 4201, 89, 3824], - "spanner", - [2, 30534, 4675], - "@testcontainers/postgresql", - "fastest-", - [2, 28093, 18729], - "rtl-css-js", - [0, 89, 590, 1623], - [1, 2343, 28099], - "iconista", - [0, 0, 28102, 28104, 2537], - "pnpm10", - "libreact", - [0, 1148, 2899, 3697], - "jsxstyle", - [0, 1623, 1473, 32453, 2585], - [1, 2343, 28106], - [0, 28107, 0, 7573, 2523], - [0, 32733, 1004, 32730, 32737, 32739, 32744, 32722, 32736, 32741, 32720, 32678, 32725, 32727], - [1, 2343, 28109], - [0, 0, 28110, 27147, 2523], - [ - 0, 53, 87, 92, 192, 5467, 5583, 16952, 6373, 10615, 5087, 4874, 1009, 1011, 1031, 17584, 1178, 1193, 19839, - 1540, 1610, 1177, 1903, 1938, 1954, 1958, 1988, 2193, 2675, 2742, 1192, 2780, 2990, 4039, 4042, 4076, 91, 4630 - ], - [2, 30495, 28112], - "lysia", - [1, 2343, 28114], - [0, 0, 28124, 24467, 4139], - "gitcloud", - "hasbin", - [2, 34316, 3863, 34320], - "page-icon", - "premove", - "@types/hasbin", - "@types/pa", - "ge-icon", - [2, 28121, 28122], - [0, 8144, 1465, 1584, 1628, 2092, 6327, 3177, 1894, 4028, 2278, 4111, 4469, 91, 4027, 2924, 4677, 4689], - "desktop", - "@vue-macros/common", - [1, 2343, 28128], - [0, 2513, 28129, 28131, 2537], - [0, 5535, 4201, 968, 972, 32632, 2780], - "proxy-lib", - [0, 89, 1564, 32775, 32776, 32777], - "font-finder", - "pbxproj-dom", - "montag", - "simple-plist", - "ios-device-lib", - [2, 21464, 1155], - "proper", - "-light", - [1, 2343, 28146], - "-lockfile", - [2, 28138, 28141], - "ios-", - "sim-portable", - [2, 28143, 28144], - [0, 28148, 28149, 28156, 2487], - [2, 28457, 28462], - [0, 32782, 4484], - [0, 5535, 4201, 32632, 32786, 1845, 89, 3824], - "-merge-patch", - [2, 2072, 28150], - [3, 26989, 11], - "ackage", - [2, 28152, 28153], - "@nativescript/doctor", - [0, 32788, 89, 32789], - "-dev-xcode", - [2, 3271, 28157], - "provi", - [1, 2343, 28168], - "sion-finder", - [2, 28159, 28161], - [2, 5131, 28162], - [2, 28143, 28163], - "@rigor789/trapezedev-project", - "@rigor789/", - [2, 28166, 14562], - [0, 28169, 28170, 28171, 2523], - [0, 1593, 97, 32796, 32795], - [ - 0, 695, 3709, 2924, 1628, 91, 53, 2969, 4677, 1195, 4307, 32808, 4689, 87, 4359, 4681, 92, 83, 1198, 5756, 61, - 78, 76 - ], - [0, 7201, 1676, 5131], - [2, 32904, 364], - [1, 2343, 28174], - [0, 0, 28181, 28185, 2399], - "@types/pl", - "ist", - "@types/plist", - "@types/retry", - [3, 5364, 9], - [2, 28179, 3924], - [0, 4874, 9743, 4579, 1983], - "@types/pacote", - "btab", - [2, 8153, 28183], - [0, 1983, 5130, 6731], - [1, 2343, 28188], - "@types/tunnel", - [0, 0, 28201, 28212, 2523], - "@types/xml2js", - "@types/ar", - "chiver", - [2, 28190, 28191], - "@types/qr", - "-image", - [2, 28193, 28194], - [3, 7810, 11], - [2, 28196, 2138], - [3, 13418, 17], - [3, 5090, 11], - [2, 32904, 4412], - [0, 1175, 1195, 1267, 1610, 1628, 2092, 3342, 8119, 4111, 32821, 4307, 188, 4634, 4639, 4640, 4645, 2924, 4681], - "er-lockfile", - [2, 28199, 28202], - "@types/np", - "mcli__arborist", - [2, 28204, 28205], - [3, 9315, 10], - [2, 9710, 15774], - "al-analytics", - [2, 9788, 28209], - [2, 28207, 28210], - [0, 9006, 29633, 32827, 32828, 32829, 32830, 32831, 4967, 32832], - [1, 2343, 28216], - [2, 31819, 31823], - [3, 27933, 13], - [0, 28217, 0, 27026, 4139], - [0, 1415, 1842, 31290, 31331, 4562, 31386, 6330], - [1, 2343, 28226], - "afinn-165", - "-fin", - "ancialmarketnews", - [2, 28220, 28221], - [2, 28219, 28222], - "apparatus", - "memjs", - [0, 0, 28227, 28250, 2523], - [ - 0, 48, 53, 61, 78, 87, 92, 5601, 32840, 5087, 4874, 15600, 1009, 1011, 1175, 1193, 1198, 1177, 1881, 1895, 1938, - 1955, 1192, 11948, 1894, 4131, 91 - ], - "stopwords-iso", - "@libsql/client", - "wordnet-db", - [2, 31005, 26449, 28684], - "browserfs", - [2, 2441, 20008], - "pegjs", - "uubench", - [2, 32904, 2942], - " language processing", - [2, 3273, 28237], - "arti", - "fical intelligence", - [2, 28239, 28240], - "Porter stemmer", - "Lancaster stemmer", - "bigram", - "trigram", - "quadgram", - "ngram", - "stemmer", - "bayes", - [0, 1192, 2022, 6703, 1149, 7003, 1862, 11857, 5472, 2275], - "classifier", - [1, 2343, 28254], - "phonetic", - [0, 28255, 28257, 28259, 2523], - [0, 28502, 4130], - "metaphone", - [0, 23689, 28556, 2323, 31190, 2765, 3560, 31541, 91], - "inflector", - [0, 5472, 11132, 13841, 28522, 13426], - "Wordnet", - "tf-idf", - "logi", - " regression", - [2, 17132, 28263], - [2, 28262, 28264], - [2, 4420, 28256], - "jaro-winkler distance", - " distance", - [2, 26006, 28268], - "string ", - [2, 28270, 26017], - "-of-speech tagger", - [2, 3251, 28272], - "Eric Brill", - "Brill tagger", - " analysis", - [2, 4137, 28276], - "maxim", - "um entropy modelling", - [2, 28278, 28279], - [1, 2343, 28284], - "@mrleebo/prisma-ast", - [2, 31733, 21302], - [0, 28292, 28293, 28294, 2537], - "secure-keys", - [2, 28288, 6008], - "nconf-yaml", - "@prisma/c", - "key value store", - [2, 18124, 13729], - "plugabble", - [0, 1086, 1437, 1700, 2070, 2714, 3183, 3760, 705, 4039, 4135, 4734], - [ - 0, 13194, 7740, 28197, 4865, 29105, 23689, 9129, 7892, 4874, 11304, 16936, 20959, 28502, 5254, 28189, 28556, - 2323, 31190, 2765, 4089, 4130, 91 - ], - [0, 1098, 1973, 5472, 3750, 11132, 13841, 28522, 4130], - [1, 2343, 28296], - [0, 9756, 9839, 28297, 2537], - [ - 0, 1871, 6843, 3656, 4289, 7062, 6922, 6981, 6701, 6581, 6700, 1111, 1867, 5281, 200, 6876, 7009, 7201, 6575, - 6611, 6795, 6960, 7135 - ], - [1, 2343, 28299], - [0, 7558, 28300, 28301, 2523], - [0, 4874, 668, 32894, 2929, 32895, 91, 4579], - [0, 32901, 23542, 5130, 23543, 6812, 27, 5592], - [1, 2343, 28305], - "near social", - "bridge", - [0, 28306, 0, 28307, 4139], - [0, 2856, 32889, 2822, 5307], - [0, 29699, 32891, 1541, 1745, 29703, 29753], - [1, 2343, 28311], - [3, 18018, 14], - [2, 28309, 1633], - [0, 0, 28313, 28315, 2487], - "exec-time", - [0, 1429, 4856, 4874, 32903], - "@lit/context", - [0, 32910, 37123, 32911, 32912, 32913, 13428, 5472, 6533], - [1, 2343, 28317], - [0, 28318, 0, 26863, 2399], - [0, 32918, 32919, 1699, 3547], - [1, 2343, 28320], - [0, 6263, 0, 28321, 2523], - [0, 89, 5128, 9267, 553], - "@codspeed/", - "payload", - "@fig/complete-commander", - "@golevelup/nestjs-discovery", - "xhr2-cookies", - [2, 30999, 30499], - [1, 2343, 28330], - [2, 28338, 28349, 28603], - [0, 26964, 0, 26997, 2537], - "@postman/tough-cookie", - [2, 15679, 19490], - "chardet", - [1, 2343, 28337], - "liquid-json", - "postma", - [0, 26964, 0, 27001, 2487], - "@interna", - "n-collection", - [2, 28336, 28339], - "-transformer", - [2, 28340, 28341], - "postman-", - [2, 28343, 705], - "postman-r", - [2, 28345, 96], - "d-error", - [2, 14628, 28347], - "tionaliz", - "@postman/", - [1, 2343, 28359], - "shipit", - [2, 28350, 28352], - [2, 29833, 17978], - "file_lint", - [2, 17878, 28355], - "parse-git", - [2, 28357, 2687], - [0, 28364, 28381, 28409, 2537], - "postman", - [2, 178, 28363], - "rest-client", - "rack-changes", - [0, 32953, 25996], - "@profoundlogic/hogan", - [3, 2665, 10], - "@grpc/grpc-js", - "@grpc/", - "print-sizes", - "proto-loader", - [2, 28368, 28370], - "@newrelic/security-agent", - "@tyriar/fibonacci-heap", - "in-the-middle", - [2, 2701, 28374], - "module-de", - "s-from-path", - [2, 4378, 28377], - [2, 28376, 28378], - [2, 4013, 28374], - [0, 13662, 1389, 35268, 4389], - "@aws-sdk/s", - "3-request-presigner", - [2, 28382, 28383], - "@koa/router", - "@newrelic/", - [2, 28386, 7625], - "-oss-cli", - [2, 3284, 28388], - [2, 28386, 28389], - "test-util", - "ities", - [2, 28391, 28392], - [2, 28386, 28393], - "@slack/bolt", - "@smithy/eventstream-codec", - "@smithy/", - "util-utf8", - [2, 28397, 28398], - "borp", - [2, 16306, 20353], - [3, 4962, 10], - "iler-runtime", - "git-r", - "aw-commits", - [2, 28404, 28405], - "CKEditor", - "self-cert", - [0, 7518, 5398, 17819, 18266, 32958, 12075, 32960, 4967, 1389], - [1, 2343, 28412], - "debugging", - [0, 28414, 28424, 28430, 2537], - "profiling", - [ - 0, 32980, 32981, 32983, 32984, 32986, 1398, 1437, 1443, 1759, 1763, 2018, 2071, 37853, 2182, 2212, 2687, 2720, - 17450, 2856, 32987, 32988, 9478, 3729, 4135, 4164, 4400, 91, 32990, 32993, 32989 - ], - "unlimited-timeout", - "WYSIWYG", - "WYSIWYW", - "@panva/hkdf", - "id-client", - [2, 3445, 28419], - "-to-string", - [2, 694, 28421], - [2, 3698, 28422], - [0, 188, 32996, 32997, 33004, 33007], - "@types/oauth", - [2, 4874, 3360], - "@next", - "is-in-ssh", - "powershell-utils", - [0, 32940, 33010, 5130], - [1, 2343, 28437], - [3, 13983, 14], - [2, 28432, 89], - "-pragmatic", - [2, 13062, 28434], - "@edge-runtime/jest-environment", - [0, 28447, 28448, 28449, 34352], - "oauth2", - "nextauth", - "seneca-transport", - [2, 36883, 28443], - "rich-text", - "astify", - "async ", - [2, 28444, 1852], - [2, 28444, 5746], - [0, 97, 33015], - [ - 0, 1192, 2278, 2675, 89, 1843, 1177, 2924, 1894, 1610, 3824, 48, 1628, 3988, 91, 53, 2990, 3400, 4111, 4677, - 4880, 1195, 4307, 33020, 33021, 9310, 28809, 10837, 87, 11011, 90, 1959, 827, 33023, 1895, 1947, 1955, 2780, 92, - 10821, 29872, 10840, 1011, 10825, 83, 1009, 32341, 28970 - ], - [0, 89, 4627, 26612, 35126, 33026, 5131, 29832, 91, 33027, 33033], - "grammy", - [1, 2343, 28463], - "qs-esm", - "TestBed", - "how-to", - "@scripts/build", - [2, 28573, 553], - [3, 14691, 18], - [2, 32700, 28478], - [2, 12392, 1098], - "dataloader", - "bson-objectid", - "nboarding", - [0, 28481, 28492, 2514, 2537], - "render-jsx", - "@rolldown/pluginutils", - [2, 28472, 1973], - "localhost", - "tunneling", - "webhook", - [2, 28471, 28596], - [3, 37983, 14], - [3, 34476, 19], - [2, 16639, 15112, 28475], - "onesy", - "hecker", - [2, 16639, 28477], - "vitest-runner", - "grab", - [2, 28489, 28490], - "deep-defaults", - [0, 1437, 1483, 1525, 3127, 14774, 4135, 33043], - [2, 10740, 28487], - "enqueue", - [2, 14185, 4225], - "minstache", - "sliced", - "table-printer", - [2, 3192, 5701], - [3, 30527, 35], - "collisions", - "@rstest/core", - [0, 8147, 33046, 4874, 5254, 33047], - [2, 28508, 28526], - "@nightwatch/chai", - [3, 28494, 12], - [3, 2791, 13], - [2, 28496, 2324], - [2, 28495, 28497], - [2, 3294, 11496], - [2, 28495, 28499], - "lenium-webdriver", - [2, 5252, 28501], - [2, 1432, 3294], - [2, 11097, 20500], - "didyoumean", - [3, 28499, 11], - "@amaui/ui-react", - [3, 5069, 14], - "axe-verbose", - [2, 28506, 28509], - [3, 17011, 11], - [2, 28511, 57], - [3, 31827, 17, 5], - [2, 4925, 4381], - [3, 28514, 12], - [2, 11937, 16609], - [2, 28515, 28516], - "@payloadcms/translations", - "wait-on", - [1, 2343, 28527], - [2, 3294, 676], - "selenium", - "automat", - "ed-testing", - [2, 28523, 28524], - "acos", - [0, 28528, 28529, 2514, 2537], - [ - 0, 35198, 4763, 1497, 1687, 33057, 4361, 1983, 1082, 1371, 1676, 9348, 12449, 977, 1636, 11480, 3958, 4135, - 11501, 1458, 11478, 668, 33058, 28564, 2822, 6042, 3479, 3742, 29535, 33059, 26379, 4955, 33149, 3530, 25648, - 4542, 28623, 33061, 11869, 27921, 5732, 33062, 2628, 3090, 4748, 2007, 33063, 19639, 7610, 37014, 33064, 4555, - 33065, 33068, 29533, 33069, 10895, 5210, 9485, 33070, 33071, 3749, 33074, 33075 - ], - [ - 0, 23813, 2278, 4042, 4548, 1984, 1448, 4549, 33080, 30138, 33082, 91, 12396, 2024, 3975, 5245, 33390, 30559, - 5254, 33083, 34673, 7637, 7812, 12127, 3327, 8648, 20374, 11868, 23312, 33084, 7744, 21626, 3963, 33087, 33088 - ], - [1, 2343, 28536], - [2, 28532, 28547], - [3, 11555, 18], - "text-", - [2, 28533, 9254], - [2, 11122, 28534], - [0, 28538, 0, 2514, 2523], - [3, 11138, 16], - [0, 1506, 33093, 3460, 4535], - "mochify", - [3, 4887, 19], - "-universal", - [2, 3752, 28541], - [2, 3752, 1289], - "@backstage/backend-common", - [1, 2343, 28546], - [0, 28548, 28549, 28551, 2399], - "owellformed", - [0, 1512, 2151, 2720], - [0, 1177, 1939, 1192], - "propagate", - [0, 8310, 1179, 8635, 200, 28582], - [1, 2343, 28555], - [3, 31893, 18, 13], - [2, 12302, 28732], - [0, 0, 28560, 28561, 2399], - "clang-format", - [2, 23260, 28729], - "n-api", - "napi", - [ - 0, 811, 816, 1437, 1836, 1177, 1895, 1938, 33110, 14282, 2674, 2675, 2990, 2899, 6041, 1894, 4039, 4042, 4055, - 33111, 4232, 4390, 11482 - ], - [0, 4989, 1283, 3358], - [1, 2343, 28563], - [0, 0, 28571, 2514, 4139], - "fontace", - [2, 14743, 4504], - "ffee", - [2, 2251, 28566], - "grunt-i", - [2, 2426, 2499], - [2, 28568, 28569], - [0, 1009, 1011, 1177, 1883, 1895, 1915, 1938, 1947, 1955, 1959, 1961, 2675, 2990, 1894, 89, 91], - "baseline-browser-mapping", - [3, 4090, 11], - [2, 28606, 8734], - "host-validation-middleware", - [2, 16826, 5260], - [2, 14614, 28576], - "used-de", - "ps-analyzer", - [2, 28578, 28579], - "@4c/rollout", - "skeleton", - "formate", - [1, 2343, 28587], - [2, 5559, 27], - [2, 28689, 89], - [0, 28597, 28600, 28601, 2537], - "dynamic-", - [2, 28588, 1681], - "filewatcher", - [2, 28914, 594], - "xunit", - "tap-xunit", - "nextjs-api-reference", - [2, 30999, 28884], - "l", - [0, 33139], - [2, 31222, 31227, 31234], - "subdir", - [0, 6503, 1699, 2899], - [0, 5122, 1973, 8791, 33143, 2899, 5130], - [1, 2343, 28609], - "ed/date", - "char-regex", - "emojilib", - "@scripts/", - [2, 28616, 6988], - "skin-tone", - [0, 0, 28621, 28622, 2537], - "s-per-line", - [2, 16233, 28610], - "cspell-config-lib", - "emojis", - "smiley", - "smileys", - [3, 28329, 19], - "smilies", - "ideogram", - "ideograms", - "@nuxt/fonts", - [ - 0, 5535, 5087, 1009, 1011, 33175, 25917, 35358, 1473, 1177, 1895, 1955, 2070, 1192, 1894, 4042, 4073, 4076, - 4201, 4443, 4468, 4474, 4484, 91 - ], - [ - 0, 1473, 57, 6270, 4439, 32453, 6616, 30289, 33190, 30291, 620, 33201, 31453, 1623, 33203, 6653, 33205, 33207, - 3178, 33216 - ], - "unstorage", - "fetch-blob", - "ttypescript", - [2, 1432, 7253], - "nsumers", - [2, 25687, 28627], - "jsdoc-to-mdx", - [1, 2343, 28633], - "@nuxt/icon", - "@nuxt/kit", - [0, 5914, 28661, 28662, 2487], - "igitalbazaar", - [2, 27235, 28634], - [2, 19946, 2903], - "-websocket", - [2, 6710, 28637], - [2, 27694, 1194], - [2, 28660, 32819], - "aes", - "asn", - "asn.1", - "cbc", - "csr", - "des", - "gcm", - "hmac", - "pkcs", - "pki", - "prng", - "rc2", - "rsa", - "sha256", - "sha384", - "sha512", - "tls", - "x.509", - "x509", - [3, 218, 21], - [0, 30533, 192, 5467, 30535, 10614, 6494, 5087, 4874, 1009, 1011, 1177, 1895, 2675, 1192, 1894, 3980, 4468, 91], - [0, 30538, 6710, 14584, 91, 30540, 30543, 5130, 29752], - [1, 2343, 28665], - "seneca-joi", - [0, 26964, 0, 26966, 4139], - "c2dm", - "fcm", - [1, 2343, 28669], - [0, 28670, 28671, 28682, 4139], - [ - 0, 33071, 30616, 26407, 26411, 12396, 7637, 9363, 26414, 26415, 23276, 2577, 2584, 2588, 2681, 2822, 37507, - 3090, 26418, 26568, 12429, 26421, 3958, 9393, 12443, 4542, 4549, 4555, 12449 - ], - [0, 8648, 4874, 7677, 34683, 26431, 1984], - "@nuxt/schema", - "@nuxtjs/color-mode", - "geocoder", - "pulse", - "geocoding", - "geo", - "mapquest", - "agol", - "arcgis", - "tomtom", - [0, 1739, 1745, 34683, 26440, 26445], - [1, 2343, 28695], - "libsql", - [2, 28694, 176], - [3, 5781, 10], - "l-backoff", - [2, 28686, 28687], - [3, 21276, 15], - "require-in", - [2, 28690, 2429], - "piña", - "pigna", - [3, 30585, 14], - [0, 28696, 28697, 28662, 2537], - [0, 2026, 3951], - [ - 0, 30533, 192, 5467, 1300, 30535, 10614, 6494, 5087, 4874, 1009, 1011, 1177, 1895, 2675, 1192, 1894, 3980, 4468, - 91 - ], - "high5", - [2, 12075, 57], - [1, 2343, 28705], - "js-parser", - [2, 1936, 28701], - "-benchmark", - [2, 15512, 28703], - [0, 28730, 28750, 28758, 2537], - "mocha-each", - "neutron-html5parser", - "ookmark", - "colortranslator", - [2, 15277, 12610], - [2, 28712, 28725], - [3, 10130, 17], - "biased-opener", - "data-uri", - [2, 25894, 28714], - "v8-debug", - "v8-profiler", - [2, 28742, 28749], - [2, 28720, 28721], - [3, 32265, 26], - "ble", - [2, 28723, 7059], - [3, 12133, 21], - "vitest-browser-react", - "ber-animation", - "dummy", - [2, 23814, 28898], - "http mock", - "zipper", - [0, 3951, 4474], - "toposort", - "quality-insights", - "growly", - "words", - "shellwords", - [2, 28738, 28741], - "nexe", - "@types/to", - " center", - [2, 9044, 28739], - "posort", - [3, 26699, 15], - "mac os x 10.8", - [2, 4402, 3329], - "windows ", - "8 notification", - [2, 28745, 28746], - "toaster", - "auto-height", - [0, 192, 5467, 10614, 6494, 5087, 4874, 1009, 1011, 1437, 1177, 1895, 2675, 1192, 1894, 3980, 4468, 91], - "tabbable", - [2, 8180, 594], - [2, 29518, 28757], - "@radix-ui/react-checkbox", - [2, 28756, 45], - [3, 28754, 16], - "vfs", - [0, 30538, 6710, 91, 30540, 30543, 5130, 29752, 5995, 6082], - [1, 2343, 28760], - [0, 26964, 0, 26966, 2537], - [2, 28762, 9006], - [3, 28718, 20], - [2, 3958, 28764], - [3, 26414, 16, 5], - [1, 2343, 28767], - "@internal/test-utils", - [0, 26964, 0, 26997, 2443], - "ps-list", - "code-blocks", - "pty", - [2, 6426, 7009], - "forkpty", - "openpty", - [1, 2343, 28787], - [2, 28776, 28777], - "expressi", - "ve-code", - "@node", - [2, 9057, 3642], - [2, 28793, 28798], - "-red/util", - [2, 28778, 28781], - [2, 3341, 2110], - "@node-red/", - "nodes", - [2, 28784, 28785], - [0, 25316, 28788, 28796, 2537], - [0, 603, 11018], - [2, 216, 28812], - [2, 28784, 7047], - "editor-api", - [2, 28784, 28791], - [3, 28718, 19], - "iot", - "fix-dts-default-cjs-exports", - [0, 188, 4646, 1542, 32977, 28692, 28693, 32312, 5592, 18496, 5490, 91, 4799, 998, 6953], - [2, 28826, 16860], - "play", - "sass-graph", - [2, 1152, 14741], - "stdout-st", - [2, 28801, 2187], - "-case-path", - [2, 4938, 28803], - [2, 28742, 28875], - [2, 4550, 13786], - "@jsopen/objects", - [1, 2343, 28810], - [2, 34443, 25240], - [0, 28819, 28820, 5893, 2523], - "modern.js", - "alpha-function", - "long-timeout", - "sorted-", - [2, 20096, 20835], - [2, 28814, 28815], - [2, 30633, 30886, 31217], - [3, 1419, 11], - [0, 28751, 444, 28752], - [0, 90, 28754, 28755, 968, 972, 974, 4880, 4883, 1030, 1497, 89, 3824, 3882, 3885, 4023, 8187, 28724, 1541], - "recurrent", - [1, 2343, 28823], - [0, 28824, 28825, 28828, 4139], - [0, 28763], - [0, 34683, 2020, 28766], - "unplugin-", - "deepcopy-esm", - [0, 26445, 28769, 1745, 28775, 9348, 28779, 26440], - [2, 9357, 28832], - [2, 28831, 30581], - [3, 12447, 17], - "-convert", - [1, 2343, 28834], - [0, 0, 0, 28835, 2523], - [0, 30999, 28818, 5995], - [1, 2343, 28839], - "fs.watch", - "watchfile", - [0, 28840, 28841, 28848, 34352], - [0, 28775], - [0, 9363, 9315, 23312, 3978, 3992, 3999, 9348, 4549, 12449, 28766], - "stories", - [2, 819, 664, 33355], - "ngn", - "daemon", - " logging", - [2, 2013, 28846], - [0, 28769, 1745, 28775, 9348, 28779], - "elevate", - "sudo", - [1, 2343, 28852], - [0, 28864, 28867, 28870, 4139], - "store2", - [2, 28855, 7625], - [3, 28518, 12], - "@mgcrea/eslint-config-node", - "-lts", - [2, 19439, 28857], - "node-ipc", - "excel", - "xls", - "zeptomatch", - "picoquery", - [0, 2121, 2127, 1690, 2024, 4507], - "rolldown", - "amaui", - [0, 28470, 2180, 5476, 5478, 1414, 2198, 91], - " extend", - [2, 6970, 28868], - [0, 2313, 1383, 614, 202, 1388, 5995, 4967, 1145, 1973, 1429, 2340, 2350], - [1, 2343, 28886], - [2, 13402, 2942], - [2, 28874, 8817], - "@appium/s", - "class-names", - "firefoxos", - "combyne", - "for-publish", - [2, 1463, 28878], - [2, 31228, 14372], - "libgit2", - "git2", - [2, 28742, 26542], - [3, 31782, 22, 5], - "vendors", - [0, 0, 28888, 28889, 2523], - [2, 9191, 3595], - [0, 1330, 1389, 1596, 2759, 2899, 4170, 4535], - [0, 20215, 4741, 2574, 36796, 6847, 1965, 1867, 10368, 7131, 1155, 1936, 1623, 14419, 37953], - "libbase64", - "libmime", - "libqp", - "ntlm-auth", - [2, 26444, 28893], - [2, 13857, 9224], - [2, 28742, 188], - "Nodemailer", - "hun-ky", - [2, 32723, 28900], - "hex-color", - [2, 28902, 28905], - [3, 28899, 21], - "undefsafe", - "pstree.remy", - "sl-color", - [2, 32723, 28907], - "rgb-color", - "autoload", - [2, 31281, 4202], - [2, 819, 45], - [2, 28742, 28916], - [2, 6097, 6142], - [2, 15701, 28915], - [3, 693, 10], - "vision-history", - "wheel-gestures", - "multimeter", - [1, 2343, 28975], - [2, 30211, 30221], - "@asamuzakjp/css-color", - "node-webkit", - "drc", - "lz4", - "potx", - "xltx", - "dotx", - "async-redis", - "ipfilter", - [2, 2032, 28928], - "express-ws", - "xltm", - "ots", - "json-logic-js", - "json-sql", - [2, 7060, 1146], - "line-reader", - "mocker", - "-data-", - [2, 28938, 1179], - [2, 28937, 28939], - "pino-pretty", - "odg", - "otg", - "promise-mysql", - "stjs", - "otp", - "ott", - "uuid-random", - "docm", - "nolang", - "Programming", - "programm", - "ing language", - [2, 28952, 28953], - "dotm", - "descriptive", - "5GL", - "potm", - "json schema", - "Mehdi Salartayefeh", - "pptm", - [2, 8293, 200], - [2, 8293, 3561], - "knitwork", - [2, 28968, 28969], - " parser", - [2, 5675, 28966], - "esbuild-re", - "act-compiler-plugin", - [2, 28971, 1172], - [3, 29874, 35], - [2, 28973, 4298], - [3, 5240, 29], - "ohash", - [0, 28989, 0, 28990, 2523], - "admin-panel", - "absolute", - "backslash", - "delimiter", - "file-path", - "forward", - "slashes", - "trailing", - "unix", - "urix", - "headless-cms", - [2, 1917, 11597], - [2, 819, 3877, 29320], - [0, 28507], - [0, 45, 29, 36246, 89, 4967, 6400, 5995, 10768, 5122, 1388, 5284, 676, 91, 202, 6710, 6082, 28866, 594], - "normaliz", - [2, 28991, 5218], - "normali", - [2, 28993, 6079], - [1, 2343, 28998], - "simplify", - "canonical", - [0, 29046, 0, 29047, 34352], - [2, 29171, 594], - "lit-analyzer", - [2, 32700, 29003], - "mouse", - "attract", - "mouse wheel", - [2, 29006, 29007], - [3, 26450, 35], - "ubble", - [2, 32700, 1544], - [2, 29010, 29011], - [3, 31198, 35], - "ause", - [2, 32700, 34141], - "escape-goat", - [3, 9577, 11], - "from-git", - [2, 29014, 29015], - "teractive", - [2, 20043, 29017], - [2, 28489, 29003], - "is-scoped", - [2, 29027, 29029], - "issue-regex", - "listr-input", - "new-github-release-url", - "npm-name", - "p-memoize", - [3, 32722, 21], - "map-obj", - "asing-quad", - "write-package", - [2, 32731, 3924], - [2, 29033, 4390], - [3, 26495, 20], - [2, 29035, 29036], - [3, 28909, 22], - "troke-color", - "is-cidr", - "ts-lit-plugin", - "libnpmorg", - [2, 33533, 29041], - "ormatjs", - "libnpmpack", - [3, 29818, 15], - "libnpmteam", - "MDX", - [0, 28872, 28873, 13411, 4507], - [0, 13428, 5284, 28522, 11132, 12295, 12296, 28876, 5472], - "fs-m", - "reka-ui", - [2, 37399, 29156], - "fs-minipass", - [1, 2343, 29064], - "npm-profile", - [2, 2977, 7193], - "@sigstore/tuf", - [2, 2977, 15525], - [2, 636, 1541], - "audit-report", - [2, 3382, 29058], - "-pipeline", - [2, 21505, 29060], - [2, 4570, 2649], - [2, 3382, 29062], - [0, 26871, 0, 26863, 2399], - "relative-date", - [2, 11072, 29065], - [2, 28093, 26006], - [1, 2343, 29074], - [2, 636, 3358], - [2, 636, 1739], - "@tufjs/repo-mock", - [3, 26037, 13], - [2, 29072, 2203], - [0, 29075, 0, 7573, 2537], - [0, 1004, 31231, 32914, 28909, 31262, 31272, 28899, 28901, 28906, 31282], - "-draft2019", - [2, 1092, 29076], - [1, 2343, 29119], - [2, 29080, 29081], - [3, 23075, 14], - "rrect-media-syntax", - [2, 29089, 29090], - "-record", - [2, 17495, 29083], - "giturl", - "nfig-loader", - [2, 18323, 29086], - "semver-diff", - [3, 32593, 24], - "ort", - [2, 29092, 29094], - [3, 32686, 13], - "outdated", - "dx-jsx-attribute-sort", - "updating", - "updater", - [2, 29098, 29099], - [3, 29091, 20], - "no-void-children", - [2, 29098, 29107, 29118], - "@trivago/prettier-plugin-sort-imports", - [3, 27782, 13], - [2, 29102, 8961], - [2, 13197, 176], - "@types/ini", - [3, 8141, 13], - "quote-st", - "helpfulerror", - [2, 16476, 29108], - [2, 29106, 29109], - [2, 7726, 27005], - "@types/npm", - "-registry-", - [2, 29113, 1612], - [2, 29112, 29114], - [3, 16478, 13], - [2, 29116, 13722], - "yle", - [0, 0, 0, 29163, 2537], - [2, 2645, 89], - [3, 6544, 14], - [2, 29121, 594], - "pdate-", - [2, 29123, 3329], - [2, 7817, 29124], - [3, 1898, 15], - "aine", - [2, 29126, 29127], - "fp-and-or", - [3, 9506, 11], - [2, 117, 29153, 29494], - [2, 29098, 29134, 29135], - "jsonlines", - "self-clos", - "e", - "prompts-ncu", - "postcss-clean", - [2, 25813, 594], - [2, 4524, 2845], - "verdaccio", - [2, 8551, 4675], - "vite-node", - [2, 29145, 29146], - "upgrade", - [3, 29132, 21], - "horthand-attribute", - [2, 29098, 29148], - "unique-attribute-name", - [2, 29092, 29150], - "edia-style", - [2, 32704, 29152], - "idden-table-cell", - [3, 6138, 9], - [2, 7686, 4692], - [2, 22060, 3122], - "variants", - "ypescript-tc", - [2, 22060, 29157], - [3, 17312, 29], - [2, 29159, 12844], - "unplugin", - "auditor", - [0, 45, 29, 36246, 89, 4967, 6400, 5995, 10768, 5122, 1388, 5284, 676, 91, 202, 6710, 6082, 28474, 594], - [1, 2343, 29167], - [2, 28826, 29166], - "auto-import", - [0, 26964, 0, 26966, 2487], - "variadic-function-arguments", - "mutate-fs", - "@publint/pack", - [3, 1014, 15], - [1, 2343, 29173], - [0, 29177, 0, 21958, 2537], - "minizlib", - "minipass-", - [2, 29175, 1612], - [ - 0, 4729, 2070, 31705, 4747, 4135, 1862, 1301, 1525, 2731, 4116, 1109, 1193, 31856, 3145, 4705, 31859, 3717, - 3878, 1079, 31861, 28512, 31864, 24169, 3957, 31867, 2784, 31871, 31877, 31880, 31884, 31891, 21129, 31896, - 28073 - ], - "fast-equals", - "registry", - [1, 2343, 29199], - "autodocs", - [2, 31092, 3452], - "@pm2/blessed", - "padend", - [2, 18996, 29184], - [2, 29189, 27863, 20181], - "ysticatea", - [2, 16693, 29187], - [3, 28544, 19], - "commandline", - "npm-scripts", - [2, 29193, 1541], - [3, 28544, 11], - [2, 29193, 11857], - [2, 29196, 29198], - [3, 31303, 12], - "neostandard", - "ise-router", - [0, 29216, 0, 7573, 2399], - [2, 29189, 11017], - [2, 29202, 29203], - [3, 29192, 12], - "atalog-model", - [2, 29202, 25240], - [2, 29193, 13224, 29206], - "atalog-common", - [2, 29209, 202], - [2, 28270, 6270], - [3, 29205, 26], - "yarn to npm", - "@daybrush/jsdoc", - "backstage", - "ci/cd", - "immobiliare", - [2, 29214, 12825], - [ - 0, 28880, 1004, 29031, 29032, 31244, 1418, 26495, 32926, 26483, 26489, 32934, 29021, 29034, 28458, 31198, 29012, - 29009, 26450, 29005, 26482, 30527, 29001, 29008, 1445, 29019, 28479 - ], - [1, 2343, 29221], - "npm upgrade", - [2, 28826, 10309], - "vaul-vue", - [0, 29223, 29225, 26824, 2523], - "rgv", - [0, 4484, 29755], - [2, 1262, 25816], - [0, 89, 1177, 4039, 4042, 1894, 3824, 91, 4874, 4880, 3884, 4883, 3885, 28540, 8656, 8660, 4887, 10817, 1011, 1009], - [2, 34674, 588], - "npm-cli", - [2, 29229, 29303], - "@hyrious/esbuild", - [1, 2343, 29232], - "ntainer", - [0, 29256, 29257, 29258, 34352], - [2, 26109, 28923], - [3, 28200, 13], - [2, 29240, 29249], - "@cropper/", - "are-", - "we-there-yet", - [2, 29237, 29238], - [3, 10309, 13], - "image-cropping", - [2, 29243, 3642], - "image-view", - "image-processing", - "cropper-element", - "mocha-jsdom", - [3, 31831, 14], - [3, 5926, 13], - "-type-helpers", - [2, 29254, 29255], - "cvss", - "-npm-utils", - [2, 19773, 29252], - [3, 3978, 9], - "arry-night", - [0, 29186, 29192, 29194, 1364, 2026, 29195, 2664, 4709, 4757], - [0, 29200, 29201, 29204, 29205, 29207, 6494, 9240, 3244, 4342], - [0, 29212, 17978, 29213, 29214, 29215, 5995], - "@asteasolutions/zod-to-openapi", - "gluegun", - "@trpc/server", - [2, 17612, 29264], - "nuke", - "custom-alias", - [2, 4026, 29266], - "tspaths", - "@nuxt/eslint-config", - "event-driven", - "money", - "blaze", - "percentage", - [1, 2343, 29274], - [2, 8293, 1983], - [0, 26964, 0, 26997, 2523], - [1, 2343, 29278], - "a-sync-waterfall", - "asap", - [0, 0, 29286, 29287, 2537], - [2, 3522, 364], - [2, 3192, 29279], - [3, 29280, 16], - [2, 29281, 2759], - [2, 5223, 8861], - "s-browser", - [2, 19390, 29284], - [0, 1148, 2899], - [0, 26257, 1111, 1473, 7208, 1437, 1623, 32453, 6616, 29222], - [3, 26364, 17], - [1, 2343, 29296], - "@nuxt/module-builder", - [2, 18124, 2844], - "@4c/tsconfig", - "@react-bootstrap/babel-preset", - [2, 29344, 7625], - "@nuxt/test-utils", - [0, 29298, 29302, 29329, 2399], - "jsonpathly", - [0, 7387], - [2, 29301, 29538], - "css4", - [3, 5782, 27], - [0, 4874, 4880, 4883, 1030, 3286, 89, 3824, 1983, 26744, 1984, 11039], - [3, 4055, 16, 6], - [3, 26699, 14], - "achine-id", - [2, 27946, 29305], - "parsers", - [2, 15904, 29307], - "@zkochan/js-yaml", - [2, 15904, 6698], - [3, 17944, 18], - "-and-columns", - [2, 27005, 29312], - "@napi-rs/", - "graphQL", - "wasm-runtime", - [2, 29314, 29316], - "telejson", - "Mobile", - "nderer", - [2, 25806, 14029], - "@whatwg-node/promise-helpers", - [2, 29326, 29332], - [2, 20164, 22156], - [2, 11936, 1564], - [3, 9250, 19], - "processinfo", - [2, 11936, 29327], - [0, 5592, 1745, 23803, 3287, 3452, 8124], - "node-preload", - "process-", - "nuxt", - "on-spawn", - [2, 29331, 29333], - "spawn-wrap", - "css library", - [1, 2343, 29353], - "any-path", - [2, 29340, 29341], - [3, 132, 10], - "local-node-rig", - "jsdoc-fresh", - "jsdoc-region-tag", - [3, 29293, 17], - "nuxt-ui", - "ui-framework", - "undefined-", - [2, 29347, 15400], - [2, 8302, 29348], - [2, 29383, 29384], - "@readme/", - "example", - [0, 29363, 0, 29472, 2523], - "oas-examples", - [2, 29351, 29354], - "@readme/o", - "penapi-parser", - [2, 29356, 29357], - [2, 8818, 5940], - "@types/me", - "moizee", - [2, 29360, 29361], - [0, 2817, 18023, 1532, 31802], - " initiative", - [2, 3452, 29364], - "openapi ", - [2, 29366, 10658], - [3, 29367, 12], - [2, 29366, 1746], - "oai", - "@eslint/css", - "print-coveralls", - "ts-mock-imports", - "egjs-jsdoc-template", - "to-openapi", - [2, 28343, 29375], - [2, 29351, 29376], - "@egjs/release-helper", - [3, 20227, 14], - [2, 29379, 8125], - [2, 5290, 29382], - "-plugins", - [3, 25931, 14], - "quis-saepe-velit", - "@renyii/vue-renderless", - [2, 31525, 29391], - "andom-function", - [2, 30713, 29397], - "@teamteanpm2024/aperiam-fugit-error", - "prollyfill", - "ize-observer-browser", - [2, 19965, 29393], - "-es6-transform", - [2, 29418, 29475], - "ec", - "gulp-exec", - "ign-functions", - [2, 29399, 29400], - [3, 27720, 16], - "ototype-minify", - "@vercel/ru", - "@pkg", - "js/support", - [2, 29402, 29403], - "flicking", - "globalthis", - [2, 29408, 26274, 29411], - [3, 29389, 17], - "ostringtag", - [2, 17422, 29409], - "alias-quod", - "egjs", - "-upgrade", - [2, 29408, 29415], - "ut-voluptatum-vero", - "indexof", - [3, 26699, 20], - [3, 29389, 16], - "@loki/integration-react", - [3, 31032, 17], - "@modelcontextprotocol/sdk", - "@mar", - "iocasciaro/benchpress", - [2, 29422, 29423], - [2, 31009, 16609, 18756], - "bean", - [2, 31550, 29430], - "notation", - "segment", - " upgrade", - [2, 29438, 7031], - [2, 29418, 29433, 29434], - "effective-octo", - [3, 246, 18, 8], - [2, 29436, 29437, 29439], - [3, 29432, 17], - "xpedita-", - [3, 805, 9], - "labore-ipsum", - "es-object-atoms", - [2, 29419, 4009], - "mentoss", - "@ucast/mongo2js", - [2, 28865, 6324, 4056], - "unconfig", - "permissions", - "abac", - [2, 29418, 29449], - "odio-fugiat-in", - "ee-first", - "rbac", - "ibac", - "cancan", - [2, 29487, 188], - "@sxzz/eslint-config", - "wrappy", - "quick-lru", - [2, 29459, 29620], - "@sxzz", - [2, 29418, 28215, 27463, 29461], - "odit", - "@blakeembrey/deque", - [3, 29462, 13], - [2, 29463, 1283], - "@sxzz/test-utils", - "@unocss/eslint-plugin", - [3, 4949, 17, 10], - [2, 160, 1554], - "unocss", - "unplugin-unused", - [2, 30209, 28945], - [0, 30999, 28818, 5995, 17977], - [1, 2343, 29484], - "epoll", - "beatae-aliquid-id", - [2, 23240, 3209], - "@zibuthe7j11/deserunt-quasi-impedit", - "gpio", - [3, 7033, 9], - "raspi", - "beaglebone", - "-black", - [2, 29481, 29482], - [0, 0, 29485, 29491, 2537], - [0, 19325, 1414, 1894, 3985, 3998, 4039, 4389, 4505, 91, 1906], - "llms", - [3, 29419, 18], - [2, 10441, 20008], - "lazy-prop", - [2, 27542, 29489], - [0, 1623, 1936, 965, 5122, 12344, 34050, 3665, 22145], - [2, 29294, 1892], - [2, 35506, 15215], - "s-compressor", - [2, 29628, 29629], - [1, 2343, 29497], - [0, 29498, 29499, 29516, 2399], - [0, 2611, 4763], - [ - 0, 29259, 192, 5467, 23531, 29261, 4865, 4874, 1009, 1011, 10417, 668, 1177, 1881, 1895, 29262, 1915, 1938, - 1955, 2070, 2675, 2990, 1894, 29265, 4039, 4480, 4494, 91 - ], - [2, 33343, 1640], - "bath-es5", - "dere", - "ference-", - [2, 29503, 2845], - [2, 29502, 29504], - [2, 29510, 29513], - "-adapter", - [2, 2085, 29507], - [2, 1170, 29508], - [3, 10065, 15], - "deref-sync", - [2, 7526, 29511], - "ooks", - "fetch-retry", - [2, 29112, 3073], - [0, 2611, 5995, 29268, 29270, 5130, 24090], - "@base-ui-components/react", - [3, 32804, 12], - "docz", - "docz-utils", - "open api", - "docz-theme-default", - [1, 2343, 29526], - "aws-sdk-client-mock", - [2, 32539, 200], - [0, 29541, 29547, 29516, 2537], - [3, 26032, 12], - "computer", - [2, 29530, 29532], - [3, 25758, 18], - "quadrocopter", - "m-sint-necessitatibus-possimus", - [2, 29534, 15050], - [3, 33156, 12], - "unifont", - [2, 29627, 29631], - "cupertino-pane", - "licit-resource-management", - "countrynames", - "kill-port", - [0, 1457, 1491], - [2, 15713, 10050], - [2, 28397, 553], - "@testcafe/publish-please", - "aws-lambda", - "eruda", - [ - 0, 1138, 4494, 2070, 2675, 1177, 4039, 668, 1894, 91, 4865, 4874, 2990, 29261, 4480, 192, 29265, 1938, 10417, - 1895, 1955, 1011, 1881, 5467, 1009, 1915, 29262 - ], - [1, 2343, 29562], - "nano-staged", - "elapsed-time-logger", - "hashish", - "gulp-open", - [2, 4807, 3864], - "cupertino", - "pane", - "slide", - "-call", - [2, 29557, 4408], - [2, 6606, 29558], - "fasteejs", - "ua-is-frozen", - [0, 29570, 29578, 29612, 2487], - [3, 26032, 13], - [2, 29609, 12835], - [2, 29573, 6802], - "prelude-ls", - "deep-is", - "astro-auto-import", - "livescript", - [ - 0, 4729, 1091, 4494, 12105, 3533, 3348, 1410, 1606, 28452, 4548, 1458, 3183, 33145, 1699, 2096, 11993, 3547, - 28460, 2689, 2668, 28941, 2191, 3781, 36687, 28461, 36123, 3509, 4108, 28482, 28518, 26696 - ], - [3, 28967, 11], - [2, 29571, 3642], - "country-", - "@pouchlab/ui", - [2, 29573, 1460], - [2, 29573, 7285, 2669], - "-dis", - [ - 0, 4164, 4039, 4042, 668, 9241, 1587, 1610, 7819, 28585, 7892, 12461, 3813, 28426, 4057, 8818, 31727, 28586, - 28854, 29228 - ], - "ppsx", - "-discarder", - [2, 2184, 29580], - "chai-jquery", - [2, 1221, 6621], - "corejs-typeahead", - "doiuse", - "gulp-add-src", - [2, 2352, 29588], - "-bust", - "gulp-check-deps", - "sequencify", - [3, 28628, 14], - [2, 2504, 29687], - "gulp4-run-sequence", - "is-empty-object", - "motion-ui", - "sassy-lists", - [2, 22109, 29598], - "-forward-reference", - "vinyl-named", - "sql-ddl-sync", - "sql-query", - [2, 29611, 29625], - [2, 29604, 29606], - [3, 17589, 11], - "redshift", - "helper-rel", - [2, 29608, 4213], - [3, 29603, 18], - "gradient", - "grommet", - [3, 940, 8], - [0, 31153, 5592, 6354, 29311, 27837, 5130, 29315, 29727, 5284, 23803, 202, 28323, 89, 31175, 91], - [1, 5293, 29665], - "tinygradient", - "tmpdir", - "ps1", - "glob2regx", - [2, 29619, 29620], - "@bokub", - [3, 29621, 16, 9], - [2, 7623, 7628], - [2, 1283, 17321], - "template ", - [2, 29623, 16111], - "expand-path-helper", - "magnific-popup", - [3, 4968, 15], - [3, 111, 18], - "-cloud-services-collaboration", - "grommet-icons", - "composable-commerce-test-data", - "styleable", - [3, 3474, 9], - [2, 10818, 29635], - "toolbars", - [2, 29637, 5592], - [3, 11285, 19], - "@vscode/vsce", - [2, 10829, 29640, 35971], - "source-l", - "vscode", - [2, 964, 4415], - [2, 29644, 591], - [3, 19588, 29], - "chromatic", - [2, 29650, 29651], - "addlistener", - "addeventlistener", - "waits", - "grommet-", - "theme-hpe", - [2, 1192, 29653], - [3, 12201, 18, 16], - "random-int", - "react-shadow", - "resolved", - "fulfilled", - [2, 29659, 22145], - [3, 29576, 18], - "tarball-extract", - [2, 29662, 29663], - [3, 35482, 11], - "act-selectors", - "fifo", - [0, 8391, 29688], - "grommet.io", - "grommetux", - "sticker sheets", - "design patterns", - "app templates", - "atomic design", - "invalidate", - "WCAG 2.1", - [2, 8652, 29675], - " navigation", - "screen reader tags", - [3, 10826, 11], - "graphical user interface", - "plunder", - "exit-x", - "modelcontextprotocol", - "osition-area-property", - "pwa-asset-generator", - "_codesniffer", - [2, 1936, 29684], - [2, 17753, 5130], - "-lint", - 1743292800000, - [2, 23814, 6653], - "rapid-development", - "proclaim", - "@grammyjs/types", - "dart-sass", - "grunt-jekyll", - "mcp", - "deno2node", - "sigstore", - [2, 9466, 1153], - "antora", - [3, 3397, 13], - [2, 29700, 3212], - "zepto", - [3, 12478, 11], - [2, 30713, 29989], - [1, 2343, 29712], - "countries", - [2, 22642, 5351], - [2, 18145, 4581], - "@next/font", - "package-up", - [2, 17507, 4107], - [0, 29714, 29715, 29720, 34352], - "@jsdevtools/ez-spawn", - [0, 6680, 26246, 26882, 26247, 26883], - [ - 0, 87, 29211, 29381, 29378, 5583, 811, 816, 6373, 4864, 4874, 29386, 1009, 32801, 1011, 1165, 1195, 1264, 1540, - 1593, 1596, 10944, 29374, 1177, 1938, 1942, 13668, 2151, 2193, 6382, 29120, 28366, 2675, 28629, 29392, 3400, - 29137, 3566, 29372, 28369, 27120, 4042, 20981, 10854, 29398, 20983, 4073, 4076, 4079, 2278, 13739, 29373, 11440, - 4484, 4487, 28625, 91, 20474 - ], - "@types/png", - [2, 29716, 1722], - "context7", - "vibe-coding", - [0, 32054, 29405, 31512, 29002, 4453, 28125, 5131, 89, 188, 1098, 3698, 35060, 35062, 35058, 29412], - [2, 17590, 23989], - "png.js", - [2, 29573, 29730], - "screenshots", - "ai-detection", - "screengrab", - "headless", - "app-detection", - "rapidoc", - "iso-codes", - "iso", - "api-generator", - "find-process", - [1, 2343, 29738], - "low-code", - [2, 29737, 3729], - [3, 33097, 12], - [0, 0, 29739, 29864, 2537], - [0, 107, 91, 1983, 11026, 26744], - [3, 7895, 13], - "jpeg-js", - "striptags", - [2, 1948, 29816], - "baas", - "launch-image", - "splashscreen", - "splash-screen", - "image-generation", - "aws4", - "mstile", - "pwa-assets", - [3, 7863, 11], - "web publishing", - [2, 3862, 29804], - "@ionic/react", - "@loki/runner", - "@loki/target-chrome-app", - "@apitools/openapi-parser", - [2, 29760, 6866], - "base64-", - "xml-but-prettier", - "idb-keyval", - [3, 5062, 14], - "rypto-js", - [2, 29763, 29764], - [2, 29785, 17878], - "@saithodev/semantic-release-backmerge", - "cebook-js-sdk", - [2, 22819, 29768], - [2, 1983, 29303], - [3, 19588, 24], - "nline-", - [2, 11294, 6436], - [2, 29772, 29773], - [2, 29771, 29774], - [2, 29781, 29782], - "river-adapter-utils", - [2, 2767, 11110], - "jsdoc-babel", - [2, 27738, 8791], - [3, 14065, 15], - "mplate-html-minifier", - "parse-server", - "inspectpack", - [3, 29757, 20], - "Custom Element", - "Web Component", - "swagger ui", - "swagger ", - "WHATWG", - [2, 28008, 57], - "html5 parser", - [2, 28008, 1753], - [2, 1936, 1753], - "openapi ui", - [2, 29366, 4366], - [2, 29366, 11328], - [2, 29366, 3902], - "fast-ur", - "l-parser", - [2, 29799, 29800], - [2, 29366, 25677], - [2, 29789, 4366], - "animatable", - "react-swipeable-list", - "pause", - [2, 29811, 29812], - [3, 1551, 9], - [2, 29808, 18716], - [2, 1432, 29809], - [3, 29757, 13], - "native-android-emulator", - [2, 29814, 29815], - [3, 29807, 20], - "ios-simulator", - "-preferences", - [2, 31868, 5891], - [2, 29822, 19102], - "collapsible", - "accordion", - "readme-md", - [3, 4272, 10], - [2, 11375, 10850], - "username", - [3, 9308, 9], - [2, 29827, 29828], - [3, 4060, 15], - "ocal-resolve", - [2, 3500, 1274], - "visual testing", - "swipeable", - "customizable", - [3, 1419, 20], - "teeny-tap", - "base64url", - "touchscreen", - "listview", - "swipe-to-delete", - "swipe-actions", - "json/simple-icons", - [2, 29852, 32865], - "iso-country-codes", - "use-composed-ref", - "use-latest", - [2, 29866, 1460], - "@preconstruct/cli", - "blue-tape", - "autosize", - "grow", - "riot", - "events.once", - "@scalar/s", - [2, 30844, 1983], - "exist", - "md-writer", - [2, 12557, 8982], - [2, 29858, 29859], - [3, 7806, 10], - "mon-tags", - "ts-declaration-location", - [2, 29863, 14056], - "isabsolute", - [3, 1733, 14], - [ - 0, 31549, 31550, 29427, 31553, 31565, 9006, 3015, 31566, 15813, 10725, 30672, 5066, 15571, 89, 31567, 1098, 188, - 12295, 5131, 28125, 31568, 31569 - ], - "react-smooth", - [3, 29842, 12], - "@borderless/ts-scripts", - [2, 29958, 29576], - [2, 29870, 34050], - "victory-", - [1, 2343, 29929], - [2, 10818, 29873], - "mdx-gfm", - [2, 10818, 29875], - "webpack5-compiler-swc", - [2, 29877, 29878], - [3, 10841, 15], - "-runner", - [2, 33114, 22982], - [2, 33114, 29881], - "time-format", - "@rkusa/linebreak", - [2, 29885, 29886], - "opentype.js", - [3, 18787, 15], - "v-expression", - "vitest-axe", - "log-process-errors", - "sortablejs", - [2, 5581, 29898, 27479], - [2, 29518, 29892, 29930], - "native-pr", - "jpeg-exif", - "linebreak", - "png-js", - "@riotjs/dom-bindings", - "blob-stream", - "multi-pa", - "pdfjs-dist", - [2, 29904, 4643], - "pdf writer", - "pdf ", - [2, 29902, 1179], - "@riotjs/", - [2, 29906, 29907], - "@riot", - [3, 25083, 18, 7], - "call-delayed", - "chai-i", - [2, 29904, 93], - [2, 29904, 614], - "ncreasing", - [2, 29909, 29912], - [2, 29915, 29916], - "@wdio/s", - "auce-service", - "bianco.attr", - "pgpass", - "pg-pool", - "pg-types", - "bianco.query", - "cumpa", - "pg-protocol", - "curri", - [2, 29126, 28794], - [2, 29927, 28794], - [3, 4069, 15], - "pg-cloudflare", - [0, 29947, 29948, 29981, 2523], - "eview", - "pg-co", - "py-streams", - [2, 29931, 29932], - "@cloudflare/workers-types", - "custom tags", - "minimalist", - "libpq", - "rdbms", - "data binding", - "riotjs", - "riot.js", - "tdesign-mobile-vue", - "oxc-resolver", - "copy-source", - [2, 5237, 29944], - "npm-watch", - [0, 29443], - [0, 33580, 5087, 4874, 1429, 31602, 2024], - [2, 29950, 12826], - [3, 35537, 26], - [2, 29956, 582], - "hasha", - "reorder", - "ng-sortable", - [2, 12318, 29992], - [3, 66, 20], - [2, 27777, 27738, 1764, 1524], - "iso-", - "@use-gesture/vanilla", - [2, 29961, 29962], - "tdesign-", - "icons-vue-next", - [2, 29958, 29658], - [2, 1547, 3525], - [2, 3525, 15159], - [2, 812, 1002], - "@soerenmartius/vue3-clipboard", - " build", - [2, 3525, 29968], - "/build", - [2, 3525, 29970], - "dom-parser", - "qrcode.vue", - [2, 8851, 19675], - [2, 29976, 29977], - [3, 32978, 16], - "atic-import", - [2, 29976, 29979], - "yles", - "@tdesign/site-components", - [0, 29446, 14374, 1081, 29447, 29451, 29452, 29453], - [1, 2343, 29985], - [2, 29961, 29984, 200], - "publish-", - [0, 29986, 29995, 2514, 2537], - [0, 26702, 19344, 1915, 32525, 1953, 1958, 1959, 2105, 2203, 26716, 4523], - [2, 4609, 29988], - "tdoc", - "ystem-ui-font-family", - "tdesign", - "pinkie-promise", - "-widget", - "weui", - "denodify", - [0, 4874, 25950, 1177, 2675, 17529, 2931, 27949, 3401, 4505, 91], - [2, 29997, 3346], - [3, 6806, 10], - "tstyche", - "atomic", - [2, 30016, 30020], - "atomic-sleep", - [1, 2343, 30160], - "xit-leak-free", - [2, 27492, 30003], - "pino-", - [2, 20417, 4714], - [2, 30005, 30006], - "std-", - [2, 1753, 591], - [2, 30008, 30009], - [2, 30005, 30010], - "quick-", - "-unescaped", - [2, 1671, 30013], - [2, 30012, 30014], - [3, 18858, 17], - "real-require", - "sonic-boom", - "thread-stream", - "-tag", - "lush-write-stream", - [2, 5537, 30021], - "obug", - "bole", - "fastbench", - "-write-stream", - [2, 20064, 30026], - "midnight-smoker", - "steed", - [2, 30031, 30032], - [3, 3577, 11], - "-variables", - [2, 30034, 30035], - "postcss-he", - "xrgba", - "postinstall", - [3, 3848, 9], - "devpostinstall", - [2, 30040, 1524], - [3, 3668, 14], - [2, 24276, 30042], - "odule-replacement", - "graphql-jit", - "uploader", - "preview", - "image-edit", - [2, 30085, 3582], - "mqemitter", - "remark-math", - "single-user-cache", - "base64-stream", - [2, 24101, 30057], - "ready", - "-simple", - [2, 2105, 30054], - "win32", - "woslash", - [2, 9406, 7293], - [2, 30060, 30065], - "remark-s", - [2, 30062, 30063], - "gulp-conve", - "rt-css-var", - "picklog", - "martypants", - "wechat", - "weixin", - [2, 29314, 4183], - [2, 17998, 30070], - "ading-time", - [2, 27707, 364], - "better-react-mathjax", - [2, 30074, 25131], - [3, 9313, 17], - [2, 30076, 30077], - [3, 12415, 13], - "alue-to-estree", - [2, 30079, 30080], - [3, 31790, 16], - "ocalematcher", - "tiny-lru", - [2, 10884, 30083], - "egotiator", - [2, 11932, 11525], - "iso-countr", - [2, 30087, 30096], - [3, 13203, 19], - "irregular-plurals", - "fs.extra", - "plurals", - "count", - "irregular", - "noun", - "nouns", - "requireg", - "orm-data", - "@pkgr/core", - [2, 4511, 30118, 30123], - "make-synchronized", - [2, 30101, 30102], - [3, 30099, 13], - "ous", - "sync-threads", - "fclone", - "vizion", - "@pm2/io", - "pidusage", - "pm2-axon", - "@pm2/", - "@pm2/agent", - "pm2-", - "pm2-deploy", - "synchronize", - [2, 5340, 30116], - "@pm2/js-api", - "webc", - "cli-tableau", - [3, 32969, 11], - "pm2-axon-rpc", - [2, 30111, 28917], - [2, 30111, 21833], - [2, 30109, 30121], - "heme", - "logs", - "kraken", - " balancer", - [2, 3001, 30126], - "lb", - "balancer", - [2, 3614, 30129], - "kubernetes", - "k8s", - "emoji-flags", - "pm2-docker", - "graceful", - "phone-codes", - "node-pm2", - "fs-fixture", - "production", - "keymetrics", - [2, 10339, 13522], - "strong-pm", - "supervisord", - "pm2.io", - "@ibyar/expressions", - " production", - [2, 17979, 30146], - [2, 3729, 6877], - "probes", - " process", - " alive", - [2, 30150, 30151], - [2, 25607, 30152], - "process ", - [2, 30154, 8309], - "clustering", - "memoizerific", - "cluster cli", - "dev ops", - [0, 30171, 0, 29047, 2537], - "phone-prefixes", - "@vercel/blob", - [2, 7285, 2669], - "tap-dot", - [2, 30180, 30181], - "PNG", - "js-png", - "node-png", - "import-without-cache", - "png-parse", - [0, 2845], - "pg-gateway", - "@ibyar/decorators", - "pglite-2", - "aurora", - "ibyar", - [2, 4641, 5341], - [2, 4641, 7256], - "evaluation", - [3, 578, 10], - "arousel", - [2, 30195, 3825], - "no-code", - "mvp", - [1, 2343, 30186], - [0, 30187, 30188, 30189, 2537], - [0, 8712, 1423, 5210, 1209, 3021, 26499], - [0, 34225, 4874, 2559, 91, 34229, 28456, 34231], - [0, 89, 5130, 21151, 28811], - "poe", - "economy", - "ninja", - "poe.ninja", - "poe economy", - [3, 581, 10], - [2, 30212, 3730], - " of exile", - [2, 3403, 30197], - " economy", - [2, 30198, 30199], - [3, 30200, 14], - [2, 30201, 30192], - [2, 30194, 8568], - [2, 30201, 5592], - [1, 2343, 30229], - "ast-walker-scope", - "poe.watch api", - [2, 30193, 8568], - "@vercel/ne", - "copilot", - "@types/ne", - [3, 587, 10], - "reval", - [2, 24808, 30213], - [2, 6649, 2995], - [2, 6645, 30215], - "tsgen", - [2, 30231, 30232], - "glamor", - [2, 24177, 591], - "o-async", - " manipulate", - [2, 1473, 30222], - [3, 30223, 15], - [2, 30224, 6600], - " color manipulation", - [2, 7595, 30226], - [3, 35570, 16], - [0, 30249, 0, 2514, 2487], - "muggle-string", - [3, 593, 10], - "potlight", - [2, 579, 30251], - [2, 29444, 30511], - [3, 6372, 10], - [2, 30235, 6374], - [3, 23816, 17], - [2, 30237, 13290], - [2, 30235, 30238], - [2, 30235, 1973], - [2, 30240, 3007], - "nuget-publish", - [2, 30244, 4900], - [3, 13484, 37], - "popperjs", - [2, 1517, 30248], - "attached", - "center", - [0, 9315], - [1, 2343, 30308], - "tiptap", - "allure-js-commons", - "flush-promises", - [2, 30255, 30259], - "@yarnpkg/l", - [3, 10175, 16, 14], - [2, 30276, 30280], - "source map", - "ibzip", - [2, 23660, 30261], - "tector", - [2, 11369, 30282], - [2, 10880, 30264], - "preset-env", - "jison-gho", - [2, 16645, 30267], - "null", - "calculation", - "unixify", - "allure", - "codeceptjs", - "testops", - [3, 3674, 10], - [2, 30273, 25461], - "read-cache", - "express-i", - [3, 1895, 16], - "oblems", - [2, 30277, 30278], - "ntlayer", - "is-mobile", - "spector", - "deep-object-diff", - "@ngard/tiny-isequal", - [2, 6268, 1467], - [2, 206, 30285], - [2, 209, 6731], - "@intlayer/chokidar", - "hsl", - "hsla", - "hwb", - "rgba", - [2, 30294, 6008], - [3, 30288, 11], - [2, 30296, 23], - [3, 30293, 12], - "intlayer", - "caniuse-api", - "colord", - [2, 10829, 30311], - [3, 19443, 15], - [2, 30301, 5592], - [2, 9738, 30304], - "s-hooked", - "@utils/ts-config-types", - [3, 30305, 16], - "@intlayer/", - [0, 0, 30473, 2514, 4139], - "@utils/ts", - [2, 30309, 32810], - "docs-mdx", - [2, 9402, 30374], - "get-npm-tarball-url", - "pixrem", - "pleeease-filters", - "apply", - [2, 3562, 30316], - "postcss-a", - "ttribute", - "-case-", - [2, 30322, 30367], - "use", - "insensitive", - [2, 30320, 30323], - [2, 30319, 30324], - [2, 30318, 30325], - [3, 3570, 22], - [3, 3570, 14], - [2, 30328, 12981], - "hex-alpha", - [2, 30328, 30330], - [3, 30331, 15], - "sl", - [2, 30332, 30333], - "wb", - [2, 30332, 30335], - "rebeccapurple", - [2, 30328, 30337], - [3, 30338, 15], - "gb", - [2, 30339, 30340], - "a-fallback", - [2, 30341, 30342], - [3, 4791, 10], - "nt-family-system-ui", - [2, 30344, 30345], - [3, 30346, 13], - [2, 30347, 24044], - [3, 3611, 18], - [2, 30349, 6422], - "user-agents", - "nitial", - [2, 3607, 30352], - [3, 3622, 10], - "dia-minmax", - [2, 30354, 30355], - "seudo-class-any-link", - [2, 6423, 30357], - [3, 30358, 14], - [2, 30359, 11513], - [3, 30274, 11], - "lace-overflow-wrap", - [2, 30361, 30362], - [3, 3681, 17], - [2, 30364, 6421], - [2, 30364, 23293], - [3, 11228, 16, 2], - "cssrecipes-custom-media-queries", - [3, 30368, 11], - [2, 30369, 19400], - [2, 30369, 10052], - [2, 30369, 594], - "vert", - "ermaid", - [2, 28756, 7224], - "ical-rhythm", - [2, 30373, 30376], - [2, 30369, 30377], - "i-am-meticulous", - [2, 1884, 30379], - "isogram", - "oc-and-anchor", - [2, 7646, 30382], - [2, 12798, 591], - [2, 3160, 30384], - [3, 30385, 11], - "@react-aria/interactions", - "filenames", - [2, 30386, 30388], - [2, 30386, 5980], - [2, 30386, 89], - [3, 30391, 13], - [2, 30392, 1213], - [3, 30391, 12], - [2, 30394, 367], - [2, 30386, 1002], - [2, 30386, 2282], - [2, 30415, 30461], - "nano-logger", - "npmpub", - [2, 25230, 25461], - [2, 3562, 30401], - "-inline", - [2, 3897, 30403], - "@enact/ui", - "lazy-universal-dotenv", - "to-slug-case", - [3, 4693, 9], - "ano-logs", - [2, 30408, 30409], - [2, 30058, 30412], - "-position", - "cssnext", - "modern-tar", - [3, 30387, 12], - [2, 30417, 364], - [3, 906, 9], - [3, 205, 11], - "ascade", - "-lay", - "er-name-parser", - [2, 30420, 30421], - [2, 30419, 30422], - [2, 30418, 30423], - [2, 30417, 30429], - "at-rule", - "atrule", - "csswg", - "delivery-react-native", - "queries", - [2, 30417, 30432, 30433], - "plugin-co", - "nsole-breadcrumbs", - [2, 30435, 30436, 30437], - [3, 30431, 16], - "network-", - "breadcrumbs", - [2, 30435, 89], - [2, 30438, 30440], - "-native-client-sync", - [2, 30443, 30444], - "declarative", - [3, 30439, 29], - "event-sync", - [2, 30443, 30446], - "global-error-handler", - [2, 30443, 30448], - "hermes", - [2, 30443, 1577], - [2, 30443, 30451], - "unhandled-rejection", - "iserror", - "react-syntax-highlighter", - [2, 30457, 30460], - "bugsnag", - "stability", - [3, 30375, 17], - "@enact/webos", - [2, 30875, 4000], - "croll-area", - "overlays", - "at-rules", - "@ionic/angular", - [2, 30415, 17966], - "@keyframes", - "@counter-style", - "@devtools-ds/object-inspector", - [2, 4807, 30453], - [2, 30475, 30476], - "@aw-web-design/x-default-browser", - "@fal-works/esbuild-plugin-global-externals", - "flexbugs", - [0, 4483, 1177, 1984, 1894, 91, 4874, 1953, 7677, 1982, 1895, 1011, 1009], - [1, 2343, 30482], - [3, 659, 18], - "nobis-nostrum-nam", - "@skylernpm/hic-inventore-dolores", - [3, 3616, 9], - "postcss-less", - "tyl", - "postcss-styl", - [0, 30490, 30492, 30497, 34352], - "quickapp", - "PHP", - "sss", - "convex", - [3, 29658, 18, 8], - [2, 30502, 27421, 30606], - "world-countries", - [0, 1437, 3074, 3714, 4361], - "image-set", - [0, 2228, 2240, 2247, 2316, 1906], - [2, 2662, 30554], - "@eggjs/oxlint-config", - "@vercel/e", - "mock-spawn", - [0, 21779, 8221, 13814, 15344, 158, 6707, 3178], - "node modules", - [3, 31793, 24, 5], - [1, 2343, 30524], - [2, 30503, 30515], - [3, 30477, 11], - [3, 30489, 12], - "postcssrc", - ".config.js", - [2, 3561, 30505], - "@recharts/devtools", - "motion-dom", - [2, 30510, 186], - "motion-u", - "-snapshot", - "midas", - [3, 3591, 9], - "ark-", - "y-codes", - "theme-class", - [2, 30514, 30516], - [2, 30513, 30517], - "hort", - [2, 3677, 30519], - [2, 1172, 30522], - [3, 5558, 22, 6], - [2, 30560, 6802], - [0, 30525, 30526, 30189, 2523], - [0, 668, 8712, 4090], - [0, 1192, 91, 5087, 4874, 28455, 28574], - [2, 30546, 30547, 3966], - [1, 2343, 30549], - [2, 30530, 30537], - [3, 30868, 11], - "cssnano-", - [2, 30531, 594], - [2, 30534, 11504], - "@codecov/", - [2, 30536, 6579], - [3, 1300, 12], - "silent", - "expressots", - "font-f", - "clean-architecture", - "font-family", - "font-weight", - [2, 30544, 30545], - [3, 4526, 12], - "ramework", - [3, 31198, 25], - "particles-", - "desm", - [0, 30550, 30555, 30556, 2523], - [0, 1169], - [2, 41, 30552], - "pro-components", - [2, 5557, 3514], - "node16", - [0, 3421, 1429, 4493, 2899, 4039, 2026, 4474, 91, 4856, 4874, 6503, 1151, 6494, 8648], - [0, 6653, 2275, 5472, 6969, 5982, 7320, 11346, 3541, 1169], - [1, 2343, 30580], - "esc", - [2, 7632, 30558], - [3, 30501, 14], - "gulp-better-rollup", - [2, 30560, 1460], - "Leaflet", - "Maps", - "Gesture", - "Handling", - "two", - "fingers", - [2, 30571, 30572], - [2, 3976, 30573], - "world", - [3, 29868, 24, 3], - "anitize", - [2, 30571, 30578], - [3, 220, 19], - [2, 4026, 3639], - [2, 30575, 30576], - [3, 29963, 27, 3], - "atrules", - [0, 30596, 30597, 2514, 2523], - "children", - "nestings", - "@anthropic-ai/sdk", - "@azure-rest/ai-inference", - [2, 959, 30586], - "vue-virtual", - [2, 209, 3376], - [3, 30402, 16], - [2, 30588, 4298], - [2, 2574, 3375], - "world-iso-codes", - [2, 964, 188], - [2, 30599, 29842], - "normalizes", - "fixes", - [0, 1112, 1415, 16230, 24324, 36538, 30169, 30023, 3530, 28865, 29444, 4135, 26379, 27921, 4459, 33251, 24214], - [ - 0, 33043, 29170, 29455, 29458, 29465, 4874, 20374, 5254, 29891, 29466, 33253, 7677, 23203, 10984, 19839, 1680, - 1177, 20044, 16860, 3144, 3749, 15450, 1894, 23535, 30234, 24181, 91, 29469, 30908, 28797, 29470, 1983, 1984 - ], - [1, 2343, 30601], - "world-", - [2, 30613, 1460], - [0, 30605, 30608, 30611, 2537], - "@cfworker/json-schema", - "@clerk/localizations", - "@ark/attest", - [0, 1676, 1679, 2151, 2212, 17450, 4400], - "non-corrupti", - "admin-lte", - [0, 5245, 29493, 4864, 1429, 1177, 2899], - "@clerk/nextjs", - "@clerk/themes", - [0, 1764, 7682, 26965, 3428, 2090, 27, 1002, 1965, 5995], - "backendless", - [3, 30593, 18], - "to-valid-identifier", - [1, 2343, 30626], - "@astrojs/mdx", - [2, 30618, 30619], - [3, 28058, 16], - "tro", - [2, 3704, 34683], - [2, 30625, 3286], - [2, 30623, 9872], - "control-", - "smartbanner.js", - [3, 2635, 14], - [0, 0, 30627, 30780, 2537], - [0, 8648, 4874, 4880, 34737, 1894, 89, 3824, 7671, 91], - [2, 30612, 30665], - "cascade-layers", - [2, 216, 30629], - [3, 30630, 19], - [3, 3569, 13], - [2, 30631, 30632], - [3, 30633, 24], - "mix-function", - [2, 30634, 30635], - [3, 30633, 20], - "alt-text", - [2, 12009, 30638], - [2, 30637, 30639], - [3, 28688, 12], - [2, 30641, 5746], - [2, 216, 30642], - "ormat-", - [2, 30644, 4798], - [2, 30539, 30645], - [2, 216, 30646], - "gamut-mapping", - [2, 216, 30648], - [3, 30649, 19], - "radients-interpolation-method", - [2, 30650, 30651], - "hwb-function", - [2, 216, 30653], - [3, 215, 19], - "c-unit", - [2, 30655, 30656], - [2, 30655, 30352], - "light-", - "dark-function", - [2, 30659, 30660], - [2, 216, 30661], - [3, 30662, 19], - "ogical-", - "-request", - [2, 30683, 31073], - "-and-clear", - [2, 14639, 30667], - [2, 30664, 30668], - [2, 30663, 30669], - [3, 30670, 26], - "overflow", - [2, 30671, 30672], - [3, 30673, 30], - "behavior", - [2, 11262, 30675], - [2, 30674, 30676], - [2, 30671, 24800], - "viewport-", - "units", - [2, 30679, 30680], - [2, 30671, 30681], - [3, 30628, 13], - [2, 30767, 33380], - "media-minmax", - [2, 216, 30685], - [3, 30686, 24], - "-aspect-ratio-number-values", - [2, 30430, 30688], - [2, 30687, 30689], - [2, 30695, 10740, 4978], - "nested-calc", - [2, 216, 30692], - [3, 30693, 19], - [3, 30628, 12], - "bannerize", - [2, 31495, 31502], - "play-values", - [2, 29577, 30698], - [2, 3646, 30699], - [2, 30694, 30700], - "oklab-function", - [2, 216, 30702], - "relative-", - "yntax", - "color-syntax", - [2, 30704, 30706], - [2, 216, 30707], - "scope-", - "pseudo-class", - [2, 30709, 30710], - [2, 216, 30711], - [3, 30712, 19], - "tepped-value-functions", - [2, 30713, 30714], - [3, 70, 7], - [3, 5845, 9], - [2, 7854, 30717], - [2, 30716, 30718], - [2, 28533, 30719], - [2, 216, 30720], - [3, 30721, 19], - "rigonometric-functions", - [2, 30722, 30723], - [2, 216, 10760], - "css-b", - "lank-pseudo", - [2, 30726, 30727], - "css-h", - [2, 30612, 33812], - "zarm", - "as-pseudo", - [2, 30729, 30732], - "css-pr", - "efers-color-scheme", - [2, 30734, 30735], - [2, 1007, 30738], - [3, 13069, 23, 4], - "postcss-clamp", - [3, 3591, 10], - "r-pseudo-class", - [2, 30740, 30741], - "ouble-position-gradients", - [2, 30513, 30743], - [3, 4791, 14], - "within", - [2, 30745, 30746], - "gap-properties", - [2, 3562, 30748], - "ab-function", - [2, 30478, 30750], - [3, 3616, 10], - "gical", - [2, 30752, 30753], - [3, 3664, 9], - "pacity-percentage", - [2, 30755, 30756], - "verflow-shorthand", - [2, 30755, 30758], - "age-break", - [2, 6423, 30760], - [2, 30764, 30766], - "postcss-place", - [3, 3710, 17], - "lists", - "h", - "@biomejs/", - "playbook-builder", - "algo", - [2, 444, 30771], - "-interactions", - [2, 30773, 89], - [3, 29959, 13], - "@zarm-design/bem", - [2, 3677, 30705], - [2, 30777, 45], - [3, 30774, 13], - "ahooks", - "better-scroll", - [0, 89, 586, 11000, 26264, 6458], - "hermes-compiler", - [1, 2343, 30791], - [2, 30777, 200], - "@oxc-project/runtime", - "zarm-ui", - "zarm-mobile", - [2, 30790, 553], - [2, 20561, 30789], - "render-stream", - [3, 30784, 13], - [0, 30793, 0, 30799, 2523], - "@oxc-node/cli", - [0, 1687, 5303, 1459, 6501, 182, 148, 164, 167, 29468, 187, 153, 191, 28332, 15690, 28361], - "oxc-parser", - [2, 30796, 30797], - "@iconify", - "/utils", - [2, 3882, 11245], - [ - 0, 28407, 1459, 6094, 28416, 28417, 2585, 28442, 18241, 6038, 6110, 1936, 6138, 6139, 6142, 6144, 6145, 20863, - 14600, 5130 - ], - [1, 2343, 30801], - [0, 0, 30812, 30825, 2537], - "@enact/i18n", - [2, 30804, 30232], - [3, 907, 8], - "doublylinked", - "lightning", - "-pool", - [2, 30806, 30807], - "ilib", - "-bytea", - [2, 25638, 30810], - [0, 1192, 1177, 4042, 4468, 1894, 91, 5087, 1895, 1955, 2780, 1011, 1009], - "power-tasks", - "@cyntler/react-doc-viewer", - "putil-", - [2, 30815, 19138], - "varhelpers", - [2, 30815, 30817], - "@enact/docs-utils", - [2, 30405, 30821], - "-test-utils", - [2, 18576, 30823], - "nact-proxy", - "@fal-ai/client", - [0, 31512, 32054, 35062, 35060, 20986, 4453, 5284, 91, 89, 188, 3709, 23332], - [2, 22180, 591], - [1, 2343, 30836], - [2, 1962, 30830], - "titanium", - "dos-detector", - "ed-queue", - "-ended-queue", - [2, 4420, 30832], - [2, 11344, 977], - "tsm", - [0, 30846, 30863, 30865, 2443], - "level-codec", - "write-stream", - [2, 25982, 30838], - "ltgt", - "bundle-size", - "spark-md5", - "vuvuzela", - "rolldown-", - "react select", - [0, 29178, 3744, 3911], - "react dropdown", - [2, 30852, 30856], - "empower", - [2, 3696, 12168], - "universal-", - "accessib", - "strict-equal", - [2, 1683, 30853], - [2, 30851, 30854], - "le react select", - "dereserve", - "accessible", - "licensify", - [3, 21510, 14], - "ilterify", - [2, 30860, 30861], - [ - 0, 48, 53, 68, 61, 71, 73, 76, 14039, 78, 83, 87, 90, 97, 966, 968, 972, 1195, 1593, 1610, 1177, 1879, 1895, - 1938, 1947, 1955, 1959, 1192, 2780, 2843, 3697, 1894, 89, 3824, 2924, 4676, 4677, 4681 - ], - "jsx-async-runtime", - [0, 89, 6071, 7521, 5128], - "@formkit/auto-animate", - [2, 8293, 181], - "@reporters/github", - "@apm-js-collab/tracing-hooks", - "tidev", - "iphone", - "precommit", - [2, 5186, 2203], - [2, 5928, 3717, 2389], - "react-load", - "combine-promises", - "@actions/github", - [2, 20201, 1172], - "@actions/glob", - [2, 19849, 3583], - [2, 1252, 30880], - [2, 20201, 2942], - "errorstacks", - "-sinon", - [2, 2878, 30884], - "-display-", - "@google/genai", - "kolorist", - "oxlint", - [2, 30893, 30894], - "virtual dom", - "dom diff", - [3, 30878, 13], - "undler", - [2, 3886, 1541], - [2, 30897, 30898], - [3, 38298, 13], - "dx-loader", - [2, 32359, 13369], - [2, 30901, 7020], - [3, 30899, 18], - [2, 30459, 30903], - "-ssr-addon-v5-slorber", - [3, 18018, 13], - [2, 30904, 3642], - "@huggingface/inference", - "jest-l", - [2, 30909, 166], - "unplugin-a", - [1, 2343, 30925], - "ight-runner", - [2, 30907, 30911], - [2, 35506, 30914], - "tect-port", - [2, 30916, 30917], - [3, 12312, 18], - "shoehorn", - [3, 2954, 10], - [2, 30923, 1541], - "lugin-pug", - [2, 30918, 30920], - [2, 5334, 30921], - [3, 4887, 20], - [3, 3703, 15], - [0, 0, 12112, 30927, 2523], - "@nestjsx/crud", - [0, 2070, 1108, 6961, 57, 29617, 4643], - [2, 206, 31196], - [2, 30930, 32550], - "@vercel/b", - [1, 2343, 30933], - [2, 18420, 8162], - [0, 30934, 0, 30936, 2523], - [0, 1459, 16485, 182, 28912, 148, 187, 153, 28332, 15690, 28361, 146, 28913, 15716, 29131, 29495], - "parcel-bundler", - [ - 0, 28407, 1459, 6094, 28416, 28417, 2585, 28442, 18241, 6038, 6110, 1936, 6138, 6139, 6142, 6144, 6145, 20863, - 5130 - ], - "Vue", - [1, 2343, 30945], - "@zoroaster/assert", - "glob-fs", - [2, 30942, 10098], - [3, 30939, 11], - "unstyled", - "alamode", - [0, 0, 2667, 31019, 4139], - "humanized", - "si", - "locale", - "@a-la/fixture-alamode", - "localized", - [2, 30952, 1172], - [3, 30949, 14], - "@artdeco/clean-stack", - "@artdeco/erte", - "@artdeco/", - "renderkid", - [2, 30971, 4521], - "jitter", - [2, 30989, 186], - "exception", - [2, 30955, 30962], - "scripts.json", - [2, 30926, 30665], - [2, 30965, 614], - "@nestjsx/", - "@depack/render", - "crud", - "crud-generator", - "frameworks", - "parse-ms", - [3, 30963, 14], - "@netlify/framework-info", - "@wrote/exists", - "milliseconds", - "period", - "@wrote/rm", - [2, 30942, 6696], - "@zmotivat0r/o0", - "@pothos/core", - [2, 30942, 553], - "mercurial", - "hg", - "vcs", - "argufy", - "catchment", - "p-filter", - "p-locate", - "documentary", - "unplugin-u", - [2, 5313, 6355], - [2, 15658, 30992], - "-integration", - "npmjs", - "@pri", - "sma/engines", - [2, 30994, 30995], - "gatsby", - "hugo", - "netlify", - "ts-pattern", - [2, 32976, 33011], - "global-dirs", - "erotic", - "line-replace", - "@prisma/", - [2, 31005, 1676], - [2, 13403, 31016], - "xdg-app-paths", - [2, 31005, 5576], - "studio", - [2, 31005, 31010], - "migrate", - [2, 31005, 31012], - "internals", - [2, 31005, 31014], - "rtdeco", - "point-client", - [2, 4354, 31017], - [ - 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 8622, 1836, 8623, 1179, 8624, 6847, 8625, 2720, 8626, 8628, 5284, - 4403, 202, 6710, 3741, 8630, 3742, 8631, 3925, 8632, 8633, 4989, 2184, 8634, 7009, 6621, 553, 91, 181, 8635, - 4758, 8636 - ], - [1, 2343, 31082], - [2, 31514, 31516], - "fetch-engine", - [2, 31005, 31022], - "makepromise", - "get-platform", - [2, 31005, 31025], - [2, 31011, 2995], - "@prisma/ge", - "nerat", - "or-helper", - [2, 31029, 31030], - [2, 31028, 31031], - "promto", - "ORM", - "Prisma", - "reloquent", - "Prisma CLI", - "prisma2", - "JS", - "TS", - "SQL", - "SQLite", - "Postgres", - "core-js-pure", - "PostgreSQL", - "CockroachDB", - "MySQL", - "MariaDB", - "MSSQL", - "SQL Server", - "SQLServer", - "MongoDB", - [2, 32483, 13083], - "jest-location-mock", - [2, 27845, 31056], - "dule-alias", - [2, 1464, 31059], - "danger", - "-serve", - "spawncommand", - "docdash", - "hotreload", - "gulp-terser", - "@strapi/strapi", - "temp-context", - "webfont", - "usually", - "yarn-s", - [2, 31070, 11017], - "@pothos/", - [2, 31084, 31085], - [3, 815, 8], - "t-client", - [2, 31072, 31073], - "URIjs", - "pothos", - "IDE", - "svn", - "suggestions", - "intellisense", - "tagged-tag", - [0, 31083, 31199, 31215, 2537], - [0, 29692, 1079, 1676, 3310], - [3, 8998, 11], - "assword", - "@svgr/hast-util-to-babel-ast", - [2, 31104, 31682], - [2, 31089, 1541], - "@epic-web/", - "yalc", - [2, 31092, 364], - "@strapi/", - "@strapi/i18n", - "@strapi/admin", - [2, 31092, 1823], - [2, 31092, 553], - [2, 31092, 594], - [2, 31092, 2942], - [2, 31100, 184], - "@strapi/u", - [2, 31102, 1803], - [3, 28426, 12], - "zshy", - "@types/so", - [2, 31092, 18035], - [2, 31107, 31108], - "@strapi/c", - "loud-cli", - [2, 31092, 5701], - "get-latest-version", - [2, 31112, 31113], - "@strapi/p", - "ermissions", - [2, 31115, 31116], - [3, 31105, 12], - "-transfer", - [2, 31118, 31119], - "@strapi/co", - "ntent-manager", - [2, 31121, 21945], - [3, 31117, 16], - "customize", - [2, 31092, 31124], - "review-workflows", - [2, 31096, 31126], - "cript-utils", - [2, 31121, 31128], - "type-builder", - "interact", - "css-parser", - [2, 31132, 31133], - "@strapi/t", - "s-zen", - [2, 19502, 31137], - "uglifyify", - "uglifyjs", - "ustom", - [2, 4807, 4684], - "css-ast", - "strapi", - "cmf", - "alpha-sort", - "vent-", - [2, 31143, 2618], - [2, 2621, 31144], - [2, 31151, 5130], - "mdast-zone", - [2, 5967, 2619], - "svg-e", - [2, 31149, 31144], - [3, 17944, 19], - "aria", - "admin panel", - "koajs", - "jam", - "graphqL", - "@protobufjs/aspromise", - [3, 31157, 12], - [2, 31158, 14357], - [2, 31158, 5061], - [2, 31158, 2016], - [2, 31158, 1612], - [3, 31162, 13], - "loat", - [2, 31163, 31164], - [2, 31158, 8625], - [2, 31158, 3403], - [3, 31167, 13], - [2, 31168, 25200], - [2, 31158, 4577], - "infrastructure", - [2, 13888, 4719], - "semver-tags", - [2, 10617, 31173], - "self hosted", - "lernajs", - "css-tools", - "@icons-pack/react-simple-icons", - "@khmyznikov/pwa-install", - [2, 25885, 24348], - "wd2", - "jasminewd2", - "-js-extender", - [2, 11132, 31183], - "webdriver-", - [2, 31185, 10057], - "snake-case", - [2, 23689, 31181], - "ang-format", - [2, 21680, 31189], - "natives", - [3, 19209, 11], - [2, 31192, 591], - [2, 4491, 31193], - "vrsource-tslint-rules", - "syntax-patches-for-csstree", - "base-driver", - [2, 31228, 29677, 31230], - [0, 5245, 4874, 5542, 29696], - [2, 31203, 31204], - [3, 27731, 11], - [2, 31201, 57], - [3, 1006, 11], - "averse", - "@types/args", - [2, 31208, 57], - "squid", - [3, 34785, 11], - "privoxy", - "mod_proxy", - "via", - "x-forwarded-for", - "@express", - "-zod-api/zod-plugin", - [0, 32859, 8549, 5592, 5576, 5130, 6082, 28450], - [1, 2343, 31245], - "p3-linear", - "fill-keys", - "not-found-error", - [2, 5223, 31219], - "MCP", - [3, 8648, 12], - "hello-world", - [2, 13669, 31223], - [2, 31226, 28613], - [3, 2670, 12], - [3, 33464, 11], - [3, 1004, 13], - "cp-sugar", - "-external-push", - [2, 31228, 31241], - "-status", - [2, 16238, 31232], - "l-ct-react", - [2, 31236, 1983], - [3, 11282, 19], - [2, 11147, 1983], - [2, 12042, 4406], - [3, 31198, 24], - "pug-", - "move-base", - "pug-code-gen", - "pug-filters", - [2, 31228, 31261], - [0, 26964, 0, 31273, 2537], - "pug-lexer", - "@langchain/community", - "pug-linker", - "pug-load", - "pug-parser", - "pug-runtime", - "strip-co", - [2, 31252, 19490], - [2, 31240, 31253], - "@lobechat/agent-runtime", - [3, 24593, 18], - "down-it", - [2, 31256, 31257], - [2, 24585, 4535], - [3, 31231, 17], - "shape-emoji", - [2, 31228, 31271], - [2, 31995, 5257], - [2, 32038, 31267], - "bail", - "tap-bail", - " tools", - [2, 31269, 31270], - [3, 31238, 12], - "shape", - "updater-color", - [2, 31281, 26543], - [ - 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, - 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, - 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, - 12094, 31238 - ], - [1, 2343, 31309], - [2, 33763, 31291], - [3, 31262, 20], - "idn", - "idna", - "dns", - "domain", - [3, 31262, 21], - [2, 31283, 31284], - [3, 31272, 22], - "ut-modes", - "-bidi", - [2, 7001, 31285], - [3, 11071, 14], - [2, 17414, 31287], - "@uppy/companion", - [2, 31313, 364], - "detect-agent", - [2, 5176, 31293], - "remapping", - [2, 31295, 13901], - [3, 33831, 13], - [2, 31298, 31299], - "purge", - [3, 28384, 12], - "presigned-post", - [2, 31301, 31302], - [3, 30257, 11], - "erceptor", - [2, 2032, 31304], - "prom-bundle", - "grant", - "tus-js-client", - "qr code", - [2, 2662, 1278], - [0, 26964, 0, 31273, 2523], - "resumable uploads", - "tus", - "dropbox", - "@vuepress/", - [2, 21282, 31372], - [2, 31316, 31324], - "@radix-ui/", - "@browserify/envify", - [3, 31317, 12], - [2, 31318, 31135], - "common-s", - "hakeify", - [2, 31320, 31321], - "verr", - "primitive", - "webpack-chain", - "ide-mistake", - [2, 31323, 31326], - [2, 15053, 31327], - "unassertify", - [2, 31355, 31356], - [2, 31313, 553], - [2, 31313, 1783], - "vue-server-renderer", - [2, 31338, 31342], - "decode-", - [2, 14649, 4627], - [2, 31335, 31336], - [3, 13063, 12], - "filter-obj", - "-on-first", - [2, 4237, 31340], - "reset-app", - [2, 31313, 31346], - [3, 5422, 9], - [2, 7193, 3634], - "shared-utils", - [2, 31332, 2091], - [2, 31349, 3111], - [3, 21294, 16], - "retape", - [2, 19469, 31352], - [3, 32087, 20, 4], - [2, 21282, 31354], - "last-updated", - [3, 28754, 17], - "ompose-refs", - "tap-esm", - [2, 31359, 31604], - [3, 31330, 18], - "synchronous", - [2, 28756, 8191], - [2, 31363, 31364], - [3, 31361, 17], - "rimitive", - "FIFO", - "lifo", - "LIFO", - [2, 28756, 32760], - "queue js", - "job queue", - "job ", - "active-header-links", - "scheduling", - [2, 31371, 31373], - [2, 21282, 3412], - "task queue", - "ordered", - [2, 31380, 31382], - "linked list", - [3, 31368, 20], - "dequeue", - "escape-keydown", - "assistant-stream", - [2, 31385, 6599], - "assistant-", - [2, 31418, 31420], - [1, 2343, 31476], - "parchment", - [3, 15562, 11], - [2, 31395, 31396], - [3, 12455, 16], - [2, 31391, 1722], - [2, 17612, 2924], - [2, 5197, 4408], - [3, 1694, 14], - "x-buildutils", - "@types/sharp", - "radix-ui", - "ai-sdk", - "shadcn", - "fuzzysort", - "grunt-search", - [3, 19622, 19], - [2, 31403, 3595], - "@qunitjs/browserstack-runner", - "assistant", - "openai", - "ai", - "chatbot", - "ai-chat", - "dom-e", - [2, 15588, 6863], - [2, 31411, 31412], - [2, 31415, 31416], - [3, 6493, 9], - "acritics", - "@types/qunit", - [3, 31331, 11], - "qunit-plugin", - "heme-default", - "@walletconnect/browser-utils", - "ai-chatbot", - "ai-assistant", - "ai-copilot", - [2, 31349, 31428], - "exists-stat", - "js-reporters", - [3, 15580, 13], - [2, 26353, 8791], - [2, 31436, 31464], - "chatgpt", - "gpt4", - "gpt-4", - [3, 2888, 14], - [2, 31436, 553], - [3, 31421, 15], - "testling", - [2, 31436, 31441], - "AnimationFrame", - [2, 705, 31439], - "safe-json", - [2, 31436, 31443], - "window-getters", - [2, 31450, 6774], - "-export-", - [2, 31445, 14057], - [2, 1205, 31446], - "envvar", - "sanctuary", - [3, 31442, 22], - "-identity", - [2, 31449, 31451], - "xyz", - [2, 6080, 31458], - "@ethersproject/address", - [2, 31457, 25352], - [3, 10408, 17], - "al-ui", - "wallet", - "walletconnect", - "jsonrpc", - "cryptocurrency", - "dapp", - "iso-crypto", - [2, 31436, 31472], - [2, 31467, 31408], - [3, 31454, 15], - [3, 30286, 15], - [2, 31436, 594], - [2, 31436, 1616], - "alc", - "legacy-modal", - [2, 31478, 9962], - "@globalart/nestjs-swagger", - [2, 32811, 32812], - [0, 31481, 0, 7653, 2523], - [2, 31478, 553], - [3, 31465, 22], - "timed-out", - [2, 31478, 594], - [0, 12215, 12219, 1014, 28999, 7406, 7403], - "exceptions", - "sentry", - [3, 15602, 13], - [2, 31499, 31500], - "@graphiql/plugin-doc-explorer", - [1, 2343, 31488], - [0, 31505, 0, 31510, 34352], - [2, 31478, 5576], - [2, 31436, 31491], - "jsonrpc-provider", - [2, 31493, 31494], - [3, 31490, 23], - "http-connection", - [3, 27276, 25], - [2, 31497, 31498], - "ethereum-", - "test-network", - [3, 31438, 16], - "ocket-transport", - [2, 7850, 21497], - [3, 4986, 9], - [2, 2079, 4406], - [2, 11183, 31503], - [0, 29419, 29441, 29454, 29756, 29757, 29766, 29807, 29813], - "father-build", - "@mastra/core", - "rc-test", - [2, 31520, 13927], - [0, 29818, 4270, 29823, 5472, 1973, 29830, 29830, 3857, 89, 5131, 12295, 12296, 5122], - "react-slider", - "slider", - [1, 2343, 31522], - [3, 31027, 15], - [2, 7850, 11512], - "core-licensed", - "wordpress", - "gutenberg", - [2, 14013, 8189], - [3, 1103, 9], - "angular-mocks", - [0, 31529, 0, 31531, 2487], - "graphiql", - "next-router-mock", - [3, 5251, 10], - "ponselike", - [2, 31525, 31526], - "body-scroll-lock", - [0, 2817, 18023, 1125, 1129, 31764, 1122], - "motion-v", - [0, 30999, 28818, 5995, 17978], - [1, 2343, 31546], - "radash", - "@a2a-js/sdk", - "js-tiktoken", - "hono-openapi", - "@ai-sdk/provider", - [2, 31543, 31545], - [3, 2766, 10], - "jasmine-ts", - [2, 13130, 3212], - [3, 3793, 11], - "@ai-sdk/", - [2, 31643, 1623], - "ui-utils", - [0, 0, 31547, 31628, 2523], - [0, 1389, 2665, 4650], - [2, 31537, 31570], - "body scroll", - [2, 31549, 31551], - " lock", - [3, 65, 8], - "react scroll lock", - "react-common", - [2, 31552, 31554], - [3, 31555, 17], - "ponents", - [2, 31556, 31557], - [3, 31555, 14], - [2, 31559, 21189], - [3, 31560, 16], - "oks", - [2, 31561, 31562], - [2, 31559, 14592], - [3, 31553, 12], - "freeze", - "vanilla-js", - "tablet", - "bsl", - "-v5", - [2, 31572, 31582], - "@mastra/", - [2, 1379, 31574], - "node-info", - "@restart/hooks", - "resolve-path", - "@restart/ui", - [2, 3744, 20622], - "unco", - "ntrollable", - [2, 31579, 31580], - "schema-compat", - "ecosystem-react", - [2, 31585, 594], - [3, 31548, 17], - [2, 11484, 31587], - "sole-ui", - "@icon", - "s/material", - [2, 31588, 31589], - [2, 3131, 1512], - "reactcss", - "@types/esm", - "@case/eslint-config", - [2, 31596, 31601], - [3, 29736, 11], - "centered", - [2, 10818, 31597], - [3, 30881, 30], - [2, 31599, 1204], - "up-sync", - "chai-spies", - "jsx-loader", - "ntext", - [2, 3808, 31604], - [3, 3850, 10], - "@types/sane", - "testdom", - "@lukeed/uuid", - [2, 31584, 31570], - "color picker", - "sketch", - [2, 4807, 4547], - "photoshop", - [2, 31616, 5592], - [3, 31573, 14], - [2, 31618, 6893], - [3, 31548, 18], - [2, 31538, 31570], - [3, 2651, 13], - "tags-plugin", - [2, 31620, 31621], - [2, 31626, 6893], - [2, 28010, 1492], - [2, 1585, 31624], - [3, 31610, 24], - "mocha-jshint", - [0, 4384, 2076, 5131, 4453, 2013, 15535], - "@ai-sdk/azure", - [1, 2343, 31641], - [2, 31543, 31407], - "docgen/cli", - [2, 10802, 31632], - [2, 31635, 671], - "@internal/", - [2, 31637, 31638], - [3, 28766, 11], - "ypes-builder", - "@openrouter/ai-sdk-provider", - [2, 1710, 2136], - [0, 31660, 31662, 31663, 34352], - "is-root", - "camelcase-", - [2, 24559, 31675, 31676], - "llm", - "agents", - "vectorstore", - "@react-d", - "nd/invariant", - [2, 31648, 31649], - [3, 31650, 11], - [2, 31651, 4163], - [2, 1199, 17586, 31655], - "dnd-core", - "starts-with", - "embeddings", - "rag", - "evals", - "otel", - [0, 26616, 4391], - "replacement", - [0, 2766, 2297, 2881, 2886, 2898, 28023, 3181, 3758, 4535], - [0, 3113, 26799, 5131, 1388], - [1, 2343, 31672], - [3, 24807, 15], - [2, 31665, 1286], - [3, 8136, 9], - "ctrine", - [2, 31667, 31668], - "html4", - [2, 20245, 16957], - [0, 31679, 31684, 2514, 2537], - [2, 30415, 31678], - [2, 32813, 18502], - "reference-", - "invalid", - "condense-newlines", - "landmark", - [0, 20414, 29996, 17982, 11049, 30043, 30048, 3478, 29457, 3923, 18730, 20423, 30050, 30081, 4729], - [2, 30418, 31681], - "olor-helpers", - "rtablejs", - "attr-accept", - [ - 0, 5526, 5528, 5529, 31674, 826, 30086, 4874, 9241, 20441, 28400, 1540, 21594, 1177, 2078, 2220, 2222, 5560, - 29197, 3697, 3752, 4135, 4193, 4238, 4481, 91, 4548, 28519 - ], - "vue-next", - "file-selector", - "draggable", - [3, 71, 24], - [2, 31688, 14255], - [2, 69, 5721], - [3, 5700, 24], - "ipeline-operator", - [2, 31691, 31692], - "-why", - [2, 10876, 31694], - [2, 18043, 200], - [3, 4676, 9], - "locks", - [2, 31697, 31698], - "drag-and-drop", - "color-name", - [3, 1802, 13], - "kanban", - [2, 32312, 2825], - "anser", - [2, 2769, 2086], - "le-promise", - [2, 6935, 31707], - [1, 2343, 31712], - "redbox", - "crash", - [0, 31714, 31730, 31732, 2443], - "css-mediaquery", - [0, 3749, 3527, 11481, 29170], - [3, 33768, 11], - "react-si", - "de-effect", - [2, 31716, 31717], - "iceworker", - "fl", - [2, 16819, 31720], - "karma-html", - [2, 31722, 2903], - "is-whitespace", - "nfl", - "noscript", - [2, 31729, 33865], - "dashdash", - "@types/ran", - [0, 7812, 30138, 3742, 1984], - "titanium-sdk", - [0, 20001, 671], - [3, 20745, 21], - "jest-preview", - [2, 31395, 4384], - "@polka/send-type", - [2, 31005, 31774], - [1, 2343, 31739], - [0, 31746, 31747, 2514, 2537], - [2, 20413, 1699], - [3, 1845, 22], - [2, 31741, 2855], - "react-mount", - "yarn-", - [2, 31744, 17335], - [0, 58, 1437, 3930, 814, 4747], - [0, 1178, 29847, 29851, 25675, 3758, 3938, 4216, 4255, 4389, 4449], - "csstree", - "decap-cms-backend-aws-cognito-github-proxy", - [2, 9497, 31907], - [3, 3321, 10], - [2, 31751, 2849], - [1, 2343, 31756], - [3, 19812, 19], - [2, 31754, 965], - [0, 31757, 27070, 27064, 2523], - [0, 28326, 2017, 31435, 31469], - [1, 2343, 31761], - "completion", - [2, 31780, 31781], - [0, 0, 0, 31762, 2537], - [0, 30486, 5995, 35981, 7072, 18035, 89], - [1, 2343, 31783], - [2, 31768, 13083], - "viewport", - [3, 15616, 12], - "observer", - [3, 1129, 12], - "lazy load", - "inview", - "useInView", - "useIn", - "terse", - "query-plan-executor", - "decap-cms", - "aws-cognito", - "ctionObserver", - [2, 31773, 31777], - [2, 31772, 31778], - [3, 31749, 19], - "zure", - [2, 31792, 17977], - [0, 0, 0, 31784, 2487], - [0, 1177, 6939, 89, 3878, 27158], - [1, 2343, 31786], - [0, 31801, 31803, 31810, 4139], - "@formatjs/", - "listformat", - [2, 19067, 31788], - [2, 31787, 31789], - [3, 31790, 14], - [3, 31749, 18], - [2, 31792, 31804], - "common-stuff", - [3, 31790, 11], - "cu-messageformat-parser", - [2, 31795, 31796], - [2, 6458, 1671], - [2, 19067, 31798], - [2, 19644, 8982], - [0, 1104, 22972, 1676, 2061, 13896, 1776, 3102, 4449], - "what-the-diff", - [0, 53, 87, 94, 1178, 1429, 1596, 1177, 1922, 2323, 2338, 2384, 2419, 2436, 2463, 2510, 2899, 30496, 3421, 3697], - "git-gateway", - [2, 31813, 6064], - [3, 18229, 15], - "lat-gitignore", - "jsondiffpatch", - "gotrue-js", - [0, 2323, 1776, 18011, 5284, 18444, 1745], - "es-crypto", - "gateway", - [3, 31793, 21], - [3, 19657, 16], - [2, 31814, 2855], - [2, 31813, 620], - [1, 2343, 31818], - [0, 31826, 0, 31829, 2537], - "@nstudio", - [2, 4564, 2618], - [2, 2617, 31820], - [2, 31792, 2658], - [3, 28165, 19, 9], - "hmac256", - "hmac512", - [0, 2714, 31809, 3181, 2867], - [2, 31792, 1973], - "exenv", - [0, 30999, 28818, 5995, 31804, 31812], - "custom-", - [2, 31830, 11513], - [2, 10704, 31831], - "otp-io", - [2, 29956, 4963], - [2, 31836, 31837], - [3, 23664, 13], - "or-js", - "dom7", - [2, 13843, 353], - [2, 1176, 31839], - [2, 14510, 2091], - [2, 22588, 2091], - "diff-reporter", - [2, 13872, 31843], - [2, 3024, 6754], - [2, 31848, 31850], - [2, 9944, 7227], - [3, 29951, 21], - "tween", - "elpers", - "napa", - "runstorm", - [1, 2343, 31854], - [0, 31909, 31916, 2514, 2537], - [2, 32904, 158], - "nullthrows", - "@tiptap/core", - "metro-r", - [2, 31858, 96], - "metro-", - [2, 31860, 4227], - "s-runtime", - [2, 6971, 31862], - [2, 5237, 31863], - [3, 5079, 13], - "/codegen", - [2, 31865, 31866], - [3, 31867, 14], - "medium-zoom", - "js-polyfills", - [2, 31868, 31870], - "tinydate", - "tweezer.js", - [2, 8603, 1111], - "le-plugin", - [2, 3630, 31875], - [2, 31868, 31876], - "assets-", - [2, 31878, 29179], - [2, 31868, 31879], - [3, 5059, 11], - "olors", - [2, 31881, 31882], - [2, 31868, 31883], - "@jest/c", - "reate-c", - "-key-", - [2, 31887, 3046], - [2, 6990, 31888], - [2, 31886, 31889], - [2, 31885, 31890], - [2, 3912, 5959], - [2, 31868, 31892], - [3, 31867, 16], - "mmunity-cli-plugin", - [2, 31894, 31895], - [2, 31898, 4333], - [3, 24539, 13], - [2, 17304, 31900], - "laywright", - [2, 32412, 15001], - [2, 31908, 7188, 32485], - "creator", - [2, 10735, 5130], - "mobile-", - [2, 31905, 5001], - "ttlcache", - "@tiptap/", - [0, 30868, 1414, 2020, 2105, 2070, 4745], - "cp-file", - [2, 17964, 31913], - [2, 5063, 18324], - [3, 31333, 16, 3], - "keychain", - "yargonaut", - [0, 20454, 36559, 30529, 826, 4874, 30548, 4135, 1177, 29197, 91], - [2, 36270, 31918], - "s-test", - [2, 31924, 31925], - "@entypo-icons/core", - "ocial-buttons", - [2, 4910, 31921], - "evil-icons", - [3, 15277, 15], - "xecutable", - "feather-icons", - [1, 2343, 31933], - "fontisto", - "oslllo-svg-fixer", - "epub2", - "line-icons", - [2, 4182, 31931], - [0, 0, 21592, 31936, 2399], - "svg2ttf", - "svgicons2svgfont", - [0, 12479, 2947, 7193, 26421, 27968, 2100], - "osx", - [1, 2343, 31941], - "ssr-window", - "@pinia/colada", - [0, 0, 31946, 31981, 2399], - "@cmfcmf/docusaurus-search-local", - [3, 3911, 11], - "form-hmr", - [2, 31943, 31944], - [0, 4493, 32977], - [2, 31951, 31960, 31962], - "currency", - "number-", - [2, 31949, 1671], - [3, 27276, 15], - [2, 33571, 89], - [2, 31954, 31957], - [3, 7628, 10], - "hijack", - [2, 4013, 31955], - "heck", - "onclick", - "outside", - "classic-", - [2, 32028, 1745], - "build-app-blueprint", - [2, 31968, 31971], - [2, 812, 12444], - "t-flow", - [2, 17375, 31965], - "hermes-eslint", - [3, 31947, 30], - "array-hyper-unique", - "crlf-normalize", - "ddon-blueprint", - "book", - "books", - "chapter", - "comic", - "epub-maker", - "epub-maker2", - "node-novel", - "novel", - "volume", - [0, 188, 4646, 1542, 32977, 6533, 3212, 5472], - "matchmedia", - [2, 31982, 3766], - [1, 2343, 32268], - "yphenate-style-name", - [2, 6495, 31985], - "tch-", - [2, 31987, 11034], - [2, 18655, 31988], - [3, 31989, 12], - "mediaquery", - [2, 31990, 31991], - "-media-mock", - [2, 3529, 31993], - "@lobechat/", - [3, 6415, 10], - [2, 31996, 3582], - "escaping", - "respond", - "goat", - "matchMedia", - "🐐", - [2, 32004, 32005], - [3, 31263, 13], - "text-engine", - "color-logger", - "ice-cap", - [2, 31995, 18035], - "esdoc-importpath-plugin", - [2, 31995, 1807, 32030], - "ECMAScript6", - [3, 6608, 10], - [2, 32012, 32014], - "2015", - "ECMAScript7", - [2, 32017, 6893], - [3, 32013, 13], - "ECMAScript8", - [2, 32017, 6836], - [2, 3944, 8253], - "k-monitor", - [2, 4117, 32021], - [2, 32020, 32022], - [3, 32023, 15], - "log-monitor", - [2, 32024, 32025], - "proposal", - [3, 19209, 12], - "http-graceful-shutdown", - "client-ipc", - [2, 32032, 32033], - [3, 32010, 19], - "server-ipc", - [2, 31995, 2092, 591], - [2, 31995, 32036], - "model-runtime", - "mdc", - "developer", - "combobox", - "multiselect", - [2, 31995, 3742], - [2, 31995, 594], - [2, 31995, 32044], - "web-crawler", - [2, 32047, 13538], - "json2mq", - [3, 1841, 9], - "-apps", - [2, 21340, 32048], - "-carousel", - [2, 11167, 32050], - "why-did-you-update", - [2, 32057, 32058], - "carousel", - "Image slider", - "orbit", - [3, 1841, 12], - "rts", - [2, 1841, 6324, 4978], - [2, 32074, 32082], - "@tippyjs/react", - "@vxna/mini-html-webpack-template", - "common-dir", - [2, 1861, 3427], - "name-p", - [2, 32065, 84], - [2, 18977, 32066], - "glogg", - [3, 26921, 11], - [2, 32069, 1646], - "jss", - "jss-plugin-camel-case", - [3, 32072, 12], - [3, 32059, 20], - "ompose", - [2, 32073, 32075], - [3, 32072, 11], - "default-", - "default-unit", - [2, 32077, 32079], - [2, 32077, 2202], - "s-gateway", - "isolate", - [2, 32077, 32083], - [2, 32077, 3639], - "listify", - [2, 12171, 2651], - "q-i", - "qss", - "-annotation-resolver", - [2, 3822, 32090], - [3, 32091, 13], - "-handler", - [2, 4904, 32093], - [2, 32092, 32094], - [2, 32047, 6038], - "react-group", - [2, 4287, 1928], - "type-detect", - [2, 32047, 45], - "inter-element", - "@types/buble", - "py-webpack-plugin", - [2, 4860, 32103], - "@types/esc", - "odegen", - [2, 32105, 32106], - "h-sum", - [2, 12395, 32108], - "@types/ke", - "ymirror", - [2, 32110, 32111], - [3, 23829, 17], - [2, 32113, 3119], - [2, 27479, 4408], - [2, 13419, 32115], - [3, 12290, 12], - [2, 32117, 13735], - [3, 8157, 15], - [2, 32119, 5331], - "deabsdeep", - "white-space", - "deepfreeze", - "dog-names", - "amia", - [2, 22060, 32125], - [2, 32047, 32128], - "market-sdk", - "keymirror", - [2, 4293, 6987], - "@lobehub/tts", - "tts", - "@lobehub/ui", - "@neondatabase/serverless", - "@next/third-parties", - "@react-spring/web", - "jest-pre", - [2, 29611, 32139], - "user-require-helper", - "@serwist/next", - " vector graphics", - [2, 24090, 32141], - "tagname", - [2, 24116, 7466, 32165], - "svginjector", - "@t3-oss/env-nextjs", - "@trpc/client", - "@trpc/next", - "@trpc/react-query", - [3, 32029, 17, 5], - "TapEventPlugin", - "300ms", - "http-shutdown", - "http-terminate", - "prometheus", - [2, 33763, 13538], - [2, 30495, 32158], - "dge-config", - [2, 36840, 32160], - "ctions", - [2, 32163, 32168], - [3, 7214, 13], - "@vercel/s", - "icss", - "lement", - [2, 24116, 32179], - "@4tw/cypress-drag-drop", - "peed-insights", - "@xterm/xterm", - [2, 4609, 2759], - "brotli-wasm", - "alert", - [2, 29706, 32174], - "-and-timezones", - "dexie", - "drizzle-orm", - "commoner", - [3, 10755, 11], - "hydrate", - "coverify", - "es3ify", - "infima", - "grunt-jest", - "jasmine-t", - "apreporter", - [2, 32184, 32185], - "drizzle-zod", - "populist", - "drizzle-", - "gpt-tokenizer", - [2, 32192, 32193], - "inferno-hy", - "perscript", - [2, 23910, 13494, 32197], - [2, 9944, 9847], - [2, 9944, 591], - "-to-backend", - "js-sha256", - "vnode", - "createVNode", - [2, 32237, 1098], - [2, 14040, 1276], - [3, 1898, 19], - "lay", - [2, 1962, 32204], - [2, 2783, 3758], - [3, 15568, 16], - [2, 1781, 32212], - "scrolling", - "infinite", - "fixed", - [3, 31752, 17, 3], - "langchain", - "gulp-rtlcss", - [2, 26708, 32182], - "langfuse", - [2, 5223, 32178], - [2, 1861, 32217], - "dark mode", - [2, 32216, 1732], - "lucide-react", - [2, 32223, 32224], - [3, 3120, 12], - "txt", - "react-popper", - "bootswatch", - "docstrap", - "storysource", - [2, 10818, 32228], - "model-bank", - "customize-cra", - [2, 32234, 32235], - "holderjs", - "modern-s", - "creenshot", - "react-prism", - [3, 34791, 12], - "logging-helpers", - "next-mdx-remote", - "nextjs-toploader", - "nuqs", - "officeparser", - [2, 32244, 1098], - [3, 33256, 22], - "github-files-fetcher", - "oidc-provider", - "ollama", - [2, 7719, 1612], - "partial-json", - [2, 3502, 33498], - "@stitches/react", - "animate-sass", - [2, 3562, 32254], - "trolling", - [2, 32256, 32257], - [3, 839, 14], - "gr", - [2, 11932, 8861], - "mocha-r", - "eporter", - [2, 32259, 32260], - [2, 4385, 32261], - "pdf-parse", - "preview jest", - [2, 27010, 32290], - "plaiceholder", - "posthog-js", - [0, 0, 32306, 32313, 2537], - "log-utils", - "pwa-install-handler", - "line by line", - "engine-base", - "engine-handlebars", - [2, 32278, 32279], - "lo", - "repl", - "lo-dash", - "react-con", - "fetti", - [2, 32283, 32285], - [2, 4150, 32282], - "-75lb", - "react-la", - [2, 11072, 2731], - "yout-kit", - [3, 19580, 11], - [2, 32286, 2002], - [2, 5237, 57], - "lws-middleware", - "-tagfilter", - "refactoring", - "printing", - [2, 3715, 32292], - [2, 26973, 32308], - "react-pdf", - "react-rnd", - "react-scan", - [2, 32299, 32304], - [3, 3913, 11], - [3, 12133, 19], - "tagfilter", - "prepare", - "dangerous", - "oso", - "react-wrap-balancer", - [0, 1175, 2323, 2332, 30561, 2367, 2459, 2494, 2504, 2510, 2530, 1894, 4045], - [2, 17355, 13771], - [3, 23279, 13], - [2, 4627, 8840], - [2, 3166, 32309], - "mobile-detect", - "composition", - [0, 30563, 30564, 30565, 30566, 30567, 30568, 5131, 9006], - [2, 32315, 32316], - "resolve-a", - "ccept-language", - "rtl-detect", - "lister", - "parse-entities", - "svix", - "tokenx", - "ts-md5", - "@red", - "grunt-jasmine-node", - "@redis/bloom", - "@redis/", - [2, 32326, 5576], - "unstructured-client", - "@redis/json", - [2, 32326, 7193], - "use-merge-value", - "time-series", - [2, 32326, 32332], - "mobilegrade", - [2, 20223, 16460], - "sniff", - "word-extractor", - [2, 32339, 594], - "zustand-", - [1, 2343, 32427], - "@cfaester/enzyme-adapter-react-18", - "ocly/openapi-core", - [2, 32323, 32342], - [2, 32348, 3005], - "nth-child", - "nth", - "rc-hammerjs", - [3, 30906, 13], - [3, 1750, 11], - [2, 1186, 3939], - [2, 32349, 32350], - "theme-redoc", - [2, 32349, 32352], - [2, 32356, 32366], - [3, 8286, 13], - "@lobehub/i", - "heme-common", - [2, 32355, 32357], - [2, 20201, 594], - "is-alphanumerical", - "api-doc", - [3, 32351, 12], - [2, 32362, 10958], - "is-decimal", - "is-hexadecimal", - "18n-cli", - [2, 32047, 671], - "netlify-plugin-cache", - [2, 32370, 553], - [3, 32127, 16], - [2, 32047, 32373], - "cssinjs", - "seo-cli", - [2, 28427, 32375], - [3, 28091, 16, 8], - "just-curry-it", - "reducers", - [2, 17790, 32377], - "@next/eslint-plugin-next", - [2, 16479, 1414], - [3, 1905, 16], - "icorn-camelcase", - [2, 32381, 32382], - [2, 4321, 9776], - [2, 2130, 32384], - "@peculiar/webcrypto", - [2, 16931, 32388], - "roma-js", - "@wdio/selenium-standalone-service", - "babelrc-rollup", - [2, 32398, 32399], - "insert-line", - [2, 5316, 1464], - [2, 3944, 2700], - "queryselector", - "shadowdom", - "rdme", - "@types/cr", - "ypto-js", - "@types/ip", - "tanstack", - [2, 32403, 32404], - "gulp-str", - "eamify", - "rc-tools", - "@redux", - "-saga/core", - [2, 32406, 32407], - [2, 32417, 32419], - "tappable", - [2, 33060, 1501], - [3, 13875, 15], - "lias", - [2, 32412, 32413], - [2, 3807, 32442], - "effects", - "@types/nu", - "side effects", - "meral", - [2, 15461, 32423], - [2, 32422, 364], - "@actions/", - "idc-provider", - "redux-m", - [2, 32424, 18716], - "@types/pg", - [0, 32428, 32472, 2514, 2537], - [0, 30585], - [2, 32430, 32439], - "@types/r", - "ecmarkup", - [2, 32437, 32438], - "gulp-emu", - [3, 2453, 9], - [2, 32434, 2995], - [2, 2505, 4088], - "@readme", - [3, 23709, 18, 8], - "tl-detect", - [2, 5051, 32441], - "ystemjs", - "ful", - [2, 24167, 32455], - "dbdocs", - "dpdm-fast", - [2, 32189, 32451], - "goober", - "jest-esm-jsx-transform", - "parcel-plugin-css-to-string", - "use-throttled-effect", - "dbml-generator", - "abstract", - "hex", - "wai-aria", - "ice-detect", - [2, 32466, 38], - "drizzle-kit", - [2, 1949, 32459], - "dx", - "is-hidden", - "fake-indexeddb", - [2, 9335, 6424], - "just-diff", - "smart-tv", - "smarttv", - [3, 15570, 11], - [2, 3506, 4581], - [2, 3862, 32492], - "mcp-hello-world", - [2, 12285, 2527], - "remark-mdx", - [0, 188, 11018, 30592], - "simple-routing", - [3, 23352, 11], - "mdx-", - "jsx-a", - [2, 32476, 5714], - [2, 32475, 32477], - [2, 8137, 32478], - [2, 8909, 32479], - [2, 32474, 32480], - "serwist", - "snapshot-", - [2, 32483, 1182], - "-bubble-menu", - "vercel-ai", - "nano-equal", - [2, 1849, 32489], - "-fuzzy", - "azure-openai", - "shouldComponentUpdate", - "file-viewer", - [2, 3862, 15571, 32498], - "visual-model", - "stt", - [1, 2343, 32500], - "quicklook", - "-v2", - [2, 3862, 3730], - [0, 0, 32501, 32517, 2487], - [ - 0, 33043, 442, 34111, 30737, 4874, 7677, 22839, 1177, 1895, 1942, 1982, 2807, 25209, 2990, 20085, 1894, 19713, - 30762, 23535, 4131, 1531, 4507, 91, 4523, 1984 - ], - [2, 31995, 32503, 32515], - "observab", - "image-gallery", - "image-viewer", - [2, 32510, 32530], - [2, 32508, 32509], - "vitepress-", - "plugin-group-icons", - [2, 5119, 32511], - "vg", - "issue-", - [2, 32512, 57], - [2, 21520, 22370], - "ility-otel", - [2, 32518, 32526], - [0, 30769, 8893, 7595, 7517, 6564, 7265, 1209, 3776, 7268, 6081, 4799, 553, 91, 4545, 614, 6731, 6435, 594], - [3, 217, 9], - "mock-stdio", - [3, 3998, 15], - "ebpro", - [2, 32520, 32521], - [2, 9785, 24387], - [3, 23523, 21], - [2, 32524, 3874], - "ndicator", - "progressbar", - "distribution", - "indeterminate", - "-charts", - [2, 3862, 32543], - [1, 2343, 32533], - [0, 32534, 32537, 32542, 2487], - [0, 30787, 28465], - [2, 17092, 32536], - "-path", - [0, 11536, 29317, 30792, 8850, 1397, 1556, 2020, 2070, 30794, 3510, 1689, 29444, 4042, 4174, 4227, 91, 8550, 28865], - [2, 32539, 21172], - [3, 5079, 24], - [2, 11147, 970], - [2, 5557, 970], - [0, 6996, 668, 5362, 28865, 4042, 2924], - "youtube-iframe", - [2, 3115, 19101], - "unified-args", - [2, 32563, 5066], - [1, 2343, 32548], - [0, 0, 32549, 32555, 2523], - [0, 442, 7677, 1177, 1938, 1942, 30828, 1964, 1966, 2832, 1531, 30835, 91, 4523, 1983, 1984], - "ackends", - [2, 32904, 990], - "iframe", - [2, 3993, 6424], - "@cacheable/utils", - [0, 21354, 91, 2844, 7020, 7119, 30841, 20179, 7047], - [1, 2343, 32642], - "@apphosting/build", - "@atomico/rollup-plugin-sizes", - "git-branch-is", - "remark-slug", - "react-spring", - [2, 32565, 10896], - [3, 30798, 17], - [2, 32575, 32576], - [3, 32557, 12], - "-isomorphic", - [2, 23276, 32566], - [2, 25131, 32566], - [2, 32570, 32574], - [3, 32041, 11], - "@bedrock-layout/use-forwarded-ref", - "gmail-send", - [2, 4807, 31528], - "ython-interpreter", - [3, 3895, 11], - "-singleton", - "text-hex", - "ssrf-safe-fetch", - [2, 32589, 32623], - [3, 23054, 11], - "ent-config", - [2, 32580, 32581], - "ntributors", - [2, 24218, 32583], - [3, 9343, 15], - "gap", - [2, 32585, 32586], - [3, 9347, 9], - [3, 30640, 22], - "cense", - [2, 32588, 32590], - [3, 23078, 23], - [2, 32592, 10663], - [3, 23082, 24], - [2, 32594, 7210], - [3, 23085, 14], - "get-nonce", - "le-extension", - [2, 32596, 32598], - [3, 23085, 18], - [2, 32600, 23076], - "rst-", - "heading-", - [2, 32603, 2970], - [2, 32602, 32604], - [2, 32596, 32605], - [3, 23092, 13], - [2, 9398, 590], - [2, 32607, 32608], - "consec", - "utive-blank-lines", - [2, 32610, 32611], - [2, 23099, 32612], - "emphasis-", - "as-heading", - [2, 32614, 32615], - [2, 23099, 32616], - "name-articles", - [2, 2093, 32618], - [2, 23099, 32619], - [3, 32620, 25], - [3, 32612, 12], - "rast-color-function", - "dashes", - [2, 32622, 32624], - [2, 32621, 32625], - "irregular-", - [2, 32627, 7169], - [2, 32621, 32628], - "mixed-case", - [2, 32621, 32630], - "@theuiteam/lib-builder", - "crawler-detection", - [2, 32746, 31528], - "outer-dashes", - [2, 32621, 32635], - [3, 23118, 23], - [2, 32637, 8958], - "punctuation", - [2, 32637, 32639], - "missing-", - [0, 0, 0, 32677, 2487], - [2, 31635, 32673], - "blank-lines", - [2, 32641, 32644], - [2, 23099, 32645], - [3, 32646, 16], - "ulti", - "ple-toplevel-headings", - [2, 32648, 32649], - [2, 32647, 32650], - "dollars", - [2, 5124, 32652], - [2, 23099, 32653], - [2, 16065, 17537], - [2, 23099, 32655], - [3, 32656, 18], - [2, 32657, 591], - "ordered-", - "list-ma", - "rker-value", - [2, 32660, 32661], - [2, 32659, 32662], - [2, 23055, 32663], - [3, 23139, 22], - "-alignment", - [2, 32665, 32666], - [2, 17998, 2585], - "retext-english", - "retext-", - [2, 10832, 2195], - [2, 32670, 32671], - "ai-v6", - [2, 32675, 32676], - [3, 32643, 13], - "sdk-v4", - [0, 3358, 1564, 10057], - [2, 32700, 7174], - [3, 23096, 14], - "nk-title-style", - [2, 32679, 32680], - "maximum", - "-heading", - [2, 32683, 15309], - [2, 32682, 32684], - [2, 23055, 32685], - [3, 32686, 20], - "line-length", - [2, 32687, 32688], - [3, 23113, 30], - "ed-urls", - [2, 32690, 32691], - [3, 23113, 25], - "s-in-section", - [2, 156, 32694], - [2, 32693, 32695], - [3, 32617, 18], - "ty-url", - [2, 32697, 32698], - [3, 31198, 34], - "-paragraph", - [2, 15403, 32701], - [2, 32637, 32702], - [3, 23118, 16], - [2, 32704, 14550], - [2, 170, 23116], - [2, 23099, 32706], - "-like-url", - [2, 11043, 32708], - [2, 23099, 32709], - "ed-fu", - "ll-reference-image", - [2, 32711, 32712], - [2, 14475, 32713], - [2, 23124, 32714], - [3, 32715, 39], - [2, 32716, 163], - [3, 32672, 14], - [2, 32718, 3997], - [2, 31228, 27863, 32721], - "bsorbers", - [2, 32723, 32724], - [3, 32720, 20], - "emitters", - [2, 32722, 32726], - "-shape-circle", - [2, 32728, 32729], - [3, 32725, 35], - "square", - [2, 32731, 2585], - [3, 31244, 19], - "autolinker", - [2, 32734, 32735], - [3, 31244, 14], - "lim", - [2, 31281, 14858], - [2, 31281, 32738], - "roll", - [2, 31281, 32740], - "tilt", - [2, 32742, 32743], - [3, 32739, 22], - "winkle", - [2, 31281, 32745], - "wobble", - "tua-", - [2, 4511, 32078, 4366], - [1, 2343, 32763], - "caseless", - [2, 32752, 2855], - "aws-sign2", - [3, 32674, 18], - "oauth-sign", - [2, 3013, 2660], - "forever-", - [2, 32755, 4575], - "har-validator", - "is-typedarray", - [2, 2666, 1580], - "use-callback-ref", - "taper", - "karma-cli", - [0, 32764, 32771, 32780, 2399], - [ - 0, 8181, 26057, 28329, 28607, 28620, 28631, 28632, 28672, 28673, 26364, 28963, 29273, 28685, 30585, 31857, - 31902, 32411, 33136, 34082, 33056, 33586, 33588, 33590, 33591, 34083, 33592, 33600, 33601, 33604, 33613, 33623, - 10981, 10984, 37051, 34087, 28709, 1556, 16230, 28718, 28761, 28780, 28805, 28883, 28896, 28911, 2161, 36538, - 28964, 3090, 3189, 31530, 28974, 3510, 29049, 15451, 4382, 29050, 4383, 27921, 27438, 29161, 29165, 29219, - 29220, 29235 - ], - "glob-bin", - "use-sidecar", - "JSDA", - "stealthy-require", - [3, 4010, 16], - [2, 32769, 364], - [ - 0, 29267, 29290, 29295, 10614, 34092, 11016, 11018, 31408, 29304, 1177, 2559, 29332, 3980, 4543, 1984, 29887, - 29323, 188, 13151 - ], - [2, 32774, 32779], - "thenable", - [3, 5430, 21], - "useRef", - "createRef", - "merge refs", - "vconsole", - "ummary", - [0, 29345, 29332, 8588, 4383, 12951, 188, 12072, 6284, 91, 10309, 181, 4380, 5130, 29346], - [1, 2343, 32785], - [2, 32783, 32784], - "detect-n", - "ode-es", - [0, 0, 32791, 32799, 2443], - [2, 4807, 1845], - "@react-pdf/renderer", - "code spliting", - "sidecar", - [2, 4625, 8119], - [0, 5087, 1192, 4468, 4474, 4493, 91], - "index.js", - [2, 32028, 33976], - "is-wayland", - "copy-text-to-clipboard", - [2, 32797, 32798], - "mutation", - "-observer", - [ - 0, 5995, 10906, 24299, 29527, 29563, 29565, 29575, 29576, 29658, 29706, 29723, 1623, 6802, 4967, 29731, 29730, - 29842, 29845, 29868, 29963, 30047, 30133, 30136, 30161, 30163, 30487, 91, 30489, 30501, 30523, 30562, 30569, - 30574, 30591, 30593, 30600 - ], - "-tslint", - [2, 1009, 32800], - [3, 1009, 11], - "/analyze-trace", - [2, 32802, 32803], - [2, 1977, 2528], - "micro-", - [2, 32806, 7906], - "svelte-loader", - [1, 2343, 32837], - "down-config", - [3, 13476, 17], - "ntext-async-hooks", - [3, 36559, 16], - "ResizeObserver", - [2, 32817, 11937], - "worktop", - [3, 8809, 20], - [2, 17214, 5477], - "perty-rule-prelude-list", - "path-parse", - "scss-loader", - "-flag", - [2, 6846, 32822], - [2, 15884, 32823], - [3, 1790, 16], - "copy-dir", - [3, 8119, 14], - [3, 32790, 18], - "vue-scroll", - "vue-scrollbar", - "vue-plugin", - "滚动条", - "eartbeat", - "lory.js", - [2, 33112, 33113], - "adjust-sourcemap-loader", - [0, 32838, 32846, 30825, 2487], - [0, 29304, 26699], - [2, 32841, 10238], - [2, 4807, 1955], - [3, 31435, 16], - "cls-hooked", - "myrmidon", - [2, 31436, 2018], - [3, 30380, 15], - [0, 1192, 1177, 4042, 4468, 1894, 91, 5087, 4880, 1895, 1955, 2780, 1011, 1009], - "ncredible", - [2, 32845, 32847], - "ensor", - [2, 4914, 32849], - "secrets", - [2, 16645, 32851], - [3, 25837, 16], - "anjs-rules", - [2, 32853, 32854], - "fatum", - [2, 14560, 6816], - [2, 3335, 32857], - "telegram", - [2, 21386, 32859], - "vesta", - [1, 2343, 32868], - "react-camera-pro", - "documentate", - "idebar", - "umentate", - [2, 25821, 32866], - [0, 0, 32869, 32882, 2523], - [0, 4880, 4883, 89, 3824, 91], - "better-npm-run", - "clamp.js", - [2, 19825, 4627], - [2, 1870, 32872], - "ewma", - [2, 4031, 24388], - "spdy", - "karma-fixture", - [2, 20441, 6543], - "restify-", - "clients", - [2, 32879, 32880], - [0, 89, 28946, 6847, 30858], - "watershed", - "@applitools/utils", - "DTrace", - "karma-opera-launcher", - [1, 2343, 32893], - [3, 18613, 12], - "convict", - [2, 32957, 32963], - "antora-component", - "@dataui/crud", - [0, 32898, 32902, 32915, 2523], - "is-uuid", - "rewrite-imports", - "quit", - "shutdown", - [0, 30939, 30941, 30944], - "terminate", - "kill", - "serviceworker", - [ - 0, 30949, 30951, 30953, 30954, 30961, 30966, 30973, 30976, 30977, 30980, 30984, 30985, 30988, 31003, 31007, - 31024, 31033, 31036, 31053, 31060, 31065, 31067, 31068 - ], - [2, 32904, 11017], - [3, 32884, 12], - "@types/webrtc", - "NoSQL", - "reql", - " language", - [2, 3766, 32908], - "applitools", - "eyes-sdk", - "test automation", - "visual regression", - [2, 32731, 27819], - [0, 26591, 1973, 5472, 13083, 6969, 1429, 1145, 1745, 31077, 31079, 31080, 1776, 1204, 6813], - "accelerate", - "detectrtc", - [2, 32892, 30665], - [2, 32920, 614], - [3, 32918, 13], - [1, 2343, 32935], - [2, 32923, 32931], - "install-p", - "json-copy", - [2, 28093, 32924], - [2, 31281, 32933], - "nano-copy", - "plain-", - [2, 3425, 1496], - [2, 32928, 32929], - "eers-cli", - "prepend-file", - "life", - [2, 32937, 32938], - [0, 0, 30812, 30825, 2523], - [1, 2343, 32964], - [3, 32737, 23], - "tate", - "drag-drop", - "plasmo", - "camera", - "prebuild", - "-install", - [2, 32942, 32943], - "webcam", - "-os", - [2, 642, 32946], - "practice", - [2, 15090, 32948], - "cam", - "Automation", - "pixel", - "blob-to-buffer", - "recognition", - "webRTC", - "autohotkey", - [3, 35870, 14], - "drag drop", - "machine", - "drag & drop", - "learning", - "react-h5-audio-player", - "itro-modules", - [0, 32974, 33037, 33040, 2523], - [2, 32995, 8745], - [3, 16005, 16], - [2, 32966, 4142], - "-twoslash", - [2, 4614, 32968], - [2, 9408, 32969], - [2, 15125, 5711], - "date-time", - "flru", - [ - 0, 31384, 31735, 34024, 31315, 31330, 31358, 34025, 31361, 31362, 30375, 31368, 31378, 31383, 3266, 9011, 4763, - 9355 - ], - [2, 33470, 33475], - [3, 30686, 19], - "pinia", - [2, 15476, 8961], - "wasm-pack", - "@expo/spawn-async", - [2, 32982, 147], - "@parcel/c", - "@parcel/fs", - [2, 32985, 5602], - [3, 5367, 15], - [2, 5368, 7158], - "mnemonic-id", - "node-object-hash", - "@plasmohq/init", - [2, 32991, 32992], - "@plasmohq/", - "parcel-config", - [2, 32994, 23], - [3, 32990, 19], - [3, 10848, 14], - "@plasmo/config", - [2, 32999, 33003], - "js-cleanup", - [3, 32996, 11], - [3, 4058, 16], - [2, 33000, 3874], - [2, 25572, 1155], - "stants", - [2, 33006, 594], - "removal", - "@plasmo/", - [2, 33006, 5130, 33008], - "-shared", - [2, 4807, 32965], - [2, 13843, 19101], - "ixins", - "visionOS", - "tvOS", - "macOS", - [2, 33018, 89], - "3-drag", - [2, 6491, 33016], - "@iconify/", - "cpp", - [2, 4861, 24847], - [2, 33022, 2847], - "static-s", - [2, 21897, 33024], - "sass2less", - "swift", - "player", - "mse", - "commenting", - [2, 14034, 13828], - [3, 19570, 16], - [2, 33030, 2649], - "spdx-", - "eme", - "jsi", - "satisfies", - [2, 33032, 33035], - [0, 8818, 4874, 4880, 4883, 89, 3824, 1984, 31390], - [2, 2369, 2284], - [3, 32978, 18], - [ - 0, 31398, 3287, 4592, 31399, 89, 4963, 181, 4967, 4380, 31400, 31406, 31407, 31408, 6070, 31409, 30210, 31410, - 31422, 31423, 31424, 31431, 31432, 31433, 31454, 31466 - ], - "p-banner", - [2, 33039, 33041], - [2, 33044, 147], - [3, 5517, 19], - [1, 2343, 33049], - [2, 8147, 14773], - "ts-expose-internals", - [2, 13888, 2150], - [0, 0, 0, 33054, 2537], - [2, 1884, 10791], - "buffer-es6", - "process-es6", - "astrojs", - [0, 3563, 1623], - "compliance", - [2, 33060, 33585], - "dset", - "flattie", - "magicast", - [3, 31902, 18], - "zod-to-ts", - "xxhash-wasm", - "yocto-spinner", - "@oslojs/encoding", - [2, 33066, 33067], - "@astrojs/c", - "ompiler", - [2, 34674, 13535], - "zod-to-json-schema", - "http-cache-semantics", - [2, 33072, 33073, 3984], - "@astrojs/m", - "arkdown-", - [2, 34674, 6943, 19687], - [2, 7185, 33076], - "-object-hash", - "MappingURL", - [2, 4225, 33077], - [1, 2343, 33081], - "@types/dlv", - [0, 33089, 33090, 33091, 2537], - "rehype-toc", - "astro-scripts", - [2, 33085, 33086], - [3, 24220, 12], - "titles", - [2, 4807, 9485], - [2, 4807, 33070], - [0, 26675, 26678, 26684, 26690, 26685, 3259], - [0, 5087, 4874, 1596, 1192, 1894, 3951, 3980, 4094, 4468, 4474, 1531, 4521, 91], - [0, 12659, 8124, 1745], - [1, 2343, 33094], - "strata", - [0, 33095, 33102, 33103, 2523], - [0, 9355, 9307], - "nd-cache-dir", - [2, 16785, 33096], - [3, 13364, 12], - [2, 33098, 1095], - "graphlib", - [3, 4069, 16], - [0, 1983, 89, 2220, 3824, 26744, 966, 1030, 972, 968, 30521], - [0, 89, 2220, 31523, 1932, 1745, 25677], - [1, 2343, 33105], - [0, 33106, 33107, 33108, 2523], - [ - 0, 2611, 3478, 1759, 31533, 33507, 3084, 31534, 2226, 31535, 2845, 33062, 31609, 31536, 31750, 31548, 31617, - 31619, 31571, 5328, 31610, 31623, 29421 - ], - [ - 0, 4763, 4493, 1177, 2205, 4042, 1984, 4473, 23203, 91, 53, 4874, 31629, 31631, 31634, 32643, 2069, 10879, 8818, - 32674, 32750, 7677, 31636, 33137, 31639 - ], - [0, 31408, 31645, 29486, 4575, 31646, 31647, 31656, 31657, 31658, 3151, 2041, 91, 31659, 5130], - [1, 2343, 33132], - "fuzzysearch", - "sander", - [3, 29704, 20], - "ntax-descriptor-syntax-production", - "@types/d3-", - [2, 33114, 4552], - [2, 33114, 1473], - "force", - [2, 33114, 33117], - "hierarchy", - [2, 33114, 33119], - [2, 33114, 16662], - [3, 33121, 11], - [2, 33122, 1659], - "@saintno/comfyui-sdk", - "@virtuoso.dev/masonry", - "treemap", - "sunburst", - [2, 13480, 33130], - "diagram", - "jaeger", - [2, 13475, 4715], - [0, 0, 33135, 33217, 2523], - [2, 5088, 33134], - "dfkit", - [0, 107, 972, 5087, 1742, 1192, 3286, 1894, 89, 3824, 3904, 4039, 4468, 91], - [2, 33142, 33147], - [2, 31635, 3965, 553], - [2, 33141, 20760], - [2, 33140, 23], - [3, 34681, 19], - [3, 10210, 16], - [3, 32411, 20], - "testrunner", - "@next/", - "@next/env", - "@rspack/core", - [3, 26697, 11], - [3, 5215, 12], - "piccolore", - "-optimizer", - [2, 11928, 33150], - [2, 33148, 33151], - [2, 4850, 14643], - "css/metrics", - [2, 4202, 33154], - [2, 17189, 33155], - [3, 28436, 14], - [2, 33157, 16358], - [2, 33157, 6805], - [3, 33159, 15], - "rimitives", - [2, 33160, 33161], - "turborepo", - "triples", - [2, 29314, 33164], - [2, 27913, 1237], - [2, 33144, 33166], - [3, 33167, 15], - "nomodule", - [2, 33168, 33169], - [2, 3878, 3007], - [2, 33144, 33171], - "@next/swc", - "@taskr/clear", - "ac-colors", - "@taskr/esnext", - "mphtml-validator", - [2, 9165, 33177], - [2, 10880, 1179], - "i-info", - [2, 4857, 33180], - [3, 11796, 15], - [2, 33182, 10366], - [3, 7808, 17], - "rve-s", - [2, 16826, 9654], - "tatic-core", - [2, 33185, 33187], - [2, 33184, 33188], - "hsv", - "@types/fresh", - "urry", - [2, 7887, 33192], - "th-to-regexp", - [2, 28121, 33194], - "atform", - [2, 28175, 33196], - "@types/send", - "amphtml-validator", - "async-sema", - "lch", - "cli-select", - "color-names", - "client-only", - "cmyk", - "comment-json", - "mix", - "edge-runtime", - [2, 13773, 1194], - "lodash.curry", - "native-url", - "string-hash", - "taskr", - "unistore", - "watchpack", - "harmonies", - [0, 89, 3286, 23803, 3287, 38, 3212, 1973, 5472], - [1, 2343, 33219], - [0, 0, 33220, 33224, 2487], - [ - 0, 603, 8862, 811, 816, 6373, 5535, 30867, 5087, 13204, 31087, 11016, 17494, 11018, 13072, 1503, 1567, 1610, - 1192, 2780, 2832, 2990, 15324, 1894, 4042, 4073, 4076, 4201, 29889, 4383, 4468, 91, 1983, 188, 4639, 4646, 19235 - ], - [3, 18758, 12], - "ogress", - [2, 33221, 33222], - [ - 0, 188, 8588, 31685, 31687, 31700, 7838, 29889, 31702, 1802, 17819, 29953, 31703, 91, 31704, 4453, 5131, 5284, - 4627, 181 - ], - [1, 2343, 33226], - [0, 26338, 0, 33234, 2537], - [2, 27135, 16460], - [2, 33229, 33521], - [3, 30464, 13], - "domparser-rs", - "rtl", - "ltr", - [2, 33461, 33965], - [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 15571, 35060, 158], - [2, 33236, 18200], - "get-port-", - [2, 33238, 33239], - [3, 5366, 9], - "tter-sqlite3", - [1, 2343, 33241], - [0, 33242, 33246, 25117, 2487], - [0, 30784, 20378, 16860, 3530, 3561, 28865, 27921], - "@antfu/ni", - "run series", - "@dotenvx/dotenvx", - [ - 0, 58, 31292, 5180, 30787, 37017, 28465, 8862, 811, 16808, 10895, 24725, 9743, 37012, 28572, 1415, 1457, 1544, - 1573, 1594, 1615, 30023, 1759, 1763, 37014, 668, 1869, 2007, 984, 28575, 31308, 18584, 3090, 3189, 11480, 3266, - 3445, 3493, 3510, 34928, 3527, 3613, 3616, 37015, 28119, 24759, 29444, 4042, 4060, 2278, 21688, 4200, 37013, - 4072, 4955, 27438, 4729 - ], - [2, 4807, 30228], - [1, 2343, 33252], - "LINQ", - "FRP", - [2, 29445, 1732], - [0, 0, 0, 33278, 2537], - [2, 33254, 8253], - "@vitejs/", - [2, 23354, 6708], - [2, 5, 33255], - "side-effects", - [2, 14614, 33257], - [3, 1705, 12], - "ruiser", - [2, 33259, 33260], - [3, 18106, 16], - [2, 33262, 2429], - [2, 1921, 33274], - "tslint-etc", - "no-toplevel-property-access", - [2, 4491, 33266], - "tslint-no-", - "unused-", - [3, 5804, 11], - [2, 33270, 1429], - [2, 33269, 33271], - [2, 33268, 33272], - "wc", - [2, 9352, 364], - "datagrid", - "survey-core", - [0, 3857, 5128, 12295, 12296, 28641, 1616, 5131, 1149, 4160, 28654, 28656, 16722, 31824, 31825, 3348], - [1, 2343, 33280], - [0, 0, 2667, 31019, 34352], - [1, 2343, 33300], - " allocate", - [2, 1398, 33282], - [2, 17681, 1965], - "2fa", - "hotp", - "uninitialized", - "topt", - [2, 33290, 33291], - "google a", - "uthenticator", - [2, 33294, 7120], - "mock-env", - [3, 5165, 11], - "dist-tag", - "one time password", - "prepublish", - [2, 37718, 20105], - "2 factor", - [0, 33301, 33306, 33372, 34352], - [ - 0, 5145, 30551, 30583, 5154, 7709, 28384, 30584, 13437, 30602, 30603, 30609, 30610, 13187, 30814, 12207, 7948, - 30824, 30866, 30887, 30906, 31178, 31179, 31247, 31255, 31263, 32003, 32008, 32010, 32031, 32975, 32034, 32035, - 32502, 32041, 32569, 32042, 32043, 32045, 32053, 32059, 32060, 32096, 32100, 32127, 32131, 32133, 29421, 32134, - 32135, 33128, 33131, 32787, 32136, 33124, 32140, 32146, 958, 32147, 32148, 32149, 29261, 32156, 32157, 32159, - 32161, 33125, 32169, 30778, 1114, 13215, 32171, 35358, 977, 32173, 1673, 1676, 32175, 1687, 32176, 32187, 31930, - 2069, 37853, 2096, 4776, 32190, 2226, 2646, 2681, 23913, 32194, 29762, 2696, 12105, 32198, 32208, 2928, 32213, - 32216, 32220, 3021, 32221, 3096, 32222, 3127, 26568, 32230, 32232, 3266, 3286, 3285, 32239, 32240, 29306, 3415, - 32241, 32242, 32246, 32247, 31407, 32248, 32249, 32250, 32263, 29899, 3513, 3519, 3533, 32266, 3555, 32267, - 20325, 32270, 3765, 3777, 89, 32274, 3824, 11366, 12229, 3837, 32280, 15575, 32295, 3882, 32296, 3885, 32297, - 32298, 32305, 3984, 3988, 3989, 32314, 32317, 4135, 4164, 9348, 32578, 4302, 4341, 32320, 26713, 4376, 32321, - 32322, 11804, 32328, 4566, 32331, 3348, 32337, 4729, 4745, 4763, 9355, 32338 - ], - "@sai", - "lshq/lodash", - [2, 33302, 33303], - [2, 4807, 4588], - [ - 0, 192, 37097, 32344, 32354, 32367, 32369, 32371, 32374, 32379, 32386, 8648, 27424, 21120, 968, 972, 974, 32387, - 32391, 5245, 4864, 32400, 8818, 4870, 5139, 4874, 32409, 32420, 33133, 32426, 4880, 4883, 32429, 5254, 32440, - 11800, 9315, 9241, 29891, 7677, 12384, 1529, 1556, 1610, 1620, 32444, 1759, 1763, 32445, 32446, 32457, 1177, - 32458, 32461, 2151, 2070, 2559, 2675, 28375, 32463, 2990, 1209, 3117, 32469, 3171, 3310, 640, 32470, 3478, 1894, - 3985, 9340, 32471, 3992, 28380, 4131, 32482, 4320, 4494, 4507, 91, 4549, 4555, 1983, 1984 - ], - "captains-log", - "js-f", - "ile-", - [2, 33309, 19101], - [2, 33308, 33310], - [2, 9480, 33311], - "flaverr", - "survey", - "i18n-2", - "include-all", - "surveyjs", - "-as-action", - [2, 32959, 33318], - "survey-library", - "pack-process", - [2, 32959, 33321], - [3, 33322, 12], - [2, 33323, 1552], - [2, 20100, 3031], - "ictionaries", - [2, 27239, 33326], - "parley", - "rttc", - "form-component", - "-generate", - [2, 4104, 33331], - "sails-", - "stringfile", - [2, 33333, 33334], - "skipper", - "-addresses", - [2, 4082, 33337], - [2, 22775, 33338], - "whelk", - "form-rendering", - [2, 33323, 2150], - "@sailshq/", - [2, 33343, 705], - "survey-renderer", - "root-require", - "dynamic-form", - "hook-orm", - [2, 33333, 33348], - [3, 33349, 11], - "sockets", - [2, 33350, 33351], - [2, 24095, 33358], - "sails.io.js", - "-store", - "-file-store", - [2, 1577, 33356], - "-form", - "mvc", - "form-library", - "form-management", - "web-framework", - "sailsjs", - [2, 8631, 33366], - "sails.js", - "naire", - "data-collection", - "data-validation", - "input-validation", - [3, 7842, 12], - "schema-form", - [0, 5130, 31409, 31431, 3287, 32486, 31407, 32490, 32494, 32132, 32495], - [2, 33374, 3552], - [3, 14944, 11], - [1, 2343, 33468], - "truncate-", - [2, 33467, 33631], - "utf8-bytes", - [2, 33376, 33378], - "js-api", - "mktemp", - [2, 30767, 33384], - "filename", - "wasm-nodejs", - [2, 31208, 22074], - [2, 11183, 6882], - [2, 13167, 33388], - "abs", - [2, 33391, 10271], - "parse-srcset", - [3, 13169, 16], - [3, 13405, 16], - [2, 11183, 614], - "ostrophe", - [2, 33392, 33394], - [2, 11183, 158], - [2, 33398, 1020], - [3, 33396, 15], - [2, 11183, 33400], - "steps", - [2, 33402, 2699], - [3, 33387, 17], - [2, 11183, 18346], - [2, 33405, 9997], - [3, 33403, 15], - [2, 13163, 11218], - [3, 32049, 11], - [2, 33407, 13756], - "-sin", - "gle-context", - [2, 33409, 33410], - [2, 2784, 33411], - [3, 31591, 11], - [2, 4961, 4184], - [2, 33413, 33414], - [3, 4927, 10], - [2, 11183, 3811], - [2, 33421, 1799], - "glob-importer", - [2, 33416, 33419], - [3, 33399, 15], - [2, 33421, 10205], - [2, 33421, 10222], - [2, 33425, 184], - [3, 33393, 15], - [2, 33427, 10261], - [3, 11185, 16], - [2, 33429, 18338], - [3, 13162, 15], - [2, 33429, 5449], - [2, 33432, 9939], - [3, 13162, 17], - [2, 33434, 11206], - [3, 33404, 16], - [2, 3115, 11415], - [2, 33439, 33440], - "bare-script", - [2, 1818, 11415], - [3, 27467, 17], - "tions", - [2, 33442, 10148], - [3, 33417, 15], - [2, 13167, 11241], - [2, 33445, 33446], - [3, 33418, 16], - "gmented", - [2, 33442, 33448], - "agination", - [2, 33389, 11245], - [2, 33397, 11211], - [2, 11183, 9044], - [2, 33453, 33457], - [3, 5050, 13], - "food", - "drink", - "helpful", - [3, 14673, 16, 7], - "ourcesoftware", - [2, 8423, 33458], - [2, 25184, 33466], - [2, 41, 3874], - "teaching", - "experi", - [2, 33463, 1744], - [2, 13527, 591], - "local-npm-registry", - [3, 5123, 14], - [0, 33469, 33476, 6151, 2523], - [0, 546, 8605], - [3, 32034, 11], - "ecdh", - "ecdsa", - "solver", - "bplist-creator", - "etch-sse", - [0, 8616, 91], - "seed", - [1, 2343, 33480], - "oxfmt", - [0, 33481, 23733, 33483, 2523], - [0, 29421, 6494, 1525, 2026, 12105, 4548, 4763], - "@bazel/runfiles", - [0, 29681, 29695, 29718, 29719, 31264, 1745, 13083], - [1, 2343, 33485], - [0, 33486, 33487, 33488, 2537], - [0, 7384, 26870], - [ - 0, 4200, 3510, 89, 4207, 4135, 1984, 24324, 3824, 4459, 11143, 16485, 3170, 3527, 27921, 91, 4874, 5254, 37085, - 8778, 11938, 32815, 32818 - ], - [0, 4270, 29043, 1984, 5472, 1973, 4627, 4963, 23246, 89, 188, 3709, 5926], - [3, 21120, 19], - [2, 33489, 3543], - "aggregate-error", - "bunup", - "env-ci", - [2, 2103, 18280], - "git-l", - "og-parser", - [2, 33495, 33496], - "-esm", - [2, 18170, 33498], - "p-each-series", - [1, 2343, 33502], - [0, 33506, 33508, 33509, 2523], - "file-url", - [2, 2847, 4219], - [2, 17050, 33504], - [0, 2018, 32839, 32844], - "p-retry", - [0, 2924, 5087, 4874, 4677], - [0, 6901, 20319, 1973, 5472, 5433, 13657], - [2, 33511, 57], - "markdown ", - "solidjs", - "@fluentui/react-component-event-listener", - [3, 33513, 26], - [2, 33514, 2538], - [3, 6061, 10], - "/event-stack", - [2, 4133, 33517], - [2, 33516, 33518], - [2, 8652, 3858], - "oolbar", - "@artsy/fresnel", - [2, 30415, 594], - "standalone", - [2, 54, 33524], - [2, 33527, 33531], - "@react-s", - "@percy/cli", - "@percy/c", - [2, 33529, 4915], - "tately/overlays", - "anchor-js", - [3, 14132, 14], - [2, 33535, 17966], - [3, 33526, 15], - "ilter-imports", - [2, 33533, 33536], - [2, 33544, 33548], - "d-props", - [2, 2034, 33539], - [2, 1249, 33540], - [2, 30851, 1204], - [2, 1199, 33542], - "@react-t", - "chai-enzyme", - "react-ace", - "react-code", - "ypes/shared", - "sandboxer", - [2, 33547, 33549], - "ource-render", - [2, 3890, 33551], - "react-static", - [2, 33559, 6649], - "-routes", - [2, 33553, 33555], - "niversal-component", - [2, 12273, 33557], - [3, 3911, 17], - "satisfied", - [3, 4134, 12], - [2, 33561, 1623], - [1, 2343, 33569], - "simulant", - "ta-scripts", - [2, 4409, 1231], - "@aws-lite/client", - "@aws-lite/s3", - [0, 0, 33570, 33584, 2537], - [ - 0, 1173, 1175, 1195, 1267, 1272, 1280, 1282, 32870, 1429, 32871, 34009, 1652, 1676, 1705, 1177, 1903, 1958, - 1970, 2054, 2092, 2151, 2629, 2651, 2297, 2878, 2881, 2895, 32877, 26470, 2897, 2900, 2904, 32886, 2906, 2912, - 2915, 2925, 2899, 3363, 3524, 4039, 37320, 12826, 4131, 4535, 37871, 4027, 2924, 4681 - ], - [3, 21564, 23], - [2, 33571, 1219], - [2, 18124, 16284], - [2, 33575, 7625], - [3, 2001, 11], - "bikeshed", - "mock-tmp", - "semicolon", - "tap-arc", - "@casl/dx", - "cloudfunctions", - "apigateway", - "api gateway", - [0, 6398, 20986, 32888, 32054, 31512, 4453, 35062, 6970, 5131], - "drag-handle-vue-3", - [2, 33060, 33587, 4403], - "floating-", - [2, 33060, 33589], - "horizontal-rule", - [2, 33060, 158], - [2, 33060, 26074], - [2, 33060, 33597], - "eraro", - "fast-sa", - "fe-stringify", - [2, 33594, 33595], - [3, 28051, 11], - "gate-executor", - "gubu", - [2, 31908, 1783], - "@tiptap/pm", - "ordu", - "patrun", - [2, 31908, 33607], - "rolling-stats", - "use-plugin", - "starter-kit", - "@seneca/test-plugin", - "lab-", - [3, 29583, 11], - [2, 33610, 2528], - [2, 33609, 33611], - [2, 33621, 33622], - "-entity", - [2, 4136, 33614], - "seneca-e", - "rror-test", - [2, 33616, 33617], - "seneca-", - [2, 33619, 19138], - "@tiptap/s", - "uggestion", - "@tiptap/vue-3", - "micro-service", - [2, 33624, 591], - [3, 14587, 13], - "minimum", - "viable", - "startup", - [1, 2343, 33632], - "orklets", - [0, 33637, 33651, 33665, 2523], - [2, 10196, 21009], - "Sentimental", - [2, 11183, 9352, 3392], - "nlp", - [0, 32905, 32917], - "@farmfe/cli", - [2, 6283, 33647], - [2, 35438, 35525], - "dottie", - [2, 1153, 1430], - [2, 4140, 30807], - "sort-class", - [2, 17693, 33644], - "wkx", - "-testing", - [3, 9786, 10], - [2, 33648, 103], - [2, 33900, 147], - [0, 4880, 4883, 8152, 1009, 1011, 1540, 1177, 1895, 1955, 1959, 32922, 32932, 1894, 4042, 4076, 4474, 4484, 91], - "chai-datetime", - "esdoc", - "-ecmascript-proposal-plugin", - [2, 33653, 33654], - "esdoc-", - "inject-", - [2, 4306, 1932], - [2, 33657, 33658], - [2, 33656, 33659], - [2, 18124, 1932], - [2, 33656, 33661], - "ibm_db", - "js-co", - [0, 32941, 32945, 32950, 89, 12295, 12296, 5131, 32955], - "@webgpu/types", - "mbinatorics", - [2, 33664, 33667], - "mariadb", - [1, 2343, 33693], - "jmp", - "node-hook", - "p-props", - "p-settle", - "pg-hstore", - "fail-on-", - "sav", - "s-store", - "major-bump", - [2, 33676, 33679], - [2, 21386, 33680], - "snowflake-sdk", - [2, 33691, 33692], - "db2", - "snowflake", - "object ", - "relati", - "onal mapper", - [2, 33687, 33688], - [2, 33686, 33689], - "@prisma/m", - "anagement-api-sdk", - [0, 0, 33694, 33695, 2487], - [0, 89, 3857, 21166, 33377], - [ - 0, 3857, 2171, 12295, 12296, 33012, 33013, 33014, 33019, 5130, 89, 33025, 970, 5260, 2062, 33034, 7671, 8632, - 1283, 22743 - ], - [1, 2343, 33698], - "@tinymce/tinymce-react", - [0, 33699, 0, 33715, 2487], - [0, 31680, 28069], - "@ser", - "ialport/binding-mock", - [2, 33700, 33701], - [3, 33702, 19], - "s-cpp", - [2, 33703, 33704], - [3, 33702, 12], - "n1ed", - "byte-length", - [2, 15497, 33708], - [2, 33706, 33709], - [3, 33710, 19], - "cctalk", - [2, 33711, 33712], - [2, 33711, 28979], - [0, 1473, 1623, 57], - "-byte-timeout", - [2, 6941, 33716], - [2, 33711, 33717], - [1, 2343, 33720], - [0, 0, 0, 33752, 34352], - "packet-length", - [2, 33711, 33721], - [2, 33711, 3925], - [3, 33723, 23], - [2, 33724, 1493], - [3, 33723, 21], - [2, 33726, 17402], - "slip-encoder", - [2, 33711, 33728], - [3, 33729, 20], - [2, 10972, 4383], - "@heroicons/react", - "pacepacket", - [2, 33730, 33733], - [2, 33706, 3101], - [2, 33743, 33747], - "ccTalk", - "com port", - "COM", - "data logging", - "hardware", - "modem", - [3, 8292, 9], - "nodebots", - "RFID", - "sensor", - "plus/elements", - "serial port", - "sms gateway", - "sms", - "UART", - [0, 1512, 1623], - [2, 32092, 91], - [2, 33755, 33756], - "react-li", - "b-tools", - "update-check", - "@zeit/schemas", - "is-po", - "rt-reachable", - [2, 33759, 33760], - [2, 33769, 33770], - "@vercel/", - "style-guide", - [2, 33763, 33764], - "@types/ser", - "ve-handler", - [2, 33766, 33767], - [3, 2909, 10], - "serve-directives", - "ts-blank-space", - "vitest-fail-on-console", - [1, 2343, 33776], - "windowed", - "temp-path", - [0, 33778, 33779, 33780, 2487], - "favicon", - [ - 0, 33243, 53, 58, 5889, 92, 33245, 29421, 33305, 1393, 1525, 1595, 1680, 1699, 1687, 2020, 2071, 2151, 31401, - 2674, 2929, 3244, 3310, 3445, 3467, 3561, 3681, 3742, 3930, 30228, 4382, 4473, 4480, 4588, 4763, 33069 - ], - [0, 10879, 4864, 7812, 33247, 4039, 4493, 4507, 91], - [0, 4963, 181, 4380, 31398, 31400], - [1, 2343, 33782], - [0, 0, 0, 33783, 2487], - [0, 89, 188, 23332, 4607, 33275, 33276], - "@extend-chrome/messages", - [2, 33786, 13901], - [3, 33784, 15], - "@types/chrome", - [1, 2343, 33793], - "@types/jsesc", - [2, 33791, 33792], - [3, 32170, 13], - "nspect", - [0, 0, 33805, 33809, 2487], - "chrome-extension", - "webext", - "webextension", - "verless/utils", - [2, 33700, 33797], - [3, 33010, 17], - "z-commitlint", - [2, 5465, 33800], - [3, 33798, 12], - [2, 33802, 1973], - [3, 4156, 10], - [ - 0, 5087, 4874, 1009, 1011, 1177, 1886, 1895, 1938, 1955, 1958, 1966, 1982, 2070, 1192, 1894, 4039, 4042, 4052, - 27720, 4076, 4468, 4474, 4508, 4514, 17223, 91 - ], - " plugins", - [2, 33804, 33806], - "aws lambda", - [0, 33285, 28946, 33286, 33288, 33289, 33292, 33296, 33298, 5165, 33299, 202, 1388, 4967, 5995], - " web services", - [2, 6997, 33810], - ".com", - [2, 33804, 33812], - [1, 2343, 33815], - [0, 0, 0, 33816, 2487], - [ - 0, 33314, 1669, 33317, 33320, 33330, 33341, 33345, 33347, 33353, 33360, 33361, 33364, 33367, 33368, 7021, 33369, - 33370, 1781, 2845, 33371, 33345, 12899, 4967, 5284, 91 - ], - "isoformat", - "cdk/aws-lambda-python-alpha", - [2, 13562, 33818], - [3, 7709, 16], - [2, 33820, 7308], - "eventbridge", - [2, 33820, 33822], - [2, 33820, 13573], - "ns", - [2, 9191, 33825], - [2, 9191, 3763], - [2, 9191, 4799], - [2, 17253, 33832], - "lib-dynamodb", - [2, 13548, 33830], - "-tree-1d", - [1, 2343, 33855], - "htl", - "util-dynamodb", - [2, 13548, 33835], - "@types/d3", - "aws-cdk-lib", - "iot-device-sdk", - [2, 9194, 33839], - "caporal", - "-highlight", - [2, 14558, 33842], - "apache-arrow", - [3, 9167, 11], - [2, 33845, 33839], - "d3-geo-projection", - "@types/aws4", - "esbuild-r", - [2, 33849, 8736], - "jsii", - "jsii-diff", - [2, 17111, 7268], - "jsii-docgen", - [0, 33856, 0, 29047, 2537], - [ - 0, 28872, 13411, 13412, 13388, 1137, 1170, 30051, 1362, 33474, 18220, 2139, 2188, 2070, 22410, 21226, 6698, - 1209, 3074, 3220, 3275, 27534, 2072, 3547, 3919, 4025, 4108, 4135, 4165, 4351, 13400, 4507, 3348, 4707, 4753 - ], - "jsii-pacmak", - [1, 2343, 33859], - [0, 33861, 33862, 33864, 2537], - "obuild", - [0, 30293, 26557], - [0, 4874, 30306, 30305, 30310, 4039, 1531, 91, 1984], - "type-plus", - [0, 30297, 13527, 5592, 5995, 2679, 23932], - "ge-parser", - [1, 2343, 33870], - "flow-re", - "move-types", - [2, 33867, 33868], - [0, 33873, 33874, 33875, 2537], - "isequalwith", - "date-fns-tz", - [ - 0, 2611, 3510, 1689, 15452, 8550, 28862, 33235, 28142, 15261, 23531, 2670, 28282, 12207, 31026, 20745, 28283, - 31737 - ], - [0, 4493, 1984, 16473, 15450, 91, 4874, 19759, 31794, 5517, 28203], - [0, 3724, 25638, 32916, 2703, 5001, 3304, 5472], - [2, 33892, 33895], - "@emnapi/runtime", - "@img", - "/sha", - "rp-libvips-dev", - [2, 33879, 33880], - [2, 33878, 33881], - "-wasm32", - [2, 33882, 33883], - [3, 33882, 19], - "win32-ia32", - [2, 33885, 33886], - [3, 33887, 25], - "x64", - [2, 33888, 33889], - "emnapi", - "string-s", - "-reader", - "exif-reader", - "plit-by", - "dzi", - "thumbnail", - "libvips", - "vips", - "@farmfe/c", - "cargo-cp-artifact", - [2, 14736, 34112], - "skia", - "offscreen", - "compositing", - [1, 2343, 33917], - "vulkan", - "metal", - "flmngr", - [2, 4167, 14994], - "shelljs-", - [2, 33911, 3979], - "travis-", - "changes", - "check-changes", - [2, 33913, 33915], - [0, 33919, 33922, 33923, 2487], - "makefile", - [0, 33567, 33568], - "imgpen", - "unsplash", - [0, 33574, 1610, 1177, 3173, 33577, 3421, 3752, 33579, 4389], - [0, 7200, 13573, 6997, 33804, 6599, 33581, 33582, 7308, 6949, 6808, 33583, 5130], - [1, 2343, 33925], - [0, 33926, 33931, 2514, 2537], - [0, 33666], - "bitly", - "shorten", - "mongoid", - "tinyid", - [0, 1787, 91, 18279], - "kapok-js", - [1, 2343, 33934], - [0, 33939, 33946, 33947, 2399], - "should-", - "should-equal", - [2, 33935, 1671], - "should-type", - [0, 89, 3824, 33697], - "-adaptors", - [2, 33938, 33940], - "should-util", - "@types/listr", - "houldjs", - [2, 1901, 33944], - [0, 3775, 4039, 4487, 4469, 3744, 91, 53, 4874, 4880, 1195, 4883, 5090, 1167], - [0, 4445, 6092, 33707, 89, 6038, 1936, 6105, 7062, 27968, 9381], - [2, 32223, 2636], - "pdf-generation", - "assignments", - "homework", - "html-to-pdf", - "grunt-endline", - "quiet-grunt", - "semver-sort", - [1, 2343, 33957], - [0, 0, 33958, 33960, 2523], - [ - 0, 30703, 442, 9307, 33731, 33732, 29273, 33736, 968, 972, 974, 5364, 7806, 7639, 4874, 4880, 4883, 31397, 4992, - 1413, 1497, 1536, 1639, 1177, 1961, 7585, 2203, 2675, 2832, 2990, 3105, 3127, 3561, 1894, 21024, 89, 33753, - 3824, 5564, 33754, 3885, 4073, 4079, 33762, 4164, 4200, 4382, 4383, 4072, 33771, 4474, 4494, 91, 4523, 29139, - 1983, 26744, 32255, 1984, 33772, 9355 - ], - "Function URL", - [0, 89, 6071, 4607, 11316, 33774, 3392, 32209, 32210, 3912, 176, 10052, 21604], - [1, 2343, 33966], - "plugin-open", - [2, 33911, 33962], - "Durable function", - "-sdk", - [0, 33967, 34002, 34003, 2523], - [0, 10895, 31832, 1084, 1448, 1573, 1676, 37014, 2071, 2151, 2835, 3090, 3510, 3527, 3878, 4042, 4094], - "@secretlint/secretlint-rule-github", - [2, 33970, 3378], - [3, 33968, 28], - [2, 33972, 33973], - [3, 28473, 18], - "ap-runner", - "secretlint", - "@vue/tsconfig", - "extender", - "fs-core", - [2, 33979, 27106], - [3, 18529, 16], - [2, 33979, 202], - [2, 33980, 33982], - "-builtins", - [2, 33984, 33985], - [3, 33981, 21], - "to-fsa", - "@kwsites/file-exists", - "@kwsites/", - [2, 9466, 14834], - [2, 33987, 33988], - [2, 33984, 594], - [3, 33989, 17], - [2, 33991, 27725], - "@sim", - "ple-", - "git/babel-config", - [2, 33994, 33995], - [2, 33993, 33996], - [2, 33979, 24171], - "source ", - [2, 33999, 12619], - [2, 33979, 8745], - [ - 0, 33784, 33785, 8862, 811, 8850, 816, 840, 20978, 33787, 5244, 5245, 4864, 11300, 33789, 4874, 4880, 4883, - 1009, 1011, 1030, 11016, 1457, 668, 33850, 1177, 1959, 11348, 3400, 34971, 89, 3824, 4039, 4057, 15277, 3709, - 4507, 91, 1983, 33790, 1984, 188 - ], - [0, 4080, 11504, 3195, 33794, 7188, 33795, 33796, 1388, 33799], - [1, 2343, 34005], - [0, 34006, 34016, 2514, 2523], - [0, 1653, 33817, 33829], - [2, 29234, 34008, 34010], - "pec-", - "custom-event", - [3, 11133, 16, 9], - "ant-stuff", - [2, 13112, 34011], - [2, 32845, 34012], - "rrect-lockfile", - [2, 33664, 34014], - [ - 0, 1414, 33834, 4494, 1983, 2832, 2899, 1424, 1177, 4042, 2203, 1894, 4473, 33837, 4614, 442, 91, 4874, 2820, - 6503, 33844, 17113, 19181, 33847, 8850, 33853, 17112, 10615, 3112, 1895, 811, 1011, 816, 1009 - ], - [3, 8136, 10], - "nalyzer", - [2, 32412, 34018], - "-navigation", - [1, 2343, 34022], - [0, 34023, 34045, 34046, 2487], - [0, 20584, 2131, 2674, 33876], - [2, 31395, 1542], - [2, 34026, 34042], - [3, 34030, 17], - "is-safe-filename", - [2, 5600, 34029], - "recurse", - [2, 28756, 18346], - "@asciidoctor/core", - [2, 29611, 34035], - "samsam", - [2, 11122, 34033], - "site-publisher", - [3, 11134, 16], - "plugin-n", - "o-prototype-methods", - [2, 34037, 34038], - [2, 34036, 34039], - "@studio/changes", - "ropdown-menu", - "@openspacelabs/react-native-zoomable-view", - "clock", - [0, 23531, 4874, 33901, 2611, 3297, 4449], - [0, 1424, 10798, 33903, 33904, 29727, 15344, 11812, 158, 11806, 33905, 8924, 33907, 33908, 2636, 8221, 9561], - [1, 2343, 34054], - [2, 29611, 34049], - "asciidoc-loader", - "vendor", - "mocks-", - "and-spies", - [2, 34051, 34052], - [0, 34056, 34057, 34058, 4139], - "asciidoc", - [0, 33909], - [0, 4469, 91, 2924, 4677, 89, 3824, 4880, 4883], - [0, 89, 33909, 2090, 1586, 10057, 33920, 158, 6038, 9229, 33921, 6997, 6949, 13531, 20614], - [1, 2343, 34069], - "express-json5", - "-readme", - [2, 8924, 34061], - "-htpasswd", - [2, 4199, 34063], - "fs-ext", - "crypt3", - "pod-install", - [2, 13888, 2036], - [0, 34072, 34073, 34074, 2523], - "pinch-to-zoom", - "pinch", - [0, 37082, 26380, 17214], - [0, 1984, 3541], - [0, 1388, 3541, 4627, 17050, 1973, 5472], - [1, 2343, 34077], - "@polka/url", - [0, 34079, 34080, 34081, 2537], - "totalist", - [0, 1138, 1437, 1457, 2182, 2185, 2226, 2600, 2685, 2991, 3127, 3758, 4135, 13834], - [0, 33943, 8147, 5254, 33768, 1166, 1424, 3421, 29899, 1894, 3706, 28593, 4474, 4481, 91, 1906], - [0, 33948, 200, 33949, 1745, 33950, 33951, 1783, 2636, 3758, 3197, 33952], - [3, 33056, 29], - [2, 33060, 34084], - "node-range", - "bytes-iec", - "nanospinner", - [2, 37050, 6579], - "budget", - [3, 13526, 12], - [2, 34089, 34088], - [1, 2343, 34094], - [2, 959, 34093], - "table-core", - [0, 34095, 34100, 28315, 2523], - [0, 1437, 4747, 28172, 32884, 28236], - "file size", - " size", - [2, 7204, 34097], - "get size", - [0, 4874, 32551], - [1, 2343, 34102], - [0, 34103, 21592, 34106, 2523], - [0, 4135, 32884, 28236, 28200], - "-cognito-identity-js", - [2, 6997, 34104], - [0, 32910, 32912, 32913, 13428, 5472, 6533], - "skapi", - [1, 2343, 34109], - [0, 34110, 34117, 34120, 2537], - [0, 31855, 28236, 28200, 32884], - [2, 20327, 1984], - "-no-globals", - [2, 17375, 34114], - "ormat", - "unloader", - "seperator", - [0, 2065, 34007, 32903, 13426, 3536, 11132], - [2, 34119, 12675], - [3, 36879, 12], - [0, 32910, 32912, 32913, 13428, 5472, 6533, 29724], - "is-fullwidth-code-point", - [1, 2343, 34123], - [0, 34124, 34126, 34129, 2537], - [0, 1525, 940, 999, 32138], - "random-item", - [0, 32889, 33932, 34031, 34032], - [2, 29611, 34128], - "file-publisher", - [0, 29699, 200, 1179, 1745, 29703, 29753], - "publisher", - "folder-size", - [2, 2183, 34131], - [1, 2343, 34135], - "js-extend", - [0, 34138, 0, 34140, 2537], - "math-sum", - [2, 7627, 1413], - [0, 34048], - "tablify", - [0, 29699, 32891, 5457, 34055, 1745, 29703, 29753], - "slow", - [1, 2343, 34144], - "dts-plugin", - [0, 26338, 34145, 34146, 4139], - [ - 0, 5467, 21155, 10614, 5087, 4870, 4880, 5091, 1009, 1011, 1529, 1177, 1895, 1955, 2675, 1192, 34067, 1894, 89, - 3857, 21166, 3980, 91 - ], - [0, 3857, 5128, 12295, 12296, 34070, 34071, 5131, 970, 4627, 6624, 16660, 37460, 4420, 4384], - [1, 2343, 34153], - [2, 5051, 34149], - "cheduler", - "htmlcs", - "standards", - "WCAG", - [0, 34155, 34158, 34159, 2399], - [2, 2287, 33914], - [0, 4419], - "urlify", - [2, 21831, 364], - [0, 32426, 3519], - [0, 25638, 14873, 5472, 17878, 4419], - [1, 2343, 34162], - "stage-js", - [0, 34163, 34164, 2514, 2487], - [0, 31292, 3530, 9354], - [ - 0, 25366, 33243, 33638, 33650, 16804, 33146, 4874, 20374, 29891, 1112, 19839, 33902, 668, 1177, 34113, 2807, - 2990, 3090, 28865, 4042, 9245, 1531, 91, 34115, 29470, 1983, 1984, 2924, 4677, 29161 - ], - [2, 4609, 12607], - [2, 4609, 34168], - [2, 18124, 1781], - "pages", - " output", - [2, 3721, 34169], - " standard", - [2, 4216, 34171], - "standard ", - [2, 34173, 3721], - " for ", - [2, 34175, 4255], - [2, 25264, 34176], - [3, 34177, 11], - [2, 34178, 9338], - "stylish ", - [2, 34180, 16237], - [2, 34180, 4255], - [2, 1983, 6872], - [2, 34183, 22156], - [1, 2343, 34192], - "box2d", - "game", - "physics", - "axios-ntlm", - "xml-crypto", - "2d", - [0, 14631, 0, 34193, 2487], - [0, 29699, 32891, 20204, 1745, 29703, 29753], - "@types/sax", - [1, 2343, 34196], - [0, 34202, 0, 34210, 2399], - [2, 4005, 34198], - "s-cli", - [3, 26390, 16, 13], - "base64id", - [2, 9246, 25513], - [0, 34127], - [2, 34204, 2403], - [3, 5556, 15], - [2, 34206, 34690], - [3, 28724, 15], - [2, 7686, 34209], - "@socket.io/component-emitter", - "minify-templates", - [0, 29699, 32891, 34130, 1586, 1745, 29703, 29753], - [1, 2343, 34212], - [0, 34213, 0, 29047, 2523], - [0, 10744, 1209, 3084, 25886], - [1, 2343, 34215], - [0, 0, 34223, 34248, 2523], - [2, 34217, 158], - [3, 5386, 10], - "faceoff", - [2, 34220, 34221], - [3, 16767, 16], - "erformance-monitor", - [2, 16766, 6812], - [ - 0, 107, 442, 4856, 7677, 1091, 1177, 1895, 1894, 4039, 4060, 4193, 4072, 4481, 4484, 4508, 4514, 4523, 1983, - 34165, 34166, 34183, 34184, 4614, 1984 - ], - "fast-wrap-ansi", - "@rslib/core", - "eventsource", - "oxc", - "sockjs", - [2, 28573, 34230], - "rslib", - [2, 28606, 34232], - "rstest-config", - [2, 34234, 6847], - [3, 10235, 18], - [2, 29314, 3090], - "@pnpm/list", - "@pnpm/workspace.find-packages", - [2, 1463, 20001], - [2, 37509, 34240], - "eeverse", - [2, 34242, 34243], - [3, 4892, 10], - "npkg__lockfile", - "fast-npm-meta", - "@nolyfill/internal", - [2, 34247, 35011], - "@nolyfill/", - [0, 34186, 12075, 5284, 91, 34187, 34188, 16284, 34191, 5131], - [1, 2343, 34250], - [0, 0, 34251, 34252, 2523], - [ - 0, 107, 4874, 1009, 1011, 17494, 1177, 1895, 2025, 2899, 1894, 34197, 4060, 34199, 4193, 4508, 4514, 91, 1983, - 34165, 34166, 34183 - ], - [0, 12075, 34187, 22894, 8691, 16284, 34191, 1424, 16697, 5122, 5131], - [1, 2343, 34255], - "separated", - [0, 34256, 0, 34257, 2537], - [0, 4447], - [0, 4525, 5284, 34227, 33479, 1894, 91], - [1, 2343, 34259], - [0, 0, 0, 34285, 2537], - "fumadb", - "microfiber", - [3, 8277, 10], - "alars", - [2, 34262, 34263], - "load-files", - [2, 5527, 34265], - "compact", - [2, 3715, 34267], - [2, 9470, 34268], - "@anvilco/apollo-server-plugin-introspection-metadata", - "kysely", - "bdd-lazy-var", - "@orpc/zod", - "@orpc/otel", - "neverthrow", - "introspection", - "@c15t/logger", - "-query", - [2, 34276, 34278], - "@orpc/server", - "@orpc/openapi", - "@orpc/contract", - "@c15t/translations", - [2, 13498, 202], - [ - 0, 4796, 26481, 2968, 31176, 6646, 3378, 3420, 9478, 6666, 3552, 4135, 18710, 7671, 33163, 33186, 18280, 9527, - 4749 - ], - "kysely-pglite", - "@c15t/vitest-config", - [2, 34289, 34290], - "@libsql/", - "kysely-libsql", - "string-t", - [2, 34295, 21160], - "o-stream", - [2, 34291, 34293], - "@c15t", - [1, 2343, 34322], - "consent", - "privacy", - "ccpa", - "binary-split", - [2, 7241, 14922], - "lgpd", - "self-host", - "consent-management", - "user-privacy", - [2, 34307, 34308], - "data-pro", - "tection", - "cookie-banner", - [2, 34304, 34311], - "-platform", - [2, 2339, 5365], - "cmp", - [2, 34315, 7179], - "consent-", - [3, 5079, 14], - "imageinfo", - "prettydiff", - "sprity-css", - "/common", - "sprity-lwip", - [0, 0, 34323, 2514, 2537], - [ - 0, 29713, 34235, 635, 34236, 34237, 811, 8850, 816, 23339, 8712, 28206, 34239, 34241, 29308, 1525, 1707, 34244, - 3749, 3527, 4079, 34245, 34246 - ], - "object-stream", - [1, 2343, 34327], - "through2-spy", - [0, 34329, 0, 29047, 2443], - "coordinates", - [ - 0, 13387, 13412, 13388, 20908, 13395, 1170, 1362, 1364, 2026, 29067, 2670, 1209, 3084, 3162, 3237, 3509, 4148, - 4507 - ], - [1, 2343, 34332], - "css-sprite", - [0, 33469, 33476, 6151, 2443], - [1, 2343, 34334], - [0, 34335, 33476, 6151, 2443], - [0, 31874, 546, 8604, 8605], - [1, 2343, 34337], - [0, 34338, 34339, 34340, 2399], - [ - 0, 4763, 16230, 15095, 34260, 34271, 34273, 4341, 34274, 34275, 32176, 34277, 34280, 34281, 34282, 34283, 13471, - 34284, 13495, 13502 - ], - [0, 3244, 32426, 6526, 91, 4874, 34286, 6494, 34287, 12207, 34288, 33237, 34292], - [0, 34297, 34298, 7229, 34299, 34302, 5995, 34303, 34304, 34305, 33055, 34306, 34309, 34310, 34313, 34314], - [1, 2343, 34343], - "asn1", - [0, 34344, 34346, 34347, 2399], - [0, 2105, 3527, 2072], - "bcrypt-pbkdf", - [0, 28177, 4880, 1701, 3442, 21166, 91], - [0, 3857, 12295, 12296, 31937, 6574, 6635, 5128, 31912, 89, 5131, 181, 1017, 45, 13814, 22875, 2414], - [1, 2343, 34349], - [0, 34350, 0, 34351, 4139], - [0, 4597, 3173, 940, 34048], - [0, 29699, 32891, 1563, 1745, 29703, 29753], - 1772409600000, - [1, 2343, 34361], - "integrity", - "subresource integrity", - "sri", - "sri hash", - "sri ", - "sri string", - [2, 34358, 1179], - [0, 0, 34362, 34381, 34352], - [ - 0, 34363, 32558, 48, 53, 5240, 83, 87, 34368, 34369, 5583, 6373, 1178, 1193, 17217, 24621, 29883, 34370, 29775, - 1540, 1759, 1177, 1935, 1938, 27790, 2126, 29945, 35634, 2675, 1192, 11896, 32206, 11348, 11350, 3534, 34376, - 1894, 3720, 3758, 34197, 4042, 34377, 4060, 4073, 4079, 4146, 91 - ], - [2, 34364, 34365, 34367], - [3, 5215, 13], - "ollup-plugin", - "shuruhatik", - [3, 10697, 17, 6], - "@fezvrasta/tsc-silent", - "@khanacademy/flow-to-ts", - [2, 34374, 34375], - "long-", - [2, 4252, 591], - [2, 34371, 34372], - [3, 14697, 22], - "place-variables", - "poster", - [2, 34378, 34379], - [3, 11802, 15], - "low-entry", - "version-guard", - [0, 8190, 8191, 5399, 8192, 34384, 34385], - [3, 12809, 13], - [2, 34382, 7051], - "popper", - [2, 8194, 34386], - " engine", - [0, 0, 7997, 7998, 34352], - [1, 2343, 34390], - [3, 1570, 26], - [0, 0, 34394, 34396, 34352], - "fig-spec", - [2, 34389, 34391], - "dotgitignore", - [0, 10615, 6503, 4874, 1387, 1429, 2899, 3363, 4042, 4426, 91], - "std-mocks", - [ - 0, 34397, 2238, 34398, 16629, 7521, 34399, 29804, 31687, 1993, 16284, 9006, 34400, 34401, 8424, 34402, 6829, - 26514, 34403, 34404, 34406 - ], - "anime", - "anime.js", - "timeline", - "easings", - "cubic-bezier", - "splitText", - "WAAPI", - "Canvas", - "ban-sensitive-files", - "WebGL", - "deps-ok", - "dont-crack", - "git-issues", - "pre-git", - "simple-co", - "mmit-message", - [2, 34411, 34412], - [0, 9116, 9122, 9131, 34352], - [1, 2343, 34416], - [0, 7967, 7938, 7939, 34352], - [1, 2343, 34418], - [0, 0, 0, 10570, 34352], - [0, 0, 12106, 12107, 34352], - [1, 2343, 34422], - "modern-syslog", - [0, 0, 11488, 34424, 34352], - "winser", - [0, 7789, 34425], - "decrypt", - "etsy", - "metric", - [0, 34430, 34436, 34440, 34352], - "aggregation", - [0, 34431, 34432, 34433, 34434, 34435], - "ev-emitter", - "fizzy-ui-utils", - "get-size", - "imagesloaded", - "unidragger", - [0, 1462, 1177, 34437, 34439, 2907, 4320, 4323, 4072], - [2, 1949, 34438], - "etafizzy", - "jquery-bridget", - [0, 4453, 6398, 34441, 31512, 32054, 35060, 36197, 1388], - "flick", - [0, 17201, 17202, 17203, 34352], - [3, 11146, 12], - [1, 2343, 34445], - [0, 0, 34446, 34448, 34352], - [0, 1429, 1700, 2323, 2367, 22122, 2409, 2447, 2494, 2530, 34447, 2899], - [2, 22465, 35458], - [0, 6901, 27679, 16626, 3220, 3222, 1666], - [0, 0, 0, 18014, 34352], - [1, 2343, 34451], - [0, 0, 0, 34452, 34352], - [0, 17199, 16892, 2869, 3166, 34453, 11326, 207, 20531, 57], - "lex", - [1, 5293, 34455], - [0, 8391, 34352], - [1, 2343, 34457], - [0, 34458, 0, 2514, 34352], - [0, 1395], - [0, 20095, 20097, 2514, 34352], - [1, 2343, 34461], - [0, 0, 34462, 34463, 34352], - [0, 2080, 4389], - [0, 18012, 25866, 18108, 34464, 30091], - "maths", - [3, 10821, 18], - "11y", - [2, 34465, 34466], - "pannellum", - [1, 2343, 34470], - [0, 0, 34477, 34483, 34352], - [3, 32229, 23], - "hots", - [2, 34471, 34472], - "-puppeteer", - [2, 34473, 34474], - [2, 10818, 31765], - [0, 2899, 2025, 16189, 34478, 34482, 3469, 1149], - [2, 34481, 2844], - "orchbox", - [2, 22060, 34479], - "persist-", - "jugglingdb", - [0, 11415, 3469, 34482, 16189], - [2, 4270, 676], - "patternlab", - "-pat", - [ - 0, 53, 61, 83, 87, 90, 92, 442, 10615, 29767, 6061, 16607, 6063, 6065, 16608, 16612, 29769, 1193, 20517, 29775, - 1503, 1593, 1610, 1177, 15510, 1942, 2026, 2323, 2338, 2544, 2765, 24652, 29778, 1192, 2780, 1776, 29779, 2990, - 9750, 5103, 29780, 29783, 3758, 3957, 4131, 4523, 1983, 29770, 27900 - ], - [1, 2343, 34495], - "tern-library", - [2, 34486, 34489], - [2, 21043, 34490], - "django-", - [2, 34492, 5354], - "jinja2", - [0, 0, 0, 34496, 34352], - [0, 34497, 11328], - "panorama", - [0, 26328, 26329, 26330, 34352], - [1, 2343, 34501], - "findit2", - [0, 34502, 0, 2514, 34352], - [0, 3760, 13126, 4747, 4709, 3259, 4545, 1481, 16734, 1512, 4720], - [1, 2343, 34504], - [0, 7936, 7938, 7939, 34352], - [0, 0, 0, 23762, 34352], - [1, 2343, 34507], - [0, 34509, 34512, 34518, 34352], - "funsert", - [0, 3744, 34511], - "into-stream", - "rip-out", - [ - 0, 48, 53, 78, 87, 90, 94, 1148, 1596, 1843, 1845, 1177, 34514, 17585, 1951, 1959, 2832, 2899, 3421, 89, 3824, - 32510, 34517 - ], - "Assert", - [2, 34515, 34516], - [3, 1886, 16], - "daddy-react", - "setup-env", - [0, 8221, 3857, 21610, 34519, 11512, 89], - "compatiblity", - "compatibl", - "ity", - [0, 0, 0, 23771, 34352], - "-metadata", - [2, 26612, 34523], - [0, 11976, 4874, 7677, 12690, 3377, 3446, 7461, 9245, 91, 1984], - [1, 2343, 34529], - "livestream", - [2, 34527, 3642], - [0, 0, 34530, 2514, 34352], - [ - 0, 53, 87, 811, 13866, 816, 1198, 1290, 1389, 2766, 2297, 2871, 2881, 2886, 2898, 6387, 2923, 3758, 4042, 4045, - 34531, 20981, 34533, 20983, 4073, 4650 - ], - [2, 34532, 671], - [3, 15277, 16], - [2, 15476, 34534], - "ass", - [1, 2343, 34536], - [0, 0, 34538, 2514, 34352], - "gulp-rimraf", - [0, 4039, 3188, 34539, 34543], - "testit", - "string.js", - "stringjs", - "S", - "gethub", - [1, 2343, 34545], - [0, 0, 34546, 34548, 34352], - [0, 48, 53, 87, 1178, 1261, 1177, 1881, 1895, 1938, 1955, 1192, 1894], - "codsen-utils", - [ - 0, 6270, 4202, 1413, 34549, 57, 34550, 17180, 14638, 12786, 30946, 2382, 2098, 2090, 7017, 6435, 6270, 15253, - 3721 - ], - "bits", - "iec", - "ranges-apply", - 0, - "ranges-push", - "string-le", - "ft-right", - [2, 34554, 34555], - 0, - "onkey-traverse", - [2, 19434, 34558], - "ranges-invert", - 0, - "jsp", - "mixed", - "xhtml", - 0, - 0, - 0, - 0, - [2, 2183, 7230], - 0, - 0, - 0, - 0, - 0, - "-html4", - [2, 26854, 34575], - [3, 34576, 19], - [2, 34577, 27769], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "payment processing", - "credit cards", - 0, - 0, - 0, - 0, - [2, 2168, 3081], - "sdk-", - [2, 34608, 1102], - [2, 26424, 34609], - "fly-register", - [2, 202, 34611], - "strong-agent", - 0, - "strong-arc", - "strong-build", - 0, - 0, - "strong-deploy", - "strong-m", - "esh-models", - [2, 34620, 34621], - "strong-re", - "gistry", - [2, 34623, 34624], - "strong-start", - "strong-s", - "upervisor", - [2, 34627, 34628], - 0, - "core-util-is", - "strong-de", - "bugger", - [2, 34632, 34633], - "wagger-ui", - [2, 34627, 34635], - [3, 4369, 10], - "-validate", - [2, 22188, 34638], - 0, - 0, - "LoopBack", - "Platform", - "alerts", - 0, - 0, - "event loop", - 0, - 0, - "heroku", - "nodeops", - "npmrc", - "openshift", - "slc", - "est functions", - [2, 34141, 34655], - "strong-cli", - "strong-cl", - "uster-control", - [2, 34658, 34659], - "strongops", - "upstart", - 0, - 0, - 0, - 0, - [2, 27954, 1699], - [2, 27954, 2070], - [2, 27954, 3144], - "@zip.js/zip.js", - [2, 3503, 4549], - 0, - "@astrojs/check", - "@astrojs/", - "starlight", - [2, 34674, 34675], - [2, 12310, 1430], - [3, 811, 8], - [2, 34678, 1388], - "@shoelace-style/shoelace", - [2, 13283, 8891], - 0, - "astro", - "hanbi", - "escape-at", - [2, 2827, 34685], - "jsdoc-ts", - [2, 2701, 1932], - [2, 34687, 34688], - "lit", - 0, - "dictionary", - [2, 19319, 34692], - "Android", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 19801, 2741], - "css-t", - "o-react-native", - [2, 34716, 34717], - 0, - [2, 11832, 14438], - [2, 5129, 10699], - [2, 4881, 34721], - "rame", - [2, 34723, 10699], - [2, 11364, 34724], - "-plugin-rtl", - [2, 7917, 34726], - 0, - 0, - "ts-toolbelt", - 0, - 0, - 0, - 0, - 0, - 0, - "bunchee", - "stylis-", - 0, - "rule-sheet", - [2, 34738, 34740], - 0, - "zeit", - 0, - 0, - 0, - 0, - 0, - "hack", - 0, - 0, - 0, - 0, - 0, - "globjoin", - "-tag-names", - [2, 18110, 34756], - "-nested-selector", - [2, 5250, 34758], - [2, 30273, 34759], - 0, - "svg-tags", - 0, - "github-info", - [2, 6018, 34764], - "@styl", - "elint/prettier-config", - [2, 34766, 34767], - [3, 34768, 11], - [2, 34769, 19692], - [3, 4852, 9], - "lanced-match", - [2, 34771, 34772], - [3, 25558, 14], - [2, 34774, 5260], - [2, 4865, 4565], - "murmurhash", - [2, 8802, 34777], - [3, 13059, 16], - [2, 34779, 2706], - 0, - 0, - "@types/svg", - "-tags", - [2, 34783, 34784], - "ylelint", - [2, 17371, 34786], - 0, - 0, - "set-stylelint", - [2, 32137, 34790], - [3, 3676, 10], - [2, 34792, 367], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [3, 4323, 16], - 0, - 0, - 0, - 0, - [2, 1280, 8554], - 0, - 0, - "css-values", - "shortcss", - 0, - "dela", - "ration", - 0, - 0, - "-strict-value", - [2, 34813, 34816], - [2, 34812, 34817], - "keyword", - "z-index", - 0, - 0, - 0, - 0, - "orting", - [2, 3677, 34825], - 0, - "udochenkov", - [2, 25790, 34828], - 0, - "ed-syntax", - [2, 30481, 34831], - [3, 24627, 16], - "hudochenkov", - [2, 34833, 34834], - 0, - 0, - 0, - 0, - 0, - [3, 30356, 14], - [2, 34841, 27739], - 0, - "github-c", - "s-list", - [2, 17551, 34845], - [2, 34844, 34846], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [3, 1369, 11], - [2, 34859, 30480], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "jar", - "cookiejar", - 0, - [2, 33935, 27], - 0, - "tinyify", - 0, - "frisbee", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "promised", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "capability", - "16m", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "periscopic", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "@types/sade", - [3, 27700, 21], - [3, 27700, 22], - [2, 34941, 20500], - [3, 9566, 10], - [2, 34943, 2847], - [2, 4353, 34944], - 0, - 0, - 0, - 0, - 0, - "@kiwi/eslint-config", - "@kiwi/", - [2, 34952, 7628], - 0, - "@types/pug", - 0, - "easy-import", - [2, 3562, 34957], - 0, - 0, - 0, - 0, - 0, - "@res", - "vg/resvg-js", - [2, 34964, 34965], - "prettysize", - 0, - [3, 30071, 12], - "hromium", - [2, 34969, 34970], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [3, 4362, 11], - 0, - 0, - 0, - "lease-notes", - [2, 15842, 34988], - 0, - "precache", - 0, - 0, - 0, - 0, - 0, - "tape-promise", - 0, - "autogen", - 0, - 0, - 0, - 0, - "multil", - "ang-", - [2, 2055, 4298], - [2, 35005, 35006], - [2, 35004, 35007], - 0, - 0, - "promise.any", - 0, - [2, 29351, 7625], - 0, - "readmeio", - 0, - 0, - 0, - 0, - 0, - [2, 4364, 12659], - [3, 4367, 9], - "emplates", - [2, 35022, 35023], - 0, - "swagger UI", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "s-readme", - [2, 9828, 35034], - [2, 11941, 35035], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "nodelint", - "still", - [3, 29280, 15], - 0, - 0, - "travis-cov", - 0, - "jinja", - 0, - 0, - 0, - 0, - "swipe", - "framework7", - "gallery", - 0, - "slideshow", - 0, - 0, - 0, - 0, - [2, 14507, 3048], - [2, 2655, 35067], - 0, - 0, - "sync-rpc", - [2, 21658, 705], - 0, - "flowgen2", - 0, - 0, - 0, - 0, - 0, - " information", - [2, 623, 35080], - "sysinfo", - 0, - "freebsd", - "openbsd", - "netbsd", - "cpu", - "cpuload", - "physical cores", - 0, - 0, - "logical cores", - "cores", - 0, - "socket type", - "fsstats", - "diskio", - " devices", - [2, 1359, 35098], - "netstats", - [2, 6072, 591], - [2, 11996, 35101], - "network ", - "connections", - [2, 35103, 35104], - "network stats", - "iface", - "printer", - "processes", - "users", - "internet", - "battery", - 0, - 0, - "docker stats", - "docker ", - [2, 35116, 35109], - 0, - "graphic card", - "graphic c", - "ontroller", - [2, 35120, 35121], - 0, - 0, - "disk layout", - "audio", - 0, - "bluetooth", - "wifi", - 0, - "wifinetworks", - 0, - "virtual box", - "virtualbox", - "BIOS", - "chassis", - 0, - 0, - 0, - 0, - "@jsenv/file-size-impact", - "-style-", - [2, 21605, 3733], - [2, 35142, 35143], - [2, 13565, 35144], - "symbol-es6", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "hase", - "draht", - "limes", - "lusca", - "partof", - "timer2", - 0, - "uuidv4", - "crypto2", - "nocache", - "datasette", - 0, - "json-lines", - 0, - "processenv", - "stethoskop", - 0, - "flaschenpost", - "-events", - [2, 8891, 35172], - 0, - "nodeenv", - "roboter", - 0, - "assertthat", - [2, 35166, 4219], - 0, - "cqs", - "cqrs", - 0, - 0, - 0, - 0, - 0, - 0, - "className", - 0, - "classList", - 0, - "override", - 0, - 0, - 0, - 0, - "dlv", - 0, - 0, - 0, - 0, - 0, - 0, - "@tapjs/after", - [2, 35205, 27554], - "@tapjs/a", - "sserts", - [2, 35207, 35208], - "@tapjs/", - 0, - "@tapjs/before", - [2, 35212, 27554], - "@tapjs/chdir", - 0, - "@tapjs/core", - [2, 35210, 7131], - "@tapjs/fi", - "xture", - [2, 35218, 35219], - [2, 35210, 9261], - "@tapjs/mock", - "node-ser", - "ialize", - [2, 35223, 35224], - [2, 35210, 35225], - "@tapjs/run", - [2, 35210, 8745], - 0, - "@tapjs/spawn", - 0, - "@tapjs/stdin", - "@tapjs/test", - "@tapjs/t", - [2, 35234, 2528], - [2, 35210, 6812], - [2, 4026, 1204], - 0, - "tapjs", - "tapjs plugin", - 0, - 0, - 0, - 0, - "tap-out", - 0, - "tapes", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "resumer", - [2, 23236, 35259], - "@ljharb/t", - "hrough", - [2, 35261, 35262], - [2, 5613, 7067], - "dotignore", - [2, 2565, 15126], - 0, - "ecstatic", - [3, 3404, 9], - "osix-or-windows", - [2, 35269, 35270], - 0, - "harness", - 0, - 0, - 0, - 0, - [2, 9497, 29051], - "chownr", - "yallist", - 0, - "chmodr", - 0, - "-to-array", - [2, 2018, 35284], - 0, - 0, - 0, - 0, - 0, - "brittle", - 0, - 0, - 0, - 0, - 0, - "b4a", - "fast-fifo", - "streamx", - 0, - 0, - 0, - 0, - 0, - 0, - [2, 6346, 6770], - "DDD", - [2, 6346, 8726], - 0, - "front end", - 0, - "back end", - 0, - 0, - 0, - 0, - "cz-format-extension", - 0, - 0, - 0, - 0, - 0, - 0, - "telegram-api", - "telegram-", - "client-api", - [2, 35325, 35326], - "tdlib", - "tglib", - [3, 3299, 10], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "tempdir", - "tmpfile", - 0, - 0, - 0, - 0, - "unique-s", - [2, 35348, 8961], - 0, - 0, - 0, - 0, - 0, - 0, - "@cronvel/get-pixels", - 0, - "chroma-js", - "lazyness", - 0, - 0, - "gen-events", - [2, 3286, 35362], - "seventh", - "string-kit", - 0, - "tree-kit", - 0, - "256 colors", - 0, - "true color", - 0, - "input field", - "gpm", - "screenbuffer", - "textbuffer", - "32-bit", - 0, - 0, - 0, - 0, - "charm", - "visualwidth", - 0, - "80s", - "ibm", - 0, - 0, - 0, - 0, - [3, 5012, 18], - [2, 35391, 4226], - 0, - "@ls-lint/ls-lint", - "astring", - 0, - 0, - 0, - 0, - 0, - 0, - "glify-js", - [2, 7817, 35402], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "multiline-ts", - "spawn-p", - [2, 35418, 4357], - 0, - 0, - "only-allow", - "sinon-", - "assert-stub", - [2, 35423, 35424], - [2, 35423, 2299], - 0, - "unlinted", - 0, - 0, - 0, - 0, - 0, - "@deve", - "/bin-v8-flags-filter", - [2, 674, 35435], - [2, 35434, 35436], - [3, 35437, 12], - [2, 35438, 29084], - "bowser", - "chrome-", - [2, 20844, 8626], - [2, 35441, 35442], - "device-specs", - "elegant-s", - [2, 35445, 10252], - 0, - 0, - 0, - "get-os-info", - 0, - 0, - "import-lazy", - 0, - "is-podman", - "-async-hook", - [2, 3077, 35456], - "-commonjs", - [2, 17102, 35458], - [2, 17003, 35459], - [2, 14709, 35460], - "os-family", - "pinkie", - [3, 7872, 10], - [2, 35464, 2013], - [2, 2093, 10903], - [2, 15034, 35466], - 0, - "replicator", - 0, - "-tools", - [2, 20008, 35471], - [2, 4415, 35472], - "testcafe-", - "hammerhead", - [2, 35474, 35475], - 0, - "legacy-api", - [2, 35474, 35478], - [3, 22279, 11], - [2, 35480, 1803], - [2, 35474, 35481], - [3, 35482, 18], - [2, 35483, 3392], - [2, 35483, 6907], - [2, 35483, 4386], - [2, 35483, 28592], - 0, - 0, - 0, - 0, - "testcafe-s", - [2, 11068, 1179], - [2, 35492, 35493], - [2, 7051, 4007], - [2, 17475, 35495], - "unquote", - "url-to-o", - "ptions", - [2, 35498, 35499], - 0, - "@ffprobe-installer/ffprobe", - "@types/ca", - "llsite", - [2, 35503, 35504], - [3, 5245, 9], - "@types/dedent", - [3, 5546, 10], - "ragent", - [2, 35508, 35509], - "connector", - [2, 26353, 35511], - "caller", - "dom-walk", - [3, 25792, 16], - "mmerhead", - [2, 35515, 35516], - "express-ntlm", - "gulp-clone", - 0, - "gulp-ll-next", - [3, 27610, 11], - [2, 35522, 2869], - "qunit-harness", - [2, 2337, 35524], - 0, - "gulp-step", - "-spe", - "c-with-retries", - [2, 35528, 35529], - [2, 32261, 35530], - "sl-self-signed-certificate", - [2, 8423, 35532], - [3, 35473, 17], - "-browserstack", - [2, 9962, 35535], - [2, 35534, 35536], - 0, - "automated", - "QA", - 0, - 0, - 0, - 0, - "@types/doc", - "kerode", - [2, 35545, 35546], - "docker-", - [2, 35548, 2940], - [2, 3583, 33893], - "ssh-", - 0, - "port-forward", - [2, 20844, 35553], - [2, 35551, 35554], - 0, - [3, 23843, 13], - [2, 35557, 3015], - [3, 28203, 13], - "ties-reader", - [2, 35559, 35560], - [3, 7752, 11], - [2, 35562, 2150], - 0, - 0, - 0, - 0, - 0, - "object-es5", - [2, 26988, 35569], - 0, - "limate-test-reporter", - [2, 14354, 35572], - "conf-env", - [2, 1611, 35574], - "headerify", - "is-number", - 0, - "teenytest", - [2, 35579, 4007], - 0, - "test double", - 0, - 0, - 0, - 0, - 0, - "fireworm", - "printf", - "_string", - [2, 369, 35590], - 0, - [2, 1362, 23842], - "hallow-", - [2, 35594, 1693], - [2, 21479, 35595], - 0, - "saucie", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "dpdm", - "dcs", - [2, 16693, 35610], - 0, - 0, - 0, - 0, - 0, - "three.js", - "reality", - [2, 9352, 35618], - "augmented-reality", - "webgl", - "webgl2", - 0, - 0, - "webaudio", - 0, - 0, - "webgpu", - "webxr", - 0, - 0, - 0, - 0, - [2, 2182, 20], - "node-st", - "dlib-browser", - [2, 35635, 35636], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "hundreds", - "polendina", - 0, - 0, - "stream-spigot", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "unexpand", - "homedir", - 0, - "tilde", - 0, - 0, - 0, - 0, - "number-is-nan", - 0, - "profile", - 0, - 0, - 0, - 0, - "bee-affix", - "bee-a", - "bee-alert", - "bee-anchor", - 0, - 0, - 0, - "bee-animate", - [2, 35683, 9820], - "bee-", - 0, - 0, - "bee-backtop", - 0, - "dge", - "bee-badge", - "bee-b", - [2, 35698, 9837], - "bee-button", - [2, 35700, 9847], - "bee-calendar", - 0, - 0, - "bee-carousel", - "bee-cascader", - "bee-c", - "bee-checkbox", - [2, 35707, 142], - "bee-collapse", - "bee-col", - "orpicker", - [2, 35711, 35712], - "bee-co", - 0, - "mplex-grid", - [2, 35714, 35716], - [2, 35691, 3812], - 0, - "bee-dnd", - "bee-drawer", - 0, - "bee-dropdown", - "bee-form", - 0, - "-control", - [2, 35724, 35726], - "bee-form-", - [2, 35728, 7227], - "bee-icon", - "bee-i", - "nput-group", - [2, 35731, 35732], - 0, - "-addon", - [2, 35733, 35735], - "bee-input-", - [2, 35737, 6988], - "bee-label", - 0, - "bee-layout", - 0, - "bee-loading", - 0, - "-state", - [2, 35743, 35745], - 0, - "bee-locale", - 0, - "bee-menus", - 0, - "bee-message", - 0, - "bee-modal", - 0, - "bee-navbar", - "bee-n", - 0, - 0, - "otification", - [2, 35757, 35760], - "bee-overlay", - "page-layout", - [2, 35691, 35763], - "bee-pag", - "ination", - [2, 35765, 35766], - 0, - "bee-panel", - "bee-p", - "opconfirm", - [2, 35770, 35771], - 0, - "bee-popover", - "rogress-bar", - [2, 35770, 35775], - 0, - "radio", - "bee-radio", - 0, - "bee-rate", - "search-panel", - [2, 35691, 35782], - 0, - "bee-select", - 0, - "bee-slider", - 0, - "bee-step", - 0, - "bee-svgicon", - "bee-switch", - "bee-table", - 0, - "bee-tabs", - 0, - "bee-tag", - 0, - "bee-tile", - 0, - 0, - "bee-timeline", - "bee-time", - [2, 35803, 3811], - "bee-tooltip", - "bee-transfer", - "bee-trans", - [2, 35807, 9943], - 0, - "bee-tree", - [2, 35810, 11245], - "bee-upload", - 0, - [2, 2359, 1623], - "-wrap", - [2, 2376, 35815], - "inline-urls", - [2, 21897, 35817], - [2, 4437, 1732], - 0, - "tinper", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "tinylibs", - 0, - 0, - 0, - 0, - "@deno/shim-deno-test", - 0, - [3, 4443, 9], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - " threads", - [2, 6812, 35848], - 0, - "thread pool", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "pushalert", - " toast", - [2, 3857, 35866], - "toastify", - [2, 3862, 35868], - [2, 3862, 9044], - "Typescript", - 0, - 0, - 0, - 0, - "emble-js", - [2, 31072, 35876], - "processmd", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [3, 5152, 10], - "RFC6265", - "RFC2965", - 0, - 0, - 0, - 0, - 0, - "tinytim", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 7231, 7316], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "html-select", - 0, - 0, - "html-tokenize", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "aggregate", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "bs-logger", - "make-error", - 0, - [2, 6308, 3065], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 13664, 6893], - 0, - [3, 5480, 12], - "oader", - [2, 35970, 35971], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "migration", - "migrations", - "cli-tool", - 0, - 0, - 0, - 0, - "@ts-morph/common", - "block-writer", - [2, 10988, 35988], - 0, - 0, - "static ", - [2, 35992, 19748], - "refactor", - [2, 6721, 35994], - 0, - 0, - 0, - 0, - [2, 20223, 6859], - [2, 20223, 1276], - [2, 12448, 16443], - "@csp", - "otcode/source-map-support", - [2, 36003, 36004], - 0, - "dprint", - "@swc/wasm", - "ntypescript", - "util.", - [2, 36010, 19138], - 0, - 0, - 0, - 0, - 0, - [2, 20442, 7163], - "omit-deep", - 0, - "power-assign", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "bre", - "rete", - 0, - "rule engine", - "rules engine", - " rule engine", - [2, 5284, 36038], - "js rule engine", - [2, 6591, 6770], - 0, - 0, - 0, - 0, - 0, - [2, 18284, 4295], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "typedefs", - "typedef", - 0, - "initions", - [2, 36056, 36058], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "polite-json", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 27572, 4014], - 0, - "codelyzer", - [3, 4490, 10], - "siste", - "nt-codestyle", - [2, 36092, 36093], - [2, 36091, 36094], - 0, - "tslint-divid", - [2, 4491, 2700], - [2, 13530, 1334], - [2, 4491, 36099], - "tslint-mi", - "sc-rules", - [2, 36101, 36102], - 0, - 0, - "ts-lint", - 0, - 0, - 0, - 0, - 0, - [3, 20474, 12], - "slint-plugin", - [2, 36112, 36113], - 0, - 0, - 0, - 0, - [2, 4671, 3209], - "joycon", - 0, - "ts-e", - [2, 36122, 154], - 0, - 0, - 0, - 0, - 0, - [3, 14596, 11], - [2, 36129, 8791], - 0, - 0, - 0, - 0, - "@mixmark-io/domino", - 0, - 0, - 0, - "-attendant", - [2, 4495, 36139], - 0, - 0, - 0, - 0, - 0, - "grunt-comp", - 0, - "onent-io", - [2, 36146, 36148], - [3, 2243, 10], - 0, - "at-sourcemap", - [2, 36150, 36152], - "grunt-m", - "arkdown", - [2, 36154, 36155], - [3, 2300, 11], - "grunt-p", - "ush-release", - [2, 36158, 36159], - 0, - "gex-replace", - [2, 24294, 36162], - [2, 3503, 16237], - [2, 22277, 36164], - "unfunk-reporter", - [2, 3192, 36166], - 0, - 0, - 0, - 0, - 0, - "tap-b", - 0, - "rowser-color", - [2, 36173, 36175], - "-util", - [2, 4497, 36177], - 0, - 0, - "curve25519", - "ed25519", - "nacl", - 0, - "poly1305", - "public", - "salsa20", - 0, - "signatures", - 0, - 0, - 0, - 0, - [2, 4498, 1574], - 0, - 0, - "DOM", - "Twitter", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 4505, 1732], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "media-typer", - 0, - "checking", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [3, 596, 9], - "/material-color-utilities", - [2, 36239, 36240], - 0, - 0, - [2, 4511, 699], - [3, 4512, 14], - [2, 3131, 4964], - "material-3", - [2, 4508, 1932], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "JsDocs", - 0, - 0, - 0, - 0, - 0, - 0, - "cli-prompt", - 0, - "concatenate", - 0, - 0, - "ebook", - "pandoc", - 0, - "kindlegen", - 0, - 0, - 0, - 0, - [3, 27847, 12], - [2, 36283, 3231], - [2, 12690, 18877], - 0, - 0, - "-findorcreate", - [2, 3232, 36288], - [2, 7627, 4487], - 0, - 0, - 0, - 0, - "@sqltools/formatter", - 0, - 0, - 0, - 0, - 0, - 0, - "-rename", - [2, 22507, 36302], - [3, 36303, 12], - [2, 36304, 4070], - [3, 5055, 10], - [2, 36306, 1722], - "gulpclass", - 0, - 0, - 0, - 0, - 0, - 0, - "@dprint/formatter", - "@esfx/canceltoken", - "@dprint/", - [2, 36317, 91], - 0, - "azure-", - "-node-api", - [2, 20999, 36321], - [2, 36320, 36322], - "mocha-f", - "ivemat-progress-reporter", - [2, 36324, 36325], - 0, - 0, - "able-stylish", - [2, 26072, 36329], - [2, 10749, 36330], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "commandpost", - 0, - "wer-assert", - [2, 13415, 36344], - "intel", - "li-espower-loader", - [2, 36346, 36347], - 0, - 0, - 0, - 0, - 0, - [2, 5554, 13774], - [2, 18792, 36354], - [2, 13058, 36355], - [3, 36356, 23], - [2, 36357, 1993], - 0, - "css-utils", - [2, 8802, 36360], - [2, 36357, 16839], - "erved-words", - [2, 31525, 36363], - "-sync2", - [2, 3613, 36365], - "sass-svg", - 0, - 0, - 0, - 0, - 0, - "finally", - [2, 9466, 36373], - [2, 4532, 1732], - 0, - [2, 27100, 4255], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "jsmin", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "random-bytes", - 0, - 0, - 0, - 0, - 0, - 0, - [2, 1024, 4525], - "affix", - [2, 1016, 36410], - [3, 36411, 12], - [2, 36412, 9809], - "uto-link", - [2, 36412, 36414], - [2, 36412, 9826], - [3, 1015, 12], - 0, - "ack-top", - [2, 36417, 36419], - [3, 36420, 13], - [2, 36421, 35696], - [2, 36417, 9837], - [2, 1015, 9847], - [2, 1016, 9026], - [3, 36425, 13], - [2, 36426, 9854], - [3, 36427, 14], - [2, 36428, 9860], - [2, 36426, 9863], - [3, 36425, 12], - [2, 36431, 5449], - [2, 36431, 11200], - [3, 36433, 13], - [2, 36434, 3809], - "date-input", - [2, 1016, 36436], - [3, 36437, 16], - [2, 36438, 3811], - [3, 36437, 12], - "escriptions", - [2, 36440, 36441], - "ivider", - [2, 36440, 36443], - [2, 36440, 9997], - [3, 36445, 13], - [2, 36446, 11206], - [2, 1016, 3599], - 0, - "file-input", - [2, 1016, 36450], - [3, 36451, 12], - [2, 36452, 3469], - [2, 1016, 10052], - [2, 1016, 8691], - [3, 36455, 12], - [2, 36456, 28176], - [2, 36456, 35971], - [2, 1016, 4403], - [3, 36459, 13], - [2, 36460, 10104], - [3, 36459, 12], - [2, 36462, 3852], - [3, 36463, 13], - "nth-picker", - [2, 36464, 36465], - [2, 1016, 22005], - [2, 1016, 18367], - [3, 36468, 12], - "in-code", - [2, 36469, 36470], - "opover", - [2, 36469, 36472], - [3, 36473, 13], - "rtal", - [2, 36474, 36475], - [2, 36469, 10148], - [2, 1016, 35778], - [3, 36478, 13], - [2, 36479, 6864], - "search-", - [2, 36481, 1631], - [2, 1016, 36482], - [3, 36483, 18], - [2, 36484, 1633], - [3, 36483, 13], - [2, 36486, 4021], - [3, 36483, 12], - [2, 36488, 10205], - [2, 36488, 10209], - [2, 36488, 11234], - [2, 36488, 10222], - [2, 1016, 176], - [3, 36493, 14], - [2, 36494, 591], - [3, 36493, 13], - [2, 36496, 10233], - [3, 36493, 12], - [2, 36498, 11241], - 0, - "ime-picker", - [2, 36498, 36501], - [2, 36498, 18390], - [2, 36498, 10266], - [3, 36504, 13], - [2, 36505, 10271], - 0, - "-checked", - [2, 36506, 36508], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [3, 212, 12], - "fns", - [2, 36524, 36525], - 0, - "parsel-js", - 0, - 0, - 0, - 0, - 0, - "citty", - 0, - "mkdist", - "untyped", - "hookable", - 0, - 0, - 0, - 0, - 0, - [2, 3714, 20], - 0, - 0, - 0, - 0, - 0, - 0, - [3, 34068, 12], - [2, 36551, 2408], - 0, - 0, - 0, - 0, - 0, - "teo.collina/tspl", - [2, 599, 36558], - "dns-packet", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "trough", - 0, - [3, 9359, 10], - [2, 36570, 4966], - 0, - "retext", - 0, - 0, - 0, - 0, - [3, 4554, 13], - 0, - "non-repeating", - 0, - 0, - 0, - 0, - 0, - 0, - [3, 4555, 10], - "xast", - "nlcst", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "pullstream", - 0, - "match-stream", - 0, - "uncompress", - 0, - 0, - 0, - 0, - "is-npm", - "pupa", - 0, - "fixture-", - [2, 36614, 8634], - 0, - 0, - 0, - 0, - 0, - "urn", - "uri mutation", - "url mutation", - "uri m", - "anipulation", - [2, 36624, 36625], - "url m", - [2, 36627, 36625], - 0, - "uri template", - 0, - "url template", - " res", - " locator", - [2, 5585, 36634], - [2, 36633, 36635], - [2, 4549, 36636], - [3, 36637, 17], - [2, 36638, 16906], - 0, - "query string", - "RFC 3986", - "RFC3986", - 0, - 0, - "RFC 6570", - 0, - 0, - "RFC6570", - [2, 23168, 1932], - "ecosystem", - ":jquery", - [2, 36651, 36652], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "ylru", - "formstream", - 0, - 0, - "tshy-after", - [3, 9725, 12], - 0, - "@types/busboy", - "@eggjs/tsconfig", - "@types/sel", - "fsigned", - [2, 36689, 36690], - 0, - "strictest", - [2, 25627, 36693], - 0, - "urlopen", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "userprofile", - 0, - 0, - 0, - 0, - 0, - [2, 4745, 57], - 0, - 0, - "browserscope", - "ua", - "ua-parse", - "ua-parser", - "user agent", - "user-agent", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "is-typed", - "-array", - [2, 36730, 36731], - 0, - "supported", - [2, 5745, 36734], - [2, 17393, 36735], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "rfc9562", - 0, - 0, - 0, - 0, - 0, - 0, - "bundt", - 0, - "diffs", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "find-pa", - "rent-dir", - [2, 36779, 36780], - 0, - 0, - 0, - "githook", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "sanitisation", - 0, - "sanitise", - 0, - 0, - 0, - 0, - 0, - 0, - "@vue/shared", - "@vant/popperjs", - "@vant/", - 0, - "@vant/use", - 0, - [2, 7047, 1732], - [2, 5334, 36811], - "able-html", - [2, 1687, 36813], - [2, 10952, 2770], - [2, 36807, 7625], - [2, 36807, 45], - 0, - "area-data", - [2, 36807, 36819], - "@vant/cli", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "@vercel/go", - 0, - "@vercel/fun", - "@vercel/next", - [2, 20461, 681], - "@vercel/ruby", - "python", - [2, 33763, 36844], - "@vercel/r", - "edwood", - [2, 36846, 36847], - "hydrogen", - [2, 33763, 36849], - "build-utils", - [2, 33763, 36851], - "@vercel/st", - "atic-build", - [2, 36853, 36854], - "@vercel/re", - 0, - "mix-builder", - [2, 36856, 36858], - 0, - "epipebomb", - 0, - "promisepipe", - "tmp-promise", - 0, - 0, - "@sentry/node", - [3, 28267, 12], - [2, 7738, 6768], - 0, - "@types/dotenv", - [2, 4753, 4007], - [2, 33763, 5576], - [2, 17213, 2022], - "pcre-to-regexp", - "ast-commit", - [2, 33495, 36876], - [2, 8603, 18132], - [2, 8603, 1631], - "@tootallnate/once", - [3, 546, 11], - [2, 36881, 5449], - "@vercel/f", - "rameworks", - [2, 36883, 36884], - [2, 3827, 594], - [2, 33763, 36886], - [2, 5745, 7253], - [2, 10787, 36888], - [2, 20290, 4007], - "s-detectors", - [2, 36883, 36891], - [3, 20485, 11], - "-json-file", - [2, 36893, 36894], - "outing-utils", - [2, 36846, 36896], - [3, 29115, 11], - [2, 36898, 3385], - [3, 22092, 13], - [2, 36900, 16830], - "@vercel", - [3, 9435, 9], - "s/types", - [2, 36903, 36904], - [2, 36902, 36905], - 0, - "node-utils", - [2, 33157, 36908], - [2, 11836, 2656], - [2, 29130, 36910], - [3, 11296, 13], - "xpect-", - [2, 36913, 6458], - [2, 36912, 36914], - [3, 36906, 18], - [2, 36916, 14181], - "@alex_neo/jest-expect-message", - [3, 29110, 18], - [2, 36919, 36910], - [2, 18522, 1781], - [2, 36916, 36921], - 0, - 0, - 0, - 0, - "extsprintf", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "viewer.js", - 0, - 0, - 0, - 0, - 0, - 0, - "remove-t", - "railing-separator", - [2, 36948, 36949], - "teex", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "kdirp-stream", - [2, 29048, 36964], - "is-valid-glob", - "lead", - [2, 4026, 14690], - "stream-com", - "poser", - [2, 36969, 36970], - "to-through", - "value-", - "or-function", - [2, 36973, 36974], - [3, 4606, 15], - 0, - 0, - 0, - 0, - "vinyl-adapter", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "browser-split", - "ev-store", - "x-is-array", - 0, - "x-is-string", - 0, - "run-browser", - 0, - "vtree", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "artichokie", - [2, 4293, 16111], - "es-module-lexer", - [3, 3638, 15], - "@polka/", - [2, 37016, 1536], - 0, - "build-tool", - 0, - 0, - 0, - 0, - "slash-path", - 0, - 0, - 0, - "api-router", - "api-routers", - [3, 4612, 15], - "rest-api", - [2, 4609, 37031], - [3, 9244, 9], - [2, 37033, 995], - [3, 12419, 12], - [2, 37035, 20332], - 0, - "api-rest", - "Remix", - "Next.js", - 0, - 0, - 0, - 0, - [3, 6371, 11], - [2, 37045, 1623], - [2, 9408, 364], - "devtools-api", - [2, 5334, 37048], - "@vueuse/", - [2, 37050, 12339], - "focus-trap", - 0, - "@mdi", - "t-vue/plugin-component", - [2, 37054, 37055], - [3, 37056, 17], - [2, 37057, 9339], - [2, 37057, 11988], - "sfc", - [2, 37057, 37060], - [2, 37057, 17913], - [3, 37062, 18], - "oc", - [2, 37063, 37064], - "@mdit-vue/", - [2, 37066, 6579], - [3, 7641, 19], - [2, 37068, 3111], - [2, 37068, 3113], - [2, 13058, 3667], - [3, 26774, 14], - "thjax3", - [2, 37072, 37073], - 0, - 0, - 0, - 0, - 0, - "@vitest/spy", - 0, - "tinyrainbow", - "@vitest/u", - [2, 37083, 186], - [2, 17213, 8791], - "@vitest/s", - [2, 37086, 11298], - "why-", - 0, - "running", - [2, 21149, 37090], - [2, 37088, 37091], - [2, 17213, 3717], - 0, - "birpc", - "local-pkg", - [2, 33157, 24079], - "@antfu/", - "install-pkg", - [2, 37098, 37099], - 0, - 0, - 0, - 0, - 0, - "node-lo", - "calstorage", - [2, 37106, 37107], - 0, - "gulp-xo", - 0, - 0, - "load-plugins", - 0, - "vorpal-less", - 0, - "vorpal-repl", - 0, - 0, - 0, - 0, - 0, - "eyes", - 0, - "BDD", - 0, - 0, - 0, - 0, - "keytar", - "parse-semver", - [2, 17414, 28362], - 0, - "eerio", - [2, 16931, 37134], - [3, 21625, 11], - [2, 37136, 4565], - 0, - "@types/yazl", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 9738, 6985], - "@types/ic", - "onv-lite", - [2, 37150, 37151], - 0, - 0, - 0, - 0, - [2, 4619, 9586], - 0, - 0, - 0, - 0, - [3, 36812, 13], - [2, 37162, 965], - 0, - 0, - 0, - 0, - 0, - "-libs", - [2, 1988, 37169], - 0, - 0, - 0, - 0, - 0, - 0, - [3, 5736, 22], - [2, 37177, 31692], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "@int", - "lify/core-base", - [2, 37188, 37189], - "@intlify/", - [2, 37191, 6579], - 0, - 0, - "devtools-if", - [2, 37191, 37195], - 0, - 0, - "vue-devtools", - [2, 37191, 37199], - 0, - "intlify", - 0, - 0, - 0, - 0, - 0, - [3, 37200, 13], - 0, - "i18n-loader", - [2, 37208, 37210], - [3, 7892, 11], - [2, 37212, 3176], - [2, 32119, 1698], - "cache-loader", - "markdown-l", - [2, 37216, 35971], - "pug-p", - "lain-loader", - [2, 37218, 37219], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "ightwatch", - [2, 10884, 37231], - 0, - 0, - "faked-promise", - [2, 28506, 6706], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "de-indent", - 0, - 0, - 0, - 0, - 0, - "todomvc-app-css", - 0, - 0, - 0, - 0, - "foreachasync", - 0, - "sys", - "walkSync", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "exec-sh", - 0, - 0, - 0, - 0, - 0, - 0, - "outpipe", - 0, - "win-spawn", - 0, - 0, - 0, - 0, - 0, - "encrypte", - "d-attr", - [2, 37292, 37293], - [3, 3052, 10], - "afeinteger", - [2, 37295, 37296], - [2, 4651, 18008], - "waterline-", - [2, 37299, 594], - 0, - "active-", - [2, 37302, 1355], - 0, - 0, - 0, - 0, - "vargs", - 0, - 0, - 0, - 0, - "bdd-with-opts", - 0, - "gulp-debug", - "mu2", - [2, 9466, 2869], - "auncher", - [2, 26127, 37318], - [2, 20011, 37319], - "mocha-p", - "arallel", - [2, 37321, 37322], - [2, 18199, 37323], - "sv-selenium", - 0, - 0, - 0, - 0, - 0, - "web3-eth", - "web3-net", - 0, - "web3-core", - "web3-types", - "web3-utils", - "web3-errors", - 0, - "web3-eth-abi", - "web3-eth-", - 0, - "web3-eth-ens", - 0, - "web3-eth-iban", - [2, 4654, 1155], - "rpc-methods", - [2, 4654, 37346], - "web3-eth-a", - "ccounts", - [2, 37348, 37349], - "contract", - [2, 37340, 37351], - 0, - "personal", - [2, 37340, 37354], - 0, - "providers-ws", - [2, 4654, 37357], - "web3-rpc-", - "providers", - [2, 37359, 37360], - [3, 37358, 15], - [2, 37362, 27], - 0, - "in3", - "ganache", - "ipc", - [2, 37362, 37367], - [3, 13936, 16], - "se-web3", - [2, 37369, 37370], - "@tru", - "ffle/hdwallet-provider", - [2, 37372, 37373], - 0, - "Ethereum", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "@solana/spl-token", - "@solana/", - "web3.js", - [2, 37391, 37392], - "kva-email-service", - 0, - "ed25519-hdkey", - [2, 32806, 37396], - "ssl-http-with-docker", - [3, 4382, 9], - [2, 7521, 12130], - [2, 37399, 37400], - "telegram-a", - "ssistant", - [2, 37402, 37403], - "web3-r", - 0, - "eact-task", - [2, 37405, 37407], - 0, - "sol", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "assembl", - "yjs/ast", - [2, 37421, 37422], - [2, 10672, 37423], - [3, 37424, 15], - "wasm-edit", - [2, 37425, 37426], - [3, 37427, 20], - [2, 37428, 57], - 0, - 0, - "trace-event", - [2, 35441, 37432], - 0, - "assembly", - [2, 37435, 1508], - [2, 4671, 1194], - [2, 14743, 1194], - "hash-wasm", - "wast-loader", - [2, 20694, 6095], - "xxhashjs", - 0, - 0, - 0, - 0, - "@disco", - "veryjs/json-ext", - [2, 37447, 37448], - 0, - "@carrotsearch/foamtree", - "h0r", - [2, 22060, 37452], - [2, 37453, 2809], - "lodash.p", - "artial", - [2, 37455, 37456], - [2, 3607, 34809], - 0, - "zoomable", - 0, - 0, - 0, - 0, - [3, 13077, 13], - [2, 37465, 18523], - "configtest", - [2, 37465, 37467], - 0, - [3, 4863, 9], - "vinfo", - [2, 37470, 37471], - 0, - 0, - 0, - 0, - 0, - 0, - "@fastify/e", - [2, 37479, 674], - "n-finished", - [2, 15461, 37481], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "@types/sockjs", - [3, 18584, 13], - "njour", - [2, 16872, 37492], - "bonjour-service", - 0, - 0, - 0, - [3, 33768, 13], - [2, 37498, 4017], - [2, 37498, 2947], - 0, - "-community", - [2, 17013, 37502], - "-history-api-fallback", - [2, 11485, 37504], - 0, - "klona", - [2, 37490, 4219], - "@types/tr", - 0, - 0, - "usted-types", - [2, 37509, 37512], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "reloading", - [3, 4631, 10], - [2, 37524, 3642], - 0, - 0, - 0, - 0, - 0, - [2, 32119, 4694], - [3, 33945, 16], - "ellscape", - [2, 37532, 37533], - [3, 3708, 23], - 0, - 0, - 0, - 0, - 0, - 0, - "dts-cli", - 0, - "@types/flat", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "-to-buffer", - [2, 7231, 37567], - "yaeti", - 0, - 0, - "networking", - "comet", - 0, - 0, - 0, - 0, - "@silentbot1/nat-api", - "@thaunknown/simple-peer", - "torrent/http-node", - [2, 10672, 37580], - "addr", - 0, - "-to-ip-port", - [2, 37582, 37584], - "bitfield", - "bittorrent-dht", - [3, 37587, 11], - [2, 37588, 20500], - "cache-c", - "hunk-store", - [2, 37590, 37591], - [2, 33355, 5509], - [2, 13225, 37593], - "cpus", - "create-t", - "orrent", - [2, 37596, 37597], - "-ponyfill", - [2, 1613, 37599], - "fs-c", - [2, 37601, 37591], - "fsa-chunk-store", - "imme", - "diate-chunk-store", - [2, 37604, 37605], - "-async-", - [2, 37607, 7253], - [2, 4565, 37608], - 0, - 0, - "load-ip-set", - "lt_donthave", - "memory-c", - [2, 37614, 37591], - "torrent", - "parse-torrent", - "random-ite", - [2, 37618, 6882], - 0, - 0, - 0, - "speed-limiter", - "throughput", - 0, - 0, - "-discovery", - [2, 37616, 37627], - 0, - 0, - "torrent-piece", - 0, - "uint8-util", - "unordered-", - "array-remove", - [2, 37634, 37635], - "ut_metadata", - "ut_pex", - 0, - [3, 37581, 12], - [2, 37640, 23685], - 0, - 0, - "airtap-manual", - "airtap-s", - [2, 37645, 9073], - [2, 37588, 4839], - "chrome-net", - "-address", - [2, 11996, 37649], - 0, - "path-esm", - "-fixtures", - [2, 4702, 37653], - 0, - "bittorrent", - [2, 37656, 12332], - "mad science", - "p2p", - 0, - 0, - 0, - "peer-to-peer", - 0, - "peers", - "swarm", - "web torrent", - "webrtc data", - 0, - 0, - 0, - 0, - 0, - "web worker", - "a gogo", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "search-params", - [2, 4564, 37687], - 0, - 0, - 0, - 0, - "buster", - "exorcist", - 0, - "cujo", - 0, - "Promises/A+", - 0, - 0, - 0, - 0, - "isexe", - 0, - 0, - 0, - 0, - "taffydb", - "unit.js", - 0, - 0, - 0, - 0, - 0, - "@dabh/diagnostics", - "logform", - 0, - "one-time", - 0, - "@dabh/", - [2, 37720, 23816], - [2, 20417, 4715], - [3, 18518, 12], - [2, 37723, 1149], - "hock", - "winston-co", - [2, 37726, 13172], - 0, - 0, - 0, - 0, - 0, - 0, - "tream-rotator", - [2, 12416, 37734], - 0, - [3, 24151, 11], - [3, 23722, 14], - [2, 37737, 37738], - [2, 6324, 4059], - [2, 37739, 37740], - 0, - "daily-rotate-file", - "log-rotate", - "logrotate", - 0, - 0, - 0, - 0, - 0, - 0, - "winston3", - 0, - 0, - 0, - 0, - 0, - "bower-config", - "propprop", - [2, 4716, 20], - 0, - 0, - 0, - 0, - 0, - 0, - "carriage", - 0, - "new-line", - "return", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "workbox-", - [2, 37779, 6147], - 0, - 0, - "workbox", - "workboxjs", - " worker", - [2, 11100, 37785], - " requests", - [2, 1612, 37787], - "offline", - [2, 12320, 3097], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "writeFile", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "enstore", - 0, - "-crawler", - [2, 4730, 37820], - 0, - "x-ray-parse", - 0, - 0, - "scrape", - 0, - 0, - 0, - 0, - 0, - 0, - "is-function", - "parse-headers", - 0, - 0, - 0, - 0, - 0, - 0, - "adler-32", - 0, - "codepage", - "crc-32", - "ssf", - "wmf", - 0, - "@she", - "etjs/uglify-js", - [2, 37848, 37849], - "on-epipe", - [2, 7219, 37851], - "fflate", - [3, 5392, 10], - "pellcheck", - [2, 37854, 37855], - 0, - "xlsb", - "xlsm", - "dbf", - "dif", - "sylk", - 0, - 0, - 0, - 0, - 0, - "cash-cat", - "codacy-coverage", - "globify", - "unminified-webpack-plugin", - 0, - "XML", - "CDATA", - "doctype", - 0, - 0, - 0, - " instruction", - [2, 10809, 37879], - 0, - "Javascript", - [2, 353, 3642], - "convertor", - "converting", - 0, - "conversion", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "node-expat", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "dom-js", - "xmltest", - 0, - "DOMParser", - "XMLSerializer", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "func-xml", - 0, - 0, - 0, - 0, - 0, - 0, - [2, 5857, 5861], - [2, 69, 37935], - "@unicode/unicode-14.0.0", - 0, - "rray-includes", - [2, 24619, 37939], - [2, 1226, 4740], - [3, 37935, 17], - 0, - "value-aliases", - [2, 37942, 37944], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "whitelist", - 0, - 0, - 0, - 0, - "@scion-scxml/test-framework", - 0, - "statechart", - 0, - 0, - "state machine", - "finite", - " stat", - "e machine", - [2, 37965, 37966], - [2, 37964, 37967], - "finite ", - "automata", - [2, 37969, 37970], - "scxml", - "interpreter", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "ep-equal", - [2, 35506, 37982], - [2, 9228, 4729], - 0, - 0, - "@types/utf8", - [2, 4744, 28703], - 0, - "emulator", - [2, 4402, 37990], - 0, - 0, - 0, - 0, - "jest-t", - "s-webcompat-resolver", - [2, 37996, 37997], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "yaml2json", - "json2yaml", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "test-extends", - [2, 27477, 38016], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [3, 29775, 30], - "imports-", - [2, 38033, 10906], - [2, 38032, 38034], - "death", - "repeating", - 0, - "capture-har", - [2, 9769, 38039], - "roadrunner", - 0, - "node4", - [2, 26202, 38043], - [3, 4821, 14], - "ode5", - [2, 38045, 38046], - [3, 18229, 16], - "-strict", - [2, 38048, 38049], - "ittens", - [2, 25705, 38051], - [3, 1935, 18], - "-vars", - [2, 38053, 38054], - [2, 23105, 7003], - [2, 1152, 38056], - [2, 16645, 38057], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "@yeoman/adapter", - "@yeoman/", - "conflicter", - [2, 38074, 38075], - [2, 38074, 23255], - [2, 38074, 353], - "@yeoman/t", - [2, 38079, 103], - 0, - "fly-import", - [2, 7227, 30831], - "mem-fs", - 0, - "mem-fs-editor", - [2, 9477, 10057], - [2, 17412, 38087], - 0, - 0, - 0, - "esmocha", - "sinon-test", - 0, - 0, - 0, - 0, - 0, - "github-u", - "sername", - [2, 38099, 38100], - 0, - 0, - 0, - 0, - 0, - 0, - "yes", - "false", - 0, - "lenient", - 0, - 0, - 0, - 0, - 0, - "cli-list", - "fullname", - 0, - 0, - "parse-help", - "root-check", - "npm-keyword", - 0, - "doctor", - [2, 4755, 38125], - [2, 25742, 1871], - 0, - 0, - 0, - [2, 4755, 6843], - 0, - [2, 9518, 1002], - 0, - 0, - 0, - 0, - 0, - "@jonahsnider/benchmark", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 26936, 4627], - 0, - "cowsay", - "say", - 0, - 0, - 0, - 0, - 0, - 0, - "zeromq", - "0mq", - "ømq", - "libzmq", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 11477, 1574], - [2, 9228, 4576], - 0, - "@types/morgan", - "express-u", - "seragent", - [2, 38180, 38181], - 0, - " types", - [2, 7047, 38184], - 0, - 0, - 0, - 0, - 0, - 0, - "DSL", - 0, - 0, - 0, - 0, - "@externs/nodejs", - 0, - 0, - 0, - 0, - "JSON2", - 0, - "char-split", - 0, - 0, - "express-state", - "firefox-", - [2, 38208, 35677], - [2, 11941, 2663], - 0, - "shallow-copy", - [2, 4250, 4833], - 0, - "tap-finished", - "-localtunnel", - [2, 4770, 38216], - 0, - 0, - 0, - "browzers", - "bulk-require", - 0, - "zuul-ngrok", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "Unit Testing", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "Storybook", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "belalangkayu", - "rengginangbasi", - "tehtarik3", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "sort-array", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "-scroll-", - "into-view", - [2, 38290, 38291], - [2, 23545, 38292], - 0, - "module-t", - "ype-aliases", - [2, 38295, 38296], - [2, 20201, 38297], - [2, 964, 3698], - [3, 1216, 14], - "o-side-effect-class-properties", - [2, 38300, 38301], - [3, 1270, 19], - [2, 38303, 970], - "flow-co", - [2, 24524, 8803], - [2, 38305, 38306], - 0, - "get-pkg-repo", - 0, - "enhanced", - " input", - [2, 38311, 38312], - 0, - 0, - "autosuggest", - "typeahead", - 0, - "omnibox", - "WAI-ARIA", - "multiple ", - [2, 38321, 17146], - 0, - 0, - 0, - 0, - "focus", - "keyboards", - "mice", - "pseudos", - 0, - "textarea", - "trackpad" +"Flatpack JSON v1", +[5,2,25598], +[0,3,4,7,10,13,16,19,21,24,26,28,30,32,34,37,39,40,43,46,47,48,51,53,56,58,61,62,63,64,65,66,68,71,73,76,78,81,83,85,87,90,92,94,97,99,101,104,105,106,107,110,111,114,116,119,122,124,126,129,133,135,137,140,143,146,148,150,153,155,157,159,162,164,167,169,171,174,175,177,180,182,185,187,189,191,192,195,197,198,201,203,204,205,208,213,215,218,220,221,222,225,228,231,233,235,238,240,243,245,247,249,251,253,258,260,262,265,267,269,271,272,275,277,280,282,285,288,290,293,296,298,301,303,305,308,310,313,315,319,322,324,327,329,331,334,338,340,342,345,346,347,350,351,354,355,358,359,360,361,362,365,368,370,371,374,377,379,381,384,387,392,394,399,401,404,406,409,411,413,415,419,422,425,427,430,432,434,438,439,442,443,444,445,448,449,452,456,457,460,462,465,468,469,470,471,478,481,483,486,488,490,493,495,497,502,505,507,513,516,518,525,528,533,536,538,539,540,541,542,545,546,547,548,549,550,551,554,555,559,560,561,564,565,566,567,572,573,576,577,578,581,583,585,587,589,593,595,596,598,601,602,603,606,608,609,613,615,616,617,618,621,622,624,626,627,628,631,633,634,635,638,641,643,646,649,652,654,656,659,660,663,665,666,669,672,675,677,679,682,683,684,687,688,691,692,693,697,700,702,703,706,709,711,712,713,716,721,724,727,732,735,738,740,742,745,749,751,753,758,763,767,770,773,776,782,785,790,793,795,798,802,803,804,805,806,807,808,809,810,811,816,817,818,821,822,825,826,827,828,829,831,834,835,838,840,841,842,843,846,849,850,851,852,853,857,860,864,870,872,876,881,885,891,896,898,905,910,913,915,917,920,925,929,933,935,938,944,948,951,954,955,958,961,962,963,966,968,971,972,974,975,978,980,983,985,987,989,991,993,996,997,1001,1003,1004,1005,1006,1009,1011,1012,1013,1014,1015,1018,1021,1023,1025,1026,1027,1028,1030,1031,1032,1033,1034,1043,1045,1050,1054,1056,1059,1061,1063,1066,1073,1075,1077,1078,1079,1080,1081,1082,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1096,1097,1098,1100,1102,1103,1104,1107,1109,1110,1112,1113,1114,1115,1116,1117,1118,1120,1121,1122,1125,1127,1129,1130,1131,1132,1135,1136,1137,1138,1139,1140,1143,1144,1145,1147,1148,1149,1151,1154,1156,1157,1158,1159,1162,1165,1166,1167,1168,1169,1170,1171,1172,1173,1175,1178,1180,1184,1189,1191,1193,1195,1198,1201,1203,1205,1208,1210,1212,1216,1217,1220,1225,1230,1233,1235,1240,1244,1245,1248,1251,1253,1255,1257,1261,1264,1267,1268,1270,1272,1275,1277,1279,1280,1282,1284,1287,1288,1290,1291,1292,1293,1294,1295,1298,1301,1304,1305,1306,1308,1309,1310,1311,1314,1315,1316,1317,1318,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1335,1336,1339,1342,1344,1346,1348,1350,1352,1354,1356,1358,1361,1362,1363,1364,1365,1366,1367,1369,1370,1371,1372,1373,1376,1377,1378,1381,1385,1386,1387,1389,1391,1393,1394,1395,1396,1397,1398,1400,1401,1402,1405,1406,1407,1408,1409,1410,1411,1413,1414,1415,1416,1417,1420,1421,1423,1424,1425,1426,1427,1428,1429,1431,1434,1436,1437,1438,1440,1443,1446,1447,1448,1449,1450,1455,1456,1457,1458,1459,1461,1462,1465,1468,1470,200,1471,1474,1477,1479,1480,1481,1482,1483,1486,1488,1489,1492,1494,1495,1496,1497,1498,1499,1500,1501,1503,1505,1506,1509,1473,1511,1512,1513,1516,1519,1522,1525,1527,1529,1532,1533,1536,1537,1540,1541,1543,1544,1546,1549,1551,1553,1556,1559,1560,1562,1565,1566,1567,1570,1573,977,1575,1578,1581,1582,1584,1587,1588,1590,1591,1593,1594,1595,1596,1597,1598,1599,1600,1603,1604,1605,1606,1608,1609,1610,1613,1615,1616,1618,1620,1621,1622,1623,1624,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1645,1647,1648,1649,1650,1651,1652,1653,1654,1655,1658,1660,1661,1662,1663,1664,1665,1668,1672,1673,1674,1675,1676,1677,1679,1680,1681,1682,1686,1688,1690,1693,1696,1699,1700,1701,1702,1703,1704,1705,1706,1707,1710,1711,1687,1713,1715,1718,1719,1720,1723,1724,1726,1727,1728,1729,1730,1731,1733,1734,1735,1736,1737,1738,1741,1742,1745,1748,467,1750,1751,1754,1756,1757,1758,1759,1763,1764,1766,1767,1768,1770,1774,1777,1779,1782,1784,1785,1786,1787,1788,1789,1791,1792,1793,1794,1795,1796,1797,1798,1801,1804,1806,1809,1812,1816,1817,1819,1820,1821,1822,1824,1825,1827,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1842,1843,1845,1847,1850,1853,1854,1855,1856,1859,1860,1863,1865,1866,668,1869,1874,1875,1177,1879,1881,1883,1886,1889,1891,1893,1895,1898,1900,1903,1905,1907,1909,1912,1915,1916,1920,1922,1924,1926,1930,1933,1935,1937,1938,1939,1942,1945,1947,1948,1951,1953,1954,1955,1958,1959,1961,1964,1966,1969,1970,1972,1976,1978,1982,1985,1988,1992,1994,1996,1998,1999,2000,2003,2004,2007,984,2008,2010,2011,2012,2015,2017,2018,2019,2020,2021,2022,2024,2025,2026,2028,2031,2033,2037,2039,2040,2042,2045,2046,2048,2051,2053,2054,2057,2058,2059,2060,2061,2064,2067,2069,2071,2073,2075,2077,2078,2079,2080,2081,2082,2083,2084,2086,2087,2088,2089,2092,2095,2096,2098,2099,2102,2105,2107,2108,2109,2111,2113,2114,2116,2117,2119,2122,2123,2126,2128,2129,2130,2131,2132,2133,2134,2135,2137,2139,2141,2144,2145,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2159,2160,2161,2162,2163,2164,2165,2167,2170,2172,2175,2176,2177,2178,2179,2182,2185,2188,2191,2192,2193,2194,2195,2197,2070,2200,2202,2203,2205,2206,2207,2209,2211,2212,2213,2214,2215,2216,2217,2220,2222,2225,2226,2227,2228,2231,2234,2236,2239,2240,2243,2247,2250,2253,2256,2258,2260,2263,2266,2268,2271,2273,2274,2277,2279,2281,2283,2285,2290,2291,2293,2296,2298,2300,2302,2305,2307,2308,2311,2314,2316,2318,2320,2321,2322,2323,2327,2330,2332,2334,2336,2338,2341,2344,2346,2348,2351,2352,2354,2357,2359,2361,2363,2366,2367,2368,2371,2372,2373,2375,2377,2379,2381,2383,2384,2387,2390,2393,2396,2398,2400,2401,2404,2405,2406,2409,2411,2413,2416,2419,2421,2423,2425,2427,2430,2433,2435,2436,2438,2441,2444,2447,2449,2450,2453,2455,2459,2461,2463,2464,2467,2469,2472,2476,2479,2482,2486,2489,2490,2493,2494,2496,2498,2500,2503,2504,2506,2507,2508,2510,2512,2515,2517,2519,2520,2521,2524,2526,2529,2530,2533,2536,2539,2541,2543,2544,2547,2549,2550,2552,2553,2554,2555,2036,2556,2559,2562,2563,2564,2567,2569,2570,2571,2572,2575,2577,2579,2581,2583,2584,2586,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2600,2601,2602,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2616,2620,2623,2626,2628,2629,2633,2635,2637,2639,2641,2644,2646,2650,2651,2652,2654,27,2657,2659,2661,2664,2665,2668,2670,2671,2674,2675,2676,2677,2678,2679,2681,2683,2685,2686,2687,2689,2692,2267,2694,2695,2696,2697,2700,2702,2704,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2718,2719,2720,2722,2723,2726,1161,2727,2728,2730,2731,2732,2733,2735,2738,2739,2740,2741,2742,2743,2744,2745,2747,2750,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2437,2763,2764,2765,2766,2768,1192,2771,2774,2777,2780,2782,2784,2787,2792,2794,2796,2797,2798,2802,2805,2806,2807,2808,2810,2811,2812,2813,2814,2816,2817,2820,2821,2822,2823,2824,2292,1776,2826,2829,2832,2834,2835,2272,2839,2841,2843,2845,2848,2851,2854,2856,2858,2859,2860,2861,2863,2864,2865,2866,2867,2870,2297,2871,2876,2878,2881,2886,2889,2891,2895,2897,2898,2900,2904,2906,2908,2910,2912,2915,2918,2921,2923,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2941,2943,2945,2946,2948,2949,620,2950,2954,2957,2960,2961,2962,2963,2964,2967,2968,695,2969,2970,2972,2973,2975,2976,2979,2981,2982,2983,2984,2986,2990,2991,2992,2993,2996,2997,3000,3003,3006,3008,3010,3012,3014,3019,1209,3021,3023,3025,3028,3029,3032,3034,3037,3039,3041,3044,3047,3049,3051,3052,3054,3057,3060,3062,3064,3066,3067,3070,3072,3073,3074,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3095,3096,3097,3098,3099,3102,3103,1783,3105,3107,3112,3114,3116,3117,3120,3123,3124,3125,3127,3129,3130,3132,3133,3134,3135,3136,3137,3140,3141,3142,3143,3144,3145,3148,3150,3152,3153,3156,3157,1698,3159,3160,3161,3162,3164,3165,3167,3170,3171,3173,3174,3177,3178,3181,3183,3185,3186,3187,3188,3189,3190,3191,2899,3198,3200,3202,3203,3206,3210,3211,3213,3215,3216,3219,3220,3222,3223,3226,3229,3230,3232,3233,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3249,3253,3256,3257,3258,3259,3260,3261,1952,3262,3263,2378,3264,3266,3268,3270,3271,3273,3274,3275,3276,3277,3278,3282,3283,3284,3285,3287,3288,3289,3290,3291,3292,3294,3295,3296,3297,3299,3300,3303,3305,3308,3309,3310,3313,3316,3318,640,3322,3324,3327,3330,3332,3334,3337,3339,3341,3342,3345,3347,3349,3350,3353,3355,3357,3359,3361,3363,2276,3365,3366,3367,3368,3369,3371,3373,3376,3377,3378,3379,3381,3386,3390,3393,3397,3400,3401,3404,3406,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3427,3429,3431,3433,3434,3435,3438,3439,3440,3441,3442,3443,3444,3445,3446,3451,3453,3455,3456,3458,3459,3460,3463,3466,3467,3468,3469,888,3470,3471,3472,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3488,3490,3492,1644,3493,3494,3495,3498,3499,3500,3501,1433,3403,3502,3505,3507,3509,3510,3511,3512,3513,3518,3519,3520,3521,3524,3525,3526,3527,3530,3531,3532,3533,3534,3535,3536,3537,3539,3540,3541,2072,3544,3545,3547,3548,3549,3551,3552,3553,3554,3555,3558,3559,3560,3561,3564,3566,3570,3572,3575,3577,3579,3584,3587,3591,3598,3600,3603,3605,3606,3611,3613,3616,3618,3622,3625,3628,3633,3635,3636,3638,3640,3643,3647,3649,3652,3653,3657,3660,3662,3664,3668,3672,3674,3676,3678,3681,3683,3686,3688,3691,3692,3693,3696,3697,3698,3699,1894,3703,3706,3708,3710,3711,3714,3716,3717,3718,3720,3722,3724,3725,3726,3727,3729,3730,3732,1862,3734,3736,3739,3741,3742,3744,3746,3747,3750,2658,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3765,3767,3768,3770,3771,2907,3773,3774,3775,3776,3777,3779,3780,3781,3783,3784,3786,1997,3787,3788,3789,3790,89,3793,3799,3802,3803,3804,3807,3810,3813,3816,3817,3820,3822,3824,3826,3829,3830,3833,3836,3837,3839,3843,3846,3847,3849,3850,3853,3856,3857,3861,3864,3867,3869,3872,3876,3878,3882,3884,3885,3887,3889,3891,3893,3895,3897,3899,3904,3906,3909,3911,3913,3914,3916,3917,3919,3921,3923,3925,3927,3928,3930,3931,3932,3935,3938,1552,3939,3941,3875,3943,3945,3946,3948,3950,3951,3954,3957,3958,3963,3968,3970,3971,3973,3975,3978,3980,3981,3984,3985,3988,3989,3991,3992,3995,3998,3999,4001,4002,4005,705,4008,4010,4012,4015,4018,4019,4022,4023,814,4025,4028,4029,4031,4033,4035,4036,1153,4037,4038,4039,4041,4042,4045,4048,4052,4055,4057,4058,4060,4064,4066,4067,4069,4071,4073,4075,4076,4077,4079,4081,4083,4084,4085,4086,4089,4092,4093,4094,4098,4100,4103,4104,4105,4106,4108,4110,2278,4111,4112,4113,4116,4119,4121,4124,4125,4126,4127,4130,4131,4134,1899,4135,710,4136,4137,4140,4143,4145,4146,4148,4150,4151,4153,4156,4159,4160,4163,4164,4165,4167,4168,4169,4170,4171,4172,4173,4174,4177,4181,4183,4187,4188,4189,4192,4193,4196,4199,4200,4201,4204,4205,4206,4207,4208,4209,4212,3974,4213,4214,4215,4216,4217,4218,4220,4224,4227,4228,4230,4232,4233,4234,4235,4236,4237,4238,4239,4242,4243,4245,4246,4247,4248,4249,4252,4255,4257,4258,4261,4264,4266,4267,4270,4272,4275,4277,4278,4280,4282,4283,1871,4288,4290,4292,4294,4296,4300,4302,4303,4305,4307,4309,4311,4315,4317,4319,4320,4323,4326,4328,4330,4333,4334,4335,4337,4338,4339,4341,4342,4343,4345,4347,4351,4352,3709,4355,4359,4360,4361,4362,4363,4365,4367,4369,4370,4371,4372,4373,4375,4376,4377,4380,4382,4383,4384,4387,4388,4389,4390,4391,4393,4394,4397,4398,4399,1241,4400,4401,4404,4072,4409,4411,1187,4413,4415,4419,4421,4423,4425,4426,4427,4430,4431,4433,4434,4435,4436,4437,4438,4441,4443,4445,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,100,4459,4461,4462,4463,4464,4465,4468,4469,4470,4473,4474,4475,4477,4478,4480,4481,4482,4483,4484,4487,4490,4492,4493,4494,4495,4496,4497,4498,4499,4500,4505,4507,1000,4508,4510,4512,4514,4515,4517,4520,4521,91,4523,4526,4531,4532,4533,4535,4537,4538,4539,4540,4541,4542,4543,4545,4547,4548,4549,4554,4555,4558,4559,4560,4562,4563,1002,4566,4027,4567,4568,4569,4572,4576,4577,614,4578,3348,4579,4582,4585,4588,1155,4589,4590,4591,4592,4593,4594,4595,4596,4597,4599,4600,4603,4606,4608,1983,4612,4614,1984,4615,4616,4617,4618,4621,4624,188,4629,4630,4632,4633,4634,4638,4639,4640,4645,4646,4647,4648,4649,2282,4650,4651,4652,4653,4656,4659,4662,4664,4667,4669,2924,4676,4677,4679,4681,4684,4686,4689,4693,4695,4696,4699,4702,4703,4704,4705,4706,4707,4708,4709,4711,4715,4716,4717,4720,4723,4724,4726,4727,4728,4729,4730,4731,3354,4733,4734,4735,4736,4737,4738,1906,4739,4740,4741,4742,1695,4744,4745,4746,4747,4748,4749,4751,4752,4753,4754,4756,4757,4758,4759,4760,4761,4762,4763,4767,4768,4769,4770,4771,4772,4774,4775,4776,4777,4782,4783,4786,4788,4791,639,11976,662,3405,5010,6781,23276,6974,15279,15484,17429,15887,26713,18240,11804,24566,475,24782,25169,25219,25266,25307,25432,25443,25395,25490,25766,25775,25798,25809,25833,25882,25931,29350,29385,29389,29407,29414,29394,29435,29448,29460,20562,29477,31705,29524,29537,29546,29560,33408,29564,29610,31821,29626,3286,30757,29683,29729,29754,5065,29805,9011,29821,24737,29850,29889,29942,29955,28519,29993,9355,8199,680,19571,27921,29998,30145,30165,26706,30182,30196,30218,9041,30233,30252,30257,30281,30312,906,30405,30458,30463,30469,30477,30488,30607,30612,30624,30731,907,8119,30798,30829,940,26636,20202,29755,14673,9274,9293,9273,30926,30957,30972,33145,24723,30979,14684,31064,11518,31086,12016,15951,31198,31231,31244,31262,31272,31282,31289,31290,31332,31347,31314,31353,31375,21287,21288,31343,31386,31421,31430,31465,31473,31485,31501,31509,31521,14904,31180,31528,14959,18699,18717,14336,31544,26854,34576,34578,31644,33204,11421,23288,31677,31713,11890,16858,31728,31749,31760,31782,31793,31805,31816,31822,31827,31835,17964,21594,31838,8160,31930,29013,33653,31961,17988,12421,23352,23250,23292,31752,23253,32029,16837,32144,32166,24114,32182,13896,31182,32201,31734,32238,26180,32265,27263,32294,32311,16870,32319,17167,16842,11071,32347,32397,32415,32443,32456,21174,32468,32493,32499,32506,32531,32225,32546,32564,32577,12042,32634,32747,32760,32766,32778,11501,32790,19469,9252,31184,31186,9731,32816,999,32884,32892,9272,32914,32926,32934,32939,32940,32962,5517,1083,34683,33053,8392,10572,11960,24509,30299,1300,30527,34676,1302,30535,26450,26482,26483,26489,26495,32977,8703,1418,26414,1419,28763,2115,7606,1441,13412,26273,28880,28909,1442,28458,28479,28493,1445,32733,1466,1475,29032,26257,1476,28595,28885,1491,1502,28323,1510,5290,26241,1526,29197,28873,4090,1530,9378,26158,3845,8654,1531,1761,26082,1535,26699,29865,1555,2245,8605,28450,28899,28901,1558,5993,28354,29834,1607,1667,23535,1670,1790,26644,7585,20304,28327,28400,26421,1678,2221,10973,1689,28865,8550,22378,8540,1691,26032,29417,1692,26591,29304,1694,28069,31474,31486,31507,31524,1802,28906,1813,29853,1814,8604,1841,27959,1857,28466,1918,32834,32863,32890,30286,31680,31400,1979,31833,33277,13387,1980,21374,2001,2035,5666,5564,2049,17110,5287,2362,32818,25810,2050,2065,25762,29012,29031,2066,25802,34043,28092,29161,2094,34032,28872,2097,34161,33479,2106,2140,2142,36878,36879,2186,28117,2219,29019,6372,2238,7995,9107,12097,13676,17199,26746,33929,18012,20093,34468,20362,21610,23755,23769,24602,19617], +"@alifd/next", +"@angular-devkit/core", +[3,4,16], +"schematics", +[2,5,6], +[3,4,8], +"/animations", +[2,8,9], +[3,10,9], +"cdk", +[2,11,12], +[3,13,10], +"ommon", +[2,14,15], +[3,16,12], +"piler", +[2,17,18], +"-cli", +[2,19,20], +[3,16,11], +"re", +[2,22,23], +"forms", +[2,11,25], +"http", +[2,11,27], +"material", +[2,11,29], +"platform-browser", +[2,11,31], +"-dynamic", +[2,32,33], +[3,32,18], +"server", +[2,35,36], +"router", +[2,11,38], +"@ant-design/react-native", +[3,40,12], +"web3-common", +[2,41,42], +[3,43,17], +"icons", +[2,44,45], +"@auth/sveltekit", +"@babel/cli", +[3,48,8], +"ode-frame", +[2,49,50], +[3,51,9], +[2,52,23], +[3,48,7], +"helper-plugin-utils", +[2,54,55], +"parser", +[2,54,57], +[3,58,8], +"lugin-proposal-class-properties", +[2,59,60], +"@11ty/eleventy", +"@adobe/css-tools", +"@api-components/api-method-documentation", +"@apollo/client", +"@asyncapi/generator-react-sdk", +"eslint-parser", +[2,54,67], +[3,61,23], +"decorators", +[2,69,70], +"export-default-from", +[2,69,72], +[3,73,30], +"namespace-from", +[2,74,75], +"object-rest-spread", +[2,69,77], +[3,61,14], +"syntax-dynamic-import", +[2,79,80], +"transform-runtime", +[2,79,82], +"olyfill", +[2,59,84], +"reset-env", +[2,59,86], +[3,87,14], +"react", +[2,88,89], +"typescript", +[2,88,91], +"register", +[2,54,93], +[3,94,8], +"untime", +[2,95,96], +"-corejs2", +[2,97,98], +"traverse", +[2,54,100], +[3,101,8], +"ypes", +[2,102,103], +"@biz-dev-ops/md-docs", +"@bwcr_/winston-loki", +"@changesets/cli", +"@cha", +"tscope/chat-ui-kit-react", +[2,108,109], +"@ckeditor/ckeditor5-adapter-ckfinder", +[3,111,21], +"ngular", +[2,112,113], +"utoformat", +[2,112,115], +[3,111,20], +"basic-styles", +[2,117,118], +[3,119,21], +"lock-quote", +[2,120,121], +"uild-balloon", +[2,120,123], +"-block", +[2,124,125], +[3,124,26], +"classic", +[2,127,128], +"deco", +"upled-document", +[2,130,131], +[2,127,132], +"inline", +[2,127,134], +"ckbox", +[2,117,136], +[3,137,22], +"finder", +[2,138,139], +[3,137,21], +"lipboard", +[2,141,142], +[3,143,22], +"oud-services", +[2,144,145], +"ore", +[2,141,147], +"easy-image", +[2,117,149], +[3,150,21], +"ngine", +[2,151,152], +"ssentials", +[2,151,154], +"heading", +[2,117,156], +"image", +[2,117,158], +[3,159,21], +"ndent", +[2,160,161], +"link", +[2,117,163], +[3,164,22], +"st", +[2,165,166], +"media-embed", +[2,117,168], +"paragraph", +[2,117,170], +[3,171,22], +"ste-from-office", +[2,172,173], +[2,117,89], +"table", +[2,117,176], +[3,177,21], +"yping", +[2,178,179], +"ui", +[2,117,181], +[3,182,21], +"pload", +[2,183,184], +"tils", +[2,183,186], +"vue", +[2,117,188], +"widget", +[2,117,190], +"@commitlint/cli", +"@com", +"podoc/compodoc", +[2,193,194], +"unica/core", +[2,193,196], +"@contenthook/browser", +[3,198,13], +"cli", +[2,199,200], +"node", +[2,199,202], +"@coreui/coreui", +"@csstools/css-parser-algorithms", +[3,205,14], +"tokenizer", +[2,206,207], +[3,205,10], +"media-", +"query-list-parser", +[2,210,211], +[2,209,212], +"postcss-is-pseudo-class", +[2,209,214], +[3,215,18], +"progressive-custom-properties", +[2,216,217], +"selector-specificity", +[2,209,219], +"@cucumber/cucumber", +"@deven-org/documentation-skeleton", +"@dev", +"tea2026/aspernatur-ea-non-porro", +[2,223,224], +[3,225,12], +"consectetur-ab-unde-quisquam", +[2,226,227], +[3,228,13], +"upiditate-dolorem-excepturi-impedit", +[2,229,230], +"distinctio-soluta-illo-eaque", +[2,226,232], +"eum-ullam-est-distinctio", +[2,226,234], +[3,235,13], +"xplicabo-alias-architecto-sed", +[2,236,237], +"improved-journey", +[2,226,239], +[3,240,13], +"nventore-facilis-corporis-cum", +[2,241,242], +"psa-omnis-in-molestiae", +[2,241,244], +"literate-computing-machine", +[2,226,246], +"maxime-sequi-est-rem", +[2,226,248], +"necessitatibus-dolorem-esse-atque", +[2,226,250], +"odit-enim-reiciendis-pariatur", +[2,226,252], +[3,253,17], +"maxime-", +"porro-asperiores", +[2,255,256], +[2,254,257], +"possimus-ipsa-sint-consequuntur", +[2,226,259], +"qui-quos-laborum-amet", +[2,226,261], +[3,262,15], +"a-ducimus-placeat-minima", +[2,263,264], +"dem-voluptate-repudiandae-necessitatibus", +[2,263,266], +"rerum-quaerat-porro-animi", +[2,226,268], +"ubiquitous-octo-memory", +[2,226,270], +"@diotoborg/adipisci-placeat-iure", +[3,272,12], +"met-architecto-est", +[2,273,274], +"t-totam-perspiciatis", +[2,273,276], +[3,272,11], +"commodi-voluptatum-libero", +[2,278,279], +"delectus-necessitatibus-voluptatum", +[2,278,281], +[3,282,13], +"serunt-illo-tempora", +[2,283,284], +[3,282,12], +"icta-recusandae-veniam", +[2,286,287], +"olor-earum-quia", +[2,286,289], +[3,290,17], +"tempora-fuga", +[2,291,292], +[3,290,16], +"es-praesentium-assumenda", +[2,294,295], +"eligendi-est-unde", +[2,278,297], +[3,298,12], +"sse-accusantium-ratione", +[2,299,300], +"illo-amet-architecto", +[2,278,302], +"laudantium-itaque-esse", +[2,278,304], +[3,305,12], +"ibero-asperiores-at", +[2,306,307], +"neque-inventore-corporis", +[2,278,309], +[3,310,12], +"ostrum-eveniet-officiis", +[2,311,312], +"odio-dolores-officia", +[2,278,314], +"porro-", +"modi-accusamus", +[2,316,317], +[2,278,318], +[3,319,12], +"sychic-bassoon", +[2,320,321], +"quasi-repellat-odit", +[2,278,323], +[3,324,13], +"i-ullam-ipsum", +[2,325,326], +"o-dolorem-ducimus", +[2,325,328], +"ratione-error-odio", +[2,278,330], +[3,331,12], +"epellat-blanditiis-quis", +[2,332,333], +[3,292,8], +"voluptas-distinctio", +[2,335,336], +[2,278,337], +"ullam-dignissimos-repudiandae", +[2,278,339], +"velit-reiciendis-velit", +[2,278,341], +[3,342,13], +"rbose-robot", +[2,343,344], +"@diplodoc/transform", +"@discordjs/rest", +"@dis", +"qada/workspace", +[2,348,349], +"@doc-tools/docs", +[3,351,11], +[3,82,9], +[2,352,353], +"@dramaorg/esse-praesentium-eligendi", +[3,355,10], +"quae-dolore-nostrum", +[2,356,357], +"@eas-framework/server", +"@eightshift/frontend-libs", +"@electron/docs-parser", +"@emotion/babel-plugin", +[3,362,9], +"core", +[2,363,364], +[3,365,10], +"ss", +[2,366,367], +"styled", +[2,363,369], +"@erboladaiorg/ad-exercitationem-ducimus", +[3,371,15], +"speriores-earum-quaerat", +[2,372,373], +[3,374,25], +"fuga-sint", +[2,375,376], +"nam-adipisci", +[2,375,378], +"utem-dolores-ipsam", +[2,372,380], +[3,371,14], +"cupiditate-consectetur-porro", +[2,382,383], +[3,384,25], +"pariatur-optio", +[2,385,386], +[3,232,11], +"quis", +[2,335,389], +[2,388,390], +[2,382,391], +"error-atque-ea", +[2,382,393], +[3,394,15], +"sse-", +"ipsa-numquam", +[2,396,397], +[2,395,398], +"x-hic-molestias", +[2,395,400], +[3,401,16], +"plicabo-eius-adipisci", +[2,402,403], +"molestiae-voluptatibus-perferendis", +[2,382,405], +[3,406,22], +"s-nulla-dolor", +[2,407,408], +"nisi-culpa-cum", +[2,382,410], +"officia-illum-aperiam", +[2,382,412], +"perspiciatis-magni-ut", +[2,382,414], +"quae-", +"in-veniam", +[2,416,417], +[2,382,418], +[3,419,18], +"rat-mollitia-adipisci", +[2,420,421], +[3,419,16], +"ibusdam-itaque-tempora", +[2,423,424], +"sint-deleniti-dolorem", +[2,382,426], +[3,427,16], +"t-nesciunt-amet", +[2,428,429], +"tenetur-architecto-dolore", +[2,382,431], +"ut-dignissimos-laborum", +[2,382,433], +"velit-", +"fugit-harum", +[2,435,436], +[2,382,437], +"@eslint-community/eslint-utils", +"@eslint", +"/js", +[2,440,441], +"@fakeyanss/redoc", +"@floating-ui/react-dom", +"@fontsource/inter", +[3,445,12], +"roboto", +[2,446,447], +"@fortawesome/fontawesome-svg-core", +[3,449,14], +"ree-solid-svg-icons", +[2,450,451], +[3,449,13], +"-fontawesome", +[2,89,454], +[2,453,455], +"@grandlinex/core", +[3,457,12], +"e-kernel", +[2,458,459], +"kernel", +[2,458,461], +"@gra", +"phql-markdown/core", +[2,463,464], +[3,465,18], +"docusaurus", +[2,466,467], +"@hajtech/webpack-config", +"@hapi/hapi", +"@hishprorg/aliquid-ad-vero", +[3,471,12], +"utem-", +"sint-", +"@adonisjs/core", +"sint-quas", +[2,473,476], +[2,472,477], +[3,471,11], +"cum-rem-consequuntur", +[2,479,480], +"earum-sint-veritatis", +[2,479,482], +[3,483,12], +"ius-vero-dicta", +[2,484,485], +"st-dicta-quis", +[2,484,487], +"incidunt-quibusdam-tempore", +[2,479,489], +[3,490,12], +"taque-esse-accusamus", +[2,491,492], +"ure-optio-nihil", +[2,491,494], +"magni-amet-id", +[2,479,496], +[3,497,17], +"nisi-", +"aperiam", +[2,499,500], +[2,498,501], +[3,497,13], +"xime-voluptates-enim", +[2,503,504], +"nihil-ad-ratione", +[2,479,506], +[3,414,13], +[3,330,8], +"unde", +[2,509,510], +[2,508,511], +[2,479,512], +"-perferendis-culpa", +[2,389,514], +[2,479,515], +"reprehenderit-excepturi-sed", +[2,479,517], +"nam-", +"conse", +"quuntur", +[2,520,521], +[2,519,522], +[2,474,523], +[2,479,524], +[3,525,12], +"unt-officia-eligendi", +[2,526,527], +[3,528,16], +"volupta", +"tem-nobis", +[2,530,531], +[2,529,532], +"-vitae-reprehenderit", +[2,510,534], +[2,479,535], +"wafflejs", +[2,479,537], +"@homer0/prettier-plugin-jsdoc", +"@hookform/resolvers", +"@iamtraction/google-translate", +"@idux/cdk", +"@idux/c", +"omponents", +[2,543,544], +"@inquirer/core", +"@ionic/core", +"@isaacs/cliui", +"@istanbuljs/nyc-config-typescript", +"@itwin/itwinui-react", +"@jest/core", +"@jest/", +"types", +[2,552,553], +"@jsonforms/core", +[3,555,11], +"-renderers", +[2,29,557], +[2,556,558], +[2,556,89], +"@juigorg/nisi-molestiae-ut", +[3,561,9], +"sit-nam-neque", +[2,562,563], +"@jupyterlab/application", +"@kobedevi/sassdoc", +"@kollorg/dicta-itaque-nemo", +[3,567,9], +"nihil-", +"veniam-deserunt", +[2,569,570], +[2,568,571], +"@libphamton/chatfanpage", +[3,573,12], +"fb-group", +[2,574,575], +"@listr2/prompt-adapter-inquirer", +"@mantine/core", +[3,578,9], +"dates", +[2,579,580], +"hooks", +[2,579,582], +"modals", +[2,579,584], +"notifications", +[2,579,586], +"prism", +[2,579,588], +"style", +"s", +"styles", +[2,579,592], +"utils", +[2,579,594], +"@material-ui/core", +[3,596,13], +[2,597,45], +"@mat", +"hematikoi/jsonapi", +[2,599,600], +"@mdx-js/react", +"@microsoft/api-extractor", +[3,603,11], +"tsdoc", +[2,604,605], +"-config", +[2,606,607], +"@middy/core", +"@middy/", +"-json-body-parser", +[2,27,611], +[2,610,612], +"util", +[2,610,614], +"@ministryofjustice/frontend", +"@mswjs/interceptors", +"@mui/icons-material", +"@mui/", +"lab", +"@mui/lab", +[2,619,29], +"system", +[2,619,623], +"x-date-pickers", +[2,619,625], +"@neato/guider", +"@ng-doc/core", +[3,628,8], +"ui-kit", +[2,629,630], +[3,631,9], +[2,632,186], +"@nomicfoundation/hardhat-chai-matchers", +"@npmcli/arborist", +[3,635,8], +"map-workspaces", +[2,636,637], +"@augment-vir/common", +"node-gyp", +[2,636,640], +"run-script", +[2,636,642], +"@npmc", +"orp/marky-markdown", +[2,644,645], +"@npm", +"tuanmap/ex-vel-expedita-impedit", +[2,647,648], +[3,649,12], +"psychic-guide", +[2,650,651], +"recusandae-recusandae-nam-et", +[2,650,653], +"sed-quo-nemo-rerum", +[2,650,655], +"esse-velit-magnam", +[2,435,657], +[2,650,658], +"@nrwl/devkit", +"@nrwl/", +[2,3388,3399], +"@nrwl/tao", +"workspace", +[2,661,664], +"@nx/devkit", +"@nx/", +"esbuild", +[2,667,668], +"@nx/es", +"lint", +[2,670,671], +"@nx/e", +"xpress", +[2,673,674], +"js", +"@nx/js", +"nest", +"@nx/nest", +"nextra", +"ode", +"@nx/node", +[2,667,664], +"@oclif/command", +[3,684,9], +"nfig", +[2,685,686], +[2,685,23], +"@oclif/", +"plugin-help", +[2,689,690], +"@octokit/rest", +"@opentiny/vue", +"-render", +"less", +[2,694,695], +[2,693,696], +[3,697,14], +"theme", +[2,698,699], +"-mobile", +[2,700,701], +"@otterhttp/cookie", +[3,703,11], +"request", +[2,704,705], +[3,706,13], +"sponse", +[2,707,708], +"send", +[2,704,710], +"@pact-foundation/pact", +"@patrtorg/a-ad-expedita", +[3,713,12], +"ut-amet", +[2,714,715], +[3,713,11], +[3,373,10], +"vel-accusantium", +[2,718,719], +[2,717,720], +[3,721,15], +"natur-dolorum-ducimus", +[2,722,723], +"et-hic", +[2,473,725], +[2,717,726], +[3,713,10], +[3,227,12], +"culpa-non", +[2,729,730], +[2,728,731], +[3,732,22], +"repudiandae-consequuntur", +[2,733,734], +[3,732,15], +"quatur-voluptatum-officiis", +[2,736,737], +"ducimus-magni-quibusdam", +[2,728,739], +"enim-magni-hic", +[2,728,741], +[3,742,11], +"st-corrupti-deleniti", +[2,743,744], +"veni", +"et-tempore-maiores", +[2,746,747], +[2,743,748], +"illum-sapiente-quos", +[2,728,750], +"laborum-doloribus-voluptate", +[2,728,752], +[3,753,11], +"ibero-", +"doloribus-omnis", +[2,755,756], +[2,754,757], +[3,758,17], +[3,336,9], +"sequi", +[2,760,761], +[2,759,762], +"magn", +"am-aut-adipisci", +[2,764,765], +[2,728,766], +[3,767,12], +"iores-quidem-quo", +[2,768,769], +[3,767,11], +"olestias-molestias-ut", +[2,771,772], +"eius-unde", +[2,519,774], +[2,728,775], +[3,386,9], +"dele", +"niti-quaerat", +[2,778,779], +[2,777,780], +[2,728,781], +[3,782,11], +"orro-labore-eos", +[2,783,784], +"earum-", +"eius", +[2,786,787], +[2,416,788], +[2,728,789], +[3,790,12], +"os-quasi-ipsa", +[2,791,792], +"sapiente-eos-magnam", +[2,728,794], +[3,795,20], +"xercitationem-sit", +[2,796,797], +[3,431,9], +"nimi-reprehenderit", +[2,799,800], +[2,728,801], +"@perseid/store", +"@phosphor/widgets", +"@phun-ky/speccer", +"@polymer/polymer", +"@qooxdoo/framework", +"@quasar/extras", +"@readyplayerme/visage", +"@reduxjs/toolkit", +"@rollup/plugin-commonjs", +[3,811,15], +"node-", +"resolve", +[2,813,814], +[2,812,815], +"@sanity/tsdoc", +"@scalar/api-reference", +[3,818,8], +"fastify-api-reference", +[2,819,820], +"@serenity-js/protractor", +[3,822,13], +"webdriverio", +[2,823,824], +"@sinonjs/fake-timers", +"@storybook/addon-docs", +"@subwallet/react-ui", +"@supernovaio/sdk", +"-exporters", +[2,829,830], +[3,829,14], +"upernova-sdk", +[2,832,833], +"@sveltejs/eslint-config", +[3,835,10], +"kit", +[2,836,837], +"vite-plugin-svelte", +[2,836,839], +"@svgr/webpack", +"@swc/core", +"@swenkerorg/maiores-voluptatibus-nemo", +[3,843,13], +"odi-dolorum-provident", +[2,844,845], +[3,843,12], +"nulla-voluptates-voluptates", +[2,847,848], +"@swisspost/design-system-styles", +"@symbiotejs/symbiote", +"@synion/md-docs", +"@taktikorg/aut-distinctio-repellat", +[3,853,11], +"quo-quos", +[2,729,855], +[2,854,856], +[3,857,13], +"rporis-nihil-odit", +[2,858,859], +[3,780,11], +"i-dolorem", +[2,861,862], +[2,854,863], +[3,864,12], +"olor-", +"quibusdam", +[2,509,867], +[2,866,868], +[2,865,869], +"harum-reprehenderit-perferendis", +[2,854,871], +"illum-", +"accusamus-possimus", +[2,873,874], +[2,854,875], +[3,876,12], +"psa-", +"totam-aperiam", +[2,878,879], +[2,877,880], +"ste-", +"ex-tempore", +[2,882,883], +[2,877,884], +"taque-", +"nam-e", +"os", +"nam-eos", +[2,886,889], +[2,877,890], +[3,891,18], +"tempor", +"e-exercitationem", +[2,893,894], +[2,892,895], +"maiores-dolores-aut", +[2,854,897], +[3,898,12], +[3,772,9], +"fuga-", +[3,259,8], +[2,901,902], +[2,900,903], +[2,899,904], +"@bugsnag/react-native", +"@enact/sandstone", +"sse-animi", +[2,887,908], +[2,854,909], +[3,910,12], +"ecessitatibus-repudiandae-officia", +[2,911,912], +"isi-reprehenderit-amet", +[2,911,914], +"placeat-voluptates-dolorum", +[2,854,916], +[3,917,12], +"raesentium-dolorum-quis", +[2,918,919], +[3,920,23], +"neque-i", +"psam", +[2,922,923], +[2,921,924], +"quo-", +"reiciendis-quibusdam", +[2,926,927], +[2,854,928], +[3,653,12], +"atione-veniam", +[2,930,931], +[2,854,932], +"similique-natus-officia", +[2,854,934], +[3,935,12], +"uscipit-modi-ratione", +[2,936,937], +[3,895,8], +"@antora/logger", +"in", +"veniam-in", +[2,939,942], +[2,854,943], +"unde-", +"animi-omnis", +[2,945,946], +[2,854,947], +"nobis-blanditiis", +[2,435,949], +[2,854,950], +[3,951,12], +"oluptatem-pariatur-tenetur", +[2,952,953], +"@tanem/svg-injector", +"@tan", +"stack/react-query", +[2,956,957], +[3,958,10], +"svelte-query", +[2,959,960], +"@teamhanko/hanko-frontend-sdk", +"@testing-library/cypress", +[3,963,17], +"dom", +[2,964,965], +"jest-dom", +[2,964,967], +[3,968,22], +"native", +[2,969,970], +[2,964,89], +"user-event", +[2,964,973], +"@tinyhttp/app", +[3,975,10], +"cookie", +[2,976,977], +"-signature", +[2,978,979], +[3,978,12], +"rs", +[2,981,982], +"etag", +[2,976,984], +"forwarded", +[2,976,986], +"proxy-addr", +[2,976,988], +"req", +[2,976,990], +[3,991,12], +[2,992,591], +[3,991,11], +"outer", +[2,994,995], +[2,976,710], +"type", +[2,29611,30768], +"type-is", +[2,976,1000], +"url", +[2,976,1002], +"@tsparticles/engine", +"@twurple/ebs-helper", +"@types/estree", +"@types", +"cript-eslint/eslint-plugin", +[2,1007,1008], +[3,1009,19], +[2,1010,57], +[2,1010,594], +"@ucloud-fe/react-components", +"@udecode/plate-core", +"@uiw/react-button", +[3,1015,11], +"icon", +[2,1016,1017], +[3,1018,12], +"nput", +[2,1019,1020], +"overlay-trigger", +[2,1016,1022], +"@uiw/", +"@uiw/utils", +"@unleash/proxy", +"@uploadcare/file-uploader", +"@vitejs/plugin-legacy", +[3,1028,15], +[2,1029,89], +"@vue/eslint-config-typescript", +"@wesleytodd/openapi", +"@wuxh/dumi", +"@zitterorg/adipisci-quae-eius", +[3,1034,12], +"sper", +"natur-", +[3,386,10], +"ccaecati", +[2,1038,1039], +[2,1037,1040], +[2,1036,1041], +[2,1035,1042], +"t-esse-odit", +[2,1035,1044], +[3,1034,11], +"cum-", +"ipsum-beatae", +[2,1047,1048], +[2,1046,1049], +"dolor", +"emque-ut-omnis", +[2,1051,1052], +[2,1046,1053], +"est-sunt-quos", +[2,1046,1055], +[3,1056,12], +"um-veritatis-placeat", +[2,1057,1058], +"fluffy-waddle", +[2,1046,1060], +"glowing-barnacle", +[2,1046,1062], +"perferendis-consectetur", +[2,873,1064], +[2,1046,1065], +[3,1066,12], +"taque-n", +"isi-", +"veritatis", +[2,1069,1070], +[2,1068,1071], +[2,1067,1072], +"probable-octo", +[2,1046,1074], +"upgraded-fishstick", +[2,1046,1076], +"@zkportal/aleo-oracle-sdk", +"abort-controller", +"accepts", +"acl", +"acorn", +"arethetypeswrong", +"acorn-walk", +"action-cli", +"adm-zip", +"after", +"agenda", +"aid-guard1", +"airtap", +"ajv", +"ajv-formats", +"although-line-wall-corn", +"amqp", +"lib", +"amqplib", +"analsorhost-simple-bs", +"angular", +"-animate", +[2,1098,1099], +"angular-", +[2,1101,200], +[2,1101,29], +"ansi-colors", +"ansi-", +"escapes", +[2,1105,1106], +"regex", +"ansi-regex", +[2,1105,592], +"ansi", +"ansis", +"ant-design-vue", +"antd", +"antfu", +"anyway-south-boy-pilot", +"api-console", +"apidoc", +"-markdown", +[2,1118,1119], +"apn", +"apollo-cache-inmemory", +"apollo-c", +"lient", +[2,1123,1124], +"apollo-", +[2,1126,163], +"-http", +[2,1127,1128], +"app-root-path", +"appium-android-driver", +"apple-transportation-web3-locate", +"appl", +"icationinsights", +[2,1133,1134], +"appsync-client-node", +"archiver", +"arg", +"argparse", +"arrangement-tell-arrange", +"arra", +"y.prototype.flatmap", +[2,1141,1142], +"arrify", +"assert", +"-plus", +"assert-plus", +"assume", +"async", +"-listen", +[2,1149,1150], +"async-", +"retry", +"async-retry", +"validator", +[2,1152,1155], +"atob", +"aud", +"auto-changelog", +"auto-", +"install", +[2,1160,1161], +"auto", +"prefixer", +[2,1163,1164], +"ava", +"awesome-typescript-loader", +"aws-sdk", +"axe-core", +"axios", +"azure-storage", +"babel", +"babel-cli", +"babel-c", +"babel-core", +"babel-", +"eslint", +[2,1176,1177], +"generator", +[2,1176,1179], +[3,55,7], +"fixtures", +[2,1181,1182], +[2,1176,1183], +[3,1184,13], +"plugin-", +"test-runner", +[2,1186,1187], +[2,1185,1188], +"vue-jsx-merge-props", +[2,1185,1190], +"jest", +"babel-jest", +"loader", +[2,1176,1194], +"add-module-exports", +[2,1186,1196], +[2,1176,1197], +[3,1198,13], +"dynamic-import-node", +[2,1199,1200], +"external-helpers", +[2,1199,1202], +"import", +[2,1199,1204], +[3,1205,14], +"stanbul", +[2,1206,1207], +"lodash", +[2,1199,1209], +"module-resolver", +[2,1199,1211], +"name", +"d-asset-import", +[2,1213,1214], +[2,1199,1215], +[2,1199,80], +[3,1217,20], +"jsx", +[2,1218,1219], +[3,82,10], +"to-generator", +[2,1152,1222], +[2,1221,1223], +[2,1199,1224], +[3,1225,23], +"class", +"-properties", +[2,1227,1228], +[2,1226,1229], +"-legacy", +[2,70,1231], +[2,1226,1232], +"es2015-block-scoping", +[2,1226,1234], +[3,1235,30], +"module", +"s-commonjs", +[2,1237,1238], +[2,1236,1239], +"temp", +"late-literals", +[2,1241,1242], +[2,1236,1243], +[2,1226,77], +"react-", +"react-jsx", +[2,1226,1247], +[3,1248,29], +"remove-prop-types", +[2,1249,1250], +[3,1248,25], +[2,1252,1179], +[3,1248,24], +[2,1254,96], +"babel-p", +[2,1256,84], +"reset-", +"airbnb", +[2,1258,1259], +[2,1256,1260], +[3,1261,13], +"env", +[2,1262,1263], +[3,1264,14], +"s2015", +[2,1265,1266], +[2,1262,89], +"-app", +[2,1268,1269], +"stage-0", +[2,1262,1271], +[3,1272,19], +"1", +[2,1273,1274], +"2", +[2,1273,1276], +"3", +[2,1273,1278], +[2,1176,93], +"babel-r", +[2,1281,96], +"template", +[2,1176,1283], +"babel-t", +"raverse", +[2,1285,1286], +[2,1285,103], +"ify", +"babelify", +"babylon", +"backbone", +"baqend", +"bark-needs-visit4", +"base-64", +"base-", +"individual-comfortable-crop", +[2,1296,1297], +"base", +"@expressots/core", +"base64-js", +[2,30536,26449,2026], +"auth", +"basic-auth", +"batuta", +"bcrypt", +"-nodejs", +[2,1306,1307], +"bcryptjs", +"bearcat", +"beautify-benchmark", +"beaut", +"y-foot-compass5", +[2,1312,1313], +"beefy", +"believed-usually-greater-passage", +"benchmark", +"best-lips-shoulder", +"best-", +"valley2", +[2,1319,1320], +"between-cry-additional", +"beyond", +"bfj", +"bignumber.js", +"bindings", +"bip39", +"bizcharts", +"bl", +"blanket", +"blessed", +"-con", +"trib", +"-contrib", +[2,1331,1334], +"blockchain-am5", +[3,1336,11], +"baby", +[2,1337,1338], +[3,1339,13], +"ck1", +[2,1340,1341], +"closely", +[2,1337,1343], +"directly", +[2,1337,1345], +"egg", +[2,1337,1347], +"happily", +[2,1337,1349], +"language", +[2,1337,1351], +"own8", +[2,1337,1353], +"record", +[2,1337,1355], +"scientist", +[2,1337,1357], +"block", +"ed", +"blocked", +"bluebird", +"bn.js", +"body-parser", +"bookshelf", +"boom", +"bootstrap", +"-sass", +[2,1367,1368], +"bower", +"boxen", +"brain", +"branch-body-web3-feel", +"branch-", +"camera-web3-organization", +[2,1374,1375], +"brfs", +"broccoli-funnel", +[3,1378,9], +"merge-trees", +[2,1379,1380], +"test-", +"helper", +"test-helper", +[2,1379,1384], +"brought-tried-whether8", +"browser-sync", +"browser", +"browserify", +"-shim", +[2,1389,1390], +"slist", +[2,1388,1392], +"bs58", +"bson", +"btoa", +"buble", +"buffer", +"-equal", +[2,1398,1399], +"bufferutil", +"built-who-entire", +"built", +"in-modules", +[2,1403,1404], +"bulma", +"bump-cli", +"bundle-collapser", +"bunyan", +"busboy", +"bytebuffer", +"byte", +"bytes", +"c8", +"cac", +"cache-manager", +"call-bind", +[2,32731,158], +[2,30999,28513], +"camelcase", +"caniuse", +"-lite", +[2,1421,1422], +"canvas", +"careful-faster-dirty-matter", +"case-sensitive-paths-webpack-plugin", +"casperjs", +"caught-brain-service0", +"chai", +"-as-promised", +[2,1429,1430], +"chai-", +"passport-strategy", +[2,1432,1433], +"subset", +"chai-subset", +"chalk", +"chance", +"-able-necessary-bell", +[2,1438,1439], +"@amaui/icons-material-rounded-react", +[2,26909,26910], +"change-case", +"change", +[2,27056,28675], +"changelogen", +"chart.js", +"cheerio", +"chicken-fell-spread", +"child_process", +"child", +"-pro", +"cess-promise", +[2,1452,1453], +[2,1451,1454], +"choerodon-ui", +"chokidar", +"ci-info", +"ckeditor5", +"names", +"classnames", +"clean-css", +"clean-", +"webpack-plugin", +[2,1463,1464], +[2,29755,25720], +"r", +"clear", +"-module", +[2,1468,1469], +"cli-boxes", +"cli-", +"color", +"cli-color", +"@immobiliarelabs/backstage-plugin-gitlab-backend", +[2,819,28594], +"cli-cursor", +"spinner", +"cli-spinner", +[2,1479,591], +"cli-table", +"cli-table2", +"cli-table3", +"cli-t", +"runcate", +[2,1484,1485], +"ux", +"cli-ux", +"clipanion", +"clip", +"@busy-hour/blaze", +"clipboard", +"y", +"clipboardy", +"cliui", +"clone", +"clsx", +"clui", +"co", +"co-prompt", +"code", +[2,1491,3172], +"codecov", +"mirror", +"codemirror", +"coffee-script", +"coffee", +"script", +[2,1507,1508], +"attw", +"colorette", +"colors", +"columnify", +"comm", +"and-exists", +[2,1514,1515], +"command-", +"line-args", +[2,1517,1518], +[3,1519,13], +"usage", +[2,1520,1521], +"command", +"er", +"commander", +"@casl/ability", +"commitizen", +"commit", +"commitlint", +"@types/xast", +"tsdown", +"common-tags", +"component-emitter", +"comp", +[2,15679,26697], +"compression", +"concat-stream", +"conc", +"urrently", +[2,1538,1539], +"config", +"store", +"configstore", +"connect", +"-flash", +[2,1544,1545], +"connect-", +"history-api-fallback", +[2,1547,1548], +"mongo", +[2,1547,1550], +"redis", +[2,1547,1552], +"cons", +"globrex", +"consola", +"consol", +[3,1014,14], +"consolidate", +"content-disposition", +"content-", +[2,1561,998], +"content", +"hook", +"contenthook", +"conventional-changelog", +[2,1566,20], +[3,1567,24], +"onventionalcommits", +[2,1568,1569], +"conve", +"rt-source-map", +[2,1571,1572], +"-parser", +[2,977,1574], +"cookie-", +"session", +[2,1576,1577], +"cookie-s", +"ignature", +[2,1579,1580], +"copy-to-clipboard", +"copy-", +[2,1583,1464], +"copy", +"files", +"copyfiles", +"corcojs-qrcode", +"-logo", +[2,1588,1589], +"cordova", +"-js", +"core-js", +"cors", +"cosmiconfig", +"coveralls", +"cpy-cli", +"crawler", +"crc", +"create-hash", +"create-", +"react-class", +[2,1601,1602], +"critical", +"cron", +"croner", +"emoji-js", +"cronnor", +"cropperjs", +"cross-env", +"cross-", +"fetch", +"cross-fetch", +"spawn", +"cross-spawn", +"crypto", +"-browserify", +[2,1616,1617], +"crypto-", +"crypto-js", +"cson-parser", +"cspell", +"css", +"css-declaration-sorter", +"css-", +"functions-list", +[2,1625,1626], +"css-loader", +"minimizer-webpack-plugin", +[2,1625,1629], +"select", +"css-select", +"tree", +"css-tree", +"cssdb", +"cssesc", +"cssnano", +"cssstyle", +"csstype", +"csurf", +"csv", +"csv-generate", +"csv-", +"parse", +"csv-parse", +"stringify", +[2,1643,1646], +"csvtojson", +"cucumber", +"cuid", +"cypress", +"cz-conventional-changelog", +"d3", +"d3-array", +"d3-scale", +"d3-s", +"election", +[2,1656,1657], +"hape", +"d3-shape", +"dable-effect", +"daisyui", +"dance-you-thou", +"dargs", +"datafire", +"date", +"mercurius", +"date-fns", +"form", +"unbundle", +"format", +"dateformat", +"dayjs", +"deasync", +"debounce", +"debug", +"decamelize", +"@pinia/testing", +"decompress", +"dedent", +"dedupe", +"deep-assign", +"deep-", +"ist-ability3", +[2,1554,1684], +[2,1683,1685], +"diff", +"deep-diff", +"remeda", +"deep-eql", +"@nuxt/ui", +"input-otp", +"deep-equal", +"@assistant-ui/react", +"xtend", +"deep-extend", +"deep", +"merge", +"deepmerge", +"del", +"del-cli", +"delay", +"depcheck", +"depd", +"dependency-check", +"depth-clay-tax7", +"detect-indent", +"detect-", +"port", +"detect-port", +"did-enter-lay", +"2html", +"diff2html", +"erence-mile-pocket5", +[2,1687,1714], +"direct", +"ed-graph-typed", +[2,1716,1717], +"dirty-chai", +"discord-backend-manager", +"discord", +".js", +"discord.js", +"dist", +"ance-its-clear-rate", +[2,1724,1725], +"dmd", +"dmd-grunt-jsdoc2md", +"dnd-multi-backend", +"dnode", +"doc-detective", +"-core", +[2,1731,1732], +"docco", +"docgen", +"dockerode", +"docpad", +"docschema", +"docs", +"ify-tabs", +[2,1739,1740], +"doctoc", +"docu", +"mentation", +[2,1743,1744], +"document", +"db", +"documentdb", +"-lunr-search", +[2,467,1749], +"dom-helpers", +"dom-", +"serializer", +[2,1752,1753], +"to-image-more", +[2,1752,1755], +"dompurify", +"dot", +"dotenv", +"-exp", +[2,26024,1764,1524], +"-expand", +[2,1759,1762], +"download", +"-git-repo", +[2,1764,1765], +"doxdox", +[2,1767,20], +"doxdox-c", +[2,1769,147], +"doxdox-", +"-dox", +[2,57,1772], +[2,1771,1773], +[3,1774,14], +"jsdoc", +[2,1775,1776], +"renderer-bootstrap", +[2,1771,1778], +[3,1779,16], +"json", +[2,1780,1781], +"markdown", +[2,1780,1783], +"draft-js", +"dropzone", +"dtslint", +"dubnium", +"dumi", +[2,31436,31494], +"dumi-cm", +"duplexer", +"dw-neit-antd", +"each", +"echarts", +"eclint", +"ejs", +"elasticsearch", +"elect", +"ricity-death-web3-story", +[2,1799,1800], +[2,28004,28078], +"on", +"electron", +"-builder", +[2,1804,1805], +[3,1806,9], +"packager", +[2,1807,1808], +[3,1809,10], +"rebuilt", +[2,1810,1811], +[3,32493,21], +[2,28080,31811], +"rebuilder", +[2,1807,1815], +"element-resize-detector", +"element-", +"element-ui", +"eleventy", +"elliptic", +"email-templates", +"email", +"emailjs", +"ember-cli", +"-babel", +[2,1825,1826], +[3,1827,10], +"htmlbars", +[2,1828,1829], +"emmet", +"emotion", +"encodeurl", +"end-of-stream", +"enhanced-resolve", +"enquirer", +"ent", +"enumtype", +"envify", +"envi", +"@lobehub/chat", +"envinfo", +"enzyme", +"-adapter-react-16", +[2,1843,1844], +[3,1845,15], +[2,1846,594], +"enzyme-", +"shallow-equal", +[2,1848,1849], +"error", +"handler", +[2,1851,1852], +"es-check", +"es-value-fixtures", +"es5-ext", +"@upstash/context7-mcp", +"shim", +"es5-shim", +"es6-error", +"es6-", +"promise", +"es6-promise", +[3,1863,10], +[2,1864,1289], +"es6-shim", +"escape", +"-html", +"escape-html", +"escape-", +"string", +"-regexp", +[2,1871,1872], +[2,1870,1873], +"escodegen", +[3,67,7], +"-airbnb", +[2,1541,1877], +[2,1876,1878], +"-base", +[2,1879,1880], +[3,1881,21], +[2,1882,91], +[3,1879,14], +"google", +[2,1884,1885], +[3,1886,15], +"ulp", +[2,1887,1888], +"oclif", +[2,1884,1890], +"-typescript", +[2,1891,1892], +"prettier", +[2,1884,1894], +"app", +"react-app", +[2,1884,1897], +"semistandard", +[2,1884,1899], +[3,1900,15], +"tandard", +[2,1901,1902], +"unjs", +[2,1884,1904], +"xo", +[2,1884,1906], +"-lass", +[2,1907,1908], +"doc-", +[2,1910,1179], +[2,1876,1911], +"-resolver-typescript", +[2,1204,1913], +[2,1876,1914], +[2,1876,1194], +[3,67,8], +[2,32825,32833], +"lugin-ava", +[2,1917,1919], +[3,1920,14], +[2,1921,1172], +"compat", +[2,1921,1923], +"es5", +[2,1921,1925], +[3,1926,16], +"-comments", +[2,671,1928], +[2,1927,1929], +[3,1930,21], +"plugin", +[2,1931,1932], +"flowtype", +[2,1921,1934], +"html", +[2,1921,1936], +[2,1921,1204], +[2,1921,1192], +[3,1939,15], +"sdoc", +[2,1940,1941], +[3,1942,16], +"onc", +[2,1943,1944], +"x-a11y", +[2,1943,1946], +[2,1921,1783], +[3,1948,15], +"ocha", +[2,1949,1950], +"n", +[2,1921,1952], +[2,1953,681], +[2,1921,1894], +[3,1955,16], +"omise", +[2,1956,1957], +[2,1921,89], +"-hooks", +[2,1959,1960], +[3,1959,16], +"gexp", +[2,1962,1963], +"security", +[2,1921,1965], +[3,1966,15], +"onarjs", +[2,1967,1968], +[2,1967,1902], +"velte", +[2,1967,1971], +"test", +"ing-library", +[2,1973,1974], +[2,1921,1975], +[3,1976,15], +[2,1977,1941], +[2,26374,26377], +[2,30307,5592], +"unicorn", +[2,1921,1981], +"vite", +"vitest", +[2,1921,1984], +[3,1985,15], +"ue", +[2,1986,1987], +"remo", +"te-tester", +[2,1989,1990], +[2,1876,1991], +"scope", +[2,1876,1993], +"visitor-keys", +[2,1876,1995], +"rc", +"eslintrc", +"esm", +"espree", +"@architect/asap", +"ima", +"esprima", +"estraverse", +"estr", +"ee-walker", +[2,2005,2006], +"ethereumjs-tx", +[3,2008,11], +[2,2009,614], +"evalmd", +"event-stream", +"event", +"emitter2", +[2,2013,2014], +[3,2015,12], +[2,2016,1278], +"events", +"excellent-difficult-good", +"execa", +"exit", +"expect", +"-type", +"expect-type", +"expect.js", +"express", +"-adexe", +[2,2026,2027], +[3,2028,9], +"utodoc", +[2,2029,2030], +"express-", +[2,2032,1179], +"handle", +"canvaskit-wasm", +"handlebars", +[2,2032,2036], +"jwt", +"express-jwt", +[2,2032,1577], +"tools", +[2,2032,2041], +[3,2042,9], +"yped-rpc", +[2,2043,2044], +[2,2032,1155], +"zod-api", +[2,2032,2047], +"@crxjs/vite-plugin", +[2,32904,37123], +"extend", +"-shallow", +[2,2051,2052], +"extract-text-webpack-plugin", +"extract-", +"zip", +"extract-zip", +"facing-cook", +"fair-tower-web3-store", +"faker", +"fancy-log", +"fast", +"-check", +"fast-check", +[2,32904,13392], +"@antora/cli", +"fast-csv", +"fast-", +[2,2068,1693], +"glob", +"fast-glob", +"plist", +"fast-plist", +"xml-parser", +[2,2068,2074], +"click", +"fastclick", +"fastify", +"father", +"faucet", +"fbjs", +"fe-pilot", +"feature-rising-small7", +"femo", +"-mock", +"fetch-mock", +"fibers", +"figlet", +"figures", +"file", +"-loader", +"file-loader", +"file-", +[2,29611,7436,26391], +"file-saver", +"file-type", +"planck", +"filesize", +"finalhandler", +"find", +"-cache-dir", +[2,2100,2101], +"find-", +"up", +"find-up", +"syncpack", +"findup-sync", +"firan-logging", +"firebase", +"-admin", +[2,2109,2110], +[3,2111,9], +[2,2112,2041], +"fixpack", +[2,2120,1145], +"fixturify", +"flat", +"pak-bundler", +[2,2117,2118], +[3,639,13], +[2,2125,23], +"flatpickr", +"flightplan", +"flow", +[3,639,15], +"flow-bin", +"@date-vir/duration", +"flowbite", +"fluent-ffmpeg", +"flux", +"follow-redirects", +"font-awesome", +"for-each", +"forever", +"fork-ts-checker-webpack-plugin", +"-alt", +[2,2135,2136], +"-data", +"form-data", +"nolyfill", +"formidable", +[2,13402,31197], +"k", +"formik", +"fresh", +"-dangerous", +[2,2145,2146], +"friendly-errors-webpack-plugin", +"front-matter", +"fs", +"fs-extra", +"fs-jetpack", +"fs-promise", +"fsevents", +"fstream", +"ftp", +[3,1626,10], +"have-names", +[2,2157,2158], +"fur-race-web3-pale", +"fuse.js", +"futen", +"fuzzy", +"gaze", +"gc-signals", +"-angular", +[2,1179,2166], +[3,2167,10], +"gulp-angular", +[2,2168,2169], +"nitro", +[2,2168,2171], +"gener", +"ic-pool", +[2,2173,2174], +"gensequence", +"gentle-party-other", +"geolib", +"get-package-type", +[2,2181,668], +[3,15376,16], +"get-port", +"get-", +"stdin", +"get-stdin", +"@c15t/backend", +"ream", +"get-stream", +"execute-in-browser", +"tsconfig", +[2,2183,2190], +"getmac", +"gh-pages", +"ghooks", +"github", +"-buttons", +[2,2195,2196], +[2,11941,2201], +"-parent", +"glob-parent", +"smart-text-reporter", +"global", +"globals", +"by", +"globby", +"gm", +"gmll", +"-spreadsheet", +[2,1885,2208], +"apis", +"googleapis", +"got", +"government-letter-web3-till", +"govuk-frontend", +"graceful-fs", +"gradually-current-chief", +"graph-these", +"graph", +[2,25849,25854], +"graphql", +"leaflet-gesture-handling", +"graphql-tag", +[3,2222,9], +"ools", +[2,2223,2224], +"gray-matter", +"grpc", +"grunt", +"-templates", +[2,2166,2229], +[2,2228,2230], +"grunt-a", +"uto-release", +[2,2232,2233], +"grunt-", +[2,2235,1389], +"grunt-b", +"animejs", +"grunt-bump", +"grunt-cli", +"grunt-c", +"oncurrent", +[2,2241,2242], +[3,2243,9], +[2,26107,26938], +"trib-clean", +[2,2244,2246], +[3,2247,15], +"ompass", +[2,2248,2249], +[3,2250,16], +"ncat", +[2,2251,2252], +[3,2253,17], +"nect", +[2,2254,2255], +"py", +[2,2251,2257], +"sslint", +[2,2248,2259], +[3,2260,17], +"min", +[2,2261,2262], +[3,2247,14], +"htmlmin", +[2,2264,2265], +"imagemin", +[2,2264,2267], +[3,2268,15], +"nternal", +[2,2269,2270], +"jshint", +[2,2264,2272], +[2,2264,695], +"unit", +"nodeunit", +[2,2264,2276], +"sass", +[2,2264,2278], +"uglify", +[2,2264,2280], +"watch", +[2,2264,2282], +"ventional-changelog", +[2,2244,2284], +[3,2285,19], +"github-", +"releaser", +[2,2287,2288], +[2,2286,2289], +[2,2235,1177], +"jscs", +"grunt-jscs", +"grunt-js", +"doc", +"grunt-jsdoc", +"karma", +"grunt-karma", +"mocha-test", +[2,2235,2299], +"newer", +"grunt-newer", +"grunt-n", +"otify", +[2,2303,2304], +"pm", +"grunt-npm", +"grunt-sass", +"grunt-sa", +"ucelabs", +[2,2309,2310], +"grunt-s", +"augment", +"grunt-shell", +"imple-mocha", +[2,2312,2315], +"pritesmith", +[2,2312,2317], +"usemin", +[2,2235,2319], +"gts", +"guarapi", +"gulp", +[3,2229,9], +"cache", +[2,2324,2325], +[2,2169,2326], +"gulp-a", +"tom-electron", +[2,2328,2329], +"utoprefixer", +[2,2328,2331], +"wspublish", +[2,2328,2333], +"zure-storage", +[2,2328,2335], +"gulp-", +"gulp-babel", +"gulp-b", +"vir", +"gulp-bom", +[1,2343,2349], +[0,4796,4797,4798,4799], +"gulp-bower", +"rowserify", +[2,2339,2345], +"uffer", +"gulp-buffer", +[0,2358,2380,2388,2399], +"augment-vir", +"gulp-bump", +"gulp-cache", +"d", +"gulp-cached", +"gulp-c", +"hanged", +[2,2355,2356], +[0,1673,4484,4809,1461,3744,4804,1282,4805,4806,3028,3911,4812,2609,3849,4023,4808], +"gulp-clean", +"-css", +[2,2359,2360], +"@flmngr/flmngr-react", +"gulp-coffee", +"gulp-co", +"mpass", +[2,2364,2365], +"gulp-concat", +[2,2367,2360], +"gulp-con", +"flict", +[2,2369,2370], +[2,2369,2255], +"gulp-copy", +"sscomb", +[2,2355,2374], +"gulp-css", +[2,2376,671], +"nano", +[2,2376,2378], +[0,1499,1797,3135,1429,2070,695,2278,1983,1437,2675,4868,2297,2899,89,3875,4193,4747,1843,1177,1209,3220,3984,4135,4487,4568,1448,1651,668,3561,4474,2924,1169,1457,1859,2151,2720,3183,3416,1894,4952,4473,4955,4860,2025,4919,3758,4929,3817,3824,4939,4320,4469,4873,1175,1628,4937,4941,91,53,4856,4865,4874,2900,2990,3105,4925,3876,4869,4880,4892,1165,1178,1195,3008,3090,3564,3696,3884,4307,4705,692,4855,4863,4870,2925,4931,4891,1257,3613,3618,4940,4330,192,4864,4866,4907,3816,4934,606,4883,4890,1264,4909,4917,3734,3885,4824,4831,4852,4859,4923,4835,4884,1268,3107,4681,4840,4875,1959,1978,2923,3904,4820,4827,1030,4895,1272,4913,1938,4817,4842,1208,4916,2881,1566,32965,1895,1947,1948,2921,4815,4872,4887,1845,3810,3820,4822,4851,4912,4922,3591,4829,1011,3584,4889,4927,2054,4949,4849,4946,33009,4882,1255,1198,4897,4879,1009,1426,4899,4903,61,1233,1570,4906], +"gulp-csso", +"data", +"gulp-data", +"gulp-eslint", +"include", +[2,2093,2385], +[2,2337,2386], +[0,4957,4959,3286,4627,4960,89,4962,4963,4964,4967], +"ter", +"gulp-filter", +"gulp-f", +"latmap", +[2,2391,2392], +[3,2393,9], +"ten", +[2,2394,2395], +"ormat-md", +[2,2391,2397], +1772064000000, +"gulp-ftp", +[2,2337,2193], +[1,2343,2418], +"it", +"gulp-git", +"gulp-gzip", +[2,2337,2036], +"gulp-h", +"eader", +"gulp-header", +"tml-replace", +[2,2407,2410], +[3,2411,9], +[2,2412,2262], +"font", +"iconfont", +[2,2337,2415], +"gulp-i", +[0,2431,0,2442,2443], +"gulp-if", +"gnore", +"gulp-ignore", +"mage-resize", +[2,2417,2422], +[3,2423,10], +[2,2424,2262], +"nclude", +[2,2417,2426], +"gulp-in", +"ject", +"gulp-inject", +[0,1091,4094,3530,4227,1092,2858], +"line-css", +[2,2428,2432], +"stall", +[2,2428,2434], +[2,2417,1207], +"jade", +"gulp-jade", +"gulp-ja", +"smine", +[2,2439,2440], +[0,4973,4976,1098,364,4977,4978], +1771804800000, +"gulp-jscs", +"gulp-js", +"hint", +"gulp-jshint", +"on-editor", +[2,2445,2448], +"gulp-less", +"gulp-l", +"ivereload", +[2,2451,2452], +"oad-plugins", +[2,2451,2454], +"mini", +[1,2343,2470], +"minify-css", +[2,2337,2458], +[3,2459,12], +[2,2460,1936], +"gulp-m", +"gulp-mocha", +"gulp-newer", +"gulp-n", +"g-annotate", +[2,2465,2466], +"odemon", +[2,2465,2468], +[0,2471,0,2483,34352], +[0,3467,4094,2858,3090,4], +"gulp-notify", +"extra", +"extras", +[2,1186,2474], +[2,2337,2475], +"gulp-plu", +"mber", +[2,2477,2478], +"gulp-p", +"ostcss", +[2,2480,2481], +[0,4973,4976,1098,4986,4988,4977,4989,6,4978,1283,4991], +"ocess", +"reprocess", +[2,2480,2485], +1770508800000, +[1,2343,2497], +"gulp-prompt", +[2,2337,89], +"gulp-re", +"mote-src", +[2,2491,2492], +"gulp-rename", +"place", +[2,2491,2495], +[0,2513,0,2514,2523], +"gulp-rev", +"-replace", +[2,2498,2499], +"gulp-r", +"uby-sass", +[2,2501,2502], +"gulp-sass", +"gulp-s", +"gulp-sftp", +"gulp-shell", +"gulp-size", +"ourcemaps", +[2,2505,2509], +"trip-debug", +[2,2505,2511], +[0,4484], +[0], +"gulp-stylus", +"vg-sprite", +[2,2505,2516], +"gulp-svg", +"gulp-svgmin", +[2,2518,1542], +[2,2337,1283], +"gulp-t", +1771113600000, +"gulp-tsb", +"gulp-ts", +[2,2525,671], +"cript", +"ypescript", +[2,2522,2528], +"gulp-uglify", +[1,2343,2532], +[0,2534,0,2535,2537], +"gulp-uncss", +[0,4484,3493], +[0,1098,12,4627,5001,837], +"gulp-usemin", +1771718400000, +"ref", +"gulp-useref", +[1,2343,2561], +"gulp-util", +"vinyl-zip", +[2,2337,2542], +"gulp-watch", +"gulp-w", +"ebpack", +[2,2545,2546], +"gulp-web", +[2,2548,36], +"gulp-zip", +".spritesmith", +[2,2323,2551], +"gzip-size", +"hallmark", +"hammerjs", +"hapi", +[2,5323,33498], +[2,5340,6374], +"happy-dom", +"happy-", +[0,2513,0,2514,2537], +"happy-meant", +"hard-cool-rhythm-continued", +"has-flag", +"has-", +"parts-ice-fact", +[2,2565,2566], +"symbols", +"has-symbols", +"hash-sum", +"hasown", +"hast-util-raw", +[3,2572,10], +"sanitize", +[2,2573,2574], +[3,2575,11], +[2,2576,1799], +"to-estree", +[2,2573,2578], +[3,2579,13], +[2,2580,1936], +"jsx-runtime", +[2,2580,2582], +[2,2580,1871], +"text", +[2,2580,2585], +"hast", +"hastscript", +"hay-against-any-hurry", +"hbs", +"he", +"heapdump", +"helmet", +"heroicons", +"hexlet-pairs", +"hexo", +"highland", +"highl", +"ight.js", +[2,2598,2599], +"hiredis", +"history", +"history-", +"brass-sound", +[2,2603,2604], +"hit-running-special8", +"hoek", +"hogan.js", +"hoist-non-react-statics", +"homebridge", +"hono", +"hope-slight-walk1", +"hosted-git-info", +"how-to-npm", +"-dom-parser", +[2,1936,2615], +"html-", +"attributes", +[2,1818,2618], +[2,2617,2619], +"html-e", +"ncoding-sniffer", +[2,2621,2622], +"html-en", +"tities", +[2,2624,2625], +"scaper", +[2,2621,2627], +"html-loader", +[1,2343,2647], +"ier", +"minifier", +[2,2617,2632], +"-terser", +[2,2633,2634], +"pdf", +"html-pdf", +[2,1246,57], +[2,2617,2638], +"tags", +"html-tags", +"html-t", +"o-image", +[2,2642,2643], +"html-to-", +[2,2645,2585], +[0,2648,2667,2684,2537], +[0,4484,4747,4135,1457,53,3951,1573,5012], +"validate", +[2,2617,2649], +[2,2617,1464], +"htmlnano", +"parser2", +"htmlparser2", +"http-", +"errors", +"http-errors", +"proxy", +"http-proxy", +"-agent", +[2,2659,2660], +[3,2661,11], +"middleware", +[2,2662,2663], +[2,2655,36], +"http-s", +[0,91], +"http-status", +"-codes", +[2,2668,2669], +"https", +"xy-agent", +[2,1452,2672], +[2,2671,2673], +"husky", +"hyperquest", +"hyphenate-style-name", +"i", +"i18n", +"ext", +"i18next", +"-gridly-backend", +[2,2681,2682], +[0,1098,4643], +"iconv-lite", +"identity-obj-proxy", +"ignore", +[1,2343,2690], +"image-size", +[0,2691,0,2514,2443], +[0,4484,26364], +"imagemagick", +"-pngquant", +[2,2267,2693], +"imap", +"immer", +"immutability-helper", +[1,2343,2705], +"le", +"immutable", +"import-", +[2,2701,2145], +"local", +[2,2701,2703], +[0,2513,0,2736,34352], +"ess", +"impress", +"in-publish", +"indent-string", +"inert", +"inferno", +"inflection", +"inherits", +"ini", +"iniparser", +"ink", +"-style-parser", +[2,134,2717], +"innosetup-compiler", +"inquirer", +"-autocomplete-prompt", +[2,2720,2721], +"inside-throw", +"insta", +"gram-node", +[2,2724,2725], +"interpret", +"intl", +"-tel-input", +[2,2728,2729], +"invariant", +"inversify", +"ionic", +[2,34017,34020], +"ionicons", +[0,1098,29,5027,4963], +[1,2343,2773], +"ioredis", +"ip", +"irc", +"is", +"is-ci", +"is-glob", +"is-installed-globally", +"is-plain-obj", +"ect", +[2,2745,2746], +"is-p", +"otential-custom-element-name", +[2,2748,2749], +"romise", +"is-promise", +"is-stream", +"is-url", +"is-wsl", +"isarray", +"isobject", +"isomorphic-fetch", +"istanbul", +"itwcw-package-analytics", +"iview", +"jackspeak", +"jake", +"jarallax", +"jasmine", +[2,2765,1732], +"jasmine-", +[2,2767,202], +"jest-", +"canvas-mock", +[2,2769,2770], +"jest-c", +[0,2513,0,2514,2487], +"jest-cli", +[1,2343,2776], +[0,2789,0,2514,2537], +"jest-diff", +"ronment-jsdom", +[2,1840,2778], +[2,2769,2779], +"-fourteen", +[2,2780,2781], +[3,2780,17], +[2,2783,202], +"jest-e", +"xtended", +[2,2785,2786], +"html-re", +[0,5038,4484], +"porters", +[2,2788,2790], +[2,2769,2791], +"junit", +"jest-junit", +"pnp-resolver", +[2,2769,2795], +[2,2769,814], +"jest-util", +[1,2343,2803], +"-typeahead", +[2,2282,2800], +[2,2769,2801], +[0,2513,2804,2815,2399], +[0,2734], +"jest-worker", +"jimp", +"jiti", +"jodit", +"-react", +"jodit-react", +"johnny-five", +"joi", +"jotai", +"jquery", +[0,1098,38], +"jquery-ui", +"js-base64", +[1,2343,2819], +[0,2830,2836,2837,2523], +"js-beautify", +"js-cookie", +"js-yaml", +"jsarch", +"jscpd", +"-api", +"jsdoc-api", +"jsdoc-", +"to-markdown", +[2,2827,2828], +[0,1673,3789,1461,1282,5060,5071,6476,5057,5059,5062,5065,5049,5050,5069,5047], +"m", +"jsdom", +"-no-contextify", +[2,2832,2833], +"jsesc", +[0,1114,2070,1192,89,1177,4487,5098,4468,3213,1610,5102,3824,1193,5100,3697,3846,91,53,5087,2990,5125,4880,1178,1540,3857,97,5123,5076,5090,5091,5094,5108,5113,3904,5106,5121,5097,5084,6498,3810,5115,5082,1011,971,5110,5085,5075,5118,5103,5079], +[0,5127,4964,89,5128,4627,4963,181,5130,4967,5131,5133], +"-stylish", +[2,2272,2838], +[1,2343,2868], +"json-2-csv", +"json-", +"json-loader", +[3,6,6], +"json-schema", +"json-s", +"erver", +"json-server", +"-stringify", +[2,176,2849], +[2,2846,2850], +"json-st", +"ringify-safe", +[2,2852,2853], +"5", +"json5", +"c-parser", +[2,1781,2857], +"jsonfile", +"jsonschema", +"JSONStream", +"webtoken", +[2,1781,2862], +"jspm", +"jstates", +"jszip", +"jwt-decode", +[0,2884,2901,2938,2537], +"simple", +"jwt-simple", +[2,2297,1617], +[3,2871,13], +"stack", +"-launcher", +[2,2873,2874], +[2,2872,2875], +"karma-", +"karma-chai", +"karma-ch", +"rome-launcher", +[2,2879,2880], +"karma-c", +"over", +[0,3021], +"overage", +[2,2882,2885], +"browsers", +[2,1708,2887], +[2,2877,2888], +"edge-launcher", +[2,2877,2890], +"fire", +"fox-launcher", +[2,2892,2893], +[2,2877,2894], +"ie-launcher", +[2,2877,2896], +[2,2877,2765], +"mocha", +"karma-mocha", +[0,1114,89,2079,3824,91,4880,5139,4883], +"orter", +"-reporter", +[2,2900,2903], +"phantomjs-launcher", +[2,2877,2905], +"qunit", +"karma-qunit", +"rollup-preprocessor", +[2,2877,2909], +"safari-launcher", +[2,2877,2911], +"karma-sa", +"uce-launcher", +[2,2913,2914], +"karma-s", +"inon", +"karma-sinon", +"ourcemap", +[2,2919,2091], +[2,2916,2920], +"pec-reporter", +[2,2916,2922], +"webpack", +[2,2877,2924], +"keycode", +"keypress", +"keyv", +"kleur", +"knex", +"knip", +"known-css-properties", +"knox", +"koa", +"koa-body", +[2,2935,57], +"koa-", +[0,5127,4964,4653,1114,4627,4963,5130,4967,89,5128,181], +[1,2343,2974], +"compose", +"koa-compose", +"logger", +"koa-logger", +"mount", +"koa-mount", +[2,2937,38], +"static", +"koa-static", +"kue", +"label-lungs-court4", +"-perfe", +"ctly-blow-series", +[2,2951,2952], +[2,1351,2953], +"late-", +"dress-mail5", +[2,2955,2956], +"late", +"st-version", +[2,2958,2959], +"lazy.js", +"lead-alike-web3-applied", +"leaflet", +"left-pad", +"left", +"pad", +"leftpad", +"lerna", +[2,695,2091], +"level", +"down", +"leveldown", +"levelup", +[0,2985,2988,3011,2523], +"leven", +"libnpmdiff", +"libnpm", +"exec", +"libnpmexec", +"fund", +"libnpmfund", +"libphonenumber-js", +"liftoff", +"lilconfig", +[0,1461,5145,5146], +"linkifyjs", +"lint-", +[0,1114,2070,89,2079,3824,91,4880,4883], +"staged", +"lint-staged", +"listr", +"listr2", +"lit-element", +"lite", +"-server", +"lite-server", +"live-server", +"live", +"reload", +"livereload", +"load", +"-grunt-config", +[2,3001,3002], +[3,3003,11], +"tasks", +[2,3004,3005], +"-utils", +[2,1194,3007], +"-web-server", +[2,2703,3009], +[0,5127,4964,4653,1114,4627,4963,5130,4967,89,5128,181,1017], +"localforage", +"tunnel", +"localtunnel", +"lock", +[1,2343,3017], +[0,3075,3100,3104,2537], +"file-lint", +[2,3015,3018], +"-es", +"lodash-es", +".assign", +[2,1209,3022], +"lodash.", +[2,3024,1420], +"lodash.c", +"lonedeep", +[2,3026,3027], +[2,3024,1675], +[3,3029,9], +"faults", +[2,3030,3031], +"flatten", +[2,3024,3033], +"lodash.f", +"oreach", +[2,3035,3036], +"get", +"lodash.get", +"isempty", +[2,3024,3040], +[3,3041,10], +"qual", +[2,3042,3043], +[3,3041,9], +"function", +[2,3045,3046], +"object", +[2,3045,3048], +"plainobject", +[2,3045,3050], +[2,3045,1871], +"map", +"lodash.map", +"lodash.m", +"emoize", +[2,3055,3056], +[3,3057,9], +"rge", +[2,3058,3059], +"omit", +"lodash.omit", +"pick", +"lodash.pick", +"set", +"lodash.set", +[2,3024,1283], +"lodash.t", +"hrottle", +[2,3068,3069], +"uniq", +"lodash.uniq", +"log", +"log-symbols", +[0,5154,5152], +"update", +"log-update", +"log4js", +"loglevel", +"long", +"loopback", +"loose-envify", +"lowdb", +"lru-cache", +"lucide", +"luck-rubber-do", +"lwip", +"lws", +"madwizard", +"magic-string", +"magmastream", +"main-bower-files", +"make-dir", +"make-", +"make-node", +"mammoth", +"manifest", +"mantine-contextmenu", +"many-favorite6", +[0,4484,3709,4508,4355,838,5160,5159,4514,5162,840], +"stream", +"map-stream", +"mapboxgl-legend", +[0,5165,5166,2038,5167,3424,5168,5170,3709], +"markdown-it", +"-anchor", +[2,3105,3106], +[3,3107,12], +"cont", +[1,2343,3168], +"container", +[2,3108,3111], +"emoji", +[2,3108,3113], +[3,3105,9], +[2,3115,2636], +[2,3115,176], +[3,3117,10], +"o-jsx", +[2,3118,3119], +[3,3120,11], +"c", +[2,3121,3122], +[2,1783,671], +[2,3124,20], +"mark", +"marked", +"y-markdown", +[2,3126,3128], +"matcha", +[3,558,9], +[2,3131,181], +"mathjs", +"matter-view-web3-fence", +"md5", +"md5-file", +"mdast-util-from-markdown", +[3,3137,11], +"to-hast", +[2,3138,3139], +"mdn-data", +"mdxts", +"memcached", +"memfs", +"memoize-one", +"memo", +"ry-cache", +[2,3146,3147], +"memory-", +"memory-fs", +"memory", +[2,3151,3101], +"memwatch", +"menta", +"l-oxygen-dozen", +[2,3154,3155], +"meow", +"merge-", +[2,3158,3101], +"metalsmith", +"meteor", +"method-override", +"method", +"methods", +"microbundle", +"micro", +"micromark", +[0,3169,3179,3182,2537], +[0,2070,4207,3093,1525,1573,5175,5180], +"micromatch", +"mime", +"-types", +"mime-types", +"min-heap-typed", +"-extract-plugin", +[2,2360,3175], +[2,2456,3176], +"minify", +[0,4135,53,4865,5185,5191], +"atch", +"minimatch", +[0,5193,1172,5194,5197,5198,1173,4643], +"minimist", +"-jet-printed-supper", +[2,1504,3184], +"missing-sport-living", +"mkcert", +"mkdirp", +"mlly", +"mobx", +"mobx-react", +"mocha-", +"head", +"less-", +"chrome", +"less-chrome", +[2,3193,3196], +[2,3192,3197], +[2,2793,2903], +[2,3192,3199], +"lcov-reporter", +[2,3192,3201], +"mock-fs", +"mock-", +"property", +[2,3204,3205], +[1,2343,3208], +[0,3214,3217,2514,2537], +"require", +[2,3204,3209], +"mock-stdin", +"mock", +"mockdate", +[0,9673,3527,5279], +"mockery", +"mockjs", +[0,5282,4294,5210], +[2,3224,3225], +"moleculer", +"moment", +"-timezone", +[2,3220,3221], +"monaco-yaml", +[3,5838,28], +"xp-modifiers", +"monads-io", +"ress", +"-express", +[2,1550,3228], +"mongodb", +"ose", +"mongoose", +"monitor", +"-dashboard", +[2,3233,3234], +"monk", +"morgan", +"motor-positive-spirit", +"move-wolf-throughout", +"movie-obtain-tail-prepare", +"mqtt", +"ms", +"mssql", +"msw", +"mud-slowly-five3", +"multer", +[1,2343,3248], +[0,3252,3269,3272,2537], +"multimatch", +"multi", +"part", +[0,1676,2856,4135,5233,104,58,5228,5230,101,5216,51,1573,31292,5226,5222], +"multiparty", +"multip", +"le-cucumber-html-reporter", +[2,3254,3255], +"mustache", +"muuri", +"mysql", +"mysql2", +"mz", +"nails-wild-interest-garden", +"nan", +"nano-css", +"id", +"nanoid", +"-keymap", +[2,970,3267], +[0,4494,4039,4474,5245,5254,5251,87,92,5235,5180,5244,5240,5241,5191], +"nativefier", +[2,970,1508], +[0,5193,1172,5256,5257,5194,5258,5259,5260,5197,5198,5261,1175,4643], +"natural", +"nconf", +"ncp", +"near-social-bridge", +"nedb", +"needle", +[1,2343,3280], +[0,0,3293,2514,2523], +"-commander", +[2,678,3281], +"newman", +"newrelic", +"next-auth", +"next", +"nextjs", +"ng-mocks", +"ng-zorro-antd", +"ngrok", +"nib", +"nightmare", +[0,53], +"nightwatch", +"nine-yes-merely6", +"nise", +"nock", +"addon-api", +[2,813,3298], +"node-cache", +"node-c", +"ontainerpattern", +[2,3301,3302], +"dev", +"node-dev", +"node-d", +[1,2343,3311], +"node-dir", +"node-emoji", +"node-fetch", +[0,3328,3338,3398,2523], +"orge", +"node-forge", +"node-g", +"toolchain", +"node-gcm", +"eocoder", +[2,3314,3317], +"JSONC", +"arser", +"html-parser", +[2,813,3321], +"inspector", +[2,813,3323], +"JSX", +"mocks-http", +[2,813,3326], +[0,104], +"notifier", +[2,813,3329], +"oauth2-server", +[2,813,3331], +"powertools", +[2,813,3333], +"node-p", +"re-gyp", +[2,3335,3336], +[0,5282,51,5274,5276,5279,5273], +"node-pty", +"node-re", +"node-red", +"node-sass", +"node-s", +"chedule", +[2,3343,3344], +"tatic", +"node-static", +"uuid", +"node-uuid", +"node-watch", +"node-w", +"indows", +[2,3351,3352], +"xlsx", +"node-xlsx", +".extend", +[2,202,3356], +"git", +"nodegit", +"mailer", +"nodemailer", +"TSX", +"nodemon", +"webkit", +"nodewebkit", +"nolangjs", +"nomnom", +"nopt", +"normalize-path", +[3,3369,10], +[2,3370,1002], +"wheel", +[2,3370,3372], +[3,3369,9], +".css", +[2,3374,3375], +"np", +"npm", +"npm-check", +"-updates", +[2,3379,3380], +"npm-", +"package", +"GraphQL", +"package-arg", +[2,3382,3385], +[3,3386,12], +[3,4786,24], +"json-lint", +[2,3387,3389], +"npm-pack", +"list", +[2,3391,3392], +"regist", +"ry-fetch", +[2,3394,3395], +[2,3382,3396], +[0,1172,5284,57,5285,5286,58], +"mc-scripts", +"npm-run-all", +[2,3400,1276], +"npm-run-", +"path", +[2,3402,3403], +[2,556,11398,3902,591], +"npm-to-yarn", +"windows-upgrade", +[2,3382,3407], +"npmcli", +"npmignore", +"npmlog", +"nprogress", +"nsp", +"nuke-cli", +"numeral", +"nunjucks", +"nvm", +"nvmrc", +"nwsapi", +"nx", +"nyc", +"oas", +"oas-normalize", +"oauth", +[3,77,7], +"assign", +[2,3425,3426], +"hash", +"object-hash", +"inspect", +[2,3425,3430], +"keys", +"object-keys", +"object-path", +[2,3048,3022], +"object.", +"entries", +[2,3436,3437], +"observe-food-motion-hidden", +"on-finished", +"once", +"onchange", +"one-how-hand", +"onoff", +"open", +"open-cli", +"api-c", +[1,2343,3454], +"lient-axios", +[2,3447,3449], +[2,3445,3450], +"openapi", +[2,3452,1712], +[0,3457,3464,3465,2537], +"opencv", +"opener", +[0,5292,56], +"openweather", +"opn", +"optimist", +"optimi", +"ze-css-assets-webpack-plugin", +[2,3461,3462], +[0,53,5295], +[0,5297], +"optionator", +"ora", +"orchestrator", +"orm", +"osenv", +"outdent", +"outline-slowly", +"overlay", +"scrollbars", +[2,3473,3474], +"ovsx", +"p-event", +"p-map", +"p-queue", +"p-timeout", +"p23", +"pa11y", +"pacote", +"pageres", +"paintor", +"pako", +"para", +"para-cli", +"ent-js", +[2,3488,3489], +"llelshell", +[2,3487,3491], +"parse5", +"parseurl", +"passport", +[3,1433,9], +"facebook", +[2,3496,3497], +[2,3496,2703], +[2,3496,3424], +[2,3500,1276], +[2,3403,1617], +"path-", +"exists", +"path-exists", +"is-absolute", +[2,3503,3506], +"to-regexp", +[2,3503,3508], +"pathe", +"paypal-server-api", +"pdfjs", +"pdfkit", +"perf", +[1,2343,3516], +[0,3538,3546,3581,2523], +"ormance-now", +[2,3514,3517], +"pg", +"phantom", +[3,2905,9], +[3,2905,10], +"prebuilt", +[2,3522,3523], +"phonegap", +"pi-gpio", +"picocolors", +"pico", +"match", +"picomatch", +"pie-case-nor-great", +"pify", +"pino", +"pinst", +"pitch-somehow-earth-brave", +"pixelmatch", +"pkg-dir", +[0,5302,1676,2929,5303,4135,2822,4213,1457,18089,2098,5305,3183,3416,3692,5306,3530,27921,2226,3105,5312,5314,5319,27482,5320,5321,27512,5323,5328,27513,27514,2557,5332,2558], +"pkg-up", +"pkginfo", +"playwright", +"plugin-e", +"rror", +[2,3542,3543], +"plur", +[0,1414,1166,4494,188,4763,2278,89,1177,3127,3721,4039,2203,1894,3824,442,91,5307,4874,29549,27521,19181,5944,9245,30864,3114,27517,27519,5337,25652,1895,27518,30114,5344], +"pluralize", +"pm2", +"pngjs", +"pnp-", +[2,3550,1464], +"pnpm", +"pnpx", +"poe-api-manager", +"polished", +"poli", +"tical-plan-careful", +[2,3556,3557], +"popper.js", +"portfinder", +"postcss", +[3,214,8], +"calc", +[2,3562,3563], +[3,3564,9], +"postcss-cli", +"al-notation", +[2,3046,3567], +[2,866,3568], +[2,3565,3569], +[3,3570,13], +[2,3571,2262], +[3,3570,10], +"nvert-values", +[2,3573,3574], +"ssnext", +[2,3565,3576], +"ustom-media", +[2,3565,3578], +[3,3579,15], +[0,5347,5348,5349,1745,5351,5352,5353,5354,1179,5130,1820,5355,1936,1783,5356,3416], +"ies", +"properties", +[2,3580,3583], +[3,219,8], +"selectors", +[2,3580,3586], +"disc", +"ard-comments", +[2,3588,3589], +[2,3562,3590], +[3,3591,16], +[1,2343,3594], +[0,0,3596,3601,2537], +"es", +[0,5517,11976,811,816,10615,10817,5366,5364,5087,4874,1317,1413,1192,4042,4057,4468,4484,91], +"duplicates", +[2,3592,3597], +"empty", +[2,3592,3599], +[0,1623,57,5374,5376,6892,91,31130,31139,31177,3178,1671,7121], +"overridden", +[2,3592,3602], +"flexbugs-fixes", +[2,3562,3604], +[2,3562,1936], +[3,214,9], +"mage-", +"set-function", +[2,3608,3609], +[2,3607,3610], +[3,3611,10], +[2,3612,1709], +"load-", +"load-config", +[2,3562,3615], +[3,3616,12], +[2,3617,1524], +"hand", +"longhand", +[2,3158,3620], +[2,3562,3621], +[3,3622,14], +"rules", +[2,3623,3624], +[3,3622,9], +"inify-font-values", +[2,3626,3627], +[3,3628,15], +"grad", +[1,2343,3645], +"gradients", +[2,3629,3632], +"params", +[2,3629,3634], +[2,3629,3586], +"odules-local-by-default", +[2,3626,3637], +"nested", +[2,3562,3639], +[3,3640,12], +"ing", +[2,3641,3642], +[3,3640,9], +[0,3654,3655,3690,2537], +"ormalize", +[2,3644,3646], +"-charset", +[2,3647,3648], +[3,3649,18], +"positions", +[2,3650,3651], +[2,3650,1871], +[0,5381,5383,5387,5391,5393,5394,5397,5400,5402,5405,5408,5411,5414,5416,5419,5423,5425,5430,5436,2993,5438], +[0,5441,5446,5450,5452,5453,5456,5458,5461,5464,192,5467,5470,5473,5474,5476,5478,1177,1895,2675,2990,4193,91,5480], +"unicode", +[2,3650,3656], +[3,3657,19], +"rl", +[2,3658,3659], +"whitespace", +[2,3650,3661], +"ordered-values", +[2,3562,3663], +"prefix", +"-selector", +[2,3665,3666], +[2,3562,3667], +[3,3668,11], +"set-", +"set-env", +[2,3669,3671], +"reduce-initial", +[2,3562,3673], +"safe-parser", +[2,3562,3675], +[3,3676,9], +[2,3677,1623], +"or-parser", +[2,1799,3679], +[2,3677,3680], +"vgo", +[2,3677,3682], +"ue-selectors", +[2,3071,3684], +[2,3562,3685], +"value-parser", +[2,3562,3687], +"post", +[0,5483,1117,1745,5484], +"postgrejs", +"posthtml", +"pouchdb", +"power", +"-assert", +[2,3694,3695], +"pre-commit", +"preact", +"prepare-package", +"-plu", +"gin-jsdoc", +[2,3700,3701], +[2,1894,3702], +[3,3703,16], +"organize-imports", +[2,3704,3705], +"packagejson", +[2,3704,3707], +"svelte", +[2,3704,3709], +"prettierrc", +"prett", +"y-bytes", +[2,3712,3713], +"pretty-", +[2,3715,1851], +[2,3715,1671], +"pretty-ms", +"quick", +[2,3715,3719], +"pretty", +"prettyjson", +[1,2343,3728], +"prisma", +"prismjs", +"private-bower", +"proc-log", +[0,3740,0,3748,34352], +"process", +[3,217,8], +"-bar-webpack-plugin", +[2,3730,3731], +"-polyfill", +[2,1862,3733], +"s-aplus-tests", +[2,1862,3735], +"prom", +"o-server", +[2,3737,3738], +[0,5497,5498,5502,5504,2222,5506,4484], +"prompt", +"prompts", +"prop", +"prop-types", +"-information", +[2,3205,3745], +"protobufjs", +[0,5575,2220,89,582,5576,2325], +[2,38087,27470], +"protractor", +"quire", +"proxyquire", +"publish-please", +"pug", +"pull-stream", +"pump", +"punycode", +"puppeteer", +"purgecss", +"q", +"qr-image", +"qrcode-terminal", +"qs", +"query-", +[2,3764,1871], +"query", +"querystring", +"queue", +"-typed", +"queue-typed", +"quill", +"-dom", +"qunit-dom", +"qunitjs", +"raf", +"ramda", +"random-words", +"random", +"randombytes", +[2,3778,1871], +"range-parser", +[1,2343,3785], +"raven", +"raw-body", +[0,3796,3806,3823,2487], +"raw-loader", +"rc-slider", +"rc-tooltip", +"rc-util", +"rcw-plugin", +"react-a", +"ddons-css-transition-group", +[2,3791,3792], +[3,3793,13], +"shallow-", +[0,89,4042,3744,53,5582,87,4232,90,5583,5589], +"compare", +[2,3795,3797], +[2,3794,3798], +"react-ap", +"ollo", +[2,3800,3801], +[2,1897,3733], +[2,1246,1367], +"react-c", +[0,1192,1177,4468,1610,91,5087,4880,2829,1959,1969,1966], +"react-color", +"react-co", +"py-to-clipboard", +[2,3808,3809], +"picker", +"datepicker", +[2,1246,3812], +"react-d", +"ev-utils", +[2,3814,3815], +"react-dnd", +"5-backend", +[2,1868,3818], +[2,3817,3819], +"ocgen", +[2,3814,3821], +[0,5593,1745,1179,89,4978,1283], +"react-dom", +"ropzone", +[2,3814,3825], +"error-", +[2,3827,3473], +[2,1246,3828], +[2,1246,2593], +"react-h", +"ook-form", +[2,3831,3832], +"react-ho", +"t-loader", +[2,3834,3835], +[2,1246,2681], +"react-i", +"react-icons", +"nter", +"section-observer", +[2,3840,3841], +[2,3838,3842], +[1,2343,3851], +[2,28573,26849], +"react-intl", +"react-is", +"lifecycles-compat", +[2,1246,3848], +[2,1246,1783], +[0,3859,3873,2514,2399], +"odal", +"react-modal", +"react-mo", +"tion", +[2,3854,3855], +[2,1246,970], +"-key", +[0,4135,1996,5598], +"-keychain", +[2,3857,3860], +[3,3861,13], +"vector-icons", +[2,3862,3863], +"react-n", +"umber-format", +[2,3865,3866], +"onclickoutside", +[2,1246,3868], +"react-p", +"roperty", +[2,3870,3871], +[0,1680,1177,53,5601,1006,4523,5274,5604], +"x", +"redux", +"react-redux", +"react-re", +[2,3877,2145], +[1,2343,3880], +[0,3892,3896,3907,2523], +"sponsive", +[2,3877,3881], +"react-r", +[2,3883,995], +[2,3884,3772], +[3,3885,13], +[2,3886,3875], +"scripts", +[2,1246,3888], +"react-s", +[2,3890,1799], +[0,56,5611,5292], +"react-slick", +"tyleguidist", +[2,3890,3894], +[0,53,101,5615,5617,5295,5619], +"react-svg", +"tap-event-plugin", +[2,1246,3898], +"react-t", +"est-", +"renderer", +[2,3901,3902], +[2,3900,3903], +"oastify", +[2,3900,3905], +[0,1172,5297,70], +[1,2343,3918], +"react-tools", +"ransition-group", +[2,3900,3910], +"virtualized", +[2,1246,3912], +"reactify", +"strap", +[2,89,3915], +"read", +[0,3920,3464,3465,2399], +"read-pkg", +[0,56], +"read-pkg-up", +"able-stream", +[2,3917,3922], +"line", +"readline", +"-sync", +[2,3925,3926], +"recall-shut-say", +[1,2343,3933], +"recast", +"recently-building-save", +"rechoir", +[0,3934,3464,3465,2443], +[0,56,5631], +"recompose", +"recu", +"rsive-readdir", +[2,3936,3937], +"redoc", +"usaurus", +[2,3939,3940], +"-actions", +[2,3875,3942], +"redux-", +"redux-form", +[2,3944,2942], +"saga", +"redux-saga", +"thunk", +"redux-thunk", +"reflect-metadata", +[1,2343,3953], +[0,3982,3983,3465,2537], +"regenerate", +[3,3954,9], +"or-runtime", +[2,3955,3956], +"rehype", +"-auto", +"-headings", +[2,163,3960], +[2,3959,3961], +[2,3958,3962], +"rehype-", +[3,1202,9], +"links", +[2,3965,3966], +[2,3964,3967], +"mdx-code-props", +[2,3964,3969], +[2,3964,1644], +"raw", +"rehype-raw", +"slug", +"rehype-slug", +"rehype-s", +"tringify", +[2,3976,3977], +"release", +"release-it", +"remap-istanbul", +[0,5637,5222,56,5638,5640], +[0,53,5295,58], +"remark", +[2,3984,20], +"remark-", +"gfm", +"remark-gfm", +"remark-html", +"mermaidjs", +[2,3986,3990], +[2,3986,1644], +"remark-p", +[2,1258,2195], +[2,3993,3994], +[3,3995,14], +"wooorm", +[2,3996,3997], +[2,3986,3958], +"able", +"remarkable", +"replace-ext", +"replace-", +"in-file", +[2,4003,4004], +[1,2343,4011], +"-promise", +[2,705,4007], +"-native", +[2,4008,4009], +[0,3920,3293,3465,2523], +"require-all", +"require-", +"dir", +"require-dir", +[1,2343,4032], +"index", +[2,3209,4017], +"requirejs", +"rese", +"lect", +"reselect", +"resize-observer-polyfill", +"-from", +[2,814,4024], +"resolve-", +"url-loader", +[2,4026,4027], +"rest-chronicle", +"rest", +"restify", +[0,4091,4095,3465,2399], +"restler", +"ore-cursor", +[2,4030,4034], +"rethinkdb", +"rewire", +"rfdc", +"rimraf", +"robot", +"robotjs", +"rollup", +"rollup-p", +"lugin-babel", +[2,4043,4044], +[3,4045,15], +"uble", +[2,4046,4047], +[3,4045,14], +"clean", +"cleanup", +[2,4049,4051], +[3,4052,15], +"ommonjs", +[2,4053,4054], +"dts", +[2,4049,4056], +[2,4049,1781], +"license", +[2,4049,4059], +"builtin", +"builtins", +[2,813,4062], +[2,4049,4063], +[3,4064,19], +[2,4065,2203], +[2,4065,814], +"replace", +[2,4049,4068], +"sourcemaps", +[2,4049,4070], +"terser", +[2,4049,4072], +[3,4073,15], +[2,4074,2528], +[2,4075,1276], +[2,4049,2280], +"visualizer", +[2,4049,4078], +[3,4045,13], +[2,4080,594], +"route", +"routes", +"rsnext", +"rsvp", +"rtlcss", +"run-s", +"equence", +[2,4087,4088], +"@modern-js/utils", +[0,4135,56,5652,5656,5658,5660], +"run-series", +"rx", +"rxjs", +[0,3093,53,5228,97,87,5663,5658,5295], +[1,2343,4114], +"-compat", +"rxjs-compat", +"safe-", +"safe-buffer", +"safe-p", +"ublish-latest", +[2,4101,4102], +"sails", +"salt-type-oldest-faster", +"sand-have-metal6", +"-filename", +[2,2574,4107], +[3,4108,9], +[2,4109,1936], +"sass-loader", +"sat-local", +"sax", +[0,4115,4138,2514,4139], +[0,1593,3957], +"scheduler", +"-doc", +[2,1119,4117], +[2,2844,4118], +"schema-", +[2,4120,594], +"scien", +"ce-knowledge-truth", +[2,4122,4123], +"seblakhotspicy", +"secp256k1", +"seedrandom", +"sele", +"nium-webdriver", +[2,4128,4129], +"semantic-release", +[3,4131,9], +"ui-react", +[2,4132,4133], +"semver", +"seneca", +"sentiment", +[0,1389,1408,5669,4535], +1772323200000, +"sequelize", +[3,1753,9], +"-javascript", +[2,4141,4142], +"serial", +"serialport", +"serve", +"-favicon", +[2,4146,4147], +"serve-", +"serve-index", +[2,4149,2947], +"-destroy", +[2,36,4152], +[1,2343,4194], +"less-finch", +[2,36,4155], +[3,4156,11], +"spy", +[2,4157,4158], +"sha1", +"shallow", +"equal", +[2,4161,4162], +"sharp", +"shell-quote", +"shell", +"shelljs", +"shinning-continued-becoming", +"shortid", +"should", +"showdown", +"shx", +"sick-typical-court7", +"signal-exit", +"simil", +"ar-cheese-loss", +[2,4175,4176], +"-ass", +"i-animation", +[2,4178,4179], +[2,2869,4180], +"simple-", +"simple-git", +"-web", +"-web3", +[2,3742,4185], +[2,4182,4186], +"single-spa", +"sink-mighty-orbit0", +"sink-", +"rod-lamp", +[2,4190,4191], +"sinon", +[0,4197,4198,2514,2537], +"-chai", +"sinon-chai", +[0,4135,5867,5637,5866,56,5656,5658,5676,5788,5850,5761,5797,5222,5660,5816,5640,5809,5812,5838,5769,5793,5823,5852,5756,5766,5790,5856,5863,5712,5715,5771,5778,5842,5741,5743,5830,5859,5757,5241,5810,3218,5820,5827,5835,5853,5751,5759,5821,5865,5764,5846,5785,5754,5825,5862,5782,5700,5749,5806,5832,5818,29299,5800,5813,5678,5685,5694,5690,5776,5688], +[0,53,101,5295], +"sinopia", +"sirv", +"size-limit", +"size", +[1,2343,4222], +"sizeitup", +"skapi-js", +"sky-buy-web3-rock", +"slash", +"slice-ansi", +"slow-deps", +"slow-", +"voice-spell-pass", +[2,4210,4211], +"slugify", +"small-grow-mix4", +"snake-seven-recall-interior", +"snazzy", +"soap", +"socket.io", +"-client", +[2,4218,4219], +"sock", +[0,4240,3464,2514,2537], +"js-client", +[2,4221,4223], +"source", +"-map", +"source-map", +[2,4227,1592], +[3,4228,11], +[2,4229,1194], +"support", +[2,4229,4231], +"space-separated-tokens", +"spectaql", +"speech-section-part-frozen", +"spirit-labor-cheese", +"split", +"split2", +"spring-dust-wall-size", +[0,56,5676,5874,5879,5881,5883], +[1,2343,4244], +"sprintf", +"sprintf-js", +[0,4253,3464,4254,4139], +"sprity", +"sqlite3", +"ssh2", +"ssri", +"st.db", +"stack-", +"trace", +"stack-trace", +[0,4851,56,5676,5889,5241], +[0,5891,91], +"standard", +"-version", +[2,4255,4256], +"star-location", +"star", +"t-server-and-test", +[2,4259,4260], +"stat", +[1,2343,4265], +"statsd", +[0,4269,4281,2514,2537], +"statuses", +"stock-independent-balloon", +"stor", +[0,5896,3093,5898,2102,4232], +"storybook", +"-django", +[2,4270,4271], +"stra", +"iforos-compodoc", +[2,4273,4274], +"nge-lady-riding9", +[2,4273,4276], +[2,3101,3695], +"stream-", +[2,4279,353], +[0,1389,53,5743,5241], +"streamii", +"strftime", +"string-", +"stri", +[1,2343,4297], +"strip-html", +[2,4284,4287], +"width", +[2,4284,4289], +"-entities", +[2,1646,4291], +"strip-", +"strip-ansi", +"bom", +"strip-bom", +[0,0,0,2514,2523], +"comments", +[2,2842,4298], +[2,4293,4299], +"strip", +"stripe", +"strongloop", +"-dictionary", +[2,590,4304], +"style-", +[2,4306,1194], +[1,2343,4313], +"style-to-js", +[3,4309,9], +[2,4310,3048], +"-comp", +[0,4316,0,2514,2523], +"-components", +[2,369,4314], +[0,1593], +"styled-jsx", +"hacks", +"stylehacks", +"stylelint", +"-standard", +[2,607,4321], +[2,4320,4322], +[3,4323,10], +"declaration-strict-value", +[2,4324,4325], +"order", +[2,4324,4327], +"scss", +[2,4324,4329], +[1,2343,4336], +"us", +"stylus", +[2,4333,2091], +"sugar-policeman-entire", +[0,4344,3464,2514,2537], +"sugarss", +"sun-grass-circle0", +"superagent", +"super", +"superjson", +"supertest", +[2,4342,1430], +[0,1676,104,58,5230,5216,51,30873], +"supervisor", +"-vessels-web3-vessels", +[2,4231,4346], +[1,2343,4356], +"lor", +"s-color", +[2,4231,4350], +"surrounded-characteristic-or-rain", +"svelte-", +"check", +[2,4353,4354], +[0,4379,4392,2514,2487], +"rocess", +"preprocess", +[2,4353,4358], +"svg-sprite", +"svgo", +"sw-precache-webpack-plugin", +"swagger-autogen", +"swagger-", +[2,4364,134], +"themes", +[2,4364,4366], +"ui-express", +[2,4364,4368], +"swam-darkness-weak", +"swig", +"swiper", +"sync-request", +"information", +[2,623,4374], +"systemjs", +"tail-iron-became5", +"tail", +[0,5276,5279], +"tailwind", +"-merge", +[2,4380,4381], +"tailwindcss", +"tap", +"tap-", +"spec", +"tap-spec", +"tapable", +"tape", +"tar", +"tar-fs", +[0,58,5216,5274], +"tar-stream", +"tarant", +"-router-express", +[2,3926,4395], +[2,4394,4396], +"tdl", +"tdlib-native", +"tempy", +"terminal-kit", +[3,4401,9], +"menu", +[2,4402,4403], +"pack", +"-plugin", +"pack-plugin", +[2,4184,4407], +[2,4072,4408], +"cutting", +[2,1382,4410], +"snippets", +[2,1382,4412], +"cafe", +"testcafe", +"testc", +[1,2343,4422], +"ontainers", +[2,4416,4418], +"double", +"testdouble", +[0,4424,4429,4442,4139], +"testem", +[0,5923,5927,5930,5931,5934,5935,5936,1512,2075,2088,2070,2822,2832,5941,3105,5944,3107,5946,5949,3112,26767,5953,5956,5961,3135,3257,5963,5966,3725,3754,3758,5969,5971,3348,5975,4747], +"text-table", +"three", +"throttle-debounce", +"thro", +[0,4320,5978,4328], +"through", +"through2", +"w-did-darkness4", +[2,4428,4432], +"thunkify", +"tildify", +"time-grunt", +"tinper-bee", +"tiny-lr", +"tiny", +"bench", +"tinybench", +[0,200,1783,5980,3452,5593,5981,5982,5983,1745,1179], +"tinycolor2", +[1,2343,4458], +"tinymce", +"pool", +"tinypool", +"tinyspy", +"tmp", +"toastify-react-native", +"tocbot", +"toml", +"touch", +"tough-cookie", +"tracer", +"traffic-carry-opinion", +"train-stick-swept7", +[0,4466,4471,4472,2537], +"tree-kill", +"e-leaving-basket", +[2,1333,4460], +"trpc", +"trumpet", +"ts-cache-mongoose", +"ts-japi", +[0,5990,2212,3220,3747,4715], +"est", +"ts-jest", +"ts-loader", +"ts-migrate-mongoose", +[0,1596,1177,1895,1903,1938,1954,1955,1958,1970,4255], +[0,4709,5993,4714,2942,5995], +"ts-morph", +"ts-node", +"ts-patch-mongoose", +[1,2343,4485], +"ts-pnp", +"ts-rule-engine", +"-paths", +[2,2190,4479], +"tsd", +"tsd-lite", +"tshy", +"tslib", +[0,4502,4503,2514,2537], +"nt", +"tslint", +"-config-", +[2,4488,1894], +[2,4487,4489], +"tslint-", +[2,4491,89], +"tsup", +"tsx", +"turndown", +"tv4", +"tweetnacl", +"twemoji", +"twit", +"twitter", +"type-", +[0,6041,4135,1458,6042,1836,2151,6049,3527,1104,6047,4025,6024,6027,6028,6032,6034,6009,6010,6025,6037,3749,6007,6039,6022,6003,6031,6017,6006], +[0,3471,6040,4294,5254], +"coverage", +[2,4501,4504], +[1,2343,4516], +"type-fest", +"typedoc", +"-material-theme", +[2,4508,4509], +"typedoc-", +[2,4511,2475], +[3,4512,15], +[2,4513,1783], +"typedocs", +[0,4518,4519,4527,2537], +"typegen", +[0,6056,6059,449,452,456,1461,3744], +[0,48,53,61,87,90,192,5467,5583,811,816,6061,6063,6065,1009,1011,1178,1251,6066,1177,1947,1959,1961,2675,2990,1894,89,3824,4042,6068,4073,4131,91], +"typegoose", +"typeorm", +"-eslint", +[2,91,4522], +[3,4523,11], +"formatter", +[2,4524,4525], +[0,6070,89,6071,181,6073,4963,6074,6077,6080,6081,6082,4967,6083,6084,4298,6085,6086], +[1,2343,4544], +"css-modules", +[2,1186,4529], +[2,4524,4530], +"typings", +"uglify-es", +"uglify-", +"uglify-js", +"js-webpack-plugin", +[2,2280,4536], +"uid-safe", +"uiw", +"uj-apidoc-core", +"ulid", +"ultrahtml", +"unbuild", +[0,4556,0,4557,2537], +"underscore", +".string", +[2,4545,4546], +"undici", +"unified", +"unique-", +"random-", +"array", +[2,4551,4552], +[2,4550,4553], +"unist-util-visit", +[0,1459,148,185], +[0,6092,1459,6094,6096,6098,6100], +"untildify", +"unusual-rope", +"unzip", +"-notifier", +[2,3076,4561], +"urijs", +"url-", +"join", +"url-join", +"url-parse", +"urllib", +"user", +"user-", +"home", +"user-home", +[1,2343,4574], +[0,4583,0,4642,2487], +"agent", +"useragent", +"utf8", +[2,594,4381], +"uvu", +"valid", +"-url", +"valid-url", +[0,27715,4484], +"-commit-msg", +[2,2649,4584], +[3,4585,9], +[2,3387,1213], +[2,4586,4587], +"vant", +"vary", +"vasync", +"vercel", +"verror", +"vhost", +"victory-mouth", +"viewerjs", +"vinyl", +"vinyl-", +[2,4598,1398], +"vinyl-fs", +"source-", +[2,4601,3101], +[2,4598,4602], +[3,4603,12], +"maps-apply", +[2,4604,4605], +"virtual", +"virtual-dom", +[3,839,12], +"api-", +"api-routes", +[2,4609,4611], +"press", +"vitepress", +"vorpal", +"vows", +"vsce", +"vscode-debugprotocol", +"vscode-", +"nls-dev", +[2,4619,4620], +"mate", +"textmate", +[2,4619,4623], +"vue-", +"class-", +[3,1533,9], +[2,4626,4627], +[2,4625,4628], +[2,4625,67], +"hot-reload-api", +[2,4625,4631], +"vue-i18n", +"vue-loader", +[3,3746,9], +[3,70,9], +[2,4635,4636], +[2,4625,4637], +[2,4625,38], +[2,4625,4307], +[3,1243,9], +[0,6105,6106,6038,1936,6108,6110,1098,6111,6112,6113,4627,6092,1459,6094], +"compiler", +[2,4641,4643], +[2,4625,4644], +"vuex", +"walk", +"walk-sync", +"warning", +"watchify", +"waterline", +"wd", +"web3", +"web3-", +[1,2343,4668], +"web3-be", +"web3-c", +"apital", +[2,4657,4658], +[3,42,8], +"pass", +[2,4660,4661], +"eve-cli", +[2,4654,4663], +"web3-e", +"xactly6", +[2,4665,4666], +[0,4672,0,4557,2523], +"web3-fruit", +"webpack-", +"bundle-", +[0,1459,148,187,153,180,157], +[1,2343,4697], +"analyzer", +[2,4671,4674], +[2,4670,4675], +[2,4670,200], +"dev-middleware", +[2,4670,4678], +[3,4679,12], +[2,4680,36], +"hot-", +[2,4682,2663], +[2,4670,4683], +[2,3097,4406], +[2,4670,4685], +[3,4686,9], +"erge", +[2,4687,4688], +"node-e", +"xternals", +[2,4690,4691], +[2,4670,4692], +"sources", +[2,4670,4694], +"webshot", +[0,4698,0,4557,2523], +[0,1459,182,148,29468,187,153,180], +"websocket", +[1,2343,4701], +[0,4725,0,4557,2537], +"webtorrent", +"webworker-threads", +"weinre", +"whatwg-fetch", +"when", +"which", +"winreg", +"winston", +"-daily-rotate-file", +[2,4709,4710], +"winston-", +"trans", +"transport", +[2,4712,4714], +"wiredep", +"word-wrap", +"word", +"wrap", +"wordwrap", +"work", +"box-webpack-plugin", +[2,4721,4722], +"world-toy-kill", +[0,1459,182,148,6127,29468,187,180], +"wrap-ansi", +"wrench", +"write-file-atomic", +"ws", +"x-ray", +"xhr", +"xml-", +"xml-js", +"xml2js", +"xml2json", +"xmlbuilder", +"xmldom", +"xmlhttprequest", +"xpath", +"xregexp", +"xss", +"xstate", +[1,2343,4773], +"xterm", +"yaml", +"yamljs", +"yargs", +[2,4747,1574], +"yarn", +"pkg", +"yarnpkg", +"yarnrc", +"yauzl", +"yeoman-environment", +"yeoman-", +[2,4755,1179], +"yn", +"yo", +"yoctocolors-cjs", +"yonode", +"yosay", +"zmq", +"zod", +"zod-", +"chemas", +[2,2666,4765], +[2,4764,4766], +"zombie", +"zone.js", +"zuul", +[2,667,1651], +[2,672,4406], +[0,4792,0,4801,2523], +"@nx/jest", +[2,667,4270], +"framer-motion", +"teajusgula", +"@mui/s", +"tyle", +"d-engine", +[2,4779,4780], +[2,4778,4781], +"jsdoc-parse", +"@comm", +"ercetools-frontend/constants", +[2,4784,4785], +"shift", +"downshift", +[3,3605,9], +"ocus-visible", +[2,4789,4790], +[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6133,111,174], +[2,3388,4794,4963], +[3,18878,12], +[3,1705,9], +[2,4795,3582], +"devDependencies", +"keywords", +"ts", +[2,4837,686], +[0,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130,6148,6092,1459,6094], +[3,3,7], +"field", +[2,4802,4803], +[2,4802,3473], +[2,4802,2649], +"@types/", +[2,4807,3911], +"big.js", +[3,1849,9], +"lement-equals", +[2,4810,4811], +[1,2343,4918], +"adaptor-generate", +[2,4802,4814], +[3,4815,15], +[2,4816,1383], +"@alifd/a", +"pi-extractor", +[2,4818,4819], +[2,1262,3286], +[2,4802,4821], +[2,1910,57], +[2,4802,4823], +"@alifd/d", +"ts-generator", +[2,4825,4826], +[2,1884,3286], +[2,4802,4828], +"meet-react", +[2,4802,4830], +"sass-", +"mapper", +"sass-mapper", +[2,4802,4834], +[3,4835,12], +[3,4793,38], +[2,4867,4924], +"tracker", +[2,4836,4839], +[3,4835,11], +[2,4841,4823], +"@alifd/s", +"lint-co", +"-next", +"nfig-next", +[2,4844,4846], +[2,4779,4847], +[2,4843,4848], +[3,81,21], +[2,4850,1219], +[2,4807,1175], +"@types/b", +"ig.js", +[2,4853,4854], +"@types/chai", +"@types/c", +"lassnames", +[2,4857,4858], +"@types/co", +"@types/e", +"nzyme", +[2,4861,4862], +[2,4807,2151], +"@types/glob", +[2,4807,2720], +[3,4793,25], +"jsonp", +[2,4807,4868], +[2,4807,1209], +".clonedeep", +[2,4870,4871], +"@types/md5", +[2,4807,202], +[2,4807,3564], +[3,4875,16], +"ustom-", +[2,4877,3583], +[2,4876,4878], +[3,4808,12], +[3,4808,13], +[2,4881,1582], +[2,4881,965], +[2,4881,3875], +[3,4884,14], +"outer-dom", +[2,4885,4886], +[3,4808,14], +[2,4888,3903], +[2,4807,4320], +[2,4807,2924], +[2,4807,4747], +[3,1203,14], +"spower", +[2,4893,4894], +[2,2168,1894], +[2,1199,4896], +[3,1245,30], +[2,4898,3426], +"proto", +"-to-assign", +[2,4900,4901], +[2,1226,4902], +"displayname", +[2,1861,4904], +[2,1249,4905], +[2,3195,2874], +"e-polyfill", +[2,1557,4908], +"css-s", +"plit-webpack-plugin", +[2,4910,4911], +[2,1863,3733], +[3,1924,15], +"ypress", +[2,4914,4915], +[2,2068,4111], +[0,4943,0,4801,2537], +"html5shiv", +[3,2925,9], +"driver-launcher", +[2,4920,4921], +[2,3108,588], +"ssets", +"mochawesome", +"-package-importer", +[2,3342,4926], +[2,3388,16690,4935], +"react-axe", +"ropper", +[2,3805,4930], +"react-dr", +"aggable", +[2,4932,4933], +"c-app", +"ve", +"react-live", +"true", +"sass-true", +"simulate-event", +"solarlunar", +[3,4323,17], +[0,182,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6133,111,174], +[2,4950,4951], +"recommended", +[2,4942,4945], +[3,4323,11], +"sstree-validator", +[2,4947,4948], +[3,662,27], +"dev-authentication", +"ts-mocha", +[1,2343,4969], +[2,4950,4956], +"tsconfck", +[3,25922,13], +"fusion", +" design", +[2,4957,4958], +"ui toolkit", +"mponents", +[2,3808,4961], +"components", +"design", +"front", +"end", +"frontend", +[2,4970,4971], +[0,4979,0,4983,2537], +[3,4786,14], +"/http-user-agent", +[2,31787,4980], +"Angular CLI", +"Angular ", +"DevKit", +[2,4974,4975], +"devkit", +"sdk", +[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6158,111,174], +"cli-lib", +[2,812,2220], +"@svgr/babel-preset", +[0,6148,6092,1459,6094,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130], +"blue", +[2,4807,4676], +"blueprints", +" generation", +[2,1501,4987], +"scaffolding", +"tool", +"tooling", +[2,1030,4993], +"-swc", +[1,2343,4998], +[2,5559,705], +[2,4997,4999], +"moment-loca", +[0,5003,0,4983,4139], +[3,8303,18,2], +"svg-url-loader", +"development", +"thread-loader", +[0,6164,164,167,137,159,177,162,180,157,140,6166,171,116,150,155,122,169,119,146,111,6168,174], +[1,2343,5005], +[0,5006,0,4983,4139], +[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,6173,146,111,174], +[1,2343,5008], +[0,5011,0,4557,2487], +[2,4807,4996], +[2,6776,1987], +[0,6178,1459,16485,182,148,29468,159,187,153,185,146], +"@jridgewell/sourcemap-codec", +[1,2343,5014], +[0,5015,0,4557,2537], +[0,1459,182,148,29468,159,187], +[1,2343,5017], +[0,5018,0,4557,4139], +[0,16485,182,148,187,153,191], +[1,2343,5020], +[0,5021,0,5022,2487], +[0,1459,148,187], +[0,6092,1459,6094,6192,6100], +[1,2343,5024], +[0,5025,0,5026,2443], +[0,16485,182,187,153,6200], +[0,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130,6092,1459,6094,6192,6100], +[2,29,4958], +[1,2343,5029], +[0,5030,0,4557,4139], +[0,1459,148,187,185,146], +[1,2343,5032], +[0,5033,0,5026,2399], +[0,16485,187], +[1,2343,5035], +[0,5036,0,4557,2537], +[0,1459,182,148,6215,6127,180,143,6217], +[1,2343,5039], +"xhr2", +[0,5040,0,4557,2399], +[0,1459,182,148,29468,187,153,171], +[1,2343,5042], +[0,5043,0,4557,2523], +[0,1459,16485,182,148,6215,29468,187,153,180,185,191,143], +[1,2343,5045], +[0,5046,0,4557,4139], +[0,1459,182,148,167,29468,187,153,157], +"@bang88/react-native-ultimate-listview", +[3,444,19], +[2,5048,970], +"@rc-component/mini-decimal", +"@types/s", +[1,2343,5053], +[0,5072,0,4557,2443], +"hallowequal", +[2,5051,5054], +"with", +[2,3023,5056], +"css-color", +[2,3370,5058], +"rc-field-form", +"codegen", +[2,3862,5061], +[3,5062,15], +"llapsible", +[2,5063,5064], +"modal", +"-popover", +[2,5066,5067], +[2,3862,5068], +"ity-types", +[2,614,5070], +[0,1459,16485,182,148,29468,159,187,153,180,191,143], +[2,2809,4009], +[2,45,5073], +[2,41,5074], +[2,41,2041], +"@rea", +"ct-native-community/eslint-config", +[2,5077,5078], +[3,5079,9], +"vigation/native", +[2,5080,5081], +[3,5082,18], +[2,5083,2873], +[2,972,4009], +"@types/j", +"@types/jest", +"@types/p", +"rop-types", +[2,5088,5089], +[2,4881,970], +[3,1113,11], +"palettes", +[2,5092,5093], +"-demo-data", +[2,701,5095], +[2,1114,5096], +"bisheng", +[1,2343,5101], +"enquire.js", +[0,5126,0,4557,2537], +"jsonml.js", +"metro-react-native-babel-preset", +[3,3822,9], +"ument-title", +[2,5104,5105], +[3,2197,13], +[2,1246,5107], +"gesture-handler", +[2,3862,5109], +[3,5069,15], +"cker", +[2,5111,5112], +"reanimated", +[2,3862,5114], +"area-context", +[2,4099,5116], +[2,3862,5117], +[3,5118,14], +"creens", +[2,5119,5120], +"web", +[2,3862,5122], +"shell-", +[2,5124,594], +[0,1459,182,148,6164,6127,29468,187,153,180,143], +"ant", +[3,4962,15], +"frame", +"framework", +"mobile", +" native", +[2,89,5132], +[1,2343,5135], +[0,5136,0,4557,2537], +[0,1459,182,148,6215,29468,187,153,180,191,143], +[1,2343,5138], +[0,5140,0,4557,2537], +[2,4870,3020], +[0,182,148,29468,187,153], +[1,2343,5142], +[0,5143,0,4557,2487], +[0,1459,148,153,143], +[1,2343,5147], +[3,5075,17], +"@inline-svg-unique-id/react", +[0,5148,0,5149,4139], +[0,27715], +[0,6105,6106,6038,1936,6108,6110,89,5128,6092,1459,6094], +[1,2343,5151], +[0,5163,0,4557,2487], +[2,3670,1575], +[2,5928,5155], +"@auth/core", +"junit-xml-formatter", +"adapt", +"er-auto", +[2,5156,5157], +[2,836,5158], +[2,836,3383], +"et-cookie-parser", +[2,5051,5161], +[0,1459,16485,182,148,29468,187,153,191,143], +"entication", +[2,1303,5164], +"authjs", +"sveltekit", +"oidc", +"wordless", +[2,4661,5169], +[1,2343,5172], +[0,5173,0,4557,2443], +[0,16485,148,187,153], +[1,2343,5177], +"fs-readdir-recursive", +[3,5012,12], +[0,5181,0,5022,2443], +"-mapping", +[2,4251,5178], +[2,5176,5179], +[0,16485,6268,6271,6272,28829,148,29468,187,153,15716], +[3,4864,10], +"dir-recursive", +[2,3917,5183], +[2,5182,5184], +[3,56,14], +"fixture", +"-test-runner", +[2,5187,5188], +[2,1221,5189], +[2,5186,5190], +[2,5195,5196], +"6to5", +"es6", +[3,7710,11], +"ut-extension", +"transpile", +"transpiler", +[1,2343,5201], +[2,7623,671], +[0,5202,0,5022,2443], +[0,148,187], +[1,2343,5205], +"ighlight", +[0,5206,0,5022,2537], +[0,16485,182], +"meta", +"-resolve", +[2,5207,5208], +[2,2701,5209], +[1,2343,5212], +[0,5213,0,5214,2537], +[0,27715,3021], +[0,6105,6106,6038,1936,6108,6110,188,6284,6285,6287,6092,1459,6094], +"@ampproject/remapping", +[2,54,1179], +"compil", +"ation", +"-targets", +[2,5218,5219], +[2,5217,5220], +[2,5186,5221], +"module-", +[2,353,591], +[2,5223,5224], +[2,5186,5225], +[3,56,13], +[2,5227,591], +"emplate", +[2,102,5229], +[1,2343,5232], +[0,5234,0,5022,2537], +"gensync", +[0,16485,182,148,6127,29468,187,153,180], +[2,4850,2124], +[3,83,24], +"flow-", +[2,4293,553], +[2,5237,5238], +[2,5236,5239], +[2,5236,1239], +"nvert-", +[2,5242,4227], +[2,4860,5243], +[2,4807,1676], +"@types/g", +"ensync", +[2,5246,5247], +[3,4808,9], +"solve", +[2,5249,5250], +[3,5162,9], +"mver", +[2,5252,5253], +[1,2343,5262], +"classes", +"const", +"harmony", +"let", +"modules", +"var", +[0,5263,5264,5265,2523], +[0,6297,6298,6301,6302,6303,26379,4747], +[0,6306,6307,6498,4874,4892,2151,6476], +[0,1566,1529,200], +[1,2343,5267], +[0,5268,0,5269,2523], +[0,7,53,5830,87,6316,6318,31736,1364,6320,1448,1457,1512,1525,1595,6323,1866,2061,2071,2151,2070,2036,2626,2681,2856,1209,3079,6326,6327,3127,3183,5732,6330,6331,3527,23802,3725,4135,4200,5969,6334,4473,3348,6335], +[0,6111,1098,1745,4963,1237,2218,4796,1783], +[1,2343,5280], +[3,5222,15], +"heck-duplicate-nodes", +[2,5271,5272], +[2,5186,1182], +[2,4284,57], +[2,5186,5275], +"-identifier", +[2,1155,5277], +[2,5186,5278], +[0,5283,0,5288,2537], +"codes", +"charcodes", +[0,6343,2700], +"javascript", +"tc39", +"ecmascript", +"skia-canvas", +[0,6345,6346,5130,2018,6347], +[1,5293,5296], +"@egjs/flicking", +"reate-class-features-plugin", +[2,5271,5291], +[0,8389,4799], +[3,56,21], +[2,5294,1187], +[0,8391,5298], +[3,1198,12], +1732406400000, +[1,5293,5300], +[0,8391,5301], +1733011200000, +"moo", +"luxon", +"hamljs", +"liquidjs", +"iso-639-1", +"@iarna/toml", +"-urls", +[2,3692,5308], +[3,3938,10], +[2,5310,1585], +"bcp-47-normalize", +[3,1705,11], +[2,5313,2218], +"@11ty/", +"lodash-", +"custom", +[2,5316,5317], +[2,5315,5318], +"please-upgrade-node", +[2,62,3007], +[2,5313,1633], +[2,5315,5322], +"@sin", +"dres", +"orhus/slugify", +[2,5325,5326], +[2,5324,5327], +[3,5321,15], +"dev-", +[2,5330,36], +[2,5329,5331], +[1,2343,5345], +"@vue/", +"server-", +[2,5335,3902], +[2,5334,5336], +"plugin-vue", +[2,5329,5338], +[3,5339,22], +"syntax", +[3,2600,9], +[2,5341,5342], +[2,5340,5343], +[0,5350,5358,5359,34352], +"-site-generator", +[2,2947,5346], +[3,5347,11], +"ssg", +[0,2626], +"website", +"jekyll", +"blog", +"templates", +"11ty", +"liquid", +"haml", +[0,48,53,87,37046,6371,27928,6372,5583,811,816,6373,11275,1165,1367,6375,6376,1492,1610,1177,1907,1937,1938,1982,6379,2203,2205,6382,2626,6383,2739,2765,2814,2297,2876,2881,6385,2889,2895,2898,6387,2910,3019,3363,3400,3561,3566,6389,4039,4042,6390,21688,4939,4167,4320,6392,4072,6393], +[0,1623,2278,6396,6398,6400,5130,5122], +[1,2343,5361], +[0,0,0,5372,2537], +"parcel", +"ytes", +[2,4853,5363], +"enchmark", +[2,4853,5365], +"@parcel/packager-ts", +"@parcel/", +"er-typescript-types", +[2,353,5369], +[2,5368,5370], +[0,1623,57], +[1,2343,5377], +"stringifier", +"heet", +"stylesheet", +[0,0,0,5378,2487], +[0,1623,207], +[1,2343,5380], +[0,0,0,5426,2537], +"@advanced-rest-client/arc-icons", +[3,5381,26], +[2,5382,3127], +[3,5381,22], +"-copy", +[2,1492,5385], +[2,5384,5386], +"-snippets", +[2,1501,5388], +[2,2655,5389], +[2,5384,5390], +[2,3115,592], +[2,5384,5392], +"@anypoint-web-components/anypoint-button", +[3,5394,34], +"collapse", +[2,5395,5396], +"drop", +"dropdown", +[2,5395,5399], +"item", +[2,5395,5401], +"box", +"listbox", +[2,5395,5404], +[3,64,17], +"mf-helper-mixin", +[2,5406,5407], +[3,64,20], +"annotation-document", +[2,5409,5410], +"body-", +[2,5412,1746], +[2,5409,5413], +"example-generator", +[2,5409,5415], +"ers-document", +[2,3193,5417], +[2,5409,5418], +"param", +"eters-document", +[2,5420,5421], +[2,5409,5422], +"responses-document", +[2,5409,5424], +[0,1623,6415,57], +"umentation", +[2,4117,5427], +[2,1965,5428], +[2,5409,5429], +[3,64,16], +"method-", +"label", +[2,5432,5433], +[2,2655,5434], +[2,5431,5435], +[1,2343,5448], +"lit-html", +[2,7623,594], +"demo-helper", +[2,5382,5440], +"-aut", +"horization", +[2,5442,5443], +[2,3424,5444], +[2,5384,5445], +[3,5397,35], +[0,5481,0,5485,2537], +"heckbox", +[2,5447,5449], +[3,5402,35], +[2,5451,1020], +[2,5395,592], +[3,64,21], +"odel-generator", +[2,5454,5455], +"navigation", +[2,5409,5457], +[3,5425,22], +"quest", +[2,5459,5460], +[3,5430,22], +"rver-selector", +[2,5462,5463], +[3,192,13], +"onfig-conventional", +[2,5465,5466], +"@open", +"-wc/eslint-config", +[2,5468,5469], +[3,5470,9], +"testing", +[2,5471,5472], +"@web/dev-server", +"@web/", +[2,5475,1187], +"-playwright", +[2,5476,5477], +[2,5438,4406], +[2,4524,5479], +[0,220,3681], +"api-co", +[2,5482,4961], +[2,5432,1745], +[0,1623,2741,6421,6422,3561,6425,6426,3585], +[1,2343,5487], +[0,5488,0,5492,34352], +[0,3688], +[3,465,9], +"typed", +[3,5428,9], +[0,1623,5317,6433,3561,6425,6434,3583,6435,6436,6437], +[1,2343,5503], +"-node/core", +[2,5491,5494], +[2,5490,5495], +[2,5489,5496], +"@wry/caches", +"@wry/", +"@hapi/eslint-plugin", +"equality", +[2,5499,5501], +[0,0,0,5507,2537], +"@wry/trie", +"optimis", +"optimism", +[0,1623,3681,6443], +"response", +"-iterator", +[2,5508,5509], +"symbol", +"-observable", +[2,5511,5512], +"ts-invariant", +"zen-observable-ts", +[1,2343,5524], +"@arethetypeswrong/cli", +[3,107,13], +"hange", +"log-github", +[2,5519,5520], +[2,5518,5521], +[3,5497,10], +[0,5538,5539,5543,2523], +"ools/merge", +[2,5523,5525], +[3,5526,15], +[2,5527,2844], +[2,5527,594], +"@size-limit/esbuild-why", +[3,5530,12], +"pres", +"et-small-lib", +[2,5532,5533], +[2,5531,5534], +"@tsconfig/node20", +"@types/f", +[0,6450,6452,6453,5930,6455,6457,5153,6463,6465,30874,6467,6470,6471,1437,1483,1525,1676,6473,2089,2070,6474,2709,2744,2753,6475,3060,6476,5303,3171,3188,3261,3730,27168,4135,6479,4351,4507,6481,4745,6482], +[0,6487,6488,19438,19181,442,603,826,4856,5245,6493,6494,4864,6497,6309,6498,6501,6503,6505,6507,4874,6510,5254,6512,6515,6519,6520,1009,1011,1429,6522,1509,6525,1719,1177,1938,1953,1982,2026,2151,6526,2899,3257,3421,1894,6527,4172,4193,4196,6530,4449,4474,4481,4508,91], +[2,4807,2609], +"-fetch", +[2,4874,5541], +[0,5472,5982,1649,6532,6533], +[1,2343,5548], +"use-sync-external-store", +[2,4807,5545], +"rule", +[0,5549,5553,5565,2537], +[0,1415,1437,1468,1483,2151,4468], +"rule-tester", +[2,1010,5550], +[2,1010,553], +[0,192,5467,4864,4866,5087,6541,6544,6547,1009,1011,1109,1481,1836,1177,1895,1955,2675,1192,6551,3165,3203,3403,1894,6552,6554,91], +"local-", +"local-rules", +[2,1921,5555], +[3,1961,20], +[2,5557,4643], +"graphql-", +"graphql-ws", +"patch-package", +[3,3829,12], +"boundary", +[2,5562,5563], +[0,6557,1745], +[1,5293,5567], +[0,8391,5568], +1730419200000, +"ts-api-utils", +[3,1913,9], +[2,4468,5570], +"wait-for-observables", +"web-streams-polyfill", +[1,2343,5577], +"apollo", +"client", +[0,0,0,2514,2537], +[1,2343,5579], +[0,0,0,2514,2487], +[1,2343,5590], +[3,66,10], +[2,5581,57], +[2,812,1172], +[3,1217,14], +"ource", +"-support", +[2,4226,5586], +[2,5585,5587], +[2,5584,5588], +[0,0,0,2514,2443], +[1,2343,5594], +"api", +"asyncapi", +[0,5595,5596,5597,4139], +[0,5192,27292,7605,5439,1437,1448,1623,7606,7608,7610,2822,1209,3105,5946,7612,7617,3124,7621,29457,4110,4213,4361,11143], +[0,7624,5200,7631,7632,7634,7637,4870,7639,7641,4874,7643,7677,23203,1165,668,7645,2600,26503,7648,3400,3561,3672,2278,26573,91,1984], +[0,1783,7650,1739,7651,1745,4990,2041,1179], +"@nicolo-ribaudo/eslint-scope-5-internals", +[1,2343,5605], +[3,1006,9], +[2,5600,671], +"-manager", +[2,1993,5602], +[2,1010,5603], +[0,5606,5607,5608,34352], +[0,4484,4548,7658,7660,7663,7664,7665,7668,7669], +[0,4493,7671,1177,1984,1894,1610,91,4874,7672,7674,7677,7678,7681,7685,7690], +[0,1721,5592,4030,7692,7693], +[3,81,22], +"ecorators", +[2,5609,5610], +[1,2343,5620], +[3,1143,16], +"concat", +[2,5613,5614], +"polyfill-es-shims", +[2,1199,5616], +"getownpropertydescriptors", +[2,3436,5618], +[0,5621,5622,5623,2537], +[0,1525], +[0,2899,1894], +[0,553,4532,1776,605,4508,1739,1745,7701], +[1,2343,5626], +[2,4850,72], +[0,5627,5628,5597,2523], +[0,7708,7709,7710,7715,7718,7721,354,7723,7725,4865,7729,7730,1091,1149,1168,7731,1437,1759,2075,2070,2600,2628,2670,2822,2854,3173,3181,3322,4167,4183,4213,4393,7734,7735,4648,4747], +[0,7737,7740,7744,7637,4870,7746,4874,7749,7752,4892,1009,1011,1178,668,1177,1966,2675,2990,1209,4468,4474,91], +[1,2343,5632], +[3,5625,28], +[2,5630,75], +[0,5633,5634,5597,2487], +[0,7605,1437,7608,7610,2822,1209,3105,5946,7612,7615,7617,3124,7621,4110,4213], +[0,53,5241,87,7634,5087,7637,4870,7639,7641,7759,4874,7643,7761,7762,7763,1165,1178,668,7645,1177,1966,2600,1192,7648,3561,3672,1894,3957,4468,91], +[1,5293,5641], +"mpat-data", +[2,52,5636], +[2,4850,77], +[3,5422,10], +[2,5236,5639], +[0,8391,5642], +1734825600000, +[1,2343,5644], +[0,5645,5646,5647,2537], +[0,5328,842,975,7788,1364,1437,1470,1536,7791,2040,2075,2141,7793,7794,2600,2856,3105,5944,3107,5946,7796,7797,3322,3742,2278,7798,7799,4227,4228,4232,7800,3709,3348,7801], +[0,192,5467,6061,6063,7804,7806,7808,7810,4864,7639,7641,4874,7812,7814,7816,7819,7822,1009,1011,1414,7824,2151,2675,3758,3951,4131,91], +[0,38,5995,27,5130,7826,7827,7828], +[1,2343,5649], +[0,5654,5661,5664,2399], +[3,5226,21], +"imports", +[2,5650,5651], +[3,5617,22], +[0,7833,7837,7839,7840,19344,7847,842,7858,1165,1393,1628,1630,1177,1895,1955,1959,1961,2203,2675,16860,3177,3561,3618,3678,2278,4111,4307,4320,4323,5978,7873,4409,2924,4677,4686,4689], +"corejs2", +[2,5653,5655], +[3,5656,28], +[2,5657,1278], +[3,3957,11], +[2,5653,5659], +[0,7849,2990], +[3,99,21], +[2,5662,1278], +[0,4967,4329,7880,676,6435,1237,7881], +[1,2343,5667], +"@edsdk/n1ed-react", +[0,5668,5670,5671,34352], +[0,7639,1429,1437,3025,3105,3467,3718], +"derequire", +[0,27134,4856,7889,4874,7895,2675,2990,1894,91,1984], +[0,1804,1739,1745,5592,91,7897,7900], +[1,2343,5673], +[0,5703,5705,5708,2523], +[3,5279,24], +"option", +[2,5674,5675], +"bugfix-firefox-class-in-computed-class-key", +[2,79,5677], +[3,5678,21], +"safari-", +"-initializer-scope", +[2,4803,5681], +[2,4626,5682], +[2,5680,5683], +[2,5679,5684], +[3,5685,28], +"id-destructuring-collision-in-function-expression", +[2,5686,5687], +"v8-spread-parameters-in-optional-chaining", +[2,5679,5689], +[3,5690,25], +"-class-fields-redefine-readonly", +[2,3346,5692], +[2,5691,5693], +"private-", +[3,3746,11], +"-object", +[2,5696,5697], +[2,5695,5698], +[2,69,5699], +"generators", +[2,1152,5701], +[0,5652,97,7905,7907,7910,7913,1573,1874,7915,4227,7917], +[2,4850,1229], +[0,53,7922], +"static-", +[2,5706,1359], +[0,592,1832,89,1623,7165], +"ions", +"assertions", +[2,2701,5710], +[2,4850,5711], +[3,5712,29], +"ttributes", +[2,5713,5714], +[3,5712,28], +[2,5716,5207], +[1,2343,5719], +[0,5720,5722,5708,2537], +[0,362,7931,7910,7932,7933], +"logical-assignment-operators", +[0,7935,91], +[1,2343,5724], +[0,5725,5726,2514,2523], +[0,97,362,7943,7910,7946,7933], +[0,7935,7948,89,91], +[1,2343,5729], +"meric-separator", +[0,0,0,2514,4139], +[1,2343,5733], +"ptional-catch-binding", +"neotraverse", +[0,5735,5794,5795,2523], +"haining", +[0,1996], +[2,4850,5699], +"top-level-await", +[2,4850,5737], +"-sets-regex", +[2,3656,5739], +[2,4850,5740], +"arrow-functions", +[2,5236,5742], +[3,5743,25], +"sync-", +[3,1626,9], +[2,2168,5746], +[2,5745,5747], +[2,5744,5748], +[3,5749,30], +[2,5750,1222], +"-scoped-functions", +[2,1359,5752], +[2,5236,5753], +[3,5754,34], +[2,5755,3642], +[2,5236,1229], +[3,5757,30], +[2,5758,5707], +[3,5757,29], +[2,5760,3595], +[3,5757,25], +"omputed-properties", +[2,5762,5763], +"destructuring", +[2,5236,5765], +[3,5766,25], +"otall-regex", +[2,5767,5768], +"uplicate-keys", +[2,5767,5770], +[3,5771,34], +"named-", +"capturing-groups-regex", +[2,5773,5774], +[2,5772,5775], +"ynamic-import", +[2,5767,5777], +"expo", +"nentiation-operator", +[2,5779,5780], +[2,5236,5781], +[3,5782,28], +"rt-namespace-from", +[2,5783,5784], +[3,5240,25], +"or-of", +[2,5786,5787], +"unction-name", +[2,5786,5789], +[3,2854,11], +[2,5791,591], +[2,5236,5792], +[0,1414,2931,2899,8099,1177,3456,4039,4042,4135,8098,1894,4614,91,3401,5601,1006,17529,4057,5552,4071,1011,8097], +[0,1177], +"literals", +[2,5236,5796], +[3,5797,25], +"ogical-assignment-operators", +[2,5798,5799], +[3,5241,25], +"ember-", +"ion-literals", +[2,2026,5803], +[2,5802,5804], +[2,5801,5805], +[3,5241,32], +"amd", +[2,5807,5808], +[2,5807,4376], +"umd", +[2,5807,5811], +[2,5236,5775], +[3,5813,25], +"ew-target", +[2,5814,5815], +"ullish-coalescing-operator", +[2,5814,5817], +[3,5818,26], +[2,5819,5728], +[2,5236,77], +[3,5821,31], +[2,5822,4340], +[3,5821,25], +[2,5824,5731], +[3,5825,34], +[2,5826,5734], +[3,5640,25], +"rivate-methods", +[2,5828,5829], +[3,5830,32], +[2,5831,5698], +[3,5830,26], +"operty-literals", +[2,5833,5834], +[3,83,25], +"egenerator", +[2,5836,5837], +[3,5838,26], +"d-words", +[2,4146,5840], +[2,5839,5841], +"short", +[2,3619,1228], +[2,5843,5844], +[2,5236,5845], +[3,5846,25], +[1,2343,5868], +"pread", +[2,5847,5849], +"ticky-regex", +[2,5847,5851], +[2,5236,1243], +[3,5853,25], +"ypeof-symbol", +[2,5854,5855], +"unicode-", +[2,5857,1106], +[2,5236,5858], +[3,5859,32], +[2,4635,1108], +[2,5860,5861], +[2,5860,1108], +"sets-regex", +[2,5860,5864], +[2,88,5260], +[2,1593,4097], +[0,0,0,5869,2523], +[0,5284,6939,1177], +[1,2343,5871], +[0,5872,5884,5885,2537], +[0,8110,1461,8111,1757,2017,8113,6327,8114,3127,3191,8116,3502,8119,3555,3725,3744,8122,4213,8123,8126,8127], +"act-jsx", +[2,5839,5873], +[3,5874,30], +"display", +"-name", +[2,5876,5877], +[2,5875,5878], +"-development", +[2,5874,5880], +"pure-annotations", +[2,5875,5882], +[0,8129,8130,8132,4856,8136,4863,8139,5087,8141,8144,8146,8147,4874,8149,5090,4880,4883,8152,8155,4891,8157,4892,1009,1011,8158,1311,1567,1584,1593,1596,1628,1651,1843,8160,8161,1177,1938,1959,1961,2135,2651,2675,1192,2822,8163,8165,3190,3471,1894,3720,3775,89,3824,3836,4039,4167,4201,4307,4315,4468,4474,4484,91,8166,1002,2924,4677,4681,4693], +[0,8168,8170,8171,6975,8172,8173,1745,8175], +[1,2343,5887], +[0,5890,5892,5893,2537], +[3,5856,28], +[2,5888,1508], +[0,8181], +[3,1261,12], +[0,90,972,4880,4883,1030,89,3824,8187,1541], +[0,8190,8191,5399,4403,8192,8194,89,3824], +[1,2343,5895], +[0,0,0,5897,2537], +"pirates", +[0,8199,2414,8201,8203,6941,8204,1623,2278,6400,5122,8206,6884], +"clone-deep", +[1,2343,5900], +[0,0,0,5901,34352], +[0,8199,2414,8201,8203,447,8211,1623,2278,6400,5122,8206,6884], +[1,2343,5903], +[0,5904,0,5905,4139], +[0,8218], +[0,2414,7176,8220,1017,8221,1367], +[1,2343,5907], +[0,5904,0,5905,2537], +[1,2343,5909], +[0,0,5910,5911,2487], +[0,53,8229,87,90,92,192,5467,442,449,7008,452,6061,21120,6063,966,968,972,5087,4880,4883,1393,1423,1570,1610,1177,1895,1938,1939,1947,1955,1959,1961,1976,1982,2203,2675,1192,2780,1894,3720,89,3824,4039,4131,4468,4474,4493,91,4523], +[0,8220,2132,89,5284,8221,45], +[1,2343,5913], +[0,5914,5916,5918,34352], +[0,3951], +"to-fast-properties", +[0,5087,4874,1009,1011,1177,1879,1883,1895,1938,1939,1947,1955,1192,2794,1894,4468,4469,4474,4508,91], +[2,29288,594], +[0,91,5130,36,5995,3469], +[1,2343,5920], +[0,5937,5958,5964,4139], +"@api", +"devtools/json-schema-ref-parser", +[2,5921,5922], +[3,105,13], +"web-", +[2,5925,4963], +[2,5924,5926], +[3,221,10], +"gherkin-streams", +[2,5928,5929], +"@iframe-resizer/child", +[3,5931,16], +"parent", +[2,5932,5933], +"awilix", +"bpmn-js", +[0,8245,457,1804,8248], +"of", +"-allof", +[2,4381,5939], +[2,2845,5940], +[3,3107,13], +"bbr", +[2,5942,5943], +"ttrs", +[2,5942,5945], +[3,3112,14], +"detabs", +[2,5947,5948], +"multim", +"d-table", +[2,5950,5951], +[2,3108,5952], +[3,4923,13], +"lantuml-ex", +[2,5954,5955], +"task", +[0,8252,4874,1009,1011,1610,1804,8256,1177,1879,1883,1895,1938,1947,1955,1894,4469,4474,4508,91], +"-lists", +"task-lists", +[2,3108,5960], +"-viewer-element", +[2,3512,5962], +[0,91,5130,1804,36,5995], +[1,2343,5976], +"prince", +"svg-", +"pan-zoom", +[2,5967,5968], +[3,4369,11], +[2,5970,1724], +"reso", +"urce-inliner", +[2,5972,5973], +[2,5925,5974], +[0,5979,5916,5984,34352], +"-scss", +[2,4323,5977], +[0,457,8263,8264,24156,1364,2863,3951], +"md", +"bpmn", +"bdd", +"feature", +[0,91,5130,2026,3469,36,5995], +[1,2343,5986], +[0,5987,5988,5991,2487], +[0,31740,8271,8272,8273], +[0,8275], +"exit-hook", +[2,1152,5989], +[0,2220,8277,1745,1783,8278], +[1,2343,5994], +"loki", +[0,5996,5997,5998,2523], +"backend", +[0,32359,6446,8273,8272], +[0,8286,8275], +[0,467,2220,8277,1745,1932,1783,8278], +[1,2343,6012], +[3,107,12], +"y-release-plan", +[2,1133,6001], +[2,6000,6002], +[3,6003,13], +"ssemble-release-plan", +[2,6004,6005], +[3,5522,25], +"onfig", +[2,5518,6008], +[2,6000,2656], +"dependen", +[0,6013,0,6046,2537], +[0,53,87,8292,8294,8296,1165,1195,8297,1593,1610,1628,1630,2092,8301,3177,3561,3618,8304,2278,8306,4111,4383,4027,2924,4677], +"ts-graph", +[2,6011,6014], +[2,2183,6015], +[2,6000,6016], +[3,6017,16], +"release-", +"plan", +[2,6019,6020], +[2,6018,6021], +[3,6017,13], +[2,6023,2403], +[2,6000,2942], +"pre", +[2,6000,6026], +[2,6000,3917], +"-skip-package", +[2,4170,6029], +[2,6000,6030], +[2,6000,553], +"write", +[2,6000,6033], +"@man", +"ypkg/get-packages", +[2,6035,6036], +"editor", +[2,26670,26671], +"human-id", +"mri", +"p-limit", +"pref", +"erred-pm", +[2,6043,6044], +[0,2924,8309,8310,4967], +"spawndamnit", +"term", +"term-size", +[1,2343,6051], +[0,6053,6054,6060,2487], +"@mui/x-internals", +[0,8317,8320,8321,8324,8325,8328,8330,8333,8335,8337,8339,8341,8344,8346,8348,8350,8353,8354], +[0,8357,5500,8358,8359,8362,8364,4874,2036,2812,91], +[3,110,23], +[2,6055,592], +[3,449,25], +"free", +[2,6057,6058], +[0,5130,27,5592,5122], +"@semantic-release/changelog", +[3,6061,18], +[2,6062,3358], +"hub", +[2,6063,6064], +[2,1457,20], +"peer-deps-external", +[2,4049,6067], +[1,5293,6075], +"chat", +"reactjs", +" interface", +[2,4569,6072], +"ui kit", +[0,8391,6087], +"unication", +[2,1514,6076], +"conver", +"sation", +[2,6078,6079], +"toolkit", +"library", +"reusable", +"feed", +"social", +"talk", +1724872768784, +[1,2343,6089], +[0,6090,6091,6093,2523], +[0,8506,3776], +[0,192,5467,8509,8511,6061,6063,16480,1177,2675,2742,8512,2990,1894,4131,1984], +"ckeditor", +[0,1776,1894,4298,1745,5284], +"ckeditor 5", +"-feature", +[2,1459,6095], +[3,6096,10], +[2,6097,1932], +"dll", +[2,6097,6099], +[1,2343,6102], +[0,6103,6104,6114,2537], +[0,5917], +[0,11976,8520,26364,966,968,972,974,4874,4880,8524,8527,8528,8529,1030,1091,8531,1092,6685,8534,8536,6809,7250,1610,8537,8556,8538,7091,8539,2812,2832,8540,3165,8543,8544,8547,3400,89,3824,3833,3951,7080,7103,91,8550,7114,1983,8552,1984,6482,4763], +"wysiwyg", +"rich text", +"Editable", +[2,1563,6107], +"edit", +"editing", +"angular2", +"angular 5", +"ng", +[0,6659,7020,7130,6663,3833,6482,2812,7080,91,4763,7114,6809,7091,8558,7209,7250,7103,1091,7196,6685,8560,8561,8556,29291], +[1,2343,6116], +[0,6117,5795,6118,2537], +[0,4548], +[0,8571,8572,8573,8570,1885,8574,5592], +[1,2343,6120], +[0,6121,6122,6123,2523], +[0,8579,8582,8585,8181,3021], +[0,4039,188,4639], +[0,188,8588,8591,4967,5130,181,12,4627,4963,5001,837], +[1,2343,6125], +[0,6128,6129,6130,2537], +[3,153,22], +[2,6126,2389], +[0,7905,542,1668,3021], +[0,8597,4039,188,4639], +[0,188,8588,8591,4967,5130,181,4627,4963], +[1,2343,6146], +"ditor-balloon", +[2,151,6132], +"@jest/pattern", +"oper", +"al transformation", +[2,5218,6136], +[2,6135,6137], +"ot", +"colla", +"boration", +[2,6140,6141], +[3,6142,11], +[2,6143,4936], +"real-time", +[0,6149,6150,6151,2537], +"build", +[2,6097,6147], +[0,31874,8604,8605,8611,34224,8612,4174], +[0,8616,8608,4874,91], +[0,8618,8619,8620,1299,200,1523,6876,8622,1836,8623,1179,8624,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,8632,8633,4989,2184,8634,7009,6621,181,8635,4758,8636], +[1,2343,6153], +[0,6154,6155,6156,2399], +[0,4484,2735,8641], +[0,1192,2278,1437,2020,4146,8643,1177,4042,2151,2774,1894,4320,5087,4874,8645,6376,8647,30071,4328,8648,8651,8653,8654,8656,8659,8660,8661,1895,1011,8665,816,8669,8671,1009], +[0,2733,5130,8673,5131,1896,8674,8675,1591,1804,8677,8678], +[3,6133,27], +[2,6157,128], +[1,2343,6160], +[0,0,6161,6162,2537], +[0,4874,668,1894,4384,4483,4508], +[0,200,6876,8691,4964,7201,4719,176], +[1,2343,6169], +[2,117,2414], +"lignment", +[2,112,6165], +[3,132,9], +[2,6157,6167], +[0,6170,0,6171,2537], +[0,8697], +[0,91,1541,3421,1973,4504], +[1,2343,6174], +[2,6157,134], +[0,6175,6176,6177,2537], +[0,8703,8710,8712,8714,1461,8716], +[0,8719,842,968,972,974,7677,1177,1895,8724,2832,89,3824,91,1983,1984], +[0,4627,4963,8727,4964,5130,4967,8728,8729,5128,89,181,1487], +"blurhash", +[1,2343,6180], +[0,6181,6182,6183,2537], +[0,8744,6134,8752,8762,8755,554,4874,1107,1437,1458,29680,2215,8769,8734,8750,8765,8758,2797,8771,8737,8739,8746,2798,8747,8741,3170,3717,4207], +[0,8782,8776,8780,8778], +[0,1166,1172,4504,8784,2022,3497,8786,8787,2765,1192,2832,2899,8788,8790,2907,8791,8795,8745,4384,4389,1973,5472,91,2282], +[1,2343,6185], +[0,6186,0,2514,2537], +[0,6134,8801,8809,8806,4874,4892,1437], +[1,2343,6188], +[0,6189,6190,6191,2487], +[0,8818,1091,1092,1209], +[0,549,8826,1009,1011,1166,8832,1177,1895,1938,1955,2832,3421,1894,3875,8824,4039,4042,4052,4076,4079,4232,4474,4484,4508,91], +[0,1669,25,1781,8836,4967,1179,6847,7020,8838,2860,2844,8839,8691,8841], +[2,6097,1095], +[1,2343,6194], +[0,6195,6196,6198,2523], +[0,8846,1673,1209], +[0,7948,370,618,622,626,811,8850,816,6373,4863,5087,4880,4883,1009,1011,8158,1584,1843,1177,1895,1938,1955,1959,1192,2780,2832,3421,1894,89,3824,4039,4042,4052,8849,8853,4076,4079,4230,4468,4469,4484,4508,91,2924,4677,4681,555,560], +[3,191,21], +[0,29,3902,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +"atchdog", +[2,6197,6199], +[1,2343,6202], +[0,6203,6204,6205,2487], +[0,1209], +[0,8862,4863,5087,8860,4880,4884,1009,1011,8158,1610,1843,1177,1895,1938,1955,1959,1192,2832,3421,1894,89,3824,3876,3875,8824,4039,4042,4052,4076,4079,4468,4484,4508,91,555], +[0,89,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2343,6207], +[0,6208,6209,2514,2537], +[0,6059,8918,8923,8928,8926,8934,8921,8913,8931,8932,8894,8916,8892,8897,8906,8900,8887,8910,8902,8890], +[0,8937,5087,1192,4039,91], +[1,2343,6211], +[0,6212,6213,6218,34352], +[0,1110,1282,1437,1537,8942,2070,8944,2822,8947,3072,3181,3188,8949,4039,8951,8952,8954,8957,8959,4431,4562,4600,4603,8962], +[0,1173,8966,1255,1264,1596,1672,2835,2899,3421,8967,4100,4193,4255,4597], +"ndo", +[2,183,6214], +"select-all", +[2,117,6216], +[0,2278,4329,1623,2295,1745,4298,699], +[1,2343,6220], +[0,0,0,6221,2399], +[0,8980,8984,8987], +[1,2343,6223], +[0,6224,6225,6226,2523], +[0,8605], +[0,546,8997,8998,2992], +[0,2991,2992,200,5957,3392,9000,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], +[1,2343,6228], +[0,6229,6230,6231,2487], +[0,8703,1497,3867,9008,9011,4507], +[0,89,3824], +[0,4963,4964,4967,6082,3286,3287,89,181,630], +[1,2343,6233], +[0,6234,6230,6235,4139], +[0,1497], +[0,9026,4963,1666,4967,6082,3286,3287,3811,89,6901,181,630], +[1,2343,6237], +[0,0,0,6238,2523], +[0,4967,582,6082,3286,3287,89,6687,6649], +[1,2343,6240], +[0,0,6230,6241,2487], +[0,4963,8622,4967,6082,5066,3286,3287,89,181,630], +[1,2343,6243], +[0,6244,6230,6245,2487], +[0,9041,3911], +[0,4963,4967,6082,3286,3287,9044,9045,9047,89,181,630], +[1,2343,6247], +[0,6248,0,6249,2537], +[0,9054,595], +[0,89,3286,3287,181,4963,630,6082,4967,1501,5342,5341,9057], +[1,2343,6251], +[0,6252,0,6253,2399], +[0,1497,1639], +[0,89,3286,3287,181,6082,4967,1832,7165,7297], +[1,2343,6255], +[0,0,0,6256,2523], +[0,89,3286,3287,6082,4967,6687,582,6649], +[1,2343,6258], +[0,6259,0,6260,2537], +[0,1497,3847,3559,3744,97,9075,9076,9071,9074,3911,2609,4808], +[0,89,5128,5027,3132], +[1,2343,6262], +[0,6263,0,6264,2537], +[0,97], +[0,89,5128,5027,3132,45], +[1,2343,6266], +[0,0,6267,6273,2537], +[0,1192,3348,2675,1177,1209,1593,4474,4508,1894,1317,48,1193,91,53,5087,7819,3400,4870,107,192,5366,87,1978,3957,1895,1955,4514,92,603,9089,1011,5467,1009,61,78,76], +"color-parse", +"color-", +"convert", +[2,6269,6270], +"vanilla-colorful", +[0,1781,5592,9091,9093,1753,9094,4525,91,4799,5995,6400], +[1,2343,6275], +[0,6276,0,6277,2523], +[0,9100], +[0,1219,1783,9102,89,3984], +[1,2343,6279], +[0,6280,6281,6282,2399], +[0,608,606,1687,1209,3181,814,4135,4227,91,9111,9110,9113,9119,9121], +[0,9125,4870,5251,5254,1177,29339,9130], +[0,91,8172,9132,9133,9134,8623,1745,6432,4056,7897,4042,6374,4643,9135,9136], +"@aws/durable-execution-sdk-js", +"vue.js", +"vue component", +" component", +[2,6284,6286], +[1,2343,6289], +[0,0,6290,6291,2537], +[0,1177,9125,9141], +[0,6869,1745,2295,4298,9132,57,4255], +[1,2343,6293], +[0,6294,6295,6291,2537], +[0,1091,9153,814,606], +[0,1177,9156,5251,9125,9141], +[3,192,12], +[2,6296,1671], +[2,6296,671], +[3,6298,13], +"oad", +[2,6299,6300], +[2,6296,3917], +[2,6296,553], +[1,2343,6310], +[3,6303,13], +[2,6305,4467], +[2,6296,594], +[3,4872,14], +[2,6308,1698], +[0,0,6311,6312,2523], +[0,6283,33639,9163,9167,4874], +[0,9169,9170,9171,9172,9173,9174,33959,33964], +[1,2343,6314], +[0,6321,6322,6340,4139], +[3,195,10], +[2,6315,2997], +"ngd-transformer", +[2,6315,6317], +".native", +[2,1367,6319], +[0,615], +[0,609,9167,4507], +"decache", +"-plugin-", +[2,6324,3665], +[2,3079,6325], +"lunr", +"openc", +"ollective-postinstall", +[2,6328,6329], +"os-name", +"pdfmake", +"sort", +"tablesort", +"vis-network", +[2,6337,6338], +[3,10088,18], +"-list", +[2,10217,6341], +[0,9169,9170,9171,9172,9173,9174,9182,9183,8172,6671,9184,9186], +"icky", +[3,197,10], +[2,6342,553], +[1,2343,6350], +"semantic", +"actor", +"messages", +[2,698,9352,6349,10029], +"scroll-b", +[0,0,6353,6356,2537], +[2,6352,1633], +[3,6348,22], +[0,9193,609,9167,4874,9196], +"cms", +"management", +[0,9169,9170,9171,9172,9173,9174,1383,614], +[1,2343,6358], +[0,0,0,6359,2523], +[0,9203,4967,9204,1283], +[1,2343,6361], +[0,6362,6363,6364,2537], +[0,9213,9215,9217,9218,9219,9221], +[0,192,5467,9225,9226,8648,9227,6494,9231,9237,4874,5542,24360,9240,9241,1170,1364,1527,1594,1610,1652,9242,2026,9243,9244,2131,2212,2559,2832,3310,9245,4218,4220,9247,4339,4342,1531,91,4548,1984,9250,9252,9255,2924,9258,4729], +[0,705,9261,27,2671,4738,4731,1612,9262,3212,4158,5472], +[1,2343,6366], +[0,6263,0,6367,2537], +[0,89,5128,9267,3132,5027,45], +[1,2343,6394], +"@doc", +"search/js", +[2,6369,6370], +"@popperjs/core", +[2,812,4068], +"bundle", +"bundlewatch", +[2,1462,20], +"find-u", +"nused-sass-variables", +[2,6377,6378], +"hammer", +"-simulator", +[2,6380,6381], +"hugo-bin", +"-istanbul-reporter", +[2,2886,6384], +[2,1868,2903], +[2,2898,6386], +"mbine-duplicated-selectors", +[2,3573,6388], +[2,4049,2759], +"twbs-bootstrap", +[2,4942,6391], +"vnu-jar", +[0,6397,0,6401,2487], +"-first", +[2,5131,6395], +[0,1497,9272,9273,3744,624,97], +"responsive", +"front-", +"front-end", +[0,89,5128,9267,3132,5027,620], +[1,2343,6403], +[0,6404,0,6405,2537], +[0,1497,1639,3847,9272,9273,3744,624,97,6372,3911,9284,4808], +[0,89,5128,9267,3132,5027], +[1,2343,6407], +[0,6408,0,6409,34352], +[0,1497,1639,9272,9273,3744,97,4782,9293], +[0,89,5128,9267,623], +[1,2343,6411], +[0,6412,0,6414,2537], +[0,97,9273,4808,1497,3744,3911,6052], +"media", +[0,89,5128,9267,9300,3132,5027,3812,9301,9302], +"media query", +[1,2343,6417], +[0,6418,6419,6420,2523], +[0,9307,9308,9310,9311,9312,9313,9315,9316,9317,1461,1473,9319,9321,9322,2070,2226,9324,9327,9329,9334,9337,9340,3988,9343,9347,9348,9351,4507,4549,4555,2924,9354,9355], +[0,9357,9359,9362,9363,4880,4891,1165,1540,3286,3613,89,3824,3958,4383,4493,91,9364,9367,9368], +[0,9102,1745,3287,1783], +"matches", +"polyfill", +[3,3668,9], +"lugin", +[2,6423,6424], +"pseudo", +[1,2343,6428], +[0,6429,0,6430,34352], +[0,9375,9376,9378,9379], +[0,1098,1745,1179,9381,9382,5592,9383,9384], +[1,2343,6438], +[3,4325,11], +[2,6432,591], +[3,217,11], +"utility", +"variables", +"vars", +[0,6439,0,6430,2443], +[0,4484,628], +[1,2343,6441], +[0,6442,0,6430,2523], +[0,3958,9393,3971,3978,7610,9396,9401,2584,4555,9405,9407,9409,1437,9348,4549,4292], +"specificity", +[1,2343,6445], +[0,6459,6460,6480,2523], +[2,6447,25240], +[3,465,19], +[3,221,11], +"i-environment", +[2,6448,6449], +[2,3228,5709], +[2,221,6451], +[3,5930,17], +[3,5930,18], +[2,6454,594], +[2,2617,4525], +[2,5928,6456], +"message", +[0,9414,1690,1431,9417], +[0,1429,1363,2899,1177,9420,4039,9422,4474,2182,1894,91,4856,4874,9424,1325,1951,1938,1895,1955,1011,9426,1009,634,9431,9437], +"-streams", +[2,6458,6461], +[2,5928,6462], +[3,6463,17], +[2,6464,591], +"tag-expressions", +[2,5928,6466], +[3,5710,9], +"-error-formatter", +[2,6468,6469], +"capital-case", +[2,4250,57], +[2,3827,6472], +"has-ansi", +"knuth-shuffle-seeded", +[2,3060,5056], +"resolve-pkg", +"argv", +"string-argv", +[0,9439,9440,9422,5472], +"util-arity", +"yup", +[1,2343,6506], +"ompa", +"tibility-kit", +[2,6484,6485], +[2,6448,6486], +[2,5928,3766], +"-xml", +[2,4856,6489], +"@types/d", +"irty-chai", +[2,6491,6492], +[2,4861,674], +"@types/h", +"as-ansi", +[2,6495,6496], +[2,6309,5056], +"@types/l", +"uxon", +[2,6499,6500], +"@types/m", +[2,6502,1950], +"ustache", +[2,6502,6504], +[0,6531,6534,2514,2523], +"@types/mz", +[3,5090,10], +"gress", +[2,6508,6509], +"inon-chai", +[2,5051,6511], +[3,6512,12], +"js__fake-timers", +[2,6513,6514], +[3,4890,9], +"-buffers", +[2,2187,6517], +[2,6516,6518], +"@types/tmp", +"exclude", +[2,1432,6521], +"xml", +"chai-xml", +[2,5313,671], +"genversion", +"reindent-template-literals", +"stream-t", +"o-string", +[2,6528,6529], +[0,9501,9452,9510,638,9496,9493,641,9479,9456,9459,643,9449,9448,9485,2613,9472,3084,3181,3368,9465,3386,9462,3397,3483,9476,3727,9447,9490,9469,4135,4248,9451,9455], +"gherkin", +"tests", +[0,9516,26037,9515,1317,9520,3297,4384,4393,9512], +[1,2343,6536], +[0,6537,6538,6542,2523], +[0,9493,9479,2070,3181], +[0,9516,9515,4384], +[3,6503,10], +"k-fs", +[2,6539,6540], +[0,3378,3409,2977,200,9527,637], +"-compare", +[2,5254,6543], +[3,6512,9], +"gnale", +[2,6545,6546], +"mock-pro", +"cess", +[2,6548,6549], +[2,2769,6550], +[2,4135,6543], +"signal", +"signale", +[1,2343,6556], +[0,0,6538,6558,2399], +"deven", +[0,3378,200,640], +[1,2343,6560], +[0,6561,6562,2514,2487], +[0,641,9479,9539,640,3727,4707], +[0,9516,9515,9542,4384], +"toobject", +[3,3568,10], +"urable", +[2,1541,6565], +"promises", +"ReactiveX", +"WeakSet", +"ES3", +[1,2343,6576], +"cloudsearch", +"uninstall", +"windows", +"cjk", +[0,6595,6603,6604,2523], +"negative", +"shar", +"shared", +"Symbol.toStringTag", +"full-width", +"Object", +"Array.prototype.flatMap", +"Uint8", +"ClampedArray", +[2,6584,6585], +"start", +"starter", +"infer", +"ence", +"inference", +[3,6583,17], +"indLast", +[2,6592,6593], +[0,9547,9548,9550,3105,2745,9552,9554,9556,9558,9560,9562,3023,9563,4110,7610,9565,9566,3032,9568,3114,9569,9573,9577,5961,9580,9584], +"replay", +"[[Prototype]]", +"es7", +"cloud", +"ion", +"formation", +[2,6599,6601], +[0,2070,2899,1448,4255,9586,1389,9588,4257], +[0,9591,3987,2195,9593,1783,5980,1745,9595,1936,3378], +"look", +"last", +"regular expression", +"ECMAScript 2023", +"hot", +"rm -fr", +"chinese", +[1,5293,6617], +"consume", +"look-up", +"ES8", +"rgb", +[0,8391,6628], +"deep-copy", +"iam", +"ES2022", +"tty", +"status", +"length", +"view", +"dom-t", +"esting-library", +[2,6625,6626], +1734998400000, +"elb", +[1,2343,6655], +"getter", +[3,6608,13], +"19", +[2,6632,6633], +"macos", +"__proto__", +"asserts", +"deepclone", +[3,2779,11], +[2,6639,591], +"crypt", +[3,6634,14], +"8", +[2,6642,6643], +"push", +"monorepo", +"lone", +"fast-clone", +"state", +"lru", +[2,1177,1541], +"endpoint", +"a11y", +"weakmap", +[0,6656,0,6658,2537], +[0,666], +"streams2", +[0,9621,9622,8174,9623,9624,9625,9626,9627,9628], +"scheme", +".json", +[2,3383,6660], +"ajax", +"hookform", +[1,2343,6672], +"autoscaling", +"packages", +"linux", +"rfc4122", +[3,2069,10], +[2,6669,1585], +"JSON", +[0,6675,0,6658,2399], +"matchAll", +"iterate", +[0,3420,4484], +[1,2343,6679], +"structuredClone", +"trim", +[0,6682,0,6658,2537], +"@cfcs/core", +[3,3518,11], +[0,683], +"findLast", +[1,2343,6699], +"arktype", +[3,3833,10], +[2,6686,591], +"prototype", +"sigint", +"sinatra", +"Object.", +"value", +"values", +[2,6691,6693], +"reduce", +"reducer", +"Function.prototype.name", +"lockfile", +[0,6712,6717,6658,2523], +"full", +"fullwidth", +"groupBy", +"wait", +"duplex", +"css less", +"helpers", +"optimize", +"optimizer", +"emr", +"nodejs", +"defineProperty", +[0,29309,1797,4484,4135,4748,3181,1836], +"pyyaml", +"call", +"bind", +"callbind", +[0,1192,3420], +"styleguide", +[1,2343,6722], +"watchFile", +"code ", +[0,6730,6736,6744,2537], +"code points", +"Index", +[2,6683,6724], +"Map", +"flatMap", +"l10n", +"WebSocket", +[0,4484,677,666,3527,27921,4480], +"utilities", +"high", +"er-order", +[2,6732,6733], +"dataview", +[0,3420], +"handling", +[2,3827,6737], +"define", +"ebs", +[2,1177,1932], +"estree", +[2,6642,2855], +[0,9621,9647,9623,9628,9648,9649], +[1,2343,6756], +"ES2015", +[3,6608,11], +[2,6747,1278], +"operati", +"ng-system", +[2,6749,6750], +"RegExp#flags", +"loading", +"range", +"rangeerror", +[0,6757,6736,6767,2537], +[0,4484,677,4135,666,91], +"accessor", +"ESnext", +"limited", +"RFC-6455", +"URLSearchParams", +"es-shim API", +"col-buffers", +[2,4900,6764], +"lesscss", +[0,9621,9623,9657,9658,9628,9659], +"nce", +"sequence", +" system", +"file system", +[1,2343,6785], +"pnpm9", +"metadata", +"YAML", +[3,3405,12], +"ES2023", +"es2015", +"simpledb", +"hasOwn", +[2,5010,6972], +"debugger", +" zero", +[2,6577,6783], +[0,6815,0,6819,34352], +"fast-copy", +"spinners", +"predictable", +"ES6", +"rm", +[3,6583,16], +"contain", +"contains", +[2,6791,6793], +"japanese", +[3,6608,14], +[2,6796,1274], +[2,20413,2659], +"byteOffset", +"setter", +"Object.keys", +"flags", +"key", +"ender", +"ponyfill", +[2,20413,8124], +"logging", +"sns", +[2,4626,1155], +"ses", +"output", +"worker", +"export", +[2,1204,6813], +[0,4484,677,682,666], +"tester", +"waf", +"setImmediate", +[0,9621,9624,9667,9626,9627,9628,9649], +"typedarrays", +"walking", +"descriptor", +[1,2343,6826], +"hardlinks", +"buffers", +[0,6833,6736,6851,2443], +"typesafe", +"Set", +"CSS", +"es-abstract", +"agegateway", +[2,4268,6831], +[0,1437,4484,2687,4135,1513,9673,3530,666,3527,27921,53,1710,2858,3404,683,97,29309,87,4232,7913,9676,92,83,71,5757,9678], +[2,6838,1172], +"cloudfront", +"7", +[2,6642,6836], +[3,13067,16], +"ES2019", +[2,6855,6872], +"reuse", +"acter", +"character", +"prese", +"rve-symlinks", +[2,6844,6845], +"input", +[3,1461,9], +"Underscore", +"ec2", +[0,9621,9623,9624,9680,9681,9628,9648,9649], +[1,2343,6861], +"indicator", +"AsyncIterator", +"@vue/cli", +"performant", +"folder", +"Stream", +"0", +"ES2020", +[0,6862,0,6880,2537], +[0,4484,677,682,666,672,9687], +[2,6822,591], +"te", +"delete", +"arraybuffer", +[2,6579,6866], +"emit", +"TypeScript", +"batch", +"rds", +[3,4075,18,6], +[2,6896,11100], +"Uint16Array", +"password", +[3,1519,12], +" manager", +[2,3383,6877], +"mru", +[0,9621,9624,9625,9626,9627,9628,9649], +"byteLength", +"rate", +"css ", +"variable", +[2,6883,6884], +[1,2343,6895], +"speed", +"own", +"has-own", +".env", +"elm", +"ast", +"6", +[2,6747,6893], +[0,6900,6736,6880,4139], +"@vue/cli-", +" compiler", +[2,695,6897], +[3,3938,9], +[0,4484,677,4774,29540,666,26784,672,18052], +"time", +[2,1955,12054], +"bundling", +[2,6916,1987], +"Uint32Array", +[1,2343,6908], +"minimal", +[0,6909,6736,6658,34352], +[0,3420,1437,4484,4135,1836,3530,666,4748,29309], +"collection", +" css", +"nested css", +"slice", +"has", +"sorted", +[3,4079,15], +"iteration", +"ES2021", +"Float32Array", +"regular", +"idle", +"column", +"Iterator", +[1,2343,6927], +"throttle", +"guid", +[0,6928,6934,6936,2537], +[0,687,9704,9706,9708,1676,4135], +"watching", +"sqs", +"vue 3", +"less css", +"glacier", +[0,9712,4856,6503,4874,5254,1429,1488,1567,1177,1891,1893,9714,2205,2899,4193,4474,91], +"sett", +[0,1890], +"settings", +"ascii", +[3,1920,13], +"break", +"inter", +[1,2343,6978], +"internal", +[2,6691,3437], +[2,6747,6836], +"Array", +"Buffer#slice", +[2,6946,6947], +"s3", +"shrinkwrap", +"sham", +"art", +"safe", +":*", +[2,664,6954], +[3,6677,9], +[2,2382,6956], +"Property", +[2,6780,6958], +"korean", +"regexp", +[2,1367,6911], +"beanstalk", +"ES5", +[2,3632,6911], +"take", +[3,6962,10], +[2,6967,695], +"tdd", +"jQuery", +"enum", +"-vanilla", +"enumerable", +"hot-shots", +"JSON-Schema", +"workflow", +"CSSStyleDeclaration", +[0,6982,6984,6936,2523], +"route53", +"wordbreak", +"columns", +[0,9704,9706,1676,2205,2755,4484], +"formatting", +[0,4856,9723,4870,6503,4874,9725,8610,1429,1567,1177,1891,1893,9714,1209,2899,3752,4474,91], +"one", +"fastclone", +"shebang", +"number", +[1,2343,6992], +"ache", +"elasticache", +[0,6995,6999,7000,2537], +[2,6838,7005], +"concurrency", +[0,1107,1112,9730,1480,1676,1797,2179,2709,2755,2984,3181,4135,4290,4351,27921,9731,4720,4726], +"bundler", +"amazon", +"toSorted", +[0,5467,19438,691,9712,9736,9737,5366,4856,9417,9740,5245,9741,9723,6503,4874,9743,6513,9746,9749,8610,1317,1429,1431,1529,1610,1177,1891,1895,2675,2990,9750,2899,3421,1894,4172,4193,4474,4481,91], +[0,1890,200,1523,9753,57,7058,6478], +"chromium", +"obj", +"await", +"move", +"unit-mocha", +"symlink-dir", +"persistent", +[2,11169,7036], +"terminal", +"coercible", +"ES2016", +[1,2343,7013], +[0,7030,7032,7034,2487], +"identifiers", +"includes", +"swf", +"readable", +"protobuf", +"form-", +"validation", +[2,7019,7020], +"RxJS", +"busy", +"fps", +[2,6965,1278], +"-0", +"Observable", +"mixins", +"parents", +[0,688], +"typeof", +[0,5467,19438,9736,9737,4856,6503,4874,1429,1529,1177,1891,1895,2675,2990,2899,1890,1894,4172,4474,91], +"interrupts", +[0,9760], +"fastcopy", +"brands-svg-icons", +"prune", +[3,6583,20], +[2,7038,2395], +[2,7027,591], +"Microtask", +[2,3768,7041], +[1,2343,7063], +"es2018", +"circular", +"streams", +"runtime", +"make", +"serializ", +[2,7049,5218], +"limit", +"Dispatcher", +[2,2013,7052], +"balancing", +[2,3001,7054], +"es2016", +"WebSockets", +"args", +"ath", +"jsonpath", +[2,6796,1276], +"visual", +[0,7066,7068,7079,2537], +"positive", +"es-shim", +[0,7725,9767,9771,9774], +"every", +[0,9778,9781,9783,9785,9786,4874,7677,668,2086,2070,3297,1894,9794,91,4548,1984], +"trimRight", +"mimetypes", +"handlers", +"ratelimit", +"signals", +"rmdir", +"es8", +"findup", +"stable", +"robust", +[0,9796,2195,4030,9797], +"superstruct", +".es6", +[2,6910,7081], +"intrinsic", +[3,6948,11], +"curl", +"symlinks", +"ES2018", +[1,2343,7093], +"writable", +"rapid", +"io-ts", +"weak", +[0,7095,0,7097,2537], +"throat", +[0,9804,9807,9810,9811,9813,9815,9819,9821,9829,9834,9838,9841,9843,9846,9848,9849,9850,9852,9855,9856,9858,9861,9862,9864,9866,9869,9871,9873,9874,9875,9878,9933,9935,9937,9938,9940,9941,9945,9949,9953,9955,9957,9960,9964,9967,9969,9971,9974,9977,9979,9983,9985,9986,9989,9991,9993,9996,9998,10001,10004,10006,10007,10009,10013,10014,10016,10019,10021,10024,10026,10027,10030,10032,10034,10037,10041,10044,10047,10048,10049,10051,10053,10055,10058,7127,10060,10063,10065,10066,10068,10075,10077,10081,10083,10084,6336,10088,10092,10094,10097,10102,10105,10107,10110,10114,10117,10119,10126,10128,28711,10130,10131,10132,10134,10135,10137,10139,10142,10144,10145,10146,10147,10149,10151,10153,10156,10159,10162,10163,10165,10167,10170,10173,10178,10180,10183,10186,10188,10191,10193,10195,10197,10198,33633,10200,10201,10203,10204,10206,10207,10208,33138,10210,10213,10216,10219,6339,10223,10226,10228,10229,10230,10231,10234,10235,34233,10237,10239,10241,10245,10247,10248,10249,10250,10253,10255,10260,10262,10264,10267,10269,10272,10273,10275,10276,10278,10280,10283,10285,10290,10291,10292,10293,6348,6351,10295,10300,10302,10304], +"restful", +[0,188,8588,4967,10307,4963,10309,10310,10313,10315], +"deep-clone", +"Rx", +"symlink", +"vpc", +"whatwg", +"typanion", +"Float", +"64Array", +[2,7104,7105], +"$.extend", +"Promise", +"Reactive", +"Extensions", +[2,7109,7110], +[1,2343,7113], +[0,7118,7124,7097,2523], +"vest", +"from", +"-package", +[2,3250,7116], +[0,28591,29506,1473], +"parsing", +"or", +[2,4358,7120], +".inspect", +[2,614,7122], +[0,10321,4493], +"fromEntries", +[2,6691,7125], +[2,10056,1631], +"getopt", +"-validation", +[2,6659,7129], +"filter", +"Emitter", +[2,2013,7132], +"URL", +"fixed-width", +[1,2343,7137], +[0,0,7138,7097,4139], +[0,48,53,87,2071,2323,2332,2361,2367,2450,10327,10328,4039,4320,4323,4361], +[1,2343,7140], +[0,0,7142,7097,4139], +"encryption", +[0,48,53,87,2323,2332,2361,2450,4039,4320,4323], +[1,2343,7154], +"TypedArray", +"isConcatSpreadable", +"StyleSheet", +"create", +"mkdir", +"mkdirs", +"zero", +"sameValueZero", +"linewrap", +"side", +[0,0,0,7156,2537], +"listeners", +[0,10337,10339,10340,5122,5995,977], +"censor", +"watcher", +"typeerror", +[1,2343,7166], +"make dir", +"bound", +"patch", +"in-js", +"css-in-js", +[0,7173,0,7186,2537], +"deepcopy", +"setPrototypeOf", +"characters", +"pipe", +[2,6747,2855], +"Push", +[0,10347,10348,703,10351,10353,10354,10355,10357], +"trail", +"cloudtrail", +"awesome", +"sauce", +[2,7176,7177], +"banner", +"redux-t", +"oolkit", +[2,7180,7181], +"dete", +"rministic", +[2,7183,7184], +[0,10337,10339,10340,5122,5995,990,705], +[1,2343,7195], +"extension", +"lazy", +[3,1705,10], +[2,7190,6877], +"es2017", +"search", +"ES2017", +[0,7203,0,7206,2523], +"TypeBox", +" in css", +[2,6436,7197], +"Streams", +"aws", +"console", +"Reflect.getPrototypeOf", +[0,10363,3171,10367,10351,703,10370,10373,706,711,10374], +"directory", +[2,6607,591], +[0,10337,10339,10340,5122,5995,10376], +[1,2343,7216], +"colour", +"nope", +"flag", +[3,2982,14], +"syntaxerror", +[3,3904,10], +[2,7213,1974], +"kinesis", +[0,7217,0,7225,2537], +[0,3171,10382,10373], +"rm -rf", +"exit-", +"exit-code", +"ES7", +"jsdiff", +"private", +"slot", +[0,10337,10339,10340,5122,5995,10376,710,10384], +"sigterm", +"group", +"less.js", +"gdpr", +"east-asian-width", +[3,6820,10], +"Int32Array", +"argument", +"compile", +" less", +[2,7234,7235], +[1,2343,7238], +[0,7240,7243,7246,2537], +"callbound", +[0,10389,1170,1364,1437,2026,2220,2222,2659,2674,2817,1209,3776,10397,38,13781], +"callback", +"installer", +[0,48,53,87,10401,4856,9417,6494,10406,4870,6503,10410,4874,10413,6513,6512,24164,1009,1011,1429,1431,10417,1587,1177,1881,1883,1895,1915,10419,1938,1951,2899,3297,3421,1894,3752,4039,4193,4196,4232,4494,91], +"256", +"tostringtag", +[0,10426,10427,5284,10430,5472,10432], +" data", +[2,7223,7247], +"uted-types", +[2,1534,7249], +"nel", +"channel", +"iterator", +"mapreduce", +[2,7017,3101], +[3,5804,10], +[1,2343,7261], +"less mixins", +[2,6796,6859], +"forEach", +[0,0,0,2514,2399], +"description", +"Symbol", +[1,2343,7266], +"generics", +[0,7267,0,7269,2487], +[0,3509], +"stdlib", +[0,6649,6355,89,188,3709,1542,91,5284,4967,5995,2202,181,2130,38], +"typed array", +[1,2343,7273], +"call-bound", +[0,7274,7277,2514,2537], +[0,10593,10594,10596,10597,10600,10602,10603,10604,10605,10606,10608], +"WeakMap", +[2,6691,3426], +[0,4856,6503,1429,1628,1863,2297,2881,2895,2897,2900,2904,2899,4039,4940,4307,4508,91,2924], +[1,2343,7279], +[0,0,7280,7281,2537], +[0,8648,10614,816,10615,966,968,13204,4874,10616,1637,1177,28727,10619,32765,10621,2203,2832,3561,3566,1894,10624,10627,3980,10630,10632,4042,4057,4076,4333,4474,4484,4494,4508,10633,4514,10636,10638,10639,10643,30098,91,10646,4614,32507], +[0,6653,7320,10655,10650,10648,1623,4964,9204,10657,10656,1745,10052,10667,1936,10661,4374,3430,5284,10651,10663,4386,10665,10658,10654,10659,91,8295,4270,28842,89,582], +"stateless", +[3,6670,11], +[2,7283,6647], +"telephone", +"some", +"efficient", +"_.extend", +"wget", +[3,6594,18], +"lter", +[2,7290,7291], +"remove", +[1,2343,7302], +"soft", +"Microsoft", +"styling", +"ie", +"HyBi", +"Int16Array", +"cloudwatch", +[0,7304,7306,2514,2537], +"css nesting", +[0,10675], +"mime-db", +[0,10708,10703,10691,10706,1178,10688,1700,10677,1937,2151,10697,2323,2338,2384,2419,2496,2508,10686,10678,3159,3493,10683,10681,4431,91,10687], +[1,2343,7312], +"dynamodb", +[2,6642,6893], +"phone", +"Int8Array", +[0,7314,7321,7322,4139], +".prototype.flags", +[0,1091,1758,4449,10739,2070,2278,1149,9892,10761,4747,1177,4039,4135,4072,4734,2026,10752,10756,1290,1457,1764,2720,1894,4171,1513,10753,10757,1389,10754,2689,3160,3310,53,3429,10760,104,10759,58,692,4228,10746,101,10737,4005,4562,5216,10748,87,10738,10755,90,10721,1942,3957,68,10723,2851,10744,4851,92,10731,10734,10751,5874,10728,5756,10720,5818], +[3,7313,11], +[2,7315,6913], +[2,7084,7316], +"access", +"ibility", +[2,7318,7319], +[0,4389,10763,4232], +[0,10765,4643,200,5130,6400,10766,5131,10768,5995,8889,10769,10771,5256,10772,7028,5198], +[1,2343,7324], +[0,0,7325,7326,34352], +[0,1177,6059,10777,10779,10780,10783,10785,1613,1615,10786,2151,2735,10788,27921,33050], +[0,10791,5130,10792,45,10793], +[1,2343,7328], +[0,7329,7330,7331,34352], +[0,3763,2813,10800,10799,2771], +[0,2675,89,4426,1177,4042,1651,2924,1894,10852,3824,4270,91,5087,4874,4880,10846,10858,3889,10855,10810,192,10837,4883,3885,10805,4057,10808,2686,1959,1879,1938,4073,10848,10854,10828,10831,972,1895,1947,1955,811,10851,10821,4023,10817,10840,968,1011,1961,10815,10841,10811,816,10825,974,10827,4531,5467,1883,10844,1009,6068,10836,5700], +[0,89,4426,10860,10863,10865,10866,10867,10868,4967], +[1,2343,7333], +[0,7334,7335,7337,2523], +[0,26364,5917,2696,3875,3950,4022], +[0,5517,53,5652,603,10874,10875,10876,966,972,30788,974,10879,10883,7729,10886,4874,10887,4880,4883,4892,1009,1011,1170,668,10888,1177,1895,1898,1935,1938,1947,1955,1959,1961,2151,2731,2832,2854,3244,3310,1894,3765,89,3824,4039,4201,4484,4493,4494,91,8550,8552,1984,4747], +"quote", +[0,3875,89,6588,6081,6696,6913,2696,2700,7182], +[1,2343,7339], +[0,7340,7341,7342,2537], +[0,10895,10897,2007,20378,10898,3090,3530], +[0,8850,816,10902,10904,4042,4227,4232,91], +[0,4042,1932,3378,5260,10906,3209], +[1,2343,7344], +[0,7345,7346,7347,2399], +[0,10895,5251,1699,10912,814], +[0,53,5889,5583,811,8850,1856,4042,4227,10916], +[0,4042,1932,6778,3378,5260], +[1,2343,7352], +[2,7350,7351], +[3,818,9], +"gent-chat", +[0,7354,7355,7356,2537], +"microdiff", +[0,1415,4449,1594,1983,1437,2205,3188,3539,668,2026,10923,2602,4213,1457,10947,10925,10927,10929,2858,10930,10931,10933,10935,606,10936,10939,10940,1030,10942,608,603,9110], +[0,10944,3348,89,1177,4039,10946,1984,1894,3824,6520,91,9227,4874,7819,2990,4880,4892,3401,10949,6494,4883,4131,4315,10951,1959,1895,1947,1955,1011,1961,3708,10960,1009,10964], +[0,10946,9134,6869,8172,10966,8623,1745], +[1,2343,7359], +[2,819,6706], +[0,7360,7361,7362,2523], +[0,10973,10981,10984,2161,7610,7353,3266,188,7349,10990,10992,28910,11005,7358,10975,10995,8079,29841,10996,10978,7374,10999,11003,28843], +[0,23531,8648,29273,11016,5337,11018,2611,2832,89,11022,4383,1983,11026,11033,1984,11039,7387,11041,28988], +[0,4627,1745,3452,11043,4386,8124,188,8588], +[1,2343,7364], +[0,7365,7366,7367,2537], +[0,11049,7610,10975,8079,7387], +[0,11051,6798,6806,2078,1983,1984,4745,818,11039], +[0,5592,1745,2078,3452,8124], +[1,2343,7369], +[0,7370,7371,7372,2537], +[0,11064,11065,11066,1699,11071,11073], +[0,11075,11076,11079,11080,11082,11083,4856,6494,11085,6503,1170,1364,1414,1610,2026,2633,2899,11086,3750,4261,4474,91], +[0,13428,1388,11862,11861,11857,8210,11088,8214,27718,8791,181,4967,1098,89,188,5982,6969,1973,5472], +[1,2343,7376], +[2,7375,582], +[3,11003,12], +[0,7377,7378,7379,2399], +[0,11064,11065,11066,11093,1699,11073], +[0,11075,6503,11096,11105,11109,11111,11112,1170,1414,1610,2899,11086,11113,4261,824], +[0,13428,1388,11862,11861,11857,8210,11088,8214,27718,8791,181,4967,5982,6969,1973,5472,824,11116,11117], +[1,2343,7381], +[0,7382,7383,2514,2537], +[0,11124], +[0,11126,11130,11133,11134,11138,668,2675,2832,2990,2899,3421,1894], +[2,10829,45], +[1,2343,7386], +[0,7388,7389,7390,2537], +[2,11004,23], +[0,89,3824,11143,602,7384,11146,11151], +[0,1983,89,4451,3555,29318,3824,16485,91,9311,3975,4880,30157,6271,7610,32415,3120,10895,28829,3968], +[0,1739,1745,4270,29043,10824,11156,29045,1783,29181,6718,25172,4627,4963,89,188,1098,3709,5926], +[1,2343,7392], +[0,7393,7394,7395,2487], +[0,11161,11164,5145,11168,97,8597,449,11172,452,456,11175,11179,11182,11185,11186,11188,1325,11189,1461,1582,1673,11191,11192,5561,11193,11196,11197,11199,11201,11202,11204,11207,5060,11208,11210,11212,11213,11216,11219,11220,11221,11223,11224,11225,11228,11231,11233,3787,11235,11236,11238,11240,11242,3788,11244,11246,11249,11251,3789,3810,11253,11257,11261,3906,11264,4426,4427], +[0,5076,53,11267,11271,368,7948,11273,11274,10875,11275,10821,10825,10827,10828,11277,11282,11285,10837,10841,11288,966,968,972,974,11290,5087,11292,11296,11300,11301,4870,8149,11303,11305,4880,11307,4882,4883,11312,11315,11317,11320,11322,1009,1011,11325,11331,11333,1195,11335,1437,1448,1610,11336,1789,11343,8161,1177,1879,1895,1915,1924,1938,1939,1947,1948,1959,1961,10851,1982,2071,11345,2151,2193,2070,2665,2675,2686,2696,2697,2720,2758,1192,11347,2771,2780,2784,11348,11350,2814,2832,11356,5102,2990,1209,11357,3213,3445,1894,3703,3717,3725,3730,3763,11360,11362,11363,89,3807,3817,3820,3824,4934,11366,11368,11371,11374,3885,11377,11378,3984,3985,11380,11382,11383,4135,4183,4201,4320,11384,11389,4323,11396,11397,4072,4474,4508,91,11400,4676,11401,11405], +[0,5127,4627,4963,4964,5130,4967,89,5128,181], +[1,2343,7397], +[0,7398,7399,7400,2537], +[0,11413,11416,11417,11420,11421,11422,2161,1209,11428,11434,4443,3348], +[0,549,4870,11438,7819,1759,1999,3400,3421,11439,4469,11440,4494,1984,4677,4693], +[0,11442,11443,11445,11446,11449,11448,11450,11451,11452,11453,11454], +[2,11425,7402], +"-fork", +[2,12213,7404], +[3,12229,13], +[1,2343,7407], +[2,7408,594], +[0,7409,7399,7400,2523], +[3,7403,15], +[0,11413,11416], +[1,2343,7411], +[0,7412,7413,7400,2537], +[0,11417,11420,11421,11422,7401,2161,2674,1209,11426,3310,11428,11430,11434,4443,3348], +[0,11436,4870,4874,11438,7819,1166,1759,3400,1894,11439,4469,4474,11440,4487,4490,91,2924,4677,4693], +[1,2343,7415], +[0,7416,7417,7418,2487], +[0,2203], +[0,107,7844,11470,1177,1895,1953,1972,3709,91,4523], +[0,1177,1541,7625,3709], +[1,2343,7420], +[0,7421,7422,7423,2523], +[0,26364,23826,11477,1082,977,11478,11479,2929,3090,11480,11481,5152,4200], +[0,13471,8648,840,11485,4874,5162,11486,4042,3709,4359,91,1983,1984], +[0,5130,11489,3709,5167,1983], +[1,2343,7425], +[0,7427,7428,7429,2523], +"location", +[0,30023,11501,1699,3090,11497], +[0,2278,1983,3709,5245], +[0,11504,11506,1983,3709], +[1,2343,7431], +[0,7432,7434,7435,2523], +[0,53,11516,87,90,92,11518,11520,11522], +"routing", +[0,1195,3150,4027,2924], +[0,11525,8221,89,2924,11526], +"redirect", +[1,2343,7438], +[0,7439,7440,7441,2523], +[0,11533,11534], +[0,11536,28491,1610,91], +[0,11538,11539,1172,91,9561,2924,11540], +[1,2343,7443], +[0,7444,7445,7446,2523], +[0,1367,6372], +[0,2070,2323,1192,2278,4039,3561,1894,1587,2504,4320,2464,91,4874,1165,2482,3678,4330,11598,11592,11591,11595], +[0,4329,4963,5926,11600,11601,6082,8727,181,4967], +[1,2343,7448], +[0,0,2667,7449,2399], +[0,11608,11609,11612,11613,190,11615,11617,4967,91,5284,11619,11622,11624,11626,11627,11630,11631,11633,11634,11636,11639,11640,32767], +[1,2343,7451], +[0,4424,4429,4442,2537], +[1,2343,7453], +[0,7454,7455,7456,34352], +[0,97,1562,4484], +[0,53,83,87,92,19181,442,8648,5583,811,816,6373,10615,11796,4874,1009,1011,1208,1177,1895,11935,11938,11940,11943,3401,1894,4042,11802,4172,11803,91], +[0,965,1936,11806,11807,5284,11815,8221,91], +[1,2343,7458], +[0,7459,7460,2514,2537], +[0,11821], +[0,972,30788,4880,4883,1030,1597,3401,89,3824,5564,7464,27122], +"pkgroll", +[1,2343,7468], +"create-vue", +[2,7467,7472], +[2,7466,7469], +"create-e", +[3,11821,16], +[0,7459,7470,7471,2523], +"slint-config", +[0,3709,4355,5160,1972,11827,1011,27122,840], +[0,32401,3766,3709], +"persist-client-core", +[1,2343,7474], +[0,7475,7476,7477,2537], +[0,11833], +[0,11835,5087,1009,11837,1177,1886,11840,1895,1955,1958,1192,2780,2821,1776,3165,4468,4469,91], +[0,11842,11843,11846,11847,6875,4967,5576,4978], +[1,2343,7479], +[0,7480,7481,7482,2523], +[0,97,966], +[0,1651,91,11853,3400], +[0,5472,1651,181,965,11857,6564,11861,11862], +[1,2343,7484], +[0,7485,7486,7487,2537], +[0,11357,11869,3527,3717,97,51,11868,11871], +[0,2832,91,11853,1393,1423,11875,968,11884,11879], +[0,5472,181,965,2832,2275,11857,6564,11861,11862], +[1,2343,7489], +[0,7490,7491,7492,2537], +[0,11891,11869,11890,3527,63,11871], +[0,2832,2022,4042,1984,91,11853,11893,3717,11899,811,11884,11896], +[0,5472,965,1192,2832], +[1,2343,7494], +[0,7495,7496,7497,2399], +[0,1437,11891,2777,3717,11907], +[0,1192,2675,89,1177,1894,48,1527,91,53,5087,4880,3720,3857,97,4131,5091,3904,11909,1652,4889,5085,5103,11912], +[0,5472,1975,1192,3857], +[1,2343,7499], +[0,6263,7500,7501,2523], +[0,966,968,4880,4883,1437,11918,2777,11853,3401,89,3824,4039,91], +[0,5472,89,181,965,2832,2275,11857,6564,11861,11862], +[1,2343,7503], +[0,0,7504,7505,2537], +[0,2742,2832,89,2022,668,4474,11944,3824,11890,91,11853,4880,11875,11952,11943,11931,11938,11929,966,11948,11935,972,11933,11940,968,5556,11925,6515,1915,11924], +[0,7214,6627,89,5472], +[1,2343,7507], +[0,7508,0,7509,2487], +[0,10347,11959,978,989,991,993,996], +[0,11961,38,5995,27,5130,5592], +[1,2343,7511], +[0,0,0,7512,34352], +[0,11961,10339,10340,5122,5995,977], +[1,2343,7514], +[0,0,0,7515,2443], +[0,11961,10339,10340,5122,5995,2947,977], +[1,2343,7520], +"fp", +"drag", +"react ", +[0,7533,7536,7537,2537], +"animation", +[2,7519,7521], +"pure", +"fantasy-land", +[2,4570,7046], +[3,5941,12], +[2,7526,1155], +"framer", +[3,7527,19], +[2,7529,6600], +"pose", +"tacit", +[0,11974], +"balanced", +"react pose", +[0,1414,4494,2675,91,4874,975,11976,192,11978,5467], +[0,11961,10339,10340,5122,5995], +[1,2343,7539], +[0,0,0,7540,2487], +[0,11961,10339,10340,5122,5995,984], +[1,2343,7542], +[0,0,0,7543,34352], +[0,11961,10339,10340,5122,5995,986,11988,10345], +[1,2343,7545], +[0,7546,0,7547,2537], +[0,987], +[0,11961,10339,10340,5122,5995,988,2739,11995,11996], +[1,2343,7549], +[0,7550,0,7551,2487], +[0,10347,12003,1001,1003], +[0,11961,10339,10340,5122,5995,990,705], +[1,2343,7553], +[0,7554,0,7555,2537], +[0,11974,3171,12011,978,980,12016,991,997], +[0,11961,10339,10340,5122,5995,10376], +[1,2343,7557], +[0,7558,0,7559,4139], +[0,11959], +[0,11961,10339,10340,5122,5995,38], +[1,2343,7561], +[0,7562,0,7563,2523], +[0,3171,985,12027], +[0,11961,10339,10340,5122,5995,10376,710,10384], +[1,2343,7565], +[0,7566,0,7567,34352], +[0,3171,12027], +[0,11961,10339,10340,5122,5995,990,705,1000,5284], +[1,2343,7569], +[0,0,0,7570,2487], +[0,11961,10339,10340,5122,5995,990,705,1002,3634,3766], +[1,2343,7572], +[0,0,0,7573,2523], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094], +[1,2343,7575], +[0,7576,0,7577,34352], +[0,12099,12103,12104,12105,4484], +[0,12108,7188,5995,11100,6740,5592], +[1,2343,7579], +[0,7580,7581,7586,2443], +[0,2687,5569,12118,1012,12121,12123,12124,5604], +[0,1091,3127,1984,1894,12126,9363,4880,3117,12127,4555,8818,7677,3137,12133,5551,12137], +[2,7583,7584], +[3,439,8], +"react/eslint-plugin", +[2,5557,26375], +[0,1177,6741,6939,91], +[1,2343,7588], +[0,7589,7590,7591,2487], +[0,1676,5552,12124,5604,12145], +[0,1984,7677], +[0,6892,5286,5284,91,57,5341,1177], +[1,2343,7593], +[0,7596,7590,7599,2523], +"point-free", +"curried", +[0,5552,439,5604,12145], +"gestures", +"3d", +[0,1177,91,6742], +[1,2343,7601], +[0,7602,7622,7626,4139], +[0,365,370,12159,1461,12160,12163,1832,12166,12170,2609,1209,12172,3220,3744,12173,11202,12175,11216,11224,3787,3789,3849,11374,3911,4023,4163,4649,12176], +[3,346,11], +"abs-extension", +[2,7603,7604], +"cssfilter", +"root-node-polyfill", +[2,2183,7607], +"slugger", +[2,2287,7609], +"deflist", +[2,3108,7611], +[3,5953,13], +"eta", +[2,7613,7614], +"sup", +[2,3108,7616], +[3,3125,13], +"rule-", +[2,7619,6706], +[2,7618,7620], +[0,48,53,61,71,83,85,87,90,92,192,5467,968,972,4859,5540,4870,12179,4880,4883,1009,1011,12182,12184,1170,1178,1193,1195,12186,1210,12191,12193,1527,12195,1628,1652,1843,1845,8160,1177,1959,1961,2092,2151,2651,2675,1192,12196,11348,12198,2990,3177,3222,3463,1894,3786,89,3824,3895,3904,4257,4307,4320,4946,12201,12205,12206,91,4537,4027,2924,4676,4677], +[3,346,10], +[2,7623,5891], +[3,1879,13], +[0,89,5128,4627,4963,4967,12208], +[3,3703,9], +[2,7627,1541], +[1,2343,7649], +"sconfig", +[2,7603,7630], +"@types/css", +"ithub-slugger", +[2,5246,7633], +[3,4869,9], +"-yaml", +[2,7635,7636], +"arkdown-it", +[2,6502,7638], +"-attrs", +[2,7639,7640], +"anitize-html", +[2,5051,7642], +[2,1368,4406], +[2,668,7644], +[3,5961,13], +"estgen", +[2,7646,7647], +[0,7652,0,7653,2523], +"yandex", +"yfm", +[0,1497,2813,1209,3266,12224,9355,12220,12226,12233,12217,12222,2626,12215,12219,12232,12216,7406,7403], +[0,6108,6038,5130,1936,12236,1932,6106,12214,6105], +[1,2343,7655], +[0,7670,0,7691,2523], +"magic-", +"bytes.js", +[2,7656,7657], +[3,347,11], +[2,7659,614], +"discord-", +"api-types", +[2,7661,7662], +"@sapphire/snowflake", +[2,7659,6910], +[3,7664,10], +"async-queue", +[2,7666,7667], +"@vladfrangu/async_event_emitter", +[0,1018,1025], +"turbo", +[2,7659,3888], +[3,4828,16], +[2,7673,1803], +"@vite", +"st/coverage-v8", +[2,7675,7676], +"@favware/cliff-jumper", +"-pretty", +[2,4525,7679], +[2,1876,7680], +"extract", +"extractor", +[2,4610,7683], +[2,7659,7684], +"esbuild-", +"plugin-v", +"ersion-injector", +[2,7687,7688], +[2,7686,7689], +[0,10039,12244,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +"discordapp", +"discordjs", +[1,2343,7695], +[0,7696,0,7697,2537], +[0,12253], +[0,1017,12255,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +[1,2343,7699], +[0,7670,0,7700,2537], +[0,6847,12260,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +"generated", +[1,2343,7703], +[0,7704,0,7705,4139], +[0,12265,1025], +[0,1022,12268,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +[3,5923,13], +[2,4364,57], +[2,7706,7707], +"@aws-sdk/client-s3", +[2,7623,5576], +[1,2343,7712], +[0,0,0,7732,2487], +"ranslation", +[2,3118,7713], +[2,7623,7714], +[3,7715,11], +"ermaid-extension", +[2,7716,7717], +"openapi-", +[2,7719,7188], +[2,7623,7720], +"yfm2xliff", +[2,352,7722], +[3,692,9], +[2,7724,364], +[3,4869,11], +"-safe", +[2,2849,7727], +[2,7726,7728], +"@yandex-cloud/nodejs-sdk", +"bem-cn-lite", +[0,594,12274,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +"nanostores", +"threads", +[2,7734,4406], +[1,2343,7741], +[2,4807,1149], +[3,4856,10], +"lk", +[2,7738,7739], +[0,7742,7753,7754,2523], +[0,3763,1594,2026,1000,1536,12286,12285,12287,12284,1032], +"tml-escaper", +[2,6495,7743], +"ime-types", +[2,6502,7745], +[3,5055,9], +"elljs", +[2,7747,7748], +"@types/t", +"ar-stream", +[2,7750,7751], +[0,1192,4135,4468,4342,1193,91,53,9227,5087,4874,12292,11976,6494,12290,9240,7806,7708], +[0,12294,4967,970,12295,12296,5983,6802], +[2,12302,26070], +[1,2343,7757], +[0,7764,7765,7766,2537], +[3,7639,15], +[2,7758,671], +[3,7730,14], +[2,7760,7625], +[2,7760,7628], +[2,7760,2190], +[0,34690,12301,7733,28314,7755,12305,12307,28554], +[0,4481,4494,4493,1983,2675,1177,4039,12309,1984,668,3561,23535,4320,3350,3541,28464,4201,4360,91,4874,2990,3400,4880,29000,29038,11976,30684,17214,4328,33264,33385,34203,4523,34205,7677,33382,5517,5530,34207,4323,12312,32818,5535,12315,30630,11396], +[0,11608,12318,12319,12322,12324,12326,12328,12329,12331,11612,12334,12336,11010,12337,12338,190,12339,4967,91,12342,12346,12348,12349,12350,11619,11622,11624,12354,12355,11640], +[1,2343,7768], +[0,7769,7770,7771,2523], +[0,1593,4376,53,1393,3090,87,3957,12361,5658,5660,5778,5810], +[0,20378,1983,1082,1531,3527], +[0,4967,1983,11504,1028], +[1,2343,7773], +[0,7774,7775,7776,2487], +[0,53,12370,12372,28465,10879,3878], +[0,30521,89,3824,28865,1531], +[0,1172,27158,89,3878,1983,11504], +[1,2343,7778], +[0,7779,7780,7781,2523], +[0,1012,2071,4523,4630], +[0,5536,4874,1177,1988,2020,7461,1894,4494,91,1984,188], +[0,188,7463,7465,1177,91], +[1,2343,7783], +[0,7784,7785,7786,2399], +[0,1091,1092,12384,2657,12385,3509,38,4151,7707,5971,4745], +[0,2026,2899,4255,4342], +[0,2026,3452,8124,1745], +[3,980,17], +[2,7787,57], +"encrypt", +"encrypter", +[2,1576,7790], +[2,3115,1623], +[2,2287,7792], +"greenlock-express", +"memoryst", +[2,7795,147], +"minisearch", +"selfsigned", +"sitemap", +"sql.js", +"workerpool", +[1,2343,7825], +"ody-parser", +[2,4853,7803], +"mpression", +[2,4860,7805], +"-session", +[2,6494,7807], +"ormidable", +[2,5537,7809], +"mpts", +[2,6508,7811], +[3,7643,9], +[2,7813,367], +"ql.js", +[2,5051,7815], +"@types/u", +"uid", +"@types/uuid", +"@types/w", +"orkerpool", +[2,7820,7821], +"wasm", +[2,7686,7823], +[0,7829,7830,7831,2523], +"razor", +"sqlite", +"aspx", +[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12405,12406,1582,1699,12409,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,3788,11244,3789,3810,5564,3846,12435,12438,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12444,12445,4549,4555,12447,1002,12448,12449,12452], +[0,192,5467,7634,12455,12458,7637,12459,4874,12461,8149,4880,4882,4883,12462,12463,12467,1177,10321,2071,2079,12471,12472,2675,2990,1894,3706,3708,89,3824,4320,4474,91,1984,12473,12475], +[0,1179,12445,2924,89,12478,12479,1783,4963,1745], +[1,2343,7835], +"@dnd-kit/core", +[3,7833,9], +[0,0,7841,7843,2537], +"modifiers", +[2,7834,7836], +"sortable", +[2,7834,7838], +[2,7834,6731], +[0,4874,1009,1011,1177,1881,1938,4039,4042,4076,91], +"ui-components", +[0,5995,12586,12588,12589,12590,12592,12593], +"@stylistic/eslint-plugin-js", +[3,7844,11], +[2,4324,1932], +[2,7845,7846], +[1,2343,7852], +"@wordpress/api-fetch", +[3,7849,11], +"block-", +[0,7853,7859,7860,2537], +[0,12600], +"ion-", +[2,7854,1464], +[2,7682,7855], +[2,5313,7856], +[2,7850,7857], +[0,53,5241,87,94,12602,12604,6503,4874,1145,1503,12607,1177,2297,2881,2886,2895,12609,2897,2900,2910,2899,3400,3421,3456,4039,4042,4045,12611,4055,4067,4071,4075,12613,4474,12614,91], +[0,12616,7102,2013,2018,12617,12618,12621,12622,12620,6553,1858], +[1,2343,7864], +[2,7153,694], +[2,5335,7862], +[0,7865,7866,7867,2523], +[0,3173,12627], +[0,3421,2899,1177,1693,1954,1938,1958,1903,1948,1970], +[0,1563,12631,8316,1080], +"promis", +"ify-", +[3,1455,13], +[2,7869,7870], +[2,7868,7871], +"swc-loader", +[1,2343,7875], +[0,7876,7878,7879,2523], +[0,1149,1362,1209,3230,1552], +"ol", +[0,2899,1429], +[0,2663,1081,5122], +"mixin", +"WordPress", +[1,2343,7883], +[0,7884,0,2514,2399], +[0,1082], +[1,2343,7886], +[0,7896,7898,7899,4139], +[3,4872,15], +"amelcase", +[2,7887,7888], +[3,7746,9], +"nimist", +[2,7890,7891], +[3,5090,9], +"etty-ms", +[2,7893,7894], +[0,1170,1437,1525,2088,2151,2720,3467,7956,4183], +".d.ts", +[0,811,8850,816,10615,12654,4864,12656,4866,4874,4039,4042,8849,11054,4076,12206,4484,4487,91], +[0,200,1085,188,89,12659,12660,91,6710], +"definitions", +[1,2343,7902], +[0,0,7903,7904,2537], +[0,1429,2685,2899,1894,4039], +[0,2056,3164,12666,4560], +[2,363,3428], +"memoize", +[2,363,7906], +[3,370,10], +"erialize", +[2,7908,7909], +[3,1212,14], +"acros", +[2,7911,7912], +"root", +"find-root", +[1,2343,7918], +"stylis", +[0,0,7923,7924,2523], +[3,5272,14], +"d-nodes", +[2,7919,7920], +[2,1174,7921], +[0,2899], +[0,12674,1087,2124,12619,12675], +[1,2343,7926], +[0,7927,7928,7929,4139], +[0,12680,12681,1676,12685,5303], +[0,5245,12688,6501,4874,7677,4193,4474,4494,1984], +[0,12692,12693,1605,12694,4116,8791], +[1,2343,7934], +[2,366,6990], +[2,7908,5375], +[2,363,594], +[0,7936,7938,7939,2487], +"@definitelytyped/dtslint", +[0,43,46,1093,1116,1132,1140,1298,1316,1318,1321,1322,1336,1339,1342,12701,1344,1346,1348,1350,1352,12703,1354,1356,1358,12704,1376,1386,1402,1425,1428,12705,1440,1450,12708,12709,12710,12711,12714,1663,1706,1711,1715,2019,12715,12719,2058,2059,2177,2217,12720,2563,2567,2605,2606,12722,2723,2950,2954,2957,12726,2962,3086,3099,12730,3134,12733,3186,3240,3245,3262,3295,3439,12736,3443,3472,3535,3558,12737,3777,3931,12740,4105,4124,12743,12747,4168,4173,4177,4192,4206,4235,12749,4236,4258,12750,4267,4338,12755,4347,4352,4370,4433,4456,4461,12756,12757,12760,4548,12763,12764,4724], +"import-cwd", +[0,4880,4883,2079,89,3824,91], +[0,4627,4963,4964,5130,4967,89,5128,181,4653], +"is-pro", +"p-valid", +[2,7940,7941], +[2,363,7942], +[3,7933,10], +"se-insertion-effect-with-fallbacks", +[2,7944,7945], +[1,2343,7949], +[2,363,89], +[0,7950,7951,7952,2537], +[0,12771,12773,12775,1389,12776,1536,1676,12777,12779,2026,12783,12785,2659,12788,2822,12789,12792,12793,3183,12795,12799,12802,3923,12809,4153,4165,12812,12814,12818,3348,4650], +[0,12820,1610,2554,3421,12823,4255,4389,4400], +[0,1090,1388,12826,4384,4389,5472], +[1,2343,7954], +[0,7955,7958,7959,2523], +[0,2069,12832,12834,12837], +[2,17912,7957], +"estimator", +[0,12839,811,8850,816,10817,4856,6503,4874,12842,1009,1011,1092,1389,1429,1610,1673,12846,1177,1895,2070,2675,12847,2806,2820,12848,2297,2881,2900,2990,2899,12849,3310,3421,1894,12850,4042,4073,4474,12851,91,12852], +[0,6671,2844,1155,7020,2860,2845,7527,7530], +[1,2343,7961], +[0,7962,7963,7964,2537], +[0,1091], +[0,12839,5087,4874,1009,1011,1091,1177,1895,2675,1192,12848,2990,1894,4468,91], +[0,12860,6975,1671,7020], +[1,2343,7966], +[0,7967,7938,7939,2399], +[0,43,46,1450,3777,4548], +[1,2343,7969], +[0,6203,7970,7971,2487], +[0,3460,12870], +[0,1094], +[1,2343,7973], +[0,7974,7975,7976,2537], +[0,12879,4567], +[0,12882,2899,3421,4535], +[0,12884,12886,12887], +[1,2343,7978], +[0,0,7979,7980,2487], +[0,2278], +[0,1623,2278,181,6398,6400,2869,12893], +[1,2343,7982], +[0,0,0,7983,2523], +[0,1098,5130,1388,12899], +[1,2343,7985], +[0,0,0,7986,2523], +[0,1098,5130,1388,7521,12899], +[1,2343,7988], +[0,7989,0,7990,2523], +[0,12910,12914,19,21,24,12915,12917,1149,1165,1437,1532,1628,1637,1676,12918,1687,12923,12925,12926,2054,2092,7076,2151,12929,2070,2651,2712,2720,12930,2843,2921,2925,695,2969,1209,3181,12935,3342,3368,3459,3467,3560,3618,3786,3981,814,4039,4085,4111,12936,4135,12937,4230,12944,4307,4333,4334,1241,4430,91,4027,4648,2924,4681,4689,4695,4769], +[0,1098,1102], +[1,2343,7993], +[2,27465,3469], +[0,0,0,7994,2537], +[0,12074,29,1388,12899,5027,12951,4963], +"blurup", +[1,2343,34387], +[0,6323,2398,12956,2899,4425], +[0,7244,1111,12958,12959,12961,12963,12964,12965,12966,12967,12968,12969,12970,12971,12972,12973,12974,12975,12976,4984,12977,200,12978,1473,1512,7208,9753,6876,7201,12979,12980,6983,12981,12982,12983,12984,12986,12987,2929,3073,6807,12990,12991,10958,6616,4166,12992,12994,1871,590,592,7009,2585,6621,12996,12997,4744,12998], +[1,2343,8000], +[0,8001,8002,8003,2487], +[0,6639], +[0,4874,1166,4481,1906], +[0,1111,7009,7201,200,1871,6621,1867,1106,6983,4166,4744,3073,6807,6876,2585,13005,6769,12619,1501,5281,13006,8628,13007,1468,13008,13009,13011], +[1,2343,8005], +[0,0,8006,8007,2399], +[0,1906,1166,4481,1107], +[0,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,6876,2585,1108,6961,23,3529,1973,2100,13017], +[1,2343,8009], +[0,0,8010,8011,2523], +[0,1906,1166,4481,13024], +[0,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +[1,2343,8013], +[0,0,0,8014,2487], +[0,1111,1512,200], +[1,2343,8016], +[0,8017,8018,8019,2443], +[0,11161,13035,97,8597,7905,13037,13038,13042,1156,1639,1673,13045,13047,1209,3021,4023,11264,1849,7917,4427,13049,4649], +[0,48,53,61,73,76,78,13051,81,5806,13052,5835,83,5853,5889,85,87,92,192,5467,692,5583,7806,4864,5087,13055,5139,13057,7639,4874,13059,1009,1011,1028,11016,13061,13063,13067,13069,1031,11018,13072,10984,13077,1082,13078,1165,1170,1178,1193,1195,1205,13080,1208,13085,1426,1437,1448,1503,12405,13086,1525,13088,1610,1628,1630,13089,1668,13090,13092,11343,13093,668,8161,1869,1177,1895,1937,1938,1939,1948,13097,1955,1988,2071,11345,2151,2070,2205,2226,2323,2338,13099,2529,2651,2675,13101,13103,1192,2780,2784,13105,13108,2817,13110,4868,695,2969,13115,13118,2990,13119,3105,3107,3112,3114,13122,3127,13123,3177,3183,3188,3213,3220,3412,3561,3618,1894,3720,3725,3730,3786,9340,3992,13124,13127,8304,13128,4039,13129,13131,4135,4207,13134,4307,4320,11384,11389,4323,11396,4328,4409,4431,4443,4468,4469,4494,4508,91,13135,4549,4027,11400,1983,188,13138,13142,4630,4633,13145,4634,13149,4639,4640,13151,4646,2924,4676,4677,4681,4689,13152,11401], +[0,188,8588,5127,4964,1114,13154,4627,4963,181,5130,4967], +[1,2343,8021], +[0,8022,8023,7395,2537], +[0,1497,1673,97,5145,4427,11161,7992,27467,33386,33387,11185,33389,33393,11164,33396,33397,33399,33401,33403,33404,33406,33417,13166,33418,33422,33423,33424,33426,13169,8048,33428,33430,33431,33433,33436,33441,33443,11168,33444,33447,13159,33449,13162,33450,33451,11264,13165,33452], +[0,1091,3467,26713,4390,4494,1789,2070,1192,3445,1170,1437,11336,2675,2696,2742,2832,13233,3549,89,4164,1759,1177,2079,2814,1209,3984,4039,13241,4135,1086,13078,25131,3725,4508,2924,1634,2151,2193,11347,3183,3213,1894,13243,11401,1610,16473,2071,5102,11357,3758,11360,3824,13214,13215,3310,3560,3985,3988,4183,4201,91,5087,4874,12424,2665,2990,3839,11380,368,13204,13210,4880,13223,33230,11362,13245,33461,7833,692,11301,4870,5254,11325,3330,3717,13235,3999,11976,7948,27424,13194,13196,11290,8149,11322,7610,11350,27047,11273,11275,16934,4864,11292,7892,6510,13213,4934,10875,13205,4883,2758,2771,13232,3885,11377,3978,5076,33233,7839,8998,29467,7837,7840,643,13200,1939,2686,11366,11400,13198,2584,11348,25366,966,11331,1924,2784,11368,13175,972,1947,2780,13182,13203,13228,11356,4676,11320,3749,13192,968,1961,33635,11300,13221,13187,7582,974,7585,13178,11312,26969,11382,11371,11296,13188,11274,13240,13189], +[1,2343,8025], +[0,8026,0,2514,2523], +[0,3445], +[1,2343,8028], +[0,8029,7938,7939,2537], +[0,43,46,1093,1132,1140,1298,1316,1318,1321,1322,1336,1339,1342,1344,1346,1348,1350,12704,1376,1386,1425,1428,1440,1450,12709,12714,1663,1706,1711,1715,2019,12719,2177,2217,12720,2563,2567,2606,12722,2950,2954,2957,2962,3086,3099,3134,3186,3240,3245,3262,3295,3439,12736,3443,3472,3535,3558,12737,3777,4124,12747,4173,4177,4192,4206,4235,12749,4236,4258,4267,4338,12755,4347,4352,4370,4433,4456,4461,12756,12757,12760,4548,12763,12764], +[1,2343,8031], +[0,8032,8033,8034,34352], +[0,5381,5383,5446,5394,5408,13261,13262,5458,5461,32772,13264,13267,13272,2993,5438], +[0,5400,5402,5405,13276,5453,5456,192,5467,13280,5470,5473,13282,5474,5476,5478,13286,13287,1364,1699,1177,1895,1999,2026,2151,2675,2822,2990,3246,3300,3561,4039,4042,13289,10854,4193,4449,91,5480,4535,13291,3348], +[0,5926,13293,5592,1117,1745,13294,3422], +[1,2343,8036], +[0,8037,8038,8039,2537], +[0,1367,1525,13302,8161,13304,2151,2070,2036,2685,2814,13305,1209,3105,3363,3725,4135,4307,2924,4677,4709], +[0,4870,6503,4874,1177,13311,1903,1938,1954,1958,2899], +[0,5592,1118,2295,1745,4030,7096], +[1,2343,8041], +[0,8042,8043,8044,2537], +[0,13319,1797,4135,4562,4747], +[0,9741,4874,5254,4892,1166,2151,91], +[0,1118,1783,13322,5592,2295,1745,1179,13325,200,13326,6876,4030,7096,13327,13328], +[1,2343,8046], +[0,8047,8049,8050,2523], +[0,1676,13333,3313,2863,4593], +[2,41,27443], +[0,1429,1431,2899,4193,4196], +[0,13336,6645,13338,13339,13340,586], +[1,2343,8052], +[0,8053,0,2514,2537], +[0,13345,13346,5506,5514,4484], +[1,2343,8055], +[0,8056,0,8057,4139], +[0,13352,13345,1127,13346,5513,5514,4484,13351], +[0,5286,6778,13354,5284,13356,3378,89], +[1,2343,8059], +[0,8060,8061,2514,2487], +[0,13346,5514,4484,5515], +[0,13364,5087,4874,2220,2222,1192,4039,4042,4468,4487,91], +[1,2343,8063], +[0,8064,8065,2514,2487], +[0,1127,13370,4484], +[0,13364,5087,13372,2086,2220,2222,1192,13374,4039,4042,4468,4487,91], +[1,2343,8067], +[0,0,8068,8069,2523], +[0,1503,1596,13379,1652,2194,2759,2899,3202,3215,3421,4131,4585], +[0,7914,3403,6435,614,202,1237,5260,13382,3209,1896], +[1,2343,8071], +[0,8072,8073,8074,2537], +[0,13387,13388,13390,13394,13395,1170,1362,13396,1209,3084,3220,3222,13399,4135,13400,4729], +[0,13406,13411,13412,6061,6063,13414,4870,6503,4874,13417,5254,9241,10780,1429,1431,1570,2899,1894,4131,4193,4474,91,4739], +[0,13426,12296,5472,13428,5131,13429], +[1,2343,8076], +[0,8077,8078,8080,2399], +[0,13446,13437,13512,13471,13508,13476,9637,13474,13497,13495,13500,13454,13502,13504,13510,13493,13507,13456,13479,13488,13484,30243,13467], +[0,3421,3297,2899,4193,1177,1894,91,13514,4874,6503,6513,5254,1954,1011,13518,1009], +[2,8182,553], +[0,13524,13525,13526,13529,13530,13531,6599,13532,13535,13538,13539], +[1,2343,8082], +[0,8083,8084,8085,2523], +[0,13547,13551,13554,13558,13559,13560], +[0,13564,5087,4874,1009,1011,13566,1177,1895,1915,1938,1955,2220,1192,1894,13568,3706,13569,4257,4468,4474,91], +[0,13571,7200,5995,13572,2220,13573,6710,91,13574], +[1,2343,8087], +[0,8088,8089,8090,2537], +[0,13579,1149,13581,3923,13583,4393,13584], +[0,13590,1429,1776,3188,2899,4039,13591,4390,4753], +[0,12666,1137,3101,2056,4390], +[1,2343,8092], +[0,0,8093,2514,4139], +[0,1429,1192,1894], +[3,439,25], +"mysticatea", +[2,1186,8095], +[2,8094,8096], +"dot-prop", +"warun", +[1,2343,8101], +[0,0,8102,8103,2399], +[0,68,5704,1177,2899,3421], +[0,200,57,1139,5675,7058], +[1,2343,8105], +[0,7967,7938,7939,2487], +[1,2343,8107], +[0,8108,8120,8121,2487], +[0,1417,13609,6830,13611], +"ly-openapi-core", +[2,443,8109], +"decko", +"pointer", +[2,2842,8112], +"mark.js", +"sampler", +[2,7719,8115], +"perfe", +"ct-scrollbar", +[2,8117,8118], +[0,13613,13614,1159,9254,1177,2011,2133,13619,2708,3410,3421,3431,4103,4389], +[0,6583,6727,4552,6759,1858,6422,3033,7039,6763], +"react-tabs", +"stickyfill", +"swagger", +"2openapi", +[2,8124,8125], +[2,4564,1283], +[1,2343,8133], +"@cypress/webpack-preprocessor", +"@hot-loader/react-dom", +[3,5535,19], +[2,8131,1896], +[0,0,8134,8142,2487], +[0,1166,4481,1906], +"ompurify", +[2,6491,8135], +"-to-", +"-to-json", +[2,4863,8138], +[3,7729,12], +[2,8140,8112], +[0,4552,1144,13625,6270,6692,13626], +[1,2343,8164], +"@types/lunr", +[3,7639,11], +[2,8145,1722], +[2,8145,1360], +"ismjs", +[2,7893,8148], +[3,4890,12], +"d-components", +[2,8150,8151], +[3,7752,9], +"pable", +[2,8153,8154], +"-env", +[2,4891,8156], +"@wojtekmaj/enzyme-adapter-react-17", +"to-json", +[2,1848,8159], +[2,7686,1194], +"-checker", +[2,4059,8162], +[0,8167,8176,8177,2523], +"lodash.noop", +"unfetch", +[0,614,13633,1417,13635,3435], +"OpenAPI", +" Specification", +[2,8168,8169], +"Swagger", +"API", +"REST", +"React", +"React.js", +[0,4389,1090,1593,1610,48,13638,53,3438,87,5619], +[0,1145,1388], +[1,2343,8179], +[0,0,8188,2514,2537], +[3,444,13], +[2,8180,965], +[3,10975,16], +"use-", +[3,2758,11], +"layout-effect", +[2,8184,8185], +[2,8183,8186], +[0,4389,2080], +"tip", +"tooltip", +"popover", +"popup", +"position", +"positioning", +[1,2343,8196], +[0,8197,8198,8200,2537], +[0,1690,13648,13651,3431,13652,13653], +[0,1389,2759,2899,3697], +"fontsource", +[0,1145,6468,6637,1148,5982,2022,2025,4170,13656,4386,6969,1973,5472,6533,13657,2275], +"font family", +" fonts", +[2,1885,8202], +"Inter", +"face", +"typeface", +[1,2343,8208], +[0,0,8209,8212,2537], +[0,3421,1429,4085,1776,2297,2899,4747,1177,4042,4135,1448,1290,1362,2151,1317,1389,53,1863,2900,13662,1280,2871,13674,1267,13665,13672,68,2904,1208,2912,2895,13668,4067,1198,13663,1240], +"serenity", +"Roboto", +[0,1149,7241,1237,6435], +[1,2343,8215], +"screenplay", +[0,0,8219,8222,34352], +"common-t", +[2,8216,103], +[2,6057,8217], +[0,4874,13680,4384,4474,91], +"fontawesome", +"svg", +[0,1149,7003,5194,27,13682,11995,1862,36], +[1,2343,8224], +[0,8225,8226,2514,2537], +[0,1153], +[0,1166,1177,1894,3310,3697,13688,2990,1959,1879,1938,1895,1947], +[1,2343,8228], +[0,0,8230,8233,2537], +[2,79,1202], +[0,53,13693,87,92,13694,5087,1193,1596,1192,2990,3377,13695,13698,3697,1894,4474,91], +"stage-3", +[2,88,8231], +[0,1155,2649,1149], +[1,2343,8235], +[0,0,0,8236,2523], +[0,1157,1388], +[1,2343,8238], +[0,8239,8240,8241,2487], +[0,4449,1512,13709,4135,13711,13712,13713], +[0,3421,4389,1177,3410,1159,4103,13614], +[0,13716,6698,6950,3378,13716], +[1,2343,8246], +[3,361,10], +"rebuild", +[2,8243,8244], +[0,8247,8249,8257,2487], +[0,1525,2036,7937,3310,13723,4135], +"node-abi", +[0,53,94,1208,13725,1429,1503,1610,3125,2899,3421,4216,4255], +[3,361,9], +"-forge/cli", +[2,8250,8251], +"devtools", +"-installer", +[2,8253,8254], +[2,1807,8255], +[0,1163,13728,13729,1444,3073,1179,3358,1528,13730,2602], +[1,2343,8259], +[0,8260,8261,8265,2523], +[0,1457,1512,13736,13738,2070,10911,3074,3467,9478,705,13739,4747], +[0,1173,1267,1429,1177,1879,1938,1947,1959,2899], +[2,4364,4622], +[2,458,8262], +[2,7726,2862], +[0,1163,4796,1161,3383,2282], +[1,2343,8267], +[0,8268,0,8269,2399], +[0,1393,1423,13746,3527,3688], +[0,1165,1623,3665,3561,6425], +[1,2343,8274], +[2,466,2220], +[2,466,2942], +[2,466,594], +[0,8276,8279,8280,4139], +[2,466,553], +[0,13753,1082,1084,1110,13754,1144,13757,13758,1437,13759,1458,13760,1486,13763,13765,13767,13770,1676,13772,2089,2205,13775,2709,2747,2752,13777,7906,3242,3478,13778,3530,3545,3718,13780,13781,13784,13786,4728,4747], +[2,5559,2844], +[2,5559,1783], +[0,11436,13789,4874,1107,1414,2020,2022,4193,4384,4400,4481,91,1906,13351], +[0,13791,1973,8791,5472,1166,13792,12804,2062,6969,13326,200,1192,2899,4389,4384,2907,2765,1145,6468,1862,6567,1149,3046,7003,1179,5701,13793,13795,13796,2275,8745,2022,91], +[1,2343,8282], +[0,8283,8287,8288,2537], +[0,1437,1835,3008,1209,3170,3188,4232,13802], +"/types", +[2,3940,8284], +[2,6369,8285], +[0,4856,4870,8778,6503,4874,7749,6513,4891,1362,1429,13804,2151,2675,2990,2899,1894,13805,4039,4167,4257,1241,4487,91,2924,4677], +[0,2924,1194,11526,91], +[1,2343,8290], +[0,8291,8305,8307,2523], +[0,4113,1002,614,3348,1398,2018,4734,13811,13812,3767], +"@tailwindcss/aspect-ratio", +[3,8292,13], +[2,8293,25], +"typography", +[2,8293,8295], +"basename", +"manage", +"r-webpack-plugin", +[2,8298,8299], +[2,2090,8300], +"remove-", +[2,1586,4408], +[2,8302,8303], +[0,1429,2297,2899,1177,1503,2765,2924,1649,4535,1389,91,4874,2843,1509,2766,2898,13817,13818,2881], +"sass-lint", +[0,5592,6997,7200,6850,6779,6949,6930,6810,6808,6979,6871,6991,6835,7024,6602,7301,7308,6619,7016,6665,6572,6629,7055,6709,7254,6814,6832,6976,6740,7101,6963,6933,7215,7175,6817], +[3,6566,9], +[2,8308,3855], +"boilerplate", +[1,2343,8312], +[0,0,8313,8314,2537], +[0,1429,2070,1437,1496,2020,2228,2675,1776,2832,2297,2899,4193,1177,2814,1593,668,2203,3471,2720,13824,1894,4535,13825,11869,13827,2878,7231,91,53,4874,13829,1863,13831,2665,2900,2918,2990,3400,13832,13833,2626,3330,5561,13834,13836,4257,13837,87,13838,2897,4130,13839,2247,2283,2923,2253,2281,13842,2881,4261,5663,1895,2895,13848,13850,78], +[0,13852,6653,5472,2275,6969,5982,11346], +"@hapi/", +"accept", +[2,8315,8316], +[1,2343,8319], +[0,8331,8332,8334,2537], +"@hapi/ammo", +"@hapi/boom", +"@hapi/bo", +"unce", +[2,8322,8323], +"@hapi/call", +"@hapi/ca", +"tbox", +[2,8326,8327], +"-memory", +[2,8328,8329], +[0,2139,13860,2131], +[0,1414,2323,1437,2675,2297,2899,4193,1177,3246,3483,4042,2026,13868,2151,13824,3183,1596,1610,2141,2188,2036,7798,4393,91,53,1364,1863,2918,2766,3714,13870,2898,1159,192,13880,87,13873,8850,8862,5583,2915,4073,13882,2881,2912,2895,2921,811,13867,2910,13879,13866,816,13875,13871,5467], +"@hapi/heavy", +[0,4731,27,6662,1862,202,1388,1612,4030,5592,5576], +"@hapi/hoek", +"mimos", +"@hapi/mimos", +"podium", +[2,8315,8338], +"shot", +"@hapi/shot", +"@hapi/s", +"omever", +[2,8342,8343], +"tatehood", +[2,8342,8345], +"ubtext", +[2,8342,8347], +"teamwork", +[2,8315,8349], +[1,2343,8352], +[0,8355,8356,8365,2537], +"@hapi/topo", +[2,8315,2649], +[0,13889,2051,13891,13892,3923,705,4545,3348,1155,4734,4736,2845], +[0,13894,1389,1596,13895,2228,2296,13896,2759,2297,2881,2891,13899,2895,2897,2900,2904,2899,3202,3297,4170,4535,4650], +"@hapi/code", +"@hapi/inert", +"@hapi/lab", +"@hapi/v", +"ision", +[2,8360,8361], +"wreck", +"@hapi/wreck", +[0,202,13531,13901], +[1,2343,8367], +[0,8368,8369,3182,2537], +[0,1175,1257,1280,1282,1525,1573,5175,2070,1209,13913,3507,4207,4227,13914,1457], +[0,1184], +[1,2343,8371], +[0,8372,8373,3272,34352], +[0,13922,1180,13924,13928,1280,1282,1284,1287,1288,1291,1573,1676,2856,1209,3181,3507,7223,4207,4227], +[0,1184,13930,1257], +[1,2343,8375], +[0,8376,8377,2514,2523], +[0,814,104,58,101,51,1996], +[0,2675,2899,1680,1177,2000,1894,2990,1178,13936,1938,1935,1955], +[1,2343,8379], +[0,8380,8381,2514,2523], +[0,13928,1282,1288,1707,2835,1209,4227,13942], +[0,1184,1291], +[1,2343,8383], +[0,8384,0,2514,2537], +[0,1282,1209,13948,4135], +[1,2343,8386], +[0,8387,0,2514,2523], +[0,1282,13930], +[1,2343,8390], +"nf", +[0,0,0,8393,2487], +true, +"cookiecutter", +[0,1172,188,1219], +[1,2343,8395], +[0,8396,8397,2514,2537], +[0,8755,10879,1208,13961,1437,2215,4207], +[0,53,8776,8780], +[1,2343,8399], +[0,8400,8401,8402,4139], +[0,2105], +[0,48,53,68,87,1414,1177,1895,1955,2203,2675,2990,1894,2924], +[0,2924,1194,1172,5194,5198,1237], +[1,2343,8404], +[0,0,8405,8406,4139], +[0,53,73,87,1173,1175,1178,13725,13982,1264,13983,1268,1284,1288,13985,1177,1895,1903,1938,1954,1955,1958,1970,2899,3696,1894,4039,4103], +[0,5297,13988], +[1,2343,8408], +[0,8409,8410,8411,2537], +[0,3435], +[0,4389,1177,4039,1173,1175,2708,53,1178,1280,13995,87,1261,1267,4103,1938,1881,1203,8229,1198,5853,13998,1244], +[0,1172,1932,14000,1204,202], +[1,2343,8413], +[0,8414,8415,3465,2523], +[0,1282], +[0,1189], +[1,2343,8417], +[0,8418,8434,8444,2399], +[0,5652], +"@keyv/redis", +[2,1416,8421], +"-redis-yet", +"cacheable", +"opens", +"spring", +"icu", +"charset", +"launch", +"xdg", +"cmd", +"xdg-open", +"iconv", +"popmotion", +"exe", +[0,53,90,14011,1175,14012,1596,1177,1879,1895,1938,1955,2079,2675,2990,3132,3377,1894,14014], +"executable", +"cache manager", +[2,27105,15292], +"multi-store cache", +"caching layer", +"cache abstraction", +"cache middleware", +"cache strategies", +"cache wrapper", +[0,5297,1114], +[1,2343,8446], +[0,8447,8448,8449,2537], +[0,56,14022,8697,14024,14025], +[0,48,53,5756,5241,94,1429,1596,1610,2899,3421,14027,4255], +[0,2759,1172,1932,14029], +[1,2343,8451], +[0,8452,8453,8454,2537], +[0,5652,104,2070,1209,14035], +[0,48,53,14039,78,5235,4851,83,87,90,14041,94,10828,1149,1198,1210,1429,14042,14045,3021,2899,3776,3804], +[0,5297,14047,1209,5260], +[1,2343,8456], +[0,8457,8458,8459,2487], +[0,14053,2070,3539,4022,814], +[0,48,53,81,5241,87,1175,1193,1532,1177,1881,1895,1938,2675,1192,2990,10623,4257], +[0,1172,5297,1237,14056,8861,9345,814,14057,14059,3209,1204], +[1,2343,8461], +[0,0,8462,2514,2523], +[0,1192,14065], +[1,2343,8464], +[0,0,0,3465,2523], +[1,2343,8466], +[0,0,0,3465,2537], +[1,2343,8468], +[0,8469,8415,3465,2523], +[0,14078,14080,1282], +[1,2343,8471], +[0,8472,8415,3465,2523], +[0,14086,14087,1282,1284], +[1,2343,8474], +[0,8475,8476,8477,2487], +[0,14093,1282,1284], +[0,1173,1230,1255,1267,1429,2899], +[0,1172,5297,6598,70], +[1,2343,8479], +[0,8480,8415,3465,2523], +[0,1282,1284,1287,1288,1209], +[1,2343,8482], +[0,8483,8484,3465,2487], +[0,14107,1282,1284,1288], +[0,1189,14109], +[1,2343,8486], +[0,8414,8415,3465,2399], +[1,2343,8488], +[0,8489,8415,3465,2537], +[0,14109,1282], +[1,2343,8491], +[0,8492,8415,3465,2523], +[0,1282,14123,1220], +[1,2343,8494], +[0,0,8495,8496,2537], +[0,48,53,5216,8229,61,5240,87,14128,90,94,1178,14132,1429,1177,1879,1922,1935,1938,1947,1951,1955,1959,2205,2899,14133,1894], +[0,1172,5297,89,14137,14139], +[1,2343,8498], +[0,8499,8415,2514,2537], +[0,14145], +[1,2343,8501], +[0,8414,8415,3465,2537], +[1,2343,8503], +[0,8504,0,2514,2487], +[0,1282,1593,3957], +"comment", +[2,8505,1574], +[1,2343,8513], +[3,539,8], +[2,8508,6939], +[3,539,17], +[2,8510,1541], +"leasot", +[0,8514,8515,8516,2487], +[0,87,90,56,5761,83,14160,13051,78,5835,14163,5853,14167,1251,5782,14170,5806], +[0,1177,53,97,4103,1938,1881], +[0,1172,5194,6778,5284], +[1,2343,8518], +[0,8522,8541,2514,2523], +"clair/typebox", +[2,5324,8519], +"@typesc", +[0,14184,14191,1225,14192,14195,1235,14196,14198,14199,14201,14204,14206,14207,14209,1240,14210,14211,14213,14214,14215,14217,14218,1244,14220,14222,14224,1253,1393,2731,4135], +"hema/core", +[2,8521,8523], +[3,8524,12], +"main", +[2,8525,8526], +[2,8525,4763], +"@vinejs/vine", +"ajv-", +"ajv-errors", +"-export", +"-export-map", +[2,4354,8533], +[3,5370,11], +[2,4626,8535], +"effect", +"fp-ts", +"io-ts-types", +"lefthook", +[0,1173,1178,1184,1189,1208,1264,1280,1429,1503,1177,13936,1935,2151,1209,2899,3421,14227,4039], +[1,2343,8545], +"monocle-ts", +"newtype-ts", +[0,8548,8557,2514,2487], +"-validator", +[2,7209,8546], +[0,14184,14192,14195,1235,14196,14198,14199,14201,14204,14206,14207,14209,1240,14210,14211,14213,14214,14215,14217,14218,1244,14220,14222,1253], +"bot", +"valibot", +"vite-", +[2,8551,4480], +"fluent", +"-ts", +[2,7020,8554], +[2,8553,8555], +[0,13930,1189], +"effect-ts", +[1,2343,8562], +"typeschema", +"vine", +[0,8563,0,2514,4139], +[0,14237,1220,14238,1248,14240,14243], +[1,2343,8565], +[0,8566,0,2514,2537], +[0,53,61,71,14170,14160,13051,14249,5700,5240,5879,83,87,90,92,97,7913,1251], +"google ", +" api", +"late api", +[2,4713,8569], +[2,8567,8570], +[3,8571,16], +"google api", +[3,8570,9], +[1,2343,8576], +[0,8577,0,2514,34352], +[0,14256,14257,1275], +[1,2343,8586], +"@atlaskit/pragmatic-drag-and-drop", +"-scroll", +[2,3959,8580], +[2,8579,8581], +[3,8582,34], +"hitbox", +[2,8583,8584], +[0,8587,0,2514,2523], +[0,14265,13982,1277], +"vue3", +"vue ", +[1,2343,8592], +"vue 3.x", +[0,8593,0,2514,2537], +[0,1279,14270,1217,1230], +[1,2343,8595], +[0,8596,0,2514,2523], +[0,14191,14276,1225,14224,1245], +"@ctrl/tinycolor", +[1,2343,8599], +[0,8600,8601,2514,2537], +[0,1175,1282,1593,14282,1209,3188,4232], +[0,6323], +[1,2343,8613], +[3,546,10], +[2,8603,2089], +[2,8603,998], +[3,6505,9], +"te-stream", +[2,8606,8607], +"rap-ansi", +[2,7820,8609], +"cli-width", +"mute-stream", +[0,4115,8617,2514,4139], +[3,8605,11], +"esting", +[2,8614,8615], +[0,13924,1255], +"answer", +"answers", +"ask", +[1,2343,8627], +"confirm", +"generate", +"hyper", +"inquire", +"interface", +[0,8629,0,2514,2537], +"iterm", +[0,1282,1287,1288,1291,1209], +"promptly", +"question", +"scaffold", +"scaffolder", +"stdout", +"yeoman", +"zsh", +[1,2343,8638], +[0,8639,8640,2514,2523], +[0,13922,13928,1282,1288,1291,1676,2203,2731,1209], +[0,1180], +"@stencil/core", +[1,2343,8672], +"domino", +[3,8641,9], +[2,8644,2278], +"@clack/prompts", +"@capacitor/core", +"@playwright/test", +[3,8647,11], +"haptics", +[2,8649,8650], +"keyboard", +[2,8649,8652], +"@axe-core/playwright", +"@ionic/", +[2,8655,7625], +"-bar", +"status-bar", +[2,8649,8658], +[2,8655,7628], +[2,812,4607], +"-target", +[2,6811,8662], +[2,4625,8663], +[2,8644,8664], +"react-o", +"utput-target", +[2,8666,8667], +[2,8644,8668], +[2,1101,8663], +[2,8644,8670], +[0,8679,8680,2514,2487], +"stencil", +"webapp", +"capacitor", +" web app", +[2,6434,8676], +"pwa", +[0,1282,14301,1209,5915], +[0,1180,1291], +[1,2343,8682], +[0,0,8684,2514,2523], +"-cjs", +[0,4384,1389,53,14311,87,14128,1573,90,14309,5835,5879], +[1,2343,8686], +[0,0,8687,8688,2487], +[0,1166,1173,1178,1184,1203,1208,14318,1267,1272,1437,1503,1610,1177,13936,1935,2126,3421,4039,4042,4045,4067,12613,14320], +[0,1172,5284,57,1291], +"standardx", +[1,2343,8692], +"layout", +[0,8693,8694,8695,2537], +[0,4545], +[0,1509,1597,1734,1177,1938,2297,2908,2907,4005,4042,4535], +[0,11415,6624,12620,38,36,5576,1388], +[3,549,12], +[2,8696,2844], +[1,2343,8699], +[0,8700,8701,8702,2443], +[0,1525,2070,2720,3445,4039,4484,3348,1155], +[0,14333,4865,4866,4874,7819,14334,4891,1009,1011,5476,14337,14338,5478,1429,1177,1938,1954,2899,3200,14339,4167,4172,4409,4469,4474,4508,91,594,2924,4677], +[0,5995,1293,3230,4978,14344], +[3,444,18], +[3,550,15], +"illu", +[1,2343,8715], +"tions-react", +[2,4273,8707], +[2,8705,8708], +[2,8704,8709], +"@swc/", +[2,8711,6706], +[3,958,16], +[2,8713,4607], +[0,7936,7938,7939,2537], +"react-table", +[1,2343,8718], +[0,0,8720,8721,2523], +"@swc/cli", +[0,1596,2228,2240,2314,14352,2759,2899,3954], +[0,14354,14355,14356,14357,1157,1396], +"-extensions", +[2,3751,8722], +[2,1962,8723], +[1,2343,8730], +"-system", +[2,4964,8726], +"itwin", +"itwinui", +[0,7967,7938,7939,2443], +[1,2343,8732], +[0,0,8733,8735,4139], +[0,13662,1317,1389,4389], +"jest-config", +[0,14357], +"unner", +"jest-runner", +"jest-run", +[2,8738,6901], +[3,2802,10], +[2,8740,1524], +[3,551,8], +"nsole", +[2,8742,8743], +"snapshot", +[2,2769,8745], +[2,2769,2649], +"jest-h", +"aste-map", +[2,8748,8749], +"reporters", +[2,552,8751], +"@jest/t", +"ransform", +[2,8753,8754], +"jest-re", +"gex-util", +[2,8756,8757], +[1,2343,8760], +[0,8766,8772,8774,2523], +"est-result", +[2,8753,8761], +"jest-m", +"essage-util", +[2,8763,8764], +[0,4100], +"-files", +[2,2356,8767], +[2,2772,8768], +"-dependencies", +[2,2797,8770], +[0,2899,1177,2759,1954,1938,1958,1903,1948,1970], +[3,6494,9], +[0,14372,1303,14374,14375], +[3,8762,11], +[2,8775,594], +"cromatch", +[2,7890,8777], +"raceful-fs", +[2,5246,8779], +"sequencer", +[2,8775,8781], +[1,2343,8789], +"easy", +"sive", +"immersive", +"instant", +"mocking", +[0,8792,8793,8794,2537], +"painless", +"runner", +[0,1797,3181,3183,3188,14380], +[0,1177,1903,1938,1954,1958,1970,2899,4039,4342,4459,4538,4588], +[0,2026,5130,14387,6690,14388,3361,5122,4030,7096,38,1896,3724,5995,5592], +"sandboxed", +[1,2343,8797], +[0,8798,8799,8810,2537], +[0,3299,15160], +[0,1192,15164], +"schemas", +[2,552,8800], +"@types/i", +"-report", +"-reports", +[2,1207,8804], +[2,8802,8805], +[3,8806,16], +"lib-coverage", +[2,8807,8808], +[0,1306,6875,1303,5165,7141,6641,1616], +"@tsd/typescript", +[1,2343,8813], +[0,0,0,8814,2537], +[0,1306,5284,676,3428,6875,1303,5165,7141,6641,1616], +[1,2343,8819], +[3,7729,13], +"chema", +[2,8816,8817], +[0,0,8822,8810,4139], +"jsdom-", +[2,8820,2202], +[0,1306,26406,1894,91], +"mock-store", +[2,3944,8823], +"dux-mock-store", +[2,5249,8825], +"-reg", +"iste", +"r-element", +[2,8828,8829], +[2,8827,8830], +[2,1746,8831], +[1,2343,8834], +[0,8835,8842,8843,34352], +[0,14413,1525,1457], +"jsonforms", +"rendere", +[2,8837,152], +"uischema", +"ization", +[2,5317,8840], +[0,2025,2228,1330,2236,2300,2247,2281], +[0,14416,14417,14418,7190,14419,14421,8309,14422,14423,14426,14428,14430,14433], +[1,2343,8845], +[0,0,0,8847,2523], +"@date-io/dayjs", +[0,1317,14438], +[3,4055,16], +[2,8848,2257], +[2,812,1781], +[3,6390,15], +"mport-css", +[2,8851,8852], +[1,2343,8855], +[0,8856,7938,7939,4139], +[0,43,46,1089,1093,1116,1132,1140,14443,1294,1298,1316,1318,1321,1322,14444,1336,1339,1342,12701,1344,1346,1348,1350,1352,12703,1354,1356,1358,14445,12704,1373,1376,14446,1386,14447,1402,1425,1428,12705,1440,1449,1450,12708,12709,14450,14453,12710,12711,12714,1663,1706,1711,14458,1715,1726,1801,2019,12715,14459,12719,2058,2059,2083,2147,2160,14460,2177,2213,2216,2217,12720,2562,2563,2567,2589,2605,2606,2612,14461,12722,2723,14464,14467,2950,2954,2957,12726,2962,14469,3086,14471,3099,12730,3134,12733,3186,3238,14473,14474,3239,3240,3245,3262,14477,3295,3439,12736,3443,3472,14478,3531,3535,3558,12737,3777,3931,12740,14479,4105,4106,4112,4124,12743,14480,12747,14483,4168,4173,4177,4189,4192,4206,4212,4214,4215,4235,12749,14484,4236,4239,4258,12750,4267,14487,4335,4338,12755,4347,4352,4370,4377,4433,14489,14491,4456,4461,12756,12757,12760,4548,4559,4595,12763,14492,14496,4659,4662,12764,14497,4724], +[1,2343,8858], +[0,8859,8863,8864,4139], +[0,3171,3445,4707,1695,2967,814,4430,1457,3183,14502,3560,3714,1537,14506,3923,14508,14512,14505], +[2,4807,3429], +"alias", +[2,812,8861], +[0,14515,3212,4389,4453,2759,4650,1389,14514], +[0,14518,1389], +[1,2343,8866], +[0,7967,7938,7939,2537], +[1,2343,8868], +[0,8869,8870,8871,2443], +[0,1209,12344], +[0,1596,14527,2759,14529,3774,4019], +[0,1317,6681,6887], +[1,2343,8873], +[0,7967,7938,7939,2523], +[1,2343,8875], +[0,8876,0,8877,34352], +[0,14544,14546,14548,53,5216,58,61,14249,5704,5809,5241,5874,87,92,101,9311,9100,4874,1091,14552,1137,1149,1448,1457,1462,1512,14557,1573,2141,2633,14558,3310,3403,1894,14562,2278,4218,4227,4246,3709,91,4535,14563,188,4747,2720,14564], +[0,14566,14568,14570,14571,14572,14574,5130,91,5284,4799,11608,8889,5995,14575,14576,14579,14580,14582,14584,14587,11498,14591,14592,14594,14596,4056,14597,14600,89,14601,14602,188,14603,14605,8889,3709,14607,14608,4218,14609], +1769904000000, +[1,2343,8880], +[0,8881,8882,8883,2399], +[0,14615,14616,14617], +[0,1170,1429,1177,2899,14621,3752,14622], +[0,1781,14626,1646,4647,1644,57,14628,4141,3917,6033,1149,14629], +[1,2343,8885], +[0,0,0,8886,2523], +[0,14634,14635,14636,14637,6988,14638,14639,14640,14641,14642,14643,14644], +"@lumino/polling", +"@lumino/", +"widgets", +[2,8888,8889], +"commands", +[2,8888,8891], +"algorithm", +[2,8888,8893], +[3,8892,10], +"reutils", +[2,8895,8896], +[1,2343,8903], +"messaging", +[2,8888,8899], +"signaling", +[2,8888,8901], +[0,8904,0,8908,4139], +[0,14652], +"disposable", +[2,8888,8905], +[3,8887,9], +[0,970,11154,1326,14654,6817,3122,14655], +"roperties", +[2,8907,8909], +[3,565,12], +"statedb", +[2,8911,8912], +[3,8894,9], +"pplication", +[2,8914,8915], +[3,565,15], +[2,8917,594], +[3,8913,13], +"ervices", +[2,8919,8920], +"coreutils", +[2,8911,8922], +"render", +"rendermime", +[2,8911,8925], +"docregistry", +[2,8911,8927], +[1,2343,8935], +"translation", +[2,8911,8930], +[2,8911,7842], +"-interfaces", +[2,8926,8933], +[0,8938,8939,2514,2537], +[3,8931,13], +[2,8936,8615], +[0,14660], +[0,3421,4389,4487,1894,3310,3752,91,4874], +[1,2343,8941], +[0,8943,8948,8950,34352], +"docopt", +[0,14667,14669,14671,14672,5241,83,14673,13998,14674,5564,14676,4649], +"glob2base", +"lodash.d", +"ifference", +[2,8945,8946], +[0,14680,48,53,5241,87,14682,94,97,10821,14684,827,14687,14689,10828,14691,11277,10837,11288,972,5087,4883,14693,14694,13995,14695,1193,1195,14697,14698,1208,1261,1268,14012,1282,14699,1462,1596,1610,1655,14702,1177,14707,2323,2529,2541,14708,2708,1192,2787,2820,3220,14711,3342,3377,3400,3415,3421,3697,1894,3786,89,3824,14714,14719,4039,4103,4111,14721,4307,4468,4469,91,2924,4676,4677], +"multipipe", +[0,1328,14723], +"safe-wipe", +[2,4832,6270], +"-theme-default", +[2,566,8953], +"-comment", +[2,8955,1574], +[2,4329,8956], +"indent", +[2,4293,8958], +"vinyl-s", +"tring", +[2,8960,8961], +[1,2343,8968], +"builtin-", +[2,8964,2051], +[2,1226,8965], +"opn-cli", +[0,8969,8970,8971,4139], +[0,14731,1398,2713,3923], +[0,2080,4255,4389,91], +[0,1398,6825,3101,7178], +[1,2343,8973], +[0,8974,8975,8976,2523], +[0,1082,14738,14741,2756,3433,1695], +[0,1149,14744,1506,2228,2240,2247,2253,2273,2281,3006,2899,3521,4019,89,14748], +[0,4504], +[1,2343,8978], +[0,0,0,8979,2523], +[0,14755,14756,14757,14759,14761], +"chatfanpage", +"api-con", +"-x", +"nect-x", +[2,8981,8983], +[3,8984,12], +"tiwtter", +[2,8985,8986], +[1,2343,8989], +[0,8990,8991,2514,2487], +[0,14768,1437,14769,1209,14770,3127,14774,14775,3152,14776,14777,4294,14780,14781], +[0,14785,1331,1512,1177,1903,1938,1954,1958,1970], +[1,2343,8993], +[0,7967,7938,7939,4139], +[1,2343,8995], +[0,8029,7938,7939,2399], +[1,2343,8999], +[2,8603,6847], +[2,8603,3742], +[0,8029,7938,7939,2523], +"tasklist", +[1,2343,9002], +[0,8029,7938,7939,2487], +[1,2343,9004], +[0,0,9012,9013,2523], +"move-", +"scroll", +"move-scroll", +[2,3877,9007], +"react-te", +"xtarea-autosize", +[2,9009,9010], +[0,2759], +[0,1359,2013,14824,6681], +[1,2343,9015], +[0,0,9016,9017,2523], +[0,1499,4093,2070,3445,1082,14830,2899,4193,2272,3188,4039,14829,1362,2597,2759,3460,1481,4535,1084,1389,1364,1615,4151,2839,2311], +[0,1862,6681,6567,14832,14833,1149,7003,14834,14835,14836,14838,14839,14840], +[1,2343,9019], +[0,0,9020,9021,2487], +[0,2899,8689,1926], +[0,14846,14847,14848,14849,14850], +[1,2343,9023], +[0,9024,9025,2514,2487], +[0,1413,1562,1676,2657,2685,3440,3763,3784,1000], +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], +"calendar", +[1,2343,9028], +[0,9029,9030,9031,2537], +[0,1362,14864,2712,1209], +[0,14869,1429,1177,1895,1955,2675,1776,2930,2990,2899,3259,3421,3519,1894,4193,4196,4246,3348], +[0,3469,3259,14873,7827,14874,14877], +[1,2343,9033], +[0,9034,9035,9036,2537], +[0,2607], +[0,1501,620,3123], +[0,1851,27], +[1,2343,9038], +[0,0,9039,5359,2537], +[0,2739,4763,3171,2278,34683,2297,1177,2205,2814,3984,4042,4086,4072,2765,2822,3363,3561,4167,6393,1894,1492,1610,4939,4320,48,2689,53,27098,6375,2654,3566,3989,30616,1165,3401,6371,6376,2898,3019,34673,29226,6372,7637,8149,7610,11275,26407,1907,6382,4555,87,29568,1937,5583,1938,1982,2881,2889,30620,6373,1948,2895,6390,811,33071,3963,2910,6379,816,2876,6387,6392,6385], +[3,593,11], +[2,9040,147], +[1,2343,9043], +[0,0,9048,9049,2537], +[3,586,12], +[2,9044,5602], +[3,9045,13], +[2,9046,623], +[0,2278,14892,1797], +[0,1367,2278,1623,14894], +[1,2343,9051], +[0,0,0,9055,2537], +"-react-", +[2,9052,3902], +[2,588,9053], +[0,1370], +[3,80,7], +[2,9056,5342], +[1,2343,9059], +[0,9060,9061,9062,4139], +[0,14904,1420,1437,1471,4290,4507,9731,4726], +[0,1166,3421,4481,1906], +[0,200,5403,14907,7009,6048,7201,6938,3656,14908,2585], +[1,2343,9064], +[0,9065,9066,9067,2537], +[0,14923,814,14924,4431], +[0,1389,1537,4384,4430], +[0,1389,14927,2150,14930,1932,2947,14932,6374,14357], +[1,2343,9069], +[0,9070,9077,9078,2537], +[0,1676,3181,4648,14940,14937,14939,14938], +[2,597,592], +[3,9071,14], +"ystem", +[2,9072,9073], +[2,597,553], +[2,597,594], +[0,1429,2899,4039,2151,3980,14942,1951,1385,14944], +[0,14938,5284], +[1,2343,9080], +[0,9081,9082,9083,2537], +[0,14938,1380], +[0,14953,1385,1429,2899,14942], +[0,14938,1698,1585], +[1,2343,9085], +[0,9086,9090,2514,2487], +[0,6520,14959,2116,14939,4449,4648], +[3,603,15], +"documenter", +[2,9087,9088], +[0,4856,6503,4874,14962,1429,1540,2899,14964,3421,1894,14967,4487,4490,14970,91], +"json-api", +[1,2343,9095], +"json:api", +"normalizer", +[0,9096,9097,9098,2487], +[0,14978,14980,14981,1437,1457,1544,1549,14982,14985,14986,984,2145,2151,2659,2700,3170,3459,13399,3784,14990,4093,710,4150,4151,4153,4218,11804,4747], +[0,4874,14992,1429,14995,2215,13333,2899,1894,3760,705,4019,4039,4193,4220,4232,4294,4342,91,4597], +[0,14998,1623,15000,15001], +[3,4873,9], +"@types/mdx", +[1,2343,9103], +"mdx", +[0,9104,9105,9106,2523], +[0,1002,2070,614,1695,1145,1398,2018,2571,15043,15016,7029,3729,814,2713,3757,4431,15017,15019,2861,15020,15030,4165,15040,15006,15044,1537,15031,15037,15048,15018,15028,15042,15047,15007,15009,3502,15033,3923,15022,15036,1618,15039,15046,15014,15013,15015,13818,15024], +[0,15060,4384,1241,4135,4430,1292,15057,15052,1506,15051,15055,15056,15059], +[0,1388,3209,10906,15064,6374,3378,5284], +"encryptor", +[1,2343,34414], +"-model", +[2,603,9109], +"@rushstack/node-core-library", +[3,9111,11], +[2,9112,7009], +[3,9113,12], +"s-comm", +[0,15070,15071,15073,814,4430], +"and-line", +[2,9115,9117], +[2,9114,9118], +"rig-package", +[2,9112,9120], +[0,2832,3275,3752,705,4039,4384,15077], +"heft-node-rig", +[2,9112,9123], +[3,9124,15], +"eft-jest", +[2,6495,9126], +[3,7892,12], +[2,9128,3180], +[2,5554,7625], +[0,1389,14927,1858,2202,2203,353,11316,10906], +"JSDoc", +"AEDoc", +"TSDoc", +"alpha", +"beta", +[1,2343,9138], +[0,9139,0,9140,34352], +[0,28572,1423,14227,15085,15088], +[0,1421,2887,15090], +"tsdoc-build-rig", +[1,2343,9144], +"ig", +[0,9145,9147,9148,2443], +[0,15095], +[3,1937,15], +[0,4389,4039,91,4874,15097], +[0,15100,15101,1616,15102,15103,15105,10368,9254,15107], +[1,2343,9150], +[0,0,9151,9152,2399], +[0,3421,4390,4481,1429,3348,1437,2899,4193,1177,4042,4474,1894,1317,3310,4196,91,4856,4874,6503,6513,3090,6512,4232,1978,1895,1955,603,10817,1011,816,15115,1009,549], +[0,3230,1395,57], +"jju", +[1,2343,9155], +[0,0,0,9157,2487], +"@types/jju", +[0,1396,1388], +[1,2343,9159], +[0,9160,9164,9168,4139], +[0,1082,15127,15128,1437,3090,3183,15130], +"@dat", +"astream/core", +[2,9161,9162], +[0,15132,1177,2070,2899,4039,4042,15134,811,8850,816,4227,4232,15136], +"@types/a", +"ws-lambda", +[2,9165,9166], +[0,5284,15139,15140,15141,6778,7192,5194,6598], +"Lambda", +"Middleware", +"Serverless", +"Framework", +"AWS", +"AWS Lambda", +[1,2343,9176], +[0,9177,9178,9179,2443], +[0,1301,13811], +[0,1090,1317,1389,1537,2676,13651,13633,4237,4389,4431,4535], +[0,6866,1388,1389,1398,15148,6735,15149], +[1,2343,9181], +[0,0,9187,9188,2537], +"Middy", +"HTTP", +"Body Parser", +" Body Parser", +[2,6671,9185], +[0,13614,1158,1159,1177,2708,3410,4103,4389], +[0,1398,4162], +[1,2343,9190], +[0,9197,9198,9199,2537], +[3,7709,17], +"sm", +[2,9191,9192], +"aws-", +"xray-sdk", +[2,9194,9195], +[0,15160], +[0,2899,640,15164], +[0,1401], +[1,2343,9201], +[0,0,8134,9202,2523], +[0,4061,15174,4062,202,5260,364,15175,3392,4552,1460], +"moj", +[2,4964,6770], +[1,2343,9206], +[0,0,9208,9222,2523], +"hash-base", +[0,1637,3566,1894,4039,2278], +"@open-", +"draft", +"/deferred-promise", +[2,9210,9211], +[2,9209,9212], +[3,9213,12], +[2,9214,2942], +"until", +[2,9214,9216], +"is-node-process", +"outvariant", +"ct-event-emitter", +[2,4285,9220], +[0,1623,2278,4329,15182,10052,6398,5130], +[1,2343,9232], +"test-server", +[2,9214,9224], +"@ossjs/release", +[2,4860,982], +[3,7808,15], +"upload", +"fileupload", +[2,9228,9230], +[0,9234,9238,9253,2523], +"rate-limit", +[0,5923,15187,8646,688,691,9296,15194,11420,1170,1437,1676,29297,15197,3445], +[3,7810,9], +"llow-redirects", +[2,9235,9236], +[0,9736,9737,4856,5245,15203,6503,4874,6513,1009,1429,1177,1891,1893,1895,1955,2899,3211,3297,3377,3421,1890,4172,4193,4474,91], +"upertest", +[2,5051,9239], +"@types/ws", +"engine.io-parser", +[2,2032,9230], +[2,2032,9233], +[2,4183,1960], +[3,4220,10], +[2,9246,57], +"ironment-miniflare", +[2,8156,9248], +[2,1984,9249], +[3,5572,9], +[2,9251,2022], +[0,5592,1745,3452,5593,15208,200], +"encoding", +[2,5925,9254], +[3,4684,9], +"ttp-server", +[2,9256,9257], +[1,2343,9260], +[0,9263,9264,9265,2523], +"intercept", +"low-level", +[0,15006,15051,1537,14738,3183,4431], +[0,4389], +[0,1389,6374,15215,3178,3209], +[1,2343,9268], +"mui", +[0,9269,9270,9271,2487], +[0,15221,3220,15220,15223], +[0,15225,4384,4591,4593,3123], +[0,3073,6807,15227,1781,1409], +[2,619,553], +[2,619,594], +"@mui/base", +[1,2343,9276], +[0,9277,9278,9279,2487], +[0,15232], +[0,15234,1177], +[0,15236,25,15237,2139], +"core-", +"s-tracker", +[2,1764,9281], +[2,9280,9282], +[2,619,9283], +[1,2343,9286], +[0,9287,9288,9289,2537], +[0,3080], +[0,14408,15243,14406,15245,14405,14404], +[0,11995,4552,1398,6866,7270,1411,1781,4699,15247], +[1,2343,9294], +"theming", +[2,5695,9291], +[2,619,9292], +[0,0,9295,9297,2537], +[0,1177,1948,2899,3421], +[2,9710,15201], +[0,1412,1413,6435,1644,57,6270,15253], +[1,2343,9299], +[0,9303,9304,9305,2537], +"mui-x", +"timepicker", +[2,1666,9301], +[0,15258,8697,2105,15261,11935,11938,11943,14025,15262,4747,4748], +[0,4874,1429,15264,1610,2899,4255,4474,91], +[0,4504,15266,1973,2759,15267,3323,202], +[1,2343,9325], +"@headlessui/react", +"@iconify-icon/react", +[3,602,8], +[2,9309,1194], +"@mdx-js/mdx", +"@shikijs/transformers", +"@theguild/remark-npm2yarn", +"nist", +[2,7817,9314], +"@vcarl/remark-headings", +"approximate-number", +"-watch-webpack-plugin", +[2,2473,9318], +"flex", +"flexsearch", +"git-url-parse", +"phrasing", +[2,3138,9323], +[0,0,9326,2514,2523], +[0,6041,1192,2020,2675,2205,4042,668,12444,4468,4474,4508,2151,1894,15275,91,53,5087,2990,3123,4864,4131,15276,4057,15277,811,1652,816,15273], +"next-seo", +"-async", +[2,3830,9328], +[3,3968,10], +"ract", +"-excerpt", +[2,9331,9332], +[2,9330,9333], +"rehype-p", +"retty-code", +[2,9335,9336], +"matter", +"frontmatter", +[2,3986,9339], +"remark-h", +"eading-id", +[2,9341,9342], +"link-", +"rewrite", +[2,9344,9345], +[2,3986,9346], +"shiki", +[1,2343,9356], +"-themer", +[2,4383,9350], +"virtual-", +[2,9352,5260], +[2,4670,9353], +"zustand", +[0,9369,9370,9371,2443], +[2,4860,4349], +"tra-watch-webpack-plugin", +[2,8773,9358], +[3,7634,10], +"-url-parse", +[2,9360,9361], +[2,9099,6892], +"@repo/eslint-config", +"@repo/", +[2,4524,1541], +[2,9365,9366], +[2,9365,7628], +[0,2928,32554], +[0,11976,15288,8419,4874,7677,37080,8420,4039,4493,91,1984,8422], +[0,2325,20164,8436,202,10339,8437,1552,3143,8438,9553,8439,8440,8441,8442,8443], +[1,2343,9373], +[0,9377,9380,9385,2537], +[3,5309,9], +[2,9374,8924], +[2,9374,57], +[0,9441,15305,15308,15310], +"css-what", +"esthetic", +[0,13614,1159,9254,1855,1177,2011,2133,13619,2708,3410,3421,3431,4103,4389], +"builder", +"guides", +"demo", +"ng-doc", +[0,5284,5286,3595,676,6716,7239,6714,6715,7162,1417,7272,3046,6830], +[1,2343,9387], +[0,0,8134,9388,2537], +[0,1420,15320,15318,15321,13230,15322,1758,4545,15323,1871,2585,6270,15324,15326], +[1,2343,9390], +[0,0,0,9391,2537], +[0,12080,12075,8221,1388], +[1,2343,9399], +[2,3964,1671], +"has-p", +[2,9394,3871], +[2,2573,9395], +[3,9396,11], +"eading-", +[0,0,0,9410,2523], +"eading-rank", +[2,9397,9400], +"rehype-m", +"inify-", +[2,9403,3661], +[2,9402,9404], +[3,4555,11], +[2,9406,7131], +[3,9312,9], +[2,9408,3958], +[0,4231], +[1,2343,9412], +[0,9413,9418,9419,34352], +[0,3299,32944], +"ordinal", +[3,6490,12], +"as-promised", +[2,9415,9416], +[0,4874,15342,2026,2822,2899,3536,4255,4481,91], +[0,1424,15344,11812,15345,15346,158,11806,2636], +"ethers", +"hat", +"hardhat", +"n.js", +[2,4853,9423], +[3,634,25], +[2,9425,9420], +[3,634,17], +"low-", +"low-imports", +[2,1967,9429], +[2,9427,9430], +[3,9431,31], +"-inter", +"nal-rules", +[2,9433,9434], +[2,9422,9435], +[2,9432,9436], +[1,2343,9442], +"ethereum", +"smart-contracts", +[2,1417,15307], +[0,0,9443,9444,2537], +[0,1159,1177,1881,1938,2151,2899,2924], +[0,2924,1932,15356,1204,3209], +[1,2343,9446], +[0,0,0,9450,2523], +"proggy", +"cacache", +"bin-links", +[0,3521,15361,1973,5472,15362], +"treeverse", +"@npmcli/fs", +"walk-", +"up-path", +[2,9453,9454], +[2,636,3766], +[3,643,9], +"edact", +[2,9457,9458], +"npm-p", +"ick-manifest", +[2,9460,9461], +"-checks", +[2,1161,9463], +[2,3382,9464], +"promise-", +[1,2343,9482], +"call-limit", +[2,9466,9468], +[3,2854,15], +"nice", +[2,9470,9471], +"-conf", +"lict-json", +[2,9473,9474], +[2,1644,9475], +"package-", +[2,9477,1781], +[2,636,9478], +"common-", +"ance", +[0,0,9511,9521,2523], +"stor-path", +[2,9481,9483], +[2,9480,9484], +"read-p", +"ackage-json-fast", +[2,9486,9487], +"all-reject-late", +[2,9466,9489], +[3,641,9], +"ame-from-folder", +[2,9491,9492], +[3,638,9], +"etavuln-calculator", +[2,9494,9495], +[3,548,8], +"e-compare", +[2,2703,9498], +[2,4284,9499], +[2,9497,9500], +"json-p", +"arse", +"-even-better-errors", +[2,9503,9504], +[2,9502,9505], +"installe", +"d-package-contents", +[2,9507,9508], +[2,636,9509], +[0,1414,15370,2899,1177,668,2203,15371,1690,1894,442,91,15373,15374,5476,1942,15376,811,5478], +"tcompare", +"oss", +[2,4641,9513], +[2,636,9514], +[2,636,7625], +"minify-", +[3,3396,9], +[2,9518,6774], +[2,9517,9519], +[0,1973,6468,1145,5472,1429], +[1,2343,9523], +[0,9524,9525,9526,2523], +[0,15373], +[0,1414,1429,2899,1177,2203,1894,442], +[0,1429,15385,1388,1149,5472,5710,6567,14833], +[2,664,591], +[1,2343,9529], +[0,0,9530,9531,34352], +[0,3095,2899,1429], +[0,1429,3495,15393], +[1,2343,9533], +[0,0,9534,9535,34352], +[0,1429,2899,2759,1596,14942,15398], +[0,1429,15385,15400,1435,6793,1932,15402,1697,15403,3529,9549,7015,15405], +[3,9479,9], +"-spawn", +[2,2751,9537], +[2,9536,9538], +[1,2343,9541], +[0,0,9543,9544,4139], +"spawk", +[0,1414,1906,1166,4481,2020,3130,3077,15411,4874,6271], +[0,1473,7208,1512,7009,7201,200,1871,1111,590,592,6621,6983,6616,7244,4166,4744,3073,6807,6876,2585], +[1,2343,9546], +[0,0,9571,9581,2399], +"innertext", +"highlights", +"similar", +"similarity", +[3,2954,9], +[2,9551,2714], +"ttl", +[2,4635,9553], +"dart", +[2,9551,9555], +"glsl", +[2,9551,9557], +"haxe", +[2,9551,9559], +"rust", +[2,9551,9561], +[2,3064,2204], +"erlang", +[2,9551,9564], +[2,9551,4333], +"-tokens", +[2,9548,9567], +"atom-language-diff", +[3,9569,14], +[0,1166,1178,1596,15418,1177,15421,2323,15423,2384,2494,2510,15424,1209,3421,3756], +"nginx", +[2,9570,9572], +"url-t", +"o-object", +[2,9574,9575], +[2,2287,9576], +[3,3114,13], +"xpand-tabs", +[2,9578,9579], +[0,1438,3778,1179,1973,15426,1213,15427,15428], +"-headers", +[2,7189,9582], +[2,3108,9583], +[1,2343,9589], +"oniguruma", +"-stdout", +[2,9261,9587], +[0,0,0,9590,2523], +[0,1444,15321,6270,353,15320,15326,15436,15437,15439], +"readme", +[1,2343,9596], +"formatted", +" highlighting", +[2,5341,9594], +[0,9597,9598,2514,2537], +[0,15444,9632,1556,15447,6041,15448,15449,3445,3510,15450,15451,4135,15452], +[0,4874,5254,7677,1177,1905,2807,1894,4257,91,4543,1984], +[1,2343,9600], +[0,9601,9602,9603,2537], +[0,15458], +[0,811,15460,8850,816,842,1006,15463,1009,1011,15465,15467,15469,1540,1596,1610,1177,15471,1927,1937,1948,1999,2070,2765,2766,2297,2881,2886,2891,2895,2898,6387,2910,15475,2923,5303,3220,3222,3536,4042,4052,6390,15478,4073,91,4747], +[0,1424,15480,2382,15481,12075,6398], +[1,2343,9605], +[0,9606,9607,9608,2443], +[0,3493,4548,15488,15487,2654,15486,1754,15502,15491,15499,15495], +[0,4494,4483,2675,2832,1177,2814,1984,2203,1894,4441,442,91,4874,2990,13204,19438,15504,1953,15505,4523,7677,1942,22839,1982,3703,15507,1895], +[0,15512,2814,3585,15514,57,965,6523,1936], +[1,2343,9610], +[0,9611,9612,9613,2523], +[0,1615,15526,3734], +[0,1173,14184,1235,1267,1429,1177,2272,2899], +[0,1451,3729,6567], +[1,2343,9615], +[0,9616,9617,9618,2537], +[0,97,15533,8597,15538,13042,1156,1325,15540,1461,1505,12160,1582,1593,1603,15541,15545,15547,15548,13047,15550,5100,15551,15553,2752,2822,15554,2272,15555,15556,12172,3220,15559,1894,11196,15560,15562,3775,11219,11363,15566,15568,15570,15573,3843,3847,15575,15578,3876,3893,3913,4023,15579,11264,4163,15580,4484,4545,4649,3348], +[0,53,61,71,73,76,78,5806,13052,5835,15585,83,5850,5853,87,90,7833,7839,7840,11275,4859,15587,15592,4863,15594,15596,5087,15598,4870,15600,15602,12179,4880,15605,4883,15606,15607,11322,1009,1011,1110,1165,1170,1175,1178,1193,1195,1205,13080,5098,15609,15611,15612,15613,1426,1437,13086,1525,1610,1628,4912,1639,11336,13093,1843,1845,8160,1177,1879,1895,1922,1938,1939,1947,1948,1959,15615,2054,2060,11345,2092,2148,2193,2070,2323,2338,2510,13099,2529,2675,2686,2697,15616,1192,2832,5102,695,13115,2990,1209,11357,13119,15618,13123,3177,3183,3188,3190,3191,3213,3216,3222,3427,3463,3561,3618,3720,11204,15619,15622,11362,89,3807,3810,3817,3820,5106,5108,15624,3846,15627,9340,3992,13124,13127,8304,13128,4039,13129,15629,4320,11384,11389,4323,11396,4328,4409,4431,4469,91,4549,4027,15630,15632,2924,15635,4689,13152,11401,5038,3354], +[0,15637,4964,89,5128,4627,4963,181,5130,4967], +[1,2343,9620], +[0,9629,9630,9631,2537], +"Monorepo", +"Angular", +"Web", +"Node", +"Nest", +"Jest", +"Cypress", +"CLI", +[0,15648], +[0,15645,4874,1894,4448,91,10761], +[0,2150,2282,6720,7158,6929,2090,2154], +"confbox", +[1,2343,9634], +[0,0,9635,9636,2523], +[0,1470,2675,23535,4255,4389], +[0,15656,15658,11857,1973,13735], +[2,13512,9638], +"-old", +[1,2343,9640], +[0,9641,0,9642,2523], +[0,182,148,6164,164,167,6215,137,27531,6127,29468,159,15664,177,187,153,162,180,185,191,157,15667,15670,15672,27537,140,15676,6200,6166,143,15678,171,116,15681,150,155,29542,15685,15687,6217,15690,15692,122,169,15695,119,15697,15700,6173,15703,146,6133,6158,15706,15712,111,6168,15714,15716,174,15720,15724], +[0,6092,1459,6094,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130], +[1,2343,9644], +[0,0,9645,9646,2523], +[0,4481,4042,4441,2665,3117,8850,811,816], +[0,89,1623,5256,6848,1461,614,6435], +"EsBuild", +"Front-end", +"Backend", +[1,2343,9651], +[0,9652,9653,9655,2523], +[0,4227], +[0,1389,1177,1881,2659,3297,4153,4616], +"linter", +[0,1623,2632], +[1,2343,9660], +"Lint", +"ESLint", +"Testing", +[0,9661,9662,9663,2399], +[0,1700], +[0,48,53,87,92,15742,5087,4874,15745,1193,1503,1610,1701,1177,2020,2675,1192,2990,2991,3377,1894,3921,4135,15747,91,2924], +[0,2924,1932,4050,202], +[1,2343,9665], +[0,0,0,9666,2523], +[0,1111,1468,7009], +"Express", +[1,2343,9669], +[0,9670,8134,9671,4139], +[0,15757,4025], +[0,1468,1237,3209,1204,2325,15759,15760,15761,5669,6865,7293,6790,2145], +[1,2343,9674], +"js-tokens", +[0,9679,0,9682,2523], +"const-enum", +[2,1199,9675], +[2,4524,6774], +[2,1226,9677], +[0,2070,2021], +"Swc", +"Tsc", +[0,200,9753,15767,15769,15768,7058,7201,15770,15771,15774,1523,15776], +[1,2343,9684], +[0,0,9685,9686,4139], +[0,1166,91,1906], +[0,200,5403,14907,7009,6048,7201,6938,3656,14908,2585,1781], +"@nestjs/schematics", +"@phenomnomnominal/tsquery", +"@date-fns/tz", +[1,2343,9691], +[0,9693,9694,9695,2537], +[3,23750,37,8], +[0,2353,1856,15786,13824,15788], +[0,1177,15793,15797,15801,2675,2990,3421,15804,15805], +[0,1111,1473,7201,7009,200,4166,3073,6807,4744], +[1,2343,9697], +[0,9698,9699,9700,2443], +[0,4035], +[0,4874,1166,91,1906], +[0,200,13006,1111,15813,5876,15814,15815,6048,7009,7201,6621,4166,6876], +[1,2343,9702], +[0,0,0,9703,34352], +[0,200], +[2,689,2656], +[3,691,8], +[2,9705,3320], +"help", +[2,689,9707], +[1,2343,9713], +[3,691,14], +"plugins", +[2,9710,9711], +[0,0,9715,9716,2537], +"fancy-test", +[0,1166,3077,15826,91,1906], +[0,200,1478,6787,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921,1781], +[1,2343,9718], +[0,9719,9720,9726,2399], +[0,1512], +[0,4170,15833], +[3,4866,9], +"dent-string", +[2,9721,9722], +"xyquire", +[2,6508,9724], +[0,200,1512,176], +[1,2343,9728], +[0,9729,9732,9751,2523], +[0,1209,4290,1512], +"clean-stack", +"widest-line", +[0,15841,1429,1481,1596,15843,15844,2323,2436,2463,2541,4193,4196], +"rett", +"ier-config", +[2,9733,9734], +[2,9705,9735], +[2,689,1973], +[3,4859,9], +"ean-stack", +[2,9738,9739], +"@types/ejs", +"npapi", +[2,5088,9742], +[3,9240,10], +"ports-color", +[2,9744,9745], +[3,7822,10], +"dwrap", +[2,9747,9748], +"madge", +[0,202,1523,3924,200,176,15846,15847,3656,1512,10052], +" line", +[2,1523,9752], +[1,2343,9755], +[0,9756,9757,9751,2399], +[0,4290], +[0,1481,1177,1895,1955,1192,15853,15854,1894], +[1,2343,9759], +[0,9761,8134,9762,2399], +[2,1890,4406], +[0,4208,4290], +[0,15862,15864,2585,7051,6913,200,7009,6048,4166,4289,1111,1871], +[1,2343,9764], +[0,9775,9795,6936,2537], +"paginate-rest", +[2,1186,9765], +[2,7724,9766], +[3,9767,16], +"request-", +"request-log", +[2,9768,9770], +[3,9771,18], +"st-endpoint-methods", +[2,9772,9773], +[0,1437,4484,2755,1209,4135,2822,15869,2151,4294,688,1110,9730,15871,1107,13223,4290,15872,15873,2709,15876,4351,15877,15880,15883,15887], +"-action", +"auth-action", +[2,7724,9777], +[3,9778,15], +"pp", +[2,9779,9780], +[2,1182,2995], +[2,7724,9782], +[3,692,11], +[2,9784,5460], +[2,7724,2190], +"update-", +"vers", +"in-files", +[2,7854,9789], +[2,9788,9790], +[2,9787,9791], +[2,6324,9792], +[2,4131,9793], +[0,1429,1170,2899,1177,4474,9714,91,4856,4874,6503,4870,5254,7637,4864,1431,15891,15893,9740,1891,15897,9746,9417,1893], +"octokit", +[3,3450,10], +[1,2343,9799], +[0,9800,9801,9802,2523], +[0,7103], +[0,816,10817,5087,4870,4874,27744,1009,1011,15903,15906,1177,15909,1959,2188,1192,1209,4042,15911,4468,4474,91], +[0,200,91,57,7119,7233,7058,5675,1523], +"action-menu", +[2,698,9803], +[3,9804,21], +"sheet", +[2,9805,9806], +[3,9804,15], +"lert", +[2,9808,9809], +[2,9808,2944], +"nchor", +[2,9808,9812], +"rea", +[2,9808,9814], +"chart", +"flowchart", +[2,5745,9817], +[2,9808,9818], +"utocomplete", +[2,9808,9820], +[1,2343,9823], +[0,9824,9825,9827,2523], +[0,15917,1631,15918], +[0,53,87,1195,1429,1610,1177,1881,1895,1938,1955,2675,2297,2878,2881,2900,2918,2925,2990,2899,1894,4193,4481,4537,2924,4677], +"vatar", +[0,1492,1585,15921], +"badge", +[2,698,9828], +[3,9829,16], +[1,2343,9832], +[0,9836,9839,9881,2537], +"se-select", +[2,9830,9833], +[3,9829,15], +[0,34216,2020,32794,2755,15926,28429], +"readcrumb", +[2,9835,9837], +[0,1166,1906], +"-item", +[2,9838,9840], +"ulletin-board", +[2,9835,9842], +[3,9843,16], +"tton", +[2,9844,9845], +"-group", +[2,9846,9847], +[2,698,9026], +[2,9849,8657], +[3,9850,23], +[2,9851,6624], +[3,9849,16], +"rd", +[2,9853,9854], +[2,9855,9847], +[3,9856,19], +[2,9857,1283], +[3,9855,17], +"ousel", +[2,9859,9860], +[2,9861,9840], +"scader", +[2,9853,9863], +"-menu", +[2,9864,9865], +[3,9866,24], +"obile", +[2,9867,9868], +[3,9866,23], +[2,9870,202], +"panel", +[2,9870,9872], +[2,9870,1631], +[2,9870,6624], +[3,9849,15], +"ell", +[2,9876,9877], +"hart", +[2,9876,9879], +[0,1492,1585,15928,15929,15930,3917,6033,15931,1490,15932,15933], +[1,2343,9883], +[0,9884,9885,6162,2537], +[0,4290,4294,4726], +[0,4874,1009,1011,1414,1429,1437,1610,1177,1938,1953,2321,2899,4039,8689,91], +[1,2343,9887], +[0,0,9888,2514,2487], +[0,2276], +[1,2343,9890], +[0,0,9891,9893,2399], +[0,1999,4579,4072], +"gauge", +[0,5256,6848,1461], +[1,2343,9895], +[0,9896,0,9897,2523], +[0,1474], +[0,15953,9628,14777,15955,1478,9892,3924,7201,1398], +[1,2343,9899], +[0,0,9900,9901,2487], +[0,1389,15960,2899,3261], +[0,1149,2124,1179,15962,15964], +[1,2343,9903], +[0,9904,9905,9907,2537], +[0,2927], +[0,4170,2899,1499], +"pie", +[0,7009,7201,3741,8622,6875,10098,1499], +[1,2343,9909], +[0,9034,9910,9911,2523], +[0,620,3123], +[0,1973,2022,6468], +[1,2343,9913], +[0,9914,9915,9916,2443], +[0,6478,15980,2822,15984,15985], +[0,1177,1895,2675,1192,2990,3203,1894], +[0,4504,15988,15990,1503], +[1,2343,9918], +[0,9919,9920,9921,2487], +[0,15997,15999,16000,16002,16003,16005,16006], +[0,16009], +[0,6038,1501], +[1,2343,9923], +[0,0,9924,9926,2399], +[0,1734,16015,2600,3105,4545], +"fall", +[0,5284,1351,1509,4643], +[1,2343,9928], +[0,0,9929,9926,2537], +[0,53,87,10688,1505,1734,2600,16021,3105,3758,4545,2924], +[1,2343,9946], +[3,9880,16], +"eckbox", +[2,9931,9932], +"-button", +[2,9933,9934], +[3,9935,23], +[2,9936,7227], +[2,9876,7877], +"lapse", +[2,9938,9939], +[2,9940,9840], +[3,9941,23], +"ition", +"transition", +[2,9942,9944], +[0,9972,9975,10072,2537], +"icker", +"or-picker", +[2,9938,9948], +[3,9949,20], +"select-", +[2,9951,9872], +[2,9950,9952], +"umn-list-group", +[2,9938,9954], +[3,9955,26], +[2,9956,5401], +[3,9938,16], +"mpany", +[2,9958,9959], +"nfig-", +"provider", +[2,9961,9962], +[2,9958,9963], +[3,9964,17], +"tainer", +[2,9965,9966], +"untry", +[2,9958,9968], +"rop", +[2,9876,9970], +[0,6271,11421], +"urrency", +[2,9876,9973], +[0,2899,4481,1906], +"date-panel", +[2,698,9976], +[3,9977,20], +[2,9978,9947], +"-mobile-", +"first", +[2,9980,9981], +[2,9979,9982], +[3,9977,19], +[2,9984,6754], +[2,9984,176], +[3,9977,15], +"ept", +[2,9987,9988], +"ialog-box", +[2,9987,9990], +[3,9991,21], +[2,9992,1631], +[3,9991,16], +"vider", +[2,9994,9995], +"rawer", +[2,9987,9997], +[3,9998,16], +"op-roles", +[2,9999,10000], +[3,10001,19], +"times", +[2,10002,10003], +[3,10001,18], +[2,10005,2971], +[2,10006,9840], +[3,10007,23], +[2,10008,4403], +"ynamic-", +"scroller", +[2,10010,10011], +[2,9987,10012], +[2,10013,9840], +"espace", +[2,698,10015], +[3,10016,15], +"xception", +[2,10017,10018], +"fall-menu", +[2,698,10020], +[3,10021,15], +"ile-upload", +[2,10022,10023], +[3,10024,17], +[2,10025,2389], +[2,10026,8657], +[3,10027,22], +"ox", +[2,10028,10029], +[3,10027,21], +[2,10031,9872], +"loat-button", +[2,10022,10033], +[3,10034,19], +"bar", +[2,10035,10036], +"ing-", +"button", +"ing-button", +[2,10035,10040], +[3,10034,17], +"wchart", +[2,10042,10043], +[3,10034,16], +"uent-editor", +[2,10045,10046], +[2,10022,3469], +[2,10048,9840], +"ullscreen", +[2,10022,10050], +"grid", +[2,698,10052], +"-column", +[2,10053,10054], +[3,10055,19], +"manager", +[2,10056,10057], +"toolbar", +[2,10056,10059], +[3,10053,15], +"uide", +[2,10061,10062], +"hrapprover", +[2,698,10064], +[2,698,158], +"-viewer", +[2,10066,10067], +[3,10066,15], +"ndex-bar", +[2,10069,10070], +[0,1473,7208,1623], +[3,10071,16], +"put", +[2,10073,10074], +"p-address", +[2,10069,10076], +[2,698,5433], +[3,10078,16], +"yout", +[2,10079,10080], +[3,10078,15], +[2,10082,2716], +[2,10083,9865], +[1,2343,10086], +[0,0,0,10090,2523], +"oading", +[2,10082,10087], +[3,10088,16], +[0,7009,592,1473,1111], +"cales", +[2,10089,10091], +"gon-user", +[2,10089,10093], +[3,10094,18], +"ut", +[2,10095,10096], +"mask", +[2,698,10098], +[3,10099,15], +"enu", +[2,10100,10101], +[3,10102,16], +"ssage", +[2,10103,10104], +"ilestone", +[2,10100,10106], +[3,10107,16], +"nd-map", +[2,10108,10109], +[1,2343,10112], +[0,0,10113,10120,2523], +[0,1177,1886], +[2,10100,3852], +[3,10114,16], +"nth-range", +[2,10115,10116], +[3,10117,20], +[2,10118,176], +[0,1111,7009,1512], +[1,2343,10122], +[0,10140,10184,10220,2443], +"nav-bar", +[2,698,10123], +[3,10124,18], +[2,10125,4403], +[3,10124,15], +[2,10127,2304], +"umeric", +[2,10127,10129], +[2,698,5675], +[2,10131,9847], +"pager", +[2,698,10133], +[2,10134,9840], +[3,10134,16], +[2,10136,7251], +[3,10134,15], +[2,10138,9947], +[0,4294,16041], +"op-upload", +[2,10138,10141], +[3,10142,17], +[2,10143,8622], +[2,10143,6038], +[2,10143,2883], +[2,10143,2104], +"rogress", +[2,10138,10148], +"ull-refresh", +[2,10138,10150], +"qr-code", +[2,698,10152], +[3,10153,15], +"uarter-panel", +[2,10154,10155], +[3,10156,16], +"ery-builder", +[2,10157,10158], +[3,697,15], +"adio", +[2,10160,10161], +[2,10162,9934], +[3,10163,20], +[2,10164,7227], +[3,10162,16], +[2,10166,6864], +[3,697,16], +"cord", +[2,10168,10169], +[3,10170,17], +"ycle-scroller", +[2,10171,10172], +"ich-text-editor", +[2,10160,10174], +[3,10175,16], +"ver", +[2,10176,10177], +"oles", +[2,10160,10179], +[3,10180,16], +"w", +[2,10181,10182], +[0,1173,1267,1437,4387,4389], +"scroll-text", +[2,698,10185], +[3,10186,20], +[2,10187,10036], +[3,10186,15], +"earch", +[2,10189,10190], +[3,10191,16], +[2,10192,4021], +"-dropdown", +[2,10193,10194], +[3,10195,21], +[2,10196,5131], +[2,10196,6624], +"ed-box", +[2,10193,10199], +[2,10189,1580], +"keleton", +[2,10189,10202], +[2,10203,9840], +"lider", +[2,10189,10205], +[2,10206,9934], +[2,10207,9847], +"plit", +[2,10189,10209], +"-list-item", +[2,1902,10211], +[2,10189,10212], +[3,10213,17], +"tistic", +[2,10214,10215], +[3,10213,16], +"eps", +[2,10217,10218], +[0,6922,2585,1111,7201,7009,4719,176], +[1,2343,10242], +"witch", +[2,10189,10222], +[3,700,15], +"ab-item", +[2,10224,10225], +[3,10226,17], +[2,10227,10036], +[2,10228,9840], +[2,10227,2699], +[2,10227,591], +[3,10226,16], +"g", +[2,10232,10233], +[2,10234,9847], +"ext-popup", +[2,10224,10236], +"ime", +[2,10224,10238], +"-line", +[2,10239,10240], +[0,0,10243,10265,2487], +[0,2025,2272,2899], +[3,10241,19], +[2,10244,9872], +[3,10245,20], +[2,10246,9947], +[2,10247,701], +[2,10244,6754], +[2,10244,1631], +[3,10250,20], +"pinner", +[2,10251,10252], +"line-item", +[2,10239,10254], +"oast", +[2,10224,10256], +[3,10257,16], +"ggle-menu", +[2,10258,10259], +"oltip", +[2,10258,10261], +"p-box", +[2,10258,10263], +[0,200,1523,3504], +"ransfer", +[2,10224,10266], +"-panel", +[2,10267,10268], +[3,10267,16], +"ee", +[2,10270,10271], +[2,10272,9865], +[3,10273,19], +[2,10274,1631], +[2,698,9229], +"-dragger", +[2,10276,10277], +[3,10278,21], +[2,10279,3392], +[3,10276,15], +"ser", +[2,10281,10282], +"-account", +[2,10283,10284], +[3,10285,19], +[1,2343,10288], +[0,10297,10298,10305,2443], +"contact", +[2,10286,10289], +[2,10286,3193], +[2,10291,9847], +[2,10286,163], +"watermark", +[2,698,10294], +[3,10295,15], +[0,16053,16056,3025,16057], +[0,1187], +"izard", +[2,10296,10299], +"year-range", +[2,698,10301], +[3,10302,19], +[2,10303,176], +[0,6478,1644,7233,7058,5675,14690,57,7119,200,1523,3924], +[3,1533,10], +[2,10306,6082], +"vue-c", +[2,10308,544], +"opentiny", +"less-c", +[2,10311,544], +[2,8924,10312], +[3,3197,10], +[2,10314,544], +[1,2343,10317], +[0,10318,10319,10320,2537], +[0,16053,16064,16066,16057], +[0,811,816,2829,4042,1187], +[0,7009,9753,1521,1179], +"esno", +[1,2343,10323], +[0,0,10324,10325,2537], +[0,4481,1192,1177,2203,4468,1894,442,91,5087,4874,4523,1939,1895], +[0,1525,1523,5675,57,200,7233,7058,6478], +[3,2517,9], +[2,10326,134], +[2,2522,8754], +[1,2343,10330], +[0,10331,10332,10333,2523], +[0,2070,1680,1209,16085,16078,2151,2720,3183,7915,4296,1707,16082,4300,1652], +[0,3421,1429,3348,2899,4193,2194,4135,1503,3363,48,2708,3752,53,94,4131,87,3200,1208,16092,16088,16090,78,1570], +[0,1528,3721,1671,16096,1527], +[1,2343,10335], +[0,10336,10338,5265,2537], +[0,192,6303], +"otterhttp", +[0,6306,6307,26379], +"node.js", +"web framework", +[1,2343,10343], +[3,17194,17], +[0,0,10344,10358,2487], +[0,1173,1178,1198,1230,13982,1264,1280,1503,1610,1742,1177,1895,1955,1192,3170,1894,4039,4042,4045,4067,4077,4706], +"header", +"-range-parser", +[2,10345,10346], +[2,704,1080], +[3,703,13], +"ntent-type", +[2,10349,10350], +[2,988,2706], +[2,704,10352], +[2,704,1000], +[2,704,1002], +[3,706,12], +[2,10356,995], +[0,4552,1172,6778,16107,5194,16108,16109,1936,8958,16110,3924,16111,3250,16112,3374,6985,16113,16114,16115,1871,16116,4301,10381,16117,1283], +[1,2343,10360], +[0,0,9839,10361,2487], +[0,2013,13771,2018,6868,15535,11631,16123], +[1,2343,10365], +"es-escape-html", +[3,10351,19], +[0,10375,10377,10378,2523], +"disposition", +[2,10364,10366], +"encode", +"encode-url", +[2,704,10369], +[3,10370,12], +"rrors", +[2,10371,10372], +[2,704,4590], +[0,1413,16130,1676,12627,16128,4100,4590], +"res", +[0,1087,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], +[0,1536,16518,25386,2663,2026,21665,27,3101], +[1,2343,10380], +[0,10383,9264,2514,2537], +"tag", +[2,10371,10381], +[0,16136,2713,3923,7231], +"send-file", +[1,2343,10386], +[0,10387,10388,10390,2537], +[0,4094,1437,4747,4459,4165,4351], +[0,2675,1177,1984,668,2203,1894,442,91,4874,2990,6479,4892,16151,16150,4523,16149,7677,4103,9746,22839,16144,1895,1955,16152,23753,10964], +[2,712,1732], +[0,16159,13792,12804,1540,1523,16160], +[1,2343,10394], +"fined", +"undefined", +[0,10395,10396,10398,2537], +[0,2856], +[0,4874,1414,1509,16166,34218,16167,3583,705,4135,4452,4474,91,4545,16168,4745], +"randexp", +[0,12084,1541,8309,16172,16174,1263,6639], +[3,10389,22], +"js-prettier-config", +[2,10399,10400], +"i-color", +[2,9738,10402], +[3,7744,9], +"tp-proxy", +[2,10404,10405], +"isnil", +[2,6308,10407], +[3,4874,9], +"@types/nock", +[1,2343,10412], +[0,10414,9839,10415,2537], +"@types/ramda", +[0,16181,8098,2215,34027,16184], +[0,1541,1542,13901,8309,6937,16188,1781,2382,16189,7007,14745], +"-and-tag-version", +[2,1528,10416], +"hai-friendly", +[2,4914,10418], +[3,3028,12], +[1,2343,10422], +[0,10423,10424,10425,2537], +[0,1676,2099,3494,4578], +[0,1177,2899,3421,4342], +[0,5130,5122,2663,1544,16196], +"pact", +"pact-js", +" testing", +"ract testing", +[2,3109,10429], +"r driven testing", +[2,6613,10431], +[1,2343,10434], +[0,0,10435,10436,2443], +[0,4616], +[0,1544,2026,16202,6347], +[1,2343,10438], +[0,0,10439,2514,2537], +[0,1177,1192,4193], +[1,2343,10444], +"default", +"waapi", +"urls", +[0,10445,10447,10448,2537], +[0,1676,16211], +"arguments", +[0,11436,192,5467,19181,442,5245,6494,7808,4874,9240,1009,1011,1166,1414,1503,1177,1895,1930,1955,2026,2040,2193,2675,2990,3230,3400,3446,1894,4257,4342,1531,4508,91], +[0,1544,1550,3230,1577,2026], +[1,2343,10450], +[0,0,10451,10452,2523], +[0,11976,7808,4874,7677,2040,4474,91,1983,26744,1984], +[0,1544,1552,1577,2026], +[1,2343,10454], +[0,0,10455,10456,4139], +[0,8646,4874,7677,1446,16230,1177,1905,16232,1894,16234,15452,4290,91,4543,1984], +[0,7201,2942,16237,16238,200,14566,4549,3741,16239,1671,1851,16240], +[1,2343,10458], +[0,0,10459,10460,2523], +[0,1906,1166,1758,16257,2746,1797,7614,3754,16272,16249,16262,16264,16268,16270,4371,16277,16279,2675,16263,89,16278,1177,16260,5304,16267,1209,16269,4135,16274,16276,16281,2114,16261,16271,2608,3257,3416,16282,3824,2036,3985,16275,4545,16280,53,16259,2990,16265,16245,1506,16251,16273,16256,16248,90,3995,1909], +[0,16284,1283,6624], +[1,2343,10462], +[0,0,10463,10464,2487], +[0,1414,1177,1903,1938,1948,1954,1958,1970], +[0,1560,27,16290,10376], +[1,2343,10467], +"fd-package-json", +[0,0,10468,10469,2523], +[0,3421,2899,1177,1693,1954,1938,1958,1903,1970], +[0,1562,27,990,10376,16296], +[1,2343,10471], +[0,10472,0,10473,2537], +[0,18186,10466,3157,18183,16309,13848,28401,16322], +[0,1566,16094,13729,3073,200], +[1,2343,10475], +[0,10476,0,10477,34352], +[0,3157,16330,16329,1566], +[0,200,13326,1566,16094,13729,3073], +[1,2343,10479], +[0,10480,0,10481,2443], +[0,16337], +[0,1566,16341,16342], +[1,2343,10483], +[0,0,10484,10485,2537], +[0,16349,4384], +[0,6270,12938,4225,3053,1388,1676], +[1,2343,10487], +[0,0,10488,10489,2523], +[0,29867,7677,16356,91,1984], +[0,977,16358], +[1,2343,10491], +[0,10492,9025,10493,2537], +[0,977,1581], +[0,977,2663], +[1,2343,10495], +[0,10496,10497,10498,2399], +[0,16358,1676,16128,4100], +[0,1544,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], +[0,1544,2026,2663,1577], +[1,2343,10500], +[0,0,0,10501,2537], +[0,977,16375,16376], +[1,2343,10503], +[0,10504,10505,10506,2537], +[0,16382], +[0,1389,3183,3294,16384,3460,16389,4535], +[0,1492,1585,1388], +[1,2343,10508], +[0,10509,10510,10511,2537], +[0,27921,2200,4121,3369,4143], +[0,1700,1192,2675,3144,1622,1177,1701,2203,16407,2924,1894,1610,48,442,1193,91,53,4874,2092,2990,3400,192,1953,27928,4257,87,4523,16396,1939,1942,68,1938,16398,20281,1982,1895,1955,19344,16400,5467], +[0,2924,1932,16410,7004,1585], +[1,2343,10513], +[0,10514,10515,2514,2537], +[0,2070,3181,3188,16415,4431,4558,4747], +[0,4039,4389,4387], +[1,2343,10517], +[0,0,7923,10518,2537], +[0,16421,11194,1179,16423,16424,16425], +[1,2343,10520], +[0,10521,10522,10523,2537], +[0,3044,1588,16432], +[0,4880,4883,91,89,3824], +[0,89,91,11194,11255,16435], +[1,2343,10525], +[0,10526,10527,10528,2537], +[0,1543,16446,16449,16444,6038,2020,3368,4135,4375], +[0,16454,1414,2765,4037], +[0,1591,5576,200], +[1,2343,10530], +[0,0,0,10531,2523], +[0,6570,6964,6789,7221,6746,7011,7194,7087,6839,6860,6918,6620,6777,16461,6748,7171,6894,6945,6743,7309,6837,6644,6634,7259,6797,7061,6608,16462,6726,6828,7275,6569,7144,7108,7027,7263,6923,6854,7134,6762,7042,6818,6677,6422,6805,1858], +[1,2343,10533], +[0,10534,10535,10536,2537], +[0,3427,4590], +[0,1087,1177,2026,2899,3421,4342], +[0,1594,2026,1544,2663], +[1,2343,10538], +[0,10539,10540,10541,2487], +[0,16473,2702,2822,16474], +[0,7637,4874,16478,1009,1011,16480,1610,1177,16482,1895,1915,1938,1954,1985,2675,2990,15757,1894,16484,91,1984], +[0,3001,8309,1541], +[1,2343,10543], +[0,10544,10545,10546,2537], +[0,2822,16491,16492,3183,705], +[0,2899,3421,4170,4172,4193,1906], +[0,4504,1596], +[1,2343,10548], +[0,10549,10550,10551,2537], +[0,16499,2205,3157], +[0,1166,2020,3505,16330,1906], +[0,13326,200,1585,16502,16499,2090,1586,1496,2150,3101,2070,16503,3275,2062,3719,2382,1563,16504], +[1,2343,10553], +[0,10554,10555,10556,2537], +[0,2212,16513,1448,16509,16512,2685,16511], +[0,1414,1166,4494,3297,4193,1177,2203,442,16515,91,4874,4454,4523], +[0,5284,1598,16517,15514,15362,2814,6710,27,2671,13333,2212,705,1002,11996,16518], +"@epic-web/invariant", +[1,2343,10559], +[0,0,0,10560,2443], +[0,1599,16523,16526,16528,16524,16530,16531,16532,13580,16533,16534,16536,16537], +[1,2343,10562], +[0,10563,10564,10565,2523], +[0,16542,2713,13892,16543,16544], +[0,13817,4100,4255,4387,4389], +[0,1616], +[1,2343,10567], +[0,10568,10569,10570,2523], +[0,3082,3427], +[0,1192,3744,89,3824,2924], +[0,89], +[1,2343,10573], +"degit", +[0,10574,10575,10576,2399], +[0,63,16560,1462,1532,16563,16566,1676,2105,2185,2205,2212,16568,2709,16570,2743,2812,1209,3021,3093,3157,16571,13233,16572,3527,3544,3561,16573,16576,16578,4002,4207,4400,4431,4597], +[0,1149,1610,2099,2182,1192,3297,16581,4151,16584,4278,4603,1906], +[0,1604,3403,1623,16587], +[1,2343,10578], +[0,10579,10580,10581,4139], +[0,6501,5303], +[0,192,442,16596,16597,16602,6061,16607,6063,6065,16608,16612,842,16145,5087,4874,6513,1610,1177,1895,1939,1955,2675,1192,2990,1894,4131,4193,91,4523], +[0,1605,16615,16617,16618,4116,16619,16621], +[1,2343,10583], +[0,0,0,10584,2537], +[0,1605,6400,5995,57,1606,16618,4116,16629,5957,12692,14571,16631], +[1,2343,10586], +[0,0,10587,10588,2537], +[0,30684,33382,16636,16637,33968,33969,16638,33971,17212,4874,1177,16644,1930,1938,1942,1951,1953,16647,1958,1964,1982,2203,25209,3124,16649,3390,1894,23535,33974,4508,91,16650], +[0,1605,16631,4116,1608,6400,5995], +[1,2343,10590], +[0,10591,0,10609,2537], +[0,10870,16666], +[3,804,10], +[2,10592,8893], +[2,10592,8891], +[3,10594,12], +[2,10595,8896], +[2,10592,8905], +[3,10597,11], +"omutils", +[2,10598,10599], +"ragdrop", +[2,10598,10601], +[2,10592,8652], +[2,10592,8899], +[2,10592,3583], +[2,10592,8901], +"virtualdom", +[2,10592,10607], +[0,158,12712,7004,16660,16661,16662,16663,16664,29241,29242,29244,29245,29247,29248,1936,1623,5284,6400,5122], +[1,2343,10611], +[0,10612,10613,10618,2523], +[0,10557,1615], +[0,31088,21122,4874,7677,23203,1177,1894,91,1984,31103], +"@release-it/conventional-changelog", +[2,812,4072], +"cobertura", +"git-", +[0,16674,16676,6574,16697], +"git-cz", +[1,2343,10625], +"global-jsdom", +[2,7627,1177], +[2,10622,20], +"putout", +[0,10626,10628,10629,2523], +[0,3310], +"quibble", +[0,3421,1429,3297,2675,2899,4747,4039,4042,4135,1503,2026,2924,4255,1527,91,4856,4874,1364,2990,4150,4677,6503,4705,192,4257,8849,3198,15277,1652,28710,5467], +[0,1612,27,1002,1862,1149,7003,14571,14566,202,89,970,1388,6805,7102,4731,6662], +"remark-github", +"toc", +"remark-toc", +[2,4513,9339], +[3,4514,16], +"dn-links", +[2,10634,10635], +"no-inherit", +[2,4513,10637], +[2,4513,3984], +[3,10639,17], +"-defaults", +[2,1213,10641], +[2,10640,10642], +[1,2343,10647], +"-prettier", +[2,4549,10645], +[0,10649,10662,10664,2487], +[3,5410,10], +[0,4707,16687,16688], +"annotate", +"pin", +"specific", +"ations", +[2,10652,10653], +"anatomy", +"dissection", +"dissect", +[3,10654,13], +"specs", +[3,2620,12], +[2,10660,591], +[0,1192,2675,1177,3188,4039,1175,1193,2990,192,4257,16692,16694,5467], +"spacing", +[0,1614,16696,6574,16697,16699,6987,8429,16701], +"speccer", +[1,2343,10668], +"grid-layout", +[0,10669,10670,2514,2523], +[0,16710,16713,16716,1600,16719,16721,9207,2713,16722,16725,3779,16726], +[0,13614,1177,13817,3421,3438,16728,4100,4135,4389], +[1,2343,10676], +"@web", +"/shadycss", +[2,4963,10673], +[2,10672,10674], +[0,0,0,10680,2523], +"dom5", +"lazypipe", +"poly", +[0,1965,1616,16733,16734,16735,16736,16737,16739,16740,16741,16742,16743,16744,16745,16746,16747,16748,16749,16750,16751], +"polymer-cli", +"polymer-", +[2,10682,6147], +"gulp-v", +"ulcanize", +[2,10684,10685], +"wct-browser-legacy", +[2,1262,3178], +[3,806,9], +[2,1382,5187], +[2,10689,10690], +"google-", +"clos", +[1,2343,10709], +"ure-compiler", +[2,10693,10695], +[2,10692,10696], +"iron", +[3,4314,10], +"-page", +[2,10699,10700], +[2,10698,10701], +[2,10689,10702], +[3,10675,15], +"webcomponentsjs", +[2,10704,10705], +"gen-closure-declarations", +[2,10689,10707], +[0,10710,10711,10712,2537], +[0,1509], +[0,1414,1177,16758,1938,1951,1954,1955,2899,16759,3400,1894], +[0,16166,57], +[3,78,24], +[3,5731,9], +[1,2343,10716], +[0,10758,10762,10764,2537], +"-assign", +[2,5734,10717], +[2,10714,10718], +[2,10713,10719], +"@metalsmith/layouts", +[3,10721,12], +[2,10722,1783], +[3,807,9], +"disable", +[2,2827,10725], +[2,1884,10726], +[2,10724,10727], +[3,10728,23], +"qx", +[2,10729,10730], +[3,10728,16], +"plugin-qx", +[2,10732,10733], +"app-", +"module-path", +[2,10735,10736], +"better-ajv-errors", +"cldr", +"console-", +"contr", +"ol-strings", +[2,10741,10742], +[2,10740,10743], +"core-js-", +[2,10745,6374], +[3,4913,14], +[2,10747,7877], +[3,7681,17], +"codeframe", +[2,10749,10750], +"fontkit", +"get-value", +"github-api", +"jstransformer-dot", +"ps-tree", +"set-value", +[0,16765,34219,16767,16768,34222,16770,16771,1109,1437,16064,1525,28612,16772,16775,16778,16779,16780,16781,26385,4135,27921], +"tap-colorize", +"unset-value", +"upath", +[0,8778,5254,3170,3181], +"dirsum", +[0,16789,16790,1501,15318,15321,16791,16793,16794,671], +"qooxdoo", +"fontend", +[1,2343,10773], +"back-end", +"gui", +"binding", +"databinding", +"interfaces", +[0,10774,10775,10776,2537], +[0,2713,4227,16799], +[0,2899,4170,3130,1413], +[0,1623,57,5374,5376], +"@mdi/font", +[1,2343,10781], +"@mdi/svg", +"@xmldom/xmldom", +[0,0,10782,10789,34352], +[0,442,16805,16808,1177,3561,4042,4579], +"animate.css", +[3,1369,10], +[2,10784,45], +"eva-icons", +"line-a", +"line-awesome", +[0,3561,6425,1623,6432,16811,3205,4327], +"ar", +"quasar", +"fonts", +"animations", +[1,2343,10795], +[0,0,10796,10797,2523], +[0,23339,13204,6503,4874,5542,16818,1177,16821,1895,1955,16824,2675,16825,2832,2990,2899,3377,1894,28865,29444,91,16827,16831], +[0,1623,5746,3392], +"gpu", +"detect-gpu", +"gltfpack", +[1,2343,10803], +"@react-", +[0,10812,10813,10819,2537], +"three/drei", +[2,10802,10804], +[3,10805,13], +"fiber", +[2,10806,10807], +"processing", +[2,3689,10809], +[2,10806,10810], +[0,16837,3561,16840,3638,16841,16842,3688,4135], +[0,48,53,87,192,5467,16405,1193,1610,1622,1701,1854,1177,1895,1938,2092,2675,1192,2780,695,2969,2990,3144,3177,3400,3618,3672,1894,2278,4111,4257,4294,4307,4333,4334,4027,2924], +"test-renderer", +[2,10806,10814], +[3,10615,16], +[2,10816,2528], +[3,827,17], +[0,2924,1623,1194,1002,1204], +"actions", +[2,10818,10820], +[1,2343,10823], +[0,10838,10845,10856,2523], +"essentials", +[2,10818,10824], +"interactions", +[2,10818,10826], +[2,10818,3966], +[3,827,11], +[2,813,2942], +[2,10829,10830], +"preset-", +[3,1603,13], +[2,10833,1896], +[2,10832,10834], +[2,10829,10835], +[2,10829,89], +[0,1637,3561,2805,4121,4143,5180], +"-webpack5", +[2,10837,10839], +[2,10829,1975], +"__jest-dom", +[2,6626,10842], +[2,7750,10843], +[0,1700,16858,1192,2278,2675,3144,1622,1177,1701,668,2203,4337,2924,16851,1894,1462,1610,48,442,1193,1628,91,53,16850,16854,4874,2990,3400,4111,16860,192,1953,27928,16853,4257,87,1939,1584,1942,1938,16857,20281,1982,1895,1955,3177,19344,16400,5467], +"@types/three", +"-image-diff-js", +[2,1651,10847], +[3,1970,16], +"orybook", +[2,10849,10850], +"r3f-perf", +[3,6068,15], +[2,10853,2481], +"suspend-react", +[0,1637,1623,16858,1462,11538,668,2924,1464,16862,16863,3178,2632,6707,6708], +[1,2343,10859], +"three-stdlib", +[0,10861,10869,10871,2537], +"threejs", +[0,16868,9378,15488,16870,15487], +"hree-fiber", +[2,3900,10862], +"y-player-me", +[2,3917,10864], +"3D", +"avatars", +"glb", +[0,4483,1984,91,4874,2654,11976,16874,16877,7677], +"@cropper/elements", +[0,1623,3585,16879], +[1,2343,10873], +[0,10885,10889,10890,2537], +"@phryneas/ts-version", +[2,5531,2090], +[2,5531,2924], +[3,4852,12], +"__core", +[2,10877,10878], +[3,10879,14], +[2,5223,5651], +[2,1181,10881], +[2,10880,10882], +"@types/n", +[0,3141,4228], +"@types/nanoid", +[2,4807,3765], +[2,7686,2473], +[0,1414,16885,668,1177,16889,2899,4042], +[0,1623,6892,207,57,16891,16892,1179,594,5341,7020], +[1,2343,10892], +[0,0,10893,10899,2537], +[0,16805,1393,2070,3561,3566,3672,4135,4320,4323,16898], +[3,811,14], +[2,10894,594], +"common", +"commondir", +"is-reference", +[0,1623,16897,10654,16900], +"locat", +"e-character", +[2,10900,10901], +"relative", +[2,4013,10903], +[1,2343,10907], +"commonjs", +[0,0,10908,10909,2537], +[0,1173,1264,1503,2228,14352,2759,2899,3954,4019], +[0,1623,1867,16906,1871,4990], +[1,2343,10913], +"is-builtin-module", +"is-module", +[0,10914,10917,10918,2537], +[0,2984,16912], +"capitalize", +[2,4284,10915], +[0,1165,3561,16915,16916], +[0,1623,15215,3178,16918,16919,3561,6425], +[1,2343,10920], +[0,10921,10922,10926,2443], +[0,28920,30928,1634,3084], +[0,23591,23205,1177,1895,1955,2203,1894], +"groq-js", +[3,817,8], +"@sanity/ui", +[0,6829,6977,7146], +"@types/cpx", +[1,2343,10937], +"dotenv-flow", +[2,10924,1473], +[2,10924,45], +"@sanity/c", +[2,10932,1124], +[3,3878,10], +[2,10934,6346], +[2,7686,93], +[0,0,10943,10945,2537], +"pkg-utils", +[2,10924,10938], +"@portabletext/react", +[3,10940,14], +[2,10941,6081], +[0,53,87,92,442,16805,33227,16933,16934,5087,13204,4874,15600,16938,1193,1437,1457,1634,1895,1955,2126,1192,2832,3141,1894,3980,4494,4495,91,4523], +"cpx", +[0,1623,590,91,2124,4532,553,7900], +"sanity", +"refractor", +"kdirp", +[2,6502,10948], +"-workshop", +[2,10925,10950], +"vitest-", +[1,2343,10954], +[0,10955,10956,10965,2523], +[0,16944,977,2657,1581], +[0,3421,2899,1177,1544,4342,1364,1575,1578,1954,1938,1958,1903,1948,1970], +[3,9794,18], +"reset", +[2,10957,10958], +[2,10924,10959], +"imple-", +"import-sort", +[2,10961,10962], +[2,1967,10963], +[0,16944,11590,2663,2026], +"API reference", +[1,2343,10968], +[0,10969,10970,10971,2537], +[0,1642,1645,1647,4280], +[0,816,6503,4874,1794,2899,1894,4042,4064,4066,4170,4474,91], +[0,202,1641,16956,57,1644,5374,1646,353,3101,8623,16957,5995,4967], +[3,9307,12], +[2,10972,188], +[2,7719,57], +[2,819,10974], +[2,4807,1143], +"snippetz", +[2,819,10977], +[2,10987,14037], +[1,2343,10983], +"@unhead/vue", +"@vue", +[0,0,10985,10986,2523], +"@vueuse/core", +[0,816,6503,4874,1680,1794,2899,1894,4042,4064,4066,4170,4474,91], +[0,3101,8623,1641,3048,5995,4967], +[3,35505,11], +"code-", +[2,10988,5342], +[2,819,10989], +[3,818,12], +[2,10991,5576], +"@scalar/o", +"as-utils", +[2,10993,10994], +[2,819,553], +"@scalar/t", +"hemes", +[2,10997,10998], +"toast", +[1,2343,11006], +"use-toasts", +[2,819,11002], +"@scalar/co", +[2,11004,4961], +[0,0,11007,11009,2523], +[0,816,6503,4874,1642,16971,1680,1794,2899,2966,1894,4042,4064,4066,4170,4280,4474,91], +[2,27553,1794], +[0,1641,1644,57,6270,16956,3101,5995,4967], +"blocks", +[2,10829,11010], +[1,2343,11014], +[2,5249,11020], +[0,0,11015,11019,34352], +[0,816,6503,4874,1642,1680,1794,2026,2899,1894,4042,4064,4066,4170,4474,91], +[2,1029,188], +"test-utils", +[2,5334,11017], +[0,1641,1646,5374,5995,4967], +"flect.ownkeys", +"webpack-stats", +[2,4049,11021], +[1,2343,11024], +[0,6203,11025,11029,2537], +[0,35960,6503,4874,1217,1596,3183,2899,3421,4193,4468,4474,91,4537,2924,4677], +[2,4609,7179], +"css-in", +"well-known-symbols", +[0,1641,16984,16986,1648,1781,16989,16990,16991,16994,16995], +[1,2343,11035], +"jected-by-js", +[2,11027,11031], +[2,4609,11032], +"media-mock", +[0,11036,11042,5543,4139], +[0,3261,2070,1512,1209,4593,2089,6532,814,1362,17003,3730,1525,2753,1483,12126,6481,17010,6479,17007,2709,17011,17009,17000,1874,6475,17002,6470], +"-tooling", +[2,6147,11037], +[2,819,11038], +"galaxy", +[2,819,11040], +[0,3421,4449,1429,2899,4193,1177,1544,1593,1290,2151,3257,1894,17013,1596,48,1389,4196,53,1178,1509,4151,94,6525,6530,87,1954,1922,3957,1938,1208,1958,1895,1903,1955,1970,14039], +"reference", +[1,2343,11045], +[0,0,11046,11047,2537], +[0,1257,1264,1280,1389,1177,17019,2665,3188,17020,4389,4415,4535,17021,4650], +[0,6926,3265,7818,17025,3348], +[3,820,8], +[2,11048,1932], +[1,2343,11055], +"@fastify/basic-auth", +"external", +"externals", +[2,4065,11053], +[0,11056,0,11057,2537], +[0,4449,12675,1437,1673,1676,2020,29952,4753,1398,2992,1209,17031,1458,2089,3729,1362,16078,1836,2151,3183,17036,1525,4459,4558,6520,1477,1483,8435,1532,2057,3074,3714,17039,17041,2015,13860,4351,17042,17047,4375,2744,6515], +[0,13428,1388,1651,17049,11862,11861,11857,4627,17050,8791,17051,17052,1973,5472], +[1,2343,11059], +[0,11060,11061,2514,2523], +[0,1437,17059,4717,1527,3054,6301,17058], +[0,1429,2899,4135,1894,4856,1595,6503,3210,4131], +[1,2343,11063], +[0,11074,11087,11089,2523], +[2,823,364], +[2,823,4030], +[3,825,16], +"query-s", +"elector-", +"shadow-dom", +[2,11068,11069], +[2,11067,11070], +"tiny-", +"tiny-types", +[0,17081,17090,17067,17080,17082,17093,17101,17108,1654,17068,17071,14674,17083,17086,1655,1660,17104,17089,17098,17074,17096,17075,17078,17097,17091,1658,17107,17092,17103,17100], +"@integration/testing-tools", +[2,823,5710], +[3,11064,14], +"ucumber", +[2,11077,11078], +[2,823,2765], +[2,5554,36], +[2,823,11081], +[2,823,2899], +[3,7744,12], +[2,11084,2632], +"mocha-multi", +[0,2899,1177,4042,4614,17113,17110,8850,17112,10615,816], +"serenity-js", +[0,1653,965,17116,8221,7521,1424], +[1,2343,11091], +[0,11092,11094,11098,4139], +[0,17122], +"@wdio/reporter", +[0,816,17081,17098,1177,2832,2899,4042,4073], +"@wdio/", +"@wdio/cli", +[3,8255,9], +[0,1653,17125,17128,17129,17130,17134,7193,6333,4552], +[1,2343,11101], +"service", +[0,11102,11106,11107,2399], +[0,1654,17089,17092,17101,17103], +"@wdio/d", +"ot-reporter", +[2,11103,11104], +[0,14674,1177,2899,4042,4073], +[0,1653,17125,16662,17116], +"local-runner", +[2,11095,11108], +[2,4386,2903], +[2,11095,11110], +"@wdio/types", +[2,2299,2382], +[2,3758,1732], +[1,2343,11118], +"wdio", +[2,11116,2903], +[0,0,11119,11120,2523], +[0,1177,2832,2899,4042,4073], +[0,1653,17125,965,17146,17147], +[1,2343,11125], +[3,826,9], +"commons", +[2,11122,11123], +[0,11135,11136,11139,2487], +"@mochify/cli", +"@mochify/", +"driver-", +[2,11128,3758], +[2,11127,11129], +[3,11130,16], +[3,824,9], +[2,11131,11132], +[2,11122,7625], +[0,17093], +[0,17096,1177,2899,4042,4073], +"referee-sinon", +[2,11122,11137], +[0,1653,17125,11812,17116,1424,8221], +[1,2343,11141], +[0,11142,0,11144,2523], +[0,2108], +"ts-dedent", +[0,6400,17159,7521,8537], +"csf-plugin", +[2,10829,11145], +[3,10840,17], +"dom-s", +[1,2343,11152], +"dom-shim", +[2,11147,11150], +[0,0,0,11153,2537], +[0,1662,4380,4383,21029,21038,21039,11483,11487,21054,21052,21042,17164,21057,21050,17166,89,1623,181,188,4627,5130,3287,6400,17171,699,29332,3709,34683,12951,29336], +"addon", +"notes", +"organize", +[1,2343,11158], +[0,0,8134,11159,34352], +[0,17179,3183,14690,10446,7058,6802,200,3368,1525,17180,1523,12986,17181,17183,17184,13565,1644,57,6478], +[1,2343,11166], +[2,41,1512], +[3,11161,13], +"ssinjs", +[2,11162,11163], +[3,40,18], +[0,11198,11203,2514,2537], +"slick", +[2,11165,11167], +[3,452,18], +"-svg-icons", +[2,6920,11170], +[2,11169,11171], +"@pol", +"kadot/react-identicon", +[2,11173,11174], +"@polkadot/", +"util-", +"util-crypto", +[2,11176,11178], +[2,19177,11195], +"wasm-crypto", +[2,11176,11181], +[3,5050,14], +"tour", +[2,11183,11184], +"@zxing/browser", +"@zxing/", +[2,11187,6082], +"boring-avatars", +"list-react", +[2,2117,11190], +"jsqr", +"phosphor-react", +"qrcode", +"plugin-kit", +"qrcode.react", +"rc-cascader", +[0,17191,1091,1149,1437,1513,1594,1605,2026,2720,17194,3148,3220,3722,705,17195,17196,17198,4746,4747], +"rc-checkbox", +"ollapse", +"rc-collapse", +"rc-dialog", +[0,1173,1257,1267,1429,2899,4008,7707], +"rc-drawer", +[1,2343,11214], +"opdown", +"rc-dropdown", +"rc-image", +"@humanfs/node", +"rc-input", +"-number", +[2,11210,11211], +"rc-mentions", +[0,0,11217,2514,2399], +"u", +"rc-menu", +[0,17218,4494,17219,8538,4193,1177,17220,1209,1984,4508,2109,1894,1596,48,17212,3541,4183,4201,91,53,4874,17221,9689,6513,17209,7725,4870,17206,17214,10875,87,17210,7677,5517,92,1011,17223,1009,9692], +"otion", +"rc-motion", +"rc-notification", +"rc-pagination", +[1,2343,11230], +"rc-picker", +"rc-progress", +"rc-rate", +"rc-r", +"esize-observer", +[2,11226,11227], +"rc-s", +[0,0,11232,2514,2523], +"rc-segmented", +[0,2899,4535,48,53,87], +"rc-select", +"teps", +"rc-steps", +"rc-switch", +[1,2343,11239], +"rc-table", +[0,0,11247,11248,2523], +"rc-tabs", +"extarea", +"rc-textarea", +"ree", +"rc-tree", +"-select", +[2,11244,11245], +[0,48,53,13693,87,6065,1175,1193,1203,1610,1177,1881,1938,1939,17232,2766,1192,2297,2898,2915,3213,3220,3222,3275,3697,1894,4042,4045,4073,4201,91], +[0,1673,1666,6901,2700,3220], +"rc-trigger", +[1,2343,11254], +"rc-upload", +"in-input", +[2,3870,11252], +[0,11258,11259,11265,2537], +"logo", +"qrcode-logo", +[2,1246,11256], +[0,1326,3299], +[0,17240], +"uperellipse", +[2,3890,11260], +"scroll-", +"into-view-if-needed", +[2,11262,11263], +[0,1149,15001,17242,17244], +[3,68,15], +[2,11266,6424], +[3,362,16], +"css-prop", +[2,1258,11269], +[2,11268,11270], +[3,7910,12], +[2,11272,10177], +"@qixian.cs/github-contributors-list", +"@stackblitz/sdk", +[3,827,16], +[2,11276,591], +[3,11011,12], +"uild", +"er-webpack5", +[2,11279,11280], +[2,11278,11281], +[3,8300,15], +[2,11283,2855], +[2,10829,11284], +[3,10841,12], +"heming", +[2,11286,11287], +"tag.js", +[2,5246,11289], +"-axe", +[2,5087,11291], +[3,11292,12], +[3,2779,12], +[2,11294,3758], +[2,11293,11295], +"image-s", +"napshot", +[2,11297,11298], +[2,11293,11299], +[2,5086,3766], +"uppeteer", +[2,5088,11302], +"@types/q", +"@types/qs", +[3,4882,15], +[2,11306,4349], +"-wor", +[1,2343,11324], +"-words", +[2,5342,11310], +[2,4881,11311], +[3,4884,15], +"sizable", +[2,11313,11314], +"window", +[2,4881,11316], +"@types/thr", +"ottle-debounce", +[2,11318,11319], +"arning", +[2,7820,11321], +"antd-", +[0,0,11332,11334,2523], +"antd-img-crop", +"token", +"-pre", +"viewer", +"-previewer", +[2,11326,11329], +[2,11323,11330], +[0,1906], +"array-move", +[0,1675,17251,3046,6925,17252,7051,6760,17253,6882,6870,9233], +"bundlesize2", +"dekko", +[3,3597,9], +[3,4926,9], +"er-webpack", +[2,11339,4406], +[2,4354,11340], +[2,11338,11341], +[2,11337,11342], +"fetch-", +"fetch-jsonp", +"axe", +"jest-axe", +[2,2769,11299], +"jest-p", +[2,11349,11302], +"jsonml", +"react-e", +[1,2343,11358], +"react-element", +[2,8137,11354], +[2,11351,11355], +"lz-string", +[0,11359,11361,11379,2537], +[0,3242], +"rc-footer", +[0,1377,1389,1596,2297,2871,2881,2900,2899,3202,4193,1906], +"rc-tween-one", +"rc-virtual-list", +"react-f", +"ast-marquee", +[2,11364,11365], +[2,5204,11310], +[2,3831,11367], +"react-in", +"finite-scroll-component", +[2,11369,11370], +[3,3882,9], +"izable", +[2,11372,11373], +"react-st", +"icky-box", +[2,11375,11376], +"react-window", +[0,1676,3073,6782], +"remark-lint", +[2,2987,4945], +[2,3996,11381], +"rome", +[2,4942,1894], +[3,4946,18], +[1,2343,11387], +[0,0,8134,11402,2537], +"ational-order", +[2,11385,11388], +[3,4326,22], +"no-i", +"d-properties", +[2,2420,11392], +[2,11391,11393], +[2,7851,11394], +[2,11390,11395], +"sylvanas", +"vanilla-", +"jsoneditor", +[2,11398,11399], +"xhr-mock", +[0,1677,17266,1420,17267,15321,13230,15322,1871,2585,6270], +[1,2343,11406], +"-front-matter", +[2,4745,11404], +[0,11407,11408,11409,2399], +[0,17273,17275,17277,17279,2215,3093,3532,17281], +[0,1999,17283,3505,3532,4039], +[0,17274,17285,1679,7682,4390,17286,17288,2056,4560], +[1,2343,11418], +[3,829,10], +"-studio/client", +[2,11411,11412], +[3,11413,18], +"model", +[2,11414,11415], +"abab", +[0,0,11419,11423,4139], +[0,48,87,92,10614,17296,17212,5601,5087,1009,1011,1198,14065,17298,1622,1177,17300,1930,1939,1942,1945,1948,1953,17303,17306,1964,17308,2675,1192,17310,2931,2990,3124,3125,3390,17312,1894,17314,3708,3980,17318,4493,91,17319], +"async-mutex", +[2,6269,1871], +"color2k", +[0,1680,10381,17323,5194], +"presentable-error", +"expr-eval", +"ml-matrix", +[1,2343,11431], +"parse-color", +"-ast-parser", +[2,3564,11429], +[0,0,11435,11441,2523], +"matchall", +[2,7315,11432], +[2,1871,11433], +[0,5087,3165,4468], +"@ava/typescript", +"inycolor2", +[2,7750,11437], +"trash-cli", +[2,4480,4408], +[0,3597,17329,4552,17331,17332,17335,17337], +"Supernova", +"Design Systems", +"io", +"Supernovaio", +"SDK", +[1,2343,11455], +"Tokens", +"Design Tokens", +"Assets", +"Components", +"Documentation", +"Markdown", +"CMS", +[0,11456,0,11457,4139], +[0,17342], +[0,3048,7002,3426,2051,3583,1698,1496,1585,7880,1697,6899,6803,3432,6693,3743,3583], +[1,2343,11459], +[0,8856,7938,7939,2537], +[1,2343,11461], +[0,0,11462,11463,2523], +[0,1781,2899,1177,1209,4039,3363,1362,17352,2025,4535,1693,1951,3200], +[0,1687,17354,3797,17358], +[1,2343,11465], +[0,0,11466,11467,2523], +[0,17363,2899,1177,2759,1317,1596,17366,3044,5476,17370,17373,17374,811,17377], +[0,17380,17382,17383,5472], +[1,2343,11469], +[0,11471,11472,11473,2399], +"@svitejs/changesets-changelog-github-compact", +[0,17391,1417,17392,15308,17395,17399,17400,17403,17406,2756,13635,3433,3435,17407,17409,17411,17413,17416], +[0,13614,1158,1159,17418,1177,2133,17421,2569,17425,2708,3410,3421,5619,4103,4135,4389], +[0,5501,4162,3797], +[1,2343,11475], +[0,0,11488,11490,2537], +"okie", +[2,4860,11476], +"devalue", +"esm-env", +"mrmime", +"sade", +"tiny-glob", +[2,21032,1932], +[3,5244,10], +[2,11484,2255], +"dts-buddy", +[3,21031,18], +[0,2899,4170], +"official", +[0,1696,2051,1697,6899,1695,1496,1698,1781], +[1,2343,11492], +[0,0,11493,11494,34352], +[0,4874,17439,2747,17440,4042,4055,4067,4389,4474,91,4535], +[0,1698,1697,2051,1585,1496,6899], +[1,2343,11499], +"-inspector", +[2,840,11496], +"hmr", +[0,11500,11502,11503,2523], +[0,2205,2743,17447,17450,3478,11424,4207], +"vitefu", +[0,1166,1317,4400,4481,1906], +[0,6865,1586,17453,17455,7293,14858,17456,17457,4050,17458,4051,6790,17459,4039,7074,2070,17461,2090,6857,7204,2150,17462], +[3,839,11], +[1,2343,11507], +"vite plugin", +[0,11508,11509,11510,2399], +[0,1700,3157,11424], +[0,1166,2020,17468,1906], +[0,13326,200,6865,1700,7293,14858,17456,17457,4050,17458,4051,6790,17459,4039,7074,2070,2090,1586,6857,7204,2150,17462,16697], +[1,2343,11523], +"element", +"elements", +"ant-elements", +[2,5257,11514], +[2,5875,11515], +"@svgr/", +"@svgr/core", +"plugin-jsx", +[2,11517,11519], +[3,11520,13], +[2,11521,4361], +[0,11524,11527,11528,2487], +[0,29654,28415], +"svgr", +[2,4670,1194], +[0,17474,17477,4481,1906], +[0,1862,814,1702,17479,6703,2434,17481,17484,2013,14824,3286,17485,1702,1149,7003,6567,1362,17487,6754,3778], +[1,2343,11530], +[0,11531,11535,11537,2399], +[0,1676,2856,4747,2687,1209,4135,2822,814,17495,15648,1420,3181,17497,3249,1595,2107,4025,58,17501,101,17494,5320,14035], +"unter", +"@swc/counter", +"@swc/types", +[0,3421,2899,1177,4170,3709,2151,1894,1610,48,3752,91,53,1178,17504,85,94,87,1951,1959,1879,1938,1208,1895,1947,1955,1198,13052], +"@napi-rs/cli", +[0,4354,17507,3383,6666,1703,7190,4796,4797], +"swc", +"swcpack", +"tsc", +[1,2343,11542], +[0,0,11543,11544,2487], +[0,1317,1311,1177,1903,1938,1948,1954,1958,1970,2759,2899,4100,4538], +[0,17514,17515], +[1,2343,11546], +[0,11547,11548,2514,2537], +[0,1676,13736,2205,17522,3170,3183,3539,17523,814], +[0,17527,2675,17529,3400,4255], +[1,2343,11550], +[0,0,8134,11551,2399], +[0,8958,17537,13735,6589,17539,1501,1871,2585,4225,17540,16630], +[1,2343,11553], +[0,11556,11557,11558,2523], +"@rtsao/scc", +[2,18997,4966], +[0,15427], +[0,36688,6503,4874,17547,1177,17554,2020,17546,4294,4483,36684,91], +[0,13735,1709], +[1,2343,11560], +[0,0,11561,11562,2487], +[0,3421,4481,1429,2297,2899,1177,4042,2203,2924,1610,4535,442,91,53,2900,1195,2925,13388,94,87,4523,4681,2904,5517,1208,2921], +[0,1687,7222,3797,7163,2585,1781,1623,5284], +[1,2343,11564], +[0,11565,11566,11567,4139], +[0,1687,28365], +[0,442,19194,17579,5087,4874,17580,17584,1165,1406,1492,1584,1628,1637,1177,1939,1958,2092,2203,2036,17589,2651,2675,17591,17592,1192,2990,3123,3177,3188,3368,3561,3566,3613,3618,3672,1894,4468,4469,4474,91,4523,4027,2924,4677,4681,4705], +[0,3358,1687,3721,7153,3924,17595,17597,6843,5342,3721,1473,1936,1713,17599,17600], +[1,2343,11569], +[0,11570,11571,11572,2537], +[0,17610], +[0,5087,4874,1009,1011,1177,1895,17613,1915,1938,1192,1894,4468,4493,4508,91], +[0,17615,17618,17619,17620,17616,17621,17622,5284,17625,17626,676,91,17627,6869,4799,17629,17630,202,9624,17631,17632,17634,17635,17637,17640,17641,17642,17643,2218,17644,17645,17647,3403,17648,17649,17651,17652,17653,17656,17657,9981,7193,17659,17660,17661,17662,17665,17666,17667,17669,17673,17675,17677,17680,17679,11996,17683,17686,17687,17689,17691,17692,17695,17696,17697,17700,17702,17705,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,17720,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,17737,17739,6681,17740,1745,17116], +[1,2343,11574], +[0,0,11575,11576,2487], +[0,1429,1431,2228,2273,2283,2300,2272,2839,3006,2899], +[0,1429,15385,1388,5472], +[1,2343,11578], +[0,11579,11580,11581,2537], +[0,17752,17754,1723,2760,3345], +[0,2899,3699], +[0,6355,5995,4967,17758], +[1,2343,11583], +[0,11584,11585,11586,2487], +[0,4484,4548,17763,7658,347,7660,2069,17766,7663,17768,7664,7665,17770], +[0,4481,1192,7671,1177,4487,1787,1894,1610,91,4874,17772,7672,7678,7681,7685,1011,1009], +[0,1721,5592,8549,5576,202,7692], +[1,2343,11588], +[0,11599,0,2514,2537], +[3,850,25], +"tokens", +[2,11589,11590], +[2,11589,45], +[3,4323,18], +"ass-guidelines", +[2,11593,11594], +[3,7846,11], +"rettier", +[2,11596,11597], +[0,4535,2098,3460], +[2,6910,591], +"patterns", +[1,2343,11603], +[0,11604,11606,11610,4139], +[0,16053,17786,17787,17788,2036,3127,17798], +"gfm-footnotes", +[0,17805], +"web ", +[2,11607,4963], +"ui library", +[0,1745,1783], +[1,2343,11620], +"symbiote.js", +"symbiote", +"frontends", +[2,3166,11614], +" application", +[2,5207,11616], +" elements", +[2,5317,11618], +[0,11621,0,11623,2487], +[0,2829], +"shadow dom", +[0,1727,1745,1776,17813,1783,1932], +"shadow root", +"ructable stylesheets", +[2,5257,11625], +"adopted stylesheets", +"custom ", +[2,11628,3583], +[2,6883,11629], +"pubsub", +[1,2343,11641], +"import maps", +"cdn imports", +" imports", +[2,2671,11635], +"reacti", +"ve html attributes", +[2,11637,11638], +"MIT", +[0,0,0,11642,34352], +[0,17818,17819,7518,5398,5995,3250], +[1,2343,11644], +[0,11645,9264,11646,2399], +[0,17826,17827,7092], +[0,17829,17830], +[1,2343,11648], +[0,11649,11650,11651,4139], +[0,1170,4747,1733,17838,29861,17835], +[0,1429,2899,2026,1364], +[0,1745,2275,1973,2295,1739], +[1,2343,11653], +[0,11654,11655,11656,2399], +[0,5923,17835,17846,1091,13426,17849,17851,17853,1170,17838,29861,1759,17850,11663,10342,3536,3549,17859,4459,824], +[0,1703,2026,2899,4135], +[0,1745,1973,2295,1739], +[1,2343,11658], +[0,11659,0,11660,34352], +[0,1525,3127,2151,4545,2600], +[0,1745,1739,1179,17867,1509], +[1,2343,11662], +[0,11664,0,11610,2537], +"jq-web", +[0,1794,17872,5639], +[1,2343,11666], +[0,11667,11668,11669,2399], +[0,17877,28367,28371,17881,3747,4391,3348], +[0,1362,1429,3152,2899], +[0,17878,17884], +[1,2343,11671], +[0,11672,11673,11674,2537], +[0,17889,17890,17892,1292,17893,1415,17895,16166,17896,17898,17899,9254,17900,17901,17904,17905,17906,17907,2720,17909,17910,17911,3171,3310,17914,17915,17916,4039,17917,17919,17920,4135,17921,17922,17923,4545,17924,4746], +[0,17929,17930,16966,1509,17931,3220,17934,17936], +[0,5353,6147,17939,9381,200,6354,1509,7234,4643,17944,3304,5001,17945,17946,15141,5130,1179,17948,202,1644,57,8924,3902,8632,12478,5354,17950,4990,6435,5122,17951,10340], +[1,2343,11676], +[0,0,11677,11678,2523], +[0,5366,4874,7677,22839,1317,33261,35609,1177,1938,1942,91,1984], +[0,4967,5995,2844,7020,1776], +[1,2343,11680], +[0,0,11681,11682,2487], +[0,53,87,442,5583,811,8850,816,10615,1165,1387,1536,1854,1177,1895,2203,3125,15197,3400,3561,3584,3605,3613,1894,4039,4042,10854,2278], +[0,1739,17964,17965,1745,1179,5284,676,1783,5980,1932,16630,17966], +[1,2343,11684], +[0,11685,11686,11687,4139], +[0,17971,17972,2654,3183,4545,17974], +[0,4384], +[0,2195,1783,1745,9591,57,17977,17978,17979], +[1,2343,11689], +[0,11690,11691,11692,4139], +[0,53,5216,58,101,104,1437,1457,1687,17986,9322,7610,2070,17988,2600,2714,2822,17989,1209,12427,17990,17995,17997,3532,3921,3984,3988,3989,18000,10632,814,4300,18002,4555,12449,18004,18005,4747], +[0,18007,1652,18009,1177,1895,2151,2675,1192,2845,2990,3203,1894,4257,4449], +[0,1745,4525,1776,18011,57,5351], +[1,2343,11694], +[0,11695,11696,11697,2523], +[0,18016,18018,1676,18019,18020,18023,3013,4545], +[0,4874,2228,2291,2300,3006,3200,16092,4193,4436], +[0,18028,18031,1748,18036,13531,18037,18035,6599], +[1,2343,11699], +[0,11700,11701,11702,2537], +[0,6084,2164,2070,1437,89,1843,1209,3188,1291,1637,2026,3561,3725,705,4167,7799,4438,2151,2267,1525,3824,1461,3560,4001,53,18042,104,1165,2600,3123,18051,18052,18055,18056,7610,85,94,101,3816,18050,87,18045,18047,90,1874,1845,61,78], +[0,4039,17996,2149,18059], +[0,1745,18061,18063,467], +[1,2343,11704], +[0,11705,7923,11706,2523], +[0,18068,1497,9892,2577,2586,2608,6327,18070,8114,3181,3971,18071,4549,18072], +[0,467,6327,18074,1745], +[1,2343,11708], +[0,11709,11710,11711,2487], +[0,97,1639], +[0,28581,29292,48,53,92,29293,29294,29492,1009,1011,1178,1195,1177,1938,1947,1951,1959,2025,2070,2814,2297,2881,2895,26470,2900,2904,2918,2921,2925,2899,4039,33564,4193,91,2924], +[0,1751,5128,965,5592,18080,590,2013,18081,4289,1751,1227,18082,1623], +[1,2343,11713], +[0,11714,11715,11716,2537], +[0,18089,15487,18087], +[0,1192,1177,1448,4468,1894,91,5087,4874,2654,1895,1011,1009], +[0,1936,6523,8924], +[1,2343,11718], +[0,0,11719,11720,4139], +[0,1429,1177,2228,2240,2273,2281,2283,2298,2822,2297,2878,2881,2895,2900,2904,2899,1894,4135], +[0,965,158,18097,8924,1936,1424,8221,18048], +[1,2343,11722], +[0,11723,11724,11725,2487], +[0,37513], +[0,53,87,5583,816,6373,10615,1006,4874,1610,1895,1955,2814,2832,2297,2876,2881,2895,2908,2910,18103,3183,3400,3697,1894,2907,18102,4039,4042,4057,18106,4076,4484,91,1906], +[0,965,4741,1936,8221,18110,1965,18112,18113,2574,7131,18114], +[1,2343,11727], +[0,0,11728,11729,2399], +[0,3421,1177,1596,3697,12847], +[0,1283,2062,2869,17950], +[1,2343,11731], +[0,0,11732,11733,2537], +[0,4874,6323,4193,4255,4257,4384,91], +[0,1759,1263,6890,6639,6436,1541,6937], +[1,2343,11735], +[0,11736,11737,11738,2523], +[0,1759], +[0,4874,4255,4257,4384,91], +[0,1759,18132,6436,18135,18137,1263,6890], +[1,2343,11740], +[0,11741,11742,11743,2537], +[0,2212,3532,3477,18143,3093,2096,1679,18145,2188,18142,1560], +[0,1906,1166,3297,18147,4039,3505,18148], +[0,1764,7682,27,705,1002], +[1,2343,11745], +[0,11746,11747,11748,34352], +[0,1764,12650,4039], +[0,5175,2675,2899,4216,4255], +[0,1764,2195,17978,17977,12468,18157,4390,7682,18158], +[1,2343,11750], +[0,11751,11752,11753,2537], +[0,1768,1770,1777,1782,1784,1779], +[0,1177,4039,442,91,4874,4523,1011,1009], +[0,1767,1745,200,1776,1367,1783,1781], +[1,2343,11755], +[0,11756,11757,11758,4139], +[0,2205,1770,18170,18173,1777,1782,18174,1784,1779], +[0,1192,1177,4039,3363,4468,442,91,5087,4874,5571,4523,1011,1009], +[0,1767,1745,200], +[1,2343,11760], +[0,11761,11762,11763,2537], +[0,18183], +[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,1011,18186,1009], +[0,1767,1745], +[1,2343,11765], +[0,11766,11767,11768,2537], +[0,18192], +[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,1011,1009], +[0,1767,1745,1283], +[1,2343,11770], +[0,11771,11772,11773,2537], +[0,1241,1776,18201], +[0,1192,1177,4039,4468,1587,442,91,5087,4874,18203,5571,4523,1011,1009], +[0,1767,1745,1776], +[1,2343,11775], +[0,11776,11777,11778,2537], +[0,3105,2600,3117], +[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,7639,1011,1009], +[0,1767,1745,1367], +[1,2343,11780], +[0,0,11767,11781,4139], +[0,1767,1745,1781], +[1,2343,11783], +[0,11784,11767,11785,2523], +[0,3117], +[0,1767,1745,1783], +[1,2343,11787], +[0,11788,11789,11790,2537], +[0,2081,2700,3427], +[0,53,14170,13051,18225,1178,18228,1610,1700,1866,1177,18229,1895,1922,1935,1947,1955,1959,18230,2126,2323,2338,2361,2368,18233,2396,2409,2419,2494,2541,1192,1894,89,3824,3904,18235,4431,4537,18237], +[0,18239,6038,89,18241], +[1,2343,11792], +[0,11793,11794,11805,2523], +[0,8712,18248], +[0,18254,18255,1429,1651,18259,2297,2881,2900,18260,2923,2899,3198,3347,5362,2278,4193,4196], +"tent-type", +[2,11484,11795], +[1,2343,11798], +[0,26964,0,26991,34352], +"a-parser-js", +[2,7817,11799], +"null-loader", +[2,4049,2098], +"tanem-scripts", +"ua-parser-js", +[0,18263,18266,18267,9229], +"images", +"img", +"scal", +"able-", +"vector-", +"ics", +"graphics", +[2,11810,11812], +[2,11809,11813], +[2,11808,11814], +[1,2343,11817], +[0,11818,11819,2514,2523], +[0,4747,4487,18272,2151,18275,4300,2851,18277,18279,18282], +[0,1177,4874,4892,4864,1011,18285,18290,1009], +"query-core", +[2,959,11820], +[1,2343,11823], +[0,11824,0,11825,2537], +[0,28142], +[0,1747,1788,2382,18035,5995,200,18295,2663], +[1,2343,11828], +[2,964,3709], +[0,11829,11830,7831,2537], +[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12467,12406,1582,1699,12409,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,3788,11244,3789,3810,5564,3846,12435,12438,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12444,12445,4549,4555,12447,1002,12448,12449,12452], +[0,192,5467,7634,12455,12458,7637,12459,4874,12461,8149,4880,4882,4883,12462,12463,1177,10321,2071,2079,12471,12472,2675,2990,1894,3706,3708,89,3824,4320,4474,91,1984,12473,12475], +[1,2343,11834], +[3,7637,10], +[2,11832,977], +[0,11841,11844,7831,2487], +"@github/webauthn-json", +"better-", +"better-docs", +[3,1895,17], +"act", +[2,11838,11839], +[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12405,1582,1699,12409,12452,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,11244,3810,5564,3846,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12445,4549,4555,12447,1002,12448,12449], +"hanko", +"passkey", +[0,192,5467,7634,12455,12458,7637,12459,4874,12461,4880,4882,12462,12463,1177,2071,2079,12472,2675,2990,1894,3706,3708,89,4320,4474,91,1984], +[1,2343,11848], +"webauthn", +"passcode", +[0,0,11849,2514,2523], +[0,4389,4430], +[1,2343,11851], +[0,11852,11854,7395,4139], +[0,18313,18315,18316,18317,18322,97,8597,18328,18332,18333,18334,18336,1461,1582,1673,18339,18340,18344,18347,18349,18351,18354,18355,18357,18358,18360,18362,18364,18365,18368,18370,18371,18372,18374,18376,18378,18380,18381,18382,18383,18385,18386,18387,18389,18391,18392,18394,11264,4427], +"kcd-scripts", +[0,13175,13178,5076,13181,11267,11976,13187,7833,7837,7839,7840,368,7948,11273,13188,8998,13189,13192,643,692,11274,10875,11275,966,968,972,974,13194,13196,13198,4864,11290,13200,13203,5087,11292,11296,11300,11301,13204,4870,7892,4874,13205,13207,13210,8149,6510,11305,4880,4882,4883,11312,11315,5254,13213,13214,11320,11322,1009,1011,1086,13078,11325,13215,11331,1170,1437,1448,13221,13223,1610,1613,11336,1759,1789,13228,8161,1177,1879,1895,1915,1924,1938,1939,1947,13231,1948,1959,1961,1982,2071,11345,2151,2193,2070,12424,2665,2686,2696,2742,2758,1192,11347,2771,2780,2784,11348,11350,2814,2832,11356,5102,2990,1209,13232,11357,3183,3213,3310,3330,3412,3445,3467,13233,3536,3549,1894,3703,3717,3725,3758,3763,11360,11362,11363,89,3810,13235,3824,4934,11366,11368,11371,3843,11374,3885,11377,3957,3978,3984,3985,3988,11380,13240,11382,3999,4039,13241,4135,4164,4183,4201,13243,11397,4390,4391,4072,4494,4508,91,11400,13245,2924,4676,11401], +[1,2343,11856], +[0,0,11858,11859,2399], +"integration", +[0,192,5467,19193,442,1177,1895,1951,1955,2675,2990,2899,1894,4042,4170,4257], +[0,4552,1149,14629,18402,1794,3048,1862,6917,14824,5995,4967], +[1,2343,11863], +"end-to-end", +"e2e", +[0,11864,11865,11866,2443], +[0,4484,18407], +[0,51,53,104,18282,18277,18409,603,811,816,6373,5087,1009,1011,1437,1525,1787,668,1177,2151,2205,2675,1192,2771,2272,3090,3445,4042,4073,4127,4135,4072,4468,91], +[0,1795,18411,15480,18412,17116,18413,18415,1424,8221], +"ria-query", +[2,9165,11867], +"aria-query", +[2,7320,2825], +[2,1752,11870], +[1,2343,11873], +[0,11885,11886,11887,2537], +"n-case", +"jest-in-case", +"-ser", +"ializer-ansi", +[2,11876,11877], +[2,8746,11878], +[3,2802,11], +"select-p", +"rojects", +[2,11881,11882], +[2,11880,11883], +[0,18420,2096,18423,2390,18425,18426,18427,1209,3181,18428,3544,4431,4597,4600,4747], +[0,4856,4864,18432,4870,6503,4874,9725,6513,6512,18435,18438,18440,4892,1429,2012,2151,2188,2899,3421,3752,4039,4193,4196,4474,4487,91], +[0,18420,2041,2649,18442,18443,6589,18444], +[1,2343,11889], +[0,11892,11900,11901,2537], +"css.escape", +"redent", +[0,2763], +[2,552,2203], +[3,2782,23], +"sixteen", +[2,11894,11895], +[3,4057,15], +"elete", +[2,11897,11898], +[0,91,68,1389,1177,14707,1776,3084,2899,4535], +[0,1283,17950,16284,1797], +[1,2343,11903], +[0,11904,11905,11908,2537], +[0,1437,1209,18456], +[0,3297,1082,1149,2228,2899,4193,4237,1177,2814,3220,4135,1168,1330,2924,18458,18459,1362,3460,1894,4431,2025,2071,7915,2240,18463,1389,53,11801,1178,1195,18464,17568,87,1954,2258,2247,1938,2253,2281,1958,1895,1903,1955,1970,18461], +"atcher-utils", +[2,8763,11906], +[0,1798,14059,8173], +"@callstack/eslint-config", +"@rel", +"mify/jest-serializer-strip-ansi", +[2,11910,11911], +[1,2343,11914], +[0,7936,7938,7939,2523], +[1,2343,11916], +[0,11917,0,11919,2487], +[0,4874,2057,18473], +"dotenv-cli", +[0,1804], +[1,2343,11921], +[0,11922,11923,11927,2537], +[0,1437,4747,1458,2151,18479,18480,18482,18484,18488,18174], +[0,4892,4864], +"@esbuild-plugins/node-modules-polyfill", +"@ph.fritsche/scripts-config", +[3,11925,13], +[0,1804,9381,6147,7242,1161,1808,4405,18493,1896,18494,4750,18495,8433,18496,18497,18498,18499,18500,18501,18502,18503,13322], +"toolbox", +[2,11926,11928], +[3,11300,13], +[2,11930,11874], +[3,7690,15], +[2,11932,2203], +"-lib-coverage", +[2,2759,11934], +[3,11935,13], +"report", +[2,11936,11937], +[2,4227,591], +[2,11936,11939], +"istanbul-", +"reports", +[2,11941,11942], +[3,6551,9], +"jest-s", +"r-ansi", +[2,7909,11946], +[2,11945,11947], +[1,2343,11950], +[0,11953,11954,11955,2537], +"-scripts", +[2,6579,11951], +[0,18509,18473,18511,18513,18514,18518,1676,2057,18145,2151,18521,18524,18525,18527,2072,18528,814,4135,4748], +[0,1009,1011,1166,1400,1503,1177,1903,1920,1938,1954,1958,3421,3539,4193,4481,4508,91], +[0,1804,1808,6996,1896], +"@ember/app-blueprint", +[1,2343,11962], +"aram", +"regexparam", +"tseslint", +"tinyhttp", +[0,11963,11964,11919,2399], +[0,2057,18537], +[0,4389,4255,18540,3505], +[1,2343,11966], +[0,11967,11580,11581,2487], +[0,1437,2152,2760,18545], +[1,2343,11969], +[0,11970,11971,2514,4139], +[0,18552], +[0,2228,18555,2236,2273,2281,2298,2766,2814,2297,2881,2895,2898,2912,3006,1209], +[1,2343,11973], +[0,11975,11979,11980,2523], +[2,976,4590], +[0,1156,1191,1699,3373,4023,4427], +"@biomejs/biome", +[3,4343,10], +[2,11977,1612], +[0,18566,18569,1173,1175,1195,1198,1208,1212,1220,18571,1264,1277,18574,1429,1457,1584,1596,18575,1610,1628,1863,1177,18580,1916,1937,17585,2092,18581,2323,2332,18582,2504,2600,2651,2843,13110,2297,2881,2886,2900,18260,2921,2923,2925,18584,3105,3107,18587,3112,3177,2899,3342,3463,3561,3732,4039,4111,18590,4193,4196,4307,18592,4537,18595,4027,188,4634,4639,4645,18599,2924,4677,4681,4693], +[0,13449,188,4963], +[1,2343,11982], +[0,11983,11984,11985,2537], +[0,1363,18609,18610,18611,2713,18613,18616], +[0,1377,1596,1177,2228,2236,2240,2256,2258,2281,17567,2311,2759,2899], +[0,18619,18620,18621,18622], +[1,2343,11987], +[0,11989,11990,11991,2537], +"headers", +[0,18627,18629,18632,2646,18633,1209,3361], +[0,192,5467,1166,1448,1610,1797,1177,1909,2114,2675,2990,18637,3421,18634,3754,3985,3995,1906], +[0,1559,1823,16284,2934,18639,18640,18643,18645,18646,18647,3361,18648,3754,18649,1283,5354,4714], +[1,2343,11994], +"ipaddr.js", +[0,0,11997,2514,2523], +"net", +"network", +[0,442,18657,4874,18659,7677,1177,1895,1955,18660,1894,18661,4474,91,4523,1984], +[1,2343,11999], +[0,12000,12004,12005,2399], +[0,30697,27276,11956,18740,18684,14959,18693,18733,18735,18687,1378,18737,1381,18717,18720,18695,18686,18747,18683,1437,1458,18689,1536,1543,18671,18678,18679,18668,1687,18753,12923,18758,12925,18704,2020,2021,2026,2098,2105,18745,2151,14939,12929,12471,2070,14940,18728,18701,18708,2659,2712,2720,18673,18702,1209,3105,18726,3181,3237,3368,3386,18428,18669,3560,18714,18722,18675,814,14562,18730,18667,4135,12937,18710,18698,1241,4423,4438,18670,4648,18692,7801,18666,31963,31947], +[3,975,11], +"ccepts", +[2,12001,12002], +[0,14938,1385,1429,1431,18761,15264,1540,18774,18771,1177,1895,18766,1951,1953,2116,18706,2832,2960,2899,3297,3421,1894,6021,4294,4342,4421,4449,36864,4699,4707,18764,18760], +[0,1896,18776,12589,200,18777,18778,18779,837], +[1,2343,12007], +[0,12008,12013,12014,2537], +[0,5222,71,5757,5759,5809,5830,5832,83,5889,87,97,18784,18787,18790,18795,1212,18801,18687,1378,18695,18747,1496,18803,18807,18704,14562,4135], +"ntent-", +[2,12009,10366], +[2,981,12010], +[3,985,11], +[0,53,18809,18811,18812,18813,18815,1178,1385,1429,1499,18867,1532,18671,1593,18679,18823,1825,18825,1830,18829,18832,18833,18834,18835,18839,1177,18840,1954,18706,18841,2899,2907,3957,6021,814,4039,2924], +[0,1172,18777,18844,1825,5197,5198], +"ncode-url", +[2,12012,12015], +[1,2343,12018], +[0,12019,12020,12021,2487], +[0,18852,18855,18687,18865,14938,14939,18708,18868,12937,4648], +[0,53,68,71,5757,83,5889,97,18809,18812,18872,18787,1381,1385,1429,18867,1540,18823,1825,1827,18873,18825,18829,18832,18833,18834,18835,18839,18889,18892,18894,1177,1895,18840,1951,1953,1955,18895,2116,18841,2899,1894,2907,3773,3980,14944,4320,4323,11598,2924], +[0,18844,1825], +[1,2343,12023], +[0,12024,12025,12028,4139], +[0,18901,18906], +[0,816,10817,4874,2968,4039,4042,4494,91], +[3,12011,18], +[2,12026,998], +[0,1831,1936,1623,4412,18909], +[1,2343,12030], +[0,0,0,5708,4139], +[1,2343,12032], +[0,0,12033,12034,4139], +[0,2899,1177,2759,1954,1938,1958,1903,1970], +[0,10368,1833,1002], +[1,2343,12036], +[0,12037,9264,12038,2537], +[0,3441], +[0,3101,7046,7241,18924,12706,4966,6703], +[1,2343,12040], +[0,12041,12043,2514,2537], +[0,2215,4388], +"tsparticles", +[0,8780,5087,4874,1622,1177,20281,2675,1192,2990,3144,1894,91], +"particles.js", +"particles", +"particlesjs", +"particle", +"jsparticles", +"xparticles", +"particles-js", +[1,2343,12052], +[0,12057,12064,12065,2537], +"particles-bg", +"-vue", +[2,12053,12054], +"particles-ts", +[0,1104,4294], +"particles.ts", +[3,2638,9], +"ticles-js", +[2,12059,12060], +[3,12061,15], +[2,12062,1722], +[0,4874,2398,2720,2899,3421,3742,91], +[0,8618,8619,8620,1299,200,1523,6876,8622,1836,1179,8623,8624,6847,8625,2720,8626,8628,5284,202,6710,3741,3742,8630,8631,3925,8632,4989,8633,2184,8634,7009,6621,181,8635,4758,8636], +"vue-particles", +"ngx-particles", +[2,1101,12045], +[1,2343,12077], +"ground", +[2,12047,12070], +"vuejs", +"preactjs", +"angularjs", +"html5", +"web-design", +[0,12078,12085,12095,4139], +[0,7272,12240,3757,19647], +"webdesign", +"css3", +"vtt", +"animated", +"background", +"conf", +[0,13614,1159,9254,1177,2011,2708,3410,3421,4103,4389], +"confetti", +"works", +"fireworks", +"fireworks-js", +"confetti-js", +"confettijs", +"fireworksjs", +"canvas-", +[2,12093,12086], +[0,18089,18943,18944,1936,10368,15103], +"apk", +"flickity", +[1,2343,34419], +"@d-fischer/shared-utils", +[3,1005,9], +"all", +"api-call", +[2,12100,12102], +[2,12100,10896], +"jose", +[0,1429,2675,2899,1899], +[0,6971,18951,18952,998,6956], +"twitch", +[1,2343,12110], +[0,12111,12112,12113,2523], +[0,2003,4430], +[0,4387,4389], +[0,6639,6436,1389,14927,353,4225,8309], +[1,2343,12115], +[0,0,12116,12125,2537], +[0,53,13051,85,87,192,5467,17584,1175,1178,1193,1195,1177,1881,1895,1938,1955,18964,2070,2675,1192,3183,6331,4750,1894,10623,2924,4677,4707,18966], +[1,2343,12568], +[2,3273,6543], +[3,439,18], +"regexpp", +[2,12119,12120], +[3,5552,23], +[2,12122,3007], +[2,1010,1995], +[0,5001,1263,6639,18523,18968,18969,18971], +"title-case", +[2,3138,9102], +"pecific-snapshot", +[2,11945,12128], +[3,8722,10], +"-mdxjs", +[2,12130,12131], +[2,3167,12132], +[3,5551,24], +"to-typescript-types", +[2,4120,12135], +[2,12134,12136], +[1,2343,12139], +[0,12140,12141,12143,2537], +[0,18976,1448,1850,18980,6914,18982,18984,18986,18989,17403,18990,18992,18993,3044,3431,13635,3435,3438,18994,3775,18995,18997], +[0,1173,13998,1261,1177,1879,1938,1947,1959,2708,2832,4039,4103], +"pastoralist", +[0,5284,19001,19003,1973,6071,89,2130,5472,19005,19007,6969,2899], +"cript-estree", +[2,5552,12144], +[1,2343,12147], +[0,12148,12149,12143,2443], +[0,2571,4135,3847,3744,3435,18994,3904,1847,1850], +[0,1843,1177,4039,3410,48,2708,53,1261,1959,4103,68,1879,1938,1947,1961,1198,13998], +[1,2343,12151], +[0,12152,12154,12143,2537], +[0,2571,4135,3744,3435,19018,19020,18980], +[2,12155,27730], +[0,1177,4039,3410,48,2708,53,1261,1959,4103,68,1879,1938,1947,1961,1198,13998], +[3,20826,14], +[1,2343,12157], +[0,12164,12167,12143,2487], +[3,1013,11], +[2,12158,9026], +[2,10306,5256], +[3,1603,14], +"ontext", +[2,12161,12162], +[0,2571,13635], +"-theming", +[2,1832,12165], +[0,1177,4039,3410,48,2708,53,1261,4103,68,1938,1881,1198,13998], +"-formatter", +[2,1413,12168], +[2,2093,12169], +"mini-", +"mini-store", +"rc-animate", +[1,2343,12177], +"rc-form", +"z-use-drag", +[0,12183,12210,2514,34352], +"@types/ra", +"@types/raf", +[3,1013,13], +"codo-gen", +[2,12180,12181], +[0,1080,1869], +"ast-types", +"motion", +[2,4893,12185], +[3,1225,14], +"proptypes", +[2,8137,12188], +[2,2528,12189], +[2,12187,12190], +[2,4670,8861], +[2,1199,12192], +"hot-loader", +[2,1625,12194], +"jest-emotion", +"screenshot", +[2,8820,12197], +[3,4323,19], +"yled-components", +[2,12199,12200], +[3,11598,12], +"or-styled-components", +[2,2484,12203], +[2,12202,12204], +"tsc-alias", +"@electric-sql/pglite", +"ucloud", +"lsofi", +[0,1087,1177,1903,1938,1948,1954,1958,2899,3421,4342], +[1,2343,12212], +[0,12218,12221,12223,2537], +[3,1014,9], +"slate", +[2,12213,12214], +"slate-hyperscript", +"slate-react", +[0,1082,2071], +[2,12213,594], +"is-hotkey", +[0,16805,1393,19038,5867,30889,12142,1894,3980], +"jotai-optics", +[0,19042,19044,3595,19045,19046,19047,5286,19049,19052,19053,676,19054,19055,19057,19059,19060], +"jotai-x", +[1,2343,12230], +"optics-ts", +[3,3836,9], +"keys-hook", +[2,12227,12228], +[0,12234,12235,12237,2537], +"deep-compare", +[2,8183,12231], +"zustand-x", +[0,19066,2569,19071,19073,19078,15059,3435], +[0,5517,13614,23237,10976,10979,11008,27564,27568,27571,27573,27575,27576,27580,11013,19325,1143,1159,9254,1177,14741,15308,2756,3410,3421,19082,4103,19084,4389,11028], +"plate", +[0,5284,5286,3595,676,6693,6692,5187,1182,6830], +[1,2343,12239], +[0,12241,12243,12249,2443], +"es-errors", +[0,15786,19092,19093,19094], +"react-b", +[0,1177,15793,15797,15801,2675,2990,3421,19097,15804,15805], +"react-button", +"uiw-react", +"react.js", +"uikit", +"react-ui", +[0,5286,19099,19100,1925,5194,19101,2680,19102,2474,5258,5284,6422,1858,614,594,6731], +[1,2343,12251], +[0,0,12252,12254,2537], +[0,13614,1158,1177,2708,2768,3421,4103,4535], +[2,1024,45], +[0,1858,1925,19108,5284,5286,6422], +[3,3839,10], +[1,2343,12257], +[0,0,12258,12259,2523], +[0,1173,1175,1198,8966,1264,1429,1610,2899,4039], +[0,5194,1851,1172], +"react-input", +[1,2343,12262], +[0,0,12263,12264,34352], +[0,19118,2899,1825,18686,18693,19119,19121,19122,19123,1381,18801,18825,19125,19127,14217,14196,19130,14214,1235,14199,14192,1244,14198,14215], +[0,19132,6422,1862,6567], +[3,1023,18], +[1,2343,12269], +"verlay-trigger", +[2,8666,12267], +[0,0,12270,12271,2537], +[0,48,53,87,10688,1863,1177,1895,1903,1938,1954,1958,2675,3421,1894,4193,4389], +[0,1862,6567,5194,19138,1865], +[1,2343,12275], +"react-u", +"react-utils", +[0,0,12276,12277,4139], +[0,13614,1158,1429,1859,1177,2011,2228,2256,2283,2311,2708,2899,3421,3736,19146,4103,4389,4535], +[0,5286,5258,5194,1858,1862,6567,7168,3053,3065,6636], +[2,12279,8295], +"flowbite-", +[1,2343,12281], +[0,0,12282,12288,2523], +[0,1317,1311], +"to-ts", +[2,7526,12283], +[2,7719,553], +"prom-client", +"unleash-client", +[0,1867,1936,6435], +"ype-is", +[2,7750,12289], +[1,2343,12293], +"ts-node-dev", +[0,0,8134,12297,2399], +"Unleash", +"ios", +"android", +[0,1867,1108,6961,6920,7256,1871,19161,7169], +[1,2343,12299], +[0,12300,12303,2514,2537], +[0,2004,14301,2003,4227], +"keyux", +[3,1027,12], +[0,1082,1362,19168,1429,6522,19172,2323,2384,2463,3183,3466,4135], +"image-shrink", +[2,12302,12304], +[2,9229,4219], +[2,12302,12306], +[1,2343,12311], +"shipjs", +"@esm-bundle/chai", +[0,12316,12317,12321,2523], +"@total-typescript/ts-reset", +"@hap", +"py-dom/global-registrator", +[2,12313,12314], +[0,439,12121,19180,27907,19193,11180,11209,19182,19184,1006,1091,1615,1676,1874,1994,1996,2000,19186,14301,2069,16783,2105,2200,2687,19187,2743,19189,3181,12118,3466], +[0,5517,53,87,8129,19194,19181,19195,19581,4874,1011,1195,1414,1429,1448,1532,1593,1651,1797,1933,15510,17308,19206,32793,19210,2003,19213,2070,2203,2212,2226,2807,2931,2990,3105,3112,3127,19216,19219,19221,19222,19223,19224,2899,19227,19230,1894,3730,3752,3930,3957,4135,4167,4193,91,2924,4677,19235], +"uploadcare", +"lighter", +"file ", +[0,6892,671,5284,5286,2000], +"file uploader", +"ive image", +[2,5156,12323], +" optimization", +[2,158,12325], +"image ", +[2,12327,6110], +"image size", +" image editor", +[2,6599,12330], +" client", +" api client", +[2,9229,12333], +"ing blocks", +[2,6147,12335], +"lr-blocks", +"uc-blocks", +[2,11857,591], +"smart", +[1,2343,12356], +"smart cdn", +"cloud ", +[3,31,8], +"file platform", +[2,12343,12345], +"ation api", +[2,353,12347], +"webp", +"avif", +"css c", +" properties", +[2,12162,12352], +[2,12351,12353], +[2,11617,591], +[0,12357,12358,12359,2523], +[0,3435,3438,1881], +[0,4389,1796,1177,2708,97,19243,19247,1261,1959,4103,1938,1947,1961], +[0,1177,6651,1541,1259,5284,6718,6778,7056,7192,7044], +[2,8137,668], +[2,1393,12360], +[1,2343,12363], +[0,12364,12365,12359,2537], +[0,4135,3435,3438,19254], +[0,4389,1796,1177,2708,97,19243,19247,1261,4103,1938], +[1,2343,12367], +[0,12373,12374,12375,2399], +[3,5881,34], +"self", +[2,12368,12369], +[3,12370,35], +[2,12371,5585], +[0,1881], +[0,1009,1011,1742,1177,1895,1938,2675,2990,3400,1894,19263,91], +[0,1259,1541,6778,7056,7192,7044,1177,6651,5284,6718,91], +[1,2343,12377], +[0,0,5795,12378,4139], +[0,1885,1501,19269,590,671,9654,2292,2272,19270,1177,2649,19271,15717,4354,16790,19273,18443,2446], +[1,2343,12380], +[0,12381,5795,12382,2537], +[0,442,2203], +[0,1177,7625,19281], +[1,2343,12386], +[2,8530,4798], +"merge-deep", +[0,12387,12388,12389,2537], +[0,19438,19181,442,19344,1009,1011,1891,1907,19286,1915,1938,1942,1951,1953,17306,1982,4523], +[0,9736,1177,91], +[0,1890,1177,7625,19281], +[1,2343,12391], +[0,12401,12404,6936,2443], +[3,5075,18], +[2,12392,8221], +"@makotot/ghostui", +[3,6497,10], +"@types/hast", +"@umijs/bundler-utils", +"@umijs/", +"@umijs/core", +[2,12398,594], +[0,1953,1951,1938,19286,1011,17306,1009,1915], +"-scroll-to", +[2,12082,12402], +[0,1177,91,9736], +"codesandbox", +"comlink", +"dumi-", +[1,2343,12417], +"dumi-afx-deps", +"estree-", +"util-to-js", +[2,12410,12411], +[3,12412,12], +"visit", +[2,12413,12414], +"file-s", +[0,0,0,12423,2487], +"ystem-cache", +[2,12416,12418], +"is-element", +[2,2573,12420], +"heti", +[0,1177,6651,7625,28987,1894], +"html2sketch", +[3,3137,12], +"ind-and-replace", +[2,12425,12426], +[3,3140,14], +[2,12428,1871], +[1,2343,12453], +"prism-themes", +"react-l", +"-skeleton", +[2,10087,12433], +[2,12432,12434], +"code-editor", +[2,10961,12436], +[2,3890,12437], +"rehype-r", +"emove-comments", +[2,12439,12440], +"directive", +[2,3986,12442], +"sucrase", +"umi", +"-parents", +[2,4555,12446], +"v8-compile-cache", +"vfile", +"dumi-a", +"ssets-types", +[2,12450,12451], +[0,12464,0,2514,2523], +[2,11367,1732], +[2,6495,12454], +[3,5540,9], +"sted-git-info", +[2,12456,12457], +[2,6308,6925], +"luralize", +[2,5088,12460], +"@umijs/lint", +[2,12398,9711], +[0,53,1939,1959,68,1938,1270,1935,1947,19302,1011,19254,1961,1976,1009], +[1,2343,12469], +"-import-utils", +[2,12405,12466], +"repo", +[0,0,12470,12476,2523], +[0,1177,1903,1938,1953,1958,4389], +"git-repo-info", +[2,11311,1732], +"zx", +[2,699,701], +[2,12407,12474], +[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,6651,2446,2292,2272,671,19315,19269,2869,1899,4255,19317,590,19318,19320,19273], +" site generator", +[2,2947,12477], +"jamstack", +[1,2343,12481], +[0,0,12482,12483,2537], +[0,5601,19325,1177,1938,1953,1958,4389], +[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,6651,2446,2292,2272,671,19315,19269,2869,4255,19317,590,19318,19320,19273], +[1,2343,12485], +[0,12486,12487,2514,34352], +[0,442,27928,1982,2203,4523], +[0,19333,5601,4874,19336,1446,1177,19339,33860,1894,91], +[1,2343,12489], +[0,12490,12491,12492,2537], +[0,29371,19194,19344,19254,2203], +[0,1166,1177], +[0,6651,1906,19347,19348,19349,19350,19353,1501,19269,590,671,9654,2292,2272,19270,1177,2649,19271,4255,15717,4354,16790,19273,18443,2446,2869], +[1,2343,12494], +[0,0,12495,12496,2399], +[0,192,5467,1610,2675,2990,3985,3995,1906], +[0,19359,1541,1177,18639,18640,3624,1906], +[1,2343,12498], +[0,12499,12500,12501,2537], +[0,1012,1091,1443,1525,1595,1699,8098,18420,2777,2845,12834,3117,4507], +[0,442,4874,6513,29891,16480,22839,1177,1895,1938,1953,1955,1982,3125,3390,3400,3471,1894,4193,18710,91,4523,1984], +[0,2295,1739,1745,1177,1179,1932], +[1,2343,12503], +[0,12504,0,12505,4139], +[0,1676,27418,2191,19380,29856,27921,12578], +[0,91,1177,1204,14056,1932], +[1,2343,12507], +[0,12508,12509,12510,2523], +[0,2102,2151,3008,3429,4121], +[0,48,53,87,192,5467,19401,16405,1178,1193,1457,19403,1610,1700,1701,1177,1895,19405,1938,2675,1192,2794,2990,3400,1894,4257,2924], +[0,1177,671,9654,1194,2924], +[1,2343,12512], +[0,12513,12514,12515,2537], +[0,439,19194,19413,2000,19415,19419,4025], +[0,1011,1166,1414,1437,1177,19422,1912,1933,2020,3400,3471,3532,91,1906], +[0,1177,6741,6939,1166,1973,8791,1145,6637,6468,2899], +[1,2343,12517], +[0,12518,12519,12520,34352], +[0,19209], +[0,2899,1177,1178,3028], +[0,1172,1177,6741,6939,1178], +[1,2343,12522], +[0,12523,12524,12526,2523], +[0,16805,19436,1393,1423,2105,2203,3057,4135], +[0,53,68,192,5467,19438,442,6061,6063,19441,5366,19443,5601,5087,19446,5254,1317,19449,1804,1177,1895,1933,1955,2024,2675,1192,1894,4131,4183,4468,4474,91,4523], +"object-deep-merge", +[0,1177,1388,4231,5592,671,1421,19451], +[1,2343,12528], +[0,0,12529,12530,2523], +[0,1177,2899], +[0,1177,6741,1925,6778], +[1,2343,12532], +[0,12535,12536,12537,2537], +[2,19573,24759], +"diff-sequences", +[0,1874,2687], +[0,12602,4874,19464,1178,1503,1615,1177,19466,2151,2899,3421,3456,4039,4135,13134,19468,19469], +[0,1177,6741,6939,1932,8505,4298,12442,2202,2203,19472,19473,19475,19478,19479,19482], +[1,2343,12539], +[0,12540,12541,12542,2443], +[0,439,2004], +[0,192,5467,6303,19492,19181,442,27928,19611,19580,31200,1006,4870,4874,1011,1012,16480,1177,19494,1895,1912,1953,1982,1992,1994,2000,2675,2807,2990,1209,3125,3390,3401,1894,1531,91,4523,1984], +[0,1177,6741,6939], +[1,2343,12544], +[0,12545,12546,12547,2537], +[0,1209,19500], +[0,1091,2070,2675,2899,1177,4039,19505,15555,48,53,13693,94,4131,87,68,19504,5235,1933,1198,5874,78], +[0,1177,1932,1934], +[1,2343,12549], +[0,12550,12551,12552,4139], +[0,2654], +[0,19512,19514,1177,1895,19516,1894,4135], +[0,6939,6741,1177,1936], +[1,2343,12554], +[0,12555,12556,12558,34352], +[0,11554,19522,19525,18976,1143,1676,19526,19527,19378,2571,17501,2743,3181,19020,19531,18994,4135,11555,4480], +[0,19535,5601,1011,1173,1175,1178,1208,1212,1261,14237,1280,1291,1429,1610,19538,1177,1912,1915,1933,1938,17585,14053,19539,2070,2708,2762,2858,19540,19541,3125,2899,19544,3421,3875,4039,4103,4193,4449,91,19545], +"stable-hash", +[0,1177,6741,6939,5194,13354,5260,1204,6813], +[1,2343,12560], +[0,12561,12562,12542,2487], +[0,1012], +[0,48,53,87,92,192,5467,19492,19552,6061,6063,5536,5601,5087,4874,5254,1009,1011,1012,1193,19555,1680,1177,1895,1912,1933,1938,1953,1955,1992,19560,2675,2742,1192,15853,2990,19516,3534,1894,4039,4131,4135,4474,91], +[1,2343,12564], +[0,12565,12566,12567,2537], +[0,19567,12533,19568,8506,1676,1874,2000,19186,2626,12525,27427,4135,19570,30614], +[0,5517,48,53,68,5240,87,19574,19577,19193,19578,816,16607,6065,16608,4856,5245,19580,19581,1006,8818,6503,4874,5254,19586,5552,1198,1208,19588,1414,1420,1429,1677,1177,19504,19505,2070,2203,2675,19592,2845,26696,2990,2899,19595,3541,4068,4039,4042,4131,4193,5569,91,4523], +[0,1177,1932,1776], +[0,12569,19601,12572,34352], +[0,439,19193,11180,12570,12534,12668,17310,12118,19571], +[2,19606,12571], +"ast-token-store", +[0,1177,6741,6939,671,19632,2856,1781], +[1,2343,12574], +[0,12575,12576,12577,2537], +[0,11869,19522,1143,19638,1169,19639,19640,13829,2571,19644,19645,3181,19020,19647,19648], +[0,48,53,68,5240,94,1159,1198,1261,1177,1881,1912,1933,1935,1938,2004,2126,2708,2762,17221,3183,3410,3435,3438,4039,4103,4135,4389,19650], +[0,1177,6741,6939,6653,7320,1219], +"unrs-resolver", +[1,2343,12580], +[0,12581,12582,12583,2537], +[0,3137], +[0,3421,1429,2899,1177,2203,442,19206,19657], +[0,1177,6741,1783,671,9654], +[1,2343,12585], +[0,12587,0,12594,2399], +"aleo", +[0,2203,439], +"cryptography", +[3,1336,10], +"decentralized", +"-knowledge", +[2,7150,12591], +"oracle", +[0,1177,6741,6939,2899], +[1,2343,12596], +[0,12597,12601,12615,34352], +[0,439,1835,19671,2191,2203,1555,2687,4135,29860], +"event-", +"target-shim", +[2,12598,12599], +[0,442,5601,1006,27303,4874,1011,12145,1177,1895,1912,1933,2071,2675,2990,3125,2899,3401,3421,3456,1894,3757,3980,4039,19676,4507,91], +"@mysticatea/eslint-plugin", +[3,12602,12], +[2,12603,4158], +"dts-bu", +"ndle-generator", +[2,12605,12606], +"growl-reporter", +[2,2877,12608], +"-minify", +[2,4045,12610], +"rollup-", +"rollup-watch", +"type-tester", +[0,1177,6741,6939,202,6710,5286,6987,2090,3403,1204,3209], +"w3c", +"abort", +"cancel", +"control", +"controller", +[2,12617,12620], +"abortsignal", +[1,2343,12624], +[0,12625,12626,12615,2487], +[0,1927,19414,2687,3181,814,4135], +[0,12602,1503,1177,2071,2203,2899,3421,3456,3757,4039], +"negotiator", +[1,2343,12629], +[0,12630,0,12632,2399], +[0,19689,19571], +"negotiation", +[0,1177,6741,6939,1894], +[1,2343,12634], +[0,12635,12636,12637,2537], +[0,439], +[0,1011,1742,1177,1895,1912,1933,1939,1953,1955,2203,2675,1192,2990,3401,1894,91], +[0,1177,6741,6939,1862,6567], +[1,2343,12639], +[0,12640,12641,12642,2523], +[0,19522,19724,1143,19726,19526,19641,2004,2571,19644,3181,3438,19020,18994,3744,814,4135,11434,19729], +[0,53,68,5611,19731,19735,90,5601,1006,4874,1011,1178,1177,1881,1912,1933,1938,1992,19560,1994,2000,11605,2070,2759,2762,19736,3125,2899,3410,4193,91,19545], +[0,1177,6939,6741,89], +[1,2343,12644], +[0,12645,12646,12642,2523], +[0,4763,53,58,21131,25652], +[0,1192,91,4874,104,1178,5601,1006,19877,36694,68,92], +[1,2343,12648], +[0,12649,12651,12652,2487], +[0,439,12121,8506,19592,19745,19750,19751], +"git-clone", +[0,107,6022,19492,19181,442,19605,19609,11470,4856,5601,19611,1006,6503,4874,19759,1009,1011,1145,1429,19619,1177,1895,1912,1915,1933,1938,1942,19622,1945,1948,1953,19757,1955,1964,1982,1988,17308,19756,3125,2899,19761,3090,3401,3421,3486,1894,4135,4320,4946,19624,1531,4494,91,4523,19630,4614,4630], +[0,1177,6741,6939,6961,1108], +"iglet", +[2,5537,12653], +[3,9362,11], +[2,12655,1496], +[1,2343,12658], +[0,12661,12662,12663,2523], +"nestjs", +"fullstack", +[0,19767], +[0,442,13729,1177,19771,1895,1912,1933,2990,3125,2899,3400,1894,4131,19235], +[0,1177,1965,19773], +[1,2343,12665], +[0,12667,0,12669,34352], +"archive", +[0,91,4135,31800,3060,19780,12121,3181,5569,19751,1413,1405,2203], +"eslint-json-compat-utils", +[0,19786,1177,6741], +[1,2343,12671], +[0,0,12529,12672,2443], +[0,1177,6741], +[1,2343,12676], +"flowcontrol", +"arch", +[0,12677,12678,12679,34352], +[0,439,5012,14301,2203,2932,3561,3616,3676,4135,19795], +[0,53,68,14039,19492,10879,19797,19798,8818,19799,6503,4874,19800,5254,19802,5604,5552,1082,1145,668,1994,19339,1996,2000,2807,695,2899,3640,3681,2278,4228,4333,3709,19803,4494,4505,4745], +[0,1177,6939,6741,3709,19805], +"cron-parser", +"date.js", +"human-i", +[1,2343,12686], +"nterval", +[2,12682,12684], +[0,12691,12695,12696,2523], +"uman-interval", +[2,6495,12687], +[2,8329,2995], +[2,3230,12689], +[0,5604,1012], +"job", +"jobs", +"delayed", +[0,192,5467,19181,442,4874,5551,7677,22839,23203,1177,1895,1912,1915,32525,1953,1958,1992,19560,2203,2675,2807,2990,1894,23535,4131,1531,91,4523,1984], +[0,1177,6741,6939,671,1975,5472], +[1,2343,12698], +[0,12723,12724,12725,2537], +[3,1339,12], +"end4", +[2,12699,12700], +"meat7", +[2,1337,12702], +"bow-swam-troops-care", +"cent-matter-to", +"close", +"r-composed-particularly-shout", +[2,12706,12707], +"coach-organized-notice", +"correct-home-silent7", +"course-whenever-merely", +"crop", +"-birthday-web3-children", +[2,12712,12713], +"exchange-known-bend", +"-even", +"tually-bound", +[2,12716,12717], +[2,8205,12718], +"grass-dollar-crew-floating", +"-fruit-web3-perfect", +[2,4374,12721], +[0,1012,608,606], +[0,9125,5601,1006,1177,9141], +[0,6869,1745,2295,4298,9132,9134,9658,1932], +"lay-rest-hour", +"balance", +"-trade-solar", +[2,12727,12728], +[2,3131,12729], +"meat", +"-think-stove8", +[2,12731,12732], +"offic", +"e-deal-mostly1", +[2,12734,12735], +"product-slight-adult-settlers", +[3,3931,9], +"done-should-moon", +[2,12738,12739], +"scienti", +"fic-exist-event2", +[2,12741,12742], +"sent", +"-won-little-western", +[2,6590,12745], +[2,12744,12746], +"-wing-eat", +[2,6887,12748], +"stay-including", +"supp", +"er-t", +"erm-including-snake", +[2,12752,12753], +[2,12751,12754], +"truck-hospital-equator-hurt", +"trunk-darkness-believed-corner", +"typi", +"cal-recall-industry-exchange", +[2,12758,12759], +"warn", +"-clothing-whose0", +[2,12761,12762], +"weigh-flew-web3-farm", +[1,2343,12766], +[0,12767,12768,12769,34352], +[0,5279,439,1443,1458,19824,5867,30055,2203,2709,10911,2835,3547,19826,19827,4135,8959], +[0,51,53,68,19181,19829,1011,5552,1166,1414,1836,1177,19422,1907,1912,1933,1942,1982,1992,19560,1994,2000,2992,3125,17269,27922,3390,3401,19595,3471,3718,91,4630,4745], +[0,1177,6741,6939,1981,9654,671,590,1906], +[1,2343,12781], +"@airtap/browserify-istanbul", +"-default", +[2,1090,12772], +"airtap-", +"airtap-multi", +"bruce-millis-option", +[3,9242,9], +[3,9242,10], +[2,12778,5576], +"near", +[0,12561,12794,12797,2537], +"nearest-file", +[2,2103,12782], +"s-to-files", +[2,2070,12784], +"human", +"ize-duration", +[2,12786,12787], +"load-script", +[3,3736,9], +[2,12790,6953], +[2,3094,12791], +"maybe-combine-errors", +[0,19344,5601,6503,4874,1009,1011,5551,19838,19839,1540,1177,1912,1933,1985,1992,19560,4474,4494,91,4543,1984], +"nanoresource", +"-col", +[0,1177,6741,6939,19842,1984,19844], +"-collection", +[2,12795,12798], +"on-str", +"eam-close", +[2,12800,12801], +"run-", +"parallel", +[1,2343,12806], +[0,12810,12811,12816,2523], +"-settled", +[2,12804,12807], +[2,12803,12808], +[0,439,12118,16870,3681,4135,19851], +[0,107,27928,19609,19344,11470,5601,19616,4874,5254,19853,1009,1011,5552,7677,1145,19619,668,1177,23753,1895,1933,1938,1945,29743,19623,1955,1982,19339,1996,2000,2018,2203,2832,3125,3510,1894,1531,91,19630,4614,1984,4630], +"tap-completed", +"y-with-args", +[2,3949,12813], +"transi", +[0,1177,6939,7625,188,12072,3624], +"ent-error", +[2,12815,12817], +[1,2343,12821], +"abstract-browser", +[0,12822,12824,12827,2487], +[0,51,2861,1437,2716,3429,89,4183], +"simple-get", +[0,19181,19861,5601,4874,8860,4880,1567,1177,5556,19862,19864,2807,3339,4294,91,1984], +"labs", +"saucelabs", +[0,1177,19866], +[1,2343,12829], +[0,12830,12838,5795,34352], +[0,34028,1006,19871,2004], +"uri", +"fast-uri", +[3,12284,13], +[2,12833,1286], +"-string", +"from-string", +[2,4013,12836], +[0,1011,1429,1996,2000,19230,4167], +"@ajv-validator/config", +"quire-", +[2,12840,12836], +[2,5249,12841], +[1,2343,12853], +"tc", +"-plugin-utc", +[2,1673,12845], +"if-node-version", +[2,12833,4467], +[2,5223,12836], +"re2", +"tsify", +"uri-js", +[0,0,12854,5795,2523], +[0,3456,4042,4057,4481,91], +[1,2343,12856], +[0,12857,0,12858,2537], +[0,1898,19884], +[0,1998], +[1,2343,12861], +"Ajv", +[0,0,0,12862,34352], +[0,10906,5286,6813,1204,5260,202,3209], +[1,2343,12864], +[0,12865,12866,12867,2523], +[0,1082,15128,1996], +[0,5517,4042,4167,4481,91], +[0,6892,5286,5284,57,5341,1082], +[1,2343,12869], +[0,0,12871,12872,2523], +"longjohn", +[0,15990,19905,19907,2070,2759,19878,2297,2881,2889,2891,2895,2897,2900,2912,19910,2915,1209,2899,19912,3954,1241,4487,91,4526,19914,2924], +[0,6892,5286,2003,5284,57,5341], +[1,2343,12874], +[0,0,12875,2514,2523], +[0,1264,1280,1429,2000,2323,2351,2390,2404,19922,2272,2899], +[1,2343,12880], +"buffer-", +"more-ints", +[2,12877,12878], +[0,12881,12883,2514,2487], +[0,1006], +"claire", +[0,91,4579], +"AMQP", +[1,2343,12888], +"AMQP 0-9-1", +"RabbitMQ", +[0,0,12889,12890,2487], +[0,2899,1177,2759,1317,4127,4100,1311,1954,1938,1958,1903,1948,1970], +[0,984,27,10376], +[1,2343,12892], +[0,12894,12895,12896,4139], +"ux bootstrap", +[0,19937,2010], +[0,19939,19941,19942,19944,9424,7892,4874,19325,1389,19945,1596,2675,2759,2297,2871,2889,2895,19946,3183,3421,1894,4389,4474,4487,4508,4514,91,19948], +[0,9439,19950], +[1,2343,12898], +[0,12900,12901,12902,2523], +"client-side", +[0,9424,1363,1600,19956,19957], +[0,19961,4874,19963,19325,1177,2297,2881,2895,19946,19965,3421,1894,4389,4474,91], +[0,9439,6731,594], +[1,2343,12904], +[0,12905,12906,12907,2523], +[0,1082,1437,4747,1209,1362,2151,19972,2004,3105,19971,4547], +[0,3763,19974,91,4874], +[0,19976,19977,5284,1783,1973], +[3,4,9], +"cli/ast-tools", +[2,12908,12909], +[3,12910,13], +"href-webpack", +[2,1296,12912], +[2,12911,12913], +"@ngtools/json-schema", +"@ngtools/", +[2,12916,2924], +"denodeify", +[1,2343,12920], +[0,12927,12932,12933,2523], +"entity-name", +[2,3370,12921], +[2,1828,12922], +[2,4284,594], +[2,1828,12924], +"exists-sync", +[0,1792,7115,3102,19982,4237,19984,4430], +"caller-file", +[2,2183,12928], +"isbinaryfile", +"node-mo", +[0,19986,19987,19988,4389,19989], +[0,3101,3053,19991,7131,4237,4565,1698,4068], +"dules-path", +[2,12931,12934], +[2,1508,2091], +"silent-error", +[3,4070,9], +[3,6384,10], +"inst", +"rumenter-loader", +[2,12940,12941], +[2,12939,12942], +[2,12938,12943], +[1,2343,12946], +[0,0,12947,12948,34352], +[0,1317,1362,1596,2899,3421], +[0,2013,2018,13771,2016,19997,19998,19999,6868,20000,1803,3441,20001,20003], +[1,2343,12952], +" library", +[2,4627,12950], +[0,0,12953,12954,2537], +[0,811,10615,1148,1414,2899,4042], +[0,20014,20015,20016,20018,19997,19998,6868,20000,13771,2013,3441,19999,20001,20019,20003], +[1,2343,12957], +"justified", +[0,0,12960,12962,2523], +"bgblack", +"bgBlack", +[0,1090,2159,6914,2569,2756,4389], +"bgblue", +[0,2018,7133,7053,7155], +"bgBlue", +"bgcyan", +"bgCyan", +"bggreen", +"bgGreen", +"bgmagenta", +"bgMagenta", +"bgred", +"bgRed", +"bgwhite", +"bgWhite", +"bgyellow", +"bgYellow", +"black", +"bold", +"clorox", +"cyan", +"dim", +"gray", +"green", +"grey", +"hidden", +[1,2343,12988], +"inverse", +"italic", +[0,12989,12995,12999,2537], +[0,20033,1615,2089,2188,20035,2745,2753,3404,3718,4174,20039,20040], +"magenta", +"red", +"str", +"kethrough", +[2,4285,12993], +[0,4874,1166,1414,20042,20044,20047,29888,3505,16687,16330,4481,91,4707,1906], +"underline", +"white", +"yellow", +[0,2978,1451,3729,20049,16701,20050,20051,1614,2090,4166,20052,17180,20054,3378,3403,2703,12473], +[1,2343,13001], +[0,0,13003,13004,2487], +"@jest/get-type", +[0,2273,2277,2283,2228,4707], +[0,2021,3729,20061,8634,20062,20063,20064,20065], +"vt100", +"cursor", +"iterm2", +"screen", +"erase", +[1,2343,13012], +"scrollback", +[0,13013,13014,2514,2537], +[0,20076,13002,11907,8765,11944,2798], +[0,16596,8776,1437,2700], +[1,2343,13016], +[0,0,13018,13019,2537], +"pattern", +[0,5517,4874,29891,23203,1177,20083,3377,20085,4294,4473,91,1984], +[0,91,20088,1145,553,4532,1973,5472], +[1,2343,13021], +[0,13022,13023,13025,2537], +[0,3763,1704,984,3441,710,4590,1676,2145,977,38,1080,1000,3494,4266,1833,3173,988,1364,1869,2657,3440,1562,2099,3781,4151,1581,20103,1560], +[0,1797,2590,3421,1087,2899,4594,1177,3127,3237,4342,1553,1575,1578,2040,3162,20106], +"svg-term-cli", +[0,2026,5130,6690,5122,27,4030,7096,38,1896,5592], +[1,2343,13027], +[0,13028,13029,13025,2537], +[0,1080,20098,1364,1560,1562,977,1581,1676,1704,1833,1869,984,2099,2145,2657,20103,3164,3440,3494,3509,988,3763,3781,4100,710,4151,20099,4266,1000,4578,4590], +[0,1087,1553,1575,1578,1797,1177,2040,2590,3127,3162,2899,3237,3421,20106,4342,4594], +"truecolor", +[2,31213,31214], +[1,2343,13033], +[0,13034,13040,13043,2487], +[0,53,58,101,19526,3509], +[2,12392,188], +"nitless", +[2,7944,13036], +"@simonwep/pickr", +"array-", +[0,5087,1177,1192], +"tree-filter", +[2,13039,13041], +[0,8124,2026,1776,2295,7701,20120,1745,4363,13728,1179,8623,20121,20123,20124], +[1,2343,13048], +"dom-align", +"croll-into-view", +[2,11148,13046], +[0,13050,13054,13070,2537], +"vue-types", +[0,1797,3188,1525,3181,14380], +[3,10720,40], +[2,5822,3426], +"@types/k", +[0,2899,1177,4039,4538,4342,4459,1954,1938,1958,1903,1970,4588], +"@types/koa", +"ru-cache", +[2,6499,13056], +[3,4875,15], +[2,13058,3615], +"-jsx", +[2,11016,13060], +[2,1199,1219], +[2,5334,13062], +"slint", +[2,3542,13064], +[2,1472,13065], +[2,5334,13066], +[3,1031,19], +[2,13068,1894], +[0,2026,5130,6690,5122,4030,7096,38,1896,5592], +"vue3-jest", +[2,5334,13071], +"pack-", +[1,2343,13081], +"cli/serve", +[2,13073,13075], +[2,10672,13076], +"ali-oss", +"nline-import-data-uri", +[2,1206,13079], +[0,13082,13091,13102,2523], +[0,2070,2215,2036], +"context", +"quire-context", +[2,1252,13084], +"colorful", +"-versions", +[2,3797,13087], +"cz-git", +"diacritics", +[0,442,6061,16607,6063,6065,16608,16612,5087,4874,1177,2203,2774,4131,4468,91,4523], +"docsearch.js", +"enquire-js", +[3,1954,16], +"licit-type-exports", +[2,1760,13095], +[2,13094,13096], +[3,2512,11], +[2,13098,1501], +"-emit-webpack-plugin", +[2,2687,13100], +[0,2026,20137,2036,6624,8691,20140,5354], +"is-windows", +[3,11948,16], +[2,13104,188], +"stub", +[2,1221,13106], +[2,2769,13107], +"templater", +[2,2842,13109], +[1,2343,13116], +"mport", +"npm-import", +[2,1186,13113], +[2,3194,13114], +[0,13139,13140,13146,2523], +"vars-to-js", +[2,3194,13117], +"majo", +[3,5961,14], +"ble-of-contents", +[2,13120,13121], +"merge2", +[2,3986,1646], +"yaml-", +"yaml-config", +[2,3986,13126], +"reqwest", +"rucksack-css", +[3,4130,9], +[2,13130,36], +[3,1873,9], +[2,2495,2091], +[2,13132,13133], +"umi-request", +"vue-cl", +"ipboard2", +[2,13136,13137], +[0,2863,20147,8264], +[0,2899,1177,2026,4474,1894,91,6503,6494,1566,1011,1009], +"drag-resize", +[2,4625,13141], +"vue-i", +"nfinite-scroll", +[2,13143,13144], +[0,1303,20150,5165,20151,14374,27,2038,11326,3424,2026], +[1,2343,13150], +"equest", +"vue-request", +[0,13153,13155,2514,2523], +"vue-tsc", +"webpackbar", +[0,977,1581,1676,1704,16128,3494,4100,4538], +"vueComponent", +[0,1087,1575,1177,1948,2026,2899,3421,4342], +[1,2343,13157], +[0,13158,13160,13170,2523], +[0,1091,1437,1525,1536,1594,1759,2026,2812,4042,4057,91,4763], +[2,11164,3007], +[0,442,7806,9227,6494,4874,1009,1011,1177,1954,2203,3363,1894,4039,4474,4480,4523], +"color-picker", +[2,11183,13161], +[3,5050,15], +"utate-observer", +[2,13163,13164], +[2,11183,11194], +[3,11185,15], +"rigger", +[2,13167,13168], +[0,5592,5995,20164,5001,7141,2026,20165,5130,6706,6807,36,7020], +[3,11161,14], +"mpat", +[1,2343,13180], +"mpatible", +[2,13171,13174], +"work-theme", +[2,2560,13176], +[2,41,13177], +"@ant", +[0,0,13208,13209,2523], +"@antv/g6", +"@codecov/webpack-plugin", +"@code", +"sandbox", +"/sandpack-react", +[2,13184,13185], +[2,13183,13186], +"@ianvs/prettier-plugin-sort-imports", +"@madccc/duplicate-package-checker-webpack-plugin", +"@micro", +"flash/rehype-figure", +[2,13190,13191], +"dm-zip", +[2,9165,13193], +"li-oss", +[2,9165,13195], +[3,10403,11], +[2,13197,3730], +[3,10406,12], +[2,13199,36], +[3,8806,9], +"omorphic-fetch", +[2,13201,13202], +[2,7635,965], +[2,10884,3730], +"ixelmatch", +[2,5088,13206], +[0,1414,20171,4193,1177,2026,4474,20170,91,4874,6513,6494,1011,1009], +[0,20173,20174,1781,91,5592,27,2026,20175,20176,91,2663,998,20178,20179,20182,20183,20184,9091,10339,5995,20186,20188,89,20189,20194,20195], +"@types/pngjs", +[1,2343,13217], +"pinnies", +[2,5051,13212], +[3,7752,10], +"antd-style", +[3,8770,10], +[0,13222,13242,13244,2537], +"ugin", +"y-plugin", +[2,13216,13219], +[2,7045,13220], +[0,1209,1155], +"cli-progress", +"plugin-c", +"chunk", +"olor-chunk", +[2,13224,13226], +[2,12407,13227], +[3,5556,16], +"dash", +[2,13229,13230], +"lunar-typescript", +"p-all", +"untup", +[2,3808,13234], +"-no-", +"-references", +[2,10393,13237], +[2,13236,13238], +[2,11380,13239], +"runes2", +[0,20202,20207,20212,5087,4870,1009,1011,1177,1895,1938,1955,1192,1894,4468,91], +"spinnies", +[0,2026,1155,7020,2649,2574,20215,4741], +"vanilla-tilt", +[1,2343,13247], +[0,13248,13249,13250,2523], +[0,1112,3327,20221,3776,13031], +[0,7806,9227,27478,6494,9231,27327,22102,10413,20232,1536,1594,1704,2026,9243,2657,3313,20243,91,4548,4763,34143], +[0,6710,5592,27,2663,1745,1781,2026,91,2844,36,1852,8124,20246,3452,20247,6652,20251,20252,4763,7020], +[1,2343,13252], +[0,0,13253,13254,4139], +[0,13614,13616,1177,2292,4389], +[0,2051,1496,1698], +[1,2343,13256], +[0,13257,13258,13269,4139], +[0,20263,20266], +[0,20268,20269,20272,2398,2747,20273,3183,2899,3427], +"ext-comm", +[2,10740,13259], +[2,5409,13260], +[2,5409,1745], +"app-layout", +[2,10689,13263], +[3,10703,14], +[3,212,11], +[2,13265,13266], +[3,806,10], +[0,3426,1496,2051,1698,7002,3048,3427,3435,3743,3583,3205,20275,4161,614,6435,594,6692], +[1,2343,13273], +"aper-toast", +[2,13268,13271], +[0,13274,13288,2514,2523], +[0,1149,3008,4121,4695], +"menu-mixin", +[2,5395,13275], +"building", +"-rollup", +[2,13277,13278], +[2,5471,13279], +[2,1384,591], +[2,13265,13281], +[3,5478,17], +"-regression", +[2,7062,13284], +[2,13283,13285], +"amf-client-js", +[0,1173,1193,1245,1257,1264,1610,1628,1701,1177,20281,1938,2092,1192,2990,3413,3697,3786,4257,4307,2924,20283], +[2,4053,2257], +"per", +"unzipper", +[1,2343,13295], +"raml", +"amf", +[0,13296,13297,13298,2399], +[0,1676,2188,4753,20290], +[0,1009,1011,1166,1177,1903,1920,1938,1954,1958,1970,2151,2675,2990,3421,4481,91], +[0,4560,2056,7682], +[1,2343,13300], +[0,0,13306,2514,34352], +"-match-patch", +[2,1687,13301], +"se-loader", +[2,5779,13303], +"klaw-sync", +[0,3421,2323,1776,2899,4193,1177,1209,3460,4431,1596,1389,20304,2494,2530,2990,13896,4599,2401,20305,20306,4603], +[3,1898,16], +[1,2343,13309], +[0,13312,13313,13314,2537], +"commended", +[2,13307,13310], +[0,20312], +[0,1177,1889,1954,2022,2899,3421,20314,4193], +[0,20317,3073,2942,6807,3721,20319], +[1,2343,13316], +[0,13317,13320,13321,2537], +[0,20325], +"light", +"apidoc-light", +[0,603,4874,1610,2070,19826,4005,4508,91,1984,20328,20330,2064], +[0,20334,20335,13657,5472,20336,20339,20340,2060,20342,20341,1192], +"portable", +[1,2343,13324], +[0,13329,0,13330,4139], +"programmatic", +"cli-app", +[2,4610,1745], +[2,3115,1745], +[0,20351,20349], +[0,1641,57,2062,20353,20354,20355], +[1,2343,13332], +[0,0,13334,13335,2537], +"http2", +[0,1596,1758,1177,2899,3421,3697,89,3904,4193,91], +[0,2062,4162,1693], +"apple", +" notifications", +[2,6645,13337], +"iOS", +"apns", +[1,2343,13342], +[0,13343,13344,13347,2537], +[0,20366,19185,2200,13123,3170], +[0,20369,16396,20371,8778,6503,4874,20374,6513,20375,1177,20377,2020,2071,20378,2070,20380,2899,4039,4193,20382,91], +[3,1122,12], +[2,1126,6731], +[0,2070,11601,2062,20385], +[1,2343,13349], +[0,0,13350,2514,2523], +[0,6503,4874,2899,4113,91], +[3,5515,14], +[2,4807,13351], +[1,2343,13355], +"jsnext", +[0,13357,13358,13359,2443], +"relay", +[0,20394], +[0,53,83,87,94,4874,1195,1414,1177,2591,2765,1894,3753,91,2924,4677], +[0,2062,6523,1781,57,4734,16168,4735,676,1155,2649,8535,1145,20398,20400,1936], +[1,2343,13361], +[0,0,0,13365,2399], +[3,8780,10], +"phql", +[2,13362,13363], +[0,2077,5131,4453,4384,2076,1702], +[1,2343,13367], +[0,13368,13371,13375,2537], +[0,20428,20414,20434,13597,20418,20409,20426,20412,20420,3533,20416,4038,20423,4135,20410], +"-common", +[2,1129,13369], +[0,28002,8520,826,19344,7844,4874,1091,8531,1092,20437,20446,20441,28400,20450,1540,1610,1177,20444,11049,20453,20436,2657,2812,12284,2861,20451,29197,3313,3752,4238,4481,91,4548,4590,6482], +[2,1126,1612], +"to-querystring", +[2,3425,13373], +[0,5122,5130,1781,2844,3445,5592], +[1,2343,13377], +[0,13378,13380,2514,2523], +[0,603,20472,12397,20467,20482,12399,12400,27329,20463,1201,1212,20479,20476,1835,668,2071,12419,20465,3181,20460,4480,91,20474], +"cracks", +[0,192,5467,842,5087,20485,9129,4874,14011,12471,2675,1192,6551,2990,1894,3706,3708,4039,4474,4494,12473], +"_modules", +[2,202,13381], +[1,2343,13384], +[0,13385,13386,13389,2399], +[0,20490,20491,20492,20493,20494,15016,1792,3183,19544,3923,19647,4243,20495,18997,20496,4389,4431], +[0,13614,1158,1159,1177,2708,3410,4103], +"@appium/support", +"@colors/colors", +[0,4384,12786,1973,20499,20500,3721], +"appium-adb", +"appium-", +"driver", +"chromedriver", +[2,13391,13393], +"asyncbox", +"io.appium.settings", +"ports", +[1,2343,13401], +"portscanner", +"teen_process", +[0,13407,13408,2514,2523], +"@appium/", +[3,1879,15], +"ppium-ts", +[2,13403,13404], +[2,13402,13405], +[0,1613,20507,3082,3427,1862,20508,11804], +[0,53,1700,2126,2323,2338,2396,2494,2700,2774,3159], +[1,2343,13420], +"@appium/t", +[2,13410,7630], +[2,13410,103], +"luebird", +[2,4853,13413], +[3,4875,9], +"rtscanner", +[2,13415,13416], +[2,5051,5588], +"@types/te", +[0,6230,13421,13422,34352], +[0,48,53,87,90,6061,6063,20514,13662,20517,1251,1652,1177,1879,2990,3188,4131], +[0,20519,20520,20521,20522,4963,20523,4967,6082,89,20524,20525,11609,5122,20526,20528,20531,20533,17751,20536,20537,20539,20541,20542,20543,20544,20545,20546,20547,20548,20551,20553], +[1,2343,13424], +[0,6263,13425,13427,2537], +[0,48,53,83,87,90,92,5583,811,816,10817,968,972,20562,5087,4880,4883,1009,1011,1503,1540,1610,1177,1881,1895,17613,1938,1939,1959,1961,1192,89,3824,3957,4042,4073,4468,4484,91], +"appium", +[0,20566,4967,20568,3875], +"automation", +[2,5131,10428], +[1,2343,13431], +[0,13432,0,13433,4139], +[0,20577,20573,20575,11959], +[0,1612,27,3212,5472,4158,13106], +[1,2343,13435], +[0,13436,0,13438,2399], +[0,20584], +"@azure/core-auth", +[0,10807,2087,15964,20586,1149,12804,6812,14836,1862], +[1,2343,13440], +[0,5621,13443,13448,2537], +"pipeline", +"reg", +[0,4874,23203,1149,2675,2990,91,1983,26744,1984], +"@azure/", +"identity", +[2,13444,13445], +"monitor-", +[0,2088,6938,6952,7179,1111], +"eleme", +[1,2343,13451], +[0,13460,8134,13461,34352], +"opentelemetry", +[2,13447,13452], +[2,13444,13453], +[3,830,9], +[2,13454,13455], +"-inst", +"rument", +"ation-", +[0,16232], +[0,3656,200,8429,6876,7169,5511,2568,20597,2089,20598], +"azure-sdk", +[2,13459,13462], +[2,13458,13463], +[2,13457,13464], +[2,13452,13465], +[2,13444,13466], +"@opent", +[1,2343,13472], +"elemetry/api", +[2,13468,13470], +[0,13511,13519,13533,2537], +"-logs", +[2,13471,13473], +[3,13471,15], +[2,13475,364], +"er-logs-otlp-http", +[2,6813,13477], +[2,13475,13478], +[3,13479,24], +"metr", +"ics-otlp-http", +[2,13481,13482], +[2,13480,13483], +"trace-", +"otlp-http", +[2,13485,13486], +[2,13480,13487], +"otlp-", +"exporter-", +[2,13490,1299], +[2,13489,13491], +[2,13475,13492], +"resources", +[2,13475,13494], +"sdk-logs", +[2,13475,13496], +[3,13497,19], +"metrics", +[2,13498,13499], +"trace-base", +[2,13498,13501], +[3,13502,25], +[2,13503,202], +[3,13497,16], +"emantic-conventions", +[2,13505,13506], +"diagnostic-channel", +"-publishers", +[2,13508,13509], +[0,3008,4121], +[2,13444,5746], +[3,4870,9], +"@types/long", +[3,8778,12], +"__typescript-etw", +[2,7295,13516], +[2,13515,13517], +[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,2675,1192,2990,3144,3400,1894,4257,4027,2924], +"exce", +"ption", +" monitoring", +[2,13521,13522], +[2,13520,13523], +[2,705,13522], +[2,6681,13522], +[3,1135,11], +" insights", +[2,13527,13528], +"microsoft", +"azure", +"tracing", +[0,2924], +[1,2343,13536], +"telemetry", +[0,0,13537,13540,4139], +[0,48,53,10688,5812], +"analytics", +"apm", +[0,20611,20613,20614], +[1,2343,13542], +[0,13543,13555,13556,2537], +[0,13687,20619,20621,20624], +[3,7709,10], +"ial-provider-node", +[2,11891,13545], +[2,13544,13546], +[3,7709,9], +"hash-", +"hash-node", +[2,13548,13550], +[3,6765,9], +[2,13552,27], +[2,13548,13553], +[0,20626,4874,1166,20627,2188,20628,4481,1906], +[0,3171,2090,998,14431,12666,158,11807,20630,20631,16202,20632,20634,13735,4354,2741,20635,14242,20636,8433,17180,1398,15149,20637,18048,20638,20639,12349,20640,20641,20642,20643,20644,20645,20646,20647,20648,3775,20649,20650,20651,20652,20653,20654,2056,4390,20655,17276,17274,20656,18494,20657,20658,20659,20660,20661,20662,20663,20664,20665,20666,20667,20668,20669,20670,20671,2636,20672,20673,7016,20674,20675,20676,20677,20678,20679,13705,20680,20681,17918,20682,7827,20683,20684,20685,10790,20686,20687,20688,20689,20690,20691,7823,20694,20695,20696,20697,20698,3354,20699,20700,20701,20702,20703,20704,20705,20706,20707,20708,6523,20709,11811,10868,20710,20711,20712,8861,20713,20714,20715,20716,20717,20718,20719,20720,20721,20722,20723,20724,20725,20726,20727,20728,20729,20730,20731,20732,20733,20734,20735,20736,20737,20738,20739,20740,20741,20742,2403,20743,20744,20746,12350,10218,20747,20748,18508,17733,20749,20750,20751,20752,20753,20754,20755,20756,20757,1227,20758,20759,20760,20761,20762,20763,20764,12081,12096,28922,28923,28924,28925,28926,28931,28932,28942,28943,28946,28947,37859,28949,28955,28958,28961,34876,33671,6790,33677,27669,29579,17288,13442,18883], +"signature-v4", +[2,13548,13557], +[2,13548,553], +[2,9196,1732], +[1,2343,13570], +"@aws-", +"amplify/amplify-appsync-simulator", +[2,13562,13563], +"construct", +"constructs", +[3,3706,25], +[2,13567,2618], +"projen", +[0,0,13575,13576,34352], +"appsync", +"gql", +"lambda", +"xray", +[0,10615,1159,1414,1177,2675,2899,4042], +[0,2090,2098,4202,7017,6771,1413,1687], +[1,2343,13578], +[0,13582,9025,2514,2487], +[2,1137,3007], +"crc32", +"buffer-crc32", +[0,1676,1833,1869,3440,3494,4266], +"readdir-glob", +"zip-stream", +[1,2343,13588], +"archiver-", +"jsdoc-t", +[0,13592,13593,13594,2523], +"jsdoc-theme", +[2,13586,13589], +[2,4279,4440], +[0,3537,13765], +[0,1906,1166,1700,4481,4400], +[0,2325,7204,20164,2100,7193], +[1,2343,13596], +[0,13598,13599,13600,2537], +[2,27994,27995], +[0,20786,20789], +[0,1166,17450,4400,4481,1906], +[0,2100,2104,2105,7076,6614,6605,2090,7193,3529,3383,814,5933,7029,6857,7204,4647,6821,3403], +[1,2343,13602], +[0,13603,13604,13605,2537], +[0,20796,2743,3170,20797], +[0,1177,1889,1954,2022,20801,2899,3369,3421,814], +[0,2090,2100,2105,7076,2070,3529,13017,814,7193], +[1,2343,13607], +[0,13608,13620,13621,2537], +[0,13612,20819,20822,20824,20825,20826,20828,20829,20831,20833,20836,20837,20839,20840,20841,12153,20843,20846,20847,20848,20849,20850,20851,20852,20853,20857,20858,20859], +[2,6739,1228], +"-unscopables", +[2,7065,13610], +"@firebase/ai", +"@es-shims/api", +"@ljharb/eslint-config", +"cover", +"covert", +"has-s", +"trict-mode", +[2,13617,13618], +[0,2323,4042,91,2496,2510,4077,10615,4060,811,4071,4076,816], +[0,5165,18035,20862,2109,20863,13901,6681,20845], +[1,2343,13623], +[0,13624,13627,13628,2399], +[0,20870,20848,20872,4874,20873,2069,20917,2863,20874,3313,3348], +"arrayify", +"ensure", +[0,20883,20839,20840,20885,603,20886,4856,9417,20888,8264,4870,7892,6503,10410,16936,20889,6513,6512,7819,1009,1011,1306,1429,1431,6522,1437,1455,1700,1177,20892,2323,2390,2409,2529,20895,1209,3183,2899,3261,3297,3400,3421,705,4008,4089,4193,4196,4474,91,4747], +[0,20897,18035,20862,20863,5165], +[1,2343,13630], +[0,13632,0,13634,2399], +"is-n", +[0,32557,32562,12207,20745,20904,20905,8998,29421,1079,1091,1092,1137,20908,1364,1457,20909,1483,1511,1525,1543,1594,1610,1615,1645,20911,20912,20913,2026,2098,2139,2151,2163,20914,2070,20917,2687,2822,2863,2975,20918,1209,12209,3127,14774,3171,3181,3237,3310,3445,3467,6042,3519,30172,30174,3560,3730,20921,1153,4135,20922,20924,20925,20928,18052,4449,20931,20934,20935,3348,4709,4715,4729,4745,4763,33069], +"is-nan", +[0,20937,200,20938,6599,20940,2109,20863,14609,20943], +"object-is", +[1,2343,13637], +[0,13639,13640,13641,34352], +"array-fill", +[0,20948,1437,1707,20949,20951,1997], +[0,4255], +[0,4051,3383], +[1,2343,13643], +[0,13644,13645,2514,2523], +[0,4864,9129,20959,2151,20960,4648], +[0,4874,4039,4384,91], +[1,2343,13647], +[0,0,13640,13649,2523], +"fn.name", +[0,2117,1781,3033,20966,4237,3048,3639], +[1,2343,13654], +"is-buffer", +"propget", +"pruddy-error", +[0,13655,13658,13659,2523], +[0,1676,1865,2151,1209,4449], +"shouldjs", +"unit testing", +[0,2899,4039,4255], +[0,18503], +[1,2343,13661], +[0,0,13670,13675,2537], +[2,1176,3178], +[2,1218,5702], +[3,1267,18], +[2,13664,6836], +[3,1955,17], +"fer-arrow", +[2,13666,13667], +"native-", +[0,53,78,14167,87,20978,4864,4865,5087,11301,4874,19802,1245,1457,1596,2151,2070,1192,1894,4039,4042,4045,20981,20983,4075,4072,4468,4474,4484,91], +"promise-only", +[2,13669,13671], +[3,4064,15], +[2,13673,2306], +[0,5284,9302,9026,1666,6901,3811,20986], +"jstz", +[1,2343,19602], +[0,20991,1437,2087,2727,2983,3368,15245,3741,4135,4247,20992,13914], +[0,1429,1596,1177,2759,20995,2899,3697,3752,4193], +[3,8155,10], +[0,20997,20998,8891,20999,2978,4166,16159,21000,3005,12804,21003,21004,2703,6599,14692], +"listen", +[1,2343,13684], +[0,0,0,13685,2537], +[0,13326,200,20052,17180,2124,3497,998,6591,4354,16790,5284,676,21009], +[1,2343,13690], +[2,13689,25388], +"then-sleep", +[3,20626,11], +[0,13691,13692,13699,2443], +[0,6372,21020,21016,3561,4383], +[0,53,87,6371,28962,28963,1009,1011,1165,1195,1587,1593,1610,1628,1630,1637,1177,1895,1955,21023,2092,12278,3177,3400,1894,21024,9348,4172,4230,4307,4409,4469,91,2924,4677,4681,21026,4749], +[2,54,202], +"@pika/pack", +"pika-plugin-build-web-babel", +[3,13695,12], +"ts-types", +[2,13696,13697], +[0,2128,91,5284,2924,1936,1623,12951,21028,4380,21029,21031,21033,21034,21036,21029,21037,21038,21039,21040,21042,21044,21047,21050,21052,21054,21057,21060,1177,1894,17526,1999,5811], +[1,2343,13701], +[0,13702,13703,13704,2537], +[0,1149,4707], +[0,3421,1776,2899,4170], +[0,21067], +"ttc", +[1,2343,13707], +[0,13708,13710,13714,2537], +[0,21072,2081], +"libnpx", +[0,53,1195,18228,1700,2323,2338,2396,2409,2494,2541,2700,1192,2780,3427,89,21074,3824,4603,2924,18237], +"node-cleanup", +[2,3382,6698], +[2,2103,9478], +[0,2130,89,3497,21077], +[1,2343,13717], +"audit", +[0,0,13718,13719,2537], +[0,1537,1177,2026,21082,2899,3421], +[0,27,2671,1002,7436,5576,7426,6435], +[1,2343,13724], +"parse-", +[3,9577,10], +[2,13721,13722], +[0,0,0,13726,34352], +[2,1199,4037], +[0,2414,7176,8220,1017,2414,1367], +[1,2343,13731], +"automatic", +[3,1446,9], +"commits", +[0,13732,13733,2514,2443], +[0,18986], +[0,5517,13614,23237,27570,19325,1159,1177,3410,3421,4389], +[1,2343,13737], +"detect", +"detective", +[0,13740,13741,13742,2443], +"detective-es6", +"sync-exec", +[0,1149,21097,1496,21098,1512,3188,4709,21099,21100,3722,1543,2015,3427,21102], +[0,1429,4616,2899,1177,3220,21104,705,1894,21106,1895,1955], +[0,200,21110,21111,2041], +[1,2343,13744], +[0,13745,13747,13748,4139], +[0,51,1437,1457,1595,1699,2151,3144,3181,21118,4121,4135,4388], +"fraction.js", +[0,5467,16607,21120,6065,16608,16612,19861,21122,4864,5087,8818,9129,6541,4874,20959,5254,1009,1011,1529,1610,1177,1938,1954,1955,10619,2675,1192,21124,2784,2845,21125,2990,3203,1894,4039,4131,4294,4468,91,2924], +[0,2924,1932,91,21127,4469,2924,20050,2062], +[1,2343,13750], +[0,13751,13752,13761,2523], +[0,13922,1437,1457,1209,3170,3181,814,4388], +[0,21134,16933,4870,8778,9129,4874,5251,4891,1429,1628,1177,2675,2759,2990,2899,3203,3210,1894,4039,4193,4469,4487,4490,91,188,4629,4634,4645,2924], +"@vercel/nft", +"arrgv", +"site", +"sites", +"callsites", +"cbor", +"chunkd", +"ci-parallel-vars", +[0,2924,1932,91,998,16790,9654,20050,2062,6887,4469,1167,21136,1464], +[1,2343,13766], +"code-excerpt", +"path-prefix", +[2,9480,13764], +[0,13776,13779,2514,2487], +"concordance", +"curr", +"ently-unhandled", +[2,13768,13769], +"emitter", +"emittery", +"ignore-", +"by-default", +[2,13773,13774], +[0,21141,21144,13917,2571,3173], +"matcher", +[2,9477,1541], +[0,13614,1159,1389,21146,1596,1615,1177,21147,21148,2141,2708,21152,2759,26259,21153,14133,3697,3758,705,4039,4135,4389], +"resolve-cwd", +[2,4250,594], +[1,2343,13783], +[0,13785,13787,13790,2537], +"supertap", +[0,3441,21158,24987], +"temp-dir", +[0,2934,3421,1192,1177,4042,2026,1894,4342,21163,1938,5328,1895,1955,811,21165,1881,816,21161], +[3,5328,14], +[2,13788,2190], +[0,15237,1669,2382,3767,21167,1781,21168,2090], +"🦄", +[3,1540,10], +"yield", +[1,2343,13797], +"observable", +"observables", +[0,13798,13799,13800,34352], +[0,5540,1699,2609,1209,3021,21174,21175,4484], +[0,972,4870,4880,4883,11322,21179,89,3824,21180,91,6482], +[0,2144,1669,25,89,3824,582,21182,7020,21185,7020,21188,21189], +[1,2343,13803], +"webpack-log", +[0,0,13806,13807,2487], +[2,3599,1469], +"ps-node", +[0,2899,1177,2759,1317,1311,1954,1938,1958,1903,1948,1970], +[0,2145,27,21195,2325], +[1,2343,13809], +[0,13810,13813,13815,2537], +[0,1437,6473,4290], +"ieee754", +"jmespath", +[0,1175,1178,1195,1225,1268,1177,1916,2022,1192,3150,2924], +"vector", +[0,17460,2656,2924,1932], +"test-vectors", +[2,13549,13816], +"insert-module-globals", +[1,2343,13820], +[0,13821,13822,13823,2537], +[0,2822], +[0,1377,21210,1596,2759,4255,4389,4770], +[0,4745,21214,21216], +"memoizee", +"@deque/dot", +[1,2343,13844], +"colorjs.io", +"-regex", +"emoji-regex", +"abel", +"grunt-babel", +"revalidator", +"sri-toolbox", +[2,4149,1852], +"ytesize", +[2,2237,13835], +[2,6654,3733], +[2,1463,13589], +[2,1632,3679], +[3,8654,10], +"webdriverjs", +[2,13840,13841], +"browser-", +[0,13845,13851,13853,4139], +[0,2215,2859,21224], +[3,1566,14], +"ommits-parser", +[2,13846,13847], +"-no-only", +[2,1951,13849], +[0,21226,13305,3183,2899,3421,3752,21228,4255], +"Accessibility", +[0,2150,2090,6771,1585,7204,2473,3188,7148,7149,6899,1781,3917,6033,2473,6865,7293,4453,7147,2585,6811,7004,1862], +[1,2343,13855], +[0,13856,13858,13861,2537], +[0,3181], +"proxy-", +[0,4856,4864,6503,4874,1429,2151,2759,2899,3421,1894,3714,21237,4474,91], +"from-env", +[2,13857,13859], +[0,2150,6771], +"multi-", +[1,2343,13877], +"entry", +"multi-entry", +[2,812,13865], +[2,12621,3733], +"dev-null", +"data-node", +[2,1669,13869], +[2,11941,12942], +[3,6387,14], +[2,13872,6662], +[2,1160,11052], +[2,4049,13874], +[3,4048,16], +[0,13883,13884,13885,2537], +"ndle-size", +[2,13876,13878], +[2,6528,3069], +[3,13134,15], +[2,13881,1149], +[0,21243,2151,3261,21246], +[0,4864,6507,2899,1863,4085,1362,4706,3760], +[0,1862,2150,2090,6771], +[1,2343,13887], +[0,0,13893,13900,2523], +[3,1391,11], +[2,13888,3171], +"edm-parser", +[2,2842,13890], +"md5.js", +[0,640], +"batchflow", +"factor-bundle", +"ink-docstrap", +"karma-e", +"nv-preprocessor", +[2,13897,13898], +[0,2154,16718], +"storage", +[1,2343,13903], +[0,13904,13905,2514,2443], +[0,3188,4039,2713,2215], +[0,4384,4255], +[1,2343,13907], +[0,13908,0,13910,4139], +[0,4740,3923], +"output-", +[0,2156,5576,16410], +[1,2343,13915], +"file-sync", +[2,13909,13912], +"v8flags", +[0,0,13916,13918,2523], +[0,13614,1158,1159,1177,3421,4103,4389], +"es-set-tostringtag", +[0,3046,1213,1925,1460,5746,7298], +[1,2343,13926], +"babel-co", +"de-frame", +[2,13920,13921], +[3,1184,12], +[2,13923,591], +"babel-m", +[0,0,13929,13931,2537], +"essages", +[2,13925,13927], +[0,48,53,68,78,5712,87,92,192,5467,21276,5583,816,6373,21279,21280,21281,21285,19464,21287,21288,1195,1177,1895,2675,21290,1894,4005,4042,4057,4257,4072,91,1984,19469,21294], +[2,1185,5190], +[0,2163,7193,21296], +[1,2343,13933], +[0,0,13934,13935,2443], +[0,19344,5366,1009,1011,842,1317,1177,1903,1915,1938,1953,1958,2675,4493], +[0,17218,5122,27,36,21302,5995,5130], +[2,1884,1172], +[1,2343,13938], +[0,0,0,13939,4139], +[0,2163,7193,7131,21307,21309], +[1,2343,13941], +[0,13943,13944,13945,2487], +"trim-right", +[0,21315], +[0,1149,2228,21317,2240,2273,2277,4039,1899], +[0,2282,2070], +[1,2343,13947], +[0,0,13949,2514,2487], +"try-resolve", +[0,91,4874], +[1,2343,13951], +[0,13952,13953,13954,2523], +[0,1437,4761,4716,4756], +[0,2228,2239,21329,21328,3006,4547,2273,2290], +[0,4756,8632,5130,4627,6400,1896,1098], +[1,2343,13956], +[0,13957,13958,13959,2523], +[0,1437,4207,4761,1209,16442,4756,4547], +[0,3261,1797,1429,1370,2899,4193,1177,3188,1362,2759,1525,4196,1615,2820,1431,3938,3202], +[0,4756,1098,2323,21337,21339,1367,1103,21340,2278,695,5194,1172,21341,91,1509,2437,5357,2924,1177], +[1,2343,13962], +[2,1262,1192], +[0,13963,13964,13965,2537], +[0,2212,2070,4761,1541,1209,1474,21350,21348,4756], +[0,1797,1177,2765,2151,21329,21328,1938,21352], +[0,4756,8632,4967,1896,2171,4627,13017,21354], +[1,2343,13967], +[0,0,13968,13969,2523], +[0,4874,1177,1895,1955,1958,1894,4384,91], +[0,4446,21360,6925], +[3,13725,15], +[1,2343,13972], +[0,0,13973,13974,2399], +[0,5536,4874,16480,26265,1894,4172,21365,91,1984], +[0,5701,1179,7253,21367,21369,6564,3053,6695], +[1,2343,13976], +[0,0,13977,2514,2443], +[0,48,53,87,92,6061,6063,16608,5087,4874,1009,1011,21377,21380,1178,1193,1195,19254,1177,1895,1915,1922,1938,1955,1959,1961,1966,1982,2675,21385,1192,2990,1894,4039,4131,21388,91,2924,4677], +[1,2343,13979], +[0,0,13986,2514,2537], +[3,1235,24], +"xport-extensions", +[2,13980,13981], +[2,1262,3696], +[3,1566,13], +[2,13984,2289], +[0,21393,21395,21396,21397,3421], +".exports", +[2,1237,13987], +[1,2343,13990], +[0,0,8002,13991,2523], +[0,1709,2100,139,3560,6058,21402,21404,1544,3445,11995,21405,20529,3778,21406,21407], +[1,2343,13993], +[0,0,13999,14001,2537], +"-js-shims", +[2,1259,13994], +"place-", +[2,13996,3427], +[2,1252,13997], +[0,4874,1702,1906], +"dynamic", +[0,21413,2184,20061,5614,1398,3101,3729,3917], +[1,2343,14003], +[0,14004,14005,14006,34352], +[0,21418,2753], +[0,4874,1166,21420,21423,20925,4481,1906], +[0,3038,3101,1862,5614,1871,2585,1398,3917,2382,6613,7017,7255,3048,5614], +[1,2343,14008], +[0,14009,0,14010,2537], +[0,21430], +[0,2191,3038,91,2190,21432], +"@umijs/test", +[2,1262,12445], +[3,3909,10], +[2,14013,5403], +[1,2343,14016], +[0,0,14017,14018,2523], +[0,4874,1009,1011,17930,1177,21439,1895,1955,17931,21442,1894,17934,4508,91,17936], +[0,21444,21447,21450,21452,21455,21456,2192,21457,21458,16718,21459,202,5490,553,91], +[1,2343,14026], +"nyc-config", +[2,3614,14020], +[2,8696,14021], +"instrument", +[2,11936,14023], +[2,1382,6521], +[0,14028,14030,14031,4139], +"pmock", +[0,1149,2205,2151,1525,18145,2102,21466], +[2,14023,5218], +[0,4449,1429,2899,4193,1177,21468,21470], +[0,3358,2193,2195], +[1,2343,14033], +[0,14036,14043,14046,2523], +[2,9477,1213], +[2,4013,14034], +[0,7076,10420,21476,21477,3505,16142], +"-bind", +[2,3046,14037], +[2,69,14038], +[3,8232,20], +[2,14040,6859], +[2,5316,7162], +[0,1178,1429,21480,1503,1527,1652,1177,21482,1922,1938,1951,2899,3203,3421,3752,4131,4193,4196,21486,4585], +"ompat", +"lodash-compat", +[0,3358,582,1564], +"cherry-pick", +[1,2343,14049], +[0,0,14050,14051,4139], +[0,13693,87,21495,21498,21499,8850,816,6373,10615,10895,1429,1177,1903,1938,1954,1958,2297,2878,2881,2886,2895,2900,2904,2910,2912,2918,18260,2899,4042,6390,2278,4193,4196], +[0,2195,10039,4967,4627], +[2,13920,686], +[2,2103,14052], +[1,2343,14055], +[0,14058,14060,2514,2537], +"resolver", +"rename", +[0,3181,21505,21507], +"mapping", +[0,4874,668,3144,3188,1894,4039,4384,4483,4508], +[1,2343,14062], +[0,14063,14066,14067,34352], +[0,2743], +"ester", +[2,12187,14064], +[0,1177,1889,2022,2899,3421], +[0,2070,5933,4301,3403,21519,7204,1299,21520], +[1,2343,14069], +[0,14070,9264,2514,4139], +[0,21526,3729], +[1,2343,14072], +[0,0,14073,14074,2537], +[0,22839,1166,1448,1939,2182,26260,17269,3401,3471,3758,4167,4481,4507,1906], +[0,2203,2202,7014,6436,6437,2272,1177,6640], +[1,2343,14081], +"remap-", +[2,14076,1223], +[2,1185,14077], +[3,13663,26], +[2,14079,5746], +[0,14082,14083,14084,4139], +[0,20033,2071,2687,17450,4207,20789], +[0,4874,1166,1317,21539,4400,4481,1906], +[0,12101,4552,17455,18132,1586,17462,7131,2100,21541,17453,2150,2070,21543,21544,17461,3529,13777,3181,3250,15294,18104,13017,11601,100,614,6435,21520,21545,1862,16774,3358], +[3,1184,14], +[2,14085,5789], +[2,1218,1229], +[1,2343,14089], +[0,14090,14091,14094,2443], +[0,1676,1615,21552,21550], +[0,1149], +[3,1217,21], +[2,14092,5610], +[0,11812,21555,158,21556,2692,2206,6270,17539,3797], +[1,2343,14096], +[0,14097,14098,14100,2537], +[0,3310,14231,4484], +[0,4874,5542,1009,1011,1177,21564,1938,1953,1958,1894,4508,91], +"chunk-data", +[0,21566,21567,21568,15473,17623,21571,5194,10906,2207,21572,21573,14692,21574,6355,21576,21577,21578,21579,21580,21581,21582,21583,5995,21584,21585,21586,21587], +[1,2343,14102], +[0,14103,14105,14108,34352], +[0,16485,21668], +"strict-", +[0,107,4874,1009,1011,21594,1177,1881,1883,1938,21597,20917,3297,1531,91,15822,1984], +"strict-mode", +[2,1226,14106], +[0,21600,21603,1885,21604,21599,21605,21606,5592,2211,21607,21608,21611], +[2,1218,77], +[1,2343,14111], +[0,14112,14113,14114,4139], +[0,20917,21616], +[0,21619,6503,21620,21621,4874,21623,15600,9725,11305,6513,6520,21625,21626,1414,1503,1610,2020,20914,2321,21627,1776,29342,29343,21630,2899,15221,3275,3297,3416,3445,3479,6332,1894,3752,4039,4153,4193,4449,91,4748], +[0,1885,5592,21632,5576,21633], +[1,2343,14116], +[0,14117,14118,14119,2523], +[0,21642,21651,21645,21647,21650,21649,16511,2928,21641,21638,21639,4507], +[0,21662,13789,826,5366,6494,4874,21654,14731,16936,6513,6515,1166,1170,1317,1362,1364,1414,14099,21656,21663,1701,1702,2024,2026,2139,13870,2188,3297,3310,3377,3477,21653,3532,29457,3923,705,4193,21657,4400,21659,4454,4494,91,1906], +[0,27,2671,13333,3038,2212,1002,12831,705,2869,7085,7289,1612,11995,11996,16518,21665,27778,27408,21666,21667,1170,4339,3310,21668], +[1,2343,14124], +"-react-jsx", +[2,9381,14121], +[2,1185,14122], +[0,0,14125,14126,2537], +[0,2323,4207,4042,1637,3471,3561,21689,21681,3416,3758,4320,53,1165,3678,2650,21688,87,21684,21679,5583,10615,6373,16912], +[0,21691,4967,9204,1283], +[1,2343,14134], +[2,88,2124], +[3,3872,10], +[2,14129,553], +[2,5237,14130], +[2,1199,14131], +"pkgfiles", +[0,0,14135,14136,2537], +[0,2702,3188,4039,4384], +[0,2150,1237,21697,1153,21699,3768,1851,2656,6737,21700,21701,21702,21703,21704], +"minification", +[1,2343,14140], +"propTypes", +[0,0,0,14141,4139], +[0,2220,21715], +[1,2343,14143], +[0,2513,14146,2514,2523], +[3,3957,12], +[2,14144,353], +[0,4856,6503,4874,1429,2220,2899,4039,4042,4071,4232,21721,91], +[1,2343,14148], +[0,14149,0,2514,34352], +[0,5528,4484], +[1,2343,14151], +[0,14152,14153,14154,4139], +[0,2822,20273,21731,21732], +[0,21734,20269,1509,21735,2053,2149,2398,3183,2899,4452,4597,6033], +[0,21738,1507,1506,2382,1739,1745,7682,21740,4965,2149,9339,8623,1179,2193,12981,5284,5352,676,6671,1783,9338,1644,57,7119,13755,2947,1283,4452,4745,7651], +[1,2343,14156], +[0,14165,14171,2514,34352], +"numer", +"ic-separator", +[2,14157,14158], +[2,69,14159], +[3,5835,33], +"mutators", +[2,14161,14162], +[3,10720,33], +[0,14393,21746,3025,10420,3263,3747], +"atch-binding", +[2,14164,14166], +[3,14160,25], +"llish-coalescing-operator", +[2,14168,14169], +[0,1364,21748,2026,21749,2759,1209,3183,3313,21752], +[1,2343,14173], +[0,14174,14175,14176,2443], +[0,2021,2070,3368,2822,2240,3181,1672,2685,2107,2015,21761,21763,21759], +[0,21765,4431,21770,2291,21768,2283,2277], +[0,5957,1149,200,3178,2280,6147,1209,2275,1973,2907,2276,36,21772,8632,7048,2763,4990], +[3,9676,14], +"heck-", +"es2015-", +"constant", +"constants", +[2,14179,14181], +[2,14178,14182], +[2,14177,14183], +"function-", +"comma", +"commas", +[2,14185,14187], +[2,10038,14188], +[2,7174,14189], +[2,1218,14190], +[2,1236,5742], +[3,1235,40], +"ed-functions", +[2,14193,14194], +[2,1236,5256], +[3,14196,31], +[2,14197,5763], +[2,1236,5765], +[3,14199,31], +[2,14200,5770], +[1,2343,14225], +"for-of", +[2,1236,14203], +[3,14204,31], +[2,14205,5789], +[2,1236,5796], +[3,1240,38], +[2,14208,5808], +[2,14208,4376], +[2,14208,5811], +[2,3425,4340], +[2,1236,14212], +[2,1236,5639], +[2,1236,5845], +[3,14215,31], +[2,14216,5849], +[2,14216,5851], +[3,1244,31], +[2,14219,5855], +[2,5857,1108], +[2,1236,14221], +[3,13982,27], +[2,14223,5780], +[0,14228,14229,14230,2523], +"to-chromium", +[2,1807,14226], +[0,2633], +[0,2228,2240,2263,2247,2253,2273,2277,2281,2320,2258], +[0,21779,1098,1283,5354,5614], +"gfsl", +[1,2343,14233], +[0,0,14234,14235,2537], +[0,2228,2307,2239,2316,1429], +[0,21779], +[1,2343,14244], +[2,1262,2124], +[2,1249,5878], +"-source", +[2,1248,14239], +[3,14240,34], +"elf", +[2,14241,14242], +[0,14245,14246,14247,34352], +[0,1149,1389,21791,2070,1209,814,4650], +[0,2228,2240,2247,2273,2899,4193], +[0,21779,1389,2228], +[3,5700,31], +[2,14248,3164], +[1,2343,14251], +[0,14252,14253,14235,2487], +[0,4135], +[0,2228,2234,2247,2273,2277,2285,2307,3006], +[3,1233,24], +"o-expressions", +[2,14254,14255], +[2,1226,14038], +[1,2343,14259], +[0,14260,14261,2514,2537], +[0,3368,21804,13914,2727,21759], +[0,2228,2273], +[3,1230,29], +"or-call", +[2,13565,14263], +[2,14262,14264], +[1,2343,14267], +[0,14268,14269,14271,2523], +[0,1149,1144,21810,2709], +[0,1906,2228,3363,2240,1615,3505,21814,4351,2316,2247,2283], +[3,1233,33], +[0,21779,13792,12804,21820,6707,6887,3514,6681,2062,21821], +[1,2343,14273], +[0,14274,14277,14278,2399], +[0,1149,4039], +[3,1225,29], +[2,14275,5747], +[0,2228,21468,2273,2271,2277], +[0,21779,4050,4051,7293,6865,1700,6790,17459,4039], +[1,2343,14280], +[0,14281,14283,14284,4139], +[0,1149,21834,1664,21420,4449,4707], +"home-or-tmp", +[0,2228,2240,2247,2271,2273,2277,2314], +[0,21779,21837,4329,2278,1623,7234,7121,590], +[1,2343,14286], +[0,14287,14288,14235,2537], +[0,1437,4227], +[0,2228,2247,2273,2271,2277], +[1,2343,14290], +[0,14291,14292,14293,2537], +[0,3445,1149,3237,1544,13399,4150,4151,16511,21847], +[0,2228,2273,2271,2277], +[0,21779,36,1544,27], +[1,2343,14295], +[0,14296,14297,14235,2537], +[0,1437,21855], +[0,2228,2240,2247,2271,2273,2277], +[1,2343,14299], +[0,14300,14302,14303,2523], +[0,1437,21861,1209,4300], +"esutils", +[0,2228,2247,2271,2273,2277], +[0,21779,1623,671,21861], +[1,2343,14305], +[0,14306,14302,14312,4139], +[0,1437,1462,21867], +"nv-inline", +[2,4690,14307], +[2,1226,14308], +"zipobject", +[2,3024,14310], +[0,21779,21869,1623,590,592,5376,3178,15215], +[1,2343,14314], +[0,14315,14288,14321,2537], +[0,1437,3714,2633], +[3,14257,24], +[2,9428,5238], +[2,14316,14317], +"9.0.0", +[2,5857,14319], +[0,21779,1936,2262,3178,15215,6707], +[1,2343,14323], +[0,14324,14325,14326,4139], +[0,1437,2267,3478,3545,3714,18045,18047,18050,18051], +[0,1166,1701,2228,1906], +[0,21779,15215,20639,158,11807,21881,20637,3178,18048,8221], +[1,2343,14328], +[0,14329,14261,2514,2523], +[0,17523], +[1,2343,14331], +[0,14332,14335,14235,4139], +[0,1437,21890,2272], +"@purtuga/esm-webpack-plugin", +[2,4807,1155], +[0,2228,2271,2277], +"browserstack", +[2,13283,14336], +[2,13283,3199], +"otpauth", +[1,2343,14341], +[0,14342,14345,14235,2487], +[0,695,1149,1437,1209], +"-as-a-service", +[2,5995,14343], +[0,2228,2247,2273,21898,2271,2277], +[1,2343,14347], +[0,14348,14349,14350,2487], +[0,21903], +[0,2228,2247,2271,2273,4384], +[0,21779,2276,1973,8791], +[1,2343,14353], +[2,2235,1283], +[0,14358,14302,14359,4139], +"codec", +"decoder", +"encoder", +"base64", +[0,1149,1437,1615,1664,4707], +[0,21779,4329,2278,1623,7234,7121,590], +[1,2343,14361], +[0,14362,14288,14235,2537], +[0,1437,21867,21915,4535], +[1,2343,14364], +[0,14365,14366,14367,2487], +[0,2164,1149,1209,4438], +[0,2228,2240,2293,4547,2273,2271,2277], +[0,21779,2282,3000], +[1,2343,14369], +[0,14370,14371,14376,2537], +[0,1437,1537,1566,3545,3760], +[0,2228,2239,2240,2247,2258,2273,2277,2290,21929,21930,2293,2307,3006], +"basic", +"orization", +[2,1303,14373], +"basicauth", +[0,2228,21779,1566,16094,13729,3073], +[1,2343,14378], +[0,14379,14381,14382,2399], +[0,1437,13985,3545], +[2,6915,5697], +[0,2228,2239,2240,2247,2273,2277,21929,21942,21930,2293,2307,3006], +[0,2228,21779,13985,2195,21944,3979,21945,1566,16094,13729,3073], +[1,2343,14384], +[0,14385,14389,14390,2523], +[0,1437,1177], +"tructure", +"ministructure", +"orange sms", +[0,442,2228,2240,2314], +[0,21779,1177,671,2649,11937], +[1,2343,14392], +[0,14394,14395,14396,2537], +"@mapbox/node-pre-gyp", +[0,21890,2292,1209,21956], +[0,2228,2273,2277,3006,4436], +[0,21779,2292,19271,16790], +[1,2343,14398], +[0,14399,14400,14401,4139], +[0,1615,1776], +[0,2228,2247,2277,2291,13896,3006], +[0,21779,2228,1745,2295,1776,18011], +[1,2343,14403], +[0,6203,14409,14410,2443], +"utfx", +"testjs", +"metascript", +"closure", +[2,14407,4643], +[0,192,21970,5467,6061,6063,16608,1177,1903,1938,1954,1958,1970,2025,2228,2239,2283,2285,2290,2291,2307,2675,2297,2881,2895,2900,3006,2899,4131], +[0,21779,2297,2228,1973,2275,8791,21972], +[1,2343,14412], +[0,14414,14415,14420,2399], +"pomelo-logger", +[0,21890,3188], +[0,1429,1506,2228,2240,21980,2247,2258,2273,21929,21982,21930,21984,2899,4039], +"di", +"IoC", +"AOP", +"injection", +[0,21779,2899,1973], +"consistent", +"hot reload", +[2,6399,5995], +[1,2343,14434], +"able codes", +[2,6578,14425], +[3,7191,11], +[2,14427,14419], +"hronous script loading", +[2,1149,14429], +"magic", +", self-described javaScript objects", +[2,14431,14432], +[0,14274,14435,14436,2399], +[0,1429,2228,21991,2240,2247,2273,2283,3203,4449,4727], +[0,1586,2228,21779,2301], +[1,2343,14439], +"beautify", +[0,14440,14441,14442,2443], +[0,4135,6472,4707], +[0,1429,2240,2273,2283,2300,22000,22002,3006,2899,3752,4436], +[0,21779,9044,22005,15844,22008,22009,6667,22011,1851,4649,13728], +"art-near-room-catch", +"blanket-line", +"born-greatly-explain3", +"bring-water-silence", +"brush-bigger-afternoon0", +"e-meet-war", +[2,11308,14448], +[2,6922,14449], +"compare-", +"breeze-mad2", +[2,14451,14452], +"did-", +"strai", +"ght-sister-sail", +[2,14455,14456], +[2,14454,14457], +"excitement-tonight-dead", +"gain-pleasant-prepare", +"industrial-public-immediately-until", +"is-str", +"aight-web3-attack", +[2,14462,14463], +"known-", +"wet-thirty-gave", +[2,14465,14466], +"-private-thee6", +[2,13682,14468], +[1,2343,14493], +"mainly-cent", +"ain-quarter-sit8", +[2,2944,14472], +"mouse-bat-web3-present", +"need", +"s-supper-anything", +[2,14475,14476], +"percent-impossible-score", +"rocket-location-calm-valley", +"seldom-fire-web3-running", +"shad", +"e-swim-shells1", +[2,14481,14482], +"spider-melted-chemical", +"stre", +"tch-onto-driver7", +[2,14485,14486], +"dream-supply5", +[2,11072,14488], +"-invented-girl-jungle", +[2,4990,14490], +"we-hunt-process", +[0,0,14494,2514,2399], +[0,2228,2239], +"automobile7", +[2,4654,14495], +"whether-dangerous", +[1,2343,14499], +[0,0,14500,14501,2523], +[0,2228,2240,2247,2277,2278,1906], +[0,21779,1623,2278,4329,590,7234,4358,22022], +"ansicolors", +"global-", +[2,14503,6666], +[2,2103,14504], +[2,2687,11601], +[3,5510,9], +[2,14507,3101], +"script-", +"inject", +"injector", +[2,14509,14511], +[1,2343,14516], +"dotpathlookup", +"jsl", +[0,14519,14520,14521,2537], +"httpserver", +[2,2869,14517], +[0,1512,1209,3760,22027,22031,12826], +[0,2228,2256,2273,2283,2293,22035,3003,1698,20001], +[0,21779,2228,12826,1973,2765,2899,2907,22037], +[1,2343,14523], +[0,14524,14525,14526,2443], +[0,1437,3404,4294], +[0,2228,2240,1906], +[0,21779,4166,1523,8429,2978,1614,1451,3729,200], +"docdown", +[1,2343,14530], +"qunit-extras", +[0,7923,14531,14420,34352], +[0,2228,2273,2899], +[1,2343,14533], +[0,14534,14535,14536,2443], +[0,1149,22054,22057,4545,22058], +[0,1177,22062,22064,22066,22068,22071,22072,2228,2240,2302,2899,4039,4165], +[0,2228,21779,22074,158,22075,1623,22057,16697], +[1,2343,14538], +[0,14539,14540,14541,2537], +[0,1437,1676,1209,3505], +[0,2228,3188,4039,2240,2293,22081,2273], +[0,21779,2319,8635,1936,1623,6707], +[1,2343,14543], +[0,14549,14551,14565,2523], +"@beyond-js/specifier-parser", +[3,14544,11], +[2,14545,2150], +"bee", +[2,14545,14547], +[0,442,1009,1011,1437,1177,1895,1953,1955,2020,2720,2856,3157,3275,1894,4523,4728], +"tml", +[0,22088,21122,5601,4864,4866,22089,6503,21621,4874,6513,6520,22092,1414,1615,2151,22093,21627,2899,4193,4449,91], +"ansi-to-html", +"concat-", +"maps", +"-sourcemaps", +[2,5056,14555], +[2,14553,14556], +"json-format", +[3,6477,9], +"ackage-", +"ackage-path", +[2,14559,14561], +"uimport", +[2,14503,5260], +[0,91,9654,4525,1885], +"universal", +" javascript", +[2,14566,14567], +"universal ", +[2,14569,91], +[3,2758,10], +[2,14571,14567], +[3,14572,11], +[2,14573,91], +"sigle page", +"spa", +"modul", +"ar development", +[2,14577,14578], +[3,11615,13], +" frontend", +[2,3166,14581], +"micros", +[2,14583,8920], +"micro ", +"services", +[2,14585,14586], +"hot ", +" replacement", +[2,1237,14589], +[2,14588,14590], +"ssr", +" side rendering", +[2,36,14593], +" packager", +[2,91,14595], +"JAMStack", +[1,2343,14599], +[0,0,14610,14611,2523], +"real time", +[2,7519,5130], +"ssr react framework", +[2,8589,5130], +"ssr ", +[2,14604,14603], +" framework", +[2,3709,14606], +[2,14604,14607], +"websockets", +[0,22099,8719,842,16145,22100,5087,4874,22102,9240,1177,1192,3313,1894,4039,4342,91], +[0,2322,5122,5130,6710,27,5592,5995], +[1,2343,14613], +[0,14618,14623,14624,2487], +"check-", +"check-types", +"hoopy", +"tryer", +[0,22110,21681,22109,4600], +"please-", +"release-me", +[2,14619,14620], +"spooks", +[0,1177,1889,1954,2022,3188,2899,3421,4039], +[0,6147,3101,623,7048,4990,14932,13441,22114,12804,22115], +[1,2343,14627], +"streamify", +[0,14630,14631,14632,2537], +"serialise", +[3,14430,12], +[0,2367,22122,2409,2835,3067,3102,19984,4431], +[0,4597], +[0,18444,2323,1098,12074,6113,22126,22127], +[1,2343,14645], +"arbitrary", +"precision", +"arithmetic", +"big", +"decimal", +"float", +"biginteger", +"bigdecimal", +[3,1325,9], +"bigint", +"bignum", +[0,14646,14647,14648,2537], +[0,18473,692,2012,2390,2494,22133,2543,3188,2072,3730,18528,4039,4135,1241,4597,4600], +[0,2348,2899], +[0,18444,16179,4166,22137,1804,2195], +"uri-", +[1,2343,14653], +"uri-to-path", +[2,2093,14651], +[0,14656,14657,14658,2537], +"gyp", +"c++", +[0,1165,2476,3561,4606], +[0,1166,2510,3477,4597,1906], +[0,18444,1165,3561,1623,3665,22145,5376,4358,22147], +[1,2343,14661], +"@noble/hashes", +[0,14662,14663,14664,2537], +[0,7709,1104,1443,2061,22153,3173,3544,4597], +[0,1429,22157,1177,2323,2494,2899,1894], +[0,18444,7200,6949,20001], +[1,2343,14668], +"@antv/", +[2,14666,4627], +[0,14670,0,14677,2537], +"@antv/g2", +[0,22167,22168,2012,3171,3730,3768,22170,4597,4600,4747], +"@antv/g2plot", +"@antv/util", +"@juggle/resize-observer", +"d3-color", +"conciler", +[2,3877,14675], +[0,18444,13531,20614,13901], +"data-", +"data-set", +[2,14666,14679], +[3,87,15], +[2,14681,1266], +"backgrounds", +[2,10818,14683], +[3,10827,19], +"fo", +[2,14685,14686], +"knobs", +[2,10818,14688], +"options", +[2,10818,14690], +"fabric", +"@umijs/fabric", +"@welldone-software/why-did-you-render", +"aphrodite", +[3,13080,20], +[2,14696,3897], +[2,14696,8221], +"bx-jest-electron", +[3,4325,12], +[2,6996,4408], +[2,14700,14701], +[1,2343,14704], +[0,14716,14722,14724,2487], +"-deploy", +[2,7204,14705], +[2,10617,14706], +[2,5651,2091], +"moment-", +"jalaali", +[2,14709,14710], +"react-wi", +"th-styles-interface-aphrodite", +[2,14712,14713], +[3,14714,28], +[0,4431,4002,3544,4606], +"mpiler", +"css-compiler", +[2,14715,14718], +"-diff", +[2,8745,14720], +[0,1906,2899,4597,3697,53,2510,5761,5756,5743], +"g2", +[0,18444,1172,5198,6778,7056,7192,22179,22180,5341,5061,22181,5284,4643], +[1,2343,14726], +[0,14727,14729,14732,2523], +[0,2476], +[3,4808,10], +[0,1166,2323,3477,4597,1906], +"dable-stream", +[2,14728,14730], +[0,18444,4295,1412,4327,3126,4577,22188,22189,22190], +[1,2343,14734], +[0,14735,14737,14740,2537], +[0,1104,1370,2061,2720,3544,4431,4597,4647], +"bun-types", +[0,1429,2012,22198,2436,2463,2272,2899,4039,4193,4196,4278], +"falafel", +"fore", +[0,18444,1370], +"foreach", +[1,2343,14746], +"coffee-", +[2,14743,89], +"save", +[0,14749,14750,14751,2523], +"save-license", +[2,4534,14747], +[0,1389,2541,1391,3923,4431], +[0,2899,1429,15052], +[0,18444,17461,1389], +[1,2343,14753], +[0,14754,14758,14760,2537], +[0,4431], +"curses", +"tui", +"tput", +[0,2899,4597], +"terminfo", +[0,2323,18444], +"termcap", +[1,2343,14763], +[0,14764,14631,14765,2399], +[0,22217,3544,22218,4135,4431], +[0,2323,15208,4135,18444,15525,22220,22222,22223], +[1,2343,14767], +[0,14771,0,14772,4139], +"ansi-term", +"drawille-canvas-blessed-contrib", +"map-canvas", +[0,97,22229,1593,22230,3544,4431,4597], +[0,18444,2323,2325], +"-terminal", +[2,3127,14773], +[2,3149,7046], +"picture-tuber", +"sparkline", +[1,2343,14779], +[0,14782,14786,14787,2537], +"term-canvas", +"x256", +[0,4431,3032], +"@types/bl", +"essed", +[2,14783,14784], +[0,2899,4597,4170], +[0,18444], +[1,2343,14789], +[0,14790,14791,14792,34352], +[0,22246,2476,4453], +[0,1166,1437,1700,2089,2188,2323,4597,1906], +[0,18444,2090,1586,22249,2301,22251,22253,15795,6901,22254,4262,2325,16077,22255], +[1,2343,14794], +[0,14795,7878,14796,2487], +[0,2061,3544,4039,4431,4597], +[0,18444,4050,7293,6865], +[1,2343,14798], +[0,14799,14800,14801,2487], +[0,1462,3544,4431,4606], +[0,1429,21480,1596,2026,2061,2323,2367,2494,2504,2510,2899,3421,4597], +[0,1623,4050,3178,2280,1462,2458,2459,2361,18444,17461], +[1,2343,14803], +[0,14804,14805,14787,2399], +[0,1509,3544,4002,4431,4606], +[0,2510,2899,4170,4597], +[1,2343,14807], +[0,14808,14809,14810,4139], +[0,2541,4431,4707], +[0,1596,1700,2323,2436,2444,2447,2455,2463,2685,22280,3102,2899,4170], +[0,2323,18444,21837,4329,2278,1623,7234,7121,590], +[1,2343,14812], +[0,14813,14814,14787,2537], +[0,4597,4431,14557], +[0,2323,2899,4170,2759,16584,4278,2510,3202], +[1,2343,14816], +[0,14817,14818,14819,2537], +[0,3032,22291,3544,22292,22293,22296,4431,4597], +[0,1429,2899], +[0,18444,5614,1623,1204,1698,134], +[1,2343,14821], +[0,14822,14818,14823,34352], +[0,4431,2541,2720,1687], +[0,18444,8635,22303,22304,8622,8620,22306], +"loop", +[1,2343,14826], +[0,14827,14828,14831,2537], +[0,710,1544,4438,2061,3102,1104,4150,4151,21847], +[0,2323,2899,4342,2515,1506], +"baconjs", +"kefir", +[0,17461,1544,3000,22313,36], +[3,3736,10], +[3,3736,14], +"deferred", +"deferreds", +"future", +" control", +"flow control", +"dsl", +[2,8553,6072], +[1,2343,14842], +[0,14843,14844,14845,2537], +[0,4431,3544], +[0,2323,1192,1894,21482], +[0,18444,1585,2323], +"BN", +"Big number", +"BigNum", +"Modulo", +"Montgomery", +[1,2343,14852], +[0,14853,14854,14857,2537], +[0,1104,22324,2061,3544,4431], +[0,2272,2899,4597], +"unpipe", +"destr", +[0,18444,1623,22324,671,9654,7121], +"destroy", +[1,2343,14860], +[0,14861,14862,14863,2537], +[0,4597,21861,22331,4431,2061,3544], +[0,3421,2899,4193,1177,4039,4170,1596,22333,22334,1958,1903,1970,1900], +[0,21861,18444], +[2,1601,1851], +[1,2343,14866], +[0,14867,14870,14875,2537], +[0,1637,16136,3544,3427,4606], +"-jsdoc-theme", +[2,1365,14868], +[0,4389,4597,4387,2510], +"postgre", +"sql", +"postgresql", +"datamapper", +[0,1637,3178,14137,16918,16919,1623,18444,3561], +[1,2343,14878], +"active record", +[0,14879,14880,14881,2537], +[0,16858,3544,4606], +[0,4389,4597,4387], +[0,18444,3178,1623], +[1,2343,14883], +[0,14884,14885,14886,2523], +[0,3544,4431,20992], +[0,2272,3760,4170,4597], +[0,18444,2382,1781,2323], +[1,2343,14888], +[0,14889,14890,14891,34352], +[0,1177,2061,3544], +[0,2323,2899,4597,4170,2759,1178,22360,22363], +[0,18444,1177,2323,2656,22365,4354,4225,1501,4525,676,5284,5957,671,1932], +"mincer", +[1,2343,14895], +"eyeglass-module", +[0,14896,14897,14898,4139], +[0,2856,4597,2051,22372,4431,3544,1537,22371], +[0,2323,2899,4170,2759,1783], +[0,18444,2090,2385,4068,2323,1932], +[1,2343,14900], +[0,14901,14902,14905,2487], +[0,4207,3249,3544,22379,22382], +[0,1906,1166,2323,4597,3477], +"align", +"ansi-align", +[0,18444,7131,2687,2090,1586,3529,3181,2070,21543,4597], +[1,2343,14909], +"boxes", +"border", +[0,14910,14631,14911,2523], +[0,3544,4431], +[0,18444,19991,4237,20050,22390,22392,3053,2323], +[1,2343,14913], +[0,14843,14914,14915,2537], +[0,2323,2899,4597,4170,3697,1879], +[0,18444,2323,3033,10903,3403], +[1,2343,14917], +[0,14918,7923,14919,2537], +[0,22402,4001,21035,4431], +[0,14438,1671,4525,2323,18444,1783,5980,1932,22405,3721,4001], +[1,2343,14921], +[0,14925,14926,14928,4139], +"-stream", +"quote-stream", +[2,5706,1237], +[0,1437,2541,22410,22412,3427,7029,3545,4431], +[0,22414,3505], +[2,13888,353], +[0,18444,2156,22410,2090,1586,16410,20500,36,5576,9229,20997,20998], +[1,2343,14931], +"readFileSync", +[0,14933,14934,14935,2537], +"asset", +[0,22420,4039,4600,2541,22422,3923], +[0,2899,4597,1177,2759,22425,3349,2215,3074,22427,22428], +[0,3358,6645,1528,22430,20997,20998,20001,13755,5351,2323,18444,2193,1724,2195], +[1,2343,14941], +"array-equal", +[2,1379,1932], +"fs-tree-diff", +"heimdalljs", +[0,14945,14946,14947,2523], +[2,3192,1177], +"-lerna-changelog", +[2,3980,14943], +[0,22437,2061,1209,3544,4015,22440,4597], +[0,1177,2899,3210,4039,4170], +[0,2323,3358,22443,18444,22223], +[1,2343,14949], +[0,14950,14954,14955,34352], +[0,1104,1413,2061,3544,22449,4431], +[3,1378,10], +"ixture", +[2,14951,14952], +[0,2323,2359,2390,2447,2463,2494,18426,2544,2839,2899,22451,4170], +[0,15215,18444,16518], +[1,2343,14957], +[0,14958,14960,14963,2523], +[0,2036,3544,4002,4431], +"broccoli", +[0,4597,2323,2367,22460,22463,22465,2899,22466,4170], +[3,14953,15], +[2,14961,1289], +[0,18444,2036], +"multidep", +[1,2343,14966], +[0,14971,14972,14973,2537], +"ts-docs-gen", +"plugin-p", +[2,14968,11597], +[2,4491,14969], +[0,14557,1209,3102,4431], +[0,1429,2323], +[0,10345,18444,22475], +[1,2343,14975], +[0,14976,14977,14984,2399], +[0,1496,4207,1362,4599,3427,3923], +[0,2899,4597,2759,2541,22360,1537,22481,4603], +[2,1387,4219], +[3,14978,13], +[2,14979,181], +"bs-recipes", +"dev-ip", +"easy-", +[0,18444,1936,4068], +"easy-extender", +"eazy-logger", +[1,2343,14988], +[0,14989,14991,14993,4139], +[0,4431,3544,2633], +"resp-modifier", +[0,2323,2899,4597,2398], +"bs-snippet-injector", +[0,1671,2323,18444,22489,1936,2265,14137,2632,3178], +"-changelog", +[2,8623,14994], +[1,2343,14997], +[0,14999,15002,15003,2523], +"browser sync", +[0,8949,22495,18438,22497,22502,22379,22504,22505,22500], +"live reload", +"sync", +[0,2323,1192,1177,4039,22509,8719,1894,842,16145,442,1527,22512,91,22507,8712,22511,4523,1939,1895,1955,1652,1567], +[0,18444,2323,1017,2414], +[1,2343,15005], +[0,15025,15026,15029,34352], +"browser-pack", +[2,13843,814], +"zlib", +[2,13888,15008], +"d-pa", +"th-relative", +[2,15010,15011], +[2,2325,15012], +[2,10740,1389], +[2,14181,1617], +"defined", +"deps-sort", +"domain-browser", +"duplexer2", +"htmlescape", +"https-", +[2,15021,1389], +"ed-stream-splicer", +[2,5433,15023], +[0,4431,22518,22519], +[0,2899,2272,3188,4039,4170,4600,2215,1834,22522], +"-classic", +[2,3188,15027], +[0,18444,21195,22524,22525], +"module-deps", +"os-browserify", +"-es3", +[2,3767,15032], +"read-", +"only-stream", +[2,15034,15035], +"shasum-object", +"stream-b", +[2,15038,2345], +[2,4279,27], +"_decoder", +[2,1871,15041], +"subarg", +[2,9056,1851], +"rs-browserify", +[2,6901,15045], +"tty-browserify", +"vm-browserify", +[1,2343,15061], +"unpack", +[2,13843,15050], +"coffeeify", +"has-o", +"bject-spread", +[2,15053,15054], +[2,2565,1243], +"isstream", +[3,5747,18], +[2,3094,15058], +"seq", +[0,15062,15063,15065,2443], +[0,4431,22518], +[0,2272,2899,4170], +"commonj-esque", +[0,18444,7131,3181,2385,6521,2390], +[1,2343,15067], +[0,15068,15069,14787,2537], +[0,1149,1209,22536,4431], +[0,2206,2323,2359,2463,2447,4089,2839], +"exposify", +"mothership", +"-function-calls", +[2,14057,15072], +[1,2343,15075], +[0,15078,15079,15080,2537], +"peer-range", +[2,1382,15076], +[0,1437,2476,2267,3545,3714], +[0,1166,2694,24006,4597,1906], +[0,18444,2267,158,11807,20631,20632,3178,2632,15215,18048,20637,21881,20639,8221], +[1,2343,15082], +[0,15083,15089,14787,4139], +[0,1104,2012,2070,3544,4227,4296,4597,4606], +"leases", +[2,3340,15084], +[3,12361,13], +[2,15086,1747], +[2,9787,15087], +[0,2323,2510,2899,4170,4278], +"target", +[1,2343,15092], +[0,15093,15094,15096,2537], +[0,1144,4431,2061,1104,22555,3544,22449,1874], +[0,1906,2675,2899,4597,4170,22557,2012,192,4131,22559], +"base-x", +[0,18444,14510,22561,22562,3888,4017], +"ts-standard", +[1,2343,15099], +[0,15104,15106,15108,2537], +"base58", +"bitcoin", +"crytography", +"decode", +[0,22568,3544,4431], +"decoding", +[0,1178,1596,2012,2323,2384,2463,2899,3421,4597], +"litecoin", +[0,18444,134,1623,1936,1823], +[1,2343,15110], +[0,15111,15116,15117,34352], +[0,1664,2541,22576,3479,4431,4707], +[3,9366,12], +"d-transpile", +[2,6990,15113], +[2,15112,15114], +[0,1429,2899,4257,1906], +[0,18444,1370,3378,1161], +[1,2343,15119], +[0,15120,15121,15122,34352], +[0,2759,22584,1209,3544,4431,4606], +[0,2323,2463,2510,22588,2272,2899,4039,4597], +[0,18444,4504,2759,22590], +[1,2343,15124], +[0,15129,15131,15137,2399], +"acorn-", +[3,1200,14], +[2,15125,15126], +"acorn-jsx", +[0,2541,2437,4431], +"regexpu-core", +[0,2323,4384,2447], +[2,10740,7227], +[3,5583,16], +[2,15133,4047], +"262-stream", +[2,1973,15135], +[0,2437,18444,3101,7234], +"transpil", +[2,15138,5218], +[3,5221,11], +"esnext", +[1,2343,15143], +[0,15144,15145,15146,2399], +[0,1144,2765,22602,3544,4431], +[0,2323,4597], +[0,5982,5130,18444,2765,2907,8791,4386,4384,6969,1973,5472,2275], +[1,2343,15150], +"compatible", +"uint8array", +[0,15151,15152,15153,2537], +[0,2292,3544,4431,4435], +[0,4278,17468,4597], +[0,18444,2292,5284,5286,676,1501,590,2649,671,6892,4354,16790], +[1,2343,15155], +[0,15156,15157,14787,4139], +[0,1209,3181,3544,22331,4431], +[0,2323,2272,2899,4170,4597], +[1,2343,15161], +"-build", +[2,640,15159], +[0,15162,15163,15165,2523], +[0,1699,1707,2820,3544,4431], +[0,1177,1889,2323,2899,4170,4597], +"prebuildify", +[0,18444,2323,1781], +[1,2343,15167], +[0,15168,15169,15170,2523], +[0,695,3427,3544,4002,4431,4606], +[0,2272,2899,4170,4597], +[0,18444,2323,695], +[1,2343,15172], +[0,15173,15176,15177,4139], +[0,1437,1676,4597,4438,2061,3023,3923], +"built-in", +"bundled", +[0,2899,4193], +[0,18444,3000], +[1,2343,15179], +[0,15180,15181,15183,2523], +[0,22639,814,2061,3170,2107,22640,22638], +[0,2899,4193,1177,3752,22643,1953,1954,1938,1958,1903,1970], +"flexbox", +[0,17461,2323,3209,3001,9711], +[1,2343,15185], +[0,15186,15188,2514,2399], +[0,1462,2541,3427,3923,22649,4606], +[2,5581,10659], +[0,1429,2899,4597,1177,2759,2515,22360,2510,22651,22481,22428], +[1,2343,15190], +[0,15191,15195,15196,2537], +[0,16862,4431,2541], +"@sto", +"plight/yaml", +[2,15192,15193], +[0,1429,2323,2899], +[0,18444,3178,6707,16918,15215,1936,16862], +"mergician", +[1,2343,15199], +[0,15200,14729,15202,2523], +[0,1664,2020,2476,2899,4351], +"warn-if-update-available", +[0,18444,2899,1973,5472,2275,5130,8791,6969,5982,2907,4386,4384], +[2,4869,7059], +"err", +[1,2343,15206], +[0,15207,15209,15210,2399], +[0,22667,2070,3544], +"bump", +[0,1429,2323,2899,4597,1177,3203,21470], +[0,2323,18444,2301,22254], +[1,2343,15212], +[0,15213,14631,15214,2523], +[0,22675,1698,22676,3544,4431,4606], +[0,18444,1098,12074,10650,22676], +"compress", +[1,2343,15217], +[0,15218,15219,15224,2443], +[0,1512,2323,3363], +[0,1506,2447,2463,20047,2272,4170], +"dtrace-provider", +"mv", +[3,2854,14], +[2,4099,15222], +[0,2323,3363,22684,36,22687,20120,2282,17461,18444], +"ben", +[1,2343,15228], +"log4j", +[0,15229,15230,15231,2399], +[0,1209,4431,2061,1104,3357,3544,3330], +[0,2323,2899,4597,4170,2479], +[0,18444,22005,2323,9044,16237,22695,22696,22011,22699,15844], +"streamsearch", +[1,2343,15235], +"@mscdex/eslint-config", +[0,15238,15239,15240,2537], +"uploads", +[3,3253,9], +[0,18438,1437,22706], +[0,1166,3477,91,4597,1906], +[0,2323,1932,2474,6731], +[1,2343,15242], +[0,15246,15248,14787,34352], +"lxiv", +"hrtime", +[2,3715,15244], +[0,1437,4431,2061,3544], +"webrtc", +[0,1906,2323,2899,4170,4430,2759,1596,2012,3202], +[1,2343,15250], +[0,15251,15252,15254,34352], +[0,2061,3544,3616,4606], +[0,3421,2899,4193,4597,1177,3561,3752,2510], +"converter", +[0,18444,3561,22147,1623], +[1,2343,15256], +[0,15257,15259,15263,2537], +[0,4358], +"@bcoe/v8-coverage", +[0,2899,33479,30889,4597], +"ground-child", +[2,14739,15260], +"v8-to-istanbul", +[0,22726,1509,21195,1676,22729,6639,6521,22223,18444,1936,22727,22728,2385,5284,7121], +[2,1432,8746], +[1,2343,15268], +"v8", +"profiler", +[0,15269,15270,15271,2523], +[0,2012,2720,3067], +[0,1145,1177,22735,2720,2899,3752,4603], +[0,18444,3741], +[3,5738,22], +[2,15272,2528], +[1,2343,15280], +"@types/mri", +[2,13307,2831], +[2,4049,668], +[3,207,8], +"madr", +[0,15281,15282,15283,2399], +[0,2541,3427,3909,4431,4606], +[0,2510], +[0,18444,89,1219,353,8535,1283,5354,6624,22743,22746,7234], +[1,2343,15285], +[0,15291,15293,15295,2443], +"@fake", +"r-js/faker", +[2,15286,15287], +[3,1909,17], +[2,15289,91], +[0,2012,3357,705,4431,4597], +" cache", +[0,2323,2530,2359], +"multiple", +[0,18444,21004,22753], +[1,2343,15297], +[0,0,15298,14787,2399], +[0,2323,2510,3102,2899,1894,4170,4597], +[1,2343,15302], +"es-de", +"fine", +[0,15303,15306,15311,34352], +[0,4874,18438,4748,22762,17909], +"fine-property", +[2,15300,15304], +[0,2899,4597,4170,4474,19544,91,1537], +"-apply-helpers", +[2,2183,7083], +"-length", +[2,3609,15309], +[0,18444,4068], +"gopd", +[1,2343,15314], +[0,15315,15316,15317,4139], +[0,2476,22771,22772,22774,22776,4597,22778], +[0,1166,3477,1906], +[0,18444,22781,22782,22783,3428,6707,15525,22220,2325,22784,2947,14932,22785], +"camel", +"-case", +"camel-case", +"case", +"hyphen", +"separator", +"pascalcase", +[1,2343,15327], +"pascal-case", +[0,14910,15328,15329,2537], +[0,2012,2390,2498,2899,4597], +[0,18444,22781,22783,15525,4068,14932], +[1,2343,15331], +[0,15332,15333,15334,2523], +[0,1437,1573,1615,1664,22795,1874,2061,2070,8944,22798,3505,3544,4002,4039,4597], +[0,2323,2510,22778], +[0,18444,4329,2278,1623,7234,7121,590,22801,4227,11939,12938,4070], +[1,2343,15336], +[0,15337,15338,15339,2487], +[0,3527,4294,4002,3544,3028,4606], +[0,2323,2278,2899,4597,1177,4039,21315,3561,18426,3342,1165,2482,21688,2510,1938,1881], +[0,18444,2278,2323], +"assert-", +"rejects", +[2,15340,15341], +[1,2343,15347], +"graphic", +"pixman", +"cairo", +[0,15348,0,15349,2523], +[0,1149,2541,3427,7029,4247,4431], +[0,18444,22813,2090,1586,16410,20500,36,5576,9229,20997,20998], +[1,2343,15351], +[0,15352,15353,15354,2523], +[0,1437,2061,3067,3544,4431,4484], +[0,22821,22507,5087,22823,4874,18435,1009,1011,1596,1177,1895,1939,2323,1192,1894,4468,4474,91,4597], +[0,18444,2323,4166,1523], +" sensitive", +[2,15321,15355], +[1,2343,15358], +[0,15359,15360,15363,2399], +[0,22829,1437,2061,2476,2553,3714], +[0,1166,3477,4597,1906], +"slimerjs", +"scraping", +[0,18444,2098,2090,4202,3073,22832,3430,1676,16518,21665], +[1,2343,15365], +[0,15366,15367,15368,2537], +[0,22837,22841,1082,1573,1623,22843,20949,2215,4227,21732,4431], +[0,1367,1177,1889,2022,2323,2367,2419,2450,2455,22845,2759,22481,22848,2899,3427,4039,4597], +[0,18444,2323,22850,4070], +[1,2343,15372], +"loupe", +"pathval", +[0,15375,15360,15377,2537], +"check-error", +[3,6470,15], +[0,53,2476,22857], +[2,5474,13278], +[0,18444,4301,7293,6865,4050,1676,6782,7201,3073,6807,676,5284,5286,6892,2003], +[1,2343,15379], +[0,15380,14805,15381,2537], +[0,22863,3023,3544,4002,4333,4431,4606], +[0,2323,4333,1623,7121,18444,22223], +[1,2343,15383], +[0,15384,15386,15387,2537], +[0,3544,4360], +"chai-plugin", +[0,2070,2323,22871,2899,22872,4597,1906], +[0,18444,1017,45,8221,18048,22074,22075,2873,1179,1623,2278,695,4333,5376,134,1936,13814,22874,22875,3257], +[1,2343,15389], +[0,15390,15391,15392,2523], +[0,3028,3544,4361], +[0,48,53,87,94,1166,1596,1610,1701,3421,1894,4597,1906], +[0,18444,3178,8221,4361], +"strategy", +[1,2343,15395], +[0,15396,15397,15399,2537], +[0,1448,2061,3544,4597], +[0,2099,2323,2430,2899,3758,4151,4193], +"@debitoor/eslint-config-debitoor", +[0,18444,8221,1017,22074], +"objects", +"Subset", +[2,6792,15401], +"like", +[1,2343,15406], +"superset", +[0,15407,15408,15409,34352], +[0,2476,1209], +[0,1166,2383,4597,1906], +[0,18444,1209,4545,1283,7234,1936,8924,22894,22746], +[1,2343,15412], +"yoctodelay", +[0,15413,15414,15415,2537], +[0,1104,2061,4430,4597], +[0,22507,4874,22900,18438,20959,22821,4039,2323,2463,91], +[0,18444,91,5284,22902], +[1,2343,15417], +[0,15422,15425,15429,34352], +"docpress", +"git-u", +"pdate-ghpages", +[2,15419,15420], +[0,22821,1104,2061,3102,3544,4430], +"gulp-ava", +[2,2530,3020], +[0,22909,4874,22900,2323,2367,2529,4487,91], +"mersenne", +"address", +"dice", +[0,2323,91,1932,4799,18444,17461,4487,9654,671], +[1,2343,15431], +[0,15432,15433,15434,2537], +[0,4597,4431,4600,4227,1104,3544], +[0,2323,4039,22920,91,4874,2367,2409,18438,2479,3159,18435,18440,2510,22919], +[0,91,18444,22924,4799,11540,7234,4643,5197], +[1,2343,15440], +"param-case", +"kebab-case", +"header-", +"header-case", +[0,15441,15442,14787,34352], +[0,22639,2757,4431,4535,22930,22640,4100,2053,22933,4606], +[0,4389,4597,1177,1894,22941,4421,3696,22939,1907,1982,1895,1955,22937], +[1,2343,15453], +"c12", +"convert-", +"gitmoji", +[2,15445,15446], +[2,3310,4009], +"ofetch", +"pkg-types", +"scule", +"std-env", +[0,15454,12112,15455,2523], +[0,2541,3427,22946], +[0,17507,1623,18444], +[1,2343,15459], +"dogstatsd", +"@kurkle/color", +[0,15479,15485,15489,2523], +[2,812,14510], +"@types/o", +"ffscreencanvas", +[2,15461,15462], +"js-adapter-luxon", +[2,9816,15464], +[3,15465,16], +[2,15466,3220], +"chartjs-", +[2,15468,11017], +"chartjs", +[2,1884,15470], +[3,2912,13], +"launcher", +[2,5695,15473], +[2,15472,15474], +[3,4071,15], +"wc3", +[2,15476,15477], +[0,2070,2367,3544,4431,4597], +"charts", +"graphs", +"datadog", +"telegraf", +"native-run", +[0,2012,4600,2323,2447,2463,2530,2413,2361,2498,2450,2272], +[2,1448,11245], +"domhandler", +"domutils", +[0,18444,2319,2536], +"-sniffer", +[2,9254,15490], +"-tree-adapter", +[2,2653,15492], +[2,1868,15493], +[2,3493,15494], +"parse5-", +"parser-", +[2,15497,3101], +[2,15496,15498], +"whatwg-", +"mimetype", +[2,15500,15501], +[1,2343,15511], +"@imgix/js-core", +[2,7724,2220], +"hatwg-mimetype", +[2,7820,15506], +[3,1926,15], +"xpect-type", +[2,15508,15509], +[0,15513,15515,15516,2537], +[3,2654,10], +[0,2070,2051,22959,2419,4431,4600,2367,2012,3544], +"scraper", +[0,3421,2323,2899,4597,1596,22961,2463,2384,2494,1178,22963], +[0,18444,1936,3888,1623,6707,5614], +[1,2343,15518], +[0,15519,15520,2514,2487], +[0,22970,22971,22972,1437,1672,2061,22639,22640,22974,22979,22983,3067,3183,8949,3427,4002,4431,4597], +[0,1400,1596,2012,2759,22481,2272,22985,2899,4039,4170], +[1,2343,15522], +[0,15523,15524,15527,4139], +[0,3768,4430,4431,4597,4600,4753,22990], +[0,2899,4255,1241], +"version", +[2,813,15525], +[0,2323,18444,22990,22993,2056,7046,4597,2542], +[1,2343,15529], +[0,15530,15531,15532,2537], +[0,1104,15642,1457,2061,2200,3427,3507,3544,3923,4207,4597,22778], +[0,1596,2759,2899,3202,3752,4039,4170,4193,4278,4294,1906], +[0,2323,2282,18444], +"@better-scroll/core", +"add-", +"listener", +[2,12598,15535], +[2,1752,15536], +[2,15534,15537], +"-font", +[2,1456,15539], +[2,1625,7521], +[1,2343,15546], +"-converter", +[2,2275,15543], +[2,1625,15544], +[0,15552,0,15563,2537], +"dom-closest", +"dom-lib", +[3,1817,15], +[2,15549,2013], +"htmlhint", +[0,3150,4597,4430,2924,2541], +"insert-css", +"jsbarcode", +"jsonlint", +"jsonlint-mod", +"mutat", +"ionobserver-shim", +[2,15557,15558], +[2,3767,1289], +"-delta-to-html", +[2,3771,15561], +[0,18444,2924], +[1,2343,15576], +"eautiful-dnd", +[2,12242,15565], +"demirror2", +[2,3808,15567], +"asy-crop", +[2,11352,15569], +"lightbox", +[2,3608,15571], +[2,3838,15572], +"azy-load", +[2,12432,15574], +[0,15577,15581,15583,4139], +[0,1544,21847,2541,2756,3357,3445,23009,4150,4151,4431,4438,2282], +"react-quill", +"rmc-feedback", +"smooth-scroll-into-view-if-needed", +[0,2899,4342], +[3,5835,27], +[0,18444,22313,1544,3000], +"to-to-assign", +[2,15582,15584], +"demirror", +[2,4860,15586], +"lement-", +[1,2343,15593], +"resize-event", +[2,15588,15590], +[2,4861,15591], +[0,15603,15617,15620,2523], +"@types/faker", +"sert-css", +[2,9721,15595], +"barcode", +[2,7635,15597], +[3,7895,12], +[2,15599,2631], +"rcode.react", +[2,11304,15601], +[0,2188,2476,4597,22990], +"beautiful-dnd", +[2,4881,15604], +[2,4881,2741], +[2,4881,11167], +[2,6324,1456], +[2,5098,15608], +[3,15609,15], +[2,15610,7262], +[2,15610,89], +[2,15610,10631], +"tinker", +[2,1876,15614], +[2,6941,3841], +[0,1166,17279,22706,2323,3477,23017,22778,1906], +"mark-twain", +"rc-queue-anim", +[0,18444,2056,12666,1137,15215,1536,2090], +"croll-anim", +[2,11229,15621], +[3,11371,21], +[2,15623,1524], +"react-su", +"blime-video", +[2,15625,15626], +[1,2343,15631], +"scrollama", +"values.js", +[0,15636,15638,15639,2523], +"vfile-message", +"-warnings-plugin", +[2,7131,15633], +[2,4670,15634], +[0,22058,1149,4597,4431,3181,4545,22057,22054], +[3,1456,9], +[0,2323,2899,1177,4039,22064,23026,2381,3159,4599,2425,23025,22066,22068,22062], +[0,18444,22057,22074,22075], +[1,2343,15641], +[0,15646,15647,15649,2443], +"anymatch", +"braces", +"is-b", +"@paulmillr/jsbt", +[0,1792], +[0,1166,3477,4481,1906], +"readdirp", +[0,1896,4990,15008,16518,23034,4202,1871,1398], +[1,2343,15651], +[0,15652,15653,15654,2537], +[0,23040,23041,23043,23045,3984,23051,23054,3988,10630,11380,23059,23065,23070,23075,23078,23080,23082,23085,23092,23096,23098,23103,23110,23113,23118,23121,23123,13240,23126,23128,23133,23136,23139,23141,23143,15043,4351,23145,23149], +[0,811,8850,816,10615,1703,23155,4042,4255,4389,4400], +[0,1783,1745,1739,9591,13729,4354,23158,9654,671,19269,2554,3984,4549], +[1,2343,15657], +"ci", +[0,0,15660,15661,2399], +"continuous", +[2,15674,15682], +[0,23163,23164,2228,18555,2253,2256,2273,23165,2281,2283,2293,23167,23169], +[0,4453,7597], +[1,2343,15683], +[3,6217,21], +[2,15663,4779], +[3,169,22], +"ntion", +[2,15665,15666], +[3,169,21], +"inimap", +[2,15668,15669], +[3,116,24], +[2,15671,14745], +[3,164,21], +[3,5276,15], +"anguage", +[2,15673,15675], +[3,157,21], +[2,15677,5204], +[3,148,22], +"de-block", +[2,15679,15680], +"imple-access", +[0,15688,15708,15709,4139], +"tml-embed", +[2,15677,15684], +"ge-break", +[2,172,15686], +[0,3183,23175,4227,4720,4535], +"heme-lark", +[2,178,15689], +"ord-count", +[2,6197,15691], +[2,15698,15725,186], +"how-blocks", +[2,15663,15694], +[3,15685,25], +[2,15696,4231], +[3,10883,21], +"arkdown-gfm", +[2,15668,15699], +[3,175,22], +"move-format", +[2,15701,15702], +"ource-", +[2,15704,6110], +[2,15663,15705], +"oriz", +[0,8648,1168,1195,1282,1317,1429,23177,1540,1719,1787,16256,16257,1177,1895,1924,1926,2151,2228,13831,2240,2247,2253,2256,2258,23178,2281,2283,2314,17568,2675,16021,2990,2899,3211,3257,3421,1894,4135,4193,91,4545,2924,4681], +[0,2036,3257,1283,1936], +"ontal-line", +[2,15707,15710], +[2,15677,15711], +[3,6164,21], +[2,15713,12426], +"multi-root", +[2,6157,15715], +"strict", +"ed-editing", +[2,15717,15718], +[2,15701,15719], +"peci", +"al-characters", +[2,15721,15722], +[2,15663,15723], +"plugin-u", +"nano-jsx", +[1,2343,15729], +"solid-js", +[0,15730,15731,6060,2523], +[0,2812,23184,1366,6714,2607,8340,17693,23185,8336,8316,23187,23188,8338,23189,23190,8349,23192,23193], +[0,620,1501,2710,8363,23196,2036], +[1,2343,15733], +[0,15734,15735,15736,2487], +[0,15507,4874,9241,18089,15502,4729], +[0,23203,23205,91,1984,9750], +[0,2832,965,1388,5317,11513,5122,4963,1936,7102,12616], +[1,2343,15738], +[0,0,8134,15739,2537], +[0,6914,4354,13735,6793,2100,7210,200,6876,6478,3729,1138,7058,7233,10446,7128,3183,3460], +[1,2343,15741], +[0,0,15746,15748,2537], +"@chrisblossom/eslint-config", +[3,14731,11], +"-pkg-up", +[2,15743,15744], +[0,5517,13614,23237,26398,19325,1159,1593,9254,1177,23225,2708,3410,3421,4103,4389], +"temp-sandbox", +[0,7263,2568,7031,6951,6422,970,1593,6789], +[1,2343,15750], +[0,0,15751,2514,2523], +[0,2272,2839,1209,4389], +[1,2343,15753], +[0,15754,15755,15756,2399], +[0,14038], +[0,5517,13614,23237,23239,23241,19325,1158,1159,1177,2011,2708,3206,3410,3421,4103,4389], +[0,6914,6959,6780,6889,6888,6914,3205,941,5284,5286], +[2,5933,1469], +[1,2343,15762], +"uncache", +"uncached", +"unrequire", +[0,15763,15764,15765,4139], +[0,12396,9315,23247,23249,23250,23253,3140,3493,23254,4555,12449,23257,23258], +[0,4874,23262,1414,2581,2588,3137,1894,23264,3985,3998,4505,91,18002,1906], +[0,23267,2587,1936,23266,6435,614,1644,3972], +[1,2343,15772], +"opts", +"opt", +"parseopt", +"argsparse", +"optparse", +[0,15777,15778,15779,2537], +"complete", +"autocomplete", +[3,15774,11], +[2,15775,6600], +[0,12396,23247,23254], +[0,4874,23262,23274,1414,1699,23276,2581,2588,2620,23279,1894,3985,3998,4505,91,18002,4555,1906], +[0,4050,23267,2587,1936,6953,2574,6435,614,23266,4741], +[1,2343,15781], +[0,15782,15783,15784,34352], +[0,12396,9315,23286,23288,13839,23289,23291,9396,2584,23292,16870,3746,4233,4555,23258], +[0,4874,1414,2588,1894,3985,3998,4505,91,18002,1906], +[0,1623,23267,2587,1936,3529,6421,3766,23296,3585,1631,23266,6435,614], +[1,2343,15787], +[2,1861,7253], +[0,15789,15790,15791,2523], +"timers-ext", +[0,1006,19877,12396,23288,23289,23302,23308,23292,23310,23312,23314,3746,4233,4309,23254,23258], +[0,4874,15128,1414,23316,12412,2007,2588,3137,12127,3140,12133,1894,3985,3998,4505,91,4555,1906], +[0,1444,5286,6742,23267,2587,1936,5284,1219,9102,3958,353,23266,6435,614], +"medikoo", +[2,1884,15792], +"list-", +"updated", +"list-updated", +[2,10617,15796], +[3,2289,14], +"-cc-changelog", +[2,4024,15799], +[2,15798,15800], +"prettier-e", +"lastic", +[2,15802,15803], +"tad", +[1,2343,15807], +[0,15808,15809,15810,2487], +[0,12396,9315,23322,23288,23292,23253,3140,3746,4233,4292,23258], +[0,4874,1414,2588,1894,3985,3998,4505,91,1906], +[0,23267,2587,1936,4141,1646,23324,23266,6435,614], +[1,2343,15812], +[0,15816,15817,15818,2537], +"toggle", +"show", +"hide", +[0,1006,12396,9315,23288,23289,23308,23292,23310,23312,23314,3746,4233,4309,23254,15632], +[0,4874,4880,4883,1414,668,12415,2588,1894,89,3824,3985,3998,23330,4505,91,1906], +[0,23267,2587,1936,3698,89,23332,3709,23266,6435,614,188], +[1,2343,15820], +[0,15821,0,15823,2537], +[0,12396], +"varlock", +[0,1563,2587,23267,1936,4141,1871,1646,2585,23266,614,6435], +[1,2343,15825], +[0,15827,15809,15828,2537], +"string-length", +[0,12396,9315,12421,23344], +[0,23266,2587,23267,614,6435,1936,1871,1563,2585,9547], +[1,2343,15830], +[0,15831,15832,15834,2537], +[0,12396,23288,23352,3746,4233], +[0,4874,15128,1414,23316,23356,12412,1894,3985,3998,23359,4481,4505,91,1906], +"expresso", +[0,965,14839,23267,2587,1936,23362,3958,23266,6435,614,23361,4607], +[1,2343,15836], +[0,15837,15839,2514,4139], +[0,4647,2036], +"fast-text-table", +[0,3421,2899,1177,4039,4342,1948], +"256-colors", +[2,1105,15840], +"git-re", +"git-rev", +"growl", +[1,2343,15848], +"tables", +"tabular", +[0,0,15849,15850,2523], +[0,15990,2228,2240,2314,14352,2759,2835,1209,14529,3774,3954,23375,4019,23376], +[0,1871,18089,18944,1936,10368,15103,3656], +[1,2343,15852], +[0,15855,15856,2514,2537], +[2,8737,4522], +[2,2968,14994], +[0,3263], +[0,4167,4384], +[1,2343,15858], +[0,0,0,15859,2537], +[0,2026,1965,11988,5995,23389,23391,23397,23400,23404,23407,23410,23411,23412,23413,23414,23415,23416,23417], +[1,2343,15861], +[0,0,15863,2514,34352], +"truncate", +[0,4361,4039,1894,1420,11518,53,23423,5874], +"ellipsis", +[1,2343,15866], +[0,0,15867,2514,2443], +[0,94,87,14128,14041,1175,48,53,1178,1193,1745,1177,1935,1938,1939,1192,2774], +[1,2343,15870], +"cardinal", +[0,15881,15885,15888,2523], +"hyperlinker", +[2,689,13008], +[2,2055,2873], +"object-t", +"reeify", +[2,15874,15875], +[2,689,7152], +"natural-", +"orderby", +[2,15878,15879], +[0,23432,1362,27433,15838,23434,23436,23438,23439,23440,23441,2822,23444,3170,19445,3220,3222,3416,3527,15245,4294,4435,23445,23446], +"-prompt", +[2,6875,15882], +[3,4351,9], +[0,23450,13414,4856,8780,7637,8778,6503,4874,21623,6513,23448,1414,1429,1448,6323,1177,23453,23456,2675,2990,2899,4193,4474,91], +"hyperlinks", +[2,15884,15886], +[0,5351,5353,6354,5130,2596], +[3,6519,10], +"ip-ansi", +[2,15889,15890], +"nsi-styles", +[2,9165,15892], +[3,9359,12], +[1,2343,15898], +"ct-stack", +[2,15894,15896], +[0,15899,15900,2514,4139], +[0,23462], +[0,1362,1389,1391,1537,1177,2228,2236,2239,2277,2281,2283,2291,23466,2307,2036,2276,4085,23469,4171,4193,16584,23471,4535], +[1,2343,15902], +[0,0,15912,15913,2537], +"@yarnpkg/core", +"@yarnpkg/", +"fslib", +[2,15904,15905], +[3,1920,15], +"rca", +[2,15907,15908], +"multi-input", +[2,4049,15910], +[0,1623,1700,2070,19745,2832,2899,1177,1209,4042,4170,4072,1462,1481,1525,2036,91,2665,23482,6503,18059,23483,13388,23476,23479,1954,8850,23480,1938,1958,1903,811,1011,816,1009], +[0,5342,5341], +[1,2343,15915], +[0,15916,0,2514,2537], +[0,3263,1326], +"good-listener", +"tiny-emitter", +[1,2343,15920], +[0,6263,0,15922,2523], +"cut", +[0,2602,7426], +[1,2343,15924], +[0,0,15925,15927,2537], +[0,1501,620], +"is64bit", +[0,6731], +"paste", +"copy-paste", +"pasteboard", +"pbcopy", +"xclip", +"xsel", +[1,2343,15935], +[0,15936,15937,15938,2523], +[0,3368,3188], +[0,4535,2832,23509,4039], +[0,3257,1283], +[1,2343,15940], +[0,15941,15942,10570,2399], +[0,3847], +[0,53,61,87,90,94,1429,1596,1603,1177,2899,3421,3697,3744,89,4039,4042,4045,4055,4067,4073], +[1,2343,15944], +[0,15945,15946,2514,4139], +[0,1437,4135,2151,1525,23520,3762,4232], +[0,1192,1177,4039,3363,4468,4474,4508,91,5087,4874,5245,5254,4864,1939,1938,13418,1011,23523,1009], +[1,2343,15948], +[0,0,15949,15950,2523], +[0,23528,23531,4865,13204,4874,29891,7677,1138,14736,30932,668,1177,2070,2832,3244,3377,30794,20085,1894,23535,91,4548,23538,1984,23539,4729,4763], +[0,2611,5122,1896,27,13527,5130,38,23542,23543,23544,23545,21444,17218,13573,6710], +[2,976,2942], +[1,2343,15954], +[2,9753,6072], +[0,15957,6538,15958,2487], +"progress bar", +"@exodus/bytes", +[0,3084], +[0,3358,2195,17977,17978], +[1,2343,15961], +[2,11941,5258], +[0,15963,13640,15965,2487], +"coro", +[0,1537,3188,4039,4135,4562,4707,23559], +"coroutine", +[0,23561,23562,23563,23564,3378], +[1,2343,15967], +[0,15968,15969,15970,2487], +[0,15487,2654], +[0,192,5467,19438,442,8862,811,816,10615,10817,23572,11085,23573,4874,17214,32818,7677,1177,1955,10964,1978,2203,2633,2675,17221,2832,2990,3401,3541,1894,23535,4042,4201,4474,91,4523,1984], +[0,2616,1936,965,57,2654,23578], +[1,2343,15972], +[0,0,15973,15974,34352], +[0,4874,1414,23276,2577,2584,1894,3985,3998,4505,91,4548,1906], +[0,23584,11512,1936,1213,3205,10381,12616,7102], +[1,2343,15976], +[0,15977,15978,15979,2537], +[0,15956], +[0,23591,1177,2203], +[0,9254,1936], +"ignore-walk", +[1,2343,15982], +[0,0,15983,15986,2523], +[0,192,5467,5366,23597,5087,4874,1317,18089,1177,1895,1938,23598,2591,2675,1894,4257,4468,4483,4494,91,4523], +"teeny-request", +"urlgrey", +[0,1936,23601,23603,23605,18089,23606,23608], +[1,2343,15989], +[2,10988,4504], +[0,0,15991,15992,2443], +"codecov.io", +[0,23613,1414,1596,4042,4533], +[0,1936,1867,10368,23615,15103,18089], +[1,2343,15994], +[0,15995,16007,16010,2523], +[0,3493,2635], +"mirror/lint", +[2,13183,15996], +[3,15997,12], +[2,15998,6624], +[2,15998,6649], +[3,16000,13], +[2,16001,10190], +[2,15998,8891], +[3,15997,13], +[2,16004,15675], +[2,15998,15774], +[0,1700,1192,2675,3144,1622,1177,1701,2924,1854,3692,1894,1610,48,1193,2036,53,2990,3400,23621,192,4257,23623,87,2651,1938,1895,5467,16405], +"buildhelper", +[2,15998,16008], +[0,2924,1936,1194], +[1,2343,16012], +[0,16013,16014,16016,2523], +[0,15320,1462,1525,2591,15436,23631,4535], +[0,2228,2236,2281,2291,3524,2907], +[2,10697,1592], +[0,200,15215,23634,1623,1936,2265,5284,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,23637,2280], +[1,2343,16018], +[0,16019,16020,16023,2537], +[0,15320,1462,1525,18089,15436,23631,4072], +[0,192,11893,811,8850,816,10615,23643,23648,1177,1903,2675,2742,1192,2780,2990,4042,23652,1983], +"jison", +[2,5249,23751], +[0,200,15215,23634,1623,1936,2265,5284,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,4072,23637,2280], +[1,2343,16025], +[0,16026,16027,16028,34352], +[0,3524], +[0,4389,4255,4387,3524], +[0,1936,2636,3520,3521,6710], +[1,2343,16030], +[0,16031,16032,16033,2537], +[0,15487,2616,3872,4309], +[0,192,5467,19438,19181,442,811,816,10615,10817,23572,5366,4874,4880,4883,17214,32818,7677,1317,1177,1955,10964,1978,2203,2675,2990,3541,3698,23535,89,3824,4042,4201,4474,91,4523,1984], +[0,2639,1936,89,57,965], +[1,2343,16035], +[0,0,16036,16037,2523], +[0,1166,1448,1906], +[0,1936,12075,2640,11513,3392,7102,12616,23670,23674], +[1,2343,16039], +[0,0,16040,16042,2399], +[0,2675,2742,2297,4484,1177,4039,4042,1894,1596,3536,91,3400,2766,3720,2898,23689,2886,23687,19965,13207,2923,23681,23683,2881,23679,6059,23686], +"wcwidth", +[0,12197,23691,1424,1936,965,158,13814,8221], +[1,2343,16044], +[0,16045,0,16046,2523], +[0,23696,1699,1754,2654,23699], +[0,1936,202,2585,18641,19096,15253], +[1,2343,16048], +[0,16049,0,16050,2523], +[0,23708,23709,1091,2070,2929,3183,3742,4135], +[0,1936,671,1155,2650], +[1,2343,16052], +[0,16054,16055,16058,34352], +"array-back", +[0,23736,2635,1209,3716,4388], +[0,192,5467,4874,1610,1622,1628,1652,21468,1177,17589,2629,2675,1192,2990,3177,3400,1894,3754,23738,3786,4039,4257,4307,91,2924,4677,23742], +"find-replace", +"typical", +[0,2924,1932,1936,2651], +[1,2343,16060], +[0,16061,16062,16063,2537], +[0,16022,1525,1595,3692], +[0,442,19344,23339,6503,4874,34737,1414,1637,1177,23753,1938,32525,27790,2022,2203,2899,3561,3759,23631,4039,23754,4361,4072,91,4523,22946], +[0,3692,23757,1936,23760,2632], +[2,1437,2324], +"table-", +"table-layout", +[1,2343,16068], +[0,16069,16070,16071,2523], +[0,18087,15487,15488,18089], +[0,442,4874,7677,1177,1895,1953,1982,2203,1894,4483,91,4523,1984], +[0,1936,57,7046,6523,965,23767,6084,16179], +[1,2343,16073], +[0,16074,16075,16076,2487], +[0,1704,2713,20099,4266,23775], +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421], +[0,27,1851], +"cached", +"cachedir", +"find-n", +"ode-", +"ode-modules", +[2,16079,16081], +"is-u", +[1,2343,16086], +"is-utf8", +[0,16093,16097,2514,2399], +[3,549,23], +[2,16087,1172], +[2,12772,8532], +[2,1652,16089], +"-reporters", +[2,11086,16091], +[0,2017,23783,2131], +[3,1566,12], +" changelog", +[2,16094,16095], +[0,4729,3421,23785,1149,2899,4135,2025,4218,1537,1159,4220], +[1,2343,16099], +[0,16100,16101,16102,2523], +[0,23791,1676], +[0,5245,5087,4874,1151,1192,4468,91,2658,2190], +[0,27,2658,6652,4575], +[1,2343,16104], +[0,16105,16106,16118,2537], +[0,10406,1676,2659,2743,2747,3170], +[0,192,5467,442,5245,5601,6494,19386,5087,8778,4874,9240,9241,1364,1177,1895,1955,2026,2182,2203,2675,1192,2990,23800,3445,5561,20085,1894,4342,4468,91,4523,4729], +"es2015-tag", +"es6-tag", +"heredoc", +"indents", +"literal", +"multiline", +"oneline", +"single", +"singleline", +"strings", +"tagged", +[0,17179,2658,2663,27,2671,1544,2026,2078,23802,23803,1387,2323,2256,4699,4729,1594], +[1,2343,16120], +[0,16121,16122,16124,2537], +[0,2591,3171,1437,23808,23809,3456,3183,4566,1304,2659,3560,23811,2623], +[0,23813,4384,1177,2026,705,23816], +"observe", +[0,200,1523,2947,27,2671,2665,23818,36], +[1,2343,16126], +[0,0,16127,16129,2537], +[0,4493,2675,2899,1177,4170,4474,1894,442,1529,91,4874,2990,19193,6503,16954,192,4257,19335,4523,1951,1895,1955,5467], +"on-headers", +[0,27,1544,4967,6622,2026], +"compressible", +[1,2343,16132], +[0,0,16133,16134,4139], +[0,4864,5087,23829,1009,1011,1177,1883,1938,2151,1192,3117,4468,4473,4474,91], +[0,202,27,18413,23831,23832,6622,5281], +[1,2343,16137], +"buffer-from", +[0,0,0,16138,2537], +[0,2671,23837], +[1,2343,16140], +[0,16143,16147,16153,2537], +"-command", +[2,1614,16141], +[0,1676,23791], +"@hirez_io/observer-spy", +"@swc/jest", +[3,7749,12], +[0,1192,2658,4468,2190,91,5087,4874,1154,5245,1151,23843], +"-quote", +[2,16146,16148], +[2,1596,4845], +"ctrlc-wrapper", +[2,32524,2994], +[0,2671,2658,6652,4575], +"instance", +[1,2343,16156], +[0,0,0,16157,2399], +[0,3358,582,3697], +[1,2343,16161], +"bash", +"sh", +[0,16162,9264,16163,2443], +[0,16136,15019,4431], +[0,3101,27,4714,705,3038,3689,10074,6865,6704,21360], +[1,2343,16165], +[0,0,16169,16170,2523], +"cson", +"hjson", +"x2js", +[0,6061,21120,6063,1570,1177,1895,23860,1894,4042,4131,4389], +[0,23862,590,1623,1420], +"fig", +"node-config", +[1,2343,16175], +"config-node", +[0,0,10435,16176,2523], +[0,23868,23869,23870,4545,23872,23874,23875,23876,3547,23877,23878,23879,23881,23883], +[1,2343,16178], +[0,16180,16182,16183,2537], +"atom", +[0,23888,1676,23891,23894,23897,3257], +"atomically", +[0,1149,1575,1177,1895,1903,1938,1954,1955,1958,1970,2026,2675,2990,2899,3421,1894,4170,4193,4745,4342], +[0,1283,2679,6728], +"xdg-basedir", +[1,2343,16187], +"prefer", +[0,6263,16190,16191,2523], +"preferences", +"persist", +[0,27386,53,5749,5241,83,85,87,90,94,5583,811,816,10615,4874,1009,1011,7677,1290,1596,1597,1177,1881,1895,1915,1938,23909,2675,23913,23915,23917,23921,23926,2990,1894,4039,4042,4193,91,1984], +[0,2681,23932,2679,8930,23933,6728,23934,23936], +[1,2343,16193], +[0,0,16194,16195,2537], +[0,442,10817,6061,6063,1009,1011,1177,1895,1955,2203,1894,4042,4057,4131,91], +[0,2681,23942,5995,1932], +"rack", +[1,2343,16198], +[0,16199,16200,16201,2537], +[0,23948], +[0,3421,1149,23950,8431,2899,23952,1177,4135,705,27387,91,4874,2024,29197,5517,19344,7844], +[0,8431,6270,8426,8425], +"flash", +[1,2343,16204], +[0,16205,16206,16207,2523], +[0,23960], +[0,1175,1193,1267,1272,1596,1177,1881,1938,2774], +[0,2658,23964,13445,1192,3212], +[1,2343,16209], +[0,0,16210,16212,2537], +[0,48,53,87,1009,1676,1177,23971,1938,3188,23974,4039,23975,4384,4449,4474,91], +"kruptein", +[0,2687,23977,16774,3410,3624,10057,7131,6961,1108,21541,2070,23980,23982], +[1,2343,16214], +[0,0,16215,16216,2487], +[0,1414,2070,4493,4474,4508,91,4865,4874,11976], +[0,158,4202,23989,23992,4289,18081,12350,20650,20733,20639,20709,23993,20651,20680,21881,20752,18048,20653,8221,23994,23995,12349], +[1,2343,16218], +[0,16219,16220,16221,2523], +[0,24003,18525,4207,2205,24004,2096,6639,29721,20624,22246], +[0,1906,1166,1700,4400,18051,24006,18047], +[0,3178,15215,158,11806,21881,20637,18048,20639,8221], +[1,2343,16223], +[0,16224,16225,16226,2523], +[0,24003,2020,24012,6639,24013,20624], +[0,1414,1906,1166,91,4874], +[0,15215,158,24016,3178,6707,18048,24017], +[1,2343,16228], +[0,16229,0,16236,2399], +[0,24022,3923], +"defu", +"nicode-supported", +[2,16083,16231], +"sentence", +"sentencer", +"sisteransi", +[0,2695,18641,1823,24024,5576], +"reporter", +"elegant", +"clack", +"stacktrace", +[1,2343,16242], +[0,0,16243,16244,34352], +[0,53,4874,7677,1596,24029,24030,2126,2675,2700,24032,1209,3028,1894,3720,3875,4039,24033,4131,4493,33863,91,1983,1984], +[0,2700,24036,24038], +"arc-templates", +"brac", +"ket-template", +[2,16246,16247], +"dust", +"js-helpers", +[2,16249,16250], +"dustjs-", +[1,2343,16254], +[0,0,16258,16266,4139], +"linkedin", +[2,16252,16255], +"eco", +[0,24045,5087,1596,1192,4039,4468,4487,91], +"haml-coffee", +"hamlet", +"htmling", +"jazz", +"jqtpl", +"just", +"liquid-node", +[0,24047], +"liquor", +"mote", +"plates", +"qejs", +"ractive", +"slm", +[2,4371,2229], +"teacup", +"tinyliquid", +"toffee", +"twig", +"twing", +"vash", +"velocityjs", +"walrus", +"whiskers", +[1,2343,16285], +"engine", +[0,0,0,16286,2537], +[0,2700,7007,7189,2382,6957,6564,6910,7282,6769,6917], +[1,2343,16288], +[0,9670,16289,16291,2523], +[0,1166,2592,4481,1906], +"rfc6266", +[0,3209,2325,15759,15760,1237,2145,24057], +[1,2343,16293], +[0,16294,16295,16297,2487], +[0,3537,13780], +[0,1166,16499,1700,2020,1906], +"rfc7231", +[0,1204,2703,3209,814,2202,15525,16186,200], +[1,2343,16299], +[0,16300,16301,16302,2523], +[0,24069,24073,24075,24077,24078,24080,24081], +[0,4874,9241,1177,24085,1894,91], +[0,13527,36,24088,24089,1965,20986,24090,5592,17829,24091,11100,24092,4030,7096,5122,5130,38,7433,24093,7223,6599,27,2671,4699,14609,24095,1896,5995,12660], +[1,2343,16304], +[0,0,8134,16305,2399], +[0,8958,1871,2966,14903,3924,2585,1794,7067], +[3,1567,23], +[2,16306,1098], +[3,1570,25], +"@conventional-changelog/git-client", +[2,16308,23], +[2,16306,1177], +[1,2343,16313], +[0,16314,16315,16317,4139], +[0,23184,1366,23187,2607,2812,3084], +[0,1501,2556,620], +"tom", +[0,2090,7204,1852,2556,1932], +[1,2343,16319], +[0,16320,16324,16325,2487], +[0,1639,24114,6330], +[2,10832,1194], +[2,16306,16321], +[2,4402,4202], +[0,24118,24117], +[0,2711,6681,5130,10772,24120,1936,24122,36,965,1388,4042,23361], +[1,2343,16327], +[0,0,16328,16331,2537], +[0,91,1984], +"add-stream", +"tempfile", +[0,2712,24128,24129,3547,23877,23870,4545,24130,10915,23872,23878,23874,23879,23881,23883,23875], +[1,2343,16333], +[0,0,11686,16334,2399], +[0,24136,1227,24137,24138,24140,2713,1388,1389], +[1,2343,16336], +[0,0,6538,2514,2523], +"compare-func", +[1,2343,16339], +[0,16343,16344,16345,2523], +"commits.org", +[2,16094,16340], +"preset", +[0,24151,1107,1110,24152,1437,1471,1477,1486,13763,16485,2709,20044,24153,14676,4116,4174,4208,13781,4290,16323,4507,9731,4726,4729,24154], +[0,15288,13789,826,24156,4874,4880,24157,34148,24162,6513,24164,9241,24165,1166,1371,1702,24166,1959,1961,3242,3339,3479,1894,89,24169,4193,4294,4474,91,1906], +[0,89,200,1219,8634,4963,6876,3698,3875,24171,8924,1512,2585], +[1,2343,16350], +"inline-s", +[3,5588,9], +[2,16347,16348], +[0,0,16351,16352,2443], +[0,192,5467,19438,19181,442,811,816,10615,1623,1177,1955,10964,2203,2675,1192,2990,3400,1894,23535,4042], +[0,2718,24177,590,57,1623], +[1,2343,16354], +[0,0,0,16355,2487], +[0,24182,24183,18496,6574,7242,21779,202,200], +"top-sites", +[1,2343,16359], +"cookies", +[0,16360,16361,6151,2537], +[0,31874,546,8998,8605,8612,24188,4094], +[0,8608,91], +[1,2343,16363], +[0,16364,16365,16366,2443], +[0,1107,2089,3527,24188,4094], +[0,2126,2163,2720], +[0,8618,8619,8620,1299,200,1523,6876,1836,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,2184,8634,7009,6621,181,8635,4758,8636], +[1,2343,16368], +[0,16369,0,16370,4139], +[0,24202,1512], +[0,24204,202,9143,13392], +[1,2343,16372], +[0,0,16373,16374,2487], +[0,1734,2899,24209,4072], +[0,5260,3209,10906,24211,1388,24213,1808,1161], +"sign", +"unsign", +[1,2343,16378], +[0,0,16379,16380,4139], +[0,1177,1889,1954,2022,2822,2899,3421,20314,3932,3985,24220,4167], +[0,1507,24223,1509,3595,5194,676,1781,2856,1219,89,24224,4452,4799,91,6523,4745,17307], +"-selection", +[2,15813,16381], +[1,2343,16386], +"@brettz9/node-static", +"-standa", +[0,0,16390,16391,4139], +"lone-jar", +[2,16385,16387], +[2,13131,16388], +[0,1149,1173,1178,1240,24231,24234,1245,1257,1267,24235,1280,24237,24241,24245,24247,24249,24251,24254,24257,24259,24262,24264,24266,24269,24272,1474,1498,1177,24273,2099,2070,2228,2240,2247,2258,24274,24275,2272,3188,3435,4039,4042,4045,4055,24278,13674,4069,4077,22031,4151,4652], +[0,2728,2679,23932,24282,6422], +[1,2343,16393], +[0,0,16394,16395,2537], +[0,19,21,24,26,32,5241,92,8648,840,968,974,4874,4880,4883,1009,1011,11016,33975,1198,1622,668,1177,1915,1938,1939,1959,1961,2075,24289,10697,24291,2228,2239,2240,2247,2256,2263,2283,24295,2308,2314,2665,1192,2780,2814,3003,3541,1894,10622,89,3824,2278,4164,3709,4436,4474,91,1983,26744,188,13151,4769], +[0,24298,24299,24302,7285,7310,5131,6847,7210,5399,5284,1932,1623,1936,7020,6983,89,188,1098,3709,4627,91], +[2,4865,2199], +"rmalize-path", +[2,10409,16397], +"rialize-javascript", +[2,5252,16399], +"@webpack-c", +"ontr", +"ib/eslint-config-webpack", +[2,16402,16403], +[2,16401,16404], +[1,2343,16408], +"is-gzip", +[0,16409,16411,16412,2523], +[0,3082], +"transfer", +[0,1389,2126,4384], +[0,1973,2731], +[1,2343,16414], +[0,16416,16417,16418,2487], +"noms", +[0,16579,16585,23711], +[0,4874,7677,1177,1894,3951,4039,4042,4469,4484,91,1984], +[0,14428,24316,14416,24319,24320,5284,202,91], +[1,2343,16420], +[0,16422,16426,16427,2523], +"qr", +[0,4390,1687,24346,3445,3348,1437,1676,4484,1209,4135,4238,6331,4431,24347,4339,24345,24332,24337,22651,24349,24335,24340,24327,24338,24339,24344,24343,24329], +"simple qr", +"npm qr JavaScript", +"js qr code", +[0,1192,4039,4487,4468,2774,13214,4227,91,17577,5087,4874,24354,7819,2990,5245,4870,5254,24358,24356,18435,24360,24352], +[0,2733,24362,24363,5131,1896,24364,1591,970,3525], +[1,2343,16429], +[0,16433,16434,16436,2523], +[3,1590,15], +"sample", +[2,16430,16431], +[0,8641], +[0,8648,4864,5087,4874,24370,2151,1192,2774,27442,3401,1894,3758,4039,4135,4146,4361,4494,91], +[2,16423,1501], +[0,24373,2733,1017,8221,5131,20523,4627,24374,5027,12295], +[1,2343,16438], +[0,16439,16440,16441,2537], +[0,24379,24382,1676,24383,3032,24386,24389,24391,24393], +[0,24397,6061,16607,6063,4856,9417,5245,24398,24400,6503,4874,24403,6513,1009,1011,1429,1431,1177,1895,2899,3421,1894,4131,4153,4193,4474,4481,4508,91,3348], +[0,1552,24093,24406,24408], +"insight", +"-lib", +"cordova-lib", +"cordova-", +[2,16445,10896], +"cordova-c", +"reate", +[2,16447,16448], +"loud-rejection", +[1,2343,16455], +"@cor", +"dova/eslint-config", +[2,16452,16453], +[0,0,16456,2514,4139], +[0,2899,1177], +[1,2343,16458], +[0,16459,16463,2514,2523], +[0,24416,8431,24419], +"4", +"ES2024", +[2,6796,16460], +[0,24421,2080,2292,4389], +[1,2343,16465], +[0,0,16466,16467,2537], +[0,1158,3421,4389,1177,14741,2708,4103,13614,15059], +[0,614,998,1973], +[1,2343,16469], +[0,16470,16471,9636,34352], +[0,1458], +[0,1470,4255], +[1,2343,16475], +"env-paths", +"parse-json", +[0,16486,16487,16488,2537], +"arse-", +"arse-json", +[2,5088,16477], +[3,7677,17], +[2,16479,2759], +"davidtheclark-node", +[2,1884,16481], +[3,16481,13], +[2,3996,16483], +"es-toolkit", +[0,24437], +[0,2398,2899], +[0,16159,15643,4354,2978,7256,24440,2070,21543,24441,2741,3529,6421,13017,1108,6920,1871,1973], +[1,2343,16490], +[0,16493,16494,16495,2443], +"lcov-parse", +"log-driver", +[0,24446,17450], +[0,1166,16499,1700,2020,3093,4481,1906], +[0,2202,3383,24449,1237,1161,24450,3378,4749,2741,4354,13735,2703,24451,200,20052,17180], +[1,2343,16497], +[0,0,8134,16498,2487], +[0,3048,2741,4354,1973,998,19096,24456,7523,2869], +"cpy", +[1,2343,16501], +[0,0,16505,16506,34352], +"cp", +[3,12419,11], +"contents", +[0,1429,1999,2398,2899,3198,4042], +[0,4354,2741,24462,2757,5284,24463,20273,3048,19096,998,7031,6692], +[1,2343,16508], +[0,0,16510,16514,2523], +"hpagent", +[0,2899,3954], +"http2-wrapper", +"seenreq", +"tslog", +[0,1936,24374,24470,11608], +"@types/got", +[1,2343,16519], +"spider", +"gzip", +[0,0,16520,16521,2523], +[0,4874,1166,4400,4481,1906], +[0,3101,998,7046,7089,7017,6704,353,4354,13735,2741], +[1,2343,16525], +"crc16ccitt", +"crc16", +[0,16527,16529,16535,2523], +"crc16kermit", +[0,24488], +"crc16modbus", +[0,1166,24491,4481,1906], +"crc16xmodem", +"crc1", +"crc24", +"crc81wire", +"crc8", +[0,4354,24493,6574,24494,6667,13735,16159,3729,7201,7009,2741], +"crc8dvbs2", +"crcjam", +[1,2343,16539], +[0,0,9264,16540,2443], +[0,1388,2756,4552], +[1,2343,16545], +"cipher-base", +"ripemd160", +"sha.js", +[0,0,16546,16547,2443], +[0,1999,2398,2899,4042], +[0,4354,2741,24462,2757,24463,20273,24504,970,3048,998,7031,6692], +[1,2343,16549], +[0,16550,16551,2514,2523], +[0,3310,4705], +[0,1429,2272,24512,2899,3297], +[1,2343,16553], +[0,16554,16555,16556,2537], +[0,2070,3368,3441,1149,4707,23432,3188,2003,2822,814,4720,1875,2036,4351], +[0,2272,4039,2276,1596,4019], +[0,4504,24520,24521,24525], +"async-t", +"-tree", +"raverse-tree", +[2,16557,16559], +"css-u", +"rl-parser", +[2,16561,16562], +"uri-to-", +[2,16564,1398], +[2,14678,16565], +[1,2343,16577], +"group-args", +"inline-", +[2,16569,1604], +"oust", +"penthouse", +[3,3591,15], +[3,3611,14], +"inliner", +[2,16574,16575], +[0,16582,11580,16583,2537], +"postcss-url", +"@inversifyjs/common", +"newline", +[2,3370,16580], +[0,2152,3348,18545], +[0,2760], +"stream-array", +[2,23712,29231], +[1,2343,16588], +"optimization", +[0,16589,16590,16591,2523], +[0,1156,1699,1817,24536,3070,3559,4443,24537], +[0,24539,1173,1175,1191,1195,1201,1220,1230,24541,1245,1255,18571,1264,1279,1282,1429,24542,1584,1610,1628,1177,1988,2054,2092,2148,2323,2332,2361,2450,2494,2629,2651,2297,2881,2886,2900,18260,2921,2923,2925,695,2969,21082,2899,4193,4196,4307,4487,91,4537,4027,188,4632,24545,4634,4639,4640,4645,2924,4681,4689], +[0,2761,188,6284,4627,4963,181,5130], +[1,2343,16594], +"@fast", +[0,16613,6161,16614,2537], +"-check/jest", +[2,16593,16595], +"@insurgent/commitlint-config", +[3,16597,13], +"nvent", +"ional-changelog-preset", +[2,16599,16600], +[2,16598,16601], +[3,6061,19], +"ommit", +"-analyzer", +[2,16604,16605], +[2,16603,16606], +[2,6062,3378], +"-generator", +[2,11155,16609], +[2,6019,16610], +[2,6062,16611], +[0,548], +[0,7233,57,7058,5675,7210,200,1523,3924,1644,7119], +"node cron", +[1,2343,16620], +"node-cron", +"schedule", +"cronjob", +[0,16622,16623,2514,2537], +"cron job", +[0,24560,1462,1525,24562,24563,3188,24564,4535,24566,5056], +[0,24570,24571,1596,2026,24574,2034,24576,24577,24581,24584,24587,24591,24592,24593,24594,24596,24598,24599,3127,3456,24600,4039,24601,24602], +[1,2343,16625], +[0,16627,16628,16632,2523], +"tz", +[0,1149,24607,3527], +[0,442,1177,10751,2203,2899,3760], +"timer", +"tab", +"crontab", +[0,6147,200,7048,24610], +[1,2343,16634], +[0,16635,16648,16651,2537], +[0,24617], +"@prantlf/jsonlint", +"@prettier/plugin-xml", +"@stryker-mutator/core", +[3,16638,17], +[2,3192,8791], +[2,16639,16640], +[3,15909,16], +"ray-func", +[2,16642,16643], +[3,13097,17], +"unsanitized", +[2,16645,16646], +[0,5583,816,6373,10615,11301,24621,24624,1462,1610,24625,2675,2814,16830,2990,3170,24627,4042,8849,20983], +"metalint", +"yaml-lint", +[0,24631,158,12083,24633,24634,20634], +[1,2343,16653], +[0,16654,16655,16659,2487], +[0,2070,2766,23576], +[0,1177,24287], +[2,1601,7179], +[3,3606,9], +[2,16657,2408], +[0,1973,5472,2765,6969,5982], +"zoom", +"rotate", +"scale", +"cropper", +"cropper.js", +[1,2343,16667], +[2,29236,594], +[0,0,16668,16659,2523], +[0,19181,442,1137,24645,1797,1177,1924,2070,2203,2832,1894,2278], +[1,2343,16670], +[0,16671,0,16672,2523], +[0,2164,3188,24653,4019,4545,1509,24652,24651], +[0,5472,5982], +"ironment", +[2,1610,16673], +" variable", +[2,6639,16675], +[1,2343,16678], +[0,16679,0,6183,2537], +[0,551,554,2704,2774], +[1,2343,16681], +[0,16682,16683,16684,2487], +[0,24665,24666], +[0,14671,48,53,61,87,192,22559,1193,24668,1596,2675,1192,1894], +[0,3212,1192,11944,1795,1424,1973,2275], +[1,2343,16686], +[0,16689,16695,6183,2487], +"path-key", +[2,6987,16141], +[0,551,8762,554,1437,29680,2704,8734,2798,8747,4747], +[3,10688,14], +"oxy", +[2,16690,16691], +[3,15793,15], +[2,16693,16691], +[0,4892], +"spawnSync", +[2,1611,12344], +[1,2343,16700], +"path-ext", +[0,16702,16703,2514,2487], +"execute", +[0,16729,13002,1437,3717], +[0,8776], +[1,2343,16705], +[0,16706,16703,2514,2523], +[0,24690,16738,13204,4874,2832], +[1,2343,16708], +[0,16714,16715,2514,2537], +"cipher", +[2,13888,16709], +[3,1391,12], +"ign", +[2,16711,16712], +[0,24690,24694,554,11944,2798,2832], +[0,5087,13204,4874,2675,1192,3188,1894,3720,4039,4468,91], +"create-ecdh", +[1,2343,16727], +"mac", +"create-hmac", +"ie-hellman", +[2,1687,16720], +"pbkdf2", +"publi", +"c-encrypt", +[2,16723,16724], +"randomfill", +[0,16730,16731,2514,34352], +[2,6426,3779], +"@jest/diff-sequences", +[0,24690,24694,554,4874,11944,2798,8747], +[0,8776,1497], +[1,2343,16752], +"Hash", +"MD5", +"SHA1", +"SHA-1", +"SHA256", +[2,24690,20072], +"SHA-256", +"RC4", +"Rabbit", +"AES", +"DES", +"PBKDF2", +"HMAC", +"OFB", +"CFB", +"CTR", +"CBC", +"Base64", +"Base64url", +[0,16753,16754,16755,2523], +[0,2777], +[0,107,19438,19181,442,20076,5087,1009,1011,1177,1895,1915,1938,1939,1955,2203,2675,1192,24713,2802,2990,1894,4468,12206,91], +[0,1192,24715,2051,24717,1973,5472,5710], +[1,2343,16760], +"roupon", +[2,1887,16757], +"nlm", +[0,16761,16762,16763,2537], +[0,2151,3445], +[0,53,24723,841,968,972,974,24725,5087,24727,4874,24729,4880,4883,14552,1114,1193,1195,1216,1270,1324,1393,1420,1426,1582,1628,1630,1652,1759,1763,1869,1177,1898,24732,2054,2092,2151,2651,2686,1192,2797,2802,24733,3177,3376,3561,3605,3618,3647,3672,3742,24734,89,3803,3816,3824,3878,24737,814,4028,2278,4111,4135,4230,4307,4383,4409,91,4027,24739,2924,4676,4681,4686,4723], +[0,1192,1936,16237,11937,1932], +[1,2343,16776], +"@cspell/cspell-json-reporter", +[3,16765,15], +[2,16766,7170], +[2,16766,553], +"@cspell/", +[2,16769,15126], +"@cspell/url", +[2,1622,4304], +"cspell-", +"gitignore", +[2,16773,16774], +[0,16777,16784,2514,2537], +[0,3188,4294,3348,6523], +"cspell-glob", +"cspell-io", +"cspell-lib", +[2,2068,2851], +"entry-cache", +[2,2093,16782], +[0,1192,24746,4207], +"@types/fi", +"le-entry-cache", +[2,16785,16786], +[1,2343,16795], +"spell", +"checker", +"spelling", +" checker", +"spell checker", +[2,16791,16792], +[0,0,0,16796,2523], +[0,1192,4749,24753,24754], +[1,2343,16798], +[0,16800,16801,2514,2487], +[2,4229,814], +[0,1437,2215,8750,2796,2798,8747,4207,12578], +[0,8780,1002], +[1,2343,16803], +[0,16809,16810,2514,4139], +"@rspack/cli", +"@mdn/browser-compat-data", +[3,1200,15], +[2,16806,6437], +[2,812,16807], +[0,554,4874,1437,1458,2215,3530], +[0,8780,20374,1209], +"sorter", +[1,2343,16813], +[0,16814,16815,2514,2523], +[0,1107,1437,8758,8741,4207,15826,4294], +[0,48,53,87,92,442,11893,554,6061,6063,4874,1193,17217,1610,1177,1895,1915,32525,1939,1955,2203,1192,24713,1894,4039,4131,4135,91,4523], +[1,2343,16829], +"-verify", +[2,13729,16817], +[3,4828,15], +"itpick", +[2,16819,16820], +[3,15801,21], +"hangelog", +[2,16822,16823], +[2,8184,8166], +"version-", +[2,16826,13729], +"write-", +[0,16832,16833,2514,2487], +"json-file", +[2,16828,16830], +[0,4874,23247,2798,3159,4351], +[0,53,24781,9746,23262,2188,24779,24777], +[1,2343,16835], +[0,16836,16844,16845,2537], +[0,18635,24786,27788,27793,27795,27796,27797,27802,27813,27817,27820,27825,27832,27833,27834,27841,27844,27870,27878,27879,27880,27881,27883,27884,27887,24789,27888], +"icss-utils", +[3,3638,16], +[2,2055,5651], +[2,16838,16839], +[2,16838,1993], +[2,16838,6693], +"@hapi/address", +[0,27890,27893,27895,24793,8862,811,15460,816,10615,17214,1177,27898,3502,4042,4057,15277,23652,4483,91,27900,1984], +[0,158,24795,24799,18048,20637,21881,20650,24800,16662,12712], +[1,2343,16847], +[0,0,16848,2514,2487], +[0,53,5652,5226,56,15659,71,5704,5712,4851,5785,5874,5889,92,5230,101,104,16804,33146,10879,10883,15693,24807,31666,4874,7677,1082,24813,1446,1541,1556,16230,14856,1874,1177,1905,2007,984,2071,2744,3171,3189,3222,15726,3510,15450,3698,28423,1894,89,3824,3951,15728,15452,4409,26379,4469,91,1984,188,20040,4763], +[1,2343,16859], +"@parcel/css", +"@swc/css", +[3,9740,13], +[2,16852,1623], +"@types/csso", +"set-simple", +[2,11327,16855], +[2,1637,16856], +"csso", +[0,0,0,16861,2487], +"lightningcss", +[0,6105,24822,24827,6106,24829,24830,1936,2585,6038,24832,5284,91,24833,2808], +"minimize", +[3,1629,9], +[1,2343,16865], +[0,16866,16867,16869,2537], +[0,2808], +[0,19438,23339,842,966,972,974,4880,4883,1009,1011,1610,1628,1177,1895,1955,1959,1961,1985,2651,2832,1894,89,3824,4068,4307,7873,4474,4493,91,1984,2924,4677,4681], +"boolbase", +[0,89,2808,1936,2585,6038,24842,24829,24830,24843], +"nth-check", +[1,2343,16878], +[3,7804,9], +"olbase", +[2,16872,16873], +"cheerio-s", +"oupselect", +[2,16875,16876], +[0,16880,16881,16882,2537], +"sizzle", +[0,1437,24854,24849,24848,4145,6271,3029,3028,24853], +[0,3421,1149,2228,4193,3460,1596,2240,15929,2293,1532,24857,2283,2273,2277], +[0,24859,24860,24861,24862,24863,24864,24867,24868,24869,24872,24873,24874,24875,24876,24877,24878,24879,24880,24881,24882,24883,24884,24885,24888,24890,24892,24893,24894,24895,24854,24896,24897,24898,24899,24902,24904,24905,24906,24907,24908,24909,24912,24915,24917,24920,24922,24924,24927,24928,24929,24930,24931,24932,24933,24934,24935,24938,24940,24942,24943,24944,24945,24945,24946,24947,24948,24949,24950,24951,24952,24953,24955,24956,24959,24960,24961,24962,24963,24966,24967,24968,24969,24970,24972,24973,24974,24975,24976,24977,24978,12047,24979,24980,24981,24983,24985,24986,24988,24991,24992,24993,24994,24995,24995,24997,25000,25001,25002,4040,25003,25004,4144,4145,25006,25007,25008,25009,25012,25014,25010,25015,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25029,25030,25033], +[1,2343,16884], +[0,16886,16887,16888,2537], +"clap", +[0,16843,25038,8335,25039,25040,8353,26364], +[0,21662,8357,5500,8359,4874,91], +[0,2844,7020], +"json-to-ast", +[1,2343,16893], +"walker", +"lexer", +[0,0,0,16895,2523], +"jquery-test-runner", +[0,89,6649,10057,6355,25054,1542], +[1,2343,16899], +"features", +"web-features", +[0,0,0,16901,2399], +"stages", +[0,2814,5284,1388,6082], +[1,2343,16903], +[0,16904,16905,2514,2537], +[0,2814], +[0,2228,4039,2203,842,25088,25063,2291,25090,3006,25070,25074,16894,25076,2253,2260,23178], +[3,7014,10], +[1,2343,16908], +[0,0,16909,16910,2443], +[0,4874,2899,91], +[0,14357,17180], +[3,16857,15], +[2,16911,10441], +[1,2343,16917], +"advanced", +[2,16911,16914], +[2,16911,2994], +[0,16920,16921,16922,2537], +"optimise", +[2,5505,5218], +[0,25106,18420,2070,2821,3368], +[0,1109,1317,1505,2814,2272,3183,2899,3257,4019,4146,4294,2924,4677], +[0,14438,24856,25109], +"@jscpd/badge-reporter", +[1,2343,16925], +[0,0,16926,16927,2537], +[0,10615,1177,1903,1937,1948,2228,25074,2256,2277,23165,2283,17565,25060,1894,2907,3980,4042,11802,4060,4255], +[0,977,16358,1388,5808,10906,5576,2821,1389], +[2,27440,27441], +[1,2343,16930], +[0,16939,16940,16941,4139], +[3,4856,9], +"okidar", +[2,16931,16932], +[2,7632,16558], +[3,12842,11], +[2,16935,4467], +"urndown", +[2,7750,16937], +[0,1139], +[0,3421,1111,2899,1177,4042,4167,2193,1317,1505,2064,4073,811,816,19232], +[0,4745,57,1753,6713], +[1,2343,16943], +[0,16945,16946,16947,2399], +"csrf", +[0,58,12184,1525,1676,1696,2070,25125,27534,1997,25126], +[0,442,8719,842,8712,16145,4874,1527,1567,1652,1177,1895,1939,1955,1192,2829,22509,22511,1894,4039,91,4523], +[0,25135,1745], +[1,2343,16949], +[0,16951,16955,2514,2537], +"@acemir/cssom", +[0,1512,1525,2151,25141,16923,25147,25144,25148,25142,25146], +[2,812,1177], +"ould", +[2,7747,16953], +[0,5536,4864,4874,7677,3363,4474,4493,91,1984], +"tsv", +"generation", +[1,2343,16959], +[0,16960,16961,16962,2487], +[0,1437,1481,1525,25154,2004,2021,2070,2654,2822,25156,25160,15555,1209,3181,12118,15371,3741,25162,814,4296,4300,25163,25164,21956,25165,4736], +[0,1429,1596,6474,2272,2899,3954,4037,4193,4196,25168,25170,4734], +[0,19271,4525,671,9654,25172,2649], +[1,2343,16965], +"@bramus/specificity", +[0,16967,16968,16969,2537], +"coffeelint", +[0,58,25177,7639,1362,25178,1874,25179,21226,3105,3107,3127,3188,25181,4300,4545], +[0,1091,2323,2384,2449,3421], +[0,1745,5284], +[1,2343,16972], +"csv-spectrum", +[0,16973,0,16974,2537], +[0,16053,17786,25190,17788,1776,25193,17798], +[0,1776,5592,13325,8626,5284,1745], +[1,2343,16976], +[0,16977,0,16978,2523], +[0,16053,1519,1522,25203,1727,2826,4783,17798], +[0,1776,1783,5592,1179,5284,676,1745], +[1,2343,16980], +[0,16981,16982,16983,2523], +[0,16950,16928,16964,15956,1638,25211,25212,2623,2661,2674,2750,3493,25213,25215,4454,4548,25216,23201,15502,25217,19851], +[0,23591,1177,1937,1953,2203,2822,3181,2899,25221,3401,3456,3549,4135,4153,4441,27602,25224], +[0,965,1936,7102,12616], +"csv parser", +[1,2343,16987], +"parse csv", +[0,16988,16992,16983,2523], +[0,25231,25232,1638,2654,25233,3493,705,19851,4738], +"csv to json", +"csv convert", +"tojson", +[0,1389,1512,2665,2272,16112,2276,3560,3760,25238,4652], +" csv to json", +[2,6270,16993], +"csv-json", +[1,2343,16997], +[0,0,16998,16999,2537], +[0,1596,2228,2240,14352,2759,2899,3954,4019,25244], +[0,1398,1867,5284,1781,3053,3065,1871,1646,4990], +[2,1649,6451], +"cucumber-", +[2,17001,6466], +"duration", +[1,2343,17005], +[0,17012,17014,2514,4139], +"enerator", +"is-generator", +[3,4143,10], +[2,17008,1851], +"stack-chain", +[2,16240,1592], +[0,200,15014,2021,2654,1209,3181,4300], +"ansi-html", +[0,1149,1389,1566,13985,1596,2759,2292,3211,2276,3758,3954,25251,4193,15136,25253,25256], +[1,2343,17016], +[0,17017,17022,17024,2523], +[0,1437,3074,3545,15826,4425,22972], +[3,1976,18], +[2,17018,4414], +"riteway", +"updtr", +[0,2272], +"unique", +[0,2272,16237,4525,1671,671,2649,25264,16238,3721], +"unique id", +[1,2343,17027], +[0,17028,17029,17030,2537], +[0,25269,25272], +[0,6503,4874,1009,1011,1177,1886,1938,2899,3421,4474,91], +[0,1781,17420,1641,15253,6813,25276,25277,1644,57,2841,25279,200], +"ospath", +[1,2343,17033], +[0,0,17035,2514,4139], +"lazy-ass", +[0,4257], +"blob-util", +[3,8129,9], +[1,2343,17043], +"@cypress/xvfb", +"zzle", +[2,6545,17040], +[2,17037,705], +[0,0,0,17048,34352], +"more-types", +[2,14614,17044], +[3,4008,11], +[2,17046,6509], +[0,1781,2844], +"cypress.io", +"mocks", +"spies", +"stubs", +[1,2343,17054], +[0,17055,17056,17060,2537], +[0,975,983,15951,1437,1457,8098,7614,2712,2856,3083,25292,4200,25294], +[0,4874,1540,2182,2675,33479,30889,4400,4507,91], +[3,13848,19], +[2,17057,3172], +"longest", +[0,6671,36,21147,8173,8172,25094,3212,8788,1973,5472,4030,2382,28726], +[1,2343,17062], +[0,17063,17064,17065,2399], +[0,1417,7272,2756,17827,3433], +[0,5517,13614,23237,10979,27571,27016,19325,1159,9254,1177,2708,3410,4103,4389], +[0,1781,1646,7185,3428,6333,7077], +[1,2343,17069], +"d3-axis", +"d3-brush", +[0,0,0,17070,2523], +[0,1781,1646,7045,6953], +"d3-chord", +[1,2343,17073], +[0,0,17076,17077,2443], +"d3-contour", +"d3-delaunay", +[0,1593,1177,1903,1938,1954,1958,1970,3400,3954,4042,4048,4055,4067,4073,4193,4384,25313], +[0,1781,2856,1925,6778,5286], +"d3-dispatch", +[1,2343,17084], +"d3-drag", +"d3-dsv", +"d3-ease", +"d3-fetch", +[0,0,17085,2514,2537], +[0,2899,1177,4039,91,4874,6503,1011,1009], +"d3-force", +[1,2343,17088], +[0,17094,13658,17095,2537], +"d3-format", +"d3-geo", +"d3-hierarchy", +"d3-interpolate", +"d3-path", +[0,21224], +[0,3917,6033,2090,1781,2150,2151], +"d3-polygon", +"d3-quadtree", +"d3-random", +"-chromatic", +[2,1655,17099], +"d3-time", +"-format", +[2,17101,17102], +"d3-timer", +[1,2343,17106], +[0,0,17109,17114,2523], +"d3-transition", +"d3-zoom", +[0,16638,16641,1429,1177,25328,2899], +"@observablehq/plot", +[3,17110,14], +[2,17111,7047], +"topojson-client", +[0,1781,2844,2860,1155,7020], +"visualiz", +[2,17115,5218], +[1,2343,17118], +[0,17119,17120,17123,2523], +[0,4430,25336], +[0,4389,19987,18718,8924,5710,2012], +"intern", +"internmap", +[0,1781,3101,22115,57,1149,7119], +[1,2343,17126], +"d3-module", +[0,17127,17131,17133,4139], +[0,3242,25343,4135,25355,25346,25353,3052,25347,25350,3051], +"histogram", +"bisect", +"shuffle", +[0,3413,3421,1157,1429,2899,4193,1177,1566], +"stic", +[0,2038], +"statistics", +[1,2343,17136], +[0,17137,17138,2514,2523], +[0,53,25363,17144,3467,3527], +[0,25366,4874,26142,1415,668,1177,1895,3171,3181,3445,1894,4042,4448,91], +[1,2343,17140], +[0,0,17141,17143,2537], +[0,4874,7677,20085,4493,91,1984], +"uniqid", +[0,6649,6710,5995,25372,89,970,5122,3857,5123], +"@jspm/plugin-rollup", +[1,2343,17148], +"selection", +"data-join", +[0,17149,17150,17151,2487], +[0,25377,3486,20508,3923], +[0,4449,2228,2907,1177,1317,2240,1389,3541,91,2665,25379,2236,2281,25383], +[0,2056,25386,25388], +[1,2343,17153], +[0,0,17154,17155,2487], +[0,4172,1192,2675,1177,23535,4468,4474,1894,91,53,2990,1387,1540,1938,1895,1955,2780,1011,1009,1915], +[0,2038,1388], +[1,2343,17157], +[0,0,17158,17160,2537], +[0,2025,2759,2899], +"dable", +[0,2038,10368,15103], +[1,2343,17162], +[0,17163,17168,17170,2487], +[0,14416,4449,2070,3171,25404,4747,15643,1209,3078,3188,4039,1544,1457,3181,4218,2659,4227,1364,2215,12930,3781,11804,25403,13388], +[2,21029,17165], +" plugin", +[2,21045,17169], +"postcss-js", +[0,1429,13333,2899,17050,4193,4707,1177,1649,4650,3758,4342,1389,2878,3752,4196,25411,1436,2900,2766,2898,192,1431,2871,4131,1954,1938,25407,2904,6063,1958,2881,25410,1903,1970,2895,22559,6061,2876], +"ails", +[0,2297,25415,8791,2297,676,5284,5472,1973,21004,25416], +"laravel", +[1,2343,17173], +[0,17174,17175,17176,2487], +[0,9421,1209,25421,3181,18868,1573], +[0,3377,1377,1429,2297,2899,4193,4453,12851,1177,814,4650,1389,4196,91,3400,2766,2898,15051,1951,2881], +[0,25425,25427,25429,1389], +[1,2343,17178], +[0,17182,17185,17186,2537], +"reverse", +"binary", +"opposite", +[0,3760,14336,25092], +"invert", +"switch", +[0,2228,1177,2307,2239,2291,3006,1954,2234,1938,1958,1903,1970,2285,2290], +[0,25425,25436,14336,25437], +[1,2343,17188], +[0,0,0,17192,2537], +"@cap", +"temulation/get-parameter-names", +[2,17189,17190], +[0,2297,25425,1429,2899,4170], +"faker-bb", +[2,7526,17193], +[2,9769,1676], +"rss-parser", +[2,2032,2663], +[2,4364,17197], +"lexxy", +[1,2343,34442], +[0,4707], +[0,1429,2297,2899,4193,4255,2900,192,4131,6063,22559,6061], +[0,25425,25436,3195], +"@date-", +"fns/docs", +[2,17204,17205], +[1,2343,17208], +[0,17211,17224,17225,2523], +"@date-fns/utc", +[3,5530,19], +[0,11935,14024,11938,11940,11943,3181], +"@types/bun", +"@vitest/", +[2,17213,1388], +[3,1198,17], +[2,2701,7188], +[2,17215,17216], +"bun", +"cloc", +"js-fns", +"jscodeshift", +"issing-exports", +[2,10634,17222], +[0,192,5467,21970,6061,6063,16608,1429,1509,1177,1903,1938,1954,1958,1970,2228,2240,2298,2307,2675,25453,2297,25455,2895,2900,25458,2899,17050,4019,4131,4193,4196], +[0,25425,25427,25462,4504,2759], +[1,2343,17227], +[0,17201,17228,17229,2537], +[0,2228,2258,2273,2298,2766,2297,2898,3524], +[0,25425,25436,1388,2887,25468,25470,25472,25473,17632,25474,25476,25479,25481,25484,25485], +[1,2343,17231], +[0,17233,17234,17235,2523], +[2,2553,20], +[0,2890], +[0,1429,25492,14416,1177,1903,1958,1970,2228,2239,2240,2291,2307,2316,2297,3006,25493,3752], +[0,25425,25436,13530,17631], +[1,2343,17237], +[0,17238,17241,17245,2537], +[0,2755,4707], +"ectory", +[2,4015,17239], +[0,192,5467,6061,6063,16608,2675,2297,2900,2899,3534,4131,4255], +"sleep", +" wrapper", +[2,1149,17243], +[0,2297,5472,25425,25436,25501], +[1,2343,17247], +[0,6203,17248,17249,2523], +[0,1429,14416,1177,1903,1958,1959,1970,2228,2234,2239,2283,2285,2290,2291,2307,2316,2297,3006,17050,4193,4196], +[0,25425,25436,7298], +[2,17257,24717,17258], +"debouncing", +"invoke", +"interval", +[1,2343,17255], +[0,17256,17259,17260,2523], +[0,2766], +[3,7621,18], +"-ascii", +[0,2228,2675,2297,1177,2765,192,4131,1954,1938,6063,16608,1958,1903,1970,2895,6065,22559,6061], +[0,25425,25514,2765], +[1,2343,17262], +[0,17263,17264,17265,2487], +[0,3183], +[0,1429,1177,1903,1958,1959,1970,2228,2234,2239,2285,2291,2298,2307,2297,2878,2881,2895,2918,3006,2899,3203,4193,6061,6063,4131,192,5467,2675], +[0,25425,25514,2899], +"decamelcase", +"lowercase", +[1,2343,17270], +"nano-spawn", +[0,17271,17280,17282,2537], +[0,1437,3074,4294], +"-tar", +[2,1679,17272], +"bz2", +[2,17273,17274], +"gz", +[2,17273,17276], +[3,17273,11], +[2,17278,4560], +[0,1429,2228,2239,2258,2273,2285,2298,2314,2766,2878,2889,3006,2899,3524], +"strip-dirs", +[0,25425,25462,2899,1429,1687,2568], +"is-jpg", +[1,2343,17287], +"bzip2", +"tar.bz", +[0,17289,17290,17291,2537], +"tar.gz", +[0,1209,3524], +[0,1177,1903,1959,1970,2228,2234,2239,2285,2291,2298,2307,2766,2297,2898,3006], +[0,25425,25436,3521], +[1,2343,17301], +[3,4852,13], +"plugin-m", +[2,17294,7912], +[2,17293,17295], +"fail-test", +[2,10740,17297], +"deprecation", +[2,1921,17299], +[0,0,17320,17324,2399], +"only-tests", +[2,16645,17302], +[3,1955,15], +"erfectionist", +[2,17304,17305], +"yml", +[2,1921,17307], +"jsonc-", +[2,17309,67], +[2,4488,10441], +[2,3390,17311], +"curly", +[2,3704,17313], +"should-s", +"emantic-", +[2,17316,3979], +[2,17315,17317], +[2,13125,67], +[0,1429,2228,2297,2899,2907,1177,2307,2239,2898,1954,1938,1958,1903,1970,2895], +" string", +"line string", +[2,13862,17322], +[0,2297,25425,25514,2907], +[1,2343,17326], +[0,17327,17328,17333,2487], +[0,1457,1675], +[0,53,5889,87,1177,2766,2297,2881,2898,2904,4042,4045,4048,4055,4067], +"dupes", +" duplicates", +[2,7293,17330], +[3,232,8], +[0,3595,6778,2297,5260,1204,6813,1932,7121,25427,25425,25544,4042], +[1,2343,17338], +"deduplicate", +"deduplicat", +[2,17336,6600], +[0,0,17339,17340,4139], +[0,2307,2228,2239,2234], +[0,25425,25436,25550], +[1,2343,17343], +"is-obj", +[0,17344,17345,17346,2537], +[0,25555,12826,824], +[0,192,5467,6061,6063,16608,4864,25558,4874,2675,2765,2297,2898,4131,91], +[0,25425,25436,7177,12825,12826], +[1,2343,17348], +[0,0,0,17349,2537], +[0,2297,25425,4193,3212], +[1,2343,17351], +[0,17353,17359,17360,2523], +"json-ptr", +[0,2215], +[3,1715,10], +"change-", +"adr", +"tracking", +[2,17355,17357], +[0,8780,1414,1177,2766,2297,25571,2881,2898,1894,4042,25575], +[0,25425,25427,11939,5284], +[1,2343,17368], +"decision record", +"kewlr", +"any decision record", +[2,17379,17381], +"simple-assert", +"lcov-re", +[0,9719,17378,17385,2443], +"sult-merger", +[2,17367,17369], +[3,1903,16], +"rict", +[2,17371,17372], +"@js-temporal/polyfill", +[3,1935,15], +"ilenames", +[2,17375,17376], +[0,1429,1596,2899,3400,3421,4193,4196], +[3,25135,11], +"chai util", +"al decision", +"deep equal", +"object equal", +[2,17365,17394], +[0,25425,16237], +[1,2343,17387], +[0,17408,17417,13533,4139], +"array-b", +"-byte-length", +[2,2347,17389], +[2,17388,17390], +"es-get-iterator", +"is-a", +" record", +"is-arguments", +"is-ar", +[2,25135,17401], +"ray-buffer", +[2,17396,17398], +"is-date-object", +" decision", +"gex", +"is-regex", +"is-s", +"hared-array-buffer", +[2,17404,17405], +[2,6961,7313], +[0,2070,3181,4689], +"side-channel", +"-boxed-primitive", +[2,4707,17410], +"which-", +[2,17412,6910], +"typed-", +"typed-array", +[2,17412,17415], +[0,48,53,85,87,192,5467,16405,1193,1429,1431,1610,1177,1938,1955,2675,2759,2765,1192,2297,2878,2881,2900,2923,2990,3150,2899,3697,1894,3758,4257,2924], +"available-typed-arrays", +[1,2343,17427], +"to", +"has-proto", +"has-t", +[2,17397,17394], +"yped-arrays", +[2,17422,17424], +"software quality", +[0,0,7923,17428,4139], +[0,8652,2926,25591,6938,25592,25594,25595,25596,2927], +"rehype-katex", +[1,2343,17431], +[0,0,0,17432,2487], +[0,2927,3925,364], +[1,2343,17434], +[0,17435,17441,17442,2487], +[0,25605], +"is-m", +"able-object", +[2,4688,17437], +[2,17436,17438], +"jsmd", +[0,18073,29457,11976,15288,7677,4039,25609,4481,1984,26108,26131,26132,26124,26104,29233,26123], +[0,6803,6692,1542,2325,9553,25611,13901,5995,25513,1552,3230,7827,3259,14873,3151,3300,3084,6650,1416], +[1,2343,17444], +[0,0,17445,17446,2537], +[0,1999,4579], +[0,1111,200,1473,1512,7201,7009], +"is-path-cwd", +"is-path-", +"inside", +[2,17448,17449], +[1,2343,17452], +[0,17454,17463,17464,2523], +"folders", +[0,1999,25625,1676,1209,21104,3932,4435,25623,1511,1525,2727,4025,2179,25624], +"directories", +"trash", +"unlink", +"cleaning", +"rmrf", +"friendly", +"gulpfriendly", +"filesystem", +[0,3519,3421,4481,1429,2763,4389,2675,2899,3259,4193,1177,3260,4039,1787,3203,4246,25635,4474,25633,1894,4387,1596,1610,2861,4196,91,4874,21106,2990,25629,25634,1431,4232,25632,1938,25628,25636,1895,1955,13850], +[0,14872,3766,14873,25638,3259,25639,4246,12593,3243,9381,25640,6147,1747,18035], +[1,2343,17466], +[0,17467,17469,17470,2537], +[0,19185,2071,17471,2807,2822,3183,29943,3527,3530,25648,4300,4763], +"temp-write", +[0,554,17212,7637,7892,20374,4891,11112,19706,32765,4494,91], +[0,19748,25658,1227,200,25660,4796,13735,4797,11337,25661,6971,6813,1586,2100,5284,671,25663,25664,18750,6646,23255,3383,20529,553,91,25667,25669,17507,664], +"formatly", +[1,2343,17473], +[0,0,17476,17478,2487], +"in-range", +"time-", +[0,1177,2205,25675,3072], +"time-span", +[0,1623,3583,12616,3195,25501,25677,17631,25550,25678,25679,25682], +"defer", +"out", +"timeout", +[1,2343,17483], +[0,17486,0,17488,2537], +"settimeout", +"tick", +[0,3171,4734,1676,25688,3441], +"threshold", +[0,7200,6997,6949], +[1,2343,17490], +[0,17491,17499,17502,2537], +[0,1080,1560,1562,16358,25696,14858,1833,1869,2145,25699,2657,2941,3173,3440,3494,4266,1000,4590], +"@vue/c", +"ompiler-sfc", +[2,17492,17493], +"callsite", +"deps-", +"deps-regex", +"is-c", +[0,1414,25710,4216,4255,4342], +"ore-module", +[2,17498,17500], +[0,5122,1896,27,13527,5130,2663,16196], +"patch-", +"patch-version", +[1,2343,17506], +[0,17508,17509,17510,2523], +"unused", +[0,25717,7810,13055,25718,2141,4507,4763], +[0,5517,11976,107,5522,28385,27134,36694,24819,9240,2934,4342,4483,36684,4494,91], +[0,2934,25723,15237,1781,20443,57,1669], +[1,2343,17512], +[0,17513,17516,17517,2443], +[0,25718,25728,1000], +"deprecate", +"deprecated", +[0,1909,2675,2934,2899,3421,4170,4342,1906], +[0,25732,1781,25723,2934,20443], +[1,2343,17519], +[0,0,17520,17521,2523], +[0,1503,1192,3130,4255], +[0,2934,2663,2940], +"is-relative", +[3,9488,17], +[1,2343,17525], +[0,17530,17531,17532,2487], +"cjs", +"detective-cjs", +[3,9509,10], +[2,17528,4354], +[0,1413,1437,25743,3440,25745], +[0,1366,1414,1909,2934,25748,25749,4193,4342,1906], +[0,2934,2663,2942,3073], +[1,2343,17534], +[0,17535,17536,17538,2537], +[0,1676,2941], +[0,1177,1903,1958,1970,2759,2934,2948,2899,4170,4342], +"indentation", +[0,2934,2663,2944,25757], +"identify", +"space", +[1,2343,17542], +[0,17543,17544,17545,2399], +[0,1676,2657,2941,3509], +[0,2934,3421,1437,2675,2899,1177,2114,4342,25763,3985,2990,192,2829,3995,1982,5467], +[0,2934,2663,4082,38], +"mm", +"egg-bin", +[1,2343,17549], +[0,17550,17552,17553,2443], +[0,1676,25771], +"ontributor", +[0,1177,1903,1938,1954,1958,1970,2759,2934,2899,4342], +[0,2934,2663,2090,2947,25774], +[2,1884,1347], +[1,2343,17556], +[0,17557,17558,17559,2537], +[0,3291,3754,25782,1552,4747,1209,4333,2026,1364,25781], +[0,1429,1149,2899,4193,4170,4342,1506], +[0,12692,3768,6812,1552], +[1,2343,17561], +[0,17562,17563,17564,2537], +[0,25789,1687,1177,25791,25792,2000,25793,2036,2607,2851,2854,3188,4127,4227,4232,4351,25794], +[0,1501,25796,1948,25797,4039,4135], +[0,1973], +"grunt-exec", +[3,2300,12], +[2,17566,2759], +[2,2235,2924], +[1,2343,17570], +[0,17571,17572,17573,2523], +[0,9478], +[0,1166,4135,25814,4481,1906], +[0,25816,15525,3378,4750,3383,6661,25188,1237], +[1,2343,17575], +[0,0,17576,17587,2537], +[0,2861,25821,1317,25822,25823,2768,1776,1209,3152,3736,25825,4019,25826,4545], +"@types/diff", +"gan.js", +[2,12456,17578], +"@types/nopt", +"all-", +"ibutors-cli", +[2,10741,17582], +[2,17581,17583], +[3,1945,18], +[3,3463,9], +[0,7189,6564,6681,6887,614], +[1,2343,17593], +[2,2036,2091], +"image-", +[2,17590,11526], +"is-ci-cli", +[0,0,17594,17596,34352], +[0,4248,2675,2297,2899,4193,1177,25846,4042,25850,25840,4535,2900,2918,2990,25844,25848,25851,2897,8850,2891,25843,2881,2912,2895,2910,25853,25838], +"side-by-side", +[0,25855,3053], +"line-by-line", +[1,2343,17601], +"difftohtml", +"colorized", +[0,0,17602,17603,2399], +[0,1317,2064], +[0,2967,2965,2966,23119,1871,19728], +[1,2343,17605], +[0,0,17606,17607,2487], +[0,20340], +[0,2966,25866,6983,1671], +"data-s", +[2,14386,3769], +[2,17608,17609], +[1,2343,17614], +[3,1915,23], +[2,17612,8861], +[0,17624,0,17628,4139], +"Directed Graph", +"directed", +" graph", +[2,17616,17617], +[2,17616,2218], +[3,1718,14], +"Directed", +"digraph", +"java", +[0,3420,2714,4390,3532,4248,3348,1437,2020,2742,3478,4207,10761,4747,25871,1680,24004,3483,4039,4135,1842,2822,3479,4430,25872,2151,2182,2720,3093,25873,13786,25874,1513,2753,2777,3181,25875,666,2188,3249,27921,91,25878,1595,2200,25879,25880,4174,2704,25881,3393,25884,4025,25886,4290,4748,25887,692,20312,9322,25888,25891,25892,3386,635,25893,26567,4728,643,3397,9479,10744,4588,16310,25898,25901,16307,25904], +"java script", +"JavaScript", +"type script", +[0,2968,6646,7117], +"vertex", +"Vertex", +"edge", +"Edge", +[1,2343,17638], +"graph theory", +"Graph Theory", +"graph ", +[2,17636,6956], +[0,17639,17646,17650,2487], +[0,25910,20314,4484], +"weighted", +"Weighted", +"unweighted", +"Unweighted", +"adjacency", +"Adjacency", +[0,811,8850,816,1009,1011,25917,25920,1429,1414,1437,1595,1610,1177,2151,15843,2070,2205,2228,2240,2247,2256,2291,2311,2314,25922,2777,25923,25925,21898,3183,2899,25928,3400,3518,25929,3541,1862,25930,814,4042,4073,4076,4135,4172,4436,4474,91,12247], +"connectivity", +"cycle", +"acyclic", +[0,7236,7303,6885,1623,6965,7025,6898,6932,7258,695,7228,6766,7028,6912,57,7121,6962,6968,590,592,5376,7198,6705], +"traversal", +"depth", +"Depth", +[1,2343,17655], +[0,0,17682,17684,2537], +"breadth", +"Breadth", +" first search", +[2,17652,17658], +"dfs", +"DFS", +[2,17656,17658], +" search", +[2,6395,17663], +[2,17656,17664], +"bfs", +"BFS", +"algorithms", +[2,17636,17668], +"repre", +"sentation", +[2,17670,17671], +[2,17636,17672], +" matrix", +[2,17647,17674], +" list", +[2,17644,17676], +"adjacency ", +"matrix", +[2,17678,17679], +"node ", +[0,48,53,87,192,5467,442,27928,19344,1193,1610,1622,1700,1701,1177,1895,20281,1938,1939,1953,1955,1982,2203,2675,1192,695,25936,2990,3144,3400,1894,4257,4294,4523,2924], +"node degree", +[0,2924,1194,695,6766,7228,1623,7121], +[1,2343,17694], +"sparse graph", +"dense graph", +"directed ", +[2,17688,17648], +"acyclic graph", +[2,17688,17690], +"DAG", +"topo", +[0,17703,17707,17708,2537], +"topologic", +"topological", +"sorting", +"strongl", +"y connected components", +[2,17698,17699], +" digraph", +[2,17640,17701], +[0,25946,25948,25944], +"weighted edge", +[2,17688,17704], +"structures", +[0,3421,4389,3348,1090,1290,2554,4255,91,4874,87,25951,25950], +[0,2970,25954,3101,18035,1747,1542,13901,1781], +" structure", +[2,2382,17709], +[3,17610,14], +[2,17710,591], +[2,6957,591], +[2,17711,591], +"in data structures", +[3,17715,17], +"DataStructure", +[2,17717,591], +[1,2343,17725], +"iterative", +"Node.js", +"CommonJS", +"UMD", +"esmodule", +[0,17728,17736,17738,4139], +"java.util", +"c++ stl", +[0,25960,15160,25959], +"c++ std", +"Python collections", +"System.Collections.Generic", +"STL", +"stl", +"Collection", +"Collections", +[0,25964,3421,2070,4389,4400,2080,4039,12694,1804,2554,640,4255,1610,25963,25968,15164,25974,25969,1705,25972,25967], +"insertion", +[0,25954,2970], +"deletion", +"OOP", +[1,2343,17742], +[0,17743,17744,17708,2443], +[0,23040,25983,25987,25990,25981,25985], +[0,3421,4389,1087,4193,1090,2080,12694,25995,26000,2554,4255,25963,1389,4092,25992,25996,1537,25994,25997,1705,25951,25967], +[1,2343,17746], +[0,0,17747,17748,2443], +[0,1166,26007,26008,26009,26006,26010,26014,3273,26015,4441,1906], +[0,2975,26006,26017,8893,1871,17354,1687,2062,2163,9549,9550,3797,26020,6109,2585,3529,19051], +[1,2343,17750], +[0,17755,6538,17756,2399], +"voice", +[2,7659,17751], +"backend-", +[2,17753,10057], +[0,635,9510,26026,1687,3181,3386,3483,4390], +[0,3378,3409,2977,200,1687], +"product", +"productivity", +[1,2343,17760], +[0,17761,17762,17771,2523], +[0,635,9479,643,1458,3386,3483,3727,29698,3917,4135,4174,9455], +[0,9516,26037,9515,9449,1437,18248,26035,4384], +[2,7659,4729], +"lodash.s", +"nakecase", +[2,17764,17765], +"builders", +[2,7659,17767], +"formatters", +[2,7659,17769], +[0,3378,3409,2977,200,9527,2979], +[2,7659,1735], +[1,2343,17774], +[0,17775,6538,17776,2523], +[0,635], +[0,3378,3409,2977,200,3358,2980,26044], +[1,2343,17778], +[0,0,17779,17780,2537], +[0,48,53,5712,5788,87,94,8850,10615,1208,1429,1597,26049,1610,32572,2759,1192,25913,26052,3183,2899,3400,3421,26053,4005,4039,4042,4484], +[0,7285,7310,6988,6847,5131,7211], +[1,2343,17782], +[0,17783,17784,17785,2487], +[0,2051,2107,10392,26060,2747,3932,814], +[0,1509,1177,1889,1895,1954,2022,2899,3421,4193], +[0,9753], +"cache-point", +[2,9480,6769], +"file-set", +[1,2343,17791], +"reduce-", +[0,0,17792,17794,2537], +[0,11976,5087,4874,8157,1595,1192,91,4579], +"without", +[0,1595,1541,8309,7193], +[1,2343,17796], +[0,0,0,17797,2487], +[0,26072,1823,26073,1936,2814,163,26074,89,4500,1002], +"walk-back", +[1,2343,17802], +"dmd-", +[3,2475,9], +[0,17806,17807,17808,4139], +"ample", +[2,17801,17803], +[2,17800,17804], +[0,1525,2992,3170,6479,26379,4745], +[0,5522,107,192,5467,442,7677,22839,26081,1610,1177,1895,1953,1955,10964,2675,3211,1894,4135,91,1984], +[0,671,3358,2989,1177,1894,4320,1501,19269,4354,1671,2649], +[1,2343,17810], +[0,17811,17812,17814,2537], +[0,26087,26090,2752,2753,26092,26095,26099,3478,4094], +[0,1503,1702,22845,2990,3074,3421,3697,4237,13351], +"jsdoc2md", +[0,200,5957,3392,9000,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], +[1,2343,17816], +[0,17817,17820,6226,2487], +[0,1486,1511,2017,3077,4038,4726], +"agnostic", +"dnd", +[0,13352,4094,13351], +[1,2343,17822], +[0,17823,17824,2514,4139], +[0,26114,26111,5438], +[0,26121,26117,10675,26122,10706,4484], +"-protocol", +[2,1730,17825], +"jsonify", +[1,2343,17831], +"rpc", +"callbacks", +[0,17832,17833,17834,2523], +[0,1209,3183,1387,26129,1549], +[0,2899,4193,1177,3215,2759], +[0,1098,14576,2947,36,5001], +"@ffmpeg-installer/ffmpeg", +[3,1733,16], +"mmon", +[2,17836,17837], +[1,2343,17840], +[0,17841,17842,17843,2487], +[0,3459,1594,710,1512,3237,1544,1457,26136,4150,2012,3427,26137,23009], +[0,2899,1177,2272,4342], +[0,6400,5001,4990,36,27,200], +[1,2343,17845], +[0,17854,17855,2514,2537], +"@puppeteer/browsers", +[3,13394,12], +"ium-driver", +[2,17847,17848], +"geckodriver", +[2,13391,17850], +[2,5680,13392], +[2,13391,17852], +[0,1457,26144,15767,4729], +[0,1509,2899,4170,4193], +[1,2343,17857], +[0,17858,17860,17861,2537], +[0,16166,2070,25923,2822,23444,3006,1209], +"posthog-node", +[0,2228,2273,2283,23466,22081,2305,3752,4193], +[0,21779,4745,16166,2228,1541], +[1,2343,17863], +[0,17864,17865,17866,2537], +[0,1144,3249,3539,6477], +[0,2228,2240,26158,1906], +[0,4796,2070,2228,3001,3529,26160,13017,3209,3005], +[3,246,8], +[1,2343,17869], +[0,0,17870,2514,2487], +[0,1596,1177,1954,1192,1894,4257], +[1,2343,17873], +"mecano", +[0,17874,17875,17876,2537], +[0,25190,3088,26169,26172,26173,26175,26178,26179,26180,26181,26182,26183,26184,26187,26189,26190,26192], +[0,3310,1187], +[0,3304,36,5122,4990,6400,5001,1594,3171,4030,3212,5592,2658,3088,5995,4967,26196,2665,27,13333,2671], +"@balena/dockerignore", +"docker", +[1,2343,17880], +[0,17882,17883,17885,2537], +"docker-modem", +[0,25377], +[0,1175,1178,1195,1198,14211,1267,26204,1290,26205,1408,1594,1895,2228,13831,2236,2253,2256,2281,2283,26208,2291,3198,26210,18463,2311,26212,17568,2675,2990,3006,2899,1894,26213,12936,91,4535,2924,4681], +"docker.io", +[0,26216,26217,13901,26218], +[1,2343,17887], +[0,17888,7923,2514,2443], +[0,1170,1676,26223,4747], +"@bevry/pluginloader", +"ambi", +[1,2343,17894], +"ansistyles", +"bal-util", +[0,17925,17932,17933,2537], +"caterpillar", +"docmatter", +"-baseplugin", +[2,1737,17897], +"eachr", +"envfile", +"errlop", +"-grouped", +[2,13771,17902], +[2,12598,17903], +"extendr", +"extract-opts", +"ignorefs", +"xtorbinary", +[2,8828,17908], +"jschardet", +"lazy-require", +[3,3732,9], +"title", +[2,17912,17913], +"query-engine", +"rfc-log-levels", +"safefs", +"ps", +"safeps", +"scandirectory", +"taskgroup", +"typechecker", +"unbounded", +"watchr", +[0,1595,1676,2071,26228,4747], +"@bevry/", +[3,17583,12], +[2,9787,17927], +[2,17926,17928], +[2,15340,6706], +"kava", +[0,1178,14080,1253,1264,1267,1734,1767,1177,1903,1938,1939,1954,1958,1966,1970,1192,3446,26230,4135], +[0,26232,26234,6698,3015,671,4749,3378,9654,1965,1644], +"projectz", +"valid-", +[2,17935,7204], +[1,2343,17941], +" and deployment", +[2,6147,17938], +" manage", +[0,0,0,17949,2537], +"ment system", +[2,17940,17942], +[2,1563,17943], +"dms", +[2,1746,17943], +" agnostic", +[2,1351,17947], +[0,5260,7268,614], +"templating", +[2,11607,5001], +[1,2343,17953], +[0,0,0,17954,2537], +[0,5194,5260,7268,614], +[1,2343,17956], +[0,0,0,17957,2399], +[0,26249,3426], +[1,2343,17959], +[0,0,0,17960,2537], +[0,26249,1420], +[1,2343,17962], +[0,0,0,17963,2523], +[0,26249,26258], +"docsify", +"docsify.js", +"tabs", +[1,2343,17968], +[0,0,0,17969,2537], +[0,26249,1675], +[1,2343,17975], +"@textlint/markdown-to-ast", +"anchor-markdown-header", +"section", +[2,9787,17973], +[0,0,0,17976,2523], +[0,26249,19400], +"bitbucket", +"gitlab", +"ghost", +[1,2343,17981], +[0,0,0,17983,2523], +[2,20413,4699], +[0,26249,3033], +"doct", +"rine-temporary-fork", +[2,17984,17985], +[1,2343,18006], +"globals-docs", +"konan", +[2,3138,14510], +"micromark-", +"util-c", +"haracter", +[2,17992,17993], +[2,17991,17994], +"filepath", +[2,13721,17996], +[3,3999,9], +"ference-links", +[2,17998,17999], +"unist-", +[2,18001,9381], +"vfile-", +[2,18003,16237], +"vfile-sort", +[0,0,0,18010,2523], +"chdir", +"-schema", +[2,1745,18008], +[0,26249,14741], +"jsdoc3", +"nums", +[1,2343,34449], +[0,26249,3038], +[1,2343,18021], +"big-integer", +"-search-bounds", +[2,17180,18017], +"int64-buffer", +"priorityqueuejs", +[0,0,0,18022,34352], +[0,26249,3040], +"semaphore", +[1,2343,18025], +[0,0,0,18026,2537], +[0,26249,26287], +[1,2343,18029], +"cosmosdb", +[0,0,0,18030,2537], +[0,26249,26292], +"cosmos db", +"document ", +[1,2343,18034], +[0,0,0,18038,2537], +"database", +[2,18032,18035], +"nosql", +[0,1209,26249,7268,614], +[1,2343,18040], +[0,0,0,18041,2523], +[0,26249,26301], +"crowdin-cli", +[3,2694,9], +"gifsicle", +[2,18043,18044], +"jpegtran", +[2,18043,18046], +"png", +"optipng", +[2,18043,18049], +[2,18043,4361], +"tcp-port-used", +[1,2343,18054], +[0,0,0,18057,2537], +"tree-node-cli", +[2,15862,1868], +[0,26249,26307], +[1,2343,18060], +"glob-promise", +[0,0,0,18062,2537], +"websites", +[0,26249,3053], +"open source", +[1,2343,18065], +[0,0,0,18066,2399], +[0,26249,7906], +[1,2343,18075], +[2,15774,1722], +"-languages", +[2,6327,18069], +"to-vfile", +[2,9406,2741], +"lru.min", +"offline-search", +[0,0,0,18076,2537], +[0,26249,1698], +[1,2343,18078], +[0,0,0,18079,2537], +[0,26249,3061], +[2,1611,1388], +"height", +"classlist", +[1,2343,18084], +[0,0,0,18085,2523], +[0,26249,3063], +[1,2343,18088], +"domelementtype", +[0,0,0,18090,2523], +"entities", +[0,26249,3065], +[1,2343,18092], +[0,18093,0,18094,2537], +[0,22983,22985], +[0,26249,1283], +[1,2343,18096], +[0,0,0,18098,2523], +"raster", +[0,26249,6925], +[1,2343,18100], +[0,0,0,18101,2537], +[0,26249,3071], +"qunit-tap", +"lodash.sample", +"paths", +"ncludepaths", +[2,8851,18105], +[1,2343,18109], +"math", +[0,18111,18115,18116,2523], +"mathml", +[0,2353,998,1856,17003,26351,26350,26349], +"secure", +"sanitizer", +"purify", +[0,3421,4389,2675,26357,1177,10824,26358,2990,15797,15804,15793,15801], +[0,3073,2942,1676,1409,4709], +[1,2343,18118], +[0,18119,18120,18121,2523], +[0,20040,16232], +[0,1906,1166,4481,4294], +[0,3656,200,8429,6876,7169,5511,2568,20597,2089,20598,6574,3073,6807,7009,8634], +[1,2343,18123], +[0,18125,18126,18127,2537], +[3,4257,9], +[0,1107,1477,4208,4294,4726], +[0,4874,4290,26371,4481,16041,1906], +[0,3073,2942,6807,200,7009,6048,7201,4166,3076,26375,26376,6811,8634,3730,10036,7521], +[1,2343,18129], +[0,18130,18131,18133,2523], +[0,26383,1676,26385,4038,26388], +[0,192,5467,26390,13757,24030,1177,1881,1895,19527,1938,1955,2151,2675,2742,3421,1894,3752,4384,91], +"expand", +[0,6807,3073,15227,202], +[1,2343,18136], +"interpolation", +[0,0,18138,18139,2523], +"substitution", +[0,26398,4874,2228,2240,2247,2253,2256,24293,2273,2281,2283,26399,26400,2765,4474,91], +[0,3073,2942,6807,1388], +[1,2343,18141], +[0,0,18144,18146,2399], +"archive-type", +"ext-name", +[0,26406,1894,91], +"filenamify", +[0,18108,3080,26408], +"is-zip", +[2,4551,1398], +[1,2343,18150], +[0,18151,18152,18153,2487], +[0,1797,1704,26413,1149,1676,7077,2026,26416,1309,1362,2712,3361,1364,4148,26417,26420,26423,26426,26429,4547,26435,26438,26443,26448], +[0,3421,1429,2228,2297,2899,4193,4707,1177,1596,2240,26453,4342,1389,1719,4196,2298,2900,2291,1575,26455,26457,2040,2236,2300,2871,26459,2283,26462,2281,25407,26465,2881,25410,26466,2895,26470], +[0,5122,7096,4030,5592,2026,4031,2934,1303,1965,12593,3259,18037,1550,3230,26472,3243,25638,14873,4217,26473,5130,5131,26474], +[1,2343,18155], +[0,18156,18159,12113,2523], +[0,9673], +"repository", +"tarball", +[0,1389,1839,4384], +[1,2343,18161], +[0,18162,18163,18164,34352], +[0,26484], +[0,4494,2675,4400,1177,1209,1701,4474,91,4874,4870,6494,192,26488,26486,13789,25298,5467], +[0,18035,1747,1804,26490,21687,2117,6671,2703,26492,26493,1388,1999], +[1,2343,18166], +[0,0,18167,18168,2523], +[0,4874,1317,668,3127,3188,1894,4384,4483,4508], +[0,6879,6650,2325], +[1,2343,18175], +"import-from", +"parse-c", +"md-args", +[2,18171,18172], +[2,4182,4562], +[0,0,18176,18177,2399], +[0,6373,968,26503,4042,4057,91,1983,1984,26504,25079,26507], +[0,26509,26510,26511,26512,26513,26514,26516,26517,26520], +[1,2343,18179], +[0,18180,18184,18187,34352], +[0,1149,1326,26528,3263], +[3,3369,12], +"ckage-data", +[2,18181,18182], +[0,1596,2759,3188,2899,3202,4170], +[3,16398,19], +[2,18185,18182], +[0,158,1398,26532,3729,24800,16662,16661,21881,20637,18048,20639,12712,26533,26534,6870,26535,1504,14908,23119,26536,26537,26539,9135,26541,26542,26543,6792,13615], +[1,2343,18189], +[0,18190,18191,18193,2523], +[0,26548,26551,16053,25874,1519,1522,26552,25190,2934,26553,3445,3762,16057,17798], +[0,2829,26192,3310,26556,1187], +"dox", +[0,3088,36,27,13333,2671,5995,2665,3304,5122], +[1,2343,18195], +[0,18196,18197,18198,4139], +[0,1437,1513,1676,1836,16473,25623,26563,2089,2149,2572,26565,2584,1161,2822,26567,26568,3188,3467,3718,12443,9340,3992,3999,26572,26573,4449,18071,4549,18002,4555,12447,3348,12449,4707,4728,26574,4747], +[0,26578,5245,12396,7637,26579,26581,4874,6520,9315,7819,26584,22092,4892,1610,19878,4207,4294,91,4579], +[0,1783,26586,26587,5472,1745], +"spawn-", +"please", +"spawn-please", +[1,2343,18204], +"@types/temp", +[0,18205,18206,18207,4139], +[0,5012], +[0,442,816,6373,1317,19839,1567,1177,1894,23535,4042,4228,4232,1984], +[0,1871,26597,12938,17950,15139], +[1,2343,18209], +[0,18210,18211,18212,2487], +[0,4729,1170,2832,4484,2018,1209,2738,7665,18730], +[0,1177,4508,9241,91,4874,3400,13204,4870,1011,10638,26606,1009], +[0,26608,21009,91,1723,10339,17623,5284,26611,26614,26617,26620,26622,24090,26624,26626,16697,26628,26631,1745,26632,26633,3091], +[1,2343,18214], +[0,18215,18216,18217,2537], +[0,1437,2051,2205,4600,3249,3505,4300], +[0,2228,2899,4170,2240], +[0,1370,2323,17461,21779], +[1,2343,18219], +[0,0,18221,18222,2537], +"bplist-parser", +[0,8780,4874,1166,2215,21537,4400,4481,1906], +[0,7148,3188,7048,17455,17453,7204,6857,3403,5933,7029,26647,26648,6899,7147,2150,17462,16503], +[1,2343,18224], +[0,0,0,18238,2523], +"alex", +[3,14237,14], +"bjs", +[2,18226,18227], +[2,1884,2081], +"fbjs-scripts", +"gulp-d", +"erequire", +[2,18231,18232], +"stats", +[2,18234,4408], +"webpack-st", +[2,18236,2187], +[0,7048], +"draftjs", +"typed-binary", +"richtext", +[1,2343,18243], +[0,18244,18245,18246,2537], +[0,10780,1139,1301,1362,26657,2866,26658,3507,4545,4736], +[0,4874,1389,26662,26663,1177,26664,2899,1241,91,4535], +[0,20697,1936,26666,4718,1783,5980], +[1,2343,18249], +"just-extend", +[0,18251,18257,18261,2487], +[3,5371,20], +[0,7709,15288,26675,26677,26678,26681,26684,26412,26685,29310,1091,1309,1437,8536,6809,1481,21847,23872,2822,2863,3000,3203,3260,3310,3363,3509,3519,3547,3951,4094,4164,4213,4246,4521,17142,1002], +"ring", +"inline-string", +[2,18250,18253], +[2,18250,2278], +"cypress-", +[0,28091,26688,9687,26690,28084,28092,20886,26694,6494,7637,5542,12461,9240,1009,1011,1177,1895,1955,2150,1192,3403,1894,4232,4342,4468,4469,4480,91], +"file-upload", +[2,18256,18258], +[2,2918,4195], +[0,5995,5592,4030,6710,91,18035,30967,28976,6354,28986,29686,26147,29690,13126,7827,25638,3259,4521,12659,1303,5165,18258,13901,6949,29732,29735,30183,6688,30184,33629,14344,29744,3097], +[1,2343,18264], +"dragndrop", +[0,0,18268,18269,2523], +" and drop", +[2,7518,18265], +[3,12322,11], +[0,19181,26706,578,583,587,32379,26707,4870,4874,4880,4883,1009,1011,1497,1637,1177,4828,1961,1209,3286,3561,3566,3613,26710,26712,1894,89,3824,4164,9348,26713,4493,91], +[0,181,26709,13083,4403,26715,26717,89,26720,91,5284,6400,4967,6073,181,26726,1487,17758,26727,4627], +[1,2343,18271], +[0,0,18273,2514,2523], +"tsutils", +[0,19987,19989,19988,2012,7115], +[1,2343,18283], +"dts-critic", +[3,7935,17], +[2,18276,594], +[2,15438,57], +[2,18276,18278], +"versions", +[2,4524,18280], +[2,18276,18281], +[0,0,18291,18292,2487], +[3,15891,13], +[2,18284,4299], +[3,7729,14], +"able-str", +"ingify", +[2,18287,18288], +[2,18286,18289], +[0,4874,1009,1011,7677,1165,1414,1177,1883,1915,2832,26743,2278,4320,5978,91,1983,26744,1984], +[0,26741,26746,1932,26747,590], +[1,2343,18294], +[0,18296,11686,18297,2537], +[2,11513,2527], +[0,3368], +[0,1783,26755,6892], +[1,2343,18299], +[0,18300,18301,18302,2523], +[0,1139,18089,26761,26762,26763,26764], +[0,5583,811,816,10615,1111,1317,1414,1429,1177,1903,2026,2193,2600,2805,5944,3112,7612,3114,26767,26770,26772,26774,26776,7617,7648,2899,26777,3278,4042,4167,4342], +[0,1783,57,20627,3105,26780], +[1,2343,18304], +[0,0,18305,18306,4139], +[0,5328,1166,5946,3165,4232,4255], +[0,1783,3105,26780,10345,26786], +[1,2343,18308], +[0,0,18309,18310,2523], +[0,5583,816,10615,1414,1177,1903,3105,7648,2899,4042], +[0,26780,3105,1783], +[1,2343,18342], +"dw-neit-", +[2,18312,1512], +"dw-neit-c", +[2,18314,11163], +[2,18315,3007], +[2,18312,45], +[3,1793,11], +"-des", +"ign-react-slick", +[2,18319,18320], +[2,18318,18321], +"rc-co", +"mponent", +[2,12796,9948], +[2,18324,18325], +[2,18323,18326], +[2,18312,18327], +[3,18328,21], +"e-observer", +[2,15557,18330], +[2,18329,18331], +[2,18329,11194], +[2,18329,11184], +[3,18334,22], +[2,18335,13168], +[3,18328,12], +"ascader", +[2,18337,18338], +[2,18337,5449], +[3,18328,13], +[0,0,18309,18352,4139], +"llapse", +[2,18341,18343], +[3,18328,11], +"dialog", +[2,18345,18346], +[3,18347,12], +[2,18348,9997], +[3,18349,13], +[2,18350,11206], +[0,26780,3105,1783,3113,26796,26799,26800], +"field-form", +[2,18345,18353], +[2,18345,158], +[3,18355,12], +[2,18356,1020], +[2,18357,11211], +"mentions", +[2,18345,18359], +[3,18360,14], +[2,18361,11215], +[3,18360,12], +[2,18363,11218], +[2,18345,9044], +[1,2343,18395], +"pagination", +[2,18345,18367], +[3,18368,12], +[2,18369,9947], +[2,18369,10148], +[2,18345,6882], +[3,18372,12], +[2,18373,11227], +"segmented", +[2,18345,18375], +[3,18376,13], +[2,18377,4021], +[3,18376,12], +[2,18379,10205], +[2,18379,11234], +[2,18379,10222], +[2,18345,17966], +[3,18383,12], +[2,18384,11241], +[2,18384,11243], +[2,18345,614], +[3,18383,14], +[2,18388,2699], +"ooltip", +[2,18384,18390], +[2,18386,11245], +[3,18387,12], +[2,18393,184], +[0,18396,18397,18398,2537], +[0,1525,1792,2051,2600,3524,4001,26806,4431,4449], +[0,1596,2759,26808,4255,4389], +[0,1783,2636,6270,1283], +[1,2343,18400], +[0,0,18401,18403,2537], +[0,4874,1414,1437,1894,3985,3998,4294,4505,91,1906], +"control flow", +[0,14903,1783,26815,176,15847,2585], +[1,2343,18405], +[0,0,18406,18408,2443], +[0,17212,4874,4880,4883,33492,668,89,3824,3857,15728,26827,91,188], +"zrender", +[0,1783,33510,89,3698,1219,188,12072,8588,23332,33512,3857,1936], +"@lang/rollup-plugin-dts", +[1,2343,18414], +[2,14678,17116], +[2,9816,1974], +"apache", +[0,18416,16487,18417,2537], +"data-viz", +[0,1537,26835,2226,26836,26837,26838,3183,26839,22230,4001,26840,22557], +[0,26786,20627,1739,1746,1745,26842,156,4017,3966,1783,5980,1932,9591,11043,4001,26843,8924,3902,176,26845,26847,10631,6033], +[1,2343,18419], +[0,18429,18436,18437,2523], +[2,6038,1541], +"gulp-e", +"xclude-gitignore", +[2,18421,18422], +"gulp-rep", +[2,18424,2902], +"gulp-tap", +"linez", +"os-locale", +[0,3167,27252,18578,26852,28035,28719,28722,26987,4290], +[3,5248,9], +"t-stream", +[2,18430,18431], +[3,11320,11], +"ugh2", +[2,18433,18434], +[0,442,19344,1091,1166,1414,26854,1177,1942,1953,1964,1982,26855,2205,2822,26696,2858,3105,26770,26776,7617,17250,17269,3400,4409,4452,91,2924,4677], +[0,1783,671,5980,26859,3124], +"@types/vinyl", +"-fs", +[2,18438,18439], +[1,2343,18445], +"fix", +"enforce", +"gulpplugin", +[0,18446,18447,18448,2399], +[0,1525,1696,2687,2822,2858,26865,3124,3105,3181,26866,25648,27921], +[0,1166,17269,1906], +[0,1783,3124,200,13326], +[1,2343,18450], +[0,0,18451,18452,2537], +[0,5517,26873,26876,16607,6063,6065,16608,16612,1448,20627,1610,12607,668,26739,1177,2600,3105,26878,26880,26881,4039,4131,23878,4484,91], +[0,1783,26885,1936], +[1,2343,18454], +[0,18457,18465,6604,2537], +"keepalive", +[2,4575,18455], +[0,9569,9573,7610,9577,9548,9568,9547,2745,9556,9565,9558,9560,9552,9562,9566,3023,3032,9563,3105,3114,9580,9584,5961,9554,4110,9550], +"aliasify", +"backport", +[3,2250,18], +[2,18460,3227], +"run", +"grunt-run", +[2,4431,4226], +[0,1389,1448,2070,9588,2899,9586,4255,4257], +[1,2343,18467], +[0,18468,0,2514,2537], +[0,1804,26895], +[1,2343,18470], +[0,18471,0,6260,2399], +[0,1282,26902,2926,3060,3070,3744,26906,3911,3935,26908,4649], +[1,2343,18474], +[2,8243,3038], +[0,18475,18476,18477,4139], +[0,97,26915,25212,26917,13746,26921,4127,15918,26922], +[0,53,13052,5825,83,87,94,19961,6503,1009,1011,1145,1195,1414,1503,1700,26703,1854,1177,1895,1903,1938,1951,1953,1955,1958,2024,11425,2061,2070,2323,2338,2036,26924,2297,2895,2900,2904,2923,4922,2925,3188,2899,3200,26925,26927,26930,26932,26933,26935,1894,3729,4193,26940,4441,4474,91,2924,26941], +[0,18108,26944,5746,26934,26945,57,7256,6988,14642,26946,26947,17679,2275], +[1,2343,18485], +"lazy-val", +"dmg-builder", +"builder-", +[2,18481,614], +"builder-lib", +[2,10735,18483], +[0,18486,18489,2514,2399], +[0,6641,26956,13651], +"-runtime", +[2,18482,18487], +[0,2899,2924], +"-ci", +"@types/is-ci", +[1,2343,18504], +"nsis", +"dmg", +"msi", +"setup", +"Windows", +"OS X", +"MacOS", +"Mac", +"appx", +"snap", +"flatpak", +[0,0,18505,18506,34352], +[0,2899,4255], +[0,3135,26963,26965], +[1,2343,18515], +"asar", +[2,8243,18508], +"notarize", +[2,8243,18510], +"osx-sign", +[2,8243,18512], +[2,8243,14566], +[0,18516,18519,18520,2537], +[0,9363,9315,26972,23289,12429,3167,26981,26983,26985,26986,26987,26990], +"-windows-exe", +[2,1615,18517], +[0,4874,1414,26992,668,17232,23276,2581,3140,26993,1894,3985,3998,4072,4505,91,1906], +[0,6892,1783,26885,26995,26564,1644,5341,1633,23266,6435,614], +"galactus", +[3,2179,12], +"info", +[2,18522,18523], +"junk", +"author", +"parse-author", +"rcedit", +[2,27093,33977], +[1,2343,18531], +[0,18532,18533,18534,2523], +[0,12396,9363,23247,23289,27003,27006,23254,4555,12449], +[0,4874,23262,1414,2581,2588,3137,27008,27010,1894,3985,3998,4505,91,1906], +[0,23266,26564,26995,2587,23267,614,6435,1783,1936], +[3,8256,10], +"ownload", +[2,18535,18536], +[1,2343,18539], +[0,0,18541,18542,2487], +"home-path", +[0,1091,10738], +[0,2382,27017,27018,1623], +[1,2343,18544], +[0,18546,0,18547,2523], +"wonderful-fetch", +[0,27073,27076], +[0,27078,2325,5576,24093,27080,27081,27083,27084,3143,27085,18037], +[1,2343,18549], +[0,18550,18553,18554,2537], +[0,18529,33978,33980,33981,33983,33990,33998,34001,27092,27094,26256,27472,27096,4484], +"-processor", +[2,6870,18551], +[0,5087,27098,4874,1130,1145,1398,2651,2675,27099,1192,3502,1894,3729,3923,4039,4393,4468,4469,4474,4487,27101,91,1002,614,2924,4677,4681], +[0,2150,17462,27103,3150,3144,2090,6771,2944,3151,27105,4607,1973,5472,3212,27106,27108,27110,27111,27112,27113,27114,27119], +"grunt-banner", +[1,2343,18557], +[0,0,18558,18559,2523], +[0,5535,5366,5087,27124,19446,4874,1009,1011,1317,1610,1177,1895,1939,1955,2024,27125,1192,3044,3057,3117,27126,13824,19445,27127,3467,1894,4039,4042,4069,4073,4075,4201,4468,4474,4484,91], +[0,7906,27130,2325,6681], +[1,2343,18567], +"@vue/comp", +"onent", +"iler-utils", +[2,4312,18563], +[2,18562,18564], +[2,18561,18565], +[0,0,18568,18577,2523], +[0,1429,2323,4193,27136,2463,4196,2447,2436,2839], +"algoliasearch", +"vue-jsx", +[2,1226,18570], +[3,1280,9], +[2,17006,18487], +[2,18572,18573], +"cp-cli", +[3,17554,15], +[0,2325,27138,2869,13901], +[2,27009,12442], +"lemefe", +[2,18576,18579], +[3,2095,9], +"gulp-cssmin", +"-editor-middleware", +[2,8427,18583], +[3,3112,13], +"hain", +[2,18585,18586], +[1,2343,18600], +"version-cli", +[2,9951,18589], +"transl", +[2,18591,6917], +"uppe", +"rcamelcase", +[2,18593,18594], +[3,4645,13], +"es2015-co", +[2,18597,14717], +[2,18596,18598], +[0,18601,18602,18603,4139], +[0,25911,3923], +[0,1329,15990,1596,1177,2759,2899,4170], +[0,2150,3151], +[1,2343,18605], +[0,0,18606,18607,2523], +[0,2025,2899,2228,2240,2300,2273,3760], +[0,3151,1973,3101,2041,7046,1398], +[1,2343,18617], +"brorand", +"hash.js", +"hmac-drbg", +"istic-assert", +[2,6907,18612], +[3,18613,13], +[2,1619,594], +[2,18614,18615], +[0,0,18618,2514,2537], +[0,2899,4170,640], +"EC", +"Elliptic", +"curve", +"Cryptography", +[1,2343,18624], +[0,8856,7938,7939,2487], +[1,2343,18626], +[0,0,18628,18630,2523], +"@ladjs/consolidate", +[0,811,8850,816,13789,7892,1166,27163,1532,1677,27164,27166,2020,2205,2709,27171,18183,27168,3919,11891,4042,4057,4060,13781,27162,4481,4507,91,1906,4748], +"@ladjs/i18n", +[0,200,20052,614,6435,1383,6478,1523,3924,3157,27173,27174,57,5675,6802,6847,8429,7201], +[1,2343,18638], +"get-paths", +"juice", +"preview-email", +"@jimp/core", +"-sendgrid", +[2,3361,18636], +[0,0,18642,18644,2537], +"lad", +"lass", +"mail", +[0,4856,6503,4874,1429,1540,2899,91,2924,4677], +"mailchimp", +[0,1698,6899,2051,1496,3048,1388], +"mailgun", +"mandrill", +"moonmail", +"postmark", +"sendgrid", +[1,2343,18651], +[0,0,18652,2514,2537], +[0,27184,2759], +[1,2343,18654], +[0,18662,18663,18664,2537], +[3,7639,9], +"ilparser", +[2,18655,18656], +"mtp-server", +[2,5051,18658], +"mailparser", +"smtp-server", +[0,1457,1525,1676,2226,16085,27189,3170,27190,27191], +[0,19181,442,27194,10723,5245,8778,4874,27196,1414,1177,1938,1953,2203,2899,1894,3980,4452,91], +[0,2947,12479,2090,13755,5351,5353,1179,1783,5352,3160,4745], +[1,2343,18672], +"yam", +"sane", +"dag-map", +"p-defer", +"tree-sync", +"console-ui", +[0,18674,0,2514,2399], +"is-git-url", +[0,27202,13223,2674,27203,27206,4039,4135,4390,4449], +"quick-temp", +[1,2343,18677], +[0,18680,18681,2514,4139], +"content-tag", +"core-object", +[0,4590,1676,3164,3494], +[0,2899,1177,2759,4342,1954,1938,1958,1903,1948,1970], +[1,2343,18696], +"capture-exit", +[2,26872,33868], +"stew", +[2,1379,18685], +[2,1379,1676], +"base-url", +[2,1463,18688], +"watch-", +"detector", +[2,18690,18691], +[2,1379,5614], +"broccoli-s", +[2,18694,5585], +[0,0,18711,18712,2523], +"-or-copy", +[2,7100,18697], +[2,1379,9381], +"-graph", +[2,14940,18700], +"is-language-code", +"-posix-path", +[2,13626,18703], +"-project", +[2,2116,18705], +[3,18701,11], +[2,18707,2942], +[2,11338,1781], +[2,6333,18709], +[0,2899,2759], +[0,27,3164], +"map-series", +[2,9466,18713], +[3,1381,10], +"iddleware", +[2,18715,18716], +"trees", +"low-trees", +[2,18694,18719], +".hash.helper", +[2,1862,18721], +[3,7648,14], +[1,2343,18738], +"rminal", +[2,18723,18725], +"fs-monitor", +[2,18707,18727], +[2,7077,2849], +[2,4099,18729], +[3,18693,12], +"fig-loader", +[2,18731,18732], +[3,18733,16], +[2,18734,4068], +"-reducer", +[2,1378,18736], +[0,18739,18749,18754,2443], +[0,53,61,5717,4851,5240,5874,5838,87,14128,90,8862,5583,811,8850,816,27221,27223,1165,7913,27225,27228,22829,1405,1420,1874,2098,2553,2929,3060,3561,3714,4042,13879,10854,4073,4076,4079,11481,4072,11482,4484,91], +"@pnpm/find-workspace-dir", +"-works", +"pace-root", +[2,18741,18742], +[2,4749,18743], +[2,2103,18744], +"ulate-cache-key-for-tree", +[2,3563,18746], +"is-pa", +[0,48,13693,27232,5522,107,1193,1610,27234,1177,27238,1895,1955,1999,2151,2675,1192,2990,27244,1894,3957,4039,4165,4294], +"missing", +"ckage-missing", +[2,18748,18751], +[2,1828,18752], +[0,6374,4042,27246], +[1,2343,18759], +"-registry", +[2,4358,18756], +[2,1828,18757], +[0,18775,0,18780,2537], +"yuidocjs", +"chai-files", +"yuidoc", +"-ember-cli-theme", +[2,18762,18763], +[3,10419,19], +[2,18765,2022], +[3,18753,11], +"-test-", +[2,18768,6706], +[2,2270,18769], +[2,18767,18770], +[3,1827,11], +"lueprint-test-helpers", +[2,18772,18773], +[0,5245,1676,26972,23289,27252,27256,17995,27259,27262,26981,27263,26985,27265,27003,27267,26986,26987], +"app-kit", +"ember", +[2,5802,18776], +"ember.js", +[0,20627,4643,3987,1936,16892,1783,26885,5980,4549,1644,57,1932,3729,3984,8924,3902,11326,207], +[1,2343,18782], +[0,18783,18797,18798,2523], +[0,15643,3530], +"amd-name-resolver", +[3,1201,14], +"ebug-macros", +[2,18785,18786], +[3,12186,15], +"ber-data-packages-polyfill", +[2,18788,18789], +[3,18790,19], +"modules-", +[2,4610,6422], +[2,18792,18793], +[2,18791,18794], +"broccoli-b", +[0,2899,3181,27275,2398], +[0,16159,27277,27278,18132,27280,7256,24440,27281,2090,1586,7131,2100,2070,21543,21544,24441,27282,27285,27287,3529,13777,6421,19051,3170,3181,3249,27289,27291,3403,13017,11601,27293,1108,6961,6920,4166,4259,21520], +"-transpiler", +[2,13830,18799], +[2,18796,18800], +[2,6324,6706], +[2,1827,18802], +"version-ch", +"ecker", +[2,18804,18805], +[2,1828,18806], +[1,2343,18821], +"@ember/optional-features", +"@ember/", +[2,18810,1871], +[2,18810,13281], +"@glimmer/component", +"@glimmer/", +[2,18814,17357], +[3,10614,11], +"s/lerna-changelog", +[2,4406,18817], +[2,18816,18818], +"ember-a", +[0,0,18836,18837,2537], +"uto-import", +[2,18820,18822], +[2,1705,1524], +[2,1828,18824], +[3,18771,12], +"-live-reload", +[2,2429,18827], +[2,18826,18828], +"initializers", +[2,3614,18830], +[2,5802,18831], +"ember-qunit", +[2,5802,14056], +[2,5802,4225], +[0,27299,7746,4874,1009,1011,1437,27301,3173,1894,23901,27302,91], +[0,7188,2090,3171,7305,7070,614], +"-channel-url", +[2,18835,18838], +[2,15508,2478], +"loader.js", +[1,2343,18843], +[0,18845,16075,18846,2399], +"ember-addon", +[0,7305], +[0,3171,553], +[1,2343,18848], +[0,11570,11571,18849,2537], +[0,27314,27315,27316,27317,27318,27319,27320,27322,27323,27315,27325,27326,27328,27330,27332,27333,27337,27338,27340,27341,27343,2262,7287,27334,27344,27346,27348,27350,27353,27355,27357,27358,17697,27359,27360,17737,17739,5284,17625,17626,676,91,17627,6869,4799,6915,6333,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,5933,1451,7914,27363,27365,17651,6899,17720,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,27366,6681,17740,1745,17116], +[1,2343,18861], +"edition-utils", +[2,18810,18851], +[3,4644,15], +[2,18853,5218], +[2,18791,18854], +"-inline-precompile", +[2,1829,18856], +[2,1199,18857], +"broccoli-p", +"ersi", +[0,18862,18866,18869,2443], +[0,4121,4388], +"stent-filter", +[2,18860,18863], +[2,18859,18864], +[0,48,53,87,192,5467,442,27928,19344,4874,1367,1610,1622,1628,1700,1701,1854,1177,1895,20281,1938,1939,1942,1953,1955,1982,2092,2203,2675,1192,2780,2832,2990,3144,3400,1894,2278,4111,4257,91,4523,2924,4677,4681], +"code-equality-assertions", +"js-string-escape", +[0,2924,1623,7682,11498], +"@emb", +"roider/test-setup", +[2,18870,18871], +[2,1828,1462], +[1,2343,18875], +[0,18879,18880,18881,2523], +"ort-", +"-global", +[2,13527,18877], +[0,27377,842,1462,27379,1676,668,2105,30621,16860,28134,27380,4072,27385,27388], +[0,27390,1177,27393,27394,10624,27395], +[0,3178,16862,676,1623,11807,1936,14357], +[1,2343,18884], +"dat", +[0,18885,18887,2514,2443], +[0,27404], +"ember-s", +[0,4384,4483,3188,4508,1894,4874], +"tyleguide", +[2,18886,18888], +[3,1243,11], +[2,18890,4486], +[2,5802,18891], +[1,2343,18896], +"ember-try", +[2,1921,2907], +[0,0,18897,18898,2537], +[0,1158,3421,4389,1177,3410,2708,1159,4103,13614], +[0,6478,7128,57,3460], +[1,2343,18900], +[0,18907,18908,18910,2537], +"@emmetio/abbreviation", +"@emmetio/", +"css-a", +"bbreviation", +[2,18903,18904], +[2,18902,18905], +[0,1525,3313], +[0,22102,1192,1894,4468,91], +"coding", +[0,27425,27428,21655], +[1,2343,18912], +[0,0,18913,18914,34352], +[0,27407,4874,13680,1414,1895,1894,4384,4474,4508,91], +[0,7148,7204,7161,7048,4014,6899,970], +[1,2343,18916], +[0,18917,18918,2514,2523], +[0,1082,3510,15450,27438], +[0,4874,7677,1446,1177,1905,5210,2807,1894,15452,91,4543,1984], +[1,2343,18920], +[0,0,18921,18922,2537], +[0,53,61,71,83,87,92,97,27445,2126], +[0,3190,27447,13795,5128,89,6071,27448,11415,27449,27456,27458,27459], +[1,2343,18925], +"finish", +[0,18926,18927,18928,2523], +[0,27464], +[0,3190,27464,27468], +[0,3190,27447,5128,89,6071,27448], +[1,2343,18930], +[0,18931,18932,18933,2537], +[0,2591,3242,1687,2070,1676,4747,2105,2822,1457,3181,3527,7801,3074,4748,27476,17450,4351,27481,4300,1874,4143], +[0,3421,1429,2931,1776,2297,4193,27510,1177,3278,3984,4039,4042,4135,2203,26079,2924,1894,1610,442,27500,91,27501,4874,2665,2900,3105,4677,4892,1509,3123,3401,10630,62,27490,27497,27506,27507,1953,17529,3125,27509,5946,3114,4923,3107,8850,27499,8862,2904,2915,2881,811,27504,4079,13866,4066,816,23652,27495,27487], +[0,2899,1973,5982,6969,4384,5472,1429,6468,1166,1192,4389,2765,2297], +[1,2343,18935], +[0,18936,18937,18938,2487], +[0,7058,3758], +[0,1429,2899,25928,91], +[0,2899,6533,3758,3197], +[1,2343,18940], +[0,18941,18942,18945,2523], +[0,1676,3135,3188,4294,6523], +[0,826,1429,6524,1177,2899,4039,27525,27526], +"entitify", +"entity", +[0,2899,2793,16237], +[1,2343,18947], +[0,0,0,18948,2443], +[0,2899,16237,27532,4504], +[1,2343,18950], +[0,0,18953,18954,2523], +"enumeration", +"datatype", +[0,1429,1177,21470,2899,4039,4135], +[0,3212,2150,1973,1182,6771,3151], +[1,2343,18956], +[0,18957,18958,18959,4139], +[0,27544,2159,15312,27547,2571,2756,3431], +[0,5517,13614,23237,27552,27555,27557,27559,27562,27564,27567,27568,27570,27571,27573,27575,27576,4874,27578,27580,19325,1159,9254,1855,1177,2011,2133,2569,2708,3410,3421,4103,4389], +[0,5472,3212,3048,3205,6692,6822,1973,6865,6739], +[1,2343,18961], +[0,18962,18967,18970,2537], +[0,12929,3369], +[3,15801,15], +[2,18963,200], +"ify-object", +[2,4745,18965], +[0,1610,1177,2899], +"issues", +"reporting", +[0,3209,7190,14419,14416,14510,22228,1973,3212,13106], +"diagnostics", +[1,2343,18973], +[0,0,7923,18974,2487], +[0,1973,3212,202,2150,2184], +[1,2343,18987], +[3,1143,20], +"function.", +".name", +[2,6688,18978], +[2,18977,18979], +[3,2620,13], +[2,18981,3053], +"oolean-object", +[2,15644,18983], +"allable", +"is-callable", +[0,0,18991,18998,2523], +"umber-object", +[2,13631,18988], +"is-string", +[0,2899,4042,4076,4170,91], +"is-subset", +[2,3024,1867], +[2,3436,6693], +"rst-selector-parser", +[3,11434,17], +[2,18996,6678], +[0,1666,3212,1973], +[1,2343,19004], +" rendering", +[2,4161,19000], +"Render", +[2,4161,19002], +[0,0,19008,19009,2487], +"test utils", +" helpers", +[2,6468,19006], +[0,2759,2272,4193,27601,4616], +[0,3212,13106,3209,1237,2325,2275,1973,27603,5472,6969], +[1,2343,19011], +[0,5621,19012,19013,2523], +[0,2323,2372,27608,2436,2447,2463,27610,2272,2839,2924], +[0,3212,27612,27614], +[1,2343,19015], +[0,19016,19021,19022,2537], +[0,7058,2070,2929,1209,11993,3084,3310,2015,27624,27623], +"airbnb-", +[2,19017,3744], +"fromentries", +[2,3436,19019], +[0,2812,4481,27633,1192,3241,27649,3533,1676,27637,1409,27635,1759,1177,3078,27658,1096,2738,3363,27656,4474,4709,27636,27643,2774,27648,1894,1596,27641,2777,3379,4342,27645,3747,91,27659,4874,27632,27655,27634,27657,27628,27644,27630,27647,25710,27660,27640,1954,27652,826,27626,1958,1895,1955,1966], +[0,27662,14584,5130,5995,27664,17829,14586,3166,11631,24090,27666], +[1,2343,19024], +[0,0,19025,19026,2523], +[0,2907,4042,1610,91,4874,2915], +[0,3220,1666,6901,1644,1671,2649,2679,6728,6804], +[1,2343,19028], +[0,19029,19030,19031,2537], +[0,3220], +[0,2228,2247,2273,2277,2281,17565,91], +[0,3220,1666,6901,27679,27680,27681,27678,16626], +[1,2343,19033], +[0,19034,19035,19037,2523], +[0,2858,27688,27692,27693,27696,3502,1894,27700,27702,27703,4745], +[0,27709,32818,7677,668,21290,3541,3985,27711,91,1984,27714], +[2,6296,3741], +[0,6038,4967,6400,27708,21290,4745], +"codependence", +[1,2343,19040], +[0,0,19061,19062,2399], +" for es6", +[2,4354,19041], +"check for ", +[2,19043,5260], +"es check", +"es matching", +"es version", +" check", +[2,5286,19048], +[3,19049,11], +"matching", +[2,19050,19051], +[2,19050,15525], +"js version", +[2,19054,19048], +[3,19055,11], +[2,19056,19051], +"test ", +[2,19058,19054], +[2,19058,19053], +[0,442,4874,7677,1177,1895,1966,1982,1894,4039,4508,4514,17223,91,4523,1983,26744,1984], +[0,27722,27723,27724,5675,27725,6400,5995], +[1,2343,19064], +[0,19068,19075,19079,4139], +"bigints", +"has-bigints", +"intl-", +[0,16003,32967,16005,16000,19267,15999,20870,23721,19282,6372,27731,1364,1367,23723,1395,1505,1525,1575,1610,1640,1759,1853,2026,9243,2040,2117,27735,27737,2626,2814,7796,3162,3230,27740,3237,3527,23726,4148], +"back-symbol", +[2,9925,19069], +[2,19067,19070], +[3,5742,14], +[2,3094,19072], +"make-a", +[0,53,68,87,27742,27743,1195,1429,1465,1540,1584,1628,1651,1177,1881,1938,1982,26154,2092,2675,2899,12690,3322,3363,4307,4342,2924,4677], +"unction", +"sync-function", +[2,19074,19077], +[0,20897,27746,6910,18035,27747,8626,8298,27749,1550,3230,27750,27751,27752], +"reflect", +".ownkeys", +[2,19080,19081], +[2,7315,7262], +[2,5511,19083], +[1,2343,19086], +[0,19087,19088,19089,4139], +[0,1395,27759,27762], +[0,3421,4481,29749,1429,1437,2899,4193,27764,4747,1177,4135,27765,2026,2822,4474,1894,4196,91,5307,4856,4874,1436,27767,6503,6513,27768,5254,6494,27772,27775,27776,27779,6512,27781,27782,4232,1951,1978,1895,1955,608,603,1011,27786,15115,27790,27792,1009,10964,549], +[0,3230,13392,11489], +[1,2343,19091], +[0,19095,19098,19103,2399], +"es6-symbol", +"esniff", +"next-tick", +[0,27798,3230,27799,27800,3242,27801], +"plain", +[2,19096,4007], +[0,30604,29957,4874,27803,27805,27807,1091,1414,1448,18192,1177,13850,2026,2151,2600,21630,3044,27810,20451,3127,3188,2899,3220,27786,12690,29780,3275,3754,4193,29998,91,4523,3348], +"ecmascript5", +"ecmascript6", +"extensions", +"addons", +[0,3230,1746,11415,2844,18035,27812,2382,27814,3766,18037,3469,1747], +[1,2343,19105], +[0,19106,19107,19109,2523], +[0,1605,1541,1292,4218,4545,4220,27822], +[0,2228], +"es5 shim", +[0,3233,27826,27827,20863,27829,27830], +[1,2343,19111], +[0,19112,19107,19113,2523], +[0,1541,1544,3233,27835,27822], +[0,3233,27837,27826,27827,27838,12619,20863,27840], +"rettime", +[1,2343,19116], +[0,19117,19131,19133,4139], +[0,27847,1676,3230,27849,27852,27855,27856,27857,27859,3427], +"json3", +[2,1379,4042], +"git-repo-", +[2,19120,15525], +[2,1379,4650], +[2,1379,4535], +"-phantom", +[2,3736,19124], +"6-plugin-strip-class-callcheck", +[2,1172,19126], +[3,14198,32], +"nstants", +[2,19128,19129], +[0,1166,1503,1177,1903,1920,1938,1954,1958,1970,27861,27866,27869,27872,27873,27874,27875,3421], +"futures", +[0,3236,3230,1550,13392], +[1,2343,19135], +[0,19136,19137,19139,2523], +[0,1304,1676,1704,3440,16128], +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4237,4342], +[3,7872,9], +[0,2026,27,2942,2663], +[1,2343,19141], +[0,7936,7938,7939,2399], +[1,2343,19143], +[0,19144,19147,19148,2399], +[0,4729,4038,1676,27764,4238,27897,27899,3183,9241,3084,27902,1537,27910,3923,27905,14731], +"es6-tests", +[2,12790,19145], +[0,3421,1429,4389,4193,1177,2202,3188,4039,4170,4216,668,2203,4474,1457,1894,27912,442,3697,3980,91,4856,4874,19325,6513,1834,27918,27920,19181,12310,5536,5476,10936,27924,1938,1895,1955,1011,1567,5478,27915,1009,10614], +[0,3241,27927,20001,20003], +[1,2343,19150], +[0,0,19152,2514,4139], +[2,31089,9224], +[0,2675,2899,1177,1894,2025,2990], +[2,31715,31719], +[1,2343,19155], +[0,19156,19157,19158,2399], +[0,27936,1525,1676,25625,25635], +[0,192,5467,16607,6065,16608,16612,2899,4131,4255], +[0,18035,3243,14872,36,27939,26472,27940,27942,25635,27944,26472,27945,13531,27948], +[1,2343,19160], +[0,19162,19163,19164,2443], +"special", +[0,27959,617,9213,27962,977,2220,27964,9218,9219,3509,3527,19114,4266,9221,4454,4507,27955,4747], +[0,192,5467,19151,19181,442,17982,5497,9225,9226,8648,6494,27966,4874,19153,1009,1011,5474,1170,13662,1527,1610,1613,1652,668,8161,1177,1895,1955,2026,2078,19213,2070,2832,27967,2931,2990,27969,1894,23535,3957,4039,9245,4493,91,4523,4548,4027,1984,9250,2924,9258,3244], +[0,5592,3212,8788,6812,6688,36,11100,1852,5472,6400,10768], +[1,2343,19166], +[0,19169,19170,19173,2537], +[2,18756,4219], +[2,1370,19167], +[0,27978,1410,1537,3188,3427,1000,1695], +[0,1693,2026,2139,27981,2899,3421,4039,4255,27984], +"-everywhere", +[2,10906,19171], +[0,1669,3689,15237,2139,27986,2026,2663], +[1,2343,19175], +[0,19176,8134,19178,2537], +[0,22970,27992,3181], +[3,442,8], +[0,18132,2100,2070,21543,21544,3529,13777,3181,13017,11601,21520], +"config-array", +[2,19177,19179], +[2,19177,1998], +"@humanwhocodes/module-importer", +[3,19182,15], +[2,19183,1153], +"@nodelib/fs.walk", +"esquery", +"imurmurhash", +"-without-jsonify", +[2,2851,19188], +"levn", +[1,2343,19196], +"@eslint/co", +[2,19192,23], +[2,442,1803], +"@trunkio/launcher", +[0,19197,19198,19199,2523], +[0,4538,2657,4100], +[0,3421,27999,2899,1177,3188,4039,4339,4012,1948], +[0,2090,9229,2141,3101,6949], +[1,2343,19201], +[0,19211,19212,19214,2537], +[2,3192,5130], +[2,11095,19202], +[3,1992,9], +"lease", +[2,19204,19205], +"eslint-r", +"ule-composer", +[2,19207,19208], +"eslump", +[0,2100,2151,2859,1209,5303,3445,3348], +[0,2765,3421,33373,3980], +"fs-teardown", +[0,1649,1936,28007,3256,28009,28012], +[1,2343,19217], +"metascraper", +[0,0,19228,19229,2537], +"-description", +[2,19216,19218], +[3,19219,12], +[2,19220,158], +[2,19220,11255], +[2,19222,4147], +[2,19220,17913], +"node-po", +"lyfill-webpack-plugin", +[2,19225,19226], +[0,1999,1429,4770,2899,1177,2272,4042,3758,4535], +[0,3257,1283,5354,1797], +"npm-license", +"polyfills", +[2,4065,19231], +[1,2343,19234], +[0,0,19236,19237,2399], +"yorkie", +[0,1759,2323,2384,2508,2675,2297,2881,2908,2915,28023,28024,1894,25851,2907,4039,4042,4072,28027], +[0,10052,8691,28030,7131,6333,7518], +"sql-escaper", +[1,2343,19240], +[0,19241,19245,2514,2443], +[0,1325,3923,4100,28036], +"ape-runner", +[2,1285,19242], +"eslint-f", +[0,1087,1177,4127,28038,28039,28040], +"ind-rules", +[2,19244,19246], +[1,2343,19249], +[0,19250,19251,19252,2537], +[0,3080,24383,18073,2685,19238,28047,28049,28052], +[0,1414,4494,28059,2203,1894,1317,1610,442,3560,91,4874,28056,19181,27928,6473,1895,1955,1011,28058,1009,13188], +[0,3259,5576,36], +"using-browser-globals", +[2,12084,19253], +[1,2343,19256], +[0,19257,19258,19259,2443], +[0,21243,3427,21246], +[0,2759,1362,2899], +[0,19138,1862,28067,21244,5194], +[1,2343,19264], +[3,3703,10], +[3,9487,11], +[2,19261,19262], +[0,0,19265,19266,2537], +[0,28072], +[0,3417,202,15525,10057,28074,202,17180,1263], +[2,15998,23720], +[1,2343,19272], +"quality", +"jslint", +"code style", +[0,0,19274,2514,2537], +"verify", +[0,1326,1525,2070,705,3923,4384,1695], +[1,2343,19276], +[0,0,19277,19278,2537], +[0,4548,4874,91], +[0,28088,2382,705,1781,18037,3166,2378,18035], +[1,2343,19283], +" config", +[2,1177,19280], +"@lezer/highlight", +[0,19284,19285,19287,2523], +[0,5012,1634,1639,28094,26902,28095,17011,7917], +[0,10821,10828,10837,5087,4874,5090,4880,1177,10619,2675,28098,1192,2968,28101,2990,1894,3744,89,3824,3904,4039,4232,4469,4484,91,2924,4676,4681,4749], +[2,15289,17540], +[0,1623,590,592,3528,2378,2994,89,676,7164,7165,369,4636,4627,4315,28103,5547,5376], +[2,19289,1564], +[3,28155,14], +[1,2343,19291], +[0,0,0,19292,4139], +[0,3348,3778,3265,1002], +[1,2343,19294], +[0,19295,19296,19297,2537], +[0,18509,1170,1809,2151,28115,28116,3079,3275,28118,4108,4232,4449,4747], +[0,5245,4864,28120,5087,21621,4874,28123,6520,4892,1009,1011,1804,1177,1895,1955,1192,3541,1894,4039,4469,91,2924,4677], +[0,28125,1804,1896,970,21009], +[1,2343,19299], +[0,19300,19303,19304,2487], +[0,4729,3467,4390,2806,3445,3348,1170,1473,2072,4747,20991,1209,3078,3127,3188,3483,4135,3013,4708,4734,2003,3742,4167,1137,1457,1894,3761,4473,3181,28130,1483,4183,4227,91,28132,8612,28133,19499,28135,20949,28136,28137,14774,28142,3762,635,28145,28151,19288,1573,20934,28155,28158,28164,28214,28167], +"eslint-patch", +[2,9112,19301], +[0,1429,2228,2675,2899,4193,26212,2759,9241,13214,4856,4874,7819,2314,2990,9357,28177,28178,6513,4892,28180,4870,28182,5254,28184,28187,28189,7812,7749,14352,28192,28195,1431,2258,4232,2247,2283,33046,28203,9417,28206,5244,28211,1567], +[0,3271,91,5284], +[1,2343,19306], +[0,19307,19321,19322,2487], +[0,28219,28223,28224,1759,2665,28225,3232,3519,1552,18730,28228,26940,4545,3348,28230], +" Standard Style", +[2,17626,19308], +"code checker", +"code linter", +"code st", +"andards", +[2,19312,19313], +"policy", +" style", +[2,4255,19316], +[2,590,16792], +"style ", +"style linter", +[0,811,8850,816,23689,4874,1009,28232,1610,1177,21564,1938,1953,1958,2323,2441,28233,2765,2766,671,3275,3421,28234,3752,4039,4042,4193,4232,4255,4474,15097,91,28235,2924,18237], +[0,28238,28241,17134,28242,28243,207,28244,28245,28246,28247,28248,28249,28251,28253,28256,28258,28260,28261,28265,28266,4420,28267,28269,28271,28273,28274,28275,28277,28280], +[1,2343,19324], +[0,19326,19327,19328,34352], +"@types/tape", +[0,2714,1149,4747,28285], +[0,3421,4616,1177,1596,28287,3980,10614], +[0,8309,28289,28291], +[1,2343,19330], +[0,0,19331,19340,2523], +[0,2899,4039,21228], +[3,19180,15], +[2,19332,3323], +"__js", +[2,5601,19334], +"automd", +"eslint-t", +"ypegen", +[2,19337,19338], +[0,200,1585], +[1,2343,19342], +[0,0,19343,19345,2523], +[0,4874,4880,1009,1011,1587,1177,1895,1955,1959,1961,1161,1894,4484,91], +[3,7844,24], +[0,28303,6085,89,1896,28304,12780,190,5995], +[1,2343,19351], +"xoxo", +"hugs", +"kisses", +"happy", +[0,19352,19354,19355,2537], +[0,1149,3188,4545,3012,28310], +"happiness", +[0,1429,2899,4193,705,1525,28312], +[0,18035,27814,21687], +[1,2343,19357], +[0,19358,19360,19361,2523], +[0,2685,4113], +"cabin", +[0,2861,17910,2899,3756,3760,4170,4193,4734], +[0,27,2671,2869,705,5576,15237,9229,2658,25386,17481,8426,8431,977,7436], +[1,2343,19363], +[0,19364,0,19365,2523], +[0,28324,28325,1525,1595,2720], +[0,200,12659,13527,1523,6876,678,4636], +"boolean", +[1,2343,19368], +[0,19369,19370,19371,4139], +[0,28331,1149,28333,13223,1483,1512,1525,1645,2098,28335,1209,3188,28340,28342,28344,28346,3718,4135,28348,4717,4736], +[0,28353,1429,1705,28356,18420,1177,1942,13231,1951,1966,2822,2899,3297,3421,28358,3938,4153,4167,4193,4734], +[0,3283,28360,5592,5472,15656,28362,4030], +[1,2343,19373], +[0,19374,19375,19376,2537], +[0,30869,28367,28371,28372,13471,13474,13476,30243,13495,13497,13500,13502,28373,1537,2674,28375,27967,2854,28379,3923,28380,4135,4715], +[0,7709,28384,36559,28387,28390,28394,692,28395,28396,28399,1091,1149,1168,28400,1414,13838,1525,1570,28401,13848,1177,1942,28406,2070,2212,2675,1776,2990,3019,3297,3747,3752,4039,28408,4193,4339], +[0,13539,6681,27838,14029,28411,28413], +[2,5223,594], +[2,1876,19377], +[1,2343,19381], +"is-bun-module", +[0,19382,19383,19384,2523], +[0,97,28418,977,12105,3424,28420,3698,28423,3348], +[0,5154,48,53,14167,83,87,90,92,28436,842,16145,966,968,972,20562,974,5087,4874,28426,28425,4880,4883,1165,28435,28433,1540,1637,1192,2780,2802,3244,3286,3561,3566,3640,89,3824,4705], +[0,89,6710,3424,2038,28438,5165,3287,16944,5168,28439], +"@types/is-", +[2,19385,2070], +[1,2343,19388], +[0,0,0,19389,2523], +[0,3286,1149,28445,28446], +"node-lib", +[1,2343,19392], +[0,0,0,19393,2399], +[0,1098,1973,5472,3212,8788,4627,12442,7170,9962,11100,28453,28454,4967,6400,1192,2765,1843,13106,7190], +[1,2343,19395], +[0,19396,0,19397,2537], +[0,13,28459,8597,1668,4484], +[0,5127,4964,1098,181,5130,4967], +[1,2343,19406], +[3,16405,17], +"defaults", +[2,19399,19400], +"-azure-pipelines-cli", +[2,1529,19402], +"riendly-formatter", +[2,19244,19404], +[0,19407,19408,19409,2537], +[0,2212,3348,4745,16509,2057,3028], +[0,1429,1437,2899,4193,4874], +[0,3290,28467,28468,3014,28469], +[1,2343,19416], +"enhance", +"-visitors", +[2,19411,19412], +[2,1876,594], +"espurify", +[0,0,19417,2514,2399], +[0,1429,1544,2899,3754,4151,4333], +"-spelling-correcter", +[2,3166,19418], +[1,2343,19423], +"ava-rule-tester", +[2,1876,19421], +[0,19424,19425,19426,2487], +[0,1676,28480,19400,1804,28483,28484,2835,28485,3188,16112,3441,4039,28486,4238], +[0,1149,1304,27731,1362,1429,1431,1177,1895,1955,2026,2675,2899,28488,3246,3549,1894,4151,4237], +[0,3292,1804], +[1,2343,19428], +[0,19429,19430,19431,2487], +[0,28494,28498,28500,4856,28502,14552,11869,15374,1371,28503,1437,1458,1483,28504,28505,1759,1797,1842,2070,2832,1209,3181,3183,2899,28510,3445,3467,20460,4130,4135,28512,4294,4558,3348], +[0,221,842,4874,1009,1011,1587,1610,1177,2675,2742,2822,2990,3200,4925,28514,28517,3215,3297,3421,89,3824,4039,4146,4474,4481,28519], +[0,3294,28521,28522,5472,11132,14336,11861,28525,11862,4627,11857,1973,1388,5131,8791,13426,1649,2899,13428], +[1,2343,19433], +[0,19437,19447,19450,4139], +"ast-m", +"etadata-inferer", +[2,19434,19435], +[0,11124,826,28535,18248,3509], +[2,19192,13172], +[3,5536,14], +"16", +[2,19439,19440], +"aniuse-lite", +[2,4857,19442], +[3,6309,16], +"moize", +[2,19444,19445], +[0,11134,28537,1389,2675,2832,8821,2990,2899,28539,3421,1894,3752,28542,28543], +"config-erb", +[2,15086,19448], +[0,1973,5472,21147,3212,4731,36], +"kangax", +[1,2343,19453], +[0,19454,19455,2514,2537], +[0,28550,617,2854], +[0,2212,3421,1429,1192,2899,4193,1177,4039,1894,2139,1719,3752,4196,91,3400,15342,4131,1954,1951,826,1938,1958,1895,1903,7935], +[1,2343,19457], +[0,0,19458,19459,2443], +[0,1317,1326,28556,1177,2151,29197,3697,4135], +[0,28558,28559,11154,970,1326,3122,14655,3263,3299], +[1,2343,19461], +[0,19465,19470,19471,2537], +"/plugin-pwa", +[2,4613,19462], +[2,10982,19463], +[0,1496], +"eslint4b", +[3,4630,11], +[2,19467,6038], +"vuepress", +[0,3421,2228,2899,4170,1596,2240,18463,91,4874,18555,1506,28565,22081,2247,2283,28567,28570], +[0,2325,20164,2703,6884,3250,3151,6943,202,3143,3048], +"exported", +"eslint-env", +"eslint-en", +[2,19474,4000], +"eslint-d", +"isable", +[2,19476,19477], +[2,19478,10240], +[3,19479,15], +"next-line", +[2,19480,19481], +[1,2343,19484], +[0,0,19485,19486,2537], +[0,4874,28577,2151,2675,2899,3421,4039,91,28580], +[0,202,3111,13017,6956,28582,6899,6726,2382,13626,28583,1745], +[1,2343,19495], +[3,8097,32], +[3,1879,9], +"mments", +[2,19489,19490], +[2,19488,19491], +"ot-an-aardvark", +[2,16819,19493], +[0,19496,19497,19498,2487], +[0,1672,28589,28590,2179,3183,3330,814,4135], +[0,4874,1177,1938,2675,2990,1894,4384,28593,4453,4474,91], +[0,22687,2999,4345,3233,2282], +"@foxt/js-srp", +[2,4284,12118], +[1,2343,19506], +[3,15471,15], +"anonical", +[2,19502,19503], +"gitdown", +[0,13856,11488,19507,2443], +[0,3308,7204,4014,28599,2090,14629,17721,2150], +[1,2343,19509], +[0,19510,19511,19517,2537], +[0,21642,28604,28605,28608], +[0,10614,842,5601,1009,1011,7677,17298,1622,1177,17300,1930,1942,1945,1948,1953,17303,17306,1964,1985,17308,2675,17310,2931,2990,3124,3125,3390,17312,1894,17314,3708,3980,28611,17318,4493,91,1984,17319], +"@html-eslint/eslint-plugin", +[3,19512,13], +[2,19513,57], +"link-check", +[2,3115,19515], +[0,3113,2869,26800,26799,28613,28614,28615,28617,28618,28619], +[1,2343,19519], +[0,19520,19521,19529,2537], +[0,16566,28624,21163], +[0,1079,13867,1410,1414,1429,1431,28626,21480,1596,2139,13870,2899,3480,28628,4481,1906], +[2,13039,7015], +[3,1143,17], +"indlastindex", +[2,19523,19524], +"doctrine", +[2,17612,202], +"object.g", +[0,1612,27,1862,705,7085,7289,4731,7102], +"roupby", +[2,19528,19530], +[1,2343,19536], +"/template-parser", +[2,1177,19533], +[2,12908,19534], +[0,0,19537,19542,2487], +[0,1389,1525,1610,1177,28635,2026,2297,2871,2881,2891,2895,2897,2900,2904,2912,2915,2921,28636,2925,2899,3202,28638,3421,15767,2924,4677,28639], +"escope", +"fs-copy-file-sync", +"linklocal", +[2,3045,4552], +[0,28641,28642,28643,28644,1616,12588,28645,28646,28647,28648,27,2671,3135,11996,28649,28650,28651,28652,28653,4160,28654,28655,28656,21000,28657,28658,28659], +[1,2343,19546], +"npm-which", +[2,4523,1574], +[0,19547,19548,19549,34352], +[0,1170,1676,1209], +[0,1429,2899,3752,4193], +[0,1885,6599,6645,586,12296,28666,28647,28667,2109,12295,1121,8899], +[1,2343,19551], +[0,19556,19557,19558,34352], +"@schemastore/package", +"ts-export-assignment", +[2,13996,19553], +[2,13970,19554], +[0,1362,3310], +[0,1429,1177,1192,4193], +[0,28674,28676,28677,1885,14554,28678,28679,28680,28681], +"-repositories", +[2,1992,19559], +[1,2343,19562], +[0,19563,19564,19572,2537], +[0,16473,28688,2215,26567,3368,3727,4135,4390,27921,4707], +[0,1326,1610,1177,2899,3263,29197,28691], +"@es-", +"joy/jsdoccomment", +[2,19565,19566], +"are-docs-informative", +[2,13721,5651], +"spdx-expression-parse", +"synckit", +[0,970,11154,1237,3122,14655,1326,14654], +"@es-joy/", +[2,19573,1875], +[3,19567,13], +[2,4522,1574], +[2,19575,19576], +"@hkdobrev/run-if-changed", +"pree", +[2,5600,19579], +[2,5600,3766], +"defaultsdeep", +[2,6308,19582], +"@types/sp", +"dx-expression-parse", +[2,19584,19585], +[3,5210,11], +[2,1226,19587], +"ype-", +"pratt-parser", +[2,19589,19590], +[2,13587,19591], +[2,3032,1697], +[1,2343,19596], +"open-editor", +[0,19597,19598,19599,2523], +[0,1632,2591], +[0,16868,1448,1610,1177,28698,2616,3321,28699,28702,15512,28704,2654,28706,28707,3493,4039,25213,4257,4474,4749], +[0,1936,57,6710,91], +[1,2343,19604], +[0,68,5522,107,19492,19194,19605,19609,19344,23339,6503,19616,4874,5254,1009,1011,1414,19619,668,1177,1895,1933,19620,1942,19622,1945,1948,1953,19623,1955,1964,1988,17308,1994,2018,2203,2899,3486,1894,4135,4320,19624,4323,19626,19629,1531,4494,91,4523,19630,4614,4630], +[0,13678,13679,13681,34352], +[1,2343,34428], +[0,19613,19618,19631,2523], +"@ota-meshi/eslint-plugin", +[3,19605,11], +"-kit-eslint-editor-vue", +[2,13755,19607], +[2,19606,19608], +"-scope", +[2,5601,19610], +[3,19611,14], +[0,1149,28713,1676,2026,2070,3507,1997,4135,4148,28715,28716,28717,4707,4729,4747], +"@types/na", +"tural-compare", +[2,19614,19615], +"xbytes", +[0,1429,2151,1161,2272,2899,3378,1862,4039], +"env-cmd", +[2,1931,5550], +[2,18008,8546], +[2,17585,19621], +[2,1954,8770], +[2,4946,12054], +[3,5978,26], +[2,19625,188], +[3,4330,11], +"tylus", +[2,19627,19628], +[2,4609,19466], +[0,1676,6782,3323,15267], +"jsonc", +[1,2343,19634], +[0,19635,19636,19642,2443], +[0,1080,1560,1704,2145,20103,3164,3171,3494,3781,1000], +[0,4856,6503,1009,1011,1429,1177,1881,1895,1938,2675,2899,3421,1894,4193,4196,4474,4481,91], +"-flow", +[2,12184,19637], +"axobject-query", +"damerau-levenshtein", +"es-iterator-helpers", +[0,3212,13106,28726,6710,676,5472,1973,27,28728], +[1,2343,19649], +"jsx-ast-utils", +[2,9551,2640], +"regex-test", +[2,4099,19646], +[2,18996,7015], +[0,19651,19652,19653,2399], +"to-ast", +[0,28733,2755,4135,28735,3348,4707], +[0,1587,1610,1177,1900,1903,1938,1954,1958,2675,1192,2990,28737,1894,4039], +[0,28740,28743,22005,28744,22011,15844,28747,28748,9044], +[1,2343,19655], +[0,19656,19658,19659,2523], +[0,1304], +[2,18576,13064], +[0,1364,2026,2899,4170,4342], +[0,3424,28438], +[1,2343,19661], +[0,16583,11580,11581,4139], +[1,2343,19663], +[0,19664,19665,19666,4139], +[0,20584,3188,3278,3368,3393,3411,1997,4039,4135,4390], +[0,1168,2272,3297,4389], +[0,970,11154,1237,3122,14655,1326,17180], +[1,2343,19668], +[0,19669,19670,19672,2537], +[0,3299], +[0,2899,1177,28768,640,1610,91,4874,6503,1011,1009], +[2,1927,8982], +[0,28770,6621,7009,28771,28772,28773], +"ts-i", +[1,2343,19677], +"gnore-import", +[2,19673,19675], +[0,19678,0,19679,4139], +[0,28792,28790,28782,28786,1304,1309,1594,2026,2151,28783,3368,4135], +[0,6038,8899,28794,2124], +[1,2343,19681], +[0,19682,19683,19684,2399], +[0,3263,2164,2070,3157,1437,1209,640,2185,28799,1615,28800,28802,28804,26567], +[0,3421,2899,1177,4039,2151,28806], +[0,1623,22022,7121,2278,4329,590], +[1,2343,19686], +[0,19690,19691,19693,2537], +"-helpers", +[2,9654,19687], +[2,7627,19688], +[0,12680,28813,28816], +[0,3421,4389,4193,1090,1177], +[3,3995,13], +[0,16618,5957,12692,1605,28821,27105], +[1,2343,19695], +[0,19697,0,19698,2537], +"@chromatic-com/storybook", +[0,3460,1512,3171], +[0,27,2947,2090,36], +[1,2343,19700], +[0,0,19701,19702,2523], +[0,3421], +[0,6926,6668,3348], +[1,2343,19704], +[0,0,19705,19710,2399], +[0,2151,2899], +[2,19707,103], +[3,35573,13], +"ug", +[2,17304,19708], +[0,28837,2282,28838], +[3,3708,17], +"kg", +[2,19711,19712], +[1,2343,19715], +[0,19716,0,19717,4139], +[0,6523,4747], +[0,28844,6574,11100,28845,6807,2013,28847,28849,28850,5957], +[1,2343,19719], +[0,19720,19721,19722,2537], +[0,3354], +[0,28856,28858,4874,1177,1894,3706,4493,91,8552,1984], +[0,28860,57,9381,3354,28861], +[1,2343,19727], +[3,19525,24], +"tosorted", +[2,5613,19725], +[0,19730,19733,19737,2443], +"repeat", +[2,18996,19728], +[0,2571,2741], +[2,5609,14255], +[3,5235,22], +[0,13614,1158,1177,2708,17400,3410,3421,3435,4103,4389], +"unction-bind", +[2,19732,19734], +"ls-engines", +[0,2051,6970,28869,1496,1585,24135], +[1,2343,19739], +[0,19740,19741,19742,2523], +[0,2212,3263,2856,3776,1209,4391,2151,640,3337], +[0,4647,2899,2272,1168,1448,28877,2759,1173,1596,2820,28879,17370,1267], +[0,28881,28882,3358,970], +[1,2343,19744], +[0,0,19746,19747,2487], +"refa", +[0,28043,1409,1414,1177,1895,2203,28890,28891,28892,28894,1894,2658,28895,18661], +[0,28897], +"analysis", +"-ast-analysis", +[2,6961,19749], +"scslre", +[1,2343,19760], +"eslint-s", +"-rule-tester", +[2,11298,19754], +[2,19753,19755], +[2,19758,29135], +[3,17306,17], +"@types/pako", +[0,19762,19763,19764,2523], +[2,3192,15264], +[0,1457,1676,13775,3181,28904,4135,18174,4351,4453,28903], +[0,192,5467,1149,1506,1177,2675,2899,3421,3752,4131,4170], +[0,200,3233,3233,5001,22687,28908,2999,7009], +[1,2343,19766], +[0,19768,0,2514,2523], +"safe-regex", +[0,1797,4384], +[3,19494,16], +"desecurity", +[2,19769,19770], +[1,2343,19774], +[2,202,1965], +[0,19775,19776,19777,2537], +[0,4039,1764,28917,4747,4135], +[0,705,4389], +[0,28921,3364,7242,28125,13527], +[3,3568,11], +"red-black-tree", +[2,19778,19779], +[1,2343,19785], +"al-red-black-tree", +[2,19076,19782], +[2,5537,19783], +[0,19787,0,19788,2523], +"sonarjs", +[0,28367,1091,1092,20437,12384,1096,28927,1170,1364,1457,1575,1594,1648,2026,9243,28929,28930,2070,2593,28933,28934,2856,28935,2863,28936,3083,12792,28940,3230,3241,3277,16617,28859,3361,3445,3519,28944,1552,2999,4010,28945,28948,4709,7801,4745,4747], +[0,28950,3366,5284,6710,5130,5995,4967,12660,28951,28954,28956,28957,1781,28959,2844,2856,4745,1896,28960], +[1,2343,19790], +[0,19791,9888,19792,2537], +[0,4545,1437], +[0,10446,28967,9753,14690,57], +[1,2343,19794], +[0,19796,6538,2514,2523], +[2,4353,67], +[0,23432], +[2,19612,594], +[2,5600,594], +"@types/less", +[2,13058,3675], +[3,4890,11], +[2,19801,4332], +"svelte-i18n", +[1,2343,19806], +"sveltejs", +[0,0,19807,19808,4139], +[0,2398,3183,2899], +[0,28977,28978,28979,2090,28980,17996,18442,28981,7517,2150,3374,3403,10903,15323,4207,28982,28983,28984,28985], +[1,2343,19810], +[0,0,8134,19813,2537], +"-formatting", +[2,1939,19811], +[0,3374,1002,12831,15427,1871,28992,28994,3766,3767,28996,4301,6678,28997], +[1,2343,19815], +[0,0,0,19816,2523], +[0,29004,28992,1388], +[1,2343,19818], +[0,19819,19820,19821,2537], +[0,1437,16064,1494,1595,1700,29013,1874,2020,5989,29016,2613,15980,2704,2720,2744,29018,29020,29022,2991,29023,3074,3157,29024,29025,21420,3445,29026,27534,3505,27168,3919,4094,4135,5513,26573,4562], +[0,21642,5254,1166,1532,24491,2151,29028,4193,4294,4400,29030,1906], +[0,13326,200,3378,20001,3358,6645,15525,15208,1528], +[1,2343,19823], +[0,19828,19830,19831,2537], +[2,1463,6961], +"regexp-", +"regexp-tree", +"regjsparser", +[0,3242,2714,4390,2070,3368,3917,4248,23433,1437,3478,4707,23432,3483,4135,9448,1458,29037,21505,640,3727,29039,3181,9451,9452,2976,2979,2981,29042,29044,4425,29051,2215,29053,25881,29054,29055,25888,29056,29057,9459,4351,2613,3386,3762,635,29059,25893,26567,29061,9462,29063,643,9465,3397,29066,29067,9476,9479,9539,19570,638,4588,9496,9501,9506], +"@lubien/fixture-beta-package", +[0,1091,4384,1687,3297,9542,3984,4039,1483,3988,29069,1092,29070,3393,10630,29071,29073,9515,9516,26037,29077], +[0,1161,5260,6878,6661], +[1,2343,19833], +[0,19834,19840,19845,2537], +[0,1499,3467,3157,1437,2020,2742,1695,29085,2205,1209,4135,7094,3537,1703,2720,3181,3309,4294,4425,3505,29088,9478,6045,14564,29084,4562,29087], +"@ver", +"/eslint-config", +[2,5401,19836], +[2,19835,19837], +"bumpp", +[0,1906,1173,1282,1267,1255,1245], +" eslint plugin", +[2,1984,19841], +"eslint ", +[2,19843,1932], +[0,3378,29093,4796,17507,13729,4354,24313,5592,24095,200,6953,29095,29096,7242,4797], +[1,2343,19847], +[0,0,19848,19852,2537], +[0,29101,17212,4856,9417,29103,29104,12458,29105,7637,29111,4870,6503,4874,29115,29117,20374,6510,7812,5254,29122,6513,29125,1009,1011,1420,1429,1431,21480,1437,1483,1525,1610,20573,1177,1895,29128,1903,1938,1942,1953,1958,2071,27125,2105,29129,2613,2714,2822,2858,29133,3019,1209,3125,2899,3397,3400,3478,13723,3530,1894,3730,29136,29087,4038,4039,11054,4135,29138,4170,4193,4232,18201,4294,4474,91,29139,4558,4562,29140,1983,29141,29142,26744,4749], +"name-", +[2,19849,1155], +[2,4732,19850], +[0,4796,3378,6661,3076,29144,18280], +[2,4807,19851], +[1,2343,19855], +[0,19856,6538,2514,2523], +[0,2613,3727,4135,4588], +[1,2343,19858], +[0,19859,19865,19867,2487], +[0,1091,8531,1437,1595,1676,2205,2687,2745,2858,3074,3157,3545,4135,4207,4300,4507,4588], +[3,10879,16], +[2,19860,13921], +"importx", +"ink-", +[2,19863,1975], +[0,5087,4874,1009,1011,668,29154,1177,29155,29158,1930,1938,1939,1955,1982,2089,1192,17312,29160,1894,4468,91], +"eslint-test", +[0,671,9654,6661,13716,29162,3390], +[1,2343,19869], +[0,19870,19872,2514,4139], +[0,15980,3727], +"esrecurse", +[0,635,9516,9515,29169,4384], +[1,2343,19874], +[0,19875,19876,19879,2399], +[0,9459,25336,26567,21505,29176,29174,3386,3727], +[0,9516,9515,9448,3297,28691,4248,4384], +[2,1006,13060], +"json-diff", +[0,3378,29179,1612], +[1,2343,19881], +[0,19882,19885,19886,2537], +[0,1437,26079,3919,3181,1110,1615,4165,3152,29185], +[3,8724,21], +[2,19883,676], +[0,3421,4749,2899,1177,4039,1503,3479,2151,4874,3696,1280,29188,13983,1225], +[0,200,1523,29190,4990,3378,29191,18462,21003,4144,12804,5957], +[1,2343,19888], +[0,19889,19890,19886,2443], +[0,4707,26079,3530,1110,1615,4165,3152,9488], +[0,1414,2931,4749,1776,2899,1177,23909,29197,1159,17529], +[1,2343,19892], +[0,19893,8134,19894,2523], +[0,16687,20789], +[0,3378,18462,3403,3383,20052,17180,20054,1508,200,6876,16701,8435], +"-fb", +"esprima-fb", +[1,2343,19898], +[0,0,19899,19900,2523], +[0,5087,4874,1009,1011,10817,1177,1895,1192,2990,26230,4039,4042,4468,91], +[0,29208,1745,29210], +[1,2343,19902], +[0,19903,19904,19915,2537], +[0,1437,1479,1525,1676,2720,3741], +[0,1429,2899,3215,4255], +"escomplex-js", +"thing.js", +[2,7067,19906], +[3,2912,12], +"techpreview-launcher", +[2,19908,19909], +[2,17485,18551], +[2,813,19911], +"8.0.0", +[2,5857,19913], +[0,18497,3378,29218], +[1,2343,19917], +[0,19918,19919,19923,2487], +[0,2720,3776], +[0,1173,1212,1245,29224,1280,3400], +"gulp-ta", +"g-version", +[2,19920,19921], +[0,3378,200,8429,1523,3888,8791,24095,3409,29227], +[1,2343,19925], +[0,19926,19927,19928,2487], +[0,2571,3183], +[0,13614,1159,9254,1177,2708,2807,3421,4103,4389], +[0,3410,16774], +[1,2343,19930], +[0,19931,19932,2514,2487], +[0,9892,25886,29239,10744], +[0,4384,9515,9516], +[1,2343,19934], +[0,0,19935,2514,2537], +[0,1429,2814,2832,2899,29246], +[1,2343,19938], +[2,2009,10896], +[0,19947,19949,19951,2537], +"@ethereumjs/config-nyc", +[3,19939,19], +[2,19940,1894], +[2,19940,11540], +[3,19942,21], +[2,19943,671], +[3,17583,11], +"karma-tap", +[0,1437,1482,29251,2674,2720,29253,4135,8363,4747], +"typestrict", +[0,1366,1501,19771,2556,620,3203], +"transactions", +[0,1965,3413,19773], +[1,2343,19953], +[0,19954,19958,19959,2523], +[0,29260], +"-cryptography", +[2,9439,19955], +"rlp", +[0,5087,4874,1009,1011,1587,1177,1895,1955,2675,1192,1894,3720,4039,4468,4474,91], +[0,3414,29263,200,5122,8310,18496,89,202,91,5284,2924,1192,4967,5995,12660], +[1,2343,19966], +"@types/assert", +"cp256k1", +[2,5252,19962], +"karma-t", +[2,19964,2528], +[0,0,19967,19968,2487], +[0,1429,2258,2277,2298,2300,23167,2297,2878,2881,2895,2900,2904,2915,3006,2899], +[0,3415,6988,1671,6901,29269,29271], +[1,2343,19970], +[0,19973,19975,19978,2523], +"es-lookup-scope", +"os-tmpdir", +[0,29276,29277,1525], +"qs-iconv", +[0,48,53,87,94,1195,1208,1212,1544,1593,1610,1177,1881,1938,2026,2151,2182,29280,29282,29283,29285,3421,3524,4151,4535,4537,2924], +"eval", +"evaulate", +[0,1283,17950], +[1,2343,19980], +[0,0,0,19981,2523], +[0,2703,202], +"pause-stream", +"combiner", +[2,4279,19983], +[1,2343,19990], +"asynct", +"it-is", +"stream-spec", +"ubelt", +[0,0,19992,19993,2399], +"flatmap", +[0,5517,13614,23237,19325,1159,1414,9254,1177,2807,2708,3410,4103,4389], +[0,3417,3418,2649], +[1,2343,19995], +[0,0,0,19996,2399], +[0,1623,12080,29300,13777,3585], +"addEventListener", +"addListener", +"pub/sub", +"emits", +"publish", +[1,2343,20004], +"subscribe", +[0,20005,0,20006,2537], +[0,1797,3467,4449,2117,3445,4745,1170,1495,4484,4747,1759,2687,4135,2089,1836,2777,3181,4459,1477,3527,4393,1480,2149,2858,3404,4290,4748,1763,4480,29306,24759,29308,29309,29310,29313,29317], +[0,9621,9622,8174,9623,9624,9625,9626,9627,9628,9659,9648,9649,29319], +[1,2343,20013], +"-browser", +"-browsers", +[2,7177,20009], +"sauce-", +"sauce-test", +[0,20017,20020,20021,2537], +"EventEmitter", +[2,20014,1276], +[2,20014,1278], +[0,14022,8697,29324,1573,1677,2102,2105,15261,2179,2070,11935,29325,14024,29328,11938,11940,11943,3093,29330,3478,29334,4025,4039,4174,29335,14025,4747], +"Events", +"reactor", +[0,29338,13103,4019,4232,4255,4257,4384,3348,4707], +[0,4504,16237,20049,5472], +[1,2343,20023], +[0,20024,20025,20026,2523], +[0,29358,8818,5941,28935,26865,13824,12285,3509,29349], +[0,29355,29359,29362,4874,4493,91,1984], +[0,5592,2210,3452,29365,29367,29368,29369,29370,3422,1118,27662,1745], +[1,2343,20028], +[0,20029,20030,20031,2537], +[0,29358,29377,2822,12285,8126], +[0,29355,7637,29380,3297,4493,91,1984], +[0,5592,1118,2210,1745,27662,29370,3422,3452,29369,29365,29368,29367,28360,8124], +[2,3159,591], +[2,13788,20032], +"human-", +[2,20034,7073], +[1,2343,20037], +[0,0,10435,2514,4139], +"final-newline", +[2,4293,20038], +[3,4759,11], +[1,2343,20045], +"get-node", +"is-in", +"is-in-ci", +[0,0,20046,20048,2523], +[0,1906,1166,1209,3130], +"is-running", +[0,3048,3426,2051,3583,6778,5286,5258,6805,29390,6422,1858,1388], +"subprocess", +"fork", +"execfile", +"bin", +[1,2343,20055], +"binaries", +[0,0,20056,20057,2537], +[0,1389,2323,2346,27608,29396,2436,2447,2463,2494,2496,2530,2272,2839,2297,2881,2900,2899], +[0,3048,3428,4160,3135], +[1,2343,20059], +[0,0,20060,20066,2487], +[0,13614,29404,1159,1593,22932,1855,1177,2133,2159,2070,29406,2569,29410,2708,2762,19073,3206,3410,3421,4103,23948,4135,19729,4389], +"stdio", +"stderr", +"drain", +"flush", +"3584", +[0,3430,7123,3048,1646,3721], +[1,2343,20068], +[0,0,20069,20070,2537], +[0,13614,13616,1177,14741,29416,2741,4389], +[0,6801,3432,6964,1858], +[1,2343,20073], +"-jsdom-abstract", +[0,0,20077,20078,4139], +"expect-", +[2,20074,594], +[2,552,20075], +[0,3421,1429,2899,1596,3202,29424], +[0,1697,3403,7318,29426,3038,3205,1758,3743,3048,7002,29428,29429,6692,3639,6803], +[1,2343,20080], +[0,20081,20084,20086,2487], +[0,1417,7272,13609,29440,2569,3433], +"mkal", +[2,1949,20082], +[0,13613,13614,1389,1177,2133,2159,13619,2571,3206,3410,3421,4103,6810,4389], +"pkg-pr-new", +[0,7276,3426,6789,2051,7107,6970,7288,6849,6763,6422,1858], +[1,2343,20089], +"type-check", +[0,20090,20091,20092,2487], +[0,1417,7272,13609,29440], +[0,13613,13614,20492,1159,9254,1177,2159,13619,2708,3410,3421,4103,4389], +[0,6944,6694,6801,3437,6693,7221,6615,7194,1858,3048,3432,6422,6763], +"orms", +[1,2343,34459], +[0,29450], +"array-f", +[0,3421,2899,1177,1954,1938,1958,1903,1948,1970], +"array-flatten", +"setprototypeof", +"merge-de", +[1,2343,20104], +"scriptors", +[2,20100,20102], +[0,20107,11686,20108,2537], +"-password", +[2,16722,20105], +[0,29456], +[0,3441,3046,6985,16114], +[1,2343,20110], +[0,20111,20112,20113,2537], +[0,29462,29464,1138,1457,1615,2687,4459], +[0,21122,4874,2675,2990,1894,4039,91], +[0,2070,2282,1444], +[1,2343,20115], +[0,20116,20118,20119,2523], +[0,29474,3029], +[2,30722,20731], +[0,6503,29476,1503,2272,2899,3203,3210,3421,4474,91], +[0,29478,28794,29479,24996,29480,25004,20181,29481,29483,6667], +"automatically", +[2,1163,8623], +[3,20121,11], +[2,20122,7120], +[2,20121,2353], +[1,2343,20126], +[0,20127,8002,20128,2523], +[0,29488,29490,28428,24488,28429,27908], +[0,1896,3445,3456,8423,8427,6587,8430,8428,10441,8429,1388,6038,8435,8433,1002,10443,10446,7058,1614,2978,1451,3729,5351,2090], +[1,2343,20130], +[0,20131,20132,20133,2523], +[0,2096,2185,3157,3445,4400], +[0,1166,2020,1906], +[0,13326,200,1896,3445,3456,8423,8427,6587,8430,8428,10441,8429,1388,6038,8435,8433,1002,10443,10446,1614,2978,1451,3729,5351,2090], +[1,2343,20135], +[0,20136,20138,20139,2487], +[0,29501,29505,12285], +"express3", +[0,5087,7637,8818,1170,29509,1192,2845,29512,3244,1894,4232,4468,4474,91], +[0,3452,8124,5576,1170,4967,1388,3212,91], +"partials", +[1,2343,20142], +[0,20143,20144,20145,2523], +[0,1677,2639,2854,3105,3744,89,3824,1155], +[0,68,470,1173,1248,15643,1596,1177,1879,1881,1938,1947,1958,1959,2200,2626,1192,3363,3400,705,4008,7707], +[0,8124,3452,29521,1936,1745,1179], +"unless", +[2,2032,20146], +[1,2343,20149], +[0,20152,20153,20154,2443], +"authn", +"authz", +[0,6825,3263], +[0,2070,705,4389], +[0,3455,29528,23196,29531], +[1,2343,20156], +[0,0,5795,2514,2487], +[1,2343,20158], +[0,20159,20160,2514,4139], +[0,29539,705], +[0,1173,1267,1177,1879,1938,1947,1959], +[1,2343,20162], +[0,20163,9839,20128,34352], +[0,2755], +"caching", +"expressjs", +[1,2343,20167], +[0,20168,20169,20172,2537], +[0,4720,3183], +[0,29551,4384], +"cjs-mock", +"hoare", +[0,7233,7058,5675,57,7119,200,1523], +"tRPC", +"RPC", +"express.js", +[2,10988,16957], +[1,2343,20180], +"fully-typed", +"type-safe", +[0,20187,20191,20192,4139], +"pi", +"typed-api", +"express-api", +"http-api", +"client-s", +[2,20185,2847], +[0,1637,29559,3561], +"unit-testing", +[2,13843,5576], +"web-de", +[0,1175,1193,1245,1257,1264,1628,1192,4307,2924], +[0,6829,11337,2054,16862,6707,7293,2924], +"velopment", +[2,20190,20193], +"web-api", +[1,2343,20197], +[0,20198,20199,20200,2443], +[0,29566,29567,4717,20088,19190,26007], +[0,29569,2899], +[0,14690,6802,29572,200], +[3,8286,12], +[2,20201,364], +"lient-", +"redirects", +[2,20203,20204], +[2,13224,20205], +[2,20201,20206], +[3,20207,13], +[1,2343,20210], +[0,20213,20214,20216,4139], +"reset-classic", +[2,20208,20211], +[0,1437,1477,1480,29018,16232,3074,29581,4290], +[0,4874,1166,2188,29583,4481,1906], +"sanitization", +[0,200,1478,6787,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], +[1,2343,20218], +[0,20219,20220,20222,2399], +[0,1834,29590,29591], +[0,2012,2530,2272,3102,3159,2899,3760,4170,4600], +"openapi3-ts", +[0,1149,5957,12804,2940], +[3,19441,15], +[2,20223,6643], +[1,2343,20228], +"wagger-ui-express", +[2,5051,20226], +[0,20229,20230,20231,2443], +[0,1149,1362,18443,9421,1209,3507,29600,29601], +[0,1414,1437,2070,2899,3230,3259,3519,4135,4170,4193,4246], +[0,3469,27812,18035,3259,25638,29605,7827,3230], +"camelize-ts", +[1,2343,20234], +[0,0,0,20235,2537], +[0,202,888,364,1237], +[1,2343,20237], +[0,20238,11686,20239,2487], +[0,19972,25493], +[0,6639,6884,4571,29615,3403,3741,29616], +[1,2343,20241], +[0,0,20242,20244,2537], +[0,4856,4864,6503,4874,4891,26584,1429,2020,2151,2899,3377,4474,2924,4707], +"snakify-ts", +[0,5194,6778,29622,29624,18135,1871,1283,8958], +[3,18009,14], +[2,20245,4990], +[2,4120,7020], +[3,8116,9], +[1,2343,20253], +"pecification", +[2,20248,20250], +[2,4364,1745], +[0,0,0,20254,2523], +[0,3475,5317,29632,29633,3474,9006,4967,1388], +[1,2343,20256], +[0,20257,20258,20259,2523], +[0,29638,1525,2131,2742,2975,4135,4449,36872], +[0,19181,442,19344,9237,18491,4874,5254,6520,36890,1009,1011,1177,26698,4039,91], +[0,200,29641,19101,20001], +[1,2343,20261], +[0,20264,20265,20267,2523], +"-symbols", +[2,3426,20262], +[0,3480], +[0,4874,1166,1702,4481,1906], +"is-extendable", +[0,1862,2018,2013,13771,2016,26349,6868,20000,15535,19138,29647,29648,6703,29649,1803,1388,965,1149,7003,6567,1362], +"array-slice", +"benchmarked", +[1,2343,20271], +[0,0,20274,20276,2523], +"for-own", +"kind-of", +[0,1166,1437,1702,17474,29654,17477,4481,1906], +"props", +[0,1862,3053,29656,6703,6910,21369,7253,25824,29657,1149,7003,6567,1540,6994,12804,1362], +[1,2343,20278], +[0,20279,20285,20286,2537], +[0,2017,3480], +[2,20284,29685], +[2,1884,2924], +[3,4679,10], +[2,20282,3031], +"@pa11y/", +[0,13789,5366,4874,1317,1701,1702,17474,18669,29654,17477,4481,4494,91,1906], +[0,1862,3768,28483,7051,6760,6994,6925,7094,6882,6870,7072,27334,27338,29664,12692,5957,1149,7003,6567,1362], +[1,2343,20288], +[0,0,20289,20291,2443], +[0,1166,1702,17474,21638,4193,17477,4481,1906], +"@types/yauzl", +[0,1862,17481,1851,29672,1149,7003,6567,6901,17480,12618,1362], +[1,2343,20293], +[0,20294,20295,20296,2537], +[0,2070], +[0,1192,1894,10761], +[0,1745,3709,29679,6774], +[1,2343,20298], +[0,20299,20300,20301,2523], +[0,20280,1169,1324,1525,1842,2929,3257,3357,3758,4135], +[0,1414,1177,29689,2899,29691,10627,4193], +[0,6653,7320,19748,31152,13716,13428,11346,1169,16790,200,33055,29727,34150,26632,3482,3758,11937,34151,5472,1155,34152], +[1,2343,20303], +[0,20307,20308,20309,2537], +"gulp-jsdoc3", +[2,2462,6504], +[2,4598,353], +[0,29069,9510,9479,9539,643,9448,29051,21505,3386,3393,9462,3397,3727,29698,29697,4248,4390], +[0,635,9516,9515,2613,29169,3297,29701,4039,4384], +[0,6666,3378,3358], +[1,2343,20311], +[0,20313,20315,20316,4139], +"color-support", +[0,22970,22971,29707,1668,18145,29708,1209,3074,3093,3478,3545,4507,29711], +[2,13721,15526], +[0,13789,11477,4870,4874,29717,977,1701,2096,2182,29721,3505,29722,4494,91,1906], +[0,27968,5351,13755,5122,1002,23992,4202,12197,29724,29726,13008,8745,8340,6398,17461,3758,3195,158,8221,8924,1936,29727,23691,20630,20631,18048,20637,21881], +"console.log", +[1,2343,20320], +"timestamp", +[0,0,20321,20322,2537], +[0,4874,7677,22839,33261,35609,1177,1938,1942,2832,91,1983,1984], +[0,4967,5995,5354,4963,181,6624,24456,23362,27448], +[1,2343,20324], +[0,0,20326,20331,2443], +"pure-rand", +[0,87,5583,811,816,1177,2193,2899,3253,26777,3421,4042,4073,4167], +[3,16596,12], +[2,20327,2024], +"poisoning", +[2,20327,20329], +[0,15008,25386,25388,16518], +"based", +"based testing", +[2,4635,20333], +[2,11861,10428], +"quickcheck", +[1,2343,20338], +[0,20343,5795,20344,2487], +"jscheck", +"jsverify", +"fuzz", +"fuzzer", +[0,27404,1437,12084,2021,2088,2185,2205,2654,2863,3157,3173,3490,814,29742,4562,4748], +[0,3487,5995,200,29744,5592], +[1,2343,20346], +[0,20352,20356,20357,2523], +"@fast-c", +"sv/format", +[2,20347,20348], +"@fast-csv/", +[2,20350,1644], +[0,29749,3084,4339], +"writer", +"csv writer", +"CSV", +[0,442,1759,1177,1895,1938,1953,1955,1958,2203,1209,2899,1894,4419,1531,91], +[0,3487,5576,10768,29752,36,5995,5592,4030,1781], +[1,2343,20359], +[0,0,20360,20361,2487], +[0,1362,1429,1506,2899], +[0,12804,4166], +"psql", +[1,2343,20364], +[0,20367,34487,20379,34352], +[3,19185,12], +[2,20365,4262], +[0,97,5663,1620,29762,29765,4729], +"macchiato", +[2,20365,20368], +"erge2", +[2,6502,20370], +"@types/pi", +"comatch", +[2,20372,20373], +"bencho", +"rmlnc", +[2,16693,20376], +"fdir", +[0,6599,5131,5592], +"hereby", +[1,2343,20383], +"snap-shot-it", +[0,20386,0,20387,2523], +"imple", +[2,20384,1744], +[0,18089], +[0,1936,57,12075,29790,10658,2062,29791,29792,15512,3493,1753,29793,29794,1644,4141], +[1,2343,20389], +[0,0,20390,2514,2487], +[0,2899,1177,2759,1317,29801,1311,1954,1938,1958,1903,1970], +[1,2343,20392], +[0,20393,20395,20396,2399], +[0,29806,4578,1433], +"strnum", +[0,1429,2899,3095,3752,1434,29810], +[0,2026,1544,1303,20150,5165], +[1,2343,20399], +"js2xml", +[0,20401,20402,20403,4139], +"json2xml", +[0,3501], +[0,3095,2899,1429,1434], +[0,3495,3497,1303,20150,5165,13445], +[1,2343,20405], +[0,20406,20407,20408,2537], +[0,1433], +[0,2899,1429,1434], +[0,3495,2703,1303,20150,5165,29824,6875], +"avvio", +"toad-cache", +[1,2343,20421], +"find-my-way", +"@fastify/", +[2,20413,1851], +"-warning", +[2,3729,20415], +"abstract-", +[2,20417,6807], +"-my-request", +[2,13318,20419], +[0,20429,20407,20430,4139], +"-json-parse", +[2,18112,20422], +[3,16781,12], +"ringify", +[2,20424,20425], +[2,8530,4643], +[2,20413,20427], +[0,29829,3501], +[0,3495,1303,20150,5165,20151,14374,3424,28438], +[1,2343,20435], +"-compiler", +[2,20426,20432], +[2,20413,20433], +[0,20438,20439,20430,2523], +"h2url", +"ajv-i18n", +[0,29835,3424,1433,26413,4578], +[0,3095,2899,1429,3752,1434], +[1,2343,20448], +"autocannon", +"fast-json-", +"body", +[2,20442,20443], +"merge-patch", +[2,8530,20445], +"branch-c", +[0,0,7878,20455,2537], +"omparer", +[2,20447,20449], +[2,3125,1276], +"fluent-", +[2,20452,2845], +[2,20413,3697], +[0,3495,15393], +[1,2343,20457], +[0,20458,0,20459,2523], +[0,3729,614], +[0,6804,3403], +"piscina", +"@vercel/n", +[1,2343,20483], +"@vercel/ncc", +"loader-", +[2,20464,8791], +[3,12397,15], +[2,20466,2924], +"@umijs/b", +"abel-", +"preset-umi", +[2,20469,20470], +[2,20468,20471], +[2,1221,18104], +[2,4524,20473], +[3,1233,25], +[2,20475,15301], +"tyled-", +[2,20477,4963], +[2,5584,20478], +"@umijs/c", +"ase-sensitive-paths-webpack-plugin", +[2,20480,20481], +[0,0,9264,20486,4139], +"ader-runner", +[2,13513,20484], +[0,1388,1389,3403], +[1,2343,20488], +[0,0,20489,20497,2523], +[0,1906,1166,4481], +[2,19523,3036], +[2,5613,4565], +[2,5613,3053], +[2,5613,6645], +[2,5613,6913], +[2,18996,4237], +[2,4385,57], +[0,3403,3504,29854,2090,17996,2150,17462,16503,7318,4262], +[1,2343,20501], +"anything", +"protocol", +[0,0,11332,20502,2537], +[0,3403,18104,2090,4014,28977,29862,3506,15174,614,594,364,6805,6422,1858,2741,13735,4354], +[1,2343,20504], +[0,0,20505,20506,4139], +[0,29867,5535,4874,5254,7677,26881,4201,91,1984], +[0,2026,6961,4082,7433], +"fbjs-css-vars", +"setimmediate", +[1,2343,20510], +[0,0,20511,2514,2523], +[0,4874,7677,1446,668,1177,1905,2807,1894,91,4543,1984,28862], +[1,2343,20513], +[0,20518,20530,11581,2537], +"@skypack/package-check", +"dead-code-elimination", +[2,9403,20515], +[2,7911,20516], +[0,2760,2856,18545], +"in web", +"in javascript", +"in react", +"Plug & Play", +[3,11608,13], +[2,7519,4963], +"ui component", +[2,16914,6286], +"advanced ", +[2,20527,5983], +"scan", +[0,2152,2899,3699], +"scanner", +[1,2343,20534], +"phonebook", +[0,20535,20552,20554,2537], +[0,29882,29884,3486,3923,23952,3348], +"autofillotp", +"share", +[2,7426,17357], +[2,2998,20538], +"mylocation", +[2,13735,20540], +"colorpicker", +"wakelock", +"WhatsappShare", +"NetworkConnection", +"TextToSpeech", +"VoiceRecognition", +"SnapScanner", +"Network", +"Monitor", +[2,20549,20550], +[0,4874,1398,2018,1894,4389,91], +"View360", +[0,2636,1179], +[1,2343,20556], +[0,20557,20558,20559,2399], +[0,1620,10752,29893,29894,29895], +[0,53,8229,87,442,5583,1193,29897,27401,1377,1389,1424,1505,1177,2193,2203,1192,2780,11348,1783,29899,1894,3754,4042,8849], +[0,2636,29901,29903,11812,1746,13814], +[1,2343,20563], +[3,5085,23], +[2,20561,582], +[0,0,20564,2514,2537], +[0,1362,29908,1429,29913,1506,2899,3697], +" program", +[2,6564,20565], +"data ", +[2,20567,6355], +[1,2343,20570], +[0,20571,20572,20578,2537], +[0,25624,29919,29923,29920,29918,29928], +[0,28042,29934,1149,1362,1499,29933,91,1984,23539], +"dequal", +"glob-", +[2,20574,3508], +[3,16396,12], +[2,20576,3508], +[0,18035,29937,3519,14871,25638,14873,29938], +[1,2343,20580], +[0,20581,20582,20583,2523], +[0,3524,4237,4709], +[0,1173,1175,1178,1257,1264,1267,14237,1177,1881,1935,1938,2126,29945,1192,2774,29946,10622,4039], +[0,3520,3521,13392], +"detect-libc", +[1,2343,20587], +"thread", +[0,20588,20589,20590,2443], +[0,2057,2151,29952,22667,3730,705,17047,4707], +[0,1177,2276], +[0,3521,29727,3364], +[1,2343,20592], +[0,20593,20594,20590,2523], +[0,1863,2057,2151,29952,22667,3730,705,17047,4707], +[0,1177,2276,824], +"@pinojs/redact", +[1,2343,20599], +"figure", +"fallback", +[0,20600,20601,20602,2523], +[0,1137,1512,1543,29964,1591,16442,2765,3183,3456,3459,6331,29965,3547,3741,3762,705,4167,4562], +[0,18007,1177,1900,1903,1938,1954,1958,1970,2759], +[0,200,1591,3525,29969,29971], +[1,2343,20604], +[0,0,11488,2514,2443], +[1,2343,20606], +[0,0,0,20607,4139], +[0,7009,1512,6983,200,7201], +[1,2343,20609], +[0,0,20610,20612,2523], +[0,1177,27275,2398,2899,3421], +"filesaver", +[0,2070,3529,3530], +"saveas", +"blob", +[1,2343,20616], +[0,7936,7938,7939,4139], +[1,2343,20618], +[0,0,20620,20625,34352], +"strtok3", +[0,1166,29991,4481,27659,1906], +"token-types", +"-extra", +"-extras", +[2,15149,20623], +[0,19138,7241,1862,6567,29994,12918,202,21244,28067,6270,353,4719,21009,6715,1149,7003,6778,1362], +"@tokenizer/token", +"commonmark", +"noop-stream", +[1,2343,20633], +"pic", +"picture", +"photo", +[0,20692,20693,20765,2399], +"video", +"exif", +"macho", +"jpg", +"apng", +"gif", +"flif", +"xcf", +"cr2", +"cr3", +"orf", +"arw", +"dng", +"nef", +"rw2", +"tif", +"bmp", +"icns", +"jxr", +"psd", +"indd", +"rar", +"7z", +"mp4", +"mid", +"mkv", +"webm", +"mov", +"avi", +"mpg", +"mp2", +"mp3", +"m4a", +"ogg", +"opus", +"flac", +"wav", +"amr", +"epub", +"mobi", +"rtf", +"woff", +"woff2", +"eot", +"ttf", +"otf", +"ico", +"flv", +"xz", +"xpi", +"cab", +"deb", +"rpm", +"Z", +"lz", +"cfb", +"mxf", +"mts", +[0,30001,30004,30007,30011,20416,30015,30017,18730,20595,30018,30019], +[0,5517,36559,30022,4874,1090,30024,28400,1409,1676,21594,1177,1938,1953,1954,1958,2020,30025,30027,2702,1192,3073,3079,30028,29197,28941,3697,3752,3756,4039,4135,4238,30029,4294,4389,4431,4474,4481,91,4709], +"webassembly", +"blend", +"bpg", +"docx", +"pptx", +"3gp", +"j2c", +"jp2", +"jpm", +"jpx", +"mj2", +"aif", +"odt", +"ods", +"odp", +"heic", +"pcap", +"dsf", +"lnk", +"voc", +"ac3", +"3g2", +"m4b", +"m4p", +"m4v", +"f4a", +"f4b", +"f4p", +"f4v", +"mie", +"qcp", +"asf", +"ogv", +"ogm", +"oga", +"spx", +"ogx", +"ape", +"wv", +"cur", +"nes", +"crx", +"ktx", +"dcm", +"mpc", +"arrow", +"shp", +"aac", +"mp1", +"s3m", +"xm", +[2,12207,35471], +"skp", +"lzh", +"pgp", +"chm", +"3mf", +"zst", +"jxl", +"vcf", +"jls", +"pst", +"dwg", +"parquet", +"arj", +"cpio", +"ace", +"avro", +"icc", +"fbx", +"vsdx", +[0,2062,2942,3101,1781], +[1,2343,20767], +[0,0,20768,20769,2537], +[0,1177,1895,19286,1954,1955,2675,1192,1894,4400], +[0,3378,30036,30037,3304,30038], +[1,2343,20771], +[0,20772,20773,20774,2523], +[0,3549], +[0,1177,25843,91], +[0,158,26020,1687], +[1,2343,20776], +[0,20777,20778,20779,2487], +[0,30055], +[0,1906,1166,4481,4400], +[0,3383,1781,7914,3378,13864,2100,2104,2105,7076,6614,6605,2090,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], +[1,2343,20781], +[0,8400,8134,20782,2523], +[0,4750,3383,2090,2100,2104,2105,7076,6614,6605,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], +[1,2343,20784], +[0,0,10435,20785,2523], +[0,18523,2041,6661], +"locate-path", +[1,2343,20790], +"-magic", +[2,1981,20788], +[0,20791,0,2514,2523], +[0,30071], +[1,2343,20793], +[0,20794,20795,20798,2443], +[0,10780,1301,4736], +[0,1389,2899,16112,4770], +"detect-file", +"resolve-dir", +[0,13336,1388,16718,2072,57,6523], +[1,2343,20802], +"dir-polyfill", +[2,4571,20800], +[0,20803,20804,20805,2537], +[0,1104], +[0,1177,1889,1954,2022,2899,3421,91], +[0,1851,1932,2541], +[1,2343,20807], +[0,20808,8134,20809,4139], +[0,30088], +[0,23869,30090,3547,23868,30091,4718,1871,30092,30093,30094], +[1,2343,20811], +[0,0,20812,20813,34352], +[0,1429,2759,2899,1899], +[0,23869,30090,3547,23868,23877,2712], +[1,2343,20815], +[0,20816,11488,20817,4139], +[0,30110,30115,30106,30122,1112,1149,29183,1457,30117,1525,1606,1673,1676,1836,2015,30104,3188,3278,30107,30108,30119,30112,30120,8630,4135,4232,4243,30105,2822], +[0,200,21110,21111,2041,3548,30124,3073,1781,2026,2556,30125,2999,30127,30128,30130,30131,30132,30134,7047,22850,30135,27662,13325,5258,30137,30139,30140,30141,30142,20997,20998,28845,4345,30143,3363,30144,17979,30147,27838,30140,30148,2134,28413,30149,13539,3111,21102,30153,30155,30156,30158,24093,17878,1605,20999,30159], +[1,2343,20854], +"@firebase/app", +[3,20819,11], +"uth", +[2,20820,20821], +"@firebase/", +[2,20823,614], +[2,20823,13901], +[2,20823,18035], +"nalytics", +[2,20820,20827], +[2,20819,2063], +[3,20829,14], +[2,20830,553], +"firestore", +[2,20823,20832], +[3,20833,11], +"unctions", +[2,20834,20835], +[2,20823,8899], +[3,20829,15], +[2,20838,14044], +[2,20822,4097], +[2,20823,6681], +[2,1161,10653], +[2,20823,20842], +"remote-", +[2,20844,1541], +[2,20823,20845], +[2,20825,4097], +[2,20826,4097], +[2,20828,4097], +[2,20829,4097], +[2,20833,4097], +[2,20836,4097], +[2,20837,4097], +[0,0,20855,20856,2537], +[0,1389,1400,1544,1177,1895,3421,1894,3758,4151,30164,4389], +[0,30166,14355,14356,30167,30168,57,18048,29895,30170,3549], +[2,20841,4097], +[2,20843,4097], +[2,20846,4097], +[1,2343,20861], +[0,20864,20865,20866,34352], +"Firebase", +"realtime", +[0,4477], +[0,1835,1192,2784,2796,4227], +[0,2924,4749,24753,24754], +[1,2343,20877], +"@fastify/b", +"usboy", +[2,20868,20869], +[3,20848,19], +[2,20871,553], +"farmhash-modern", +"jwks-rsa", +"@google-cloud/firestore", +[3,20875,14], +[0,0,0,20878,2537], +[0,3552,28100,4796,7191,7287,2062,6824,1161,7242,163,6698,5260,6646,7117,3378,6878,6661,6666,7037,7090,7293,6950,7086,6573,664], +[3,20819,12], +[1,2343,20881], +[0,20896,20898,20899,2523], +"i-documenter", +[2,20879,20882], +[3,20840,15], +[2,20884,553], +[2,4853,6641], +"rebase-token-generator", +[2,16785,20887], +[2,16936,4007], +[3,2113,11], +"ken-generator", +[2,20890,20891], +"http-me", +"ssage-parser", +[2,20893,20894], +[0,1170], +"admin", +[0,4072,4474,91], +[0,30190,30191,30192,30193,30194,30198,30200,30202,5592,30203,30204,30207,30208,5995,4967,91], +[1,2343,20901], +[0,6263,20906,20907,2537], +"-sql-connector", +[2,6599,20902], +[2,20876,20903], +[2,20876,11631], +[0,48,53,68,83,85,87,14128,5583,816,6373,1178,1193,1198,30214,1610,1652,1745,1177,1881,1938,2126,29945,2675,1192,2990,29946,1894,30216,3776,4042,4071,4073,4131,4172,30217,91,4585], +[0,4315,3555,1832,30219,7165,30220,89,2124,91,30223,30225,30227,1473,7208], +"async-lock", +"cjson", +"-in-any-order", +[2,1693,20910], +"exegesis", +[2,20912,3228], +"gaxios", +[1,2343,20919], +"auth-library", +[2,10692,20916], +"libsodium-wrappers", +[0,0,20920,20923,2523], +[0,30236,30239,30240,30241,1177,30242,91], +"proxy-agent", +"sql-formatter", +[0,30245,4627,5398,8190,8191,8193,30247], +"stream-chain", +"stream-json", +[1,2343,20927], +[0,20929,20930,20932,2487], +"superstatic", +[0,1149,1676], +[0,1192], +"triple-beam", +[0,27,13397,6731], +"-analytics", +[2,14566,20933], +[2,4562,8683], +[1,2343,20939], +"cdn", +"ssl", +[0,20941,0,20944,4139], +"hosting", +[0,3266,3527,4228], +"hronization", +[2,15001,20942], +[0,1623,3561,22292,7121,57,30258,353,24798,5198], +[1,2343,20946], +[0,20947,20952,20953,4139], +[0,3681,3688], +"alce", +[2,1708,16580], +"extend-", +[2,20950,3048], +[0,4874,1177,1895,30265,3561,1894,91], +[0,1623,3561,6425,30268,3563], +[1,2343,20955], +[0,20956,20957,20958,2537], +[0,1457,5314,2151,3527,3616,30274,15245,30275,4207,27921,4747], +[0,1166,1414,1596,1177,30279,2203,3561,3613,1894,4337,3348], +[0,200,3561,22147], +"@types/rimraf", +[2,13777,12798], +[1,2343,20962], +[0,20963,0,20964,2487], +[0,30286,205,208,218,30287], +[0,1473,14186,1623,4964,6564,30289,30290,30291,29428,3561,6425,6616,30292,17540,5341], +[1,2343,20967], +"unflatten", +[0,20968,20969,20970,2487], +[0,1393,30298,30299,3688], +[0,30302,3561], +[0,1473,1512,1536,1623,3178,3561,6425], +[1,2343,20972], +[0,20973,20974,20975,34352], +[0,1393,3688], +[0,3561], +[0,1623,16919,3561,6425], +[1,2343,20977], +[0,20984,20985,20987,2523], +"@types/acorn", +[3,4060,16], +"vereload", +[2,20979,20980], +"erve", +[2,15476,20982], +[0,1165,30298,1437,30314,30315,3561,30317,30326,3564,30327,30329,30331,30334,30336,30338,30341,30343,3579,3584,3587,30346,30348,30350,30353,30356,3643,30358,30360,30363,30365,30366], +[0,1173,1175,1195,1264,1268,1279,19243,1461,1628,30368,30370,30371,30372,30378,1177,30380,1916,1959,2054,2092,2600,30381,2822,2843,3105,30383,3160,30385,30389,30390,30391,30393,30395,30396,30397,30399,29285,3376,30400,3427,3459,30402,3613,3618,30274,16578,3744,89,3824,30404,4039,4294,4307,4389,30407,2924,4681,30410], +"lightweight", +[0,3561,6425,1623,12616,30413], +[1,2343,20989], +[0,20990,0,20993,2523], +[0,30424,205,208,213], +"byline", +"util-extend", +[0,30426,30427,1623,30428,5317,6413,3561,6425,30430,3766,10658,12616], +[1,2343,20996], +"markdox", +[0,21001,0,21002,2537], +"deploy", +"deployment", +"devops", +"ssh", +[0,30424,205,208,30287,3688], +[0,1623,30428,5317,6433,3561,6425,3583,10658,6436,6437,12616], +"sequential", +"remote", +[1,2343,21006], +[0,21007,0,21008,2537], +[0,30424,205,208,3681], +[0,30426,30427,1623,30428,5317,30442,19101,3561,6425,5547,3586,10658,12616], +"wrapper", +[1,2343,21011], +[0,21012,21013,21017,2487], +[0,3681], +[0,3561,3678,26712], +"mini-s", +"vg-data-uri", +[2,21014,21015], +[0,1623,4298,3561,6425], +[1,2343,21021], +"-datepicker", +[2,2128,21019], +[0,0,20974,21025,34352], +"ailwindcss", +[2,1977,21022], +[2,3704,4383], +[0,1623,1681,16918,3561,6425], +"windicss", +[1,2343,21051], +[2,20525,591], +[2,4380,6911], +"tailwind c", +[2,21030,544], +"tailwind ", +[2,21032,11513], +[2,21032,6082], +"sections", +[2,21032,21035], +"tailwind ui", +[2,21032,89], +[2,21032,188], +[2,21032,1098], +"tailwind s", +[2,21041,1971], +"django", +[2,21032,21043], +"tailwind r", +"uby on rails", +[2,21045,21046], +"tailwind l", +"aravel", +[2,21048,21049], +[0,0,20974,21058,2537], +"tailwind nuxt", +"tailwind n", +[2,21053,2680], +"tailwind a", +"stro", +[2,21055,21056], +[0,15215,1623,3599,3178,16919,3561,6425], +"flask", +[2,21032,21059], +[1,2343,21062], +[0,0,21063,21064,2487], +[0,1687,3527,3561], +[0,3561,1623,6425,30462,30465,30466], +[1,2343,21066], +[0,0,21068,21069,4139], +"ffmpeg", +[0,1429,2323,2384,2463], +[0,3561,1623,6425,30472,15182,9320], +[1,2343,21071], +[0,21073,21075,21076,34352], +"fbemitter", +[0,2654,9673,3561,3676], +[2,3794,11017], +[0,19605,1165,1429,1503,1177,1895,1930,19622,1945,1953,19623,1955,1964,1988,17308,2899,19761,3421,30479,3678,30481,1894,4320,4323,4337], +[0,3561,5341,1936,188,30483,30484,1623,695,2278,4329,30485,4337], +"dispatcher", +[1,2343,21079], +[0,21080,0,21081,2399], +[0,30287,3688], +[0,12083,1623,158,30491,12631,16587,3561,6425,23992,6398], +"lolex", +[1,2343,21084], +[0,21085,21086,21087,2399], +[0,3688,30275,814], +[0,1166,1414,1177,30279,1955,2203,3561,3678,1894,4337], +[0,1623,3561,6425,1204,30498,3378], +[1,2343,21089], +[0,21090,0,21091,2537], +[0,2984], +[0,3561,30504,30506], +[1,2343,21093], +[0,21094,21095,21096,2523], +[0,2807,4135,1595], +[0,1700,1192,695,2278,2675,3144,30512,1622,1177,1637,1701,2203,3561,4337,4468,4474,2924,1894,1610,48,442,1193,17167,4294,53,2969,2990,3400,4111,30520,3613,3640,192,1953,27928,4257,87,4523,1939,3616,1938,20281,1982,1895,1955,19344,30518,5467], +[0,1623,3561,22147,2924,11526], +"cliff", +"shush", +"flatiron", +"nssocket", +"-monitor", +[2,2134,21101], +[1,2343,21105], +"getopts", +[0,21107,20974,21112,2487], +"cli-testlab", +[0,3688,4319], +"fault", +" tolerant", +[2,21108,21109], +"sysadmin", +[0,1623,3178,16918,3561,6425], +[1,2343,21114], +[0,21115,21119,21123,4139], +[0,1393,30298,3681,30532], +"node-ab", +[2,18876,12620], +[2,21116,21117], +[0,30302,3561,26712,3591], +[2,6062,2978], +"ross-spawn", +[2,4857,21121], +[0,1623,16918,3561,6425], +"jest-circus", +"karton", +[1,2343,21128], +"typecheck", +[0,5488,20974,21130,2523], +[2,1218,21131], +[0,1623,2414,30541,30542,16918,6425], +"hermes-parser", +[1,2343,21135], +[3,4852,15], +[2,21133,13921], +[0,21137,20974,21138,2399], +"increment", +[0,30299,3688,30532], +[0,1623,3561,6425], +[1,2343,21140], +[0,21145,20974,21150,2399], +"asynckit", +"combine", +"d-stream", +[2,21142,21143], +[0,1393,3688,30532], +[2,13888,2759], +"fake", +"far", +"is-node-", +[0,3561,1623,6425,3178,16918,3634], +"modern", +[2,21149,21151], +"obake", +[1,2343,21157], +[2,31868,7625], +[2,31865,21160], +[0,21159,21164,21169,2537], +"dezalgo", +[0,1636,3681], +[3,9367,18,5], +"@tunnckocore/prettier-config", +"formdata-", +[2,21162,6422], +[0,30559,3561], +[2,19713,1781], +[2,3862,18481,21172], +"www", +"ulpoad", +[0,1623,3178,16918,3561,6425,3586], +[1,2343,21171], +[0,21176,21181,21183,2399], +"bob", +[3,11366,11], +[2,21173,3797], +"tiny-warning", +[0,16837,3681,3688], +"just-", +"debounce-it", +[2,21177,21178], +"tsdx", +[0,1596,1177,1895,2675,1192,2990,3561,1894], +[2,7519,582], +[0,4529,3561,1623,6425], +[1,2343,21190], +"render props", +"higher", +" order component", +[2,21186,21187], +"hoc", +[0,21012,0,21191,2443], +[0,3561,1623,6425,2278,3639], +[1,2343,21193], +[0,21194,0,21196,2443], +[0,30577,220,3681], +"conditional", +[0,30579,1451,30581,1623,30413,30428,3639,30582,3561,6425,3624,3586,10654,10659,5341,12616], +[1,2343,21198], +[0,21199,21200,21201,2523], +[0,30587,30589,30590], +[0,20117,1393,3561,3613,4042], +[0,3561,1623,6425,30594,2887,30595], +[1,2343,21203], +[0,0,20974,21204,2487], +[0,3561,1623,6425,8426], +[1,2343,21206], +[0,5488,20974,21138,2537], +[1,2343,21208], +[0,5488,20974,21138,2443], +[1,2343,21211], +"check-dts", +[0,20973,20974,21138,4139], +[1,2343,21213], +[0,5488,20974,21215,2537], +"front matter", +[0,1623,3374,16918,16919,3561,6425,1002], +"meta data", +[1,2343,21218], +[0,21219,20974,21138,2523], +[0,3688,30532], +[1,2343,21221], +[0,0,21222,21223,2537], +[0,2675,2899,3561,2759,1894,2990,3640], +[0,3561,3665,3586,6425,1623,3585,1932], +"universalify", +[1,2343,21229], +"klaw", +"dir-files", +[2,15034,21227], +[0,21230,0,21231,2523], +[0,28789,30630,30633,28817,30636,26477,30640,32579,30643,30647,30649,30652,30654,30657,30658,215,30662,30670,30673,30677,30678,30682,30686,30690,31001,30693,30701,30703,27930,218,28640,27069,30708,30712,29388,30715,32835,29704,30721,30724,30725,1165,1393,30728,30733,30736,1635,30326,30739,3570,30331,30338,3579,3584,3587,30742,30744,4791,30747,30348,30749,3611,30751,30754,3643,30757,30759,30761,30763,30358,30363,30366], +[0,1623,30428,16897,14836,30765,3286,3561,6425,10654,10659,16900,12616], +[1,2343,21233], +[0,21234,21235,21138,4139], +[0,1393,30298], +[0,30302,2646,3561], +"assist", +[2,6019,21236], +[1,2343,21239], +[0,0,0,21240,2537], +[0,1623,3561,30775,57,21110], +[1,2343,21242], +[0,0,0,21245,2537], +"any-promise", +"then", +[0,1623,3561,30775,57,4329,2278], +"thenify-all", +[1,2343,21248], +[0,21249,21250,2514,2443], +[0,1636,23462], +[0,48,53,68,11267,61,87,94,1166,1198,16150,1701,1177,1938,2070,3183,3421,3561,4135,91], +[1,2343,21252], +[0,21253,21254,21255,4139], +[0,3688,4361], +[0,30315,3561], +[0,1623,3178,16918,3561,6425,8221,4361], +[1,2343,21257], +[0,21012,20974,21138,2537], +[1,2343,21259], +[0,0,21260,21261,2537], +[0,1177,2675,2990,1894,4387,4389], +[0,3561,6692,57], +[1,2343,21263], +[0,21264,0,21265,2537], +[0,28807,30805,30808,30811,30813,30816,30818,4484], +[0,14873,25638,14871,3519,18035,1747,13392,5576,5995,29938,14872,91,4799,1999], +[1,2343,21267], +[0,21268,21269,21270,2537], +[0,9376,9375], +[0,192,22559,1414,1429,1431,1436,1567,2675,2829,2990,2899,4255], +[0,1936,6523,23760,57,353,30826,24798,7121,26467], +[1,2343,21272], +[0,21273,0,21274,2523], +[0,30840,3348,2970,2973,4431,30843,2972,30842,3310,30837,30834,3923,30833,30839], +[0,1747,28088,3693], +[1,2343,21295], +"@monaco-editor/loader", +[3,7664,11], +"topwatch", +[2,21277,21278], +[2,7666,6731], +"@snippetors/vuepress-plugin-tabs", +[3,19464,17], +"google-a", +[2,21283,20827], +[2,21282,21284], +[2,93,4314], +[2,21282,21286], +[2,21282,7193], +"monaco-", +[2,21289,6038], +"dsense2", +[2,21283,21291], +[2,6324,21292], +[2,19469,21293], +[0,21297,21298,21299,2537], +"bitap", +[0,13609,30849,30850,30855,1695], +[0,1173,1280,4895,1245,1264,1389,5669,30857,2025,2297,2881,25848,2895,2900,30859,2899,30862,18102,3774,4019,4135], +[0,3696,1145,6468,1973,5472,5286,6892], +"@types/katex", +[1,2343,21303], +"socket", +[0,21304,21305,21310,2487], +[0,1615,23975,4707], +[0,1148,2759,2899], +"tex", +"sublime", +"katex", +"sublime text", +[0,3358,582,3378,3697,30872,18462,1973,5001], +[1,2343,21312], +[0,0,21313,21314,2443], +[0,30877,30879,53,5874,12372,87,94,11976,4856,6503,4874,6513,17214,16480,30881,1429,1596,1610,30883,668,2675,30888,3165,2899,3401,30889,28423,3744,11481,4193,4196,4072,91,4548,1983,1984,824], +[0,3698,89,181,6073,30891,23361,4963,30892,6400,5130], +"globule", +[1,2343,21318], +[2,2237,5365], +[0,21319,7923,11581,2523], +[0,1437,1457,2152,18545], +[1,2343,21321], +[0,21322,21323,21324,2537], +[0,30905,8506,3137], +[0,21024,5467,811,8850,816,5087,9363,1009,1011,1529,1177,1895,1955,2675,1192,30912,12129,1894,4042,4257,4072,4474,91], +[0,1894,1932,1776,8505], +[1,2343,21326], +[0,0,21327,21330,2487], +[0,4874,30922,1166,1894,91,13151], +[2,4755,1145], +"yeoman-test", +[0,1894,30924,91,5651,3705], +[1,2343,21332], +[0,21333,21334,21335,4139], +[0,18710], +[0,3401,1894], +[0,6661,1932,1894], +[1,2343,21338], +"restangular", +[0,0,21342,21343,2487], +"ui-router", +"foundation", +"traceur", +[0,8862,811,816,4874,1166,1894,4042,4075,3709,4474,4484,91], +[0,1894,3709], +[1,2343,21345], +[0,21346,0,21347,2487], +[0,30940,1209,1997], +[0,1894,1541], +"find-git-root", +[1,2343,21353], +"git-config", +[3,31021,19], +"@merkle-open/eslint-config", +[0,0,8134,21355,2537], +"modular", +[0,3721,1413,1412,2098,4202,2090,12786,30946,7017,30947,2382,30948,23933,30950], +[1,2343,21357], +[0,21358,21359,21361,4139], +[0,1209,30956], +[0,1429,1506,1509,30958,2899], +"pooling", +[0,3721,1851,30960,1676,6738,7017,13086,22405,1671,12786], +[1,2343,21363], +[0,21364,21366,2514,2523], +[0,8801,1110,3847], +"ts2mjs", +[0,4880,15606,4889,2700,2798,89,3824,3904], +"iterators", +[1,2343,21370], +"iterable", +[0,21372,8134,21375,2487], +[2,21373,29777], +[0,30970], +"@prisma/d", +"@prisma/dev", +[0,3721,22405,12786,24130,30946,7017,6901,3242,30974,17003,30975,6754,2585,1871,6988,15244], +[1,2343,21382], +"@werkzeugkiste/eslint-config", +[3,21377,15], +[2,6019,1541], +[2,21378,21379], +"install-", +[0,21389,0,21390,2487], +"postmerge", +[2,17496,21383], +[2,21381,21384], +[3,9794,17], +[3,13848,20], +[2,21386,21387], +[0,6041,4484,2687,26379,3530,30097,3527], +[0,3358,30981,30982,1894,3720,6983,1501,30983,30872], +[1,2343,21392], +[0,21394,21398,21399,2523], +"@cfware/lint", +[0,1512,3183], +"@cfware/nyc", +"if-ver", +"libtap", +[0,2899,2272,4170,2759,1596,3202], +[0,1781,200,6983,1512], +[1,2343,21401], +[0,21403,21408,21409,2523], +"available", +[0,3260,25638,21374,28286,30996,21351], +"connection", +"tcp", +[3,6045,9], +"chosen", +[0,3467,4763,2611,1192,3445,2020,2929,28974,3510,1759,8537,15452,1457,2151,842,16145,16473,2794,3077,3310,29710,4294,31000,91,5087,4874,6477,28076,1151,2191,31004,3393,31006,32248,31008,28229,31009,25629,31013,4864,33235,23531,8998,29420,31015,31018,13471,32470,31023,31026,33237,28231,29421,26285,33683,21371,13502,29425,31475], +[0,9628,31034,31035,31037,31038,18035,1747,17626,31039,6869,31040,31041,31042,3519,31043,31045,31046,31047,31048,31049,31050,31051,31052,31221], +[1,2343,21411], +[0,0,21412,21414,2537], +[0,5542,1317,1429,31058,1700,31061,1177,1942,1964,2323,2361,2367,2409,20304,2494,2496,31063,2553,2654,2665,2832,2899,3310,3400,1894,3756,19745,19750,12120,3980,19751,4183,31066,4747], +"std", +[0,588,5342], +[1,2343,21416], +[0,21417,21419,21421,4139], +[0,1362,1364,1512,2026,3078,3188,3220,31074,3460,3507,31075], +"@sec-ant/readable-stream", +[0,1429,2323,2463,3215,4089,4193,4196,4339], +"onetime", +[0,1370,7223,29179,18157,12468,2325,3358,31078,3383], +[1,2343,21424], +"precise-now", +[0,0,6538,2514,2537], +[1,2343,21426], +[0,0,21427,21428,2487], +[0,4770,2899], +[0,3729], +"-maps", +[2,6477,21429], +[1,2343,21433], +[2,2190,6660], +[0,0,0,21434,8878], +[0,200,3730], +[1,2343,21436], +[0,21443,0,21445,2537], +[3,13936,15], +"evry", +[2,21437,21438], +"make-d", +"eno-edition", +[2,21440,21441], +[0,1437,3730], +"deno", +[0,2924,1932,3730,10036], +[1,2343,21448], +"deno-edition", +[0,21449,21451,2514,4139], +[0,29277], +"deno-entry", +[0,1082,4039,2759], +"denoland", +[1,2343,21454], +[0,0,21460,21461,2487], +"es2022", +[3,72,14], +"ifconfig", +"ipconfig", +"mac-address", +[0,1389,1610,1177,10697,2675,2297,2871,2881,2900,2990,2899,3400,1894,4039,4042,4077,4193,4650,91], +[0,1862,3734,6789,14833], +[1,2343,21463], +[0,21467,17022,21471,2537], +"email-", +"addresses", +[2,21464,21465], +[0,2899,4193,4545], +"dir-compare", +"tschaub", +[2,1884,21469], +[0,6567,14833], +[1,2343,21473], +[0,16583,21474,11581,2487], +[0,1804,2109,2899,3699], +[1,2343,21478], +"manage-path", +"opt-cli", +[0,21484,21487,21488,2487], +"chai-s", +"chai-string", +"kentcdodds", +[2,1884,21481], +"trav", +[0,13388,1149,3917,13832,4709], +"is-after-all", +[2,21483,21485], +[0,1177,4616], +[0,3741,6876,31122,7020], +[1,2343,21490], +[0,21491,21492,21493,2487], +[0,2929,16235], +[0,48,53,78,87,4387,4389], +[0,181,3742,200,3741,8626,6876,6847,1523,2184,4403,8620,31129], +[1,2343,21500], +"@primer/octicons", +"@primer/", +"primitives", +[2,21496,21497], +[2,812,1936], +[0,21501,21502,10570,2523], +[0,3082,3427,3847], +[0,1193,1268,1389,1408,1177,2708,1192,89,31135,31136], +[1,2343,21504], +[0,0,21506,21508,2443], +"minipass", +[0,9363,4874,31142,1414,2620,31145,31147,1894,3985,3998,31148,31150,4505,91,18002,1906], +"path-scurry", +[0,31152,23584,1936,4374,18523,3205,8221], +"-from-dist", +[2,9478,21509], +[1,2343,21513], +[2,5745,1563], +[0,21514,21515,21516,2523], +[0,31157,31159,31160,31161,31162,31165,31166,31167,31169,31170,4874,3080], +[0,1317,1389,31172,1408,1437,1875,1177,2000,2004,2193,28406,31174,21749,2323,2409,2419,2510,2530,1776,3183,3421,3951,4389,4487,91,4535,4599,4600,4603], +[0,7018,6765,7050,91], +[1,2343,21518], +[0,21521,21522,21523,2523], +"dirname", +"wildcard", +[0,11304,28502,31180,14336,1437,2070,2765,31182,3760,12826,4130,4232,31184,31186,4747], +[0,7740,4865,23689,31188,9129,4874,1364,1429,1431,28556,2025,2026,2323,31190,2526,2272,1209,3127,2899,31191,4039,4089,4135,4487,31194,91,31195], +[0,1098,1973,5472,11132,13841,28522], +[1,2343,21525], +[0,21527,21528,21529,2537], +"min-document", +[0,7058,31202,1676], +[0,31205,5245,5087,4874,1151,1192,4468,91,2190], +[0,27,2671,2658,1544,3013,31207,31209,18413,31210,31211,31212], +[1,2343,21531], +[0,21532,21533,18970,2537], +[0,31218,31220,814], +[0,2899,31224,4170,4193,4255], +[1,2343,21535], +[0,21538,21540,21542,2523], +"path-t", +"path-type", +[0,1437,31229,31233,2720,2742,1209,3170,3309,3470,4135], +"glob-stream", +[0,1173,1255,1264,1700,1177,1895,2702,2759,3188,2899,3211,1894,4039,4170], +"fnmatch", +[0,2323,3378,20001,3383,1237], +"globbing", +"globs", +"wildcards", +[1,2343,21547], +[0,21548,21549,21551,2399], +[0,31249,31246,31248,31250,31243,31251,31242,31254], +[0,3188,4039,24592,24587,24594,24596,31259,31258,24591], +[2,13039,12804], +[0,1936,2437,3754,1283], +"array-series", +[1,2343,21554], +[0,0,21557,2514,2537], +"magick", +[2,11812,21555], +[0,1317,27468,2060,3714,31266,4387,4389], +[1,2343,21559], +[0,21560,0,21561,2537], +[0,1834,3441], +[0,7046,7170,14858,7241], +"-with", +[2,21562,1892], +[2,1903,21563], +[1,2343,21569], +"msmc", +"mc", +"minecraft", +[0,0,21570,21588,2537], +[0,1503,3421,2899], +"java edition", +"arm", +"arm-support", +"forge", +"s-management", +[2,16154,21575], +"instances", +"mod", +"mods", +"mc-mod", +"mc-mods", +"modpack", +"modpack-api", +"extendable", +"nbt", +"jarmods", +"skin fix", +[0,3757,3656,31277,31278,31279,1002,31280], +[1,2343,21590], +[0,21591,21592,21593,2523], +[0,17846,31286,1595,28504,11114,31288], +[0,4874], +[0,3758,3195,29727,13428], +"docsify-cli", +"ing-promise", +[2,14639,21595], +[2,16645,21596], +[1,2343,21601], +"spreadsheets", +[2,8567,21599], +[0,21602,0,21609,4139], +[0,1525,2071,3561,3681], +"google sheets", +[3,21599,11], +"sheets", +"gdata", +"drive", +"google docs", +[0,6707,16587,7293,17507,1623,1936,3624,31297,22946,18114], +"svgs", +"google drive", +[1,2343,26326], +[0,2228,2272,3130,2240,2768,2281,3736], +[0,3760,1862,6567,14832,14833,14834,14836,1149,14838,8553,1388,202], +[1,2343,21617], +[2,2211,13369], +[0,0,0,21618,2399], +[0,11194,31307,16421,18048,8221,158], +"@types/execa", +"@types/mv", +"@types/ncp", +"unjucks", +[2,10884,21622], +"rl-template", +[2,7817,21624], +[2,4892,1574], +"js-green-licenses", +[1,2343,21629], +[0,0,0,21631,2537], +"linkinator", +[0,1111,6938,11194,7201], +[2,8573,591], +[2,5576,12950], +[1,2343,21635], +[0,21636,21637,21643,2537], +[0,17409], +[0,31317,31319,13614,1389,1408,31322,1796,1855,1177,2011,2133,2070,19066,31328,27547,17421,2569,2685,2708,2762,2807,3188,3206,15030,3410,3421,3431,19974,4103,23948,4389,31329], +"p-cancelable", +"responselike", +"-keys", +[2,17267,21640], +[2,13788,2741], +[0,3767,3763,3766,1002,1644,1646], +"able-lookup", +[2,2325,21644], +"cacheable-", +[2,21646,705], +"-encoder", +[2,2139,21648], +[2,17278,5508], +"byte-counter", +[1,2343,21660], +"pem", +"@types/pem", +"cert", +"create-cert", +"slow-stream", +"then-", +"then-busboy", +[0,21661,21664,21669,2537], +[0,31337,31339,31341], +"@hapi/bourne", +[2,1601,9224], +[0,1166,1317,1693,2064,4481,1906], +"brotli", +"requests", +[2,20034,17460], +"ky", +[0,1388,3767,3766,1871,3763,5420,31344,1002,1644,1646,10368,15103,31345,7131], +[1,2343,21671], +[0,0,21672,21673,2537], +[0,1973,31350,4389], +[0,10906,3766,3767], +[1,2343,21675], +[0,0,21685,21686,2537], +"govuk-", +"-kit", +[2,6688,21677], +[2,21676,21678], +"gulp-cl", +"gulp-cli", +"sass-co", +"lor-helpers", +[2,21682,21683], +[0,1414,2665,31357], +[0,3768,1149,14629,31360,12692,5957,6994,13792], +"embedded", +[2,4832,21687], +"sassdoc", +[1,2343,21692], +"govuk", +[0,11570,11571,21693,2537], +[0,3768,29664,31365,31366,31367,5284,17625,17626,676,91,17627,6869,4799,12692,4721,3768,31369,31370,31374,8893,6994,31376,6915,17697,6333,31377,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,17651,6674,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,3760,31379,4552,28483,31381,6645,4787,3286,202,5401,27366,6681,17740,1745,17116], +[1,2343,21695], +[0,21696,21698,21705,2537], +[0,3021,31388,31389,2017], +"reading", +[0,2070,4361,2832,1177,4333,1984,4474,2924,1894,4469,48,1628,91,53,4874,2629,4677,1195,2600,4307,4334,4689,4891,17214,8648,5139,87,4230,4681,31392,2651,1938,4409,1895,1947,1955,3177,92,31394,1011,20476,31393,1009,8724,1915], +"retries", +"EMFILE", +"EAGAIN", +"EINVAL", +"EPERM", +"EACCESS", +[0,3771,6038,6106,6105,6138,6139,5130], +[1,2343,21707], +[0,21708,21709,21710,2443], +[0,1525,11482,3350], +[0,3421,2228,2929,1177,4039,4042,4135,1317,2116,31401,4019,3752,20496,53,31402,87,1937,1954,2258,18895,23165,5583,1924,1938,31404,1958,2256,6373,1903,1948,811,1900,816,31405,8229], +[0,5472,2275,1145,6468,4384,4389,2297,2814], +[1,2343,21712], +[0,21713,21714,21716,4139], +[0,31413], +[0,5517,31417,1009,1011,7677,1240,1264,1540,1177,1895,1955,15854,18841,1894,23535,2907,3980,18819,4042,8849,4076,91,1984,2924], +"graphql-js", +[0,1388,965,1936,2907,31419,5472], +[1,2343,21718], +[0,21719,21722,21723,2537], +[0,1457,1525,31426,2107,31427,814,4648], +"all-versions", +[2,1382,21720], +[0,1149,1203,1267,31429,1499,25063,25076,1937,18895,2020,2116,2151,2228,2240,2243,2256,2258,23165,2283,21929,2291,25070,21930,26210,31402,3006,3752,4019,4045,4135], +[0,5472,2275,2814], +[1,2343,21725], +[0,21726,21727,21728,34352], +[0,3518], +[0,31437,1389,4389], +[0,31440,6422], +[1,2343,21733], +"section-", +[2,21730,9338], +[2,4296,12835], +[0,0,21736,21737,2523], +"ansi-green", +"delimiter-regex", +[0,48,53,87,94,104,5583,24621,31447,1290,1317,1481,1610,31448,1177,1938,2064,2036,2822,2899,3400,3421,4039,4042,4077,31449,31452,4193,4423,31453], +[0,3776,6564,594,6731,6081,7517,7532,7594,7595,7523,7524], +"assemble", +[1,2343,21741], +"extracting", +[0,21742,7923,21743,2487], +[0,4127], +[0,3778,28734,28734,4718,1179,16431,2585], +[1,2343,21747], +[3,5364,11], +[2,21745,1398], +[0,8766,21753,21754,2523], +[2,1807,2899], +[2,10692,7018], +"pois", +"son-process", +[2,21750,21751], +[0,3521,4255,4387,4389,4770], +[0,1616,3778], +[1,2343,21756], +[0,21764,7923,2514,2399], +"grunt-k", +"nown-options", +[2,21757,21758], +"legacy-log", +[2,2235,21760], +[3,21761,13], +[2,21762,614], +[0,3779], +"difflet", +[3,16758,16], +"unt", +[2,21766,21767], +[1,2343,21771], +"temporary", +[0,0,7866,21773,34352], +"init", +[0,6754,57,27], +[1,2343,21775], +[0,21776,21777,21778,2487], +[0,3135,3348,977,31479,4252], +[0,2070,3297,2899,4193,1177,4170,2759,1894,1506,1895], +[0,28411,2656,31482,6807,3783,31483], +"gruntplugin", +[1,2343,21781], +[0,21782,21783,2514,2523], +[0,1413,14855,2685,2657], +[0,3421,2899,1177,1362,29197,4100,3923,19344,7844], +[1,2343,21785], +[0,13511,21786,13533,2523], +[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,1955,2675,1192,2990,3144,3400,1894,4257,2924], +[1,2343,21788], +[0,21792,0,21793,2537], +[3,21146,12], +"ncremental", +[2,21789,21790], +[0,2714,3183,1696,4300], +[0,1541,1997,28984,19400], +[1,2343,21795], +[0,21796,21797,21798,2523], +[0,97,1461,3789], +[0,31504,968,972,4859,5087,4874,4880,4883,14693,1610,1789,1177,1939,1982,2079,31506,2193,2070,695,3377,31508,3788,11249,89,3824,3957,91], +[0,89,5128,31511,31512,6847,6754], +[1,2343,21800], +[0,21801,21802,21803,2523], +[0,97,13169,1461,3789], +[0,31504,972,5087,4880,4883,11322,1610,1789,1177,1982,2079,2193,695,3377,31508,89,3824,91], +[0,89,5128,31519,8190], +"liftup", +[1,2343,21806], +[0,21807,21808,21809,2523], +[0,97,3847], +[0,31504,972,5087,4874,4880,4883,15606,31527,11322,14693,1603,1610,1789,1177,1939,1982,2079,2070,2675,2990,3377,1894,31508,89,3824,91], +[0,89,614], +"pad-stream", +[1,2343,21812], +[0,0,0,10570,2399], +[1,2343,21815], +"grunt-nodemon", +[0,21816,0,21817,2399], +[0,3911], +[0,89,31542], +[1,2343,21819], +[0,21822,21823,21817,2523], +"simultaneous", +"faster", +[0,3427], +[0,1192,89,3824,2924], +[1,2343,21825], +[0,21826,21827,21828,2523], +[0,31555,31558,31560,31563,31564], +[0,4042,91], +[0,5575,2220,89,582,21189,4963], +[1,2343,21835], +[2,21831,36], +[3,30922,14], +"bin-", +[3,18806,13], +[2,21832,21833], +[0,21836,0,2514,2443], +[0,3775,1593,1862,4705,3427,3957], +"compass", +[1,2343,21839], +[0,21840,0,21841,2537], +[0,4649,2731,1461,3744,31577,1751,97,31575,31581,31578,5090,3911,4808], +[0,1367,89,4627,4963,31583,5128], +[1,2343,21843], +[0,21844,21845,21846,2523], +[0,31590,1209,3021,31591,3744,31592,4443], +[0,31594,31598,14689,14691,10837,1173,1175,1193,1195,31600,1267,1268,1272,1280,1429,31602,1628,1843,2012,2081,2600,2629,2651,2678,1192,2774,31603,2899,3376,3378,3427,89,21074,31605,3824,3836,31606,3904,4001,4015,4039,4307,31608,2924,4681], +[0,89,31611,5128,20542,3811,31612,3195,31614,5027,8192], +[2,1547,3000], +[1,2343,21849], +[0,21850,21851,21852,34352], +[0,1582,3744], +[0,48,53,68,61,78,87,90,94,1195,1251,1628,1703,1177,1879,1938,1947,1959,1961,2193,2651,31622,3177,89,3824,4307,4389,2924,4677,4681], +[0,4627,5128,89,31625,1492], +[1,2343,21854], +[0,21856,21857,21858,34352], +"file-sync-cmp", +[0,8703,1497,1668], +[0,53,68,5228,8229,61,87,90,92,442,31633,5583,811,816,10615,10817,966,972,974,5601,5087,11292,4874,4880,4883,1009,1011,1169,1193,1251,1593,33872,1177,1895,1938,1939,1959,1961,27790,2675,1192,11347,2771,2780,2990,1209,1894,89,3824,4042,11802,2278,4213,4320,4323,5978,4330,4468,4484,91,4523], +[0,89,3812,9026,1666,5128], +[1,2343,21860], +[0,21862,21863,2514,2523], +"csslint", +[0,3445,1437,2696,2205,3539,15427,2105,31642,3742,2098,2553,4294,4425,1615,4165,1393,3008,14564,31640,51,3938,3829,1874,2135], +[0,1192,1610], +[1,2343,21865], +[0,21866,21868,2514,2487], +[0,31650,31652,31654,2069,2609], +"maxmin", +[0,8719,842,972,5540,5087,4874,4880,4883,1192,11944,3400,89,3824,4172,91], +"cssmin", +[1,2343,21871], +[0,21872,21873,2514,4139], +[0,31654], +[0,8719,842,5087,3400,4172,91], +[1,2343,21875], +[0,21876,0,21877,2537], +[0,814,19526,53,104,8959,5251,101,31669,10879,31666], +[0,89,1745,31671], +[1,2343,21879], +[0,21880,0,10570,2537], +[0,4116], +"jpeg", +[1,2343,21883], +[0,21884,21885,21886,2537], +[0,31683,31686,3744], +[0,48,53,68,8229,31689,73,31690,14170,13051,31693,83,87,90,94,192,22559,19036,26486,5583,811,816,6061,16607,6065,16608,16612,5535,10876,31695,966,968,972,20562,4880,4883,1009,1011,1193,1198,1201,1527,1610,1177,1895,1938,1947,1954,1955,1959,1961,2675,31696,2694,1192,2990,3125,3534,1894,89,3824,3895,3904,4039,4042,4073,4131,4201,4307,4315,91,2924,31699], +[0,5128,89,7518,5398,9229], +[1,2343,21888], +[0,0,21889,21891,2537], +[0,51,53,31705,1193,1195,1270,1437,1457,1610,2126,2626,1192,31706,3427,1862,3786,89,3803,3824,4039,31708,4227,2924], +"hooker", +[0,3473,5341,1851,12991,5403,31710,31711,4649], +[1,2343,21893], +[0,21894,21895,21896,2537], +[0,3427,3744,21174,31718], +[0,1175,1178,1203,1208,1230,1245,1264,1268,1429,1503,1567,1652,1177,31721,1895,1938,1947,1951,1955,1959,2759,2297,2878,30885,2881,2886,2895,31723,2900,2910,2921,2923,28636,2899,1894,89,3824,4039,4042,4045,4055,4067,4069,4193,4196], +[0,3830,31725,89,1746,3193,17913,5207,163,1508,1299,31726,590], +[3,13115,12], +[2,21897,1462], +[1,2343,21900], +[0,0,21901,21902,2537], +[0,19438,603,811,816,10615,842,16145,968,972,5087,4874,4880,4883,6375,1651,1177,1895,4916,1955,1959,1961,10964,2675,1192,2780,27412,31734,2990,1894,89,3824,4039,4042,4076,4481,91,4523,4705,4763], +[0,89,582,1669,25,7021,7020,91,6687], +"nodeunit-x", +[1,2343,21905], +[0,21906,21907,21908,2487], +[0,26007,2202,2609,3008,3744,3849,4163,4227], +[0,8130,4880,8158,1173,1175,1178,1193,1201,1203,1230,1245,1257,1264,1268,1503,13985,1603,1610,1843,31742,1845,1177,1879,1895,1938,1947,1959,2675,1192,2990,1894,89,3824,31743,3904,3935,4039,4042,4045,4055,4058,4067,4069,4077,4257,31745], +[0,89,5284,2924,11498,3000,2998,6109,6609,1194,2999], +[1,2343,21910], +[0,21911,21912,21913,2487], +[0,97,31752,5545], +[0,48,53,68,23908,78,5241,83,85,87,90,94,5583,811,816,6373,10615,966,968,972,5087,4880,7677,17584,1175,7913,14065,1596,1597,1610,1177,1879,1895,1938,31755,1947,1959,1976,2559,2675,2681,2990,3188,1894,89,3824,3904,4039,4042,91,1984,4747], +[0,2681,23932,2679,8930,23933,6728,23934,89,6071], +[1,2343,21916], +"uri-path", +[0,0,21917,21918,2399], +[0,5517,11976,5535,968,972,4874,4880,4883,1030,32818,16480,19839,2990,3165,3400,3541,23535,89,3824,9245,4201,4493,91,1984], +[0,89,4627,582,31765,31766,31767,31769,31770,31771,31779], +[1,2343,21920], +[0,21921,0,21922,2537], +[0,5540,2609,4484,26222,31797,31791,31799], +[0,1671,6983,23934,2679,23932,2728,30948,23933,89,6071,8574,8930], +[1,2343,21924], +[0,0,0,10570,2487], +[1,2343,21926], +[0,0,21931,2514,2523], +"grunt-co", +"veralls", +[2,21927,21928], +[2,2235,2759], +[0,1420,1437,1177,31815,1192,2774,1894,4042,4069,4077], +[1,2343,21933], +[0,21934,21935,21936,2487], +[0,12396,9363,23289,2583,31821,3140,3992,3999,4549,4555,12449], +[0,972,4874,4880,4883,1414,1537,668,1959,10621,1894,89,3824,3973,29250,3985,3988,3998,10632,4505,91,1906], +[0,6892,20627,4627,3987,1783,89,5128,3984,4549], +[3,2289,9], +[1,2343,21943], +"all-releases", +[2,9005,21939], +[2,21937,21940], +[2,2235,21941], +[0,21946,21947,21948,2523], +"gh", +"releases", +[0,31828,3744,3849,4649], +[0,31832,1173,1175,1178,1195,1198,1264,1268,1277,1596,1610,1177,1895,31393,1938,1947,1955,1959,13871,2297,2881,2886,2895,2900,2904,2921,2925,2899,3400,1894,89,3824,3884,3885,4170,4535,2924,4677,4681], +[0,89,5128,5066,18346], +[1,2343,21950], +[0,21951,21952,21953,2523], +[0,3518,3744,3775], +[0,1172,31840,1175,1178,1195,1505,1628,1177,1879,1916,1938,1947,1959,2126,29945,31841,31842,2766,2297,2886,2898,31844,2906,2925,31845,3521,3836,4307,2924,4681], +[0,89,4627,5128,31847,8424,31849,12185,7521,9944,181], +[1,2343,21955], +[0,21957,0,21958,2537], +"vow", +[0,4729,31705,4747,4135,1862,1301,1525,2731,4116,1109,1193,31856,27921,3145,4705,31859,3717,3878,30781,1079,31861,28512,31864,24169,3957,31867,2784,31871,31877,31880,31884,31891,31893,21129,31896], +[0,89,3857,12296,12295,5131,16697,31904,31906], +[1,2343,21960], +[0,0,21961,21962,2537], +[0,29525,21155,21156,1177,1955,1894,89,3857,21166,91], +[0,3857,5128,31912,89,5131,12295,12296,31914], +[1,2343,21964], +[0,21965,21966,21967,2487], +[0,4747,3744], +[0,89,1177,31934,31928,2735,1894,10777,48,31923,53,1178,2132,31926,21495,31929,31935,31932,31920,31922,1959,1879,1938,1895,1947,1955,1961,5103], +[0,3857,5128,31912,89,5131,12295,12296,31937,6574,6635,181,1017,45,13814,22875,2414], +[1,2343,21971], +"ravis-cli", +[2,6305,21969], +[0,0,21973,21974,34352], +"TDD", +[0,48,53,61,78,5240,87,90,94,31942,20202,20212,602,15134,10817,968,972,974,4880,1011,1178,1195,1198,4899,1461,1497,1610,1177,1895,1916,1938,1959,2193,2832,3132,15326,1894,9054,89,3824,31945,4042,4045,4055,11802,4060,4067,4069,4077,4469,91,1984,2924,4677,4681], +[0,5128,89,31948,6847,6988,31950,10098], +[1,2343,21976], +[0,0,21977,21981,2537], +[0,53,61,78,87,14041,5583,1178,1195,1429,1177,2675,2990,2899,3400,1894,89,3824,3904,31956,4039,4042,2924], +[3,2247,10], +"inue", +[2,21978,21979], +[0,89,31958,31959,3868], +"grunt-env", +"-coverage", +[2,21930,21983], +[1,2343,21986], +[0,0,21987,21988,2537], +[0,8862,31964,1177,31966,1955,31967,1192,1894,4042,91], +[0,3872,1936,8221,965,3205,23584,1541,89,3824], +[1,2343,21992], +"afe-mocha", +[2,2241,21990], +[0,21993,21994,21997,2523], +[0,5546,5545], +[0,603,810,966,968,972,4874,5090,4880,4883,1503,1610,1177,1895,1915,1938,1955,1959,2832,1894,89,3824,3875,4039,4493,91,4523,1984], +[2,21996,995], +"@sailshq/r", +[0,89,6071,3875], +[1,2343,21999], +[0,0,0,10570,2537], +"grunt-release", +"s-dylang", +[2,14352,22001], +[1,2343,22004], +[0,22006,22007,22010,2537], +"notify", +[0,2677,31983,3744,1849], +[0,10817,4856,31986,13204,31989,31992,6503,4880,4883,6513,1009,1011,1429,1610,1177,1924,2193,2832,31994,2899,1894,89,3824,4039,4042,11054,4170,4193,4484,4494,4508,91], +"mountain lion", +"mavericks", +[0,1623,5128,31765,89,5131,31997,31999,6415,32001,6398,4627], +"notify-send", +[1,2343,22013], +[0,22014,22015,22016,2487], +[0,977,5152], +[0,4493,89,4548,22205,28119,3824,91,3904,972,2780,5162,968,974], +[0,89,38,4082,7433,2602,163], +[1,2343,22018], +[0,22019,22020,22016,2399], +[0,3884], +[0,4493,89,22205,3824,91], +[1,2343,22023], +"libsass", +[0,0,22024,22025,2537], +[0,1173,1175,1178,1195,24231,24234,1257,1267,1268,1275,1280,1177,1898,1935,1938,1947,1959,2022,2602,22588,31842,2297,2886,2895,2900,2904,2921,2925,2899,89,3824,3876,3884,3875,32020,32023,32026,2924], +[0,89,3875,38], +[1,2343,22028], +[2,705,1153], +[0,22029,6230,2514,2537], +[0,1324,1192,1759,1177,4135,3561,3742,814,2924,2151,2154,1420,1193,1628,53,2092,4111,4383,1195,1393,2797,4307,841,1763,3878,3618,3816,3647,4230,2686,3672,3803,4028,4681,2651,2802,24732,4409,1270,3605,4723,1898,3177,4686,1630,1216,1426,24723], +[1,2343,22032], +"sauce-tunnel", +[0,22036,22038,22039,2443], +[3,2311,11], +"-tunnel", +[2,22033,22034], +[0,97,7931,7948,8181,4808,3145,3744,3911,8187], +"yui", +[0,11931,1843,8160,11875,89,3824], +[0,32039,1669,6847,32040,89,5128,1631,181], +[1,2343,22041], +[0,22042,22043,22044,2523], +[0,1461,32046,3029,4023], +[0,48,53,68,61,85,87,90,28598,968,972,974,4874,1165,1175,1193,1195,1261,1628,1699,1700,1859,1177,1938,1959,2026,32049,2323,2494,2675,1192,2780,2820,2843,2990,3459,3618,1894,3775,89,3824,3957,4193,32051,4307,4537,2924,4677,4681,32052], +[0,11167,32054,32055,32056,31512,5128], +[1,2343,22046], +[0,22047,22048,22049,2523], +[0,32061,4889,32062,1082,15128,1145,12184,1397,1465,5386,1497,32063,1584,1593,19526,32064,1863,1874,1875,2007,29067,7076,32067,7610,2070,32068,2570,2745,32070,32071,32072,32076,32080,32081,32084,32085,2929,32086,1209,21641,3120,32087,6041,3467,3725,3744,32088,32089,3816,3822,32091,32095,32097,3839,12438,3930,3984,32098,4409,19650,32099,4555,4681,4689], +[0,48,53,61,87,14128,90,92,968,972,32102,32104,31669,32107,1006,32109,5087,32112,4870,32114,4874,8149,4880,4883,32116,32118,4891,32120,8157,1009,1011,1175,1178,1193,1195,1628,31058,32121,32123,32124,1177,32126,1915,1924,1938,1947,1959,2092,2151,2675,1192,32129,2990,3144,1894,3775,89,3824,3904,32130,4307,91,4027,2924,4677], +[0,89,1219,6718,25172,1745,1739,1179,4627,4963], +[1,2343,22051], +[0,22056,22059,22063,2537], +"sprit", +"esheet-templates", +[2,22052,22053], +"sprites", +[0,97,955,5090,3744], +"spritesmith", +"url2", +[0,53,83,87,90,442,15288,5583,811,816,6373,10615,972,5087,13204,4874,4880,4883,7749,1251,11890,1177,1895,1959,1961,10964,2203,1192,2780,3297,3401,1894,89,3824,4042,4167,4172,11803,4468,4474,91,4523], +[3,21470,15], +"wolfson", +[2,22060,22061], +[0,965,1936,11806,11807,5284,89,32142,8221,32145,91], +"foundry", +"-release-git", +[2,22064,22065], +[3,22066,16], +[2,22067,3378], +[1,2343,22070], +[0,22073,0,22076,2487], +"get-pixels", +"gmsmith", +[0,2081], +"sprite", +[3,22054,11], +[0,32151,89,4453,1702,32152,3899], +[1,2343,22078], +[0,22079,0,22080,4139], +[0,3847,4116], +[0,89,3857,32162], +[2,17566,200], +[1,2343,22083], +[0,6234,22084,22085,2523], +[0,32167,27742,549,963,4874,4880,4883,1030,1596,1651,8540,2990,3561,1894,89,3824,4493,91,1983,32170], +[0,89,9044,11000,5128,3906,6645,32172,26264,6458], +[1,2343,22087], +[0,22094,22095,22096,2523], +"@npm/types", +[2,7726,2855], +[3,8610,9], +"ite-file-atomic", +[2,22090,22091], +[2,16569,1182], +[0,32177,32178], +[0,1317,1389,1408,1506,32180,5669,1839,32181,1859,1177,19896,2228,2240,25074,2247,18461,2256,2273,32183,25060,32186,2774,3460,3521,12344,32188,3930,22031,4449,91,4535,31135,4652], +[0,89,1219,8535,6624], +[1,2343,22098], +[0,22103,0,22104,2399], +"@guarapi/eslint-config-guarapi", +[2,8711,93], +[3,5542,13], +[2,22101,3312], +[0,97,1751,3082,3744], +[0,89,9944,19102,32195,7521,1623,32196], +[1,2343,22106], +[0,22107,22108,22111,2487], +[0,1497,3744,1751,3082,97,3849], +[0,1192,2675,89,2282,1177,4039,4042,1503,3561,2924,2126,2193,1894,1610,2700,3758,3824,48,1193,1505,1628,53,2092,2990,3566,4677,1165,1178,1195,3720,3884,4307,3618,85,29945,32207,3885,87,14128,18229,4681,90,32203,1922,1959,32205,2651,3904,4045,4077,32202,4069,1895,1935,1947,1955,4055,32206,4067,2054,8229,83,14132,28972,61,5241,1251], +"undertaker", +"glob-watcher", +[0,89,6071,5128,4607,3392,32209,32210,3912,176,32211,10345,9320,15182,10052,21604], +[1,2343,22113], +[0,22116,22117,22118,2399], +"series", +"streaming", +[0,4430,3909], +[0,2899,2272,4135,15052,1389,1537,32218], +[0,89,1389,14927,1219,676,1932,353], +[1,2343,22120], +[0,22121,22123,22124,2523], +[0,97,6372,1461,3744,32225,3911], +"gulp-footer", +[0,48,53,68,73,76,78,5241,87,90,10821,10825,10828,32229,10837,968,972,974,4880,1178,1193,1195,1270,1367,1540,1567,25901,1610,32231,1787,1797,1177,1879,1895,1935,1938,1947,1959,10851,32233,1192,2780,2832,2843,3165,1894,89,3824,3830,32236,3884,3904,91,2924], +[0,3916,1367,89,4627,4963,5128,181], +[1,2343,22128], +"html2js", +[2,1283,2325], +[0,22129,22130,2514,2537], +[0,8612], +[0,9516,9515,8608,13680,1011,1414,1915,4384,4474,4483,91], +[1,2343,22132], +[0,22134,11332,22135,4139], +"gulp-symdest", +[0,18186,18183,16474,4507,20789], +[0,1781,3917,1644,2090,2150,30135,3001,3383,3374], +[1,2343,22138], +"atom-shell", +[0,22139,8134,22140,2537], +[0,30055,3919,4507], +[0,1781,3917,1644,2090,2150,30135,3001,3383,2100,2104,2105,7076,6614,6605,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], +[1,2343,22142], +[0,22143,22144,22148,34352], +[0,1079,1398,2018,3729,15042], +[0,53,14170,13051,19181,811,15460,816,826,1389,1414,668,32258,1177,1903,1938,1953,1958,3541,1894,4042,23652,4384,32262,4389,4390,4548,2924,4677], +"prefixes", +[3,3674,9], +[2,22146,8736], +[0,7017,3101,7170], +[1,2343,22150], +[0,0,22151,22152,4139], +[0,4384,2685], +[0,3925,32271,2090], +"lodash.chunk", +[1,2343,22155], +[0,0,0,22158,34352], +"-transform", +[2,13792,22156], +[0,3925,31360,24095,3741,8631,6875,200,6621,1523,32276,8652,6703,1359], +[1,2343,22160], +[0,8856,7938,7939,2523], +[1,2343,22162], +[0,22163,22165,22169,2523], +[0,12184,2003,4227,32284,4484], +"b", +[0,53,58,87,32287,4865,6503,4874,1011,1177,19896,32288,2070,2990,2899,1894,24209,91], +"storage-blob", +[2,13444,22166], +[2,12694,14922], +[0,6892,22179,32291,5061,5341,22180,7119,32293], +"streamifier", +[1,2343,22172], +[0,8029,7938,7939,4139], +[1,2343,22174], +[0,22175,14066,22176,2537], +[0,814], +[0,3209,1194,7188,19101,32302], +[1,2343,22178], +[0,22182,0,22183,2537], +"rewriting", +[3,12348,14], +"desugaring", +[0,97,32307,2081,2609,3849,5513], +[0,89,6734,4963,32310,6081,6731,32312], +[1,2343,22185], +[0,13856,7923,22186,4139], +[0,7204,32318], +[1,2343,22191], +"utf-8", +"add", +"prepend", +[0,22192,0,22193,2487], +[0,32325,32327,32329,32330,32333], +[0,1552], +[1,2343,22195], +[0,22196,22199,5885,2399], +[0,6327,8111,3127,8114,3725,4213,3555,1757,1461,3191,3744,8122,8123,8113,8127,2017,8116,3502,8126,8119,32343], +"decov.io", +[2,2364,22197], +[0,3775,1002,1192,3190,2675,89,4484,1843,1177,4039,1593,1651,2822,3471,4167,4468,4474,8166,2924,1894,3824,1628,4201,91,4856,5087,8144,4874,8165,4677,4880,4892,3720,4307,4863,8147,8146,8149,8155,4891,8160,8161,8163,10875,8136,4883,5090,4315,8157,1311,4681,8141,1584,1959,2651,1938,8139,2780,4693,8152,1011,1961,1567,8129,2135,1009,32341], +[1,2343,22201], +[0,22202,22203,22204,2537], +[0,32353,32351], +[0,89,2924,3824,91,4880,4883,32359,32358], +[0,3939,3452,5592,8124,1745,32361,467,32363], +"wireit", +[1,2343,22207], +[0,0,22208,22209,2523], +[0,53,4874,1009,1011,1610,10888,1177,1898,1915,1938,1959,1961,2070,32368,1894,4039,4094,4493,91,1984], +[0,3875,6696,6649,6788,6564,2700,6609,2998,6596,2130,6891], +[1,2343,22211], +[0,22212,22213,22214,2523], +[0,32376,32378], +[0,32380,32383,32385,2675,2990,3400,1894,1983,1984,1906], +[0,2130,3875,27106,10820], +[1,2343,22216], +[0,22219,22221,22224,2523], +"bump-regex", +"plugin-log", +[0,1209,3847,1860,2731,2752,3744,97,2609], +"versioning", +[0,4449,1192,2675,89,3875,1177,4039,1503,2924,2126,1894,1610,2700,3824,48,1693,4201,53,32392,2990,3876,4677,1178,1195,32394,87,90,1210,1922,1959,10623,3904,1938,32385,32393,1935,1947,1898,4676,1961,5535,31393,83,61,5240], +"gulp-version", +[3,2476,11], +[0,89,6071,2130,3875,3876,3945,1669,4636], +[1,2343,22226], +[0,22227,22231,22232,2487], +[0,1688], +"swap", +"cache-swap", +"object.pick", +[0,1175,1203,29775,1267,1429,1503,1177,1879,1938,1947,1959,2665,2675,2899,3421,3875,4039,4042,4045,4055,4067,4077,4193], +[0,3875,2942,3946,2663], +[1,2343,22234], +[0,22235,22236,22237,2399], +[0,32408], +[0,53,83,85,87], +[0,5284,3875,2663,3947,32416,32418], +[1,2343,22239], +[0,0,22240,22241,2523], +[0,1009,1011,1610,1177,1895,1894,3875,4039,4493,91,1984], +[0,3875,3949,2663,32425,2130], +"file-e", +[1,2343,22247], +"xtension", +[2,22242,22244], +[2,17355,22245], +[0,0,22248,22250,2537], +[0,4856,6503,4874,1429,1700,32431,2323,32433,32435,2463,2494,32436,2524,2899,91], +"changed", +[0,4636,6774,5284,19080], +"modified", +[1,2343,22256], +"modification", +"mtime", +"passthrough", +[0,0,22257,22258,4139], +[0,1503,2228,2314,2759,14529,3774,4019], +[0,1108,6961,5284,3656,1179,4990], +[1,2343,22260], +[0,0,0,22261,2537], +[0,5659,7047,1179,1149], +[1,2343,22263], +[0,22264,0,22265,2487], +[0,12396,3971,3978,4549], +[0,32452,6892,1936,1644,3729,3958,4141,1646,5341,1633,4549], +[1,2343,22267], +[0,22268,22269,22270,2523], +[0,12396,23247,9401,12421,4549,4555], +[0,4874,23262,1414,32460,1894,3958,3985,3998,4505,91,1906], +[0,4549,3958,32462,1932,156,163,1936], +[1,2343,22272], +[0,22273,22274,22275,2537], +[0,12396,23247,12421,32467,4233,4555], +[0,4874,23262,1414,1894,3958,3985,3998,4505,91,1906], +[0,4549,3958,32462,1932,2587,1936,1783,11052,163,1002], +[1,2343,22278], +"jshint-", +[0,22281,22282,22283,2443], +"reporter-jscs", +[2,22277,22279], +[0,12396,32481,3137,12127,12133,4549,12447], +[0,9311,4874,4880,1414,1177,27706,1947,1959,23312,1894,3985,27711,32484,91], +[0,2587,1936,1783,9102,3958,32462,4549], +[1,2343,22285], +[0,22286,0,22287,2523], +[0,12396,23276,4549], +[0,32452,6892,1936,1644,1932,3958,32462,5341,1633,4549], +[1,2343,22289], +[0,22290,22297,22298,4139], +[0,12396,2572,12449], +[3,19569,12], +"rework", +"rework-import", +"rework-", +"plugin-url", +[2,22294,22295], +[0,4874,1414,1894,3978,3985,3992,3998,3999,4505,91,4549,4555,1906], +[0,1936,1932,3972,3958,32462,4549], +[1,2343,22300], +[0,22301,22302,22305,2537], +[0,12396,7610,9401,2584,4555], +[0,4874,1414,1894,3958,3985,3998,4505,91,1906], +"slush", +"dest", +[0,156,1936,3265,1932,3958,32462,3974,4549], +"conflict", +[1,2343,22308], +[0,22309,0,22310,2487], +[0,12396,2581,4549], +[0,32452,6892,7234,1936,1932,3958,32462,4141,1646,5341,1633,4549], +[1,2343,22312], +[0,22314,22315,22317,2523], +"webserver", +[0,22353,692,29431,1154,15444,1458,7614,9322,2720,32513,3060,3173,29024,3445,3467,6331,20921,4135,27921,4548,4566,32514,4748], +[0,442,32523,4874,1177,32525,2203,17529,2931,29442,32519,1894,3985,32522,4390,91], +"hyperlink", +[0,6147,13729,1528,32528,3358,2195,17978,24095,15656,3378,20001,6645,3979,3980,18157,1508,4166,10381,4990,15525,4135,1932], +[1,2343,22319], +[0,22320,22321,22322,2537], +[0,2759,3181,3544,4227,4431], +[0,1177,1881,1938,2228,2323,17121,4039], +[0,18444,21779,4227,2759,4504], +[1,2343,22325], +"csscomb", +[0,22326,0,22327,2537], +[0,4549,9363,3992,13124], +[0,32452,6892,7234,1783,26564,1644,3729,3984,4141,1646,5341,1633,4549], +[1,2343,22329], +[0,22330,0,22332,2443], +[0,5210,32544,3984,32545], +"rcloader", +[0,20052,200,1783,26564,3984,4549], +[2,21861,2838], +[2,15526,2063], +[1,2343,22336], +[0,22337,22338,22339,2399], +[0,9363,27008,27010,3992,13124,4549], +[0,4874,1414,32460,1894,3984,3985,3998,4290,18071,4505,91,1906], +[0,26072,26766,3987,2195,1783,26564,1932,3984,32553,12994,176,9000,4549], +[1,2343,22341], +[0,22342,22343,22344,2537], +[0,9363,2575,3140,2581,4549], +[0,12396,4874,1414,26992,23276,1894,3985,9340,3988,10630,3992,3998,32560,10632,4505,91,12449,1906], +[0,7234,1936,1783,26564,1932,3984,32553,1646,4549], +[1,2343,22346], +[0,22347,22348,22349,34352], +[0,12449,4549,9363,32568,12447,32567], +[0,1414,1177,3984,1894,3541,3985,91,12396,3999,3978,32484,27706,27711], +[0,1745,25131,3990,1932,3984,32553,4549], +[1,2343,22351], +[0,22352,0,22354,2523], +[0,9363,3137,26987,4549], +"@nodeutils/defaults-deep", +[0,32452,6892,1783,26564,1644,1932,3984,32553,5341,1633,4549], +[1,2343,22356], +[0,22357,22358,22359,34352], +[0,32582,32584,3988,32587,32591,23059,23065,23070,23075,23078,32593,23080,32595,23082,32599,32601,32606,32609,23098,32613,23113,32617,32620,32626,32629,32631,32636,23118,32638,32640,32646,32651,32654,32656,32658,32664,23128,23133,23136,32667,23139,23141,11382,32668,10632,32669,32672,4549], +[0,192,5467,1177,1909,2114,2675,2990,1894,3985,1906], +[0,2195,16342,3984], +"from2-string", +"@shi", +"nnn/eslint-config-node", +[2,22361,22362], +[1,2343,22366], +"warnings", +[0,22367,22368,22369,2537], +[0,32582,3988,10630,23059,23065,23070,23075,29079,23078,29082,32593,23080,32595,23082,32599,32601,32606,23092,32609,32681,32686,32689,29091,29097,29100,29132,29143,29147,29149,32613,32692,23113,32696,32617,32699,32620,32626,32629,32631,32636,23118,32638,32703,29151,32705,32646,32651,32707,32710,32654,32656,32658,32715,32717,32664,23128,23133,23136,32667,23139,23141,11382,32668,13124,10632,23143,32669,32719,4290,4549], +[0,1894,3985,4505,91,1906], +[0,16342,3984,3997], +"-match", +[2,7534,22370], +"flatnest", +[1,2343,22374], +[0,22376,22377,22383,4139], +"@type-challenges/utils", +[0,12396,9363,3140,4549,12449], +[0,4874,1414,1894,3975,3978,3985,3992,3998,13124,4505,91,1906], +[2,29833,2658], +[2,3101,7131], +"to-a", +"bsolute-glob", +[2,22380,22381], +[0,2587,1936,1783,26564,1932,32462,3958,32553,3984,4549], +[1,2343,22385], +[0,22386,22387,22388,2487], +[0,1139,32732], +[0,1111,1317,20627,1177,1926,1999,2398,2600,3127,2899,3421,4042,4058,4067,4073,4146], +[0,20627,1783,5980,1644,57,3729,4001,8924,3902,2585], +[1,2343,22391], +"divide", +[0,0,14066,22393,2523], +"separate", +[0,2323,19101,17996,8297], +[1,2343,22395], +[0,22396,22397,22398,2537], +[0,1437,2070,4747], +[0,442,1414,1429,1431,1177,2899], +[0,4068,2585,16504,2090], +[1,2343,22400], +[0,22401,22403,22404,2399], +[0,3763,29749,3348,2051,32749,15057,32751,2139,3173,32753,4100,4454,32754,32756,32757,32758,32759,21144,3518,2854], +[2,3715,4001], +[0,3421,4389,2297,32761,4039,1503,1362,4255,1596,32762,19946,1389,1400,14038,2886,4153,2871,3524,21146,2906], +[0,27,2869,614,6435], +"prettify", +[1,2343,22407], +[0,22408,22409,22411,2537], +[0,1362,4454,32768,32770], +[0,1429,2323,1437,1209,4039,705,2463,1364,2384,4089,2436,27608,3753], +"jsftp", +[0,4731,27,2671,1862,705,21244,32773,1362], +"jsftp-mkdirp", +[1,2343,22415], +"ftp-test-server", +[0,22416,22417,22418,34352], +[0,32770,32768,4454], +[0,1364,1429,1437,2323,27608,2384,2436,2463,1209,3753,705,4039,4089], +[0,4731,27,2671,1862,705,21244,32773,970], +[1,2343,22421], +"gift", +[0,0,22423,2514,2399], +"wrap-promise", +[0,4474,91,1506], +[1,2343,22429], +"octonode", +[3,8304,11], +[2,15034,22426], +[2,22363,1231], +[0,0,22431,22432,2537], +"branch", +[0,6637], +[0,3209,4017,32792], +[1,2343,22434], +[0,0,22441,22442,2523], +"any-", +[2,5124,1867], +[2,22435,22436], +[3,21732,13], +"eam", +[2,22438,22439], +[0,810,972,4870,4880,4883,7749,1009,32801,1011,32804,1177,1959,32805,2832,1209,3057,3145,32807,32368,1894,89,3824,3876,4039,4167,4493,91,1984], +[0,89,3875], +"gulpgit", +[1,2343,22445], +[0,0,22446,22447,2537], +[0,1178,1597,1177,2765,2766,2297,2881,2895,2898,6387,2910,2915,2921,2923,3734,4042,4075,91], +[0,32814,24800,31767,614,5576,1388,6422,6805], +[3,6530,10], +[2,22448,4552], +[1,2343,22452], +"nid", +[0,22453,22454,22455,2399], +[0,32820,17501,32824], +[0,15221,4384,4449,4389,1796,1177,3188,4039,4135,32826,3410,2708,3433,20492,4103,13614], +[0,814,3209,202,1237], +[1,2343,22457], +[0,0,8134,22459,2523], +"gulp-de", +[0,3209,814,3403,1237,7115,15403,1204], +"gulp-declare", +[1,2343,22464], +"fine-module", +[2,22458,22462], +[0,22467,0,22468,2399], +"gulp-wrap", +"nsdeclare", +[0,32836,1573,3008,3561,4227], +[0,2924,1194,1623,3374,9345,814,1002,2278,10903,2090], +[1,2343,22470], +[0,22471,22472,22473,2523], +[0,32842,8098,2151,2036,2822,32843,3348], +[0,48,53,13693,61,71,78,13051,85,87,97,192,6298,6061,6063,1166,1170,1178,1208,1212,1364,1429,16311,1596,31058,1687,8942,1177,32848,32850,1938,1948,1951,32852,1954,1958,1964,32855,1966,1969,1982,2026,32856,2675,2824,2848,3019,2899,3200,32858,3421,4131,32860,4342,32861], +[0,8623,1118,1179,1745,32864,6533,32867,4030,5592,27], +[1,2343,22476], +"eventstream", +[0,22477,22478,22479,2537], +[0,3763,1641,32874,3171,3441,3533,710,32876,3348,1209,4135,4591,30107,3084,2141,12627,1147,20412,32759,32875,15220,32873], +[0,3421,3467,1429,2070,2899,4193,1177,3188,4039,2720,2276,1894,1596,1155,32883,20441,3697,3752,1745,32881,32878,1942,1895,1955], +[0,8173,5130,2026,32885], +[1,2343,22482], +[2,11941,1596], +[0,22483,9888,2514,2537], +[0,3763,4734,4745,2685], +[1,2343,22485], +[0,22486,22487,22488,4139], +[0,21420,4174], +[0,4481,1906], +[0,2021,32896,3729,30135,32897,7226,6689,32899,32900,24601,200,13006,1111,15814,6048,7009,7201,6621,4166,6876], +"htm", +[1,2343,22491], +[0,22492,0,22493,4139], +[0,1362], +[0,18035,32906,32907,32909], +[1,2343,22503], +"gulp-spawn", +[2,22501,33473], +"gulp-svg2ttf", +"2svgfont", +[2,45,22498], +[2,2518,22499], +[3,29059,12], +"gulp-ttf2eot", +[0,0,22506,2514,2523], +"gulp-ttf2woff", +[2,22504,1276], +[0,21147,2759,4389], +"@types/gulp", +[1,2343,22513], +"metapak", +"-nfroidure", +[2,22509,22510], +"streamtest", +[0,22514,22515,22516,2523], +[0,1177,5896], +[0,4874,2025,2899,3421,4474,91], +[0,7190,14419,3212,1858,1237,2275,1973,27916,3430,21147,3209], +[1,2343,22520], +"gulp-match", +"ternary-stream", +[0,0,22523,22526,2537], +"exhaust", +[2,4279,22521], +[0,5898,1503,6618,6786,30025,32925,3028,32927,32930,3776,4255,4384,4481], +"if", +"ternary", +[0,3048,7002,3583,1496,1585,1697,6899,6803,3432,6693,3743,7098,6638,6618,7167,2062,6681,6856,6986,7035,6648,7284,6786,6670], +[1,2343,22528], +[0,22529,22530,22531,2537], +[0,2070,21510], +[0,4874,3188,1894,4384,4483,4508], +[0,6790,7218,6610,7293,7204,200,7074,6899], +[1,2343,22533], +[0,22534,22535,22537,2537], +[0,3263,8248,32944], +[0,2765,32942,32947,32949], +"gulp-gm", +[0,32951,27747,29002,8652,12197,158,32952,28125,4041,13008,32954,32956,32959,32961,1473], +[1,2343,22539], +[0,12881,22540,22541,2537], +[0,16003,32967,16005,16002,16000,15999,442,8998,5012,25130,11536,8862,15134,811,8850,816,6373,10615,10817,10895,32970,6503,4874,20374,5254,21626,21830,1082,32971,15128,1397,1405,1457,1540,1593,1610,32972,1859,1866,1177,1895,1955,1982,1988,2116,32973,2151,10754,2203,2675,10898,2990,10902,3090,3144,2899,3363,22496,3421,5561,3527,3530,32977,1894,3706,3714,3718,4019,4042,4060,4135,4172,4174,4227,4232,4376,4072,4484,91,4523,1983,4614,188,4630,13151,32979,4748], +[0,5260,6996,6903,5194,6708], +[1,2343,22543], +[0,22544,22545,22546,2537], +[0,5652,4081], +[0,53,8229,71,83,87,1397,1177,1895,1955,2675,2990,2899,1894,4042,4048,4058,4227,4232], +[0,4080,1172,6778,5194], +[1,2343,22548], +[0,22549,22550,2514,2443], +[0,1397,4081], +[0,1177,2899,4042], +[1,2343,22552], +[0,22553,22554,22556,2523], +[0,32998,4081], +[0,15134,1177,2022,2899,3421,4039,4042,33001,33002], +"group-array", +[0,4042,4080,5284,5194,5260,4298,33005,4051], +"strip-color", +[3,5467,19], +[2,22558,1098], +[1,2343,22563], +[2,5376,591], +[3,10705,13], +[0,22564,22565,2514,2537], +[0,2007,10898,3090,814,4081], +[0,53,87,94,1082,1177,1938,2675,2990,10902,2899,1894,10904,4042,4045,4058,4067,4172,4227,4232,91], +[1,2343,22567], +[0,22569,22570,22571,2537], +"inline-css", +[0,3090], +[0,51,19861,33017,1006,4874,4880,1414,4042,91], +[0,4080,91,4056,1007], +[1,2343,22573], +[0,22574,22577,2514,2443], +[0,4081], +"lodash.g", +[2,22575,19530], +[0,1177,1938,2675,2990,2899,1894,4042,4048,4067,4232], +[1,2343,22579], +[0,22580,22581,22582,2523], +[0,33028,20378,1209,3090,3220,33029,33031,33036], +[0,53,87,94,5583,811,816,8661,1009,1011,1104,1198,1177,1881,1938,2061,2151,29406,2323,33038,2441,2765,2766,1894,4039,4042,27720,33042,4449,91], +[0,4042,4080], +[2,17487,8162], +[2,11941,22583], +[1,2343,22586], +[0,22587,22589,22591,2487], +[0,33048,33051,1618,33052], +"isparta", +[0,24235,1676,2899,4042,4045,4066,4146], +"unit test", +[0,4080], +[1,2343,22593], +[0,22594,22597,22591,2487], +[0,1082,33051,2007,3090,33052,4081], +[2,34675,22596], +"-links-validator", +[0,1175,1264,1389,1192,3188,2899,4039,4042,4045,4067], +[1,2343,22599], +[0,22600,22603,22604,2523], +[0,5251,1405,10912,814,4081], +[2,4402,16237], +[2,2767,22601], +[0,53,87,94,1856,1177,2899,4042,4045,4055,4058,10916,91], +[0,4042,4080,6778,3378,5260], +[1,2343,22606], +[0,22607,22608,22604,34352], +[0,3090,4081], +[0,1177,1938,2675,2990,10902,2899,1894,4042,4048,4172,4227,91], +[1,2343,22610], +[0,22611,22612,22613,2399], +[0,10895,16799], +[0,10817,4874,1009,1011,1177,1895,1955,1192,1894,4039,4042,4468,91], +[0,4042,4080,12938,4227,33078], +[1,2343,22615], +[0,22616,22617,22618,2487], +[0,51,2805,4143,4072], +[0,53,1192,1894,4042], +[0,4042,4080,4072,3178], +[1,2343,22620], +[0,22621,22622,22623,2523], +[0,814,4081], +[0,1397,1177,2899,4039,4042,4048,4055,4484,91], +[0,4080,91,6778], +[1,2343,22625], +[0,22626,22627,22628,2537], +[0,10895,2102,2151,4135,4484], +[0,11893,811,816,33097,4864,33099,5087,4870,4874,8860,5254,1009,1011,1512,1177,33100,1192,1209,3429,4039,4042,33101,4076,4468,91], +[0,4076,4075,4080,91,6778,4042,3378], +[1,2343,22630], +[0,22631,22632,22633,2487], +[0,51,2805,4143,4535], +[0,53,87,1193,1192,1894,4042], +[0,4042,4080,2280,3178], +[1,2343,22635], +[0,22636,22637,22641,2537], +[0,3445,3530,4227,4747], +[0,811,816,10615,10817,5364,33115,33116,33118,33120,33121,33123,4874,20374,4892,1413,1654,14674,17086,17091,1655,1660,1701,3400,30889,3561,16578,3698,1894,28865,4042,10854,2278,4484,91,1983,1984], +"array-unique", +"gulplog", +"has-gulplog", +[0,4080,4078,11996,33126,33127,33129], +"capture-", +[2,22642,3101], +[1,2343,22645], +[0,22646,22647,22648,2523], +[0,2007], +[0,1006,5087,8778,4874,2675,1192,2990,3170,1894,4042,4055,4067,4075,4172,4468,4487,91,19545], +[0,4042,594], +[2,4599,3101], +[1,2343,22652], +[2,19984,1276], +[0,0,22653,2514,2523], +[0,1389], +[1,2343,22655], +[0,22656,22657,22658,2399], +[0,33145,8712,1410,1423,2215,3561,4232,4317,33146,1835,4164], +[0,33152,51,53,68,5216,61,76,14160,78,33153,81,5715,4851,5241,83,87,90,92,97,101,104,33156,33158,33159,33162,8317,8755,554,617,33165,33167,33170,33172,33173,13471,8648,842,11534,33174,33176,33178,19861,10879,33179,24807,31666,5364,33181,7806,33183,11796,11477,21122,5245,33189,33191,4865,8780,8264,4870,33193,13057,33195,20374,33197,4880,4883,15606,5254,33198,16149,13214,23452,11800,9241,20463,13753,1082,33199,31705,1138,1145,1154,33200,20476,1251,15009,1393,1398,1413,33202,33204,1525,33206,1536,12084,15015,1560,1562,977,1615,1618,11890,16912,16566,1676,11478,15018,33208,2018,2105,2145,2070,2553,2659,2661,15022,2674,16837,33209,2689,26453,2755,2805,2856,2863,20465,33210,3084,3177,3244,3266,33211,23175,3322,3467,15031,6042,3479,3502,3509,3530,12344,3605,16840,3638,16841,16842,3672,3676,3678,3688,3729,3757,15033,3784,3878,3957,4111,4135,710,27062,20508,4165,4227,4230,28512,15039,15040,9221,33212,15042,4294,7080,4390,33213,4072,4409,4425,15046,15047,11804,33214,614,15048,33215,24739,2924,4729,4763], +[0,89,5130,3287,5122,36,202,6400,5995,200,4592], +[1,2343,22660], +[0,0,22661,22662,34352], +[0,14192,1235,14196,14198,19130,14199,14214,14215,14217,1244,1264,19127,18801,18693,1378,1381,19119,18686,19123,19122,1825,18825,18829,33223,19121,2899,3736], +[0,19132,6567], +[1,2343,22664], +[0,22665,22666,22668,2523], +[0,25623,3527,3561,4300], +[0,1414,2899,4255], +"kew", +[0,33231,1623,33232,4086,5130,590,1504,26535,6270,353], +[1,2343,22670], +[0,22671,22672,22673,4139], +[0,1437,2061,3544], +[0,2323,2899,4170], +[0,17461,7170,6769,2323,3468], +"treams", +[2,6825,22674], +"ng-annotate", +[1,2343,22678], +[0,0,22679,22680,2523], +[0,1090,4389], +[0,22114,1149,3046,7241,14629,18462,4552,33244], +[1,2343,22682], +[0,0,0,22683,2537], +[0,33249,33250,7109,20018,7099,7022], +"develop", +[1,2343,22686], +[0,2513,22688,22689,34352], +"restart", +[0,33256,7,842,8712,4856,4870,6503,4874,7749,6513,6512,28198,1009,1011,1257,1429,33258,1473,1512,1610,1652,33261,1874,1177,24287,2139,2151,2070,16015,2675,13305,2990,1209,3183,2899,3363,3400,8967,12344,1894,1862,4042,32414,33263,4067,4167,4172,4193,4196,4232,4376,4474,4487,4490,33265,33267,33273,91,4585,5573,2924], +[0,7099,7022,6568,7111,7199,7040,7027,6858,6789,6746], +[1,2343,22691], +[0,0,9264,22692,34352], +[0,1398,33283,33284,6953,4100,1965,33287], +[1,2343,22697], +[3,13337,13], +[2,6574,22694], +"mac notification", +[0,22698,22700,22701,2537], +[0,2708,4135,4747], +"notify-osd", +[0,13614,1158,1159,1796,1177,33293,3421,4389], +[0,20001,25816,3378,33295,10381,6953,33297], +[1,2343,22703], +[0,22707,22708,22709,2537], +[3,13107,12], +[2,22704,2187], +[2,14983,22705], +[0,33304,21995,1149,33307,1437,1525,33312,1536,1544,977,1575,1581,29500,1797,2026,2040,33313,2070,33315,33316,32959,33319,33322,33324,33325,33327,3183,33328,3494,3509,3547,3741,33329,33332,33335,4135,4148,4151,33336,33339,4538,4590,33340], +[0,1317,1553,1177,2025,2151,33342,2899,3416,3560,33344,33346,33349,33352,33354,33357,4170,4220,4342,4449], +[0,33359,33362,2026,33363,33365,8173,8172,3469,4218], +[1,2343,22711], +[0,22712,22713,22714,2523], +[0,33379], +[0,4389,1090,33381,1389,1537], +[0,2090,1213,33383,2574,2649,1867], +"acorn-typescript", +"esrap", +[1,2343,22718], +[0,22719,22721,22722,4139], +[0,1699,1874,2654,2747,33390,3561], +"zimmerframe", +[0,1177,2899,4193,33395], +[0,1936,57,18113,2574], +[1,2343,22724], +[0,22725,0,22730,2523], +[0,1457,2700,4228], +"ENV", +"ifdef", +"ifndef", +"echo", +[0,590,4329,2278,7121,1623], +[1,2343,22732], +[0,22733,22734,22736,2523], +[0,23175], +[0,48,53,87,192,5467,442,27928,19344,1369,1610,1622,1628,1700,1701,1835,1177,1895,20281,1938,1939,1942,1953,1955,1982,2092,33408,2203,2675,1192,2990,33415,3144,3342,33420,3400,1894,2278,21688,4135,4257,4307,91,4523,2924,4677,4681], +[2,1876,2282], +[0,2278,22022,2924,1194], +[1,2343,22738], +[0,0,22739,2514,4139], +[0,1894,4384], +[1,2343,22741], +[0,22742,22744,22745,34352], +[0,33435], +"views", +[0,33437,1414,33438,1177,1776], +[0,2844,1745], +"precompile", +[1,2343,22748], +[0,22749,22750,13533,2537], +[0,1091,1092,12384,8818], +[0,1700,1192,2675,1177,1701,2203,2924,1894,48,442,1193,91,53,4874,2990,3400,192,1953,27928,4257,87,1939,1942,1938,20281,1982,1895,1955,19344,5467], +[1,2343,22752], +[0,22754,22755,22756,2523], +"src", +[0,89,3824,3286], +[0,91,4874,4880,4883,1165,3561,4383,1177,4828], +[0,33454,33455,2145,12589,1616,33456,12589,5472,20500,33459,1237,33462,33464,12590,33465,27666,11996], +[1,2343,22758], +[0,22759,0,22760,2523], +[0,1821,3299,15160], +[0,29395,33471,33472,4126], +[1,2343,22763], +[2,4068,3101], +[0,0,0,22764,2537], +[0,33477,3778,1616], +[1,2343,22766], +[0,22767,22768,22773,4139], +[0,33482,2866,4449,4729], +[0,442,13838,1177,1895,1951,1953,17303,1955,2026,2203,2564,1776,2899,3200,3246,1894,4150,4193,4351], +"modif", +"y-filename", +[2,22769,22770], +"rev-hash", +[0,13428,28522,5472,11132,13841], +"rev-path", +"sort-", +"sort-keys", +[1,2343,22779], +"vinyl-file", +[0,22780,22786,22787,2523], +[0,16607,33490,6065,16608,16612,33491,1595,1676,33493,2020,2089,33494,2188,33497,22845,2613,33499,3021,3127,14774,3170,33500,25873,27168,4025,4135,6554,4747], +"rev", +"revving", +"revision", +"expire", +"assets", +[0,4874,6547,1166,1414,1470,1652,1736,33503,2151,2212,2822,3019,19736,33505,3297,3401,33507,1894,23535,4193,23730,4400,4421], +[0,18526,13428,13729,1237,3383,20001,3979,4135,15525], +[1,2343,22790], +"deserialization", +[0,22792,22793,2514,2537], +"deserialize", +[0,97,33513,33515,6372,33519,1497,33520,1209,3021,3744,3847,32225,4163], +[0,33522,48,53,61,73,76,81,83,87,90,94,33525,9310,33528,33530,10875,4880,1009,1011,8158,33532,1178,1195,33537,1208,1210,33541,1251,31600,33543,1429,33545,1582,1610,1651,1676,1719,1742,19526,1843,1177,1879,1895,4916,1938,1947,1951,1959,1961,2060,2193,2323,2455,2541,2675,14708,2297,2881,32762,2886,2900,2904,2925,2975,2990,2899,1894,3725,3758,3786,89,33546,33550,3822,3824,3836,3843,3884,3885,33552,33553,33556,3904,33558,4039,33560,33562,33564,4193,4196,4201,4261,33565,4409,33566,4431,91,4597,2924,4676,4677,4679], +[1,2343,22796], +"each-async", +[0,22797,22799,22800,2537], +[0,1177,1900,1903,33572,1938,1953,1958,1959,33573], +"md5-hex", +[0,17529,1698,3188,4039,4092,4389], +[0,19309,33576,4354,16790,1501,19310,19311,19314,19271,18443,1177,2446,2292,2272,671,19315,19269,33578,2869,4255,19317,590,19318,19320,19273], +"ruby", +[1,2343,22803], +[0,0,22805,2514,2523], +"@img/colour", +[0,9516,9515,1317,4384], +[1,2343,22807], +[0,22808,10377,22809,2537], +[0,1676,1833,1869,984,2145,2657,3173,3242,3440,3781,4266], +[0,2947,2090,36], +[1,2343,22811], +[0,22812,22814,22815,2523], +[0,22966,8364,33593,33596,33598,33599,22967,19593,3034,3072,3183,22451,22968,33602,33603,3763,33605,28440,33606], +"sftp", +[0,8357,8359,33608,4874,1149,4440,1596,17402,2036,33612,21082,1894,33615,33618,28664,33620,25649,91], +[0,3166,11100,27662,33624,14584,33625,14586,14587,33626,5130,33627,33628,17757,6081,33629], +[1,2343,22817], +[0,0,22818,22824,2443], +[0,33634,1149,1317,1177,3210,4384], +"@types/fa", +"ncy-log", +[2,22819,22820], +[3,12459,15], +[2,22822,5229], +[0,4137,19748,33636,28277], +[1,2343,22826], +[0,22827,22828,22830,2523], +[0,33646,3348,1676,33641,1209,3220,4135,1155,2712,5245,33643,33645,3222,14334,33642,25624], +[0,3519,3421,1429,1082,1702,33653,2675,2899,3478,4193,1177,33663,3260,4039,1448,668,33669,33673,4246,25635,25633,33674,1587,1610,2071,33672,3480,33675,32842,2152,4196,91,4856,4874,2024,2990,6503,6513,29283,692,4870,33652,33682,33649,192,1431,33668,3125,4131,17370,4232,1942,1951,33662,1011,33660,22559,1009,33655,33681], +"brotli-size", +[0,3259,33669,7827,14873,25638,3519,3243,33684,33663,14872,25633,26472,33685,3469,6710,33690,18035,1747], +[1,2343,22833], +"measure", +[0,0,22834,22835,2537], +[0,1317], +[0,4141,7050,5284,676,1781], +[1,2343,22846], +"@gulp-sourcemaps/identity-map", +[3,22837,17], +[2,22844,36113], +"map-sources", +[2,22838,22840], +"-fabulous", +[2,1676,22842], +"@vitest/e", +"hook-std", +[0,22849,2667,22851,2487], +"@codspeed/vitest-plugin", +"mississippi", +[0,1676,33735,33702,33705,33725,33727,33713,33723,33714,33710,33734,33729,33722,33718], +"source maps", +[0,33737,33738,33739,33740,33741,28794,2811,33742,33744,33745,25003,33746,33748,4144,4145,33749,33750,3101,6621,33751], +[1,2343,22853], +[0,22854,22855,22858,2537], +[0,1091,1138,1371,1437,1494,1536,33757,33758,13834,16064,33761], +[0,2212,4494,4493,2675,1177,1984,1894,91,2990,107,7806,33765,7677,33768], +"device", +"strip-debug", +[0,4592,4146,3166,2665], +[1,2343,22861], +"client-hints", +[0,22862,22864,22865,2487], +[0,984,2145,3242,3494,4100], +"accord", +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342,33775], +[0,2026,33777,2663], +[1,2343,22867], +[0,22868,22869,2514,2443], +[0,1080,6870,1676,1869,2657,3173,3494], +[0,1087,1177,1948,2899,3421,4342], +[1,2343,22876], +"looks-same", +"svg2png", +"@cpplint/cli", +"rwd", +"retina", +[0,22877,9025,2514,2523], +[0,1833,1869,3494,710], +[1,2343,22879], +[0,22880,22881,22882,2537], +[0,33798,3171,3181], +[0,192,5467,33801,33803,1168,1429,1431,1527,1177,1895,2151,2675,2990,3073,13824,2899,3310,3421,1894,3752,33804,4193,4196,4390], +[0,33804,33807,13573,7200,33808,6997,33811,6949,5351,4967,33813], +[2,33888,22889], +[1,2343,22885], +[0,22886,22887,22888,2523], +[0,33819,33821,33823,33824,7709,33826,33827,33828,27792,33831,13559,33836,33838,33840,29749,1367,10785,33841,13566,33843,3445,17009,4729], +[0,33846,9167,33848,5087,4874,7819,9241,1009,1011,33838,13566,668,33850,1177,1895,19527,1915,1938,1955,2675,1192,33851,33852,33854,33857,2845,3381,1894,13569,4257,4468,4474,1531,91,3348], +[0,12,7200,5472,1192,33804,4158,1984,13573,6930,6808,7308,33822], +"arm64", +[1,2343,22891], +[0,22892,0,2514,2537], +[0,26956,6641], +[1,2343,22895], +"rendering", +[0,0,22896,22897,2443], +[0,1178,1264,1280,1429,1177,2126,33869,2675,2990,2899,1894], +[0,4163,4161,4162,26287,3797,33871], +[1,2343,22899], +[0,22901,22903,22904,2537], +[3,18435,14], +[0,4135,22804,20584], +"incremental", +[0,20762,4481,33891,4391,640,33894,2057,22873,11976,3299,33877,2829,33882,33890,33884,33887,22883], +[0,21881,18048,12349,12350,23995,20639,8221,20701,33896,158,24800,33897,12712,26490,33898,33899], +[1,2343,22906], +[0,0,22907,22910,2523], +[0,13614,1159,9254,1177,2011,2708,2762,3410,3421,4103,4389], +[3,15893,12], +[2,22908,1512], +[0,1523,1644,7336,4166], +[1,2343,22912], +[0,22913,22914,22915,2537], +[0,2020,2071], +[0,1166,1437,1506,1177,1881,1938,2822,3421,33910,33912,4172,33916], +[0,4167,16159,28984,4166,33918,7048,2763,31360], +"@types/plu", +[1,2343,22921], +"gin-error", +[2,22916,22918], +"gulp-diff", +[0,22922,22925,22926,4139], +[0,3266], +" compilation", +[2,22902,22923], +[0,1429,2228,2899,1839,2240,26399,4436,2305,34238,22000,2236,2300,3006,2253,2273,2281,5535], +[0,5843,4439,3265,3348,33927,33928,33929,4169,33930], +[1,2343,22928], +[0,22929,22931,22934,2537], +[0,33936,33937,33938,33941,33942], +"array-each", +[0,1362,1177,33945,2899,1894,4042,4067,4487,91], +"error-cause", +[2,3094,22932], +[0,1973,5982,1145,4170], +[3,16647,18], +"se-extend-native", +[2,22935,22936], +"list-map", +[2,4601,22938], +[1,2343,22942], +"tape-catch", +[0,5621,22943,22944,2537], +[0,2228,2247,2253,2273,2281,2285,2290,33953,2291,2316,2832,3006,3518,33954,4135,33955,4232], +[0,1783,15253], +[1,2343,22947], +"uncss", +[0,22948,22949,22950,4139], +[0,3183,4167], +[0,1173,1264,1280,1177,1881,19527,1938,2822,2899,3421,4039,33910,33963,33912,4170], +[0,4167,4166,28984,16159,16160,2978,200,8636], +[1,2343,22952], +[0,0,22953,22954,34352], +[0,21122,4874,24162,13680,1414,1894,4384,4474,4508,91], +[0,6553,2021], +[1,2343,22956], +[0,22957,22958,22960,2523], +[0,1097], +[0,2553,3714,4042,4048,4535], +"useref", +[0,7521,5224,26514,1424], +"async-once", +"gulp-dest", +[2,3204,22962], +[1,2343,22965], +[0,22969,22976,22977,4139], +"@hapi/joi", +"jsonic", +"optioner", +[0,33986,33989,1676], +"array-differ", +"array-uniq", +"beeper", +"_reescape", +[2,3024,22973], +[3,22974,11], +[0,33992,33997,5245,5087,4874,668,29154,1192,4474,91], +[0,3358,34000,30983], +"valuate", +[2,22975,22978], +"lodash._re", +[1,2343,22984], +"interpolate", +[2,22980,22982], +[0,0,22986,22987,2523], +[2,3067,6937], +[0,4481,1192,2675,3534,1177,4039,4042,1894,1610,1193,53,5087,1540,34009,3720,97,107,87,1926,34015,68,5583,4073,6373,34019,811,816,5522,34013,1201,81], +[0,11615,16114,27968,13527,5130,89,1098,188,38,14584,4967], +[1,2343,22994], +"@test-runner/core", +"yazl", +[2,22996,32078,6624], +"qpass", +"yazul", +[0,22995,22998,22999,2537], +[0,11124,826,34034,1687,4351], +[3,22989,13], +[2,22996,23000], +[0,53,11126,11130,11133,11134,34040,28537,34041,1208,1676,1705,668,27502,26739,2185,2990,2899,3421,1894,3758,4039,4135,4167], +[0,4193,1973,5472,2275,13106,4158,21147,6901,34044,3212,4731,1145], +"live-view", +[2,22996,23003], +[1,2343,23005], +"oneline-view", +[2,22996,16316], +[0,0,23006,23007,34352], +[0,442,1414,1429,1177,2899,1894,4193], +[0,1429,15385,1388,34050,34053,4193,5472,17051,17052,17050], +[1,2343,23010], +[2,13857,2663], +[0,23011,23012,23013,2523], +[0,9153,6327,1149,1409,34066,34065,3188,4135,16358,2026,2822,705,1866,1525,3181,2861,2036,1364,1536,2657,2600,34060,34062,3923,34064], +[0,2899,1362,1389,34068], +[0,7223,3383,18157,29179,5260,2658,36], +[1,2343,23015], +[0,23016,0,2514,2487], +[0,34076,11480,34078], +[2,4598,3426], +[1,2343,23019], +[0,23020,0,23021,2443], +[0,34085,2984,34086,3527,27921], +[0,4201,200,1999,6681,34088,34090], +[1,2343,23023], +[0,16583,11580,23027,2523], +"smith", +[2,3521,23024], +"pngparse", +[0,34096,34098,34099,5995,4967,17758], +[1,2343,23029], +[0,23030,23031,23032,2399], +[0,22992,34105], +[0,2924,4469,91,4677,23319,4676], +[0,5995,34107,5592,33804,18035], +[1,2343,23035], +"compressed", +[0,0,8134,23036,2523], +[0,3403,34116,4207,28978,6574,6270], +[1,2343,23038], +[0,23039,23042,23044,2537], +[0,1110,34121], +"catering", +"deglob", +[0,1166,1437,34125,4294,1906], +"find-file-up", +[0,6913,1871,1111,592,1473,7208,1512,7009,7201,200,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +"find-githost", +"link-re", +[1,2343,23067], +"ferences", +[2,23046,23048], +[2,1163,23049], +[2,3986,23050], +"remark-c", +[2,15,14994], +[2,23052,23053], +[3,13240,12], +"quote-", +[2,23056,17537], +[2,1359,23057], +[2,23055,23058], +"box-", +"-style", +[2,6843,23061], +[2,23060,23062], +[2,4354,23063], +[2,23055,23064], +[3,23065,22], +[0,23068,13640,23072,2537], +[0,22437,1455,12918,34132,34134,25377,34136,3275,3518,34137,3718,3730,34139,1241,4747], +"ontent-indent", +[2,23066,23069], +[3,23065,13], +[0,34141,4796,22832,3378,1161], +"block-style", +[2,16080,23073], +[2,23071,23074], +[3,7900,10], +[2,23076,15319], +[2,23055,23077], +"emphasis-marker", +[2,23055,23079], +"fenced-code-marker", +[2,23055,23081], +[3,23082,13], +"inal-newline", +[2,23083,23084], +"hard-", +[1,2343,23088], +[0,0,23089,23106,2523], +[0,12310,6061,6063,5476,1414,2899,4131,4255], +"break-spaces", +[2,23086,23090], +[2,23055,23091], +"-bullet-indent", +[2,5401,23093], +[2,15794,23094], +[2,23055,23095], +[3,23096,22], +[2,23097,8958], +[3,13240,15], +[2,17793,17825], +[2,9344,23100], +[2,1160,23101], +[2,23099,23102], +[3,23058,11], +"without-", +[0,4213,3974,1871,4577,22188,3656,1002], +"marker", +[2,23105,23107], +[2,23104,23108], +[2,23099,23109], +"duplicate-", +[2,23111,7900], +[2,23099,23112], +"-cont", +"ent-indent", +[2,23114,23115], +[2,156,23116], +[2,23099,23117], +"padding", +[2,16569,23119], +[2,23099,23120], +"literal-urls", +[2,23099,23122], +[3,13240,17], +"used-definitions", +[2,23124,23125], +"rule-style", +[2,23055,23127], +[1,2343,23130], +[0,0,23131,23146,2537], +[0,1596,34154,2899,3421], +"strong-marker", +[2,23055,23132], +"cell-padding", +[2,16065,23134], +[2,23055,23135], +[3,23136,18], +"pipes", +[2,23137,23138], +"unordered-list-marker-style", +[2,23055,23140], +[2,4586,3966], +[2,3986,23142], +"unified-", +[2,23144,16284], +[0,4213,3974,1002,34156], +[1,2343,23150], +"-shiny", +[2,18004,23148], +[0,7936,7938,7939,2443], +"pull-", +[1,2343,23153], +[0,23156,0,23157,2537], +"pull-or-clone", +[2,10617,23154], +[0,1437,2713,3183,3923,34167,4294,4425], +[0,3721,34170,34172,4255,34174,25264,34177,34179,34181,34182], +"fixer", +[1,2343,23160], +[0,23161,23162,23170,2523], +[0,1170,34189,1676,2131,2141,2188,1209,4113,4296,15502,34190], +[0,442,5245,7810,4870,4874,34194,15507,1364,1512,1687,1742,1792,1177,2026,2099,2070,2899,3421,1894,3923,4135,4151,4170,4193,4232,25609,4508,91,4523], +[2,13729,18200], +"git-tags", +[2,2264,2907], +[2,8961,2499], +[2,2312,23166], +"jquery-", +[2,23168,2555], +[0,4217], +[1,2343,23172], +[0,23173,0,23174,2537], +[0,1080,34200,1594,1676,12777,34201,9247], +[0,20863,5130,4699,21405,2018,21302,11444], +"neo-async", +[1,2343,23179], +"chai-diff", +[2,2264,4019], +[0,23180,0,23181,2537], +[0,34208,1676,12779,9247], +[0,20863,5130,4699,21405,2018,5576], +[1,2343,23183], +[0,23186,23191,23194,2537], +"ammo", +"heavy", +[0,1676,34226,26137,2713,4567], +"bounce", +"catbox", +"somever", +"subtext", +[0,1389,1839,1177,2025,2323,2409,2494,2496,2510,2530,2297,2871,2876,2881,2900,2899,3752,3756,4151,34228,4599,4603], +"statehood", +[2,23188,8329], +[0,14609,4699], +[1,2343,23197], +"vision", +[0,0,23198,2514,4139], +[0,1414,1742,1177,1894,1895], +[1,2343,23200], +[0,0,23202,2514,2487], +"webidl-conversions", +[0,34238,1742,2924], +"@vitest/ui", +[1,2343,23206], +"@webref/css", +[0,23207,23208,13533,2487], +[0,2685,4228], +[0,48,53,87,192,5467,16405,1193,1610,1622,1700,1701,1177,1895,1938,2675,1192,2990,3144,3400,1894,4257,2924], +[1,2343,23210], +[0,23211,23212,2514,2537], +[0,16136,4227], +[0,1389,1509,2665,2899,2924], +[1,2343,23214], +[0,0,23215,23216,2523], +[0,4874,1414,1894,3985,3998,4505,91,1906], +[0,965,1936,17540,34254,11590,1644,1646], +[1,2343,23218], +[0,23219,23220,23221,4139], +[0,34270,34266,5526,5528,5529,1448,1509,1525,2071,2215,2220,34264,2228,2247,2253,2256,2258,2263,2281,2283,2308,2036,2600,2654,2820,2822,34269,2856,1209,3127,34261,3561,2278,4373,4449], +[0,48,53,87,94,10737,34272,1429,1431,6522,1177,1951,1954,1970,2899,3363,1894,4037,4039,4193,4196], +[0,2220,1739,1745,34276,34279,5592,9381,1179], +[1,2343,23223], +[0,23226,23227,2514,4139], +"own-property-symbols", +[2,2183,23224], +[0,4430], +[0,2012,19987,19988,19989,34294], +[1,2343,23229], +[0,0,23230,2514,2523], +[0,34300,34301,30025,3421,3697,4255,4389], +[1,2343,23232], +[0,0,9888,2514,2523], +[1,2343,23234], +[0,0,23235,2514,2537], +[0,2323,2899,1177,1317,2463,2384,2409,2494,2530,34312,2510], +"@ljharb/", +[2,23236,2190], +[3,19784,15], +[2,23238,14037], +[3,6541,12], +[2,23240,3205], +[1,2343,23243], +[0,23244,23259,23263,2523], +[0,1362,1473,1512,1636,2151,2036,34317,8691,1209,3367,17997,34318,22519,4431,4597,4600,34319,34321], +[2,8727,591], +[2,10306,5472], +"@ungap/structured-clone", +"from-parse5", +[2,2573,23248], +[2,2580,3493], +"html-v", +"oid-elements", +[2,23251,23252], +[2,9406,8193], +[3,75,9], +"namespaces", +[2,5925,23256], +"zwitch", +[0,1429,1596,2759,2899,3202,34324,34326], +[3,9315,9], +"gap__structured-clone", +[2,23260,23261], +[0,22055,22074,34328,1623,4329,695,2278,4245,34331,17461], +"remark-api", +[1,2343,23268], +"unist", +[3,2572,9], +[0,23269,23270,23271,2537], +[0,1326,3299,32944,4390], +[0,1177,2899,32942], +[0,14872,7827,4246,18035], +[1,2343,23280], +"aria-", +[2,23273,2618], +[3,23249,15], +[2,23275,1936], +"html-tag", +"-names", +[2,23277,23278], +[0,23281,23282,23283,2523], +[0,34342,34345], +[0,1177,15234], +[0,21000,4247,22813,18112,4166,2978,21004,5576], +[1,2343,23285], +[0,23290,23294,23295,2399], +"bcp-47-match", +"-separated-tokens", +[2,14186,23287], +"devlop", +[0,21505], +"direction", +[2,2573,3661], +"not", +[0,9516,9515,1317], +[0,12616,5122,1965,34354,26965,27081,34355,34356,34357,34359,34360,1936], +"selectall", +[1,2343,23298], +[0,23299,21592,23300,34352], +[0,4745], +[0,4249,1781,4745,17307,25611,1747,7141,7789,166,1721,18035,1745,5995,1550,3230,2109,3259,4246,6523,20832,25638,1781,3053,34366], +"attach-comments", +[2,12413,23301], +"is-i", +"dent", +"ifier-name", +[2,23304,23305], +[2,23303,23306], +[2,12413,23307], +[3,6451,11], +[2,12127,23309], +[3,23310,15], +[2,23311,1219], +"js-esm", +[2,12127,23313], +[1,2343,23317], +"esast-util-from-js", +[0,0,23318,2514,2443], +[0,87,1193,1192,34373], +"basic-node-server", +[1,2343,23321], +[0,23323,23325,23326,2487], +"ccount", +[0,1177,1903,33572,1938,1953,1958,1959,33573,34380], +"tostring", +[0,1615,2554,3183,34383,4092,12823,4389], +[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,2446,2292,2272,671,19315,19269,2869,4255,19317,590,19318,19320,19273], +[1,2343,23328], +[0,23329,23331,23333,2523], +[0,1437,1566,34392,1570,25901,1707,20949,34393,2089,2105,31174,4135,28154,4747], +"sval", +[0,1429,1177,1903,1938,1954,1958,2899,3203,3215,3421,4167,34395], +"solid", +[0,1566,4945,13729,13728,6976,15525,1098,4255], +[1,2343,23335], +[0,23337,23338,23341,2537], +"wcswidth", +[0,1138,1362,17045,1676,2020,17034,10756,28519], +[0,4874,34405,1429,1610,1705,34407,34408,34409,2212,2848,8163,3183,2899,34410,26230,4131,34413,4193,4196,20382,4255], +[2,23340,93], +"@swc-node/", +[0,15656,12804,36,6587,1973,6435,6703], +[3,9407,13], +"nd-after", +[2,23342,23343], +"exsolve", +[1,2343,23347], +[0,23348,23349,23350,2523], +[0,34423,27073,2175,34421], +[0,1241,2276,4545], +[0,4264,34426,34427,34429,20863], +[2,13721,3585], +[2,2573,23351], +[1,2343,23357], +"build-", +"build-jsx", +[2,12413,23355], +[0,0,23358,23360,2523], +[0,1645,1177,1903,1938,1948,1954,1958,1970,2899,3421,3784,22449], +"svg-tag-names", +[0,27,6622,1501], +"vdom", +"hyperscript", +"@glen/jest-raw-loader", +[1,2343,23365], +[0,23366,23367,23368,2537], +[0,4729,3445,3930,4135,668,37080,36874,7384,26870,5545,968,974], +[0,1797,4763,1429,1687,2070,2807,4200,2020,2975,3144,23802,89,4207,20573,2205,3266,3411,28853,668,23345,2161,2822,6042,814,4448,24324,3555,1894,29318,9241,1420,1525,4788,3530,28863,3824,11143,4507,33215,4726,9741,16485,30414,3527,4227,4294,91,53,17577,4874,1615,1710,29514,104,14552,30157,11196,58,29515,5254,37084,1707,37491,15245,35349,8646,7931,7948,7637,7812,26380,15906,36119,8506,30253,32284,4480,101,370,15600,30254,30260,30262,24759,5216,30464,20374,30283,3885,33523,1582,37017,21122,30913,9329,30284,33228,33534,33538,30300,30313,12837,4300,30321,30375,31673,30398,966,25114,37449,28465,30406,7943,972,33554,33526,8714,19592,9011,30387,3749,30453,30454,30467,12315,30468,30470,30471], +[0,4270,4627,4963,23245,23246,89,3286,23803,3857,5123,188,1098,3709,5167,5926], +[1,2343,23370], +[0,23371,23372,23373,4139], +[0,2664], +[0,23363,10825,10827,10828,28147,34473,34475,11011,10837,10840,29877,968,972,5087,11292,4880,1177,34480,1192,11347,2780,1894,3744,3758,89,3824,2278,4111,4270,4468,91,4705,4745], +[0,6718,4270,34484,4963,1745,4967,34485,21043,34491,34493,34494,3416], +[1,2343,23377], +"regexgen", +"sort-object", +[0,23378,0,5269,2523], +[0,7,53,87,6316,6318,1437,1448,1457,1512,1525,1595,6323,2061,34500,2151,2070,2036,2626,2681,17449,2856,1209,3079,6326,6327,3127,3183,6330,6331,29899,6332,4135,100,4473,3348], +[1,2343,23380], +[0,8856,7938,7939,2443], +[1,2343,23382], +[0,14754,23383,23384,2523], +[0,34508,34510,2899,4170], +[0,34513,3101], +[1,2343,23386], +[0,0,23393,23394,2537], +[3,5429,9], +[2,23387,19315], +[2,1561,23388], +"origin-embedder-policy", +[2,1611,23390], +[3,23391,13], +[0,816,6503,4874,1642,1794,2899,2966,1894,4042,4064,4066,4170,4474,4494,91], +[0,3101,353,1641,3048,5995,4967], +"-policy", +[2,3456,23395], +[2,23392,23396], +[3,5974,9], +[2,23398,19315], +[2,23392,23399], +"origin-", +"-cluster", +[2,4575,23402], +[2,23401,23403], +"refer", +"rer-policy", +[2,23405,23406], +"-security", +[2,4714,23408], +[2,14104,23409], +"x-content-type-options", +"x-dns-prefetch-control", +"x-download-options", +"x-frame-options", +"x-permitted-cross-domain-policies", +"x-powered-by", +"x-xss-protection", +[1,2343,23419], +[0,23420,11580,23421,2523], +[0,17835,692,17754,2129,2760,34524,13291], +[0,34527,34528,5995], +[3,17494,14], +[2,23422,965], +[1,2343,23425], +[0,0,0,23426,34352], +[0,4283,1671,1871,6901,1666], +[1,2343,23428], +[0,0,23429,23430,2537], +[0,2323,2346,2463,2494,34537,2530,28539,4535], +[0,1871,16116,34540,34541,34542,591,1641,1936,18089,1644,1936,2640,4301,6678,10368,15103,1867,23615], +[1,2343,23437], +"abbrev", +"archy", +"hexo-cli", +"hexo-", +[2,23435,2149], +[0,23442,23447,23457,2537], +"hexo-fs", +"hexo-i18n", +"hexo-log", +"hexo-util", +[0,5139,34547,2626,3021,34551,34553,34556], +"-js-types", +[2,2822,23443], +"titlecase", +"warehouse", +[0,34559,34560,17913], +"0x", +"bbrev", +[2,9165,23449], +"xt-table", +[2,13419,23451], +[2,1884,2596], +[3,1778,9], +[2,23454,3127], +[2,23435,23455], +[0,1501,7682,7115,1936,34562,34563,7293,22392,4285,1871,4301,2640,17950,2585,34564], +[1,2343,23459], +[0,23460,8134,23461,2537], +[0,34569,4294], +[0,1871,6843,3656,4289,7062,6922,6981,6701,6581,16041,23336,6700,1111,1867,5281,200,6876,7009,7201,6575,6611,6795,6960,7135,7230], +[2,11177,17514], +[1,2343,23467], +"grunt-g", +"h-pages", +[2,23464,23465], +[0,23468,23472,23473,2523], +[0,34576,34578], +"scrawl", +"ducers-js", +[2,4713,23470], +[0,4874,1414,26854,1894,3985,3998,4505,91,1906], +[0,1646,10368,1867,1936,6843,11043,18944,18089], +[1,2343,23475], +[0,23477,20489,23481,2537], +[2,5058,23278], +[0,1109], +"freeze-es6", +[2,1683,23478], +[2,5313,14056], +[0,4301,6678,7293,1111,592,1473,7208,1512,7009,7201,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +"tiny-worker", +"wcag-contrast", +[1,2343,23485], +[0,0,8134,23486,2537], +[0,4301,4295,1412,4327,3126,3656,4577,22188,7293,6865,6678,2585,1871], +[1,2343,23488], +[0,0,23489,23490,2537], +[0,1166,3130,4481,1906], +[0,1781,4301,4298,7293,6865,6678,16112,1644,1541,8309,6937,614,1263,6639,19632], +[1,2343,23492], +[0,0,23493,23494,2537], +[0,3421,1429,3297,2899,1177,4474,1894,3310,91,4856,4874,6503,23496,1431,1938,3200,1895,1955,9417,1011,10419,1009], +[0,4302,34601,34602,5592], +[1,2343,23497], +"undici-types", +[0,23498,23499,23500,2523], +[0,1149,1676,34607,34610,3324,34612,3368,3460,3917,34613,34615,34616,34619,34622,30142,34625,34626,34629,4707,2861,1401,34631,1653,2592,2713,695,1209,3081,26443,7305,34421,3220,3923,23975,4246,34634,26423,34636,34637,34639,29456,4729], +[0,1177,2292,4384], +[0,9649,34642,29319,34643,26473,34644,13538,4575,13539,6147,6374,24093,1541,4796,20997,20999,34647,2134,3358,27318,34650,6807,26474,10057,25202,3151,13499,27838,34651,3378,34652,34653,26931,6681,2306,3729,15267,28413,29179,5508,8791,11100,34654,34656,7046,34613,34657,34660,30142,34629,4303,34661,4345,17184,6901,34662], +[1,2343,23502], +[0,23503,23504,23505,2537], +[0,34667,34668,34669,34670,1437,1443,13827,1525,2745,2856,34671,1894,4443], +[0,34673,34676,107,192,5467,34677,34679,8661,34680,4856,4874,11438,7819,1011,5476,34681,5478,1082,34683,1429,1177,1951,1959,2007,2151,34684,2675,34686,2829,34689,695,2990,34690,26564,25131,2899,21290,3400,5561,2278,4135,4164,22595,4333,91,4555,3348,4745], +[0,34693,590,34692,1623,4964,11590,2278,4329,13339,34694,89,5133,25172], +[1,2343,23507], +[0,0,23508,13533,2537], +[0,1192,2278,2675,2832,3144,1622,1177,4135,1701,2924,1854,1894,1610,48,1193,1628,53,2092,2990,3400,4111,4677,192,4257,87,4681,1938,1895,2780,5467,16405], +"step", +[1,2343,23511], +[0,23512,23513,23514,2523], +[0,4311], +[0,192,5467,19438,19181,442,811,816,10615,5087,1009,1011,1177,1955,10964,2203,2675,1192,2990,1894,4042,4468,4474,91], +[0,4309,1623,590,5284,3048,23578], +[1,2343,23516], +[0,23517,23518,23519,2487], +[0,2718], +[0,192,5467,19438,19181,442,811,816,10615,10817,5087,4874,1009,1011,1177,1955,10964,2203,2675,1192,2990,3400,1894,23535,4042,4468,4474,4484,91], +[0,4311,134,590,57,1623,3048,23578], +"hap-nodejs", +[1,2343,23524], +"-newlines", +[2,1938,23522], +[0,23525,23526,23527,2443], +[0,7943,13037,34715,34718,1639,3561,4163,7917,4484], +[0,53,5652,8229,61,78,5240,87,90,92,10817,966,968,972,974,4863,5087,34720,4874,4880,4883,34722,5091,4889,5055,1193,1198,20479,14065,6375,1192,2780,26503,2802,2820,1894,3744,89,3824,34725,3857,3904,4042,4055,4058,4067,4069,4071,4073,34727,34730,91], +[0,89,1623,7165,4315,7297], +"@hono/eslint-config", +"@hono/", +"node-server", +[2,23529,23530], +[1,2343,23533], +[0,23534,23540,23541,2443], +[0,33204], +"publint", +"ly-js-compute", +[2,2062,23536], +[2,4609,23537], +"wrangler", +[0,48,53,78,4851,5743,5241,83,87,90,94,97,104,4880,1166,7913,34737,1573,1177,1895,2675,3008,1894,3720,89,3824,4131,4227,33212,7917,34741,91], +[0,7913,4592,34743,7165,1623], +"cloudflare", +"workers", +"fastly", +"compute", +[1,2343,23547], +[0,23548,20974,23549,2399], +[0,1393,3681], +[0,2887,1623,34749,4318,16918,3561,6425,4319], +[1,2343,23551], +[0,23552,23553,23554,2487], +[0,205,30928,208,213,30577,220,22371,30299,1595,1627,1634,1676,2071,29067,16783,14564,2205,34755,2641,2687,5210,19187,2747,2932,34757,3157,3170,3369,3527,3561,3676,3681,3688,4290,15887,34762,176,4728], +[0,107,34765,11893,34768,34770,34773,16934,5245,16787,34775,34776,34778,8778,16398,34780,19800,34785,22092,1317,1532,1699,1177,34787,1938,1939,2675,1192,34791,2802,2990,11357,3400,5561,3606,3613,30479,34793,3678,1894,3985,4337,91], +[0,7165,1623,695,671,9654,1783,2278,4329,4320,4337], +[1,2343,23556], +[0,23557,23565,23566,34352], +[0,4946], +"hopper-adventure", +[2,12087,23558], +"svelte2tsx", +"workshop", +"adventure", +"tutorial", +"tutor", +[0,34768,34770,1177,34787,2675,2990,3400,1894,3985,4320], +[0,4320,34801,4255], +[1,2343,23568], +[0,0,23569,23570,2523], +[0,3421,1192,2675,3534,1742,1177,1503,4508,1894,34810,1610,4320,48,1193,34809,11918,91,53,13693,2990,3165,94,192,4131,87,34806,1939,1978,1938,6063,34791,21120,1895,1955,4514,92,1011,6061,5467,1883,1009,5766,13052,61,78], +[0,7846,4320,1623,4329,695,671,34818,6884,3046,34819,1473,34820], +"big-lib", +[2,8131,23571], +[2,7635,23575], +"karma-co", +"codeshift", +"@jasminejs/reporters", +[1,2343,23579], +"pojo", +[0,23580,23581,23582,2537], +[0,3561,34826], +[0,1177,34829,1895,2203,2675,1192,30912,34791,2802,2990,3606,30479,34832,1894,34835,4320], +[0,7846,4320,1623,671,4327], +[1,2343,23585], +[3,2618,9], +[0,23586,23587,23588,2537], +[0,1634,2747,2932,3141,34842,34760,3681,3688], +[0,1532,1610,1177,34847,2675,1192,34791,2990,3377,3561,30479,3678,1894,4320], +[0,1623,21861,671,9654,4329,4320,7846], +[1,2343,23590], +[0,23592,14818,23593,2487], +"@domenic/eslint-config", +[0,63,1676,2070,4113,4227], +[0,1623,57,590,22561,2437,1351], +[1,2343,23595], +[0,23596,23599,23609,2487], +[0,2071,3369], +[3,9127,9], +"flowgen", +[0,48,53,87,192,5467,442,27928,19344,1317,34860,1610,1622,1628,1700,1701,1177,1895,20281,1938,1939,1942,1953,1955,1982,2203,2675,1192,2990,3144,3291,3400,1894,3786,4257,4307,4333,4523,2924], +" entities", +[2,1936,23600], +" encode", +[2,23601,23602], +[3,23603,14], +[2,23604,15103], +[2,18089,23602], +"entities ", +[2,23607,15103], +[0,2924,1194,4333], +[1,2343,23611], +[0,0,0,23612,2443], +[0,1623,3561,30775,5341,8958,57], +"ascjs", +[1,2343,23616], +"unescape", +[0,23617,23618,23619,2523], +[0,1533,34877,1676,33596,2139,2141,3164,3171,3763], +[0,48,53,83,87,97,192,5467,1290,16750,27731,1364,1389,1575,1610,1177,1909,1924,1954,2026,2040,2114,2182,2675,2990,3127,2899,3246,3421,3985,3995,4039,4170,34879,34881,1906,4770], +[0,4575,6662,6662,5592,1149,7003,1170,12618,5576,34883,2212,27,27,2671,21668,1862,1862,6567,705,705,21666,5508,4030,1153,4340,4339,17481,353,4731,4738], +[1,2343,23624], +[2,9374,12349], +"-unicode", +[2,23615,23622], +[0,23625,23626,2514,2487], +[0,25910], +[0,5245,27847,4874,1317,25212,3230,21180,91,1984], +[1,2343,23628], +[0,23629,23630,23632,2523], +[0,3164,4339,1581], +[0,3421,3297,2899,4193,1177,4170,2026,3752,1364,1575,192,1938,1881,5467], +"relateurl", +[0,5982,27,705,4339,6969,1973,5472], +[1,2343,23636], +"compressor", +"packer", +[0,23638,23639,23640,2537], +"uglifier", +[0,1362,3164], +[0,1429,1431,4037,4706,1364,1575,2026,2899,4170], +[0,4342,4339,705,6969,5982,27,1973,5472,1862,34901], +"detect-europe-js", +[1,2343,23650], +"alpinejs", +[3,19403,11], +"config-no", +"n-conventional", +[2,23645,23646], +[2,23644,23647], +[3,10854,16], +[0,0,23653,23654,2523], +"lyfill-node", +[2,23649,23651], +[0,1906,1166,4481,4874], +[0,1473,7208,1512,7009,7201,200,1111,592,6621,6616,7244,4166,4744,6876,4231,25986,34915,13735,13030,34916], +[1,2343,23656], +[0,23657,23658,23661,2487], +[0,31292,5012,23826,1006,1082,11869,19639,1497,11478,11479,22716,10898,10902,3090,22720], +[0,5180,8648,811,816,10615,8661,11868,4874,11486,668,4042,4227,27921,91,1984], +[2,23660,23663], +"browser-d", +[0,3709,27751,5130,5354,17950], +[1,2343,23665], +"etection", +"device-detection", +[0,23666,23669,23671,2537], +[0,5180,1457,20378,3527,11481], +"os-detection", +"bot-detection", +[0,811,8850,816,6373,10817,34939,1405,4042,4052,8849,3709,91,34940,34942,27702,27703,23560,34945], +"void", +[0,3709,200], +[1,2343,23673], +[0,0,23675,23676,2537], +"self-closing", +[0,53,87,192,5467,34951,34953,10879,4874,34955,19802,1165,13662,1509,1567,1177,695,3561,34958,3616,1894,3754,2278,4333,4337,3709,91,1984], +[0,3709,4358,91,695,4333,2278,4329,3754,1509], +[1,2343,23678], +[0,23690,23692,23693,2537], +"@bubkoo/commitlint-config", +"@bubkoo/", +[2,23680,7625], +[2,12612,1541], +[2,23680,23682], +[3,21388,20], +[2,23684,16171], +[2,23680,23685], +[2,23680,2190], +"asmine", +[2,5086,23688], +[0,16858,2070,4361,1149,25232,4597,4739,4747,2822,4709,3257,34967,3060,18993,10780,34966,13839], +"capture", +[0,1906,1192,695,2278,3549,4333,3536,1939,1942,34971,19812], +[0,1017,45,8221,18048,22074,22075,2873,1179,1623,2278,695,4333,5376,134,1936,13814,22874,22875,3257,17461], +[1,2343,23695], +[0,23697,23698,23700,2537], +"@selderee/plugin-htmlparser2", +[0,1525,1632,1634,9378,16858,3527,4113], +[0,442,11893,811,816,10615,16934,16854,5087,4874,34194,7752,1610,1177,2203,1192,3536,3541,3549,1894,4039,4042,4393,4481,91], +"selderee", +[0,4361,8221,6707,3178], +[1,2343,23702], +[0,23703,23704,23710,2537], +[0,1700,3067,34984,4533], +[0,1166,1173,1178,1257,29224,1272,1280,1362,1177,34989,3150,3188,4193,2924], +"@html-", +"/stylish", +[2,2649,23706], +[2,23705,23707], +"@sidvind/better-ajv-errors", +[0,2924,1932,34991,34984,11100,6812], +[2,23712,23], +[3,16579,15], +[1,2343,23714], +[0,23715,23716,23717,4139], +[0,1082,1699,2070,2856], +[0,1177,1894,4389,34997], +[0,8124,34999,7701,20120,1745,4363,1163,13728,1179,8623,20121,20123,20124,3452], +[1,2343,23719], +[0,23724,23727,23728,2537], +"theme-one-dark", +"@json2csv/plainjs", +[2,6019,3888], +[2,27733,23725], +[0,2205,2822,1525,35011,35008], +"-2", +"renderjson-2", +[0,1177,1984,1894,7677,35013], +[0,8124,1739,35015,1745,5592,134,4298], +"uffers", +[2,15038,23729], +[1,2343,23732], +[0,0,23733,23734,2537], +[0,4874,91], +[0,8168,8124,181,4369,2026,1745,1739,35021,12659,4367,699,35024,35026], +[1,2343,23737], +[2,11085,2634], +[0,23743,23744,23745,2537], +"pug-loader", +"recomp", +"ilation-simulator", +[2,23739,23740], +[2,4670,23741], +[0,5971], +[0,1866,2026,35036,2899,3421,3758], +[0,8124,2026,181,1781,1745], +[1,2343,23747], +[0,23748,23749,23752,2487], +[0,4535,3460], +[0,1209,2026,35046,2899,2025,35047,695,35048,1330,35051,3521,1389,2090,1776], +"@aminya/babel-plugin-replace-import-extension", +"lateurl", +[0,1283,17950,1936,21043,35053,16277,2026,1359], +[2,31806,31807], +"srcset", +"swiperjs", +[3,9376,10], +[2,23756,6424], +"postproc", +"cessor", +[2,23758,23759], +[1,2343,34505], +[0,4372,35058,31512,4453,12295,5131,1591,3525,1896,5130,35059,32054,35060,1932,89,188,35062], +[1,2343,23764], +[0,23765,23766,23768,2537], +[0,35068,35071,35072], +[0,1364,1610,2026,35074,1192,3237,4039,91], +"rss", +[0,705,27,2671,2325,1389,31360,15001], +"tributejs", +[1,2343,34522], +[0,35081,35082,3233,27838,888,6667,31937,6574,35084,35085,35086,35087,35088,35089,35092,26467,35093,7734,35095,3151,6771,35096,35097,35099,35100,11996,35102,35105,35106,35107,35108,35109,35110,35111,35112,17878,35115,35117,11812,35119,35122,10798,5876,12340,35125,25028,35126,35128,35129,35131,35133,35134,24079,5995,33741,35135,35136], +[1,2343,23773], +[0,0,23774,2514,2537], +[0,3445,2929,2899,3188,4039,4042,4072,1362,3310,35146,20463,4705,4232,8850,4073,6373,35141,816,35145], +"toidentifier", +[1,2343,23777], +[0,23778,23779,23780,2537], +[0,4729,1091,1594,35154,35155,35156,35157,1209,3237,35158,35159,35161,35162,2026,35163,35164,35166,35168,35169,1154,1364,1536,1562,35171,1130,97,35173], +[0,3278,1096,35175,35176,4167,35178,1532,35179], +[0,35181,35182], +[1,2343,23784], +"s-port", +[2,3209,23782], +[0,0,23786,23787,34352], +"sse", +[0,12473,4484,1177,2205,4042,1984,1894,91,53,4874,87,4057,4523,7677,5583,1938,11899,22839,22847,10817,816,24621,5660], +[0,4383,4380,1623,5256,35189,35191,1698,22306,35193], +[1,2343,23789], +[0,0,23790,2514,2537], +[0,1680,4874,16860,3090,4228,23956,31292], +"agent-base", +[1,2343,23793], +[0,23794,0,23795,2399], +[0,35205,35206,35209,35212,35213,35214,35216,35217,35220,35221,35222,35226,35227,35228,35230,35232,35233,35235,35236,35237], +[0,1145,4384,1973,5472,5130,200,35239,35240], +[1,2343,23797], +[0,23798,23799,23801,34352], +[0,1437,1792,2089,1209,3718,26840,35245,4431], +[0,35247], +"mockttp", +[0,4389,4384,2899,4386,16237], +"polka", +"next.js", +[1,2343,23805], +[0,0,23806,2514,2487], +[0,1192,1177,2203,1894,442,1193,53,1953,27928,87,1939,1938,20281,1982,1895,1955,19344], +[1,2343,23812], +"union", +"corser", +"secure-", +[2,23810,3797], +[0,23817,23819,23820,34352], +"eol", +[3,1895,15], +"opulist", +[2,23814,23815], +[0,35260,35263,35264,1417,1693,15016,35265,2133,2179,2070,35266,2571,2713,17403,3183,3206,3431,13635,3433,3435,814,18997], +[2,15021,36], +[0,13614,1143,1159,1537,1610,1796,35268,9254,1855,1177,14738,2762,2822,35271,3410,3421,4103,4135,4384,20496], +[0,4384,1973,35273,1145,1388], +[1,2343,23822], +[0,23823,23824,2514,2523], +[0,35279,35280,21505,29174,35278], +[0,4384,3297,4483,35282,4039,4508,1894,29169,4874,1834,35285], +[1,2343,23827], +[2,836,22715], +[0,23830,23833,23834,2523], +[3,7639,16], +[2,23828,176], +[0,3756,4393], +"HttpStatus", +[2,27,5576], +[0,4039,35291,4255], +[0,4390,2150,2090,18158,7204,3101], +[1,2343,23836], +[0,23838,23839,2514,2487], +"mediation", +[0,35297,35299,35298], +[0,35291,4255,1537], +[1,2343,23841], +[0,2513,23844,23845,2487], +"-retry", +[2,7737,23842], +[0,15288,15594,5087,4874,1009,1011,1596,668,1177,1903,1938,1954,1958,1192,1894,4468,91], +[0,35306,6346,35307,35308,4967,35310,5995,35312,27448,14629], +[1,2343,23847], +[0,0,23848,23849,2537], +[0,15288,5367,5371,6494,15594,5087,4874,9240,1009,1011,1364,1527,1652,35317,1177,1903,1938,1954,1958,2675,1192,2990,3363,5362,1894,4342,4468,91], +[0,35306,6346,35307,35308,5995,35312,15001,2026], +[1,2343,23851], +[0,23852,0,23853,4139], +[0,1676,3299,15160], +[0,32859,35324,35327,35328,35329,1326,35330,5995], +[1,2343,23855], +[0,23856,23857,23858,4139], +[0,1676,3299], +[0,442,6373,5245,4874,20584,1759,1177,1895,1966,1982,640,1894,4508,4514,91,4523,1983,26744,1984], +[0,32859,35328,4398,202,5995], +"anity", +[2,1901,23859], +[1,2343,23863], +[3,2677,9], +[0,23864,7923,23865,2523], +[0,4039,3188], +[0,21770,4449,1241,35342,16330,29615,35343], +[1,2343,23867], +[0,23871,23873,23880,2537], +"singular", +"plural", +"camelize", +[0,2753,13786,4507,35349], +"dasherize", +[0,4874,1166,3505,4453,4481,1906], +"demodulize", +"ordinalize", +"uncountable", +"singularize", +"titleize", +"tableize", +[0,1241,21770,3403,2090,7204,6857,16330,35342,29615,35343,3778,17023], +"classify", +[1,2343,23884], +"foreign_key", +[0,23885,0,23886,34352], +[0,26925,35364,35359,35367,35358,35365,35363,35356], +[0,7009,7201,1111,200,4744,1473,35369,35371,590,6847,35373,29002,35374,13006,4403,1478,15955,35375,35376,35377,32312,158,18048,21881,20639], +[1,2343,23889], +"@messageformat/core", +[0,23890,0,23892,2443], +[0,35382,15019,2713,35259,4431,35383], +"fast-printf", +[0,4403,7009,1111,35385,35386], +[1,2343,23898], +"make-plural", +"val-parser", +[2,9433,23895], +[2,18108,23896], +[0,23899,23900,23902,2487], +[0,35392,1082,1525,4232], +[0,35394,35395,1177,19210,1999,2899,3697,4042,4135,4227], +[2,23927,23929], +[0,2280,4072,4533,4535,3178,2632,5284,5286,1925,5194,6598,7075,6778,7056,7192,1149,7003], +[1,2343,23935], +[3,5702,15], +"-function", +"-functions", +[2,23904,23906], +[2,69,23907], +"gh-release", +"i18next-", +[2,1351,18691], +[2,13843,23911], +[2,23910,23912], +"fs-backend", +[2,23910,23914], +[2,2655,5995], +[2,23910,23916], +"storage-", +[2,23918,2325], +[2,2703,23919], +[2,23910,23920], +"sprintf-", +[3,10810,11], +[2,23923,7120], +[2,23922,23924], +[2,23910,23925], +[3,6021,10], +"interna", +"ease", +"alization", +[2,3855,23930], +[2,23928,23931], +[2,2703,8840], +[2,2202,8840], +[0,23937,23938,23939,2523], +"gettext", +[0,4072,2805,4121,4143,5180], +[0,1700,1192,2675,3144,1622,1177,1701,668,2924,1894,842,1610,4535,48,442,91,53,4874,2092,2990,3400,4677,28639,192,1953,27928,35403,4257,87,4523,1939,1584,1942,1938,20281,1982,1895,1955,19344,16400,5467], +[0,2280,4535,4533,4072,2924,1464,14137,15215,23634,2262,14137,2632,3178,6707,6708], +[1,2343,23941], +[0,23943,23944,23945,2537], +"gridly", +[0,22989,22991,22997,23001,23004,1519,1522,25190,2071,26553,17798], +[0,2829,3310], +[0,1187,1973,8791,200,2275,5472,4990,4389,4384,1166,2899], +[1,2343,23947], +[0,23949,23951,23953,2443], +"safer-buffer", +[0,1362,1437,2070,1209,3127,3188,35417,35419], +"errto", +[0,19181,442,12312,13414,4865,4870,4874,6513,1009,1011,7677,1703,1177,15555,35422,4193,35425,35426,4493,4494,91,35428,1984], +"unorm", +[0,1783,1973,2275,29352,1745,1739], +[1,2343,23955], +[0,23957,23961,23962,2537], +[2,8293,23958], +[0,53,71,81,5717,5749,5751,5757,5759,5782,5788,5821,5830,83,87,14128,90,97,35437,35439,4874,15427,5990,1212,14191,35440,17495,1429,1437,35443,1509,1525,1676,1680,1700,35444,28504,1687,35446,28137,13772,6473,2020,35450,2205,2215,33100,2670,12788,35453,2709,2742,26453,2743,35455,2753,2856,1209,35457,3093,7305,3220,35461,3257,3266,35462,3493,3532,35463,3549,15245,35465,3742,3762,35467,35469,13780,4025,4108,4135,5152,4232,4296,35473,35476,35479,35482,35484,35485,35486,35487,35494,35496,4449,4459,91,35497,35500], +"oxide", +"-reflect", +[2,5258,23959], +[0,33640,17835,35502,8862,811,15460,816,29544,35505,4856,5245,35507,17577,22089,27299,6505,7812,5254,5162,13418,35510,1009,1011,1198,1304,1364,35512,35513,1431,21480,4907,1544,1594,1610,35514,1874,1177,35517,17303,2026,35518,2323,2338,35519,2383,2384,2450,35521,35523,20305,2494,35527,2530,8163,3124,3159,3183,35531,3246,35533,3752,89,5311,4042,4076,4151,4193,17010,4294,35537,4484,4535], +[0,35539,6564,1388,2887,5351,8674,5472,13428,1973,8791,6969,1145,6468,35540,6789,6746,1149,7003], +[1,2343,23965], +"proxies", +[0,23966,23967,23968,2487], +[0,17877,35547,1137,20908,20991,1676,35549,1736,2182,28142,35550,35555,4391,4449,4548], +[0,28192,35558,28180,5245,28203,35561,35563,6520], +[0,4419,17878,5472], +[3,1891,15], +"stai", +[2,23969,23970], +[1,2343,23973], +[0,23976,23978,23979,2523], +"pre-suf", +"spawn-sync", +[0,1209,10627,35570,26827], +".gitignore", +[0,4874,1009,1011,1389,35573,35575,1610,1680,35576,35577,2752,3188,3400,3421,4039,4255,35579,35580,4421,4474,12851,91], +[0,6969,5982,3212,13106,4158,35582,4420], +"asterisks", +"regular-", +[2,23981,7256], +[1,2343,23984], +[0,23985,23986,23987,2537], +[0,10780,1292,1362,35382,1525,1536,1559,2020,2026,35588,2070,2659,2822,1209,3188,3257,3330,3411,35589,4039,4218,25192,35591,20496,4449], +[0,35593,1389,1429,18761,35596,1448,1719,1177,18766,1951,2899,705,35598,4167,4193,4196,4220,4389], +[0,5284,5472,27603,1388], +[1,2343,23990], +"dimensions", +[0,0,23991,23996,2537], +[0,4384,4389,1474], +"resolution", +"heif", +"tga", +"tiff", +[0,2585,176,14903,6938,26815,15847], +[1,2343,23998], +[0,0,23999,24000,2537], +[0,442,816,10615,1177,35611,1924,1937,1942,2203,29741,1776,3090,3549,3758,2907,4042,4495], +[0,4426,35617,5284,7598,35619,35620,35621,35622,35625,35628,35629,1424,8221,12075], +[1,2343,24002], +[0,0,24005,24007,2537], +"ow", +"p-pipe", +[0,48,53,83,87,97,5583,1195,16818,1593,1177,16821,1895,1955,1999,2182,35634,16824,2675,2297,2876,2881,2895,2904,2908,2921,2925,2990,3183,35637,3377,1894,3774,4042,16827,2924], +"imagemin-webp", +[0,1675,6925], +[1,2343,24009], +[0,0,24010,24011,34352], +[0,7115,4389,19988], +[0,3101,7046,7525,7170], +"is-png", +"pngquant-bin", +[1,2343,24015], +[0,24018,24019,24020,2537], +[2,2267,1932], +"pngquant", +[0,3923], +[0,1329,1398,1429,35649,2899,35650,4255,35653], +[0,3101,6657,4430,353], +[1,2343,24023], +"utf7", +[0,0,0,24025,2443], +"reader", +[0,3949,1499,1179,5701,1862], +[1,2343,24027], +[0,0,8134,24028,2487], +[0,35667,35668,35670,4435,5396,3403,4571,7204,4569,18132,6270], +"cpx2", +[3,23479,11], +[1,2343,24034], +"import-size", +"seamless-immutable", +[0,24035,14525,24039,2537], +[0,1437,32972,2089,21890,35675,3718,4425], +"mutable", +"on-write", +[2,1583,24037], +[0,2228,3005,22832,6901,35677,4262,18234,3514,6681,3005], +[1,2343,24041], +[0,24042,24043,24046,2537], +[0,35720,35797,35724,35730,35781,35789,35795,35799,35810,35682,35684,35697,35739,35750,35754,35769,35779,35793,35685,35700,35721,35741,35748,35756,35785,35787,35792,35812,35689,35694,35743,35752,35762,35774,35791,35805,35702,35705,35706,35708,35710,35723,35802,35806,35709,35699,35718,35729,35767,35772,35804,35808,35713,35733,35764,35811,35690,35701,35717,35727,35738,35761,35776,35783,35746,35736], +[0,2150,2070,2323,3403,2278,2899,89,1177,1209,4039,1637,3561,2924,1859,2151,2759,1610,2025,2504,3342,3824,1628,2359,3744,2367,4111,1165,2482,2496,4307,35814,35816,3427,4689,2361,2960,3618,35819,4909,1959,1879,1938,1947,25925,35818,1652,2054], +"variant", +[2,9721,24044], +[0,89,5128,4627,4963,181,5130,4967,35821,4437,14547], +[3,2697,12], +[1,2343,24049], +[0,24050,24051,2514,2487], +[0,20443,1676,26137,26144,3427,3763], +[0,1173,1198,1253,1267,1177,1903,1958,1970,2026,2164,2899,29946,4257,4342], +[1,2343,24053], +[0,0,0,24054,2523], +[0,1317,35832,4439], +[1,2343,24056], +[0,0,24058,24059,2523], +"bypass", +[0,35837], +[0,1473,57,35839], +[1,2343,24061], +[0,0,0,24062,2443], +[0,6105,4445,18241,5284,1936,2585,24829,24830,24843,6106,24832,6110], +[1,2343,24064], +[0,0,24065,24066,2537], +[0,4874,34238,1177,1895,1955,1982,1894,1531,91,4523,1983,1984], +[0,2062,35849,35851], +[1,2343,24068], +[0,0,0,24071,4139], +"metacom", +"metaco", +[0,4158,3212,91,3163], +"nfiguration", +[2,24070,24072], +[1,2343,24076], +"metalog", +[0,0,24082,23865,2537], +"metaschema", +"metautil", +"vm", +"metavm", +"metawatch", +[0,2899,1177,2759,15854,1951], +[3,15793,16], +"tarhia", +[2,24083,24084], +[1,2343,24087], +[0,24094,24096,24098,2537], +"isolation", +"enterprise", +"scalable", +"soa", +"stateful", +"cluster", +[0,3864], +"interactive", +[0,53,29553,5103,1894,91], +[2,24101,103], +[0,89,5128,35865,11000,8192,35867,35869,3857,3906,35868,35870,4450,9044,3811,5779,200,5131,12295,12296,5122,35871], +[1,2343,24100], +[0,0,24102,24103,2399], +[3,9312,10], +[0,48,53,81,87,90,11976,12310,5476,1195,1429,1177,2026,2151,2193,2205,2822,2832,3127,3188,2899,3286,35877,3400,35878,89,3824,2278,4255,2924,4677], +[0,4451,5284,176,5938,16504,8623,1936,6956,24456], +[1,2343,24105], +[0,0,24106,24107,2487], +[0,2276,28234], +[0,4452,57], +[1,2343,24109], +[0,0,24110,2514,2487], +[0,29169,4384], +[1,2343,24112], +[0,24115,24119,24123,2487], +"-vnode-flags", +[2,2711,24113], +[0,25671], +"inferno-", +[2,24116,594], +[2,24116,6579], +[0,5517,442,9089,603,4874,22839,1177,1895,1915,1938,1955,6526,2203,1894,4493,91,4523,1984], +[2,6073,591], +"ToString", +[2,8924,24121], +[0,9183,977,16358,35896,34877,34876,35897,35898], +[1,2343,24125], +[0,24126,24127,24131,2537], +[0,1512,1672,3188,35904], +[0,4856,6503,1429,1474,1787,1177,2899,3421,4474,4487,91], +[2,2712,591], +[2,2712,1592], +"humanize", +[0,3073,2942,4251,1676], +[1,2343,24133], +[0,24134,24141,24142,2523], +[0,15312,35917,17416], +"inherit", +"inheritance", +"klass", +"oop", +"oriented", +[2,3425,24139], +[0,13614,1159,9254,1855,1177,2708,3410,4103,4389], +[0,100,4647,6899,3053,7260,1697,1496], +[1,2343,24144], +[0,0,7923,24145,2523], +[0,1633,18718,3729,35109,32900,6553], +[1,2343,24147], +[0,20896,24148,2514,2523], +[0,7806,9227,6494,5087,1536,1594,2026,1192,3363,1894,4468,91,4763], +[1,2343,24150], +[0,24155,24158,24159,2537], +"@alcalzone/ansi-tokenize", +"auto-bind", +[2,17503,7201], +"yoga-layout", +[0,2713,4431,15019,35935,35938,3923], +"@types/ms", +[2,11313,14675], +[0,4389,4430,1537], +[0,1936,22115,57,353,3586,1623], +[3,6547,13], +"-exit", +[2,24160,24161], +"ack-utils", +[2,6516,24163], +"@vdemedes/prettier-config", +[2,15289,89], +[3,3816,9], +"tools-core", +[2,24167,24168], +[1,2343,24172], +"print", +[0,24173,24174,24175,2537], +[0,24156,5254,2738,3242,4135,22776], +[0,11976,4874,7677,1395,12690,3232,3446,7461,9245,91,1984], +[0,5995,1550,3230,3232,1932,2844,1747,18037,4799,91,2325,1552,1542,3151,9553,3766,35948], +[1,2343,24178], +[3,2718,12], +[0,0,24179,6273,2443], +[0,48,53,61,76,78,87,92,107,192,5467,9089,603,5366,5087,4870,7819,1009,1011,1193,1317,1593,1177,1895,1955,1978,2675,1192,1209,3400,1894,3957,4474,4508,4514,91,3348], +[1,2343,24185], +[2,24184,4013,17526], +"inno", +[3,2719,9], +[3,29444,16], +[0,24186,24187,24189,2523], +[0,35957,16781,2036,2856,3057,35958,4135,4507,4748], +[0,192,22559,19438,19181,442,11893,8755,554,10879,4864,5087,7637,7889,19446,35960,8778,4874,5254,4892,21626,1009,1011,1193,16307,1566,668,1177,1895,1938,1939,1942,1955,2020,2071,2151,2203,2675,1192,2822,2990,3144,1894,4039,4474,91,4523], +"run-async", +[0,1192,91,12938,89,5472], +[1,2343,24191], +[0,24192,24193,24194,2523], +[0,1437,1835,3170,4135,4227], +[0,8778,5254,1009,1011,1172,1175,1195,1257,1267,35968,1268,1874,1177,1895,1954,1955,2151,2070,2675,2766,2297,2881,2898,2904,2921,2925,2990,3123,3188,2899,1894,4039,91,2924,4677], +[0,4469,35972,2924,1194,91,4799], +[1,2343,25249], +[1,2343,24198], +[0,8998,1525,1759,3232,4494], +[0,24197,34525,24199,34352], +[0,5995,31012,35980,35981,3232,3230,1550,2844,1747,18037,4799,91,200,13326,35982,13325], +[1,2343,24201], +[0,24203,24205,24206,2487], +"fwk", +[0,35987,35989], +[3,2726,9], +[0,10817,4856,17577,6503,4874,1429,27445,1610,1687,2899,4039,4042,4474,91], +[0,91,6892,35993,4988,35995], +[1,2343,24208], +[0,24210,24212,24215,2523], +"reify", +[0,4757,1138,1687,1082,1084,35958,24806,36000,36001,32335,19441,36002,36005], +"exports", +[0,1166,3421,1170,89,36007,2022,1209,4039,4135,7094,3471,4508,842,36008,2188,3752,91,17577,4874,36009,4880,4870,20959,5254,15906,36011,28142,9725,28203,29139,603], +"packaging", +"unrun", +[0,91,202,7047,6639,4799,4643], +[1,2343,24217], +[0,24221,24222,24225,2523], +"remark-co", +"de-import", +[2,24218,24219], +[0,4870,24156,5254,36017,1209,3242,36018,36020,4135], +[0,11976,4874,7677,12690,3232,3446,7461,9245,91,1984], +"coffee.md", +"litcoffee", +[0,5995,3232,1932,1550,2844,1747,18037,4799,91,7163,2602,2013,6868,7147,3076,6865,13716,3073], +[2,24227,553], +[3,37196,18], +[1,2343,24243], +[3,1235,25], +"3-member-expression-literals", +[2,24229,24230], +[3,24231,27], +[2,4635,5796], +[2,24232,24233], +[2,1267,13278], +"-cal-buddhist-full", +[2,10739,24236], +"cldr-cal-", +"-full", +"chinese-full", +[2,24238,24240], +"cldr-cal-c", +[0,0,2667,24252,4139], +"optic-full", +[2,24242,24244], +"dangi-full", +[2,24238,24246], +"ethiopic-full", +[2,24238,24248], +"hebrew-full", +[2,24238,24250], +[0,91,4749,24753,24754], +"indian-full", +[2,24238,24253], +"cldr-cal-i", +"slamic-full", +[2,24255,24256], +[2,6795,24239], +[2,24238,24258], +[1,2343,24265], +"persian-full", +[2,24238,24261], +"roc-full", +[2,24238,24263], +[0,24270,24279,24281,2523], +"cldr-core", +"cldr-", +"dates-full", +[2,24267,24268], +[0,1209,4870], +"numbers-full", +[2,24267,24271], +[2,2004,19895], +"grunt-curl", +"grunt-zip", +[3,15911,15], +"emory", +[2,24276,24277], +[0,11976,4874,7677,3446,7461,9245,91,1984], +"ecma", +[0,5995,4799,91,36033,36034,5547,3624,16284,36036,36037,36039,36040,36041], +"ecma402", +"jsonc-simple-parser", +[1,2343,24285], +[0,24286,24288,2514,34352], +[0,2856,3183,4296], +[2,1940,23688], +[0,1192,2675,1177,4039,4468,4474,1894,91,5087,4874,2990,7892,36047,1942,1938,1895,1011,18285,1009], +"flag-icons", +[3,10697,15], +[2,24290,6082], +[3,2273,15], +[2,24292,23688], +"grunt-re", +[2,24294,2495], +[1,2343,24297], +[0,24300,24301,24303,2523], +[3,23932,13], +"country", +[0,8811,7681,2205,2777,3157,3505,3921], +[0,11436,4874,4880,1009,1011,1166,1597,1701,1177,1907,15290,2020,89,4025,4094,91], +"dial code", +[0,91,4481,4354,4532,553,36055,36059], +[1,2343,24305], +[0,0,24306,24307,2537], +[0,53,87,92,11893,19441,8811,4874,1009,1011,1193,1622,1177,1895,1192,1894,91], +[0,91,4481,8784,4354,16790,1973,4532,553], +[1,2343,24309], +[0,24310,24311,24312,2399], +[0,29891,1437,1457,15261,24283,3181,3188,36071,35237,4039,21512,91,9455], +[0,4874,668,1894,4384,4508], +[0,91,11540,24364,1999,10906,6147], +"updates", +[1,2343,24321], +[3,14428,13], +[2,24315,15525], +"inversi", +"on of control container", +[2,24317,24318], +"ioc", +[0,0,0,24322,2487], +[0,6869,7296,4643,1351,5284,4484,7047], +[1,2343,24330], +"empathic", +[3,547,8], +"li-framework", +[2,24325,24326], +"-prompts", +[2,24327,24328], +[0,24333,24350,24357,4139], +"discover", +[2,8655,24331], +[0,51,1405,1437,1525,1687,2070,2822,3181,3188,814,4135,4484,18272], +"utils-array", +[2,8655,24334], +[3,24335,13], +[2,24336,2150], +[2,24336,11996], +[2,24336,3729], +[2,24336,3101], +[3,24340,14], +"ubprocess", +[2,24341,24342], +[2,24336,7009], +"elementtree", +"leek", +"ssh-config", +"-proxy", +[2,4339,24348], +[0,692,19861,4856,17577,4865,7637,9129,10949,6503,4874,5251,20959,5254,1429,2675,34269,2899,3400,3421,1894,4039,4474,4487,4490,14970,91,31745], +[3,15592,14], +[2,24351,1633], +"pen", +"@types/open", +"s-name", +[2,15461,24355], +[0,200,91,9654], +"@types/split2", +[3,9240,12], +[2,24359,4575], +[1,2343,24365], +[2,2733,14606], +[2,2733,5130], +"hybrid", +[0,0,24366,24367,2523], +[0,1192,2675,1209,4039,4487,4468,3093,1894,36090,1527,91,5087,4874,36097,4492,36088,15600,4131,36098,36103,31194,4585,31195,36100,1652,36095], +[0,671,4487,36106,1894,1541,91], +[1,2343,24369], +[0,24371,24372,2514,2487], +"@types/svgo", +[0,18272], +[0,4865,4874,1512,2070,3400,3403,4487,36114,91], +"icon pack", +[3,11619,14], +[1,2343,24376], +[0,24377,24378,2514,2537], +[0,36119,1415,1457,1556,1676,668,28795,36120,3527,3616,4025,4042,4227,12444,26379,27921,4459], +[0,603,8850,842,5245,4874,5251,19839,2117,3561,26712,1894,814,4057,2278,4300,3709,4359,4072,36123,4493,91,1984,9252], +"@ioredis/commands", +[1,2343,24394], +"-key-slot", +[2,24093,24381], +"denque", +[3,19541,11], +"guments", +[2,24384,24385], +"-error", +"-errors", +"redis-errors", +"redis-", +[2,24390,57], +"as-callback", +[2,18124,24392], +[0,24404,0,24405,2537], +"@ioredis/", +[2,8626,16609], +[2,24395,24396], +[3,19583,22], +[3,10408,16], +[2,24399,10446], +[3,8826,10], +"is-errors", +[2,24401,24402], +[0,668,2191], +[0,200,7047,202,17526,10906,1999,91,36130], +"sentinel", +[1,2343,24409], +"pipelining", +[0,24410,24411,24412,2487], +[0,36135], +[0,811,816,6373,1389,4037,4042,4255,36140], +[0,15253,1936,1783], +[1,2343,24414], +[0,0,24415,24420,2399], +[0,2228,2899,29691,2240,4019,36157,36156,2300,36149,2258,36160,4232,2247,36163,2273,2281,36165,36167,36153], +"irc-colors", +"node-i", +"cu-charset-detector", +[2,24417,24418], +[0,2845,2844,1155,4496], +[3,1104,10], +[1,2343,24423], +[0,0,24424,24425,2523], +[0,1389,1177,2080,36176,4389,36178,4535], +[0,1616,12588,36181,36182,7789,3428,6803,36183,36185,36186,36187,36189], +[1,2343,24427], +[0,24428,24429,24430,2523], +[0,2151,2859,36194,21224], +[0,3400,3524,4535], +[0,3113,36197,57,11806,22875,36198,3656], +[1,2343,24432], +[0,24433,24434,24435,34352], +[0,1362,3171,705], +[0,1149,1512,1525,2899,4037,4193], +[0,4500,5592,4030,3101,22115,3424], +[1,2343,24438], +"is-extglob", +[0,24439,24442,24443,2443], +[0,705,1696], +"extglob", +"globstar", +[0,3297,2899,1177], +[0,4500,22115,3424], +[1,2343,24445], +[0,24447,0,2514,2537], +[2,14503,7204], +[0,3183,36215,1437], +[1,2343,24452], +"globally", +[3,9509,9], +"locally", +[0,24453,24454,24455,34352], +[0,31081], +[0,13789,1011,1177,28753,1680,2024,3401,4481,91,4523,1906], +[0,91,4799,553,6435,614,6731,3061,1698,1781,7265], +"vanilla", +[1,2343,24458], +[0,24459,16075,24460,2537], +[0,1562,36226,3173], +[0,1563,998,36228], +[1,2343,24464], +"is-object", +"kind", +[0,24465,24466,24467,2537], +[0,24648,6327,3105,3181,4745], +[0,442,8144,7639,6503,4874,1414,36007,668,1177,2899,3758,4135,4494,91,4523], +[0,91,1745,1179], +[1,2343,24471], +" name", +[2,24374,24469], +[0,24472,24473,24474,2443], +[0,36241], +[0,4874,4508,91], +[0,36244,36245,29,36246,36247,36248,91,1745], +[1,2343,24476], +[0,0,23733,24477,2487], +[0,1666,6901,33777,91,1745,36248,4508], +[1,2343,24479], +[0,0,0,24480,2537], +[0,5592,1745,1783,4508,91,36245], +[1,2343,24482], +[0,24483,24484,24485,2537], +[0,3127,91], +[0,8147,6503,4874,6520,1596,2759,2899,3202,4449], +[0,6869,1745,36263,5284], +"is-ins", +"ide-container", +[2,24486,24487], +[1,2343,24490], +[0,24492,24495,24496,2537], +"esmock", +[0,1525,4734,3275,15221,36270,1149,1512,3220,3188,7074,36272], +"wsl", +"subsystem", +[0,1429], +[0,36275,1783,36276,36278,26916,20672,1283,15253,1179], +[1,2343,24498], +[0,5914,24499,2514,2523], +[0,549,4856,9417,6503,36284,4874,1429,1431,1596,2899,36285,3232,36289,1894,36290,4232,4474,4490,31194], +[1,2343,24501], +[0,24502,24503,2514,2399], +[0,2070,3348,1112,1673,1676,4484,4747,1398,1680,1759,16544,1130,24697,3951,36295], +[0,1414,3519,1429,2323,2675,2742,2899,3243,3259,1552,4193,1177,3260,4039,7800,2203,3230,4246,4474,25633,1894,36308,442,2507,20085,4196,91,4856,4874,2494,2990,5245,6503,6513,4892,2496,36307,25629,2510,2529,25634,27585,19441,1431,6512,8536,18710,4523,36303,4232,28290,1942,28033,36305,9417,13418], +"kindof", +[1,2343,24506], +[0,0,24507,24508,2523], +[0,1414,3242,1429,1687,2070,2931,2899,4484,4707,36007,1177,20380,668,2203,1457,3183,24156,442,3527,3541,91,4856,17577,6503,26584,2858,692,7892,2075,36315,36316,4523,36318,4232,1964,36323,1012,13418,27909,12123,5551,36326,36331], +[0,6869,7296,4643,1351,5284], +[2,13283,2899], +[1,2343,24513], +"spaces-cli", +[2,671,24511], +[0,24514,7590,24515,2537], +[0,1012,1011,1009,12145], +[0,6892,5286,5284,91,57,5341,1177,6741,6939], +[1,2343,24517], +[0,24518,24522,24526,2399], +[0,36342,18420], +"code c", +[2,24519,2885], +"JS code coverage", +[0,10949,6503,4874,36345,1567,36348,3188,2899,3696,4487,91,4526], +"@metcoder95/https-pem", +"verage", +"JS coverage", +[0,6869], +[1,2343,24528], +[0,24529,24530,24531,2487], +[0,36356,36358,1759,16837,695,3025,3561,3616,16840,3638,16841,25162,2278,4228,4480,4333], +[0,36361,5087,19799,7889,4874,36362,36364,19802,1009,1011,1367,1177,1895,2675,1192,33412,2990,36366,3640,3672,1894,36367,4468,91], +[0,1623,4329,2278,695,4333,5260,1932,3561,91], +[1,2343,24533], +[0,24534,24535,24538,4139], +[0,23433,1362,1437,1486,1513,35446,25879,32086,3077,3183,36374,36375,4562,4720,1695], +[0,1705,3297,4039,4474,4487,36377,91], +"js-calendar", +"v-click-outside-x", +[0,4532,91,23076,6432,3383,10057,5490], +[2,1165,2091], +"5-property-mutators", +[2,24229,24540], +[2,1536,4408], +"vue-h", +"tml-loader", +[2,24543,24544], +[1,2343,24547], +[0,24548,24549,24550,4139], +[0,1525,4227], +[0,1082,2899,4135], +[0,2280,4533,4535,3178,2632,5284,5286,1925,5194,6598,7075,6778,7056,7192,1149,7003], +[1,2343,24552], +[0,0,24553,24554,2443], +[0,1082,4135], +[0,200,15215,23634,24280,5286,3595,1925,5284,676,36390,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,23637,2280], +[1,2343,24556], +[0,24557,24558,24565,34352], +[0,9448,2102,2755,4121,4143,4227,4535,4695,24777], +[0,48,53,87,192,5467,19401,16405,1193,19403,1610,1700,1701,1177,1895,1938,2675,1192,2794,2990,3150,3400,1894,4257,4072,2924], +"character-", +[2,24559,57], +"inople", +[2,14180,24561], +[3,10755,13], +[2,8535,591], +[0,2280,4535,4533,2924,1464], +"void-elements", +[1,2343,24572], +[3,13889,13], +"ddleware", +[2,24568,24569], +"code-mirror", +[0,24573,24578,24579,2523], +[0,36402], +"github-basic", +"highlight-", +[2,24575,1505], +"inconsolata", +[0,2899,1177,1362,2759,1954,1938,1958,1903,1970], +[0,3778,1179,7818,6953], +"-code-mirror", +[2,2437,24580], +"jade-", +"highlighter", +[2,24582,24583], +[3,10755,14], +"cdata", +[2,24585,24586], +[3,24587,15], +[1,2343,24597], +"offee-script", +[2,24588,24590], +[2,24585,695], +[2,24585,3127], +[2,24585,4333], +"verbatim", +[2,24585,24595], +[0,24603,0,24604,2537], +"less-file", +"lsr", +[2,23151,705], +"stop", +"twbs", +[0,97,4880,4883,36409,36411,36413,36415,36416,36420,36422,36423,1015,36424,36425,36427,36429,36430,36432,36433,36435,36437,36439,36442,36444,36445,36447,36448,36451,36453,36454,1018,1021,36455,36457,36458,36459,36461,36463,36466,36467,12265,1023,36468,36471,36473,36476,36477,36478,36480,36483,36485,36487,36489,36490,36491,36492,36493,36495,36497,36499,36502,36503,36504,36506,36509], +[0,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +[1,2343,24606], +[0,24608,24609,8039,2399], +"filelist", +[0,2070,2685,1209,4135,4727], +[0,2272,3105,2899,3381,4170], +"rake", +[1,2343,24612], +[0,0,24613,2514,2399], +[0,8862,811,816,10817,4874,1317,1894,4042,4484,91,1984], +[1,2343,24615], +[0,0,24616,24618,2523], +[0,11976,107,34715,1437,12607,668,2205,2553,3105,36526,3400,36528,3714,7917,1984], +"video-worker", +[0,1936,1283,2574], +[3,1198,14], +"nnotate-pure-calls", +[2,24619,24620], +[3,19449,20], +"nk", +[2,24622,24623], +[2,16819,2143], +"-nk", +[2,7628,24626], +[1,2343,24629], +[0,24630,24632,2514,2523], +[0,8862,811,8850,816,6373,10895,36534,1556,16230,668,28795,36538,2807,3090,36536,3189,3510,15450,3714,4042,4057,15451,27921,36537], +"parallax", +[0,5757,4874,7677,19336,1446,1177,1905,1894,91,1984], +"youtube", +"vimeo", +[1,2343,24636], +[0,0,24637,24638,2537], +[0,3421,2070,1734,2675,2297,2907,1177,4042,4072,1597,1596,2908,17232,5561,36544,1938,2915], +[0,614,6564,36,5576,1388], +[1,2343,24640], +[0,24641,24642,24643,2537], +[0,4243,23462], +[0,1389,36552,1177,2759,2899,3202,4068,31136,4545], +[0,4545,1871], +[1,2343,24646], +"css-url-embed", +[0,0,24647,24649,2523], +[0,20870,36559,24523,826,4874,1079,28400,1414,1610,36560,668,1177,2064,2675,1192,31808,29197,3313,2658,4481,91,4729], +"@gerrit0/mini-shiki", +[0,1612,27,2671,1862,705,7085,7289,4731,7102], +[1,2343,24654], +[2,2767,12608], +[2,2767,8751], +"walkdir", +[0,24655,24656,24657,2537], +[0,9315,31265,23289,2051,2745,36568,12449], +[0,36571,12396,9363,4874,1414,1894,3985,3998,4481,4505,91,1906], +[0,6892,7234,1563,25154,1644,3729,3958,3984,36573,4141,1646,5341,353,1633,4549], +[1,2343,24659], +[0,24660,8134,24661,2537], +[0,36578], +[0,17023,3778,6988,16114,8623,36580,4552,5401,11512], +[1,2343,24663], +[0,24664,24667,24669,2523], +[0,9315,18072,12447], +"cssfontparser", +"moo-color", +[0,9363,4874,1414,3137,27008,27010,1894,3985,3998,4481,4505,91,1906], +[2,1199,15525], +[0,23266,36587,614,6435,3984,36573,3958,26564,2587,36588,36589,3273,1351,1783,1936,6523,1633,6892,202,12414,4647], +[1,2343,24671], +[0,0,16529,24672,2523], +[0,35670,27280,18132,4558,3403,4571,7204,4569,4166,16159], +[1,2343,24674], +[0,24675,0,24676,4139], +[0,17180,2155,36602,36604,20508,3923], +[0,2056,4560,15008,36606,12666,3101,7682], +[1,2343,24678], +[0,24679,24680,24681,2487], +[0,36612,1371,1437,36611,4135,20044,1543,16184,2960,2744], +[0,1906,1166,24491,4294,1470,36615], +[0,3378,3076,29096,22005,3329,4354,16790,200,1237,3383,15525], +[1,2343,24683], +[0,0,0,24684,2537], +[0,12831,1002,36621,36622,36623,36626,36628,36630,36632,36637,36639,36641,36642,36643,36646,36649,36650,36653], +[1,2343,24686], +[0,24687,24691,24692,2399], +[0,3763,3757], +"@jest/e", +"nvironment", +[2,24688,24689], +[0,1158,3421,4770,1082,2899,1177,13614], +[0,7119,1002,25658], +"fake-timers", +[2,552,24693], +[1,2343,24696], +[0,0,24698,24699,2523], +"sql-highlight", +[0,1566,2899,4170], +[0,1002,4565], +[1,2343,24701], +[0,24702,24703,13533,2399], +[0,3008,3173,4121], +[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,2092,2675,1192,2990,3144,21016,3400,1894,4257,2924], +[1,2343,24705], +[0,24706,24707,24708,2523], +[0,15560,23783], +[0,1148,1389,1414,2899,3697,20010,20012,4535], +[0,7134,57,12831,1002,1644,3766,1871,3767,1646], +[1,2343,24710], +[0,24711,24714,24716,34352], +[0,2139,36681,3173,3763,4507,4548,36680], +"-escapes", +[2,11948,24712], +[0,5517,30494,36688,20224,36694,36687,7746,4874,36685,11305,36691,7752,29891,23247,7677,1410,1610,2685,33479,30889,2658,7798,28531,4393,4483,36684,91,1984], +"matchers", +[0,4568,27,36696,7085,7289,705,2671,4548,1612], +"extended", +[1,2343,24720], +[2,38074,1177], +[0,24721,24722,24735,2537], +[0,25493], +[0,3505], +"@pmmmwh/react-refresh-webpack-plugin", +"cape-html", +[2,5600,24724], +"ump.js", +[2,5086,24726], +"ndomcolor", +[2,12178,24728], +"eslint-w", +[2,2546,4406], +[2,24730,24731], +"jump.js", +"randomcolor", +[0,4569,4571,35668,25493,4014,7204,6857,3403,1263,6437,6639,6436,36706], +[1,2343,24740], +"recharts", +[2,30495,674], +"web-vitals", +[0,24741,24742,24743,2487], +[0,3084,4449], +[0,1148,2899,3697,705,4135,36712], +[0,4575,1388,36715,888,1644,57,36716,36717,36718,36719,4569,36720,4576,15525], +[1,2343,24745], +[0,0,24747,24748,2537], +"libxmljs2", +[0,1596,2759,14529,3774], +[0,8426,9254,3656,4577], +[1,2343,24750], +[0,24751,24752,24755,2523], +[0,2713,17395,25700,36732,17416], +[0,1090,1593,36736,3435,3438,4092,4100,4389], +"plugnplay", +"pnp", +[0,614], +[1,2343,24757], +[0,0,9530,24755,4139], +[1,2343,24760], +[2,814,13987], +[0,0,24761,24763,2537], +[0,68,192,5467,442,6375,1525,1177,1895,1955,2203,2675,1192,2990,29197,3400,1894,23901,27302,4257,91,4523], +"@vercel/h3", +[0,3348,6926,6668,36760], +[1,2343,24765], +[0,24766,24767,24768,2399], +[0,20573,1687,2929,11481], +[0,36767,1999,29283,34078], +[0,1145,36769,8791,8745,1973], +[1,2343,24770], +[0,0,24771,24772,2523], +[0,4384,2272], +[0,1002,7020,4354,16790,13017], +[1,2343,24774], +[0,24775,24776,24784,2523], +[0,17058,36781,7076,25814], +[0,17584,1429,15990,1527,1652,2675,2759,3188,2899,21477,4039,4131,4193], +"worker-farm", +"leak-detector", +[2,2769,24778], +[3,20371,12], +[2,24780,14922], +"@aneuhold/be-ts-lib", +"@vercel/koa", +[0,36785,1528,6458,3358,16094,13729], +"@vercel/hono", +"@jimp/diff", +"@jimp/", +[2,24787,9711], +"@jimp/types", +[1,2343,24803], +"@jimp/t", +"est-utils", +[2,24791,24792], +"@adonisjs/ace", +[2,12327,10809], +[3,475,10], +[2,24801,8915], +"manipulation", +[2,12327,24798], +"resize", +[3,24794,11], +[2,24796,24815], +[0,0,24804,24814,4139], +[0,9516,9515], +[3,1603,9], +[2,24805,3751], +[2,10880,1283], +[3,5617,14], +"eter", +"-decorator", +[2,24809,24810], +[2,11958,24811], +[2,24808,24812], +[0,3378,3383,1460,7020], +"bodyparser", +[2,24825,686], +[1,2343,24820], +[2,29401,166], +[2,13055,25721], +[0,0,24824,24834,2537], +" editor", +[2,6105,24821], +"wysiwyg ", +[0,48,53,87,94,1178,1198,1177,1881,1938,2899,3400,3421,4039,4042,4045,28038,4535], +[3,475,12], +"html editor", +[2,24823,24826], +[2,24796,7141], +"rich editor", +[2,6106,24821], +"editable", +[2,1563,24831], +"vanillajs", +[0,1155,7020,2649,20215,2574,36796,36798,1145], +[1,2343,24837], +"@adonisjs/env", +[0,24838,24839,24840,2443], +[0,36805,36809,36806], +[0,4874,11016,13061,16480,36812,11018,1639,36814,2832,91,1983,1984,36815,188,4639,36820,36821,36816,36817], +[0,181,188,8588,5131,4967,4627,4963], +[2,24846,24847], +"wysisyg", +"rte", +[1,2343,24845], +[0,0,24851,24865,2523], +[3,24828,11], +"vents", +"nanotimer", +"temporal", +[3,1387,9], +[0,2899,1177,2759,1317,4342,1311,1954,1938,1958,1903,1948,1970], +"erialport", +[2,24850,24852], +"firmata", +[2,24796,24858], +"beautifier", +[2,2294,24856], +"fold", +"0A02", +"0A21", +"16x2 LCD", +"20x4 LCD", +"2D120X", +"2Y0A02", +[0,27,10376,4590], +[1,2343,24870], +"2Y0A21", +"74HC595", +"ADXL335", +[0,24901,24903,2514,2537], +[2,24796,3428], +"ADXL345", +"ALS-PT19", +"ALSPT19", +"ANALOG", +"arduino", +"Ardumoto", +"AT42QT1070", +"BLINKM", +"BMP180", +"Continuous Rotation", +"DEFAULT", +"Diffused LED", +"DS18B20", +"Edison Arduino Block", +"Edison ", +"GPIO Block", +[2,24886,24887], +"I2C Block", +[2,24886,24889], +"PWM Block", +[2,24886,24891], +"edison", +"ESPLORA", +"EV3", +"galileo-io", +"galileo", +"GP2D120XJ00F", +"GP2Y0A02YK0F", +[2,24925,24926], +[0,4593], +"GP2Y0A21YK", +[0,4384,2276], +"GP2Y0A41SK0F", +"GY-521", +"GY521", +"HD44780", +"High Torque", +"Hitec HS-35HD", +"Hitec HS-", +[1,2343,24939], +"Hitec HS-422", +[3,24912,11], +"5BB", +[2,24913,24914], +"625MG", +[2,24910,24916], +"Hitec HS-6", +"46WP", +[2,24918,24919], +"755HB", +[2,24910,24921], +"805BB", +[2,24910,24923], +[3,24871,11], +"ealth", +"Hitec HS-85MG", +"HMC5883L", +"HMC6352", +"Hobby Motor", +"HRLV-MaxSonar-EZ0", +"HT16K33", +"HTU21D", +"i2c", +"Infrared Proximity Sensor", +"Infrared ", +"Sensor", +[2,24936,24937], +[0,24941,24957,2514,2487], +"intel edison", +[0,12105,668,1457,2139,36838,24762,36840,24783,30162,24785,36841,36842,36843,24818,28111,29471,36845,24738,28441,36848,30929,36850,36852,31275,36855,36859], +"intel galileo", +"ISL29125", +"JHD1313M1", +"Joystick", +"LCD1602", +"LCD2004", +"LCM1602", +"LED", +"LIDAR-Lite v2", +"Ludus Protoshield Wireless", +[3,24951,17], +"LV-MaxSonar-EZ0", +[3,24953,14], +[2,24954,1278], +"MCP23008", +[0,3242,1091,1138,1758,1999,2714,3467,3445,1983,1413,1437,1676,2020,3144,2658,17913,25671,4707,1438,1759,2022,2754,4039,4135,4238,4391,1984,1458,1503,2026,2105,3203,4474,1668,2151,2182,3761,3784,33145,842,24156,11305,36861,26453,29133,3181,3547,4459,29105,31142,1109,33200,1483,2794,3173,3310,4294,91,5087,4874,1154,1869,36863,20921,36864,36867,5364,5245,27066,26584,1107,1151,36868,36869,36871,5254,24358,35563,13834,5071,31008,36872,6541,36873,36874,25892,36875,8997,4864,28137,2069,36877,3386,16831,36878,34118,36879,9129,12461,27959,36880,7746,5542,30493,33761,36882,31071,23843,24725,36885,11907,36887,36889,15887,36890,36892,5328,36895,36897,36899,29125,36901,36906,36909,36911,36915,36917,36918,36920,36922], +[2,24925,9257], +"MCP23017", +"MCP9808", +"Metal Gear", +"MJKDZ", +"MMA7361", +[2,24796,2942], +[1,2343,24971], +"MMA7660", +"MMA8462Q", +"MPL115A2", +"MPL3115A2", +"MPR121", +[0,24982,0,24990,2537], +"MPR121QR2", +"MPU-6050", +"MPU6050", +"MUXSHIELD2", +"NXT", +"OA41SK", +"PARALLEL", +"PCA9685", +"pcduino", +"PCF8574", +[0,36927,1147,34631], +"PCF8574A", +[2,24796,32276], +"PCF8574AT", +"PCF8574T", +"@paralleldrive/cuid2", +"PCF8575", +"@poppinss/colors", +[0,1851,2656,15204,30960,31482,5317], +"PCF8591", +"photon", +"PIR Motion Sensor", +"QTOUCH", +"raspberry pi", +"raspberry", +"raspberrypi", +[2,24999,25005], +"@poppinss/", +"raspi-io", +"RedBoard", +"RGB LED", +"robotics", +"rpi", +"dumper", +"Servo", +"Shift Register 8-Bit SN74HC595", +[3,25007,14], +"SI7020", +"spark", +[2,24999,25017], +"spark core", +[1,2343,25035], +"spark-io", +"SparkFun Essential Sensor Kit", +"SparkFun ", +"macroable", +"Sensor Kit", +[2,25016,25018], +"Speed controller", +"Temperature", +"tessel 2", +"Thumb Joystick", +"TINKERKIT", +"TMP36", +"TSL2561", +"Ultrasonic Range Finder", +"usb", +"VKEY", +"Weather Shield Arduino", +[3,25030,15], +"Photon", +[2,25031,25032], +[2,24999,594], +[0,0,25036,2514,2537], +[0,2899,2759,4342], +[1,2343,25041], +"@hapi/formula", +"@hapi/pinpoint", +"@hapi/tlds", +[0,0,25043,25044,2537], +[2,6473,3020], +[0,53,87,192,5467,5583,1208,1429,1443,1503,1597,16656,1637,1701,1177,1881,1938,2675,2297,2878,2881,6385,2900,2904,2910,2990,2899,3400,3561,3566,16658,3613,3672,16578,3758,4042,4320,4323,4328,4535], +[0,158,11328,4596,36941,1936,1623,5284,6400,5122], +[1,2343,25046], +[0,25048,25050,25051,2523], +"youch", +[0,36951,1496,4002,36950], +"youch-terminal", +[0,3421,2899,1177,2022,35299,3923,1889,1954], +[0,4607,17462,2090,7204,4262,3403], +[1,2343,25056], +[2,24801,25055], +"recoil", +"ssembler", +[0,25057,25061,25062,2537], +[0,1329,4431], +[2,25059,25082], +"@adonis", +"gzip-js", +[0,4389,4603], +[0,4597,17461,6270,1398,3101], +"commitplease", +[1,2343,25065], +[0,25066,25068,25078,2443], +[0,36965,21539,2215,2685,36966,36967,3369,36968,36971,35299,36972,36975,4597,36976], +"grunt-git", +[0,1177,1889,2022,2899,3421,3923,4039,4193], +"-authors", +[2,25067,25069], +"-webkit", +[2,3541,25071], +"mpare-size", +[2,21927,25073], +[3,10727,15], +[2,25075,3766], +"karma-j", +[0,2323,36981,4597,2090,6771,2150,7046], +[2,26505,6579], +[1,2343,25081], +[0,25084,25087,25093,34352], +[3,835,16,7], +[2,25085,25086], +[0,4597,4431], +[3,475,8], +[3,24165,17,8], +[0,2494,4389,4600], +"grunt-html", +"owercopy", +[2,2237,25089], +"-local", +[2,14336,25091], +[0,4597,2323,17461,24456,3101,1871,2585,128], +"prototyping", +[1,2343,25096], +[0,9652,0,25097,2537], +[0,4597,4070,22850,2323], +[2,24796,2190], +"@japa/assert", +[1,2343,25101], +[0,25102,25105,25107,2523], +[0,36996,1851,36997,2202,24462,19094,36998,37000], +"@japa/expect-type", +"@japa/file-system", +[0,1389,2759,21526,3459,37002,30164,4387,4389,4770], +"config-chain", +[0,4607,965,23361,37004,1687,7163,1388], +"@japa/runner", +"code-quality", +"@japa/snapshot", +[1,2343,25112], +[0,25113,25116,25117,2487], +[0,20378,4042,668,3561,3530,27921], +[2,25115,15244], +[3,7895,14], +[0,4729,1415,27438,1594,984,3189,30023,3445,2278,4200,3510,1759,11480,3266,3493,4072,1544,28119,1457,28865,4955,37012,34928,3527,1615,1869,31308,16860,3090,58,9743,1763,2007,21688,37013,3613,37014,37015,24759,30787,37017,24725,1573,10895,3616,29444,8862,31292,28465,4060,811,28572,18584,5180,28575,16808], +[0,4967,5130,11498,5331,37019,1983], +[2,25119,25121], +[3,10844,11], +[1,2343,25123], +"-console", +"argon2", +[0,25124,25132,25133,2537], +[0,25375,2071,2151,37024,26479], +"knifecycle", +"yerror", +"edge.js", +"@mer", +"maid-js/mermaid-cli", +[2,25128,25129], +"mermaid", +[0,6494,4864,4874,2026,4493,91,1983], +[0,1983,5592,37028,37029,37030,37032,2026,37034,36,37036,7433,37031,37038,1932,8172,4083,5995,37039,37040], +[1,2343,25136], +"architecture", +[0,25139,25149,25150,2537], +[2,25138,25151], +"ts-node-", +[0,188,1983,9348,8114,37052,7797,36805,10984,6371,37047,37046,24097,37049,7639,11016,37051,9312,25447], +"-to-glob", +[2,16774,25140], +"@jscpd/html-reporter", +"@jscpd/", +[2,25143,139], +"-sarif-reporter", +[2,2824,25145], +"@jscpd/core", +[2,25143,207], +[0,3467,4200,1676,2020,3478,23802,3266,4039,4042,4135,1984,668,3537,3742,7799,19571,13151,28519,1457,2151,2182,3183,1894,3757,3084,3170,3527,27921,91,4874,1615,2226,2990,3105,5245,8646,30795,8146,7812,3509,4864,7892,3067,37067,9245,8778,5946,3114,4057,37017,21122,3107,8850,34971,37061,37065,8862,37074,3112,15277,37062,6373,22823,811,3668,37059,7641,37070,37056,1567,816,37058,37069,37071], +[0,1983,188,4614], +"maintained", +[1,2343,25153], +[0,25166,25171,25173,4139], +"cst", +"adonisjs", +"jscs-jsdoc", +"jscs-", +"wikimedia", +[2,10832,25158], +[2,25157,25159], +"rved-words", +[2,4020,25161], +"to-double-quotes", +"to-single-quotes", +"vow-fs", +[0,30023,1983,3510,15452,26379,3530,4441,27921,37080,2024,37082,3090,37084,36874,26380,37085,37014,37087,37092,37093], +"7.0.0", +[2,5857,25167], +[2,8649,22785], +"unit-coverage", +[0,4729,1415,3171,37095,2832,26385,3742,24324,2559,37096,1084,4874,13204,1006,37013,7812,37097,20374,37100,13471,826,8806,5180,6515,8809], +"style guide", +[0,1983,1984,1973,1192], +[1,2343,25175], +[0,25176,25180,25182,2523], +[0,1437,1209,2720,3183,4726,2708,3077,4294,1257,37108], +"@jsdoc/salty", +"catharsis", +[2,20398,57], +[0,1906,2323,1172,2899,3220,4170,37110,705,1362,1175,2338,2384,37115,37117,2357,37113,1267], +"requizzle", +[0,5592,200,32276,4166,8786,5130,1896,13527,1523,1525,35539,3741,2720], +[2,25184,25186], +"@aneuhold/", +[1,2343,25187], +"core-ts-api-lib", +[0,25196,0,25197,2537], +"current", +[2,1469,4479], +[2,25188,25189], +"object-to-", +"spawn-args", +[2,25191,25192], +[2,25195,1095], +[3,25183,18], +[0,1687,37123,2070], +[0,5472,4386,1973,37125], +[1,2343,25199], +[0,25201,25206,25207,2487], +"ool", +[0,4449,2070,3171,3917,22990,1437,2975,4753,37130,4135,4734,1448,4566,1525,3181,3105,37131,2613,37132,36323], +"master", +"config-master", +[2,25184,25205], +"main-scripts", +[0,2675,2899,4474,1894,6520,91,4865,27098,4874,15743,37139,3400,6503,20290,3720,5254,28189,37135,192,37137,9129,4131,7639,4232,12458,5467], +[0,29641,4617,7188], +[1,2343,25210], +"jsr", +[0,0,2667,2514,2537], +"data-urls", +"decimal.js", +"saxes", +[1,2343,25218], +"symbol-tree", +"w3c-xmlserializer", +"whatwg-url", +[0,25222,25223,2514,2537], +[2,25261,25262], +"sugar-free", +[2,3192,25220], +[0,1104,1496,2012,2061,2070,2685,2741,4227,91,4597,4734,4747], +[0,22909,37149,22821,4865,37152,9129,6503,4874,28198,22900,18438,4891,28189,4892,1009,1011,1177,2899,4039], +"webidl2js", +[1,2343,25226], +[0,0,25227,2514,34352], +[0,2899,3188,2924,91,4874,4677,6503,37157,1584,603], +[2,25239,25240], +[1,2343,25234], +"browser-re", +[2,25230,5460], +"cssom", +"nwmatcher", +[0,25236,0,25241,2487], +"selenium-s", +[0,36805,37163,23423,17494,5337], +"tandalone", +[2,25235,25237], +[3,8647,12], +"li", +[0,188], +[1,2343,25246], +"13.0.0", +[2,5857,25243], +"@trapezedev/project", +[0,0,25247,25248,2523], +[0,53,61,71,4851,87,4856,6503,4874,1011,1191,1195,18571,1429,1628,1177,37170,2899,3951,4039,4042,4045,4069,4421,4469,91,4533,188,4634,4645,19469,4646,2924,4677], +[0,188,1227,1172,91], +[0,25260,25258,2514,34352], +[2,5051,25257], +"results-interpreter", +"5.2.0", +[2,5857,25252], +"unicode-1", +"1.0.0", +[2,25254,25255], +"lice-ansi", +[0,53,68,5611,37178,15273,19181,442,5245,1006,4874,5254,1009,1011,7677,23203,1177,19492,1945,1953,19623,1955,1982,17310,1894,4474,1531,91,1983,1984], +"splash screen", +[0,1676,1994,1996,2000,19186,4135], +[3,225,10], +"5/blanditiis-numquam-expedita-neque", +[1,2343,25301], +"stylish", +[1,2343,25267], +[2,25303,25304], +[0,0,25268,25270,2523], +[0,1397,1192,188], +"deeks", +[0,188,6609,2999], +[1,2343,25273], +"doc-path", +[0,25274,25275,25278,2487], +[0,37192,37049,37190], +[0,24226], +"json2csv", +"csv2json", +[0,2679,23932,37202,1932,188,6284], +"csv-2-json", +[3,25219,12], +[1,2343,25282], +[0,25283,25286,2514,2537], +[0,1437,2570,33215], +[2,25280,25285,25288], +[3,780,9], +[0,53,87,37211,1006,32109,5087,13204,37213,37214,1195,37215,1567,1628,2092,2651,1192,2832,2990,37217,3144,3177,16581,11801,3618,1894,3754,37220,4227,4307,4333,4334,4337,4468,4469,91,4027,188,4633,2924,4677,4681,4689,19235], +[1,2343,25289], +"aut-officiis-quae", +[0,0,25290,25291,2537], +[0,5087,4874,1192,3951,4042,4468,91,188,4629], +[0,188,91,4636], +"milliparsec", +[1,2343,25295], +"sort-on", +[0,25299,25300,2514,2523], +"@typ", +"icode/eslint-config", +[2,25296,25297], +[0,5216,28126,37049,30206,1457,2856,37096,3090,3189,30230,3510,3530,15451,27921,29161,30959,4745], +[0,104,31940,8648,811,816,6373,10615,33179,37232,20374,29891,11016,17494,34157,5337,11018,25092,13393,1549,1759,37235,17850,2559,3294,37236,32977,4039,4042,4076,1531,4493,1983,188], +[0,25305,25306,2514,34352], +[1,2343,25412], +[3,25284,13], +"oloremque-voluptas-facere-nemo", +[0,2570,3008], +[0,1175,1193,1240,1567,1192], +[2,25280,25391], +[1,2343,25309], +[0,25310,0,25311,2537], +[0,37247,2591], +[0,188,4643], +"0.0.0", +[2,25254,25312], +[1,2343,25315], +[0,25316,25317,2514,4139], +[0,37049], +[0,188,1192,1437,2020,21665,1177,4042,4135,2026,2924,1836,2151,1610,3758,4614,1193,1628,91,4634,53,4874,1195,37253,4640,87,17494,3957,15134,4073,4261,6373,37170,4679,4684,811,1567,816], +[1,2343,25319], +[0,25320,0,25321,2523], +[0,37258], +[0,614,888,37260,2150,4647,37261], +[1,2343,25323], +[0,25324,25325,2514,2537], +[0,9129,18704,20960,3181], +[0,5087,4874,2070,1192,3144,4039,4468,91], +[1,2343,25327], +[0,16409,25329,25330,2537], +[2,2842,24077], +[0,192,5467,1389,1527,1652,2675,1192,4535], +[0,4649,3497,89,2731], +[1,2343,25332], +[0,25334,0,25335,4139], +"meriyah", +[0,37277,3183], +[0,614,6435,2150,1586], +"jsonparse", +[1,2343,25338], +[0,25339,25340,25341,2487], +[0,15642,1389,1457,15016,37284,4431,1695], +[0,1377,3188,4237,4389,4535,37286], +[0,1389,25429,2282,6374,6147,1388], +[1,2343,25348], +"jws", +"lodash.i", +"ncludes", +[2,25344,25345], +[2,3045,19366], +[0,25354,12529,25356,2537], +"integer", +[2,3045,25349], +"lodash.isn", +"umber", +[2,25351,25352], +[0,33304,26786,1149,37294,33313,37297,33328,33329,37298,37300], +"lodash.once", +[0,33359,3469,3259,14873,1552,3230,37303,4651,4104,33365], +[1,2343,25358], +[0,25359,25360,25367,4139], +[0,1137,1149,1209,3188,3760,705,37308], +[0,37313,1429,1431,1512,18192,2026,2061,2323,37315,2384,2419,2463,2590,2659,34317,2759,2899,37316,3297,37317,4089,37320,37324,37325,4547,3348,4747], +[2,25362,25364], +[3,32971,13], +"@jspm/generator", +"phases", +"fu/eslint-config", +[2,13179,25365], +[0,5472,13428,11132,13841,28522], +[1,2343,25369], +[0,25371,25373,25374,2537], +"webdav", +[0,37331,37332,37334,37335,37336,37337,37339,37342,37344,37345,37347,37350,37352,37355,37358,37361,37363], +"states", +[0,37365,1192,1177,37366,9422,4468,1894,1317,91,5087,2787,5366,37368,1938,19956,1895,37371,1011,37374,1009], +[0,37376,17626,8172], +"dotenv-local", +[2,28322,364], +"lie", +[1,2343,25381], +"jszip-utils", +[3,21510,13], +[0,25384,11736,25385,4139], +"versionify", +[2,25380,25382], +[0,37390,37393,1327,1394,37394,37397,37398,37401,37404,37408,4747], +[0,4653,4990,200,37410,9420], +"deflate", +[1,2343,25389], +"inflate", +[0,25390,25392,2514,2443], +[0,19611,1006,8818,37424,37427,37429,1082,25361,1393,37433,1835,37014,1994,2018,20575,2215,9506,20465,3173,23175,4121,4388,4409,33215,4695], +"quisquam-quod-ab-aut", +[0,53,90,107,34765,25376,20577,8780,5087,7746,28919,4874,25422,37436,1195,37437,37438,1509,1593,1622,1628,1668,1856,4913,1177,20281,2092,2135,2203,37439,2629,2675,2759,1192,21124,2774,2777,2784,2794,2843,2856,695,2969,2990,1209,3021,3144,25333,3177,21016,640,3421,3446,20085,1894,3717,3754,23738,3786,89,3824,30570,3978,9340,3988,3992,3999,4039,12936,4183,4294,4307,4072,4426,4441,4452,4469,91,4549,4027,37440,37441,4677,37442,4746], +[1,2343,25394], +[0,25396,25397,25398,2399], +"@diahkomalasarinpm/odio-facilis-beatae", +[0,4729,4200,1082,3456,1675,1525,1084,3527,2628,1874,37449], +[0,1700,1429,2323,1192,3190,1177,2205,3698,1593,1637,3561,2924,2098,3758,1461,1628,2338,3191,4027,53,1436,4677,1165,1178,1195,3060,4307,97,3057,37457,3618,22651,87,37453,4681,90,1210,1959,37458,4409,37451,37454,83,71,5757], +[0,2924,6374,4674,5260,4202,24095,9816,33126,37460,16660], +[1,2343,25400], +[0,25401,25402,25405,2399], +[0,1842,3932,1511,1525,2727,1615,2704,4689,37466,13077,29067,37449,37468], +[0,37472], +[3,1754,13], +"qjobs", +[0,2924,200,4989,1237,6996,5122], +"unit-reporter", +[2,25077,25406], +"cript-", +[2,25408,15473], +[2,2916,25409], +"timer-shim", +[0,25414,25417,25418,34352], +[1,2343,25419], +[0,3144,1511,3173,3440,3781,4121], +"spectacular", +"execution", +[0,2934,2611,1192,2020,2675,1622,1177,38,1544,1701,2026,2078,2203,2924,1894,1610,1699,4342,48,442,470,1193,91,53,4874,2092,2990,3400,2099,11485,6494,192,1953,27928,37480,4257,87,23531,7746,37482,1939,1942,1938,20281,1982,1895,1955,19344,5467], +[0,2924,2663,5001], +[0,25431,25433,2514,34352], +[1,2343,25567], +"os-shim", +[2,25423,25430], +"@types/x", +"karma-p", +"karma-plugin", +"reprocessor", +[2,25424,25426], +[3,14927,12], +[2,25428,25200], +"xhashjs", +[0,4729,3445,32876,34228,2026,33507,1457,9241,1511,11993,7798,1536,2215,4150,4121,37490,37491,37493,6494,37494,37499,37500,37503,2664,4679,1549,33189,37505], +[2,25280,25435], +[0,2611,1192,695,1082,2020,2675,37507,3144,1622,1177,3127,4039,1544,1593,2924,1894,3758,4342,48,1193,1628,2659,91,53,4874,2969,2990,3400,4677,1195,4307,4224,18052,4689,97,192,1953,3923,9252,27928,4257,87,23531,22102,4523,7806,8780,1939,1942,2651,12837,68,37508,37513,1938,20281,1895,2780,83,5467,13052], +[1,2343,25439], +"suscipit-assumenda-a-assumenda", +[2,2877,15473], +"browser-stack", +[2,25280,25442], +[0,25440,25441,25444,2523], +[0,4294,2626,37503], +[0,3421,2899,4193,1177,2026,2924,1894,4342,1955,4679], +"vitae-sequi-voluptas-a", +[2,25445,25446], +[0,2924,11498,6609,1237,37523,37525,2663,2026], +[3,25438,13], +"oluptatibus-vero-magni-rerum", +[2,29825,29840], +[1,2343,25449], +[0,25450,25451,2514,2523], +[0,4388,4695], +[0,841,4874,4891,37531,7858,1584,1700,1177,37534,1915,2092,2675,2990,3150,3697,1894,37535,89,4307,4484,91,1984,2924,4689], +[1,2343,25459], +"ibrik", +"ffee-preprocessor", +[2,23574,25454], +"karma-r", +"equirejs", +[2,25456,25457], +[0,25463,25464,25465,2523], +"karma-re", +"porter", +[2,25460,25461], +[0,2117,21520,5898], +[0,2675,4484,37542,2924,1894,91,37544,1006], +[0,2924,1698], +[1,2343,25467], +[0,0,25475,25480,2523], +"Safari", +" Tech Preview", +[2,25468,25469], +"TechPreview", +[2,25468,25471], +"IE", +"Chrome", +[0,1429,1177,1938,2899,3203,3275,2924], +"Chrome Canary", +"Chrome ", +"Headless", +[2,25477,25478], +[0,2924,13382,202,6374,11053], +"Chromium", +[1,2343,25483], +[0,0,25486,25487,2523], +"Firefox", +"Opera", +[0,1192,1177,2203,2924,2759,1894,1596,442,4227,91,5087,1953,27928,1939,1942,33002,1938,20281,1982,1895,1955,19344], +[0,2924,4227], +[1,2343,25489], +[0,25491,0,25494,2537], +[2,25764,25765], +[0,2215,1615,4449,3524], +"chai-fs", +"os-homedir", +[0,12197,29726], +[1,2343,25496], +[0,25497,25498,25499,4139], +[0,1401,1676,1856,37568,34639,37569], +[0,1400,2323,2447,2839,2272,4389], +[0,4699,14609,21302,37572,37573,6645,6761,20863,36,5576], +"@asdfgertyjhnpm/a-unde-explicabo-eaque", +"firefox", +[1,2343,25503], +[0,25504,25505,25506,2523], +[0,37578,37579,37581,37585,37586,37587,37589,37592,37594,37595,37598,37600,1676,1869,37602,37603,37606,37609,37612,37613,37615,3171,3441,37617,3756,25990,37619,3781,25996,34383,37623,35299,37624,37628,37631,37633,37636,37637,37638], +[0,53,68,5712,87,37641,1090,37644,25992,37646,1290,37647,1398,37648,1618,3588,1177,1903,1938,1953,1958,2099,37650,3486,37652,3767,4092,4131,4151,15039,20496,4387,4389,4409,15046,2924,4677,37654], +[0,37656,37657,1764,37658,37659,37663,37665,22115,37666,37616,37667,15247,37668,4702], +[1,2343,25508], +[0,25509,25512,25515,2399], +[0,1326,3263], +[2,25511,25517], +[3,25500,16], +[0,29569,4384], +"adapter", +[2,2877,25513], +[0,7734,37674,37675], +[1,2343,25518], +"nesciunt-molestias-reprehenderit-occaecati", +[0,25519,25520,2514,2523], +[0,2026,3368,4545], +[0,1506], +[3,25395,19], +[1,2343,25523], +[0,0,25524,2514,2537], +[0,1429,2297,2899,1177,4042,1894,2878,2900,1159,3734,37688,2881,2889,2912,2895,13867,19910], +[1,2343,25526], +[0,0,25527,25528,2487], +[0,4652,2070,10679,4030,2856,37693,2272,3188,37694,3460,1317,26825,4535,1389,3736,37320], +[0,37696,37698,14833,1862,6567,14834,14835,4706,1149,14629,6804], +[1,2343,25530], +[0,25531,6538,2514,2523], +[0,37703], +[1,2343,25533], +[0,0,25534,25535,2399], +[0,13896,1776,2899,3220,37708,37709], +[0,6574,29179], +[1,2343,25537], +[0,25538,25539,25540,4139], +[0,37715,13388,1149,2753,37716,37718,3923,18730,4252,20931,4715], +[0,48,53,87,37721,4874,37722,1148,37724,1177,37725,1192,4039,4238,34395,4431,37727], +[0,4709,2942,6807,30124,21111,1409,3533,3079,2041,1781,3101], +[1,2343,25542], +[0,25543,25545,25546,2487], +[0,37735,3429,20931,4715], +[3,2910,12], +[0,37739,37741,1429,1177,1954,2899,4039,7734], +[0,4709,37743,37744,37745], +[1,2343,25548], +[0,25549,25551,25552,2537], +[0,37716,3923,20931], +"safari", +[0,4874,1148,1173,1264,1693,1177,37721,2899,3421,4039,37727], +[0,4709,4714,37752], +[1,2343,25554], +[0,25556,25559,25560,2537], +"global-agent", +[0,37758,2070,1209,37759,4431,37760], +"al-agent", +[2,4865,25557], +[0,1429,2151,2759], +[0,1370,3383,6355,14510,1508,4796], +[1,2343,25562], +[0,0,16487,25563,2443], +[0,6940,37767,3924,37769,16580,37770,7295,2585,4718,4717,28734,4719], +[1,2343,25565], +[0,0,9264,25566,4139], +[0,4718,4719,5547,1671,6922], +[0,25576,25577,25578,34352], +[1,2343,25597], +"karma-br", +"ief-reporter", +[2,25569,25570], +"sourcemap-", +[2,21536,8754], +[2,25572,25573], +[2,12612,25574], +[0,16781,3714,10761,4695,37780], +[0,4874,4891], +[0,37783,37784,2924,37786,20164,37788,37789,37790], +[1,2343,25580], +[0,25581,25582,25583,2537], +[0,1110,4290,4294], +[0,1166,1437,1596,6474,3421,4481,1906], +[0,4719,6940,4720,6980,7152,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +[1,2343,25585], +[0,25586,6538,25587,2487], +[0,19187,4174], +[0,37808,29999], +[1,2343,25589], +[0,0,25590,25593,2537], +[0,1317,1401,1177,1895,1955,2203,2899,3421,1894,34639], +[2,8652,2013], +"keydown", +[0,7299,7172,6761,6729,7057,6145], +"keyup", +"metakey", +"keyname", +[0,25599,25600,25601,34352], +[0,2342,2402,2457,2488,2531,2540,2540,2630,2488,2688,2488,2698,2737,2488,2775,2799,2818,2840,2939,3016,3110,3207,3247,3279,3307,3448,3515,3593,3631,3723,3782,3844,3879,3908,3929,3952,4006,4016,4096,4154,4203,4241,4263,4286,4308,4331,4348,4417,4444,4476,4506,4528,4573,4655,4673,4700,4743,4813,4953,4994,5004,5007,5013,5016,5019,5023,5028,5031,5034,5037,5041,5044,5052,5099,5134,5137,5141,5144,5150,5171,5174,5199,5203,5211,5231,5255,5266,5270,5289,5299,5289,5333,5360,5373,5379,5437,5486,5493,5516,5544,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5574,5566,5574,5566,5566,5566,5566,5566,5566,5566,5574,5574,5566,4286,5566,5566,5578,4286,5574,5566,5566,5566,5566,5566,5566,5574,5574,5574,5580,4286,5566,5566,4286,5566,4286,5574,5591,5599,5612,5624,5629,5635,4286,5643,5648,5665,5672,5574,5718,5723,5566,5566,5566,5578,5566,5566,5566,5566,5566,5578,5566,5566,5566,4286,5727,5566,5566,5566,5578,5566,5566,5566,5578,5566,5574,5730,5848,5870,5886,5894,5899,5902,5906,5908,5912,5919,5965,5985,5992,5999,6050,5566,5566,5566,5566,6069,5566,5566,5566,5566,5578,5574,5566,5566,5566,5566,5566,5566,5566,5566,4286,5566,6088,6101,6115,6119,6124,6131,6152,6159,6163,6172,6179,6184,6187,6193,6201,5566,5580,6206,6210,5578,5574,6219,5299,6222,6227,6232,6236,6239,6242,6246,6250,6254,6257,6261,6265,6274,6278,6288,6292,6304,6313,6344,6357,6360,6365,6368,6402,6406,6410,6416,6427,6431,6440,6444,6483,6535,6555,6559,6571,5299,6612,5299,5635,5299,6630,6664,6676,6684,6719,6745,6772,6823,6852,6886,6906,6924,6942,6989,7012,7043,7088,7112,7136,7139,7143,7160,7187,7207,7237,5566,5566,5574,5566,5574,4286,5566,5566,7257,5566,5566,5727,5566,4286,5566,5566,5566,5566,5566,5566,7257,5566,5578,5578,5566,5566,5566,7264,7271,7278,7294,7307,7323,7327,7332,7338,7343,7348,7357,7363,7368,7373,7380,7385,7391,7396,7405,7410,7414,7419,7424,7430,7437,4286,4286,5574,7442,7447,7450,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5574,5566,5574,5566,5566,5566,5566,7452,7457,7462,7473,7478,7483,7488,7493,7498,7502,7506,7510,7513,7516,7538,7541,7544,7548,7552,7556,7560,7564,7568,7571,7574,7257,7578,7587,7592,7600,7629,7654,7694,7698,7702,7711,7736,7756,7767,7772,7777,7782,7802,5566,5566,5566,27071,5574,4286,5578,5566,5574,5566,5566,27071,4286,7832,7848,7861,7874,5727,7882,7885,7901,7916,7925,7930,7947,7953,7960,7965,7968,7972,7977,7981,7984,7987,7991,7996,7999,8004,8008,8012,8015,8020,8024,8027,8030,8035,8040,8045,8051,8054,8058,8062,8066,8070,7965,8075,8081,8086,8091,8100,8104,8106,8128,8143,8178,8195,8207,8213,8223,8227,8234,8237,8242,8258,8266,8270,8281,8289,8311,8318,8351,5574,8366,8370,8374,8378,8382,8385,8388,8394,8398,8403,8407,8412,8416,8445,8450,8455,8460,8463,8465,8467,8470,8473,8478,8481,8485,8487,8490,8493,8497,8500,8502,8507,8517,8542,8559,8564,8575,8578,8590,8594,8598,8602,8621,8637,8642,8681,8685,8690,8698,8706,8717,8725,8731,8759,8783,8796,8812,8815,8833,8844,8854,8857,8865,8867,8872,8104,8872,8874,8879,8884,8898,8929,8940,8963,8972,8977,8988,8104,8865,8865,8104,7965,7965,8992,8994,8996,9001,8996,9003,9014,9018,9022,9027,9032,9037,9042,9050,9058,4286,8706,8865,9063,9068,9079,9084,8865,9092,9101,9108,9137,9142,9149,9154,9158,9175,9180,9189,8996,9200,9205,9223,9259,9266,9275,9285,9290,9298,9306,9349,9372,9386,9389,9392,9411,34415,9438,9445,8872,9467,9522,9528,9532,9540,9545,8104,9585,9592,9599,9604,8706,5574,9609,9614,9619,9633,9639,9643,9650,9656,9664,9668,9672,9683,9690,9696,9701,9709,9717,9727,9754,9758,9763,9798,9822,9831,9882,9886,9889,9894,9898,9902,9908,9912,9917,9922,9927,9930,10085,10111,10121,10221,10287,10316,10322,10329,10334,10341,10359,10362,10379,10385,10391,10411,10421,10433,10437,10440,10449,10453,10457,10461,10465,5289,10470,10474,10478,10482,10486,10490,10494,10499,10502,10507,10512,10516,10519,10524,10529,10532,10537,10542,10547,10552,10558,10561,10566,10571,10577,10582,10585,10589,10610,10620,10644,5574,10666,10671,10694,10715,10767,10778,10794,10801,10822,10857,10872,10891,10905,10910,10919,10928,10953,10967,10980,11001,11012,11023,11030,11044,11050,11058,11062,11090,11099,11115,11121,11140,11149,34415,11157,11160,11205,11222,11237,11250,11309,11353,11386,11403,11410,11427,11447,11458,11460,11464,11468,11474,11491,11495,11505,11511,11529,11541,11545,8992,11549,11552,8865,11559,11563,8865,11568,11573,11577,11582,11587,8706,11602,11611,11632,11643,11647,11652,11657,11661,11665,11670,11675,11679,11683,11688,11693,11698,11703,11707,11712,11717,11721,11726,11730,11734,11739,11744,11749,11754,11759,11764,11769,11774,11779,11782,11786,11791,11816,11822,11826,11831,11845,11850,11855,11860,11872,11888,11902,11913,11915,11920,11949,11957,11965,11968,11972,5578,11981,11986,11992,11998,12006,12017,12022,12029,12031,12035,12039,12051,12069,12098,12109,12114,12138,12146,12150,12156,12174,12211,12225,12238,12250,12256,12261,12266,12272,7257,12280,12291,12298,12308,12341,12362,12366,12376,12379,12383,12390,12408,12430,12465,12480,12484,12488,12493,12497,12502,12506,12511,12516,12521,12527,12531,12538,12543,12548,12553,12559,12563,12117,12573,12579,12584,12595,12623,12628,12633,12638,12643,12647,12657,12664,12670,12673,12683,12697,12765,12770,12805,12819,12828,12843,12855,12859,12863,12868,12873,12876,12885,12891,12897,12903,12919,12945,12949,12955,8992,12985,13000,13010,13015,5574,13020,13026,13032,13044,13074,13111,13147,13156,13173,13211,13246,13251,13255,13270,13292,8027,8027,13299,13308,13315,13323,13331,13341,13348,13353,13360,13366,13376,13383,13398,13409,11913,13423,13430,13434,13439,13450,13469,13534,13541,13561,13577,13585,13595,13601,5566,13606,13622,13629,13636,13642,13646,13650,13660,13677,13683,13686,13700,13706,13715,13720,13727,13734,13743,13749,13762,13782,13794,13801,8706,13808,13819,5574,13826,13854,13863,13886,13902,13906,13911,11913,13919,13932,13937,13940,13946,13950,13955,13960,13966,13971,8872,13975,13978,13989,13992,14002,14007,14015,14019,14032,5727,14048,14054,14061,14068,14071,14075,14088,14095,14101,14110,14115,7930,14120,14127,7930,8865,14138,14142,14147,14150,14155,14172,14202,14232,14236,14250,14258,14266,14272,14279,14285,14289,14294,14298,14304,14313,14322,14327,14330,14340,14346,14351,14360,14363,14368,14377,14383,14391,14397,14402,14411,14424,14437,14470,14498,14513,14522,14528,14532,14537,14542,14598,14612,14625,14633,14650,14659,14665,14703,14725,14733,14742,14752,14762,14766,14778,14788,14793,14797,14802,14806,14811,14815,14820,14825,14841,14851,14859,14865,14876,14882,14887,14893,14899,14906,14912,14916,14920,14929,14936,14948,14956,14965,14974,14987,14996,15004,15049,15066,15074,15081,15091,15098,15109,15118,15123,15142,15147,15154,15158,15166,15171,15178,15184,15189,15198,15205,15211,15216,15226,15233,15241,15249,15255,15265,15274,15284,15296,15299,15313,15325,15330,15335,15343,15350,15357,15364,15369,15378,15382,15388,15394,15404,15410,15416,15430,15435,15443,15456,15503,15517,15521,15528,15542,15564,15589,15628,15640,15650,15655,15662,15727,15732,11913,8872,15737,8872,15740,15749,15752,15758,15766,15780,15785,15806,15811,15819,15824,15829,8706,15835,15845,15851,15857,15860,15865,15868,15895,15901,15914,15919,8994,8872,15923,15934,15939,15943,15947,8706,15952,15959,15966,15971,15975,15981,15987,15993,16011,16017,16024,16029,16034,16038,16043,16047,16051,16059,16067,5574,16072,16084,16098,16103,16119,16125,16131,16135,16139,16155,16158,16164,16173,16177,16185,16192,16197,16203,16208,16213,5727,16217,16222,16227,16241,16253,16283,16287,16292,16298,5574,16303,16312,16318,16326,16332,16335,5578,16338,16346,16353,16357,16362,8996,16367,16371,16377,16383,16392,16406,16413,16419,16428,16437,16451,16457,16464,16468,16472,16489,16496,16500,16507,4286,16516,4286,16522,16538,16541,16548,16552,16567,16586,16592,16616,16624,16633,16652,16665,16669,16677,16680,16685,16698,16704,16707,16717,16732,16756,16764,16788,16797,16802,16812,16816,16834,16846,16849,16864,16871,16883,16890,16896,16902,16907,16913,16924,16929,16942,16948,16958,16963,16970,16975,16979,16985,16996,17004,17015,17026,17032,17038,17053,17061,17066,17072,17079,17087,17105,17117,17124,17135,17139,17145,17152,17156,17161,17172,17177,17187,17200,17207,17226,17230,17236,17246,17254,17261,17268,17284,17292,17325,17334,17341,17347,17350,17361,17386,17419,17430,17433,17443,17451,17465,17472,17482,17489,17505,17511,17518,17524,17533,17541,17548,17555,17560,8104,8865,8992,17569,17574,8865,17588,17598,17604,17611,17633,17654,17685,17719,17741,17745,17749,17759,17773,17777,17781,17789,17795,17799,17809,17815,17821,17828,17839,17844,17856,17862,17868,17871,17879,17886,17891,17937,17952,17955,17958,17961,17967,17970,17980,17987,18013,18015,18024,18027,18033,18039,18053,18058,18064,18067,18077,18083,18086,18091,18095,18099,18107,18117,18122,18128,18134,18140,18149,18154,18160,18165,18169,8872,18178,18188,18194,18202,18208,18213,18218,18223,18242,18247,18262,8865,18270,18274,18293,18298,18303,18307,18311,18366,18399,18404,18410,18418,18441,18449,18453,18466,18469,18472,8872,18478,18492,18507,18530,18538,5574,18543,18548,18556,18560,18588,18604,18608,18623,18625,18631,18650,18653,18665,18676,18682,18724,18755,18781,18808,18842,18847,18850,18874,18882,18893,11458,8865,18899,18911,18915,18919,18923,18929,18934,18939,18946,18949,18955,18960,18972,18975,18999,19010,19014,19023,19027,19032,19039,19063,19085,19090,19104,19110,19115,19134,11913,19140,8865,19142,19149,19154,19159,34415,19165,19174,19191,19200,19215,19233,19239,19248,19255,19260,7965,19268,19275,19279,19290,5578,19293,19298,19305,19323,19329,19341,19346,19356,19362,19367,19372,19379,19387,19391,19394,19398,19410,19420,19427,34415,19432,19452,19456,19460,19483,19487,19501,19508,19518,19532,19543,19550,19561,19594,19600,19633,19643,19654,19660,19662,19667,19674,19680,19685,19694,19699,19703,19714,19718,19723,19738,19743,19752,19765,19772,19781,19789,19793,19804,19809,19814,5580,19817,19822,19832,19846,19854,19857,19868,19873,19880,19887,19891,19897,19901,19916,19924,19929,19933,19936,19952,19960,19969,19979,19985,19994,20002,20007,20022,20027,20036,20041,20053,20058,20067,20071,20079,20087,8872,20094,20101,20109,8872,20114,20125,20129,20134,20141,20148,20155,20157,20161,20166,20177,20196,20209,20217,20225,20233,20236,20240,8865,20249,20255,20260,20270,20277,20287,20292,20297,20302,20310,20318,20323,20337,20345,20358,20363,20381,20388,20391,20397,20404,20411,20431,20440,20456,20462,20487,20498,20503,20509,20512,20532,20555,20560,20569,20579,20585,20591,20596,20603,20605,20608,20615,20617,20629,20766,8872,20770,20775,20780,20783,20787,20792,20799,20806,20810,20814,20818,20860,20867,27071,20880,20900,8872,20915,20926,20936,20945,20954,20961,20965,20971,20976,20988,20994,21005,21010,21018,21027,21061,21065,21070,21078,21083,21088,21092,21103,21113,21126,21132,21139,21154,21170,21184,21192,21197,21202,21205,21207,21209,21212,21205,21217,21220,21225,21232,21238,21241,21247,21251,21256,21258,21262,21266,21271,21275,21301,21311,21316,7257,21320,21325,21331,21336,21344,21349,21356,21362,21368,21376,21391,21400,21410,21415,21422,21425,21431,21435,21446,21453,21462,21472,21475,21489,21494,21503,21511,21517,21524,21530,21534,21546,21553,21558,21565,21589,21598,21612,21615,21628,21634,21652,21670,21674,21690,21694,21706,21711,21717,21724,21729,21739,21744,21755,21769,21774,21780,21784,21787,21794,21799,21805,5566,21811,21813,21818,21824,21829,21838,21842,21848,21853,21859,21864,21870,21874,21878,21882,21887,21892,21899,21904,21909,5574,21914,21919,21923,21925,21932,21938,21949,21954,21959,21963,21968,21975,21985,21989,21998,22003,22012,22017,22021,22026,22030,22040,22045,22050,22069,22077,22082,22086,22097,22105,22112,22119,22125,22131,22136,22141,22149,22154,22159,22161,22171,22173,22177,22184,22187,22194,22200,22206,22210,22215,22225,22233,22238,22243,22252,22259,22262,22266,22271,22276,22284,22288,22299,22307,22311,22318,22323,22328,22335,22340,22345,22350,22355,22364,22373,22384,22389,22394,22399,22406,22413,4286,22419,22424,4286,22433,22444,22450,22456,22461,22469,22474,22480,22484,22490,22494,22508,22517,22527,22532,22538,22542,22547,22551,22560,22566,22572,22578,22585,22592,22598,22605,22609,22614,22619,22624,22629,22634,22644,22650,22654,22659,22663,22669,22677,22681,22685,5580,22690,22693,22702,9001,11913,22710,22717,22723,22731,34503,22737,21998,22740,22747,8872,22751,22757,22761,22765,22777,22788,22794,22802,22806,22810,22816,22825,22831,22836,22852,22859,22866,22870,5574,22878,22884,22890,22893,22898,22905,22911,22171,22917,22927,22940,22945,8872,22951,8872,22955,22964,21489,22981,20615,8865,22988,23002,23008,23014,23018,23022,23028,8865,23033,23037,23047,8706,23087,23129,23147,11913,23152,23159,23171,23176,23182,23195,23199,23204,23209,23213,23217,8865,8872,23222,23228,8706,23231,23233,23242,23265,23272,23284,23297,23315,23320,23327,8104,23334,23346,23353,8872,23364,23369,23374,23379,23381,23385,23418,23424,23427,23431,23458,23463,23474,23484,23487,23491,23495,23501,23506,23510,23515,23521,23532,23546,23550,23555,23567,23577,23583,23589,23594,8706,23610,8865,23614,23620,23627,23633,23231,8992,23642,8872,23655,23662,23672,23677,23694,23701,23713,23718,23731,23735,8992,23746,23761,23763,23770,23772,34503,23776,23781,23788,23792,23796,23804,23807,23821,23825,23835,23840,23846,23850,23854,23861,23866,23882,23887,23893,23903,22159,23940,23946,23954,23963,23972,23983,23988,23997,24001,24008,24014,8725,24021,24026,24031,24040,24048,24052,24055,24060,24063,24067,24074,24086,24099,24104,24108,24111,24124,8872,11458,24132,24143,7965,24146,24149,24170,24176,24180,24190,24196,24200,24207,24216,24228,24260,24284,24296,24304,24308,24314,24323,24361,24368,24375,24380,24407,24413,24422,24426,24431,24436,24444,24448,24457,24461,24468,24475,24478,24481,24489,24497,24500,24505,24510,24516,24527,24532,24546,24551,24555,24567,24589,24605,24611,24614,24628,24635,24639,24644,24650,24658,24662,24670,8706,24673,24677,24682,24685,24695,24700,24704,24709,5727,24718,24736,24744,24749,24756,24758,24764,24769,24773,24790,24817,24835,24844,24866,24911,24965,25013,7930,25037,25045,25052,25064,25080,25095,25100,25111,25120,25134,25152,25174,25185,25198,25208,25214,25225,25229,25242,24195,25265,25271,25281,25287,25293,25263,25308,25314,25318,25322,25326,25331,25337,25342,25357,25368,11458,7930,23147,25378,8854,11458,25387,25393,25399,25302,25413,25434,25448,25452,25466,25482,25488,25495,25502,25507,25516,25522,25525,25529,25532,25536,25541,25547,25553,25561,25564,25420,8027,25579,4286,25584,25588,25568,25602,25610,25616,25621,25641,25644,25647,25656,25662,25672,25680,25686,25695,25702,25706,25713,25722,25729,25734,7257,25738,25746,25751,25756,25768,25773,25778,25787,25800,25808,25818,25830,25834,25859,25869,25883,25905,25909,25916,25934,25940,25953,25961,25976,25991,26003,26019,26023,26031,26038,26042,26047,26056,26063,26068,26076,26080,26088,26102,26115,26134,26140,26148,26152,26162,26167,5299,5299,5299,5635,5299,26191,26191,26195,26200,26214,26221,26229,5635,5635,5299,26238,5574,4286,5574,5578,26243,5574,5580,26250,26255,26266,26270,26277,26281,26284,26293,26297,26303,26309,26313,26317,26321,26327,26331,26336,26341,26348,26356,26363,26369,26381,26389,26395,26405,26452,26476,26498,26502,26518,26523,26527,26538,26545,26558,26561,26582,26589,26594,6236,26599,26602,26623,26638,26642,26650,26656,26667,26672,26691,26701,26724,26730,26735,26745,26751,26758,26778,26785,26791,26797,26803,26814,26820,26826,26831,26841,26853,26860,26864,26879,26889,26893,26899,5727,26912,26928,26948,26953,26957,26961,11797,26967,26998,27004,27011,27013,26994,27027,27031,27021,27035,27041,27044,27048,27051,27055,27059,27065,27038,27079,27088,27097,27121,27128,27132,27140,27144,27148,27153,27159,27172,27179,27183,27192,27199,27207,34417,27211,27215,27218,27229,27245,27250,27270,27279,27288,27296,27306,27310,27331,27351,27364,27369,27373,27382,27397,27402,27413,27417,27422,27434,27437,27453,27466,27516,27528,27536,27545,27581,27586,27589,27595,27598,27604,27611,27618,27627,27665,27672,27677,27704,27734,27748,27755,27770,27889,27925,27935,27947,27956,27973,27979,27988,27996,28003,28013,28016,28020,28031,28054,28063,28071,28083,28097,28105,28108,28113,28127,28140,28160,28173,28186,28213,28218,28252,28281,28295,28298,28302,28308,28316,28319,28328,28334,27004,28351,28410,28431,28451,26701,28520,28530,28545,28552,28562,28584,28602,28630,28663,28668,28683,28700,26961,28759,28765,28765,28328,28774,28808,28328,28822,28833,28836,28851,28871,28918,28995,29052,29068,28334,29078,29164,29164,29172,26961,29180,29217,29230,29272,29275,29289,29337,29473,29496,29523,29548,29613,29705,29734,29871,29982,30002,30185,30205,30250,30474,30500,30528,30557,30598,30615,30782,30800,30827,30910,30931,30938,31020,31216,31274,31387,31487,31513,31532,31630,31664,31709,31738,31753,31758,31763,31785,31817,31853,31927,31938,31984,32340,32496,32532,32547,28833,32556,32748,32781,32809,32862,32887,32921,32936,33045,33079,33092,33104,33109,33218,31274,33225,33240,33248,33279,33281,33375,33478,33484,33501,33563,33630,33670,33696,33719,33773,33781,33788,33814,33833,33858,33866,33906,33924,33933,33956,33961,34004,34021,34047,34059,34075,34091,34101,34108,26961,28328,34122,34133,34142,34147,34160,34185,34195,34211,34214,34249,34253,34258,34296,34325,34330,34333,34336,34341,34348,28663,34353,34388,27071,34420,19603,34444,34450,34454,34456,34460,34469,34488,34499,34506,34454,34526,34535,34544], +[0,6870,1362,1437,1448,1676,37818,2754,2757,3427,6530,37821,37823], +[0,1596,2759,2899,3202,16112,4039,4193,4255], +[0,5592,1448,37826,15514,6956,5122], +[1,2343,25603], +[0,25604,25606,25608,4139], +[0,2202,37833,37834,1695], +"@keyv/serialize", +[0,2133,3697,4387,4389], +"keep", +[0,4731,27,4738,5038,1389], +"timekeeper", +[1,2343,25612], +"key-value", +[0,25613,25614,25615,2487], +[0,20689,37845,37846,4718,37844,37841,37843], +[0,18225,1082,2832,2899,4193,1177,37853,1330,1787,1525,91,4874,37852,37850,1937,17585,37856], +[0,28860,28861,3354,37858,37859,20707,1641,37860,37861,37862,26666,21604], +[1,2343,25617], +[0,25618,25619,25620,2537], +[0,4113], +[0,1175,1195,1264,28713,1387,37868,37869,35573,1503,1596,1610,1177,37870,2759,2765,1192,2774,7060,3363,3400,3725,91,37871,2282,2924], +[0,37873,6523,676,6671,1781,24586,37874,37875,37880,37882,20398,20400,4734,4735,353,8535,37883,22180,6270,37884,37885,37887,1644,57,7119], +[1,2343,25622], +[0,25626,25630,25637,4139], +"escalade", +"pg-connection-string", +"tarn", +[0,4113,4736], +[3,5536,10], +[2,25627,4945], +[2,11836,4246], +[0,1596], +"-in-order", +[2,1436,25631], +"oracledb", +"pg-query-stream", +"tedious", +"toxiproxy-node-client", +[0,6523,1781], +"postgres", +"cockroachdb", +[2,3766,9381], +[1,2343,25642], +[0,25643,15925,2514,2537], +[0,2607,2812,37899], +[1,2343,25645], +[0,0,10710,25646,2537], +[0,6523,4736], +[1,2343,25653], +"smol-toml", +"summary", +[3,8555,11], +[2,25650,1851], +[2,4764,25651], +[0,0,25654,25655,2537], +[0,1192,4753,37908,1177,3363,37909,1894,2188,3400,1926,16638,1895,1955], +[0,12616,965,6523,57,5284,37911,37912], +[1,2343,25657], +[0,0,0,25659,2537], +"analyze", +[0,4731,6662], +"dead code", +"entropy", +[1,2343,25665], +"maintenance", +"members", +[0,25666,25668,25670,2537], +[0,3157,1144,1177,2205,2203,1894,2185,4507,3170,1595,19595,3505,2191,1953,29490,1920,4523,25803,1958,1982,13789,1895,24166,32525,1955,7681,19344,1011,15290,22937,19492], +"unreferenced", +[0,3377,1166,2020,2675,1680,13786,2990,5601,192,15600,8778,3390,3708,5467,17312], +"unresolved", +[0,13326,200,1906,19347,19350,19353,1501,19269,590,671,9654,2272,19270,1177,2649,19271,4255,15717,4354,16790,19273,18443,2446,2869,5284,91], +"tldts", +[1,2343,25673], +[0,0,25674,25676,2537], +[0,10780,1854,37928,2899], +"lodash.sortby", +[0,4739,6523], +"explorer", +"opera", +"samsung-internet", +[1,2343,25681], +[0,25683,25684,25685,2399], +"uc-browser", +[0,5663], +[0,48,53,37936,83,87,37937,1198,37940,37941,1389,1177,2765,2835,3421,37945], +[0,1108,6961,6607,3656], +[1,2343,25690], +"stream-co", +[2,25687,11532], +[2,25521,25692], +[0,25691,25693,25694,2537], +[0,1525,7606], +"praesentium-accusamus-maiores-autem", +[0,3421,1676,2899,1177,1596,4535,1389], +[0,20215,4741,2574,36796,6847,1965,1867,10368,7131,1155,1936,14419,37953], +[1,2343,25697], +"delegates", +[0,0,25698,25701,2537], +[0,37958,1091,3539,4094,4733], +"http-assert", +[2,17007,23905], +[0,37960,37963,37968,37971,37972,6649,37973,2218], +[1,2343,25703], +[0,0,9264,25704,2399], +[0,2051,1698,14690,15767,3048,4552], +[3,21482,15], +[1,2343,25708], +"gen-", +[0,0,25711,25712,2523], +"esm-wrapper", +[2,25707,25709], +[0,8648,4856,5245,37983,6494,37984,4865,13204,6503,4874,37987,4891,9241,1009,1011,1429,1610,1693,1177,1942,2026,28930,2070,2832,2899,3257,3339,3421,4230,4232,4469,91,4577,2924,4677,4729,37988], +[0,200,6876,7201,28770,4166,21000,592,37991,7009,6621,13005,35621,4744], +[1,2343,25714], +[0,0,25715,25719,4139], +[0,1192,4484,1177,4042,1894,442,1193,2064,91,53,5087,4874,2797,87,4523,5583,6373,1895,10817,37998,5889], +"-body", +[2,4860,25716], +"co-body", +[0,6775,57,5374], +"-router", +"__router", +[1,2343,25724], +"urlencoded", +[0,25725,25726,25727,2399], +[0,2070,1139], +[0,1317,15052,2768], +[0,4745,1781,38007,38008], +"copy-to", +[1,2343,25730], +[0,25731,25733,20172,2523], +[0,1495,25623,12929,4290,26574,4748], +"bodyParser", +[0,68,92,4856,6503,4874,1009,25912,1414,1429,1437,25796,1610,1615,1177,1955,2321,29551,2899,4039,91,4707,38017], +[1,2343,25735], +[0,0,25736,25737,2537], +[0,68,92,4856,6503,4874,1009,1011,1414,1429,1610,1177,2321,2899,3758,4039,4146,4261,91], +[0,7233,57,4747,1523,200,7119,5675,7058,7233], +[1,2343,25739], +[0,25740,25741,2514,2537], +[0,38035,1282,1413,1420,1437,25872,1525,38036,1676,19400,1687,2195,2714,2731,10911,2975,16450,3181,3188,3309,640,3434,28142,3917,38037,705,38040,4039,38041,4135,4296,4390,4393,4572,25898], +[0,1175,1178,1193,1195,14220,1255,1267,38044,38047,1268,1272,1291,1177,38050,18229,38052,1922,38055,1935,38058,1959,2126,2323,2338,2464,2479,2541,2544,1192,2843,3211,1241,2924], +"humanize-", +[2,25742,6988], +"-counter", +[2,22255,25744], +[1,2343,25747], +[0,0,0,25750,4139], +"koa-compress", +[3,2946,9], +[0,4749,4752,6435,4166,3378,34652], +[1,2343,25752], +[0,25753,25754,25755,2443], +[0,13581,27999], +[0,1329], +[0,4560,2056,3101,12666,2090], +[1,2343,25759], +"mounting", +"@drftgyhuji7npm/repellendus-eum-et-itaque", +[0,25760,25761,25767,2523], +[0,38073,38076,38077,38078,38080,1144,1437,1525,1676,2020,38082,2205,38083,20786,3021,38084,38086,4135,4207,4558,38088], +[0,5245,5139,4874,5254,24719,1414,1597,1177,38092,2151,1776,1894,3708,4039,4193,38093,4294,91,21328,21329], +[2,29234,32235,1524], +"@ladjs/env", +[3,25689,31], +"sint-dolorem", +"@enact/core", +[0,5001,3304,6147,4990,200,8632,4989,8623,1179,8635,1896], +[1,2343,25769], +[0,25770,25772,25767,2487], +[0,1437,1676,2020,4135,3183,3021,22776,4183,4425,2845,38086,2960,38101,27168,5139,38077], +"koa-send", +[0,1797,1776,4193,1984,1597,2720,1894,4507,9741,91,21329,5245,6513,5254,21328,24719,7892,38073,23452,38078,8818,4754,7677,3708], +[1,2343,25776], +"sendfile", +"@envelop/core", +[0,0,8134,25777,2537], +[0,4757,38108,27631,200,3741,2649,6847,8618,4938,38109,1644,38111], +[1,2343,25779], +[0,25783,25784,25785,2443], +"is-warlock", +[2,3341,25780], +"reds", +[0,3157,3445,1437,4761,1209,2089,25294,38117,38118,23878,38121,38122,1543,1615,38123,25555,9478,38080,15826,38126,38073,38127,27168,4562,38131,4754], +[0,1414,1906,3297,4193,38092,2203,1596,38133], +[0,13326,200,6400,5001,3304,6147,5122,4990,8632,2873,8635,1179,8623,1896,8310], +"webOS", +[1,2343,25788], +[0,0,25795,25799,2537], +"bossy", +[3,23453,15], +[2,25790,5592], +[2,9146,5592], +"find-rc", +"will-call", +[0,38139,1104,1166,1437,1474,1511,2929,27127,3527,4481,1906], +"cpr", +"lab-event-reporter", +"@ionic/cli", +[0,1473,7208,1512,7009,7201,200,1871,1111,590,592,6621,6983,4166,4744,3073,6807,6876,2585], +[1,2343,25801], +[0,25805,3293,25807,2487], +[2,29611,5457,1805], +[2,2102,17239], +[2,25806,553], +[0,1525,2720], +"@envelop/", +[0,4760,5592,36,5995], +[1,2343,25811], +[2,556,1098], +"md-to-pdf", +[0,25812,25815,25817,2537], +[0,3157,1437,1471,4726,1109,4294,1110,4290,38150], +"semver-", +"semver-regex", +[0,1906,2899], +"latest", +[0,13326,200,8635,4758,38152,38153,5403,6458,1111], +[1,2343,25820], +[2,25829,6811], +[0,15916,25827,25828,2523], +"autodoc", +"deft", +[2,2767,1149], +"race", +"race.js", +[2,4284,176], +[0,4170,4135,2899], +[0,38160,4762,38161,38162,38163,970,10770,11154], +[3,24329,21], +[1,2343,25831], +[0,0,0,25832,2443], +[0,91,2844,7020,998,6591], +[2,556,25877], +[1,2343,25839], +"@mapbox/", +"cript-tags", +[2,1967,25836], +[2,25835,25837], +[0,25845,25847,25856,2487], +"bundlemon", +[3,16694,16], +"urner", +[2,25841,25842], +"git-rev-sync", +[0,1170,2026,3509,4763], +"happen", +[0,7804,4856,9417,7806,38176,6494,38177,6503,38179,1364,1429,1431,1527,1536,1575,1652,1177,38182,1161,2899,3237,3378,1894,4257,4474,91], +"karma-expect", +[3,2066,9], +"leafdoc", +"prosthetic-hand", +"git-version", +[2,4049,25852], +"ontent-classifier", +"gis", +[0,4763,2026,5592,8800,38185,5995], +[2,8,25858], +[3,1008,21,5], +[1,2343,25860], +[0,25861,25864,25865,2399], +[0,1282,1362,1676,34226,2685,2832,1209,3171,3242,705,4454,4729], +[2,25857,2324], +[2,25867,6], +[0,1173,1178,1255,1264,1364,1575,1700,1177,2026,2323,2338,2384,29396,2472,2510,2541,2899,3237,3253,6596,4019], +[0,1973,6533,5472,21972,4386,10659,37125,29727,1388,1936,12075,965,1623,5284,11857,6662,26196,38192], +"numbers", +[3,19535,16], +"ng-packagr", +[1,2343,25870], +[0,0,25876,2514,2537], +"aproba", +"cmd-shim", +"p-reduce", +"byte-size", +"write-pkg", +[0,28069,30286,38197,23689,4874,32440,1362,26739,2780,2784,1192,2899,3210,2765,4232,2766,24652,4094,4376,4484,1984], +"examples", +"wide-align", +"has-unicode", +"p-waterfall", +[2,2977,7318], +"@npmtea2024/quasi-nisi-doloremque-fugit", +[1,2343,25889], +"p-map-series", +"blocking", +"set-blocking", +"@lerna/create", +[2,2977,20001], +[0,25890,25895,25896,4139], +[0,38202,6870,1389,21146,38204,1512,1525,1536,1573,1676,2026,38207,12783,38209,12785,2590,2600,2659,12788,38210,12789,1209,3456,3470,38212,4165,38213,17011,4339,38215,20496,4650,4652,1695,4746,38217], +"read-cmd-shim", +[2,3614,16830], +[2,21772,18709], +"strong-", +[0,1087,38221,38222,2899,3524,4389,4431,38224], +[0,4770,5472,1388,2907,2899,12826], +[3,4588,21], +[2,25897,4059], +"-bump", +[2,4945,25899], +[2,13984,25900], +"-rest", +[2,24089,25902], +[2,9768,25903], +[1,2343,25906], +[0,25907,6736,25908,2523], +[0,666,672,677,9688,1710,4135,4459,4484], +[0,9621,9622,8174,9623,9624,9625,9626,9627,9628,9648,9659], +[1,2343,25914], +[2,1583,20499], +"errno", +[2,15086,1179], +"jest-codemods", +[0,25915,6736,6767,2487], +[0,1437,4484,677,4135,2203,666,17310,1012,9688,19254,12123], +[1,2343,25918], +"benny", +[0,25932,6736,25933,2537], +"less-port", +[2,10784,25919], +"emplate-tag", +[2,2642,25921], +"jit-grunt", +[3,1165,10], +[2,21897,25924], +"mocha-te", +"amcity-reporter", +[2,25926,25927], +"phin", +"read-glob", +"@ptkhanh94npm/iusto-libero-aperiam", +[0,4484,677,4135,2798,3181,666,3527,8734,2797,4748,8752,24759,8762,2686,9688], +[0,9621,9622,8174,9623,9624,9625,9626,38247,9628,9659], +[1,2343,25935], +[0,25937,25938,25939,34352], +[2,21897,2070], +[0,4484,677,4135,666,672,4771,9688], +[0,3420,4270], +[0,9622,8174,9623,38255,9627,9628,9648,9659], +[1,2343,25941], +[0,25945,25949,25952,2443], +"abstract-l", +"evel", +[2,25942,25943], +[0,30508,30509,4484], +"browser-level", +"-level", +[2,128,25947], +[0,34030,26312,10846,4426], +"@voxpelli/tsconfig", +[2,12774,3541], +[0,7522,89,7531,7535,7521,7597,7518,8424,8432,7528,10442], +[1,2343,25955], +"leveldb", +[0,25956,25957,25958,2443], +[0,38264,3286,89,3824,38265,4125,38266], +[0,4874,4880,4883,1177,4828,3561,4383,91], +[0,12589,1616,33456,12589,5472,20500,33459,1237,33462,33464,12590,33465,27666,11996], +[2,25944,2971], +"napi-macros", +[1,2343,25962], +[0,25973,0,25975,2537], +"async-each", +"du", +"cat-iterator", +[2,1332,25965], +[2,2970,25966], +"mkfiletree", +[2,15164,18490], +[3,25969,13], +"ross", +[2,25970,25971], +[0,1639,3744,97,7931,7932,7910], +"readfiletree", +[0,89,5128,9267,1832], +[1,2343,25977], +[0,25978,10298,25979,2443], +[0,16053,16056,38278], +[0,5284,1776,1644,1746,1745], +"-leveldown", +[2,14834,25980], +"level-", +"level-errors", +[2,7253,14922], +[2,25982,25984], +"supports", +[2,25982,25986], +"queue-", +"microtask", +[2,25988,25989], +[1,2343,25998], +"airtap-sauce", +"encoding-", +[2,25993,2971], +"memdown", +[3,12809,12], +[2,4182,5614], +[0,25999,26001,26002,2537], +[0,97,5663], +"trickle", +[0,5087,1192], +[0,5284,4967,89,6081], +[1,2343,26004], +[0,26005,26016,26018,2537], +[0,97,38293,3744,3847,4484], +"levenshtein", +[2,2068,26006], +"ld", +"levdist", +[2,26006,10699], +[3,26010,12], +"-distance", +[2,6109,26012], +[2,26011,26013], +"talisman", +[0,5228,14249,5700,8129,20202,38298,20212,602,5583,811,963,966,968,38299,972,974,5087,5090,4880,1009,1011,7913,38302,38304,1397,1597,1610,1651,1177,4916,1959,2126,38307,38309,11853,19227,3400,3698,9054,89,3824,3847,3857,3904,4146,4261,91], +"distance", +[0,38313,89,15774,38316,38317,5399,1631,32039,38319,7320,38320,32040,38322], +[1,2343,26021], +"comparison", +[0,21012,0,26022,34352], +[0,6653,7320,10039,24832,1623,13006,38327,6847,5284,676,38328,38329,29002,24353,8112,3561,6425,38330,18252,1631,3586,38332,4453,38333], +[1,2343,26027], +"careful-", +"binary-", +[2,26025,19101], +[0,26028,26029,26030,34352], +[0,2115,2121,2127,1110,28827,2856,4507,26907], +[0,2180,5476,5478,2189,2198,31852,91], +[0,2313,1383,614,202,1388,5995,4967,2340,2350], +[1,2343,26033], +"country-codes-flags-phone-codes", +[0,0,0,26034,4139], +[0,1671,671,3315,17626,6869,6671,3319,3325,3362,6829,3384], +"just-safe-set", +"ock-registry", +[2,9494,26036], +[1,2343,26039], +[0,26040,26041,26002,2523], +[0,53,31689,97,5663,4793,4800,4838,4928,4786,4944,4954,4968,362,4972,24723,4981,10895,4982,11518,841,7812,24370,4985,1030,4992,1165,1195,29040,30521,1393,1437,1525,1593,1628,1630,1759,1763,2151,2070,2220,4995,2222,2651,2843,2867,1209,3177,3220,4996,3310,3445,3561,3579,3584,3613,3618,30274,1894,3742,15033,3816,3878,4079,13834,4164,4167,4307,5000,4409,5002,1002,1983,29141,2924,4676,4681,13152], +[0,29536,27134,4864,4870,5009,5542,15600,33768,11944,3144,3244,3758,4039], +[1,2343,26043], +[0,6203,26045,26046,2523], +"gitfund", +[0,549,811,8850,816,6373,4863,5087,4880,1009,1011,8158,1584,1843,1177,1895,1938,1955,1959,1192,2780,2832,3421,1894,89,3824,4039,4042,4052,8849,8853,4076,4079,4230,4468,4469,4474,4484,4508,2924,4677,4681,555,560], +[0,24456,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2343,26048], +[0,6203,26054,26055,2537], +"crlf", +[3,2982,15], +[2,6774,16609], +[2,26050,26051], +"renamer", +[0,53,87,92,8862,5087,4874,1009,1011,6834,6840,6873,1031,11018,13072,1593,1610,1177,1895,1938,6902,1988,1192,2780,1894,4039,4042,4045,4052,4076,4079,6904,4468,4484,4508,91,188,555], +[0,188,8588,6931,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2343,26058], +[2,33018,188], +[0,6203,26061,26062,4139], +"ged-respawn", +[2,7210,26059], +[0,53,87,92,4856,5087,6503,4874,1009,1011,6834,6840,6993,6873,1031,11018,13072,1429,1610,1177,1895,1938,6902,1988,3400,1894,4039,4042,4045,4052,4076,4079,6904,7006,4484,4508,91,188,555,5010], +[0,188,8588,6931,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841,12075,1623,4380], +[1,2343,26064], +[0,26065,26066,26067,2523], +[0,12396,23289,23249,3493,12449,15632], +[0,9363,4874,1414,31147,1894,3985,3998,18071,4505,4507,91,18002,1906], +[0,23266,2587,23267,614,6435,1936,1644,15278], +[1,2343,26069], +[0,0,26071,26075,2537], +"cname-prefix", +[0,1177,2899,3421,4193], +"autolink", +"hashtag", +"mention", +[0,4264,15457,15482,13499,15483,5995], +[1,2343,26077], +[0,0,0,26078,2537], +[0,17356,17362,17364,17365,17384,17397,17423,17426,1745,1783], +"pidtree", +[1,2343,26083], +"consolemock", +"sonner", +[0,26084,26085,26086,2487], +[0,24337,24344,18220,1676,24345,2714,2072,4238,4431,4484,4753], +[0,8656,8660,6061,6063,5245,24352,29105,5087,4874,28177,24358,18435,20290,1177,1192,1894,4131,4468,91], +[0,12296,12295,200,5131,1896,24364,970], +"@samverschueren/stream-to-observable", +[1,2343,26089], +[0,26100,0,26101,2523], +"is-observable", +"-silent-renderer", +[2,2991,26091], +"listr-", +[2,9787,3902], +[2,26093,26094], +"verb", +"ose-renderer", +[2,26096,26097], +[2,26093,26098], +[0,12396,21300,32567,2586,21308,12447,12449], +[0,2587,1936,21308,26916,1783,18108,26564,1932,3958,32462,3984,21306,4549], +[1,2343,26103], +[0,26105,26106,26110,2523], +"@keyv/compress-brotli", +[0,2564,4351], +[0,1166,1503,91,1906], +[3,175,23], +[2,26109,16518], +[3,26104,15], +[0,163,7009,22316,200,13735,4354,1111,1106,7201], +"@lit/reactive-element", +"@lit", +"-labs/ssr-dom-shim", +[2,26112,26113], +[1,2343,26125], +"@lit-labs/", +[2,26116,5472], +"@lit-", +"/scripts", +[2,6943,26119], +[2,26118,26120], +[2,10704,1283], +"@keyv/memcache", +"@keyv/mongo", +[0,26126,26130,26133,2443], +[0,20573,5545], +"connect-l", +"ogger", +[2,26127,26128], +[0,5517,28436,19438,19181,442,8648,842,16145,966,968,972,22375,5087,4874,4880,5546,1009,1011,34737,1177,1895,31755,1959,1961,1976,2203,2675,1192,2780,2990,3286,1894,89,3824,5564,4039,4135,91,4523], +"@keyv/sqlite", +"@keyv/test-suite", +[0,26713,89,582,705,2325,1612], +[1,2343,26135], +[0,0,26138,26139,2523], +"http-auth", +"faye-websocket", +[0,4874,4218,4220,4493,91], +[0,91,998,553,5490,17180,20052,2382,6956,2844,5995,6400,1781,6866,1398,9254,15105,4144,4141,7050,22789,22791], +[1,2343,26141], +[0,26143,26145,26146,2537], +"amaro", +[0,23641,27185,29561], +[2,3000,1592], +[0,58,101,8648,1177,2272,3019,2899,4019,19767,4481,4535], +[0,36720,22860,1388,16284,888,22856,35087,11804,23659,23664,23667,23668,29725,29728,32633], +"micro-backend", +[1,2343,26149], +[0,0,26150,26151,2537], +[0,2832,705,4008], +[0,1936,23670,11513], +[1,2343,26153], +[0,26156,26157,26161,2537], +[2,2032,26155,26159], +"openid-c", +[0,2591,25047,23597,4290,24794,24836,19569,15245,24855,24871,24984,25049,25034,24816,24841,24900,24964,24989,24998,21642,37100,25011,24802,24828,24987,24797,24958,25042], +[0,1414,2020,4193,25122,1306,1177,1701,25127,2182,1894,842,1587,1610,4342,3980,25609,91,4874,25099,25108,6513,8529,27525,25110,9240,25103,25104,25098,25137,25053,25118,25114,25058,25083,10614], +"grunt-svgmin", +"onnect", +"matchdep", +[0,25155,5130,33359], +[1,2343,26163], +[0,26164,26165,26166,2537], +[0,25183,25194,1759,2858,3310,9796], +[0,33460,25204,4874,5542,1177,25209,1894,4039,4494,91,1984], +[0,9649,17721,6869], +[1,2343,26168], +[0,26171,26174,26188,4139], +"lws-basic-auth", +"lws-b", +[0,1676,4164,4484,4747,2151,1525,3310,25228,24337,3322,24335,25245], +"lws-blacklist", +[2,26170,7803], +[0,3377,1192,2675,4400,1177,4039,4468,1894,91,5087,4874,5245,28177,20959,107,4864,5542,25250,8656,8660,1009], +"lws-compress", +"lws-co", +"nditional-get", +[2,26176,26177], +"lws-cors", +"lws-index", +"lws-json", +"lws-log", +"lws-mime", +"lws-range", +"lws-r", +[2,13148,21101], +[2,26185,26186], +[0,2733,8675,13494,5131,970,1017,25259], +"lws-rewrite", +"lws-spa", +[1,5293,26193], +"lws-static", +[0,8391,26194], +1753574400000, +[1,2343,26197], +"full-stack", +[0,26198,0,26199,2537], +[0,1461,2731,3744,3776,89,3824,3847,4649], +[0,5130,6081,4963,5131,25786], +[1,2343,26201], +[0,26209,0,26211,2399], +[3,24235,20], +"loose", +[2,26202,26203], +[2,13888,5669], +"grunt-es", +"3-safe-recast", +[2,26206,26207], +[0,4484,25804,29321,29322], +"grunt-rollup", +[0,13572,2220,36,5130,202,6710,91], +"grunt-ts", +"rollupify", +[1,2343,26215], +[0,26219,26220,16427,2523], +"indexeddb", +[3,23920,12], +"websql", +[0,24327,25819,24329,24335,24337,24338,24339,24340,24343,24344,1437,1676,1687,24345,24346,1209,3445,6331,20921,4135,4238,24347,22651,4339,4390,4484], +[0,5245,17577,24352,5087,4870,4874,5254,24358,24360,13214,1192,2774,2990,4039,4227,4468,91], +[1,2343,26224], +[2,31787,26225], +"openurl", +[0,6203,26226,26227,2523], +"ecma402-abstract", +[0,25857,25862,25863,19535,19,21,24,26,1009,1011,1166,1584,1177,1895,1938,1955,25868,3421,1894,4039,4094,4232,4484,4508,91,555], +[0,1098,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[2,3019,2825], +[1,2343,26231], +[2,7627,4255], +[0,26235,26236,26237,2537], +[2,6698,19048], +"lockfile ", +[2,26233,671], +[0,20437,1209], +[0,4874,1009,1011,1177,1895,1938,1955,1894,4039,4042,4052,4076,4079,4484,4508,91,555], +[0,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2343,26239], +[0,26240,26242,7097,2523], +[0,1473,4741], +[2,31528,29413], +[0,10321,4493,4543], +[1,5293,26244], +[0,8391,26245], +1738454400000, +"@egjs/axes", +"@egjs/imready", +"modularized", +[2,5316,26248], +[1,2343,26251], +[0,26252,26253,26254,2537], +[0,97,5564], +[0,29519,89,1177,1503,4474,1894,1610,3824,29520,91,11853,4880,38309,4883,29522,3904,17584,1011,4889,1009], +[0,5472,89,582,2275,11857], +[1,2343,26261], +[2,27471,1722], +"kuler", +"clonedeep", +"js-randomness-predictor", +[3,23307,13], +[0,26262,0,26263,4139], +[0,25510,29529,25758], +[0,6932,6622,6694,6704,6860,6695,4389,7159,5341,7202,7121,7060,7161,7141,7287,6698,3743,7311,6946,2090,6566,6907,7228,4799,5261,6863,2051,676,4643,7535,6748,6739,6618,2844,7252,6673,6790,7531,7226,1851,1612,4763,6598,6728,6868,6662,7148,6905,6668,7292,7272,6583,3767,364,6800,6874,4166,1698,2021,6821,3065,6435,3730,6882,4647,6857,6637,7031,7223,7080,3113,7220,1871,6801,7087,6938,7145,3195,7255,7162,6482,7094,6922,6615,6738,6654,8433,7212,7050,7521,1525,6892,6830,3432,10442,7053,7253,10443,6937,6894,6977,5592,6692,200,6940,6867,7242,7518,6582,3101,7038,57,7188,6809,6998,4484,4796,7089,7178,7182,6827,7015,6912,7011,6743,1451,6575,7117,6994,3046,2812,7199,2860,998,5122,1111,6696,6910,3529,7133,6048,1303,6634,1139,6846,6784,7192,6777,3053,5351,6624,3171,1896,2297,6960,7022,6597,5198,6802,6816,7317,4141,6765,6591,7236,1306,6681,5257,6564,100,7004,6333,6799,6774,7276,7196,6797,1263,1149,2649,7150,7165,6753,7107,6948,6975,6822,6787,6760,7046,5472,6651,6569,6825,7069,582,7191,6968,6631,6742,4744,7258,1925,6794,6804,965,7149,6917,2700,1192,2765,6081,7029,1417,5258,4426,6608,7044,7123,7222,3378,1616,3917,1614,1669,3209,6570,7155,6422,6714,6725,6606,6778,7300,6610,6716,1259,2585,1393,6918,1461,1213,7232,7172,6755,4014,6919,7209,7075,6818,6870,7039,6795,6761,6966,2154,6885,4707,6964,6646,7218,7169,2978,5501,1155,6611,6955,1862,1753,2220,6837,7336,4386,6638,6616,6553,7310,7061,6881,7298,8424,5675,3437,3456,6929,7157,6580,6751,7010,6648,3426,6952,8435,4384,7233,6697,4162,2150,3875,1108,5165,6926,3763,7229,592,3776,7288,5957,6700,2088,6650,7595,10446,7289,6805,7099,7084,7144,590,5374,5197,7077,5286,7248,2078,7085,7285,1781,6653,10441,2325,5281,1351,7309,7204,2696,2899,3430,705,7126,1697,2038,7025,6641,6620,1671,6859,6573,7146,7245,4649,3220,6667,1623,6793,6666,6903,7230,7026,6588,6858,1362,202,2832,7023,7284,6659,6577,7158,6594,7115,20215,6789,5614,7057,7528,7021,6605,6621,5260,6973,6913,6828,6563,6715,1460,7067,7072,6762,7033,7517,6702,7020,6887,5131,3778,6915,1593,5194,7071,1429,7042,6636,6841,3428,7007,7532,6803,7106,3073,6824,7227,7286,2845,7082,7114,7151,7297,6769,3766,6914,7189,7064,4720,6723,7205,6780,6683,7078,1858,6741,7262,6962,814,6657,7524,1544,7002,7527,1585,5511,1512,6921,6951,6856,7598,6854,8428,6586,6773,2105,7047,2671,1541,6623,594,6711,7147,6671,7256,7194,1165,6786,3768,6752,8427,1804,3441,7275,3033,6943,4354,4580,6758,7027], +"snackbar", +"inject-markdown", +[1,2343,26267], +[0,0,26268,26269,2537], +[0,2272,19270,2899], +[0,1111,1936], +[1,2343,26271], +[0,26272,26275,26276,2523], +[0,6513,4193,4484], +[2,32920,4521], +"rchitecto-", +[0,33821,7709,33826,33827,33831,33836,29543,4508], +[0,7200,1168,5472,3212,20188,29545], +[1,2343,26278], +[0,0,26279,26280,4139], +[0,6373,1437,29550,2151,2070,2323,2372,29552,4039,4042,4057,4076,4072,4484,4487,91], +[0,1896,5066,29554,29555,5122,12295,14554,5284,4453,29556,5131,1591,1932,4653,6434], +[1,2343,26282], +[0,0,0,26283,2523], +[0,7201,5131,1676], +[1,2343,26288], +[2,28288,26286,33678], +"redential", +"isequal", +[0,26289,26290,26291,4139], +[0,1364,1536,1676,1710,11479,2017,2929,4200,4763], +[0,8648,29574,5159,838,5160,840,8296,5601,1165,1662,1177,1895,1972,2203,3561,1894,3710,23535,3709,4355,4383,91,1983,1984], +[0,5592,5995,27,4699,4729,4030,6710], +"isfunction", +[1,2343,26294], +[0,0,26295,26296,2487], +[0,53,87,192,5467,1165,1195,1387,31429,1429,29582,1492,29584,1652,29585,2323,29586,2338,29587,29589,2361,2367,2384,2390,2419,2455,2464,2479,2482,2494,2496,2504,29592,2510,2530,2550,29593,2675,29594,2822,2929,2899,3198,29595,5561,3561,3722,4015,4019,4042,4045,21688,4939,29596,4193,8959,29597,4597,29599,2924,18237], +[0,1623,4329,2278,676,6398,6396,5130,14894,29603,29607], +[1,2343,26298], +[0,26299,26300,26302,34352], +[0,1437,29614], +[0,29618,7677,2675,2990,1894,91,1984], +"isplainobject", +[0,200,1473,1512,7208,6876,7201,6983,29609,3632,3073,6807,4166,1871,590,592,7009], +[1,2343,26304], +[0,26305,26306,26308,4139], +[0,7943,29630,3120,3744], +[0,48,53,68,13693,61,31689,73,31693,5757,5800,5818,5827,87,90,19696,19438,19181,442,34467,32229,29634,28970,29636,10837,10840,29639,966,968,972,29642,974,5087,11292,4874,4880,4883,8152,1175,1193,1195,20479,29643,11335,29645,1465,1584,1587,1593,1610,1700,1177,1879,1895,1922,1938,1947,1955,1959,1961,1976,2151,2203,29646,1192,11347,2774,2780,29652,2832,3561,3697,1894,3720,89,3816,3824,3847,29655,3957,4183,4270,4315,29660,4415,29661,35487,4468,4469,91,2924,4677,4681], +"isstring", +[0,29610,29666,29667,4627,6082,9204,5130,89,699,9291,5354,29668,29669,29670,29671,7320,29673,29674,29676,1473,998,8691,8295,29677,181,6073,10769,29678,4315], +[1,2343,26310], +[0,0,0,26311,2537], +[0,23584,23584,1936,3205,1002], +"@thednp/dommatrix", +[1,2343,26314], +[0,0,26315,26316,2537], +[0,29693,2228,2247,2253,2258,2263,2273,2281,2283,29694,2308], +[0,36653,36650,29702,15571,8192,5066,11316,18346,35060,2814,20632,6398,5131], +[1,2343,26318], +[0,26319,26320,22658,2443], +[0,3561,33145,4317,8712,1423,28572], +[0,4729,1138,3244,3467,4390,4763,12084,2070,710,614,1082,31705,1413,1676,2145,2856,33213,1145,1398,1410,977,2018,2755,3266,3930,4135,4072,11478,2105,6042,3479,3729,2924,3757,3784,33214,33173,842,9241,1525,1610,2553,11993,26453,23175,3530,4270,33215,29709,11534,13214,33200,33202,1628,11890,2659,16837,2689,33211,4227,4294,4425,91,24739,53,554,4865,33198,20463,13753,1154,33204,1536,1615,2805,4111,27062,4165,15040,33212,7080,104,8317,33146,33174,5364,5245,33191,4880,1195,1393,33206,1562,33208,2863,33210,3678,20508,4307,11804,33176,11477,4870,5254,33209,20465,15031,3878,13834,15048,97,33181,26733,15018,3509,15042,15047,101,8755,29877,33197,15606,15009,3502,15033,5216,33165,8648,10837,20374,4883,2661,15022,3322,51,87,11011,23452,1618,2674,4230,28512,15039,15046,13471,10879,7806,21122,16149,16566,3672,90,33156,617,11796,8264,33193,11800,1560,3676,3957,68,33768,15015,3688,9221,25652,33158,33167,34467,33195,36897,16841,18730,4409,33159,29876,24807,31666,16912,3605,16842,33170,33179,3177,4851,92,33162,19861,29517,29421,33172,10840,33183,33153,10825,30521,10827,20476,15273,83,16840,33189,3638,81,5715,29874,5757,5241,5820,5821,5785,1251], +[1,2343,26323], +[2,1882,24717], +[0,0,26324,26325,2399], +[0,1414,34238,2675,2990,3561,1906], +[0,3561,1623,6425,26543], +[0,0,21613,21614,34352], +[1,2343,34498], +[0,1448,4907,29733,3157,3173,3527,3721,11114,4207], +[0,192,5467,442,6061,16607,6063,6065,16608,16612,7746,4874,13210,29740,1009,1011,1610,1177,1953,2020,2203,2675,29741,2990,3536,1894,4039,4131,91,1984], +[0,8678,3758,7001,1017,29745,12295,12296,29746,29747,29748,158,3097,5131,33777,29750,29751], +[1,2343,26332], +[0,26333,26334,26335,34352], +[0,29758,29759,1398,34690,3127,3725,10397,29761], +[0,53,68,87,1195,29776,1465,24542,1628,1177,1879,31393,1938,24732,2092,8301,2651,29784,4307,4409,37871,2924,4676,4677,4681], +[0,8168,8170,8171,6975,8172,8173,1745,29786,29787,29729,8124,29788,29795,29796,29797,29798,29802,29803], +[1,2343,26337], +[0,26338,26339,26340,2523], +[0,3744], +[0,53,68,97,1177,1879,1895,1938,1947,1955,1959,1961,1192,5103,1894,89,3857], +[0,3857,5128,31912,89,5131,12295,12296,181,26542,23187,29556,29804,9944,7521], +[1,2343,26342], +[0,0,26345,26347,2523], +[3,532,8], +[2,26346,26651], +[0,53,87,97,29817,21155,1177,2675,2990,89,3857,91], +"@tdesign/", +[0,3857,5128,31912,89,5131,12295,12296,181,5396,29819,15813,29820], +[1,2343,26352], +[3,17904,13], +"sprintf-kit", +"uni-global", +[0,0,26354,26355,2443], +[3,25092,13], +[0,53,68,61,5241,83,87,90,5583,811,816,968,972,1165,1497,1652,1177,1895,31755,1955,1959,1961,1976,2675,2686,1192,2990,3561,1894,3744,89,3824,4042,8849,29826,6068,10854,4320,4323], +[0,89,35058,29831,3392,89,4627,29832,5131,12295,12296,29836,29837,29838,29839], +[1,2343,26359], +"ncjsm", +"tape-index", +[0,26360,26361,26362,34352], +[0,97,29843,29844], +[0,53,78,83,87,90,92,5522,107,29846,968,972,4880,4883,1009,1011,1030,1178,1413,1610,1177,1895,1955,1959,2675,1192,2780,2990,1894,89,3824,4039,91,1983], +[0,29848,29849,89,5128,38332], +[1,2343,26365], +"@standard-schema/spec", +[0,26366,26367,26368,2487], +[0,1420,29855,4507], +[0,5517,19438,442,29857,23689,1414,1437,1516,1532,668,1177,1895,1955,2020,2203,2675,2765,2990,3074,1894,4039,18710,91,4523], +[0,20627,1739,1745,1179,1783,5980,9591], +[1,2343,26370], +[0,26372,26373,26378,2443], +"terminal.js", +[0,810,1497,26570,16485,2017,2696,3876,4022,32284,5545,29869], +[0,48,53,87,90,92,97,19696,28091,19492,19438,442,28598,30507,810,11275,34467,827,10828,28147,28466,31235,7384,31237,28473,28476,968,972,974,29879,33123,29880,4874,4880,4883,15606,1030,17214,7677,1195,29883,20476,1393,29645,1610,17100,17101,17103,1687,1177,26322,1895,1915,1938,1942,1947,1955,1959,1961,30553,10851,2070,2203,2675,2832,2990,3127,3541,1894,89,3824,3847,3876,4039,4270,4409,4469,4473,91,4523,15088,1984,29887,2924,4676,4677], +[3,28685,11], +"refresh", +"overwrite", +"irtual-core", +[0,89,6071,9816,5128], +"tinyexec", +[2,17213,28937], +[1,2343,26382], +[0,26384,26386,26387,2537], +"date-format", +[0,29896], +"flatted", +[0,29900,29905,29910,29911,811,816,974,11096,11109,19203,29914,11111,29917,29921,1414,1429,29922,29924,1177,29925,1938,2832,8821,2899,1894,4042,29926,4146,4193,4196,4261,4072,91], +[0,29935,11619,11608,30891,11622,6907,29936,12899,5130,30442,17950,1283,29939,33359,11415,6624,12620,29940,29941], +"streamroller", +[1,2343,26392], +"@log4js-node/sandboxed-module", +"-producer", +[0,0,26393,26394,2487], +[0,53,13052,87,4042,4045,4058,4067,4415,29949,35487,4535], +[0,7838,29953,7518,3161,1098,29954,89,188,7880], +[1,2343,26401], +[3,9227,10], +"e-js", +[2,26396,26397], +"grunt-open", +[2,2235,4358], +[0,26402,26403,26404,2537], +[0,97,29959,10984,1673,3021,29960,4443,1155], +[0,5652,61,83,87,92,192,5467,6372,5583,811,16952,8850,816,6373,29966,29967,29980,26344,5139,4874,8149,11438,14334,1009,1011,11016,13061,7677,23203,13063,1031,36812,36805,11018,1165,1170,1420,12405,1527,1540,1610,1651,1652,1676,29972,668,1177,1881,1895,1938,1955,1988,2226,2675,2832,695,2990,3025,26804,3213,3561,1894,3725,29973,3957,4039,4042,34019,8849,11899,15277,29974,15911,10854,29975,29978,4073,6904,4081,29983,4484,91,1983,29987,1984,188,4630,4639,13151], +[0,188,5131,29990], +[1,2343,26427], +"esm2umd", +[2,26409,26410], +"int64", +"@astrojs/s", +"itemap", +"@pagefind/default-ui", +[2,26689,27593], +"uid2", +"astro-expressive-code", +"bcp-47", +"isemail", +"canonical-json", +[2,3138,12442], +"-phase", +[2,3081,26419], +"pagefind", +"remoting", +[2,25894,26422], +"loopback-", +"filters", +[2,26424,26425], +[0,26430,26432,26451,2523], +"globalize", +[2,25894,26428], +[0,7755,1869,2814], +"linkedom", +[0,53,87,23572,11301,1165,1168,30000,1597,1610,1637,1651,18259,1759,1177,1895,1903,1938,1954,1955,1958,1970,3363,3561,3564,3566,30030,3579,3605,30033,3613,3640,30039,30274,1894,4039,4042,4045,4055,4058,20981,30041,4067,20983,32978,4073,12309,4201,4320,4946,4360], +"or-remote", +[2,1544,26433], +[2,26424,26434], +[3,18637,12], +"tub-transport", +[2,26436,26437], +"datas", +"withastro", +"ource-juggler", +[2,26439,26441], +[2,26424,26442], +[3,18637,11], +"astro-integration", +"-transport", +[2,1716,26446], +[2,26444,26447], +"adapter-", +[2,32700,23187], +[0,12318,2090,30044,30045,13225,7518,5398,158,30046,190,5131,18346,9229,1542,30826,20937,2814], +[1,2343,26454], +"is-docker", +[0,26460,26471,26475,2523], +"loopback-boot", +"s6-shim", +[2,13897,26456], +[3,26435,12], +[2,26458,2585], +[0,1170,2812,1209,3183,4094], +"task-emitter", +[2,25894,26461], +[3,6738,11], +[2,26463,1524], +[2,25894,26464], +[2,1884,3081], +"processor", +"-preprocessor", +[2,22126,26468], +[2,2877,26469], +[0,1429,1177,10419,3188,2899,1241], +"sqlserver", +"StrongLoop", +"mBaaS", +[0,6703,1702,200,1586,21405,13397,33351,27,29854,30053,21402,13322,16697,28984,6667,6574,30056,31937], +[1,2343,26480], +[2,26478,29168], +[3,30636,28], +[2,26868,26869], +[0,0,26496,26497,2537], +"exact-versions", +[2,32700,7293], +[2,26485,24631], +"steno", +[3,31231,18], +[2,19036,20], +[2,5745,1852], +[2,2029,26487], +[2,32731,26494], +"embed", +"Storage", +"localStorage", +[2,1577,26491], +"polygon", +[2,32731,32729], +[0,1165,1387,2323,30061,2379,2409,2450,2482,2494,2496,2510,18426,30064,3591,4320,4323,4747], +[0,29993,30066,30067,1623,695,5131], +[1,2343,26500], +"rslog", +[0,0,0,26501,2487], +[0,89,6649,10057,6355,3875,1542], +[1,5293,26508], +[2,13104,1936], +"@lucide/build-icons", +"@lucide/", +[2,4080,591], +[2,26505,26506], +[0,8391,26515], +"Lucide", +"HTML", +"Feather", +"Icons", +"Icon", +"SVG", +1731196800000, +"Feather Icons", +"Fontawesome", +[1,2343,26519], +[0,26521,26522,2514,4139], +"Font Awesome", +[0,30078,9307,9311,30068,30052,30073,9313,30072,1497,12412,30075,2071,7610,2579,21308,3137,27008,3140,12627,26929,26914,17429,9337,3973,9340,3988,30049,30069,30059,27062,9348,4207,17913,4473,30058,4555,28830,4745,4763], +[0,11522,972,1006,12396,9363,30082,4880,4891,1030,30084,23312,23314,3286,89,3824,4549,1984,28965], +[1,2343,26524], +[0,26525,0,26526,2537], +[0,30097], +[0,1674,30099,30100,15001,13739,35071,30103,30113,19571], +[1,2343,26529], +"decree", +[0,26530,26531,13347,2537], +[0,20378,3530], +[0,11976,4874,20374,2071,30138,2070,4441,1531,91], +"manipulate", +"blur", +"sharpen", +"flip", +"hue", +"saturation", +[1,2343,26540], +"lightness", +[0,0,0,26544,4139], +"transparency", +"fade", +"opacity", +[0,91,553,1973,8791,2022], +[1,2343,26546], +[0,26547,2667,26554,2537], +[0,30173,4484], +"@75lb/deep-merge", +[3,1107,11], +"-sequences", +[2,26549,26550], +[2,1601,7880], +"load-module", +[0,30175,30176,27227,30177,30178,91,6742,57,15266,2873,1993,7256,676,19976,30179,5995,6400], +"-anywhere", +[2,17242,26555], +[2,30307,553], +[1,2343,26559], +[0,0,6230,26560,2399], +[0,32054,4963,4967,6082,3286,3287,89,11167,31512,181,630], +[1,2343,26569], +"-home-dir", +[2,18132,26562], +"mdast", +[2,2580,26564], +"fetch-happen", +[2,3094,26566], +[2,12428,1783], +[0,6234,6230,26575,4139], +[2,25212,28139], +"-unique-id", +[2,5843,26571], +[2,4402,163], +"y18n", +[0,1501,4963,4967,5342,6082,3286,3287,89,5341,9057,181,630], +[3,9357,10], +"umnify", +[2,26576,26577], +[2,8140,1687], +"ke-fetch-happen", +[2,18655,26580], +[1,2343,26583], +[0,26585,6230,26588,2523], +"@types/which", +[0,3826], +"wizard", +"task graph", +[0,4963,18263,1786,4967,6082,3286,3287,89,181,630,9229], +[1,2343,26590], +[0,26592,6230,26593,4139], +"zoroaster", +[0,9041], +[0,4963,4967,6082,3286,3287,3412,3730,89,181,630], +[1,2343,26595], +[0,26592,6230,26598,2537], +" manipulation", +[2,1871,26596], +[0,30246,4963,4967,6082,3286,3287,89,7193,181,630], +[1,2343,26600], +[0,0,6230,26601,2537], +[0,4963,4967,6082,3286,3287,89,30256,24843,30251,181,630], +[1,2343,26607], +[3,7678,9], +[2,4501,6996], +[2,12612,26604], +[2,26603,26605], +[0,26613,26615,26618,2537], +"lavalink client", +"audi", +"o streaming", +[2,26609,26610], +"music", +[0,3135], +"music bot", +[0,48,53,5241,87,92,19344,10879,30263,5601,4873,4874,1009,1011,1177,1895,1938,1942,1953,30266,13668,3401,4039,91,1984], +"emoji-datasource", +"voice chat", +[0,30270,3541,1651,2899,1984,1192,2765,3283,28360,30271,2793,1973,11937,16237,5472,30272], +" integration", +[2,1721,26619], +" performance", +[2,6732,26621], +[1,2343,26625], +"easy-to-use", +[0,26634,26635,26637,2487], +"feature-rich", +"seamless", +[2,26627,26619], +"communi", +"ty support", +[2,26629,26630], +"open-source", +"lavalink", +[0,30288,30293,30295,26557,32842,30297], +[0,30303,6494,4874,30306,30305,30310,2026,4039,1531,91,1984], +[3,66,19], +[0,30297,2026,5995,1851,5592,13527,91,5284,2663], +[1,2343,26639], +[0,0,26640,26641,2443], +[0,3377,26230,4255,1973,30351], +[0,5131,28125,4354,1388], +[1,2343,26643], +[0,26645,26646,26649,2523], +"convex-helpers", +[0,12449,4549,12396,2586,21016,32568,4233,12447,32567], +[0,1414,1177,3958,1894,3541,3985,91,4874,15632,32484,27706,27711,30411], +"intermediate", +"recursively", +[0,1745,9102,25131,1932,3958,32462,3984,4549], +[1,2343,26652], +"theme-generator", +[0,26653,26654,26655,2523], +[0,30416,30425,30431,30434,30438,30439,30441,30445,30447,30449,30450,30452], +[0,48,4487,91], +[0,30455,5133,30960,1851,5284,27838,18969,30456,5131], +[1,2343,26659], +"dingbat-to-unicode", +"lop", +[0,26665,0,26199,2443], +"-licenses", +[2,22190,26660], +[2,13888,26661], +"duck", +"hamjest", +[0,25766,30802,1461,30809,2731,3744,3776,89,3824,3847,4649], +"office", +[1,2343,26668], +[0,26669,0,26199,2399], +[0,89,3824,3744,25766], +[3,36878,12], +"ternal-editor", +[1,2343,26673], +[0,26686,0,26687,4139], +"@nestjs/", +[2,26674,10896], +"@nestjs/co", +[2,26676,686], +[2,26676,23], +[3,31,9], +[2,26679,2026], +[2,26674,26680], +[3,9687,9], +"wagger", +[2,26682,26683], +[2,26674,4521], +[0,4484,2735,547,2858], +[0,2733,5130,1098,5131,1896,8674,8675,1591,8677,8678], +"@nestjs/cli", +"@nestjs/t", +[2,26689,8615], +[1,5293,26692], +[0,8391,26700], +"asherize", +[2,6491,26693], +[3,12284,16], +[2,26695,2528], +"llaboration-core", +"limiter", +"embla-carousel-reactive-utils", +1733616000000, +[1,5293,26722], +[2,19183,26714,3181], +"eigen", +[3,578,11], +"de-highlight", +[2,26704,26705], +"@tabler/icons-react", +[3,3672,15], +"mantine", +[2,26708,26709], +"imple-vars", +[2,3677,26711], +"swr", +[3,25141,13], +"context-menu", +"peowly", +"context menu", +"server ", +[2,26718,4963], +[2,7519,26719], +"user ", +[0,8391,26723], +1733961600000, +[1,5293,26728], +"experience", +[2,26721,26725], +"usability", +[0,8391,26729], +1734220800000, +[1,2343,26731], +[0,0,26732,26734,2537], +[0,4172,2278,34683,4484,1177,4039,4042,4086,4072,3363,3561,2151,1894,1367,1610,4320,91,6375,3400,3566,30616,1165,1540,6376,3019,34673,1907,30617,1938,1982,30620,10817,1011,15290,6392,1009], +"axe-playwright", +[0,1623,2278,6398,20897,1283,699,5130,30622,27837], +[1,2343,26736], +[0,26737,26738,26742,2537], +[0,97,30628,30666], +[0,48,53,61,71,13052,83,85,87,94,4856,6503,4874,1178,1195,1208,1290,30691,30696,1389,1429,1431,31602,1610,1177,2026,10621,2832,2899,3421,705,4039,4218,4409,91,2282,4650,2924,4677], +[2,11932,26740], +"umd-wrapper", +"mapbox", +[0,6599,5131,5592,29744,30730], +"mapbox-gl", +[2,4609,4056], +[1,2343,26748], +"mapboxgl", +"legend", +[0,0,26749,26750,2443], +[0,1414,1429,1540,1596,668,1177,2832,3010,2899,2278], +[0,5284,5131,12295,12296,7179], +[1,2343,26752], +[0,26753,26756,26757,2487], +[0,3775,1473,1673,30778,1209,1461,30779,3376,30774,30772,30776,15616,3911,30770], +" processing", +[2,2585,26754], +[0,11336,89,3824,4880,4870,97,4883,30783,972,968,974,20562,4808], +[0,89,12248,5128,30731,30785,30786,4627,4963,181,5130,4967,5131], +[1,2343,26759], +[0,26760,26765,26199,2537], +[0,25766,30802,30803,30405,30458,1461,2731,3744,3776,89,3824,4649,30809], +"linkify-it", +"mdurl", +"punycode.js", +"uc.micro", +[0,30819,30820,30822], +"footnote", +[2,3108,26766], +[3,26767,14], +"r-inline", +[2,26768,26769], +"ins", +[2,3108,26771], +"ark", +[2,7613,26773], +[3,7617,14], +[2,26775,22164], +"ndoc", +[1,2343,26781], +[3,5956,14], +[2,26779,13218], +[0,0,26782,26783,2537], +[0,6066,1894,4042,4045,12611,4048], +[0,4967,9006,29633], +"@nx/docker", +[1,2343,26787], +"anchor", +[0,26788,26789,26790,2537], +[0,16115], +[0,972,4880,4883,1628,2144,2675,89,3824,3895,4307,4469,21180,4484,91,2924,6482], +[0,1631,30845,30847,30848,4627,6398,5131,4453,1631,5399,30858,32040], +[1,2343,26792], +[0,26793,26794,26795,2399], +[0,10780,1437,1525,2020,2151,3714,3742,4135,4548,4707,4726,4739,4753], +[0,30868,16480,1414,2070,2203,14775,30889,2658], +[0,30829,31731,30870,5131,12295,30871,12296], +"emojies", +[1,2343,26798], +[0,26801,0,26802,2537], +"emoticon", +"emoticons", +[0,3533,30018,28941,29602], +[0,29699,2942,6807,1179,1745,29703,29753], +[1,2343,26810], +[2,26807,26809], +"from-to", +[2,4279,26805], +"lodash.u", +"pdf-text", +"pperfirst", +[0,26811,26812,26813,34352], +[0,31834,31846,29951,66,29890,5582,635,29057,1091,1525,18145,30089,31002,13812,2822,26014,3079,3181,3310,30095,4025,6477,4135,4183,4474,91], +[0,1177,1939,1959,1969,2151,1192,2829,3123,4039,30269], +[0,5593,1745,1179,1783,5061], +[1,2343,26816], +"rows", +[0,26817,26818,26819,2523], +[0,7614,19976,3445,1371,1437,2020,2975,3478,4484,1209,4135,1593,3742,2924,1457,2151,4447,1525,2641,1483,1710,1869,3884,13834,4689,30459,4562,30876,3885,30878,32359,30882,9329,4681,30890,2651,30895,30896,4676,30899,30900,30902], +[0,36864,18055,4883,8286,30913,3904,33768,29125,30915,30919,4985,38298], +[0,89,12478,2924,1745,18061,18063,467], +[1,2343,26821], +[0,26822,26823,26824,2443], +[0,4484,2735,547], +[0,3377,1192,89,1177,4039,4042,4468,2151,1894,3824,91,5087,4874,4880,4883,8656,8660,972,2780,10817,968,1011,20562,1009], +[0,2733,5130,89,5131,1896,24364,8674,1591,8677,8678], +"microtime", +[1,2343,26828], +"theredoc", +[0,0,26829,26830,2537], +[0,5087,1009,1011,1593,1596,1637,1177,1192,2774,2794,2832,30935,4042,4468,91], +[0,32814,6422,6805,2013,24800,31767,91,5284,11512,4627,3111,30430,11608,6400,1936,9622,8174,30937], +[1,2343,26832], +[0,26833,0,26834,2537], +[0,1497,9272,9273,3744,97,6372,444], +[0,89,5128,9267,30943,6653], +[2,13090,4226], +"lazy-cache", +"list-item", +[3,19516,13], +"mixin-deep", +"repeat-string", +[1,2343,26848], +"glossary", +[2,4001,1932], +" of contents", +[2,176,26844], +"of-contents", +[2,16065,26846], +[0,26850,0,26851,2487], +"node-bundle-require", +[0,9273,3744,97], +[0,89,5128,9267,699], +[2,28001,28034,16111], +[1,2343,26856], +[2,24559,18089], +"gemoji", +[0,26857,0,26858,4139], +[0,1497,3847,9272,3744,97,5090], +[0,89,5128,9267,594], +"CommonMark", +[1,2343,26861], +[0,26862,0,26863,2523], +[0,30963,30964,1699,3547], +[0,91,4521,678,12659,4030,7096,5592,30967,30968,5995,30969], +[1,2343,26867], +"jsonpointer", +"run-con", +[0,26871,0,26863,2523], +[3,11026,13], +"uilder", +[2,10829,2202], +[0,30978], +"babel-re", +"@markedjs/eslint-config", +"@markedjs/", +"testutils", +[2,26874,26875], +"marked-", +[2,26877,5342], +[1,2343,26884], +"marked-man", +"recheck", +"@egjs/component", +"@egjs/list-differ", +[0,26886,26887,26888,2537], +"markup", +[0,1091,4135,2105,30986,30987,31339,20786,2745,27168], +[0,16499,1983,1984,1597,2071,91,36864,3401,19232], +[0,30990,30991,20998,5194,5130,2323,5284,1936,6082,1783,6710,30993,38087,8674,12479,5347,5348,30997,30998,30999], +[1,2343,26890], +[0,0,26891,26892,2523], +[0,1759,20463,1763], +[0,89,3286,23803,1759], +[1,2343,26894], +[0,26896,26897,26898,2537], +"v8-argv", +[0,31705,4227,31044,4121,2626,6473], +[0,4757,1192,3144,1177,3266,1701,2924,2151,2182,1894,1610,3758,4507,2794,91,53,5087,4874,1615,4677,1195,29283,3401,3878,4891,4864,21122,8818,31054,4681,31055,33002,31057,2784,4409,1895,1955,2780,4684,5241], +[0,89,5284,2924,26375,11498,31062,3000,2998,6109,6609,2999], +[1,2343,26903], +[3,2718,14], +"refixer", +[2,26900,26901], +[0,0,26904,26911,2443], +[0,34264,2222,31069], +"vent-listener", +[2,11352,26905], +"typed-event-target", +"simple-assign", +"@onesy", +[3,1441,29,6], +[0,31076,2220,2844,553,91,9381,5130,1932], +[1,2343,26913], +[0,26918,26919,26923,2523], +"react-medium-image-zoom", +"complex.js", +"latex", +"escape-latex", +[0,3467,6482,1983,31090,1371,1437,2020,1759,1209,3539,4135,1458,3363,3471,2924,1457,2151,2720,1894,1525,1587,1483,1628,91,3921,31091,31093,1393,13223,1540,4025,4307,31094,31095,31096,31097,9322,3878,31098,31099,31101,8161,29182,31105,10936,31106,31109,31110,31111,2651,31114,4679,4684,31117,12361,3177,4676,31120,31123,31125,4992,31127,2135,24723], +[0,1192,89,2190,3824,5087,4874,4870,31131,4864,31134,31138,4985], +"-natural-sort", +[2,5284,26920], +[2,17414,3046], +[0,31140,6354,31141,17944,31146,31153,27837,5592,1303,5130,27,1781,2934,31154,33359,3424,28438,3469,4030,7096,1965,31155,12479,5284,29727,31047,31048,31045,31042,31156,31171,5995,18063,31175,2968,31176,89,6071], +"jsep", +"ndarray", +"-determinant", +[2,26925,26926], +[1,2343,26937], +[2,28402,28403], +"ndarray-gemm", +"ops", +"ndarray-ops", +"ndarray-pack", +"numeric", +"numericjs", +"pad-", +[0,26939,26942,26943,2537], +"l-time-collaboration", +[0,53,4982,1420,1595,31187], +"sylvester", +"zeros", +[0,4361], +[0,11525,8221,89,364,5592], +"mathematics", +"algebra", +"complex", +"fraction", +[1,2343,26949], +[0,26950,26951,26952,2537], +[0,104,18089], +[0,31206], +[0,1936,2587,1172,23267,36587,23266], +[1,2343,26954], +[0,0,0,26955,2537], +[0,11961,10339,10340,5122,5995,1594], +"charenc", +[1,2343,26958], +[0,26959,26960,7537,2523], +[0,1673,1511,31225], +[0,2675,1984,91,4874,975,11976,192,11978,7677,5467], +[1,2343,26962], +[0,26964,0,26966,2523], +"md5sum", +[0,1004], +"checksum", +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31239], +[1,2343,26968], +[0,26964,0,26997,34352], +[2,27022,27023], +"d-character-reference", +[2,5877,26970], +[2,15103,26971], +[3,17995,15], +"decode-n", +"-char", +"-reference", +[2,6842,26976], +[2,26975,26977], +[2,10129,26978], +[2,26974,26979], +[2,26973,26980], +[3,26981,22], +[2,26982,1871], +[2,3370,16906], +[2,26973,26984], +[2,26973,5511], +[2,26973,553], +[3,4292,10], +[2,26988,8193], +[2,9406,26989], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31260], +[2,20627,6660], +[2,17991,6147], +[1,2343,26996], +[3,3137,10], +[0,27025,0,27026,34352], +[0,6400,4967,12042,12045,12047,1424,12048,12049,12050,12044,12056,12058,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,31268], +[1,2343,26999], +[0,26964,0,27001,2537], +[3,26986,16], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31276], +"anitize-uri", +[2,27000,27002], +[1,2343,27007], +"lines", +"trim-lines", +[0,26964,0,27001,2523], +[2,3138,3987], +[3,12133,20], +[2,27009,3987], +[1,2343,27012], +[0,26964,0,27001,2443], +[1,2343,27014], +[0,27015,27019,27020,2487], +[0,7709,33828,31294,31296,28384,1364,1532,1553,1560,1575,1594,29013,1874,2026,31300,31303,2040,33596,13870,2212,31305,2593,2738,11993,2863,1209,3173,3220,3222,3237,3242,3345,3478,12286,17009,4143,4351,31306,1155,25370,4729], +[2,27577,3432], +"mdn", +"mozilla", +[0,7806,38176,9227,5601,7808,10406,8264,4870,38179,24156,4874,16936,4891,9241,2020,2659,3297,4342,91,1984], +[0,12322,3730,30045,31310,31311,6949,21611,31312,5403,5995,4699,2026,20863], +[1,2343,27024], +[3,10848,19], +[3,2791,11], +[0,27037,0,27034,34352], +[0,188,4452,1593,668,2822,2924,1457,3084,1628,3560,4027,4634,4639,13152,53,1615,2092,1165,1195,37215,31325,4689,36119,3618,31331,31332,4681,1584,3676,31333,31334,4645,31343,3177,31347,31348,1549,31351,31353,3463,21287], +[0,1745,1179,188], +[1,2343,27028], +[0,27029,0,27030,2487], +[0,3725,3105,18587,3114,3107,31343,13122], +[0,1745,1179,1783,188,19469], +[1,2343,27032], +[0,27033,0,27034,2523], +[0,31332,3008,3084], +[0,1745,1179,188,19469], +[1,2343,27036], +[0,27040,0,27034,34352], +[0,31331,3029], +[1,2343,27039], +[0,27075,27077,27064,34352], +[0,31331,1615], +[1,2343,27042], +[0,27043,0,27034,4139], +[0,3412,31331], +[1,2343,27045], +[0,27046,0,27034,2523], +[0,31331,31343], +"@blazediff/core", +[1,2343,27049], +[0,27050,0,27034,2537], +[0,31331], +[1,2343,27052], +[0,27053,27054,27034,2523], +[0,1437,1869,2151,2205,2226,2570,4135,4452,10761], +[0,31414], +[1,2343,27057], +[3,26482,36], +[0,27058,0,27034,2537], +[0,1209,4333,13092,4334,31331,21288,31348,31375,31425,31314], +[1,2343,27060], +[0,27061,27063,27064,2537], +[0,31434,31435,31438,31442,31444], +"server-only", +[0,1429,2899,4474,2924,48,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,31455,31456,92], +[0,31459,31460,9439,31461,5131,11194,4653,1616,31462,31463], +[1,2343,27067], +"@types/title", +[0,27068,27070,27064,4139], +[0,31435,31469,31470], +[2,27074,29387], +[0,1429,2899,4474,2924,48,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,31456,92], +[1,2343,27072], +[0,0,0,2514,34352], +"hashring", +[3,30708,19], +[0,3698,11194,1582,31477,31480], +"jackpot", +[0,1429,2899,1177,1593,4474,2924,4469,48,1628,91,53,13693,4856,5087,4874,3165,3400,4677,6503,4880,4307,31484,5000,85,94,87,1954,1959,1938,1958,1895,1903,1955,1970,92], +"InnoDB memcached API", +[1,2343,27082], +"failover", +"hashing", +[0,27086,27087,27064,2443], +"membase", +"memcache", +"nMemcached", +[0,31465,31477,31480,31489,31490,31492], +[0,1429,4653,2899,1177,9420,1593,4474,2924,1894,48,91,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,1954,1959,1938,1958,31496,1895,1903,1955,1970,92], +[1,2343,27089], +[0,27095,27070,27064,2443], +"@json", +"joy.com/json-pack", +[2,27090,27091], +[3,27092,13], +[2,27093,614], +[0,4729,31435,31469], +"tree-dump", +[1,2343,27102], +[3,7746,11], +[2,8184,3358], +[3,4490,14], +[2,27100,10896], +[0,27104,0,27116,2487], +"fs.js", +[0,1497,31515], +"in-memory", +"fsa", +" access", +[2,6771,27107], +" file system", +[2,970,27109], +"webfs", +"crudfs", +"opfs", +"casfs", +"content ", +[0,31517,31518,5131,12344], +"able storage", +[2,15427,27117], +[2,27115,27118], +"pvu", +[1,2343,27123], +[2,7467,11017], +[0,0,0,7983,2537], +[2,24399,4162], +[2,2068,7906], +"mem", +"nanocolors", +[1,2343,27129], +[0,0,0,27131,2523], +"memoization", +[0,1098,5130,1388,17050,5472,12899], +[1,2343,27133], +[0,9756,27137,27139,2537], +[2,27135,1276], +[3,5536,15], +"gulp-exit", +[0,1166,1437,1596,3421,4255,4257], +"ram", +[0,1111,14903,200,30248,2966], +[1,2343,27141], +[0,17263,27142,27143,2523], +[0,23689,7892,10410,4874,20959,28502,1364,28556,2323,31190,2526,2765,31539,31540,2272,3297,4039,4089,31541,4130,4474,4487,31194,91,31195,31186], +[0,1973,5472,11132,13841,28522], +[1,2343,27145], +[0,0,27146,27147,2523], +[0,1173,1178,14318,1264,14237,1272,1177,1881,13936,1895,1935,1938,2126,2675,1192,2990,1894,4039,4535], +[0,31549,31550,31553,31565,9006,3015,31566,15813,10725,30672,5066,15571,89,31567,1098,188,12295,5131,28125,31568,31569], +[1,2343,27149], +[0,27150,27151,27152,4139], +[0,17013,31573,18695,1525,1544,18671,2107,2036,14940,18708,3173,31576,4039,18667,4449,18670,4547,18692], +[0,442,4856,9417,31586,31593,6494,31595,7746,4874,31607,6520,31613,1009,1011,31615,1429,1431,1587,1177,1895,1951,1954,1955,2020,2116,2212,12870,2899,3560,1894,6021,4085,4135,4193,4196,18698,4474,91], +[0,14932,1388,6147,9381,4967,13441], +[1,2343,27154], +[0,27155,27156,27157,2537], +[0,31573,14940,18714,18675,4039,4085,12937], +[0,1429,1431,2899,31627], +[0,9381,6147,4967,1388,14932,13441], +"fast refresh", +[1,2343,27160], +[0,27161,27169,27157,2537], +[0,17013,2036,6474,3173], +"trim-newlines", +[2,1420,21640], +[2,1677,21640], +"_comments", +[2,6865,27165], +[3,9488,13], +[2,27167,2104], +[0,1429,18766,2026,2272,2899,14942,4008,4085], +"-options", +[2,3183,27170], +[1,2343,27175], +"cat", +"kitten", +[0,27176,27177,27178,2537], +[0,2674], +[0,2292,2272,2899,4170], +[0,13428,1388,14336,12197,5472], +[1,2343,27180], +[0,0,27181,27182,2537], +[0,1173,1175,31653,1264,1429,2899], +[0,1420,15321,1623,965], +[1,2343,27186], +"from2", +"is-standalone-pwa", +[0,0,27187,27188,2537], +[0,19325,31265,1414,1537,1894,3985,3998,4039,4389,4505,91,1906], +[0,1936,18944,18089,6843,11043,1213,31661], +[2,3028,5056], +"stat-mode", +"ware", +[1,2343,27197], +"drafts", +[2,10722,27193], +"dir-equal", +[2,15340,27195], +[0,0,27187,27198,2523], +[0,1936,31670,18944,18089,6843,11043,1213,31661], +[1,2343,27200], +[0,0,27187,27201,2537], +[0,1936,18944,18089,6843,11043,1213], +"7zip-bin", +"node-7z", +"er-helper", +[2,18536,27204], +[2,3306,27205], +[1,2343,27208], +[0,0,27209,27210,2537], +[0,19325,31265,1414,1537,2577,2584,1894,3971,3985,3998,4039,4389,4505,91,4549,1906], +[0,1936,18944,26934,6843,11043,31661,31676,1213], +[1,2343,27212], +[0,27213,22487,27214,2537], +[0,31701], +[0,1473,7208,6616,1623], +[1,2343,27216], +[0,0,23215,27217,2523], +[0,965,1936,14186,34254,11590,1644,1646], +[1,2343,27219], +[0,27220,16487,27222,2537], +[0,2053,31724,20273], +"@surma/rollup-plugin-off-main-thread", +[0,1739,1745,8623,1179,1783,5354,26096], +"asyncro", +[3,1225,32], +[2,27224,6567], +[3,13998,31], +[2,7256,591], +[2,27226,27227], +[1,2343,27236], +"throw-", +[2,27230,27227], +[2,69,27231], +"directory-", +[2,27233,1633], +[3,16482,15], +[0,0,27240,27241,2523], +"evelopit", +[2,27235,27237], +"merge-d", +[0,2899,1429,2759], +[0,1623,6413,3766,31991,5131,1644,3529], +"river-install", +[2,27239,27242], +[2,3382,27243], +[1,2343,27247], +[2,14585,6082], +[0,0,27248,27249,2487], +[0,1596,2759], +[0,1871,3656,16906,1623,25232,6422], +[1,2343,27253], +[2,9280,20627], +[2,17991,27251], +[0,27254,27268,27269,2537], +[0,1634], +"factory-space", +[2,17991,27255], +[3,17995,17], +"unked", +[2,27257,27258], +[3,17995,16], +"ombine-extensions", +[2,27260,27261], +[2,26973,10368], +"resolve-all", +[2,26973,27264], +"ubtokenize", +[2,27000,27266], +[0,1414,668,1177,2899,4042,4228], +[0,1623,15215,2632,3178,16918,16919,31748], +[1,2343,27271], +[0,27272,27273,27274,2537], +[0,1147], +[0,1177,1895,1955,1894,4384], +[0,5675,57,7119,200,1523,7058,16159,31759], +"fill-range", +"@ember-tooling/blueprint-model", +"bracket", +[2,24559,1227], +[1,2343,27283], +"expansion", +"extglobs", +"lookahead", +[0,27284,0,27286,4139], +[0,1122,1125,31764,1129,1532,2220,2222,2817,18023], +"lookaround", +[0,31775,5995,2195,31776], +"lookbehind", +[1,2343,27290], +"negate", +[0,27294,0,27295,2537], +"negation", +[2,7623,22245], +"posix", +[0,2817,3502,18023], +[0,31775,5995,13531,20999], +[1,2343,27297], +[0,27300,0,27305,2537], +[3,7746,12], +[2,27298,1747], +[0,1532,2817,3181,3502,18023,31802], +"mime-score", +"runmd", +[2,4865,27304], +"rex", +[0,31775,5995,17977], +[1,2343,27307], +[0,27308,0,27309,2537], +[0,31809,2714,2867,3181], +[0,31775,5995,31804,31812], +[1,2343,27311], +[0,27312,0,27313,2523], +[0,1122,1125,31764,1129,1532,2220,2222,2817,3502,18023], +[0,31775,5995,2195], +"Min Heap", +"min heap", +"maxheap", +"min-heap", +"heap", +"Binary Heap", +"binary-heap", +[2,7247,17709], +[2,27318,27321], +[2,27315,27321], +" binary tree", +[2,15773,27324], +"heapify", +[2,13199,2656], +"heap sort", +"@utoo/pack", +"heapify up", +[1,2343,27335], +"heapify down", +"Priority Queue", +"priority", +[0,27342,0,27345,2537], +" queue", +[2,27334,27336], +[3,18020,13], +"-queue", +[2,27334,27339], +"priority q", +[0,1122,1125,31764,1129,2817,3502,18023], +"priorityQ", +[3,27325,15], +[0,31775,5995,17978], +"extract min", +"min ", +[2,27347,27337], +" priority", +[2,7287,27349], +[1,2343,27361], +"ing property", +[2,4327,27352], +" resizing", +[2,14000,27354], +"priority-", +[2,27356,20332], +[2,27357,26754], +[2,11512,27349], +[2,3768,27349], +[0,0,0,27362,2537], +[0,31775,5995], +"decrease key", +[1,2343,27367], +"increase key", +"searching", +[0,27368,0,27362,2399], +[0,3502], +[1,2343,27370], +[0,0,27371,27372,34352], +[0,5087,4874,1596,2070,1192,2822,31851,4468,4487,4490,31194,91], +[0,36720,7119,57,22856,5131,31568,7310,28125,888,8549,1388,18691], +[1,2343,27374], +[0,27375,27376,27381,2487], +[0,3127,3725,31872,31873,31869,8959,6330], +[0,1192,1170,2675,2968,1177,3188,4039,4042,4333,1637,1457,32826,1894,11401,1610,1193,53,1532,2990,2997,3400,1387,13834,8648,87,1939,31897,31901,4048,68,1938,4077,4069,1895,1955,4055,31899,1567,4067], +"@putout/minify", +"b64-images", +[2,1625,27378], +"readjson", +[0,2295,1739,1745,31903,1179], +[1,2343,27383], +[0,27384,27389,27396,2399], +[0,3445,1437,4747,1544,31910,17964,1836,2151,2182,3084,31915,3000,4151,4562,21847,31911,1549], +"try-catch", +"@arktype/attest", +"bench-node", +"try-to-catch", +[0,1166,1594,2020,2675,1177,4039,4042,2990,31917,4257,19286,31919], +"escover", +[3,19709,16], +"tout", +[2,27391,27392], +"madrun", +"supertape", +[0,17964,2295,1739,1745,31903,1179,200], +[1,2343,27398], +[0,27399,0,27400,2523], +[0,31939], +[0,965,31838,2814,5131,35059], +"brace", +[1,2343,27405], +"-expansion", +[2,27401,27403], +[0,27409,27410,27411,2537], +[2,25824,27403], +[2,4853,27406], +"zstandard", +[0,37135,1209,3847], +[0,48,53,87,90,1193,1503,1843,1845,1177,1895,1903,31952,1938,1954,1958,1959,1970,1192,1894,31953,3744,3775,89,3824,3904], +[0,1843,1192,8745,21009,3717,1448,6270,5472,2275,1973], +"jest-fixed-jsdom", +[1,2343,27414], +[0,27415,0,27416,2523], +[0,1086,31969,1362,31970,4484,4734], +[0,12666,1149,31972,31973,31974,31975,20672,31976,31977,7682,2090,158,3097,6774,5131,31978,31979,1644,1862,3972,31980,2056], +[1,2343,27419], +[2,27423,13083], +[0,0,8134,27420,34352], +[0,1867,23615,1936,18944,18089,31998,2574,20215,6435,1283,23584,6692,22982,4741,32000,32002], +[3,927,11], +[1,2343,27429], +[3,1915,14], +[2,27426,15001], +"signed", +"@prettier/", +[2,19569,27530], +"certificate", +[0,27430,27431,27432,2523], +[0,1448,32006,1869,1291,1180,1287,2151,32007,3127,3183,37708], +[0,1173,1208,1240,1280,1503,32009,1177,2899,3421], +[0,1776,5592,1746,1745,6789,32011,6746,32013,7221,32015,7011,32016,6615,32018,7194,32019,32027], +"fast-archy", +[1,2343,27435], +[0,0,9839,27436,2537], +[0,1177,6741,6939,1932,9711,5547,3624,2295,1745], +[1,2343,27439], +"ufo", +[0,0,27446,27452,2537], +[3,28920,12], +"dom-selector", +"jest-stencil-runner", +"fast-color", +[2,2023,9463], +[2,21195,27444], +[0,2212,4257,4389], +"mobservable", +"reactive", +"frp", +[3,19780,13], +"active", +[0,1745,3966,32037,27018,32038,30248,202], +[1,2343,27460], +"-programming", +[2,27451,27454], +[2,27450,27455], +[3,17943,11], +[2,6649,27457], +"data flow", +[0,15821,27461,27462,2537], +[0,4874,1414,1894,3985,3998,4481,4505,91,1906], +[0,23266,2587,23267,614,6435,1936,2741,11512], +[3,517,14], +[2,3191,1422], +[3,31504,15], +[1,2343,27469], +[2,13163,10101], +"expose-gc", +[0,15821,27461,27473,2487], +"-detector", +[3,20575,13], +"thingies", +[0,23266,2587,23267,614,6435,1936,1623,3585,1644], +"browser-st", +"dout", +[2,27474,27475], +"yargs-", +"@types/depd", +"rser", +"unparser", +[2,27477,27480], +"@11ty/posthtml-urls", +"inclu", +"-language", +[2,8785,27484], +[2,27483,27485], +[2,5340,27486], +"@moch", +"a/docdash", +[2,27488,27489], +"fail-", +"on-e", +[2,10372,4408], +[2,27492,27493], +[2,27491,27494], +"s-utils", +[2,13587,27496], +"inline-links", +[2,3986,27498], +"rewiremock", +"unexpected", +[2,668,27511], +"-eventemitter", +[2,27501,27503], +[3,27504,11], +[2,27505,3053], +[2,27505,3065], +[3,27507,12], +[2,27508,2917], +"uslug", +[3,1208,16,5], +"@11ty/recursive-copy", +"node-retrieve-globals", +[2,9374,27515], +"match-helper", +[1,2343,27522], +[2,5329,11807], +[2,5340,23767], +[2,9309,27520], +"node-loader", +"@zachleat/noop", +[0,27523,27524,27527,2537], +[0,12396,23288,23289,3746,4233,23257,23258], +[0,7729,4874,1414,2854,3493,1894,3985,3998,4505,91,1906], +"test-console", +"xmllint", +[0,23266,2587,23267,614,6435,1936,3493,6892,1633], +[1,2343,27529], +[0,15821,23215,27535,2523], +"-exports", +[2,151,27533], +"lcov", +"moji", +[2,9477,7204], +[0,23266,2587,23267,614,6435,1936,6941,11512,32101,32122,3661], +[1,2343,27538], +[2,120,28708], +[0,27539,27540,27541,4139], +[0,24566], +[0,1999,3165,1894,4387,4389], +[0,6892,1936,1644,1646], +"define-", +[2,14678,3205], +[2,27542,27543], +[1,2343,27548], +"-descriptors", +[2,9395,27546], +[0,0,27560,27561,2523], +"-val", +"ue-fixtures", +[2,27549,27550], +[2,5600,27551], +[3,7810,10], +"-each", +[2,27553,27554], +"s-have-names", +[2,23238,27556], +[3,18432,11], +[2,27558,7083], +[0,4874,1414,23276,2577,2584,3310,1894,3985,3998,4505,91,1906], +[0,1936,23670,10381,1213,11512,32143,12616,7102], +"@types/gopd", +[3,6497,11], +[2,27563,19065], +[3,4637,11], +[2,27565,20102], +[2,27563,27566], +[2,27563,2568], +[3,18491,11], +[2,27569,18985], +[2,13201,4552], +[3,26581,12], +[2,27572,19072], +[3,27573,13], +[2,27574,19077], +[2,27572,15058], +[3,8860,14], +[2,27577,3430], +[3,8860,13], +[2,27579,3022], +[1,2343,27582], +[0,27583,0,27584,2523], +[0,1676], +[0,27,2671,2934,2026,2078,32897,30135,33117,32150,32153,32154,32897,30131,32155,5995], +"@sap/hana-client", +[1,2343,27587], +[0,0,21181,27588,2537], +[0,1623,5260,32164,3561], +[1,2343,27590], +[0,27591,27592,27594,2537], +[0,2711], +[0,24118,24114], +"hrottler", +[0,1172,89,2711,5130,10772,24120,23361], +[1,2343,27596], +[0,27591,27597,27594,2487], +[0,32144,32191,24118,24114], +[1,2343,27599], +[0,0,0,27600,2537], +[0,1172,89,2711,5130,10772,24120,1936,24122,36,965,1388,4042,32199,32200,6802], +"unix-dgram", +"webidl2", +"unittest", +[1,2343,27605], +[0,0,27606,27607,2537], +[0,1700,2323,1637,3561,2494,32214,2482,2549,32215], +[0,1623,6398,6400,5130,5122,32219], +[2,2364,21928], +"-phantomjs", +[2,2463,27609], +[1,2343,27613], +"mockJSON", +[0,27615,27616,27617,2537], +"mockAjax", +[0,3220,4110], +[0,1149,2228,2258,2274,2281,2314,1776,1209,705], +[0,1367,32226,32227,1745,1776,18011,699], +[1,2343,27620], +"faste", +[0,0,27621,27625,2487], +[0,23689,4874,28502,2765,2272,4130,4487,31194,91,31195], +"st-validator", +[2,27619,27622], +[2,5310,2282], +[0,1973,5472,11132,13841,28522,2765], +"@icebob/node-memwatch", +[1,2343,27642], +"@types/bunyan", +"oredis", +[2,8802,27629], +"no", +"@types/pino", +"avsc", +[2,1317,1289], +"cbor-x", +"dd-trace", +"etcd3", +"event-l", +"oop-stats", +[2,27638,27639], +"fakerator", +[0,27653,27661,27663,2523], +"gc-stats", +"jaeger-client", +"kafka-node", +"-repl", +[2,3219,27646], +"msgpack5", +"nats", +"node-n", +"ats-streaming", +[2,27650,27651], +[0,16738,35957,7824,2798,3717,4468], +[2,29351,4255,591], +"notepack.io", +"redlock", +"rhea-promise", +"thrift", +"v8-natives", +[2,4712,13083], +[0,32243,10,13,16,19,21,24,26,30,32,34,53,87,192,22559,19181,442,16738,8755,554,4864,5087,4874,5254,1009,1011,27726,1193,1437,16307,1567,1610,10936,1177,1895,1938,1939,1942,1955,2020,2151,32245,2070,2203,2675,1192,2780,2832,3534,1894,4039,4094,4135,4484,4494,4507,91,4523,4769], +[3,14584,12], +[0,1192,91,1098,5472], +"messagebus", +[1,2343,27667], +"distributed", +[0,27668,27670,27671,2523], +[0,11518,1420,1437,1457,1525,1544,16082,3445,3613,3616,4200,4207,33212,4562,4729], +"ppsm", +[0,53,368,7948,370,554,811,816,32251,842,16145,966,968,972,974,11485,5087,19799,4874,4880,4883,24370,10844,9241,1009,1011,1030,32252,10783,1165,1610,1177,1895,1903,1938,1953,1958,1959,1192,2802,695,3363,3400,3561,37015,32253,1894,89,3824,3847,4039,4042,8849,4057,15277,2278,4315,4383,91,1983,32255], +[0,5472,1192,4967,17758,1676,32264], +[1,2343,27673], +[0,27674,27675,27676,4139], +[0,2757,32269], +[0,32272,32273,2398,2036,2899,5354], +[0,21738,13230,1676,1739,1745,16284,8623,1179,2036,1383,6706,3430,32275,32277,1209,6807,1783,1283,5354,26096], +[1,2343,27682], +"zone", +"timezone", +"olson", +"iana", +[0,27683,27684,27685,2399], +[0,32281], +[0,3088,3310,1187], +[0,3088,32289,4017,36,5995], +[2,5335,553], +[2,1351,27686], +[2,21289,27687], +"-provider", +[2,2138,27689], +[2,23107,27690], +[2,21289,27691], +[2,21289,553], +"worker-", +[2,27694,10057], +[2,21289,27695], +[3,27687,16], +"extdocument", +[2,27697,27698], +[2,4619,27699], +[3,27700,23], +[2,27701,103], +"vscode-uri", +[1,2343,27721], +"cohaszing", +[2,15276,27705], +[3,25072,11], +"monaco", +"@remcohaszing/eslint", +"remcohaszing", +[2,3996,27710], +"yaml-l", +[2,15675,2995], +[2,27712,27713], +[2,27716,27717], +[3,162,22], +"tegrations-common", +[2,8214,27719], +"-pattern", +[2,10853,11597], +[0,27727,27728,27729,4139], +"monads", +"either", +"maybe", +"result", +[2,1101,1177], +[0,26987], +[0,4874,1414,3167,1894,3985,3998,4505,91,1906], +[0,3167,32300,32301,10381,7131,32303,1936,3987,1783,4549], +"-connect", +[2,1304,27730], +"paginator", +[2,10784,27732], +[1,2343,27736], +"free-swig", +[0,0,0,27741,2537], +"gridfs-stream", +"mongodb-", +[2,3764,57], +[2,27738,27739], +[0,3167,614,6435,1936,10368], +[2,17037,15988], +[2,22785,4408], +"@types/rollup", +"istration", +[2,20897,27745], +"GUI", +[1,2343,27753], +"manage-mongo", +"phpmyadmin", +"UI", +"web-based", +[0,0,0,27754,2399], +[0,3167,614,6435,1936,10381,1213], +[1,2343,27756], +[0,0,27763,27766,2537], +"@mon", +"godb-js/saslprep", +[2,27757,27758], +"-string-url", +[2,21404,27760], +[2,27738,27761], +[0,16268,2228,2272,3220,4720,4535,17565,2296,32324,2283,2253,2273,2281], +"socks", +"snappy", +[0,4576,5131,7310,31568,13735,22856,1388,15525,32334,32336], +"mocha-sinon", +"gcp-metadata", +"legacy", +[1,2343,27783], +"erberos", +[2,13053,27771], +[3,7814,10], +"lprep", +[2,27773,27774], +"v8-heapsnapshot", +[3,27759,12], +"zstd", +[2,27777,27778], +[3,15507,14], +[2,27780,1002], +[2,9415,1435], +[0,27794,27808,27809,2537], +"mongodb-c", +[2,20203,7141], +[2,27784,27785], +[3,1982,16], +"@jimp/js-bmp", +"used-imports", +[2,27787,27789], +[3,13547,28], +[2,27791,591], +"@jimp/js-gif", +[0,16868], +"@jimp/js-jpeg", +"@jimp/js-png", +"@jimp/js-tiff", +"kareem", +"mpath", +"mquery", +"sift", +[2,27804,27811], +"acquit", +[3,24788,12], +"acquit-ignore", +"acquit-", +[2,27806,3209], +[0,1192,1177,4468,1894,91,5087,4874,16874,1895,1011,1009], +[0,32345,32346,1623], +[2,3044,5056], +"-blit", +"odm", +[2,27815,27816], +"datastore", +[3,27802,15], +"ur", +[2,27818,27819], +[3,27802,13], +"circle", +[2,27823,27824], +"-callbacks", +[2,1292,27821], +[3,27817,14], +"olor", +[2,27828,27831], +"node-monitor", +[2,21004,14837], +[3,27820,15], +"probe", +"JMX", +"ntain", +[2,27828,10177], +[2,27823,9970], +[2,27818,27836], +[2,9280,3233], +"displace", +"dashboard", +"monitoring", +"control ", +[2,27839,9872], +[2,27842,27843], +[3,27834,15], +"ther", +[2,27818,27860], +[3,6503,9], +"ngodb", +[2,27845,27846], +"-middleware-cast-ids", +[2,3236,27848], +[3,27849,16], +"fields", +[2,27850,27851], +"-callback", +[2,2034,27853], +[2,27850,27854], +[2,27850,14690], +[2,27850,3766], +[2,9251,21404], +[2,27850,27858], +"fisheye", +"gitbook-cli", +"gitbook-", +"plugin-a", +"nker-enable", +[2,27863,27864], +[2,27862,27865], +[3,27866,15], +[2,5317,4147], +[2,27867,27868], +[2,27876,27877], +"edit-link", +[2,27867,27871], +[2,27867,2195], +[2,27867,588], +[2,27850,1676], +[3,27844,14], +"lip", +[2,27818,3428], +[2,27818,10098], +[2,27818,24171], +[2,27818,27882], +"quantize", +[2,27818,24800], +[2,27885,27886], +[3,27883,14], +"otate", +[2,27818,17487], +"@jimp/utils", +[1,2343,27903], +[2,27891,27892], +"@jimp/co", +"nfig-eslint", +[2,24787,27894], +[3,549,17,16], +[2,27896,1984], +[3,27890,13], +"commist", +"node-self", +"help-me", +[2,1983,27901], +[3,19232,22,6], +"mqtt-packet", +[0,27906,23215,27911,2487], +"-allocator", +[2,6988,27904], +[0,9315,34578,31644,26972,32360,32364,32365], +[2,19332,6706], +"wsl-utils", +"monocart-coverage-reports", +"worker-timers", +[0,1644,1936,6843,11043,18944,18089], +"aedes-cli", +[3,5616,9], +[2,27913,202], +[2,11932,27914], +"leak", +"ed-handles", +[2,27916,27917], +"mqtt-", +[2,27919,21404], +"tinyglobby", +"node-style-text", +"level-store", +[2,27919,27923], +[1,2343,27929], +"/subscribe", +[2,20001,27926], +[2,19177,1783], +[0,0,0,27932,2537], +[2,27931,29682], +[3,218,19], +[0,3561,22147,676,134,89,1623,32372], +[2,26343,27934], +"ibus-quod", +[1,2343,27937], +"@tediousjs/connection-string", +[0,27938,21181,27941,2523], +[0,16837], +"msnodesql", +"tds", +[0,1623,5260,3561], +"node-tds", +"qlserver", +[2,3343,27943], +"msnodesqlv8", +"node-m", +[1,2343,27950], +"node-mssql", +"list-dependents-cli", +[0,0,27951,27952,34352], +[0,53,87,32389,10706,32390,1177,2765,2297,2881,2886,2895,2898,2910,2923,29946,3750,3758,4042,4045,6390,4071,4073,25238,824], +[0,22562,3758,3541,13428,32395,32396,5926,5472,11132,3750,28522,824,30271], +"@bundled-es-modules/cookie", +[3,27953,20], +"until-async", +[1,2343,27965], +[3,546,12], +"nfirm", +[2,27957,27958], +"@types/sta", +"tuses", +[2,27960,27961], +"headers-", +[2,27963,6422], +[0,27970,27971,27972,34352], +[2,8140,14643], +"json-bigint", +"page", +"page-with", +[0,1282,2555,3744], +[0,1389,1391,1437,1700,2323,2351,2404,2494,32402,2530,2541,3159,32405,89,3824,4603], +[0,89,5128,4384,32410,4453,6380,2555,5131], +[1,2343,27974], +[0,27975,27976,27977,4139], +[0,32421,688,28208,691,9712,9296,1091,1092,1437,1458,1543,1676,2226,2687,2822,12284,3173,3422,3423,3467,3742,4135,4183,4213,6479,176,36864,28731,4548,13291], +[0,11976,192,5467,9737,32432,29355,27654,811,8850,816,6373,5245,7637,7746,7812,5254,28736,28557,7677,36874,2675,2931,3297,1890,12285,1894,4042,15277,4494,4507,91,1984], +[0,5592,1118,2210,1745,27662,29370,3422,3452,29369,29365,29368,29367,28360,9591,8124], +"append-field", +[1,2343,27980], +[0,0,27985,27987,2443], +"fs-temp", +"testd", +"ata-w3c-json-form", +[2,27982,27983], +[0,5535,972,5087,4880,4883,34722,1009,1011,1597,1701,1177,1895,1955,1959,1961,2193,32447,1192,32448,3165,30935,32449,1894,89,3824,34725,4201,4468,91,32450], +"formdata", +[0,89,31611,5128,20542,4439,32453,1473,6400,13161,30858,3807,7320,31152,6653,32454], +[1,2343,27989], +[0,27990,27991,27993,2537], +[0,11804], +[0,87,90,4880,1843,1845,1192,3775,3904,4042,4045,4055,4067], +"array-union", +[0,4576,5131,7310,31568,13735,22856,1388,32464,32465,15525,11415,7201], +[3,20454,11], +"oxy-addr", +[1,2343,27997], +[0,0,27998,28000,2537], +[0,192,4874,4880,4883,4887,1009,23648,1177,1895,21564,1938,1953,1955,1958,1959,2675,1192,2990,3165,1894,3720,89,3824,3885,3889], +"pend", +[0,89,7433,38,3884,3885,32473,3286], +[3,32265,24], +"@jsumners/line-reporter", +[1,2343,28005], +"vue-drag", +[0,0,28006,28011,2537], +[0,3421,2832,2297,2899,89,3875,4193,1145,1177,1209,3698,4072,9381,1503,1593,3729,2924,1317,3824,32487,91,53,4874,2900,3876,4880,1195,8821,2925,107,2069,4883,87,4884,1959,3904,32488,966,2904,2881,2912,2895,38299,1011,11470], +"test report", +"html ", +"html report", +" to ", +[0,2062,4162,89,3797,32491,1693], +"json to html", +[1,2343,28014], +[0,0,0,28015,2537], +[0,3857,5131,12295,12296,6574,2090,11328,30045,32497,2636,2295], +[1,2343,28017], +[0,0,28018,28019,2537], +[0,97,4880,5091,89,3857,91], +[0,3857,5128,31912,89,5131,12295,12296,181,15571,35060,32504,158,32505], +[1,2343,28021], +[0,26338,28028,28029,2523], +"tory-reporter", +[2,2916,28022], +"mezr", +"web-a", +"nimations-js", +[2,28025,28026], +[0,1178,1177,1879,1895,1938,1947,1955,1959,1894,32510], +[0,3857,5128,31912,89,5131,12295,181,3730,32516,27819,9906,10036,32527,32529,1478,7521], +"bin-packing", +[1,2343,28032], +[0,28037,28041,28053,2537], +[2,20876,28090], +"autolink-", +[2,28001,26766], +"sqlstring", +[0,1654,32535,1655,1660,3744], +[2,27679,2085], +"urun", +"utest", +[0,32538,10821,14689,10828,32540,1178,1193,38304,1668,1177,1903,1938,1954,1958,1959,32541,1970,2675,1192,2990,1894,3720,89,3857,32510,3904], +[2,28050,28065], +[2,28887,28044], +"v2", +"aws-s", +"sl-profiles", +[2,28045,28046], +"generate-", +[2,28048,3046], +[3,29934,12], +"placeholders", +[2,5773,28051], +[0,3857,5128,31912,89,5131,12295,12296,13814,15480,9816,1653], +[1,2343,28055], +[0,28060,28061,28062,2487], +"assert-diff", +"sync-await", +[2,15907,28057], +"poku", +[0,2018], +[0,5079,1177,21166], +[0,3857,5128,31912,89,5133,5131,12295,12296,181,24633,32543,32552], +[1,2343,28064], +[0,28066,28068,28070,4139], +"vitest-pool-workers", +[0,21174,4649], +"thenify", +[0,32558,48,53,5241,85,87,14128,90,365,370,6372,811,816,6373,972,20562,4880,1178,1193,1610,1177,1895,1935,1939,1958,1959,1961,2126,29945,2193,32559,1192,30935,1894,3720,89,3824,32561,3904,4039,4042,4045,4073,91], +[2,31468,31471], +[0,89,32225,30245,4627,5398,8190,8191], +[1,2343,28077], +"bats", +[2,28075,28493,28553], +"switcher", +"@", +"@prisma/dmmf", +[0,28079,28081,28082,4139], +"gable-next", +[0,32571,31528,1461], +[3,29754,14], +[0,30533,5535,966,968,972,32573,4859,4874,4880,4883,1030,16480,1651,2832,23535,89,3824,4201,1531,4484,91,1984], +[0,89,6398,5066,5131,9320], +[1,2343,28086], +[2,28085,3259], +[3,28092,16], +[0,28087,28089,28096,2399], +[0,4484,32597], +"couchdb", +[0,32632,5535,4201,89,3824], +"spanner", +[2,30534,4675], +"@testcontainers/postgresql", +"fastest-", +[2,28093,18729], +"rtl-css-js", +[0,89,590,1623], +[1,2343,28099], +"iconista", +[0,0,28102,28104,2537], +"pnpm10", +"libreact", +[0,1148,2899,3697], +"jsxstyle", +[0,1623,1473,32453,2585], +[1,2343,28106], +[0,28107,0,7573,2523], +[0,32733,1004,32730,32737,32739,32744,32722,32736,32741,32720,32678,32725,32727], +[1,2343,28109], +[0,0,28110,27147,2523], +[0,53,87,92,192,5467,5583,16952,6373,10615,5087,4874,1009,1011,1031,17584,1178,1193,19839,1540,1610,1177,1903,1938,1954,1958,1988,2193,2675,2742,1192,2780,2990,4039,4042,4076,91,4630], +[2,30495,28112], +"lysia", +[1,2343,28114], +[0,0,28124,24467,4139], +"gitcloud", +"hasbin", +[2,34316,3863,34320], +"page-icon", +"premove", +"@types/hasbin", +"@types/pa", +"ge-icon", +[2,28121,28122], +[0,8144,1465,1584,1628,2092,6327,3177,1894,4028,2278,4111,4469,91,4027,2924,4677,4689], +"desktop", +"@vue-macros/common", +[1,2343,28128], +[0,2513,28129,28131,2537], +[0,5535,4201,968,972,32632,2780], +"proxy-lib", +[0,89,1564,32775,32776,32777], +"font-finder", +"pbxproj-dom", +"montag", +"simple-plist", +"ios-device-lib", +[2,21464,1155], +"proper", +"-light", +[1,2343,28146], +"-lockfile", +[2,28138,28141], +"ios-", +"sim-portable", +[2,28143,28144], +[0,28148,28149,28156,2487], +[2,28457,28462], +[0,32782,4484], +[0,5535,4201,32632,32786,1845,89,3824], +"-merge-patch", +[2,2072,28150], +[3,26989,11], +"ackage", +[2,28152,28153], +"@nativescript/doctor", +[0,32788,89,32789], +"-dev-xcode", +[2,3271,28157], +"provi", +[1,2343,28168], +"sion-finder", +[2,28159,28161], +[2,5131,28162], +[2,28143,28163], +"@rigor789/trapezedev-project", +"@rigor789/", +[2,28166,14562], +[0,28169,28170,28171,2523], +[0,1593,97,32796,32795], +[0,695,3709,2924,1628,91,53,2969,4677,1195,4307,32808,4689,87,4359,4681,92,83,1198,5756,61,78,76], +[0,7201,1676,5131], +[2,32904,364], +[1,2343,28174], +[0,0,28181,28185,2399], +"@types/pl", +"ist", +"@types/plist", +"@types/retry", +[3,5364,9], +[2,28179,3924], +[0,4874,9743,4579,1983], +"@types/pacote", +"btab", +[2,8153,28183], +[0,1983,5130,6731], +[1,2343,28188], +"@types/tunnel", +[0,0,28201,28212,2523], +"@types/xml2js", +"@types/ar", +"chiver", +[2,28190,28191], +"@types/qr", +"-image", +[2,28193,28194], +[3,7810,11], +[2,28196,2138], +[3,13418,17], +[3,5090,11], +[2,32904,4412], +[0,1175,1195,1267,1610,1628,2092,3342,8119,4111,32821,4307,188,4634,4639,4640,4645,2924,4681], +"er-lockfile", +[2,28199,28202], +"@types/np", +"mcli__arborist", +[2,28204,28205], +[3,9315,10], +[2,9710,15774], +"al-analytics", +[2,9788,28209], +[2,28207,28210], +[0,9006,29633,32827,32828,32829,32830,32831,4967,32832], +[1,2343,28216], +[2,31819,31823], +[3,27933,13], +[0,28217,0,27026,4139], +[0,1415,1842,31290,31331,4562,31386,6330], +[1,2343,28226], +"afinn-165", +"-fin", +"ancialmarketnews", +[2,28220,28221], +[2,28219,28222], +"apparatus", +"memjs", +[0,0,28227,28250,2523], +[0,48,53,61,78,87,92,5601,32840,5087,4874,15600,1009,1011,1175,1193,1198,1177,1881,1895,1938,1955,1192,11948,1894,4131,91], +"stopwords-iso", +"@libsql/client", +"wordnet-db", +[2,31005,26449,28684], +"browserfs", +[2,2441,20008], +"pegjs", +"uubench", +[2,32904,2942], +" language processing", +[2,3273,28237], +"arti", +"fical intelligence", +[2,28239,28240], +"Porter stemmer", +"Lancaster stemmer", +"bigram", +"trigram", +"quadgram", +"ngram", +"stemmer", +"bayes", +[0,1192,2022,6703,1149,7003,1862,11857,5472,2275], +"classifier", +[1,2343,28254], +"phonetic", +[0,28255,28257,28259,2523], +[0,28502,4130], +"metaphone", +[0,23689,28556,2323,31190,2765,3560,31541,91], +"inflector", +[0,5472,11132,13841,28522,13426], +"Wordnet", +"tf-idf", +"logi", +" regression", +[2,17132,28263], +[2,28262,28264], +[2,4420,28256], +"jaro-winkler distance", +" distance", +[2,26006,28268], +"string ", +[2,28270,26017], +"-of-speech tagger", +[2,3251,28272], +"Eric Brill", +"Brill tagger", +" analysis", +[2,4137,28276], +"maxim", +"um entropy modelling", +[2,28278,28279], +[1,2343,28284], +"@mrleebo/prisma-ast", +[2,31733,21302], +[0,28292,28293,28294,2537], +"secure-keys", +[2,28288,6008], +"nconf-yaml", +"@prisma/c", +"key value store", +[2,18124,13729], +"plugabble", +[0,1086,1437,1700,2070,2714,3183,3760,705,4039,4135,4734], +[0,13194,7740,28197,4865,29105,23689,9129,7892,4874,11304,16936,20959,28502,5254,28189,28556,2323,31190,2765,4089,4130,91], +[0,1098,1973,5472,3750,11132,13841,28522,4130], +[1,2343,28296], +[0,9756,9839,28297,2537], +[0,1871,6843,3656,4289,7062,6922,6981,6701,6581,6700,1111,1867,5281,200,6876,7009,7201,6575,6611,6795,6960,7135], +[1,2343,28299], +[0,7558,28300,28301,2523], +[0,4874,668,32894,2929,32895,91,4579], +[0,32901,23542,5130,23543,6812,27,5592], +[1,2343,28305], +"near social", +"bridge", +[0,28306,0,28307,4139], +[0,2856,32889,2822,5307], +[0,29699,32891,1541,1745,29703,29753], +[1,2343,28311], +[3,18018,14], +[2,28309,1633], +[0,0,28313,28315,2487], +"exec-time", +[0,1429,4856,4874,32903], +"@lit/context", +[0,32910,37123,32911,32912,32913,13428,5472,6533], +[1,2343,28317], +[0,28318,0,26863,2399], +[0,32918,32919,1699,3547], +[1,2343,28320], +[0,6263,0,28321,2523], +[0,89,5128,9267,553], +"@codspeed/", +"payload", +"@fig/complete-commander", +"@golevelup/nestjs-discovery", +"xhr2-cookies", +[2,30999,30499], +[1,2343,28330], +[2,28338,28349,28603], +[0,26964,0,26997,2537], +"@postman/tough-cookie", +[2,15679,19490], +"chardet", +[1,2343,28337], +"liquid-json", +"postma", +[0,26964,0,27001,2487], +"@interna", +"n-collection", +[2,28336,28339], +"-transformer", +[2,28340,28341], +"postman-", +[2,28343,705], +"postman-r", +[2,28345,96], +"d-error", +[2,14628,28347], +"tionaliz", +"@postman/", +[1,2343,28359], +"shipit", +[2,28350,28352], +[2,29833,17978], +"file_lint", +[2,17878,28355], +"parse-git", +[2,28357,2687], +[0,28364,28381,28409,2537], +"postman", +[2,178,28363], +"rest-client", +"rack-changes", +[0,32953,25996], +"@profoundlogic/hogan", +[3,2665,10], +"@grpc/grpc-js", +"@grpc/", +"print-sizes", +"proto-loader", +[2,28368,28370], +"@newrelic/security-agent", +"@tyriar/fibonacci-heap", +"in-the-middle", +[2,2701,28374], +"module-de", +"s-from-path", +[2,4378,28377], +[2,28376,28378], +[2,4013,28374], +[0,13662,1389,35268,4389], +"@aws-sdk/s", +"3-request-presigner", +[2,28382,28383], +"@koa/router", +"@newrelic/", +[2,28386,7625], +"-oss-cli", +[2,3284,28388], +[2,28386,28389], +"test-util", +"ities", +[2,28391,28392], +[2,28386,28393], +"@slack/bolt", +"@smithy/eventstream-codec", +"@smithy/", +"util-utf8", +[2,28397,28398], +"borp", +[2,16306,20353], +[3,4962,10], +"iler-runtime", +"git-r", +"aw-commits", +[2,28404,28405], +"CKEditor", +"self-cert", +[0,7518,5398,17819,18266,32958,12075,32960,4967,1389], +[1,2343,28412], +"debugging", +[0,28414,28424,28430,2537], +"profiling", +[0,32980,32981,32983,32984,32986,1398,1437,1443,1759,1763,2018,2071,37853,2182,2212,2687,2720,17450,2856,32987,32988,9478,3729,4135,4164,4400,91,32990,32993,32989], +"unlimited-timeout", +"WYSIWYG", +"WYSIWYW", +"@panva/hkdf", +"id-client", +[2,3445,28419], +"-to-string", +[2,694,28421], +[2,3698,28422], +[0,188,32996,32997,33004,33007], +"@types/oauth", +[2,4874,3360], +"@next", +"is-in-ssh", +"powershell-utils", +[0,32940,33010,5130], +[1,2343,28437], +[3,13983,14], +[2,28432,89], +"-pragmatic", +[2,13062,28434], +"@edge-runtime/jest-environment", +[0,28447,28448,28449,34352], +"oauth2", +"nextauth", +"seneca-transport", +[2,36883,28443], +"rich-text", +"astify", +"async ", +[2,28444,1852], +[2,28444,5746], +[0,97,33015], +[0,1192,2278,2675,89,1843,1177,2924,1894,1610,3824,48,1628,3988,91,53,2990,3400,4111,4677,4880,1195,4307,33020,33021,9310,28809,10837,87,11011,90,1959,827,33023,1895,1947,1955,2780,92,10821,29872,10840,1011,10825,83,1009,32341,28970], +[0,89,4627,26612,35126,33026,5131,29832,91,33027,33033], +"grammy", +[1,2343,28463], +"qs-esm", +"TestBed", +"how-to", +"@scripts/build", +[2,28573,553], +[3,14691,18], +[2,32700,28478], +[2,12392,1098], +"dataloader", +"bson-objectid", +"nboarding", +[0,28481,28492,2514,2537], +"render-jsx", +"@rolldown/pluginutils", +[2,28472,1973], +"localhost", +"tunneling", +"webhook", +[2,28471,28596], +[3,37983,14], +[3,34476,19], +[2,16639,15112,28475], +"onesy", +"hecker", +[2,16639,28477], +"vitest-runner", +"grab", +[2,28489,28490], +"deep-defaults", +[0,1437,1483,1525,3127,14774,4135,33043], +[2,10740,28487], +"enqueue", +[2,14185,4225], +"minstache", +"sliced", +"table-printer", +[2,3192,5701], +[3,30527,35], +"collisions", +"@rstest/core", +[0,8147,33046,4874,5254,33047], +[2,28508,28526], +"@nightwatch/chai", +[3,28494,12], +[3,2791,13], +[2,28496,2324], +[2,28495,28497], +[2,3294,11496], +[2,28495,28499], +"lenium-webdriver", +[2,5252,28501], +[2,1432,3294], +[2,11097,20500], +"didyoumean", +[3,28499,11], +"@amaui/ui-react", +[3,5069,14], +"axe-verbose", +[2,28506,28509], +[3,17011,11], +[2,28511,57], +[3,31827,17,5], +[2,4925,4381], +[3,28514,12], +[2,11937,16609], +[2,28515,28516], +"@payloadcms/translations", +"wait-on", +[1,2343,28527], +[2,3294,676], +"selenium", +"automat", +"ed-testing", +[2,28523,28524], +"acos", +[0,28528,28529,2514,2537], +[0,35198,4763,1497,1687,33057,4361,1983,1082,1371,1676,9348,12449,977,1636,11480,3958,4135,11501,1458,11478,668,33058,28564,2822,6042,3479,3742,29535,33059,26379,4955,33149,3530,25648,4542,28623,33061,11869,27921,5732,33062,2628,3090,4748,2007,33063,19639,7610,37014,33064,4555,33065,33068,29533,33069,10895,5210,9485,33070,33071,3749,33074,33075], +[0,23813,2278,4042,4548,1984,1448,4549,33080,30138,33082,91,12396,2024,3975,5245,33390,30559,5254,33083,34673,7637,7812,12127,3327,8648,20374,11868,23312,33084,7744,21626,3963,33087,33088], +[1,2343,28536], +[2,28532,28547], +[3,11555,18], +"text-", +[2,28533,9254], +[2,11122,28534], +[0,28538,0,2514,2523], +[3,11138,16], +[0,1506,33093,3460,4535], +"mochify", +[3,4887,19], +"-universal", +[2,3752,28541], +[2,3752,1289], +"@backstage/backend-common", +[1,2343,28546], +[0,28548,28549,28551,2399], +"owellformed", +[0,1512,2151,2720], +[0,1177,1939,1192], +"propagate", +[0,8310,1179,8635,200,28582], +[1,2343,28555], +[3,31893,18,13], +[2,12302,28732], +[0,0,28560,28561,2399], +"clang-format", +[2,23260,28729], +"n-api", +"napi", +[0,811,816,1437,1836,1177,1895,1938,33110,14282,2674,2675,2990,2899,6041,1894,4039,4042,4055,33111,4232,4390,11482], +[0,4989,1283,3358], +[1,2343,28563], +[0,0,28571,2514,4139], +"fontace", +[2,14743,4504], +"ffee", +[2,2251,28566], +"grunt-i", +[2,2426,2499], +[2,28568,28569], +[0,1009,1011,1177,1883,1895,1915,1938,1947,1955,1959,1961,2675,2990,1894,89,91], +"baseline-browser-mapping", +[3,4090,11], +[2,28606,8734], +"host-validation-middleware", +[2,16826,5260], +[2,14614,28576], +"used-de", +"ps-analyzer", +[2,28578,28579], +"@4c/rollout", +"skeleton", +"formate", +[1,2343,28587], +[2,5559,27], +[2,28689,89], +[0,28597,28600,28601,2537], +"dynamic-", +[2,28588,1681], +"filewatcher", +[2,28914,594], +"xunit", +"tap-xunit", +"nextjs-api-reference", +[2,30999,28884], +"l", +[0,33139], +[2,31222,31227,31234], +"subdir", +[0,6503,1699,2899], +[0,5122,1973,8791,33143,2899,5130], +[1,2343,28609], +"ed/date", +"char-regex", +"emojilib", +"@scripts/", +[2,28616,6988], +"skin-tone", +[0,0,28621,28622,2537], +"s-per-line", +[2,16233,28610], +"cspell-config-lib", +"emojis", +"smiley", +"smileys", +[3,28329,19], +"smilies", +"ideogram", +"ideograms", +"@nuxt/fonts", +[0,5535,5087,1009,1011,33175,25917,35358,1473,1177,1895,1955,2070,1192,1894,4042,4073,4076,4201,4443,4468,4474,4484,91], +[0,1473,57,6270,4439,32453,6616,30289,33190,30291,620,33201,31453,1623,33203,6653,33205,33207,3178,33216], +"unstorage", +"fetch-blob", +"ttypescript", +[2,1432,7253], +"nsumers", +[2,25687,28627], +"jsdoc-to-mdx", +[1,2343,28633], +"@nuxt/icon", +"@nuxt/kit", +[0,5914,28661,28662,2487], +"igitalbazaar", +[2,27235,28634], +[2,19946,2903], +"-websocket", +[2,6710,28637], +[2,27694,1194], +[2,28660,32819], +"aes", +"asn", +"asn.1", +"cbc", +"csr", +"des", +"gcm", +"hmac", +"pkcs", +"pki", +"prng", +"rc2", +"rsa", +"sha256", +"sha384", +"sha512", +"tls", +"x.509", +"x509", +[3,218,21], +[0,30533,192,5467,30535,10614,6494,5087,4874,1009,1011,1177,1895,2675,1192,1894,3980,4468,91], +[0,30538,6710,14584,91,30540,30543,5130,29752], +[1,2343,28665], +"seneca-joi", +[0,26964,0,26966,4139], +"c2dm", +"fcm", +[1,2343,28669], +[0,28670,28671,28682,4139], +[0,33071,30616,26407,26411,12396,7637,9363,26414,26415,23276,2577,2584,2588,2681,2822,37507,3090,26418,26568,12429,26421,3958,9393,12443,4542,4549,4555,12449], +[0,8648,4874,7677,34683,26431,1984], +"@nuxt/schema", +"@nuxtjs/color-mode", +"geocoder", +"pulse", +"geocoding", +"geo", +"mapquest", +"agol", +"arcgis", +"tomtom", +[0,1739,1745,34683,26440,26445], +[1,2343,28695], +"libsql", +[2,28694,176], +[3,5781,10], +"l-backoff", +[2,28686,28687], +[3,21276,15], +"require-in", +[2,28690,2429], +"piña", +"pigna", +[3,30585,14], +[0,28696,28697,28662,2537], +[0,2026,3951], +[0,30533,192,5467,1300,30535,10614,6494,5087,4874,1009,1011,1177,1895,2675,1192,1894,3980,4468,91], +"high5", +[2,12075,57], +[1,2343,28705], +"js-parser", +[2,1936,28701], +"-benchmark", +[2,15512,28703], +[0,28730,28750,28758,2537], +"mocha-each", +"neutron-html5parser", +"ookmark", +"colortranslator", +[2,15277,12610], +[2,28712,28725], +[3,10130,17], +"biased-opener", +"data-uri", +[2,25894,28714], +"v8-debug", +"v8-profiler", +[2,28742,28749], +[2,28720,28721], +[3,32265,26], +"ble", +[2,28723,7059], +[3,12133,21], +"vitest-browser-react", +"ber-animation", +"dummy", +[2,23814,28898], +"http mock", +"zipper", +[0,3951,4474], +"toposort", +"quality-insights", +"growly", +"words", +"shellwords", +[2,28738,28741], +"nexe", +"@types/to", +" center", +[2,9044,28739], +"posort", +[3,26699,15], +"mac os x 10.8", +[2,4402,3329], +"windows ", +"8 notification", +[2,28745,28746], +"toaster", +"auto-height", +[0,192,5467,10614,6494,5087,4874,1009,1011,1437,1177,1895,2675,1192,1894,3980,4468,91], +"tabbable", +[2,8180,594], +[2,29518,28757], +"@radix-ui/react-checkbox", +[2,28756,45], +[3,28754,16], +"vfs", +[0,30538,6710,91,30540,30543,5130,29752,5995,6082], +[1,2343,28760], +[0,26964,0,26966,2537], +[2,28762,9006], +[3,28718,20], +[2,3958,28764], +[3,26414,16,5], +[1,2343,28767], +"@internal/test-utils", +[0,26964,0,26997,2443], +"ps-list", +"code-blocks", +"pty", +[2,6426,7009], +"forkpty", +"openpty", +[1,2343,28787], +[2,28776,28777], +"expressi", +"ve-code", +"@node", +[2,9057,3642], +[2,28793,28798], +"-red/util", +[2,28778,28781], +[2,3341,2110], +"@node-red/", +"nodes", +[2,28784,28785], +[0,25316,28788,28796,2537], +[0,603,11018], +[2,216,28812], +[2,28784,7047], +"editor-api", +[2,28784,28791], +[3,28718,19], +"iot", +"fix-dts-default-cjs-exports", +[0,188,4646,1542,32977,28692,28693,32312,5592,18496,5490,91,4799,998,6953], +[2,28826,16860], +"play", +"sass-graph", +[2,1152,14741], +"stdout-st", +[2,28801,2187], +"-case-path", +[2,4938,28803], +[2,28742,28875], +[2,4550,13786], +"@jsopen/objects", +[1,2343,28810], +[2,34443,25240], +[0,28819,28820,5893,2523], +"modern.js", +"alpha-function", +"long-timeout", +"sorted-", +[2,20096,20835], +[2,28814,28815], +[2,30633,30886,31217], +[3,1419,11], +[0,28751,444,28752], +[0,90,28754,28755,968,972,974,4880,4883,1030,1497,89,3824,3882,3885,4023,8187,28724,1541], +"recurrent", +[1,2343,28823], +[0,28824,28825,28828,4139], +[0,28763], +[0,34683,2020,28766], +"unplugin-", +"deepcopy-esm", +[0,26445,28769,1745,28775,9348,28779,26440], +[2,9357,28832], +[2,28831,30581], +[3,12447,17], +"-convert", +[1,2343,28834], +[0,0,0,28835,2523], +[0,30999,28818,5995], +[1,2343,28839], +"fs.watch", +"watchfile", +[0,28840,28841,28848,34352], +[0,28775], +[0,9363,9315,23312,3978,3992,3999,9348,4549,12449,28766], +"stories", +[2,819,664,33355], +"ngn", +"daemon", +" logging", +[2,2013,28846], +[0,28769,1745,28775,9348,28779], +"elevate", +"sudo", +[1,2343,28852], +[0,28864,28867,28870,4139], +"store2", +[2,28855,7625], +[3,28518,12], +"@mgcrea/eslint-config-node", +"-lts", +[2,19439,28857], +"node-ipc", +"excel", +"xls", +"zeptomatch", +"picoquery", +[0,2121,2127,1690,2024,4507], +"rolldown", +"amaui", +[0,28470,2180,5476,5478,1414,2198,91], +" extend", +[2,6970,28868], +[0,2313,1383,614,202,1388,5995,4967,1145,1973,1429,2340,2350], +[1,2343,28886], +[2,13402,2942], +[2,28874,8817], +"@appium/s", +"class-names", +"firefoxos", +"combyne", +"for-publish", +[2,1463,28878], +[2,31228,14372], +"libgit2", +"git2", +[2,28742,26542], +[3,31782,22,5], +"vendors", +[0,0,28888,28889,2523], +[2,9191,3595], +[0,1330,1389,1596,2759,2899,4170,4535], +[0,20215,4741,2574,36796,6847,1965,1867,10368,7131,1155,1936,1623,14419,37953], +"libbase64", +"libmime", +"libqp", +"ntlm-auth", +[2,26444,28893], +[2,13857,9224], +[2,28742,188], +"Nodemailer", +"hun-ky", +[2,32723,28900], +"hex-color", +[2,28902,28905], +[3,28899,21], +"undefsafe", +"pstree.remy", +"sl-color", +[2,32723,28907], +"rgb-color", +"autoload", +[2,31281,4202], +[2,819,45], +[2,28742,28916], +[2,6097,6142], +[2,15701,28915], +[3,693,10], +"vision-history", +"wheel-gestures", +"multimeter", +[1,2343,28975], +[2,30211,30221], +"@asamuzakjp/css-color", +"node-webkit", +"drc", +"lz4", +"potx", +"xltx", +"dotx", +"async-redis", +"ipfilter", +[2,2032,28928], +"express-ws", +"xltm", +"ots", +"json-logic-js", +"json-sql", +[2,7060,1146], +"line-reader", +"mocker", +"-data-", +[2,28938,1179], +[2,28937,28939], +"pino-pretty", +"odg", +"otg", +"promise-mysql", +"stjs", +"otp", +"ott", +"uuid-random", +"docm", +"nolang", +"Programming", +"programm", +"ing language", +[2,28952,28953], +"dotm", +"descriptive", +"5GL", +"potm", +"json schema", +"Mehdi Salartayefeh", +"pptm", +[2,8293,200], +[2,8293,3561], +"knitwork", +[2,28968,28969], +" parser", +[2,5675,28966], +"esbuild-re", +"act-compiler-plugin", +[2,28971,1172], +[3,29874,35], +[2,28973,4298], +[3,5240,29], +"ohash", +[0,28989,0,28990,2523], +"admin-panel", +"absolute", +"backslash", +"delimiter", +"file-path", +"forward", +"slashes", +"trailing", +"unix", +"urix", +"headless-cms", +[2,1917,11597], +[2,819,3877,29320], +[0,28507], +[0,45,29,36246,89,4967,6400,5995,10768,5122,1388,5284,676,91,202,6710,6082,28866,594], +"normaliz", +[2,28991,5218], +"normali", +[2,28993,6079], +[1,2343,28998], +"simplify", +"canonical", +[0,29046,0,29047,34352], +[2,29171,594], +"lit-analyzer", +[2,32700,29003], +"mouse", +"attract", +"mouse wheel", +[2,29006,29007], +[3,26450,35], +"ubble", +[2,32700,1544], +[2,29010,29011], +[3,31198,35], +"ause", +[2,32700,34141], +"escape-goat", +[3,9577,11], +"from-git", +[2,29014,29015], +"teractive", +[2,20043,29017], +[2,28489,29003], +"is-scoped", +[2,29027,29029], +"issue-regex", +"listr-input", +"new-github-release-url", +"npm-name", +"p-memoize", +[3,32722,21], +"map-obj", +"asing-quad", +"write-package", +[2,32731,3924], +[2,29033,4390], +[3,26495,20], +[2,29035,29036], +[3,28909,22], +"troke-color", +"is-cidr", +"ts-lit-plugin", +"libnpmorg", +[2,33533,29041], +"ormatjs", +"libnpmpack", +[3,29818,15], +"libnpmteam", +"MDX", +[0,28872,28873,13411,4507], +[0,13428,5284,28522,11132,12295,12296,28876,5472], +"fs-m", +"reka-ui", +[2,37399,29156], +"fs-minipass", +[1,2343,29064], +"npm-profile", +[2,2977,7193], +"@sigstore/tuf", +[2,2977,15525], +[2,636,1541], +"audit-report", +[2,3382,29058], +"-pipeline", +[2,21505,29060], +[2,4570,2649], +[2,3382,29062], +[0,26871,0,26863,2399], +"relative-date", +[2,11072,29065], +[2,28093,26006], +[1,2343,29074], +[2,636,3358], +[2,636,1739], +"@tufjs/repo-mock", +[3,26037,13], +[2,29072,2203], +[0,29075,0,7573,2537], +[0,1004,31231,32914,28909,31262,31272,28899,28901,28906,31282], +"-draft2019", +[2,1092,29076], +[1,2343,29119], +[2,29080,29081], +[3,23075,14], +"rrect-media-syntax", +[2,29089,29090], +"-record", +[2,17495,29083], +"giturl", +"nfig-loader", +[2,18323,29086], +"semver-diff", +[3,32593,24], +"ort", +[2,29092,29094], +[3,32686,13], +"outdated", +"dx-jsx-attribute-sort", +"updating", +"updater", +[2,29098,29099], +[3,29091,20], +"no-void-children", +[2,29098,29107,29118], +"@trivago/prettier-plugin-sort-imports", +[3,27782,13], +[2,29102,8961], +[2,13197,176], +"@types/ini", +[3,8141,13], +"quote-st", +"helpfulerror", +[2,16476,29108], +[2,29106,29109], +[2,7726,27005], +"@types/npm", +"-registry-", +[2,29113,1612], +[2,29112,29114], +[3,16478,13], +[2,29116,13722], +"yle", +[0,0,0,29163,2537], +[2,2645,89], +[3,6544,14], +[2,29121,594], +"pdate-", +[2,29123,3329], +[2,7817,29124], +[3,1898,15], +"aine", +[2,29126,29127], +"fp-and-or", +[3,9506,11], +[2,117,29153,29494], +[2,29098,29134,29135], +"jsonlines", +"self-clos", +"e", +"prompts-ncu", +"postcss-clean", +[2,25813,594], +[2,4524,2845], +"verdaccio", +[2,8551,4675], +"vite-node", +[2,29145,29146], +"upgrade", +[3,29132,21], +"horthand-attribute", +[2,29098,29148], +"unique-attribute-name", +[2,29092,29150], +"edia-style", +[2,32704,29152], +"idden-table-cell", +[3,6138,9], +[2,7686,4692], +[2,22060,3122], +"variants", +"ypescript-tc", +[2,22060,29157], +[3,17312,29], +[2,29159,12844], +"unplugin", +"auditor", +[0,45,29,36246,89,4967,6400,5995,10768,5122,1388,5284,676,91,202,6710,6082,28474,594], +[1,2343,29167], +[2,28826,29166], +"auto-import", +[0,26964,0,26966,2487], +"variadic-function-arguments", +"mutate-fs", +"@publint/pack", +[3,1014,15], +[1,2343,29173], +[0,29177,0,21958,2537], +"minizlib", +"minipass-", +[2,29175,1612], +[0,4729,2070,31705,4747,4135,1862,1301,1525,2731,4116,1109,1193,31856,3145,4705,31859,3717,3878,1079,31861,28512,31864,24169,3957,31867,2784,31871,31877,31880,31884,31891,21129,31896,28073], +"fast-equals", +"registry", +[1,2343,29199], +"autodocs", +[2,31092,3452], +"@pm2/blessed", +"padend", +[2,18996,29184], +[2,29189,27863,20181], +"ysticatea", +[2,16693,29187], +[3,28544,19], +"commandline", +"npm-scripts", +[2,29193,1541], +[3,28544,11], +[2,29193,11857], +[2,29196,29198], +[3,31303,12], +"neostandard", +"ise-router", +[0,29216,0,7573,2399], +[2,29189,11017], +[2,29202,29203], +[3,29192,12], +"atalog-model", +[2,29202,25240], +[2,29193,13224,29206], +"atalog-common", +[2,29209,202], +[2,28270,6270], +[3,29205,26], +"yarn to npm", +"@daybrush/jsdoc", +"backstage", +"ci/cd", +"immobiliare", +[2,29214,12825], +[0,28880,1004,29031,29032,31244,1418,26495,32926,26483,26489,32934,29021,29034,28458,31198,29012,29009,26450,29005,26482,30527,29001,29008,1445,29019,28479], +[1,2343,29221], +"npm upgrade", +[2,28826,10309], +"vaul-vue", +[0,29223,29225,26824,2523], +"rgv", +[0,4484,29755], +[2,1262,25816], +[0,89,1177,4039,4042,1894,3824,91,4874,4880,3884,4883,3885,28540,8656,8660,4887,10817,1011,1009], +[2,34674,588], +"npm-cli", +[2,29229,29303], +"@hyrious/esbuild", +[1,2343,29232], +"ntainer", +[0,29256,29257,29258,34352], +[2,26109,28923], +[3,28200,13], +[2,29240,29249], +"@cropper/", +"are-", +"we-there-yet", +[2,29237,29238], +[3,10309,13], +"image-cropping", +[2,29243,3642], +"image-view", +"image-processing", +"cropper-element", +"mocha-jsdom", +[3,31831,14], +[3,5926,13], +"-type-helpers", +[2,29254,29255], +"cvss", +"-npm-utils", +[2,19773,29252], +[3,3978,9], +"arry-night", +[0,29186,29192,29194,1364,2026,29195,2664,4709,4757], +[0,29200,29201,29204,29205,29207,6494,9240,3244,4342], +[0,29212,17978,29213,29214,29215,5995], +"@asteasolutions/zod-to-openapi", +"gluegun", +"@trpc/server", +[2,17612,29264], +"nuke", +"custom-alias", +[2,4026,29266], +"tspaths", +"@nuxt/eslint-config", +"event-driven", +"money", +"blaze", +"percentage", +[1,2343,29274], +[2,8293,1983], +[0,26964,0,26997,2523], +[1,2343,29278], +"a-sync-waterfall", +"asap", +[0,0,29286,29287,2537], +[2,3522,364], +[2,3192,29279], +[3,29280,16], +[2,29281,2759], +[2,5223,8861], +"s-browser", +[2,19390,29284], +[0,1148,2899], +[0,26257,1111,1473,7208,1437,1623,32453,6616,29222], +[3,26364,17], +[1,2343,29296], +"@nuxt/module-builder", +[2,18124,2844], +"@4c/tsconfig", +"@react-bootstrap/babel-preset", +[2,29344,7625], +"@nuxt/test-utils", +[0,29298,29302,29329,2399], +"jsonpathly", +[0,7387], +[2,29301,29538], +"css4", +[3,5782,27], +[0,4874,4880,4883,1030,3286,89,3824,1983,26744,1984,11039], +[3,4055,16,6], +[3,26699,14], +"achine-id", +[2,27946,29305], +"parsers", +[2,15904,29307], +"@zkochan/js-yaml", +[2,15904,6698], +[3,17944,18], +"-and-columns", +[2,27005,29312], +"@napi-rs/", +"graphQL", +"wasm-runtime", +[2,29314,29316], +"telejson", +"Mobile", +"nderer", +[2,25806,14029], +"@whatwg-node/promise-helpers", +[2,29326,29332], +[2,20164,22156], +[2,11936,1564], +[3,9250,19], +"processinfo", +[2,11936,29327], +[0,5592,1745,23803,3287,3452,8124], +"node-preload", +"process-", +"nuxt", +"on-spawn", +[2,29331,29333], +"spawn-wrap", +"css library", +[1,2343,29353], +"any-path", +[2,29340,29341], +[3,132,10], +"local-node-rig", +"jsdoc-fresh", +"jsdoc-region-tag", +[3,29293,17], +"nuxt-ui", +"ui-framework", +"undefined-", +[2,29347,15400], +[2,8302,29348], +[2,29383,29384], +"@readme/", +"example", +[0,29363,0,29472,2523], +"oas-examples", +[2,29351,29354], +"@readme/o", +"penapi-parser", +[2,29356,29357], +[2,8818,5940], +"@types/me", +"moizee", +[2,29360,29361], +[0,2817,18023,1532,31802], +" initiative", +[2,3452,29364], +"openapi ", +[2,29366,10658], +[3,29367,12], +[2,29366,1746], +"oai", +"@eslint/css", +"print-coveralls", +"ts-mock-imports", +"egjs-jsdoc-template", +"to-openapi", +[2,28343,29375], +[2,29351,29376], +"@egjs/release-helper", +[3,20227,14], +[2,29379,8125], +[2,5290,29382], +"-plugins", +[3,25931,14], +"quis-saepe-velit", +"@renyii/vue-renderless", +[2,31525,29391], +"andom-function", +[2,30713,29397], +"@teamteanpm2024/aperiam-fugit-error", +"prollyfill", +"ize-observer-browser", +[2,19965,29393], +"-es6-transform", +[2,29418,29475], +"ec", +"gulp-exec", +"ign-functions", +[2,29399,29400], +[3,27720,16], +"ototype-minify", +"@vercel/ru", +"@pkg", +"js/support", +[2,29402,29403], +"flicking", +"globalthis", +[2,29408,26274,29411], +[3,29389,17], +"ostringtag", +[2,17422,29409], +"alias-quod", +"egjs", +"-upgrade", +[2,29408,29415], +"ut-voluptatum-vero", +"indexof", +[3,26699,20], +[3,29389,16], +"@loki/integration-react", +[3,31032,17], +"@modelcontextprotocol/sdk", +"@mar", +"iocasciaro/benchpress", +[2,29422,29423], +[2,31009,16609,18756], +"bean", +[2,31550,29430], +"notation", +"segment", +" upgrade", +[2,29438,7031], +[2,29418,29433,29434], +"effective-octo", +[3,246,18,8], +[2,29436,29437,29439], +[3,29432,17], +"xpedita-", +[3,805,9], +"labore-ipsum", +"es-object-atoms", +[2,29419,4009], +"mentoss", +"@ucast/mongo2js", +[2,28865,6324,4056], +"unconfig", +"permissions", +"abac", +[2,29418,29449], +"odio-fugiat-in", +"ee-first", +"rbac", +"ibac", +"cancan", +[2,29487,188], +"@sxzz/eslint-config", +"wrappy", +"quick-lru", +[2,29459,29620], +"@sxzz", +[2,29418,28215,27463,29461], +"odit", +"@blakeembrey/deque", +[3,29462,13], +[2,29463,1283], +"@sxzz/test-utils", +"@unocss/eslint-plugin", +[3,4949,17,10], +[2,160,1554], +"unocss", +"unplugin-unused", +[2,30209,28945], +[0,30999,28818,5995,17977], +[1,2343,29484], +"epoll", +"beatae-aliquid-id", +[2,23240,3209], +"@zibuthe7j11/deserunt-quasi-impedit", +"gpio", +[3,7033,9], +"raspi", +"beaglebone", +"-black", +[2,29481,29482], +[0,0,29485,29491,2537], +[0,19325,1414,1894,3985,3998,4039,4389,4505,91,1906], +"llms", +[3,29419,18], +[2,10441,20008], +"lazy-prop", +[2,27542,29489], +[0,1623,1936,965,5122,12344,34050,3665,22145], +[2,29294,1892], +[2,35506,15215], +"s-compressor", +[2,29628,29629], +[1,2343,29497], +[0,29498,29499,29516,2399], +[0,2611,4763], +[0,29259,192,5467,23531,29261,4865,4874,1009,1011,10417,668,1177,1881,1895,29262,1915,1938,1955,2070,2675,2990,1894,29265,4039,4480,4494,91], +[2,33343,1640], +"bath-es5", +"dere", +"ference-", +[2,29503,2845], +[2,29502,29504], +[2,29510,29513], +"-adapter", +[2,2085,29507], +[2,1170,29508], +[3,10065,15], +"deref-sync", +[2,7526,29511], +"ooks", +"fetch-retry", +[2,29112,3073], +[0,2611,5995,29268,29270,5130,24090], +"@base-ui-components/react", +[3,32804,12], +"docz", +"docz-utils", +"open api", +"docz-theme-default", +[1,2343,29526], +"aws-sdk-client-mock", +[2,32539,200], +[0,29541,29547,29516,2537], +[3,26032,12], +"computer", +[2,29530,29532], +[3,25758,18], +"quadrocopter", +"m-sint-necessitatibus-possimus", +[2,29534,15050], +[3,33156,12], +"unifont", +[2,29627,29631], +"cupertino-pane", +"licit-resource-management", +"countrynames", +"kill-port", +[0,1457,1491], +[2,15713,10050], +[2,28397,553], +"@testcafe/publish-please", +"aws-lambda", +"eruda", +[0,1138,4494,2070,2675,1177,4039,668,1894,91,4865,4874,2990,29261,4480,192,29265,1938,10417,1895,1955,1011,1881,5467,1009,1915,29262], +[1,2343,29562], +"nano-staged", +"elapsed-time-logger", +"hashish", +"gulp-open", +[2,4807,3864], +"cupertino", +"pane", +"slide", +"-call", +[2,29557,4408], +[2,6606,29558], +"fasteejs", +"ua-is-frozen", +[0,29570,29578,29612,2487], +[3,26032,13], +[2,29609,12835], +[2,29573,6802], +"prelude-ls", +"deep-is", +"astro-auto-import", +"livescript", +[0,4729,1091,4494,12105,3533,3348,1410,1606,28452,4548,1458,3183,33145,1699,2096,11993,3547,28460,2689,2668,28941,2191,3781,36687,28461,36123,3509,4108,28482,28518,26696], +[3,28967,11], +[2,29571,3642], +"country-", +"@pouchlab/ui", +[2,29573,1460], +[2,29573,7285,2669], +"-dis", +[0,4164,4039,4042,668,9241,1587,1610,7819,28585,7892,12461,3813,28426,4057,8818,31727,28586,28854,29228], +"ppsx", +"-discarder", +[2,2184,29580], +"chai-jquery", +[2,1221,6621], +"corejs-typeahead", +"doiuse", +"gulp-add-src", +[2,2352,29588], +"-bust", +"gulp-check-deps", +"sequencify", +[3,28628,14], +[2,2504,29687], +"gulp4-run-sequence", +"is-empty-object", +"motion-ui", +"sassy-lists", +[2,22109,29598], +"-forward-reference", +"vinyl-named", +"sql-ddl-sync", +"sql-query", +[2,29611,29625], +[2,29604,29606], +[3,17589,11], +"redshift", +"helper-rel", +[2,29608,4213], +[3,29603,18], +"gradient", +"grommet", +[3,940,8], +[0,31153,5592,6354,29311,27837,5130,29315,29727,5284,23803,202,28323,89,31175,91], +[1,5293,29665], +"tinygradient", +"tmpdir", +"ps1", +"glob2regx", +[2,29619,29620], +"@bokub", +[3,29621,16,9], +[2,7623,7628], +[2,1283,17321], +"template ", +[2,29623,16111], +"expand-path-helper", +"magnific-popup", +[3,4968,15], +[3,111,18], +"-cloud-services-collaboration", +"grommet-icons", +"composable-commerce-test-data", +"styleable", +[3,3474,9], +[2,10818,29635], +"toolbars", +[2,29637,5592], +[3,11285,19], +"@vscode/vsce", +[2,10829,29640,35971], +"source-l", +"vscode", +[2,964,4415], +[2,29644,591], +[3,19588,29], +"chromatic", +[2,29650,29651], +"addlistener", +"addeventlistener", +"waits", +"grommet-", +"theme-hpe", +[2,1192,29653], +[3,12201,18,16], +"random-int", +"react-shadow", +"resolved", +"fulfilled", +[2,29659,22145], +[3,29576,18], +"tarball-extract", +[2,29662,29663], +[3,35482,11], +"act-selectors", +"fifo", +[0,8391,29688], +"grommet.io", +"grommetux", +"sticker sheets", +"design patterns", +"app templates", +"atomic design", +"invalidate", +"WCAG 2.1", +[2,8652,29675], +" navigation", +"screen reader tags", +[3,10826,11], +"graphical user interface", +"plunder", +"exit-x", +"modelcontextprotocol", +"osition-area-property", +"pwa-asset-generator", +"_codesniffer", +[2,1936,29684], +[2,17753,5130], +"-lint", +1743292800000, +[2,23814,6653], +"rapid-development", +"proclaim", +"@grammyjs/types", +"dart-sass", +"grunt-jekyll", +"mcp", +"deno2node", +"sigstore", +[2,9466,1153], +"antora", +[3,3397,13], +[2,29700,3212], +"zepto", +[3,12478,11], +[2,30713,29989], +[1,2343,29712], +"countries", +[2,22642,5351], +[2,18145,4581], +"@next/font", +"package-up", +[2,17507,4107], +[0,29714,29715,29720,34352], +"@jsdevtools/ez-spawn", +[0,6680,26246,26882,26247,26883], +[0,87,29211,29381,29378,5583,811,816,6373,4864,4874,29386,1009,32801,1011,1165,1195,1264,1540,1593,1596,10944,29374,1177,1938,1942,13668,2151,2193,6382,29120,28366,2675,28629,29392,3400,29137,3566,29372,28369,27120,4042,20981,10854,29398,20983,4073,4076,4079,2278,13739,29373,11440,4484,4487,28625,91,20474], +"@types/png", +[2,29716,1722], +"context7", +"vibe-coding", +[0,32054,29405,31512,29002,4453,28125,5131,89,188,1098,3698,35060,35062,35058,29412], +[2,17590,23989], +"png.js", +[2,29573,29730], +"screenshots", +"ai-detection", +"screengrab", +"headless", +"app-detection", +"rapidoc", +"iso-codes", +"iso", +"api-generator", +"find-process", +[1,2343,29738], +"low-code", +[2,29737,3729], +[3,33097,12], +[0,0,29739,29864,2537], +[0,107,91,1983,11026,26744], +[3,7895,13], +"jpeg-js", +"striptags", +[2,1948,29816], +"baas", +"launch-image", +"splashscreen", +"splash-screen", +"image-generation", +"aws4", +"mstile", +"pwa-assets", +[3,7863,11], +"web publishing", +[2,3862,29804], +"@ionic/react", +"@loki/runner", +"@loki/target-chrome-app", +"@apitools/openapi-parser", +[2,29760,6866], +"base64-", +"xml-but-prettier", +"idb-keyval", +[3,5062,14], +"rypto-js", +[2,29763,29764], +[2,29785,17878], +"@saithodev/semantic-release-backmerge", +"cebook-js-sdk", +[2,22819,29768], +[2,1983,29303], +[3,19588,24], +"nline-", +[2,11294,6436], +[2,29772,29773], +[2,29771,29774], +[2,29781,29782], +"river-adapter-utils", +[2,2767,11110], +"jsdoc-babel", +[2,27738,8791], +[3,14065,15], +"mplate-html-minifier", +"parse-server", +"inspectpack", +[3,29757,20], +"Custom Element", +"Web Component", +"swagger ui", +"swagger ", +"WHATWG", +[2,28008,57], +"html5 parser", +[2,28008,1753], +[2,1936,1753], +"openapi ui", +[2,29366,4366], +[2,29366,11328], +[2,29366,3902], +"fast-ur", +"l-parser", +[2,29799,29800], +[2,29366,25677], +[2,29789,4366], +"animatable", +"react-swipeable-list", +"pause", +[2,29811,29812], +[3,1551,9], +[2,29808,18716], +[2,1432,29809], +[3,29757,13], +"native-android-emulator", +[2,29814,29815], +[3,29807,20], +"ios-simulator", +"-preferences", +[2,31868,5891], +[2,29822,19102], +"collapsible", +"accordion", +"readme-md", +[3,4272,10], +[2,11375,10850], +"username", +[3,9308,9], +[2,29827,29828], +[3,4060,15], +"ocal-resolve", +[2,3500,1274], +"visual testing", +"swipeable", +"customizable", +[3,1419,20], +"teeny-tap", +"base64url", +"touchscreen", +"listview", +"swipe-to-delete", +"swipe-actions", +"json/simple-icons", +[2,29852,32865], +"iso-country-codes", +"use-composed-ref", +"use-latest", +[2,29866,1460], +"@preconstruct/cli", +"blue-tape", +"autosize", +"grow", +"riot", +"events.once", +"@scalar/s", +[2,30844,1983], +"exist", +"md-writer", +[2,12557,8982], +[2,29858,29859], +[3,7806,10], +"mon-tags", +"ts-declaration-location", +[2,29863,14056], +"isabsolute", +[3,1733,14], +[0,31549,31550,29427,31553,31565,9006,3015,31566,15813,10725,30672,5066,15571,89,31567,1098,188,12295,5131,28125,31568,31569], +"react-smooth", +[3,29842,12], +"@borderless/ts-scripts", +[2,29958,29576], +[2,29870,34050], +"victory-", +[1,2343,29929], +[2,10818,29873], +"mdx-gfm", +[2,10818,29875], +"webpack5-compiler-swc", +[2,29877,29878], +[3,10841,15], +"-runner", +[2,33114,22982], +[2,33114,29881], +"time-format", +"@rkusa/linebreak", +[2,29885,29886], +"opentype.js", +[3,18787,15], +"v-expression", +"vitest-axe", +"log-process-errors", +"sortablejs", +[2,5581,29898,27479], +[2,29518,29892,29930], +"native-pr", +"jpeg-exif", +"linebreak", +"png-js", +"@riotjs/dom-bindings", +"blob-stream", +"multi-pa", +"pdfjs-dist", +[2,29904,4643], +"pdf writer", +"pdf ", +[2,29902,1179], +"@riotjs/", +[2,29906,29907], +"@riot", +[3,25083,18,7], +"call-delayed", +"chai-i", +[2,29904,93], +[2,29904,614], +"ncreasing", +[2,29909,29912], +[2,29915,29916], +"@wdio/s", +"auce-service", +"bianco.attr", +"pgpass", +"pg-pool", +"pg-types", +"bianco.query", +"cumpa", +"pg-protocol", +"curri", +[2,29126,28794], +[2,29927,28794], +[3,4069,15], +"pg-cloudflare", +[0,29947,29948,29981,2523], +"eview", +"pg-co", +"py-streams", +[2,29931,29932], +"@cloudflare/workers-types", +"custom tags", +"minimalist", +"libpq", +"rdbms", +"data binding", +"riotjs", +"riot.js", +"tdesign-mobile-vue", +"oxc-resolver", +"copy-source", +[2,5237,29944], +"npm-watch", +[0,29443], +[0,33580,5087,4874,1429,31602,2024], +[2,29950,12826], +[3,35537,26], +[2,29956,582], +"hasha", +"reorder", +"ng-sortable", +[2,12318,29992], +[3,66,20], +[2,27777,27738,1764,1524], +"iso-", +"@use-gesture/vanilla", +[2,29961,29962], +"tdesign-", +"icons-vue-next", +[2,29958,29658], +[2,1547,3525], +[2,3525,15159], +[2,812,1002], +"@soerenmartius/vue3-clipboard", +" build", +[2,3525,29968], +"/build", +[2,3525,29970], +"dom-parser", +"qrcode.vue", +[2,8851,19675], +[2,29976,29977], +[3,32978,16], +"atic-import", +[2,29976,29979], +"yles", +"@tdesign/site-components", +[0,29446,14374,1081,29447,29451,29452,29453], +[1,2343,29985], +[2,29961,29984,200], +"publish-", +[0,29986,29995,2514,2537], +[0,26702,19344,1915,32525,1953,1958,1959,2105,2203,26716,4523], +[2,4609,29988], +"tdoc", +"ystem-ui-font-family", +"tdesign", +"pinkie-promise", +"-widget", +"weui", +"denodify", +[0,4874,25950,1177,2675,17529,2931,27949,3401,4505,91], +[2,29997,3346], +[3,6806,10], +"tstyche", +"atomic", +[2,30016,30020], +"atomic-sleep", +[1,2343,30160], +"xit-leak-free", +[2,27492,30003], +"pino-", +[2,20417,4714], +[2,30005,30006], +"std-", +[2,1753,591], +[2,30008,30009], +[2,30005,30010], +"quick-", +"-unescaped", +[2,1671,30013], +[2,30012,30014], +[3,18858,17], +"real-require", +"sonic-boom", +"thread-stream", +"-tag", +"lush-write-stream", +[2,5537,30021], +"obug", +"bole", +"fastbench", +"-write-stream", +[2,20064,30026], +"midnight-smoker", +"steed", +[2,30031,30032], +[3,3577,11], +"-variables", +[2,30034,30035], +"postcss-he", +"xrgba", +"postinstall", +[3,3848,9], +"devpostinstall", +[2,30040,1524], +[3,3668,14], +[2,24276,30042], +"odule-replacement", +"graphql-jit", +"uploader", +"preview", +"image-edit", +[2,30085,3582], +"mqemitter", +"remark-math", +"single-user-cache", +"base64-stream", +[2,24101,30057], +"ready", +"-simple", +[2,2105,30054], +"win32", +"woslash", +[2,9406,7293], +[2,30060,30065], +"remark-s", +[2,30062,30063], +"gulp-conve", +"rt-css-var", +"picklog", +"martypants", +"wechat", +"weixin", +[2,29314,4183], +[2,17998,30070], +"ading-time", +[2,27707,364], +"better-react-mathjax", +[2,30074,25131], +[3,9313,17], +[2,30076,30077], +[3,12415,13], +"alue-to-estree", +[2,30079,30080], +[3,31790,16], +"ocalematcher", +"tiny-lru", +[2,10884,30083], +"egotiator", +[2,11932,11525], +"iso-countr", +[2,30087,30096], +[3,13203,19], +"irregular-plurals", +"fs.extra", +"plurals", +"count", +"irregular", +"noun", +"nouns", +"requireg", +"orm-data", +"@pkgr/core", +[2,4511,30118,30123], +"make-synchronized", +[2,30101,30102], +[3,30099,13], +"ous", +"sync-threads", +"fclone", +"vizion", +"@pm2/io", +"pidusage", +"pm2-axon", +"@pm2/", +"@pm2/agent", +"pm2-", +"pm2-deploy", +"synchronize", +[2,5340,30116], +"@pm2/js-api", +"webc", +"cli-tableau", +[3,32969,11], +"pm2-axon-rpc", +[2,30111,28917], +[2,30111,21833], +[2,30109,30121], +"heme", +"logs", +"kraken", +" balancer", +[2,3001,30126], +"lb", +"balancer", +[2,3614,30129], +"kubernetes", +"k8s", +"emoji-flags", +"pm2-docker", +"graceful", +"phone-codes", +"node-pm2", +"fs-fixture", +"production", +"keymetrics", +[2,10339,13522], +"strong-pm", +"supervisord", +"pm2.io", +"@ibyar/expressions", +" production", +[2,17979,30146], +[2,3729,6877], +"probes", +" process", +" alive", +[2,30150,30151], +[2,25607,30152], +"process ", +[2,30154,8309], +"clustering", +"memoizerific", +"cluster cli", +"dev ops", +[0,30171,0,29047,2537], +"phone-prefixes", +"@vercel/blob", +[2,7285,2669], +"tap-dot", +[2,30180,30181], +"PNG", +"js-png", +"node-png", +"import-without-cache", +"png-parse", +[0,2845], +"pg-gateway", +"@ibyar/decorators", +"pglite-2", +"aurora", +"ibyar", +[2,4641,5341], +[2,4641,7256], +"evaluation", +[3,578,10], +"arousel", +[2,30195,3825], +"no-code", +"mvp", +[1,2343,30186], +[0,30187,30188,30189,2537], +[0,8712,1423,5210,1209,3021,26499], +[0,34225,4874,2559,91,34229,28456,34231], +[0,89,5130,21151,28811], +"poe", +"economy", +"ninja", +"poe.ninja", +"poe economy", +[3,581,10], +[2,30212,3730], +" of exile", +[2,3403,30197], +" economy", +[2,30198,30199], +[3,30200,14], +[2,30201,30192], +[2,30194,8568], +[2,30201,5592], +[1,2343,30229], +"ast-walker-scope", +"poe.watch api", +[2,30193,8568], +"@vercel/ne", +"copilot", +"@types/ne", +[3,587,10], +"reval", +[2,24808,30213], +[2,6649,2995], +[2,6645,30215], +"tsgen", +[2,30231,30232], +"glamor", +[2,24177,591], +"o-async", +" manipulate", +[2,1473,30222], +[3,30223,15], +[2,30224,6600], +" color manipulation", +[2,7595,30226], +[3,35570,16], +[0,30249,0,2514,2487], +"muggle-string", +[3,593,10], +"potlight", +[2,579,30251], +[2,29444,30511], +[3,6372,10], +[2,30235,6374], +[3,23816,17], +[2,30237,13290], +[2,30235,30238], +[2,30235,1973], +[2,30240,3007], +"nuget-publish", +[2,30244,4900], +[3,13484,37], +"popperjs", +[2,1517,30248], +"attached", +"center", +[0,9315], +[1,2343,30308], +"tiptap", +"allure-js-commons", +"flush-promises", +[2,30255,30259], +"@yarnpkg/l", +[3,10175,16,14], +[2,30276,30280], +"source map", +"ibzip", +[2,23660,30261], +"tector", +[2,11369,30282], +[2,10880,30264], +"preset-env", +"jison-gho", +[2,16645,30267], +"null", +"calculation", +"unixify", +"allure", +"codeceptjs", +"testops", +[3,3674,10], +[2,30273,25461], +"read-cache", +"express-i", +[3,1895,16], +"oblems", +[2,30277,30278], +"ntlayer", +"is-mobile", +"spector", +"deep-object-diff", +"@ngard/tiny-isequal", +[2,6268,1467], +[2,206,30285], +[2,209,6731], +"@intlayer/chokidar", +"hsl", +"hsla", +"hwb", +"rgba", +[2,30294,6008], +[3,30288,11], +[2,30296,23], +[3,30293,12], +"intlayer", +"caniuse-api", +"colord", +[2,10829,30311], +[3,19443,15], +[2,30301,5592], +[2,9738,30304], +"s-hooked", +"@utils/ts-config-types", +[3,30305,16], +"@intlayer/", +[0,0,30473,2514,4139], +"@utils/ts", +[2,30309,32810], +"docs-mdx", +[2,9402,30374], +"get-npm-tarball-url", +"pixrem", +"pleeease-filters", +"apply", +[2,3562,30316], +"postcss-a", +"ttribute", +"-case-", +[2,30322,30367], +"use", +"insensitive", +[2,30320,30323], +[2,30319,30324], +[2,30318,30325], +[3,3570,22], +[3,3570,14], +[2,30328,12981], +"hex-alpha", +[2,30328,30330], +[3,30331,15], +"sl", +[2,30332,30333], +"wb", +[2,30332,30335], +"rebeccapurple", +[2,30328,30337], +[3,30338,15], +"gb", +[2,30339,30340], +"a-fallback", +[2,30341,30342], +[3,4791,10], +"nt-family-system-ui", +[2,30344,30345], +[3,30346,13], +[2,30347,24044], +[3,3611,18], +[2,30349,6422], +"user-agents", +"nitial", +[2,3607,30352], +[3,3622,10], +"dia-minmax", +[2,30354,30355], +"seudo-class-any-link", +[2,6423,30357], +[3,30358,14], +[2,30359,11513], +[3,30274,11], +"lace-overflow-wrap", +[2,30361,30362], +[3,3681,17], +[2,30364,6421], +[2,30364,23293], +[3,11228,16,2], +"cssrecipes-custom-media-queries", +[3,30368,11], +[2,30369,19400], +[2,30369,10052], +[2,30369,594], +"vert", +"ermaid", +[2,28756,7224], +"ical-rhythm", +[2,30373,30376], +[2,30369,30377], +"i-am-meticulous", +[2,1884,30379], +"isogram", +"oc-and-anchor", +[2,7646,30382], +[2,12798,591], +[2,3160,30384], +[3,30385,11], +"@react-aria/interactions", +"filenames", +[2,30386,30388], +[2,30386,5980], +[2,30386,89], +[3,30391,13], +[2,30392,1213], +[3,30391,12], +[2,30394,367], +[2,30386,1002], +[2,30386,2282], +[2,30415,30461], +"nano-logger", +"npmpub", +[2,25230,25461], +[2,3562,30401], +"-inline", +[2,3897,30403], +"@enact/ui", +"lazy-universal-dotenv", +"to-slug-case", +[3,4693,9], +"ano-logs", +[2,30408,30409], +[2,30058,30412], +"-position", +"cssnext", +"modern-tar", +[3,30387,12], +[2,30417,364], +[3,906,9], +[3,205,11], +"ascade", +"-lay", +"er-name-parser", +[2,30420,30421], +[2,30419,30422], +[2,30418,30423], +[2,30417,30429], +"at-rule", +"atrule", +"csswg", +"delivery-react-native", +"queries", +[2,30417,30432,30433], +"plugin-co", +"nsole-breadcrumbs", +[2,30435,30436,30437], +[3,30431,16], +"network-", +"breadcrumbs", +[2,30435,89], +[2,30438,30440], +"-native-client-sync", +[2,30443,30444], +"declarative", +[3,30439,29], +"event-sync", +[2,30443,30446], +"global-error-handler", +[2,30443,30448], +"hermes", +[2,30443,1577], +[2,30443,30451], +"unhandled-rejection", +"iserror", +"react-syntax-highlighter", +[2,30457,30460], +"bugsnag", +"stability", +[3,30375,17], +"@enact/webos", +[2,30875,4000], +"croll-area", +"overlays", +"at-rules", +"@ionic/angular", +[2,30415,17966], +"@keyframes", +"@counter-style", +"@devtools-ds/object-inspector", +[2,4807,30453], +[2,30475,30476], +"@aw-web-design/x-default-browser", +"@fal-works/esbuild-plugin-global-externals", +"flexbugs", +[0,4483,1177,1984,1894,91,4874,1953,7677,1982,1895,1011,1009], +[1,2343,30482], +[3,659,18], +"nobis-nostrum-nam", +"@skylernpm/hic-inventore-dolores", +[3,3616,9], +"postcss-less", +"tyl", +"postcss-styl", +[0,30490,30492,30497,34352], +"quickapp", +"PHP", +"sss", +"convex", +[3,29658,18,8], +[2,30502,27421,30606], +"world-countries", +[0,1437,3074,3714,4361], +"image-set", +[0,2228,2240,2247,2316,1906], +[2,2662,30554], +"@eggjs/oxlint-config", +"@vercel/e", +"mock-spawn", +[0,21779,8221,13814,15344,158,6707,3178], +"node modules", +[3,31793,24,5], +[1,2343,30524], +[2,30503,30515], +[3,30477,11], +[3,30489,12], +"postcssrc", +".config.js", +[2,3561,30505], +"@recharts/devtools", +"motion-dom", +[2,30510,186], +"motion-u", +"-snapshot", +"midas", +[3,3591,9], +"ark-", +"y-codes", +"theme-class", +[2,30514,30516], +[2,30513,30517], +"hort", +[2,3677,30519], +[2,1172,30522], +[3,5558,22,6], +[2,30560,6802], +[0,30525,30526,30189,2523], +[0,668,8712,4090], +[0,1192,91,5087,4874,28455,28574], +[2,30546,30547,3966], +[1,2343,30549], +[2,30530,30537], +[3,30868,11], +"cssnano-", +[2,30531,594], +[2,30534,11504], +"@codecov/", +[2,30536,6579], +[3,1300,12], +"silent", +"expressots", +"font-f", +"clean-architecture", +"font-family", +"font-weight", +[2,30544,30545], +[3,4526,12], +"ramework", +[3,31198,25], +"particles-", +"desm", +[0,30550,30555,30556,2523], +[0,1169], +[2,41,30552], +"pro-components", +[2,5557,3514], +"node16", +[0,3421,1429,4493,2899,4039,2026,4474,91,4856,4874,6503,1151,6494,8648], +[0,6653,2275,5472,6969,5982,7320,11346,3541,1169], +[1,2343,30580], +"esc", +[2,7632,30558], +[3,30501,14], +"gulp-better-rollup", +[2,30560,1460], +"Leaflet", +"Maps", +"Gesture", +"Handling", +"two", +"fingers", +[2,30571,30572], +[2,3976,30573], +"world", +[3,29868,24,3], +"anitize", +[2,30571,30578], +[3,220,19], +[2,4026,3639], +[2,30575,30576], +[3,29963,27,3], +"atrules", +[0,30596,30597,2514,2523], +"children", +"nestings", +"@anthropic-ai/sdk", +"@azure-rest/ai-inference", +[2,959,30586], +"vue-virtual", +[2,209,3376], +[3,30402,16], +[2,30588,4298], +[2,2574,3375], +"world-iso-codes", +[2,964,188], +[2,30599,29842], +"normalizes", +"fixes", +[0,1112,1415,16230,24324,36538,30169,30023,3530,28865,29444,4135,26379,27921,4459,33251,24214], +[0,33043,29170,29455,29458,29465,4874,20374,5254,29891,29466,33253,7677,23203,10984,19839,1680,1177,20044,16860,3144,3749,15450,1894,23535,30234,24181,91,29469,30908,28797,29470,1983,1984], +[1,2343,30601], +"world-", +[2,30613,1460], +[0,30605,30608,30611,2537], +"@cfworker/json-schema", +"@clerk/localizations", +"@ark/attest", +[0,1676,1679,2151,2212,17450,4400], +"non-corrupti", +"admin-lte", +[0,5245,29493,4864,1429,1177,2899], +"@clerk/nextjs", +"@clerk/themes", +[0,1764,7682,26965,3428,2090,27,1002,1965,5995], +"backendless", +[3,30593,18], +"to-valid-identifier", +[1,2343,30626], +"@astrojs/mdx", +[2,30618,30619], +[3,28058,16], +"tro", +[2,3704,34683], +[2,30625,3286], +[2,30623,9872], +"control-", +"smartbanner.js", +[3,2635,14], +[0,0,30627,30780,2537], +[0,8648,4874,4880,34737,1894,89,3824,7671,91], +[2,30612,30665], +"cascade-layers", +[2,216,30629], +[3,30630,19], +[3,3569,13], +[2,30631,30632], +[3,30633,24], +"mix-function", +[2,30634,30635], +[3,30633,20], +"alt-text", +[2,12009,30638], +[2,30637,30639], +[3,28688,12], +[2,30641,5746], +[2,216,30642], +"ormat-", +[2,30644,4798], +[2,30539,30645], +[2,216,30646], +"gamut-mapping", +[2,216,30648], +[3,30649,19], +"radients-interpolation-method", +[2,30650,30651], +"hwb-function", +[2,216,30653], +[3,215,19], +"c-unit", +[2,30655,30656], +[2,30655,30352], +"light-", +"dark-function", +[2,30659,30660], +[2,216,30661], +[3,30662,19], +"ogical-", +"-request", +[2,30683,31073], +"-and-clear", +[2,14639,30667], +[2,30664,30668], +[2,30663,30669], +[3,30670,26], +"overflow", +[2,30671,30672], +[3,30673,30], +"behavior", +[2,11262,30675], +[2,30674,30676], +[2,30671,24800], +"viewport-", +"units", +[2,30679,30680], +[2,30671,30681], +[3,30628,13], +[2,30767,33380], +"media-minmax", +[2,216,30685], +[3,30686,24], +"-aspect-ratio-number-values", +[2,30430,30688], +[2,30687,30689], +[2,30695,10740,4978], +"nested-calc", +[2,216,30692], +[3,30693,19], +[3,30628,12], +"bannerize", +[2,31495,31502], +"play-values", +[2,29577,30698], +[2,3646,30699], +[2,30694,30700], +"oklab-function", +[2,216,30702], +"relative-", +"yntax", +"color-syntax", +[2,30704,30706], +[2,216,30707], +"scope-", +"pseudo-class", +[2,30709,30710], +[2,216,30711], +[3,30712,19], +"tepped-value-functions", +[2,30713,30714], +[3,70,7], +[3,5845,9], +[2,7854,30717], +[2,30716,30718], +[2,28533,30719], +[2,216,30720], +[3,30721,19], +"rigonometric-functions", +[2,30722,30723], +[2,216,10760], +"css-b", +"lank-pseudo", +[2,30726,30727], +"css-h", +[2,30612,33812], +"zarm", +"as-pseudo", +[2,30729,30732], +"css-pr", +"efers-color-scheme", +[2,30734,30735], +[2,1007,30738], +[3,13069,23,4], +"postcss-clamp", +[3,3591,10], +"r-pseudo-class", +[2,30740,30741], +"ouble-position-gradients", +[2,30513,30743], +[3,4791,14], +"within", +[2,30745,30746], +"gap-properties", +[2,3562,30748], +"ab-function", +[2,30478,30750], +[3,3616,10], +"gical", +[2,30752,30753], +[3,3664,9], +"pacity-percentage", +[2,30755,30756], +"verflow-shorthand", +[2,30755,30758], +"age-break", +[2,6423,30760], +[2,30764,30766], +"postcss-place", +[3,3710,17], +"lists", +"h", +"@biomejs/", +"playbook-builder", +"algo", +[2,444,30771], +"-interactions", +[2,30773,89], +[3,29959,13], +"@zarm-design/bem", +[2,3677,30705], +[2,30777,45], +[3,30774,13], +"ahooks", +"better-scroll", +[0,89,586,11000,26264,6458], +"hermes-compiler", +[1,2343,30791], +[2,30777,200], +"@oxc-project/runtime", +"zarm-ui", +"zarm-mobile", +[2,30790,553], +[2,20561,30789], +"render-stream", +[3,30784,13], +[0,30793,0,30799,2523], +"@oxc-node/cli", +[0,1687,5303,1459,6501,182,148,164,167,29468,187,153,191,28332,15690,28361], +"oxc-parser", +[2,30796,30797], +"@iconify", +"/utils", +[2,3882,11245], +[0,28407,1459,6094,28416,28417,2585,28442,18241,6038,6110,1936,6138,6139,6142,6144,6145,20863,14600,5130], +[1,2343,30801], +[0,0,30812,30825,2537], +"@enact/i18n", +[2,30804,30232], +[3,907,8], +"doublylinked", +"lightning", +"-pool", +[2,30806,30807], +"ilib", +"-bytea", +[2,25638,30810], +[0,1192,1177,4042,4468,1894,91,5087,1895,1955,2780,1011,1009], +"power-tasks", +"@cyntler/react-doc-viewer", +"putil-", +[2,30815,19138], +"varhelpers", +[2,30815,30817], +"@enact/docs-utils", +[2,30405,30821], +"-test-utils", +[2,18576,30823], +"nact-proxy", +"@fal-ai/client", +[0,31512,32054,35062,35060,20986,4453,5284,91,89,188,3709,23332], +[2,22180,591], +[1,2343,30836], +[2,1962,30830], +"titanium", +"dos-detector", +"ed-queue", +"-ended-queue", +[2,4420,30832], +[2,11344,977], +"tsm", +[0,30846,30863,30865,2443], +"level-codec", +"write-stream", +[2,25982,30838], +"ltgt", +"bundle-size", +"spark-md5", +"vuvuzela", +"rolldown-", +"react select", +[0,29178,3744,3911], +"react dropdown", +[2,30852,30856], +"empower", +[2,3696,12168], +"universal-", +"accessib", +"strict-equal", +[2,1683,30853], +[2,30851,30854], +"le react select", +"dereserve", +"accessible", +"licensify", +[3,21510,14], +"ilterify", +[2,30860,30861], +[0,48,53,68,61,71,73,76,14039,78,83,87,90,97,966,968,972,1195,1593,1610,1177,1879,1895,1938,1947,1955,1959,1192,2780,2843,3697,1894,89,3824,2924,4676,4677,4681], +"jsx-async-runtime", +[0,89,6071,7521,5128], +"@formkit/auto-animate", +[2,8293,181], +"@reporters/github", +"@apm-js-collab/tracing-hooks", +"tidev", +"iphone", +"precommit", +[2,5186,2203], +[2,5928,3717,2389], +"react-load", +"combine-promises", +"@actions/github", +[2,20201,1172], +"@actions/glob", +[2,19849,3583], +[2,1252,30880], +[2,20201,2942], +"errorstacks", +"-sinon", +[2,2878,30884], +"-display-", +"@google/genai", +"kolorist", +"oxlint", +[2,30893,30894], +"virtual dom", +"dom diff", +[3,30878,13], +"undler", +[2,3886,1541], +[2,30897,30898], +[3,38298,13], +"dx-loader", +[2,32359,13369], +[2,30901,7020], +[3,30899,18], +[2,30459,30903], +"-ssr-addon-v5-slorber", +[3,18018,13], +[2,30904,3642], +"@huggingface/inference", +"jest-l", +[2,30909,166], +"unplugin-a", +[1,2343,30925], +"ight-runner", +[2,30907,30911], +[2,35506,30914], +"tect-port", +[2,30916,30917], +[3,12312,18], +"shoehorn", +[3,2954,10], +[2,30923,1541], +"lugin-pug", +[2,30918,30920], +[2,5334,30921], +[3,4887,20], +[3,3703,15], +[0,0,12112,30927,2523], +"@nestjsx/crud", +[0,2070,1108,6961,57,29617,4643], +[2,206,31196], +[2,30930,32550], +"@vercel/b", +[1,2343,30933], +[2,18420,8162], +[0,30934,0,30936,2523], +[0,1459,16485,182,28912,148,187,153,28332,15690,28361,146,28913,15716,29131,29495], +"parcel-bundler", +[0,28407,1459,6094,28416,28417,2585,28442,18241,6038,6110,1936,6138,6139,6142,6144,6145,20863,5130], +"Vue", +[1,2343,30945], +"@zoroaster/assert", +"glob-fs", +[2,30942,10098], +[3,30939,11], +"unstyled", +"alamode", +[0,0,2667,31019,4139], +"humanized", +"si", +"locale", +"@a-la/fixture-alamode", +"localized", +[2,30952,1172], +[3,30949,14], +"@artdeco/clean-stack", +"@artdeco/erte", +"@artdeco/", +"renderkid", +[2,30971,4521], +"jitter", +[2,30989,186], +"exception", +[2,30955,30962], +"scripts.json", +[2,30926,30665], +[2,30965,614], +"@nestjsx/", +"@depack/render", +"crud", +"crud-generator", +"frameworks", +"parse-ms", +[3,30963,14], +"@netlify/framework-info", +"@wrote/exists", +"milliseconds", +"period", +"@wrote/rm", +[2,30942,6696], +"@zmotivat0r/o0", +"@pothos/core", +[2,30942,553], +"mercurial", +"hg", +"vcs", +"argufy", +"catchment", +"p-filter", +"p-locate", +"documentary", +"unplugin-u", +[2,5313,6355], +[2,15658,30992], +"-integration", +"npmjs", +"@pri", +"sma/engines", +[2,30994,30995], +"gatsby", +"hugo", +"netlify", +"ts-pattern", +[2,32976,33011], +"global-dirs", +"erotic", +"line-replace", +"@prisma/", +[2,31005,1676], +[2,13403,31016], +"xdg-app-paths", +[2,31005,5576], +"studio", +[2,31005,31010], +"migrate", +[2,31005,31012], +"internals", +[2,31005,31014], +"rtdeco", +"point-client", +[2,4354,31017], +[0,8618,8619,8620,1299,200,1523,6876,8622,1836,8623,1179,8624,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,8632,8633,4989,2184,8634,7009,6621,553,91,181,8635,4758,8636], +[1,2343,31082], +[2,31514,31516], +"fetch-engine", +[2,31005,31022], +"makepromise", +"get-platform", +[2,31005,31025], +[2,31011,2995], +"@prisma/ge", +"nerat", +"or-helper", +[2,31029,31030], +[2,31028,31031], +"promto", +"ORM", +"Prisma", +"reloquent", +"Prisma CLI", +"prisma2", +"JS", +"TS", +"SQL", +"SQLite", +"Postgres", +"core-js-pure", +"PostgreSQL", +"CockroachDB", +"MySQL", +"MariaDB", +"MSSQL", +"SQL Server", +"SQLServer", +"MongoDB", +[2,32483,13083], +"jest-location-mock", +[2,27845,31056], +"dule-alias", +[2,1464,31059], +"danger", +"-serve", +"spawncommand", +"docdash", +"hotreload", +"gulp-terser", +"@strapi/strapi", +"temp-context", +"webfont", +"usually", +"yarn-s", +[2,31070,11017], +"@pothos/", +[2,31084,31085], +[3,815,8], +"t-client", +[2,31072,31073], +"URIjs", +"pothos", +"IDE", +"svn", +"suggestions", +"intellisense", +"tagged-tag", +[0,31083,31199,31215,2537], +[0,29692,1079,1676,3310], +[3,8998,11], +"assword", +"@svgr/hast-util-to-babel-ast", +[2,31104,31682], +[2,31089,1541], +"@epic-web/", +"yalc", +[2,31092,364], +"@strapi/", +"@strapi/i18n", +"@strapi/admin", +[2,31092,1823], +[2,31092,553], +[2,31092,594], +[2,31092,2942], +[2,31100,184], +"@strapi/u", +[2,31102,1803], +[3,28426,12], +"zshy", +"@types/so", +[2,31092,18035], +[2,31107,31108], +"@strapi/c", +"loud-cli", +[2,31092,5701], +"get-latest-version", +[2,31112,31113], +"@strapi/p", +"ermissions", +[2,31115,31116], +[3,31105,12], +"-transfer", +[2,31118,31119], +"@strapi/co", +"ntent-manager", +[2,31121,21945], +[3,31117,16], +"customize", +[2,31092,31124], +"review-workflows", +[2,31096,31126], +"cript-utils", +[2,31121,31128], +"type-builder", +"interact", +"css-parser", +[2,31132,31133], +"@strapi/t", +"s-zen", +[2,19502,31137], +"uglifyify", +"uglifyjs", +"ustom", +[2,4807,4684], +"css-ast", +"strapi", +"cmf", +"alpha-sort", +"vent-", +[2,31143,2618], +[2,2621,31144], +[2,31151,5130], +"mdast-zone", +[2,5967,2619], +"svg-e", +[2,31149,31144], +[3,17944,19], +"aria", +"admin panel", +"koajs", +"jam", +"graphqL", +"@protobufjs/aspromise", +[3,31157,12], +[2,31158,14357], +[2,31158,5061], +[2,31158,2016], +[2,31158,1612], +[3,31162,13], +"loat", +[2,31163,31164], +[2,31158,8625], +[2,31158,3403], +[3,31167,13], +[2,31168,25200], +[2,31158,4577], +"infrastructure", +[2,13888,4719], +"semver-tags", +[2,10617,31173], +"self hosted", +"lernajs", +"css-tools", +"@icons-pack/react-simple-icons", +"@khmyznikov/pwa-install", +[2,25885,24348], +"wd2", +"jasminewd2", +"-js-extender", +[2,11132,31183], +"webdriver-", +[2,31185,10057], +"snake-case", +[2,23689,31181], +"ang-format", +[2,21680,31189], +"natives", +[3,19209,11], +[2,31192,591], +[2,4491,31193], +"vrsource-tslint-rules", +"syntax-patches-for-csstree", +"base-driver", +[2,31228,29677,31230], +[0,5245,4874,5542,29696], +[2,31203,31204], +[3,27731,11], +[2,31201,57], +[3,1006,11], +"averse", +"@types/args", +[2,31208,57], +"squid", +[3,34785,11], +"privoxy", +"mod_proxy", +"via", +"x-forwarded-for", +"@express", +"-zod-api/zod-plugin", +[0,32859,8549,5592,5576,5130,6082,28450], +[1,2343,31245], +"p3-linear", +"fill-keys", +"not-found-error", +[2,5223,31219], +"MCP", +[3,8648,12], +"hello-world", +[2,13669,31223], +[2,31226,28613], +[3,2670,12], +[3,33464,11], +[3,1004,13], +"cp-sugar", +"-external-push", +[2,31228,31241], +"-status", +[2,16238,31232], +"l-ct-react", +[2,31236,1983], +[3,11282,19], +[2,11147,1983], +[2,12042,4406], +[3,31198,24], +"pug-", +"move-base", +"pug-code-gen", +"pug-filters", +[2,31228,31261], +[0,26964,0,31273,2537], +"pug-lexer", +"@langchain/community", +"pug-linker", +"pug-load", +"pug-parser", +"pug-runtime", +"strip-co", +[2,31252,19490], +[2,31240,31253], +"@lobechat/agent-runtime", +[3,24593,18], +"down-it", +[2,31256,31257], +[2,24585,4535], +[3,31231,17], +"shape-emoji", +[2,31228,31271], +[2,31995,5257], +[2,32038,31267], +"bail", +"tap-bail", +" tools", +[2,31269,31270], +[3,31238,12], +"shape", +"updater-color", +[2,31281,26543], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238], +[1,2343,31309], +[2,33763,31291], +[3,31262,20], +"idn", +"idna", +"dns", +"domain", +[3,31262,21], +[2,31283,31284], +[3,31272,22], +"ut-modes", +"-bidi", +[2,7001,31285], +[3,11071,14], +[2,17414,31287], +"@uppy/companion", +[2,31313,364], +"detect-agent", +[2,5176,31293], +"remapping", +[2,31295,13901], +[3,33831,13], +[2,31298,31299], +"purge", +[3,28384,12], +"presigned-post", +[2,31301,31302], +[3,30257,11], +"erceptor", +[2,2032,31304], +"prom-bundle", +"grant", +"tus-js-client", +"qr code", +[2,2662,1278], +[0,26964,0,31273,2523], +"resumable uploads", +"tus", +"dropbox", +"@vuepress/", +[2,21282,31372], +[2,31316,31324], +"@radix-ui/", +"@browserify/envify", +[3,31317,12], +[2,31318,31135], +"common-s", +"hakeify", +[2,31320,31321], +"verr", +"primitive", +"webpack-chain", +"ide-mistake", +[2,31323,31326], +[2,15053,31327], +"unassertify", +[2,31355,31356], +[2,31313,553], +[2,31313,1783], +"vue-server-renderer", +[2,31338,31342], +"decode-", +[2,14649,4627], +[2,31335,31336], +[3,13063,12], +"filter-obj", +"-on-first", +[2,4237,31340], +"reset-app", +[2,31313,31346], +[3,5422,9], +[2,7193,3634], +"shared-utils", +[2,31332,2091], +[2,31349,3111], +[3,21294,16], +"retape", +[2,19469,31352], +[3,32087,20,4], +[2,21282,31354], +"last-updated", +[3,28754,17], +"ompose-refs", +"tap-esm", +[2,31359,31604], +[3,31330,18], +"synchronous", +[2,28756,8191], +[2,31363,31364], +[3,31361,17], +"rimitive", +"FIFO", +"lifo", +"LIFO", +[2,28756,32760], +"queue js", +"job queue", +"job ", +"active-header-links", +"scheduling", +[2,31371,31373], +[2,21282,3412], +"task queue", +"ordered", +[2,31380,31382], +"linked list", +[3,31368,20], +"dequeue", +"escape-keydown", +"assistant-stream", +[2,31385,6599], +"assistant-", +[2,31418,31420], +[1,2343,31476], +"parchment", +[3,15562,11], +[2,31395,31396], +[3,12455,16], +[2,31391,1722], +[2,17612,2924], +[2,5197,4408], +[3,1694,14], +"x-buildutils", +"@types/sharp", +"radix-ui", +"ai-sdk", +"shadcn", +"fuzzysort", +"grunt-search", +[3,19622,19], +[2,31403,3595], +"@qunitjs/browserstack-runner", +"assistant", +"openai", +"ai", +"chatbot", +"ai-chat", +"dom-e", +[2,15588,6863], +[2,31411,31412], +[2,31415,31416], +[3,6493,9], +"acritics", +"@types/qunit", +[3,31331,11], +"qunit-plugin", +"heme-default", +"@walletconnect/browser-utils", +"ai-chatbot", +"ai-assistant", +"ai-copilot", +[2,31349,31428], +"exists-stat", +"js-reporters", +[3,15580,13], +[2,26353,8791], +[2,31436,31464], +"chatgpt", +"gpt4", +"gpt-4", +[3,2888,14], +[2,31436,553], +[3,31421,15], +"testling", +[2,31436,31441], +"AnimationFrame", +[2,705,31439], +"safe-json", +[2,31436,31443], +"window-getters", +[2,31450,6774], +"-export-", +[2,31445,14057], +[2,1205,31446], +"envvar", +"sanctuary", +[3,31442,22], +"-identity", +[2,31449,31451], +"xyz", +[2,6080,31458], +"@ethersproject/address", +[2,31457,25352], +[3,10408,17], +"al-ui", +"wallet", +"walletconnect", +"jsonrpc", +"cryptocurrency", +"dapp", +"iso-crypto", +[2,31436,31472], +[2,31467,31408], +[3,31454,15], +[3,30286,15], +[2,31436,594], +[2,31436,1616], +"alc", +"legacy-modal", +[2,31478,9962], +"@globalart/nestjs-swagger", +[2,32811,32812], +[0,31481,0,7653,2523], +[2,31478,553], +[3,31465,22], +"timed-out", +[2,31478,594], +[0,12215,12219,1014,28999,7406,7403], +"exceptions", +"sentry", +[3,15602,13], +[2,31499,31500], +"@graphiql/plugin-doc-explorer", +[1,2343,31488], +[0,31505,0,31510,34352], +[2,31478,5576], +[2,31436,31491], +"jsonrpc-provider", +[2,31493,31494], +[3,31490,23], +"http-connection", +[3,27276,25], +[2,31497,31498], +"ethereum-", +"test-network", +[3,31438,16], +"ocket-transport", +[2,7850,21497], +[3,4986,9], +[2,2079,4406], +[2,11183,31503], +[0,29419,29441,29454,29756,29757,29766,29807,29813], +"father-build", +"@mastra/core", +"rc-test", +[2,31520,13927], +[0,29818,4270,29823,5472,1973,29830,29830,3857,89,5131,12295,12296,5122], +"react-slider", +"slider", +[1,2343,31522], +[3,31027,15], +[2,7850,11512], +"core-licensed", +"wordpress", +"gutenberg", +[2,14013,8189], +[3,1103,9], +"angular-mocks", +[0,31529,0,31531,2487], +"graphiql", +"next-router-mock", +[3,5251,10], +"ponselike", +[2,31525,31526], +"body-scroll-lock", +[0,2817,18023,1125,1129,31764,1122], +"motion-v", +[0,30999,28818,5995,17978], +[1,2343,31546], +"radash", +"@a2a-js/sdk", +"js-tiktoken", +"hono-openapi", +"@ai-sdk/provider", +[2,31543,31545], +[3,2766,10], +"jasmine-ts", +[2,13130,3212], +[3,3793,11], +"@ai-sdk/", +[2,31643,1623], +"ui-utils", +[0,0,31547,31628,2523], +[0,1389,2665,4650], +[2,31537,31570], +"body scroll", +[2,31549,31551], +" lock", +[3,65,8], +"react scroll lock", +"react-common", +[2,31552,31554], +[3,31555,17], +"ponents", +[2,31556,31557], +[3,31555,14], +[2,31559,21189], +[3,31560,16], +"oks", +[2,31561,31562], +[2,31559,14592], +[3,31553,12], +"freeze", +"vanilla-js", +"tablet", +"bsl", +"-v5", +[2,31572,31582], +"@mastra/", +[2,1379,31574], +"node-info", +"@restart/hooks", +"resolve-path", +"@restart/ui", +[2,3744,20622], +"unco", +"ntrollable", +[2,31579,31580], +"schema-compat", +"ecosystem-react", +[2,31585,594], +[3,31548,17], +[2,11484,31587], +"sole-ui", +"@icon", +"s/material", +[2,31588,31589], +[2,3131,1512], +"reactcss", +"@types/esm", +"@case/eslint-config", +[2,31596,31601], +[3,29736,11], +"centered", +[2,10818,31597], +[3,30881,30], +[2,31599,1204], +"up-sync", +"chai-spies", +"jsx-loader", +"ntext", +[2,3808,31604], +[3,3850,10], +"@types/sane", +"testdom", +"@lukeed/uuid", +[2,31584,31570], +"color picker", +"sketch", +[2,4807,4547], +"photoshop", +[2,31616,5592], +[3,31573,14], +[2,31618,6893], +[3,31548,18], +[2,31538,31570], +[3,2651,13], +"tags-plugin", +[2,31620,31621], +[2,31626,6893], +[2,28010,1492], +[2,1585,31624], +[3,31610,24], +"mocha-jshint", +[0,4384,2076,5131,4453,2013,15535], +"@ai-sdk/azure", +[1,2343,31641], +[2,31543,31407], +"docgen/cli", +[2,10802,31632], +[2,31635,671], +"@internal/", +[2,31637,31638], +[3,28766,11], +"ypes-builder", +"@openrouter/ai-sdk-provider", +[2,1710,2136], +[0,31660,31662,31663,34352], +"is-root", +"camelcase-", +[2,24559,31675,31676], +"llm", +"agents", +"vectorstore", +"@react-d", +"nd/invariant", +[2,31648,31649], +[3,31650,11], +[2,31651,4163], +[2,1199,17586,31655], +"dnd-core", +"starts-with", +"embeddings", +"rag", +"evals", +"otel", +[0,26616,4391], +"replacement", +[0,2766,2297,2881,2886,2898,28023,3181,3758,4535], +[0,3113,26799,5131,1388], +[1,2343,31672], +[3,24807,15], +[2,31665,1286], +[3,8136,9], +"ctrine", +[2,31667,31668], +"html4", +[2,20245,16957], +[0,31679,31684,2514,2537], +[2,30415,31678], +[2,32813,18502], +"reference-", +"invalid", +"condense-newlines", +"landmark", +[0,20414,29996,17982,11049,30043,30048,3478,29457,3923,18730,20423,30050,30081,4729], +[2,30418,31681], +"olor-helpers", +"rtablejs", +"attr-accept", +[0,5526,5528,5529,31674,826,30086,4874,9241,20441,28400,1540,21594,1177,2078,2220,2222,5560,29197,3697,3752,4135,4193,4238,4481,91,4548,28519], +"vue-next", +"file-selector", +"draggable", +[3,71,24], +[2,31688,14255], +[2,69,5721], +[3,5700,24], +"ipeline-operator", +[2,31691,31692], +"-why", +[2,10876,31694], +[2,18043,200], +[3,4676,9], +"locks", +[2,31697,31698], +"drag-and-drop", +"color-name", +[3,1802,13], +"kanban", +[2,32312,2825], +"anser", +[2,2769,2086], +"le-promise", +[2,6935,31707], +[1,2343,31712], +"redbox", +"crash", +[0,31714,31730,31732,2443], +"css-mediaquery", +[0,3749,3527,11481,29170], +[3,33768,11], +"react-si", +"de-effect", +[2,31716,31717], +"iceworker", +"fl", +[2,16819,31720], +"karma-html", +[2,31722,2903], +"is-whitespace", +"nfl", +"noscript", +[2,31729,33865], +"dashdash", +"@types/ran", +[0,7812,30138,3742,1984], +"titanium-sdk", +[0,20001,671], +[3,20745,21], +"jest-preview", +[2,31395,4384], +"@polka/send-type", +[2,31005,31774], +[1,2343,31739], +[0,31746,31747,2514,2537], +[2,20413,1699], +[3,1845,22], +[2,31741,2855], +"react-mount", +"yarn-", +[2,31744,17335], +[0,58,1437,3930,814,4747], +[0,1178,29847,29851,25675,3758,3938,4216,4255,4389,4449], +"csstree", +"decap-cms-backend-aws-cognito-github-proxy", +[2,9497,31907], +[3,3321,10], +[2,31751,2849], +[1,2343,31756], +[3,19812,19], +[2,31754,965], +[0,31757,27070,27064,2523], +[0,28326,2017,31435,31469], +[1,2343,31761], +"completion", +[2,31780,31781], +[0,0,0,31762,2537], +[0,30486,5995,35981,7072,18035,89], +[1,2343,31783], +[2,31768,13083], +"viewport", +[3,15616,12], +"observer", +[3,1129,12], +"lazy load", +"inview", +"useInView", +"useIn", +"terse", +"query-plan-executor", +"decap-cms", +"aws-cognito", +"ctionObserver", +[2,31773,31777], +[2,31772,31778], +[3,31749,19], +"zure", +[2,31792,17977], +[0,0,0,31784,2487], +[0,1177,6939,89,3878,27158], +[1,2343,31786], +[0,31801,31803,31810,4139], +"@formatjs/", +"listformat", +[2,19067,31788], +[2,31787,31789], +[3,31790,14], +[3,31749,18], +[2,31792,31804], +"common-stuff", +[3,31790,11], +"cu-messageformat-parser", +[2,31795,31796], +[2,6458,1671], +[2,19067,31798], +[2,19644,8982], +[0,1104,22972,1676,2061,13896,1776,3102,4449], +"what-the-diff", +[0,53,87,94,1178,1429,1596,1177,1922,2323,2338,2384,2419,2436,2463,2510,2899,30496,3421,3697], +"git-gateway", +[2,31813,6064], +[3,18229,15], +"lat-gitignore", +"jsondiffpatch", +"gotrue-js", +[0,2323,1776,18011,5284,18444,1745], +"es-crypto", +"gateway", +[3,31793,21], +[3,19657,16], +[2,31814,2855], +[2,31813,620], +[1,2343,31818], +[0,31826,0,31829,2537], +"@nstudio", +[2,4564,2618], +[2,2617,31820], +[2,31792,2658], +[3,28165,19,9], +"hmac256", +"hmac512", +[0,2714,31809,3181,2867], +[2,31792,1973], +"exenv", +[0,30999,28818,5995,31804,31812], +"custom-", +[2,31830,11513], +[2,10704,31831], +"otp-io", +[2,29956,4963], +[2,31836,31837], +[3,23664,13], +"or-js", +"dom7", +[2,13843,353], +[2,1176,31839], +[2,14510,2091], +[2,22588,2091], +"diff-reporter", +[2,13872,31843], +[2,3024,6754], +[2,31848,31850], +[2,9944,7227], +[3,29951,21], +"tween", +"elpers", +"napa", +"runstorm", +[1,2343,31854], +[0,31909,31916,2514,2537], +[2,32904,158], +"nullthrows", +"@tiptap/core", +"metro-r", +[2,31858,96], +"metro-", +[2,31860,4227], +"s-runtime", +[2,6971,31862], +[2,5237,31863], +[3,5079,13], +"/codegen", +[2,31865,31866], +[3,31867,14], +"medium-zoom", +"js-polyfills", +[2,31868,31870], +"tinydate", +"tweezer.js", +[2,8603,1111], +"le-plugin", +[2,3630,31875], +[2,31868,31876], +"assets-", +[2,31878,29179], +[2,31868,31879], +[3,5059,11], +"olors", +[2,31881,31882], +[2,31868,31883], +"@jest/c", +"reate-c", +"-key-", +[2,31887,3046], +[2,6990,31888], +[2,31886,31889], +[2,31885,31890], +[2,3912,5959], +[2,31868,31892], +[3,31867,16], +"mmunity-cli-plugin", +[2,31894,31895], +[2,31898,4333], +[3,24539,13], +[2,17304,31900], +"laywright", +[2,32412,15001], +[2,31908,7188,32485], +"creator", +[2,10735,5130], +"mobile-", +[2,31905,5001], +"ttlcache", +"@tiptap/", +[0,30868,1414,2020,2105,2070,4745], +"cp-file", +[2,17964,31913], +[2,5063,18324], +[3,31333,16,3], +"keychain", +"yargonaut", +[0,20454,36559,30529,826,4874,30548,4135,1177,29197,91], +[2,36270,31918], +"s-test", +[2,31924,31925], +"@entypo-icons/core", +"ocial-buttons", +[2,4910,31921], +"evil-icons", +[3,15277,15], +"xecutable", +"feather-icons", +[1,2343,31933], +"fontisto", +"oslllo-svg-fixer", +"epub2", +"line-icons", +[2,4182,31931], +[0,0,21592,31936,2399], +"svg2ttf", +"svgicons2svgfont", +[0,12479,2947,7193,26421,27968,2100], +"osx", +[1,2343,31941], +"ssr-window", +"@pinia/colada", +[0,0,31946,31981,2399], +"@cmfcmf/docusaurus-search-local", +[3,3911,11], +"form-hmr", +[2,31943,31944], +[0,4493,32977], +[2,31951,31960,31962], +"currency", +"number-", +[2,31949,1671], +[3,27276,15], +[2,33571,89], +[2,31954,31957], +[3,7628,10], +"hijack", +[2,4013,31955], +"heck", +"onclick", +"outside", +"classic-", +[2,32028,1745], +"build-app-blueprint", +[2,31968,31971], +[2,812,12444], +"t-flow", +[2,17375,31965], +"hermes-eslint", +[3,31947,30], +"array-hyper-unique", +"crlf-normalize", +"ddon-blueprint", +"book", +"books", +"chapter", +"comic", +"epub-maker", +"epub-maker2", +"node-novel", +"novel", +"volume", +[0,188,4646,1542,32977,6533,3212,5472], +"matchmedia", +[2,31982,3766], +[1,2343,32268], +"yphenate-style-name", +[2,6495,31985], +"tch-", +[2,31987,11034], +[2,18655,31988], +[3,31989,12], +"mediaquery", +[2,31990,31991], +"-media-mock", +[2,3529,31993], +"@lobechat/", +[3,6415,10], +[2,31996,3582], +"escaping", +"respond", +"goat", +"matchMedia", +"🐐", +[2,32004,32005], +[3,31263,13], +"text-engine", +"color-logger", +"ice-cap", +[2,31995,18035], +"esdoc-importpath-plugin", +[2,31995,1807,32030], +"ECMAScript6", +[3,6608,10], +[2,32012,32014], +"2015", +"ECMAScript7", +[2,32017,6893], +[3,32013,13], +"ECMAScript8", +[2,32017,6836], +[2,3944,8253], +"k-monitor", +[2,4117,32021], +[2,32020,32022], +[3,32023,15], +"log-monitor", +[2,32024,32025], +"proposal", +[3,19209,12], +"http-graceful-shutdown", +"client-ipc", +[2,32032,32033], +[3,32010,19], +"server-ipc", +[2,31995,2092,591], +[2,31995,32036], +"model-runtime", +"mdc", +"developer", +"combobox", +"multiselect", +[2,31995,3742], +[2,31995,594], +[2,31995,32044], +"web-crawler", +[2,32047,13538], +"json2mq", +[3,1841,9], +"-apps", +[2,21340,32048], +"-carousel", +[2,11167,32050], +"why-did-you-update", +[2,32057,32058], +"carousel", +"Image slider", +"orbit", +[3,1841,12], +"rts", +[2,1841,6324,4978], +[2,32074,32082], +"@tippyjs/react", +"@vxna/mini-html-webpack-template", +"common-dir", +[2,1861,3427], +"name-p", +[2,32065,84], +[2,18977,32066], +"glogg", +[3,26921,11], +[2,32069,1646], +"jss", +"jss-plugin-camel-case", +[3,32072,12], +[3,32059,20], +"ompose", +[2,32073,32075], +[3,32072,11], +"default-", +"default-unit", +[2,32077,32079], +[2,32077,2202], +"s-gateway", +"isolate", +[2,32077,32083], +[2,32077,3639], +"listify", +[2,12171,2651], +"q-i", +"qss", +"-annotation-resolver", +[2,3822,32090], +[3,32091,13], +"-handler", +[2,4904,32093], +[2,32092,32094], +[2,32047,6038], +"react-group", +[2,4287,1928], +"type-detect", +[2,32047,45], +"inter-element", +"@types/buble", +"py-webpack-plugin", +[2,4860,32103], +"@types/esc", +"odegen", +[2,32105,32106], +"h-sum", +[2,12395,32108], +"@types/ke", +"ymirror", +[2,32110,32111], +[3,23829,17], +[2,32113,3119], +[2,27479,4408], +[2,13419,32115], +[3,12290,12], +[2,32117,13735], +[3,8157,15], +[2,32119,5331], +"deabsdeep", +"white-space", +"deepfreeze", +"dog-names", +"amia", +[2,22060,32125], +[2,32047,32128], +"market-sdk", +"keymirror", +[2,4293,6987], +"@lobehub/tts", +"tts", +"@lobehub/ui", +"@neondatabase/serverless", +"@next/third-parties", +"@react-spring/web", +"jest-pre", +[2,29611,32139], +"user-require-helper", +"@serwist/next", +" vector graphics", +[2,24090,32141], +"tagname", +[2,24116,7466,32165], +"svginjector", +"@t3-oss/env-nextjs", +"@trpc/client", +"@trpc/next", +"@trpc/react-query", +[3,32029,17,5], +"TapEventPlugin", +"300ms", +"http-shutdown", +"http-terminate", +"prometheus", +[2,33763,13538], +[2,30495,32158], +"dge-config", +[2,36840,32160], +"ctions", +[2,32163,32168], +[3,7214,13], +"@vercel/s", +"icss", +"lement", +[2,24116,32179], +"@4tw/cypress-drag-drop", +"peed-insights", +"@xterm/xterm", +[2,4609,2759], +"brotli-wasm", +"alert", +[2,29706,32174], +"-and-timezones", +"dexie", +"drizzle-orm", +"commoner", +[3,10755,11], +"hydrate", +"coverify", +"es3ify", +"infima", +"grunt-jest", +"jasmine-t", +"apreporter", +[2,32184,32185], +"drizzle-zod", +"populist", +"drizzle-", +"gpt-tokenizer", +[2,32192,32193], +"inferno-hy", +"perscript", +[2,23910,13494,32197], +[2,9944,9847], +[2,9944,591], +"-to-backend", +"js-sha256", +"vnode", +"createVNode", +[2,32237,1098], +[2,14040,1276], +[3,1898,19], +"lay", +[2,1962,32204], +[2,2783,3758], +[3,15568,16], +[2,1781,32212], +"scrolling", +"infinite", +"fixed", +[3,31752,17,3], +"langchain", +"gulp-rtlcss", +[2,26708,32182], +"langfuse", +[2,5223,32178], +[2,1861,32217], +"dark mode", +[2,32216,1732], +"lucide-react", +[2,32223,32224], +[3,3120,12], +"txt", +"react-popper", +"bootswatch", +"docstrap", +"storysource", +[2,10818,32228], +"model-bank", +"customize-cra", +[2,32234,32235], +"holderjs", +"modern-s", +"creenshot", +"react-prism", +[3,34791,12], +"logging-helpers", +"next-mdx-remote", +"nextjs-toploader", +"nuqs", +"officeparser", +[2,32244,1098], +[3,33256,22], +"github-files-fetcher", +"oidc-provider", +"ollama", +[2,7719,1612], +"partial-json", +[2,3502,33498], +"@stitches/react", +"animate-sass", +[2,3562,32254], +"trolling", +[2,32256,32257], +[3,839,14], +"gr", +[2,11932,8861], +"mocha-r", +"eporter", +[2,32259,32260], +[2,4385,32261], +"pdf-parse", +"preview jest", +[2,27010,32290], +"plaiceholder", +"posthog-js", +[0,0,32306,32313,2537], +"log-utils", +"pwa-install-handler", +"line by line", +"engine-base", +"engine-handlebars", +[2,32278,32279], +"lo", +"repl", +"lo-dash", +"react-con", +"fetti", +[2,32283,32285], +[2,4150,32282], +"-75lb", +"react-la", +[2,11072,2731], +"yout-kit", +[3,19580,11], +[2,32286,2002], +[2,5237,57], +"lws-middleware", +"-tagfilter", +"refactoring", +"printing", +[2,3715,32292], +[2,26973,32308], +"react-pdf", +"react-rnd", +"react-scan", +[2,32299,32304], +[3,3913,11], +[3,12133,19], +"tagfilter", +"prepare", +"dangerous", +"oso", +"react-wrap-balancer", +[0,1175,2323,2332,30561,2367,2459,2494,2504,2510,2530,1894,4045], +[2,17355,13771], +[3,23279,13], +[2,4627,8840], +[2,3166,32309], +"mobile-detect", +"composition", +[0,30563,30564,30565,30566,30567,30568,5131,9006], +[2,32315,32316], +"resolve-a", +"ccept-language", +"rtl-detect", +"lister", +"parse-entities", +"svix", +"tokenx", +"ts-md5", +"@red", +"grunt-jasmine-node", +"@redis/bloom", +"@redis/", +[2,32326,5576], +"unstructured-client", +"@redis/json", +[2,32326,7193], +"use-merge-value", +"time-series", +[2,32326,32332], +"mobilegrade", +[2,20223,16460], +"sniff", +"word-extractor", +[2,32339,594], +"zustand-", +[1,2343,32427], +"@cfaester/enzyme-adapter-react-18", +"ocly/openapi-core", +[2,32323,32342], +[2,32348,3005], +"nth-child", +"nth", +"rc-hammerjs", +[3,30906,13], +[3,1750,11], +[2,1186,3939], +[2,32349,32350], +"theme-redoc", +[2,32349,32352], +[2,32356,32366], +[3,8286,13], +"@lobehub/i", +"heme-common", +[2,32355,32357], +[2,20201,594], +"is-alphanumerical", +"api-doc", +[3,32351,12], +[2,32362,10958], +"is-decimal", +"is-hexadecimal", +"18n-cli", +[2,32047,671], +"netlify-plugin-cache", +[2,32370,553], +[3,32127,16], +[2,32047,32373], +"cssinjs", +"seo-cli", +[2,28427,32375], +[3,28091,16,8], +"just-curry-it", +"reducers", +[2,17790,32377], +"@next/eslint-plugin-next", +[2,16479,1414], +[3,1905,16], +"icorn-camelcase", +[2,32381,32382], +[2,4321,9776], +[2,2130,32384], +"@peculiar/webcrypto", +[2,16931,32388], +"roma-js", +"@wdio/selenium-standalone-service", +"babelrc-rollup", +[2,32398,32399], +"insert-line", +[2,5316,1464], +[2,3944,2700], +"queryselector", +"shadowdom", +"rdme", +"@types/cr", +"ypto-js", +"@types/ip", +"tanstack", +[2,32403,32404], +"gulp-str", +"eamify", +"rc-tools", +"@redux", +"-saga/core", +[2,32406,32407], +[2,32417,32419], +"tappable", +[2,33060,1501], +[3,13875,15], +"lias", +[2,32412,32413], +[2,3807,32442], +"effects", +"@types/nu", +"side effects", +"meral", +[2,15461,32423], +[2,32422,364], +"@actions/", +"idc-provider", +"redux-m", +[2,32424,18716], +"@types/pg", +[0,32428,32472,2514,2537], +[0,30585], +[2,32430,32439], +"@types/r", +"ecmarkup", +[2,32437,32438], +"gulp-emu", +[3,2453,9], +[2,32434,2995], +[2,2505,4088], +"@readme", +[3,23709,18,8], +"tl-detect", +[2,5051,32441], +"ystemjs", +"ful", +[2,24167,32455], +"dbdocs", +"dpdm-fast", +[2,32189,32451], +"goober", +"jest-esm-jsx-transform", +"parcel-plugin-css-to-string", +"use-throttled-effect", +"dbml-generator", +"abstract", +"hex", +"wai-aria", +"ice-detect", +[2,32466,38], +"drizzle-kit", +[2,1949,32459], +"dx", +"is-hidden", +"fake-indexeddb", +[2,9335,6424], +"just-diff", +"smart-tv", +"smarttv", +[3,15570,11], +[2,3506,4581], +[2,3862,32492], +"mcp-hello-world", +[2,12285,2527], +"remark-mdx", +[0,188,11018,30592], +"simple-routing", +[3,23352,11], +"mdx-", +"jsx-a", +[2,32476,5714], +[2,32475,32477], +[2,8137,32478], +[2,8909,32479], +[2,32474,32480], +"serwist", +"snapshot-", +[2,32483,1182], +"-bubble-menu", +"vercel-ai", +"nano-equal", +[2,1849,32489], +"-fuzzy", +"azure-openai", +"shouldComponentUpdate", +"file-viewer", +[2,3862,15571,32498], +"visual-model", +"stt", +[1,2343,32500], +"quicklook", +"-v2", +[2,3862,3730], +[0,0,32501,32517,2487], +[0,33043,442,34111,30737,4874,7677,22839,1177,1895,1942,1982,2807,25209,2990,20085,1894,19713,30762,23535,4131,1531,4507,91,4523,1984], +[2,31995,32503,32515], +"observab", +"image-gallery", +"image-viewer", +[2,32510,32530], +[2,32508,32509], +"vitepress-", +"plugin-group-icons", +[2,5119,32511], +"vg", +"issue-", +[2,32512,57], +[2,21520,22370], +"ility-otel", +[2,32518,32526], +[0,30769,8893,7595,7517,6564,7265,1209,3776,7268,6081,4799,553,91,4545,614,6731,6435,594], +[3,217,9], +"mock-stdio", +[3,3998,15], +"ebpro", +[2,32520,32521], +[2,9785,24387], +[3,23523,21], +[2,32524,3874], +"ndicator", +"progressbar", +"distribution", +"indeterminate", +"-charts", +[2,3862,32543], +[1,2343,32533], +[0,32534,32537,32542,2487], +[0,30787,28465], +[2,17092,32536], +"-path", +[0,11536,29317,30792,8850,1397,1556,2020,2070,30794,3510,1689,29444,4042,4174,4227,91,8550,28865], +[2,32539,21172], +[3,5079,24], +[2,11147,970], +[2,5557,970], +[0,6996,668,5362,28865,4042,2924], +"youtube-iframe", +[2,3115,19101], +"unified-args", +[2,32563,5066], +[1,2343,32548], +[0,0,32549,32555,2523], +[0,442,7677,1177,1938,1942,30828,1964,1966,2832,1531,30835,91,4523,1983,1984], +"ackends", +[2,32904,990], +"iframe", +[2,3993,6424], +"@cacheable/utils", +[0,21354,91,2844,7020,7119,30841,20179,7047], +[1,2343,32642], +"@apphosting/build", +"@atomico/rollup-plugin-sizes", +"git-branch-is", +"remark-slug", +"react-spring", +[2,32565,10896], +[3,30798,17], +[2,32575,32576], +[3,32557,12], +"-isomorphic", +[2,23276,32566], +[2,25131,32566], +[2,32570,32574], +[3,32041,11], +"@bedrock-layout/use-forwarded-ref", +"gmail-send", +[2,4807,31528], +"ython-interpreter", +[3,3895,11], +"-singleton", +"text-hex", +"ssrf-safe-fetch", +[2,32589,32623], +[3,23054,11], +"ent-config", +[2,32580,32581], +"ntributors", +[2,24218,32583], +[3,9343,15], +"gap", +[2,32585,32586], +[3,9347,9], +[3,30640,22], +"cense", +[2,32588,32590], +[3,23078,23], +[2,32592,10663], +[3,23082,24], +[2,32594,7210], +[3,23085,14], +"get-nonce", +"le-extension", +[2,32596,32598], +[3,23085,18], +[2,32600,23076], +"rst-", +"heading-", +[2,32603,2970], +[2,32602,32604], +[2,32596,32605], +[3,23092,13], +[2,9398,590], +[2,32607,32608], +"consec", +"utive-blank-lines", +[2,32610,32611], +[2,23099,32612], +"emphasis-", +"as-heading", +[2,32614,32615], +[2,23099,32616], +"name-articles", +[2,2093,32618], +[2,23099,32619], +[3,32620,25], +[3,32612,12], +"rast-color-function", +"dashes", +[2,32622,32624], +[2,32621,32625], +"irregular-", +[2,32627,7169], +[2,32621,32628], +"mixed-case", +[2,32621,32630], +"@theuiteam/lib-builder", +"crawler-detection", +[2,32746,31528], +"outer-dashes", +[2,32621,32635], +[3,23118,23], +[2,32637,8958], +"punctuation", +[2,32637,32639], +"missing-", +[0,0,0,32677,2487], +[2,31635,32673], +"blank-lines", +[2,32641,32644], +[2,23099,32645], +[3,32646,16], +"ulti", +"ple-toplevel-headings", +[2,32648,32649], +[2,32647,32650], +"dollars", +[2,5124,32652], +[2,23099,32653], +[2,16065,17537], +[2,23099,32655], +[3,32656,18], +[2,32657,591], +"ordered-", +"list-ma", +"rker-value", +[2,32660,32661], +[2,32659,32662], +[2,23055,32663], +[3,23139,22], +"-alignment", +[2,32665,32666], +[2,17998,2585], +"retext-english", +"retext-", +[2,10832,2195], +[2,32670,32671], +"ai-v6", +[2,32675,32676], +[3,32643,13], +"sdk-v4", +[0,3358,1564,10057], +[2,32700,7174], +[3,23096,14], +"nk-title-style", +[2,32679,32680], +"maximum", +"-heading", +[2,32683,15309], +[2,32682,32684], +[2,23055,32685], +[3,32686,20], +"line-length", +[2,32687,32688], +[3,23113,30], +"ed-urls", +[2,32690,32691], +[3,23113,25], +"s-in-section", +[2,156,32694], +[2,32693,32695], +[3,32617,18], +"ty-url", +[2,32697,32698], +[3,31198,34], +"-paragraph", +[2,15403,32701], +[2,32637,32702], +[3,23118,16], +[2,32704,14550], +[2,170,23116], +[2,23099,32706], +"-like-url", +[2,11043,32708], +[2,23099,32709], +"ed-fu", +"ll-reference-image", +[2,32711,32712], +[2,14475,32713], +[2,23124,32714], +[3,32715,39], +[2,32716,163], +[3,32672,14], +[2,32718,3997], +[2,31228,27863,32721], +"bsorbers", +[2,32723,32724], +[3,32720,20], +"emitters", +[2,32722,32726], +"-shape-circle", +[2,32728,32729], +[3,32725,35], +"square", +[2,32731,2585], +[3,31244,19], +"autolinker", +[2,32734,32735], +[3,31244,14], +"lim", +[2,31281,14858], +[2,31281,32738], +"roll", +[2,31281,32740], +"tilt", +[2,32742,32743], +[3,32739,22], +"winkle", +[2,31281,32745], +"wobble", +"tua-", +[2,4511,32078,4366], +[1,2343,32763], +"caseless", +[2,32752,2855], +"aws-sign2", +[3,32674,18], +"oauth-sign", +[2,3013,2660], +"forever-", +[2,32755,4575], +"har-validator", +"is-typedarray", +[2,2666,1580], +"use-callback-ref", +"taper", +"karma-cli", +[0,32764,32771,32780,2399], +[0,8181,26057,28329,28607,28620,28631,28632,28672,28673,26364,28963,29273,28685,30585,31857,31902,32411,33136,34082,33056,33586,33588,33590,33591,34083,33592,33600,33601,33604,33613,33623,10981,10984,37051,34087,28709,1556,16230,28718,28761,28780,28805,28883,28896,28911,2161,36538,28964,3090,3189,31530,28974,3510,29049,15451,4382,29050,4383,27921,27438,29161,29165,29219,29220,29235], +"glob-bin", +"use-sidecar", +"JSDA", +"stealthy-require", +[3,4010,16], +[2,32769,364], +[0,29267,29290,29295,10614,34092,11016,11018,31408,29304,1177,2559,29332,3980,4543,1984,29887,29323,188,13151], +[2,32774,32779], +"thenable", +[3,5430,21], +"useRef", +"createRef", +"merge refs", +"vconsole", +"ummary", +[0,29345,29332,8588,4383,12951,188,12072,6284,91,10309,181,4380,5130,29346], +[1,2343,32785], +[2,32783,32784], +"detect-n", +"ode-es", +[0,0,32791,32799,2443], +[2,4807,1845], +"@react-pdf/renderer", +"code spliting", +"sidecar", +[2,4625,8119], +[0,5087,1192,4468,4474,4493,91], +"index.js", +[2,32028,33976], +"is-wayland", +"copy-text-to-clipboard", +[2,32797,32798], +"mutation", +"-observer", +[0,5995,10906,24299,29527,29563,29565,29575,29576,29658,29706,29723,1623,6802,4967,29731,29730,29842,29845,29868,29963,30047,30133,30136,30161,30163,30487,91,30489,30501,30523,30562,30569,30574,30591,30593,30600], +"-tslint", +[2,1009,32800], +[3,1009,11], +"/analyze-trace", +[2,32802,32803], +[2,1977,2528], +"micro-", +[2,32806,7906], +"svelte-loader", +[1,2343,32837], +"down-config", +[3,13476,17], +"ntext-async-hooks", +[3,36559,16], +"ResizeObserver", +[2,32817,11937], +"worktop", +[3,8809,20], +[2,17214,5477], +"perty-rule-prelude-list", +"path-parse", +"scss-loader", +"-flag", +[2,6846,32822], +[2,15884,32823], +[3,1790,16], +"copy-dir", +[3,8119,14], +[3,32790,18], +"vue-scroll", +"vue-scrollbar", +"vue-plugin", +"滚动条", +"eartbeat", +"lory.js", +[2,33112,33113], +"adjust-sourcemap-loader", +[0,32838,32846,30825,2487], +[0,29304,26699], +[2,32841,10238], +[2,4807,1955], +[3,31435,16], +"cls-hooked", +"myrmidon", +[2,31436,2018], +[3,30380,15], +[0,1192,1177,4042,4468,1894,91,5087,4880,1895,1955,2780,1011,1009], +"ncredible", +[2,32845,32847], +"ensor", +[2,4914,32849], +"secrets", +[2,16645,32851], +[3,25837,16], +"anjs-rules", +[2,32853,32854], +"fatum", +[2,14560,6816], +[2,3335,32857], +"telegram", +[2,21386,32859], +"vesta", +[1,2343,32868], +"react-camera-pro", +"documentate", +"idebar", +"umentate", +[2,25821,32866], +[0,0,32869,32882,2523], +[0,4880,4883,89,3824,91], +"better-npm-run", +"clamp.js", +[2,19825,4627], +[2,1870,32872], +"ewma", +[2,4031,24388], +"spdy", +"karma-fixture", +[2,20441,6543], +"restify-", +"clients", +[2,32879,32880], +[0,89,28946,6847,30858], +"watershed", +"@applitools/utils", +"DTrace", +"karma-opera-launcher", +[1,2343,32893], +[3,18613,12], +"convict", +[2,32957,32963], +"antora-component", +"@dataui/crud", +[0,32898,32902,32915,2523], +"is-uuid", +"rewrite-imports", +"quit", +"shutdown", +[0,30939,30941,30944], +"terminate", +"kill", +"serviceworker", +[0,30949,30951,30953,30954,30961,30966,30973,30976,30977,30980,30984,30985,30988,31003,31007,31024,31033,31036,31053,31060,31065,31067,31068], +[2,32904,11017], +[3,32884,12], +"@types/webrtc", +"NoSQL", +"reql", +" language", +[2,3766,32908], +"applitools", +"eyes-sdk", +"test automation", +"visual regression", +[2,32731,27819], +[0,26591,1973,5472,13083,6969,1429,1145,1745,31077,31079,31080,1776,1204,6813], +"accelerate", +"detectrtc", +[2,32892,30665], +[2,32920,614], +[3,32918,13], +[1,2343,32935], +[2,32923,32931], +"install-p", +"json-copy", +[2,28093,32924], +[2,31281,32933], +"nano-copy", +"plain-", +[2,3425,1496], +[2,32928,32929], +"eers-cli", +"prepend-file", +"life", +[2,32937,32938], +[0,0,30812,30825,2523], +[1,2343,32964], +[3,32737,23], +"tate", +"drag-drop", +"plasmo", +"camera", +"prebuild", +"-install", +[2,32942,32943], +"webcam", +"-os", +[2,642,32946], +"practice", +[2,15090,32948], +"cam", +"Automation", +"pixel", +"blob-to-buffer", +"recognition", +"webRTC", +"autohotkey", +[3,35870,14], +"drag drop", +"machine", +"drag & drop", +"learning", +"react-h5-audio-player", +"itro-modules", +[0,32974,33037,33040,2523], +[2,32995,8745], +[3,16005,16], +[2,32966,4142], +"-twoslash", +[2,4614,32968], +[2,9408,32969], +[2,15125,5711], +"date-time", +"flru", +[0,31384,31735,34024,31315,31330,31358,34025,31361,31362,30375,31368,31378,31383,3266,9011,4763,9355], +[2,33470,33475], +[3,30686,19], +"pinia", +[2,15476,8961], +"wasm-pack", +"@expo/spawn-async", +[2,32982,147], +"@parcel/c", +"@parcel/fs", +[2,32985,5602], +[3,5367,15], +[2,5368,7158], +"mnemonic-id", +"node-object-hash", +"@plasmohq/init", +[2,32991,32992], +"@plasmohq/", +"parcel-config", +[2,32994,23], +[3,32990,19], +[3,10848,14], +"@plasmo/config", +[2,32999,33003], +"js-cleanup", +[3,32996,11], +[3,4058,16], +[2,33000,3874], +[2,25572,1155], +"stants", +[2,33006,594], +"removal", +"@plasmo/", +[2,33006,5130,33008], +"-shared", +[2,4807,32965], +[2,13843,19101], +"ixins", +"visionOS", +"tvOS", +"macOS", +[2,33018,89], +"3-drag", +[2,6491,33016], +"@iconify/", +"cpp", +[2,4861,24847], +[2,33022,2847], +"static-s", +[2,21897,33024], +"sass2less", +"swift", +"player", +"mse", +"commenting", +[2,14034,13828], +[3,19570,16], +[2,33030,2649], +"spdx-", +"eme", +"jsi", +"satisfies", +[2,33032,33035], +[0,8818,4874,4880,4883,89,3824,1984,31390], +[2,2369,2284], +[3,32978,18], +[0,31398,3287,4592,31399,89,4963,181,4967,4380,31400,31406,31407,31408,6070,31409,30210,31410,31422,31423,31424,31431,31432,31433,31454,31466], +"p-banner", +[2,33039,33041], +[2,33044,147], +[3,5517,19], +[1,2343,33049], +[2,8147,14773], +"ts-expose-internals", +[2,13888,2150], +[0,0,0,33054,2537], +[2,1884,10791], +"buffer-es6", +"process-es6", +"astrojs", +[0,3563,1623], +"compliance", +[2,33060,33585], +"dset", +"flattie", +"magicast", +[3,31902,18], +"zod-to-ts", +"xxhash-wasm", +"yocto-spinner", +"@oslojs/encoding", +[2,33066,33067], +"@astrojs/c", +"ompiler", +[2,34674,13535], +"zod-to-json-schema", +"http-cache-semantics", +[2,33072,33073,3984], +"@astrojs/m", +"arkdown-", +[2,34674,6943,19687], +[2,7185,33076], +"-object-hash", +"MappingURL", +[2,4225,33077], +[1,2343,33081], +"@types/dlv", +[0,33089,33090,33091,2537], +"rehype-toc", +"astro-scripts", +[2,33085,33086], +[3,24220,12], +"titles", +[2,4807,9485], +[2,4807,33070], +[0,26675,26678,26684,26690,26685,3259], +[0,5087,4874,1596,1192,1894,3951,3980,4094,4468,4474,1531,4521,91], +[0,12659,8124,1745], +[1,2343,33094], +"strata", +[0,33095,33102,33103,2523], +[0,9355,9307], +"nd-cache-dir", +[2,16785,33096], +[3,13364,12], +[2,33098,1095], +"graphlib", +[3,4069,16], +[0,1983,89,2220,3824,26744,966,1030,972,968,30521], +[0,89,2220,31523,1932,1745,25677], +[1,2343,33105], +[0,33106,33107,33108,2523], +[0,2611,3478,1759,31533,33507,3084,31534,2226,31535,2845,33062,31609,31536,31750,31548,31617,31619,31571,5328,31610,31623,29421], +[0,4763,4493,1177,2205,4042,1984,4473,23203,91,53,4874,31629,31631,31634,32643,2069,10879,8818,32674,32750,7677,31636,33137,31639], +[0,31408,31645,29486,4575,31646,31647,31656,31657,31658,3151,2041,91,31659,5130], +[1,2343,33132], +"fuzzysearch", +"sander", +[3,29704,20], +"ntax-descriptor-syntax-production", +"@types/d3-", +[2,33114,4552], +[2,33114,1473], +"force", +[2,33114,33117], +"hierarchy", +[2,33114,33119], +[2,33114,16662], +[3,33121,11], +[2,33122,1659], +"@saintno/comfyui-sdk", +"@virtuoso.dev/masonry", +"treemap", +"sunburst", +[2,13480,33130], +"diagram", +"jaeger", +[2,13475,4715], +[0,0,33135,33217,2523], +[2,5088,33134], +"dfkit", +[0,107,972,5087,1742,1192,3286,1894,89,3824,3904,4039,4468,91], +[2,33142,33147], +[2,31635,3965,553], +[2,33141,20760], +[2,33140,23], +[3,34681,19], +[3,10210,16], +[3,32411,20], +"testrunner", +"@next/", +"@next/env", +"@rspack/core", +[3,26697,11], +[3,5215,12], +"piccolore", +"-optimizer", +[2,11928,33150], +[2,33148,33151], +[2,4850,14643], +"css/metrics", +[2,4202,33154], +[2,17189,33155], +[3,28436,14], +[2,33157,16358], +[2,33157,6805], +[3,33159,15], +"rimitives", +[2,33160,33161], +"turborepo", +"triples", +[2,29314,33164], +[2,27913,1237], +[2,33144,33166], +[3,33167,15], +"nomodule", +[2,33168,33169], +[2,3878,3007], +[2,33144,33171], +"@next/swc", +"@taskr/clear", +"ac-colors", +"@taskr/esnext", +"mphtml-validator", +[2,9165,33177], +[2,10880,1179], +"i-info", +[2,4857,33180], +[3,11796,15], +[2,33182,10366], +[3,7808,17], +"rve-s", +[2,16826,9654], +"tatic-core", +[2,33185,33187], +[2,33184,33188], +"hsv", +"@types/fresh", +"urry", +[2,7887,33192], +"th-to-regexp", +[2,28121,33194], +"atform", +[2,28175,33196], +"@types/send", +"amphtml-validator", +"async-sema", +"lch", +"cli-select", +"color-names", +"client-only", +"cmyk", +"comment-json", +"mix", +"edge-runtime", +[2,13773,1194], +"lodash.curry", +"native-url", +"string-hash", +"taskr", +"unistore", +"watchpack", +"harmonies", +[0,89,3286,23803,3287,38,3212,1973,5472], +[1,2343,33219], +[0,0,33220,33224,2487], +[0,603,8862,811,816,6373,5535,30867,5087,13204,31087,11016,17494,11018,13072,1503,1567,1610,1192,2780,2832,2990,15324,1894,4042,4073,4076,4201,29889,4383,4468,91,1983,188,4639,4646,19235], +[3,18758,12], +"ogress", +[2,33221,33222], +[0,188,8588,31685,31687,31700,7838,29889,31702,1802,17819,29953,31703,91,31704,4453,5131,5284,4627,181], +[1,2343,33226], +[0,26338,0,33234,2537], +[2,27135,16460], +[2,33229,33521], +[3,30464,13], +"domparser-rs", +"rtl", +"ltr", +[2,33461,33965], +[0,3857,5128,31912,89,5131,12295,12296,181,15571,35060,158], +[2,33236,18200], +"get-port-", +[2,33238,33239], +[3,5366,9], +"tter-sqlite3", +[1,2343,33241], +[0,33242,33246,25117,2487], +[0,30784,20378,16860,3530,3561,28865,27921], +"@antfu/ni", +"run series", +"@dotenvx/dotenvx", +[0,58,31292,5180,30787,37017,28465,8862,811,16808,10895,24725,9743,37012,28572,1415,1457,1544,1573,1594,1615,30023,1759,1763,37014,668,1869,2007,984,28575,31308,18584,3090,3189,11480,3266,3445,3493,3510,34928,3527,3613,3616,37015,28119,24759,29444,4042,4060,2278,21688,4200,37013,4072,4955,27438,4729], +[2,4807,30228], +[1,2343,33252], +"LINQ", +"FRP", +[2,29445,1732], +[0,0,0,33278,2537], +[2,33254,8253], +"@vitejs/", +[2,23354,6708], +[2,5,33255], +"side-effects", +[2,14614,33257], +[3,1705,12], +"ruiser", +[2,33259,33260], +[3,18106,16], +[2,33262,2429], +[2,1921,33274], +"tslint-etc", +"no-toplevel-property-access", +[2,4491,33266], +"tslint-no-", +"unused-", +[3,5804,11], +[2,33270,1429], +[2,33269,33271], +[2,33268,33272], +"wc", +[2,9352,364], +"datagrid", +"survey-core", +[0,3857,5128,12295,12296,28641,1616,5131,1149,4160,28654,28656,16722,31824,31825,3348], +[1,2343,33280], +[0,0,2667,31019,34352], +[1,2343,33300], +" allocate", +[2,1398,33282], +[2,17681,1965], +"2fa", +"hotp", +"uninitialized", +"topt", +[2,33290,33291], +"google a", +"uthenticator", +[2,33294,7120], +"mock-env", +[3,5165,11], +"dist-tag", +"one time password", +"prepublish", +[2,37718,20105], +"2 factor", +[0,33301,33306,33372,34352], +[0,5145,30551,30583,5154,7709,28384,30584,13437,30602,30603,30609,30610,13187,30814,12207,7948,30824,30866,30887,30906,31178,31179,31247,31255,31263,32003,32008,32010,32031,32975,32034,32035,32502,32041,32569,32042,32043,32045,32053,32059,32060,32096,32100,32127,32131,32133,29421,32134,32135,33128,33131,32787,32136,33124,32140,32146,958,32147,32148,32149,29261,32156,32157,32159,32161,33125,32169,30778,1114,13215,32171,35358,977,32173,1673,1676,32175,1687,32176,32187,31930,2069,37853,2096,4776,32190,2226,2646,2681,23913,32194,29762,2696,12105,32198,32208,2928,32213,32216,32220,3021,32221,3096,32222,3127,26568,32230,32232,3266,3286,3285,32239,32240,29306,3415,32241,32242,32246,32247,31407,32248,32249,32250,32263,29899,3513,3519,3533,32266,3555,32267,20325,32270,3765,3777,89,32274,3824,11366,12229,3837,32280,15575,32295,3882,32296,3885,32297,32298,32305,3984,3988,3989,32314,32317,4135,4164,9348,32578,4302,4341,32320,26713,4376,32321,32322,11804,32328,4566,32331,3348,32337,4729,4745,4763,9355,32338], +"@sai", +"lshq/lodash", +[2,33302,33303], +[2,4807,4588], +[0,192,37097,32344,32354,32367,32369,32371,32374,32379,32386,8648,27424,21120,968,972,974,32387,32391,5245,4864,32400,8818,4870,5139,4874,32409,32420,33133,32426,4880,4883,32429,5254,32440,11800,9315,9241,29891,7677,12384,1529,1556,1610,1620,32444,1759,1763,32445,32446,32457,1177,32458,32461,2151,2070,2559,2675,28375,32463,2990,1209,3117,32469,3171,3310,640,32470,3478,1894,3985,9340,32471,3992,28380,4131,32482,4320,4494,4507,91,4549,4555,1983,1984], +"captains-log", +"js-f", +"ile-", +[2,33309,19101], +[2,33308,33310], +[2,9480,33311], +"flaverr", +"survey", +"i18n-2", +"include-all", +"surveyjs", +"-as-action", +[2,32959,33318], +"survey-library", +"pack-process", +[2,32959,33321], +[3,33322,12], +[2,33323,1552], +[2,20100,3031], +"ictionaries", +[2,27239,33326], +"parley", +"rttc", +"form-component", +"-generate", +[2,4104,33331], +"sails-", +"stringfile", +[2,33333,33334], +"skipper", +"-addresses", +[2,4082,33337], +[2,22775,33338], +"whelk", +"form-rendering", +[2,33323,2150], +"@sailshq/", +[2,33343,705], +"survey-renderer", +"root-require", +"dynamic-form", +"hook-orm", +[2,33333,33348], +[3,33349,11], +"sockets", +[2,33350,33351], +[2,24095,33358], +"sails.io.js", +"-store", +"-file-store", +[2,1577,33356], +"-form", +"mvc", +"form-library", +"form-management", +"web-framework", +"sailsjs", +[2,8631,33366], +"sails.js", +"naire", +"data-collection", +"data-validation", +"input-validation", +[3,7842,12], +"schema-form", +[0,5130,31409,31431,3287,32486,31407,32490,32494,32132,32495], +[2,33374,3552], +[3,14944,11], +[1,2343,33468], +"truncate-", +[2,33467,33631], +"utf8-bytes", +[2,33376,33378], +"js-api", +"mktemp", +[2,30767,33384], +"filename", +"wasm-nodejs", +[2,31208,22074], +[2,11183,6882], +[2,13167,33388], +"abs", +[2,33391,10271], +"parse-srcset", +[3,13169,16], +[3,13405,16], +[2,11183,614], +"ostrophe", +[2,33392,33394], +[2,11183,158], +[2,33398,1020], +[3,33396,15], +[2,11183,33400], +"steps", +[2,33402,2699], +[3,33387,17], +[2,11183,18346], +[2,33405,9997], +[3,33403,15], +[2,13163,11218], +[3,32049,11], +[2,33407,13756], +"-sin", +"gle-context", +[2,33409,33410], +[2,2784,33411], +[3,31591,11], +[2,4961,4184], +[2,33413,33414], +[3,4927,10], +[2,11183,3811], +[2,33421,1799], +"glob-importer", +[2,33416,33419], +[3,33399,15], +[2,33421,10205], +[2,33421,10222], +[2,33425,184], +[3,33393,15], +[2,33427,10261], +[3,11185,16], +[2,33429,18338], +[3,13162,15], +[2,33429,5449], +[2,33432,9939], +[3,13162,17], +[2,33434,11206], +[3,33404,16], +[2,3115,11415], +[2,33439,33440], +"bare-script", +[2,1818,11415], +[3,27467,17], +"tions", +[2,33442,10148], +[3,33417,15], +[2,13167,11241], +[2,33445,33446], +[3,33418,16], +"gmented", +[2,33442,33448], +"agination", +[2,33389,11245], +[2,33397,11211], +[2,11183,9044], +[2,33453,33457], +[3,5050,13], +"food", +"drink", +"helpful", +[3,14673,16,7], +"ourcesoftware", +[2,8423,33458], +[2,25184,33466], +[2,41,3874], +"teaching", +"experi", +[2,33463,1744], +[2,13527,591], +"local-npm-registry", +[3,5123,14], +[0,33469,33476,6151,2523], +[0,546,8605], +[3,32034,11], +"ecdh", +"ecdsa", +"solver", +"bplist-creator", +"etch-sse", +[0,8616,91], +"seed", +[1,2343,33480], +"oxfmt", +[0,33481,23733,33483,2523], +[0,29421,6494,1525,2026,12105,4548,4763], +"@bazel/runfiles", +[0,29681,29695,29718,29719,31264,1745,13083], +[1,2343,33485], +[0,33486,33487,33488,2537], +[0,7384,26870], +[0,4200,3510,89,4207,4135,1984,24324,3824,4459,11143,16485,3170,3527,27921,91,4874,5254,37085,8778,11938,32815,32818], +[0,4270,29043,1984,5472,1973,4627,4963,23246,89,188,3709,5926], +[3,21120,19], +[2,33489,3543], +"aggregate-error", +"bunup", +"env-ci", +[2,2103,18280], +"git-l", +"og-parser", +[2,33495,33496], +"-esm", +[2,18170,33498], +"p-each-series", +[1,2343,33502], +[0,33506,33508,33509,2523], +"file-url", +[2,2847,4219], +[2,17050,33504], +[0,2018,32839,32844], +"p-retry", +[0,2924,5087,4874,4677], +[0,6901,20319,1973,5472,5433,13657], +[2,33511,57], +"markdown ", +"solidjs", +"@fluentui/react-component-event-listener", +[3,33513,26], +[2,33514,2538], +[3,6061,10], +"/event-stack", +[2,4133,33517], +[2,33516,33518], +[2,8652,3858], +"oolbar", +"@artsy/fresnel", +[2,30415,594], +"standalone", +[2,54,33524], +[2,33527,33531], +"@react-s", +"@percy/cli", +"@percy/c", +[2,33529,4915], +"tately/overlays", +"anchor-js", +[3,14132,14], +[2,33535,17966], +[3,33526,15], +"ilter-imports", +[2,33533,33536], +[2,33544,33548], +"d-props", +[2,2034,33539], +[2,1249,33540], +[2,30851,1204], +[2,1199,33542], +"@react-t", +"chai-enzyme", +"react-ace", +"react-code", +"ypes/shared", +"sandboxer", +[2,33547,33549], +"ource-render", +[2,3890,33551], +"react-static", +[2,33559,6649], +"-routes", +[2,33553,33555], +"niversal-component", +[2,12273,33557], +[3,3911,17], +"satisfied", +[3,4134,12], +[2,33561,1623], +[1,2343,33569], +"simulant", +"ta-scripts", +[2,4409,1231], +"@aws-lite/client", +"@aws-lite/s3", +[0,0,33570,33584,2537], +[0,1173,1175,1195,1267,1272,1280,1282,32870,1429,32871,34009,1652,1676,1705,1177,1903,1958,1970,2054,2092,2151,2629,2651,2297,2878,2881,2895,32877,26470,2897,2900,2904,32886,2906,2912,2915,2925,2899,3363,3524,4039,37320,12826,4131,4535,37871,4027,2924,4681], +[3,21564,23], +[2,33571,1219], +[2,18124,16284], +[2,33575,7625], +[3,2001,11], +"bikeshed", +"mock-tmp", +"semicolon", +"tap-arc", +"@casl/dx", +"cloudfunctions", +"apigateway", +"api gateway", +[0,6398,20986,32888,32054,31512,4453,35062,6970,5131], +"drag-handle-vue-3", +[2,33060,33587,4403], +"floating-", +[2,33060,33589], +"horizontal-rule", +[2,33060,158], +[2,33060,26074], +[2,33060,33597], +"eraro", +"fast-sa", +"fe-stringify", +[2,33594,33595], +[3,28051,11], +"gate-executor", +"gubu", +[2,31908,1783], +"@tiptap/pm", +"ordu", +"patrun", +[2,31908,33607], +"rolling-stats", +"use-plugin", +"starter-kit", +"@seneca/test-plugin", +"lab-", +[3,29583,11], +[2,33610,2528], +[2,33609,33611], +[2,33621,33622], +"-entity", +[2,4136,33614], +"seneca-e", +"rror-test", +[2,33616,33617], +"seneca-", +[2,33619,19138], +"@tiptap/s", +"uggestion", +"@tiptap/vue-3", +"micro-service", +[2,33624,591], +[3,14587,13], +"minimum", +"viable", +"startup", +[1,2343,33632], +"orklets", +[0,33637,33651,33665,2523], +[2,10196,21009], +"Sentimental", +[2,11183,9352,3392], +"nlp", +[0,32905,32917], +"@farmfe/cli", +[2,6283,33647], +[2,35438,35525], +"dottie", +[2,1153,1430], +[2,4140,30807], +"sort-class", +[2,17693,33644], +"wkx", +"-testing", +[3,9786,10], +[2,33648,103], +[2,33900,147], +[0,4880,4883,8152,1009,1011,1540,1177,1895,1955,1959,32922,32932,1894,4042,4076,4474,4484,91], +"chai-datetime", +"esdoc", +"-ecmascript-proposal-plugin", +[2,33653,33654], +"esdoc-", +"inject-", +[2,4306,1932], +[2,33657,33658], +[2,33656,33659], +[2,18124,1932], +[2,33656,33661], +"ibm_db", +"js-co", +[0,32941,32945,32950,89,12295,12296,5131,32955], +"@webgpu/types", +"mbinatorics", +[2,33664,33667], +"mariadb", +[1,2343,33693], +"jmp", +"node-hook", +"p-props", +"p-settle", +"pg-hstore", +"fail-on-", +"sav", +"s-store", +"major-bump", +[2,33676,33679], +[2,21386,33680], +"snowflake-sdk", +[2,33691,33692], +"db2", +"snowflake", +"object ", +"relati", +"onal mapper", +[2,33687,33688], +[2,33686,33689], +"@prisma/m", +"anagement-api-sdk", +[0,0,33694,33695,2487], +[0,89,3857,21166,33377], +[0,3857,2171,12295,12296,33012,33013,33014,33019,5130,89,33025,970,5260,2062,33034,7671,8632,1283,22743], +[1,2343,33698], +"@tinymce/tinymce-react", +[0,33699,0,33715,2487], +[0,31680,28069], +"@ser", +"ialport/binding-mock", +[2,33700,33701], +[3,33702,19], +"s-cpp", +[2,33703,33704], +[3,33702,12], +"n1ed", +"byte-length", +[2,15497,33708], +[2,33706,33709], +[3,33710,19], +"cctalk", +[2,33711,33712], +[2,33711,28979], +[0,1473,1623,57], +"-byte-timeout", +[2,6941,33716], +[2,33711,33717], +[1,2343,33720], +[0,0,0,33752,34352], +"packet-length", +[2,33711,33721], +[2,33711,3925], +[3,33723,23], +[2,33724,1493], +[3,33723,21], +[2,33726,17402], +"slip-encoder", +[2,33711,33728], +[3,33729,20], +[2,10972,4383], +"@heroicons/react", +"pacepacket", +[2,33730,33733], +[2,33706,3101], +[2,33743,33747], +"ccTalk", +"com port", +"COM", +"data logging", +"hardware", +"modem", +[3,8292,9], +"nodebots", +"RFID", +"sensor", +"plus/elements", +"serial port", +"sms gateway", +"sms", +"UART", +[0,1512,1623], +[2,32092,91], +[2,33755,33756], +"react-li", +"b-tools", +"update-check", +"@zeit/schemas", +"is-po", +"rt-reachable", +[2,33759,33760], +[2,33769,33770], +"@vercel/", +"style-guide", +[2,33763,33764], +"@types/ser", +"ve-handler", +[2,33766,33767], +[3,2909,10], +"serve-directives", +"ts-blank-space", +"vitest-fail-on-console", +[1,2343,33776], +"windowed", +"temp-path", +[0,33778,33779,33780,2487], +"favicon", +[0,33243,53,58,5889,92,33245,29421,33305,1393,1525,1595,1680,1699,1687,2020,2071,2151,31401,2674,2929,3244,3310,3445,3467,3561,3681,3742,3930,30228,4382,4473,4480,4588,4763,33069], +[0,10879,4864,7812,33247,4039,4493,4507,91], +[0,4963,181,4380,31398,31400], +[1,2343,33782], +[0,0,0,33783,2487], +[0,89,188,23332,4607,33275,33276], +"@extend-chrome/messages", +[2,33786,13901], +[3,33784,15], +"@types/chrome", +[1,2343,33793], +"@types/jsesc", +[2,33791,33792], +[3,32170,13], +"nspect", +[0,0,33805,33809,2487], +"chrome-extension", +"webext", +"webextension", +"verless/utils", +[2,33700,33797], +[3,33010,17], +"z-commitlint", +[2,5465,33800], +[3,33798,12], +[2,33802,1973], +[3,4156,10], +[0,5087,4874,1009,1011,1177,1886,1895,1938,1955,1958,1966,1982,2070,1192,1894,4039,4042,4052,27720,4076,4468,4474,4508,4514,17223,91], +" plugins", +[2,33804,33806], +"aws lambda", +[0,33285,28946,33286,33288,33289,33292,33296,33298,5165,33299,202,1388,4967,5995], +" web services", +[2,6997,33810], +".com", +[2,33804,33812], +[1,2343,33815], +[0,0,0,33816,2487], +[0,33314,1669,33317,33320,33330,33341,33345,33347,33353,33360,33361,33364,33367,33368,7021,33369,33370,1781,2845,33371,33345,12899,4967,5284,91], +"isoformat", +"cdk/aws-lambda-python-alpha", +[2,13562,33818], +[3,7709,16], +[2,33820,7308], +"eventbridge", +[2,33820,33822], +[2,33820,13573], +"ns", +[2,9191,33825], +[2,9191,3763], +[2,9191,4799], +[2,17253,33832], +"lib-dynamodb", +[2,13548,33830], +"-tree-1d", +[1,2343,33855], +"htl", +"util-dynamodb", +[2,13548,33835], +"@types/d3", +"aws-cdk-lib", +"iot-device-sdk", +[2,9194,33839], +"caporal", +"-highlight", +[2,14558,33842], +"apache-arrow", +[3,9167,11], +[2,33845,33839], +"d3-geo-projection", +"@types/aws4", +"esbuild-r", +[2,33849,8736], +"jsii", +"jsii-diff", +[2,17111,7268], +"jsii-docgen", +[0,33856,0,29047,2537], +[0,28872,13411,13412,13388,1137,1170,30051,1362,33474,18220,2139,2188,2070,22410,21226,6698,1209,3074,3220,3275,27534,2072,3547,3919,4025,4108,4135,4165,4351,13400,4507,3348,4707,4753], +"jsii-pacmak", +[1,2343,33859], +[0,33861,33862,33864,2537], +"obuild", +[0,30293,26557], +[0,4874,30306,30305,30310,4039,1531,91,1984], +"type-plus", +[0,30297,13527,5592,5995,2679,23932], +"ge-parser", +[1,2343,33870], +"flow-re", +"move-types", +[2,33867,33868], +[0,33873,33874,33875,2537], +"isequalwith", +"date-fns-tz", +[0,2611,3510,1689,15452,8550,28862,33235,28142,15261,23531,2670,28282,12207,31026,20745,28283,31737], +[0,4493,1984,16473,15450,91,4874,19759,31794,5517,28203], +[0,3724,25638,32916,2703,5001,3304,5472], +[2,33892,33895], +"@emnapi/runtime", +"@img", +"/sha", +"rp-libvips-dev", +[2,33879,33880], +[2,33878,33881], +"-wasm32", +[2,33882,33883], +[3,33882,19], +"win32-ia32", +[2,33885,33886], +[3,33887,25], +"x64", +[2,33888,33889], +"emnapi", +"string-s", +"-reader", +"exif-reader", +"plit-by", +"dzi", +"thumbnail", +"libvips", +"vips", +"@farmfe/c", +"cargo-cp-artifact", +[2,14736,34112], +"skia", +"offscreen", +"compositing", +[1,2343,33917], +"vulkan", +"metal", +"flmngr", +[2,4167,14994], +"shelljs-", +[2,33911,3979], +"travis-", +"changes", +"check-changes", +[2,33913,33915], +[0,33919,33922,33923,2487], +"makefile", +[0,33567,33568], +"imgpen", +"unsplash", +[0,33574,1610,1177,3173,33577,3421,3752,33579,4389], +[0,7200,13573,6997,33804,6599,33581,33582,7308,6949,6808,33583,5130], +[1,2343,33925], +[0,33926,33931,2514,2537], +[0,33666], +"bitly", +"shorten", +"mongoid", +"tinyid", +[0,1787,91,18279], +"kapok-js", +[1,2343,33934], +[0,33939,33946,33947,2399], +"should-", +"should-equal", +[2,33935,1671], +"should-type", +[0,89,3824,33697], +"-adaptors", +[2,33938,33940], +"should-util", +"@types/listr", +"houldjs", +[2,1901,33944], +[0,3775,4039,4487,4469,3744,91,53,4874,4880,1195,4883,5090,1167], +[0,4445,6092,33707,89,6038,1936,6105,7062,27968,9381], +[2,32223,2636], +"pdf-generation", +"assignments", +"homework", +"html-to-pdf", +"grunt-endline", +"quiet-grunt", +"semver-sort", +[1,2343,33957], +[0,0,33958,33960,2523], +[0,30703,442,9307,33731,33732,29273,33736,968,972,974,5364,7806,7639,4874,4880,4883,31397,4992,1413,1497,1536,1639,1177,1961,7585,2203,2675,2832,2990,3105,3127,3561,1894,21024,89,33753,3824,5564,33754,3885,4073,4079,33762,4164,4200,4382,4383,4072,33771,4474,4494,91,4523,29139,1983,26744,32255,1984,33772,9355], +"Function URL", +[0,89,6071,4607,11316,33774,3392,32209,32210,3912,176,10052,21604], +[1,2343,33966], +"plugin-open", +[2,33911,33962], +"Durable function", +"-sdk", +[0,33967,34002,34003,2523], +[0,10895,31832,1084,1448,1573,1676,37014,2071,2151,2835,3090,3510,3527,3878,4042,4094], +"@secretlint/secretlint-rule-github", +[2,33970,3378], +[3,33968,28], +[2,33972,33973], +[3,28473,18], +"ap-runner", +"secretlint", +"@vue/tsconfig", +"extender", +"fs-core", +[2,33979,27106], +[3,18529,16], +[2,33979,202], +[2,33980,33982], +"-builtins", +[2,33984,33985], +[3,33981,21], +"to-fsa", +"@kwsites/file-exists", +"@kwsites/", +[2,9466,14834], +[2,33987,33988], +[2,33984,594], +[3,33989,17], +[2,33991,27725], +"@sim", +"ple-", +"git/babel-config", +[2,33994,33995], +[2,33993,33996], +[2,33979,24171], +"source ", +[2,33999,12619], +[2,33979,8745], +[0,33784,33785,8862,811,8850,816,840,20978,33787,5244,5245,4864,11300,33789,4874,4880,4883,1009,1011,1030,11016,1457,668,33850,1177,1959,11348,3400,34971,89,3824,4039,4057,15277,3709,4507,91,1983,33790,1984,188], +[0,4080,11504,3195,33794,7188,33795,33796,1388,33799], +[1,2343,34005], +[0,34006,34016,2514,2523], +[0,1653,33817,33829], +[2,29234,34008,34010], +"pec-", +"custom-event", +[3,11133,16,9], +"ant-stuff", +[2,13112,34011], +[2,32845,34012], +"rrect-lockfile", +[2,33664,34014], +[0,1414,33834,4494,1983,2832,2899,1424,1177,4042,2203,1894,4473,33837,4614,442,91,4874,2820,6503,33844,17113,19181,33847,8850,33853,17112,10615,3112,1895,811,1011,816,1009], +[3,8136,10], +"nalyzer", +[2,32412,34018], +"-navigation", +[1,2343,34022], +[0,34023,34045,34046,2487], +[0,20584,2131,2674,33876], +[2,31395,1542], +[2,34026,34042], +[3,34030,17], +"is-safe-filename", +[2,5600,34029], +"recurse", +[2,28756,18346], +"@asciidoctor/core", +[2,29611,34035], +"samsam", +[2,11122,34033], +"site-publisher", +[3,11134,16], +"plugin-n", +"o-prototype-methods", +[2,34037,34038], +[2,34036,34039], +"@studio/changes", +"ropdown-menu", +"@openspacelabs/react-native-zoomable-view", +"clock", +[0,23531,4874,33901,2611,3297,4449], +[0,1424,10798,33903,33904,29727,15344,11812,158,11806,33905,8924,33907,33908,2636,8221,9561], +[1,2343,34054], +[2,29611,34049], +"asciidoc-loader", +"vendor", +"mocks-", +"and-spies", +[2,34051,34052], +[0,34056,34057,34058,4139], +"asciidoc", +[0,33909], +[0,4469,91,2924,4677,89,3824,4880,4883], +[0,89,33909,2090,1586,10057,33920,158,6038,9229,33921,6997,6949,13531,20614], +[1,2343,34069], +"express-json5", +"-readme", +[2,8924,34061], +"-htpasswd", +[2,4199,34063], +"fs-ext", +"crypt3", +"pod-install", +[2,13888,2036], +[0,34072,34073,34074,2523], +"pinch-to-zoom", +"pinch", +[0,37082,26380,17214], +[0,1984,3541], +[0,1388,3541,4627,17050,1973,5472], +[1,2343,34077], +"@polka/url", +[0,34079,34080,34081,2537], +"totalist", +[0,1138,1437,1457,2182,2185,2226,2600,2685,2991,3127,3758,4135,13834], +[0,33943,8147,5254,33768,1166,1424,3421,29899,1894,3706,28593,4474,4481,91,1906], +[0,33948,200,33949,1745,33950,33951,1783,2636,3758,3197,33952], +[3,33056,29], +[2,33060,34084], +"node-range", +"bytes-iec", +"nanospinner", +[2,37050,6579], +"budget", +[3,13526,12], +[2,34089,34088], +[1,2343,34094], +[2,959,34093], +"table-core", +[0,34095,34100,28315,2523], +[0,1437,4747,28172,32884,28236], +"file size", +" size", +[2,7204,34097], +"get size", +[0,4874,32551], +[1,2343,34102], +[0,34103,21592,34106,2523], +[0,4135,32884,28236,28200], +"-cognito-identity-js", +[2,6997,34104], +[0,32910,32912,32913,13428,5472,6533], +"skapi", +[1,2343,34109], +[0,34110,34117,34120,2537], +[0,31855,28236,28200,32884], +[2,20327,1984], +"-no-globals", +[2,17375,34114], +"ormat", +"unloader", +"seperator", +[0,2065,34007,32903,13426,3536,11132], +[2,34119,12675], +[3,36879,12], +[0,32910,32912,32913,13428,5472,6533,29724], +"is-fullwidth-code-point", +[1,2343,34123], +[0,34124,34126,34129,2537], +[0,1525,940,999,32138], +"random-item", +[0,32889,33932,34031,34032], +[2,29611,34128], +"file-publisher", +[0,29699,200,1179,1745,29703,29753], +"publisher", +"folder-size", +[2,2183,34131], +[1,2343,34135], +"js-extend", +[0,34138,0,34140,2537], +"math-sum", +[2,7627,1413], +[0,34048], +"tablify", +[0,29699,32891,5457,34055,1745,29703,29753], +"slow", +[1,2343,34144], +"dts-plugin", +[0,26338,34145,34146,4139], +[0,5467,21155,10614,5087,4870,4880,5091,1009,1011,1529,1177,1895,1955,2675,1192,34067,1894,89,3857,21166,3980,91], +[0,3857,5128,12295,12296,34070,34071,5131,970,4627,6624,16660,37460,4420,4384], +[1,2343,34153], +[2,5051,34149], +"cheduler", +"htmlcs", +"standards", +"WCAG", +[0,34155,34158,34159,2399], +[2,2287,33914], +[0,4419], +"urlify", +[2,21831,364], +[0,32426,3519], +[0,25638,14873,5472,17878,4419], +[1,2343,34162], +"stage-js", +[0,34163,34164,2514,2487], +[0,31292,3530,9354], +[0,25366,33243,33638,33650,16804,33146,4874,20374,29891,1112,19839,33902,668,1177,34113,2807,2990,3090,28865,4042,9245,1531,91,34115,29470,1983,1984,2924,4677,29161], +[2,4609,12607], +[2,4609,34168], +[2,18124,1781], +"pages", +" output", +[2,3721,34169], +" standard", +[2,4216,34171], +"standard ", +[2,34173,3721], +" for ", +[2,34175,4255], +[2,25264,34176], +[3,34177,11], +[2,34178,9338], +"stylish ", +[2,34180,16237], +[2,34180,4255], +[2,1983,6872], +[2,34183,22156], +[1,2343,34192], +"box2d", +"game", +"physics", +"axios-ntlm", +"xml-crypto", +"2d", +[0,14631,0,34193,2487], +[0,29699,32891,20204,1745,29703,29753], +"@types/sax", +[1,2343,34196], +[0,34202,0,34210,2399], +[2,4005,34198], +"s-cli", +[3,26390,16,13], +"base64id", +[2,9246,25513], +[0,34127], +[2,34204,2403], +[3,5556,15], +[2,34206,34690], +[3,28724,15], +[2,7686,34209], +"@socket.io/component-emitter", +"minify-templates", +[0,29699,32891,34130,1586,1745,29703,29753], +[1,2343,34212], +[0,34213,0,29047,2523], +[0,10744,1209,3084,25886], +[1,2343,34215], +[0,0,34223,34248,2523], +[2,34217,158], +[3,5386,10], +"faceoff", +[2,34220,34221], +[3,16767,16], +"erformance-monitor", +[2,16766,6812], +[0,107,442,4856,7677,1091,1177,1895,1894,4039,4060,4193,4072,4481,4484,4508,4514,4523,1983,34165,34166,34183,34184,4614,1984], +"fast-wrap-ansi", +"@rslib/core", +"eventsource", +"oxc", +"sockjs", +[2,28573,34230], +"rslib", +[2,28606,34232], +"rstest-config", +[2,34234,6847], +[3,10235,18], +[2,29314,3090], +"@pnpm/list", +"@pnpm/workspace.find-packages", +[2,1463,20001], +[2,37509,34240], +"eeverse", +[2,34242,34243], +[3,4892,10], +"npkg__lockfile", +"fast-npm-meta", +"@nolyfill/internal", +[2,34247,35011], +"@nolyfill/", +[0,34186,12075,5284,91,34187,34188,16284,34191,5131], +[1,2343,34250], +[0,0,34251,34252,2523], +[0,107,4874,1009,1011,17494,1177,1895,2025,2899,1894,34197,4060,34199,4193,4508,4514,91,1983,34165,34166,34183], +[0,12075,34187,22894,8691,16284,34191,1424,16697,5122,5131], +[1,2343,34255], +"separated", +[0,34256,0,34257,2537], +[0,4447], +[0,4525,5284,34227,33479,1894,91], +[1,2343,34259], +[0,0,0,34285,2537], +"fumadb", +"microfiber", +[3,8277,10], +"alars", +[2,34262,34263], +"load-files", +[2,5527,34265], +"compact", +[2,3715,34267], +[2,9470,34268], +"@anvilco/apollo-server-plugin-introspection-metadata", +"kysely", +"bdd-lazy-var", +"@orpc/zod", +"@orpc/otel", +"neverthrow", +"introspection", +"@c15t/logger", +"-query", +[2,34276,34278], +"@orpc/server", +"@orpc/openapi", +"@orpc/contract", +"@c15t/translations", +[2,13498,202], +[0,4796,26481,2968,31176,6646,3378,3420,9478,6666,3552,4135,18710,7671,33163,33186,18280,9527,4749], +"kysely-pglite", +"@c15t/vitest-config", +[2,34289,34290], +"@libsql/", +"kysely-libsql", +"string-t", +[2,34295,21160], +"o-stream", +[2,34291,34293], +"@c15t", +[1,2343,34322], +"consent", +"privacy", +"ccpa", +"binary-split", +[2,7241,14922], +"lgpd", +"self-host", +"consent-management", +"user-privacy", +[2,34307,34308], +"data-pro", +"tection", +"cookie-banner", +[2,34304,34311], +"-platform", +[2,2339,5365], +"cmp", +[2,34315,7179], +"consent-", +[3,5079,14], +"imageinfo", +"prettydiff", +"sprity-css", +"/common", +"sprity-lwip", +[0,0,34323,2514,2537], +[0,29713,34235,635,34236,34237,811,8850,816,23339,8712,28206,34239,34241,29308,1525,1707,34244,3749,3527,4079,34245,34246], +"object-stream", +[1,2343,34327], +"through2-spy", +[0,34329,0,29047,2443], +"coordinates", +[0,13387,13412,13388,20908,13395,1170,1362,1364,2026,29067,2670,1209,3084,3162,3237,3509,4148,4507], +[1,2343,34332], +"css-sprite", +[0,33469,33476,6151,2443], +[1,2343,34334], +[0,34335,33476,6151,2443], +[0,31874,546,8604,8605], +[1,2343,34337], +[0,34338,34339,34340,2399], +[0,4763,16230,15095,34260,34271,34273,4341,34274,34275,32176,34277,34280,34281,34282,34283,13471,34284,13495,13502], +[0,3244,32426,6526,91,4874,34286,6494,34287,12207,34288,33237,34292], +[0,34297,34298,7229,34299,34302,5995,34303,34304,34305,33055,34306,34309,34310,34313,34314], +[1,2343,34343], +"asn1", +[0,34344,34346,34347,2399], +[0,2105,3527,2072], +"bcrypt-pbkdf", +[0,28177,4880,1701,3442,21166,91], +[0,3857,12295,12296,31937,6574,6635,5128,31912,89,5131,181,1017,45,13814,22875,2414], +[1,2343,34349], +[0,34350,0,34351,4139], +[0,4597,3173,940,34048], +[0,29699,32891,1563,1745,29703,29753], +1772409600000, +[1,2343,34361], +"integrity", +"subresource integrity", +"sri", +"sri hash", +"sri ", +"sri string", +[2,34358,1179], +[0,0,34362,34381,34352], +[0,34363,32558,48,53,5240,83,87,34368,34369,5583,6373,1178,1193,17217,24621,29883,34370,29775,1540,1759,1177,1935,1938,27790,2126,29945,35634,2675,1192,11896,32206,11348,11350,3534,34376,1894,3720,3758,34197,4042,34377,4060,4073,4079,4146,91], +[2,34364,34365,34367], +[3,5215,13], +"ollup-plugin", +"shuruhatik", +[3,10697,17,6], +"@fezvrasta/tsc-silent", +"@khanacademy/flow-to-ts", +[2,34374,34375], +"long-", +[2,4252,591], +[2,34371,34372], +[3,14697,22], +"place-variables", +"poster", +[2,34378,34379], +[3,11802,15], +"low-entry", +"version-guard", +[0,8190,8191,5399,8192,34384,34385], +[3,12809,13], +[2,34382,7051], +"popper", +[2,8194,34386], +" engine", +[0,0,7997,7998,34352], +[1,2343,34390], +[3,1570,26], +[0,0,34394,34396,34352], +"fig-spec", +[2,34389,34391], +"dotgitignore", +[0,10615,6503,4874,1387,1429,2899,3363,4042,4426,91], +"std-mocks", +[0,34397,2238,34398,16629,7521,34399,29804,31687,1993,16284,9006,34400,34401,8424,34402,6829,26514,34403,34404,34406], +"anime", +"anime.js", +"timeline", +"easings", +"cubic-bezier", +"splitText", +"WAAPI", +"Canvas", +"ban-sensitive-files", +"WebGL", +"deps-ok", +"dont-crack", +"git-issues", +"pre-git", +"simple-co", +"mmit-message", +[2,34411,34412], +[0,9116,9122,9131,34352], +[1,2343,34416], +[0,7967,7938,7939,34352], +[1,2343,34418], +[0,0,0,10570,34352], +[0,0,12106,12107,34352], +[1,2343,34422], +"modern-syslog", +[0,0,11488,34424,34352], +"winser", +[0,7789,34425], +"decrypt", +"etsy", +"metric", +[0,34430,34436,34440,34352], +"aggregation", +[0,34431,34432,34433,34434,34435], +"ev-emitter", +"fizzy-ui-utils", +"get-size", +"imagesloaded", +"unidragger", +[0,1462,1177,34437,34439,2907,4320,4323,4072], +[2,1949,34438], +"etafizzy", +"jquery-bridget", +[0,4453,6398,34441,31512,32054,35060,36197,1388], +"flick", +[0,17201,17202,17203,34352], +[3,11146,12], +[1,2343,34445], +[0,0,34446,34448,34352], +[0,1429,1700,2323,2367,22122,2409,2447,2494,2530,34447,2899], +[2,22465,35458], +[0,6901,27679,16626,3220,3222,1666], +[0,0,0,18014,34352], +[1,2343,34451], +[0,0,0,34452,34352], +[0,17199,16892,2869,3166,34453,11326,207,20531,57], +"lex", +[1,5293,34455], +[0,8391,34352], +[1,2343,34457], +[0,34458,0,2514,34352], +[0,1395], +[0,20095,20097,2514,34352], +[1,2343,34461], +[0,0,34462,34463,34352], +[0,2080,4389], +[0,18012,25866,18108,34464,30091], +"maths", +[3,10821,18], +"11y", +[2,34465,34466], +"pannellum", +[1,2343,34470], +[0,0,34477,34483,34352], +[3,32229,23], +"hots", +[2,34471,34472], +"-puppeteer", +[2,34473,34474], +[2,10818,31765], +[0,2899,2025,16189,34478,34482,3469,1149], +[2,34481,2844], +"orchbox", +[2,22060,34479], +"persist-", +"jugglingdb", +[0,11415,3469,34482,16189], +[2,4270,676], +"patternlab", +"-pat", +[0,53,61,83,87,90,92,442,10615,29767,6061,16607,6063,6065,16608,16612,29769,1193,20517,29775,1503,1593,1610,1177,15510,1942,2026,2323,2338,2544,2765,24652,29778,1192,2780,1776,29779,2990,9750,5103,29780,29783,3758,3957,4131,4523,1983,29770,27900], +[1,2343,34495], +"tern-library", +[2,34486,34489], +[2,21043,34490], +"django-", +[2,34492,5354], +"jinja2", +[0,0,0,34496,34352], +[0,34497,11328], +"panorama", +[0,26328,26329,26330,34352], +[1,2343,34501], +"findit2", +[0,34502,0,2514,34352], +[0,3760,13126,4747,4709,3259,4545,1481,16734,1512,4720], +[1,2343,34504], +[0,7936,7938,7939,34352], +[0,0,0,23762,34352], +[1,2343,34507], +[0,34509,34512,34518,34352], +"funsert", +[0,3744,34511], +"into-stream", +"rip-out", +[0,48,53,78,87,90,94,1148,1596,1843,1845,1177,34514,17585,1951,1959,2832,2899,3421,89,3824,32510,34517], +"Assert", +[2,34515,34516], +[3,1886,16], +"daddy-react", +"setup-env", +[0,8221,3857,21610,34519,11512,89], +"compatiblity", +"compatibl", +"ity", +[0,0,0,23771,34352], +"-metadata", +[2,26612,34523], +[0,11976,4874,7677,12690,3377,3446,7461,9245,91,1984], +[1,2343,34529], +"livestream", +[2,34527,3642], +[0,0,34530,2514,34352], +[0,53,87,811,13866,816,1198,1290,1389,2766,2297,2871,2881,2886,2898,6387,2923,3758,4042,4045,34531,20981,34533,20983,4073,4650], +[2,34532,671], +[3,15277,16], +[2,15476,34534], +"ass", +[1,2343,34536], +[0,0,34538,2514,34352], +"gulp-rimraf", +[0,4039,3188,34539,34543], +"testit", +"string.js", +"stringjs", +"S", +"gethub", +[1,2343,34545], +[0,0,34546,34548,34352], +[0,48,53,87,1178,1261,1177,1881,1895,1938,1955,1192,1894], +"codsen-utils", +[0,6270,4202,1413,34549,57,34550,17180,14638,12786,30946,2382,2098,2090,7017,6435,6270,15253,3721], +"bits", +"iec", +"ranges-apply", +0, +"ranges-push", +"string-le", +"ft-right", +[2,34554,34555], +0, +"onkey-traverse", +[2,19434,34558], +"ranges-invert", +0, +"jsp", +"mixed", +"xhtml", +0,0,0,0, +[2,2183,7230], +0,0,0,0,0, +"-html4", +[2,26854,34575], +[3,34576,19], +[2,34577,27769], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"payment processing", +"credit cards", +0,0,0,0, +[2,2168,3081], +"sdk-", +[2,34608,1102], +[2,26424,34609], +"fly-register", +[2,202,34611], +"strong-agent", +0, +"strong-arc", +"strong-build", +0,0, +"strong-deploy", +"strong-m", +"esh-models", +[2,34620,34621], +"strong-re", +"gistry", +[2,34623,34624], +"strong-start", +"strong-s", +"upervisor", +[2,34627,34628], +0, +"core-util-is", +"strong-de", +"bugger", +[2,34632,34633], +"wagger-ui", +[2,34627,34635], +[3,4369,10], +"-validate", +[2,22188,34638], +0,0, +"LoopBack", +"Platform", +"alerts", +0,0, +"event loop", +0,0, +"heroku", +"nodeops", +"npmrc", +"openshift", +"slc", +"est functions", +[2,34141,34655], +"strong-cli", +"strong-cl", +"uster-control", +[2,34658,34659], +"strongops", +"upstart", +0,0,0,0, +[2,27954,1699], +[2,27954,2070], +[2,27954,3144], +"@zip.js/zip.js", +[2,3503,4549], +0, +"@astrojs/check", +"@astrojs/", +"starlight", +[2,34674,34675], +[2,12310,1430], +[3,811,8], +[2,34678,1388], +"@shoelace-style/shoelace", +[2,13283,8891], +0, +"astro", +"hanbi", +"escape-at", +[2,2827,34685], +"jsdoc-ts", +[2,2701,1932], +[2,34687,34688], +"lit", +0, +"dictionary", +[2,19319,34692], +"Android", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[2,19801,2741], +"css-t", +"o-react-native", +[2,34716,34717], +0, +[2,11832,14438], +[2,5129,10699], +[2,4881,34721], +"rame", +[2,34723,10699], +[2,11364,34724], +"-plugin-rtl", +[2,7917,34726], +0,0, +"ts-toolbelt", +0,0,0,0,0,0, +"bunchee", +"stylis-", +0, +"rule-sheet", +[2,34738,34740], +0, +"zeit", +0,0,0,0,0, +"hack", +0,0,0,0,0, +"globjoin", +"-tag-names", +[2,18110,34756], +"-nested-selector", +[2,5250,34758], +[2,30273,34759], +0, +"svg-tags", +0, +"github-info", +[2,6018,34764], +"@styl", +"elint/prettier-config", +[2,34766,34767], +[3,34768,11], +[2,34769,19692], +[3,4852,9], +"lanced-match", +[2,34771,34772], +[3,25558,14], +[2,34774,5260], +[2,4865,4565], +"murmurhash", +[2,8802,34777], +[3,13059,16], +[2,34779,2706], +0,0, +"@types/svg", +"-tags", +[2,34783,34784], +"ylelint", +[2,17371,34786], +0,0, +"set-stylelint", +[2,32137,34790], +[3,3676,10], +[2,34792,367], +0,0,0,0,0,0,0, +[3,4323,16], +0,0,0,0, +[2,1280,8554], +0,0, +"css-values", +"shortcss", +0, +"dela", +"ration", +0,0, +"-strict-value", +[2,34813,34816], +[2,34812,34817], +"keyword", +"z-index", +0,0,0,0, +"orting", +[2,3677,34825], +0, +"udochenkov", +[2,25790,34828], +0, +"ed-syntax", +[2,30481,34831], +[3,24627,16], +"hudochenkov", +[2,34833,34834], +0,0,0,0,0, +[3,30356,14], +[2,34841,27739], +0, +"github-c", +"s-list", +[2,17551,34845], +[2,34844,34846], +0,0,0,0,0,0,0,0,0,0,0, +[3,1369,11], +[2,34859,30480], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"jar", +"cookiejar", +0, +[2,33935,27], +0, +"tinyify", +0, +"frisbee", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"promised", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"capability", +"16m", +0,0,0,0,0,0,0,0,0,0,0, +"periscopic", +0,0,0,0,0,0,0,0,0,0, +"@types/sade", +[3,27700,21], +[3,27700,22], +[2,34941,20500], +[3,9566,10], +[2,34943,2847], +[2,4353,34944], +0,0,0,0,0, +"@kiwi/eslint-config", +"@kiwi/", +[2,34952,7628], +0, +"@types/pug", +0, +"easy-import", +[2,3562,34957], +0,0,0,0,0, +"@res", +"vg/resvg-js", +[2,34964,34965], +"prettysize", +0, +[3,30071,12], +"hromium", +[2,34969,34970], +0,0,0,0,0,0,0,0,0,0,0,0, +[3,4362,11], +0,0,0, +"lease-notes", +[2,15842,34988], +0, +"precache", +0,0,0,0,0, +"tape-promise", +0, +"autogen", +0,0,0,0, +"multil", +"ang-", +[2,2055,4298], +[2,35005,35006], +[2,35004,35007], +0,0, +"promise.any", +0, +[2,29351,7625], +0, +"readmeio", +0,0,0,0,0, +[2,4364,12659], +[3,4367,9], +"emplates", +[2,35022,35023], +0, +"swagger UI", +0,0,0,0,0,0,0, +"s-readme", +[2,9828,35034], +[2,11941,35035], +0,0,0,0,0,0,0,0,0, +"nodelint", +"still", +[3,29280,15], +0,0, +"travis-cov", +0, +"jinja", +0,0,0,0, +"swipe", +"framework7", +"gallery", +0, +"slideshow", +0,0,0,0, +[2,14507,3048], +[2,2655,35067], +0,0, +"sync-rpc", +[2,21658,705], +0, +"flowgen2", +0,0,0,0,0, +" information", +[2,623,35080], +"sysinfo", +0, +"freebsd", +"openbsd", +"netbsd", +"cpu", +"cpuload", +"physical cores", +0,0, +"logical cores", +"cores", +0, +"socket type", +"fsstats", +"diskio", +" devices", +[2,1359,35098], +"netstats", +[2,6072,591], +[2,11996,35101], +"network ", +"connections", +[2,35103,35104], +"network stats", +"iface", +"printer", +"processes", +"users", +"internet", +"battery", +0,0, +"docker stats", +"docker ", +[2,35116,35109], +0, +"graphic card", +"graphic c", +"ontroller", +[2,35120,35121], +0,0, +"disk layout", +"audio", +0, +"bluetooth", +"wifi", +0, +"wifinetworks", +0, +"virtual box", +"virtualbox", +"BIOS", +"chassis", +0,0,0,0, +"@jsenv/file-size-impact", +"-style-", +[2,21605,3733], +[2,35142,35143], +[2,13565,35144], +"symbol-es6", +0,0,0,0,0,0,0, +"hase", +"draht", +"limes", +"lusca", +"partof", +"timer2", +0, +"uuidv4", +"crypto2", +"nocache", +"datasette", +0, +"json-lines", +0, +"processenv", +"stethoskop", +0, +"flaschenpost", +"-events", +[2,8891,35172], +0, +"nodeenv", +"roboter", +0, +"assertthat", +[2,35166,4219], +0, +"cqs", +"cqrs", +0,0,0,0,0,0, +"className", +0, +"classList", +0, +"override", +0,0,0,0, +"dlv", +0,0,0,0,0,0, +"@tapjs/after", +[2,35205,27554], +"@tapjs/a", +"sserts", +[2,35207,35208], +"@tapjs/", +0, +"@tapjs/before", +[2,35212,27554], +"@tapjs/chdir", +0, +"@tapjs/core", +[2,35210,7131], +"@tapjs/fi", +"xture", +[2,35218,35219], +[2,35210,9261], +"@tapjs/mock", +"node-ser", +"ialize", +[2,35223,35224], +[2,35210,35225], +"@tapjs/run", +[2,35210,8745], +0, +"@tapjs/spawn", +0, +"@tapjs/stdin", +"@tapjs/test", +"@tapjs/t", +[2,35234,2528], +[2,35210,6812], +[2,4026,1204], +0, +"tapjs", +"tapjs plugin", +0,0,0,0, +"tap-out", +0, +"tapes", +0,0,0,0,0,0,0,0,0,0,0, +"resumer", +[2,23236,35259], +"@ljharb/t", +"hrough", +[2,35261,35262], +[2,5613,7067], +"dotignore", +[2,2565,15126], +0, +"ecstatic", +[3,3404,9], +"osix-or-windows", +[2,35269,35270], +0, +"harness", +0,0,0,0, +[2,9497,29051], +"chownr", +"yallist", +0, +"chmodr", +0, +"-to-array", +[2,2018,35284], +0,0,0,0,0, +"brittle", +0,0,0,0,0, +"b4a", +"fast-fifo", +"streamx", +0,0,0,0,0,0, +[2,6346,6770], +"DDD", +[2,6346,8726], +0, +"front end", +0, +"back end", +0,0,0,0, +"cz-format-extension", +0,0,0,0,0,0, +"telegram-api", +"telegram-", +"client-api", +[2,35325,35326], +"tdlib", +"tglib", +[3,3299,10], +0,0,0,0,0,0,0,0,0,0,0, +"tempdir", +"tmpfile", +0,0,0,0, +"unique-s", +[2,35348,8961], +0,0,0,0,0,0, +"@cronvel/get-pixels", +0, +"chroma-js", +"lazyness", +0,0, +"gen-events", +[2,3286,35362], +"seventh", +"string-kit", +0, +"tree-kit", +0, +"256 colors", +0, +"true color", +0, +"input field", +"gpm", +"screenbuffer", +"textbuffer", +"32-bit", +0,0,0,0, +"charm", +"visualwidth", +0, +"80s", +"ibm", +0,0,0,0, +[3,5012,18], +[2,35391,4226], +0, +"@ls-lint/ls-lint", +"astring", +0,0,0,0,0,0, +"glify-js", +[2,7817,35402], +0,0,0,0,0,0,0,0,0,0,0,0,0, +"multiline-ts", +"spawn-p", +[2,35418,4357], +0,0, +"only-allow", +"sinon-", +"assert-stub", +[2,35423,35424], +[2,35423,2299], +0, +"unlinted", +0,0,0,0,0, +"@deve", +"/bin-v8-flags-filter", +[2,674,35435], +[2,35434,35436], +[3,35437,12], +[2,35438,29084], +"bowser", +"chrome-", +[2,20844,8626], +[2,35441,35442], +"device-specs", +"elegant-s", +[2,35445,10252], +0,0,0, +"get-os-info", +0,0, +"import-lazy", +0, +"is-podman", +"-async-hook", +[2,3077,35456], +"-commonjs", +[2,17102,35458], +[2,17003,35459], +[2,14709,35460], +"os-family", +"pinkie", +[3,7872,10], +[2,35464,2013], +[2,2093,10903], +[2,15034,35466], +0, +"replicator", +0, +"-tools", +[2,20008,35471], +[2,4415,35472], +"testcafe-", +"hammerhead", +[2,35474,35475], +0, +"legacy-api", +[2,35474,35478], +[3,22279,11], +[2,35480,1803], +[2,35474,35481], +[3,35482,18], +[2,35483,3392], +[2,35483,6907], +[2,35483,4386], +[2,35483,28592], +0,0,0,0, +"testcafe-s", +[2,11068,1179], +[2,35492,35493], +[2,7051,4007], +[2,17475,35495], +"unquote", +"url-to-o", +"ptions", +[2,35498,35499], +0, +"@ffprobe-installer/ffprobe", +"@types/ca", +"llsite", +[2,35503,35504], +[3,5245,9], +"@types/dedent", +[3,5546,10], +"ragent", +[2,35508,35509], +"connector", +[2,26353,35511], +"caller", +"dom-walk", +[3,25792,16], +"mmerhead", +[2,35515,35516], +"express-ntlm", +"gulp-clone", +0, +"gulp-ll-next", +[3,27610,11], +[2,35522,2869], +"qunit-harness", +[2,2337,35524], +0, +"gulp-step", +"-spe", +"c-with-retries", +[2,35528,35529], +[2,32261,35530], +"sl-self-signed-certificate", +[2,8423,35532], +[3,35473,17], +"-browserstack", +[2,9962,35535], +[2,35534,35536], +0, +"automated", +"QA", +0,0,0,0, +"@types/doc", +"kerode", +[2,35545,35546], +"docker-", +[2,35548,2940], +[2,3583,33893], +"ssh-", +0, +"port-forward", +[2,20844,35553], +[2,35551,35554], +0, +[3,23843,13], +[2,35557,3015], +[3,28203,13], +"ties-reader", +[2,35559,35560], +[3,7752,11], +[2,35562,2150], +0,0,0,0,0, +"object-es5", +[2,26988,35569], +0, +"limate-test-reporter", +[2,14354,35572], +"conf-env", +[2,1611,35574], +"headerify", +"is-number", +0, +"teenytest", +[2,35579,4007], +0, +"test double", +0,0,0,0,0, +"fireworm", +"printf", +"_string", +[2,369,35590], +0, +[2,1362,23842], +"hallow-", +[2,35594,1693], +[2,21479,35595], +0, +"saucie", +0,0,0,0,0,0,0,0,0,0, +"dpdm", +"dcs", +[2,16693,35610], +0,0,0,0,0, +"three.js", +"reality", +[2,9352,35618], +"augmented-reality", +"webgl", +"webgl2", +0,0, +"webaudio", +0,0, +"webgpu", +"webxr", +0,0,0,0, +[2,2182,20], +"node-st", +"dlib-browser", +[2,35635,35636], +0,0,0,0,0,0,0,0,0,0,0, +"hundreds", +"polendina", +0,0, +"stream-spigot", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"unexpand", +"homedir", +0, +"tilde", +0,0,0,0, +"number-is-nan", +0, +"profile", +0,0,0,0, +"bee-affix", +"bee-a", +"bee-alert", +"bee-anchor", +0,0,0, +"bee-animate", +[2,35683,9820], +"bee-", +0,0, +"bee-backtop", +0, +"dge", +"bee-badge", +"bee-b", +[2,35698,9837], +"bee-button", +[2,35700,9847], +"bee-calendar", +0,0, +"bee-carousel", +"bee-cascader", +"bee-c", +"bee-checkbox", +[2,35707,142], +"bee-collapse", +"bee-col", +"orpicker", +[2,35711,35712], +"bee-co", +0, +"mplex-grid", +[2,35714,35716], +[2,35691,3812], +0, +"bee-dnd", +"bee-drawer", +0, +"bee-dropdown", +"bee-form", +0, +"-control", +[2,35724,35726], +"bee-form-", +[2,35728,7227], +"bee-icon", +"bee-i", +"nput-group", +[2,35731,35732], +0, +"-addon", +[2,35733,35735], +"bee-input-", +[2,35737,6988], +"bee-label", +0, +"bee-layout", +0, +"bee-loading", +0, +"-state", +[2,35743,35745], +0, +"bee-locale", +0, +"bee-menus", +0, +"bee-message", +0, +"bee-modal", +0, +"bee-navbar", +"bee-n", +0,0, +"otification", +[2,35757,35760], +"bee-overlay", +"page-layout", +[2,35691,35763], +"bee-pag", +"ination", +[2,35765,35766], +0, +"bee-panel", +"bee-p", +"opconfirm", +[2,35770,35771], +0, +"bee-popover", +"rogress-bar", +[2,35770,35775], +0, +"radio", +"bee-radio", +0, +"bee-rate", +"search-panel", +[2,35691,35782], +0, +"bee-select", +0, +"bee-slider", +0, +"bee-step", +0, +"bee-svgicon", +"bee-switch", +"bee-table", +0, +"bee-tabs", +0, +"bee-tag", +0, +"bee-tile", +0,0, +"bee-timeline", +"bee-time", +[2,35803,3811], +"bee-tooltip", +"bee-transfer", +"bee-trans", +[2,35807,9943], +0, +"bee-tree", +[2,35810,11245], +"bee-upload", +0, +[2,2359,1623], +"-wrap", +[2,2376,35815], +"inline-urls", +[2,21897,35817], +[2,4437,1732], +0, +"tinper", +0,0,0,0,0,0,0,0,0,0, +"tinylibs", +0,0,0,0, +"@deno/shim-deno-test", +0, +[3,4443,9], +0,0,0,0,0,0,0,0, +" threads", +[2,6812,35848], +0, +"thread pool", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"pushalert", +" toast", +[2,3857,35866], +"toastify", +[2,3862,35868], +[2,3862,9044], +"Typescript", +0,0,0,0, +"emble-js", +[2,31072,35876], +"processmd", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[3,5152,10], +"RFC6265", +"RFC2965", +0,0,0,0,0, +"tinytim", +0,0,0,0,0,0,0,0,0,0,0,0, +[2,7231,7316], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"html-select", +0,0, +"html-tokenize", +0,0,0,0,0,0,0,0,0, +"aggregate", +0,0,0,0,0,0,0,0, +"bs-logger", +"make-error", +0, +[2,6308,3065], +0,0,0,0,0,0,0, +[2,13664,6893], +0, +[3,5480,12], +"oader", +[2,35970,35971], +0,0,0,0,0,0,0, +"migration", +"migrations", +"cli-tool", +0,0,0,0, +"@ts-morph/common", +"block-writer", +[2,10988,35988], +0,0, +"static ", +[2,35992,19748], +"refactor", +[2,6721,35994], +0,0,0,0, +[2,20223,6859], +[2,20223,1276], +[2,12448,16443], +"@csp", +"otcode/source-map-support", +[2,36003,36004], +0, +"dprint", +"@swc/wasm", +"ntypescript", +"util.", +[2,36010,19138], +0,0,0,0,0, +[2,20442,7163], +"omit-deep", +0, +"power-assign", +0,0,0,0,0,0,0,0,0,0,0,0, +"bre", +"rete", +0, +"rule engine", +"rules engine", +" rule engine", +[2,5284,36038], +"js rule engine", +[2,6591,6770], +0,0,0,0,0, +[2,18284,4295], +0,0,0,0,0,0,0, +"typedefs", +"typedef", +0, +"initions", +[2,36056,36058], +0,0,0,0,0,0,0,0,0,0,0, +"polite-json", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[2,27572,4014], +0, +"codelyzer", +[3,4490,10], +"siste", +"nt-codestyle", +[2,36092,36093], +[2,36091,36094], +0, +"tslint-divid", +[2,4491,2700], +[2,13530,1334], +[2,4491,36099], +"tslint-mi", +"sc-rules", +[2,36101,36102], +0,0, +"ts-lint", +0,0,0,0,0, +[3,20474,12], +"slint-plugin", +[2,36112,36113], +0,0,0,0, +[2,4671,3209], +"joycon", +0, +"ts-e", +[2,36122,154], +0,0,0,0,0, +[3,14596,11], +[2,36129,8791], +0,0,0,0, +"@mixmark-io/domino", +0,0,0, +"-attendant", +[2,4495,36139], +0,0,0,0,0, +"grunt-comp", +0, +"onent-io", +[2,36146,36148], +[3,2243,10], +0, +"at-sourcemap", +[2,36150,36152], +"grunt-m", +"arkdown", +[2,36154,36155], +[3,2300,11], +"grunt-p", +"ush-release", +[2,36158,36159], +0, +"gex-replace", +[2,24294,36162], +[2,3503,16237], +[2,22277,36164], +"unfunk-reporter", +[2,3192,36166], +0,0,0,0,0, +"tap-b", +0, +"rowser-color", +[2,36173,36175], +"-util", +[2,4497,36177], +0,0, +"curve25519", +"ed25519", +"nacl", +0, +"poly1305", +"public", +"salsa20", +0, +"signatures", +0,0,0,0, +[2,4498,1574], +0,0, +"DOM", +"Twitter", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[2,4505,1732], +0,0,0,0,0,0,0,0,0,0, +"media-typer", +0, +"checking", +0,0,0,0,0,0,0,0,0,0, +[3,596,9], +"/material-color-utilities", +[2,36239,36240], +0,0, +[2,4511,699], +[3,4512,14], +[2,3131,4964], +"material-3", +[2,4508,1932], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"JsDocs", +0,0,0,0,0,0, +"cli-prompt", +0, +"concatenate", +0,0, +"ebook", +"pandoc", +0, +"kindlegen", +0,0,0,0, +[3,27847,12], +[2,36283,3231], +[2,12690,18877], +0,0, +"-findorcreate", +[2,3232,36288], +[2,7627,4487], +0,0,0,0, +"@sqltools/formatter", +0,0,0,0,0,0, +"-rename", +[2,22507,36302], +[3,36303,12], +[2,36304,4070], +[3,5055,10], +[2,36306,1722], +"gulpclass", +0,0,0,0,0,0, +"@dprint/formatter", +"@esfx/canceltoken", +"@dprint/", +[2,36317,91], +0, +"azure-", +"-node-api", +[2,20999,36321], +[2,36320,36322], +"mocha-f", +"ivemat-progress-reporter", +[2,36324,36325], +0,0, +"able-stylish", +[2,26072,36329], +[2,10749,36330], +0,0,0,0,0,0,0,0,0,0, +"commandpost", +0, +"wer-assert", +[2,13415,36344], +"intel", +"li-espower-loader", +[2,36346,36347], +0,0,0,0,0, +[2,5554,13774], +[2,18792,36354], +[2,13058,36355], +[3,36356,23], +[2,36357,1993], +0, +"css-utils", +[2,8802,36360], +[2,36357,16839], +"erved-words", +[2,31525,36363], +"-sync2", +[2,3613,36365], +"sass-svg", +0,0,0,0,0, +"finally", +[2,9466,36373], +[2,4532,1732], +0, +[2,27100,4255], +0,0,0,0,0,0,0,0,0,0,0,0, +"jsmin", +0,0,0,0,0,0,0,0,0,0,0, +"random-bytes", +0,0,0,0,0,0, +[2,1024,4525], +"affix", +[2,1016,36410], +[3,36411,12], +[2,36412,9809], +"uto-link", +[2,36412,36414], +[2,36412,9826], +[3,1015,12], +0, +"ack-top", +[2,36417,36419], +[3,36420,13], +[2,36421,35696], +[2,36417,9837], +[2,1015,9847], +[2,1016,9026], +[3,36425,13], +[2,36426,9854], +[3,36427,14], +[2,36428,9860], +[2,36426,9863], +[3,36425,12], +[2,36431,5449], +[2,36431,11200], +[3,36433,13], +[2,36434,3809], +"date-input", +[2,1016,36436], +[3,36437,16], +[2,36438,3811], +[3,36437,12], +"escriptions", +[2,36440,36441], +"ivider", +[2,36440,36443], +[2,36440,9997], +[3,36445,13], +[2,36446,11206], +[2,1016,3599], +0, +"file-input", +[2,1016,36450], +[3,36451,12], +[2,36452,3469], +[2,1016,10052], +[2,1016,8691], +[3,36455,12], +[2,36456,28176], +[2,36456,35971], +[2,1016,4403], +[3,36459,13], +[2,36460,10104], +[3,36459,12], +[2,36462,3852], +[3,36463,13], +"nth-picker", +[2,36464,36465], +[2,1016,22005], +[2,1016,18367], +[3,36468,12], +"in-code", +[2,36469,36470], +"opover", +[2,36469,36472], +[3,36473,13], +"rtal", +[2,36474,36475], +[2,36469,10148], +[2,1016,35778], +[3,36478,13], +[2,36479,6864], +"search-", +[2,36481,1631], +[2,1016,36482], +[3,36483,18], +[2,36484,1633], +[3,36483,13], +[2,36486,4021], +[3,36483,12], +[2,36488,10205], +[2,36488,10209], +[2,36488,11234], +[2,36488,10222], +[2,1016,176], +[3,36493,14], +[2,36494,591], +[3,36493,13], +[2,36496,10233], +[3,36493,12], +[2,36498,11241], +0, +"ime-picker", +[2,36498,36501], +[2,36498,18390], +[2,36498,10266], +[3,36504,13], +[2,36505,10271], +0, +"-checked", +[2,36506,36508], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[3,212,12], +"fns", +[2,36524,36525], +0, +"parsel-js", +0,0,0,0,0, +"citty", +0, +"mkdist", +"untyped", +"hookable", +0,0,0,0,0, +[2,3714,20], +0,0,0,0,0,0, +[3,34068,12], +[2,36551,2408], +0,0,0,0,0, +"teo.collina/tspl", +[2,599,36558], +"dns-packet", +0,0,0,0,0,0,0, +"trough", +0, +[3,9359,10], +[2,36570,4966], +0, +"retext", +0,0,0,0, +[3,4554,13], +0, +"non-repeating", +0,0,0,0,0,0, +[3,4555,10], +"xast", +"nlcst", +0,0,0,0,0,0,0,0,0,0,0,0, +"pullstream", +0, +"match-stream", +0, +"uncompress", +0,0,0,0, +"is-npm", +"pupa", +0, +"fixture-", +[2,36614,8634], +0,0,0,0,0, +"urn", +"uri mutation", +"url mutation", +"uri m", +"anipulation", +[2,36624,36625], +"url m", +[2,36627,36625], +0, +"uri template", +0, +"url template", +" res", +" locator", +[2,5585,36634], +[2,36633,36635], +[2,4549,36636], +[3,36637,17], +[2,36638,16906], +0, +"query string", +"RFC 3986", +"RFC3986", +0,0, +"RFC 6570", +0,0, +"RFC6570", +[2,23168,1932], +"ecosystem", +":jquery", +[2,36651,36652], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"ylru", +"formstream", +0,0, +"tshy-after", +[3,9725,12], +0, +"@types/busboy", +"@eggjs/tsconfig", +"@types/sel", +"fsigned", +[2,36689,36690], +0, +"strictest", +[2,25627,36693], +0, +"urlopen", +0,0,0,0,0,0,0,0,0, +"userprofile", +0,0,0,0,0, +[2,4745,57], +0,0, +"browserscope", +"ua", +"ua-parse", +"ua-parser", +"user agent", +"user-agent", +0,0,0,0,0,0,0,0,0, +"is-typed", +"-array", +[2,36730,36731], +0, +"supported", +[2,5745,36734], +[2,17393,36735], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"rfc9562", +0,0,0,0,0,0, +"bundt", +0, +"diffs", +0,0,0,0,0,0,0,0,0, +"find-pa", +"rent-dir", +[2,36779,36780], +0,0,0, +"githook", +0,0,0,0,0,0,0,0,0,0, +"sanitisation", +0, +"sanitise", +0,0,0,0,0,0, +"@vue/shared", +"@vant/popperjs", +"@vant/", +0, +"@vant/use", +0, +[2,7047,1732], +[2,5334,36811], +"able-html", +[2,1687,36813], +[2,10952,2770], +[2,36807,7625], +[2,36807,45], +0, +"area-data", +[2,36807,36819], +"@vant/cli", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"@vercel/go", +0, +"@vercel/fun", +"@vercel/next", +[2,20461,681], +"@vercel/ruby", +"python", +[2,33763,36844], +"@vercel/r", +"edwood", +[2,36846,36847], +"hydrogen", +[2,33763,36849], +"build-utils", +[2,33763,36851], +"@vercel/st", +"atic-build", +[2,36853,36854], +"@vercel/re", +0, +"mix-builder", +[2,36856,36858], +0, +"epipebomb", +0, +"promisepipe", +"tmp-promise", +0,0, +"@sentry/node", +[3,28267,12], +[2,7738,6768], +0, +"@types/dotenv", +[2,4753,4007], +[2,33763,5576], +[2,17213,2022], +"pcre-to-regexp", +"ast-commit", +[2,33495,36876], +[2,8603,18132], +[2,8603,1631], +"@tootallnate/once", +[3,546,11], +[2,36881,5449], +"@vercel/f", +"rameworks", +[2,36883,36884], +[2,3827,594], +[2,33763,36886], +[2,5745,7253], +[2,10787,36888], +[2,20290,4007], +"s-detectors", +[2,36883,36891], +[3,20485,11], +"-json-file", +[2,36893,36894], +"outing-utils", +[2,36846,36896], +[3,29115,11], +[2,36898,3385], +[3,22092,13], +[2,36900,16830], +"@vercel", +[3,9435,9], +"s/types", +[2,36903,36904], +[2,36902,36905], +0, +"node-utils", +[2,33157,36908], +[2,11836,2656], +[2,29130,36910], +[3,11296,13], +"xpect-", +[2,36913,6458], +[2,36912,36914], +[3,36906,18], +[2,36916,14181], +"@alex_neo/jest-expect-message", +[3,29110,18], +[2,36919,36910], +[2,18522,1781], +[2,36916,36921], +0,0,0,0, +"extsprintf", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"viewer.js", +0,0,0,0,0,0, +"remove-t", +"railing-separator", +[2,36948,36949], +"teex", +0,0,0,0,0,0,0,0,0,0,0,0, +"kdirp-stream", +[2,29048,36964], +"is-valid-glob", +"lead", +[2,4026,14690], +"stream-com", +"poser", +[2,36969,36970], +"to-through", +"value-", +"or-function", +[2,36973,36974], +[3,4606,15], +0,0,0,0, +"vinyl-adapter", +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"browser-split", +"ev-store", +"x-is-array", +0, +"x-is-string", +0, +"run-browser", +0, +"vtree", +0,0,0,0,0,0,0, +"artichokie", +[2,4293,16111], +"es-module-lexer", +[3,3638,15], +"@polka/", +[2,37016,1536], +0, +"build-tool", +0,0,0,0, +"slash-path", +0,0,0, +"api-router", +"api-routers", +[3,4612,15], +"rest-api", +[2,4609,37031], +[3,9244,9], +[2,37033,995], +[3,12419,12], +[2,37035,20332], +0, +"api-rest", +"Remix", +"Next.js", +0,0,0,0, +[3,6371,11], +[2,37045,1623], +[2,9408,364], +"devtools-api", +[2,5334,37048], +"@vueuse/", +[2,37050,12339], +"focus-trap", +0, +"@mdi", +"t-vue/plugin-component", +[2,37054,37055], +[3,37056,17], +[2,37057,9339], +[2,37057,11988], +"sfc", +[2,37057,37060], +[2,37057,17913], +[3,37062,18], +"oc", +[2,37063,37064], +"@mdit-vue/", +[2,37066,6579], +[3,7641,19], +[2,37068,3111], +[2,37068,3113], +[2,13058,3667], +[3,26774,14], +"thjax3", +[2,37072,37073], +0,0,0,0,0, +"@vitest/spy", +0, +"tinyrainbow", +"@vitest/u", +[2,37083,186], +[2,17213,8791], +"@vitest/s", +[2,37086,11298], +"why-", +0, +"running", +[2,21149,37090], +[2,37088,37091], +[2,17213,3717], +0, +"birpc", +"local-pkg", +[2,33157,24079], +"@antfu/", +"install-pkg", +[2,37098,37099], +0,0,0,0,0, +"node-lo", +"calstorage", +[2,37106,37107], +0, +"gulp-xo", +0,0, +"load-plugins", +0, +"vorpal-less", +0, +"vorpal-repl", +0,0,0,0,0, +"eyes", +0, +"BDD", +0,0,0,0, +"keytar", +"parse-semver", +[2,17414,28362], +0, +"eerio", +[2,16931,37134], +[3,21625,11], +[2,37136,4565], +0, +"@types/yazl", +0,0,0,0,0,0,0,0,0, +[2,9738,6985], +"@types/ic", +"onv-lite", +[2,37150,37151], +0,0,0,0, +[2,4619,9586], +0,0,0,0, +[3,36812,13], +[2,37162,965], +0,0,0,0,0, +"-libs", +[2,1988,37169], +0,0,0,0,0,0, +[3,5736,22], +[2,37177,31692], +0,0,0,0,0,0,0,0,0, +"@int", +"lify/core-base", +[2,37188,37189], +"@intlify/", +[2,37191,6579], +0,0, +"devtools-if", +[2,37191,37195], +0,0, +"vue-devtools", +[2,37191,37199], +0, +"intlify", +0,0,0,0,0, +[3,37200,13], +0, +"i18n-loader", +[2,37208,37210], +[3,7892,11], +[2,37212,3176], +[2,32119,1698], +"cache-loader", +"markdown-l", +[2,37216,35971], +"pug-p", +"lain-loader", +[2,37218,37219], +0,0,0,0,0,0,0,0,0,0, +"ightwatch", +[2,10884,37231], +0,0, +"faked-promise", +[2,28506,6706], +0,0,0,0,0,0,0,0,0,0, +"de-indent", +0,0,0,0,0, +"todomvc-app-css", +0,0,0,0, +"foreachasync", +0, +"sys", +"walkSync", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"exec-sh", +0,0,0,0,0,0, +"outpipe", +0, +"win-spawn", +0,0,0,0,0, +"encrypte", +"d-attr", +[2,37292,37293], +[3,3052,10], +"afeinteger", +[2,37295,37296], +[2,4651,18008], +"waterline-", +[2,37299,594], +0, +"active-", +[2,37302,1355], +0,0,0,0, +"vargs", +0,0,0,0, +"bdd-with-opts", +0, +"gulp-debug", +"mu2", +[2,9466,2869], +"auncher", +[2,26127,37318], +[2,20011,37319], +"mocha-p", +"arallel", +[2,37321,37322], +[2,18199,37323], +"sv-selenium", +0,0,0,0,0, +"web3-eth", +"web3-net", +0, +"web3-core", +"web3-types", +"web3-utils", +"web3-errors", +0, +"web3-eth-abi", +"web3-eth-", +0, +"web3-eth-ens", +0, +"web3-eth-iban", +[2,4654,1155], +"rpc-methods", +[2,4654,37346], +"web3-eth-a", +"ccounts", +[2,37348,37349], +"contract", +[2,37340,37351], +0, +"personal", +[2,37340,37354], +0, +"providers-ws", +[2,4654,37357], +"web3-rpc-", +"providers", +[2,37359,37360], +[3,37358,15], +[2,37362,27], +0, +"in3", +"ganache", +"ipc", +[2,37362,37367], +[3,13936,16], +"se-web3", +[2,37369,37370], +"@tru", +"ffle/hdwallet-provider", +[2,37372,37373], +0, +"Ethereum", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"@solana/spl-token", +"@solana/", +"web3.js", +[2,37391,37392], +"kva-email-service", +0, +"ed25519-hdkey", +[2,32806,37396], +"ssl-http-with-docker", +[3,4382,9], +[2,7521,12130], +[2,37399,37400], +"telegram-a", +"ssistant", +[2,37402,37403], +"web3-r", +0, +"eact-task", +[2,37405,37407], +0, +"sol", +0,0,0,0,0,0,0,0,0,0, +"assembl", +"yjs/ast", +[2,37421,37422], +[2,10672,37423], +[3,37424,15], +"wasm-edit", +[2,37425,37426], +[3,37427,20], +[2,37428,57], +0,0, +"trace-event", +[2,35441,37432], +0, +"assembly", +[2,37435,1508], +[2,4671,1194], +[2,14743,1194], +"hash-wasm", +"wast-loader", +[2,20694,6095], +"xxhashjs", +0,0,0,0, +"@disco", +"veryjs/json-ext", +[2,37447,37448], +0, +"@carrotsearch/foamtree", +"h0r", +[2,22060,37452], +[2,37453,2809], +"lodash.p", +"artial", +[2,37455,37456], +[2,3607,34809], +0, +"zoomable", +0,0,0,0, +[3,13077,13], +[2,37465,18523], +"configtest", +[2,37465,37467], +0, +[3,4863,9], +"vinfo", +[2,37470,37471], +0,0,0,0,0,0, +"@fastify/e", +[2,37479,674], +"n-finished", +[2,15461,37481], +0,0,0,0,0,0,0, +"@types/sockjs", +[3,18584,13], +"njour", +[2,16872,37492], +"bonjour-service", +0,0,0, +[3,33768,13], +[2,37498,4017], +[2,37498,2947], +0, +"-community", +[2,17013,37502], +"-history-api-fallback", +[2,11485,37504], +0, +"klona", +[2,37490,4219], +"@types/tr", +0,0, +"usted-types", +[2,37509,37512], +0,0,0,0,0,0,0,0,0, +"reloading", +[3,4631,10], +[2,37524,3642], +0,0,0,0,0, +[2,32119,4694], +[3,33945,16], +"ellscape", +[2,37532,37533], +[3,3708,23], +0,0,0,0,0,0, +"dts-cli", +0, +"@types/flat", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"-to-buffer", +[2,7231,37567], +"yaeti", +0,0, +"networking", +"comet", +0,0,0,0, +"@silentbot1/nat-api", +"@thaunknown/simple-peer", +"torrent/http-node", +[2,10672,37580], +"addr", +0, +"-to-ip-port", +[2,37582,37584], +"bitfield", +"bittorrent-dht", +[3,37587,11], +[2,37588,20500], +"cache-c", +"hunk-store", +[2,37590,37591], +[2,33355,5509], +[2,13225,37593], +"cpus", +"create-t", +"orrent", +[2,37596,37597], +"-ponyfill", +[2,1613,37599], +"fs-c", +[2,37601,37591], +"fsa-chunk-store", +"imme", +"diate-chunk-store", +[2,37604,37605], +"-async-", +[2,37607,7253], +[2,4565,37608], +0,0, +"load-ip-set", +"lt_donthave", +"memory-c", +[2,37614,37591], +"torrent", +"parse-torrent", +"random-ite", +[2,37618,6882], +0,0,0, +"speed-limiter", +"throughput", +0,0, +"-discovery", +[2,37616,37627], +0,0, +"torrent-piece", +0, +"uint8-util", +"unordered-", +"array-remove", +[2,37634,37635], +"ut_metadata", +"ut_pex", +0, +[3,37581,12], +[2,37640,23685], +0,0, +"airtap-manual", +"airtap-s", +[2,37645,9073], +[2,37588,4839], +"chrome-net", +"-address", +[2,11996,37649], +0, +"path-esm", +"-fixtures", +[2,4702,37653], +0, +"bittorrent", +[2,37656,12332], +"mad science", +"p2p", +0,0,0, +"peer-to-peer", +0, +"peers", +"swarm", +"web torrent", +"webrtc data", +0,0,0,0,0, +"web worker", +"a gogo", +0,0,0,0,0,0,0,0,0,0,0, +"search-params", +[2,4564,37687], +0,0,0,0, +"buster", +"exorcist", +0, +"cujo", +0, +"Promises/A+", +0,0,0,0, +"isexe", +0,0,0,0, +"taffydb", +"unit.js", +0,0,0,0,0, +"@dabh/diagnostics", +"logform", +0, +"one-time", +0, +"@dabh/", +[2,37720,23816], +[2,20417,4715], +[3,18518,12], +[2,37723,1149], +"hock", +"winston-co", +[2,37726,13172], +0,0,0,0,0,0, +"tream-rotator", +[2,12416,37734], +0, +[3,24151,11], +[3,23722,14], +[2,37737,37738], +[2,6324,4059], +[2,37739,37740], +0, +"daily-rotate-file", +"log-rotate", +"logrotate", +0,0,0,0,0,0, +"winston3", +0,0,0,0,0, +"bower-config", +"propprop", +[2,4716,20], +0,0,0,0,0,0, +"carriage", +0, +"new-line", +"return", +0,0,0,0,0,0,0,0, +"workbox-", +[2,37779,6147], +0,0, +"workbox", +"workboxjs", +" worker", +[2,11100,37785], +" requests", +[2,1612,37787], +"offline", +[2,12320,3097], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"writeFile", +0,0,0,0,0,0,0,0,0, +"enstore", +0, +"-crawler", +[2,4730,37820], +0, +"x-ray-parse", +0,0, +"scrape", +0,0,0,0,0,0, +"is-function", +"parse-headers", +0,0,0,0,0,0, +"adler-32", +0, +"codepage", +"crc-32", +"ssf", +"wmf", +0, +"@she", +"etjs/uglify-js", +[2,37848,37849], +"on-epipe", +[2,7219,37851], +"fflate", +[3,5392,10], +"pellcheck", +[2,37854,37855], +0, +"xlsb", +"xlsm", +"dbf", +"dif", +"sylk", +0,0,0,0,0, +"cash-cat", +"codacy-coverage", +"globify", +"unminified-webpack-plugin", +0, +"XML", +"CDATA", +"doctype", +0,0,0, +" instruction", +[2,10809,37879], +0, +"Javascript", +[2,353,3642], +"convertor", +"converting", +0, +"conversion", +0,0,0,0,0,0,0,0,0,0,0, +"node-expat", +0,0,0,0,0,0,0,0, +"dom-js", +"xmltest", +0, +"DOMParser", +"XMLSerializer", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"func-xml", +0,0,0,0,0,0, +[2,5857,5861], +[2,69,37935], +"@unicode/unicode-14.0.0", +0, +"rray-includes", +[2,24619,37939], +[2,1226,4740], +[3,37935,17], +0, +"value-aliases", +[2,37942,37944], +0,0,0,0,0,0,0, +"whitelist", +0,0,0,0, +"@scion-scxml/test-framework", +0, +"statechart", +0,0, +"state machine", +"finite", +" stat", +"e machine", +[2,37965,37966], +[2,37964,37967], +"finite ", +"automata", +[2,37969,37970], +"scxml", +"interpreter", +0,0,0,0,0,0,0,0, +"ep-equal", +[2,35506,37982], +[2,9228,4729], +0,0, +"@types/utf8", +[2,4744,28703], +0, +"emulator", +[2,4402,37990], +0,0,0,0, +"jest-t", +"s-webcompat-resolver", +[2,37996,37997], +0,0,0,0,0,0,0,0, +"yaml2json", +"json2yaml", +0,0,0,0,0,0,0, +"test-extends", +[2,27477,38016], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[3,29775,30], +"imports-", +[2,38033,10906], +[2,38032,38034], +"death", +"repeating", +0, +"capture-har", +[2,9769,38039], +"roadrunner", +0, +"node4", +[2,26202,38043], +[3,4821,14], +"ode5", +[2,38045,38046], +[3,18229,16], +"-strict", +[2,38048,38049], +"ittens", +[2,25705,38051], +[3,1935,18], +"-vars", +[2,38053,38054], +[2,23105,7003], +[2,1152,38056], +[2,16645,38057], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"@yeoman/adapter", +"@yeoman/", +"conflicter", +[2,38074,38075], +[2,38074,23255], +[2,38074,353], +"@yeoman/t", +[2,38079,103], +0, +"fly-import", +[2,7227,30831], +"mem-fs", +0, +"mem-fs-editor", +[2,9477,10057], +[2,17412,38087], +0,0,0, +"esmocha", +"sinon-test", +0,0,0,0,0, +"github-u", +"sername", +[2,38099,38100], +0,0,0,0,0,0, +"yes", +"false", +0, +"lenient", +0,0,0,0,0, +"cli-list", +"fullname", +0,0, +"parse-help", +"root-check", +"npm-keyword", +0, +"doctor", +[2,4755,38125], +[2,25742,1871], +0,0,0, +[2,4755,6843], +0, +[2,9518,1002], +0,0,0,0,0, +"@jonahsnider/benchmark", +0,0,0,0,0,0,0,0,0,0, +[2,26936,4627], +0, +"cowsay", +"say", +0,0,0,0,0,0, +"zeromq", +"0mq", +"ømq", +"libzmq", +0,0,0,0,0,0,0,0,0,0,0,0, +[2,11477,1574], +[2,9228,4576], +0, +"@types/morgan", +"express-u", +"seragent", +[2,38180,38181], +0, +" types", +[2,7047,38184], +0,0,0,0,0,0, +"DSL", +0,0,0,0, +"@externs/nodejs", +0,0,0,0, +"JSON2", +0, +"char-split", +0,0, +"express-state", +"firefox-", +[2,38208,35677], +[2,11941,2663], +0, +"shallow-copy", +[2,4250,4833], +0, +"tap-finished", +"-localtunnel", +[2,4770,38216], +0,0,0, +"browzers", +"bulk-require", +0, +"zuul-ngrok", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"Unit Testing", +0,0,0,0,0,0,0, +"Storybook", +0,0,0,0,0,0,0,0, +"belalangkayu", +"rengginangbasi", +"tehtarik3", +0,0,0,0,0,0,0,0,0,0,0, +"sort-array", +0,0,0,0,0,0,0,0,0,0,0, +"-scroll-", +"into-view", +[2,38290,38291], +[2,23545,38292], +0, +"module-t", +"ype-aliases", +[2,38295,38296], +[2,20201,38297], +[2,964,3698], +[3,1216,14], +"o-side-effect-class-properties", +[2,38300,38301], +[3,1270,19], +[2,38303,970], +"flow-co", +[2,24524,8803], +[2,38305,38306], +0, +"get-pkg-repo", +0, +"enhanced", +" input", +[2,38311,38312], +0,0, +"autosuggest", +"typeahead", +0, +"omnibox", +"WAI-ARIA", +"multiple ", +[2,38321,17146], +0,0,0,0, +"focus", +"keyboards", +"mice", +"pseudos", +0, +"textarea", +"trackpad" ] diff --git a/packages/flatpack-json/fixtures/.npm-packages-info-v2.json b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json index 71c507e68d2e..87d0fd123795 100644 --- a/packages/flatpack-json/fixtures/.npm-packages-info-v2.json +++ b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json @@ -1,31622 +1,15420 @@ [ - "Flatpack JSON v2", - [ - 128, - "@alifd/next", - "@angular-devkit/core", - "@angular-devkit/schematics", - "@angular/animations", - "@angular/cdk", - "@angular/common", - "@angular/compiler", - "@angular/compiler-cli", - "@angular/core", - "@angular/forms", - "@angular/http", - "@angular/material", - "@angular/platform-browser", - "@angular/platform-browser-dynamic", - "@angular/platform-server", - "@angular/router", - "@ant-design/react-native", - "@ant-design/web3-common", - "@ant-design/web3-icons", - "@auth/sveltekit", - "@babel/cli", - "@babel/code-frame", - "@babel/core", - "@babel/helper-plugin-utils", - "@babel/parser", - "@babel/plugin-proposal-class-properties", - "@11ty/eleventy", - "@adobe/css-tools", - "@api-components/api-method-documentation", - "@apollo/client", - "@asyncapi/generator-react-sdk", - "@babel/eslint-parser", - "@babel/plugin-proposal-decorators", - "@babel/plugin-proposal-export-default-from", - "@babel/plugin-proposal-export-namespace-from", - "@babel/plugin-proposal-object-rest-spread", - "@babel/plugin-syntax-dynamic-import", - "@babel/plugin-transform-runtime", - "@babel/polyfill", - "@babel/preset-env", - "@babel/preset-react", - "@babel/preset-typescript", - "@babel/register", - "@babel/runtime", - "@babel/runtime-corejs2", - "@babel/traverse", - "@babel/types", - "@biz-dev-ops/md-docs", - "@bwcr_/winston-loki", - "@changesets/cli", - "@chatscope/chat-ui-kit-react", - "@ckeditor/ckeditor5-adapter-ckfinder", - "@ckeditor/ckeditor5-angular", - "@ckeditor/ckeditor5-autoformat", - "@ckeditor/ckeditor5-basic-styles", - "@ckeditor/ckeditor5-block-quote", - "@ckeditor/ckeditor5-build-balloon", - "@ckeditor/ckeditor5-build-balloon-block", - "@ckeditor/ckeditor5-build-classic", - "@ckeditor/ckeditor5-build-decoupled-document", - "@ckeditor/ckeditor5-build-inline", - "@ckeditor/ckeditor5-ckbox", - "@ckeditor/ckeditor5-ckfinder", - "@ckeditor/ckeditor5-clipboard", - "@ckeditor/ckeditor5-cloud-services", - "@ckeditor/ckeditor5-core", - "@ckeditor/ckeditor5-easy-image", - "@ckeditor/ckeditor5-engine", - "@ckeditor/ckeditor5-essentials", - "@ckeditor/ckeditor5-heading", - "@ckeditor/ckeditor5-image", - "@ckeditor/ckeditor5-indent", - "@ckeditor/ckeditor5-link", - "@ckeditor/ckeditor5-list", - "@ckeditor/ckeditor5-media-embed", - "@ckeditor/ckeditor5-paragraph", - "@ckeditor/ckeditor5-paste-from-office", - "@ckeditor/ckeditor5-react", - "@ckeditor/ckeditor5-table", - "@ckeditor/ckeditor5-typing", - "@ckeditor/ckeditor5-ui", - "@ckeditor/ckeditor5-upload", - "@ckeditor/ckeditor5-utils", - "@ckeditor/ckeditor5-vue", - "@ckeditor/ckeditor5-widget", - "@commitlint/cli", - "@compodoc/compodoc", - "@comunica/core", - "@contenthook/browser", - "@contenthook/cli", - "@contenthook/node", - "@coreui/coreui", - "@csstools/css-parser-algorithms", - "@csstools/css-tokenizer", - "@csstools/media-query-list-parser", - "@csstools/postcss-is-pseudo-class", - "@csstools/postcss-progressive-custom-properties", - "@csstools/selector-specificity", - "@cucumber/cucumber", - "@deven-org/documentation-skeleton", - "@devtea2026/aspernatur-ea-non-porro", - "@devtea2026/consectetur-ab-unde-quisquam", - "@devtea2026/cupiditate-dolorem-excepturi-impedit", - "@devtea2026/distinctio-soluta-illo-eaque", - "@devtea2026/eum-ullam-est-distinctio", - "@devtea2026/explicabo-alias-architecto-sed", - "@devtea2026/improved-journey", - "@devtea2026/inventore-facilis-corporis-cum", - "@devtea2026/ipsa-omnis-in-molestiae", - "@devtea2026/literate-computing-machine", - "@devtea2026/maxime-sequi-est-rem", - "@devtea2026/necessitatibus-dolorem-esse-atque", - "@devtea2026/odit-enim-reiciendis-pariatur", - "@devtea2026/odit-maxime-porro-asperiores", - "@devtea2026/possimus-ipsa-sint-consequuntur", - "@devtea2026/qui-quos-laborum-amet", - "@devtea2026/quia-ducimus-placeat-minima", - "@devtea2026/quidem-voluptate-repudiandae-necessitatibus", - "@devtea2026/rerum-quaerat-porro-animi", - "@devtea2026/ubiquitous-octo-memory", - "@diotoborg/adipisci-placeat-iure", - "@diotoborg/amet-architecto-est", - "@diotoborg/at-totam-perspiciatis", - "@diotoborg/commodi-voluptatum-libero", - "@diotoborg/delectus-necessitatibus-voluptatum", - "@diotoborg/deserunt-illo-tempora", - "@diotoborg/dicta-recusandae-veniam", - "@diotoborg/dolor-earum-quia", - "@diotoborg/dolor-tempora-fuga", - "@diotoborg/dolores-praesentium-assumenda", - "@diotoborg/eligendi-est-unde", - "@diotoborg/esse-accusantium-ratione", - "@diotoborg/illo-amet-architecto", - "@diotoborg/laudantium-itaque-esse", - "@diotoborg/libero-asperiores-at", - "@diotoborg/neque-inventore-corporis", - "@diotoborg/nostrum-eveniet-officiis", - "@diotoborg/odio-dolores-officia", - "@diotoborg/porro-modi-accusamus", - "@diotoborg/psychic-bassoon", - "@diotoborg/quasi-repellat-odit", - "@diotoborg/qui-ullam-ipsum", - "@diotoborg/quo-dolorem-ducimus", - "@diotoborg/ratione-error-odio", - "@diotoborg/repellat-blanditiis-quis", - "@diotoborg/tempora-voluptas-distinctio", - "@diotoborg/ullam-dignissimos-repudiandae", - "@diotoborg/velit-reiciendis-velit", - "@diotoborg/verbose-robot", - "@diplodoc/transform", - "@discordjs/rest", - "@disqada/workspace", - "@doc-tools/docs", - "@doc-tools/transform", - "@dramaorg/esse-praesentium-eligendi", - "@dramaorg/quae-dolore-nostrum", - "@eas-framework/server", - "@eightshift/frontend-libs", - "@electron/docs-parser", - "@emotion/babel-plugin", - "@emotion/core", - "@emotion/css", - "@emotion/styled", - "@erboladaiorg/ad-exercitationem-ducimus", - "@erboladaiorg/asperiores-earum-quaerat", - "@erboladaiorg/asperiores-fuga-sint", - "@erboladaiorg/asperiores-nam-adipisci", - "@erboladaiorg/autem-dolores-ipsam", - "@erboladaiorg/cupiditate-consectetur-porro", - "@erboladaiorg/cupiditate-pariatur-optio", - "@erboladaiorg/distinctio-tempora-quis", - "@erboladaiorg/error-atque-ea", - "@erboladaiorg/esse-ipsa-numquam", - "@erboladaiorg/ex-hic-molestias", - "@erboladaiorg/explicabo-eius-adipisci", - "@erboladaiorg/molestiae-voluptatibus-perferendis", - "@erboladaiorg/molestias-nulla-dolor", - "@erboladaiorg/nisi-culpa-cum", - "@erboladaiorg/officia-illum-aperiam", - "@erboladaiorg/perspiciatis-magni-ut", - "@erboladaiorg/quae-in-veniam", - "@erboladaiorg/quaerat-mollitia-adipisci", - "@erboladaiorg/quibusdam-itaque-tempora", - "@erboladaiorg/sint-deleniti-dolorem", - "@erboladaiorg/sit-nesciunt-amet", - "@erboladaiorg/tenetur-architecto-dolore", - "@erboladaiorg/ut-dignissimos-laborum", - "@erboladaiorg/velit-fugit-harum", - "@eslint-community/eslint-utils", - "@eslint/js", - "@fakeyanss/redoc", - "@floating-ui/react-dom", - "@fontsource/inter", - "@fontsource/roboto", - "@fortawesome/fontawesome-svg-core", - "@fortawesome/free-solid-svg-icons", - "@fortawesome/react-fontawesome", - "@grandlinex/core", - "@grandlinex/e-kernel", - "@grandlinex/kernel", - "@graphql-markdown/core", - "@graphql-markdown/docusaurus", - "@hajtech/webpack-config", - "@hapi/hapi", - "@hishprorg/aliquid-ad-vero", - "@hishprorg/autem-sint-quas", - "@hishprorg/cum-rem-consequuntur", - "@hishprorg/earum-sint-veritatis", - "@hishprorg/eius-vero-dicta", - "@hishprorg/est-dicta-quis", - "@hishprorg/incidunt-quibusdam-tempore", - "@hishprorg/itaque-esse-accusamus", - "@hishprorg/iure-optio-nihil", - "@hishprorg/magni-amet-id", - "@hishprorg/magni-nisi-aperiam", - "@hishprorg/maxime-voluptates-enim", - "@hishprorg/nihil-ad-ratione", - "@hishprorg/perspiciatis-ratione-unde", - "@hishprorg/quis-perferendis-culpa", - "@hishprorg/reprehenderit-excepturi-sed", - "@hishprorg/sint-nam-consequuntur", - "@hishprorg/sunt-officia-eligendi", - "@hishprorg/sunt-voluptatem-nobis", - "@hishprorg/unde-vitae-reprehenderit", - "@hishprorg/wafflejs", - "@homer0/prettier-plugin-jsdoc", - "@hookform/resolvers", - "@iamtraction/google-translate", - "@idux/cdk", - "@idux/components", - "@inquirer/core", - "@ionic/core", - "@isaacs/cliui", - "@istanbuljs/nyc-config-typescript", - "@itwin/itwinui-react", - "@jest/core", - "@jest/types", - "@jsonforms/core", - "@jsonforms/material-renderers", - "@jsonforms/react", - "@juigorg/nisi-molestiae-ut", - "@juigorg/sit-nam-neque", - "@jupyterlab/application", - "@kobedevi/sassdoc", - "@kollorg/dicta-itaque-nemo", - "@kollorg/nihil-veniam-deserunt", - "@libphamton/chatfanpage", - "@libphamton/fb-group", - "@listr2/prompt-adapter-inquirer", - "@mantine/core", - "@mantine/dates", - "@mantine/hooks", - "@mantine/modals", - "@mantine/notifications", - "@mantine/prism", - "@mantine/styles", - "@mantine/utils", - "@material-ui/core", - "@material-ui/icons", - "@mathematikoi/jsonapi", - "@mdx-js/react", - "@microsoft/api-extractor", - "@microsoft/tsdoc", - "@microsoft/tsdoc-config", - "@middy/core", - "@middy/http-json-body-parser", - "@middy/util", - "@ministryofjustice/frontend", - "@mswjs/interceptors", - "@mui/icons-material", - "@mui/lab", - "@mui/material", - "@mui/system", - "@mui/x-date-pickers", - "@neato/guider", - "@ng-doc/core", - "@ng-doc/ui-kit", - "@ng-doc/utils", - "@nomicfoundation/hardhat-chai-matchers", - "@npmcli/arborist", - "@npmcli/map-workspaces", - "@npmcli/node-gyp", - "@npmcli/run-script", - "@npmcorp/marky-markdown", - "@npmtuanmap/ex-vel-expedita-impedit", - "@npmtuanmap/psychic-guide", - "@npmtuanmap/recusandae-recusandae-nam-et", - "@npmtuanmap/sed-quo-nemo-rerum", - "@npmtuanmap/velit-esse-velit-magnam", - "@nrwl/devkit", - "@nrwl/tao", - "@nrwl/workspace", - "@nx/devkit", - "@nx/esbuild", - "@nx/eslint", - "@nx/express", - "@nx/js", - "@nx/nest", - "@nx/node", - "@nx/workspace", - "@oclif/command", - "@oclif/config", - "@oclif/core", - "@oclif/plugin-help", - "@octokit/rest", - "@opentiny/vue", - "@opentiny/vue-renderless", - "@opentiny/vue-theme", - "@opentiny/vue-theme-mobile", - "@otterhttp/cookie", - "@otterhttp/request", - "@otterhttp/response", - "@otterhttp/send", - "@pact-foundation/pact", - "@patrtorg/a-ad-expedita", - "@patrtorg/a-ut-amet", - "@patrtorg/asperiores-vel-accusantium", - "@patrtorg/aspernatur-dolorum-ducimus", - "@patrtorg/autem-et-hic", - "@patrtorg/consectetur-culpa-non", - "@patrtorg/consectetur-repudiandae-consequuntur", - "@patrtorg/consequatur-voluptatum-officiis", - "@patrtorg/ducimus-magni-quibusdam", - "@patrtorg/enim-magni-hic", - "@patrtorg/est-corrupti-deleniti", - "@patrtorg/eveniet-tempore-maiores", - "@patrtorg/illum-sapiente-quos", - "@patrtorg/laborum-doloribus-voluptate", - "@patrtorg/libero-doloribus-omnis", - "@patrtorg/libero-voluptas-sequi", - "@patrtorg/magnam-aut-adipisci", - "@patrtorg/maiores-quidem-quo", - "@patrtorg/molestias-molestias-ut", - "@patrtorg/nam-eius-unde", - "@patrtorg/pariatur-deleniti-quaerat", - "@patrtorg/porro-labore-eos", - "@patrtorg/quae-earum-eius", - "@patrtorg/quos-quasi-ipsa", - "@patrtorg/sapiente-eos-magnam", - "@patrtorg/sapiente-exercitationem-sit", - "@patrtorg/tenetur-animi-reprehenderit", - "@perseid/store", - "@phosphor/widgets", - "@phun-ky/speccer", - "@polymer/polymer", - "@qooxdoo/framework", - "@quasar/extras", - "@readyplayerme/visage", - "@reduxjs/toolkit", - "@rollup/plugin-commonjs", - "@rollup/plugin-node-resolve", - "@sanity/tsdoc", - "@scalar/api-reference", - "@scalar/fastify-api-reference", - "@serenity-js/protractor", - "@serenity-js/webdriverio", - "@sinonjs/fake-timers", - "@storybook/addon-docs", - "@subwallet/react-ui", - "@supernovaio/sdk", - "@supernovaio/sdk-exporters", - "@supernovaio/supernova-sdk", - "@sveltejs/eslint-config", - "@sveltejs/kit", - "@sveltejs/vite-plugin-svelte", - "@svgr/webpack", - "@swc/core", - "@swenkerorg/maiores-voluptatibus-nemo", - "@swenkerorg/modi-dolorum-provident", - "@swenkerorg/nulla-voluptates-voluptates", - "@swisspost/design-system-styles", - "@symbiotejs/symbiote", - "@synion/md-docs", - "@taktikorg/aut-distinctio-repellat", - "@taktikorg/consectetur-quo-quos", - "@taktikorg/corporis-nihil-odit", - "@taktikorg/deleniti-qui-dolorem", - "@taktikorg/dolor-ratione-quibusdam", - "@taktikorg/harum-reprehenderit-perferendis", - "@taktikorg/illum-accusamus-possimus", - "@taktikorg/ipsa-totam-aperiam", - "@taktikorg/iste-ex-tempore", - "@taktikorg/itaque-nam-eos", - "@taktikorg/itaque-tempore-exercitationem", - "@taktikorg/maiores-dolores-aut", - "@taktikorg/molestias-fuga-possimus", - "@taktikorg/nam-esse-animi", - "@taktikorg/necessitatibus-repudiandae-officia", - "@taktikorg/nisi-reprehenderit-amet", - "@taktikorg/placeat-voluptates-dolorum", - "@taktikorg/praesentium-dolorum-quis", - "@taktikorg/praesentium-neque-ipsam", - "@taktikorg/quo-reiciendis-quibusdam", - "@taktikorg/recusandae-ratione-veniam", - "@taktikorg/similique-natus-officia", - "@taktikorg/suscipit-modi-ratione", - "@taktikorg/tempore-veniam-in", - "@taktikorg/unde-animi-omnis", - "@taktikorg/velit-nobis-blanditiis", - "@taktikorg/voluptatem-pariatur-tenetur", - "@tanem/svg-injector", - "@tanstack/react-query", - "@tanstack/svelte-query", - "@teamhanko/hanko-frontend-sdk", - "@testing-library/cypress", - "@testing-library/dom", - "@testing-library/jest-dom", - "@testing-library/jest-native", - "@testing-library/react", - "@testing-library/user-event", - "@tinyhttp/app", - "@tinyhttp/cookie", - "@tinyhttp/cookie-signature", - "@tinyhttp/cors", - "@tinyhttp/etag", - "@tinyhttp/forwarded", - "@tinyhttp/proxy-addr", - "@tinyhttp/req", - "@tinyhttp/res", - "@tinyhttp/router", - "@tinyhttp/send", - "@tinyhttp/type-is", - "@tinyhttp/url", - "@tsparticles/engine", - "@twurple/ebs-helper", - "@types/estree", - "@typescript-eslint/eslint-plugin", - "@typescript-eslint/parser", - "@typescript-eslint/utils", - "@ucloud-fe/react-components", - "@udecode/plate-core", - "@uiw/react-button", - "@uiw/react-icon", - "@uiw/react-input", - "@uiw/react-overlay-trigger", - "@uiw/utils", - "@unleash/proxy", - "@uploadcare/file-uploader", - "@vitejs/plugin-legacy", - "@vitejs/plugin-react", - "@vue/eslint-config-typescript", - "@wesleytodd/openapi", - "@wuxh/dumi", - "@zitterorg/adipisci-quae-eius", - "@zitterorg/aspernatur-pariatur-occaecati", - "@zitterorg/at-esse-odit", - "@zitterorg/cum-ipsum-beatae", - "@zitterorg/doloremque-ut-omnis", - "@zitterorg/est-sunt-quos", - "@zitterorg/eum-veritatis-placeat", - "@zitterorg/fluffy-waddle", - "@zitterorg/glowing-barnacle", - "@zitterorg/illum-perferendis-consectetur", - "@zitterorg/itaque-nisi-veritatis", - "@zitterorg/probable-octo", - "@zitterorg/upgraded-fishstick", - "@zkportal/aleo-oracle-sdk", - "abort-controller", - "accepts", - "acl", - "acorn", - "acorn-walk", - "action-cli", - "adm-zip", - "after", - "agenda", - "aid-guard1", - "airtap", - "ajv", - "ajv-formats", - "although-line-wall-corn", - "amqp", - "amqplib", - "analsorhost-simple-bs", - "angular", - "angular-animate", - "angular-cli", - "angular-material", - "ansi-colors", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "ansis", - "ant-design-vue", - "antd", - "antfu", - "anyway-south-boy-pilot", - "api-console", - "apidoc", - "apidoc-markdown", - "apn", - "apollo-cache-inmemory", - "apollo-client", - "apollo-link", - "apollo-link-http", - "app-root-path", - "appium-android-driver", - "apple-transportation-web3-locate", - "applicationinsights", - "appsync-client-node", - "archiver", - "arg", - "argparse", - "arrangement-tell-arrange", - "array.prototype.flatmap", - "arrify", - "assert", - "assert-plus", - "assume", - "async", - "async-listen", - "async-retry", - "async-validator", - "atob", - "aud", - "auto-changelog", - "auto-install", - "autoprefixer", - "ava", - "awesome-typescript-loader", - "aws-sdk", - "axe-core", - "axios", - "azure-storage", - "babel", - "babel-cli", - "babel-core", - "babel-eslint", - "babel-generator", - "babel-helper-fixtures", - "babel-helper-plugin-test-runner", - "babel-helper-vue-jsx-merge-props", - "babel-jest", - "babel-loader", - "babel-plugin-add-module-exports", - "babel-plugin-dynamic-import-node", - "babel-plugin-external-helpers", - "babel-plugin-import", - "babel-plugin-istanbul", - "babel-plugin-lodash", - "babel-plugin-module-resolver", - "babel-plugin-named-asset-import", - "babel-plugin-syntax-dynamic-import", - "babel-plugin-syntax-jsx", - "babel-plugin-transform-async-to-generator", - "babel-plugin-transform-class-properties", - "babel-plugin-transform-decorators-legacy", - "babel-plugin-transform-es2015-block-scoping", - "babel-plugin-transform-es2015-modules-commonjs", - "babel-plugin-transform-es2015-template-literals", - "babel-plugin-transform-object-rest-spread", - "babel-plugin-transform-react-jsx", - "babel-plugin-transform-react-remove-prop-types", - "babel-plugin-transform-regenerator", - "babel-plugin-transform-runtime", - "babel-polyfill", - "babel-preset-airbnb", - "babel-preset-env", - "babel-preset-es2015", - "babel-preset-react", - "babel-preset-react-app", - "babel-preset-stage-0", - "babel-preset-stage-1", - "babel-preset-stage-2", - "babel-preset-stage-3", - "babel-register", - "babel-runtime", - "babel-template", - "babel-traverse", - "babel-types", - "babelify", - "babylon", - "backbone", - "baqend", - "bark-needs-visit4", - "base-64", - "base-individual-comfortable-crop", - "base64-js", - "basic-auth", - "batuta", - "bcrypt", - "bcrypt-nodejs", - "bcryptjs", - "bearcat", - "beautify-benchmark", - "beauty-foot-compass5", - "beefy", - "believed-usually-greater-passage", - "benchmark", - "best-lips-shoulder", - "best-valley2", - "between-cry-additional", - "beyond", - "bfj", - "bignumber.js", - "bindings", - "bip39", - "bizcharts", - "bl", - "blanket", - "blessed", - "blessed-contrib", - "blockchain-am5", - "blockchain-baby", - "blockchain-back1", - "blockchain-closely", - "blockchain-directly", - "blockchain-egg", - "blockchain-happily", - "blockchain-language", - "blockchain-own8", - "blockchain-record", - "blockchain-scientist", - "blocked", - "bluebird", - "bn.js", - "body-parser", - "bookshelf", - "boom", - "bootstrap", - "bootstrap-sass", - "bower", - "boxen", - "brain", - "branch-body-web3-feel", - "branch-camera-web3-organization", - "brfs", - "broccoli-funnel", - "broccoli-merge-trees", - "broccoli-test-helper", - "brought-tried-whether8", - "browser-sync", - "browserify", - "browserify-shim", - "browserslist", - "bs58", - "bson", - "btoa", - "buble", - "buffer", - "buffer-equal", - "bufferutil", - "built-who-entire", - "builtin-modules", - "bulma", - "bump-cli", - "bundle-collapser", - "bunyan", - "busboy", - "bytebuffer", - "bytes", - "c8", - "cac", - "cache-manager", - "call-bind", - "camelcase", - "caniuse", - "caniuse-lite", - "canvas", - "careful-faster-dirty-matter", - "case-sensitive-paths-webpack-plugin", - "casperjs", - "caught-brain-service0", - "chai", - "chai-as-promised", - "chai-passport-strategy", - "chai-subset", - "chalk", - "chance", - "chance-able-necessary-bell", - "change-case", - "changelogen", - "chart.js", - "cheerio", - "chicken-fell-spread", - "child_process", - "child-process-promise", - "choerodon-ui", - "chokidar", - "ci-info", - "ckeditor5", - "classnames", - "clean-css", - "clean-webpack-plugin", - "clear", - "clear-module", - "cli", - "cli-boxes", - "cli-color", - "cli-cursor", - "cli-spinner", - "cli-spinners", - "cli-table", - "cli-table2", - "cli-table3", - "cli-truncate", - "cli-ux", - "clipanion", - "clipboard", - "clipboardy", - "cliui", - "clone", - "clsx", - "clui", - "co", - "co-prompt", - "code", - "codecov", - "codemirror", - "coffee-script", - "coffeescript", - "color", - "colorette", - "colors", - "columnify", - "command-exists", - "command-line-args", - "command-line-usage", - "commander", - "commitizen", - "commitlint", - "common-tags", - "component-emitter", - "compression", - "concat-stream", - "concurrently", - "config", - "configstore", - "connect", - "connect-flash", - "connect-history-api-fallback", - "connect-mongo", - "connect-redis", - "consola", - "consolidate", - "content-disposition", - "content-type", - "contenthook", - "conventional-changelog", - "conventional-changelog-cli", - "conventional-changelog-conventionalcommits", - "convert-source-map", - "cookie", - "cookie-parser", - "cookie-session", - "cookie-signature", - "copy-to-clipboard", - "copy-webpack-plugin", - "copyfiles", - "corcojs-qrcode", - "corcojs-qrcode-logo", - "cordova", - "core-js", - "cors", - "cosmiconfig", - "coveralls", - "cpy-cli", - "crawler", - "crc", - "create-hash", - "create-react-class", - "critical", - "cron", - "croner", - "cronnor", - "cropperjs", - "cross-env", - "cross-fetch", - "cross-spawn", - "crypto", - "crypto-browserify", - "crypto-js", - "cson-parser", - "cspell", - "css", - "css-declaration-sorter", - "css-functions-list", - "css-loader", - "css-minimizer-webpack-plugin", - "css-select", - "css-tree", - "cssdb", - "cssesc", - "cssnano", - "cssstyle", - "csstype", - "csurf", - "csv", - "csv-generate", - "csv-parse", - "csv-stringify", - "csvtojson", - "cucumber", - "cuid", - "cypress", - "cz-conventional-changelog", - "d3", - "d3-array", - "d3-scale", - "d3-selection", - "d3-shape", - "dable-effect", - "daisyui", - "dance-you-thou", - "dargs", - "datafire", - "date-fns", - "dateformat", - "dayjs", - "deasync", - "debounce", - "debug", - "decamelize", - "decompress", - "dedent", - "dedupe", - "deep-assign", - "deep-consist-ability3", - "deep-diff", - "deep-eql", - "deep-equal", - "deep-extend", - "deepmerge", - "del", - "del-cli", - "delay", - "depcheck", - "depd", - "dependency-check", - "depth-clay-tax7", - "detect-indent", - "detect-port", - "did-enter-lay", - "diff", - "diff2html", - "difference-mile-pocket5", - "directed-graph-typed", - "dirty-chai", - "discord-backend-manager", - "discord.js", - "dist", - "distance-its-clear-rate", - "dmd", - "dmd-grunt-jsdoc2md", - "dnd-multi-backend", - "dnode", - "doc-detective", - "doc-detective-core", - "docco", - "docgen", - "dockerode", - "docpad", - "docschema", - "docsify-tabs", - "doctoc", - "documentation", - "documentdb", - "docusaurus", - "docusaurus-lunr-search", - "dom-helpers", - "dom-serializer", - "dom-to-image-more", - "dompurify", - "dot", - "dotenv", - "dotenv-expand", - "download", - "download-git-repo", - "doxdox", - "doxdox-cli", - "doxdox-core", - "doxdox-parser-dox", - "doxdox-parser-jsdoc", - "doxdox-renderer-bootstrap", - "doxdox-renderer-json", - "doxdox-renderer-markdown", - "draft-js", - "dropzone", - "dtslint", - "dubnium", - "dumi", - "dumi-cm", - "duplexer", - "dw-neit-antd", - "each", - "echarts", - "eclint", - "ejs", - "elasticsearch", - "electricity-death-web3-story", - "electron", - "electron-builder", - "electron-packager", - "electron-prebuilt", - "electron-rebuilder", - "element-resize-detector", - "element-ui", - "eleventy", - "elliptic", - "email-templates", - "emailjs", - "ember-cli", - "ember-cli-babel", - "ember-cli-htmlbars", - "emmet", - "emotion", - "encodeurl", - "end-of-stream", - "enhanced-resolve", - "enquirer", - "ent", - "enumtype", - "envify", - "envinfo", - "enzyme", - "enzyme-adapter-react-16", - "enzyme-adapter-utils", - "enzyme-shallow-equal", - "errorhandler", - "es-check", - "es-value-fixtures", - "es5-ext", - "es5-shim", - "es6-error", - "es6-promise", - "es6-promisify", - "es6-shim", - "esbuild", - "escape-html", - "escape-string-regexp", - "escodegen", - "eslint", - "eslint-config-airbnb", - "eslint-config-airbnb-base", - "eslint-config-airbnb-typescript", - "eslint-config-google", - "eslint-config-gulp", - "eslint-config-oclif", - "eslint-config-oclif-typescript", - "eslint-config-prettier", - "eslint-config-react-app", - "eslint-config-semistandard", - "eslint-config-standard", - "eslint-config-unjs", - "eslint-config-xo", - "eslint-config-xo-lass", - "eslint-doc-generator", - "eslint-import-resolver-typescript", - "eslint-loader", - "eslint-plugin-ava", - "eslint-plugin-babel", - "eslint-plugin-compat", - "eslint-plugin-es5", - "eslint-plugin-eslint-comments", - "eslint-plugin-eslint-plugin", - "eslint-plugin-flowtype", - "eslint-plugin-html", - "eslint-plugin-import", - "eslint-plugin-jest", - "eslint-plugin-jsdoc", - "eslint-plugin-jsonc", - "eslint-plugin-jsx-a11y", - "eslint-plugin-markdown", - "eslint-plugin-mocha", - "eslint-plugin-n", - "eslint-plugin-node", - "eslint-plugin-prettier", - "eslint-plugin-promise", - "eslint-plugin-react", - "eslint-plugin-react-hooks", - "eslint-plugin-regexp", - "eslint-plugin-security", - "eslint-plugin-sonarjs", - "eslint-plugin-standard", - "eslint-plugin-svelte", - "eslint-plugin-testing-library", - "eslint-plugin-tsdoc", - "eslint-plugin-unicorn", - "eslint-plugin-vitest", - "eslint-plugin-vue", - "eslint-remote-tester", - "eslint-scope", - "eslint-visitor-keys", - "eslintrc", - "esm", - "espree", - "esprima", - "estraverse", - "estree-walker", - "etag", - "ethereumjs-tx", - "ethereumjs-util", - "evalmd", - "event-stream", - "eventemitter2", - "eventemitter3", - "events", - "excellent-difficult-good", - "execa", - "exit", - "expect", - "expect-type", - "expect.js", - "express", - "express-adexe", - "express-autodoc", - "express-generator", - "express-handlebars", - "express-jwt", - "express-session", - "express-tools", - "express-typed-rpc", - "express-validator", - "express-zod-api", - "extend", - "extend-shallow", - "extract-text-webpack-plugin", - "extract-zip", - "facing-cook", - "fair-tower-web3-store", - "faker", - "fancy-log", - "fast-check", - "fast-csv", - "fast-deep-equal", - "fast-glob", - "fast-plist", - "fast-xml-parser", - "fastclick", - "fastify", - "father", - "faucet", - "fbjs", - "fe-pilot", - "feature-rising-small7", - "femo", - "fetch-mock", - "fibers", - "figlet", - "figures", - "file-loader", - "file-saver", - "file-type", - "filesize", - "finalhandler", - "find-cache-dir", - "find-up", - "findup-sync", - "firan-logging", - "firebase", - "firebase-admin", - "firebase-tools", - "fixpack", - "fixturify", - "flat", - "flatpak-bundler", - "flatpickr", - "flightplan", - "flow-bin", - "flowbite", - "fluent-ffmpeg", - "flux", - "follow-redirects", - "font-awesome", - "for-each", - "forever", - "fork-ts-checker-webpack-plugin", - "fork-ts-checker-webpack-plugin-alt", - "form-data", - "formidable", - "formik", - "fresh", - "fresh-dangerous", - "friendly-errors-webpack-plugin", - "front-matter", - "fs", - "fs-extra", - "fs-jetpack", - "fs-promise", - "fsevents", - "fstream", - "ftp", - "functions-have-names", - "fur-race-web3-pale", - "fuse.js", - "futen", - "fuzzy", - "gaze", - "gc-signals", - "generator-angular", - "generator-gulp-angular", - "generator-nitro", - "generic-pool", - "gensequence", - "gentle-party-other", - "geolib", - "get-package-type", - "get-port", - "get-stdin", - "get-stream", - "get-tsconfig", - "getmac", - "gh-pages", - "ghooks", - "github", - "github-buttons", - "glob", - "glob-parent", - "global", - "globals", - "globby", - "gm", - "gmll", - "google-spreadsheet", - "googleapis", - "got", - "government-letter-web3-till", - "govuk-frontend", - "graceful-fs", - "gradually-current-chief", - "graph-these", - "graphql", - "graphql-tag", - "graphql-tools", - "gray-matter", - "grpc", - "grunt", - "grunt-angular-templates", - "grunt-auto-release", - "grunt-browserify", - "grunt-bump", - "grunt-cli", - "grunt-concurrent", - "grunt-contrib-clean", - "grunt-contrib-compass", - "grunt-contrib-concat", - "grunt-contrib-connect", - "grunt-contrib-copy", - "grunt-contrib-csslint", - "grunt-contrib-cssmin", - "grunt-contrib-htmlmin", - "grunt-contrib-imagemin", - "grunt-contrib-internal", - "grunt-contrib-jshint", - "grunt-contrib-less", - "grunt-contrib-nodeunit", - "grunt-contrib-sass", - "grunt-contrib-uglify", - "grunt-contrib-watch", - "grunt-conventional-changelog", - "grunt-conventional-github-releaser", - "grunt-eslint", - "grunt-jscs", - "grunt-jsdoc", - "grunt-karma", - "grunt-mocha-test", - "grunt-newer", - "grunt-notify", - "grunt-npm", - "grunt-sass", - "grunt-saucelabs", - "grunt-shell", - "grunt-simple-mocha", - "grunt-spritesmith", - "grunt-usemin", - "gts", - "guarapi", - "gulp", - "gulp-angular-templatecache", - "gulp-atom-electron", - "gulp-autoprefixer", - "gulp-awspublish", - "gulp-azure-storage", - "gulp-babel", - "gulp-bom", - "gulp-bower", - "gulp-browserify", - "gulp-buffer", - "gulp-bump", - "gulp-cache", - "gulp-cached", - "gulp-changed", - "gulp-clean", - "gulp-clean-css", - "gulp-coffee", - "gulp-compass", - "gulp-concat", - "gulp-concat-css", - "gulp-conflict", - "gulp-connect", - "gulp-copy", - "gulp-csscomb", - "gulp-csslint", - "gulp-cssnano", - "gulp-csso", - "gulp-data", - "gulp-eslint", - "gulp-file-include", - "gulp-filter", - "gulp-flatmap", - "gulp-flatten", - "gulp-format-md", - "gulp-ftp", - "gulp-gh-pages", - "gulp-git", - "gulp-gzip", - "gulp-handlebars", - "gulp-header", - "gulp-html-replace", - "gulp-htmlmin", - "gulp-iconfont", - "gulp-if", - "gulp-ignore", - "gulp-image-resize", - "gulp-imagemin", - "gulp-include", - "gulp-inject", - "gulp-inline-css", - "gulp-install", - "gulp-istanbul", - "gulp-jade", - "gulp-jasmine", - "gulp-jscs", - "gulp-jshint", - "gulp-json-editor", - "gulp-less", - "gulp-livereload", - "gulp-load-plugins", - "gulp-minify-css", - "gulp-minify-html", - "gulp-mocha", - "gulp-newer", - "gulp-ng-annotate", - "gulp-nodemon", - "gulp-notify", - "gulp-plugin-extras", - "gulp-plumber", - "gulp-postcss", - "gulp-preprocess", - "gulp-prompt", - "gulp-react", - "gulp-remote-src", - "gulp-rename", - "gulp-replace", - "gulp-rev", - "gulp-rev-replace", - "gulp-ruby-sass", - "gulp-sass", - "gulp-sftp", - "gulp-shell", - "gulp-size", - "gulp-sourcemaps", - "gulp-strip-debug", - "gulp-stylus", - "gulp-svg-sprite", - "gulp-svgmin", - "gulp-svgstore", - "gulp-template", - "gulp-tsb", - "gulp-tslint", - "gulp-typescript", - "gulp-uglify", - "gulp-uncss", - "gulp-usemin", - "gulp-useref", - "gulp-util", - "gulp-vinyl-zip", - "gulp-watch", - "gulp-webpack", - "gulp-webserver", - "gulp-zip", - "gulp.spritesmith", - "gzip-size", - "hallmark", - "hammerjs", - "handlebars", - "hapi", - "happy-dom", - "happy-meant", - "hard-cool-rhythm-continued", - "has-flag", - "has-parts-ice-fact", - "has-symbols", - "hash-sum", - "hasown", - "hast-util-raw", - "hast-util-sanitize", - "hast-util-select", - "hast-util-to-estree", - "hast-util-to-html", - "hast-util-to-jsx-runtime", - "hast-util-to-string", - "hast-util-to-text", - "hastscript", - "hay-against-any-hurry", - "hbs", - "he", - "heapdump", - "helmet", - "heroicons", - "hexlet-pairs", - "hexo", - "highland", - "highlight.js", - "hiredis", - "history", - "history-brass-sound", - "hit-running-special8", - "hoek", - "hogan.js", - "hoist-non-react-statics", - "homebridge", - "hono", - "hope-slight-walk1", - "hosted-git-info", - "how-to-npm", - "html-dom-parser", - "html-element-attributes", - "html-encoding-sniffer", - "html-entities", - "html-escaper", - "html-loader", - "html-minifier", - "html-minifier-terser", - "html-pdf", - "html-react-parser", - "html-tags", - "html-to-image", - "html-to-text", - "html-validate", - "html-webpack-plugin", - "htmlnano", - "htmlparser2", - "http", - "http-errors", - "http-proxy", - "http-proxy-agent", - "http-proxy-middleware", - "http-server", - "http-status", - "http-status-codes", - "https", - "https-proxy-agent", - "husky", - "hyperquest", - "hyphenate-style-name", - "i", - "i18n", - "i18next", - "i18next-gridly-backend", - "iconv-lite", - "identity-obj-proxy", - "ignore", - "image-size", - "imagemagick", - "imagemin", - "imagemin-pngquant", - "imap", - "immer", - "immutability-helper", - "immutable", - "import-fresh", - "import-local", - "impress", - "in-publish", - "indent-string", - "inert", - "inferno", - "inflection", - "inherits", - "ini", - "iniparser", - "ink", - "inline-style-parser", - "innosetup-compiler", - "inquirer", - "inquirer-autocomplete-prompt", - "inside-throw", - "instagram-node", - "install", - "interpret", - "intl", - "intl-tel-input", - "invariant", - "inversify", - "ionic", - "ionicons", - "ioredis", - "ip", - "irc", - "is", - "is-ci", - "is-glob", - "is-installed-globally", - "is-plain-obj", - "is-plain-object", - "is-potential-custom-element-name", - "is-promise", - "is-stream", - "is-url", - "is-wsl", - "isarray", - "isobject", - "isomorphic-fetch", - "istanbul", - "itwcw-package-analytics", - "iview", - "jackspeak", - "jade", - "jake", - "jarallax", - "jasmine", - "jasmine-core", - "jasmine-node", - "jest", - "jest-canvas-mock", - "jest-cli", - "jest-diff", - "jest-environment-jsdom", - "jest-environment-jsdom-fourteen", - "jest-environment-node", - "jest-extended", - "jest-html-reporters", - "jest-junit", - "jest-pnp-resolver", - "jest-resolve", - "jest-util", - "jest-watch-typeahead", - "jest-worker", - "jimp", - "jiti", - "jodit", - "jodit-react", - "johnny-five", - "joi", - "jotai", - "jquery", - "jquery-ui", - "js-base64", - "js-beautify", - "js-cookie", - "js-yaml", - "jsarch", - "jscpd", - "jscs", - "jsdoc", - "jsdoc-api", - "jsdoc-to-markdown", - "jsdom", - "jsdom-no-contextify", - "jsesc", - "jshint", - "jshint-stylish", - "json-2-csv", - "json-loader", - "json-schema", - "json-server", - "json-stable-stringify", - "json-stringify-safe", - "json5", - "jsonc-parser", - "jsonfile", - "jsonschema", - "JSONStream", - "jsonwebtoken", - "jspm", - "jstates", - "jszip", - "jwt-decode", - "jwt-simple", - "karma", - "karma-browserify", - "karma-browserstack-launcher", - "karma-chai", - "karma-chrome-launcher", - "karma-coverage", - "karma-detect-browsers", - "karma-edge-launcher", - "karma-firefox-launcher", - "karma-ie-launcher", - "karma-jasmine", - "karma-mocha", - "karma-mocha-reporter", - "karma-phantomjs-launcher", - "karma-qunit", - "karma-rollup-preprocessor", - "karma-safari-launcher", - "karma-sauce-launcher", - "karma-sinon", - "karma-sourcemap-loader", - "karma-spec-reporter", - "karma-webpack", - "keycode", - "keypress", - "keyv", - "kleur", - "knex", - "knip", - "known-css-properties", - "knox", - "koa", - "koa-body", - "koa-bodyparser", - "koa-compose", - "koa-logger", - "koa-mount", - "koa-router", - "koa-static", - "kue", - "lab", - "label-lungs-court4", - "language-perfectly-blow-series", - "late-dress-mail5", - "latest-version", - "lazy.js", - "lead-alike-web3-applied", - "leaflet", - "left-pad", - "leftpad", - "lerna", - "less", - "less-loader", - "level", - "leveldown", - "levelup", - "leven", - "libnpmdiff", - "libnpmexec", - "libnpmfund", - "libphonenumber-js", - "liftoff", - "lilconfig", - "linkifyjs", - "lint-staged", - "listr", - "listr2", - "lit-element", - "lite-server", - "live-server", - "livereload", - "load-grunt-config", - "load-grunt-tasks", - "loader-utils", - "local-web-server", - "localforage", - "localtunnel", - "lockfile-lint", - "lodash", - "lodash-es", - "lodash.assign", - "lodash.camelcase", - "lodash.clonedeep", - "lodash.debounce", - "lodash.defaults", - "lodash.flatten", - "lodash.foreach", - "lodash.get", - "lodash.isempty", - "lodash.isequal", - "lodash.isfunction", - "lodash.isobject", - "lodash.isplainobject", - "lodash.isstring", - "lodash.map", - "lodash.memoize", - "lodash.merge", - "lodash.omit", - "lodash.pick", - "lodash.set", - "lodash.template", - "lodash.throttle", - "lodash.uniq", - "log", - "log-symbols", - "log-update", - "log4js", - "loglevel", - "long", - "loopback", - "loose-envify", - "lowdb", - "lru-cache", - "lucide", - "luck-rubber-do", - "lwip", - "lws", - "madwizard", - "magic-string", - "magmastream", - "main-bower-files", - "make-dir", - "make-node", - "mammoth", - "manifest", - "mantine-contextmenu", - "many-favorite6", - "map-stream", - "mapboxgl-legend", - "markdown", - "markdown-it", - "markdown-it-anchor", - "markdown-it-container", - "markdown-it-emoji", - "markdown-pdf", - "markdown-table", - "markdown-to-jsx", - "markdown-toc", - "markdownlint", - "markdownlint-cli", - "marked", - "marky-markdown", - "matcha", - "material-ui", - "mathjs", - "matter-view-web3-fence", - "md5", - "md5-file", - "mdast-util-from-markdown", - "mdast-util-to-hast", - "mdn-data", - "mdxts", - "memcached", - "memfs", - "memoize-one", - "memory-cache", - "memory-fs", - "memorystream", - "memwatch", - "mental-oxygen-dozen", - "meow", - "merge", - "merge-stream", - "metalsmith", - "meteor", - "method-override", - "methods", - "microbundle", - "micromark", - "micromatch", - "mime", - "mime-types", - "min-heap-typed", - "mini-css-extract-plugin", - "minify", - "minimatch", - "minimist", - "mirror-jet-printed-supper", - "missing-sport-living", - "mkcert", - "mkdirp", - "mlly", - "mobx", - "mobx-react", - "mocha", - "mocha-headless-chrome", - "mocha-junit-reporter", - "mocha-lcov-reporter", - "mock-fs", - "mock-property", - "mock-require", - "mock-stdin", - "mockdate", - "mockery", - "mockjs", - "moleculer", - "moment", - "moment-timezone", - "monaco-yaml", - "monads-io", - "mongo-express", - "mongodb", - "mongoose", - "monitor", - "monitor-dashboard", - "monk", - "morgan", - "motor-positive-spirit", - "move-wolf-throughout", - "movie-obtain-tail-prepare", - "mqtt", - "ms", - "mssql", - "msw", - "mud-slowly-five3", - "multer", - "multimatch", - "multiparty", - "multiple-cucumber-html-reporter", - "mustache", - "muuri", - "mysql", - "mysql2", - "mz", - "n", - "nails-wild-interest-garden", - "nan", - "nano", - "nano-css", - "nanoid", - "native-keymap", - "nativefier", - "nativescript", - "natural", - "nconf", - "ncp", - "near-social-bridge", - "nedb", - "needle", - "nest-commander", - "newman", - "newrelic", - "next-auth", - "nextjs", - "ng-mocks", - "ng-zorro-antd", - "ngrok", - "nib", - "nightmare", - "nightwatch", - "nine-yes-merely6", - "nise", - "nock", - "node-addon-api", - "node-cache", - "node-containerpattern", - "node-dev", - "node-dir", - "node-emoji", - "node-fetch", - "node-forge", - "node-gcm", - "node-geocoder", - "node-gyp", - "node-html-parser", - "node-inspector", - "node-mocks-http", - "node-notifier", - "node-oauth2-server", - "node-powertools", - "node-pre-gyp", - "node-pty", - "node-red", - "node-sass", - "node-schedule", - "node-static", - "node-uuid", - "node-watch", - "node-windows", - "node-xlsx", - "node.extend", - "nodegit", - "nodemailer", - "nodemon", - "nodeunit", - "nodewebkit", - "nolangjs", - "nomnom", - "nopt", - "normalize-path", - "normalize-url", - "normalize-wheel", - "normalize.css", - "np", - "npm", - "npm-check", - "npm-check-updates", - "npm-package-arg", - "npm-package-json-lint", - "npm-packlist", - "npm-registry-fetch", - "npm-run-all", - "npm-run-all2", - "npm-run-path", - "npm-to-yarn", - "npm-windows-upgrade", - "npmcli", - "npmignore", - "npmlog", - "nprogress", - "nsp", - "nuke-cli", - "numeral", - "nunjucks", - "nvm", - "nvmrc", - "nwsapi", - "nx", - "nyc", - "oas", - "oas-normalize", - "oauth", - "object-assign", - "object-hash", - "object-inspect", - "object-keys", - "object-path", - "object.assign", - "object.entries", - "observe-food-motion-hidden", - "on-finished", - "once", - "onchange", - "one-how-hand", - "onoff", - "open", - "open-cli", - "openapi-client-axios", - "openapi2html", - "opencv", - "opener", - "openweather", - "opn", - "optimist", - "optimize-css-assets-webpack-plugin", - "optionator", - "ora", - "orchestrator", - "orm", - "os", - "osenv", - "outdent", - "outline-slowly", - "overlayscrollbars", - "ovsx", - "p-event", - "p-map", - "p-queue", - "p-timeout", - "p23", - "pa11y", - "pacote", - "pageres", - "paintor", - "pako", - "para-cli", - "para-client-js", - "parallelshell", - "parse", - "parse5", - "parseurl", - "passport", - "passport-facebook", - "passport-local", - "passport-oauth", - "passport-oauth2", - "passport-strategy", - "path", - "path-browserify", - "path-exists", - "path-is-absolute", - "path-to-regexp", - "pathe", - "paypal-server-api", - "pdfjs", - "pdfkit", - "performance-now", - "pg", - "phantom", - "phantomjs", - "phantomjs-prebuilt", - "phonegap", - "pi-gpio", - "picocolors", - "picomatch", - "pie-case-nor-great", - "pify", - "pino", - "pinst", - "pitch-somehow-earth-brave", - "pixelmatch", - "pkg-dir", - "pkg-up", - "pkginfo", - "playwright", - "plist", - "plugin-error", - "plur", - "pluralize", - "pm2", - "pngjs", - "pnp-webpack-plugin", - "pnpm", - "pnpx", - "poe-api-manager", - "polished", - "political-plan-careful", - "popper.js", - "portfinder", - "postcss", - "postcss-calc", - "postcss-cli", - "postcss-color-functional-notation", - "postcss-colormin", - "postcss-convert-values", - "postcss-cssnext", - "postcss-custom-media", - "postcss-custom-properties", - "postcss-custom-selectors", - "postcss-discard-comments", - "postcss-discard-duplicates", - "postcss-discard-empty", - "postcss-discard-overridden", - "postcss-flexbugs-fixes", - "postcss-html", - "postcss-image-set-function", - "postcss-import", - "postcss-load-config", - "postcss-loader", - "postcss-merge-longhand", - "postcss-merge-rules", - "postcss-minify-font-values", - "postcss-minify-gradients", - "postcss-minify-params", - "postcss-minify-selectors", - "postcss-modules-local-by-default", - "postcss-nested", - "postcss-nesting", - "postcss-normalize", - "postcss-normalize-charset", - "postcss-normalize-positions", - "postcss-normalize-string", - "postcss-normalize-unicode", - "postcss-normalize-url", - "postcss-normalize-whitespace", - "postcss-ordered-values", - "postcss-prefix-selector", - "postcss-preset-env", - "postcss-reduce-initial", - "postcss-safe-parser", - "postcss-scss", - "postcss-selector-parser", - "postcss-svgo", - "postcss-unique-selectors", - "postcss-value-parser", - "postgrejs", - "posthtml", - "pouchdb", - "power-assert", - "pre-commit", - "preact", - "prepare-package", - "prettier", - "prettier-plugin-jsdoc", - "prettier-plugin-organize-imports", - "prettier-plugin-packagejson", - "prettier-plugin-svelte", - "prettierrc", - "pretty-bytes", - "pretty-error", - "pretty-format", - "pretty-ms", - "pretty-quick", - "prettyjson", - "prisma", - "prismjs", - "private-bower", - "proc-log", - "process", - "progress", - "progress-bar-webpack-plugin", - "promise", - "promise-polyfill", - "promises-aplus-tests", - "promo-server", - "prompt", - "prompts", - "prop-types", - "property-information", - "protobufjs", - "protractor", - "proxy", - "proxyquire", - "publish-please", - "pug", - "pull-stream", - "pump", - "punycode", - "puppeteer", - "purgecss", - "q", - "qr-image", - "qrcode-terminal", - "qs", - "query-string", - "querystring", - "queue", - "queue-typed", - "quill", - "qunit", - "qunit-dom", - "qunitjs", - "raf", - "ramda", - "random-words", - "randombytes", - "randomstring", - "range-parser", - "raven", - "raw-body", - "raw-loader", - "rc", - "rc-slider", - "rc-tooltip", - "rc-util", - "rcw-plugin", - "react", - "react-addons-css-transition-group", - "react-addons-shallow-compare", - "react-apollo", - "react-app-polyfill", - "react-bootstrap", - "react-color", - "react-copy-to-clipboard", - "react-datepicker", - "react-dev-utils", - "react-dnd", - "react-dnd-html5-backend", - "react-docgen", - "react-dom", - "react-dropzone", - "react-error-overlay", - "react-helmet", - "react-hook-form", - "react-hot-loader", - "react-i18next", - "react-icons", - "react-intersection-observer", - "react-intl", - "react-is", - "react-lifecycles-compat", - "react-markdown", - "react-modal", - "react-motion", - "react-native", - "react-native-keychain", - "react-native-vector-icons", - "react-number-format", - "react-onclickoutside", - "react-property", - "react-redux", - "react-refresh", - "react-responsive", - "react-router", - "react-router-dom", - "react-router-redux", - "react-scripts", - "react-select", - "react-slick", - "react-styleguidist", - "react-svg", - "react-tap-event-plugin", - "react-test-renderer", - "react-toastify", - "react-tools", - "react-transition-group", - "react-virtualized", - "reactify", - "reactstrap", - "read", - "read-pkg", - "read-pkg-up", - "readable-stream", - "readline", - "readline-sync", - "recall-shut-say", - "recast", - "recently-building-save", - "rechoir", - "recompose", - "recursive-readdir", - "redis", - "redoc", - "redocusaurus", - "redux", - "redux-actions", - "redux-form", - "redux-logger", - "redux-saga", - "redux-thunk", - "reflect-metadata", - "regenerate", - "regenerator-runtime", - "rehype", - "rehype-autolink-headings", - "rehype-external-links", - "rehype-mdx-code-props", - "rehype-parse", - "rehype-raw", - "rehype-slug", - "rehype-stringify", - "release-it", - "remap-istanbul", - "remark", - "remark-cli", - "remark-gfm", - "remark-html", - "remark-mermaidjs", - "remark-parse", - "remark-preset-github", - "remark-preset-wooorm", - "remark-rehype", - "remarkable", - "replace-ext", - "replace-in-file", - "request", - "request-promise", - "request-promise-native", - "require-all", - "require-dir", - "requireindex", - "requirejs", - "reselect", - "resize-observer-polyfill", - "resolve", - "resolve-from", - "resolve-url-loader", - "rest-chronicle", - "restify", - "restler", - "restore-cursor", - "rethinkdb", - "retry", - "rewire", - "rfdc", - "rimraf", - "robotjs", - "rollup", - "rollup-plugin-babel", - "rollup-plugin-buble", - "rollup-plugin-cleanup", - "rollup-plugin-commonjs", - "rollup-plugin-dts", - "rollup-plugin-json", - "rollup-plugin-license", - "rollup-plugin-node-builtins", - "rollup-plugin-node-globals", - "rollup-plugin-node-resolve", - "rollup-plugin-replace", - "rollup-plugin-sourcemaps", - "rollup-plugin-terser", - "rollup-plugin-typescript", - "rollup-plugin-typescript2", - "rollup-plugin-uglify", - "rollup-plugin-visualizer", - "rollup-pluginutils", - "routes", - "rsnext", - "rsvp", - "rtlcss", - "run-sequence", - "run-series", - "rx", - "rxjs", - "rxjs-compat", - "safe-buffer", - "safe-publish-latest", - "sails", - "salt-type-oldest-faster", - "sand-have-metal6", - "sanitize-filename", - "sanitize-html", - "sass", - "sass-loader", - "sat-local", - "sax", - "scheduler", - "schema-markdown-doc", - "schema-utils", - "science-knowledge-truth", - "seblakhotspicy", - "secp256k1", - "seedrandom", - "selenium-webdriver", - "semantic-release", - "semantic-ui-react", - "semistandard", - "semver", - "send", - "seneca", - "sentiment", - "sequelize", - "serialize-javascript", - "serialport", - "serve", - "serve-favicon", - "serve-index", - "serve-static", - "server-destroy", - "serverless-finch", - "serverless-spy", - "sha1", - "shallowequal", - "sharp", - "shell-quote", - "shelljs", - "shinning-continued-becoming", - "shortid", - "should", - "showdown", - "shx", - "sick-typical-court7", - "signal-exit", - "similar-cheese-loss", - "simple-assi-animation", - "simple-git", - "simple-prompts-web3", - "single-spa", - "sink-mighty-orbit0", - "sink-rod-lamp", - "sinon", - "sinon-chai", - "sinopia", - "sirv", - "size-limit", - "sizeitup", - "skapi-js", - "sky-buy-web3-rock", - "slash", - "slice-ansi", - "slow-deps", - "slow-voice-spell-pass", - "slug", - "slugify", - "small-grow-mix4", - "snake-seven-recall-interior", - "snazzy", - "soap", - "socket.io", - "socket.io-client", - "sockjs-client", - "source-map", - "source-map-js", - "source-map-loader", - "source-map-support", - "space-separated-tokens", - "spectaql", - "speech-section-part-frozen", - "spirit-labor-cheese", - "split", - "split2", - "spring-dust-wall-size", - "sprintf", - "sprintf-js", - "sprity", - "sqlite3", - "ssh2", - "ssri", - "st.db", - "stack-trace", - "standard", - "standard-version", - "star-location", - "start-server-and-test", - "statsd", - "statuses", - "stock-independent-balloon", - "storybook", - "storybook-django", - "straiforos-compodoc", - "strange-lady-riding9", - "stream-assert", - "stream-transform", - "streamii", - "strftime", - "string", - "string-strip-html", - "string-width", - "stringify-entities", - "strip-ansi", - "strip-bom", - "strip-json-comments", - "stripe", - "strongloop", - "style-dictionary", - "style-loader", - "style-to-js", - "style-to-object", - "styled-components", - "styled-jsx", - "stylehacks", - "stylelint", - "stylelint-config-standard", - "stylelint-declaration-strict-value", - "stylelint-order", - "stylelint-scss", - "stylus", - "stylus-loader", - "sugar-policeman-entire", - "sugarss", - "sun-grass-circle0", - "superagent", - "superjson", - "supertest", - "supertest-as-promised", - "supervisor", - "support-vessels-web3-vessels", - "supports-color", - "surrounded-characteristic-or-rain", - "svelte", - "svelte-check", - "svelte-preprocess", - "svg-sprite", - "svgo", - "sw-precache-webpack-plugin", - "swagger-autogen", - "swagger-inline", - "swagger-themes", - "swagger-ui-express", - "swam-darkness-weak", - "swig", - "swiper", - "sync-request", - "systeminformation", - "systemjs", - "tail-iron-became5", - "tailwind", - "tailwind-merge", - "tailwindcss", - "tap", - "tap-spec", - "tapable", - "tape", - "tar", - "tar-fs", - "tar-stream", - "tarant", - "tarant-sync-router-express", - "tdl", - "tdlib-native", - "temp", - "tempy", - "terminal-kit", - "terminal-menu", - "terser", - "terser-webpack-plugin", - "test-cutting", - "test-runner", - "test-snippets", - "testcafe", - "testcontainers", - "testdouble", - "testem", - "text-table", - "three", - "throttle-debounce", - "through", - "through2", - "throw-did-darkness4", - "thunkify", - "tildify", - "time-grunt", - "tinper-bee", - "tiny-lr", - "tinybench", - "tinycolor2", - "tinymce", - "tinypool", - "tinyspy", - "tmp", - "toastify-react-native", - "tocbot", - "toml", - "touch", - "tough-cookie", - "tracer", - "traffic-carry-opinion", - "train-stick-swept7", - "traverse", - "tree-kill", - "tribe-leaving-basket", - "trpc", - "trumpet", - "ts-cache-mongoose", - "ts-japi", - "ts-jest", - "ts-loader", - "ts-migrate-mongoose", - "ts-morph", - "ts-node", - "ts-patch-mongoose", - "ts-pnp", - "ts-rule-engine", - "tsconfig-paths", - "tsd", - "tsd-lite", - "tshy", - "tslib", - "tslint", - "tslint-config-prettier", - "tslint-react", - "tsup", - "tsx", - "turndown", - "tv4", - "tweetnacl", - "twemoji", - "twit", - "twitter", - "type-coverage", - "type-fest", - "type-is", - "typedoc", - "typedoc-material-theme", - "typedoc-plugin-extras", - "typedoc-plugin-markdown", - "typedocs", - "typegen", - "typegoose", - "typeorm", - "typescript", - "typescript-eslint", - "typescript-formatter", - "typescript-plugin-css-modules", - "typings", - "uglify-es", - "uglify-js", - "uglifyjs-webpack-plugin", - "uid-safe", - "uiw", - "uj-apidoc-core", - "ulid", - "ultrahtml", - "unbuild", - "underscore", - "underscore.string", - "undici", - "unified", - "unique-random-array", - "unist-util-visit", - "untildify", - "unusual-rope", - "unzip", - "update-notifier", - "urijs", - "url", - "url-join", - "url-loader", - "url-parse", - "urllib", - "user", - "user-home", - "useragent", - "utf8", - "util", - "utils-merge", - "uuid", - "uvu", - "valid-url", - "validate-commit-msg", - "validate-npm-package-name", - "validator", - "vant", - "vary", - "vasync", - "vercel", - "verror", - "vhost", - "victory-mouth", - "viewerjs", - "vinyl", - "vinyl-buffer", - "vinyl-fs", - "vinyl-source-stream", - "vinyl-sourcemaps-apply", - "virtual-dom", - "vite", - "vite-plugin-api-routes", - "vitepress", - "vitest", - "vorpal", - "vows", - "vsce", - "vscode-debugprotocol", - "vscode-nls-dev", - "vscode-textmate", - "vue", - "vue-class-component", - "vue-eslint-parser", - "vue-hot-reload-api", - "vue-i18n", - "vue-loader", - "vue-property-decorator", - "vue-router", - "vue-style-loader", - "vue-template-compiler", - "vuex", - "walk", - "walk-sync", - "warning", - "watch", - "watchify", - "waterline", - "wd", - "web3", - "web3-be", - "web3-capital", - "web3-compass", - "web3-eve-cli", - "web3-exactly6", - "web3-fruit", - "webpack", - "webpack-bundle-analyzer", - "webpack-cli", - "webpack-dev-middleware", - "webpack-dev-server", - "webpack-hot-middleware", - "webpack-manifest-plugin", - "webpack-merge", - "webpack-node-externals", - "webpack-sources", - "webshot", - "websocket", - "webtorrent", - "webworker-threads", - "weinre", - "whatwg-fetch", - "when", - "which", - "winreg", - "winston", - "winston-daily-rotate-file", - "winston-transport", - "wiredep", - "word-wrap", - "wordwrap", - "workbox-webpack-plugin", - "world-toy-kill", - "wrap-ansi", - "wrench", - "write-file-atomic", - "ws", - "x-ray", - "xhr", - "xlsx", - "xml-js", - "xml2js", - "xml2json", - "xmlbuilder", - "xmldom", - "xmlhttprequest", - "xo", - "xpath", - "xregexp", - "xss", - "xstate", - "xtend", - "xterm", - "yaml", - "yamljs", - "yargs", - "yargs-parser", - "yarn", - "yarnpkg", - "yarnrc", - "yauzl", - "yeoman-environment", - "yeoman-generator", - "yn", - "yo", - "yoctocolors-cjs", - "yonode", - "yosay", - "zmq", - "zod", - "zod-http-schemas", - "zombie", - "zone.js", - "zuul", - "@nx/cypress", - "@nx/eslint-plugin", - "@nx/jest", - "@nx/storybook", - "framer-motion", - "teajusgula", - "@mui/styled-engine", - "jsdoc-parse", - "@commercetools-frontend/constants", - "downshift", - "postcss-focus-visible", - "@augment-vir/common", - "@biomejs/biome", - "@commercetools-frontend/mc-scripts", - "@jsonforms/vanilla-renderers", - "@jsonforms/vue", - "@jsonforms/vue-vanilla", - "hast-util-from-html", - "hot-shots", - "madr", - "native-run", - "rehype-katex", - "supports-hyperlinks", - "swr", - "typed-binary", - "ua-parser-js", - "void-elements", - "@adonisjs/core", - "@aneuhold/be-ts-lib", - "@capacitor/assets", - "@devtea2025/blanditiis-numquam-expedita-neque", - "@devtea2025/doloremque-voluptas-facere-nemo", - "@devtea2025/quisquam-quod-ab-aut", - "@devtea2025/suscipit-assumenda-a-assumenda", - "@devtea2025/voluptatibus-vero-magni-rerum", - "@diahkomalasarinpm/odio-facilis-beatae", - "@diahkomalasarinpm/praesentium-sint-dolorem", - "@enact/core", - "@envelop/core", - "@ionic/cli", - "@jsonforms/angular", - "@jsonforms/examples", - "@npmtea2024/quasi-nisi-doloremque-fugit", - "@ptkhanh94npm/iusto-libero-aperiam", - "@ptkhanh94npm/quis-saepe-velit", - "@renyii/vue-renderless", - "@teamteanpm2024/aperiam-fugit-error", - "@teamteanpm2024/architecto-alias-quod", - "@teamteanpm2024/aut-voluptatum-vero", - "@teamteanpm2024/beatae-aliquid-id", - "@teamteanpm2024/expedita-labore-ipsum", - "@teamteanpm2024/odio-fugiat-in", - "@teamteanpm2024/voluptatibus-reprehenderit-odit", - "@testing-library/react-hooks", - "@zibuthe7j11/deserunt-quasi-impedit", - "anser", - "aws-sdk-client-mock", - "cupertino-pane", - "eruda", - "fasteejs", - "foundation-sites", - "gradient-string", - "grommet", - "html-url-attributes", - "magnific-popup", - "next", - "postcss-opacity-percentage", - "pwa-asset-generator", - "rapidoc", - "react-native-animatable", - "react-native-collapsible", - "react-swipeable-list", - "react-textarea-autosize", - "readme-md", - "recharts", - "riot", - "sortablejs", - "tdesign-mobile-vue", - "uploadcare-widget", - "wait-on", - "weui", - "zustand", - "fontsource", - "nextra", - "synckit", - "tinyglobby", - "tstyche", - "@ibyar/expressions", - "@mantine/carousel", - "@mantine/code-highlight", - "@mantine/dropzone", - "@mantine/nprogress", - "@mantine/spotlight", - "@mantine/store", - "@mantine/tiptap", - "allure-js-commons", - "express-intlayer", - "is-mobile", - "rehype-mermaid", - "@bugsnag/react-native", - "@enact/ui", - "@enact/webos", - "@ionic/angular", - "@npmtuanmap/velit-nobis-nostrum-nam", - "@skylernpm/hic-inventore-dolores", - "@skylernpm/reiciendis-non-corrupti", - "admin-lte", - "backendless", - "smartbanner.js", - "zarm", - "@enact/sandstone", - "perfect-scrollbar", - "react-responsive-select", - "titanium", - "@antora/logger", - "@asyncapi/generator", - "@docusaurus/core", - "@ionic/react", - "@juggle/resize-observer", - "@mui/base", - "@mui/private-theming", - "@mui/utils", - "@nestjsx/crud", - "@nestjsx/crud-typeorm", - "@netlify/framework-info", - "@next/env", - "@pmmmwh/react-refresh-webpack-plugin", - "@pothos/core", - "@storybook/addon-backgrounds", - "@strapi/strapi", - "@svgr/core", - "@svgr/hast-util-to-babel-ast", - "@tinyhttp/encode-url", - "@tinyhttp/logger", - "@tsparticles/interaction-external-push", - "@tsparticles/move-base", - "@tsparticles/shape-emoji", - "@tsparticles/updater-color", - "@tsparticles/updater-opacity", - "@tsparticles/updater-out-modes", - "@uppy/companion", - "@vuepress/core", - "@vuepress/markdown", - "@vuepress/markdown-loader", - "@vuepress/plugin-active-header-links", - "@vuepress/plugin-last-updated", - "@vuepress/plugin-nprogress", - "@vuepress/plugin-register-components", - "@vuepress/plugin-search", - "@vuepress/shared-utils", - "@vuepress/theme-default", - "@walletconnect/browser-utils", - "@walletconnect/iso-crypto", - "@walletconnect/legacy-modal", - "@walletconnect/legacy-provider", - "@walletconnect/socket-transport", - "@wordpress/primitives", - "angular-messages", - "angular-mocks", - "ansi-align", - "blocking-proxy", - "body-scroll-lock", - "broccoli", - "broccoli-builder", - "broccoli-middleware", - "browserstack", - "camelcase-css", - "character-entities", - "character-entities-html4", - "character-entities-legacy", - "character-reference-invalid", - "client-only", - "color-string", - "comma-separated-tokens", - "condense-newlines", - "css-mediaquery", - "css.escape", - "csso", - "dashdash", - "decap-cms-backend-aws-cognito-github-proxy", - "decap-cms-backend-azure", - "decap-cms-backend-bitbucket", - "decap-cms-backend-git-gateway", - "decap-cms-backend-github", - "decap-cms-backend-gitlab", - "decap-cms-backend-proxy", - "decap-cms-backend-test", - "device-detector-js", - "docsify", - "docsify-cli", - "dom7", - "enzyme-to-json", - "epub2", - "escape-goat", - "esdoc", - "eslint-rule-documentation", - "globals-docs", - "hast-util-is-element", - "hast-util-parse-selector", - "hast-util-to-parse5", - "hast-util-whitespace", - "html-parse-stringify", - "html-void-elements", - "http-graceful-shutdown", - "icss-utils", - "inferno-create-element", - "inferno-hydrate", - "inferno-vnode-flags", - "infima", - "ink-docstrap", - "jasminewd2", - "jest-preset-angular", - "jest-preview", - "logging-helpers", - "lws-index", - "micromark-extension-gfm-tagfilter", - "micromark-util-encode", - "micromark-util-html-tag-name", - "mobile-detect", - "nth-check", - "parse-entities", - "postcss-js", - "postcss-modules-values", - "query-selector-shadow-dom", - "rc-hammerjs", - "rdme", - "react-colorful", - "react-device-detect", - "react-easy-router", - "react-fast-compare", - "react-native-file-viewer", - "react-native-lightbox-v2", - "react-native-progress", - "react-native-svg-charts", - "react-native-youtube-iframe", - "react-popper", - "react-responsive-modal", - "react-style-singleton", - "text-hex", - "tsparticles", - "tua-body-scroll-lock", - "typedoc-default-themes", - "use-callback-ref", - "use-sidecar", - "vconsole", - "vitefu", - "vue-perfect-scrollbar", - "vuepress", - "wait-for-expect", - "webdriver-js-extender", - "webdriver-manager", - "widest-line", - "worktop", - "@antora/playbook-builder", - "@applitools/utils", - "@dataui/crud", - "@mui/types", - "@tsparticles/shape-circle", - "@tsparticles/updater-life", - "@tsparticles/updater-rotate", - "drag-drop", - "plasmo", - "react-h5-audio-player", - "@arethetypeswrong/cli", - "arethetypeswrong", - "astro", - "astrojs", - "cookiecutter", - "degit", - "tseslint", - "@web/test-runner-mocha", - "colord", - "@expressots/core", - "@tsparticles/interaction-particles-links", - "@astrojs/starlight", - "@expressots/adapter-express", - "@expressots/shared", - "@tsparticles/interaction-external-bounce", - "@tsparticles/interaction-external-remove", - "@tsparticles/move-parallax", - "@tsparticles/shape-polygon", - "@tsparticles/shape-square", - "pinia", - "@floating-ui/react", - "@tsparticles/shape-image", - "astro-expressive-code", - "netlify-cms-backend-test", - "rehype-expressive-code", - "@augment-vir/assert", - "cssfilter", - "@amaui/icons-material-rounded-react", - "@appium/types", - "@dataui/crud-typeorm", - "@tsparticles/basic", - "@tsparticles/updater-size", - "@onesy/icons-material-rounded-react", - "@tsparticles/interaction-external-grab", - "@tsparticles/interaction-particles-collisions", - "react-native-macos", - "@tsparticles/interaction-external-repulse", - "@tsparticles/slim", - "@ionic/react-router", - "@immobiliarelabs/backstage-plugin-gitlab-backend", - "@tsparticles/shape-star", - "kuler", - "@scalar/nextjs-api-reference", - "netlify-cms-backend-bitbucket", - "vendors", - "@busy-hour/blaze", - "@busy-hour/blaze-types", - "payload", - "attw", - "@egjs/flicking", - "body-scroll-lock-upgrade", - "@casl/ability", - "neostandard", - "@appium/schema", - "@modern-js/utils", - "@types/xast", - "css-what", - "grunt-svgmin", - "@modern-js/node-bundle-require", - "@axe-core/playwright", - "tsdown", - "careful-downloader", - "sonner", - "@ckeditor/ckeditor5-collaboration-core", - "embla-carousel-reactive-utils", - "react-smooth", - "globrex", - "@ckeditor/ckeditor5-real-time-collaboration", - "@inquirer/type", - "grammy", - "@tsparticles/plugin-hex-color", - "@tsparticles/plugin-hsl-color", - "@udecode/plate", - "loki", - "netlify-cms-backend-gitlab", - "teeny-tap", - "emoji-js", - "mercurius", - "publint", - "unbundle", - "@walletconnect/http-connection", - "convex-helpers", - "eslint-plugin-react-refresh", - "gulp-jsdoc3", - "netlify-cms-backend-git-gateway", - "borp", - "pagefind", - "@pinia/testing", - "leaflet-gesture-handling", - "@headlessui/vue", - "remeda", - "rolldown", - "valibot", - "netlify-cms-backend-proxy", - "lefthook", - "@nuxt/ui", - "country-codes-flags-phone-codes", - "embla-carousel-react", - "input-otp", - "zoroaster", - "embla-carousel", - "@assistant-ui/react", - "@csstools/css-calc", - "@globalart/nestjs-swagger", - "@graphiql/plugin-doc-explorer", - "@mastra/core", - "next-router-mock", - "vue-draggable-next", - "@tsparticles/plugin-rgb-color", - "react-native-lightbox", - "rolldown-vite", - "react-native-aes-crypto", - "@inquirer/figures", - "@lobehub/chat", - "@inquirer/confirm", - "@upstash/context7-mcp", - "@storybook/addon-vitest", - "@walletconnect/heartbeat", - "lory.js", - "react-camera-pro", - "react-native-nitro-modules", - "@csstools/css-color-parser", - "@csstools/color-helpers", - "shadcn", - "@tanstack/virtual-core", - "otp-io", - "survey-core", - "@appium/support", - "@intlayer/api", - "@prisma/dev", - "@architect/asap", - "canvaskit-wasm", - "@edsdk/n1ed-react", - "react-error-boundary", - "@crxjs/vite-plugin", - "@observablehq/plot", - "skia-canvas", - "@flmngr/flmngr-react", - "@vitest/browser-playwright", - "md-to-pdf", - "@applitools/eyes", - "@applitools/driver", - "@applitools/screenshoter", - "@tsparticles/interaction-external-slow", - "@tsparticles/shape-line", - "@antora/cli", - "@antora/navigation-builder", - "@openspacelabs/react-native-zoomable-view", - "@testcontainers/postgresql", - "unplugin", - "@antora/redirect-producer", - "@antora/site-publisher", - "@appium/logger", - "planck", - "stage-js", - "oxfmt", - "syncpack", - "nolyfill", - "@appium/base-driver", - "@inquirer/expand", - "@inquirer/select", - "@c15t/backend", - "@react-native-vector-icons/common", - "@antora/content-classifier", - "@tsparticles/interaction-particles-attract", - "@popperjs/core", - "animejs", - "blurup", - "encryptor", - "flickity", - "jstz", - "lexxy", - "mapboxgl", - "mongoid", - "nums", - "orms", - "pannellum", - "psql", - "svgs", - "swiperjs", - "tributejs", - "twbs", - "xbytes", - "dependencies", - "devDependencies", - "keywords", - "ts", - "big.js", - "@alifd/field", - "@alifd/overlay", - "@alifd/validate", - "shallow-element-equals", - "@types/react-transition-group", - "jsonp", - "ts-mocha", - "tsconfck", - "@types/co", - "html5shiv", - "react-axe", - "sass-true", - "@types/md5", - "react-live", - "solarlunar", - "@types/chai", - "@types/glob", - "@types/node", - "mochawesome", - "@types/jsonp", - "@types/react", - "@types/yargs", - "@types/big.js", - "@types/enzyme", - "@types/lodash", - "react-cropper", - "@types/webpack", - "simulate-event", - "@types/fs-extra", - "@types/inquirer", - "chrome-launcher", - "react-draggable", - "@types/react-dom", - "@types/stylelint", - "console-polyfill", - "fast-sass-loader", - "@alifd/doc-parser", - "@alifd/meet-react", - "@types/babel-core", - "@types/classnames", - "markdown-it-prism", - "@alifd/sass-mapper", - "@types/react-redux", - "@alifd/sass-tracker", - "@types/postcss-calc", - "@alifd/api-extractor", - "@alifd/dts-generator", - "babel-plugin-espower", - "es6-promise-polyfill", - "@alifd/adaptor-helper", - "@alifd/sassdoc-parser", - "eslint-plugin-cypress", - "cypress-image-snapshot", - "@alifd/adaptor-generate", - "@types/lodash.clonedeep", - "@types/react-router-dom", - "@alifd/babel-preset-next", - "@babel/plugin-syntax-jsx", - "css-split-webpack-plugin", - "karma-webdriver-launcher", - "@alifd/eslint-config-next", - "@types/react-test-renderer", - "node-sass-package-importer", - "stylelint-csstree-validator", - "@alifd/stylelint-config-next", - "stylelint-config-recommended", - "@types/cypress-image-snapshot", - "@types/react-copy-to-clipboard", - "babel-plugin-generator-prettier", - "@types/postcss-custom-properties", - "babel-plugin-transform-object-assign", - "babel-plugin-transform-proto-to-assign", - "babel-plugin-transform-react-es6-displayname", - "fusion", - "fusion design", - "component", - "ui toolkit", - "react-components", - "components", - "design", - "frontend", - "Angular CLI", - "Angular DevKit", - "core", - "devkit", - "sdk", - "blueprints", - "code generation", - "scaffolding", - "schematics", - "template", - "tooling", - "cdk", - "development", - "kit", - "@jridgewell/sourcemap-codec", - "compiler", - "@standard-schema/spec", - "material", - "material design", - "xhr2", - "@types/dom-navigation", - "router", - "rc-field-form", - "utility-types", - "lodash.mergewith", - "lodash.assignwith", - "normalize-css-color", - "react-native-codegen", - "@floating-ui/react-native", - "@rc-component/mini-decimal", - "react-native-modal-popover", - "@bang88/react-native-ultimate-listview", - "bisheng", - "jsonml.js", - "enquire.js", - "@types/jest", - "shell-utils", - "react-native-web", - "@ant-design/tools", - "@types/prop-types", - "@types/react-native", - "ant-design-palettes", - "react-github-button", - "react-native-mocker", - "react-document-title", - "react-native-screens", - "antd-mobile-demo-data", - "@react-navigation/stack", - "@types/lodash.mergewith", - "react-native-reanimated", - "@react-navigation/native", - "react-native-gesture-handler", - "@testing-library/react-native", - "@ant-design/icons-react-native", - "react-native-safe-area-context", - "metro-react-native-babel-preset", - "@react-native-community/eslint-config", - "ant", - "react-component", - "ui", - "framework", - "mobile", - "react native", - "@types/lodash-es", - "@ant-design/icons", - "@inline-svg-unique-id/react", - "icon", - "@auth/core", - "set-cookie-parser", - "@sveltejs/package", - "@sveltejs/adapter-auto", - "@types/set-cookie-parser", - "authentication", - "authjs", - "jwt", - "sveltekit", - "oidc", - "passwordless", - "fs-readdir-recursive", - "@jridgewell/trace-mapping", - "@types/fs-readdir-recursive", - "@babel/helper-transform-fixture-test-runner", - "6to5", - "es6", - "transpile", - "transpiler", - "js-tokens", - "@babel/helper-validator-identifier", - "charcodes", - "import-meta-resolve", - "gensync", - "@babel/helpers", - "@babel/template", - "@babel/generator", - "@jridgewell/remapping", - "@babel/helper-module-transforms", - "@babel/helper-compilation-targets", - "@types/debug", - "@types/semver", - "@types/resolve", - "@babel/plugin-syntax-flow", - "@types/convert-source-map", - "@babel/plugin-transform-flow-strip-types", - "@babel/plugin-transform-modules-commonjs", - "classes", - "const", - "harmony", - "let", - "modules", - "var", - "@babel/helper-fixtures", - "@babel/helper-string-parser", - "@babel/helper-check-duplicate-nodes", - "javascript", - "parser", - "tc39", - "ecmascript", - "@babel/helper-create-class-features-plugin", - "@babel/helper-plugin-test-runner", - "babel-plugin", - "moo", - "luxon", - "entities", - "liquidjs", - "iso-639-1", - "bcp-47-normalize", - "dependency-graph", - "@11ty/lodash-custom", - "@11ty/posthtml-urls", - "please-upgrade-node", - "@11ty/eleventy-utils", - "@11ty/recursive-copy", - "@11ty/dependency-tree", - "@sindresorhus/slugify", - "node-retrieve-globals", - "posthtml-match-helper", - "@11ty/dependency-tree-esm", - "@11ty/eleventy-dev-server", - "@11ty/eleventy-plugin-bundle", - "pretty", - "@iarna/toml", - "nano-staged", - "@zachleat/noop", - "@eslint/eslintrc", - "markdown-it-abbr", - "simple-git-hooks", - "jsx-async-runtime", - "@11ty/eleventy-img", - "@mdx-js/node-loader", - "@vue/server-renderer", - "zod-validation-error", - "@11ty/eleventy-plugin-rss", - "@11ty/eleventy-plugin-webc", - "@11ty/eleventy-plugin-syntaxhighlight", - "static-site-generator", - "static-site", - "ssg", - "website", - "jekyll", - "blog", - "templates", - "generator", - "11ty", - "html", - "liquid", - "@rollup/plugin-terser", - "@rollup/plugin-typescript", - "@types/benchmark", - "@types/bytes", - "stringifier", - "stylesheet", - "ast", - "css-parser", - "css-ast", - "css-tools", - "format", - "preprocessor", - "@advanced-rest-client/arc-icons", - "@advanced-rest-client/arc-marked", - "@advanced-rest-client/clipboard-copy", - "@advanced-rest-client/http-code-snippets", - "@advanced-rest-client/markdown-styles", - "@anypoint-web-components/anypoint-button", - "@anypoint-web-components/anypoint-collapse", - "@anypoint-web-components/anypoint-dropdown", - "@anypoint-web-components/anypoint-item", - "@anypoint-web-components/anypoint-listbox", - "@api-components/amf-helper-mixin", - "@api-components/api-annotation-document", - "@api-components/api-body-document", - "@api-components/api-example-generator", - "@api-components/api-headers-document", - "@api-components/api-parameters-document", - "@api-components/api-responses-document", - "@api-components/api-security-documentation", - "@api-components/http-method-label", - "lit-html", - "@advanced-rest-client/arc-demo-helper", - "@advanced-rest-client/oauth-authorization", - "@anypoint-web-components/anypoint-checkbox", - "@anypoint-web-components/anypoint-input", - "@anypoint-web-components/anypoint-styles", - "@api-components/api-model-generator", - "@api-components/api-navigation", - "@api-components/api-request", - "@api-components/api-server-selector", - "@commitlint/config-conventional", - "@open-wc/eslint-config", - "@open-wc/testing", - "@web/dev-server", - "@web/test-runner", - "@web/test-runner-playwright", - "typescript-lit-html-plugin", - "api-components", - "method-documentation", - "@graphql-typed-document-node/core", - "@wry/caches", - "@wry/equality", - "@wry/trie", - "optimism", - "apollo", - "hooks", - "client", - "cache", - "@asyncapi/parser", - "@rollup/plugin-babel", - "babel-plugin-source-map-support", - "asyncapi", - "@nicolo-ribaudo/eslint-scope-5-internals", - "@types/eslint", - "@typescript-eslint/scope-manager", - "@babel/plugin-syntax-decorators", - "array.prototype.concat", - "babel-plugin-polyfill-es-shims", - "object.getownpropertydescriptors", - "decorators", - "@babel/plugin-syntax-export-namespace-from", - "@babel/compat-data", - "@babel/plugin-syntax-object-rest-spread", - "@babel/plugin-transform-parameters", - "@babel/helper-module-imports", - "babel-plugin-polyfill-corejs2", - "babel-plugin-polyfill-corejs3", - "babel-plugin-polyfill-regenerator", - "@babel/runtime-corejs3", - "derequire", - "core-js-compat", - "@babel/preset-modules", - "@babel/helper-validator-option", - "@babel/plugin-transform-for-of", - "@babel/plugin-transform-spread", - "@babel/plugin-transform-classes", - "@babel/plugin-transform-literals", - "@babel/plugin-transform-new-target", - "@babel/plugin-transform-modules-amd", - "@babel/plugin-transform-modules-umd", - "@babel/plugin-transform-regenerator", - "@babel/plugin-transform-dotall-regex", - "@babel/plugin-transform-json-strings", - "@babel/plugin-transform-object-super", - "@babel/plugin-transform-sticky-regex", - "@babel/plugin-transform-block-scoping", - "@babel/plugin-transform-destructuring", - "@babel/plugin-transform-function-name", - "@babel/plugin-transform-typeof-symbol", - "@babel/plugin-transform-unicode-regex", - "@babel/plugin-syntax-import-assertions", - "@babel/plugin-syntax-import-attributes", - "@babel/plugin-transform-duplicate-keys", - "@babel/plugin-transform-dynamic-import", - "@babel/plugin-transform-reserved-words", - "@babel/plugin-syntax-unicode-sets-regex", - "@babel/plugin-transform-arrow-functions", - "@babel/plugin-transform-private-methods", - "@babel/plugin-transform-unicode-escapes", - "@babel/plugin-transform-class-properties", - "@babel/plugin-transform-modules-systemjs", - "@babel/plugin-transform-regexp-modifiers", - "@babel/plugin-transform-numeric-separator", - "@babel/plugin-transform-optional-chaining", - "@babel/plugin-transform-property-literals", - "@babel/plugin-transform-template-literals", - "@babel/plugin-transform-async-to-generator", - "@babel/plugin-transform-class-static-block", - "@babel/plugin-transform-object-rest-spread", - "@babel/plugin-transform-unicode-sets-regex", - "@babel/plugin-transform-computed-properties", - "@babel/plugin-transform-shorthand-properties", - "@babel/plugin-transform-export-namespace-from", - "@babel/plugin-transform-block-scoped-functions", - "@babel/plugin-transform-optional-catch-binding", - "@babel/plugin-transform-unicode-property-regex", - "@babel/plugin-transform-exponentiation-operator", - "@babel/plugin-proposal-private-property-in-object", - "@babel/plugin-transform-async-generator-functions", - "@babel/plugin-transform-member-expression-literals", - "@babel/plugin-transform-private-property-in-object", - "@babel/plugin-transform-nullish-coalescing-operator", - "@babel/plugin-transform-explicit-resource-management", - "@babel/plugin-transform-logical-assignment-operators", - "@babel/plugin-transform-named-capturing-groups-regex", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key", - "@babel/plugin-bugfix-safari-class-field-initializer-scope", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "@babel/plugin-transform-duplicate-named-capturing-groups-regex", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "@babel/plugin-transform-react-jsx", - "@babel/plugin-transform-react-display-name", - "@babel/plugin-transform-react-jsx-development", - "@babel/plugin-transform-react-pure-annotations", - "@babel/plugin-transform-typescript", - "babel-preset", - "pirates", - "clone-deep", - "@babel/helper-globals", - "@apidevtools/json-schema-ref-parser", - "@biz-dev-ops/web-components", - "@cucumber/gherkin-streams", - "@iframe-resizer/child", - "@iframe-resizer/parent", - "awilix", - "bpmn-js", - "json-schema-merge-allof", - "markdown-it-attrs", - "markdown-it-codetabs", - "markdown-it-footnote", - "markdown-it-multimd-table", - "markdown-it-plantuml-ex", - "markdown-it-task-lists", - "pdfjs-viewer-element", - "prince", - "svg-pan-zoom", - "swagger-ui-dist", - "web-resource-inliner", - "stylelint-config-standard-scss", - "md", - "openapi", - "bpmn", - "bdd", - "feature", - "async-exit-hook", - "transport", - "logger", - "backend", - "mri", - "p-limit", - "term-size", - "spawndamnit", - "@changesets/git", - "@changesets/pre", - "@changesets/read", - "@changesets/types", - "@changesets/write", - "@changesets/config", - "@changesets/errors", - "@changesets/logger", - "@manypkg/get-packages", - "package-manager-detector", - "@changesets/changelog-git", - "@inquirer/external-editor", - "@changesets/get-release-plan", - "@changesets/apply-release-plan", - "@changesets/should-skip-package", - "@changesets/get-dependents-graph", - "@changesets/assemble-release-plan", - "human-id", - "@chatscope/chat-ui-kit-styles", - "@fortawesome/fontawesome-free", - "@semantic-release/changelog", - "@semantic-release/git", - "@semantic-release/github", - "chokidar-cli", - "rollup-plugin-peer-deps-external", - "chat", - "reactjs", - "user interface", - "ui kit", - "communication", - "conversation", - "toolkit", - "library", - "reusable", - "feed", - "comments", - "social", - "talk", - "ckeditor", - "ckeditor 5", - "ckeditor5-feature", - "ckeditor5-plugin", - "ckeditor5-dll", - "@ckeditor/ckeditor5-integrations-common", - "wysiwyg", - "rich text", - "editor", - "contentEditable", - "editing", - "angular2", - "angular 5", - "ng", - "@ckeditor/ckeditor5-icons", - "@ckeditor/ckeditor5-enter", - "@ckeditor/ckeditor5-editor-balloon", - "operational transformation", - "ot", - "collaboration", - "collaborative", - "real-time", - "ckeditor5-build", - "@ckeditor/ckeditor5-editor-classic", - "@ckeditor/ckeditor5-font", - "@ckeditor/ckeditor5-alignment", - "@ckeditor/ckeditor5-editor-decoupled", - "@ckeditor/ckeditor5-editor-inline", - "blurhash", - "es-toolkit", - "ckeditor5-lib", - "@ckeditor/ckeditor5-watchdog", - "@ckeditor/ckeditor5-undo", - "@ckeditor/ckeditor5-select-all", - "color-parse", - "color-convert", - "vanilla-colorful", - "@types/color-convert", - "@ckeditor/ckeditor5-editor-multi-root", - "vue.js", - "vue component", - "vue.js component", - "@commitlint/format", - "@commitlint/lint", - "@commitlint/load", - "@commitlint/read", - "@commitlint/types", - "tinyexec", - "@commitlint/test", - "@commitlint/utils", - "@compodoc/live-server", - "@compodoc/ngd-transformer", - "@polka/send-type", - "bootstrap.native", - "decache", - "loglevel-plugin-prefix", - "lunr", - "neotraverse", - "opencollective-postinstall", - "os-name", - "polka", - "tablesort", - "vis-network", - "module", - "graph", - "@comunica/types", - "semantic", - "actor", - "messages", - "nf", - "@docsearch/css", - "@docsearch/js", - "@eslint/markdown", - "@rollup/plugin-replace", - "@stackblitz/sdk", - "bundlewatch", - "clean-css-cli", - "find-unused-sass-variables", - "hammer-simulator", - "hugo-bin", - "karma-coverage-istanbul-reporter", - "karma-jasmine-html-reporter", - "postcss-combine-duplicated-selectors", - "rollup-plugin-istanbul", - "sass-embedded", - "stylelint-config-twbs-bootstrap", - "vnu-jar", - "mobile-first", - "responsive", - "front-end", - "web", - "tokenizer", - "media query", - "matches", - "polyfill", - "postcss-plugin", - "pseudo", - "selector", - "custom", - "declarations", - "progressive", - "properties", - "utility", - "variables", - "vars", - "specificity", - "@cucumber/ci-environment", - "@cucumber/cucumber-expressions", - "@cucumber/gherkin", - "@cucumber/gherkin-utils", - "@cucumber/html-formatter", - "@cucumber/junit-xml-formatter", - "@cucumber/message-streams", - "@cucumber/messages", - "@cucumber/pretty-formatter", - "@cucumber/tag-expressions", - "assertion-error-formatter", - "capital-case", - "error-stack-parser", - "has-ansi", - "knuth-shuffle-seeded", - "read-package-up", - "string-argv", - "util-arity", - "yup", - "@cucumber/compatibility-kit", - "@cucumber/query", - "@eslint/compat", - "@types/dirty-chai", - "@types/express", - "@types/has-ansi", - "@types/lodash.merge", - "@types/luxon", - "@types/mocha", - "@types/mustache", - "@types/mz", - "@types/progress", - "@types/sinon-chai", - "@types/sinonjs__fake-timers", - "@types/stream-buffers", - "@types/tmp", - "chai-exclude", - "dependency-lint", - "genversion", - "reindent-template-literals", - "stream-to-string", - "testing", - "gherkin", - "tests", - "@types/mock-fs", - "@types/semver-compare", - "@types/signale", - "jest-mock-process", - "semver-compare", - "signale", - "deven", - "@diplodoc/cut-extension", - "@diplodoc/file-extension", - "@diplodoc/tabs-extension", - "@diplodoc/utils", - "get-root-node-polyfill", - "github-slugger", - "markdown-it-deflist", - "markdown-it-sup", - "markdownlint-rule-helpers", - "quick-lru", - "ts-dedent", - "@diplodoc/babel-preset", - "@diplodoc/lint", - "@diplodoc/tsconfig", - "@types/css", - "@types/github-slugger", - "@types/js-yaml", - "@types/markdown-it", - "@types/markdown-it-attrs", - "@types/sanitize-html", - "@vitest/coverage-v8", - "@vitest/ui", - "esbuild-sass-plugin", - "jest-serializer-html", - "markdown-it-testgen", - "terminal-link", - "yandex", - "docs", - "yfm", - "tool", - "tools", - "magic-bytes.js", - "@discordjs/util", - "discord-api-types", - "@sapphire/snowflake", - "@discordjs/collection", - "@sapphire/async-queue", - "@vladfrangu/async_event_emitter", - "turbo", - "@discordjs/scripts", - "eslint-config-neon", - "@favware/cliff-jumper", - "eslint-formatter-pretty", - "@discordjs/api-extractor", - "esbuild-plugin-version-injector", - "discord", - "api", - "rest", - "discordapp", - "discordjs", - "types", - "tsdoc", - "generated", - "@apidevtools/swagger-parser", - "@aws-sdk/client-s3", - "@diplodoc/client", - "@diplodoc/markdown-translation", - "@diplodoc/mermaid-extension", - "@diplodoc/openapi-extension", - "@doc-tools/yfm2xliff", - "@octokit/core", - "@types/json-stringify-safe", - "@yandex-cloud/nodejs-sdk", - "bem-cn-lite", - "threads", - "threads-plugin", - "@types/async", - "@types/chalk", - "@types/html-escaper", - "@types/mime-types", - "@types/shelljs", - "@types/tar-stream", - "markdown-it-meta", - "@types/markdownlint", - "@yandex-cloud/eslint-config", - "@yandex-cloud/prettier-config", - "@yandex-cloud/tsconfig", - "@tinyhttp/cookie-parser", - "cookie-encrypter", - "github-markdown-css", - "greenlock-express", - "memorystore", - "minisearch", - "selfsigned", - "sitemap", - "sql.js", - "workerpool", - "@types/body-parser", - "@types/compression", - "@types/express-session", - "@types/formidable", - "@types/prompts", - "@types/sass", - "@types/sql.js", - "@types/uuid", - "@types/workerpool", - "esbuild-wasm", - "razor", - "sqlite", - "aspx", - "@dnd-kit/core", - "@dnd-kit/modifiers", - "@dnd-kit/sortable", - "@dnd-kit/utilities", - "@stylistic/eslint-plugin", - "@stylistic/stylelint-plugin", - "@wordpress/dependency-extraction-webpack-plugin", - "lightningcss", - "swc-loader", - "@wordpress/api-fetch", - "scss", - "mixin", - "js", - "WordPress", - "@tsconfig/node22", - "@types/lodash.camelcase", - "@types/pretty-ms", - ".d.ts", - "definitions", - "@emotion/hash", - "@emotion/memoize", - "@emotion/serialize", - "babel-plugin-macros", - "find-root", - "stylis", - "babel-check-duplicated-nodes", - "styles", - "css-in-js", - "@emotion/cache", - "@emotion/sheet", - "@emotion/utils", - "@definitelytyped/dtslint", - "@emotion/is-prop-valid", - "@emotion/use-insertion-effect-with-fallbacks", - "@emotion/react", - "warun", - "dot-prop", - "installed-check", - "@typescript-eslint/types", - "@eslint-community/eslint-plugin-mysticatea", - "eslint-plugin", - "@fakeyanss/redocly-openapi-core", - "decko", - "json-pointer", - "mark.js", - "openapi-sampler", - "react-tabs", - "stickyfill", - "swagger2openapi", - "url-template", - "@cypress/webpack-preprocessor", - "@hot-loader/react-dom", - "@size-limit/preset-app", - "@types/dompurify", - "@types/enzyme-to-json", - "@types/json-pointer", - "@types/lunr", - "@types/mark.js", - "@types/marked", - "@types/prismjs", - "@types/styled-components", - "@types/tapable", - "@types/webpack-env", - "@wojtekmaj/enzyme-adapter-react-17", - "esbuild-loader", - "license-checker", - "lodash.noop", - "unfetch", - "OpenAPI", - "OpenAPI Specification", - "Swagger", - "JSON-Schema", - "API", - "REST", - "React.js", - "@floating-ui/dom", - "use-isomorphic-layout-effect", - "tooltip", - "popover", - "dropdown", - "menu", - "popup", - "positioning", - "font", - "font family", - "google fonts", - "inter", - "Inter", - "typeface", - "variable", - "roboto", - "Roboto", - "@fortawesome/fontawesome-common-types", - "awesome", - "fontawesome", - "svg", - "@babel/plugin-external-helpers", - "@fortawesome/free-brands-svg-icons", - "@semantic-release/exec", - "icons", - "server", - "@electron/rebuild", - "node-abi", - "@electron-forge/cli", - "electron-devtools-installer", - "@grandlinex/swagger-mate", - "@types/jsonwebtoken", - "@types/ms", - "@fastify/deepmerge", - "@graphql-markdown/graphql", - "@graphql-markdown/logger", - "@graphql-markdown/utils", - "@graphql-markdown/types", - "graphql-schema", - "graphql-markdown", - "@docusaurus/utils", - "@graphql-markdown/cli", - "@docusaurus/types", - "plugin", - "@tailwindcss/aspect-ratio", - "@tailwindcss/forms", - "@tailwindcss/typography", - "basename", - "filemanager-webpack-plugin", - "remove-files-webpack-plugin", - "sass-lint", - "configuration", - "boilerplate", - "@hapi/accept", - "@hapi/ammo", - "@hapi/boom", - "@hapi/bounce", - "@hapi/call", - "@hapi/catbox", - "@hapi/catbox-memory", - "@hapi/heavy", - "@hapi/hoek", - "@hapi/mimos", - "@hapi/podium", - "@hapi/shot", - "@hapi/somever", - "@hapi/statehood", - "@hapi/subtext", - "@hapi/teamwork", - "@hapi/topo", - "@hapi/validate", - "@hapi/code", - "@hapi/eslint-plugin", - "@hapi/inert", - "@hapi/lab", - "@hapi/vision", - "@hapi/wreck", - "comment-parser", - "@homer0/eslint-plugin", - "@homer0/prettier-config", - "@vitest/coverage-istanbul", - "leasot", - "@standard-schema/utils", - "@sinclair/typebox", - "@typeschema/core", - "@typeschema/main", - "@typeschema/zod", - "@vinejs/vine", - "ajv-errors", - "arktype", - "check-export-map", - "class-transformer", - "class-validator", - "computed-types", - "effect", - "fluentvalidation-ts", - "fp-ts", - "io-ts", - "io-ts-types", - "monocle-ts", - "newtype-ts", - "nope-validator", - "superstruct", - "typanion", - "vest", - "vite-tsconfig-paths", - "scheme", - "validation", - "scheme-validation", - "hookform", - "effect-ts", - "nope", - "TypeBox", - "typeschema", - "vine", - "standard-schema", - "google translate api", - "google translate", - "google api", - "translate api", - "google", - "translate", - "@atlaskit/pragmatic-drag-and-drop", - "@atlaskit/pragmatic-drag-and-drop-auto-scroll", - "@atlaskit/pragmatic-drag-and-drop-hitbox", - "vue3", - "vue 3.x", - "@ctrl/tinycolor", - "@inquirer/ansi", - "cli-width", - "fast-wrap-ansi", - "mute-stream", - "@inquirer/testing", - "@types/mute-stream", - "answer", - "answers", - "ask", - "base", - "command", - "command-line", - "confirm", - "generate", - "hyper", - "input", - "inquire", - "interface", - "iterm", - "node", - "nodejs", - "promptly", - "question", - "scaffold", - "scaffolder", - "stdin", - "stdout", - "terminal", - "tty", - "yeoman", - "zsh", - "@stencil/core", - "domino", - "@stencil/sass", - "@capacitor/core", - "playwright-core", - "@playwright/test", - "@capacitor/haptics", - "@capacitor/keyboard", - "@ionic/eslint-config", - "@capacitor/status-bar", - "@ionic/prettier-config", - "@rollup/plugin-virtual", - "@stencil/vue-output-target", - "@stencil/react-output-target", - "@stencil/angular-output-target", - "stencil", - "app", - "webapp", - "capacitor", - "progressive web app", - "pwa", - "layout", - "console", - "wrap", - "table", - "@istanbuljs/schema", - "test", - "coverage", - "@itwin/itwinui-illustrations-react", - "@swc/helpers", - "@tanstack/react-virtual", - "react-table", - "@swc/cli", - "eslint-plugin-require-extensions", - "design-system", - "itwin", - "itwinui", - "ux", - "@jest/console", - "@jest/pattern", - "@jest/reporters", - "@jest/test-result", - "@jest/transform", - "exit-x", - "jest-changed-files", - "jest-config", - "jest-haste-map", - "jest-message-util", - "jest-regex-util", - "jest-resolve-dependencies", - "jest-runner", - "jest-runtime", - "jest-snapshot", - "jest-validate", - "jest-watcher", - "@jest/test-sequencer", - "@jest/test-utils", - "@types/graceful-fs", - "@types/micromatch", - "easy", - "facebook", - "immersive", - "instant", - "mocking", - "painless", - "runner", - "sandboxed", - "snapshot", - "@jest/schemas", - "@types/istanbul-lib-coverage", - "@types/istanbul-reports", - "@types/json-schema", - "@types/redux-mock-store", - "document-register-element", - "redux-mock-store", - "form", - "forms", - "json", - "jsonforms", - "renderengine", - "schema", - "uischema", - "customization", - "@date-io/dayjs", - "@rollup/plugin-json", - "rollup-plugin-copy", - "rollup-plugin-import-css", - "renderer", - "@rollup/plugin-alias", - "@types/object-hash", - "@jupyterlab/apputils", - "@jupyterlab/coreutils", - "@jupyterlab/docregistry", - "@jupyterlab/rendermime", - "@jupyterlab/rendermime-interfaces", - "@jupyterlab/services", - "@jupyterlab/statedb", - "@jupyterlab/translation", - "@jupyterlab/ui-components", - "@lumino/algorithm", - "@lumino/application", - "@lumino/commands", - "@lumino/coreutils", - "@lumino/disposable", - "@lumino/messaging", - "@lumino/polling", - "@lumino/properties", - "@lumino/signaling", - "@lumino/widgets", - "@jupyterlab/testing", - "docopt", - "glob2base", - "lodash.difference", - "multipipe", - "safe-wipe", - "sass-convert", - "@kobedevi/sassdoc-theme-default", - "scss-comment-parser", - "strip-indent", - "vinyl-string", - "babel-plugin-transform-builtin-extend", - "opn-cli", - "doc", - "theme", - "chatfanpage", - "api-connect-x", - "api-connect-tiwtter", - "@inquirer/input", - "@inquirer/prompts", - "task", - "list", - "tasklist", - "term", - "ascii", - "unicode", - "loading", - "indicator", - "busy", - "wait", - "idle", - "react-remove-scroll", - "ui-kit", - "calendar", - "date", - "picker", - "time", - "react-hooks", - "state", - "modal", - "notification", - "notification-manager", - "notification-system", - "prism-react-renderer", - "highlight", - "syntax", - "syntax-highlight", - "styling", - "@material-ui/types", - "@material-ui/utils", - "@material-ui/styles", - "@material-ui/system", - "@microsoft/api-documenter", - "json-api", - "json:api", - "serializer", - "normalizer", - "formatter", - "@types/mdx", - "jsx", - "mdx", - "@rushstack/node-core-library", - "@microsoft/api-extractor-model", - "@rushstack/terminal", - "@rushstack/ts-command-line", - "@rushstack/rig-package", - "@rushstack/heft", - "decoupled-local-node-rig", - "local-eslint-config", - "JSDoc", - "AEDoc", - "TSDoc", - "declaration", - "dts", - "bundle", - "alpha", - "beta", - "tsdoc-build-rig", - "TypeScript", - "jju", - "@types/jju", - "@aws/durable-execution-sdk-js", - "@aws/durable-execution-sdk-js-testing", - "@datastream/core", - "@types/aws-lambda", - "Lambda", - "Middleware", - "Serverless", - "Framework", - "AWS", - "AWS Lambda", - "Function URL", - "Durable function", - "Middy", - "HTTP", - "JSON", - "Body Parser", - "JSON Body Parser", - "@aws-sdk/client-ssm", - "aws-xray-sdk", - "helper", - "moj", - "design system", - "@open-draft/deferred-promise", - "@open-draft/logger", - "@open-draft/until", - "is-node-process", - "outvariant", - "strict-event-emitter", - "@open-draft/test-server", - "@ossjs/release", - "@types/cors", - "@types/express-fileupload", - "@types/follow-redirects", - "@types/node-fetch", - "@types/superagent", - "@types/supertest", - "@types/ws", - "engine.io-parser", - "express-fileupload", - "express-rate-limit", - "socket.io-parser", - "vitest-environment-miniflare", - "web-encoding", - "webpack-http-server", - "intercept", - "fetch", - "low-level", - "mock", - "spy", - "mui", - "@mui/core-downloads-tracker", - "system", - "@mui/x-internals", - "mui-x", - "datepicker", - "timepicker", - "datetimepicker", - "@headlessui/react", - "@iconify-icon/react", - "@mdx-js/loader", - "@mdx-js/mdx", - "@shikijs/transformers", - "@theguild/remark-npm2yarn", - "@types/unist", - "@vcarl/remark-headings", - "approximate-number", - "extra-watch-webpack-plugin", - "flexsearch", - "git-url-parse", - "mdast-util-phrasing", - "next-seo", - "react-helmet-async", - "rehype-extract-excerpt", - "rehype-pretty-code", - "remark-frontmatter", - "remark-heading-id", - "remark-link-rewrite", - "shiki", - "tailwindcss-themer", - "webpack-virtual-modules", - "@types/color", - "@types/extra-watch-webpack-plugin", - "@types/git-url-parse", - "@types/mdast", - "@repo/eslint-config", - "@repo/typescript-config", - "@repo/prettier-config", - "posthtml-render", - "posthtml-parser", - "esthetic", - "builder", - "guides", - "demo", - "ng-doc", - "rehype-format", - "hast-util-has-property", - "hast-util-heading-rank", - "rehype-minify-whitespace", - "unist-util-filter", - "@shikijs/rehype", - "ordinal", - "@types/chai-as-promised", - "ethers", - "hardhat", - "@types/bn.js", - "@nomicfoundation/hardhat-ethers", - "@nomicfoundation/eslint-plugin-slow-imports", - "@nomicfoundation/eslint-plugin-hardhat-internal-rules", - "ethereum", - "smart-contracts", - "@isaacs/string-locale-compare", - "@npmcli/fs", - "@npmcli/installed-package-contents", - "@npmcli/metavuln-calculator", - "@npmcli/name-from-folder", - "@npmcli/package-json", - "@npmcli/query", - "@npmcli/redact", - "bin-links", - "cacache", - "common-ancestor-path", - "json-stringify-nice", - "npm-install-checks", - "npm-pick-manifest", - "parse-conflict-json", - "proggy", - "promise-all-reject-late", - "promise-call-limit", - "treeverse", - "walk-up-path", - "@npmcli/eslint-config", - "@npmcli/mock-registry", - "@npmcli/template-oss", - "minify-registry-metadata", - "tcompare", - "libnpm", - "workspaces", - "map-workspaces", - "@npmcli/promise-spawn", - "spawk", - "innertext", - "highlights", - "similarity", - "language-ini", - "property-ttl", - "language-dart", - "language-glsl", - "language-haxe", - "language-rust", - "lodash.pickby", - "language-erlang", - "language-stylus", - "highlights-tokens", - "atom-language-diff", - "atom-language-nginx", - "github-url-to-object", - "markdown-it-expand-tabs", - "markdown-it-lazy-headers", - "oniguruma", - "intercept-stdout", - "readme", - "gfm", - "formatted", - "syntax highlighting", - "Monorepo", - "Angular", - "React", - "Web", - "Node", - "Nest", - "Jest", - "Cypress", - "CLI", - "@zkochan/js-yaml", - "EsBuild", - "Front-end", - "Backend", - "Lint", - "ESLint", - "Testing", - "Express", - "babel-plugin-const-enum", - "babel-plugin-transform-typescript-metadata", - "Swc", - "Tsc", - "@nestjs/schematics", - "kill-port", - "@nx/docker", - "tcp-port-used", - "@oclif/errors", - "@oclif/parser", - "@oclif/help", - "@oclif/plugin-plugins", - "fancy-test", - "oclif", - "@types/indent-string", - "@types/proxyquire", - "@types/wrap-ansi", - "clean-stack", - "@oclif/prettier-config", - "@oclif/test", - "@types/clean-stack", - "@types/ejs", - "@types/pnpapi", - "@types/sinon", - "@types/supports-color", - "@types/wordwrap", - "madge", - "command line", - "args", - "argv", - "oclif-plugin", - "@octokit/plugin-paginate-rest", - "@octokit/plugin-request-log", - "@octokit/plugin-rest-endpoint-methods", - "@octokit/auth-action", - "@octokit/auth-app", - "@octokit/fixtures-server", - "@octokit/request", - "@octokit/tsconfig", - "semantic-release-plugin-update-version-in-files", - "octokit", - "api-client", - "@opentiny/vue-action-menu", - "@opentiny/vue-action-sheet", - "@opentiny/vue-alert", - "@opentiny/vue-amount", - "@opentiny/vue-anchor", - "@opentiny/vue-area", - "@opentiny/vue-async-flowchart", - "@opentiny/vue-autocomplete", - "@opentiny/vue-badge", - "@opentiny/vue-base-select", - "@opentiny/vue-breadcrumb", - "@opentiny/vue-breadcrumb-item", - "@opentiny/vue-bulletin-board", - "@opentiny/vue-button", - "@opentiny/vue-button-group", - "@opentiny/vue-calendar", - "@opentiny/vue-calendar-bar", - "@opentiny/vue-calendar-view", - "@opentiny/vue-card", - "@opentiny/vue-card-group", - "@opentiny/vue-card-template", - "@opentiny/vue-carousel", - "@opentiny/vue-carousel-item", - "@opentiny/vue-cascader", - "@opentiny/vue-cascader-menu", - "@opentiny/vue-cascader-mobile", - "@opentiny/vue-cascader-node", - "@opentiny/vue-cascader-panel", - "@opentiny/vue-cascader-select", - "@opentiny/vue-cascader-view", - "@opentiny/vue-cell", - "@opentiny/vue-checkbox", - "@opentiny/vue-checkbox-button", - "@opentiny/vue-checkbox-group", - "@opentiny/vue-col", - "@opentiny/vue-collapse", - "@opentiny/vue-collapse-item", - "@opentiny/vue-collapse-transition", - "@opentiny/vue-color-picker", - "@opentiny/vue-color-select-panel", - "@opentiny/vue-column-list-group", - "@opentiny/vue-column-list-item", - "@opentiny/vue-company", - "@opentiny/vue-config-provider", - "@opentiny/vue-container", - "@opentiny/vue-country", - "@opentiny/vue-crop", - "@opentiny/vue-currency", - "@opentiny/vue-date-panel", - "@opentiny/vue-date-picker", - "@opentiny/vue-date-picker-mobile-first", - "@opentiny/vue-date-range", - "@opentiny/vue-date-table", - "@opentiny/vue-dept", - "@opentiny/vue-dialog-box", - "@opentiny/vue-dialog-select", - "@opentiny/vue-divider", - "@opentiny/vue-drawer", - "@opentiny/vue-drop-roles", - "@opentiny/vue-drop-times", - "@opentiny/vue-dropdown", - "@opentiny/vue-dropdown-item", - "@opentiny/vue-dropdown-menu", - "@opentiny/vue-dynamic-scroller", - "@opentiny/vue-dynamic-scroller-item", - "@opentiny/vue-espace", - "@opentiny/vue-exception", - "@opentiny/vue-fall-menu", - "@opentiny/vue-file-upload", - "@opentiny/vue-filter", - "@opentiny/vue-filter-bar", - "@opentiny/vue-filter-box", - "@opentiny/vue-filter-panel", - "@opentiny/vue-float-button", - "@opentiny/vue-floatbar", - "@opentiny/vue-floating-button", - "@opentiny/vue-flowchart", - "@opentiny/vue-fluent-editor", - "@opentiny/vue-form", - "@opentiny/vue-form-item", - "@opentiny/vue-fullscreen", - "@opentiny/vue-grid", - "@opentiny/vue-grid-column", - "@opentiny/vue-grid-manager", - "@opentiny/vue-grid-select", - "@opentiny/vue-grid-toolbar", - "@opentiny/vue-guide", - "@opentiny/vue-hrapprover", - "@opentiny/vue-image", - "@opentiny/vue-image-viewer", - "@opentiny/vue-input", - "@opentiny/vue-ip-address", - "@opentiny/vue-layout", - "@opentiny/vue-link", - "@opentiny/vue-link-menu", - "@opentiny/vue-load-list", - "@opentiny/vue-loading", - "@opentiny/vue-locales", - "@opentiny/vue-logon-user", - "@opentiny/vue-logout", - "@opentiny/vue-menu", - "@opentiny/vue-message", - "@opentiny/vue-milestone", - "@opentiny/vue-mind-map", - "@opentiny/vue-modal", - "@opentiny/vue-month-range", - "@opentiny/vue-month-table", - "@opentiny/vue-nav-menu", - "@opentiny/vue-notify", - "@opentiny/vue-number-animation", - "@opentiny/vue-numeric", - "@opentiny/vue-option", - "@opentiny/vue-option-group", - "@opentiny/vue-pager", - "@opentiny/vue-pager-item", - "@opentiny/vue-panel", - "@opentiny/vue-picker", - "@opentiny/vue-pop-upload", - "@opentiny/vue-popconfirm", - "@opentiny/vue-popeditor", - "@opentiny/vue-popover", - "@opentiny/vue-popup", - "@opentiny/vue-progress", - "@opentiny/vue-pull-refresh", - "@opentiny/vue-qr-code", - "@opentiny/vue-quarter-panel", - "@opentiny/vue-query-builder", - "@opentiny/vue-radio", - "@opentiny/vue-radio-button", - "@opentiny/vue-radio-group", - "@opentiny/vue-rate", - "@opentiny/vue-record", - "@opentiny/vue-recycle-scroller", - "@opentiny/vue-river", - "@opentiny/vue-roles", - "@opentiny/vue-row", - "@opentiny/vue-scroll-text", - "@opentiny/vue-scrollbar", - "@opentiny/vue-search", - "@opentiny/vue-select", - "@opentiny/vue-select-dropdown", - "@opentiny/vue-select-mobile", - "@opentiny/vue-select-view", - "@opentiny/vue-select-wrapper", - "@opentiny/vue-selected-box", - "@opentiny/vue-signature", - "@opentiny/vue-skeleton", - "@opentiny/vue-skeleton-item", - "@opentiny/vue-slider", - "@opentiny/vue-slider-button", - "@opentiny/vue-slider-button-group", - "@opentiny/vue-space", - "@opentiny/vue-split", - "@opentiny/vue-standard-list-item", - "@opentiny/vue-statistic", - "@opentiny/vue-steps", - "@opentiny/vue-sticky", - "@opentiny/vue-switch", - "@opentiny/vue-tab-item", - "@opentiny/vue-tabbar", - "@opentiny/vue-tabbar-item", - "@opentiny/vue-table", - "@opentiny/vue-tabs", - "@opentiny/vue-tag", - "@opentiny/vue-tag-group", - "@opentiny/vue-tag-input", - "@opentiny/vue-text-popup", - "@opentiny/vue-time", - "@opentiny/vue-time-line", - "@opentiny/vue-time-panel", - "@opentiny/vue-time-picker", - "@opentiny/vue-time-picker-mobile", - "@opentiny/vue-time-range", - "@opentiny/vue-time-select", - "@opentiny/vue-time-spinner", - "@opentiny/vue-timeline-item", - "@opentiny/vue-toggle-menu", - "@opentiny/vue-tooltip", - "@opentiny/vue-top-box", - "@opentiny/vue-transfer", - "@opentiny/vue-transfer-panel", - "@opentiny/vue-tree", - "@opentiny/vue-tree-menu", - "@opentiny/vue-tree-select", - "@opentiny/vue-upload", - "@opentiny/vue-upload-dragger", - "@opentiny/vue-upload-list", - "@opentiny/vue-user", - "@opentiny/vue-user-account", - "@opentiny/vue-user-contact", - "@opentiny/vue-user-head", - "@opentiny/vue-user-head-group", - "@opentiny/vue-user-link", - "@opentiny/vue-virtual-scroll-box", - "@opentiny/vue-virtual-tree", - "@opentiny/vue-watermark", - "@opentiny/vue-wizard", - "@opentiny/vue-year-range", - "@opentiny/vue-year-table", - "component-library", - "vue-components", - "opentiny", - "renderless-components", - "headless-components", - "@opentiny/utils", - "@opentiny/vue-hooks", - "esno", - "gulp-svg-inline", - "gulp-transform", - "otterhttp", - "node.js", - "web framework", - "header-range-parser", - "@otterhttp/accepts", - "@otterhttp/content-type", - "@otterhttp/proxy-address", - "@otterhttp/type-is", - "@otterhttp/url", - "@otterhttp/router", - "req", - "es-escape-html", - "@otterhttp/content-disposition", - "@otterhttp/encode-url", - "@otterhttp/errors", - "@otterhttp/vary", - "res", - "@otterhttp/etag", - "send-file", - "@pact-foundation/pact-core", - "randexp", - "stack-utils", - "@pact-foundation/pact-js-prettier-config", - "@types/http-proxy", - "@types/nock", - "@types/ramda", - "@types/stack-utils", - "commit-and-tag-version", - "eslint-plugin-chai-friendly", - "pact", - "pact-js", - "contract testing", - "consumer driven testing", - "management", - "store", - "@phosphor/algorithm", - "@phosphor/commands", - "@phosphor/coreutils", - "@phosphor/disposable", - "@phosphor/domutils", - "@phosphor/dragdrop", - "@phosphor/keyboard", - "@phosphor/messaging", - "@phosphor/properties", - "@phosphor/signaling", - "@phosphor/virtualdom", - "@release-it/conventional-changelog", - "@types/jsdom", - "cobertura", - "eslint-config-phun-ky", - "git-cz", - "glob-bin", - "global-jsdom", - "putout", - "quibble", - "remark-github", - "remark-toc", - "typedoc-plugin-frontmatter", - "typedoc-plugin-mdn-links", - "typedoc-plugin-no-inherit", - "typedoc-plugin-remark", - "typedoc-plugin-rename-defaults", - "typedoc-vitepress-theme", - "unified-prettier", - "vitepress-plugin-group-icons", - "a11y", - "accessibility", - "anatomy", - "annotate", - "annotation", - "dissect", - "dissection", - "grid", - "grid-layout", - "html-elements", - "information", - "inspect", - "pin", - "spacing", - "spec", - "speccer", - "specification", - "specifications", - "specs", - "typography", - "stories", - "@webcomponents/shadycss", - "@polymer/gen-closure-declarations", - "@polymer/iron-component-page", - "@polymer/test-fixture", - "@webcomponents/webcomponentsjs", - "babel-preset-minify", - "dom5", - "google-closure-compiler", - "gulp-vulcanize", - "lazypipe", - "polymer-build", - "polymer-cli", - "wct-browser-legacy", - "cldr", - "gauge", - "upath", - "fontkit", - "ps-tree", - "get-value", - "set-value", - "github-api", - "unset-value", - "tap-colorize", - "core-js-bundle", - "app-module-path", - "es6-promise-pool", - "better-ajv-errors", - "jstransformer-dot", - "@metalsmith/layouts", - "@metalsmith/markdown", - "console-control-strings", - "@qooxdoo/eslint-config-qx", - "@qooxdoo/eslint-plugin-qx", - "eslint-formatter-codeframe", - "@qooxdoo/eslint-config-jsdoc-disable", - "@babel/plugin-proposal-optional-chaining-assign", - "dirsum", - "qooxdoo", - "fontend", - "back-end", - "widgets", - "gui", - "databinding", - "interfaces", - "mixins", - "@mdi/font", - "@mdi/svg", - "@xmldom/xmldom", - "animate.css", - "bootstrap-icons", - "eva-icons", - "line-awesome", - "eslint-config-quasar", - "quasar", - "fonts", - "animations", - "gltfpack", - "detect-gpu", - "r3f-perf", - "@types/three", - "three-stdlib", - "suspend-react", - "postprocessing", - "@storybook/react", - "@react-three/drei", - "@react-three/fiber", - "cypress-image-diff-js", - "rollup-plugin-postcss", - "@storybook/addon-links", - "@storybook/node-logger", - "eslint-plugin-storybook", - "@storybook/addon-actions", - "@storybook/react-webpack5", - "@react-three/test-renderer", - "@storybook/testing-library", - "@react-three/postprocessing", - "@storybook/addon-essentials", - "@storybook/addon-interactions", - "@types/testing-library__jest-dom", - "@storybook/preset-create-react-app", - "threejs", - "react-three-fiber", - "ready-player-me", - "3D", - "avatars", - "glb", - "@phryneas/ts-version", - "@size-limit/file", - "@size-limit/webpack", - "@testing-library/react-render-stream", - "@types/babel__core", - "@types/babel__helper-module-imports", - "@types/nanoid", - "@types/query-string", - "esbuild-extra", - "starter", - "reducer", - "slice", - "redux-toolkit", - "@rollup/pluginutils", - "commondir", - "fdir", - "is-reference", - "locate-character", - "require-relative", - "commonjs", - "require", - "is-module", - "string-capitalize", - "es2015", - "groq-js", - "refractor", - "@sanity/ui", - "@types/cpx", - "dotenv-flow", - "@sanity/color", - "@sanity/icons", - "@sanity/client", - "react-refractor", - "esbuild-register", - "@sanity/pkg-utils", - "@portabletext/react", - "@portabletext/toolkit", - "cpx", - "sanity", - "@types/mkdirp", - "@sanity/ui-workshop", - "@sanity/semantic-release-preset", - "eslint-plugin-simple-import-sort", - "API reference", - "@unhead/vue", - "@vueuse/core", - "microdiff", - "@scalar/agent-chat", - "@scalar/code-highlight", - "@scalar/api-client", - "@scalar/icons", - "@scalar/components", - "@scalar/helpers", - "@scalar/openapi-parser", - "@scalar/oas-utils", - "@scalar/openapi-types", - "@scalar/sidebar", - "@scalar/types", - "@scalar/snippetz", - "@scalar/use-hooks", - "@scalar/themes", - "@scalar/use-toasts", - "@scalar/workspace-store", - "@hono/node-server", - "@tailwindcss/vite", - "@vitejs/plugin-vue", - "@vue/test-utils", - "rollup-plugin-webpack-stats", - "vite-plugin-banner", - "vite-plugin-css-injected-by-js", - "@scalar/build-tooling", - "@scalar/core", - "@scalar/galaxy", - "@scalar/react-renderer", - "reference", - "swagger", - "fastify-plugin", - "@fastify/basic-auth", - "@fastify/http-proxy", - "@fastify/swagger", - "@serenity-js/core", - "@serenity-js/rest", - "@serenity-js/web", - "tiny-types", - "@integration/testing-tools", - "@serenity-js/assertions", - "@serenity-js/cucumber", - "@serenity-js/jasmine", - "@serenity-js/local-server", - "@serenity-js/mocha", - "@types/html-minifier", - "mocha-multi", - "automation", - "browser", - "e2e", - "end-to-end", - "integration", - "serenity", - "serenity-js", - "screenplay", - "screenplay-pattern", - "tdd", - "@wdio/reporter", - "@wdio/cli", - "@wdio/dot-reporter", - "@wdio/local-runner", - "@wdio/spec-reporter", - "@wdio/types", - "mocha-testdata", - "webdriverio", - "wdio", - "wdio-reporter", - "@sinonjs/commons", - "@mochify/cli", - "@mochify/driver-puppeteer", - "@mochify/driver-webdriver", - "@sinonjs/eslint-config", - "@sinonjs/referee-sinon", - "@storybook/icons", - "@storybook/csf-plugin", - "@storybook/react-dom-shim", - "telejson", - "memoizerific", - "storybook-addon", - "essentials", - "organize", - "MDX", - "autodocs", - "styleguide", - "style guide", - "web-components", - "@ant-design/colors", - "@ant-design/cssinjs", - "@ant-design/react-slick", - "@fortawesome/free-regular-svg-icons", - "@polkadot/react-identicon", - "@polkadot/util-crypto", - "@polkadot/wasm-crypto", - "@rc-component/tour", - "@zxing/browser", - "@zxing/library", - "boring-avatars", - "flatlist-react", - "jsqr", - "patch-package", - "phosphor-react", - "qrcode.react", - "rc-cascader", - "rc-checkbox", - "rc-collapse", - "rc-dialog", - "rc-drawer", - "rc-dropdown", - "rc-image", - "rc-input", - "rc-input-number", - "rc-mentions", - "rc-menu", - "rc-motion", - "rc-notification", - "rc-pagination", - "rc-picker", - "rc-progress", - "rc-rate", - "rc-resize-observer", - "rc-segmented", - "rc-select", - "rc-steps", - "rc-switch", - "rc-table", - "rc-tabs", - "rc-textarea", - "rc-tree", - "rc-tree-select", - "rc-trigger", - "rc-upload", - "react-pin-input", - "react-qrcode-logo", - "react-superellipse", - "scroll-into-view-if-needed", - "@babel/eslint-plugin", - "@emotion/babel-preset-css-prop", - "@emotion/server", - "@qixian.cs/github-contributors-list", - "@storybook/addons", - "@storybook/builder-webpack5", - "@storybook/manager-webpack5", - "@storybook/theming", - "@types/gtag.js", - "@types/jest-axe", - "@types/jest-environment-puppeteer", - "@types/jest-image-snapshot", - "@types/jquery", - "@types/puppeteer", - "@types/qs", - "@types/react-color", - "@types/react-highlight-words", - "@types/react-resizable", - "@types/react-window", - "@types/throttle-debounce", - "@types/warning", - "antd-img-crop", - "antd-token-previewer", - "array-move", - "bundlesize2", - "dekko", - "duplicate-package-checker-webpack-plugin", - "fetch-jsonp", - "jest-axe", - "jest-image-snapshot", - "jest-puppeteer", - "jsonml-to-react-element", - "lz-string", - "rc-footer", - "rc-tween-one", - "rc-virtual-list", - "react-fast-marquee", - "react-highlight-words", - "react-infinite-scroll-component", - "react-resizable", - "react-sticky-box", - "react-window", - "remark-lint", - "remark-preset-lint-recommended", - "rome", - "stylelint-config-prettier", - "stylelint-config-rational-order", - "stylelint-declaration-block-no-ignored-properties", - "sylvanas", - "vanilla-jsoneditor", - "xhr-mock", - "yaml-front-matter", - "@supernova-studio/client", - "@supernova-studio/model", - "abab", - "async-mutex", - "color2k", - "parse-color", - "string.prototype.matchall", - "@types/tinycolor2", - "trash-cli", - "tsconfig-paths-webpack-plugin", - "Supernova", - "Design Systems", - "Supernovaio", - "SDK", - "Design Tokens", - "Tokens", - "Assets", - "Components", - "Documentation", - "Markdown", - "CMS", - "expr-eval-fork", - "ml-matrix", - "postcss-calc-ast-parser", - "@ava/typescript", - "@stylistic/eslint-plugin-js", - "@svitejs/changesets-changelog-github-compact", - "eslint-config", - "@sveltejs/acorn-typescript", - "@types/cookie", - "devalue", - "esm-env", - "mrmime", - "sade", - "@opentelemetry/api", - "@types/connect", - "dts-buddy", - "official", - "obug", - "@sveltejs/vite-plugin-svelte-inspector", - "vite-plugin", - "vite plugin", - "@babel/plugin-transform-react-constant-elements", - "@svgr/plugin-jsx", - "@svgr/plugin-svgo", - "svgr", - "webpack-loader", - "@swc/counter", - "@swc/types", - "@napi-rs/cli", - "@rstest/core", - "swc", - "swcpack", - "rust", - "tsc", - "stylelint-prettier", - "@swisspost/design-system-icons", - "@swisspost/design-system-tokens", - "stylelint-config-sass-guidelines", - "collections", - "patterns", - "web components", - "ui library", - "symbiote.js", - "symbiote", - "widget", - "microfrontends", - "meta application", - "custom elements", - "shadow dom", - "shadow root", - "constructable stylesheets", - "adopted stylesheets", - "css custom properties", - "pubsub", - "import maps", - "cdn imports", - "https imports", - "reactive html attributes", - "MIT", - "JSDA", - "@types/content-type", - "istanbul-lib-coverage", - "istanbul-lib-report", - "istanbul-lib-source-maps", - "istanbul-reports", - "rollup-plugin-filesize", - "tanem-scripts", - "dom", - "images", - "img", - "scalable-vector-graphics", - "@tanstack/query-core", - "@tanstack/query-persist-client-core", - "@tanstack/query-test-utils", - "@testing-library/svelte", - "tanstack", - "query", - "@types/js-cookie", - "@github/webauthn-json", - "better-docs", - "eslint-config-preact", - "hanko", - "passkey", - "webauthn", - "passcode", - "password", - "kcd-scripts", - "functional", - "aria-query", - "@types/aria-query", - "dom-accessibility-api", - "jest-in-case", - "jest-watch-select-projects", - "jest-snapshot-serializer-ansi", - "unit", - "redent", - "@jest/globals", - "rollup-plugin-delete", - "jest-environment-jsdom-sixteen", - "jest-matcher-utils", - "@callstack/eslint-config", - "@relmify/jest-serializer-strip-ansi", - "testing-library", - "dotenv-cli", - "jest-mock", - "shared-scripts", - "@types/jest-in-case", - "@ph.fritsche/toolbox", - "jest-serializer-ansi", - "esbuild-plugin-globals", - "eslint-plugin-local-rules", - "@ph.fritsche/scripts-config", - "@esbuild-plugins/node-modules-polyfill", - "react-testing-library", - "dom-testing-library", - "regexparam", - "tinyhttp", - "static", - "@tinyhttp/vary", - "supertest-fetch", - "forwarded", - "headers", - "header", - "proxy-addr", - "net", - "network", - "@tinyhttp/accepts", - "@tinyhttp/content-disposition", - "@tinyhttp/content-type", - "params", - "particles.js", - "particlesjs", - "particles", - "particle", - "jsparticles", - "xparticles", - "particles-js", - "particles-bg", - "particles-bg-vue", - "particles-ts", - "particles.ts", - "react-particles-js", - "react-particles.js", - "react-particles", - "vue-particles", - "ngx-particles", - "angular-particles", - "particleground", - "vuejs", - "preactjs", - "angularjs", - "animation", - "html5", - "web-design", - "webdesign", - "css3", - "animated", - "background", - "confetti", - "fireworks", - "fireworks-js", - "confetti-js", - "confettijs", - "fireworksjs", - "canvas-confetti", - "@d-fischer/shared-utils", - "@twurple/api-call", - "@twurple/common", - "jose", - "twitch", - "extension", - "service", - "ebs", - "ts-api-utils", - "natural-compare", - "@eslint-community/regexpp", - "@typescript-eslint/type-utils", - "@typescript-eslint/visitor-keys", - "title-case", - "mdast-util-mdx", - "micromark-extension-mdxjs", - "@typescript-eslint/rule-tester", - "@typescript-eslint/rule-schema-to-typescript-types", - "eslintplugin", - "@typescript-eslint/typescript-estree", - "estree", - "@ucloud-fe/calendar", - "component-classes", - "create-react-context", - "emotion-theming", - "file-bytes-formatter", - "mini-store", - "rc-animate", - "rc-form", - "z-use-drag", - "@types/hoist-non-react-statics", - "@types/raf", - "@ucloud-fe/recodo-gen", - "ast-types", - "babel-plugin-emotion", - "babel-plugin-typescript-to-proptypes", - "babel-plugin-webpack-alias", - "css-hot-loader", - "jest-emotion", - "jsdom-screenshot", - "stylelint-config-styled-components", - "stylelint-processor-styled-components", - "tsc-alias", - "ucloud", - "jotai-x", - "is-hotkey", - "optics-ts", - "zustand-x", - "slate-react", - "jotai-optics", - "@udecode/slate", - "@udecode/utils", - "use-deep-compare", - "slate-hyperscript", - "@udecode/react-utils", - "@udecode/react-hotkeys", - "plate", - "slate", - "button", - "react-button", - "uiw-react", - "react.js", - "uikit", - "react-ui", - "@uiw/icons", - "react-icon", - "react-input", - "@uiw/react-overlay", - "overlay-trigger", - "react-overlay-trigger", - "utils", - "react-utils", - "prom-client", - "openapi-types", - "unleash-client", - "json-schema-to-ts", - "ts-node-dev", - "@types/type-is", - "Unleash", - "native", - "ios", - "android", - "flags", - "lit", - "keyux", - "nanostores", - "@lit/context", - "@uploadcare/cname-prefix", - "@uploadcare/image-shrink", - "@uploadcare/upload-client", - "@uploadcare/quality-insights", - "shipjs", - "render-jsx", - "lit-analyzer", - "ts-lit-plugin", - "@biomejs/js-api", - "@vitest/browser", - "eslint-plugin-wc", - "@types/svg-sprite", - "eslint-plugin-lit", - "vitest-browser-lit", - "@biomejs/wasm-nodejs", - "@size-limit/esbuild-why", - "esbuild-minify-templates", - "@total-typescript/ts-reset", - "@size-limit/preset-small-lib", - "@happy-dom/global-registrator", - "@csstools/postcss-cascade-layers", - "uploadcare", - "lighter", - "file uploader", - "adaptive image", - "image optimization", - "image editing", - "image size", - "cloud image editor", - "upload api client", - "building blocks", - "blocks", - "lr-blocks", - "uc-blocks", - "integrations", - "smart cdn", - "cloud file platform", - "transformation api", - "webp", - "avif", - "css context properties", - "meta applications", - "browserslist-to-esbuild", - "@babel/plugin-transform-react-jsx-self", - "@babel/plugin-transform-react-jsx-source", - "@rolldown/pluginutils", - "babel-plugin-react-compiler", - "fast refresh", - "@tsconfig/node20", - "pkgroll", - "create-vue", - "create-eslint-config", - "ajv-keywords", - "merge-deep", - "swagger-parser", - "@ant-design/icons-svg", - "@makotot/ghostui", - "@types/hast", - "@umijs/bundler-utils", - "@umijs/core", - "@umijs/utils", - "animated-scroll-to", - "codesandbox", - "comlink", - "dumi-afx-deps", - "estree-util-to-js", - "estree-util-visit", - "file-system-cache", - "heti", - "html2sketch", - "mdast-util-find-and-replace", - "mdast-util-to-string", - "prism-themes", - "react-loading-skeleton", - "react-simple-code-editor", - "rehype-remove-comments", - "remark-directive", - "sucrase", - "umi", - "unist-util-visit-parents", - "v8-compile-cache", - "vfile", - "dumi-assets-types", - "@types/highlight-words-core", - "@types/hosted-git-info", - "@types/lodash.throttle", - "@types/pluralize", - "@umijs/lint", - "@umijs/plugins", - "codesandbox-import-utils", - "git-repo-info", - "highlight-words-core", - "zx", - "dumi-theme-mobile", - "static site generator", - "jamstack", - "aleo", - "cryptography", - "blockchain", - "decentralized", - "zero-knowledge", - "oracle", - "event-target-shim", - "@mysticatea/eslint-plugin", - "@mysticatea/spy", - "dts-bundle-generator", - "karma-growl-reporter", - "rollup-plugin-babel-minify", - "rollup-watch", - "type-tester", - "w3c", - "whatwg", - "event", - "abort", - "cancel", - "abortcontroller", - "abortsignal", - "controller", - "signal", - "shim", - "negotiator", - "content", - "negotiation", - "accept", - "middleware", - "progress-estimator", - "@types/figlet", - "@types/git-clone", - "rollup-plugin-node-externals", - "nestjs", - "fullstack", - "zip", - "archive", - "flowcontrol", - "flow", - "control", - "arch", - "cron-parser", - "date.js", - "human-interval", - "@types/human-interval", - "job", - "jobs", - "delayed", - "blockchain-bend4", - "blockchain-meat7", - "bow-swam-troops-care", - "cent-matter-to", - "closer-composed-particularly-shout", - "coach-organized-notice", - "correct-home-silent7", - "course-whenever-merely", - "crop-birthday-web3-children", - "exchange-known-bend", - "face-eventually-bound", - "grass-dollar-crew-floating", - "information-fruit-web3-perfect", - "lay-rest-hour", - "material-balance-trade-solar", - "meat-think-stove8", - "office-deal-mostly1", - "product-slight-adult-settlers", - "recently-done-should-moon", - "scientific-exist-event2", - "sentence-won-little-western", - "speed-wing-eat", - "stay-including", - "supper-term-including-snake", - "truck-hospital-equator-hurt", - "trunk-darkness-believed-corner", - "typical-recall-industry-exchange", - "warn-clothing-whose0", - "weigh-flew-web3-farm", - "@airtap/browserify-istanbul", - "airtap-default", - "airtap-multi", - "bruce-millis-option", - "engine.io", - "engine.io-client", - "find-nearest-file", - "globs-to-files", - "humanize-duration", - "load-script", - "make-promises-safe", - "maybe-combine-errors", - "nanoresource", - "nanoresource-collection", - "on-stream-close", - "run-parallel-settled", - "tap-completed", - "thunky-with-args", - "transient-error", - "abstract-browser", - "simple-get", - "saucelabs", - "fast-uri", - "json-schema-traverse", - "require-from-string", - "@ajv-validator/config", - "@types/require-from-string", - "dayjs-plugin-utc", - "if-node-version", - "json-schema-test", - "module-from-string", - "re2", - "tsify", - "uri-js", - "json-schema-validator", - "json-schema-validation", - "Ajv", - "longjohn", - "buffer-more-ints", - "claire", - "AMQP", - "AMQP 0-9-1", - "RabbitMQ", - "simple", - "ux bootstrap", - "client-side", - "@angular-cli/ast-tools", - "@angular-cli/base-href-webpack", - "@ngtools/json-schema", - "@ngtools/webpack", - "denodeify", - "ember-cli-normalize-entity-name", - "ember-cli-string-utils", - "exists-sync", - "findup", - "get-caller-file", - "isbinaryfile", - "node-modules-path", - "script-loader", - "silent-error", - "sourcemap-istanbul-instrumenter-loader", - "component library", - "justified", - "256", - "ansi", - "bgblack", - "bgBlack", - "bgblue", - "bgBlue", - "bgcyan", - "bgCyan", - "bggreen", - "bgGreen", - "bgmagenta", - "bgMagenta", - "bgred", - "bgRed", - "bgwhite", - "bgWhite", - "bgyellow", - "bgYellow", - "black", - "blue", - "bold", - "clorox", - "colour", - "cyan", - "dim", - "formatting", - "gray", - "green", - "grey", - "hidden", - "inverse", - "italic", - "logging", - "magenta", - "red", - "reset", - "rgb", - "shell", - "str", - "strikethrough", - "style", - "text", - "underline", - "white", - "yellow", - "environment", - "escape", - "escapes", - "vt100", - "sequence", - "codes", - "cursor", - "iterm2", - "screen", - "erase", - "scrollback", - "regex", - "regexp", - "re", - "match", - "find", - "pattern", - "svg-term-cli", - "@ant-design/icons-vue", - "@emotion/unitless", - "@simonwep/pickr", - "array-tree-filter", - "dom-align", - "dom-scroll-into-view", - "shallow-equal", - "vue-types", - "@babel/plugin-proposal-optional-chaining", - "@babel/plugin-transform-object-assign", - "@types/koa", - "@types/lru-cache", - "@types/postcss-load-config", - "@vitejs/plugin-vue-jsx", - "@vue/babel-plugin-jsx", - "@vue/cli-plugin-eslint", - "@vue/eslint-config-prettier", - "@vue/vue3-jest", - "@webpack-cli/serve", - "ali-oss", - "babel-plugin-inline-import-data-uri", - "babel-plugin-transform-require-context", - "colorful", - "compare-versions", - "cz-git", - "diacritics", - "docsearch.js", - "enquire-js", - "eslint-plugin-no-explicit-type-exports", - "gulp-strip-code", - "ignore-emit-webpack-plugin", - "is-windows", - "jest-serializer-vue", - "jest-transform-stub", - "json-templater", - "less-plugin-npm-import", - "less-vars-to-js", - "majo", - "markdown-it-table-of-contents", - "merge2", - "remark-stringify", - "remark-yaml-config", - "reqwest", - "rucksack-css", - "selenium-server", - "string-replace-loader", - "umi-request", - "vue-clipboard2", - "vue-drag-resize", - "vue-infinite-scroll", - "vue-request", - "vue-tsc", - "webpackbar", - "vueComponent", - "@rc-component/form", - "@rc-component/menu", - "@rc-component/rate", - "@rc-component/tabs", - "@rc-component/tree", - "@rc-component/util", - "@rc-component/image", - "@rc-component/input", - "@rc-component/steps", - "@rc-component/table", - "@rc-component/dialog", - "@rc-component/drawer", - "@rc-component/motion", - "@rc-component/picker", - "@rc-component/qrcode", - "@rc-component/select", - "@rc-component/slider", - "@rc-component/switch", - "@rc-component/upload", - "@rc-component/tooltip", - "@rc-component/trigger", - "@ant-design/fast-color", - "@rc-component/cascader", - "@rc-component/checkbox", - "@rc-component/collapse", - "@rc-component/dropdown", - "@rc-component/mentions", - "@rc-component/progress", - "@rc-component/textarea", - "@rc-component/segmented", - "@rc-component/pagination", - "@ant-design/cssinjs-utils", - "@rc-component/tree-select", - "@rc-component/color-picker", - "@rc-component/input-number", - "@rc-component/notification", - "@rc-component/mutate-observer", - "@rc-component/resize-observer", - "p-all", - "runes2", - "mermaid", - "spinnies", - "env-paths", - "@types/tar", - "antd-style", - "@types/pngjs", - "cli-progress", - "domparser-rs", - "vanilla-tilt", - "@ant-design/x", - "react-countup", - "@prettier/sync", - "@types/adm-zip", - "@types/ali-oss", - "@blazediff/core", - "@types/css-tree", - "@types/minimist", - "@types/spinnies", - "@types/nprogress", - "lunar-typescript", - "@ant-design/x-sdk", - "csstree-validator", - "@types/http-server", - "@types/cli-progress", - "@antfu/eslint-config", - "@ant-design/compatible", - "@codecov/webpack-plugin", - "@types/isomorphic-fetch", - "dumi-plugin-color-chunk", - "@microflash/rehype-figure", - "@rc-component/virtual-list", - "circular-dependency-plugin", - "@codesandbox/sandpack-react", - "@eslint-react/eslint-plugin", - "@ant-design/happy-work-theme", - "cypress-image-diff-html-report", - "@ianvs/prettier-plugin-sort-imports", - "remark-lint-no-undefined-references", - "@madccc/duplicate-package-checker-webpack-plugin", - "@api-components/api-console-ext-comm", - "@api-components/api-documentation", - "@api-components/api-summary", - "@polymer/app-layout", - "@polymer/iron-media-query", - "@polymer/paper-toast", - "@anypoint-web-components/anypoint-menu-mixin", - "@open-wc/building-rollup", - "@polymer/iron-test-helpers", - "@web/test-runner-visual-regression", - "amf-client-js", - "rollup-plugin-cpy", - "unzipper", - "raml", - "amf", - "diff-match-patch", - "expose-loader", - "klaw-sync", - "eslint-config-recommended", - "restful", - "apidoc-light", - "portable", - "programmatic", - "cli-app", - "api-documentation", - "markdown-documentation", - "http2", - "apple", - "push", - "push notifications", - "iOS", - "apns", - "notifications", - "apollo-cache", - "apollo-utilities", - "ts-invariant", - "@types/zen-observable", - "symbol-observable", - "zen-observable", - "jsnext", - "relay", - "zen-observable-ts", - "@types/graphql", - "apollo-link-http-common", - "apollo-fetch", - "object-to-querystring", - "cracks", - "root", - "node_modules", - "@colors/colors", - "appium-adb", - "appium-chromedriver", - "asyncbox", - "io.appium.settings", - "portscanner", - "teen_process", - "@appium/eslint-config-appium-ts", - "@appium/tsconfig", - "@types/bluebird", - "@types/portscanner", - "appium", - "mobile testing", - "@azure/identity", - "@azure/core-auth", - "@azure/functions", - "diagnostic-channel", - "@opentelemetry/core", - "@azure/functions-old", - "@opentelemetry/api-logs", - "@opentelemetry/sdk-logs", - "@opentelemetry/resources", - "@opentelemetry/sdk-metrics", - "@azure/monitor-opentelemetry", - "@opentelemetry/sdk-trace-base", - "@opentelemetry/sdk-trace-node", - "diagnostic-channel-publishers", - "@opentelemetry/otlp-exporter-base", - "@opentelemetry/semantic-conventions", - "@azure/monitor-opentelemetry-exporter", - "@opentelemetry/exporter-logs-otlp-http", - "@opentelemetry/exporter-trace-otlp-http", - "@opentelemetry/exporter-metrics-otlp-http", - "@opentelemetry/exporter-metrics-otlp-proto", - "@azure/opentelemetry-instrumentation-azure-sdk", - "@types/long", - "@types/microsoft__typescript-etw", - "exception monitoring", - "request monitoring", - "performance monitoring", - "application insights", - "microsoft", - "azure", - "cloud", - "tracing", - "telemetry", - "analytics", - "apm", - "@aws-sdk/credential-provider-node", - "@aws-sdk/hash-node", - "@aws-sdk/protocol-http", - "@aws-sdk/signature-v4", - "@aws-sdk/types", - "aws-xray-sdk-core", - "@aws-amplify/amplify-appsync-simulator", - "constructs", - "prettier-plugin-organize-attributes", - "projen", - "appsync", - "aws", - "gql", - "lambda", - "xray", - "archiver-utils", - "buffer-crc32", - "readdir-glob", - "zip-stream", - "archiver-jsdoc-theme", - "stream-bench", - "stream", - "@babel/plugin-syntax-class-properties", - "option", - "define-properties", - "es-abstract", - "es-shim-unscopables", - "@es-shims/api", - "@ljharb/eslint-config", - "encoding", - "has-strict-mode", - "Array.prototype.flatMap", - "flatMap", - "array", - "ESnext", - "flatten", - "Array.prototype.flatten", - "es-shim API", - "arrayify", - "convert", - "value", - "ensure", - "is-nan", - "object-is", - "array-fill", - "fn.name", - "is-buffer", - "propget", - "pruddy-error", - "assertion", - "asserts", - "shouldjs", - "unit testing", - "babel-minify", - "rollup-plugin-npm", - "babel-preset-es2017", - "native-promise-only", - "eslint-plugin-prefer-arrow", - "babel-plugin-syntax-async-generators", - "callback", - "@types/tap", - "await", - "listen", - "then-sleep", - "@babel/node", - "@pika/pack", - "pika-plugin-build-web-babel", - "pika-plugin-ts-types", - "validate", - "libnpx", - "node-cleanup", - "npm-lockfile", - "find-package-json", - "audit", - "lockfile", - "shrinkwrap", - "import-cwd", - "parse-github-url", - "babel-plugin-rewire", - "auto", - "automatic", - "changelog", - "change", - "git", - "commit", - "commits", - "detective", - "detective-es6", - "is-builtin-module", - "package-json", - "sync-exec", - "package", - "fraction.js", - "prefix", - "@vercel/nft", - "arrgv", - "callsites", - "cbor", - "chunkd", - "ci-parallel-vars", - "code-excerpt", - "common-path-prefix", - "concordance", - "currently-unhandled", - "emittery", - "ignore-by-default", - "matcher", - "memoize", - "package-config", - "resolve-cwd", - "supertap", - "temp-dir", - "@sindresorhus/tsconfig", - "🦄", - "concurrent", - "parallel", - "fast", - "promises", - "function", - "generators", - "yield", - "observable", - "observables", - "webpack-log", - "empty-module", - "ps-node", - "loader", - "ieee754", - "jmespath", - "hash-test-vectors", - "insert-module-globals", - "amazon", - "ec2", - "simpledb", - "s3", - "sqs", - "ses", - "sns", - "route53", - "rds", - "elasticache", - "cloudfront", - "fps", - "cloudformation", - "cloudwatch", - "dynamodb", - "iam", - "swf", - "autoscaling", - "cloudsearch", - "elb", - "loadbalancing", - "emr", - "mapreduce", - "importexport", - "storagegateway", - "workflow", - "vpc", - "beanstalk", - "glacier", - "kinesis", - "cloudtrail", - "waf", - "memoizee", - "@deque/dot", - "colorjs.io", - "typedarray", - "emoji-regex", - "grunt-babel", - "revalidator", - "sri-toolbox", - "serve-handler", - "grunt-bytesize", - "weakmap-polyfill", - "clean-jsdoc-theme", - "css-selector-parser", - "@axe-core/webdriverjs", - "conventional-commits-parser", - "eslint-plugin-mocha-no-only", - "Accessibility", - "axe", - "proxy-from-env", - "dev-null", - "formdata-node", - "stream-throttle", - "karma-jasmine-ajax", - "string-replace-async", - "abortcontroller-polyfill", - "rollup-plugin-bundle-size", - "@rollup/plugin-multi-entry", - "rollup-plugin-auto-external", - "istanbul-instrumenter-loader", - "ajax", - "browserify-mime", - "json-edm-parser", - "md5.js", - "batchflow", - "factor-bundle", - "karma-env-preprocessor", - "storage", - "output-file-sync", - "v8flags", - "babel-code-frame", - "babel-helpers", - "babel-messages", - "private", - "babel-helper-transform-fixture-test-runner", - "eslint-config-babel", - "trim-right", - "try-resolve", - "babel-preset-jest", - "babel-plugin-transform-export-extensions", - "babel-preset-power-assert", - "conventional-github-releaser", - "module.exports", - "airbnb-js-shims", - "babel-plugin-transform-replace-object-assign", - "dynamic", - "import", - "@umijs/test", - "babel-preset-umi", - "react-toolbox", - "@istanbuljs/load-nyc-config", - "istanbul-lib-instrument", - "test-exclude", - "pmock", - "instrumentation", - "require-package-name", - "@babel/plugin-proposal-function-bind", - "@babel/preset-stage-0", - "lodash-bound", - "lodash-compat", - "cherry-pick", - "find-babel-config", - "prettier-eslint-cli", - "resolver", - "alias", - "rewrite", - "rename", - "mapping", - "babel-plugin-tester", - "babel-helper-remap-async-to-generator", - "babel-plugin-syntax-async-functions", - "babel-helper-function-name", - "babel-plugin-syntax-class-properties", - "babel-plugin-syntax-decorators", - "es7", - "babel-plugin-transform-strict-mode", - "babel-plugin-syntax-object-rest-spread", - "babel-helper-builder-react-jsx", - "@babel/preset-flow", - "babel-plugin-flow-react-proptypes", - "pkgfiles", - "minification", - "propTypes", - "regenerator-transform", - "@babel/plugin-proposal-numeric-separator", - "@babel/plugin-transform-property-mutators", - "@babel/plugin-proposal-optional-catch-binding", - "@babel/plugin-proposal-nullish-coalescing-operator", - "babel-plugin-check-es2015-constants", - "babel-plugin-syntax-trailing-function-commas", - "babel-plugin-transform-es2015-arrow-functions", - "babel-plugin-transform-es2015-block-scoped-functions", - "babel-plugin-transform-es2015-classes", - "babel-plugin-transform-es2015-computed-properties", - "babel-plugin-transform-es2015-destructuring", - "babel-plugin-transform-es2015-duplicate-keys", - "babel-plugin-transform-es2015-for-of", - "babel-plugin-transform-es2015-function-name", - "babel-plugin-transform-es2015-literals", - "babel-plugin-transform-es2015-modules-amd", - "babel-plugin-transform-es2015-modules-systemjs", - "babel-plugin-transform-es2015-modules-umd", - "babel-plugin-transform-es2015-object-super", - "babel-plugin-transform-es2015-parameters", - "babel-plugin-transform-es2015-shorthand-properties", - "babel-plugin-transform-es2015-spread", - "babel-plugin-transform-es2015-sticky-regex", - "babel-plugin-transform-es2015-typeof-symbol", - "babel-plugin-transform-es2015-unicode-regex", - "babel-plugin-transform-exponentiation-operator", - "electron-to-chromium", - "babel-preset-flow", - "babel-plugin-transform-react-display-name", - "babel-plugin-transform-react-jsx-source", - "babel-plugin-transform-react-jsx-self", - "@babel/plugin-proposal-private-methods", - "babel-plugin-transform-do-expressions", - "babel-plugin-transform-function-bind", - "babel-plugin-transform-class-constructor-call", - "babel-plugin-transform-decorators", - "babel-plugin-transform-async-generator-functions", - "home-or-tmp", - "esutils", - "to-fast-properties", - "lodash.zipobject", - "babel-plugin-transform-node-env-inline", - "babel-plugin-transform-flow-strip-types", - "unicode-9.0.0", - "model", - "view", - "@purtuga/esm-webpack-plugin", - "@types/validator", - "@web/test-runner-browserstack", - "@web/test-runner-junit-reporter", - "otpauth", - "backend-as-a-service", - "grunt-template", - "codec", - "decoder", - "encoder", - "base64", - "basic", - "auth", - "authorization", - "basicauth", - "sorted-object", - "ministructure", - "sinatra", - "orange sms", - "node-gyp-build", - "prebuildify", - "encryption", - "crypt", - "hash", - "esm2umd", - "pomelo-logger", - "di", - "IoC", - "AOP", - "dependency", - "injection", - "consistent", - "hot reload", - "front-backend", - "sharable codes", - "dependency injection", - "asynchronous script loading", - "magic, self-described javaScript objects", - "beautify", - "art-near-room-catch", - "blanket-line", - "born-greatly-explain3", - "bring-water-silence", - "brush-bigger-afternoon0", - "column-wore-meet-war", - "compare-breeze-mad2", - "did-straight-sister-sail", - "excitement-tonight-dead", - "gain-pleasant-prepare", - "industrial-public-immediately-until", - "is-straight-web3-attack", - "known-wet-thirty-gave", - "listen-private-thee6", - "mainly-cent", - "mountain-quarter-sit8", - "mouse-bat-web3-present", - "needs-supper-anything", - "percent-impossible-score", - "rocket-location-calm-valley", - "seldom-fire-web3-running", - "shade-swim-shells1", - "spider-melted-chemical", - "stretch-onto-driver7", - "tiny-dream-supply5", - "tool-invented-girl-jungle", - "we-hunt-process", - "web3-automobile7", - "whether-dangerous", - "ansicolors", - "ignorepatterns", - "response-stream", - "script-injector", - "find-global-packages", - "jsl", - "dotpathlookup", - "simplehttpserver", - "platform", - "docdown", - "qunit-extras", - "performance", - "speed", - "@beyond-js/specifier-parser", - "@beyond-js/fs", - "@beyond-js/bee", - "ansi-to-html", - "concat-with-sourcemaps", - "json-format", - "resolve-package-path", - "uimport", - "global-modules", - "universal", - "universal javascript", - "universal typescript", - "isomorphic", - "isomorphic javascript", - "isomorphic typescript", - "sigle page", - "spa", - "modular development", - "microfrontend", - "micro frontend", - "microservices", - "micro services", - "hmr", - "hot module replacement", - "ssr", - "server side rendering", - "typescript packager", - "JAMStack", - "real time", - "react framework", - "ssr react framework", - "vue framework", - "ssr vue framework", - "svelte framework", - "ssr svelte framework", - "websockets", - "check-types", - "hoopy", - "tryer", - "please-release-me", - "spooks", - "streamify", - "stringify", - "serialise", - "serialize", - "write", - "asynchronous", - "arbitrary", - "precision", - "arithmetic", - "big", - "number", - "decimal", - "float", - "biginteger", - "bigdecimal", - "bignumber", - "bigint", - "bignum", - "file-uri-to-path", - "addon", - "gyp", - "c", - "c++", - "@noble/hashes", - "@antv/component", - "@antv/g2", - "@antv/g2plot", - "@antv/util", - "d3-color", - "react-reconciler", - "@antv/data-set", - "@babel/preset-es2015", - "@storybook/addon-info", - "@storybook/addon-knobs", - "@storybook/addon-options", - "@umijs/fabric", - "@welldone-software/why-did-you-render", - "aphrodite", - "babel-plugin-inline-react-svg", - "babel-plugin-inline-svg", - "bx-jest-electron", - "declaration-bundler-webpack-plugin", - "git-directory-deploy", - "imports-loader", - "moment-jalaali", - "react-with-styles-interface-aphrodite", - "react-with-styles-interface-css-compiler", - "snapshot-diff", - "g2", - "@types/readable-stream", - "buffers", - "awesomesauce", - "falafel", - "foreach", - "coffee-react", - "uglify-save-license", - "curses", - "tui", - "tput", - "terminfo", - "termcap", - "ansi-term", - "drawille-canvas-blessed-contrib", - "map-canvas", - "marked-terminal", - "memory-streams", - "picture-tuber", - "sparkline", - "term-canvas", - "x256", - "@types/blessed", - "block", - "loop", - "kefir", - "baconjs", - "promises-a", - "promises-aplus", - "deferred", - "deferreds", - "future", - "flow control", - "dsl", - "fluent interface", - "standardx", - "BN", - "Big number", - "BigNum", - "Modulo", - "Montgomery", - "create-error", - "bookshelf-jsdoc-theme", - "postgresql", - "datamapper", - "active record", - "error", - "@types/mime", - "@astrojs/mdx", - "@astrojs/check", - "@astrojs/prism", - "@astrojs/sitemap", - "astro-auto-import", - "prettier-plugin-astro", - "@astrojs/markdown-remark", - "mincer", - "eyeglass-module", - "box", - "boxes", - "border", - "quote-stream", - "static-module", - "browserify-transform", - "readFileSync", - "asset", - "heimdalljs", - "array-equal", - "fs-tree-diff", - "broccoli-plugin", - "mocha-eslint", - "release-it-lerna-changelog", - "merge-trees", - "broccoli-fixture", - "copy", - "broccoli-fixturify", - "multidep", - "ts-docs-gen", - "tslint-plugin-prettier", - "browser-sync-client", - "browser-sync-ui", - "bs-recipes", - "dev-ip", - "easy-extender", - "eazy-logger", - "resp-modifier", - "bs-snippet-injector", - "generate-changelog", - "browser sync", - "live reload", - "sync", - "subarg", - "defined", - "parents", - "deps-sort", - "duplexer2", - "htmlescape", - "module-deps", - "stream-http", - "browser-pack", - "syntax-error", - "os-browserify", - "shasum-object", - "vm-browserify", - "domain-browser", - "mkdirp-classic", - "string_decoder", - "tty-browserify", - "browser-resolve", - "browserify-zlib", - "querystring-es3", - "https-browserify", - "read-only-stream", - "stream-browserify", - "timers-browserify", - "console-browserify", - "cached-path-relative", - "constants-browserify", - "labeled-stream-splicer", - "seq", - "isstream", - "coffeeify", - "browser-unpack", - "has-object-spread", - "has-template-literals", - "make-generator-function", - "commonj-esque", - "exposify", - "mothership", - "rename-function-calls", - "test-peer-range", - "transform", - "window", - "baseline-browser-mapping", - "node-releases", - "update-browserslist-db", - "browsers", - "target", - "base-x", - "ts-standard", - "base58", - "bitcoin", - "crytography", - "decode", - "decoding", - "encode", - "litecoin", - "typescript-cached-transpile", - "acorn-dynamic-import", - "acorn-jsx", - "regexpu-core", - "console-group", - "@rollup/plugin-buble", - "test262-stream", - "transpilation", - "compilation", - "esnext", - "es2017", - "arraybuffer", - "compatible", - "dataview", - "uint8array", - "equal", - "builtin", - "built-in", - "builtins", - "bundled", - "names", - "flexbox", - "@asyncapi/specs", - "@clack/prompts", - "@oclif/plugin-warn-if-update-available", - "@stoplight/yaml", - "jsonpathly", - "mergician", - "@types/jsonpath", - "bump", - "compress", - "mv", - "dtrace-provider", - "safe-json-stringify", - "ben", - "log4j", - "streamsearch", - "@mscdex/eslint-config", - "uploads", - "multipart", - "closurecompiler", - "lxiv", - "metascript", - "pretty-hrtime", - "testjs", - "utfx", - "typed array", - "webrtc", - "byte", - "converter", - "@bcoe/v8-coverage", - "foreground-child", - "v8-to-istanbul", - "chai-jest-snapshot", - "v8", - "profiler", - "inspector", - "@types/mri", - "eslint-config-rem", - "rollup-plugin-esbuild", - "@babel/plugin-syntax-typescript", - "@cacheable/utils", - "@faker-js/faker", - "@keyv/redis", - "@vitest/spy", - "cache-manager-redis-yet", - "cacheable", - "caching", - "cache manager", - "in-memory cache", - "multi-store cache", - "ttl", - "caching layer", - "cache abstraction", - "cache middleware", - "cache strategies", - "cache wrapper", - "call-bind-apply-helpers", - "es-define-property", - "get-intrinsic", - "set-function-length", - "es", - "callbind", - "callbound", - "call", - "bind", - "bound", - "call-bound", - "camel-case", - "camel", - "case", - "dash", - "hyphen", - "separator", - "pascalcase", - "pascal-case", - "support", - "prebuild-install", - "assert-rejects", - "graphic", - "graphics", - "pixman", - "cairo", - "image", - "pdf", - "case sensitive", - "slimerjs", - "scraping", - "loupe", - "pathval", - "check-error", - "assertion-error", - "@web/dev-server-rollup", - "chai-plugin", - "assertions", - "strategy", - "@debitoor/eslint-config-debitoor", - "objects", - "subset", - "contains", - "containSubset", - "deep", - "like", - "similar", - "includes", - "superset", - "yoctodelay", - "docpress", - "git-update-ghpages", - "gulp-ava", - "gulp-uglify-es", - "random", - "mersenne", - "name", - "address", - "dice", - "param-case", - "kebab-case", - "header-case", - "c12", - "confbox", - "convert-gitmoji", - "node-fetch-native", - "ofetch", - "pkg-types", - "scule", - "std-env", - "@kurkle/color", - "@rollup/plugin-inject", - "@types/offscreencanvas", - "chartjs-adapter-luxon", - "chartjs-adapter-moment", - "chartjs-test-utils", - "eslint-config-chartjs", - "eslint-plugin-es", - "karma-safari-private-launcher", - "rollup-plugin-swc3", - "charts", - "data", - "graphs", - "domutils", - "domhandler", - "cheerio-select", - "whatwg-mimetype", - "encoding-sniffer", - "parse5-parser-stream", - "parse5-htmlparser2-tree-adapter", - "@imgix/js-core", - "@octokit/graphql", - "@vitest/eslint-plugin", - "@types/whatwg-mimetype", - "htmlparser", - "scraper", - "xml", - "node-version", - "child", - "@better-scroll/core", - "add-dom-event-listener", - "choerodon-ui-font", - "css-animation", - "css-unit-converter", - "dom-closest", - "dom-lib", - "element-resize-event", - "htmlhint", - "insert-css", - "jsbarcode", - "jsonlint", - "jsonlint-mod", - "mutationobserver-shim", - "querystringify", - "quill-delta-to-html", - "react-beautiful-dnd", - "react-codemirror2", - "react-easy-crop", - "react-image-lightbox", - "react-lazy-load", - "react-quill", - "rmc-feedback", - "smooth-scroll-into-view-if-needed", - "@babel/plugin-transform-proto-to-assign", - "@types/codemirror", - "@types/element-resize-event", - "@types/faker", - "@types/insert-css", - "@types/jsbarcode", - "@types/prettier", - "@types/qrcode.react", - "@types/react-beautiful-dnd", - "@types/react-is", - "@types/react-slick", - "bisheng-plugin-choerodon-ui", - "bisheng-plugin-description", - "bisheng-plugin-react", - "bisheng-plugin-toc", - "eslint-tinker", - "intersection-observer", - "mark-twain", - "rc-queue-anim", - "rc-scroll-anim", - "react-infinite-scroller", - "react-sublime-video", - "scrollama", - "values.js", - "vfile-message", - "webpack-filter-warnings-plugin", - "choerodon", - "readdirp", - "@paulmillr/jsbt", - "watchFile", - "watcher", - "watching", - "file", - "ci", - "continuous", - "detect", - "@ckeditor/ckeditor5-emoji", - "@ckeditor/ckeditor5-style", - "@ckeditor/ckeditor5-mention", - "@ckeditor/ckeditor5-minimap", - "@ckeditor/ckeditor5-autosave", - "@ckeditor/ckeditor5-bookmark", - "@ckeditor/ckeditor5-language", - "@ckeditor/ckeditor5-highlight", - "@ckeditor/ckeditor5-code-block", - "@ckeditor/ckeditor5-fullscreen", - "@ckeditor/ckeditor5-html-embed", - "@ckeditor/ckeditor5-page-break", - "@ckeditor/ckeditor5-theme-lark", - "@ckeditor/ckeditor5-word-count", - "@ckeditor/ckeditor5-show-blocks", - "@ckeditor/ckeditor5-html-support", - "@ckeditor/ckeditor5-markdown-gfm", - "@ckeditor/ckeditor5-remove-format", - "@ckeditor/ckeditor5-source-editing", - "@ckeditor/ckeditor5-horizontal-line", - "@ckeditor/ckeditor5-find-and-replace", - "@ckeditor/ckeditor5-restricted-editing", - "@ckeditor/ckeditor5-special-characters", - "classname", - "minifier", - "@chrisblossom/eslint-config", - "@types/read-pkg-up", - "temp-sandbox", - "clean", - "parent-module", - "uncache", - "uncached", - "unrequire", - "delete", - "remove", - "rm", - "opts", - "parseopt", - "opt", - "argsparse", - "optparse", - "autocomplete", - "autocompletion", - "d", - "es6-iterator", - "timers-ext", - "eslint-config-medikoo", - "git-list-updated", - "github-release-from-cc-changelog", - "prettier-elastic", - "tad", - "toggle", - "display", - "show", - "hide", - "string-length", - "spinner", - "spinners", - "expresso", - "ansi-256-colors", - "git-rev", - "growl", - "line", - "tables", - "tabular", - "jest-runner-eslint", - "lerna-changelog", - "truncate", - "ellipsis", - "limit", - "width", - "cardinal", - "hyperlinker", - "@oclif/screen", - "extract-stack", - "object-treeify", - "@oclif/linewrap", - "natural-orderby", - "password-prompt", - "@types/strip-ansi", - "@types/ansi-styles", - "@types/extract-stack", - "@types/rollup", - "@yarnpkg/core", - "@yarnpkg/fslib", - "eslint-plugin-arca", - "rollup-plugin-multi-input", - "parsing", - "argument", - "good-listener", - "select", - "tiny-emitter", - "cut", - "clipboard-image", - "is-wayland", - "is64bit", - "powershell-utils", - "paste", - "copy-paste", - "pasteboard", - "pbcopy", - "clip", - "xclip", - "xsel", - "command line interface", - "progress bar", - "istanbul-harmony", - "coro", - "coroutine", - "mask", - "ignore-walk", - "teeny-request", - "urlgrey", - "code-coverage", - "codecov.io", - "@codemirror/lint", - "@codemirror/view", - "@codemirror/state", - "@codemirror/search", - "@codemirror/commands", - "@codemirror/language", - "@codemirror/autocomplete", - "@codemirror/buildhelper", - "google-closure-compiler-js", - "language", - "jison", - "wcwidth", - "column", - "exists", - "array-back", - "find-replace", - "typical", - "options", - "chalk-template", - "table-layout", - "usage", - "is-utf8", - "cachedir", - "find-node-modules", - "mocha-multi-reporters", - "@istanbuljs/nyc-config-babel", - "cz-conventional-changelog-default-export", - "conventional changelog", - "es2015-tag", - "es6-tag", - "heredoc", - "indent", - "indents", - "literal", - "multi", - "multiline", - "normalize", - "one", - "oneline", - "single", - "singleline", - "strings", - "strip", - "tag", - "tagged", - "emitter", - "emit", - "listener", - "observe", - "compressible", - "on-headers", - "gzip", - "deflate", - "brotli", - "buffer-from", - "ctrlc-wrapper", - "coveralls-next", - "@types/shell-quote", - "@hirez_io/observer-spy", - "eslint-plugin-import-lite", - "eslint-config-flat-gitignore", - "bash", - "sh", - "cson", - "faceoff", - "hjson", - "x2js", - "conf", - "node-config", - "config-node", - "env", - "atomically", - "is-safe-filename", - "xdg-basedir", - "settings", - "preferences", - "persist", - "persistent", - "save", - "rack", - "flash", - "kruptein", - "mongo", - "session", - "vite-plugin-dts", - "defu", - "is-unicode-supported", - "sentencer", - "reporter", - "elegant", - "clack", - "stacktrace", - "eco", - "ect", - "eta", - "slm", - "dust", - "jazz", - "just", - "mote", - "qejs", - "twig", - "vash", - "jqtpl", - "twing", - "hamlet", - "hamljs", - "liquor", - "plates", - "teacup", - "toffee", - "walrus", - "htmling", - "ractive", - "whiskers", - "tinyliquid", - "velocityjs", - "haml-coffee", - "liquid-node", - "arc-templates", - "dustjs-helpers", - "swig-templates", - "dustjs-linkedin", - "bracket-template", - "engine", - "rfc6266", - "rfc7231", - "@types/normalize-package-data", - "fd-package-json", - "normalize-package-data", - "@conventional-changelog/git-client", - "conventional-changelog-writer", - "conventional-changelog-preset-loader", - "conventional", - "tempfile", - "add-stream", - "compare-func", - "conventionalcommits.org", - "preset", - "inline-source-map", - "sourcemap", - "source", - "map", - "@borderless/ts-scripts", - "top-sites", - "cookies", - "sign", - "unsign", - "toggle-selection", - "@brettz9/node-static", - "selenium-server-standalone-jar", - "is-gzip", - "@types/glob-parent", - "@types/normalize-path", - "eslint-config-webpack", - "@types/serialize-javascript", - "transfer", - "move", - "noms", - "qr", - "qrcode", - "simple qr", - "npm qr JavaScript", - "js qr code", - "corcojs-qrcode-sample", - "logo", - "simple qrcode", - "cordova-common", - "cordova-create", - "cordova-lib", - "@cordova/eslint-config", - "ES3", - "ES5", - "ES6", - "ES7", - "ES2015", - "ES2016", - "ES2017", - "ES2018", - "ES2019", - "ES2020", - "ES2021", - "ES2022", - "ES2023", - "ES2024", - "ECMAScript 3", - "ECMAScript 5", - "ECMAScript 6", - "ECMAScript 7", - "ECMAScript 2015", - "ECMAScript 2016", - "ECMAScript 2017", - "ECMAScript 2018", - "ECMAScript 2019", - "ECMAScript 2020", - "ECMAScript 2021", - "ECMAScript 2022", - "ECMAScript 2023", - "ECMAScript 2024", - "Map", - "Set", - "WeakMap", - "WeakSet", - "TypedArray", - "Promise", - "Observable", - "Symbol", - "Iterator", - "AsyncIterator", - "URL", - "URLSearchParams", - "queueMicrotask", - "setImmediate", - "structuredClone", - "ponyfill", - "parse-json", - "@types/parse-json", - "eslint-config-davidtheclark-node", - "remark-preset-davidtheclark", - "load", - "lcov-parse", - "log-driver", - "cpy", - "cp", - "files", - "file-system", - "quick", - "contents", - "tslog", - "hpagent", - "seenreq", - "http2-wrapper", - "@types/got", - "spider", - "crc16ccitt", - "crc16kermit", - "crc16modbus", - "crc16", - "crc16xmodem", - "crc1", - "crc24", - "crc32", - "crc81wire", - "crc8", - "crc8dvbs2", - "crcjam", - "cipher-base", - "ripemd160", - "sha.js", - "async-traverse-tree", - "css-url-parser", - "data-uri-to-buffer", - "group-args", - "inline-critical", - "oust", - "penthouse", - "postcss-discard", - "postcss-image-inliner", - "postcss-url", - "normalize-newline", - "stream-array", - "optimization", - "@fast-check/jest", - "@insurgent/commitlint-config", - "@insurgent/conventional-changelog-preset", - "@semantic-release/commit-analyzer", - "@semantic-release/npm", - "@semantic-release/release-notes-generator", - "@swc/jest", - "node cron", - "node-cron", - "schedule", - "cronjob", - "cron job", - "timer", - "crontab", - "@prantlf/jsonlint", - "@prettier/plugin-xml", - "@secretlint/secretlint-rule-github", - "@secretlint/secretlint-rule-npm", - "@stryker-mutator/core", - "@stryker-mutator/tap-runner", - "@types/bun", - "eslint-plugin-array-func", - "eslint-plugin-no-unsanitized", - "jsr", - "metalint", - "secretlint", - "yaml-lint", - "@cropper/elements", - "@cropper/utils", - "crop", - "zoom", - "rotate", - "scale", - "cropper", - "cropper.js", - "image-cropping", - "image-viewing", - "image-processing", - "cropper-element", - "custom-element", - "web-component", - "@epic-web/invariant", - "@epic-web/config", - "@types/cross-spawn", - "zshy", - "cross-environment", - "environment variable", - "windows", - "cross-platform", - "rollup-plugin-esbuild-minify", - "path-key", - "shebang-command", - "babel-preset-moxy", - "eslint-config-moxy", - "spawn", - "spawnSync", - "path-ext", - "shebang", - "cmd", - "execute", - "browserify-cipher", - "browserify-sign", - "create-ecdh", - "create-hmac", - "diffie-hellman", - "hash-base", - "pbkdf2", - "public-encrypt", - "randomfill", - "pseudorandombytes", - "security", - "Hash", - "MD5", - "SHA1", - "SHA-1", - "SHA256", - "SHA-256", - "RC4", - "Rabbit", - "AES", - "DES", - "PBKDF2", - "HMAC", - "OFB", - "CFB", - "CTR", - "CBC", - "Base64", - "Base64url", - "eslint-config-groupon", - "nlm", - "@cspell/cspell-json-reporter", - "@cspell/cspell-performance-monitor", - "@cspell/cspell-pipe", - "@cspell/cspell-types", - "@cspell/cspell-worker", - "@cspell/dynamic-import", - "@cspell/url", - "cspell-config-lib", - "cspell-dictionary", - "cspell-gitignore", - "cspell-glob", - "cspell-io", - "cspell-lib", - "fast-json-stable-stringify", - "flatted", - "spell", - "checker", - "spelling", - "spell checker", - "spelling checker", - "lint", - "source-map-resolve", - "@mdn/browser-compat-data", - "@rollup/plugin-dynamic-import-vars", - "sorter", - "property", - "order", - "@swc-node/register", - "changelog-verify", - "eslint-config-nitpick", - "github-release-from-changelog", - "isomorphic-unfetch", - "rolldown-plugin-dts", - "version-changelog", - "write-json-file", - "functions", - "postcss-modules-extract-imports", - "postcss-modules-scope", - "@webpack-contrib/eslint-config-webpack", - "@swc/css", - "@parcel/css", - "@types/csso", - "@types/clean-css", - "cssnano-preset-simple", - "webpack-plugin", - "minimize", - "minimizer", - "optimize", - "optimizer", - "boolbase", - "@types/boolbase", - "cheerio-soupselect", - "sizzle", - "clap", - "json-to-ast", - "walker", - "lexer", - "web-features", - "features", - "stages", - "identifier", - "cssnano-preset-default", - "cssnano-preset-advanced", - "cssnano-preset-lite", - "optimise", - "optimisation", - "@asamuzakjp/css-color", - "@csstools/css-syntax-patches-for-csstree", - "@domenic/eslint-config", - "@webref/css", - "CSS", - "CSSStyleDeclaration", - "StyleSheet", - "@tsconfig/node24", - "@types/chokidar", - "@types/turndown", - "csrf", - "tokens", - "tsv", - "generation", - "object", - "csv-spectrum", - "pad", - "@types/lodash.set", - "csv parser", - "parse csv", - "csv to json", - "csv convert", - "tojson", - "convert csv to json", - "csv-json", - "duration", - "stack-chain", - "is-generator", - "stacktrace-js", - "serialize-error", - "cucumber-expressions", - "cucumber-tag-expressions", - "ansi-html", - "eslint-plugin-testcafe", - "riteway", - "updtr", - "guid", - "id", - "uid", - "unique id", - "hasha", - "ospath", - "blob-util", - "executable", - "@cypress/xvfb", - "@types/sizzle", - "@cypress/request", - "request-progress", - "cypress.io", - "mocks", - "spies", - "stubs", - "longest", - "conventional-commit-types", - "d3-dsv", - "d3-geo", - "d3-axis", - "d3-drag", - "d3-ease", - "d3-path", - "d3-time", - "d3-zoom", - "d3-brush", - "d3-chord", - "d3-fetch", - "d3-force", - "d3-timer", - "d3-format", - "d3-random", - "d3-contour", - "d3-polygon", - "d3-delaunay", - "d3-dispatch", - "d3-quadtree", - "d3-hierarchy", - "d3-transition", - "d3-interpolate", - "d3-time-format", - "d3-scale-chromatic", - "topojson-client", - "@observablehq/runtime", - "visualization", - "internmap", - "d3-module", - "histogram", - "bisect", - "shuffle", - "statistics", - "search", - "sort", - "selection", - "data-join", - "dable", - "tailwind css", - "tailwind react", - "tailwind vue", - "tailwind plugin", - "tailwind component", - "tailwind next", - "tailwind nuxt", - "tailwind svelte", - "tailwind css plugin", - "tailwind astro", - "tailwind laravel", - "tailwind rails", - "laravel", - "nuxt", - "css library", - "reverse", - "arguments", - "binary", - "opposite", - "invert", - "switch", - "construct", - "@captemulation/get-parameter-names", - "json-schema-faker-bb", - "request-debug", - "rss-parser", - "swagger-express-middleware", - "bun", - "cloc", - "js-fns", - "jscodeshift", - "@date-fns/tz", - "@date-fns/utc", - "@date-fns/docs", - "@size-limit/esbuild", - "typedoc-plugin-missing-exports", - "babel-plugin-replace-import-extension", - "gzip-size-cli", - "require-directory", - "sleep", - "async wrapper", - "debouncing", - "throttle", - "invoke", - "limited", - "interval", - "rate", - "batch", - "rate-limit", - "debugger", - "decamelcase", - "lowercase", - "decompress-tar", - "decompress-tarbz2", - "decompress-targz", - "decompress-unzip", - "strip-dirs", - "is-jpg", - "bz2", - "bzip2", - "extract", - "tar.bz", - "tar.gz", - "@types/babel-plugin-macros", - "console-fail-test", - "eslint-plugin-deprecation", - "eslint-plugin-no-only-tests", - "eslint-plugin-perfectionist", - "eslint-plugin-yml", - "jsonc-eslint-parser", - "npm-package-json-lint-config-default", - "prettier-plugin-curly", - "should-semantic-release", - "yaml-eslint-parser", - "multi-line string", - "duplicates", - "dupes", - "remove duplicates", - "distinct", - "deduplicate", - "deduplication", - "is-obj", - "obj", - "assign", - "recursive", - "key", - "keys", - "values", - "prop", - "json-ptr", - "difference", - "compare", - "change-tracking", - "kewlr", - "simple-assert", - "lcov-result-merger", - "eslint-config-strict", - "@js-temporal/polyfill", - "eslint-plugin-filenames", - "chai util", - "deep equal", - "object equal", - "array-buffer-byte-length", - "es-get-iterator", - "is-arguments", - "is-array-buffer", - "is-date-object", - "is-regex", - "is-shared-array-buffer", - "regexp.prototype.flags", - "side-channel", - "which-boxed-primitive", - "which-collection", - "which-typed-array", - "available-typed-arrays", - "has-proto", - "has-typed-arrays", - "equality", - "is-mergeable-object", - "jsmd", - "is-path-cwd", - "is-path-inside", - "presentable-error", - "folders", - "directories", - "destroy", - "trash", - "unlink", - "cleaning", - "cleanup", - "rmrf", - "rmdir", - "gulpfriendly", - "folder", - "directory", - "filesystem", - "temp-write", - "random-int", - "unlimited-timeout", - "in-range", - "time-span", - "defer", - "stall", - "timeout", - "settimeout", - "tick", - "threshold", - "range", - "callsite", - "deps-regex", - "is-core-module", - "@vue/compiler-sfc", - "patch-version", - "check", - "unused", - "packages", - "deprecate", - "deprecated", - "is-relative", - "read-package-json", - "detective-cjs", - "indentation", - "infer", - "identify", - "space", - "tab", - "@eggjs/tsconfig", - "egg-bin", - "eslint-config-egg", - "mm", - "tshy-after", - "port", - "jsdiff", - "patch", - "@profoundlogic/hogan", - "@eslint/json", - "@types/hogan.js", - "@types/nopt", - "all-contributors-cli", - "handlebars-loader", - "image-webpack-loader", - "is-ci-cli", - "side", - "side-by-side", - "line-by-line", - "character", - "difftohtml", - "colorized", - "data-structure-typed", - "eslint-import-resolver-alias", - "Directed Graph", - "directed graph", - "directedgraph", - "directed-graph", - "directed", - "Directed", - "digraph", - "java script", - "JavaScript", - "type script", - "vertex", - "Vertex", - "edge", - "Edge", - "graph theory", - "Graph Theory", - "graph structure", - "weighted", - "Weighted", - "unweighted", - "Unweighted", - "adjacency", - "Adjacency", - "connectivity", - "cycle", - "acyclic", - "traversal", - "depth", - "Depth", - "breadth", - "Breadth", - "first", - "depth first search", - "dfs", - "DFS", - "breadth first search", - "breadth-first search", - "bfs", - "BFS", - "graph algorithms", - "graph representation", - "connectivity matrix", - "adjacency list", - "adjacency matrix", - "matrix", - "node degree", - "sparse graph", - "dense graph", - "directed cycle", - "directed acyclic graph", - "DAG", - "topologic", - "topological", - "sorting", - "strongly connected components", - "weighted digraph", - "directed weighted edge", - "structure", - "structures", - "data structure", - "datastructure", - "data-structure", - "data structures", - "datastructures", - "data-structures", - "in data structures", - "in data structure", - "DataStructure", - "DataStructures", - "iterative", - "Node.js", - "CommonJS", - "UMD", - "esmodule", - "java.util", - "c++ stl", - "c++ std", - "Python collections", - "System.Collections.Generic", - "STL", - "stl", - "collection", - "Collection", - "Collections", - "insertion", - "deletion", - "OOP", - "@discordjs/voice", - "backend-manager", - "productivity", - "@discordjs/ws", - "lodash.snakecase", - "@discordjs/builders", - "@discordjs/formatters", - "@discordjs/docgen", - "bot", - "cache-point", - "common-sequence", - "file-set", - "walk-back", - "dmd-plugin-example", - "jsdoc2md", - "agnostic", - "dnd", - "drag", - "drop", - "dnode-protocol", - "jsonify", - "weak", - "rpc", - "callbacks", - "doc-detective-common", - "doc-detective-resolver", - "@ffmpeg-installer/ffmpeg", - "@puppeteer/browsers", - "appium-chromium-driver", - "appium-geckodriver", - "appium-safari-driver", - "geckodriver", - "jq-web", - "json-schema-faker", - "posthog-node", - "literate", - "mecano", - "parameters", - "@balena/dockerignore", - "@grpc/grpc-js", - "@grpc/proto-loader", - "docker-modem", - "docker", - "docker.io", - "@bevry/pluginloader", - "ambi", - "ansistyles", - "bal-util", - "caterpillar", - "docmatter", - "docpad-baseplugin", - "eachr", - "envfile", - "errlop", - "event-emitter-grouped", - "extendr", - "extract-opts", - "ignorefs", - "istextorbinary", - "jschardet", - "lazy-require", - "progress-title", - "query-engine", - "rfc-log-levels", - "safefs", - "safeps", - "scandirectory", - "taskgroup", - "typechecker", - "unbounded", - "watchr", - "@bevry/update-contributors", - "assert-helpers", - "coffeelint", - "kava", - "projectz", - "valid-directory", - "build", - "build and deployment", - "cms", - "compile", - "content management system", - "dev", - "dms", - "document management system", - "language agnostic", - "render", - "templating", - "web development", - "dependency-cruiser", - "dpdm", - "docsify.js", - "tabs", - "@textlint/markdown-to-ast", - "anchor-markdown-header", - "update-section", - "bitbucket", - "gitlab", - "ghost", - "doctrine-temporary-fork", - "konan", - "mdast-util-inject", - "micromark-util-character", - "parse-filepath", - "remark-reference-links", - "unist-builder", - "vfile-reporter", - "vfile-sort", - "chdir", - "documentation-schema", - "jsdoc3", - "big-integer", - "binary-search-bounds", - "int64-buffer", - "priorityqueuejs", - "semaphore", - "tunnel", - "cosmosdb", - "cosmos db", - "document database", - "nosql", - "database", - "crowdin-cli", - "imagemin-svgo", - "tree-node-cli", - "truncate-html", - "imagemin-optipng", - "imagemin-gifsicle", - "imagemin-jpegtran", - "filepath", - "glob-promise", - "websites", - "open source", - "autocomplete.js", - "lunr-languages", - "to-vfile", - "unist-util-is", - "offline-search", - "@4c/rollout", - "@4c/tsconfig", - "@react-bootstrap/babel-preset", - "@react-bootstrap/eslint-config", - "@react-bootstrap/eslint-config-typescript", - "karma-html2js-preprocessor", - "simulant", - "cross-browser", - "height", - "class", - "classlist", - "domelementtype", - "raster", - "png", - "@types/trusted-types", - "lodash.sample", - "qunit-tap", - "rollup-plugin-includepaths", - "mathml", - "secure", - "sanitizer", - "sanitize", - "filter", - "purify", - ".env", - "expand", - "interpolation", - "substitution", - "ext-name", - "filenamify", - "archive-type", - "is-zip", - "random-buffer", - "git-clone", - "repo", - "repository", - "tarball", - "import-from", - "parse-cmd-args", - "simple-update-notifier", - "ts-jest-resolver", - "dox", - "spawn-please", - "@types/temp", - "alex", - "babel-preset-fbjs", - "eslint-config-fbjs", - "fbjs-scripts", - "gulp-derequire", - "stats-webpack-plugin", - "webpack-stream", - "draftjs", - "richtext", - "just-extend", - "@parcel/transformer-inline-string", - "@parcel/transformer-sass", - "cypress-file-upload", - "karma-sinon-chai", - "parcel", - "dragndrop", - "drag and drop", - "file upload", - "upload", - "tsutils", - "dts-critic", - "@definitelytyped/utils", - "@definitelytyped/header-parser", - "@definitelytyped/typescript-versions", - "@types/strip-json-comments", - "@types/json-stable-stringify", - "proper-lockfile", - "db", - "elementscript", - "dw-neit-colors", - "dw-neit-cssinjs", - "dw-neit-cssinjs-utils", - "dw-neit-icons", - "dw-neit-ant-design-react-slick", - "dw-neit-rc-component-color-picker", - "dw-neit-rc-component-mutate-observer", - "dw-neit-rc-component-qrcode", - "dw-neit-rc-component-tour", - "dw-neit-rc-component-trigger", - "dw-neit-rc-cascader", - "dw-neit-rc-checkbox", - "dw-neit-rc-collapse", - "dw-neit-rc-dialog", - "dw-neit-rc-drawer", - "dw-neit-rc-dropdown", - "dw-neit-rc-field-form", - "dw-neit-rc-image", - "dw-neit-rc-input", - "dw-neit-rc-input-number", - "dw-neit-rc-mentions", - "dw-neit-rc-menu", - "dw-neit-rc-motion", - "dw-neit-rc-notification", - "dw-neit-rc-pagination", - "dw-neit-rc-picker", - "dw-neit-rc-progress", - "dw-neit-rc-rate", - "dw-neit-rc-resize-observer", - "dw-neit-rc-segmented", - "dw-neit-rc-select", - "dw-neit-rc-slider", - "dw-neit-rc-steps", - "dw-neit-rc-switch", - "dw-neit-rc-tabs", - "dw-neit-rc-textarea", - "dw-neit-rc-tree", - "dw-neit-rc-util", - "dw-neit-rc-table", - "dw-neit-rc-tooltip", - "dw-neit-rc-tree-select", - "dw-neit-rc-upload", - "@antv/g6", - "@types/pixelmatch", - "eslint-plugin-lodash", - "@eslint/core", - "control flow", - "iteration", - "zrender", - "@lang/rollup-plugin-dts", - "data-visualization", - "charting-library", - "apache", - "data-viz", - "editorconfig", - "gulp-exclude-gitignore", - "gulp-reporter", - "gulp-tap", - "linez", - "os-locale", - "@types/get-stream", - "@types/through2", - "@types/vinyl", - "@types/vinyl-fs", - "fix", - "enforce", - "gulpplugin", - "agentkeepalive", - "aliasify", - "backport", - "grunt-run", - "null-loader", - "through2-map", - "grunt-webpack", - "grunt-contrib-compress", - "@electron/get", - "lazy-val", - "dmg-builder", - "builder-util", - "app-builder-lib", - "builder-util-runtime", - "installer", - "packager", - "pack", - "nsis", - "dmg", - "pkg", - "msi", - "exe", - "setup", - "Windows", - "OS X", - "MacOS", - "Mac", - "appx", - "snap", - "flatpak", - "@electron/asar", - "@electron/notarize", - "@electron/osx-sign", - "@electron/universal", - "cross-spawn-windows-exe", - "galactus", - "get-package-info", - "junk", - "parse-author", - "rcedit", - "bundler", - "electron-download", - "home-path", - "wonderful-fetch", - "batch-processor", - "grunt-banner", - "@vue/component-compiler-utils", - "algoliasearch", - "babel-plugin-transform-vue-jsx", - "babel-regenerator-runtime", - "cp-cli", - "eslint-config-elemefe", - "eslint-plugin-json", - "file-save", - "gulp-cssmin", - "launch-editor-middleware", - "markdown-it-chain", - "select-version-cli", - "transliteration", - "uppercamelcase", - "vue-template-es2015-compiler", - "eleme", - "brorand", - "hash.js", - "hmac-drbg", - "minimalistic-assert", - "minimalistic-crypto-utils", - "grunt-mocha-istanbul", - "EC", - "Elliptic", - "curve", - "Cryptography", - "@ladjs/consolidate", - "@ladjs/i18n", - "get-paths", - "juice", - "nodemailer-sendgrid", - "preview-email", - "email", - "lad", - "lass", - "mailchimp", - "mailgun", - "mandrill", - "moonmail", - "postmark", - "sendgrid", - "@types/mailparser", - "@types/smtp-server", - "mailparser", - "smtp-server", - "@ember-tooling/blueprint-blueprint", - "@ember-tooling/blueprint-model", - "@ember/app-blueprint", - "@pnpm/find-workspace-dir", - "babel-remove-types", - "broccoli-concat", - "broccoli-config-loader", - "broccoli-config-replace", - "broccoli-debug", - "broccoli-funnel-reducer", - "broccoli-slow-trees", - "broccoli-source", - "broccoli-stew", - "calculate-cache-key-for-tree", - "capture-exit", - "clean-base-url", - "console-ui", - "content-tag", - "core-object", - "dag-map", - "ember-cli-is-package-missing", - "ember-cli-preprocess-registry", - "ensure-posix-path", - "find-yarn-workspace-root", - "heimdalljs-fs-monitor", - "heimdalljs-graph", - "heimdalljs-logger", - "is-git-url", - "is-language-code", - "markdown-it-terminal", - "p-defer", - "promise-map-series", - "promise.hash.helper", - "quick-temp", - "safe-stable-stringify", - "sane", - "sort-package-json", - "symlink-or-copy", - "tree-sync", - "watch-detector", - "yam", - "@ember-tooling/classic-build-addon-blueprint", - "@ember-tooling/classic-build-app-blueprint", - "chai-files", - "ember-cli-blueprint-test-helpers", - "ember-cli-internal-test-helpers", - "eslint-plugin-chai-expect", - "fixturify-project", - "release-plan", - "tmp-promise", - "yuidoc-ember-cli-theme", - "yuidocjs", - "app-kit", - "ember", - "ember-app-kit", - "ember.js", - "amd-name-resolver", - "babel-plugin-debug-macros", - "babel-plugin-ember-data-packages-polyfill", - "babel-plugin-ember-modules-api-polyfill", - "broccoli-babel-transpiler", - "ember-cli-babel-plugin-helpers", - "ember-cli-version-checker", - "@ember/optional-features", - "@ember/string", - "@ember/test-helpers", - "@glimmer/component", - "@glimmer/tracking", - "code-equality-assertions", - "ember-auto-import", - "ember-cli-dependency-checker", - "ember-cli-inject-live-reload", - "ember-load-initializers", - "ember-qunit", - "ember-resolver", - "ember-source", - "ember-source-channel-url", - "eslint-plugin-ember", - "loader.js", - "ember-addon", - "@ember/edition-utils", - "babel-plugin-ember-template-compilation", - "broccoli-persistent-filter", - "js-string-escape", - "@embroider/test-setup", - "ember-cli-clean-css", - "ember-styleguide", - "ember-template-lint", - "ember-try", - "eslint-plugin-qunit", - "@emmetio/abbreviation", - "@emmetio/css-abbreviation", - "snippets", - "coding", - "streams", - "finish", - "close", - "end", - "es-errors", - "safe-regex-test", - "entitify", - "entity", - "enum", - "enumeration", - "datatype", - "type", - "github-release-cli", - "yamlify-object", - "info", - "issues", - "reporting", - "diagnostics", - "array.prototype.flat", - "function.prototype.name", - "has", - "html-element-map", - "is-boolean-object", - "is-callable", - "is-number-object", - "is-string", - "is-subset", - "lodash.escape", - "object.values", - "rst-selector-parser", - "string.prototype.trim", - "shallow rendering", - "shallowRender", - "test utils", - "assertion helpers", - "airbnb-prop-types", - "object.fromentries", - "codependence", - "oxlint", - "pastoralist", - "check for es6", - "check for modules", - "es check", - "es matching", - "es version", - "ecmascript check", - "ecmascript matching", - "ecmascript version", - "js version", - "js version check", - "js version matching", - "test js version", - "test ecmascript version", - "has-bigints", - "intl-fallback-symbol", - "make-arrow-function", - "make-async-function", - "@ljharb/tsconfig", - "@types/array.prototype.flatmap", - "@types/call-bind", - "@types/foreach", - "@types/has-bigints", - "@types/has-symbols", - "@types/isarray", - "@types/make-arrow-function", - "@types/make-async-function", - "@types/make-generator-function", - "@types/object.assign", - "@types/reflect.ownkeys", - "@types/tape", - "reflect.ownkeys", - "symbol.prototype.description", - "well-known-symbols", - "fixture", - "fixtures", - "es6-symbol", - "esniff", - "next-tick", - "plain-promise", - "ecmascript5", - "ecmascript6", - "es5", - "extensions", - "ext", - "addons", - "extras", - "utilities", - "es5 shim", - "json3", - "broccoli-rollup", - "git-repo-version", - "broccoli-watchify", - "broccoli-uglify-js", - "promises-aplus-tests-phantom", - "babel6-plugin-strip-class-callcheck", - "babel-plugin-transform-es2015-constants", - "futures", - "promisify", - "promises-es6-tests", - "setPrototypeOf", - "set", - "__proto__", - "regular", - "expression", - "special", - "characters", - "bower-registry-client", - "commonjs-everywhere", - "@eslint/config-array", - "@eslint/config-helpers", - "@eslint/plugin-kit", - "@humanfs/node", - "@humanwhocodes/module-importer", - "@humanwhocodes/retry", - "esquery", - "file-entry-cache", - "imurmurhash", - "json-stable-stringify-without-jsonify", - "@trunkio/launcher", - "@types/esquery", - "eslint-plugin-expect-type", - "eslint-release", - "eslint-rule-extender", - "eslump", - "fs-teardown", - "metascraper", - "metascraper-description", - "metascraper-image", - "metascraper-logo", - "metascraper-logo-favicon", - "metascraper-title", - "node-polyfill-webpack-plugin", - "npm-license", - "yorkie", - "babel-tape-runner", - "eslint-find-rules", - "eslintconfig", - "airbnb", - "es2016", - "es2018", - "confusing-browser-globals", - "prettier-package-json", - "quality", - "linter", - "jslint", - "code style", - "strict", - "verify", - "hint", - "eslint config", - "eslint-config-xo-space", - "eslint-prettier", - "@rushstack/eslint-patch", - "JavaScript Standard Style", - "code checker", - "code linter", - "code standards", - "policy", - "standard style", - "style checker", - "style linter", - "@eslint/config-inspector", - "automd", - "eslint-typegen", - "obuild", - "@eslint/css", - "xoxo", - "hugs", - "kisses", - "happy", - "happiness", - "cabin", - "rules", - "@typescript/native-preview", - "eslint-import-context", - "is-bun-module", - "stable-hash-x", - "unrs-resolver", - "@webpack-contrib/defaults", - "commitlint-azure-pipelines-cli", - "eslint-friendly-formatter", - "enhance-visitors", - "espurify", - "micro-spelling-correcter", - "eslint-ava-rule-tester", - "eslint-rule-composer", - "ast-metadata-inferer", - "@tsconfig/node16", - "@types/caniuse-lite", - "@types/lodash.memoize", - "browserslist-config-erb", - "kangax", - "@vuepress/plugin-pwa", - "eslint4b", - "vue-eslint-editor", - "comment", - "directive", - "exported", - "eslint-env", - "eslint-enable", - "eslint-disable", - "eslint-disable-line", - "eslint-disable-next-line", - "@eslint-community/eslint-plugin-eslint-comments", - "@types/eslint-scope", - "@types/espree", - "@types/estraverse", - "eslint-config-not-an-aardvark", - "string-natural-compare", - "gitdown", - "eslint-config-canonical", - "flowtype", - "@html-eslint/eslint-plugin", - "@html-eslint/parser", - "markdown-link-check", - "@rtsao/scc", - "array-includes", - "array.prototype.findlastindex", - "doctrine", - "eslint-import-resolver-node", - "eslint-module-utils", - "object.groupby", - "string.prototype.trimend", - "@angular-eslint/template-parser", - "escope", - "fs-copy-file-sync", - "linklocal", - "lodash.isarray", - "npm-which", - "typescript-eslint-parser", - "export", - "@schemastore/package", - "babel-plugin-replace-ts-export-assignment", - "eslint-remote-tester-repositories", - "@es-joy/jsdoccomment", - "@es-joy/resolve.exports", - "are-docs-informative", - "object-deep-merge", - "parse-imports-exports", - "spdx-expression-parse", - "to-valid-identifier", - "@es-joy/escodegen", - "@es-joy/jsdoc-eslint-parser", - "@hkdobrev/run-if-changed", - "@types/spdx-expression-parse", - "babel-plugin-transform-import-meta", - "jsdoc-type-pratt-parser", - "json-schema-to-typescript", - "open-editor", - "replace", - "@ota-meshi/ast-token-store", - "diff-sequences", - "eslint-json-compat-utils", - "@changesets/changelog-github", - "@ota-meshi/eslint-plugin", - "@ota-meshi/site-kit-eslint-editor-vue", - "@types/natural-compare", - "env-cmd", - "eslint-plugin-eslint-rule-tester", - "eslint-plugin-json-schema-validator", - "eslint-plugin-node-dependencies", - "stylelint-config-recommended-vue", - "stylelint-config-standard-vue", - "stylelint-stylus", - "vite-plugin-eslint4b", - "jsonc", - "ast-types-flow", - "axobject-query", - "damerau-levenshtein", - "jsx-ast-utils", - "language-tags", - "string.prototype.includes", - "to-ast", - "eslint-config-eslint", - "eslint-plugin-es-x", - "ts-declaration-location", - "@types/globrex", - "ts-ignore-import", - "eslint-utils", - "prettier-linter-helpers", - "array.prototype.findlast", - "array.prototype.tosorted", - "es-iterator-helpers", - "string.prototype.repeat", - "@babel/plugin-syntax-do-expressions", - "@babel/plugin-syntax-function-bind", - "gfm-footnotes", - "ls-engines", - "hermes-parser", - "@types/estree-jsx", - "@tsconfig/strictest", - "refa", - "regexp-ast-analysis", - "scslre", - "@types/pako", - "eslint-plugin-pere", - "eslint-snapshot-rule-tester", - "mocha-chai-jest-snapshot", - "safe-regex", - "eslint-config-nodesecurity", - "nodesecurity", - "jsx-ast-utils-x", - "functional-red-black-tree", - "sonarjs", - "svelte-eslint-parser", - "@types/eslint-utils", - "@types/esutils", - "@types/less", - "@types/postcss-safe-parser", - "@types/stylus", - "svelte-i18n", - "sveltejs", - "eslint-plugin-import-x", - "clean-regexp", - "find-up-simple", - "regexp-tree", - "regjsparser", - "@lubien/fixture-beta-package", - "nano-spawn", - "node-style-text", - "unicorn", - "@veritem/eslint-config", - "bumpp", - "vitest eslint plugin", - "eslint plugin", - "xml-name-validator", - "@types/xml-name-validator", - "eslint-plugin-markdown-preferences", - "@types/babel__code-frame", - "importx", - "ink-testing-library", - "eslint-test", - "@types/esrecurse", - "esrecurse", - "eslint-plugin-requirejs", - "escomplex-js", - "everything.js", - "json-diff", - "karma-safaritechpreview-launcher", - "node-tick-processor", - "unicode-8.0.0", - "gulp-tag-version", - "ethereumjs-common", - "@ethereumjs/config-nyc", - "@ethereumjs/config-prettier", - "@ethereumjs/config-tsc", - "@ethereumjs/config-tslint", - "contributor", - "karma-tap", - "typestrict", - "transactions", - "ethereum-cryptography", - "rlp", - "@types/assert", - "@types/secp256k1", - "karma-typescript", - "os-tmpdir", - "es-lookup-scope", - "qs-iconv", - "eval", - "evaulate", - "from", - "pause-stream", - "stream-combiner", - "asynct", - "it-is", - "stream-spec", - "ubelt", - "flatmap", - "join", - "eventemitter", - "addEventListener", - "addListener", - "pub/sub", - "emits", - "on", - "publish", - "subscribe", - "EventEmitter", - "EventEmitter2", - "EventEmitter3", - "Events", - "reactor", - "eventEmitter", - "eventDispatcher", - "listeners", - "@sindresorhus/merge-streams", - "human-signals", - "strip-final-newline", - "yoctocolors", - "get-node", - "is-in-ci", - "is-running", - "log-process-errors", - "exec", - "subprocess", - "fork", - "execfile", - "bin", - "binaries", - "local", - "stdio", - "stderr", - "drain", - "flush", - "3584", - "@jest/expect-utils", - "@jest/get-type", - "eslint-plugin-mmkal", - "pkg-pr-new", - "type-check", - "merge-descriptors", - "pbkdf2-password", - "array-flatten", - "setprototypeof", - "automatically", - "autogenerate", - "autogenerator", - "autogenerated", - "express3", - "partials", - "express-unless", - "authn", - "authz", - "token", - "expressjs", - "helpers", - "hoare", - "cjs-mock", - "tRPC", - "RPC", - "express.js", - "code-generation", - "fully-typed", - "type-safe", - "typed-api", - "express-api", - "http-api", - "client-server", - "unit-testing", - "browser-client", - "web-development", - "web-api", - "@docusaurus/plugin-client-redirects", - "@docusaurus/preset-classic", - "sanitization", - "openapi3-ts", - "@express-zod-api/zod-plugin", - "@types/depd", - "@types/http-errors", - "@types/node-forge", - "camelize-ts", - "snakify-ts", - "dts-plugin", - "handler", - "documentation-tool", - "schema-validation", - "endpoint", - "openapi-specification", - "swagger-documentation", - "covert", - "assign-symbols", - "is-extendable", - "array-slice", - "benchmarked", - "for-own", - "kind-of", - "props", - "shallow", - "webpack-defaults", - "@types/yauzl", - "gulp-mustache", - "vinyl-transform", - "color-support", - "parse-node-version", - "console.log", - "timestamp", - "pure-rand", - "@fast-check/expect-type", - "@fast-check/poisoning", - "property-based testing", - "end-to-end testing", - "quickcheck", - "jscheck", - "jsverify", - "fuzzer", - "fuzz", - "@fast-csv/parse", - "@fast-csv/format", - "writer", - "csv writer", - "CSV", - "@nodelib/fs.stat", - "@nodelib/fs.walk", - "@nodelib/fs.macchiato", - "@types/merge2", - "@types/picomatch", - "bencho", - "eslint-config-mrmlnc", - "hereby", - "snap-shot-it", - "implementation", - "strnum", - "transformer", - "js2xml", - "json2xml", - "click", - "@fastify/ajv-compiler", - "@fastify/error", - "@fastify/fast-json-stringify-compiler", - "@fastify/proxy-addr", - "abstract-logging", - "avvio", - "fast-json-stringify", - "find-my-way", - "light-my-request", - "process-warning", - "secure-json-parse", - "toad-cache", - "@jsumners/line-reporter", - "ajv-i18n", - "ajv-merge-patch", - "autocannon", - "branch-comparer", - "fast-json-body", - "fluent-json-schema", - "h2url", - "markdownlint-cli2", - "@umijs/babel-preset-umi", - "@umijs/bundler-webpack", - "@umijs/case-sensitive-paths-webpack-plugin", - "@utoo/pack", - "@vercel/ncc", - "babel-plugin-styled-components", - "babel-plugin-transform-define", - "loader-runner", - "piscina", - "typescript-transform-paths", - "@types/loader-runner", - "@types/minimatch", - "array.prototype.foreach", - "array.prototype.join", - "array.prototype.map", - "array.prototype.push", - "array.prototype.slice", - "string.prototype.split", - "tap-parser", - "human", - "anything", - "protocol", - "fbjs-css-vars", - "setimmediate", - "@skypack/package-check", - "babel-plugin-minify-dead-code-elimination", - "in web", - "in javascript", - "in react", - "Plug & Play", - "web component", - "react components", - "ui component", - "advanced component", - "advanced feature", - "scanner", - "phonebook", - "voice", - "autofillotp", - "share", - "livelocationtracking", - "detectmylocation", - "colorpicker", - "wakelock", - "WhatsappShare", - "NetworkConnection", - "TextToSpeech", - "VoiceRecognition", - "SnapScanner", - "NetworkMonitor", - "View360", - "functional program", - "data management", - "@types/glob-to-regexp", - "dequal", - "glob-to-regexp", - "stub", - "detect-libc", - "fiber", - "thread", - "worker", - "art", - "banner", - "symbol", - "symbols", - "figure", - "fallback", - "filesaver", - "saveas", - "blob", - "@tokenizer/inflate", - "strtok3", - "token-types", - "uint8array-extras", - "@tokenizer/token", - "commonmark", - "noop-stream", - "magic", - "pic", - "picture", - "photo", - "video", - "exif", - "elf", - "macho", - "jpg", - "apng", - "gif", - "flif", - "xcf", - "cr2", - "cr3", - "orf", - "arw", - "dng", - "nef", - "rw2", - "tif", - "bmp", - "icns", - "jxr", - "psd", - "indd", - "rar", - "gz", - "7z", - "mp4", - "mid", - "mkv", - "webm", - "mov", - "avi", - "mpg", - "mp2", - "mp3", - "m4a", - "ogg", - "opus", - "flac", - "wav", - "amr", - "epub", - "mobi", - "rtf", - "woff", - "woff2", - "eot", - "ttf", - "otf", - "ttc", - "ico", - "flv", - "ps", - "xz", - "xpi", - "cab", - "deb", - "ar", - "rpm", - "Z", - "lz", - "cfb", - "mxf", - "mts", - "wasm", - "webassembly", - "blend", - "bpg", - "docx", - "pptx", - "3gp", - "j2c", - "jp2", - "jpm", - "jpx", - "mj2", - "aif", - "odt", - "ods", - "odp", - "heic", - "ics", - "pcap", - "dsf", - "lnk", - "voc", - "ac3", - "3g2", - "m4b", - "m4p", - "m4v", - "f4a", - "f4b", - "f4p", - "f4v", - "mie", - "qcp", - "asf", - "ogv", - "ogm", - "oga", - "spx", - "ogx", - "ape", - "wv", - "cur", - "nes", - "crx", - "ktx", - "dcm", - "mpc", - "arrow", - "shp", - "aac", - "mp1", - "it", - "s3m", - "xm", - "skp", - "eps", - "lzh", - "pgp", - "asar", - "chm", - "3mf", - "zst", - "jxl", - "vcf", - "jls", - "pst", - "dwg", - "parquet", - "arj", - "cpio", - "ace", - "avro", - "icc", - "fbx", - "vsdx", - "vtt", - "apk", - "drc", - "lz4", - "potx", - "xltx", - "dotx", - "xltm", - "ots", - "odg", - "otg", - "otp", - "ott", - "xlsm", - "docm", - "dotm", - "potm", - "pptm", - "jar", - "jmp", - "sav", - "ppsm", - "ppsx", - "reg", - "dat", - "size", - "readable", - "file system", - "locate-path", - "unicorn-magic", - "up", - "look-up", - "look", - "parent", - "walking", - "detect-file", - "resolve-dir", - "homedir-polyfill", - "@firebase/ai", - "@firebase/app", - "@firebase/auth", - "@firebase/util", - "@firebase/storage", - "@firebase/database", - "@firebase/analytics", - "@firebase/app-check", - "@firebase/app-types", - "@firebase/firestore", - "@firebase/functions", - "@firebase/messaging", - "@firebase/app-compat", - "@firebase/auth-compat", - "@firebase/performance", - "@firebase/data-connect", - "@firebase/installations", - "@firebase/remote-config", - "@firebase/storage-compat", - "@firebase/database-compat", - "@firebase/analytics-compat", - "@firebase/app-check-compat", - "@firebase/firestore-compat", - "@firebase/functions-compat", - "@firebase/messaging-compat", - "@firebase/performance-compat", - "@firebase/installations-compat", - "@firebase/remote-config-compat", - "Firebase", - "realtime", - "remote-config", - "@fastify/busboy", - "@firebase/database-types", - "farmhash-modern", - "google-auth-library", - "jwks-rsa", - "@firebase/api-documenter", - "@firebase/auth-types", - "@types/bcrypt", - "@types/firebase-token-generator", - "@types/request", - "@types/request-promise", - "firebase-token-generator", - "http-message-parser", - "admin", - "@apphosting/build", - "@apphosting/common", - "@electric-sql/pglite", - "@electric-sql/pglite-tools", - "@google-cloud/cloud-sql-connector", - "@google-cloud/pubsub", - "@modelcontextprotocol/sdk", - "async-lock", - "cjson", - "deep-equal-in-any-order", - "exegesis", - "exegesis-express", - "gaxios", - "libsodium-wrappers", - "lsofi", - "pg-gateway", - "pglite-2", - "proxy-agent", - "sql-formatter", - "stream-chain", - "stream-json", - "superstatic", - "triple-beam", - "universal-analytics", - "update-notifier-cjs", - "zod-to-json-schema", - "cdn", - "ssl", - "hosting", - "synchronization", - "alce", - "detect-newline", - "extend-object", - "@types/rimraf", - "matcher-collection", - "unflatten", - "nested", - "@types/acorn", - "rollup-plugin-livereload", - "rollup-plugin-serve", - "lightweight", - "byline", - "util-extend", - "markdox", - "deploy", - "deployment", - "commands", - "devops", - "ssh", - "tasks", - "sequential", - "remote", - "fabric", - "inference", - "wrapper", - "flowbite-datepicker", - "mini-svg-data-uri", - "@tailwindcss/cli", - "@tailwindcss/postcss", - "eslint-plugin-tailwindcss", - "flowbite-typography", - "prettier-plugin-tailwindcss", - "windicss", - "ui components", - "tailwind components", - "tailwind elements", - "tailwind library", - "tailwind sections", - "tailwind ui", - "tailwind angular", - "tailwind django", - "tailwind ruby on rails", - "tailwind flask", - "cjs", - "umd", - "ffmpeg", - "fbemitter", - "react-addons-test-utils", - "dispatcher", - "lolex", - "redirect", - "location", - "@types/is-callable", - "cliff", - "shush", - "flatiron", - "nssocket", - "forever-monitor", - "getopts", - "cli-testlab", - "fault tolerant", - "sysadmin", - "node-abort-controller", - "jest-circus", - "karton", - "typecheck", - "@types/babel-code-frame", - "increment", - "asynckit", - "combined-stream", - "es-set-tostringtag", - "browserify-istanbul", - "fake", - "far", - "is-node-modern", - "js-randomness-predictor", - "obake", - "dezalgo", - "@paralleldrive/cuid2", - "formdata-polyfill", - "prettier-plugin-pkgjson", - "@tunnckocore/prettier-config", - "www", - "ulpoad", - "tiny-warning", - "just-debounce-it", - "tsdx", - "react hooks", - "render props", - "higher order component", - "hoc", - "conditional", - "friendly", - "errors", - "check-dts", - "front matter", - "meta data", - "universalify", - "klaw", - "read-dir-files", - "extra", - "mkdir", - "mkdirs", - "create", - "output", - "release-assist", - "any-promise", - "thenify-all", - "mac", - "ie", - "@monaco-editor/loader", - "@sapphire/stopwatch", - "@sapphire/utilities", - "@snippetors/vuepress-plugin-tabs", - "@vuepress/plugin-google-analytics", - "monaco-editor", - "vuepress-plugin-google-adsense2", - "bitap", - "socket", - "sublime", - "sublime text", - "globule", - "grunt-benchmark", - "yeoman-test", - "yeoman-assert", - "insight", - "restangular", - "ui-router", - "foundation", - "traceur", - "haml", - "git-config", - "find-git-root", - "@merkle-open/eslint-config", - "nitro", - "modular", - "pool", - "pooling", - "inject-markdown", - "ts2mjs", - "iterator", - "iterators", - "iterable", - "reduce", - "@werkzeugkiste/eslint-config", - "@werkzeugkiste/release-config", - "install-deps-postmerge", - "semantic-release-conventional-commits", - "@cfware/lint", - "@cfware/nyc", - "if-ver", - "libtap", - "finder", - "free", - "available", - "connection", - "tcp", - "scan", - "preferred", - "chosen", - "std", - "concat", - "@sec-ant/readable-stream", - "onetime", - "precise-now", - "get", - "consume", - "readablestream", - "resolve-pkg-maps", - "tsconfig", - "tsconfig.json", - "eslint-config-bevry", - "make-deno-edition", - "deno", - "deno-edition", - "deno-entry", - "denoland", - "es2022", - "export-default", - "ifconfig", - "ipconfig", - "mac-address", - "typed", - "email-addresses", - "dir-compare", - "eslint-config-tschaub", - "lodash.clone", - "manage-path", - "opt-cli", - "spawn-command", - "chai-string", - "eslint-config-kentcdodds", - "travis-after-all", - "hook", - "@primer/octicons", - "@primer/primitives", - "@rollup/plugin-html", - "minipass", - "path-scurry", - "dirname", - "wildcard", - "min-document", - "is-identifier", - "identifiers", - "environments", - "glob-stream", - "all", - "fnmatch", - "globbing", - "globs", - "multiple", - "paths", - "wildcards", - "gitignore", - "array-series", - "array-parallel", - "magick", - "graphicsmagick", - "gfsl", - "eslint-config-standard-with-typescript", - "msmc", - "mc", - "minecraft", - "launcher", - "java", - "java edition", - "arm", - "arm-support", - "forge", - "instances-management", - "instances", - "mod", - "mods", - "mc-mod", - "mc-mods", - "modpack", - "modpack-api", - "extendable", - "nbt", - "jarmods", - "skin fix", - "ky", - "eslint-plugin-no-floating-promise", - "varlock", - "google spreadsheets", - "google sheets", - "spreadsheet", - "spreadsheets", - "sheets", - "gdata", - "drive", - "google docs", - "google drive", - "googleapis-common", - "@types/execa", - "@types/mv", - "@types/ncp", - "@types/nunjucks", - "@types/url-template", - "@types/yargs-parser", - "js-green-licenses", - "jsdoc-fresh", - "jsdoc-region-tag", - "linkinator", - "pdfmake", - "google apis", - "client library", - "@sindresorhus/is", - "byte-counter", - "cacheable-lookup", - "cacheable-request", - "decompress-response", - "form-data-encoder", - "lowercase-keys", - "p-cancelable", - "responselike", - "@hapi/bourne", - "@types/pem", - "chunk-data", - "create-cert", - "create-test-server", - "pem", - "slow-stream", - "then-busboy", - "uri", - "curl", - "wget", - "zstd", - "zstandard", - "requests", - "human-friendly", - "sassdoc", - "gulp-cli", - "sass-color-helpers", - "govuk-prototype-kit", - "govuk", - "reading", - "retries", - "handling", - "EMFILE", - "EAGAIN", - "EINVAL", - "EPERM", - "EACCESS", - "graphql-js", - "test-all-versions", - "@graphql-tools/schema", - "section-matter", - "strip-bom-string", - "ansi-green", - "delimiter-regex", - "assemble", - "coffee", - "extracting", - "front", - "frontmatter", - "matter", - "site", - "@mapbox/node-pre-gyp", - "@types/bytebuffer", - "electron-mocha", - "google-protobuf", - "poisson-process", - "grunt-legacy-log", - "grunt-legacy-util", - "grunt-known-options", - "difflet", - "temporary", - "eslint-config-grunt", - "uglify", - "init", - "make", - "gruntplugin", - "browserify-incremental", - "liftup", - "pad-stream", - "grunt-nodemon", - "simultaneous", - "perf", - "faster", - "bin-version-check", - "compass", - "connect-livereload", - "file-sync-cmp", - "csslint", - "maxmin", - "cssmin", - "min", - "jpeg", - "hooker", - "less-plugin-clean-css", - "nodeunit-x", - "uri-path", - "grunt-coveralls", - "grunt-istanbul", - "grunt-github-remove-all-releases", - "gh", - "release", - "releases", - "report", - "vow", - "@commitlint/travis-cli", - "TDD", - "grunt-continue", - "grunt-env", - "grunt-istanbul-coverage", - "grunt-cafe-mocha", - "newer", - "stack-parser", - "grunt-release", - "grunt-templates-dylang", - "notify", - "mountain lion", - "mavericks", - "linux", - "notify-send", - "preprocess", - "libsass", - "requestretry", - "sauce-tunnel", - "grunt-sauce-tunnel", - "yui", - "spritesheet-templates", - "spritesmith", - "url2", - "eslint-config-twolfson", - "foundry", - "foundry-release-git", - "foundry-release-npm", - "get-pixels", - "gmsmith", - "sprite", - "spritesheet", - "grunt-mocha-cli", - "usemin", - "@npm/types", - "@types/json5", - "@types/write-file-atomic", - "inline-fixtures", - "@guarapi/eslint-config-guarapi", - "@swc/register", - "glob-watcher", - "undertaker", - "pipeline", - "series", - "streaming", - "gulp-footer", - "html2js", - "templatecache", - "gulp-symdest", - "atom", - "atom-shell", - "prefixes", - "postcss-runner", - "lodash.chunk", - "concurrent-transform", - "@azure/storage-blob", - "delayed-stream", - "streamifier", - "rewriting", - "transformation", - "codegen", - "desugaring", - "bom", - "mark", - "utf-8", - "add", - "prepend", - "gulp-codecov.io", - "bump-regex", - "plugin-log", - "version", - "versioning", - "gulp-version", - "gulp-plugin", - "cache-swap", - "object.pick", - "change-file-extension", - "changed", - "modified", - "modification", - "updated", - "mtime", - "stat", - "cached", - "passthrough", - "minify-css", - "jshint-reporter-jscs", - "parse-import", - "rework", - "rework-import", - "rework-plugin-url", - "inline", - "slush", - "dest", - "conflict", - "webserver", - "csscomb", - "rcloader", - "csslint-stylish", - "node-version-check", - "from2-string", - "@shinnn/eslint-config-node", - "warnings", - "flatnest", - "balanced-match", - "include", - "streamfilter", - "to-absolute-glob", - "divide", - "separate", - "relative", - "pretty-remarkable", - "sections", - "prettify", - "jsftp", - "jsftp-mkdirp", - "ftp-test-server", - "gift", - "wrap-promise", - "octonode", - "read-remove-file", - "@shinnn/eslint-config-node-legacy", - "branch", - "any-shell-escape", - "strip-bom-stream", - "gulpgit", - "stream-to-array", - "nid", - "gulp-declare", - "gulp-define-module", - "gulp-wrap", - "nsdeclare", - "eventstream", - "istanbul-coveralls", - "htm", - "htmlmin", - "gulp-spawn", - "gulp-svg2ttf", - "gulp-ttf2eot", - "gulp-ttf2woff", - "gulp-ttf2woff2", - "gulp-svgicons2svgfont", - "metapak", - "streamtest", - "@types/gulp", - "metapak-nfroidure", - "gulp-match", - "ternary-stream", - "stream-exhaust", - "if", - "ternary", - "exclude", - "gulp-gm", - "imagemin-webp", - "group-array", - "strip-color", - "@commitlint/config-angular", - "inject", - "stylesheets", - "webcomponents", - "scripts", - "index", - "inline-css", - "lodash.groupby", - "istanbul-threshold-checker", - "isparta", - "unit test", - "jasmine-terminal-reporter", - "gulplog", - "has-gulplog", - "array-unique", - "capture-stream", - "plugins", - "vinyl-bufferstream", - "stream-combiner2", - "kew", - "bufferstreams", - "ng-annotate", - "develop", - "restart", - "windows notification", - "mac notification", - "notify-osd", - "easy-transform-stream", - "ENV", - "echo", - "ifdef", - "ifndef", - "eslint-watch", - "views", - "precompile", - "src", - "replacestream", - "modify-filename", - "rev-hash", - "rev-path", - "sort-keys", - "vinyl-file", - "rev", - "revving", - "revision", - "expire", - "assets", - "each-async", - "md5-hex", - "ruby", - "source-maps", - "sourcemaps", - "sftp", - "@types/fancy-log", - "@types/lodash.template", - "brotli-size", - "measure", - "@gulp-sourcemaps/identity-map", - "@gulp-sourcemaps/map-sources", - "debug-fabulous", - "hook-std", - "mississippi", - "source maps", - "strip-debug", - "accord", - "looks-same", - "svg2png", - "stack", - "vector", - "rwd", - "retina", - "rendering", - "@types/through", - "incremental", - "@types/ansi-colors", - "gulp-diff", - "@types/plugin-error", - "incremental compilation", - "array-each", - "make-error-cause", - "tape-catch", - "source-list-map", - "eslint-plugin-no-use-extend-native", - "uncss", - "useref", - "async-once", - "mock-gulp-dest", - "array-differ", - "array-uniq", - "beeper", - "lodash._reescape", - "lodash._reevaluate", - "lodash._reinterpolate", - "lodash.templatesettings", - "yazl", - "yazul", - "vinyl-zip", - "anymatch", - "proxy-middleware", - "vinyl-assign", - "pngparse", - "phantomjssmith", - "zlib", - "compressed", - "catering", - "deglob", - "find-file-up", - "find-githost", - "remark-autolink-references", - "remark-common-changelog", - "remark-lint-blockquote-indentation", - "remark-lint-checkbox-character-style", - "remark-lint-checkbox-content-indent", - "remark-lint-code-block-style", - "remark-lint-definition-case", - "remark-lint-emphasis-marker", - "remark-lint-fenced-code-marker", - "remark-lint-final-newline", - "remark-lint-hard-break-spaces", - "remark-lint-list-item-bullet-indent", - "remark-lint-list-item-indent", - "remark-lint-no-auto-link-without-protocol", - "remark-lint-no-blockquote-without-marker", - "remark-lint-no-duplicate-definitions", - "remark-lint-no-heading-content-indent", - "remark-lint-no-inline-padding", - "remark-lint-no-literal-urls", - "remark-lint-no-unused-definitions", - "remark-lint-rule-style", - "remark-lint-strong-marker", - "remark-lint-table-cell-padding", - "remark-lint-table-pipes", - "remark-lint-unordered-list-marker-style", - "remark-validate-links", - "unified-engine", - "vfile-reporter-shiny", - "git-pull-or-clone", - "fixer", - "changelogplease", - "git-tags", - "grunt-contrib-qunit", - "grunt-string-replace", - "jquery-hammerjs", - "gestures", - "neo-async", - "chai-diff", - "grunt-contrib-requirejs", - "ammo", - "shot", - "topo", - "heavy", - "mimos", - "bounce", - "catbox", - "podium", - "somever", - "subtext", - "teamwork", - "statehood", - "catbox-memory", - "wreck", - "vision", - "elements", - "flag", - "getopt", - "@types/core-js", - "get-own-property-symbols", - "typeof", - "sham", - "function-bind", - "@types/function-bind", - "@types/mock-property", - "hasOwnProperty", - "hasOwn", - "has-own", - "own", - "in", - "@ungap/structured-clone", - "hast-util-from-parse5", - "unist-util-position", - "web-namespaces", - "zwitch", - "@types/ungap__structured-clone", - "remark-api", - "hast-util", - "hast", - "unist", - "raw", - "aria-attributes", - "html-tag-names", - "safe", - "bcp-47-match", - "devlop", - "direction", - "selectall", - "estree-util-attach-comments", - "estree-util-is-identifier-name", - "mdast-util-mdx-expression", - "mdast-util-mdx-jsx", - "mdast-util-mdxjs-esm", - "esast-util-from-js", - "ccount", - "tostring", - "sval", - "solid", - "unist-util-find-after", - "estree-util-build-jsx", - "svg-tag-names", - "hyperscript", - "vdom", - "virtual", - "regexgen", - "sort-object", - "content-security-policy", - "cross-origin-embedder-policy", - "cross-origin-opener-policy", - "cross-origin-resource-policy", - "origin-agent-cluster", - "referrer-policy", - "strict-transport-security", - "x-content-type-options", - "x-dns-prefetch-control", - "x-download-options", - "x-frame-options", - "x-permitted-cross-domain-policies", - "x-powered-by", - "x-xss-protection", - "@vue/compiler-dom", - "abbrev", - "fast-archy", - "fast-text-table", - "hexo-cli", - "hexo-front-matter", - "hexo-fs", - "hexo-i18n", - "hexo-log", - "hexo-util", - "js-yaml-js-types", - "moize", - "titlecase", - "warehouse", - "@types/abbrev", - "0x", - "eslint-config-hexo", - "hexo-renderer-marked", - "util-deprecate", - "grunt-gh-pages", - "scrawl", - "transducers-js", - "tiny-worker", - "wcag-contrast", - "css-color-names", - "deep-freeze-es6", - "dependency-resolver", - "step", - "hap-nodejs", - "@types/source-map-support", - "eslint-plugin-import-newlines", - "@hono/eslint-config", - "bun-types", - "editorconfig-checker", - "oxc-parser", - "vite-plugin-fastly-js-compute", - "wrangler", - "application", - "cloudflare", - "workers", - "fastly", - "compute", - "workshopper-adventure", - "workshop", - "adventure", - "tutorial", - "tutor", - "@size-limit/preset-big-lib", - "@types/jscodeshift", - "pojo", - "attribute", - "element", - "@exodus/bytes", - "@types/he", - "flowgen", - "html entities", - "html entities encode", - "html entities decode", - "entities encode", - "entities decode", - "ascjs", - "unescape", - "posthtml-webp", - "unescape-unicode", - "relateurl", - "compressor", - "packer", - "uglifier", - "alpinejs", - "commitlint-config-non-conventional", - "rollup-plugin-polyfill-node", - "tags", - "void", - "self-closing", - "@types/jasmine", - "@bubkoo/tsconfig", - "@bubkoo/eslint-config", - "@bubkoo/rollup-config", - "@bubkoo/commitlint-config", - "@bubkoo/semantic-release-config", - "screenshot", - "capture", - "@selderee/plugin-htmlparser2", - "selderee", - "mail", - "plain", - "@html-validate/stylish", - "@sidvind/better-ajv-errors", - "@types/html-minifier-terser", - "pug-loader", - "webpack-recompilation-simulator", - "@types/relateurl", - "bunchee", - "eslint-plugin-unused-imports", - "srcset", - "posthtml-plugin", - "postproccessor", - "rss", - "toidentifier", - "requires-port", - "sse", - "agent-base", - "agent", - "@types/is-glob", - "mockttp", - "next.js", - "union", - "corser", - "secure-compare", - "eol", - "eslint-config-populist", - "https-server", - "@types/should", - "@types/eslint__js", - "status", - "@types/markdown-table", - "HttpStatus", - "httpclient", - "mediation", - "@types/async-retry", - "post", - "put", - "duplex", - "eslint-config-sanity", - "hyphenate", - "singular", - "plural", - "camelize", - "dasherize", - "demodulize", - "ordinalize", - "uncountable", - "singularize", - "titleize", - "tableize", - "classify", - "foreign_key", - "@messageformat/core", - "fast-printf", - "make-plural", - "math-interval-parser", - "l10n", - "@arktype/attest", - "gh-release", - "i18next-browser-languagedetector", - "i18next-fs-backend", - "i18next-http-backend", - "i18next-localstorage-cache", - "i18next-sprintf-postprocessor", - "internationalization", - "translation", - "localization", - "globalization", - "gettext", - "gridly", - "safer-buffer", - "errto", - "iconv", - "unorm", - "bench-node", - "charset", - "icu", - "harmony-reflect", - "proxies", - "identity", - "eslint-config-ostai", - "pre-suf", - "spawn-sync", - ".gitignore", - "manager", - "asterisks", - "regular-expression", - "dimensions", - "resolution", - "heif", - "tga", - "tiff", - "ow", - "p-pipe", - "image-dimensions", - "is-png", - "pngquant-bin", - "imageminplugin", - "pngquant", - "utf7", - "reader", - "cpx2", - "deep-freeze", - "import-size", - "seamless-immutable", - "type-plus", - "mutable", - "copy-on-write", - "@types/invariant", - "immutability", - "lazy", - "stateless", - "bypass", - "prefer", - "metacom", - "metaconfiguration", - "metalog", - "metaschema", - "metautil", - "metavm", - "metawatch", - "eslint-config-metarhia", - "isolation", - "enterprise", - "scalable", - "soa", - "stateful", - "routing", - "cluster", - "interactive", - "align", - "every", - "inferno-shared", - "inferno-utils", - "user interfaces", - "renderToString", - "inflections", - "inflection-js", - "humanize", - "capitalize", - "inheritance", - "klass", - "oop", - "object-oriented", - "@alcalzone/ansi-tokenize", - "auto-bind", - "patch-console", - "terminal-size", - "yoga-layout", - "@types/react-reconciler", - "@types/scheduler", - "@types/signal-exit", - "@vdemedes/prettier-config", - "eslint-config-xo-react", - "react-devtools-core", - "print", - "inline-style", - "inno", - "innosetup", - "run-async", - "fwk", - "instagram", - "ig", - "driver", - "reify", - "exports", - "packaging", - "remark-code-import", - "coffee.md", - "litcoffee", - "yml", - "babel-plugin-transform-es3-member-expression-literals", - "babel-plugin-transform-es3-property-literals", - "babel-preset-es2015-rollup", - "cldr-cal-buddhist-full", - "cldr-cal-chinese-full", - "cldr-cal-coptic-full", - "cldr-cal-dangi-full", - "cldr-cal-ethiopic-full", - "cldr-cal-hebrew-full", - "cldr-cal-indian-full", - "cldr-cal-islamic-full", - "cldr-cal-japanese-full", - "cldr-cal-persian-full", - "cldr-cal-roc-full", - "cldr-core", - "cldr-dates-full", - "cldr-numbers-full", - "estraverse-fb", - "grunt-curl", - "grunt-zip", - "rollup-plugin-memory", - "ecma402", - "@vue/tsconfig", - "flag-icons", - "google-closure-library", - "grunt-replace", - "prettier-eslint", - "international", - "country", - "dial code", - "telephone", - "phone", - "@inversifyjs/common", - "@inversifyjs/container", - "@inversifyjs/core", - "dependency inversion", - "inversion of control container", - "ioc", - "leek", - "ssh-config", - "elementtree", - "@ionic/discover", - "@ionic/utils-fs", - "superagent-proxy", - "@ionic/utils-array", - "@ionic/utils-stream", - "@ionic/cli-framework", - "@ionic/utils-network", - "@ionic/utils-process", - "@ionic/utils-terminal", - "@ionic/utils-subprocess", - "@ionic/cli-framework-prompts", - "@types/diff", - "@types/open", - "@types/split2", - "@types/os-name", - "@types/elementtree", - "ionic framework", - "ionicframework", - "hybrid", - "@types/svgo", - "jest-stencil-runner", - "icon pack", - "custom element", - "@ioredis/commands", - "cluster-key-slot", - "denque", - "lodash.isarguments", - "redis-errors", - "redis-parser", - "standard-as-callback", - "@ioredis/interface-generator", - "@types/lodash.defaults", - "@types/lodash.isarguments", - "@types/redis-errors", - "sentinel", - "pipelining", - "irc-colors", - "node-icu-charset-detector", - "ansi-color", - "is-extglob", - "braces", - "extglob", - "globstar", - "global-directory", - "globally", - "installed", - "locally", - "vanilla", - "pure", - "is-object", - "kind", - "custom element name", - "writable", - "is-inside-container", - "esmock", - "wsl", - "subsystem", - "kindof", - "lintspaces-cli", - "code coverage", - "JS code coverage", - "JS coverage", - "js-calendar", - "v-click-outside-x", - "autoprefixer-loader", - "babel-plugin-transform-es5-property-mutators", - "compression-webpack-plugin", - "vue-html-loader", - "character-parser", - "constantinople", - "jstransformer", - "transformers", - "with", - "browserify-middleware", - "code-mirror", - "github-basic", - "handle", - "highlight-codemirror", - "inconsolata", - "jade-code-mirror", - "jade-highlighter", - "jstransformer-cdata", - "jstransformer-coffee-script", - "jstransformer-less", - "jstransformer-marked", - "jstransformer-stylus", - "jstransformer-verbatim", - "less-file", - "lsr", - "pull-request", - "stop", - "filelist", - "rake", - "video-worker", - "babel-plugin-annotate-pure-calls", - "browserslist-config-nk", - "eslint-config-nk", - "json-file", - "prettier-config-nk", - "parallax", - "youtube", - "vimeo", - "@jasminejs/reporters", - "eslint-plugin-jasmine", - "css-url-embed", - "walkdir", - "jasmine-reporters", - "jasmine-growl-reporter", - "cssfontparser", - "moo-color", - "babel-plugin-version", - "@jest/diff-sequences", - "@jest/environment", - "@jest/environment-jsdom-abstract", - "@jest/fake-timers", - "jest-serializer-ansi-escapes", - "matchers", - "extended", - "@types/escape-html", - "@types/jump.js", - "@types/randomcolor", - "eslint-webpack-plugin", - "jump.js", - "randomcolor", - "web-vitals", - "libxmljs2", - "plugnplay", - "pnp", - "babel-plugin-add-import-extension", - "@types/merge-stream", - "jest-leak-detector", - "worker-farm", - "@jimp/core", - "@jimp/diff", - "@jimp/js-bmp", - "@jimp/js-gif", - "@jimp/js-jpeg", - "@jimp/js-png", - "@jimp/js-tiff", - "@jimp/plugin-blit", - "@jimp/plugin-blur", - "@jimp/plugin-circle", - "@jimp/plugin-color", - "@jimp/plugin-contain", - "@jimp/plugin-cover", - "@jimp/plugin-crop", - "@jimp/plugin-displace", - "@jimp/plugin-dither", - "@jimp/plugin-fisheye", - "@jimp/plugin-flip", - "@jimp/plugin-hash", - "@jimp/plugin-mask", - "@jimp/plugin-print", - "@jimp/plugin-quantize", - "@jimp/plugin-resize", - "@jimp/plugin-rotate", - "@jimp/plugin-threshold", - "@jimp/types", - "@jimp/utils", - "@jimp/config-eslint", - "@jimp/config-typescript", - "@jimp/config-vitest", - "@jimp/test-utils", - "node-self", - "vite-plugin-node-polyfills", - "image processing", - "image manipulation", - "resize", - "@babel/helper-simple-access", - "@rspack/cli", - "@rspack/core", - "@types/babel__helper-plugin-utils", - "@types/babel__template", - "@types/babel__traverse", - "babel-plugin-parameter-decorator", - "destr", - "nano-jsx", - "preact-render-to-string", - "solid-js", - "wysiwyg editor", - "wysiwyg html editor", - "rich editor", - "rich text editor", - "contenteditable", - "vanillajs", - "wysisyg", - "rte", - "firmata", - "temporal", - "nanotimer", - "browser-serialport", - "grunt-jsbeautifier", - "0A02", - "0A21", - "16x2 LCD", - "20x4 LCD", - "2D120X", - "2Y0A02", - "2Y0A21", - "74HC595", - "ADXL335", - "ADXL345", - "ALS-PT19", - "ALSPT19", - "ANALOG", - "arduino", - "Ardumoto", - "AT42QT1070", - "BLINKM", - "BMP180", - "Continuous Rotation", - "DEFAULT", - "Diffused LED", - "DS18B20", - "Edison Arduino Block", - "Edison GPIO Block", - "Edison I2C Block", - "Edison PWM Block", - "edison", - "ESPLORA", - "EV3", - "galileo-io", - "galileo", - "GP2D120XJ00F", - "GP2Y0A02YK0F", - "GP2Y0A21YK", - "GP2Y0A41SK0F", - "GY-521", - "GY521", - "HD44780", - "High Torque", - "Hitec HS-35HD", - "Hitec HS-422", - "Hitec HS-425BB", - "Hitec HS-625MG", - "Hitec HS-646WP", - "Hitec HS-755HB", - "Hitec HS-805BB", - "Hitec HS-85MG", - "HMC5883L", - "HMC6352", - "Hobby Motor", - "HRLV-MaxSonar-EZ0", - "HT16K33", - "HTU21D", - "i2c", - "Infrared Proximity Sensor", - "Infrared Sensor", - "intel edison", - "intel galileo", - "ISL29125", - "JHD1313M1", - "Joystick", - "LCD1602", - "LCD2004", - "LCM1602", - "LED", - "LIDAR-Lite v2", - "Ludus Protoshield Wireless", - "Ludus Protoshield", - "LV-MaxSonar-EZ0", - "LV-MaxSonar-EZ3", - "MCP23008", - "MCP23017", - "MCP9808", - "Metal Gear", - "MJKDZ", - "MMA7361", - "MMA7660", - "MMA8462Q", - "MPL115A2", - "MPL3115A2", - "MPR121", - "MPR121QR2", - "MPU-6050", - "MPU6050", - "MUXSHIELD2", - "NXT", - "OA41SK", - "PARALLEL", - "PCA9685", - "pcduino", - "PCF8574", - "PCF8574A", - "PCF8574AT", - "PCF8574T", - "PCF8575", - "PCF8591", - "photon", - "PIR Motion Sensor", - "QTOUCH", - "raspberry pi", - "raspberrypi", - "raspi-io", - "RedBoard", - "RGB LED", - "robot", - "robotics", - "rpi", - "serial", - "Servo", - "Shift Register 8-Bit SN74HC595", - "Shift Register", - "SI7020", - "spark core", - "spark-io", - "spark", - "SparkFun Essential Sensor Kit", - "SparkFun Sensor Kit", - "Speed controller", - "Temperature", - "tessel 2", - "Thumb Joystick", - "TINKERKIT", - "TMP36", - "TSL2561", - "Ultrasonic Range Finder", - "usb", - "VKEY", - "Weather Shield Arduino", - "Weather Shield Photon", - "@hapi/address", - "@hapi/formula", - "@hapi/pinpoint", - "@hapi/tlds", - "recoil", - "grunt-html", - "commitplease", - "grunt-bowercopy", - "grunt-git-authors", - "grunt-compare-size", - "jquery-test-runner", - "eslint-config-jquery", - "config-chain", - "beautifier", - "code-quality", - "grunt-exec", - "gzip-js", - "amd", - "rollup-plugin-node-polyfills", - "pyyaml", - "knifecycle", - "package-directory", - "yerror", - "architecture", - "gitignore-to-glob", - "@jscpd/badge-reporter", - "@jscpd/core", - "@jscpd/finder", - "@jscpd/tokenizer", - "@jscpd/html-reporter", - "jscpd-sarif-reporter", - "cst", - "jscs-jsdoc", - "jscs-preset-wikimedia", - "reserved-words", - "to-double-quotes", - "to-single-quotes", - "vow-fs", - "unicode-7.0.0", - "unit-coverage", - "@jsdoc/salty", - "catharsis", - "js2xmlparser", - "requizzle", - "current-module-paths", - "object-to-spawn-args", - "config-master", - "@acemir/cssom", - "@asamuzakjp/dom-selector", - "@bramus/specificity", - "data-urls", - "decimal.js", - "saxes", - "symbol-tree", - "w3c-xmlserializer", - "webidl-conversions", - "whatwg-url", - "mocha-sugar-free", - "webidl2", - "webidl2js", - "browser-request", - "cssom", - "nwmatcher", - "selenium-standalone", - "unicode-13.0.0", - "results-interpreter", - "unicode-5.2.0", - "unicode-11.0.0", - "stylish", - "deeks", - "doc-path", - "to", - "json2csv", - "csv2json", - "csv-2-json", - "milliparsec", - "sort-on", - "prototyping", - "dummy", - "@types/object-keys", - "deterministic", - "stable", - "circular", - "unicode-10.0.0", - "@stryker-mutator/mocha-runner", - "json-metaschema", - "jsonparse", - "trees", - "jws", - "lodash.once", - "lodash.includes", - "lodash.isnumber", - "lodash.isboolean", - "lodash.isinteger", - "@jspm/generator", - "@jspm/plugin-rollup", - "amaro", - "states", - "lie", - "jszip-utils", - "package-json-versionify", - "inflate", - "qjobs", - "dom-serialize", - "timer-shim", - "karma-junit-reporter", - "karma-script-launcher", - "spectacular", - "execution", - "hat", - "os-shim", - "karma-plugin", - "karma-preprocessor", - "browserify-tool", - "browserstack-local", - "karma-launcher", - "browser-stack", - "chrome", - "ibrik", - "karma-coffee-preprocessor", - "karma-requirejs", - "karma-reporter", - "Safari", - "Safari Tech Preview", - "SafariTechPreview", - "IE", - "Chrome", - "Chrome Canary", - "Chrome Headless", - "Chromium", - "Firefox", - "Opera", - "edge-launcher", - "chai-fs", - "os-homedir", - "firefox", - "karma-adapter", - "karma-rollup", - "safari", - "global-agent", - "@types/global-agent", - "sauce", - "labs", - "karma-brief-reporter", - "rollup-sourcemap-path-transform", - "keyboard", - "keyboardevent", - "keydown", - "keyup", - "metakey", - "keyname", - "@keyv/serialize", - "lru.min", - "timekeeper", - "@keyv/compress-gzip", - "@keyv/sqlite", - "@keyv/test-suite", - "@keyv/mongo", - "@keyv/compress-brotli", - "@keyv/compress-lz4", - "@keyv/memcache", - "key-value", - "adapter", - "memory", - "lru", - "tarn", - "escalade", - "pg-connection-string", - "tedious", - "oracledb", - "better-sqlite3", - "pg-query-stream", - "chai-subset-in-order", - "@tsconfig/recommended", - "toxiproxy-node-client", - "sql", - "postgres", - "cockroachdb", - "querybuilder", - "formatly", - "oxc-resolver", - "smol-toml", - "codeclimate-types", - "analysis", - "analyze", - "dead code", - "duplicate", - "entropy", - "maintenance", - "members", - "missing", - "monorepo", - "namespace", - "unreferenced", - "unresolved", - "workspace", - "lodash.sortby", - "explorer", - "opera", - "samsung-internet", - "uc-browser", - "stream-counter", - "delegates", - "http-assert", - "gen-esm-wrapper", - "@types/co-body", - "co-body", - "@koa/router", - "@types/koa__router", - "urlencoded", - "body", - "copy-to", - "bodyParser", - "compose", - "humanize-number", - "passthrough-counter", - "koa-compress", - "koa-route", - "mount", - "mounting", - "@ladjs/env", - "route", - "koa-send", - "sendfile", - "reds", - "node-redis-warlock", - "bossy", - "eslint-config-hapi", - "eslint-plugin-hapi", - "find-rc", - "will-call", - "cpr", - "lab-event-reporter", - "semver-regex", - "latest", - "package.json", - "current", - "autodoc", - "deft", - "jasmine-async", - "race.js", - "string-table", - "happen", - "leafdoc", - "bundlemon", - "git-rev-sync", - "karma-expect", - "prosthetic-hand", - "eslint-config-mourner", - "rollup-plugin-git-version", - "@mapbox/eslint-plugin-script-tags", - "gis", - "left", - "padding", - "repeat", - "numbers", - "aproba", - "cmd-shim", - "p-reduce", - "byte-size", - "write-pkg", - "wide-align", - "has-unicode", - "p-waterfall", - "libnpmaccess", - "p-map-series", - "set-blocking", - "@lerna/create", - "libnpmpublish", - "read-cmd-shim", - "load-json-file", - "init-package-json", - "make-fetch-happen", - "conventional-changelog-core", - "validate-npm-package-license", - "conventional-recommended-bump", - "conventional-changelog-angular", - "@octokit/plugin-enterprise-rest", - "multi-package", - "copy-anything", - "benny", - "bootstrap-less-port", - "html-template-tag", - "jit-grunt", - "less-plugin-autoprefix", - "mocha-teamcity-reporter", - "phin", - "read-glob", - "compile less", - "css nesting", - "css variable", - "gradients css", - "gradients css3", - "less compiler", - "less css", - "less mixins", - "less.js", - "lesscss", - "nested css", - "bootstrap css", - "bootstrap less", - "variables in css", - "css less", - "less-plugin-glob", - "browser-level", - "classic-level", - "abstract-level", - "airtap-playwright", - "@voxpelli/tsconfig", - "leveldb", - "napi-macros", - "abstract-leveldown", - "du", - "async-each", - "mkfiletree", - "readfiletree", - "prebuildify-ci", - "prebuildify-cross", - "level-concat-iterator", - "level-errors", - "level-supports", - "queue-microtask", - "deferred-leveldown", - "level-iterator-stream", - "memdown", - "trickle", - "airtap-sauce", - "run-parallel", - "encoding-down", - "simple-concat", - "fast-levenshtein", - "ld", - "levdist", - "levenshtein", - "levenshtein-component", - "levenshtein-edit-distance", - "talisman", - "distance", - "algorithm", - "comparison", - "edit", - "matching", - "binary-extensions", - "promise-retry", - "just-safe-set", - "fund", - "gitfund", - "crlf", - "gmail-send", - "jest-codemods", - "libphonenumber-metadata-generator", - "renamer", - "libphonenumber", - "fined", - "flagged-respawn", - "autolink", - "hashtag", - "link", - "mention", - "consolemock", - "staged", - "@samverschueren/stream-to-observable", - "is-observable", - "listr-silent-renderer", - "listr-update-renderer", - "listr-verbose-renderer", - "@lit-labs/ssr-dom-shim", - "@lit/reactive-element", - "@lit-internal/scripts", - "@lit-labs/testing", - "@webcomponents/template", - "connect-logger", - "http-auth", - "faye-websocket", - "livereload-js", - "resolve-pkg", - "matchdep", - "lws-basic-auth", - "lws-blacklist", - "lws-body-parser", - "lws-compress", - "lws-conditional-get", - "lws-cors", - "lws-json", - "lws-log", - "lws-mime", - "lws-range", - "lws-request-monitor", - "lws-rewrite", - "lws-spa", - "lws-static", - "full-stack", - "babel-preset-es2015-loose", - "browserify-derequire", - "grunt-es3-safe-recast", - "grunt-rollup", - "grunt-ts", - "rollupify", - "indexeddb", - "localstorage", - "websql", - "openurl", - "lockfile-lint-api", - "prettier-standard", - "lockfile check", - "lockfile lint", - "lock", - "stdlib", - "lodash-modularized", - "clonedeep", - "defaults", - "isempty", - "isequal", - "isfunction", - "isplainobject", - "isstring", - "omit", - "pick", - "uniq", - "uni-global", - "sprintf-kit", - "event-emitter", - "ncjsm", - "tape-index", - "terminal.js", - "update", - "refresh", - "overwrite", - "bar", - "date-format", - "streamroller", - "@log4js-node/sandboxed-module", - "grunt-contrib-jasmine", - "grunt-open", - "grunt-preprocess", - "math", - "int64", - "uid2", - "isemail", - "canonical-json", - "loopback-phase", - "strong-remoting", - "loopback-filters", - "strong-globalize", - "loopback-connector-remote", - "nodemailer-stub-transport", - "loopback-datasource-juggler", - "nodemailer-direct-transport", - "is-docker", - "loopback-boot", - "karma-es6-shim", - "loopback-context", - "strong-task-emitter", - "strong-error-handler", - "eslint-config-loopback", - "sqlserver", - "StrongLoop", - "mBaaS", - "steno", - "express-async-handler", - "@commitlint/prompt-cli", - "@typicode/eslint-config", - "embed", - "embedded", - "localStorage", - "sessionStorage", - "mru", - "@lucide/build-icons", - "@lucide/shared", - "@lucide/rollup-plugins", - "Lucide", - "HTML", - "Feather", - "Icons", - "Icon", - "SVG", - "Feather Icons", - "Fontawesome", - "Font Awesome", - "decree", - "manipulate", - "blur", - "sharpen", - "flip", - "mirror", - "hue", - "saturation", - "lightness", - "transparency", - "fade", - "opacity", - "contain", - "cover", - "@75lb/deep-merge", - "ansi-escape-sequences", - "create-mixin", - "load-module", - "sleep-anywhere", - "expand-home-dir", - "hast-util-to-mdast", - "mdast-util-to-markdown", - "short-unique-id", - "y18n", - "@types/columnify", - "@types/json-diff", - "@types/make-fetch-happen", - "@types/which", - "wizard", - "task graph", - "string manipulation", - "@favware/rollup-type-bundler", - "lavalink client", - "audio streaming", - "music bot", - "voice chat", - "discord integration", - "high performance", - "easy-to-use", - "feature-rich", - "seamless integration", - "community support", - "open-source", - "lavalink", - "path-type", - "intermediate", - "recursively", - "dingbat-to-unicode", - "lop", - "browserify-prepend-licenses", - "duck", - "hamjest", - "office", - "word", - "@nestjs/common", - "@nestjs/config", - "@nestjs/core", - "@nestjs/platform-express", - "@nestjs/swagger", - "@nestjs/throttler", - "@nestjs/typeorm", - "@yarnpkg/lockfile", - "uniqid", - "@codecov/bundle-analyzer", - "@nestjs/cli", - "@nestjs/testing", - "@testcontainers/mysql", - "@types/dasherize", - "crud", - "admin-panel", - "headless-cms", - "backend-framework", - "micro-backend", - "rapid-development", - "yaml-config", - "file-upload", - "api-generator", - "low-code", - "no-code", - "prototype", - "mvp", - "startup", - "baas", - "@next/eslint-plugin-next", - "@tabler/icons-react", - "eslint-config-next", - "postcss-preset-mantine", - "postcss-simple-vars", - "mantine", - "context", - "context-menu", - "context menu", - "react server components", - "user experience", - "usability", - "mapbox-gl", - "mapbox", - "legend", - "text processing", - "linkify-it", - "mdurl", - "punycode.js", - "uc.micro", - "markdown-it-for-inline", - "markdown-it-ins", - "markdown-it-mark", - "markdown-it-sub", - "ndoc", - "markdown-it-plugin", - "anchor", - "emoji", - "emojies", - "emoticon", - "emoticons", - "stream-from-to", - "pdf-text", - "rows", - "bunup", - "theredoc", - "markdown parser", - "solidjs", - "diacritics-map", - "lazy-cache", - "list-item", - "markdown-link", - "mixin-deep", - "repeat-string", - "document", - "glossary", - "heading", - "links", - "remarkableplugin", - "table of contents", - "table-of-contents", - "toc", - "micromark-core-commonmark", - "micromark-extension-directive", - "micromark-extension-gfm-autolink-literal", - "micromark-extension-gfm-footnote", - "micromark-extension-gfm-table", - "micromark-extension-math", - "micromark-util-types", - "gemoji", - "markdownlint-rule-extended-ascii", - "CommonMark", - "jsonpointer", - "run-con", - "@markedjs/eslint-config", - "@markedjs/testutils", - "esbuild-plugin-umd-wrapper", - "marked-highlight", - "marked-man", - "recheck", - "markup", - "v8-argv", - "inline-style-prefixer", - "react-event-listener", - "simple-assign", - "complex.js", - "escape-latex", - "javascript-natural-sort", - "typed-function", - "eigen", - "expr-eval", - "jsep", - "ndarray", - "ndarray-determinant", - "ndarray-gemm", - "ndarray-ops", - "ndarray-pack", - "numericjs", - "sylvester", - "zeros", - "mathematics", - "numeric", - "algebra", - "complex", - "fraction", - "charenc", - "md5sum", - "checksum", - "decode-named-character-reference", - "micromark-util-decode-numeric-character-reference", - "micromark-util-decode-string", - "micromark-util-normalize-identifier", - "micromark-util-symbol", - "unist-util-stringify-position", - "commonmark.json", - "micromark-build", - "mdast-util", - "mdast", - "tree", - "micromark-util-sanitize-uri", - "trim-lines", - "mdast-util-gfm", - "micromark-extension-gfm", - "mdn", - "mozilla", - "hashring", - "jackpot", - "InnoDB memcached API", - "failover", - "hashing", - "membase", - "memcache", - "nMemcached", - "@jsonjoy.com/fs-core", - "@jsonjoy.com/fs-fsa", - "@jsonjoy.com/fs-node", - "@jsonjoy.com/fs-node-builtins", - "@jsonjoy.com/fs-node-to-fsa", - "@jsonjoy.com/fs-node-utils", - "@jsonjoy.com/fs-print", - "@jsonjoy.com/fs-snapshot", - "@jsonjoy.com/json-pack", - "@jsonjoy.com/util", - "glob-to-regex.js", - "thingies", - "tree-dump", - "isomorphic-git", - "tslint-config-common", - "fs.js", - "in-memory", - "fsa", - "file system access", - "native file system", - "webfs", - "crudfs", - "opfs", - "casfs", - "content addressable storage", - "@types/lodash.isequal", - "fast-memoize", - "mem", - "nanocolors", - "memoization", - "gulp-exit", - "ram", - "errno", - "camelcase-keys", - "decamelize-keys", - "delete_comments", - "minimist-options", - "trim-newlines", - "cat", - "kitten", - "from2", - "lodash.clonedeepwith", - "stat-mode", - "ware", - "@metalsmith/drafts", - "assert-dir-equal", - "7zip-bin", - "node-7z", - "node-downloader-helper", - "@babel/plugin-syntax-import-meta", - "@surma/rollup-plugin-off-main-thread", - "asyncro", - "babel-plugin-transform-async-to-promises", - "babel-plugin-transform-replace-expressions", - "tiny-glob", - "@babel/plugin-proposal-throw-expressions", - "directory-tree", - "eslint-config-developit", - "npm-merge-driver-install", - "micro library", - "micromark-factory-space", - "micromark-util-chunked", - "micromark-util-combine-extensions", - "micromark-util-resolve-all", - "micromark-util-subtokenize", - "fill-range", - "bracket", - "character-class", - "expansion", - "extglobs", - "lookahead", - "lookaround", - "lookbehind", - "negate", - "negation", - "posix", - "star", - "@types/mime-db", - "mime-score", - "release-please", - "runmd", - "mime-db", - "mimetypes", - "Min Heap", - "min heap", - "maxheap", - "min-heap", - "heap", - "Binary Heap", - "binary-heap", - "heap data structure", - "min heap data structure", - "complete binary tree", - "heapify", - "heap sort", - "heapify up", - "heapify down", - "Priority Queue", - "priority queue", - "priorityqueue", - "priority-queue", - "priority q", - "priorityQ", - "efficient", - "priority", - "complete binary", - "extract min", - "min priority queue", - "efficient priority", - "ordering property", - "dynamic resizing", - "priority-based", - "priority-based processing", - "element priority", - "queue priority", - "sorted", - "decrease key", - "increase key", - "searching", - "@putout/minify", - "css-b64-images", - "html-minifier-next", - "montag", - "readjson", - "try-catch", - "try-to-catch", - "escover", - "eslint-plugin-putout", - "madrun", - "supertape", - "brace-expansion", - "signed", - "certificate", - "cert", - "@types/brace-expansion", - "make dir", - "dir", - "ufo", - "conditional-type-checks", - "mobservable", - "reactive", - "frp", - "functional-reactive-programming", - "state management", - "data flow", - "mobx-react-lite", - "expose-gc", - "browser-stdout", - "yargs-unparser", - "uslug", - "pidtree", - "rewiremock", - "unexpected", - "@mocha/docdash", - "jsdoc-ts-utils", - "unexpected-map", - "unexpected-set", - "unexpected-sinon", - "remark-inline-links", - "unexpected-eventemitter", - "fail-on-errors-webpack-plugin", - "@11ty/eleventy-plugin-inclusive-language", - "headless-chrome", - "chai-xml", - "test-console", - "xmllint", - "junit", - "lcov", - "define-data-property", - "gopd", - "has-property-descriptors", - "@types/es-value-fixtures", - "@types/for-each", - "@types/functions-have-names", - "@types/get-intrinsic", - "@types/gopd", - "@types/has-property-descriptors", - "@types/object-inspect", - "descriptor", - "define", - "swap", - "unix-dgram", - "unittest", - "gulp-coveralls", - "gulp-mocha-phantomjs", - "mockJSON", - "mockAjax", - "ipaddr.js", - "recursive-watch", - "fastest-validator", - "avsc", - "nats", - "etcd3", - "cbor-x", - "thrift", - "redlock", - "dd-trace", - "gc-stats", - "msgpack5", - "fakerator", - "kafka-node", - "v8-natives", - "@types/pino", - "notepack.io", - "benchmarkify", - "rhea-promise", - "@types/bunyan", - "jaeger-client", - "@types/ioredis", - "moleculer-repl", - "winston-context", - "event-loop-stats", - "node-nats-streaming", - "@icebob/node-memwatch", - "microservice", - "messagebus", - "services", - "micro", - "distributed", - "ender", - "timezone", - "olson", - "iana", - "zone", - "tz", - "monaco-languageserver-types", - "monaco-marker-data-provider", - "monaco-types", - "monaco-worker-manager", - "vscode-languageserver-textdocument", - "vscode-languageserver-types", - "vscode-uri", - "@remcohaszing/eslint", - "remark-preset-remcohaszing", - "yaml-language-server", - "monaco", - "monads", - "either", - "maybe", - "result", - "@codemirror/lang-javascript", - "@codemirror/theme-one-dark", - "@json2csv/plainjs", - "@lezer/highlight", - "basic-auth-connect", - "bootstrap-paginator-2", - "free-swig", - "gridfs-stream", - "mongodb-query-parser", - "renderjson-2", - "@cypress/code-coverage", - "assets-webpack-plugin", - "express-openid-connect", - "mongodb-memory-server", - "administration", - "GUI", - "manage", - "manage-mongo", - "phpmyadmin", - "UI", - "web-based", - "@mongodb-js/saslprep", - "mongodb-connection-string-url", - "aws4", - "socks", - "snappy", - "mocha-sinon", - "gcp-metadata", - "@types/kerberos", - "@types/saslprep", - "v8-heapsnapshot", - "@mongodb-js/zstd", - "@types/whatwg-url", - "@types/chai-subset", - "mongodb-client-encryption", - "@aws-sdk/credential-providers", - "kareem", - "mpath", - "mquery", - "sift", - "@ark/attest", - "@mongodb-js/mongodb-downloader", - "acquit", - "acquit-ignore", - "acquit-require", - "lodash.isequalwith", - "mongodb-runner", - "odm", - "datastore", - "backbone-callbacks", - "node-monitor", - "remote control", - "probe", - "JMX", - "core-monitor", - "dashboard", - "monitoring", - "control panel", - "@types/mongodb", - "monk-middleware-cast-ids", - "monk-middleware-fields", - "monk-middleware-handle-callback", - "monk-middleware-options", - "monk-middleware-query", - "monk-middleware-wait-for-connection", - "gitbook-cli", - "gitbook-plugin-anker-enable", - "gitbook-plugin-custom-favicon", - "gitbook-plugin-edit-link", - "gitbook-plugin-github", - "gitbook-plugin-prism", - "monk-middleware-debug", - "commist", - "help-me", - "mqtt-packet", - "worker-timers", - "number-allocator", - "aedes-cli", - "leaked-handles", - "mqtt-connection", - "@esm-bundle/chai", - "mqtt-level-store", - "esbuild-plugin-polyfill-node", - "publish/subscribe", - "@tediousjs/connection-string", - "msnodesql", - "tds", - "node-tds", - "node-sqlserver", - "msnodesqlv8", - "node-mssql", - "@types/statuses", - "headers-polyfill", - "rettime", - "until-async", - "@epic-web/test-server", - "@fastify/websocket", - "@types/json-bigint", - "@types/serviceworker", - "json-bigint", - "page-with", - "append-field", - "fs-temp", - "testdata-w3c-json-form", - "formdata", - "array-union", - "pend", - "release-it-pnpm", - "test report", - "html report", - "json to html", - "karma-story-reporter", - "mezr", - "web-animations-js", - "bin-packing", - "sqlstring", - "timezone-mock", - "urun", - "utest", - "sql-escaper", - "aws-ssl-profiles", - "generate-function", - "named-placeholders", - "poku", - "assert-diff", - "eslint-plugin-async-await", - "thenify", - "then", - "bats", - "switcher", - "couchdb", - "fastest-stable-stringify", - "rtl-css-js", - "iconista", - "libreact", - "pico", - "lite", - "in-js", - "styled", - "decorator", - "jsxstyle", - "rule", - "gitcloud", - "hasbin", - "page-icon", - "@types/hasbin", - "@types/page-icon", - "desktop", - "proxy-lib", - "font-finder", - "pbxproj-dom", - "@foxt/js-srp", - "simple-plist", - "ios-device-lib", - "email-validator", - "ios-sim-portable", - "plist-merge-patch", - "@nativescript/hook", - "@nativescript/doctor", - "nativescript-dev-xcode", - "ios-mobileprovision-finder", - "@nstudio/trapezedev-project", - "@rigor789/resolve-package-path", - "@types/plist", - "@types/retry", - "@types/byline", - "@types/pacote", - "@types/tabtab", - "@types/tunnel", - "@types/xml2js", - "@types/archiver", - "@types/qr-image", - "@types/marked-terminal", - "@types/proper-lockfile", - "@types/npmcli__arborist", - "@types/universal-analytics", - "afinn-165", - "afinn-165-financialmarketnews", - "apparatus", - "memjs", - "stopwords-iso", - "wordnet-db", - "browserfs", - "gulp-jasmine-browser", - "pegjs", - "uubench", - "natural language processing", - "artifical intelligence", - "Porter stemmer", - "Lancaster stemmer", - "bigram", - "trigram", - "quadgram", - "ngram", - "stemmer", - "bayes", - "classifier", - "phonetic", - "metaphone", - "inflector", - "Wordnet", - "tf-idf", - "logistic regression", - "doublemetaphone", - "double", - "jaro-winkler distance", - "levenshtein distance", - "string distance", - "part-of-speech tagger", - "Eric Brill", - "Brill tagger", - "sentiment analysis", - "maximum entropy modelling", - "secure-keys", - "nconf-yaml", - "key value store", - "plugabble", - "near social", - "bridge", - "near", - "binary-search-tree", - "exec-time", - "@fig/complete-commander", - "@golevelup/nestjs-discovery", - "nest", - "@postman/tough-cookie", - "chardet", - "liquid-json", - "postman-collection", - "postman-collection-transformer", - "postman-request", - "postman-runtime", - "serialised-error", - "@postman/shipit", - "dockerfile_lint", - "parse-gitignore", - "postman", - "rest-client", - "@apm-js-collab/tracing-hooks", - "@newrelic/security-agent", - "@tyriar/fibonacci-heap", - "import-in-the-middle", - "module-details-from-path", - "require-in-the-middle", - "@aws-sdk/s3-request-presigner", - "@matteo.collina/tspl", - "@newrelic/eslint-config", - "@newrelic/newrelic-oss-cli", - "@newrelic/test-utilities", - "@slack/bolt", - "@smithy/eventstream-codec", - "@smithy/util-utf8", - "git-raw-commits", - "self-cert", - "debugging", - "profiling", - "@panva/hkdf", - "openid-client", - "@edge-runtime/jest-environment", - "@types/nodemailer", - "@types/oauth", - "babel-plugin-jsx-pragmatic", - "babel-preset-preact", - "oauth2", - "nextauth", - "async handler", - "async functions", - "pipe", - "provider", - "TestBed", - "how-to", - "@ant-design/icons-angular", - "localhost", - "tunneling", - "webhook", - "deep-defaults", - "enqueue", - "function-source", - "minstache", - "sliced", - "mocha-generators", - "@nightwatch/chai", - "@nightwatch/html-reporter-template", - "@nightwatch/nightwatch-inspector", - "@types/selenium-webdriver", - "chai-nightwatch", - "devtools-protocol", - "didyoumean", - "nightwatch-axe-verbose", - "stacktrace-parser", - "mochawesome-merge", - "mochawesome-report-generator", - "nightwatchjs", - "selenium", - "webdriver", - "automated-testing", - "@sinonjs/text-encoding", - "@sinonjs/referee", - "jsdom-global", - "mochify", - "proxyquire-universal", - "proxyquireify", - "propagate", - "clang-format", - "n-api", - "napi", - "coffee-coverage", - "grunt-contrib-coffee", - "grunt-include-replace", - "internal", - "check-version-modules", - "used-deps-analyzer", - "container", - "skeleton", - "formate", - "dynamic-dedupe", - "filewatcher", - "tap-xunit", - "reload", - "subdir", - "char-regex", - "emojilib", - "skin-tone", - "sentences-per-line", - "emojis", - "smiley", - "smileys", - "smilies", - "ideogram", - "ideograms", - "fetch-blob", - "chai-iterator", - "stream-consumers", - "eslint-config-digitalbazaar", - "karma-tap-reporter", - "nodejs-websocket", - "worker-loader", - "aes", - "asn", - "asn.1", - "cbc", - "csr", - "des", - "gcm", - "hmac", - "pkcs", - "pki", - "prng", - "rc2", - "rsa", - "sha256", - "sha384", - "sha512", - "tls", - "x.509", - "x509", - "c2dm", - "fcm", - "messaging", - "geocoder", - "geocoding", - "geo", - "maps", - "mapquest", - "agol", - "arcgis", - "tomtom", - "exponential-backoff", - "require-inject", - "high5", - "html-parser", - "html5parser", - "htmljs-parser", - "htmlparser-benchmark", - "mocha-each", - "neutron-html5parser", - "biased-opener", - "strong-data-uri", - "v8-debug", - "v8-profiler", - "http mock", - "growly", - "shellwords", - "nexe", - "notification center", - "mac os x 10.8", - "terminal-notifier", - "windows 8 notification", - "toaster", - "ps-list", - "pty", - "pseudoterminal", - "forkpty", - "openpty", - "@node-red/editor-api", - "@node-red/runtime", - "@node-red/util", - "@node-red/nodes", - "node-red-admin", - "iot", - "sass-graph", - "async-foreach", - "stdout-stream", - "true-case-path", - "unique-temp-dir", - "long-timeout", - "sorted-array-functions", - "recurrent", - "rfc4122", - "fs.watch", - "watchfile", - "ngn", - "daemon", - "event logging", - "elevate", - "sudo", - "@mgcrea/eslint-config-node", - "@tsconfig/node-lts", - "excel", - "xls", - "jQuery", - "jQuery extend", - "inherit", - "combyne", - "clean-for-publish", - "libgit2", - "git2", - "@aws-sdk/client-sesv2", - "libbase64", - "libmime", - "libqp", - "nodemailer-ntlm-auth", - "proxy-test-server", - "Nodemailer", - "pstree.remy", - "undefsafe", - "autoload", - "multimeter", - "node-webkit", - "webkit", - "async-redis", - "express-ipfilter", - "express-ws", - "json-logic-js", - "json-sql", - "jsonpath-plus", - "line-reader", - "mocker-data-generator", - "node-ipc", - "promise-mysql", - "stjs", - "uuid-random", - "nolang", - "Programming", - "programming language", - "descriptive", - "5GL", - "json schema", - "Mehdi Salartayefeh", - "option parser", - "absolute", - "backslash", - "delimiter", - "file-path", - "forward", - "fp", - "slashes", - "trailing", - "unix", - "urix", - "normalization", - "normalisation", - "simplify", - "trim", - "canonical", - "mouse wheel", - "exit-hook", - "github-url-from-git", - "is-interactive", - "is-scoped", - "issue-regex", - "listr-input", - "new-github-release-url", - "npm-name", - "p-memoize", - "map-obj", - "write-package", - "archy", - "is-cidr", - "libnpmorg", - "libnpmpack", - "libnpmteam", - "fs-minipass", - "npm-profile", - "libnpmsearch", - "@sigstore/tuf", - "libnpmversion", - "@npmcli/config", - "npm-audit-report", - "minipass-pipeline", - "npm-user-validate", - "tiny-relative-date", - "fastest-levenshtein", - "json-parse-even-better-errors", - "@npmcli/git", - "@npmcli/docs", - "@tufjs/repo-mock", - "@npmcli/mock-globals", - "ajv-formats-draft2019", - "package manager", - "giturl", - "throat", - "semver-diff", - "preferred-pm", - "callsite-record", - "rc-config-loader", - "outdated", - "updates", - "updating", - "updater", - "@trivago/prettier-plugin-sort-imports", - "@types/chai-string", - "@types/cli-table", - "@types/ini", - "@types/jsonlines", - "@types/npm-registry-fetch", - "@types/parse-github-url", - "@types/semver-utils", - "@types/update-notifier", - "eslint-config-raine", - "fp-and-or", - "jsonlines", - "prompts-ncu", - "semver-utils", - "typescript-json-schema", - "verdaccio", - "vite-bundle-analyzer", - "vite-node", - "upgrade", - "versions", - "esbuild-node-externals", - "eslint-config-tc", - "eslint-config-typescript-tc", - "npm-package-json-lint-config-tc", - "auditor", - "mutate-fs", - "minipass-fetch", - "minizlib", - "registry", - "string.prototype.padend", - "eslint-config-mysticatea", - "commandline", - "npm-scripts", - "run", - "read-package-json-fast", - "script", - "string convert", - "yarn to npm", - "npm upgrade", - "babel-preset-latest", - "npm-cli", - "are-we-there-yet", - "mocha-jsdom", - "cvss", - "nodesecurity-npm-utils", - "gluegun", - "nuke", - "money", - "percentage", - "a-sync-waterfall", - "asap", - "mocha-phantomjs-core", - "mocha-phantomjs-istanbul", - "module-alias", - "node-libs-browser", - "css4", - "node-machine-id", - "resolve.exports", - "@yarnpkg/parsers", - "lines-and-columns", - "@napi-rs/wasm-runtime", - "Mobile", - "caching-transform", - "istanbul-lib-hook", - "istanbul-lib-processinfo", - "node-preload", - "process-on-spawn", - "spawn-wrap", - "any-path", - "@readme/openapi-parser", - "remove-undefined-objects", - "@readme/oas-examples", - "@types/json-schema-merge-allof", - "@types/memoizee", - "apis", - "openapi initiative", - "openapi specification", - "openapi spec", - "openapi document", - "oai", - "@readme/postman-to-openapi", - "@types/swagger2openapi", - "prollyfill", - "gulp-exec", - "@pkgjs/support", - "error-cause", - "globalthis", - "has-tostringtag", - "util.inspect", - "indexof", - "Object.keys", - "@mariocasciaro/benchpress", - "access", - "bean", - "notation", - "segment", - "es-object-atoms", - "Object.assign", - "$.extend", - "_.extend", - "Underscore", - "Object.entries", - "Object.values", - "entries", - "ES8", - "ee-first", - "wrappy", - "@blakeembrey/deque", - "@blakeembrey/template", - "epoll", - "@types/mock-require", - "gpio", - "interrupt", - "raspberry", - "raspi", - "pi", - "beaglebone", - "beaglebone-black", - "default-browser", - "define-lazy-prop", - "is-in-ssh", - "wsl-utils", - "opens", - "launch", - "start", - "xdg-open", - "xdg", - "default", - "urls", - "bath-es5", - "dereference-json-schema", - "axios-mock-adapter", - "json-schema-deref-sync", - "open api", - "computer", - "quadrocopter", - "countrynames", - "hashish", - "last-call-webpack-plugin", - "prelude-ls", - "deep-is", - "levn", - "livescript", - "option parsing", - "stdin-discarder", - "transform-tty", - "sequencify", - "stream-consume", - "sql-ddl-sync", - "sql-query", - "redshift", - "home", - "tmpdir", - "ps1", - "template string", - "template literal", - "styleable", - "scrollbar", - "scrollbars", - "scroll", - "@vscode/vsce", - "yauzl-promise", - "@types/is-ci", - "@types/yauzl-promise", - "limiter", - "vscode", - "addlistener", - "addeventlistener", - "waits", - "resolved", - "race", - "fulfilled", - "concurrency", - "ratelimit", - "fifo", - "invalidate", - "out", - "plunder", - "metadata", - "@pa11y/html_codesniffer", - "eslint-config-pa11y", - "proclaim", - "aria", - "compliance", - "headless", - "htmlcs", - "standards", - "WCAG", - "sigstore", - "npm-registry-mock", - "capture-website", - "filenamify-url", - "unused-filename", - "@types/png.js", - "png.js", - "page", - "screenshots", - "screengrab", - "striptags", - "para", - "server-side", - "idb-keyval", - "react-native-crypto-js", - "@saithodev/semantic-release-backmerge", - "@types/facebook-js-sdk", - "babel-plugin-transform-inline-environment-variables", - "jasmine-spec-reporter", - "jsdoc-babel", - "parse-server", - "vite-plugin-commonjs", - "WHATWG", - "html parser", - "html5 parser", - "html serializer", - "htmlserializer", - "fast-url-parser", - "pause", - "chai-connect-middleware", - "username", - "passport-oauth1", - "base64url", - "exist", - "isabsolute", - "is-absolute", - "zeptomatch", - "@rkusa/linebreak", - "opentype.js", - "jpeg-exif", - "linebreak", - "png-js", - "blob-stream", - "brace", - "pdfjs-dist", - "pdf writer", - "pdf generator", - "call-delayed", - "chai-increasing", - "pg-pool", - "pg-protocol", - "pg-types", - "pgpass", - "pg-cloudflare", - "@cloudflare/vitest-pool-workers", - "@cloudflare/workers-types", - "pg-copy-streams", - "libpq", - "postgre", - "rdbms", - "flow-copy-source", - "npm-watch", - "connect-phonegap", - "phonegap-build", - "phonegap build", - "phonegap/build", - "pinkie-promise", - "denodify", - "atomic-sleep", - "on-exit-leak-free", - "pino-abstract-transport", - "pino-std-serializers", - "quick-format-unescaped", - "real-require", - "@pinojs/redact", - "sonic-boom", - "thread-stream", - "@types/flush-write-stream", - "bole", - "fastbench", - "flush-write-stream", - "midnight-smoker", - "pino-pretty", - "steed", - "postinstall", - "lifecycle", - "devpostinstall", - "entry", - "irregular-plurals", - "plurals", - "count", - "irregular", - "noun", - "nouns", - "@pm2/agent", - "@pm2/js-api", - "@pm2/io", - "@pm2/pm2-version-check", - "@pm2/blessed", - "cli-tableau", - "fclone", - "pidusage", - "pm2-axon", - "pm2-axon-rpc", - "pm2-deploy", - "pm2-multimeter", - "vizion", - "logs", - "kraken", - "load balancer", - "lb", - "load-balancer", - "kubernetes", - "k8s", - "pm2-docker", - "runtime", - "graceful", - "node-pm2", - "production", - "keymetrics", - "node.js monitoring", - "strong-pm", - "supervisord", - "pm2.io", - "ghost production", - "process manager", - "probes", - "keep process alive", - "process configuration", - "clustering", - "cluster cli", - "dev ops", - "tap-dot", - "PNG", - "js-png", - "node-png", - "png-parse", - "pnpm10", - "dependency manager", - "hardlinks", - "prune", - "rapid", - "symlinks", - "uninstall", - "poe", - "economy", - "ninja", - "poe.ninja", - "poe economy", - "path of exile", - "path of exile economy", - "path of exile ninja", - "poe economy api", - "path of exile api", - "poe.watch api", - "poe.ninja api", - "babel-plugin-preval", - "pushstate-server", - "tsgen", - "glamor", - "inline-styles", - "color manipulate", - "color manipulation", - "curried color manipulation", - "@popperjs/bundle", - "@popperjs/eslint-config-popper", - "@popperjs/test", - "@popperjs/test-utils", - "nuget-publish", - "popperjs", - "position", - "attached", - "ports", - "source map", - "manipulation", - "jison-gho", - "calculation", - "calc", - "postcss-reporter", - "read-cache", - "eslint-config-problems", - "@csstools/utilities", - "comma", - "hsl", - "hsla", - "hwb", - "rgba", - "caniuse-api", - "@types/caniuse-api", - "pixrem", - "pleeease-filters", - "postcss-apply", - "postcss-attribute-case-insensitive", - "postcss-color-function", - "postcss-color-gray", - "postcss-color-hex-alpha", - "postcss-color-hsl", - "postcss-color-hwb", - "postcss-color-rebeccapurple", - "postcss-color-rgb", - "postcss-color-rgba-fallback", - "postcss-font-family-system-ui", - "postcss-font-variant", - "postcss-image-set-polyfill", - "postcss-initial", - "postcss-media-minmax", - "postcss-pseudo-class-any-link", - "postcss-pseudoelements", - "postcss-replace-overflow-wrap", - "postcss-selector-matches", - "postcss-selector-not", - "cssrecipes-custom-media-queries", - "cssrecipes-defaults", - "cssrecipes-grid", - "cssrecipes-utils", - "cssrecipes-vertical-rhythm", - "eslint-config-i-am-meticulous", - "isogram", - "markdown-it-toc-and-anchor", - "metalsmith-collections", - "metalsmith-filenames", - "metalsmith-md", - "metalsmith-react", - "metalsmith-rename", - "metalsmith-rss", - "metalsmith-url", - "metalsmith-watch", - "nano-logger", - "npmpub", - "postcss-browser-reporter", - "react-svg-inline", - "to-slug-case", - "webpack-nano-logs", - "cssnext", - "@csstools/cascade-layer-name-parser", - "at-rule", - "atrule", - "csswg", - "media", - "queries", - "declarative", - "selectors", - "empty", - "at-rules", - "@keyframes", - "@counter-style", - "flexbugs", - "flex", - "postcss-less", - "postcss-styl", - "quickapp", - "PHP", - "sss", - "image-set", - "node modules", - "postcssrc", - "postcss.config.js", - "midas", - "postcss-short", - "postcss-dark-theme-class", - "cssnano-utils", - "font-family", - "font-weight", - "@types/cssesc", - "css-modules", - "@csstools/selector-resolve-nested", - "atrules", - "children", - "nestings", - "@csstools/normalize.css", - "postcss-browser-comments", - "sanitize.css", - "@csstools/postcss-tape", - "normalizes", - "fixes", - "@csstools/postcss-alpha-function", - "@csstools/postcss-color-function", - "@csstools/postcss-color-function-display-p3-linear", - "@csstools/postcss-color-mix-function", - "@csstools/postcss-color-mix-variadic-function-arguments", - "@csstools/postcss-content-alt-text", - "@csstools/postcss-contrast-color-function", - "@csstools/postcss-exponential-functions", - "@csstools/postcss-font-format-keywords", - "@csstools/postcss-gamut-mapping", - "@csstools/postcss-gradients-interpolation-method", - "@csstools/postcss-hwb-function", - "@csstools/postcss-ic-unit", - "@csstools/postcss-initial", - "@csstools/postcss-light-dark-function", - "@csstools/postcss-logical-float-and-clear", - "@csstools/postcss-logical-overflow", - "@csstools/postcss-logical-overscroll-behavior", - "@csstools/postcss-logical-resize", - "@csstools/postcss-logical-viewport-units", - "@csstools/postcss-media-minmax", - "@csstools/postcss-media-queries-aspect-ratio-number-values", - "@csstools/postcss-mixins", - "@csstools/postcss-nested-calc", - "@csstools/postcss-normalize-display-values", - "@csstools/postcss-oklab-function", - "@csstools/postcss-position-area-property", - "@csstools/postcss-property-rule-prelude-list", - "@csstools/postcss-random-function", - "@csstools/postcss-relative-color-syntax", - "@csstools/postcss-scope-pseudo-class", - "@csstools/postcss-sign-functions", - "@csstools/postcss-stepped-value-functions", - "@csstools/postcss-syntax-descriptor-syntax-production", - "@csstools/postcss-system-ui-font-family", - "@csstools/postcss-text-decoration-shorthand", - "@csstools/postcss-trigonometric-functions", - "@csstools/postcss-unset-value", - "css-blank-pseudo", - "css-has-pseudo", - "css-prefers-color-scheme", - "postcss-clamp", - "postcss-dir-pseudo-class", - "postcss-double-position-gradients", - "postcss-focus-within", - "postcss-gap-properties", - "postcss-lab-function", - "postcss-logical", - "postcss-overflow-shorthand", - "postcss-page-break", - "postcss-place", - "lists", - "postcss-syntax", - "@jsopen/objects", - "doublylinked", - "lightning-pool", - "postgres-bytea", - "power-tasks", - "putil-promisify", - "putil-varhelpers", - "transformations", - "processor", - "ltgt", - "vuvuzela", - "spark-md5", - "level-codec", - "fetch-cookie", - "double-ended-queue", - "level-write-stream", - "empower", - "power-assert-formatter", - "universal-deep-strict-equal", - "dereserve", - "licensify", - "package-json-filterify", - "precommit", - "@actions/github", - "@actions/glob", - "babel-plugin-transform-rename-properties", - "errorstacks", - "kolorist", - "virtual dom", - "dom diff", - "binary-searching", - "jest-light-runner", - "jest-specific-snapshot", - "@vue/language-plugin-pug", - "prettier-plugin", - "imports", - "organize-imports", - "glob-fs", - "humanized", - "si", - "locale", - "localized", - "renderkid", - "jitter", - "exception", - "error-handling", - "parse-ms", - "milliseconds", - "period", - "hrtime", - "@pkgr/core", - "mercurial", - "hg", - "vcs", - "@prisma/config", - "@prisma/engines", - "@prisma/studio-core", - "ohash", - "package-up", - "ts-pattern", - "@prisma/dmmf", - "line-replace", - "@prisma/debug", - "openapi-fetch", - "xdg-app-paths", - "@libsql/client", - "@prisma/client", - "@prisma/migrate", - "get-port-please", - "@prisma/generator", - "@prisma/internals", - "checkpoint-client", - "openapi-typescript", - "@prisma/fetch-engine", - "@prisma/get-platform", - "@types/better-sqlite3", - "@prisma/adapter-libsql", - "@prisma/credentials-store", - "@prisma/management-api-sdk", - "@prisma/driver-adapter-utils", - "@prisma/client-generator-registry", - "@opentelemetry/context-async-hooks", - "ORM", - "Prisma", - "Prisma CLI", - "prisma2", - "JS", - "TS", - "SQL", - "SQLite", - "Postgres", - "PostgreSQL", - "CockroachDB", - "MySQL", - "MariaDB", - "MSSQL", - "SQL Server", - "SQLServer", - "MongoDB", - "MCP", - "danger", - "docdash", - "gulp-terser", - "regexpp", - "webfont", - "prism", - "node-rest-client", - "URIjs", - "svn", - "customize", - "sisteransi", - "interact", - "uglifyify", - "uglifyjs", - "alpha-sort", - "html-event-attributes", - "mdast-zone", - "svg-element-attributes", - "svg-event-attributes", - "@protobufjs/aspromise", - "@protobufjs/base64", - "@protobufjs/codegen", - "@protobufjs/eventemitter", - "@protobufjs/fetch", - "@protobufjs/float", - "@protobufjs/inquire", - "@protobufjs/path", - "@protobufjs/pool", - "@protobufjs/utf8", - "browserify-wrap", - "git-semver-tags", - "protobuf", - "protocol-buffers", - "serialization", - "@types/q", - "@types/jasminewd2", - "gulp-clang-format", - "natives", - "tslint-eslint-rules", - "vrsource-tslint-rules", - "webdriverjs", - "basic-auth-parser", - "@types/args", - "squid", - "privoxy", - "mod_proxy", - "via", - "x-forwarded-for", - "fill-keys", - "module-not-found-error", - "native-hello-world", - "cp-sugar", - "elegant-status", - "pug-load", - "pug-lexer", - "pug-linker", - "pug-parser", - "pug-filters", - "pug-runtime", - "pug-code-gen", - "pug-strip-comments", - "jstransformer-uglify-js", - "jstransformer-markdown-it", - "tap-bail", - "idn", - "idna", - "dns", - "domain", - "chromium-bidi", - "puppeteer-core", - "typed-query-selector", - "purge", - "fluent", - "qr code", - "@browserify/envify", - "@browserify/uglifyify", - "common-shakeify", - "has-override-mistake", - "unassertify", - "decode-uri-component", - "filter-obj", - "split-on-first", - "param", - "parameter", - "searchparams", - "retape", - "tap-esm", - "synchronous", - "FIFO", - "lifo", - "LIFO", - "work", - "queue js", - "job queue", - "job scheduling", - "task queue", - "ordered", - "iterate", - "linked list", - "dequeue", - "shift", - "item", - "parchment", - "quill-delta", - "@types/highlight.js", - "transpile-webpack-plugin", - "eslint-import-resolver-webpack", - "fuzzysort", - "grunt-search", - "eslint-plugin-json-es", - "@qunitjs/browserstack-runner", - "dom-element-descriptors", - "@types/qunit", - "@release-it-plugins/lerna-changelog", - "qunit-plugin", - "exists-stat", - "js-reporters", - "browserstack-runner", - "testling", - "requestAnimationFrame", - "babel-plugin-import-export-rename", - "envvar", - "sanctuary", - "sanctuary-identity", - "xyz", - "tacit", - "point-free", - "curried", - "fantasy-land", - "words", - "sample", - "timed-out", - "exceptions", - "sentry", - "unpipe", - "@rc-component/father-plugin", - "father-build", - "rc-test", - "react-slider", - "slider", - "react-tooltip", - "@types/responselike", - "react-addon", - "@apollo/react-common", - "@apollo/react-components", - "@apollo/react-hoc", - "@apollo/react-hooks", - "@apollo/react-ssr", - "@restart/ui", - "@restart/hooks", - "uncontrollable", - "prop-types-extra", - "ecosystem-react", - "@icons/material", - "material-colors", - "reactcss", - "@case/eslint-config", - "@storybook/addon-centered", - "babel-plugin-transform-rename-import", - "chai-spies", - "jsx-loader", - "react-context", - "react-mark", - "testdom", - "color picker", - "sketch", - "photoshop", - "html-webpack-tags-plugin", - "copy to clipboard", - "@react-docgen/cli", - "date-fns-tz", - "is-root", - "detect-port-alt", - "@react-dnd/invariant", - "@react-dnd/shallowequal", - "dnd-core", - "@types/doctrine", - "documentation-generation", - "attr-accept", - "file-selector", - "@babel/plugin-proposal-do-expressions", - "@babel/plugin-proposal-logical-assignment-operators", - "@babel/plugin-proposal-pipeline-operator", - "@commitlint/prompt", - "@size-limit/webpack-why", - "imagemin-cli", - "webpack-blocks", - "jest-fetch-mock", - "settle-promise", - "overlay", - "redbox", - "crash", - "react-side-effect", - "eslint-config-nfl", - "karma-chai-sinon", - "karma-html-reporter", - "nfl", - "head", - "title", - "meta", - "noscript", - "jest-fixed-jsdom", - "form-validation", - "enzyme-adapter-react-15", - "react-mount", - "yarn-deduplicate", - "live", - "hot", - "use-sync-external-store", - "@babel/plugin-proposal-async-generator-functions", - "eslint-plugin-jest-dom", - "viewport", - "intersection", - "observer", - "lazy load", - "inview", - "useInView", - "useIntersectionObserver", - "@formatjs/ecma402-abstract", - "@formatjs/icu-messageformat-parser", - "@formatjs/intl", - "intl-messageformat", - "eslint-config-es5", - "rehype-starry-night", - "exenv", - "@webcomponents/custom-elements", - "dialog", - "babel-browser-transform", - "inject-loader", - "isparta-loader", - "karma-jasmine-diff-reporter", - "lodash.range", - "transitiongroup", - "spring", - "tween", - "motion", - "transition", - "nullthrows", - "metro-runtime", - "hermes-compiler", - "metro-source-map", - "flow-enums-runtime", - "@react-native/codegen", - "@react-native/js-polyfills", - "@react-native/gradle-plugin", - "@react-native/assets-registry", - "@react-native/normalize-colors", - "@jest/create-cache-key-function", - "@react-native/virtualized-lists", - "babel-plugin-syntax-hermes-parser", - "@react-native/community-cli-plugin", - "app-framework", - "mobile-development", - "@react-native-community/cli", - "@react-native/eslint-config", - "@react-native/typescript-config", - "react-native-builder-bob", - "react-native-component", - "keychain", - "svg2ttf", - "fontisto", - "evil-icons", - "feather-icons", - "oslllo-svg-fixer", - "svgicons2svgfont", - "simple-line-icons", - "@entypo-icons/core", - "css-social-buttons", - "osx", - "macos", - "@cmfcmf/docusaurus-search-local", - "react-transform-hmr", - "currency", - "number-format", - "require-hijack", - "onclick", - "outside", - "onclickoutside", - "@rollup/plugin-sucrase", - "eslint-plugin-ft-flow", - "hermes-eslint", - "@types/use-sync-external-store", - "matchmediaquery", - "@types/hyphenate-style-name", - "@types/match-media-mock", - "@types/matchmediaquery", - "match-media-mock", - "media queries", - "respond", - "matchMedia", - "wireit", - "premove", - "redux-devtools", - "redux-devtools-dock-monitor", - "redux-devtools-log-monitor", - "combobox", - "multiselect", - "json2mq", - "@playwright/experimental-ct-react", - "foundation-apps", - "slick-carousel", - "why-did-you-update", - "slick", - "carousel", - "Image slider", - "orbit", - "@tippyjs/react", - "@vxna/mini-html-webpack-template", - "clipboard-copy", - "common-dir", - "es6-object-assign", - "function.name-polyfill", - "glogg", - "javascript-stringify", - "jss", - "jss-plugin-camel-case", - "jss-plugin-compose", - "jss-plugin-default-unit", - "jss-plugin-global", - "jss-plugin-isolate", - "jss-plugin-nested", - "listify", - "mini-html-webpack-plugin", - "q-i", - "qss", - "react-docgen-annotation-resolver", - "react-docgen-displayname-handler", - "react-group", - "strip-html-comments", - "type-detect", - "@types/buble", - "@types/copy-webpack-plugin", - "@types/escodegen", - "@types/hash-sum", - "@types/keymirror", - "@types/markdown-to-jsx", - "@types/terser-webpack-plugin", - "@types/type-detect", - "@types/webpack-dev-server", - "deabsdeep", - "deepfreeze", - "dog-names", - "eslint-config-tamia", - "keymirror", - "strip-shebang", - "scalable vector graphics", - "svginjector", - "TapEventPlugin", - "300ms", - "react-testing", - "@4tw/cypress-drag-drop", - "vite-plugin-istanbul", - "toast", - "alert", - "snackbar", - "message", - "commoner", - "jstransform", - "coverify", - "es3ify", - "esprima-fb", - "grunt-jest", - "jasmine-tapreporter", - "populist", - "transition-group", - "transitions", - "react-codemirror", - "eslint-config-react", - "eslint-plugin-relay", - "@babel/preset-stage-2", - "jest-environment-puppeteer", - "@babel/plugin-transform-flow-comments", - "scrolling", - "infinite", - "virtualized", - "fixed", - "es6-module-jstransform", - "@storybook/addon-storysource", - "customize-cra", - "holderjs", - "react-prism", - "esbuild-plugin-alias", - "tap-mocha-reporter", - "line by line", - "repl", - "tiny-invariant", - "@types/esprima", - "flow-parser", - "refactoring", - "pretty-printing", - "prepare", - "change-emitter", - "higher-order", - "microcomponentization", - "composition", - "lister", - "@redis/bloom", - "@redis/client", - "@redis/json", - "@redis/search", - "@redis/time-series", - "@redocly/openapi-core", - "@cfaester/enzyme-adapter-react-18", - "docusaurus-theme-redoc", - "docusaurus-plugin-redoc", - "@docusaurus/theme-common", - "api-doc", - "docusaurus-preset", - "netlify-plugin-cache", - "predictable", - "replay", - "elm", - "just-curry-it", - "reduce-reducers", - "@vitest/coverage-c8", - "eslint-config-unicorn-camelcase", - "flux-standard-action", - "actions", - "insert-line", - "redux-immutable", - "lodash-webpack-plugin", - "@redux-saga/core", - "saga", - "effects", - "side effects", - "thunk", - "redux-middleware", - "ecmarkup", - "gulp-emu", - "gulp-live-server", - "gulp-sequence", - "reflect", - "regenerator", - "abstract", - "is-hidden", - "rehype-plugin", - "is-absolute-url", - "external", - "hast-util-properties-to-mdx-jsx-attributes", - "eslint-config-remcohaszing", - "snapshot-fixtures", - "@nodeutils/defaults-deep", - "@phun-ky/typeof", - "issue-parser", - "wildcard-match", - "@octokit/request-error", - "mentoss", - "mock-stdio", - "remark-preset-webpro", - "distribution", - "intern", - "markdown-extensions", - "unified-args", - "footnote", - "remark-plugin", - "remark-slug", - "mermaid-isomorphic", - "hast-util-from-html-isomorphic", - "mermaidjs", - "remark-comment-config", - "remark-contributors", - "remark-heading-gap", - "remark-license", - "remark-lint-definition-spacing", - "remark-lint-fenced-code-flag", - "remark-lint-file-extension", - "remark-lint-final-definition", - "remark-lint-first-heading-level", - "remark-lint-heading-style", - "remark-lint-no-consecutive-blank-lines", - "remark-lint-no-emphasis-as-heading", - "remark-lint-no-file-name-articles", - "remark-lint-no-file-name-consecutive-dashes", - "remark-lint-no-file-name-irregular-characters", - "remark-lint-no-file-name-mixed-case", - "remark-lint-no-file-name-outer-dashes", - "remark-lint-no-heading-indent", - "remark-lint-no-heading-punctuation", - "remark-lint-no-missing-blank-lines", - "remark-lint-no-multiple-toplevel-headings", - "remark-lint-no-shell-dollars", - "remark-lint-no-table-indentation", - "remark-lint-no-tabs", - "remark-lint-ordered-list-marker-value", - "remark-lint-table-pipe-alignment", - "remark-retext", - "retext-english", - "retext-preset-github", - "remark-lint-correct-media-syntax", - "remark-lint-definition-sort", - "remark-lint-link-title-style", - "remark-lint-maximum-heading-length", - "remark-lint-maximum-line-length", - "remark-lint-mdx-jsx-attribute-sort", - "remark-lint-mdx-jsx-no-void-children", - "remark-lint-mdx-jsx-quote-style", - "remark-lint-mdx-jsx-self-close", - "remark-lint-mdx-jsx-shorthand-attribute", - "remark-lint-mdx-jsx-unique-attribute-name", - "remark-lint-media-style", - "remark-lint-no-duplicate-defined-urls", - "remark-lint-no-duplicate-headings-in-section", - "remark-lint-no-empty-url", - "remark-lint-no-heading-like-paragraph", - "remark-lint-no-hidden-table-cell", - "remark-lint-no-html", - "remark-lint-no-paragraph-content-indent", - "remark-lint-no-reference-like-url", - "remark-lint-no-unneeded-full-reference-image", - "remark-lint-no-unneeded-full-reference-link", - "retext-preset-wooorm", - "wooorm", - "autolinker", - "caseless", - "aws-sign2", - "oauth-sign", - "tunnel-agent", - "forever-agent", - "har-validator", - "is-typedarray", - "http-signature", - "taper", - "karma-cli", - "stealthy-require", - "request-promise-core", - "thenable", - "index.js", - "@typescript-eslint/eslint-plugin-tslint", - "@typescript/analyze-trace", - "eslint-plugin-typescript", - "micro-memoize", - "ResizeObserver", - "path-parse", - "supports-preserve-symlinks-flag", - "copy-dir", - "adjust-sourcemap-loader", - "cls-hooked", - "myrmidon", - "conventional-changelog-eslint", - "eslint-config-incredible", - "eslint-plugin-censor", - "eslint-plugin-no-secrets", - "eslint-plugin-scanjs-rules", - "fatum", - "node-package-tester", - "semantic-release-telegram", - "vesta", - "documentate", - "autodocumentate", - "ewma", - "spdy", - "restify-errors", - "escape-regexp-component", - "watershed", - "restify-clients", - "autocannon-compare", - "DTrace", - "quit", - "shutdown", - "sigterm", - "sigint", - "terminate", - "kill", - "NoSQL", - "reql", - "query language", - "leak", - "deep-copy", - "fast-copy", - "fastest-json-copy", - "nano-copy", - "plain-object-clone", - "deep-clone", - "deepclone", - "deepcopy", - "performant", - "fastclone", - "fastcopy", - "fast-clone", - "fast-deep-clone", - "fast-deep-copy", - "package-json-from-dist", - "rm -rf", - "rm -fr", - "prebuild", - "run-script-os", - "targetpractice", - "Automation", - "mouse", - "pixel", - "recognition", - "autohotkey", - "machine", - "learning", - "@mermaid-js/mermaid-cli", - "@shikijs/vitepress-twoslash", - "@vue/language-server", - "acorn-import-assertions", - "date-time", - "flru", - "npm-audit-resolver", - "wasm-pack", - "bundling", - "rollup-plugin", - "js-cleanup", - "rollup-plugin-jsx", - "sourcemap-validator", - "removal", - "@types/d3-drag", - "@types", - "commenting", - "package-name-regex", - "spdx-expression-validate", - "spdx-satisfies", - "gulp-conventional-changelog", - "rollup-plugin-prettier", - "rollup-plugin-strip-banner", - "browserify-fs", - "buffer-es6", - "process-es6", - "sourceMappingURL", - "@types/find-cache-dir", - "@types/graphlib", - "graphlib", - "rollup-plugin-re", - "@types/d3-array", - "@types/d3-color", - "@types/d3-force", - "@types/d3-hierarchy", - "@types/d3-scale", - "@types/d3-shape", - "visualizer", - "treemap", - "sunburst", - "diagram", - "@ampproject/toolbox-optimizer", - "@babel/plugin-syntax-bigint", - "@capsizecss/metrics", - "@edge-runtime/cookies", - "@edge-runtime/ponyfill", - "@edge-runtime/primitives", - "@napi-rs/triples", - "@next/polyfill-module", - "@next/polyfill-nomodule", - "@next/react-refresh-utils", - "@next/swc", - "@taskr/clear", - "@taskr/esnext", - "@types/amphtml-validator", - "@types/babel__generator", - "@types/ci-info", - "@types/content-disposition", - "@types/express-serve-static-core", - "@types/fresh", - "@types/lodash.curry", - "@types/path-to-regexp", - "@types/platform", - "@types/send", - "@types/text-table", - "@types/ua-parser-js", - "amphtml-validator", - "async-sema", - "cli-select", - "comment-json", - "edge-runtime", - "ignore-loader", - "lodash.curry", - "native-url", - "server-only", - "string-hash", - "taskr", - "unistore", - "watchpack", - "ember-cli-progress", - "rtl", - "ltr", - "run series", - "LINQ", - "FRP", - "Reactive", - "Rx", - "RxJS", - "@angular-devkit/build-optimizer", - "@types/source-map", - "check-side-effects", - "rollup-plugin-alias", - "rollup-plugin-inject", - "tslint-etc", - "tslint-no-toplevel-property-access", - "tslint-no-unused-expression-chai", - "web-streams-polyfill", - "ReactiveX", - "ReactiveExtensions", - "Streams", - "Observables", - "Stream", - "buffer allocate", - "node security", - "uninitialized", - "mock-env", - "dist-tag", - "prepublish", - "@sailshq/lodash", - "@sailshq/router", - "captains-log", - "common-js-file-extensions", - "@sailshq/csurf", - "flaverr", - "i18n-2", - "include-all", - "machine-as-action", - "machinepack-process", - "machinepack-redis", - "merge-defaults", - "merge-dictionaries", - "parley", - "rttc", - "sails-generate", - "sails-stringfile", - "skipper", - "sort-route-addresses", - "whelk", - "machinepack-fs", - "@sailshq/request", - "root-require", - "sails-hook-orm", - "sails-hook-sockets", - "sails.io.js", - "session-file-store", - "mvc", - "web-framework", - "sailsjs", - "sails.js", - "truncate-utf8-bytes", - "mktemp", - "filename", - "parse-srcset", - "eslint-config-apostrophe", - "material-components-web", - "node-sass-glob-importer", - "markdown-model", - "bare-script", - "element-model", - "food", - "drink", - "helpful", - "opensourcesoftware", - "teaching", - "experimentation", - "applications", - "ec", - "ecdh", - "ecdsa", - "seed", - "@bazel/runfiles", - "@semantic-release/error", - "aggregate-error", - "env-ci", - "find-versions", - "git-log-parser", - "import-from-esm", - "p-each-series", - "file-url", - "mockserver-client", - "p-retry", - "stream-buffers", - "author", - "@fluentui/react-component-event-listener", - "@fluentui/react-component-ref", - "@semantic-ui-react/event-stack", - "keyboard-key", - "@artsy/fresnel", - "@babel/standalone", - "@percy/cli", - "@percy/cypress", - "anchor-js", - "babel-plugin-filter-imports", - "babel-plugin-transform-react-handled-props", - "babel-plugin-universal-import", - "chai-enzyme", - "react-ace", - "react-codesandboxer", - "react-source-render", - "react-static", - "react-static-routes", - "react-universal-component", - "satisfied", - "semantic-ui-css", - "ta-scripts", - "terser-webpack-plugin-legacy", - "eslint-config-standard-jsx", - "standard-engine", - "bikeshed", - "semicolon", - "@hapi/joi", - "eraro", - "fast-safe-stringify", - "gate-executor", - "gubu", - "jsonic", - "lodash.defaultsdeep", - "optioner", - "ordu", - "patrun", - "rolling-stats", - "seneca-transport", - "use-plugin", - "@seneca/test-plugin", - "bench", - "gex", - "lab-transform-typescript", - "seneca-entity", - "seneca-error-test", - "seneca-joi", - "seneca-promisify", - "summary", - "micro-service", - "micro-services", - "micro service", - "minimum", - "viable", - "product", - "Sentimental", - "nlp", - "wkx", - "dottie", - "sequelize-pool", - "toposort-class", - "retry-as-promised", - "ibm_db", - "mariadb", - "p-props", - "p-settle", - "node-hook", - "pg-hstore", - "chai-datetime", - "snowflake-sdk", - "@octokit/types", - "js-combinatorics", - "esdoc-standard-plugin", - "esdoc-inject-style-plugin", - "esdoc-ecmascript-proposal-plugin", - "semantic-release-fail-on-major-bump", - "db2", - "snowflake", - "object relational mapper", - "@serialport/stream", - "@serialport/binding-mock", - "@serialport/bindings-cpp", - "@serialport/parser-ready", - "@serialport/parser-regex", - "@serialport/parser-cctalk", - "@serialport/parser-readline", - "@serialport/parser-delimiter", - "@serialport/parser-byte-length", - "@serialport/parser-spacepacket", - "@serialport/parser-slip-encoder", - "@serialport/parser-packet-length", - "@serialport/parser-inter-byte-timeout", - "ccTalk", - "com port", - "COM", - "data logging", - "hardware", - "modem", - "nodebots", - "RFID", - "sensor", - "serial port", - "sms gateway", - "sms", - "UART", - "update-check", - "@zeit/schemas", - "is-port-reachable", - "@vercel/style-guide", - "@types/serve-handler", - "temp-path", - "favicon", - "@serverless/utils", - "@commitlint/cz-commitlint", - "@serverless/test", - "serverless", - "serverless plugins", - "aws lambda", - "amazon web services", - "serverless.com", - "@aws-cdk/aws-lambda-python-alpha", - "@aws-sdk/client-dynamodb", - "@aws-sdk/client-eventbridge", - "@aws-sdk/client-lambda", - "@aws-sdk/client-sns", - "@aws-sdk/client-sqs", - "@aws-sdk/client-sts", - "@aws-sdk/lib-dynamodb", - "@aws-sdk/util-dynamodb", - "aws-cdk-lib", - "aws-iot-device-sdk", - "caporal", - "json-format-highlight", - "@types/aws-iot-device-sdk", - "@types/aws4", - "esbuild-runner", - "jsii", - "jsii-diff", - "jsii-docgen", - "jsii-pacmak", - "eventbridge", - "flow-remove-types", - "isequalwith", - "@img/colour", - "emnapi", - "exif-reader", - "@cpplint/cli", - "@emnapi/runtime", - "@img/sharp-libvips-dev", - "@img/sharp-libvips-win32-x64", - "@img/sharp-libvips-dev-wasm32", - "@img/sharp-libvips-win32-ia32", - "@img/sharp-libvips-win32-arm64", - "dzi", - "thumbnail", - "libvips", - "vips", - "quote", - "shelljs-changelog", - "shelljs-release", - "travis-check-changes", - "makefile", - "clean-publish", - "short", - "tiny", - "bitly", - "shorten", - "tinyid", - "should-equal", - "should-format", - "should-type", - "should-type-adaptors", - "should-util", - "eslint-config-shouldjs", - "grunt-endline", - "quiet-grunt", - "semver-sort", - "shelljs-plugin-open", - "transforms", - "@kwsites/file-exists", - "@kwsites/promise-deferred", - "@kwsites/promise-result", - "@simple-git/babel-config", - "source control", - "custom-event", - "js-correct-lockfile", - "rollup-plugin-analyzer", - "eslint-config-important-stuff", - "@sinonjs/samsam", - "@sinonjs/eslint-plugin-no-prototype-methods", - "@studio/changes", - "esbuild-plugin-istanbul", - "clock", - "vendor", - "mocks-and-spies", - "crypt3", - "fs-ext", - "express-json5", - "render-readme", - "sinopia-htpasswd", - "browserify-handlebars", - "@polka/url", - "totalist", - "bytes-iec", - "nanospinner", - "budget", - "performance budget", - "file size", - "directory size", - "get size", - "qpass", - "amazon-cognito-identity-js", - "basic-node-server", - "skapi", - "seperator", - "is-fullwidth-code-point", - "random-item", - "get-folder-size", - "js-extend", - "math-sum", - "prettier-bytes", - "tablify", - "slow", - "github-changes", - "urlify", - "standard-json", - "pretty output", - "snazzy standard", - "standard pretty", - "stylish for standard", - "stylish formatter", - "stylish reporter", - "stylish standard", - "axios-ntlm", - "xml-crypto", - "@types/sax", - "base64id", - "socket.io-adapter", - "io", - "@socket.io/component-emitter", - "eventsource", - "sockjs", - "separated", - "@anvilco/apollo-server-plugin-introspection-metadata", - "@graphql-tools/load-files", - "@graphql-tools/merge", - "@graphql-tools/utils", - "graphql-scalars", - "json-stringify-pretty-compact", - "microfiber", - "bdd-lazy-var", - "introspection", - "introspection-query", - "string-to-stream", - "binary-split", - "callback-stream", - "gulp-benchmark", - "imageinfo", - "prettydiff", - "sprity-css", - "sprity-lwip", - "object-stream", - "through2-spy", - "sprites", - "coordinates", - "css-sprite", - "asn1", - "bcrypt-pbkdf", - "integrity", - "subresource integrity", - "sri", - "sri hash", - "sri string", - "sri generator", - "encrypt", - "st", - "firestore", - "shuruhatik", - "long-stack-traces", - "version-guard", - "run-parallel-limit", - "conventional-changelog-config-spec", - "dotgitignore", - "stringify-package", - "std-mocks", - "recommended", - "check-more-types", - "lazy-ass", - "ban-sensitive-files", - "deps-ok", - "dont-crack", - "git-issues", - "pre-git", - "simple-commit-message", - "winser", - "modern-syslog", - "etsy", - "metric", - "aggregation", - "@vitest/expect", - "@storybook/global", - "store2", - "exsolve", - "empathic", - "picoquery", - "modern-tar", - "fetch-retry", - "@types/npmlog", - "@vitest/utils", - "launch-editor", - "unique-string", - "@vitest/mocker", - "bundle-require", - "flush-promises", - "@yarnpkg/libzip", - "browser-dtector", - "react-inspector", - "@react-aria/tabs", - "deep-object-diff", - "@react-aria/utils", - "@polka/compression", - "@types/detect-port", - "@ngard/tiny-isequal", - "@react-aria/toolbar", - "@react-stately/tabs", - "@react-types/shared", - "@storybook/docs-mdx", - "get-npm-tarball-url", - "use-resize-observer", - "@radix-ui/react-slot", - "@react-aria/landmark", - "@react-aria/overlays", - "@types/pretty-hrtime", - "@discoveryjs/json-ext", - "lazy-universal-dotenv", - "react-transition-state", - "@react-stately/overlays", - "@react-aria/interactions", - "react-syntax-highlighter", - "@radix-ui/react-scroll-area", - "@devtools-ds/object-inspector", - "@types/react-syntax-highlighter", - "@aw-web-design/x-default-browser", - "@fal-works/esbuild-plugin-global-externals", - "design-systems", - "component-testing", - "@glen/jest-raw-loader", - "@storybook/addon-onboarding", - "@storybook/addon-storyshots", - "@storybook/addon-storyshots-puppeteer", - "@storybook/blocks", - "@storybook/test", - "eslint-config-torchbox", - "storybookjs", - "patternlab", - "django", - "django-pattern-library", - "django-templates", - "jinja2", - "findit2", - "inside", - "funsert", - "into-stream", - "Assert", - "music-metadata", - "livestream", - "livestreaming", - "gulp-rimraf", - "string.js", - "stringjs", - "S", - "s", - "codsen-utils", - "ranges-apply", - "ranges-push", - "string-left-right", - "ast-monkey-traverse", - "ranges-invert", - "jsp", - "mixed", - "stri", - "xhtml", - "get-east-asian-width", - "visual", - "columns", - "fullwidth", - "full-width", - "wcswidth", - "full", - "cjk", - "chinese", - "japanese", - "korean", - "fixed-width", - "east-asian-width", - "undici-types", - "payment processing", - "credit cards", - "generator-loopback", - "loopback-sdk-angular-cli", - "nodefly-register", - "strong-agent", - "strong-arc", - "strong-build", - "strong-deploy", - "strong-mesh-models", - "strong-registry", - "strong-start", - "strong-supervisor", - "core-util-is", - "strong-debugger", - "strong-swagger-ui", - "swagger-ui", - "utf-8-validate", - "LoopBack", - "Platform", - "alerts", - "event loop", - "heroku", - "master", - "metrics", - "nodeops", - "npmrc", - "openshift", - "ops", - "pm", - "response", - "slc", - "slowest functions", - "strong-cli", - "strong-cluster-control", - "strongops", - "upstart", - "@bundled-es-modules/deepmerge", - "@bundled-es-modules/glob", - "@bundled-es-modules/memfs", - "@zip.js/zip.js", - "path-unified", - "@esm-bundle/chai-as-promised", - "@rollup/browser", - "@shoelace-style/shoelace", - "@web/test-runner-commands", - "hanbi", - "jsdoc-escape-at", - "jsdoc-tsimport-plugin", - "starlight-links-validator", - "style dictionary", - "dictionary", - "Android", - "@types/stylis", - "css-to-react-native", - "@types/js-beautify", - "@types/react-frame-component", - "@types/shallowequal", - "react-frame-component", - "stylis-plugin-rtl", - "ts-toolbelt", - "stylis-rule-sheet", - "zeit", - "hack", - "hacks", - "globjoin", - "mathml-tag-names", - "svg-tags", - "@changesets/get-github-info", - "@stylelint/prettier-config", - "@stylelint/remark-preset", - "@types/balanced-match", - "@types/file-entry-cache", - "@types/global-modules", - "@types/globjoin", - "@types/imurmurhash", - "@types/postcss-less", - "@types/svg-tags", - "eslint-config-stylelint", - "jest-preset-stylelint", - "postcss-sass", - "stylelint-config", - "shortcss", - "css-values", - "babel-register-ts", - "stylelint-plugin", - "delaration-strict-value", - "keyword", - "z-index", - "postcss-sorting", - "eslint-config-hudochenkov", - "postcss-styled-syntax", - "prettier-config-hudochenkov", - "postcss-media-query-parser", - "postcss-resolve-nested-selector", - "github-contributors-list", - "bootstrap-styl", - "cookiejar", - "should-http", - "tinyify", - "frisbee", - "super", - "promised", - "supports", - "capability", - "truecolor", - "16m", - "esrap", - "zimmerframe", - "@types/sade", - "vscode-languageserver", - "vscode-languageserver-protocol", - "svelte2tsx", - "svelte-language-server", - "@kiwi/eslint-config", - "@kiwi/prettier-config", - "@types/pug", - "postcss-easy-import", - "prettysize", - "@resvg/resvg-js", - "playwright-chromium", - "eslint-plugin-jest-formatting", - "sw-precache", - "git-release-notes", - "precache", - "tape-promise", - "autogen", - "promise.any", - "multilang-extract-comments", - "@readme/eslint-config", - "readmeio", - "swagger-nestjs", - "swagger-templates", - "swagger UI", - "istanbul-badges-readme", - "nodelint", - "still", - "mocha-phantomjs", - "travis-cov", - "jinja", - "swipe", - "framework7", - "gallery", - "slideshow", - "http-response-object", - "sync-rpc", - "then-request", - "flowgen2", - "system information", - "sysinfo", - "freebsd", - "openbsd", - "netbsd", - "cpu", - "cpuload", - "physical cores", - "logical cores", - "cores", - "socket type", - "fsstats", - "diskio", - "block devices", - "netstats", - "network interfaces", - "network connections", - "network stats", - "iface", - "printer", - "processes", - "users", - "internet", - "battery", - "docker stats", - "docker processes", - "graphic card", - "graphic controller", - "gpu", - "smart", - "disk layout", - "audio", - "bluetooth", - "wifi", - "wifinetworks", - "virtual box", - "virtualbox", - "vm", - "BIOS", - "chassis", - "symbol-es6", - "@jsenv/file-size-impact", - "construct-style-sheets-polyfill", - "hase", - "draht", - "limes", - "lusca", - "partof", - "timer2", - "uuidv4", - "crypto2", - "nocache", - "datasette", - "json-lines", - "processenv", - "stethoskop", - "flaschenpost", - "commands-events", - "nodeenv", - "roboter", - "assertthat", - "json-lines-client", - "cqs", - "cqrs", - "@codspeed/vitest-plugin", - "className", - "classList", - "override", - "@tailwindcss/oxide", - "@tapjs/after", - "@tapjs/after-each", - "@tapjs/asserts", - "@tapjs/before", - "@tapjs/before-each", - "@tapjs/chdir", - "@tapjs/core", - "@tapjs/filter", - "@tapjs/fixture", - "@tapjs/intercept", - "@tapjs/mock", - "@tapjs/node-serialize", - "@tapjs/run", - "@tapjs/snapshot", - "@tapjs/spawn", - "@tapjs/stdin", - "@tapjs/test", - "@tapjs/typescript", - "@tapjs/worker", - "resolve-import", - "tapjs", - "tapjs plugin", - "tap-out", - "tapes", - "@ljharb/resumer", - "@ljharb/through", - "array.prototype.every", - "dotignore", - "has-dynamic-import", - "ecstatic", - "npm-run-posix-or-windows", - "harness", - "chownr", - "yallist", - "@isaacs/fs-minipass", - "chmodr", - "events-to-array", - "brittle", - "b4a", - "streamx", - "fast-fifo", - "actor system", - "DDD", - "actor-system", - "front end", - "back end", - "@parcel/packager-ts", - "@parcel/transformer-typescript-types", - "cz-format-extension", - "telegram", - "telegram-api", - "telegram-client-api", - "tdlib", - "tglib", - "node-addon", - "tempdir", - "tmpfile", - "unique", - "seventh", - "lazyness", - "tree-kit", - "chroma-js", - "string-kit", - "nextgen-events", - "@cronvel/get-pixels", - "256 colors", - "true color", - "input field", - "gpm", - "screenbuffer", - "textbuffer", - "32-bit", - "charm", - "resumer", - "visualwidth", - "80s", - "ibm", - "@jridgewell/source-map", - "@ls-lint/ls-lint", - "astring", - "es8", - "@types/uglify-js", - "@test-runner/core", - "@test-runner/default-view", - "@test-runner/live-view", - "@test-runner/oneline-view", - "@test-runner/tom", - "multiline-ts", - "spawn-process", - "only-allow", - "sinon-assert-stub", - "sinon-mocha-test", - "unlinted", - "example", - "@devexpress/bin-v8-flags-filter", - "@devexpress/callsite-record", - "bowser", - "chrome-remote-interface", - "device-specs", - "elegant-spinner", - "get-os-info", - "import-lazy", - "is-podman", - "log-update-async-hook", - "moment-duration-format-commonjs", - "os-family", - "pinkie", - "promisify-event", - "read-file-relative", - "replicator", - "testcafe-browser-tools", - "testcafe-hammerhead", - "testcafe-legacy-api", - "testcafe-reporter-json", - "testcafe-reporter-list", - "testcafe-reporter-minimal", - "testcafe-reporter-spec", - "testcafe-reporter-xunit", - "testcafe-selector-generator", - "time-limit-promise", - "unquote", - "url-to-options", - "@devexpress/gulp-qunit-harness", - "@ffprobe-installer/ffprobe", - "@testcafe/publish-please", - "@types/callsite", - "@types/dedent", - "@types/useragent", - "browserstack-connector", - "caller", - "dom-walk", - "eslint-plugin-hammerhead", - "express-ntlm", - "gulp-clone", - "gulp-ll-next", - "gulp-mocha-simple", - "gulp-step", - "mocha-reporter-spec-with-retries", - "openssl-self-signed-certificate", - "recursive-copy", - "testcafe-browser-provider-browserstack", - "automated", - "QA", - "@types/dockerode", - "docker-compose", - "properties-reader", - "ssh-remote-port-forward", - "@types/async-lock", - "@types/properties-reader", - "@types/tar-fs", - "stringify-object-es5", - "codeclimate-test-reporter", - "cross-conf-env", - "headerify", - "is-number", - "teenytest", - "teenytest-promise", - "test double", - "fireworm", - "printf", - "spawn-args", - "styled_string", - "bluebird-retry", - "chai-shallow-deep-equal", - "saucie", - "eslint-config-mdcs", - "jpeg-js", - "three.js", - "3d", - "virtual-reality", - "augmented-reality", - "webgl", - "webgl2", - "webaudio", - "webgpu", - "webxr", - "get-port-cli", - "node-stdlib-browser", - "user-streams", - "hundreds", - "polendina", - "stream-spigot", - "streams2", - "unexpand", - "homedir", - "tilde", - "collapse", - "number-is-nan", - "profile", - "stats", - "bee-dnd", - "bee-tag", - "bee-form", - "bee-icon", - "bee-rate", - "bee-step", - "bee-tabs", - "bee-tile", - "bee-tree", - "bee-affix", - "bee-alert", - "bee-badge", - "bee-label", - "bee-menus", - "bee-modal", - "bee-panel", - "bee-radio", - "bee-table", - "bee-anchor", - "bee-button", - "bee-drawer", - "bee-layout", - "bee-locale", - "bee-navbar", - "bee-select", - "bee-slider", - "bee-switch", - "bee-upload", - "bee-animate", - "bee-backtop", - "bee-loading", - "bee-message", - "bee-overlay", - "bee-popover", - "bee-svgicon", - "bee-tooltip", - "bee-calendar", - "bee-carousel", - "bee-cascader", - "bee-checkbox", - "bee-collapse", - "bee-dropdown", - "bee-timeline", - "bee-transfer", - "bee-clipboard", - "bee-breadcrumb", - "bee-datepicker", - "bee-form-group", - "bee-pagination", - "bee-popconfirm", - "bee-timepicker", - "bee-transition", - "bee-colorpicker", - "bee-input-group", - "bee-page-layout", - "bee-tree-select", - "bee-autocomplete", - "bee-button-group", - "bee-complex-grid", - "bee-form-control", - "bee-input-number", - "bee-notification", - "bee-progress-bar", - "bee-search-panel", - "bee-loading-state", - "bee-input-group-addon", - "gulp-cleancss", - "gulp-css-wrap", - "tinper-bee-core", - "less-plugin-inline-urls", - "tinper", - "bee", - "tinylibs", - "@deno/shim-deno-test", - "tinycolor", - "worker threads", - "thread pool", - "method", - "@types/react-native-vector-icons", - "pushalert", - "react-native toast", - "react-native-toastify", - "toastify", - "react-native-notification", - "expo", - "Typescript", - "node-resemble-js", - "processmd", - "of", - "tldts", - "set-cookie", - "RFC6265", - "RFC2965", - "tinytim", - "trace", - "typedarray.prototype.slice", - "forEach", - "html-select", - "html-tokenize", - "aggregate", - "bs-logger", - "make-error", - "babel-preset-es2016", - "typescript-loader", - "migrate", - "migration", - "migrations", - "cli-tool", - "@ts-morph/common", - "code-block-writer", - "static analysis", - "code refactor", - "create-require", - "@tsconfig/node10", - "@tsconfig/node12", - "@tsconfig/node14", - "v8-compile-cache-lib", - "@cspotcode/source-map-support", - "dprint", - "@swc/wasm", - "ntypescript", - "util.promisify", - "fast-json-patch", - "omit-deep", - "power-assign", - "bre", - "rete", - "rule engine", - "rules engine", - "javascript rule engine", - "js rule engine", - "inference system", - "@types/strip-bom", - "@tsd/typescript", - "eslint-config-xo-typescript", - "typedefs", - "typedefinitions", - "jsonc-simple-parser", - "polite-json", - "sync-content", - "Microsoft", - "codelyzer", - "tslint-divid", - "@types/make-dir", - "tslint-immutable", - "tslint-misc-rules", - "tslint-microsoft-contrib", - "tslint-consistent-codestyle", - "ts-lint", - "typescript-tslint-plugin", - "fix-dts-default-cjs-exports", - "joycon", - "ts-essentials", - "typescript runner", - "@mixmark-io/domino", - "turndown-attendant", - "grunt-mocha", - "grunt-markdown", - "grunt-component-io", - "grunt-push-release", - "grunt-regex-replace", - "jshint-path-reporter", - "mocha-unfunk-reporter", - "grunt-concat-sourcemap", - "tap-browser-color", - "tweetnacl-util", - "curve25519", - "ed25519", - "nacl", - "poly1305", - "public", - "salsa20", - "signatures", - "twemoji-parser", - "DOM", - "Twitter", - "type-coverage-core", - "tagged-tag", - "@typescript/vfs", - "generics", - "media-typer", - "checking", - "@gerrit0/mini-shiki", - "@material/material-color-utilities", - "typedoc-theme", - "typedoc-plugin", - "material-design", - "material-3", - "typedocplugin", - "JsDocs", - "cli-prompt", - "concatenate", - "ebook", - "pandoc", - "kindlegen", - "latex", - "@types/mongoose", - "mongodb-memory-server-global", - "mongoose-findorcreate", - "prettier-tslint", - "sql-highlight", - "@sqltools/formatter", - "gulpclass", - "@types/sha.js", - "@sap/hana-client", - "@types/gulp-rename", - "standard-changelog", - "@google-cloud/spanner", - "@types/gulp-sourcemaps", - "@dprint/formatter", - "@esfx/canceltoken", - "@dprint/typescript", - "azure-devops-node-api", - "monocart-coverage-reports", - "mocha-fivemat-progress-reporter", - "eslint-formatter-autolinkable-stylish", - "commandpost", - "@types/power-assert", - "intelli-espower-loader", - "@types/postcss-modules-local-by-default", - "@types/postcss-modules-scope", - "@types/icss-utils", - "@types/postcss-modules-extract-imports", - "@types/reserved-words", - "jest-environment-node-single-context", - "postcss-import-sync2", - "sass-svg", - "promise-finally", - "typings-core", - "tslint-config-standard", - "definition", - "ecma", - "jsmin", - "random-bytes", - "@uiw/formatter", - "@uiw/react-affix", - "@uiw/react-alert", - "@uiw/react-auto-link", - "@uiw/react-avatar", - "@uiw/react-back-top", - "@uiw/react-badge", - "@uiw/react-breadcrumb", - "@uiw/react-button-group", - "@uiw/react-calendar", - "@uiw/react-card", - "@uiw/react-carousel", - "@uiw/react-cascader", - "@uiw/react-checkbox", - "@uiw/react-collapse", - "@uiw/react-copy-to-clipboard", - "@uiw/react-date-input", - "@uiw/react-date-picker", - "@uiw/react-descriptions", - "@uiw/react-divider", - "@uiw/react-drawer", - "@uiw/react-dropdown", - "@uiw/react-empty", - "@uiw/react-file-input", - "@uiw/react-form", - "@uiw/react-grid", - "@uiw/react-layout", - "@uiw/react-list", - "@uiw/react-loader", - "@uiw/react-menu", - "@uiw/react-message", - "@uiw/react-modal", - "@uiw/react-month-picker", - "@uiw/react-notify", - "@uiw/react-pagination", - "@uiw/react-pin-code", - "@uiw/react-popover", - "@uiw/react-portal", - "@uiw/react-progress", - "@uiw/react-radio", - "@uiw/react-rate", - "@uiw/react-search-select", - "@uiw/react-search-tree", - "@uiw/react-select", - "@uiw/react-slider", - "@uiw/react-split", - "@uiw/react-steps", - "@uiw/react-switch", - "@uiw/react-table", - "@uiw/react-tabs", - "@uiw/react-tag", - "@uiw/react-textarea", - "@uiw/react-time-picker", - "@uiw/react-tooltip", - "@uiw/react-transfer", - "@uiw/react-tree", - "@uiw/react-tree-checked", - "media-query-fns", - "parsel-js", - "citty", - "hookable", - "mkdist", - "untyped", - "pretty-bytes-cli", - "browserify-header", - "@metcoder95/https-pem", - "dns-packet", - "jsondiffpatch", - "bail", - "trough", - "@types/extend", - "retext", - "unique-random", - "non-repeating", - "unist-util", - "xast", - "nlcst", - "visit", - "pullstream", - "match-stream", - "uncompress", - "pupa", - "is-npm", - "fixture-stdout", - "notifier", - "urn", - "uri mutation", - "url mutation", - "uri manipulation", - "url manipulation", - "uri template", - "url template", - "unified resource locator", - "unified resource identifier", - "query string", - "RFC 3986", - "RFC3986", - "RFC 6570", - "RFC6570", - "jquery-plugin", - "ecosystem:jquery", - "sauce-browsers", - "sauce-test", - "formstream", - "ylru", - "@eggjs/oxlint-config", - "@tsconfig/node18", - "@types/busboy", - "@types/proxy", - "@types/selfsigned", - "string.prototype.towellformed", - "urlopen", - "userprofile", - "yamlparser", - "browserscope", - "ua", - "ua-parse", - "ua-parser", - "user agent", - "user-agent", - "is-generator-function", - "is-typed-array", - "is-async-supported", - "rfc9562", - "bundt", - "diffs", - "find-parent-dir", - "githook", - "sanitisation", - "sanitise", - "@vue/shared", - "@vant/use", - "@vant/popperjs", - "@vue/runtime-core", - "diffable-html", - "vitest-canvas-mock", - "@vant/area-data", - "@vant/cli", - "@vant/eslint-config", - "@vant/icons", - "@vercel/go", - "@vercel/h3", - "@vercel/fun", - "@vercel/koa", - "@vercel/blob", - "@vercel/hono", - "@vercel/next", - "@vercel/node", - "@vercel/ruby", - "@vercel/rust", - "@vercel/elysia", - "@vercel/nestjs", - "@vercel/python", - "@vercel/express", - "@vercel/fastify", - "@vercel/redwood", - "@vercel/backends", - "@vercel/hydrogen", - "@vercel/build-utils", - "@vercel/detect-agent", - "@vercel/static-build", - "@vercel/remix-builder", - "epipebomb", - "promisepipe", - "@sentry/node", - "@types/title", - "jaro-winkler", - "@types/chance", - "@types/dotenv", - "@vercel/client", - "pcre-to-regexp", - "git-last-commit", - "@inquirer/search", - "@tootallnate/once", - "http-proxy-node16", - "@inquirer/checkbox", - "@inquirer/password", - "@vercel/frameworks", - "@vercel/error-utils", - "line-async-iterator", - "@vercel/fs-detectors", - "@types/load-json-file", - "@vercel/routing-utils", - "@types/npm-package-arg", - "@types/write-json-file", - "@vercel-internals/types", - "@edge-runtime/node-utils", - "json-parse-better-errors", - "@types/jest-expect-message", - "@vercel-internals/constants", - "@alex_neo/jest-expect-message", - "@types/json-parse-better-errors", - "@vercel-internals/get-package-json", - "extsprintf", - "err", - "create-banner", - "postcss-header", - "viewer", - "viewer.js", - "teex", - "remove-trailing-separator", - "fs-mkdirp-stream", - "is-valid-glob", - "lead", - "resolve-options", - "stream-composer", - "to-through", - "value-or-function", - "vinyl-sourcemap", - "vinyl-adapter", - "classic", - "browser-split", - "ev-store", - "x-is-array", - "x-is-string", - "run-browser", - "vtree", - "artichokie", - "periscopic", - "http-proxy-3", - "strip-literal", - "es-module-lexer", - "postcss-modules", - "@oxc-project/types", - "host-validation-middleware", - "dev-server", - "build-tool", - "dotenv-local", - "slash-path", - "vite-plugin-builder", - "api-router", - "api-routers", - "vite-plugin-api", - "vite-plugin-rest-api", - "express-router", - "file-system-based", - "rest-api", - "api-rest", - "Remix", - "Next.js", - "focus-trap", - "@shikijs/core", - "@shikijs/types", - "@vue/devtools-api", - "@vueuse/integrations", - "@iconify-json/simple-icons", - "@iconify/utils", - "@mdit-vue/shared", - "@mdit-vue/plugin-sfc", - "@mdit-vue/plugin-toc", - "markdown-it-mathjax3", - "@mdit-vue/plugin-title", - "@mdit-vue/plugin-headers", - "@types/markdown-it-emoji", - "@mdit-vue/plugin-component", - "@mdit-vue/plugin-frontmatter", - "@types/markdown-it-container", - "@types/postcss-prefix-selector", - "tinyrainbow", - "@vitest/runner", - "@vitest/snapshot", - "why-is-node-running", - "@vitest/pretty-format", - "birpc", - "local-pkg", - "@edge-runtime/vm", - "@antfu/install-pkg", - "node-localstorage", - "gulp-xo", - "vorpal-less", - "vorpal-repl", - "load-plugins", - "eyes", - "BDD", - "keytar", - "parse-semver", - "typed-rest-client", - "@types/read", - "@types/yazl", - "@types/cheerio", - "@types/url-join", - "@types/clone", - "@types/iconv-lite", - "vscode-oniguruma", - "@vue/runtime-dom", - "eslint-plugin-vue-libs", - "@babel/plugin-syntax-pipeline-operator", - "@intlify/shared", - "@intlify/core-base", - "@intlify/devtools-types", - "intlify", - "@intlify/vue-i18n-loader", - "@types/mini-css-extract-plugin", - "@types/webpack-merge", - "cache-loader", - "markdown-loader", - "pug-plain-loader", - "@vue-macros/common", - "ast-walker-scope", - "muggle-string", - "unplugin-utils", - "@pinia/colada", - "@types/nightwatch", - "@vue/language-core", - "chromedriver", - "faked-promise", - "nightwatch-helpers", - "de-indent", - "todomvc-app-css", - "foreachasync", - "sys", - "walkSync", - "exec-sh", - "outpipe", - "win-spawn", - "encrypted-attr", - "lodash.issafeinteger", - "waterline-schema", - "waterline-utils", - "active-record", - "vargs", - "bdd-with-opts", - "gulp-debug", - "mu2", - "promise-simple", - "sauce-connect-launcher", - "spawn-mocha-parallel", - "sv-selenium", - "web3-eth", - "web3-net", - "web3-core", - "web3-types", - "web3-utils", - "web3-errors", - "web3-eth-abi", - "web3-eth-ens", - "web3-eth-iban", - "web3-validator", - "web3-rpc-methods", - "web3-eth-accounts", - "web3-eth-contract", - "web3-eth-personal", - "web3-providers-ws", - "web3-rpc-providers", - "web3-providers-http", - "in3", - "ganache", - "web3-providers-ipc", - "eslint-config-base-web3", - "@truffle/hdwallet-provider", - "Ethereum", - "@solana/spl-token", - "@solana/web3.js", - "kva-email-service", - "micro-ed25519-hdkey", - "ssl-http-with-docker", - "tailwind-animation-extension", - "telegram-assistant", - "web3-react-task", - "sol", - "@webassemblyjs/ast", - "@webassemblyjs/wasm-edit", - "@webassemblyjs/wasm-parser", - "acorn-import-phases", - "chrome-trace-event", - "@codspeed/core", - "@types/neo-async", - "@types/xxhashjs", - "assemblyscript", - "bundle-loader", - "coffee-loader", - "hash-wasm", - "meriyah", - "rehype-sanitize", - "wast-loader", - "webassembly-feature", - "xxhashjs", - "lodash.partial", - "eslint-config-th0r", - "postcss-icss-values", - "@carrotsearch/foamtree", - "eslint-config-th0r-react", - "analyzer", - "chart", - "zoomable", - "@webpack-cli/info", - "@webpack-cli/configtest", - "@types/envinfo", - "@fastify/express", - "@types/on-finished", - "@types/sockjs", - "@types/bonjour", - "bonjour-service", - "@types/serve-index", - "@types/serve-static", - "ansi-html-community", - "@types/connect-history-api-fallback", - "klona", - "@types/sockjs-client", - "reloading", - "hot-reloading", - "@types/webpack-sources", - "eslint-config-shellscape", - "prettier-plugin-package", - "dts-cli", - "@types/flat", - "externals", - "typedarray-to-buffer", - "yaeti", - "networking", - "comet", - "RFC-6455", - "@silentbot1/nat-api", - "@thaunknown/simple-peer", - "@webtorrent/http-node", - "addr-to-ip-port", - "bitfield", - "bittorrent-dht", - "bittorrent-protocol", - "cache-chunk-store", - "chunk-store-iterator", - "cpus", - "create-torrent", - "cross-fetch-ponyfill", - "fs-chunk-store", - "fsa-chunk-store", - "immediate-chunk-store", - "join-async-iterator", - "load-ip-set", - "lt_donthave", - "memory-chunk-store", - "parse-torrent", - "random-iterate", - "speed-limiter", - "throughput", - "torrent-discovery", - "torrent-piece", - "uint8-util", - "unordered-array-remove", - "ut_metadata", - "ut_pex", - "@webtorrent/semantic-release-config", - "airtap-manual", - "airtap-system", - "bittorrent-tracker", - "chrome-net", - "disc", - "network-address", - "path-esm", - "webtorrent-fixtures", - "bittorrent", - "bittorrent client", - "mad science", - "p2p", - "peer-to-peer", - "peers", - "swarm", - "torrent", - "web torrent", - "webrtc data", - "web worker", - "a gogo", - "url-search-params", - "poly", - "buster", - "exorcist", - "microtime", - "cujo", - "Promises/A+", - "isexe", - "taffydb", - "unit.js", - "@dabh/diagnostics", - "logform", - "one-time", - "@dabh/eslint-config-populist", - "abstract-winston-transport", - "cross-spawn-async", - "hock", - "winston-compat", - "file-stream-rotator", - "@alcalzone/release-script", - "@alcalzone/release-script-plugin-license", - "daily-rotate-file", - "log-rotate", - "logrotate", - "winston3", - "bower-config", - "propprop", - "wiredep-cli", - "break", - "carriage", - "new-line", - "newline", - "return", - "soft", - "workbox-build", - "workbox", - "workboxjs", - "service worker", - "fetch requests", - "offline", - "file manifest", - "wordbreak", - "linewrap", - "writeFile", - "atomic", - "HyBi", - "Push", - "WebSocket", - "WebSockets", - "enstore", - "x-ray-crawler", - "x-ray-parse", - "scrape", - "is-function", - "parse-headers", - "ssf", - "wmf", - "crc-32", - "adler-32", - "codepage", - "fflate", - "exit-on-epipe", - "@sheetjs/uglify-js", - "markdown-spellcheck", - "xlsb", - "dbf", - "dif", - "sylk", - "cash-cat", - "codacy-coverage", - "globify", - "jsonpath", - "unminified-webpack-plugin", - "XML", - "cdata", - "CDATA", - "doctype", - "processing instruction", - "Javascript", - "transforming", - "convertor", - "converting", - "conversion", - "node-expat", - "dom-js", - "xmltest", - "DOMParser", - "XMLSerializer", - "find-cache-directory", - "func-xml", - "@babel/plugin-proposal-unicode-property-regex", - "@unicode/unicode-14.0.0", - "babel-plugin-array-includes", - "babel-plugin-transform-xregexp", - "unicode-property-value-aliases", - "regular expression", - "whitelist", - "@scion-scxml/test-framework", - "statechart", - "state machine", - "finite state machine", - "finite automata", - "scxml", - "interpreter", - "@types/deep-equal", - "@types/express-ws", - "@types/utf8", - "xterm-benchmark", - "terminal-emulator", - "jest-ts-webcompat-resolver", - "YAML", - "yaml2json", - "json2yaml", - "browserslist-generator", - "yargs-test-extends", - "babel-plugin-transform-inline-imports-commonjs", - "death", - "loud-rejection", - "repeating", - "request-capture-har", - "roadrunner", - "babel-preset-es2015-node4", - "babel-preset-node5", - "eslint-config-fb-strict", - "eslint-config-kittens", - "eslint-plugin-flow-vars", - "eslint-plugin-no-async-without-await", - "@yeoman/adapter", - "@yeoman/conflicter", - "@yeoman/namespace", - "@yeoman/transform", - "@yeoman/types", - "fly-import", - "grouped-queue", - "mem-fs", - "mem-fs-editor", - "which-package-manager", - "@yeoman/eslint", - "esmocha", - "sinon-test", - "github-username", - "yes", - "no", - "true", - "false", - "lenient", - "cli-list", - "fullname", - "parse-help", - "root-check", - "npm-keyword", - "yeoman-doctor", - "humanize-string", - "yeoman-character", - "registry-url", - "@jonahsnider/benchmark", - "pad-component", - "cowsay", - "say", - "zeromq", - "0mq", - "ømq", - "libzmq", - "binding", - "@types/cookie-parser", - "@types/express-useragent", - "@types/morgan", - "express-useragent", - "schemas", - "runtime types", - "DSL", - "@externs/nodejs", - "@types/systemjs", - "JSON2", - "char-split", - "express-state", - "firefox-profile", - "istanbul-middleware", - "shallow-copy", - "stack-mapper", - "tap-finished", - "zuul-localtunnel", - "browzers", - "bulk-require", - "zuul-ngrok", - "@phenomnomnominal/tsquery", - "Unit Testing", - "Storybook", - "motion-dom", - "motion-utils", - "@radix-ui/react-dialog", - "@thednp/dommatrix", - "react animation", - "pose", - "react pose", - "popmotion", - "framer", - "waapi", - "belalangkayu", - "rengginangbasi", - "tehtarik3", - "sort-array", - "compute-scroll-into-view", - "@docusaurus/module-type-aliases", - "@testing-library/preact", - "babel-plugin-no-side-effect-class-properties", - "babel-preset-react-native", - "flow-coverage-report", - "get-pkg-repo", - "enhanced input", - "autosuggest", - "typeahead", - "omnibox", - "WAI-ARIA", - "multiple selection", - "focus", - "keyboards", - "mice", - "pen", - "pointer", - "pseudos", - "ring", - "textarea", - "trackpad", - "@augment-vir/core", - "@date-vir/duration", - "deepcopy-esm", - "typed-event-target", - "@web/dev-server-esbuild", - "execute-in-browser", - "istanbul-smart-text-reporter", - "runstorm", - "augment", - "vir", - "augment-vir", - "toolchain", - "JSONC", - "JSX", - "TSX", - "GraphQL", - "@commercetools-frontend/application-components", - "@commercetools-frontend/application-config", - "@commercetools-frontend/assets", - "@commercetools-frontend/babel-preset-mc-app", - "@commercetools-frontend/mc-dev-authentication", - "@commercetools-frontend/mc-html-template", - "@commercetools/http-user-agent", - "@formatjs/cli-lib", - "@rollup/plugin-graphql", - "@svgr/babel-preset", - "@types/webpack-bundle-analyzer", - "@vitejs/plugin-react-swc", - "babel-plugin-formatjs", - "graphql-request", - "moment-locales-webpack-plugin", - "svg-url-loader", - "thread-loader", - "@commercetools/composable-commerce-test-data", - "@types/moment-locales-webpack-plugin", - "@vue/cli-plugin-babel", - "@vue/cli-plugin-typescript", - "@vue/cli-service", - "eslint-plugin-prettier-vue", - "rollup-plugin-vue", - "vue 3", - "@vue/cli-plugin-unit-mocha", - "symlink-dir", - "tokenize", - "dogstatsd", - "datadog", - "telegraf", - "adr", - "decision record", - "any decision record", - "architectural decision", - "architectural decision record", - "architecture decision", - "architecture decision record", - "software quality", - "bplist-parser", - "@types/katex", - "katex", - "tex", - "hyperlink", - "@type-challenges/utils", - "deserialization", - "deserialize", - "detect-europe-js", - "is-standalone-pwa", - "ua-is-frozen", - "client-hints", - "device", - "browser-detection", - "device-detection", - "os-detection", - "bot-detection", - "ai-detection", - "app-detection", - "crawler-detection", - "youch", - "@adonisjs/ace", - "@adonisjs/env", - "parse-imports", - "@adonisjs/fold", - "@adonisjs/hash", - "@adonisjs/repl", - "youch-terminal", - "@poppinss/utils", - "@adonisjs/config", - "@adonisjs/events", - "@adonisjs/health", - "@adonisjs/logger", - "@poppinss/colors", - "@poppinss/dumper", - "@poppinss/macroable", - "@adonisjs/bodyparser", - "@adonisjs/encryption", - "@adonisjs/application", - "@adonisjs/http-server", - "error-stack-parser-es", - "argon2", - "edge.js", - "@japa/assert", - "@japa/runner", - "@japa/snapshot", - "@japa/expect-type", - "@japa/file-system", - "@adonisjs/tsconfig", - "ts-node-maintained", - "@adonisjs/assembler", - "@types/test-console", - "@adonisjs/eslint-config", - "@adonisjs/prettier-config", - "adonisjs", - "@aneuhold/core-ts-api-lib", - "@aneuhold/core-ts-lib", - "@aneuhold/local-npm-registry", - "@aneuhold/main-scripts", - "@capacitor/cli", - "@trapezedev/project", - "@types/slice-ansi", - "resources", - "splash screen", - "webOS", - "@envelop/types", - "@envelop/instrumentation", - "@whatwg-node/promise-helpers", - "@ionic/cli-framework-output", - "@angular-eslint/eslint-plugin", - "@angular-eslint/eslint-plugin-template", - "@angular-eslint/schematics", - "ng-packagr", - "docz", - "docz-utils", - "docz-theme-default", - "@asdfgertyjhnpm/nesciunt-molestias-reprehenderit-occaecati", - "@drftgyhuji7npm/rem-sint-necessitatibus-possimus", - "@drftgyhuji7npm/repellendus-eum-et-itaque", - "typeerror", - "Reflect.getPrototypeOf", - "Int8Array", - "Array", - "configurable", - "minimal", - "descriptors", - "channel", - "matchAll", - "Uint32Array", - "Array.prototype.filter", - "setter", - "Uint16Array", - "exit-code", - "isConcatSpreadable", - "weakmap", - "syntaxerror", - "sharedarraybuffer", - "Object", - "Array.prototype.flat", - "toSorted", - "typesafe", - "preserve-symlinks", - "negative zero", - "[[Prototype]]", - "tester", - "ArrayBuffer.prototype.slice", - "byteOffset", - "zero", - "ArrayBuffer#slice", - "trimRight", - "getter", - "Array.prototype.contains", - "findLastIndex", - "last", - "Int16Array", - "Int32Array", - "rangeerror", - "Float32Array", - "take", - "workspace:*", - "byteLength", - "censor", - "Symbol.toStringTag", - "operating-system", - "coercible", - "Function.prototype.name", - "gdpr", - "ArrayBuffer", - "private data", - "Object.fromEntries", - "0", - "tostringtag", - "-0", - "negative", - "Array.prototype.findLast", - "enumerable", - "toobject", - "interrupts", - "groupBy", - "handlers", - "reuse", - "Float64Array", - "group", - "some", - "collection.es6", - "sameValueZero", - "positive", - "code points", - "regular expressions", - "findLast", - "robust", - "description", - "Uint8ClampedArray", - "pnpm9", - "length", - "defineProperty", - "RegExp#flags", - "valid", - "accessor", - "@smithy/types", - "aws-lambda", - "elapsed-time-logger", - "gulp-open", - "cupertino", - "pane", - "slide", - "@pouchlab/ui", - "chai-jquery", - "corejs-typeahead", - "doiuse", - "gulp-add-src", - "gulp-cache-bust", - "gulp-check-deps", - "gulp-sass-lint", - "gulp4-run-sequence", - "is-empty-object", - "motion-ui", - "sassy-lists", - "undertaker-forward-reference", - "vinyl-named", - "handlebars-helper-rel", - "handlebars-helper-slugify", - "tinygradient", - "@bokub/prettier-config", - "gradient", - "gradients", - "grommet-icons", - "@chromatic-com/storybook", - "@storybook/addon-a11y", - "@storybook/addon-toolbars", - "@storybook/addon-webpack5-compiler-babel", - "@storybook/manager-api", - "@storybook/source-loader", - "@testing-library/testcafe", - "babel-plugin-transform-imports", - "chromatic", - "grommet-theme-hpe", - "jest-styled-components", - "react-shadow", - "tarball-extract", - "testcafe-react-selectors", - "grommet.io", - "grommetux", - "theming", - "sticker sheets", - "design patterns", - "app templates", - "atomic design", - "WCAG 2.1", - "keyboard navigation", - "screen reader tags", - "interaction", - "graphical user interface", - "dart-sass", - "grunt-jekyll", - "zepto", - "lightbox", - "@next/font", - "axe-playwright", - "@storybook/test-runner", - "@base-ui-components/react", - "@storybook/addon-webpack5-compiler-swc", - "find-process", - "@types/pretty", - "chromium", - "launch-image", - "splashscreen", - "splash-screen", - "image-generation", - "mstile", - "pwa-assets", - "@apitools/openapi-parser", - "base64-arraybuffer", - "xml-but-prettier", - "babel-plugin-template-html-minifier", - "inspectpack", - "Custom Element", - "Web Component", - "swagger ui", - "openapi ui", - "openapi themes", - "openapi viewer", - "openapi renderer", - "openapi explorer", - "swagger themes", - "animatable", - "@react-native/babel-preset", - "collapsible", - "accordion", - "rollup-plugin-local-resolve", - "swipeable", - "customizable", - "touchscreen", - "listview", - "swipe-to-delete", - "swipe-actions", - "use-composed-ref", - "use-latest", - "@preconstruct/cli", - "autosize", - "grow", - "md-writer", - "@types/common-tags", - "decimal.js-light", - "victory-vendor", - "@recharts/devtools", - "@storybook/builder-vite", - "@storybook/react-vite", - "@stryker-mutator/typescript-checker", - "@stryker-mutator/vitest-runner", - "@types/d3-interpolate", - "@types/d3-time-format", - "babel-plugin-dev-expression", - "eslint-config-airbnb-extended", - "eslint-plugin-react-perf", - "vitest-axe", - "@riotjs/dom-bindings", - "@riotjs/compiler", - "@riotjs/prettier-config", - "@riotjs/register", - "@riotjs/util", - "@wdio/mocha-framework", - "@wdio/sauce-service", - "bianco.attr", - "bianco.query", - "cumpa", - "curri", - "eslint-config-riot", - "rollup-plugin-riot", - "custom tags", - "minimalist", - "data binding", - "riotjs", - "riot.js", - "testcafe-browser-provider-saucelabs", - "sortable", - "reorder", - "ng-sortable", - "@use-gesture/vanilla", - "tdesign-icons-vue-next", - "@rollup/plugin-eslint", - "@rollup/plugin-url", - "@soerenmartius/vue3-clipboard", - "@tdesign/site-components", - "@tdesign/theme-generator", - "dom-parser", - "lodash.upperfirst", - "qrcode.vue", - "rollup-plugin-ignore-import", - "rollup-plugin-static-import", - "rollup-plugin-styles", - "tdesign-publish-cli", - "vite-plugin-tdoc", - "tdesign", - "babel-plugin-html-tag", - "postcss-css-variables", - "postcss-hexrgba", - "postcss-prefixer", - "rollup-plugin-module-replacement", - "rollup-plugin-string", - "uploader", - "preview", - "chunk", - "image-edit", - "sockets", - "ready", - "win32", - "gulp-convert-css-var", - "picklog", - "wechat", - "weixin", - "@formatjs/intl-localematcher", - "@napi-rs/simple-git", - "@shikijs/twoslash", - "@theguild/remark-mermaid", - "better-react-mathjax", - "estree-util-value-to-estree", - "react-compiler-runtime", - "react-medium-image-zoom", - "remark-math", - "remark-reading-time", - "remark-smartypants", - "unist-util-remove", - "unist-util-visit-children", - "@types/negotiator", - "esbuild-plugin-svgr", - "esbuild-react-compiler-plugin", - "make-synchronized", - "make-synchronous", - "sync-threads", - "synchronize", - "fs-fixture", - "@ibyar/decorators", - "aurora", - "ibyar", - "expressions", - "template-syntax", - "template-expression", - "scope", - "evaluation", - "command-center", - "rich-text-editor", - "tiptap", - "@types/babel__preset-env", - "eslint-plugin-no-null", - "allure", - "codeceptjs", - "testops", - "@intlayer/chokidar", - "@intlayer/config", - "@intlayer/core", - "@intlayer/types", - "intlayer", - "@types/cls-hooked", - "@utils/ts-config", - "@utils/ts-config-types", - "@utils/tsdown-config", - "user-agents", - "unist-util-remove-position", - "@bugsnag/core", - "@bugsnag/delivery-react-native", - "@bugsnag/plugin-console-breadcrumbs", - "@bugsnag/plugin-network-breadcrumbs", - "@bugsnag/plugin-react", - "@bugsnag/plugin-react-native-client-sync", - "@bugsnag/plugin-react-native-event-sync", - "@bugsnag/plugin-react-native-global-error-handler", - "@bugsnag/plugin-react-native-hermes", - "@bugsnag/plugin-react-native-session", - "@bugsnag/plugin-react-native-unhandled-rejection", - "iserror", - "bugsnag", - "stability", - "@enact/i18n", - "ilib", - "eslint-plugin-astro", - "control-panel", - "backendless-request", - "backendless-rt-client", - "backendless-console-sdk", - "bannerize", - "backendless.com", - "ahooks", - "better-scroll", - "@zarm-design/bem", - "@use-gesture/react", - "@zarm-design/icons", - "@floating-ui/react-dom-interactions", - "@zarm-design/cli", - "zarm-ui", - "zarm-mobile", - "@enact/spotlight", - "@enact/docs-utils", - "@enact/ui-test-utils", - "eslint-config-enact-proxy", - "react select", - "react dropdown", - "accessible react select", - "accessible", - "@reporters/github", - "titanium-sdk", - "tidev", - "iphone", - "@antora/expand-path-helper", - "antora", - "static site", - "web publishing", - "@asyncapi/generator-components", - "@asyncapi/generator-helpers", - "@asyncapi/generator-hooks", - "@asyncapi/multi-parser", - "fs.extra", - "global-dirs", - "requireg", - "unixify", - "react-loadable", - "combine-promises", - "@docusaurus/babel", - "@docusaurus/logger", - "@docusaurus/bundler", - "react-router-config", - "@docusaurus/mdx-loader", - "@docusaurus/utils-common", - "@docusaurus/utils-validation", - "react-loadable-ssr-addon-v5-slorber", - "@total-typescript/shoehorn", - "@types/react-router-config", - "parcel-bundler", - "Vue", - "unstyled", - "@nestjsx/crud-request", - "@nestjsx/util", - "crud-generator", - "frameworks", - "@zmotivat0r/o0", - "p-filter", - "p-locate", - "dependency-management", - "continuous-integration", - "npmjs", - "package-manager", - "gatsby", - "hugo", - "netlify", - "core-js-pure", - "jest-location-mock", - "@types/module-alias", - "webpack-plugin-serve", - "hotreload", - "@pothos/test-utils", - "pothos", - "yalc", - "@strapi/core", - "@strapi/i18n", - "@strapi/admin", - "@strapi/email", - "@strapi/types", - "@strapi/utils", - "@strapi/logger", - "@strapi/upload", - "@types/nodemon", - "@strapi/openapi", - "@strapi/database", - "@strapi/cloud-cli", - "@strapi/generators", - "get-latest-version", - "@strapi/permissions", - "@strapi/data-transfer", - "@strapi/content-manager", - "@strapi/content-releases", - "@strapi/review-workflows", - "@strapi/typescript-utils", - "@strapi/content-type-builder", - "@strapi/ts-zen", - "eslint-config-custom", - "@types/webpack-hot-middleware", - "strapi", - "cmf", - "content management framework", - "admin panel", - "koajs", - "jam", - "graphqL", - "infrastructure", - "self hosted", - "lernajs", - "snake-case", - "@types/svg-parser", - "http-status-emojis", - "tsparticles-plugin", - "@tsparticles/interaction", - "@tsparticles/move", - "tsparticles-shape", - "@tsparticles/updater", - "@aws-sdk/lib-storage", - "@aws-sdk/s3-presigned-post", - "express-interceptor", - "express-prom-bundle", - "grant", - "tus-js-client", - "webdav", - "resumable uploads", - "tus", - "dropbox", - "webpack-chain", - "@vuepress/types", - "vue-server-renderer", - "@vue/babel-preset-app", - "vuepress-plugin-container", - "vuepress-html-webpack-plugin", - "@types/diacritics", - "vuepress-plugin-smooth-scroll", - "detect-browser", - "@walletconnect/types", - "@walletconnect/safe-json", - "@walletconnect/window-getters", - "@walletconnect/window-metadata", - "@ethersproject/address", - "@types/lodash.isnumber", - "wallet", - "walletconnect", - "jsonrpc", - "cryptocurrency", - "dapp", - "@walletconnect/utils", - "@walletconnect/crypto", - "@walletconnect/legacy-types", - "@walletconnect/legacy-utils", - "@types/qrcode", - "@walletconnect/legacy-client", - "@walletconnect/jsonrpc-provider", - "@walletconnect/jsonrpc-http-connection", - "ethereum-test-network", - "@wordpress/element", - "wordpress", - "gutenberg", - "center", - "jasmine-co", - "jasmine-ts", - "selenium-mock", - "body scroll", - "body scroll lock", - "react scroll lock", - "react scroll", - "freeze", - "disable", - "overflow", - "vanilla-js", - "tablet", - "bsl", - "broccoli-node-info", - "resolve-path", - "@types/console-ui", - "@types/esm", - "@types/findup-sync", - "@types/sane", - "@types/underscore.string", - "broccoli-node-api", - "mocha-jshint", - "babel-plugin-optimize-starts-with", - "replacement", - "html4", - "invalid", - "color-name", - "is-whitespace", - "verb", - "mediaquery", - "csstree", - "completion", - "apollo-link-context", - "decap-cms", - "aws-cognito", - "what-the-diff", - "gotrue-js", - "git-gateway", - "gateway", - "napa", - "detector", - "tinydate", - "tweezer.js", - "medium-zoom", - "autoprefixer-stylus", - "rollup-plugin-async", - "eslint-plugin-playwright", - "creator", - "cp-file", - "yargonaut", - "docsify-server-renderer", - "cli-prompts-test", - "rollup-plugin-executable", - "ssr-window", - "eslint-config-standard-react", - "prettier-check", - "array-hyper-unique", - "crlf-normalize", - "book", - "books", - "chapter", - "comic", - "epub-maker", - "epub-maker2", - "node-novel", - "novel", - "volume", - "escaping", - "interpolate", - "goat", - "🐐", - "color-logger", - "ice-cap", - "esdoc-importpath-plugin", - "ECMAScript6", - "ECMAScript2015", - "ECMAScript7", - "ECMAScript2016", - "ECMAScript8", - "ECMAScript2017", - "proposal", - "mdc", - "developer", - "inter-element", - "white-space", - "whitespace", - "tagname", - "force", - "graceful-shutdown", - "http-shutdown", - "http-terminate", - "prometheus", - "icss", - "inferno-hyperscript", - "vnode", - "createVNode", - "gulp-rtlcss", - "postcss-preset-infima", - "dark mode", - "bootswatch", - "docstrap", - "@angular-devkit/build-angular", - "angular-eslint", - "github-files-fetcher", - "@stitches/react", - "animate-sass", - "postcss-trolling", - "vite-plugin-svgr", - "preview jest", - "log-utils", - "engine-base", - "engine-handlebars", - "lo", - "lo-dash", - "serve-index-75lb", - "lws-middleware", - "micromark-extension", - "tagfilter", - "dangerous", - "grunt-jasmine-node", - "mobilegrade", - "sniff", - "nth-child", - "nth", - "is-alphanumerical", - "is-decimal", - "is-hexadecimal", - "cssinjs", - "@wdio/selenium-standalone-service", - "babelrc-rollup", - "queryselector", - "shadowdom", - "gulp-streamify", - "rc-tools", - "tappable", - "hammer", - "@actions/core", - "@oclif/plugin-autocomplete", - "toposort", - "@readme/better-ajv-errors", - "@readme/standards", - "@types/toposort", - "@types/unzipper", - "goober", - "jest-esm-jsx-transform", - "parcel-plugin-css-to-string", - "use-throttled-effect", - "hex", - "color-picker", - "wai-aria", - "smart-tv", - "smarttv", - "simple-routing", - "nano-equal", - "shallow-equal-fuzzy", - "shouldComponentUpdate", - "quicklook", - "image-gallery", - "image-viewer", - "react-native-svg", - "progressindicator", - "circle", - "pie", - "progressbar", - "indeterminate", - "d3-interpolate-path", - "@react-native-community/bob", - "@storybook/react-native", - "eslint-plugin-react-native", - "youtube-iframe", - "iframe", - "@atomico/rollup-plugin-sizes", - "git-branch-is", - "react-spring", - "@bedrock-layout/use-forwarded-ref", - "@codecov/vite-plugin", - "@types/body-scroll-lock", - "get-nonce", - "@theuiteam/lib-builder", - "@tsparticles/shape-text", - "@tsparticles/updater-roll", - "@tsparticles/updater-tilt", - "@tsparticles/updater-wobble", - "@tsparticles/plugin-emitters", - "@tsparticles/updater-destroy", - "@tsparticles/updater-twinkle", - "@tsparticles/plugin-absorbers", - "@tsparticles/interaction-external-trail", - "@tsparticles/plugin-emitters-shape-circle", - "@tsparticles/plugin-emitters-shape-square", - "useRef", - "createRef", - "merge refs", - "detect-node-es", - "@types/enzyme-adapter-react-16", - "code spliting", - "sidecar", - "mutation-observer", - "copy-text-to-clipboard", - "svelte-loader", - "scss-loader", - "perfect-scroll", - "vue-perfect-scroll", - "vue-scroll", - "vue-scrollbar", - "vue-plugin", - "滚动条", - "@types/eslint-plugin-prettier", - "@types/form-data", - "is-uuid", - "rewrite-imports", - "serviceworker", - "convict", - "antora-component", - "@applitools/test-utils", - "applitools", - "eyes-sdk", - "test automation", - "visual regression", - "@dataui/crud-request", - "@dataui/crud-util", - "blob-to-buffer", - "drag drop", - "drag & drop", - "@expo/spawn-async", - "@parcel/core", - "@parcel/fs", - "@parcel/package-manager", - "@parcel/watcher", - "mnemonic-id", - "node-object-hash", - "@plasmohq/parcel-config", - "@plasmohq/parcel-core", - "@plasmohq/init", - "@plasmo/config", - "@plasmo/constants", - "@plasmo/utils", - "@plasmo/framework-shared", - "browser-extensions", - "@iconify/react", - "@types/events", - "static-server", - "@storybook/cli", - "less-plugin-sass2less", - "@storybook/addon-mdx-gfm", - "music", - "player", - "mse", - "eme", - "@arethetypeswrong/core", - "ts-expose-internals", - "dlv", - "dset", - "flattie", - "fontace", - "unifont", - "magicast", - "piccolore", - "unstorage", - "zod-to-ts", - "xxhash-wasm", - "yocto-spinner", - "@oslojs/encoding", - "@astrojs/compiler", - "@astrojs/telemetry", - "@capsizecss/unpack", - "http-cache-semantics", - "@astrojs/internal-helpers", - "deterministic-object-hash", - "@types/dlv", - "rehype-toc", - "astro-scripts", - "remark-code-titles", - "@types/common-ancestor-path", - "@types/http-cache-semantics", - "strata", - "fuzzysearch", - "sander", - "@web/test-runner-core", - "testrunner", - "ac-colors", - "hsv", - "lch", - "color-names", - "cmyk", - "mix", - "harmonies", - "expressots", - "clean-architecture", - "typescript-framework", - "@pagefind/default-ui", - "bcp-47", - "mdast-util-directive", - "linkedom", - "withastro", - "astro-integration", - "piña", - "pigna", - "tabbable", - "@floating-ui/utils", - "@radix-ui/react-checkbox", - "@radix-ui/react-icons", - "vitest-browser-react", - "@internal/test-utils", - "code-blocks", - "expressive-code", - "syntax-highlighting", - "netlify-cms", - "@types/deep-eql", - "@amaui/ui-react", - "amaui", - "firefoxos", - "onesy", - "@react-native-macos/virtualized-lists", - "@tsparticles/plugin-easing-quad", - "@tsparticles/updater-stroke-color", - "@tsparticles/interaction-external-pause", - "@tsparticles/interaction-external-bubble", - "@tsparticles/interaction-external-attract", - "@tsparticles/interaction-external-connect", - "@types/react-router", - "@backstage/backend-plugin-api", - "@backstage/config", - "@backstage/integration", - "express-promise-router", - "@backstage/backend-test-utils", - "@backstage/catalog-model", - "@backstage/cli", - "@backstage/plugin-catalog-common", - "@backstage/plugin-catalog-node", - "backstage", - "ci/cd", - "immobiliare", - "immobiliarelabs", - "rgv", - "@asteasolutions/zod-to-openapi", - "@trpc/server", - "eslint-import-resolver-custom-alias", - "resolve-tspaths", - "event-driven", - "blaze", - "qs-esm", - "dataloader", - "bson-objectid", - "console-table-printer", - "@payloadcms/translations", - "graphql-http", - "@types/range-parser", - "@monaco-editor/react", - "@payloadcms/eslint-config", - "@hyrious/esbuild-plugin-commonjs", - "content management", - "graphQL", - "@cfcs/core", - "@egjs/axes", - "@egjs/component", - "@egjs/imready", - "@egjs/list-differ", - "@daybrush/jsdoc", - "@egjs/flicking-plugins", - "@egjs/release-helper", - "@types/resize-observer-browser", - "egjs-jsdoc-template", - "html-to-react", - "http-serve", - "jsdoc-to-mdx", - "karma-typescript-es6-transform", - "postcss-clean", - "print-coveralls", - "print-sizes", - "pvu", - "rollup-plugin-prototype-minify", - "ts-mock-imports", - "ttypescript", - "flicking", - "egjs", - "body scroll lock upgrade", - "@ucast/mongo2js", - "@casl/dx", - "permissions", - "abac", - "rbac", - "ibac", - "cancan", - "@humanwhocodes/gitignore-to-minimatch", - "peowly", - "list-dependents-cli", - "rslog", - "@rslib/core", - "@modern-js/rslib", - "@modern-js/types", - "@scripts/rstest-config", - "modern", - "modern.js", - "@scripts/build", - "@scripts/jest-config", - "import-without-cache", - "unconfig-core", - "unrun", - "@publint/pack", - "@sxzz/eslint-config", - "@sxzz/prettier-config", - "@sxzz/test-utils", - "@unocss/eslint-plugin", - "@vitejs/devtools", - "rolldown-plugin-dts-snapshot", - "rolldown-plugin-require-cjs", - "unocss", - "unplugin-ast", - "unplugin-lightningcss", - "unplugin-unused", - "@types/decompress", - "@ckeditor/ckeditor5-comments", - "@ckeditor/ckeditor5-track-changes", - "CKEditor", - "WYSIWYG", - "WYSIWYW", - "rich-text", - "fast-equals", - "glob2regx", - "ckeditor5-collaboration", - "@ckeditor/ckeditor5-revision-history", - "@ckeditor/ckeditor5-operations-compressor", - "@ckeditor/ckeditor-cloud-services-collaboration", - "@grammyjs/types", - "deno2node", - "@udecode/plate-utils", - "@loki/integration-react", - "@loki/integration-react-native", - "@loki/integration-vue", - "@loki/runner", - "@loki/target-chrome-app", - "@loki/target-chrome-docker", - "@loki/target-native-android-emulator", - "@loki/target-native-ios-simulator", - "storybook-addons", - "react-storybook", - "visual testing", - "emoji-datasource", - "@fastify/static", - "graphql-jit", - "mqemitter", - "single-user-cache", - "tiny-lru", - "@matteo.collina/snap", - "@types/isomorphic-form-data", - "graphql-ws", - "blue-tape", - "events.once", - "xhr2-cookies", - "convex", - "mock-spawn", - "@fastify/pre-commit", - "@reporters/silent", - "desm", - "gulp-better-rollup", - "Leaflet", - "Maps", - "Gesture", - "Handling", - "two", - "fingers", - "@tanstack/vue-virtual", - "@testing-library/vue", - "@fast-check/vitest", - "@types/eslint-config-prettier", - "prettier-plugin-pkg", - "prettier-plugin-sh", - "algo", - "@oxc-node/cli", - "eslint-plugin-redos-detector", - "tsm", - "bundle-size", - "@iconify/vue", - "@internationalized/date", - "@internationalized/number", - "@nuxt/fonts", - "@nuxt/icon", - "@nuxt/kit", - "@nuxt/schema", - "@nuxtjs/color-mode", - "@tanstack/vue-table", - "@tiptap/core", - "@tiptap/extension-bubble-menu", - "@tiptap/extension-code", - "@tiptap/extension-collaboration", - "@tiptap/extension-drag-handle", - "@tiptap/extension-drag-handle-vue-3", - "@tiptap/extension-floating-menu", - "@tiptap/extension-horizontal-rule", - "@tiptap/extension-image", - "@tiptap/extension-mention", - "@tiptap/extension-node-range", - "@tiptap/extension-placeholder", - "@tiptap/markdown", - "@tiptap/pm", - "@tiptap/starter-kit", - "@tiptap/suggestion", - "@tiptap/vue-3", - "@vueuse/shared", - "colortranslator", - "embla-carousel-auto-height", - "embla-carousel-auto-scroll", - "embla-carousel-autoplay", - "embla-carousel-class-names", - "embla-carousel-fade", - "embla-carousel-vue", - "embla-carousel-wheel-gestures", - "knitwork", - "motion-v", - "reka-ui", - "tailwind-variants", - "unplugin-auto-import", - "unplugin-vue-components", - "vaul-vue", - "vue-component-type-helpers", - "@nuxt/eslint-config", - "@nuxt/module-builder", - "@nuxt/test-utils", - "@tanstack/table-core", - "ai", - "vitest-environment-nuxt", - "nuxt-ui", - "ui-framework", - "country-code", - "country-codes", - "country-flags", - "country-names", - "country-telephone-codes", - "country-telephone-prefixes", - "countries", - "country-iso-codes", - "iso", - "iso-codes", - "iso-country-codes", - "iso-country-names", - "iso-country-telephone-codes", - "iso-country-telephone-prefixes", - "iso-countries", - "emoji-flags", - "phone-codes", - "phone-prefixes", - "telephone-codes", - "telephone-prefixes", - "world-countries", - "world-country-codes", - "world-country-flags", - "world-country-names", - "world-country-telephone-codes", - "world-country-telephone-prefixes", - "world-iso-codes", - "world-iso-country-codes", - "world-iso-country-names", - "@zoroaster/assert", - "@zoroaster/mask", - "alamode", - "@a-la/fixture-alamode", - "@a-la/fixture-babel", - "@artdeco/clean-stack", - "@artdeco/erte", - "@artdeco/scripts.json", - "@depack/render", - "@wrote/exists", - "@wrote/rm", - "@zoroaster/reducer", - "@zoroaster/types", - "argufy", - "catchment", - "documentary", - "erotic", - "eslint-config-artdeco", - "makepromise", - "promto", - "reloquent", - "snapshot-context", - "spawncommand", - "temp-context", - "usually", - "yarn-s", - "IDE", - "suggestions", - "intellisense", - "assistant-cloud", - "@assistant-ui/tap", - "@assistant-ui/store", - "@radix-ui/primitive", - "@radix-ui/react-compose-refs", - "@radix-ui/react-context", - "@radix-ui/react-dropdown-menu", - "@radix-ui/react-popover", - "@radix-ui/react-primitive", - "@radix-ui/react-use-callback-ref", - "@radix-ui/react-use-escape-keydown", - "assistant-stream", - "@assistant-ui/x-buildutils", - "radix-ui", - "ai-sdk", - "assistant", - "openai", - "chatbot", - "copilot", - "ai-chat", - "ai-chatbot", - "ai-assistant", - "ai-copilot", - "chatgpt", - "gpt4", - "gpt-4", - "conversational-ui", - "conversational-ai", - "graphiql", - "radash", - "@a2a-js/sdk", - "js-tiktoken", - "@lukeed/uuid", - "hono-openapi", - "@isaacs/ttlcache", - "@ai-sdk/provider-v5", - "@ai-sdk/provider-v6", - "@ai-sdk/ui-utils-v5", - "@mastra/schema-compat", - "@ai-sdk/provider-utils-v5", - "@ai-sdk/provider-utils-v6", - "@ai-sdk/azure", - "@ai-sdk/openai", - "@internal/lint", - "@internal/ai-v6", - "@internal/ai-sdk-v4", - "@internal/ai-sdk-v5", - "@internal/types-builder", - "@internal/external-types", - "@openrouter/ai-sdk-provider", - "llm", - "llms", - "agents", - "vectorstore", - "embeddings", - "rag", - "evals", - "otel", - "@tailwindcss/ui", - "@types/sortablejs", - "vue-next", - "draggable", - "drag-and-drop", - "vue-draggable", - "kanban", - "composition-api", - "@oxc-project/runtime", - "hmac256", - "hmac512", - "@ant-design/pro-components", - "@anthropic-ai/sdk", - "@azure-rest/ai-inference", - "@cfworker/json-schema", - "@clerk/localizations", - "@clerk/nextjs", - "@clerk/themes", - "@cyntler/react-doc-viewer", - "@fal-ai/client", - "@formkit/auto-animate", - "@google/genai", - "@huggingface/inference", - "@icons-pack/react-simple-icons", - "@khmyznikov/pwa-install", - "@langchain/community", - "@lobechat/agent-runtime", - "@lobechat/const", - "@lobechat/context-engine", - "@lobechat/database", - "@lobechat/electron-client-ipc", - "@lobechat/electron-server-ipc", - "@lobechat/fetch-sse", - "@lobechat/file-loaders", - "@lobechat/model-runtime", - "@lobechat/observability-otel", - "@lobechat/prompts", - "@lobechat/python-interpreter", - "@lobechat/utils", - "@lobechat/web-crawler", - "@lobehub/analytics", - "@lobehub/charts", - "@lobehub/chat-plugin-sdk", - "@lobehub/chat-plugins-gateway", - "@lobehub/editor", - "@lobehub/icons", - "@lobehub/market-sdk", - "@lobehub/tts", - "@lobehub/ui", - "@neondatabase/serverless", - "@next/third-parties", - "@opentelemetry/exporter-jaeger", - "@opentelemetry/winston-transport", - "@react-pdf/renderer", - "@react-spring/web", - "@saintno/comfyui-sdk", - "@serwist/next", - "@t3-oss/env-nextjs", - "@trpc/client", - "@trpc/next", - "@trpc/react-query", - "@vercel/analytics", - "@vercel/edge-config", - "@vercel/functions", - "@vercel/speed-insights", - "@virtuoso.dev/masonry", - "@xterm/xterm", - "brotli-wasm", - "countries-and-timezones", - "dexie", - "drizzle-orm", - "drizzle-zod", - "gpt-tokenizer", - "i18next-resources-to-backend", - "js-sha256", - "jsonl-parse-stringify", - "langchain", - "langfuse", - "langfuse-core", - "lucide-react", - "markdown-to-txt", - "model-bank", - "modern-screenshot", - "next-mdx-remote", - "nextjs-toploader", - "nuqs", - "officeparser", - "oidc-provider", - "ollama", - "partial-json", - "path-browserify-esm", - "pdf-parse", - "plaiceholder", - "posthog-js", - "pwa-install-handler", - "react-confetti", - "react-hotkeys-hook", - "react-layout-kit", - "react-pdf", - "react-rnd", - "react-scan", - "react-virtuoso", - "react-wrap-balancer", - "resolve-accept-language", - "rtl-detect", - "ssrf-safe-fetch", - "svix", - "tokenx", - "ts-md5", - "unstructured-client", - "use-merge-value", - "word-extractor", - "zustand-utils", - "@huggingface/tasks", - "@lobehub/i18n-cli", - "@lobehub/lint", - "@lobehub/market-types", - "@lobehub/seo-cli", - "@next/bundle-analyzer", - "@peculiar/webcrypto", - "@types/chroma-js", - "@types/crypto-js", - "@types/ip", - "@types/numeral", - "@types/oidc-provider", - "@types/pdfkit", - "@types/pg", - "@types/rtl-detect", - "dbdocs", - "dpdm-fast", - "drizzle-dbml-generator", - "drizzle-kit", - "eslint-plugin-mdx", - "fake-indexeddb", - "just-diff", - "mcp-hello-world", - "remark-mdx", - "serwist", - "vercel-ai", - "azure-openai", - "visual-model", - "tts", - "stt", - "modelcontextprotocol", - "mcp", - "context7", - "vibe-coding", - "developer tools", - "@types/istanbul-lib-report", - "@walletconnect/time", - "@walletconnect/events", - "label", - "better-npm-run", - "clamp.js", - "karma-fixture", - "karma-opera-launcher", - "minimalistic", - "@types/webrtc", - "detectrtc", - "install-peers-cli", - "prepend-file", - "camera", - "webcam", - "cam", - "webRTC", - "react-native-worklets", - "visionOS", - "tvOS", - "macOS", - "cpp", - "swift", - "jsi", - "@antfu/ni", - "@dotenvx/dotenvx", - "@types/validate-npm-package-name", - "stringify-object", - "@types/stringify-object", - "virtual-core", - "datagrid", - "2fa", - "hotp", - "topt", - "google authenticator", - "authenticator", - "one time password", - "one-time-password", - "2 factor", - "survey", - "surveyjs", - "survey-library", - "form-component", - "form-rendering", - "survey-renderer", - "dynamic-form", - "interactive-form", - "form-library", - "form-management", - "questionnaire", - "data-collection", - "data-validation", - "input-validation", - "ui-component", - "schema-form", - "base64-stream", - "bplist-creator", - "@mrleebo/prisma-ast", - "@electric-sql/pglite-socket", - "@prisma/query-plan-executor", - "common-stuff", - "accelerate", - "@aws-lite/client", - "@aws-lite/s3", - "@architect/eslint-config", - "mock-tmp", - "tap-arc", - "cloudfunctions", - "apigateway", - "api gateway", - "@webgpu/types", - "@tinymce/tinymce-react", - "n1ed", - "@headlessui/tailwindcss", - "@heroicons/react", - "@tailwindplus/elements", - "@types/sharp", - "react-docgen-typescript", - "react-lib-tools", - "rollup-preserve-directives", - "ts-blank-space", - "vitest-fail-on-console", - "windowed", - "@extend-chrome/messages", - "@extend-chrome/storage", - "@types/chrome", - "@types/jsesc", - "vite-plugin-inspect", - "chrome-extension", - "webext", - "webextension", - "browser-extension", - "isoformat", - "interval-tree-1d", - "htl", - "@types/d3", - "apache-arrow", - "d3-geo-projection", - "@observablehq/stdlib", - "string-split-by", - "cargo-cp-artifact", - "skia", - "offscreen", - "compositing", - "vulkan", - "metal", - "flmngr", - "imgpen", - "unsplash", - "@types/listr", - "markdown-to-pdf", - "pdf-generation", - "assignments", - "homework", - "html-to-pdf", - "@applitools/core", - "@applitools/logger", - "@applitools/req", - "@applitools/snippets", - "@applitools/image", - "@applitools/spec-driver-webdriver", - "@antora/user-require-helper", - "kapok-js", - "@asciidoctor/core", - "@antora/asciidoc-loader", - "navigation", - "asciidoc", - "pod-install", - "pinch-to-zoom", - "pinch", - "@farmfe/cli", - "@farmfe/core", - "bun-types-no-globals", - "eslint-plugin-format", - "unloader", - "redirects", - "@antora/file-publisher", - "publisher", - "vite-plugin-dts-bundle-generator", - "vite-plugin-pages", - "vite-plugin-typescript", - "vite-plugin-typescript-transform", - "box2d", - "game", - "physics", - "2d", - "replace-in-files-cli", - "sandboxed-module", - "oxc", - "exact-versions", - "turborepo", - "version-linter", - "@jsdevtools/ez-spawn", - "@napi-rs/magic-string", - "@pnpm/list", - "@pnpm/workspace.find-packages", - "@types/treeverse", - "@types/yarnpkg__lockfile", - "fast-npm-meta", - "@nolyfill/internal", - "@nolyfill/promise.any", - "fumadb", - "kysely", - "@orpc/zod", - "@orpc/otel", - "neverthrow", - "@c15t/logger", - "@orpc/server", - "@orpc/openapi", - "@orpc/contract", - "@c15t/translations", - "@opentelemetry/sdk-node", - "kysely-pglite", - "@c15t/vitest-config", - "@libsql/kysely-libsql", - "@c15t/typescript-config", - "consent", - "privacy", - "ccpa", - "lgpd", - "self-host", - "consent-management", - "user-privacy", - "data-protection", - "cookie-banner", - "consent-management-platform", - "cmp", - "consent-banner", - "@ampproject/rollup-plugin-closure-compiler", - "@fezvrasta/tsc-silent", - "@khanacademy/flow-to-ts", - "babel-plugin-inline-replace-variables", - "poster", - "rollup-plugin-flow-entry", - "popper", - "positioning engine", - "anime", - "anime.js", - "timeline", - "easings", - "cubic-bezier", - "splitText", - "WAAPI", - "Canvas", - "WebGL", - "decrypt", - "ev-emitter", - "fizzy-ui-utils", - "get-size", - "imagesloaded", - "unidragger", - "eslint-plugin-metafizzy", - "jquery-bridget", - "flick", - "gulp-wrap-commonjs", - "lex", - "maths", - "persist-schema", - "jugglingdb", - "panorama", - "rip-out", - "eslint-config-godaddy-react", - "setup-env", - "compatiblity", - "rollup-plugin-eslint", - "rollup-plugin-sass", - "testit", - "gethub", - "bits", - "iec" - ], - [5, 293, 294], - [0, -3015, -3016, -3017, -3018], - 1771718400000, - 1771113600000, - 1770508800000, - [0], - 1772323200000, - 1772409600000, - 1772064000000, - 1771804800000, - [1, 24, 619], - [1, 3, 621], - [0, -519, -2384, -2541], - [0, -3040, -3052, -1031, -2006, -2019, -2410], - [0, -3095, -3098, -3099, -3161, -3100, -2006, -3159, -3160, -2494], - [1, 3, 440], - [1, 3, 1832], - [0, -3488, -681, -3489, -3490, -3491, -3492], - [1, 3, 1826], - [0, -3220], - [0, -1889], - [0, -424], - [0, -3557, -3018], - true, - [1, 3, 622], - [0, -1654], - [0, -2006, -2019], - [0, -4298, -4300, -2319], - [1, 3, 1783], - [0, -2322], - [1, 24, 585], - [0, -2387], - [0, -1548], - [0, -531], - [0, -7841], - [0, -2410], - [0, -932], - [0, -44], - [0, -1787], - [0, -2006], - [0, -856, -3262, -2476, -2816], - [1, 3, 674], - [ - 0, -18, -19, -471, -487, -498, -504, -577, -588, -590, -591, -592, -603, -604, -605, -5421, -606, -607, -608, - -609, -610, -5422, -611, -612, -613, -5423, -626, -631, -643, -660, -663, -5424, -670, -676, -5425, -5426, - -5427, -5428, -5429, -804, -830, -833, -836, -998, -5430, -5431, -1019, -1020, -1095, -1121, -5432, -1280, - -1282, -1307, -1308, -5433, -1378, -1511, -1512, -1513, -5434, -1516, -1584, -1596, -5435, -1615, -5436, -1648, - -1679, -1684, -1695, -1720, -1799, -5437, -1803, -1822, -1869, -1886, -5438, -1994, -2067, -5439, -2158, -2169, - -5440, -5441, -2196, -2201, -2203, -2209, -2217, -2237, -5442, -2238, -2252, -5443, -2256, -2290, -5444, -2296, - -2298, -2309, -2348, -2366, -2370, -5445, -5446, -5447, -2426, -5448, -5449, -2527 - ], - [0, -18, -19, -676, -1994, -2426], - [1, 3, 1519], - [1, 3, 2972], - [0, -2501], - [0, -9219], - [0, -775, -1889, -3583], - [0, -23, -3219], - [1, 3, 1044], - [1, 3, 1396], - [1, 3, 1875], - [0, -519, -2541], - [0, -1654, -1941], - [0, -4633, -3445, -3100, -7566], - [0, -15394, -15395, -4276, -15396, -3162, -6935, -2494, -770, -15397, -15398], - [0, -3488, -681, -3489, -3518, -3492], - [0, -1934], - [1, 3, 623], - [1, 24, 645], - [ - 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -3959, -910, -3960, -3262, -3961, -3962, -3963, -1376, -3964, - -3965, -3214, -3824, -3966, -3967, -1965, -3968, -1966, -3969, -2063, -3970, -3971, -3108, -3972, -3973, -3974, - -3975, -3160, -3976, -2559, -3977 - ], - [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -4339, -4340], - [0, -2476, -3944, -3100, -4590, -3098, -4591, -4592, -4593, -4594], - [1, 3, 1380], - [ - 0, -18, -19, -471, -498, -504, -577, -588, -590, -591, -592, -603, -604, -605, -606, -607, -608, -609, -5423, - -626, -631, -660, -663, -670, -676, -5426, -5429, -804, -830, -833, -836, -998, -5431, -1095, -1121, -5432, - -1280, -1282, -1308, -5433, -1511, -1512, -1513, -1516, -1584, -1596, -1615, -1648, -1679, -1684, -1695, -1720, - -1799, -5437, -1803, -1822, -1869, -1886, -5438, -1994, -2169, -5441, -2201, -2203, -2209, -2217, -2237, -5442, - -2238, -2252, -2256, -2290, -5444, -2296, -2298, -2309, -2348, -2366, -2370, -5445, -5446, -5447, -2426, -5448, - -5449 - ], - [ - 0, -18, -19, -467, -471, -487, -498, -504, -6147, -575, -577, -588, -590, -591, -592, -6148, -603, -604, -605, - -5421, -606, -607, -608, -609, -610, -5422, -611, -612, -613, -6149, -5423, -625, -626, -6150, -631, -6151, - -643, -660, -663, -5424, -670, -675, -676, -5425, -5426, -6152, -6153, -5427, -5428, -5429, -804, -830, -833, - -6154, -836, -842, -890, -998, -5430, -6155, -5431, -1019, -1020, -1035, -1073, -1084, -6156, -1095, -1117, - -1120, -1121, -5432, -1279, -1280, -1282, -1295, -1307, -1308, -1314, -6157, -5433, -1378, -6158, -6159, -1511, - -1512, -1513, -5434, -1516, -6160, -1584, -6161, -1596, -5435, -1615, -5436, -1648, -1677, -6162, -6163, -1678, - -1679, -1684, -1695, -6164, -1720, -1799, -5437, -1803, -1822, -6165, -1865, -1869, -1886, -5438, -1994, -2067, - -5439, -6166, -2158, -2159, -2164, -2169, -5440, -6167, -5441, -6168, -2196, -2201, -2203, -2208, -2209, -2217, - -2221, -2224, -2225, -2237, -5442, -6169, -2238, -2241, -2252, -5443, -2256, -6170, -2288, -2290, -5444, -2296, - -2298, -2309, -2315, -2348, -6171, -6172, -2366, -2370, -5445, -5446, -5447, -2426, -2431, -2458, -5448, -6173, - -6174, -2496, -2497, -5449, -6175, -2527 - ], - [1, 3, 2681], - [0, -1654, -2198], - [0, -2319], - [0, -2460], - [0, -4864, -3214, -11467, -11468, -5270, -5271, -15723, -3634], - [1, 3, 308], - [0, -719], - [0, -4362], - [ - 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, - -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, - -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, - -5186, -5187, -5188, -5189 - ], - [1, 3, 1342], - [1, 3, 1453], - [1, 3, 1877], - [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293], - [1, 3, 2054], - [0, -1754], - [0, -2471], - [0, -3214, -8058, -8059, -4004, -3476, -2006, -1062, -3634, -8060, -8061, -4873, -1654], - [0, -2250], - [0, -5334], - [0, -1202, -1654], - [0, -1406], - [0, -1931], - [0, -3037], - [0, -3037, -652, -1942, -2094, -2100, -2399, -2410, -2541], - [0, -3161, -3481, -3098, -3162, -14919], - [0, -1967], - [0, -2410, -2409, -11398, -5406, -3691, -5728, -3690, -10796, -15307, -3445, -15308], - [1, 3, 10143], - [ - 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, - -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, - -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, - -5186, -5187, -5188, -5189, -15364, -15365 - ], - [ - 0, -3577, -3100, -2808, -5157, -5158, -659, -5159, -5160, -5161, -5155, -5164, -5165, -2410, -3214, -5176, - -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -15367 - ], - [ - 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, - -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, - -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, - -5186, -5187, -5188, -5189, -15364, -15368 - ], - [1, 3, 10608], - [0, -23], - [0, -3510, -3488, -681, -3489, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161], - [1, 24, 583], - [0, -1599, -3670, -3671, -3672, -856, -3673, -3674, -3262], - [0, -3770, -906, -2006, -775, -3771], - [0, -2080], - [ - 0, -519, -525, -4005, -4037, -1001, -4038, -4039, -4040, -1412, -1415, -1449, -1654, -4041, -4042, -1989, -4043, - -4044, -4045, -2319, -2322, -4004, -3634, -2410, -2490 - ], - [0, -703], - [0, -475, -856, -3262, -4258, -4259, -3690, -4260, -4261], - [0, -3158, -3095, -3098, -3099, -3161, -3100, -2006, -3159, -3160], - [0, -5014, -5015, -5016, -5017, -5018, -5019, -5020, -5021, -5022, -5023, -5024], - [0, -2469, -3664], - [0, -3262, -5355, -2501, -2006, -5371, -5372, -1599, -3098, -856], - [0, -1654, -664], - [0, -3037, -519, -2384, -2541], - [0, -567], - [0, -2267], - [0, -2541], - [0, -7475], - [0, -3136, -3037, -427, -428, -932, -940, -7476, -948, -958, -1415, -1942, -2375, -2391, -2402, -2410], - [0, -1415, -932, -2125, -2375, -190, -2410, -3136, -3037, -7742, -2411, -428, -427], - [0, -2320, -2322], - [0, -932, -1654], - [0, -1645], - [0, -932, -937, -1001, -1654, -1788], - [0, -1127, -1134, -1144, -1143, -1146], - [0, -1127, -1134, -1143, -1144, -1146], - [0, -664, -1654], - [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788], - [0, -756, -932, -940, -1344, -1415, -1534, -1889, -1942], - [0, -3037, -2410], - [ - 0, -664, -1654, -2379, -2501, -21, -23, -5870, -3035, -3136, -3037, -1771, -2503, -3621, -39, -43, -40, -15393, - -42 - ], - [0, -8096, -14182, -652, -725, -1942, -2094, -2100, -2125, -2322, -2399, -2410, -2541], - [0, -12449, -12613, -13616, -13615, -8897, -2363, -3214, -2410, -2006, -2476, -2299, -9608], - [0, -3951, -2410], - [1, 3, 313], - [0, -3183, -525, -3184, -3185, -3186, -526, -3116], - [0, -3183, -525, -3205, -3206, -3184, -3207, -3208, -3209, -3185, -3186, -3210, -527, -3116], - [0, -24], - [0, -753, -2082], - [ - 0, -3417, -3418, -3419, -3420, -3421, -3422, -3423, -714, -1028, -1039, -1107, -1442, -1449, -3424, -1600, - -3245, -1601, -3425, -3426, -1602, -3427, -3428, -3429, -3430, -1616, -1689, -3431, -3432, -1955, -1974, -1978, - -3433, -3434, -2446, -3435, -2550 - ], - [0, -2281, -3436, -2284], - [0, -687, -1599, -3437, -3438, -3328, -3439, -3440, -3441, -856, -3262], - [0, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161, -3510, -3488, -681, -3489], - [ - 0, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161, -3488, -681, -3489, - -3518, -3492 - ], - [0, -739, -721, -687], - [0, -3499, -475, -856, -3098, -3551, -3552, -3015, -1599], - [0, -775, -2162, -3575, -3576, -3577, -3161, -3578], - [0, -3634, -3440, -793, -3635, -3636], - [0, -3812, -3813, -3814, -3815, -3816, -3817, -856, -3818], - [0, -3821, -3822, -3823, -3824, -3825, -3826, -2006, -2019], - [0, -3836], - [0, -3827, -3837, -3838, -3167, -3839, -620], - [ - 0, -3136, -3037, -427, -428, -932, -933, -935, -940, -958, -959, -962, -967, -1415, -1424, -1942, -2375, -2376, - -2379, -2402, -2410 - ], - [0, -3161, -1334, -3690, -3578], - [0, -3037, -928, -1942, -2319, -2386, -2402], - [0, -687, -3958, -3999, -3099, -4000, -4001, -4002], - [ - 0, -1535, -1536, -687, -4107, -4108, -4109, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, - -4116, -4117 - ], - [1, 3, 825], - [0, -2006, -3159, -3119, -1613], - [0, -4055, -3690, -4140, -4141, -4142, -4143, -4144, -2410, -3018, -3445, -3577], - [0, -4165, -856, -4100, -3485, -4156, -3215, -2250], - [0, -4328, -4329, -1105, -4330, -1599, -3437, -856, -4331, -3264, -1764], - [0, -4332, -4335, -4345, -4346, -4340, -4347], - [0, -4332, -4336, -4337, -4338, -4339, -4340, -4344], - [0, -234, -3044, -5011, -3738, -865, -985, -1771, -1788, -5012, -2376, -5013, -2392, -2469, -2503, -2509], - [0, -5096], - [0, -5141, -4601, -4602, -3578, -3445], - [0, -5140], - [0, -3497, -3496, -3161, -3264, -5246, -3862, -3495, -5247, -3494], - [0, -433, -436], - [0, -1788, -1654, -932, -821, -966, -958, -968, -943, -963, -974], - [0, -475, -3161, -4865, -5495], - [0, -3690, -489, -4100, -856, -3691, -5728], - [0, -1047], - [1, 3, 1788], - [0, -2155], - [0, -581, -5110, -6120, -3173, -6129, -6130, -770], - [1, 3, 1820], - [1, 3, 1876], - [1, 3, 1878], - [0, -1309], - [0, -1592, -1654, -664], - [0, -6657, -6658, -4868, -4004, -6659], - [0, -2231], - [0, -6689, -2115], - [0, -714], - [0, -3966, -3957, -6722, -687, -4002, -6723, -6724, -4112, -714, -4672], - [0, -3214, -6784, -711, -3116], - [0, -2337], - [0, -465, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293], - [0, -711], - [0, -856, -1599], - [0, -865], - [0, -891], - [0, -5558, -3591, -633, -6340, -6408, -6916, -3870], - [0, -932, -8163, -727, -8164, -3214, -4900, -4795, -8165, -6434, -8166], - [0, -932, -5208, -3784], - [0, -429], - [0, -932, -5208, -3784, -3966, -3967, -3217, -7094, -6656, -1847, -6024, -4792], - [0, -932, -3784, -5208, -2006], - [0, -426], - [0, -1004, -3161, -6125, -3578, -1334, -3691, -5728, -3122, -3994, -3690], - [0, -1107, -5064, -5922, -8528], - [0, -1543, -2168], - [0, -1654, -2125, -2250], - [0, -1127, -1144], - [0, -510, -2125], - [0, -9219, -1654, -4004], - [0, -1127, -1132, -2541], - [0, -519, -1168, -1825, -2460, -2541], - [0, -2347], - [0, -1252, -1654, -2198, -2460], - [0, -2347, -1876], - [0, -1876, -2347], - [0, -519, -1825, -2460, -2541], - [0, -3037, -652, -1294, -1942, -2094, -2100, -2399, -2410, -2541], - [0, -1696, -596], - [0, -707, -1510], - [0, -1580], - [0, -1386, -9944, -9945, -3162, -3994, -9946, -752, -5269, -1861], - [0, -519, -9982, -2384, -2541], - [0, -4004, -3634, -1412, -4873, -3440], - [0, -4034], - [0, -5092, -3264, -5388, -5387], - [0, -1452], - [0, -2518], - [0, -1646], - [0, -1523, -10558, -5827, -7685, -7773, -4634, -6005, -4055], - [0, -3326, -351, -3266, -652, -932, -943, -1600, -3668, -1654, -2127], - [0, -4792, -6137, -6138, -6134, -9405, -11114, -4004, -4215, -8611], - [0, -1127], - [0, -687, -3957, -11725, -3673, -1764, -11726, -11727, -8907, -10227, -5921, -4107], - [ - 0, -3994, -1805, -1810, -11816, -11817, -11818, -11819, -11820, -11821, -7095, -4865, -3496, -7237, -7863, - -2435, -11822, -7303, -4377, -7091, -8421, -6599, -1958, -3258, -6656 - ], - [0, -6748, -4377, -5829, -3215, -6747, -687, -3957], - [0, -1654, -664, -666], - [0, -1841, -6120, -8449, -3173, -8450, -6121, -1791, -11437], - [0, -2541, -519, -2384], - [0, -1859, -11878, -11613], - [1, 3, 6920], - [0, -523], - [0, -635, -1934], - [1, 3, 7131], - [1, 3, 7300], - [0, -2006, -12452], - [0, -2006, -2034, -5271, -5270, -3162, -7085, -12561, -12562], - [1, 3, 7605], - [0, -2006, -3122, -10470, -9843, -1306, -10606], - [1, 3, 7706], - [1, 3, 7712], - [0, -2384, -2541], - [0, -12913], - [0, -2127, -12913, -4795, -1764, -3209], - [0, -2006, -3161, -1713, -3578, -3844, -3966, -3577, -3445, -687, -2455], - [1, 3, 8114], - [1, 3, 8321], - [1, 3, 8373], - [0, -9214, -2359, -2330, -13745, -6909, -11846, -13746], - [0, -2410, -856, -3262], - [0, -2444], - [0, -3100, -3161, -6211, -14339, -14340, -2466], - [0, -14357], - [0, -3113, -7646, -7641, -3673, -687, -3970, -3108, -3960, -3262, -3976, -3994], - [0, -3214, -3100, -2006, -3481], - [1, 24, 9789], - [0, -2662], - [1, 24, 10023], - [0, -1386, -3161, -2006, -3162, -3994, -9946, -3995, -752, -3997, -3998], - [0, -15309], - [1, 3, 10151], - [0, -856, -3262, -2476], - [ - 0, -15415, -15416, -15417, -15418, -11853, -10655, -15419, -6711, -15420, -15421, -4126, -15071, -2006, -15422, - -475, -2476, -5270, -3162, -11321, -15423, -15424 - ], - [0, -4258, -7641, -3100, -4865, -6342, -9290], - [0, -15445, -3445], - [0, -3037, -652, -1942, -2094, -2100, -2384, -2399, -2410, -2541], - [0, -1368], - [0, -525, -2006, -1368, -3161, -4729, -9850, -9613], - [0, -15627, -14386, -15628, -15629, -15630, -4864, -3634, -3636], - [1, 3, 10609], - [0, -15699, -3967, -6209, -2410, -15700, -15701, -3161, -11894], - [1, 3, 10660], - [1, 3, 10677], - [1, 3, 10691], - [1, 3, 10722], - [0, -1313, -3445, -15751, -15752, -3161, -9840], - [0, -2006, -3161, -15804, -15805], - [0, -1415, -932, -2127, -2375, -1942, -2410, -3136, -940, -967, -1419, -428, -427], - [ - 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -3959, -910, -3960, -3262, -3961, -3962, -3963, -1376, -3964, - -3965, -3214, -3824, -3966, -3967, -1965, -3968, -1966, -3969, -2063, -3970, -3971, -3108, -3972, -3973, -3974, - -3975, -3694, -2410, -3160, -3976, -2559, -3977 - ], - [ - 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, - -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, - -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, - -5186, -5187, -5188, -5189, -15364 - ], - [1, 3, 10858], - [0, -231, -2900], - [1, 24, 11236], - [ - 0, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, - -24, -25, -26, -27, -28, -29, -30, -31, -32, -33, -34, -35, -36, -37, -38, -39, -40, -41, -42, -43, -44, -45, - -46, -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -61, -62, -63, -64, -65, -66, -67, - -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -81, -82, -83, -84, -85, -86, -87, -88, -89, - -90, -91, -92, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -103, -104, -105, -106, -107, -108, -109, - -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, - -128, -129, -130, -131, -132, -133, -134, -135, -136, -137, -138, -139, -140, -141, -142, -143, -144, -145, - -146, -147, -148, -149, -150, -151, -152, -153, -154, -155, -156, -157, -158, -159, -160, -161, -162, -163, - -164, -165, -166, -167, -168, -169, -170, -171, -172, -173, -174, -175, -176, -177, -178, -179, -180, -181, - -182, -183, -184, -185, -186, -187, -188, -189, -190, -191, -192, -193, -194, -195, -196, -197, -198, -199, - -200, -201, -202, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -215, -216, -217, - -218, -219, -220, -221, -222, -223, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, -235, - -236, -237, -238, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, -253, - -254, -255, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, -270, -271, - -272, -273, -274, -275, -276, -277, -278, -279, -280, -281, -282, -283, -284, -285, -286, -287, -288, -289, - -290, -291, -292, -293, -294, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -305, -306, -307, - -308, -309, -310, -311, -312, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, - -326, -327, -328, -329, -330, -331, -332, -333, -334, -335, -336, -337, -338, -339, -340, -341, -342, -343, - -344, -345, -346, -347, -348, -349, -350, -351, -352, -353, -354, -355, -356, -357, -358, -359, -360, -361, - -362, -363, -364, -365, -366, -367, -368, -369, -370, -371, -372, -373, -374, -375, -376, -377, -378, -379, - -380, -381, -382, -383, -384, -385, -386, -387, -388, -389, -390, -391, -392, -393, -394, -395, -396, -397, - -398, -399, -400, -401, -402, -403, -404, -405, -406, -407, -408, -409, -410, -411, -412, -413, -414, -415, - -416, -417, -418, -419, -420, -421, -422, -423, -424, -425, -426, -427, -428, -429, -430, -431, -432, -433, - -434, -435, -436, -437, -438, -439, -440, -441, -442, -443, -444, -445, -446, -447, -448, -449, -450, -451, - -452, -453, -454, -455, -456, -457, -458, -459, -460, -461, -462, -463, -464, -465, -466, -467, -468, -469, - -470, -471, -472, -473, -474, -475, -476, -477, -478, -479, -480, -481, -482, -483, -484, -485, -486, -487, - -488, -489, -490, -491, -492, -493, -494, -495, -496, -497, -498, -499, -500, -501, -502, -503, -504, -505, - -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -517, -518, -519, -520, -521, -522, -523, - -524, -525, -526, -527, -528, -529, -530, -531, -532, -533, -534, -535, -536, -537, -538, -539, -540, -541, - -542, -543, -544, -545, -546, -547, -548, -549, -550, -551, -552, -553, -554, -555, -556, -557, -558, -559, - -560, -561, -562, -563, -564, -565, -566, -567, -568, -569, -570, -571, -572, -573, -574, -575, -576, -577, - -578, -579, -580, -581, -582, -583, -584, -585, -586, -587, -588, -589, -590, -591, -592, -593, -594, -595, - -596, -597, -598, -599, -600, -601, -602, -603, -604, -605, -606, -607, -608, -609, -610, -611, -612, -613, - -614, -615, -616, -617, -618, -619, -620, -621, -622, -623, -624, -625, -626, -627, -628, -629, -630, -631, - -632, -633, -634, -635, -636, -637, -638, -639, -640, -641, -642, -643, -644, -645, -646, -647, -648, -649, - -650, -651, -652, -653, -654, -655, -656, -657, -658, -659, -660, -661, -662, -663, -664, -665, -666, -667, - -668, -669, -670, -671, -672, -673, -674, -675, -676, -677, -678, -679, -680, -681, -682, -683, -684, -685, - -686, -687, -688, -689, -690, -691, -692, -693, -694, -695, -696, -697, -698, -699, -700, -701, -702, -703, - -704, -705, -706, -707, -708, -709, -710, -711, -712, -713, -714, -715, -716, -717, -718, -719, -720, -721, - -722, -723, -724, -725, -726, -727, -728, -729, -730, -731, -732, -733, -734, -735, -736, -737, -738, -739, - -740, -741, -742, -743, -744, -745, -746, -747, -748, -749, -750, -751, -752, -753, -754, -755, -756, -757, - -758, -759, -760, -761, -762, -763, -764, -765, -766, -767, -768, -769, -770, -771, -772, -773, -774, -775, - -776, -777, -778, -779, -780, -781, -782, -783, -784, -785, -786, -787, -788, -789, -790, -791, -792, -793, - -794, -795, -796, -797, -798, -799, -800, -801, -802, -803, -804, -805, -806, -807, -808, -809, -810, -811, - -812, -813, -814, -815, -816, -817, -818, -819, -820, -821, -822, -823, -824, -825, -826, -827, -828, -829, - -830, -831, -832, -833, -834, -835, -836, -837, -838, -839, -840, -841, -842, -843, -844, -845, -846, -847, - -848, -849, -850, -851, -852, -853, -854, -855, -856, -857, -858, -859, -860, -861, -862, -863, -864, -865, - -866, -867, -868, -869, -870, -871, -872, -873, -874, -875, -876, -877, -878, -879, -880, -881, -882, -883, - -884, -885, -886, -887, -888, -889, -890, -891, -892, -893, -894, -895, -896, -897, -898, -899, -900, -901, - -902, -903, -904, -905, -906, -907, -908, -909, -910, -911, -912, -913, -914, -915, -916, -917, -918, -919, - -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -932, -933, -934, -935, -936, -937, - -938, -939, -940, -941, -942, -943, -944, -945, -946, -947, -948, -949, -950, -951, -952, -953, -954, -955, - -956, -957, -958, -959, -960, -961, -962, -963, -964, -965, -966, -967, -968, -969, -970, -971, -972, -973, - -974, -975, -976, -977, -978, -979, -980, -981, -982, -983, -984, -985, -986, -987, -988, -989, -990, -991, - -992, -993, -994, -995, -996, -997, -998, -999, -1000, -1001, -1002, -1003, -1004, -1005, -1006, -1007, -1008, - -1009, -1010, -1011, -1012, -1013, -1014, -1015, -1016, -1017, -1018, -1019, -1020, -1021, -1022, -1023, -1024, - -1025, -1026, -1027, -1028, -1029, -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, - -1041, -1042, -1043, -1044, -1045, -1046, -1047, -1048, -1049, -1050, -1051, -1052, -1053, -1054, -1055, -1056, - -1057, -1058, -1059, -1060, -1061, -1062, -1063, -1064, -1065, -1066, -1067, -1068, -1069, -1070, -1071, -1072, - -1073, -1074, -1075, -1076, -1077, -1078, -1079, -1080, -1081, -1082, -1083, -1084, -1085, -1086, -1087, -1088, - -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -1103, -1104, - -1105, -1106, -1107, -1108, -1109, -1110, -1111, -1112, -1113, -1114, -1115, -1116, -1117, -1118, -1119, -1120, - -1121, -1122, -1123, -1124, -1125, -1126, -1127, -1128, -1129, -1130, -1131, -1132, -1133, -1134, -1135, -1136, - -1137, -1138, -1139, -1140, -1141, -1142, -1143, -1144, -1145, -1146, -1147, -1148, -1149, -1150, -1151, -1152, - -1153, -1154, -1155, -1156, -1157, -1158, -1159, -1160, -1161, -1162, -1163, -1164, -1165, -1166, -1167, -1168, - -1169, -1170, -1171, -1172, -1173, -1174, -1175, -1176, -1177, -1178, -1179, -1180, -1181, -1182, -1183, -1184, - -1185, -1186, -1187, -1188, -1189, -1190, -1191, -1192, -1193, -1194, -1195, -1196, -1197, -1198, -1199, -1200, - -1201, -1202, -1203, -1204, -1205, -1206, -1207, -1208, -1209, -1210, -1211, -1212, -1213, -1214, -1215, -1216, - -1217, -1218, -1219, -1220, -1221, -1222, -1223, -1224, -1225, -1226, -1227, -1228, -1229, -1230, -1231, -1232, - -1233, -1234, -1235, -1236, -1237, -1238, -1239, -1240, -1241, -1242, -1243, -1244, -1245, -1246, -1247, -1248, - -1249, -1250, -1251, -1252, -1253, -1254, -1255, -1256, -1257, -1258, -1259, -1260, -1261, -1262, -1263, -1264, - -1265, -1266, -1267, -1268, -1269, -1270, -1271, -1272, -1273, -1274, -1275, -1276, -1277, -1278, -1279, -1280, - -1281, -1282, -1283, -1284, -1285, -1286, -1287, -1288, -1289, -1290, -1291, -1292, -1293, -1294, -1295, -1296, - -1297, -1298, -1299, -1300, -1301, -1302, -1303, -1304, -1305, -1306, -1307, -1308, -1309, -1310, -1311, -1312, - -1313, -1314, -1315, -1316, -1317, -1318, -1319, -1320, -1321, -1322, -1323, -1324, -1325, -1326, -1327, -1328, - -1329, -1330, -1331, -1332, -1333, -1334, -1335, -1336, -1337, -1338, -1339, -1340, -1341, -1342, -1343, -1344, - -1345, -1346, -1347, -1348, -1349, -1350, -1351, -1352, -1353, -1354, -1355, -1356, -1357, -1358, -1359, -1360, - -1361, -1362, -1363, -1364, -1365, -1366, -1367, -1368, -1369, -1370, -1371, -1372, -1373, -1374, -1375, -1376, - -1377, -1378, -1379, -1380, -1381, -1382, -1383, -1384, -1385, -1386, -1387, -1388, -1389, -1390, -1391, -1392, - -1393, -1394, -1395, -1396, -1397, -1398, -1399, -1400, -1401, -1402, -1403, -1404, -1405, -1406, -1407, -1408, - -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1419, -1420, -1421, -1422, -1423, -1424, - -1425, -1426, -1427, -1428, -1429, -1430, -1431, -1432, -1433, -1434, -1435, -1436, -1437, -1438, -1439, -1440, - -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -1452, -1453, -1454, -1455, -1456, - -1457, -1458, -1459, -1460, -1461, -1462, -1463, -1464, -1465, -1466, -1467, -1468, -1469, -1470, -1471, -1472, - -1473, -1474, -1475, -1476, -1477, -1478, -1479, -1480, -1481, -1482, -1483, -1484, -1485, -1486, -1487, -1488, - -1489, -1490, -1491, -1492, -1493, -1494, -1495, -1496, -1497, -1498, -1499, -1500, -1501, -1502, -1503, -1504, - -1505, -1506, -1507, -1508, -1509, -1510, -1511, -1512, -1513, -1514, -1515, -1516, -1517, -1518, -1519, -1520, - -1521, -1522, -1523, -1524, -1525, -1526, -1527, -1528, -1529, -1530, -1531, -1532, -1533, -1534, -1535, -1536, - -1537, -1538, -1539, -1540, -1541, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -1549, -1550, -1551, -1552, - -1553, -1554, -1555, -1556, -1557, -1558, -1559, -1560, -1561, -1562, -1563, -1564, -1565, -1566, -1567, -1568, - -1569, -1570, -1571, -1572, -1573, -1574, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -1583, -1584, - -1585, -1586, -1587, -1588, -1589, -1590, -1591, -1592, -1593, -1594, -1595, -1596, -1597, -1598, -1599, -1600, - -1601, -1602, -1603, -1604, -1605, -1606, -1607, -1608, -1609, -1610, -1611, -1612, -1613, -1614, -1615, -1616, - -1617, -1618, -1619, -1620, -1621, -1622, -1623, -1624, -1625, -1626, -1627, -1628, -1629, -1630, -1631, -1632, - -1633, -1634, -1635, -1636, -1637, -1638, -1639, -1640, -1641, -1642, -1643, -1644, -1645, -1646, -1647, -1648, - -1649, -1650, -1651, -1652, -1653, -1654, -1655, -1656, -1657, -1658, -1659, -1660, -1661, -1662, -1663, -1664, - -1665, -1666, -1667, -1668, -1669, -1670, -1671, -1672, -1673, -1674, -1675, -1676, -1677, -1678, -1679, -1680, - -1681, -1682, -1683, -1684, -1685, -1686, -1687, -1688, -1689, -1690, -1691, -1692, -1693, -1694, -1695, -1696, - -1697, -1698, -1699, -1700, -1701, -1702, -1703, -1704, -1705, -1706, -1707, -1708, -1709, -1710, -1711, -1712, - -1713, -1714, -1715, -1716, -1717, -1718, -1719, -1720, -1721, -1722, -1723, -1724, -1725, -1726, -1727, -1728, - -1729, -1730, -1731, -1732, -1733, -1734, -1735, -1736, -1737, -1738, -1739, -1740, -1741, -1742, -1743, -1744, - -1745, -1746, -1747, -1748, -1749, -1750, -1751, -1752, -1753, -1754, -1755, -1756, -1757, -1758, -1759, -1760, - -1761, -1762, -1763, -1764, -1765, -1766, -1767, -1768, -1769, -1770, -1771, -1772, -1773, -1774, -1775, -1776, - -1777, -1778, -1779, -1780, -1781, -1782, -1783, -1784, -1785, -1786, -1787, -1788, -1789, -1790, -1791, -1792, - -1793, -1794, -1795, -1796, -1797, -1798, -1799, -1800, -1801, -1802, -1803, -1804, -1805, -1806, -1807, -1808, - -1809, -1810, -1811, -1812, -1813, -1814, -1815, -1816, -1817, -1818, -1819, -1820, -1821, -1822, -1823, -1824, - -1825, -1826, -1827, -1828, -1829, -1830, -1831, -1832, -1833, -1834, -1835, -1836, -1837, -1838, -1839, -1840, - -1841, -1842, -1843, -1844, -1845, -1846, -1847, -1848, -1849, -1850, -1851, -1852, -1853, -1854, -1855, -1856, - -1857, -1858, -1859, -1860, -1861, -1862, -1863, -1864, -1865, -1866, -1867, -1868, -1869, -1870, -1871, -1872, - -1873, -1874, -1875, -1876, -1877, -1878, -1879, -1880, -1881, -1882, -1883, -1884, -1885, -1886, -1887, -1888, - -1889, -1890, -1891, -1892, -1893, -1894, -1895, -1896, -1897, -1898, -1899, -1900, -1901, -1902, -1903, -1904, - -1905, -1906, -1907, -1908, -1909, -1910, -1911, -1912, -1913, -1914, -1915, -1916, -1917, -1918, -1919, -1920, - -1921, -1922, -1923, -1924, -1925, -1926, -1927, -1928, -1929, -1930, -1931, -1932, -1933, -1934, -1935, -1936, - -1937, -1938, -1939, -1940, -1941, -1942, -1943, -1944, -1945, -1946, -1947, -1948, -1949, -1950, -1951, -1952, - -1953, -1954, -1955, -1956, -1957, -1958, -1959, -1960, -1961, -1962, -1963, -1964, -1965, -1966, -1967, -1968, - -1969, -1970, -1971, -1972, -1973, -1974, -1975, -1976, -1977, -1978, -1979, -1980, -1981, -1982, -1983, -1984, - -1985, -1986, -1987, -1988, -1989, -1990, -1991, -1992, -1993, -1994, -1995, -1996, -1997, -1998, -1999, -2000, - -2001, -2002, -2003, -2004, -2005, -2006, -2007, -2008, -2009, -2010, -2011, -2012, -2013, -2014, -2015, -2016, - -2017, -2018, -2019, -2020, -2021, -2022, -2023, -2024, -2025, -2026, -2027, -2028, -2029, -2030, -2031, -2032, - -2033, -2034, -2035, -2036, -2037, -2038, -2039, -2040, -2041, -2042, -2043, -2044, -2045, -2046, -2047, -2048, - -2049, -2050, -2051, -2052, -2053, -2054, -2055, -2056, -2057, -2058, -2059, -2060, -2061, -2062, -2063, -2064, - -2065, -2066, -2067, -2068, -2069, -2070, -2071, -2072, -2073, -2074, -2075, -2076, -2077, -2078, -2079, -2080, - -2081, -2082, -2083, -2084, -2085, -2086, -2087, -2088, -2089, -2090, -2091, -2092, -2093, -2094, -2095, -2096, - -2097, -2098, -2099, -2100, -2101, -2102, -2103, -2104, -2105, -2106, -2107, -2108, -2109, -2110, -2111, -2112, - -2113, -2114, -2115, -2116, -2117, -2118, -2119, -2120, -2121, -2122, -2123, -2124, -2125, -2126, -2127, -2128, - -2129, -2130, -2131, -2132, -2133, -2134, -2135, -2136, -2137, -2138, -2139, -2140, -2141, -2142, -2143, -2144, - -2145, -2146, -2147, -2148, -2149, -2150, -2151, -2152, -2153, -2154, -2155, -2156, -2157, -2158, -2159, -2160, - -2161, -2162, -2163, -2164, -2165, -2166, -2167, -2168, -2169, -2170, -2171, -2172, -2173, -2174, -2175, -2176, - -2177, -2178, -2179, -2180, -2181, -2182, -2183, -2184, -2185, -2186, -2187, -2188, -2189, -2190, -2191, -2192, - -2193, -2194, -2195, -2196, -2197, -2198, -2199, -2200, -2201, -2202, -2203, -2204, -2205, -2206, -2207, -2208, - -2209, -2210, -2211, -2212, -2213, -2214, -2215, -2216, -2217, -2218, -2219, -2220, -2221, -2222, -2223, -2224, - -2225, -2226, -2227, -2228, -2229, -2230, -2231, -2232, -2233, -2234, -2235, -2236, -2237, -2238, -2239, -2240, - -2241, -2242, -2243, -2244, -2245, -2246, -2247, -2248, -2249, -2250, -2251, -2252, -2253, -2254, -2255, -2256, - -2257, -2258, -2259, -2260, -2261, -2262, -2263, -2264, -2265, -2266, -2267, -2268, -2269, -2270, -2271, -2272, - -2273, -2274, -2275, -2276, -2277, -2278, -2279, -2280, -2281, -2282, -2283, -2284, -2285, -2286, -2287, -2288, - -2289, -2290, -2291, -2292, -2293, -2294, -2295, -2296, -2297, -2298, -2299, -2300, -2301, -2302, -2303, -2304, - -2305, -2306, -2307, -2308, -2309, -2310, -2311, -2312, -2313, -2314, -2315, -2316, -2317, -2318, -2319, -2320, - -2321, -2322, -2323, -2324, -2325, -2326, -2327, -2328, -2329, -2330, -2331, -2332, -2333, -2334, -2335, -2336, - -2337, -2338, -2339, -2340, -2341, -2342, -2343, -2344, -2345, -2346, -2347, -2348, -2349, -2350, -2351, -2352, - -2353, -2354, -2355, -2356, -2357, -2358, -2359, -2360, -2361, -2362, -2363, -2364, -2365, -2366, -2367, -2368, - -2369, -2370, -2371, -2372, -2373, -2374, -2375, -2376, -2377, -2378, -2379, -2380, -2381, -2382, -2383, -2384, - -2385, -2386, -2387, -2388, -2389, -2390, -2391, -2392, -2393, -2394, -2395, -2396, -2397, -2398, -2399, -2400, - -2401, -2402, -2403, -2404, -2405, -2406, -2407, -2408, -2409, -2410, -2411, -2412, -2413, -2414, -2415, -2416, - -2417, -2418, -2419, -2420, -2421, -2422, -2423, -2424, -2425, -2426, -2427, -2428, -2429, -2430, -2431, -2432, - -2433, -2434, -2435, -2436, -2437, -2438, -2439, -2440, -2441, -2442, -2443, -2444, -2445, -2446, -2447, -2448, - -2449, -2450, -2451, -2452, -2453, -2454, -2455, -2456, -2457, -2458, -2459, -2460, -2461, -2462, -2463, -2464, - -2465, -2466, -2467, -2468, -2469, -2470, -2471, -2472, -2473, -2474, -2475, -2476, -2477, -2478, -2479, -2480, - -2481, -2482, -2483, -2484, -2485, -2486, -2487, -2488, -2489, -2490, -2491, -2492, -2493, -2494, -2495, -2496, - -2497, -2498, -2499, -2500, -2501, -2502, -2503, -2504, -2505, -2506, -2507, -2508, -2509, -2510, -2511, -2512, - -2513, -2514, -2515, -2516, -2517, -2518, -2519, -2520, -2521, -2522, -2523, -2524, -2525, -2526, -2527, -2528, - -2529, -2530, -2531, -2532, -2533, -2534, -2535, -2536, -2537, -2538, -2539, -2540, -2541, -2542, -2543, -2544, - -2545, -2546, -2547, -2548, -2549, -2550, -2551, -2552, -2553, -2554, -2555, -2556, -2557, -2558, -2559, -2560, - -2561, -2562, -2563, -2564, -2565, -2566, -2567, -2568, -2569, -2570, -2571, -2572, -2573, -2574, -2575, -2576, - -2577, -2578, -2579, -2580, -2581, -2582, -2583, -2584, -2585, -2586, -2587, -2588, -2589, -2590, -2591, -2592, - -2593, -2594, -2595, -2596, -2597, -2598, -2599, -2600, -2601, -2602, -2603, -2604, -2605, -2606, -2607, -2608, - -2609, -2610, -2611, -2612, -2613, -2614, -2615, -2616, -2617, -2618, -2619, -2620, -2621, -2622, -2623, -2624, - -2625, -2626, -2627, -2628, -2629, -2630, -2631, -2632, -2633, -2634, -2635, -2636, -2637, -2638, -2639, -2640, - -2641, -2642, -2643, -2644, -2645, -2646, -2647, -2648, -2649, -2650, -2651, -2652, -2653, -2654, -2655, -2656, - -2657, -2658, -2659, -2660, -2661, -2662, -2663, -2664, -2665, -2666, -2667, -2668, -2669, -2670, -2671, -2672, - -2673, -2674, -2675, -2676, -2677, -2678, -2679, -2680, -2681, -2682, -2683, -2684, -2685, -2686, -2687, -2688, - -2689, -2690, -2691, -2692, -2693, -2694, -2695, -2696, -2697, -2698, -2699, -2700, -2701, -2702, -2703, -2704, - -2705, -2706, -2707, -2708, -2709, -2710, -2711, -2712, -2713, -2714, -2715, -2716, -2717, -2718, -2719, -2720, - -2721, -2722, -2723, -2724, -2725, -2726, -2727, -2728, -2729, -2730, -2731, -2732, -2733, -2734, -2735, -2736, - -2737, -2738, -2739, -2740, -2741, -2742, -2743, -2744, -2745, -2746, -2747, -2748, -2749, -2750, -2751, -2752, - -2753, -2754, -2755, -2756, -2757, -2758, -2759, -2760, -2761, -2762, -2763, -2764, -2765, -2766, -2767, -2768, - -2769, -2770, -2771, -2772, -2773, -2774, -2775, -2776, -2777, -2778, -2779, -2780, -2781, -2782, -2783, -2784, - -2785, -2786, -2787, -2788, -2789, -2790, -2791, -2792, -2793, -2794, -2795, -2796, -2797, -2798, -2799, -2800, - -2801, -2802, -2803, -2804, -2805, -2806, -2807, -2808, -2809, -2810, -2811, -2812, -2813, -2814, -2815, -2816, - -2817, -2818, -2819, -2820, -2821, -2822, -2823, -2824, -2825, -2826, -2827, -2828, -2829, -2830, -2831, -2832, - -2833, -2834, -2835, -2836, -2837, -2838, -2839, -2840, -2841, -2842, -2843, -2844, -2845, -2846, -2847, -2848, - -2849, -2850, -2851, -2852, -2853, -2854, -2855, -2856, -2857, -2858, -2859, -2860, -2861, -2862, -2863, -2864, - -2865, -2866, -2867, -2868, -2869, -2870, -2871, -2872, -2873, -2874, -2875, -2876, -2877, -2878, -2879, -2880, - -2881, -2882, -2883, -2884, -2885, -2886, -2887, -2888, -2889, -2890, -2891, -2892, -2893, -2894, -2895, -2896, - -2897, -2898, -2899, -2900, -2901, -2902, -2903, -2904, -2905, -2906, -2907, -2908, -2909, -2910, -2911, -2912, - -2913, -2914, -2915, -2916, -2917, -2918, -2919, -2920, -2921, -2922, -2923, -2924, -2925, -2926, -2927, -2928, - -2929, -2930, -2931, -2932, -2933, -2934, -2935, -2936, -2937, -2938, -2939, -2940, -2941, -2942, -2943, -2944, - -2945, -2946, -2947, -2948, -2949, -2950, -2951, -2952, -2953, -2954, -2955, -2956, -2957, -2958, -2959, -2960, - -2961, -2962, -2963, -2964, -2965, -2966, -2967, -2968, -2969, -2970, -2971, -2972, -2973, -2974, -2975, -2976, - -2977, -2978, -2979, -2980, -2981, -2982, -2983, -2984, -2985, -2986, -2987, -2988, -2989, -2990, -2991, -2992, - -2993, -2994, -2995, -2996, -2997, -2998, -2999, -3000, -3001, -3002, -3003, -3004, -3005, -3006, -3007, -3008, - -3009, -3010, -3011, -3012, -3013, -3014 - ], - [ - 0, 295, 300, 304, 74, 309, 136, 136, 314, 74, 318, 74, 321, 324, 74, 326, 329, 333, 338, 343, 348, 353, 357, - 361, 365, 367, 372, 375, 380, 384, 389, 393, 398, 402, 407, 409, 412, 416, 418, 422, 425, 429, 432, 436, 17, - 441, 444, 447, 451, 453, 458, 462, 467, 470, 474, 477, 480, 483, 486, 489, 492, 495, 498, 501, 504, 507, 510, - 513, 516, 519, 522, 525, 528, 531, 534, 537, 540, 543, 546, 550, 553, 556, 559, 562, 565, 569, 572, 576, 579, - 103, 32, 103, 587, 591, 594, 597, 600, 604, 607, 610, 614, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, - 13, 12, 13, 12, 12, 12, 12, 12, 12, 12, 13, 13, 12, 17, 12, 12, 26, 17, 13, 12, 12, 12, 12, 12, 12, 13, 13, 13, - 61, 17, 12, 12, 17, 12, 17, 13, 624, 628, 633, 637, 641, 62, 17, 647, 652, 657, 662, 13, 666, 670, 12, 12, 12, - 26, 12, 12, 12, 12, 12, 26, 12, 12, 12, 17, 43, 12, 12, 12, 26, 12, 12, 12, 26, 12, 13, 675, 679, 682, 686, 690, - 693, 696, 698, 700, 704, 707, 712, 716, 721, 726, 730, 12, 12, 12, 12, 734, 12, 12, 12, 12, 26, 13, 12, 12, 12, - 12, 12, 12, 12, 12, 17, 12, 737, 742, 747, 751, 756, 761, 765, 770, 772, 776, 781, 785, 788, 793, 798, 12, 61, - 802, 806, 26, 13, 811, 32, 814, 818, 822, 159, 827, 830, 834, 838, 842, 845, 848, 851, 854, 858, 863, 866, 870, - 874, 879, 883, 886, 891, 894, 898, 902, 906, 910, 915, 918, 921, 924, 929, 933, 937, 940, 944, 32, 948, 32, 62, - 32, 951, 954, 957, 960, 964, 968, 971, 975, 979, 982, 985, 988, 992, 996, 1001, 1006, 1011, 1014, 1018, 1021, - 1024, 1027, 1031, 1035, 1039, 12, 12, 13, 12, 13, 17, 12, 12, 52, 12, 12, 43, 12, 17, 12, 12, 12, 12, 12, 12, - 52, 12, 26, 26, 12, 12, 12, 1045, 1049, 1053, 1057, 1061, 1066, 1070, 1075, 1080, 1085, 1090, 1095, 1100, 1105, - 1110, 1115, 1119, 1124, 1128, 1131, 1134, 1138, 1143, 1148, 1153, 1158, 17, 17, 13, 1163, 1168, 1171, 12, 12, - 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 12, 13, 12, 12, 12, 12, 1173, 1178, - 1181, 1185, 1190, 1195, 1200, 1205, 1210, 1214, 1218, 1222, 1225, 1228, 1232, 1235, 1238, 1242, 1246, 1250, - 1253, 1257, 1261, 1264, 1266, 52, 1270, 1275, 1279, 1283, 1288, 1291, 1294, 1298, 1301, 1305, 1308, 1313, 1318, - 1323, 1328, 1333, 1338, 12, 12, 12, 78, 13, 17, 26, 12, 13, 12, 12, 78, 17, 1343, 1347, 1352, 1356, 43, 1360, - 1363, 1368, 1372, 1375, 66, 1381, 1386, 1391, 53, 1397, 1401, 1406, 1410, 1412, 1415, 1419, 1422, 1426, 1430, - 1434, 1438, 1441, 1446, 1450, 79, 1454, 1459, 1463, 1468, 1473, 1476, 1480, 1484, 1488, 1492, 53, 1497, 1502, - 1507, 1512, 1515, 46, 1520, 1525, 1528, 1533, 1536, 1541, 1545, 1549, 1553, 1557, 1560, 1565, 1570, 1575, 1579, - 1584, 1589, 1594, 1598, 1603, 13, 1608, 1612, 1616, 1620, 1624, 1627, 1630, 1633, 1637, 1641, 1645, 1650, 1652, - 1657, 1662, 1667, 1672, 1675, 1677, 1679, 1682, 1685, 1690, 1693, 1697, 1699, 1702, 1705, 1709, 1712, 1714, - 1717, 1722, 1726, 1730, 1733, 1736, 1739, 1742, 1745, 1748, 1752, 1755, 1758, 1762, 1766, 1769, 1773, 1778, 30, - 1784, 176, 1789, 1793, 1797, 1802, 1806, 1809, 1812, 1817, 179, 1821, 20, 1827, 18, 46, 18, 1833, 1837, 1842, - 1845, 1849, 1853, 1858, 1863, 1868, 1871, 46, 20, 20, 46, 53, 53, 54, 180, 80, 181, 80, 1879, 1883, 1887, 1891, - 1894, 1899, 1903, 1906, 1910, 1913, 17, 30, 20, 1918, 1923, 1928, 1933, 20, 1937, 1942, 1947, 1952, 1956, 1961, - 1965, 1968, 1973, 1978, 1982, 80, 1987, 1990, 1994, 1999, 2003, 2008, 2013, 2018, 2022, 2027, 2030, 2035, 2040, - 2043, 2046, 2049, 82, 2055, 2059, 18, 2062, 2066, 2071, 2074, 2078, 2082, 46, 2086, 2089, 2093, 2098, 30, 13, - 2103, 2108, 2113, 2118, 2121, 2125, 2129, 2133, 2138, 2141, 2144, 2148, 2152, 2157, 2162, 2165, 2169, 2173, - 2177, 2180, 2184, 2188, 2193, 2198, 2202, 2206, 2208, 2212, 2216, 2220, 2225, 2229, 2234, 2239, 2242, 2245, - 2250, 2253, 2257, 2262, 2266, 2270, 2275, 2279, 2284, 2288, 2292, 2295, 2299, 2302, 2307, 2312, 2316, 2321, - 2324, 2327, 2332, 2336, 2340, 2344, 2348, 103, 2352, 2356, 2360, 2364, 2368, 2372, 2376, 2381, 2384, 2389, 2394, - 2398, 2401, 2406, 2411, 2414, 2419, 2424, 2429, 2434, 2439, 2442, 2447, 2451, 2456, 2461, 2464, 2468, 2472, - 2477, 2482, 13, 2487, 2491, 2494, 2498, 2503, 2508, 2512, 2516, 2521, 2526, 2531, 2536, 2540, 2544, 2549, 2554, - 2558, 2563, 2568, 2572, 2576, 2580, 2584, 2588, 2592, 2596, 2600, 2605, 2610, 2615, 2619, 2624, 2628, 82, 2631, - 2634, 2638, 2641, 2644, 2648, 2653, 2656, 2661, 2664, 2669, 2673, 2677, 69, 2682, 2686, 2690, 2695, 2698, 2702, - 2707, 2712, 2717, 2722, 2726, 54, 2730, 2733, 20, 2738, 2742, 20, 2747, 2750, 2754, 2757, 2762, 30, 2765, 2769, - 2773, 2776, 2780, 2785, 2790, 2794, 2797, 2802, 2807, 2811, 2815, 2819, 2824, 2829, 2834, 2838, 2843, 2848, - 2852, 2857, 2861, 2865, 2869, 2874, 2879, 2884, 2889, 2894, 2898, 2903, 2908, 2911, 2915, 2920, 2925, 2929, - 2933, 2937, 2941, 2944, 2948, 2952, 2957, 2962, 2967, 47, 2973, 2976, 2981, 2986, 2990, 2993, 2997, 26, 3002, - 3007, 3012, 3015, 3020, 3025, 3030, 3035, 3037, 3041, 3045, 3049, 3054, 3059, 3063, 3066, 3070, 3074, 3078, - 3082, 3086, 3090, 3095, 3100, 3105, 3109, 3113, 3117, 3121, 52, 3125, 3129, 3132, 3136, 3141, 3145, 3149, 3154, - 3157, 3161, 3166, 3170, 3173, 3176, 3180, 3184, 3188, 3193, 3197, 3202, 3206, 3211, 3216, 3221, 3226, 3229, - 3234, 3238, 3243, 3248, 3253, 3256, 3261, 3266, 3271, 3276, 3280, 3284, 3288, 3292, 3297, 3301, 3305, 3310, - 3315, 3319, 3322, 3327, 3332, 3337, 3342, 3346, 3351, 3356, 3360, 3363, 3367, 3370, 3375, 3379, 3382, 3385, - 3389, 3394, 3399, 3404, 3409, 3413, 3417, 54, 3421, 3426, 3430, 3434, 13, 3438, 3442, 3446, 3451, 3456, 3461, - 3466, 3470, 3475, 3479, 3484, 3489, 3493, 3498, 3502, 79, 79, 3507, 3510, 3515, 3520, 3524, 3528, 3532, 3535, - 3540, 3543, 3548, 3552, 3557, 3561, 47, 3565, 3569, 3573, 3577, 3581, 3585, 3588, 3592, 3597, 3601, 3604, 3609, - 3614, 12, 3619, 3624, 3629, 3633, 3637, 3641, 3644, 3648, 3652, 3657, 3660, 3665, 3670, 3675, 3679, 3682, 3686, - 3691, 3696, 3701, 3705, 3710, 3715, 30, 3719, 3724, 13, 3729, 3734, 3738, 3743, 3747, 3751, 3755, 47, 3759, - 3763, 3767, 3770, 3775, 3778, 3783, 3788, 3793, 3797, 18, 3801, 3804, 3807, 3810, 3814, 3819, 3823, 3827, 3832, - 43, 3837, 3841, 3845, 3849, 3852, 3856, 3861, 3866, 3871, 3876, 3881, 66, 3886, 3890, 66, 20, 3894, 3897, 3900, - 3903, 3908, 3912, 3917, 3922, 3925, 3930, 3934, 3937, 3942, 3946, 3951, 3954, 3959, 3963, 3967, 3971, 3975, - 3980, 3983, 3987, 3991, 3996, 4000, 4003, 4008, 4013, 4018, 4023, 4028, 4033, 4037, 4041, 4045, 4050, 4053, - 4057, 4062, 4066, 4069, 4074, 4079, 4084, 4088, 4093, 4097, 4102, 4107, 4112, 4116, 4121, 4125, 4130, 4135, - 4139, 4143, 4147, 4151, 4156, 4160, 4165, 4168, 4173, 4177, 4181, 4185, 4190, 4194, 4199, 4204, 4209, 4214, - 4219, 4224, 4229, 4234, 4237, 4241, 4245, 4250, 4255, 4260, 4265, 4270, 4275, 4280, 4285, 4290, 4295, 4300, - 4304, 4309, 4313, 4318, 4323, 4328, 4333, 4338, 4343, 4348, 4352, 4357, 4362, 4367, 4372, 4376, 4381, 4385, - 4390, 4394, 4399, 4404, 4409, 4413, 4418, 4423, 4428, 4433, 4438, 4441, 4446, 4451, 4455, 4460, 4465, 4469, - 4474, 4478, 4483, 4487, 4491, 4496, 4501, 4506, 4511, 4516, 4521, 4526, 4530, 4534, 4539, 4544, 4548, 4553, - 4558, 4562, 4567, 4572, 4577, 4582, 4587, 4591, 4596, 4600, 47, 18, 4605, 18, 4608, 4612, 4615, 4620, 4625, - 4630, 4635, 4640, 4644, 4649, 4652, 4656, 30, 4661, 4665, 4669, 4673, 4676, 4679, 4682, 4687, 4691, 4695, 4697, - 180, 18, 4700, 4703, 4708, 4712, 4716, 30, 4720, 4724, 4728, 4733, 4737, 4742, 4746, 4750, 4755, 4760, 4765, - 4770, 4775, 4779, 4783, 4787, 4791, 4796, 4801, 13, 4806, 4810, 4814, 4819, 4824, 4829, 4833, 4837, 4840, 4845, - 4848, 4852, 4856, 4859, 4864, 4868, 4872, 4877, 4882, 4886, 43, 4890, 4895, 4900, 4904, 4908, 4912, 4915, 4919, - 4924, 13, 4929, 4932, 4937, 4942, 4946, 4949, 26, 4951, 4956, 4960, 4963, 4967, 80, 4972, 4976, 4980, 4984, - 4988, 4992, 4996, 5001, 5005, 5010, 5015, 5018, 5022, 5026, 5030, 5034, 5039, 5042, 5046, 17, 5050, 17, 5054, - 5058, 5061, 5065, 5069, 5074, 5077, 5082, 5086, 5090, 5095, 5100, 5104, 5107, 5111, 5114, 5119, 5123, 5126, - 5129, 5133, 5137, 5142, 5147, 5151, 5154, 5158, 5162, 5166, 5170, 5175, 5178, 5181, 5186, 5191, 5196, 5199, - 5202, 5206, 5210, 5215, 5219, 5224, 5229, 5233, 5238, 5243, 5247, 5251, 5255, 5259, 5263, 5267, 5271, 5276, - 5279, 5282, 5287, 5292, 5295, 5299, 5302, 5306, 5310, 5315, 5320, 5324, 5328, 5333, 5337, 5341, 5346, 5351, - 5356, 5359, 5363, 5368, 5372, 5377, 5382, 5386, 5391, 5395, 5400, 5405, 5409, 5414, 5418, 5423, 5426, 5431, - 5435, 5439, 5442, 5445, 5450, 5454, 5459, 5464, 5468, 5472, 5477, 5482, 5487, 5491, 5496, 5501, 5506, 5511, - 5516, 46, 20, 54, 5521, 5526, 20, 5530, 5534, 5538, 5542, 5546, 5551, 5555, 5559, 5564, 5568, 5572, 5576, 5581, - 5585, 5589, 5594, 5598, 5601, 5606, 5611, 5615, 5619, 5624, 5629, 5633, 5638, 5643, 5646, 5651, 5656, 5659, - 5664, 5667, 5670, 5673, 5676, 5679, 5682, 5685, 5688, 5691, 5694, 5697, 5700, 5703, 5706, 5709, 5712, 5715, - 5718, 5721, 5724, 5727, 5730, 5734, 5737, 5740, 5745, 5750, 5755, 5760, 5764, 5768, 5773, 5777, 5782, 5786, 18, - 5790, 5795, 5800, 5805, 5810, 5815, 5820, 5824, 5827, 5832, 5837, 20, 5841, 5844, 5848, 5852, 5857, 5861, 5864, - 5867, 5872, 5876, 5880, 5884, 5889, 5894, 5898, 5902, 5905, 5908, 18, 5913, 5917, 5921, 5926, 5931, 13, 5935, - 5939, 5944, 5948, 5952, 5957, 5961, 5964, 5966, 5970, 5974, 5977, 5982, 5985, 5989, 5993, 5998, 6002, 6007, - 6011, 6015, 6018, 6023, 6028, 6032, 69, 20, 6036, 6041, 6045, 6049, 6053, 6058, 6063, 6068, 6073, 6076, 6080, - 6085, 6089, 6092, 6096, 6100, 6104, 6109, 6113, 6118, 6123, 6127, 6132, 6137, 6142, 6146, 6150, 6155, 47, 6160, - 20, 6162, 6167, 6170, 6175, 82, 6180, 6185, 6189, 6194, 6199, 6203, 6207, 6211, 6216, 6221, 53, 6225, 6228, - 6232, 6237, 26, 6240, 6245, 6250, 6255, 6260, 6264, 6268, 6273, 6278, 6282, 6287, 6292, 6297, 6300, 6303, 6307, - 6312, 6315, 6320, 82, 6325, 6330, 6334, 6338, 6343, 6347, 6352, 6355, 6360, 6365, 6369, 6374, 6379, 6384, 6389, - 6394, 6399, 6404, 6409, 6411, 6416, 6421, 6425, 6430, 6435, 6439, 6443, 6447, 6451, 6456, 6461, 6466, 6470, - 6475, 6478, 6483, 6487, 6491, 6494, 6498, 6501, 61, 6504, 6509, 6514, 6519, 6523, 6526, 6531, 6535, 6540, 6544, - 6548, 6552, 6556, 6561, 6566, 6571, 6575, 6578, 6583, 6588, 6592, 6597, 6600, 6604, 6607, 6611, 6616, 6621, - 6626, 6628, 6632, 6636, 6640, 6644, 6648, 6653, 18, 6658, 6662, 6666, 18, 6671, 6676, 6679, 6684, 6689, 6694, - 6699, 6701, 6705, 6708, 6712, 6717, 6722, 6727, 6732, 6737, 6740, 6744, 20, 6748, 6751, 6756, 6761, 6765, 6770, - 6774, 6779, 6784, 6789, 6794, 6798, 6802, 6806, 6811, 6815, 6820, 6824, 6827, 6832, 6837, 6841, 6844, 6848, - 6851, 6855, 6858, 6861, 6864, 6868, 6871, 6875, 6880, 6885, 6888, 6893, 6898, 6902, 6906, 6911, 6913, 6916, 240, - 6921, 6925, 6930, 18, 6934, 6939, 6944, 6947, 6950, 6953, 6958, 6963, 6967, 6971, 6975, 6979, 6984, 78, 6987, - 6991, 18, 6995, 6999, 7004, 7008, 7013, 7018, 7022, 7027, 7030, 7035, 7039, 7043, 7047, 7051, 7054, 7057, 7061, - 7065, 7070, 7074, 7079, 7083, 7088, 7092, 7097, 7100, 7103, 7107, 7112, 7116, 7119, 7123, 7128, 243, 7132, 7134, - 7136, 243, 7139, 7142, 7146, 7150, 7154, 7157, 7160, 7164, 7169, 7171, 7175, 7179, 7184, 7188, 7193, 7198, 7202, - 52, 7205, 7210, 7214, 7219, 7223, 7227, 7230, 7235, 7239, 7243, 7247, 7252, 7257, 7261, 7266, 7268, 7272, 7276, - 7280, 7284, 7288, 7292, 7295, 244, 7304, 7308, 7312, 7317, 7322, 7327, 7331, 7336, 7341, 7344, 7348, 7352, 7356, - 7360, 7364, 7367, 7370, 7375, 7380, 7384, 7388, 7391, 7396, 7401, 7406, 7411, 7416, 7420, 7424, 7428, 7431, - 7434, 7439, 7443, 7446, 7450, 7455, 7460, 12, 7465, 7467, 7470, 7474, 7479, 7482, 7486, 7491, 7496, 7501, 7505, - 7509, 7513, 7517, 7520, 7525, 7529, 7534, 7538, 7543, 13, 7548, 7552, 7556, 7558, 7561, 7566, 7571, 7576, 7579, - 7583, 7588, 7592, 7596, 7600, 247, 7606, 7611, 7615, 7619, 7623, 7626, 7631, 7636, 7641, 7646, 7650, 7654, 7658, - 7663, 7667, 7672, 7677, 7682, 7686, 7690, 7694, 7699, 7703, 249, 7707, 250, 7713, 7717, 7721, 7724, 7728, 7732, - 7737, 7741, 7746, 7751, 7756, 7761, 7765, 7769, 7773, 7776, 7780, 7785, 7790, 7795, 7799, 7804, 7809, 7813, - 7818, 7823, 7827, 7831, 7836, 7841, 7846, 7850, 7855, 7860, 7865, 7870, 7873, 7878, 7883, 7888, 17, 7893, 7896, - 17, 7900, 7904, 7908, 7913, 7916, 7920, 7925, 7930, 7933, 7937, 7941, 7944, 7949, 7953, 7958, 7963, 7967, 7972, - 7976, 7981, 7985, 7990, 7994, 7999, 8003, 8007, 8011, 8015, 8020, 8025, 8030, 8035, 8040, 8045, 8050, 8053, - 8057, 8061, 8066, 8071, 8075, 8078, 61, 8082, 8085, 8090, 181, 47, 8095, 8100, 8105, 8109, 255, 8115, 247, 8118, - 8123, 18, 8127, 8132, 8136, 8139, 8144, 8149, 8153, 8158, 8161, 8165, 8170, 8174, 8179, 8183, 8187, 8192, 8197, - 8201, 13, 8204, 8209, 8214, 8217, 8221, 8226, 8230, 250, 8235, 8240, 8245, 8249, 18, 8254, 18, 8258, 8263, 244, - 8268, 240, 20, 8272, 8277, 8281, 8286, 8289, 8293, 8296, 20, 8301, 8304, 8309, 30, 8313, 8317, 256, 47, 8322, - 8326, 8331, 8335, 8339, 8344, 8347, 8350, 8354, 8358, 8361, 20, 18, 8366, 8370, 30, 257, 8374, 8377, 8382, 8387, - 8392, 8397, 8401, 8404, 8409, 46, 8414, 8419, 8424, 18, 8428, 8433, 8438, 8441, 8443, 8447, 8451, 8455, 8458, - 8462, 8467, 8471, 8476, 8480, 8483, 8487, 8491, 8496, 8501, 8504, 8509, 8514, 8519, 8524, 8528, 8533, 8538, - 8542, 8547, 8552, 8556, 30, 8561, 20, 8564, 8569, 8573, 8578, 257, 54, 8583, 18, 8587, 8592, 8597, 8601, 8606, - 8611, 8616, 8621, 8626, 8629, 54, 8634, 8639, 8642, 8647, 8650, 255, 8653, 8658, 8662, 8665, 8669, 8674, 8677, - 8682, 8686, 8691, 8695, 8699, 8703, 8707, 8712, 8715, 8720, 8724, 8728, 8733, 249, 8738, 8743, 8748, 8753, 8758, - 8763, 8768, 8772, 8776, 8780, 8784, 176, 8789, 8792, 8795, 8799, 8804, 8808, 8811, 8815, 8818, 8822, 8825, 8828, - 8833, 8837, 8841, 8844, 8849, 18, 69, 8854, 8859, 53, 8862, 8865, 8870, 8875, 8878, 8883, 8888, 8893, 8898, - 8903, 8908, 8911, 8916, 8920, 8925, 8929, 8934, 8937, 8942, 8946, 8950, 8954, 8958, 8963, 8967, 8971, 8976, - 8981, 8986, 8989, 8994, 8998, 9002, 9007, 9010, 9013, 9018, 9023, 9026, 9030, 9034, 9038, 9043, 9048, 9053, - 9058, 9062, 9067, 9072, 9076, 9080, 9083, 9087, 9091, 9095, 9100, 9104, 9109, 9113, 9118, 30, 9121, 9125, 9130, - 9133, 9138, 9142, 9146, 9151, 43, 9156, 9161, 9166, 9170, 9174, 9176, 9180, 9185, 9189, 9194, 9198, 9202, 9207, - 9211, 9215, 9219, 9223, 66, 9226, 9230, 9235, 9240, 9245, 9250, 9253, 9258, 9262, 9267, 9272, 9277, 9282, 9286, - 9291, 9293, 9297, 9300, 9304, 9308, 9312, 9316, 9321, 9325, 9329, 9333, 9337, 9341, 9344, 9348, 9352, 9356, - 9360, 9365, 9369, 9374, 69, 66, 256, 9379, 179, 69, 9383, 9387, 9392, 9397, 9402, 9406, 9411, 9415, 9420, 9424, - 9428, 9432, 9437, 9442, 9447, 9451, 9454, 9458, 9461, 9465, 9470, 9475, 9480, 9485, 9488, 9491, 79, 9496, 17, - 9501, 9505, 9509, 9514, 9519, 9524, 9529, 9534, 9537, 9540, 9544, 9547, 9552, 9556, 9561, 9566, 9570, 9573, - 9577, 9581, 9586, 9590, 52, 9594, 9598, 9601, 9606, 9610, 9614, 9617, 9622, 9626, 9630, 9635, 9639, 9642, 9647, - 9652, 9655, 9660, 9664, 9667, 9671, 9676, 9681, 9686, 9690, 9694, 9698, 9703, 9706, 9711, 9714, 9718, 9722, - 9726, 9730, 9735, 9739, 9742, 9747, 9751, 9756, 9761, 9765, 9770, 9774, 9779, 9784, 32, 32, 32, 62, 32, 265, - 265, 9791, 9794, 9798, 9802, 9806, 62, 62, 32, 9811, 13, 17, 13, 26, 9815, 13, 61, 9818, 9823, 9827, 9831, 9836, - 9840, 9843, 9848, 9852, 9857, 9862, 9865, 9869, 9873, 9877, 9882, 9887, 9891, 9895, 9899, 9904, 9909, 9914, - 9919, 9923, 9928, 9933, 9938, 9942, 9945, 9948, 9952, 9956, 9960, 9963, 9967, 9970, 9973, 9977, 9980, 159, 9983, - 9986, 9991, 9996, 10000, 10005, 10010, 10013, 10016, 10020, 267, 10025, 10028, 10032, 10037, 10041, 10046, - 10050, 10054, 10059, 10064, 10068, 10073, 10078, 10082, 10086, 10090, 10094, 10098, 10101, 10103, 10108, 10112, - 10117, 43, 10121, 10126, 10131, 10136, 10139, 96, 10144, 10147, 10149, 270, 10152, 10154, 10159, 10162, 10166, - 10169, 10172, 10175, 10178, 10181, 10184, 10188, 10191, 10195, 10198, 10202, 10206, 10209, 10213, 10215, 10218, - 10222, 10226, 10229, 10234, 10238, 10242, 10247, 10251, 10254, 10257, 10260, 10264, 10266, 10270, 10273, 10277, - 10281, 10285, 10290, 10295, 10299, 10303, 10307, 10311, 10315, 10319, 10321, 10324, 10328, 10333, 10338, 10342, - 10347, 10351, 10354, 10359, 10362, 10366, 10369, 10372, 10377, 10380, 10385, 10389, 10393, 10396, 10399, 10402, - 10405, 10409, 10414, 10418, 10423, 10428, 10433, 10438, 10443, 10446, 10449, 10453, 10458, 10462, 10465, 10469, - 10473, 10478, 10483, 10487, 10492, 10496, 10500, 10503, 10507, 10511, 10516, 10521, 10526, 10531, 10536, 10540, - 10543, 10546, 10549, 10553, 10558, 10563, 10567, 10571, 10574, 10578, 10583, 10588, 10591, 10595, 10599, 10602, - 10605, 100, 279, 270, 10610, 10615, 10620, 10625, 267, 10629, 10633, 10636, 10641, 10645, 10648, 10653, 10657, - 281, 10661, 10666, 10670, 96, 10675, 282, 282, 100, 10678, 10682, 100, 10686, 283, 10693, 10698, 10703, 10707, - 10711, 10714, 10716, 279, 10719, 284, 284, 10723, 96, 10726, 10729, 10733, 10738, 10740, 10744, 10749, 10753, - 10757, 10761, 10765, 10770, 10773, 10778, 10782, 10787, 10791, 10794, 10798, 10801, 10804, 10809, 10813, 10818, - 10822, 10827, 10831, 10835, 10837, 10842, 10845, 10849, 10851, 10856, 290, 10859, 10862, 10866, 10870, 10874, - 10879, 10883, 10888, 10892, 10895, 10898, 10901, 10906, 10910, 10914, 10917, 10921, 10925, 10929, 10933, 10938, - 283, 10942, 10945, 10950, 10954, 10958, 10962, 10967, 10969, 10974, 10977, 10982, 10987, 10992, 10996, 290, - 11000, 11003, 11007, 11010, 11012, 11017, 11019, 11023, 11028, 11033, 11037, 11042, 11046, 11050, 11053, 11058, - 11061, 11065, 11068, 11071, 11076, 11081, 11086, 11090, 11095, 11099, 11104, 11108, 11113, 11118, 11123, 11128, - 11132, 11136, 96, 100, 11141, 11146, 11150, 11154, 11159, 11163, 11166, 11170, 11173, 11177, 11181, 11185, - 11188, 11191, 11194, 11196, 11199, 11204, 11209, 281, 11213, 11217, 78, 11221, 11224, 11229, 11233, 292, 11237, - 11240, 11244, 11248, 11251, 11254, 292, 11259, 11262, 11265 - ], - [1, 3, 296], - [0, 297, 298, 299, 10], - [0, -809, -2387, -3019, -682, -1967, -3020, -567, -3021, -3022, -1552, -2055, -3023, -1311, -2030, -2113, -3024], - [ - 0, -705, -888, -1616, -664, -1107, -1521, -2162, -2466, -668, -1344, -3025, -1471, -1654, -2006, -2074, -2210, - -2550, -915, -932, -1548, -1666, -2093, -2177, -2388, -2439, -674, -795, -928, -1889, -2379, -2501, -522, -679, - -923, -1077, -1376, -1646, -1783, -1942, -3026, -2378, -3027, -3028, -1003, -3029, -1978, -3030, -2016, -2019, - -3031, -2281, -2376, -3032, -527, -778, -3033, -3034, -2410, -23, -3035, -3036, -3037, -1482, -1534, -1600, - -3038, -2040, -3039, -3040, -3041, -518, -528, -534, -1543, -1588, -1890, -1938, -2043, -2275, -2516, -305, - -3042, -3043, -3044, -1492, -3045, -3046, -556, -1906, -1908, -3047, -2285, -86, -3048, -3049, -3050, -2015, - -3051, -263, -3052, -3053, -558, -3054, -3055, -1962, -2044, -3056, -3057, -3058, -3059, -3060, -3061, -3062, - -560, -1601, -2505, -3063, -3064, -969, -977, -1491, -2052, -3065, -3066, -440, -3067, -562, -3068, -958, -3069, - -3070, -539, -3071, -1475, -739, -3072, -940, -962, -963, -1490, -3073, -3074, -3075, -916, -2013, -2017, -3076, - -3077, -3078, -3079, -1899, -3080, -428, -1897, -3081, -3082, -1017, -3083, -3084, -3085, -3086, -3087, -555, - -535, -3088, -3089, -427, -661, -3090, -3091, -26, -547, -741, -3092 - ], - [0, -3093, -3094, -2634, -3095, -3096, -2006, -3097, -3098, -3099, -3100], - [1, 3, 301], - [0, 302, 0, 303, 11], - [0, -469, -2153, -1864, -2231, -470, -1461], - [0, -3101, -3102, -475, -3103, -3104, -3105], - [1, 3, 305], - [0, 306, 0, 307, 9], - [0, -1816, -2153, -1461, -1588, -2], - [0, -3101, -3102, -475, -3106, -3107, -3104, -3108, -3109, -3105, -3110, -3111], - [0, 33, 0, 7, 5], - [1, 3, 310], - [0, 311, 0, 312, 4], - [0, -2387, -1839], - [0, -475, -3112, -3095, -3113, -3114], - [0, 33, 0, 7, 4], - [1, 3, 315], - [0, 316, 37, 317, 4], - [0, -2387, -2550, -2177, -679, -23, -2080, -742, -3115], - [0, -475, -3116], - [1, 3, 319], - [0, 320, 0, 7, 11], - [0, -2387, -3117], - [1, 3, 322], - [0, 33, 0, 323, 9], - [0, -475, -3118, -3119, -3098], - [1, 3, 325], - [0, 33, 0, 7, 6], - [1, 3, 327], - [0, 328, 0, 7, 4], - [0, -3120, -2387], - [1, 3, 330], - [0, 33, 331, 332, 10], - [0, -3121], - [0, -475, -3122], - [1, 3, 334], - [0, 335, 336, 337, 5], - [0, -809, -2004, -682, -567, -3123, -3124, -3125, -3126, -3127, -3128, -2639, -3129, -3130, -3131, -3132], - [ - 0, -485, -1107, -1415, -2006, -932, -2388, -3133, -2375, -1662, -767, -3134, -2019, -533, -3135, -1939, -2028, - -2410, -23, -3136, -1534, -3137, -3040, -528, -726, -2034, -44, -3138, -3139, -3140, -3141, -3142, -3143, -3144, - -2052, -3145, -3146, -3147, -3148, -3149, -2013, -3150, -3151, -428, -408, -3152, -3153, -3154, -3155, -3156, - -3157 - ], - [0, -3158, -3099, -2006, -3159, -3095, -3098, -3160, -3161, -3100, -3162, -3163], - [1, 3, 339], - [0, 340, 341, 342, 4], - [0, -1549], - [0, -485, -2006, -1031, -2019, -2410, -3040, -3164, -3052], - [0, -3158, -3099, -2494, -485, -3095, -3098, -3161, -3100, -2006, -3159, -3160], - [1, 3, 344], - [0, 345, 346, 347, 5], - [0, -682, -3165, -3166], - [0, -485, -1107, -2006, -1031, -2019, -2410, -3040, -3052], - [0, -3158, -3099, -2494, -485, -3095, -3098, -3161, -3100, -2006, -3159, -3160, -3167], - [1, 3, 349], - [0, 350, 351, 352, 4], - [0, -3168, -3169], - [0, -2387, -2299, -2402, -2300, -364, -3170, -3171, -2405, -3172, -365], - [0, -3173, -3174, -3175, -3176, -1791, -3177, -3178, -2299], - [1, 3, 354], - [0, 355, 356, 137, 4], - [0, -1107, -2218, -1591, -719, -742, -3179, -3180], - [0, -2177, -23, -3036, -3181, -3182], - [1, 3, 358], - [0, 359, 360, 7, 4], - [0, -3187, -1863, -3188], - [0, -3189, -2269, -3190], - [1, 3, 362], - [0, 363, 364, 138, 4], - [0, -812, -1460, -2177, -3191, -47, -25, -3192, -3193, -46, -3194, -22, -742, -3195, -3196, -3197], - [0, -2392, -2125, -2379, -3198, -3199, -3200, -40, -42, -3201, -3180, -3202, -3203, -3204, -3182], - [1, 3, 366], - [0, 0, 101, 7, 5], - [1, 3, 368], - [0, 369, 370, 371, 5], - [0, -47], - [0, -3189, -22, -3211, -3212, -3188, -3213], - [0, -525, -3214, -3215, -3216, -3217, -25], - [1, 3, 373], - [0, 374, 51, 21, 4], - [0, -3218, -24], - [1, 3, 376], - [0, 377, 378, 379, 5], - [ - 0, -3221, -812, -1496, -3222, -2177, -1442, -2223, -679, -3223, -1044, -3224, -1646, -1783, -1936, -3225, -1864, - -2654, -1125, -1600, -3226, -3227, -3228, -3229, -3230, -3231, -3232, -3233, -3234, -3235, -3236, -3237, -3238, - -3239 - ], - [ - 0, -652, -519, -2392, -2476, -2564, -2162, -2006, -932, -1610, -3240, -2125, -1110, -1942, -2019, -190, -2410, - -3241, -3037, -3242, -3243, -3244, -3245, -3246, -3247, -1603, -3248, -3249, -3250, -3251, -940, -3252, -3253, - -3254 - ], - [0, -3255, -3256, -3257, -856, -3258, -3259, -3260, -3261, -3262, -3161, -898, -3263, -3264, -1599, -3265, -1783], - [1, 3, 381], - [0, 0, 382, 383, 4], - [ - 0, -2832, -2581, -350, -351, -3266, -3267, -3268, -3269, -3136, -3037, -589, -651, -1415, -2127, -2132, -2375, - -2387, -2410 - ], - [0, -775, -3215, -3270, -3271, -3272, -2410, -3273, -3274, -3275, -1644, -3276, -3277], - [1, 3, 385], - [0, 386, 387, 388, 4], - [ - 0, -3278, -3279, -3280, -3281, -3282, -3283, -3284, -3285, -3286, -3287, -3288, -3289, -3290, -3291, -3292, - -3293, -3294, -3295, -3296, -1537, -3297 - ], - [ - 0, -3298, -3299, -3300, -3301, -3302, -3303, -3304, -3305, -3306, -86, -3307, -3308, -3309, -3310, -3311, -3312, - -932, -940, -1344, -1534, -2210, -2410, -3313 - ], - [0, -3314, -488, -856, -3315], - [1, 3, 390], - [0, 391, 0, 392, 9], - [0, -3316, -3317, -3318, -3319, -1123, -3320, -2387], - [0, -3321, -1122, -2006, -3322, -3323, -3324], - [1, 3, 394], - [0, 395, 396, 397, 6], - [0, -2006, -2127, -1967, -23, -3325, -40, -2234, -41, -3326, -3327], - [0, -1415, -932, -2375, -767, -2410, -3136, -3040, -1448, -969, -973, -972], - [0, -3328, -856, -3262, -2006, -3105, -3110], - [1, 3, 399], - [0, 400, 401, 7, 10], - [0, -2177, -983, -3329], - [0, -815, -932, -23, -3330, -426, -2411, -3211, -3331], - [1, 3, 403], - [0, 404, 405, 406, 5], - [0, -24, -3332, -3218], - [0, -23, -46, -3333, -3334, -3219, -3335], - [0, -525, -3220, -3336], - [1, 3, 408], - [0, 139, 51, 21, 10], - [1, 3, 410], - [0, 411, 51, 21, 11], - [0, -24, -3337], - [1, 3, 413], - [0, 414, 415, 21, 4], - [0, -3338, -3197, -24, -3339, -3340], - [0, -23, -3219, -25], - [1, 3, 417], - [0, 139, 101, 21, 5], - [1, 3, 419], - [0, 420, 421, 21, 10], - [0, -2177, -24, -3341, -3342, -3343, -3344], - [0, -1591, -23, -3192, -44, -40, -3345, -3343, -3219], - [1, 3, 423], - [0, 140, 424, 7, 8], - [0, -633, -647, -3346, -2416], - [1, 3, 426], - [0, 427, 428, 7, 4], - [ - 0, -2177, -3347, -3338, -3348, -24, -3342, -3343, -3349, -3350, -3351, -3352, -3353, -3197, -3344, -3354, -3340, - -3355, -3356, -3357, -3358, -3359, -3360, -3361, -3362, -3363, -3364, -3365, -3366, -3367, -3368, -3369, -3370, - -3371, -3372, -3373, -3374, -3375, -3376, -3204, -3377, -3378, -3379, -3380, -3381, -3382, -3383, -3384, -3385, - -3386, -3387, -3388, -3389, -3390, -3391, -3392, -3393, -3394, -3395, -3396, -3397, -3398, -3399, -3400, -3401, - -3402, -3403, -3404, -3405, -3406, -3407 - ], - [0, -23, -46, -3219], - [1, 3, 430], - [0, 431, 51, 7, 4], - [0, -24, -3349, -3408, -3409, -3410, -3411], - [1, 3, 433], - [0, 434, 51, 435, 8], - [0, -3077, -24, -3349, -3412, -3204], - [0, -3413, -2410], - [1, 3, 437], - [0, 438, 439, 7, 4], - [0, -3414, -1591, -3415, -1046, -2234], - [0, -633, -23, -3373, -3204], - [0, 0, 0, 7, 5], - [1, 3, 442], - [0, 443, 0, 7, 5], - [0, -753], - [1, 3, 445], - [0, 446, 51, 7, 4], - [0, -812, -47, -25, -3193, -3194, -22, -3416], - [1, 3, 448], - [0, 449, 450, 7, 6], - [0, -3212, -3188], - [0, -25, -3194, -3211], - [1, 3, 452], - [0, 141, 142, 143, 8], - [1, 3, 454], - [0, 455, 456, 457, 4], - [0, -3442, -1116, -1666, -1969, -2522], - [0, -756, -932, -940, -943, -958, -966, -967, -968, -974, -2250], - [0, -2520, -2905, -3443, -3444, -3445], - [1, 3, 459], - [0, 460, 461, 7, 4], - [ - 0, -3446, -2177, -680, -3447, -910, -1077, -3448, -1863, -479, -3449, -2115, -3450, -3451, -3452, -3453, -3454, - -3455, -3456, -3457, -3458, -3459, -3460, -3461, -3462, -3463, -3464, -3465, -3466 - ], - [0, -1821, -3467, -2269, -3199], - [1, 3, 463], - [0, 464, 465, 466, 4], - [0, -3468, -3469, -195, -196, -197, -682, -1967], - [ - 0, -21, -23, -26, -40, -41, -86, -3307, -3326, -350, -351, -3470, -3471, -3472, -427, -428, -528, -553, -3473, - -932, -962, -969, -970, -1344, -1534, -1942, -2006, -2019, -2127, -3474, -2140, -2174, -2410 - ], - [ - 0, -3475, -2006, -3476, -3160, -3477, -3098, -3478, -3479, -3480, -3481, -3482, -3100, -3483, -3484, -3485, - -3486, -3487 - ], - [1, 3, 468], - [0, 469, 0, 19, 4], - [0, -681, -66, -82], - [1, 3, 471], - [0, 472, 0, 473, 6], - [0, -3493, -2387], - [0, -3494, -3495, -3496, -3264, -3497, -3498, -475, -3499, -3500, -3501, -3095, -3488, -681, -3489], - [1, 3, 475], - [0, 476, 0, 19, 5], - [0, -681, -66, -83, -68, -80, -70], - [1, 3, 478], - [0, 479, 0, 19, 5], - [0, -681, -81, -66, -3502, -83, -68, -80], - [1, 3, 481], - [0, 482, 0, 19, 4], - [0, -681, -81, -66, -3503, -3502, -83, -80], - [1, 3, 484], - [0, 485, 0, 144, 5], - [0, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -65, -3504, -52, -77], - [1, 3, 487], - [0, 488, 0, 144, 4], - [0, -81, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -65, -3504, -52, -77], - [1, 3, 490], - [0, 491, 0, 102, 4], - [0, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -65, -3511, -52, -77], - [1, 3, 493], - [0, 494, 0, 102, 8], - [ - 0, -3512, -73, -74, -62, -71, -79, -72, -80, -70, -63, -3513, -76, -54, -67, -69, -56, -75, -55, -65, -52, - -3514, -77 - ], - [1, 3, 496], - [0, 497, 0, 102, 8], - [0, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -3515, -65, -52, -77], - [1, 3, 499], - [0, 500, 0, 19, 6], - [0, -3516, -681, -3517, -81, -66, -3502, -71, -83, -68, -82, -65], - [1, 3, 502], - [0, 503, 0, 19, 4], - [0, -681, -81, -66, -3502, -71, -83], - [1, 3, 505], - [0, 506, 0, 19, 8], - [0, -3517, -81, -66, -83, -68, -85], - [1, 3, 508], - [0, 509, 0, 59, 6], - [0, -681, -66, -83], - [1, 3, 511], - [0, 512, 0, 145, 11], - [0, -3517, -81, -83, -68, -3519], - [1, 3, 514], - [0, 515, 0, 19, 8], - [0, -681, -66, -83, -82, -65], - [1, 3, 517], - [0, 518, 0, 145, 10], - [0, -3517, -83], - [1, 3, 520], - [0, 521, 0, 19, 4], - [0, -681, -81, -66, -3520, -3503, -80, -64, -3521], - [1, 3, 523], - [0, 524, 0, 19, 10], - [0, -681, -81, -66, -3502, -83, -68, -76], - [1, 3, 526], - [0, 527, 0, 19, 5], - [0, -681, -3517, -81, -66, -3520, -3502, -83, -68, -80, -82, -85, -64], - [1, 3, 529], - [0, 530, 0, 19, 8], - [0, -681, -81, -66, -74, -3502, -83, -68, -70], - [1, 3, 532], - [0, 533, 0, 19, 11], - [0, -681, -3517, -81, -66, -3502, -71, -83, -68, -80, -85, -64], - [1, 3, 535], - [0, 536, 0, 19, 4], - [0, -681, -81, -66, -3512, -3503, -3502, -83, -68, -80, -64], - [1, 3, 538], - [0, 539, 0, 19, 4], - [0, -681, -81, -66, -3520, -3502, -83, -68, -80, -85, -64], - [1, 3, 541], - [0, 542, 0, 19, 4], - [0, -81, -66, -3502, -83, -68], - [1, 3, 544], - [0, 545, 0, 19, 6], - [0, -681, -66, -68, -64], - [1, 3, 547], - [0, 548, 0, 549, 8], - [0, -3493], - [0, -3494, -3495, -3496, -3264, -3497, -3498, -2006, -3159, -3488, -681, -3489], - [1, 3, 551], - [0, 552, 0, 19, 6], - [0, -681, -3517, -81, -66, -3502, -83, -68, -85, -64], - [1, 3, 554], - [0, 555, 0, 19, 11], - [0, -3517, -66, -83, -68], - [1, 3, 557], - [0, 558, 0, 59, 11], - [0, -3517, -3522, -3523, -3524, -3525, -66, -3502, -83, -68, -3526], - [1, 3, 560], - [0, 561, 0, 59, 11], - [0, -66, -83], - [1, 3, 563], - [0, 564, 0, 59, 4], - [0, -3517, -81], - [1, 3, 566], - [0, 567, 0, 568, 4], - [0, -3493, -1549], - [0, -3494, -3495, -3496, -3264, -3497, -3498, -2476, -3527, -3528, -3529, -3488, -681, -3489], - [1, 3, 570], - [0, 571, 0, 59, 4], - [0, -3517, -81, -66, -3503, -3502, -83, -68, -80], - [1, 3, 573], - [0, 574, 575, 146, 5], - [0, -3530, -3531, -3532, -3533, -3534, -3535, -2550], - [0, -3536, -3537, -3149, -3037, -3041, -1077, -3125], - [1, 3, 577], - [0, 578, 0, 147, 5], - [ - 0, -3, -23, -3374, -40, -3538, -3539, -3540, -617, -3541, -674, -679, -714, -719, -755, -3542, -927, -1022, - -1026, -1077, -1107, -1276, -1320, -1349, -1460, -1548, -1577, -3543, -3544, -1610, -1646, -3545, -3546, -3547, - -1863, -3548, -1955, -2177, -2213, -3433, -3549, -2378, -2446, -3550 - ], - [1, 3, 580], - [0, 581, 0, 582, 4], - [0, -3553, -1361], - [0, -3554, -3555, -3161, -997, -3556], - [0, 25, 584], - 1732406400000, - [0, 25, 586], - 1733011200000, - [1, 3, 588], - [0, 589, 590, 148, 9], - [0, -1320], - [ - 0, -21, -23, -40, -3558, -3559, -3560, -2997, -3326, -350, -351, -3561, -3562, -518, -620, -3563, -3564, -699, - -767, -932, -945, -957, -958, -978, -3565, -1110, -1111, -3566, -1320, -3567, -1389, -1412, -1437, -1471, -1473, - -1475, -3568, -1477, -1479, -1481, -3569, -1486, -1547, -1753, -1771, -1889, -1891, -3570, -2125, -2127, -3571, - -3572, -3031, -2195, -2281, -3573, -2334, -3574 - ], - [1, 3, 592], - [0, 0, 0, 593, 4], - [0, -775, -3215], - [1, 3, 595], - [0, 0, 0, 596, 6], - [0, -775, -3579], - [1, 3, 598], - [0, 0, 0, 599, 4], - [0, -775, -3580, -3215], - [1, 3, 601], - [0, 602, 0, 603, 4], - [0, -98, -1931], - [0, -775, -1391, -3581, -3582, -1889, -3583, -3584, -3585], - [1, 3, 605], - [0, 60, 0, 606, 9], - [0, -775, -3586, -3587, -1889, -3583, -3588, -3589, -3590, -3591, -3592], - [1, 3, 608], - [0, 0, 0, 609, 4], - [0, -775, -1931, -3593], - [1, 3, 611], - [0, 612, 613, 149, 5], - [ - 0, -3594, -3595, -3596, -3419, -3597, -3598, -3599, -3600, -3601, -3602, -3603, -3604, -3605, -668, -695, -719, - -812, -3606, -1040, -1107, -3607, -1366, -1394, -1399, -3608, -1566, -3125, -3222, -1640, -1650, -1693, -1959, - -3609, -2177, -3610, -2297, -2400, -3611, -2548, -3612 - ], - [ - 0, -3613, -3614, -3615, -3244, -190, -262, -357, -3035, -3198, -3616, -3617, -3048, -3618, -3619, -3149, -3620, - -3621, -3622, -3623, -3037, -3624, -3199, -3625, -3626, -3627, -3628, -427, -428, -664, -3629, -711, -3630, - -838, -932, -958, -965, -978, -1004, -1077, -3631, -1654, -1689, -1788, -1942, -3632, -2200, -2210, -2211, - -3633, -2359, -2379, -2384, -2402, -2410 - ], - [1, 3, 615], - [0, 616, 617, 618, 4], - [0, -653, -668, -685, -695, -1077, -2375], - [ - 0, -86, -3307, -3048, -3049, -3136, -3637, -3638, -3639, -427, -428, -481, -693, -910, -932, -940, -967, -1344, - -1415, -3640, -1637, -1658, -1847, -1942, -3641, -3642, -2410 - ], - [0, -3643, -856], - [0, 25, 620], - 1730419200000, - [0, 0, 0, 7, 4], - [0, 0, 0, 7, 6], - [0, 0, 0, 7, 11], - [1, 3, 625], - [0, 626, 627, 104, 8], - [ - 0, -3644, -3645, -3646, -3647, -668, -674, -775, -2858, -3648, -3649, -1442, -1548, -1600, -3425, -3650, -3651, - -1608, -3652, -3653, -2161, -2223, -2303, -3654 - ], - [ - 0, -3655, -3656, -3657, -3658, -3659, -3660, -3044, -3661, -3662, -3037, -3663, -3664, -3665, -518, -928, -3666, - -1304, -3667, -3668, -1771, -1889, -1927, -2162, -3669, -2410, -2469 - ], - [1, 3, 629], - [0, 630, 631, 632, 9], - [0, -2387, -2426, -3675, -3676, -3677, -3678, -3679, -3680, -3681], - [0, -2391, -3682, -932, -2469, -1942, -767, -2410, -3037, -3683, -3684, -3664, -3685, -3686, -3687, -3688], - [0, -3689, -3690, -3691, -3692, -3693], - [1, 3, 634], - [0, 75, 635, 636, 4], - [0, -1654, -1942], - [0, -3694, -2414, -1446, -3695, -2402, -3671, -856, -3696], - [1, 3, 638], - [0, 639, 640, 104, 5], - [ - 0, -3697, -3698, -3699, -3700, -3701, -3702, -154, -3703, -3704, -3036, -3705, -3706, -469, -510, -521, -3707, - -668, -865, -1028, -1107, -1304, -1321, -1341, -1442, -1459, -1641, -1645, -1734, -2195, -2205, -2223, -2325, - -3708, -3709, -2488, -2550 - ], - [ - 0, -3710, -3711, -3712, -3660, -3044, -3713, -3037, -3714, -3715, -3041, -427, -428, -528, -928, -932, -972, - -1344, -1534, -1548, -2375, -2379, -2410 - ], - [1, 3, 642], - [0, 643, 644, 104, 6], - [0, -3646, -668, -3648, -3649, -1442, -1548, -1600, -3425, -3650, -3716, -3651, -1608, -3652, -2161, -2223], - [ - 0, -23, -3204, -40, -3659, -3136, -3660, -3044, -3661, -3662, -3717, -3037, -3663, -3718, -3719, -3720, -518, - -528, -928, -3666, -932, -972, -1304, -1415, -3668, -1889, -1927, -1942, -2082, -2375, -2410 - ], - [0, 25, 646], - 1734825600000, - [1, 3, 648], - [0, 649, 650, 651, 4], - [ - 0, -3234, -367, -411, -3721, -617, -668, -686, -724, -3722, -1010, -1028, -1070, -3723, -3724, -1304, -1460, - -1600, -3245, -1601, -3425, -3725, -3726, -1734, -1966, -2162, -3727, -3728, -2231, -2232, -2234, -3729, -2299, - -2446, -3730 - ], - [ - 0, -86, -3307, -3470, -3471, -3731, -3732, -3733, -3734, -3048, -3661, -3662, -3037, -3735, -3736, -3737, -3738, - -3739, -427, -428, -652, -3740, -1077, -1344, -1978, -2080, -2174, -2410 - ], - [0, -3122, -3445, -1334, -3161, -3741, -3742, -3743], - [1, 3, 653], - [0, 654, 655, 656, 10], - [ - 0, -3744, -3745, -3746, -3747, -3748, -3749, -367, -3750, -518, -635, -778, -779, -932, -940, -967, -969, -970, - -1110, -1344, -3751, -1643, -1889, -1908, -1930, -2162, -2163, -2275, -2281, -2282, -3436, -3752, -2335, -2501, - -2503, -2507, -2508 - ], - [0, -3753, -1534], - [0, -3100, -3754, -3755, -3756, -3590, -3551, -3757], - [1, 3, 658], - [0, 659, 660, 661, 9], - [0, -3661, -664, -668, -1551, -1600, -1816, -1951], - [0, -3758, -3035, -3759, -3037, -3760, -1344, -1534, -1942, -2410, -2469], - [0, -891, -3671, -856, -3690, -2410, -3761, -3762], - [1, 3, 663], - [0, 664, 665, 105, 5], - [0, -3341, -44, -3763, -3764, -3765, -3766, -742, -930, -3767, -2231, -3768], - [0, -23, -3769], - [1, 3, 667], - [0, 668, 669, 105, 4], - [0, -160, -3772, -3765, -3773, -3774], - [0, -3775, -2410], - [1, 3, 671], - [0, 672, 673, 7, 5], - [0, -44, -160, -3776, -3765, -3777, -3774], - [0, -3775, -3778, -2006, -2410], - [0, 0, 0, 7, 8], - [1, 3, 676], - [0, 677, 678, 38, 5], - [0, -983], - [ - 0, -652, -1498, -1654, -3779, -932, -1810, -2125, -2127, -2177, -3780, -1942, -2468, -2410, -1772, -3330, -426, - -3781, -2132, -3782, -2139, -428, -3783 - ], - [1, 3, 680], - [0, 0, 0, 681, 5], - [0, -3214, -3784, -932], - [1, 3, 683], - [0, 684, 685, 150, 4], - [ - 0, -3785, -682, -3786, -863, -996, -3787, -3544, -3788, -1610, -1653, -3789, -1848, -2680, -1885, -1955, -1967, - -3790, -2223, -3791, -3792, -3793 - ], - [ - 0, -3794, -3795, -3796, -3035, -3797, -3043, -3798, -3136, -3799, -3800, -3801, -3802, -3037, -3803, -3140, - -3040, -3052, -3804, -3805, -3046, -3806, -3041, -427, -428, -3807, -585, -740, -748, -753, -756, -778, -795, - -915, -2760, -3808, -932, -958, -969, -970, -1067, -1331, -1344, -1415, -1442, -3809, -3810, -1652, -1821, - -1942, -1952, -1992, -2006, -2019, -2024, -2125, -2195, -2214, -2275, -2278, -2375, -2379, -2387, -2410, -3811, - -2435, -2501, -2503, -2505, -2509 - ], - [1, 3, 687], - [0, 688, 689, 151, 4], - [0, -3819], - [0, -41, -409, -3040, -3052, -440, -2006, -2019, -3820, -727], - [1, 3, 691], - [0, 0, 0, 692, 4], - [0, -2651, -3827, -3828, -3829, -3830, -3831, -775, -2162, -3577, -3578, -3832, -3833], - [1, 3, 694], - [0, 0, 0, 695, 9], - [0, -2651, -3827, -3828, -3829, -3834, -3835, -775, -2162, -3577, -3578, -3832, -3833], - [1, 3, 697], - [0, 152, 0, 153, 8], - [1, 3, 699], - [0, 152, 0, 153, 4], - [1, 3, 701], - [0, 0, 702, 703, 6], - [ - 0, -23, -3840, -40, -41, -42, -86, -3307, -190, -195, -3841, -196, -3470, -3842, -3471, -406, -407, -409, -3136, - -3040, -3052, -635, -658, -741, -767, -932, -940, -958, -959, -962, -967, -969, -970, -976, -978, -1110, -1344, - -1415, -1419, -1942, -1952, -2006, -2019, -2125, -2174, -2375, -2379, -2391, -2410, -2411 - ], - [0, -3838, -1064, -2006, -3214, -3839, -3843], - [1, 3, 705], - [0, 106, 154, 706, 9], - [0, -2410, -3161, -3844, -3445, -1818], - [1, 3, 708], - [0, 709, 710, 711, 8], - [0, -3845, -198, -891, -3846], - [ - 0, -3847, -3037, -427, -428, -767, -891, -3848, -932, -933, -935, -940, -958, -962, -967, -1942, -2376, -2379, - -2402, -2410 - ], - [0, -2410, -3161, -891, -3844, -3445], - [1, 3, 713], - [0, 714, 154, 715, 9], - [0, -198, -3849, -3850, -3851, -617, -1465, -2080], - [0, -2410, -3161, -1004, -1818, -3844, -3445], - [1, 3, 717], - [0, 718, 719, 720, 6], - [0, -3852, -3853, -3854, -3855], - [0, -3856], - [0, -1122, -3857, -856, -1599, -3858], - [1, 3, 722], - [0, 723, 724, 725, 5], - [0, -3859, -3860, -3855, -3854], - [0, -3861, -3856], - [0, -858, -1122, -3857, -856, -3862, -1599, -3858], - [1, 3, 727], - [0, 728, 0, 729, 4], - [ - 0, -23, -40, -3863, -3864, -3865, -518, -534, -3866, -753, -767, -778, -779, -1041, -3867, -1643, -1889, -1908, - -3868, -2162, -3869, -2163, -2318, -2437, -2501, -2503 - ], - [0, -2501, -3870, -3871, -3100], - [1, 3, 731], - [0, 732, 733, 155, 6], - [ - 0, -3872, -3873, -3874, -3875, -3876, -3877, -3878, -3879, -3880, -3881, -3882, -3883, -3884, -3885, -3886, - -3887, -3888, -3889 - ], - [0, -3890, -3891, -3892, -3893, -3894, -3895, -3037, -1276, -1435, -2410], - [1, 24, 735], - [0, 25, 736], - 1724872768784, - [1, 3, 738], - [0, 739, 740, 741, 5], - [0, -3896, -1993], - [0, -86, -3307, -3897, -3898, -3470, -3471, -3899, -932, -1344, -1392, -3900, -1534, -1942, -2174, -2469], - [0, -1446, -1942, -3485, -856, -3214], - [1, 3, 743], - [0, 744, 745, 746, 4], - [0, -3901], - [ - 0, -2581, -3902, -3117, -406, -407, -409, -410, -3037, -3040, -3903, -3904, -3905, -3906, -440, -469, -3907, - -470, -3908, -3909, -3910, -3911, -3912, -767, -3913, -3914, -3915, -3916, -3917, -1435, -1449, -2926, -1637, - -3918, -3919, -3920, -1771, -2006, -2019, -2023, -2080, -3921, -3922, -2410, -2924, -3923, -2466, -3924, -2469, - -3612, -2564 - ], - [ - 0, -3925, -3926, -3927, -3928, -2023, -3612, -1435, -3921, -2410, -2564, -3923, -3911, -3916, -3929, -3930, - -3912, -3922, -469, -3931, -3908, -3932, -3933, -3914, -3934 - ], - [1, 3, 748], - [0, 749, 38, 750, 4], - [0, -2426], - [0, -3935, -3936, -3937, -3938, -3939, -3940, -3690], - [1, 3, 752], - [0, 753, 754, 755, 5], - [0, -3941, -3942, -3943, -3819, -1549], - [0, -2125, -2476, -2483], - [0, -2476, -3944, -3945, -3100, -3161, -3160, -3112, -3095, -3098, -3113, -3114], - [1, 3, 757], - [0, 758, 759, 760, 4], - [0, -3763, -229, -807, -1549], - [0, -3946, -2125, -2476, -2483], - [0, -2476, -3944, -3945, -3100, -3161, -3160, -3095, -3098], - [1, 3, 762], - [0, 763, 764, 63, 4], - [0, -3947, -2944, -2900, -3948, -3949, -3950, -2202], - [0, -3951, -3952, -3037, -2410], - [1, 3, 766], - [0, 767, 768, 769, 10], - [0, -2387, -1387, -3978], - [ - 0, -1415, -2162, -668, -999, -2184, -3979, -932, -2127, -1077, -1417, -1942, -2281, -3136, -3037, -3980, -3564, - -3981, -3982, -2284, -3983, -3984, -3985, -2891, -3986, -3987, -3988, -3989, -940, -428, -3990, -351, -3991, - -3992, -427 - ], - [0, -1386, -3161, -3993, -3162, -3994, -3995, -3996, -752, -891, -3997, -3998], - [1, 3, 771], - [0, 0, 156, 157, 4], - [1, 3, 773], - [0, 774, 0, 775, 4], - [0, -4003], - [0, -2410, -727, -1788, -4004, -4005], - [1, 3, 777], - [0, 778, 779, 780, 4], - [0, -2852, -4006, -4007, -4008, -682, -4009], - [0, -4010, -367, -407, -409, -410, -3664, -932, -940, -4011, -1449, -2006, -2019, -2410, -2466, -2469], - [0, -3095, -3098, -4012, -3099, -3161, -3100, -4013, -4014, -3159, -2006, -3160, -4015], - [1, 3, 782], - [0, 783, 784, 107, 4], - [ - 0, -4016, -4017, -4018, -4019, -4020, -237, -3037, -480, -668, -680, -4021, -1119, -4022, -4023, -4024, -4025, - -4026, -1426, -4027, -4028, -4029, -4030, -1427, -4031, -4032, -1639, -1950, -2218 - ], - [0, -4033, -4034, -4035, -4036], - [1, 3, 786], - [0, 787, 0, 7, 4], - [0, -4017, -4046, -4047, -4048, -3037, -3041, -668], - [1, 3, 789], - [0, 790, 791, 792, 6], - [0, -4049, -469, -470, -1548], - [ - 0, -234, -4050, -427, -428, -519, -4051, -932, -940, -958, -967, -1449, -1788, -1942, -2074, -4052, -2125, - -2127, -2130, -2142, -2144, -2234, -2379, -2387, -2402, -2410 - ], - [0, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -3926, -4057, -1463, -4058, -4059, -3999, -4060], - [1, 3, 794], - [0, 795, 796, 797, 5], - [0, -4061, -809, -1548], - [ - 0, -3778, -163, -270, -272, -274, -350, -4062, -351, -3561, -3043, -3136, -3040, -3052, -427, -428, -3807, -748, - -915, -932, -940, -958, -967, -969, -1415, -1419, -1449, -1788, -1942, -2006, -2019, -2125, -2127, -2130, -4063, - -4064, -2142, -2144, -2233, -2375, -2376, -2387, -2402, -2410, -2501, -2503, -2505, -238, -240 - ], - [0, -3118, -4065, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], - [1, 3, 799], - [0, 34, 800, 801, 6], - [ - 0, -4066, -3043, -3136, -4067, -3040, -3062, -427, -428, -3807, -767, -915, -932, -940, -958, -967, -969, -1415, - -1449, -1788, -1942, -2006, -2019, -2040, -2074, -4052, -2125, -2127, -2130, -2142, -2144, -2375, -2387, -2402, - -2410, -238 - ], - [0, -2006, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], - [1, 3, 803], - [0, 804, 805, 7, 4], - [ - 0, -3469, -4068, -4069, -4070, -4071, -4072, -4073, -4074, -4075, -4076, -4077, -4078, -4079, -4080, -4081, - -4082, -4083, -4084, -4085, -4086 - ], - [0, -4087, -3136, -1415, -2125, -2410], - [1, 3, 807], - [0, 808, 809, 810, 9], - [ - 0, -482, -567, -668, -725, -4088, -1107, -4089, -1442, -4090, -1572, -1645, -1650, -4091, -2125, -4092, -4093, - -4094, -4095, -4096, -2347, -2433, -2462, -2463, -4097 - ], - [0, -526, -4098, -555, -558, -756, -808, -1451, -1654, -1788, -4099, -2155, -2210, -2250, -2460], - [0, -2162, -3754, -775, -4100, -856, -3485, -4101], - [1, 3, 812], - [0, 0, 0, 813, 10], - [0, -4102, -4103, -4104], - [1, 3, 815], - [0, 816, 817, 158, 5], - [0, -2900], - [0, -231, -4105, -4106, -1536], - [1, 3, 819], - [0, 820, 28, 821, 6], - [0, -2852, -703, -2037, -4118, -2641, -2400], - [0, -3098, -3099, -3100, -3482, -2634, -1713, -2006, -3160, -4119], - [1, 3, 823], - [0, 108, 28, 824, 8], - [0, -4120, -3098, -4121, -3100, -3482, -2634, -1713, -4122, -2006, -4123, -3160, -4119], - [0, 0, 0, 826, 5], - [0, -3100, -3322, -3482, -2634, -1713, -2006, -4124, -4125], - [1, 3, 828], - [0, 0, 28, 829, 6], - [0, -3098, -3959, -3100, -3482, -4126, -2634, -1713, -2006, -3160, -4119], - [1, 3, 831], - [0, 832, 28, 833, 6], - [0, -2662, -2055], - [0, -3098, -3100, -3482, -2634, -1713, -4127, -4128, -4129, -2006, -3160, -4119], - [1, 3, 835], - [0, 836, 0, 837, 4], - [0, -4130, -257], - [0, -2006, -2634, -1713, -3160, -3098, -4119, -3482, -3100, -707, -4131, -4132, -4133], - [1, 3, 839], - [0, 840, 0, 841, 10], - [0, -703, -786], - [0, -2006, -2634, -1713, -3160, -3482, -3100, -906, -3771, -4134], - [1, 3, 843], - [0, 0, 0, 844, 5], - [0, -2006, -2634, -1713, -3482, -3100, -4124, -3322, -4125], - [1, 3, 846], - [0, 847, 0, 160, 4], - [0, -703, -2029, -1887, -1967, -44, -4135, -4136, -4137, -4138, -2055, -1311, -3024], - [1, 3, 849], - [0, 39, 0, 850, 4], - [0, -2006, -3159, -3119, -1613, -3843], - [1, 3, 852], - [0, 0, 853, 161, 4], - [ - 0, -1415, -2446, -1344, -932, -1548, -753, -2379, -2402, -1942, -589, -21, -533, -2410, -23, -3136, -3738, - -1771, -3044, -50, -86, -3268, -40, -977, -2082, -940, -967, -2405, -42, -262, -4139, -428, -3307, -427, -26, - -36, -35 - ], - [1, 3, 855], - [0, 856, 0, 857, 5], - [0, -4145], - [0, -4146, -1599, -4147, -2006, -2093], - [1, 3, 859], - [0, 860, 861, 862, 10], - [0, -264, -263, -834, -1548, -1645, -2114, -2177, -2231, -2410, -4148, -4149, -4150, -4151, -4152], - [0, -4153, -3044, -3200, -3199, -932, -4154, -4155], - [0, -2410, -3816, -4156, -4157, -4158, -3960, -856, -4159, -4160, -3761, -2127, -4161, -3116, -4162, -4163], - [1, 3, 864], - [0, 0, 865, 162, 4], - [0, -932, -4153, -4164], - [1, 3, 867], - [0, 868, 869, 162, 4], - [0, -469, -4166, -2114, -263], - [0, -932, -4167, -3200, -4153, -4164], - [1, 3, 871], - [0, 0, 872, 873, 5], - [0, -4168, -4169, -4170, -4171, -3037], - [0, -4172, -4173, -4174, -4175, -4176, -4177, -4178, -4179], - [1, 3, 875], - [0, 876, 877, 878, 8], - [0, -267], - [0, -265, -4171, -2400], - [0, -4172, -4173, -4174, -4175, -4176, -4177, -4180, -4181, -3816, -4182, -4183, -4184], - [1, 3, 880], - [0, 0, 881, 882, 4], - [0, -4185, -265, -4171, -3037, -4186], - [0, -4172, -4173, -4174, -4175, -4176, -4177, -4187, -2444], - [1, 3, 884], - [0, 0, 0, 885, 5], - [0, -4188, -3100, -4189, -3110], - [1, 3, 887], - [0, 888, 889, 890, 4], - [0, -4190, -4191, -4192, -4193, -4194, -4195], - [ - 0, -86, -3307, -4196, -4197, -3983, -4198, -3617, -4199, -4200, -3037, -4201, -4202, -4203, -4204, -523, -617, - -720, -754, -767, -796, -4205, -1004, -4206, -4207, -1063, -1116, -1278, -1449, -1729, -3246, -2228, -2229, - -4208, -2291, -2293, -2892, -2410, -2426, -2469, -4209, -2817, -4210, -2501, -4211, -2531 - ], - [0, -2105, -4212, -1334, -1342, -2540, -2533, -4213, -4214, -4215, -4216, -3634], - [1, 3, 892], - [0, 39, 0, 893, 4], - [0, -2006, -3159, -4217, -1613, -3119, -3843], - [1, 3, 895], - [0, 896, 0, 897, 6], - [0, -703, -2825, -2690, -1967, -273, -44], - [0, -2006, -3159, -4217, -1613, -3119, -1510], - [1, 3, 899], - [0, 900, 0, 901, 4], - [0, -703, -786, -2029, -2825, -2690, -1967, -273, -44, -2997, -2055, -4218, -3024], - [0, -2006, -3159, -4217, -1613, -3119], - [1, 3, 903], - [0, 904, 0, 905, 9], - [0, -703, -786, -2825, -2690, -1967, -44, -2575, -2689], - [0, -2006, -3159, -4217, -4219], - [1, 3, 907], - [0, 908, 0, 909, 4], - [0, -44, -2690, -3024, -703, -1967, -2055, -4220], - [0, -2006, -3159, -4217, -4221, -1613, -3119, -4222, -4223, -4224], - [1, 3, 911], - [0, 912, 913, 914, 5], - [ - 0, -4225, -4226, -4227, -4228, -4229, -4230, -4231, -4232, -4233, -682, -712, -4234, -4235, -4236, -1107, -1125, - -4237, -4238, -4239, -4240, -4241, -4242, -2095, -4243, -4244, -4245, -4246, -2400, -2427, -2429, -2501, -4247, - -2650 - ], - [ - 0, -4248, -4249, -4250, -4251, -3040, -3046, -518, -726, -2634, -1906, -2006, -2019, -2083, -2318, -2391, -2410, - -4252, -4253, -4254 - ], - [0, -4147, -856, -1713, -1599], - [1, 3, 916], - [0, 917, 0, 109, 9], - [0, -4255, -4256, -2888, -4257], - [1, 3, 919], - [0, 920, 0, 109, 11], - [0, -2387, -276], - [1, 3, 922], - [0, 923, 0, 109, 5], - [0, -2083, -4262, -2087, -2090, -3649, -4263, -4264, -1292, -2429, -4265, -4266, -4267, -668, -4245, -2427, -2268], - [1, 3, 925], - [0, 926, 927, 928, 5], - [0, -4268, -820, -665, -4269], - [ - 0, -664, -616, -1654, -932, -4270, -2125, -4271, -2379, -1098, -1942, -2410, -3035, -3037, -4272, -595, -964, - -958, -940, -967, -428, -4273, -427, -279, -4274, -4275 - ], - [0, -4276, -4277, -4271, -3634], - [1, 3, 930], - [0, 931, 932, 7, 5], - [ - 0, -4278, -4279, -4280, -281, -4281, -4282, -282, -4283, -4284, -4285, -283, -4286, -4287, -4288, -1315, -4289, - -1582, -1645, -1758, -4290, -1767, -4291, -1770, -1831, -4292, -1957, -4293, -4294, -4295, -2177, -2247, -4296, - -4297 - ], - [0, -4298, -4299, -4300, -589, -4301, -1722, -2319, -2325, -4302], - [1, 3, 934], - [0, 935, 29, 936, 5], - [0, -4282, -4283, -1107, -1645], - [0, -1764, -1776, -4303, -687, -4304, -4305], - [1, 3, 938], - [0, 0, 29, 939, 10], - [0, -1764, -687, -1733], - [1, 3, 941], - [0, 942, 943, 7, 6], - [0, -282, -4283, -4306, -1733, -1957, -2518], - [0, -4298, -4300, -4307, -2319], - [1, 3, 945], - [0, 946, 947, 163, 5], - [ - 0, -4308, -4309, -4310, -1600, -1395, -4311, -4312, -4313, -4314, -4315, -4316, -1550, -4317, -2161, -3649, - -4318, -4319, -1554, -4320, -1603, -4321, -4322, -4323, -3430, -4324, -4325 - ], - [0, -1107, -1654, -674, -2250, -4326, -633, -4327, -2251], - [1, 24, 949], - [0, 25, 950], - 1734998400000, - [1, 3, 952], - [0, 953, 0, 64, 4], - [0, -293], - [1, 3, 955], - [0, 956, 0, 64, 10], - [0, -1787, -2387], - [1, 3, 958], - [0, 959, 0, 64, 4], - [0, -300], - [1, 3, 961], - [0, 962, 963, 64, 5], - [0, -4341, -888, -2387, -2177, -2551, -1645, -910], - [0, -1415, -1787], - [1, 3, 965], - [0, 966, 40, 967, 4], - [0, -2387, -297, -293, -1863, -2654, -2383], - [0, -4332, -4342, -4335, -4340, -4343, -4344], - [1, 3, 969], - [0, 970, 40, 164, 4], - [0, -2387, -297, -2177, -293, -2410], - [1, 3, 972], - [0, 973, 0, 974, 9], - [0, -2387, -297, -299, -293], - [0, -4332, -4336, -4348, -4338, -4339, -4340, -4344], - [1, 3, 976], - [0, 977, 40, 978, 11], - [ - 0, -668, -2387, -1353, -2177, -715, -3187, -1864, -293, -1863, -2654, -23, -832, -1461, -1773, -300, -44, -4341, - -40, -2234, -3766, -4349, -42, -38, -33, -3376, -4350 - ], - [0, -4332, -4335, -4336, -4351, -4352, -4340, -4343, -4344], - [1, 3, 980], - [0, 981, 0, 165, 4], - [0, -2387, -297, -299, -293, -295, -4353], - [1, 3, 983], - [0, 984, 40, 165, 8], - [0, -2387, -297, -2571, -4354, -293, -4355, -295, -4356], - [1, 3, 986], - [0, 987, 40, 64, 9], - [0, -1787, -668, -2387, -2177, -910, -1864, -293, -2551, -4341], - [1, 3, 989], - [0, 990, 991, 76, 4], - [0, -302, -4357, -4358, -4359, -812, -2177], - [ - 0, -4360, -3035, -3621, -3037, -3199, -664, -697, -740, -932, -938, -939, -4361, -1111, -1654, -2210, -2379, - -2410 - ], - [1, 3, 993], - [0, 994, 995, 76, 5], - [0, -4357, -4358, -812, -1111, -1401, -2387], - [ - 0, -3035, -4363, -3044, -3621, -3037, -4364, -4365, -664, -740, -932, -938, -939, -4361, -1548, -1654, -1972, - -2379, -2410 - ], - [1, 3, 997], - [0, 998, 999, 1000, 4], - [ - 0, -480, -483, -4366, -692, -812, -888, -1097, -1366, -1401, -1532, -1645, -2177, -2267, -2297, -2654, -2820, - -2525, -2528 - ], - [ - 0, -3307, -3615, -304, -4360, -4367, -4368, -3268, -3035, -4269, -4369, -3198, -4370, -4363, -3621, -3037, - -4371, -4372, -4373, -4374, -4365, -589, -664, -665, -721, -767, -932, -938, -940, -1344, -1534, -4375, -1654, - -1788, -1942, -2200, -2210, -2379, -2384, -2410 - ], - [0, -4362, -687, -3957, -4376, -3215, -4377, -4378], - [1, 3, 1002], - [0, 1003, 1004, 1005, 6], - [0, -303], - [ - 0, -3307, -3615, -4367, -4368, -3035, -3621, -3037, -664, -721, -932, -938, -940, -1344, -1534, -1654, -4362, - -1942, -2200, -2379, -2410 - ], - [0, -4379], - [1, 3, 1007], - [0, 1008, 1009, 1010, 4], - [0, -3704, -4380, -4381, -4382], - [0, -4383, -4384, -4385, -4386, -4387, -3037, -3664, -928, -1037, -1107, -1722, -1942, -4388, -2410, -2426, -2469], - [0, -4389, -1105, -3691, -4390], - [1, 3, 1012], - [0, 1013, 0, 65, 4], - [ - 0, -4391, -4392, -4393, -4394, -4395, -4396, -4397, -4398, -4399, -4400, -4401, -4402, -4403, -4404, -4405, - -4406, -4407, -4408, -4409, -4410, -4411, -4412, -4413, -4414, -4415, -4416, -4417, -4418, -4419, -4420, -4421, - -4422, -4423, -4424, -4425, -4426, -4427, -4428, -4429, -4430, -4431, -4432, -4433, -4434, -4435, -4436, -4437, - -4438, -4439, -4440, -4441, -4442, -4443, -4444, -4445, -4446, -4447, -4448, -4449, -4450, -4451, -4452, -4453, - -4454, -4455, -4456, -4457, -4458, -4459, -4460, -4461, -4462, -4463, -4464, -4465, -4466, -4467, -4468, -4469, - -4470, -4471, -4472, -4473, -4474, -4475, -4476, -4477, -4478, -4479, -4480, -4481, -4482, -4483, -4484, -4485, - -4486, -4487, -4488, -4489, -4490, -4491, -4492, -4493, -4494, -4495, -4496, -4497, -4498, -4499, -4500, -4501, - -4502, -4503, -4504, -4505, -4506, -4507, -4508, -4509, -4510, -4511, -4512, -4513, -4514, -4515, -4516, -4517, - -4518, -4519, -4520, -4521, -4522, -4523, -4524, -4525, -4526, -4527, -4528, -4529, -4530, -4531, -4532, -4533, - -4534, -4535, -4536, -4537, -4538, -4539, -4540, -4541, -4542, -4543, -4544, -4545, -4546, -4547, -4548, -4549, - -4550, -4551, -4552, -4553, -4554, -4555, -4556, -4557, -4558, -4559, -4560, -4561, -4562, -4563, -4564, -4565, - -4566, -4567, -4568, -4569, -4570, -4571, -4572, -4573, -4574, -4575, -4576, -4577, -4578, -4579, -4580, -4581, - -4582, -4583, -4584, -4585, -4586, -4587, -4588, -4589 - ], - [1, 3, 1015], - [0, 1016, 1017, 65, 5], - [0, -4595, -4596, -712], - [0, -4597, -2391], - [1, 3, 1019], - [0, 0, 1020, 65, 8], - [0, -21, -23, -40, -1026, -1168, -1171, -1184, -1187, -1226, -4598, -4599, -2125, -2281, -2282, -2303], - [1, 3, 1022], - [0, 0, 1023, 65, 8], - [0, -21, -23, -40, -1168, -1171, -1184, -1226, -2125, -2281, -2282], - [1, 3, 1025], - [0, 0, 0, 1026, 4], - [0, -4600, -4601, -4602, -3578, -3445, -743], - [1, 3, 1028], - [0, 1029, 0, 1030, 4], - [0, -4603, -4604, -310, -4605, -4606, -4607, -4608, -4609], - [0, -4600, -4601, -4602, -3578, -3445, -4610, -2105], - [1, 3, 1032], - [0, 1033, 0, 1034, 5], - [0, -4611, -1640, -4612, -4605, -310, -4613, -4614, -311, -313, -4615], - [0, -4600, -4601, -4602, -3578, -3445, -4616], - [1, 3, 1036], - [0, 1037, 0, 1038, 4], - [0, -1640, -4617, -4614], - [0, -4600, -4601, -4602, -3578, -3445, -4616, -2178, -4618], - [1, 3, 1040], - [0, 1041, 1042, 1043, 4], - [0, -4619, -523, -617, -668, -1004, -1122, -1123, -1336, -1343, -1439, -1548, -1993, -4620, -3122, -4621], - [ - 0, -21, -23, -40, -4622, -3035, -4269, -3617, -4623, -3044, -3621, -4624, -3037, -4625, -4372, -3625, -4626, - -427, -428, -664, -665, -4627, -749, -932, -934, -935, -940, -948, -4628, -958, -964, -1654, -1722, -1788, - -1942, -1972, -2125, -2210, -2211, -2234, -2392, -2410 - ], - [0, -4629, -4630, -3214, -4631, -3634, -4632], - [0, 0, 0, 7, 10], - [1, 3, 1046], - [0, 1047, 0, 1048, 6], - [0, -1851], - [0, -4125, -4633, -2006, -2476, -2299, -4634, -2410, -3214, -3100, -3445, -1109, -3160, -1062, -3122], - [1, 3, 1050], - [0, 1051, 1052, 7, 4], - [0, -4635, -4636, -4637, -4638, -4639, -4640, -4641, -4642, -4643, -4644, -4645], - [ - 0, -3035, -3621, -664, -778, -925, -1471, -1475, -1479, -1480, -1482, -1483, -1654, -2125, -3047, -2275, -2402, - -2410, -2501 - ], - [1, 3, 1054], - [0, 0, 1055, 1056, 4], - [ - 0, -3983, -4646, -351, -3266, -406, -407, -4647, -3037, -4648, -784, -932, -4649, -4650, -4651, -4652, -1110, - -1449, -1889, -1891, -1942, -4653, -4654, -2091, -4655, -4656, -2127, -2132, -2142, -2286, -2379, -2387, -2392, - -2402, -4657, -2405, -4658, -4659, -4660, -4661, -4662, -2410, -4663, -2468, -4664 - ], - [ - 0, -4665, -4666, -4667, -4668, -4669, -775, -3099, -4189, -4670, -4671, -856, -4672, -4673, -3264, -4674, -4675, - -4676, -3214, -4677, -4678, -4679, -4680, -4681, -4682, -4683, -2410, -4684, -2257, -4685, -2006, -3322 - ], - [1, 3, 1058], - [0, 1059, 1060, 7, 4], - [0, -4686], - [ - 0, -4687, -4688, -4689, -4690, -528, -4691, -824, -4692, -957, -1077, -4693, -1168, -1174, -1197, -1212, -1244, - -1251, -4694, -4695, -1632, -1839, -4696, -4697, -2347, -2410, -4698 - ], - [1, 3, 1062], - [0, 1063, 1064, 1065, 8], - [ - 0, -469, -864, -2359, -4699, -1107, -2162, -510, -4700, -4701, -2550, -932, -2125, -2177, -2334, -2536, -1004, - -4702, -4703, -571, -679, -867, -1376, -1942, -2199, -715, -4704, -4705, -633, -4706, -1354, -1633, -1729, -23, - -1793, -4707, -47, -4708, -25, -305, -2232, -4709, -46, -4710, -2104, -2433, -3194, -4711, -40, -4712, -4713, - -41, -4714, -960, -2082, -32, -4715, -1458, -4716, -3077, -42, -4717, -4718, -4719, -3408, -4720, -3362, -4721, - -3398 - ], - [0, -2322, -4722, -2234], - [0, -4723, -3116, -687, -3161, -3577, -4724, -3162, -4725, -3445, -4726, -4727, -4728, -3205, -4729, -4730, -3186], - [1, 3, 1067], - [0, 0, 1068, 1069, 9], - [0, -932, -3469, -4731, -4732, -4733, -4734, -4735, -768, -769, -4736, -1077, -1387, -4737, -2654, -4738], - [0, -4739, -3161, -4740, -3843, -4741], - [1, 3, 1071], - [0, 1072, 1073, 1074, 9], - [0, -1983, -1436, -4742, -4743, -1416], - [ - 0, -1344, -2006, -2344, -932, -2127, -795, -2501, -1942, -4744, -2019, -2257, -2410, -3136, -3037, -3040, -4745, - -4746, -2046, -4747, -4748, -86, -4749, -3052, -2044, -4750, -2132, -4751, -1352, -969, -933, -958, -2140, - -4752, -4753, -4754, -4755, -409, -940, -962, -967, -350, -4756, -4757, -2113, -3267, -4758, -407, -428, -970, - -4759, -4760, -4761, -351, -4762, -410, -4763, -2413, -3307, -935, -4764, -427, -3474, -4765, -3394 - ], - [0, -2006, -2344, -4766, -4767, -4768, -4769, -4770, -4771, -3100], - [1, 3, 1076], - [0, 1077, 1078, 1079, 5], - [0, -3117, -3901, -1359, -2074, -2079, -2112], - [ - 0, -2832, -23, -3341, -262, -4772, -4773, -4774, -406, -409, -4775, -410, -4776, -4777, -3705, -4778, -3037, - -4779, -3040, -3052, -3041, -427, -428, -523, -928, -4780, -932, -940, -941, -956, -958, -962, -967, -969, -970, - -1077, -1384, -1449, -1459, -1683, -1729, -1942, -1984, -2006, -2019, -2125, -2214, -2387, -2391, -2392, -2410, - -2924, -3924, -2469, -2550 - ], - [0, -2074, -2006, -4781, -3481, -4782, -4783, -1359, -1361, -4784], - [1, 3, 1081], - [0, 1082, 1083, 1084, 4], - [0, -4785, -4786, -989, -4787, -4788, -1588, -1864], - [0, -4062, -351, -4789, -4790, -2127, -2231, -2234, -2410], - [0, -2127, -3862, -1764, -3209, -4791, -4792], - [1, 3, 1086], - [0, 1087, 1088, 1089, 10], - [0, -4785, -3200, -823, -4793, -2114], - [0, -23, -3412, -3326, -350, -4062, -922, -2127, -2231, -4794], - [0, -2127, -3862, -4795, -1764, -3209], - [1, 3, 1091], - [0, 1092, 1093, 1094, 4], - [ - 0, -653, -2359, -754, -2466, -668, -1111, -1650, -1872, -928, -1004, -4796, -1306, -2223, -679, -4797, -4798, - -4799, -4800, -1461, -4801, -4802, -4803, -4804, -263, -4805, -4806, -4807, -440, -4808, -264, -262, -4149 - ], - [ - 0, -4809, -2446, -2006, -932, -2125, -4810, -2469, -1942, -2019, -3628, -2410, -4198, -3037, -3738, -1534, - -3040, -3041, -1772, -4811, -3617, -3052, -2174, -2278, -4812, -969, -940, -962, -967, -428, -970, -1945, -4813, - -427, -4814 - ], - [0, -4810, -4158, -4165, -3816, -4815, -3960, -856], - [1, 3, 1096], - [0, 1097, 1098, 1099, 5], - [ - 0, -2921, -4816, -4817, -1085, -3649, -4818, -1699, -2476, -4819, -4820, -4821, -4822, -4823, -4824, -4825, - -4826, -4827, -4828, -4829, -4830, -4831, -4832, -4833, -4834 - ], - [ - 0, -4835, -3983, -4836, -4837, -3250, -4838, -1313, -1449, -2006, -4839, -2318, -2466, -4840, -4841, -2469, - -4842, -4843, -4844, -4845 - ], - [0, -3095, -856, -3438, -4846, -4679, -4847, -2476, -3944], - [1, 3, 1101], - [0, 1102, 1103, 1104, 4], - [0, -4848, -3649, -4825, -4827, -4843], - [0, -4849, -4850, -4851, -1030, -2466, -2469, -2548, -353, -4842], - [0, -3690, -856, -1030, -3438, -4847], - [1, 3, 1106], - [0, 1107, 1108, 1109, 4], - [0, -4852, -4853, -4854, -823, -2792, -4855], - [ - 0, -4856, -4857, -4858, -4859, -4860, -4861, -3035, -3617, -4862, -3621, -523, -617, -652, -767, -1004, -1323, - -1654, -4863, -1970, -2253, -2379, -2410 - ], - [ - 0, -4864, -4865, -4866, -4867, -4868, -4869, -4870, -4871, -4872, -4043, -3160, -3100, -475, -2006, -2476, - -3440, -4873, -4004, -3634 - ], - [1, 3, 1111], - [0, 1112, 1113, 1114, 10], - [0, -4852, -4853, -4854, -4874, -823, -4855], - [0, -4856, -3621, -4875, -4876, -4877, -4878, -4879, -523, -652, -767, -1654, -4863, -4880, -2253, -4881], - [ - 0, -4864, -4865, -4866, -4867, -4868, -4869, -4870, -4871, -4872, -4043, -3160, -3100, -3440, -4873, -4004, - -3634, -4881, -4882, -4883 - ], - [1, 3, 1116], - [0, 1117, 1118, 7, 4], - [0, -4884], - [0, -4885, -4886, -4887, -4888, -4889, -928, -1344, -1449, -1534, -1654, -1788, -1942], - [1, 3, 1120], - [0, 1121, 1122, 1123, 4], - [0, -2006, -2019, -3654, -261, -4890, -4891, -4892], - [ - 0, -2466, -2006, -2361, -1885, -4893, -2019, -3517, -2410, -4228, -2089, -3040, -4894, -3523, -3649, -2795, - -1606, -4785, -3525, -2085 - ], - [ - 0, -3671, -856, -2257, -4895, -4896, -4897, -4898, -1599, -4899, -4900, -4901, -3095, -3098, -2006, -2476, -475, - -2299, -4902 - ], - [1, 3, 1125], - [0, 1126, 1127, 110, 6], - [ - 0, -4903, -4904, -3165, -4905, -44, -3946, -195, -4906, -196, -197, -4907, -4908, -4909, -4910, -4911, -4912, - -595, -4913, -682, -747, -809, -4914, -4915, -4916, -4917, -4918, -4919, -4920, -4921, -4922, -4923, -4924, - -3123, -4925, -4926, -4927, -4928, -4929, -4930, -4931, -4932, -4933, -4934, -4935, -4936, -4937, -4938, -2002, - -4939, -4940, -4941, -4942, -4943, -2003, -4944, -4945, -4946, -4947, -2004, -2013, -4948, -4949, -4950, -2053, - -4951, -2344, -2345 - ], - [ - 0, -3139, -23, -4952, -4953, -162, -3778, -4954, -4955, -4773, -3562, -4757, -4762, -4763, -4754, -4956, -4957, - -4958, -4749, -4760, -4959, -406, -407, -409, -410, -4960, -3136, -4961, -4962, -4963, -4964, -3044, -3803, - -4965, -4966, -3040, -4967, -3087, -3052, -4968, -4969, -4970, -4971, -4972, -427, -428, -4973, -4974, -4975, - -534, -4976, -668, -674, -767, -4977, -881, -4978, -3808, -932, -933, -940, -948, -952, -958, -959, -962, -963, - -969, -970, -4756, -978, -1026, -4979, -1077, -1103, -1107, -1339, -1344, -1352, -1359, -1360, -1376, -1404, - -1415, -4980, -1416, -1419, -1421, -4981, -4982, -1437, -1449, -4983, -3134, -1534, -1548, -4984, -1662, -1805, - -1942, -1943, -1950, -1955, -1959, -1983, -4985, -4986, -4987, -2006, -2012, -2016, -2017, -2019, -3051, -4988, - -4989, -4990, -4991, -2044, -4992, -4993, -2093, -2094, -4994, -4995, -4996, -2177, -2205, -2214, -2281, -4997, - -4998, -2282, -4999, -5000, -2334, -2379, -2402, -2410, -5001, -2502, -5002, -5003 - ], - [1, 3, 1129], - [0, 1130, 166, 111, 4], - [0, -5004, -5005, -5006, -5007, -2741, -5008, -1085, -1548, -5009, -5010, -2355, -2446], - [1, 3, 1132], - [0, 1133, 166, 111, 5], - [0, -5004, -5005], - [1, 3, 1135], - [0, 1136, 1137, 111, 4], - [0, -5006, -5007, -2741, -5008, -5025, -1085, -1343, -1548, -5026, -1729, -5009, -5027, -5010, -2355, -2446], - [ - 0, -5028, -3044, -3037, -5011, -3738, -519, -865, -1771, -1942, -5012, -2376, -2379, -5013, -2388, -2389, -2410, - -2501, -2503, -2509 - ], - [1, 3, 1139], - [0, 1140, 1141, 1142, 6], - [0, -1110], - [0, -50, -5029, -5030, -932, -940, -965, -975, -2299, -2410, -2411], - [0, -932, -727, -5031, -2299], - [1, 3, 1144], - [0, 1145, 1146, 1147, 5], - [0, -3117, -5032, -5033, -461, -743, -5034, -5035, -1496, -1588, -5036, -5037, -3169, -2213], - [0, -5038, -3983, -365, -5039, -3037, -3172, -5040, -2127, -2299, -2301, -2410, -2466, -2469], - [0, -3161, -5041, -2299, -3176, -2466], - [1, 3, 1149], - [0, 1150, 1151, 1152, 5], - [0, -5042, -2814, -823, -1588, -5043], - [0, -2162, -2466, -2299, -3198], - [0, -5044, -5045, -2466, -2299], - [1, 3, 1154], - [0, 1155, 1156, 1157, 5], - [0, -23, -5046, -40, -41, -42, -2699, -5047, -5048], - [0, -534, -1626, -2437, -2501], - [0, -5049, -3839, -2006, -2501, -5050], - [1, 3, 1159], - [0, 1160, 1161, 1162, 5], - [0, -5051, -5052], - [0, -5053, -5054, -767, -2410], - [0, -5055, -5056, -525, -2410, -5057, -2501, -5058], - [1, 3, 1164], - [0, 1165, 1166, 1167, 5], - [0, -620, -2997], - [ - 0, -1107, -1168, -1415, -2162, -2125, -1889, -1942, -749, -1248, -2281, -1232, -2410, -3037, -518, -1238, -1930, - -2285, -5059, -5060, -5061, -5062 - ], - [0, -3754, -3098, -4902, -5063, -5064, -3482, -4012, -3160, -3100], - [1, 3, 1169], - [0, 0, 37, 1170, 10], - [ - 0, -5065, -5066, -5067, -5068, -5069, -5070, -5071, -3100, -2410, -3214, -5072, -5073, -5074, -5075, -5076, - -5077, -5078, -5079, -5080, -5081, -5082, -5083, -5084 - ], - [1, 3, 1172], - [0, 141, 142, 143, 4], - [1, 3, 1174], - [0, 1175, 1176, 1177, 9], - [0, -44, -737, -2387], - [ - 0, -23, -38, -40, -42, -3244, -190, -3983, -3326, -350, -351, -3561, -3266, -5085, -3037, -427, -428, -539, - -932, -940, -5086, -5087, -5088, -5089, -1772, -1942, -2127, -5090, -2200, -5091, -2410 - ], - [0, -5092, -3264, -5093, -5094, -3214, -5095, -3839, -2410], - [1, 3, 1179], - [0, 167, 1180, 7, 4], - [0, -409, -4775, -3040, -3052, -440, -757, -1772, -2006, -2019, -2965, -5097, -5098], - [1, 3, 1182], - [0, 167, 1183, 1184, 5], - [0, -2299, -2300, -3170, -975, -5099, -428, -5098, -365], - [0, -5100, -5101, -2299], - [1, 3, 1186], - [0, 1187, 1188, 1189, 4], - [0, -5102], - [ - 0, -5103, -3136, -427, -5104, -932, -936, -5105, -940, -967, -968, -1415, -1419, -1441, -1446, -1637, -2375, - -2376, -2410 - ], - [0, -5106, -5107, -5108, -5109, -5110, -3100, -3323, -3105], - [1, 3, 1191], - [0, 1192, 1193, 1194, 5], - [0, -44, -406], - [0, -795, -2410, -5111, -1771], - [0, -3634, -795, -3160, -5092, -4868, -5112, -4867, -4866], - [1, 3, 1196], - [0, 1197, 1198, 1199, 4], - [0, -4984, -5113, -1863, -1950, -44, -22, -5114, -5115], - [0, -1449, -2410, -5111, -635, -658, -5116, -407, -5117, -5118], - [0, -3634, -3160, -5092, -1449, -5119, -4868, -5112, -4867, -4866], - [1, 3, 1201], - [0, 1202, 1203, 1204, 4], - [0, -5120, -5113, -2745, -1863, -28, -5115], - [0, -1449, -1001, -2127, -2469, -2410, -5111, -5121, -1950, -5122, -350, -5117, -5123], - [0, -3634, -5092, -1415, -1449], - [1, 3, 1206], - [0, 1207, 1208, 1209, 10], - [0, -668, -5120, -1418, -1950, -5124], - [ - 0, -1415, -1344, -2006, -932, -1942, -21, -720, -2410, -23, -3136, -3040, -1952, -2034, -44, -2174, -3141, - -2052, -5125, -796, -3081, -3153, -3156, -5126 - ], - [0, -3634, -5127, -1415, -2034], - [1, 3, 1211], - [0, 39, 1212, 1213, 5], - [0, -406, -407, -3040, -3052, -668, -5128, -1418, -5111, -1772, -2006, -2019, -2125, -2410], - [0, -3634, -2006, -3160, -5092, -1449, -5119, -4868, -5112, -4867, -4866], - [1, 3, 1215], - [0, 0, 1216, 1217, 4], - [ - 0, -1392, -1449, -2006, -1001, -928, -2379, -5129, -2019, -2745, -2410, -5111, -3040, -5116, -5130, -5089, - -5131, -5087, -5132, -406, -5133, -5086, -409, -5134, -5088, -407, -5135, -5136, -3626, -948, -5137 - ], - [0, -5138, -5139, -2006, -3634], - [1, 3, 1219], - [0, 1220, 0, 1221, 6], - [0, -4603, -5140, -412, -417, -418, -419, -420], - [0, -5141, -3122, -3445, -1334, -3161, -3690], - [1, 3, 1223], - [0, 0, 0, 1224, 9], - [0, -5141, -4601, -4602, -3578, -3445, -743], - [1, 3, 1226], - [0, 0, 0, 1227, 11], - [0, -5141, -4601, -4602, -3578, -3445, -5142, -743], - [1, 3, 1229], - [0, 1230, 1231, 168, 4], - [0, -5143], - [0, -652, -2392, -1344, -2410, -3037, -411, -2581, -86, -5144, -3307], - [1, 3, 1233], - [0, 0, 0, 1234, 6], - [0, -5141, -4601, -4602, -3578, -3445, -990], - [1, 3, 1236], - [0, 0, 0, 1237, 9], - [0, -5141, -4601, -4602, -3578, -3445, -5145, -5146, -5147], - [1, 3, 1239], - [0, 1240, 0, 1241, 4], - [0, -416], - [0, -5141, -4601, -4602, -3578, -3445, -5148, -1389, -5149, -5150], - [1, 3, 1243], - [0, 1244, 0, 1245, 6], - [0, -4603, -5151, -422, -423], - [0, -5141, -4601, -4602, -3578, -3445, -4610, -2105], - [1, 3, 1247], - [0, 1248, 0, 1249, 4], - [0, -5143, -1640, -5152, -412, -413, -2701, -418, -421], - [0, -5141, -4601, -4602, -3578, -3445, -4616], - [1, 3, 1251], - [0, 169, 0, 1252, 8], - [0, -5141, -4601, -4602, -3578, -3445, -3122], - [1, 3, 1254], - [0, 1255, 0, 1256, 5], - [0, -1640, -415, -5153], - [0, -5141, -4601, -4602, -3578, -3445, -4616, -2178, -4618], - [1, 3, 1258], - [0, 1259, 0, 1260, 9], - [0, -1640, -5153], - [0, -5141, -4601, -4602, -3578, -3445, -4610, -2105, -2401, -3214], - [1, 3, 1262], - [0, 0, 0, 1263, 6], - [0, -5141, -4601, -4602, -3578, -3445, -4610, -2105, -2435, -5154, -5101], - [1, 3, 1265], - [0, 0, 0, 77, 5], - [1, 3, 1267], - [0, 1268, 0, 1269, 9], - [0, -5190, -5191, -5192, -5193, -2387], - [0, -5194, -5195, -3445, -5196, -5197, -3690], - [1, 3, 1271], - [0, 1272, 1273, 1274, 11], - [0, -1353, -5198, -5199, -429, -5200, -5201, -5202, -3331], - [0, -469, -1610, -2469, -1942, -5203, -4251, -3040, -1605, -5204, -2429, -4049, -3664, -1618, -5205, -5206, -5207], - [0, -932, -5208, -3784, -2410], - [1, 3, 1276], - [0, 1277, 112, 1278, 6], - [0, -812, -3782, -5202, -3331, -5209], - [0, -3272, -3217, -3214, -2410, -3215, -4132, -932], - [1, 3, 1280], - [0, 1281, 112, 1282, 5], - [0, -3782, -189, -3331, -5209], - [0, -932, -2410, -5210], - [1, 3, 1284], - [0, 1285, 1286, 1287, 8], - [ - 0, -161, -163, -5211, -682, -5212, -5213, -906, -5214, -5215, -1311, -1548, -5216, -1666, -1967, -5217, -4922, - -5218, -4929, -4934, -2002, -2004, -2030, -4991, -2055, -2113, -2192, -2489, -5219 - ], - [ - 0, -21, -23, -26, -33, -38, -39, -40, -41, -42, -86, -3307, -407, -409, -3059, -5220, -3044, -5221, -3040, - -3052, -427, -428, -5222, -5223, -523, -528, -533, -534, -5224, -540, -5225, -5226, -720, -5227, -778, -796, - -915, -916, -2760, -932, -969, -970, -1041, -1077, -1331, -1344, -1415, -5228, -4981, -5229, -1534, -1643, - -1667, -1814, -1942, -2000, -2006, -2019, -2049, -2052, -2251, -2275, -2281, -3085, -5230, -5231, -5232, -2410, - -2417, -2437, -2501, -2502, -2503 - ], - [0, -2006, -3159, -3095, -3098, -3100, -5233], - [1, 3, 1289], - [0, 1290, 0, 170, 5], - [ - 0, -703, -1436, -1548, -1699, -5234, -2650, -5235, -5236, -5237, -5238, -5239, -1320, -5240, -5241, -5242, - -5243, -5244, -5245 - ], - [1, 3, 1292], - [0, 171, 0, 1293, 5], - [ - 0, -5248, -5249, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, - -3577, -3100 - ], - [1, 3, 1295], - [0, 1296, 0, 1297, 4], - [0, -5254], - [ - 0, -3167, -5255, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, - -3577, -3100 - ], - [1, 3, 1299], - [0, 171, 0, 1300, 4], - [ - 0, -3962, -5256, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, - -3577, -3100 - ], - [1, 3, 1302], - [0, 1303, 0, 1304, 8], - [0, -5257, -436], - [ - 0, -5258, -5259, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, - -3577, -3100 - ], - [1, 3, 1306], - [0, 0, 0, 1307, 6], - [ - 0, -5260, -5261, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, - -3577, -3100 - ], - [1, 3, 1309], - [0, 1310, 1311, 1312, 5], - [0, -1983, -754, -1004, -2401, -724, -5262, -5263, -5264, -5265, -442], - [ - 0, -1415, -2177, -2375, -2293, -533, -2410, -23, -4198, -3136, -3037, -5266, -2581, -3617, -5267, -4203, -3732, - -3697 - ], - [0, -5268, -3100, -5269, -5270, -5271, -3441, -5272], - [1, 3, 1314], - [0, 1315, 1316, 1317, 4], - [0, -5273, -5274, -5275, -5276, -5277, -5278, -5279, -5280], - [ - 0, -2384, -2392, -2391, -2466, -1344, -932, -2125, -5281, -2469, -928, -1889, -2910, -2281, -1747, -1874, -5282, - -2214, -2302, -2410, -3037, -1534, -1771, -3040, -5283, -5284, -2581, -5285, -5286, -2284, -5287, -5288, -5289, - -2411, -5290, -3664, -5291, -2832, -5292, -5293, -2282, -5294, -2970, -5295, -5296, -5297, -4999 - ], - [ - 0, -5065, -5298, -5299, -5300, -5301, -5302, -5303, -5304, -5305, -5067, -5306, -5307, -5308, -5309, -5310, - -5069, -5311, -3100, -2410, -5312, -5313, -5314, -5315, -5316, -5072, -5073, -5074, -5317, -5318, -5083 - ], - [1, 3, 1319], - [0, 1320, 1321, 1322, 5], - [0, -753, -2314, -23, -635, -1588, -40, -2082, -5319, -3343, -3344, -3370, -3377], - [0, -4787, -2466, -461, -2892, -1863], - [0, -3100, -2466, -5044, -439], - [1, 3, 1324], - [0, 1325, 1326, 1327, 6], - [0, -23, -5320, -5321, -5322, -4776, -2041], - [0, -5323, -2006, -2019, -2923, -2892], - [0, -525, -5324, -2006, -2041, -2466, -5044], - [1, 3, 1329], - [0, 1330, 1331, 1332, 5], - [0, -429, -1026, -2411, -2478], - [0, -5325, -3037, -932, -980, -999, -5326, -1942, -2392, -2410, -2469, -2476], - [0, -2476, -5327, -5328, -932, -2410], - [1, 3, 1334], - [0, 1335, 1336, 1337, 10], - [0, -469, -470, -5329, -1335, -5330, -1851, -3122, -2187, -5331, -3434, -2548], - [0, -1004, -1654, -2250, -2293], - [0, -1004, -3438, -4847, -856], - [1, 3, 1339], - [0, 1340, 1341, 113, 5], - [ - 0, -5332, -5333, -3562, -367, -5334, -4251, -5335, -5336, -5337, -5338, -682, -5339, -5340, -747, -823, -5341, - -909, -5342, -5343, -5344, -3649, -2766, -1286, -1289, -1292, -5345, -1315, -1329, -5346, -1442, -1571, -5347, - -5348, -1779, -1878, -4130, -5349, -1955, -2000, -4930, -4942, -2003, -4944, -2004, -2013, -2965, -2028, -5350, - -5351, -2084, -5352, -2090, -5353, -4242, -2095, -2098, -2101, -2162, -3728, -5354, -5355, -2427, -2429, -5356, - -2435, -5357, -5358, -5359 - ], - [ - 0, -86, -3307, -3659, -5360, -5361, -3660, -5362, -3037, -5363, -3803, -3040, -3087, -3052, -5364, -5365, -5366, - -932, -4597, -1026, -1031, -5367, -5368, -1344, -1534, -1942, -1944, -1945, -2006, -2019, -2281, -2379, -2410, - -2469, -5369, -5370 - ], - [0, 0, 0, 7, 9], - [1, 3, 1344], - [0, 0, 1345, 1346, 4], - [0, -3037, -427, -428, -932, -934, -958, -2125, -2127, -2142, -2410], - [0, -3445, -5373, -5374, -5375, -5376, -5377, -5378], - [1, 3, 1348], - [0, 1349, 1350, 1351, 4], - [0, -5379], - [ - 0, -23, -3204, -40, -43, -5380, -5381, -3621, -3037, -507, -708, -5382, -932, -1471, -1475, -1476, -1479, -5383, - -1480, -1482, -1486, -1654, -1771, -1788, -1810, -2125, -2127, -2128, -5384, -2131, -2137, -2139, -2141, -5385, - -2379, -5386, -2410 - ], - [0, -5387, -5388, -5389, -997, -5390, -5391, -5392, -5393, -5394, -5395, -5396], - [1, 3, 1353], - [0, 1354, 172, 1355, 5], - [0, -1641, -5397], - [0, -5398, -5399, -5400, -459], - [1, 3, 1357], - [0, 1358, 114, 1359, 5], - [0, -510, -615, -1548, -1671, -2071], - [0, -5401, -460, -3578], - [1, 3, 1361], - [0, 1362, 0, 7, 10], - [0, -461], - [1, 3, 1364], - [0, 1365, 1366, 1367, 8], - [0, -523, -668, -719, -1039, -1077, -1376, -1816, -5402, -2205], - [ - 0, -350, -4062, -351, -3266, -5403, -3048, -5404, -3049, -3037, -2125, -2127, -4063, -5405, -2142, -5232, -2387, - -2388, -2410 - ], - [0, -687, -463, -2476, -2006, -5406, -5407, -2410, -3967], - [1, 3, 1369], - [0, 0, 1370, 1371, 4], - [0, -664, -1351, -1654, -1942, -2125], - [0, -5408, -1636, -5409, -2432], - [1, 3, 1373], - [0, 0, 27, 1374, 5], - [0, -5410, -465, -5411, -5412, -5413], - [1, 3, 1376], - [0, 1377, 1378, 1379, 8], - [0, -5414, -5415, -812, -5416, -3222], - [0, -3198, -5417, -3620, -3037, -3664, -2210, -2379, -2392, -2469], - [0, -5418, -5419, -763, -5420, -2166, -4043], - [0, 44, 15, 16, 6], - [1, 3, 1382], - [0, 1383, 1384, 1385, 4], - [ - 0, -5450, -5451, -5452, -633, -5453, -724, -812, -5454, -5455, -1004, -5456, -5457, -1336, -5458, -1442, -5459, - -5460, -5461, -1646, -5462, -5463, -5464, -2062, -5465, -2188, -2194, -5466, -5467, -5468, -2446, -2491 - ], - [0, -5469, -767, -1274, -1788, -5470, -2250, -2322, -2331], - [0, -468, -4865, -5471, -2319, -2322, -3634], - [1, 3, 1387], - [0, 1388, 1389, 1390, 5], - [0, -1025, -5472, -5473, -5474], - [ - 0, -5475, -350, -4062, -351, -3267, -3035, -3621, -3037, -5476, -427, -428, -470, -633, -664, -767, -809, -5477, - -932, -940, -1107, -1344, -5478, -1430, -1440, -5479, -1471, -1475, -1482, -1534, -1654, -5480, -1729, -1788, - -1942, -5481, -2127, -2140, -2379, -5482, -2410, -5483 - ], - [0, -4182, -4058, -2451, -3926, -1463, -1456, -5484, -5485], - [1, 3, 1392], - [0, 1393, 1394, 1395, 4], - [0, -469], - [0, -5475, -3136, -3037, -427, -428, -469, -932, -940, -1344, -1415, -5479, -1534, -1942, -2375, -2410], - [0, -5486, -3815, -3276, -3926], - [0, 45, 15, 16, 10], - [1, 3, 1398], - [0, 34, 1399, 1400, 6], - [0, -1813, -5487], - [0, -472], - [1, 3, 1402], - [0, 1403, 1404, 1405, 4], - [0, -5488, -2438], - [0, -5489, -1654, -1788, -2416], - [0, -5490, -5491, -5492], - [1, 3, 1407], - [0, 0, 1408, 1409, 6], - [0, -2162], - [0, -775, -2162, -3160, -3576, -3577, -5493, -5494], - [1, 3, 1411], - [0, 0, 0, 173, 5], - [1, 3, 1413], - [0, 0, 0, 1414, 5], - [0, -475, -3161, -4865, -5176, -5495], - [1, 3, 1416], - [0, 1417, 0, 1418, 5], - [ - 0, -5496, -5497, -7, -8, -9, -5498, -5499, -510, -518, -668, -722, -778, -784, -812, -5500, -834, -5501, -5502, - -5503, -1017, -1041, -5504, -1077, -5505, -1107, -1331, -1369, -1376, -5506, -1455, -1490, -1492, -1521, -1522, - -1548, -1645, -5507, -1743, -1758, -1812, -1816, -1888, -1908, -2000, -2092, -2114, -2125, -2148, -2163, -5508, - -2177, -5509, -2233, -5510, -2275, -2286, -2287, -2330, -2346, -2410, -2437, -2488, -2501, -2505, -2508, -2510, - -2567 - ], - [0, -475, -477], - [1, 3, 1420], - [0, 0, 0, 1421, 4], - [0, -5175, -3118, -4865, -5495, -3119, -5511, -3098], - [1, 3, 1423], - [0, 0, 1424, 1425, 9], - [0, -3542, -1202, -5512, -1654, -2343], - [ - 0, -5513, -5514, -5515, -5516, -5517, -5518, -5519, -5520, -5521, -5522, -5523, -5524, -5525, -5526, -5527, - -5528, -5529, -5530, -5531, -5532, -5533, -687, -5534, -712, -714, -5535, -4376, -3958, -4000, -5536, -5537, - -5538, -5539, -5540, -5541, -5542, -5543, -5544, -1496, -1573, -5545, -5546, -5547, -5548, -5549, -5550, -5551, - -5552, -2265, -5553, -3770, -3974, -5554, -3975, -5555, -5556, -2547, -5557 - ], - [1, 3, 1427], - [0, 1428, 115, 1429, 6], - [0, -5558], - [ - 0, -5514, -3974, -4000, -687, -2265, -3975, -5559, -5560, -5538, -5550, -2547, -1573, -5545, -3958, -5554, - -5561, -5562, -5412, -707, -5563, -5564, -3965, -5565, -685, -5566, -5567, -5568 - ], - [1, 3, 1431], - [0, 0, 1432, 1433, 10], - [0, -2541, -519, -2384, -480], - [ - 0, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -2265, -3975, -5559, -5538, -5549, -5513, -5550, -2547, - -3958, -5554, -5569, -5570, -5571, -5572, -4004, -5573, -5574 - ], - [1, 3, 1435], - [0, 0, 1436, 1437, 5], - [0, -2541, -519, -2384, -5575], - [ - 0, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -2265, -3975, -5559, -5538, -5549, -5513, -5550, -2547, - -1573, -5545, -3958, -5554 - ], - [1, 3, 1439], - [0, 0, 0, 1440, 6], - [0, -5514, -714, -687], - [1, 3, 1442], - [0, 1443, 1444, 1445, 11], - [ - 0, -4903, -5576, -44, -3946, -3763, -5577, -5578, -5579, -513, -786, -809, -5580, -5581, -1548, -1549, -2113, - -4951, -5582, -3768, -2345, -5583, -2489 - ], - [ - 0, -21, -23, -26, -34, -35, -36, -5584, -37, -3396, -5585, -3381, -38, -3382, -3412, -39, -40, -42, -86, -3307, - -305, -3326, -3732, -3048, -3136, -5586, -3164, -5587, -3661, -3037, -5588, -427, -428, -439, -4837, -5589, - -5590, -5591, -5592, -441, -4838, -5593, -4817, -5594, -461, -5595, -518, -523, -528, -533, -534, -538, -5596, - -539, -5597, -661, -668, -674, -708, -5339, -5598, -719, -5599, -767, -778, -779, -5600, -807, -5601, -5602, - -4978, -5603, -928, -3808, -929, -932, -940, -957, -958, -959, -963, -5604, -967, -980, -1026, -4979, -1077, - -1107, -1111, -1125, -1168, -1174, -5605, -1261, -1331, -1344, -5606, -5607, -1415, -1419, -1421, -5608, -5609, - -1439, -5610, -3025, -1521, -1522, -5611, -5612, -1534, -5613, -1600, -1601, -1602, -1603, -5614, -1610, -5615, - -1643, -1646, -1650, -1662, -1666, -1779, -1889, -1908, -1942, -1952, -1955, -1959, -2000, -4242, -2098, -5616, - -5617, -3868, -5618, -2125, -5619, -5620, -2177, -2218, -5621, -2275, -2281, -4997, -4998, -2282, -4999, -2284, - -2335, -2347, -2355, -2375, -2376, -2392, -2402, -2410, -5622, -2427, -2437, -5001, -2466, -2476, -5623, -5624, - -2478, -2480, -5625, -2481, -5626, -2483, -2484, -5627, -2486, -2501, -2502, -2503, -2505, -2508, -5628, -5002 - ], - [0, -2476, -3944, -3158, -3099, -485, -5629, -3095, -3098, -3160, -3161, -3100], - [1, 3, 1447], - [0, 1448, 1449, 110, 4], - [ - 0, -703, -809, -44, -3165, -2345, -4903, -5630, -5631, -5632, -5633, -4910, -5634, -5635, -4904, -5636, -5637, - -5638, -5639, -5640, -5641, -5642, -5643, -5644, -5645, -5646, -5647, -5648, -5649, -5650, -5651, -5652, -5653, - -5654, -5655, -5656, -5657, -5658, -4905, -5659, -5660, -5661, -5662, -5663, -5664, -5665, -4951, -5666, -5667 - ], - [ - 0, -469, -1816, -2592, -2323, -2392, -881, -1107, -1415, -1805, -523, -668, -4977, -1344, -1359, -1392, -1449, - -5668, -1880, -2006, -2193, -865, -932, -1031, -1437, -1548, -2093, -2125, -5669, -2177, -464, -5595, -5670, - -1955, -2402, -2501, -781, -1077, -1103, -4980, -1646, -1662, -1942, -5671, -5002, -767, -5672, -1026, -3134, - -4984, -1978, -4985, -2019, -5673, -5674, -1729, -1888, -2094, -2095, -2205, -2214, -2410, -3136, -3037, -5346, - -1339, -1534, -2026, -4994, -162, -4647, -5675, -3040, -5676, -5677, -4986, -5678, -5679, -3744, -305, -4964, - -3044, -3199, -4973, -1737, -1950, -5680, -2101, -2581, -3778, -5681, -5682, -5683, -4960, -3803, -4972, -3649, - -4982, -5684, -4954, -3562, -5685, -3048, -4961, -5686, -3624, -5687, -3051, -4773, -5688, -3052, -1404, -1416, - -5689, -2044, -4992, -2090, -3139, -5690, -3746, -4106, -5691, -3745, -3747, -283, -5692, -959, -1352, -4988, - -5001, -5693, -1292, -4981, -5694, -406, -4974, -952, -1421, -4989, -5695, -409, -962, -1419, -5696, -5697, - -5698, -4983, -2502, -4971, -3459, -5699, -407, -970, -5700, -4963, -5701, -5702, -5703, -410, -2914, -5704, - -4968, -5705, -4995, -4990, -4962, -5706, -4955, -5707, -5708 - ], - [1, 3, 1451], - [0, 1452, 0, 7, 5], - [0, -1805], - [0, 67, 15, 16, 4], - [1, 3, 1455], - [0, 1456, 1457, 1458, 9], - [0, -3278, -3279, -3299, -3283, -3288, -5709, -5710, -3304, -3305, -5711, -5712, -5713, -5714, -1537, -3297], - [ - 0, -3285, -3286, -3287, -5715, -3302, -3303, -86, -3307, -5716, -3308, -3309, -5717, -3310, -3311, -3312, -5718, - -5719, -617, -823, -932, -940, -985, -1004, -1077, -1344, -1442, -1534, -1685, -1724, -1889, -2125, -2127, - -5720, -4753, -2210, -2359, -2410, -3313, -2416, -5721, -2446 - ], - [0, -4902, -5722, -3690, -488, -856, -5723, -1789], - [1, 3, 1460], - [0, 1461, 1462, 174, 4], - [ - 0, -620, -719, -5724, -3808, -5725, -1077, -1107, -1276, -1351, -1437, -5726, -1548, -1600, -1753, -1955, -2177, - -2275, -2501, -2503, -2520 - ], - [0, -3044, -3621, -3037, -932, -5727, -943, -958, -966, -968, -1654], - [1, 3, 1464], - [0, 1465, 1466, 1467, 4], - [0, -5729, -888, -2177, -2433, -2550], - [0, -4370, -3037, -3199, -3041, -519, -1077, -2410], - [0, -489, -1599, -5730, -3690, -4100, -856, -3262, -5731, -687, -5732, -3958, -3691, -5728, -5733, -5734], - [1, 3, 1469], - [0, 1470, 1471, 1472, 5], - [0, -812, -5735, -1730, -1465, -2456], - [0, -664, -665, -1654, -2210, -2211], - [0, -5736, -5737, -5738, -5739, -5740, -5741], - [1, 3, 1474], - [0, 1475, 0, 7, 4], - [0, -5742, -5743, -3320, -5744, -2387], - [1, 3, 1477], - [0, 1478, 0, 1479, 8], - [0, -5745, -5742, -494, -5743, -5746, -5744, -2387, -5747], - [0, -3217, -4795, -5748, -3214, -5749, -1764, -2006], - [1, 3, 1481], - [0, 1482, 1483, 7, 6], - [0, -5743, -5744, -2387, -5750], - [0, -5751, -3136, -3037, -1122, -1123, -1415, -2125, -2127, -2375, -2388, -2410], - [1, 3, 1485], - [0, 1486, 1487, 7, 6], - [0, -494, -5752, -2387], - [0, -5751, -3136, -5753, -1037, -1122, -1123, -1415, -5754, -2125, -2127, -2375, -2388, -2410], - [1, 3, 1489], - [0, 0, 1490, 1491, 5], - [0, -708, -756, -5755, -796, -1104, -1405, -1654, -1657, -1663, -1788, -2174, -2449], - [0, -5756, -1847, -3590, -2444, -3966, -3551, -3209, -5757, -4792, -3994], - [1, 3, 1493], - [0, 1494, 1495, 1496, 4], - [0, -2959, -5758, -5759, -5760, -5761, -523, -615, -5762, -1548, -1582, -1666, -1667, -5763, -2177, -5764, -2531], - [ - 0, -5765, -5766, -2860, -3470, -3471, -5767, -3044, -3621, -3037, -5768, -3199, -4204, -4733, -664, -665, -741, - -1654, -1942, -2174, -2210, -2379, -2410, -2542 - ], - [0, -5769, -5271, -3634, -4864, -3162, -5770], - [1, 3, 1498], - [0, 1499, 1500, 1501, 10], - [ - 0, -5771, -5772, -5773, -5038, -5774, -5775, -5776, -5777, -5778, -5779, -5780, -5781, -5782, -5783, -5784, - -5785, -5786, -5787, -5788, -5789, -5790, -5791, -5792 - ], - [0, -1788, -1722, -1654, -2210, -932, -1942, -2410, -5793, -3037, -3621, -4372, -3199, -966, -428, -5794, -427], - [0, -5795, -5796, -5797, -5798, -5799, -5800, -5801, -5802, -5803, -5804, -5805], - [1, 3, 1503], - [0, 1504, 1505, 1506, 5], - [0, -5806, -5807, -5808, -5809, -5810, -5811], - [ - 0, -5812, -3136, -3037, -427, -428, -5813, -932, -940, -948, -958, -967, -1122, -1415, -1942, -5814, -1944, - -5815, -2251, -2375, -2379, -2410 - ], - [0, -5816, -5817, -3445, -5818, -1122, -5819, -3967, -2410, -5820], - [1, 3, 1508], - [0, 1509, 1510, 1511, 4], - [0, -5821, -510, -5822, -2062, -5823, -2325, -5824], - [0, -5825, -664, -1446, -1650, -1654, -2125, -5826, -2323, -2555], - [0, -5409, -501, -5827, -5408, -2323], - [1, 3, 1513], - [0, 0, 1514, 7, 8], - [0, -664, -1415, -1942], - [1, 3, 1516], - [0, 0, 1517, 1518, 10], - [0, -32, -5828, -932, -1654, -1788], - [0, -687, -3215, -503, -5829, -4377], - [0, 45, 15, 16, 6], - [1, 3, 1521], - [0, 1522, 1523, 1524, 6], - [0, -655, -5830, -5831, -5832], - [0, -5833, -5834, -516, -5835, -932, -993, -1065, -5836, -1365, -1777, -1788, -1794, -2156, -2322], - [0, -5837, -5838, -5839, -5840, -5396, -3582, -5841, -5842, -5843], - [1, 3, 1526], - [0, 0, 14, 1527, 6], - [0, -5839, -506, -5844, -5845, -5846, -5847], - [1, 3, 1529], - [0, 1530, 1531, 1532, 5], - [0, -2444, -5848, -655, -5849, -1797], - [0, -2322, -468, -753, -767, -21, -5850, -23, -1798, -40, -3335], - [0, -507, -4865], - [1, 3, 1534], - [0, 0, 1535, 7, 4], - [0, -2322, -1032], - [1, 3, 1537], - [0, 1538, 1539, 1540, 4], - [0, -820, -5851, -5852, -1794, -5853, -5854], - [0, -633, -1405, -1654, -1939], - [0, -507, -5855, -5856, -509, -3440, -1001, -1003, -2198, -5857, -4679, -4873, -4004, -3634, -3636, -5858, -5119], - [1, 3, 1542], - [0, 0, 1543, 1544, 4], - [ - 0, -1788, -664, -2148, -1446, -1471, -1654, -2550, -932, -2127, -2177, -674, -571, -615, -1077, -589, -633, -23, - -925, -1482, -5859, -566, -1472, -5860, -559, -5861, -5862, -32, -1483, -539, -1487, -1479, -5863, -2137, -535, - -5864, -549 - ], - [0, -510, -5865, -3551, -3590], - [1, 3, 1546], - [0, 0, 1547, 1548, 9], - [0, -3037, -5866, -2319, -2379, -2410], - [0, -510, -5867, -3184, -1334, -5868, -5149, -1961, -3844], - [1, 3, 1550], - [0, 1551, 1552, 7, 4], - [0, -2122], - [0, -519, -932, -1942, -1729, -1939, -5869, -1534, -969, -933, -958, -940, -962], - [1, 3, 1554], - [0, 0, 1555, 1556, 4], - [0, -23, -5870, -40, -42, -5871, -3136, -533, -756, -1415, -1534, -1763, -5872, -5873, -1939, -1942, -2379, -2410], - [0, -2451, -5874, -510], - [1, 3, 1558], - [0, 0, 0, 1559, 5], - [0, -514, -4865], - [1, 3, 1561], - [0, 1562, 1563, 1564, 6], - [0, -2359, -714, -5875, -2177, -5876, -5877, -5878], - [0, -1788, -2322, -932, -1777, -516, -2156, -5834], - [0, -5879, -5880, -5881, -1764, -5879], - [1, 3, 1566], - [0, 1567, 1568, 1569, 6], - [0, -719, -1276, -5882, -1729, -5883, -2177], - [0, -23, -43, -539, -5884, -664, -708, -767, -1609, -1654, -1788, -2226, -2250], - [0, -5885, -5886, -5887, -5888, -1573, -3262, -5889, -5890, -5891, -1306], - [1, 3, 1571], - [0, 1572, 1573, 1574, 5], - [0, -679, -714, -5892, -5893, -1107, -5894, -1574, -1816, -5895, -2105, -5896, -2550], - [0, -526, -559, -664, -932, -933, -958, -962, -969, -1654], - [0, -5885, -3015, -1380, -5897, -2490], - [1, 3, 1576], - [0, 1577, 0, 1578, 10], - [0, -635, -658, -5898, -1863, -1934], - [0, -518, -775, -5899, -1889, -3583], - [1, 3, 1580], - [0, 1581, 1582, 1583, 8], - [ - 0, -5900, -461, -462, -482, -5901, -506, -5902, -5903, -668, -5904, -680, -5905, -696, -5906, -5907, -5908, - -5909, -812, -5910, -1040, -1111, -5911, -1366, -1396, -1398, -5912, -5913, -1681, -1826, -5914, -1864, -1877, - -1951, -5915, -4621, -5916, -5917, -2530, -2550 - ], - [0, -5028, -5918, -3037, -480, -652, -999, -1001, -2210, -2319, -2331, -2384, -2410, -2541, -5747], - [ - 0, -5919, -4004, -4043, -3634, -519, -5920, -5921, -5922, -4873, -5732, -687, -1415, -1654, -2322, -2319, -1989, - -1412, -507, -5855, -1961, -5923, -510, -5924, -5867, -3262, -5925, -5926, -5927, -5928, -5119, -4045, -1001, - -2410 - ], - [1, 3, 1585], - [0, 1586, 1587, 1588, 4], - [0, -668, -909, -1543, -1548, -1639, -1650, -2234, -5929], - [ - 0, -3035, -3044, -4036, -3621, -3037, -3714, -4372, -3046, -615, -664, -5930, -1077, -1344, -1534, -1654, -1942, - -5931, -2125, -2195, -2251, -2330, -2388, -2410, -2501, -2503 - ], - [0, -2501, -5932, -5050, -2410], - [1, 3, 1590], - [0, 1591, 1592, 1593, 5], - [0, -2165, -2435, -2444, -2446, -640, -997, -2536, -5933, -5934, -1985], - [ - 0, -664, -1471, -1654, -932, -708, -1412, -2501, -793, -2416, -633, -2410, -3037, -1455, -711, -1413, -1481, - -5935, -5936, -1475 - ], - [ - 0, -3690, -5937, -5817, -5938, -5939, -5940, -5941, -5942, -5943, -5944, -5945, -5946, -5947, -5948, -5949, - -5950, -5951, -5952, -5953, -5954, -5955, -5956, -5957, -5958, -5959, -5960, -5961, -5962, -5197, -5963, -5964, - -5965, -5966, -5967, -5968 - ], - [1, 3, 1595], - [0, 0, 1596, 1597, 4], - [ - 0, -664, -1107, -668, -702, -999, -1127, -1344, -1446, -1449, -1471, -1654, -2210, -932, -1437, -753, -928, - -1110, -1821, -1376, -5969, -1942, -2416, -5970, -5113, -5971, -1474, -5972, -2410, -23, -3037, -5973, -925, - -5974, -1339, -1482, -1489, -1534, -1771, -5975, -5976, -1320, -1737, -4916, -5977, -5978, -2251, -5979, -40, - -5980, -1480, -2173, -5981, -1134, -1149, -1491, -1136, -1148, -5982, -1475, -2253, -3345, -940, -1479, -5983, - -5984, -36 - ], - [0, -5985, -4665, -3634, -5119, -4873, -3440, -5986], - [1, 3, 1599], - [0, 1600, 1601, 1602, 4], - [0, -1069, -5987, -1063], - [ - 0, -652, -1168, -668, -1344, -1471, -1654, -2210, -932, -1685, -1831, -2127, -1004, -5988, -1077, -5969, -1646, - -756, -767, -1070, -1100, -1276, -3727, -2325, -2410, -23, -617, -925, -1489, -1413, -1948, -5989, -1481, -516, - -86, -5990, -40, -5991, -4062, -4066, -3326, -1488, -2140, -5992, -1475, -1487, -1479, -1490, -350, -5993, - -1486, -5994, -5995, -351, -5996, -5997, -3307 - ], - [0, -2533, -1334, -5998, -1961, -3966, -4865, -4213, -3691, -3690, -3323], - [1, 3, 1604], - [0, 1605, 1606, 1607, 4], - [0, -5999, -1015, -6000, -6001, -2062, -2105, -2424, -2446, -2451, -2536, -2538, -1456], - [ - 0, -6002, -633, -756, -6003, -1127, -1154, -2778, -1405, -1471, -1475, -1478, -6004, -1479, -1480, -1482, -1483, - -1654, -1657, -1722, -2198, -2416, -2491 - ], - [0, -3966, -5800, -6005], - [1, 3, 1609], - [0, 1610, 1611, 137, 4], - [0, -527, -556, -566, -567, -719, -742, -3179, -1107, -1548, -6006, -1850, -2218, -2231, -6007, -679], - [0, -530], - [1, 3, 1613], - [0, 1614, 1615, 138, 9], - [ - 0, -6008, -529, -6009, -6010, -566, -567, -568, -569, -570, -572, -742, -812, -1460, -1548, -1645, -1850, -6011, - -2218, -2231 - ], - [0, -530, -6012, -556], - [1, 3, 1617], - [0, 1618, 1619, 7, 5], - [0, -2114, -47, -25, -46, -22, -983], - [0, -1344, -1654, -815, -932, -986, -1942, -1534, -528, -6013, -958, -956, -967], - [1, 3, 1621], - [0, 1622, 1623, 7, 5], - [0, -6010, -567, -570, -831, -1451, -1548, -2231, -6014], - [0, -530, -572], - [1, 3, 1625], - [0, 1626, 0, 7, 4], - [0, -567, -1548, -6015, -2177], - [1, 3, 1628], - [0, 1629, 0, 7, 5], - [0, -567, -6012], - [1, 3, 1631], - [0, 0, 0, 1632, 6], - [0, -525, -2476, -4146], - [1, 3, 1634], - [0, 1635, 1636, 7, 4], - [0, -4020, -4776, -539, -6016, -668, -1119, -2218], - [0, -23, -4034, -4035], - [1, 3, 1638], - [0, 175, 1639, 1640, 8], - [0, -21, -23, -32, -40, -652, -932, -940, -967, -1110, -1344, -1534, -1942, -2501], - [0, -2501, -5932, -525, -3184, -3186, -3551], - [1, 3, 1642], - [0, 0, 1643, 1644, 8], - [ - 0, -23, -34, -40, -526, -527, -528, -5884, -6017, -558, -6018, -560, -568, -570, -6019, -932, -940, -943, -958, - -966, -967, -968, -974, -1654, -1938, -1942, -2125, -2156 - ], - [0, -3220, -6020], - [1, 3, 1646], - [0, 1647, 1648, 1649, 4], - [0, -1797], - [ - 0, -2322, -932, -2125, -526, -527, -1365, -23, -528, -566, -6021, -40, -557, -559, -2156, -958, -934, -537, - -3840, -535, -3382, -6022, -550 - ], - [0, -525, -3862, -6023, -6024, -3966], - [1, 3, 1651], - [0, 116, 35, 21, 5], - [1, 3, 1653], - [0, 1654, 1655, 1656, 10], - [0, -3341], - [ - 0, -23, -41, -6025, -527, -6026, -756, -932, -933, -940, -958, -967, -1031, -1344, -1534, -1613, -1763, -1942, - -6027 - ], - [0, -3220, -485], - [1, 3, 1658], - [0, 1659, 1660, 1661, 4], - [0, -24, -6028, -4003, -6029, -6030], - [0, -21, -23, -3362, -3204, -43, -664, -756, -767, -1654, -1788, -6031, -2250], - [0, -1405, -525, -3862, -6032], - [1, 3, 1663], - [0, 1664, 1665, 1666, 4], - [0, -3341, -47, -1107, -1548, -6033], - [ - 0, -21, -23, -6034, -36, -3201, -3077, -38, -40, -41, -6035, -43, -4754, -510, -535, -540, -664, -6036, -6037, - -1549, -1654, -1993, -2011 - ], - [0, -3220, -6038, -1548, -3209], - [1, 3, 1668], - [0, 1669, 1670, 1671, 6], - [0, -6039, -1107, -1872, -2112, -2114], - [0, -21, -23, -37, -3204, -40, -527, -533, -722, -932, -934, -940, -958, -1344, -1415, -1534, -6040, -2251], - [0, -525, -3220, -3551, -6041, -6042, -6043, -2114, -6044, -6045, -4792, -6024], - [1, 3, 1673], - [0, 0, 1674, 7, 5], - [0, -1415, -6046], - [1, 3, 1676], - [0, 0, 0, 21, 5], - [1, 3, 1678], - [0, 0, 0, 21, 4], - [1, 3, 1680], - [0, 1681, 35, 21, 5], - [0, -6047, -6048, -567], - [1, 3, 1683], - [0, 1684, 35, 21, 5], - [0, -6049, -6050, -567, -568], - [1, 3, 1686], - [0, 1687, 1688, 1689, 6], - [0, -6051, -567, -568], - [0, -526, -546, -555, -559, -664, -1654], - [0, -525, -3220, -6052, -3336], - [1, 3, 1691], - [0, 1692, 35, 21, 5], - [0, -567, -568, -569, -570, -1548], - [1, 3, 1694], - [0, 1695, 1696, 21, 6], - [0, -6053, -567, -568, -570], - [0, -531, -6054], - [1, 3, 1698], - [0, 116, 35, 21, 10], - [1, 3, 1700], - [0, 1701, 35, 21, 4], - [0, -6054, -567], - [1, 3, 1703], - [0, 1704, 35, 21, 5], - [0, -567, -6055, -544], - [1, 3, 1706], - [0, 0, 1707, 1708, 4], - [ - 0, -21, -23, -3194, -3840, -26, -3203, -40, -6056, -41, -43, -528, -6057, -664, -932, -933, -951, -956, -958, - -962, -964, -967, -969, -1111, -1654, -6058, -1942 - ], - [0, -525, -3220, -2006, -6059, -6060], - [1, 3, 1710], - [0, 1711, 35, 7, 4], - [0, -6061], - [1, 3, 1713], - [0, 116, 35, 21, 4], - [1, 3, 1715], - [0, 1716, 0, 7, 6], - [0, -567, -753, -2082], - [1, 3, 1718], - [0, 1719, 1720, 1721, 6], - [0, -40, -41, -24, -3352, -38, -6062, -5584, -36, -3381, -6063, -3382, -6064, -553, -3393, -6065, -3396], - [0, -932, -23, -44, -2156, -958, -934], - [0, -525, -3184, -4795, -3214], - [1, 3, 1723], - [0, 1724, 1725, 7, 5], - [ - 0, -6066, -6067, -545, -6068, -6069, -548, -6070, -6071, -6072, -6073, -6074, -6075, -6076, -6077, -549, -6078, - -6079, -6080, -6081, -6082, -6083, -6084, -550, -6085, -6086, -6087, -554, -635, -1384, -2177 - ], - [ - 0, -526, -528, -530, -531, -539, -558, -566, -664, -708, -932, -6013, -956, -1077, -1548, -1654, -1788, -6088, - -2125 - ], - [1, 3, 1727], - [0, 1728, 1729, 7, 6], - [ - 0, -6066, -6068, -6069, -548, -6070, -6071, -6072, -6073, -6074, -6075, -6076, -6077, -549, -6078, -6079, -6080, - -6081, -6082, -6083, -6084, -550, -6085, -6086, -554 - ], - [0, -6012, -531], - [1, 3, 1731], - [0, 1732, 0, 7, 8], - [0, -6089, -544, -6090, -552, -6091, -6092], - [1, 3, 1734], - [0, 1735, 0, 7, 4], - [0, -23, -26, -33, -6065, -6062, -5584, -6093, -3394, -3203, -3409, -38, -40, -41, -42, -44, -3766, -553], - [1, 3, 1737], - [0, 1738, 0, 7, 9], - [0, -6094, -6095, -563], - [1, 3, 1740], - [0, 1741, 0, 7, 5], - [0, -6096, -6017, -564], - [1, 3, 1743], - [0, 1744, 0, 7, 4], - [0, -565, -6097, -543, -546], - [1, 3, 1746], - [0, 1747, 0, 7, 5], - [0, -6067, -6098, -545, -6087, -551], - [1, 3, 1749], - [0, 1750, 1751, 7, 4], - [0, -527, -567, -753, -6099, -1548, -1650, -2234], - [0, -3542], - [1, 3, 1753], - [0, 140, 1754, 7, 8], - [0, -6009, -555], - [1, 3, 1756], - [0, 1757, 0, 7, 4], - [0, -567, -569, -570, -572, -1548], - [1, 3, 1759], - [0, 1760, 1761, 7, 5], - [0, -6008, -6010, -567, -570, -572, -812, -1110, -1384, -1548], - [0, -529], - [1, 3, 1763], - [0, 1764, 1765, 7, 6], - [0, -567, -6100, -1548, -6101], - [0, -529, -572], - [1, 3, 1767], - [0, 0, 1768, 7, 5], - [0, -2319, -633, -23, -6102, -40, -6056, -742, -41, -6103, -3381, -3409], - [1, 3, 1770], - [0, 0, 1771, 1772, 6], - [ - 0, -519, -526, -528, -530, -537, -539, -6104, -559, -562, -668, -708, -767, -932, -6013, -956, -1059, -1788, - -2125, -2127, -2128, -2137, -5385, -6105 - ], - [0, -525, -3214, -3215, -572], - [1, 3, 1774], - [0, 1775, 1776, 1777, 4], - [0, -2424], - [0, -711, -757, -849, -932, -958, -1471, -1485, -1989, -2104, -2127, -2416], - [0, -6106, -6107, -5394, -3122, -3844, -3323, -4865], - [1, 3, 1779], - [0, 1780, 1781, 1782, 11], - [0, -719, -1107, -1376, -1805, -2125, -2387, -2446, -2451], - [ - 0, -6108, -3036, -3049, -3037, -3738, -6109, -3046, -427, -428, -3311, -6110, -6111, -3312, -664, -932, -958, - -966, -1654, -1656, -6112, -2195, -2200, -2335, -2376, -2379, -2402, -2410, -5260, -2501, -2503 - ], - [0, -3445, -574, -1671, -3105, -6113], - [0, 44, 15, 16, 4], - [1, 3, 1785], - [0, 0, 1786, 1787, 5], - [0, -756, -1127, -1132, -1162, -6114, -1405, -1654, -2081], - [0, -6115, -6116, -6117, -6118, -514, -638], - [0, 45, 15, 16, 11], - [1, 3, 1790], - [0, 0, 1791, 1792, 8], - [0, -5859, -589, -633, -2322], - [0, -6118], - [1, 3, 1794], - [0, 177, 1795, 1796, 5], - [0, -1654, -932, -1405, -966, -958, -968, -943, -963, -974], - [0, -6119, -6120, -6121, -6122], - [1, 3, 1798], - [0, 1799, 1800, 1801, 4], - [0, -888, -1645, -1646, -1650, -6123], - [0, -932, -943, -958, -966, -968, -974, -1654, -2125, -2293, -2369, -2418, -2450], - [0, -1004, -3161, -6124, -6125, -6126, -1752, -3578, -3691, -5728, -3122, -3994, -1954, -3445, -3690], - [1, 3, 1803], - [0, 1804, 1805, 178, 4], - [0, -1723, -6127], - [0, -1415, -6128], - [1, 3, 1807], - [0, 0, 0, 1808, 4], - [0, -581, -3214, -3756, -6131, -5110, -6120, -3173, -6129, -6130, -770], - [1, 3, 1810], - [0, 0, 1811, 178, 8], - [0, -581, -6132, -1942, -2410], - [1, 3, 1813], - [0, 1814, 1815, 1816, 9], - [0, -6133, -719, -679], - [0, -1003, -1127, -600, -1130, -1156, -1134, -1148], - [0, -6134, -6135, -6136, -6137, -6138, -6139, -3870, -6140, -6141, -6142, -6143, -6144, -6145], - [1, 3, 1818], - [0, 0, 0, 1819, 5], - [0, -589, -6146], - [0, 68, 15, 16, 8], - [1, 3, 1822], - [0, 1823, 1824, 1825, 8], - [ - 0, -1640, -1805, -2518, -2546, -1519, -2114, -2346, -679, -1646, -6176, -1888, -1948, -725, -6177, -2062, -6178, - -6179, -6180 - ], - [0, -6181, -4215, -2322, -2363, -1405, -2491, -633, -6182], - [0, -6183, -633], - [0, 45, 15, 16, 4], - [1, 3, 1828], - [0, 1829, 1830, 1831, 11], - [0, -1548, -6184], - [0, -756, -6185, -1405, -6186, -1991, -2111], - [0, -589, -6187, -6188], - [0, 45, 15, 16, 5], - [1, 3, 1834], - [0, 1835, 0, 1836, 9], - [ - 0, -6189, -6190, -6191, -23, -3194, -25, -26, -6093, -5828, -3355, -3204, -3408, -40, -42, -46, -4228, -4145, - -3037, -469, -6192, -501, -510, -674, -679, -683, -714, -6193, -742, -1070, -1323, -6194, -1729, -1847, -1942, - -6195, -2162, -2228, -2231, -2245, -2299, -2410, -2416, -6196, -2476, -2550, -1376, -6197 - ], - [ - 0, -6198, -6199, -6200, -6201, -6202, -6203, -3161, -2410, -3214, -3018, -5065, -4726, -3445, -6204, -6205, - -6206, -6207, -6208, -6209, -6210, -6211, -6212, -6213, -6214, -6215, -4160, -6216, -6217, -2006, -6218, -6219, - -2476, -6220, -6221, -4726, -2299, -6222, -6223, -2228, -6224 - ], - [1, 3, 1838], - [0, 1839, 1840, 1841, 10], - [0, -6225, -6226, -6227], - [0, -523, -664, -932, -1654, -6228, -1972, -6229], - [0, -4055, -6230, -6231, -2487, -1838, -3215, -6232, -6233, -2059, -6234, -510, -6235], - [1, 3, 1843], - [0, 0, 0, 1844, 5], - [0, -6236, -6237, -6238, -6239, -6240, -6241, -6242, -6243, -6244, -6245, -6246, -6247], - [1, 3, 1846], - [0, 1847, 0, 1848, 8], - [0, -6248], - [0, -5269, -6249, -596, -6250, -5968, -6251, -6252], - [1, 3, 1850], - [0, 1851, 1852, 7, 4], - [0, -6253], - [0, -1788, -2322, -2388, -1942, -1729, -1972, -2410, -3037], - [1, 3, 1854], - [0, 1855, 1856, 1857, 9], - [0, -6254, -6255, -6256, -6257, -3204, -38, -2687, -6022, -6258, -2965, -6259, -2489], - [ - 0, -6260, -21, -23, -3204, -40, -6261, -43, -44, -4757, -2697, -358, -6262, -6263, -4754, -6264, -4956, -4749, - -4959, -409, -3136, -3052, -6265, -6266, -6021, -6267, -533, -534, -6268, -6269, -539, -557, -560, -6026, -567, - -6270, -683, -756, -767, -799, -6271, -932, -6272, -1168, -1261, -1266, -6273, -1365, -1415, -1422, -1440, - -1666, -6274, -1743, -1763, -1771, -1782, -1788, -1939, -1942, -2000, -2006, -2019, -6275, -6276, -2125, -2156, - -2163, -6277, -2275, -2375, -2376, -2410, -2501, -2502, -2503 - ], - [0, -598, -6278], - [1, 3, 1859], - [0, 1860, 1861, 1862, 8], - [0, -6279, -640, -1370, -2062], - [0, -1032, -2250, -2322, -2410], - [0, -640, -6280, -5827, -6281], - [1, 3, 1864], - [0, 1865, 1866, 1867, 5], - [0, -461, -6282, -6283, -1402, -1795, -2546], - [0, -510, -6284, -710, -1127, -1132, -1134, -1136, -1144, -1148, -1542, -1654, -1859, -2111, -2006, -6285], - [0, -4005], - [1, 3, 1869], - [0, 0, 0, 1870, 5], - [0, -6286, -6287, -6288, -6289, -6290], - [1, 3, 1872], - [0, 1873, 1874, 7, 6], - [0, -6291, -668, -6292, -1548, -6293, -1610, -6294, -6295, -1627, -6296, -6297, -2269, -6298, -6299], - [0, -6300, -601, -714, -932, -943, -958, -966, -968, -974], - [0, 45, 15, 16, 8], - [0, 67, 15, 16, 10], - [0, 67, 15, 16, 5], - [0, 67, 15, 16, 6], - [1, 3, 1880], - [0, 0, 1881, 1882, 5], - [0, -1405], - [0, -6301, -5389, -6302, -6187], - [1, 3, 1884], - [0, 0, 1885, 1886, 5], - [ - 0, -705, -2152, -1107, -1805, -461, -6303, -1654, -2210, -1452, -1650, -2125, -6304, -615, -1303, -1405, -1813, - -693, -2416, -462, -633, -617, -769, -2187, -1453, -1161 - ], - [0, -1961, -6187, -5923, -6305, -6306, -510, -5867, -6307, -6308, -6309, -6310, -6311, -6312], - [1, 3, 1888], - [0, 0, 1889, 1890, 6], - [0, -1654, -6313, -953], - [0, -6314, -6315, -6316, -6317, -6318], - [1, 3, 1892], - [0, 1893, 81, 7, 6], - [0, -651, -737, -812, -1335, -1351, -1800, -1983, -1999, -2401], - [1, 3, 1895], - [0, 1896, 1897, 1898, 4], - [0, -615, -6319, -1369, -1548], - [ - 0, -6320, -664, -932, -940, -967, -1344, -1446, -1497, -1534, -1654, -1691, -1788, -1857, -1942, -2210, -2211, - -2245, -2446 - ], - [0, -1818, -1691, -6321, -3742, -6322, -6323], - [1, 3, 1900], - [0, 182, 1901, 1902, 4], - [0, -707, -1510, -1607], - [0, -6324, -1334], - [1, 3, 1904], - [0, 0, 1905, 148, 4], - [ - 0, -1389, -2564, -1640, -2162, -2834, -1471, -932, -1111, -1437, -2093, -2127, -2149, -2334, -1412, -1442, - -1753, -1889, -2195, -3574, -1942, -699, -767, -3031, -2281, -21, -1354, -23, -6325, -3563, -1333, -1891, -2096, - -6326, -518, -1772, -3559, -3564, -1481, -1547, -6327, -6328, -2997, -3660, -3803, -3649, -3562, -6329, -945, - -3566, -2429, -40, -6330, -957, -3326, -958, -978, -1475, -1477, -6331, -3561, -963, -1479, -3571, -350, -6332, - -2084, -1486, -3565, -351, -1473, -3569, -3573, -3568 - ], - [1, 3, 1907], - [0, 0, 1908, 1909, 4], - [0, -2162, -6333, -888], - [0, -620, -2162, -775, -6334], - [1, 3, 1911], - [0, 0, 0, 1912, 4], - [0, -622], - [1, 3, 1914], - [0, 1915, 1916, 1917, 8], - [0, -2728, -656, -668, -688, -2267, -2400, -2820, -2528], - [0, -519, -1788, -2384, -2541], - [0, -687, -6335, -6336, -3974, -4110, -4000, -4111, -4112, -6337, -5554], - [1, 3, 1919], - [0, 1920, 1921, 1922, 4], - [0, -6338, -2114, -6339, -2347], - [0, -633, -725, -2319, -2346], - [0, -633, -6340, -1076, -6341, -3862, -5142, -6342, -4161, -6118], - [1, 3, 1924], - [0, 1925, 1926, 1927, 4], - [0, -812, -1645, -2488, -6343, -6344, -6345, -6346], - [0, -664, -1654, -2125, -1077, -2091, -6347, -964, -630, -6348], - [0, -6346, -3214], - [1, 3, 1929], - [0, 1930, 1931, 1932, 4], - [0, -6346, -6349], - [0, -6350, -630, -664, -1654, -6347], - [0, -6346, -1631, -6351], - [1, 3, 1934], - [0, 1935, 1936, 7, 6], - [0, -3628, -2731, -1054, -6345, -2359, -2488], - [0, -3035, -3621, -3037, -6352, -664, -726, -1654, -6353, -1788, -1942, -6354, -2388, -2389, -6355, -2410], - [1, 3, 1938], - [0, 1939, 1940, 1941, 6], - [ - 0, -6356, -6357, -6358, -668, -679, -729, -731, -6359, -6360, -6361, -990, -1072, -1077, -1336, -1361, -1639, - -1812, -5763, -1999, -6362, -2152, -2178, -2186, -2187, -2188, -2228, -2594, -2550 - ], - [ - 0, -3037, -6363, -664, -6364, -1119, -5735, -1654, -1942, -1980, -2105, -2111, -2125, -2210, -2229, -2234, - -2269, -2293, -2410, -2460 - ], - [0, -6365, -775, -6366, -6367], - [1, 3, 1943], - [0, 1944, 1945, 1946, 5], - [ - 0, -2435, -1107, -2444, -2546, -507, -640, -997, -1285, -6368, -6369, -6370, -1958, -2114, -1370, -1977, -2347, - -6371, -6372, -1464, -6373, -6374, -2194, -6375, -6376, -6377, -725, -6378, -6379, -6380, -6381, -6382, -6383, - -6384, -6385, -6386, -1848, -6387, -2062, -6388, -6389, -771, -6390, -6391, -6392, -6393, -6394, -5936, -6395 - ], - [0, -6396, -2319, -2330, -2177, -2346, -573, -6397, -6398, -710, -6399, -6400, -6401, -6402], - [0, -4865, -4792, -4791, -6403, -4161, -1764, -3214], - [1, 3, 1948], - [0, 1949, 1950, 1951, 9], - [0, -6404, -6405, -6406, -2114, -2346], - [0, -1449, -1705, -1972, -2105, -2125, -2319, -6407], - [0, -633, -6340, -5396, -1109, -1110, -6408, -6409, -4791], - [1, 3, 1953], - [0, 1954, 0, 1955, 9], - [0, -6410, -658, -6088, -6411, -6412], - [0, -657, -6413, -6414], - [1, 3, 1957], - [0, 1958, 1959, 1960, 11], - [0, -6415], - [0, -2322, -2125, -2410, -3037, -6416], - [0, -6417, -6418, -770, -6419, -6420, -6421, -6422, -5835, -6423], - [1, 3, 1962], - [0, 0, 1963, 1964, 10], - [ - 0, -1788, -2323, -2384, -664, -2446, -668, -1654, -2210, -932, -2127, -2379, -1942, -589, -1729, -2211, -2410, - -3035, -3037, -3621, -4372, -1588, -3625, -2234, -977, -940, -967, -262, -3267, -428, -351, -6424, -427, -234 - ], - [0, -1671, -637, -3215], - [1, 3, 1966], - [0, 0, 0, 1967, 6], - [0, -638, -4865], - [1, 3, 1969], - [0, 1970, 1971, 1972, 8], - [0, -461, -6425, -6426, -668, -1588, -1646, -6427], - [0, -6428, -932, -1107, -1654, -2125, -2127, -6429, -350, -4062, -351, -2231, -2234, -6430], - [0, -3214, -6431, -6432, -6433, -4795, -6434, -3184, -6052], - [1, 3, 1974], - [0, 1975, 1976, 1977, 11], - [0, -578, -5933], - [0, -468, -589, -633, -725, -1345, -5852, -5848, -2239, -2322, -2347, -2416], - [0, -6435, -4865, -633, -640, -6436, -6437, -6438], - [1, 3, 1979], - [0, 0, 1980, 1981, 4], - [0, -5834, -515, -516, -932, -1365, -1777, -2156, -2322], - [0, -640, -6439], - [1, 3, 1983], - [0, 1984, 1985, 1986, 4], - [0, -6127], - [0, -1654, -1733, -6128], - [0, -642], - [1, 3, 1988], - [0, 0, 14, 1989, 5], - [0, -6440, -6441, -6442, -3966, -3209, -3103, -6443, -4108, -5839, -6444], - [1, 3, 1991], - [0, 0, 1992, 1993, 5], - [0, -784, -1891, -1942, -2125, -2162], - [0, -775, -2162, -3754, -6445, -4672, -3576, -3161], - [1, 3, 1995], - [0, 1996, 1997, 1998, 5], - [0, -3417, -6446, -6447, -303, -304, -6448, -6449, -5007, -523, -668, -812, -6450, -6451, -1805], - [ - 0, -4367, -4368, -3035, -3198, -6452, -3621, -3037, -4372, -427, -664, -932, -938, -939, -940, -967, -1654, - -1661, -1722, -1763, -1788, -4362, -2200, -2210, -2379, -2410 - ], - [0, -3690, -856, -3438, -3328, -6453, -687], - [1, 3, 2000], - [0, 2001, 31, 2002, 5], - [0, -6376, -6399, -725, -6282, -1646, -2347], - [0, -633, -4161, -6454, -1644, -4792], - [1, 3, 2004], - [0, 2005, 2006, 2007, 6], - [0, -6455, -1666, -6456, -6457], - [0, -6458, -2319, -2454, -2456, -1607], - [0, -1573, -5545, -6459, -4055, -648], - [1, 3, 2009], - [0, 2010, 2011, 2012, 6], - [0, -6460], - [0, -6461, -932], - [0, -6462, -4054, -6463, -1069], - [1, 3, 2014], - [0, 2015, 2016, 2017, 4], - [0, -1578], - [0, -6464, -6465, -6466, -6467, -6468, -6469], - [0, -5149, -5839, -640, -6435, -6470, -650, -4055, -2512, -6471], - [1, 3, 2019], - [0, 0, 2020, 2021, 4], - [0, -932, -963, -1654, -1788], - [0, -6472, -651, -3590, -1838, -3215, -5845, -6473], - [1, 3, 2023], - [0, 2024, 2025, 2026, 4], - [0, -6474, -4003, -1047, -6475, -5086, -5087, -5089, -6030, -6476, -2550, -2551], - [0, -3037, -664, -6477, -767, -1654, -2250, -2379, -2410], - [0, -4005, -6478, -4004, -1405, -6479, -6480, -3966], - [1, 3, 2028], - [0, 0, 2029, 7, 5], - [ - 0, -3446, -1415, -999, -1344, -1111, -2127, -928, -5354, -2375, -2379, -2402, -1077, -1942, -6481, -2410, -23, - -3136, -1534, -1607, -3048, -2174, -6482, -2132, -6483, -350, -796, -351, -6484 - ], - [1, 3, 2031], - [0, 2032, 2033, 2034, 11], - [0, -1495, -6485], - [0, -2581, -6486, -6487, -3037, -3664, -6488, -6489, -2125, -2391, -2410, -2469, -6490], - [0, -3324, -6491, -6492, -3966, -4601, -6493, -2071, -1622, -6494, -6495, -6496, -6497, -6498, -6499, -6500], - [1, 3, 2036], - [0, 2037, 2038, 2039, 4], - [0, -6501, -6502, -6503, -6504], - [0, -5834, -516, -5835, -921, -932, -993, -1065, -5836, -1365, -1777, -1788, -1794, -2156, -2322], - [0, -3214, -3217, -6505, -3756, -6506, -6507, -6508, -6509, -6510, -655, -6511, -5924, -5831], - [1, 3, 2041], - [0, 0, 14, 2042, 4], - [0, -656, -6512, -6513, -6514, -6515, -6516, -864, -2424, -6517, -2265, -5554, -5845, -6518, -6519], - [1, 3, 2044], - [0, 0, 0, 2045, 4], - [0, -5180, -5177, -3839, -4865], - [1, 3, 2047], - [0, 0, 0, 2048, 5], - [0, -6520], - [1, 3, 2050], - [0, 2051, 2052, 2053, 9], - [0, -1723, -6521], - [0, -3037, -6522, -1004, -1442, -1654, -1870, -2250, -2384, -2410], - [0, -659, -6523, -6524, -6525, -6526, -6527, -5093, -6528], - [0, 45, 15, 16, 9], - [1, 3, 2056], - [0, 0, 2057, 2058, 4], - [0, -516, -932, -934, -958, -1077, -1654, -2501], - [0, -2501, -3862, -6529, -6024, -4792], - [1, 3, 2060], - [0, 0, 0, 2061, 5], - [0, -1859, -6530, -4004, -3634, -6531], - [1, 3, 2063], - [0, 0, 2064, 2065, 5], - [ - 0, -652, -6532, -1654, -932, -928, -1110, -6533, -820, -1942, -190, -2410, -6534, -6535, -3311, -960, -6536, - -350, -3312 - ], - [0, -4004, -5855, -507, -3634, -664], - [1, 3, 2067], - [0, 2068, 2069, 2070, 5], - [0, -6534], - [0, -652, -664, -1654, -932, -1110, -1942, -190], - [0, -664, -6537, -4865, -510, -3634, -6538, -5923, -6306], - [1, 3, 2072], - [0, 0, 183, 2073, 9], - [0, -664, -1841, -6539], - [1, 3, 2075], - [0, 0, 2076, 2077, 9], - [0, -664, -1654, -1405, -756, -6347, -6540], - [0, -664, -6537, -6541, -6542, -6543, -3862, -6544, -6545, -6546, -5572, -6547, -6548, -6549], - [1, 3, 2079], - [0, 0, 2080, 2081, 8], - [0, -652, -2541, -519, -2384, -999, -1612, -1575, -6550, -3037, -3523], - [ - 0, -712, -5535, -714, -3974, -4000, -687, -2265, -5514, -5553, -3770, -3975, -5538, -5549, -5513, -5550, -2547, - -1573, -5545, -3958, -5554 - ], - [1, 3, 2083], - [0, 0, 2084, 2085, 10], - [0, -519, -528, -756, -6551, -932, -6552, -1168, -6553, -1197, -1243, -1252, -6554, -1548, -1788, -1976], - [0, -669, -6555, -3262, -4004, -6556, -6557, -6558, -6559], - [1, 3, 2087], - [0, 0, 0, 2088, 5], - [0, -5888, -6514, -5845, -6408, -6512, -6519, -6560, -6561, -6562], - [1, 3, 2090], - [0, 2091, 2092, 7, 4], - [0, -6563, -6564, -734, -6565, -3446, -6566, -6567, -1805, -1852, -6568, -6569, -2177, -6570], - [0, -3037, -3199, -3664, -932, -944, -1431, -1942, -2251, -2410, -2423, -2469], - [1, 3, 2094], - [0, 2095, 2096, 2097, 4], - [0, -6571], - [ - 0, -350, -6572, -4062, -351, -367, -426, -6573, -427, -428, -6574, -6575, -6576, -726, -756, -767, -932, -6577, - -6578, -957, -963, -985, -1107, -1412, -1413, -1471, -1475, -1476, -1478, -1479, -1481, -3569, -1486, -6579, - -1491, -3222, -1666, -1667, -1870, -2127, -2130, -3571, -6580, -2140, -2410, -2550 - ], - [0, -659, -6581, -6582, -6583, -5177, -3576], - [1, 3, 2099], - [0, 2100, 2101, 2102, 11], - [0, -1839, -2426, -6584, -6585, -1333, -6586, -861, -6587, -6588, -6589, -6590], - [ - 0, -2392, -2386, -1344, -1449, -932, -1437, -2469, -1110, -1942, -2354, -190, -2410, -3037, -1534, -4647, -3615, - -6591, -965, -6592, -2411, -3664, -960, -6593, -978, -1943, -6594, -940 - ], - [0, -6595, -1437, -3585, -6596, -3215, -5092, -6597, -3264], - [1, 3, 2104], - [0, 2105, 2106, 2107, 5], - [0, -769, -6598, -1962], - [0, -526, -6066, -548, -559, -664, -932, -1452, -1654], - [0, -6599, -1958, -5923], - [1, 3, 2109], - [0, 2110, 2111, 2112, 4], - [ - 0, -44, -6600, -3946, -6601, -5579, -513, -595, -6602, -682, -709, -5212, -747, -753, -761, -6603, -6604, -6605, - -6606, -5581, -6607, -3135, -6608, -6609, -1398, -1442, -6610, -1452, -6611, -6612, -5216, -1666, -6613, -1942, - -4918, -6614, -6615, -1992, -4930, -4987, -6616, -6617, -6618, -6619, -2027, -2029, -6620, -6621, -2040, -2048, - -2056, -2113, -6622, -4951, -2192, -6623, -2387, -2424, -2489, -2446 - ], - [ - 0, -23, -26, -33, -34, -35, -36, -3396, -5585, -3381, -6624, -38, -3351, -3382, -40, -41, -3744, -3746, -3747, - -3562, -3059, -6625, -6626, -3043, -6627, -6628, -3136, -6629, -3044, -6630, -6631, -5221, -3040, -6632, -3052, - -6633, -6634, -4972, -427, -428, -482, -518, -523, -527, -528, -533, -534, -538, -5596, -3133, -6635, -6636, - -6637, -6638, -661, -668, -5598, -719, -767, -778, -3078, -786, -4977, -5603, -915, -916, -2760, -932, -933, - -940, -951, -958, -959, -962, -963, -969, -6639, -1017, -1021, -4979, -1041, -1074, -1103, -1107, -1168, -1174, - -1252, -5605, -1261, -1344, -1352, -1360, -6640, -1415, -1449, -3134, -1521, -5611, -1534, -1548, -4984, -5613, - -6641, -5615, -1643, -1646, -1650, -1652, -1653, -1662, -1664, -1667, -1792, -1814, -1889, -1908, -1952, -4923, - -6642, -6643, -4986, -2006, -2012, -2013, -2016, -2017, -3145, -3143, -6644, -2028, -6645, -4242, -2098, -5616, - -5617, -3868, -5618, -2125, -5619, -6646, -2281, -4997, -4998, -2282, -4999, -2284, -2335, -2347, -2376, -2410, - -2427, -2437, -6647, -6648, -2501, -6649, -2508, -5628, -5002, -3120, -2534 - ], - [0, -6650, -3099, -2006, -3159, -3095, -3098, -3160, -3161, -3100], - [1, 3, 2114], - [0, 2115, 2116, 2117, 4], - [0, -6651], - [0, -6652, -3037, -1942, -2358, -2410, -4701], - [0, -1076, -2490, -6653, -6654, -6655, -6656, -1080], - [1, 3, 2119], - [0, 0, 2120, 184, 5], - [0, -686, -1344, -2910, -2250, -2322], - [1, 3, 2122], - [0, 2123, 0, 2124, 5], - [ - 0, -81, -66, -3512, -73, -74, -3520, -62, -6660, -3503, -3502, -71, -6661, -79, -83, -68, -72, -80, -82, -85, - -70, -6662, -6663, -6664, -6665, -63, -6666, -3519, -3513, -64, -6667, -76, -54, -6668, -67, -69, -6669, -6670, - -6671, -3521, -6672, -6673, -56, -75, -6674, -55, -6675, -6676, -3515, -6677, -65, -3504, -3511, -6678, -6679, - -52, -3514, -6680, -3526, -77, -6681, -6682 - ], - [0, -3488, -681, -3489, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161], - [1, 3, 2126], - [0, 0, 2127, 2128, 5], - [0, -2384, -2127, -2354, -1339, -1605, -4062, -350, -351], - [0, -2006, -775, -3205, -6683, -682, -2444, -3590], - [1, 3, 2130], - [0, 185, 2131, 2132, 5], - [0, -633, -932, -934, -1336, -1722, -2188, -2471], - [0, -775, -6684], - [1, 3, 2134], - [0, 2135, 2136, 2137, 10], - [0, -824], - [ - 0, -21, -23, -40, -42, -6685, -3136, -3037, -6686, -533, -708, -767, -825, -932, -999, -1344, -1415, -1534, - -1535, -1763, -1942, -2061, -2177, -6687, -2410, -2501 - ], - [0, -2501, -3862, -6688, -3966], - [1, 3, 2139], - [0, 0, 0, 2140, 5], - [0, -5514, -685, -3974], - [1, 3, 2142], - [0, 186, 14, 2143, 8], - [0, -685, -3551, -4792, -6024, -3324, -6690, -6691, -6692, -3346, -6693, -6694, -6695, -1072], - [1, 3, 2145], - [0, 2146, 0, 2147, 5], - [0, -1107, -1000], - [0, -687, -4376, -6696, -6697, -6698, -4377, -4000, -6699, -6700, -6701, -3957, -6702], - [1, 3, 2149], - [0, 0, 2150, 2151, 8], - [0, -519, -2410, -2541], - [0, -687, -6335, -6336, -3974, -4110, -4000, -4111, -4112, -6337, -5554, -4055], - [1, 3, 2153], - [0, 2154, 2155, 2156, 4], - [0, -6703, -922, -6704, -5969, -6705], - [0, -932, -6706, -6707, -6708, -1344, -1534, -1788, -6709, -6710], - [0, -5514, -712, -4000, -3974, -687, -5550, -1573, -5545, -2547], - [1, 3, 2158], - [0, 2159, 2160, 2161, 11], - [0, -2120], - [0, -3037, -519, -2410, -2541], - [0, -687, -5564, -5514, -6711, -6712, -6713, -6714, -4110, -3974, -4000, -3975, -5550, -3958], - [1, 3, 2163], - [0, 0, 0, 2164, 9], - [0, -687], - [1, 3, 2166], - [0, 0, 2167, 2168, 4], - [0, -519, -1575, -6715, -2410, -2541], - [0, -687, -6716, -6717, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, -4116, -4117, -4055], - [1, 3, 2170], - [0, 187, 2171, 2172, 10], - [0, -2198, -6718], - [0, -687, -714, -4002], - [1, 3, 2174], - [0, 2175, 2176, 188, 5], - [0, -1548, -2267, -714], - [0, -6719, -664, -693, -756, -6720, -6721, -1168, -1220, -1231, -1266, -2210, -2211], - [1, 3, 2178], - [0, 117, 2179, 188, 10], - [0, -693, -932, -940, -967, -1415, -6725, -6726, -1942], - [1, 3, 2181], - [0, 2182, 14, 2183, 10], - [0, -2219, -2267], - [0, -6727, -6728, -5554, -6729, -4783, -687, -3974, -4110, -5550, -6730, -5514, -2265], - [1, 3, 2185], - [0, 2186, 2187, 76, 4], - [ - 0, -668, -2387, -1401, -1548, -2177, -1442, -6731, -1077, -2269, -303, -482, -4366, -6732, -480, -5676, -2267, - -6733, -6734, -1366, -6735, -2297, -6736, -6737, -6738, -2591 - ], - [ - 0, -664, -523, -1654, -932, -2379, -4361, -2410, -3035, -3037, -3621, -3044, -3199, -3660, -3048, -665, -6739, - -6740, -4369, -938, -6741, -4373, -4269, -939 - ], - [1, 3, 2189], - [0, 2190, 2191, 2192, 5], - [0, -3922], - [ - 0, -351, -3267, -3136, -3044, -3037, -6742, -427, -428, -6743, -6744, -932, -6745, -969, -1100, -1415, -1548, - -2127, -6746, -2375, -2379, -2410 - ], - [0, -687, -2410, -3215, -6747, -6748, -4377, -5829, -3957], - [1, 3, 2194], - [0, 2195, 2196, 2197, 5], - [0, -6749, -6750, -6751], - [ - 0, -23, -40, -534, -664, -767, -932, -934, -940, -958, -967, -1344, -1471, -1474, -1475, -1482, -1489, -1492, - -1534, -1654, -1942, -2210, -2384, -2417, -2501, -2503 - ], - [0, -699, -6351, -6752], - [1, 3, 2199], - [0, 2200, 55, 2201, 4], - [0, -6753, -999, -6754, -1401, -6755, -6756], - [0, -699, -6351, -6757, -6758, -6759, -2059, -6234, -6760, -6761, -6762, -6763], - [1, 3, 2203], - [0, 2204, 2205, 157, 4], - [0, -2267, -2269, -2528], - [0, -3037, -427, -428, -652, -664, -668, -767, -932, -958, -965, -1166, -1654, -2125, -6313, -2410], - [1, 3, 2207], - [0, 0, 83, 7, 6], - [1, 3, 2209], - [0, 0, 2210, 2211, 10], - [0, -985, -2447, -2334], - [0, -3205, -6683, -682], - [1, 3, 2213], - [0, 2214, 0, 2215, 5], - [0, -689], - [0, -6764, -4340, -6297, -6765, -6716, -4700, -6722, -4000, -640], - [1, 3, 2217], - [0, 0, 2218, 2219, 6], - [0, -633, -6766, -1654, -1693], - [0, -510, -5411, -3262, -6767, -6768], - [1, 3, 2221], - [0, 2222, 2223, 2224, 4], - [0, -1494], - [0, -2198, -1654, -705], - [0, -3974, -4000, -1965, -3959, -5110, -6769, -705], - [1, 3, 2226], - [0, 182, 2227, 2228, 5], - [0, -1510, -1607], - [0, -4004, -1001, -5855], - [1, 3, 2230], - [0, 2231, 2232, 2233, 11], - [0, -4378, -6770, -1442, -6771, -6772], - [0, -932, -940, -1344, -1415, -1534, -1658, -1942], - [0, -4005, -6773, -6774, -708], - [1, 3, 2235], - [0, 2236, 2237, 2238, 6], - [0, -6775, -6776, -6777, -6778, -6779, -6780, -6781], - [0, -6782], - [0, -3496, -707], - [1, 3, 2240], - [0, 0, 2241, 189, 10], - [0, -849, -6783, -1304, -1600, -2424], - [1, 3, 2243], - [0, 0, 2244, 189, 4], - [0, -23, -40, -4691, -709, -849, -1304, -6785, -1600, -1978, -2424, -2501], - [1, 3, 2246], - [0, 2247, 2248, 2249, 4], - [0, -3523, -2741], - [0, -1654, -2384, -2541], - [0, -712, -5535, -775], - [1, 3, 2251], - [0, 0, 0, 2252, 5], - [0, -3974, -3770, -712, -5514], - [1, 3, 2254], - [0, 0, 2255, 2256, 5], - [0, -932, -936], - [0, -5514, -3974, -714], - [1, 3, 2258], - [0, 2259, 2260, 2261, 11], - [0, -2269, -6786], - [0, -526, -559, -668, -2320, -2322], - [0, -6787, -5554, -5514, -4000, -3974, -4001, -4002], - [1, 3, 2263], - [0, 0, 2264, 2265, 6], - [0, -1003, -1452, -1654], - [0, -687, -3957, -6788], - [1, 3, 2267], - [0, 2268, 190, 2269, 11], - [0, -6789, -6790, -1551, -6791], - [0, -4378, -1838, -6748, -4377, -5829, -6792, -3215, -6747, -687, -3957, -6722], - [1, 3, 2271], - [0, 2272, 2273, 2274, 4], - [0, -6789, -6793, -6794, -6791], - [0, -350, -351, -1448, -2127, -2337], - [0, -3974, -4376, -6795, -3262], - [1, 3, 2276], - [0, 0, 2277, 2278, 4], - [0, -2384, -1415, -932, -1110, -2375, -1942, -190, -2410, -3136, -3037, -2411, -959, -940], - [0, -719, -3957, -5829, -3215, -687, -6748, -4377, -4378], - [1, 3, 2280], - [0, 2281, 2282, 2283, 5], - [0, -1107, -815, -1548, -6796, -6797, -1077, -1376, -1646, -3767, -2270, -831, -6798, -2271, -796], - [ - 0, -1788, -664, -2446, -1654, -2210, -1104, -2177, -708, -1753, -21, -1365, -1972, -23, -43, -2174, -40, -1656, - -539, -6799, -6800, -6801, -36, -741 - ], - [0, -5890, -3240, -3276, -6802, -720], - [1, 3, 2285], - [0, 2286, 2287, 146, 4], - [0, -86, -3534], - [0, -3536, -3537, -3535], - [1, 3, 2289], - [0, 0, 2290, 2291, 6], - [ - 0, -526, -528, -535, -546, -6017, -558, -566, -708, -767, -855, -932, -940, -967, -1415, -1639, -1942, -2125, - -2127, -2128, -2137, -2143, -2517 - ], - [ - 0, -5839, -525, -4795, -6803, -3184, -6804, -6805, -3264, -6806, -6807, -6722, -6808, -6809, -6810, -6811, - -6812, -6813, -6814, -6815, -2265, -6816, -6817, -6818, -6819, -3110 - ], - [1, 3, 2293], - [0, 0, 55, 2294, 6], - [0, -5389, -6820, -997, -6821, -6822, -5078, -6823], - [1, 3, 2296], - [0, 2297, 191, 2298, 5], - [0, -651, -6824, -812, -5397, -6825, -2155, -2453], - [0, -724, -6826, -6827, -5401, -1004, -6828, -1334, -5827], - [1, 3, 2300], - [0, 2301, 31, 7, 4], - [0, -6829, -1370, -2062, -5972], - [1, 3, 2303], - [0, 2304, 2305, 2306, 4], - [0, -2153, -668, -2550, -2369, -2194, -2297], - [ - 0, -1344, -932, -2469, -928, -1110, -1942, -190, -2410, -3037, -1534, -3610, -3041, -6830, -6831, -2411, -6832, - -3664, -2156, -4373, -6593, -6833, -940, -967, -6834, -6835, -4814 - ], - [0, -6836, -5920, -5921, -726, -3957, -6837], - [1, 3, 2308], - [0, 2309, 2310, 2311, 4], - [0, -1460], - [0, -3037, -652, -711, -6838, -6839, -6840, -3589, -2105, -2177, -2362, -2379, -2410, -2424, -6841, -2548], - [0, -6842, -727, -3870, -6843, -6844, -6845, -5558], - [1, 3, 2313], - [0, 2314, 55, 2315, 4], - [0, -6846, -3780, -1119, -6847, -6848], - [0, -727, -4634, -6005, -3870, -6849, -6850, -4055, -6582, -6851, -6852, -6853], - [1, 3, 2317], - [0, 2318, 2319, 2320, 4], - [0, -812, -1045, -1840, -2445], - [0, -932, -1654, -1788, -2293], - [0, -3161, -3578, -5401, -729, -6854], - [1, 3, 2322], - [0, 0, 84, 2323, 11], - [0, -729, -1004, -6855, -3556], - [1, 3, 2325], - [0, 0, 2326, 7, 4], - [0, -932, -1415, -2210], - [1, 3, 2328], - [0, 2329, 2330, 2331, 4], - [0, -812, -6856], - [ - 0, -5028, -86, -3307, -3244, -190, -3198, -3617, -3733, -3037, -4203, -427, -428, -519, -652, -708, -932, -940, - -954, -967, -1004, -1010, -1103, -1344, -1534, -1671, -1771, -1806, -1942, -2251, -2293, -2892, -2402, -2410 - ], - [0, -729, -6857, -1671, -6858, -1004], - [1, 3, 2333], - [0, 0, 2334, 2335, 5], - [0, -2581, -3733, -3037, -3664, -1010, -2379, -2410, -2466, -6859, -2469], - [0, -729, -2071, -6858, -1004], - [1, 3, 2337], - [0, 0, 2338, 2339, 8], - [0, -6447, -3037, -3664, -672, -6860, -932, -944, -6861, -1942, -6862, -6570, -2267, -2410, -2423, -2469], - [0, -4000, -3444, -6863, -6864, -687, -6198, -2427, -1965, -6865, -3276, -6324, -6866], - [1, 3, 2341], - [0, 0, 2342, 2343, 5], - [ - 0, -2541, -519, -864, -6867, -6868, -888, -6869, -1974, -6870, -6871, -6872, -6873, -6874, -6875, -2310, -6876, - -6877, -1344, -6878, -2006, -6879, -932, -6880, -6881, -6882, -1548, -6883, -2177, -6884, -6885, -6886, -1053, - -6887, -6888, -1310, -1689, -1783, -6889, -2019, -1276, -2094, -6890, -2424, -6891, -23, -6892, -1534, -6893, - -6894, -710, -6895, -6896, -6897, -6898, -41, -2099, -946 - ], - [0, -6899, -3110, -6107], - [1, 3, 2345], - [0, 0, 2346, 2347, 6], - [0, -652, -932, -943, -958, -963, -966, -968, -974], - [0, -736, -1334, -6900, -4616], - [1, 3, 2349], - [0, 0, 2350, 2351, 5], - [0, -1788, -1654, -932, -821, -966, -958, -968, -943, -974], - [0, -737, -1334, -4610, -4616, -6901], - [1, 3, 2353], - [0, 2354, 0, 2355, 4], - [0, -6902, -6903, -1630, -6904, -6905, -5983, -6906, -6907], - [0, -739, -6908, -5887, -1573, -687], - [1, 3, 2357], - [0, 2358, 0, 2359, 9], - [0, -1630, -6909, -6910, -739], - [0, -687, -5732, -739, -6908, -5887, -1573], - [1, 3, 2361], - [0, 2362, 0, 2363, 11], - [0, -6911], - [0, -739, -6912, -6913], - [1, 3, 2365], - [0, 0, 2366, 2367, 4], - [0, -6914, -2319], - [0, -5845, -6915, -6916, -6917, -4865, -812], - [1, 3, 2369], - [0, 0, 2370, 2371, 5], - [0, -6918, -3664, -6919, -2410, -2469], - [0, -743, -6920], - [1, 3, 2373], - [0, 2374, 81, 2375, 4], - [0, -743, -746], - [0, -743, -5401], - [1, 3, 2377], - [0, 2378, 2379, 2380, 10], - [0, -6920, -812, -6825, -2155], - [0, -729, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293], - [0, -729, -1004, -5401, -6858], - [1, 3, 2382], - [0, 0, 0, 2383, 4], - [0, -743, -6921, -6922], - [1, 3, 2385], - [0, 2386, 2387, 2388, 4], - [0, -6923], - [0, -633, -1646, -1719, -6924, -1813, -6925, -2416], - [0, -699, -6351, -4865], - [1, 3, 2390], - [0, 2391, 2392, 2393, 4], - [0, -2654, -1108, -2168, -1759, -2182], - [ - 0, -824, -1415, -1344, -1623, -774, -932, -825, -1110, -6926, -2501, -1942, -767, -21, -190, -533, -2410, -23, - -3037, -1041, -1534, -1771, -86, -965, -3560, -2251, -40, -2411, -6927, -959, -960, -32, -958, -6928, -6929, - -978, -940, -967, -3748, -6930, -3307 - ], - [0, -2501, -3862, -6931, -6932, -6351], - [1, 3, 2395], - [0, 2396, 2397, 7, 4], - [0, -1107, -1645, -1650, -6933, -2347, -2430, -2550], - [0, -2125, -2322, -2320], - [1, 3, 2399], - [0, 0, 27, 2400, 4], - [0, -6934, -6935, -3262, -6936, -6937, -6938], - [1, 3, 2402], - [0, 2403, 2404, 2405, 4], - [0, -1559, -750, -6939], - [0, -3040, -3052, -2410, -2006, -2019], - [0, -2006, -2410, -6935, -6940, -6941], - [1, 3, 2407], - [0, 2408, 2409, 2410, 4], - [0, -728, -6942, -6943, -6944, -3496, -999, -1758, -2177, -2313], - [0, -6945, -652, -1412, -2123], - [0, -752, -3323, -687], - [1, 3, 2412], - [0, 0, 0, 2413, 5], - [ - 0, -6946, -6947, -6948, -6949, -6950, -6951, -6952, -6953, -6954, -6955, -6956, -6957, -6958, -6959, -6960, - -6961, -6962, -6963, -6964, -6965, -6966, -6967, -6968, -6969, -6970, -6971, -6972, -6973, -6974, -6975, -6976, - -6977, -6978, -6979, -6980, -6981, -6982, -6983, -6984, -6985, -6986, -6987, -6988, -3582, -6989, -5396 - ], - [1, 3, 2415], - [0, 2416, 2417, 2418, 4], - [0, -1792, -2453], - [0, -465, -932, -1004, -1654, -1788, -2293], - [0, -754, -1004, -729, -5401], - [1, 3, 2420], - [0, 2421, 2422, 2423, 6], - [0, -5672, -1362, -1442, -6990], - [ - 0, -3660, -3037, -6991, -427, -428, -3899, -767, -932, -6992, -940, -948, -958, -966, -979, -1344, -1534, -6689, - -1942, -6993, -2410, -2469 - ], - [0, -6994, -3870, -727], - [1, 3, 2425], - [0, 2426, 2427, 2428, 4], - [0, -1442, -6995, -6996, -1646, -2105], - [0, -1654, -1788, -2198, -2200, -2210, -2541], - [0, -4005, -756], - [1, 3, 2430], - [0, 2431, 2432, 2433, 4], - [0, -6997, -1111, -1630], - [0, -519, -999, -1849, -6909, -2541], - [ - 0, -5732, -687, -6351, -6998, -6997, -6656, -6999, -702, -1076, -5827, -1107, -7000, -1705, -5922, -7001, -6582, - -5398, -7002 - ], - [1, 3, 2435], - [0, 2436, 2437, 2438, 4], - [0, -1116, -7003, -674, -7004, -7005, -1351, -7006], - [0, -652, -519, -2392, -1722, -2210, -932, -1110, -190, -7007, -2410, -3037, -2364, -2411], - [0, -3214, -758, -7008, -6596, -6531, -1437, -3967, -1334, -1342, -5735, -1116, -2105, -2435, -5150, -6826], - [1, 3, 2440], - [0, 0, 0, 2441, 11], - [0, -759, -7009, -7010, -7011, -7012, -7013, -7014, -7015, -7016, -7017, -7018, -7019, -7020], - [1, 3, 2443], - [0, 2444, 2445, 2446, 5], - [0, -7021, -1370, -6001, -7022, -7023], - [0, -5935, -2155, -2250, -2320, -2322], - [0, -770], - [1, 3, 2448], - [0, 2449, 2450, 41, 5], - [0, -1580, -1792], - [0, -1415, -1967, -2006, -2019, -2501], - [1, 3, 2452], - [0, 2453, 2454, 2455, 10], - [ - 0, -28, -7024, -683, -722, -7025, -7026, -812, -1047, -1099, -1111, -1116, -7027, -1366, -7028, -1393, -1435, - -1548, -1549, -1591, -1630, -7029, -5668, -7030, -1863, -1876, -1889, -7031, -7032, -7033, -2103, -2218, -2331, - -2347, -2460 - ], - [0, -510, -767, -1045, -1098, -1415, -1722, -7034, -2187, -7035, -2261, -2463, -2541], - [0, -762, -1847, -775, -7036], - [1, 3, 2457], - [0, 2458, 2459, 2460, 8], - [0, -3620, -3222], - [ - 0, -86, -190, -7037, -7038, -7039, -3470, -7040, -3471, -3472, -7041, -7042, -367, -7043, -3136, -3037, -4372, - -767, -932, -940, -959, -967, -1344, -1415, -1534, -1942, -2174, -2210, -2410, -2411 - ], - [0, -763, -7044, -7045, -7046, -2166, -7047, -7048], - [1, 3, 2462], - [0, 0, 0, 2463, 4], - [0, -763, -3577, -3445, -3215, -764, -7046, -2166, -7049, -4107, -5418, -6201, -7050], - [1, 3, 2465], - [0, 0, 2466, 2467, 4], - [ - 0, -5285, -5291, -7051, -7052, -7053, -7054, -7055, -7056, -7057, -3037, -932, -7058, -954, -958, -960, -964, - -965, -7059, -968, -971, -978, -1110, -7060, -1608, -7061, -1768, -1942, -2910, -7062, -2402, -2410, -7063 - ], - [0, -763, -7050, -2166, -765, -3577, -3445], - [1, 3, 2469], - [0, 2470, 0, 2471, 4], - [0, -7064, -7065], - [ - 0, -6527, -7066, -6932, -7067, -7068, -7069, -7070, -7071, -7072, -7073, -7074, -7075, -7076, -7077, -3264, - -775, -3214, -3577, -3578 - ], - [1, 3, 2473], - [0, 2474, 2475, 2476, 5], - [0, -7078, -769], - [0, -7079, -7080, -3037, -3664, -3665, -932, -1942, -2410, -2469, -7081], - [0, -7082, -7083, -7084, -7085], - [1, 3, 2478], - [0, 2479, 2480, 2481, 5], - [0, -1729], - [ - 0, -1788, -664, -1722, -1344, -1654, -2550, -2125, -2127, -2177, -708, -1004, -2501, -2250, -720, -2410, -3035, - -3037, -617, -1534, -2186, -2503, -3621, -2516, -86, -2251, -4063, -1655, -6483, -796, -7086, -3307 - ], - [0, -4213, -1334, -2435, -1961, -510, -5867, -6201, -6198, -3966, -2006, -5269, -4865, -6989, -5388, -2533, -5998], - [1, 3, 2483], - [0, 2484, 2485, 2486, 6], - [0, -2518, -7087, -7088], - [0, -1415, -1344, -932, -1650, -2125, -527, -533, -1534, -86, -2251, -7089, -7090, -3307], - [0, -7091, -7092, -7084, -7085, -7093, -7094, -7095, -7096], - [1, 3, 2488], - [0, 2489, 2490, 7, 5], - [0, -7097, -7098, -7099, -760, -7100, -7101, -7102, -1370, -7103, -7104, -1995, -7105], - [0, -5834, -932, -5935, -1788, -1798, -7106, -2155, -2177, -2322], - [1, 3, 2492], - [0, 0, 0, 2493, 5], - [ - 0, -7107, -770, -7108, -7109, -7110, -7111, -7112, -7113, -7114, -7115, -7116, -7117, -7118, -7119, -7120, - -7121, -7122, -7123, -7124, -7125 - ], - [1, 3, 2495], - [0, 192, 2496, 2497, 4], - [0, -652, -932, -7126, -958, -964, -966, -967, -1654, -7127, -1771, -1942], - [0, -6838, -3215], - [1, 3, 2499], - [0, 2500, 2501, 2502, 4], - [ - 0, -7128, -7129, -7130, -7131, -7132, -7133, -7134, -481, -668, -6793, -719, -7135, -7136, -7137, -7138, -7139, - -7140, -7141, -7142, -2177, -2654 - ], - [0, -4036, -3199, -1639, -1645], - [0, -7143, -7144, -707, -6513, -6514, -7145, -7146, -7147, -7148], - [1, 3, 2504], - [0, 2505, 2506, 2507, 4], - [0, -1370, -2231, -7149], - [0, -1654, -2198, -1612, -651], - [0, -775, -3215, -3270, -3271], - [1, 3, 2509], - [0, 0, 2510, 2511, 9], - [0, -190, -7150, -7151, -932, -1889, -2127, -2447], - [0, -1889, -3583, -775, -4159, -7152, -7153, -7154], - [1, 3, 2513], - [0, 0, 2514, 2515, 5], - [ - 0, -7155, -4647, -3621, -3037, -4201, -7156, -932, -7157, -940, -967, -7158, -1344, -7159, -1449, -1534, -1654, - -1763, -1942, -2923, -7160, -2410, -7161, -7162 - ], - [0, -775, -7163, -4108], - [1, 3, 2517], - [0, 2518, 2519, 2520, 4], - [0, -2773, -1889, -7164, -1915, -7165, -2791, -1934, -2177], - [ - 0, -21, -23, -40, -86, -3307, -7166, -533, -767, -774, -825, -920, -932, -940, -958, -1041, -1344, -1415, -1419, - -1521, -1522, -1534, -1623, -1643, -1771, -1908, -1927, -1942, -2162, -2163, -2251, -2269, -2275, -2286, -2287, - -2437, -2501 - ], - [0, -2501, -775, -5932, -2435, -6024], - [1, 3, 2522], - [0, 2523, 2524, 2525, 5], - [0, -784, -1889, -1429, -2168, -2182, -3180], - [ - 0, -824, -2746, -1415, -2162, -1344, -1623, -774, -932, -825, -928, -1110, -2289, -2501, -7167, -1942, -683, - -767, -21, -190, -533, -778, -2410, -23, -7168, -7169, -3037, -1534, -1771, -2163, -3751, -86, -965, -3560, - -7170, -2251, -40, -959, -748, -960, -958, -7171, -6929, -978, -940, -967, -1643, -3748, -6930, -3307 - ], - [0, -784, -775, -2746, -683, -5055, -928, -2501, -7172, -7173, -7174, -1644, -6684, -7175, -7176], - [1, 3, 2527], - [0, 2528, 2529, 2530, 4], - [0, -7177, -2888, -6584, -2788, -6585], - [0, -2386, -2469, -2410, -3037, -1333, -2581, -7178, -7179, -3664], - [0, -775, -3585, -7180], - [1, 3, 2532], - [0, 2533, 2534, 2535, 4], - [0, -1620, -2232], - [0, -652, -7181, -928, -932, -7182, -1654, -2127], - [0, -775, -3272, -3579, -3215, -7183, -7184, -3262, -5260, -4132, -3926], - [1, 3, 2537], - [0, 0, 2538, 2539, 4], - [0, -7150, -635, -1107, -1889, -1891, -1927, -2177, -2281, -2282, -7185], - [0, -775, -7186, -4682, -7187], - [1, 3, 2541], - [0, 0, 2542, 2543, 4], - [0, -526, -558, -708, -1127, -6114, -1405, -1654, -2081, -2111], - [0, -775, -5559, -7188, -2265, -3673], - [1, 3, 2545], - [0, 2546, 2547, 2548, 4], - [0, -1532, -7189], - [0, -518, -1889, -7190, -7191], - [0, -775, -6454, -1644, -7192, -7193, -1889, -3583], - [1, 3, 2550], - [0, 2551, 2552, 2553, 11], - [0, -7194, -7195, -781, -1582], - [0, -7196, -7197, -932, -940, -967, -1110, -1942], - [0, -7198, -7199, -7200], - [1, 3, 2555], - [0, 0, 2556, 2557, 4], - [ - 0, -23, -40, -42, -190, -7150, -7201, -7202, -5685, -3136, -4647, -3037, -6630, -7203, -533, -668, -679, -781, - -940, -967, -1059, -1415, -1449, -1620, -1942, -2091, -2392, -2393, -2410, -2411 - ], - [0, -775, -5553, -2410, -5411, -2414, -3694, -3762], - [1, 3, 2559], - [0, 2560, 2561, 2562, 5], - [0, -7204, -743, -1335, -746], - [0, -1788, -1654, -932, -729, -2293, -617, -744, -745, -966, -958, -968, -943, -963, -974], - [0, -7204, -7205, -5401, -1004], - [1, 3, 2564], - [0, 2565, 2566, 2567, 4], - [0, -789, -790, -791, -2262], - [0, -351, -3621, -3037, -885, -1654, -1942, -2127, -2135, -2136, -2198, -2379, -2410], - [0, -3966, -788, -7206, -3215, -1838, -3270, -6231, -6408, -5827, -3960, -7207, -3445, -3100], - [1, 3, 2569], - [0, 0, 2570, 2571, 5], - [0, -351, -3621, -3037, -815, -885, -1654, -1942, -2127, -2135, -2136, -2198, -2379, -2410], - [0, -5827, -3960, -788, -7208, -3445, -3100], - [1, 3, 2573], - [0, 0, 2574, 2575, 5], - [ - 0, -351, -3621, -3037, -789, -7209, -815, -885, -1654, -7210, -1942, -2127, -2135, -2136, -2198, -2262, -2379, - -2410 - ], - [0, -788, -1838, -3215, -5845, -7206, -5827, -3445, -3100], - [1, 3, 2577], - [0, 0, 2578, 2579, 9], - [0, -351, -3621, -3037, -789, -815, -885, -1004, -1654, -1942, -2127, -2135, -2136, -2198, -2379, -2410], - [0, -788, -6231, -3270, -3445, -3100], - [1, 3, 2581], - [0, 34, 2582, 2583, 4], - [0, -7211, -3621, -3037, -543, -756, -1646, -1654, -1788, -2210, -2375, -2379, -2410, -2417, -2501, -2503], - [0, -788, -7212, -7213, -792, -4055, -7214, -7215, -7216, -7217, -7218], - [1, 3, 2585], - [0, 2586, 2587, 149, 8], - [ - 0, -1693, -1107, -714, -1548, -2456, -1040, -3635, -2114, -615, -7219, -1959, -719, -1399, -695, -5203, -3611, - -7220, -3610, -7221, -1366, -7222, -7223, -7224, -930, -3608, -7225, -3604 - ], - [ - 0, -1788, -2359, -664, -1654, -2210, -932, -729, -753, -571, -1077, -1689, -1942, -7226, -756, -21, -633, -2211, - -23, -528, -711, -2187, -43, -3630, -3633, -40, -966, -951, -2082, -958, -539, -968, -940, -943, -967, -974, - -6034 - ], - [1, 3, 2589], - [0, 0, 2590, 2591, 4], - [0, -556, -558, -566, -633, -932, -7227, -1339, -1650, -7228, -2322, -2339, -2416, -7229, -2491], - [0, -7230, -7231, -7232, -7233, -2446], - [1, 3, 2593], - [0, 2594, 0, 2595, 4], - [ - 0, -2359, -5413, -668, -809, -812, -999, -7234, -2555, -640, -1536, -1548, -7235, -680, -1040, -1958, -615, - -6797, -910, -1077, -1646, -7236, -719, -2369, -2430, -3628, -690, -695, -7237, -722, -1018, -1574, -1948, - -7238, -7239, -995, -5987, -2297, -7240, -7241, -2313, -1394, -3626 - ], - [0, -4864, -4865, -795, -7242, -4866, -4867, -4868, -3095, -7243, -4043, -7244, -7245, -4004, -3634], - [1, 3, 2597], - [0, 2598, 2599, 7, 5], - [0, -668, -7246, -2524, -720, -1564, -3532, -7247], - [0, -664, -1654, -2177, -1942, -3035, -755, -3621, -1660, -2174], - [1, 3, 2601], - [0, 2602, 2603, 2604, 5], - [ - 0, -7248, -7249, -7250, -7251, -7252, -7253, -7254, -7255, -798, -7256, -7257, -6258, -7258, -7259, -799, -801, - -7260, -7261, -7262, -7263, -7264, -7265, -7266, -7267, -7268, -800, -7269, -7270, -7271, -7272 - ], - [0, -1654, -932, -2127, -2468, -7273, -2967, -4062, -7274, -3266, -351], - [0, -797, -5092, -7275, -3839, -5176, -659], - [1, 3, 2606], - [0, 2607, 2608, 2609, 8], - [0, -7276], - [0, -351, -7248, -7262, -932, -1449, -1654, -2127, -2140], - [0, -797, -7277, -7278, -7279, -7280, -7281, -7282, -7283, -5839], - [1, 3, 2611], - [0, 2612, 2613, 2614, 10], - [0, -798, -7261, -7270, -7254, -7271], - [0, -6258, -932, -1654, -2127, -2140], - [0, -797, -7277, -7069, -7275], - [1, 3, 2616], - [0, 0, 2617, 2618, 5], - [0, -932, -1449, -1654, -2127, -2140], - [0, -797, -7277, -5092, -7284, -7285], - [1, 3, 2620], - [0, 2621, 2622, 2623, 6], - [0, -7253], - [0, -7264, -932, -1654, -2127, -2140], - [0, -797, -7277, -6524, -7275, -659, -3839], - [1, 3, 2625], - [0, 2626, 0, 2627, 5], - [0, -1049], - [0, -3577, -7286, -5176, -3913], - [1, 3, 2629], - [0, 0, 0, 2630, 4], - [ - 0, -803, -2316, -2318, -7287, -7288, -7289, -7290, -7291, -7292, -7293, -7294, -7295, -7296, -7297, -7298, - -2006, -775, -3160, -2476, -3095, -3161, -1713, -3577, -7299, -4101, -7300, -2299, -2834, -5511, -7301 - ], - [1, 3, 2632], - [0, 0, 14, 2633, 9], - [ - 0, -7302, -1646, -6792, -7303, -4377, -5272, -687, -1758, -719, -7304, -3957, -5543, -7305, -7306, -7307, -7308, - -1838, -3215, -4378 - ], - [1, 3, 2635], - [0, 2636, 2637, 7, 4], - [ - 0, -7309, -469, -510, -668, -715, -754, -763, -1004, -1376, -7310, -1625, -1666, -1953, -2105, -7311, -7312, - -7313, -2549, -2550 - ], - [0, -526, -556, -559, -664, -1654, -2106, -5331], - [1, 3, 2639], - [0, 0, 2640, 7, 10], - [ - 0, -7314, -2392, -7315, -3915, -2210, -932, -7316, -1548, -2469, -2402, -1050, -1942, -756, -21, -7057, -1874, - -2205, -2214, -2410, -23, -3037, -7317, -7318, -4372, -7319, -3704, -3044, -7320, -5286, -4773, -40, -7321, - -3664, -2832, -42, -428, -7322, -427, -7323 - ], - [1, 3, 2642], - [0, 0, 2643, 7, 5], - [0, -1654, -2416, -21, -23, -40], - [1, 3, 2645], - [0, 0, 2646, 2647, 5], - [ - 0, -21, -23, -5870, -40, -3472, -527, -533, -537, -767, -932, -934, -958, -959, -7324, -1413, -1415, -1471, - -1481, -1488, -1662, -1666, -1667, -1705, -1939, -1942, -2127, -2128, -2140, -2214, -2410 - ], - [0, -809, -4121, -4123, -1361, -1666], - [1, 3, 2649], - [0, 2650, 2651, 2652, 4], - [0, -596, -1723], - [0, -7325], - [0, -510, -6367, -7326, -7327], - [1, 3, 2654], - [0, 0, 118, 2655, 5], - [0, -811, -7328, -5924, -7329, -7330, -6729, -7331, -7332, -7333, -7334, -7335], - [1, 3, 2657], - [0, 2658, 2659, 2660, 4], - [0, -1681], - [0, -627, -633, -756, -1471, -1472, -1475, -1482, -1654, -1657, -2210, -2541], - [0, -812, -1573, -7336], - [1, 3, 2662], - [0, 0, 14, 2663, 4], - [0, -813, -7337, -656, -7338, -6514, -6515, -6516, -2265, -5554, -5845], - [1, 3, 2665], - [0, 2666, 2667, 2668, 10], - [0, -7339, -7340, -7341, -7342, -1119, -1591, -1866, -7343], - [0, -985, -7344, -1849, -1866, -2125], - [0, -7345, -7346, -814, -7347, -2323, -7348, -7349, -5408, -2432], - [1, 3, 2670], - [0, 0, 2671, 2672, 8], - [ - 0, -21, -40, -42, -4646, -7350, -7057, -3330, -3136, -427, -428, -535, -6046, -7351, -774, -932, -7352, -954, - -959, -960, -961, -963, -965, -7353, -7354, -971, -7355, -1344, -1415, -7356, -1498, -1534, -1608, -1609, -1768, - -7357, -1942, -7358, -1945, -2091, -7359, -2391, -2410, -7360 - ], - [0, -815, -6818, -7361, -3184], - [1, 3, 2674], - [0, 0, 2675, 2676, 5], - [0, -3136, -1637, -2375], - [0, -7362, -7363, -5839, -7364, -7365, -7366, -7367], - [1, 3, 2678], - [0, 2679, 0, 2680, 8], - [0, -7368], - [0, -7208, -7369, -7370, -1015, -3589, -1631, -702, -6351, -3755, -6545, -7371, -7372, -7373, -7374, -7375, -3589], - [0, 68, 15, 16, 4], - [1, 3, 2683], - [0, 0, 2684, 2685, 5], - [0, -4055, -1654, -932, -1548, -2125, -1753, -615, -7376, -1003, -2416, -821, -964, -1656], - [0, -834, -7377, -7378, -7379], - [1, 3, 2687], - [0, 0, 2688, 2689, 5], - [0, -7380, -1654, -932, -1405, -589, -756, -7381, -1559, -3311, -7382, -7383, -7384, -350, -7385], - [0, -7386, -7387, -7388, -3634], - [1, 3, 2691], - [0, 2692, 2693, 2694, 10], - [ - 0, -7389, -655, -7390, -6503, -7391, -7392, -7393, -7394, -7395, -1402, -5849, -1795, -1797, -7396, -7397, - -7398, -7399, -7400 - ], - [0, -5834, -515, -516, -7401, -932, -1065, -7402, -1283, -7403, -1365, -1777, -1788, -3335, -2156, -2177, -2322], - [0, -7404, -6439, -7378], - [1, 3, 2696], - [0, 0, 70, 2697, 4], - [0, -822, -1015, -6545, -7371, -2546, -702, -1631, -4055], - [1, 3, 2699], - [0, 0, 2700, 2701, 9], - [0, -3037, -7405, -1396, -7406, -2127, -2131, -2137, -2322, -2379, -2410, -2416], - [0, -1631, -6545, -1015, -6351, -702, -7371], - [1, 3, 2703], - [0, 2704, 2705, 2706, 5], - [0, -1111, -1393, -7407, -7408, -1826, -7409, -2218], - [0, -519, -589, -2331, -2384, -2541], - [ - 0, -6693, -6999, -7410, -7411, -6694, -7412, -7413, -7414, -6688, -7415, -7416, -6695, -7417, -2125, -7418, - -1107, -7419, -6656, -7420, -7421, -1076, -7422 - ], - [1, 3, 2708], - [0, 2709, 2710, 2711, 10], - [0, -824, -1630, -7409], - [0, -519, -999, -7423, -2541], - [ - 0, -5732, -687, -6693, -824, -6694, -7412, -7413, -7414, -6688, -7415, -7416, -6695, -7417, -2125, -7418, -1107, - -6656, -6999, -7420, -7421, -1076, -7422, -7085 - ], - [1, 3, 2713], - [0, 2714, 2715, 2716, 6], - [0, -7424, -7425], - [0, -7426, -7427, -2384, -2541], - [ - 0, -1961, -2114, -826, -7428, -4116, -7429, -7430, -7431, -5389, -6302, -2634, -7432, -826, -510, -5867, -5923, - -615, -7433, -7434, -6555 - ], - [1, 3, 2718], - [0, 2719, 2720, 2721, 10], - [ - 0, -812, -1460, -2550, -1353, -1548, -2177, -1442, -2114, -7435, -6651, -656, -1645, -7436, -1686, -755, -1048, - -2115, -25, -7437, -46, -7438, -3230, -6033 - ], - [ - 0, -1788, -1654, -932, -2198, -2299, -1077, -1942, -767, -21, -1972, -2410, -23, -528, -7439, -39, -43, -40, - -964, -969, -933, -958, -539, -940, -962, -967, -535, -5585 - ], - [0, -7440, -7441, -5897, -7442, -827, -6137, -3015, -3016], - [1, 3, 2723], - [0, 0, 2724, 2725, 6], - [0, -589, -585, -932, -943, -958, -963, -966, -968, -974, -1405, -1654, -2155, -2418], - [0, -7443, -7444], - [1, 3, 2727], - [0, 2728, 2729, 7, 4], - [0, -812, -5892, -1111, -7445, -1639, -1646, -1872, -7446, -2114], - [0, -7447, -1344, -3781, -1771, -2250], - [1, 3, 2731], - [0, 0, 14, 2732, 10], - [0, -6806, -7448, -6659, -7449, -7450, -707, -2265, -5554, -6916, -7451, -7452], - [1, 3, 2734], - [0, 2735, 2736, 2737, 5], - [0, -6558], - [0, -7453, -3621, -3037, -7454, -932, -7455, -999, -7456, -2269, -2386, -7457, -2410], - [0, -6659, -7458], - [1, 3, 2739], - [0, 0, 2740, 2741, 6], - [ - 0, -1788, -2384, -664, -1471, -1654, -932, -2127, -1110, -2501, -767, -2416, -190, -2410, -23, -1482, -534, - -1492, -5758, -43, -40, -2411, -2505, -1483, -2832, -539, -1490 - ], - [0, -834, -7459, -7378, -7460, -5554, -4055, -775, -3214], - [1, 3, 2743], - [0, 2744, 2745, 2746, 8], - [0, -834, -7461], - [ - 0, -190, -7462, -7463, -3136, -3037, -7464, -7465, -518, -645, -699, -748, -778, -784, -932, -959, -968, -1041, - -1110, -1276, -7466, -1331, -1344, -7467, -7468, -1415, -1534, -1607, -1643, -1650, -1758, -1889, -1891, -1906, - -1908, -1927, -1942, -2375, -2376, -2379, -2410, -2411, -2437, -2501, -2503, -2505, -2516 - ], - [0, -5889, -834, -3240, -7469, -6722, -7470, -7471, -7472, -4131, -3240, -712, -3264, -835, -7473, -7474], - [1, 3, 2748], - [0, 119, 120, 2749, 4], - [ - 0, -7477, -7478, -7479, -7480, -7481, -7482, -7483, -3214, -7484, -7485, -3756, -2410, -7486, -4165, -3018, - -7487, -7488, -3966, -4336, -7489, -7490, -7491, -7492, -7493, -7494, -7495, -7496, -7497, -3552, -7498, -7499, - -7500, -1847, -7501, -7502, -7503, -7504, -7505, -7506, -7507, -7508, -7282, -7509, -7510, -7511, -7512, -7513, - -7514, -7515, -7516, -7517, -7518, -7519, -7520, -7521, -5150, -7522, -7523, -7524, -7525, -7526, -7527, -7528, - -7529, -7530, -7531, -7532, -7533, -6582, -7534, -7535, -7536, -7537, -7538, -7539, -7540, -7541, -7542, -7543, - -7544, -7545, -7546, -7547, -7548, -6948, -7549, -7550, -7551, -7552, -7553, -7554, -7555, -7556, -7557, -2444, - -7558, -7559, -5063, -7560, -7561, -7562, -6187, -7563, -856, -7275 - ], - [1, 3, 2751], - [0, 0, 2752, 2753, 6], - [0, -664, -665, -1127, -1144, -1149, -1156, -1452, -1453, -1542, -1654], - [0, -664, -6537, -4865, -3634], - [1, 3, 2755], - [0, 2756, 56, 57, 4], - [0, -7564, -7565, -840, -1406, -1744], - [1, 3, 2758], - [0, 2759, 2760, 2761, 6], - [0, -2387, -2426, -7567, -3675, -151, -3676, -1025, -7568, -3677, -7569, -3678, -3679, -7570], - [ - 0, -2384, -1415, -3682, -932, -2388, -879, -1942, -767, -2410, -3037, -7571, -3683, -3685, -3686, -3687, -428, - -427 - ], - [0, -3689, -3690, -7572, -3323, -3966, -3692], - [1, 3, 2763], - [0, 2764, 0, 7, 4], - [0, -2416, -1044, -1813], - [1, 3, 2766], - [0, 2767, 2768, 193, 8], - [0, -6789, -7573, -7574, -7575, -1276, -1610, -7576], - [0, -7577], - [1, 3, 2770], - [0, 2771, 0, 2772, 6], - [0, -1448], - [0, -843, -856, -1446, -7578, -1599, -3862], - [1, 3, 2774], - [0, 0, 0, 2775, 9], - [0, -7579, -7580, -7581, -7582, -3445, -6809], - [1, 3, 2777], - [0, 2778, 31, 2779, 10], - [0, -7583, -7584, -7585], - [0, -7586, -7587], - [1, 3, 2781], - [0, 2782, 2783, 2784, 8], - [0, -523, -2550, -848, -7588, -7589, -7590], - [0, -664, -1654, -1004, -617], - [0, -856, -5119, -4004, -4100, -3671], - [1, 3, 2786], - [0, 2787, 2788, 2789, 10], - [ - 0, -3417, -7590, -7591, -469, -5769, -7592, -7593, -7594, -523, -7588, -7589, -865, -7595, -7596, -7597, -1870, - -1880, -7598, -2369, -4881 - ], - [0, -827, -1004, -1654, -2177], - [0, -856, -4004, -4100, -3671], - [1, 3, 2791], - [0, 2792, 0, 2793, 9], - [0, -719, -1610, -1077, -2424, -1304], - [0, -856, -3671, -3262, -7599, -711], - [1, 3, 2795], - [0, 2796, 0, 193, 4], - [0, -885, -7600, -7601], - [1, 3, 2798], - [0, 2799, 2800, 2801, 10], - [0, -7602, -7603, -7604, -7605, -1969, -2324, -2446], - [0, -615, -664, -1627, -1654], - [0, -7606, -7607], - [1, 3, 2803], - [0, 2804, 2805, 2806, 4], - [ - 0, -7608, -7609, -7610, -573, -7611, -653, -7612, -6838, -7613, -7614, -7615, -5835, -7616, -7617, -7618, -7619, - -7620, -7621, -1376, -7622, -7623, -7624, -1640, -1729, -7625, -7626, -7627, -2125, -7628, -7629, -7630, -2177, - -7631, -7632, -7633, -2424, -7634, -2549 - ], - [0, -7635, -7636, -7637, -711, -7638, -1666, -7639, -7640], - [ - 0, -3260, -7641, -7642, -4258, -687, -7643, -711, -7644, -3116, -7645, -7646, -3113, -7647, -7648, -6433, -3161, - -3262, -7649, -3966, -1838, -3215, -7650, -4065, -3970, -5371, -3261, -7651, -3673, -3590, -3578, -7652, -4602 - ], - [1, 3, 2808], - [0, 0, 2809, 2810, 5], - [0, -3268, -3037, -3664, -6593, -589, -7653, -7654, -932, -958, -960, -2410, -2469], - [0, -3100, -3445, -4058, -3926, -1446], - [1, 3, 2812], - [0, 0, 2813, 2814, 6], - [ - 0, -23, -40, -190, -3326, -350, -4062, -351, -3266, -518, -632, -724, -920, -932, -940, -1110, -1609, -6451, - -1771, -1889, -1897, -1903, -1906, -1942, -2125, -2127, -4753, -2162 - ], - [0, -3671, -2757, -7655, -856, -3262, -3214, -3756, -1599, -3437, -3862, -7452, -7656], - [1, 3, 2816], - [0, 2817, 71, 2818, 8], - [0, -7657, -7658, -1333, -1646, -2424, -7659], - [0, -1105, -1599, -856, -4328, -3215, -7660, -7661, -7662], - [1, 3, 2820], - [0, 2821, 2822, 2823, 8], - [ - 0, -23, -3194, -25, -46, -47, -668, -679, -834, -7663, -4236, -3649, -1107, -2765, -1304, -1371, -1442, -7664, - -1548, -5347, -7665, -7666, -7667, -1866, -2061, -2093, -2095, -2096, -7668, -4656, -2114, -2271, -7669, -2429, - -5358, -7670, -7671, -2550 - ], - [0, -7672, -796, -7673, -932, -940, -1077, -1344, -1415, -1456, -1534, -1658, -1942, -2251, -2359], - [0, -856, -4144, -1446, -7674, -3215, -3258], - [1, 3, 2825], - [0, 2826, 2827, 2828, 5], - [0, -7675, -7676, -812, -7677, -7678, -7679, -7680, -2424], - [0, -3037, -1127, -1152, -1156, -1542, -1656, -6799, -2210, -2351], - [0, -7681, -7682, -857, -7683, -5800, -7684, -7685, -5801], - [1, 3, 2830], - [0, 2831, 2832, 2833, 4], - [ - 0, -3484, -1088, -1107, -668, -2006, -915, -1548, -1650, -572, -784, -1004, -1889, -1955, -2105, -2195, -3728, - -2353, -1077, -1356, -719, -2019, -682, -1888, -2102, -23, -7686, -47, -518, -1304, -1607, -7687, -4356, -7688, - -7689, -3649, -39, -43, -46, -2015, -7690, -40, -7691, -7692, -41, -930, -916, -26, -36 - ], - [0, -2125, -7693, -1075, -7694], - [0, -856, -7695, -7696, -858], - [1, 3, 2835], - [0, 2836, 27, 2837, 5], - [0, -7697, -703, -4700, -1288, -1293, -1310, -3544, -7698, -3788, -1645, -2087, -7699, -2427, -7700], - [0, -858, -3544, -7701, -856], - [1, 3, 2839], - [0, 2840, 2841, 2842, 6], - [0, -44, -786], - [ - 0, -7702, -7703, -21, -23, -42, -7704, -7705, -7706, -427, -428, -528, -534, -932, -958, -962, -964, -969, - -1003, -1107, -1437, -1471, -1475, -1479, -7707, -1482, -1483, -1489, -1490, -1492, -1654, -2125, -7708, -2210, - -2410, -2501 - ], - [0, -860, -3159, -5092, -3690, -7709, -5553, -5389, -7710, -6730, -860, -7711, -7712, -775], - [1, 3, 2844], - [0, 2845, 2846, 2847, 4], - [0, -3223, -6585, -7713], - [0, -1415, -932, -674, -2375, -1942, -2410, -3136, -3037, -1333, -940, -428, -427], - [0, -3264, -6597, -7650], - [1, 3, 2849], - [0, 0, 2850, 2851, 8], - [ - 0, -664, -932, -1127, -1132, -1144, -1148, -1149, -1155, -1442, -1471, -1474, -1475, -1479, -1482, -1483, -1654, - -1942, -2177 - ], - [0, -5092, -6527, -7714, -7650, -3264, -659, -3839, -7715], - [1, 3, 2853], - [0, 2854, 2855, 2856, 6], - [0, -7716], - [ - 0, -23, -40, -3326, -351, -3561, -3266, -426, -3037, -767, -940, -967, -1437, -1449, -1471, -1473, -1475, -1479, - -1485, -1486, -7717, -1646, -1771, -1939, -1942, -1989, -7718, -2125, -2127, -2132, -7719, -2142, -2387, -2410, - -2541 - ], - [0, -5092, -2544, -3264, -3839, -7720, -7107, -7721, -7722, -7723, -7724, -7725], - [1, 3, 2858], - [0, 0, 2859, 2860, 10], - [0, -1788, -932, -756, -1939, -5478], - [0, -3110, -5922, -5493, -7651], - [1, 3, 2862], - [0, 0, 2863, 2864, 4], - [0, -3037, -3542, -2210, -2250, -2251, -2319, -2410], - [0, -865, -6845, -7726, -5558, -3591, -727, -6849], - [1, 3, 2866], - [0, 194, 2867, 2868, 5], - [0, -3037, -2250, -2251, -2319, -2410], - [0, -865, -7727, -3591, -7728, -7729, -6845, -7726], - [1, 3, 2870], - [0, 2871, 2872, 2873, 4], - [0, -1116, -1866, -1825, -7730, -1591, -1043, -814, -7731, -1100, -7732, -736], - [0, -2541, -519, -1722, -7733, -2125, -1849, -7734], - [0, -867, -7347, -1334, -2105, -2435], - [1, 3, 2875], - [0, 2876, 2877, 2878, 9], - [0, -867, -7735, -2125], - [0, -3179, -1344, -1654, -2226, -2250], - [0, -867, -1105, -7661, -7660, -7736, -7737, -2323, -7347, -7738], - [1, 3, 2880], - [0, 2881, 2882, 2883, 4], - [0, -870, -871, -873, -875, -876, -874], - [0, -932, -2125, -190, -2410, -3037, -2411, -428, -427], - [0, -869, -856, -687, -1446, -620, -1599, -4055], - [1, 3, 2885], - [0, 2886, 2887, 2888, 8], - [0, -1111, -871, -7739, -7740, -873, -875, -7741, -876, -874], - [0, -1415, -932, -2125, -1753, -2375, -190, -2410, -3136, -3037, -7742, -2411, -428, -427], - [0, -869, -856, -687], - [1, 3, 2890], - [0, 2891, 2892, 2893, 4], - [0, -6904], - [0, -1415, -932, -2125, -2375, -190, -2410, -3136, -3037, -7742, -2411, -428, -6902, -427], - [0, -869, -856], - [1, 3, 2895], - [0, 2896, 121, 2897, 4], - [0, -7743], - [0, -869, -856, -3110], - [1, 3, 2899], - [0, 2900, 2901, 2902, 4], - [0, -2330, -1446, -7744], - [0, -1415, -932, -2125, -2375, -749, -190, -2410, -3136, -3037, -7745, -7742, -2411, -428, -427], - [0, -869, -856, -1446], - [1, 3, 2904], - [0, 2905, 2906, 2907, 4], - [0, -1600, -1304, -1605], - [0, -1415, -932, -2125, -2375, -190, -2410, -3136, -3037, -7742, -2411, -3661, -428, -427], - [0, -869, -856, -620], - [1, 3, 2909], - [0, 0, 121, 2910, 8], - [0, -869, -856, -4055], - [1, 3, 2912], - [0, 2913, 121, 2914, 5], - [0, -1605], - [0, -869, -856, -1599], - [1, 3, 2916], - [0, 2917, 2918, 2919, 4], - [0, -1033, -1361, -1792], - [ - 0, -23, -6065, -5584, -7746, -528, -7747, -767, -824, -927, -932, -7748, -940, -951, -956, -962, -967, -969, - -7749, -1059, -1168, -1174, -1184, -1188, -7750, -1201, -1208, -1212, -1243, -1266, -1415, -1942, -2006, -2019, - -2052, -7751, -2347, -2417, -7752 - ], - [0, -7753, -3496, -2006, -7754], - [1, 3, 2921], - [0, 2922, 2923, 2924, 5], - [0, -4007, -7755], - [ - 0, -7756, -7757, -664, -795, -7758, -1471, -1475, -1482, -7759, -1491, -1654, -1655, -1745, -7760, -2162, -2210, - -2211 - ], - [0, -7761, -7762, -7763, -7764], - [1, 3, 2926], - [0, 2927, 2928, 7, 5], - [0, -2550, -2388, -7765, -1077, -7766, -2271, -1458, -7767, -7768, -7769], - [0, -932, -3037, -3041, -3048, -428, -7770, -7771, -427], - [1, 3, 2930], - [0, 2931, 0, 2932, 4], - [0, -7772], - [0, -7773, -880, -6582, -7685, -3445, -687, -7774, -5401], - [1, 3, 2934], - [0, 2935, 2936, 113, 4], - [ - 0, -5332, -5333, -3562, -367, -5334, -4251, -5335, -5336, -5337, -5338, -682, -5366, -5340, -747, -823, -5341, - -909, -5342, -5343, -5344, -3649, -2766, -1286, -1289, -1292, -5345, -1315, -1329, -5346, -1442, -1571, -5347, - -5348, -1779, -1878, -4130, -5349, -1955, -2000, -4930, -4942, -2003, -4944, -2004, -2013, -2965, -2028, -5350, - -5351, -2084, -5352, -2090, -5353, -4242, -2095, -2098, -2101, -2162, -3728, -5354, -5355, -2427, -2429, -5356, - -2435, -5357, -5358, -5359 - ], - [ - 0, -86, -3307, -3659, -5360, -5361, -3660, -5362, -3037, -5363, -3803, -3040, -3087, -3052, -5364, -5365, -932, - -4597, -1026, -1031, -5367, -5368, -1344, -1534, -1942, -1944, -1945, -2006, -2019, -2281, -2379, -2410, -2469, - -5369, -5370 - ], - [1, 3, 2938], - [0, 2939, 2940, 113, 6], - [ - 0, -5332, -5333, -3562, -367, -5334, -4251, -5335, -5336, -5337, -5338, -682, -5339, -747, -823, -5341, -5359, - -909, -5342, -5343, -5344, -3649, -2766, -1286, -1289, -1292, -5345, -1315, -1329, -5346, -1442, -1571, -5347, - -5348, -1779, -1878, -4130, -5349, -1955, -2000, -4930, -4942, -4944, -2013, -2965, -2028, -2084, -5352, -2090, - -5353, -4242, -2095, -2098, -2101, -2162, -3728, -5355, -2427, -2429, -5356, -2435, -5357, -5358 - ], - [ - 0, -86, -3307, -3659, -5360, -5361, -3660, -5362, -3037, -5363, -3040, -3087, -5364, -5365, -932, -1026, -1031, - -5368, -1344, -1534, -1942, -1944, -1945, -2006, -2281, -2379, -2410, -2469 - ], - [1, 3, 2942], - [0, 0, 2943, 7, 5], - [0, -2322, -2346], - [1, 3, 2945], - [0, 2946, 2947, 110, 8], - [ - 0, -7775, -7776, -7777, -7778, -7779, -44, -3946, -7780, -7781, -7782, -7783, -7784, -682, -747, -809, -7785, - -7786, -7787, -7788, -7789, -7790, -7791, -7792, -7793, -7794, -7795, -7796, -7797, -7798, -7799, -7800, -7801, - -7802, -7803, -7804, -7805, -7806, -7807, -7808, -7809, -7810, -7811, -7812, -7813, -7814, -7815, -7816, -4951, - -2345 - ], - [ - 0, -5695, -5704, -3139, -7817, -4952, -2581, -5702, -3744, -3745, -3746, -3747, -162, -3778, -4954, -5706, - -4106, -5708, -5699, -283, -305, -4955, -4773, -3562, -406, -407, -409, -410, -5682, -5683, -5693, -3048, -4960, - -5692, -5697, -3136, -4961, -4962, -4963, -4964, -4647, -3044, -5686, -3037, -5688, -7818, -5675, -3803, -3624, - -4966, -3040, -3087, -3052, -4968, -4969, -3199, -5687, -5673, -4971, -4972, -427, -428, -464, -5595, -4973, - -5674, -4974, -523, -668, -674, -5701, -5676, -767, -768, -4977, -865, -881, -5698, -3808, -932, -933, -940, - -948, -952, -958, -959, -962, -7819, -963, -969, -970, -978, -1026, -4979, -1077, -1103, -1107, -5346, -1339, - -1352, -1359, -1392, -1404, -1415, -4980, -1416, -1419, -1421, -4981, -4982, -1437, -1449, -4983, -3134, -1534, - -1548, -5689, -4984, -1646, -1662, -1729, -1737, -1779, -1805, -1816, -5668, -1870, -1880, -1942, -1943, -1950, - -1955, -1978, -1983, -4985, -4986, -4987, -2006, -2013, -5680, -2019, -3051, -4988, -4989, -4990, -2027, -4991, - -2044, -4992, -2082, -2090, -2093, -2094, -2095, -4994, -5707, -4995, -2101, -2125, -5669, -2177, -2193, -2205, - -2214, -5671, -5000, -2323, -2324, -2334, -2392, -2402, -2410, -5001, -5678, -2501, -2502, -5002 - ], - [1, 3, 2949], - [0, 0, 2950, 2951, 10], - [0, -86, -3307, -7820, -190, -932, -940, -964, -967, -1344, -1534, -1654, -1942, -2127, -2198, -2251], - [0, -5839, -510, -6235, -7821, -885, -7208, -1961, -7822, -6302, -3445, -3100], - [1, 3, 2953], - [0, 2954, 2955, 2956, 11], - [0, -2387, -7823], - [ - 0, -22, -23, -47, -7769, -7767, -7824, -262, -350, -351, -3561, -3136, -427, -428, -668, -719, -879, -928, -932, - -1077, -1111, -1344, -1415, -1416, -1452, -1588, -1805, -2127, -2140, -2172, -2177, -2334, -2375, -2410 - ], - [0, -886, -7825, -6581, -7826, -7275, -7827, -7828, -659, -3839], - [1, 3, 2958], - [0, 2959, 2960, 2961, 4], - [0, -7829, -1043, -7830, -1199, -7831, -7832, -7833, -1548, -1645, -7834, -1876, -2347, -2460, -2462, -2550], - [ - 0, -3035, -3048, -7835, -3044, -3621, -3037, -4364, -4372, -3625, -7836, -7837, -7838, -3041, -664, -994, -1077, - -1100, -1654, -1788, -1972, -2125, -2210, -2211, -2379, -2388, -2410 - ], - [0, -7829, -3674, -5874, -7839, -7840, -7449, -7841], - [1, 3, 2963], - [0, 2964, 2965, 2966, 4], - [0, -1410], - [0, -2410, -32, -633, -932, -6272, -1446, -1582, -1654, -2416], - [0, -3110, -7651, -6899, -888], - [1, 3, 2968], - [0, 2969, 2970, 2971, 4], - [0, -668, -1548, -7842], - [ - 0, -1722, -461, -510, -1127, -1654, -2210, -2239, -932, -1437, -1666, -2177, -521, -600, -2501, -7843, -7844, - -615, -1813, -1942, -2347, -1003, -1026, -3767, -1132, -7845, -633, -23, -7846, -528, -534, -7847, -7848, -40, - -966, -1138, -1134, -958, -1136, -1148, -968, -940, -943, -967, -974, -7849 - ], - [0, -889, -6045, -3817], - [0, 44, 15, 16, 5], - [1, 3, 2974], - [0, 2975, 0, 195, 6], - [0, -3037, -1018, -7850], - [1, 3, 2977], - [0, 2978, 2979, 2980, 4], - [0, -668, -2550, -680, -1077, -7851, -7852, -7853, -7854, -7855, -7741], - [0, -3041, -3048], - [ - 0, -891, -4258, -7641, -7856, -1380, -7857, -7858, -7859, -3994, -7860, -7861, -7862, -7863, -7864, -7865, - -7866, -7867, -7868, -7869, -7870, -7871, -5730 - ], - [1, 3, 2982], - [0, 2983, 2984, 2985, 4], - [ - 0, -7872, -7850, -7873, -7874, -7875, -7876, -812, -1018, -7731, -1077, -7877, -7878, -7879, -7880, -1875, - -7881, -2114, -2177, -2551 - ], - [0, -427, -428, -519, -641, -708, -932, -943, -950, -958, -966, -968, -1788, -1872, -2210, -2384, -2402, -2410], - [0, -891, -7857, -7882, -3994], - [1, 3, 2987], - [0, 2988, 2989, 195, 10], - [0, -1018, -7883], - [0, -2322, -2250, -7884, -1849], - [1, 3, 2991], - [0, 2992, 56, 57, 6], - [0, -668, -1078, -1406, -7885], - [1, 3, 2994], - [0, 2995, 2996, 7, 8], - [0, -7886], - [0, -1127, -7887, -1130, -1144, -1148, -1155, -1413, -1437, -1471, -1475, -1479, -1481, -1487, -1542, -1548], - [1, 3, 2998], - [0, 2999, 3000, 3001, 5], - [0, -513, -532, -823, -1761, -2113, -2345], - [ - 0, -7888, -7889, -526, -527, -534, -535, -539, -541, -544, -7890, -558, -564, -7891, -664, -679, -748, -756, - -7892, -767, -778, -925, -932, -7893, -949, -957, -7894, -1041, -7895, -1168, -1171, -7896, -1248, -1304, -1331, - -1455, -5610, -1471, -1475, -1476, -1482, -7759, -1490, -1491, -1492, -7897, -1600, -1601, -7898, -1602, -1643, - -1654, -1743, -1814, -1889, -1960, -2125, -2163, -7899, -2210, -2211, -2275, -7900, -2417, -7901, -2437, -2476, - -2481, -2483, -2485, -7902, -2501, -2503, -2505, -2509 - ], - [0, -7903, -2476, -3098], - [1, 3, 3003], - [0, 3004, 3005, 3006, 4], - [0, -616, -7904, -7905, -7906, -1370, -7907, -7908], - [0, -627, -756, -932, -1127, -1130, -1132, -1137, -1138, -1148, -7909, -1161, -1405, -1654], - [0, -7910, -7911, -7912, -7913], - [1, 3, 3008], - [0, 3009, 3010, 3011, 4], - [0, -7914, -7915, -7916, -1329, -7917, -1548, -1752], - [ - 0, -86, -3307, -519, -674, -767, -888, -932, -946, -1053, -1344, -1534, -7918, -1788, -7919, -1974, -2094, - -2099, -2541 - ], - [ - 0, -735, -7920, -6899, -1501, -7921, -7922, -7923, -7924, -7925, -7926, -1752, -7927, -1974, -7928, -3110, - -3261, -3443 - ], - [1, 3, 3013], - [0, 0, 3014, 7, 5], - [0, -190, -7929, -3037, -7930, -3664, -932, -940, -967, -7931, -1942, -7932, -2379, -2410, -2411, -2469], - [1, 3, 3016], - [0, 3017, 3018, 3019, 10], - [ - 0, -7933, -7934, -7935, -7936, -7937, -2731, -7938, -7939, -7940, -7941, -628, -7942, -629, -2733, -7943, -7944, - -7945, -7946, -7947, -668, -680, -7948, -724, -728, -7949, -7950, -7951, -7952, -834, -7953, -5501, -7954, - -5502, -7955, -999, -1000, -1004, -1044, -1047, -7956, -1077, -6345, -5505, -5367, -1107, -6343, -7957, -7958, - -7959, -1336, -1369, -1376, -7960, -7961, -1548, -1600, -7962, -1645, -1676, -1758, -1767, -7834, -7963, -1888, - -7964, -7965, -7966, -2114, -6195, -7967, -7968, -2177, -5509, -7969, -7970, -2330, -2342, -2353, -7971, -2488, - -7972, -3730, -7973, -7974, -7975 - ], - [ - 0, -6346, -630, -664, -665, -7976, -6477, -726, -7977, -7978, -932, -940, -7979, -964, -965, -1054, -7980, - -1449, -1514, -1654, -1722, -1788, -1942, -7981, -2269, -2293, -2341, -2359, -7982, -2512, -2518, -7983, -7984 - ], - [0, -3994, -7985, -5375, -687, -7986, -7987, -7988, -3114], - [1, 3, 3021], - [0, 3022, 3023, 3024, 4], - [ - 0, -3197, -33, -3376, -3384, -3355, -3374, -3397, -38, -3412, -40, -44, -7989, -7990, -7991, -7992, -541, -7993, - -7941, -628, -7944, -7946, -702, -7994, -7995, -7955, -6195, -2177 - ], - [ - 0, -23, -7996, -7997, -7998, -7999, -8000, -528, -630, -664, -705, -8001, -722, -7949, -753, -7951, -8002, -902, - -8003, -904, -8004, -8005, -8006, -8007, -8008, -8009, -932, -8010, -966, -7980, -8011, -1654, -1989, -2082, - -7981, -2114, -2125, -2501 - ], - [0, -525, -7986, -8012, -902, -3185, -3186], - [1, 3, 3026], - [0, 3027, 3028, 3029, 6], - [0, -8013, -8014, -7941, -8015, -6346, -6345, -7959, -8016, -5509, -2488], - [ - 0, -23, -32, -33, -3376, -38, -3412, -44, -7996, -7998, -8017, -7990, -629, -630, -664, -8001, -726, -8002, - -902, -903, -8018, -8003, -8004, -8005, -8006, -8007, -8008, -8009, -8019, -8020, -8021, -932, -940, -8010, - -964, -965, -967, -8022, -1054, -8011, -1654, -1942, -1989, -1990, -2091, -6348, -2281, -2282, -5059, -2501 - ], - [0, -8012, -902], - [1, 3, 3031], - [0, 3032, 3033, 3034, 8], - [0, -8023, -8024], - [0, -351, -3267, -3037, -1520, -2125, -2127, -2392, -2410], - [0, -905, -3264, -775, -8025, -8026], - [1, 3, 3036], - [0, 0, 0, 105, 8], - [1, 3, 3038], - [0, 0, 3039, 3040, 8], - [0, -1654, -932, -1405, -966, -958, -968, -943, -974], - [0, -6422, -907, -2435], - [1, 3, 3042], - [0, 3043, 31, 3044, 4], - [0, -1801], - [0, -5827, -8027, -5865, -8028, -8029, -8030, -4116], - [1, 3, 3046], - [0, 3047, 3048, 7, 4], - [0, -1119, -2321], - [0, -4035, -3136, -3037, -774, -932, -6929, -1344, -1415, -1534, -1623, -1942, -2410], - [1, 3, 3050], - [0, 3051, 3052, 3053, 4], - [0, -479, -2269], - [0, -3037, -1202, -1376, -1654, -1788, -1966, -2410], - [ - 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -3959, -910, -3262, -3960, -3961, -3962, -3963, -1376, -3964, - -3965, -3214, -3966, -3967, -1965, -1966, -3968, -3969, -2063, -3970, -3108, -3971, -3972, -3973, -3974, -3975, - -3160, -3976, -2559, -3977 - ], - [1, 3, 3055], - [0, 3056, 3057, 3058, 8], - [0, -6511, -8031, -1977, -8032], - [0, -5834, -516, -5835, -932, -993, -1365, -1777, -1788, -2156, -2322], - [0, -3223, -8033, -8034, -3264, -6422, -6420], - [1, 3, 3060], - [0, 0, 3061, 3062, 9], - [0, -664, -1344, -1654, -2176], - [0, -8035, -8036, -8037, -8038, -7534], - [1, 3, 3064], - [0, 3065, 122, 196, 5], - [0, -987, -2346], - [1, 3, 3067], - [0, 0, 3068, 3069, 4], - [ - 0, -23, -5584, -39, -40, -86, -3307, -7465, -527, -528, -533, -534, -932, -934, -940, -958, -967, -8039, -1107, - -1344, -1415, -1646, -3547, -7861, -1942, -6040, -2501, -2503, -2518, -8040 - ], - [0, -3113, -6845, -5558, -8041, -8042, -8043, -8044], - [1, 3, 3071], - [0, 3072, 3073, 85, 4], - [ - 0, -8045, -674, -918, -8046, -8047, -8048, -8049, -8050, -8051, -7394, -8052, -8053, -8054, -1559, -1794, -5849, - -1797, -1798, -8055, -1992, -8056, -8057 - ], - [0, -526, -6022, -557, -932, -933, -958, -962, -969, -1365, -1449, -2125, -2156], - [1, 3, 3075], - [0, 3076, 3077, 85, 11], - [0, -1285, -2177, -2029, -1967, -1797, -8055, -2052, -917, -918], - [0, -915, -932, -2125, -1777, -21, -1365, -23, -557, -969, -2156, -32, -933, -958, -962, -970, -535, -6022], - [1, 3, 3079], - [0, 3080, 3081, 85, 4], - [0, -1285, -2177, -1967, -1797, -8062, -8063, -8046], - [0, -932, -2125, -1777, -21, -1365, -23, -557, -969, -2156, -32, -933, -958, -962, -970, -535, -6022], - [1, 3, 3083], - [0, 3084, 3085, 85, 6], - [0, -1285, -5849], - [0, -932, -2125, -1777, -21, -1365, -23, -557, -2156, -32, -958, -934, -535, -6022], - [1, 3, 3087], - [0, 3088, 3089, 7, 9], - [0, -459, -929], - [0, -465, -932, -943, -958, -963, -966, -968, -1654, -1788, -2293], - [1, 3, 3091], - [0, 3092, 3093, 3094, 4], - [0, -461, -1026], - [0, -7150, -635, -8064, -3347, -8065, -8066, -1942, -2091], - [0, -8067, -8068, -6505, -8069, -8070, -8071, -3217, -8072, -8073, -8074, -3756, -8075, -8076, -8077, -8078, -8079], - [1, 3, 3096], - [0, 3097, 3098, 3099, 4], - [0, -8080, -1283, -8081, -8082, -8083, -6402, -1797], - [ - 0, -2832, -5834, -8084, -8085, -8086, -8087, -8088, -8089, -8090, -8091, -8092, -8093, -8094, -8095, -8096, - -505, -516, -5835, -932, -6283, -6503, -1402, -1777, -1788, -8097, -2156, -8098, -2322, -8099 - ], - [0, -3214, -3217, -6505, -3756, -7374, -5846, -8100, -8101, -5831], - [1, 3, 3101], - [0, 3102, 3103, 3104, 11], - [0, -6704, -8102, -8103, -8104], - [0, -932, -6706, -6707, -6708, -1344, -1534, -1788, -8105, -6709, -6710], - [0, -3217, -8106, -8107, -8108, -3184, -8109, -8110, -8111, -8112, -3207, -3214, -3582, -5396, -2444, -5260, -8113], - [1, 3, 3106], - [0, 0, 3107, 3108, 4], - [0, -5834, -515, -932, -1365, -1414, -1788, -2156, -2416], - [0, -5396, -8108, -8114, -3214, -3217, -3582], - [1, 3, 3110], - [0, 0, 3111, 3112, 5], - [0, -526, -527, -535, -4098, -558, -664, -767, -1654, -2125], - [0, -3184, -6324, -525], - [1, 3, 3114], - [0, 0, 3115, 3116, 9], - [ - 0, -8115, -1654, -902, -7945, -7938, -8116, -8117, -8118, -8119, -629, -7993, -8003, -8120, -8121, -6083, -6070, - -8122, -6081, -548, -6072, -6068, -550, -6071, -6082 - ], - [0, -8123, -3582, -1961, -5923], - [1, 3, 3118], - [0, 0, 3119, 3120, 4], - [0, -21, -23, -40, -4691, -925, -932, -940, -943, -958, -966, -968, -1344, -1788, -1942, -2210, -2322], - [0, -1961, -5923, -3184, -8124, -926], - [1, 3, 3122], - [0, 0, 3123, 3124, 8], - [ - 0, -5834, -515, -664, -923, -932, -993, -1127, -1137, -1149, -1161, -1365, -1654, -1788, -1963, -8125, -2156, - -2322, -2416 - ], - [0, -3217, -3207, -3184, -5396, -1961, -5923, -8126, -6917, -8127, -8128], - [1, 3, 3126], - [0, 0, 3127, 3128, 5], - [0, -589, -585], - [0, -5559, -3264, -3590], - [1, 3, 3130], - [0, 0, 14, 3131, 10], - [0, -5559, -5569, -5570, -8129, -8130, -2265, -8131, -8132], - [1, 3, 3133], - [0, 3134, 3135, 7, 4], - [0, -988, -6100, -987, -2231], - [0, -461, -615, -8133, -664, -3629, -8134, -1168, -1197, -1231, -1646, -1815, -2177], - [1, 3, 3137], - [0, 3138, 3139, 3140, 5], - [ - 0, -189, -5200, -8135, -8136, -7820, -8137, -8138, -8139, -8140, -426, -469, -769, -812, -930, -982, -983, -986, - -8141, -6100, -1025, -8142, -1047, -1108, -1353, -8143, -1393, -8144, -1645, -5199, -1815 - ], - [ - 0, -2832, -23, -40, -3794, -7462, -3244, -8145, -8146, -3037, -428, -534, -652, -664, -674, -722, -753, -795, - -888, -955, -8147, -7355, -8148, -8149, -8150, -987, -8151, -1107, -1110, -1116, -1125, -1431, -1498, -1534, - -1600, -1602, -1610, -8152, -8153, -8154, -8155, -8156, -8157, -1654, -8158, -8159, -1942, -1959, -1972, -2066, - -2082, -2177, -2195, -2210, -2410, -2501, -2503, -8160 - ], - [0, -3272, -7148, -3214, -3217, -986], - [1, 3, 3142], - [0, 3143, 3144, 197, 5], - [0, -1797, -1798, -934], - [0, -2322, -887, -932, -1365, -44, -8161, -8162, -557, -969, -2156, -958, -962, -970], - [1, 3, 3146], - [0, 3147, 3148, 197, 4], - [0, -2177, -1797, -1798, -8167], - [0, -2322, -887, -932, -1365, -44, -8161, -8162, -557, -2156, -958], - [1, 3, 3150], - [0, 3151, 3152, 3153, 10], - [0, -934], - [0, -427, -428, -855, -932, -940, -958, -1344, -1534, -1771, -1942, -8168, -2410], - [0, -8164, -727, -4795, -8165, -6434, -8166, -932, -8163, -3214, -4900, -2410], - [1, 3, 3155], - [0, 0, 38, 3156, 8], - [ - 0, -3939, -707, -8169, -5553, -7148, -8170, -1445, -1452, -8171, -932, -5874, -8172, -8173, -7440, -7144, -8174, - -7840, -8175 - ], - [1, 3, 3158], - [0, 3159, 38, 3160, 4], - [0, -190, -1110], - [0, -932, -5031, -8176], - [1, 3, 3162], - [0, 3163, 3164, 3165, 4], - [0, -3615, -3244, -190, -3748, -427, -428, -938, -945, -8177, -948, -958, -960, -964, -965, -7354, -978, -2411], - [0, -4367, -932, -2410], - [0, -4362, -932, -5031, -8176], - [1, 3, 3167], - [0, 3168, 3169, 76, 11], - [0, -965, -964, -958, -8177, -428, -7354, -427, -948], - [0, -932, -2410, -4367], - [1, 3, 3171], - [0, 0, 0, 3172, 6], - [0, -932, -8163, -5031, -8178, -1942], - [1, 3, 3174], - [0, 3175, 0, 7, 5], - [0, -23, -959, -969, -32, -958, -561, -956, -962, -8179, -428, -8167, -970, -976, -427], - [1, 3, 3177], - [0, 0, 3178, 3179, 5], - [0, -932, -943, -958, -965, -968, -2322], - [ - 0, -8180, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8163, -8175, -1445, -1452, -7148, -8184, - -8169, -5493, -2176, -2250, -8185, -5553, -8186, -8187, -8174 - ], - [1, 3, 3181], - [0, 0, 3182, 3183, 4], - [0, -3330, -8096, -932, -958, -965, -968, -2322], - [ - 0, -8180, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8163, -8175, -1445, -1452, -7148, -8184, - -8169, -5493, -2250, -8185, -5553, -8186, -8187, -8174 - ], - [1, 3, 3185], - [0, 3186, 3187, 7, 9], - [0, -190, -3560, -978, -1110, -2411], - [0, -8188, -3330, -3037, -8189, -672, -932, -8190, -8191, -1942, -2410], - [1, 3, 3189], - [0, 3190, 3191, 3192, 4], - [0, -8192, -7462, -3748, -8167, -1110], - [0, -519, -932], - [ - 0, -8163, -2541, -8193, -8194, -8195, -8196, -8197, -707, -8169, -5553, -7148, -8170, -1445, -1452, -8171, -932, - -5874, -8172, -2250, -8173, -7440, -7144, -8174, -7840, -8175, -5493 - ], - [1, 3, 3194], - [0, 0, 3195, 3196, 10], - [0, -86, -3307, -767, -1344, -1534, -2094, -2099, -2541], - [0, -8198, -727, -932, -7921, -7922, -8199, -2541], - [1, 3, 3198], - [0, 3199, 3200, 3201, 4], - [0, -429, -469, -671, -719, -755, -823, -3780, -7829, -1418, -1456, -5473, -1605, -2400], - [ - 0, -190, -3037, -4372, -8200, -3899, -6593, -932, -940, -958, -965, -967, -978, -1609, -1768, -1771, -1821, - -1942, -2210, -7969, -2410, -2411, -2469 - ], - [0, -4100, -3671, -856, -932, -3262, -3862], - [1, 3, 3203], - [0, 3204, 0, 3205, 8], - [0, -812, -8201, -1101, -8202, -8203, -2654, -8204], - [0, -2410, -932, -6024, -6041, -3862], - [1, 3, 3207], - [0, 3208, 3209, 3210, 5], - [0, -1046, -1077, -1543, -1793, -2168], - [ - 0, -21, -23, -40, -86, -3307, -8205, -7166, -528, -533, -679, -8206, -767, -824, -825, -932, -940, -8207, -958, - -1344, -1415, -1424, -1534, -1771, -1942, -2251, -2501 - ], - [0, -932, -7148, -8170, -5932, -2501], - [1, 3, 3212], - [0, 3213, 3214, 3215, 4], - [0, -189, -7462, -8208, -986, -8209, -8210, -2115], - [0, -428, -519, -652, -668, -932, -8211, -947, -955, -999, -1771, -1821, -1866, -2410, -2541], - [0, -932, -5208, -3784, -519, -4004, -4043, -507, -5856, -5855, -1654], - [1, 3, 3217], - [0, 3218, 3219, 3220, 9], - [0, -8212], - [0, -1654, -932, -528, -1552], - [0, -525, -932, -5208, -3784, -528], - [1, 3, 3222], - [0, 3223, 3224, 3225, 5], - [0, -7150, -8213, -635, -658, -1047, -1110, -1565, -2177], - [ - 0, -23, -32, -86, -3307, -3615, -190, -3470, -3471, -8214, -3268, -8215, -3330, -3136, -8216, -3199, -589, - -8217, -891, -932, -940, -955, -967, -1002, -1344, -1415, -1942, -2174, -2205, -2375, -2379, -2410, -2411 - ], - [0, -932, -4865, -6520, -3690, -7148, -657, -8218], - [1, 3, 3227], - [0, 0, 123, 3228, 5], - [0, -932, -5208, -8108, -4795], - [1, 3, 3230], - [0, 3231, 3232, 3233, 4], - [0, -930, -1353], - [ - 0, -5380, -3037, -8219, -528, -708, -769, -932, -8220, -1077, -1654, -1788, -1810, -2125, -2177, -5621, -8221, - -2816 - ], - [0, -932, -5208, -3784, -3862, -8222, -3485, -8223, -1109, -1110, -8224, -8225, -8226, -8227, -8228, -8229], - [1, 3, 3235], - [0, 3236, 3237, 198, 11], - [0, -189, -988], - [ - 0, -86, -3307, -3534, -8230, -3244, -190, -3560, -8231, -8232, -8233, -426, -3044, -3037, -428, -429, -3899, - -932, -8234, -940, -947, -965, -978, -981, -982, -986, -1344, -1431, -1534, -1548, -1609, -1768, -1772, -1942, - -2892, -2410, -2411, -2469 - ], - [1, 3, 3239], - [0, 3240, 3241, 3242, 4], - [0, -1548, -8235], - [ - 0, -469, -1107, -1344, -1654, -932, -2125, -8236, -6611, -21, -23, -5870, -43, -2174, -40, -32, -8237, -3201, - -955, -535, -3408, -36 - ], - [0, -932, -3862, -8238], - [1, 3, 3244], - [0, 3245, 3246, 3247, 8], - [0, -1333], - [0, -8239, -8240, -932, -940, -8241, -1942, -2177], - [0, -3784, -5208, -932, -3264], - [1, 3, 3249], - [0, 3250, 3251, 3252, 9], - [ - 0, -8242, -8243, -8244, -8045, -505, -812, -8245, -8246, -8247, -1285, -7437, -1393, -1645, -8063, -8248, -8055, - -2177, -8249, -2383 - ], - [ - 0, -8250, -3330, -428, -526, -527, -528, -539, -541, -557, -6089, -566, -572, -664, -767, -8251, -932, -947, - -948, -955, -958, -7894, -6039, -8252, -1107, -1365, -1408, -1461, -8253, -8254, -1609, -1654, -8255, -1788, - -2074, -2125, -2156, -2210, -2359, -2410, -8256 - ], - [0, -932, -5208, -3784, -3184, -5748, -3209, -6024, -8257], - [1, 3, 3254], - [0, 199, 3255, 198, 6], - [ - 0, -21, -23, -40, -42, -86, -3307, -8230, -8258, -3470, -3471, -5325, -3330, -3136, -3037, -3199, -427, -428, - -429, -533, -8259, -815, -932, -940, -947, -955, -958, -965, -967, -981, -8260, -1344, -1392, -1415, -6725, - -1534, -8241, -1868, -1942, -2125, -2174, -2177, -2379, -2410 - ], - [1, 3, 3257], - [0, 3258, 3259, 3260, 4], - [0, -8261, -8262, -8263, -3896, -812, -930, -986, -8141, -1320, -8264, -8265, -2177, -8266, -8267], - [ - 0, -2832, -21, -23, -32, -3203, -40, -8268, -8269, -7820, -8270, -351, -7040, -3472, -7041, -3035, -3198, -8232, - -8146, -426, -4049, -3621, -3037, -3199, -8271, -3782, -535, -539, -8272, -652, -656, -664, -813, -932, -8237, - -8236, -1107, -1110, -1344, -8273, -1456, -8274, -1534, -1654, -8275, -1874, -8276, -2125, -2127, -2174, -2210, - -5198, -2410, -2411 - ], - [0, -932, -3862, -1446], - [1, 3, 3262], - [0, 3263, 3264, 3265, 9], - [0, -189, -7820, -8137, -8277, -8278, -8279, -7356, -5199, -2653], - [ - 0, -32, -8280, -50, -8230, -7462, -8281, -8282, -3748, -7155, -3621, -8283, -3037, -3199, -427, -428, -652, - -8284, -928, -932, -940, -955, -8285, -960, -8286, -961, -963, -965, -8287, -967, -971, -980, -7355, -982, -997, - -1110, -1654, -1834, -1942, -2177, -2281, -8288, -2282, -8289, -8290, -2892, -2392, -2410, -2411, -8291, -2468, - -2478 - ], - [0, -932, -5208, -3784, -7148, -8292, -1460, -4055], - [1, 3, 3267], - [0, 3268, 3269, 3270, 4], - [0, -5113, -8243, -505, -8293, -522, -8294, -8295, -5973, -1285, -8296, -8297, -1645, -8063, -8032, -8298], - [ - 0, -21, -23, -32, -3203, -43, -516, -535, -557, -932, -934, -947, -955, -956, -958, -988, -1059, -1365, -1408, - -7317, -1646, -1777, -1797, -1798, -2125, -2156, -2177, -2322, -8299 - ], - [0, -932, -5208, -3784, -4665, -4666, -4146], - [1, 3, 3272], - [0, 3273, 3274, 3275, 4], - [0, -1618], - [0, -1788, -664, -1654, -932, -1110, -190, -8148, -8300], - [0, -932, -5208, -1599, -7148, -8170], - [1, 3, 3277], - [0, 3278, 0, 3279, 10], - [0, -1110, -189], - [0, -932, -5208, -3784, -1654], - [1, 3, 3281], - [0, 3282, 3283, 200, 9], - [0, -189, -909, -8301, -1101, -1110, -2898, -1353, -2177, -8302], - [ - 0, -190, -3330, -426, -8303, -3037, -428, -5209, -932, -940, -947, -955, -1026, -1344, -1534, -1609, -1654, - -1772, -1788, -1810, -1942, -1977, -2091, -2125, -8304, -2400, -2410 - ], - [1, 3, 3285], - [0, 3286, 3287, 200, 6], - [0, -6578, -8305, -1353, -1645, -2114, -2177], - [0, -5380, -708, -932, -1026, -1110, -1654, -1788, -1810, -1977, -2125], - [1, 3, 3289], - [0, 3290, 0, 3291, 10], - [0, -8306, -2653], - [0, -932, -5208, -3784, -1942], - [1, 3, 3293], - [0, 3294, 3295, 3296, 4], - [0, -189], - [0, -428, -855, -932, -940, -947, -955, -959, -965, -967, -1110, -1344, -1415, -1534, -1772, -1942, -2410], - [0, -932, -5208, -3784, -1961, -5923], - [1, 3, 3298], - [0, 3299, 3300, 201, 5], - [ - 0, -8243, -8307, -505, -8308, -8245, -8309, -988, -1285, -8296, -1645, -1798, -8063, -8055, -1967, -2114, -2177, - -5010, -8310 - ], - [ - 0, -23, -32, -3332, -8311, -8312, -41, -3330, -426, -3037, -428, -528, -932, -934, -947, -955, -958, -981, - -8260, -982, -986, -8313, -1107, -1405, -1408, -8314, -1609, -1654, -1777, -2210, -2410, -8256 - ], - [1, 3, 3302], - [0, 3303, 3304, 201, 5], - [0, -2564, -23, -25, -8315, -3251], - [0, -1415, -2410, -3037, -47, -528, -3330, -426, -8316, -8317, -32, -42], - [1, 3, 3306], - [0, 3307, 3308, 3309, 6], - [0, -189, -5200, -3896, -8273, -8318, -8319, -8320], - [ - 0, -50, -3462, -8230, -3244, -190, -8281, -8282, -5030, -3035, -3330, -8231, -426, -3621, -3037, -8321, -427, - -428, -507, -664, -8284, -932, -940, -947, -948, -955, -958, -960, -8286, -961, -963, -965, -8322, -967, -971, - -978, -980, -7355, -8323, -1609, -1654, -8324, -1588, -1772, -1788, -1834, -1942, -2177, -2281, -3085, -8288, - -2892, -2392, -2410, -2411, -8291, -2468, -2478 - ], - [0, -932, -5208, -3784, -5570, -5569], - [1, 3, 3311], - [0, 3312, 3313, 3314, 5], - [0, -8325], - [0, -190, -5887, -932, -8326, -940, -947, -955, -1534, -1609, -1654, -1771, -1942, -2174, -8160], - [0, -932, -7107, -8327], - [1, 3, 3316], - [0, 3317, 0, 3318, 9], - [0, -2410, -2177, -8328, -1566, -8329, -5200, -1645, -5198, -8320, -651, -644, -1110], - [0, -8330, -932, -5208], - [1, 3, 3320], - [0, 0, 123, 3321, 11], - [0, -932, -5208], - [1, 3, 3323], - [0, 3324, 3325, 3326, 9], - [0, -189, -3115, -6100, -1110, -1499, -1889, -1907, -1929, -2177, -8331], - [ - 0, -23, -32, -6034, -8230, -4776, -8332, -8333, -4049, -8334, -3621, -3037, -8335, -3199, -8336, -3331, -3782, - -461, -507, -928, -982, -8190, -983, -986, -1431, -1521, -1654, -1916, -1931, -2162, -2232, -2286, -2299, -8337, - -2392, -2399, -2548 - ], - [0, -932, -3784, -5208, -2299, -8338], - [1, 3, 3328], - [0, 3329, 3330, 3331, 5], - [0, -3331, -429], - [ - 0, -86, -3307, -3244, -190, -3037, -5206, -3664, -6593, -3665, -932, -940, -947, -948, -8339, -965, -968, -981, - -8260, -1110, -1344, -1431, -1534, -1942, -2910, -2174, -2892, -2410, -2411, -2469 - ], - [0, -932, -5208, -3784, -7148, -5127, -3634], - [1, 3, 3333], - [0, 3334, 3335, 3336, 4], - [0, -429, -264, -263], - [0, -4153, -3330, -426, -932, -4164], - [0, -4165, -856, -4100, -3485, -4156, -4158, -4346, -3862], - [1, 3, 3338], - [0, 3339, 3340, 3341, 9], - [0, -3188, -189, -671, -680, -8340, -3347, -8341, -1110, -1366, -5894, -1451, -1878, -8342, -8343, -2177, -4096], - [ - 0, -22, -23, -32, -3244, -8344, -428, -3782, -519, -652, -910, -932, -8211, -945, -947, -955, -960, -978, -981, - -8260, -982, -986, -1536, -1609, -8345, -8346, -1768, -1772, -8275, -1821, -1951, -2410, -2478, -2548 - ], - [0, -932, -5208, -3784, -8347, -8170, -7148, -5553, -2541], - [1, 3, 3343], - [0, 199, 3344, 3345, 4], - [ - 0, -3748, -3330, -3621, -3037, -427, -428, -5206, -8348, -8349, -726, -932, -947, -955, -979, -981, -8260, - -2379, -2392, -2410, -2423, -2469 - ], - [0, -932, -5208, -3784, -8350, -2469, -8351], - [1, 3, 3347], - [0, 3348, 3349, 3350, 5], - [0, -189, -5199, -2788, -1931, -2177, -8352], - [ - 0, -50, -3560, -8282, -3748, -5030, -3330, -8283, -3037, -3199, -8353, -427, -428, -3782, -3664, -507, -8284, - -928, -932, -6835, -940, -955, -958, -961, -8354, -8287, -967, -978, -8190, -983, -986, -997, -1110, -1449, - -1609, -1852, -1942, -2892, -2410, -8291, -2468, -2469, -2478 - ], - [0, -932, -3784, -5031, -2476, -5173, -8199], - [1, 3, 3352], - [0, 3353, 3354, 3355, 6], - [0, -22, -1464, -668, -1373, -1793, -2006, -2205], - [0, -3244, -8355, -3330, -3037, -4067, -3040, -740, -932, -5135, -8356, -8357, -1431, -1741, -2269, -2410, -2469], - [0, -932, -8358], - [1, 3, 3357], - [0, 3358, 3359, 38, 9], - [0, -8359, -426, -8360, -988], - [0, -428, -664, -983, -986, -8159, -2195], - [1, 3, 3361], - [0, 0, 3362, 38, 5], - [0, -1810, -2127, -2132, -2384, -2410], - [1, 3, 3364], - [0, 3365, 0, 3366, 4], - [0, -941, -8361], - [0, -984], - [1, 3, 3368], - [0, 0, 0, 3369, 9], - [0, -4791, -3217, -8257, -6024, -3209, -3966, -4792], - [1, 3, 3371], - [0, 3372, 3373, 3374, 5], - [0, -461, -6426, -983], - [0, -2832, -2127, -2195, -2384, -2410], - [0, -3272, -3217, -3214, -3215, -4132, -461], - [1, 3, 3376], - [0, 0, 3377, 3378, 5], - [ - 0, -6774, -8362, -8363, -1107, -1405, -8364, -1471, -1475, -1477, -1478, -1479, -1480, -1482, -1487, -8365, - -1488, -1548, -1654, -8366, -2081, -2330, -2388, -2410, -2412, -8367, -2501 - ], - [0, -3272, -3217, -987, -3214, -3215, -4132], - [1, 3, 3380], - [0, 0, 3381, 7, 5], - [0, -558, -566, -664, -986, -1168, -1179, -1199, -1205, -8368, -1452, -1654], - [1, 3, 3383], - [0, 202, 3384, 7, 6], - [0, -2410, -2447], - [1, 3, 3386], - [0, 0, 3387, 3388, 6], - [0, -1654, -932, -1405, -589, -2172, -2155, -585, -966, -958, -968, -943, -963, -974], - [0, -990, -1334, -4616], - [1, 3, 3390], - [0, 3391, 3392, 3393, 8], - [0, -8369, -992], - [ - 0, -8370, -8371, -8372, -8373, -4272, -5686, -3037, -8096, -633, -8374, -756, -1344, -1405, -1471, -1472, -1477, - -1479, -8375, -1646, -1788, -1942, -2322, -2379, -2388, -2402, -2405, -2410, -8376 - ], - [0, -4276, -8377], - [1, 3, 3395], - [0, 3396, 3397, 3398, 5], - [0, -4272, -616, -760, -8378, -8379], - [0, -8380, -3037, -8381, -8096, -932, -1471, -1475, -1479, -8375, -8382, -1788, -1942, -2322, -2379, -2410], - [0, -4276, -8113, -5260], - [1, 3, 3400], - [0, 3401, 3402, 3403, 5], - [0, -461, -668, -2550, -1548, -615, -1077, -8383, -988, -1600, -8384, -2425], - [0, -1983, -8385, -2410, -3037], - [0, -8386, -8387, -3214, -1599, -4004], - [1, 3, 3405], - [0, 3406, 3407, 3408, 5], - [0, -883, -8388, -1597, -8389, -2239, -8390, -2346], - [0, -8391, -8392, -8393, -2322, -8394], - [0, -5827, -6917, -8395, -7724, -2239, -8396, -1631, -8276], - [1, 3, 3410], - [0, 0, 3411, 3412, 9], - [0, -589, -615, -756, -1654, -1788], - [0, -5389, -997, -6820, -8397, -8398, -8399, -8400, -6821, -8401, -8402, -1801, -8403, -8404], - [1, 3, 3414], - [0, 0, 3415, 3416, 4], - [0, -350, -3266, -509, -652, -1654, -2127], - [0, -8405, -8406, -8407, -8408, -8398, -8399, -6821, -8401, -6820, -5389, -1801, -8400, -8403, -8409, -8404], - [1, 3, 3418], - [0, 0, 3419, 3420, 5], - [0, -468, -1083, -8047, -1283, -1402, -2322], - [0, -997, -8410, -8411, -8412], - [1, 3, 3422], - [0, 3423, 3424, 3425, 4], - [0, -8413, -769, -1040, -1100, -8414, -1395, -1399, -1773, -1951, -2202, -8415, -8416], - [0, -3037, -519, -652, -8417, -8418, -8419, -8420, -1849, -7087, -6909, -2384, -2410, -2518, -2541], - [ - 0, -8421, -6599, -1958, -8422, -7096, -8423, -8424, -7091, -6656, -5550, -8425, -7304, -8426, -1764, -1847, - -8427, -5369 - ], - [1, 3, 3427], - [0, 0, 3428, 3429, 6], - [0, -1144, -1146, -1149, -1127, -2518], - [0, -1000, -1958, -8428, -3973, -8429, -8430, -8431, -8432], - [1, 3, 3431], - [0, 3432, 3433, 7, 4], - [0, -8433, -8434, -5124, -4025, -5129, -1427], - [0, -7037, -4034, -668, -1361], - [1, 3, 3435], - [0, 0, 3436, 3437, 4], - [0, -2832, -3037, -8200, -3665, -932, -8435, -1763, -8436, -2269, -2378, -2410, -2469], - [0, -2410, -8437, -507, -3694, -2414, -4004, -3634], - [1, 3, 3439], - [0, 3440, 3441, 203, 4], - [ - 0, -1983, -828, -990, -1801, -2178, -2453, -812, -1072, -743, -3122, -459, -2401, -1840, -2255, -907, -1641, - -5148, -617, -929, -1335, -1800, -737, -1045, -1997, -2187, -746, -8438, -736 - ], - [0, -888, -1296, -1788, -465, -1654, -2457, -932, -1610, -1676, -2293, -733, -744, -745, -1010, -1635, -8439], - [1, 3, 3443], - [0, 3444, 3445, 203, 4], - [ - 0, -459, -8440, -617, -736, -737, -743, -746, -812, -828, -907, -929, -990, -1045, -1072, -1335, -8438, -1636, - -1800, -1840, -1851, -5148, -1983, -1997, -2155, -2178, -2187, -8441, -2255, -2401, -2445, -2453 - ], - [0, -465, -733, -744, -745, -888, -932, -1010, -1296, -1610, -1635, -1654, -1676, -1788, -8439, -2293, -2457], - [1, 3, 3447], - [0, 3448, 3449, 3450, 6], - [0, -23, -25, -46, -8245, -1851], - [0, -3136, -932, -1415], - [0, -4847, -1004, -1446, -4100, -3696, -8442, -856, -2305, -5886, -3262, -3960, -8443, -8444, -8445], - [1, 3, 3452], - [0, 3453, 3454, 3455, 4], - [0, -888, -1650, -719, -1645, -6123], - [0, -1654, -932, -2125, -2418, -2293, -2369, -966, -958, -968, -943, -974, -2450], - [0, -1004, -3161, -6125, -3578, -3691, -5728, -3122, -3994, -3690], - [1, 3, 3457], - [0, 3458, 3459, 3460, 5], - [0, -1107, -1119, -1276], - [0, -190, -3470, -7040, -3471, -3472, -7041, -7042, -3136, -3037, -932, -1110, -1417, -2174, -2375, -2410, -2411], - [0, -1004, -8446, -1276, -6107, -3999, -8447, -3261], - [1, 3, 3462], - [0, 3463, 3464, 3465, 5], - [0, -1465, -8448, -3850], - [0, -1654, -932, -1004, -2379, -1942, -2410, -3621, -3617, -739, -428, -427], - [0, -6120, -8449, -3173, -8450, -6121, -1334, -3175, -8451, -1791, -1004], - [1, 3, 3467], - [0, 3468, 3469, 7, 5], - [0, -743, -746, -812, -828, -6825, -1840, -2155, -2418], - [0, -465, -744, -932, -963, -1004, -1654, -1788, -2293], - [1, 3, 3471], - [0, 3472, 3473, 3474, 5], - [0, -469, -668, -719, -724, -754, -865, -1004, -1435, -2127, -2132, -2410, -2564], - [0, -190, -3732, -4198, -3617, -3037, -427, -428, -932, -966, -1110, -1753, -1942, -2125, -2379, -2383, -2411], - [0, -3690, -3445, -6491, -3113, -6129, -1004, -8452, -3161, -8453, -5545, -3844, -3926], - [1, 3, 3476], - [0, 0, 3477, 3478, 5], - [0, -652, -8454, -2210, -932, -1004, -2379, -8455, -2410, -3037, -4372, -3617, -428, -427], - [ - 0, -8456, -8457, -4055, -2410, -3690, -1334, -1004, -8458, -8459, -2410, -5401, -8038, -8460, -8461, -8462, - -8463, -8464, -4140, -4601, -3445, -8465, -8466, -2006, -8467, -8468, -8469 - ], - [1, 3, 3480], - [0, 3481, 3482, 3483, 4], - [0, -1548, -2451], - [0, -2685, -8470, -8471, -3136, -3044, -427, -428, -932, -940, -958, -967, -1415, -1942, -2375, -2410], - [0, -1004, -2451, -3926, -5874, -7723, -8472, -2544], - [1, 3, 3485], - [0, 3486, 3487, 3488, 5], - [0, -483, -1736, -8473, -1993, -8474], - [ - 0, -3732, -4198, -8475, -3617, -4199, -8476, -8477, -4625, -8478, -724, -754, -828, -1004, -4206, -1335, -1730, - -8479, -2410, -2426, -2564, -8480 - ], - [ - 0, -3967, -3690, -1334, -5401, -856, -4055, -1004, -2410, -4058, -3844, -8481, -4847, -8482, -3438, -8483, - -8484, -8485, -8486, -2564, -3926 - ], - [1, 3, 3490], - [0, 0, 3491, 3492, 8], - [0, -5834, -8487, -932, -1445, -2322], - [0, -1015, -702, -1631], - [1, 3, 3494], - [0, 3495, 3496, 3497, 8], - [0, -8488, -8489], - [0, -8490, -8491, -8492, -1202, -1396, -8493, -1646, -1654, -1792], - [ - 0, -7370, -702, -1015, -1631, -7369, -7208, -1792, -1797, -7375, -3589, -7153, -8494, -8495, -2444, -3590, - -5260, -5846 - ], - [1, 3, 3499], - [0, 3500, 3501, 7, 5], - [0, -510, -1543, -2168, -2510], - [ - 0, -526, -533, -551, -556, -558, -767, -778, -825, -932, -6929, -958, -1041, -1415, -1534, -1780, -1939, -2000, - -2251, -2275, -2501, -8496 - ], - [1, 3, 3503], - [0, 3504, 3505, 3506, 10], - [0, -812, -1100, -2555, -8497], - [0, -427, -428, -519, -932, -943, -950, -958, -966, -968, -974, -1077, -1344, -1534, -1788, -2384, -2410], - [0, -2432, -5408, -7347], - [1, 3, 3508], - [0, 0, 3509, 7, 9], - [ - 0, -1788, -1168, -1446, -1654, -2210, -932, -1548, -1813, -2347, -756, -633, -2915, -1243, -1262, -1534, -2778, - -2461, -1204, -8498, -8499, -2463 - ], - [1, 3, 3511], - [0, 3512, 3513, 3514, 4], - [0, -8500], - [0, -932, -937, -966, -1001, -1654, -1788, -8501, -2210], - [0, -8502, -1573, -3444, -5545, -3240, -8503], - [1, 3, 3516], - [0, 3517, 3518, 3519, 4], - [0, -8504], - [0, -262, -3037, -767, -1107, -8342, -2104, -2402, -2410, -2469, -8505, -8506, -1023], - [0, -8507, -8508, -5858, -3634, -8509, -8510, -8511, -1021, -8512, -8513, -1415], - [1, 3, 3521], - [0, 3522, 0, 3523, 8], - [0, -8514, -8515], - [0, -788, -3215, -5922, -8516, -8517, -8518], - [1, 3, 3525], - [0, 0, 3526, 3527, 4], - [0, -756, -864, -932, -1654, -1788, -1939, -2006, -2052, -2210, -2410], - [0, -5922, -6439, -821], - [1, 3, 3529], - [0, 3530, 3531, 204, 4], - [0, -8519, -8520, -1108, -5615, -1639], - [ - 0, -8521, -6927, -8522, -4036, -3621, -3037, -8523, -4372, -8524, -932, -8525, -999, -1026, -4787, -1107, -8526, - -1654, -2125, -2210, -8527, -2410 - ], - [1, 3, 3533], - [0, 0, 3534, 7, 5], - [0, -3621, -3037, -1654, -2165, -2410], - [1, 3, 3536], - [0, 3537, 3538, 3539, 11], - [0, -8529], - [0, -23, -38, -40, -43, -3037, -534, -652, -932, -1297, -1412, -1942, -1973, -2410, -2501, -2503], - [0, -5922, -6597, -4055, -3215, -2536, -6841, -2537, -3756, -2451, -5874, -8530, -507, -8531, -8532, -3264], - [1, 3, 3541], - [0, 0, 0, 3542, 10], - [0, -1029, -3162, -2363, -2319, -8533, -826], - [1, 3, 3544], - [0, 3545, 3546, 3547, 4], - [0, -8534, -8535, -8536, -8537, -8538, -8539, -8540, -8541, -8542, -1867, -8543, -2124, -8544, -2177, -8545], - [ - 0, -8546, -3902, -357, -3748, -5029, -3037, -469, -3907, -470, -8547, -8548, -8549, -2917, -8550, -726, -767, - -932, -8551, -4848, -8552, -8553, -1335, -1435, -5265, -1464, -8554, -2884, -1730, -1972, -2240, -2384, -2410, - -2426, -2453, -3612 - ], - [0, -3578, -3161, -4055, -4058, -1805, -3690], - [1, 3, 3549], - [0, 3550, 3551, 7, 5], - [ - 0, -262, -8555, -5335, -8556, -8557, -5336, -5337, -8558, -8559, -536, -541, -8560, -8561, -909, -928, -1026, - -5344, -8562, -1645, -8563, -2383, -2410, -8564 - ], - [ - 0, -86, -3307, -367, -3136, -8565, -8566, -3037, -6025, -5367, -1344, -1415, -3640, -1534, -1942, -1944, -1945, - -2125, -2379, -2392, -5369 - ], - [1, 3, 3553], - [0, 3554, 3555, 3556, 10], - [ - 0, -8567, -8568, -8569, -8570, -8571, -6369, -883, -1646, -8255, -2062, -8032, -2243, -8572, -8057, -8573, - -2322, -2347 - ], - [0, -5834, -515, -516, -932, -1365, -1777, -2156], - [0, -2319, -8574, -4004, -8575, -8576, -3240], - [1, 3, 3558], - [0, 3559, 3560, 7, 5], - [0, -768, -8577, -1580, -1792, -1961, -8578, -2594], - [0, -23, -824, -1059, -1168, -1174, -1201, -1243, -1361, -1417, -1632], - [1, 3, 3562], - [0, 28, 3563, 3564, 9], - [0, -21, -23, -40, -41, -3470, -3471, -8579, -5859, -8580, -553, -796, -932, -933, -1534, -1650, -2174], - [ - 0, -8581, -8582, -8583, -8584, -3098, -8585, -3100, -3482, -2006, -8586, -8587, -5066, -3578, -8588, -8589, - -8590, -8591, -8592, -8593, -8594, -8595, -8596, -8597, -8598, -8599, -8600, -8601, -8602, -8603, -8604, -8605 - ], - [1, 3, 3566], - [0, 39, 3567, 3568, 4], - [ - 0, -21, -23, -38, -40, -41, -42, -3326, -350, -351, -3267, -407, -409, -2622, -3136, -3040, -3052, -427, -428, - -708, -726, -767, -932, -934, -940, -7476, -958, -959, -969, -970, -1415, -2006, -2019, -2082, -2127, -2140, - -2375, -2387, -2410 - ], - [0, -8606, -3100, -8607, -2074], - [1, 3, 3570], - [0, 3571, 0, 3572, 8], - [0, -8608, -8609, -8610, -5140], - [0, -4213, -1334, -4215, -3634, -4216, -8611], - [1, 3, 3574], - [0, 3575, 0, 3576, 10], - [0, -8612], - [0, -8613, -1038, -6768, -8614, -510, -5921, -8615, -6309, -1961], - [1, 3, 3578], - [0, 75, 3579, 3580, 4], - [0, -3037, -3665, -510, -1344, -1534, -2410, -2466, -6859, -2469], - [0, -1039, -4111, -8616, -8617, -5514], - [1, 3, 3582], - [0, 3583, 14, 3584, 9], - [0, -6861], - [0, -4112, -687, -7095, -3958, -8132, -8618, -8619, -8620, -1040, -8621], - [1, 3, 3586], - [0, 205, 3587, 48, 4], - [ - 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -767, -824, -825, -932, -940, -958, -1344, -1415, -1534, - -1623, -1771, -1942, -2251, -2437, -2501 - ], - [1, 3, 3589], - [0, 0, 3590, 3591, 8], - [0, -21, -23, -4691, -3356], - [0, -8622, -8623, -8624], - [1, 3, 3593], - [0, 3594, 3595, 3596, 4], - [0, -8625, -8626, -8627, -8628], - [0, -8629, -3037, -519, -8630, -1100, -8631, -2384, -2541], - [ - 0, -1640, -6656, -8038, -8632, -5409, -6527, -5094, -8633, -8634, -6855, -8635, -8636, -6659, -7440, -1391, - -8637, -8638, -8639, -7863, -7304, -640, -6438, -8640, -7715, -8641, -8642, -5315, -8643, -8644, -8645, -8646, - -8647, -8648, -8649, -8650, -8651, -1992, -8652, -8653, -8654, -8655, -8656, -8657, -5408, -2323, -8658, -8659, - -7345, -8660, -7860, -8661, -8662, -8663, -8664, -8665, -8666, -8667, -8668, -8669, -8670, -8671, -8672, -8673, - -8674, -8675, -6528, -8676, -8677, -5953, -8678, -8679, -8680, -8681, -8682, -8683, -8684, -8685, -8686, -8687, - -8688, -3742, -8689, -8690, -8691, -8692, -8693, -8694, -8695, -8696, -8697, -8698, -8699, -8700, -8701, -8702, - -8703, -8704, -2534, -8705, -8706, -8707, -8708, -8709, -8710, -8711, -8712, -8713, -8714, -6597, -8715, -8716, - -4771, -8717, -8718, -8719, -6042, -8720, -8721, -8722, -8723, -8724, -8725, -8726, -8727, -8728, -8729, -8730, - -8731, -8732, -8733, -8734, -8735, -8736, -8737, -8738, -8739, -8740, -8741, -8742, -8743, -8744, -8745, -8746, - -8747, -8748, -8749, -8750, -8751, -8752, -8753, -5316, -8754, -8755, -8756, -8757, -7557, -8758, -8759, -8760, - -8761, -8762, -8763, -8764, -8765, -8766, -7711, -8767, -8768, -8769, -8770, -8771, -8772, -8773, -8774, -8775, - -8776, -8777, -8778, -8779, -8780, -8781, -8782, -8783, -8784, -8785, -8786, -8787, -8788, -8789, -8790, -8791, - -8792, -8793, -6695, -8794, -8795, -8796, -7349, -8797, -8798 - ], - [1, 3, 3598], - [0, 0, 3599, 3600, 9], - [0, -3266, -516, -652, -932, -1344, -1654, -2127], - [0, -6656, -1044, -8799, -8800, -8801, -651, -834], - [1, 3, 3602], - [0, 3603, 81, 7, 6], - [0, -812, -907, -929, -1800, -1840, -2255], - [1, 3, 3605], - [0, 3606, 3607, 3608, 5], - [0, -1871, -5907], - [0, -2541, -519, -824, -2384, -2331], - [0, -3324, -7421, -6491, -5573, -7282], - [1, 3, 3610], - [0, 3611, 3612, 3613, 4], - [0, -8802, -8803], - [0, -519, -7408, -2331, -2384, -2541], - [ - 0, -5573, -8804, -1047, -5504, -8805, -8806, -6656, -7282, -5572, -5897, -2114, -8807, -6370, -7420, -7421, - -2487, -8808, -1847 - ], - [1, 3, 3615], - [0, 3616, 3617, 3618, 4], - [0, -8809, -1393, -1639, -8810], - [0, -932, -937, -966, -1001, -8811, -1654, -1759, -1788, -2114], - [0, -6656, -5573, -1047, -5504, -1107, -5572, -5574, -2114, -7282], - [1, 3, 3620], - [0, 3621, 3622, 3623, 4], - [ - 0, -8812, -8813, -8814, -8815, -8816, -8817, -8818, -8819, -8820, -8821, -8822, -8823, -8824, -8825, -8826, - -8827, -8828, -8829, -8830, -8831, -8832, -8833, -8834, -8835, -8836, -8837, -8838, -8839 - ], - [0, -1168, -2127, -2410, -1244, -1252, -2143, -3266, -2134, -350, -2139, -2142, -351], - [0, -3173, -7685, -8840, -1050, -8841, -6005, -6187, -8842], - [1, 3, 3625], - [0, 3626, 3627, 3628, 10], - [0, -8843, -8831, -8844, -3037, -8845, -1025, -8846, -1465, -8847, -1730, -2446], - [ - 0, -8848, -8824, -8825, -8849, -262, -8850, -3035, -4269, -8851, -3850, -3044, -5686, -3621, -4624, -8852, - -8853, -4372, -3625, -3738, -427, -428, -581, -664, -665, -3629, -668, -677, -824, -932, -8854, -1168, -1199, - -1208, -1261, -8855, -1548, -1646, -1654, -1693, -1722, -1771, -1788, -2105, -2106, -2150, -2210, -2211, -2379, - -2410, -2550 - ], - [0, -8856, -7685, -8840, -8841, -3173], - [1, 3, 3630], - [0, 3631, 0, 3632, 10], - [ - 0, -8857, -8858, -8859, -8860, -8861, -8862, -4106, -8863, -458, -469, -470, -501, -8864, -617, -679, -8865, - -695, -713, -719, -728, -754, -767, -769, -790, -8866, -8867, -8868, -1004, -1044, -1069, -1077, -1087, -8869, - -1107, -8846, -1353, -1442, -1465, -1526, -8870, -1548, -8871, -1610, -6294, -1640, -1645, -1676, -1729, -1805, - -1816, -3447, -1857, -8872, -8873, -1888, -1959, -8874, -2122, -2177, -8875, -8876, -8877, -8878, -4356, -2359, - -8879, -8880, -8881, -2446, -2520, -2522, -2531, -2548, -2564, -8882 - ], - [0, -8883, -687, -8884, -5801, -8885, -1050, -8841, -6224, -8886], - [1, 3, 3634], - [0, 3635, 86, 3636, 9], - [0, -8887, -668, -831, -8888, -8889, -2001], - [0, -7416, -5897], - [1, 3, 3638], - [0, 3639, 3640, 7, 5], - [0, -3048, -8566, -8890, -1077, -8891, -2488], - [0, -3037, -2125, -2319, -2410], - [1, 3, 3642], - [0, 0, 86, 3643, 5], - [0, -1055, -4055, -5841, -8892, -2239, -7208, -8893], - [1, 3, 3645], - [0, 3646, 206, 3647, 5], - [0, -812, -926, -1077, -1548, -2359], - [0, -7871], - [1, 3, 3649], - [0, 0, 3650, 3651, 4], - [ - 0, -23, -36, -6064, -40, -8894, -3048, -3036, -3136, -4964, -3037, -8336, -551, -679, -756, -1077, -1107, -1415, - -1942, -2125, -2127, -2128, -8895, -8896, -2141, -2334, -2375, -2379, -2387, -2410 - ], - [0, -3214, -4224, -4120, -4121, -4123, -4122, -8897], - [1, 3, 3653], - [0, 3654, 3655, 3656, 9], - [0, -8898, -668, -1038, -1381, -1531, -1758, -6467, -1965, -2177, -2246, -8899, -6007], - [0, -664, -756, -932, -1405, -8900, -1654, -1939, -1972, -2210], - [0, -8901, -8902, -8903, -8904, -8421, -5550, -6836, -8905, -8906, -5921, -8907, -8908, -8427, -5801, -8909], - [1, 3, 3658], - [0, 0, 0, 3659, 4], - [0, -5732, -687, -8425, -7304, -5411, -4038, -8038, -8910, -7440, -7144, -3214, -3756, -8911], - [1, 3, 3661], - [0, 3662, 3663, 3664, 11], - [0, -2997, -8912, -8913, -1889, -2318], - [ - 0, -23, -40, -3559, -8914, -8915, -427, -428, -518, -534, -749, -753, -767, -778, -779, -784, -932, -940, -967, - -8916, -1041, -8917, -1643, -1771, -1942, -8918, -4245, -2200, -2233, -2275, -2335, -2376, -2410, -2501, -2503, - -2505, -8919, -2552 - ], - [ - 0, -1060, -2410, -3214, -2501, -3264, -775, -5511, -8920, -2316, -7287, -8921, -8922, -8923, -8924, -7287, - -8925, -7288, -7289, -8926, -7294, -8927, -8928, -7297, -7293, -7292, -7296, -8929, -932, -1942, -8930, -985, - -8931 - ], - [1, 3, 3666], - [0, 3667, 3668, 3669, 4], - [0, -510, -2518], - [0, -1788, -1446, -1654, -2198], - [0, -8932], - [1, 3, 3671], - [0, 3672, 3673, 3674, 4], - [0, -8933, -1033], - [ - 0, -23, -534, -7747, -824, -1168, -1174, -1201, -1208, -1243, -1266, -1361, -1415, -1419, -1792, -2006, -8934, - -2019, -2463, -2501, -7752 - ], - [0, -1062, -2006, -4038, -8935], - [1, 3, 3676], - [0, 0, 3677, 3678, 4], - [0, -725, -932, -1004, -8936, -1654, -1788], - [0, -1334, -1342, -2435, -8937, -3323, -8938, -3590], - [1, 3, 3680], - [0, 0, 0, 3681, 9], - [0, -3827, -3837, -3838, -3167, -3827, -620], - [1, 3, 3683], - [0, 3684, 3685, 7, 11], - [0, -8050], - [0, -2832, -5834, -8084, -8939, -8096, -516, -932, -1777, -1788, -2322], - [1, 3, 3687], - [0, 3688, 3689, 3690, 11], - [0, -510, -8940, -702, -8941, -714, -1650, -2520, -8942, -8943, -1953, -728, -995, -1792, -8944], - [0, -664, -2471, -1654, -932, -1666, -8945, -2105, -1942, -8946, -940, -967], - [0, -687, -8947, -8948, -3674], - [1, 3, 3692], - [0, 3693, 3694, 3695, 8], - [0, -22, -668, -679, -755, -823, -1077, -1623, -1645, -8949, -2168, -2177, -2321], - [ - 0, -3307, -7040, -3842, -3472, -7041, -7042, -8355, -7080, -3048, -3136, -4049, -8566, -3637, -3037, -8890, - -3199, -427, -428, -721, -767, -932, -958, -966, -967, -4650, -1344, -1415, -8950, -1421, -1456, -8951, -1534, - -1658, -1942, -2125, -2174, -2269, -2375, -2410, -2501 - ], - [0, -2501, -3862, -2410, -8952, -2376, -2501, -8423, -5922], - [1, 3, 3697], - [0, 3698, 3699, 3700, 5], - [0, -6008, -668, -679, -1548, -1639, -1645, -2114, -2321], - [ - 0, -8953, -7202, -3044, -4036, -8566, -3037, -3200, -3046, -664, -778, -932, -1344, -1405, -1534, -1654, -1658, - -1660, -1942, -2125, -2210, -2376, -2388, -2389, -2410, -2476, -2477, -2481, -2485, -2501 - ], - [0, -2501, -3862, -2410, -8038, -7144, -8170, -8423, -5922, -6188, -2376, -520, -8954, -7172], - [1, 3, 3702], - [0, 3703, 3704, 7, 6], - [0, -8955, -8956, -8957, -1285, -1641], - [ - 0, -5834, -516, -633, -8958, -756, -769, -932, -8959, -8960, -1070, -1365, -8961, -1405, -8962, -8963, -6058, - -1939, -1978, -2105, -2125, -2177, -2322 - ], - [1, 3, 3706], - [0, 3707, 3708, 3709, 4], - [0, -1801, -8964, -8965], - [ - 0, -1501, -1788, -1415, -932, -2127, -1004, -1942, -2293, -8966, -958, -3234, -940, -967, -350, -8967, -934, - -351, -8968 - ], - [0, -6463, -4053, -6582, -1985, -8969, -4055, -8970, -6656], - [1, 3, 3711], - [0, 3712, 3713, 3714, 9], - [0, -5220, -823, -1311, -1548, -1549, -2798, -8971, -2387], - [0, -409, -3044, -3040, -3052, -4972, -8972, -2006, -2019, -8973, -2410, -3612], - [0, -1071, -4053, -4054, -2006, -2019, -3322, -8974, -3926, -8975, -3926, -8976, -8977], - [1, 3, 3716], - [0, 0, 3717, 3718, 6], - [0, -1654, -932, -1405, -589, -585, -966, -958, -968, -943, -963, -974], - [0, -1072, -1334, -8978, -3324], - [1, 3, 3720], - [0, 3721, 3722, 3723, 4], - [0, -668, -3606, -2267], - [0, -527, -528, -534, -545, -560, -932, -949, -1001, -1415, -1626, -2501], - [0, -8979, -8980, -2501, -3862], - [1, 3, 3725], - [0, 3726, 3727, 3728, 4], - [0, -1442], - [0, -627, -8981, -756, -1405, -2250, -2322, -2568], - [0, -2548, -8982, -8983], - [1, 3, 3730], - [0, 3731, 3732, 3733, 8], - [0, -1119, -1462, -8984], - [0, -8985, -5726, -1646, -1654, -1788, -1972, -8986, -2250], - [ - 0, -1076, -6656, -8801, -6351, -7421, -8987, -1650, -8988, -8989, -7371, -4055, -2059, -6234, -8987, -6693, - -6694, -2363, -8990, -5554, -8991, -6932, -1961 - ], - [1, 3, 3735], - [0, 124, 3736, 3737, 4], - [0, -3035, -3048, -3621, -3037, -664, -1077, -1405, -1654, -1788, -1942, -1948, -8992, -2379, -2410], - [0, -1076, -8801], - [1, 3, 3739], - [0, 3740, 3741, 3742, 4], - [0, -8993, -1077, -1693, -8994], - [0, -3048, -3623, -1654, -925, -2148, -615, -2517, -1980], - [0, -1961, -1076, -6656, -8801], - [1, 3, 3744], - [0, 0, 3745, 3746, 5], - [0, -1733], - [0, -1080, -8995], - [1, 3, 3748], - [0, 3749, 3750, 7, 11], - [0, -1650, -2125, -1370, -1119], - [0, -2319, -2250], - [1, 3, 3752], - [0, 3753, 0, 3754, 8], - [0, -2543, -2062], - [0, -1082, -3323, -6931], - [1, 3, 3756], - [0, 0, 3757, 3758, 5], - [0, -5834, -515, -516, -932, -1788, -2156, -2322], - [0, -5924, -6557, -8108, -6444, -7163, -8996], - [1, 3, 3760], - [0, 0, 3761, 3762, 4], - [ - 0, -21, -23, -32, -36, -3367, -40, -42, -86, -3307, -8997, -3326, -351, -3561, -8998, -8999, -9000, -9001, - -8219, -2716, -2717, -534, -932, -940, -1344, -9002, -1942, -2104, -2127, -2132, -2251, -2334, -2410, -2469, - -2816, -9003 - ], - [0, -1087, -7282, -9004], - [1, 3, 3764], - [0, 0, 3765, 3766, 11], - [0, -3748, -3268, -427, -428, -367, -589, -932, -943, -948, -958, -965, -968, -1344, -2391], - [0, -7314, -3578, -1334, -3844, -9005, -3445, -3161], - [1, 3, 3768], - [0, 0, 0, 3769, 8], - [0, -1087, -7282, -7724, -9006, -9007], - [1, 3, 3771], - [0, 3772, 3773, 3774, 6], - [0, -9008], - [0, -510, -1127, -9009, -1132, -1144, -1146, -2125, -2176], - [0, -2490, -1107], - [1, 3, 3776], - [0, 0, 3777, 7, 6], - [0, -2410, -3037], - [1, 3, 3779], - [0, 3780, 3781, 3782, 5], - [0, -668, -2562, -2523, -2557], - [0, -1127, -1131, -9010, -9011, -1542, -2425, -1144, -1151], - [0, -2557, -3970, -3161, -3095, -3577, -3994, -475], - [1, 3, 3784], - [0, 3785, 3786, 3787, 5], - [0, -668, -2218, -2562, -1548, -9012, -2557, -2425], - [0, -1693, -888, -664, -622, -1654, -2210, -932, -1650, -615, -1405, -719, -2211, -769, -1440, -665, -2070, -1657], - [ - 0, -2557, -475, -1168, -9013, -9014, -620, -478, -9015, -2162, -1521, -3184, -525, -9016, -2410, -711, -1409, - -9017, -2501, -932 - ], - [1, 3, 3789], - [0, 3790, 3791, 3792, 4], - [0, -1116, -1107, -2562, -727, -1548, -689, -9018, -9019, -2557], - [0, -888, -932, -1412, -1077, -9010, -9011, -958, -9020], - [0, -2557, -3970, -3100, -3994, -9021, -3095, -5574, -9022], - [1, 3, 3794], - [0, 0, 3795, 3796, 5], - [0, -3037, -932, -940, -967, -968, -1942, -2319, -2410], - [0, -9023, -9024, -7329], - [1, 3, 3798], - [0, 0, 3799, 3800, 10], - [0, -5325, -3037, -3899, -9025, -1942, -2200, -9026, -2410, -2469], - [0, -5925, -3262, -9027, -9028, -9029, -5112, -6917, -9030], - [1, 3, 3802], - [0, 0, 3803, 7, 11], - [ - 0, -21, -23, -40, -42, -3470, -3471, -7041, -3136, -3037, -427, -428, -9031, -9032, -528, -533, -534, -8167, - -932, -940, -948, -951, -958, -967, -969, -970, -972, -978, -1344, -9033, -1415, -1534, -1942, -2125, -2174, - -9034, -2410, -2501, -2503 - ], - [1, 3, 3805], - [0, 0, 3806, 7, 4], - [0, -9035, -9036, -9037, -9038, -1788], - [1, 3, 3808], - [0, 0, 115, 3809, 5], - [0, -7458, -5573, -9039, -1888, -9040, -9041, -9042, -729, -1805, -5149, -9043, -9044, -6555, -9045, -9046], - [1, 3, 3811], - [0, 0, 3812, 3813, 4], - [0, -3037, -826, -2541], - [0, -9047, -3972, -8428, -9048, -640, -5827, -1958, -2059], - [1, 3, 3815], - [0, 3816, 3817, 3818, 9], - [0, -9049, -1399], - [0, -3037, -519, -9050, -9051, -8877, -2384, -2541], - [0, -9052, -5827, -1961, -9048, -2265, -5554, -640, -2059, -6582, -9053, -8800, -9054, -7208, -9048], - [1, 3, 3820], - [0, 3821, 0, 3822, 4], - [0, -9055], - [0, -1101, -9052, -2410, -9056, -9057], - [1, 3, 3824], - [0, 0, 3825, 3826, 5], - [0, -3037, -427, -428, -7636, -932, -9058, -940, -967, -7638, -9059, -1942, -7639, -2402, -2410, -7640], - [0, -9060, -9061, -9062, -9063, -9064, -9065, -1102, -9066, -9067, -8995, -9068, -3966, -9069, -3694, -2410], - [1, 3, 3828], - [0, 3829, 3830, 3831, 8], - [0, -510, -1111, -1077, -719, -7731, -1046, -9070], - [0, -2359, -664, -1654, -2210, -932, -9071, -9072], - [0, -5889, -1103, -1105], - [1, 3, 3833], - [0, 3834, 3835, 3836, 5], - [0, -5504, -9073, -9074, -9075, -1849, -9076], - [ - 0, -528, -664, -9077, -708, -720, -796, -932, -9078, -951, -958, -964, -1654, -1658, -1788, -1972, -2174, -2210, - -2211, -9079, -2449 - ], - [0, -5889, -3322, -9080], - [1, 3, 3838], - [0, 0, 3839, 3840, 8], - [ - 0, -5870, -40, -9081, -9082, -9083, -4062, -351, -3561, -3266, -4785, -664, -932, -943, -958, -966, -968, -1471, - -1474, -1475, -1476, -1479, -1482, -1483, -1486, -1487, -1489, -7759, -1654, -2127, -3571, -2162, -2210, -2211 - ], - [0, -1105, -5248, -3100, -3095], - [1, 3, 3842], - [0, 3843, 3844, 7, 4], - [0, -1645, -9084, -9085], - [0, -3037, -928, -1623, -1650, -1942, -2125, -2319, -2386, -2402], - [1, 3, 3846], - [0, 3847, 125, 3848, 9], - [0, -1393], - [0, -1107, -8807, -6817, -1847, -9086, -7421, -3956, -9087], - [1, 3, 3850], - [0, 3851, 31, 7, 8], - [0, -9088, -1958], - [1, 3, 3853], - [0, 0, 3854, 3855, 4], - [0, -6593, -519, -674, -959, -1098, -9089, -8345, -1772, -1821, -1978, -2195, -2384, -2400, -2541], - [0, -1110, -1109, -9090, -3591, -3592, -1452, -932, -9091], - [1, 3, 3857], - [0, 3858, 3859, 3860, 8], - [0, -8413, -1026, -1353, -7408, -2218, -8803], - [0, -3037, -519, -589, -9092, -2331, -2384, -2541], - [ - 0, -9093, -5839, -7411, -7727, -6999, -7422, -7724, -5573, -9094, -7410, -1076, -1107, -9095, -9096, -7419, - -5572, -5912, -1645, -6809, -9097, -9098, -5574, -5064, -2368, -2444, -3590, -9087, -9099, -1961, -9100, -5889 - ], - [1, 3, 3862], - [0, 3863, 3864, 3865, 11], - [0, -812, -769, -9101, -9102], - [0, -510], - [0, -6524, -9103, -6527, -9104, -1355, -1112, -5845, -7450, -7378], - [1, 3, 3867], - [0, 3868, 3869, 3870, 4], - [0, -1729, -9105, -2387], - [0, -3037, -4201, -427, -428, -932, -9106, -958, -965, -968, -1942, -2402, -2410], - [ - 0, -9107, -9108, -9109, -9110, -9111, -9112, -3184, -4791, -1113, -9113, -9114, -8909, -9115, -4633, -9116, - -9117, -9118, -9119, -9120, -9121, -9122, -9123, -3445, -9124, -9125, -9126, -9127 - ], - [1, 3, 3872], - [0, 3873, 3874, 3875, 9], - [0, -3517, -9128], - [0, -50, -3037, -427, -428, -2758, -932, -934, -935, -958, -9129, -8846, -1722, -2892, -2410, -9130, -2469], - [0, -9131, -9132, -3939, -9133, -9134, -9135, -9136, -3690, -1115, -9137, -9138, -9139], - [1, 3, 3877], - [0, 3878, 3879, 3880, 8], - [0, -8846, -9140], - [ - 0, -9141, -3621, -9142, -9143, -3037, -9144, -6630, -4364, -4966, -4372, -3628, -9145, -9146, -652, -708, -767, - -999, -8869, -1166, -9147, -1446, -9148, -9149, -9150, -1654, -6455, -1705, -1722, -1783, -1805, -1827, -9151, - -1942, -1972, -2125, -2188, -2210, -2359, -2410, -2551 - ], - [0, -3939, -3690, -9152, -3323, -9153], - [1, 3, 3882], - [0, 3883, 3884, 3885, 5], - [0, -9154, -9155, -9156, -9157, -9158, -9159, -7006, -1495, -9160, -9161, -9162, -2400], - [ - 0, -9163, -5918, -357, -3268, -3617, -3037, -9164, -6279, -8852, -4372, -3626, -519, -523, -589, -615, -617, - -652, -9165, -9166, -9167, -825, -826, -1002, -1004, -1069, -5989, -1100, -1722, -1729, -1763, -1825, -9168, - -1866, -3653, -2062, -2105, -2210, -9169, -2331, -9170, -2364, -2392, -2410, -2541 - ], - [ - 0, -1334, -1342, -5735, -9052, -1116, -2435, -9171, -2105, -5493, -9172, -9173, -4213, -5149, -5150, -6826, - -6828, -9174, -9175, -9176, -9177, -523, -2291, -1729, -9128 - ], - [1, 3, 3887], - [0, 0, 3888, 3889, 4], - [ - 0, -1168, -2218, -2127, -784, -1821, -1889, -9178, -9179, -1783, -1978, -2281, -23, -518, -1930, -1330, -3572, - -40, -9180, -9181, -3326, -3266, -3561, -7189 - ], - [0, -9182, -3100, -4189, -3110], - [1, 3, 3891], - [0, 0, 3892, 3893, 4], - [0, -1362, -1650, -2125, -2319], - [0, -1076, -3551, -9183, -2122, -9184, -1986, -6324, -8980, -9185, -9186, -9187, -9188, -9189, -9190], - [1, 3, 3895], - [0, 0, 0, 3896, 8], - [0, -1122, -9191], - [1, 3, 3898], - [0, 33, 3899, 7, 5], - [0, -3035, -3621, -3037, -664, -1122, -1654, -2125, -2127, -2139, -2234, -9192, -2410], - [1, 3, 3901], - [0, 3902, 0, 7, 9], - [0, -9193, -2387], - [1, 3, 3904], - [0, 3905, 3906, 3907, 8], - [0, -1442, -8493, -9194, -9195], - [0, -9196, -8491, -711, -9197, -1016, -1075, -1202, -1646, -1654, -2362, -2460, -6234], - [ - 0, -9198, -9199, -710, -6582, -3671, -856, -7347, -9200, -9201, -1075, -9202, -3960, -3262, -1103, -5539, -3214, - -3259, -3756, -4182, -1599, -9203, -1838, -3215, -6747, -9204, -5142, -3110, -2362, -2548, -3672 - ], - [1, 3, 3909], - [0, 3910, 3911, 7, 9], - [0, -9205, -9206, -1551, -9073, -1696, -1969], - [0, -617, -9207, -1004, -9208, -1405, -1548, -1646, -1730, -9209], - [1, 3, 3913], - [0, 3914, 3915, 3916, 11], - [0, -1000, -1107, -1758, -1442, -1132, -1645, -808, -1351, -1048, -995, -9210, -9211, -9212], - [0, -9213, -2347, -9214, -1152, -9215, -1149, -1146], - [ - 0, -4107, -510, -687, -1644, -9216, -7641, -1548, -5119, -4004, -1989, -1754, -3844, -9217, -3970, -9218, -1410, - -3673 - ], - [1, 3, 3918], - [0, 3919, 3920, 3921, 5], - [0, -1323], - [0, -1127, -1132, -1140, -1134, -1136, -1144, -1146, -1148, -1165, -1138], - [0, -9219, -475, -3110, -3261, -9048], - [1, 3, 3923], - [0, 0, 3924, 49, 4], - [0, -1127, -1159, -1131, -1163, -664], - [1, 3, 3926], - [0, 3927, 3928, 3929, 9], - [0, -510, -633, -9220, -1107, -1548, -2114, -2491], - [0, -1127, -1132, -1134, -1144, -1654, -2210], - [0, -9219, -633, -1127], - [1, 3, 3931], - [0, 3932, 3933, 49, 6], - [0, -2177], - [0, -1127, -1129, -1134, -1144, -1146, -1150, -1159, -1542], - [1, 3, 3935], - [0, 3936, 207, 7, 4], - [0, -1758, -9221, -6007, -1381, -9212], - [1, 3, 3938], - [0, 3939, 3940, 3941, 5], - [0, -510, -506, -9222, -1366], - [0, -2541, -1127, -1753, -1132, -769, -1849, -9223, -2297, -1163, -1134, -1149], - [0, -9219, -5920, -5921, -9224, -7175, -6188, -9225, -6187, -5922, -9226], - [1, 3, 3943], - [0, 208, 3944, 3945, 10], - [0, -1127, -9071, -1144, -1143, -1146], - [0, -9219, -6688, -7416, -6694, -6693, -824, -6695, -7417, -2125], - [1, 3, 3947], - [0, 3948, 3949, 3950, 8], - [0, -510, -9227, -805, -9050, -2359, -2518], - [0, -1127, -1132, -1134, -1143, -1144, -1146, -1162], - [0, -9219, -9228, -3754, -2162, -775, -7644, -3277, -5553], - [1, 3, 3952], - [0, 3953, 126, 49, 4], - [0, -668, -2231], - [1, 3, 3955], - [0, 3956, 3957, 3958, 4], - [0, -1805, -510, -1676, -729, -5763, -2186, -2187, -7006, -9229], - [0, -1127, -1144, -1143, -1146], - [0, -9219, -3844, -729, -1334], - [1, 3, 3960], - [0, 3961, 3962, 49, 4], - [0, -668, -9230], - [0, -1127, -1132, -1134, -1143, -1144, -1146], - [1, 3, 3964], - [0, 3965, 127, 3966, 5], - [0, -668, -9231, -1548, -2271], - [0, -9219, -775, -7148, -9231], - [1, 3, 3968], - [0, 3969, 127, 3970, 8], - [0, -668, -683, -9232], - [0, -9219, -9233, -775, -5553, -3770, -3271, -1644, -6454], - [1, 3, 3972], - [0, 3973, 126, 3974, 4], - [0, -668, -1948, -1323], - [0, -9219, -3264, -9234, -1644, -6454, -7175], - [1, 3, 3976], - [0, 3977, 3978, 3979, 8], - [0, -668, -1356, -1826, -1877, -1948, -7691, -7692, -7690, -7687], - [0, -519, -825, -1127, -2541], - [0, -9219, -6454, -8642, -6527, -5094, -9235, -8640, -1644, -7715, -3839], - [1, 3, 3981], - [0, 3982, 207, 7, 5], - [0, -7446], - [1, 3, 3984], - [0, 3985, 3986, 49, 8], - [0, -668, -9236, -1452], - [0, -1127, -1143, -1146], - [1, 3, 3988], - [0, 3989, 3990, 49, 6], - [0, -1521, -510, -668, -1548], - [0, -1127, -1134, -1144, -9237, -1143, -1146], - [1, 3, 3992], - [0, 3993, 3994, 3995, 6], - [0, -9238], - [0, -1127, -1134, -1143, -1144, -2319], - [0, -9219, -1754, -4004, -4043], - [1, 3, 3997], - [0, 3998, 127, 3999, 8], - [0, -510, -668, -769, -805, -2518], - [0, -9219, -3754, -2162, -775, -7644, -3277, -5553], - [1, 3, 4001], - [0, 4002, 126, 49, 4], - [0, -668, -9232, -9239, -2416], - [1, 3, 4004], - [0, 4005, 4006, 4007, 6], - [0, -1088, -510, -1548, -2353], - [0, -1127, -1132, -1153, -2425, -1144, -1143, -1146], - [0, -9219, -2490, -1540], - [1, 3, 4009], - [0, 4010, 4011, 4012, 4], - [0, -668, -725, -739, -1877, -1980], - [0, -1127, -1131, -1132, -1134, -1138, -1144, -1146, -1151, -9240, -9241, -1153, -1159, -1542], - [0, -1127, -9219, -739, -6908, -5887, -1573], - [1, 3, 4014], - [0, 4015, 4016, 4017, 10], - [0, -668, -6019, -1877], - [0, -1127, -1131, -1132, -1134, -1144, -1146, -9240, -9242, -9241, -1153, -1159, -1542], - [0, -1127, -9219, -6019, -1105, -9243, -9244, -9245, -739, -6908, -5887, -1573], - [1, 3, 4019], - [0, 4020, 4021, 4022, 5], - [0, -668, -932], - [0, -190, -1127, -1132, -1162], - [0, -9219, -932, -7148, -5874, -9246], - [1, 3, 4024], - [0, 4025, 4026, 4027, 4], - [0, -9236, -1445, -1548, -9247], - [0, -1127, -1144, -1146, -1542, -2351], - [0, -9219, -1445, -8172, -7144], - [1, 3, 4029], - [0, 4030, 4031, 4032, 8], - [0, -769, -1446], - [0, -1127, -1134, -1146, -1152, -2778, -1542], - [0, -9219, -1127, -856, -4100, -1446, -7674], - [1, 3, 4034], - [0, 34, 4035, 4036, 11], - [ - 0, -86, -9248, -3307, -3470, -3471, -7041, -932, -943, -958, -966, -968, -974, -1003, -1127, -1131, -1149, - -1150, -1151, -1152, -1159, -1344, -1471, -1475, -1479, -1482, -1542, -1654, -2174 - ], - [0, -9219, -1471, -1127, -4004, -5119, -4043, -9249], - [1, 3, 4038], - [0, 4039, 4040, 209, 10], - [0, -9236, -1650], - [0, -664, -710, -1127, -1132, -9250, -1134, -1138, -1144, -9240, -9251, -9241, -9252, -1654, -2125], - [1, 3, 4042], - [0, 208, 4043, 4044, 10], - [0, -664, -1127, -9253, -1132, -1134, -1144, -1149, -1658, -2359, -2529], - [0, -6999, -1127, -9219, -9254], - [1, 3, 4046], - [0, 4047, 4048, 4049, 11], - [0, -2177, -9255, -2518], - [0, -664, -1132, -1144, -1149, -1156, -9256, -9257, -1542, -1654, -1972, -2351], - [0, -9219, -4127, -9258, -6721, -9259, -9260, -9261, -9262, -6324, -2489, -5886], - [1, 3, 4051], - [0, 0, 4052, 7, 10], - [0, -1127, -1131], - [1, 3, 4054], - [0, 0, 4055, 4056, 5], - [0, -1127, -1132, -1134, -1146, -2162, -2541], - [0, -9219, -775, -2162, -3754, -5553, -7644, -9263, -9264], - [1, 3, 4058], - [0, 4059, 4060, 4061, 4], - [0, -714, -1548, -1980, -9265, -9266, -5471], - [0, -1127, -1137, -1144, -1149, -1153, -9267, -1541, -1631, -8403], - [0, -9219, -1127, -5471, -4004, -1412, -1654, -1989, -9268], - [1, 3, 4063], - [0, 4064, 210, 4065, 11], - [0, -668, -1773, -2269], - [0, -9219, -5550, -3957, -7095, -8421, -7091, -6599, -1958, -687], - [1, 3, 4067], - [0, 27, 4068, 209, 9], - [0, -1127, -1144, -1654], - [1, 3, 4070], - [0, 4071, 4072, 4073, 11], - [0, -510, -9269, -9270, -2424, -9271], - [0, -932, -9272, -9273, -9274, -9275, -9276, -9277, -1127, -1132, -1157, -1654, -2125, -2194], - [0, -1127, -9219, -9278, -6527, -9279, -775, -9270, -7085], - [1, 3, 4075], - [0, 4076, 4077, 4078, 4], - [0, -668, -812, -1548, -1849], - [0, -1127, -1650, -2125, -1132, -1153, -9280, -1144], - [0, -9219, -9281, -3976, -3264, -775, -7175], - [1, 3, 4080], - [0, 4081, 4082, 4083, 5], - [0, -190, -427, -428, -668, -932, -940, -965, -967, -999, -1376, -1460, -1630, -1705, -1942, -2411, -2530], - [ - 0, -9282, -7080, -3330, -3048, -3049, -9283, -3621, -9143, -3037, -4372, -3628, -9284, -652, -769, -1077, -9285, - -9147, -1654, -2210, -2359, -2410 - ], - [0, -2410, -8170, -4144, -3939], - [1, 3, 4085], - [0, 0, 4086, 4087, 5], - [0, -9286, -4010, -367, -7043, -9287, -3136, -3037, -8477, -4203, -932, -1415, -1730, -1942, -2125, -2293, -2410], - [0, -1167, -3578, -3161, -3967, -1334, -3690, -3445], - [1, 3, 4089], - [0, 4090, 4091, 4092, 6], - [0, -9288, -9179, -9289, -2462], - [0, -932, -937, -966, -1001, -1650, -1654, -1788, -2125], - [0, -7641, -5827, -4219, -9218, -3673, -6342, -9290, -9291, -5921, -9292], - [1, 3, 4094], - [0, 4095, 72, 4096, 4], - [0, -1187, -9293, -1208, -1451, -1570, -1597, -8390, -2347], - [0, -7841, -1168, -475, -5175, -3501, -9294, -9295], - [1, 3, 4098], - [0, 4099, 4100, 4101, 4], - [0, -7850, -305, -994, -1199, -1243, -9296, -1267, -1650, -1875, -1959, -7881, -2125, -2177, -2330, -2460, -2462], - [0, -1178, -1654], - [0, -7841, -9297, -5550, -9298, -891, -1105], - [1, 3, 4103], - [0, 4104, 4105, 4106, 4], - [0, -518, -1236, -1889, -2464], - [0, -519, -1252, -1825, -2460, -2541], - [0, -7841, -518, -1889, -775, -5899, -9299, -3271, -9263, -9300], - [1, 3, 4108], - [0, 4109, 4110, 4111, 4], - [0, -3698, -479, -671, -1022, -9301, -1641, -1876, -2460], - [0, -664, -9302, -932, -1168, -1243, -1654, -1942], - [0, -7841, -5817, -5940, -8403], - [1, 3, 4113], - [0, 4114, 0, 4115, 4], - [0, -9303, -9304, -994, -1640, -1959, -1986, -9305, -2460, -2462, -2550], - [0, -7841, -5800, -8624, -6005], - [1, 3, 4117], - [0, 4118, 4119, 4120, 6], - [0, -2347, -2103, -1876, -2464], - [0, -2541, -1654, -2460, -1939, -23, -1252, -3352, -3362, -3373], - [0, -7841, -525, -3186, -4795, -8165, -6434, -9306, -9307, -4132, -9308, -9309, -3214, -3116], - [1, 3, 4122], - [0, 4123, 211, 4124, 5], - [0, -1236], - [0, -7841, -9310, -6472, -7154, -9311, -2443, -9312, -9313, -9314], - [1, 3, 4126], - [0, 4127, 4128, 4129, 4], - [0, -479, -622, -1022, -1376, -1876, -2347, -2460, -2487], - [0, -664, -994, -9315, -1220, -1231, -1452, -1654, -2125, -2210, -2211, -2261], - [0, -7841, -622], - [1, 3, 4131], - [0, 4132, 4133, 4134, 5], - [0, -633, -1266, -634, -2062, -2347], - [0, -1654, -664, -6398], - [0, -7841, -7419, -633], - [1, 3, 4136], - [0, 212, 4137, 4138, 4], - [0, -1654, -2460], - [0, -1168, -7841], - [1, 3, 4140], - [0, 4141, 72, 4142, 10], - [0, -9316, -1876, -9317, -2177, -2347], - [0, -1168, -6453, -2177, -7841, -9318, -9319, -9320, -9321], - [1, 3, 4144], - [0, 4145, 0, 4146, 8], - [0, -44, -9322, -753, -9323, -1876, -2347, -2460], - [0, -7841, -1168, -3324], - [1, 3, 4148], - [0, 4149, 4150, 36, 4], - [0, -2347, -1554], - [0, -1654, -2460, -2198], - [1, 3, 4152], - [0, 4153, 4154, 4155, 9], - [0, -9324, -1236, -2363], - [0, -519, -668, -824, -1040, -1100, -1168, -2460, -2541], - [0, -7841, -6656, -6999, -9325, -9254, -9326, -9327, -9328, -4123, -9329, -9330, -3324, -9331, -9332], - [1, 3, 4157], - [0, 4158, 114, 4159, 6], - [0, -1022, -1876, -2125, -2347, -2460], - [0, -7841, -6688, -6694, -6693], - [1, 3, 4161], - [0, 4162, 4163, 4164, 6], - [0, -683, -1876, -2347, -2464], - [0, -664, -9077, -756, -1004, -1022, -1168, -1187, -1243, -1248, -1252, -1654, -1788, -2460], - [0, -775, -6688, -1644, -9216, -683, -9333, -1229, -1184, -7841, -7419], - [1, 3, 4166], - [0, 4167, 213, 36, 10], - [0, -711, -1876, -2103, -2347, -2464], - [1, 3, 4169], - [0, 4170, 4171, 4172, 8], - [0, -1266, -2347, -2518], - [0, -756, -824, -1168, -1220, -1223, -1224, -1228, -1231, -1351, -9334, -1597, -1654, -2198], - [0, -1168, -7841, -9228, -3754, -2162, -775, -7644, -3277, -5553], - [1, 3, 4174], - [0, 4175, 4176, 36, 4], - [0, -2460, -2347, -6193], - [0, -1168, -1654, -2198, -1405, -7035, -2261, -1252, -1657], - [1, 3, 4178], - [0, 4179, 128, 4180, 4], - [0, -1554, -9335, -1876, -9336, -9337, -9338, -2347, -2460], - [0, -7841, -9048, -775, -6024, -1631, -9339], - [1, 3, 4182], - [0, 4183, 128, 4184, 9], - [0, -2347, -1266, -1376, -834], - [0, -7841, -3976, -9340, -9341, -3959, -3955, -9342], - [1, 3, 4186], - [0, 4187, 4188, 4189, 4], - [0, -2178, -729, -2353, -1022, -1597, -479, -2186, -2187, -9229], - [0, -1168, -1654, -2293, -1254, -710], - [0, -7419, -729, -1540, -9343, -3844], - [1, 3, 4191], - [0, 214, 4192, 4193, 4], - [0, -1168, -1415, -1942, -9078], - [0, -7841, -6351, -1168], - [1, 3, 4195], - [0, 4196, 4197, 4198, 4], - [0, -479, -9344, -1022, -1876, -2347], - [0, -1452, -1654, -2460], - [0, -7841, -775, -9344, -7148, -8170, -3277], - [1, 3, 4200], - [0, 4201, 4202, 4203, 4], - [0, -2460, -9231, -9345, -2347, -1022, -1876], - [0, -1788, -1654, -2210, -932, -2125, -2198, -756, -9346, -9347, -968, -943, -974, -942], - [0, -9231, -7841], - [1, 3, 4205], - [0, 4206, 4207, 4208, 4], - [0, -784, -6829, -1876, -1792, -2464], - [0, -2322, -2460, -2320, -1252], - [0, -784, -1644, -6059, -7192, -7193, -775, -7841, -1889], - [1, 3, 4210], - [0, 4211, 4212, 4213, 4], - [0, -2746, -1876, -2464], - [0, -2322, -2460, -2320], - [0, -7841, -1644, -775], - [1, 3, 4215], - [0, 4216, 4217, 4218, 5], - [0, -1876, -2347, -8899], - [0, -1452, -1980, -2198, -2460], - [0, -7841, -6582, -4055, -1168], - [1, 3, 4220], - [0, 4221, 4222, 4223, 9], - [0, -932, -1022, -1876], - [0, -1168, -1654, -2460, -2198, -1405, -528, -9348, -9349], - [0, -7841, -932, -1168, -8980, -9350, -7440, -6916, -707, -4144, -3756, -3214, -4107, -7148, -3862], - [1, 3, 4225], - [0, 4226, 4227, 4228, 8], - [0, -1460, -2460, -1015, -9351, -2347, -1876, -725, -9352], - [0, -1168, -1654, -2198, -1405, -1599], - [0, -7841, -6656, -9353, -8276, -1168, -3862], - [1, 3, 4230], - [0, 4231, 4232, 4233, 6], - [0, -2218, -1686, -1876, -9354, -9355], - [0, -2541, -519, -1168, -2460, -1825], - [0, -7841, -7724, -1353, -6656, -6999, -5572, -1645, -1107, -9095, -2460], - [1, 3, 4235], - [0, 215, 72, 4236, 5], - [0, -7841, -8395, -2239, -8423, -9356, -9357, -6917, -1168], - [1, 3, 4238], - [0, 214, 4239, 4240, 4], - [0, -1168, -1654, -2460, -2198, -1939, -933], - [0, -7841, -1168, -5841, -9358, -1847], - [1, 3, 4242], - [0, 4243, 27, 4244, 4], - [0, -9359, -2102, -9360, -2347], - [0, -6146, -3276, -4144, -1168, -7841, -1599, -3437, -3862, -9361, -3240, -2102], - [1, 3, 4246], - [0, 4247, 4248, 4249, 8], - [0, -668, -1266, -9362, -9363, -1792, -6370, -1877, -2347], - [0, -9364, -1849], - [0, -7841, -1082, -9362, -6656, -6999, -6931, -8576, -3844, -3323, -7764, -8901, -8902], - [1, 3, 4251], - [0, 4252, 4253, 4254, 4], - [0, -9365, -2125, -2462, -1266, -9366, -2062], - [0, -1654, -2460, -932, -1405, -9367, -1746, -1119, -1574, -9368, -9369], - [0, -5889, -5737, -5890, -9370, -8901, -8902, -8403, -9204, -3258, -1168, -7841, -1103, -841, -1105], - [1, 3, 4256], - [0, 4257, 4258, 4259, 5], - [0, -9371, -1022, -1548, -1876, -2109, -9372, -2460], - [0, -932, -1654, -1660, -2125, -2198], - [0, -1168, -5889, -9373, -7841, -9321], - [1, 3, 4261], - [0, 4262, 4263, 4264, 9], - [0, -479, -651, -1022, -1876, -9374, -2347], - [0, -1168, -1183, -1199, -1224, -1231, -1243, -7832, -1268, -1453, -1654, -9375, -2198], - [0, -6454, -7841, -6826], - [1, 3, 4266], - [0, 4267, 4268, 4269, 5], - [0, -1276, -1876, -2103, -2347], - [0, -2460, -1168, -1187, -9376, -9377, -9378, -1654, -9379, -2198], - [0, -7841, -1276], - [1, 3, 4271], - [0, 4272, 4273, 4274, 4], - [0, -6193, -1548, -1597, -2347], - [0, -664, -1168], - [0, -5147, -7841, -9380], - [1, 3, 4276], - [0, 4277, 4278, 4279, 10], - [0, -702, -2218, -615, -2461, -1792, -2062], - [0, -1654, -2460, -1405, -1266, -9348, -725, -9381, -2463], - [0, -7841, -3264, -8276], - [1, 3, 4281], - [0, 4282, 4283, 4284, 8], - [0, -2347, -1876, -1323], - [0, -1168, -1654, -2460, -1202], - [0, -3276, -1168, -7841, -9382, -3264, -9383, -6059, -6684, -1644], - [1, 3, 4286], - [0, 4287, 4288, 4289, 5], - [0, -4091, -9384, -7837, -9385, -9386, -9354, -9387, -9388, -9389], - [ - 0, -1168, -1415, -932, -2125, -9390, -4010, -1942, -367, -7043, -190, -720, -9391, -2410, -9392, -4007, -9393, - -2411, -959, -940, -967, -796, -740 - ], - [0, -7841, -1168, -3167, -3827], - [1, 3, 4291], - [0, 4292, 4293, 4294, 9], - [0, -2347, -9394, -9395], - [0, -1654, -1452, -1650, -2125, -2198, -2462, -1119, -908, -9396], - [0, -7841, -8978, -9397, -9398], - [1, 3, 4296], - [0, 4297, 4298, 4299, 11], - [0, -2347, -9394], - [0, -1452, -1654, -2198], - [0, -7841, -7724, -1645, -9353, -9399, -1199], - [1, 3, 4301], - [0, 4302, 4303, 36, 4], - [0, -510, -1548, -9400, -2347], - [0, -1112, -1168, -1183, -1231, -1224, -2150, -1453], - [1, 3, 4305], - [0, 4306, 4307, 4308, 4], - [0, -668, -1236, -1356, -1877, -1948], - [0, -519, -1357, -9401, -2460, -2541], - [0, -7841, -1356, -6527, -5094, -8634, -8635, -1644, -6684, -6454, -7715, -8640, -9235, -8642, -3839], - [1, 3, 4310], - [0, 4311, 4312, 36, 8], - [0, -479, -994, -1107, -1876, -2231, -2270, -2460, -2464], - [0, -1168, -1252, -1654, -2198, -2261], - [1, 3, 4314], - [0, 4315, 4316, 4317, 4], - [0, -506, -2347, -1022, -479, -9402, -1876, -9374, -930], - [0, -2541, -1344, -1654, -2460, -2198, -9403, -994, -86, -2174, -9404], - [0, -7841, -9405, -9406, -9407, -9408, -9409], - [1, 3, 4319], - [0, 4320, 4321, 4322, 4], - [0, -9410, -1876, -2347], - [0, -528, -756, -994, -1168, -1197, -1231, -1654, -1788, -2460], - [0, -7841, -9339, -775, -3264, -7920], - [1, 3, 4324], - [0, 4325, 4326, 4327, 9], - [0, -805, -1266, -9411, -1827, -2347, -2518], - [0, -664, -1654, -2251, -2541], - [0, -7841, -622, -1764, -1380], - [1, 3, 4329], - [0, 4330, 4331, 4332, 9], - [0, -1405, -9412, -1548, -1876, -2347, -2464], - [0, -1168, -1231, -1252, -9413, -1452, -1654, -2125, -2460], - [0, -7841, -4005, -1405, -9414], - [1, 3, 4334], - [0, 4335, 4336, 4337, 10], - [0, -1266, -1409, -2347], - [0, -1168, -2319, -1224], - [0, -1409, -7841, -5827, -7644], - [1, 3, 4339], - [0, 4340, 4341, 4342, 10], - [0, -506, -1412, -9415, -1876, -2347], - [0, -1168, -2460], - [0, -3440, -3161, -7841, -1412, -1989, -4043, -4679, -2319, -4873, -4004, -3634, -5119], - [1, 3, 4344], - [0, 4345, 4346, 4347, 4], - [0, -1445, -1876, -2347, -2350], - [0, -2261, -7423, -2460], - [0, -7841, -1445, -3214, -3217, -3756, -707, -5553, -5874, -7148, -3272, -7440, -7144], - [1, 3, 4349], - [0, 4350, 4351, 36, 8], - [0, -1548, -1645, -1876, -9345, -2347], - [0, -1168, -1452, -1654, -2198, -2460], - [1, 3, 4353], - [0, 4354, 4355, 4356, 5], - [0, -823, -831, -1440, -1876, -2347], - [0, -932, -937, -1168, -1654, -2198, -2460], - [0, -7841, -1168, -4055], - [1, 3, 4358], - [0, 4359, 4360, 4361, 5], - [0, -1521, -1792, -1876, -2103, -2347, -2464], - [0, -1452, -1654, -2198, -2460], - [0, -7841, -1168, -1521], - [1, 3, 4363], - [0, 4364, 4365, 4366, 8], - [0, -668, -812, -2460, -2353, -1022, -1550, -2062], - [0, -1654, -2210], - [0, -7841, -1540], - [1, 3, 4368], - [0, 4369, 4370, 4371, 5], - [0, -9416, -2114, -1022, -1639, -1048, -9417, -9418], - [0, -1654, -2210, -932, -1972, -9419, -965, -966, -958, -968, -943, -974], - [0, -7419, -1168, -4792, -6994, -9420], - [1, 3, 4373], - [0, 4374, 4375, 7, 10], - [0, -683, -1266, -1792, -2062, -9421, -2464], - [0, -664, -1654, -2460, -932, -1405, -1254, -9348, -1252, -9422, -9381, -9369], - [1, 3, 4377], - [0, 4378, 4379, 4380, 4], - [0, -7173, -2347, -1266], - [0, -664, -1168, -1654], - [0, -7841, -1644, -7175, -7192, -6454, -3264, -7173], - [1, 3, 4382], - [0, 4383, 211, 4384, 5], - [0, -805, -999, -1236, -1654, -2297], - [0, -7841, -1654, -4004, -3634, -5119, -3161, -4043, -4873, -3440, -1989, -4679, -2319], - [1, 3, 4386], - [0, 4387, 4388, 4389, 10], - [0, -9423, -1107, -1876], - [0, -664, -1168, -1654, -2460, -932, -1658, -9072], - [0, -1168, -7841, -9254, -9329], - [1, 3, 4391], - [0, 4392, 72, 4393, 5], - [0, -9424, -1631, -9425, -1876, -2347, -2464], - [0, -7841, -475, -5175, -4668, -9425], - [1, 3, 4395], - [0, 4396, 4397, 4398, 11], - [0, -714, -1168, -1753], - [0, -710, -1224, -1231, -8419, -1452, -2198], - [0, -1168, -1753, -9426, -3844, -9427, -8442, -2490, -7419, -7841], - [1, 3, 4400], - [0, 4401, 4402, 4403, 10], - [0, -1548, -2347, -1022, -479, -1750, -1876, -1737], - [0, -1168, -1654, -2460, -2198, -1237], - [0, -7841, -9258, -1168, -4127, -6863, -9428, -9429, -9262, -9430, -6721], - [1, 3, 4405], - [0, 4406, 4407, 4408, 4], - [0, -7837, -668, -9431], - [0, -519, -1825, -2410, -2460, -2541], - [0, -1168, -3862, -8112, -8113], - [1, 3, 4410], - [0, 4411, 4412, 36, 9], - [0, -668, -2347, -1022, -1876], - [0, -2541, -1168, -1654, -2198, -2346, -1405, -756, -994, -1657], - [1, 3, 4414], - [0, 4415, 4416, 4417, 9], - [0, -1022, -1876, -1907, -2464], - [0, -1788, -1654, -2210, -2460, -932, -1889, -1972, -1252], - [0, -7841, -1889, -9300, -775], - [1, 3, 4419], - [0, 4420, 4421, 4422, 4], - [0, -9263], - [0, -1654, -2987, -8065, -2460], - [0, -9432, -711, -8978, -812, -9433, -5558, -9399, -9321, -7841, -3264, -9434, -9435, -9353, -3214, -3277], - [1, 3, 4424], - [0, 4425, 4426, 4427, 5], - [0, -994, -1376, -1570], - [0, -507, -932, -9436, -1376, -1654, -1972, -2463], - [0, -7841, -1965], - [1, 3, 4429], - [0, 4430, 4431, 4432, 10], - [0, -1266, -1792, -2054, -2347, -2464], - [0, -1252], - [0, -7841, -2006, -4146, -6408, -8530, -3110, -3261, -6107, -9437, -9438, -7644], - [1, 3, 4434], - [0, 4435, 4436, 4437, 11], - [0, -994, -1750, -2105, -2347, -2460], - [0, -1168, -1262, -1183], - [0, -7841, -8908, -9439], - [1, 3, 4439], - [0, 0, 4440, 36, 10], - [0, -1168, -1252, -1597, -1654, -1942, -2198, -2460], - [1, 3, 4442], - [0, 4443, 4444, 4445, 9], - [0, -3037, -7837, -2551, -9440, -7622], - [0, -1654, -2460, -2198, -2379, -8255, -2410, -725], - [0, -7841, -8276], - [1, 3, 4447], - [0, 4448, 4449, 4450, 8], - [0, -1236, -9441, -9442, -9443, -9444, -2460, -9445], - [0, -519, -1825, -2541], - [0, -7841, -9446, -9447, -9448, -6131, -7175, -9318, -9319, -3324, -9449, -5142, -6342, -9450], - [1, 3, 4452], - [0, 215, 4453, 4454, 4], - [0, -994, -1199, -1245, -1654, -2460], - [0, -7841, -9446, -9448, -9318, -8276, -6342], - [1, 3, 4456], - [0, 4457, 4458, 4459, 5], - [0, -668, -742, -769, -805, -9451, -930, -1022, -1107, -4089, -9452, -1849, -1876, -2103, -2125, -2460], - [0, -1168, -1252, -9445], - [0, -7841, -3754, -2162, -775, -7644, -3277, -5553, -9453, -2231, -9454, -6915, -9455], - [1, 3, 4461], - [0, 4462, 4463, 4464, 6], - [0, -1863, -2269, -2103, -1876, -1552, -2464], - [0, -1168, -2162, -1654, -2460, -932, -2125, -9008, -1889, -7832, -1743, -518, -1238, -3572, -1252, -958, -934], - [0, -7841, -2162, -1168], - [1, 3, 4466], - [0, 4467, 0, 4468, 5], - [0, -510, -1266, -1792, -6370, -2246, -2347], - [0, -7841, -9456, -6656, -6999, -6931, -8576, -3844, -3323, -7764, -8901, -8902], - [1, 3, 4470], - [0, 4471, 4472, 4473, 5], - [0, -668, -1022, -1570, -1876, -2347, -2387], - [ - 0, -9457, -9392, -3136, -9458, -3037, -7836, -427, -428, -756, -932, -940, -959, -1168, -1415, -1942, -2375, - -2379, -2410, -2460 - ], - [0, -7841, -1168, -5550, -3957], - [1, 3, 4475], - [0, 4476, 216, 4477, 10], - [0, -9459, -668, -1022, -1236, -1273, -1948], - [0, -7841, -1044, -6656, -8799, -1573, -9460, -4676, -812, -6826, -6828], - [1, 3, 4479], - [0, 4480, 4481, 4482, 4], - [0, -9461, -9462, -461, -742, -775, -9463, -8888, -1119, -2231, -9195, -2347], - [ - 0, -620, -932, -937, -1001, -1168, -1187, -1212, -1226, -1228, -9464, -1405, -9381, -9465, -1654, -1792, -2125, - -2460 - ], - [0, -7841, -1168, -9466, -9455], - [1, 3, 4484], - [0, 4485, 216, 4486, 4], - [0, -23, -1236, -9467], - [0, -7841, -6817, -6694, -6693, -6688, -812, -7336, -4000, -1573, -5545, -3756, -3214, -3217, -3272, -987], - [1, 3, 4488], - [0, 4489, 213, 4490, 4], - [0, -9468, -1550, -1876, -2103, -2286, -2347, -2464], - [0, -1168, -2286, -775, -3277, -7841, -9321], - [1, 3, 4492], - [0, 4493, 4494, 4495, 4], - [0, -1876, -2302], - [0, -1107, -1168, -9469, -1654, -9470, -2460, -2541], - [ - 0, -7841, -3167, -3843, -3839, -7715, -9278, -9279, -9471, -3262, -775, -2162, -1521, -2286, -3271, -9339, - -3264, -9472, -9473, -9474, -1689 - ], - [1, 3, 4497], - [0, 4498, 4499, 4500, 5], - [0, -1552, -1876, -2303], - [0, -21, -23, -40, -43, -519, -756, -767, -825, -1788, -1942, -2460, -2541], - [0, -7841, -1644, -3839, -2303], - [1, 3, 4502], - [0, 4503, 4504, 4505, 4], - [0, -674, -1022, -1876, -2460], - [0, -1045, -1168, -1217, -1654, -1978, -2187, -2210], - [0, -7841, -3839, -3167, -9278], - [1, 3, 4507], - [0, 4508, 4509, 4510, 9], - [0, -1236, -1548], - [0, -519, -1196, -2460, -2541], - [0, -7841, -1548, -2424, -3110, -7644, -3264, -7650, -9475, -9438], - [1, 3, 4512], - [0, 4513, 4514, 4515, 4], - [0, -479, -1022, -2346, -2460], - [0, -9392, -3037, -9476, -7837, -8890, -9457, -2125, -1168, -1231, -2410], - [0, -7841, -2410, -3214, -9477], - [1, 3, 4517], - [0, 4518, 4519, 4520, 9], - [0, -9457, -479, -1022, -1597, -1876, -2346], - [0, -9478, -3037, -9476, -1168, -1187, -1261, -2388, -2410], - [0, -1168, -2410, -3862, -3018, -7841, -7419, -2388, -8170, -7148], - [1, 3, 4522], - [0, 4523, 4524, 4525, 4], - [0, -2460, -2347, -2462, -2231, -479, -1876], - [0, -1168, -2125, -9479, -2410, -3037, -1187, -1208, -7837, -1237, -1632, -7836, -7838, -1252, -9480], - [0, -2410, -7841, -9481, -3018, -5058, -7644, -3116, -3185], - [1, 3, 4527], - [0, 4528, 4529, 36, 9], - [0, -9416, -1403, -2347, -2416, -9482, -9417, -2155, -1016, -9483, -2464], - [0, -2322, -2460, -932, -1942, -9484, -2341, -1938, -9485, -945, -978, -940, -967, -9486], - [1, 3, 4531], - [0, 4532, 122, 4533, 5], - [0, -1266, -1792, -9487], - [0, -7441, -775, -7841], - [1, 3, 4535], - [0, 4536, 4537, 4538, 5], - [0, -1107, -1187, -1876, -2347, -2460], - [0, -994, -2462, -1168, -1224, -1231, -1262, -1210, -1184, -1245, -1226, -1452], - [0, -7841, -9281, -1264], - [1, 3, 4540], - [0, 4541, 4542, 4543, 4], - [0, -1107, -1015, -9488, -1212, -2347, -2462, -1187, -994, -1876], - [0, -1788, -1168, -1654, -2460, -756, -9489, -1231, -1197, -1243, -528, -9490], - [0, -7841, -3264, -9408, -775, -7175, -9048], - [1, 3, 4545], - [0, 4546, 4547, 7, 6], - [ - 0, -9491, -9492, -9493, -668, -808, -1022, -9416, -9417, -9494, -9495, -9496, -1570, -1646, -4091, -1792, -2103, - -2347, -2460 - ], - [0, -641, -756, -994, -1405, -9381, -1452, -9497, -1654, -2125, -2198], - [1, 3, 4549], - [0, 4550, 4551, 4552, 8], - [0, -1986, -2346, -2347, -2460, -2462, -2555, -9498], - [0, -1654, -2250, -2330], - [0, -1168, -7841, -9498, -9499, -5408, -8027, -2460, -9500], - [1, 3, 4554], - [0, 4555, 4556, 4557, 4], - [0, -479, -9501, -679, -1022, -1108, -1792, -1850, -1876, -2062, -2218, -2460, -9445], - [0, -756, -1405, -1654, -1657, -1972, -2125, -2198, -2210, -2261, -2269, -2541], - [0, -1168, -2490, -7841], - [1, 3, 4559], - [0, 4560, 0, 4561, 4], - [0, -1626, -2460, -2346, -2501, -1266], - [0, -7841, -2501], - [1, 3, 4563], - [0, 4564, 4565, 4566, 8], - [0, -729, -9229, -1266, -1402, -1750, -1805, -9502, -2186, -2187, -2347, -2353, -2490], - [0, -1654, -2293], - [0, -7841, -9343, -729, -1540], - [1, 3, 4568], - [0, 4569, 4570, 4571, 5], - [0, -1100, -1236, -2460, -9498], - [0, -519, -7342, -9431, -1168, -1825, -9503, -9445, -2541], - [0, -7841, -5408, -5409, -501, -6454, -724, -6656], - [1, 3, 4573], - [0, 4574, 4575, 4576, 5], - [0, -9271, -510, -2460, -2347, -1645, -2424, -9270, -9269], - [0, -1168, -1654, -932, -2125, -9273, -9504, -1195, -1632, -2461, -1215, -9505, -9274, -9275, -9272], - [0, -7841, -9270, -9278, -9279], - [1, 3, 4578], - [0, 4579, 4580, 4581, 11], - [0, -883], - [0, -519, -1825, -2384, -2541], - [0, -3994, -3673, -9506, -6826, -9507, -8799, -2265, -640], - [1, 3, 4583], - [0, 4584, 4585, 4586, 4], - [ - 0, -9508, -9509, -9510, -9511, -2093, -9512, -9513, -2095, -4655, -4994, -9514, -9515, -9516, -9517, -9518, - -9519, -9520, -9521, -9522, -9523, -9524, -9525, -9526, -9527, -9528, -9529, -9530, -5707, -9531, -9532, -9533, - -9534, -9535, -9536, -9537, -6368, -2297, -9538, -9539 - ], - [0, -350, -4062, -351, -3266, -827, -9540, -2127, -2250, -2322, -2331], - [0, -1599, -856, -3671, -4328, -5887, -7440, -9541, -8170, -7148, -8169, -1274, -2093, -2427], - [1, 3, 4588], - [0, 0, 4589, 4590, 10], - [0, -9542, -9543, -1127, -7887, -1136, -1137, -1144, -9544, -1148, -1149, -1153, -9545, -9546], - [0, -2363, -9547], - [1, 3, 4592], - [0, 4593, 4594, 4595, 8], - [0, -1646, -9548, -2231, -2525, -2416], - [ - 0, -3983, -521, -534, -567, -589, -664, -9549, -726, -838, -879, -6897, -6867, -932, -940, -952, -953, -1077, - -1127, -5974, -1132, -1134, -1136, -1137, -1138, -9550, -1148, -1149, -1162, -7848, -1344, -6785, -1534, -1654, - -1661, -1689, -1788, -1942, -2177, -2210, -2410, -2424, -2501, -2505 - ], - [0, -1276, -1689, -3110, -3264], - [1, 3, 4597], - [0, 4598, 4599, 155, 5], - [ - 0, -1435, -9551, -619, -6508, -1309, -9552, -9553, -9554, -9555, -5400, -9556, -9557, -9558, -9559, -9560, - -9561, -9562, -9563 - ], - [0, -1510, -707, -1367, -9564, -9565, -1276], - [1, 3, 4601], - [0, 4602, 4603, 4604, 6], - [0, -6594, -3037, -4204, -3223, -6587, -2531], - [0, -3665, -7197, -2410, -2469, -4375], - [0, -1449, -5092, -4865, -3586, -9566, -3578, -3098, -3264, -5388, -5387], - [1, 3, 4606], - [0, 0, 14, 4607, 4], - [ - 0, -8047, -7440, -6659, -6543, -5573, -9567, -687, -3958, -4378, -1958, -502, -4377, -6748, -7303, -9568, -1646, - -1813 - ], - [1, 3, 4609], - [0, 0, 4610, 4611, 4], - [0, -2832, -5834, -8084, -9569, -8096, -516, -753, -5835, -932, -9570, -1365, -1777, -1788, -2156, -2322], - [0, -6981, -8619, -9571, -9572, -3582, -5269, -753, -6948], - [1, 3, 4613], - [0, 0, 4614, 7, 5], - [0, -1452, -1453, -1548, -2322], - [1, 3, 4616], - [0, 4617, 4618, 4619, 10], - [0, -9573], - [0, -2832, -5834, -8084, -9574, -9575, -8096, -515, -516, -932, -993, -1365, -1659, -1777, -1788, -2156, -2322], - [0, -8047, -9576, -9577, -9578, -9579, -8047, -7153, -9580, -3214, -3217], - [1, 3, 4621], - [0, 4622, 4623, 4624, 8], - [0, -5334, -4231, -9581, -9582, -2768, -2771, -1619, -1839, -9583, -2429, -5358, -9584, -9585], - [0, -3037, -9586, -652, -1290, -1294, -1618, -1942, -9587, -2094, -2100, -2399, -2410, -7669, -2541], - [0, -9588, -9589, -3264, -9590, -3590, -2444, -1838, -9591], - [1, 3, 4626], - [0, 4627, 4628, 4629, 4], - [0, -5334, -9581, -9583], - [ - 0, -3037, -9586, -9592, -652, -823, -2586, -1290, -1294, -1318, -9593, -1942, -2094, -2100, -2399, -2410, -7669, - -2429, -2541 - ], - [0, -6688, -9588, -9589, -3264, -9594, -7723, -3590, -2444, -9590, -2544], - [1, 3, 4631], - [0, 4632, 4633, 4634, 9], - [0, -5334, -4231, -9595, -2742, -5981, -9596, -9597, -4263, -1292, -2769, -2788, -1968, -2235, -2429, -9585], - [0, -3037, -652, -1294, -1942, -2094, -2100, -2399, -2410, -7669, -2541], - [0, -775, -9588, -9589, -3264, -5572, -3581, -5101, -9598, -3585, -6750, -9590, -3590, -2444], - [1, 3, 4636], - [0, 4637, 4638, 4639, 5], - [0, -426, -8316, -5334, -2742, -9596, -9599, -9600, -2769, -9601, -9602, -9603, -1968, -2235, -2276, -9583, -9585], - [ - 0, -3037, -6426, -652, -9604, -5342, -989, -1294, -1618, -5204, -1619, -5205, -1942, -2094, -2100, -2399, -2410, - -2429, -2541 - ], - [0, -5888, -3217, -5210, -9588, -9589, -3264, -3214, -4146, -4147, -2083, -6408, -9590, -3590, -2444], - [1, 3, 4641], - [0, 4642, 217, 4643, 6], - [0, -5334, -4231, -9605, -2742, -2769, -2771, -1619, -1968, -2235, -2268, -9585], - [0, -9588, -9589, -3264, -6233, -6231, -9606, -9590, -3590, -2444], - [1, 3, 4645], - [0, 4646, 4647, 4648, 4], - [0, -426, -5334, -4231, -2742, -9596, -9600, -2769, -9601, -9602, -9603, -1968, -2235, -2276, -9583, -6648], - [0, -3037, -3040, -3052, -652, -928, -5343, -1294, -1942, -2006, -2019, -2094, -2100, -9607, -2399, -2410, -2541], - [0, -9588, -9589, -3264, -1940, -2006, -9608, -2299, -9590, -3590, -2444, -2476], - [1, 3, 4650], - [0, 87, 0, 4651, 4], - [0, -5398, -9589, -9588, -3264, -6233, -2265, -6231, -5554, -9590, -2444, -3590], - [1, 3, 4653], - [0, 4654, 217, 4655, 4], - [0, -5334, -4231, -2766, -9609], - [0, -9590, -9589, -9588, -2444, -3590, -3264, -2265, -5398, -5554, -4308], - [1, 3, 4657], - [0, 4658, 4659, 4660, 4], - [0, -5334, -2742, -2767, -1968, -2235], - [0, -3037, -6426, -652, -9604, -9610, -5342, -1942, -2094, -2100, -9611, -2384, -2399, -2410, -2541], - [0, -5092, -6311, -9588, -9589, -3264, -9612, -2083, -9590, -3590, -2444, -9613, -9614], - [1, 3, 4662], - [0, 4663, 4664, 7, 8], - [0, -2487, -1276], - [0, -1788, -1654, -932, -2125, -2293, -963], - [1, 3, 4666], - [0, 0, 4667, 4668, 5], - [0, -6774, -1127, -1132, -1162, -6114, -1405, -1451, -1548, -6186, -1991, -2081, -9615, -2111, -9616], - [0, -2265, -3223, -8034, -3264, -6422, -6420, -4112], - [1, 3, 4670], - [0, 4671, 4672, 7, 4], - [0, -1696], - [0, -2195, -2319], - [1, 3, 4674], - [0, 0, 0, 4675, 4], - [ - 0, -1004, -7107, -5146, -3445, -9617, -9618, -9619, -9620, -9621, -9622, -9623, -9624, -9625, -9626, -9627, - -9628, -9629, -9630 - ], - [1, 3, 4677], - [0, 0, 4678, 7, 9], - [0, -2303, -2125, -1942, -656, -2699, -23, -9631, -3408], - [1, 3, 4680], - [0, 0, 4681, 7, 11], - [0, -43, -40, -6056, -6035, -527, -21, -23, -528, -533, -856, -932, -956, -958, -959, -1415, -1417], - [1, 3, 4683], - [0, 4684, 4685, 4686, 5], - [ - 0, -9632, -615, -9633, -9634, -9635, -9636, -9637, -9638, -9639, -9640, -1442, -9641, -1639, -9642, -1666, - -1667, -1783, -1863, -6467, -2269, -2350, -9643, -9644 - ], - [ - 0, -9645, -5767, -3035, -4035, -3660, -4036, -3621, -3037, -9144, -4372, -9646, -652, -664, -674, -3542, -932, - -9647, -9648, -1344, -1534, -1654, -2210, -2379, -2410 - ], - [0, -3258, -3260, -7643, -3161, -1302], - [1, 3, 4688], - [0, 4689, 4690, 7, 8], - [0, -9649], - [ - 0, -615, -633, -634, -725, -932, -1127, -1130, -1131, -1146, -1148, -1149, -1152, -9650, -1159, -1276, -1754, - -2148, -9651, -2199, -2210, -7035, -9652, -2416 - ], - [1, 3, 4692], - [0, 0, 4693, 4694, 4], - [ - 0, -775, -824, -1107, -8318, -1449, -1654, -932, -1548, -2127, -2198, -2334, -683, -693, -719, -1276, -2410, - -1339, -9653, -3621, -7694, -9654, -5758, -9655, -9656, -966, -4062, -9657, -958, -968, -943, -350, -428, -351, - -427 - ], - [0, -4131, -4132], - [1, 3, 4696], - [0, 218, 0, 7, 4], - [1, 3, 4698], - [0, 39, 0, 4699, 5], - [0, -1306, -8938], - [1, 3, 4701], - [0, 0, 219, 4702, 4], - [0, -8113], - [1, 3, 4704], - [0, 4705, 4706, 4707, 5], - [0, -1758, -1650], - [0, -2416, -1449, -9658, -2125], - [0, -1689, -3110], - [1, 3, 4709], - [0, 4710, 4711, 41, 10], - [0, -2029], - [ - 0, -23, -26, -40, -41, -43, -664, -756, -761, -932, -1654, -1788, -1939, -1967, -2006, -2125, -2127, -2128, - -2131, -2137, -2140 - ], - [1, 3, 4713], - [0, 4714, 4715, 7, 8], - [0, -668, -2177, -1077, -719, -9659, -1982, -2234], - [ - 0, -1415, -932, -2125, -1753, -2375, -2379, -2402, -2410, -3136, -3037, -3198, -3199, -3048, -959, -958, -9660, - -428, -9661, -427 - ], - [1, 3, 4717], - [0, 0, 4718, 4719, 5], - [ - 0, -9662, -4835, -3036, -4647, -3037, -8200, -3664, -502, -9663, -9664, -928, -932, -1107, -1449, -1683, -1763, - -9665, -8436, -1942, -2910, -2410, -2426, -9666, -2469, -9667, -2531, -2564 - ], - [0, -1313, -3578, -3994, -1334, -9668, -3161, -3122, -9669, -9670, -9671, -9672, -9060, -7314, -5819, -3967], - [1, 3, 4721], - [0, 4722, 29, 4723, 6], - [0, -1582], - [0, -5889, -1105, -7660, -7661], - [1, 3, 4725], - [0, 4726, 86, 4727, 6], - [0, -725, -1650, -2125, -2177, -2433, -2518, -9673], - [0, -9674, -9675, -9676, -9677, -1764], - [1, 3, 4729], - [0, 4730, 4731, 4732, 6], - [0, -6585, -1333], - [ - 0, -86, -3307, -3615, -190, -4066, -350, -351, -3266, -3267, -9678, -4862, -9679, -3037, -5286, -2970, -3664, - -932, -967, -4814, -977, -1110, -1323, -1344, -7317, -1449, -1534, -1772, -1874, -1942, -2910, -2127, -2214, - -2379, -2410, -2411, -2469 - ], - [0, -1317, -3264, -5092, -3215, -1333, -9680], - [1, 3, 4734], - [0, 0, 4735, 4736, 9], - [0, -3037, -652, -2586, -1288, -1292, -1942, -2094, -2100, -2399, -2410, -2426, -2541], - [0, -9681, -9682, -3264, -6557, -7153, -6818, -5387, -5388], - [1, 3, 4738], - [0, 4739, 4740, 4741, 4], - [0, -9683], - [0, -7196, -932, -1110], - [0, -5835, -3264], - [1, 3, 4743], - [0, 0, 4744, 4745, 5], - [ - 0, -86, -3307, -3268, -9684, -3136, -3037, -589, -3223, -932, -940, -958, -9685, -1297, -1344, -1942, -2251, - -2375, -2386, -2392, -2410, -2411 - ], - [0, -3264, -9686, -9687, -9688, -3223, -9689, -9690], - [1, 3, 4747], - [0, 0, 4748, 4749, 11], - [0, -9691, -652, -756, -2127, -2415], - [0, -3264, -5559, -6422, -9692, -6420, -3223], - [1, 3, 4751], - [0, 4752, 4753, 4754, 5], - [0, -1839, -1324], - [ - 0, -824, -1415, -1344, -1623, -774, -932, -825, -2501, -920, -1936, -1942, -767, -21, -533, -1276, -23, -1534, - -1771, -9693, -86, -2251, -9694, -40, -1331, -958, -940, -3307, -7166 - ], - [0, -2501, -3264, -5932], - [1, 3, 4756], - [0, 4757, 4758, 4759, 5], - [0, -6512, -683, -719, -1297, -6560, -9695, -2416], - [0, -1127, -1130, -1148, -1152, -1860, -1989], - [ - 0, -687, -6454, -9696, -775, -3264, -9383, -3214, -9234, -6059, -6684, -1644, -7175, -7176, -7858, -9697, -1838, - -3215, -9698, -9216 - ], - [1, 3, 4761], - [0, 4762, 4763, 4764, 4], - [0, -6512, -683, -719, -3223, -6560, -9695, -2334], - [ - 0, -86, -5121, -350, -4062, -351, -3266, -9699, -9700, -932, -943, -1344, -1392, -1415, -1419, -1534, -2127, - -9701, -2466 - ], - [ - 0, -687, -6454, -9696, -775, -3264, -9383, -3214, -9234, -6059, -6684, -1644, -7175, -7176, -7858, -9697, -1838, - -3215, -2334, -9698, -9216 - ], - [1, 3, 4766], - [0, 4767, 4768, 4769, 9], - [0, -1860], - [0, -2322, -2250, -2320, -1860], - [0, -3264, -6528, -1858, -1859, -3967], - [1, 3, 4771], - [0, 4772, 4773, 4774, 4], - [0, -6585, -1317, -2039, -2276], - [ - 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -3267, -9678, -3268, -3037, -3040, -3052, -5286, -2970, - -3664, -589, -932, -967, -4814, -977, -1110, -1344, -1534, -1874, -1940, -2910, -2006, -2019, -2127, -2214, - -2379, -2410, -2411, -2469 - ], - [0, -1326, -3264, -2006, -3215, -5092], - [1, 3, 4776], - [0, 0, 4777, 4778, 5], - [0, -519, -674, -2541], - [0, -3264, -5177, -9702, -9566, -4108, -5388, -5387, -9703, -9704], - [1, 3, 4780], - [0, 0, 4781, 4782, 10], - [ - 0, -1344, -1392, -1471, -2387, -932, -2125, -2127, -1942, -756, -1870, -2410, -1771, -1413, -1952, -1481, -9705, - -1476, -9706, -8382, -7818, -1491, -9707, -9708, -1475, -9709, -3469, -9710 - ], - [0, -9711, -9712, -659, -3264, -5092, -6527, -9472, -3839], - [1, 3, 4784], - [0, 4785, 0, 4786, 5], - [0, -9713, -823, -861, -1333, -9714], - [0, -3264, -3966, -5554, -9715, -9716, -6473], - [1, 3, 4788], - [0, 4789, 0, 4790, 5], - [0, -9717, -9718, -469, -1107, -1496, -1646, -1966, -2177], - [0, -3264, -7148, -2451, -1330], - [1, 3, 4792], - [0, 4793, 4794, 4795, 9], - [0, -9719, -1324, -1548, -1949, -2321], - [ - 0, -86, -3307, -3037, -767, -774, -778, -796, -9071, -932, -7466, -1322, -1344, -1415, -1534, -1643, -1771, - -1942, -1974, -9720, -2000, -2125, -2251, -2275, -2410, -2501, -2503, -9721 - ], - [0, -2501, -3862, -3264, -1331], - [1, 3, 4797], - [0, 4798, 4799, 4800, 4], - [0, -9722, -719, -755, -1936], - [ - 0, -190, -3748, -7155, -3621, -3037, -9723, -652, -784, -932, -6835, -958, -8339, -9724, -1001, -1110, -1654, - -1889, -1979, -9695, -2125, -9725, -2303, -2334, -2410, -2411, -9487 - ], - [0, -1936, -9726, -3264, -9727, -6684], - [1, 3, 4802], - [0, 4803, 4804, 4805, 5], - [0, -7713, -6585, -6584, -3223], - [0, -190, -3037, -3664, -932, -940, -965, -978, -1110, -1942, -2386, -2410, -2411, -2469], - [0, -3264, -3215, -8027, -6597, -5092, -9728, -3484, -9297], - [1, 3, 4807], - [0, 4808, 129, 4809, 6], - [0, -828, -1370, -8441, -2255, -9729], - [0, -1334, -6324], - [1, 3, 4811], - [0, 4812, 4813, 7, 10], - [0, -996, -9730, -1063], - [0, -2531, -1788, -9731, -510, -1654, -2177, -1003, -2228, -725, -516, -2229], - [1, 3, 4815], - [0, 4816, 4817, 4818, 5], - [0, -9732, -812], - [0, -3198, -3136, -3037, -511, -1415, -2375, -2410, -1971, -9056], - [0, -1334, -1971, -8484, -9733], - [1, 3, 4820], - [0, 4821, 4822, 4823, 4], - [0, -4623, -812, -1336, -1393, -1396, -1639], - [ - 0, -86, -3307, -190, -3198, -3330, -3617, -9734, -3136, -4036, -3037, -4203, -4204, -617, -932, -940, -967, - -1004, -1098, -1110, -1344, -1415, -1534, -9735, -1805, -4916, -8436, -1942, -2293, -2375, -2410, -2411, -2531 - ], - [0, -7302, -1971, -5401, -1334, -1342, -729, -1004, -1030, -3548, -9736, -632, -1168, -1137, -2512, -2531, -754], - [1, 3, 4825], - [0, 4826, 4827, 4828, 4], - [0, -1297, -1640, -668, -9737, -9738, -1810, -1646, -2436, -579, -1336, -1888, -9739, -1319], - [0, -9740, -2319, -932, -1004, -2105, -9741], - [0, -687, -3957, -5142, -1334, -1342, -1339, -9742, -3844], - [1, 3, 4830], - [0, 0, 4831, 4832, 4], - [ - 0, -2391, -1344, -1654, -932, -2198, -2379, -1942, -190, -721, -2410, -3037, -1534, -7820, -3621, -9743, -86, - -2251, -9744, -2411, -964, -940, -967, -3307 - ], - [0, -1334, -729, -3100, -9745, -1004], - [1, 3, 4834], - [0, 0, 4835, 4836, 8], - [0, -3048, -3136, -9746, -427, -428, -932, -935, -958, -1077, -1415, -1605, -2375, -2378, -2379, -2410], - [0, -3966, -1334, -7827, -9747, -9748, -9745, -5563], - [1, 3, 4838], - [0, 0, 0, 4839, 4], - [0, -1342, -9749], - [1, 3, 4841], - [0, 4842, 4843, 4844, 4], - [0, -812, -9732], - [0, -1415, -1971, -2375, -9056, -2410, -3136, -3037, -512, -3198, -511, -9750], - [0, -1342, -1971, -8484, -9733], - [1, 3, 4846], - [0, 0, 0, 4847, 10], - [0, -5889, -3322, -1939], - [1, 3, 4849], - [0, 4850, 31, 4851, 11], - [0, -6829, -6372, -2347], - [0, -5827, -1334, -3443, -2105, -9052, -9751, -9752, -6693, -9753, -9024], - [1, 3, 4853], - [0, 0, 4854, 4855, 5], - [0, -3470, -3842, -3471, -741, -932, -940, -9754, -1942, -2127, -2174, -2322], - [0, -9755, -5553, -775, -656], - [1, 3, 4857], - [0, 0, 84, 4858, 5], - [0, -9756, -9757, -9758, -2424, -9759, -9760, -9761, -9762, -1878, -9763, -9764, -9765, -9766, -9767], - [1, 3, 4860], - [0, 4861, 4862, 4863, 4], - [0, -9768, -812, -9769, -9770, -9771, -1689], - [ - 0, -510, -744, -932, -940, -943, -958, -966, -967, -968, -974, -1004, -1344, -1534, -1654, -1788, -1942, -2198, - -2210, -2548, -2293 - ], - [0, -3110, -1348, -9772], - [1, 3, 4865], - [0, 39, 4866, 4867, 5], - [ - 0, -9773, -23, -3395, -3204, -38, -39, -40, -41, -43, -3326, -350, -351, -3266, -3037, -427, -428, -3664, -571, - -756, -757, -932, -934, -940, -948, -958, -9774, -1344, -9775, -9776, -9777, -9778, -9779, -1534, -1942, -2125, - -2127, -2210, -2410, -2469 - ], - [0, -1349, -9780, -1348, -9781, -9782, -9772, -9783, -9784], - [1, 3, 4869], - [0, 0, 4870, 4871, 4], - [0, -190, -3267, -3470, -3471, -427, -428, -932, -940, -967, -1110, -1942, -2127, -2132, -2174, -2410], - [0, -1349, -9785, -3445, -3862], - [1, 3, 4873], - [0, 4874, 4875, 4876, 4], - [0, -9786], - [ - 0, -1788, -510, -9787, -9788, -1654, -9789, -932, -2177, -2105, -9790, -2410, -3037, -1002, -2884, -2832, -3748, - -5029 - ], - [0, -9788, -5845, -9791, -9792], - [1, 3, 4878], - [0, 4879, 4880, 4881, 5], - [0, -9793], - [0, -527, -533, -559, -562, -756, -932, -934, -958, -1417], - [0, -1971, -9794, -9795, -1415, -4215], - [1, 3, 4883], - [0, 0, 4884, 4885, 4], - [0, -21, -23, -40, -427, -812, -932, -9796, -958, -1650, -9797, -2125, -9798, -2319, -2359, -2379, -2410], - [0, -1353, -9799, -9100, -1777, -8199, -9800, -7724, -5570, -5569, -9094, -1107, -9801, -9802], - [1, 3, 4887], - [0, 0, 4888, 4889, 6], - [0, -652, -1107, -2391, -2379, -2402, -2410, -3036, -3037, -2581], - [ - 0, -6527, -8799, -9803, -9804, -6730, -7710, -5316, -8653, -8740, -8642, -8715, -9805, -8654, -8685, -9235, - -8761, -7715, -8656, -3839, -9806, -9807, -5315 - ], - [1, 3, 4891], - [0, 4892, 4893, 4894, 5], - [0, -9808, -7879, -2218, -1111, -9809, -1043, -5558, -9810, -8628, -9324], - [0, -2541, -519, -824, -2331, -7687, -9401, -7692], - [0, -1644, -6454, -6527, -5093, -9235, -8640, -7715, -8642, -3839], - [1, 3, 4896], - [0, 4897, 4898, 4899, 5], - [0, -9808, -999, -9811, -5558, -9812, -8628], - [0, -652, -2541, -519, -2410, -3037], - [0, -6454, -6527, -9813, -1644, -7175, -7715, -9814], - [1, 3, 4901], - [0, 4902, 0, 4903, 10], - [0, -9815, -2062], - [0, -1358, -9715, -7920, -9816, -3323], - [1, 3, 4905], - [0, 0, 4906, 4907, 9], - [ - 0, -23, -3037, -3664, -756, -9817, -9818, -1059, -1344, -1361, -9819, -1548, -1552, -1942, -1952, -2074, -2125, - -9820, -2174, -2391, -9821, -2410, -2466, -2469 - ], - [0, -1361, -9822, -9823], - [1, 3, 4909], - [0, 0, 4910, 4911, 8], - [0, -9824, -3136, -756, -1415, -2125, -2375, -2388, -2410], - [0, -9825], - [1, 3, 4913], - [0, 0, 0, 4914, 4], - [0, -1361, -6852, -9826, -6582, -7537, -5112, -7558, -9827, -5562, -7822], - [1, 3, 4916], - [0, 186, 4917, 4918, 5], - [0, -519, -1298, -2384, -2541], - [0, -4792, -3324, -6690, -6691, -3551, -1072, -9828], - [1, 3, 4920], - [0, 4921, 4922, 4923, 6], - [0, -1871, -5915], - [0, -519, -6997, -824, -999, -2541], - [0, -6024, -8427, -4792, -2114, -1109, -9318, -9829, -687], - [1, 3, 4925], - [0, 4926, 4927, 4928, 5], - [0, -9830, -9831, -9832, -9833, -9834, -9835, -9836], - [0, -3037, -4204, -932, -9837, -1942, -2410], - [ - 0, -9668, -3844, -9838, -9839, -7107, -8897, -9840, -3690, -7586, -9841, -5196, -9842, -3691, -5728, -3578, - -3161, -3122, -9843, -9844, -6011, -5801, -1334, -1342, -2512, -6224, -9845, -3994, -3445, -5407 - ], - [1, 3, 4930], - [0, 0, 14, 4931, 10], - [0, -6806, -2265, -7210, -9846, -6722, -5554, -885, -9847], - [1, 3, 4933], - [0, 4934, 4935, 4936, 8], - [0, -9551, -619, -9556, -1309, -1435, -1582], - [0, -707, -1277, -1510], - [0, -6656, -7421, -8481, -1277, -3862], - [1, 3, 4938], - [0, 4939, 4940, 4941, 6], - [0, -786, -2776, -3546], - [0, -9848, -9849], - [0, -1368, -6187, -3161, -4729, -9850, -3264, -9851, -3844, -5092, -4865, -2127, -9613], - [1, 3, 4943], - [0, 0, 4944, 4945, 4], - [0, -2410, -2469], - [0, -1369, -9852, -9853, -1878, -9763, -9758, -2424, -9854, -9855, -9759, -9764, -9760, -9765, -9766, -9767, -9761], - [1, 3, 4947], - [0, 0, 71, 4948, 10], - [0, -9856, -7711, -9857, -9858, -9859, -1370, -4865, -633], - [1, 3, 4950], - [0, 0, 29, 7, 5], - [1, 3, 4952], - [0, 4953, 4954, 4955, 5], - [ - 0, -9860, -480, -482, -9861, -668, -688, -690, -696, -5906, -3517, -1366, -8418, -9862, -6259, -2166, -2202, - -2219, -4621, -2267, -9863, -2400, -2820, -2528, -2531, -9864 - ], - [ - 0, -6486, -5918, -357, -3851, -3037, -3040, -9865, -9866, -9867, -4372, -4626, -4204, -9868, -519, -623, -826, - -9869, -969, -970, -1681, -1741, -1827, -1942, -2006, -9870, -2210, -2269, -2379, -2410, -2541 - ], - [0, -2006, -687, -4146, -3973, -3098, -3958, -1940, -2074, -9871, -7650, -714, -5554], - [1, 3, 4957], - [0, 0, 4958, 4959, 11], - [ - 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -775, -932, -967, -4814, -1110, -1344, -1415, -1534, - -1771, -1942, -2910, -2127 - ], - [0, -1374, -9872, -5553, -3215, -775], - [1, 3, 4961], - [0, 0, 0, 4962, 6], - [0, -9873, -9874, -7864, -7084, -7856, -9219, -3966, -687], - [1, 3, 4964], - [0, 4965, 4966, 63, 4], - [0, -3947, -231, -4106, -2900, -3950, -9875, -2153], - [0, -3952, -2410], - [1, 3, 4968], - [0, 4969, 4970, 4971, 11], - [0, -480, -1040, -1863, -9875, -2153], - [0, -1059, -1087, -1376], - [ - 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -910, -3962, -3963, -1376, -3964, -3965, -3214, -3824, -3966, - -3967, -1965, -3968, -1966, -3969, -2063, -3972, -3973, -3974, -3975, -3160, -3976, -2559, -3977 - ], - [1, 3, 4973], - [0, 4974, 0, 4975, 8], - [0, -9876, -714], - [0, -9877, -3966, -9878, -9879], - [1, 3, 4977], - [0, 0, 4978, 4979, 6], - [0, -849, -1654, -9880, -2334], - [0, -3209, -4792, -4791, -9881, -4865, -9882, -7857, -1380], - [1, 3, 4981], - [0, 0, 4982, 4983, 8], - [0, -932, -937, -966, -1001, -1442, -1654, -1788, -8501, -2068, -2094, -9883, -2195], - [ - 0, -9199, -9884, -711, -6505, -3184, -3756, -4055, -1460, -4146, -2006, -9885, -2362, -3018, -2410, -6597, - -2548, -9886 - ], - [1, 3, 4985], - [0, 0, 4986, 4987, 8], - [ - 0, -510, -526, -528, -549, -9887, -9888, -551, -556, -559, -9889, -566, -9890, -9891, -9892, -9893, -9894, - -9895, -9896, -9897, -9898, -9899, -9900, -9901, -9902, -9903, -689, -704, -932, -9904, -1045, -1107, -1127, - -1132, -1134, -1138, -9905, -9906, -1452, -1650, -1797, -2125, -2127, -2128, -2131, -9907, -5860, -2138, -2143, - -9266, -2187, -2493 - ], - [0, -1382, -1348, -9780, -9908, -3582], - [1, 3, 4989], - [0, 0, 4990, 4991, 4], - [ - 0, -7, -8, -9, -10, -13, -3204, -42, -3983, -365, -407, -410, -3037, -3040, -3052, -427, -428, -4837, -9909, - -535, -774, -928, -932, -948, -958, -959, -969, -970, -1028, -9910, -4693, -9911, -1127, -1131, -1132, -1134, - -1137, -1140, -1149, -9912, -1160, -1162, -1339, -1415, -1419, -1437, -1541, -1874, -1942, -9913, -2006, -2019, - -2162, -2193, -2299, -2351, -2379, -2410, -2466, -6859, -2476, -5627, -2567 - ], - [ - 0, -9914, -9915, -9916, -9917, -9918, -3162, -3962, -9567, -3823, -3214, -3862, -775, -3264, -3926, -5538, - -2006, -2476, -475, -2299, -3095, -2410 - ], - [1, 3, 4993], - [0, 220, 4994, 4995, 5], - [0, -633, -1059, -2319], - [0, -4004, -1384], - [1, 3, 4997], - [0, 4998, 4999, 5000, 6], - [0, -9919, -9920, -9921], - [0, -3037, -3664, -932, -1942, -2080, -2125, -2127, -2376, -2387, -2410, -2469], - [0, -6143, -9922, -6134, -9923, -9924, -3214, -3966, -2410], - [1, 3, 5002], - [0, 5003, 5004, 221, 5], - [ - 0, -2323, -834, -9925, -1805, -2446, -668, -812, -2387, -1548, -2177, -2240, -3547, -2347, -9926, -2291, -9927, - -9928, -9929, -9422, -9930, -9931, -9932, -9933, -9934, -9935, -9936, -9937, -9938 - ], - [ - 0, -1415, -2125, -2388, -2375, -1417, -5673, -2231, -2410, -9939, -3136, -3037, -9940, -3738, -1534, -3198, - -3044, -3199, -9941, -9942, -7836, -4202, -9943 - ], - [1, 3, 5006], - [0, 5007, 5008, 5009, 5], - [0, -3978], - [ - 0, -3983, -3048, -3136, -3037, -9947, -1077, -1415, -1417, -9948, -1772, -1942, -1978, -2125, -2177, -2184, - -2303, -2392, -2410 - ], - [0, -9949, -1386, -3167, -3839, -3162, -8585, -3095, -9950, -3119, -5270], - [1, 3, 5011], - [0, 5012, 5013, 5014, 4], - [0, -9951, -9952, -812, -9953, -1554, -9954, -9955, -9956, -9957], - [ - 0, -9958, -3470, -7040, -3471, -3035, -4269, -3198, -9959, -9960, -3621, -3037, -9961, -4372, -427, -428, -664, - -665, -932, -940, -1654, -1788, -1942, -2174, -2188, -2210, -2379, -2384, -2402, -2410, -2446 - ], - [0, -2071, -9844, -9962, -9963], - [1, 3, 5016], - [0, 0, 5017, 7, 8], - [0, -1654, -932], - [1, 3, 5019], - [0, 5020, 5021, 7, 5], - [0, -9964, -9788, -9965], - [0, -9966, -1032, -1445, -2322], - [1, 3, 5023], - [0, 0, 5024, 5025, 4], - [0, -515, -1788, -2322, -932, -6283, -1365, -2156, -5834, -6402], - [0, -2444, -8038, -4004], - [1, 3, 5027], - [0, 5028, 5029, 184, 9], - [0, -680], - [0, -686, -2250], - [1, 3, 5031], - [0, 5032, 88, 5033, 4], - [0, -9967], - [ - 0, -6836, -9968, -7440, -8421, -8130, -9969, -1107, -9095, -9970, -1391, -5572, -3581, -5574, -5569, -8129, - -2265, -4004 - ], - [1, 3, 5035], - [0, 5036, 5037, 5038, 11], - [0, -9971, -7408], - [0, -519, -6997, -824, -999, -1591, -2384, -2541], - [0, -1109, -5897, -9972, -3551, -1380, -9973, -1764, -2552, -1391, -7440, -6659, -8427, -9974, -687, -8425, -7304], - [1, 3, 5040], - [0, 0, 14, 5041, 6], - [0, -7208, -1391, -7440, -4004, -8038, -9716, -9975, -9976, -5493], - [1, 3, 5043], - [0, 0, 5044, 5045, 9], - [0, -664, -985, -1202, -1654, -1655, -2127], - [0, -7440, -1391, -9977, -1403, -3214, -9978, -8493, -7208, -9716, -8038, -9571, -5846], - [1, 3, 5047], - [0, 0, 5048, 5049, 5], - [0, -1654, -2081], - [0, -3264, -9950, -9979, -5065], - [1, 3, 5051], - [0, 0, 5052, 5053, 5], - [0, -3037, -519, -2331, -2384, -2541], - [0, -5827, -8038, -8027, -9980, -8800, -9753, -6408, -7440, -6659, -1391], - [1, 3, 5055], - [0, 5056, 222, 5057, 5], - [0, -9981], - [0, -7440, -9983, -7084, -9984, -9261, -6659, -6836, -1958, -4000, -3974, -1391], - [1, 3, 5059], - [0, 0, 31, 5060, 11], - [0, -4865, -1402, -5839], - [1, 3, 5062], - [0, 0, 5063, 5064, 11], - [0, -985, -1202, -1654, -2127], - [0, -7440, -1391, -9977, -1403, -9978, -8493, -9985, -5269, -7208, -8038, -9571, -5846], - [1, 3, 5066], - [0, 5067, 5068, 7, 5], - [0, -1729, -2516], - [0, -664, -1452, -9986, -1654, -1722], - [1, 3, 5070], - [0, 5071, 5072, 5073, 4], - [0, -1107, -1758, -1801, -510, -2518, -9632, -1650, -987, -1442, -2114, -2525, -931, -1276, -2297], - [0, -1452, -2125, -1754, -756, -2111], - [0, -4005, -9987, -9988, -9989], - [1, 3, 5075], - [0, 5076, 56, 89, 4], - [0, -1078, -2446, -7885], - [1, 3, 5078], - [0, 5079, 5080, 5081, 5], - [0, -513, -823, -896, -9990, -1571, -1887, -2355, -9991], - [ - 0, -9992, -526, -527, -532, -534, -536, -544, -546, -9993, -551, -555, -7890, -558, -565, -567, -664, -9994, - -748, -767, -778, -932, -980, -1017, -1041, -1074, -1168, -1171, -1184, -1226, -1243, -1322, -1331, -1471, - -1475, -1476, -1482, -7759, -1490, -1491, -1492, -1521, -1522, -8936, -1654, -2210, -2211, -2275, -2388, -2410, - -2417, -2437, -2476, -2479, -9995, -2481, -2483, -2484, -2485, -2501, -2505, -2508 - ], - [0, -1407, -2476, -3527, -3095, -3098, -3160, -3161], - [1, 3, 5083], - [0, 5084, 156, 5085, 4], - [0, -233], - [0, -6748, -3215, -4377, -5829, -9567, -687, -3957, -6722, -1838, -6747], - [1, 3, 5087], - [0, 5088, 5089, 7, 4], - [0, -9996, -683, -719, -9997, -9998, -1650, -9999, -2416, -2595, -10000], - [ - 0, -10001, -10002, -756, -1004, -10003, -10004, -10005, -10006, -10007, -10008, -10009, -10010, -10011, -10012, - -10013, -10014, -10015, -10016, -1610, -1810, -10017, -2125, -10018, -3013 - ], - [1, 3, 5091], - [0, 5092, 5093, 5094, 5], - [0, -510, -10019, -1863], - [0, -190, -932, -4719, -1110, -1654, -1980], - [0, -7641, -687, -9218, -10020], - [1, 3, 5096], - [0, 5097, 5098, 5099, 4], - [0, -10021], - [ - 0, -3326, -351, -3561, -3266, -4964, -10022, -10023, -683, -767, -10024, -1344, -1437, -10025, -1534, -1639, - -10026, -2127, -4063, -8896 - ], - [0, -10027, -6527, -5182, -10028, -10029, -8636], - [1, 3, 5101], - [0, 5102, 5103, 223, 6], - [0, -1107, -1413, -10030], - [0, -932, -10031], - [1, 3, 5105], - [0, 0, 5106, 223, 5], - [0, -3244, -190, -501, -10032, -888, -932, -952, -1107, -1110, -1449, -1942, -2162], - [1, 3, 5108], - [0, 5109, 0, 5110, 5], - [0, -1088, -1650, -10033, -2111, -2424, -711, -10034, -10035], - [0, -3634, -3440], - [1, 3, 5112], - [0, 5113, 0, 107, 4], - [0, -236, -237, -1363, -1417], - [1, 3, 5115], - [0, 5116, 5117, 5118, 6], - [0, -10036, -10037], - [0, -6256, -21, -23, -26, -40, -86, -9404, -533, -10038, -756, -1344, -1415, -1942], - [0, -4215, -1415, -5129, -886, -659, -4004, -5119], - [1, 3, 5120], - [0, 5121, 5122, 107, 6], - [0, -236, -4019, -237, -668, -4021, -1363, -4023, -1427, -4031, -2550], - [0, -3041], - [1, 3, 5124], - [0, 5125, 224, 7, 6], - [0, -10039, -8434, -668, -1950], - [1, 3, 5127], - [0, 5128, 224, 7, 5], - [0, -10040, -10041, -4647, -3037, -1449], - [1, 3, 5130], - [0, 5131, 5132, 7, 4], - [0, -10040, -10042, -237, -5129, -1427, -1449], - [0, -3136, -4647, -3037, -1344, -1415, -1650, -1942, -1952, -2125, -2375, -2410], - [1, 3, 5134], - [0, 5135, 5136, 7, 9], - [0, -10040, -10042, -237, -3037, -5129, -1427, -4031], - [0, -4034, -703], - [1, 3, 5138], - [0, 5139, 5140, 5141, 5], - [0, -1418], - [ - 0, -50, -3615, -3244, -190, -8433, -3136, -427, -428, -932, -940, -948, -958, -959, -967, -1110, -1344, -1415, - -10043, -1428, -1534, -1942, -2375, -5232, -2410 - ], - [0, -1415, -10044, -1015, -10045, -4004, -3634, -6538], - [1, 3, 5143], - [0, 5144, 5145, 5146, 4], - [0, -1077, -1805], - [ - 0, -23, -2695, -366, -407, -409, -410, -10046, -3136, -10047, -3037, -10048, -3040, -3052, -6192, -485, -533, - -534, -542, -561, -594, -635, -656, -661, -747, -778, -779, -796, -865, -866, -929, -932, -941, -10049, -1017, - -1041, -1077, -1331, -1352, -1415, -1426, -1428, -10050, -1643, -1762, -1889, -1903, -1908, -1918, -1927, -1966, - -10051, -2006, -2010, -2015, -2019, -2041, -2643, -2114, -2116, -2162, -2163, -2177, -2233, -2275, -2318, -2335, - -2410, -2437, -10052, -2501, -2502, -2505, -2507, -2526 - ], - [0, -1415, -3264, -6863, -9246, -3862], - [1, 3, 5148], - [0, 5149, 5150, 7, 4], - [0, -1650, -2269, -2446, -6597], - [0, -1415, -10053, -2218], - [1, 3, 5152], - [0, 0, 0, 5153, 5], - [0, -1415, -2552, -10054, -10055], - [1, 3, 5155], - [0, 5156, 5157, 7, 6], - [0, -668, -1119, -4024, -1425, -1427, -4031, -2218, -8204], - [0, -4035, -2435], - [1, 3, 5159], - [0, 5160, 5161, 7, 8], - [0, -237, -3037, -668, -680, -1119, -1864], - [0, -4035, -8523, -1548], - [1, 3, 5163], - [0, 5164, 5165, 7, 5], - [0, -480, -668, -4026, -4032, -2218, -6715, -2269], - [ - 0, -21, -23, -40, -42, -190, -5121, -237, -3470, -3471, -3037, -533, -10056, -767, -932, -940, -948, -8339, - -959, -967, -1110, -1415, -10043, -1942, -2125, -2174, -2177, -2410, -2411 - ], - [1, 3, 5167], - [0, 5168, 5169, 7, 6], - [0, -3037, -9581, -1427, -1632, -2297], - [0, -23, -10057, -4373, -9586, -1100, -10058, -10059], - [1, 3, 5171], - [0, 5172, 5173, 5174, 4], - [ - 0, -10060, -10061, -10062, -10063, -10064, -10065, -10066, -10067, -10068, -10069, -10070, -10071, -10072, - -10073, -10074, -10075, -10076, -10077, -10078, -10079, -10080, -10081, -10082, -10083, -10084, -10085, -10086 - ], - [ - 0, -10087, -10088, -10089, -10090, -4066, -350, -6572, -351, -3266, -5286, -932, -10091, -1848, -2127, -2132, - -6483, -9701, -2386, -2410, -10092, -2469 - ], - [0, -6527, -10093, -10094, -7715, -8640, -9235, -8653, -10095, -7069, -7066], - [1, 3, 5176], - [0, 0, 5177, 7, 6], - [ - 0, -23, -3341, -3196, -24, -10096, -33, -5828, -3367, -3077, -3389, -3408, -3412, -42, -3193, -46, -47, -10097, - -10098, -4776, -4777, -10099, -10100, -10101, -3037, -3664, -461, -10102, -672, -727, -734, -6860, -10103, -930, - -932, -944, -989, -990, -1026, -1394, -1640, -1651, -1667, -10104, -1852, -6568, -1940, -10105, -1942, -2006, - -2019, -2080, -10106, -6570, -2335, -3535, -2376, -2410, -2469, -2476, -8416, -2564 - ], - [1, 3, 5179], - [0, 0, 0, 5180, 6], - [0, -3494, -10107, -10108, -3495, -10109, -10110, -3264, -5554, -3496, -10111, -3214, -2410, -10112, -1432], - [1, 3, 5182], - [0, 5183, 5184, 5185, 4], - [0, -1432], - [ - 0, -3615, -7155, -367, -406, -409, -410, -3040, -3052, -427, -428, -767, -778, -932, -940, -967, -969, -970, - -979, -1331, -1449, -1942, -2006, -2019, -8276, -2275, -3752, -2379, -2391, -2410, -2469, -2501, -2503, -2505 - ], - [0, -2006, -1432, -3264, -5554, -3496, -10113, -10109, -10110, -10114], - [1, 3, 5187], - [0, 5188, 5189, 5190, 4], - [0, -668, -10115, -10116, -10117, -2183, -3523, -1553, -1552, -10118], - [0, -1788, -510, -1127, -2210, -1813, -756, -1132, -6758, -1153, -722, -10119, -1149, -1144, -1146], - [ - 0, -10120, -10121, -10122, -10123, -10124, -10125, -10126, -10127, -10128, -10129, -10130, -10131, -10132, - -10133, -10134, -10135, -10136, -10137, -10138, -10139, -10140, -10141, -10142, -10143, -10144, -10145, -10146, - -10147, -10148, -10115, -10149, -10150, -10151, -10152, -10153, -10154, -10155, -10156, -10157, -10158, -10159, - -10160, -10161, -10162, -10163, -10164, -10165, -10166, -10167, -10168, -10169, -10170, -10171, -10172, -10173, - -10174, -10175, -10176, -10177, -10178, -10179, -10180, -10180, -10181, -10182, -10183, -10184, -10185, -10186, - -10187, -10188, -10189, -10190, -10191, -10192, -10193, -10194, -10195, -10196, -10197, -10198, -10199, -10200, - -10201, -10202, -10203, -10204, -10205, -10206, -10207, -5158, -10208, -10209, -10210, -10211, -10212, -10213, - -10214, -10215, -10216, -10217, -10218, -10219, -10219, -10220, -10221, -10222, -10223, -10224, -10225, -10226, - -10227, -2183, -10228, -10229, -10230, -10231, -10232, -10233, -10234, -10235, -10236, -10237, -10238, -10239, - -10240, -10241, -10242, -10243, -10244, -10245, -10246, -10247, -10248 - ], - [1, 3, 5192], - [0, 5193, 5194, 5195, 4], - [0, -10249, -10250, -3880, -10251, -10252, -3888, -3117], - [0, -9163, -3890, -3891, -3893, -3037, -2410], - [0, -4058, -3926], - [1, 3, 5197], - [0, 0, 0, 5198, 5], - [0, -2006, -4125, -9800, -4633, -10253, -4634], - [1, 3, 5200], - [0, 0, 0, 5201, 10], - [0, -1437, -3214, -4865, -3482], - [1, 3, 5203], - [0, 5204, 5205, 7, 4], - [0, -1437], - [ - 0, -1127, -2125, -1110, -367, -10254, -10255, -1152, -10256, -1542, -10257, -10258, -10259, -10260, -1136, - -1139, -9550 - ], - [1, 3, 5207], - [0, 0, 5208, 5209, 11], - [0, -3037, -1654, -2410], - [0, -6118, -7304], - [1, 3, 5211], - [0, 5212, 5213, 5214, 4], - [0, -10261, -7829, -1107, -1441, -1758], - [0, -481, -589, -709, -1437, -1452, -1646, -1654, -1689, -2111, -2184, -2269, -2501, -2503], - [0, -6146, -10262, -10263], - [1, 3, 5216], - [0, 0, 5217, 5218, 4], - [ - 0, -3266, -932, -943, -957, -963, -1127, -10258, -1137, -1146, -9544, -1149, -10264, -10265, -1942, -1989, - -2091, -2127, -5090, -2134, -2250 - ], - [0, -743, -6920, -4865, -10266, -4791, -3323, -1441, -633], - [1, 3, 5220], - [0, 5221, 5222, 5223, 8], - [0, -503], - [0, -1788, -5514, -1654, -932, -2127, -2195, -1103, -589, -709, -1023, -2140, -350, -351, -10267], - [0, -2548, -3215, -4142, -10268], - [1, 3, 5225], - [0, 5226, 5227, 5228, 10], - [0, -25, -5223, -719, -812, -822, -1107, -10269, -10270, -2001, -10271], - [ - 0, -190, -4010, -367, -4007, -7043, -3037, -720, -740, -796, -932, -940, -959, -967, -1415, -1448, -9390, -9393, - -1942, -2125, -2410, -2411 - ], - [0, -10272, -856], - [1, 3, 5230], - [0, 5231, 5232, 7, 4], - [0, -714, -719, -1077, -10273, -10274, -10275, -10276, -10277, -10278, -10279], - [0, -5325, -3048, -3037, -3664, -1753, -2379, -2391, -2410, -2469], - [1, 3, 5234], - [0, 5235, 5236, 5237, 6], - [ - 0, -668, -693, -719, -10280, -988, -1000, -1107, -1333, -1442, -10281, -10282, -6611, -1548, -1645, -5199, - -6533, -1965, -10283, -2114, -2270, -2271, -10284, -10285, -9247, -10286, -2538 - ], - [0, -664, -756, -3607, -1452, -1654, -2081, -2123, -2210, -2211, -10287, -10288, -2536], - [0, -8172, -4144, -7148, -8170, -4901, -5874], - [1, 3, 5239], - [0, 5240, 5241, 5242, 4], - [0, -25, -10289, -3661, -615, -10290, -930, -10291, -8985, -1600, -1601, -1610, -1650, -10292, -2271, -2424], - [0, -469, -1168, -1197, -1225, -1788], - [0, -856, -3214], - [1, 3, 5244], - [0, 5245, 0, 5246, 4], - [0, -6789, -7573, -10293, -7575, -1446, -10294, -7576], - [0, -1446, -3690, -5731, -3964, -3214, -856], - [1, 3, 5248], - [0, 5249, 0, 5250, 5], - [0, -6789, -717, -718, -10295, -843, -1447, -2576, -7576], - [0, -1446, -1599, -3690, -3262, -3214, -3756, -856], - [1, 3, 5252], - [0, 5253, 5254, 225, 5], - [ - 0, -10296, -10297, -10298, -9683, -785, -10299, -10300, -1319, -1337, -1343, -1397, -1839, -10301, -10302, - -2364, -2426, -10303, -10304, -6587, -10305, -8352 - ], - [ - 0, -7196, -932, -957, -965, -1110, -1442, -1645, -1654, -10306, -1772, -1810, -1880, -2177, -2188, -2354, - -10307, -10308 - ], - [1, 3, 5256], - [0, 5257, 5258, 225, 5], - [0, -10309, -10310, -785, -1333, -10311, -1839, -2105, -8352, -2540], - [0, -633, -714, -1339, -1452, -6810, -1754, -1888, -1980, -10312, -2493], - [1, 3, 5260], - [0, 0, 5261, 5262, 4], - [0, -756, -1127, -1132, -6114, -1405, -1654, -2081, -2111, -10313], - [0, -640, -5559, -3214, -4055, -6917, -8127, -2265, -6231, -3673], - [1, 3, 5264], - [0, 5265, 5266, 7, 8], - [0, -687, -6392, -1000, -1333, -1548, -1645, -2271], - [0, -510, -633, -739, -6019, -756, -1405, -1445, -1661, -1754, -1978, -2081, -10314, -2210, -6430, -10315, -10316], - [1, 3, 5268], - [0, 5269, 226, 5270, 5], - [0, -668, -1574, -1877, -6715, -2343, -9493], - [0, -1452, -6863, -4144, -3276, -7148, -5874, -10317, -6864, -3240], - [1, 3, 5272], - [0, 5273, 5274, 5275, 4], - [0, -10318, -10319], - [0, -3621, -3037, -427, -428, -932, -936, -958, -1654, -1788, -2379, -2410], - [0, -4055, -10320, -788, -6473, -8257, -10321, -10322, -1838, -3215, -1454, -10323, -687], - [1, 3, 5277], - [0, 0, 5278, 7, 8], - [0, -2251], - [1, 3, 5280], - [0, 0, 0, 5281, 9], - [0, -4055, -4058], - [1, 3, 5283], - [0, 5284, 5285, 5286, 4], - [0, -411, -414, -2702, -668, -679, -3780, -6869, -1369, -1460, -1581, -10324, -2213, -10325], - [0, -3037, -726, -1098, -1344, -2987, -8065, -2331, -2400, -2410], - [0, -4182, -3844, -8959, -3817, -3816, -10326, -4215, -4041, -4004, -3634, -3691, -6582, -10327], - [1, 3, 5288], - [0, 5289, 5290, 5291, 10], - [0, -655, -6511, -1402, -7584, -1795], - [0, -2832, -5834, -8084, -8086, -8090, -10328, -8096, -516, -5835, -932, -1365, -1777, -2156, -2322], - [0, -4055, -6231, -10329, -6131, -7283, -10330], - [1, 3, 5293], - [0, 0, 0, 5294, 5], - [0, -4055, -6231, -10331, -9594], - [1, 3, 5296], - [0, 0, 5297, 5298, 11], - [ - 0, -753, -932, -943, -958, -966, -968, -974, -1771, -2081, -2127, -2129, -2131, -2137, -2140, -2210, -2319, - -10332 - ], - [0, -4055, -1460, -8108, -4795, -3217], - [1, 3, 5300], - [0, 0, 5301, 7, 4], - [0, -1654, -932, -2125, -2410, -3037, -3621, -428, -427], - [1, 3, 5303], - [0, 5304, 206, 5305, 4], - [0, -8984], - [0, -2059, -6234, -6656, -4055, -1076, -1077], - [1, 3, 5307], - [0, 0, 5308, 5309, 5], - [0, -7055, -10333, -664, -932, -10334, -1654], - [0, -4055, -4058, -1463, -2451, -3926], - [1, 3, 5311], - [0, 5312, 5313, 5314, 5], - [0, -2346, -10335], - [0, -2322, -8392, -10336, -7650, -6538, -994], - [0, -4055, -5827, -9292, -3215, -510, -6747], - [1, 3, 5316], - [0, 5317, 5318, 5319, 8], - [0, -1681, -10337, -2177, -10338, -10339, -10340, -1563, -10341, -10342, -1562], - [0, -1780, -1788, -514, -664, -1654, -2210, -932, -739], - [0, -3175], - [1, 3, 5321], - [0, 5322, 5323, 7, 5], - [0, -23, -10343, -10344, -1816, -1863], - [0, -5694, -3037, -10345, -653, -928, -932, -940, -1640, -1645, -1805, -1942, -2127, -2358, -2410], - [1, 3, 5325], - [0, 0, 5326, 5327, 4], - [0, -3037, -3664, -8436, -2391, -2410, -2469], - [0, -4125, -3967, -3445, -10346, -2006, -5269, -3578, -2034, -3138], - [1, 3, 5329], - [0, 5330, 5331, 5332, 6], - [0, -10347, -1834, -8578, -2062], - [0, -2359, -1127, -1989, -932, -589, -1132, -633, -1874, -2410, -1339, -10348, -1130, -1148, -10349], - [0, -5408, -6827, -10350], - [1, 3, 5334], - [0, 0, 5335, 5336, 6], - [ - 0, -2200, -1415, -1344, -932, -2910, -2375, -2379, -1942, -2410, -23, -1534, -632, -726, -958, -940, -967, - -1419, -428, -427, -948 - ], - [0, -3175, -4865], - [1, 3, 5338], - [0, 0, 5339, 5340, 4], - [0, -1003, -1405, -1654], - [0, -3175, -6422, -6420], - [1, 3, 5342], - [0, 5343, 5344, 5345, 6], - [ - 0, -6134, -2359, -1107, -1640, -10351, -2550, -9968, -1548, -1576, -1650, -2125, -729, -679, -1645, -2228, - -1336, -2231, -617, -1119, -5506, -1997, -2594, -10352, -5758 - ], - [ - 0, -664, -5735, -1654, -7243, -2210, -2518, -932, -793, -2491, -1978, -2293, -633, -1474, -1972, -2211, -10353, - -667, -1482, -1413, -1481, -86, -665, -1472, -2174, -966, -958, -10354, -1483, -3471, -968, -1475, -10355, -943, - -974, -1479, -9404, -3470, -1473 - ], - [0, -1471, -10356, -4043, -1471, -3756, -3214, -3634, -4004, -8908, -10357], - [1, 3, 5347], - [0, 5348, 5349, 5350, 6], - [0, -10358, -1548, -10359, -1645, -8016, -742], - [ - 0, -1763, -627, -664, -1471, -1654, -2210, -2363, -5482, -932, -2114, -2491, -633, -2211, -2410, -1771, -1413, - -1481, -6399, -964, -1475 - ], - [0, -10360, -10361, -10362, -633], - [1, 3, 5352], - [0, 5353, 5354, 5355, 4], - [0, -1980, -2734, -10363], - [0, -1127, -932, -1159, -1131, -1152, -1542, -966, -1129, -958, -968, -943, -974, -1150, -1151], - [0, -10360, -10364, -2734, -10365], - [1, 3, 5357], - [0, 0, 0, 5358, 4], - [0, -1471, -10360, -664, -1654, -2198], - [1, 3, 5360], - [0, 227, 5361, 5362, 9], - [0, -664, -1471, -1654, -2210, -2250, -1482, -86, -2174, -3471, -9404, -3470], - [0, -10360, -10364, -10366], - [1, 3, 5364], - [0, 5365, 5366, 5367, 5], - [0, -5086, -6029, -5087, -5088, -5089, -1645], - [ - 0, -86, -3307, -9248, -3470, -3471, -7041, -664, -711, -932, -943, -958, -966, -968, -974, -1127, -1132, -1155, - -1159, -1344, -10367, -1471, -10368, -1479, -1482, -10369, -1654, -7243, -2111, -2174, -2210, -2211 - ], - [0, -10360, -10361, -10370, -4005, -1405], - [1, 3, 5369], - [0, 227, 5370, 5371, 4], - [0, -1127, -1138, -1144, -1155, -1413, -1471, -1481, -1860], - [ - 0, -10360, -10364, -4865, -6413, -10371, -10372, -10373, -10374, -7490, -10375, -10376, -10377, -10378, -10379, - -10380 - ], - [1, 3, 5373], - [0, 5374, 5375, 5376, 5], - [0, -10381], - [ - 0, -664, -10382, -6134, -932, -943, -968, -974, -1127, -1131, -1132, -1152, -1159, -1163, -1471, -1542, -10383, - -1972 - ], - [0, -10360, -10364, -5799, -7489], - [1, 3, 5378], - [0, 5379, 5380, 5381, 4], - [0, -1401, -2518], - [0, -86, -3307, -3470, -3471, -7041, -1344, -1471, -1482, -1654, -1868, -2174, -2250], - [0, -1471, -3634, -10360, -10364, -10384], - [1, 3, 5383], - [0, 34, 5384, 5385, 5], - [ - 0, -664, -6134, -932, -943, -968, -969, -974, -1127, -1129, -1131, -1149, -1150, -1151, -1152, -1159, -1163, - -1471, -1542, -7243, -2210, -2211 - ], - [0, -10360, -10364, -8996], - [1, 3, 5387], - [0, 5388, 5389, 5390, 5], - [0, -1413], - [ - 0, -1127, -1344, -1471, -932, -1412, -86, -2174, -966, -958, -3471, -7041, -968, -943, -974, -1479, -3472, - -9404, -3470 - ], - [0, -10360, -10385, -1412], - [1, 3, 5392], - [0, 228, 5393, 5394, 6], - [ - 0, -664, -932, -943, -968, -969, -974, -1127, -1129, -1131, -1150, -1152, -1155, -1159, -1471, -1474, -1475, - -1479, -1489, -1542, -1654, -1658, -2210, -3470, -3471, -2174, -86, -3307, -1344 - ], - [0, -10360, -10385, -1654], - [1, 3, 5396], - [0, 5397, 5398, 5399, 4], - [0, -668, -1574, -2269], - [0, -664, -1127, -1131, -1138, -1144, -1150, -1155, -1162, -1413, -1474, -1477, -1542, -1654, -1860], - [0, -10360, -10370, -1654, -664, -834, -8619], - [1, 3, 5401], - [0, 5402, 5403, 5404, 4], - [0, -1548, -1860], - [0, -932, -943, -969, -974, -1127, -1129, -1131, -1150, -1152, -1155, -1159, -1413, -1471, -1481, -1542], - [0, -10360, -10364, -1859], - [1, 3, 5406], - [0, 0, 5407, 5408, 10], - [0, -664, -1127, -1471, -1654, -1989, -932, -1159, -1131, -1481, -966, -958, -968, -943, -974, -1479], - [0, -1471, -10360, -10385, -1989], - [1, 3, 5410], - [0, 5411, 5412, 5413, 6], - [0, -679, -811], - [0, -23, -3412, -40, -932, -1413, -1471, -1475, -1481, -1483, -2127, -2128, -2129, -2131, -2137], - [0, -6505, -4795, -1471, -3209, -6024, -8257, -3862, -3277, -10361, -10360, -10386, -2127], - [1, 3, 5415], - [0, 0, 5416, 5417, 8], - [0, -1159, -1127, -1131, -1129], - [0, -10360, -10364, -10387], - [1, 3, 5419], - [0, 5420, 5421, 5422, 4], - [0, -10388, -5471, -4881], - [0, -86, -3307, -3470, -3471, -7041, -3048, -10389, -3037, -1344, -1412, -1471, -1481, -2174, -2410], - [0, -10360, -10364, -10390, -10391, -5471], - [1, 3, 5424], - [0, 0, 0, 5425, 4], - [0, -1471, -10360, -2210, -4215], - [1, 3, 5427], - [0, 5428, 5429, 5430, 5], - [0, -1119], - [0, -4035, -652, -932, -1413, -1471, -10392, -1475, -1481, -1942, -2127, -10393], - [0, -10360, -10361, -9454, -3214], - [1, 3, 5432], - [0, 187, 5433, 5434, 11], - [0, -664, -756, -1654, -1771, -1788, -2210, -2211], - [0, -10360, -6863], - [1, 3, 5436], - [0, 5437, 5438, 48, 8], - [0, -1107, -1645, -2508], - [ - 0, -21, -23, -39, -40, -86, -3307, -7166, -533, -664, -665, -767, -932, -958, -967, -1344, -1405, -1412, -1415, - -1471, -1474, -1475, -1482, -1491, -1534, -1626, -1654, -1939, -1942, -1978, -2251, -2501 - ], - [1, 3, 5440], - [0, 0, 27, 5441, 8], - [0, -10394, -1493, -10395, -4111, -10396, -10397, -10398, -10399, -1494], - [1, 3, 5443], - [0, 0, 0, 5444, 6], - [0, -1494, -2063, -3103], - [1, 3, 5446], - [0, 5447, 5448, 5449, 6], - [0, -10400], - [ - 0, -10401, -3653, -2581, -6486, -3664, -2125, -10402, -2384, -2469, -10403, -10404, -10405, -10406, -10407, - -10408, -10409 - ], - [ - 0, -7372, -5846, -4634, -3324, -6495, -10410, -6005, -3445, -10411, -2071, -1671, -3742, -1691, -6321, -10412, - -1724, -1582, -10413, -654 - ], - [1, 3, 5451], - [0, 0, 5452, 5453, 4], - [0, -985, -2447], - [0, -5514, -687, -712, -714, -4000, -3974], - [1, 3, 5455], - [0, 5456, 5457, 5458, 5], - [0, -985, -10414, -812, -1548, -8945, -2068, -2350, -10415, -713, -719, -1381, -2115, -1097, -10416], - [ - 0, -1857, -1788, -2384, -664, -1410, -2322, -1344, -1654, -1691, -2210, -932, -1692, -2125, -879, -1658, -2245, - -10417, -2379, -10418, -1942, -2320, -756, -767, -1464, -2211, -2410, -3037, -8946, -1534, -10419, -10420, -665, - -2234, -10421, -958, -10422, -10423, -940, -967, -5984 - ], - [0, -10424, -5101, -6321, -10425, -1691, -10426, -2245, -5378, -1682, -4258, -10427, -7641, -7773, -7685], - [1, 3, 5460], - [0, 5461, 5462, 5463, 4], - [0, -8520, -1026, -10428, -1431, -1442, -1646, -10429, -1863, -1864, -10430, -2271, -2564], - [0, -237, -7057, -3660, -5686, -8523, -3046, -4879, -10431, -4651, -2392, -2410], - [ - 0, -10432, -10433, -7711, -687, -10434, -3015, -6659, -3016, -10435, -10436, -8035, -8257, -6999, -5573, -3214, - -7148, -10437, -10438, -10439, -10440, -10441, -5897, -9044, -3694, -2410, -10442, -10443, -7441, -10444 - ], - [1, 3, 5465], - [0, 0, 5466, 5467, 6], - [0, -932, -1111, -10445, -1572], - [0, -775, -3589, -5387, -10366, -10384, -10446, -7489, -10387, -10447, -10448, -10449], - [1, 3, 5469], - [0, 5470, 0, 5471, 4], - [0, -1640, -2536, -812, -10450, -1801], - [0, -5817, -5937, -5940], - [1, 3, 5473], - [0, 5474, 5475, 5476, 4], - [ - 0, -459, -736, -737, -6920, -10451, -7412, -907, -929, -1072, -10452, -1335, -1504, -1641, -1800, -1840, -2255, - -2401, -2453 - ], - [0, -652, -10453, -2226, -2250, -2293], - [0, -3578, -3994, -1334, -9668, -3161, -5401, -6854], - [1, 3, 5478], - [0, 5479, 5480, 5481, 5], - [0, -10454, -3734, -5586, -10455, -1070, -2400, -2564], - [0, -2832, -2581, -50, -8280, -10456, -3758, -8317, -10457, -4203, -1501, -2293, -2386, -7457, -2392, -2410], - [0, -1501, -10458, -6463, -4055, -10459, -3215, -4053], - [1, 3, 5483], - [0, 5484, 5485, 5486, 11], - [0, -10455, -10460, -2401], - [0, -946, -1344, -1501, -1654, -1788, -2198, -2293, -2541], - [0, -10461, -4055, -10458, -1501, -10459], - [1, 3, 5488], - [0, 0, 5489, 5490, 5], - [0, -708, -1415, -1612, -2250], - [0, -1501, -5401, -10462], - [1, 3, 5492], - [0, 5493, 5494, 5495, 6], - [0, -651, -668, -10463, -1800, -10464], - [0, -619, -652, -946, -1501, -10465, -10466, -2210, -2293, -2541], - [0, -1501, -5401, -3444, -1573], - [1, 3, 5497], - [0, 5498, 5499, 5500, 4], - [0, -812, -1504], - [0, -932, -943, -968, -974, -1405, -1501, -1508, -1654, -2198, -2293], - [0, -1501, -5401, -10467, -10468], - [1, 3, 5502], - [0, 5503, 5504, 5505, 10], - [0, -812, -1335, -1504, -1851], - [0, -1501, -1788, -668, -1344, -1654, -932, -1053, -2293, -10469, -2094, -1534, -86, -1448, -2099, -978, -3307], - [0, -1501, -5401, -10470, -3122], - [1, 3, 5507], - [0, 5508, 5509, 5510, 11], - [0, -812, -10471], - [0, -932, -943, -958, -966, -968, -974, -1405, -1501, -1654, -2293], - [0, -1501, -5401, -6656, -5142, -10472], - [1, 3, 5512], - [0, 5513, 5514, 5515, 4], - [0, -1717, -1974, -10473, -2071, -2550, -1548, -2286, -1004, -617, -10474], - [0, -664, -510, -1654, -2210, -2198, -2293, -710], - [0, -5418, -1986, -8615, -2071], - [1, 3, 5517], - [0, 5518, 5519, 5520, 4], - [ - 0, -10475, -834, -932, -10476, -10477, -986, -10478, -1276, -1309, -1458, -1459, -1650, -2172, -2231, -2234, - -2297, -10479 - ], - [0, -707, -10480, -963, -10481, -2125, -2177], - [0, -4004], - [1, 3, 5522], - [0, 5523, 5524, 5525, 5], - [0, -5895], - [0, -519, -2177, -10482, -2384, -2541], - [0, -10483, -9318, -1764, -7861, -5897, -10484, -10485, -3551], - [1, 3, 5527], - [0, 0, 5528, 5529, 4], - [0, -1464, -10486, -589, -10487, -10488, -1414, -1446, -1548, -1627, -1963, -10489, -2111, -10490, -2424], - [0, -9826, -5112, -6187, -6188, -2444], - [1, 3, 5531], - [0, 0, 5532, 5533, 9], - [ - 0, -2247, -1344, -1471, -1654, -2210, -932, -10491, -2127, -10492, -10493, -2416, -1482, -1489, -1534, -10494, - -10495, -10496, -1480, -4062, -1478, -10497, -1475, -1487, -1479, -1486, -10498, -10499 - ], - [0, -10500, -6917], - [1, 3, 5535], - [0, 0, 5536, 5537, 10], - [0, -589, -1023], - [0, -1519, -10501, -7210, -10502, -2265, -10503], - [1, 3, 5539], - [0, 0, 5540, 5541, 6], - [0, -8511], - [0, -7210, -10504, -5538, -3276], - [1, 3, 5543], - [0, 5544, 0, 5545, 8], - [ - 0, -1787, -1371, -2323, -1866, -2247, -2446, -668, -999, -1392, -1826, -2218, -4701, -2550, -10505, -815, -9809, - -1831, -2125, -2177, -914, -1442, -1827, -2346, -10506, -1077, -1098, -1376, -1591, -10507, -5917, -10508, -715, - -1399, -1418, -1645, -10509, -293, -1100, -1686, -2654, -2410, -10510, -755, -1108, -10511, -10512, -2202, - -1363, -10513, -1769, -10514, -2115, -10515, -2267, -2551, -10516, -305, -8500, -4236, -10517, -10518, -10519, - -1767, -280, -10520, -10521, -2530, -283, -1770, -4283, -4716, -2450, -10522, -10523, -10524, -10525, -10526 - ], - [0, -1520, -10440, -10527], - [1, 3, 5547], - [0, 5548, 5549, 5550, 6], - [0, -10528, -8501, -2387], - [ - 0, -350, -4062, -351, -427, -428, -10529, -10530, -664, -652, -668, -755, -767, -932, -1077, -6720, -1107, - -1111, -1127, -1132, -1134, -1137, -1152, -1161, -1162, -10531, -1418, -10532, -10533, -9237, -1646, -1654, - -10534, -1771, -1856, -10535, -1874, -1961, -10536, -2114, -2127, -2140, -2142, -2177, -2200, -2351, -2379, - -2410, -5252 - ], - [ - 0, -10537, -10538, -10539, -775, -10540, -10541, -10542, -10543, -10544, -1521, -10545, -10546, -4730, -10547, - -3215, -3277, -10548, -10549, -5553, -3770, -3271, -10550, -10551 - ], - [1, 3, 5552], - [0, 0, 5553, 5554, 4], - [ - 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -533, -767, -774, -824, -825, -932, -940, -6929, -958, -959, - -965, -967, -978, -1110, -1344, -1415, -1521, -10552, -1534, -1623, -1771, -1942, -2251, -2269, -2411, -2501 - ], - [0, -2501, -5932, -1521, -10546, -10545, -775, -3277], - [1, 3, 5556], - [0, 5557, 5558, 229, 4], - [0, -10553, -10554, -10555], - [0, -1788, -2322, -2446, -468, -571, -1274, -2250, -2410, -3037, -40, -10556, -10557], - [1, 3, 5560], - [0, 5561, 5562, 5563, 8], - [0, -10559, -6127, -10560], - [ - 0, -10561, -1788, -1107, -2322, -2331, -1032, -2125, -5420, -891, -1274, -1733, -2250, -767, -10562, -10563, - -6128, -10564, -10565, -829, -10566, -10567 - ], - [0, -10558, -1523], - [1, 3, 5565], - [0, 5566, 5567, 229, 11], - [0, -9508, -10568, -10569, -10570, -10571, -10572], - [ - 0, -1788, -2322, -465, -2210, -468, -1032, -5420, -10573, -10574, -1274, -2250, -10562, -633, -2151, -10575, - -10576, -725, -10577, -10578, -829, -10556, -10567 - ], - [1, 3, 5569], - [0, 0, 5570, 5571, 11], - [0, -519, -10579, -10580, -10581, -10582, -10583, -10584, -1703, -10585, -2354, -2541], - [ - 0, -1526, -10582, -10586, -10587, -2265, -7377, -834, -5922, -1087, -6547, -4310, -7378, -10588, -10589, -5554, - -5572, -10590 - ], - [1, 3, 5573], - [0, 5574, 29, 5575, 10], - [0, -280, -4280, -10591, -834, -1645, -1767, -1831, -2323], - [0, -1764, -1776, -4303, -687, -834], - [1, 3, 5577], - [0, 5578, 5579, 5580, 5], - [0, -280, -4283, -283, -680, -1767, -1831, -1957, -10592, -2059, -2177, -2202, -4297], - [0, -4298, -4299, -4300, -4286, -668, -7755, -10593, -2319], - [0, -1764, -1776, -4303, -687, -4304, -1528], - [1, 3, 5582], - [0, 5583, 29, 5584, 5], - [0, -280], - [0, -1764, -1776, -4303, -687, -5889, -10594, -10595], - [1, 3, 5586], - [0, 0, 5587, 5588, 4], - [ - 0, -21, -23, -3367, -3350, -40, -43, -4062, -3266, -539, -664, -757, -10596, -767, -10597, -1405, -1415, -10598, - -10599, -1646, -1654, -1771, -1788, -10600, -2104, -2125, -2127, -2387 - ], - [0, -9917, -9918, -6240, -3962, -3162, -10601], - [1, 3, 5590], - [0, 5591, 5592, 5593, 6], - [0, -1015, -1048, -10602, -10603, -1396, -2068, -2114], - [0, -711, -932, -937, -940, -966, -1001, -1654, -1788, -2210], - [0, -4376], - [1, 3, 5595], - [0, 0, 5596, 5597, 4], - [0, -2581, -3136, -3037, -3806, -755, -1415, -2410, -2447], - [0, -755, -727, -3870, -7282], - [1, 3, 5599], - [0, 0, 0, 5600, 6], - [0, -10604, -7920, -10605, -3264, -1437, -10606, -10607, -2006, -2398, -2435], - [1, 3, 5602], - [0, 5603, 5604, 5605, 8], - [0, -719, -1536, -1639, -3610, -3535, -2548], - [ - 0, -8280, -50, -86, -3307, -190, -3664, -6593, -10608, -767, -932, -940, -965, -967, -4814, -1344, -1661, -1942, - -2177, -2410, -2469 - ], - [0, -7148, -5889, -10609, -932, -1942, -2281, -707, -8169, -7440, -3276, -5874], - [1, 3, 5607], - [0, 5608, 5609, 5610, 4], - [0, -10610, -10611, -1398, -1399, -10612, -10613, -10614, -1826, -2153], - [0, -708, -826, -9464, -1534, -1574, -1788, -1939, -2239, -5747], - [0, -687, -4107, -4108, -4109, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, -4116, -4117], - [1, 3, 5612], - [0, 5613, 5614, 158, 6], - [0, -696, -713, -996, -1575, -2124, -2528], - [0, -5745, -2153, -5747], - [1, 3, 5616], - [0, 5617, 5618, 7, 8], - [0, -10615, -10616, -3297], - [0, -10617, -10618, -4686, -10619, -4690, -2387], - [1, 3, 5620], - [0, 5621, 5622, 5623, 5], - [0, -1548, -1646, -632, -10620, -731], - [0, -1654, -2210, -932, -1663, -1405], - [0, -475, -6205, -5142, -3844, -3113], - [1, 3, 5625], - [0, 5626, 5627, 5628, 6], - [0, -1812, -754, -2178, -714, -1676, -729, -679, -10621, -2186, -994, -1792, -10622, -9502], - [0, -1654, -932, -1452, -2293], - [0, -3577, -3113, -3673, -3844, -1334, -687], - [1, 3, 5630], - [0, 5631, 5632, 7, 4], - [0, -679, -10623, -6696, -2531], - [0, -711, -1654, -2198, -2210], - [1, 3, 5634], - [0, 5635, 5636, 5637, 4], - [0, -6838, -1107, -10532, -1442, -9641, -1542, -1548], - [0, -1127, -1144, -1149, -9650, -9280, -1158, -1972, -2210], - [0, -9219, -2548, -6838, -1127, -727], - [1, 3, 5639], - [0, 5640, 5641, 5642, 4], - [0, -506, -1686, -1872, -10624], - [0, -1127, -1132, -2889, -2541], - [0, -3015, -1107, -1127, -6994, -5572, -10625, -5574, -4792, -8906], - [1, 3, 5644], - [0, 0, 5645, 7, 6], - [0, -756, -932, -966, -1415, -1942, -2251], - [1, 3, 5647], - [0, 5648, 5649, 5650, 4], - [ - 0, -10293, -1586, -10626, -10627, -10628, -10629, -10630, -10631, -2783, -10632, -10633, -10634, -10635, -10636, - -10637, -10638, -10639 - ], - [0, -1729, -2337], - [ - 0, -7646, -3844, -3578, -3673, -3577, -3113, -754, -1640, -3691, -4215, -3690, -1971, -1586, -3445, -3100, - -10640, -1339, -1334, -5735, -1342 - ], - [1, 3, 5652], - [0, 5653, 5654, 5655, 4], - [0, -10347], - [ - 0, -527, -528, -534, -535, -6079, -559, -10641, -571, -10642, -647, -754, -940, -1127, -5974, -1130, -1136, - -1137, -1148, -1149, -10643, -1152, -1655, -10644, -7845, -1161, -10645, -7848, -1344, -1534, -1542, -1654, - -1942, -10646, -5508, -2410, -2416, -2501, -2505 - ], - [0, -10647, -10648, -6005, -10649], - [1, 3, 5657], - [0, 5658, 27, 7, 11], - [0, -523, -812, -10650, -2550], - [1, 3, 5660], - [0, 5661, 5662, 5663, 4], - [0, -755, -812, -1026, -10651, -2550], - [ - 0, -528, -6048, -554, -558, -559, -849, -869, -932, -943, -958, -959, -966, -968, -972, -974, -1415, -1806, - -10652, -2177 - ], - [0, -10653, -10654, -5880, -10655, -7148, -2552, -1764, -8170, -7107, -1838], - [1, 3, 5665], - [0, 0, 0, 5666, 4], - [0, -3209, -10656, -2444], - [1, 3, 5668], - [0, 0, 0, 5669, 4], - [0, -3184, -3209, -10656, -2444], - [1, 3, 5671], - [0, 0, 0, 5672, 10], - [0, -10657, -7370], - [1, 3, 5674], - [0, 0, 0, 5675, 4], - [0, -10657, -656], - [1, 3, 5677], - [0, 0, 0, 5678, 5], - [0, -10657, -10658], - [1, 3, 5680], - [0, 0, 0, 5681, 4], - [0, -10657, -811], - [1, 3, 5683], - [0, 0, 0, 5684, 5], - [0, -10657, -10659], - [1, 3, 5686], - [0, 0, 0, 5687, 5], - [0, -10657, -5841], - [1, 3, 5689], - [0, 0, 0, 5690, 5], - [0, -10657, -6283], - [1, 3, 5692], - [0, 0, 0, 5693, 9], - [0, -10657, -9052], - [1, 3, 5695], - [0, 0, 0, 5696, 9], - [0, -10657, -10660], - [1, 3, 5698], - [0, 0, 0, 5699, 4], - [0, -10657, -10661], - [1, 3, 5701], - [0, 0, 0, 5702, 4], - [0, -10657, -10662], - [1, 3, 5704], - [0, 0, 0, 5705, 4], - [0, -1548, -10657, -10656, -2444], - [1, 3, 5707], - [0, 0, 0, 5708, 5], - [0, -10657, -10663], - [1, 3, 5710], - [0, 0, 0, 5711, 4], - [0, -10657, -10664], - [1, 3, 5713], - [0, 0, 0, 5714, 4], - [0, -10657, -6917], - [1, 3, 5716], - [0, 0, 0, 5717, 10], - [0, -10657, -5913], - [1, 3, 5719], - [0, 0, 0, 5720, 4], - [0, -10657, -1631], - [1, 3, 5722], - [0, 0, 0, 5723, 4], - [0, -10657, -10665], - [1, 3, 5725], - [0, 0, 0, 5726, 5], - [0, -10657, -10666], - [1, 3, 5728], - [0, 0, 0, 5729, 5], - [0, -10657, -8127], - [1, 3, 5731], - [0, 5732, 0, 5733, 4], - [0, -9496, -9497], - [0, -10657, -3110], - [1, 3, 5735], - [0, 0, 0, 5736, 5], - [0, -10657, -7329], - [1, 3, 5738], - [0, 0, 0, 5739, 4], - [0, -10657, -10667], - [1, 3, 5741], - [0, 5742, 5743, 5744, 5], - [0, -6703, -8038, -922, -7219, -10668, -10669, -10670], - [0, -1788, -2322, -1344, -10671, -932, -4896, -10672, -1534, -6707, -6709, -6706, -6708], - [0, -1573, -3444, -812, -648, -2520], - [1, 3, 5746], - [0, 5747, 5748, 5749, 5], - [0, -8416, -6861], - [0, -2541, -519, -2384, -2269], - [0, -4112, -687, -7095, -3958, -8132, -8618, -8619, -8620, -1040, -8621, -7084, -1573, -5545, -3974, -3973], - [1, 3, 5751], - [0, 5752, 5753, 5754, 4], - [0, -480, -690, -2219, -2269, -2528], - [0, -3037, -2267, -10673, -2384, -6786, -2541], - [ - 0, -1573, -3444, -5545, -687, -3974, -4110, -4000, -5550, -10674, -10675, -10676, -8991, -3973, -1959, -10677, - -5176 - ], - [1, 3, 5756], - [0, 5757, 5758, 5759, 5], - [0, -10678, -812, -7142, -2124, -10679], - [ - 0, -86, -3307, -10680, -5902, -9818, -932, -934, -940, -8246, -958, -967, -1077, -1344, -1392, -1788, -1942, - -1972, -2319, -2410 - ], - [0, -5545, -1573, -6459, -3966], - [1, 3, 5761], - [0, 0, 5762, 5763, 5], - [ - 0, -9569, -3037, -1127, -1132, -1134, -1136, -1137, -10681, -1144, -1148, -1149, -10682, -10683, -1412, -2379, - -2410 - ], - [0, -1573, -3444, -5545, -4865], - [1, 3, 5765], - [0, 0, 5766, 5767, 10], - [0, -6132, -1942, -2410], - [0, -10684, -1578, -10685], - [1, 3, 5769], - [0, 5770, 5771, 5772, 6], - [ - 0, -888, -828, -10686, -510, -812, -10330, -1004, -10687, -583, -615, -1369, -1752, -617, -2185, -10688, -10689, - -10690, -10691, -10692, -2425, -10693, -10694, -10695, -10696 - ], - [ - 0, -1788, -664, -1127, -1471, -1654, -2210, -2518, -932, -756, -1132, -10697, -2293, -633, -838, -2211, -1155, - -1482, -1152, -744, -10698, -10699, -1010, -1130, -1156, -1472, -10700, -1149, -10701, -1148, -10354, -10702, - -1475, -10355, -10703, -1479, -7707 - ], - [ - 0, -3578, -5728, -3691, -3690, -1004, -2118, -1501, -6120, -7107, -5378, -1691, -7684, -6857, -1671, -10704, - -1682, -10425, -6321, -2227, -10705, -3161, -3162, -10706 - ], - [1, 3, 5774], - [0, 5775, 5776, 196, 5], - [0, -3187], - [0, -633, -913, -2319], - [1, 3, 5778], - [0, 5779, 5780, 5781, 9], - [0, -10707], - [ - 0, -2392, -1344, -2331, -932, -1548, -825, -2379, -2410, -3037, -3044, -3617, -86, -10708, -10709, -5918, - -10710, -3307 - ], - [0, -7685, -7773, -891, -10711, -10712, -1055, -4182, -8427, -10713, -10714, -4865, -985], - [1, 3, 5783], - [0, 0, 5784, 5785, 5], - [0, -3037, -589, -928, -1610, -1650, -1942, -2319, -2386, -2402], - [0, -10715, -10413, -3324], - [1, 3, 5787], - [0, 0, 5788, 5789, 10], - [0, -3561, -407, -3667, -2127, -2132, -2410, -2466, -2469, -10716, -10717, -10718], - [0, -10719, -10720, -10721, -10722, -10723, -10724, -10725, -10726, -10727], - [1, 3, 5791], - [0, 5792, 5793, 5794, 9], - [0, -510, -596, -10728, -1696], - [0, -756, -1405, -1650, -1654, -1657, -2198], - [ - 0, -6527, -640, -10729, -1958, -10095, -7069, -7068, -9235, -8640, -7715, -8642, -7066, -10730, -10731, -7334, - -10732, -10733, -6337, -10502, -10734, -10735, -10736, -4162, -10737, -10738, -10739, -10740, -10741 - ], - [1, 3, 5796], - [0, 5797, 5798, 5799, 5], - [0, -10742, -10743, -6789, -10508, -717, -718, -10744, -10293, -1501, -10745, -1805, -1982, -6791, -7576], - [0, -1448, -10639, -1729, -10746, -2337], - [0, -1586, -3844, -1334, -5735, -1342, -3445, -1339, -7646, -3578], - [1, 3, 5801], - [0, 5802, 5803, 5804, 8], - [ - 0, -668, -715, -812, -910, -5672, -10415, -10747, -1040, -1075, -1286, -10748, -1292, -1380, -1442, -10521, - -10749, -1650, -1816, -1951, -5353, -4242, -2098, -2101, -10750, -3669, -2359, -7699, -2427, -7669, -2429, - -5356, -2446, -5358, -2518, -2530, -10751, -2550 - ], - [ - 0, -10752, -3198, -5334, -3660, -10753, -10754, -3037, -3628, -4231, -3738, -10755, -9284, -3041, -767, -8364, - -2218, -2269, -2410, -2447 - ], - [0, -1599, -10756, -10757, -3634, -856], - [1, 3, 5806], - [0, 5807, 5808, 5809, 8], - [0, -3115], - [0, -190, -351, -3561, -589, -8349, -740, -932, -1942, -2910, -2127, -2232, -2234, -2469], - [0, -2265, -10758, -6915, -7651, -6431], - [1, 3, 5811], - [0, 5812, 5813, 5814, 6], - [0, -2531, -523, -1449, -2387, -997, -1548, -1388, -3679, -7967], - [0, -932, -2402, -4204, -2410, -3037, -1771, -4647, -3044, -428, -4659, -10759, -427], - [ - 0, -10760, -8911, -2410, -840, -4601, -9111, -3214, -10761, -10762, -10763, -10764, -10765, -9840, -10766, - -10767, -7085, -10768, -10769, -856, -10770, -10771, -1589 - ], - [1, 3, 5816], - [0, 5817, 5818, 5819, 4], - [0, -668, -1015, -1111, -2462, -1686, -1849, -2271], - [0, -1127, -1654, -2198, -1132], - [0, -622, -1168, -7419, -9219], - [1, 3, 5821], - [0, 0, 5822, 5823, 4], - [0, -4035, -3037, -519, -1119, -10772, -2331, -2384, -2541], - [ - 0, -8988, -1650, -9218, -7411, -7410, -7421, -7420, -1847, -8807, -6370, -10773, -10774, -7371, -8990, -1076, - -7422, -7000 - ], - [1, 3, 5825], - [0, 0, 0, 5826, 5], - [0, -9218], - [1, 3, 5828], - [0, 5829, 5830, 5831, 4], - [0, -4733, -503, -578, -615, -10775, -1468, -10776, -1850, -2424, -2538], - [0, -3037, -633, -10777, -10778, -932, -10779, -1654, -2330, -2410, -2416], - [0, -8703, -3264, -10780, -10781, -1599, -3437], - [1, 3, 5833], - [0, 5834, 5835, 5836, 6], - [ - 0, -3698, -6486, -10782, -10783, -10784, -10785, -10786, -10787, -10788, -10789, -469, -583, -668, -3910, -3911, - -693, -9229, -9759, -1442, -1465, -1540, -1658, -1692, -1729, -1753, -1851, -1857, -1878, -2080, -2153, -2193, - -2223, -2245, -2409, -10790, -2435 - ], - [ - 0, -10791, -10792, -4353, -10793, -10794, -2980, -8850, -10795, -3617, -3660, -4201, -5363, -4203, -427, -428, - -932, -940, -967, -1076, -1415, -1847, -1942, -2234, -2293, -2375, -2376, -2383, -2410 - ], - [ - 0, -3445, -3690, -3691, -3967, -2410, -7685, -10796, -10797, -7643, -10798, -10799, -10800, -10801, -10802, - -3742, -10425, -1691, -2409, -5406, -6120, -3173, -10803, -6005, -5940, -10804, -10805, -10806, -10807, -10808, - -10809, -6113, -10810, -1594 - ], - [1, 3, 5838], - [0, 0, 5839, 5840, 5], - [ - 0, -3244, -2658, -250, -252, -254, -10811, -10812, -3044, -3037, -3040, -3052, -427, -428, -703, -784, -932, - -10813, -970, -1548, -2634, -1889, -1891, -1906, -10814, -10815, -1942, -2006, -2019, -2193, -4245, -2592, - -2391, -2410 - ], - [ - 0, -3160, -10816, -10817, -3824, -10818, -10819, -2006, -10820, -2410, -3214, -3577, -3100, -3477, -3160, - -10821, -4015, -7566, -10822, -3095 - ], - [1, 3, 5842], - [0, 0, 5843, 7, 5], - [0, -8392, -8394, -8393, -994, -8388], - [1, 3, 5845], - [0, 0, 5846, 5847, 6], - [ - 0, -3037, -427, -428, -3664, -518, -652, -932, -935, -948, -1449, -10823, -2162, -2281, -3436, -2410, -2466, - -6859, -2469 - ], - [0, -10824, -3004, -3862, -10825, -5553], - [1, 3, 5849], - [0, 5850, 71, 5851, 4], - [0, -1758], - [0, -1599, -10826, -3272], - [1, 3, 5853], - [0, 5854, 5855, 5856, 5], - [0, -503, -3223, -10827, -10828, -10829, -10830], - [ - 0, -3326, -350, -351, -3266, -5514, -589, -652, -664, -932, -943, -1004, -1103, -1304, -1429, -3245, -1602, - -3650, -1603, -3427, -10831, -10832, -10833, -10834, -3651, -3668, -1654, -10835, -1708, -2127, -2195, -2293 - ], - [0, -1599, -3215, -8630, -1600, -10836], - [1, 3, 5858], - [0, 0, 5859, 5860, 8], - [0, -3234, -519, -3425, -1637, -2234, -2250], - [0, -1599, -1600, -10836, -5147, -10837], - [1, 3, 5862], - [0, 0, 230, 5863, 5], - [0, -10836, -1600, -1599], - [1, 3, 5865], - [0, 0, 230, 5866, 8], - [0, -10836, -1600, -1599, -10838, -10839, -10840, -10841], - [1, 3, 5868], - [0, 5869, 5870, 5871, 4], - [0, -719, -883, -1015, -1304, -1860, -2102, -10842, -2347, -2359], - [0, -756, -1405, -10843, -2250, -2322], - [0, -1599, -6528, -5845, -3110], - [1, 3, 5873], - [0, 0, 5874, 5875, 4], - [0, -3037, -652, -668, -1942, -2094, -2100, -2269, -2399, -2410, -2541], - [0, -9846, -1599, -10844, -4002, -6724, -5554], - [1, 3, 5877], - [0, 0, 5878, 5879, 11], - [0, -7057, -3037, -3040, -3052, -10845, -928, -2006, -2019, -2034, -10106, -10846, -2410, -2476], - [0, -1599, -10847, -2006, -1940, -4146, -2476, -5173, -3944, -9608, -10848, -2034, -3264], - [1, 3, 5881], - [0, 5882, 88, 5883, 4], - [0, -725, -10849, -1125, -10850, -10851, -10852, -1646, -10853, -9323, -2102, -10854, -9403], - [ - 0, -10837, -8630, -3671, -10855, -856, -10856, -10857, -9409, -10858, -1599, -3437, -3862, -4328, -4846, -2102, - -10859, -7650, -4065, -4002, -10860, -10861, -10862, -6234 - ], - [1, 3, 5885], - [0, 5886, 5887, 5888, 5], - [0, -1638, -10863, -10864, -10865, -10866, -10867, -10868, -10869, -2267], - [ - 0, -190, -3748, -469, -519, -652, -2736, -932, -960, -965, -971, -978, -10870, -1111, -1442, -8274, -1461, - -1600, -10831, -10834, -3651, -10871, -8345, -1771, -2335, -2362, -2410, -2501, -2503 - ], - [0, -1599, -7148, -3437, -10872, -1608], - [1, 3, 5890], - [0, 5891, 5892, 5893, 10], - [0, -719, -822, -1353, -1442, -1461, -10873, -1608, -1600, -1645, -10874, -10430, -2654], - [0, -519, -8345, -2541], - [0, -1599, -1608, -687, -5732], - [1, 3, 5895], - [0, 0, 5896, 5897, 4], - [ - 0, -2832, -10875, -10876, -7040, -3471, -3472, -7041, -7042, -674, -8630, -767, -5382, -928, -10877, -932, - -1304, -1600, -10878, -10879, -10880, -2125, -2174, -9764, -2387, -2410 - ], - [0, -1599, -10881, -3264], - [1, 3, 5899], - [0, 5900, 5901, 163, 4], - [ - 0, -4321, -4322, -3649, -4323, -4309, -4320, -4308, -1395, -4313, -4318, -4314, -4315, -4311, -4316, -4319, - -1550, -1554, -4317, -1600, -1603, -4324, -4325, -3430, -4312, -2161, -4310 - ], - [0, -633, -674, -1107, -4327, -1654, -4326, -2250, -2251], - [1, 3, 5903], - [0, 5904, 0, 7, 4], - [0, -891, -10882], - [1, 3, 5906], - [0, 5907, 0, 160, 10], - [0, -567, -10883, -1493, -1566, -1571, -1967, -10884, -2055, -2069, -10885, -2489], - [1, 3, 5909], - [0, 5910, 5911, 5912, 8], - [0, -44, -10886, -10300, -10887, -5898, -10888, -2172, -6751, -10889], - [ - 0, -23, -5585, -3391, -38, -40, -43, -8380, -3621, -427, -428, -507, -534, -652, -708, -824, -10890, -920, -932, - -940, -943, -958, -964, -965, -967, -968, -1002, -10891, -1022, -1107, -1168, -1174, -1276, -10892, -1471, - -1479, -1482, -1483, -1491, -3079, -1492, -1650, -1654, -1656, -10893, -10894, -10895, -10896, -10897, -10898, - -1942, -1958, -2210, -10899, -2354, -2379, -2410, -2501, -10900 - ], - [0, -10684, -10901, -7163, -10902, -10903, -3215, -8130, -6240, -6245, -10904, -10905, -7521, -5119], - [1, 3, 5914], - [0, 5915, 5916, 7, 10], - [0, -6130, -10906, -5852], - [0, -1654, -2501], - [1, 3, 5918], - [0, 0, 5919, 5920, 9], - [0, -1654, -2250], - [0, -1616, -10907, -10908], - [1, 3, 5922], - [0, 5923, 5924, 5925, 4], - [0, -4251, -4231, -10909, -9596, -5348, -1638, -10910, -10911, -10912, -10913, -10869, -10914], - [0, -3037, -652, -10915, -928, -7324, -2586, -1290, -1619, -10916, -1942, -2094, -2100, -2334, -2399, -2410, -2541], - [0, -3272, -1599, -10881, -10917, -10918, -1838, -4132, -10919, -9590, -3590, -2444], - [1, 3, 5927], - [0, 5928, 5929, 5930, 5], - [0, -5334, -4251, -9581, -9596, -10920, -10921, -9583, -2429, -5358], - [0, -3037, -9586, -652, -1290, -1294, -1618, -10922, -10923, -1942, -2094, -2100, -2399, -2410, -2541], - [0, -9590, -10918, -10917, -9589, -9588, -2444, -3590, -1599, -3264], - [1, 3, 5932], - [0, 0, 5933, 5934, 6], - [0, -469, -4712], - [0, -6582, -10924, -10925, -775], - [1, 3, 5936], - [0, 5937, 0, 5938, 5], - [0, -10926, -10927], - [0, -10928, -3324, -3323, -9844, -10929, -10930, -10931, -10932, -1622, -10933, -7684], - [1, 3, 5940], - [0, 5941, 5942, 5943, 4], - [0, -10934, -10935, -10936, -10937, -10938, -10939, -10940, -10941, -10942, -10943, -10944, -10945, -10946, -2387], - [ - 0, -3136, -6325, -3037, -496, -507, -640, -1331, -1344, -10947, -1415, -1848, -1942, -1958, -2062, -2125, -2325, - -2375, -2376, -2379, -2388, -10948, -2410, -2435, -2444, -2501, -2503, -2505 - ], - [ - 0, -1076, -7422, -10949, -1626, -1623, -6656, -8801, -10467, -10412, -10950, -9614, -4004, -3634, -4215, -10951, - -10952, -10953, -10954, -10955, -10956, -10957, -10958 - ], - [1, 3, 5945], - [0, 0, 5946, 5947, 5], - [ - 0, -5295, -3268, -3136, -10959, -8216, -3037, -427, -428, -589, -767, -932, -940, -959, -967, -1002, -10960, - -1415, -1559, -1565, -1605, -10961, -5969, -9642, -10962, -1816, -1942, -2125, -2127, -2138, -2140, -2141, - -2214, -2375, -2379, -2387, -2410 - ], - [0, -5913, -10963, -3324, -6187], - [1, 3, 5949], - [0, 0, 5950, 5951, 5], - [0, -664, -1168, -2210, -10964, -1231, -2211, -1224, -1220, -1453], - [0, -3324, -10965, -5493, -6005], - [1, 3, 5953], - [0, 5954, 5955, 5956, 8], - [0, -10966, -2062], - [0, -599, -6774, -756, -932, -1405, -1654, -2198], - [0, -1076, -10412], - [1, 3, 5958], - [0, 0, 5959, 5960, 5], - [0, -1003, -1654, -1127, -1132, -1156, -1144, -1980], - [0, -10412, -4004, -5827, -3674, -8027, -640], - [1, 3, 5962], - [0, 0, 5963, 7, 4], - [0, -1654, -2198, -1733], - [1, 3, 5965], - [0, 68, 15, 16, 6], - [1, 3, 5967], - [0, 0, 5968, 5969, 5], - [ - 0, -350, -4062, -351, -5918, -5686, -519, -10967, -722, -813, -10968, -10969, -999, -1111, -1366, -10970, -6904, - -3609, -2060, -5120, -2127, -2132, -2134, -4621, -10971, -2384, -2400, -2410, -2541, -2551 - ], - [ - 0, -687, -8425, -2444, -3590, -4187, -4378, -3957, -6722, -1630, -10972, -10973, -3215, -5829, -5272, -3962, - -7095, -4000 - ], - [1, 3, 5971], - [0, 0, 5972, 5973, 4], - [0, -3035, -3621, -3037, -664, -726, -1654, -2410, -2501, -2503], - [0, -1631, -7371, -1015, -702, -7208, -4865], - [1, 3, 5975], - [0, 0, 5976, 7, 4], - [0, -10974, -1405], - [1, 3, 5978], - [0, 5979, 5980, 5981, 4], - [0, -679, -719, -812, -1125, -6796, -10975, -1639, -10976, -10977], - [ - 0, -3244, -190, -10978, -4715, -3198, -4036, -3037, -10979, -652, -932, -958, -965, -1110, -1654, -1942, -2091, - -2362, -2410 - ], - [0, -5142, -5372, -6656, -9204, -3258, -3260, -3262, -1599, -3259, -1633, -2548], - [1, 3, 5983], - [0, 5984, 0, 7, 10], - [0, -10980, -5676, -1343, -10981, -10982, -2125, -2177, -2323, -2359], - [1, 3, 5986], - [0, 5987, 5988, 7, 8], - [0, -2453, -812, -1636, -1840], - [0, -1654, -932, -1405, -2293, -966, -958, -968, -943, -963, -974], - [1, 3, 5990], - [0, 0, 5991, 5992, 5], - [0, -1654, -1405], - [0, -1334, -1636], - [1, 3, 5994], - [0, 5995, 5996, 5997, 11], - [ - 0, -23, -26, -10983, -3077, -3203, -3408, -3357, -40, -6056, -41, -4066, -3326, -350, -4062, -351, -10984, - -10985, -518, -3766, -10986, -10987, -9459, -644, -656, -930, -1044, -1273, -1496, -1566, -1889, -1948, -2127, - -5994, -4753, -2140, -2142, -2144, -5037, -2334, -10988, -2387, -2410 - ], - [ - 0, -21, -5870, -10989, -8280, -50, -533, -767, -10990, -932, -10991, -940, -967, -985, -1077, -1344, -1415, - -1534, -10992, -1942, -2082, -2125, -2194, -2269 - ], - [0, -4161, -2127, -10993], - [1, 3, 5999], - [0, 6000, 0, 6001, 4], - [ - 0, -3198, -812, -10909, -9596, -10863, -10994, -7666, -10995, -10996, -10910, -2785, -10912, -10997, -10920, - -10998, -10913, -10869 - ], - [ - 0, -8630, -3116, -4329, -3264, -7184, -1599, -10881, -3437, -2427, -1838, -3215, -3862, -1958, -2093, -7650, - -4065, -8451, -3579 - ], - [1, 3, 6003], - [0, 6004, 6005, 6006, 5], - [0, -9968, -1864], - [0, -1654, -1645, -10999, -1202], - [ - 0, -6836, -11000, -11001, -7727, -11002, -8130, -9969, -11003, -6656, -6999, -7724, -5573, -1107, -9095, -9096, - -9970, -11004, -11005, -11006, -5572, -5912, -3581, -10590, -1639, -1645, -1686, -11007, -11008, -1847, -5574, - -5064, -11009, -5569, -5570, -8129, -5550, -11010, -9087 - ], - [1, 3, 6008], - [0, 0, 6009, 6010, 4], - [0, -11011, -3713, -3037, -427, -428, -668, -11012, -1641, -1942, -11013, -11014, -2410], - [0, -5195, -6656, -1640, -11015, -11016, -2444], - [1, 3, 6012], - [0, 6013, 129, 6014, 10], - [0, -11015], - [0, -1640, -3694], - [1, 3, 6016], - [0, 119, 120, 6017, 4], - [ - 0, -11017, -11018, -11019, -11020, -11021, -11022, -11023, -11024, -11025, -11018, -11026, -11027, -11028, - -11029, -11030, -11031, -11032, -11033, -11034, -11035, -11036, -9234, -11037, -11038, -11039, -11040, -11041, - -11042, -11043, -11044, -11045, -11046, -7530, -11047, -11048, -7561, -7562, -3214, -7484, -7485, -3756, -2410, - -7486, -4165, -3018, -11049, -7283, -6582, -7534, -7535, -7536, -7537, -7538, -7539, -7540, -7541, -7542, -7543, - -7544, -7545, -8807, -6599, -5756, -11050, -11051, -7503, -7371, -7546, -7547, -7548, -6948, -7549, -7550, - -7551, -7552, -7553, -7554, -7555, -7556, -7557, -2444, -7558, -7559, -5063, -7560, -11052, -6187, -7563, -856, - -7275 - ], - [1, 3, 6019], - [0, 6020, 6021, 6022, 11], - [0, -2168, -2321], - [ - 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -3037, -620, -767, -774, -778, -824, -825, -920, -932, -940, - -6929, -958, -959, -960, -965, -967, -978, -1041, -1110, -1344, -1415, -1419, -1449, -1534, -1623, -1771, -1942, - -2162, -2163, -2251, -2410, -2411, -2501, -2503, -2505 - ], - [0, -2501, -775, -7347, -6211], - [1, 3, 6024], - [0, 6025, 6026, 6027, 5], - [0, -11053, -367, -683, -11054, -812, -928, -1047, -11055, -3751, -11056, -11057, -2334, -11058, -11059], - [0, -11060, -932, -11061, -11062, -4653, -11063], - [0, -1644, -7173, -3756, -775, -5094, -3264, -6118], - [1, 3, 6029], - [0, 6030, 6031, 7, 11], - [0, -11064], - [0, -2319, -2386, -1650, -2402, -1942, -3037], - [1, 3, 6033], - [0, 0, 6034, 6035, 4], - [0, -515, -1788, -2322, -932, -1777, -1365, -516, -2156, -5834], - [0, -4378, -9568, -3215, -1813], - [1, 3, 6037], - [0, 6038, 6039, 6040, 4], - [0, -719, -1730], - [0, -8477, -1415, -1942, -2375, -2410], - [0, -11065, -11066, -11067], - [1, 3, 6042], - [0, 0, 6043, 6044, 9], - [0, -11068, -3037, -5866, -652, -940, -1942, -2319, -2379, -2402, -2410], - [0, -8988, -7421, -11069, -9218, -11070, -7371, -5269], - [1, 3, 6046], - [0, 6047, 6048, 7, 5], - [0, -461, -1852, -6568, -11071], - [0, -3037, -3664, -672, -932, -944, -3190, -1431, -1942, -6570, -2410, -2423, -2469], - [1, 3, 6050], - [0, 0, 6051, 6052, 4], - [0, -23, -26, -33, -38, -40, -42, -44, -11072, -1059], - [0, -1652, -11073, -5927, -3159, -2006, -3476, -11074, -6106, -11075, -11076, -11077, -11078], - [1, 3, 6054], - [0, 6055, 6056, 6057, 5], - [0, -11079], - [0, -1652, -11079, -11080], - [0, -1652, -11073, -3159, -2006, -3476, -11074], - [1, 3, 6059], - [0, 6060, 6061, 6062, 4], - [ - 0, -1297, -1681, -834, -1107, -812, -2550, -1047, -1442, -679, -1645, -1863, -3730, -1574, -2551, -11081, -7408, - -2297, -11082, -2271, -930, -2182 - ], - [ - 0, -1788, -664, -1498, -1446, -1471, -2210, -11083, -932, -1708, -2093, -2125, -2127, -2177, -1110, -11084, - -2501, -1942, -767, -190, -11085, -2410, -11086, -3037, -1339, -1482, -1600, -2503, -3041, -711, -1607, -1772, - -4655, -27, -11087, -11088, -11089, -11090, -965, -3781, -1609, -11091, -3425, -1603, -3060, -1601, -4062, - -11092, -4066, -1483, -1488, -1475, -350, -11093, -2144, -5995, -2136, -351, -9701, -11094, -11095 - ], - [0, -1654, -4004, -3440, -4873, -2319, -3634, -664, -5855, -519, -1415, -2322, -1412, -1471], - [1, 3, 6064], - [0, 6065, 6066, 6067, 6], - [0, -4377, -1978], - [0, -664, -1654, -10534, -2410], - [0, -1654, -3636, -1978, -11096], - [1, 3, 6069], - [0, 6070, 6071, 6072, 5], - [0, -812, -1616, -1650, -2269, -6597], - [0, -357, -664, -11097, -932, -1654, -2125, -11098, -11099], - [0, -1654, -11100, -6863], - [1, 3, 6074], - [0, 0, 0, 6075, 11], - [0, -1654, -6863, -11101, -4005], - [1, 3, 6077], - [0, 0, 6078, 6079, 5], - [0, -664, -932, -9072, -1654, -2125, -2177], - [0, -4215, -1076, -4004, -8101, -8801, -10412], - [1, 3, 6081], - [0, 6082, 6083, 6084, 8], - [0, -11102, -1083, -11103, -11104, -1285, -1402, -1794], - [ - 0, -2832, -5834, -8084, -11105, -11106, -11107, -11108, -11109, -8088, -11110, -8089, -8939, -8090, -8091, - -8092, -8093, -3037, -11111, -8094, -8096, -516, -5835, -921, -932, -993, -1065, -1283, -1365, -1777, -1788, - -2156, -2322 - ], - [0, -3634, -4215, -7208, -7153, -5846, -11112, -4004, -6693, -11113], - [1, 3, 6086], - [0, 6087, 6088, 231, 4], - [0, -5505, -1759], - [0, -767, -932, -1654], - [1, 3, 6090], - [0, 0, 27, 6091, 6], - [0, -4004, -4215, -3966, -1076, -3972], - [1, 3, 6093], - [0, 0, 6094, 6095, 5], - [0, -1654, -2127, -2142, -2198, -2410], - [0, -4121, -4215, -4004], - [1, 3, 6097], - [0, 0, 6098, 6099, 6], - [0, -1405, -1452, -2210, -11115, -2471], - [0, -4215, -8611, -4792, -3551, -3324, -5119, -4004, -11116, -3634, -4873], - [1, 3, 6101], - [0, 75, 6102, 6103, 5], - [0, -1168, -1190, -11117, -1220, -1224, -1231, -11118, -1452, -1453, -2501], - [0, -4215, -11119, -11120], - [1, 3, 6105], - [0, 6106, 6107, 6108, 4], - [0, -4377, -1107, -1496, -1548, -11121, -1582, -1729, -995, -11122, -11123], - [ - 0, -1435, -2384, -11124, -1415, -1680, -11125, -1867, -812, -11126, -648, -11127, -865, -932, -1576, -11128, - -473, -1388, -1753, -11129, -2379, -2520, -11130, -11131, -1417, -11132, -1942, -756, -11133, -1418, -1765, - -2293, -11134, -1969, -2410, -11135, -3037, -11136, -11137, -11138, -11139, -11140, -11141, -11142, -11143, - -10453, -11144, -11145, -966, -11146, -357, -11147, -968, -940, -967, -972 - ], - [0, -11148, -6209, -3161, -3445, -11149, -7586, -11150, -11151, -5078, -9840, -11152], - [1, 3, 6110], - [0, 0, 6111, 6112, 5], - [0, -1989, -2127, -767, -2410, -3037, -1488], - [0, -1666, -4121, -4123, -1838, -3276, -5874, -1348, -9772, -11153], - [1, 3, 6114], - [0, 6115, 6116, 6117, 4], - [0, -1666], - [0, -1127, -1134, -1144, -1146, -1148, -10264, -2410], - [0, -1666, -4121, -4123, -11154, -11155, -11156, -11157, -11158], - [1, 3, 6119], - [0, 6120, 6121, 6122, 5], - [0, -1461, -11159, -11160, -11161, -11162, -1848, -1942, -11163, -11164, -11165, -2548], - [0, -11166, -2970, -3664, -928, -9002, -1874, -2094, -11167, -2410, -2469, -11168], - [0, -3496, -3100, -3577, -11169, -9002, -2548], - [1, 3, 6124], - [0, 0, 6125, 6126, 10], - [ - 0, -190, -3037, -3664, -932, -940, -972, -978, -1942, -2125, -2402, -2405, -7322, -2410, -2411, -2466, -6859, - -2469 - ], - [0, -11170, -11171, -11172, -5829, -11173, -3577, -3445], - [1, 3, 6128], - [0, 6129, 6130, 6131, 8], - [ - 0, -6779, -11174, -6780, -6777, -11175, -6776, -8843, -11176, -11177, -2997, -11178, -617, -620, -11179, -637, - -709, -719, -744, -767, -787, -865, -919, -1004, -4206, -1010, -1055, -11180, -11181, -1320, -1437, -3725, - -1635, -1671, -11182, -1676, -1863, -11183, -2185 - ], - [ - 0, -23, -32, -40, -11184, -11185, -534, -664, -684, -726, -748, -778, -795, -932, -934, -958, -978, -11186, - -1041, -1344, -1654, -11187, -1734, -1753, -2275, -2293, -2501, -2503 - ], - [0, -8856, -11188, -7558, -7685, -11189, -3964, -11190, -11191, -6857, -1671, -11192, -11193, -11194], - [1, 3, 6133], - [0, 6134, 6135, 6136, 8], - [0, -637, -11195, -11196], - [ - 0, -1788, -2384, -11197, -664, -668, -1654, -2210, -11198, -2550, -932, -2177, -11199, -1004, -1442, -2379, - -1942, -2211, -2410, -3241, -3035, -3037, -667, -11200, -3621, -4372, -11201, -3199, -3617, -11202, -11203, - -11204, -11205, -3625, -11206, -11207, -2234, -964, -977, -940, -967, -264, -262, -428, -11208, -6424, -9724, - -11209, -427, -4814, -234 - ], - [0, -1671, -9879, -5041], - [1, 3, 6138], - [0, 6139, 6140, 6141, 10], - [0, -11210, -1671, -11211, -11212, -1681, -11213], - [ - 0, -11214, -11215, -3037, -11216, -11217, -11218, -469, -652, -674, -7743, -932, -5984, -1004, -1077, -1304, - -9150, -1559, -11219, -8554, -1610, -1650, -1654, -1666, -11208, -11187, -11220, -1705, -1974, -2210, -2655, - -2410, -2411, -2446 - ], - [0, -1671, -10855, -6106, -4058, -7685, -11221, -6582, -11222, -5101, -7684, -1818, -7773], - [1, 3, 6143], - [0, 6144, 232, 6145, 5], - [0, -763, -727, -573, -2228, -2424, -2229, -11223], - [0, -1673, -11224, -11225, -8841, -11226, -11227], - [1, 3, 6147], - [0, 6148, 232, 6149, 5], - [0, -727, -729, -1673, -11228, -11223], - [0, -1673, -11229, -11224, -11225, -11230, -5412, -8841, -11231], - [1, 3, 6151], - [0, 6152, 6153, 6154, 8], - [0, -11232, -812, -1671, -11233, -11234, -11235, -11236, -11237, -11238, -1792], - [ - 0, -519, -708, -932, -943, -950, -958, -966, -968, -974, -11239, -11240, -11241, -11242, -11243, -11244, -11245, - -1788 - ], - [0, -1675, -1671, -6857, -9879], - [1, 3, 6156], - [0, 6157, 6158, 6159, 5], - [0, -579, -812, -828, -1800, -6825], - [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2239, -2293], - [0, -1004, -1334, -3444, -5401], - [1, 3, 6161], - [0, 44, 15, 16, 10], - [1, 3, 6163], - [0, 6164, 6165, 6166, 10], - [ - 0, -2531, -2124, -812, -11198, -2240, -11246, -11247, -1646, -4204, -1582, -11248, -725, -11249, -2062, -11250, - -6279 - ], - [ - 0, -1788, -664, -2322, -2210, -932, -1109, -1650, -2125, -2198, -2226, -928, -1110, -2379, -679, -1942, -11251, - -190, -1939, -2091, -2410, -3035, -3037, -8096, -4372, -908, -11252, -11253, -3244, -11254, -5325, -3311, -4805, - -11255, -958, -940, -967, -428, -740, -3312, -11256, -427, -4646 - ], - [0, -1680, -11257, -8403, -8404], - [1, 3, 6168], - [0, 0, 6169, 7, 8], - [0, -1344, -1654, -932, -1942, -1003, -1534], - [1, 3, 6171], - [0, 6172, 6173, 6174, 10], - [0, -11258, -719, -812, -10414, -10417], - [0, -86, -3307, -7040, -3472, -7041, -7042, -1654, -2174, -2250], - [0, -7685, -1682, -10424, -3844, -11259, -10704, -11260, -11261, -10417, -11262, -10704, -11263, -5800, -11264], - [1, 3, 6176], - [0, 6177, 6178, 6179, 11], - [ - 0, -2946, -269, -4190, -11265, -743, -1122, -11266, -4193, -4194, -1851, -1863, -11267, -2255, -4195, -2364, - -2400, -11268, -2550 - ], - [ - 0, -86, -3307, -11269, -3244, -190, -11270, -3316, -4196, -4197, -3983, -3617, -11271, -3037, -11272, -427, - -428, -3310, -523, -5859, -720, -767, -768, -796, -928, -3808, -932, -940, -967, -1004, -1030, -8151, -1107, - -1449, -11273, -1498, -1534, -11274, -1942, -2910, -2082, -2125, -3246, -2391, -2410, -2411, -2426, -2437, - -2469, -4209, -2501, -4211, -1683 - ], - [0, -3690, -4215, -4041, -8615, -10807, -3844, -5196, -8481, -3634, -3577, -4725], - [1, 3, 6181], - [0, 6182, 6183, 6184, 4], - [0, -11275, -649, -725, -1650, -1792, -2401, -2546], - [0, -821, -1004, -1069, -11276, -1654, -1788, -2125, -2250, -11277], - [0, -4053, -9751, -6463, -1069, -11278, -1004, -5401], - [1, 3, 6186], - [0, 6187, 14, 6188, 4], - [0, -9491, -11279, -1645], - [0, -7727, -5573, -1107, -9095, -9096, -5572, -5912, -1645, -5574, -5064, -9087], - [1, 3, 6190], - [0, 6191, 6192, 6193, 5], - [0, -2418, -1335, -2155], - [0, -1788, -11280, -1654, -932, -1650, -2125, -2291, -2108, -963], - [0, -6656, -7764, -1070, -5827, -5940], - [1, 3, 6195], - [0, 6196, 6197, 6198, 4], - [0, -5573, -1077, -1462, -1548, -3222, -1805, -2446], - [0, -1412, -1788, -11281, -2091], - [0, -793, -3264, -11282, -1688, -11283, -11284], - [1, 3, 6200], - [0, 0, 6201, 6202, 4], - [0, -985, -664, -2568, -1654, -932, -1452, -2127, -1978, -2416], - [0, -1689, -3110, -3261, -888], - [1, 3, 6204], - [0, 0, 6205, 6206, 10], - [ - 0, -865, -1168, -1197, -1251, -1344, -1471, -1475, -1485, -1488, -11285, -11286, -1942, -10496, -1989, -2125, - -2127, -2334, -11287 - ], - [0, -4672, -3999, -11288, -7724, -7283, -7581], - [1, 3, 6208], - [0, 6209, 6210, 7, 11], - [0, -595, -2062, -2155, -11289], - [0, -465, -932, -2172, -11290, -11291, -11292], - [1, 3, 6212], - [0, 6213, 6214, 6215, 4], - [0, -1578, -9953, -10401, -1351, -11293, -11294, -11295, -11296], - [ - 0, -652, -2392, -11297, -1110, -1942, -589, -767, -190, -1888, -2410, -3037, -11298, -3244, -3560, -3606, -940, - -967, -428, -11299, -427, -5706 - ], - [0, -1691, -3323, -3844], - [1, 3, 6217], - [0, 6218, 6219, 6220, 11], - [0, -8993, -1792, -8994], - [0, -1405, -615, -1654], - [0, -8124, -1961, -11300, -11301, -3184], - [1, 3, 6222], - [0, 0, 6223, 6224, 4], - [0, -11302], - [0, -1784, -3966, -9318, -9800, -11303, -3966, -7304, -6845], - [1, 3, 6226], - [0, 0, 6227, 7, 4], - [0, -596, -719, -1107, -2105, -2062, -2319, -2546], - [1, 3, 6229], - [0, 0, 6230, 6231, 4], - [0, -2426, -3037, -2410], - [0, -11304, -6582, -2105, -4055, -7684, -11151, -1697, -7685], - [1, 3, 6233], - [0, 6234, 6235, 6236, 5], - [0, -3115, -781, -786, -11305, -10883, -11306, -7222, -3768], - [ - 0, -4757, -4754, -4749, -3136, -3037, -3140, -3040, -932, -4650, -1344, -11307, -1415, -1520, -11308, -1534, - -1942, -1967, -2006, -2019, -2052, -2125, -2234, -2376, -2387, -2410, -2501, -2502, -2505, -2552 - ], - [ - 0, -775, -5553, -3770, -11309, -1697, -11310, -2006, -3756, -11311, -3771, -11312, -11313, -3095, -2278, -11314, - -11315, -3271 - ], - [1, 3, 6238], - [0, 0, 0, 6239, 8], - [0, -2446, -6555, -7231, -2435], - [1, 3, 6241], - [0, 6242, 6243, 6244, 4], - [0, -7872, -523, -893, -1077, -11316, -11317, -1577, -1705, -11318, -2160, -2234, -2359, -2550], - [ - 0, -3198, -3048, -11319, -3136, -9143, -3037, -11320, -3628, -3041, -427, -428, -891, -932, -940, -967, -1415, - -1874, -1942, -2125, -2376, -2410, -2501, -2503 - ], - [0, -11321, -891, -3994, -5269, -8911], - [1, 3, 6246], - [0, 6247, 6248, 6249, 6], - [ - 0, -2531, -1816, -2323, -1430, -1805, -2446, -523, -712, -1875, -2550, -8898, -1548, -1576, -1610, -1650, -1831, - -2177, -7680, -2519, -2536, -987, -1966, -2195, -501, -679, -1942, -1981, -2378, -1645, -11322, -695, -2205, - -2231, -2410, -11323, -3950, -11324, -11325, -11326, -8888, -11327, -11328, -6294, -7772, -1982, -280, -11329, - -11330, -11331, -742, -8880, -11332, -11333, -11334, -11335, -11336 - ], - [ - 0, -664, -1127, -1344, -1654, -2210, -10645, -1405, -4204, -5673, -3035, -3037, -3738, -1162, -1534, -4248, - -11337, -11338, -4372, -3041, -11339, -3044, -11340, -3199, -11341, -11342, -11343, -3735, -3714, -6114, -11344, - -11345, -665, -1138, -2234, -1134, -1149, -11346, -11347, -4269, -11348, -3202, -11349, -740 - ], - [0, -1702, -2410, -3214], - [1, 3, 6251], - [0, 6252, 6253, 6254, 6], - [0, -11350, -11351, -11352, -865, -1339, -11353, -1672, -1857, -2071, -7967, -11354, -10899, -2424, -2446, -11355], - [ - 0, -350, -4062, -351, -9705, -3037, -427, -11356, -767, -932, -9106, -958, -965, -968, -1168, -1222, -11357, - -1412, -1413, -7148, -1705, -1788, -11358, -1972, -2125, -2127, -2210, -2234, -2250, -2379, -6416, -2410, - -11359, -2501, -7752 - ], - [ - 0, -11360, -11361, -7281, -11362, -11363, -3579, -11364, -11365, -11366, -11367, -11368, -11369, -11370, -11371, - -11372, -11373, -11374, -11375, -11376, -11377, -11378, -11379, -11380, -11381, -11382, -11383, -11384, -11385, - -11386 - ], - [1, 3, 6256], - [0, 6257, 6258, 6259, 9], - [0, -1371, -510, -2550, -11387], - [0, -1788, -2471, -932, -756, -11388, -2091, -4646], - [0, -3870, -11389, -11390], - [1, 3, 6261], - [0, 0, 6262, 6263, 5], - [0, -1654, -2125, -8986], - [0, -687, -6351], - [1, 3, 6265], - [0, 0, 6266, 6267, 5], - [0, -3037, -3040, -427, -428, -749, -932, -940, -967, -969, -970, -1380, -1942, -2387, -2410], - [0, -11391, -3486, -2006, -3994, -11392, -11393, -5069, -3445], - [1, 3, 6269], - [0, 6270, 6271, 6272, 4], - [0, -510, -1650, -2424, -1545, -11394], - [0, -664, -1654, -2210, -2105, -719, -11395], - [0, -7685, -11222, -10712], - [1, 3, 6274], - [0, 6275, 6276, 6277, 5], - [0, -1351, -2165], - [0, -1464, -7623, -1654, -1976, -1980, -2198, -2210, -2536], - [0, -1334, -1342, -5493, -2105, -3323, -6463, -7764, -1971, -6827, -7430, -9791, -9788, -743, -8937], - [1, 3, 6279], - [0, 6280, 0, 6281, 5], - [0, -11396, -11397, -719, -755, -1376], - [0, -687, -5406, -9668, -3957, -3958, -11398, -11313], - [1, 3, 6283], - [0, 6284, 6285, 6286, 8], - [ - 0, -11399, -510, -11400, -5676, -695, -714, -719, -790, -1044, -11401, -1548, -1650, -11402, -11403, -11404, - -11405, -1951, -2177, -11406, -2524, -2538 - ], - [ - 0, -11407, -664, -829, -11408, -7829, -932, -960, -7819, -964, -972, -1442, -1654, -1722, -1788, -11409, -2070, - -2188, -2195, -2210, -2536 - ], - [0, -1710, -11410, -3690, -3634, -6657, -11411, -3691], - [1, 3, 6288], - [0, 6289, 6290, 6291, 4], - [ - 0, -11412, -7603, -7604, -11413, -5038, -5777, -5775, -5791, -5779, -5778, -5780, -5782, -11414, -725, -1343, - -11415, -11273, -1459, -11416, -2062, -11417, -2177, -2522 - ], - [ - 0, -3698, -11418, -11419, -11420, -11421, -11422, -305, -11423, -11424, -11425, -469, -510, -521, -2917, -652, - -5980, -719, -741, -6906, -5983, -932, -960, -11426, -1107, -1116, -1344, -1446, -1534, -1547, -1722, -1969, - -1972, -2125, -11427, -2210, -2291 - ], - [0, -5805, -6187, -11230, -6032, -11428, -11429], - [1, 3, 6293], - [0, 6294, 6295, 6296, 5], - [0, -44, -11430, -743, -5193, -1791, -11431, -1940, -10105, -2446], - [ - 0, -3168, -21, -23, -6064, -38, -40, -41, -42, -11432, -367, -7043, -406, -407, -409, -2622, -410, -3136, -3037, - -11433, -11434, -3040, -3052, -518, -11435, -11436, -726, -784, -1415, -1419, -1428, -1683, -2634, -1889, -1891, - -1916, -2006, -2019, -2516 - ], - [0, -2006, -3967, -1791, -3175, -11437, -3173, -1713, -7204, -3177, -11438], - [1, 3, 6298], - [0, 0, 0, 6299, 5], - [0, -2634, -510, -11439, -11440], - [1, 3, 6301], - [0, 0, 0, 6302, 10], - [ - 0, -475, -4004, -3634, -4215, -4041, -3095, -8223, -11441, -11442, -5196, -11443, -11444, -3100, -3577, -1415, - -1412, -915, -8611, -6137 - ], - [1, 3, 6304], - [0, 6305, 0, 6306, 4], - [0, -5, -11445, -3946, -807, -2387], - [0, -3158, -3099, -475, -3160, -3161, -3100], - [1, 3, 6308], - [0, 6309, 6310, 6311, 4], - [0, -1116, -2446, -2548, -7004, -1018, -1552], - [0, -664, -668, -1654, -2210, -3037], - [0, -1716, -11446, -11447, -1546, -11448], - [1, 3, 6313], - [0, 0, 6314, 7, 10], - [0, -664, -729, -1654, -1974, -2187, -2286], - [1, 3, 6316], - [0, 6317, 6318, 6319, 6], - [0, -812, -11449, -10659, -891, -11450, -11451, -1451, -11452, -1650, -6810, -1801, -2125, -11453, -2240], - [ - 0, -510, -579, -11178, -615, -664, -665, -932, -940, -967, -1004, -1344, -1654, -11454, -1685, -1880, -1942, - -2187, -2239 - ], - [0, -1718, -891], - [1, 3, 6321], - [0, 6322, 6323, 6324, 6], - [ - 0, -11455, -11456, -11457, -3035, -11458, -6192, -5113, -6535, -623, -11459, -668, -680, -695, -11460, -11461, - -865, -888, -914, -1107, -1449, -1548, -1645, -1646, -1654, -11462, -1805, -1816, -8563, -2173, -2177, -11463, - -2269, -2430, -2446 - ], - [ - 0, -99, -367, -3037, -427, -428, -749, -767, -932, -1344, -1392, -1442, -1534, -1656, -3038, -11464, -11465, - -1663, -1722, -1788, -2006, -2019, -2125, -2184, -2379, -2384, -2648 - ], - [ - 0, -1719, -11466, -11467, -3634, -11468, -2734, -4867, -11469, -4866, -3095, -4868, -4004, -4865, -3162, -4043, - -5769, -793, -1654, -4864 - ], - [1, 3, 6326], - [0, 6327, 6328, 6329, 8], - [0, -4884, -357, -11470, -7755, -1851], - [0, -4888, -11471, -633, -1344, -1449, -11472, -1534, -1654, -11473, -1788, -1942, -1972, -11474, -11475], - [0, -4004, -3634, -8959, -4215, -2533, -3844], - [1, 3, 6331], - [0, 6332, 6333, 7, 4], - [0, -11476, -269, -1459], - [ - 0, -1116, -1788, -664, -1415, -1654, -2210, -932, -2125, -1942, -1069, -838, -1972, -2211, -2410, -1771, -6522, - -2174, -966, -964, -357, -958, -968, -940, -943, -3775 - ], - [1, 3, 6335], - [0, 0, 6336, 6337, 11], - [0, -589, -596, -11477, -932, -1077, -2884, -1939, -2177], - [0, -11478, -11479, -6249, -5269, -596, -6251, -6252, -1696, -1723], - [1, 3, 6339], - [0, 6340, 6341, 6342, 4], - [0, -702], - [ - 0, -1788, -1127, -1654, -2198, -756, -1132, -7845, -2410, -3037, -7887, -710, -11480, -9280, -1134, -1149, - -11481, -11482 - ], - [0, -3324, -6491, -8427, -3833, -6809, -10412, -11483, -3966, -1622, -7208], - [1, 3, 6344], - [0, 0, 6345, 6346, 4], - [0, -3037, -11484, -1077, -1344, -1654, -1788, -2125, -2410, -11485], - [0, -3966, -11486, -5574, -7534, -11487, -7371, -6974, -6582, -5847, -11488, -856], - [1, 3, 6348], - [0, 6349, 6350, 6351, 6], - [0, -808, -11489, -11490, -1097, -1646, -1737, -2114, -2177], - [0, -3037, -932, -958, -1344, -1534, -1942, -2319, -11491, -2363, -2379, -2410], - [0, -9427, -11492, -2295, -1673, -2490], - [1, 3, 6353], - [0, 124, 70, 6354, 11], - [0, -1727, -7421, -11070, -11493, -6656, -6235, -7547, -1076], - [1, 3, 6356], - [0, 6357, 6358, 6359, 4], - [0, -9154, -11494, -11495, -11496], - [ - 0, -4646, -367, -3330, -427, -428, -3664, -7351, -774, -932, -7352, -954, -960, -961, -963, -965, -7353, -7354, - -971, -979, -7355, -1344, -7356, -1498, -1534, -1608, -1609, -1768, -7357, -1942, -7358, -1945, -2091, -11497, - -7359, -2391, -2410, -2469, -7360 - ], - [0, -10838, -5493, -10841, -10840, -11498, -11499, -11500, -11501, -11502, -11503], - [1, 3, 6361], - [0, 6362, 6363, 6364, 4], - [0, -7026, -11504, -8966], - [0, -458, -5993, -649, -652, -664, -665, -11505, -9077, -756, -1069, -5989, -1654, -1828, -11506, -2384, -2541], - [0, -4213, -1334, -1961, -2105, -9172, -9173, -2533, -5388], - [1, 3, 6366], - [0, 0, 6367, 6368, 6], - [ - 0, -633, -719, -767, -932, -11507, -1004, -1471, -1472, -1475, -1478, -1479, -1480, -1482, -1483, -1487, -1488, - -1490, -11508, -1492, -1654, -1657, -11509, -1788, -6696, -2501, -2503, -11510 - ], - [ - 0, -11511, -11512, -11513, -11514, -770, -5374, -11515, -11516, -11517, -11518, -1334, -1342, -1616, -5150, - -11519, -11520, -11521, -11522, -11523, -2191, -11524, -11525, -11526, -8905, -11527, -11528, -11529 - ], - [1, 3, 6370], - [0, 6371, 6372, 6373, 9], - [0, -523, -812, -1548], - [0, -664, -1654, -1972, -2210], - [0, -3939, -5801, -5737, -5741, -5271, -11530, -11517, -11531, -1050, -5270, -491, -11532], - [1, 3, 6375], - [0, 6376, 6377, 6378, 9], - [0, -615, -1729], - [0, -664, -932, -1415, -2210], - [0, -11533, -11534, -11535, -3939, -11536, -11537, -11538, -11539, -11540], - [1, 3, 6380], - [0, 6381, 6382, 6383, 4], - [0, -5672, -11541, -1119, -10521, -1758, -1957, -2177, -2323, -2654, -2518], - [0, -596, -767, -932, -1654, -1696, -2884, -11542], - [0, -5269, -6249, -3551, -6251, -6252, -596, -6250], - [1, 3, 6385], - [0, 6386, 6387, 6388, 5], - [0, -780, -1297], - [ - 0, -7177, -674, -767, -932, -11543, -1317, -11544, -11545, -11546, -6595, -11547, -1333, -11548, -11549, -1839, - -2125, -10301, -2251, -2379, -2552 - ], - [0, -3264, -3215, -3967, -2410], - [1, 3, 6390], - [0, 6391, 6392, 6393, 5], - [0, -510, -11550, -812, -1004, -1107, -1850, -2001, -2177, -2185, -11551, -11552, -11553, -2518, -2531, -2550], - [0, -664, -1077, -1380, -1452, -1654, -1764, -1961, -2125], - [0, -812, -7336, -6480, -6479], - [1, 3, 6395], - [0, 6396, 6397, 6398, 11], - [0, -459, -736, -828, -1072, -8438, -1636, -1640, -1840, -1997, -2401], - [ - 0, -3035, -3621, -427, -428, -664, -932, -934, -940, -958, -1344, -1654, -1788, -1942, -2210, -2211, -2379, - -2384, -2410 - ], - [0, -4215, -8611, -10327, -3967, -3756, -3634, -4004, -1334, -11554], - [1, 3, 6400], - [0, 6401, 6402, 6403, 10], - [0, -11555, -1401, -2177, -11556, -2446, -2518], - [0, -749, -767, -932, -942, -943, -958, -966, -968, -1344, -1415, -1534, -11557, -1942, -2125], - [0, -11558, -11559, -9258, -11560, -9262, -6721, -11561, -11562, -4127], - [1, 3, 6405], - [0, 6406, 6407, 6408, 5], - [0, -579], - [0, -617, -1004, -1654, -2198, -2293], - [0, -1791, -11437], - [1, 3, 6410], - [0, 89, 56, 57, 8], - [1, 3, 6412], - [0, 6413, 6414, 6415, 8], - [0, -8612, -1650, -1708, -1758, -1769, -1778, -2001, -2125, -2177, -2323], - [0, -521, -1452, -1722, -2322], - [0, -5269, -6249, -3551, -6251, -6252, -596, -7304], - [1, 3, 6417], - [0, 6418, 6419, 6420, 4], - [0, -1723], - [0, -1654, -932, -11563, -1733, -767, -2410, -3037, -3621, -428, -427], - [0, -11564, -3975, -3974, -11565, -11566, -11567], - [1, 3, 6422], - [0, 6423, 0, 6424, 8], - [0, -11568, -11569, -11570, -11571, -579, -583, -754, -1004, -1077, -11572, -1758, -2177], - [0, -3496, -11532, -11573, -5411], - [1, 3, 6426], - [0, 6427, 6428, 6429, 10], - [0, -1696, -1088, -1107, -1630, -668, -1548, -1733, -1099, -11574, -769, -11575, -11576, -11577, -10521], - [0, -1788, -1654, -932, -2125, -1077, -11578], - [0, -775, -9264, -3277, -2162, -3754, -5553], - [1, 3, 6431], - [0, 6432, 6433, 6434, 4], - [0, -5414, -11579, -11580], - [0, -1788, -2322, -2210, -468, -932], - [0, -7046, -4107, -5418, -763, -11581, -10950], - [1, 3, 6436], - [0, 6437, 0, 6438, 4], - [0, -1813, -714, -1640], - [0, -1334, -5142, -6656, -3844], - [1, 3, 6440], - [0, 0, 6441, 6442, 5], - [0, -1788], - [0, -7230, -11582, -2446], - [1, 3, 6444], - [0, 0, 6445, 6446, 10], - [0, -1077, -1654], - [0, -11583, -2490, -11584], - [1, 3, 6448], - [0, 6449, 0, 6450, 8], - [0, -6597, -2550], - [0, -11585, -7084, -5196, -11586, -5545, -5389, -11587, -11588, -11589, -4107], - [1, 3, 6452], - [0, 6453, 6454, 6455, 4], - [0, -2534], - [0, -11590, -11591, -3037, -932, -1942, -1944, -2391, -2410, -3924, -2469], - [0, -11592, -3215, -4258, -2534, -11593], - [1, 3, 6457], - [0, 6458, 6459, 6460, 11], - [0, -1285, -1391], - [0, -5834, -515, -932, -1365, -7393, -1777, -1788, -1797, -2156, -2322], - [0, -1015, -11594, -11595, -702, -6351, -11596], - [1, 3, 6462], - [0, 6463, 6464, 6465, 5], - [0, -1116, -1696, -1460, -1993, -1548, -2324, -1077, -1733, -1740], - [0, -2487, -1654, -1452, -521, -674, -11597, -1405, -526, -756, -1440, -11598, -7382, -559], - [0, -11599, -11600, -5889, -5269], - [1, 3, 6467], - [0, 0, 6468, 6469, 6], - [0, -11601, -648, -652, -932, -940, -1110, -11602, -11603, -11604, -11605, -1942, -1971, -11606, -7932], - [0, -11607], - [1, 3, 6471], - [0, 6472, 6473, 6474, 5], - [0, -679, -812, -5911, -1645, -11608, -2177, -7741, -2297, -2363, -11609], - [0, -86, -3307, -510, -710, -932, -1344, -1654, -1788, -1972, -2174, -2198], - [0, -687, -1673, -1673, -3113, -9427, -11610, -11492, -3974], - [1, 3, 6476], - [0, 6477, 0, 7, 5], - [0, -888, -2319], - [1, 3, 6479], - [0, 6480, 6481, 6482, 4], - [0, -2125, -867, -11611, -2550, -2177], - [0, -2105, -2322], - [0, -11612, -11613, -7856, -11321, -9668], - [1, 3, 6484], - [0, 6485, 0, 6486, 5], - [ - 0, -7603, -469, -470, -8547, -5329, -473, -11614, -523, -617, -679, -744, -754, -792, -1004, -4206, -11615, - -11616, -1107, -1299, -11617, -11618, -1460, -11619, -1465, -11620, -1581, -5460, -11621, -1671, -1680, -1707, - -7045, -11622, -1752, -1805, -1857, -11623, -2071, -11492, -2107, -11624, -11625, -2520, -3730, -2548, -2550 - ], - [ - 0, -11626, -1756, -3214, -3967, -3161, -3445, -3100, -5407, -11627, -11628, -11629, -11630, -4055, -11631, - -4058, -1460, -2548, -3994, -11632 - ], - [1, 3, 6488], - [0, 6489, 83, 6490, 4], - [0, -2424, -668], - [0, -7303, -11633, -4376, -6792, -3215], - [1, 3, 6492], - [0, 6493, 29, 7, 5], - [0, -9632], - [1, 3, 6495], - [0, 0, 6496, 6497, 8], - [0, -1202, -1646, -1654], - [ - 0, -11634, -11635, -11636, -6656, -11637, -7693, -7839, -11638, -11639, -1076, -6811, -1847, -9358, -6517, - -2218, -11640, -11641, -11642, -11643 - ], - [1, 3, 6499], - [0, 0, 14, 6500, 4], - [0, -6811, -2435, -9171, -6558, -2265, -11644, -11645, -5101, -1985, -11646, -6817, -11647, -11648], - [1, 3, 6502], - [0, 0, 0, 6503, 5], - [0, -11649, -11644, -4865], - [1, 3, 6505], - [0, 6506, 6507, 6508, 4], - [ - 0, -668, -6793, -700, -755, -824, -2762, -930, -999, -11650, -11651, -1315, -6770, -1363, -1376, -1394, -11652, - -11653, -11654, -1535, -11655, -1574, -1630, -11656, -11657, -9050, -1805, -11658, -10270, -1849, -3609, -2060, - -2153, -2177, -5746, -3669, -2433 - ], - [0, -9154, -3199, -519, -722, -9982, -1077, -11659, -2210, -2269, -2331, -11660, -2541], - [0, -5732, -687, -1764, -8403, -5889, -5737, -9318, -6453, -5890], - [1, 3, 6510], - [0, 6511, 6512, 6513, 4], - [ - 0, -1681, -1371, -2323, -1107, -1758, -2059, -2247, -11661, -668, -1826, -2518, -9632, -1831, -2177, -4287, - -680, -11662, -9084, -1733, -1957, -11663, -1645, -4296, -4279, -1527, -1528, -1529, -11664, -11665, -2343, - -11666, -1119, -11667, -10513, -11668, -11669, -10517, -11670, -11671, -4285, -2297, -1315, -1767, -1982, -280, - -11672, -10520, -10521, -11673, -4291, -11674, -283, -4290, -1770, -11675, -11676, -4292, -4283, -4306, -8266, - -281, -2450, -4281, -4278, -11677 - ], - [ - 0, -469, -2319, -834, -1722, -4307, -2093, -2125, -695, -2095, -11678, -470, -11679, -1769, -4655, -11680, - -11681, -4300, -4298, -4299, -11682 - ], - [0, -1380, -3209, -11683, -10484], - [1, 3, 6515], - [0, 6516, 6517, 6518, 4], - [ - 0, -705, -1816, -1630, -668, -999, -1392, -2546, -11684, -1111, -1548, -2177, -11685, -1871, -827, -1376, -1645, - -1728, -2269, -2343, -1849, -11686, -5895, -11687, -6197, -11688, -2433, -11689 - ], - [0, -2541, -526, -567, -559, -555, -551], - [0, -1764, -11690, -3015, -7441, -5887, -7440, -11691, -3690, -9845, -687, -9594, -11692, -11693, -7856, -3016], - [1, 3, 6520], - [0, 0, 6521, 6522, 4], - [ - 0, -11694, -7057, -3035, -4269, -11695, -11696, -5361, -11697, -3660, -11698, -3044, -3621, -3037, -11699, - -11700, -8523, -3624, -3735, -3199, -11701, -4372, -11702, -427, -428, -656, -664, -665, -9077, -668, -695, - -719, -767, -8609, -932, -940, -11703, -943, -958, -960, -965, -968, -1026, -10960, -1047, -11704, -1315, -1371, - -1442, -1461, -11705, -1547, -1548, -1609, -1654, -1770, -1771, -1826, -5883, -1864, -1942, -1959, -11706, - -11689, -2124, -2125, -5405, -2177, -11707, -2198, -2210, -2234, -7744, -2269, -2379, -2410, -11708, -2430, - -2433, -11709, -2466, -11710, -11711, -6859, -2552 - ], - [0, -3015, -1764, -10484, -10674, -11712, -11713], - [1, 3, 6524], - [0, 6525, 29, 7, 5], - [0, -1315, -1957, -2177, -2450], - [1, 3, 6527], - [0, 6528, 6529, 6530, 6], - [ - 0, -469, -3907, -668, -755, -812, -1111, -1353, -1395, -1461, -1574, -1630, -1877, -2177, -2218, -2271, -2400, - -2450 - ], - [ - 0, -3136, -3037, -427, -428, -928, -11714, -932, -11715, -11716, -954, -958, -959, -967, -978, -1040, -1415, - -7357, -11717, -1942, -2375, -2410 - ], - [0, -7148, -8170, -10484, -5879, -11718, -1768], - [1, 3, 6532], - [0, 6533, 6534, 7, 8], - [0, -6770, -1957], - [0, -280, -4298, -4300, -11719, -2319], - [1, 3, 6536], - [0, 6537, 6538, 6539, 10], - [0, -4285, -10335, -10521, -9084, -11720, -11721, -1767, -1957], - [0, -4298, -4300, -4287, -1722, -11542, -2247, -2319], - [0, -1764, -11722, -4213], - [1, 3, 6541], - [0, 6542, 6543, 233, 4], - [0, -668, -11084, -2060, -1645, -482, -769, -2194, -1627, -11723], - [0, -1788, -2552, -1654, -932, -2125, -708, -1827, -1077, -3037, -1938, -566, -11724, -6018, -545], - [1, 3, 6545], - [0, 6546, 6547, 233, 11], - [0, -2518, -11084, -1864, -482, -769, -2194, -1627, -11728], - [0, -652, -1498, -2552, -1446, -1654, -932, -9774, -2884, -516, -3781], - [1, 3, 6549], - [0, 6550, 14, 6551, 5], - [0, -7087, -8803], - [0, -1764, -11727, -1847, -5897, -8425, -7304, -8426, -11729, -687, -3958, -7096, -7237], - [1, 3, 6553], - [0, 0, 6554, 6555, 5], - [0, -3136, -3037, -427, -428, -3267, -932, -940, -1415, -1534, -10652, -2125, -2127, -2375, -2410], - [0, -11730, -856, -11731], - [1, 3, 6557], - [0, 6558, 6559, 6560, 4], - [0, -668, -691, -719, -812, -1376, -1965], - [0, -664, -1654, -1663, -2250], - [0, -7865, -1764, -11732], - [1, 3, 6562], - [0, 6563, 6564, 6565, 6], - [0, -1376, -1993], - [0, -526, -541, -551, -11733, -566, -1771], - [0, -1764, -687, -7095, -3957, -9408, -4043, -9845, -1776, -11734], - [1, 3, 6567], - [0, 6568, 6569, 6570, 6], - [0, -1285, -1646], - [0, -5834, -516, -5835, -932, -1365, -1431, -1788, -2156, -2322], - [0, -1777, -9100], - [1, 3, 6572], - [0, 6573, 6574, 7, 6], - [0, -4700, -10515, -11735, -4716], - [0, -2319, -4300, -4298], - [1, 3, 6576], - [0, 0, 6577, 7, 4], - [0, -664, -1437, -1449, -1654, -11736], - [1, 3, 6579], - [0, 6580, 6581, 6582, 4], - [0, -668, -694, -11737, -1343, -1376, -11738, -2177, -9564, -2550], - [0, -619, -707, -8326, -1277, -1510, -1658], - [0, -7107, -1780, -8327], - [1, 3, 6584], - [0, 6585, 6586, 6587, 5], - [0, -11739], - [0, -3136, -3037, -427, -428, -749, -932, -940, -967, -1344, -1415, -1942, -1952, -2125, -2375, -2379, -2410], - [0, -1781, -11740, -687, -3578, -3871, -7864, -2006, -3966, -2410, -3214, -2501, -1415, -3100, -3445, -5407], - [1, 3, 6589], - [0, 0, 6590, 6591, 6], - [0, -664, -1138, -1146, -1155, -1156, -9545, -1471, -1474, -1475, -1479, -1482, -1483, -1488, -1542, -1654], - [0, -1782, -6240, -3276, -4123, -11741, -11742], - [1, 3, 6593], - [0, 6594, 6595, 6596, 5], - [0, -11743, -11744, -719], - [ - 0, -21, -23, -40, -43, -534, -539, -541, -729, -753, -767, -932, -934, -958, -1004, -1077, -1098, -11745, - -11746, -11747, -11748, -1788, -1860, -2187, -2416, -2417, -2501 - ], - [0, -3110, -7651], - [1, 3, 6598], - [0, 0, 0, 6599, 5], - [0, -8427, -3966], - [1, 3, 6601], - [0, 0, 6602, 6603, 10], - [0, -2832, -5834, -8084, -8096, -516, -652, -5835, -932, -1431, -1365, -1777, -2156, -2322], - [0, -1784, -1785, -5874], - [1, 3, 6605], - [0, 0, 0, 6606, 10], - [0, -775, -5180, -11749, -5912, -3585], - [1, 3, 6608], - [0, 6609, 0, 6610, 4], - [ - 0, -888, -1816, -2359, -1055, -1805, -2548, -523, -701, -2387, -2550, -865, -1353, -2177, -1040, -910, -1418, - -1645, -2369, -690, -1863, -2325, -692, -1075, -1461, -1773, -2267, -2551, -866, -2383, -11750, -11751, -11752, - -4341, -10789, -11753, -11754 - ], - [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -4339, -4340, -4347, -4343, -4344, -11755], - [1, 3, 6612], - [0, 6613, 6614, 6615, 4], - [ - 0, -6028, -4003, -11756, -742, -813, -1046, -1047, -6475, -1097, -1107, -5086, -11757, -6029, -11758, -5087, - -5088, -5089, -1591, -11759, -1826, -11760, -2115, -2125, -2202, -11761, -6030, -2550 - ], - [0, -11762, -5607, -2111, -2234, -2250, -2251, -2319, -2446, -2518], - [0, -4005, -6863, -8422, -3634], - [1, 3, 6617], - [0, 6618, 6619, 6620, 5], - [0, -11763, -4049, -3424, -11619, -10873, -5969, -5263, -1851, -11764], - [0, -11765, -11766, -11767, -3037, -2391, -2410, -2469], - [0, -3690, -11768, -3438, -11769, -11770, -11771, -11772, -11773, -1789, -489, -11148, -856], - [1, 3, 6622], - [0, 6623, 6624, 6625, 4], - [0, -11763, -11774, -1442, -5263, -3792], - [0, -11765, -3660, -11775, -1722, -2391, -2410, -2469], - [0, -3690, -489, -11768, -856, -11148, -11773, -1789, -3438, -11772, -11769, -11771, -11770, -11410, -4847], - [1, 3, 6627], - [0, 0, 84, 7, 8], - [1, 3, 6629], - [0, 0, 6630, 6631, 5], - [0, -2541, -519, -1548, -1612], - [0, -7208, -7370, -1015, -3589, -4795, -3217, -3207, -6989, -11776, -3582, -5396, -4865], - [1, 3, 6633], - [0, 0, 6634, 6635, 4], - [ - 0, -633, -1168, -1177, -11117, -11777, -1220, -1224, -1231, -1243, -1244, -1262, -1452, -1453, -1471, -1475, - -1482, -1654 - ], - [0, -7208, -6131, -2191, -1616], - [1, 3, 6637], - [0, 0, 6638, 6639, 6], - [ - 0, -5834, -11778, -516, -753, -11779, -921, -932, -1065, -1083, -1107, -11780, -1283, -11781, -1365, -1408, - -8082, -1659, -1777, -1788, -2156, -9786, -2177, -8310, -2322 - ], - [0, -4676, -11782, -7208, -6231, -3240], - [1, 3, 6641], - [0, 0, 6642, 6643, 4], - [0, -5834, -8487, -932, -6283, -11783, -1391, -2322], - [0, -11784, -7373, -6947, -5396], - [1, 3, 6645], - [0, 0, 6646, 6647, 8], - [0, -1788, -664, -1654, -756, -1657, -11785], - [0, -6545, -1847, -11786, -11787, -9052, -7153, -864, -7375, -7208, -7369, -11788, -11789, -5846, -8893, -7372], - [1, 3, 6649], - [0, 6650, 6651, 6652, 6], - [0, -655, -6511, -5830, -11790, -1283, -1795], - [0, -5833, -5834, -633, -932, -1065, -1083, -5836, -1285, -1659, -1777, -1788, -2156, -5942, -2322], - [0, -11791, -7370, -6948, -1015, -11792, -11594, -11793, -11794, -5843, -3582, -5396], - [1, 3, 6654], - [0, 6655, 6656, 6657, 6], - [0, -655, -6511, -5830, -11790], - [0, -5833, -5834, -8569, -516, -5835, -932, -1083, -5836, -1365, -1777, -1788, -2156, -2322], - [0, -11795, -11796, -11784, -11797, -7374, -6949, -11798, -6952, -5396, -7208, -7373, -3582, -5843], - [1, 3, 6659], - [0, 6660, 6661, 7, 9], - [0, -11799], - [0, -1788, -1654, -932, -966, -958, -968, -943, -963, -974], - [1, 3, 6663], - [0, 6664, 71, 6665, 4], - [0, -11800], - [0, -1801, -5924, -6812, -6814], - [1, 3, 6667], - [0, 6668, 6669, 6670, 4], - [0, -11801, -11802, -502, -679, -769, -1353, -2369], - [0, -7080, -3037, -1344, -1534, -1942, -2125, -2410], - [0, -1107, -2490, -5888], - [1, 3, 6672], - [0, 6673, 6674, 6675, 5], - [0, -11803, -1553], - [0, -3621, -11804, -708, -1452, -1654, -1658, -1660, -1788, -2379, -2410], - [0, -11805, -11573, -11806, -11807, -11808, -10226, -11809, -11810, -11811, -9261], - [1, 3, 6677], - [0, 6678, 115, 234, 5], - [0, -11812, -11813, -11814, -9981, -6756, -11815], - [1, 3, 6680], - [0, 6681, 6682, 6683, 5], - [0, -1043, -1099, -1630, -1805, -2331], - [0, -519, -999, -2541], - [ - 0, -5732, -687, -3994, -1805, -1810, -11816, -11817, -11818, -11819, -11820, -11821, -7095, -4865, -3496, -7237, - -7863, -2435, -11822, -7303, -7091, -8421, -6599, -1958, -3258, -6656 - ], - [1, 3, 6685], - [0, 6686, 6687, 6688, 6], - [0, -11823, -11824, -5263], - [0, -3136, -3660, -4049, -523, -11825, -1415, -1456, -11826, -1683, -1942, -2234, -2375, -2379, -2410], - [0, -3438, -4847, -3323, -523, -3100, -4865, -4215, -2410], - [1, 3, 6690], - [0, 6691, 6692, 6693, 5], - [0, -813, -1326, -1459, -1600, -1967, -2006, -2019, -2451], - [ - 0, -32, -204, -526, -552, -9968, -756, -932, -933, -934, -958, -962, -968, -969, -1108, -1320, -1415, -1753, - -1771, -2105, -2106, -5331 - ], - [0, -4847, -3438, -11827, -3264, -856, -3262], - [1, 3, 6695], - [0, 6696, 6697, 6698, 11], - [0, -6280, -1696], - [0, -1107, -2105, -2322], - [0, -1809, -11828, -9565, -11829], - [1, 3, 6700], - [0, 0, 38, 7, 6], - [1, 3, 6702], - [0, 6703, 6704, 7, 8], - [0, -11830, -2105], - [0, -526, -559, -932, -933, -958, -962, -969], - [1, 3, 6706], - [0, 6707, 55, 234, 9], - [0, -1401], - [1, 3, 6709], - [0, 6710, 6711, 235, 4], - [0, -2525, -1646], - [0, -11831, -2319], - [1, 3, 6713], - [0, 6714, 6715, 6716, 8], - [0, -784, -11832, -1889], - [0, -527, -533, -551, -556, -558, -778, -1415, -2275, -2501], - [0, -7198, -10435, -1017, -7173, -7175, -6694, -2501], - [1, 3, 6718], - [0, 6719, 6720, 6721, 11], - [0, -11833, -11834, -2524, -8437, -11835, -10579], - [0, -11836, -1654], - [0, -6792, -5272, -11837, -687], - [1, 3, 6723], - [0, 6724, 6725, 6726, 8], - [0, -668, -690, -692, -11652, -6861, -1574, -11838, -2267], - [0, -3037, -519, -1100, -11839, -2384, -2541], - [0, -687, -6716, -6717, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, -4116, -4117], - [1, 3, 6728], - [0, 6729, 6730, 6731, 10], - [0, -908, -11840, -11841], - [0, -994, -1262, -1452, -1597, -1632, -1654, -1980, -2198, -2462], - [0, -510, -4107, -5921, -10462], - [1, 3, 6733], - [0, 6734, 6735, 6736, 11], - [0, -510, -615, -7840, -10358, -1548, -1850, -11842, -11843], - [0, -652, -668, -1107, -1654, -1671, -1691, -1857, -2177, -2198, -2210, -2245], - [0, -1818, -11221, -7685, -1691, -10425, -11844, -3742, -1671], - [1, 3, 6738], - [0, 0, 0, 6739, 4], - [0, -3966, -1819, -3103, -3551], - [1, 3, 6741], - [0, 6742, 71, 6743, 6], - [0, -8383, -10383], - [0, -5558, -3833, -11845, -11846, -1847, -1965, -11847], - [1, 3, 6745], - [0, 0, 6746, 6747, 4], - [0, -3035, -3048, -3621, -3037, -3046, -10755, -664, -999, -1077, -1654, -1763, -2379, -2501, -2518], - [0, -3184, -4795, -11848, -11849, -7728, -2265, -3110, -6806], - [1, 3, 6749], - [0, 0, 0, 6750, 5], - [0, -1823, -3586, -11850, -11851, -11852, -11853, -3100, -4865], - [1, 3, 6752], - [0, 6753, 6754, 6755, 5], - [0, -11854, -719, -1063, -1392, -1526, -2177, -2359, -11855], - [0, -3244, -190, -3748, -4200, -11856, -3037, -3199, -3628, -11857, -427, -428, -932, -11858, -2125, -2410], - [0, -687, -11859, -8109, -8403], - [1, 3, 6757], - [0, 6758, 6759, 6760, 5], - [0, -1828], - [0, -3037, -519, -826, -2384, -2541], - [ - 0, -1961, -997, -5389, -6820, -8397, -10670, -6821, -8401, -6822, -8124, -11860, -11861, -4116, -11862, -8402, - -4865, -5092, -510, -5867, -5923, -615 - ], - [1, 3, 6762], - [0, 0, 6763, 6764, 5], - [0, -519, -668, -826, -7426, -7424, -7427, -2384, -2541], - [ - 0, -1961, -6917, -11863, -4116, -7558, -9029, -9027, -11864, -11865, -510, -5867, -5923, -726, -11866, -5921, - -615 - ], - [1, 3, 6766], - [0, 6767, 6768, 6769, 4], - [0, -996, -1828], - [0, -5918, -3268, -3037, -589, -825, -826, -7426, -7963, -7424, -7427, -2384, -2392, -2410, -2541], - [ - 0, -1961, -1986, -11450, -6729, -7331, -11866, -7329, -11685, -7333, -7334, -11867, -11038, -11033, -11868, - -5418, -4107, -510, -5867, -5923, -615 - ], - [1, 3, 6771], - [0, 0, 6772, 6773, 11], - [0, -519, -826, -7426, -9161, -2210, -7427, -2384, -2541], - [0, -1961, -7430, -6324, -11869, -510, -5867, -5923, -4123, -11870, -5391, -615], - [1, 3, 6775], - [0, 6776, 6777, 6778, 4], - [0, -1107], - [0, -1415, -1942, -4701], - [0, -856, -2299, -11871, -11872], - [1, 3, 6780], - [0, 6781, 6782, 6783, 5], - [0, -11873, -522, -594, -719, -914, -1496, -1689, -1750, -1978, -2177], - [0, -652, -932, -11874, -1654, -11875, -4654, -2210], - [ - 0, -4665, -4666, -10432, -11876, -5879, -4864, -5986, -522, -7144, -687, -11877, -11878, -11879, -10770, -1830, - -1978, -9246, -11880, -3634, -2451, -11881 - ], - [1, 3, 6785], - [0, 6786, 6787, 6788, 4], - [ - 0, -11678, -4280, -4283, -4306, -283, -4287, -11666, -9084, -1767, -1769, -4291, -1770, -1957, -10592, -11882, - -2247, -2323 - ], - [0, -280, -4298, -4300, -1315, -11719, -1722, -11883, -2125, -2319], - [0, -7442, -1764, -5889], - [1, 3, 6790], - [0, 6791, 6792, 6793, 8], - [0, -9491, -9492, -11884, -807, -7731, -11885, -1548, -1574, -1591, -1826, -1877, -2400, -11886], - [0, -5918, -5033, -3044, -3037, -11887, -743, -825, -1043, -1098, -9810, -1849, -11888, -2392, -2410, -2541], - [ - 0, -11889, -3258, -9204, -3578, -2435, -9804, -8799, -9711, -11890, -11891, -5566, -4045, -9552, -3576, -7419, - -1978, -10366, -6527, -3839, -7650, -3264, -11878, -9712, -8633, -8634, -7715, -8640, -9235 - ], - [1, 3, 6795], - [0, 0, 6796, 6797, 4], - [0, -3037, -3664, -6593, -7653, -7654, -932, -958, -960, -1449, -2410, -2466, -2469], - [0, -3100, -3445, -3261, -3098, -3160, -6107, -9975, -9612, -11074], - [1, 3, 6799], - [0, 0, 6800, 6801, 11], - [0, -40, -3326, -350, -351, -932, -1103, -1654, -1687, -10835, -1788, -2127, -2140, -2195], - [0, -9506, -6827, -10350, -6826], - [1, 3, 6803], - [0, 6804, 38, 6805, 6], - [ - 0, -11064, -668, -6842, -1000, -1039, -1099, -1111, -1333, -1465, -1630, -1641, -1836, -2114, -11892, -2433, - -2551 - ], - [0, -11893, -3445, -687, -10810, -3690], - [1, 3, 6807], - [0, 6808, 6809, 6810, 5], - [0, -11197, -1582, -2291], - [0, -190, -865, -932, -940, -958, -965, -967, -968, -1110, -1548, -1654, -1942, -2340, -2892, -2410], - [0, -11893, -3323, -4725, -11894, -3844, -3445, -3690, -3691, -4055], - [1, 3, 6812], - [0, 0, 6813, 6814, 6], - [0, -615, -664, -710, -1654], - [0, -5921, -5550], - [1, 3, 6816], - [0, 6817, 6818, 6819, 9], - [0, -44, -3345, -772, -11895, -11896, -2531], - [ - 0, -23, -26, -38, -40, -41, -42, -190, -3266, -11897, -3470, -7040, -3471, -3472, -7041, -7042, -11898, -533, - -8580, -11899, -708, -753, -767, -932, -8147, -960, -1004, -1168, -1174, -1268, -1412, -10034, -11900, -1415, - -1419, -1446, -11901, -1534, -4375, -3156, -11220, -11902, -1978, -2082, -2174, -2411, -2466, -11903, -10092 - ], - [0, -5801, -3162, -3690], - [1, 3, 6821], - [0, 6822, 0, 6823, 5], - [0, -3223], - [0, -3264, -3215, -5177, -11904, -4681, -5922, -11905, -11906, -6595, -1839, -4142, -11907, -11908, -1838, -6233], - [1, 3, 6825], - [0, 0, 6826, 7, 6], - [0, -1654, -932, -1405, -589, -11909, -585, -966, -958, -968, -943, -974], - [1, 3, 6828], - [0, 6829, 6830, 6831, 10], - [0, -11910, -2445, -1846], - [0, -664, -1654, -1592, -1972, -666, -11911], - [0, -1004, -729, -6120, -8449, -3173], - [1, 3, 6833], - [0, 6834, 6835, 6836, 8], - [0, -1845], - [0, -1592, -1654, -664, -666], - [0, -1841, -4038, -6120, -8449, -3173, -9795], - [1, 3, 6838], - [0, 6839, 236, 6840, 4], - [0, -1846], - [0, -1841, -8427, -6120, -8449, -3173, -11912, -5110], - [1, 3, 6842], - [0, 6843, 236, 237, 8], - [0, -11913, -1845], - [1, 3, 6845], - [0, 6846, 6847, 237, 5], - [0, -11914, -1791, -1846, -10686, -2445], - [0, -1592, -1654, -664, -1972, -666], - [1, 3, 6849], - [0, 0, 114, 6850, 4], - [0, -1841, -6539], - [1, 3, 6852], - [0, 6853, 0, 6854, 5], - [0, -1958, -2444], - [0, -11153, -1847], - [1, 3, 6856], - [0, 0, 31, 6857, 8], - [0, -4865, -633, -1847], - [1, 3, 6859], - [0, 0, 238, 6860, 5], - [0, -1847, -6788, -11915, -6656, -7693, -1076, -7422, -7000, -11786, -9330], - [1, 3, 6862], - [0, 0, 118, 6863, 4], - [ - 0, -1847, -9098, -6656, -11070, -11634, -11916, -11917, -6441, -2444, -5260, -3103, -6989, -3582, -5396, -1391, - -6659, -7440 - ], - [1, 3, 6865], - [0, 0, 6866, 6867, 8], - [0, -6918, -5295, -3037, -3199, -3664, -10880, -2214, -2410, -2469], - [0, -1004, -5570, -10470, -9843], - [1, 3, 6869], - [0, 0, 6870, 7, 5], - [0, -3037, -3664, -672, -928, -932, -944, -1431, -1942, -2410, -2423, -2469, -11918], - [1, 3, 6872], - [0, 6873, 6874, 57, 4], - [0, -1406, -1460, -7885], - [0, -1078, -1654, -1941], - [1, 3, 6876], - [0, 6877, 6878, 6879, 4], - [0, -11919, -11920, -1834, -2062, -9789, -2446], - [0, -3037, -640, -997, -1942, -2322, -2410], - [0, -6528, -3262], - [1, 3, 6881], - [0, 6882, 6883, 6884, 10], - [0, -772, -4702, -11921, -11922, -11923], - [ - 0, -23, -3840, -40, -190, -3326, -533, -11924, -11925, -627, -633, -659, -709, -932, -1103, -1110, -1415, -1419, - -4981, -1599, -11926, -1942, -1974, -2127, -4063 - ], - [0, -6528, -11927, -11928, -6524, -10855, -9472], - [1, 3, 6886], - [0, 0, 6887, 7, 4], - [0, -615, -11929, -664, -11930, -710, -1654, -1939], - [1, 3, 6889], - [0, 6890, 6891, 6892, 4], - [0, -10416, -11931, -11932, -11933, -11934, -11935], - [0, -11936, -11937, -510, -615, -705, -11938, -2410, -2469, -9667], - [0, -7685, -11939, -1857, -11940, -10425, -6321, -11941], - [1, 3, 6894], - [0, 6895, 6896, 6897, 5], - [0, -1860, -2239, -2520], - [ - 0, -526, -527, -528, -556, -558, -559, -6089, -932, -934, -956, -958, -1059, -11942, -1415, -1417, -11943, - -9913, -2125 - ], - [0, -1858, -1859, -9879], - [1, 3, 6899], - [0, 6900, 6901, 239, 11], - [0, -1018, -1077, -7234, -9423, -1959, -2105, -7241, -2518], - [0, -932, -1754], - [1, 3, 6903], - [0, 6904, 6905, 239, 5], - [0, -925, -1018, -1077, -7234, -9423, -1959, -2105, -7241, -2518], - [0, -932, -1754, -4881], - [1, 3, 6907], - [0, 6908, 6909, 6910, 5], - [ - 0, -501, -714, -728, -11944, -752, -9012, -1412, -1646, -1810, -1812, -3547, -11945, -1878, -1965, -1982, -2105, - -2195, -2433 - ], - [0, -7672, -932, -942, -943, -958, -966, -968, -974, -1405], - [0, -687, -752, -1861, -11946, -11947], - [1, 3, 6912], - [0, 0, 70, 7, 11], - [1, 3, 6914], - [0, 0, 0, 6915, 8], - [0, -3974, -714, -5538, -687, -4000], - [1, 3, 6917], - [0, 0, 6918, 6919, 5], - [0, -932, -10999, -1202, -1654, -1788], - [0, -1107, -5572, -1864], - [0, 44, 15, 16, 8], - [1, 3, 6922], - [0, 0, 6923, 6924, 9], - [0, -519, -11948, -2384, -11135, -2541], - [ - 0, -8124, -5865, -1961, -5923, -11949, -5500, -3966, -11301, -11300, -5845, -6408, -4001, -8911, -6509, -510, - -5867, -4795, -615 - ], - [1, 3, 6926], - [0, 6927, 6928, 6929, 10], - [0, -11950, -11951, -11952, -11953, -8543, -11954, -11955, -7967, -11956, -11957, -11958], - [ - 0, -2832, -11419, -11959, -3037, -468, -11960, -2917, -648, -812, -2758, -932, -958, -965, -966, -968, -999, - -11961, -11962, -1362, -1415, -1573, -1577, -11963, -2884, -11964, -1939, -1972, -1976, -2125, -2177, -2240, - -11965, -2269, -2322, -2347, -2379, -2384, -2410, -2520 - ], - [0, -5922, -3444, -5827, -4055], - [1, 3, 6931], - [0, 0, 6932, 6933, 4], - [0, -932, -940, -8177, -966, -967, -1344, -1415, -1942, -2331], - [0, -1764, -11966, -11967, -7646, -11968], - [1, 3, 6935], - [0, 6936, 6937, 6938, 5], - [0, -1880], - [0, -932, -10497, -2410], - [0, -6527, -10588, -834], - [1, 3, 6940], - [0, 6941, 6942, 6943, 6], - [0, -8341], - [0, -2541, -519, -2384, -2331], - [ - 0, -5897, -4055, -5756, -1764, -11969, -5573, -8804, -1047, -5504, -8805, -8806, -6656, -7282, -5572, -2114, - -8807, -6370, -7420, -7421, -2487, -8808, -1847 - ], - [1, 3, 6945], - [0, 175, 14, 6946, 5], - [ - 0, -7861, -5897, -6656, -5573, -8804, -1047, -5504, -8805, -8806, -7282, -5572, -2114, -8807, -6370, -7420, - -7421, -2487, -8808, -1847 - ], - [1, 3, 6948], - [0, 0, 84, 6949, 5], - [0, -8041, -3674, -10484], - [1, 3, 6951], - [0, 6952, 0, 7, 5], - [0, -3982], - [1, 3, 6954], - [0, 6955, 6956, 6957, 11], - [0, -4733, -578, -2538], - [0, -633, -1654, -6810, -2568], - [0, -5736, -4865, -8995, -1875, -3215, -6597], - [1, 3, 6959], - [0, 6960, 6961, 6962, 4], - [0, -479], - [0, -932, -937, -966, -1001, -1654, -1788, -2410], - [0, -6324, -3862, -1266], - [1, 3, 6964], - [0, 6965, 14, 6966, 8], - [0, -11970], - [0, -9757, -11971, -1878, -9756, -11972, -10781, -2265, -11973, -11974, -11975], - [1, 3, 6968], - [0, 0, 6969, 6970, 9], - [0, -664, -1405, -1654, -2176], - [0, -9757, -11971, -1878, -9756, -9763, -1369], - [1, 3, 6972], - [0, 6973, 70, 6974, 8], - [ - 0, -11976, -11977, -11978, -11979, -483, -510, -11980, -679, -11981, -719, -764, -809, -812, -910, -995, -11982, - -1650, -1708, -11983, -11984, -11985, -11986, -11987, -3968, -2177, -2234, -2243, -11988, -1442 - ], - [ - 0, -687, -8947, -8948, -3674, -1879, -11989, -1573, -4055, -1004, -1277, -11990, -11492, -11991, -11992, -11993, - -11994, -11995, -11996, -11997, -9466, -11998, -11148, -5731, -3207, -11999, -12000, -12001, -12002, -12003, - -8901, -8902, -11586, -2295, -12004, -1753, -12005, -7662, -12006, -11230, -12001, -12007, -1066, -11429, - -12008, -5805, -11486, -8944, -12009, -12010, -12011, -12012, -9844, -7606, -763, -8904, -12013 - ], - [1, 3, 6976], - [0, 0, 6977, 6978, 4], - [0, -633, -641, -729, -932, -940, -1788, -1942, -1978, -2187, -12014, -2322], - [0, -12015, -6116, -6117, -12016, -12017, -3215, -7715, -11923, -12018, -1880], - [1, 3, 6980], - [0, 6981, 6982, 6983, 9], - [0, -2381], - [0, -909, -1415, -1421, -1425, -2231], - [0, -2501, -2552, -10054, -10055], - [1, 3, 6985], - [0, 0, 0, 6986, 4], - [ - 0, -1882, -12019, -3015, -12020, -11037, -5922, -12021, -1380, -7856, -10606, -5880, -3209, -10440, -10527, - -1764, -11683, -10484, -7442, -12022, -12023, -6694, -5881, -12024, -12025, -10444 - ], - [1, 3, 6988], - [0, 241, 6989, 6990, 5], - [0, -2334, -2379, -2410], - [ - 0, -12026, -12027, -12028, -12029, -12030, -12031, -12032, -12033, -3690, -12034, -12035, -12036, -12037, -3445, - -3100, -2410 - ], - [1, 3, 6992], - [0, 39, 6993, 6994, 4], - [ - 0, -21, -23, -32, -38, -39, -40, -6056, -3326, -351, -3561, -528, -533, -535, -12038, -767, -796, -856, -932, - -934, -958, -1059, -11942, -1344, -1415, -1534, -11943, -1942, -12039, -1993, -2127, -2139, -2140, -2174, -2200, - -12040, -2410, -2449 - ], - [0, -2278, -1885, -906, -12041, -3771, -12042, -2006, -5411, -2410, -12043, -12044, -12045, -712, -5535], - [1, 3, 6996], - [0, 0, 6997, 6998, 5], - [0, -12046, -12047, -12048, -12049, -932, -12050, -2410], - [0, -12051, -3095, -7582, -3821, -3822, -12052, -12053], - [1, 3, 7000], - [0, 7001, 7002, 7003, 6], - [0, -510, -812], - [0, -1415], - [0, -1334, -12054, -8113], - [1, 3, 7005], - [0, 7006, 0, 7007, 8], - [0, -1699, -1863, -2232], - [0, -775, -1889, -9336, -3277, -3215, -12055, -6408, -12056, -3186], - [1, 3, 7009], - [0, 7010, 7011, 7012, 8], - [0, -1931, -1934], - [0, -3037, -932, -940, -12057, -1889, -1942, -2410], - [0, -775, -1889, -3583, -12058, -12059], - [1, 3, 7014], - [0, 7015, 7016, 7017, 4], - [0, -679, -3227, -1077, -1863, -1907, -12060, -6467, -12061, -2218, -2654, -2550], - [0, -519, -652, -756, -932, -12062, -1110, -1889, -1906, -1942, -2289, -2446], - [0, -687, -1889, -9300], - [1, 3, 7019], - [0, 7020, 0, 7021, 6], - [0, -2953, -93, -94, -97, -12063], - [0, -712, -12064, -775, -3099, -5112, -12065, -12066, -12067, -11788, -1889, -3583, -5549, -12068, -7451, -4132], - [1, 3, 7023], - [0, 7024, 7025, 7026, 6], - [0, -635, -12069, -2840, -1934], - [0, -12070, -1889], - [0, -712, -714, -724, -775, -1644, -1889, -3583], - [1, 3, 7028], - [0, 242, 22, 7029, 9], - [0, -775, -7193, -1889, -3583], - [1, 3, 7031], - [0, 7032, 7033, 7034, 5], - [ - 0, -518, -12069, -668, -12071, -12072, -1889, -12073, -12074, -1890, -12075, -12076, -12077, -12078, -12079, - -12080, -12081, -12082, -1896, -1897, -1898, -12083, -12084, -12085, -12086, -12087, -1917, -12088, -12089, - -12090, -12091, -12092 - ], - [ - 0, -526, -527, -534, -558, -560, -565, -8161, -682, -778, -12093, -12094, -12095, -12096, -12097, -932, -12098, - -949, -969, -1017, -1041, -1304, -12099, -1442, -1455, -1600, -12100, -1633, -12101, -12102, -12103, -12104, - -12105, -12106, -12107, -12108, -12109, -11748, -1762, -12110, -1792, -1812, -12111, -1906, -1908, -12060, - -7033, -1967, -2006, -2019, -12112, -2125, -2269, -2275, -2322, -12113, -2501, -2505, -12114 - ], - [0, -1889, -3583, -775, -5387, -12115], - [1, 3, 7036], - [0, 7037, 0, 7038, 5], - [0, -12116, -93, -94, -95], - [0, -12117, -12118, -775, -12119, -3586, -12120, -1889, -3583, -12121, -5101, -4681, -5387], - [1, 3, 7040], - [0, 7041, 0, 7042, 4], - [0, -12116, -93, -94, -12063, -1934], - [0, -775, -12119, -3586, -3587, -1889, -3583, -3589, -4681, -3591, -3592, -5387], - [1, 3, 7044], - [0, 7045, 0, 7046, 4], - [0, -12116, -93, -94, -1931], - [0, -12117, -12118, -775, -12119, -3586, -12122, -8109, -1889, -3583, -11315, -12123, -4681, -5387], - [1, 3, 7048], - [0, 90, 7049, 7050, 6], - [0, -1889, -1930, -10815], - [0, -775, -3485, -1889, -3583], - [1, 3, 7052], - [0, 0, 22, 7053, 9], - [0, -775, -816, -7192, -1889, -3583], - [1, 3, 7055], - [0, 0, 22, 7056, 4], - [0, -6454, -775, -12124, -1644, -7193, -1889, -3583], - [1, 3, 7058], - [0, 0, 7059, 7060, 6], - [0, -834, -1863, -1889], - [0, -1889, -775, -3583, -12125, -12126, -12127], - [1, 3, 7062], - [0, 0, 7063, 7064, 8], - [0, -664, -1168, -1197, -1231], - [0, -1889, -775, -3583, -12128, -6445, -12129], - [1, 3, 7066], - [0, 7067, 7068, 7069, 9], - [0, -1333, -3187, -1889, -1929], - [ - 0, -8281, -518, -664, -708, -932, -940, -954, -8286, -961, -965, -8287, -967, -971, -980, -7355, -1654, -8324, - -1788, -12130, -1930, -12131, -1942, -2281, -2282, -2289 - ], - [0, -1889, -4132, -3264, -2476, -12132, -12133, -775, -1521, -2162, -3754, -12134, -2289], - [1, 3, 7071], - [0, 7072, 0, 7073, 10], - [0, -12063, -1934], - [0, -5182, -775, -6527, -12135, -5399, -7036, -1889, -3583, -9804, -3576], - [1, 3, 7075], - [0, 7076, 7077, 7078, 10], - [0, -1934, -12061, -2114], - [0, -519, -652, -932, -12062, -967, -1110, -1889, -1930, -1942, -2289], - [0, -775, -1889, -3583, -6024, -12136, -1764], - [1, 3, 7080], - [0, 7081, 0, 7082, 4], - [0, -1532], - [0, -1889, -12137, -12138], - [1, 3, 7084], - [0, 7085, 7086, 7087, 5], - [0, -1431, -2177, -755], - [ - 0, -824, -1415, -1521, -2162, -1344, -1623, -12139, -774, -932, -784, -825, -1110, -1889, -2289, -2375, -2379, - -2501, -1942, -767, -21, -190, -533, -2790, -2269, -23, -1522, -1534, -1771, -2163, -12140, -1906, -1916, -86, - -965, -3560, -2251, -40, -2411, -959, -1907, -958, -6929, -978, -940, -967, -3748, -12141, -3307 - ], - [0, -775, -1889, -9300, -2501, -5050], - [1, 3, 7089], - [0, 7090, 22, 7091, 6], - [0, -1934, -2280], - [0, -775, -1644, -7192, -1889, -3583], - [1, 3, 7093], - [0, 7094, 7095, 7096, 8], - [0, -635, -12069, -1931, -12142], - [0, -12070, -1889, -10815, -1899], - [0, -775, -7192, -1889, -3583], - [1, 3, 7098], - [0, 60, 22, 7099, 5], - [0, -775, -3827, -12143, -12144, -7192, -3583], - [1, 3, 7101], - [0, 7102, 22, 50, 10], - [0, -2840, -1934, -12142], - [1, 3, 7104], - [0, 7105, 22, 7106, 10], - [0, -635, -1934, -12142], - [0, -1889, -775, -3583, -1644, -7192, -5154], - [1, 3, 7108], - [0, 7109, 7110, 7111, 4], - [0, -783, -1931], - [0, -12145, -1889], - [0, -775, -1644, -7192, -1889, -3583, -12123], - [1, 3, 7113], - [0, 7114, 130, 7115, 10], - [0, -2773, -1931, -1934], - [0, -12146, -1889, -775, -3583], - [1, 3, 7117], - [0, 90, 0, 7118, 11], - [0, -1889, -775, -3583, -2162, -8893], - [1, 3, 7120], - [0, 7121, 0, 7122, 11], - [0, -12147, -98, -1931], - [ - 0, -12148, -6599, -12149, -775, -12115, -12119, -8893, -12150, -1889, -3583, -8199, -12123, -4682, -4683, -4132, - -5387 - ], - [1, 3, 7124], - [0, 7125, 7126, 7127, 5], - [0, -12151, -12152, -12153], - [0, -12154, -635, -1889, -1906, -2127], - [0, -1889, -775, -3583, -12155, -6413, -12156], - [1, 3, 7129], - [0, 0, 22, 7130, 6], - [0, -1889, -775, -3583, -9791], - [0, 60, 22, 50, 4], - [1, 3, 7133], - [0, 60, 22, 50, 11], - [1, 3, 7135], - [0, 242, 22, 50, 8], - [1, 3, 7137], - [0, 60, 22, 7138, 4], - [0, -775, -6811, -7192, -7193, -1889, -3583, -2435], - [1, 3, 7140], - [0, 7141, 22, 50, 5], - [0, -1934, -12142], - [1, 3, 7143], - [0, 0, 7144, 7145, 4], - [0, -1344, -1654, -1889, -1405, -1942, -1534, -1916], - [0, -1889, -5899, -12123, -3583, -775, -3585, -3862], - [1, 3, 7147], - [0, 7148, 0, 7149, 5], - [ - 0, -12157, -5297, -12158, -12159, -12160, -12161, -12162, -12163, -12164, -12165, -12166, -12167, -12168, - -12169, -12170, -96, -12171, -12172, -12173, -12174, -12175, -12176, -12177, -12178, -12179, -12180, -12181, - -12182, -12183, -97, -12184, -12185, -12186, -12187, -12188, -12189, -12190, -12191, -12192, -12193, -12194, - -518, -635, -12195, -12196, -12197, -782, -12074, -12198, -1892, -12077, -12080, -1896, -1897, -1898, -12199, - -12200, -2579, -12201, -12084, -12202, -1905, -12203, -12204, -1917, -2635, -12205, -12206, -12207, -12088, - -12090, -12092 - ], - [0, -775, -12119, -7186, -6309, -12208, -2634, -1889, -3583, -4682, -4683, -7187, -5387], - [1, 3, 7151], - [0, 7152, 7153, 50, 8], - [0, -635, -12069], - [0, -12070, -1329, -1889], - [1, 3, 7155], - [0, 0, 0, 7156, 4], - [0, -775, -1889, -12209, -3215, -8947], - [1, 3, 7158], - [0, 0, 0, 7159, 4], - [0, -775, -1889, -12209, -3215, -3754, -2162], - [1, 3, 7161], - [0, 7162, 7163, 7, 11], - [0, -783, -9649], - [ - 0, -21, -23, -32, -4952, -26, -40, -43, -519, -535, -6831, -825, -932, -958, -1107, -1646, -1788, -1889, -2177, - -2410 - ], - [1, 3, 7165], - [0, 7166, 7167, 7168, 8], - [0, -1934, -2303], - [0, -12072, -1889], - [0, -775, -1644, -7192, -1889, -3583, -3839, -2303], - [1, 3, 7170], - [0, 90, 22, 50, 4], - [1, 3, 7172], - [0, 0, 7173, 7174, 4], - [0, -932, -1344, -1534, -1942, -2320, -2322], - [0, -1889, -5846, -3215], - [1, 3, 7176], - [0, 7177, 0, 7178, 4], - [0, -12210, -12211, -12212, -12213, -12214, -12215, -12216, -2387], - [0, -6321, -10425, -11940, -1857, -7685, -7773, -9879, -3323, -3445, -11941, -10424, -2410, -3018, -985], - [1, 3, 7180], - [0, 7181, 7182, 7183, 4], - [0, -4256, -4255], - [0, -86, -9404, -652, -664, -665, -667, -740, -1344, -1448, -1534, -1654, -2250], - [0, -3264, -6597, -9727, -3215, -6408, -12217, -12056, -3277, -12218], - [1, 3, 7185], - [0, 7186, 0, 7187, 5], - [0, -12219, -2446, -1523, -1525, -2347, -12220, -1524, -12221, -1729, -12222, -12223, -2062, -12224, -12225], - [0, -7773, -11304, -1937], - [1, 3, 7189], - [0, 7190, 7191, 7192, 4], - [0, -5830, -12226, -12227, -12228, -2546], - [ - 0, -526, -566, -3067, -551, -558, -633, -3346, -12229, -1003, -1471, -1475, -10495, -1479, -1482, -12230, -1654, - -12231, -7718, -1991, -2111, -2177 - ], - [0, -1938, -507, -5855, -4004, -3634, -3217, -3272], - [1, 3, 7194], - [0, 7195, 7196, 7197, 6], - [0, -769, -9798, -2518], - [0, -509, -1405, -1654], - [0, -5889, -3322, -1764, -1939, -12232, -11727, -4004, -3113], - [1, 3, 7199], - [0, 0, 7200, 7201, 11], - [ - 0, -12233, -12234, -23, -3408, -5321, -40, -43, -2581, -3035, -3621, -3037, -4372, -5286, -3899, -12235, -664, - -756, -767, -12236, -928, -1344, -12237, -1637, -1654, -1772, -8065, -10105, -1967, -5037, -2210, -2211, -2334, - -2410, -2426, -2466, -2469, -4881 - ], - [0, -1940, -2006, -3160, -3477, -12238, -9613, -3098, -12239, -3577, -3161], - [1, 3, 7203], - [0, 7204, 27, 57, 5], - [0, -668, -679, -1078, -7885], - [1, 3, 7206], - [0, 7207, 7208, 7209, 4], - [0, -12240, -3896, -1618], - [ - 0, -8918, -3307, -350, -4062, -351, -3136, -4251, -427, -428, -721, -932, -940, -967, -1344, -1415, -12241, - -12242, -1942, -2127, -2251, -2334, -2379, -2410 - ], - [0, -1942, -3862, -1446, -8222], - [1, 3, 7211], - [0, 0, 7212, 7213, 6], - [0, -3037, -12243, -519, -1942, -2410, -5627], - [0, -1942, -12244, -2410, -12245, -12246], - [1, 3, 7215], - [0, 7216, 7217, 7218, 8], - [0, -7969], - [0, -1772, -1942], - [0, -10484, -3862, -1942], - [1, 3, 7220], - [0, 0, 7221, 7222, 6], - [0, -4066, -350, -351, -3037, -519, -1942, -2127, -2141, -2299, -2379, -2387, -2410], - [0, -1942, -2299], - [1, 3, 7224], - [0, 7225, 0, 7226, 6], - [0, -12247, -1548, -2001], - [0, -1942, -727], - [1, 3, 7228], - [0, 0, 14, 7229, 4], - [0, -3240, -651, -6472, -1044, -8799, -6656, -8574, -12248, -8800, -12249, -6582, -12250, -9782, -12251], - [1, 3, 7231], - [0, 7232, 7233, 7234, 8], - [0, -1548, -12252], - [0, -664, -710, -711, -12253, -1654], - [0, -3240, -6324, -12254, -812, -12255, -8800, -5598, -9361, -3276, -8574], - [1, 3, 7236], - [0, 7237, 7238, 7, 5], - [0, -4046, -482, -2029], - [0, -3040, -6633, -3081, -1361, -1427, -2006, -2019, -2052], - [1, 3, 7240], - [0, 7241, 14, 7242, 6], - [0, -12256], - [ - 0, -3240, -9361, -8574, -9854, -12248, -8800, -4123, -1681, -12257, -7219, -12258, -7434, -5554, -2265, -6240, - -12259 - ], - [1, 3, 7244], - [0, 7245, 0, 7246, 6], - [0, -3446, -2387, -1353, -3535, -1864, -12260, -1863], - [0, -5889, -12261, -12262, -1942, -1952, -5538, -707, -12263, -12232], - [1, 3, 7248], - [0, 7249, 7250, 7251, 5], - [0, -714, -1646], - [0, -1654, -1452, -2198, -1405, -756, -1657], - [0, -4055, -687, -5538, -714], - [1, 3, 7253], - [0, 7254, 7255, 7256, 5], - [0, -1692, -10425, -2961, -12264, -12265, -12266], - [ - 0, -1816, -2564, -1313, -1415, -1805, -999, -1496, -12267, -1852, -865, -3913, -6570, -679, -1077, -367, -7043, - -5672, -1424, -1575, -1729, -12268, -2269, -12269, -2410, -3136, -3037, -10624, -12270, -511, -1101, -12271, - -1769, -12272, -12273, -12274, -12275, -12276, -10419, -12277, -3048, -12278, -4835, -4106, -12279, -12280, - -12281, -5038, -12282, -12283, -12284, -12285, -12286, -8863, -12287, -12288, -12289, -5782, -12290, -12291 - ], - [ - 0, -4340, -12292, -12293, -12294, -12295, -7685, -7773, -7485, -12296, -4165, -12297, -12298, -12299, -1857, - -12300, -12301, -12302, -12303, -12304, -12305, -12306, -12307, -12308, -12309 - ], - [1, 3, 7258], - [0, 0, 7259, 7260, 4], - [ - 0, -4201, -589, -664, -12310, -824, -12311, -932, -960, -971, -1168, -1184, -1187, -1208, -2915, -1243, -1244, - -12312, -1273, -1333, -1339, -1449, -1654, -1729, -1771, -1942, -1976, -8318, -8319, -12313, -2091, -8320, - -2205, -12314, -2550 - ], - [0, -12315, -4131], - [1, 3, 7262], - [0, 7263, 7264, 7265, 8], - [0, -615, -617, -714, -1004, -1576, -1650, -1666, -12316, -1813, -1850, -12317], - [0, -664, -1168, -1231, -1663, -2150, -2210, -2211, -2291], - [0, -622, -6011, -11722, -7737, -7736, -3324, -5889, -12318, -5897], - [1, 3, 7267], - [0, 0, 29, 7, 4], - [1, 3, 7269], - [0, 0, 7270, 7271, 6], - [0, -2568, -1654], - [0, -1958], - [1, 3, 7273], - [0, 0, 0, 7274, 7275], - [0, -687, -1959], - 1769904000000, - [1, 3, 7277], - [0, 7278, 0, 7279, 4], - [0, -668, -1959], - [0, -2501, -3862, -1959, -10677], - [1, 3, 7281], - [0, 7282, 7283, 7, 8], - [0, -11744], - [0, -461, -2125, -1405], - [1, 3, 7285], - [0, 0, 7286, 7287, 6], - [ - 0, -633, -767, -932, -4693, -1344, -1471, -1472, -1475, -1482, -1534, -1654, -1771, -1942, -2125, -2127, -2143, - -2210, -2491, -2410 - ], - [0, -1961, -1962, -6948, -6306], - [1, 3, 7289], - [0, 7290, 226, 7291, 4], - [0, -1654, -2210, -2424], - [0, -5923, -6306], - [1, 3, 7293], - [0, 89, 7294, 57, 6], - [0, -891, -1050, -1654, -1941], - [1, 3, 7296], - [0, 7297, 7298, 7299, 6], - [0, -5758, -510, -2059, -5975, -2520], - [0, -932, -2471], - [0, -1965, -3958, -12319, -3926], - [0, 7301, 7302, 7303, 6], - [0, -1496, -12320], - [0, -21, -23, -36, -40, -2320, -2322], - [0, -3160, -1966, -687, -1965, -3964, -3958, -3962, -3957, -3972, -3824, -3955, -12321], - [1, 3, 7305], - [0, 7306, 7307, 41, 5], - [0, -1580, -1792, -2029], - [0, -533, -560, -633, -647, -932, -1365, -1415, -2006, -12322, -12323], - [1, 3, 7309], - [0, 0, 7310, 7311, 11], - [ - 0, -4251, -3037, -12324, -652, -1318, -12325, -12326, -1942, -2094, -2100, -12327, -12328, -2399, -2410, -7669, - -2541 - ], - [0, -11876, -9681, -3264, -4675, -8041, -7153, -3839], - [1, 3, 7313], - [0, 7314, 7315, 7316, 5], - [0, -12329, -12330, -12331, -12332, -12333, -12334, -12335, -12336, -12337, -12338, -3037, -1578], - [ - 0, -589, -633, -12339, -647, -668, -931, -932, -986, -988, -1103, -11426, -12340, -9208, -1168, -1208, -1212, - -1252, -1262, -1446, -1646, -1788, -2080, -2322, -2388, -2410, -2416, -2461, -2462, -2463 - ], - [0, -12341, -12342, -12343, -2410], - [1, 3, 7318], - [0, 7319, 7320, 7321, 5], - [0, -12344, -11458, -2729, -2734, -668, -1107, -1412, -2779, -1980, -5471, -2173, -2234, -2818, -2819, -2550], - [ - 0, -3711, -3036, -9705, -12345, -8566, -3037, -617, -664, -665, -11477, -1003, -1004, -1168, -12346, -1260, - -1452, -1548, -1610, -1654, -12347, -2125, -2150, -2177, -2388, -12348, -2410, -12349 - ], - [0, -475, -4004, -3634, -11468, -12350, -11467], - [1, 3, 7323], - [0, 7324, 7325, 7326, 4], - [0, -4377, -12351, -812], - [0, -12352, -3198, -3136, -3037, -511, -1415, -2375, -2410, -9056], - [0, -1334, -1342, -1971, -729, -7680, -12353, -12354, -7827, -12355, -12356, -12357], - [1, 3, 7328], - [0, 7329, 7330, 231, 4], - [0, -12358, -12359, -2114], - [0, -1654, -12360, -2198, -2210, -2250], - [1, 3, 7332], - [0, 7333, 7334, 7335, 5], - [0, -668, -12361, -12362, -1376, -1392, -1548, -1639, -1728, -1820, -2177], - [0, -526, -555, -558, -824, -932, -940, -1362, -1405, -1650, -1654, -1661, -1942, -2125, -2198], - [0, -1168, -1764, -8403, -5897, -3551], - [1, 3, 7337], - [0, 7338, 7339, 7340, 10], - [0, -12363, -12364, -12365, -12366, -12367, -12368, -12369, -12370], - [0, -1650, -2125, -10011, -10009, -10013, -10014, -12371, -12372, -10010], - [0, -3264, -1409, -1974, -3110], - [1, 3, 7342], - [0, 0, 7343, 7, 4], - [0, -589, -11080, -1021, -1948, -12373, -2320, -2322], - [1, 3, 7345], - [0, 7346, 0, 7347, 4], - [0, -908, -1801], - [0, -8027, -11441, -7412, -5865], - [1, 3, 7349], - [0, 0, 7350, 7351, 4], - [0, -708, -1788, -1654], - [0, -1977, -4112, -12374, -12375, -12376, -2435, -12377], - [1, 3, 7353], - [0, 7354, 91, 7355, 5], - [0, -7591, -12378, -755, -11460, -12379, -12380], - [0, -1978, -10366, -11878, -4864], - [1, 3, 7357], - [0, 7358, 0, 7359, 8], - [0, -719, -1026, -1889, -1931], - [0, -7175, -7036, -6694, -7441, -775, -3264, -8199, -12381, -9487, -7725], - [1, 3, 7361], - [0, 0, 7362, 7363, 9], - [0, -1127, -1452, -1612, -1132, -1414, -1148, -1963], - [0, -1980, -1961, -5923, -6305, -6306, -6307, -6309, -510, -6310, -12382, -4865, -3966], - [1, 3, 7365], - [0, 0, 0, 7366, 10], - [0, -6935, -12383, -6934, -7715, -3839, -6527], - [1, 3, 7368], - [0, 0, 0, 7369, 4], - [0, -5514, -4111, -6935, -4000], - [1, 3, 7371], - [0, 7372, 7373, 7374, 4], - [0, -7397], - [ - 0, -12384, -12385, -5834, -633, -647, -12386, -887, -921, -932, -993, -1065, -1107, -8080, -12387, -11104, - -7402, -1283, -1351, -1365, -1408, -1431, -1650, -1659, -6374, -1777, -1788, -1794, -8385, -2156, -9786, -2322, - -12388 - ], - [0, -1985, -1983, -5101, -2435, -1838, -6231], - [1, 3, 7376], - [0, 7377, 7378, 7379, 4], - [0, -12389, -12390, -12391], - [0, -519, -589, -821, -1023, -2384, -2541], - [0, -4865, -1985, -5101, -2265, -1983, -12392, -12393, -2435, -1838, -6231, -6422, -6420, -12394, -7724], - [1, 3, 7381], - [0, 0, 7382, 7383, 4], - [0, -4004, -12395, -2322], - [0, -4791, -5101, -1985], - [1, 3, 7385], - [0, 0, 7386, 7387, 4], - [0, -652, -1339, -12396], - [0, -1986, -510, -6235, -12397, -5418, -4107, -11866, -5920], - [1, 3, 7389], - [0, 119, 120, 7390, 4], - [ - 0, -1986, -11868, -12398, -12399, -12400, -3214, -7484, -7485, -3756, -2410, -7486, -4165, -3018, -5418, -12401, - -1986, -12402, -12403, -12404, -10587, -11866, -12405, -11049, -7530, -7283, -12406, -6582, -7534, -7535, -7536, - -7537, -7538, -7539, -7540, -7541, -7542, -7543, -7544, -7545, -7503, -12407, -7547, -7548, -6948, -7549, -7550, - -7551, -7552, -7553, -7554, -7555, -7556, -7557, -2444, -7558, -7559, -5063, -7560, -1980, -12408, -5839, - -11450, -12409, -5737, -12410, -2634, -3966, -12411, -11052, -6187, -7563, -856, -7275 - ], - [1, 3, 7392], - [0, 7393, 7394, 7395, 4], - [0, -1549, -12412, -12413, -996], - [ - 0, -1107, -2303, -1449, -932, -2286, -2469, -2379, -2501, -1942, -2376, -21, -778, -2410, -23, -3037, -1322, - -2503, -534, -1304, -2275, -2287, -2508, -3046, -5286, -3983, -3164, -40, -2233, -2505, -12414, -1331, -958, - -2335, -940, -962, -967, -1643, -42, -12415, -428, -8561, -12416, -427, -4011, -948 - ], - [0, -1988, -3496, -3495, -3494, -3505, -3506, -3161], - [1, 3, 7397], - [0, 7398, 7399, 7400, 11], - [0, -719, -10988, -1747], - [ - 0, -1788, -1127, -1496, -932, -2125, -2127, -2177, -589, -1054, -12417, -2111, -1972, -8573, -23, -12418, -40, - -957, -966, -1138, -8022, -9544, -3326, -952, -958, -12419, -968, -1137, -3561, -943, -963, -350, -942, -351, - -12420, -3840 - ], - [0, -3634, -5119, -507, -5855, -2319, -2322, -1471, -1437], - [1, 3, 7402], - [0, 7403, 7404, 7405, 8], - [0, -12421], - [ - 0, -2832, -12422, -427, -428, -3664, -549, -558, -726, -932, -940, -967, -6726, -8011, -1942, -2910, -1989, - -2091, -12423, -2127, -4063, -2142, -2410, -2469, -2501 - ], - [0, -4865, -5092, -3264, -1989, -12424, -3634], - [1, 3, 7407], - [0, 7408, 7409, 7410, 4], - [0, -679, -719, -12425, -1048, -12426, -2114, -2488], - [ - 0, -510, -537, -559, -12427, -705, -10255, -10260, -957, -8022, -999, -1054, -1077, -1127, -1132, -1133, -1137, - -1138, -9544, -1149, -9240, -1152, -10257, -9241, -10644, -12418, -1542, -1972, -2111, -2128, -2177 - ], - [0, -3634, -5119, -1437], - [1, 3, 7412], - [0, 7413, 7414, 7415, 9], - [0, -1856], - [0, -12428, -633, -2322], - [0, -12429, -3582], - [1, 3, 7417], - [0, 0, 7418, 7419, 5], - [ - 0, -21, -23, -40, -43, -47, -3326, -10022, -12430, -571, -589, -693, -767, -12431, -932, -958, -1023, -1276, - -1442, -1654, -1771, -1788, -2125, -2127, -2143, -12432, -12433, -2210, -2342, -12434 - ], - [0, -1993, -5112, -5260, -8113, -3481, -11639, -12435, -12436, -12437, -9976, -12438], - [1, 3, 7421], - [0, 7422, 27, 7423, 6], - [0, -2172], - [0, -6555, -12439, -12439, -10781, -3262, -12440, -5554], - [1, 3, 7425], - [0, 177, 7426, 7427, 5], - [0, -1859, -2250, -2320, -2322, -2568], - [0, -770, -6555], - [1, 3, 7429], - [0, 7430, 27, 7, 10], - [0, -1995], - [1, 3, 7432], - [0, 0, 172, 7433, 9], - [0, -7434, -3215, -1334], - [1, 3, 7435], - [0, 7436, 7437, 7438, 6], - [0, -1616, -2446, -743, -12441, -2249], - [0, -1107, -1722, -1654, -2210, -932, -2198, -1405, -1942, -710, -940], - [0, -11428, -8980, -12442, -5545, -1998, -12443], - [1, 3, 7440], - [0, 7441, 7442, 7, 5], - [0, -651, -12444, -1351, -1335], - [0, -1788, -1654, -932, -615, -2884, -2155, -2062, -3748, -5029], - [1, 3, 7444], - [0, 205, 7445, 48, 5], - [ - 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -767, -824, -825, -932, -940, -958, -967, -1344, -1415, -1534, - -1623, -1771, -1942, -2251, -2501 - ], - [1, 3, 7447], - [0, 7448, 0, 7449, 4], - [0, -1371, -1646, -822, -2271], - [0, -727, -2001, -11642, -10659], - [1, 3, 7451], - [0, 7452, 7453, 7454, 5], - [0, -44, -682, -2004], - [ - 0, -12445, -407, -409, -3059, -3136, -3037, -3040, -3052, -6265, -767, -881, -932, -959, -978, -1031, -12446, - -1103, -1107, -1521, -1763, -12447, -2003, -4946, -2006, -2019, -2082, -2410 - ], - [0, -2006, -3159, -12448, -12449, -3962, -7434], - [1, 3, 7456], - [0, 7457, 7458, 7459, 5], - [0, -44, -5650, -682, -2004], - [ - 0, -12445, -409, -3136, -3040, -3052, -4972, -767, -881, -932, -978, -1031, -1103, -1521, -1763, -12447, -2006, - -2019, -2410 - ], - [0, -2006, -3159, -12450, -3821], - [1, 3, 7461], - [0, 7462, 7463, 7464, 5], - [0, -44, -2029], - [ - 0, -12445, -409, -3136, -3037, -3040, -3052, -6633, -12451, -4972, -6265, -761, -767, -881, -932, -959, -978, - -1031, -1107, -1344, -1534, -1763, -1942, -12447, -2006, -2019, -2410 - ], - [0, -2006, -2444], - [1, 3, 7466], - [0, 0, 0, 41, 10], - [1, 3, 7468], - [0, 7469, 0, 245, 10], - [0, -2055], - [1, 3, 7471], - [0, 7472, 7473, 245, 5], - [0, -1792], - [0, -1415, -2006, -2019, -2501], - [1, 3, 7475], - [0, 7476, 7477, 7478, 5], - [0, -12453, -12454, -12455, -12456, -12457], - [0, -2127, -2410], - [0, -3321, -1122, -2006, -3322, -8977, -3098], - [1, 3, 7480], - [0, 7481, 0, 7, 11], - [0, -1992, -753, -1961, -2516, -1792, -2082], - [1, 3, 7483], - [0, 7484, 0, 7485, 4], - [0, -2489, -1384, -682, -1967, -12458, -860, -44, -12459, -12460, -12461, -3140, -2055, -3024], - [0, -620, -2006, -3095, -3098, -12462, -3159], - [1, 3, 7487], - [0, 7488, 7489, 7490, 5], - [0, -12463, -1548, -1549, -12464, -1967, -12465, -2355], - [ - 0, -12466, -12467, -6263, -6264, -4749, -526, -527, -533, -534, -12468, -559, -560, -562, -566, -664, -12469, - -778, -915, -994, -1033, -1304, -1322, -1331, -1347, -1415, -1417, -12470, -1654, -1762, -1764, -1792, -2006, - -8934, -12471, -2019, -2024, -12472, -2052, -2102, -2109, -2125, -2275, -12473, -2501, -2505 - ], - [0, -2006, -12474, -3159, -8597, -4122, -12475, -10366, -12476, -3119, -3825], - [1, 3, 7492], - [0, 7493, 7494, 7495, 9], - [0, -747, -1967], - [ - 0, -21, -23, -32, -26, -36, -40, -41, -43, -534, -553, -778, -827, -932, -933, -958, -962, -969, -970, -1103, - -1331, -12477, -1643, -2006, -2019, -2275, -2322, -2501, -2503, -2505 - ], - [0, -3095, -3159, -2006, -12478, -699], - [1, 3, 7497], - [0, 7498, 7499, 7500, 9], - [0, -2852, -703, -807], - [ - 0, -23, -32, -3192, -3840, -26, -40, -41, -42, -190, -12479, -3326, -350, -351, -3266, -3267, -406, -409, -410, - -3330, -3136, -4961, -3037, -3040, -3052, -427, -428, -522, -533, -553, -753, -12480, -932, -940, -958, -959, - -969, -970, -9724, -1344, -1415, -4980, -1416, -1419, -1534, -1548, -1942, -2006, -2019, -2127, -5090, -2162, - -2223, -2281, -2282, -3436, -2285, -2375, -2387, -2410, -2411 - ], - [0, -2006, -4222, -4120, -4121, -3159], - [1, 3, 7502], - [0, 7503, 7504, 7, 5], - [ - 0, -1805, -668, -1359, -1111, -1872, -6558, -1047, -12481, -1966, -1044, -1273, -2269, -2343, -769, -2194, -635, - -1543, -6197, -12482, -22, -2070, -2021, -930, -1067 - ], - [0, -1415, -767], - [1, 3, 7506], - [0, 7507, 7508, 7, 6], - [0, -12483, -12484, -12485, -1025, -1311], - [0, -4010, -367, -409, -5220, -3136, -3037, -3040, -3052, -1415, -5129, -1771, -2006, -2019, -2200, -2410], - [1, 3, 7510], - [0, 7511, 7512, 7, 8], - [0, -12485], - [0, -4010, -367, -3136, -1771, -2200, -2410], - [1, 3, 7514], - [0, 7515, 0, 7516, 4], - [0, -2114, -8245, -23, -47, -4096, -3200, -46, -12486, -4776, -10101], - [0, -2006, -856, -12487], - [1, 3, 7518], - [0, 7519, 0, 41, 4], - [0, -2166], - [1, 3, 7521], - [0, 7522, 7523, 7524, 4], - [0, -12488, -12489, -1967], - [ - 0, -21, -23, -32, -3840, -12490, -34, -12491, -6065, -5584, -12492, -38, -40, -41, -43, -86, -9404, -12493, - -10709, -3326, -350, -351, -3470, -7040, -3472, -7041, -7042, -5295, -4774, -12494, -406, -407, -409, -2622, - -3040, -3052, -427, -428, -533, -535, -536, -720, -767, -932, -940, -958, -962, -966, -967, -969, -970, -1344, - -12495, -1357, -1415, -1534, -1609, -1868, -1942, -2006, -2019, -2049, -2052, -2125, -2127, -2140, -2174, -2214, - -2275, -2278, -2410, -2501, -12496 - ], - [0, -3159, -2006, -7581, -7582, -7764], - [1, 3, 7526], - [0, 0, 7527, 7528, 4], - [ - 0, -22, -23, -2624, -533, -534, -561, -668, -679, -767, -1059, -1320, -1415, -12497, -1792, -1961, -2000, -2006, - -2010, -2019, -2125, -12498, -2231, -2501 - ], - [0, -12499, -4132, -6324, -5547, -6335, -12500, -12501, -2489], - [1, 3, 7530], - [0, 7531, 7532, 7533, 4], - [0, -1792, -1967, -2798, -12502], - [ - 0, -527, -528, -537, -539, -546, -551, -558, -560, -664, -708, -740, -796, -932, -12503, -940, -958, -962, -964, - -967, -969, -1405, -1471, -1474, -12504, -1475, -1476, -1479, -12505, -1482, -1486, -1490, -1491, -11508, -1654, - -1942, -2006, -2019, -2125, -2127, -2128, -2131, -2137, -2138, -2210, -2211 - ], - [0, -2022, -12506, -2006, -10855, -12507, -12508, -12509, -10606, -11729, -3956, -12510, -5553], - [1, 3, 7535], - [0, 0, 7536, 7537, 4], - [ - 0, -3615, -262, -350, -351, -3266, -367, -7043, -407, -409, -3136, -3037, -3040, -3052, -3563, -795, -932, -940, - -3071, -967, -969, -970, -4814, -1344, -1415, -1419, -12511, -2781, -1534, -1942, -2006, -2019, -2125, -2127, - -2142, -2384, -2410, -2411, -2516, -2564 - ], - [0, -2006, -3322, -4053, -4054, -12512, -3926, -2410, -4124], - [1, 3, 7539], - [0, 7540, 7541, 7542, 6], - [0, -10579, -1109, -1311, -1543, -1967, -2030, -2192, -2231], - [ - 0, -3795, -3040, -3807, -526, -527, -528, -533, -536, -537, -546, -551, -556, -558, -560, -708, -6019, -761, - -767, -915, -12513, -916, -932, -933, -940, -958, -962, -969, -1344, -1415, -1534, -1942, -2006, -2019, -12514, - -2052, -2069, -2125, -2127, -2128, -2131, -2133, -2137, -2138, -2143, -2251, -12515 - ], - [0, -2006, -3214, -2501, -6211, -1540, -12516, -10589, -12517, -5932, -11492], - [1, 3, 7544], - [0, 7545, 7546, 7547, 6], - [0, -44, -2770, -12518], - [ - 0, -21, -23, -32, -12519, -36, -3204, -38, -39, -40, -41, -43, -3326, -350, -351, -3561, -3266, -406, -407, - -409, -3136, -3040, -3664, -7465, -527, -3766, -6046, -756, -757, -767, -932, -933, -940, -958, -12520, -962, - -969, -976, -1278, -1344, -1349, -1534, -1650, -1942, -2006, -2019, -2052, -2125, -2127, -2410, -2469, -2550 - ], - [0, -1349, -9780, -1348, -9781, -9782, -9772, -9783, -2006, -3476], - [1, 3, 7549], - [0, 0, 7550, 7551, 10], - [ - 0, -2832, -2581, -5295, -407, -409, -3037, -3040, -3052, -440, -2970, -3899, -8349, -1534, -1637, -1771, -1874, - -2910, -2006, -2019, -3246, -2214, -2391, -2410, -2469 - ], - [0, -2006, -3095, -3322, -12521, -12522, -12523, -12524, -12525, -12526, -12527], - [1, 3, 7553], - [0, 7554, 0, 7555, 4], - [0, -5220, -1311, -2387, -12528, -12529, -12530, -12531], - [0, -3276, -5538, -9783, -1348, -9780, -1382, -12250, -9782, -2006, -3476, -3940, -9781], - [1, 3, 7557], - [0, 0, 0, 41, 6], - [1, 3, 7559], - [0, 0, 7560, 7, 5], - [0, -656, -668, -932, -12532, -1415, -1417, -1942, -2127, -2138, -2143], - [1, 3, 7562], - [0, 7563, 7564, 7565, 6], - [0, -5334, -4251, -9596, -1291, -2632, -1619, -2098, -2101, -2427, -2429, -5358], - [ - 0, -409, -3037, -3040, -3052, -652, -725, -928, -969, -4652, -1942, -2006, -2019, -2088, -12533, -2094, -2095, - -2100, -4656, -2399, -2410, -2541 - ], - [0, -3272, -8630, -3095, -4329, -1599, -2006, -3159, -2093, -2427], - [1, 3, 7567], - [0, 7568, 7569, 7570, 5], - [0, -12534, -1967, -2030, -2489], - [ - 0, -12535, -526, -527, -528, -534, -535, -558, -560, -564, -756, -767, -932, -940, -12416, -958, -962, -967, - -969, -5997, -1471, -1475, -1476, -1479, -1482, -1483, -1490, -1492, -1654, -1771, -1942, -2006, -2019, -2043, - -2044, -2198, -2416, -2501, -2503, -2505 - ], - [0, -2006, -3159, -4126, -12536], - [1, 3, 7572], - [0, 7573, 7574, 7575, 5], - [0, -1856, -1967, -1992], - [ - 0, -525, -12537, -527, -528, -534, -709, -778, -932, -933, -949, -958, -962, -969, -1059, -11942, -12538, - -12539, -1413, -1471, -1476, -1481, -12540, -1484, -1492, -12541, -1859, -2024, -2275, -2501, -2505 - ], - [0, -2006, -3095, -3159, -12542, -12543, -12544, -12545, -5176, -12546, -3160], - [1, 3, 7577], - [0, 7578, 0, 246, 4], - [ - 0, -2531, -2624, -2550, -2177, -1961, -578, -719, -1384, -2166, -481, -533, -12547, -2654, -1624, -2516, -12548, - -1950, -2041, -12549, -458, -12550, -11463, -12551, -9870, -2082, -12552, -1421, -12553, -12554, -12555, -12556, - -12557, -12558, -12559, -12560 - ], - [1, 3, 7580], - [0, 0, 7581, 7582, 4], - [0, -12563, -12564, -12565, -932, -967, -1942, -2006, -2034, -12566, -2410], - [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -12568], - [1, 3, 7584], - [0, 7585, 7586, 7587, 6], - [0, -2550, -1967], - [ - 0, -2006, -932, -12569, -12570, -1387, -1942, -4731, -21, -12571, -23, -528, -1064, -12572, -9081, -12573, - -12574, -12575, -12576, -12577, -969, -933, -958, -940, -962, -967, -970, -3156 - ], - [ - 0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -12578, -7084, -12579, -3160, -3167, -3843, -9472, -9474, - -3827 - ], - [1, 3, 7589], - [0, 0, 7590, 7591, 9], - [ - 0, -21, -23, -26, -36, -3203, -40, -41, -43, -12580, -2685, -8471, -261, -6429, -3267, -407, -409, -410, -3040, - -428, -528, -534, -535, -3090, -682, -703, -767, -932, -940, -949, -958, -969, -1103, -1449, -1613, -6519, - -1942, -4130, -2006, -2019, -12581, -2127, -2128, -2131, -5090, -2134, -2137, -2138, -2143, -2376, -2410, -2469, - -2501, -2503, -2505 - ], - [0, -3159, -2006, -12582, -3962, -6240, -12583, -6769], - [1, 3, 7593], - [0, 0, 7594, 7595, 4], - [ - 0, -23, -26, -36, -40, -6035, -3326, -528, -534, -664, -932, -1344, -1534, -1654, -1771, -1942, -2006, -2019, - -2052, -12584, -2125, -2127, -2501 - ], - [0, -2006, -12585, -12586, -12587], - [1, 3, 7597], - [0, 0, 7598, 7599, 4], - [0, -4066, -12588, -932, -12589, -967, -12590, -1415, -1942, -2127, -2410], - [0, -2039, -3264, -3839, -5092, -7153, -9681, -727, -2006, -2019], - [1, 3, 7601], - [0, 7602, 7603, 7604, 5], - [0, -12591, -12518], - [ - 0, -262, -349, -406, -407, -409, -3037, -3140, -3040, -3052, -708, -767, -932, -940, -948, -958, -967, -969, - -1449, -1942, -2006, -2019, -2074, -2125, -2391, -2410, -2411, -2469 - ], - [0, -2006, -3476, -2074], - [0, 0, 0, 41, 4], - [1, 3, 7607], - [0, 7608, 7609, 7610, 4], - [0, -1346, -12592, -1967, -5582], - [ - 0, -3267, -3035, -12593, -4647, -12594, -12595, -3621, -3040, -3052, -4372, -427, -428, -664, -767, -932, -952, - -1103, -1449, -12596, -1654, -1942, -2006, -2019, -2125, -2127, -5405, -2198, -2210, -2387, -2392, -2402, -2410 - ], - [0, -775, -3159, -12521, -2006, -3162, -12597, -12598, -3580, -12599, -3576, -3095], - [1, 3, 7612], - [0, 7613, 7614, 248, 6], - [0, -743, -3169], - [0, -2391, -2006, -2426, -12600, -12601, -2019, -2410, -2052, -409, -1419, -3172, -407, -410], - [1, 3, 7616], - [0, 7617, 7618, 248, 10], - [0, -2043], - [0, -2391, -2006, -12600, -2019, -2410], - [1, 3, 7620], - [0, 0, 7621, 7622, 4], - [ - 0, -526, -527, -528, -534, -9887, -9888, -556, -559, -560, -563, -566, -932, -941, -956, -958, -962, -969, - -1001, -1306, -9413, -12539, -1471, -1476, -1479, -1482, -1483, -1490, -1492, -1654, -2006, -2019, -2040, -2043, - -2074, -12602, -12603, -12604, -2501 - ], - [0, -2006, -2074, -3122], - [1, 3, 7624], - [0, 7625, 28, 7, 4], - [ - 0, -594, -1415, -865, -932, -2177, -1889, -1966, -2114, -2501, -1077, -1080, -656, -533, -778, -23, -1041, - -2163, -2318, -534, -635, -1426, -2275, -366, -866, -2041, -1908, -2015, -1918, -2233, -1352, -1927, -2010, - -2116, -2505, -1331, -1428, -10049, -2335, -561, -1903, -2526, -941, -1643, -2507, -779, -542, -661, -2695 - ], - [1, 3, 7627], - [0, 7628, 7629, 7630, 11], - [0, -44, -3772, -3778, -3819, -3024, -1624, -1967, -2055, -3820], - [0, -5131, -915, -2760, -5116, -2006, -2019], - [0, -12605, -4053, -3962, -12606, -2006, -3159, -6750, -3160], - [1, 3, 7632], - [0, 7633, 7634, 7635, 5], - [0, -682, -12607, -1553, -2113], - [ - 0, -21, -23, -32, -26, -39, -40, -41, -12608, -407, -409, -410, -3037, -518, -527, -533, -534, -557, -778, -823, - -824, -923, -932, -958, -969, -1004, -12609, -1168, -1243, -1344, -1415, -1419, -1440, -1455, -1534, -1812, - -1908, -1942, -1992, -2006, -2019, -2082, -2210, -12610, -2275, -2417, -2501, -2503, -2505, -12611 - ], - [0, -12612, -12613, -12614, -12615, -12449, -3159], - [1, 3, 7637], - [0, 7638, 7639, 7640, 5], - [ - 0, -12616, -3081, -12617, -461, -6426, -507, -5223, -639, -684, -12618, -703, -12619, -748, -753, -8245, -12620, - -925, -930, -931, -989, -11676, -5504, -12621, -3649, -1107, -12622, -1284, -1395, -12623, -12624, -12625, - -12626, -12627, -12628, -12629, -12630, -1496, -12631, -1548, -9160, -1606, -12632, -3446, -1816, -1955, -1967, - -12633, -12634, -2015, -2018, -12635, -12636, -12637, -2026, -5351, -2066, -2093, -12638, -2335, -8299, -12639, - -2429, -2505, -2508 - ], - [ - 0, -21, -23, -26, -40, -6056, -41, -42, -407, -409, -12640, -12641, -12486, -12642, -426, -12643, -3136, -12644, - -3044, -12645, -3037, -3803, -3040, -3052, -12646, -12647, -3046, -12648, -3806, -427, -428, -527, -528, -533, - -534, -778, -12310, -12649, -12650, -12651, -932, -12652, -948, -952, -958, -962, -969, -1041, -1077, -1344, - -1415, -12653, -1534, -1623, -1942, -1992, -2006, -2019, -2052, -12654, -2275, -2410, -2437, -2501, -2503 - ], - [0, -2006, -4146, -4900, -4901, -856, -3671, -3262, -3095, -3098], - [1, 3, 7642], - [0, 7643, 7644, 7645, 4], - [0, -44, -401, -3140, -1967], - [ - 0, -23, -38, -40, -41, -190, -6486, -3326, -350, -351, -3561, -3266, -409, -3136, -4647, -3037, -3040, -3052, - -3714, -553, -2745, -932, -940, -969, -970, -4814, -1110, -1415, -1419, -1722, -1772, -1942, -2006, -2019, - -2127, -2195, -2200, -5091, -2375, -2379, -2410, -2411 - ], - [0, -5092, -3264, -5093, -5094, -3214, -2006, -12655, -3839, -12656, -2410], - [1, 3, 7647], - [0, 7648, 0, 7649, 6], - [0, -1033], - [0, -12657, -2006, -2363, -826, -12658, -2051], - [1, 3, 7651], - [0, 7652, 0, 7653, 8], - [0, -2029, -2166], - [0, -2006, -2034, -12659], - [1, 3, 7655], - [0, 108, 7656, 7657, 5], - [ - 0, -12660, -11184, -234, -405, -3037, -3040, -3052, -440, -756, -795, -2926, -1534, -1889, -1942, -2006, -2019, - -2391, -2410, -2466, -12661 - ], - [0, -2006, -4127, -12662, -3159, -2053, -5737, -12663, -12664, -12665], - [1, 3, 7659], - [0, 7660, 7661, 7662, 5], - [0, -12666, -12667], - [ - 0, -589, -633, -647, -710, -12668, -3346, -913, -12669, -923, -932, -12670, -1127, -1132, -10258, -1134, -7849, - -1137, -1144, -12671, -10265, -12672, -1417, -1813, -1859, -6184, -12673, -2066, -9266, -2359, -2410, -2416, - -12322, -2493 - ], - [0, -2006, -4146, -8530, -6107], - [1, 3, 7664], - [0, 7665, 0, 7666, 10], - [0, -44, -860, -1580, -1967], - [0, -2006, -12546, -8111, -12674, -5176, -775, -12675], - [1, 3, 7668], - [0, 7669, 7670, 7671, 6], - [0, -703, -1967, -860, -1580, -44, -2030], - [ - 0, -1415, -1344, -2006, -2490, -932, -2125, -2127, -708, -1889, -2501, -1059, -1103, -1942, -767, -1361, -1978, - -2019, -21, -533, -709, -778, -23, -1041, -1534, -1891, -2503, -518, -528, -534, -1952, -2043, -2275, -1908, - -39, -11942, -12676, -2044, -40, -6056, -7748, -2505, -41, -12677, -951, -969, -12678, -1331, -2052, -2128, - -2143, -12679, -2138, -940, -956, -962, -967, -2131, -12680, -2137, -1017, -3840, -38, -6057, -12681, -26, - -3204, -553 - ], - [0, -2006, -3476, -3159, -9614, -4108, -12682, -12683, -12684, -4002, -12685, -5147, -12129, -6445, -4672, -9133], - [1, 3, 7673], - [0, 7674, 7675, 7676, 10], - [0, -2346, -2054], - [0, -1654, -1452, -2177, -6398, -633, -725, -12686], - [0, -2006, -633, -6340, -4146, -3756, -3862, -6408], - [1, 3, 7678], - [0, 7679, 7680, 7681, 5], - [0, -44, -2997, -682, -1967, -2804, -2055], - [ - 0, -21, -23, -32, -34, -35, -36, -3204, -40, -41, -4757, -4762, -4754, -12687, -4749, -407, -409, -410, -3040, - -528, -533, -534, -561, -620, -726, -740, -10524, -767, -12688, -879, -888, -932, -933, -940, -956, -958, -962, - -969, -4756, -12689, -1415, -1419, -1449, -1455, -1637, -1942, -2006, -2019, -2022, -12690, -2043, -2052, -2410, - -2501 - ], - [0, -2058, -620, -2006, -3095, -3098, -3159, -3160], - [1, 3, 7683], - [0, 7684, 7685, 7, 4], - [0, -3950], - [0, -4298, -4300, -3952, -5866, -428, -652, -948, -2319, -2379, -2386, -2410], - [1, 3, 7687], - [0, 7688, 118, 7689, 8], - [0, -6902, -6904, -6990, -2400, -8803], - [0, -4055, -2059, -1838, -6656, -1076, -11998, -6994, -5897, -6811], - [1, 3, 7691], - [0, 7692, 14, 7693, 4], - [0, -8341, -2060, -2400], - [ - 0, -4055, -2059, -1838, -6656, -1076, -11998, -6994, -5897, -5573, -8804, -1047, -5504, -8805, -8806, -7282, - -5572, -2114, -8807, -6370, -7420, -7421, -2487, -8808, -1847 - ], - [1, 3, 7695], - [0, 7696, 7697, 7698, 9], - [0, -458, -640, -997, -1958, -6383], - [ - 0, -23, -6065, -5584, -3244, -350, -6572, -351, -357, -633, -652, -928, -12691, -932, -943, -958, -965, -968, - -1874, -1942, -2127, -9701, -2319, -12692, -2322, -2323, -2426, -2501, -2503 - ], - [0, -8800, -5827, -11441], - [1, 3, 7700], - [0, 0, 7701, 7702, 8], - [0, -2319, -1351], - [0, -2063, -12693, -6656], - [1, 3, 7704], - [0, 0, 0, 7705, 9], - [0, -2063, -12397, -9845, -1965, -3969, -5110, -687, -3975, -3957, -12694, -10394, -4116, -6301], - [0, 68, 15, 16, 5], - [1, 3, 7708], - [0, 7709, 7710, 7711, 5], - [0, -5223, -987, -2231, -12695, -2387], - [ - 0, -23, -25, -40, -12696, -3036, -3621, -3037, -428, -932, -12670, -12697, -1107, -1534, -1654, -1942, -9880, - -2410 - ], - [0, -3272, -9306, -12698, -9308, -4132, -9307, -6747, -12699], - [0, 67, 15, 16, 8], - [1, 3, 7714], - [0, 7715, 125, 7716, 4], - [0, -2114], - [0, -4792, -5932, -5195, -8109, -12700], - [1, 3, 7718], - [0, 7719, 0, 7720, 4], - [0, -44, -12701, -1033, -1311, -2030, -5746], - [0, -2006, -12702, -3098, -12703, -3481, -8113, -12704], - [1, 3, 7722], - [0, 124, 27, 7723, 8], - [0, -7421, -12705], - [1, 3, 7725], - [0, 7726, 0, 7727, 6], - [0, -12706, -12707, -12708, -12709, -12710], - [0, -2071], - [1, 3, 7729], - [0, 7730, 7731, 150, 10], - [ - 0, -3544, -3786, -1610, -3788, -1955, -2223, -1885, -863, -682, -1653, -1967, -3790, -3791, -3787, -3793, -996, - -3789, -1848, -3792, -2680, -12711 - ], - [ - 0, -1992, -2435, -1415, -1652, -1344, -2006, -2387, -915, -932, -2125, -753, -795, -1442, -1821, -2195, -2375, - -2379, -3811, -2501, -1942, -2019, -778, -2214, -2410, -3035, -3136, -3800, -3037, -3810, -2503, -3040, -3041, - -1952, -2275, -3043, -3802, -3801, -3803, -3805, -3046, -2760, -3808, -3809, -4773, -3797, -3052, -3140, -2278, - -3806, -585, -2505, -3799, -748, -969, -1331, -958, -3798, -1419, -2509, -3804, -428, -970, -740, -3794, -1067, - -427, -12712 - ], - [1, 3, 7733], - [0, 7734, 7735, 7736, 4], - [0, -12713, -12714], - [0, -2006, -2501, -2019, -2410, -3040, -3052, -3859, -12715], - [0, -2072, -3438, -3690, -4847, -856, -12716, -858, -12717], - [1, 3, 7738], - [0, 0, 7739, 7740, 5], - [ - 0, -23, -3037, -427, -428, -767, -4780, -932, -941, -948, -958, -969, -970, -1107, -12718, -1942, -2125, -2153, - -2391, -2410, -2469 - ], - [0, -2074, -4782, -4125, -12719, -5112, -1361, -12517, -12516, -12720, -1062, -12721], - [1, 3, 7742], - [0, 7743, 7744, 7745, 5], - [0, -12722, -12723], - [0, -12724, -12725, -12726, -1344, -1534, -1771, -1942, -2466, -2469, -2541], - [0, -1062, -2074, -10951, -12727], - [1, 3, 7747], - [0, 7748, 7749, 7750, 5], - [0, -1548, -2029, -924, -1384, -1398, -1967, -44, -1311], - [ - 0, -2359, -1415, -1344, -2006, -2074, -932, -2125, -708, -2501, -1059, -1942, -767, -1361, -2019, -21, -821, - -2214, -23, -12728, -1534, -2040, -2503, -528, -534, -12729, -40, -41, -540, -951, -969, -6040, -2052, -958, - -12726, -12730, -956, -962, -941, -2502, -970, -5295, -12416, -38, -26, -3203 - ], - [0, -2006, -3476, -1062, -2074, -2040, -2076, -4053, -11313], - [1, 3, 7752], - [0, 7753, 7754, 7755, 6], - [0, -819], - [ - 0, -527, -537, -11899, -559, -664, -708, -932, -933, -958, -962, -969, -1339, -1344, -1654, -1788, -2074, -2125, - -2127, -2128, -2131, -2137, -2143, -2210 - ], - [0, -2074, -3444, -2077, -5401], - [1, 3, 7757], - [0, 7758, 7759, 7760, 10], - [0, -12731], - [0, -23, -38, -39, -40], - [0, -3214, -2074, -5401, -12732, -12733, -12734], - [1, 3, 7762], - [0, 0, 7763, 7764, 5], - [0, -427, -428, -767, -932, -940, -1942, -2074, -2125, -2391, -2410, -2469], - [0, -2074, -12735, -5401, -12736, -1062], - [1, 3, 7766], - [0, 0, 7767, 7768, 4], - [0, -3035, -3621, -3037, -664, -824, -12737, -1168, -12738, -12739, -1231, -1243, -12740, -1259, -1654, -2410], - [0, -11313, -11872, -3214, -12741], - [1, 3, 7770], - [0, 0, 7771, 7772, 8], - [0, -708, -1127, -1162, -1405, -6186, -1991, -2111], - [0, -5569, -5570, -3214, -4112, -3262, -3673], - [1, 3, 7774], - [0, 0, 0, 7775, 4], - [0, -12742, -11997, -3262, -510], - [1, 3, 7777], - [0, 7778, 0, 7779, 6], - [0, -5334, -2087, -2090, -2427], - [0, -12743, -3272, -3264, -1838, -1958, -2083, -6233, -6231, -4132, -10919, -2427], - [1, 3, 7781], - [0, 7782, 7783, 7784, 5], - [0, -5334, -9581, -4264, -2766, -2427, -2429], - [0, -3037, -9586, -652, -12744, -1942, -2083, -2094, -2100, -2399, -2410, -2541], - [0, -2427, -2083, -12745, -3862, -10857, -10606, -3264], - [1, 3, 7786], - [0, 7787, 7788, 7789, 4], - [0, -5334, -9581, -2766, -12746, -2235, -2429], - [0, -3037, -9586, -652, -1942, -2083, -2094, -2100, -2399, -2410, -2541], - [0, -2427, -2083, -12745, -3862, -9589, -3264, -1599, -12747, -10606, -2435], - [1, 3, 7791], - [0, 7792, 7793, 7794, 11], - [0, -5334, -12748, -1618, -5204, -5205, -2427, -5356], - [0, -4228, -3037, -3040, -652, -932, -12749, -962, -969, -9602, -1942, -2094, -11167, -12750, -2410], - [0, -9589, -3264, -1599, -4147, -2083, -12745, -2427], - [1, 3, 7796], - [0, 7797, 0, 7798, 5], - [0, -5334, -2586, -2427], - [0, -12743, -3272, -3264, -1838, -3862, -2083, -12745, -4132, -10919, -2427], - [1, 3, 7800], - [0, 7801, 7802, 7803, 8], - [0, -5334, -1286, -5358], - [0, -3037, -652, -1942, -2090, -2094, -2098, -2100, -2101, -2399, -2410, -2427, -2429, -2541], - [0, -3264, -3862, -9591, -2083, -12745, -2427], - [1, 3, 7805], - [0, 7806, 7807, 7808, 4], - [0, -5334, -3649, -4264, -1292, -2429], - [0, -3037, -652, -1942, -2083, -2094, -2100, -2399, -2410, -2541], - [0, -10857, -3264, -7231, -3862, -2083, -12745, -2222, -2427], - [1, 3, 7810], - [0, 7811, 0, 7812, 6], - [0, -5334, -1290, -2427], - [0, -12743, -3272, -7644, -3264, -3862, -2083, -12745, -6233, -6231, -4132, -10919, -2427], - [1, 3, 7814], - [0, 7815, 7816, 7817, 5], - [ - 0, -12751, -305, -12752, -512, -6563, -680, -6869, -4236, -1376, -12753, -1566, -1641, -11656, -1805, -1816, - -3547, -8874, -2177, -2654, -2426, -2436, -12754, -2551 - ], - [0, -190, -12755, -3037, -932, -8339, -1110, -3781, -1498, -12756, -12757, -1942, -2094, -12758, -2323, -2410], - [ - 0, -7641, -5887, -5890, -12759, -5889, -1105, -7661, -9845, -6657, -1764, -8403, -5737, -9244, -2091, -7737, - -11729, -5550, -6818, -3673, -9318, -2177, -3862 - ], - [1, 3, 7819], - [0, 7820, 7821, 7822, 4], - [0, -1405, -1645, -1876, -2231, -2347], - [0, -932, -934, -958, -1127, -1168, -12760, -2125], - [0, -7841, -9219, -2231, -1405, -4005], - [1, 3, 7824], - [0, 7825, 0, 7826, 4], - [0, -2427, -4251, -2098, -5616], - [0, -12743, -3272, -7644, -1599, -10918, -1838, -1958, -2093, -6233, -6231, -4132, -10919, -2427], - [1, 3, 7828], - [0, 7829, 0, 7830, 11], - [0, -3190, -12761, -2093, -12762], - [0, -8425, -687, -1599, -10918, -2093, -2427], - [1, 3, 7832], - [0, 7833, 7834, 7835, 10], - [0, -4251, -10922, -10923, -2098, -5616, -2427], - [0, -3037, -652, -12744, -1942, -2093, -2094, -2100, -2267, -7699, -2399, -2410, -2541], - [0, -10604, -12763, -4329, -1105, -1599, -10918, -3862, -2093, -12764, -5552, -4002, -4109, -2427], - [1, 3, 7837], - [0, 7838, 7839, 7840, 4], - [0, -4251, -1287, -1619, -1290, -2427], - [ - 0, -5334, -3037, -652, -10915, -2586, -1942, -2094, -4242, -2095, -4655, -2098, -2100, -12765, -4656, -2399, - -2410, -5358, -2541 - ], - [0, -7644, -3264, -1599, -10918, -3862, -2093, -12764, -6231, -2427], - [1, 3, 7842], - [0, 7843, 7844, 7845, 9], - [0, -5358, -2427, -4251, -12766, -5356, -12767], - [0, -652, -932, -2093, -1942, -1874, -2094, -2410, -5334, -2101, -2090, -12750, -12749, -11167], - [0, -856, -5670, -12768, -3862, -2093, -12764, -2427], - [1, 3, 7847], - [0, 7848, 0, 7849, 5], - [0, -4251, -1618, -10869, -2427], - [0, -12743, -3272, -1599, -10918, -1838, -3862, -2093, -12764, -4132, -10919, -2427], - [1, 3, 7851], - [0, 7852, 7853, 7854, 9], - [ - 0, -12769, -12770, -2095, -12771, -12772, -9514, -9515, -9516, -9517, -9518, -12773, -9519, -12774, -9520, - -12775, -12776, -12777, -12778, -9524, -12779, -9527, -12780, -12781, -12782, -12783, -12784, -12785, -9528, - -12786, -12787, -12788, -12789, -12790, -12791, -12792, -12793, -9532, -9533, -9534, -12794, -9535, -9536, - -4995, -12795, -4656, -12796, -12797, -2427 - ], - [0, -86, -3307, -932, -946, -1053, -1344, -1534, -1942, -2094, -2541], - [0, -1105, -6913, -2093], - [1, 3, 7856], - [0, 7857, 7858, 7859, 4], - [ - 0, -12769, -2095, -4655, -9514, -9515, -9516, -9517, -12798, -9518, -12799, -12773, -9519, -12774, -9520, - -12775, -12776, -12777, -9522, -12778, -12800, -12801, -12802, -12803, -12804, -12805, -12806, -12807, -12808, - -12809, -12779, -12810, -9527, -12811, -12780, -12812, -12781, -12782, -12783, -12784, -12785, -9528, -12786, - -12813, -12814, -12815, -12788, -12789, -12816, -12817, -12790, -12791, -12792, -12818, -12819, -12793, -9532, - -9533, -9534, -12794, -9535, -9536, -4995, -12795, -5616, -4656, -9537, -12796, -12820, -2267, -2427 - ], - [0, -1942, -2094, -2399, -2410, -2541], - [0, -6913, -2093, -12821], - [1, 3, 7861], - [0, 7862, 7863, 7864, 8], - [0, -5334, -4251, -1619, -2427, -5358], - [0, -3037, -652, -1942, -2089, -2090, -2094, -2098, -2100, -5616, -2399, -2410, -2541], - [0, -9589, -3264, -1599, -10918, -3862, -12745, -2083, -12764, -2093, -2427], - [1, 3, 7866], - [0, 7867, 7868, 7869, 6], - [0, -503, -12822], - [0, -5514, -589, -8630, -932, -953, -985, -1202, -1304, -1610, -1654, -1788, -2127, -2133, -2137, -2140, -2184], - [0, -8630, -1599, -3437, -1838, -3215, -1958, -2102, -7650, -4065, -5554], - [1, 3, 7871], - [0, 0, 125, 7872, 5], - [0, -1168, -8109, -7693, -3866], - [1, 3, 7874], - [0, 7875, 7876, 7877, 4], - [0, -668, -1107, -2550], - [0, -190, -652, -664, -665, -932, -1654], - [0, -8276, -5554, -7002, -6656], - [1, 3, 7879], - [0, 7880, 7881, 7882, 10], - [ - 0, -1983, -11197, -2446, -1015, -12823, -6397, -12824, -1069, -1641, -12825, -2155, -2364, -12826, -12827, - -12828, -12829, -12830, -8956, -1856, -1459 - ], - [ - 0, -1788, -2322, -1471, -12831, -2125, -708, -615, -2250, -756, -12832, -8375, -633, -641, -9573, -1476, -2188, - -1472, -1860, -8958, -1484 - ], - [0, -1334, -5493, -2444, -3590], - [1, 3, 7884], - [0, 7885, 7886, 7887, 4], - [0, -615, -2364, -12833, -12834], - [0, -664, -1168, -668, -1548, -2125, -2105, -1231, -617, -1197, -2150, -1220, -11117, -1973], - [0, -2533, -1334, -1342, -1961, -2105, -11301, -12835, -615], - [1, 3, 7889], - [0, 7890, 7891, 7892, 9], - [0, -12834, -12833, -2364], - [0, -617, -664, -668, -1168, -11117, -1197, -1220, -1231, -1548, -1973, -2105, -2125, -2150], - [0, -2533, -1334, -1342, -1961, -2105, -11301, -12835, -5269], - [1, 3, 7894], - [0, 0, 7895, 7, 10], - [0, -2379, -2410, -710], - [1, 3, 7897], - [0, 0, 7898, 7899, 4], - [0, -5856], - [0, -4792, -9409, -12836], - [1, 3, 7901], - [0, 0, 7902, 7903, 5], - [ - 0, -349, -409, -3044, -3040, -3052, -3714, -427, -12837, -428, -12838, -932, -969, -12839, -1449, -1548, -1565, - -1624, -12840, -12718, -1942, -2006, -2019, -2040, -2125, -2195, -2391, -2410, -2469 - ], - [0, -2006, -2074], - [1, 3, 7905], - [0, 0, 7906, 7907, 4], - [ - 0, -528, -757, -932, -1412, -1413, -1471, -1475, -1479, -1481, -3569, -1486, -1488, -1490, -1491, -1962, -2127, - -2141, -2410 - ], - [0, -12841, -10095, -12523, -2444, -3323, -4865, -3582, -6989], - [1, 3, 7909], - [0, 7910, 7911, 7912, 10], - [0, -12842, -7437, -12843], - [0, -6455, -2319, -2359, -2322, -887, -932, -1650, -2125, -2177, -12844, -1777, -1365, -1795, -8569, -2156, -5834], - [0, -2114, -4792, -3966, -3551], - [1, 3, 7914], - [0, 0, 14, 7915, 5], - [0, -4792, -2114, -1847, -3551, -8388, -6546, -6024], - [1, 3, 7917], - [0, 7918, 0, 7919, 10], - [0, -12845, -742, -1543, -1889, -2231], - [0, -2501, -5932, -775, -6811, -6043, -2114, -2435, -2162, -9358, -6656], - [1, 3, 7921], - [0, 7922, 7923, 7924, 5], - [0, -12846, -3780, -1077, -1276, -1442, -12847, -2446], - [ - 0, -21, -23, -5870, -26, -33, -36, -5584, -39, -40, -44, -86, -3531, -3470, -3471, -519, -523, -528, -539, -541, - -617, -664, -12848, -756, -12310, -834, -4088, -932, -12849, -12850, -958, -963, -964, -12851, -966, -968, -971, - -12852, -972, -973, -978, -1004, -12853, -1344, -1444, -1457, -1547, -1654, -1656, -12854, -1788, -2174, -12855, - -2293, -12856 - ], - [0, -3960, -489, -3262, -856, -12857, -3636, -12858, -3691, -3690, -1334], - [1, 3, 7926], - [0, 7927, 7928, 7929, 4], - [ - 0, -1983, -788, -12859, -1640, -1801, -1867, -2178, -12860, -2446, -1548, -2177, -2454, -11983, -1582, -1070, - -5397, -508, -8541, -12830, -12861, -6456, -12862 - ], - [ - 0, -1788, -1816, -664, -1107, -1654, -2210, -932, -1650, -2125, -1376, -1754, -1942, -756, -2451, -12863, -8549, - -1939, -1972, -856, -12864, -12865, -960, -940, -967 - ], - [0, -3817, -3161, -1004, -12866], - [1, 3, 7931], - [0, 7932, 83, 7, 4], - [0, -1983, -2536, -2548, -1351], - [1, 3, 7934], - [0, 7935, 251, 7936, 8], - [0, -9050, -2202], - [ - 0, -1000, -12867, -1958, -11998, -12868, -12869, -12870, -12871, -12872, -10018, -687, -5564, -5514, -6713, - -4110, -3974, -4000, -3975, -5550, -3958 - ], - [1, 3, 7938], - [0, 7939, 0, 7940, 8], - [0, -615], - [0, -7685, -12873, -12874, -12875], - [1, 3, 7942], - [0, 0, 7943, 7, 5], - [0, -8959, -1405, -2322], - [1, 3, 7945], - [0, 7946, 7947, 7948, 5], - [0, -932, -3414], - [0, -3037, -1003, -1654, -1788, -2379, -2410], - [0, -6137, -6138, -4215, -5396, -3551, -5119, -4004, -12876, -4676, -8959, -4792], - [1, 3, 7950], - [0, 0, 7951, 7952, 4], - [0, -3415, -708, -12877, -12878, -11961, -12879, -1552, -12880, -12881, -1993, -2250, -2319, -2384], - [ - 0, -7208, -7369, -3589, -702, -6351, -6545, -7371, -7372, -7373, -7374, -7375, -12882, -12883, -12877, -12884, - -5922, -6187, -12885, -12886, -12887, -12888, -12889, -12878, -12890 - ], - [1, 3, 7954], - [0, 7955, 7956, 7957, 4], - [0, -1107, -12891], - [0, -3037, -1650, -1942, -2319, -2386, -2402], - [0, -6695, -12892, -12893, -6694, -7421, -687, -7418, -7371], - [1, 3, 7959], - [0, 7960, 7961, 7962, 4], - [0, -1696, -3846, -6521], - [0, -1412, -12894, -12895, -12896], - [ - 0, -12897, -11189, -12898, -10394, -9711, -6527, -12899, -11321, -2126, -5566, -12900, -12901, -12902, -12903, - -712 - ], - [1, 3, 7964], - [0, 202, 7965, 7966, 4], - [ - 0, -6779, -11174, -6780, -6778, -6777, -6776, -190, -4106, -3115, -12904, -5053, -4066, -6429, -350, -4062, - -351, -3561, -3266, -3267, -4785, -12905, -3621, -3037, -8523, -3199, -9146, -12906, -461, -12907, -6426, -639, - -644, -679, -726, -753, -767, -12908, -923, -927, -932, -940, -967, -978, -980, -1054, -12909, -1077, -4706, - -1110, -1344, -4788, -1534, -4789, -1588, -1623, -1654, -1753, -12910, -1788, -4916, -1863, -1864, -2851, -1942, - -1944, -1948, -1951, -2111, -2127, -2134, -2177, -2200, -2202, -2231, -2234, -2314, -2334, -2387, -2410, -2411, - -2466, -2468, -2476, -2478, -5627, -12911, -2551 - ], - [0, -3209, -7882, -12912, -3184, -7176], - [1, 3, 7968], - [0, 7969, 7970, 7971, 4], - [0, -3341, -2145], - [ - 0, -23, -3840, -33, -38, -40, -639, -932, -940, -967, -1344, -1534, -1654, -1942, -2127, -2129, -2133, -2231, - -2234 - ], - [0, -12913, -525, -4795, -3184], - [1, 3, 7973], - [0, 7974, 7975, 7, 11], - [0, -639, -2145], - [0, -932, -1654, -2127], - [1, 3, 7977], - [0, 7978, 7979, 7980, 5], - [0, -12914, -2145], - [0, -6429, -932, -1001, -1654, -1788, -2125, -2127, -12915, -12916], - [0, -2127, -12913, -3214, -3184, -3209, -3485, -12917, -7416], - [1, 3, 7982], - [0, 7983, 7984, 7, 4], - [0, -989, -4788, -1588, -2114, -2145], - [ - 0, -23, -40, -43, -461, -932, -958, -1344, -1534, -4789, -1654, -1942, -4790, -2127, -2128, -2133, -2137, -2200, - -2231, -2234, -2410 - ], - [1, 3, 7986], - [0, 7987, 7988, 7989, 4], - [0, -1588], - [0, -22, -8355, -12918, -426, -3037, -3040, -652, -2127, -2410], - [0, -12913, -2410, -4160, -12919], - [1, 3, 7991], - [0, 7992, 7993, 7, 11], - [0, -2145], - [0, -932, -958, -1344, -1534, -1654, -1942, -2127, -2129, -2137, -2234], - [1, 3, 7995], - [0, 7996, 7997, 7998, 5], - [0, -12920, -4787, -1548, -1588, -1666, -12921, -12922, -12923], - [ - 0, -23, -40, -43, -3326, -350, -351, -3989, -427, -428, -479, -535, -932, -934, -958, -1022, -1077, -11780, - -1168, -12924, -1222, -1412, -1413, -1942, -2125, -2127, -12925, -12926, -2359, -2410 - ], - [0, -2127, -12913], - [1, 3, 8000], - [0, 8001, 8002, 252, 6], - [0, -12927, -12928, -771, -12929], - [0, -9889, -812, -1654, -2127, -2128, -2136, -2184], - [1, 3, 8004], - [0, 8005, 8006, 252, 6], - [0, -461, -12928, -989, -1588, -12929, -2145], - [0, -527, -558, -633, -1415, -1650, -1654, -2125, -2127, -2128, -2137], - [1, 3, 8008], - [0, 8009, 8010, 253, 5], - [0, -3200, -644, -4793, -2114, -2145], - [0, -23, -40, -43, -922, -932, -1654, -2127, -2128, -2131, -2133, -4794, -2410], - [1, 3, 8012], - [0, 8013, 8014, 253, 9], - [0, -1588, -2145], - [0, -932, -958, -1344, -1534, -4789, -1654, -1942, -2127, -2129, -2200, -2231, -2410], - [1, 3, 8016], - [0, 8017, 8018, 8019, 10], - [0, -4785, -7149], - [0, -3267, -3037, -427, -428, -932, -940, -967, -1415, -1942, -2125, -2127, -2375, -2410], - [0, -2127, -12913, -6915, -2231, -12930], - [1, 3, 8021], - [0, 8022, 8023, 8024, 6], - [0, -22, -1429, -2182, -2334], - [0, -23, -1415, -1942, -2127], - [0, -2127, -12913, -2334, -1644], - [1, 3, 8026], - [0, 8027, 8028, 8029, 5], - [0, -2114, -2145], - [0, -639, -932, -1654, -2125, -2127, -2129, -2131, -2387, -2410], - [0, -12913, -2410, -4795], - [1, 3, 8031], - [0, 8032, 8033, 8034, 4], - [0, -4785, -1046, -1077, -2177, -2387], - [ - 0, -5121, -350, -351, -12931, -3048, -12932, -3136, -3044, -3037, -4067, -3199, -427, -428, -714, -932, -12933, - -1415, -1548, -1793, -2125, -2127, -12934, -2142, -2375, -2410 - ], - [0, -2142, -2141, -12913, -2410, -4795, -2127, -1764], - [1, 3, 8036], - [0, 8037, 8038, 8039, 6], - [0, -22, -1429, -2182, -2416], - [0, -23, -40, -533, -1415, -1942, -2127], - [0, -2127, -12913, -9216, -1644], - [1, 3, 8041], - [0, 8042, 8043, 8044, 4], - [0, -1805, -1864, -2231, -2550], - [ - 0, -350, -351, -3266, -3267, -3269, -12935, -12936, -12937, -12938, -12939, -12940, -3037, -8523, -3041, -651, - -798, -6258, -7259, -7268, -799, -801, -825, -1771, -8065, -1889, -7033, -1940, -1942, -2923, -2127, -4753, - -2162, -2387, -2410, -2466, -2469 - ], - [0, -12913, -12941, -5150, -12942, -12943, -12944], - [1, 3, 8046], - [0, 8047, 8048, 8049, 5], - [0, -989], - [ - 0, -426, -3136, -4036, -3037, -1344, -1415, -1534, -1639, -1942, -2127, -2131, -2137, -2141, -2200, -2375, - -2388, -2410, -8256 - ], - [0, -2127, -5260], - [1, 3, 8051], - [0, 0, 8052, 7, 5], - [0, -633], - [1, 3, 8054], - [0, 8055, 8056, 254, 10], - [0, -2694, -4007, -649, -658, -1119, -1889, -2234, -2279, -10098, -909, -2193], - [ - 0, -12945, -22, -23, -32, -3194, -26, -35, -6062, -36, -12946, -37, -3368, -3077, -3204, -38, -40, -41, -42, - -44, -46, -47, -12947, -12948, -12949, -12950, -3872, -4020, -237, -269, -12951, -12952, -12953, -12954, -12955, - -5038, -3983, -367, -5052, -12956, -12957, -12958, -8355, -4776, -12959, -10100, -10101, -3269, -12960, -3732, - -12961, -5085, -5033, -7080, -3198, -12962, -12963, -3036, -4035, -3850, -3044, -12964, -5587, -12965, -8523, - -12966, -3040, -3052, -6633, -3199, -12967, -6832, -5673, -12968, -12969, -4204, -8559, -5900, -461, -12970, - -2624, -502, -507, -512, -12971, -8561, -553, -6386, -635, -640, -651, -12972, -2740, -719, -12973, -724, -6842, - -6394, -736, -737, -743, -769, -771, -2745, -7189, -7026, -812, -5034, -6381, -12974, -997, -1047, -1072, -1107, - -1273, -1336, -1337, -6388, -1343, -2773, -12975, -1354, -10697, -1401, -1429, -1460, -1465, -8562, -12976, - -1582, -1643, -1683, -1699, -12977, -9548, -1734, -1816, -6378, -3447, -1827, -1848, -1851, -1864, -6184, -1903, - -7164, -1915, -7165, -2791, -1927, -1929, -1930, -1934, -1958, -1977, -6387, -1999, -2041, -2082, -2163, -2177, - -2178, -12978, -8578, -2194, -2231, -2233, -11463, -6390, -6375, -4195, -12979, -6383, -2269, -3921, -2323, - -12980, -2334, -2335, -2343, -6391, -6384, -2594, -12981, -2444, -6380, -12982, -10052, -2501, -2531, -2564 - ], - [1, 3, 8058], - [0, 0, 8059, 8060, 9], - [ - 0, -6068, -548, -6070, -6071, -8122, -6072, -6081, -6082, -6083, -550, -558, -8121, -7993, -7938, -628, -629, - -8116, -7945, -8119, -8118, -902, -8003, -8004, -12983, -8117, -1654, -1963 - ], - [0, -8123, -5923], - [1, 3, 8062], - [0, 8063, 8064, 8065, 5], - [0, -10415, -1863, -1889, -2271], - [0, -652, -1654, -2250], - [0, -12984, -775, -12985, -2149, -3161, -5553, -10733, -10732, -5845, -6408], - [1, 3, 8067], - [0, 8068, 8069, 8070, 8], - [0, -668, -1022, -1876], - [0, -1168, -1654, -2198], - [0, -7419, -11441, -5562, -1168, -1817], - [1, 3, 8072], - [0, 0, 8073, 8074, 5], - [0, -468, -2322], - [0, -9291, -510, -5924, -5865, -6235, -11727, -5839, -12986], - [1, 3, 8076], - [0, 0, 0, 8077, 4], - [0, -12987, -12988, -12989, -8408, -12990, -12991], - [1, 3, 8079], - [0, 33, 8080, 8081, 9], - [ - 0, -12992, -3, -367, -4007, -3035, -3044, -3621, -3037, -3714, -4372, -3625, -12993, -427, -428, -556, -664, - -12994, -712, -714, -767, -796, -7653, -930, -932, -10031, -1069, -1077, -1107, -6783, -1344, -5726, -1534, - -1548, -1646, -1654, -1753, -1771, -4099, -6184, -1942, -1961, -2127, -12995, -12996, -2137, -2195, -2200, - -2210, -2211, -2234, -2314, -2379, -2388, -2389, -12997, -12998, -12999, -2410, -2449, -13000, -2501 - ], - [0, -12990, -12991, -13001, -13002, -13003, -13004, -6980, -13005, -6948, -6950], - [1, 3, 8083], - [0, 0, 31, 8084, 9], - [0, -640, -13006, -13007, -9594, -2155, -7107, -13008], - [1, 3, 8086], - [0, 8087, 8088, 8089, 4], - [0, -1365, -2177, -2550], - [0, -5834, -515, -516, -887, -932, -13009, -1788, -2322], - [0, -8403, -10483, -1764, -13010, -6818, -9594, -13011], - [1, 3, 8091], - [0, 8092, 8093, 8094, 4], - [ - 0, -13012, -13013, -510, -13014, -668, -719, -13015, -724, -729, -743, -744, -746, -13016, -888, -1004, -1010, - -13017, -1107, -13018, -13019, -12902, -13020, -13021, -13022, -13023, -13024, -1646, -13025, -1840, -1851, - -1878, -1965, -13026, -13027, -13028, -2177, -2185, -2187, -13029, -13030, -2418, -2453, -13031 - ], - [ - 0, -589, -733, -932, -1003, -1077, -13032, -1654, -1783, -1888, -13033, -13034, -13035, -13036, -13037, -13038, - -2198, -2229, -2293, -2359 - ], - [0, -13039, -13040, -1004, -13041, -13042, -3817, -3816, -1818, -2228], - [1, 3, 8096], - [0, 8097, 8098, 8099, 5], - [0, -13043], - [0, -2322, -468, -13044, -633, -725], - [0, -6656, -6557, -13045, -7723, -5874, -5559], - [1, 3, 8101], - [0, 8102, 8103, 8104, 8], - [0, -823, -930, -1333, -1396, -13046, -1889], - [0, -932, -1654, -2210, -13047], - [0, -3264, -3215, -7722, -7723], - [1, 3, 8106], - [0, 8107, 0, 8108, 5], - [0, -679, -1361, -2232], - [0, -5553, -3754, -2162, -3277, -775], - [1, 3, 8110], - [0, 8111, 8112, 8113, 5], - [0, -9548], - [ - 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -621, -767, -774, -778, -824, -825, -909, -932, -940, -6929, - -958, -959, -960, -965, -967, -978, -1041, -2629, -1110, -1344, -1415, -1534, -13048, -1623, -1743, -13049, - -1771, -1942, -2162, -3572, -2177, -2251, -2275, -2410, -2411, -2501, -2503, -2505 - ], - [0, -2162, -9264, -2501, -5932], - [0, 44, 15, 16, 9], - [1, 3, 8116], - [0, 0, 8117, 7, 8], - [0, -1942, -2319], - [1, 3, 8119], - [0, 8120, 8121, 8122, 9], - [0, -13050], - [0, -13051, -652, -13052, -932, -1446], - [0, -4058, -856], - [1, 3, 8124], - [0, 8125, 8126, 48, 4], - [0, -469, -470, -5329, -4049], - [ - 0, -824, -1415, -1344, -932, -825, -1110, -2501, -1942, -21, -190, -533, -2410, -23, -3037, -1534, -1771, -86, - -965, -3560, -2251, -40, -959, -960, -958, -6929, -978, -940, -967, -3748, -3307 - ], - [1, 3, 8128], - [0, 8129, 8130, 8131, 5], - [0, -2006, -2019, -2634], - [0, -2410, -3037, -3040, -3052, -518, -1889, -2318, -932, -10813], - [ - 0, -13053, -13054, -1072, -5375, -770, -13055, -5375, -3634, -8576, -13056, -3551, -13057, -13058, -5376, - -13059, -11152, -5150 - ], - [1, 3, 8133], - [0, 8134, 0, 8135, 5], - [0, -899, -1723, -6127], - [0, -13060, -13061, -13062, -2171], - [1, 3, 8137], - [0, 0, 0, 8138, 4], - [0, -13063, -6555, -770], - [1, 3, 8140], - [0, 8141, 8142, 8143, 8], - [0, -13064, -1468, -2359, -2531], - [ - 0, -190, -5980, -932, -940, -964, -965, -7353, -967, -1004, -1110, -1281, -1446, -1654, -1656, -1685, -1942, - -2186, -2210, -2297 - ], - [0, -4864, -11467, -3634, -11468, -12350], - [1, 3, 8145], - [0, 8146, 8147, 8148, 5], - [ - 0, -7040, -13065, -3472, -7041, -7042, -13066, -755, -812, -13067, -999, -1040, -13068, -1100, -13069, -9464, - -1315, -13070, -1549, -1610, -6294, -1639, -13071, -10507, -3609, -2115, -2177, -3642, -2550 - ], - [ - 0, -3037, -3639, -519, -652, -686, -796, -851, -13072, -1077, -1116, -1442, -1547, -8314, -13073, -1722, -1772, - -13074, -1942, -2910, -2210, -13075, -2331, -2341 - ], - [0, -13076, -4864, -5887, -3551, -5897, -8403, -9244, -2177, -9318], - [1, 3, 8150], - [0, 8151, 8152, 7, 4], - [0, -44, -13077, -13078, -2997, -13079, -703, -13080, -1548, -1549, -1967, -2029, -2804, -2192], - [ - 0, -13081, -21, -23, -26, -34, -35, -37, -38, -40, -41, -43, -13082, -4227, -13083, -13084, -4773, -3040, -427, - -428, -3807, -13085, -528, -534, -13086, -539, -540, -13087, -553, -12468, -13088, -664, -13089, -747, -767, - -795, -812, -838, -855, -8245, -915, -932, -933, -940, -3071, -958, -962, -964, -969, -970, -1021, -1103, -1168, - -1228, -1266, -1344, -6273, -1471, -1475, -12832, -1476, -1482, -1483, -1492, -1526, -1534, -1654, -1942, -1955, - -1978, -2000, -2006, -13090, -13091, -2018, -2019, -2024, -2027, -2043, -2044, -13092, -13093, -13094, -2052, - -13095, -2125, -13096, -13097, -7708, -2210, -2211, -2214, -2253, -13098, -2335, -13099, -2347, -2410, -2460, - -2501, -2502, -2503, -2504 - ], - [1, 3, 8154], - [0, 8155, 8156, 8157, 4], - [0, -932, -942, -943, -13100, -958, -965, -968, -969, -13101], - [0, -3781, -1631, -1650, -2125, -2151, -2322], - [ - 0, -8180, -13102, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8175, -1445, -1452, -7148, - -8184, -8169, -13103, -5493, -2250, -8185, -5553, -8186, -8187, -8174 - ], - [1, 3, 8159], - [0, 0, 8160, 7, 5], - [0, -4298, -4300, -589, -2319], - [1, 3, 8162], - [0, 8163, 191, 8164, 4], - [0, -812, -907, -929, -990, -1072, -1335, -1641, -1681, -1800, -1997, -2255], - [0, -5142, -6656, -3844], - [1, 3, 8166], - [0, 8167, 8168, 8169, 5], - [ - 0, -13104, -3895, -13105, -13106, -13107, -13108, -13109, -13110, -1555, -1572, -1646, -9375, -13111, -13112, - -13113, -1983, -13114, -13115, -13116 - ], - [ - 0, -3890, -3893, -13117, -3037, -510, -13118, -756, -13119, -1276, -13120, -8936, -1942, -13121, -13122, -13123, - -13124, -13125, -2410 - ], - [ - 0, -11151, -5196, -11148, -13126, -6209, -13127, -11150, -6210, -13128, -3161, -13129, -13130, -13131, -3481, - -10809 - ], - [1, 3, 8171], - [0, 0, 8172, 8173, 11], - [0, -13132, -510, -589, -932, -1660, -2319], - [0, -2180, -10432, -13133, -11385], - [1, 3, 8175], - [0, 8176, 8177, 8178, 5], - [ - 0, -13134, -2446, -812, -13135, -1548, -1666, -2177, -2451, -1369, -3198, -13136, -13137, -1667, -6109, -13138, - -10416 - ], - [ - 0, -1857, -1788, -664, -461, -826, -2763, -1344, -1654, -1826, -2210, -932, -13139, -1692, -2125, -674, -928, - -13140, -13141, -2245, -10417, -10418, -13142, -749, -767, -1026, -13143, -1828, -13144, -12846, -1078, -2211, - -2410, -3035, -3037, -1002, -1534, -3621, -4372, -11747, -305, -3044, -13145, -13146, -13147, -86, -665, -13148, - -1609, -2174, -7382, -2234, -960, -964, -13149, -428, -13150, -9404, -427, -13151, -13152 - ], - [ - 0, -1691, -13140, -3742, -6321, -10425, -1857, -1682, -13153, -13139, -10424, -10418, -10704, -13154, -1818, - -3967, -13155, -7685, -7773 - ], - [1, 3, 8180], - [0, 0, 8181, 8182, 4], - [0, -589], - [0, -6233, -12343, -3214, -3756, -4055], - [1, 3, 8184], - [0, 8185, 37, 8186, 6], - [0, -812, -13156, -13157, -13158, -13159, -13160, -13161, -13162, -13163, -13164, -13165, -13166, -13167, -13168], - [ - 0, -13169, -13170, -13171, -13172, -13173, -11573, -1434, -13174, -13175, -13176, -10225, -13177, -13178, - -10227, -2183, -13179, -13180, -5827, -3975, -13181 - ], - [1, 3, 8188], - [0, 8189, 8190, 8191, 4], - [0, -469, -502, -623, -668, -700, -724, -13182, -13183, -5977, -6793, -13184], - [0, -1116, -2392, -2391, -1344, -932, -2469, -1942, -2410, -1534, -50, -3732, -13185, -3664, -13186], - [0, -2455, -2184, -11151, -1339], - [1, 3, 8193], - [0, 8194, 8195, 8196, 6], - [0, -990, -1072, -1681, -1840, -2155], - [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293, -13187], - [0, -1004, -13188, -5401], - [1, 3, 8198], - [0, 8199, 8200, 7, 11], - [0, -459, -7334, -812, -929, -1335, -1641, -1840], - [0, -465, -932, -963, -1654, -1788, -2293], - [1, 3, 8202], - [0, 8203, 81, 7, 5], - [0, -907, -929, -1840, -2178], - [1, 3, 8205], - [0, 8206, 8207, 8208, 4], - [0, -13189, -1640, -1645], - [ - 0, -86, -3307, -13190, -13191, -521, -664, -665, -720, -932, -940, -1077, -1344, -1534, -1573, -5969, -1654, - -1729, -1788, -1942, -1972, -13192, -2210, -2211, -2323 - ], - [0, -13192, -13193, -5819, -5817, -13194, -5937, -13195, -5940, -3258, -3100, -13196], - [1, 3, 8210], - [0, 8211, 8212, 8213, 5], - [ - 0, -13197, -13198, -13199, -13200, -3698, -13201, -13202, -13203, -11209, -13204, -5810, -13205, -13206, -13207, - -11197, -620, -4735, -13208, -5813, -13209, -1805, -7223, -2531 - ], - [ - 0, -13210, -4171, -13211, -3136, -3037, -3738, -4204, -427, -428, -13206, -5813, -928, -13212, -932, -940, - -8246, -948, -958, -967, -1344, -1415, -13213, -13214, -13215, -13216, -1456, -1766, -1942, -5815, -2251, -2375, - -2379, -2892, -2410, -2446 - ], - [0, -3112, -5817, -3634, -1415, -13192, -4216, -2469, -5819, -5941, -5943, -5951, -13217], - [1, 3, 8215], - [0, 8216, 0, 7, 4], - [0, -10906, -6130], - [1, 3, 8218], - [0, 0, 8219, 8220, 11], - [0, -528, -558, -566, -664, -932, -1059, -13218, -1344, -1534, -1654, -1942], - [0, -2192, -8495, -6439, -10661, -7378, -13219], - [1, 3, 8222], - [0, 8223, 8224, 8225, 4], - [0, -2177, -13220, -8612], - [ - 0, -8771, -2384, -13221, -2324, -1733, -13222, -1018, -13223, -2581, -1723, -13224, -1448, -13225, -13226, - -13227, -13228, -13229 - ], - [ - 0, -9235, -7715, -5315, -5316, -9807, -8642, -3839, -8707, -13230, -6527, -10095, -13231, -7066, -10711, -13232, - -13233 - ], - [1, 3, 8227], - [0, 0, 8228, 8229, 5], - [0, -5834, -516, -5835, -932, -993, -1365, -1408, -1777, -1788, -2156, -2322], - [0, -3957, -1838, -13234, -5550], - [1, 3, 8231], - [0, 8232, 8233, 8234, 4], - [0, -999, -1026], - [0, -519, -668, -710, -932, -934, -958, -1442, -1788, -13235, -13236, -2200, -13237], - [0, -2195, -6836, -11642, -5550, -13238, -9218, -1410, -12397], - [1, 3, 8236], - [0, 8237, 8238, 8239, 8], - [0, -1699], - [ - 0, -664, -1127, -1654, -913, -1132, -10682, -2351, -1158, -13239, -9256, -1130, -1156, -1542, -1136, -1144, - -1148, -5295 - ], - [0, -13240, -13241, -7231, -2446, -13242, -13243, -3005, -2197, -13244], - [1, 3, 8241], - [0, 8242, 8243, 8244, 4], - [0, -13245, -13246, -13247, -13248, -13249], - [0, -615, -932, -13250, -1654, -1942, -2127, -2137, -2388, -2410], - [0, -4004, -3440, -507, -2198], - [1, 3, 8246], - [0, 75, 8247, 8248, 4], - [ - 0, -1127, -1134, -1136, -1144, -1148, -1150, -1151, -13251, -1152, -1163, -1449, -1542, -1856, -13252, -2177, - -13253, -2234 - ], - [0, -1599, -6473], - [1, 3, 8250], - [0, 8251, 8252, 8253, 8], - [0, -1646, -2195], - [0, -526, -558, -566, -932, -934, -8246, -958, -1442, -1654, -1788, -2125, -13235, -13254, -13236, -2198], - [0, -2195, -5550, -11642, -6836, -6837, -8421, -687, -3977], - [1, 3, 8255], - [0, 0, 8256, 8257, 9], - [0, -7080, -3037, -9867, -5866, -652, -1942, -2319, -2379, -2402, -2410], - [0, -5395, -1000], - [1, 3, 8259], - [0, 8260, 8261, 8262, 5], - [0, -474], - [0, -1273, -1948, -2127, -2129, -2416], - [0, -5176, -13255, -10724, -659], - [1, 3, 8264], - [0, 8265, 8266, 8267, 8], - [0, -13256, -13257, -812], - [0, -13258, -13259, -3198, -3136, -3037, -928, -11714, -1415, -2379, -2410], - [0, -5889, -13260, -12263], - [1, 3, 8269], - [0, 0, 8270, 8271, 5], - [ - 0, -2384, -1415, -1344, -1868, -932, -2125, -2127, -1942, -767, -533, -23, -3136, -726, -13261, -1952, -44, -50, - -40, -953, -13262, -32, -3326, -2140, -3561, -13263, -350, -351, -8280, -13264, -536, -37 - ], - [0, -5070, -6814, -11889, -9668, -3161, -2006, -475, -2476, -3122, -6209, -3100], - [1, 3, 8273], - [0, 8274, 8275, 8276, 4], - [0, -4884, -357, -13265, -834, -2297], - [ - 0, -23, -4885, -4886, -4887, -4888, -13266, -11471, -13267, -539, -812, -829, -928, -13268, -10877, -1099, - -1534, -1654, -1788, -1942, -1978, -2125, -2177, -2195 - ], - [0, -2210, -4004, -3634, -5119, -8611, -4216, -8959, -4123, -13269, -4215, -2533, -507], - [1, 3, 8278], - [0, 0, 8279, 8280, 9], - [0, -190, -652, -664, -932, -1654, -1942, -2210], - [0, -664, -6537, -4865, -13270, -13271, -2210, -3634, -7244, -7245, -7243], - [1, 3, 8282], - [0, 8283, 8284, 8285, 5], - [ - 0, -4166, -3544, -510, -648, -13272, -13273, -1650, -2177, -6920, -1004, -1442, -2105, -927, -719, -1645, -1464, - -1276, -617, -724, -1335, -1304, -13274, -13275, -2062, -13276 - ], - [0, -1654, -615, -633, -13277], - [0, -6011, -5897, -7737, -11722, -3209, -1971, -3844], - [1, 3, 8287], - [0, 8288, 0, 7, 6], - [0, -13278, -5036, -13279], - [1, 3, 8290], - [0, 8291, 0, 8292, 11], - [0, -13280, -1532, -13281, -1863, -2654], - [0, -2214, -687, -985, -6187, -13282, -13283], - [1, 3, 8294], - [0, 89, 56, 8295, 5], - [0, -13284, -13285, -13286, -3445, -3100, -7566], - [1, 3, 8297], - [0, 8298, 8299, 8300, 10], - [0, -13287, -13288], - [0, -2501, -2376, -2410, -2503, -13289, -2502], - [0, -3445, -13290, -3690, -13192, -7685], - [1, 3, 8302], - [0, 0, 14, 8303, 5], - [0, -1847, -13291, -2218, -11635, -7084, -5845], - [1, 3, 8305], - [0, 8306, 8307, 8308, 4], - [0, -482, -13292], - [0, -519, -668, -13293, -2269, -2541], - [ - 0, -4783, -2265, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -3975, -5559, -5538, -5549, -5513, -5550, - -2547, -1573, -5545, -3958, -5554 - ], - [1, 3, 8310], - [0, 8311, 86, 8312, 4], - [0, -9371, -677, -5500, -13294, -13295, -10347, -13296, -1705, -1856, -13297, -1951, -1959, -13298, -2330, -2550], - [0, -13299, -3015, -9460, -1764, -1380], - [1, 3, 8314], - [0, 0, 8315, 8316, 5], - [0, -11254, -3470, -3471, -3311, -652, -1654, -2174, -2250], - [0, -2223, -2222, -2265, -2443, -9312, -4112, -2435], - [1, 3, 8318], - [0, 0, 8319, 8320, 4], - [0, -756, -13300, -1654, -1788], - [0, -2223, -2222, -2435, -13301], - [0, 44, 15, 16, 11], - [1, 3, 8323], - [0, 8324, 0, 8325, 4], - [0, -668, -1370, -1646, -2062, -13302, -2269, -2343], - [0, -3240, -13303, -13304, -2250, -13305, -10317, -13306, -13307, -13308, -13309], - [1, 3, 8327], - [0, 8328, 8329, 8330, 5], - [0, -523, -13310, -812, -1063, -1070, -1100, -1548, -2165, -2270, -6587, -13311], - [ - 0, -190, -3198, -3734, -3044, -3037, -13312, -6594, -617, -714, -834, -855, -883, -932, -1004, -1045, -1107, - -1654, -1788, -1942, -2062, -2177, -2187, -2198, -2210, -2234, -10402, -2402, -2410, -2411 - ], - [0, -2227], - [1, 3, 8332], - [0, 8333, 0, 8334, 4], - [0, -459, -13313, -754, -812, -5454, -13314, -4208], - [0, -8841, -3161, -2512, -9043, -997, -9005, -13315], - [1, 3, 8336], - [0, 8337, 0, 8338, 4], - [0, -13316, -812, -5455, -4208], - [0, -8841, -3161, -2512, -9043, -997, -3323], - [1, 3, 8340], - [0, 8341, 8342, 8343, 4], - [0, -812, -13317, -10622, -1370, -2438], - [ - 0, -633, -913, -932, -1003, -1168, -1208, -1243, -1244, -1252, -1262, -1471, -1472, -1473, -1475, -1482, -1654, - -1972, -1976, -2187, -13318, -2461, -2463 - ], - [0, -6224, -2512], - [1, 3, 8345], - [0, 0, 8346, 7, 8], - [0, -652, -855, -932, -1942, -940], - [1, 3, 8348], - [0, 0, 8349, 7, 6], - [0, -13239, -855, -2501], - [1, 3, 8351], - [0, 8352, 8353, 48, 6], - [0, -1351, -2232], - [ - 0, -21, -23, -40, -86, -3307, -7166, -533, -767, -774, -824, -825, -932, -940, -958, -1344, -1415, -1534, -1623, - -1771, -1942, -2251, -2501 - ], - [1, 3, 8355], - [0, 8356, 8357, 7, 4], - [0, -6829, -2231], - [0, -633, -711, -1339, -1654, -2501], - [1, 3, 8359], - [0, 0, 92, 8360, 5], - [0, -5092, -3264, -7451, -13319, -7205, -1838, -6231], - [1, 3, 8362], - [0, 8363, 8364, 8365, 8], - [ - 0, -13320, -13321, -13322, -9193, -13323, -674, -711, -719, -1026, -1119, -1122, -13324, -1127, -1134, -1136, - -1137, -1138, -1140, -1148, -1149, -1160, -1276, -1304, -1333, -1440, -1442, -13325, -1460, -1548, -1610, - -13326, -1889, -2162, -2312, -2359 - ], - [ - 0, -21, -23, -40, -43, -4710, -13327, -664, -665, -3629, -932, -964, -966, -974, -1654, -1753, -1942, -2123, - -2125, -2210, -2211 - ], - [0, -1122, -3671, -856, -13328, -13329, -3690, -4258, -3262], - [1, 3, 8367], - [0, 8368, 8369, 7, 8], - [0, -2346], - [0, -994, -8392, -8393, -8394, -13330], - [1, 3, 8371], - [0, 0, 8372, 7, 5], - [0, -13331, -13332, -11961, -1788, -1939, -2250, -2322], - [0, 0, 83, 7, 5], - [1, 3, 8375], - [0, 0, 8376, 7, 4], - [0, -1168, -1654, -932, -589, -1231, -1197, -1208, -1243, -1262, -13333, -1252], - [1, 3, 8378], - [0, 8379, 8380, 8381, 5], - [ - 0, -615, -712, -714, -783, -1077, -1276, -13334, -3999, -1548, -1757, -7667, -13335, -9395, -2347, -2460, -2462, - -13336, -13337 - ], - [0, -664, -756, -1405, -1654, -1657, -13338, -13339], - [0, -13340, -9278, -13341, -775, -3754, -1521, -2162, -2244, -13342, -7419], - [1, 3, 8383], - [0, 8384, 8385, 8386, 4], - [0, -596, -1723, -6521, -2323], - [0, -932, -1654, -12894], - [0, -10424, -3742, -2245, -7685], - [1, 3, 8388], - [0, 8389, 8390, 8391, 5], - [0, -13343, -13344], - [0, -932, -6461], - [0, -8905, -2246, -9456, -7721, -5550, -8421, -8908, -3323], - [1, 3, 8393], - [0, 8394, 8395, 8396, 10], - [0, -9084], - [0, -4298, -4300, -589], - [0, -5387, -3578, -7107, -13345, -10908, -10930, -13346, -13347, -13348, -13349, -13350, -3264], - [1, 3, 8398], - [0, 8399, 91, 8400, 9], - [0, -2548], - [ - 0, -2248, -4055, -2548, -9886, -10410, -7773, -6129, -13351, -13352, -3689, -7685, -856, -3445, -6857, -1671, - -1050, -1691, -2245, -6597, -13353, -10425, -4055, -6917, -13354 - ], - [1, 3, 8402], - [0, 0, 8403, 7, 11], - [0, -40, -533, -1415, -13355], - [1, 3, 8405], - [0, 8406, 8407, 8408, 6], - [0, -932, -943, -13100, -958, -965, -968, -969, -13101, -13356], - [0, -769, -1274, -1646, -13357, -2151, -5470, -2322], - [ - 0, -8180, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8175, -1445, -1452, -7148, -8184, -8169, - -5493, -2250, -8185, -5553, -8186, -8187, -8174 - ], - [1, 3, 8410], - [0, 8411, 8412, 8413, 5], - [0, -668, -739, -13358, -741, -10524, -831, -8888, -13359, -1040, -1047, -12340, -2177, -13360, -2550], - [0, -664, -932, -943, -958, -966, -968, -1654, -1658, -1663, -1788, -2195, -13361], - [0, -739, -13362, -5887, -5886, -5962, -9318, -475, -2250], - [1, 3, 8415], - [0, 8416, 8417, 8418, 4], - [0, -502, -615, -13363, -812, -999, -13364, -4703, -2648], - [ - 0, -3037, -13365, -664, -767, -829, -13366, -13367, -13368, -1116, -1457, -3809, -1646, -1654, -13369, -10652, - -2174, -13370, -2210, -2211, -8527, -2250 - ], - [0, -6657, -5921, -3844, -11818, -4004, -3590, -4116], - [1, 3, 8420], - [0, 8421, 8422, 8423, 5], - [0, -13371, -10926, -1093, -13372], - [0, -2330, -1754, -2424], - [0, -2254, -13373, -13374, -13375, -8841], - [1, 3, 8425], - [0, 0, 8426, 8427, 5], - [0, -790, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -1999, -9374], - [0, -1334, -9745, -707], - [1, 3, 8429], - [0, 8430, 8431, 8432, 4], - [0, -2531, -1805, -2066, -2177, -928, -6488, -13376, -4890, -13377, -12518, -407, -410], - [ - 0, -888, -2564, -664, -834, -1107, -1431, -2213, -999, -1526, -1623, -3548, -2006, -2218, -8609, -1111, -1699, - -1778, -13378, -928, -13379, -1085, -1442, -3447, -2114, -2358, -13380, -1885, -1942, -4893, -4204, -656, -719, - -2578, -1864, -13381, -2019, -3654, -2400, -12982, -2528, -4370, -3517, -13382, -1863, -2231, -2269, -2410, -23, - -9939, -3037, -769, -832, -13383, -47, -6192, -4894, -4918, -25, -13384, -3199, -13385, -831, -13386, -6467, - -13387, -6447, -3772, -3778, -3660, -3735, -13388, -6744, -13389, -3896, -13390, -12695, -2383, -46, -163, - -6630, -13391, -13392, -13393, -11751, -3194, -13394, -8523, -13395, -2044, -13396, -747, -13397, -7080, -13398, - -4239, -13399, -13400, -13401, -13402, -13403, -13404, -5474, -2271, -13405, -13406, -13407, -13408, -406, - -13409, -13410, -5322, -13411, -3776, -409, -13412, -13413, -4008, -8273, -2641, -13414, -3459, -13415, -13416, - -13417, -5296, -13418, -13419, -13420 - ], - [0, -2257, -3095, -3098, -13421, -13422, -2006, -2634, -9736, -2034, -3138, -2476, -475, -2299, -3176, -4902], - [1, 3, 8434], - [0, 8435, 8436, 8437, 8], - [0, -1338], - [ - 0, -13423, -4762, -4763, -4754, -13424, -13425, -13426, -13427, -4749, -4758, -13428, -407, -409, -3136, -4961, - -3040, -932, -13429, -1415, -4980, -1419, -1942, -1967, -1978, -2006, -2019, -2162, -2163, -2257, -2375, -2410, - -2516, -2548 - ], - [0, -4900, -2257, -13430, -3098, -856, -3100, -13431, -13432, -13433, -13434, -13435, -1783], - [1, 3, 8439], - [0, 8440, 0, 147, 5], - [ - 0, -3, -23, -40, -3538, -3539, -668, -674, -679, -714, -719, -755, -3542, -1022, -13436, -1077, -1107, -1276, - -1320, -1349, -13437, -1460, -1548, -1577, -3543, -3544, -1610, -1646, -3546, -3547, -11926, -9151, -2177, - -2368, -2378, -2446 - ], - [1, 3, 8442], - [0, 68, 15, 16, 11], - [1, 3, 8444], - [0, 212, 8445, 8446, 5], - [0, -13438, -13439, -1654, -2198], - [0, -13440, -5827], - [1, 3, 8448], - [0, 0, 8449, 8450, 4], - [0, -351, -3621, -3037, -789, -885, -1654, -7210, -1942, -2127, -2135, -2136, -2198, -2379, -2392, -2410], - [0, -5827, -6408, -788, -7208, -3445, -3100], - [1, 3, 8452], - [0, 8453, 56, 8454, 5], - [0, -7590, -305, -7565, -1061, -1406, -13441, -5721], - [0, -13442, -13443, -3445], - [1, 3, 8456], - [0, 0, 0, 8457, 9], - [0, -2264, -3276, -2265, -4123, -4121], - [1, 3, 8459], - [0, 0, 8460, 8461, 4], - [0, -1168, -1177, -1231, -1243, -13444, -1262, -11473, -2416], - [ - 0, -2265, -6816, -13445, -13446, -13447, -13448, -788, -3264, -3223, -1838, -3264, -9702, -6817, -11647, -6422, - -6420, -5559, -9692 - ], - [1, 3, 8463], - [0, 8464, 8465, 8466, 4], - [0, -3164, -13449, -1320, -1549, -13450, -13451, -13452], - [0, -13453, -13454, -12508], - [0, -707, -7347, -8388, -3264, -13455, -13456, -6694, -9357, -13457, -2265, -6817, -9702, -7651, -5554, -13458], - [1, 3, 8468], - [0, 8469, 14, 8470, 4], - [0, -13459, -2269], - [ - 0, -2265, -7472, -4112, -6730, -13460, -6787, -13461, -13462, -13463, -6786, -13464, -13465, -5514, -5559, - -5563, -687, -3958, -3974, -4000, -13466, -13467, -13468, -13469, -13470, -13471 - ], - [1, 3, 8472], - [0, 8473, 8474, 8475, 5], - [0, -2737, -2738], - [0, -3037, -652, -2736, -1942, -2094, -2100, -2399, -2410, -2541], - [0, -6231, -6422, -5559, -3264, -7472, -4846, -8034, -3223], - [1, 3, 8477], - [0, 8478, 238, 8479, 4], - [0, -481], - [ - 0, -6817, -11647, -6694, -5514, -3770, -712, -5535, -714, -3974, -4000, -2265, -3975, -5559, -5538, -5549, - -5513, -5550, -2547, -1573, -5545, -3958, -5554 - ], - [1, 3, 8481], - [0, 0, 14, 8482, 4], - [0, -6817, -9310, -6472, -7154, -9311, -4112, -2443, -9312, -6694, -6693, -11647, -5554, -2265], - [1, 3, 8484], - [0, 0, 8485, 8486, 4], - [0, -519, -1612, -2384, -2541], - [0, -4055, -6817, -3485, -6694, -6693, -11647, -6810, -1838, -727, -3870, -6849, -2444, -6845, -5558, -8292], - [1, 3, 8488], - [0, 0, 8489, 8490, 4], - [ - 0, -1788, -664, -1722, -1654, -932, -2379, -1942, -1729, -2410, -3035, -3037, -3621, -13472, -665, -958, -1656, - -940, -967, -4269, -428, -4628, -427 - ], - [0, -2272, -13473, -13474, -3690], - [1, 3, 8492], - [0, 8493, 8494, 8495, 5], - [ - 0, -510, -812, -13475, -13476, -1735, -13477, -1758, -1813, -2059, -13478, -13479, -13480, -13481, -13482, - -12003, -13483, -13484, -13485, -2518, -1464, -642, -13486, -797, -1298, -1370, -1521, -1548, -1579, -10695, - -11015, -13372, -1666, -2062, -9798, -2245, -13487, -10690, -13488, -13489, -13490, -11800, -2531 - ], - [0, -932, -1445, -2319], - [ - 0, -4344, -13491, -11755, -13492, -10705, -13493, -5804, -9733, -5805, -7641, -4161, -9844, -727, -3015, -8901, - -8904, -13494, -1066, -5889, -11021, -13495, -5545, -10706, -9800, -13496, -10412, -13497, -11230, -13498, - -1764, -13499, -13500, -13501, -6187, -13502, -1958, -6479, -11429, -11722, -13503, -4043, -5196, -13504, - -13505, -8027, -13478, -13506, -13507, -12003, -13485, -2273, -13508, -2295, -7307, -4123, -13509 - ], - [1, 3, 8497], - [0, 8498, 8499, 8500, 4], - [0, -13510, -13511, -13512, -13513, -668, -671, -5971, -719, -1395, -1460, -13514, -1942, -2355], - [ - 0, -6327, -2843, -50, -86, -3307, -13515, -13516, -3989, -13517, -3035, -3037, -5011, -3738, -428, -3311, - -13518, -3312, -461, -2834, -664, -932, -964, -969, -989, -1077, -13519, -1344, -13520, -1448, -13521, -1521, - -1534, -5273, -10918, -5670, -1654, -9002, -1771, -4916, -2162, -2177, -2193, -13522, -2286, -2410, -2429, - -2446, -2548 - ], - [0, -13523, -5553, -13524, -775, -3099, -7205, -2162, -3754, -5739, -13525, -2006, -3163, -4901], - [1, 3, 8502], - [0, 0, 8503, 48, 4], - [ - 0, -1415, -2162, -1344, -1449, -1623, -774, -932, -2177, -825, -2501, -920, -1942, -767, -21, -533, -778, -23, - -1041, -1534, -1771, -2163, -2503, -86, -2251, -40, -2505, -958, -940, -1419, -3307, -7166 - ], - [1, 3, 8505], - [0, 8506, 8507, 8508, 5], - [0, -2277], - [ - 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -3136, -427, -428, -932, -967, -4814, -1110, -1344, -1415, - -1534, -1942, -2127, -2375, -2379, -2410 - ], - [0, -2276, -775, -5553, -3214, -7208, -9680], - [1, 3, 8510], - [0, 8511, 8512, 8513, 6], - [0, -1374], - [ - 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -3267, -3136, -3037, -427, -428, -932, -967, -4814, -1110, - -1344, -1415, -1534, -1771, -1942, -2910, -2127, -2375, -2379, -2387, -2410 - ], - [0, -2277, -9339, -5553, -3215, -775, -7208, -9680], - [1, 3, 8515], - [0, 8516, 8517, 8518, 11], - [0, -3776, -5577, -13526, -13527, -786, -1889, -2192, -3768, -2387], - [ - 0, -23, -3341, -3840, -26, -36, -3203, -40, -41, -42, -3267, -406, -407, -409, -410, -3043, -3136, -13528, - -3037, -3040, -3052, -13529, -3141, -3081, -13530, -533, -535, -8560, -6046, -3563, -1415, -1419, -3667, -1428, - -1440, -1942, -1967, -2006, -2019, -13531, -2034, -2052, -2127, -2131, -2133, -2137, -2138, -2139, -2140, - -13532, -13533, -2410 - ], - [0, -2006, -775, -3771, -2278, -4134], - [1, 3, 8520], - [0, 8521, 8522, 8523, 11], - [0, -2740], - [ - 0, -21, -23, -36, -3077, -3373, -3204, -38, -40, -41, -43, -44, -47, -3040, -519, -3766, -9723, -742, -932, - -940, -1344, -1543, -1942, -1952, -2006, -2019, -2174, -2231, -12979, -3768, -13534, -2410 - ], - [0, -3766, -2455, -13535, -3771, -775], - [1, 3, 8525], - [0, 8526, 22, 8527, 10], - [0, -635, -1931], - [0, -6413, -775, -13536, -13537, -7192, -1889, -3583, -2280], - [1, 3, 8529], - [0, 8530, 8531, 8532, 6], - [ - 0, -93, -7195, -94, -95, -12147, -98, -9352, -2840, -755, -777, -781, -812, -1026, -11676, -8142, -6197, -1111, - -13538, -1327, -1353, -3190, -8143, -1396, -1499, -13539, -1630, -1639, -1759, -1863, -1889, -1929, -1931, - -1934, -2267, -2591, -13540, -4002, -2530 - ], - [ - 0, -50, -13541, -5121, -13542, -13543, -13544, -5685, -3198, -13545, -13546, -13547, -13548, -4036, -6928, - -13549, -8335, -13550, -9284, -589, -722, -823, -932, -13551, -958, -959, -1344, -1415, -13552, -1428, -1534, - -4984, -1771, -4916, -1904, -1906, -12130, -13553, -1930, -1942, -2094, -2289, -2410 - ], - [0, -3771, -775, -1521, -7148, -8170, -1599, -2162, -3754, -2281, -2289], - [1, 3, 8534], - [0, 8535, 8536, 8537, 9], - [0, -3085], - [0, -13542, -13543, -932, -13551, -1344, -1534, -1771, -1942, -2094, -2281], - [0, -2281, -13554, -2250], - [1, 3, 8539], - [0, 0, 8540, 8541, 5], - [ - 0, -1788, -1415, -1344, -1868, -855, -932, -708, -2402, -1942, -13555, -767, -2281, -21, -533, -13556, -5128, - -2410, -23, -5870, -1534, -1637, -43, -86, -2174, -40, -13557, -959, -977, -958, -3471, -13552, -3842, -940, - -967, -2405, -42, -428, -3470, -3307, -935, -427, -3363, -5585, -26, -36 - ], - [0, -13558, -2281, -775, -3754, -1521, -7148, -13559, -3833, -5924, -13560, -712, -13561], - [1, 3, 8543], - [0, 8544, 8545, 8546, 4], - [0, -1889, -13562], - [ - 0, -932, -13563, -940, -1110, -1344, -1415, -12241, -13552, -1428, -1534, -1904, -12130, -13564, -1942, -13565, - -2281 - ], - [0, -13558, -2281, -775, -7148, -7154], - [1, 3, 8548], - [0, 8549, 8550, 8551, 4], - [0, -781, -1396, -1499, -1620, -13566, -13567, -1931, -1934], - [0, -722, -767, -932, -13568, -1344, -1415, -13552, -1534, -1763, -1889, -12130, -1930, -1942, -2281], - [0, -775, -9231, -7148, -8170, -3754, -2281, -13558], - [1, 3, 8553], - [0, 8554, 128, 8555, 6], - [0, -28, -812, -1107, -2165, -2231], - [0, -775, -3215, -5553, -9406, -1409, -6784], - [1, 3, 8557], - [0, 8558, 8559, 8560, 6], - [0, -1026, -1759], - [ - 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -589, -13569, -767, -774, -778, -824, -825, -932, -940, -6929, - -958, -959, -960, -965, -967, -978, -1110, -1344, -1415, -1534, -1623, -1717, -1771, -1942, -2000, -2251, -2275, - -2286, -2411, -2501 - ], - [0, -2501, -5932, -2286], - [1, 3, 8562], - [0, 0, 0, 8563, 11], - [0, -775, -1889, -12209, -4132, -6806, -3215], - [1, 3, 8565], - [0, 8566, 8567, 8568, 5], - [0, -723, -13570, -812, -13106, -1069, -1070, -1636, -1640, -1983], - [ - 0, -21, -23, -38, -40, -44, -86, -3307, -571, -7124, -11178, -617, -633, -744, -767, -932, -946, -952, -966, - -1004, -1010, -1053, -1098, -1344, -1534, -1610, -1654, -1685, -1788, -2094, -2099, -2125, -2198, -13571, - -13572, -2541, -2568 - ], - [ - 0, -9733, -5998, -5998, -3690, -510, -5867, -523, -5391, -3323, -13573, -1116, -1334, -1334, -1342, -9128, - -1961, -1961, -5923, -2105, -2105, -9176, -13503, -3691, -2122, -13574, -2291, -7430, -6408, -2533, -2540 - ], - [1, 3, 8570], - [0, 8571, 8572, 7, 6], - [0, -10528], - [0, -3198, -11232, -3037, -589, -10300, -1671, -8973, -2410, -2469], - [1, 3, 8574], - [0, 8575, 8576, 8577, 5], - [0, -1636, -2291, -746], - [0, -1788, -1722, -1654, -2210, -932, -2198, -1004, -1972, -617, -744, -86, -958, -934, -3307], - [0, -3440, -1334, -2105, -2291, -4873, -4004, -3634], - [1, 3, 8579], - [0, 8580, 8581, 8582, 4], - [0, -615, -1636], - [0, -664, -665, -2123, -2517, -617, -744, -1004, -1654, -2198], - [0, -2293, -2291, -2105, -4873, -3440, -1334, -4004, -3634, -1961, -13575], - [1, 3, 8584], - [0, 0, 8585, 8586, 5], - [0, -2541, -519, -2384, -3037], - [ - 0, -712, -5535, -714, -3974, -4000, -687, -5514, -3770, -3975, -5549, -5513, -5550, -2547, -3958, -6520, -13576, - -13577, -6659, -13578, -13579 - ], - [1, 3, 8588], - [0, 8589, 8590, 8591, 6], - [0, -3195, -3115, -5032, -426, -461, -5113, -8294, -703, -5034, -5035, -13580, -4788, -4789, -1588, -13581], - [0, -3180, -3983, -350, -351, -3266, -3989, -5114, -3037, -5040, -928, -2127, -2231, -2654, -2410, -2469], - [0, -2299, -11193, -3161, -3261, -7651], - [1, 3, 8593], - [0, 8594, 8595, 8596, 4], - [0, -3180, -679, -4787, -1863, -5037], - [ - 0, -350, -4062, -351, -3561, -3267, -13582, -644, -2127, -2130, -4063, -2299, -2410, -13583, -13584, -11164, - -11165, -13585, -13586 - ], - [0, -2299, -687], - [1, 3, 8598], - [0, 0, 8599, 8600, 4], - [ - 0, -23, -40, -86, -3307, -13587, -13588, -4776, -3037, -13589, -8336, -518, -5859, -711, -740, -932, -1521, - -1889, -13590, -1907, -1942, -1974, -2162, -2286, -2289, -2299, -2410, -2469 - ], - [0, -2299, -9263, -2410, -1521, -2286, -2162, -3754, -1974, -711], - [1, 3, 8602], - [0, 8603, 8604, 8605, 4], - [ - 0, -2746, -1107, -2303, -510, -10310, -2460, -2542, -2550, -1442, -2520, -1689, -13591, -1566, -8054, -4733, - -13592, -5981 - ], - [0, -2541, -1415, -1521, -2162, -1880, -2286, -1870, -959, -960, -13593, -13594], - [ - 0, -3167, -3843, -3839, -7715, -9278, -9279, -9471, -3262, -775, -2162, -1521, -2286, -3271, -9339, -3264, - -9472, -9473, -9474, -1689, -7419 - ], - [1, 3, 8607], - [0, 8608, 8609, 8610, 4], - [0, -719, -780, -781, -2888, -2746, -1863, -2165], - [ - 0, -190, -5121, -350, -351, -3266, -5685, -7169, -3136, -3037, -13312, -3715, -767, -932, -1110, -1415, -1870, - -1874, -1880, -1942, -2125, -2127, -2325, -2384, -2410 - ], - [0, -2303, -3839, -7175, -1644], - [1, 3, 8612], - [0, 8613, 8614, 8615, 4], - [0, -824, -1570, -13595, -2415], - [0, -519, -526, -528, -556, -11733, -562, -566, -615, -932, -13596, -1626, -1650, -2210, -2501], - [0, -2501, -3862, -13597, -13595, -5196, -8615], - [1, 3, 8617], - [0, 8618, 8619, 8620, 8], - [0, -461, -823, -1107, -1460], - [0, -932, -1942, -2322, -13598], - [0, -4847, -13599, -3696, -8442, -856, -2305, -5885, -5886, -3262, -3960, -8443, -8444, -8445, -3438], - [1, 3, 8622], - [0, 8623, 8624, 8625, 4], - [0, -1111, -1442, -719, -13600, -13601], - [0, -932, -2469, -1942, -3664, -13602], - [0, -4847, -3671, -13603, -856, -3690, -9339, -3485], - [1, 3, 8627], - [0, 0, 131, 8628, 4], - [0, -3812, -4847, -3160, -2308, -1004, -856, -3671, -13604, -5406, -2307, -4101, -13605, -13606], - [1, 3, 8630], - [0, 8631, 8632, 8633, 4], - [0, -3434], - [0, -927, -1004, -13607, -1654, -1788, -1978], - [0, -4847, -1004, -3160, -4055, -856], - [1, 3, 8635], - [0, 8636, 8637, 8638, 6], - [0, -2416, -1813], - [0, -1548, -1004, -13608, -1654, -1003, -13609, -1521, -13610, -600, -13611, -1859, -633, -6656, -1446], - [0, -3110, -7651, -3264, -13432, -13612, -6876, -1004, -6301], - [1, 3, 8640], - [0, 0, 0, 8641, 9], - [ - 0, -2311, -13613, -12449, -2363, -5270, -3162, -752, -1861, -3994, -3161, -13614, -12613, -13615, -3862, -2006, - -2476, -13616 - ], - [1, 3, 8643], - [0, 8644, 8645, 8646, 4], - [0, -13617, -13618, -13619], - [0, -617, -767, -1004, -13620, -1415, -1676, -2125, -2410], - [0, -2105, -1334, -1342, -3324, -633, -12397, -6367], - [1, 3, 8648], - [0, 0, 0, 8649, 9], - [ - 0, -13621, -13622, -1673, -11230, -1819, -9261, -12578, -7084, -13623, -13624, -13625, -13626, -13627, -13628, - -13629, -12218, -13630, -3708, -13631, -10412, -8801, -13632, -13633, -13634, -13635, -5150, -13636, -13637, - -13638, -13639, -13640, -13641, -13642, -13643, -13644, -7606, -13645, -13646, -6524, -13647, -13648, -13649, - -6712, -13650, -13651, -10245, -13652, -13653, -13654, -13655, -13656, -13657, -13658, -3445, -13173, -13659, - -13660 - ], - [1, 3, 8651], - [0, 0, 8652, 7, 4], - [ - 0, -1805, -1496, -1654, -1650, -2125, -2127, -2334, -615, -1729, -13661, -8559, -2516, -2234, -4062, -2140, - -3561, -13662, -351, -13663 - ], - [1, 3, 8654], - [0, 8655, 8656, 8657, 4], - [ - 0, -2531, -469, -754, -13664, -13665, -13666, -13667, -1548, -1676, -13668, -13669, -13670, -13671, -1004, - -13672, -13673, -13674, -13675, -13676, -512, -617, -724, -737, -13677, -496, -44, -13678 - ], - [0, -1708, -473, -13679, -13680, -2195, -13681, -722, -13682], - [0, -13683, -13684], - [1, 3, 8659], - [0, 0, 8660, 8661, 9], - [ - 0, -5369, -2387, -932, -1111, -2127, -2469, -1942, -2410, -23, -3037, -40, -2132, -2411, -3664, -3326, -958, - -5122, -6593, -13685, -3267, -351, -10022, -3344 - ], - [0, -2318, -2316, -775, -3205, -13686, -13687, -1631, -9342, -13688], - [1, 3, 8663], - [0, 0, 8664, 7, 4], - [0, -815, -3037, -3751, -1588, -2232, -13689, -3195], - [1, 3, 8666], - [0, 8667, 0, 8668, 10], - [ - 0, -13690, -13691, -13692, -13693, -13694, -13695, -13696, -13697, -13698, -13699, -13700, -13701, -13702, - -13703, -13704, -13705, -13706, -13707, -13708, -13709 - ], - [0, -507, -2319, -4004, -3634, -3161, -687, -13710, -13711], - [1, 3, 8670], - [0, 8671, 8672, 8673, 9], - [0, -668, -883, -1040, -1548, -1951, -10854, -13712, -2347], - [0, -13713], - [0, -2322, -2319, -1654, -4679, -6863], - [1, 3, 8675], - [0, 0, 8676, 7, 6], - [0, -1415, -932, -1110, -1942, -190, -533, -23, -965, -3560, -40, -959, -958, -6929, -978, -940, -967, -3748], - [1, 3, 8678], - [0, 8679, 8680, 8681, 9], - [ - 0, -13714, -13715, -13716, -655, -821, -6369, -13717, -1065, -1097, -1107, -13718, -1285, -1370, -7394, -1646, - -1659, -1794, -5849, -1795, -1797, -2114, -8057 - ], - [ - 0, -5834, -505, -516, -725, -767, -887, -13719, -5835, -921, -932, -6282, -1408, -1442, -13720, -1777, -1788, - -2156, -2177, -2319, -8573 - ], - [0, -2319, -4004, -13721, -507, -4865], - [1, 3, 8683], - [0, 8684, 8685, 7, 5], - [0, -13722, -13723, -9084, -11721, -13724], - [0, -2319, -1722, -2386, -13725, -2125, -2402, -1942, -11719, -3037, -908, -13726], - [1, 3, 8687], - [0, 8688, 8689, 8690, 5], - [0, -1976, -2325], - [0, -2125, -13727, -2250], - [0, -2323, -1076, -6656, -7738, -7421, -5827], - [1, 3, 8692], - [0, 8693, 8694, 7, 6], - [0, -13728, -13729, -13730], - [0, -13727, -2250, -725], - [1, 3, 8696], - [0, 33, 8697, 8698, 6], - [0, -6486, -6627, -3136, -3037, -427, -428, -756, -928, -932, -943, -958, -966, -968, -1415, -1942, -2375, -2410], - [0, -13731, -3555, -13732, -13733, -3100, -13734, -3445, -13735, -11074, -6235], - [1, 3, 8700], - [0, 0, 8701, 8702, 4], - [ - 0, -6486, -13736, -13737, -3617, -6627, -3136, -3037, -4203, -427, -428, -617, -720, -796, -13738, -932, -943, - -958, -966, -968, -1344, -1415, -1534, -1753, -7760, -1942, -2293, -2375, -2410 - ], - [0, -13731, -3555, -13732, -13733, -3445, -13735, -6367, -1004], - [1, 3, 8704], - [0, 8705, 0, 8706, 8], - [0, -812, -1723, -6127], - [0, -13739, -13740, -13741, -13742, -13743, -596, -13744, -3445], - [1, 3, 8708], - [0, 8709, 8710, 8711, 8], - [0, -812, -1723], - [ - 0, -190, -3561, -3198, -3037, -8612, -865, -932, -940, -972, -978, -1733, -1942, -2402, -2405, -2410, -2411, - -2466, -6859, -2469 - ], - [0, -13739, -13742, -2328, -3966, -3445], - [1, 3, 8713], - [0, 8714, 27, 258, 5], - [0, -2125, -1650], - [1, 3, 8716], - [0, 8717, 8718, 8719, 4], - [0, -1399, -5917, -2400, -13387], - [0, -3037, -519, -1849, -2363, -2384, -2541], - [0, -2330, -9214, -1847, -6656, -7421, -7420, -6909, -13745, -11846, -13746, -6555, -13747], - [1, 3, 8721], - [0, 8722, 0, 8723, 9], - [0, -10893, -13748, -13749, -13750, -13751, -13752, -13753, -13754], - [ - 0, -3974, -4000, -5514, -687, -2547, -712, -13755, -13756, -5553, -3962, -13757, -12898, -13758, -5564, -3824, - -6716, -6765, -13759, -13760, -13761, -12704, -6527, -7715, -9235, -8642 - ], - [1, 3, 8725], - [0, 8726, 0, 8727, 11], - [0, -13762, -6372, -1370, -13763, -2347, -13764], - [0, -3824, -3974, -5514, -13765, -13766], - [1, 3, 8729], - [0, 8730, 8731, 8732, 6], - [0, -13767, -461, -719, -2234], - [0, -13768, -13769, -932, -8150, -985, -1654, -1939, -2127, -2177, -2231], - [ - 0, -9216, -2334, -2415, -2416, -1644, -6684, -3214, -3217, -8108, -3184, -6052, -13770, -4795, -8165, -6434, - -510, -5867 - ], - [1, 3, 8734], - [0, 8735, 8736, 8737, 5], - [0, -2334, -1429, -2168, -2182, -3180], - [ - 0, -824, -1415, -1344, -1623, -774, -932, -825, -928, -2501, -1942, -367, -767, -2416, -21, -190, -2410, -23, - -3037, -1041, -1534, -1771, -2503, -11510, -86, -965, -3560, -13771, -2251, -40, -2411, -959, -748, -960, -958, - -6929, -978, -940, -967, -3748, -6930, -3307 - ], - [0, -9216, -2416, -2415, -2334, -2501, -7172, -6059, -6454, -9696, -9234, -6059, -6684, -1644, -7175, -7176], - [1, 3, 8739], - [0, 8740, 8741, 8742, 4], - [0, -13772, -13773, -13774, -13775, -13776, -717, -718, -10293, -1026, -10745, -7576], - [0, -1448, -1729], - [0, -2337, -4004, -4043, -687, -5119, -3634, -3673, -2322, -2319, -519, -1654], - [1, 3, 8744], - [0, 8745, 8746, 8747, 11], - [0, -615, -668, -1107, -1548, -1610, -1650, -13777, -13778], - [ - 0, -3244, -190, -5294, -5767, -3036, -3044, -3037, -4372, -427, -428, -3664, -827, -932, -6611, -13779, -2210, - -13780, -13781, -2391, -2392, -2410, -13782, -2469 - ], - [0, -1599, -4004, -5119, -13783, -856, -3671], - [1, 3, 8749], - [0, 8750, 8751, 8752, 4], - [ - 0, -23, -33, -37, -10983, -3395, -3383, -3376, -3384, -3393, -3350, -3385, -3374, -38, -40, -6056, -41, -44, - -13784, -13785, -3037, -6558, -3442, -541, -6067, -13786, -7435, -664, -668, -13787, -711, -719, -812, -815, - -824, -13788, -11460, -834, -13789, -11328, -5910, -3606, -999, -13790, -1111, -1119, -12933, -1341, -5458, - -13791, -1366, -1392, -10697, -1393, -13792, -1399, -1460, -1548, -13793, -1591, -11015, -1666, -13794, -1689, - -1699, -13795, -1839, -1866, -13796, -1880, -6467, -13797, -1966, -1982, -13798, -13799, -5915, -2115, -2160, - -2177, -3169, -2234, -2270, -13800, -13801, -13802, -13803, -13804, -13805, -13806, -13807, -13808, -13809, - -2359, -2369, -2410, -13810, -13811 - ], - [ - 0, -13812, -7590, -13813, -4066, -350, -6572, -351, -13814, -13815, -3035, -3198, -13816, -9939, -9283, -11011, - -3622, -3735, -3199, -3172, -9660, -13817, -427, -428, -535, -579, -617, -13818, -13819, -665, -9077, -3050, - -729, -754, -767, -13820, -930, -932, -13821, -7353, -1004, -13822, -1168, -1174, -13823, -1196, -1197, -1226, - -13824, -13825, -8498, -1243, -13826, -1262, -3809, -1608, -1632, -1646, -13827, -1685, -13828, -1972, -2006, - -13829, -2127, -2142, -2187, -2210, -7220, -2269, -13830, -2387, -2416 - ], - [ - 0, -13831, -5112, -4865, -6413, -3258, -3995, -3634, -4864, -4004, -4043, -4873, -507, -5855, -13832, -6948, - -6950, -510, -5867 - ], - [1, 3, 8754], - [0, 8755, 8756, 8757, 6], - [0, -7602, -13833, -501, -8864, -8898, -812, -13834, -851, -1098, -7772, -13835, -13836, -2324, -2359, -2426], - [0, -11344, -13837, -11339, -3198, -11347, -13838, -13839, -3628], - [0, -2340, -7606, -3634], - [1, 3, 8759], - [0, 8760, 8761, 8762, 5], - [0, -1548, -4654, -13840, -10846], - [ - 0, -3037, -427, -428, -633, -13841, -13842, -767, -815, -13843, -13844, -1398, -1650, -1771, -1788, -2125, - -2250, -13845, -13846, -2341, -2379, -5482, -2410 - ], - [0, -4873, -3440, -4215, -8611, -4216, -13847, -11378], - [1, 3, 8764], - [0, 8765, 8766, 8767, 4], - [ - 0, -4733, -573, -615, -13762, -719, -724, -735, -999, -1004, -13848, -1107, -1336, -1442, -1548, -1650, -1689, - -1737, -1778, -13849, -2125, -2228, -13850, -13851, -8573, -2359 - ], - [ - 0, -13852, -633, -664, -7976, -13853, -674, -838, -932, -7979, -964, -1654, -2105, -13854, -2195, -2210, -2211, - -2229, -2322 - ], - [0, -3214, -3634, -11116, -4865], - [1, 3, 8769], - [0, 0, 8770, 8771, 4], - [0, -2319, -2322, -689], - [0, -5554, -4002, -9846, -4111, -10844, -6724], - [1, 3, 8773], - [0, 0, 8774, 8775, 4], - [ - 0, -190, -351, -3266, -932, -13855, -952, -957, -960, -1110, -13856, -1446, -1588, -1880, -1978, -1989, -2127, - -2393 - ], - [0, -2344, -13857, -3214, -13858, -13859, -13860, -13861, -13862, -13863, -13864, -13865, -659, -3839, -5177], - [1, 3, 8777], - [0, 0, 8778, 8779, 4], - [ - 0, -21, -23, -38, -40, -44, -3326, -534, -7156, -753, -932, -7157, -940, -967, -985, -1098, -13866, -7158, - -1344, -1471, -1473, -1475, -1479, -1483, -1485, -1490, -1492, -1534, -1646, -13867, -1763, -1942, -1991, -2127, - -7161, -2501 - ], - [0, -811, -7329], - [1, 3, 8781], - [0, 0, 8782, 8783, 9], - [0, -8388, -2322, -8393], - [0, -5827, -8027, -13868, -11441], - [1, 3, 8785], - [0, 8786, 8787, 8788, 4], - [0, -2062], - [0, -599, -640, -664, -13869, -1654, -13870, -2250, -13871], - [0, -5827, -13872, -2346, -6408], - [1, 3, 8790], - [0, 0, 0, 8791, 11], - [0, -12735, -705, -3262, -5925, -1961], - [1, 3, 8793], - [0, 0, 14, 8794, 6], - [0, -13873, -13874, -13875, -2350, -13876, -1847, -11845, -7421, -2440, -7727, -5845], - [1, 3, 8796], - [0, 8797, 210, 8798, 4], - [0, -668, -12908, -1040, -9236, -13877, -1951, -2343], - [0, -1127, -8906, -9460, -4123, -13878, -9330, -13879, -9225, -6187, -8906], - [1, 3, 8800], - [0, 8801, 8802, 8803, 4], - [ - 0, -13880, -13881, -13882, -13883, -13884, -13885, -13886, -13887, -13888, -13889, -13890, -13891, -13892, - -13893, -13894, -13895, -13896, -13897, -13898, -13899, -13900, -13901, -13902, -13903, -13904, -13905, -13906, - -13907, -13908, -13909, -13910, -13911, -13912, -13913, -13914, -13915, -13916, -13917, -13918, -13919, -13920, - -13921, -13922, -13923, -13924, -13925, -13926, -13927, -13928, -13929, -13930, -13931, -13932, -13933, -13934, - -13935, -13936, -13937, -13938, -13939, -13940, -13941, -13942, -13943, -13944, -13945 - ], - [ - 0, -1076, -1107, -1168, -1847, -2162, -1654, -2006, -932, -1548, -2125, -784, -1889, -2501, -923, -1077, -1405, - -767, -1003, -1248, -1743, -2019, -778, -1183, -1967, -1187, -2163, -518, -1238, -1244, -2275, -13946, -13947, - -1792, -2508, -1184, -1514, -1908, -13948, -3054, -969, -933, -958, -962, -10533, -13949, -796, -1017 - ], - [0, -2006, -3159, -3095, -3098, -3160, -3161, -3100, -13950, -2352, -13951], - [1, 3, 8805], - [0, 8806, 8807, 7, 6], - [0, -10459, -812, -10622, -10623, -1792, -1983], - [0, -526, -535, -554, -559, -932, -943, -968, -974, -1004, -1088, -1654, -11943, -2251, -2293], - [1, 3, 8809], - [0, 0, 0, 8810, 5], - [0, -589, -13952, -13241], - [1, 3, 8812], - [0, 0, 8813, 8814, 5], - [0, -13953], - [0, -712, -3215, -13954], - [1, 3, 8816], - [0, 0, 0, 8817, 11], - [0, -3494, -2356, -7754, -3214, -3264, -5554, -10109, -10110, -10114, -3495, -10111, -3498], - [1, 3, 8819], - [0, 0, 8820, 8821, 4], - [0, -3037, -13239, -932, -940, -967, -978, -1942, -2892, -2410, -2411, -2466, -2469], - [0, -5922, -13955, -13956], - [1, 3, 8823], - [0, 0, 0, 8824, 8], - [0, -4216, -4215, -2410, -13957], - [1, 3, 8826], - [0, 0, 8827, 258, 4], - [0, -1654, -932, -1405, -6726, -964], - [1, 3, 8829], - [0, 8830, 8831, 8832, 4], - [0, -2036], - [0, -23, -13958, -3156, -1942, -2410], - [ - 0, -2006, -3159, -13959, -12662, -3825, -13960, -13961, -2034, -2053, -13962, -13963, -2360, -4127, -4122, - -13964, -687, -3162, -5270, -5271, -3578, -13965 - ], - [1, 3, 8834], - [0, 0, 8835, 8836, 10], - [ - 0, -21, -23, -37, -40, -41, -2581, -11254, -3311, -534, -664, -932, -1004, -1077, -1103, -1111, -1442, -1449, - -1610, -1650, -1654, -2634, -13966, -1771, -13967, -2006, -2019, -2162, -2250, -2501, -2503 - ], - [0, -2361, -3214, -4002, -13968, -7002, -3960, -3264, -7534, -9975], - [1, 3, 8838], - [0, 0, 8839, 8840, 6], - [0, -1754, -11358], - [0, -2362, -3215], - [1, 3, 8842], - [0, 0, 8843, 7, 6], - [0, -11719, -2319], - [1, 3, 8845], - [0, 8846, 8847, 8848, 6], - [0, -13969], - [ - 0, -2832, -190, -4139, -262, -3037, -6593, -932, -940, -948, -958, -967, -3631, -1110, -1942, -2391, -2410, - -2411, -2469 - ], - [0, -4181, -743, -6920, -13970, -13570, -8792, -13971, -13972], - [1, 3, 8850], - [0, 8851, 8852, 8853, 4], - [0, -714, -808, -1650, -13973], - [0, -3035, -3621, -664, -689, -879, -932, -1654, -1788, -2379, -2388, -2410], - [0, -1573, -3444, -13974, -812], - [1, 3, 8855], - [0, 8856, 8857, 8858, 5], - [0, -11103, -13975, -7400], - [0, -5834, -516, -5835, -921, -932, -1365, -1777, -2156, -2322], - [0, -2368, -2487, -7371, -6917, -13976, -6545, -702], - [1, 3, 8860], - [0, 0, 27, 8861, 5], - [0, -10919, -10336, -1958, -13641, -12872, -5395], - [1, 3, 8863], - [0, 241, 8864, 7, 5], - [0, -3732, -4198, -3617, -3136, -724, -754, -1004, -1415, -1753, -1942, -2375, -2410, -2564], - [1, 3, 8866], - [0, 8867, 8868, 8869, 4], - [0, -1370, -2347, -6372, -13977, -13978, -2062], - [0, -2322, -2346, -725], - [0, -3264, -9292, -3215, -6408, -12123, -775], - [1, 3, 8871], - [0, 8872, 8873, 8874, 4], - [0, -3851, -3199, -1388, -1681, -2177, -9444], - [0, -2581, -3037, -3664, -637, -11187, -1672, -1806, -5326, -3246, -2410, -2469], - [ - 0, -3445, -6857, -1671, -1672, -3862, -4058, -7773, -7684, -3018, -2410, -3324, -2071, -4634, -10412, -6495, - -5101, -13979 - ], - [1, 3, 8876], - [0, 0, 8877, 161, 11], - [ - 0, -21, -23, -26, -35, -36, -40, -42, -50, -86, -3307, -4139, -262, -3268, -3136, -3044, -3738, -427, -428, - -533, -589, -753, -932, -940, -967, -977, -1344, -1415, -1548, -1771, -1942, -2082, -2379, -2402, -2405, -2410, - -2446 - ], - [1, 3, 8879], - [0, 8880, 8881, 8882, 5], - [0, -13980, -7141, -1276, -1460, -1565, -13981, -2177, -2400, -2551], - [ - 0, -86, -9404, -3615, -3244, -190, -5121, -4020, -237, -4776, -3048, -3136, -3660, -3759, -8216, -7211, -4036, - -3037, -3199, -3041, -9146, -427, -428, -533, -10525, -739, -928, -932, -940, -958, -959, -960, -967, -999, - -1026, -1077, -1110, -1344, -1415, -1442, -1534, -1623, -1942, -2125, -2379, -2410, -2411 - ], - [0, -1415, -2410, -6915, -2006, -3634], - [1, 3, 8884], - [0, 8885, 8886, 8887, 5], - [0, -668, -909, -1639, -2177, -2231], - [ - 0, -4036, -3199, -427, -428, -525, -527, -534, -556, -559, -13982, -560, -930, -932, -940, -966, -967, -1077, - -1107, -1344, -1413, -1471, -1475, -1481, -1483, -1490, -1492, -1534, -1607, -1650, -1654, -1942, -2125, -2410, - -2501, -2503 - ], - [0, -2376, -13983, -2501, -5932, -2410, -3018], - [1, 3, 8889], - [0, 8890, 8891, 8892, 9], - [0, -4106, -719, -865, -1672, -2392], - [0, -2581, -3037, -3664, -11187, -1763, -1806, -5326, -3246, -2410, -2469], - [ - 0, -3445, -13984, -13985, -13986, -1672, -1671, -6857, -4058, -7773, -7684, -3018, -2410, -687, -5732, -13987, - -5731 - ], - [1, 3, 8894], - [0, 8895, 8896, 8897, 6], - [0, -13988, -13989], - [0, -3267, -3035, -9939, -3621, -3037, -664, -11072, -767, -834, -1654, -2125, -2127, -2379, -2410], - [0, -2410, -3272, -13990, -3107, -13991], - [1, 3, 8899], - [0, 8900, 8901, 8902, 5], - [0, -2558, -502, -834, -461, -462, -13981, -13992, -13993, -13994, -13995, -8214, -13996, -13997], - [ - 0, -519, -1788, -523, -2006, -13998, -1001, -1548, -2125, -2177, -11685, -1821, -2402, -367, -13999, -1100, - -1972, -2410, -9939, -3037, -14000, -3040, -3044, -8890, -3199, -6744, -14001, -7772, -4364, -11347, -11708, - -262 - ], - [0, -2410, -3966, -11997, -5558, -3018, -3116], - [1, 3, 8904], - [0, 8905, 8906, 8907, 5], - [0, -3044, -3851, -3199, -14002, -1548, -1681, -14003, -14004, -2177], - [0, -2581, -3037, -3664, -11187, -1672, -1806, -5326, -3246, -2410, -2469], - [ - 0, -3445, -1672, -3862, -6857, -4058, -7773, -7684, -3018, -2410, -7460, -1306, -5389, -6821, -8990, -10674, - -6693, -5879, -1573 - ], - [1, 3, 8909], - [0, 0, 37, 8910, 8], - [0, -2410, -2552, -10054, -10055], - [1, 3, 8912], - [0, 8913, 8914, 8915, 5], - [0, -1548, -3044], - [0, -2581, -3037, -3664, -1806, -5326, -3246, -2410, -2469], - [0, -3445, -3018, -2410, -14005, -14006, -11315, -8199, -6899, -14007, -14008, -14009, -14010, -14011], - [1, 3, 8917], - [0, 8918, 8919, 7, 9], - [0, -1460, -1646, -2270], - [ - 0, -1415, -1344, -932, -2125, -2375, -2379, -1942, -2410, -3136, -3037, -1534, -5686, -14012, -960, -958, -940, - -428, -7770, -427 - ], - [1, 3, 8921], - [0, 8922, 8923, 8924, 5], - [0, -14013, -3686, -1111, -1418, -1630, -1849, -2061], - [0, -5028, -3037, -3040, -427, -428, -519, -757, -825, -932, -945, -14014, -999, -2006, -2115, -2153, -2410], - [0, -2410, -2384, -7440, -2414, -3694, -14015, -14016], - [1, 3, 8926], - [0, 0, 8927, 8928, 4], - [0, -23, -40, -42, -5121, -8214, -14013, -3037, -427, -428, -533, -774, -932, -940, -1415, -1942, -2410], - [0, -2410, -2384, -4037, -7440, -7144, -4004, -2414, -3694], - [1, 3, 8930], - [0, 8931, 8932, 8933, 10], - [0, -8200, -668, -679, -6475, -14017, -1645, -1650, -14018, -13709, -2125, -14019, -2410, -4297], - [0, -3037, -928, -1942, -2319, -2402], - [0, -2410, -5058, -9946, -985, -4791, -7641], - [1, 3, 8935], - [0, 0, 0, 8936, 6], - [0, -4165, -14020, -3116, -6784, -3214, -2387, -11997], - [1, 3, 8938], - [0, 8939, 8940, 8941, 8], - [0, -22, -644, -668, -719, -834, -1107, -1442, -1645, -1650, -2114, -2177, -2387, -7765], - [ - 0, -305, -8355, -3035, -9939, -3036, -3660, -8566, -4811, -3621, -3037, -3200, -8890, -3199, -664, -1344, - -13325, -1654, -1771, -1788, -1942, -2125, -2379, -2388, -2389, -6355, -2410, -12515 - ], - [0, -687, -2410, -8170], - [1, 3, 8943], - [0, 0, 8944, 8945, 5], - [ - 0, -1415, -1344, -1548, -2125, -2388, -2375, -1591, -1942, -14021, -720, -2410, -3136, -3037, -14022, -2390, - -14023, -6630, -2174, -14024, -14025, -12348, -2449, -12349, -14026, -796, -14027 - ], - [0, -7148, -2388, -14028, -1942, -727, -2410], - [1, 3, 8947], - [0, 8948, 8949, 7, 6], - [0, -7765], - [0, -3036, -3037, -714, -1107, -1771, -1847, -2388, -14029, -2410], - [1, 3, 8951], - [0, 8952, 8953, 7, 4], - [ - 0, -13389, -653, -679, -734, -812, -928, -14030, -14031, -1863, -1907, -2115, -2127, -2231, -5354, -3535, -2654, - -2369 - ], - [ - 0, -262, -4062, -367, -3198, -3037, -3200, -8349, -1055, -1889, -10815, -1942, -2114, -2132, -2162, -2271, - -2299, -2301, -2334, -14032, -2391, -2410, -2469, -2817 - ], - [1, 3, 8955], - [0, 8956, 0, 8957, 4], - [0, -928, -1101], - [0, -687, -11997, -3966, -8930, -4791, -985, -2410, -14033], - [1, 3, 8959], - [0, 8960, 8961, 8962, 6], - [0, -14034], - [0, -350, -351, -3561, -633, -2123, -2127, -2250, -14035], - [0, -6473, -3264, -1599], - [1, 3, 8964], - [0, 0, 8965, 8966, 10], - [ - 0, -1127, -1654, -11875, -1132, -2111, -14036, -14037, -1156, -14038, -1138, -14039, -2234, -1134, -14040, - -1144, -1148, -14041, -14042, -14043 - ], - [0, -1456, -4058, -2451, -2394], - [1, 3, 8968], - [0, 0, 8969, 8970, 5], - [0, -633, -932, -1032, -14044, -2322, -14045, -2416], - [0, -770, -5374, -14046, -14047, -13351, -6131, -7372, -14048, -14049, -14050, -14051, -14052], - [1, 3, 8972], - [0, 8973, 8974, 8975, 5], - [0, -1077, -1462, -14053, -8984], - [0, -1771, -1860, -2416], - [0, -10838, -14054, -3215, -5093, -9474, -14055, -4112], - [1, 3, 8977], - [0, 8978, 8979, 8980, 9], - [0, -615, -1640, -2105], - [0, -510, -714, -719, -1654, -2123, -2210], - [0, -2398, -3690, -3691, -5827, -9292, -1791], - [1, 3, 8982], - [0, 8983, 8984, 8985, 11], - [0, -2105, -822], - [0, -1722, -1654, -932], - [0, -2398, -9292, -1791], - [1, 3, 8987], - [0, 8988, 0, 7, 4], - [0, -1646, -14056, -668], - [1, 3, 8990], - [0, 8991, 8992, 8993, 9], - [0, -14057], - [0, -5918, -428, -932, -14058, -815, -1002, -1772, -2384, -2410, -2411, -2541], - [0, -2410, -3018, -3694, -3590, -2444, -8113, -10665, -1631, -4055, -14059], - [1, 3, 8995], - [0, 8996, 129, 8997, 4], - [0, -737, -14060, -1641], - [0, -5398, -8038, -14061], - [1, 3, 8999], - [0, 9000, 9001, 259, 4], - [0, -14062, -3544, -1600, -1645, -2548], - [0, -190, -3800, -3661, -3621, -3037, -652, -13998, -928, -932, -1654, -1978, -2177, -2392, -2410, -2411], - [1, 3, 9003], - [0, 9004, 9005, 9006, 11], - [0, -14063], - [0, -3037, -2402, -2410], - [0, -14064, -14065, -3118, -14066, -14067, -14068, -2410, -856], - [1, 3, 9008], - [0, 0, 131, 9009, 6], - [0, -4121, -4123, -13188, -2410, -856, -14068, -2402], - [1, 3, 9011], - [0, 0, 0, 9012, 4], - [0, -3690, -856, -1599, -2402, -2410, -14065], - [1, 3, 9014], - [0, 9015, 9016, 9017, 4], - [0, -1610, -2410], - [0, -3802, -3621, -3037, -3628, -756, -1405, -1654, -1657, -2359], - [0, -4165, -856, -14069, -3214], - [1, 3, 9019], - [0, 9020, 9021, 9022, 4], - [0, -719, -2536, -1705, -6455, -14070, -510, -714, -1666, -1650, -7418, -14071], - [0, -664], - [0, -14072, -1599, -14073, -14074, -14075, -8676, -3110, -6473, -3262], - [1, 3, 9024], - [0, 106, 9025, 7, 5], - [ - 0, -234, -3035, -4269, -3621, -14076, -3037, -664, -665, -756, -1654, -14077, -1672, -14078, -1942, -14079, - -2234, -2379, -2389, -12348 - ], - [1, 3, 9027], - [0, 9028, 9029, 7, 10], - [0, -1107, -2446, -483, -809, -812, -2387, -2550, -640, -815, -865, -7023, -496, -14080, -2080, -14081], - [ - 0, -652, -1857, -664, -1168, -1344, -1392, -1654, -1682, -1691, -2071, -2210, -932, -1692, -2125, -3729, -1110, - -1671, -2245, -2379, -10418, -1942, -14082, -190, -1250, -8436, -2211, -2410, -3035, -3037, -1243, -1534, -3198, - -3621, -4372, -3041, -1244, -14083, -10419, -1252, -1261, -10420, -14084, -8214, -665, -3625, -3910, -7969, - -2411, -14085, -2234, -14086, -960, -14087, -14088, -4269, -9660 - ], - [1, 3, 9031], - [0, 0, 9032, 9033, 5], - [ - 0, -652, -1681, -664, -834, -1107, -1498, -1654, -2387, -2518, -13998, -932, -8526, -928, -1110, -679, -1646, - -3851, -190, -1863, -1874, -2410, -3035, -9939, -3621, -10755, -1461, -305, -5686, -1028, -14089, -14090, -2411, - -14091, -2234, -971, -14092, -429, -9660, -14093, -5201, -5206, -14094, -14095 - ], - [0, -4165, -14020, -3116, -6784, -3214], - [1, 3, 9035], - [0, 9036, 112, 9037, 4], - [0, -429, -428, -427, -5209], - [0, -3272, -3217, -3214, -2410, -3215, -4132, -932, -5208, -3784], - [1, 3, 9039], - [0, 9040, 9041, 9042, 10], - [0, -14096, -7829], - [0, -4811, -3621, -3037, -14097, -740, -14098, -1650, -1654, -1938, -2388, -2410, -2412], - [0, -4165], - [1, 3, 9044], - [0, 9045, 9046, 9047, 6], - [ - 0, -14099, -14100, -865, -2773, -1521, -1551, -1889, -1907, -7164, -1915, -7165, -10283, -2162, -2232, -2383, - -2286 - ], - [ - 0, -14101, -3136, -8334, -3759, -3037, -14102, -14103, -8336, -427, -428, -620, -932, -940, -1344, -1415, - -14104, -1534, -14105, -1916, -1927, -1942, -14106, -2375, -2410 - ], - [0, -775, -3754, -2162, -1521, -2286, -3209, -3862, -1889, -2410], - [1, 3, 9049], - [0, 9050, 9051, 9052, 8], - [0, -11661, -615, -668, -696, -715, -13789, -10511, -12631, -1575, -1646, -14107, -14108, -2433, -2525, -2546], - [0, -829, -1722, -2125, -2379, -2388, -14109, -2410], - [0, -2414, -2410, -14110, -4159, -5897, -9800, -9069], - [1, 3, 9054], - [0, 9055, 9056, 9057, 8], - [0, -719, -2231], - [0, -461, -1654, -2177], - [0, -9216, -2415, -2416, -1644, -6684, -3214, -3217, -8108, -3184, -6052, -13770, -4795, -8165, -6434, -510, -5867], - [1, 3, 9059], - [0, 0, 9060, 9061, 11], - [0, -461, -2177], - [ - 0, -687, -6454, -9696, -14111, -3217, -6505, -8108, -3214, -3756, -14112, -9234, -6059, -6684, -1644, -7175, - -7176, -7858, -9697, -1838, -3215, -9698, -9216 - ], - [1, 3, 9063], - [0, 9064, 9065, 9066, 9], - [0, -4287, -1046, -1401, -2168, -2182, -2231, -2416, -2510, -10059], - [ - 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -8206, -767, -824, -825, -932, -940, -958, -1344, -1415, - -1424, -1534, -1626, -1771, -1942, -2251, -2334, -2501 - ], - [0, -9216, -2416, -2415, -2501, -7172], - [1, 3, 9068], - [0, 9069, 9070, 9071, 5], - [0, -14113], - [0, -1654, -932, -615, -1405, -966, -958, -968, -943, -974], - [0, -6555, -3262, -7232, -9594], - [1, 3, 9073], - [0, 9074, 0, 9075, 4], - [ - 0, -44, -3040, -3052, -14114, -14115, -14116, -14117, -14118, -14119, -14120, -14121, -432, -14122, -14123, - -14124, -14125, -14126, -14127, -14128, -14129, -14130, -14131, -14132, -14133, -14134, -14135, -14136, -14137, - -14138, -14139, -433, -434, -14140, -14141, -14142, -14143, -14144, -14145, -14146, -14147, -5257, -435, -14148, - -14149, -14150, -14151, -14152, -14153, -14154, -14155, -14156, -14157, -14158, -14159, -14160, -14161, -14162, - -14163, -14164, -14165, -14166, -14167, -14168, -14169, -14170 - ], - [0, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, -3577, -3100], - [1, 3, 9077], - [0, 9078, 9079, 174, 10], - [0, -1107, -1351, -1548, -2177, -2529], - [0, -1452, -1600, -1654, -1766, -2198], - [1, 3, 9081], - [0, 0, 9082, 7, 10], - [0, -4066, -350, -351, -3267, -3037, -589, -1942, -2127, -2387, -2410, -2469], - [1, 3, 9084], - [0, 0, 9085, 9086, 5], - [0, -2581, -50, -13526, -668, -5382, -928, -1111, -1273, -1600, -14171, -1771, -14172, -1948, -3768, -2469], - [0, -3264, -3110, -7723], - [1, 3, 9088], - [0, 9089, 9090, 7, 5], - [ - 0, -4066, -350, -4062, -351, -3561, -4785, -14173, -734, -6860, -928, -14030, -14174, -1431, -1588, -14175, - -1651, -1852, -6568, -1948, -2127, -2132, -6569, -2654, -14176 - ], - [0, -3376, -3037, -3664, -8189, -672, -932, -944, -1942, -2410, -2469], - [1, 3, 9092], - [0, 0, 9093, 9094, 4], - [ - 0, -1788, -1107, -849, -1344, -1471, -1989, -932, -2127, -2334, -757, -756, -1485, -7324, -4916, -14177, -958, - -1488 - ], - [0, -2444, -5112, -3844, -3323, -4865], - [1, 3, 9096], - [0, 9097, 9098, 9099, 4], - [0, -2243, -9649], - [0, -633, -14178, -932, -1405, -1654, -1657, -8276, -12323, -2424], - [0, -2424, -2265], - [1, 3, 9101], - [0, 0, 9102, 9103, 5], - [ - 0, -8843, -11419, -14179, -357, -3037, -458, -2917, -652, -767, -14180, -928, -932, -1023, -1344, -1415, -14181, - -2884, -1730, -1971, -2384, -2410, -2531 - ], - [0, -4213, -1334, -1342, -1961, -2105, -9172, -9173, -2533, -5388], - [1, 3, 9105], - [0, 9106, 9107, 9108, 4], - [0, -4231, -14182, -9596, -1015, -1395, -14183, -5358], - [0, -14184, -5334, -4251, -3037, -652, -1942, -2094, -2100, -2384, -2399, -2410, -2541], - [0, -3272, -7644, -5398, -10280, -1838, -1958, -2083, -2093, -14185, -6233, -6231, -4132, -6408, -10919, -2427], - [1, 3, 9110], - [0, 9111, 14, 9112, 4], - [0, -14186], - [0, -13747, -6555, -6240, -6814, -3960, -14187, -5839, -12411, -9682], - [1, 3, 9114], - [0, 9115, 9116, 9117, 5], - [0, -4231, -7700, -5356], - [0, -4251, -3037, -652, -1618, -10922, -10923, -1942, -2094, -2100, -2384, -2399, -2410, -2541], - [ - 0, -9590, -14188, -2444, -3590, -2093, -14185, -2083, -10918, -9589, -14189, -14190, -1703, -6784, -1599, -3264, - -6597, -10919, -3272, -3966, -14191, -2487 - ], - [1, 3, 9119], - [0, 0, 222, 9120, 5], - [0, -13875, -11002, -7727, -2430, -1847, -11845, -7421, -2440, -5550, -6836], - [1, 3, 9122], - [0, 9123, 0, 9124, 8], - [0, -7304, -1081, -14192, -14193, -8578, -2062], - [0, -5408, -2432, -9506, -14194, -5409, -5827, -7347], - [1, 3, 9126], - [0, 9127, 9128, 9129, 6], - [0, -14195, -623, -668, -14196, -2177, -8418, -728, -6848, -1514, -1394], - [0, -2541, -519, -9982, -2269, -686, -14197], - [0, -1764, -10674, -11693, -9258, -14198, -7440, -7144, -687, -3551, -5897, -9318], - [1, 3, 9131], - [0, 0, 0, 9132, 4], - [ - 0, -9171, -2435, -14199, -14200, -14201, -14202, -14203, -14204, -14205, -14206, -14207, -14208, -14209, -14210, - -14211, -14212, -14213, -14214 - ], - [1, 3, 9134], - [0, 9135, 9136, 9137, 10], - [0, -1983, -1977], - [0, -515, -1788, -2568, -461, -1654, -932, -5834], - [0, -6747, -2435, -10433], - [1, 3, 9139], - [0, 0, 9140, 9141, 5], - [0, -739, -1654, -2198], - [0, -2435, -8396], - [1, 3, 9143], - [0, 9144, 9145, 48, 10], - [0, -1543, -1641, -2168], - [ - 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -767, -824, -825, -932, -940, -958, -1041, -1344, -1415, - -1534, -1623, -8913, -1771, -1942, -2251, -2501 - ], - [1, 3, 9147], - [0, 9148, 9149, 9150, 5], - [0, -6614, -9730], - [0, -509, -633, -652, -1654, -1939, -14215, -14216, -2416], - [0, -6984, -3215, -9171, -2435, -1838, -5101, -2265, -1985, -6231], - [1, 3, 9152], - [0, 9153, 9154, 9155, 9], - [0, -1069, -14217, -1641, -1983, -2400, -2426, -14218], - [ - 0, -2832, -14219, -7453, -14220, -8317, -14221, -3713, -3037, -14222, -4966, -14223, -3715, -8200, -9581, -3664, - -649, -767, -1351, -2987, -8065, -1971, -3727, -14224, -2325, -2386, -7457, -2410, -2469 - ], - [0, -2439, -1334, -14225, -9172, -9173, -2105, -1342, -2426, -4213], - [1, 3, 9157], - [0, 9158, 9159, 9160, 4], - [0, -10383], - [0, -1849], - [0, -2440, -11845, -13874, -10383, -11070, -7421, -7420, -1847, -6845, -3592, -5558, -3591, -14226], - [1, 3, 9162], - [0, 9163, 9164, 9165, 6], - [0, -1582, -2359], - [0, -509, -1654, -1939, -2105, -2177, -14227], - [0, -9733, -4865, -14228, -1819, -1838, -3215, -14229, -14230, -14231, -14232, -2440, -14233, -2442, -9318], - [1, 3, 9167], - [0, 0, 9168, 9169, 4], - [0, -756, -1405, -6186, -1991], - [0, -9791, -5835, -4112, -2443], - [1, 3, 9171], - [0, 9172, 9173, 260, 5], - [0, -1370, -7391, -14234, -14235, -7400], - [0, -468, -753, -14236, -1797, -1798, -2151, -2155, -2322], - [1, 3, 9175], - [0, 0, 183, 260, 8], - [1, 3, 9177], - [0, 0, 9178, 9179, 4], - [ - 0, -32, -86, -3307, -190, -3563, -719, -932, -940, -967, -1110, -1344, -1415, -1534, -2884, -1771, -1942, - -11013, -11014, -2251, -2410, -2411 - ], - [0, -2446, -7230, -11582, -14237], - [1, 3, 9181], - [0, 9182, 9183, 9184, 10], - [0, -8609, -834, -1496, -5037], - [0, -14238, -985, -11747, -13279], - [0, -507, -14239, -4043, -4045, -4004], - [1, 3, 9186], - [0, 0, 9187, 9188, 5], - [0, -2319, -1452], - [0, -2435, -3926, -7440, -7144, -5574], - [1, 3, 9190], - [0, 9191, 9192, 9193, 5], - [0, -7247, -14240, -5504, -10482], - [0, -7465, -664, -6774, -720, -796, -1344, -1405, -1650, -1654, -9075, -2125, -2174, -2210], - [0, -14241, -5890, -12665, -5889, -6908, -5887], - [1, 3, 9195], - [0, 0, 9196, 9197, 8], - [0, -4298, -4300], - [0, -1764, -5897, -6444, -3926], - [1, 3, 9199], - [0, 0, 9200, 9201, 4], - [0, -21, -23, -40, -43, -528, -535, -932, -934, -958, -1654, -1771, -1788, -2125, -2127, -2128, -11290, -2416], - [0, -2451, -3926, -5874, -8472, -7723, -14242, -14243, -507], - [1, 3, 9203], - [0, 9204, 9205, 9206, 11], - [0, -14244, -14245, -14246], - [ - 0, -3037, -4837, -5589, -3899, -14247, -4838, -786, -14248, -1449, -2410, -2466, -2469, -14249, -2476, -2483, - -14250, -14251, -14252, -14253 - ], - [0, -3160, -2476, -3944, -3162, -3100, -3095, -3098], - [1, 3, 9208], - [0, 0, 9209, 9210, 5], - [0, -1654, -932, -1405, -589, -2293, -585, -966, -958, -968, -943, -963, -974], - [0, -1334, -4616, -2453], - [1, 3, 9212], - [0, 9213, 9214, 7, 4], - [0, -2456], - [0, -2319, -1754], - [1, 3, 9216], - [0, 9217, 9218, 7, 6], - [ - 0, -5193, -928, -679, -1069, -14254, -14255, -14256, -14257, -14258, -14259, -14260, -14261, -14262, -14263, - -14264, -14265, -14266, -14267, -14268, -14269, -14270, -14271, -14272, -14273, -14274, -14275 - ], - [ - 0, -1681, -469, -502, -864, -985, -1371, -1816, -1805, -2466, -651, -668, -812, -999, -1623, -1971, -12508, - -13969, -2518, -669, -865, -1001, -1400, -2125, -2177, -2240, -2324, -2469, -680, -708, -1004, -1047, -1658, - -2379, -807, -1077, -1098, -1981, -1999, -2694, -367, -3851, -4966, -14276, -10697, -11705, -1645, -1878, -2369, - -11697, -12324, -481, -12971, -695, -1424, -1641, -1729, -2269, -2410, -3136, -3037, -512, -929, -14277, -8874, - -7982, -14278, -3269, -3198, -14279, -10755, -480, -511, -14280, -14281, -14282, -3199, -9941, -13839, -5977, - -3124, -12274, -11855, -3637, -14283, -13376, -10519, -14284, -4105, -3048, -11328, -1025, -14285, -1767, -7162, - -2991, -14286, -2992, -8566, -5363, -2946, -14287, -3713, -4201, -14288, -13184, -14289, -14290, -9750, -10046, - -14291, -5124, -14292, -14293, -2591, -11857, -14294, -3234, -14295, -14296, -14297, -11702, -14298, -14299, - -14300, -14301, -14302, -14303, -14304, -14305, -14306 - ], - [1, 3, 9220], - [0, 9221, 0, 9222, 4], - [0, -14307, -508, -13486], - [0, -6324, -8980, -14308, -12254, -12442, -3586], - [1, 3, 9224], - [0, 0, 9225, 7, 4], - [0, -1654, -1405, -2293], - [1, 3, 9227], - [0, 0, 9228, 9229, 4], - [ - 0, -23, -40, -86, -3307, -3326, -539, -664, -671, -708, -757, -14309, -784, -825, -932, -934, -958, -1344, - -1471, -1474, -1475, -3568, -1482, -1483, -1486, -1534, -1654, -1771, -1889, -1891, -14310, -1906, -1927, -7033, - -1978, -2127, -2281, -2282, -2284, -2416 - ], - [0, -6527, -14311, -2459, -14312, -3264, -775, -3214, -3577, -3578], - [1, 3, 9231], - [0, 9232, 9233, 9234, 5], - [0, -14313, -702, -2103, -14314], - [0, -1788, -1654, -932, -1001, -13729, -2062, -937, -966], - [0, -9614, -7422, -6656, -7421, -9330, -1847], - [1, 3, 9236], - [0, 9237, 9238, 9239, 4], - [0, -599, -2347], - [0, -2322, -2463], - [0, -2460, -7419, -5845, -640, -5827], - [1, 3, 9241], - [0, 9242, 9243, 9244, 11], - [0, -14315, -9092, -1119, -1351, -14316, -14317, -1759, -14318, -14319, -13729, -14320, -14321, -2460, -14322], - [0, -932, -937, -1001, -1654, -1788, -2062, -2125, -2210], - [0, -1168, -14323, -2460, -6656, -8801, -1076, -8027], - [1, 3, 9246], - [0, 9247, 9248, 9249, 9], - [0, -2460, -2347], - [0, -1243, -2322, -2462], - [0, -2460, -1168, -7419, -9975, -5827, -2265, -5554, -14324], - [1, 3, 9251], - [0, 185, 0, 9252, 4], - [0, -2460, -9455, -9466, -1168], - [1, 3, 9254], - [0, 9255, 9256, 9257, 5], - [0, -14325, -6324, -14326, -1109, -9977, -8104, -14327, -14328], - [0, -633, -1405, -9088, -1812, -14329, -12014, -2320, -2322, -2568], - [0, -9614, -5092, -9613, -14330, -834, -7460, -4865], - [1, 3, 9259], - [0, 9260, 9261, 261, 6], - [0, -4787, -2127, -928, -1889, -1864, -2654], - [ - 0, -2531, -653, -11071, -754, -990, -1651, -5042, -1805, -2162, -2213, -1852, -865, -5036, -1699, -1839, -2334, - -729, -12601, -679, -2923, -3027, -14331, -14332, -1863, -769, -929, -14333, -3751, -1588, -25, -4371, -866, - -989, -3572, -14334, -1906, -14335, -14336, -11751, -14337, -13397, -10046, -742, -4785, -1907, -7160, -4066, - -3195, -5322, -2134, -350, -6410, -7897, -3180, -14338, -7151 - ], - [1, 3, 9263], - [0, 9264, 9265, 9266, 4], - [0, -14341, -1026, -1077, -14342, -14343], - [0, -3617, -3048, -3037, -1004, -2391, -2410, -2466], - [ - 0, -2466, -3690, -14344, -14345, -14346, -14347, -1004, -14348, -3844, -14349, -9843, -14350, -14351, -3862, - -3816, -2146, -3445, -14352, -14353 - ], - [1, 3, 9268], - [0, 9269, 9270, 9271, 4], - [ - 0, -2476, -2466, -4245, -3788, -14354, -3726, -14244, -4817, -3559, -14355, -3558, -14356, -14357, -3661, -4837, - -14358, -4229, -14359 - ], - [ - 0, -1816, -2213, -812, -999, -1826, -3548, -1699, -2125, -2127, -2177, -2469, -928, -1871, -1966, -3728, -2653, - -5627, -2648, -679, -1077, -1098, -1646, -1942, -1977, -1582, -1639, -1863, -2654, -2410, -3037, -769, -1125, - -1534, -1600, -3198, -6447, -14360, -3801, -3735, -1851, -3048, -5686, -1570, -14361, -3246, -4036, -3425, - -1603, -2132, -13397, -7080, -1601, -4062, -13593, -14362, -14363, -4066, -14364, -1602, -6483, -14365, -3561, - -9458, -350, -1926, -14366, -3662, -14367, -14368, -740, -351, -14369, -14370, -14371 - ], - [0, -2466, -2476, -2468], - [1, 3, 9273], - [0, 9274, 9275, 9276, 8], - [ - 0, -5042, -2466, -1852, -6570, -3535, -1864, -2354, -2654, -6488, -1002, -14372, -1588, -13385, -13376, -13388, - -14373, -14335, -14374, -14375, -14376 - ], - [ - 0, -2531, -653, -1640, -14377, -1449, -7142, -1966, -13380, -1278, -14378, -462, -3037, -4647, -426, -14334, - -3735, -14379, -8523, -14380, -5038, -357, -4048, -3180, -3626, -4047 - ], - [0, -2466, -2469, -4004, -1415], - [1, 3, 9278], - [0, 9279, 9280, 9281, 5], - [0, -668, -1548, -1376, -1646, -2528, -1365, -1575, -2269, -556, -14381], - [ - 0, -2541, -1168, -525, -1654, -1666, -2198, -14382, -2105, -615, -527, -1174, -1197, -14383, -14384, -1182, - -14385, -559 - ], - [0, -3690, -687, -12694, -5550, -4039, -3161, -3994, -9668, -3957, -719, -13831, -1965, -1376], - [1, 3, 9283], - [0, 9284, 0, 9285, 4], - [0, -834, -14386, -1107], - [0, -3634, -4679, -4004, -14387], - [1, 3, 9287], - [0, 9288, 9289, 9290, 6], - [ - 0, -2359, -1107, -1640, -2059, -9498, -668, -1526, -2555, -14388, -2177, -2536, -674, -2436, -719, -1645, -1600, - -14389, -1315, -14390, -14092 - ], - [ - 0, -1344, -1654, -2379, -1942, -3628, -2410, -3036, -6325, -3037, -14391, -14392, -1771, -3621, -8497, -1952, - -3199, -11343, -14393, -86, -14394, -8566, -2174, -3661, -2234, -5361, -3307 - ], - [0, -11859, -2472, -5195], - [1, 3, 9292], - [0, 0, 37, 7, 4], - [1, 3, 9294], - [0, 9295, 9296, 7, 4], - [0, -479, -702, -994, -1022, -1107, -1351, -1391, -2231, -2410, -2460, -2536, -2550], - [ - 0, -9478, -14395, -9457, -3036, -14396, -8566, -3621, -3037, -12993, -9476, -7837, -3046, -11343, -3041, -427, - -428, -932, -1654, -2125 - ], - [1, 3, 9298], - [0, 0, 9299, 7, 9], - [0, -1654, -1650, -2501, -2410, -3037, -2503, -3621, -14397, -748, -262], - [1, 3, 9301], - [0, 9302, 0, 9303, 6], - [0, -14244, -14398, -9631, -7438, -3250], - [0, -2476], - [1, 3, 9305], - [0, 0, 9306, 9307, 5], - [ - 0, -23, -26, -33, -3077, -40, -3035, -3621, -3037, -428, -532, -534, -7890, -664, -778, -932, -14399, -1654, - -2080, -2125, -2127, -2128, -2138, -2341, -2376, -2410, -2415, -2476, -2481, -2485, -2816, -2486, -2501, -2503 - ], - [0, -2476, -7711, -525, -2410], - [1, 3, 9309], - [0, 9310, 9311, 7, 9], - [0, -812, -982, -983, -986, -8141, -2177], - [ - 0, -23, -32, -3332, -14400, -6484, -3244, -190, -3198, -426, -3037, -3199, -427, -428, -3664, -3665, -932, - -8230, -961, -965, -8287, -967, -978, -7356, -1942, -2379, -2892, -2410, -2466, -2469 - ], - [1, 3, 9313], - [0, 0, 9314, 9315, 5], - [0, -639, -1415, -2476], - [0, -2476, -12517, -11492], - [1, 3, 9317], - [0, 9318, 9319, 9320, 6], - [0, -14401, -14357, -14402], - [0, -14403], - [0, -1348, -9780, -14404, -3862, -2476, -3527], - [1, 3, 9322], - [0, 9323, 9324, 7, 4], - [0, -668, -1284, -12982], - [ - 0, -23, -40, -14405, -426, -12643, -3136, -4647, -14406, -14407, -534, -14408, -740, -778, -1041, -1331, -1415, - -1449, -1534, -14409, -1623, -1643, -7034, -7846, -1908, -1942, -1974, -14410, -2231, -2275, -2286, -2287, - -2289, -2375, -2376, -2410, -2437, -2476, -2480, -2501, -2503, -2505, -2508, -8160 - ], - [1, 3, 9326], - [0, 0, 9327, 9328, 4], - [0, -3136, -3037, -1415, -2080, -2127, -2375, -2410, -2476, -2477], - [0, -2476, -2410, -11313], - [1, 3, 9330], - [0, 9331, 9332, 7, 5], - [ - 0, -3194, -14411, -14357, -14412, -679, -1460, -14378, -1588, -1651, -14413, -1852, -1864, -6569, -2654, -2981, - -14414, -2548 - ], - [ - 0, -47, -14415, -3983, -350, -351, -3561, -3266, -12959, -14416, -8523, -8200, -4837, -7438, -14417, -3250, - -4838, -10363, -14418, -731, -865, -14419, -7595, -1278, -1719, -14420, -2851, -2125, -2127, -2142, -2892, - -2391, -2466, -2476 - ], - [1, 3, 9334], - [0, 9335, 9336, 7, 9], - [0, -1284, -1543], - [0, -527, -533, -549, -740, -1415], - [1, 3, 9338], - [0, 9339, 0, 9340, 4], - [0, -14421, -1297], - [0, -2476, -3116], - [1, 3, 9342], - [0, 262, 9343, 7, 8], - [ - 0, -2476, -1415, -668, -999, -6828, -932, -2127, -2177, -1004, -2501, -910, -1077, -767, -1978, -2468, -533, - -778, -2410, -2481, -23, -3037, -534, -14422, -2484, -40, -7438, -2082, -6429, -2140, -2253, -3561, -14399, - -2504, -2506, -350, -740, -351 - ], - [1, 3, 9345], - [0, 9346, 0, 9347, 5], - [0, -14423], - [0, -2444, -1819, -14424, -1076, -2487, -14425], - [1, 3, 9349], - [0, 9350, 9351, 7, 4], - [0, -8566, -7955, -8891, -1645], - [0, -3136, -3037, -1107, -1415, -1623, -2125, -2375, -2410], - [1, 3, 9353], - [0, 220, 9354, 9355, 4], - [0, -86, -3307, -633, -720, -796, -1344, -1415, -2416], - [0, -2489, -4038, -2006, -1384], - [1, 3, 9357], - [0, 9358, 0, 9359, 8], - [0, -14426, -1646], - [0, -2444, -3590, -1076, -6999], - [1, 3, 9361], - [0, 9362, 9363, 9364, 6], - [0, -9501, -633, -679, -6369, -14427, -2347, -2546], - [0, -627, -1650, -2239, -2322, -2416, -14428], - [0, -633, -10362, -2490, -4161, -7641, -4865], - [1, 3, 9366], - [0, 9367, 123, 9368, 4], - [0, -13012, -10837, -510, -14429, -13017, -14430, -13025, -13026, -14431, -14432], - [0, -13039, -1818, -1691, -6321, -2071, -1671, -14433, -2492, -2157, -13042], - [1, 3, 9370], - [0, 9371, 9372, 9373, 8], - [0, -501, -510, -1548, -1650, -1980, -2105, -14434], - [ - 0, -14435, -664, -665, -714, -7743, -1004, -1022, -1168, -14436, -1197, -1212, -1231, -1296, -1336, -13334, - -1405, -1654, -14437, -1722, -14438, -2150, -14439, -14440, -14441, -2425, -2446, -2550 - ], - [0, -3634, -4864, -11468, -12350, -11467], - [1, 3, 9375], - [0, 9376, 9377, 9378, 4], - [ - 0, -14442, -14443, -14444, -14445, -14446, -14447, -14448, -14449, -14450, -14451, -14452, -14453, -14454, - -14455, -14456, -14457, -14458 - ], - [ - 0, -14459, -1415, -932, -14460, -4271, -2375, -1942, -589, -2410, -3136, -1422, -3268, -14461, -958, -8378, - -940, -14462, -428, -14463, -427 - ], - [0, -14464, -7485, -3816], - [1, 3, 9380], - [0, 9381, 194, 9382, 8], - [0, -14465, -14466, -597, -636, -14467, -14468, -14469, -14470, -14471, -14472, -2550], - [0, -2494, -3673, -687, -14473, -4270], - [1, 3, 9384], - [0, 9385, 9386, 7, 11], - [ - 0, -8231, -426, -4049, -14474, -14475, -14476, -461, -14477, -635, -14478, -909, -14335, -982, -997, -8610, - -1119, -11677, -8562, -1641, -9548, -2168, -2321, -2335, -12982, -2510 - ], - [ - 0, -23, -41, -50, -13541, -14479, -8608, -4035, -3136, -3713, -14480, -3037, -14481, -14482, -534, -14483, - -14484, -711, -753, -774, -778, -807, -922, -3068, -932, -6929, -1041, -1067, -1110, -14485, -1322, -1344, - -1405, -1415, -8950, -1417, -1418, -1421, -1424, -1455, -1460, -1521, -1522, -1534, -1548, -1549, -1623, -14486, - -1643, -8913, -1733, -1788, -1806, -8436, -1942, -1950, -1974, -9720, -2000, -2006, -2019, -14487, -2090, -4242, - -2095, -2098, -2101, -2125, -5508, -2205, -2269, -2275, -2334, -2344, -2354, -2362, -2376, -2410, -2427, -2437, - -14488, -14489, -2503, -14490, -2549 - ], - [1, 3, 9388], - [0, 9389, 9390, 9391, 10], - [0, -2531, -2213, -461, -1810, -811, -719, -462, -1863, -1321, -930, -13410], - [ - 0, -824, -664, -1168, -1415, -1652, -932, -1111, -1940, -753, -784, -1889, -2501, -1044, -1978, -682, -778, - -1174, -1653, -2437, -23, -667, -2503, -518, -528, -534, -1566, -2275, -44, -1565, -14491, -1908, -9422, -40, - -14492, -2505, -41, -540, -969, -14493, -2335, -14494, -14495, -38, -33, -3376 - ], - [0, -2501, -4161, -14496, -3209, -8799, -9845, -14497, -12942, -14498, -7067], - [1, 3, 9393], - [0, 9394, 9395, 9396, 10], - [0, -914, -2068, -713, -719, -1381, -769, -1363, -2508, -14499, -5594, -11676, -13410, -14500], - [0, -14501], - [0, -2501, -687, -3108, -3551, -7882, -3578], - [1, 3, 9398], - [0, 9399, 9400, 9401, 9], - [0, -1623, -713, -1641, -1800, -1997, -2168], - [ - 0, -1501, -1313, -1415, -999, -1344, -774, -932, -3122, -729, -825, -1004, -1030, -1110, -2501, -1942, -767, - -823, -2293, -21, -190, -204, -533, -2410, -23, -3037, -1041, -1534, -1771, -1045, -5039, -3617, -86, -965, - -3560, -14502, -2251, -40, -4835, -3713, -14503, -959, -960, -958, -6929, -978, -940, -967, -3748, -3307 - ], - [0, -2501, -5401, -3113], - [1, 3, 9403], - [0, 9404, 9405, 7, 9], - [ - 0, -2531, -1805, -12860, -13318, -1004, -13074, -679, -4204, -713, -11121, -3727, -724, -1119, -2186, -2168, - -14504, -13386, -14505, -3617, -14506, -14507, -14508, -14509, -1338, -2504, -731, -12962, -14510 - ], - [ - 0, -1313, -1415, -1521, -461, -999, -1344, -14511, -1623, -774, -932, -1610, -2125, -729, -753, -2501, -1942, - -1978, -2293, -21, -533, -778, -1336, -2410, -23, -3037, -1522, -1534, -1771, -2503, -534, -2275, -2230, -4356, - -2508, -44, -86, -965, -2062, -2817, -3560, -2251, -40, -4835, -8477, -2411, -3732, -4035, -959, -960, -1331, - -5474, -32, -14512, -7716, -958, -6929, -940, -1419, -38, -3307, -5585 - ], - [1, 3, 9407], - [0, 9408, 9409, 9410, 5], - [0, -2269, -1320, -14509], - [0, -1788, -1654, -2210, -932, -1004, -2501, -1942, -2293, -967, -2504], - [0, -2501, -6211, -12517, -3551, -14513, -14514, -5401, -1004], - [1, 3, 9412], - [0, 9413, 9414, 7, 5], - [0, -2321, -2510], - [ - 0, -366, -3037, -3046, -14515, -3750, -748, -824, -932, -14516, -948, -1041, -1344, -1534, -1626, -1939, -1942, - -14517, -2006, -2275, -2387, -2410, -2469, -2501, -2508 - ], - [1, 3, 9416], - [0, 9417, 9418, 9419, 5], - [0, -1055, -9087, -3415], - [0, -1344, -2387, -14518, -2501, -1942, -2410, -14519, -426], - [0, -2501, -1631], - [1, 3, 9421], - [0, 0, 9422, 9423, 5], - [0, -664, -932, -958, -1654, -1658, -1705, -2501], - [0, -2501, -5757, -3966, -4161, -14520], - [1, 3, 9425], - [0, 0, 9426, 9427, 5], - [ - 0, -1415, -932, -1110, -2501, -1405, -1942, -756, -190, -2231, -2410, -3136, -965, -3560, -959, -960, -12916, - -958, -6929, -978, -940, -967, -3748 - ], - [0, -2501, -2231], - [1, 3, 9429], - [0, 9430, 0, 9431, 4], - [0, -1119, -769, -2359, -1860], - [0, -9711, -11891], - [1, 3, 9433], - [0, 9434, 9435, 9436, 8], - [0, -642, -812, -922, -14521, -13490, -14522], - [0, -641, -1168, -1224, -1453, -1452, -2322], - [0, -2512, -6224, -9005, -14523, -14524, -5737, -14525, -8841, -3844, -3323], - [1, 3, 9438], - [0, 9439, 9440, 9441, 5], - [ - 0, -14526, -14527, -14528, -14529, -14530, -14531, -14532, -14533, -14534, -14535, -14536, -14537, -812, -929, - -14538, -14539, -14540, -14541, -14542, -14543, -14544, -1640, -1801, -14545, -1976, -10570, -14546, -1997, - -10576, -13357, -14547, -13729, -14548, -14549, -14550, -14551, -14552, -14553, -14554 - ], - [ - 0, -23, -32, -3367, -40, -14555, -468, -14556, -10575, -14557, -571, -14558, -640, -14559, -771, -14560, -932, - -943, -958, -965, -968, -1045, -14561, -1834, -14562, -1985, -2151, -2174, -2187, -6390, -8573, -2320, -2322, - -2335, -6391, -2501, -2503, -14563 - ], - [0, -14564, -14565, -867, -14566, -14567, -14568, -14569, -9292, -14570, -14571, -14572, -6471, -14573, -2513], - [1, 3, 9443], - [0, 9444, 9445, 9446, 10], - [0, -596, -1696], - [0, -11836, -2319], - [0, -3708, -14574, -14575], - [1, 3, 9448], - [0, 9449, 9450, 7, 5], - [0, -1004, -1758, -2424], - [0, -710], - [1, 3, 9452], - [0, 0, 9453, 7, 4], - [ - 0, -664, -1471, -1654, -932, -2127, -1942, -1474, -1482, -516, -1962, -14576, -1475, -1477, -1487, -1479, -5993, - -8365 - ], - [1, 3, 9455], - [0, 0, 9456, 9457, 6], - [ - 0, -2493, -1107, -14577, -3691, -1460, -14578, -1452, -1650, -14579, -1813, -589, -14580, -2416, -633, -1963, - -14439 - ], - [0, -14581, -14582, -6306, -1961, -5923, -6307, -6308, -2517, -510, -6235, -11153], - [1, 3, 9459], - [0, 9460, 29, 7, 5], - [0, -14583], - [1, 3, 9462], - [0, 0, 9463, 9464, 10], - [0, -2778, -1446, -1654, -1666, -14584, -14585], - [0, -7084, -11722], - [1, 3, 9466], - [0, 9467, 9468, 9469, 8], - [0, -14586, -5758, -510, -1399, -14587, -14588, -2062, -7967, -2249, -8879, -2522], - [0, -21, -23, -40, -14589, -3037, -14590, -509, -14591, -932, -14592, -1415, -2125, -2240, -13361, -2347, -14593], - [0, -2520, -3444, -5545, -11989, -8948, -648, -1867, -1577, -3674, -4055, -5827], - [1, 3, 9471], - [0, 9472, 9473, 9474, 6], - [0, -14594, -1793, -8879, -2522], - [0, -14595, -14596, -664, -932, -966, -1654, -2125, -3708], - [0, -2520, -14597, -14598, -14599], - [1, 3, 9476], - [0, 9477, 9478, 9479, 4], - [0, -14587, -2062, -8879], - [0, -3037, -509, -526, -558, -821, -932, -14589, -1654, -1788, -2125, -14593], - [0, -2520, -3443, -14600], - [1, 3, 9481], - [0, 9482, 9483, 9484, 4], - [0, -14601, -1107, -1548, -14602, -2347, -14603], - [0, -664, -1077, -1405], - [0, -622, -5897, -4633, -9405, -11729, -3015], - [1, 3, 9486], - [0, 0, 88, 9487, 11], - [0, -14604, -14605, -6722, -14606, -14607, -14608, -14609, -5554, -10781, -2524, -12439, -4001], - [1, 3, 9489], - [0, 0, 31, 9490, 8], - [0, -10781, -4001, -11315, -3276, -6787], - [1, 3, 9492], - [0, 9493, 9494, 9495, 9], - [0, -7141, -1948, -4701, -2510, -14610], - [0, -3037, -3046], - [0, -14611, -14612, -2501, -14613, -6491, -14614, -14615, -14616], - [1, 3, 9497], - [0, 9498, 9499, 9500, 4], - [0, -482, -2267, -2269], - [0, -519, -668, -756, -3607, -1788, -2384, -2541], - [ - 0, -4001, -14604, -2525, -14617, -14618, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -2265, -3975, - -5559, -5538, -5549, -5513, -5550, -2547, -1573, -5545, -3958, -5554 - ], - [1, 3, 9502], - [0, 9503, 29, 9504, 6], - [0, -8143, -2202], - [0, -14619, -14620], - [1, 3, 9506], - [0, 0, 9507, 9508, 4], - [0, -589, -642, -932, -940, -967, -1110, -1654, -1788, -1942, -13490], - [0, -14621, -14622, -14525, -14623, -14624, -3509], - [1, 3, 9510], - [0, 9511, 9512, 9513, 9], - [0, -7334, -615, -668, -674, -812, -14625, -1400, -1403, -1792, -3633, -14626, -14627], - [0, -756, -1405, -1654, -1657, -6810, -2125, -2210, -2250], - [0, -3690, -674, -14628, -6596, -7534, -3578], - [1, 3, 9515], - [0, 9516, 9517, 9518, 8], - [0, -1109, -14629, -14630, -2546], - [0, -1065, -1939, -2320, -2322], - [0, -2533, -1334, -2540, -3120, -633], - [1, 3, 9520], - [0, 9521, 9522, 9523, 6], - [0, -8696, -14631, -14632, -10781, -14633, -14634, -14635], - [ - 0, -7746, -461, -1449, -1654, -2210, -932, -14636, -600, -879, -719, -2410, -3037, -14637, -14638, -957, -7894, - -14639 - ], - [0, -11592, -11593, -2534, -14640, -8787, -8713, -788, -14641, -14642, -14643, -10780, -9133], - [1, 3, 9525], - [0, 9526, 9527, 9528, 4], - [0, -2165], - [ - 0, -527, -534, -558, -11550, -632, -14644, -14645, -13841, -708, -756, -767, -932, -14646, -1405, -1412, -1415, - -1417, -14647, -1753, -1771, -1955, -2410, -14648, -2490, -2501 - ], - [ - 0, -14649, -6597, -3756, -4182, -4055, -14650, -14651, -14652, -14653, -14654, -8531, -8532, -2536, -2537, - -6408, -8530, -14655, -9307, -5845, -14656, -14657, -14658, -1838, -3215, -6747 - ], - [1, 3, 9530], - [0, 9531, 9532, 9533, 8], - [0, -2165, -2538], - [0, -756], - [0, -6597, -4055], - [1, 3, 9535], - [0, 9536, 219, 7, 4], - [0, -1309, -1435, -14659], - [1, 3, 9538], - [0, 0, 192, 9539, 4], - [0, -6597, -2538], - [1, 3, 9541], - [0, 0, 9542, 9543, 4], - [0, -1415, -2555, -14660, -932, -1753, -14661, -1942, -1100, -1771, -953, -7055, -940, -967], - [0, -5387, -5092, -6597, -3215, -3214, -14662, -14663], - [1, 3, 9545], - [0, 0, 0, 9546, 4], - [0, -2533, -5998], - [1, 3, 9548], - [0, 9549, 9550, 9551, 4], - [ - 0, -1630, -506, -932, -1111, -1110, -1942, -1099, -2400, -1639, -755, -8275, -1849, -1101, -965, -11813, -950, - -2411, -14664, -968, -978, -5918, -940, -9869, -8339, -967, -3686, -3748, -428, -14014, -9486, -8230 - ], - [0, -1763, -519, -999, -1344, -815, -5917, -1534, -3330, -86, -6630, -4036, -1768, -1945, -3307, -7357], - [ - 0, -5732, -687, -2541, -8193, -8196, -8197, -707, -8169, -5553, -7148, -8170, -1452, -8171, -932, -5874, -8172, - -2250, -8173, -7440, -7144, -8174, -7840, -8175, -5493, -3214, -2410 - ], - [1, 3, 9553], - [0, 0, 9554, 9555, 4], - [0, -4733, -920, -14665, -1654], - [0, -2542, -6597], - [1, 3, 9557], - [0, 9558, 9559, 9560, 10], - [0, -3345], - [0, -21, -23, -14666, -38, -40, -14667, -535, -14668, -14669, -633, -932, -1412, -1451, -1788, -14670], - [0, -5569, -5570, -14671, -4112], - [1, 3, 9562], - [0, 9563, 9564, 9565, 4], - [0, -719, -2858], - [0, -1788, -812, -1654, -932, -756, -2416, -633], - [0, -8472, -2544, -7723, -14242, -3962, -7107, -5559, -6422, -7724, -2451, -3264, -6138, -14672], - [1, 3, 9567], - [0, 0, 9568, 9569, 4], - [0, -14673, -469, -1872, -2153, -2535], - [0, -14674, -14675, -14676, -14677, -14678, -4125, -14679, -3552], - [1, 3, 9571], - [0, 0, 31, 9572, 10], - [0, -1015, -1631, -6792, -6696, -7208, -5839], - [1, 3, 9574], - [0, 0, 9575, 9576, 5], - [ - 0, -3983, -3035, -3198, -14680, -3617, -14681, -3036, -4647, -3621, -3037, -14682, -3046, -4204, -427, -428, - -664, -767, -821, -932, -960, -1004, -11616, -1107, -1449, -1654, -1689, -1741, -1788, -2233, -2234, -2376, - -2410, -2443, -2501, -2503, -2531, -14683 - ], - [0, -687, -3958, -4000, -11564, -5550, -8905, -3770, -14684, -3974, -3975, -5561, -13861, -2547], - [1, 3, 9578], - [0, 0, 9579, 9580, 8], - [ - 0, -1415, -2387, -932, -2127, -1942, -190, -533, -1023, -2410, -23, -3136, -3037, -1426, -40, -2411, -3326, - -3561, -940, -3267, -14685, -3412 - ], - [0, -14686, -3215, -3270], - [1, 3, 9582], - [0, 9583, 9584, 9585, 10], - [0, -1107, -503], - [0, -589, -6398, -1414], - [0, -2548, -4055, -14687, -14688], - [1, 3, 9587], - [0, 9588, 9589, 235, 5], - [0, -701, -10415, -5505, -2267, -10751, -2551], - [ - 0, -32, -42, -3035, -3621, -3037, -427, -14689, -652, -664, -668, -10480, -767, -769, -932, -967, -1166, -11831, - -1654, -2125, -2410, -2518, -14690 - ], - [1, 3, 9591], - [0, 0, 9592, 9593, 4], - [ - 0, -32, -42, -3035, -3621, -3037, -427, -428, -652, -664, -767, -932, -1166, -1654, -1978, -2125, -2184, -2253, - -2410 - ], - [0, -6748, -3215, -2550, -3957, -687, -6747, -5829, -4377, -6748], - [1, 3, 9595], - [0, 9596, 9597, 7, 4], - [ - 0, -14691, -567, -651, -656, -668, -10506, -719, -14692, -812, -10659, -834, -1105, -1371, -1384, -5894, -1526, - -14693, -1645, -1650, -1728, -1733, -1796, -7772, -2059, -14694, -2105, -14695, -2125, -14696, -2177, -2270, - -2323, -2325, -2441, -10523 - ], - [ - 0, -527, -528, -533, -534, -6085, -555, -559, -14697, -14698, -560, -562, -572, -932, -14699, -7748, -14700, - -951, -14701, -956, -14702, -969, -1059, -1168, -1174, -1232, -1237, -1266, -1268, -1415, -1455, -1661, -2330, - -2501 - ], - [1, 3, 9599], - [0, 0, 0, 9600, 8], - [0, -2552, -2554, -3590, -5550, -1764, -13499], - [1, 3, 9602], - [0, 9603, 9604, 9605, 11], - [0, -5822, -11280], - [0, -599], - [0, -2432, -5408, -5827, -5409, -6656], - [1, 3, 9607], - [0, 9608, 9609, 263, 5], - [ - 0, -14703, -14704, -14705, -14706, -14707, -506, -668, -719, -812, -999, -14708, -1111, -14709, -8802, -1549, - -14710, -14711, -2177, -2218, -2430, -14712 - ], - [ - 0, -3198, -3164, -3037, -3199, -14713, -652, -757, -932, -14714, -1077, -1446, -1942, -1945, -2125, -2210, - -14715, -2269, -2410, -9011, -9010 - ], - [1, 3, 9611], - [0, 9612, 9613, 263, 6], - [0, -668, -812, -999, -2177, -1646, -1549, -9444, -2205, -2343, -1456, -14711, -1514, -14716, -3609, -3164, -14705], - [ - 0, -888, -1446, -2210, -2469, -757, -1376, -1942, -2400, -4370, -2410, -9010, -3198, -4372, -3199, -9011, - -14713, -5686, -14703, -12968, -14706, -4049, -2556, -3664, -1945 - ], - [1, 3, 9615], - [0, 0, 14, 9616, 4], - [0, -2558, -14717, -14718, -687, -1965, -5874, -3962, -3953, -14719, -14720, -1838, -14721], - [1, 3, 9618], - [0, 9619, 9620, 9621, 11], - [ - 0, -1630, -1805, -668, -2562, -1548, -1040, -10325, -14722, -14723, -9764, -14724, -14725, -728, -769, -14726, - -10388, -5895, -14707, -6715, -14727, -14703, -14728, -3609, -2433, -14729, -2556 - ], - [0, -652, -2541, -1722, -2210, -14714, -1110, -756, -14730], - [0, -5732, -687, -3577, -3113, -7646, -7641, -3578, -3673, -3970, -9471, -3976, -3262, -3960, -3994, -3871], - [1, 3, 9623], - [0, 0, 9624, 9625, 4], - [0, -14731, -479, -519, -668, -689, -713, -1496, -10962, -1863, -2384, -2541], - [ - 0, -712, -5535, -714, -3974, -4000, -687, -2265, -5514, -5553, -3770, -3975, -5538, -5550, -2547, -1573, -5545, - -3958, -5554 - ], - [1, 3, 9627], - [0, 9628, 101, 9629, 6], - [0, -719, -1376], - [0, -2561, -3690, -3844, -3445], - [1, 3, 9631], - [0, 9632, 9633, 9634, 4], - [0, -1630, -668, -688, -2528, -481, -2269, -482, -2267, -14732], - [0, -2541, -1654], - [0, -5732, -687, -3976, -2559, -14733, -14734, -6335, -12665, -5514], - [1, 3, 9636], - [0, 218, 9637, 9638, 5], - [0, -2198, -2177, -1654], - [0, -14735, -2563, -14736, -14737, -14738, -5269, -14739, -6249], - [1, 3, 9640], - [0, 0, 0, 9641, 11], - [0, -2410, -4058, -3926, -8038, -8910], - [1, 3, 9643], - [0, 9644, 9645, 9646, 6], - [0, -523, -1004, -1851, -2564], - [ - 0, -3731, -3035, -4269, -3732, -14740, -3617, -14741, -3621, -14742, -617, -664, -665, -720, -724, -744, -796, - -932, -14743, -1380, -1654, -1676, -1764, -1942, -2251, -2379, -2410 - ], - [0, -2564, -1004, -3690, -14744, -14745, -3445], - [1, 3, 9648], - [0, 9649, 9650, 9651, 10], - [0, -567, -615, -812, -13317, -1351, -1449, -1548, -1640, -1681, -2105, -2364, -2531], - [ - 0, -526, -528, -555, -558, -617, -744, -824, -932, -1004, -1168, -1174, -1197, -11777, -1235, -1252, -1266, - -1654, -1676, -1687, -12720, -2111 - ], - [ - 0, -4004, -3636, -3634, -9249, -4679, -4683, -14387, -11878, -4865, -3264, -5177, -5092, -775, -3214, -4868, - -5998, -10640, -14746 - ], - [1, 3, 9653], - [0, 0, 9654, 7, 4], - [ - 0, -2934, -2953, -14747, -9705, -3037, -14748, -615, -10877, -1419, -1421, -1415, -1654, -1660, -1412, -2234, - -1413, -10034, -2153, -2314, -2387, -2469 - ], - [1, 3, 9656], - [0, 9657, 9658, 9659, 8], - [ - 0, -14749, -7334, -633, -8958, -14750, -714, -719, -724, -742, -812, -1004, -14751, -5456, -14752, -5457, -1296, - -1304, -1336, -5458, -14753, -5459, -1548, -1810, -1820, -14754, -2194, -14755, -7222, -2291, -14756, -8573, - -2491, -2493, -2546, -2549, -14757 - ], - [0, -465, -14758, -14759, -1654, -1860, -2322, -2347, -14760], - [0, -2568, -3634, -4865, -1989, -1654, -5471], - [1, 3, 9661], - [0, 9662, 40, 9663, 5], - [0, -293, -295, -297, -14761, -832, -2177, -2369, -2387], - [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -4339, -4340, -4343, -4347], - [1, 3, 9665], - [0, 9666, 40, 164, 6], - [0, -668, -2387, -297, -2177, -1110, -293, -7356, -429, -14761, -8167, -5201], - [1, 3, 9668], - [0, 9669, 40, 9670, 4], - [0, -2387, -297, -2177, -1427, -1645, -293, -1863, -4023, -1426, -2551, -4018, -11751, -4019, -1352, -14761], - [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -14762, -4340, -4347], - [1, 3, 9672], - [0, 9673, 9674, 9675, 9], - [0, -2387, -297, -2177, -293, -295, -2569, -14761], - [0, -1787, -2257], - [0, -4333, -4334, -4335, -14763, -4339, -4340, -4343, -4347], - [1, 3, 9677], - [0, 9678, 9679, 9680, 11], - [0, -14764, -14765, -2387], - [0, -14766, -14767, -4745, -2344], - [0, -14768, -2006, -14769, -14770, -5176, -9547, -7581, -12543, -14771, -14772, -14773], - [1, 3, 9682], - [0, 9683, 9684, 9685, 11], - [0, -14774, -2634, -2006, -2019, -14775, -2170, -14776], - [0, -3037, -3040, -3052, -932, -10813, -1889, -2318, -2410], - [0, -5375, -770, -13055, -5375, -3634, -8576, -13056, -3551, -13057, -13058, -5376, -13059, -11152, -5150], - [1, 3, 9687], - [0, 9688, 0, 9689, 4], - [0, -786, -1967, -44, -3772, -3773, -3765], - [0, -2006, -3159, -4217, -906], - [1, 3, 9691], - [0, 9692, 190, 9693, 11], - [0, -6789, -6790, -14777], - [0, -3214, -1446, -1838, -10855, -856], - [1, 3, 9695], - [0, 9696, 9697, 264, 4], - [0, -44, -3345], - [0, -3136, -1415], - [1, 3, 9699], - [0, 9700, 9701, 9702, 4], - [0, -44, -14778, -1967, -2029, -2387], - [ - 0, -3192, -6093, -3394, -3794, -2685, -14779, -8471, -261, -3326, -350, -405, -406, -407, -14780, -409, -410, - -3136, -3140, -3040, -427, -428, -3766, -14781, -14782, -639, -757, -767, -795, -932, -3071, -969, -1059, - -14783, -14784, -5111, -8158, -1771, -1940, -4130, -2006, -2019, -2029, -2034, -2052, -2184, -2253, -2410 - ], - [0, -14785, -2006, -6701, -14786, -14787, -3823, -6750, -12605, -14788, -4666, -14789, -12606, -14790], - [1, 3, 9704], - [0, 90, 0, 9705, 9], - [ - 0, -4665, -4666, -5248, -10111, -775, -5564, -14791, -3962, -3214, -3756, -14792, -14793, -12898, -14794, - -14795, -1889, -3583, -14796, -14797, -6750, -12123, -14798, -2363, -14799 - ], - [1, 3, 9707], - [0, 9708, 9709, 9710, 9], - [0, -2857, -14800, -14801, -482, -14802, -1460, -2400, -14803], - [0, -14804, -3311, -3312, -14805, -14806, -14807, -2410], - [0, -14808, -4187, -2444, -3966, -4865, -3445, -3100, -14809, -14810], - [1, 3, 9712], - [0, 0, 0, 9713, 8], - [0, -3276, -7148, -14811, -7485, -4165, -4182, -14812, -14813, -14814, -7198, -14815], - [1, 3, 9715], - [0, 9716, 9717, 264, 5], - [ - 0, -23, -12490, -44, -3345, -14816, -14817, -14818, -14819, -2577, -14820, -14821, -14822, -160, -14823, -2695, - -14824, -4785, -14825, -2699, -366, -3735, -9947, -14826, -440, -14827, -518, -534, -14828, -5323, -635, -668, - -719, -753, -778, -779, -865, -866, -1077, -1107, -1122, -14829, -1123, -1331, -1455, -1469, -1548, -1643, - -1666, -14830, -1729, -1805, -1889, -1896, -1897, -1906, -1908, -12060, -1942, -1966, -6387, -2015, -2041, - -2144, -5977, -2193, -2195, -2275, -14831, -2335, -14832, -2435, -2466, -11710, -2501, -2502, -2505, -5628 - ], - [0, -14833, -3758, -3048, -3044, -14834, -4201, -6630, -13186, -5129, -1623, -1683, -1978, -2125], - [1, 3, 9719], - [0, 34, 9720, 9721, 5], - [ - 0, -234, -350, -4062, -351, -3561, -3043, -3136, -3040, -427, -428, -3807, -748, -915, -932, -940, -958, -967, - -969, -1415, -1419, -1449, -1788, -1942, -2006, -2019, -2125, -2127, -2130, -4063, -4064, -2142, -2144, -2233, - -2375, -2376, -2379, -2387, -2402, -2501, -2503, -2505, -238, -240 - ], - [0, -9975, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], - [1, 3, 9723], - [0, 34, 9724, 9725, 4], - [ - 0, -23, -40, -42, -4066, -3136, -3037, -427, -428, -14835, -14836, -14837, -441, -4838, -5593, -753, -767, -932, - -940, -958, -14838, -980, -1415, -1419, -1942, -2125, -2127, -2128, -2130, -2142, -2144, -14839, -2375, -2387, - -2402, -2410, -2476, -238 - ], - [ - 0, -2476, -3944, -14840, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, - -4060 - ], - [1, 3, 9727], - [0, 34, 9728, 9729, 8], - [ - 0, -23, -40, -42, -3035, -3136, -3621, -3037, -427, -428, -14835, -14836, -14841, -14837, -441, -4838, -5593, - -664, -767, -932, -940, -958, -14838, -980, -1771, -1942, -2125, -2127, -2128, -2130, -2142, -2144, -14839, - -14842, -2387, -2402, -2410, -2476, -238, -2584 - ], - [ - 0, -2476, -3944, -14840, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, - -4060, -5177, -775, -2316 - ], - [1, 3, 9731], - [0, 9732, 9733, 9734, 5], - [0, -5334, -9596, -9582, -1839, -5358, -6648], - [0, -4251, -3037, -652, -12326, -1942, -2094, -2100, -7699, -2399, -2400, -2410, -7669, -2541], - [0, -9590, -9589, -9588, -2444, -3590, -3264, -1838, -14843], - [1, 3, 9736], - [0, 0, 9737, 9738, 4], - [0, -932, -1654, -1788, -2210], - [0, -2254, -14844, -14845, -13497, -14846, -3445], - [1, 3, 9740], - [0, 0, 0, 9741, 4], - [0, -14847, -14848, -14849, -14850, -14851, -14852, -14853, -14854, -856, -1599], - [1, 3, 9743], - [0, 9744, 9745, 9746, 6], - [0, -9929, -9936, -14855, -812, -9927, -1371, -1875, -2240, -2347, -2387, -2555], - [ - 0, -3986, -3988, -3470, -3471, -3198, -9943, -11697, -3136, -3037, -11337, -9941, -7836, -8497, -932, -1415, - -1942, -2174, -2375, -2410 - ], - [0, -5271, -5270, -687, -3162, -3994, -9946, -5269], - [1, 3, 9748], - [0, 9749, 0, 9750, 5], - [0, -5334, -14856, -12767, -1293, -14857, -5356, -5358], - [0, -9589, -3264, -14857, -14075, -1599, -10684, -10918, -3862, -2083, -12745, -2093, -14858, -2427], - [1, 3, 9752], - [0, 9753, 9754, 9755, 5], - [0, -1281, -2297], - [0, -519, -708, -2410, -2541], - [0, -10606, -3974, -14859, -687, -6659, -7440, -5514, -5560, -4000], - [1, 3, 9757], - [0, 9758, 9759, 9760, 11], - [0, -8609, -12518], - [ - 0, -2832, -11432, -3615, -3244, -190, -3983, -367, -7043, -406, -407, -409, -14860, -3136, -3037, -3040, -12591, - -427, -428, -9723, -932, -940, -12520, -969, -970, -976, -1110, -1344, -1415, -1419, -1534, -2634, -1942, -2006, - -2019, -2965, -2125, -2177, -2410, -2411 - ], - [0, -2592, -2006, -3322, -2105, -3324, -4213], - [1, 3, 9762], - [0, 0, 9763, 9764, 5], - [0, -3037, -2228, -2229, -2391, -2410], - [ - 0, -2410, -8038, -3694, -9069, -7304, -8425, -6582, -7534, -4058, -3445, -3577, -4055, -6435, -640, -5835, - -6421, -10227, -6233, -12343, -14861, -14862 - ], - [1, 3, 9766], - [0, 9767, 9768, 9769, 4], - [0, -14863, -14864, -14865], - [0, -25, -46, -3983, -932, -1452, -1547, -1654, -2111, -8325, -2384, -2416], - [ - 0, -14233, -14866, -4865, -6899, -1819, -14867, -13626, -2594, -14868, -14869, -14870, -14871, -14872, -14873, - -14874 - ], - [1, 3, 9771], - [0, 0, 9772, 9773, 4], - [0, -1449, -2105, -2106], - [0, -3264, -9703, -9566], - [1, 3, 9775], - [0, 9776, 9777, 9778, 4], - [ - 0, -1297, -14875, -9684, -2267, -14876, -14877, -14878, -6467, -14879, -14880, -14881, -14882, -14883, -14884, - -14885, -14886, -14887, -14888, -14889, -9154, -14380, -14890, -14891, -14892, -8965, -14893, -14894, -14895 - ], - [ - 0, -652, -999, -2210, -14896, -581, -932, -825, -14897, -1098, -1942, -367, -749, -767, -2293, -2091, -10402, - -2410, -3037, -14898, -14899, -4372, -3906, -11098, -14900, -4203, -14901, -14902, -14903, -14904, -14905, - -14906, -13409, -14907, -14908, -4646 - ], - [0, -14909, -3161, -13039], - [1, 3, 9780], - [0, 9781, 9782, 9783, 4], - [0, -14910, -14911, -865, -1461, -1729, -4389], - [0, -14912, -14913, -3037, -4201, -932, -7060, -1942, -2125, -2392, -2410, -2469], - [0, -4344, -7547, -4165], - [1, 3, 9785], - [0, 9786, 9787, 9788, 8], - [0, -812, -2193, -2387, -2550, -1077, -719, -1729, -14914, -9929, -1734, -9931, -14915], - [ - 0, -1763, -1415, -1344, -2331, -932, -2125, -2375, -1942, -2410, -3136, -3037, -3198, -11337, -8890, -50, -3048, - -4201, -14916, -3986, -3988, -427 - ], - [0, -1386, -3996, -14917, -3162, -5269, -3167, -14918], - [0, 25, 9790], - 1753574400000, - [1, 3, 9792], - [0, 9793, 0, 93, 4], - [0, -682, -1384, -1967, -1993, -2006, -2019, -2029, -2489], - [1, 3, 9795], - [0, 9796, 0, 9797, 10], - [0, -2387, -14920, -14921, -14922], - [0, -5818, -1122, -3844, -3161, -3966, -3967, -2410], - [1, 3, 9799], - [0, 9800, 9801, 221, 5], - [ - 0, -9933, -14923, -9938, -9931, -9929, -9934, -9935, -9932, -9937, -9936, -668, -812, -834, -9927, -9925, -1548, - -1805, -3547, -8874, -2177, -2240, -9926, -9422, -2291, -2323, -2387 - ], - [ - 0, -3198, -9939, -9943, -3136, -3044, -3037, -3199, -9941, -4202, -5673, -1415, -1417, -1534, -2125, -2231, - -2375, -2410 - ], - [1, 3, 9803], - [0, 34, 9804, 9805, 5], - [ - 0, -14924, -14925, -14926, -8250, -7, -8, -9, -10, -427, -428, -519, -748, -932, -940, -958, -967, -14927, - -1788, -1942, -2125, -2153, -2234, -2387, -2402, -2410, -238 - ], - [0, -475, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], - [1, 3, 9807], - [0, 9808, 9809, 9810, 4], - [0, -8547, -1548], - [0, -3037, -427, -428, -932, -940, -958, -967, -1942, -2125, -2127, -2130, -2142, -2144, -2387, -2402, -2410, -238], - [0, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], - [1, 3, 9812], - [0, 9813, 9814, 65, 5], - [0, -712, -2544], - [0, -4597, -2391, -2423], - [1, 24, 9816], - [0, 25, 9817], - 1738454400000, - [1, 3, 9819], - [0, 9820, 9821, 9822, 4], - [0, -44, -2965], - [ - 0, -14928, -2006, -932, -708, -2379, -1942, -767, -2019, -14929, -2410, -5111, -3040, -14784, -3052, -14930, - -2052, -7465, -428, -3081, -427 - ], - [0, -3634, -2006, -3322, -5119, -4868], - [1, 3, 9824], - [0, 9825, 0, 9826, 8], - [0, -14931, -14932, -14933], - [ - 0, -10543, -9745, -11796, -9753, -6955, -9030, -2322, -14934, -4132, -14935, -3277, -14647, -11069, -6129, - -11037, -5880, -7375, -14936, -14937, -6656, -14938, -14939, -10545, -3018, -3210, -14940, -1015, -3756, -3116, - -14770, -6960, -11113, -12877, -4058, -14941, -14942, -6695, -14769, -12869, -6324, -4213, -2564, -6052, -9772, - -6821, -5998, -8988, -14943, -11582, -14944, -6511, -5837, -1985, -3103, -14945, -14946, -5550, -1631, -1000, - -8808, -8127, -3590, -1959, -7333, -2487, -7420, -5856, -9571, -6011, -3921, -10838, -14947, -2265, -11784, - -6953, -4111, -14948, -10366, -9054, -6510, -3612, -11685, -6787, -11798, -12255, -14949, -7863, -14950, -12343, - -5176, -719, -3272, -5831, -7373, -14773, -8411, -9027, -11822, -6849, -6962, -7199, -3690, -5846, -687, -14604, - -14951, -7856, -7581, -14952, -5827, -14953, -3215, -5195, -3911, -14954, -2387, -3015, -9980, -6281, -4784, - -14955, -6548, -10547, -6951, -6964, -6599, -13466, -10527, -11866, -5924, -1435, -13003, -1463, -8038, -3578, - -5514, -4782, -7558, -5572, -8410, -4110, -6120, -6968, -503, -14956, -14957, -6434, -6958, -6917, -3258, -6107, - -1640, -3994, -1471, -13469, -12991, -14958, -3186, -5272, -14959, -14960, -6233, -12342, -8910, -10537, -581, - -6187, -3206, -5112, -2368, -6932, -7283, -14961, -11872, -11791, -3931, -6970, -6845, -510, -5874, -14962, - -3771, -4113, -11792, -14963, -3815, -11112, -6717, -7331, -8027, -3634, -8163, -6977, -6280, -14964, -3322, - -12020, -10549, -14965, -5210, -2547, -10544, -8108, -14966, -11153, -5092, -8989, -7822, -1361, -1415, -1412, - -3481, -6370, -655, -3207, -2344, -6972, -8166, -11782, -7459, -1764, -770, -2059, -7091, -4053, -4792, -6946, - -8412, -3582, -6508, -14967, -14968, -4795, -14969, -12893, -6506, -8164, -5554, -635, -6956, -682, -6557, - -14970, -14622, -14971, -11070, -14972, -3930, -13770, -6987, -7334, -5842, -13468, -14525, -14973, -1080, - -10539, -2518, -6947, -10440, -12892, -8132, -8421, -7404, -2451, -13467, -14974, -1961, -4142, -1122, -6966, - -13234, -4679, -12883, -5549, -5395, -9918, -6971, -14975, -8996, -12543, -5829, -11797, -1810, -6655, -14976, - -14977, -14978, -14979, -12888, -7370, -8616, -7237, -2319, -6748, -14980, -6439, -1076, -2074, -5569, -3173, - -7230, -1983, -14981, -3770, -1993, -11793, -4107, -13465, -1039, -10413, -12437, -7303, -9173, -6989, -12990, - -14982, -6978, -5553, -3270, -3185, -10330, -3217, -14983, -1030, -9172, -9917, -4055, -4665, -11821, -3324, - -5563, -6784, -6965, -7421, -1359, -1654, -4676, -2105, -14984, -6545, -3175, -10541, -6130, -6957, -3276, - -14985, -12025, -7200, -14986, -2489, -1666, -9261, -775, -6543, -7442, -12912, -13471, -14987, -4781, -13005, - -615, -3966, -1449, -4115, -12889, -3925, -14988, -6654, -14989, -8388, -8472, -6948, -9048, -14624, -14772, - -12512, -8806, -3975, -3209, -14990, -4783, -6975, -14991, -6509, -6444, -9847, -11867, -6985, -14992, -11639, - -14993, -3926, -6188, -3162, -6555, -11049, -753, -3184, -14994, -664, -6986, -8128, -14995, -6131, -6852, - -12435, -7372, -14996, -1573, -12021, -14997, -14998, -1456, -14999, -3923, -15000, -4134, -5562, -5101, -8047, - -9826, -15001, -2525, -15002, -15003, -9577, -15004, -15005, -5396, -5208, -15006, -10548, -2114, -13872, - -12438, -729, -7369, -5484, -6351, -8618, -714, -4117, -9572, -12885, -13858, -6983, -11820, -15007, -15008, - -1047, -11997, -1342, -727, -15009, -5260, -15010, -8990, -4182, -8130, -6952, -518, -12878, -1986, -15011, - -11817, -891, -1801, -6976, -5841, -11483, -7440, -15012, -15013, -6980 - ], - [1, 3, 9828], - [0, 0, 9829, 9830, 4], - [0, -1452, -8171, -1654], - [0, -5514, -3264], - [1, 3, 9832], - [0, 9833, 9834, 9835, 5], - [0, -4372, -2210, -2387], - [0, -13198, -3698, -13201, -13202, -13204, -13205, -15014, -2402], - [0, -5817, -521, -3634, -4215, -8466, -15015], - [1, 3, 9837], - [0, 0, 9838, 9839, 8], - [ - 0, -3561, -668, -15016, -1077, -1107, -1168, -1190, -15017, -2125, -2127, -2132, -2142, -2334, -2387, -2388, - -2410 - ], - [0, -3994, -4126, -15018, -15019, -3578, -5270, -11536, -3214, -2363, -15020, -3162, -752, -3862, -2494, -3588], - [1, 3, 9841], - [0, 0, 0, 9842, 5], - [0, -4000, -3162, -812], - [1, 3, 9844], - [0, 9845, 9846, 9847, 8], - [0, -617, -724, -812, -832, -5035, -996, -1496, -2213, -2564], - [ - 0, -3983, -15021, -3171, -364, -3170, -365, -3865, -3330, -518, -803, -932, -940, -975, -1110, -1889, -1942, - -1946, -2910, -2299, -2300, -2318, -2410, -2466, -2469 - ], - [0, -3690, -3445, -1334, -2512, -2531, -3691, -3967], - [1, 3, 9849], - [0, 0, 9850, 9851, 6], - [ - 0, -23, -40, -86, -3307, -518, -534, -632, -12427, -664, -15022, -699, -15023, -796, -15024, -1168, -15025, - -1174, -15026, -15027, -1184, -1187, -1197, -1199, -1212, -1228, -1232, -1237, -1238, -1243, -1244, -1248, - -15028, -1252, -1262, -1271, -15029, -1344, -15030, -1442, -1496, -1654, -1655, -15031, -4916, -1889, -1953, - -2109, -2111, -2127, -2128, -3572, -3031, -15032, -2210, -4096, -15033, -2460, -15034, -2501, -7752 - ], - [0, -775, -3754, -2162, -3756, -3576, -3575, -3161, -6334, -15035, -15036], - [1, 3, 9853], - [0, 9854, 9855, 9856, 9], - [0, -668, -15037], - [0, -15038, -3664, -1344, -1534, -1942, -2410, -2469], - [0, -687, -712, -714, -5535, -3958, -4000, -5538, -15039, -15040, -1573, -5545, -5550, -2265, -5553, -3770, -3974], - [1, 3, 9858], - [0, 9859, 9860, 9861, 8], - [0, -3776, -15041, -1606, -1967], - [ - 0, -21, -23, -32, -5870, -26, -12490, -34, -12492, -3376, -3400, -3398, -3380, -40, -41, -15042, -3615, -3244, - -190, -15043, -12687, -15044, -15045, -15046, -4749, -4758, -15047, -406, -407, -409, -15048, -410, -3136, - -4961, -3037, -3040, -3052, -3804, -527, -533, -534, -8560, -15049, -4976, -15050, -684, -748, -749, -753, -767, - -824, -932, -933, -940, -951, -958, -962, -967, -969, -970, -976, -1077, -1110, -15051, -1415, -4980, -1417, - -1419, -15052, -1449, -1889, -1939, -1942, -1952, -2006, -2015, -2019, -2029, -15053, -2082, -2205, -2257, - -2278, -15054, -2339, -15055, -13807, -2375, -2376, -2410, -2501, -2503, -2505 - ], - [ - 0, -2631, -15056, -15057, -3095, -3482, -4189, -3161, -2006, -4101, -15058, -3261, -15059, -15060, -15061, - -15062, -4666, -15063, -15064, -15065, -712, -8038, -3999, -4684, -15066, -3160, -3477, -4727, -15067, -2278 - ], - [1, 3, 9863], - [0, 0, 0, 9864, 4], - [0, -9681, -9681, -3264, -7153, -2435], - [1, 3, 9866], - [0, 0, 9867, 9868, 4], - [0, -15068, -1127, -1134, -1136, -1138, -1140, -1144, -1148, -1149, -15069, -1160], - [0, -14214, -14213, -15070, -15071, -3825, -4126, -6409, -12536, -13615, -1437, -8635, -3576, -3162], - [1, 3, 9870], - [0, 9871, 9872, 254, 11], - [0, -1889, -2694, -2279, -4007, -658, -6410], - [ - 0, -2531, -502, -1683, -1816, -2323, -2564, -6842, -1107, -2178, -2444, -461, -2624, -651, -812, -1072, -1460, - -12980, -507, -640, -649, -743, -997, -1401, -1699, -2066, -2177, -2334, -5034, -1047, -3447, -1827, -1958, - -2501, -1977, -1999, -12981, -12955, -367, -4204, -719, -767, -1273, -11121, -10697, -9548, -1864, -2257, - -12982, -15072, -5052, -5673, -12971, -12972, -778, -2745, -1336, -2773, -1354, -12977, -2231, -2269, -2343, - -2410, -10052, -23, -237, -3036, -12967, -8559, -5900, -512, -2740, -724, -769, -1429, -2163, -12978, -2194, - -6375, -12979, -3921, -47, -3872, -10098, -12956, -3269, -3198, -12963, -3040, -534, -635, -12973, -737, -12974, - -1465, -12976, -1930, -8578, -2275, -2594, -12957, -5033, -3044, -3199, -12975, -8562, -6378, -2041, -5977, - -6380, -44, -12960, -15073, -6381, -1851, -6383, -6384, -46, -4020, -13428, -12966, -6633, -6386, -1848, -6387, - -3194, -12951, -3983, -4749, -8523, -3052, -1337, -6388, -1734, -22, -40, -13427, -12968, -771, -1343, -2233, - -11463, -6390, -6391, -5038, -4776, -3732, -7080, -6832, -7026, -1927, -41, -12947, -269, -5085, -3850, -12964, - -12969, -736, -1929, -2082, -32, -13186, -6394, -1934, -4195, -3251, -12948, -12952, -15043, -12965, -14296, - -7165, -7967, -2335, -12949, -15074, -10100, -10101, -7189, -1903, -2791, -12953, -12959, -1643, -3077, -42, - -12950, -8355, -15075, -8863, -12954, -4758, -12961, -12946, -4762, -5323, -4763, -8561, -6484, -38, -7164, - -12962, -1915, -37, -3368, -15076, -3376, -3204, -3379, -3385, -3389, -553 - ], - [1, 3, 9874], - [0, 0, 9875, 9876, 10], - [0, -652, -13239, -1344, -1534, -1889, -2541], - [0, -1889, -775, -3583, -10739], - [1, 3, 9878], - [0, 9879, 9880, 9881, 9], - [0, -674, -3050, -15077, -1630, -1641, -1863, -3240, -12379, -2218], - [ - 0, -86, -3307, -190, -3470, -7040, -3471, -3472, -7041, -7042, -3713, -3037, -5675, -15078, -427, -428, -767, - -932, -965, -999, -1110, -1344, -13856, -1534, -1870, -1942, -2125, -2174, -2410, -2469 - ], - [ - 0, -3998, -1978, -15079, -3167, -15080, -5270, -5271, -15081, -15082, -15083, -6527, -1594, -3162, -13188, - -15084, -15085 - ], - [1, 3, 9883], - [0, 9884, 9885, 9886, 9], - [0, -15086, -15087, -640, -5273, -1610, -1955, -4620, -15088], - [ - 0, -23, -32, -40, -534, -15089, -684, -9994, -778, -932, -933, -12416, -958, -10049, -1041, -3867, -1331, - -15090, -2275, -2335, -14648, -2501, -2502, -2503, -2505 - ], - [ - 0, -3812, -3813, -3814, -3815, -3816, -3817, -856, -15091, -15092, -2637, -4847, -15093, -15094, -15095, -15096, - -15097, -15098, -15099 - ], - [1, 3, 9888], - [0, 94, 9889, 9890, 5], - [0, -23, -32, -44, -932, -933, -940, -958, -962, -967, -969, -970, -1415, -3156, -1942, -2006, -2034], - [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -10738, -9556, -15020, -15100, -12546, -5176], - [1, 3, 9892], - [0, 0, 9893, 9894, 5], - [0, -23, -40, -44, -15101, -12564, -932, -1344, -1534, -2006, -2034, -2410], - [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -13876, -15102, -6711, -15103], - [1, 3, 9896], - [0, 0, 9897, 9898, 11], - [ - 0, -23, -32, -26, -3204, -38, -40, -41, -3326, -350, -351, -407, -409, -518, -703, -796, -932, -940, -12520, - -967, -969, -970, -976, -1344, -1352, -1415, -1534, -1889, -1942, -1967, -2006, -2019, -2127, -4063, -15104, - -3474, -4753, -2281, -2282 - ], - [0, -2006, -13613, -15105, -4108, -2006, -3095, -15106, -3162, -5270, -5271, -15107, -15108, -15109, -15110], - [1, 3, 9900], - [0, 9901, 9902, 9903, 9], - [0, -44, -15111, -15112], - [ - 0, -23, -36, -38, -40, -41, -42, -8280, -50, -15113, -407, -409, -3040, -3052, -427, -428, -440, -528, -651, - -767, -932, -940, -967, -969, -1344, -1415, -1419, -1534, -1942, -2006, -2019, -2125, -2410, -2466 - ], - [0, -15114, -15115, -2006, -3159, -14798], - [1, 3, 9905], - [0, 9906, 9907, 9908, 6], - [0, -656, -15116, -2400], - [ - 0, -2832, -3615, -190, -15117, -9705, -652, -668, -716, -722, -928, -932, -940, -967, -999, -1110, -1344, -1412, - -1534, -1574, -1942, -2125, -7969, -2410, -2411 - ], - [0, -8630, -3671, -856, -3262, -1599, -3437, -4328], - [1, 3, 9910], - [0, 9911, 9912, 9913, 11], - [0, -349, -703, -15118, -3517, -996, -1359, -2040, -2112, -12695, -12518, -15119], - [ - 0, -21, -23, -40, -41, -42, -44, -15042, -10791, -8230, -3615, -190, -12608, -15120, -349, -3562, -15043, -358, - -4754, -13424, -2948, -15121, -4890, -15122, -15123, -15124, -407, -409, -410, -15125, -12940, -15126, -3037, - -3040, -3052, -6633, -440, -5286, -3664, -534, -15127, -8561, -635, -15050, -767, -7272, -7254, -7271, -834, - -932, -15128, -940, -948, -958, -960, -962, -967, -969, -970, -15129, -4756, -1107, -1110, -1344, -1449, -1534, - -1610, -1874, -1942, -2006, -2019, -2029, -2040, -2125, -2257, -2335, -2376, -2378, -2410, -2411, -6412, -2469, - -15130, -2501, -2502, -2503 - ], - [0, -2006, -3476, -14497, -3159], - [1, 3, 9915], - [0, 9916, 9917, 9918, 4], - [0, -15131], - [ - 0, -15132, -15133, -15134, -15135, -350, -351, -410, -4875, -4877, -15136, -15137, -4878, -15138, -15139, -652, - -664, -15140, -15141, -932, -15142, -958, -1449, -11472, -1654, -1942, -2127, -15143, -2184, -2210, -2211, - -2253, -2334, -2410 - ], - [ - 0, -15144, -5072, -5065, -12238, -5073, -14939, -15145, -5495, -3161, -12122, -7651, -3110, -15146, -13039, - -6106, -6107, -5394, -15147, -15148 - ], - [1, 3, 9920], - [0, 0, 9921, 9922, 6], - [0, -23, -5585, -40, -2127, -2128, -2133, -2137, -2339, -15149, -13807, -2416], - [0, -15150, -15151, -7581, -1634, -475, -15152, -2006, -2476, -3755], - [1, 3, 9924], - [0, 9925, 9926, 9927, 4], - [0, -44, -15153, -4817, -809, -1549, -15154, -2355, -2451], - [ - 0, -3341, -26, -38, -40, -42, -86, -3307, -2997, -3326, -350, -15155, -4062, -351, -3561, -15156, -15157, - -15158, -15159, -3164, -3037, -3803, -5011, -6109, -427, -428, -4837, -5589, -3664, -3665, -5590, -441, -14247, - -14244, -4838, -518, -523, -656, -5339, -720, -726, -767, -795, -796, -812, -15160, -928, -932, -934, -940, - -958, -967, -980, -1125, -1344, -1449, -1521, -1534, -1551, -15161, -1662, -1889, -1942, -1955, -15162, -2082, - -2125, -2127, -13263, -4063, -5122, -6483, -15163, -6746, -4753, -15164, -15165, -2140, -14839, -2145, -15166, - -2387, -2410, -2466, -15167, -2469, -2476, -2478, -2483, -5627 - ], - [0, -2476, -3162, -15168], - [1, 3, 9929], - [0, 9930, 9931, 9932, 5], - [0, -5277, -929, -1437], - [ - 0, -23, -40, -9678, -4964, -518, -521, -15169, -757, -767, -784, -795, -7758, -865, -932, -940, -943, -958, - -966, -967, -968, -974, -1753, -1889, -1890, -1891, -15170, -1896, -1903, -15171, -1906, -1916, -15172, -12060, - -1942, -2125, -2127, -2128, -2131, -2133, -8895, -15173, -2137, -8896, -15174, -2140, -5281, -2214, -2281, - -3085, -2302 - ], - [ - 0, -5298, -6656, -15175, -15176, -15177, -7581, -7582, -6527, -15178, -5069, -3162, -12536, -7764, -4634, - -12217, -8883, -1437 - ], - [1, 3, 9934], - [0, 9935, 9936, 9937, 5], - [0, -523, -1435, -1548, -1646, -2153], - [0, -664, -932, -4628, -1650, -1654, -2330], - [ - 0, -4116, -826, -687, -6999, -9043, -12054, -15179, -1334, -11915, -15180, -9041, -5730, -7085, -11642, -9261, - -7084, -15181, -12578 - ], - [1, 3, 9939], - [0, 0, 9940, 9941, 4], - [ - 0, -518, -632, -1168, -15182, -1194, -1208, -1226, -1238, -1243, -1244, -1252, -7832, -15183, -1899, -2281, - -2282, -2550 - ], - [0, -2649, -15184, -15185, -775, -1521, -3162], - [1, 3, 9943], - [0, 0, 0, 9944, 6], - [0, -2006, -4125, -9800, -4633, -2074, -4634], - [1, 24, 9946], - [0, 25, 9947], - 1731196800000, - [1, 3, 9949], - [0, 9950, 9951, 7, 8], - [ - 0, -15186, -4225, -4228, -15187, -15188, -15189, -4230, -15190, -703, -5342, -15191, -1026, -3649, -1289, - -14857, -1618, -10922, -1619, -5397, -15192, -15193, -2590, -4241, -2088, -4242, -2095, -15194, -15195, -15196, - -12978, -4245, -2218, -12508, -2378, -15197, -2429, -15198, -2548, -2564 - ], - [ - 0, -5048, -409, -426, -5334, -4251, -15199, -3040, -3046, -440, -15200, -9602, -9603, -2634, -2006, -2019, - -2427, -2469, -15201 - ], - [1, 3, 9953], - [0, 9954, 0, 9955, 4], - [0, -12260], - [0, -810, -15202, -15203, -6367, -5896, -13618, -15204, -15205, -2653], - [1, 3, 9957], - [0, 9958, 9959, 204, 4], - [0, -4787, -1864], - [0, -2581, -3037, -8523, -1026, -15206, -1107, -2354, -2892, -2410], - [1, 3, 9961], - [0, 0, 0, 9962, 8], - [0, -2410, -3694, -4004, -4043, -1001], - [1, 3, 9964], - [0, 9965, 37, 9966, 4], - [0, -15207, -2387], - [ - 0, -15208, -15209, -15210, -15211, -15212, -2410, -5210, -3215, -6478, -9471, -15213, -8130, -3756, -8386, - -15214, -3445, -3577 - ], - [1, 3, 9968], - [0, 0, 28, 9969, 10], - [0, -12613, -3098, -3100, -3482, -2634, -1713, -2006, -12612, -12449, -3160, -4119], - [1, 3, 9971], - [0, 108, 28, 9972, 8], - [0, -707, -3098, -3100, -4131, -3482, -2634, -1713, -2006, -4132, -4133, -3160, -4119], - [1, 3, 9974], - [0, 9975, 28, 9976, 5], - [0, -2020], - [0, -3098, -7761, -878, -3100, -3482, -2634, -1713, -2006, -3160, -4119, -7764], - [1, 3, 9978], - [0, 266, 28, 9979, 8], - [0, -3098, -3100, -3482, -2634, -1713, -1779, -1959, -2006, -3160, -4119], - [1, 3, 9981], - [0, 266, 28, 9982, 4], - [0, -15215, -3098, -3100, -3482, -2634, -1713, -2006, -7282, -3160, -4119], - [1, 3, 9984], - [0, 0, 28, 9985, 4], - [0, -3098, -3100, -3482, -2634, -1713, -2006, -15216, -10114, -15217, -3160, -4119], - [1, 3, 9987], - [0, 9988, 9989, 9990, 4], - [0, -1616], - [ - 0, -21, -23, -3204, -40, -42, -3748, -4776, -15218, -3330, -3032, -3037, -427, -428, -932, -940, -958, -960, - -965, -15219, -5863, -1772, -2125, -2410, -2469 - ], - [ - 0, -15220, -1874, -795, -1654, -2469, -1415, -1412, -1710, -11410, -15221, -11100, -4004, -9246, -6863, -3634, - -15222 - ], - [1, 3, 9992], - [0, 9993, 9994, 9995, 6], - [0, -15223, -15224, -15225, -15226, -12846, -15227], - [0, -15228, -3617, -3037, -15229, -15230, -15231, -1004, -2125, -2892, -2410, -2469], - [0, -15227, -1004, -3445, -6324, -3690, -9668, -2410, -3214, -5401], - [1, 3, 9997], - [0, 0, 9998, 9999, 11], - [0, -1763, -10652, -2250, -4004, -15232], - [0, -3162, -11321, -7440, -4865], - [1, 3, 10001], - [0, 10002, 10003, 10004, 5], - [0, -5358, -2427, -5334, -1293, -8913, -12766, -2235, -5356, -12767], - [0, -652, -932, -2083, -1942, -1874, -2094, -2410, -3037, -6648, -12750, -12749, -11167, -15233], - [0, -856, -4147, -5670, -3862, -2083, -12745, -2093, -2427], - [1, 3, 10006], - [0, 10007, 10008, 10009, 5], - [0, -15234, -15235, -15236, -15237, -15238, -15239, -15240, -15241, -15242, -15243, -15244, -15245], - [0, -21, -2388, -2410], - [0, -15246, -3163, -12254, -6324, -3214, -11230, -8043, -15247, -3162], - [1, 3, 10011], - [0, 10012, 0, 93, 11], - [0, -2606, -15248, -682, -15249, -1384, -1967, -1993, -2006, -2019, -2029, -2489], - [1, 3, 10014], - [0, 10015, 0, 93, 10], - [0, -2006, -2019, -1967, -2606], - [1, 3, 10017], - [0, 10018, 0, 10019, 8], - [0, -2387, -1387, -232, -1461], - [0, -1386, -3161, -475, -3162, -3994, -3995, -3996, -752, -3997, -3998], - [1, 24, 10021], - [0, 25, 10022], - 1733616000000, - [0, 25, 10024], - 1733961600000, - [1, 24, 10026], - [0, 25, 10027], - 1734220800000, - [1, 3, 10029], - [0, 0, 10030, 10031, 4], - [ - 0, -2200, -2162, -2834, -2387, -932, -2125, -2127, -2149, -2334, -1753, -1889, -1077, -1942, -620, -767, -2281, - -2410, -3563, -1771, -1891, -6326, -518, -726, -3564, -1547, -6327, -945, -15250, -958, -978, -6331, -3267, - -428, -14014, -3573, -427 - ], - [0, -775, -2162, -3576, -8856, -3110, -4101, -3161, -15251, -11229], - [1, 3, 10033], - [0, 10034, 10035, 10036, 4], - [0, -44, -15252, -15253], - [ - 0, -21, -23, -26, -33, -5585, -38, -39, -40, -43, -3035, -3621, -3037, -528, -534, -539, -571, -15254, -15255, - -633, -664, -665, -12469, -767, -932, -1004, -4652, -1449, -1654, -1788, -2105, -2125, -2228, -2335, -2410, - -2490, -2491, -2501, -2503 - ], - [0, -5801, -3162, -3690, -10810, -15256], - [1, 3, 10038], - [0, 0, 10039, 10040, 11], - [0, -652, -664, -726, -756, -928, -932, -1449, -1544, -1654, -2162], - [0, -3214, -3162, -5270, -5271, -8617], - [1, 3, 10042], - [0, 10043, 10044, 10045, 6], - [0, -1992, -712, -809, -15257, -1548, -682, -15258, -1762, -15259, -15260, -15261, -6640, -2055, -15262], - [0, -4977, -2006, -2019, -3040, -3044, -44, -3052, -15263, -409, -407, -410, -2622, -3024], - [0, -2006, -5253, -3159, -2678, -15264, -15265, -3095, -3098, -3160, -3161, -3100, -3162], - [1, 3, 10047], - [0, 10048, 10049, 93, 4], - [0, -2606, -15248, -15266, -2669, -2670, -682, -1384, -1967, -1993, -2006, -2019, -2489, -15249], - [0, -15267, -15268, -15269], - [1, 3, 10051], - [0, 0, 10052, 10053, 4], - [0, -3473, -1942, -2127, -2128, -5384, -2129], - [0, -3100, -11853, -11851], - [1, 3, 10055], - [0, 10056, 10057, 10058, 4], - [0, -6815], - [0, -409, -3040, -3052, -778, -1071, -1344, -2006, -2019, -2049, -2275, -2376, -8973, -2387, -2410, -2501, -3612], - [0, -6750, -15270, -15271, -15272, -3095, -3576, -3162, -2363, -6750, -3823, -15273, -12606], - [1, 3, 10060], - [0, 10061, 10062, 10063, 10], - [0, -4733, -668, -719, -999, -1077, -1948, -1966, -2177, -2426, -2518, -2528, -2542, -2555], - [0, -15274, -3899, -652, -1107, -1110, -6295, -8065, -1971], - [0, -2682, -15275, -15276, -3162, -5270, -15277, -5271], - [1, 3, 10065], - [0, 10066, 0, 10067, 4], - [0, -1867, -11957, -11964, -15278], - [0, -15279, -3444, -5545, -3262, -856, -15280, -15281], - [1, 3, 10069], - [0, 10070, 10071, 10072, 9], - [ - 0, -15282, -15283, -15284, -31, -15285, -3325, -280, -11671, -469, -719, -7731, -15286, -15287, -5934, -1442, - -10584, -1577, -1645, -1729, -15288, -2115, -10624, -2177, -2205, -2379, -2410 - ], - [0, -932, -959, -969, -973, -1077, -1415, -1448, -1607, -2125, -15289], - [0, -3328, -856, -3262, -1599, -9308], - [1, 3, 10074], - [0, 10075, 10076, 10077, 5], - [ - 0, -6869, -8386, -1805, -623, -668, -999, -1526, -1826, -2387, -1548, -2177, -753, -1966, -2501, -679, -1077, - -2357, -719, -1327, -695, -832, -929, -2043, -5977, -2508, -15290, -2433, -15291, -2044, -15292, -3859, -15293, - -4239, -2505, -15294, -1331, -15295, -15296, -2502, -15297, -15298, -15299 - ], - [0, -7982, -7688, -3052, -3861, -13398, -2052, -13186, -11702, -15300, -15301, -14826, -14779], - [0, -2006, -5371, -2501, -856, -7695, -7696, -858], - [1, 3, 10079], - [0, 10080, 10081, 268, 11], - [0, -2387, -1387, -232], - [ - 0, -1763, -1415, -2006, -932, -2125, -2127, -2375, -1077, -1942, -2019, -2410, -3136, -3037, -3040, -3052, - -3986, -3988, -409, -1419, -3267, -407, -428, -2622, -427 - ], - [1, 3, 10083], - [0, 0, 10084, 10085, 4], - [0, -3136, -427, -428, -753, -756, -784, -932, -1415, -1417, -1424, -1449, -15302, -2127, -2375, -2410], - [ - 0, -12841, -3582, -6989, -5389, -10095, -12523, -2410, -3214, -9682, -3095, -11486, -12121, -5065, -3577, -3264, - -4333, -4334, -15303 - ], - [1, 3, 10087], - [0, 10088, 0, 10089, 4], - [0, -703, -2825, -2690, -1967, -44, -2997, -192], - [0, -2006, -3159, -4217, -15304, -4665], - [1, 3, 10091], - [0, 10092, 0, 10093, 6], - [0, -2690, -1967, -44], - [0, -2006, -3159, -4217, -4101], - [1, 3, 10095], - [0, 10096, 0, 10097, 8], - [0, -703, -2029, -2825, -1967, -44, -3140], - [0, -2006, -3159, -4217, -5260], - [1, 3, 10099], - [0, 10100, 0, 95, 5], - [0, -15305, -15306, -823, -1878], - [1, 3, 10102], - [0, 269, 0, 95, 5], - [1, 3, 10104], - [0, 10105, 10106, 10107, 4], - [0, -469, -2177, -1047, -15310, -15311, -12390, -8802, -1395, -3609], - [0, -6997, -2466, -2469, -757, -1026, -2410, -7982, -1772, -10267], - [ - 0, -15312, -15313, -8902, -3184, -3161, -1168, -3214, -3264, -3482, -1599, -3967, -15314, -15315, -3995, -5372, - -3255, -3256, -15316, -15317, -15318 - ], - [1, 3, 10109], - [0, 0, 10110, 10111, 5], - [0, -865, -8559, -866], - [0, -2006, -2634, -9736, -865], - [1, 3, 10113], - [0, 10114, 10115, 10116, 4], - [0, -2624, -2231, -15319, -2168, -1320, -3606], - [ - 0, -2558, -1415, -1623, -932, -1699, -825, -2501, -1077, -1098, -1942, -767, -1978, -2400, -1424, -2410, -23, - -3136, -3037, -769, -2503, -534, -11747, -1772, -2041, -3046, -3048, -7080, -4049, -15320, -2505, -15321, - -12916, -15322, -1421, -2335, -940, -967, -1419, -2506, -3204 - ], - [0, -2006, -3214, -2501, -10675, -6211, -15323, -1540, -12516, -10589, -12517, -11492], - [1, 3, 10118], - [0, 0, 10119, 10120, 11], - [0, -13324, -1123, -15324], - [0, -15325, -1122, -4058, -3694, -2410, -4258, -3161, -3862], - [1, 3, 10122], - [0, 10123, 10124, 10125, 5], - [ - 0, -1816, -3612, -2466, -15326, -623, -668, -999, -865, -1548, -1872, -2177, -680, -1753, -1821, -2501, -679, - -1077, -1376, -1942, -719, -749, -695, -778, -2410, -2061, -15327, -15328, -635, -5676, -726, -2115, -2275, - -15329, -15330, -15331, -15332, -4236, -2041, -15333, -15334, -15335, -3808, -15336, -15337, -4805, -15338, - -15339, -15340, -15341, -1331, -15342, -2504, -2506, -15343, -5319, -1643, -2502, -15344, -15345, -15346, - -14827, -15347, -1067, -2695 - ], - [0, -1415, -2006, -9056, -2019, -3136, -3037, -3044, -15348, -3048, -15349, -15350, -14826], - [ - 0, -15351, -7643, -15352, -7645, -15353, -15354, -11229, -3690, -6120, -3161, -1334, -4055, -1501, -15355, - -13039, -1791, -11437, -1818, -3691, -5728, -7107, -15356, -5372, -3214, -11878, -12303, -12304, -12301, -12299, - -15357, -15358, -3445, -7696, -15359, -1520, -15360, -2006, -3476 - ], - [1, 3, 10127], - [0, 10128, 10129, 10130, 4], - [0, -23, -14825, -656, -755, -15361], - [0, -2303], - [0, -5049, -3839, -2006, -3103, -3690], - [1, 3, 10132], - [0, 10133, 10134, 10135, 4], - [0, -47, -3223], - [0, -15362], - [0, -3264, -9589, -525, -9588, -14188, -9590], - [1, 3, 10137], - [0, 0, 0, 10138, 4], - [0, -5141, -4601, -4602, -3578, -3445, -754], - [1, 3, 10140], - [0, 10141, 10142, 168, 5], - [0, -809, -713, -15363], - [0, -1344, -2469, -2410, -3037, -411, -2581, -86, -5144, -3664, -3307], - [0, 23, 0, 97, 5], - [1, 3, 10145], - [0, 23, 0, 10146, 9], - [ - 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, - -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, - -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, - -5186, -5187, -5188, -5189, -15364, -15366 - ], - [1, 3, 10148], - [0, 23, 0, 98, 9], - [1, 3, 10150], - [0, 23, 0, 99, 4], - [0, 23, 0, 99, 5], - [1, 3, 10153], - [0, 23, 0, 99, 11], - [1, 3, 10155], - [0, 10156, 10157, 10158, 6], - [ - 0, -3698, -13203, -15369, -15370, -11418, -617, -722, -733, -736, -744, -754, -2762, -930, -1004, -15371, - -15372, -1010, -13106, -5989, -1116, -15373, -1299, -1388, -11121, -1465, -1548, -1641, -1666, -1667, -1676, - -1681, -1744, -1826, -5262, -7223, -2182, -2297, -15374, -2451, -15375, -2531 - ], - [ - 0, -3732, -14740, -4198, -3330, -3733, -4623, -3850, -3044, -14742, -3851, -3037, -8852, -3046, -4204, -999, - -1336, -1722, -2293, -2410, -2469 - ], - [0, -5300, -1959, -15176, -15376, -15377, -5940, -9139, -15378, -6335, -3445, -2512, -1004, -8841], - [1, 3, 10160], - [0, 10161, 0, 271, 9], - [ - 0, -2476, -2362, -753, -928, -1442, -2501, -679, -1582, -778, -1888, -2437, -2481, -2483, -5628, -23, -769, - -1041, -518, -534, -14408, -15379, -2508, -13389, -1908, -15380, -2711, -2505, -748, -1929, -15381, -15382, - -2485, -2718, -1643, -2712, -15383, -731, -15384, -2714, -1814, -2716 - ], - [1, 3, 10163], - [0, 10164, 0, 10165, 6], - [0, -1955, -1600, -7898, -1603, -1601, -2718, -5614], - [0, -856, -3262, -1599, -2476, -2816], - [1, 3, 10167], - [0, 10168, 0, 42, 5], - [0, -2711, -1543, -1582], - [1, 3, 10170], - [0, 10171, 0, 42, 9], - [0, -15380, -1553], - [1, 3, 10173], - [0, 10174, 0, 42, 9], - [0, -15380, -769], - [1, 3, 10176], - [0, 10177, 0, 42, 8], - [0, -1779, -15380], - [1, 3, 10179], - [0, 10180, 0, 42, 5], - [0, -15380, -2718], - [1, 3, 10182], - [0, 10183, 0, 42, 4], - [0, -15380], - [1, 3, 10185], - [0, 10186, 10187, 42, 5], - [0, -668, -929, -1077, -1111, -1125, -1284, -2177, -2362, -4701], - [0, -15385], - [1, 3, 10189], - [0, 10190, 0, 42, 4], - [0, -1548, -2286, -5602, -2287, -15380, -2717, -15383, -2715, -15386, -2713], - [1, 3, 10192], - [0, 10193, 10194, 58, 4], - [0, -15387, -15388, -15389, -15390, -15391], - [ - 0, -664, -1654, -2379, -2501, -21, -23, -5870, -3035, -3136, -3037, -1771, -2503, -3621, -39, -43, -40, -15392, - -15393, -42 - ], - [1, 3, 10196], - [0, 10197, 132, 58, 8], - [0, -15388, -15399, -15400], - [1, 3, 10199], - [0, 10200, 10201, 58, 9], - [0, -1940, -6935, -747, -15401, -15402], - [ - 0, -664, -1654, -932, -753, -2379, -2501, -2376, -21, -778, -2410, -23, -5870, -3035, -3136, -3037, -1637, - -1771, -2503, -3621, -3040, -2275, -15403, -14831, -39, -43, -40, -966, -969, -958, -968, -940, -943, -967, - -974, -42 - ], - [1, 3, 10203], - [0, 10204, 10205, 58, 11], - [0, -2722, -15401, -15402, -15404, -15405, -15406], - [ - 0, -664, -2494, -1654, -932, -4270, -753, -2379, -2501, -1942, -21, -2410, -23, -5870, -3035, -3136, -3037, - -1771, -2503, -3621, -39, -43, -40, -966, -969, -958, -968, -15407, -940, -943, -967, -974, -42 - ], - [1, 3, 10207], - [0, 10208, 132, 58, 11], - [0, -2531, -15388, -15399], - [1, 3, 10210], - [0, 10211, 0, 10212, 6], - [0, -703, -15408], - [0, -15409, -15410, -3162, -6184], - [1, 3, 10214], - [0, 0, 0, 173, 4], - [1, 3, 10216], - [0, 0, 0, 10217, 5], - [0, -475, -3161, -4865, -7243, -3634, -5495], - [1, 3, 10219], - [0, 117, 10220, 10221, 4], - [0, -519, -668, -756, -1788, -2250, -2251], - [0, -5514, -9846, -687, -15411, -7210], - [1, 3, 10223], - [0, 228, 10224, 10225, 5], - [ - 0, -9705, -5686, -4624, -3037, -8890, -11458, -617, -11477, -1168, -12346, -1260, -1412, -15412, -15413, -1452, - -1722, -2125, -2150, -15414, -2173, -2379, -2388, -12348, -2410, -12349, -2819 - ], - [0, -4004, -3634, -11468, -12350, -11467], - [1, 3, 10227], - [0, 0, 10228, 272, 5], - [ - 0, -526, -528, -6104, -558, -6089, -562, -932, -934, -6013, -940, -956, -958, -1059, -1344, -1415, -1534, -1942, - -2125, -2416 - ], - [1, 3, 10230], - [0, 10231, 10232, 10233, 8], - [ - 0, -7226, -15425, -7944, -719, -729, -7949, -1048, -1276, -6343, -7959, -1641, -15426, -2125, -7968, -2359, - -7971, -2425, -7972 - ], - [ - 0, -190, -3035, -4269, -15427, -15428, -3617, -15429, -3713, -3037, -15430, -3628, -15431, -427, -428, -15432, - -664, -665, -749, -932, -940, -964, -966, -967, -999, -1054, -1116, -5487, -1654, -1888, -1942, -7981, -2148, - -2177, -2210, -2211, -7970, -2379, -2410 - ], - [0, -6342, -4865, -7641, -4258, -3100, -9290], - [1, 3, 10235], - [0, 10236, 10237, 273, 4], - [0, -15425, -6343, -7964, -7966, -2125, -2148, -5509], - [0, -664, -665, -1654, -15433], - [1, 3, 10239], - [0, 10240, 10241, 273, 4], - [0, -7226, -1276, -3607, -1641], - [0, -664, -7979, -1004, -1452, -1654, -6347, -2106, -2148], - [1, 3, 10243], - [0, 10244, 10245, 10246, 4], - [0, -1343], - [0, -1445, -1452, -1654, -2198], - [0, -4864, -4865, -2734, -9711, -3634], - [1, 3, 10248], - [0, 0, 10249, 10250, 4], - [0, -526, -527, -15434, -558, -664, -1654], - [0, -656, -6514, -775, -5092], - [1, 3, 10252], - [0, 0, 133, 10253, 4], - [0, -3264, -8034, -3223, -7472, -4846, -6557, -15435], - [1, 3, 10255], - [0, 0, 133, 10256, 5], - [0, -3264, -15436, -8034, -3223, -7472, -4846, -6557, -15435], - [1, 3, 10258], - [0, 0, 133, 10259, 4], - [0, -3264, -8034, -3223, -7472, -4846, -6557], - [1, 3, 10261], - [0, 0, 10262, 10263, 4], - [0, -8096, -14182, -652, -725, -1288, -1292, -1942, -2087, -2094, -2100, -2125, -2322, -2399, -2410, -2427, -2541], - [0, -3264, -8034, -10902, -7472, -4846, -15435, -15437, -6557], - [1, 3, 10265], - [0, 0, 0, 41, 9], - [1, 3, 10267], - [0, 10268, 251, 10269, 4], - [0, -15438], - [0, -712, -5535, -5549, -775], - [1, 3, 10271], - [0, 0, 92, 10272, 5], - [0, -5092, -3264, -12064, -13319, -7205, -1838, -6231], - [1, 3, 10274], - [0, 10275, 88, 10276, 4], - [0, -1016, -15439, -8493], - [0, -3671, -856, -3960, -3262, -1599, -3261, -15440], - [1, 3, 10278], - [0, 0, 10279, 10280, 5], - [0, -1654, -664, -1405], - [0, -775, -12120, -5101, -15441, -3162, -1838, -5572], - [1, 3, 10282], - [0, 0, 10283, 10284, 6], - [0, -756, -1405], - [0, -2265, -4112, -7188, -775, -10310, -3582], - [1, 3, 10286], - [0, 10287, 10288, 10289, 4], - [0, -781], - [0, -652, -928, -932, -1654, -2127, -2232], - [0, -775, -6454, -6684, -1644, -7192, -7193, -15442], - [1, 3, 10291], - [0, 10292, 10293, 10294, 4], - [0, -508], - [0, -932, -940, -967, -1942, -2319], - [0, -5829, -3215, -6747, -687, -3957, -4377, -6836, -15443], - [1, 3, 10296], - [0, 10297, 0, 10298, 8], - [0, -492, -493, -15444, -495, -722, -1122, -1123, -1439, -7679], - [0, -15445, -3445, -1105, -15446], - [1, 3, 10300], - [0, 10301, 0, 10302, 4], - [0, -1439, -1848, -7679], - [0, -15445, -3445, -5800, -8904], - [1, 3, 10304], - [0, 10305, 0, 10306, 4], - [0, -722, -1439, -1645, -1848, -7679, -15447], - [0, -15445, -3445, -7660], - [1, 3, 10308], - [0, 10309, 0, 10310, 4], - [0, -15448, -1371, -1469, -1645], - [0, -15445, -3445, -15449, -15450], - [1, 3, 10312], - [0, 10313, 0, 10314, 5], - [0, -492, -493, -15444, -495, -722, -1122, -1123, -1439, -1848, -7679], - [0, -15445, -3445, -1105], - [1, 3, 10316], - [0, 10317, 0, 10318, 4], - [0, -492, -493, -15444, -495, -1439, -1848, -7679], - [0, -15445, -3445, -7661], - [1, 3, 10320], - [0, 0, 0, 274, 4], - [1, 3, 10322], - [0, 10323, 0, 274, 10], - [0, -1848], - [1, 3, 10325], - [0, 0, 10326, 10327, 9], - [0, -3136, -3037, -756, -1107, -1415, -1442, -15451, -2375, -2388, -2389, -12348, -2410], - [0, -14233, -6747, -3215, -14867, -3162, -15423, -9918, -11321, -1819, -7572, -4865, -15452], - [1, 3, 10329], - [0, 10330, 10331, 10332, 6], - [0, -1610, -1955, -15453, -15454, -15455, -4096, -3546], - [ - 0, -1415, -523, -1344, -1520, -932, -1650, -2125, -2127, -2286, -784, -679, -12844, -1942, -5002, -767, -533, - -23, -722, -1534, -1539, -1771, -632, -5977, -3983, -40, -959, -15456, -15457, -2129, -32, -958, -2143, -2138, - -940, -967, -2131, -15458, -740, -2137 - ], - [0, -4100, -3671, -856, -15459, -3262], - [1, 3, 10334], - [0, 10335, 10336, 10337, 10], - [ - 0, -1805, -668, -2550, -729, -15460, -2757, -910, -1077, -1098, -1582, -15461, -1540, -2187, -2433, -9229, - -15462, -731 - ], - [0, -519, -754, -999, -1344, -932, -2125, -2127, -1534, -15463, -2251, -8177, -15464], - [0, -2757, -4100, -3671, -856, -15459, -3262, -687], - [1, 3, 10339], - [0, 10340, 0, 10341, 5], - [0, -15465], - [0, -5092, -2759, -1437, -3162, -13614], - [1, 3, 10343], - [0, 10344, 10345, 10346, 4], - [0, -14393, -1548, -2029], - [ - 0, -21, -23, -40, -41, -533, -708, -915, -916, -932, -940, -943, -15466, -958, -966, -968, -969, -974, -1415, - -1942, -15467, -1967, -1992, -2006, -2019, -2052 - ], - [0, -915, -1415, -4045, -8911, -1950, -674, -5845, -3634, -5119, -4004], - [1, 3, 10348], - [0, 10349, 0, 10350, 5], - [0, -464, -15468, -615, -15469, -2387, -2536], - [ - 0, -5409, -510, -15470, -15471, -15472, -15473, -8676, -15474, -15475, -7347, -6656, -6527, -1594, -11872, - -3162, -15476, -15477, -1838, -1961, -9591, -15478, -5408 - ], - [1, 3, 10352], - [0, 0, 14, 10353, 9], - [ - 0, -5559, -9692, -3264, -8034, -3223, -15479, -7723, -8472, -3590, -3110, -9681, -5846, -15480, -2544, -15481, - -15482 - ], - [1, 3, 10355], - [0, 10356, 10357, 10358, 5], - [0, -674, -15483, -929, -572, -529, -569, -1077, -15484, -1610, -1646, -14584], - [0, -526, -539, -549, -566, -708, -15485, -932, -1654, -1788], - [ - 0, -1446, -3690, -10855, -856, -6948, -15486, -6950, -15487, -6949, -15488, -6951, -15489, -11798, -15490, - -6952, -15491, -15492 - ], - [1, 3, 10360], - [0, 0, 55, 10361, 4], - [0, -932, -5208, -3784, -3862, -9420, -11315, -8199, -4100, -856], - [1, 3, 10363], - [0, 0, 10364, 10365, 4], - [0, -1116, -2251, -2322], - [0, -856, -10858, -15493, -10925, -15494, -15411, -3966], - [1, 3, 10367], - [0, 87, 275, 10368, 4], - [0, -9590, -9589, -9588, -2444, -3590, -3264, -1391, -9682], - [1, 3, 10370], - [0, 87, 275, 10371, 6], - [0, -9590, -9589, -9588, -2444, -3590, -3264, -775, -3585, -1838], - [1, 3, 10373], - [0, 10374, 10375, 10376, 4], - [0, -5334, -2742, -9596, -1968, -2235, -9584, -9585], - [0, -3705, -3037, -652, -1459, -1839, -1942, -2094, -2100, -2399, -2410, -2541], - [0, -9590, -9589, -9588, -2444, -3590, -3264, -1839, -3272, -10919], - [1, 3, 10378], - [0, 87, 92, 10379, 5], - [0, -9590, -9589, -9588, -2444, -3590, -3264, -3830, -9682, -15495, -15496, -15497], - [1, 3, 10381], - [0, 10382, 10383, 10384, 8], - [0, -2595], - [0, -985, -1637, -1942, -2320, -2322], - [0, -3272, -3264, -1838, -6231], - [1, 3, 10386], - [0, 0, 10387, 10388, 5], - [0, -3037, -652, -2586, -1288, -1292, -1729, -1942, -2094, -2100, -2399, -2410, -2541], - [0, -3264, -9703, -6818, -6557, -9682, -15498, -5387, -5388], - [1, 3, 10390], - [0, 10391, 0, 10392, 5], - [0, -812], - [ - 0, -1334, -1342, -1501, -1004, -1030, -12868, -11998, -15499, -15500, -15501, -15502, -12868, -11994, -15503, - -3445 - ], - [1, 3, 10394], - [0, 0, 130, 10395, 4], - [0, -775, -3209, -15504, -1889], - [1, 3, 10397], - [0, 276, 10398, 277, 4], - [0, -9848, -2776], - [1, 3, 10400], - [0, 276, 10401, 277, 6], - [0, -2774, -15505, -9848, -2776], - [1, 3, 10403], - [0, 0, 0, 10404, 4], - [0, -525, -2006, -1368, -3161, -4729, -9850, -3264, -9851, -3844, -5092, -4865, -2127, -15506, -15507, -5272], - [1, 3, 10406], - [0, 0, 10407, 10408, 4], - [0, -824, -1168, -784, -1889, -1243, -15508, -1238, -1270, -15509], - [0, -775, -3576, -3577, -3161, -3578, -15510], - [1, 3, 10410], - [0, 10411, 10412, 10413, 4], - [0, -1666, -2161], - [0, -510, -1127, -1138, -1145, -1148, -1162, -1446, -1548, -2105], - [0, -620, -15511, -15512, -856, -1446, -7674, -4101], - [1, 3, 10415], - [0, 0, 10416, 10417, 6], - [0, -9705, -3037, -11458, -1412, -1452, -2173, -2388, -12348, -2410, -12349], - [0, -4004, -3634, -11468, -12350, -11467, -1412], - [1, 3, 10419], - [0, 10420, 10421, 10422, 5], - [0, -10041, -13980, -3740, -1427, -1950, -2375], - [ - 0, -15513, -4, -5, -6, -7, -8, -9, -10, -12, -13, -14, -23, -40, -86, -9404, -3244, -190, -10041, -4020, -237, - -3048, -3136, -3037, -3199, -427, -428, -15514, -533, -668, -10525, -740, -767, -4805, -932, -940, -958, -959, - -960, -967, -999, -1077, -15515, -1107, -1110, -1344, -1415, -1419, -1449, -1868, -1942, -2125, -2153, -2177, - -2387, -2392, -2400, -2410, -2411, -2567 - ], - [0, -1415, -2410, -475, -3634], - [1, 3, 10424], - [0, 10425, 10426, 10427, 5], - [0, -2699, -656, -668, -679, -719, -729, -6798, -1805, -1906, -1907, -2213, -2218, -12979, -2433, -2531], - [ - 0, -23, -162, -3778, -163, -237, -350, -351, -15516, -367, -7043, -406, -407, -409, -410, -5039, -3136, -8334, - -3037, -3040, -3052, -9947, -4764, -4204, -427, -428, -440, -15517, -4734, -518, -767, -932, -940, -943, -958, - -965, -968, -969, -1415, -1428, -1521, -1753, -1771, -1889, -14336, -15518, -1942, -2006, -2019, -2029, -2125, - -2127, -4063, -2132, -6483, -2162, -2278, -2318, -2410, -2466, -15519 - ], - [0, -3634, -1415, -3100, -7566, -812, -15520], - [1, 3, 10429], - [0, 10430, 10431, 10432, 8], - [0, -1403, -15521], - [0, -15522, -15523, -1202, -1276, -1654, -3261], - [ - 0, -9198, -6515, -812, -3671, -856, -6899, -3960, -3262, -1276, -4187, -8453, -4676, -15524, -15525, -1548, - -5545, -1599, -3110, -3261, -15440 - ], - [1, 3, 10434], - [0, 10435, 10436, 10437, 10], - [0, -15526], - [0, -1586, -1729, -2337], - [0, -1586, -15527, -9409, -3844, -3445], - [1, 3, 10439], - [0, 10440, 10441, 10442, 8], - [0, -10869], - [0, -3037, -652, -1638, -1942, -2094, -2100, -2399, -2410, -2541], - [0, -1638, -15528, -15529, -6818, -7724, -15530, -3264, -4329, -1599, -2427], - [1, 3, 10444], - [0, 0, 0, 10445, 4], - [0, -1638, -2444, -3590, -3264, -6422], - [1, 3, 10447], - [0, 0, 0, 10448, 10], - [0, -1638, -2444, -3590, -3264, -6818, -6557], - [1, 3, 10450], - [0, 0, 10451, 10452, 4], - [0, -6874, -1127, -1452, -1666, -2525, -2416, -10264, -1154, -15531, -1149, -1136, -1144, -1148], - [0, -2442, -3162, -9918, -15423, -6659, -14867, -4865, -9318, -15532, -15533], - [1, 3, 10454], - [0, 10455, 10456, 10457, 4], - [0, -7177], - [0, -1415, -932, -2375, -1942, -2410, -3136, -3037, -7178, -940, -428, -427], - [0, -15534, -15535, -775], - [1, 3, 10459], - [0, 10460, 92, 10461, 6], - [0, -4231, -2738, -2739, -10909, -15536, -15537, -15538], - [0, -1838, -3264, -7472, -4846, -8034, -3223], - [1, 3, 10463], - [0, 0, 0, 10464, 4], - [0, -1889, -9300, -3756, -9339, -2006, -775, -15539], - [1, 3, 10466], - [0, 10467, 130, 10468, 5], - [0, -2773], - [0, -775, -3209, -1889], - [1, 3, 10470], - [0, 0, 10471, 10472, 9], - [ - 0, -23, -40, -15540, -4690, -15541, -932, -1412, -1471, -1475, -1476, -1479, -1481, -1486, -1491, -11943, -1970, - -1978, -2127, -2128, -3571, -2139, -2140, -10312, -4881 - ], - [0, -9407, -1978, -1874, -4864, -15542, -15543, -4902, -3634, -11468, -1970, -11467, -4881, -15221], - [1, 3, 10474], - [0, 10475, 10476, 10477, 9], - [0, -567, -1275, -1967], - [0, -633, -634, -668, -824, -1168, -1179, -1205, -1243, -15544, -1262, -1266, -1632, -15545, -2006, -2019, -2463], - [0, -2006, -3159, -2319, -15546, -2363, -15547, -1275, -3162], - [1, 3, 10479], - [0, 10480, 10481, 10482, 8], - [ - 0, -15548, -303, -15549, -304, -4360, -6448, -469, -470, -668, -680, -728, -812, -1125, -1353, -1442, -5265, - -1641, -1789, -1790, -1816, -1966, -2177, -2205, -2223, -3610, -4002, -7982, -15550, -2426, -5721 - ], - [ - 0, -2581, -86, -3307, -4368, -15551, -11765, -15552, -350, -4062, -351, -3561, -3198, -3660, -3713, -3735, - -3199, -15553, -15554, -3664, -13376, -1344, -1498, -1722, -4362, -5263, -1942, -2127, -6483, -2392, -2400, - -2410, -2469 - ], - [0, -3690, -489, -11768, -856, -11148, -11773, -1789, -3438, -11772, -11769, -11771, -11770, -11410, -4328, -4847], - [1, 3, 10484], - [0, 0, 10485, 10486, 11], - [ - 0, -5295, -409, -3136, -3040, -3052, -13529, -427, -428, -757, -825, -932, -940, -967, -969, -970, -1103, - -15555, -1415, -15556, -1637, -15302, -15557, -1942, -2006, -2019, -13531, -2214, -2375, -2410, -15558 - ], - [0, -2006, -12474, -3159, -8597, -13241, -15559, -712, -3577, -15560, -15273, -2012, -4666, -11876, -4665, -15561], - [1, 3, 10488], - [0, 10489, 10490, 10491, 4], - [0, -2594], - [0, -40, -41, -3040, -915, -916, -1415, -1992, -2052, -2127, -2128, -2131, -2137], - [0, -2442, -3162, -9918, -15423, -6659, -14867, -4865, -15562, -15563, -9318, -6106, -4000], - [1, 3, 10493], - [0, 0, 10494, 10495, 4], - [ - 0, -86, -3037, -3040, -3052, -3075, -427, -9700, -932, -940, -9106, -958, -965, -967, -968, -969, -1344, -1415, - -1534, -1637, -1942, -1952, -2006, -2019, -2044, -2046 - ], - [0, -2006, -9843, -3122, -2043, -2044, -15564, -2634], - [1, 3, 10497], - [0, 0, 10498, 10499, 4], - [ - 0, -1788, -1449, -1471, -1654, -2006, -2074, -2210, -507, -932, -1548, -1940, -2334, -4258, -708, -753, -1958, - -2501, -589, -2019, -15565, -2410, -23, -3037, -1482, -2040, -3040, -534, -11472, -1492, -50, -1025, -3052, -40, - -3062, -969, -2052, -15566, -406, -1483, -1475, -1487, -1479, -14780, -428, -5030 - ], - [0, -5922, -6439, -2006, -7378, -15567, -821], - [1, 3, 10501], - [0, 0, 0, 10502, 4], - [0, -2034, -3162, -5270, -5271, -7084, -6656, -14311, -15176, -15568, -6528, -4100], - [1, 3, 10504], - [0, 0, 10505, 10506, 4], - [0, -44, -3040, -3141, -2006, -2034, -2410], - [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -15071, -13615, -15569, -6527, -15570], - [1, 3, 10508], - [0, 94, 10509, 10510, 5], - [0, -528, -932, -933, -940, -958, -962, -967, -969, -1942, -15571], - [ - 0, -2034, -3159, -12567, -2006, -3162, -5270, -3160, -1959, -15572, -15573, -15574, -10677, -15575, -15576, - -6716, -5176 - ], - [1, 3, 10512], - [0, 10513, 10514, 10515, 4], - [0, -798, -15577, -799, -801, -1967], - [ - 0, -15578, -4757, -6263, -4754, -15579, -528, -533, -14782, -807, -932, -943, -958, -966, -968, -969, -15580, - -974, -1344, -1415, -1534, -1942, -1952, -2006, -2034, -15571, -2052 - ], - [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -9472, -6581, -14497, -797], - [1, 3, 10517], - [0, 10518, 10519, 10520, 6], - [0, -997], - [0, -3157, -932, -12566], - [0, -2034, -3159, -12567, -2006, -3163, -3162, -5270, -5271, -3160, -10028, -15581, -15582], - [1, 3, 10522], - [0, 10523, 10524, 10525, 8], - [0, -2798, -2489], - [ - 0, -15583, -21, -23, -3204, -39, -40, -6056, -41, -161, -163, -2997, -350, -351, -3561, -409, -2622, -3040, - -528, -533, -767, -932, -940, -956, -959, -968, -969, -970, -1059, -11942, -1103, -15584, -1415, -15302, -1942, - -1952, -2006, -2019, -15585, -2052, -2125, -2127, -2128, -2140, -2410 - ], - [0, -2006, -2804, -12051, -3095, -7582, -3821, -3822], - [1, 3, 10527], - [0, 10528, 10529, 10530, 8], - [0, -15586, -2730, -682], - [ - 0, -15587, -5295, -406, -407, -409, -15588, -3059, -3037, -3040, -3052, -440, -3899, -795, -1449, -2910, -2006, - -2019, -2214, -2892, -2387, -2410, -2469 - ], - [0, -2006, -3576, -4126, -3162, -12129], - [1, 3, 10532], - [0, 10533, 10534, 10535, 10], - [0, -2387, -15589], - [0, -15590, -5295, -2214, -2006, -2019], - [0, -2006, -5553, -775], - [1, 3, 10537], - [0, 0, 10538, 10539, 4], - [0, -509, -1654, -1939], - [0, -775, -712, -15559, -5554], - [1, 3, 10541], - [0, 10542, 0, 77, 5], - [0, -2869, -424, -15591, -15592, -15593, -15594, -15595, -15596, -15597, -15598, -15599, -15600, -15601], - [1, 3, 10544], - [0, 0, 10545, 272, 5], - [ - 0, -23, -40, -42, -86, -3307, -3326, -15155, -3561, -3266, -3136, -3037, -427, -428, -441, -7465, -528, -533, - -8349, -726, -767, -932, -943, -958, -966, -968, -980, -1103, -1344, -1392, -1415, -1419, -1534, -2125, -2127, - -2142, -2410, -2478 - ], - [1, 3, 10547], - [0, 0, 10548, 259, 8], - [ - 0, -3800, -684, -748, -778, -1041, -3544, -1643, -1942, -2116, -2162, -2163, -2376, -2410, -2437, -2501, -2503, - -2508 - ], - [1, 3, 10550], - [0, 33, 10551, 10552, 4], - [0, -5295, -2214, -407, -409, -15590, -1419], - [0, -2006, -9080, -15602, -15603, -15604], - [1, 3, 10554], - [0, 10555, 10556, 10557, 6], - [0, -15605, -2387], - [0, -5295, -2214, -15590, -15606, -916, -2006, -2019], - [0, -15607, -2006, -15608], - [1, 3, 10559], - [0, 10560, 10561, 10562, 5], - [0, -753, -44, -15609, -15610], - [ - 0, -1521, -2299, -2501, -778, -2410, -23, -1522, -2503, -534, -2275, -15611, -2508, -40, -2301, -2505, -42, -38, - -535, -3362, -26, -36, -35 - ], - [0, -4000, -812, -3162], - [1, 3, 10564], - [0, 0, 10565, 10566, 10], - [0, -3037, -4371, -2447, -2466], - [0, -2466, -3161, -8113], - [1, 3, 10568], - [0, 0, 10569, 10570, 5], - [ - 0, -527, -534, -559, -767, -778, -1041, -1743, -2680, -2163, -15612, -2275, -2476, -2481, -2483, -2484, -2485, - -2501, -2505 - ], - [0, -11853, -11851, -15613, -15614, -15615, -15616, -15617, -3100, -15618], - [1, 3, 10572], - [0, 10573, 0, 271, 8], - [0, -653, -914, -2710, -15380, -2433, -2719, -3546], - [1, 3, 10575], - [0, 0, 10576, 10577, 5], - [ - 0, -21, -23, -26, -36, -40, -42, -3330, -15619, -3136, -3037, -6630, -427, -428, -527, -533, -535, -932, -934, - -940, -958, -967, -1415, -5133, -1942, -2174, -2410 - ], - [0, -1415, -1001, -4116, -510, -5867, -1961, -4868, -3634, -5119], - [1, 3, 10579], - [0, 10580, 10581, 10582, 5], - [0, -11458, -2173], - [0, -9705, -11477, -1168, -12346, -1412, -1888, -15414, -2410], - [0, -3634, -11468, -12350, -11467, -5769], - [1, 3, 10584], - [0, 10585, 10586, 10587, 4], - [0, -464, -668, -824, -1107, -1371, -1646, -1980, -2105, -2125, -2177, -2536], - [ - 0, -5682, -3711, -15620, -3036, -11697, -9705, -8566, -5686, -3037, -12344, -8852, -8890, -11458, -3199, -11343, - -11477, -1168, -12346, -1412, -2150, -2173, -2410 - ], - [0, -475, -4004, -3634, -1970, -11468, -12350, -11467, -2173], - [1, 3, 10589], - [0, 117, 55, 10590, 4], - [ - 0, -2265, -7472, -4112, -6730, -13460, -6787, -13461, -13462, -13463, -13465, -5514, -5559, -5563, -687, -3958, - -3974, -4000, -13466, -13467, -13468, -13469, -13470 - ], - [1, 3, 10592], - [0, 169, 10593, 10594, 5], - [0, -3037, -928, -15621, -1496, -15622, -2410, -2447], - [0, -15623, -9669, -3161, -9670, -8615, -1334, -3690], - [1, 3, 10596], - [0, 10597, 0, 10598, 8], - [0, -1460, -15624, -1442, -3241], - [0, -15279, -15625, -727, -856, -15280, -15281], - [1, 3, 10600], - [0, 0, 10601, 278, 6], - [0, -664, -3035, -3037, -15626], - [1, 3, 10603], - [0, 10604, 0, 95, 10], - [0, -15631, -15632, -823, -1878], - [1, 3, 10606], - [0, 39, 0, 10607, 5], - [0, -2006, -3159, -4217, -3694], - [0, 23, 0, 98, 4], - [0, 23, 0, 99, 6], - [1, 3, 10611], - [0, 10612, 10613, 10614, 4], - [0, -15633, -10576], - [0, -5859, -633, -13719, -2322], - [0, -7581, -7582, -7580, -7762, -15634, -5177, -15635, -3100, -633], - [1, 3, 10616], - [0, 10617, 10618, 10619, 4], - [ - 0, -15636, -15637, -15638, -15639, -15640, -640, -668, -671, -865, -866, -997, -1026, -14636, -1098, -1116, - -1353, -1376, -7408, -1460, -15641, -15642, -5895, -1958, -2177, -2193, -2331, -2410, -15643, -15644, -15645 - ], - [0, -2476, -15646, -15647, -15648, -15649], - [0, -2830, -15650, -3161], - [1, 3, 10621], - [0, 10622, 10623, 10624, 9], - [0, -44, -15651], - [ - 0, -1415, -2162, -1344, -2006, -915, -932, -2501, -1942, -767, -2019, -21, -778, -2095, -2410, -23, -1534, - -1771, -2163, -2503, -3040, -534, -2275, -15652, -15653, -4227, -15654, -4749, -40, -13427, -41, -969, -358, - -15655, -940, -962, -967, -1419, -42, -4757, -15656, -4758, -428, -4762, -38, -427, -12712, -15045 - ], - [0, -2006, -3095, -15657, -13652, -15658, -3162, -15106, -2410, -15659, -15660], - [1, 3, 10626], - [0, 10627, 10628, 7, 4], - [0, -668, -695, -719, -1610, -6294, -2177, -15661], - [0, -3802, -11346, -3037, -3199, -15662], - [1, 3, 10630], - [0, 10631, 10632, 7, 4], - [ - 0, -15663, -2564, -703, -834, -15664, -2303, -2466, -461, -623, -812, -4245, -5358, -743, -783, -5036, -2083, - -2177, -2814, -680, -5034, -928, -15665, -15666, -1442, -3447, -1827, -1966, -15667, -15668, -3535, -3027, - -15669, -1864, -10430, -2422, -15670, -15671, -5113, -2654, -3545, -15672, -1321, -1588, -2551, -989, -15673, - -8294, -3649, -14335, -15674, -2429, -15675, -15676, -15677, -8882, -4785, -3190, -4288, -15678, -6332, -3459, - -15679, -15680 - ], - [ - 0, -9740, -2162, -2127, -2426, -2469, -674, -2427, -15681, -15206, -15682, -2410, -5334, -1002, -2089, -3198, - -13046, -12145, -3199, -15683, -6327, -3660, -3735, -5204, -1736, -3983, -8523, -5114, -9602, -15684, -3712, - -9146, -2084, -15685, -15686 - ], - [1, 3, 10634], - [0, 10635, 0, 7, 5], - [0, -710, -15687, -1813, -2416], - [1, 3, 10637], - [0, 10638, 10639, 10640, 10], - [0, -714, -1077, -1376], - [0, -932, -959, -1415], - [0, -3871, -3262, -3976, -687, -11487], - [1, 3, 10642], - [0, 0, 10643, 10644, 10], - [ - 0, -350, -351, -668, -910, -932, -940, -958, -15688, -6099, -1343, -1344, -1534, -1654, -3446, -1942, -2125, - -2127, -2131, -15689, -2234, -2323, -10988 - ], - [0, -3108, -3110, -5889], - [1, 3, 10646], - [0, 0, 10647, 7, 8], - [0, -427, -428, -932, -935, -940, -948, -958, -962, -967, -969, -970, -1344, -1534, -1942, -2006, -2410], - [1, 3, 10649], - [0, 10650, 10651, 10652, 4], - [0, -15690], - [0, -3621, -823, -1654], - [0, -3578, -4004, -4043, -15691, -1654, -3161], - [1, 3, 10654], - [0, 0, 10655, 10656, 4], - [ - 0, -5295, -3136, -427, -428, -15692, -10529, -13751, -712, -932, -940, -967, -1107, -1415, -1942, -2127, -2140, - -2142, -2214, -2355, -2375, -2379, -2387, -2410 - ], - [ - 0, -712, -3215, -5845, -13241, -15559, -5549, -12065, -15693, -12067, -1510, -15694, -12434, -775, -15695, - -4665, -15696, -15697, -1644, -15698 - ], - [1, 3, 10658], - [0, 106, 10659, 280, 6], - [ - 0, -15587, -86, -3307, -2845, -4646, -3617, -3136, -3037, -427, -428, -932, -940, -1344, -1415, -1942, -2091, - -2375, -2410 - ], - [0, 23, 0, 97, 8], - [1, 3, 10662], - [0, 10663, 10664, 10665, 8], - [ - 0, -6332, -6326, -6329, -15702, -5334, -3660, -4251, -2854, -15703, -2586, -1288, -1292, -1294, -1349, -1442, - -14511, -1588, -15704, -10749, -5348, -2918, -2083, -4262, -5353, -2422, -2427, -2429, -5358 - ], - [0, -3983, -3037, -3664, -2834, -15705, -2469], - [0, -3671, -856, -2834, -15706, -15707], - [1, 3, 10667], - [0, 10668, 10669, 280, 4], - [0, -1004, -2080], - [ - 0, -15587, -86, -3307, -2841, -2845, -4646, -3617, -3136, -3037, -427, -428, -932, -940, -1344, -1415, -1942, - -2091, -2375, -2410 - ], - [1, 3, 10671], - [0, 10672, 10673, 10674, 4], - [0, -2080, -2379], - [0, -86, -3307, -4646, -3617, -3136, -3037, -427, -428, -668, -932, -940, -1344, -1415, -1942, -2091, -2375, -2410], - [0, -15699, -3967, -2410, -15700, -15701, -3161, -11894, -3445, -3482], - [1, 3, 10676], - [0, 23, 0, 97, 4], - [0, 23, 0, 98, 11], - [1, 3, 10679], - [0, 262, 10680, 10681, 4], - [0, -262, -4838], - [0, -2476, -2486, -4634, -2851, -15708, -15709, -12704, -3690, -7864, -9069, -2410, -3018, -8038, -9594], - [1, 3, 10683], - [0, 10684, 10685, 151, 5], - [0, -15710, -192, -15711], - [ - 0, -41, -15712, -15713, -407, -409, -410, -3040, -3052, -440, -703, -2006, -2019, -2042, -2044, -2113, -3820, - -15714, -727 - ], - [1, 3, 10687], - [0, 10688, 10689, 10690, 8], - [0, -2856], - [0, -2834, -999, -15715], - [0, -15707, -15716, -856, -15717, -4245, -15718, -15706], - [0, 0, 0, 10692, 5], - [0, -15318, -15719, -3445], - [1, 3, 10694], - [0, 10695, 10696, 10697, 9], - [0, -15717], - [0, -4251, -4231, -9602, -2090, -2098, -2101, -4245, -2427, -5358, -15715], - [0, -15716, -856, -15717, -4245, -15718], - [1, 3, 10699], - [0, 10700, 10701, 10702, 8], - [0, -14800, -14801, -820, -1002, -2400], - [0, -15720, -14804, -3311, -3312, -652, -14806, -2410], - [0, -14808, -4187, -2444, -3966, -4865, -3445, -3100, -507, -4004, -664, -14809, -14810], - [1, 3, 10704], - [0, 0, 10705, 10706, 5], - [0, -600, -633, -756, -1405, -1654, -2198, -2416], - [0, -8472, -2544, -7723, -14242, -3962, -7107, -5559, -6422, -7724, -2451, -3264, -775, -6138, -14672], - [1, 3, 10708], - [0, 10709, 0, 10710, 5], - [0, -15721], - [ - 0, -3843, -3118, -14066, -2006, -3100, -3577, -3445, -4725, -3578, -4865, -3214, -3756, -2410, -3966, -3967, - -3482, -15722, -5260 - ], - [1, 3, 10712], - [0, 10713, 0, 73, 9], - [0, -2984, -2885, -5766, -2400], - [1, 3, 10715], - [0, 269, 0, 95, 10], - [1, 3, 10717], - [0, 10718, 0, 77, 4], - [0, -424, -2704, -2826, -2863, -2706, -2707, -2902, -2903, -2940, -2708], - [1, 3, 10720], - [0, 0, 0, 10721, 4], - [ - 0, -3843, -3118, -14066, -2006, -3100, -3577, -3445, -4725, -3578, -4865, -3214, -3756, -2410, -3966, -3967, - -3482, -15724, -5260 - ], - [0, 23, 0, 97, 6], - [1, 3, 10724], - [0, 10725, 0, 246, 4], - [ - 0, -2531, -1107, -2624, -2550, -2177, -1961, -578, -719, -1384, -2166, -481, -533, -12547, -1624, -2516, -12548, - -1950, -2041, -458, -12550, -11463, -12551, -9870, -2082, -12552, -1421, -12553, -12554, -12555, -12556, -12557, - -12559, -12560, -15725 - ], - [1, 3, 10727], - [0, 10728, 0, 77, 10], - [ - 0, -2862, -424, -2976, -2872, -2705, -2853, -2850, -2827, -2848, -2849, -2828, -15726, -15727, -2865, -2703, - -2975, -15728, -2846, -15729, -2847, -2842, -15730, -15731, -2868, -2996, -2866 - ], - [1, 3, 10730], - [0, 10731, 10732, 268, 5], - [0, -2387, -2686], - [ - 0, -2006, -932, -2125, -2127, -1942, -2019, -2410, -3037, -3040, -2043, -3052, -2044, -15732, -3986, -3988, - -3075, -3267, -428, -427 - ], - [1, 3, 10734], - [0, 10735, 10736, 10737, 9], - [0, -15733, -15734, -15735, -617, -1004, -15736, -1338, -2520, -2558], - [0, -15737, -15738, -15739, -15740, -15741, -3617, -4203, -1683, -2293], - [0, -15742, -7661, -15743, -15744, -15745, -3445], - [1, 3, 10739], - [0, 23, 0, 98, 5], - [1, 3, 10741], - [0, 0, 10742, 10743, 4], - [0, -509, -1654], - [0, -2873, -5514, -712, -5535, -668, -775, -15559, -5549, -15746], - [1, 3, 10745], - [0, 10746, 10747, 10748, 10], - [0, -4843], - [0, -3037, -3040, -3052, -440, -2634, -2006, -2019, -2466, -6859, -2469, -4842], - [0, -3690, -856, -9736, -1713, -3438, -4847], - [1, 3, 10750], - [0, 10751, 0, 10752, 5], - [0, -1439, -7679, -722, -15447], - [0, -15318, -15719, -3445, -7660], - [1, 3, 10754], - [0, 0, 10755, 10756, 4], - [0, -8096, -652, -1942, -2094, -2100, -2125, -2322, -2399, -2410, -2541], - [0, -775, -3264, -5092, -3578, -6184, -13270, -5899, -9299], - [1, 3, 10758], - [0, 10759, 10760, 285, 10], - [0, -1313, -2564], - [ - 0, -15747, -86, -3307, -4835, -15748, -3036, -3037, -427, -428, -4627, -928, -932, -934, -940, -15749, -948, - -958, -967, -1107, -1344, -1534, -1942, -15750, -2125, -2383, -2392, -2410 - ], - [1, 3, 10762], - [0, 10763, 10764, 285, 4], - [0, -679, -2877], - [ - 0, -502, -2392, -1107, -1344, -932, -2125, -928, -1942, -2410, -3036, -3037, -1534, -15748, -2383, -86, -15750, - -958, -4627, -940, -967, -428, -934, -3307, -427, -948, -15749 - ], - [1, 3, 10766], - [0, 10767, 10768, 10769, 6], - [ - 0, -2531, -469, -2392, -5193, -1867, -2446, -649, -764, -15753, -2426, -680, -1646, -2694, -823, -1043, -11121, - -1878, -15754, -1354, -1340, -11964, -1101, -1997, -14221, -15755, -14032, -1851, -2160, -15756, -15757, -8274 - ], - [ - 0, -2193, -2125, -2127, -928, -4204, -749, -767, -3738, -15758, -5686, -5363, -2014, -11433, -2132, -4049, - -15759, -15760, -15761, -15762 - ], - [0, -15354, -3690, -7643, -15763, -11229, -3161, -15764, -11878, -3214, -9736, -3966, -2879, -2006, -15359, -2410], - [1, 24, 10771], - [0, 25, 10772], - 1743292800000, - [1, 3, 10774], - [0, 10775, 10776, 10777, 9], - [0, -15765, -15766, -15767, -15768, -15769], - [ - 0, -40, -15770, -15771, -15772, -3326, -350, -351, -3561, -3048, -3037, -15773, -427, -12837, -428, -518, -534, - -558, -726, -753, -756, -4809, -15774, -932, -958, -960, -5863, -1077, -1103, -3566, -15775, -15776, -1344, - -15777, -15778, -1771, -15779, -1891, -15780, -15781, -15782, -2127, -8895, -4753, -15783, -8896, -2140, -2142, - -2144, -2162, -5896, -15784, -5013, -2387, -2388, -15785, -2410, -8564 - ], - [ - 0, -12613, -15786, -12449, -12898, -2363, -11321, -3162, -2006, -2476, -475, -1940, -13615, -13616, -13613, - -15787 - ], - [1, 3, 10779], - [0, 0, 10780, 10781, 4], - [0, -50, -2410, -2466, -4840, -6859], - [ - 0, -15415, -15416, -15788, -15417, -15418, -11853, -10655, -15419, -6711, -15420, -15421, -4126, -15071, -2006, - -15422, -475, -2476, -5270, -3162, -11321, -15423, -15424 - ], - [1, 3, 10783], - [0, 10784, 10785, 10786, 5], - [0, -15789], - [0, -15790, -3136, -3037, -664, -12469, -1002], - [0, -15791, -6121, -460, -15792, -15793, -15794, -15795], - [1, 3, 10788], - [0, 10789, 10790, 7, 4], - [0, -15796, -3748, -948, -8339, -965, -968, -969, -1047, -1110, -15797, -2411], - [0, -3037, -10557, -932, -1344, -3781, -1498, -15798, -1772, -2399, -2410], - [1, 3, 10792], - [0, 10793, 0, 73, 4], - [0, -1456], - [1, 3, 10795], - [0, 10796, 10797, 286, 4], - [0, -4007, -658, -3190, -1548, -1549, -15799], - [0, -15800, -3037, -1278, -2410, -15801, -15802, -15803], - [1, 3, 10799], - [0, 10800, 0, 7, 6], - [0, -4231], - [1, 3, 10802], - [0, 0, 10803, 7, 8], - [0, -2386, -932, -2469, -1942, -2410, -3037, -965, -3664, -978, -940, -428, -427], - [1, 3, 10805], - [0, 10806, 10807, 10808, 9], - [0, -668, -1574, -1948, -2303], - [0, -1127, -1132, -1134, -1163, -2541], - [0, -9219, -3839, -9472, -6523, -6527, -7175, -1644], - [1, 3, 10810], - [0, 10811, 10812, 286, 5], - [0, -928, -4007, -2886], - [0, -1415, -2410, -3136, -3037, -15806, -15807], - [1, 3, 10814], - [0, 10815, 10816, 10817, 5], - [0, -522], - [0, -1788, -664, -2391, -1654, -2125, -1004, -2379, -2410, -3035, -3037, -3621, -511, -3617, -3983], - [0, -4665, -5119, -3634, -4873, -3440, -4666, -5986, -1874, -522], - [1, 3, 10819], - [0, 10820, 10821, 7, 5], - [ - 0, -483, -653, -6860, -13380, -14174, -15808, -5042, -1864, -2923, -7160, -2177, -3535, -2654, -2369, -15809, - -15810 - ], - [ - 0, -15661, -15811, -15812, -15813, -15814, -3037, -8523, -3199, -8200, -15815, -15816, -3664, -3665, -4817, - -8349, -815, -932, -8418, -3751, -1623, -3459, -6568, -1942, -2910, -15817, -15818, -2410, -15819, -15820, - -15821, -15822, -2466, -2469 - ], - [1, 3, 10823], - [0, 10824, 10825, 10826, 4], - [0, -812, -814, -1077, -1116, -7408, -2331], - [0, -3198, -15823, -3048, -664, -932, -1654], - [0, -867, -7347, -10908, -6131, -6656, -1334, -2435, -7107, -3445], - [1, 3, 10828], - [0, 0, 10829, 10830, 4], - [0, -3983, -3037, -3040, -9723, -1942, -2006, -2019, -3682, -2410], - [0, -2006, -5741, -12662, -12664, -12665], - [1, 3, 10832], - [0, 10833, 0, 10834, 5], - [0, -834, -3222, -681, -3620, -81, -66, -73, -74, -3502, -83, -68, -85, -15824, -6672, -15825], - [ - 0, -15826, -681, -3489, -15827, -15828, -5554, -15829, -7754, -3496, -3498, -3264, -3505, -3506, -3507, -3508, - -3509, -8841, -6217, -3161 - ], - [1, 3, 10836], - [0, 0, 287, 134, 4], - [1, 3, 10838], - [0, 10839, 10840, 10841, 11], - [0, -15830, -1967, -2055], - [ - 0, -21, -23, -32, -26, -33, -34, -35, -6034, -36, -38, -40, -41, -44, -406, -407, -409, -534, -753, -767, -932, - -933, -940, -958, -962, -967, -969, -1415, -1419, -1455, -1939, -1942, -2006, -2019, -2501, -2502, -2503, -2505 - ], - [0, -2006, -3476, -5176, -3159], - [1, 3, 10843], - [0, 0, 122, 10844, 5], - [0, -1107, -5569, -5570, -3215, -15831, -3116], - [1, 3, 10846], - [0, 10847, 0, 10848, 5], - [0, -681, -3517, -81, -15832, -66, -83, -68, -15824, -6672, -15825, -65, -15833, -3526, -15834, -15835], - [ - 0, -15826, -681, -3489, -15827, -15828, -5554, -15829, -7754, -3496, -3498, -3264, -3505, -3506, -3507, -3508, - -3509, -8841, -3161 - ], - [1, 3, 10850], - [0, 0, 37, 288, 8], - [1, 3, 10852], - [0, 10853, 10854, 10855, 4], - [0, -15836, -458, -812, -1729], - [0, -3198, -3037, -4201, -15837], - [0, -13739, -7572, -3690, -3323, -3161, -3482, -2901], - [1, 3, 10857], - [0, 23, 0, 289, 4], - [0, 23, 0, 289, 5], - [1, 3, 10860], - [0, 10861, 0, 170, 5], - [0, -5240, -5241, -431, -15838, -5244, -5245], - [1, 3, 10863], - [0, 10864, 0, 10865, 9], - [0, -15839, -15840, -15841, -15842, -15843, -15844, -15845, -15846], - [0, -15847, -2257, -15848, -3634, -4004, -15849, -15849, -2034, -2006, -3162, -5270, -5271, -3578], - [1, 3, 10867], - [0, 10868, 0, 10869, 6], - [0, -1439, -7679, -493, -495, -15444, -492], - [0, -15318, -15719, -3445, -7661], - [1, 3, 10871], - [0, 0, 10872, 10873, 5], - [0, -633, -1339, -2491], - [0, -2319, -8533, -3162, -2363, -5389, -6822], - [1, 3, 10875], - [0, 10876, 10877, 10878, 9], - [0, -15850, -2324], - [0, -1413, -1471, -1475, -1476, -1481, -11285, -1645, -1978, -2416], - [0, -10838, -10840, -3162, -4865], - [1, 3, 10880], - [0, 10881, 10882, 7, 4], - [0, -8535, -15851, -11270, -4848, -15852, -15853, -1826, -3653, -2062, -7967, -8544, -15854, -15855, -2531], - [ - 0, -13322, -9193, -13323, -15856, -357, -15857, -3037, -4204, -8549, -2917, -726, -2758, -932, -1030, -1122, - -1123, -15858, -2884, -1939, -1972, -2177, -2210, -2240, -2384, -2410, -2426, -2648 - ], - [1, 3, 10884], - [0, 10885, 10886, 10887, 11], - [0, -3459, -1863, -5037, -15811], - [0, -3735, -15206, -1966, -2469], - [0, -8403, -7148], - [1, 3, 10889], - [0, 10890, 10891, 7, 4], - [0, -25, -668, -2066, -2114, -2550], - [0, -528, -15859, -15860, -10445, -1978, -2070, -2226, -2250, -2322, -2359], - [1, 3, 10893], - [0, 10894, 132, 58, 5], - [0, -15861, -996, -15388, -15399], - [1, 3, 10896], - [0, 0, 0, 10897, 4], - [0, -15862, -3445, -13986, -11867, -7685, -2006], - [1, 3, 10899], - [0, 0, 0, 10900, 6], - [0, -932, -3784, -2006, -2041, -5324], - [1, 3, 10902], - [0, 10903, 10904, 10905, 8], - [0, -479, -9493, -812, -1022, -2778, -1446, -1597, -2359], - [ - 0, -23, -40, -43, -528, -664, -756, -932, -951, -1168, -1174, -1197, -1212, -1220, -1231, -1252, -1654, -15863, - -1788, -1939 - ], - [0, -1168, -1446, -7674, -3214, -7841, -856], - [1, 3, 10907], - [0, 10908, 0, 10909, 4], - [0, -1371, -15448, -1645, -1469], - [0, -15318, -15719, -3445, -15449, -15450], - [1, 3, 10911], - [0, 10912, 10913, 7, 4], - [0, -15274, -652, -999, -1047, -1107, -2548], - [0, -15864, -11419, -15865, -357, -3037, -15866, -2177, -932, -2884, -2410], - [1, 3, 10915], - [0, 0, 91, 10916, 10], - [0, -5372, -5142, -7282, -2918, -11889, -5573], - [1, 3, 10918], - [0, 0, 10919, 10920, 10], - [0, -2391, -2851], - [0, -2476, -2486, -4634, -2851, -3636, -4215, -3634], - [1, 3, 10922], - [0, 0, 10923, 10924, 4], - [0, -527, -1168, -1171, -15867, -1187, -1229, -1243, -1248, -1252, -1262, -1942, -2128], - [0, -15868, -15869, -15870, -15871, -15872, -15873, -3162, -11853], - [1, 3, 10926], - [0, 10927, 10928, 7, 4], - [0, -15874], - [0, -2476, -4838, -15875], - [1, 3, 10930], - [0, 0, 10931, 10932, 6], - [ - 0, -15661, -190, -15876, -15877, -3037, -3664, -6593, -932, -940, -960, -978, -1431, -7060, -1534, -8436, -1942, - -15878, -15879, -2910, -2174, -2892, -2400, -2410, -2411, -2469 - ], - [ - 0, -15880, -10587, -12437, -11639, -5112, -14059, -1548, -1993, -10656, -3481, -3018, -3694, -2410, -2424, - -2444, -8113, -3590, -5260 - ], - [1, 3, 10934], - [0, 10935, 10936, 10937, 6], - [0, -14337, -5322], - [ - 0, -5053, -11754, -15881, -4062, -639, -734, -999, -1107, -9665, -1852, -2922, -7160, -2127, -2202, -2231, - -2410, -2924, -2923 - ], - [0, -7882, -928, -7760, -2923, -2127, -2501], - [1, 3, 10939], - [0, 0, 10940, 10941, 5], - [0, -190, -3664, -932, -958, -960, -15882, -971, -972, -1449, -2892, -15883, -2410, -2411, -2466, -2469], - [0, -9022, -2410, -4058, -3926, -6747, -15884, -8461, -11997], - [1, 3, 10943], - [0, 0, 0, 10944, 6], - [0, -5889, -9080, -9800], - [1, 3, 10946], - [0, 10947, 10948, 10949, 10], - [ - 0, -3819, -15885, -15886, -15887, -15888, -15889, -15890, -15891, -15892, -3117, -8915, -4836, -15893, -15874, - -15894, -15895, -15896, -15897, -15898, -15899, -15900, -15901, -15902, -15903, -15904, -15905, -15906, -15907, - -15908, -15909, -15910, -4816, -4817, -14358, -15911, -15912, -734, -6860, -15913, -15914, -15915, -15916, - -15917, -15918, -15919, -1085, -14174, -15920, -1588, -1651, -15921, -12267, -1852, -15922, -6569, -2317, - -15923, -2318, -2654, -11071, -2981, -15924, -15925, -15926, -15927 - ], - [ - 0, -15928, -15929, -15930, -4646, -15931, -4837, -4838, -15932, -2932, -932, -1278, -7300, -2091, -2423, -2469, - -15130, -15933, -2476, -5627 - ], - [0, -15934, -7300, -3944, -2318, -5511, -2476, -5173, -3527, -2410, -4591, -3160, -2316, -3161, -15935], - [1, 3, 10951], - [0, 0, 10952, 10953, 11], - [0, -3136, -1415, -2375, -2379, -2391, -2410], - [ - 0, -3445, -4791, -9915, -15936, -15937, -15938, -15939, -15940, -15941, -15942, -15943, -775, -5272, -3100, - -15944, -15945, -15946, -15947, -15948, -15949, -15950, -15951, -15952, -15953, -15954, -15955, -2410, -15956, - -15957, -15958, -15959, -15960, -15961, -15962, -15963, -15964 - ], - [1, 3, 10955], - [0, 10956, 10957, 134, 6], - [0, -2932, -2896], - [0, -1415, -932, -2127, -2375, -1942, -2410, -3136, -3040, -940, -967, -1419, -428, -427], - [1, 3, 10959], - [0, 0, 10960, 10961, 5], - [0, -3040, -3052, -2006, -2019, -2410], - [0, -2006, -8785, -3962, -15273], - [1, 3, 10963], - [0, 10964, 10965, 10966, 5], - [0, -15965, -15966, -15967], - [ - 0, -15968, -15969, -15970, -15971, -15972, -15973, -15974, -15975, -15976, -15977, -15978, -15979, -15980, - -15981, -15982, -15983, -15984, -15985, -15986, -15987, -15988, -15989, -15990 - ], - [0, -2931, -4004, -3634, -10817, -4873, -664, -507, -856, -15991, -15992, -15993, -1446, -6024, -8257], - [1, 3, 10968], - [0, 0, 287, 134, 5], - [1, 3, 10970], - [0, 10971, 10972, 10973, 5], - [ - 0, -15994, -15995, -15996, -15997, -15998, -15999, -16000, -16001, -16002, -13406, -16003, -16004, -16005, - -1699, -2641, -2564, -2650 - ], - [0, -4049, -3037, -3040, -3052, -2006, -2019, -2469, -16006], - [ - 0, -16007, -1713, -2455, -16008, -2006, -3098, -3160, -3100, -2316, -2955, -16009, -16010, -15932, -3475, - -16011, -16012, -16013, -16014, -16015, -16016, -16017, -16018, -16019, -16020, -16021 - ], - [1, 3, 10975], - [0, 0, 0, 10976, 4], - [0, -12059, -775], - [1, 3, 10978], - [0, 10979, 10980, 10981, 4], - [0, -10782, -10784, -10786, -10793, -10788, -1691], - [0, -3136, -3037, -756, -1415, -1942, -2080, -2091, -2153, -2375, -2379, -2892, -2409, -2410], - [0, -5406, -4847, -856], - [1, 3, 10983], - [0, 10984, 10985, 10986, 5], - [0, -2650, -4225], - [0, -2466, -2006, -1122, -2019, -6859, -406, -440, -409, -407, -5323], - [0, -2006, -1122, -16022, -3862, -856, -10446], - [1, 3, 10988], - [0, 10989, 10990, 10991, 5], - [ - 0, -1313, -1826, -865, -16023, -13074, -1582, -16024, -1125, -16025, -1456, -15672, -16026, -16027, -16028, - -16029, -16030, -16031, -16032, -3234, -16033, -16034, -8863 - ], - [ - 0, -2564, -2391, -932, -1111, -2127, -2469, -2378, -3665, -2410, -23, -3037, -16035, -16036, -16037, -16038, - -1025, -4776, -4049, -16039, -16040, -3664, -16041, -16042, -16043 - ], - [0, -15932, -16044, -16045, -9733, -16046, -16047, -16048, -16049, -16050, -10412, -3674, -2410, -16051, -3161], - [1, 3, 10993], - [0, 0, 10994, 10995, 5], - [0, -50, -409, -3136, -855, -1415, -2634, -1942, -2006, -2019, -2052, -2125, -2375, -2410], - [0, -2006, -2634, -9736, -1713, -3122, -4215, -4004, -3634], - [1, 3, 10997], - [0, 0, 10998, 10999, 6], - [ - 0, -262, -4066, -350, -351, -3561, -5295, -16052, -3136, -4647, -16053, -4837, -7438, -4838, -5593, -708, -740, - -767, -1415, -1419, -1449, -1534, -6518, -1942, -2127, -2140, -2142, -2214, -2645, -2318, -2375, -2410, -2466, - -2476, -2483, -2486, -8160 - ], - [ - 0, -2476, -3944, -16054, -16055, -16056, -15150, -2645, -16057, -2939, -7580, -15151, -16058, -2410, -16059, - -2363, -3162, -3214, -3095, -3160 - ], - [1, 3, 11001], - [0, 94, 0, 11002, 4], - [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -15071, -13615, -6527], - [1, 3, 11004], - [0, 11005, 11006, 261, 6], - [0, -16060, -4787, -3751, -1864, -1889, -2923, -2654], - [ - 0, -25, -3195, -3180, -14337, -13397, -5322, -4066, -350, -7151, -4785, -10046, -4371, -14331, -6410, -653, - -679, -729, -742, -754, -769, -5042, -865, -866, -14335, -928, -929, -989, -990, -14338, -14333, -7897, -1588, - -1651, -5036, -1699, -1805, -1839, -1852, -14332, -1863, -1906, -1907, -14336, -12601, -11751, -7160, -2127, - -2134, -2162, -3572, -2213, -14334, -2334, -3027, -11071, -2531 - ], - [1, 3, 11008], - [0, 0, 0, 11009, 4], - [0, -2034, -3159, -5270, -5271, -11511, -770, -3162, -510, -2191, -11524, -11526, -7103, -16061, -16062, -2446], - [1, 3, 11011], - [0, 0, 37, 288, 9], - [1, 3, 11013], - [0, 11014, 11015, 11016, 9], - [ - 0, -3165, -16063, -16064, -3168, -3698, -11418, -16065, -5772, -16066, -16067, -16068, -16069, -5702, -16070, - -8859, -3778, -16071, -16072, -16073, -16074, -16075, -16076, -16077, -16078, -16079, -16080, -16081, -16082, - -16083, -16084, -16085, -16086, -16087, -16088, -16089, -16090, -16091, -16092, -16093, -16094, -16095, -16096, - -16097, -16098, -16099, -16100, -8863, -16101, -16102, -16103, -16104, -16105, -16106, -16107, -16108, -16109, - -402, -16110, -16111, -16112, -15748, -16113, -16114, -16115, -16116, -16117, -16118, -15257, -485, -5674, - -16119, -13751, -743, -16120, -809, -812, -16121, -834, -16122, -16123, -2761, -1025, -14636, -1043, -2573, - -16124, -1125, -1329, -1349, -9775, -16125, -11895, -1359, -5193, -16126, -16127, -1495, -16128, -16129, -16130, - -1549, -16131, -1593, -16132, -1610, -10749, -16133, -16134, -1699, -2634, -1712, -16135, -16136, -11750, -1782, - -16137, -16138, -16139, -16140, -16010, -12273, -16141, -16142, -16143, -11926, -1855, -1857, -1867, -16144, - -1885, -16145, -8504, -16146, -1984, -1994, -2006, -16147, -2019, -4988, -16148, -2025, -16149, -6620, -16150, - -2042, -16151, -2044, -16152, -16153, -16154, -2093, -2095, -2096, -16155, -16156, -2177, -2193, -4245, -16157, - -2272, -2292, -16158, -2592, -2314, -16159, -16160, -2594, -16161, -2436, -16162, -2446, -16163, -2531, -2548, - -2564, -2650, -16164 - ], - [ - 0, -86, -14379, -16165, -16166, -16167, -16168, -16169, -16170, -10811, -16171, -3983, -5681, -3842, -407, -409, - -410, -16172, -16173, -3198, -3048, -16174, -4049, -3044, -3164, -3037, -16175, -16176, -16177, -16178, -3040, - -3052, -16179, -3199, -14748, -12969, -4231, -4204, -8200, -3664, -5329, -721, -734, -767, -772, -16180, -865, - -866, -16181, -16182, -16183, -932, -16184, -16185, -1077, -1107, -1278, -1344, -11415, -16186, -1534, -1548, - -1605, -16187, -1640, -1729, -1733, -12282, -1826, -1942, -2094, -4242, -16188, -2098, -11417, -2174, -16189, - -2281, -2392, -2400, -2410, -2427, -2429, -2466, -2469 - ], - [0, -3161, -16011, -16017, -1713, -16190, -16010, -16191, -16192, -16193, -16194], - [1, 3, 11018], - [0, 291, 135, 63, 5], - [1, 3, 11020], - [0, 11021, 131, 11022, 5], - [0, -8863, -3617, -719, -1004, -5193, -2426, -2564], - [0, -16195, -16196, -16197, -16198, -16199, -856, -10817], - [1, 3, 11024], - [0, 11025, 11026, 11027, 4], - [0, -4890, -13377], - [ - 0, -2213, -1852, -2006, -2218, -2177, -2469, -13380, -2019, -2369, -3654, -3517, -1639, -1863, -2654, -2410, - -3037, -3199, -14373, -4036, -5087, -16200, -2970 - ], - [0, -2257, -4895, -2469, -3634, -4004, -3095, -3098, -13422, -2006, -2476, -2299, -4902], - [1, 3, 11029], - [0, 11030, 11031, 11032, 5], - [0, -997, -16201, -16202], - [0, -2501, -3136, -3037, -2503], - [0, -4123, -8503, -4004, -3634, -16203, -5858], - [1, 3, 11034], - [0, 0, 11035, 11036, 4], - [ - 0, -526, -527, -534, -559, -562, -566, -567, -16204, -664, -16205, -13261, -796, -812, -829, -932, -943, -968, - -974, -1017, -1041, -1077, -1322, -1331, -1471, -1474, -1475, -1479, -16206, -7707, -1480, -1482, -1483, -16207, - -1484, -1487, -1488, -1492, -1654, -1753, -1860, -2125, -14439, -5471, -2174, -2416, -14648, -2437, -2501, -2505 - ], - [0, -3576, -8897, -16208, -12613, -12449, -2363, -13616, -11594, -3162], - [1, 3, 11038], - [0, 11039, 11040, 11041, 5], - [0, -16209, -16210], - [ - 0, -3040, -3052, -3804, -427, -428, -726, -932, -940, -967, -969, -16211, -16212, -1942, -2127, -2142, -2379, - -2387, -2410 - ], - [0, -16213, -16214, -16215, -2006, -5270, -5271, -3162, -16216], - [1, 3, 11043], - [0, 0, 11044, 11045, 6], - [0, -2006, -2034, -12566, -16217], - [ - 0, -2034, -9021, -5270, -5271, -16218, -16219, -16220, -16221, -3161, -2006, -16222, -5269, -3209, -5922, - -16223, -3682, -3970, -3110, -9437 - ], - [1, 3, 11047], - [0, 11048, 0, 11049, 6], - [0, -2954, -2934], - [0, -712, -775, -3215], - [1, 3, 11051], - [0, 0, 0, 11052, 9], - [0, -714, -775], - [1, 3, 11054], - [0, 11055, 11056, 11057, 6], - [ - 0, -16224, -23, -25, -3412, -42, -16225, -8863, -16226, -635, -719, -755, -815, -823, -834, -999, -1026, -1077, - -12417, -1343, -1496, -1683, -1729, -1805, -1816, -1889, -1931, -1966, -2066, -16227, -2317, -2378, -2383, - -2450, -2564, -8882 - ], - [0, -4776, -3048, -3735, -16228, -2125, -2391, -2400, -2410], - [0, -3098, -3160, -2316, -16007, -2955], - [1, 3, 11059], - [0, 0, 0, 11060, 6], - [0, -2006, -2476, -9608, -9614, -16229, -16230], - [1, 3, 11062], - [0, 0, 11063, 11064, 6], - [ - 0, -3136, -3037, -427, -428, -932, -936, -940, -958, -967, -968, -972, -978, -1107, -1415, -1942, -2125, -2127, - -2130, -12925, -2142, -2375, -2379, -2402, -2405, -7322, -2410 - ], - [0, -16231, -8785, -16232, -16233, -16234, -16235, -16236, -16237, -3173, -16238, -3966, -4865, -3100, -3445], - [1, 3, 11066], - [0, 0, 0, 11067, 6], - [ - 0, -16239, -4053, -16240, -16241, -16242, -16243, -16244, -16245, -16246, -16247, -16248, -16249, -16250, - -16251, -12512, -16252, -16253, -4055, -1456, -16254, -16244, -5495, -3100, -3214, -2410 - ], - [1, 3, 11069], - [0, 11070, 0, 73, 4], - [ - 0, -2984, -5766, -2860, -5758, -501, -523, -16255, -615, -16256, -14855, -1069, -1100, -1107, -9362, -8985, - -5880, -1548, -1574, -1666, -1705, -10270, -1875, -1878, -2060, -2115, -2160, -2177, -2194, -2297, -5764, -2400, - -2446, -2518, -2555 - ], - [1, 3, 11072], - [0, 11073, 11074, 11075, 4], - [0, -15224, -15226], - [0, -3037, -15229, -15230, -15231, -2125, -2892, -2410, -2469], - [0, -15227, -9668, -3690, -3445, -1348, -9780], - [1, 3, 11077], - [0, 11078, 11079, 11080, 4], - [ - 0, -1313, -1852, -2922, -6570, -2924, -11918, -12278, -7772, -6475, -4835, -1341, -16257, -8859, -12284, -8860, - -16258, -16259 - ], - [0, -2391, -2469, -5672, -6568, -2410, -3037, -8321, -16260, -2832, -11347], - [0, -1954, -10425, -16261, -8427, -3113, -7646, -3634], - [1, 3, 11082], - [0, 11083, 11084, 11085, 6], - [0, -16262, -16263], - [0, -16264, -767, -932, -1641, -16265, -1788, -1972, -16266, -2322], - [0, -5817, -5819, -5937, -13192, -5801, -16267, -16268, -5951, -5940, -5943, -16269, -3161], - [1, 3, 11087], - [0, 11088, 11089, 7, 4], - [0, -16270], - [0, -879, -2410, -7768], - [1, 3, 11091], - [0, 11092, 11093, 11094, 10], - [0, -2006, -2019, -16271], - [0, -1992, -2125, -2388, -2376, -1967, -2410, -23, -3037, -3040, -534, -3052, -3140, -520], - [0, -2356, -3488, -16272, -2006, -3496, -3264, -3494, -13460, -11889, -4258], - [1, 3, 11096], - [0, 0, 11097, 11098, 5], - [ - 0, -12182, -190, -4225, -16273, -16274, -4836, -16275, -407, -409, -410, -3269, -3732, -3661, -3037, -3040, - -3052, -16276, -14827, -651, -703, -724, -786, -932, -970, -2914, -1110, -1344, -1449, -1534, -1600, -1610, - -1889, -1942, -8918, -2006, -16277, -2019, -2965, -16278, -2044, -2140, -2144, -16279, -2193, -2213, -2317, - -2318, -2334, -16280, -2379, -2392, -2410, -2411, -11708, -2466, -6859, -15519, -2469, -16281, -2650 - ], - [0, -2006, -3476, -9614, -6409, -16282, -4108, -12682, -12683, -12684, -4002, -4672, -9133], - [1, 3, 11100], - [0, 11101, 11102, 11103, 5], - [0, -4785, -12535, -462, -674, -742, -812, -14335, -1026, -1077, -1451, -1588, -1852, -1863, -2041, -2127, -2153], - [ - 0, -16283, -16284, -4066, -350, -4062, -351, -365, -8894, -16285, -3202, -3198, -3048, -4963, -16286, -3037, - -3040, -3052, -427, -428, -440, -4837, -679, -928, -13212, -932, -969, -4981, -1771, -13593, -2006, -2019, - -2125, -2132, -6483, -2299, -2400, -2410, -2466, -16287, -2469, -2476 - ], - [0, -12913, -5044, -10366, -16288, -5195, -16289, -16290, -4865, -16291], - [1, 3, 11105], - [0, 11106, 11107, 7, 5], - [0, -797, -16292, -16293], - [ - 0, -652, -16294, -2392, -2466, -1449, -1654, -659, -932, -2127, -1110, -1942, -2378, -16295, -2468, -190, -2410, - -3037, -1440, -3621, -16296, -7273, -3244, -16297, -4062, -16298, -7274, -3266, -1602, -940, -350, -428, -351, - -427 - ], - [1, 3, 11109], - [0, 11110, 11111, 11112, 6], - [0, -8612, -1063, -1343, -16299], - [0, -4835, -3037, -16300, -1313, -1722, -2359], - [ - 0, -659, -13649, -16301, -16302, -11878, -6523, -6524, -6527, -5093, -16303, -7650, -16304, -16305, -6528, - -3839, -5057 - ], - [1, 3, 11114], - [0, 11115, 11116, 11117, 8], - [0, -16306], - [0, -2376, -2410, -2501, -2503, -2006, -2019, -3040, -3052], - [0, -2006, -16306, -6656, -6999, -9800, -16307, -6527, -3496, -7764, -16308, -5937, -5940, -5800, -8624], - [1, 3, 11119], - [0, 11120, 11121, 11122, 5], - [0, -14372, -13388, -5286], - [0, -2469, -1874], - [0, -4865, -1874, -3095, -7243, -4004, -3634], - [1, 3, 11124], - [0, 11125, 11126, 11127, 4], - [0, -502, -668, -679, -1098, -1099, -1125, -1304, -1351, -1535, -1610, -1978, -2177, -5977], - [0, -16309, -3802, -3199, -13186, -519, -659, -1788, -11926, -1942, -1944, -11491, -2379, -2384, -2410, -2541], - [0, -16310, -687, -16311, -856, -16312, -16313, -1599, -6528, -1978, -11096, -16314], - [1, 3, 11129], - [0, 11130, 11131, 278, 5], - [0, -668, -2550, -16315, -2823, -16316], - [0, -3037, -16317], - [1, 3, 11133], - [0, 11134, 91, 11135, 5], - [0, -2177, -2823, -16316, -16318], - [0, -15627, -15629, -15630, -4864, -3634, -3636], - [1, 3, 11137], - [0, 11138, 11139, 11140, 4], - [0, -16319, -16316, -16318, -2823], - [0, -2973, -16320, -15626, -5769, -1870, -11468], - [0, -15627, -15629, -15630, -4864, -3634, -3636, -11890], - [1, 3, 11142], - [0, 11143, 11144, 11145, 4], - [0, -719, -2683, -2822, -16321], - [0, -15624, -16322, -16323, -2983], - [0, -15279, -687, -3262, -856, -15280, -15281], - [1, 3, 11147], - [0, 11148, 0, 11149, 4], - [0, -16324], - [0, -15279, -15625, -16325, -16326, -856, -15280, -15281], - [1, 3, 11151], - [0, 94, 11152, 11153, 8], - [ - 0, -3307, -12564, -4646, -3136, -3044, -3040, -3141, -427, -428, -721, -932, -940, -967, -1344, -1415, -16327, - -1942, -2006, -2034, -12566, -2091, -2410 - ], - [0, -2034, -3159, -5270, -5271, -16328, -16329, -3162, -5269, -3095, -6107, -7067, -14498, -11378, -2319], - [1, 3, 11155], - [0, 11156, 11157, 11158, 10], - [0, -2340], - [0, -16178, -1857], - [0, -10425, -6321, -3634, -7606, -2340], - [1, 3, 11160], - [0, 11161, 11162, 7, 6], - [0, -3195, -1864, -4247], - [ - 0, -5694, -16224, -16330, -16331, -10097, -10098, -3037, -8523, -8200, -483, -8349, -16332, -928, -932, -16333, - -1431, -1534, -1588, -2923, -2127, -3246, -2892, -2410, -16334, -15822, -2466, -2469, -2501, -2503, -2981 - ], - [1, 3, 11164], - [0, 72, 0, 11165, 6], - [0, -15279, -15625, -16335, -856, -15280, -15281], - [1, 3, 11167], - [0, 11168, 0, 11169, 10], - [0, -16336], - [0, -15279, -15625, -16337, -6999, -856, -15280, -15281], - [1, 3, 11171], - [0, 11172, 0, 73, 5], - [0, -4716, -1548, -1582, -10515], - [1, 3, 11174], - [0, 0, 11175, 11176, 5], - [ - 0, -50, -190, -3035, -3664, -469, -932, -940, -1942, -2125, -2134, -2210, -2334, -2384, -2387, -2402, -2405, - -2411, -2466, -16338, -16339, -16340, -16341, -2468, -2469 - ], - [0, -16342, -5177, -3214, -2410, -16343, -16344, -6899, -16345, -3162], - [1, 3, 11178], - [0, 0, 11179, 11180, 5], - [ - 0, -50, -3037, -427, -428, -7438, -932, -940, -1003, -1654, -1942, -16346, -2134, -16347, -2210, -2402, -2405, - -2410, -2466, -16338, -16339, -16340 - ], - [0, -5177, -16343, -9475, -3999, -6899, -16345, -659, -7085, -3578, -3162], - [1, 3, 11182], - [0, 11183, 0, 11184, 4], - [0, -2357], - [0, -4144, -3214, -16348, -2987, -1942, -2410], - [1, 3, 11186], - [0, 0, 0, 11187, 4], - [ - 0, -3015, -16349, -1520, -15360, -10440, -1764, -1787, -5895, -7442, -1882, -2177, -7969, -3682, -16350, -16351, - -11713, -4304, -2552 - ], - [1, 3, 11189], - [0, 0, 11190, 7, 4], - [ - 0, -16352, -16353, -280, -16354, -16355, -350, -4062, -351, -7155, -4007, -11348, -16356, -16357, -11752, -719, - -831, -16358, -3459, -1863, -2144, -16359, -16360 - ], - [1, 3, 11192], - [0, 11193, 0, 73, 11], - [ - 0, -2959, -2860, -5758, -8864, -5761, -523, -615, -617, -1004, -11676, -1341, -1548, -1582, -1635, -1676, -1851, - -2185, -2400 - ], - [1, 3, 11195], - [0, 291, 135, 63, 11], - [1, 3, 11197], - [0, 11198, 135, 63, 11], - [0, -3947, -231, -2944, -2900], - [1, 3, 11200], - [0, 11201, 11202, 11203, 10], - [ - 0, -2564, -6860, -6415, -16361, -16362, -16363, -2292, -16364, -16365, -16122, -16366, -16367, -16368, -16369, - -16370, -5038, -16371, -5779, -5782 - ], - [0, -1683, -16178, -3631, -2410, -3037, -16372, -3617, -16373, -8859, -16374, -12285, -16375], - [ - 0, -16376, -16377, -14981, -16378, -16379, -3445, -16380, -16381, -16382, -11877, -16383, -16384, -16385, - -16386, -16387 - ], - [1, 3, 11205], - [0, 11206, 11207, 11208, 10], - [0, -1047, -1863, -1875], - [0, -11337, -3040, -825, -1802, -12566, -2410], - [ - 0, -2034, -5270, -5271, -12578, -7084, -12579, -3159, -12567, -2006, -3162, -3160, -3167, -3843, -9472, -9474, - -3827 - ], - [1, 3, 11210], - [0, 11211, 0, 11212, 8], - [0, -2460, -1641, -2683, -16324], - [0, -15279, -15625, -5398, -856, -15280, -15281], - [1, 3, 11214], - [0, 0, 11215, 11216, 9], - [ - 0, -16388, -15583, -21, -23, -3203, -38, -40, -16389, -16390, -3326, -3561, -528, -533, -10056, -10022, -15127, - -16391, -11899, -726, -865, -932, -956, -958, -9724, -1059, -11942, -13866, -1344, -1415, -5123, -12680, -4981, - -4982, -1868, -16392, -1942, -1952, -1978, -16346, -2127, -16393, -2134, -2140, -2144, -2184, -2410 - ], - [0, -3821, -3822, -3823, -3825, -16394, -16395], - [1, 3, 11218], - [0, 0, 11219, 11220, 9], - [0, -3266, -3621, -3037, -632, -664, -1654, -1753, -2127, -2344, -2410], - [ - 0, -16396, -2998, -16397, -7049, -5176, -16398, -15100, -16055, -15213, -6899, -11853, -16399, -16400, -12543, - -16401, -7198, -10724, -16402, -16403, -16404 - ], - [1, 3, 11222], - [0, 0, 70, 11223, 9], - [0, -13351, -16405], - [1, 3, 11225], - [0, 11226, 11227, 11228, 9], - [0, -16406, -16407, -16408, -16409, -16410], - [0, -683, -932, -16411, -16412, -1989, -2281, -2282, -2334], - [0, -2363, -3576, -16413, -12449, -12613, -13615, -14054, -4865], - [1, 3, 11230], - [0, 0, 11231, 11232, 9], - [0, -664, -824, -1168, -1187, -9293, -1208, -1224, -1243, -1262, -16414, -1654], - [0, -4123, -11154, -11158, -1666, -1667, -4121], - [1, 3, 11234], - [0, 0, 0, 11235, 9], - [0, -3003, -7184, -5493, -11151, -16415, -8451, -3579, -8590, -3215], - [0, 25, 9], - [1, 3, 11238], - [0, 11239, 0, 7, 9], - [0, -637], - [1, 3, 11241], - [0, 0, 11242, 11243, 9], - [0, -1032, -2322], - [0, -3006, -10504, -10684, -16416, -11972], - [1, 3, 11245], - [0, 0, 11246, 11247, 9], - [0, -1654, -1003, -6851, -16417, -16418, -1818, -510], - [0, -6106, -1818, -16418, -6851], - [1, 3, 11249], - [0, 0, 0, 11250, 9], - [0, -16419, -14311], - [1, 3, 11252], - [0, 11253, 0, 7, 9], - [0, -1980, -10802, -2550, -2520, -1691, -2424, -693, -7109, -714, -2525], - [1, 3, 11255], - [0, 11256, 11257, 11258, 9], - [0, -1967, -16420], - [ - 0, -21, -23, -36, -40, -41, -43, -509, -756, -915, -916, -932, -16421, -7894, -964, -969, -1449, -1654, -1788, - -2006, -2019, -15571, -16422 - ], - [0, -3839, -2034, -3010, -16423, -9682, -2006], - [1, 3, 11260], - [0, 0, 11261, 7, 9], - [ - 0, -23, -40, -350, -5995, -351, -535, -571, -633, -1413, -1471, -1472, -1475, -1476, -1481, -3569, -1491, -1978, - -2127, -2128, -16424, -8895, -16425, -8896, -2140, -2491 - ], - [1, 3, 11263], - [0, 0, 11264, 7, 9], - [0, -2125, -1650, -16426, -16427], - [1, 3, 11266], - [0, 0, 11267, 11268, 9], - [0, -21, -23, -40, -528, -557, -932, -934, -940, -958, -967, -1415, -1942], - [ - 0, -5845, -8799, -651, -16428, -3215, -16429, -7304, -6241, -8574, -12248, -6582, -1044, -6656, -8800, -3590, - -5845, -6473, -3240 - ] +"Flatpack JSON v2", +[128,"@alifd/next","@angular-devkit/core","@angular-devkit/schematics","@angular/animations","@angular/cdk", +"@angular/common","@angular/compiler","@angular/compiler-cli","@angular/core","@angular/forms","@angular/http", +"@angular/material","@angular/platform-browser","@angular/platform-browser-dynamic","@angular/platform-server", +"@angular/router","@ant-design/react-native","@ant-design/web3-common","@ant-design/web3-icons","@auth/sveltekit", +"@babel/cli","@babel/code-frame","@babel/core","@babel/helper-plugin-utils","@babel/parser", +"@babel/plugin-proposal-class-properties","@11ty/eleventy","@adobe/css-tools","@api-components/api-method-documentation", +"@apollo/client","@asyncapi/generator-react-sdk","@babel/eslint-parser","@babel/plugin-proposal-decorators", +"@babel/plugin-proposal-export-default-from","@babel/plugin-proposal-export-namespace-from", +"@babel/plugin-proposal-object-rest-spread","@babel/plugin-syntax-dynamic-import","@babel/plugin-transform-runtime", +"@babel/polyfill","@babel/preset-env","@babel/preset-react","@babel/preset-typescript","@babel/register", +"@babel/runtime","@babel/runtime-corejs2","@babel/traverse","@babel/types","@biz-dev-ops/md-docs","@bwcr_/winston-loki", +"@changesets/cli","@chatscope/chat-ui-kit-react","@ckeditor/ckeditor5-adapter-ckfinder","@ckeditor/ckeditor5-angular", +"@ckeditor/ckeditor5-autoformat","@ckeditor/ckeditor5-basic-styles","@ckeditor/ckeditor5-block-quote", +"@ckeditor/ckeditor5-build-balloon","@ckeditor/ckeditor5-build-balloon-block","@ckeditor/ckeditor5-build-classic", +"@ckeditor/ckeditor5-build-decoupled-document","@ckeditor/ckeditor5-build-inline","@ckeditor/ckeditor5-ckbox", +"@ckeditor/ckeditor5-ckfinder", +"@ckeditor/ckeditor5-clipboard","@ckeditor/ckeditor5-cloud-services","@ckeditor/ckeditor5-core", +"@ckeditor/ckeditor5-easy-image","@ckeditor/ckeditor5-engine","@ckeditor/ckeditor5-essentials", +"@ckeditor/ckeditor5-heading","@ckeditor/ckeditor5-image","@ckeditor/ckeditor5-indent","@ckeditor/ckeditor5-link", +"@ckeditor/ckeditor5-list","@ckeditor/ckeditor5-media-embed","@ckeditor/ckeditor5-paragraph", +"@ckeditor/ckeditor5-paste-from-office","@ckeditor/ckeditor5-react","@ckeditor/ckeditor5-table", +"@ckeditor/ckeditor5-typing","@ckeditor/ckeditor5-ui","@ckeditor/ckeditor5-upload","@ckeditor/ckeditor5-utils", +"@ckeditor/ckeditor5-vue","@ckeditor/ckeditor5-widget","@commitlint/cli","@compodoc/compodoc","@comunica/core", +"@contenthook/browser","@contenthook/cli","@contenthook/node","@coreui/coreui","@csstools/css-parser-algorithms", +"@csstools/css-tokenizer","@csstools/media-query-list-parser","@csstools/postcss-is-pseudo-class", +"@csstools/postcss-progressive-custom-properties","@csstools/selector-specificity","@cucumber/cucumber", +"@deven-org/documentation-skeleton","@devtea2026/aspernatur-ea-non-porro","@devtea2026/consectetur-ab-unde-quisquam", +"@devtea2026/cupiditate-dolorem-excepturi-impedit","@devtea2026/distinctio-soluta-illo-eaque", +"@devtea2026/eum-ullam-est-distinctio","@devtea2026/explicabo-alias-architecto-sed","@devtea2026/improved-journey", +"@devtea2026/inventore-facilis-corporis-cum","@devtea2026/ipsa-omnis-in-molestiae", +"@devtea2026/literate-computing-machine","@devtea2026/maxime-sequi-est-rem", +"@devtea2026/necessitatibus-dolorem-esse-atque","@devtea2026/odit-enim-reiciendis-pariatur", +"@devtea2026/odit-maxime-porro-asperiores","@devtea2026/possimus-ipsa-sint-consequuntur", +"@devtea2026/qui-quos-laborum-amet","@devtea2026/quia-ducimus-placeat-minima", +"@devtea2026/quidem-voluptate-repudiandae-necessitatibus","@devtea2026/rerum-quaerat-porro-animi", +"@devtea2026/ubiquitous-octo-memory","@diotoborg/adipisci-placeat-iure","@diotoborg/amet-architecto-est", +"@diotoborg/at-totam-perspiciatis","@diotoborg/commodi-voluptatum-libero", +"@diotoborg/delectus-necessitatibus-voluptatum","@diotoborg/deserunt-illo-tempora","@diotoborg/dicta-recusandae-veniam", +"@diotoborg/dolor-earum-quia","@diotoborg/dolor-tempora-fuga","@diotoborg/dolores-praesentium-assumenda", +"@diotoborg/eligendi-est-unde","@diotoborg/esse-accusantium-ratione","@diotoborg/illo-amet-architecto", +"@diotoborg/laudantium-itaque-esse","@diotoborg/libero-asperiores-at","@diotoborg/neque-inventore-corporis", +"@diotoborg/nostrum-eveniet-officiis","@diotoborg/odio-dolores-officia","@diotoborg/porro-modi-accusamus", +"@diotoborg/psychic-bassoon","@diotoborg/quasi-repellat-odit","@diotoborg/qui-ullam-ipsum", +"@diotoborg/quo-dolorem-ducimus","@diotoborg/ratione-error-odio","@diotoborg/repellat-blanditiis-quis", +"@diotoborg/tempora-voluptas-distinctio","@diotoborg/ullam-dignissimos-repudiandae","@diotoborg/velit-reiciendis-velit", +"@diotoborg/verbose-robot","@diplodoc/transform","@discordjs/rest","@disqada/workspace","@doc-tools/docs", +"@doc-tools/transform","@dramaorg/esse-praesentium-eligendi","@dramaorg/quae-dolore-nostrum","@eas-framework/server", +"@eightshift/frontend-libs","@electron/docs-parser","@emotion/babel-plugin","@emotion/core","@emotion/css", +"@emotion/styled","@erboladaiorg/ad-exercitationem-ducimus","@erboladaiorg/asperiores-earum-quaerat", +"@erboladaiorg/asperiores-fuga-sint","@erboladaiorg/asperiores-nam-adipisci","@erboladaiorg/autem-dolores-ipsam", +"@erboladaiorg/cupiditate-consectetur-porro","@erboladaiorg/cupiditate-pariatur-optio", +"@erboladaiorg/distinctio-tempora-quis","@erboladaiorg/error-atque-ea","@erboladaiorg/esse-ipsa-numquam", +"@erboladaiorg/ex-hic-molestias","@erboladaiorg/explicabo-eius-adipisci", +"@erboladaiorg/molestiae-voluptatibus-perferendis","@erboladaiorg/molestias-nulla-dolor","@erboladaiorg/nisi-culpa-cum", +"@erboladaiorg/officia-illum-aperiam","@erboladaiorg/perspiciatis-magni-ut","@erboladaiorg/quae-in-veniam", +"@erboladaiorg/quaerat-mollitia-adipisci","@erboladaiorg/quibusdam-itaque-tempora","@erboladaiorg/sint-deleniti-dolorem", +"@erboladaiorg/sit-nesciunt-amet","@erboladaiorg/tenetur-architecto-dolore","@erboladaiorg/ut-dignissimos-laborum", +"@erboladaiorg/velit-fugit-harum","@eslint-community/eslint-utils","@eslint/js","@fakeyanss/redoc", +"@floating-ui/react-dom","@fontsource/inter","@fontsource/roboto","@fortawesome/fontawesome-svg-core", +"@fortawesome/free-solid-svg-icons","@fortawesome/react-fontawesome","@grandlinex/core","@grandlinex/e-kernel", +"@grandlinex/kernel","@graphql-markdown/core","@graphql-markdown/docusaurus","@hajtech/webpack-config","@hapi/hapi", +"@hishprorg/aliquid-ad-vero","@hishprorg/autem-sint-quas","@hishprorg/cum-rem-consequuntur", +"@hishprorg/earum-sint-veritatis","@hishprorg/eius-vero-dicta","@hishprorg/est-dicta-quis", +"@hishprorg/incidunt-quibusdam-tempore","@hishprorg/itaque-esse-accusamus","@hishprorg/iure-optio-nihil", +"@hishprorg/magni-amet-id","@hishprorg/magni-nisi-aperiam","@hishprorg/maxime-voluptates-enim", +"@hishprorg/nihil-ad-ratione","@hishprorg/perspiciatis-ratione-unde","@hishprorg/quis-perferendis-culpa", +"@hishprorg/reprehenderit-excepturi-sed","@hishprorg/sint-nam-consequuntur","@hishprorg/sunt-officia-eligendi", +"@hishprorg/sunt-voluptatem-nobis","@hishprorg/unde-vitae-reprehenderit","@hishprorg/wafflejs", +"@homer0/prettier-plugin-jsdoc","@hookform/resolvers","@iamtraction/google-translate","@idux/cdk","@idux/components", +"@inquirer/core","@ionic/core","@isaacs/cliui","@istanbuljs/nyc-config-typescript","@itwin/itwinui-react","@jest/core", +"@jest/types","@jsonforms/core","@jsonforms/material-renderers","@jsonforms/react","@juigorg/nisi-molestiae-ut", +"@juigorg/sit-nam-neque","@jupyterlab/application","@kobedevi/sassdoc","@kollorg/dicta-itaque-nemo", +"@kollorg/nihil-veniam-deserunt","@libphamton/chatfanpage","@libphamton/fb-group","@listr2/prompt-adapter-inquirer", +"@mantine/core","@mantine/dates","@mantine/hooks","@mantine/modals","@mantine/notifications","@mantine/prism", +"@mantine/styles","@mantine/utils","@material-ui/core","@material-ui/icons","@mathematikoi/jsonapi","@mdx-js/react", +"@microsoft/api-extractor","@microsoft/tsdoc","@microsoft/tsdoc-config","@middy/core","@middy/http-json-body-parser", +"@middy/util","@ministryofjustice/frontend","@mswjs/interceptors","@mui/icons-material","@mui/lab","@mui/material", +"@mui/system","@mui/x-date-pickers","@neato/guider","@ng-doc/core","@ng-doc/ui-kit","@ng-doc/utils", +"@nomicfoundation/hardhat-chai-matchers","@npmcli/arborist","@npmcli/map-workspaces","@npmcli/node-gyp", +"@npmcli/run-script","@npmcorp/marky-markdown","@npmtuanmap/ex-vel-expedita-impedit","@npmtuanmap/psychic-guide", +"@npmtuanmap/recusandae-recusandae-nam-et","@npmtuanmap/sed-quo-nemo-rerum","@npmtuanmap/velit-esse-velit-magnam", +"@nrwl/devkit","@nrwl/tao","@nrwl/workspace","@nx/devkit","@nx/esbuild","@nx/eslint","@nx/express","@nx/js","@nx/nest", +"@nx/node","@nx/workspace","@oclif/command","@oclif/config","@oclif/core","@oclif/plugin-help","@octokit/rest", +"@opentiny/vue","@opentiny/vue-renderless","@opentiny/vue-theme","@opentiny/vue-theme-mobile","@otterhttp/cookie", +"@otterhttp/request","@otterhttp/response","@otterhttp/send","@pact-foundation/pact","@patrtorg/a-ad-expedita", +"@patrtorg/a-ut-amet","@patrtorg/asperiores-vel-accusantium","@patrtorg/aspernatur-dolorum-ducimus", +"@patrtorg/autem-et-hic", +"@patrtorg/consectetur-culpa-non","@patrtorg/consectetur-repudiandae-consequuntur", +"@patrtorg/consequatur-voluptatum-officiis","@patrtorg/ducimus-magni-quibusdam","@patrtorg/enim-magni-hic", +"@patrtorg/est-corrupti-deleniti","@patrtorg/eveniet-tempore-maiores","@patrtorg/illum-sapiente-quos", +"@patrtorg/laborum-doloribus-voluptate","@patrtorg/libero-doloribus-omnis","@patrtorg/libero-voluptas-sequi", +"@patrtorg/magnam-aut-adipisci","@patrtorg/maiores-quidem-quo","@patrtorg/molestias-molestias-ut", +"@patrtorg/nam-eius-unde","@patrtorg/pariatur-deleniti-quaerat","@patrtorg/porro-labore-eos","@patrtorg/quae-earum-eius", +"@patrtorg/quos-quasi-ipsa","@patrtorg/sapiente-eos-magnam","@patrtorg/sapiente-exercitationem-sit", +"@patrtorg/tenetur-animi-reprehenderit","@perseid/store","@phosphor/widgets","@phun-ky/speccer","@polymer/polymer", +"@qooxdoo/framework","@quasar/extras","@readyplayerme/visage","@reduxjs/toolkit","@rollup/plugin-commonjs", +"@rollup/plugin-node-resolve","@sanity/tsdoc","@scalar/api-reference","@scalar/fastify-api-reference", +"@serenity-js/protractor","@serenity-js/webdriverio","@sinonjs/fake-timers","@storybook/addon-docs", +"@subwallet/react-ui","@supernovaio/sdk","@supernovaio/sdk-exporters","@supernovaio/supernova-sdk", +"@sveltejs/eslint-config","@sveltejs/kit","@sveltejs/vite-plugin-svelte","@svgr/webpack","@swc/core", +"@swenkerorg/maiores-voluptatibus-nemo","@swenkerorg/modi-dolorum-provident","@swenkerorg/nulla-voluptates-voluptates", +"@swisspost/design-system-styles","@symbiotejs/symbiote","@synion/md-docs","@taktikorg/aut-distinctio-repellat", +"@taktikorg/consectetur-quo-quos","@taktikorg/corporis-nihil-odit","@taktikorg/deleniti-qui-dolorem", +"@taktikorg/dolor-ratione-quibusdam","@taktikorg/harum-reprehenderit-perferendis","@taktikorg/illum-accusamus-possimus", +"@taktikorg/ipsa-totam-aperiam","@taktikorg/iste-ex-tempore","@taktikorg/itaque-nam-eos", +"@taktikorg/itaque-tempore-exercitationem","@taktikorg/maiores-dolores-aut","@taktikorg/molestias-fuga-possimus", +"@taktikorg/nam-esse-animi","@taktikorg/necessitatibus-repudiandae-officia","@taktikorg/nisi-reprehenderit-amet", +"@taktikorg/placeat-voluptates-dolorum","@taktikorg/praesentium-dolorum-quis","@taktikorg/praesentium-neque-ipsam", +"@taktikorg/quo-reiciendis-quibusdam","@taktikorg/recusandae-ratione-veniam","@taktikorg/similique-natus-officia", +"@taktikorg/suscipit-modi-ratione","@taktikorg/tempore-veniam-in","@taktikorg/unde-animi-omnis", +"@taktikorg/velit-nobis-blanditiis","@taktikorg/voluptatem-pariatur-tenetur","@tanem/svg-injector", +"@tanstack/react-query","@tanstack/svelte-query","@teamhanko/hanko-frontend-sdk","@testing-library/cypress", +"@testing-library/dom","@testing-library/jest-dom","@testing-library/jest-native","@testing-library/react", +"@testing-library/user-event","@tinyhttp/app","@tinyhttp/cookie","@tinyhttp/cookie-signature","@tinyhttp/cors", +"@tinyhttp/etag","@tinyhttp/forwarded","@tinyhttp/proxy-addr","@tinyhttp/req","@tinyhttp/res","@tinyhttp/router", +"@tinyhttp/send","@tinyhttp/type-is","@tinyhttp/url","@tsparticles/engine","@twurple/ebs-helper","@types/estree", +"@typescript-eslint/eslint-plugin","@typescript-eslint/parser","@typescript-eslint/utils","@ucloud-fe/react-components", +"@udecode/plate-core","@uiw/react-button","@uiw/react-icon","@uiw/react-input","@uiw/react-overlay-trigger","@uiw/utils", +"@unleash/proxy","@uploadcare/file-uploader","@vitejs/plugin-legacy","@vitejs/plugin-react", +"@vue/eslint-config-typescript","@wesleytodd/openapi","@wuxh/dumi","@zitterorg/adipisci-quae-eius", +"@zitterorg/aspernatur-pariatur-occaecati","@zitterorg/at-esse-odit","@zitterorg/cum-ipsum-beatae", +"@zitterorg/doloremque-ut-omnis","@zitterorg/est-sunt-quos","@zitterorg/eum-veritatis-placeat", +"@zitterorg/fluffy-waddle","@zitterorg/glowing-barnacle","@zitterorg/illum-perferendis-consectetur", +"@zitterorg/itaque-nisi-veritatis","@zitterorg/probable-octo","@zitterorg/upgraded-fishstick", +"@zkportal/aleo-oracle-sdk","abort-controller","accepts","acl","acorn","acorn-walk","action-cli","adm-zip","after", +"agenda","aid-guard1","airtap","ajv","ajv-formats","although-line-wall-corn","amqp","amqplib","analsorhost-simple-bs", +"angular","angular-animate","angular-cli","angular-material","ansi-colors","ansi-escapes","ansi-regex","ansi-styles", +"ansis","ant-design-vue","antd","antfu","anyway-south-boy-pilot","api-console","apidoc","apidoc-markdown","apn", +"apollo-cache-inmemory","apollo-client","apollo-link","apollo-link-http","app-root-path","appium-android-driver", +"apple-transportation-web3-locate","applicationinsights","appsync-client-node","archiver","arg","argparse", +"arrangement-tell-arrange","array.prototype.flatmap","arrify","assert","assert-plus","assume","async","async-listen", +"async-retry","async-validator","atob","aud","auto-changelog","auto-install","autoprefixer","ava", +"awesome-typescript-loader","aws-sdk","axe-core","axios","azure-storage","babel","babel-cli","babel-core","babel-eslint", +"babel-generator","babel-helper-fixtures","babel-helper-plugin-test-runner","babel-helper-vue-jsx-merge-props", +"babel-jest","babel-loader","babel-plugin-add-module-exports","babel-plugin-dynamic-import-node", +"babel-plugin-external-helpers","babel-plugin-import","babel-plugin-istanbul","babel-plugin-lodash", +"babel-plugin-module-resolver","babel-plugin-named-asset-import","babel-plugin-syntax-dynamic-import", +"babel-plugin-syntax-jsx","babel-plugin-transform-async-to-generator","babel-plugin-transform-class-properties", +"babel-plugin-transform-decorators-legacy","babel-plugin-transform-es2015-block-scoping", +"babel-plugin-transform-es2015-modules-commonjs","babel-plugin-transform-es2015-template-literals", +"babel-plugin-transform-object-rest-spread","babel-plugin-transform-react-jsx", +"babel-plugin-transform-react-remove-prop-types","babel-plugin-transform-regenerator","babel-plugin-transform-runtime", +"babel-polyfill","babel-preset-airbnb","babel-preset-env","babel-preset-es2015","babel-preset-react", +"babel-preset-react-app","babel-preset-stage-0","babel-preset-stage-1","babel-preset-stage-2","babel-preset-stage-3", +"babel-register","babel-runtime","babel-template","babel-traverse","babel-types","babelify","babylon","backbone", +"baqend","bark-needs-visit4", +"base-64","base-individual-comfortable-crop","base64-js","basic-auth","batuta","bcrypt","bcrypt-nodejs","bcryptjs", +"bearcat","beautify-benchmark","beauty-foot-compass5","beefy","believed-usually-greater-passage","benchmark", +"best-lips-shoulder","best-valley2","between-cry-additional","beyond","bfj","bignumber.js","bindings","bip39", +"bizcharts","bl","blanket","blessed","blessed-contrib","blockchain-am5","blockchain-baby","blockchain-back1", +"blockchain-closely","blockchain-directly","blockchain-egg","blockchain-happily","blockchain-language","blockchain-own8", +"blockchain-record","blockchain-scientist","blocked","bluebird","bn.js","body-parser","bookshelf","boom","bootstrap", +"bootstrap-sass","bower","boxen","brain","branch-body-web3-feel","branch-camera-web3-organization","brfs", +"broccoli-funnel","broccoli-merge-trees","broccoli-test-helper","brought-tried-whether8","browser-sync","browserify", +"browserify-shim","browserslist","bs58","bson","btoa","buble", +"buffer","buffer-equal","bufferutil","built-who-entire","builtin-modules","bulma","bump-cli","bundle-collapser","bunyan", +"busboy","bytebuffer","bytes","c8","cac","cache-manager","call-bind","camelcase","caniuse","caniuse-lite","canvas", +"careful-faster-dirty-matter","case-sensitive-paths-webpack-plugin","casperjs","caught-brain-service0","chai", +"chai-as-promised","chai-passport-strategy","chai-subset","chalk","chance","chance-able-necessary-bell","change-case", +"changelogen","chart.js","cheerio","chicken-fell-spread","child_process","child-process-promise","choerodon-ui", +"chokidar","ci-info","ckeditor5","classnames","clean-css","clean-webpack-plugin","clear","clear-module","cli", +"cli-boxes","cli-color","cli-cursor","cli-spinner","cli-spinners","cli-table","cli-table2","cli-table3","cli-truncate", +"cli-ux","clipanion","clipboard","clipboardy","cliui","clone","clsx", +"clui","co","co-prompt","code","codecov","codemirror","coffee-script","coffeescript","color","colorette","colors", +"columnify","command-exists","command-line-args","command-line-usage","commander","commitizen","commitlint", +"common-tags","component-emitter","compression","concat-stream","concurrently","config","configstore","connect", +"connect-flash","connect-history-api-fallback","connect-mongo","connect-redis","consola","consolidate", +"content-disposition","content-type","contenthook","conventional-changelog","conventional-changelog-cli", +"conventional-changelog-conventionalcommits","convert-source-map","cookie","cookie-parser","cookie-session", +"cookie-signature","copy-to-clipboard","copy-webpack-plugin","copyfiles","corcojs-qrcode","corcojs-qrcode-logo", +"cordova","core-js","cors","cosmiconfig","coveralls","cpy-cli","crawler","crc","create-hash","create-react-class", +"critical","cron","croner","cronnor","cropperjs","cross-env", +"cross-fetch","cross-spawn","crypto","crypto-browserify","crypto-js","cson-parser","cspell","css", +"css-declaration-sorter","css-functions-list","css-loader","css-minimizer-webpack-plugin","css-select","css-tree", +"cssdb","cssesc","cssnano","cssstyle","csstype","csurf","csv","csv-generate","csv-parse","csv-stringify","csvtojson", +"cucumber","cuid","cypress","cz-conventional-changelog","d3","d3-array","d3-scale","d3-selection","d3-shape", +"dable-effect","daisyui","dance-you-thou","dargs","datafire","date-fns","dateformat","dayjs","deasync","debounce", +"debug","decamelize","decompress","dedent","dedupe","deep-assign","deep-consist-ability3","deep-diff","deep-eql", +"deep-equal","deep-extend","deepmerge","del","del-cli","delay","depcheck","depd","dependency-check","depth-clay-tax7", +"detect-indent", +"detect-port","did-enter-lay","diff","diff2html","difference-mile-pocket5","directed-graph-typed","dirty-chai", +"discord-backend-manager","discord.js","dist","distance-its-clear-rate","dmd","dmd-grunt-jsdoc2md","dnd-multi-backend", +"dnode","doc-detective","doc-detective-core","docco","docgen","dockerode","docpad","docschema","docsify-tabs","doctoc", +"documentation","documentdb","docusaurus","docusaurus-lunr-search","dom-helpers","dom-serializer","dom-to-image-more", +"dompurify","dot","dotenv","dotenv-expand","download","download-git-repo","doxdox","doxdox-cli","doxdox-core", +"doxdox-parser-dox","doxdox-parser-jsdoc","doxdox-renderer-bootstrap","doxdox-renderer-json","doxdox-renderer-markdown", +"draft-js","dropzone","dtslint","dubnium","dumi","dumi-cm","duplexer","dw-neit-antd","each","echarts","eclint","ejs", +"elasticsearch","electricity-death-web3-story","electron","electron-builder","electron-packager","electron-prebuilt", +"electron-rebuilder", +"element-resize-detector","element-ui","eleventy","elliptic","email-templates","emailjs","ember-cli","ember-cli-babel", +"ember-cli-htmlbars","emmet","emotion","encodeurl","end-of-stream","enhanced-resolve","enquirer","ent","enumtype", +"envify","envinfo","enzyme","enzyme-adapter-react-16","enzyme-adapter-utils","enzyme-shallow-equal","errorhandler", +"es-check","es-value-fixtures","es5-ext","es5-shim","es6-error","es6-promise","es6-promisify","es6-shim","esbuild", +"escape-html","escape-string-regexp","escodegen","eslint","eslint-config-airbnb","eslint-config-airbnb-base", +"eslint-config-airbnb-typescript","eslint-config-google","eslint-config-gulp","eslint-config-oclif", +"eslint-config-oclif-typescript","eslint-config-prettier","eslint-config-react-app","eslint-config-semistandard", +"eslint-config-standard","eslint-config-unjs","eslint-config-xo","eslint-config-xo-lass","eslint-doc-generator", +"eslint-import-resolver-typescript","eslint-loader","eslint-plugin-ava","eslint-plugin-babel","eslint-plugin-compat", +"eslint-plugin-es5","eslint-plugin-eslint-comments","eslint-plugin-eslint-plugin","eslint-plugin-flowtype", +"eslint-plugin-html","eslint-plugin-import","eslint-plugin-jest", +"eslint-plugin-jsdoc","eslint-plugin-jsonc","eslint-plugin-jsx-a11y","eslint-plugin-markdown","eslint-plugin-mocha", +"eslint-plugin-n","eslint-plugin-node","eslint-plugin-prettier","eslint-plugin-promise","eslint-plugin-react", +"eslint-plugin-react-hooks","eslint-plugin-regexp","eslint-plugin-security","eslint-plugin-sonarjs", +"eslint-plugin-standard","eslint-plugin-svelte","eslint-plugin-testing-library","eslint-plugin-tsdoc", +"eslint-plugin-unicorn","eslint-plugin-vitest","eslint-plugin-vue","eslint-remote-tester","eslint-scope", +"eslint-visitor-keys","eslintrc","esm","espree","esprima","estraverse","estree-walker","etag","ethereumjs-tx", +"ethereumjs-util","evalmd","event-stream","eventemitter2","eventemitter3","events","excellent-difficult-good","execa", +"exit","expect","expect-type","expect.js","express","express-adexe","express-autodoc","express-generator", +"express-handlebars","express-jwt","express-session","express-tools","express-typed-rpc","express-validator", +"express-zod-api","extend","extend-shallow","extract-text-webpack-plugin","extract-zip","facing-cook", +"fair-tower-web3-store","faker","fancy-log","fast-check", +"fast-csv","fast-deep-equal","fast-glob","fast-plist","fast-xml-parser","fastclick","fastify","father","faucet","fbjs", +"fe-pilot","feature-rising-small7","femo","fetch-mock","fibers","figlet","figures","file-loader","file-saver", +"file-type","filesize","finalhandler","find-cache-dir","find-up","findup-sync","firan-logging","firebase", +"firebase-admin","firebase-tools","fixpack","fixturify","flat","flatpak-bundler","flatpickr","flightplan","flow-bin", +"flowbite","fluent-ffmpeg","flux","follow-redirects","font-awesome","for-each","forever", +"fork-ts-checker-webpack-plugin","fork-ts-checker-webpack-plugin-alt","form-data","formidable","formik","fresh", +"fresh-dangerous","friendly-errors-webpack-plugin","front-matter","fs","fs-extra","fs-jetpack","fs-promise","fsevents", +"fstream","ftp","functions-have-names","fur-race-web3-pale","fuse.js","futen","fuzzy", +"gaze","gc-signals","generator-angular","generator-gulp-angular","generator-nitro","generic-pool","gensequence", +"gentle-party-other","geolib","get-package-type","get-port","get-stdin","get-stream","get-tsconfig","getmac","gh-pages", +"ghooks","github","github-buttons","glob","glob-parent","global","globals","globby","gm","gmll","google-spreadsheet", +"googleapis","got","government-letter-web3-till","govuk-frontend","graceful-fs","gradually-current-chief","graph-these", +"graphql","graphql-tag","graphql-tools","gray-matter","grpc","grunt","grunt-angular-templates","grunt-auto-release", +"grunt-browserify","grunt-bump","grunt-cli","grunt-concurrent","grunt-contrib-clean","grunt-contrib-compass", +"grunt-contrib-concat","grunt-contrib-connect","grunt-contrib-copy","grunt-contrib-csslint","grunt-contrib-cssmin", +"grunt-contrib-htmlmin","grunt-contrib-imagemin","grunt-contrib-internal","grunt-contrib-jshint","grunt-contrib-less", +"grunt-contrib-nodeunit","grunt-contrib-sass","grunt-contrib-uglify","grunt-contrib-watch", +"grunt-conventional-changelog","grunt-conventional-github-releaser", +"grunt-eslint","grunt-jscs","grunt-jsdoc","grunt-karma","grunt-mocha-test","grunt-newer","grunt-notify","grunt-npm", +"grunt-sass","grunt-saucelabs","grunt-shell","grunt-simple-mocha","grunt-spritesmith","grunt-usemin","gts","guarapi", +"gulp","gulp-angular-templatecache","gulp-atom-electron","gulp-autoprefixer","gulp-awspublish","gulp-azure-storage", +"gulp-babel","gulp-bom","gulp-bower","gulp-browserify","gulp-buffer","gulp-bump","gulp-cache","gulp-cached", +"gulp-changed","gulp-clean","gulp-clean-css","gulp-coffee","gulp-compass","gulp-concat","gulp-concat-css", +"gulp-conflict","gulp-connect","gulp-copy","gulp-csscomb","gulp-csslint","gulp-cssnano","gulp-csso","gulp-data", +"gulp-eslint","gulp-file-include","gulp-filter","gulp-flatmap","gulp-flatten","gulp-format-md","gulp-ftp", +"gulp-gh-pages","gulp-git","gulp-gzip","gulp-handlebars","gulp-header","gulp-html-replace","gulp-htmlmin", +"gulp-iconfont","gulp-if","gulp-ignore","gulp-image-resize","gulp-imagemin", +"gulp-include","gulp-inject","gulp-inline-css","gulp-install","gulp-istanbul","gulp-jade","gulp-jasmine","gulp-jscs", +"gulp-jshint","gulp-json-editor","gulp-less","gulp-livereload","gulp-load-plugins","gulp-minify-css","gulp-minify-html", +"gulp-mocha","gulp-newer","gulp-ng-annotate","gulp-nodemon","gulp-notify","gulp-plugin-extras","gulp-plumber", +"gulp-postcss","gulp-preprocess","gulp-prompt","gulp-react","gulp-remote-src","gulp-rename","gulp-replace","gulp-rev", +"gulp-rev-replace","gulp-ruby-sass","gulp-sass","gulp-sftp","gulp-shell","gulp-size","gulp-sourcemaps", +"gulp-strip-debug","gulp-stylus","gulp-svg-sprite","gulp-svgmin","gulp-svgstore","gulp-template","gulp-tsb", +"gulp-tslint","gulp-typescript","gulp-uglify","gulp-uncss","gulp-usemin","gulp-useref","gulp-util","gulp-vinyl-zip", +"gulp-watch","gulp-webpack","gulp-webserver","gulp-zip","gulp.spritesmith","gzip-size","hallmark","hammerjs", +"handlebars","hapi","happy-dom","happy-meant", +"hard-cool-rhythm-continued","has-flag","has-parts-ice-fact","has-symbols","hash-sum","hasown","hast-util-raw", +"hast-util-sanitize","hast-util-select","hast-util-to-estree","hast-util-to-html","hast-util-to-jsx-runtime", +"hast-util-to-string","hast-util-to-text","hastscript","hay-against-any-hurry","hbs","he","heapdump","helmet", +"heroicons","hexlet-pairs","hexo","highland","highlight.js","hiredis","history","history-brass-sound", +"hit-running-special8","hoek","hogan.js","hoist-non-react-statics","homebridge","hono","hope-slight-walk1", +"hosted-git-info","how-to-npm","html-dom-parser","html-element-attributes","html-encoding-sniffer","html-entities", +"html-escaper","html-loader","html-minifier","html-minifier-terser","html-pdf","html-react-parser","html-tags", +"html-to-image","html-to-text","html-validate","html-webpack-plugin","htmlnano","htmlparser2","http","http-errors", +"http-proxy","http-proxy-agent","http-proxy-middleware","http-server","http-status","http-status-codes","https", +"https-proxy-agent", +"husky","hyperquest","hyphenate-style-name","i","i18n","i18next","i18next-gridly-backend","iconv-lite", +"identity-obj-proxy","ignore","image-size","imagemagick","imagemin","imagemin-pngquant","imap","immer", +"immutability-helper","immutable","import-fresh","import-local","impress","in-publish","indent-string","inert","inferno", +"inflection","inherits","ini","iniparser","ink","inline-style-parser","innosetup-compiler","inquirer", +"inquirer-autocomplete-prompt","inside-throw","instagram-node","install","interpret","intl","intl-tel-input","invariant", +"inversify","ionic","ionicons","ioredis","ip","irc","is","is-ci","is-glob","is-installed-globally","is-plain-obj", +"is-plain-object","is-potential-custom-element-name","is-promise","is-stream","is-url","is-wsl","isarray","isobject", +"isomorphic-fetch","istanbul","itwcw-package-analytics","iview", +"jackspeak","jade","jake","jarallax","jasmine","jasmine-core","jasmine-node","jest","jest-canvas-mock","jest-cli", +"jest-diff","jest-environment-jsdom","jest-environment-jsdom-fourteen","jest-environment-node","jest-extended", +"jest-html-reporters","jest-junit","jest-pnp-resolver","jest-resolve","jest-util","jest-watch-typeahead","jest-worker", +"jimp","jiti","jodit","jodit-react","johnny-five","joi","jotai","jquery","jquery-ui","js-base64","js-beautify", +"js-cookie","js-yaml","jsarch","jscpd","jscs","jsdoc","jsdoc-api","jsdoc-to-markdown","jsdom","jsdom-no-contextify", +"jsesc","jshint","jshint-stylish","json-2-csv","json-loader","json-schema","json-server","json-stable-stringify", +"json-stringify-safe","json5","jsonc-parser","jsonfile","jsonschema","JSONStream","jsonwebtoken","jspm","jstates", +"jszip","jwt-decode","jwt-simple","karma", +"karma-browserify","karma-browserstack-launcher","karma-chai","karma-chrome-launcher","karma-coverage", +"karma-detect-browsers","karma-edge-launcher","karma-firefox-launcher","karma-ie-launcher","karma-jasmine","karma-mocha", +"karma-mocha-reporter","karma-phantomjs-launcher","karma-qunit","karma-rollup-preprocessor","karma-safari-launcher", +"karma-sauce-launcher","karma-sinon","karma-sourcemap-loader","karma-spec-reporter","karma-webpack","keycode","keypress", +"keyv","kleur","knex","knip","known-css-properties","knox","koa","koa-body","koa-bodyparser","koa-compose","koa-logger", +"koa-mount","koa-router","koa-static","kue","lab","label-lungs-court4","language-perfectly-blow-series", +"late-dress-mail5","latest-version","lazy.js","lead-alike-web3-applied","leaflet","left-pad","leftpad","lerna","less", +"less-loader","level","leveldown","levelup","leven","libnpmdiff","libnpmexec","libnpmfund","libphonenumber-js","liftoff", +"lilconfig","linkifyjs","lint-staged","listr", +"listr2","lit-element","lite-server","live-server","livereload","load-grunt-config","load-grunt-tasks","loader-utils", +"local-web-server","localforage","localtunnel","lockfile-lint","lodash","lodash-es","lodash.assign","lodash.camelcase", +"lodash.clonedeep","lodash.debounce","lodash.defaults","lodash.flatten","lodash.foreach","lodash.get","lodash.isempty", +"lodash.isequal","lodash.isfunction","lodash.isobject","lodash.isplainobject","lodash.isstring","lodash.map", +"lodash.memoize","lodash.merge","lodash.omit","lodash.pick","lodash.set","lodash.template","lodash.throttle", +"lodash.uniq","log","log-symbols","log-update","log4js","loglevel","long","loopback","loose-envify","lowdb","lru-cache", +"lucide","luck-rubber-do","lwip","lws","madwizard","magic-string","magmastream","main-bower-files","make-dir", +"make-node","mammoth","manifest","mantine-contextmenu","many-favorite6","map-stream","mapboxgl-legend","markdown", +"markdown-it","markdown-it-anchor","markdown-it-container","markdown-it-emoji","markdown-pdf","markdown-table", +"markdown-to-jsx","markdown-toc","markdownlint","markdownlint-cli","marked","marky-markdown","matcha","material-ui", +"mathjs","matter-view-web3-fence","md5","md5-file","mdast-util-from-markdown","mdast-util-to-hast","mdn-data","mdxts", +"memcached","memfs","memoize-one","memory-cache","memory-fs","memorystream","memwatch","mental-oxygen-dozen","meow", +"merge","merge-stream","metalsmith","meteor","method-override","methods","microbundle","micromark","micromatch","mime", +"mime-types","min-heap-typed","mini-css-extract-plugin","minify","minimatch","minimist","mirror-jet-printed-supper", +"missing-sport-living","mkcert","mkdirp","mlly","mobx","mobx-react","mocha","mocha-headless-chrome", +"mocha-junit-reporter","mocha-lcov-reporter","mock-fs","mock-property","mock-require","mock-stdin","mockdate","mockery", +"mockjs","moleculer","moment","moment-timezone","monaco-yaml","monads-io","mongo-express","mongodb","mongoose","monitor", +"monitor-dashboard","monk","morgan","motor-positive-spirit","move-wolf-throughout","movie-obtain-tail-prepare","mqtt", +"ms","mssql","msw","mud-slowly-five3","multer","multimatch","multiparty","multiple-cucumber-html-reporter","mustache", +"muuri","mysql","mysql2","mz","n","nails-wild-interest-garden","nan","nano","nano-css","nanoid","native-keymap", +"nativefier","nativescript","natural","nconf","ncp","near-social-bridge","nedb","needle","nest-commander","newman", +"newrelic","next-auth","nextjs","ng-mocks","ng-zorro-antd","ngrok","nib","nightmare","nightwatch","nine-yes-merely6", +"nise","nock","node-addon-api","node-cache","node-containerpattern","node-dev","node-dir", +"node-emoji","node-fetch","node-forge","node-gcm","node-geocoder","node-gyp","node-html-parser","node-inspector", +"node-mocks-http","node-notifier","node-oauth2-server","node-powertools","node-pre-gyp","node-pty","node-red", +"node-sass","node-schedule","node-static","node-uuid","node-watch","node-windows","node-xlsx","node.extend","nodegit", +"nodemailer","nodemon","nodeunit","nodewebkit","nolangjs","nomnom","nopt","normalize-path","normalize-url", +"normalize-wheel","normalize.css","np","npm","npm-check","npm-check-updates","npm-package-arg","npm-package-json-lint", +"npm-packlist","npm-registry-fetch","npm-run-all","npm-run-all2","npm-run-path","npm-to-yarn","npm-windows-upgrade", +"npmcli","npmignore","npmlog","nprogress","nsp","nuke-cli","numeral","nunjucks","nvm","nvmrc","nwsapi","nx","nyc","oas", +"oas-normalize","oauth", +"object-assign","object-hash","object-inspect","object-keys","object-path","object.assign","object.entries", +"observe-food-motion-hidden","on-finished","once","onchange","one-how-hand","onoff","open","open-cli", +"openapi-client-axios","openapi2html","opencv","opener","openweather","opn","optimist", +"optimize-css-assets-webpack-plugin","optionator","ora","orchestrator","orm","os","osenv","outdent","outline-slowly", +"overlayscrollbars","ovsx","p-event","p-map","p-queue","p-timeout","p23","pa11y","pacote","pageres","paintor","pako", +"para-cli","para-client-js","parallelshell","parse","parse5","parseurl","passport","passport-facebook","passport-local", +"passport-oauth","passport-oauth2","passport-strategy","path","path-browserify","path-exists","path-is-absolute", +"path-to-regexp","pathe","paypal-server-api","pdfjs","pdfkit", +"performance-now","pg","phantom","phantomjs","phantomjs-prebuilt","phonegap","pi-gpio","picocolors","picomatch", +"pie-case-nor-great","pify","pino","pinst","pitch-somehow-earth-brave","pixelmatch","pkg-dir","pkg-up","pkginfo", +"playwright","plist","plugin-error","plur","pluralize","pm2","pngjs","pnp-webpack-plugin","pnpm","pnpx", +"poe-api-manager","polished","political-plan-careful","popper.js","portfinder","postcss","postcss-calc","postcss-cli", +"postcss-color-functional-notation","postcss-colormin","postcss-convert-values","postcss-cssnext","postcss-custom-media", +"postcss-custom-properties","postcss-custom-selectors","postcss-discard-comments","postcss-discard-duplicates", +"postcss-discard-empty","postcss-discard-overridden","postcss-flexbugs-fixes","postcss-html", +"postcss-image-set-function","postcss-import","postcss-load-config","postcss-loader","postcss-merge-longhand", +"postcss-merge-rules","postcss-minify-font-values","postcss-minify-gradients","postcss-minify-params", +"postcss-minify-selectors","postcss-modules-local-by-default","postcss-nested","postcss-nesting","postcss-normalize", +"postcss-normalize-charset", +"postcss-normalize-positions","postcss-normalize-string","postcss-normalize-unicode","postcss-normalize-url", +"postcss-normalize-whitespace","postcss-ordered-values","postcss-prefix-selector","postcss-preset-env", +"postcss-reduce-initial","postcss-safe-parser","postcss-scss","postcss-selector-parser","postcss-svgo", +"postcss-unique-selectors","postcss-value-parser","postgrejs","posthtml","pouchdb","power-assert","pre-commit","preact", +"prepare-package","prettier","prettier-plugin-jsdoc","prettier-plugin-organize-imports","prettier-plugin-packagejson", +"prettier-plugin-svelte","prettierrc","pretty-bytes","pretty-error","pretty-format","pretty-ms","pretty-quick", +"prettyjson","prisma","prismjs","private-bower","proc-log","process","progress","progress-bar-webpack-plugin","promise", +"promise-polyfill","promises-aplus-tests","promo-server","prompt","prompts","prop-types","property-information", +"protobufjs","protractor","proxy","proxyquire","publish-please","pug","pull-stream","pump","punycode","puppeteer", +"purgecss","q","qr-image","qrcode-terminal","qs", +"query-string","querystring","queue","queue-typed","quill","qunit","qunit-dom","qunitjs","raf","ramda","random-words", +"randombytes","randomstring","range-parser","raven","raw-body","raw-loader","rc","rc-slider","rc-tooltip","rc-util", +"rcw-plugin","react","react-addons-css-transition-group","react-addons-shallow-compare","react-apollo", +"react-app-polyfill","react-bootstrap","react-color","react-copy-to-clipboard","react-datepicker","react-dev-utils", +"react-dnd","react-dnd-html5-backend","react-docgen","react-dom","react-dropzone","react-error-overlay","react-helmet", +"react-hook-form","react-hot-loader","react-i18next","react-icons","react-intersection-observer","react-intl","react-is", +"react-lifecycles-compat","react-markdown","react-modal","react-motion","react-native","react-native-keychain", +"react-native-vector-icons","react-number-format","react-onclickoutside","react-property","react-redux","react-refresh", +"react-responsive","react-router","react-router-dom","react-router-redux","react-scripts","react-select", +"react-slick","react-styleguidist","react-svg","react-tap-event-plugin","react-test-renderer","react-toastify", +"react-tools","react-transition-group","react-virtualized","reactify","reactstrap","read","read-pkg","read-pkg-up", +"readable-stream","readline","readline-sync","recall-shut-say","recast","recently-building-save","rechoir","recompose", +"recursive-readdir","redis","redoc","redocusaurus","redux","redux-actions","redux-form","redux-logger","redux-saga", +"redux-thunk","reflect-metadata","regenerate","regenerator-runtime","rehype","rehype-autolink-headings", +"rehype-external-links","rehype-mdx-code-props","rehype-parse","rehype-raw","rehype-slug","rehype-stringify", +"release-it","remap-istanbul","remark","remark-cli","remark-gfm","remark-html","remark-mermaidjs","remark-parse", +"remark-preset-github","remark-preset-wooorm","remark-rehype","remarkable","replace-ext","replace-in-file","request", +"request-promise","request-promise-native","require-all","require-dir","requireindex","requirejs", +"reselect","resize-observer-polyfill","resolve","resolve-from","resolve-url-loader","rest-chronicle","restify","restler", +"restore-cursor","rethinkdb","retry","rewire","rfdc","rimraf","robotjs","rollup","rollup-plugin-babel", +"rollup-plugin-buble","rollup-plugin-cleanup","rollup-plugin-commonjs","rollup-plugin-dts","rollup-plugin-json", +"rollup-plugin-license","rollup-plugin-node-builtins","rollup-plugin-node-globals","rollup-plugin-node-resolve", +"rollup-plugin-replace","rollup-plugin-sourcemaps","rollup-plugin-terser","rollup-plugin-typescript", +"rollup-plugin-typescript2","rollup-plugin-uglify","rollup-plugin-visualizer","rollup-pluginutils","routes","rsnext", +"rsvp","rtlcss","run-sequence","run-series","rx","rxjs","rxjs-compat","safe-buffer","safe-publish-latest","sails", +"salt-type-oldest-faster","sand-have-metal6","sanitize-filename","sanitize-html","sass","sass-loader","sat-local","sax", +"scheduler","schema-markdown-doc","schema-utils","science-knowledge-truth","seblakhotspicy","secp256k1","seedrandom", +"selenium-webdriver","semantic-release","semantic-ui-react", +"semistandard","semver","send","seneca","sentiment","sequelize","serialize-javascript","serialport","serve", +"serve-favicon","serve-index","serve-static","server-destroy","serverless-finch","serverless-spy","sha1","shallowequal", +"sharp","shell-quote","shelljs","shinning-continued-becoming","shortid","should","showdown","shx","sick-typical-court7", +"signal-exit","similar-cheese-loss","simple-assi-animation","simple-git","simple-prompts-web3","single-spa", +"sink-mighty-orbit0","sink-rod-lamp","sinon","sinon-chai","sinopia","sirv","size-limit","sizeitup","skapi-js", +"sky-buy-web3-rock","slash","slice-ansi","slow-deps","slow-voice-spell-pass","slug","slugify","small-grow-mix4", +"snake-seven-recall-interior","snazzy","soap","socket.io","socket.io-client","sockjs-client","source-map", +"source-map-js","source-map-loader","source-map-support","space-separated-tokens","spectaql", +"speech-section-part-frozen","spirit-labor-cheese","split", +"split2","spring-dust-wall-size","sprintf","sprintf-js","sprity","sqlite3","ssh2","ssri","st.db","stack-trace", +"standard","standard-version","star-location","start-server-and-test","statsd","statuses","stock-independent-balloon", +"storybook","storybook-django","straiforos-compodoc","strange-lady-riding9","stream-assert","stream-transform", +"streamii","strftime","string","string-strip-html","string-width","stringify-entities","strip-ansi","strip-bom", +"strip-json-comments","stripe","strongloop","style-dictionary","style-loader","style-to-js","style-to-object", +"styled-components","styled-jsx","stylehacks","stylelint","stylelint-config-standard", +"stylelint-declaration-strict-value","stylelint-order","stylelint-scss","stylus","stylus-loader", +"sugar-policeman-entire","sugarss","sun-grass-circle0","superagent","superjson","supertest","supertest-as-promised", +"supervisor","support-vessels-web3-vessels","supports-color","surrounded-characteristic-or-rain","svelte","svelte-check", +"svelte-preprocess","svg-sprite","svgo", +"sw-precache-webpack-plugin","swagger-autogen","swagger-inline","swagger-themes","swagger-ui-express", +"swam-darkness-weak","swig","swiper","sync-request","systeminformation","systemjs","tail-iron-became5","tailwind", +"tailwind-merge","tailwindcss","tap","tap-spec","tapable","tape","tar","tar-fs","tar-stream","tarant", +"tarant-sync-router-express","tdl","tdlib-native","temp","tempy","terminal-kit","terminal-menu","terser", +"terser-webpack-plugin","test-cutting","test-runner","test-snippets","testcafe","testcontainers","testdouble","testem", +"text-table","three","throttle-debounce","through","through2","throw-did-darkness4","thunkify","tildify","time-grunt", +"tinper-bee","tiny-lr","tinybench","tinycolor2","tinymce","tinypool","tinyspy","tmp","toastify-react-native","tocbot", +"toml","touch","tough-cookie","tracer","traffic-carry-opinion","train-stick-swept7", +"traverse","tree-kill","tribe-leaving-basket","trpc","trumpet","ts-cache-mongoose","ts-japi","ts-jest","ts-loader", +"ts-migrate-mongoose","ts-morph","ts-node","ts-patch-mongoose","ts-pnp","ts-rule-engine","tsconfig-paths","tsd", +"tsd-lite","tshy","tslib","tslint","tslint-config-prettier","tslint-react","tsup","tsx","turndown","tv4","tweetnacl", +"twemoji","twit","twitter","type-coverage","type-fest","type-is","typedoc","typedoc-material-theme", +"typedoc-plugin-extras","typedoc-plugin-markdown","typedocs","typegen","typegoose","typeorm","typescript", +"typescript-eslint","typescript-formatter","typescript-plugin-css-modules","typings","uglify-es","uglify-js", +"uglifyjs-webpack-plugin","uid-safe","uiw","uj-apidoc-core","ulid","ultrahtml","unbuild","underscore", +"underscore.string","undici","unified","unique-random-array","unist-util-visit","untildify","unusual-rope", +"unzip","update-notifier","urijs","url","url-join","url-loader","url-parse","urllib","user","user-home","useragent", +"utf8","util","utils-merge","uuid","uvu","valid-url","validate-commit-msg","validate-npm-package-name","validator", +"vant","vary","vasync","vercel","verror","vhost","victory-mouth","viewerjs","vinyl","vinyl-buffer","vinyl-fs", +"vinyl-source-stream","vinyl-sourcemaps-apply","virtual-dom","vite","vite-plugin-api-routes","vitepress","vitest", +"vorpal","vows","vsce","vscode-debugprotocol","vscode-nls-dev","vscode-textmate","vue","vue-class-component", +"vue-eslint-parser","vue-hot-reload-api","vue-i18n","vue-loader","vue-property-decorator","vue-router", +"vue-style-loader","vue-template-compiler","vuex","walk","walk-sync","warning","watch","watchify","waterline","wd", +"web3","web3-be", +"web3-capital","web3-compass","web3-eve-cli","web3-exactly6","web3-fruit","webpack","webpack-bundle-analyzer", +"webpack-cli","webpack-dev-middleware","webpack-dev-server","webpack-hot-middleware","webpack-manifest-plugin", +"webpack-merge","webpack-node-externals","webpack-sources","webshot","websocket","webtorrent","webworker-threads", +"weinre","whatwg-fetch","when","which","winreg","winston","winston-daily-rotate-file","winston-transport","wiredep", +"word-wrap","wordwrap","workbox-webpack-plugin","world-toy-kill","wrap-ansi","wrench","write-file-atomic","ws","x-ray", +"xhr","xlsx","xml-js","xml2js","xml2json","xmlbuilder","xmldom","xmlhttprequest","xo","xpath","xregexp","xss","xstate", +"xtend","xterm","yaml","yamljs","yargs","yargs-parser","yarn","yarnpkg","yarnrc","yauzl","yeoman-environment", +"yeoman-generator","yn","yo", +"yoctocolors-cjs","yonode","yosay","zmq","zod","zod-http-schemas","zombie","zone.js","zuul","@nx/cypress", +"@nx/eslint-plugin","@nx/jest","@nx/storybook","framer-motion","teajusgula","@mui/styled-engine","jsdoc-parse", +"@commercetools-frontend/constants","downshift","postcss-focus-visible","@augment-vir/common","@biomejs/biome", +"@commercetools-frontend/mc-scripts","@jsonforms/vanilla-renderers","@jsonforms/vue","@jsonforms/vue-vanilla", +"hast-util-from-html","hot-shots","madr","native-run","rehype-katex","supports-hyperlinks","swr","typed-binary", +"ua-parser-js","void-elements","@adonisjs/core","@aneuhold/be-ts-lib","@capacitor/assets", +"@devtea2025/blanditiis-numquam-expedita-neque","@devtea2025/doloremque-voluptas-facere-nemo", +"@devtea2025/quisquam-quod-ab-aut","@devtea2025/suscipit-assumenda-a-assumenda", +"@devtea2025/voluptatibus-vero-magni-rerum","@diahkomalasarinpm/odio-facilis-beatae", +"@diahkomalasarinpm/praesentium-sint-dolorem","@enact/core","@envelop/core","@ionic/cli","@jsonforms/angular", +"@jsonforms/examples","@npmtea2024/quasi-nisi-doloremque-fugit","@ptkhanh94npm/iusto-libero-aperiam", +"@ptkhanh94npm/quis-saepe-velit","@renyii/vue-renderless","@teamteanpm2024/aperiam-fugit-error", +"@teamteanpm2024/architecto-alias-quod","@teamteanpm2024/aut-voluptatum-vero","@teamteanpm2024/beatae-aliquid-id", +"@teamteanpm2024/expedita-labore-ipsum","@teamteanpm2024/odio-fugiat-in", +"@teamteanpm2024/voluptatibus-reprehenderit-odit","@testing-library/react-hooks","@zibuthe7j11/deserunt-quasi-impedit", +"anser","aws-sdk-client-mock","cupertino-pane","eruda","fasteejs","foundation-sites","gradient-string","grommet", +"html-url-attributes","magnific-popup","next","postcss-opacity-percentage","pwa-asset-generator","rapidoc", +"react-native-animatable","react-native-collapsible","react-swipeable-list","react-textarea-autosize","readme-md", +"recharts","riot","sortablejs","tdesign-mobile-vue","uploadcare-widget","wait-on","weui","zustand","fontsource","nextra", +"synckit","tinyglobby","tstyche","@ibyar/expressions","@mantine/carousel","@mantine/code-highlight","@mantine/dropzone", +"@mantine/nprogress","@mantine/spotlight","@mantine/store","@mantine/tiptap","allure-js-commons","express-intlayer", +"is-mobile","rehype-mermaid","@bugsnag/react-native","@enact/ui","@enact/webos","@ionic/angular", +"@npmtuanmap/velit-nobis-nostrum-nam","@skylernpm/hic-inventore-dolores","@skylernpm/reiciendis-non-corrupti", +"admin-lte","backendless","smartbanner.js","zarm","@enact/sandstone","perfect-scrollbar","react-responsive-select", +"titanium","@antora/logger","@asyncapi/generator","@docusaurus/core","@ionic/react","@juggle/resize-observer", +"@mui/base","@mui/private-theming","@mui/utils","@nestjsx/crud","@nestjsx/crud-typeorm","@netlify/framework-info", +"@next/env","@pmmmwh/react-refresh-webpack-plugin","@pothos/core","@storybook/addon-backgrounds","@strapi/strapi", +"@svgr/core","@svgr/hast-util-to-babel-ast","@tinyhttp/encode-url","@tinyhttp/logger", +"@tsparticles/interaction-external-push","@tsparticles/move-base","@tsparticles/shape-emoji", +"@tsparticles/updater-color","@tsparticles/updater-opacity","@tsparticles/updater-out-modes","@uppy/companion", +"@vuepress/core","@vuepress/markdown","@vuepress/markdown-loader","@vuepress/plugin-active-header-links", +"@vuepress/plugin-last-updated","@vuepress/plugin-nprogress","@vuepress/plugin-register-components", +"@vuepress/plugin-search","@vuepress/shared-utils","@vuepress/theme-default","@walletconnect/browser-utils", +"@walletconnect/iso-crypto","@walletconnect/legacy-modal","@walletconnect/legacy-provider", +"@walletconnect/socket-transport","@wordpress/primitives","angular-messages","angular-mocks","ansi-align", +"blocking-proxy","body-scroll-lock","broccoli","broccoli-builder","broccoli-middleware","browserstack","camelcase-css", +"character-entities","character-entities-html4","character-entities-legacy","character-reference-invalid","client-only", +"color-string","comma-separated-tokens","condense-newlines","css-mediaquery","css.escape","csso","dashdash", +"decap-cms-backend-aws-cognito-github-proxy","decap-cms-backend-azure","decap-cms-backend-bitbucket", +"decap-cms-backend-git-gateway", +"decap-cms-backend-github","decap-cms-backend-gitlab","decap-cms-backend-proxy","decap-cms-backend-test", +"device-detector-js","docsify","docsify-cli","dom7","enzyme-to-json","epub2","escape-goat","esdoc", +"eslint-rule-documentation","globals-docs","hast-util-is-element","hast-util-parse-selector","hast-util-to-parse5", +"hast-util-whitespace","html-parse-stringify","html-void-elements","http-graceful-shutdown","icss-utils", +"inferno-create-element","inferno-hydrate","inferno-vnode-flags","infima","ink-docstrap","jasminewd2", +"jest-preset-angular","jest-preview","logging-helpers","lws-index","micromark-extension-gfm-tagfilter", +"micromark-util-encode","micromark-util-html-tag-name","mobile-detect","nth-check","parse-entities","postcss-js", +"postcss-modules-values","query-selector-shadow-dom","rc-hammerjs","rdme","react-colorful","react-device-detect", +"react-easy-router","react-fast-compare","react-native-file-viewer","react-native-lightbox-v2","react-native-progress", +"react-native-svg-charts","react-native-youtube-iframe","react-popper","react-responsive-modal","react-style-singleton", +"text-hex","tsparticles","tua-body-scroll-lock","typedoc-default-themes","use-callback-ref","use-sidecar","vconsole", +"vitefu","vue-perfect-scrollbar", +"vuepress","wait-for-expect","webdriver-js-extender","webdriver-manager","widest-line","worktop", +"@antora/playbook-builder","@applitools/utils","@dataui/crud","@mui/types","@tsparticles/shape-circle", +"@tsparticles/updater-life","@tsparticles/updater-rotate","drag-drop","plasmo","react-h5-audio-player", +"@arethetypeswrong/cli","arethetypeswrong","astro","astrojs","cookiecutter","degit","tseslint","@web/test-runner-mocha", +"colord","@expressots/core","@tsparticles/interaction-particles-links","@astrojs/starlight", +"@expressots/adapter-express","@expressots/shared","@tsparticles/interaction-external-bounce", +"@tsparticles/interaction-external-remove","@tsparticles/move-parallax","@tsparticles/shape-polygon", +"@tsparticles/shape-square","pinia","@floating-ui/react","@tsparticles/shape-image","astro-expressive-code", +"netlify-cms-backend-test","rehype-expressive-code","@augment-vir/assert","cssfilter", +"@amaui/icons-material-rounded-react","@appium/types","@dataui/crud-typeorm","@tsparticles/basic", +"@tsparticles/updater-size","@onesy/icons-material-rounded-react","@tsparticles/interaction-external-grab", +"@tsparticles/interaction-particles-collisions","react-native-macos","@tsparticles/interaction-external-repulse", +"@tsparticles/slim","@ionic/react-router","@immobiliarelabs/backstage-plugin-gitlab-backend","@tsparticles/shape-star", +"kuler","@scalar/nextjs-api-reference","netlify-cms-backend-bitbucket","vendors","@busy-hour/blaze", +"@busy-hour/blaze-types","payload", +"attw","@egjs/flicking","body-scroll-lock-upgrade","@casl/ability","neostandard","@appium/schema","@modern-js/utils", +"@types/xast","css-what","grunt-svgmin","@modern-js/node-bundle-require","@axe-core/playwright","tsdown", +"careful-downloader","sonner","@ckeditor/ckeditor5-collaboration-core","embla-carousel-reactive-utils","react-smooth", +"globrex","@ckeditor/ckeditor5-real-time-collaboration","@inquirer/type","grammy","@tsparticles/plugin-hex-color", +"@tsparticles/plugin-hsl-color","@udecode/plate","loki","netlify-cms-backend-gitlab","teeny-tap","emoji-js","mercurius", +"publint","unbundle","@walletconnect/http-connection","convex-helpers","eslint-plugin-react-refresh","gulp-jsdoc3", +"netlify-cms-backend-git-gateway","borp","pagefind","@pinia/testing","leaflet-gesture-handling","@headlessui/vue", +"remeda","rolldown","valibot","netlify-cms-backend-proxy","lefthook","@nuxt/ui","country-codes-flags-phone-codes", +"embla-carousel-react","input-otp","zoroaster","embla-carousel","@assistant-ui/react","@csstools/css-calc", +"@globalart/nestjs-swagger","@graphiql/plugin-doc-explorer","@mastra/core","next-router-mock","vue-draggable-next", +"@tsparticles/plugin-rgb-color","react-native-lightbox","rolldown-vite","react-native-aes-crypto", +"@inquirer/figures","@lobehub/chat","@inquirer/confirm","@upstash/context7-mcp","@storybook/addon-vitest", +"@walletconnect/heartbeat","lory.js","react-camera-pro","react-native-nitro-modules","@csstools/css-color-parser", +"@csstools/color-helpers","shadcn","@tanstack/virtual-core","otp-io","survey-core","@appium/support","@intlayer/api", +"@prisma/dev","@architect/asap","canvaskit-wasm","@edsdk/n1ed-react","react-error-boundary","@crxjs/vite-plugin", +"@observablehq/plot","skia-canvas","@flmngr/flmngr-react","@vitest/browser-playwright","md-to-pdf","@applitools/eyes", +"@applitools/driver","@applitools/screenshoter","@tsparticles/interaction-external-slow","@tsparticles/shape-line", +"@antora/cli","@antora/navigation-builder","@openspacelabs/react-native-zoomable-view","@testcontainers/postgresql", +"unplugin","@antora/redirect-producer","@antora/site-publisher","@appium/logger","planck","stage-js","oxfmt","syncpack", +"nolyfill","@appium/base-driver","@inquirer/expand","@inquirer/select","@c15t/backend", +"@react-native-vector-icons/common","@antora/content-classifier","@tsparticles/interaction-particles-attract", +"@popperjs/core","animejs","blurup","encryptor","flickity","jstz","lexxy","mapboxgl","mongoid","nums","orms", +"pannellum","psql","svgs","swiperjs","tributejs","twbs","xbytes","dependencies","devDependencies","keywords","ts", +"big.js","@alifd/field","@alifd/overlay","@alifd/validate","shallow-element-equals","@types/react-transition-group", +"jsonp","ts-mocha","tsconfck","@types/co","html5shiv","react-axe","sass-true","@types/md5","react-live","solarlunar", +"@types/chai","@types/glob","@types/node","mochawesome","@types/jsonp","@types/react","@types/yargs","@types/big.js", +"@types/enzyme","@types/lodash","react-cropper","@types/webpack","simulate-event","@types/fs-extra","@types/inquirer", +"chrome-launcher","react-draggable","@types/react-dom","@types/stylelint","console-polyfill","fast-sass-loader", +"@alifd/doc-parser","@alifd/meet-react","@types/babel-core","@types/classnames","markdown-it-prism","@alifd/sass-mapper", +"@types/react-redux","@alifd/sass-tracker","@types/postcss-calc","@alifd/api-extractor","@alifd/dts-generator", +"babel-plugin-espower","es6-promise-polyfill","@alifd/adaptor-helper","@alifd/sassdoc-parser","eslint-plugin-cypress", +"cypress-image-snapshot","@alifd/adaptor-generate","@types/lodash.clonedeep","@types/react-router-dom", +"@alifd/babel-preset-next","@babel/plugin-syntax-jsx","css-split-webpack-plugin","karma-webdriver-launcher", +"@alifd/eslint-config-next","@types/react-test-renderer","node-sass-package-importer","stylelint-csstree-validator", +"@alifd/stylelint-config-next","stylelint-config-recommended","@types/cypress-image-snapshot", +"@types/react-copy-to-clipboard","babel-plugin-generator-prettier","@types/postcss-custom-properties", +"babel-plugin-transform-object-assign","babel-plugin-transform-proto-to-assign", +"babel-plugin-transform-react-es6-displayname","fusion","fusion design","component","ui toolkit","react-components", +"components","design","frontend","Angular CLI","Angular DevKit","core","devkit","sdk","blueprints","code generation", +"scaffolding","schematics","template","tooling","cdk","development","kit","@jridgewell/sourcemap-codec","compiler", +"@standard-schema/spec","material","material design","xhr2","@types/dom-navigation","router","rc-field-form", +"utility-types","lodash.mergewith","lodash.assignwith","normalize-css-color","react-native-codegen", +"@floating-ui/react-native","@rc-component/mini-decimal","react-native-modal-popover", +"@bang88/react-native-ultimate-listview","bisheng","jsonml.js","enquire.js", +"@types/jest","shell-utils","react-native-web","@ant-design/tools","@types/prop-types","@types/react-native", +"ant-design-palettes","react-github-button","react-native-mocker","react-document-title","react-native-screens", +"antd-mobile-demo-data","@react-navigation/stack","@types/lodash.mergewith","react-native-reanimated", +"@react-navigation/native","react-native-gesture-handler","@testing-library/react-native", +"@ant-design/icons-react-native","react-native-safe-area-context","metro-react-native-babel-preset", +"@react-native-community/eslint-config","ant","react-component","ui","framework","mobile","react native", +"@types/lodash-es","@ant-design/icons","@inline-svg-unique-id/react","icon","@auth/core","set-cookie-parser", +"@sveltejs/package","@sveltejs/adapter-auto","@types/set-cookie-parser","authentication","authjs","jwt","sveltekit", +"oidc","passwordless","fs-readdir-recursive","@jridgewell/trace-mapping","@types/fs-readdir-recursive", +"@babel/helper-transform-fixture-test-runner","6to5","es6","transpile","transpiler","js-tokens", +"@babel/helper-validator-identifier","charcodes","import-meta-resolve","gensync","@babel/helpers","@babel/template", +"@babel/generator","@jridgewell/remapping","@babel/helper-module-transforms","@babel/helper-compilation-targets", +"@types/debug","@types/semver", +"@types/resolve","@babel/plugin-syntax-flow","@types/convert-source-map","@babel/plugin-transform-flow-strip-types", +"@babel/plugin-transform-modules-commonjs","classes","const","harmony","let","modules","var","@babel/helper-fixtures", +"@babel/helper-string-parser","@babel/helper-check-duplicate-nodes","javascript","parser","tc39","ecmascript", +"@babel/helper-create-class-features-plugin","@babel/helper-plugin-test-runner","babel-plugin","moo","luxon","entities", +"liquidjs","iso-639-1","bcp-47-normalize","dependency-graph","@11ty/lodash-custom","@11ty/posthtml-urls", +"please-upgrade-node","@11ty/eleventy-utils","@11ty/recursive-copy","@11ty/dependency-tree","@sindresorhus/slugify", +"node-retrieve-globals","posthtml-match-helper","@11ty/dependency-tree-esm","@11ty/eleventy-dev-server", +"@11ty/eleventy-plugin-bundle","pretty","@iarna/toml","nano-staged","@zachleat/noop","@eslint/eslintrc", +"markdown-it-abbr","simple-git-hooks","jsx-async-runtime","@11ty/eleventy-img","@mdx-js/node-loader", +"@vue/server-renderer","zod-validation-error","@11ty/eleventy-plugin-rss","@11ty/eleventy-plugin-webc", +"@11ty/eleventy-plugin-syntaxhighlight","static-site-generator","static-site","ssg","website","jekyll","blog", +"templates","generator","11ty", +"html","liquid","@rollup/plugin-terser","@rollup/plugin-typescript","@types/benchmark","@types/bytes","stringifier", +"stylesheet","ast","css-parser","css-ast","css-tools","format","preprocessor","@advanced-rest-client/arc-icons", +"@advanced-rest-client/arc-marked","@advanced-rest-client/clipboard-copy","@advanced-rest-client/http-code-snippets", +"@advanced-rest-client/markdown-styles","@anypoint-web-components/anypoint-button", +"@anypoint-web-components/anypoint-collapse","@anypoint-web-components/anypoint-dropdown", +"@anypoint-web-components/anypoint-item","@anypoint-web-components/anypoint-listbox","@api-components/amf-helper-mixin", +"@api-components/api-annotation-document","@api-components/api-body-document","@api-components/api-example-generator", +"@api-components/api-headers-document","@api-components/api-parameters-document", +"@api-components/api-responses-document","@api-components/api-security-documentation", +"@api-components/http-method-label","lit-html","@advanced-rest-client/arc-demo-helper", +"@advanced-rest-client/oauth-authorization","@anypoint-web-components/anypoint-checkbox", +"@anypoint-web-components/anypoint-input","@anypoint-web-components/anypoint-styles", +"@api-components/api-model-generator","@api-components/api-navigation","@api-components/api-request", +"@api-components/api-server-selector","@commitlint/config-conventional","@open-wc/eslint-config","@open-wc/testing", +"@web/dev-server","@web/test-runner","@web/test-runner-playwright","typescript-lit-html-plugin","api-components", +"method-documentation","@graphql-typed-document-node/core","@wry/caches","@wry/equality","@wry/trie","optimism","apollo", +"hooks","client","cache","@asyncapi/parser","@rollup/plugin-babel","babel-plugin-source-map-support", +"asyncapi","@nicolo-ribaudo/eslint-scope-5-internals","@types/eslint","@typescript-eslint/scope-manager", +"@babel/plugin-syntax-decorators","array.prototype.concat","babel-plugin-polyfill-es-shims", +"object.getownpropertydescriptors","decorators","@babel/plugin-syntax-export-namespace-from","@babel/compat-data", +"@babel/plugin-syntax-object-rest-spread","@babel/plugin-transform-parameters","@babel/helper-module-imports", +"babel-plugin-polyfill-corejs2","babel-plugin-polyfill-corejs3","babel-plugin-polyfill-regenerator", +"@babel/runtime-corejs3","derequire","core-js-compat","@babel/preset-modules","@babel/helper-validator-option", +"@babel/plugin-transform-for-of","@babel/plugin-transform-spread","@babel/plugin-transform-classes", +"@babel/plugin-transform-literals","@babel/plugin-transform-new-target","@babel/plugin-transform-modules-amd", +"@babel/plugin-transform-modules-umd","@babel/plugin-transform-regenerator","@babel/plugin-transform-dotall-regex", +"@babel/plugin-transform-json-strings","@babel/plugin-transform-object-super","@babel/plugin-transform-sticky-regex", +"@babel/plugin-transform-block-scoping","@babel/plugin-transform-destructuring","@babel/plugin-transform-function-name", +"@babel/plugin-transform-typeof-symbol","@babel/plugin-transform-unicode-regex","@babel/plugin-syntax-import-assertions", +"@babel/plugin-syntax-import-attributes","@babel/plugin-transform-duplicate-keys", +"@babel/plugin-transform-dynamic-import","@babel/plugin-transform-reserved-words", +"@babel/plugin-syntax-unicode-sets-regex","@babel/plugin-transform-arrow-functions", +"@babel/plugin-transform-private-methods","@babel/plugin-transform-unicode-escapes", +"@babel/plugin-transform-class-properties","@babel/plugin-transform-modules-systemjs", +"@babel/plugin-transform-regexp-modifiers","@babel/plugin-transform-numeric-separator", +"@babel/plugin-transform-optional-chaining","@babel/plugin-transform-property-literals", +"@babel/plugin-transform-template-literals","@babel/plugin-transform-async-to-generator", +"@babel/plugin-transform-class-static-block","@babel/plugin-transform-object-rest-spread", +"@babel/plugin-transform-unicode-sets-regex","@babel/plugin-transform-computed-properties", +"@babel/plugin-transform-shorthand-properties","@babel/plugin-transform-export-namespace-from", +"@babel/plugin-transform-block-scoped-functions","@babel/plugin-transform-optional-catch-binding", +"@babel/plugin-transform-unicode-property-regex","@babel/plugin-transform-exponentiation-operator", +"@babel/plugin-proposal-private-property-in-object","@babel/plugin-transform-async-generator-functions", +"@babel/plugin-transform-member-expression-literals","@babel/plugin-transform-private-property-in-object", +"@babel/plugin-transform-nullish-coalescing-operator","@babel/plugin-transform-explicit-resource-management", +"@babel/plugin-transform-logical-assignment-operators","@babel/plugin-transform-named-capturing-groups-regex", +"@babel/plugin-bugfix-firefox-class-in-computed-class-key","@babel/plugin-bugfix-safari-class-field-initializer-scope", +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", +"@babel/plugin-transform-duplicate-named-capturing-groups-regex", +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression","@babel/plugin-transform-react-jsx", +"@babel/plugin-transform-react-display-name","@babel/plugin-transform-react-jsx-development", +"@babel/plugin-transform-react-pure-annotations","@babel/plugin-transform-typescript","babel-preset","pirates", +"clone-deep","@babel/helper-globals","@apidevtools/json-schema-ref-parser","@biz-dev-ops/web-components", +"@cucumber/gherkin-streams","@iframe-resizer/child","@iframe-resizer/parent","awilix","bpmn-js", +"json-schema-merge-allof","markdown-it-attrs","markdown-it-codetabs","markdown-it-footnote","markdown-it-multimd-table", +"markdown-it-plantuml-ex","markdown-it-task-lists","pdfjs-viewer-element","prince","svg-pan-zoom","swagger-ui-dist", +"web-resource-inliner","stylelint-config-standard-scss","md","openapi","bpmn","bdd","feature","async-exit-hook", +"transport","logger","backend","mri","p-limit","term-size","spawndamnit","@changesets/git","@changesets/pre", +"@changesets/read","@changesets/types","@changesets/write","@changesets/config", +"@changesets/errors","@changesets/logger","@manypkg/get-packages","package-manager-detector","@changesets/changelog-git", +"@inquirer/external-editor","@changesets/get-release-plan","@changesets/apply-release-plan", +"@changesets/should-skip-package","@changesets/get-dependents-graph","@changesets/assemble-release-plan","human-id", +"@chatscope/chat-ui-kit-styles","@fortawesome/fontawesome-free","@semantic-release/changelog","@semantic-release/git", +"@semantic-release/github","chokidar-cli","rollup-plugin-peer-deps-external","chat","reactjs","user interface","ui kit", +"communication","conversation","toolkit","library","reusable","feed","comments","social","talk","ckeditor","ckeditor 5", +"ckeditor5-feature","ckeditor5-plugin","ckeditor5-dll","@ckeditor/ckeditor5-integrations-common","wysiwyg","rich text", +"editor","contentEditable","editing","angular2","angular 5","ng","@ckeditor/ckeditor5-icons","@ckeditor/ckeditor5-enter", +"@ckeditor/ckeditor5-editor-balloon","operational transformation","ot","collaboration","collaborative","real-time", +"ckeditor5-build","@ckeditor/ckeditor5-editor-classic","@ckeditor/ckeditor5-font","@ckeditor/ckeditor5-alignment", +"@ckeditor/ckeditor5-editor-decoupled","@ckeditor/ckeditor5-editor-inline","blurhash","es-toolkit","ckeditor5-lib", +"@ckeditor/ckeditor5-watchdog", +"@ckeditor/ckeditor5-undo","@ckeditor/ckeditor5-select-all","color-parse","color-convert","vanilla-colorful", +"@types/color-convert","@ckeditor/ckeditor5-editor-multi-root","vue.js","vue component","vue.js component", +"@commitlint/format","@commitlint/lint","@commitlint/load","@commitlint/read","@commitlint/types","tinyexec", +"@commitlint/test","@commitlint/utils","@compodoc/live-server","@compodoc/ngd-transformer","@polka/send-type", +"bootstrap.native","decache","loglevel-plugin-prefix","lunr","neotraverse","opencollective-postinstall","os-name", +"polka","tablesort","vis-network","module","graph","@comunica/types","semantic","actor","messages","nf","@docsearch/css", +"@docsearch/js","@eslint/markdown","@rollup/plugin-replace","@stackblitz/sdk","bundlewatch","clean-css-cli", +"find-unused-sass-variables","hammer-simulator","hugo-bin","karma-coverage-istanbul-reporter", +"karma-jasmine-html-reporter","postcss-combine-duplicated-selectors","rollup-plugin-istanbul","sass-embedded", +"stylelint-config-twbs-bootstrap","vnu-jar","mobile-first","responsive","front-end","web","tokenizer","media query", +"matches","polyfill","postcss-plugin", +"pseudo","selector","custom","declarations","progressive","properties","utility","variables","vars","specificity", +"@cucumber/ci-environment","@cucumber/cucumber-expressions","@cucumber/gherkin","@cucumber/gherkin-utils", +"@cucumber/html-formatter","@cucumber/junit-xml-formatter","@cucumber/message-streams","@cucumber/messages", +"@cucumber/pretty-formatter","@cucumber/tag-expressions","assertion-error-formatter","capital-case","error-stack-parser", +"has-ansi","knuth-shuffle-seeded","read-package-up","string-argv","util-arity","yup","@cucumber/compatibility-kit", +"@cucumber/query","@eslint/compat","@types/dirty-chai","@types/express","@types/has-ansi","@types/lodash.merge", +"@types/luxon","@types/mocha","@types/mustache","@types/mz","@types/progress","@types/sinon-chai", +"@types/sinonjs__fake-timers","@types/stream-buffers","@types/tmp","chai-exclude","dependency-lint","genversion", +"reindent-template-literals","stream-to-string","testing","gherkin","tests","@types/mock-fs","@types/semver-compare", +"@types/signale","jest-mock-process","semver-compare","signale","deven","@diplodoc/cut-extension", +"@diplodoc/file-extension","@diplodoc/tabs-extension","@diplodoc/utils", +"get-root-node-polyfill","github-slugger","markdown-it-deflist","markdown-it-sup","markdownlint-rule-helpers", +"quick-lru","ts-dedent","@diplodoc/babel-preset","@diplodoc/lint","@diplodoc/tsconfig","@types/css", +"@types/github-slugger","@types/js-yaml","@types/markdown-it","@types/markdown-it-attrs","@types/sanitize-html", +"@vitest/coverage-v8","@vitest/ui","esbuild-sass-plugin","jest-serializer-html","markdown-it-testgen","terminal-link", +"yandex","docs","yfm","tool","tools","magic-bytes.js","@discordjs/util","discord-api-types","@sapphire/snowflake", +"@discordjs/collection","@sapphire/async-queue","@vladfrangu/async_event_emitter","turbo","@discordjs/scripts", +"eslint-config-neon","@favware/cliff-jumper","eslint-formatter-pretty","@discordjs/api-extractor", +"esbuild-plugin-version-injector","discord","api","rest","discordapp","discordjs","types","tsdoc","generated", +"@apidevtools/swagger-parser","@aws-sdk/client-s3","@diplodoc/client","@diplodoc/markdown-translation", +"@diplodoc/mermaid-extension","@diplodoc/openapi-extension","@doc-tools/yfm2xliff","@octokit/core", +"@types/json-stringify-safe","@yandex-cloud/nodejs-sdk","bem-cn-lite","threads","threads-plugin","@types/async", +"@types/chalk", +"@types/html-escaper","@types/mime-types","@types/shelljs","@types/tar-stream","markdown-it-meta","@types/markdownlint", +"@yandex-cloud/eslint-config","@yandex-cloud/prettier-config","@yandex-cloud/tsconfig","@tinyhttp/cookie-parser", +"cookie-encrypter","github-markdown-css","greenlock-express","memorystore","minisearch","selfsigned","sitemap","sql.js", +"workerpool","@types/body-parser","@types/compression","@types/express-session","@types/formidable","@types/prompts", +"@types/sass","@types/sql.js","@types/uuid","@types/workerpool","esbuild-wasm","razor","sqlite","aspx","@dnd-kit/core", +"@dnd-kit/modifiers","@dnd-kit/sortable","@dnd-kit/utilities","@stylistic/eslint-plugin","@stylistic/stylelint-plugin", +"@wordpress/dependency-extraction-webpack-plugin","lightningcss","swc-loader","@wordpress/api-fetch","scss","mixin","js", +"WordPress","@tsconfig/node22","@types/lodash.camelcase","@types/pretty-ms",".d.ts","definitions","@emotion/hash", +"@emotion/memoize","@emotion/serialize","babel-plugin-macros","find-root","stylis","babel-check-duplicated-nodes", +"styles","css-in-js","@emotion/cache","@emotion/sheet","@emotion/utils","@definitelytyped/dtslint", +"@emotion/is-prop-valid","@emotion/use-insertion-effect-with-fallbacks","@emotion/react","warun","dot-prop", +"installed-check","@typescript-eslint/types","@eslint-community/eslint-plugin-mysticatea","eslint-plugin", +"@fakeyanss/redocly-openapi-core","decko","json-pointer","mark.js","openapi-sampler","react-tabs","stickyfill", +"swagger2openapi","url-template","@cypress/webpack-preprocessor","@hot-loader/react-dom","@size-limit/preset-app", +"@types/dompurify","@types/enzyme-to-json","@types/json-pointer","@types/lunr","@types/mark.js","@types/marked", +"@types/prismjs","@types/styled-components","@types/tapable","@types/webpack-env","@wojtekmaj/enzyme-adapter-react-17", +"esbuild-loader","license-checker","lodash.noop","unfetch","OpenAPI","OpenAPI Specification","Swagger","JSON-Schema", +"API","REST","React.js","@floating-ui/dom","use-isomorphic-layout-effect","tooltip","popover","dropdown","menu","popup", +"positioning","font","font family","google fonts","inter","Inter","typeface","variable","roboto","Roboto", +"@fortawesome/fontawesome-common-types","awesome","fontawesome","svg", +"@babel/plugin-external-helpers","@fortawesome/free-brands-svg-icons","@semantic-release/exec","icons","server", +"@electron/rebuild","node-abi","@electron-forge/cli","electron-devtools-installer","@grandlinex/swagger-mate", +"@types/jsonwebtoken","@types/ms","@fastify/deepmerge","@graphql-markdown/graphql","@graphql-markdown/logger", +"@graphql-markdown/utils","@graphql-markdown/types","graphql-schema","graphql-markdown","@docusaurus/utils", +"@graphql-markdown/cli","@docusaurus/types","plugin","@tailwindcss/aspect-ratio","@tailwindcss/forms", +"@tailwindcss/typography","basename","filemanager-webpack-plugin","remove-files-webpack-plugin","sass-lint", +"configuration","boilerplate","@hapi/accept","@hapi/ammo","@hapi/boom","@hapi/bounce","@hapi/call","@hapi/catbox", +"@hapi/catbox-memory","@hapi/heavy","@hapi/hoek","@hapi/mimos","@hapi/podium","@hapi/shot","@hapi/somever", +"@hapi/statehood","@hapi/subtext","@hapi/teamwork","@hapi/topo","@hapi/validate","@hapi/code","@hapi/eslint-plugin", +"@hapi/inert","@hapi/lab","@hapi/vision","@hapi/wreck","comment-parser","@homer0/eslint-plugin", +"@homer0/prettier-config","@vitest/coverage-istanbul","leasot","@standard-schema/utils","@sinclair/typebox", +"@typeschema/core", +"@typeschema/main","@typeschema/zod","@vinejs/vine","ajv-errors","arktype","check-export-map","class-transformer", +"class-validator","computed-types","effect","fluentvalidation-ts","fp-ts","io-ts","io-ts-types","monocle-ts", +"newtype-ts","nope-validator","superstruct","typanion","vest","vite-tsconfig-paths","scheme","validation", +"scheme-validation","hookform","effect-ts","nope","TypeBox","typeschema","vine","standard-schema","google translate api", +"google translate","google api","translate api","google","translate","@atlaskit/pragmatic-drag-and-drop", +"@atlaskit/pragmatic-drag-and-drop-auto-scroll","@atlaskit/pragmatic-drag-and-drop-hitbox","vue3","vue 3.x", +"@ctrl/tinycolor","@inquirer/ansi","cli-width","fast-wrap-ansi","mute-stream","@inquirer/testing","@types/mute-stream", +"answer","answers","ask","base","command","command-line","confirm","generate","hyper","input","inquire","interface", +"iterm","node","nodejs", +"promptly","question","scaffold","scaffolder","stdin","stdout","terminal","tty","yeoman","zsh","@stencil/core","domino", +"@stencil/sass","@capacitor/core","playwright-core","@playwright/test","@capacitor/haptics","@capacitor/keyboard", +"@ionic/eslint-config","@capacitor/status-bar","@ionic/prettier-config","@rollup/plugin-virtual", +"@stencil/vue-output-target","@stencil/react-output-target","@stencil/angular-output-target","stencil","app","webapp", +"capacitor","progressive web app","pwa","layout","console","wrap","table","@istanbuljs/schema","test","coverage", +"@itwin/itwinui-illustrations-react","@swc/helpers","@tanstack/react-virtual","react-table","@swc/cli", +"eslint-plugin-require-extensions","design-system","itwin","itwinui","ux","@jest/console","@jest/pattern", +"@jest/reporters","@jest/test-result","@jest/transform","exit-x","jest-changed-files","jest-config","jest-haste-map", +"jest-message-util","jest-regex-util","jest-resolve-dependencies","jest-runner","jest-runtime","jest-snapshot", +"jest-validate", +"jest-watcher","@jest/test-sequencer","@jest/test-utils","@types/graceful-fs","@types/micromatch","easy","facebook", +"immersive","instant","mocking","painless","runner","sandboxed","snapshot","@jest/schemas", +"@types/istanbul-lib-coverage","@types/istanbul-reports","@types/json-schema","@types/redux-mock-store", +"document-register-element","redux-mock-store","form","forms","json","jsonforms","renderengine","schema","uischema", +"customization","@date-io/dayjs","@rollup/plugin-json","rollup-plugin-copy","rollup-plugin-import-css","renderer", +"@rollup/plugin-alias","@types/object-hash","@jupyterlab/apputils","@jupyterlab/coreutils","@jupyterlab/docregistry", +"@jupyterlab/rendermime","@jupyterlab/rendermime-interfaces","@jupyterlab/services","@jupyterlab/statedb", +"@jupyterlab/translation","@jupyterlab/ui-components","@lumino/algorithm","@lumino/application","@lumino/commands", +"@lumino/coreutils","@lumino/disposable","@lumino/messaging","@lumino/polling","@lumino/properties","@lumino/signaling", +"@lumino/widgets","@jupyterlab/testing","docopt","glob2base","lodash.difference","multipipe","safe-wipe","sass-convert", +"@kobedevi/sassdoc-theme-default","scss-comment-parser", +"strip-indent","vinyl-string","babel-plugin-transform-builtin-extend","opn-cli","doc","theme","chatfanpage", +"api-connect-x","api-connect-tiwtter","@inquirer/input","@inquirer/prompts","task","list","tasklist","term","ascii", +"unicode","loading","indicator","busy","wait","idle","react-remove-scroll","ui-kit","calendar","date","picker","time", +"react-hooks","state","modal","notification","notification-manager","notification-system","prism-react-renderer", +"highlight","syntax","syntax-highlight","styling","@material-ui/types","@material-ui/utils","@material-ui/styles", +"@material-ui/system","@microsoft/api-documenter","json-api","json:api","serializer","normalizer","formatter", +"@types/mdx","jsx","mdx","@rushstack/node-core-library","@microsoft/api-extractor-model","@rushstack/terminal", +"@rushstack/ts-command-line","@rushstack/rig-package","@rushstack/heft","decoupled-local-node-rig","local-eslint-config", +"JSDoc","AEDoc","TSDoc","declaration", +"dts","bundle","alpha","beta","tsdoc-build-rig","TypeScript","jju","@types/jju","@aws/durable-execution-sdk-js", +"@aws/durable-execution-sdk-js-testing","@datastream/core","@types/aws-lambda","Lambda","Middleware","Serverless", +"Framework","AWS","AWS Lambda","Function URL","Durable function","Middy","HTTP","JSON","Body Parser","JSON Body Parser", +"@aws-sdk/client-ssm","aws-xray-sdk","helper","moj","design system","@open-draft/deferred-promise","@open-draft/logger", +"@open-draft/until","is-node-process","outvariant","strict-event-emitter","@open-draft/test-server","@ossjs/release", +"@types/cors","@types/express-fileupload","@types/follow-redirects","@types/node-fetch","@types/superagent", +"@types/supertest","@types/ws","engine.io-parser","express-fileupload","express-rate-limit","socket.io-parser", +"vitest-environment-miniflare","web-encoding","webpack-http-server","intercept","fetch","low-level","mock","spy","mui", +"@mui/core-downloads-tracker","system","@mui/x-internals","mui-x","datepicker","timepicker", +"datetimepicker","@headlessui/react","@iconify-icon/react","@mdx-js/loader","@mdx-js/mdx","@shikijs/transformers", +"@theguild/remark-npm2yarn","@types/unist","@vcarl/remark-headings","approximate-number","extra-watch-webpack-plugin", +"flexsearch","git-url-parse","mdast-util-phrasing","next-seo","react-helmet-async","rehype-extract-excerpt", +"rehype-pretty-code","remark-frontmatter","remark-heading-id","remark-link-rewrite","shiki","tailwindcss-themer", +"webpack-virtual-modules","@types/color","@types/extra-watch-webpack-plugin","@types/git-url-parse","@types/mdast", +"@repo/eslint-config","@repo/typescript-config","@repo/prettier-config","posthtml-render","posthtml-parser","esthetic", +"builder","guides","demo","ng-doc","rehype-format","hast-util-has-property","hast-util-heading-rank", +"rehype-minify-whitespace","unist-util-filter","@shikijs/rehype","ordinal","@types/chai-as-promised","ethers","hardhat", +"@types/bn.js","@nomicfoundation/hardhat-ethers","@nomicfoundation/eslint-plugin-slow-imports", +"@nomicfoundation/eslint-plugin-hardhat-internal-rules","ethereum","smart-contracts","@isaacs/string-locale-compare", +"@npmcli/fs","@npmcli/installed-package-contents","@npmcli/metavuln-calculator","@npmcli/name-from-folder", +"@npmcli/package-json","@npmcli/query","@npmcli/redact","bin-links","cacache", +"common-ancestor-path","json-stringify-nice","npm-install-checks","npm-pick-manifest","parse-conflict-json","proggy", +"promise-all-reject-late","promise-call-limit","treeverse","walk-up-path","@npmcli/eslint-config", +"@npmcli/mock-registry","@npmcli/template-oss","minify-registry-metadata","tcompare","libnpm","workspaces", +"map-workspaces","@npmcli/promise-spawn","spawk","innertext","highlights","similarity","language-ini","property-ttl", +"language-dart","language-glsl","language-haxe","language-rust","lodash.pickby","language-erlang","language-stylus", +"highlights-tokens","atom-language-diff","atom-language-nginx","github-url-to-object","markdown-it-expand-tabs", +"markdown-it-lazy-headers","oniguruma","intercept-stdout","readme","gfm","formatted","syntax highlighting","Monorepo", +"Angular","React","Web","Node","Nest","Jest","Cypress","CLI","@zkochan/js-yaml","EsBuild","Front-end","Backend","Lint", +"ESLint","Testing","Express","babel-plugin-const-enum","babel-plugin-transform-typescript-metadata","Swc", +"Tsc","@nestjs/schematics","kill-port","@nx/docker","tcp-port-used","@oclif/errors","@oclif/parser","@oclif/help", +"@oclif/plugin-plugins","fancy-test","oclif","@types/indent-string","@types/proxyquire","@types/wrap-ansi","clean-stack", +"@oclif/prettier-config","@oclif/test","@types/clean-stack","@types/ejs","@types/pnpapi","@types/sinon", +"@types/supports-color","@types/wordwrap","madge","command line","args","argv","oclif-plugin", +"@octokit/plugin-paginate-rest","@octokit/plugin-request-log","@octokit/plugin-rest-endpoint-methods", +"@octokit/auth-action","@octokit/auth-app","@octokit/fixtures-server","@octokit/request","@octokit/tsconfig", +"semantic-release-plugin-update-version-in-files","octokit","api-client","@opentiny/vue-action-menu", +"@opentiny/vue-action-sheet","@opentiny/vue-alert","@opentiny/vue-amount","@opentiny/vue-anchor","@opentiny/vue-area", +"@opentiny/vue-async-flowchart","@opentiny/vue-autocomplete","@opentiny/vue-badge","@opentiny/vue-base-select", +"@opentiny/vue-breadcrumb","@opentiny/vue-breadcrumb-item","@opentiny/vue-bulletin-board","@opentiny/vue-button", +"@opentiny/vue-button-group","@opentiny/vue-calendar","@opentiny/vue-calendar-bar","@opentiny/vue-calendar-view", +"@opentiny/vue-card","@opentiny/vue-card-group","@opentiny/vue-card-template","@opentiny/vue-carousel", +"@opentiny/vue-carousel-item","@opentiny/vue-cascader","@opentiny/vue-cascader-menu", +"@opentiny/vue-cascader-mobile","@opentiny/vue-cascader-node","@opentiny/vue-cascader-panel", +"@opentiny/vue-cascader-select","@opentiny/vue-cascader-view","@opentiny/vue-cell","@opentiny/vue-checkbox", +"@opentiny/vue-checkbox-button","@opentiny/vue-checkbox-group","@opentiny/vue-col","@opentiny/vue-collapse", +"@opentiny/vue-collapse-item","@opentiny/vue-collapse-transition","@opentiny/vue-color-picker", +"@opentiny/vue-color-select-panel","@opentiny/vue-column-list-group","@opentiny/vue-column-list-item", +"@opentiny/vue-company","@opentiny/vue-config-provider","@opentiny/vue-container","@opentiny/vue-country", +"@opentiny/vue-crop","@opentiny/vue-currency","@opentiny/vue-date-panel","@opentiny/vue-date-picker", +"@opentiny/vue-date-picker-mobile-first","@opentiny/vue-date-range","@opentiny/vue-date-table","@opentiny/vue-dept", +"@opentiny/vue-dialog-box","@opentiny/vue-dialog-select","@opentiny/vue-divider","@opentiny/vue-drawer", +"@opentiny/vue-drop-roles","@opentiny/vue-drop-times","@opentiny/vue-dropdown","@opentiny/vue-dropdown-item", +"@opentiny/vue-dropdown-menu","@opentiny/vue-dynamic-scroller","@opentiny/vue-dynamic-scroller-item", +"@opentiny/vue-espace","@opentiny/vue-exception","@opentiny/vue-fall-menu","@opentiny/vue-file-upload", +"@opentiny/vue-filter","@opentiny/vue-filter-bar","@opentiny/vue-filter-box","@opentiny/vue-filter-panel", +"@opentiny/vue-float-button","@opentiny/vue-floatbar","@opentiny/vue-floating-button","@opentiny/vue-flowchart", +"@opentiny/vue-fluent-editor","@opentiny/vue-form","@opentiny/vue-form-item","@opentiny/vue-fullscreen", +"@opentiny/vue-grid","@opentiny/vue-grid-column","@opentiny/vue-grid-manager","@opentiny/vue-grid-select", +"@opentiny/vue-grid-toolbar","@opentiny/vue-guide","@opentiny/vue-hrapprover","@opentiny/vue-image", +"@opentiny/vue-image-viewer","@opentiny/vue-input","@opentiny/vue-ip-address","@opentiny/vue-layout", +"@opentiny/vue-link","@opentiny/vue-link-menu","@opentiny/vue-load-list","@opentiny/vue-loading","@opentiny/vue-locales", +"@opentiny/vue-logon-user","@opentiny/vue-logout","@opentiny/vue-menu","@opentiny/vue-message","@opentiny/vue-milestone", +"@opentiny/vue-mind-map","@opentiny/vue-modal","@opentiny/vue-month-range","@opentiny/vue-month-table", +"@opentiny/vue-nav-menu","@opentiny/vue-notify","@opentiny/vue-number-animation","@opentiny/vue-numeric", +"@opentiny/vue-option","@opentiny/vue-option-group","@opentiny/vue-pager","@opentiny/vue-pager-item", +"@opentiny/vue-panel","@opentiny/vue-picker","@opentiny/vue-pop-upload","@opentiny/vue-popconfirm", +"@opentiny/vue-popeditor","@opentiny/vue-popover","@opentiny/vue-popup","@opentiny/vue-progress", +"@opentiny/vue-pull-refresh","@opentiny/vue-qr-code","@opentiny/vue-quarter-panel","@opentiny/vue-query-builder", +"@opentiny/vue-radio","@opentiny/vue-radio-button","@opentiny/vue-radio-group","@opentiny/vue-rate", +"@opentiny/vue-record","@opentiny/vue-recycle-scroller","@opentiny/vue-river","@opentiny/vue-roles","@opentiny/vue-row", +"@opentiny/vue-scroll-text","@opentiny/vue-scrollbar","@opentiny/vue-search","@opentiny/vue-select", +"@opentiny/vue-select-dropdown","@opentiny/vue-select-mobile","@opentiny/vue-select-view","@opentiny/vue-select-wrapper", +"@opentiny/vue-selected-box","@opentiny/vue-signature","@opentiny/vue-skeleton","@opentiny/vue-skeleton-item", +"@opentiny/vue-slider","@opentiny/vue-slider-button","@opentiny/vue-slider-button-group","@opentiny/vue-space", +"@opentiny/vue-split", +"@opentiny/vue-standard-list-item","@opentiny/vue-statistic","@opentiny/vue-steps","@opentiny/vue-sticky", +"@opentiny/vue-switch","@opentiny/vue-tab-item","@opentiny/vue-tabbar","@opentiny/vue-tabbar-item","@opentiny/vue-table", +"@opentiny/vue-tabs","@opentiny/vue-tag","@opentiny/vue-tag-group","@opentiny/vue-tag-input","@opentiny/vue-text-popup", +"@opentiny/vue-time","@opentiny/vue-time-line","@opentiny/vue-time-panel","@opentiny/vue-time-picker", +"@opentiny/vue-time-picker-mobile","@opentiny/vue-time-range","@opentiny/vue-time-select","@opentiny/vue-time-spinner", +"@opentiny/vue-timeline-item","@opentiny/vue-toggle-menu","@opentiny/vue-tooltip","@opentiny/vue-top-box", +"@opentiny/vue-transfer","@opentiny/vue-transfer-panel","@opentiny/vue-tree","@opentiny/vue-tree-menu", +"@opentiny/vue-tree-select","@opentiny/vue-upload","@opentiny/vue-upload-dragger","@opentiny/vue-upload-list", +"@opentiny/vue-user","@opentiny/vue-user-account","@opentiny/vue-user-contact","@opentiny/vue-user-head", +"@opentiny/vue-user-head-group","@opentiny/vue-user-link","@opentiny/vue-virtual-scroll-box", +"@opentiny/vue-virtual-tree","@opentiny/vue-watermark","@opentiny/vue-wizard","@opentiny/vue-year-range", +"@opentiny/vue-year-table","component-library","vue-components","opentiny","renderless-components","headless-components", +"@opentiny/utils","@opentiny/vue-hooks","esno","gulp-svg-inline","gulp-transform","otterhttp","node.js","web framework", +"header-range-parser","@otterhttp/accepts","@otterhttp/content-type","@otterhttp/proxy-address","@otterhttp/type-is", +"@otterhttp/url","@otterhttp/router","req","es-escape-html","@otterhttp/content-disposition","@otterhttp/encode-url", +"@otterhttp/errors","@otterhttp/vary","res","@otterhttp/etag","send-file","@pact-foundation/pact-core","randexp", +"stack-utils","@pact-foundation/pact-js-prettier-config","@types/http-proxy","@types/nock","@types/ramda", +"@types/stack-utils","commit-and-tag-version","eslint-plugin-chai-friendly","pact","pact-js","contract testing", +"consumer driven testing","management","store","@phosphor/algorithm","@phosphor/commands","@phosphor/coreutils", +"@phosphor/disposable","@phosphor/domutils","@phosphor/dragdrop","@phosphor/keyboard","@phosphor/messaging", +"@phosphor/properties","@phosphor/signaling","@phosphor/virtualdom","@release-it/conventional-changelog","@types/jsdom", +"cobertura","eslint-config-phun-ky","git-cz","glob-bin","global-jsdom","putout","quibble","remark-github","remark-toc", +"typedoc-plugin-frontmatter","typedoc-plugin-mdn-links","typedoc-plugin-no-inherit","typedoc-plugin-remark", +"typedoc-plugin-rename-defaults","typedoc-vitepress-theme","unified-prettier","vitepress-plugin-group-icons","a11y", +"accessibility","anatomy","annotate","annotation","dissect","dissection", +"grid","grid-layout","html-elements","information","inspect","pin","spacing","spec","speccer","specification", +"specifications","specs","typography","stories","@webcomponents/shadycss","@polymer/gen-closure-declarations", +"@polymer/iron-component-page","@polymer/test-fixture","@webcomponents/webcomponentsjs","babel-preset-minify","dom5", +"google-closure-compiler","gulp-vulcanize","lazypipe","polymer-build","polymer-cli","wct-browser-legacy","cldr","gauge", +"upath","fontkit","ps-tree","get-value","set-value","github-api","unset-value","tap-colorize","core-js-bundle", +"app-module-path","es6-promise-pool","better-ajv-errors","jstransformer-dot","@metalsmith/layouts", +"@metalsmith/markdown","console-control-strings","@qooxdoo/eslint-config-qx","@qooxdoo/eslint-plugin-qx", +"eslint-formatter-codeframe","@qooxdoo/eslint-config-jsdoc-disable","@babel/plugin-proposal-optional-chaining-assign", +"dirsum","qooxdoo","fontend","back-end","widgets","gui","databinding","interfaces","mixins","@mdi/font","@mdi/svg", +"@xmldom/xmldom","animate.css","bootstrap-icons", +"eva-icons","line-awesome","eslint-config-quasar","quasar","fonts","animations","gltfpack","detect-gpu","r3f-perf", +"@types/three","three-stdlib","suspend-react","postprocessing","@storybook/react","@react-three/drei", +"@react-three/fiber","cypress-image-diff-js","rollup-plugin-postcss","@storybook/addon-links","@storybook/node-logger", +"eslint-plugin-storybook","@storybook/addon-actions","@storybook/react-webpack5","@react-three/test-renderer", +"@storybook/testing-library","@react-three/postprocessing","@storybook/addon-essentials","@storybook/addon-interactions", +"@types/testing-library__jest-dom","@storybook/preset-create-react-app","threejs","react-three-fiber","ready-player-me", +"3D","avatars","glb","@phryneas/ts-version","@size-limit/file","@size-limit/webpack", +"@testing-library/react-render-stream","@types/babel__core","@types/babel__helper-module-imports","@types/nanoid", +"@types/query-string","esbuild-extra","starter","reducer","slice","redux-toolkit","@rollup/pluginutils","commondir", +"fdir","is-reference","locate-character","require-relative","commonjs","require","is-module","string-capitalize", +"es2015","groq-js","refractor","@sanity/ui","@types/cpx", +"dotenv-flow","@sanity/color","@sanity/icons","@sanity/client","react-refractor","esbuild-register","@sanity/pkg-utils", +"@portabletext/react","@portabletext/toolkit","cpx","sanity","@types/mkdirp","@sanity/ui-workshop", +"@sanity/semantic-release-preset","eslint-plugin-simple-import-sort","API reference","@unhead/vue","@vueuse/core", +"microdiff","@scalar/agent-chat","@scalar/code-highlight","@scalar/api-client","@scalar/icons","@scalar/components", +"@scalar/helpers","@scalar/openapi-parser","@scalar/oas-utils","@scalar/openapi-types","@scalar/sidebar","@scalar/types", +"@scalar/snippetz","@scalar/use-hooks","@scalar/themes","@scalar/use-toasts","@scalar/workspace-store", +"@hono/node-server","@tailwindcss/vite","@vitejs/plugin-vue","@vue/test-utils","rollup-plugin-webpack-stats", +"vite-plugin-banner","vite-plugin-css-injected-by-js","@scalar/build-tooling","@scalar/core","@scalar/galaxy", +"@scalar/react-renderer","reference","swagger","fastify-plugin","@fastify/basic-auth","@fastify/http-proxy", +"@fastify/swagger","@serenity-js/core","@serenity-js/rest","@serenity-js/web","tiny-types","@integration/testing-tools", +"@serenity-js/assertions","@serenity-js/cucumber","@serenity-js/jasmine","@serenity-js/local-server", +"@serenity-js/mocha","@types/html-minifier","mocha-multi", +"automation","browser","e2e","end-to-end","integration","serenity","serenity-js","screenplay","screenplay-pattern","tdd", +"@wdio/reporter","@wdio/cli","@wdio/dot-reporter","@wdio/local-runner","@wdio/spec-reporter","@wdio/types", +"mocha-testdata","webdriverio","wdio","wdio-reporter","@sinonjs/commons","@mochify/cli","@mochify/driver-puppeteer", +"@mochify/driver-webdriver","@sinonjs/eslint-config","@sinonjs/referee-sinon","@storybook/icons","@storybook/csf-plugin", +"@storybook/react-dom-shim","telejson","memoizerific","storybook-addon","essentials","organize","MDX","autodocs", +"styleguide","style guide","web-components","@ant-design/colors","@ant-design/cssinjs","@ant-design/react-slick", +"@fortawesome/free-regular-svg-icons","@polkadot/react-identicon","@polkadot/util-crypto","@polkadot/wasm-crypto", +"@rc-component/tour","@zxing/browser","@zxing/library","boring-avatars","flatlist-react","jsqr","patch-package", +"phosphor-react","qrcode.react","rc-cascader","rc-checkbox","rc-collapse","rc-dialog","rc-drawer","rc-dropdown", +"rc-image","rc-input","rc-input-number", +"rc-mentions","rc-menu","rc-motion","rc-notification","rc-pagination","rc-picker","rc-progress","rc-rate", +"rc-resize-observer","rc-segmented","rc-select","rc-steps","rc-switch","rc-table","rc-tabs","rc-textarea","rc-tree", +"rc-tree-select","rc-trigger","rc-upload","react-pin-input","react-qrcode-logo","react-superellipse", +"scroll-into-view-if-needed","@babel/eslint-plugin","@emotion/babel-preset-css-prop","@emotion/server", +"@qixian.cs/github-contributors-list","@storybook/addons","@storybook/builder-webpack5","@storybook/manager-webpack5", +"@storybook/theming","@types/gtag.js","@types/jest-axe","@types/jest-environment-puppeteer","@types/jest-image-snapshot", +"@types/jquery","@types/puppeteer","@types/qs","@types/react-color","@types/react-highlight-words", +"@types/react-resizable","@types/react-window","@types/throttle-debounce","@types/warning","antd-img-crop", +"antd-token-previewer","array-move","bundlesize2","dekko","duplicate-package-checker-webpack-plugin","fetch-jsonp", +"jest-axe","jest-image-snapshot","jest-puppeteer","jsonml-to-react-element","lz-string","rc-footer","rc-tween-one", +"rc-virtual-list","react-fast-marquee","react-highlight-words","react-infinite-scroll-component","react-resizable", +"react-sticky-box","react-window","remark-lint","remark-preset-lint-recommended","rome","stylelint-config-prettier", +"stylelint-config-rational-order","stylelint-declaration-block-no-ignored-properties","sylvanas","vanilla-jsoneditor", +"xhr-mock","yaml-front-matter","@supernova-studio/client","@supernova-studio/model","abab","async-mutex","color2k", +"parse-color","string.prototype.matchall","@types/tinycolor2","trash-cli","tsconfig-paths-webpack-plugin","Supernova", +"Design Systems","Supernovaio","SDK","Design Tokens","Tokens","Assets","Components","Documentation","Markdown","CMS", +"expr-eval-fork","ml-matrix","postcss-calc-ast-parser","@ava/typescript","@stylistic/eslint-plugin-js", +"@svitejs/changesets-changelog-github-compact","eslint-config","@sveltejs/acorn-typescript","@types/cookie","devalue", +"esm-env","mrmime","sade","@opentelemetry/api","@types/connect","dts-buddy","official","obug", +"@sveltejs/vite-plugin-svelte-inspector","vite-plugin","vite plugin","@babel/plugin-transform-react-constant-elements", +"@svgr/plugin-jsx","@svgr/plugin-svgo","svgr","webpack-loader","@swc/counter","@swc/types","@napi-rs/cli","@rstest/core", +"swc", +"swcpack","rust","tsc","stylelint-prettier","@swisspost/design-system-icons","@swisspost/design-system-tokens", +"stylelint-config-sass-guidelines","collections","patterns","web components","ui library","symbiote.js","symbiote", +"widget","microfrontends","meta application","custom elements","shadow dom","shadow root","constructable stylesheets", +"adopted stylesheets","css custom properties","pubsub","import maps","cdn imports","https imports", +"reactive html attributes","MIT","JSDA","@types/content-type","istanbul-lib-coverage","istanbul-lib-report", +"istanbul-lib-source-maps","istanbul-reports","rollup-plugin-filesize","tanem-scripts","dom","images","img", +"scalable-vector-graphics","@tanstack/query-core","@tanstack/query-persist-client-core","@tanstack/query-test-utils", +"@testing-library/svelte","tanstack","query","@types/js-cookie","@github/webauthn-json","better-docs", +"eslint-config-preact","hanko","passkey","webauthn","passcode","password","kcd-scripts","functional","aria-query", +"@types/aria-query","dom-accessibility-api","jest-in-case","jest-watch-select-projects","jest-snapshot-serializer-ansi", +"unit", +"redent","@jest/globals","rollup-plugin-delete","jest-environment-jsdom-sixteen","jest-matcher-utils", +"@callstack/eslint-config","@relmify/jest-serializer-strip-ansi","testing-library","dotenv-cli","jest-mock", +"shared-scripts","@types/jest-in-case","@ph.fritsche/toolbox","jest-serializer-ansi","esbuild-plugin-globals", +"eslint-plugin-local-rules","@ph.fritsche/scripts-config","@esbuild-plugins/node-modules-polyfill", +"react-testing-library","dom-testing-library","regexparam","tinyhttp","static","@tinyhttp/vary","supertest-fetch", +"forwarded","headers","header","proxy-addr","net","network","@tinyhttp/accepts","@tinyhttp/content-disposition", +"@tinyhttp/content-type","params","particles.js","particlesjs","particles","particle","jsparticles","xparticles", +"particles-js","particles-bg","particles-bg-vue","particles-ts","particles.ts","react-particles-js","react-particles.js", +"react-particles","vue-particles","ngx-particles","angular-particles","particleground","vuejs","preactjs","angularjs", +"animation","html5","web-design","webdesign","css3","animated","background","confetti", +"fireworks","fireworks-js","confetti-js","confettijs","fireworksjs","canvas-confetti","@d-fischer/shared-utils", +"@twurple/api-call","@twurple/common","jose","twitch","extension","service","ebs","ts-api-utils","natural-compare", +"@eslint-community/regexpp","@typescript-eslint/type-utils","@typescript-eslint/visitor-keys","title-case", +"mdast-util-mdx","micromark-extension-mdxjs","@typescript-eslint/rule-tester", +"@typescript-eslint/rule-schema-to-typescript-types","eslintplugin","@typescript-eslint/typescript-estree","estree", +"@ucloud-fe/calendar","component-classes","create-react-context","emotion-theming","file-bytes-formatter","mini-store", +"rc-animate","rc-form","z-use-drag","@types/hoist-non-react-statics","@types/raf","@ucloud-fe/recodo-gen","ast-types", +"babel-plugin-emotion","babel-plugin-typescript-to-proptypes","babel-plugin-webpack-alias","css-hot-loader", +"jest-emotion","jsdom-screenshot","stylelint-config-styled-components","stylelint-processor-styled-components", +"tsc-alias","ucloud","jotai-x","is-hotkey","optics-ts","zustand-x","slate-react","jotai-optics","@udecode/slate", +"@udecode/utils","use-deep-compare","slate-hyperscript","@udecode/react-utils","@udecode/react-hotkeys","plate","slate", +"button","react-button","uiw-react","react.js","uikit","react-ui","@uiw/icons","react-icon","react-input", +"@uiw/react-overlay","overlay-trigger","react-overlay-trigger","utils","react-utils","prom-client","openapi-types", +"unleash-client","json-schema-to-ts","ts-node-dev","@types/type-is","Unleash","native","ios","android","flags","lit", +"keyux","nanostores","@lit/context","@uploadcare/cname-prefix","@uploadcare/image-shrink","@uploadcare/upload-client", +"@uploadcare/quality-insights","shipjs","render-jsx","lit-analyzer","ts-lit-plugin","@biomejs/js-api","@vitest/browser", +"eslint-plugin-wc","@types/svg-sprite","eslint-plugin-lit","vitest-browser-lit","@biomejs/wasm-nodejs", +"@size-limit/esbuild-why","esbuild-minify-templates","@total-typescript/ts-reset","@size-limit/preset-small-lib", +"@happy-dom/global-registrator","@csstools/postcss-cascade-layers","uploadcare","lighter","file uploader", +"adaptive image","image optimization","image editing","image size","cloud image editor","upload api client", +"building blocks","blocks","lr-blocks","uc-blocks","integrations", +"smart cdn","cloud file platform","transformation api","webp","avif","css context properties","meta applications", +"browserslist-to-esbuild","@babel/plugin-transform-react-jsx-self","@babel/plugin-transform-react-jsx-source", +"@rolldown/pluginutils","babel-plugin-react-compiler","fast refresh","@tsconfig/node20","pkgroll","create-vue", +"create-eslint-config","ajv-keywords","merge-deep","swagger-parser","@ant-design/icons-svg","@makotot/ghostui", +"@types/hast","@umijs/bundler-utils","@umijs/core","@umijs/utils","animated-scroll-to","codesandbox","comlink", +"dumi-afx-deps","estree-util-to-js","estree-util-visit","file-system-cache","heti","html2sketch", +"mdast-util-find-and-replace","mdast-util-to-string","prism-themes","react-loading-skeleton","react-simple-code-editor", +"rehype-remove-comments","remark-directive","sucrase","umi","unist-util-visit-parents","v8-compile-cache","vfile", +"dumi-assets-types","@types/highlight-words-core","@types/hosted-git-info","@types/lodash.throttle","@types/pluralize", +"@umijs/lint","@umijs/plugins","codesandbox-import-utils","git-repo-info","highlight-words-core","zx", +"dumi-theme-mobile","static site generator","jamstack","aleo","cryptography","blockchain", +"decentralized","zero-knowledge","oracle","event-target-shim","@mysticatea/eslint-plugin","@mysticatea/spy", +"dts-bundle-generator","karma-growl-reporter","rollup-plugin-babel-minify","rollup-watch","type-tester","w3c","whatwg", +"event","abort","cancel","abortcontroller","abortsignal","controller","signal","shim","negotiator","content", +"negotiation","accept","middleware","progress-estimator","@types/figlet","@types/git-clone", +"rollup-plugin-node-externals","nestjs","fullstack","zip","archive","flowcontrol","flow","control","arch","cron-parser", +"date.js","human-interval","@types/human-interval","job","jobs","delayed","blockchain-bend4","blockchain-meat7", +"bow-swam-troops-care","cent-matter-to","closer-composed-particularly-shout","coach-organized-notice", +"correct-home-silent7","course-whenever-merely","crop-birthday-web3-children","exchange-known-bend", +"face-eventually-bound","grass-dollar-crew-floating","information-fruit-web3-perfect","lay-rest-hour", +"material-balance-trade-solar","meat-think-stove8","office-deal-mostly1","product-slight-adult-settlers", +"recently-done-should-moon", +"scientific-exist-event2","sentence-won-little-western","speed-wing-eat","stay-including","supper-term-including-snake", +"truck-hospital-equator-hurt","trunk-darkness-believed-corner","typical-recall-industry-exchange","warn-clothing-whose0", +"weigh-flew-web3-farm","@airtap/browserify-istanbul","airtap-default","airtap-multi","bruce-millis-option","engine.io", +"engine.io-client","find-nearest-file","globs-to-files","humanize-duration","load-script","make-promises-safe", +"maybe-combine-errors","nanoresource","nanoresource-collection","on-stream-close","run-parallel-settled","tap-completed", +"thunky-with-args","transient-error","abstract-browser","simple-get","saucelabs","fast-uri","json-schema-traverse", +"require-from-string","@ajv-validator/config","@types/require-from-string","dayjs-plugin-utc","if-node-version", +"json-schema-test","module-from-string","re2","tsify","uri-js","json-schema-validator","json-schema-validation","Ajv", +"longjohn","buffer-more-ints","claire","AMQP","AMQP 0-9-1","RabbitMQ","simple","ux bootstrap","client-side", +"@angular-cli/ast-tools","@angular-cli/base-href-webpack","@ngtools/json-schema","@ngtools/webpack","denodeify", +"ember-cli-normalize-entity-name","ember-cli-string-utils","exists-sync", +"findup","get-caller-file","isbinaryfile","node-modules-path","script-loader","silent-error", +"sourcemap-istanbul-instrumenter-loader","component library","justified","256","ansi","bgblack","bgBlack","bgblue", +"bgBlue","bgcyan","bgCyan","bggreen","bgGreen","bgmagenta","bgMagenta","bgred","bgRed","bgwhite","bgWhite","bgyellow", +"bgYellow","black","blue","bold","clorox","colour","cyan","dim","formatting","gray","green","grey","hidden","inverse", +"italic","logging","magenta","red","reset","rgb","shell","str","strikethrough","style","text","underline","white", +"yellow","environment","escape","escapes","vt100","sequence","codes","cursor","iterm2","screen","erase", +"scrollback","regex","regexp","re","match","find","pattern","svg-term-cli","@ant-design/icons-vue","@emotion/unitless", +"@simonwep/pickr","array-tree-filter","dom-align","dom-scroll-into-view","shallow-equal","vue-types", +"@babel/plugin-proposal-optional-chaining","@babel/plugin-transform-object-assign","@types/koa","@types/lru-cache", +"@types/postcss-load-config","@vitejs/plugin-vue-jsx","@vue/babel-plugin-jsx","@vue/cli-plugin-eslint", +"@vue/eslint-config-prettier","@vue/vue3-jest","@webpack-cli/serve","ali-oss","babel-plugin-inline-import-data-uri", +"babel-plugin-transform-require-context","colorful","compare-versions","cz-git","diacritics","docsearch.js","enquire-js", +"eslint-plugin-no-explicit-type-exports","gulp-strip-code","ignore-emit-webpack-plugin","is-windows", +"jest-serializer-vue","jest-transform-stub","json-templater","less-plugin-npm-import","less-vars-to-js","majo", +"markdown-it-table-of-contents","merge2","remark-stringify","remark-yaml-config","reqwest","rucksack-css", +"selenium-server","string-replace-loader","umi-request","vue-clipboard2","vue-drag-resize","vue-infinite-scroll", +"vue-request","vue-tsc","webpackbar","vueComponent","@rc-component/form","@rc-component/menu", +"@rc-component/rate","@rc-component/tabs","@rc-component/tree","@rc-component/util","@rc-component/image", +"@rc-component/input","@rc-component/steps","@rc-component/table","@rc-component/dialog","@rc-component/drawer", +"@rc-component/motion","@rc-component/picker","@rc-component/qrcode","@rc-component/select","@rc-component/slider", +"@rc-component/switch","@rc-component/upload","@rc-component/tooltip","@rc-component/trigger","@ant-design/fast-color", +"@rc-component/cascader","@rc-component/checkbox","@rc-component/collapse","@rc-component/dropdown", +"@rc-component/mentions","@rc-component/progress","@rc-component/textarea","@rc-component/segmented", +"@rc-component/pagination","@ant-design/cssinjs-utils","@rc-component/tree-select","@rc-component/color-picker", +"@rc-component/input-number","@rc-component/notification","@rc-component/mutate-observer", +"@rc-component/resize-observer","p-all","runes2","mermaid","spinnies","env-paths","@types/tar","antd-style", +"@types/pngjs","cli-progress","domparser-rs","vanilla-tilt","@ant-design/x","react-countup","@prettier/sync", +"@types/adm-zip","@types/ali-oss","@blazediff/core","@types/css-tree","@types/minimist","@types/spinnies", +"@types/nprogress","lunar-typescript","@ant-design/x-sdk","csstree-validator","@types/http-server","@types/cli-progress", +"@antfu/eslint-config","@ant-design/compatible", +"@codecov/webpack-plugin","@types/isomorphic-fetch","dumi-plugin-color-chunk","@microflash/rehype-figure", +"@rc-component/virtual-list","circular-dependency-plugin","@codesandbox/sandpack-react","@eslint-react/eslint-plugin", +"@ant-design/happy-work-theme","cypress-image-diff-html-report","@ianvs/prettier-plugin-sort-imports", +"remark-lint-no-undefined-references","@madccc/duplicate-package-checker-webpack-plugin", +"@api-components/api-console-ext-comm","@api-components/api-documentation","@api-components/api-summary", +"@polymer/app-layout","@polymer/iron-media-query","@polymer/paper-toast","@anypoint-web-components/anypoint-menu-mixin", +"@open-wc/building-rollup","@polymer/iron-test-helpers","@web/test-runner-visual-regression","amf-client-js", +"rollup-plugin-cpy","unzipper","raml","amf","diff-match-patch","expose-loader","klaw-sync","eslint-config-recommended", +"restful","apidoc-light","portable","programmatic","cli-app","api-documentation","markdown-documentation","http2", +"apple","push","push notifications","iOS","apns","notifications","apollo-cache","apollo-utilities","ts-invariant", +"@types/zen-observable","symbol-observable","zen-observable","jsnext","relay","zen-observable-ts","@types/graphql", +"apollo-link-http-common","apollo-fetch","object-to-querystring","cracks","root","node_modules","@colors/colors", +"appium-adb", +"appium-chromedriver","asyncbox","io.appium.settings","portscanner","teen_process","@appium/eslint-config-appium-ts", +"@appium/tsconfig","@types/bluebird","@types/portscanner","appium","mobile testing","@azure/identity","@azure/core-auth", +"@azure/functions","diagnostic-channel","@opentelemetry/core","@azure/functions-old","@opentelemetry/api-logs", +"@opentelemetry/sdk-logs","@opentelemetry/resources","@opentelemetry/sdk-metrics","@azure/monitor-opentelemetry", +"@opentelemetry/sdk-trace-base","@opentelemetry/sdk-trace-node","diagnostic-channel-publishers", +"@opentelemetry/otlp-exporter-base","@opentelemetry/semantic-conventions","@azure/monitor-opentelemetry-exporter", +"@opentelemetry/exporter-logs-otlp-http","@opentelemetry/exporter-trace-otlp-http", +"@opentelemetry/exporter-metrics-otlp-http","@opentelemetry/exporter-metrics-otlp-proto", +"@azure/opentelemetry-instrumentation-azure-sdk","@types/long","@types/microsoft__typescript-etw","exception monitoring", +"request monitoring","performance monitoring","application insights","microsoft","azure","cloud","tracing","telemetry", +"analytics","apm","@aws-sdk/credential-provider-node","@aws-sdk/hash-node","@aws-sdk/protocol-http", +"@aws-sdk/signature-v4","@aws-sdk/types","aws-xray-sdk-core","@aws-amplify/amplify-appsync-simulator","constructs", +"prettier-plugin-organize-attributes","projen","appsync","aws","gql","lambda","xray","archiver-utils","buffer-crc32", +"readdir-glob", +"zip-stream","archiver-jsdoc-theme","stream-bench","stream","@babel/plugin-syntax-class-properties","option", +"define-properties","es-abstract","es-shim-unscopables","@es-shims/api","@ljharb/eslint-config","encoding", +"has-strict-mode","Array.prototype.flatMap","flatMap","array","ESnext","flatten","Array.prototype.flatten","es-shim API", +"arrayify","convert","value","ensure","is-nan","object-is","array-fill","fn.name","is-buffer","propget","pruddy-error", +"assertion","asserts","shouldjs","unit testing","babel-minify","rollup-plugin-npm","babel-preset-es2017", +"native-promise-only","eslint-plugin-prefer-arrow","babel-plugin-syntax-async-generators","callback","@types/tap", +"await","listen","then-sleep","@babel/node","@pika/pack","pika-plugin-build-web-babel","pika-plugin-ts-types","validate", +"libnpx","node-cleanup","npm-lockfile","find-package-json","audit","lockfile","shrinkwrap","import-cwd", +"parse-github-url","babel-plugin-rewire","auto","automatic","changelog", +"change","git","commit","commits","detective","detective-es6","is-builtin-module","package-json","sync-exec","package", +"fraction.js","prefix","@vercel/nft","arrgv","callsites","cbor","chunkd","ci-parallel-vars","code-excerpt", +"common-path-prefix","concordance","currently-unhandled","emittery","ignore-by-default","matcher","memoize", +"package-config","resolve-cwd","supertap","temp-dir","@sindresorhus/tsconfig","🦄","concurrent","parallel","fast", +"promises","function","generators","yield","observable","observables","webpack-log","empty-module","ps-node","loader", +"ieee754","jmespath","hash-test-vectors","insert-module-globals","amazon","ec2","simpledb","s3","sqs","ses","sns", +"route53","rds","elasticache","cloudfront","fps","cloudformation","cloudwatch","dynamodb", +"iam","swf","autoscaling","cloudsearch","elb","loadbalancing","emr","mapreduce","importexport","storagegateway", +"workflow","vpc","beanstalk","glacier","kinesis","cloudtrail","waf","memoizee","@deque/dot","colorjs.io","typedarray", +"emoji-regex","grunt-babel","revalidator","sri-toolbox","serve-handler","grunt-bytesize","weakmap-polyfill", +"clean-jsdoc-theme","css-selector-parser","@axe-core/webdriverjs","conventional-commits-parser", +"eslint-plugin-mocha-no-only","Accessibility","axe","proxy-from-env","dev-null","formdata-node","stream-throttle", +"karma-jasmine-ajax","string-replace-async","abortcontroller-polyfill","rollup-plugin-bundle-size", +"@rollup/plugin-multi-entry","rollup-plugin-auto-external","istanbul-instrumenter-loader","ajax","browserify-mime", +"json-edm-parser","md5.js","batchflow","factor-bundle","karma-env-preprocessor","storage","output-file-sync","v8flags", +"babel-code-frame","babel-helpers","babel-messages","private","babel-helper-transform-fixture-test-runner", +"eslint-config-babel","trim-right","try-resolve", +"babel-preset-jest","babel-plugin-transform-export-extensions","babel-preset-power-assert", +"conventional-github-releaser","module.exports","airbnb-js-shims","babel-plugin-transform-replace-object-assign", +"dynamic","import","@umijs/test","babel-preset-umi","react-toolbox","@istanbuljs/load-nyc-config", +"istanbul-lib-instrument","test-exclude","pmock","instrumentation","require-package-name", +"@babel/plugin-proposal-function-bind","@babel/preset-stage-0","lodash-bound","lodash-compat","cherry-pick", +"find-babel-config","prettier-eslint-cli","resolver","alias","rewrite","rename","mapping","babel-plugin-tester", +"babel-helper-remap-async-to-generator","babel-plugin-syntax-async-functions","babel-helper-function-name", +"babel-plugin-syntax-class-properties","babel-plugin-syntax-decorators","es7","babel-plugin-transform-strict-mode", +"babel-plugin-syntax-object-rest-spread","babel-helper-builder-react-jsx","@babel/preset-flow", +"babel-plugin-flow-react-proptypes","pkgfiles","minification","propTypes","regenerator-transform", +"@babel/plugin-proposal-numeric-separator","@babel/plugin-transform-property-mutators", +"@babel/plugin-proposal-optional-catch-binding","@babel/plugin-proposal-nullish-coalescing-operator", +"babel-plugin-check-es2015-constants","babel-plugin-syntax-trailing-function-commas", +"babel-plugin-transform-es2015-arrow-functions","babel-plugin-transform-es2015-block-scoped-functions", +"babel-plugin-transform-es2015-classes","babel-plugin-transform-es2015-computed-properties", +"babel-plugin-transform-es2015-destructuring","babel-plugin-transform-es2015-duplicate-keys", +"babel-plugin-transform-es2015-for-of","babel-plugin-transform-es2015-function-name", +"babel-plugin-transform-es2015-literals","babel-plugin-transform-es2015-modules-amd", +"babel-plugin-transform-es2015-modules-systemjs","babel-plugin-transform-es2015-modules-umd", +"babel-plugin-transform-es2015-object-super","babel-plugin-transform-es2015-parameters", +"babel-plugin-transform-es2015-shorthand-properties","babel-plugin-transform-es2015-spread", +"babel-plugin-transform-es2015-sticky-regex","babel-plugin-transform-es2015-typeof-symbol", +"babel-plugin-transform-es2015-unicode-regex","babel-plugin-transform-exponentiation-operator","electron-to-chromium", +"babel-preset-flow","babel-plugin-transform-react-display-name","babel-plugin-transform-react-jsx-source", +"babel-plugin-transform-react-jsx-self","@babel/plugin-proposal-private-methods","babel-plugin-transform-do-expressions", +"babel-plugin-transform-function-bind","babel-plugin-transform-class-constructor-call", +"babel-plugin-transform-decorators","babel-plugin-transform-async-generator-functions","home-or-tmp","esutils", +"to-fast-properties","lodash.zipobject","babel-plugin-transform-node-env-inline", +"babel-plugin-transform-flow-strip-types","unicode-9.0.0","model","view","@purtuga/esm-webpack-plugin", +"@types/validator","@web/test-runner-browserstack","@web/test-runner-junit-reporter","otpauth","backend-as-a-service", +"grunt-template","codec","decoder","encoder","base64","basic","auth","authorization","basicauth","sorted-object", +"ministructure","sinatra","orange sms","node-gyp-build","prebuildify","encryption","crypt","hash","esm2umd", +"pomelo-logger","di","IoC","AOP","dependency","injection","consistent","hot reload","front-backend","sharable codes", +"dependency injection", +"asynchronous script loading","magic, self-described javaScript objects","beautify","art-near-room-catch","blanket-line", +"born-greatly-explain3","bring-water-silence","brush-bigger-afternoon0","column-wore-meet-war","compare-breeze-mad2", +"did-straight-sister-sail","excitement-tonight-dead","gain-pleasant-prepare","industrial-public-immediately-until", +"is-straight-web3-attack","known-wet-thirty-gave","listen-private-thee6","mainly-cent","mountain-quarter-sit8", +"mouse-bat-web3-present","needs-supper-anything","percent-impossible-score","rocket-location-calm-valley", +"seldom-fire-web3-running","shade-swim-shells1","spider-melted-chemical","stretch-onto-driver7","tiny-dream-supply5", +"tool-invented-girl-jungle","we-hunt-process","web3-automobile7","whether-dangerous","ansicolors","ignorepatterns", +"response-stream","script-injector","find-global-packages","jsl","dotpathlookup","simplehttpserver","platform","docdown", +"qunit-extras","performance","speed","@beyond-js/specifier-parser","@beyond-js/fs","@beyond-js/bee","ansi-to-html", +"concat-with-sourcemaps","json-format","resolve-package-path","uimport","global-modules","universal", +"universal javascript","universal typescript","isomorphic","isomorphic javascript","isomorphic typescript","sigle page", +"spa","modular development","microfrontend", +"micro frontend","microservices","micro services","hmr","hot module replacement","ssr","server side rendering", +"typescript packager","JAMStack","real time","react framework","ssr react framework","vue framework","ssr vue framework", +"svelte framework","ssr svelte framework","websockets","check-types","hoopy","tryer","please-release-me","spooks", +"streamify","stringify","serialise","serialize","write","asynchronous","arbitrary","precision","arithmetic","big", +"number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum","file-uri-to-path","addon","gyp","c", +"c++","@noble/hashes","@antv/component","@antv/g2","@antv/g2plot","@antv/util","d3-color","react-reconciler", +"@antv/data-set","@babel/preset-es2015","@storybook/addon-info","@storybook/addon-knobs","@storybook/addon-options", +"@umijs/fabric","@welldone-software/why-did-you-render","aphrodite","babel-plugin-inline-react-svg", +"babel-plugin-inline-svg","bx-jest-electron","declaration-bundler-webpack-plugin", +"git-directory-deploy","imports-loader","moment-jalaali","react-with-styles-interface-aphrodite", +"react-with-styles-interface-css-compiler","snapshot-diff","g2","@types/readable-stream","buffers","awesomesauce", +"falafel","foreach","coffee-react","uglify-save-license","curses","tui","tput","terminfo","termcap","ansi-term", +"drawille-canvas-blessed-contrib","map-canvas","marked-terminal","memory-streams","picture-tuber","sparkline", +"term-canvas","x256","@types/blessed","block","loop","kefir","baconjs","promises-a","promises-aplus","deferred", +"deferreds","future","flow control","dsl","fluent interface","standardx","BN","Big number","BigNum","Modulo", +"Montgomery","create-error","bookshelf-jsdoc-theme","postgresql","datamapper","active record","error","@types/mime", +"@astrojs/mdx","@astrojs/check","@astrojs/prism","@astrojs/sitemap","astro-auto-import","prettier-plugin-astro", +"@astrojs/markdown-remark","mincer","eyeglass-module","box", +"boxes","border","quote-stream","static-module","browserify-transform","readFileSync","asset","heimdalljs","array-equal", +"fs-tree-diff","broccoli-plugin","mocha-eslint","release-it-lerna-changelog","merge-trees","broccoli-fixture","copy", +"broccoli-fixturify","multidep","ts-docs-gen","tslint-plugin-prettier","browser-sync-client","browser-sync-ui", +"bs-recipes","dev-ip","easy-extender","eazy-logger","resp-modifier","bs-snippet-injector","generate-changelog", +"browser sync","live reload","sync","subarg","defined","parents","deps-sort","duplexer2","htmlescape","module-deps", +"stream-http","browser-pack","syntax-error","os-browserify","shasum-object","vm-browserify","domain-browser", +"mkdirp-classic","string_decoder","tty-browserify","browser-resolve","browserify-zlib","querystring-es3", +"https-browserify","read-only-stream","stream-browserify","timers-browserify","console-browserify", +"cached-path-relative","constants-browserify","labeled-stream-splicer","seq","isstream","coffeeify","browser-unpack", +"has-object-spread","has-template-literals","make-generator-function","commonj-esque","exposify","mothership", +"rename-function-calls","test-peer-range","transform","window","baseline-browser-mapping","node-releases", +"update-browserslist-db","browsers","target","base-x","ts-standard","base58","bitcoin","crytography","decode","decoding", +"encode","litecoin","typescript-cached-transpile","acorn-dynamic-import","acorn-jsx","regexpu-core","console-group", +"@rollup/plugin-buble","test262-stream","transpilation","compilation","esnext","es2017","arraybuffer","compatible", +"dataview","uint8array","equal","builtin","built-in","builtins","bundled","names","flexbox","@asyncapi/specs", +"@clack/prompts","@oclif/plugin-warn-if-update-available","@stoplight/yaml","jsonpathly","mergician","@types/jsonpath", +"bump","compress","mv","dtrace-provider","safe-json-stringify","ben","log4j","streamsearch","@mscdex/eslint-config", +"uploads","multipart", +"closurecompiler","lxiv","metascript","pretty-hrtime","testjs","utfx","typed array","webrtc","byte","converter", +"@bcoe/v8-coverage","foreground-child","v8-to-istanbul","chai-jest-snapshot","v8","profiler","inspector","@types/mri", +"eslint-config-rem","rollup-plugin-esbuild","@babel/plugin-syntax-typescript","@cacheable/utils","@faker-js/faker", +"@keyv/redis","@vitest/spy","cache-manager-redis-yet","cacheable","caching","cache manager","in-memory cache", +"multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper", +"call-bind-apply-helpers","es-define-property","get-intrinsic","set-function-length","es","callbind","callbound","call", +"bind","bound","call-bound","camel-case","camel","case","dash","hyphen","separator","pascalcase","pascal-case","support", +"prebuild-install","assert-rejects","graphic","graphics","pixman","cairo","image", +"pdf","case sensitive","slimerjs","scraping","loupe","pathval","check-error","assertion-error","@web/dev-server-rollup", +"chai-plugin","assertions","strategy","@debitoor/eslint-config-debitoor","objects","subset","contains","containSubset", +"deep","like","similar","includes","superset","yoctodelay","docpress","git-update-ghpages","gulp-ava","gulp-uglify-es", +"random","mersenne","name","address","dice","param-case","kebab-case","header-case","c12","confbox","convert-gitmoji", +"node-fetch-native","ofetch","pkg-types","scule","std-env","@kurkle/color","@rollup/plugin-inject", +"@types/offscreencanvas","chartjs-adapter-luxon","chartjs-adapter-moment","chartjs-test-utils","eslint-config-chartjs", +"eslint-plugin-es","karma-safari-private-launcher","rollup-plugin-swc3","charts","data","graphs","domutils","domhandler", +"cheerio-select","whatwg-mimetype","encoding-sniffer","parse5-parser-stream","parse5-htmlparser2-tree-adapter", +"@imgix/js-core", +"@octokit/graphql","@vitest/eslint-plugin","@types/whatwg-mimetype","htmlparser","scraper","xml","node-version","child", +"@better-scroll/core","add-dom-event-listener","choerodon-ui-font","css-animation","css-unit-converter","dom-closest", +"dom-lib","element-resize-event","htmlhint","insert-css","jsbarcode","jsonlint","jsonlint-mod","mutationobserver-shim", +"querystringify","quill-delta-to-html","react-beautiful-dnd","react-codemirror2","react-easy-crop", +"react-image-lightbox","react-lazy-load","react-quill","rmc-feedback","smooth-scroll-into-view-if-needed", +"@babel/plugin-transform-proto-to-assign","@types/codemirror","@types/element-resize-event","@types/faker", +"@types/insert-css","@types/jsbarcode","@types/prettier","@types/qrcode.react","@types/react-beautiful-dnd", +"@types/react-is","@types/react-slick","bisheng-plugin-choerodon-ui","bisheng-plugin-description","bisheng-plugin-react", +"bisheng-plugin-toc","eslint-tinker","intersection-observer","mark-twain","rc-queue-anim","rc-scroll-anim", +"react-infinite-scroller","react-sublime-video","scrollama","values.js","vfile-message","webpack-filter-warnings-plugin", +"choerodon","readdirp","@paulmillr/jsbt","watchFile","watcher","watching", +"file","ci","continuous","detect","@ckeditor/ckeditor5-emoji","@ckeditor/ckeditor5-style","@ckeditor/ckeditor5-mention", +"@ckeditor/ckeditor5-minimap","@ckeditor/ckeditor5-autosave","@ckeditor/ckeditor5-bookmark", +"@ckeditor/ckeditor5-language","@ckeditor/ckeditor5-highlight","@ckeditor/ckeditor5-code-block", +"@ckeditor/ckeditor5-fullscreen","@ckeditor/ckeditor5-html-embed","@ckeditor/ckeditor5-page-break", +"@ckeditor/ckeditor5-theme-lark","@ckeditor/ckeditor5-word-count","@ckeditor/ckeditor5-show-blocks", +"@ckeditor/ckeditor5-html-support","@ckeditor/ckeditor5-markdown-gfm","@ckeditor/ckeditor5-remove-format", +"@ckeditor/ckeditor5-source-editing","@ckeditor/ckeditor5-horizontal-line","@ckeditor/ckeditor5-find-and-replace", +"@ckeditor/ckeditor5-restricted-editing","@ckeditor/ckeditor5-special-characters","classname","minifier", +"@chrisblossom/eslint-config","@types/read-pkg-up","temp-sandbox","clean","parent-module","uncache","uncached", +"unrequire","delete","remove","rm","opts","parseopt","opt","argsparse","optparse","autocomplete","autocompletion","d", +"es6-iterator","timers-ext","eslint-config-medikoo","git-list-updated","github-release-from-cc-changelog", +"prettier-elastic","tad","toggle","display","show","hide","string-length","spinner","spinners","expresso", +"ansi-256-colors", +"git-rev","growl","line","tables","tabular","jest-runner-eslint","lerna-changelog","truncate","ellipsis","limit","width", +"cardinal","hyperlinker","@oclif/screen","extract-stack","object-treeify","@oclif/linewrap","natural-orderby", +"password-prompt","@types/strip-ansi","@types/ansi-styles","@types/extract-stack","@types/rollup","@yarnpkg/core", +"@yarnpkg/fslib","eslint-plugin-arca","rollup-plugin-multi-input","parsing","argument","good-listener","select", +"tiny-emitter","cut","clipboard-image","is-wayland","is64bit","powershell-utils","paste","copy-paste","pasteboard", +"pbcopy","clip","xclip","xsel","command line interface","progress bar","istanbul-harmony","coro","coroutine","mask", +"ignore-walk","teeny-request","urlgrey","code-coverage","codecov.io","@codemirror/lint","@codemirror/view", +"@codemirror/state","@codemirror/search","@codemirror/commands","@codemirror/language","@codemirror/autocomplete", +"@codemirror/buildhelper","google-closure-compiler-js", +"language","jison","wcwidth","column","exists","array-back","find-replace","typical","options","chalk-template", +"table-layout","usage","is-utf8","cachedir","find-node-modules","mocha-multi-reporters","@istanbuljs/nyc-config-babel", +"cz-conventional-changelog-default-export","conventional changelog","es2015-tag","es6-tag","heredoc","indent","indents", +"literal","multi","multiline","normalize","one","oneline","single","singleline","strings","strip","tag","tagged", +"emitter","emit","listener","observe","compressible","on-headers","gzip","deflate","brotli","buffer-from", +"ctrlc-wrapper","coveralls-next","@types/shell-quote","@hirez_io/observer-spy","eslint-plugin-import-lite", +"eslint-config-flat-gitignore","bash","sh","cson","faceoff","hjson","x2js","conf","node-config","config-node","env", +"atomically","is-safe-filename", +"xdg-basedir","settings","preferences","persist","persistent","save","rack","flash","kruptein","mongo","session", +"vite-plugin-dts","defu","is-unicode-supported","sentencer","reporter","elegant","clack","stacktrace","eco","ect","eta", +"slm","dust","jazz","just","mote","qejs","twig","vash","jqtpl","twing","hamlet","hamljs","liquor","plates","teacup", +"toffee","walrus","htmling","ractive","whiskers","tinyliquid","velocityjs","haml-coffee","liquid-node","arc-templates", +"dustjs-helpers","swig-templates","dustjs-linkedin","bracket-template","engine","rfc6266","rfc7231", +"@types/normalize-package-data","fd-package-json","normalize-package-data","@conventional-changelog/git-client", +"conventional-changelog-writer","conventional-changelog-preset-loader","conventional","tempfile","add-stream", +"compare-func", +"conventionalcommits.org","preset","inline-source-map","sourcemap","source","map","@borderless/ts-scripts","top-sites", +"cookies","sign","unsign","toggle-selection","@brettz9/node-static","selenium-server-standalone-jar","is-gzip", +"@types/glob-parent","@types/normalize-path","eslint-config-webpack","@types/serialize-javascript","transfer","move", +"noms","qr","qrcode","simple qr","npm qr JavaScript","js qr code","corcojs-qrcode-sample","logo","simple qrcode", +"cordova-common","cordova-create","cordova-lib","@cordova/eslint-config","ES3","ES5","ES6","ES7","ES2015","ES2016", +"ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6", +"ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019", +"ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set", +"WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams", +"queueMicrotask","setImmediate","structuredClone","ponyfill","parse-json","@types/parse-json", +"eslint-config-davidtheclark-node","remark-preset-davidtheclark","load","lcov-parse","log-driver","cpy","cp","files", +"file-system","quick","contents","tslog","hpagent","seenreq","http2-wrapper","@types/got","spider","crc16ccitt", +"crc16kermit","crc16modbus","crc16","crc16xmodem","crc1","crc24","crc32","crc81wire","crc8","crc8dvbs2","crcjam", +"cipher-base","ripemd160","sha.js","async-traverse-tree","css-url-parser","data-uri-to-buffer","group-args", +"inline-critical","oust","penthouse","postcss-discard","postcss-image-inliner","postcss-url","normalize-newline", +"stream-array","optimization","@fast-check/jest","@insurgent/commitlint-config", +"@insurgent/conventional-changelog-preset", +"@semantic-release/commit-analyzer","@semantic-release/npm","@semantic-release/release-notes-generator","@swc/jest", +"node cron","node-cron","schedule","cronjob","cron job","timer","crontab","@prantlf/jsonlint","@prettier/plugin-xml", +"@secretlint/secretlint-rule-github","@secretlint/secretlint-rule-npm","@stryker-mutator/core", +"@stryker-mutator/tap-runner","@types/bun","eslint-plugin-array-func","eslint-plugin-no-unsanitized","jsr","metalint", +"secretlint","yaml-lint","@cropper/elements","@cropper/utils","crop","zoom","rotate","scale","cropper","cropper.js", +"image-cropping","image-viewing","image-processing","cropper-element","custom-element","web-component", +"@epic-web/invariant","@epic-web/config","@types/cross-spawn","zshy","cross-environment","environment variable", +"windows","cross-platform","rollup-plugin-esbuild-minify","path-key","shebang-command","babel-preset-moxy", +"eslint-config-moxy","spawn","spawnSync","path-ext","shebang","cmd","execute","browserify-cipher","browserify-sign", +"create-ecdh","create-hmac","diffie-hellman","hash-base","pbkdf2", +"public-encrypt","randomfill","pseudorandombytes","security","Hash","MD5","SHA1","SHA-1","SHA256","SHA-256","RC4", +"Rabbit","AES","DES","PBKDF2","HMAC","OFB","CFB","CTR","CBC","Base64","Base64url","eslint-config-groupon","nlm", +"@cspell/cspell-json-reporter","@cspell/cspell-performance-monitor","@cspell/cspell-pipe","@cspell/cspell-types", +"@cspell/cspell-worker","@cspell/dynamic-import","@cspell/url","cspell-config-lib","cspell-dictionary", +"cspell-gitignore","cspell-glob","cspell-io","cspell-lib","fast-json-stable-stringify","flatted","spell","checker", +"spelling","spell checker","spelling checker","lint","source-map-resolve","@mdn/browser-compat-data", +"@rollup/plugin-dynamic-import-vars","sorter","property","order","@swc-node/register","changelog-verify", +"eslint-config-nitpick","github-release-from-changelog","isomorphic-unfetch","rolldown-plugin-dts","version-changelog", +"write-json-file","functions","postcss-modules-extract-imports","postcss-modules-scope", +"@webpack-contrib/eslint-config-webpack","@swc/css", +"@parcel/css","@types/csso","@types/clean-css","cssnano-preset-simple","webpack-plugin","minimize","minimizer", +"optimize","optimizer","boolbase","@types/boolbase","cheerio-soupselect","sizzle","clap","json-to-ast","walker","lexer", +"web-features","features","stages","identifier","cssnano-preset-default","cssnano-preset-advanced","cssnano-preset-lite", +"optimise","optimisation","@asamuzakjp/css-color","@csstools/css-syntax-patches-for-csstree","@domenic/eslint-config", +"@webref/css","CSS","CSSStyleDeclaration","StyleSheet","@tsconfig/node24","@types/chokidar","@types/turndown","csrf", +"tokens","tsv","generation","object","csv-spectrum","pad","@types/lodash.set","csv parser","parse csv","csv to json", +"csv convert","tojson","convert csv to json","csv-json","duration","stack-chain","is-generator","stacktrace-js", +"serialize-error","cucumber-expressions","cucumber-tag-expressions","ansi-html","eslint-plugin-testcafe","riteway", +"updtr","guid","id", +"uid","unique id","hasha","ospath","blob-util","executable","@cypress/xvfb","@types/sizzle","@cypress/request", +"request-progress","cypress.io","mocks","spies","stubs","longest","conventional-commit-types","d3-dsv","d3-geo", +"d3-axis","d3-drag","d3-ease","d3-path","d3-time","d3-zoom","d3-brush","d3-chord","d3-fetch","d3-force","d3-timer", +"d3-format","d3-random","d3-contour","d3-polygon","d3-delaunay","d3-dispatch","d3-quadtree","d3-hierarchy", +"d3-transition","d3-interpolate","d3-time-format","d3-scale-chromatic","topojson-client","@observablehq/runtime", +"visualization","internmap","d3-module","histogram","bisect","shuffle","statistics","search","sort","selection", +"data-join","dable","tailwind css","tailwind react","tailwind vue","tailwind plugin","tailwind component", +"tailwind next","tailwind nuxt","tailwind svelte","tailwind css plugin", +"tailwind astro","tailwind laravel","tailwind rails","laravel","nuxt","css library","reverse","arguments","binary", +"opposite","invert","switch","construct","@captemulation/get-parameter-names","json-schema-faker-bb","request-debug", +"rss-parser","swagger-express-middleware","bun","cloc","js-fns","jscodeshift","@date-fns/tz","@date-fns/utc", +"@date-fns/docs","@size-limit/esbuild","typedoc-plugin-missing-exports","babel-plugin-replace-import-extension", +"gzip-size-cli","require-directory","sleep","async wrapper","debouncing","throttle","invoke","limited","interval","rate", +"batch","rate-limit","debugger","decamelcase","lowercase","decompress-tar","decompress-tarbz2","decompress-targz", +"decompress-unzip","strip-dirs","is-jpg","bz2","bzip2","extract","tar.bz","tar.gz","@types/babel-plugin-macros", +"console-fail-test","eslint-plugin-deprecation","eslint-plugin-no-only-tests","eslint-plugin-perfectionist", +"eslint-plugin-yml","jsonc-eslint-parser","npm-package-json-lint-config-default","prettier-plugin-curly", +"should-semantic-release", +"yaml-eslint-parser","multi-line string","duplicates","dupes","remove duplicates","distinct","deduplicate", +"deduplication","is-obj","obj","assign","recursive","key","keys","values","prop","json-ptr","difference","compare", +"change-tracking","kewlr","simple-assert","lcov-result-merger","eslint-config-strict","@js-temporal/polyfill", +"eslint-plugin-filenames","chai util","deep equal","object equal","array-buffer-byte-length","es-get-iterator", +"is-arguments","is-array-buffer","is-date-object","is-regex","is-shared-array-buffer","regexp.prototype.flags", +"side-channel","which-boxed-primitive","which-collection","which-typed-array","available-typed-arrays","has-proto", +"has-typed-arrays","equality","is-mergeable-object","jsmd","is-path-cwd","is-path-inside","presentable-error","folders", +"directories","destroy","trash","unlink","cleaning","cleanup","rmrf","rmdir","gulpfriendly","folder","directory", +"filesystem","temp-write", +"random-int","unlimited-timeout","in-range","time-span","defer","stall","timeout","settimeout","tick","threshold", +"range","callsite","deps-regex","is-core-module","@vue/compiler-sfc","patch-version","check","unused","packages", +"deprecate","deprecated","is-relative","read-package-json","detective-cjs","indentation","infer","identify","space", +"tab","@eggjs/tsconfig","egg-bin","eslint-config-egg","mm","tshy-after","port","jsdiff","patch","@profoundlogic/hogan", +"@eslint/json","@types/hogan.js","@types/nopt","all-contributors-cli","handlebars-loader","image-webpack-loader", +"is-ci-cli","side","side-by-side","line-by-line","character","difftohtml","colorized","data-structure-typed", +"eslint-import-resolver-alias","Directed Graph","directed graph","directedgraph","directed-graph","directed","Directed", +"digraph","java script","JavaScript","type script","vertex", +"Vertex","edge","Edge","graph theory","Graph Theory","graph structure","weighted","Weighted","unweighted","Unweighted", +"adjacency","Adjacency","connectivity","cycle","acyclic","traversal","depth","Depth","breadth","Breadth","first", +"depth first search","dfs","DFS","breadth first search","breadth-first search","bfs","BFS","graph algorithms", +"graph representation","connectivity matrix","adjacency list","adjacency matrix","matrix","node degree","sparse graph", +"dense graph","directed cycle","directed acyclic graph","DAG","topologic","topological","sorting", +"strongly connected components","weighted digraph","directed weighted edge","structure","structures","data structure", +"datastructure","data-structure","data structures","datastructures","data-structures","in data structures", +"in data structure","DataStructure","DataStructures","iterative","Node.js","CommonJS","UMD","esmodule","java.util", +"c++ stl","c++ std","Python collections","System.Collections.Generic","STL","stl","collection","Collection", +"Collections","insertion","deletion","OOP","@discordjs/voice","backend-manager","productivity","@discordjs/ws", +"lodash.snakecase","@discordjs/builders","@discordjs/formatters","@discordjs/docgen","bot","cache-point", +"common-sequence","file-set","walk-back","dmd-plugin-example","jsdoc2md","agnostic","dnd","drag","drop","dnode-protocol", +"jsonify","weak","rpc","callbacks","doc-detective-common","doc-detective-resolver","@ffmpeg-installer/ffmpeg", +"@puppeteer/browsers","appium-chromium-driver","appium-geckodriver","appium-safari-driver","geckodriver","jq-web", +"json-schema-faker","posthog-node","literate","mecano","parameters","@balena/dockerignore","@grpc/grpc-js", +"@grpc/proto-loader","docker-modem","docker","docker.io","@bevry/pluginloader","ambi","ansistyles","bal-util", +"caterpillar","docmatter","docpad-baseplugin","eachr", +"envfile","errlop","event-emitter-grouped","extendr","extract-opts","ignorefs","istextorbinary","jschardet", +"lazy-require","progress-title","query-engine","rfc-log-levels","safefs","safeps","scandirectory","taskgroup", +"typechecker","unbounded","watchr","@bevry/update-contributors","assert-helpers","coffeelint","kava","projectz", +"valid-directory","build","build and deployment","cms","compile","content management system","dev","dms", +"document management system","language agnostic","render","templating","web development","dependency-cruiser","dpdm", +"docsify.js","tabs","@textlint/markdown-to-ast","anchor-markdown-header","update-section","bitbucket","gitlab","ghost", +"doctrine-temporary-fork","konan","mdast-util-inject","micromark-util-character","parse-filepath", +"remark-reference-links","unist-builder","vfile-reporter","vfile-sort","chdir","documentation-schema","jsdoc3", +"big-integer","binary-search-bounds","int64-buffer","priorityqueuejs","semaphore", +"tunnel","cosmosdb","cosmos db","document database","nosql","database","crowdin-cli","imagemin-svgo","tree-node-cli", +"truncate-html","imagemin-optipng","imagemin-gifsicle","imagemin-jpegtran","filepath","glob-promise","websites", +"open source","autocomplete.js","lunr-languages","to-vfile","unist-util-is","offline-search","@4c/rollout", +"@4c/tsconfig","@react-bootstrap/babel-preset","@react-bootstrap/eslint-config", +"@react-bootstrap/eslint-config-typescript","karma-html2js-preprocessor","simulant","cross-browser","height","class", +"classlist","domelementtype","raster","png","@types/trusted-types","lodash.sample","qunit-tap", +"rollup-plugin-includepaths","mathml","secure","sanitizer","sanitize","filter","purify",".env","expand","interpolation", +"substitution","ext-name","filenamify","archive-type","is-zip","random-buffer","git-clone","repo","repository","tarball", +"import-from","parse-cmd-args","simple-update-notifier","ts-jest-resolver","dox", +"spawn-please","@types/temp","alex","babel-preset-fbjs","eslint-config-fbjs","fbjs-scripts","gulp-derequire", +"stats-webpack-plugin","webpack-stream","draftjs","richtext","just-extend","@parcel/transformer-inline-string", +"@parcel/transformer-sass","cypress-file-upload","karma-sinon-chai","parcel","dragndrop","drag and drop","file upload", +"upload","tsutils","dts-critic","@definitelytyped/utils","@definitelytyped/header-parser", +"@definitelytyped/typescript-versions","@types/strip-json-comments","@types/json-stable-stringify","proper-lockfile", +"db","elementscript","dw-neit-colors","dw-neit-cssinjs","dw-neit-cssinjs-utils","dw-neit-icons", +"dw-neit-ant-design-react-slick","dw-neit-rc-component-color-picker","dw-neit-rc-component-mutate-observer", +"dw-neit-rc-component-qrcode","dw-neit-rc-component-tour","dw-neit-rc-component-trigger","dw-neit-rc-cascader", +"dw-neit-rc-checkbox","dw-neit-rc-collapse","dw-neit-rc-dialog","dw-neit-rc-drawer","dw-neit-rc-dropdown", +"dw-neit-rc-field-form","dw-neit-rc-image","dw-neit-rc-input","dw-neit-rc-input-number","dw-neit-rc-mentions", +"dw-neit-rc-menu","dw-neit-rc-motion","dw-neit-rc-notification","dw-neit-rc-pagination","dw-neit-rc-picker", +"dw-neit-rc-progress","dw-neit-rc-rate","dw-neit-rc-resize-observer","dw-neit-rc-segmented","dw-neit-rc-select", +"dw-neit-rc-slider","dw-neit-rc-steps", +"dw-neit-rc-switch","dw-neit-rc-tabs","dw-neit-rc-textarea","dw-neit-rc-tree","dw-neit-rc-util","dw-neit-rc-table", +"dw-neit-rc-tooltip","dw-neit-rc-tree-select","dw-neit-rc-upload","@antv/g6","@types/pixelmatch","eslint-plugin-lodash", +"@eslint/core","control flow","iteration","zrender","@lang/rollup-plugin-dts","data-visualization","charting-library", +"apache","data-viz","editorconfig","gulp-exclude-gitignore","gulp-reporter","gulp-tap","linez","os-locale", +"@types/get-stream","@types/through2","@types/vinyl","@types/vinyl-fs","fix","enforce","gulpplugin","agentkeepalive", +"aliasify","backport","grunt-run","null-loader","through2-map","grunt-webpack","grunt-contrib-compress","@electron/get", +"lazy-val","dmg-builder","builder-util","app-builder-lib","builder-util-runtime","installer","packager","pack","nsis", +"dmg","pkg","msi","exe","setup","Windows","OS X","MacOS","Mac","appx","snap","flatpak", +"@electron/asar","@electron/notarize","@electron/osx-sign","@electron/universal","cross-spawn-windows-exe","galactus", +"get-package-info","junk","parse-author","rcedit","bundler","electron-download","home-path","wonderful-fetch", +"batch-processor","grunt-banner","@vue/component-compiler-utils","algoliasearch","babel-plugin-transform-vue-jsx", +"babel-regenerator-runtime","cp-cli","eslint-config-elemefe","eslint-plugin-json","file-save","gulp-cssmin", +"launch-editor-middleware","markdown-it-chain","select-version-cli","transliteration","uppercamelcase", +"vue-template-es2015-compiler","eleme","brorand","hash.js","hmac-drbg","minimalistic-assert","minimalistic-crypto-utils", +"grunt-mocha-istanbul","EC","Elliptic","curve","Cryptography","@ladjs/consolidate","@ladjs/i18n","get-paths","juice", +"nodemailer-sendgrid","preview-email","email","lad","lass","mailchimp","mailgun","mandrill","moonmail","postmark", +"sendgrid","@types/mailparser","@types/smtp-server","mailparser","smtp-server","@ember-tooling/blueprint-blueprint", +"@ember-tooling/blueprint-model","@ember/app-blueprint", +"@pnpm/find-workspace-dir","babel-remove-types","broccoli-concat","broccoli-config-loader","broccoli-config-replace", +"broccoli-debug","broccoli-funnel-reducer","broccoli-slow-trees","broccoli-source","broccoli-stew", +"calculate-cache-key-for-tree","capture-exit","clean-base-url","console-ui","content-tag","core-object","dag-map", +"ember-cli-is-package-missing","ember-cli-preprocess-registry","ensure-posix-path","find-yarn-workspace-root", +"heimdalljs-fs-monitor","heimdalljs-graph","heimdalljs-logger","is-git-url","is-language-code","markdown-it-terminal", +"p-defer","promise-map-series","promise.hash.helper","quick-temp","safe-stable-stringify","sane","sort-package-json", +"symlink-or-copy","tree-sync","watch-detector","yam","@ember-tooling/classic-build-addon-blueprint", +"@ember-tooling/classic-build-app-blueprint","chai-files","ember-cli-blueprint-test-helpers", +"ember-cli-internal-test-helpers","eslint-plugin-chai-expect","fixturify-project","release-plan","tmp-promise", +"yuidoc-ember-cli-theme","yuidocjs","app-kit","ember","ember-app-kit","ember.js","amd-name-resolver", +"babel-plugin-debug-macros","babel-plugin-ember-data-packages-polyfill","babel-plugin-ember-modules-api-polyfill", +"broccoli-babel-transpiler","ember-cli-babel-plugin-helpers","ember-cli-version-checker","@ember/optional-features", +"@ember/string","@ember/test-helpers","@glimmer/component", +"@glimmer/tracking","code-equality-assertions","ember-auto-import","ember-cli-dependency-checker", +"ember-cli-inject-live-reload","ember-load-initializers","ember-qunit","ember-resolver","ember-source", +"ember-source-channel-url","eslint-plugin-ember","loader.js","ember-addon","@ember/edition-utils", +"babel-plugin-ember-template-compilation","broccoli-persistent-filter","js-string-escape","@embroider/test-setup", +"ember-cli-clean-css","ember-styleguide","ember-template-lint","ember-try","eslint-plugin-qunit","@emmetio/abbreviation", +"@emmetio/css-abbreviation","snippets","coding","streams","finish","close","end","es-errors","safe-regex-test", +"entitify","entity","enum","enumeration","datatype","type","github-release-cli","yamlify-object","info","issues", +"reporting","diagnostics","array.prototype.flat","function.prototype.name","has","html-element-map","is-boolean-object", +"is-callable","is-number-object","is-string","is-subset","lodash.escape","object.values","rst-selector-parser", +"string.prototype.trim","shallow rendering","shallowRender","test utils","assertion helpers","airbnb-prop-types", +"object.fromentries", +"codependence","oxlint","pastoralist","check for es6","check for modules","es check","es matching","es version", +"ecmascript check","ecmascript matching","ecmascript version","js version","js version check","js version matching", +"test js version","test ecmascript version","has-bigints","intl-fallback-symbol","make-arrow-function", +"make-async-function","@ljharb/tsconfig","@types/array.prototype.flatmap","@types/call-bind","@types/foreach", +"@types/has-bigints","@types/has-symbols","@types/isarray","@types/make-arrow-function","@types/make-async-function", +"@types/make-generator-function","@types/object.assign","@types/reflect.ownkeys","@types/tape","reflect.ownkeys", +"symbol.prototype.description","well-known-symbols","fixture","fixtures","es6-symbol","esniff","next-tick", +"plain-promise","ecmascript5","ecmascript6","es5","extensions","ext","addons","extras","utilities","es5 shim","json3", +"broccoli-rollup","git-repo-version","broccoli-watchify","broccoli-uglify-js","promises-aplus-tests-phantom", +"babel6-plugin-strip-class-callcheck","babel-plugin-transform-es2015-constants","futures","promisify", +"promises-es6-tests","setPrototypeOf","set", +"__proto__","regular","expression","special","characters","bower-registry-client","commonjs-everywhere", +"@eslint/config-array","@eslint/config-helpers","@eslint/plugin-kit","@humanfs/node","@humanwhocodes/module-importer", +"@humanwhocodes/retry","esquery","file-entry-cache","imurmurhash","json-stable-stringify-without-jsonify", +"@trunkio/launcher","@types/esquery","eslint-plugin-expect-type","eslint-release","eslint-rule-extender","eslump", +"fs-teardown","metascraper","metascraper-description","metascraper-image","metascraper-logo","metascraper-logo-favicon", +"metascraper-title","node-polyfill-webpack-plugin","npm-license","yorkie","babel-tape-runner","eslint-find-rules", +"eslintconfig","airbnb","es2016","es2018","confusing-browser-globals","prettier-package-json","quality","linter", +"jslint","code style","strict","verify","hint","eslint config","eslint-config-xo-space","eslint-prettier", +"@rushstack/eslint-patch","JavaScript Standard Style","code checker","code linter","code standards","policy", +"standard style","style checker","style linter","@eslint/config-inspector","automd","eslint-typegen","obuild", +"@eslint/css","xoxo","hugs","kisses","happy","happiness","cabin","rules","@typescript/native-preview", +"eslint-import-context","is-bun-module","stable-hash-x","unrs-resolver","@webpack-contrib/defaults", +"commitlint-azure-pipelines-cli","eslint-friendly-formatter","enhance-visitors","espurify","micro-spelling-correcter", +"eslint-ava-rule-tester","eslint-rule-composer","ast-metadata-inferer","@tsconfig/node16","@types/caniuse-lite", +"@types/lodash.memoize","browserslist-config-erb","kangax","@vuepress/plugin-pwa","eslint4b","vue-eslint-editor", +"comment","directive","exported","eslint-env","eslint-enable","eslint-disable","eslint-disable-line", +"eslint-disable-next-line","@eslint-community/eslint-plugin-eslint-comments","@types/eslint-scope","@types/espree", +"@types/estraverse","eslint-config-not-an-aardvark","string-natural-compare","gitdown","eslint-config-canonical", +"flowtype","@html-eslint/eslint-plugin","@html-eslint/parser","markdown-link-check","@rtsao/scc","array-includes", +"array.prototype.findlastindex","doctrine","eslint-import-resolver-node","eslint-module-utils","object.groupby", +"string.prototype.trimend","@angular-eslint/template-parser","escope","fs-copy-file-sync","linklocal","lodash.isarray", +"npm-which", +"typescript-eslint-parser","export","@schemastore/package","babel-plugin-replace-ts-export-assignment", +"eslint-remote-tester-repositories","@es-joy/jsdoccomment","@es-joy/resolve.exports","are-docs-informative", +"object-deep-merge","parse-imports-exports","spdx-expression-parse","to-valid-identifier","@es-joy/escodegen", +"@es-joy/jsdoc-eslint-parser","@hkdobrev/run-if-changed","@types/spdx-expression-parse", +"babel-plugin-transform-import-meta","jsdoc-type-pratt-parser","json-schema-to-typescript","open-editor","replace", +"@ota-meshi/ast-token-store","diff-sequences","eslint-json-compat-utils","@changesets/changelog-github", +"@ota-meshi/eslint-plugin","@ota-meshi/site-kit-eslint-editor-vue","@types/natural-compare","env-cmd", +"eslint-plugin-eslint-rule-tester","eslint-plugin-json-schema-validator","eslint-plugin-node-dependencies", +"stylelint-config-recommended-vue","stylelint-config-standard-vue","stylelint-stylus","vite-plugin-eslint4b","jsonc", +"ast-types-flow","axobject-query","damerau-levenshtein","jsx-ast-utils","language-tags","string.prototype.includes", +"to-ast","eslint-config-eslint","eslint-plugin-es-x","ts-declaration-location","@types/globrex","ts-ignore-import", +"eslint-utils","prettier-linter-helpers","array.prototype.findlast","array.prototype.tosorted","es-iterator-helpers", +"string.prototype.repeat","@babel/plugin-syntax-do-expressions","@babel/plugin-syntax-function-bind","gfm-footnotes", +"ls-engines","hermes-parser","@types/estree-jsx","@tsconfig/strictest","refa","regexp-ast-analysis", +"scslre","@types/pako","eslint-plugin-pere","eslint-snapshot-rule-tester","mocha-chai-jest-snapshot","safe-regex", +"eslint-config-nodesecurity","nodesecurity","jsx-ast-utils-x","functional-red-black-tree","sonarjs", +"svelte-eslint-parser","@types/eslint-utils","@types/esutils","@types/less","@types/postcss-safe-parser","@types/stylus", +"svelte-i18n","sveltejs","eslint-plugin-import-x","clean-regexp","find-up-simple","regexp-tree","regjsparser", +"@lubien/fixture-beta-package","nano-spawn","node-style-text","unicorn","@veritem/eslint-config","bumpp", +"vitest eslint plugin","eslint plugin","xml-name-validator","@types/xml-name-validator", +"eslint-plugin-markdown-preferences","@types/babel__code-frame","importx","ink-testing-library","eslint-test", +"@types/esrecurse","esrecurse","eslint-plugin-requirejs","escomplex-js","everything.js","json-diff", +"karma-safaritechpreview-launcher","node-tick-processor","unicode-8.0.0","gulp-tag-version","ethereumjs-common", +"@ethereumjs/config-nyc","@ethereumjs/config-prettier","@ethereumjs/config-tsc","@ethereumjs/config-tslint", +"contributor","karma-tap","typestrict","transactions","ethereum-cryptography","rlp","@types/assert","@types/secp256k1", +"karma-typescript","os-tmpdir", +"es-lookup-scope","qs-iconv","eval","evaulate","from","pause-stream","stream-combiner","asynct","it-is","stream-spec", +"ubelt","flatmap","join","eventemitter","addEventListener","addListener","pub/sub","emits","on","publish","subscribe", +"EventEmitter","EventEmitter2","EventEmitter3","Events","reactor","eventEmitter","eventDispatcher","listeners", +"@sindresorhus/merge-streams","human-signals","strip-final-newline","yoctocolors","get-node","is-in-ci","is-running", +"log-process-errors","exec","subprocess","fork","execfile","bin","binaries","local","stdio","stderr","drain","flush", +"3584","@jest/expect-utils","@jest/get-type","eslint-plugin-mmkal","pkg-pr-new","type-check","merge-descriptors", +"pbkdf2-password","array-flatten","setprototypeof","automatically","autogenerate","autogenerator","autogenerated", +"express3","partials", +"express-unless","authn","authz","token","expressjs","helpers","hoare","cjs-mock","tRPC","RPC","express.js", +"code-generation","fully-typed","type-safe","typed-api","express-api","http-api","client-server","unit-testing", +"browser-client","web-development","web-api","@docusaurus/plugin-client-redirects","@docusaurus/preset-classic", +"sanitization","openapi3-ts","@express-zod-api/zod-plugin","@types/depd","@types/http-errors","@types/node-forge", +"camelize-ts","snakify-ts","dts-plugin","handler","documentation-tool","schema-validation","endpoint", +"openapi-specification","swagger-documentation","covert","assign-symbols","is-extendable","array-slice","benchmarked", +"for-own","kind-of","props","shallow","webpack-defaults","@types/yauzl","gulp-mustache","vinyl-transform", +"color-support","parse-node-version","console.log","timestamp","pure-rand","@fast-check/expect-type", +"@fast-check/poisoning","property-based testing","end-to-end testing","quickcheck","jscheck","jsverify", +"fuzzer","fuzz","@fast-csv/parse","@fast-csv/format","writer","csv writer","CSV","@nodelib/fs.stat","@nodelib/fs.walk", +"@nodelib/fs.macchiato","@types/merge2","@types/picomatch","bencho","eslint-config-mrmlnc","hereby","snap-shot-it", +"implementation","strnum","transformer","js2xml","json2xml","click","@fastify/ajv-compiler","@fastify/error", +"@fastify/fast-json-stringify-compiler","@fastify/proxy-addr","abstract-logging","avvio","fast-json-stringify", +"find-my-way","light-my-request","process-warning","secure-json-parse","toad-cache","@jsumners/line-reporter","ajv-i18n", +"ajv-merge-patch","autocannon","branch-comparer","fast-json-body","fluent-json-schema","h2url","markdownlint-cli2", +"@umijs/babel-preset-umi","@umijs/bundler-webpack","@umijs/case-sensitive-paths-webpack-plugin","@utoo/pack", +"@vercel/ncc","babel-plugin-styled-components","babel-plugin-transform-define","loader-runner","piscina", +"typescript-transform-paths","@types/loader-runner","@types/minimatch","array.prototype.foreach","array.prototype.join", +"array.prototype.map","array.prototype.push","array.prototype.slice","string.prototype.split","tap-parser","human", +"anything", +"protocol","fbjs-css-vars","setimmediate","@skypack/package-check","babel-plugin-minify-dead-code-elimination","in web", +"in javascript","in react","Plug & Play","web component","react components","ui component","advanced component", +"advanced feature","scanner","phonebook","voice","autofillotp","share","livelocationtracking","detectmylocation", +"colorpicker","wakelock","WhatsappShare","NetworkConnection","TextToSpeech","VoiceRecognition","SnapScanner", +"NetworkMonitor","View360","functional program","data management","@types/glob-to-regexp","dequal","glob-to-regexp", +"stub","detect-libc","fiber","thread","worker","art","banner","symbol","symbols","figure","fallback","filesaver", +"saveas","blob","@tokenizer/inflate","strtok3","token-types","uint8array-extras","@tokenizer/token","commonmark", +"noop-stream","magic","pic","picture","photo","video","exif","elf","macho", +"jpg","apng","gif","flif","xcf","cr2","cr3","orf","arw","dng","nef","rw2","tif","bmp","icns","jxr","psd","indd","rar", +"gz","7z","mp4","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","epub","mobi", +"rtf","woff","woff2","eot","ttf","otf","ttc","ico","flv","ps","xz","xpi","cab","deb","ar","rpm","Z","lz","cfb","mxf", +"mts","wasm","webassembly","blend","bpg","docx", +"pptx","3gp","j2c","jp2","jpm","jpx","mj2","aif","odt","ods","odp","heic","ics","pcap","dsf","lnk","voc","ac3","3g2", +"m4b","m4p","m4v","f4a","f4b","f4p","f4v","mie","qcp","asf","ogv","ogm","oga","spx","ogx","ape","wv","cur","nes","crx", +"ktx","dcm","mpc","arrow","shp","aac","mp1","it","s3m","xm","skp","eps","lzh","pgp","asar","chm","3mf","zst","jxl","vcf", +"jls","pst","dwg","parquet","arj", +"cpio","ace","avro","icc","fbx","vsdx","vtt","apk","drc","lz4","potx","xltx","dotx","xltm","ots","odg","otg","otp","ott", +"xlsm","docm","dotm","potm","pptm","jar","jmp","sav","ppsm","ppsx","reg","dat","size","readable","file system", +"locate-path","unicorn-magic","up","look-up","look","parent","walking","detect-file","resolve-dir","homedir-polyfill", +"@firebase/ai","@firebase/app","@firebase/auth","@firebase/util","@firebase/storage","@firebase/database", +"@firebase/analytics","@firebase/app-check","@firebase/app-types","@firebase/firestore","@firebase/functions", +"@firebase/messaging","@firebase/app-compat","@firebase/auth-compat","@firebase/performance","@firebase/data-connect", +"@firebase/installations","@firebase/remote-config","@firebase/storage-compat","@firebase/database-compat", +"@firebase/analytics-compat","@firebase/app-check-compat","@firebase/firestore-compat","@firebase/functions-compat", +"@firebase/messaging-compat","@firebase/performance-compat","@firebase/installations-compat", +"@firebase/remote-config-compat","Firebase","realtime","remote-config","@fastify/busboy","@firebase/database-types", +"farmhash-modern","google-auth-library","jwks-rsa","@firebase/api-documenter","@firebase/auth-types","@types/bcrypt", +"@types/firebase-token-generator","@types/request","@types/request-promise","firebase-token-generator", +"http-message-parser","admin","@apphosting/build","@apphosting/common","@electric-sql/pglite", +"@electric-sql/pglite-tools","@google-cloud/cloud-sql-connector","@google-cloud/pubsub","@modelcontextprotocol/sdk", +"async-lock","cjson","deep-equal-in-any-order","exegesis","exegesis-express","gaxios","libsodium-wrappers","lsofi", +"pg-gateway","pglite-2","proxy-agent","sql-formatter","stream-chain","stream-json","superstatic","triple-beam", +"universal-analytics","update-notifier-cjs","zod-to-json-schema","cdn","ssl","hosting","synchronization","alce", +"detect-newline","extend-object","@types/rimraf","matcher-collection","unflatten","nested","@types/acorn", +"rollup-plugin-livereload", +"rollup-plugin-serve","lightweight","byline","util-extend","markdox","deploy","deployment","commands","devops","ssh", +"tasks","sequential","remote","fabric","inference","wrapper","flowbite-datepicker","mini-svg-data-uri", +"@tailwindcss/cli","@tailwindcss/postcss","eslint-plugin-tailwindcss","flowbite-typography", +"prettier-plugin-tailwindcss","windicss","ui components","tailwind components","tailwind elements","tailwind library", +"tailwind sections","tailwind ui","tailwind angular","tailwind django","tailwind ruby on rails","tailwind flask","cjs", +"umd","ffmpeg","fbemitter","react-addons-test-utils","dispatcher","lolex","redirect","location","@types/is-callable", +"cliff","shush","flatiron","nssocket","forever-monitor","getopts","cli-testlab","fault tolerant","sysadmin", +"node-abort-controller","jest-circus","karton","typecheck","@types/babel-code-frame","increment","asynckit", +"combined-stream","es-set-tostringtag","browserify-istanbul","fake", +"far","is-node-modern","js-randomness-predictor","obake","dezalgo","@paralleldrive/cuid2","formdata-polyfill", +"prettier-plugin-pkgjson","@tunnckocore/prettier-config","www","ulpoad","tiny-warning","just-debounce-it","tsdx", +"react hooks","render props","higher order component","hoc","conditional","friendly","errors","check-dts","front matter", +"meta data","universalify","klaw","read-dir-files","extra","mkdir","mkdirs","create","output","release-assist", +"any-promise","thenify-all","mac","ie","@monaco-editor/loader","@sapphire/stopwatch","@sapphire/utilities", +"@snippetors/vuepress-plugin-tabs","@vuepress/plugin-google-analytics","monaco-editor","vuepress-plugin-google-adsense2", +"bitap","socket","sublime","sublime text","globule","grunt-benchmark","yeoman-test","yeoman-assert","insight", +"restangular","ui-router","foundation","traceur","haml","git-config","find-git-root","@merkle-open/eslint-config", +"nitro","modular","pool", +"pooling","inject-markdown","ts2mjs","iterator","iterators","iterable","reduce","@werkzeugkiste/eslint-config", +"@werkzeugkiste/release-config","install-deps-postmerge","semantic-release-conventional-commits","@cfware/lint", +"@cfware/nyc","if-ver","libtap","finder","free","available","connection","tcp","scan","preferred","chosen","std", +"concat","@sec-ant/readable-stream","onetime","precise-now","get","consume","readablestream","resolve-pkg-maps", +"tsconfig","tsconfig.json","eslint-config-bevry","make-deno-edition","deno","deno-edition","deno-entry","denoland", +"es2022","export-default","ifconfig","ipconfig","mac-address","typed","email-addresses","dir-compare", +"eslint-config-tschaub","lodash.clone","manage-path","opt-cli","spawn-command","chai-string","eslint-config-kentcdodds", +"travis-after-all","hook","@primer/octicons","@primer/primitives","@rollup/plugin-html","minipass","path-scurry", +"dirname","wildcard", +"min-document","is-identifier","identifiers","environments","glob-stream","all","fnmatch","globbing","globs","multiple", +"paths","wildcards","gitignore","array-series","array-parallel","magick","graphicsmagick","gfsl", +"eslint-config-standard-with-typescript","msmc","mc","minecraft","launcher","java","java edition","arm","arm-support", +"forge","instances-management","instances","mod","mods","mc-mod","mc-mods","modpack","modpack-api","extendable","nbt", +"jarmods","skin fix","ky","eslint-plugin-no-floating-promise","varlock","google spreadsheets","google sheets", +"spreadsheet","spreadsheets","sheets","gdata","drive","google docs","google drive","googleapis-common","@types/execa", +"@types/mv","@types/ncp","@types/nunjucks","@types/url-template","@types/yargs-parser","js-green-licenses","jsdoc-fresh", +"jsdoc-region-tag","linkinator","pdfmake", +"google apis","client library","@sindresorhus/is","byte-counter","cacheable-lookup","cacheable-request", +"decompress-response","form-data-encoder","lowercase-keys","p-cancelable","responselike","@hapi/bourne","@types/pem", +"chunk-data","create-cert","create-test-server","pem","slow-stream","then-busboy","uri","curl","wget","zstd","zstandard", +"requests","human-friendly","sassdoc","gulp-cli","sass-color-helpers","govuk-prototype-kit","govuk","reading","retries", +"handling","EMFILE","EAGAIN","EINVAL","EPERM","EACCESS","graphql-js","test-all-versions","@graphql-tools/schema", +"section-matter","strip-bom-string","ansi-green","delimiter-regex","assemble","coffee","extracting","front", +"frontmatter","matter","site","@mapbox/node-pre-gyp","@types/bytebuffer","electron-mocha","google-protobuf", +"poisson-process","grunt-legacy-log","grunt-legacy-util","grunt-known-options","difflet","temporary", +"eslint-config-grunt", +"uglify","init","make","gruntplugin","browserify-incremental","liftup","pad-stream","grunt-nodemon","simultaneous", +"perf","faster","bin-version-check","compass","connect-livereload","file-sync-cmp","csslint","maxmin","cssmin","min", +"jpeg","hooker","less-plugin-clean-css","nodeunit-x","uri-path","grunt-coveralls","grunt-istanbul", +"grunt-github-remove-all-releases","gh","release","releases","report","vow","@commitlint/travis-cli","TDD", +"grunt-continue","grunt-env","grunt-istanbul-coverage","grunt-cafe-mocha","newer","stack-parser","grunt-release", +"grunt-templates-dylang","notify","mountain lion","mavericks","linux","notify-send","preprocess","libsass", +"requestretry","sauce-tunnel","grunt-sauce-tunnel","yui","spritesheet-templates","spritesmith","url2", +"eslint-config-twolfson","foundry","foundry-release-git","foundry-release-npm","get-pixels","gmsmith","sprite", +"spritesheet", +"grunt-mocha-cli","usemin","@npm/types","@types/json5","@types/write-file-atomic","inline-fixtures", +"@guarapi/eslint-config-guarapi","@swc/register","glob-watcher","undertaker","pipeline","series","streaming", +"gulp-footer","html2js","templatecache","gulp-symdest","atom","atom-shell","prefixes","postcss-runner","lodash.chunk", +"concurrent-transform","@azure/storage-blob","delayed-stream","streamifier","rewriting","transformation","codegen", +"desugaring","bom","mark","utf-8","add","prepend","gulp-codecov.io","bump-regex","plugin-log","version","versioning", +"gulp-version","gulp-plugin","cache-swap","object.pick","change-file-extension","changed","modified","modification", +"updated","mtime","stat","cached","passthrough","minify-css","jshint-reporter-jscs","parse-import","rework", +"rework-import","rework-plugin-url","inline","slush","dest","conflict","webserver", +"csscomb","rcloader","csslint-stylish","node-version-check","from2-string","@shinnn/eslint-config-node","warnings", +"flatnest","balanced-match","include","streamfilter","to-absolute-glob","divide","separate","relative", +"pretty-remarkable","sections","prettify","jsftp","jsftp-mkdirp","ftp-test-server","gift","wrap-promise","octonode", +"read-remove-file","@shinnn/eslint-config-node-legacy","branch","any-shell-escape","strip-bom-stream","gulpgit", +"stream-to-array","nid","gulp-declare","gulp-define-module","gulp-wrap","nsdeclare","eventstream","istanbul-coveralls", +"htm","htmlmin","gulp-spawn","gulp-svg2ttf","gulp-ttf2eot","gulp-ttf2woff","gulp-ttf2woff2","gulp-svgicons2svgfont", +"metapak","streamtest","@types/gulp","metapak-nfroidure","gulp-match","ternary-stream","stream-exhaust","if","ternary", +"exclude","gulp-gm","imagemin-webp","group-array","strip-color","@commitlint/config-angular","inject","stylesheets", +"webcomponents", +"scripts","index","inline-css","lodash.groupby","istanbul-threshold-checker","isparta","unit test", +"jasmine-terminal-reporter","gulplog","has-gulplog","array-unique","capture-stream","plugins","vinyl-bufferstream", +"stream-combiner2","kew","bufferstreams","ng-annotate","develop","restart","windows notification","mac notification", +"notify-osd","easy-transform-stream","ENV","echo","ifdef","ifndef","eslint-watch","views","precompile","src", +"replacestream","modify-filename","rev-hash","rev-path","sort-keys","vinyl-file","rev","revving","revision","expire", +"assets","each-async","md5-hex","ruby","source-maps","sourcemaps","sftp","@types/fancy-log","@types/lodash.template", +"brotli-size","measure","@gulp-sourcemaps/identity-map","@gulp-sourcemaps/map-sources","debug-fabulous","hook-std", +"mississippi","source maps","strip-debug","accord","looks-same","svg2png","stack", +"vector","rwd","retina","rendering","@types/through","incremental","@types/ansi-colors","gulp-diff", +"@types/plugin-error","incremental compilation","array-each","make-error-cause","tape-catch","source-list-map", +"eslint-plugin-no-use-extend-native","uncss","useref","async-once","mock-gulp-dest","array-differ","array-uniq","beeper", +"lodash._reescape","lodash._reevaluate","lodash._reinterpolate","lodash.templatesettings","yazl","yazul","vinyl-zip", +"anymatch","proxy-middleware","vinyl-assign","pngparse","phantomjssmith","zlib","compressed","catering","deglob", +"find-file-up","find-githost","remark-autolink-references","remark-common-changelog", +"remark-lint-blockquote-indentation","remark-lint-checkbox-character-style","remark-lint-checkbox-content-indent", +"remark-lint-code-block-style","remark-lint-definition-case","remark-lint-emphasis-marker", +"remark-lint-fenced-code-marker","remark-lint-final-newline","remark-lint-hard-break-spaces", +"remark-lint-list-item-bullet-indent","remark-lint-list-item-indent","remark-lint-no-auto-link-without-protocol", +"remark-lint-no-blockquote-without-marker","remark-lint-no-duplicate-definitions", +"remark-lint-no-heading-content-indent","remark-lint-no-inline-padding","remark-lint-no-literal-urls", +"remark-lint-no-unused-definitions","remark-lint-rule-style","remark-lint-strong-marker", +"remark-lint-table-cell-padding","remark-lint-table-pipes", +"remark-lint-unordered-list-marker-style","remark-validate-links","unified-engine","vfile-reporter-shiny", +"git-pull-or-clone","fixer","changelogplease","git-tags","grunt-contrib-qunit","grunt-string-replace","jquery-hammerjs", +"gestures","neo-async","chai-diff","grunt-contrib-requirejs","ammo","shot","topo","heavy","mimos","bounce","catbox", +"podium","somever","subtext","teamwork","statehood","catbox-memory","wreck","vision","elements","flag","getopt", +"@types/core-js","get-own-property-symbols","typeof","sham","function-bind","@types/function-bind", +"@types/mock-property","hasOwnProperty","hasOwn","has-own","own","in","@ungap/structured-clone","hast-util-from-parse5", +"unist-util-position","web-namespaces","zwitch","@types/ungap__structured-clone","remark-api","hast-util","hast","unist", +"raw","aria-attributes","html-tag-names","safe","bcp-47-match","devlop","direction","selectall", +"estree-util-attach-comments", +"estree-util-is-identifier-name","mdast-util-mdx-expression","mdast-util-mdx-jsx","mdast-util-mdxjs-esm", +"esast-util-from-js","ccount","tostring","sval","solid","unist-util-find-after","estree-util-build-jsx","svg-tag-names", +"hyperscript","vdom","virtual","regexgen","sort-object","content-security-policy","cross-origin-embedder-policy", +"cross-origin-opener-policy","cross-origin-resource-policy","origin-agent-cluster","referrer-policy", +"strict-transport-security","x-content-type-options","x-dns-prefetch-control","x-download-options","x-frame-options", +"x-permitted-cross-domain-policies","x-powered-by","x-xss-protection","@vue/compiler-dom","abbrev","fast-archy", +"fast-text-table","hexo-cli","hexo-front-matter","hexo-fs","hexo-i18n","hexo-log","hexo-util","js-yaml-js-types","moize", +"titlecase","warehouse","@types/abbrev","0x","eslint-config-hexo","hexo-renderer-marked","util-deprecate", +"grunt-gh-pages","scrawl","transducers-js","tiny-worker","wcag-contrast","css-color-names","deep-freeze-es6", +"dependency-resolver","step","hap-nodejs","@types/source-map-support","eslint-plugin-import-newlines", +"@hono/eslint-config","bun-types", +"editorconfig-checker","oxc-parser","vite-plugin-fastly-js-compute","wrangler","application","cloudflare","workers", +"fastly","compute","workshopper-adventure","workshop","adventure","tutorial","tutor","@size-limit/preset-big-lib", +"@types/jscodeshift","pojo","attribute","element","@exodus/bytes","@types/he","flowgen","html entities", +"html entities encode","html entities decode","entities encode","entities decode","ascjs","unescape","posthtml-webp", +"unescape-unicode","relateurl","compressor","packer","uglifier","alpinejs","commitlint-config-non-conventional", +"rollup-plugin-polyfill-node","tags","void","self-closing","@types/jasmine","@bubkoo/tsconfig","@bubkoo/eslint-config", +"@bubkoo/rollup-config","@bubkoo/commitlint-config","@bubkoo/semantic-release-config","screenshot","capture", +"@selderee/plugin-htmlparser2","selderee","mail","plain","@html-validate/stylish","@sidvind/better-ajv-errors", +"@types/html-minifier-terser","pug-loader","webpack-recompilation-simulator","@types/relateurl","bunchee", +"eslint-plugin-unused-imports","srcset","posthtml-plugin","postproccessor", +"rss","toidentifier","requires-port","sse","agent-base","agent","@types/is-glob","mockttp","next.js","union","corser", +"secure-compare","eol","eslint-config-populist","https-server","@types/should","@types/eslint__js","status", +"@types/markdown-table","HttpStatus","httpclient","mediation","@types/async-retry","post","put","duplex", +"eslint-config-sanity","hyphenate","singular","plural","camelize","dasherize","demodulize","ordinalize","uncountable", +"singularize","titleize","tableize","classify","foreign_key","@messageformat/core","fast-printf","make-plural", +"math-interval-parser","l10n","@arktype/attest","gh-release","i18next-browser-languagedetector","i18next-fs-backend", +"i18next-http-backend","i18next-localstorage-cache","i18next-sprintf-postprocessor","internationalization","translation", +"localization","globalization","gettext","gridly","safer-buffer","errto","iconv","unorm","bench-node","charset", +"icu","harmony-reflect","proxies","identity","eslint-config-ostai","pre-suf","spawn-sync",".gitignore","manager", +"asterisks","regular-expression","dimensions","resolution","heif","tga","tiff","ow","p-pipe","image-dimensions","is-png", +"pngquant-bin","imageminplugin","pngquant","utf7","reader","cpx2","deep-freeze","import-size","seamless-immutable", +"type-plus","mutable","copy-on-write","@types/invariant","immutability","lazy","stateless","bypass","prefer","metacom", +"metaconfiguration","metalog","metaschema","metautil","metavm","metawatch","eslint-config-metarhia","isolation", +"enterprise","scalable","soa","stateful","routing","cluster","interactive","align","every","inferno-shared", +"inferno-utils","user interfaces","renderToString","inflections","inflection-js","humanize","capitalize", +"inheritance","klass","oop","object-oriented","@alcalzone/ansi-tokenize","auto-bind","patch-console","terminal-size", +"yoga-layout","@types/react-reconciler","@types/scheduler","@types/signal-exit","@vdemedes/prettier-config", +"eslint-config-xo-react","react-devtools-core","print","inline-style","inno","innosetup","run-async","fwk","instagram", +"ig","driver","reify","exports","packaging","remark-code-import","coffee.md","litcoffee","yml", +"babel-plugin-transform-es3-member-expression-literals","babel-plugin-transform-es3-property-literals", +"babel-preset-es2015-rollup","cldr-cal-buddhist-full","cldr-cal-chinese-full","cldr-cal-coptic-full", +"cldr-cal-dangi-full","cldr-cal-ethiopic-full","cldr-cal-hebrew-full","cldr-cal-indian-full","cldr-cal-islamic-full", +"cldr-cal-japanese-full","cldr-cal-persian-full","cldr-cal-roc-full","cldr-core","cldr-dates-full","cldr-numbers-full", +"estraverse-fb","grunt-curl","grunt-zip","rollup-plugin-memory","ecma402","@vue/tsconfig","flag-icons", +"google-closure-library","grunt-replace","prettier-eslint","international","country","dial code","telephone","phone", +"@inversifyjs/common", +"@inversifyjs/container","@inversifyjs/core","dependency inversion","inversion of control container","ioc","leek", +"ssh-config","elementtree","@ionic/discover","@ionic/utils-fs","superagent-proxy","@ionic/utils-array", +"@ionic/utils-stream","@ionic/cli-framework","@ionic/utils-network","@ionic/utils-process","@ionic/utils-terminal", +"@ionic/utils-subprocess","@ionic/cli-framework-prompts","@types/diff","@types/open","@types/split2","@types/os-name", +"@types/elementtree","ionic framework","ionicframework","hybrid","@types/svgo","jest-stencil-runner","icon pack", +"custom element","@ioredis/commands","cluster-key-slot","denque","lodash.isarguments","redis-errors","redis-parser", +"standard-as-callback","@ioredis/interface-generator","@types/lodash.defaults","@types/lodash.isarguments", +"@types/redis-errors","sentinel","pipelining","irc-colors","node-icu-charset-detector","ansi-color","is-extglob", +"braces","extglob","globstar","global-directory","globally","installed","locally","vanilla","pure","is-object","kind", +"custom element name","writable","is-inside-container","esmock","wsl", +"subsystem","kindof","lintspaces-cli","code coverage","JS code coverage","JS coverage","js-calendar","v-click-outside-x", +"autoprefixer-loader","babel-plugin-transform-es5-property-mutators","compression-webpack-plugin","vue-html-loader", +"character-parser","constantinople","jstransformer","transformers","with","browserify-middleware","code-mirror", +"github-basic","handle","highlight-codemirror","inconsolata","jade-code-mirror","jade-highlighter","jstransformer-cdata", +"jstransformer-coffee-script","jstransformer-less","jstransformer-marked","jstransformer-stylus", +"jstransformer-verbatim","less-file","lsr","pull-request","stop","filelist","rake","video-worker", +"babel-plugin-annotate-pure-calls","browserslist-config-nk","eslint-config-nk","json-file","prettier-config-nk", +"parallax","youtube","vimeo","@jasminejs/reporters","eslint-plugin-jasmine","css-url-embed","walkdir", +"jasmine-reporters","jasmine-growl-reporter","cssfontparser","moo-color","babel-plugin-version","@jest/diff-sequences", +"@jest/environment","@jest/environment-jsdom-abstract","@jest/fake-timers","jest-serializer-ansi-escapes","matchers", +"extended","@types/escape-html","@types/jump.js", +"@types/randomcolor","eslint-webpack-plugin","jump.js","randomcolor","web-vitals","libxmljs2","plugnplay","pnp", +"babel-plugin-add-import-extension","@types/merge-stream","jest-leak-detector","worker-farm","@jimp/core","@jimp/diff", +"@jimp/js-bmp","@jimp/js-gif","@jimp/js-jpeg","@jimp/js-png","@jimp/js-tiff","@jimp/plugin-blit","@jimp/plugin-blur", +"@jimp/plugin-circle","@jimp/plugin-color","@jimp/plugin-contain","@jimp/plugin-cover","@jimp/plugin-crop", +"@jimp/plugin-displace","@jimp/plugin-dither","@jimp/plugin-fisheye","@jimp/plugin-flip","@jimp/plugin-hash", +"@jimp/plugin-mask","@jimp/plugin-print","@jimp/plugin-quantize","@jimp/plugin-resize","@jimp/plugin-rotate", +"@jimp/plugin-threshold","@jimp/types","@jimp/utils","@jimp/config-eslint","@jimp/config-typescript", +"@jimp/config-vitest","@jimp/test-utils","node-self","vite-plugin-node-polyfills","image processing", +"image manipulation","resize","@babel/helper-simple-access","@rspack/cli","@rspack/core", +"@types/babel__helper-plugin-utils","@types/babel__template","@types/babel__traverse","babel-plugin-parameter-decorator", +"destr","nano-jsx","preact-render-to-string","solid-js","wysiwyg editor","wysiwyg html editor","rich editor", +"rich text editor","contenteditable", +"vanillajs","wysisyg","rte","firmata","temporal","nanotimer","browser-serialport","grunt-jsbeautifier","0A02","0A21", +"16x2 LCD","20x4 LCD","2D120X","2Y0A02","2Y0A21","74HC595","ADXL335","ADXL345","ALS-PT19","ALSPT19","ANALOG","arduino", +"Ardumoto","AT42QT1070","BLINKM","BMP180","Continuous Rotation","DEFAULT","Diffused LED","DS18B20", +"Edison Arduino Block","Edison GPIO Block","Edison I2C Block","Edison PWM Block","edison","ESPLORA","EV3","galileo-io", +"galileo","GP2D120XJ00F","GP2Y0A02YK0F","GP2Y0A21YK","GP2Y0A41SK0F","GY-521","GY521","HD44780","High Torque", +"Hitec HS-35HD","Hitec HS-422","Hitec HS-425BB","Hitec HS-625MG","Hitec HS-646WP","Hitec HS-755HB","Hitec HS-805BB", +"Hitec HS-85MG","HMC5883L","HMC6352","Hobby Motor","HRLV-MaxSonar-EZ0","HT16K33","HTU21D","i2c", +"Infrared Proximity Sensor","Infrared Sensor", +"intel edison","intel galileo","ISL29125","JHD1313M1","Joystick","LCD1602","LCD2004","LCM1602","LED","LIDAR-Lite v2", +"Ludus Protoshield Wireless","Ludus Protoshield","LV-MaxSonar-EZ0","LV-MaxSonar-EZ3","MCP23008","MCP23017","MCP9808", +"Metal Gear","MJKDZ","MMA7361","MMA7660","MMA8462Q","MPL115A2","MPL3115A2","MPR121","MPR121QR2","MPU-6050","MPU6050", +"MUXSHIELD2","NXT","OA41SK","PARALLEL","PCA9685","pcduino","PCF8574","PCF8574A","PCF8574AT","PCF8574T","PCF8575", +"PCF8591","photon","PIR Motion Sensor","QTOUCH","raspberry pi","raspberrypi","raspi-io","RedBoard","RGB LED","robot", +"robotics","rpi","serial","Servo","Shift Register 8-Bit SN74HC595","Shift Register","SI7020","spark core","spark-io", +"spark","SparkFun Essential Sensor Kit","SparkFun Sensor Kit","Speed controller","Temperature","tessel 2", +"Thumb Joystick","TINKERKIT","TMP36","TSL2561","Ultrasonic Range Finder","usb","VKEY","Weather Shield Arduino", +"Weather Shield Photon","@hapi/address","@hapi/formula","@hapi/pinpoint","@hapi/tlds","recoil","grunt-html", +"commitplease","grunt-bowercopy","grunt-git-authors","grunt-compare-size","jquery-test-runner","eslint-config-jquery", +"config-chain","beautifier","code-quality","grunt-exec","gzip-js","amd","rollup-plugin-node-polyfills","pyyaml", +"knifecycle","package-directory","yerror","architecture","gitignore-to-glob","@jscpd/badge-reporter","@jscpd/core", +"@jscpd/finder","@jscpd/tokenizer","@jscpd/html-reporter","jscpd-sarif-reporter","cst","jscs-jsdoc", +"jscs-preset-wikimedia","reserved-words","to-double-quotes","to-single-quotes","vow-fs","unicode-7.0.0","unit-coverage", +"@jsdoc/salty","catharsis","js2xmlparser","requizzle","current-module-paths","object-to-spawn-args","config-master", +"@acemir/cssom","@asamuzakjp/dom-selector","@bramus/specificity","data-urls","decimal.js","saxes","symbol-tree", +"w3c-xmlserializer", +"webidl-conversions","whatwg-url","mocha-sugar-free","webidl2","webidl2js","browser-request","cssom","nwmatcher", +"selenium-standalone","unicode-13.0.0","results-interpreter","unicode-5.2.0","unicode-11.0.0","stylish","deeks", +"doc-path","to","json2csv","csv2json","csv-2-json","milliparsec","sort-on","prototyping","dummy","@types/object-keys", +"deterministic","stable","circular","unicode-10.0.0","@stryker-mutator/mocha-runner","json-metaschema","jsonparse", +"trees","jws","lodash.once","lodash.includes","lodash.isnumber","lodash.isboolean","lodash.isinteger","@jspm/generator", +"@jspm/plugin-rollup","amaro","states","lie","jszip-utils","package-json-versionify","inflate","qjobs","dom-serialize", +"timer-shim","karma-junit-reporter","karma-script-launcher","spectacular","execution","hat","os-shim","karma-plugin", +"karma-preprocessor","browserify-tool","browserstack-local","karma-launcher","browser-stack","chrome","ibrik", +"karma-coffee-preprocessor","karma-requirejs","karma-reporter","Safari","Safari Tech Preview","SafariTechPreview","IE", +"Chrome","Chrome Canary","Chrome Headless","Chromium","Firefox","Opera","edge-launcher","chai-fs","os-homedir","firefox", +"karma-adapter","karma-rollup","safari","global-agent","@types/global-agent","sauce","labs","karma-brief-reporter", +"rollup-sourcemap-path-transform","keyboard","keyboardevent","keydown","keyup","metakey","keyname","@keyv/serialize", +"lru.min","timekeeper","@keyv/compress-gzip","@keyv/sqlite","@keyv/test-suite","@keyv/mongo","@keyv/compress-brotli", +"@keyv/compress-lz4","@keyv/memcache","key-value","adapter","memory","lru","tarn","escalade","pg-connection-string", +"tedious","oracledb","better-sqlite3","pg-query-stream","chai-subset-in-order","@tsconfig/recommended", +"toxiproxy-node-client","sql","postgres","cockroachdb","querybuilder","formatly","oxc-resolver","smol-toml", +"codeclimate-types", +"analysis","analyze","dead code","duplicate","entropy","maintenance","members","missing","monorepo","namespace", +"unreferenced","unresolved","workspace","lodash.sortby","explorer","opera","samsung-internet","uc-browser", +"stream-counter","delegates","http-assert","gen-esm-wrapper","@types/co-body","co-body","@koa/router", +"@types/koa__router","urlencoded","body","copy-to","bodyParser","compose","humanize-number","passthrough-counter", +"koa-compress","koa-route","mount","mounting","@ladjs/env","route","koa-send","sendfile","reds","node-redis-warlock", +"bossy","eslint-config-hapi","eslint-plugin-hapi","find-rc","will-call","cpr","lab-event-reporter","semver-regex", +"latest","package.json","current","autodoc","deft","jasmine-async","race.js","string-table","happen","leafdoc", +"bundlemon","git-rev-sync","karma-expect", +"prosthetic-hand","eslint-config-mourner","rollup-plugin-git-version","@mapbox/eslint-plugin-script-tags","gis","left", +"padding","repeat","numbers","aproba","cmd-shim","p-reduce","byte-size","write-pkg","wide-align","has-unicode", +"p-waterfall","libnpmaccess","p-map-series","set-blocking","@lerna/create","libnpmpublish","read-cmd-shim", +"load-json-file","init-package-json","make-fetch-happen","conventional-changelog-core","validate-npm-package-license", +"conventional-recommended-bump","conventional-changelog-angular","@octokit/plugin-enterprise-rest","multi-package", +"copy-anything","benny","bootstrap-less-port","html-template-tag","jit-grunt","less-plugin-autoprefix", +"mocha-teamcity-reporter","phin","read-glob","compile less","css nesting","css variable","gradients css", +"gradients css3","less compiler","less css","less mixins","less.js","lesscss","nested css","bootstrap css", +"bootstrap less","variables in css","css less","less-plugin-glob","browser-level","classic-level","abstract-level", +"airtap-playwright","@voxpelli/tsconfig","leveldb","napi-macros", +"abstract-leveldown","du","async-each","mkfiletree","readfiletree","prebuildify-ci","prebuildify-cross", +"level-concat-iterator","level-errors","level-supports","queue-microtask","deferred-leveldown","level-iterator-stream", +"memdown","trickle","airtap-sauce","run-parallel","encoding-down","simple-concat","fast-levenshtein","ld","levdist", +"levenshtein","levenshtein-component","levenshtein-edit-distance","talisman","distance","algorithm","comparison","edit", +"matching","binary-extensions","promise-retry","just-safe-set","fund","gitfund","crlf","gmail-send","jest-codemods", +"libphonenumber-metadata-generator","renamer","libphonenumber","fined","flagged-respawn","autolink","hashtag","link", +"mention","consolemock","staged","@samverschueren/stream-to-observable","is-observable","listr-silent-renderer", +"listr-update-renderer","listr-verbose-renderer","@lit-labs/ssr-dom-shim","@lit/reactive-element", +"@lit-internal/scripts","@lit-labs/testing","@webcomponents/template","connect-logger","http-auth","faye-websocket", +"livereload-js", +"resolve-pkg","matchdep","lws-basic-auth","lws-blacklist","lws-body-parser","lws-compress","lws-conditional-get", +"lws-cors","lws-json","lws-log","lws-mime","lws-range","lws-request-monitor","lws-rewrite","lws-spa","lws-static", +"full-stack","babel-preset-es2015-loose","browserify-derequire","grunt-es3-safe-recast","grunt-rollup","grunt-ts", +"rollupify","indexeddb","localstorage","websql","openurl","lockfile-lint-api","prettier-standard","lockfile check", +"lockfile lint","lock","stdlib","lodash-modularized","clonedeep","defaults","isempty","isequal","isfunction", +"isplainobject","isstring","omit","pick","uniq","uni-global","sprintf-kit","event-emitter","ncjsm","tape-index", +"terminal.js","update","refresh","overwrite","bar","date-format","streamroller","@log4js-node/sandboxed-module", +"grunt-contrib-jasmine","grunt-open","grunt-preprocess","math","int64","uid2","isemail", +"canonical-json","loopback-phase","strong-remoting","loopback-filters","strong-globalize","loopback-connector-remote", +"nodemailer-stub-transport","loopback-datasource-juggler","nodemailer-direct-transport","is-docker","loopback-boot", +"karma-es6-shim","loopback-context","strong-task-emitter","strong-error-handler","eslint-config-loopback","sqlserver", +"StrongLoop","mBaaS","steno","express-async-handler","@commitlint/prompt-cli","@typicode/eslint-config","embed", +"embedded","localStorage","sessionStorage","mru","@lucide/build-icons","@lucide/shared","@lucide/rollup-plugins", +"Lucide","HTML","Feather","Icons","Icon","SVG","Feather Icons","Fontawesome","Font Awesome","decree","manipulate","blur", +"sharpen","flip","mirror","hue","saturation","lightness","transparency","fade","opacity","contain","cover", +"@75lb/deep-merge","ansi-escape-sequences","create-mixin","load-module","sleep-anywhere","expand-home-dir", +"hast-util-to-mdast","mdast-util-to-markdown","short-unique-id","y18n", +"@types/columnify","@types/json-diff","@types/make-fetch-happen","@types/which","wizard","task graph", +"string manipulation","@favware/rollup-type-bundler","lavalink client","audio streaming","music bot","voice chat", +"discord integration","high performance","easy-to-use","feature-rich","seamless integration","community support", +"open-source","lavalink","path-type","intermediate","recursively","dingbat-to-unicode","lop", +"browserify-prepend-licenses","duck","hamjest","office","word","@nestjs/common","@nestjs/config","@nestjs/core", +"@nestjs/platform-express","@nestjs/swagger","@nestjs/throttler","@nestjs/typeorm","@yarnpkg/lockfile","uniqid", +"@codecov/bundle-analyzer","@nestjs/cli","@nestjs/testing","@testcontainers/mysql","@types/dasherize","crud", +"admin-panel","headless-cms","backend-framework","micro-backend","rapid-development","yaml-config","file-upload", +"api-generator","low-code","no-code","prototype","mvp","startup","baas","@next/eslint-plugin-next","@tabler/icons-react", +"eslint-config-next","postcss-preset-mantine","postcss-simple-vars", +"mantine","context","context-menu","context menu","react server components","user experience","usability","mapbox-gl", +"mapbox","legend","text processing","linkify-it","mdurl","punycode.js","uc.micro","markdown-it-for-inline", +"markdown-it-ins","markdown-it-mark","markdown-it-sub","ndoc","markdown-it-plugin","anchor","emoji","emojies","emoticon", +"emoticons","stream-from-to","pdf-text","rows","bunup","theredoc","markdown parser","solidjs","diacritics-map", +"lazy-cache","list-item","markdown-link","mixin-deep","repeat-string","document","glossary","heading","links", +"remarkableplugin","table of contents","table-of-contents","toc","micromark-core-commonmark", +"micromark-extension-directive","micromark-extension-gfm-autolink-literal","micromark-extension-gfm-footnote", +"micromark-extension-gfm-table","micromark-extension-math","micromark-util-types","gemoji", +"markdownlint-rule-extended-ascii","CommonMark","jsonpointer","run-con","@markedjs/eslint-config","@markedjs/testutils", +"esbuild-plugin-umd-wrapper","marked-highlight","marked-man", +"recheck","markup","v8-argv","inline-style-prefixer","react-event-listener","simple-assign","complex.js","escape-latex", +"javascript-natural-sort","typed-function","eigen","expr-eval","jsep","ndarray","ndarray-determinant","ndarray-gemm", +"ndarray-ops","ndarray-pack","numericjs","sylvester","zeros","mathematics","numeric","algebra","complex","fraction", +"charenc","md5sum","checksum","decode-named-character-reference","micromark-util-decode-numeric-character-reference", +"micromark-util-decode-string","micromark-util-normalize-identifier","micromark-util-symbol", +"unist-util-stringify-position","commonmark.json","micromark-build","mdast-util","mdast","tree", +"micromark-util-sanitize-uri","trim-lines","mdast-util-gfm","micromark-extension-gfm","mdn","mozilla","hashring", +"jackpot","InnoDB memcached API","failover","hashing","membase","memcache","nMemcached","@jsonjoy.com/fs-core", +"@jsonjoy.com/fs-fsa","@jsonjoy.com/fs-node","@jsonjoy.com/fs-node-builtins","@jsonjoy.com/fs-node-to-fsa", +"@jsonjoy.com/fs-node-utils","@jsonjoy.com/fs-print","@jsonjoy.com/fs-snapshot","@jsonjoy.com/json-pack", +"@jsonjoy.com/util", +"glob-to-regex.js","thingies","tree-dump","isomorphic-git","tslint-config-common","fs.js","in-memory","fsa", +"file system access","native file system","webfs","crudfs","opfs","casfs","content addressable storage", +"@types/lodash.isequal","fast-memoize","mem","nanocolors","memoization","gulp-exit","ram","errno","camelcase-keys", +"decamelize-keys","delete_comments","minimist-options","trim-newlines","cat","kitten","from2","lodash.clonedeepwith", +"stat-mode","ware","@metalsmith/drafts","assert-dir-equal","7zip-bin","node-7z","node-downloader-helper", +"@babel/plugin-syntax-import-meta","@surma/rollup-plugin-off-main-thread","asyncro", +"babel-plugin-transform-async-to-promises","babel-plugin-transform-replace-expressions","tiny-glob", +"@babel/plugin-proposal-throw-expressions","directory-tree","eslint-config-developit","npm-merge-driver-install", +"micro library","micromark-factory-space","micromark-util-chunked","micromark-util-combine-extensions", +"micromark-util-resolve-all","micromark-util-subtokenize","fill-range","bracket","character-class","expansion", +"extglobs","lookahead","lookaround","lookbehind","negate", +"negation","posix","star","@types/mime-db","mime-score","release-please","runmd","mime-db","mimetypes","Min Heap", +"min heap","maxheap","min-heap","heap","Binary Heap","binary-heap","heap data structure","min heap data structure", +"complete binary tree","heapify","heap sort","heapify up","heapify down","Priority Queue","priority queue", +"priorityqueue","priority-queue","priority q","priorityQ","efficient","priority","complete binary","extract min", +"min priority queue","efficient priority","ordering property","dynamic resizing","priority-based", +"priority-based processing","element priority","queue priority","sorted","decrease key","increase key","searching", +"@putout/minify","css-b64-images","html-minifier-next","montag","readjson","try-catch","try-to-catch","escover", +"eslint-plugin-putout","madrun","supertape","brace-expansion","signed","certificate","cert","@types/brace-expansion", +"make dir","dir","ufo", +"conditional-type-checks","mobservable","reactive","frp","functional-reactive-programming","state management", +"data flow","mobx-react-lite","expose-gc","browser-stdout","yargs-unparser","uslug","pidtree","rewiremock","unexpected", +"@mocha/docdash","jsdoc-ts-utils","unexpected-map","unexpected-set","unexpected-sinon","remark-inline-links", +"unexpected-eventemitter","fail-on-errors-webpack-plugin","@11ty/eleventy-plugin-inclusive-language","headless-chrome", +"chai-xml","test-console","xmllint","junit","lcov","define-data-property","gopd","has-property-descriptors", +"@types/es-value-fixtures","@types/for-each","@types/functions-have-names","@types/get-intrinsic","@types/gopd", +"@types/has-property-descriptors","@types/object-inspect","descriptor","define","swap","unix-dgram","unittest", +"gulp-coveralls","gulp-mocha-phantomjs","mockJSON","mockAjax","ipaddr.js","recursive-watch","fastest-validator","avsc", +"nats","etcd3","cbor-x","thrift","redlock","dd-trace","gc-stats","msgpack5","fakerator","kafka-node","v8-natives", +"@types/pino","notepack.io","benchmarkify","rhea-promise","@types/bunyan","jaeger-client","@types/ioredis", +"moleculer-repl","winston-context","event-loop-stats","node-nats-streaming","@icebob/node-memwatch","microservice", +"messagebus","services","micro","distributed","ender","timezone","olson","iana","zone","tz", +"monaco-languageserver-types","monaco-marker-data-provider","monaco-types","monaco-worker-manager", +"vscode-languageserver-textdocument","vscode-languageserver-types","vscode-uri","@remcohaszing/eslint", +"remark-preset-remcohaszing","yaml-language-server","monaco","monads","either","maybe","result", +"@codemirror/lang-javascript","@codemirror/theme-one-dark","@json2csv/plainjs","@lezer/highlight","basic-auth-connect", +"bootstrap-paginator-2","free-swig","gridfs-stream","mongodb-query-parser","renderjson-2","@cypress/code-coverage", +"assets-webpack-plugin","express-openid-connect","mongodb-memory-server","administration","GUI","manage","manage-mongo", +"phpmyadmin","UI","web-based","@mongodb-js/saslprep","mongodb-connection-string-url","aws4","socks","snappy", +"mocha-sinon","gcp-metadata","@types/kerberos","@types/saslprep","v8-heapsnapshot","@mongodb-js/zstd", +"@types/whatwg-url","@types/chai-subset","mongodb-client-encryption","@aws-sdk/credential-providers","kareem","mpath", +"mquery","sift","@ark/attest","@mongodb-js/mongodb-downloader","acquit","acquit-ignore","acquit-require", +"lodash.isequalwith","mongodb-runner","odm","datastore","backbone-callbacks","node-monitor","remote control","probe", +"JMX","core-monitor","dashboard","monitoring","control panel","@types/mongodb","monk-middleware-cast-ids", +"monk-middleware-fields","monk-middleware-handle-callback","monk-middleware-options","monk-middleware-query", +"monk-middleware-wait-for-connection","gitbook-cli","gitbook-plugin-anker-enable","gitbook-plugin-custom-favicon", +"gitbook-plugin-edit-link","gitbook-plugin-github","gitbook-plugin-prism","monk-middleware-debug","commist","help-me", +"mqtt-packet","worker-timers","number-allocator","aedes-cli","leaked-handles","mqtt-connection","@esm-bundle/chai", +"mqtt-level-store","esbuild-plugin-polyfill-node","publish/subscribe","@tediousjs/connection-string","msnodesql","tds", +"node-tds","node-sqlserver","msnodesqlv8", +"node-mssql","@types/statuses","headers-polyfill","rettime","until-async","@epic-web/test-server","@fastify/websocket", +"@types/json-bigint","@types/serviceworker","json-bigint","page-with","append-field","fs-temp","testdata-w3c-json-form", +"formdata","array-union","pend","release-it-pnpm","test report","html report","json to html","karma-story-reporter", +"mezr","web-animations-js","bin-packing","sqlstring","timezone-mock","urun","utest","sql-escaper","aws-ssl-profiles", +"generate-function","named-placeholders","poku","assert-diff","eslint-plugin-async-await","thenify","then","bats", +"switcher","couchdb","fastest-stable-stringify","rtl-css-js","iconista","libreact","pico","lite","in-js","styled", +"decorator","jsxstyle","rule","gitcloud","hasbin","page-icon","@types/hasbin","@types/page-icon","desktop","proxy-lib", +"font-finder","pbxproj-dom","@foxt/js-srp","simple-plist","ios-device-lib", +"email-validator","ios-sim-portable","plist-merge-patch","@nativescript/hook","@nativescript/doctor", +"nativescript-dev-xcode","ios-mobileprovision-finder","@nstudio/trapezedev-project","@rigor789/resolve-package-path", +"@types/plist","@types/retry","@types/byline","@types/pacote","@types/tabtab","@types/tunnel","@types/xml2js", +"@types/archiver","@types/qr-image","@types/marked-terminal","@types/proper-lockfile","@types/npmcli__arborist", +"@types/universal-analytics","afinn-165","afinn-165-financialmarketnews","apparatus","memjs","stopwords-iso", +"wordnet-db","browserfs","gulp-jasmine-browser","pegjs","uubench","natural language processing","artifical intelligence", +"Porter stemmer","Lancaster stemmer","bigram","trigram","quadgram","ngram","stemmer","bayes","classifier","phonetic", +"metaphone","inflector","Wordnet","tf-idf","logistic regression","doublemetaphone","double","jaro-winkler distance", +"levenshtein distance","string distance","part-of-speech tagger","Eric Brill","Brill tagger","sentiment analysis", +"maximum entropy modelling","secure-keys","nconf-yaml","key value store","plugabble","near social", +"bridge","near","binary-search-tree","exec-time","@fig/complete-commander","@golevelup/nestjs-discovery","nest", +"@postman/tough-cookie","chardet","liquid-json","postman-collection","postman-collection-transformer","postman-request", +"postman-runtime","serialised-error","@postman/shipit","dockerfile_lint","parse-gitignore","postman","rest-client", +"@apm-js-collab/tracing-hooks","@newrelic/security-agent","@tyriar/fibonacci-heap","import-in-the-middle", +"module-details-from-path","require-in-the-middle","@aws-sdk/s3-request-presigner","@matteo.collina/tspl", +"@newrelic/eslint-config","@newrelic/newrelic-oss-cli","@newrelic/test-utilities","@slack/bolt", +"@smithy/eventstream-codec","@smithy/util-utf8","git-raw-commits","self-cert","debugging","profiling","@panva/hkdf", +"openid-client","@edge-runtime/jest-environment","@types/nodemailer","@types/oauth","babel-plugin-jsx-pragmatic", +"babel-preset-preact","oauth2","nextauth","async handler","async functions","pipe","provider","TestBed","how-to", +"@ant-design/icons-angular","localhost","tunneling","webhook","deep-defaults","enqueue","function-source","minstache", +"sliced","mocha-generators","@nightwatch/chai", +"@nightwatch/html-reporter-template","@nightwatch/nightwatch-inspector","@types/selenium-webdriver","chai-nightwatch", +"devtools-protocol","didyoumean","nightwatch-axe-verbose","stacktrace-parser","mochawesome-merge", +"mochawesome-report-generator","nightwatchjs","selenium","webdriver","automated-testing","@sinonjs/text-encoding", +"@sinonjs/referee","jsdom-global","mochify","proxyquire-universal","proxyquireify","propagate","clang-format","n-api", +"napi","coffee-coverage","grunt-contrib-coffee","grunt-include-replace","internal","check-version-modules", +"used-deps-analyzer","container","skeleton","formate","dynamic-dedupe","filewatcher","tap-xunit","reload","subdir", +"char-regex","emojilib","skin-tone","sentences-per-line","emojis","smiley","smileys","smilies","ideogram","ideograms", +"fetch-blob","chai-iterator","stream-consumers","eslint-config-digitalbazaar","karma-tap-reporter","nodejs-websocket", +"worker-loader","aes","asn","asn.1","cbc","csr","des","gcm","hmac","pkcs", +"pki","prng","rc2","rsa","sha256","sha384","sha512","tls","x.509","x509","c2dm","fcm","messaging","geocoder","geocoding", +"geo","maps","mapquest","agol","arcgis","tomtom","exponential-backoff","require-inject","high5","html-parser", +"html5parser","htmljs-parser","htmlparser-benchmark","mocha-each","neutron-html5parser","biased-opener", +"strong-data-uri","v8-debug","v8-profiler","http mock","growly","shellwords","nexe","notification center", +"mac os x 10.8","terminal-notifier","windows 8 notification","toaster","ps-list","pty","pseudoterminal","forkpty", +"openpty","@node-red/editor-api","@node-red/runtime","@node-red/util","@node-red/nodes","node-red-admin","iot", +"sass-graph","async-foreach","stdout-stream","true-case-path","unique-temp-dir","long-timeout","sorted-array-functions", +"recurrent","rfc4122","fs.watch", +"watchfile","ngn","daemon","event logging","elevate","sudo","@mgcrea/eslint-config-node","@tsconfig/node-lts","excel", +"xls","jQuery","jQuery extend","inherit","combyne","clean-for-publish","libgit2","git2","@aws-sdk/client-sesv2", +"libbase64","libmime","libqp","nodemailer-ntlm-auth","proxy-test-server","Nodemailer","pstree.remy","undefsafe", +"autoload","multimeter","node-webkit","webkit","async-redis","express-ipfilter","express-ws","json-logic-js","json-sql", +"jsonpath-plus","line-reader","mocker-data-generator","node-ipc","promise-mysql","stjs","uuid-random","nolang", +"Programming","programming language","descriptive","5GL","json schema","Mehdi Salartayefeh","option parser","absolute", +"backslash","delimiter","file-path","forward","fp","slashes","trailing","unix","urix","normalization","normalisation", +"simplify","trim", +"canonical","mouse wheel","exit-hook","github-url-from-git","is-interactive","is-scoped","issue-regex","listr-input", +"new-github-release-url","npm-name","p-memoize","map-obj","write-package","archy","is-cidr","libnpmorg","libnpmpack", +"libnpmteam","fs-minipass","npm-profile","libnpmsearch","@sigstore/tuf","libnpmversion","@npmcli/config", +"npm-audit-report","minipass-pipeline","npm-user-validate","tiny-relative-date","fastest-levenshtein", +"json-parse-even-better-errors","@npmcli/git","@npmcli/docs","@tufjs/repo-mock","@npmcli/mock-globals", +"ajv-formats-draft2019","package manager","giturl","throat","semver-diff","preferred-pm","callsite-record", +"rc-config-loader","outdated","updates","updating","updater","@trivago/prettier-plugin-sort-imports", +"@types/chai-string","@types/cli-table","@types/ini","@types/jsonlines","@types/npm-registry-fetch", +"@types/parse-github-url","@types/semver-utils","@types/update-notifier","eslint-config-raine","fp-and-or","jsonlines", +"prompts-ncu","semver-utils","typescript-json-schema","verdaccio","vite-bundle-analyzer","vite-node", +"upgrade","versions","esbuild-node-externals","eslint-config-tc","eslint-config-typescript-tc", +"npm-package-json-lint-config-tc","auditor","mutate-fs","minipass-fetch","minizlib","registry","string.prototype.padend", +"eslint-config-mysticatea","commandline","npm-scripts","run","read-package-json-fast","script","string convert", +"yarn to npm","npm upgrade","babel-preset-latest","npm-cli","are-we-there-yet","mocha-jsdom","cvss", +"nodesecurity-npm-utils","gluegun","nuke","money","percentage","a-sync-waterfall","asap","mocha-phantomjs-core", +"mocha-phantomjs-istanbul","module-alias","node-libs-browser","css4","node-machine-id","resolve.exports", +"@yarnpkg/parsers","lines-and-columns","@napi-rs/wasm-runtime","Mobile","caching-transform","istanbul-lib-hook", +"istanbul-lib-processinfo","node-preload","process-on-spawn","spawn-wrap","any-path","@readme/openapi-parser", +"remove-undefined-objects","@readme/oas-examples","@types/json-schema-merge-allof","@types/memoizee","apis", +"openapi initiative","openapi specification","openapi spec","openapi document","oai","@readme/postman-to-openapi", +"@types/swagger2openapi", +"prollyfill","gulp-exec","@pkgjs/support","error-cause","globalthis","has-tostringtag","util.inspect","indexof", +"Object.keys","@mariocasciaro/benchpress","access","bean","notation","segment","es-object-atoms","Object.assign", +"$.extend","_.extend","Underscore","Object.entries","Object.values","entries","ES8","ee-first","wrappy", +"@blakeembrey/deque","@blakeembrey/template","epoll","@types/mock-require","gpio","interrupt","raspberry","raspi","pi", +"beaglebone","beaglebone-black","default-browser","define-lazy-prop","is-in-ssh","wsl-utils","opens","launch","start", +"xdg-open","xdg","default","urls","bath-es5","dereference-json-schema","axios-mock-adapter","json-schema-deref-sync", +"open api","computer","quadrocopter","countrynames","hashish","last-call-webpack-plugin","prelude-ls","deep-is","levn", +"livescript","option parsing","stdin-discarder","transform-tty", +"sequencify","stream-consume","sql-ddl-sync","sql-query","redshift","home","tmpdir","ps1","template string", +"template literal","styleable","scrollbar","scrollbars","scroll","@vscode/vsce","yauzl-promise","@types/is-ci", +"@types/yauzl-promise","limiter","vscode","addlistener","addeventlistener","waits","resolved","race","fulfilled", +"concurrency","ratelimit","fifo","invalidate","out","plunder","metadata","@pa11y/html_codesniffer","eslint-config-pa11y", +"proclaim","aria","compliance","headless","htmlcs","standards","WCAG","sigstore","npm-registry-mock","capture-website", +"filenamify-url","unused-filename","@types/png.js","png.js","page","screenshots","screengrab","striptags","para", +"server-side","idb-keyval","react-native-crypto-js","@saithodev/semantic-release-backmerge","@types/facebook-js-sdk", +"babel-plugin-transform-inline-environment-variables","jasmine-spec-reporter","jsdoc-babel","parse-server", +"vite-plugin-commonjs", +"WHATWG","html parser","html5 parser","html serializer","htmlserializer","fast-url-parser","pause", +"chai-connect-middleware","username","passport-oauth1","base64url","exist","isabsolute","is-absolute","zeptomatch", +"@rkusa/linebreak","opentype.js","jpeg-exif","linebreak","png-js","blob-stream","brace","pdfjs-dist","pdf writer", +"pdf generator","call-delayed","chai-increasing","pg-pool","pg-protocol","pg-types","pgpass","pg-cloudflare", +"@cloudflare/vitest-pool-workers","@cloudflare/workers-types","pg-copy-streams","libpq","postgre","rdbms", +"flow-copy-source","npm-watch","connect-phonegap","phonegap-build","phonegap build","phonegap/build","pinkie-promise", +"denodify","atomic-sleep","on-exit-leak-free","pino-abstract-transport","pino-std-serializers","quick-format-unescaped", +"real-require","@pinojs/redact","sonic-boom","thread-stream","@types/flush-write-stream","bole","fastbench", +"flush-write-stream","midnight-smoker","pino-pretty","steed","postinstall","lifecycle", +"devpostinstall","entry","irregular-plurals","plurals","count","irregular","noun","nouns","@pm2/agent","@pm2/js-api", +"@pm2/io","@pm2/pm2-version-check","@pm2/blessed","cli-tableau","fclone","pidusage","pm2-axon","pm2-axon-rpc", +"pm2-deploy","pm2-multimeter","vizion","logs","kraken","load balancer","lb","load-balancer","kubernetes","k8s", +"pm2-docker","runtime","graceful","node-pm2","production","keymetrics","node.js monitoring","strong-pm","supervisord", +"pm2.io","ghost production","process manager","probes","keep process alive","process configuration","clustering", +"cluster cli","dev ops","tap-dot","PNG","js-png","node-png","png-parse","pnpm10","dependency manager","hardlinks", +"prune","rapid","symlinks","uninstall","poe","economy","ninja","poe.ninja","poe economy","path of exile", +"path of exile economy","path of exile ninja","poe economy api","path of exile api","poe.watch api","poe.ninja api", +"babel-plugin-preval","pushstate-server","tsgen","glamor","inline-styles","color manipulate","color manipulation", +"curried color manipulation","@popperjs/bundle","@popperjs/eslint-config-popper","@popperjs/test","@popperjs/test-utils", +"nuget-publish","popperjs","position","attached","ports","source map","manipulation","jison-gho","calculation","calc", +"postcss-reporter","read-cache","eslint-config-problems","@csstools/utilities","comma","hsl","hsla","hwb","rgba", +"caniuse-api","@types/caniuse-api","pixrem","pleeease-filters","postcss-apply","postcss-attribute-case-insensitive", +"postcss-color-function","postcss-color-gray","postcss-color-hex-alpha","postcss-color-hsl","postcss-color-hwb", +"postcss-color-rebeccapurple","postcss-color-rgb","postcss-color-rgba-fallback","postcss-font-family-system-ui", +"postcss-font-variant","postcss-image-set-polyfill","postcss-initial","postcss-media-minmax", +"postcss-pseudo-class-any-link","postcss-pseudoelements","postcss-replace-overflow-wrap","postcss-selector-matches", +"postcss-selector-not","cssrecipes-custom-media-queries","cssrecipes-defaults","cssrecipes-grid", +"cssrecipes-utils","cssrecipes-vertical-rhythm","eslint-config-i-am-meticulous","isogram","markdown-it-toc-and-anchor", +"metalsmith-collections","metalsmith-filenames","metalsmith-md","metalsmith-react","metalsmith-rename","metalsmith-rss", +"metalsmith-url","metalsmith-watch","nano-logger","npmpub","postcss-browser-reporter","react-svg-inline","to-slug-case", +"webpack-nano-logs","cssnext","@csstools/cascade-layer-name-parser","at-rule","atrule","csswg","media","queries", +"declarative","selectors","empty","at-rules","@keyframes","@counter-style","flexbugs","flex","postcss-less", +"postcss-styl","quickapp","PHP","sss","image-set","node modules","postcssrc","postcss.config.js","midas","postcss-short", +"postcss-dark-theme-class","cssnano-utils","font-family","font-weight","@types/cssesc","css-modules", +"@csstools/selector-resolve-nested","atrules","children","nestings","@csstools/normalize.css","postcss-browser-comments", +"sanitize.css","@csstools/postcss-tape","normalizes","fixes","@csstools/postcss-alpha-function", +"@csstools/postcss-color-function","@csstools/postcss-color-function-display-p3-linear", +"@csstools/postcss-color-mix-function","@csstools/postcss-color-mix-variadic-function-arguments", +"@csstools/postcss-content-alt-text","@csstools/postcss-contrast-color-function", +"@csstools/postcss-exponential-functions","@csstools/postcss-font-format-keywords","@csstools/postcss-gamut-mapping", +"@csstools/postcss-gradients-interpolation-method","@csstools/postcss-hwb-function","@csstools/postcss-ic-unit", +"@csstools/postcss-initial","@csstools/postcss-light-dark-function","@csstools/postcss-logical-float-and-clear", +"@csstools/postcss-logical-overflow","@csstools/postcss-logical-overscroll-behavior","@csstools/postcss-logical-resize", +"@csstools/postcss-logical-viewport-units","@csstools/postcss-media-minmax", +"@csstools/postcss-media-queries-aspect-ratio-number-values","@csstools/postcss-mixins","@csstools/postcss-nested-calc", +"@csstools/postcss-normalize-display-values","@csstools/postcss-oklab-function", +"@csstools/postcss-position-area-property","@csstools/postcss-property-rule-prelude-list", +"@csstools/postcss-random-function","@csstools/postcss-relative-color-syntax","@csstools/postcss-scope-pseudo-class", +"@csstools/postcss-sign-functions","@csstools/postcss-stepped-value-functions", +"@csstools/postcss-syntax-descriptor-syntax-production","@csstools/postcss-system-ui-font-family", +"@csstools/postcss-text-decoration-shorthand","@csstools/postcss-trigonometric-functions", +"@csstools/postcss-unset-value","css-blank-pseudo","css-has-pseudo","css-prefers-color-scheme","postcss-clamp", +"postcss-dir-pseudo-class","postcss-double-position-gradients","postcss-focus-within","postcss-gap-properties", +"postcss-lab-function","postcss-logical","postcss-overflow-shorthand","postcss-page-break","postcss-place","lists", +"postcss-syntax","@jsopen/objects","doublylinked","lightning-pool","postgres-bytea","power-tasks","putil-promisify", +"putil-varhelpers","transformations","processor","ltgt","vuvuzela","spark-md5","level-codec","fetch-cookie", +"double-ended-queue","level-write-stream","empower","power-assert-formatter","universal-deep-strict-equal","dereserve", +"licensify","package-json-filterify","precommit","@actions/github","@actions/glob", +"babel-plugin-transform-rename-properties","errorstacks","kolorist","virtual dom","dom diff","binary-searching", +"jest-light-runner","jest-specific-snapshot","@vue/language-plugin-pug","prettier-plugin","imports","organize-imports", +"glob-fs","humanized","si","locale","localized","renderkid","jitter","exception","error-handling","parse-ms", +"milliseconds","period","hrtime","@pkgr/core","mercurial","hg","vcs","@prisma/config","@prisma/engines", +"@prisma/studio-core","ohash","package-up","ts-pattern","@prisma/dmmf","line-replace","@prisma/debug","openapi-fetch", +"xdg-app-paths","@libsql/client","@prisma/client","@prisma/migrate","get-port-please","@prisma/generator", +"@prisma/internals","checkpoint-client","openapi-typescript","@prisma/fetch-engine","@prisma/get-platform", +"@types/better-sqlite3","@prisma/adapter-libsql","@prisma/credentials-store", +"@prisma/management-api-sdk","@prisma/driver-adapter-utils","@prisma/client-generator-registry", +"@opentelemetry/context-async-hooks","ORM","Prisma","Prisma CLI","prisma2","JS","TS","SQL","SQLite","Postgres", +"PostgreSQL","CockroachDB","MySQL","MariaDB","MSSQL","SQL Server","SQLServer","MongoDB","MCP","danger","docdash", +"gulp-terser","regexpp","webfont","prism","node-rest-client","URIjs","svn","customize","sisteransi","interact", +"uglifyify","uglifyjs","alpha-sort","html-event-attributes","mdast-zone","svg-element-attributes","svg-event-attributes", +"@protobufjs/aspromise","@protobufjs/base64","@protobufjs/codegen","@protobufjs/eventemitter","@protobufjs/fetch", +"@protobufjs/float","@protobufjs/inquire","@protobufjs/path","@protobufjs/pool","@protobufjs/utf8","browserify-wrap", +"git-semver-tags","protobuf","protocol-buffers","serialization","@types/q","@types/jasminewd2","gulp-clang-format", +"natives","tslint-eslint-rules","vrsource-tslint-rules","webdriverjs","basic-auth-parser", +"@types/args","squid","privoxy","mod_proxy","via","x-forwarded-for","fill-keys","module-not-found-error", +"native-hello-world","cp-sugar","elegant-status","pug-load","pug-lexer","pug-linker","pug-parser","pug-filters", +"pug-runtime","pug-code-gen","pug-strip-comments","jstransformer-uglify-js","jstransformer-markdown-it","tap-bail","idn", +"idna","dns","domain","chromium-bidi","puppeteer-core","typed-query-selector","purge","fluent","qr code", +"@browserify/envify","@browserify/uglifyify","common-shakeify","has-override-mistake","unassertify", +"decode-uri-component","filter-obj","split-on-first","param","parameter","searchparams","retape","tap-esm","synchronous", +"FIFO","lifo","LIFO","work","queue js","job queue","job scheduling","task queue","ordered","iterate","linked list", +"dequeue","shift","item","parchment","quill-delta","@types/highlight.js","transpile-webpack-plugin", +"eslint-import-resolver-webpack","fuzzysort","grunt-search","eslint-plugin-json-es","@qunitjs/browserstack-runner", +"dom-element-descriptors","@types/qunit","@release-it-plugins/lerna-changelog","qunit-plugin","exists-stat", +"js-reporters","browserstack-runner","testling","requestAnimationFrame","babel-plugin-import-export-rename","envvar", +"sanctuary","sanctuary-identity","xyz","tacit","point-free","curried","fantasy-land","words","sample","timed-out", +"exceptions","sentry","unpipe","@rc-component/father-plugin","father-build","rc-test","react-slider","slider", +"react-tooltip","@types/responselike","react-addon","@apollo/react-common","@apollo/react-components", +"@apollo/react-hoc","@apollo/react-hooks","@apollo/react-ssr","@restart/ui","@restart/hooks","uncontrollable", +"prop-types-extra","ecosystem-react","@icons/material","material-colors","reactcss","@case/eslint-config", +"@storybook/addon-centered","babel-plugin-transform-rename-import","chai-spies","jsx-loader","react-context", +"react-mark","testdom","color picker","sketch","photoshop","html-webpack-tags-plugin","copy to clipboard", +"@react-docgen/cli", +"date-fns-tz","is-root","detect-port-alt","@react-dnd/invariant","@react-dnd/shallowequal","dnd-core","@types/doctrine", +"documentation-generation","attr-accept","file-selector","@babel/plugin-proposal-do-expressions", +"@babel/plugin-proposal-logical-assignment-operators","@babel/plugin-proposal-pipeline-operator","@commitlint/prompt", +"@size-limit/webpack-why","imagemin-cli","webpack-blocks","jest-fetch-mock","settle-promise","overlay","redbox","crash", +"react-side-effect","eslint-config-nfl","karma-chai-sinon","karma-html-reporter","nfl","head","title","meta","noscript", +"jest-fixed-jsdom","form-validation","enzyme-adapter-react-15","react-mount","yarn-deduplicate","live","hot", +"use-sync-external-store","@babel/plugin-proposal-async-generator-functions","eslint-plugin-jest-dom","viewport", +"intersection","observer","lazy load","inview","useInView","useIntersectionObserver","@formatjs/ecma402-abstract", +"@formatjs/icu-messageformat-parser","@formatjs/intl","intl-messageformat","eslint-config-es5","rehype-starry-night", +"exenv","@webcomponents/custom-elements","dialog","babel-browser-transform","inject-loader","isparta-loader", +"karma-jasmine-diff-reporter","lodash.range","transitiongroup","spring", +"tween","motion","transition","nullthrows","metro-runtime","hermes-compiler","metro-source-map","flow-enums-runtime", +"@react-native/codegen","@react-native/js-polyfills","@react-native/gradle-plugin","@react-native/assets-registry", +"@react-native/normalize-colors","@jest/create-cache-key-function","@react-native/virtualized-lists", +"babel-plugin-syntax-hermes-parser","@react-native/community-cli-plugin","app-framework","mobile-development", +"@react-native-community/cli","@react-native/eslint-config","@react-native/typescript-config","react-native-builder-bob", +"react-native-component","keychain","svg2ttf","fontisto","evil-icons","feather-icons","oslllo-svg-fixer", +"svgicons2svgfont","simple-line-icons","@entypo-icons/core","css-social-buttons","osx","macos", +"@cmfcmf/docusaurus-search-local","react-transform-hmr","currency","number-format","require-hijack","onclick","outside", +"onclickoutside","@rollup/plugin-sucrase","eslint-plugin-ft-flow","hermes-eslint","@types/use-sync-external-store", +"matchmediaquery","@types/hyphenate-style-name","@types/match-media-mock","@types/matchmediaquery","match-media-mock", +"media queries","respond","matchMedia","wireit","premove","redux-devtools","redux-devtools-dock-monitor", +"redux-devtools-log-monitor","combobox","multiselect","json2mq", +"@playwright/experimental-ct-react","foundation-apps","slick-carousel","why-did-you-update","slick","carousel", +"Image slider","orbit","@tippyjs/react","@vxna/mini-html-webpack-template","clipboard-copy","common-dir", +"es6-object-assign","function.name-polyfill","glogg","javascript-stringify","jss","jss-plugin-camel-case", +"jss-plugin-compose","jss-plugin-default-unit","jss-plugin-global","jss-plugin-isolate","jss-plugin-nested","listify", +"mini-html-webpack-plugin","q-i","qss","react-docgen-annotation-resolver","react-docgen-displayname-handler", +"react-group","strip-html-comments","type-detect","@types/buble","@types/copy-webpack-plugin","@types/escodegen", +"@types/hash-sum","@types/keymirror","@types/markdown-to-jsx","@types/terser-webpack-plugin","@types/type-detect", +"@types/webpack-dev-server","deabsdeep","deepfreeze","dog-names","eslint-config-tamia","keymirror","strip-shebang", +"scalable vector graphics","svginjector","TapEventPlugin","300ms","react-testing","@4tw/cypress-drag-drop", +"vite-plugin-istanbul","toast","alert","snackbar","message","commoner","jstransform","coverify","es3ify","esprima-fb", +"grunt-jest", +"jasmine-tapreporter","populist","transition-group","transitions","react-codemirror","eslint-config-react", +"eslint-plugin-relay","@babel/preset-stage-2","jest-environment-puppeteer","@babel/plugin-transform-flow-comments", +"scrolling","infinite","virtualized","fixed","es6-module-jstransform","@storybook/addon-storysource","customize-cra", +"holderjs","react-prism","esbuild-plugin-alias","tap-mocha-reporter","line by line","repl","tiny-invariant", +"@types/esprima","flow-parser","refactoring","pretty-printing","prepare","change-emitter","higher-order", +"microcomponentization","composition","lister","@redis/bloom","@redis/client","@redis/json","@redis/search", +"@redis/time-series","@redocly/openapi-core","@cfaester/enzyme-adapter-react-18","docusaurus-theme-redoc", +"docusaurus-plugin-redoc","@docusaurus/theme-common","api-doc","docusaurus-preset","netlify-plugin-cache","predictable", +"replay","elm","just-curry-it","reduce-reducers","@vitest/coverage-c8","eslint-config-unicorn-camelcase", +"flux-standard-action","actions","insert-line","redux-immutable","lodash-webpack-plugin","@redux-saga/core","saga", +"effects","side effects","thunk", +"redux-middleware","ecmarkup","gulp-emu","gulp-live-server","gulp-sequence","reflect","regenerator","abstract", +"is-hidden","rehype-plugin","is-absolute-url","external","hast-util-properties-to-mdx-jsx-attributes", +"eslint-config-remcohaszing","snapshot-fixtures","@nodeutils/defaults-deep","@phun-ky/typeof","issue-parser", +"wildcard-match","@octokit/request-error","mentoss","mock-stdio","remark-preset-webpro","distribution","intern", +"markdown-extensions","unified-args","footnote","remark-plugin","remark-slug","mermaid-isomorphic", +"hast-util-from-html-isomorphic","mermaidjs","remark-comment-config","remark-contributors","remark-heading-gap", +"remark-license","remark-lint-definition-spacing","remark-lint-fenced-code-flag","remark-lint-file-extension", +"remark-lint-final-definition","remark-lint-first-heading-level","remark-lint-heading-style", +"remark-lint-no-consecutive-blank-lines","remark-lint-no-emphasis-as-heading","remark-lint-no-file-name-articles", +"remark-lint-no-file-name-consecutive-dashes","remark-lint-no-file-name-irregular-characters", +"remark-lint-no-file-name-mixed-case","remark-lint-no-file-name-outer-dashes","remark-lint-no-heading-indent", +"remark-lint-no-heading-punctuation","remark-lint-no-missing-blank-lines","remark-lint-no-multiple-toplevel-headings", +"remark-lint-no-shell-dollars","remark-lint-no-table-indentation","remark-lint-no-tabs", +"remark-lint-ordered-list-marker-value","remark-lint-table-pipe-alignment","remark-retext","retext-english", +"retext-preset-github","remark-lint-correct-media-syntax","remark-lint-definition-sort", +"remark-lint-link-title-style","remark-lint-maximum-heading-length","remark-lint-maximum-line-length", +"remark-lint-mdx-jsx-attribute-sort","remark-lint-mdx-jsx-no-void-children","remark-lint-mdx-jsx-quote-style", +"remark-lint-mdx-jsx-self-close","remark-lint-mdx-jsx-shorthand-attribute","remark-lint-mdx-jsx-unique-attribute-name", +"remark-lint-media-style","remark-lint-no-duplicate-defined-urls","remark-lint-no-duplicate-headings-in-section", +"remark-lint-no-empty-url","remark-lint-no-heading-like-paragraph","remark-lint-no-hidden-table-cell", +"remark-lint-no-html","remark-lint-no-paragraph-content-indent","remark-lint-no-reference-like-url", +"remark-lint-no-unneeded-full-reference-image","remark-lint-no-unneeded-full-reference-link","retext-preset-wooorm", +"wooorm","autolinker","caseless","aws-sign2","oauth-sign","tunnel-agent","forever-agent","har-validator","is-typedarray", +"http-signature","taper","karma-cli","stealthy-require","request-promise-core","thenable","index.js", +"@typescript-eslint/eslint-plugin-tslint","@typescript/analyze-trace","eslint-plugin-typescript","micro-memoize", +"ResizeObserver","path-parse","supports-preserve-symlinks-flag","copy-dir","adjust-sourcemap-loader","cls-hooked", +"myrmidon","conventional-changelog-eslint","eslint-config-incredible","eslint-plugin-censor","eslint-plugin-no-secrets", +"eslint-plugin-scanjs-rules","fatum","node-package-tester","semantic-release-telegram","vesta","documentate", +"autodocumentate","ewma","spdy","restify-errors","escape-regexp-component","watershed", +"restify-clients","autocannon-compare","DTrace","quit","shutdown","sigterm","sigint","terminate","kill","NoSQL","reql", +"query language","leak","deep-copy","fast-copy","fastest-json-copy","nano-copy","plain-object-clone","deep-clone", +"deepclone","deepcopy","performant","fastclone","fastcopy","fast-clone","fast-deep-clone","fast-deep-copy", +"package-json-from-dist","rm -rf","rm -fr","prebuild","run-script-os","targetpractice","Automation","mouse","pixel", +"recognition","autohotkey","machine","learning","@mermaid-js/mermaid-cli","@shikijs/vitepress-twoslash", +"@vue/language-server","acorn-import-assertions","date-time","flru","npm-audit-resolver","wasm-pack","bundling", +"rollup-plugin","js-cleanup","rollup-plugin-jsx","sourcemap-validator","removal","@types/d3-drag","@types","commenting", +"package-name-regex","spdx-expression-validate","spdx-satisfies","gulp-conventional-changelog","rollup-plugin-prettier", +"rollup-plugin-strip-banner","browserify-fs", +"buffer-es6","process-es6","sourceMappingURL","@types/find-cache-dir","@types/graphlib","graphlib","rollup-plugin-re", +"@types/d3-array","@types/d3-color","@types/d3-force","@types/d3-hierarchy","@types/d3-scale","@types/d3-shape", +"visualizer","treemap","sunburst","diagram","@ampproject/toolbox-optimizer","@babel/plugin-syntax-bigint", +"@capsizecss/metrics","@edge-runtime/cookies","@edge-runtime/ponyfill","@edge-runtime/primitives","@napi-rs/triples", +"@next/polyfill-module","@next/polyfill-nomodule","@next/react-refresh-utils","@next/swc","@taskr/clear","@taskr/esnext", +"@types/amphtml-validator","@types/babel__generator","@types/ci-info","@types/content-disposition", +"@types/express-serve-static-core","@types/fresh","@types/lodash.curry","@types/path-to-regexp","@types/platform", +"@types/send","@types/text-table","@types/ua-parser-js","amphtml-validator","async-sema","cli-select","comment-json", +"edge-runtime","ignore-loader","lodash.curry","native-url","server-only","string-hash","taskr","unistore","watchpack", +"ember-cli-progress","rtl","ltr","run series","LINQ","FRP","Reactive","Rx","RxJS", +"@angular-devkit/build-optimizer","@types/source-map","check-side-effects","rollup-plugin-alias","rollup-plugin-inject", +"tslint-etc","tslint-no-toplevel-property-access","tslint-no-unused-expression-chai","web-streams-polyfill","ReactiveX", +"ReactiveExtensions","Streams","Observables","Stream","buffer allocate","node security","uninitialized","mock-env", +"dist-tag","prepublish","@sailshq/lodash","@sailshq/router","captains-log","common-js-file-extensions","@sailshq/csurf", +"flaverr","i18n-2","include-all","machine-as-action","machinepack-process","machinepack-redis","merge-defaults", +"merge-dictionaries","parley","rttc","sails-generate","sails-stringfile","skipper","sort-route-addresses","whelk", +"machinepack-fs","@sailshq/request","root-require","sails-hook-orm","sails-hook-sockets","sails.io.js", +"session-file-store","mvc","web-framework","sailsjs","sails.js","truncate-utf8-bytes","mktemp","filename","parse-srcset", +"eslint-config-apostrophe","material-components-web","node-sass-glob-importer","markdown-model","bare-script", +"element-model","food","drink","helpful", +"opensourcesoftware","teaching","experimentation","applications","ec","ecdh","ecdsa","seed","@bazel/runfiles", +"@semantic-release/error","aggregate-error","env-ci","find-versions","git-log-parser","import-from-esm","p-each-series", +"file-url","mockserver-client","p-retry","stream-buffers","author","@fluentui/react-component-event-listener", +"@fluentui/react-component-ref","@semantic-ui-react/event-stack","keyboard-key","@artsy/fresnel","@babel/standalone", +"@percy/cli","@percy/cypress","anchor-js","babel-plugin-filter-imports","babel-plugin-transform-react-handled-props", +"babel-plugin-universal-import","chai-enzyme","react-ace","react-codesandboxer","react-source-render","react-static", +"react-static-routes","react-universal-component","satisfied","semantic-ui-css","ta-scripts", +"terser-webpack-plugin-legacy","eslint-config-standard-jsx","standard-engine","bikeshed","semicolon","@hapi/joi","eraro", +"fast-safe-stringify","gate-executor","gubu","jsonic","lodash.defaultsdeep","optioner","ordu","patrun","rolling-stats", +"seneca-transport","use-plugin","@seneca/test-plugin","bench","gex", +"lab-transform-typescript","seneca-entity","seneca-error-test","seneca-joi","seneca-promisify","summary","micro-service", +"micro-services","micro service","minimum","viable","product","Sentimental","nlp","wkx","dottie","sequelize-pool", +"toposort-class","retry-as-promised","ibm_db","mariadb","p-props","p-settle","node-hook","pg-hstore","chai-datetime", +"snowflake-sdk","@octokit/types","js-combinatorics","esdoc-standard-plugin","esdoc-inject-style-plugin", +"esdoc-ecmascript-proposal-plugin","semantic-release-fail-on-major-bump","db2","snowflake","object relational mapper", +"@serialport/stream","@serialport/binding-mock","@serialport/bindings-cpp","@serialport/parser-ready", +"@serialport/parser-regex","@serialport/parser-cctalk","@serialport/parser-readline","@serialport/parser-delimiter", +"@serialport/parser-byte-length","@serialport/parser-spacepacket","@serialport/parser-slip-encoder", +"@serialport/parser-packet-length","@serialport/parser-inter-byte-timeout","ccTalk","com port","COM","data logging", +"hardware","modem","nodebots","RFID","sensor","serial port","sms gateway","sms","UART","update-check","@zeit/schemas", +"is-port-reachable","@vercel/style-guide","@types/serve-handler","temp-path","favicon","@serverless/utils", +"@commitlint/cz-commitlint","@serverless/test","serverless","serverless plugins","aws lambda","amazon web services", +"serverless.com","@aws-cdk/aws-lambda-python-alpha","@aws-sdk/client-dynamodb","@aws-sdk/client-eventbridge", +"@aws-sdk/client-lambda","@aws-sdk/client-sns","@aws-sdk/client-sqs","@aws-sdk/client-sts","@aws-sdk/lib-dynamodb", +"@aws-sdk/util-dynamodb","aws-cdk-lib","aws-iot-device-sdk","caporal","json-format-highlight", +"@types/aws-iot-device-sdk","@types/aws4","esbuild-runner","jsii","jsii-diff","jsii-docgen","jsii-pacmak","eventbridge", +"flow-remove-types","isequalwith","@img/colour","emnapi","exif-reader","@cpplint/cli","@emnapi/runtime", +"@img/sharp-libvips-dev","@img/sharp-libvips-win32-x64","@img/sharp-libvips-dev-wasm32","@img/sharp-libvips-win32-ia32", +"@img/sharp-libvips-win32-arm64","dzi","thumbnail","libvips","vips","quote","shelljs-changelog","shelljs-release", +"travis-check-changes","makefile","clean-publish","short","tiny","bitly","shorten","tinyid","should-equal", +"should-format","should-type", +"should-type-adaptors","should-util","eslint-config-shouldjs","grunt-endline","quiet-grunt","semver-sort", +"shelljs-plugin-open","transforms","@kwsites/file-exists","@kwsites/promise-deferred","@kwsites/promise-result", +"@simple-git/babel-config","source control","custom-event","js-correct-lockfile","rollup-plugin-analyzer", +"eslint-config-important-stuff","@sinonjs/samsam","@sinonjs/eslint-plugin-no-prototype-methods","@studio/changes", +"esbuild-plugin-istanbul","clock","vendor","mocks-and-spies","crypt3","fs-ext","express-json5","render-readme", +"sinopia-htpasswd","browserify-handlebars","@polka/url","totalist","bytes-iec","nanospinner","budget", +"performance budget","file size","directory size","get size","qpass","amazon-cognito-identity-js","basic-node-server", +"skapi","seperator","is-fullwidth-code-point","random-item","get-folder-size","js-extend","math-sum","prettier-bytes", +"tablify","slow","github-changes","urlify","standard-json","pretty output","snazzy standard","standard pretty", +"stylish for standard","stylish formatter","stylish reporter","stylish standard","axios-ntlm","xml-crypto", +"@types/sax","base64id","socket.io-adapter","io","@socket.io/component-emitter","eventsource","sockjs","separated", +"@anvilco/apollo-server-plugin-introspection-metadata","@graphql-tools/load-files","@graphql-tools/merge", +"@graphql-tools/utils","graphql-scalars","json-stringify-pretty-compact","microfiber","bdd-lazy-var","introspection", +"introspection-query","string-to-stream","binary-split","callback-stream","gulp-benchmark","imageinfo","prettydiff", +"sprity-css","sprity-lwip","object-stream","through2-spy","sprites","coordinates","css-sprite","asn1","bcrypt-pbkdf", +"integrity","subresource integrity","sri","sri hash","sri string","sri generator","encrypt","st","firestore", +"shuruhatik","long-stack-traces","version-guard","run-parallel-limit","conventional-changelog-config-spec", +"dotgitignore","stringify-package","std-mocks","recommended","check-more-types","lazy-ass","ban-sensitive-files", +"deps-ok","dont-crack","git-issues","pre-git","simple-commit-message","winser","modern-syslog","etsy","metric", +"aggregation", +"@vitest/expect","@storybook/global","store2","exsolve","empathic","picoquery","modern-tar","fetch-retry", +"@types/npmlog","@vitest/utils","launch-editor","unique-string","@vitest/mocker","bundle-require","flush-promises", +"@yarnpkg/libzip","browser-dtector","react-inspector","@react-aria/tabs","deep-object-diff","@react-aria/utils", +"@polka/compression","@types/detect-port","@ngard/tiny-isequal","@react-aria/toolbar","@react-stately/tabs", +"@react-types/shared","@storybook/docs-mdx","get-npm-tarball-url","use-resize-observer","@radix-ui/react-slot", +"@react-aria/landmark","@react-aria/overlays","@types/pretty-hrtime","@discoveryjs/json-ext","lazy-universal-dotenv", +"react-transition-state","@react-stately/overlays","@react-aria/interactions","react-syntax-highlighter", +"@radix-ui/react-scroll-area","@devtools-ds/object-inspector","@types/react-syntax-highlighter", +"@aw-web-design/x-default-browser","@fal-works/esbuild-plugin-global-externals","design-systems","component-testing", +"@glen/jest-raw-loader","@storybook/addon-onboarding","@storybook/addon-storyshots", +"@storybook/addon-storyshots-puppeteer","@storybook/blocks","@storybook/test","eslint-config-torchbox","storybookjs", +"patternlab","django","django-pattern-library","django-templates","jinja2","findit2","inside","funsert","into-stream", +"Assert","music-metadata","livestream","livestreaming","gulp-rimraf","string.js","stringjs","S","s","codsen-utils", +"ranges-apply","ranges-push","string-left-right","ast-monkey-traverse","ranges-invert","jsp","mixed","stri","xhtml", +"get-east-asian-width","visual","columns","fullwidth","full-width","wcswidth","full","cjk","chinese","japanese","korean", +"fixed-width","east-asian-width","undici-types","payment processing","credit cards","generator-loopback", +"loopback-sdk-angular-cli","nodefly-register","strong-agent","strong-arc","strong-build","strong-deploy", +"strong-mesh-models","strong-registry","strong-start","strong-supervisor","core-util-is","strong-debugger", +"strong-swagger-ui","swagger-ui","utf-8-validate","LoopBack","Platform","alerts","event loop","heroku","master", +"metrics","nodeops","npmrc","openshift","ops","pm","response", +"slc","slowest functions","strong-cli","strong-cluster-control","strongops","upstart","@bundled-es-modules/deepmerge", +"@bundled-es-modules/glob","@bundled-es-modules/memfs","@zip.js/zip.js","path-unified","@esm-bundle/chai-as-promised", +"@rollup/browser","@shoelace-style/shoelace","@web/test-runner-commands","hanbi","jsdoc-escape-at", +"jsdoc-tsimport-plugin","starlight-links-validator","style dictionary","dictionary","Android","@types/stylis", +"css-to-react-native","@types/js-beautify","@types/react-frame-component","@types/shallowequal","react-frame-component", +"stylis-plugin-rtl","ts-toolbelt","stylis-rule-sheet","zeit","hack","hacks","globjoin","mathml-tag-names","svg-tags", +"@changesets/get-github-info","@stylelint/prettier-config","@stylelint/remark-preset","@types/balanced-match", +"@types/file-entry-cache","@types/global-modules","@types/globjoin","@types/imurmurhash","@types/postcss-less", +"@types/svg-tags","eslint-config-stylelint","jest-preset-stylelint","postcss-sass","stylelint-config","shortcss", +"css-values","babel-register-ts","stylelint-plugin","delaration-strict-value","keyword","z-index","postcss-sorting", +"eslint-config-hudochenkov","postcss-styled-syntax","prettier-config-hudochenkov","postcss-media-query-parser", +"postcss-resolve-nested-selector", +"github-contributors-list","bootstrap-styl","cookiejar","should-http","tinyify","frisbee","super","promised","supports", +"capability","truecolor","16m","esrap","zimmerframe","@types/sade","vscode-languageserver", +"vscode-languageserver-protocol","svelte2tsx","svelte-language-server","@kiwi/eslint-config","@kiwi/prettier-config", +"@types/pug","postcss-easy-import","prettysize","@resvg/resvg-js","playwright-chromium","eslint-plugin-jest-formatting", +"sw-precache","git-release-notes","precache","tape-promise","autogen","promise.any","multilang-extract-comments", +"@readme/eslint-config","readmeio","swagger-nestjs","swagger-templates","swagger UI","istanbul-badges-readme","nodelint", +"still","mocha-phantomjs","travis-cov","jinja","swipe","framework7","gallery","slideshow","http-response-object", +"sync-rpc","then-request","flowgen2","system information","sysinfo","freebsd","openbsd","netbsd","cpu","cpuload", +"physical cores","logical cores","cores","socket type", +"fsstats","diskio","block devices","netstats","network interfaces","network connections","network stats","iface", +"printer","processes","users","internet","battery","docker stats","docker processes","graphic card","graphic controller", +"gpu","smart","disk layout","audio","bluetooth","wifi","wifinetworks","virtual box","virtualbox","vm","BIOS","chassis", +"symbol-es6","@jsenv/file-size-impact","construct-style-sheets-polyfill","hase","draht","limes","lusca","partof", +"timer2","uuidv4","crypto2","nocache","datasette","json-lines","processenv","stethoskop","flaschenpost", +"commands-events","nodeenv","roboter","assertthat","json-lines-client","cqs","cqrs","@codspeed/vitest-plugin", +"className","classList","override","@tailwindcss/oxide","@tapjs/after","@tapjs/after-each","@tapjs/asserts", +"@tapjs/before","@tapjs/before-each","@tapjs/chdir", +"@tapjs/core","@tapjs/filter","@tapjs/fixture","@tapjs/intercept","@tapjs/mock","@tapjs/node-serialize","@tapjs/run", +"@tapjs/snapshot","@tapjs/spawn","@tapjs/stdin","@tapjs/test","@tapjs/typescript","@tapjs/worker","resolve-import", +"tapjs","tapjs plugin","tap-out","tapes","@ljharb/resumer","@ljharb/through","array.prototype.every","dotignore", +"has-dynamic-import","ecstatic","npm-run-posix-or-windows","harness","chownr","yallist","@isaacs/fs-minipass","chmodr", +"events-to-array","brittle","b4a","streamx","fast-fifo","actor system","DDD","actor-system","front end","back end", +"@parcel/packager-ts","@parcel/transformer-typescript-types","cz-format-extension","telegram","telegram-api", +"telegram-client-api","tdlib","tglib","node-addon","tempdir","tmpfile","unique","seventh","lazyness","tree-kit", +"chroma-js","string-kit","nextgen-events","@cronvel/get-pixels","256 colors","true color","input field","gpm", +"screenbuffer", +"textbuffer","32-bit","charm","resumer","visualwidth","80s","ibm","@jridgewell/source-map","@ls-lint/ls-lint","astring", +"es8","@types/uglify-js","@test-runner/core","@test-runner/default-view","@test-runner/live-view", +"@test-runner/oneline-view","@test-runner/tom","multiline-ts","spawn-process","only-allow","sinon-assert-stub", +"sinon-mocha-test","unlinted","example","@devexpress/bin-v8-flags-filter","@devexpress/callsite-record","bowser", +"chrome-remote-interface","device-specs","elegant-spinner","get-os-info","import-lazy","is-podman", +"log-update-async-hook","moment-duration-format-commonjs","os-family","pinkie","promisify-event","read-file-relative", +"replicator","testcafe-browser-tools","testcafe-hammerhead","testcafe-legacy-api","testcafe-reporter-json", +"testcafe-reporter-list","testcafe-reporter-minimal","testcafe-reporter-spec","testcafe-reporter-xunit", +"testcafe-selector-generator","time-limit-promise","unquote","url-to-options","@devexpress/gulp-qunit-harness", +"@ffprobe-installer/ffprobe","@testcafe/publish-please","@types/callsite","@types/dedent","@types/useragent", +"browserstack-connector","caller","dom-walk","eslint-plugin-hammerhead","express-ntlm","gulp-clone", +"gulp-ll-next","gulp-mocha-simple","gulp-step","mocha-reporter-spec-with-retries","openssl-self-signed-certificate", +"recursive-copy","testcafe-browser-provider-browserstack","automated","QA","@types/dockerode","docker-compose", +"properties-reader","ssh-remote-port-forward","@types/async-lock","@types/properties-reader","@types/tar-fs", +"stringify-object-es5","codeclimate-test-reporter","cross-conf-env","headerify","is-number","teenytest", +"teenytest-promise","test double","fireworm","printf","spawn-args","styled_string","bluebird-retry", +"chai-shallow-deep-equal","saucie","eslint-config-mdcs","jpeg-js","three.js","3d","virtual-reality","augmented-reality", +"webgl","webgl2","webaudio","webgpu","webxr","get-port-cli","node-stdlib-browser","user-streams","hundreds","polendina", +"stream-spigot","streams2","unexpand","homedir","tilde","collapse","number-is-nan","profile","stats","bee-dnd","bee-tag", +"bee-form","bee-icon","bee-rate","bee-step","bee-tabs","bee-tile", +"bee-tree","bee-affix","bee-alert","bee-badge","bee-label","bee-menus","bee-modal","bee-panel","bee-radio","bee-table", +"bee-anchor","bee-button","bee-drawer","bee-layout","bee-locale","bee-navbar","bee-select","bee-slider","bee-switch", +"bee-upload","bee-animate","bee-backtop","bee-loading","bee-message","bee-overlay","bee-popover","bee-svgicon", +"bee-tooltip","bee-calendar","bee-carousel","bee-cascader","bee-checkbox","bee-collapse","bee-dropdown","bee-timeline", +"bee-transfer","bee-clipboard","bee-breadcrumb","bee-datepicker","bee-form-group","bee-pagination","bee-popconfirm", +"bee-timepicker","bee-transition","bee-colorpicker","bee-input-group","bee-page-layout","bee-tree-select", +"bee-autocomplete","bee-button-group","bee-complex-grid","bee-form-control","bee-input-number","bee-notification", +"bee-progress-bar","bee-search-panel","bee-loading-state","bee-input-group-addon","gulp-cleancss","gulp-css-wrap", +"tinper-bee-core","less-plugin-inline-urls","tinper","bee", +"tinylibs","@deno/shim-deno-test","tinycolor","worker threads","thread pool","method","@types/react-native-vector-icons", +"pushalert","react-native toast","react-native-toastify","toastify","react-native-notification","expo","Typescript", +"node-resemble-js","processmd","of","tldts","set-cookie","RFC6265","RFC2965","tinytim","trace", +"typedarray.prototype.slice","forEach","html-select","html-tokenize","aggregate","bs-logger","make-error", +"babel-preset-es2016","typescript-loader","migrate","migration","migrations","cli-tool","@ts-morph/common", +"code-block-writer","static analysis","code refactor","create-require","@tsconfig/node10","@tsconfig/node12", +"@tsconfig/node14","v8-compile-cache-lib","@cspotcode/source-map-support","dprint","@swc/wasm","ntypescript", +"util.promisify","fast-json-patch","omit-deep","power-assign","bre","rete","rule engine","rules engine", +"javascript rule engine","js rule engine","inference system","@types/strip-bom","@tsd/typescript", +"eslint-config-xo-typescript","typedefs", +"typedefinitions","jsonc-simple-parser","polite-json","sync-content","Microsoft","codelyzer","tslint-divid", +"@types/make-dir","tslint-immutable","tslint-misc-rules","tslint-microsoft-contrib","tslint-consistent-codestyle", +"ts-lint","typescript-tslint-plugin","fix-dts-default-cjs-exports","joycon","ts-essentials","typescript runner", +"@mixmark-io/domino","turndown-attendant","grunt-mocha","grunt-markdown","grunt-component-io","grunt-push-release", +"grunt-regex-replace","jshint-path-reporter","mocha-unfunk-reporter","grunt-concat-sourcemap","tap-browser-color", +"tweetnacl-util","curve25519","ed25519","nacl","poly1305","public","salsa20","signatures","twemoji-parser","DOM", +"Twitter","type-coverage-core","tagged-tag","@typescript/vfs","generics","media-typer","checking","@gerrit0/mini-shiki", +"@material/material-color-utilities","typedoc-theme","typedoc-plugin","material-design","material-3","typedocplugin", +"JsDocs","cli-prompt","concatenate","ebook","pandoc","kindlegen","latex","@types/mongoose", +"mongodb-memory-server-global","mongoose-findorcreate","prettier-tslint", +"sql-highlight","@sqltools/formatter","gulpclass","@types/sha.js","@sap/hana-client","@types/gulp-rename", +"standard-changelog","@google-cloud/spanner","@types/gulp-sourcemaps","@dprint/formatter","@esfx/canceltoken", +"@dprint/typescript","azure-devops-node-api","monocart-coverage-reports","mocha-fivemat-progress-reporter", +"eslint-formatter-autolinkable-stylish","commandpost","@types/power-assert","intelli-espower-loader", +"@types/postcss-modules-local-by-default","@types/postcss-modules-scope","@types/icss-utils", +"@types/postcss-modules-extract-imports","@types/reserved-words","jest-environment-node-single-context", +"postcss-import-sync2","sass-svg","promise-finally","typings-core","tslint-config-standard","definition","ecma","jsmin", +"random-bytes","@uiw/formatter","@uiw/react-affix","@uiw/react-alert","@uiw/react-auto-link","@uiw/react-avatar", +"@uiw/react-back-top","@uiw/react-badge","@uiw/react-breadcrumb","@uiw/react-button-group","@uiw/react-calendar", +"@uiw/react-card","@uiw/react-carousel","@uiw/react-cascader","@uiw/react-checkbox","@uiw/react-collapse", +"@uiw/react-copy-to-clipboard","@uiw/react-date-input","@uiw/react-date-picker","@uiw/react-descriptions", +"@uiw/react-divider","@uiw/react-drawer","@uiw/react-dropdown","@uiw/react-empty","@uiw/react-file-input", +"@uiw/react-form","@uiw/react-grid","@uiw/react-layout","@uiw/react-list","@uiw/react-loader","@uiw/react-menu", +"@uiw/react-message","@uiw/react-modal","@uiw/react-month-picker","@uiw/react-notify","@uiw/react-pagination", +"@uiw/react-pin-code","@uiw/react-popover","@uiw/react-portal","@uiw/react-progress","@uiw/react-radio", +"@uiw/react-rate","@uiw/react-search-select","@uiw/react-search-tree","@uiw/react-select","@uiw/react-slider", +"@uiw/react-split","@uiw/react-steps","@uiw/react-switch","@uiw/react-table","@uiw/react-tabs","@uiw/react-tag", +"@uiw/react-textarea","@uiw/react-time-picker","@uiw/react-tooltip","@uiw/react-transfer","@uiw/react-tree", +"@uiw/react-tree-checked","media-query-fns","parsel-js","citty","hookable","mkdist","untyped","pretty-bytes-cli", +"browserify-header","@metcoder95/https-pem","dns-packet","jsondiffpatch","bail","trough","@types/extend","retext", +"unique-random","non-repeating","unist-util","xast","nlcst","visit","pullstream","match-stream","uncompress","pupa", +"is-npm","fixture-stdout","notifier","urn","uri mutation","url mutation","uri manipulation","url manipulation", +"uri template","url template","unified resource locator","unified resource identifier", +"query string","RFC 3986","RFC3986","RFC 6570","RFC6570","jquery-plugin","ecosystem:jquery","sauce-browsers", +"sauce-test","formstream","ylru","@eggjs/oxlint-config","@tsconfig/node18","@types/busboy","@types/proxy", +"@types/selfsigned","string.prototype.towellformed","urlopen","userprofile","yamlparser","browserscope","ua","ua-parse", +"ua-parser","user agent","user-agent","is-generator-function","is-typed-array","is-async-supported","rfc9562","bundt", +"diffs","find-parent-dir","githook","sanitisation","sanitise","@vue/shared","@vant/use","@vant/popperjs", +"@vue/runtime-core","diffable-html","vitest-canvas-mock","@vant/area-data","@vant/cli","@vant/eslint-config", +"@vant/icons","@vercel/go","@vercel/h3","@vercel/fun","@vercel/koa","@vercel/blob","@vercel/hono","@vercel/next", +"@vercel/node","@vercel/ruby","@vercel/rust","@vercel/elysia","@vercel/nestjs","@vercel/python","@vercel/express", +"@vercel/fastify","@vercel/redwood","@vercel/backends","@vercel/hydrogen", +"@vercel/build-utils","@vercel/detect-agent","@vercel/static-build","@vercel/remix-builder","epipebomb","promisepipe", +"@sentry/node","@types/title","jaro-winkler","@types/chance","@types/dotenv","@vercel/client","pcre-to-regexp", +"git-last-commit","@inquirer/search","@tootallnate/once","http-proxy-node16","@inquirer/checkbox","@inquirer/password", +"@vercel/frameworks","@vercel/error-utils","line-async-iterator","@vercel/fs-detectors","@types/load-json-file", +"@vercel/routing-utils","@types/npm-package-arg","@types/write-json-file","@vercel-internals/types", +"@edge-runtime/node-utils","json-parse-better-errors","@types/jest-expect-message","@vercel-internals/constants", +"@alex_neo/jest-expect-message","@types/json-parse-better-errors","@vercel-internals/get-package-json","extsprintf", +"err","create-banner","postcss-header","viewer","viewer.js","teex","remove-trailing-separator","fs-mkdirp-stream", +"is-valid-glob","lead","resolve-options","stream-composer","to-through","value-or-function","vinyl-sourcemap", +"vinyl-adapter","classic","browser-split","ev-store","x-is-array","x-is-string","run-browser","vtree","artichokie", +"periscopic","http-proxy-3","strip-literal","es-module-lexer", +"postcss-modules","@oxc-project/types","host-validation-middleware","dev-server","build-tool","dotenv-local", +"slash-path","vite-plugin-builder","api-router","api-routers","vite-plugin-api","vite-plugin-rest-api","express-router", +"file-system-based","rest-api","api-rest","Remix","Next.js","focus-trap","@shikijs/core","@shikijs/types", +"@vue/devtools-api","@vueuse/integrations","@iconify-json/simple-icons","@iconify/utils","@mdit-vue/shared", +"@mdit-vue/plugin-sfc","@mdit-vue/plugin-toc","markdown-it-mathjax3","@mdit-vue/plugin-title","@mdit-vue/plugin-headers", +"@types/markdown-it-emoji","@mdit-vue/plugin-component","@mdit-vue/plugin-frontmatter","@types/markdown-it-container", +"@types/postcss-prefix-selector","tinyrainbow","@vitest/runner","@vitest/snapshot","why-is-node-running", +"@vitest/pretty-format","birpc","local-pkg","@edge-runtime/vm","@antfu/install-pkg","node-localstorage","gulp-xo", +"vorpal-less","vorpal-repl","load-plugins","eyes","BDD","keytar","parse-semver","typed-rest-client","@types/read", +"@types/yazl","@types/cheerio","@types/url-join","@types/clone","@types/iconv-lite","vscode-oniguruma", +"@vue/runtime-dom","eslint-plugin-vue-libs", +"@babel/plugin-syntax-pipeline-operator","@intlify/shared","@intlify/core-base","@intlify/devtools-types","intlify", +"@intlify/vue-i18n-loader","@types/mini-css-extract-plugin","@types/webpack-merge","cache-loader","markdown-loader", +"pug-plain-loader","@vue-macros/common","ast-walker-scope","muggle-string","unplugin-utils","@pinia/colada", +"@types/nightwatch","@vue/language-core","chromedriver","faked-promise","nightwatch-helpers","de-indent", +"todomvc-app-css","foreachasync","sys","walkSync","exec-sh","outpipe","win-spawn","encrypted-attr", +"lodash.issafeinteger","waterline-schema","waterline-utils","active-record","vargs","bdd-with-opts","gulp-debug","mu2", +"promise-simple","sauce-connect-launcher","spawn-mocha-parallel","sv-selenium","web3-eth","web3-net","web3-core", +"web3-types","web3-utils","web3-errors","web3-eth-abi","web3-eth-ens","web3-eth-iban","web3-validator", +"web3-rpc-methods","web3-eth-accounts","web3-eth-contract","web3-eth-personal","web3-providers-ws","web3-rpc-providers", +"web3-providers-http","in3","ganache","web3-providers-ipc","eslint-config-base-web3","@truffle/hdwallet-provider", +"Ethereum","@solana/spl-token","@solana/web3.js","kva-email-service","micro-ed25519-hdkey","ssl-http-with-docker", +"tailwind-animation-extension","telegram-assistant","web3-react-task","sol","@webassemblyjs/ast", +"@webassemblyjs/wasm-edit","@webassemblyjs/wasm-parser","acorn-import-phases","chrome-trace-event","@codspeed/core", +"@types/neo-async","@types/xxhashjs","assemblyscript","bundle-loader","coffee-loader","hash-wasm","meriyah", +"rehype-sanitize","wast-loader","webassembly-feature","xxhashjs","lodash.partial","eslint-config-th0r", +"postcss-icss-values","@carrotsearch/foamtree","eslint-config-th0r-react","analyzer","chart","zoomable", +"@webpack-cli/info","@webpack-cli/configtest","@types/envinfo","@fastify/express","@types/on-finished","@types/sockjs", +"@types/bonjour","bonjour-service","@types/serve-index","@types/serve-static","ansi-html-community", +"@types/connect-history-api-fallback","klona","@types/sockjs-client","reloading","hot-reloading", +"@types/webpack-sources","eslint-config-shellscape","prettier-plugin-package","dts-cli","@types/flat","externals", +"typedarray-to-buffer","yaeti","networking","comet","RFC-6455","@silentbot1/nat-api","@thaunknown/simple-peer", +"@webtorrent/http-node","addr-to-ip-port","bitfield","bittorrent-dht","bittorrent-protocol","cache-chunk-store", +"chunk-store-iterator","cpus","create-torrent","cross-fetch-ponyfill","fs-chunk-store","fsa-chunk-store", +"immediate-chunk-store","join-async-iterator","load-ip-set","lt_donthave","memory-chunk-store","parse-torrent", +"random-iterate","speed-limiter","throughput","torrent-discovery","torrent-piece","uint8-util","unordered-array-remove", +"ut_metadata","ut_pex","@webtorrent/semantic-release-config","airtap-manual","airtap-system","bittorrent-tracker", +"chrome-net","disc","network-address","path-esm","webtorrent-fixtures","bittorrent","bittorrent client","mad science", +"p2p","peer-to-peer","peers","swarm","torrent","web torrent","webrtc data","web worker","a gogo","url-search-params", +"poly","buster","exorcist","microtime","cujo","Promises/A+","isexe","taffydb","unit.js","@dabh/diagnostics","logform", +"one-time","@dabh/eslint-config-populist","abstract-winston-transport","cross-spawn-async", +"hock","winston-compat","file-stream-rotator","@alcalzone/release-script","@alcalzone/release-script-plugin-license", +"daily-rotate-file","log-rotate","logrotate","winston3","bower-config","propprop","wiredep-cli","break","carriage", +"new-line","newline","return","soft","workbox-build","workbox","workboxjs","service worker","fetch requests","offline", +"file manifest","wordbreak","linewrap","writeFile","atomic","HyBi","Push","WebSocket","WebSockets","enstore", +"x-ray-crawler","x-ray-parse","scrape","is-function","parse-headers","ssf","wmf","crc-32","adler-32","codepage","fflate", +"exit-on-epipe","@sheetjs/uglify-js","markdown-spellcheck","xlsb","dbf","dif","sylk","cash-cat","codacy-coverage", +"globify","jsonpath","unminified-webpack-plugin","XML","cdata","CDATA","doctype","processing instruction","Javascript", +"transforming", +"convertor","converting","conversion","node-expat","dom-js","xmltest","DOMParser","XMLSerializer","find-cache-directory", +"func-xml","@babel/plugin-proposal-unicode-property-regex","@unicode/unicode-14.0.0","babel-plugin-array-includes", +"babel-plugin-transform-xregexp","unicode-property-value-aliases","regular expression","whitelist", +"@scion-scxml/test-framework","statechart","state machine","finite state machine","finite automata","scxml", +"interpreter","@types/deep-equal","@types/express-ws","@types/utf8","xterm-benchmark","terminal-emulator", +"jest-ts-webcompat-resolver","YAML","yaml2json","json2yaml","browserslist-generator","yargs-test-extends", +"babel-plugin-transform-inline-imports-commonjs","death","loud-rejection","repeating","request-capture-har","roadrunner", +"babel-preset-es2015-node4","babel-preset-node5","eslint-config-fb-strict","eslint-config-kittens", +"eslint-plugin-flow-vars","eslint-plugin-no-async-without-await","@yeoman/adapter","@yeoman/conflicter", +"@yeoman/namespace","@yeoman/transform","@yeoman/types","fly-import","grouped-queue","mem-fs","mem-fs-editor", +"which-package-manager","@yeoman/eslint","esmocha","sinon-test","github-username","yes","no","true", +"false","lenient","cli-list","fullname","parse-help","root-check","npm-keyword","yeoman-doctor","humanize-string", +"yeoman-character","registry-url","@jonahsnider/benchmark","pad-component","cowsay","say","zeromq","0mq","ømq","libzmq", +"binding","@types/cookie-parser","@types/express-useragent","@types/morgan","express-useragent","schemas", +"runtime types","DSL","@externs/nodejs","@types/systemjs","JSON2","char-split","express-state","firefox-profile", +"istanbul-middleware","shallow-copy","stack-mapper","tap-finished","zuul-localtunnel","browzers","bulk-require", +"zuul-ngrok","@phenomnomnominal/tsquery","Unit Testing","Storybook","motion-dom","motion-utils","@radix-ui/react-dialog", +"@thednp/dommatrix","react animation","pose","react pose","popmotion","framer","waapi","belalangkayu","rengginangbasi", +"tehtarik3","sort-array","compute-scroll-into-view","@docusaurus/module-type-aliases","@testing-library/preact", +"babel-plugin-no-side-effect-class-properties","babel-preset-react-native","flow-coverage-report", +"get-pkg-repo","enhanced input","autosuggest","typeahead","omnibox","WAI-ARIA","multiple selection","focus","keyboards", +"mice","pen","pointer","pseudos","ring","textarea","trackpad","@augment-vir/core","@date-vir/duration","deepcopy-esm", +"typed-event-target","@web/dev-server-esbuild","execute-in-browser","istanbul-smart-text-reporter","runstorm","augment", +"vir","augment-vir","toolchain","JSONC","JSX","TSX","GraphQL","@commercetools-frontend/application-components", +"@commercetools-frontend/application-config","@commercetools-frontend/assets", +"@commercetools-frontend/babel-preset-mc-app","@commercetools-frontend/mc-dev-authentication", +"@commercetools-frontend/mc-html-template","@commercetools/http-user-agent","@formatjs/cli-lib","@rollup/plugin-graphql", +"@svgr/babel-preset","@types/webpack-bundle-analyzer","@vitejs/plugin-react-swc","babel-plugin-formatjs", +"graphql-request","moment-locales-webpack-plugin","svg-url-loader","thread-loader", +"@commercetools/composable-commerce-test-data","@types/moment-locales-webpack-plugin","@vue/cli-plugin-babel", +"@vue/cli-plugin-typescript","@vue/cli-service","eslint-plugin-prettier-vue","rollup-plugin-vue","vue 3", +"@vue/cli-plugin-unit-mocha","symlink-dir","tokenize","dogstatsd","datadog","telegraf","adr", +"decision record","any decision record","architectural decision","architectural decision record","architecture decision", +"architecture decision record","software quality","bplist-parser","@types/katex","katex","tex","hyperlink", +"@type-challenges/utils","deserialization","deserialize","detect-europe-js","is-standalone-pwa","ua-is-frozen", +"client-hints","device","browser-detection","device-detection","os-detection","bot-detection","ai-detection", +"app-detection","crawler-detection","youch","@adonisjs/ace","@adonisjs/env","parse-imports","@adonisjs/fold", +"@adonisjs/hash","@adonisjs/repl","youch-terminal","@poppinss/utils","@adonisjs/config","@adonisjs/events", +"@adonisjs/health","@adonisjs/logger","@poppinss/colors","@poppinss/dumper","@poppinss/macroable","@adonisjs/bodyparser", +"@adonisjs/encryption","@adonisjs/application","@adonisjs/http-server","error-stack-parser-es","argon2","edge.js", +"@japa/assert","@japa/runner","@japa/snapshot","@japa/expect-type","@japa/file-system","@adonisjs/tsconfig", +"ts-node-maintained","@adonisjs/assembler","@types/test-console","@adonisjs/eslint-config","@adonisjs/prettier-config", +"adonisjs","@aneuhold/core-ts-api-lib","@aneuhold/core-ts-lib", +"@aneuhold/local-npm-registry","@aneuhold/main-scripts","@capacitor/cli","@trapezedev/project","@types/slice-ansi", +"resources","splash screen","webOS","@envelop/types","@envelop/instrumentation","@whatwg-node/promise-helpers", +"@ionic/cli-framework-output","@angular-eslint/eslint-plugin","@angular-eslint/eslint-plugin-template", +"@angular-eslint/schematics","ng-packagr","docz","docz-utils","docz-theme-default", +"@asdfgertyjhnpm/nesciunt-molestias-reprehenderit-occaecati","@drftgyhuji7npm/rem-sint-necessitatibus-possimus", +"@drftgyhuji7npm/repellendus-eum-et-itaque","typeerror","Reflect.getPrototypeOf","Int8Array","Array","configurable", +"minimal","descriptors","channel","matchAll","Uint32Array","Array.prototype.filter","setter","Uint16Array","exit-code", +"isConcatSpreadable","weakmap","syntaxerror","sharedarraybuffer","Object","Array.prototype.flat","toSorted","typesafe", +"preserve-symlinks","negative zero","[[Prototype]]","tester","ArrayBuffer.prototype.slice","byteOffset","zero", +"ArrayBuffer#slice","trimRight","getter","Array.prototype.contains","findLastIndex","last","Int16Array","Int32Array", +"rangeerror","Float32Array","take","workspace:*","byteLength", +"censor","Symbol.toStringTag","operating-system","coercible","Function.prototype.name","gdpr","ArrayBuffer", +"private data","Object.fromEntries","0","tostringtag","-0","negative","Array.prototype.findLast","enumerable","toobject", +"interrupts","groupBy","handlers","reuse","Float64Array","group","some","collection.es6","sameValueZero","positive", +"code points","regular expressions","findLast","robust","description","Uint8ClampedArray","pnpm9","length", +"defineProperty","RegExp#flags","valid","accessor","@smithy/types","aws-lambda","elapsed-time-logger","gulp-open", +"cupertino","pane","slide","@pouchlab/ui","chai-jquery","corejs-typeahead","doiuse","gulp-add-src","gulp-cache-bust", +"gulp-check-deps","gulp-sass-lint","gulp4-run-sequence","is-empty-object","motion-ui","sassy-lists", +"undertaker-forward-reference","vinyl-named","handlebars-helper-rel","handlebars-helper-slugify","tinygradient", +"@bokub/prettier-config","gradient", +"gradients","grommet-icons","@chromatic-com/storybook","@storybook/addon-a11y","@storybook/addon-toolbars", +"@storybook/addon-webpack5-compiler-babel","@storybook/manager-api","@storybook/source-loader", +"@testing-library/testcafe","babel-plugin-transform-imports","chromatic","grommet-theme-hpe","jest-styled-components", +"react-shadow","tarball-extract","testcafe-react-selectors","grommet.io","grommetux","theming","sticker sheets", +"design patterns","app templates","atomic design","WCAG 2.1","keyboard navigation","screen reader tags","interaction", +"graphical user interface","dart-sass","grunt-jekyll","zepto","lightbox","@next/font","axe-playwright", +"@storybook/test-runner","@base-ui-components/react","@storybook/addon-webpack5-compiler-swc","find-process", +"@types/pretty","chromium","launch-image","splashscreen","splash-screen","image-generation","mstile","pwa-assets", +"@apitools/openapi-parser","base64-arraybuffer","xml-but-prettier","babel-plugin-template-html-minifier","inspectpack", +"Custom Element","Web Component","swagger ui","openapi ui","openapi themes","openapi viewer","openapi renderer", +"openapi explorer","swagger themes","animatable","@react-native/babel-preset","collapsible","accordion", +"rollup-plugin-local-resolve","swipeable","customizable","touchscreen","listview","swipe-to-delete","swipe-actions", +"use-composed-ref","use-latest","@preconstruct/cli","autosize","grow","md-writer","@types/common-tags", +"decimal.js-light","victory-vendor","@recharts/devtools","@storybook/builder-vite","@storybook/react-vite", +"@stryker-mutator/typescript-checker","@stryker-mutator/vitest-runner","@types/d3-interpolate","@types/d3-time-format", +"babel-plugin-dev-expression","eslint-config-airbnb-extended","eslint-plugin-react-perf","vitest-axe", +"@riotjs/dom-bindings","@riotjs/compiler","@riotjs/prettier-config","@riotjs/register","@riotjs/util", +"@wdio/mocha-framework","@wdio/sauce-service","bianco.attr","bianco.query","cumpa","curri","eslint-config-riot", +"rollup-plugin-riot","custom tags","minimalist","data binding","riotjs","riot.js","testcafe-browser-provider-saucelabs", +"sortable","reorder","ng-sortable","@use-gesture/vanilla","tdesign-icons-vue-next","@rollup/plugin-eslint", +"@rollup/plugin-url","@soerenmartius/vue3-clipboard","@tdesign/site-components","@tdesign/theme-generator","dom-parser", +"lodash.upperfirst","qrcode.vue","rollup-plugin-ignore-import","rollup-plugin-static-import","rollup-plugin-styles", +"tdesign-publish-cli","vite-plugin-tdoc", +"tdesign","babel-plugin-html-tag","postcss-css-variables","postcss-hexrgba","postcss-prefixer", +"rollup-plugin-module-replacement","rollup-plugin-string","uploader","preview","chunk","image-edit","sockets","ready", +"win32","gulp-convert-css-var","picklog","wechat","weixin","@formatjs/intl-localematcher","@napi-rs/simple-git", +"@shikijs/twoslash","@theguild/remark-mermaid","better-react-mathjax","estree-util-value-to-estree", +"react-compiler-runtime","react-medium-image-zoom","remark-math","remark-reading-time","remark-smartypants", +"unist-util-remove","unist-util-visit-children","@types/negotiator","esbuild-plugin-svgr", +"esbuild-react-compiler-plugin","make-synchronized","make-synchronous","sync-threads","synchronize","fs-fixture", +"@ibyar/decorators","aurora","ibyar","expressions","template-syntax","template-expression","scope","evaluation", +"command-center","rich-text-editor","tiptap","@types/babel__preset-env","eslint-plugin-no-null","allure","codeceptjs", +"testops","@intlayer/chokidar","@intlayer/config","@intlayer/core","@intlayer/types","intlayer","@types/cls-hooked", +"@utils/ts-config","@utils/ts-config-types","@utils/tsdown-config", +"user-agents","unist-util-remove-position","@bugsnag/core","@bugsnag/delivery-react-native", +"@bugsnag/plugin-console-breadcrumbs","@bugsnag/plugin-network-breadcrumbs","@bugsnag/plugin-react", +"@bugsnag/plugin-react-native-client-sync","@bugsnag/plugin-react-native-event-sync", +"@bugsnag/plugin-react-native-global-error-handler","@bugsnag/plugin-react-native-hermes", +"@bugsnag/plugin-react-native-session","@bugsnag/plugin-react-native-unhandled-rejection","iserror","bugsnag", +"stability","@enact/i18n","ilib","eslint-plugin-astro","control-panel","backendless-request","backendless-rt-client", +"backendless-console-sdk","bannerize","backendless.com","ahooks","better-scroll","@zarm-design/bem","@use-gesture/react", +"@zarm-design/icons","@floating-ui/react-dom-interactions","@zarm-design/cli","zarm-ui","zarm-mobile","@enact/spotlight", +"@enact/docs-utils","@enact/ui-test-utils","eslint-config-enact-proxy","react select","react dropdown", +"accessible react select","accessible","@reporters/github","titanium-sdk","tidev","iphone","@antora/expand-path-helper", +"antora","static site","web publishing","@asyncapi/generator-components","@asyncapi/generator-helpers", +"@asyncapi/generator-hooks","@asyncapi/multi-parser","fs.extra","global-dirs","requireg","unixify","react-loadable", +"combine-promises","@docusaurus/babel","@docusaurus/logger","@docusaurus/bundler","react-router-config", +"@docusaurus/mdx-loader","@docusaurus/utils-common","@docusaurus/utils-validation","react-loadable-ssr-addon-v5-slorber", +"@total-typescript/shoehorn","@types/react-router-config","parcel-bundler","Vue","unstyled","@nestjsx/crud-request", +"@nestjsx/util","crud-generator","frameworks","@zmotivat0r/o0","p-filter","p-locate","dependency-management", +"continuous-integration","npmjs","package-manager","gatsby","hugo","netlify","core-js-pure","jest-location-mock", +"@types/module-alias","webpack-plugin-serve","hotreload","@pothos/test-utils","pothos","yalc","@strapi/core", +"@strapi/i18n","@strapi/admin","@strapi/email","@strapi/types","@strapi/utils","@strapi/logger","@strapi/upload", +"@types/nodemon","@strapi/openapi","@strapi/database","@strapi/cloud-cli","@strapi/generators","get-latest-version", +"@strapi/permissions","@strapi/data-transfer","@strapi/content-manager","@strapi/content-releases", +"@strapi/review-workflows","@strapi/typescript-utils","@strapi/content-type-builder","@strapi/ts-zen", +"eslint-config-custom","@types/webpack-hot-middleware","strapi","cmf","content management framework","admin panel", +"koajs","jam","graphqL","infrastructure","self hosted", +"lernajs","snake-case","@types/svg-parser","http-status-emojis","tsparticles-plugin","@tsparticles/interaction", +"@tsparticles/move","tsparticles-shape","@tsparticles/updater","@aws-sdk/lib-storage","@aws-sdk/s3-presigned-post", +"express-interceptor","express-prom-bundle","grant","tus-js-client","webdav","resumable uploads","tus","dropbox", +"webpack-chain","@vuepress/types","vue-server-renderer","@vue/babel-preset-app","vuepress-plugin-container", +"vuepress-html-webpack-plugin","@types/diacritics","vuepress-plugin-smooth-scroll","detect-browser", +"@walletconnect/types","@walletconnect/safe-json","@walletconnect/window-getters","@walletconnect/window-metadata", +"@ethersproject/address","@types/lodash.isnumber","wallet","walletconnect","jsonrpc","cryptocurrency","dapp", +"@walletconnect/utils","@walletconnect/crypto","@walletconnect/legacy-types","@walletconnect/legacy-utils", +"@types/qrcode","@walletconnect/legacy-client","@walletconnect/jsonrpc-provider", +"@walletconnect/jsonrpc-http-connection","ethereum-test-network","@wordpress/element","wordpress","gutenberg","center", +"jasmine-co","jasmine-ts","selenium-mock","body scroll","body scroll lock","react scroll lock","react scroll","freeze", +"disable","overflow","vanilla-js","tablet", +"bsl","broccoli-node-info","resolve-path","@types/console-ui","@types/esm","@types/findup-sync","@types/sane", +"@types/underscore.string","broccoli-node-api","mocha-jshint","babel-plugin-optimize-starts-with","replacement","html4", +"invalid","color-name","is-whitespace","verb","mediaquery","csstree","completion","apollo-link-context","decap-cms", +"aws-cognito","what-the-diff","gotrue-js","git-gateway","gateway","napa","detector","tinydate","tweezer.js", +"medium-zoom","autoprefixer-stylus","rollup-plugin-async","eslint-plugin-playwright","creator","cp-file","yargonaut", +"docsify-server-renderer","cli-prompts-test","rollup-plugin-executable","ssr-window","eslint-config-standard-react", +"prettier-check","array-hyper-unique","crlf-normalize","book","books","chapter","comic","epub-maker","epub-maker2", +"node-novel","novel","volume","escaping","interpolate","goat","🐐","color-logger","ice-cap","esdoc-importpath-plugin", +"ECMAScript6","ECMAScript2015", +"ECMAScript7","ECMAScript2016","ECMAScript8","ECMAScript2017","proposal","mdc","developer","inter-element","white-space", +"whitespace","tagname","force","graceful-shutdown","http-shutdown","http-terminate","prometheus","icss", +"inferno-hyperscript","vnode","createVNode","gulp-rtlcss","postcss-preset-infima","dark mode","bootswatch","docstrap", +"@angular-devkit/build-angular","angular-eslint","github-files-fetcher","@stitches/react","animate-sass", +"postcss-trolling","vite-plugin-svgr","preview jest","log-utils","engine-base","engine-handlebars","lo","lo-dash", +"serve-index-75lb","lws-middleware","micromark-extension","tagfilter","dangerous","grunt-jasmine-node","mobilegrade", +"sniff","nth-child","nth","is-alphanumerical","is-decimal","is-hexadecimal","cssinjs", +"@wdio/selenium-standalone-service","babelrc-rollup","queryselector","shadowdom","gulp-streamify","rc-tools","tappable", +"hammer","@actions/core","@oclif/plugin-autocomplete","toposort","@readme/better-ajv-errors", +"@readme/standards","@types/toposort","@types/unzipper","goober","jest-esm-jsx-transform","parcel-plugin-css-to-string", +"use-throttled-effect","hex","color-picker","wai-aria","smart-tv","smarttv","simple-routing","nano-equal", +"shallow-equal-fuzzy","shouldComponentUpdate","quicklook","image-gallery","image-viewer","react-native-svg", +"progressindicator","circle","pie","progressbar","indeterminate","d3-interpolate-path","@react-native-community/bob", +"@storybook/react-native","eslint-plugin-react-native","youtube-iframe","iframe","@atomico/rollup-plugin-sizes", +"git-branch-is","react-spring","@bedrock-layout/use-forwarded-ref","@codecov/vite-plugin","@types/body-scroll-lock", +"get-nonce","@theuiteam/lib-builder","@tsparticles/shape-text","@tsparticles/updater-roll","@tsparticles/updater-tilt", +"@tsparticles/updater-wobble","@tsparticles/plugin-emitters","@tsparticles/updater-destroy", +"@tsparticles/updater-twinkle","@tsparticles/plugin-absorbers","@tsparticles/interaction-external-trail", +"@tsparticles/plugin-emitters-shape-circle","@tsparticles/plugin-emitters-shape-square","useRef","createRef", +"merge refs","detect-node-es","@types/enzyme-adapter-react-16","code spliting","sidecar","mutation-observer", +"copy-text-to-clipboard","svelte-loader","scss-loader","perfect-scroll","vue-perfect-scroll","vue-scroll", +"vue-scrollbar","vue-plugin","滚动条","@types/eslint-plugin-prettier","@types/form-data","is-uuid","rewrite-imports", +"serviceworker","convict","antora-component","@applitools/test-utils","applitools","eyes-sdk","test automation", +"visual regression","@dataui/crud-request","@dataui/crud-util","blob-to-buffer","drag drop","drag & drop", +"@expo/spawn-async","@parcel/core","@parcel/fs","@parcel/package-manager","@parcel/watcher","mnemonic-id", +"node-object-hash","@plasmohq/parcel-config","@plasmohq/parcel-core","@plasmohq/init","@plasmo/config", +"@plasmo/constants","@plasmo/utils","@plasmo/framework-shared","browser-extensions","@iconify/react","@types/events", +"static-server","@storybook/cli","less-plugin-sass2less","@storybook/addon-mdx-gfm","music","player","mse","eme", +"@arethetypeswrong/core","ts-expose-internals","dlv","dset","flattie","fontace","unifont","magicast","piccolore", +"unstorage","zod-to-ts","xxhash-wasm","yocto-spinner","@oslojs/encoding","@astrojs/compiler","@astrojs/telemetry", +"@capsizecss/unpack","http-cache-semantics","@astrojs/internal-helpers", +"deterministic-object-hash","@types/dlv","rehype-toc","astro-scripts","remark-code-titles","@types/common-ancestor-path", +"@types/http-cache-semantics","strata","fuzzysearch","sander","@web/test-runner-core","testrunner","ac-colors","hsv", +"lch","color-names","cmyk","mix","harmonies","expressots","clean-architecture","typescript-framework", +"@pagefind/default-ui","bcp-47","mdast-util-directive","linkedom","withastro","astro-integration","piña","pigna", +"tabbable","@floating-ui/utils","@radix-ui/react-checkbox","@radix-ui/react-icons","vitest-browser-react", +"@internal/test-utils","code-blocks","expressive-code","syntax-highlighting","netlify-cms","@types/deep-eql", +"@amaui/ui-react","amaui","firefoxos","onesy","@react-native-macos/virtualized-lists","@tsparticles/plugin-easing-quad", +"@tsparticles/updater-stroke-color","@tsparticles/interaction-external-pause","@tsparticles/interaction-external-bubble", +"@tsparticles/interaction-external-attract","@tsparticles/interaction-external-connect","@types/react-router", +"@backstage/backend-plugin-api","@backstage/config","@backstage/integration","express-promise-router", +"@backstage/backend-test-utils","@backstage/catalog-model","@backstage/cli","@backstage/plugin-catalog-common", +"@backstage/plugin-catalog-node","backstage","ci/cd", +"immobiliare","immobiliarelabs","rgv","@asteasolutions/zod-to-openapi","@trpc/server", +"eslint-import-resolver-custom-alias","resolve-tspaths","event-driven","blaze","qs-esm","dataloader","bson-objectid", +"console-table-printer","@payloadcms/translations","graphql-http","@types/range-parser","@monaco-editor/react", +"@payloadcms/eslint-config","@hyrious/esbuild-plugin-commonjs","content management","graphQL","@cfcs/core","@egjs/axes", +"@egjs/component","@egjs/imready","@egjs/list-differ","@daybrush/jsdoc","@egjs/flicking-plugins","@egjs/release-helper", +"@types/resize-observer-browser","egjs-jsdoc-template","html-to-react","http-serve","jsdoc-to-mdx", +"karma-typescript-es6-transform","postcss-clean","print-coveralls","print-sizes","pvu","rollup-plugin-prototype-minify", +"ts-mock-imports","ttypescript","flicking","egjs","body scroll lock upgrade","@ucast/mongo2js","@casl/dx","permissions", +"abac","rbac","ibac","cancan","@humanwhocodes/gitignore-to-minimatch","peowly","list-dependents-cli","rslog", +"@rslib/core","@modern-js/rslib","@modern-js/types","@scripts/rstest-config","modern","modern.js","@scripts/build", +"@scripts/jest-config", +"import-without-cache","unconfig-core","unrun","@publint/pack","@sxzz/eslint-config","@sxzz/prettier-config", +"@sxzz/test-utils","@unocss/eslint-plugin","@vitejs/devtools","rolldown-plugin-dts-snapshot", +"rolldown-plugin-require-cjs","unocss","unplugin-ast","unplugin-lightningcss","unplugin-unused","@types/decompress", +"@ckeditor/ckeditor5-comments","@ckeditor/ckeditor5-track-changes","CKEditor","WYSIWYG","WYSIWYW","rich-text", +"fast-equals","glob2regx","ckeditor5-collaboration","@ckeditor/ckeditor5-revision-history", +"@ckeditor/ckeditor5-operations-compressor","@ckeditor/ckeditor-cloud-services-collaboration","@grammyjs/types", +"deno2node","@udecode/plate-utils","@loki/integration-react","@loki/integration-react-native","@loki/integration-vue", +"@loki/runner","@loki/target-chrome-app","@loki/target-chrome-docker","@loki/target-native-android-emulator", +"@loki/target-native-ios-simulator","storybook-addons","react-storybook","visual testing","emoji-datasource", +"@fastify/static","graphql-jit","mqemitter","single-user-cache","tiny-lru","@matteo.collina/snap", +"@types/isomorphic-form-data","graphql-ws","blue-tape","events.once","xhr2-cookies","convex","mock-spawn", +"@fastify/pre-commit","@reporters/silent","desm","gulp-better-rollup","Leaflet","Maps","Gesture","Handling", +"two","fingers","@tanstack/vue-virtual","@testing-library/vue","@fast-check/vitest","@types/eslint-config-prettier", +"prettier-plugin-pkg","prettier-plugin-sh","algo","@oxc-node/cli","eslint-plugin-redos-detector","tsm","bundle-size", +"@iconify/vue","@internationalized/date","@internationalized/number","@nuxt/fonts","@nuxt/icon","@nuxt/kit", +"@nuxt/schema","@nuxtjs/color-mode","@tanstack/vue-table","@tiptap/core","@tiptap/extension-bubble-menu", +"@tiptap/extension-code","@tiptap/extension-collaboration","@tiptap/extension-drag-handle", +"@tiptap/extension-drag-handle-vue-3","@tiptap/extension-floating-menu","@tiptap/extension-horizontal-rule", +"@tiptap/extension-image","@tiptap/extension-mention","@tiptap/extension-node-range","@tiptap/extension-placeholder", +"@tiptap/markdown","@tiptap/pm","@tiptap/starter-kit","@tiptap/suggestion","@tiptap/vue-3","@vueuse/shared", +"colortranslator","embla-carousel-auto-height","embla-carousel-auto-scroll","embla-carousel-autoplay", +"embla-carousel-class-names","embla-carousel-fade","embla-carousel-vue","embla-carousel-wheel-gestures","knitwork", +"motion-v","reka-ui","tailwind-variants","unplugin-auto-import","unplugin-vue-components","vaul-vue", +"vue-component-type-helpers","@nuxt/eslint-config","@nuxt/module-builder","@nuxt/test-utils","@tanstack/table-core","ai", +"vitest-environment-nuxt","nuxt-ui","ui-framework", +"country-code","country-codes","country-flags","country-names","country-telephone-codes","country-telephone-prefixes", +"countries","country-iso-codes","iso","iso-codes","iso-country-codes","iso-country-names","iso-country-telephone-codes", +"iso-country-telephone-prefixes","iso-countries","emoji-flags","phone-codes","phone-prefixes","telephone-codes", +"telephone-prefixes","world-countries","world-country-codes","world-country-flags","world-country-names", +"world-country-telephone-codes","world-country-telephone-prefixes","world-iso-codes","world-iso-country-codes", +"world-iso-country-names","@zoroaster/assert","@zoroaster/mask","alamode","@a-la/fixture-alamode","@a-la/fixture-babel", +"@artdeco/clean-stack","@artdeco/erte","@artdeco/scripts.json","@depack/render","@wrote/exists","@wrote/rm", +"@zoroaster/reducer","@zoroaster/types","argufy","catchment","documentary","erotic","eslint-config-artdeco", +"makepromise","promto","reloquent","snapshot-context","spawncommand","temp-context","usually","yarn-s","IDE", +"suggestions","intellisense","assistant-cloud","@assistant-ui/tap","@assistant-ui/store","@radix-ui/primitive", +"@radix-ui/react-compose-refs","@radix-ui/react-context", +"@radix-ui/react-dropdown-menu","@radix-ui/react-popover","@radix-ui/react-primitive","@radix-ui/react-use-callback-ref", +"@radix-ui/react-use-escape-keydown","assistant-stream","@assistant-ui/x-buildutils","radix-ui","ai-sdk","assistant", +"openai","chatbot","copilot","ai-chat","ai-chatbot","ai-assistant","ai-copilot","chatgpt","gpt4","gpt-4", +"conversational-ui","conversational-ai","graphiql","radash","@a2a-js/sdk","js-tiktoken","@lukeed/uuid","hono-openapi", +"@isaacs/ttlcache","@ai-sdk/provider-v5","@ai-sdk/provider-v6","@ai-sdk/ui-utils-v5","@mastra/schema-compat", +"@ai-sdk/provider-utils-v5","@ai-sdk/provider-utils-v6","@ai-sdk/azure","@ai-sdk/openai","@internal/lint", +"@internal/ai-v6","@internal/ai-sdk-v4","@internal/ai-sdk-v5","@internal/types-builder","@internal/external-types", +"@openrouter/ai-sdk-provider","llm","llms","agents","vectorstore","embeddings","rag","evals","otel","@tailwindcss/ui", +"@types/sortablejs","vue-next","draggable","drag-and-drop","vue-draggable","kanban","composition-api", +"@oxc-project/runtime","hmac256","hmac512","@ant-design/pro-components", +"@anthropic-ai/sdk","@azure-rest/ai-inference","@cfworker/json-schema","@clerk/localizations","@clerk/nextjs", +"@clerk/themes","@cyntler/react-doc-viewer","@fal-ai/client","@formkit/auto-animate","@google/genai", +"@huggingface/inference","@icons-pack/react-simple-icons","@khmyznikov/pwa-install","@langchain/community", +"@lobechat/agent-runtime","@lobechat/const","@lobechat/context-engine","@lobechat/database", +"@lobechat/electron-client-ipc","@lobechat/electron-server-ipc","@lobechat/fetch-sse","@lobechat/file-loaders", +"@lobechat/model-runtime","@lobechat/observability-otel","@lobechat/prompts","@lobechat/python-interpreter", +"@lobechat/utils","@lobechat/web-crawler","@lobehub/analytics","@lobehub/charts","@lobehub/chat-plugin-sdk", +"@lobehub/chat-plugins-gateway","@lobehub/editor","@lobehub/icons","@lobehub/market-sdk","@lobehub/tts","@lobehub/ui", +"@neondatabase/serverless","@next/third-parties","@opentelemetry/exporter-jaeger","@opentelemetry/winston-transport", +"@react-pdf/renderer","@react-spring/web","@saintno/comfyui-sdk","@serwist/next","@t3-oss/env-nextjs","@trpc/client", +"@trpc/next","@trpc/react-query","@vercel/analytics","@vercel/edge-config","@vercel/functions","@vercel/speed-insights", +"@virtuoso.dev/masonry","@xterm/xterm","brotli-wasm","countries-and-timezones","dexie","drizzle-orm","drizzle-zod", +"gpt-tokenizer","i18next-resources-to-backend","js-sha256","jsonl-parse-stringify", +"langchain","langfuse","langfuse-core","lucide-react","markdown-to-txt","model-bank","modern-screenshot", +"next-mdx-remote","nextjs-toploader","nuqs","officeparser","oidc-provider","ollama","partial-json","path-browserify-esm", +"pdf-parse","plaiceholder","posthog-js","pwa-install-handler","react-confetti","react-hotkeys-hook","react-layout-kit", +"react-pdf","react-rnd","react-scan","react-virtuoso","react-wrap-balancer","resolve-accept-language","rtl-detect", +"ssrf-safe-fetch","svix","tokenx","ts-md5","unstructured-client","use-merge-value","word-extractor","zustand-utils", +"@huggingface/tasks","@lobehub/i18n-cli","@lobehub/lint","@lobehub/market-types","@lobehub/seo-cli", +"@next/bundle-analyzer","@peculiar/webcrypto","@types/chroma-js","@types/crypto-js","@types/ip","@types/numeral", +"@types/oidc-provider","@types/pdfkit","@types/pg","@types/rtl-detect","dbdocs","dpdm-fast","drizzle-dbml-generator", +"drizzle-kit","eslint-plugin-mdx","fake-indexeddb","just-diff","mcp-hello-world","remark-mdx","serwist","vercel-ai", +"azure-openai", +"visual-model","tts","stt","modelcontextprotocol","mcp","context7","vibe-coding","developer tools", +"@types/istanbul-lib-report","@walletconnect/time","@walletconnect/events","label","better-npm-run","clamp.js", +"karma-fixture","karma-opera-launcher","minimalistic","@types/webrtc","detectrtc","install-peers-cli","prepend-file", +"camera","webcam","cam","webRTC","react-native-worklets","visionOS","tvOS","macOS","cpp","swift","jsi","@antfu/ni", +"@dotenvx/dotenvx","@types/validate-npm-package-name","stringify-object","@types/stringify-object","virtual-core", +"datagrid","2fa","hotp","topt","google authenticator","authenticator","one time password","one-time-password","2 factor", +"survey","surveyjs","survey-library","form-component","form-rendering","survey-renderer","dynamic-form", +"interactive-form","form-library","form-management","questionnaire","data-collection","data-validation", +"input-validation","ui-component","schema-form","base64-stream", +"bplist-creator","@mrleebo/prisma-ast","@electric-sql/pglite-socket","@prisma/query-plan-executor","common-stuff", +"accelerate","@aws-lite/client","@aws-lite/s3","@architect/eslint-config","mock-tmp","tap-arc","cloudfunctions", +"apigateway","api gateway","@webgpu/types","@tinymce/tinymce-react","n1ed","@headlessui/tailwindcss","@heroicons/react", +"@tailwindplus/elements","@types/sharp","react-docgen-typescript","react-lib-tools","rollup-preserve-directives", +"ts-blank-space","vitest-fail-on-console","windowed","@extend-chrome/messages","@extend-chrome/storage","@types/chrome", +"@types/jsesc","vite-plugin-inspect","chrome-extension","webext","webextension","browser-extension","isoformat", +"interval-tree-1d","htl","@types/d3","apache-arrow","d3-geo-projection","@observablehq/stdlib","string-split-by", +"cargo-cp-artifact","skia","offscreen","compositing","vulkan","metal","flmngr","imgpen","unsplash","@types/listr", +"markdown-to-pdf","pdf-generation","assignments","homework","html-to-pdf","@applitools/core","@applitools/logger", +"@applitools/req","@applitools/snippets","@applitools/image", +"@applitools/spec-driver-webdriver","@antora/user-require-helper","kapok-js","@asciidoctor/core", +"@antora/asciidoc-loader","navigation","asciidoc","pod-install","pinch-to-zoom","pinch","@farmfe/cli","@farmfe/core", +"bun-types-no-globals","eslint-plugin-format","unloader","redirects","@antora/file-publisher","publisher", +"vite-plugin-dts-bundle-generator","vite-plugin-pages","vite-plugin-typescript","vite-plugin-typescript-transform", +"box2d","game","physics","2d","replace-in-files-cli","sandboxed-module","oxc","exact-versions","turborepo", +"version-linter","@jsdevtools/ez-spawn","@napi-rs/magic-string","@pnpm/list","@pnpm/workspace.find-packages", +"@types/treeverse","@types/yarnpkg__lockfile","fast-npm-meta","@nolyfill/internal","@nolyfill/promise.any","fumadb", +"kysely","@orpc/zod","@orpc/otel","neverthrow","@c15t/logger","@orpc/server","@orpc/openapi","@orpc/contract", +"@c15t/translations","@opentelemetry/sdk-node","kysely-pglite","@c15t/vitest-config","@libsql/kysely-libsql", +"@c15t/typescript-config","consent","privacy","ccpa","lgpd","self-host","consent-management","user-privacy", +"data-protection", +"cookie-banner","consent-management-platform","cmp","consent-banner","@ampproject/rollup-plugin-closure-compiler", +"@fezvrasta/tsc-silent","@khanacademy/flow-to-ts","babel-plugin-inline-replace-variables","poster", +"rollup-plugin-flow-entry","popper","positioning engine","anime","anime.js","timeline","easings","cubic-bezier", +"splitText","WAAPI","Canvas","WebGL","decrypt","ev-emitter","fizzy-ui-utils","get-size","imagesloaded","unidragger", +"eslint-plugin-metafizzy","jquery-bridget","flick","gulp-wrap-commonjs","lex","maths","persist-schema","jugglingdb", +"panorama","rip-out","eslint-config-godaddy-react","setup-env","compatiblity","rollup-plugin-eslint", +"rollup-plugin-sass","testit","gethub","bits","iec"], +[5,293,294], +[0,-3015,-3016,-3017,-3018], +1771718400000, +1771113600000, +1770508800000, +[0], +1772323200000, +1772409600000, +1772064000000, +1771804800000, +[1,24,619], +[1,3,621], +[0,-519,-2384,-2541], +[0,-3040,-3052,-1031,-2006,-2019,-2410], +[0,-3095,-3098,-3099,-3161,-3100,-2006,-3159,-3160,-2494], +[1,3,440], +[1,3,1832], +[0,-3488,-681,-3489,-3490,-3491,-3492], +[1,3,1826], +[0,-3220], +[0,-1889], +[0,-424], +[0,-3557,-3018], +true, +[1,3,622], +[0,-1654], +[0,-2006,-2019], +[0,-4298,-4300,-2319], +[1,3,1783], +[0,-2322], +[1,24,585], +[0,-2387], +[0,-1548], +[0,-531], +[0,-7841], +[0,-2410], +[0,-932], +[0,-44], +[0,-1787], +[0,-2006], +[0,-856,-3262,-2476,-2816], +[1,3,674], +[0,-18,-19,-471,-487,-498,-504,-577,-588,-590,-591,-592,-603,-604,-605,-5421,-606,-607,-608,-609,-610,-5422,-611,-612, +-613,-5423,-626,-631,-643,-660,-663,-5424,-670,-676,-5425,-5426,-5427,-5428,-5429,-804,-830,-833,-836,-998,-5430,-5431, +-1019,-1020,-1095,-1121,-5432,-1280,-1282,-1307,-1308,-5433,-1378,-1511,-1512,-1513,-5434,-1516,-1584,-1596, +-5435,-1615,-5436,-1648,-1679,-1684,-1695,-1720,-1799,-5437,-1803,-1822,-1869,-1886,-5438,-1994,-2067,-5439,-2158,-2169, +-5440,-5441,-2196,-2201,-2203,-2209,-2217,-2237,-5442,-2238,-2252,-5443,-2256,-2290,-5444,-2296,-2298,-2309,-2348,-2366, +-2370,-5445,-5446,-5447,-2426,-5448,-5449,-2527], +[0,-18,-19,-676,-1994,-2426], +[1,3,1519], +[1,3,2972], +[0,-2501], +[0,-9219], +[0,-775,-1889,-3583], +[0,-23,-3219], +[1,3,1044], +[1,3,1396], +[1,3,1875], +[0,-519,-2541], +[0,-1654,-1941], +[0,-4633,-3445,-3100,-7566], +[0,-15394,-15395,-4276,-15396,-3162,-6935,-2494,-770,-15397,-15398], +[0,-3488,-681,-3489,-3518,-3492], +[0,-1934], +[1,3,623], +[1,24,645], +[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3960,-3262,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966, +-3967,-1965,-3968,-1966,-3969,-2063,-3970,-3971,-3108,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], +[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340], +[0,-2476,-3944,-3100,-4590,-3098,-4591,-4592,-4593,-4594], +[1,3,1380], +[0,-18,-19,-471,-498,-504,-577,-588,-590,-591,-592,-603,-604,-605,-606,-607,-608,-609,-5423,-626,-631,-660,-663,-670,-676, +-5426,-5429,-804,-830,-833,-836,-998,-5431,-1095,-1121,-5432,-1280,-1282,-1308,-5433,-1511,-1512,-1513,-1516,-1584,-1596, +-1615,-1648,-1679,-1684,-1695,-1720,-1799,-5437,-1803,-1822,-1869,-1886,-5438,-1994,-2169,-5441,-2201,-2203, +-2209,-2217,-2237,-5442,-2238,-2252,-2256,-2290,-5444,-2296,-2298,-2309,-2348,-2366,-2370,-5445,-5446,-5447,-2426,-5448, +-5449], +[0,-18,-19,-467,-471,-487,-498,-504,-6147,-575,-577,-588,-590,-591,-592,-6148,-603,-604,-605,-5421,-606,-607,-608,-609, +-610,-5422,-611,-612,-613,-6149,-5423,-625,-626,-6150,-631,-6151,-643,-660,-663,-5424,-670,-675,-676,-5425,-5426,-6152, +-6153,-5427,-5428,-5429,-804,-830,-833,-6154,-836,-842,-890,-998,-5430,-6155,-5431,-1019,-1020,-1035, +-1073,-1084,-6156,-1095,-1117,-1120,-1121,-5432,-1279,-1280,-1282,-1295,-1307,-1308,-1314,-6157,-5433,-1378,-6158,-6159, +-1511,-1512,-1513,-5434,-1516,-6160,-1584,-6161,-1596,-5435,-1615,-5436,-1648,-1677,-6162,-6163,-1678,-1679,-1684,-1695, +-6164,-1720,-1799,-5437,-1803,-1822,-6165,-1865,-1869,-1886,-5438,-1994,-2067,-5439,-6166,-2158,-2159,-2164,-2169,-5440, +-6167,-5441,-6168,-2196, +-2201,-2203,-2208,-2209,-2217,-2221,-2224,-2225,-2237,-5442,-6169,-2238,-2241,-2252,-5443,-2256,-6170,-2288,-2290,-5444, +-2296,-2298,-2309,-2315,-2348,-6171,-6172,-2366,-2370,-5445,-5446,-5447,-2426,-2431,-2458,-5448,-6173,-6174,-2496,-2497, +-5449,-6175,-2527], +[1,3,2681], +[0,-1654,-2198], +[0,-2319], +[0,-2460], +[0,-4864,-3214,-11467,-11468,-5270,-5271,-15723,-3634], +[1,3,308], +[0,-719], +[0,-4362], +[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, +-5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, +-5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189], +[1,3,1342], +[1,3,1453], +[1,3,1877], +[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], +[1,3,2054], +[0,-1754], +[0,-2471], +[0,-3214,-8058,-8059,-4004,-3476,-2006,-1062,-3634,-8060,-8061,-4873,-1654], +[0,-2250], +[0,-5334], +[0,-1202,-1654], +[0,-1406], +[0,-1931], +[0,-3037], +[0,-3037,-652,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-3161,-3481,-3098,-3162,-14919], +[0,-1967], +[0,-2410,-2409,-11398,-5406,-3691,-5728,-3690,-10796,-15307,-3445,-15308], +[1,3,10143], +[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, +-5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, +-5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15365], +[0,-3577,-3100,-2808,-5157,-5158,-659,-5159,-5160,-5161,-5155,-5164,-5165,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775, +-3264,-5180,-5181,-5182,-15367], +[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, +-5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, +-5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15368], +[1,3,10608], +[0,-23], +[0,-3510,-3488,-681,-3489,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161], +[1,24,583], +[0,-1599,-3670,-3671,-3672,-856,-3673,-3674,-3262], +[0,-3770,-906,-2006,-775,-3771], +[0,-2080], +[0,-519,-525,-4005,-4037,-1001,-4038,-4039,-4040,-1412,-1415,-1449,-1654,-4041,-4042,-1989,-4043,-4044,-4045,-2319,-2322, +-4004,-3634,-2410,-2490], +[0,-703], +[0,-475,-856,-3262,-4258,-4259,-3690,-4260,-4261], +[0,-3158,-3095,-3098,-3099,-3161,-3100,-2006,-3159,-3160], +[0,-5014,-5015,-5016,-5017,-5018,-5019,-5020,-5021,-5022,-5023,-5024], +[0,-2469,-3664], +[0,-3262,-5355,-2501,-2006,-5371,-5372,-1599,-3098,-856], +[0,-1654,-664], +[0,-3037,-519,-2384,-2541], +[0,-567], +[0,-2267], +[0,-2541], +[0,-7475], +[0,-3136,-3037,-427,-428,-932,-940,-7476,-948,-958,-1415,-1942,-2375,-2391,-2402,-2410], +[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-427], +[0,-2320,-2322], +[0,-932,-1654], +[0,-1645], +[0,-932,-937,-1001,-1654,-1788], +[0,-1127,-1134,-1144,-1143,-1146], +[0,-1127,-1134,-1143,-1144,-1146], +[0,-664,-1654], +[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788], +[0,-756,-932,-940,-1344,-1415,-1534,-1889,-1942], +[0,-3037,-2410], +[0,-664,-1654,-2379,-2501,-21,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40,-15393,-42], +[0,-8096,-14182,-652,-725,-1942,-2094,-2100,-2125,-2322,-2399,-2410,-2541], +[0,-12449,-12613,-13616,-13615,-8897,-2363,-3214,-2410,-2006,-2476,-2299,-9608], +[0,-3951,-2410], +[1,3,313], +[0,-3183,-525,-3184,-3185,-3186,-526,-3116], +[0,-3183,-525,-3205,-3206,-3184,-3207,-3208,-3209,-3185,-3186,-3210,-527,-3116], +[0,-24], +[0,-753,-2082], +[0,-3417,-3418,-3419,-3420,-3421,-3422,-3423,-714,-1028,-1039,-1107,-1442,-1449,-3424,-1600,-3245,-1601,-3425,-3426,-1602, +-3427,-3428,-3429,-3430,-1616,-1689,-3431,-3432,-1955,-1974,-1978,-3433,-3434,-2446,-3435,-2550], +[0,-2281,-3436,-2284], +[0,-687,-1599,-3437,-3438,-3328,-3439,-3440,-3441,-856,-3262], +[0,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161,-3510,-3488,-681,-3489], +[0,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161,-3488,-681,-3489,-3518,-3492], +[0,-739,-721,-687], +[0,-3499,-475,-856,-3098,-3551,-3552,-3015,-1599], +[0,-775,-2162,-3575,-3576,-3577,-3161,-3578], +[0,-3634,-3440,-793,-3635,-3636], +[0,-3812,-3813,-3814,-3815,-3816,-3817,-856,-3818], +[0,-3821,-3822,-3823,-3824,-3825,-3826,-2006,-2019], +[0,-3836], +[0,-3827,-3837,-3838,-3167,-3839,-620], +[0,-3136,-3037,-427,-428,-932,-933,-935,-940,-958,-959,-962,-967,-1415,-1424,-1942,-2375,-2376,-2379,-2402,-2410], +[0,-3161,-1334,-3690,-3578], +[0,-3037,-928,-1942,-2319,-2386,-2402], +[0,-687,-3958,-3999,-3099,-4000,-4001,-4002], +[0,-1535,-1536,-687,-4107,-4108,-4109,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], +[1,3,825], +[0,-2006,-3159,-3119,-1613], +[0,-4055,-3690,-4140,-4141,-4142,-4143,-4144,-2410,-3018,-3445,-3577], +[0,-4165,-856,-4100,-3485,-4156,-3215,-2250], +[0,-4328,-4329,-1105,-4330,-1599,-3437,-856,-4331,-3264,-1764], +[0,-4332,-4335,-4345,-4346,-4340,-4347], +[0,-4332,-4336,-4337,-4338,-4339,-4340,-4344], +[0,-234,-3044,-5011,-3738,-865,-985,-1771,-1788,-5012,-2376,-5013,-2392,-2469,-2503,-2509], +[0,-5096], +[0,-5141,-4601,-4602,-3578,-3445], +[0,-5140], +[0,-3497,-3496,-3161,-3264,-5246,-3862,-3495,-5247,-3494], +[0,-433,-436], +[0,-1788,-1654,-932,-821,-966,-958,-968,-943,-963,-974], +[0,-475,-3161,-4865,-5495], +[0,-3690,-489,-4100,-856,-3691,-5728], +[0,-1047], +[1,3,1788], +[0,-2155], +[0,-581,-5110,-6120,-3173,-6129,-6130,-770], +[1,3,1820], +[1,3,1876], +[1,3,1878], +[0,-1309], +[0,-1592,-1654,-664], +[0,-6657,-6658,-4868,-4004,-6659], +[0,-2231], +[0,-6689,-2115], +[0,-714], +[0,-3966,-3957,-6722,-687,-4002,-6723,-6724,-4112,-714,-4672], +[0,-3214,-6784,-711,-3116], +[0,-2337], +[0,-465,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], +[0,-711], +[0,-856,-1599], +[0,-865], +[0,-891], +[0,-5558,-3591,-633,-6340,-6408,-6916,-3870], +[0,-932,-8163,-727,-8164,-3214,-4900,-4795,-8165,-6434,-8166], +[0,-932,-5208,-3784], +[0,-429], +[0,-932,-5208,-3784,-3966,-3967,-3217,-7094,-6656,-1847,-6024,-4792], +[0,-932,-3784,-5208,-2006], +[0,-426], +[0,-1004,-3161,-6125,-3578,-1334,-3691,-5728,-3122,-3994,-3690], +[0,-1107,-5064,-5922,-8528], +[0,-1543,-2168], +[0,-1654,-2125,-2250], +[0,-1127,-1144], +[0,-510,-2125], +[0,-9219,-1654,-4004], +[0,-1127,-1132,-2541], +[0,-519,-1168,-1825,-2460,-2541], +[0,-2347], +[0,-1252,-1654,-2198,-2460], +[0,-2347,-1876], +[0,-1876,-2347], +[0,-519,-1825,-2460,-2541], +[0,-3037,-652,-1294,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-1696,-596], +[0,-707,-1510], +[0,-1580], +[0,-1386,-9944,-9945,-3162,-3994,-9946,-752,-5269,-1861], +[0,-519,-9982,-2384,-2541], +[0,-4004,-3634,-1412,-4873,-3440], +[0,-4034], +[0,-5092,-3264,-5388,-5387], +[0,-1452], +[0,-2518], +[0,-1646], +[0,-1523,-10558,-5827,-7685,-7773,-4634,-6005,-4055], +[0,-3326,-351,-3266,-652,-932,-943,-1600,-3668,-1654,-2127], +[0,-4792,-6137,-6138,-6134,-9405,-11114,-4004,-4215,-8611], +[0,-1127], +[0,-687,-3957,-11725,-3673,-1764,-11726,-11727,-8907,-10227,-5921,-4107], +[0,-3994,-1805,-1810,-11816,-11817,-11818,-11819,-11820,-11821,-7095,-4865,-3496,-7237,-7863,-2435,-11822,-7303,-4377, +-7091,-8421,-6599,-1958,-3258,-6656], +[0,-6748,-4377,-5829,-3215,-6747,-687,-3957], +[0,-1654,-664,-666], +[0,-1841,-6120,-8449,-3173,-8450,-6121,-1791,-11437], +[0,-2541,-519,-2384], +[0,-1859,-11878,-11613], +[1,3,6920], +[0,-523], +[0,-635,-1934], +[1,3,7131], +[1,3,7300], +[0,-2006,-12452], +[0,-2006,-2034,-5271,-5270,-3162,-7085,-12561,-12562], +[1,3,7605], +[0,-2006,-3122,-10470,-9843,-1306,-10606], +[1,3,7706], +[1,3,7712], +[0,-2384,-2541], +[0,-12913], +[0,-2127,-12913,-4795,-1764,-3209], +[0,-2006,-3161,-1713,-3578,-3844,-3966,-3577,-3445,-687,-2455], +[1,3,8114], +[1,3,8321], +[1,3,8373], +[0,-9214,-2359,-2330,-13745,-6909,-11846,-13746], +[0,-2410,-856,-3262], +[0,-2444], +[0,-3100,-3161,-6211,-14339,-14340,-2466], +[0,-14357], +[0,-3113,-7646,-7641,-3673,-687,-3970,-3108,-3960,-3262,-3976,-3994], +[0,-3214,-3100,-2006,-3481], +[1,24,9789], +[0,-2662], +[1,24,10023], +[0,-1386,-3161,-2006,-3162,-3994,-9946,-3995,-752,-3997,-3998], +[0,-15309], +[1,3,10151], +[0,-856,-3262,-2476], +[0,-15415,-15416,-15417,-15418,-11853,-10655,-15419,-6711,-15420,-15421,-4126,-15071,-2006,-15422,-475,-2476,-5270,-3162, +-11321,-15423,-15424], +[0,-4258,-7641,-3100,-4865,-6342,-9290], +[0,-15445,-3445], +[0,-3037,-652,-1942,-2094,-2100,-2384,-2399,-2410,-2541], +[0,-1368], +[0,-525,-2006,-1368,-3161,-4729,-9850,-9613], +[0,-15627,-14386,-15628,-15629,-15630,-4864,-3634,-3636], +[1,3,10609], +[0,-15699,-3967,-6209,-2410,-15700,-15701,-3161,-11894], +[1,3,10660], +[1,3,10677], +[1,3,10691], +[1,3,10722], +[0,-1313,-3445,-15751,-15752,-3161,-9840], +[0,-2006,-3161,-15804,-15805], +[0,-1415,-932,-2127,-2375,-1942,-2410,-3136,-940,-967,-1419,-428,-427], +[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3960,-3262,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966, +-3967,-1965,-3968,-1966,-3969,-2063,-3970,-3971,-3108,-3972,-3973,-3974,-3975,-3694,-2410,-3160,-3976,-2559,-3977], +[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, +-5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, +-5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364], +[1,3,10858], +[0,-231,-2900], +[1,24,11236], +[0,-1,-2,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-23,-24,-25,-26,-27,-28,-29,-30,-31,-32, +-33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62, +-63, +-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93, +-94,-95,-96,-97,-98,-99,-100,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-113,-114,-115,-116,-117,-118, +-119,-120,-121,-122,-123,-124,-125,-126,-127, +-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139,-140,-141,-142,-143,-144,-145,-146,-147,-148,-149,-150,-151, +-152,-153,-154,-155,-156,-157,-158,-159,-160,-161,-162,-163,-164,-165,-166,-167,-168,-169,-170,-171,-172,-173,-174,-175, +-176,-177,-178,-179,-180,-181,-182,-183,-184,-185,-186,-187,-188,-189,-190,-191, +-192,-193,-194,-195,-196,-197,-198,-199,-200,-201,-202,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-215, +-216,-217,-218,-219,-220,-221,-222,-223,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,-235,-236,-237,-238,-239, +-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255, +-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-274,-275,-276,-277,-278,-279, +-280,-281,-282,-283,-284,-285,-286,-287,-288,-289,-290,-291,-292,-293,-294,-295,-296,-297,-298,-299,-300,-301,-302,-303, +-304,-305,-306,-307,-308,-309,-310,-311,-312,-313,-314,-315,-316,-317,-318,-319, +-320,-321,-322,-323,-324,-325,-326,-327,-328,-329,-330,-331,-332,-333,-334,-335,-336,-337,-338,-339,-340,-341,-342,-343, +-344,-345,-346,-347,-348,-349,-350,-351,-352,-353,-354,-355,-356,-357,-358,-359,-360,-361,-362,-363,-364,-365,-366,-367, +-368,-369,-370,-371,-372,-373,-374,-375,-376,-377,-378,-379,-380,-381,-382,-383, +-384,-385,-386,-387,-388,-389,-390,-391,-392,-393,-394,-395,-396,-397,-398,-399,-400,-401,-402,-403,-404,-405,-406,-407, +-408,-409,-410,-411,-412,-413,-414,-415,-416,-417,-418,-419,-420,-421,-422,-423,-424,-425,-426,-427,-428,-429,-430,-431, +-432,-433,-434,-435,-436,-437,-438,-439,-440,-441,-442,-443,-444,-445,-446,-447, +-448,-449,-450,-451,-452,-453,-454,-455,-456,-457,-458,-459,-460,-461,-462,-463,-464,-465,-466,-467,-468,-469,-470,-471, +-472,-473,-474,-475,-476,-477,-478,-479,-480,-481,-482,-483,-484,-485,-486,-487,-488,-489,-490,-491,-492,-493,-494,-495, +-496,-497,-498,-499,-500,-501,-502,-503,-504,-505,-506,-507,-508,-509,-510,-511, +-512,-513,-514,-515,-516,-517,-518,-519,-520,-521,-522,-523,-524,-525,-526,-527,-528,-529,-530,-531,-532,-533,-534,-535, +-536,-537,-538,-539,-540,-541,-542,-543,-544,-545,-546,-547,-548,-549,-550,-551,-552,-553,-554,-555,-556,-557,-558,-559, +-560,-561,-562,-563,-564,-565,-566,-567,-568,-569,-570,-571,-572,-573,-574,-575, +-576,-577,-578,-579,-580,-581,-582,-583,-584,-585,-586,-587,-588,-589,-590,-591,-592,-593,-594,-595,-596,-597,-598,-599, +-600,-601,-602,-603,-604,-605,-606,-607,-608,-609,-610,-611,-612,-613,-614,-615,-616,-617,-618,-619,-620,-621,-622,-623, +-624,-625,-626,-627,-628,-629,-630,-631,-632,-633,-634,-635,-636,-637,-638,-639, +-640,-641,-642,-643,-644,-645,-646,-647,-648,-649,-650,-651,-652,-653,-654,-655,-656,-657,-658,-659,-660,-661,-662,-663, +-664,-665,-666,-667,-668,-669,-670,-671,-672,-673,-674,-675,-676,-677,-678,-679,-680,-681,-682,-683,-684,-685,-686,-687, +-688,-689,-690,-691,-692,-693,-694,-695,-696,-697,-698,-699,-700,-701,-702,-703, +-704,-705,-706,-707,-708,-709,-710,-711,-712,-713,-714,-715,-716,-717,-718,-719,-720,-721,-722,-723,-724,-725,-726,-727, +-728,-729,-730,-731,-732,-733,-734,-735,-736,-737,-738,-739,-740,-741,-742,-743,-744,-745,-746,-747,-748,-749,-750,-751, +-752,-753,-754,-755,-756,-757,-758,-759,-760,-761,-762,-763,-764,-765,-766,-767, +-768,-769,-770,-771,-772,-773,-774,-775,-776,-777,-778,-779,-780,-781,-782,-783,-784,-785,-786,-787,-788,-789,-790,-791, +-792,-793,-794,-795,-796,-797,-798,-799,-800,-801,-802,-803,-804,-805,-806,-807,-808,-809,-810,-811,-812,-813,-814,-815, +-816,-817,-818,-819,-820,-821,-822,-823,-824,-825,-826,-827,-828,-829,-830,-831, +-832,-833,-834,-835,-836,-837,-838,-839,-840,-841,-842,-843,-844,-845,-846,-847,-848,-849,-850,-851,-852,-853,-854,-855, +-856,-857,-858,-859,-860,-861,-862,-863,-864,-865,-866,-867,-868,-869,-870,-871,-872,-873,-874,-875,-876,-877,-878,-879, +-880,-881,-882,-883,-884,-885,-886,-887,-888,-889,-890,-891,-892,-893,-894,-895, +-896,-897,-898,-899,-900,-901,-902,-903,-904,-905,-906,-907,-908,-909,-910,-911,-912,-913,-914,-915,-916,-917,-918,-919, +-920,-921,-922,-923,-924,-925,-926,-927,-928,-929,-930,-931,-932,-933,-934,-935,-936,-937,-938,-939,-940,-941,-942,-943, +-944,-945,-946,-947,-948,-949,-950,-951,-952,-953,-954,-955,-956,-957,-958,-959, +-960,-961,-962,-963,-964,-965,-966,-967,-968,-969,-970,-971,-972,-973,-974,-975,-976,-977,-978,-979,-980,-981,-982,-983, +-984,-985,-986,-987,-988,-989,-990,-991,-992,-993,-994,-995,-996,-997,-998,-999,-1000,-1001,-1002,-1003,-1004,-1005, +-1006,-1007,-1008,-1009,-1010,-1011,-1012,-1013,-1014,-1015,-1016,-1017,-1018,-1019,-1020,-1021,-1022,-1023, +-1024,-1025,-1026,-1027,-1028,-1029,-1030,-1031,-1032,-1033,-1034,-1035,-1036,-1037,-1038,-1039,-1040,-1041,-1042,-1043, +-1044,-1045,-1046,-1047,-1048,-1049,-1050,-1051,-1052,-1053,-1054,-1055,-1056,-1057,-1058,-1059,-1060,-1061,-1062,-1063, +-1064,-1065,-1066,-1067,-1068,-1069,-1070,-1071,-1072,-1073,-1074,-1075,-1076,-1077,-1078,-1079,-1080,-1081,-1082,-1083, +-1084,-1085,-1086,-1087, +-1088,-1089,-1090,-1091,-1092,-1093,-1094,-1095,-1096,-1097,-1098,-1099,-1100,-1101,-1102,-1103,-1104,-1105,-1106,-1107, +-1108,-1109,-1110,-1111,-1112,-1113,-1114,-1115,-1116,-1117,-1118,-1119,-1120,-1121,-1122,-1123,-1124,-1125,-1126,-1127, +-1128,-1129,-1130,-1131,-1132,-1133,-1134,-1135,-1136,-1137,-1138,-1139,-1140,-1141,-1142,-1143,-1144,-1145,-1146,-1147, +-1148,-1149,-1150,-1151, +-1152,-1153,-1154,-1155,-1156,-1157,-1158,-1159,-1160,-1161,-1162,-1163,-1164,-1165,-1166,-1167,-1168,-1169,-1170,-1171, +-1172,-1173,-1174,-1175,-1176,-1177,-1178,-1179,-1180,-1181,-1182,-1183,-1184,-1185,-1186,-1187,-1188,-1189,-1190,-1191, +-1192,-1193,-1194,-1195,-1196,-1197,-1198,-1199,-1200,-1201,-1202,-1203,-1204,-1205,-1206,-1207,-1208,-1209,-1210,-1211, +-1212,-1213,-1214,-1215, +-1216,-1217,-1218,-1219,-1220,-1221,-1222,-1223,-1224,-1225,-1226,-1227,-1228,-1229,-1230,-1231,-1232,-1233,-1234,-1235, +-1236,-1237,-1238,-1239,-1240,-1241,-1242,-1243,-1244,-1245,-1246,-1247,-1248,-1249,-1250,-1251,-1252,-1253,-1254,-1255, +-1256,-1257,-1258,-1259,-1260,-1261,-1262,-1263,-1264,-1265,-1266,-1267,-1268,-1269,-1270,-1271,-1272,-1273,-1274,-1275, +-1276,-1277,-1278,-1279, +-1280,-1281,-1282,-1283,-1284,-1285,-1286,-1287,-1288,-1289,-1290,-1291,-1292,-1293,-1294,-1295,-1296,-1297,-1298,-1299, +-1300,-1301,-1302,-1303,-1304,-1305,-1306,-1307,-1308,-1309,-1310,-1311,-1312,-1313,-1314,-1315,-1316,-1317,-1318,-1319, +-1320,-1321,-1322,-1323,-1324,-1325,-1326,-1327,-1328,-1329,-1330,-1331,-1332,-1333,-1334,-1335,-1336,-1337,-1338,-1339, +-1340,-1341,-1342,-1343, +-1344,-1345,-1346,-1347,-1348,-1349,-1350,-1351,-1352,-1353,-1354,-1355,-1356,-1357,-1358,-1359,-1360,-1361,-1362,-1363, +-1364,-1365,-1366,-1367,-1368,-1369,-1370,-1371,-1372,-1373,-1374,-1375,-1376,-1377,-1378,-1379,-1380,-1381,-1382,-1383, +-1384,-1385,-1386,-1387,-1388,-1389,-1390,-1391,-1392,-1393,-1394,-1395,-1396,-1397,-1398,-1399,-1400,-1401,-1402,-1403, +-1404,-1405,-1406,-1407, +-1408,-1409,-1410,-1411,-1412,-1413,-1414,-1415,-1416,-1417,-1418,-1419,-1420,-1421,-1422,-1423,-1424,-1425,-1426,-1427, +-1428,-1429,-1430,-1431,-1432,-1433,-1434,-1435,-1436,-1437,-1438,-1439,-1440,-1441,-1442,-1443,-1444,-1445,-1446,-1447, +-1448,-1449,-1450,-1451,-1452,-1453,-1454,-1455,-1456,-1457,-1458,-1459,-1460,-1461,-1462,-1463,-1464,-1465,-1466,-1467, +-1468,-1469,-1470,-1471, +-1472,-1473,-1474,-1475,-1476,-1477,-1478,-1479,-1480,-1481,-1482,-1483,-1484,-1485,-1486,-1487,-1488,-1489,-1490,-1491, +-1492,-1493,-1494,-1495,-1496,-1497,-1498,-1499,-1500,-1501,-1502,-1503,-1504,-1505,-1506,-1507,-1508,-1509,-1510,-1511, +-1512,-1513,-1514,-1515,-1516,-1517,-1518,-1519,-1520,-1521,-1522,-1523,-1524,-1525,-1526,-1527,-1528,-1529,-1530,-1531, +-1532,-1533,-1534,-1535, +-1536,-1537,-1538,-1539,-1540,-1541,-1542,-1543,-1544,-1545,-1546,-1547,-1548,-1549,-1550,-1551,-1552,-1553,-1554,-1555, +-1556,-1557,-1558,-1559,-1560,-1561,-1562,-1563,-1564,-1565,-1566,-1567,-1568,-1569,-1570,-1571,-1572,-1573,-1574,-1575, +-1576,-1577,-1578,-1579,-1580,-1581,-1582,-1583,-1584,-1585,-1586,-1587,-1588,-1589,-1590,-1591,-1592,-1593,-1594,-1595, +-1596,-1597,-1598,-1599, +-1600,-1601,-1602,-1603,-1604,-1605,-1606,-1607,-1608,-1609,-1610,-1611,-1612,-1613,-1614,-1615,-1616,-1617,-1618,-1619, +-1620,-1621,-1622,-1623,-1624,-1625,-1626,-1627,-1628,-1629,-1630,-1631,-1632,-1633,-1634,-1635,-1636,-1637,-1638,-1639, +-1640,-1641,-1642,-1643,-1644,-1645,-1646,-1647,-1648,-1649,-1650,-1651,-1652,-1653,-1654,-1655,-1656,-1657,-1658,-1659, +-1660,-1661,-1662,-1663, +-1664,-1665,-1666,-1667,-1668,-1669,-1670,-1671,-1672,-1673,-1674,-1675,-1676,-1677,-1678,-1679,-1680,-1681,-1682,-1683, +-1684,-1685,-1686,-1687,-1688,-1689,-1690,-1691,-1692,-1693,-1694,-1695,-1696,-1697,-1698,-1699,-1700,-1701,-1702,-1703, +-1704,-1705,-1706,-1707,-1708,-1709,-1710,-1711,-1712,-1713,-1714,-1715,-1716,-1717,-1718,-1719,-1720,-1721,-1722,-1723, +-1724,-1725,-1726,-1727, +-1728,-1729,-1730,-1731,-1732,-1733,-1734,-1735,-1736,-1737,-1738,-1739,-1740,-1741,-1742,-1743,-1744,-1745,-1746,-1747, +-1748,-1749,-1750,-1751,-1752,-1753,-1754,-1755,-1756,-1757,-1758,-1759,-1760,-1761,-1762,-1763,-1764,-1765,-1766,-1767, +-1768,-1769,-1770,-1771,-1772,-1773,-1774,-1775,-1776,-1777,-1778,-1779,-1780,-1781,-1782,-1783,-1784,-1785,-1786,-1787, +-1788,-1789,-1790,-1791, +-1792,-1793,-1794,-1795,-1796,-1797,-1798,-1799,-1800,-1801,-1802,-1803,-1804,-1805,-1806,-1807,-1808,-1809,-1810,-1811, +-1812,-1813,-1814,-1815,-1816,-1817,-1818,-1819,-1820,-1821,-1822,-1823,-1824,-1825,-1826,-1827,-1828,-1829,-1830,-1831, +-1832,-1833,-1834,-1835,-1836,-1837,-1838,-1839,-1840,-1841,-1842,-1843,-1844,-1845,-1846,-1847,-1848,-1849,-1850,-1851, +-1852,-1853,-1854,-1855, +-1856,-1857,-1858,-1859,-1860,-1861,-1862,-1863,-1864,-1865,-1866,-1867,-1868,-1869,-1870,-1871,-1872,-1873,-1874,-1875, +-1876,-1877,-1878,-1879,-1880,-1881,-1882,-1883,-1884,-1885,-1886,-1887,-1888,-1889,-1890,-1891,-1892,-1893,-1894,-1895, +-1896,-1897,-1898,-1899,-1900,-1901,-1902,-1903,-1904,-1905,-1906,-1907,-1908,-1909,-1910,-1911,-1912,-1913,-1914,-1915, +-1916,-1917,-1918,-1919, +-1920,-1921,-1922,-1923,-1924,-1925,-1926,-1927,-1928,-1929,-1930,-1931,-1932,-1933,-1934,-1935,-1936,-1937,-1938,-1939, +-1940,-1941,-1942,-1943,-1944,-1945,-1946,-1947,-1948,-1949,-1950,-1951,-1952,-1953,-1954,-1955,-1956,-1957,-1958,-1959, +-1960,-1961,-1962,-1963,-1964,-1965,-1966,-1967,-1968,-1969,-1970,-1971,-1972,-1973,-1974,-1975,-1976,-1977,-1978,-1979, +-1980,-1981,-1982,-1983, +-1984,-1985,-1986,-1987,-1988,-1989,-1990,-1991,-1992,-1993,-1994,-1995,-1996,-1997,-1998,-1999,-2000,-2001,-2002,-2003, +-2004,-2005,-2006,-2007,-2008,-2009,-2010,-2011,-2012,-2013,-2014,-2015,-2016,-2017,-2018,-2019,-2020,-2021,-2022,-2023, +-2024,-2025,-2026,-2027,-2028,-2029,-2030,-2031,-2032,-2033,-2034,-2035,-2036,-2037,-2038,-2039,-2040,-2041,-2042,-2043, +-2044,-2045,-2046,-2047, +-2048,-2049,-2050,-2051,-2052,-2053,-2054,-2055,-2056,-2057,-2058,-2059,-2060,-2061,-2062,-2063,-2064,-2065,-2066,-2067, +-2068,-2069,-2070,-2071,-2072,-2073,-2074,-2075,-2076,-2077,-2078,-2079,-2080,-2081,-2082,-2083,-2084,-2085,-2086,-2087, +-2088,-2089,-2090,-2091,-2092,-2093,-2094,-2095,-2096,-2097,-2098,-2099,-2100,-2101,-2102,-2103,-2104,-2105,-2106,-2107, +-2108,-2109,-2110,-2111, +-2112,-2113,-2114,-2115,-2116,-2117,-2118,-2119,-2120,-2121,-2122,-2123,-2124,-2125,-2126,-2127,-2128,-2129,-2130,-2131, +-2132,-2133,-2134,-2135,-2136,-2137,-2138,-2139,-2140,-2141,-2142,-2143,-2144,-2145,-2146,-2147,-2148,-2149,-2150,-2151, +-2152,-2153,-2154,-2155,-2156,-2157,-2158,-2159,-2160,-2161,-2162,-2163,-2164,-2165,-2166,-2167,-2168,-2169,-2170,-2171, +-2172,-2173,-2174,-2175, +-2176,-2177,-2178,-2179,-2180,-2181,-2182,-2183,-2184,-2185,-2186,-2187,-2188,-2189,-2190,-2191,-2192,-2193,-2194,-2195, +-2196,-2197,-2198,-2199,-2200,-2201,-2202,-2203,-2204,-2205,-2206,-2207,-2208,-2209,-2210,-2211,-2212,-2213,-2214,-2215, +-2216,-2217,-2218,-2219,-2220,-2221,-2222,-2223,-2224,-2225,-2226,-2227,-2228,-2229,-2230,-2231,-2232,-2233,-2234,-2235, +-2236,-2237,-2238,-2239, +-2240,-2241,-2242,-2243,-2244,-2245,-2246,-2247,-2248,-2249,-2250,-2251,-2252,-2253,-2254,-2255,-2256,-2257,-2258,-2259, +-2260,-2261,-2262,-2263,-2264,-2265,-2266,-2267,-2268,-2269,-2270,-2271,-2272,-2273,-2274,-2275,-2276,-2277,-2278,-2279, +-2280,-2281,-2282,-2283,-2284,-2285,-2286,-2287,-2288,-2289,-2290,-2291,-2292,-2293,-2294,-2295,-2296,-2297,-2298,-2299, +-2300,-2301,-2302,-2303, +-2304,-2305,-2306,-2307,-2308,-2309,-2310,-2311,-2312,-2313,-2314,-2315,-2316,-2317,-2318,-2319,-2320,-2321,-2322,-2323, +-2324,-2325,-2326,-2327,-2328,-2329,-2330,-2331,-2332,-2333,-2334,-2335,-2336,-2337,-2338,-2339,-2340,-2341,-2342,-2343, +-2344,-2345,-2346,-2347,-2348,-2349,-2350,-2351,-2352,-2353,-2354,-2355,-2356,-2357,-2358,-2359,-2360,-2361,-2362,-2363, +-2364,-2365,-2366,-2367, +-2368,-2369,-2370,-2371,-2372,-2373,-2374,-2375,-2376,-2377,-2378,-2379,-2380,-2381,-2382,-2383,-2384,-2385,-2386,-2387, +-2388,-2389,-2390,-2391,-2392,-2393,-2394,-2395,-2396,-2397,-2398,-2399,-2400,-2401,-2402,-2403,-2404,-2405,-2406,-2407, +-2408,-2409,-2410,-2411,-2412,-2413,-2414,-2415,-2416,-2417,-2418,-2419,-2420,-2421,-2422,-2423,-2424,-2425,-2426,-2427, +-2428,-2429,-2430,-2431, +-2432,-2433,-2434,-2435,-2436,-2437,-2438,-2439,-2440,-2441,-2442,-2443,-2444,-2445,-2446,-2447,-2448,-2449,-2450,-2451, +-2452,-2453,-2454,-2455,-2456,-2457,-2458,-2459,-2460,-2461,-2462,-2463,-2464,-2465,-2466,-2467,-2468,-2469,-2470,-2471, +-2472,-2473,-2474,-2475,-2476,-2477,-2478,-2479,-2480,-2481,-2482,-2483,-2484,-2485,-2486,-2487,-2488,-2489,-2490,-2491, +-2492,-2493,-2494,-2495, +-2496,-2497,-2498,-2499,-2500,-2501,-2502,-2503,-2504,-2505,-2506,-2507,-2508,-2509,-2510,-2511,-2512,-2513,-2514,-2515, +-2516,-2517,-2518,-2519,-2520,-2521,-2522,-2523,-2524,-2525,-2526,-2527,-2528,-2529,-2530,-2531,-2532,-2533,-2534,-2535, +-2536,-2537,-2538,-2539,-2540,-2541,-2542,-2543,-2544,-2545,-2546,-2547,-2548,-2549,-2550,-2551,-2552,-2553,-2554,-2555, +-2556,-2557,-2558,-2559, +-2560,-2561,-2562,-2563,-2564,-2565,-2566,-2567,-2568,-2569,-2570,-2571,-2572,-2573,-2574,-2575,-2576,-2577,-2578,-2579, +-2580,-2581,-2582,-2583,-2584,-2585,-2586,-2587,-2588,-2589,-2590,-2591,-2592,-2593,-2594,-2595,-2596,-2597,-2598,-2599, +-2600,-2601,-2602,-2603,-2604,-2605,-2606,-2607,-2608,-2609,-2610,-2611,-2612,-2613,-2614,-2615,-2616,-2617,-2618,-2619, +-2620,-2621,-2622,-2623, +-2624,-2625,-2626,-2627,-2628,-2629,-2630,-2631,-2632,-2633,-2634,-2635,-2636,-2637,-2638,-2639,-2640,-2641,-2642,-2643, +-2644,-2645,-2646,-2647,-2648,-2649,-2650,-2651,-2652,-2653,-2654,-2655,-2656,-2657,-2658,-2659,-2660,-2661,-2662,-2663, +-2664,-2665,-2666,-2667,-2668,-2669,-2670,-2671,-2672,-2673,-2674,-2675,-2676,-2677,-2678,-2679,-2680,-2681,-2682,-2683, +-2684,-2685,-2686,-2687, +-2688,-2689,-2690,-2691,-2692,-2693,-2694,-2695,-2696,-2697,-2698,-2699,-2700,-2701,-2702,-2703,-2704,-2705,-2706,-2707, +-2708,-2709,-2710,-2711,-2712,-2713,-2714,-2715,-2716,-2717,-2718,-2719,-2720,-2721,-2722,-2723,-2724,-2725,-2726,-2727, +-2728,-2729,-2730,-2731,-2732,-2733,-2734,-2735,-2736,-2737,-2738,-2739,-2740,-2741,-2742,-2743,-2744,-2745,-2746,-2747, +-2748,-2749,-2750,-2751, +-2752,-2753,-2754,-2755,-2756,-2757,-2758,-2759,-2760,-2761,-2762,-2763,-2764,-2765,-2766,-2767,-2768,-2769,-2770,-2771, +-2772,-2773,-2774,-2775,-2776,-2777,-2778,-2779,-2780,-2781,-2782,-2783,-2784,-2785,-2786,-2787,-2788,-2789,-2790,-2791, +-2792,-2793,-2794,-2795,-2796,-2797,-2798,-2799,-2800,-2801,-2802,-2803,-2804,-2805,-2806,-2807,-2808,-2809,-2810,-2811, +-2812,-2813,-2814,-2815, +-2816,-2817,-2818,-2819,-2820,-2821,-2822,-2823,-2824,-2825,-2826,-2827,-2828,-2829,-2830,-2831,-2832,-2833,-2834,-2835, +-2836,-2837,-2838,-2839,-2840,-2841,-2842,-2843,-2844,-2845,-2846,-2847,-2848,-2849,-2850,-2851,-2852,-2853,-2854,-2855, +-2856,-2857,-2858,-2859,-2860,-2861,-2862,-2863,-2864,-2865,-2866,-2867,-2868,-2869,-2870,-2871,-2872,-2873,-2874,-2875, +-2876,-2877,-2878,-2879, +-2880,-2881,-2882,-2883,-2884,-2885,-2886,-2887,-2888,-2889,-2890,-2891,-2892,-2893,-2894,-2895,-2896,-2897,-2898,-2899, +-2900,-2901,-2902,-2903,-2904,-2905,-2906,-2907,-2908,-2909,-2910,-2911,-2912,-2913,-2914,-2915,-2916,-2917,-2918,-2919, +-2920,-2921,-2922,-2923,-2924,-2925,-2926,-2927,-2928,-2929,-2930,-2931,-2932,-2933,-2934,-2935,-2936,-2937,-2938,-2939, +-2940,-2941,-2942,-2943, +-2944,-2945,-2946,-2947,-2948,-2949,-2950,-2951,-2952,-2953,-2954,-2955,-2956,-2957,-2958,-2959,-2960,-2961,-2962,-2963, +-2964,-2965,-2966,-2967,-2968,-2969,-2970,-2971,-2972,-2973,-2974,-2975,-2976,-2977,-2978,-2979,-2980,-2981,-2982,-2983, +-2984,-2985,-2986,-2987,-2988,-2989,-2990,-2991,-2992,-2993,-2994,-2995,-2996,-2997,-2998,-2999,-3000,-3001,-3002,-3003, +-3004,-3005,-3006,-3007, +-3008,-3009,-3010,-3011,-3012,-3013,-3014], +[0,295,300,304,74,309,136,136,314,74,318,74,321,324,74,326,329,333,338,343,348,353,357,361,365,367,372,375,380,384,389, +393,398,402,407,409,412,416,418,422,425,429,432,436,17,441,444,447,451,453,458,462,467,470,474,477,480,483,486,489,492, +495,498,501, +504,507,510,513,516,519,522,525,528,531,534,537,540,543,546,550,553,556,559,562,565,569,572,576,579,103,32,103,587,591, +594,597,600,604,607,610,614,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,13,13,12,17, +12,12,26,17,13,12,12,12,12,12,12,13,13,13,61,17,12,12,17,12,17,13,624,628,633,637,641,62,17,647,652,657,662,13,666,670, +12,12,12,26,12,12,12,12,12,26,12,12,12,17,43,12,12,12,26,12,12,12,26,12,13,675,679,682, +686,690,693,696,698,700,704,707,712,716,721,726,730,12,12,12,12,734,12,12,12,12,26,13,12,12,12,12,12,12,12,12,17,12,737, +742,747,751,756,761,765,770,772,776,781,785,788,793,798,12,61,802,806,26,13,811,32,814,818,822,159,827,830,834, +838,842,845,848,851,854,858,863,866,870,874,879,883,886,891,894,898,902,906,910,915,918,921,924,929,933,937,940,944,32, +948,32,62,32,951,954,957,960,964,968,971,975,979,982,985,988,992,996,1001,1006,1011,1014,1018,1021,1024,1027,1031,1035, +1039,12,12,13,12,13, +17,12,12,52,12,12,43,12,17,12,12,12,12,12,12,52,12,26,26,12,12,12,1045,1049,1053,1057,1061,1066,1070,1075,1080,1085,1090, +1095,1100,1105,1110,1115,1119,1124,1128,1131,1134,1138,1143,1148,1153,1158,17,17,13,1163,1168,1171,12,12,12,12,12,12,12, +12,12,12, +12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,1173,1178,1181,1185,1190,1195,1200,1205,1210,1214,1218,1222,1225,1228, +1232,1235,1238,1242,1246,1250,1253,1257,1261,1264,1266,52,1270,1275,1279,1283,1288,1291,1294,1298,1301,1305,1308,1313, +1318,1323,1328,1333,1338,12,12,12,78, +13,17,26,12,13,12,12,78,17,1343,1347,1352,1356,43,1360,1363,1368,1372,1375,66,1381,1386,1391,53,1397,1401,1406,1410,1412, +1415,1419,1422,1426,1430,1434,1438,1441,1446,1450,79,1454,1459,1463,1468,1473,1476,1480,1484,1488,1492,53,1497,1502,1507, +1512,1515,46,1520,1525,1528,1533,1536,1541,1545, +1549,1553,1557,1560,1565,1570,1575,1579,1584,1589,1594,1598,1603,13,1608,1612,1616,1620,1624,1627,1630,1633,1637,1641, +1645,1650,1652,1657,1662,1667,1672,1675,1677,1679,1682,1685,1690,1693,1697,1699,1702,1705,1709,1712,1714,1717,1722,1726, +1730,1733,1736,1739,1742,1745,1748,1752,1755,1758,1762,1766,1769,1773,1778,30, +1784,176,1789,1793,1797,1802,1806,1809,1812,1817,179,1821,20,1827,18,46,18,1833,1837,1842,1845,1849,1853,1858,1863,1868, +1871,46,20,20,46,53,53,54,180,80,181,80,1879,1883,1887,1891,1894,1899,1903,1906,1910,1913,17,30,20,1918,1923,1928,1933, +20,1937,1942,1947,1952,1956,1961,1965,1968, +1973,1978,1982,80,1987,1990,1994,1999,2003,2008,2013,2018,2022,2027,2030,2035,2040,2043,2046,2049,82,2055,2059,18,2062, +2066,2071,2074,2078,2082,46,2086,2089,2093,2098,30,13,2103,2108,2113,2118,2121,2125,2129,2133,2138,2141,2144,2148,2152, +2157,2162,2165,2169,2173,2177,2180,2184,2188,2193,2198,2202,2206,2208, +2212,2216,2220,2225,2229,2234,2239,2242,2245,2250,2253,2257,2262,2266,2270,2275,2279,2284,2288,2292,2295,2299,2302,2307, +2312,2316,2321,2324,2327,2332,2336,2340,2344,2348,103,2352,2356,2360,2364,2368,2372,2376,2381,2384,2389,2394,2398,2401, +2406,2411,2414,2419,2424,2429,2434,2439,2442,2447,2451,2456,2461,2464,2468,2472, +2477,2482,13,2487,2491,2494,2498,2503,2508,2512,2516,2521,2526,2531,2536,2540,2544,2549,2554,2558,2563,2568,2572,2576, +2580,2584,2588,2592,2596,2600,2605,2610,2615,2619,2624,2628,82,2631,2634,2638,2641,2644,2648,2653,2656,2661,2664,2669, +2673,2677,69,2682,2686,2690,2695,2698,2702,2707,2712,2717,2722,2726,54,2730, +2733,20,2738,2742,20,2747,2750,2754,2757,2762,30,2765,2769,2773,2776,2780,2785,2790,2794,2797,2802,2807,2811,2815,2819, +2824,2829,2834,2838,2843,2848,2852,2857,2861,2865,2869,2874,2879,2884,2889,2894,2898,2903,2908,2911,2915,2920,2925,2929, +2933,2937,2941,2944,2948,2952,2957,2962,2967,47,2973,2976,2981,2986,2990, +2993,2997,26,3002,3007,3012,3015,3020,3025,3030,3035,3037,3041,3045,3049,3054,3059,3063,3066,3070,3074,3078,3082,3086, +3090,3095,3100,3105,3109,3113,3117,3121,52,3125,3129,3132,3136,3141,3145,3149,3154,3157,3161,3166,3170,3173,3176,3180, +3184,3188,3193,3197,3202,3206,3211,3216,3221,3226,3229,3234,3238,3243,3248,3253, +3256,3261,3266,3271,3276,3280,3284,3288,3292,3297,3301,3305,3310,3315,3319,3322,3327,3332,3337,3342,3346,3351,3356,3360, +3363,3367,3370,3375,3379,3382,3385,3389,3394,3399,3404,3409,3413,3417,54,3421,3426,3430,3434,13,3438,3442,3446,3451,3456, +3461,3466,3470,3475,3479,3484,3489,3493,3498,3502,79,79,3507,3510,3515, +3520,3524,3528,3532,3535,3540,3543,3548,3552,3557,3561,47,3565,3569,3573,3577,3581,3585,3588,3592,3597,3601,3604,3609, +3614,12,3619,3624,3629,3633,3637,3641,3644,3648,3652,3657,3660,3665,3670,3675,3679,3682,3686,3691,3696,3701,3705,3710, +3715,30,3719,3724,13,3729,3734,3738,3743,3747,3751,3755,47,3759,3763,3767, +3770,3775,3778,3783,3788,3793,3797,18,3801,3804,3807,3810,3814,3819,3823,3827,3832,43,3837,3841,3845,3849,3852,3856,3861, +3866,3871,3876,3881,66,3886,3890,66,20,3894,3897,3900,3903,3908,3912,3917,3922,3925,3930,3934,3937,3942,3946,3951,3954, +3959,3963,3967,3971,3975,3980,3983,3987,3991,3996,4000,4003,4008,4013, +4018,4023,4028,4033,4037,4041,4045,4050,4053,4057,4062,4066,4069,4074,4079,4084,4088,4093,4097,4102,4107,4112,4116,4121, +4125,4130,4135,4139,4143,4147,4151,4156,4160,4165,4168,4173,4177,4181,4185,4190,4194,4199,4204,4209,4214,4219,4224,4229, +4234,4237,4241,4245,4250,4255,4260,4265,4270,4275,4280,4285,4290,4295,4300,4304, +4309,4313,4318,4323,4328,4333,4338,4343,4348,4352,4357,4362,4367,4372,4376,4381,4385,4390,4394,4399,4404,4409,4413,4418, +4423,4428,4433,4438,4441,4446,4451,4455,4460,4465,4469,4474,4478,4483,4487,4491,4496,4501,4506,4511,4516,4521,4526,4530, +4534,4539,4544,4548,4553,4558,4562,4567,4572,4577,4582,4587,4591,4596,4600,47, +18,4605,18,4608,4612,4615,4620,4625,4630,4635,4640,4644,4649,4652,4656,30,4661,4665,4669,4673,4676,4679,4682,4687,4691, +4695,4697,180,18,4700,4703,4708,4712,4716,30,4720,4724,4728,4733,4737,4742,4746,4750,4755,4760,4765,4770,4775,4779,4783, +4787,4791,4796,4801,13,4806,4810,4814,4819,4824,4829,4833,4837,4840, +4845,4848,4852,4856,4859,4864,4868,4872,4877,4882,4886,43,4890,4895,4900,4904,4908,4912,4915,4919,4924,13,4929,4932,4937, +4942,4946,4949,26,4951,4956,4960,4963,4967,80,4972,4976,4980,4984,4988,4992,4996,5001,5005,5010,5015,5018,5022,5026,5030, +5034,5039,5042,5046,17,5050,17,5054,5058,5061,5065,5069,5074,5077, +5082,5086,5090,5095,5100,5104,5107,5111,5114,5119,5123,5126,5129,5133,5137,5142,5147,5151,5154,5158,5162,5166,5170,5175, +5178,5181,5186,5191,5196,5199,5202,5206,5210,5215,5219,5224,5229,5233,5238,5243,5247,5251,5255,5259,5263,5267,5271,5276, +5279,5282,5287,5292,5295,5299,5302,5306,5310,5315,5320,5324,5328,5333,5337,5341, +5346,5351,5356,5359,5363,5368,5372,5377,5382,5386,5391,5395,5400,5405,5409,5414,5418,5423,5426,5431,5435,5439,5442,5445, +5450,5454,5459,5464,5468,5472,5477,5482,5487,5491,5496,5501,5506,5511,5516,46,20,54,5521,5526,20,5530,5534,5538,5542, +5546,5551,5555,5559,5564,5568,5572,5576,5581,5585,5589,5594,5598,5601,5606, +5611,5615,5619,5624,5629,5633,5638,5643,5646,5651,5656,5659,5664,5667,5670,5673,5676,5679,5682,5685,5688,5691,5694,5697, +5700,5703,5706,5709,5712,5715,5718,5721,5724,5727,5730,5734,5737,5740,5745,5750,5755,5760,5764,5768,5773,5777,5782,5786, +18,5790,5795,5800,5805,5810,5815,5820,5824,5827,5832,5837,20,5841,5844,5848, +5852,5857,5861,5864,5867,5872,5876,5880,5884,5889,5894,5898,5902,5905,5908,18,5913,5917,5921,5926,5931,13,5935,5939,5944, +5948,5952,5957,5961,5964,5966,5970,5974,5977,5982,5985,5989,5993,5998,6002,6007,6011,6015,6018,6023,6028,6032,69,20,6036, +6041,6045,6049,6053,6058,6063,6068,6073,6076,6080,6085,6089,6092,6096, +6100,6104,6109,6113,6118,6123,6127,6132,6137,6142,6146,6150,6155,47,6160,20,6162,6167,6170,6175,82,6180,6185,6189,6194, +6199,6203,6207,6211,6216,6221,53,6225,6228,6232,6237,26,6240,6245,6250,6255,6260,6264,6268,6273,6278,6282,6287,6292,6297, +6300,6303,6307,6312,6315,6320,82,6325,6330,6334,6338,6343,6347,6352, +6355,6360,6365,6369,6374,6379,6384,6389,6394,6399,6404,6409,6411,6416,6421,6425,6430,6435,6439,6443,6447,6451,6456,6461, +6466,6470,6475,6478,6483,6487,6491,6494,6498,6501,61,6504,6509,6514,6519,6523,6526,6531,6535,6540,6544,6548,6552,6556, +6561,6566,6571,6575,6578,6583,6588,6592,6597,6600,6604,6607,6611,6616,6621,6626, +6628,6632,6636,6640,6644,6648,6653,18,6658,6662,6666,18,6671,6676,6679,6684,6689,6694,6699,6701,6705,6708,6712,6717,6722, +6727,6732,6737,6740,6744,20,6748,6751,6756,6761,6765,6770,6774,6779,6784,6789,6794,6798,6802,6806,6811,6815,6820,6824, +6827,6832,6837,6841,6844,6848,6851,6855,6858,6861,6864,6868,6871,6875,6880, +6885,6888,6893,6898,6902,6906,6911,6913,6916,240,6921,6925,6930,18,6934,6939,6944,6947,6950,6953,6958,6963,6967,6971, +6975,6979,6984,78,6987,6991,18,6995,6999,7004,7008,7013,7018,7022,7027,7030,7035,7039,7043,7047,7051,7054,7057,7061,7065, +7070,7074,7079,7083,7088,7092,7097,7100,7103,7107,7112,7116,7119,7123,7128, +243,7132,7134,7136,243,7139,7142,7146,7150,7154,7157,7160,7164,7169,7171,7175,7179,7184,7188,7193,7198,7202,52,7205,7210, +7214,7219,7223,7227,7230,7235,7239,7243,7247,7252,7257,7261,7266,7268,7272,7276,7280,7284,7288,7292,7295,244,7304,7308, +7312,7317,7322,7327,7331,7336,7341,7344,7348,7352,7356,7360,7364,7367,7370, +7375,7380,7384,7388,7391,7396,7401,7406,7411,7416,7420,7424,7428,7431,7434,7439,7443,7446,7450,7455,7460,12,7465,7467, +7470,7474,7479,7482,7486,7491,7496,7501,7505,7509,7513,7517,7520,7525,7529,7534,7538,7543,13,7548,7552,7556,7558,7561, +7566,7571,7576,7579,7583,7588,7592,7596,7600,247,7606,7611,7615,7619,7623,7626, +7631,7636,7641,7646,7650,7654,7658,7663,7667,7672,7677,7682,7686,7690,7694,7699,7703,249,7707,250,7713,7717,7721,7724, +7728,7732,7737,7741,7746,7751,7756,7761,7765,7769,7773,7776,7780,7785,7790,7795,7799,7804,7809,7813,7818,7823,7827,7831, +7836,7841,7846,7850,7855,7860,7865,7870,7873,7878,7883,7888,17,7893,7896,17, +7900,7904,7908,7913,7916,7920,7925,7930,7933,7937,7941,7944,7949,7953,7958,7963,7967,7972,7976,7981,7985,7990,7994,7999, +8003,8007,8011,8015,8020,8025,8030,8035,8040,8045,8050,8053,8057,8061,8066,8071,8075,8078,61,8082,8085,8090,181,47,8095, +8100,8105,8109,255,8115,247,8118,8123,18,8127,8132,8136,8139,8144,8149, +8153,8158,8161,8165,8170,8174,8179,8183,8187,8192,8197,8201,13,8204,8209,8214,8217,8221,8226,8230,250,8235,8240,8245, +8249,18,8254,18,8258,8263,244,8268,240,20,8272,8277,8281,8286,8289,8293,8296,20,8301,8304,8309,30,8313,8317,256,47,8322, +8326,8331,8335,8339,8344,8347,8350,8354,8358,8361,20,18,8366, +8370,30,257,8374,8377,8382,8387,8392,8397,8401,8404,8409,46,8414,8419,8424,18,8428,8433,8438,8441,8443,8447,8451,8455, +8458,8462,8467,8471,8476,8480,8483,8487,8491,8496,8501,8504,8509,8514,8519,8524,8528,8533,8538,8542,8547,8552,8556,30, +8561,20,8564,8569,8573,8578,257,54,8583,18,8587,8592,8597,8601,8606, +8611,8616,8621,8626,8629,54,8634,8639,8642,8647,8650,255,8653,8658,8662,8665,8669,8674,8677,8682,8686,8691,8695,8699, +8703,8707,8712,8715,8720,8724,8728,8733,249,8738,8743,8748,8753,8758,8763,8768,8772,8776,8780,8784,176,8789,8792,8795, +8799,8804,8808,8811,8815,8818,8822,8825,8828,8833,8837,8841,8844,8849,18,69, +8854,8859,53,8862,8865,8870,8875,8878,8883,8888,8893,8898,8903,8908,8911,8916,8920,8925,8929,8934,8937,8942,8946,8950, +8954,8958,8963,8967,8971,8976,8981,8986,8989,8994,8998,9002,9007,9010,9013,9018,9023,9026,9030,9034,9038,9043,9048,9053, +9058,9062,9067,9072,9076,9080,9083,9087,9091,9095,9100,9104,9109,9113,9118,30, +9121,9125,9130,9133,9138,9142,9146,9151,43,9156,9161,9166,9170,9174,9176,9180,9185,9189,9194,9198,9202,9207,9211,9215, +9219,9223,66,9226,9230,9235,9240,9245,9250,9253,9258,9262,9267,9272,9277,9282,9286,9291,9293,9297,9300,9304,9308,9312, +9316,9321,9325,9329,9333,9337,9341,9344,9348,9352,9356,9360,9365,9369,9374,69, +66,256,9379,179,69,9383,9387,9392,9397,9402,9406,9411,9415,9420,9424,9428,9432,9437,9442,9447,9451,9454,9458,9461,9465, +9470,9475,9480,9485,9488,9491,79,9496,17,9501,9505,9509,9514,9519,9524,9529,9534,9537,9540,9544,9547,9552,9556,9561,9566, +9570,9573,9577,9581,9586,9590,52,9594,9598,9601,9606,9610,9614,9617, +9622,9626,9630,9635,9639,9642,9647,9652,9655,9660,9664,9667,9671,9676,9681,9686,9690,9694,9698,9703,9706,9711,9714,9718, +9722,9726,9730,9735,9739,9742,9747,9751,9756,9761,9765,9770,9774,9779,9784,32,32,32,62,32,265,265,9791,9794,9798,9802, +9806,62,62,32,9811,13,17,13,26,9815,13,61,9818,9823, +9827,9831,9836,9840,9843,9848,9852,9857,9862,9865,9869,9873,9877,9882,9887,9891,9895,9899,9904,9909,9914,9919,9923,9928, +9933,9938,9942,9945,9948,9952,9956,9960,9963,9967,9970,9973,9977,9980,159,9983,9986,9991,9996,10000,10005,10010,10013, +10016,10020,267,10025,10028,10032,10037,10041,10046,10050,10054,10059,10064,10068,10073,10078,10082, +10086,10090,10094,10098,10101,10103,10108,10112,10117,43,10121,10126,10131,10136,10139,96,10144,10147,10149,270,10152, +10154,10159,10162,10166,10169,10172,10175,10178,10181,10184,10188,10191,10195,10198,10202,10206,10209,10213,10215,10218, +10222,10226,10229,10234,10238,10242,10247,10251,10254,10257,10260,10264,10266,10270,10273,10277,10281,10285,10290,10295, +10299,10303,10307, +10311,10315,10319,10321,10324,10328,10333,10338,10342,10347,10351,10354,10359,10362,10366,10369,10372,10377,10380,10385, +10389,10393,10396,10399,10402,10405,10409,10414,10418,10423,10428,10433,10438,10443,10446,10449,10453,10458,10462,10465, +10469,10473,10478,10483,10487,10492,10496,10500,10503,10507,10511,10516,10521,10526,10531,10536,10540,10543,10546,10549, +10553,10558,10563,10567, +10571,10574,10578,10583,10588,10591,10595,10599,10602,10605,100,279,270,10610,10615,10620,10625,267,10629,10633,10636, +10641,10645,10648,10653,10657,281,10661,10666,10670,96,10675,282,282,100,10678,10682,100,10686,283,10693,10698,10703, +10707,10711,10714,10716,279,10719,284,284,10723,96,10726,10729,10733,10738,10740,10744,10749,10753,10757,10761,10765, +10770,10773,10778,10782,10787,10791,10794,10798,10801,10804,10809,10813,10818,10822,10827,10831,10835,10837,10842,10845, +10849,10851,10856,290,10859,10862,10866,10870,10874,10879,10883,10888,10892,10895,10898,10901,10906,10910,10914,10917, +10921,10925,10929,10933,10938,283,10942,10945,10950,10954,10958,10962,10967,10969,10974,10977,10982,10987,10992,10996, +290,11000,11003,11007, +11010,11012,11017,11019,11023,11028,11033,11037,11042,11046,11050,11053,11058,11061,11065,11068,11071,11076,11081,11086, +11090,11095,11099,11104,11108,11113,11118,11123,11128,11132,11136,96,100,11141,11146,11150,11154,11159,11163,11166,11170, +11173,11177,11181,11185,11188,11191,11194,11196,11199,11204,11209,281,11213,11217,78,11221,11224,11229,11233,292,11237, +11240,11244, +11248,11251,11254,292,11259,11262,11265], +[1,3,296], +[0,297,298,299,10], +[0,-809,-2387,-3019,-682,-1967,-3020,-567,-3021,-3022,-1552,-2055,-3023,-1311,-2030,-2113,-3024], +[0,-705,-888,-1616,-664,-1107,-1521,-2162,-2466,-668,-1344,-3025,-1471,-1654,-2006,-2074,-2210,-2550,-915,-932,-1548, +-1666,-2093,-2177,-2388,-2439,-674,-795,-928,-1889,-2379,-2501,-522,-679,-923,-1077,-1376,-1646,-1783,-1942,-3026,-2378, +-3027,-3028,-1003,-3029,-1978,-3030,-2016,-2019,-3031,-2281,-2376,-3032,-527,-778,-3033,-3034,-2410,-23,-3035,-3036, +-3037,-1482, +-1534,-1600,-3038,-2040,-3039,-3040,-3041,-518,-528,-534,-1543,-1588,-1890,-1938,-2043,-2275,-2516,-305,-3042,-3043, +-3044,-1492,-3045,-3046,-556,-1906,-1908,-3047,-2285,-86,-3048,-3049,-3050,-2015,-3051,-263,-3052,-3053,-558,-3054,-3055, +-1962,-2044,-3056,-3057,-3058,-3059,-3060,-3061,-3062,-560,-1601,-2505,-3063,-3064,-969,-977,-1491,-2052,-3065,-3066, +-440,-3067,-562, +-3068,-958,-3069,-3070,-539,-3071,-1475,-739,-3072,-940,-962,-963,-1490,-3073,-3074,-3075,-916,-2013,-2017,-3076,-3077, +-3078,-3079,-1899,-3080,-428,-1897,-3081,-3082,-1017,-3083,-3084,-3085,-3086,-3087,-555,-535,-3088,-3089,-427,-661,-3090, +-3091,-26,-547,-741,-3092], +[0,-3093,-3094,-2634,-3095,-3096,-2006,-3097,-3098,-3099,-3100], +[1,3,301], +[0,302,0,303,11], +[0,-469,-2153,-1864,-2231,-470,-1461], +[0,-3101,-3102,-475,-3103,-3104,-3105], +[1,3,305], +[0,306,0,307,9], +[0,-1816,-2153,-1461,-1588,-2], +[0,-3101,-3102,-475,-3106,-3107,-3104,-3108,-3109,-3105,-3110,-3111], +[0,33,0,7,5], +[1,3,310], +[0,311,0,312,4], +[0,-2387,-1839], +[0,-475,-3112,-3095,-3113,-3114], +[0,33,0,7,4], +[1,3,315], +[0,316,37,317,4], +[0,-2387,-2550,-2177,-679,-23,-2080,-742,-3115], +[0,-475,-3116], +[1,3,319], +[0,320,0,7,11], +[0,-2387,-3117], +[1,3,322], +[0,33,0,323,9], +[0,-475,-3118,-3119,-3098], +[1,3,325], +[0,33,0,7,6], +[1,3,327], +[0,328,0,7,4], +[0,-3120,-2387], +[1,3,330], +[0,33,331,332,10], +[0,-3121], +[0,-475,-3122], +[1,3,334], +[0,335,336,337,5], +[0,-809,-2004,-682,-567,-3123,-3124,-3125,-3126,-3127,-3128,-2639,-3129,-3130,-3131,-3132], +[0,-485,-1107,-1415,-2006,-932,-2388,-3133,-2375,-1662,-767,-3134,-2019,-533,-3135,-1939,-2028,-2410,-23,-3136,-1534, +-3137,-3040,-528,-726,-2034,-44,-3138,-3139,-3140,-3141,-3142,-3143,-3144,-2052,-3145,-3146,-3147,-3148,-3149,-2013, +-3150,-3151,-428,-408,-3152,-3153,-3154,-3155,-3156,-3157], +[0,-3158,-3099,-2006,-3159,-3095,-3098,-3160,-3161,-3100,-3162,-3163], +[1,3,339], +[0,340,341,342,4], +[0,-1549], +[0,-485,-2006,-1031,-2019,-2410,-3040,-3164,-3052], +[0,-3158,-3099,-2494,-485,-3095,-3098,-3161,-3100,-2006,-3159,-3160], +[1,3,344], +[0,345,346,347,5], +[0,-682,-3165,-3166], +[0,-485,-1107,-2006,-1031,-2019,-2410,-3040,-3052], +[0,-3158,-3099,-2494,-485,-3095,-3098,-3161,-3100,-2006,-3159,-3160,-3167], +[1,3,349], +[0,350,351,352,4], +[0,-3168,-3169], +[0,-2387,-2299,-2402,-2300,-364,-3170,-3171,-2405,-3172,-365], +[0,-3173,-3174,-3175,-3176,-1791,-3177,-3178,-2299], +[1,3,354], +[0,355,356,137,4], +[0,-1107,-2218,-1591,-719,-742,-3179,-3180], +[0,-2177,-23,-3036,-3181,-3182], +[1,3,358], +[0,359,360,7,4], +[0,-3187,-1863,-3188], +[0,-3189,-2269,-3190], +[1,3,362], +[0,363,364,138,4], +[0,-812,-1460,-2177,-3191,-47,-25,-3192,-3193,-46,-3194,-22,-742,-3195,-3196,-3197], +[0,-2392,-2125,-2379,-3198,-3199,-3200,-40,-42,-3201,-3180,-3202,-3203,-3204,-3182], +[1,3,366], +[0,0,101,7,5], +[1,3,368], +[0,369,370,371,5], +[0,-47], +[0,-3189,-22,-3211,-3212,-3188,-3213], +[0,-525,-3214,-3215,-3216,-3217,-25], +[1,3,373], +[0,374,51,21,4], +[0,-3218,-24], +[1,3,376], +[0,377,378,379,5], +[0,-3221,-812,-1496,-3222,-2177,-1442,-2223,-679,-3223,-1044,-3224,-1646,-1783,-1936,-3225,-1864,-2654,-1125,-1600,-3226, +-3227,-3228,-3229,-3230,-3231,-3232,-3233,-3234,-3235,-3236,-3237,-3238,-3239], +[0,-652,-519,-2392,-2476,-2564,-2162,-2006,-932,-1610,-3240,-2125,-1110,-1942,-2019,-190,-2410,-3241,-3037,-3242,-3243, +-3244,-3245,-3246,-3247,-1603,-3248,-3249,-3250,-3251,-940,-3252,-3253,-3254], +[0,-3255,-3256,-3257,-856,-3258,-3259,-3260,-3261,-3262,-3161,-898,-3263,-3264,-1599,-3265,-1783], +[1,3,381], +[0,0,382,383,4], +[0,-2832,-2581,-350,-351,-3266,-3267,-3268,-3269,-3136,-3037,-589,-651,-1415,-2127,-2132,-2375,-2387,-2410], +[0,-775,-3215,-3270,-3271,-3272,-2410,-3273,-3274,-3275,-1644,-3276,-3277], +[1,3,385], +[0,386,387,388,4], +[0,-3278,-3279,-3280,-3281,-3282,-3283,-3284,-3285,-3286,-3287,-3288,-3289,-3290,-3291,-3292,-3293,-3294,-3295,-3296, +-1537,-3297], +[0,-3298,-3299,-3300,-3301,-3302,-3303,-3304,-3305,-3306,-86,-3307,-3308,-3309,-3310,-3311,-3312,-932,-940,-1344,-1534, +-2210,-2410,-3313], +[0,-3314,-488,-856,-3315], +[1,3,390], +[0,391,0,392,9], +[0,-3316,-3317,-3318,-3319,-1123,-3320,-2387], +[0,-3321,-1122,-2006,-3322,-3323,-3324], +[1,3,394], +[0,395,396,397,6], +[0,-2006,-2127,-1967,-23,-3325,-40,-2234,-41,-3326,-3327], +[0,-1415,-932,-2375,-767,-2410,-3136,-3040,-1448,-969,-973,-972], +[0,-3328,-856,-3262,-2006,-3105,-3110], +[1,3,399], +[0,400,401,7,10], +[0,-2177,-983,-3329], +[0,-815,-932,-23,-3330,-426,-2411,-3211,-3331], +[1,3,403], +[0,404,405,406,5], +[0,-24,-3332,-3218], +[0,-23,-46,-3333,-3334,-3219,-3335], +[0,-525,-3220,-3336], +[1,3,408], +[0,139,51,21,10], +[1,3,410], +[0,411,51,21,11], +[0,-24,-3337], +[1,3,413], +[0,414,415,21,4], +[0,-3338,-3197,-24,-3339,-3340], +[0,-23,-3219,-25], +[1,3,417], +[0,139,101,21,5], +[1,3,419], +[0,420,421,21,10], +[0,-2177,-24,-3341,-3342,-3343,-3344], +[0,-1591,-23,-3192,-44,-40,-3345,-3343,-3219], +[1,3,423], +[0,140,424,7,8], +[0,-633,-647,-3346,-2416], +[1,3,426], +[0,427,428,7,4], +[0,-2177,-3347,-3338,-3348,-24,-3342,-3343,-3349,-3350,-3351,-3352,-3353,-3197,-3344,-3354,-3340,-3355,-3356,-3357,-3358, +-3359,-3360,-3361,-3362,-3363,-3364,-3365,-3366,-3367,-3368,-3369,-3370,-3371,-3372,-3373,-3374,-3375,-3376,-3204,-3377, +-3378,-3379,-3380,-3381,-3382,-3383,-3384,-3385,-3386,-3387,-3388,-3389,-3390,-3391,-3392,-3393,-3394,-3395,-3396,-3397, +-3398,-3399,-3400, +-3401,-3402,-3403,-3404,-3405,-3406,-3407], +[0,-23,-46,-3219], +[1,3,430], +[0,431,51,7,4], +[0,-24,-3349,-3408,-3409,-3410,-3411], +[1,3,433], +[0,434,51,435,8], +[0,-3077,-24,-3349,-3412,-3204], +[0,-3413,-2410], +[1,3,437], +[0,438,439,7,4], +[0,-3414,-1591,-3415,-1046,-2234], +[0,-633,-23,-3373,-3204], +[0,0,0,7,5], +[1,3,442], +[0,443,0,7,5], +[0,-753], +[1,3,445], +[0,446,51,7,4], +[0,-812,-47,-25,-3193,-3194,-22,-3416], +[1,3,448], +[0,449,450,7,6], +[0,-3212,-3188], +[0,-25,-3194,-3211], +[1,3,452], +[0,141,142,143,8], +[1,3,454], +[0,455,456,457,4], +[0,-3442,-1116,-1666,-1969,-2522], +[0,-756,-932,-940,-943,-958,-966,-967,-968,-974,-2250], +[0,-2520,-2905,-3443,-3444,-3445], +[1,3,459], +[0,460,461,7,4], +[0,-3446,-2177,-680,-3447,-910,-1077,-3448,-1863,-479,-3449,-2115,-3450,-3451,-3452,-3453,-3454,-3455,-3456,-3457,-3458, +-3459,-3460,-3461,-3462,-3463,-3464,-3465,-3466], +[0,-1821,-3467,-2269,-3199], +[1,3,463], +[0,464,465,466,4], +[0,-3468,-3469,-195,-196,-197,-682,-1967], +[0,-21,-23,-26,-40,-41,-86,-3307,-3326,-350,-351,-3470,-3471,-3472,-427,-428,-528,-553,-3473,-932,-962,-969,-970,-1344, +-1534,-1942,-2006,-2019,-2127,-3474,-2140,-2174,-2410], +[0,-3475,-2006,-3476,-3160,-3477,-3098,-3478,-3479,-3480,-3481,-3482,-3100,-3483,-3484,-3485,-3486,-3487], +[1,3,468], +[0,469,0,19,4], +[0,-681,-66,-82], +[1,3,471], +[0,472,0,473,6], +[0,-3493,-2387], +[0,-3494,-3495,-3496,-3264,-3497,-3498,-475,-3499,-3500,-3501,-3095,-3488,-681,-3489], +[1,3,475], +[0,476,0,19,5], +[0,-681,-66,-83,-68,-80,-70], +[1,3,478], +[0,479,0,19,5], +[0,-681,-81,-66,-3502,-83,-68,-80], +[1,3,481], +[0,482,0,19,4], +[0,-681,-81,-66,-3503,-3502,-83,-80], +[1,3,484], +[0,485,0,144,5], +[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3504,-52,-77], +[1,3,487], +[0,488,0,144,4], +[0,-81,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3504,-52,-77], +[1,3,490], +[0,491,0,102,4], +[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3511,-52,-77], +[1,3,493], +[0,494,0,102,8], +[0,-3512,-73,-74,-62,-71,-79,-72,-80,-70,-63,-3513,-76,-54,-67,-69,-56,-75,-55,-65,-52,-3514,-77], +[1,3,496], +[0,497,0,102,8], +[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-3515,-65,-52,-77], +[1,3,499], +[0,500,0,19,6], +[0,-3516,-681,-3517,-81,-66,-3502,-71,-83,-68,-82,-65], +[1,3,502], +[0,503,0,19,4], +[0,-681,-81,-66,-3502,-71,-83], +[1,3,505], +[0,506,0,19,8], +[0,-3517,-81,-66,-83,-68,-85], +[1,3,508], +[0,509,0,59,6], +[0,-681,-66,-83], +[1,3,511], +[0,512,0,145,11], +[0,-3517,-81,-83,-68,-3519], +[1,3,514], +[0,515,0,19,8], +[0,-681,-66,-83,-82,-65], +[1,3,517], +[0,518,0,145,10], +[0,-3517,-83], +[1,3,520], +[0,521,0,19,4], +[0,-681,-81,-66,-3520,-3503,-80,-64,-3521], +[1,3,523], +[0,524,0,19,10], +[0,-681,-81,-66,-3502,-83,-68,-76], +[1,3,526], +[0,527,0,19,5], +[0,-681,-3517,-81,-66,-3520,-3502,-83,-68,-80,-82,-85,-64], +[1,3,529], +[0,530,0,19,8], +[0,-681,-81,-66,-74,-3502,-83,-68,-70], +[1,3,532], +[0,533,0,19,11], +[0,-681,-3517,-81,-66,-3502,-71,-83,-68,-80,-85,-64], +[1,3,535], +[0,536,0,19,4], +[0,-681,-81,-66,-3512,-3503,-3502,-83,-68,-80,-64], +[1,3,538], +[0,539,0,19,4], +[0,-681,-81,-66,-3520,-3502,-83,-68,-80,-85,-64], +[1,3,541], +[0,542,0,19,4], +[0,-81,-66,-3502,-83,-68], +[1,3,544], +[0,545,0,19,6], +[0,-681,-66,-68,-64], +[1,3,547], +[0,548,0,549,8], +[0,-3493], +[0,-3494,-3495,-3496,-3264,-3497,-3498,-2006,-3159,-3488,-681,-3489], +[1,3,551], +[0,552,0,19,6], +[0,-681,-3517,-81,-66,-3502,-83,-68,-85,-64], +[1,3,554], +[0,555,0,19,11], +[0,-3517,-66,-83,-68], +[1,3,557], +[0,558,0,59,11], +[0,-3517,-3522,-3523,-3524,-3525,-66,-3502,-83,-68,-3526], +[1,3,560], +[0,561,0,59,11], +[0,-66,-83], +[1,3,563], +[0,564,0,59,4], +[0,-3517,-81], +[1,3,566], +[0,567,0,568,4], +[0,-3493,-1549], +[0,-3494,-3495,-3496,-3264,-3497,-3498,-2476,-3527,-3528,-3529,-3488,-681,-3489], +[1,3,570], +[0,571,0,59,4], +[0,-3517,-81,-66,-3503,-3502,-83,-68,-80], +[1,3,573], +[0,574,575,146,5], +[0,-3530,-3531,-3532,-3533,-3534,-3535,-2550], +[0,-3536,-3537,-3149,-3037,-3041,-1077,-3125], +[1,3,577], +[0,578,0,147,5], +[0,-3,-23,-3374,-40,-3538,-3539,-3540,-617,-3541,-674,-679,-714,-719,-755,-3542,-927,-1022,-1026,-1077,-1107,-1276,-1320, +-1349,-1460,-1548,-1577,-3543,-3544,-1610,-1646,-3545,-3546,-3547,-1863,-3548,-1955,-2177,-2213,-3433,-3549,-2378,-2446, +-3550], +[1,3,580], +[0,581,0,582,4], +[0,-3553,-1361], +[0,-3554,-3555,-3161,-997,-3556], +[0,25,584], +1732406400000, +[0,25,586], +1733011200000, +[1,3,588], +[0,589,590,148,9], +[0,-1320], +[0,-21,-23,-40,-3558,-3559,-3560,-2997,-3326,-350,-351,-3561,-3562,-518,-620,-3563,-3564,-699,-767,-932,-945,-957,-958, +-978,-3565,-1110,-1111,-3566,-1320,-3567,-1389,-1412,-1437,-1471,-1473,-1475,-3568,-1477,-1479,-1481,-3569,-1486,-1547, +-1753,-1771,-1889,-1891,-3570,-2125,-2127,-3571,-3572,-3031,-2195,-2281,-3573,-2334,-3574], +[1,3,592], +[0,0,0,593,4], +[0,-775,-3215], +[1,3,595], +[0,0,0,596,6], +[0,-775,-3579], +[1,3,598], +[0,0,0,599,4], +[0,-775,-3580,-3215], +[1,3,601], +[0,602,0,603,4], +[0,-98,-1931], +[0,-775,-1391,-3581,-3582,-1889,-3583,-3584,-3585], +[1,3,605], +[0,60,0,606,9], +[0,-775,-3586,-3587,-1889,-3583,-3588,-3589,-3590,-3591,-3592], +[1,3,608], +[0,0,0,609,4], +[0,-775,-1931,-3593], +[1,3,611], +[0,612,613,149,5], +[0,-3594,-3595,-3596,-3419,-3597,-3598,-3599,-3600,-3601,-3602,-3603,-3604,-3605,-668,-695,-719,-812,-3606,-1040,-1107, +-3607,-1366,-1394,-1399,-3608,-1566,-3125,-3222,-1640,-1650,-1693,-1959,-3609,-2177,-3610,-2297,-2400,-3611,-2548,-3612], +[0,-3613,-3614,-3615,-3244,-190,-262,-357,-3035,-3198,-3616,-3617,-3048,-3618,-3619,-3149,-3620,-3621,-3622,-3623,-3037, +-3624,-3199,-3625,-3626,-3627,-3628,-427,-428,-664,-3629,-711,-3630,-838,-932,-958,-965,-978,-1004,-1077,-3631,-1654, +-1689,-1788,-1942,-3632,-2200,-2210,-2211,-3633,-2359,-2379,-2384,-2402,-2410], +[1,3,615], +[0,616,617,618,4], +[0,-653,-668,-685,-695,-1077,-2375], +[0,-86,-3307,-3048,-3049,-3136,-3637,-3638,-3639,-427,-428,-481,-693,-910,-932,-940,-967,-1344,-1415,-3640,-1637,-1658, +-1847,-1942,-3641,-3642,-2410], +[0,-3643,-856], +[0,25,620], +1730419200000, +[0,0,0,7,4], +[0,0,0,7,6], +[0,0,0,7,11], +[1,3,625], +[0,626,627,104,8], +[0,-3644,-3645,-3646,-3647,-668,-674,-775,-2858,-3648,-3649,-1442,-1548,-1600,-3425,-3650,-3651,-1608,-3652,-3653,-2161, +-2223,-2303,-3654], +[0,-3655,-3656,-3657,-3658,-3659,-3660,-3044,-3661,-3662,-3037,-3663,-3664,-3665,-518,-928,-3666,-1304,-3667,-3668,-1771, +-1889,-1927,-2162,-3669,-2410,-2469], +[1,3,629], +[0,630,631,632,9], +[0,-2387,-2426,-3675,-3676,-3677,-3678,-3679,-3680,-3681], +[0,-2391,-3682,-932,-2469,-1942,-767,-2410,-3037,-3683,-3684,-3664,-3685,-3686,-3687,-3688], +[0,-3689,-3690,-3691,-3692,-3693], +[1,3,634], +[0,75,635,636,4], +[0,-1654,-1942], +[0,-3694,-2414,-1446,-3695,-2402,-3671,-856,-3696], +[1,3,638], +[0,639,640,104,5], +[0,-3697,-3698,-3699,-3700,-3701,-3702,-154,-3703,-3704,-3036,-3705,-3706,-469,-510,-521,-3707,-668,-865,-1028,-1107, +-1304,-1321,-1341,-1442,-1459,-1641,-1645,-1734,-2195,-2205,-2223,-2325,-3708,-3709,-2488,-2550], +[0,-3710,-3711,-3712,-3660,-3044,-3713,-3037,-3714,-3715,-3041,-427,-428,-528,-928,-932,-972,-1344,-1534,-1548,-2375, +-2379,-2410], +[1,3,642], +[0,643,644,104,6], +[0,-3646,-668,-3648,-3649,-1442,-1548,-1600,-3425,-3650,-3716,-3651,-1608,-3652,-2161,-2223], +[0,-23,-3204,-40,-3659,-3136,-3660,-3044,-3661,-3662,-3717,-3037,-3663,-3718,-3719,-3720,-518,-528,-928,-3666,-932,-972, +-1304,-1415,-3668,-1889,-1927,-1942,-2082,-2375,-2410], +[0,25,646], +1734825600000, +[1,3,648], +[0,649,650,651,4], +[0,-3234,-367,-411,-3721,-617,-668,-686,-724,-3722,-1010,-1028,-1070,-3723,-3724,-1304,-1460,-1600,-3245,-1601,-3425, +-3725,-3726,-1734,-1966,-2162,-3727,-3728,-2231,-2232,-2234,-3729,-2299,-2446,-3730], +[0,-86,-3307,-3470,-3471,-3731,-3732,-3733,-3734,-3048,-3661,-3662,-3037,-3735,-3736,-3737,-3738,-3739,-427,-428,-652, +-3740,-1077,-1344,-1978,-2080,-2174,-2410], +[0,-3122,-3445,-1334,-3161,-3741,-3742,-3743], +[1,3,653], +[0,654,655,656,10], +[0,-3744,-3745,-3746,-3747,-3748,-3749,-367,-3750,-518,-635,-778,-779,-932,-940,-967,-969,-970,-1110,-1344,-3751,-1643, +-1889,-1908,-1930,-2162,-2163,-2275,-2281,-2282,-3436,-3752,-2335,-2501,-2503,-2507,-2508], +[0,-3753,-1534], +[0,-3100,-3754,-3755,-3756,-3590,-3551,-3757], +[1,3,658], +[0,659,660,661,9], +[0,-3661,-664,-668,-1551,-1600,-1816,-1951], +[0,-3758,-3035,-3759,-3037,-3760,-1344,-1534,-1942,-2410,-2469], +[0,-891,-3671,-856,-3690,-2410,-3761,-3762], +[1,3,663], +[0,664,665,105,5], +[0,-3341,-44,-3763,-3764,-3765,-3766,-742,-930,-3767,-2231,-3768], +[0,-23,-3769], +[1,3,667], +[0,668,669,105,4], +[0,-160,-3772,-3765,-3773,-3774], +[0,-3775,-2410], +[1,3,671], +[0,672,673,7,5], +[0,-44,-160,-3776,-3765,-3777,-3774], +[0,-3775,-3778,-2006,-2410], +[0,0,0,7,8], +[1,3,676], +[0,677,678,38,5], +[0,-983], +[0,-652,-1498,-1654,-3779,-932,-1810,-2125,-2127,-2177,-3780,-1942,-2468,-2410,-1772,-3330,-426,-3781,-2132,-3782,-2139, +-428,-3783], +[1,3,680], +[0,0,0,681,5], +[0,-3214,-3784,-932], +[1,3,683], +[0,684,685,150,4], +[0,-3785,-682,-3786,-863,-996,-3787,-3544,-3788,-1610,-1653,-3789,-1848,-2680,-1885,-1955,-1967,-3790,-2223,-3791,-3792, +-3793], +[0,-3794,-3795,-3796,-3035,-3797,-3043,-3798,-3136,-3799,-3800,-3801,-3802,-3037,-3803,-3140,-3040,-3052,-3804,-3805, +-3046,-3806,-3041,-427,-428,-3807,-585,-740,-748,-753,-756,-778,-795,-915,-2760,-3808,-932,-958,-969,-970,-1067,-1331, +-1344,-1415,-1442,-3809,-3810,-1652,-1821,-1942,-1952,-1992,-2006,-2019,-2024,-2125,-2195,-2214,-2275,-2278,-2375,-2379, +-2387,-2410, +-3811,-2435,-2501,-2503,-2505,-2509], +[1,3,687], +[0,688,689,151,4], +[0,-3819], +[0,-41,-409,-3040,-3052,-440,-2006,-2019,-3820,-727], +[1,3,691], +[0,0,0,692,4], +[0,-2651,-3827,-3828,-3829,-3830,-3831,-775,-2162,-3577,-3578,-3832,-3833], +[1,3,694], +[0,0,0,695,9], +[0,-2651,-3827,-3828,-3829,-3834,-3835,-775,-2162,-3577,-3578,-3832,-3833], +[1,3,697], +[0,152,0,153,8], +[1,3,699], +[0,152,0,153,4], +[1,3,701], +[0,0,702,703,6], +[0,-23,-3840,-40,-41,-42,-86,-3307,-190,-195,-3841,-196,-3470,-3842,-3471,-406,-407,-409,-3136,-3040,-3052,-635,-658,-741, +-767,-932,-940,-958,-959,-962,-967,-969,-970,-976,-978,-1110,-1344,-1415,-1419,-1942,-1952,-2006,-2019,-2125,-2174,-2375, +-2379,-2391,-2410,-2411], +[0,-3838,-1064,-2006,-3214,-3839,-3843], +[1,3,705], +[0,106,154,706,9], +[0,-2410,-3161,-3844,-3445,-1818], +[1,3,708], +[0,709,710,711,8], +[0,-3845,-198,-891,-3846], +[0,-3847,-3037,-427,-428,-767,-891,-3848,-932,-933,-935,-940,-958,-962,-967,-1942,-2376,-2379,-2402,-2410], +[0,-2410,-3161,-891,-3844,-3445], +[1,3,713], +[0,714,154,715,9], +[0,-198,-3849,-3850,-3851,-617,-1465,-2080], +[0,-2410,-3161,-1004,-1818,-3844,-3445], +[1,3,717], +[0,718,719,720,6], +[0,-3852,-3853,-3854,-3855], +[0,-3856], +[0,-1122,-3857,-856,-1599,-3858], +[1,3,722], +[0,723,724,725,5], +[0,-3859,-3860,-3855,-3854], +[0,-3861,-3856], +[0,-858,-1122,-3857,-856,-3862,-1599,-3858], +[1,3,727], +[0,728,0,729,4], +[0,-23,-40,-3863,-3864,-3865,-518,-534,-3866,-753,-767,-778,-779,-1041,-3867,-1643,-1889,-1908,-3868,-2162,-3869,-2163, +-2318,-2437,-2501,-2503], +[0,-2501,-3870,-3871,-3100], +[1,3,731], +[0,732,733,155,6], +[0,-3872,-3873,-3874,-3875,-3876,-3877,-3878,-3879,-3880,-3881,-3882,-3883,-3884,-3885,-3886,-3887,-3888,-3889], +[0,-3890,-3891,-3892,-3893,-3894,-3895,-3037,-1276,-1435,-2410], +[1,24,735], +[0,25,736], +1724872768784, +[1,3,738], +[0,739,740,741,5], +[0,-3896,-1993], +[0,-86,-3307,-3897,-3898,-3470,-3471,-3899,-932,-1344,-1392,-3900,-1534,-1942,-2174,-2469], +[0,-1446,-1942,-3485,-856,-3214], +[1,3,743], +[0,744,745,746,4], +[0,-3901], +[0,-2581,-3902,-3117,-406,-407,-409,-410,-3037,-3040,-3903,-3904,-3905,-3906,-440,-469,-3907,-470,-3908,-3909,-3910,-3911, +-3912,-767,-3913,-3914,-3915,-3916,-3917,-1435,-1449,-2926,-1637,-3918,-3919,-3920,-1771,-2006,-2019,-2023,-2080,-3921, +-3922,-2410,-2924,-3923,-2466,-3924,-2469,-3612,-2564], +[0,-3925,-3926,-3927,-3928,-2023,-3612,-1435,-3921,-2410,-2564,-3923,-3911,-3916,-3929,-3930,-3912,-3922,-469,-3931,-3908, +-3932,-3933,-3914,-3934], +[1,3,748], +[0,749,38,750,4], +[0,-2426], +[0,-3935,-3936,-3937,-3938,-3939,-3940,-3690], +[1,3,752], +[0,753,754,755,5], +[0,-3941,-3942,-3943,-3819,-1549], +[0,-2125,-2476,-2483], +[0,-2476,-3944,-3945,-3100,-3161,-3160,-3112,-3095,-3098,-3113,-3114], +[1,3,757], +[0,758,759,760,4], +[0,-3763,-229,-807,-1549], +[0,-3946,-2125,-2476,-2483], +[0,-2476,-3944,-3945,-3100,-3161,-3160,-3095,-3098], +[1,3,762], +[0,763,764,63,4], +[0,-3947,-2944,-2900,-3948,-3949,-3950,-2202], +[0,-3951,-3952,-3037,-2410], +[1,3,766], +[0,767,768,769,10], +[0,-2387,-1387,-3978], +[0,-1415,-2162,-668,-999,-2184,-3979,-932,-2127,-1077,-1417,-1942,-2281,-3136,-3037,-3980,-3564,-3981,-3982,-2284,-3983, +-3984,-3985,-2891,-3986,-3987,-3988,-3989,-940,-428,-3990,-351,-3991,-3992,-427], +[0,-1386,-3161,-3993,-3162,-3994,-3995,-3996,-752,-891,-3997,-3998], +[1,3,771], +[0,0,156,157,4], +[1,3,773], +[0,774,0,775,4], +[0,-4003], +[0,-2410,-727,-1788,-4004,-4005], +[1,3,777], +[0,778,779,780,4], +[0,-2852,-4006,-4007,-4008,-682,-4009], +[0,-4010,-367,-407,-409,-410,-3664,-932,-940,-4011,-1449,-2006,-2019,-2410,-2466,-2469], +[0,-3095,-3098,-4012,-3099,-3161,-3100,-4013,-4014,-3159,-2006,-3160,-4015], +[1,3,782], +[0,783,784,107,4], +[0,-4016,-4017,-4018,-4019,-4020,-237,-3037,-480,-668,-680,-4021,-1119,-4022,-4023,-4024,-4025,-4026,-1426,-4027,-4028, +-4029,-4030,-1427,-4031,-4032,-1639,-1950,-2218], +[0,-4033,-4034,-4035,-4036], +[1,3,786], +[0,787,0,7,4], +[0,-4017,-4046,-4047,-4048,-3037,-3041,-668], +[1,3,789], +[0,790,791,792,6], +[0,-4049,-469,-470,-1548], +[0,-234,-4050,-427,-428,-519,-4051,-932,-940,-958,-967,-1449,-1788,-1942,-2074,-4052,-2125,-2127,-2130,-2142,-2144,-2234, +-2379,-2387,-2402,-2410], +[0,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-3926,-4057,-1463,-4058,-4059,-3999,-4060], +[1,3,794], +[0,795,796,797,5], +[0,-4061,-809,-1548], +[0,-3778,-163,-270,-272,-274,-350,-4062,-351,-3561,-3043,-3136,-3040,-3052,-427,-428,-3807,-748,-915,-932,-940,-958,-967, +-969,-1415,-1419,-1449,-1788,-1942,-2006,-2019,-2125,-2127,-2130,-4063,-4064,-2142,-2144,-2233,-2375,-2376,-2387,-2402, +-2410,-2501,-2503,-2505,-238,-240], +[0,-3118,-4065,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[1,3,799], +[0,34,800,801,6], +[0,-4066,-3043,-3136,-4067,-3040,-3062,-427,-428,-3807,-767,-915,-932,-940,-958,-967,-969,-1415,-1449,-1788,-1942,-2006, +-2019,-2040,-2074,-4052,-2125,-2127,-2130,-2142,-2144,-2375,-2387,-2402,-2410,-238], +[0,-2006,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[1,3,803], +[0,804,805,7,4], +[0,-3469,-4068,-4069,-4070,-4071,-4072,-4073,-4074,-4075,-4076,-4077,-4078,-4079,-4080,-4081,-4082,-4083,-4084,-4085, +-4086], +[0,-4087,-3136,-1415,-2125,-2410], +[1,3,807], +[0,808,809,810,9], +[0,-482,-567,-668,-725,-4088,-1107,-4089,-1442,-4090,-1572,-1645,-1650,-4091,-2125,-4092,-4093,-4094,-4095,-4096,-2347, +-2433,-2462,-2463,-4097], +[0,-526,-4098,-555,-558,-756,-808,-1451,-1654,-1788,-4099,-2155,-2210,-2250,-2460], +[0,-2162,-3754,-775,-4100,-856,-3485,-4101], +[1,3,812], +[0,0,0,813,10], +[0,-4102,-4103,-4104], +[1,3,815], +[0,816,817,158,5], +[0,-2900], +[0,-231,-4105,-4106,-1536], +[1,3,819], +[0,820,28,821,6], +[0,-2852,-703,-2037,-4118,-2641,-2400], +[0,-3098,-3099,-3100,-3482,-2634,-1713,-2006,-3160,-4119], +[1,3,823], +[0,108,28,824,8], +[0,-4120,-3098,-4121,-3100,-3482,-2634,-1713,-4122,-2006,-4123,-3160,-4119], +[0,0,0,826,5], +[0,-3100,-3322,-3482,-2634,-1713,-2006,-4124,-4125], +[1,3,828], +[0,0,28,829,6], +[0,-3098,-3959,-3100,-3482,-4126,-2634,-1713,-2006,-3160,-4119], +[1,3,831], +[0,832,28,833,6], +[0,-2662,-2055], +[0,-3098,-3100,-3482,-2634,-1713,-4127,-4128,-4129,-2006,-3160,-4119], +[1,3,835], +[0,836,0,837,4], +[0,-4130,-257], +[0,-2006,-2634,-1713,-3160,-3098,-4119,-3482,-3100,-707,-4131,-4132,-4133], +[1,3,839], +[0,840,0,841,10], +[0,-703,-786], +[0,-2006,-2634,-1713,-3160,-3482,-3100,-906,-3771,-4134], +[1,3,843], +[0,0,0,844,5], +[0,-2006,-2634,-1713,-3482,-3100,-4124,-3322,-4125], +[1,3,846], +[0,847,0,160,4], +[0,-703,-2029,-1887,-1967,-44,-4135,-4136,-4137,-4138,-2055,-1311,-3024], +[1,3,849], +[0,39,0,850,4], +[0,-2006,-3159,-3119,-1613,-3843], +[1,3,852], +[0,0,853,161,4], +[0,-1415,-2446,-1344,-932,-1548,-753,-2379,-2402,-1942,-589,-21,-533,-2410,-23,-3136,-3738,-1771,-3044,-50,-86,-3268,-40, +-977,-2082,-940,-967,-2405,-42,-262,-4139,-428,-3307,-427,-26,-36,-35], +[1,3,855], +[0,856,0,857,5], +[0,-4145], +[0,-4146,-1599,-4147,-2006,-2093], +[1,3,859], +[0,860,861,862,10], +[0,-264,-263,-834,-1548,-1645,-2114,-2177,-2231,-2410,-4148,-4149,-4150,-4151,-4152], +[0,-4153,-3044,-3200,-3199,-932,-4154,-4155], +[0,-2410,-3816,-4156,-4157,-4158,-3960,-856,-4159,-4160,-3761,-2127,-4161,-3116,-4162,-4163], +[1,3,864], +[0,0,865,162,4], +[0,-932,-4153,-4164], +[1,3,867], +[0,868,869,162,4], +[0,-469,-4166,-2114,-263], +[0,-932,-4167,-3200,-4153,-4164], +[1,3,871], +[0,0,872,873,5], +[0,-4168,-4169,-4170,-4171,-3037], +[0,-4172,-4173,-4174,-4175,-4176,-4177,-4178,-4179], +[1,3,875], +[0,876,877,878,8], +[0,-267], +[0,-265,-4171,-2400], +[0,-4172,-4173,-4174,-4175,-4176,-4177,-4180,-4181,-3816,-4182,-4183,-4184], +[1,3,880], +[0,0,881,882,4], +[0,-4185,-265,-4171,-3037,-4186], +[0,-4172,-4173,-4174,-4175,-4176,-4177,-4187,-2444], +[1,3,884], +[0,0,0,885,5], +[0,-4188,-3100,-4189,-3110], +[1,3,887], +[0,888,889,890,4], +[0,-4190,-4191,-4192,-4193,-4194,-4195], +[0,-86,-3307,-4196,-4197,-3983,-4198,-3617,-4199,-4200,-3037,-4201,-4202,-4203,-4204,-523,-617,-720,-754,-767,-796,-4205, +-1004,-4206,-4207,-1063,-1116,-1278,-1449,-1729,-3246,-2228,-2229,-4208,-2291,-2293,-2892,-2410,-2426,-2469,-4209,-2817, +-4210,-2501,-4211,-2531], +[0,-2105,-4212,-1334,-1342,-2540,-2533,-4213,-4214,-4215,-4216,-3634], +[1,3,892], +[0,39,0,893,4], +[0,-2006,-3159,-4217,-1613,-3119,-3843], +[1,3,895], +[0,896,0,897,6], +[0,-703,-2825,-2690,-1967,-273,-44], +[0,-2006,-3159,-4217,-1613,-3119,-1510], +[1,3,899], +[0,900,0,901,4], +[0,-703,-786,-2029,-2825,-2690,-1967,-273,-44,-2997,-2055,-4218,-3024], +[0,-2006,-3159,-4217,-1613,-3119], +[1,3,903], +[0,904,0,905,9], +[0,-703,-786,-2825,-2690,-1967,-44,-2575,-2689], +[0,-2006,-3159,-4217,-4219], +[1,3,907], +[0,908,0,909,4], +[0,-44,-2690,-3024,-703,-1967,-2055,-4220], +[0,-2006,-3159,-4217,-4221,-1613,-3119,-4222,-4223,-4224], +[1,3,911], +[0,912,913,914,5], +[0,-4225,-4226,-4227,-4228,-4229,-4230,-4231,-4232,-4233,-682,-712,-4234,-4235,-4236,-1107,-1125,-4237,-4238,-4239,-4240, +-4241,-4242,-2095,-4243,-4244,-4245,-4246,-2400,-2427,-2429,-2501,-4247,-2650], +[0,-4248,-4249,-4250,-4251,-3040,-3046,-518,-726,-2634,-1906,-2006,-2019,-2083,-2318,-2391,-2410,-4252,-4253,-4254], +[0,-4147,-856,-1713,-1599], +[1,3,916], +[0,917,0,109,9], +[0,-4255,-4256,-2888,-4257], +[1,3,919], +[0,920,0,109,11], +[0,-2387,-276], +[1,3,922], +[0,923,0,109,5], +[0,-2083,-4262,-2087,-2090,-3649,-4263,-4264,-1292,-2429,-4265,-4266,-4267,-668,-4245,-2427,-2268], +[1,3,925], +[0,926,927,928,5], +[0,-4268,-820,-665,-4269], +[0,-664,-616,-1654,-932,-4270,-2125,-4271,-2379,-1098,-1942,-2410,-3035,-3037,-4272,-595,-964,-958,-940,-967,-428,-4273, +-427,-279,-4274,-4275], +[0,-4276,-4277,-4271,-3634], +[1,3,930], +[0,931,932,7,5], +[0,-4278,-4279,-4280,-281,-4281,-4282,-282,-4283,-4284,-4285,-283,-4286,-4287,-4288,-1315,-4289,-1582,-1645,-1758,-4290, +-1767,-4291,-1770,-1831,-4292,-1957,-4293,-4294,-4295,-2177,-2247,-4296,-4297], +[0,-4298,-4299,-4300,-589,-4301,-1722,-2319,-2325,-4302], +[1,3,934], +[0,935,29,936,5], +[0,-4282,-4283,-1107,-1645], +[0,-1764,-1776,-4303,-687,-4304,-4305], +[1,3,938], +[0,0,29,939,10], +[0,-1764,-687,-1733], +[1,3,941], +[0,942,943,7,6], +[0,-282,-4283,-4306,-1733,-1957,-2518], +[0,-4298,-4300,-4307,-2319], +[1,3,945], +[0,946,947,163,5], +[0,-4308,-4309,-4310,-1600,-1395,-4311,-4312,-4313,-4314,-4315,-4316,-1550,-4317,-2161,-3649,-4318,-4319,-1554,-4320, +-1603,-4321,-4322,-4323,-3430,-4324,-4325], +[0,-1107,-1654,-674,-2250,-4326,-633,-4327,-2251], +[1,24,949], +[0,25,950], +1734998400000, +[1,3,952], +[0,953,0,64,4], +[0,-293], +[1,3,955], +[0,956,0,64,10], +[0,-1787,-2387], +[1,3,958], +[0,959,0,64,4], +[0,-300], +[1,3,961], +[0,962,963,64,5], +[0,-4341,-888,-2387,-2177,-2551,-1645,-910], +[0,-1415,-1787], +[1,3,965], +[0,966,40,967,4], +[0,-2387,-297,-293,-1863,-2654,-2383], +[0,-4332,-4342,-4335,-4340,-4343,-4344], +[1,3,969], +[0,970,40,164,4], +[0,-2387,-297,-2177,-293,-2410], +[1,3,972], +[0,973,0,974,9], +[0,-2387,-297,-299,-293], +[0,-4332,-4336,-4348,-4338,-4339,-4340,-4344], +[1,3,976], +[0,977,40,978,11], +[0,-668,-2387,-1353,-2177,-715,-3187,-1864,-293,-1863,-2654,-23,-832,-1461,-1773,-300,-44,-4341,-40,-2234,-3766,-4349,-42, +-38,-33,-3376,-4350], +[0,-4332,-4335,-4336,-4351,-4352,-4340,-4343,-4344], +[1,3,980], +[0,981,0,165,4], +[0,-2387,-297,-299,-293,-295,-4353], +[1,3,983], +[0,984,40,165,8], +[0,-2387,-297,-2571,-4354,-293,-4355,-295,-4356], +[1,3,986], +[0,987,40,64,9], +[0,-1787,-668,-2387,-2177,-910,-1864,-293,-2551,-4341], +[1,3,989], +[0,990,991,76,4], +[0,-302,-4357,-4358,-4359,-812,-2177], +[0,-4360,-3035,-3621,-3037,-3199,-664,-697,-740,-932,-938,-939,-4361,-1111,-1654,-2210,-2379,-2410], +[1,3,993], +[0,994,995,76,5], +[0,-4357,-4358,-812,-1111,-1401,-2387], +[0,-3035,-4363,-3044,-3621,-3037,-4364,-4365,-664,-740,-932,-938,-939,-4361,-1548,-1654,-1972,-2379,-2410], +[1,3,997], +[0,998,999,1000,4], +[0,-480,-483,-4366,-692,-812,-888,-1097,-1366,-1401,-1532,-1645,-2177,-2267,-2297,-2654,-2820,-2525,-2528], +[0,-3307,-3615,-304,-4360,-4367,-4368,-3268,-3035,-4269,-4369,-3198,-4370,-4363,-3621,-3037,-4371,-4372,-4373,-4374,-4365, +-589,-664,-665,-721,-767,-932,-938,-940,-1344,-1534,-4375,-1654,-1788,-1942,-2200,-2210,-2379,-2384,-2410], +[0,-4362,-687,-3957,-4376,-3215,-4377,-4378], +[1,3,1002], +[0,1003,1004,1005,6], +[0,-303], +[0,-3307,-3615,-4367,-4368,-3035,-3621,-3037,-664,-721,-932,-938,-940,-1344,-1534,-1654,-4362,-1942,-2200,-2379,-2410], +[0,-4379], +[1,3,1007], +[0,1008,1009,1010,4], +[0,-3704,-4380,-4381,-4382], +[0,-4383,-4384,-4385,-4386,-4387,-3037,-3664,-928,-1037,-1107,-1722,-1942,-4388,-2410,-2426,-2469], +[0,-4389,-1105,-3691,-4390], +[1,3,1012], +[0,1013,0,65,4], +[0,-4391,-4392,-4393,-4394,-4395,-4396,-4397,-4398,-4399,-4400,-4401,-4402,-4403,-4404,-4405,-4406,-4407,-4408,-4409, +-4410,-4411,-4412,-4413,-4414,-4415,-4416,-4417,-4418,-4419,-4420,-4421,-4422,-4423,-4424,-4425,-4426,-4427,-4428,-4429, +-4430,-4431,-4432,-4433,-4434,-4435,-4436,-4437,-4438,-4439,-4440,-4441,-4442,-4443,-4444,-4445,-4446,-4447,-4448,-4449, +-4450,-4451,-4452,-4453, +-4454,-4455,-4456,-4457,-4458,-4459,-4460,-4461,-4462,-4463,-4464,-4465,-4466,-4467,-4468,-4469,-4470,-4471,-4472,-4473, +-4474,-4475,-4476,-4477,-4478,-4479,-4480,-4481,-4482,-4483,-4484,-4485,-4486,-4487,-4488,-4489,-4490,-4491,-4492,-4493, +-4494,-4495,-4496,-4497,-4498,-4499,-4500,-4501,-4502,-4503,-4504,-4505,-4506,-4507,-4508,-4509,-4510,-4511,-4512,-4513, +-4514,-4515,-4516,-4517, +-4518,-4519,-4520,-4521,-4522,-4523,-4524,-4525,-4526,-4527,-4528,-4529,-4530,-4531,-4532,-4533,-4534,-4535,-4536,-4537, +-4538,-4539,-4540,-4541,-4542,-4543,-4544,-4545,-4546,-4547,-4548,-4549,-4550,-4551,-4552,-4553,-4554,-4555,-4556,-4557, +-4558,-4559,-4560,-4561,-4562,-4563,-4564,-4565,-4566,-4567,-4568,-4569,-4570,-4571,-4572,-4573,-4574,-4575,-4576,-4577, +-4578,-4579,-4580,-4581, +-4582,-4583,-4584,-4585,-4586,-4587,-4588,-4589], +[1,3,1015], +[0,1016,1017,65,5], +[0,-4595,-4596,-712], +[0,-4597,-2391], +[1,3,1019], +[0,0,1020,65,8], +[0,-21,-23,-40,-1026,-1168,-1171,-1184,-1187,-1226,-4598,-4599,-2125,-2281,-2282,-2303], +[1,3,1022], +[0,0,1023,65,8], +[0,-21,-23,-40,-1168,-1171,-1184,-1226,-2125,-2281,-2282], +[1,3,1025], +[0,0,0,1026,4], +[0,-4600,-4601,-4602,-3578,-3445,-743], +[1,3,1028], +[0,1029,0,1030,4], +[0,-4603,-4604,-310,-4605,-4606,-4607,-4608,-4609], +[0,-4600,-4601,-4602,-3578,-3445,-4610,-2105], +[1,3,1032], +[0,1033,0,1034,5], +[0,-4611,-1640,-4612,-4605,-310,-4613,-4614,-311,-313,-4615], +[0,-4600,-4601,-4602,-3578,-3445,-4616], +[1,3,1036], +[0,1037,0,1038,4], +[0,-1640,-4617,-4614], +[0,-4600,-4601,-4602,-3578,-3445,-4616,-2178,-4618], +[1,3,1040], +[0,1041,1042,1043,4], +[0,-4619,-523,-617,-668,-1004,-1122,-1123,-1336,-1343,-1439,-1548,-1993,-4620,-3122,-4621], +[0,-21,-23,-40,-4622,-3035,-4269,-3617,-4623,-3044,-3621,-4624,-3037,-4625,-4372,-3625,-4626,-427,-428,-664,-665,-4627, +-749,-932,-934,-935,-940,-948,-4628,-958,-964,-1654,-1722,-1788,-1942,-1972,-2125,-2210,-2211,-2234,-2392,-2410], +[0,-4629,-4630,-3214,-4631,-3634,-4632], +[0,0,0,7,10], +[1,3,1046], +[0,1047,0,1048,6], +[0,-1851], +[0,-4125,-4633,-2006,-2476,-2299,-4634,-2410,-3214,-3100,-3445,-1109,-3160,-1062,-3122], +[1,3,1050], +[0,1051,1052,7,4], +[0,-4635,-4636,-4637,-4638,-4639,-4640,-4641,-4642,-4643,-4644,-4645], +[0,-3035,-3621,-664,-778,-925,-1471,-1475,-1479,-1480,-1482,-1483,-1654,-2125,-3047,-2275,-2402,-2410,-2501], +[1,3,1054], +[0,0,1055,1056,4], +[0,-3983,-4646,-351,-3266,-406,-407,-4647,-3037,-4648,-784,-932,-4649,-4650,-4651,-4652,-1110,-1449,-1889,-1891,-1942, +-4653,-4654,-2091,-4655,-4656,-2127,-2132,-2142,-2286,-2379,-2387,-2392,-2402,-4657,-2405,-4658,-4659,-4660,-4661,-4662, +-2410,-4663,-2468,-4664], +[0,-4665,-4666,-4667,-4668,-4669,-775,-3099,-4189,-4670,-4671,-856,-4672,-4673,-3264,-4674,-4675,-4676,-3214,-4677,-4678, +-4679,-4680,-4681,-4682,-4683,-2410,-4684,-2257,-4685,-2006,-3322], +[1,3,1058], +[0,1059,1060,7,4], +[0,-4686], +[0,-4687,-4688,-4689,-4690,-528,-4691,-824,-4692,-957,-1077,-4693,-1168,-1174,-1197,-1212,-1244,-1251,-4694,-4695,-1632, +-1839,-4696,-4697,-2347,-2410,-4698], +[1,3,1062], +[0,1063,1064,1065,8], +[0,-469,-864,-2359,-4699,-1107,-2162,-510,-4700,-4701,-2550,-932,-2125,-2177,-2334,-2536,-1004,-4702,-4703,-571,-679,-867, +-1376,-1942,-2199,-715,-4704,-4705,-633,-4706,-1354,-1633,-1729,-23,-1793,-4707,-47,-4708,-25,-305,-2232,-4709,-46,-4710, +-2104,-2433,-3194,-4711,-40,-4712,-4713,-41,-4714,-960,-2082,-32,-4715,-1458,-4716,-3077,-42,-4717,-4718,-4719, +-3408,-4720,-3362,-4721,-3398], +[0,-2322,-4722,-2234], +[0,-4723,-3116,-687,-3161,-3577,-4724,-3162,-4725,-3445,-4726,-4727,-4728,-3205,-4729,-4730,-3186], +[1,3,1067], +[0,0,1068,1069,9], +[0,-932,-3469,-4731,-4732,-4733,-4734,-4735,-768,-769,-4736,-1077,-1387,-4737,-2654,-4738], +[0,-4739,-3161,-4740,-3843,-4741], +[1,3,1071], +[0,1072,1073,1074,9], +[0,-1983,-1436,-4742,-4743,-1416], +[0,-1344,-2006,-2344,-932,-2127,-795,-2501,-1942,-4744,-2019,-2257,-2410,-3136,-3037,-3040,-4745,-4746,-2046,-4747,-4748, +-86,-4749,-3052,-2044,-4750,-2132,-4751,-1352,-969,-933,-958,-2140,-4752,-4753,-4754,-4755,-409,-940,-962,-967,-350, +-4756,-4757,-2113,-3267,-4758,-407,-428,-970,-4759,-4760,-4761,-351,-4762,-410,-4763,-2413,-3307,-935,-4764,-427,-3474, +-4765, +-3394], +[0,-2006,-2344,-4766,-4767,-4768,-4769,-4770,-4771,-3100], +[1,3,1076], +[0,1077,1078,1079,5], +[0,-3117,-3901,-1359,-2074,-2079,-2112], +[0,-2832,-23,-3341,-262,-4772,-4773,-4774,-406,-409,-4775,-410,-4776,-4777,-3705,-4778,-3037,-4779,-3040,-3052,-3041,-427, +-428,-523,-928,-4780,-932,-940,-941,-956,-958,-962,-967,-969,-970,-1077,-1384,-1449,-1459,-1683,-1729,-1942,-1984,-2006, +-2019,-2125,-2214,-2387,-2391,-2392,-2410,-2924,-3924,-2469,-2550], +[0,-2074,-2006,-4781,-3481,-4782,-4783,-1359,-1361,-4784], +[1,3,1081], +[0,1082,1083,1084,4], +[0,-4785,-4786,-989,-4787,-4788,-1588,-1864], +[0,-4062,-351,-4789,-4790,-2127,-2231,-2234,-2410], +[0,-2127,-3862,-1764,-3209,-4791,-4792], +[1,3,1086], +[0,1087,1088,1089,10], +[0,-4785,-3200,-823,-4793,-2114], +[0,-23,-3412,-3326,-350,-4062,-922,-2127,-2231,-4794], +[0,-2127,-3862,-4795,-1764,-3209], +[1,3,1091], +[0,1092,1093,1094,4], +[0,-653,-2359,-754,-2466,-668,-1111,-1650,-1872,-928,-1004,-4796,-1306,-2223,-679,-4797,-4798,-4799,-4800,-1461,-4801, +-4802,-4803,-4804,-263,-4805,-4806,-4807,-440,-4808,-264,-262,-4149], +[0,-4809,-2446,-2006,-932,-2125,-4810,-2469,-1942,-2019,-3628,-2410,-4198,-3037,-3738,-1534,-3040,-3041,-1772,-4811,-3617, +-3052,-2174,-2278,-4812,-969,-940,-962,-967,-428,-970,-1945,-4813,-427,-4814], +[0,-4810,-4158,-4165,-3816,-4815,-3960,-856], +[1,3,1096], +[0,1097,1098,1099,5], +[0,-2921,-4816,-4817,-1085,-3649,-4818,-1699,-2476,-4819,-4820,-4821,-4822,-4823,-4824,-4825,-4826,-4827,-4828,-4829, +-4830,-4831,-4832,-4833,-4834], +[0,-4835,-3983,-4836,-4837,-3250,-4838,-1313,-1449,-2006,-4839,-2318,-2466,-4840,-4841,-2469,-4842,-4843,-4844,-4845], +[0,-3095,-856,-3438,-4846,-4679,-4847,-2476,-3944], +[1,3,1101], +[0,1102,1103,1104,4], +[0,-4848,-3649,-4825,-4827,-4843], +[0,-4849,-4850,-4851,-1030,-2466,-2469,-2548,-353,-4842], +[0,-3690,-856,-1030,-3438,-4847], +[1,3,1106], +[0,1107,1108,1109,4], +[0,-4852,-4853,-4854,-823,-2792,-4855], +[0,-4856,-4857,-4858,-4859,-4860,-4861,-3035,-3617,-4862,-3621,-523,-617,-652,-767,-1004,-1323,-1654,-4863,-1970,-2253, +-2379,-2410], +[0,-4864,-4865,-4866,-4867,-4868,-4869,-4870,-4871,-4872,-4043,-3160,-3100,-475,-2006,-2476,-3440,-4873,-4004,-3634], +[1,3,1111], +[0,1112,1113,1114,10], +[0,-4852,-4853,-4854,-4874,-823,-4855], +[0,-4856,-3621,-4875,-4876,-4877,-4878,-4879,-523,-652,-767,-1654,-4863,-4880,-2253,-4881], +[0,-4864,-4865,-4866,-4867,-4868,-4869,-4870,-4871,-4872,-4043,-3160,-3100,-3440,-4873,-4004,-3634,-4881,-4882,-4883], +[1,3,1116], +[0,1117,1118,7,4], +[0,-4884], +[0,-4885,-4886,-4887,-4888,-4889,-928,-1344,-1449,-1534,-1654,-1788,-1942], +[1,3,1120], +[0,1121,1122,1123,4], +[0,-2006,-2019,-3654,-261,-4890,-4891,-4892], +[0,-2466,-2006,-2361,-1885,-4893,-2019,-3517,-2410,-4228,-2089,-3040,-4894,-3523,-3649,-2795,-1606,-4785,-3525,-2085], +[0,-3671,-856,-2257,-4895,-4896,-4897,-4898,-1599,-4899,-4900,-4901,-3095,-3098,-2006,-2476,-475,-2299,-4902], +[1,3,1125], +[0,1126,1127,110,6], +[0,-4903,-4904,-3165,-4905,-44,-3946,-195,-4906,-196,-197,-4907,-4908,-4909,-4910,-4911,-4912,-595,-4913,-682,-747,-809, +-4914,-4915,-4916,-4917,-4918,-4919,-4920,-4921,-4922,-4923,-4924,-3123,-4925,-4926,-4927,-4928,-4929,-4930,-4931,-4932, +-4933,-4934,-4935,-4936,-4937,-4938,-2002,-4939,-4940,-4941,-4942,-4943,-2003,-4944,-4945,-4946,-4947,-2004,-2013,-4948, +-4949,-4950, +-2053,-4951,-2344,-2345], +[0,-3139,-23,-4952,-4953,-162,-3778,-4954,-4955,-4773,-3562,-4757,-4762,-4763,-4754,-4956,-4957,-4958,-4749,-4760,-4959, +-406,-407,-409,-410,-4960,-3136,-4961,-4962,-4963,-4964,-3044,-3803,-4965,-4966,-3040,-4967,-3087,-3052,-4968,-4969, +-4970,-4971,-4972,-427,-428,-4973,-4974,-4975,-534,-4976,-668,-674,-767,-4977,-881,-4978,-3808,-932,-933,-940,-948,-952, +-958, +-959,-962,-963,-969,-970,-4756,-978,-1026,-4979,-1077,-1103,-1107,-1339,-1344,-1352,-1359,-1360,-1376,-1404,-1415,-4980, +-1416,-1419,-1421,-4981,-4982,-1437,-1449,-4983,-3134,-1534,-1548,-4984,-1662,-1805,-1942,-1943,-1950,-1955,-1959,-1983, +-4985,-4986,-4987,-2006,-2012,-2016,-2017,-2019,-3051,-4988,-4989,-4990,-4991,-2044,-4992,-4993,-2093,-2094,-4994,-4995, +-4996,-2177,-2205, +-2214,-2281,-4997,-4998,-2282,-4999,-5000,-2334,-2379,-2402,-2410,-5001,-2502,-5002,-5003], +[1,3,1129], +[0,1130,166,111,4], +[0,-5004,-5005,-5006,-5007,-2741,-5008,-1085,-1548,-5009,-5010,-2355,-2446], +[1,3,1132], +[0,1133,166,111,5], +[0,-5004,-5005], +[1,3,1135], +[0,1136,1137,111,4], +[0,-5006,-5007,-2741,-5008,-5025,-1085,-1343,-1548,-5026,-1729,-5009,-5027,-5010,-2355,-2446], +[0,-5028,-3044,-3037,-5011,-3738,-519,-865,-1771,-1942,-5012,-2376,-2379,-5013,-2388,-2389,-2410,-2501,-2503,-2509], +[1,3,1139], +[0,1140,1141,1142,6], +[0,-1110], +[0,-50,-5029,-5030,-932,-940,-965,-975,-2299,-2410,-2411], +[0,-932,-727,-5031,-2299], +[1,3,1144], +[0,1145,1146,1147,5], +[0,-3117,-5032,-5033,-461,-743,-5034,-5035,-1496,-1588,-5036,-5037,-3169,-2213], +[0,-5038,-3983,-365,-5039,-3037,-3172,-5040,-2127,-2299,-2301,-2410,-2466,-2469], +[0,-3161,-5041,-2299,-3176,-2466], +[1,3,1149], +[0,1150,1151,1152,5], +[0,-5042,-2814,-823,-1588,-5043], +[0,-2162,-2466,-2299,-3198], +[0,-5044,-5045,-2466,-2299], +[1,3,1154], +[0,1155,1156,1157,5], +[0,-23,-5046,-40,-41,-42,-2699,-5047,-5048], +[0,-534,-1626,-2437,-2501], +[0,-5049,-3839,-2006,-2501,-5050], +[1,3,1159], +[0,1160,1161,1162,5], +[0,-5051,-5052], +[0,-5053,-5054,-767,-2410], +[0,-5055,-5056,-525,-2410,-5057,-2501,-5058], +[1,3,1164], +[0,1165,1166,1167,5], +[0,-620,-2997], +[0,-1107,-1168,-1415,-2162,-2125,-1889,-1942,-749,-1248,-2281,-1232,-2410,-3037,-518,-1238,-1930,-2285,-5059,-5060,-5061, +-5062], +[0,-3754,-3098,-4902,-5063,-5064,-3482,-4012,-3160,-3100], +[1,3,1169], +[0,0,37,1170,10], +[0,-5065,-5066,-5067,-5068,-5069,-5070,-5071,-3100,-2410,-3214,-5072,-5073,-5074,-5075,-5076,-5077,-5078,-5079,-5080, +-5081,-5082,-5083,-5084], +[1,3,1172], +[0,141,142,143,4], +[1,3,1174], +[0,1175,1176,1177,9], +[0,-44,-737,-2387], +[0,-23,-38,-40,-42,-3244,-190,-3983,-3326,-350,-351,-3561,-3266,-5085,-3037,-427,-428,-539,-932,-940,-5086,-5087,-5088, +-5089,-1772,-1942,-2127,-5090,-2200,-5091,-2410], +[0,-5092,-3264,-5093,-5094,-3214,-5095,-3839,-2410], +[1,3,1179], +[0,167,1180,7,4], +[0,-409,-4775,-3040,-3052,-440,-757,-1772,-2006,-2019,-2965,-5097,-5098], +[1,3,1182], +[0,167,1183,1184,5], +[0,-2299,-2300,-3170,-975,-5099,-428,-5098,-365], +[0,-5100,-5101,-2299], +[1,3,1186], +[0,1187,1188,1189,4], +[0,-5102], +[0,-5103,-3136,-427,-5104,-932,-936,-5105,-940,-967,-968,-1415,-1419,-1441,-1446,-1637,-2375,-2376,-2410], +[0,-5106,-5107,-5108,-5109,-5110,-3100,-3323,-3105], +[1,3,1191], +[0,1192,1193,1194,5], +[0,-44,-406], +[0,-795,-2410,-5111,-1771], +[0,-3634,-795,-3160,-5092,-4868,-5112,-4867,-4866], +[1,3,1196], +[0,1197,1198,1199,4], +[0,-4984,-5113,-1863,-1950,-44,-22,-5114,-5115], +[0,-1449,-2410,-5111,-635,-658,-5116,-407,-5117,-5118], +[0,-3634,-3160,-5092,-1449,-5119,-4868,-5112,-4867,-4866], +[1,3,1201], +[0,1202,1203,1204,4], +[0,-5120,-5113,-2745,-1863,-28,-5115], +[0,-1449,-1001,-2127,-2469,-2410,-5111,-5121,-1950,-5122,-350,-5117,-5123], +[0,-3634,-5092,-1415,-1449], +[1,3,1206], +[0,1207,1208,1209,10], +[0,-668,-5120,-1418,-1950,-5124], +[0,-1415,-1344,-2006,-932,-1942,-21,-720,-2410,-23,-3136,-3040,-1952,-2034,-44,-2174,-3141,-2052,-5125,-796,-3081,-3153, +-3156,-5126], +[0,-3634,-5127,-1415,-2034], +[1,3,1211], +[0,39,1212,1213,5], +[0,-406,-407,-3040,-3052,-668,-5128,-1418,-5111,-1772,-2006,-2019,-2125,-2410], +[0,-3634,-2006,-3160,-5092,-1449,-5119,-4868,-5112,-4867,-4866], +[1,3,1215], +[0,0,1216,1217,4], +[0,-1392,-1449,-2006,-1001,-928,-2379,-5129,-2019,-2745,-2410,-5111,-3040,-5116,-5130,-5089,-5131,-5087,-5132,-406,-5133, +-5086,-409,-5134,-5088,-407,-5135,-5136,-3626,-948,-5137], +[0,-5138,-5139,-2006,-3634], +[1,3,1219], +[0,1220,0,1221,6], +[0,-4603,-5140,-412,-417,-418,-419,-420], +[0,-5141,-3122,-3445,-1334,-3161,-3690], +[1,3,1223], +[0,0,0,1224,9], +[0,-5141,-4601,-4602,-3578,-3445,-743], +[1,3,1226], +[0,0,0,1227,11], +[0,-5141,-4601,-4602,-3578,-3445,-5142,-743], +[1,3,1229], +[0,1230,1231,168,4], +[0,-5143], +[0,-652,-2392,-1344,-2410,-3037,-411,-2581,-86,-5144,-3307], +[1,3,1233], +[0,0,0,1234,6], +[0,-5141,-4601,-4602,-3578,-3445,-990], +[1,3,1236], +[0,0,0,1237,9], +[0,-5141,-4601,-4602,-3578,-3445,-5145,-5146,-5147], +[1,3,1239], +[0,1240,0,1241,4], +[0,-416], +[0,-5141,-4601,-4602,-3578,-3445,-5148,-1389,-5149,-5150], +[1,3,1243], +[0,1244,0,1245,6], +[0,-4603,-5151,-422,-423], +[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105], +[1,3,1247], +[0,1248,0,1249,4], +[0,-5143,-1640,-5152,-412,-413,-2701,-418,-421], +[0,-5141,-4601,-4602,-3578,-3445,-4616], +[1,3,1251], +[0,169,0,1252,8], +[0,-5141,-4601,-4602,-3578,-3445,-3122], +[1,3,1254], +[0,1255,0,1256,5], +[0,-1640,-415,-5153], +[0,-5141,-4601,-4602,-3578,-3445,-4616,-2178,-4618], +[1,3,1258], +[0,1259,0,1260,9], +[0,-1640,-5153], +[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105,-2401,-3214], +[1,3,1262], +[0,0,0,1263,6], +[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105,-2435,-5154,-5101], +[1,3,1265], +[0,0,0,77,5], +[1,3,1267], +[0,1268,0,1269,9], +[0,-5190,-5191,-5192,-5193,-2387], +[0,-5194,-5195,-3445,-5196,-5197,-3690], +[1,3,1271], +[0,1272,1273,1274,11], +[0,-1353,-5198,-5199,-429,-5200,-5201,-5202,-3331], +[0,-469,-1610,-2469,-1942,-5203,-4251,-3040,-1605,-5204,-2429,-4049,-3664,-1618,-5205,-5206,-5207], +[0,-932,-5208,-3784,-2410], +[1,3,1276], +[0,1277,112,1278,6], +[0,-812,-3782,-5202,-3331,-5209], +[0,-3272,-3217,-3214,-2410,-3215,-4132,-932], +[1,3,1280], +[0,1281,112,1282,5], +[0,-3782,-189,-3331,-5209], +[0,-932,-2410,-5210], +[1,3,1284], +[0,1285,1286,1287,8], +[0,-161,-163,-5211,-682,-5212,-5213,-906,-5214,-5215,-1311,-1548,-5216,-1666,-1967,-5217,-4922,-5218,-4929,-4934,-2002, +-2004,-2030,-4991,-2055,-2113,-2192,-2489,-5219], +[0,-21,-23,-26,-33,-38,-39,-40,-41,-42,-86,-3307,-407,-409,-3059,-5220,-3044,-5221,-3040,-3052,-427,-428,-5222,-5223,-523, +-528,-533,-534,-5224,-540,-5225,-5226,-720,-5227,-778,-796,-915,-916,-2760,-932,-969,-970,-1041,-1077,-1331,-1344,-1415, +-5228,-4981,-5229,-1534,-1643,-1667,-1814,-1942,-2000,-2006,-2019,-2049,-2052,-2251,-2275,-2281,-3085, +-5230,-5231,-5232,-2410,-2417,-2437,-2501,-2502,-2503], +[0,-2006,-3159,-3095,-3098,-3100,-5233], +[1,3,1289], +[0,1290,0,170,5], +[0,-703,-1436,-1548,-1699,-5234,-2650,-5235,-5236,-5237,-5238,-5239,-1320,-5240,-5241,-5242,-5243,-5244,-5245], +[1,3,1292], +[0,171,0,1293,5], +[0,-5248,-5249,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[1,3,1295], +[0,1296,0,1297,4], +[0,-5254], +[0,-3167,-5255,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[1,3,1299], +[0,171,0,1300,4], +[0,-3962,-5256,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[1,3,1302], +[0,1303,0,1304,8], +[0,-5257,-436], +[0,-5258,-5259,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[1,3,1306], +[0,0,0,1307,6], +[0,-5260,-5261,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[1,3,1309], +[0,1310,1311,1312,5], +[0,-1983,-754,-1004,-2401,-724,-5262,-5263,-5264,-5265,-442], +[0,-1415,-2177,-2375,-2293,-533,-2410,-23,-4198,-3136,-3037,-5266,-2581,-3617,-5267,-4203,-3732,-3697], +[0,-5268,-3100,-5269,-5270,-5271,-3441,-5272], +[1,3,1314], +[0,1315,1316,1317,4], +[0,-5273,-5274,-5275,-5276,-5277,-5278,-5279,-5280], +[0,-2384,-2392,-2391,-2466,-1344,-932,-2125,-5281,-2469,-928,-1889,-2910,-2281,-1747,-1874,-5282,-2214,-2302,-2410,-3037, +-1534,-1771,-3040,-5283,-5284,-2581,-5285,-5286,-2284,-5287,-5288,-5289,-2411,-5290,-3664,-5291,-2832,-5292,-5293,-2282, +-5294,-2970,-5295,-5296,-5297,-4999], +[0,-5065,-5298,-5299,-5300,-5301,-5302,-5303,-5304,-5305,-5067,-5306,-5307,-5308,-5309,-5310,-5069,-5311,-3100,-2410, +-5312,-5313,-5314,-5315,-5316,-5072,-5073,-5074,-5317,-5318,-5083], +[1,3,1319], +[0,1320,1321,1322,5], +[0,-753,-2314,-23,-635,-1588,-40,-2082,-5319,-3343,-3344,-3370,-3377], +[0,-4787,-2466,-461,-2892,-1863], +[0,-3100,-2466,-5044,-439], +[1,3,1324], +[0,1325,1326,1327,6], +[0,-23,-5320,-5321,-5322,-4776,-2041], +[0,-5323,-2006,-2019,-2923,-2892], +[0,-525,-5324,-2006,-2041,-2466,-5044], +[1,3,1329], +[0,1330,1331,1332,5], +[0,-429,-1026,-2411,-2478], +[0,-5325,-3037,-932,-980,-999,-5326,-1942,-2392,-2410,-2469,-2476], +[0,-2476,-5327,-5328,-932,-2410], +[1,3,1334], +[0,1335,1336,1337,10], +[0,-469,-470,-5329,-1335,-5330,-1851,-3122,-2187,-5331,-3434,-2548], +[0,-1004,-1654,-2250,-2293], +[0,-1004,-3438,-4847,-856], +[1,3,1339], +[0,1340,1341,113,5], +[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5339,-5340,-747,-823,-5341,-909,-5342,-5343,-5344, +-3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, +-4942,-2003,-4944,-2004,-2013,-2965,-2028,-5350,-5351,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5354, +-5355,-2427,-2429, +-5356,-2435,-5357,-5358,-5359], +[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3803,-3040,-3087,-3052,-5364,-5365,-5366,-932,-4597,-1026,-1031, +-5367,-5368,-1344,-1534,-1942,-1944,-1945,-2006,-2019,-2281,-2379,-2410,-2469,-5369,-5370], +[0,0,0,7,9], +[1,3,1344], +[0,0,1345,1346,4], +[0,-3037,-427,-428,-932,-934,-958,-2125,-2127,-2142,-2410], +[0,-3445,-5373,-5374,-5375,-5376,-5377,-5378], +[1,3,1348], +[0,1349,1350,1351,4], +[0,-5379], +[0,-23,-3204,-40,-43,-5380,-5381,-3621,-3037,-507,-708,-5382,-932,-1471,-1475,-1476,-1479,-5383,-1480,-1482,-1486,-1654, +-1771,-1788,-1810,-2125,-2127,-2128,-5384,-2131,-2137,-2139,-2141,-5385,-2379,-5386,-2410], +[0,-5387,-5388,-5389,-997,-5390,-5391,-5392,-5393,-5394,-5395,-5396], +[1,3,1353], +[0,1354,172,1355,5], +[0,-1641,-5397], +[0,-5398,-5399,-5400,-459], +[1,3,1357], +[0,1358,114,1359,5], +[0,-510,-615,-1548,-1671,-2071], +[0,-5401,-460,-3578], +[1,3,1361], +[0,1362,0,7,10], +[0,-461], +[1,3,1364], +[0,1365,1366,1367,8], +[0,-523,-668,-719,-1039,-1077,-1376,-1816,-5402,-2205], +[0,-350,-4062,-351,-3266,-5403,-3048,-5404,-3049,-3037,-2125,-2127,-4063,-5405,-2142,-5232,-2387,-2388,-2410], +[0,-687,-463,-2476,-2006,-5406,-5407,-2410,-3967], +[1,3,1369], +[0,0,1370,1371,4], +[0,-664,-1351,-1654,-1942,-2125], +[0,-5408,-1636,-5409,-2432], +[1,3,1373], +[0,0,27,1374,5], +[0,-5410,-465,-5411,-5412,-5413], +[1,3,1376], +[0,1377,1378,1379,8], +[0,-5414,-5415,-812,-5416,-3222], +[0,-3198,-5417,-3620,-3037,-3664,-2210,-2379,-2392,-2469], +[0,-5418,-5419,-763,-5420,-2166,-4043], +[0,44,15,16,6], +[1,3,1382], +[0,1383,1384,1385,4], +[0,-5450,-5451,-5452,-633,-5453,-724,-812,-5454,-5455,-1004,-5456,-5457,-1336,-5458,-1442,-5459,-5460,-5461,-1646,-5462, +-5463,-5464,-2062,-5465,-2188,-2194,-5466,-5467,-5468,-2446,-2491], +[0,-5469,-767,-1274,-1788,-5470,-2250,-2322,-2331], +[0,-468,-4865,-5471,-2319,-2322,-3634], +[1,3,1387], +[0,1388,1389,1390,5], +[0,-1025,-5472,-5473,-5474], +[0,-5475,-350,-4062,-351,-3267,-3035,-3621,-3037,-5476,-427,-428,-470,-633,-664,-767,-809,-5477,-932,-940,-1107,-1344, +-5478,-1430,-1440,-5479,-1471,-1475,-1482,-1534,-1654,-5480,-1729,-1788,-1942,-5481,-2127,-2140,-2379,-5482,-2410,-5483], +[0,-4182,-4058,-2451,-3926,-1463,-1456,-5484,-5485], +[1,3,1392], +[0,1393,1394,1395,4], +[0,-469], +[0,-5475,-3136,-3037,-427,-428,-469,-932,-940,-1344,-1415,-5479,-1534,-1942,-2375,-2410], +[0,-5486,-3815,-3276,-3926], +[0,45,15,16,10], +[1,3,1398], +[0,34,1399,1400,6], +[0,-1813,-5487], +[0,-472], +[1,3,1402], +[0,1403,1404,1405,4], +[0,-5488,-2438], +[0,-5489,-1654,-1788,-2416], +[0,-5490,-5491,-5492], +[1,3,1407], +[0,0,1408,1409,6], +[0,-2162], +[0,-775,-2162,-3160,-3576,-3577,-5493,-5494], +[1,3,1411], +[0,0,0,173,5], +[1,3,1413], +[0,0,0,1414,5], +[0,-475,-3161,-4865,-5176,-5495], +[1,3,1416], +[0,1417,0,1418,5], +[0,-5496,-5497,-7,-8,-9,-5498,-5499,-510,-518,-668,-722,-778,-784,-812,-5500,-834,-5501,-5502,-5503,-1017,-1041,-5504, +-1077,-5505,-1107,-1331,-1369,-1376,-5506,-1455,-1490,-1492,-1521,-1522,-1548,-1645,-5507,-1743,-1758,-1812,-1816,-1888, +-1908,-2000,-2092,-2114,-2125,-2148,-2163,-5508,-2177,-5509,-2233,-5510,-2275,-2286,-2287,-2330,-2346,-2410,-2437,-2488, +-2501, +-2505,-2508,-2510,-2567], +[0,-475,-477], +[1,3,1420], +[0,0,0,1421,4], +[0,-5175,-3118,-4865,-5495,-3119,-5511,-3098], +[1,3,1423], +[0,0,1424,1425,9], +[0,-3542,-1202,-5512,-1654,-2343], +[0,-5513,-5514,-5515,-5516,-5517,-5518,-5519,-5520,-5521,-5522,-5523,-5524,-5525,-5526,-5527,-5528,-5529,-5530,-5531, +-5532,-5533,-687,-5534,-712,-714,-5535,-4376,-3958,-4000,-5536,-5537,-5538,-5539,-5540,-5541,-5542,-5543,-5544,-1496, +-1573,-5545,-5546,-5547,-5548,-5549,-5550,-5551,-5552,-2265,-5553,-3770,-3974,-5554,-3975,-5555,-5556,-2547,-5557], +[1,3,1427], +[0,1428,115,1429,6], +[0,-5558], +[0,-5514,-3974,-4000,-687,-2265,-3975,-5559,-5560,-5538,-5550,-2547,-1573,-5545,-3958,-5554,-5561,-5562,-5412,-707,-5563, +-5564,-3965,-5565,-685,-5566,-5567,-5568], +[1,3,1431], +[0,0,1432,1433,10], +[0,-2541,-519,-2384,-480], +[0,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-3958,-5554,-5569,-5570, +-5571,-5572,-4004,-5573,-5574], +[1,3,1435], +[0,0,1436,1437,5], +[0,-2541,-519,-2384,-5575], +[0,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958,-5554], +[1,3,1439], +[0,0,0,1440,6], +[0,-5514,-714,-687], +[1,3,1442], +[0,1443,1444,1445,11], +[0,-4903,-5576,-44,-3946,-3763,-5577,-5578,-5579,-513,-786,-809,-5580,-5581,-1548,-1549,-2113,-4951,-5582,-3768,-2345, +-5583,-2489], +[0,-21,-23,-26,-34,-35,-36,-5584,-37,-3396,-5585,-3381,-38,-3382,-3412,-39,-40,-42,-86,-3307,-305,-3326,-3732,-3048,-3136, +-5586,-3164,-5587,-3661,-3037,-5588,-427,-428,-439,-4837,-5589,-5590,-5591,-5592,-441,-4838,-5593,-4817,-5594,-461,-5595, +-518,-523,-528,-533,-534,-538,-5596,-539,-5597,-661,-668,-674,-708,-5339,-5598,-719,-5599,-767, +-778,-779,-5600,-807,-5601,-5602,-4978,-5603,-928,-3808,-929,-932,-940,-957,-958,-959,-963,-5604,-967,-980,-1026,-4979, +-1077,-1107,-1111,-1125,-1168,-1174,-5605,-1261,-1331,-1344,-5606,-5607,-1415,-1419,-1421,-5608,-5609,-1439,-5610,-3025, +-1521,-1522,-5611,-5612,-1534,-5613,-1600,-1601,-1602,-1603,-5614,-1610,-5615,-1643,-1646,-1650,-1662,-1666,-1779,-1889, +-1908,-1942, +-1952,-1955,-1959,-2000,-4242,-2098,-5616,-5617,-3868,-5618,-2125,-5619,-5620,-2177,-2218,-5621,-2275,-2281,-4997,-4998, +-2282,-4999,-2284,-2335,-2347,-2355,-2375,-2376,-2392,-2402,-2410,-5622,-2427,-2437,-5001,-2466,-2476,-5623,-5624,-2478, +-2480,-5625,-2481,-5626,-2483,-2484,-5627,-2486,-2501,-2502,-2503,-2505,-2508,-5628,-5002], +[0,-2476,-3944,-3158,-3099,-485,-5629,-3095,-3098,-3160,-3161,-3100], +[1,3,1447], +[0,1448,1449,110,4], +[0,-703,-809,-44,-3165,-2345,-4903,-5630,-5631,-5632,-5633,-4910,-5634,-5635,-4904,-5636,-5637,-5638,-5639,-5640,-5641, +-5642,-5643,-5644,-5645,-5646,-5647,-5648,-5649,-5650,-5651,-5652,-5653,-5654,-5655,-5656,-5657,-5658,-4905,-5659,-5660, +-5661,-5662,-5663,-5664,-5665,-4951,-5666,-5667], +[0,-469,-1816,-2592,-2323,-2392,-881,-1107,-1415,-1805,-523,-668,-4977,-1344,-1359,-1392,-1449,-5668,-1880,-2006,-2193, +-865,-932,-1031,-1437,-1548,-2093,-2125,-5669,-2177,-464,-5595,-5670,-1955,-2402,-2501,-781,-1077,-1103,-4980,-1646, +-1662,-1942,-5671,-5002,-767,-5672,-1026,-3134,-4984,-1978,-4985,-2019,-5673,-5674,-1729,-1888,-2094,-2095,-2205,-2214, +-2410,-3136,-3037, +-5346,-1339,-1534,-2026,-4994,-162,-4647,-5675,-3040,-5676,-5677,-4986,-5678,-5679,-3744,-305,-4964,-3044,-3199,-4973, +-1737,-1950,-5680,-2101,-2581,-3778,-5681,-5682,-5683,-4960,-3803,-4972,-3649,-4982,-5684,-4954,-3562,-5685,-3048,-4961, +-5686,-3624,-5687,-3051,-4773,-5688,-3052,-1404,-1416,-5689,-2044,-4992,-2090,-3139,-5690,-3746,-4106,-5691,-3745,-3747, +-283,-5692,-959,-1352, +-4988,-5001,-5693,-1292,-4981,-5694,-406,-4974,-952,-1421,-4989,-5695,-409,-962,-1419,-5696,-5697,-5698,-4983,-2502, +-4971,-3459,-5699,-407,-970,-5700,-4963,-5701,-5702,-5703,-410,-2914,-5704,-4968,-5705,-4995,-4990,-4962,-5706,-4955, +-5707,-5708], +[1,3,1451], +[0,1452,0,7,5], +[0,-1805], +[0,67,15,16,4], +[1,3,1455], +[0,1456,1457,1458,9], +[0,-3278,-3279,-3299,-3283,-3288,-5709,-5710,-3304,-3305,-5711,-5712,-5713,-5714,-1537,-3297], +[0,-3285,-3286,-3287,-5715,-3302,-3303,-86,-3307,-5716,-3308,-3309,-5717,-3310,-3311,-3312,-5718,-5719,-617,-823,-932, +-940,-985,-1004,-1077,-1344,-1442,-1534,-1685,-1724,-1889,-2125,-2127,-5720,-4753,-2210,-2359,-2410,-3313,-2416,-5721, +-2446], +[0,-4902,-5722,-3690,-488,-856,-5723,-1789], +[1,3,1460], +[0,1461,1462,174,4], +[0,-620,-719,-5724,-3808,-5725,-1077,-1107,-1276,-1351,-1437,-5726,-1548,-1600,-1753,-1955,-2177,-2275,-2501,-2503,-2520], +[0,-3044,-3621,-3037,-932,-5727,-943,-958,-966,-968,-1654], +[1,3,1464], +[0,1465,1466,1467,4], +[0,-5729,-888,-2177,-2433,-2550], +[0,-4370,-3037,-3199,-3041,-519,-1077,-2410], +[0,-489,-1599,-5730,-3690,-4100,-856,-3262,-5731,-687,-5732,-3958,-3691,-5728,-5733,-5734], +[1,3,1469], +[0,1470,1471,1472,5], +[0,-812,-5735,-1730,-1465,-2456], +[0,-664,-665,-1654,-2210,-2211], +[0,-5736,-5737,-5738,-5739,-5740,-5741], +[1,3,1474], +[0,1475,0,7,4], +[0,-5742,-5743,-3320,-5744,-2387], +[1,3,1477], +[0,1478,0,1479,8], +[0,-5745,-5742,-494,-5743,-5746,-5744,-2387,-5747], +[0,-3217,-4795,-5748,-3214,-5749,-1764,-2006], +[1,3,1481], +[0,1482,1483,7,6], +[0,-5743,-5744,-2387,-5750], +[0,-5751,-3136,-3037,-1122,-1123,-1415,-2125,-2127,-2375,-2388,-2410], +[1,3,1485], +[0,1486,1487,7,6], +[0,-494,-5752,-2387], +[0,-5751,-3136,-5753,-1037,-1122,-1123,-1415,-5754,-2125,-2127,-2375,-2388,-2410], +[1,3,1489], +[0,0,1490,1491,5], +[0,-708,-756,-5755,-796,-1104,-1405,-1654,-1657,-1663,-1788,-2174,-2449], +[0,-5756,-1847,-3590,-2444,-3966,-3551,-3209,-5757,-4792,-3994], +[1,3,1493], +[0,1494,1495,1496,4], +[0,-2959,-5758,-5759,-5760,-5761,-523,-615,-5762,-1548,-1582,-1666,-1667,-5763,-2177,-5764,-2531], +[0,-5765,-5766,-2860,-3470,-3471,-5767,-3044,-3621,-3037,-5768,-3199,-4204,-4733,-664,-665,-741,-1654,-1942,-2174,-2210, +-2379,-2410,-2542], +[0,-5769,-5271,-3634,-4864,-3162,-5770], +[1,3,1498], +[0,1499,1500,1501,10], +[0,-5771,-5772,-5773,-5038,-5774,-5775,-5776,-5777,-5778,-5779,-5780,-5781,-5782,-5783,-5784,-5785,-5786,-5787,-5788, +-5789,-5790,-5791,-5792], +[0,-1788,-1722,-1654,-2210,-932,-1942,-2410,-5793,-3037,-3621,-4372,-3199,-966,-428,-5794,-427], +[0,-5795,-5796,-5797,-5798,-5799,-5800,-5801,-5802,-5803,-5804,-5805], +[1,3,1503], +[0,1504,1505,1506,5], +[0,-5806,-5807,-5808,-5809,-5810,-5811], +[0,-5812,-3136,-3037,-427,-428,-5813,-932,-940,-948,-958,-967,-1122,-1415,-1942,-5814,-1944,-5815,-2251,-2375,-2379,-2410], +[0,-5816,-5817,-3445,-5818,-1122,-5819,-3967,-2410,-5820], +[1,3,1508], +[0,1509,1510,1511,4], +[0,-5821,-510,-5822,-2062,-5823,-2325,-5824], +[0,-5825,-664,-1446,-1650,-1654,-2125,-5826,-2323,-2555], +[0,-5409,-501,-5827,-5408,-2323], +[1,3,1513], +[0,0,1514,7,8], +[0,-664,-1415,-1942], +[1,3,1516], +[0,0,1517,1518,10], +[0,-32,-5828,-932,-1654,-1788], +[0,-687,-3215,-503,-5829,-4377], +[0,45,15,16,6], +[1,3,1521], +[0,1522,1523,1524,6], +[0,-655,-5830,-5831,-5832], +[0,-5833,-5834,-516,-5835,-932,-993,-1065,-5836,-1365,-1777,-1788,-1794,-2156,-2322], +[0,-5837,-5838,-5839,-5840,-5396,-3582,-5841,-5842,-5843], +[1,3,1526], +[0,0,14,1527,6], +[0,-5839,-506,-5844,-5845,-5846,-5847], +[1,3,1529], +[0,1530,1531,1532,5], +[0,-2444,-5848,-655,-5849,-1797], +[0,-2322,-468,-753,-767,-21,-5850,-23,-1798,-40,-3335], +[0,-507,-4865], +[1,3,1534], +[0,0,1535,7,4], +[0,-2322,-1032], +[1,3,1537], +[0,1538,1539,1540,4], +[0,-820,-5851,-5852,-1794,-5853,-5854], +[0,-633,-1405,-1654,-1939], +[0,-507,-5855,-5856,-509,-3440,-1001,-1003,-2198,-5857,-4679,-4873,-4004,-3634,-3636,-5858,-5119], +[1,3,1542], +[0,0,1543,1544,4], +[0,-1788,-664,-2148,-1446,-1471,-1654,-2550,-932,-2127,-2177,-674,-571,-615,-1077,-589,-633,-23,-925,-1482,-5859,-566, +-1472,-5860,-559,-5861,-5862,-32,-1483,-539,-1487,-1479,-5863,-2137,-535,-5864,-549], +[0,-510,-5865,-3551,-3590], +[1,3,1546], +[0,0,1547,1548,9], +[0,-3037,-5866,-2319,-2379,-2410], +[0,-510,-5867,-3184,-1334,-5868,-5149,-1961,-3844], +[1,3,1550], +[0,1551,1552,7,4], +[0,-2122], +[0,-519,-932,-1942,-1729,-1939,-5869,-1534,-969,-933,-958,-940,-962], +[1,3,1554], +[0,0,1555,1556,4], +[0,-23,-5870,-40,-42,-5871,-3136,-533,-756,-1415,-1534,-1763,-5872,-5873,-1939,-1942,-2379,-2410], +[0,-2451,-5874,-510], +[1,3,1558], +[0,0,0,1559,5], +[0,-514,-4865], +[1,3,1561], +[0,1562,1563,1564,6], +[0,-2359,-714,-5875,-2177,-5876,-5877,-5878], +[0,-1788,-2322,-932,-1777,-516,-2156,-5834], +[0,-5879,-5880,-5881,-1764,-5879], +[1,3,1566], +[0,1567,1568,1569,6], +[0,-719,-1276,-5882,-1729,-5883,-2177], +[0,-23,-43,-539,-5884,-664,-708,-767,-1609,-1654,-1788,-2226,-2250], +[0,-5885,-5886,-5887,-5888,-1573,-3262,-5889,-5890,-5891,-1306], +[1,3,1571], +[0,1572,1573,1574,5], +[0,-679,-714,-5892,-5893,-1107,-5894,-1574,-1816,-5895,-2105,-5896,-2550], +[0,-526,-559,-664,-932,-933,-958,-962,-969,-1654], +[0,-5885,-3015,-1380,-5897,-2490], +[1,3,1576], +[0,1577,0,1578,10], +[0,-635,-658,-5898,-1863,-1934], +[0,-518,-775,-5899,-1889,-3583], +[1,3,1580], +[0,1581,1582,1583,8], +[0,-5900,-461,-462,-482,-5901,-506,-5902,-5903,-668,-5904,-680,-5905,-696,-5906,-5907,-5908,-5909,-812,-5910,-1040,-1111, +-5911,-1366,-1396,-1398,-5912,-5913,-1681,-1826,-5914,-1864,-1877,-1951,-5915,-4621,-5916,-5917,-2530,-2550], +[0,-5028,-5918,-3037,-480,-652,-999,-1001,-2210,-2319,-2331,-2384,-2410,-2541,-5747], +[0,-5919,-4004,-4043,-3634,-519,-5920,-5921,-5922,-4873,-5732,-687,-1415,-1654,-2322,-2319,-1989,-1412,-507,-5855,-1961, +-5923,-510,-5924,-5867,-3262,-5925,-5926,-5927,-5928,-5119,-4045,-1001,-2410], +[1,3,1585], +[0,1586,1587,1588,4], +[0,-668,-909,-1543,-1548,-1639,-1650,-2234,-5929], +[0,-3035,-3044,-4036,-3621,-3037,-3714,-4372,-3046,-615,-664,-5930,-1077,-1344,-1534,-1654,-1942,-5931,-2125,-2195,-2251, +-2330,-2388,-2410,-2501,-2503], +[0,-2501,-5932,-5050,-2410], +[1,3,1590], +[0,1591,1592,1593,5], +[0,-2165,-2435,-2444,-2446,-640,-997,-2536,-5933,-5934,-1985], +[0,-664,-1471,-1654,-932,-708,-1412,-2501,-793,-2416,-633,-2410,-3037,-1455,-711,-1413,-1481,-5935,-5936,-1475], +[0,-3690,-5937,-5817,-5938,-5939,-5940,-5941,-5942,-5943,-5944,-5945,-5946,-5947,-5948,-5949,-5950,-5951,-5952,-5953, +-5954,-5955,-5956,-5957,-5958,-5959,-5960,-5961,-5962,-5197,-5963,-5964,-5965,-5966,-5967,-5968], +[1,3,1595], +[0,0,1596,1597,4], +[0,-664,-1107,-668,-702,-999,-1127,-1344,-1446,-1449,-1471,-1654,-2210,-932,-1437,-753,-928,-1110,-1821,-1376,-5969,-1942, +-2416,-5970,-5113,-5971,-1474,-5972,-2410,-23,-3037,-5973,-925,-5974,-1339,-1482,-1489,-1534,-1771,-5975,-5976,-1320, +-1737,-4916,-5977,-5978,-2251,-5979,-40,-5980,-1480,-2173,-5981,-1134,-1149,-1491,-1136,-1148,-5982,-1475,-2253,-3345, +-940,-1479, +-5983,-5984,-36], +[0,-5985,-4665,-3634,-5119,-4873,-3440,-5986], +[1,3,1599], +[0,1600,1601,1602,4], +[0,-1069,-5987,-1063], +[0,-652,-1168,-668,-1344,-1471,-1654,-2210,-932,-1685,-1831,-2127,-1004,-5988,-1077,-5969,-1646,-756,-767,-1070,-1100, +-1276,-3727,-2325,-2410,-23,-617,-925,-1489,-1413,-1948,-5989,-1481,-516,-86,-5990,-40,-5991,-4062,-4066,-3326,-1488, +-2140,-5992,-1475,-1487,-1479,-1490,-350,-5993,-1486,-5994,-5995,-351,-5996,-5997,-3307], +[0,-2533,-1334,-5998,-1961,-3966,-4865,-4213,-3691,-3690,-3323], +[1,3,1604], +[0,1605,1606,1607,4], +[0,-5999,-1015,-6000,-6001,-2062,-2105,-2424,-2446,-2451,-2536,-2538,-1456], +[0,-6002,-633,-756,-6003,-1127,-1154,-2778,-1405,-1471,-1475,-1478,-6004,-1479,-1480,-1482,-1483,-1654,-1657,-1722,-2198, +-2416,-2491], +[0,-3966,-5800,-6005], +[1,3,1609], +[0,1610,1611,137,4], +[0,-527,-556,-566,-567,-719,-742,-3179,-1107,-1548,-6006,-1850,-2218,-2231,-6007,-679], +[0,-530], +[1,3,1613], +[0,1614,1615,138,9], +[0,-6008,-529,-6009,-6010,-566,-567,-568,-569,-570,-572,-742,-812,-1460,-1548,-1645,-1850,-6011,-2218,-2231], +[0,-530,-6012,-556], +[1,3,1617], +[0,1618,1619,7,5], +[0,-2114,-47,-25,-46,-22,-983], +[0,-1344,-1654,-815,-932,-986,-1942,-1534,-528,-6013,-958,-956,-967], +[1,3,1621], +[0,1622,1623,7,5], +[0,-6010,-567,-570,-831,-1451,-1548,-2231,-6014], +[0,-530,-572], +[1,3,1625], +[0,1626,0,7,4], +[0,-567,-1548,-6015,-2177], +[1,3,1628], +[0,1629,0,7,5], +[0,-567,-6012], +[1,3,1631], +[0,0,0,1632,6], +[0,-525,-2476,-4146], +[1,3,1634], +[0,1635,1636,7,4], +[0,-4020,-4776,-539,-6016,-668,-1119,-2218], +[0,-23,-4034,-4035], +[1,3,1638], +[0,175,1639,1640,8], +[0,-21,-23,-32,-40,-652,-932,-940,-967,-1110,-1344,-1534,-1942,-2501], +[0,-2501,-5932,-525,-3184,-3186,-3551], +[1,3,1642], +[0,0,1643,1644,8], +[0,-23,-34,-40,-526,-527,-528,-5884,-6017,-558,-6018,-560,-568,-570,-6019,-932,-940,-943,-958,-966,-967,-968,-974,-1654, +-1938,-1942,-2125,-2156], +[0,-3220,-6020], +[1,3,1646], +[0,1647,1648,1649,4], +[0,-1797], +[0,-2322,-932,-2125,-526,-527,-1365,-23,-528,-566,-6021,-40,-557,-559,-2156,-958,-934,-537,-3840,-535,-3382,-6022,-550], +[0,-525,-3862,-6023,-6024,-3966], +[1,3,1651], +[0,116,35,21,5], +[1,3,1653], +[0,1654,1655,1656,10], +[0,-3341], +[0,-23,-41,-6025,-527,-6026,-756,-932,-933,-940,-958,-967,-1031,-1344,-1534,-1613,-1763,-1942,-6027], +[0,-3220,-485], +[1,3,1658], +[0,1659,1660,1661,4], +[0,-24,-6028,-4003,-6029,-6030], +[0,-21,-23,-3362,-3204,-43,-664,-756,-767,-1654,-1788,-6031,-2250], +[0,-1405,-525,-3862,-6032], +[1,3,1663], +[0,1664,1665,1666,4], +[0,-3341,-47,-1107,-1548,-6033], +[0,-21,-23,-6034,-36,-3201,-3077,-38,-40,-41,-6035,-43,-4754,-510,-535,-540,-664,-6036,-6037,-1549,-1654,-1993,-2011], +[0,-3220,-6038,-1548,-3209], +[1,3,1668], +[0,1669,1670,1671,6], +[0,-6039,-1107,-1872,-2112,-2114], +[0,-21,-23,-37,-3204,-40,-527,-533,-722,-932,-934,-940,-958,-1344,-1415,-1534,-6040,-2251], +[0,-525,-3220,-3551,-6041,-6042,-6043,-2114,-6044,-6045,-4792,-6024], +[1,3,1673], +[0,0,1674,7,5], +[0,-1415,-6046], +[1,3,1676], +[0,0,0,21,5], +[1,3,1678], +[0,0,0,21,4], +[1,3,1680], +[0,1681,35,21,5], +[0,-6047,-6048,-567], +[1,3,1683], +[0,1684,35,21,5], +[0,-6049,-6050,-567,-568], +[1,3,1686], +[0,1687,1688,1689,6], +[0,-6051,-567,-568], +[0,-526,-546,-555,-559,-664,-1654], +[0,-525,-3220,-6052,-3336], +[1,3,1691], +[0,1692,35,21,5], +[0,-567,-568,-569,-570,-1548], +[1,3,1694], +[0,1695,1696,21,6], +[0,-6053,-567,-568,-570], +[0,-531,-6054], +[1,3,1698], +[0,116,35,21,10], +[1,3,1700], +[0,1701,35,21,4], +[0,-6054,-567], +[1,3,1703], +[0,1704,35,21,5], +[0,-567,-6055,-544], +[1,3,1706], +[0,0,1707,1708,4], +[0,-21,-23,-3194,-3840,-26,-3203,-40,-6056,-41,-43,-528,-6057,-664,-932,-933,-951,-956,-958,-962,-964,-967,-969,-1111, +-1654,-6058,-1942], +[0,-525,-3220,-2006,-6059,-6060], +[1,3,1710], +[0,1711,35,7,4], +[0,-6061], +[1,3,1713], +[0,116,35,21,4], +[1,3,1715], +[0,1716,0,7,6], +[0,-567,-753,-2082], +[1,3,1718], +[0,1719,1720,1721,6], +[0,-40,-41,-24,-3352,-38,-6062,-5584,-36,-3381,-6063,-3382,-6064,-553,-3393,-6065,-3396], +[0,-932,-23,-44,-2156,-958,-934], +[0,-525,-3184,-4795,-3214], +[1,3,1723], +[0,1724,1725,7,5], +[0,-6066,-6067,-545,-6068,-6069,-548,-6070,-6071,-6072,-6073,-6074,-6075,-6076,-6077,-549,-6078,-6079,-6080,-6081,-6082, +-6083,-6084,-550,-6085,-6086,-6087,-554,-635,-1384,-2177], +[0,-526,-528,-530,-531,-539,-558,-566,-664,-708,-932,-6013,-956,-1077,-1548,-1654,-1788,-6088,-2125], +[1,3,1727], +[0,1728,1729,7,6], +[0,-6066,-6068,-6069,-548,-6070,-6071,-6072,-6073,-6074,-6075,-6076,-6077,-549,-6078,-6079,-6080,-6081,-6082,-6083,-6084, +-550,-6085,-6086,-554], +[0,-6012,-531], +[1,3,1731], +[0,1732,0,7,8], +[0,-6089,-544,-6090,-552,-6091,-6092], +[1,3,1734], +[0,1735,0,7,4], +[0,-23,-26,-33,-6065,-6062,-5584,-6093,-3394,-3203,-3409,-38,-40,-41,-42,-44,-3766,-553], +[1,3,1737], +[0,1738,0,7,9], +[0,-6094,-6095,-563], +[1,3,1740], +[0,1741,0,7,5], +[0,-6096,-6017,-564], +[1,3,1743], +[0,1744,0,7,4], +[0,-565,-6097,-543,-546], +[1,3,1746], +[0,1747,0,7,5], +[0,-6067,-6098,-545,-6087,-551], +[1,3,1749], +[0,1750,1751,7,4], +[0,-527,-567,-753,-6099,-1548,-1650,-2234], +[0,-3542], +[1,3,1753], +[0,140,1754,7,8], +[0,-6009,-555], +[1,3,1756], +[0,1757,0,7,4], +[0,-567,-569,-570,-572,-1548], +[1,3,1759], +[0,1760,1761,7,5], +[0,-6008,-6010,-567,-570,-572,-812,-1110,-1384,-1548], +[0,-529], +[1,3,1763], +[0,1764,1765,7,6], +[0,-567,-6100,-1548,-6101], +[0,-529,-572], +[1,3,1767], +[0,0,1768,7,5], +[0,-2319,-633,-23,-6102,-40,-6056,-742,-41,-6103,-3381,-3409], +[1,3,1770], +[0,0,1771,1772,6], +[0,-519,-526,-528,-530,-537,-539,-6104,-559,-562,-668,-708,-767,-932,-6013,-956,-1059,-1788,-2125,-2127,-2128,-2137,-5385, +-6105], +[0,-525,-3214,-3215,-572], +[1,3,1774], +[0,1775,1776,1777,4], +[0,-2424], +[0,-711,-757,-849,-932,-958,-1471,-1485,-1989,-2104,-2127,-2416], +[0,-6106,-6107,-5394,-3122,-3844,-3323,-4865], +[1,3,1779], +[0,1780,1781,1782,11], +[0,-719,-1107,-1376,-1805,-2125,-2387,-2446,-2451], +[0,-6108,-3036,-3049,-3037,-3738,-6109,-3046,-427,-428,-3311,-6110,-6111,-3312,-664,-932,-958,-966,-1654,-1656,-6112, +-2195,-2200,-2335,-2376,-2379,-2402,-2410,-5260,-2501,-2503], +[0,-3445,-574,-1671,-3105,-6113], +[0,44,15,16,4], +[1,3,1785], +[0,0,1786,1787,5], +[0,-756,-1127,-1132,-1162,-6114,-1405,-1654,-2081], +[0,-6115,-6116,-6117,-6118,-514,-638], +[0,45,15,16,11], +[1,3,1790], +[0,0,1791,1792,8], +[0,-5859,-589,-633,-2322], +[0,-6118], +[1,3,1794], +[0,177,1795,1796,5], +[0,-1654,-932,-1405,-966,-958,-968,-943,-963,-974], +[0,-6119,-6120,-6121,-6122], +[1,3,1798], +[0,1799,1800,1801,4], +[0,-888,-1645,-1646,-1650,-6123], +[0,-932,-943,-958,-966,-968,-974,-1654,-2125,-2293,-2369,-2418,-2450], +[0,-1004,-3161,-6124,-6125,-6126,-1752,-3578,-3691,-5728,-3122,-3994,-1954,-3445,-3690], +[1,3,1803], +[0,1804,1805,178,4], +[0,-1723,-6127], +[0,-1415,-6128], +[1,3,1807], +[0,0,0,1808,4], +[0,-581,-3214,-3756,-6131,-5110,-6120,-3173,-6129,-6130,-770], +[1,3,1810], +[0,0,1811,178,8], +[0,-581,-6132,-1942,-2410], +[1,3,1813], +[0,1814,1815,1816,9], +[0,-6133,-719,-679], +[0,-1003,-1127,-600,-1130,-1156,-1134,-1148], +[0,-6134,-6135,-6136,-6137,-6138,-6139,-3870,-6140,-6141,-6142,-6143,-6144,-6145], +[1,3,1818], +[0,0,0,1819,5], +[0,-589,-6146], +[0,68,15,16,8], +[1,3,1822], +[0,1823,1824,1825,8], +[0,-1640,-1805,-2518,-2546,-1519,-2114,-2346,-679,-1646,-6176,-1888,-1948,-725,-6177,-2062,-6178,-6179,-6180], +[0,-6181,-4215,-2322,-2363,-1405,-2491,-633,-6182], +[0,-6183,-633], +[0,45,15,16,4], +[1,3,1828], +[0,1829,1830,1831,11], +[0,-1548,-6184], +[0,-756,-6185,-1405,-6186,-1991,-2111], +[0,-589,-6187,-6188], +[0,45,15,16,5], +[1,3,1834], +[0,1835,0,1836,9], +[0,-6189,-6190,-6191,-23,-3194,-25,-26,-6093,-5828,-3355,-3204,-3408,-40,-42,-46,-4228,-4145,-3037,-469,-6192,-501,-510, +-674,-679,-683,-714,-6193,-742,-1070,-1323,-6194,-1729,-1847,-1942,-6195,-2162,-2228,-2231,-2245,-2299,-2410,-2416,-6196, +-2476,-2550,-1376,-6197], +[0,-6198,-6199,-6200,-6201,-6202,-6203,-3161,-2410,-3214,-3018,-5065,-4726,-3445,-6204,-6205,-6206,-6207,-6208,-6209, +-6210,-6211,-6212,-6213,-6214,-6215,-4160,-6216,-6217,-2006,-6218,-6219,-2476,-6220,-6221,-4726,-2299,-6222,-6223,-2228, +-6224], +[1,3,1838], +[0,1839,1840,1841,10], +[0,-6225,-6226,-6227], +[0,-523,-664,-932,-1654,-6228,-1972,-6229], +[0,-4055,-6230,-6231,-2487,-1838,-3215,-6232,-6233,-2059,-6234,-510,-6235], +[1,3,1843], +[0,0,0,1844,5], +[0,-6236,-6237,-6238,-6239,-6240,-6241,-6242,-6243,-6244,-6245,-6246,-6247], +[1,3,1846], +[0,1847,0,1848,8], +[0,-6248], +[0,-5269,-6249,-596,-6250,-5968,-6251,-6252], +[1,3,1850], +[0,1851,1852,7,4], +[0,-6253], +[0,-1788,-2322,-2388,-1942,-1729,-1972,-2410,-3037], +[1,3,1854], +[0,1855,1856,1857,9], +[0,-6254,-6255,-6256,-6257,-3204,-38,-2687,-6022,-6258,-2965,-6259,-2489], +[0,-6260,-21,-23,-3204,-40,-6261,-43,-44,-4757,-2697,-358,-6262,-6263,-4754,-6264,-4956,-4749,-4959,-409,-3136,-3052, +-6265,-6266,-6021,-6267,-533,-534,-6268,-6269,-539,-557,-560,-6026,-567,-6270,-683,-756,-767,-799,-6271,-932,-6272,-1168, +-1261,-1266,-6273,-1365,-1415,-1422,-1440,-1666,-6274,-1743,-1763,-1771,-1782,-1788,-1939,-1942,-2000,-2006,-2019,-6275, +-6276,-2125,-2156,-2163,-6277,-2275,-2375,-2376,-2410,-2501,-2502,-2503], +[0,-598,-6278], +[1,3,1859], +[0,1860,1861,1862,8], +[0,-6279,-640,-1370,-2062], +[0,-1032,-2250,-2322,-2410], +[0,-640,-6280,-5827,-6281], +[1,3,1864], +[0,1865,1866,1867,5], +[0,-461,-6282,-6283,-1402,-1795,-2546], +[0,-510,-6284,-710,-1127,-1132,-1134,-1136,-1144,-1148,-1542,-1654,-1859,-2111,-2006,-6285], +[0,-4005], +[1,3,1869], +[0,0,0,1870,5], +[0,-6286,-6287,-6288,-6289,-6290], +[1,3,1872], +[0,1873,1874,7,6], +[0,-6291,-668,-6292,-1548,-6293,-1610,-6294,-6295,-1627,-6296,-6297,-2269,-6298,-6299], +[0,-6300,-601,-714,-932,-943,-958,-966,-968,-974], +[0,45,15,16,8], +[0,67,15,16,10], +[0,67,15,16,5], +[0,67,15,16,6], +[1,3,1880], +[0,0,1881,1882,5], +[0,-1405], +[0,-6301,-5389,-6302,-6187], +[1,3,1884], +[0,0,1885,1886,5], +[0,-705,-2152,-1107,-1805,-461,-6303,-1654,-2210,-1452,-1650,-2125,-6304,-615,-1303,-1405,-1813,-693,-2416,-462,-633,-617, +-769,-2187,-1453,-1161], +[0,-1961,-6187,-5923,-6305,-6306,-510,-5867,-6307,-6308,-6309,-6310,-6311,-6312], +[1,3,1888], +[0,0,1889,1890,6], +[0,-1654,-6313,-953], +[0,-6314,-6315,-6316,-6317,-6318], +[1,3,1892], +[0,1893,81,7,6], +[0,-651,-737,-812,-1335,-1351,-1800,-1983,-1999,-2401], +[1,3,1895], +[0,1896,1897,1898,4], +[0,-615,-6319,-1369,-1548], +[0,-6320,-664,-932,-940,-967,-1344,-1446,-1497,-1534,-1654,-1691,-1788,-1857,-1942,-2210,-2211,-2245,-2446], +[0,-1818,-1691,-6321,-3742,-6322,-6323], +[1,3,1900], +[0,182,1901,1902,4], +[0,-707,-1510,-1607], +[0,-6324,-1334], +[1,3,1904], +[0,0,1905,148,4], +[0,-1389,-2564,-1640,-2162,-2834,-1471,-932,-1111,-1437,-2093,-2127,-2149,-2334,-1412,-1442,-1753,-1889,-2195,-3574,-1942, +-699,-767,-3031,-2281,-21,-1354,-23,-6325,-3563,-1333,-1891,-2096,-6326,-518,-1772,-3559,-3564,-1481,-1547,-6327,-6328, +-2997,-3660,-3803,-3649,-3562,-6329,-945,-3566,-2429,-40,-6330,-957,-3326,-958,-978,-1475,-1477,-6331,-3561,-963,-1479, +-3571, +-350,-6332,-2084,-1486,-3565,-351,-1473,-3569,-3573,-3568], +[1,3,1907], +[0,0,1908,1909,4], +[0,-2162,-6333,-888], +[0,-620,-2162,-775,-6334], +[1,3,1911], +[0,0,0,1912,4], +[0,-622], +[1,3,1914], +[0,1915,1916,1917,8], +[0,-2728,-656,-668,-688,-2267,-2400,-2820,-2528], +[0,-519,-1788,-2384,-2541], +[0,-687,-6335,-6336,-3974,-4110,-4000,-4111,-4112,-6337,-5554], +[1,3,1919], +[0,1920,1921,1922,4], +[0,-6338,-2114,-6339,-2347], +[0,-633,-725,-2319,-2346], +[0,-633,-6340,-1076,-6341,-3862,-5142,-6342,-4161,-6118], +[1,3,1924], +[0,1925,1926,1927,4], +[0,-812,-1645,-2488,-6343,-6344,-6345,-6346], +[0,-664,-1654,-2125,-1077,-2091,-6347,-964,-630,-6348], +[0,-6346,-3214], +[1,3,1929], +[0,1930,1931,1932,4], +[0,-6346,-6349], +[0,-6350,-630,-664,-1654,-6347], +[0,-6346,-1631,-6351], +[1,3,1934], +[0,1935,1936,7,6], +[0,-3628,-2731,-1054,-6345,-2359,-2488], +[0,-3035,-3621,-3037,-6352,-664,-726,-1654,-6353,-1788,-1942,-6354,-2388,-2389,-6355,-2410], +[1,3,1938], +[0,1939,1940,1941,6], +[0,-6356,-6357,-6358,-668,-679,-729,-731,-6359,-6360,-6361,-990,-1072,-1077,-1336,-1361,-1639,-1812,-5763,-1999,-6362, +-2152,-2178,-2186,-2187,-2188,-2228,-2594,-2550], +[0,-3037,-6363,-664,-6364,-1119,-5735,-1654,-1942,-1980,-2105,-2111,-2125,-2210,-2229,-2234,-2269,-2293,-2410,-2460], +[0,-6365,-775,-6366,-6367], +[1,3,1943], +[0,1944,1945,1946,5], +[0,-2435,-1107,-2444,-2546,-507,-640,-997,-1285,-6368,-6369,-6370,-1958,-2114,-1370,-1977,-2347,-6371,-6372,-1464,-6373, +-6374,-2194,-6375,-6376,-6377,-725,-6378,-6379,-6380,-6381,-6382,-6383,-6384,-6385,-6386,-1848,-6387,-2062,-6388,-6389, +-771,-6390,-6391,-6392,-6393,-6394,-5936,-6395], +[0,-6396,-2319,-2330,-2177,-2346,-573,-6397,-6398,-710,-6399,-6400,-6401,-6402], +[0,-4865,-4792,-4791,-6403,-4161,-1764,-3214], +[1,3,1948], +[0,1949,1950,1951,9], +[0,-6404,-6405,-6406,-2114,-2346], +[0,-1449,-1705,-1972,-2105,-2125,-2319,-6407], +[0,-633,-6340,-5396,-1109,-1110,-6408,-6409,-4791], +[1,3,1953], +[0,1954,0,1955,9], +[0,-6410,-658,-6088,-6411,-6412], +[0,-657,-6413,-6414], +[1,3,1957], +[0,1958,1959,1960,11], +[0,-6415], +[0,-2322,-2125,-2410,-3037,-6416], +[0,-6417,-6418,-770,-6419,-6420,-6421,-6422,-5835,-6423], +[1,3,1962], +[0,0,1963,1964,10], +[0,-1788,-2323,-2384,-664,-2446,-668,-1654,-2210,-932,-2127,-2379,-1942,-589,-1729,-2211,-2410,-3035,-3037,-3621,-4372, +-1588,-3625,-2234,-977,-940,-967,-262,-3267,-428,-351,-6424,-427,-234], +[0,-1671,-637,-3215], +[1,3,1966], +[0,0,0,1967,6], +[0,-638,-4865], +[1,3,1969], +[0,1970,1971,1972,8], +[0,-461,-6425,-6426,-668,-1588,-1646,-6427], +[0,-6428,-932,-1107,-1654,-2125,-2127,-6429,-350,-4062,-351,-2231,-2234,-6430], +[0,-3214,-6431,-6432,-6433,-4795,-6434,-3184,-6052], +[1,3,1974], +[0,1975,1976,1977,11], +[0,-578,-5933], +[0,-468,-589,-633,-725,-1345,-5852,-5848,-2239,-2322,-2347,-2416], +[0,-6435,-4865,-633,-640,-6436,-6437,-6438], +[1,3,1979], +[0,0,1980,1981,4], +[0,-5834,-515,-516,-932,-1365,-1777,-2156,-2322], +[0,-640,-6439], +[1,3,1983], +[0,1984,1985,1986,4], +[0,-6127], +[0,-1654,-1733,-6128], +[0,-642], +[1,3,1988], +[0,0,14,1989,5], +[0,-6440,-6441,-6442,-3966,-3209,-3103,-6443,-4108,-5839,-6444], +[1,3,1991], +[0,0,1992,1993,5], +[0,-784,-1891,-1942,-2125,-2162], +[0,-775,-2162,-3754,-6445,-4672,-3576,-3161], +[1,3,1995], +[0,1996,1997,1998,5], +[0,-3417,-6446,-6447,-303,-304,-6448,-6449,-5007,-523,-668,-812,-6450,-6451,-1805], +[0,-4367,-4368,-3035,-3198,-6452,-3621,-3037,-4372,-427,-664,-932,-938,-939,-940,-967,-1654,-1661,-1722,-1763,-1788,-4362, +-2200,-2210,-2379,-2410], +[0,-3690,-856,-3438,-3328,-6453,-687], +[1,3,2000], +[0,2001,31,2002,5], +[0,-6376,-6399,-725,-6282,-1646,-2347], +[0,-633,-4161,-6454,-1644,-4792], +[1,3,2004], +[0,2005,2006,2007,6], +[0,-6455,-1666,-6456,-6457], +[0,-6458,-2319,-2454,-2456,-1607], +[0,-1573,-5545,-6459,-4055,-648], +[1,3,2009], +[0,2010,2011,2012,6], +[0,-6460], +[0,-6461,-932], +[0,-6462,-4054,-6463,-1069], +[1,3,2014], +[0,2015,2016,2017,4], +[0,-1578], +[0,-6464,-6465,-6466,-6467,-6468,-6469], +[0,-5149,-5839,-640,-6435,-6470,-650,-4055,-2512,-6471], +[1,3,2019], +[0,0,2020,2021,4], +[0,-932,-963,-1654,-1788], +[0,-6472,-651,-3590,-1838,-3215,-5845,-6473], +[1,3,2023], +[0,2024,2025,2026,4], +[0,-6474,-4003,-1047,-6475,-5086,-5087,-5089,-6030,-6476,-2550,-2551], +[0,-3037,-664,-6477,-767,-1654,-2250,-2379,-2410], +[0,-4005,-6478,-4004,-1405,-6479,-6480,-3966], +[1,3,2028], +[0,0,2029,7,5], +[0,-3446,-1415,-999,-1344,-1111,-2127,-928,-5354,-2375,-2379,-2402,-1077,-1942,-6481,-2410,-23,-3136,-1534,-1607,-3048, +-2174,-6482,-2132,-6483,-350,-796,-351,-6484], +[1,3,2031], +[0,2032,2033,2034,11], +[0,-1495,-6485], +[0,-2581,-6486,-6487,-3037,-3664,-6488,-6489,-2125,-2391,-2410,-2469,-6490], +[0,-3324,-6491,-6492,-3966,-4601,-6493,-2071,-1622,-6494,-6495,-6496,-6497,-6498,-6499,-6500], +[1,3,2036], +[0,2037,2038,2039,4], +[0,-6501,-6502,-6503,-6504], +[0,-5834,-516,-5835,-921,-932,-993,-1065,-5836,-1365,-1777,-1788,-1794,-2156,-2322], +[0,-3214,-3217,-6505,-3756,-6506,-6507,-6508,-6509,-6510,-655,-6511,-5924,-5831], +[1,3,2041], +[0,0,14,2042,4], +[0,-656,-6512,-6513,-6514,-6515,-6516,-864,-2424,-6517,-2265,-5554,-5845,-6518,-6519], +[1,3,2044], +[0,0,0,2045,4], +[0,-5180,-5177,-3839,-4865], +[1,3,2047], +[0,0,0,2048,5], +[0,-6520], +[1,3,2050], +[0,2051,2052,2053,9], +[0,-1723,-6521], +[0,-3037,-6522,-1004,-1442,-1654,-1870,-2250,-2384,-2410], +[0,-659,-6523,-6524,-6525,-6526,-6527,-5093,-6528], +[0,45,15,16,9], +[1,3,2056], +[0,0,2057,2058,4], +[0,-516,-932,-934,-958,-1077,-1654,-2501], +[0,-2501,-3862,-6529,-6024,-4792], +[1,3,2060], +[0,0,0,2061,5], +[0,-1859,-6530,-4004,-3634,-6531], +[1,3,2063], +[0,0,2064,2065,5], +[0,-652,-6532,-1654,-932,-928,-1110,-6533,-820,-1942,-190,-2410,-6534,-6535,-3311,-960,-6536,-350,-3312], +[0,-4004,-5855,-507,-3634,-664], +[1,3,2067], +[0,2068,2069,2070,5], +[0,-6534], +[0,-652,-664,-1654,-932,-1110,-1942,-190], +[0,-664,-6537,-4865,-510,-3634,-6538,-5923,-6306], +[1,3,2072], +[0,0,183,2073,9], +[0,-664,-1841,-6539], +[1,3,2075], +[0,0,2076,2077,9], +[0,-664,-1654,-1405,-756,-6347,-6540], +[0,-664,-6537,-6541,-6542,-6543,-3862,-6544,-6545,-6546,-5572,-6547,-6548,-6549], +[1,3,2079], +[0,0,2080,2081,8], +[0,-652,-2541,-519,-2384,-999,-1612,-1575,-6550,-3037,-3523], +[0,-712,-5535,-714,-3974,-4000,-687,-2265,-5514,-5553,-3770,-3975,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958,-5554], +[1,3,2083], +[0,0,2084,2085,10], +[0,-519,-528,-756,-6551,-932,-6552,-1168,-6553,-1197,-1243,-1252,-6554,-1548,-1788,-1976], +[0,-669,-6555,-3262,-4004,-6556,-6557,-6558,-6559], +[1,3,2087], +[0,0,0,2088,5], +[0,-5888,-6514,-5845,-6408,-6512,-6519,-6560,-6561,-6562], +[1,3,2090], +[0,2091,2092,7,4], +[0,-6563,-6564,-734,-6565,-3446,-6566,-6567,-1805,-1852,-6568,-6569,-2177,-6570], +[0,-3037,-3199,-3664,-932,-944,-1431,-1942,-2251,-2410,-2423,-2469], +[1,3,2094], +[0,2095,2096,2097,4], +[0,-6571], +[0,-350,-6572,-4062,-351,-367,-426,-6573,-427,-428,-6574,-6575,-6576,-726,-756,-767,-932,-6577,-6578,-957,-963,-985,-1107, +-1412,-1413,-1471,-1475,-1476,-1478,-1479,-1481,-3569,-1486,-6579,-1491,-3222,-1666,-1667,-1870,-2127,-2130,-3571,-6580, +-2140,-2410,-2550], +[0,-659,-6581,-6582,-6583,-5177,-3576], +[1,3,2099], +[0,2100,2101,2102,11], +[0,-1839,-2426,-6584,-6585,-1333,-6586,-861,-6587,-6588,-6589,-6590], +[0,-2392,-2386,-1344,-1449,-932,-1437,-2469,-1110,-1942,-2354,-190,-2410,-3037,-1534,-4647,-3615,-6591,-965,-6592,-2411, +-3664,-960,-6593,-978,-1943,-6594,-940], +[0,-6595,-1437,-3585,-6596,-3215,-5092,-6597,-3264], +[1,3,2104], +[0,2105,2106,2107,5], +[0,-769,-6598,-1962], +[0,-526,-6066,-548,-559,-664,-932,-1452,-1654], +[0,-6599,-1958,-5923], +[1,3,2109], +[0,2110,2111,2112,4], +[0,-44,-6600,-3946,-6601,-5579,-513,-595,-6602,-682,-709,-5212,-747,-753,-761,-6603,-6604,-6605,-6606,-5581,-6607,-3135, +-6608,-6609,-1398,-1442,-6610,-1452,-6611,-6612,-5216,-1666,-6613,-1942,-4918,-6614,-6615,-1992,-4930,-4987,-6616,-6617, +-6618,-6619,-2027,-2029,-6620,-6621,-2040,-2048,-2056,-2113,-6622,-4951,-2192,-6623,-2387,-2424,-2489,-2446], +[0,-23,-26,-33,-34,-35,-36,-3396,-5585,-3381,-6624,-38,-3351,-3382,-40,-41,-3744,-3746,-3747,-3562,-3059,-6625,-6626, +-3043,-6627,-6628,-3136,-6629,-3044,-6630,-6631,-5221,-3040,-6632,-3052,-6633,-6634,-4972,-427,-428,-482,-518,-523,-527, +-528,-533,-534,-538,-5596,-3133,-6635,-6636,-6637,-6638,-661,-668,-5598,-719,-767,-778,-3078,-786,-4977,-5603, +-915,-916,-2760,-932,-933,-940,-951,-958,-959,-962,-963,-969,-6639,-1017,-1021,-4979,-1041,-1074,-1103,-1107,-1168,-1174, +-1252,-5605,-1261,-1344,-1352,-1360,-6640,-1415,-1449,-3134,-1521,-5611,-1534,-1548,-4984,-5613,-6641,-5615,-1643,-1646, +-1650,-1652,-1653,-1662,-1664,-1667,-1792,-1814,-1889,-1908,-1952,-4923,-6642,-6643,-4986,-2006,-2012,-2013,-2016,-2017, +-3145,-3143, +-6644,-2028,-6645,-4242,-2098,-5616,-5617,-3868,-5618,-2125,-5619,-6646,-2281,-4997,-4998,-2282,-4999,-2284,-2335,-2347, +-2376,-2410,-2427,-2437,-6647,-6648,-2501,-6649,-2508,-5628,-5002,-3120,-2534], +[0,-6650,-3099,-2006,-3159,-3095,-3098,-3160,-3161,-3100], +[1,3,2114], +[0,2115,2116,2117,4], +[0,-6651], +[0,-6652,-3037,-1942,-2358,-2410,-4701], +[0,-1076,-2490,-6653,-6654,-6655,-6656,-1080], +[1,3,2119], +[0,0,2120,184,5], +[0,-686,-1344,-2910,-2250,-2322], +[1,3,2122], +[0,2123,0,2124,5], +[0,-81,-66,-3512,-73,-74,-3520,-62,-6660,-3503,-3502,-71,-6661,-79,-83,-68,-72,-80,-82,-85,-70,-6662,-6663,-6664,-6665, +-63,-6666,-3519,-3513,-64,-6667,-76,-54,-6668,-67,-69,-6669,-6670,-6671,-3521,-6672,-6673,-56,-75,-6674,-55,-6675,-6676, +-3515,-6677,-65,-3504,-3511,-6678,-6679,-52,-3514,-6680,-3526,-77,-6681,-6682], +[0,-3488,-681,-3489,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161], +[1,3,2126], +[0,0,2127,2128,5], +[0,-2384,-2127,-2354,-1339,-1605,-4062,-350,-351], +[0,-2006,-775,-3205,-6683,-682,-2444,-3590], +[1,3,2130], +[0,185,2131,2132,5], +[0,-633,-932,-934,-1336,-1722,-2188,-2471], +[0,-775,-6684], +[1,3,2134], +[0,2135,2136,2137,10], +[0,-824], +[0,-21,-23,-40,-42,-6685,-3136,-3037,-6686,-533,-708,-767,-825,-932,-999,-1344,-1415,-1534,-1535,-1763,-1942,-2061,-2177, +-6687,-2410,-2501], +[0,-2501,-3862,-6688,-3966], +[1,3,2139], +[0,0,0,2140,5], +[0,-5514,-685,-3974], +[1,3,2142], +[0,186,14,2143,8], +[0,-685,-3551,-4792,-6024,-3324,-6690,-6691,-6692,-3346,-6693,-6694,-6695,-1072], +[1,3,2145], +[0,2146,0,2147,5], +[0,-1107,-1000], +[0,-687,-4376,-6696,-6697,-6698,-4377,-4000,-6699,-6700,-6701,-3957,-6702], +[1,3,2149], +[0,0,2150,2151,8], +[0,-519,-2410,-2541], +[0,-687,-6335,-6336,-3974,-4110,-4000,-4111,-4112,-6337,-5554,-4055], +[1,3,2153], +[0,2154,2155,2156,4], +[0,-6703,-922,-6704,-5969,-6705], +[0,-932,-6706,-6707,-6708,-1344,-1534,-1788,-6709,-6710], +[0,-5514,-712,-4000,-3974,-687,-5550,-1573,-5545,-2547], +[1,3,2158], +[0,2159,2160,2161,11], +[0,-2120], +[0,-3037,-519,-2410,-2541], +[0,-687,-5564,-5514,-6711,-6712,-6713,-6714,-4110,-3974,-4000,-3975,-5550,-3958], +[1,3,2163], +[0,0,0,2164,9], +[0,-687], +[1,3,2166], +[0,0,2167,2168,4], +[0,-519,-1575,-6715,-2410,-2541], +[0,-687,-6716,-6717,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117,-4055], +[1,3,2170], +[0,187,2171,2172,10], +[0,-2198,-6718], +[0,-687,-714,-4002], +[1,3,2174], +[0,2175,2176,188,5], +[0,-1548,-2267,-714], +[0,-6719,-664,-693,-756,-6720,-6721,-1168,-1220,-1231,-1266,-2210,-2211], +[1,3,2178], +[0,117,2179,188,10], +[0,-693,-932,-940,-967,-1415,-6725,-6726,-1942], +[1,3,2181], +[0,2182,14,2183,10], +[0,-2219,-2267], +[0,-6727,-6728,-5554,-6729,-4783,-687,-3974,-4110,-5550,-6730,-5514,-2265], +[1,3,2185], +[0,2186,2187,76,4], +[0,-668,-2387,-1401,-1548,-2177,-1442,-6731,-1077,-2269,-303,-482,-4366,-6732,-480,-5676,-2267,-6733,-6734,-1366,-6735, +-2297,-6736,-6737,-6738,-2591], +[0,-664,-523,-1654,-932,-2379,-4361,-2410,-3035,-3037,-3621,-3044,-3199,-3660,-3048,-665,-6739,-6740,-4369,-938,-6741, +-4373,-4269,-939], +[1,3,2189], +[0,2190,2191,2192,5], +[0,-3922], +[0,-351,-3267,-3136,-3044,-3037,-6742,-427,-428,-6743,-6744,-932,-6745,-969,-1100,-1415,-1548,-2127,-6746,-2375,-2379, +-2410], +[0,-687,-2410,-3215,-6747,-6748,-4377,-5829,-3957], +[1,3,2194], +[0,2195,2196,2197,5], +[0,-6749,-6750,-6751], +[0,-23,-40,-534,-664,-767,-932,-934,-940,-958,-967,-1344,-1471,-1474,-1475,-1482,-1489,-1492,-1534,-1654,-1942,-2210, +-2384,-2417,-2501,-2503], +[0,-699,-6351,-6752], +[1,3,2199], +[0,2200,55,2201,4], +[0,-6753,-999,-6754,-1401,-6755,-6756], +[0,-699,-6351,-6757,-6758,-6759,-2059,-6234,-6760,-6761,-6762,-6763], +[1,3,2203], +[0,2204,2205,157,4], +[0,-2267,-2269,-2528], +[0,-3037,-427,-428,-652,-664,-668,-767,-932,-958,-965,-1166,-1654,-2125,-6313,-2410], +[1,3,2207], +[0,0,83,7,6], +[1,3,2209], +[0,0,2210,2211,10], +[0,-985,-2447,-2334], +[0,-3205,-6683,-682], +[1,3,2213], +[0,2214,0,2215,5], +[0,-689], +[0,-6764,-4340,-6297,-6765,-6716,-4700,-6722,-4000,-640], +[1,3,2217], +[0,0,2218,2219,6], +[0,-633,-6766,-1654,-1693], +[0,-510,-5411,-3262,-6767,-6768], +[1,3,2221], +[0,2222,2223,2224,4], +[0,-1494], +[0,-2198,-1654,-705], +[0,-3974,-4000,-1965,-3959,-5110,-6769,-705], +[1,3,2226], +[0,182,2227,2228,5], +[0,-1510,-1607], +[0,-4004,-1001,-5855], +[1,3,2230], +[0,2231,2232,2233,11], +[0,-4378,-6770,-1442,-6771,-6772], +[0,-932,-940,-1344,-1415,-1534,-1658,-1942], +[0,-4005,-6773,-6774,-708], +[1,3,2235], +[0,2236,2237,2238,6], +[0,-6775,-6776,-6777,-6778,-6779,-6780,-6781], +[0,-6782], +[0,-3496,-707], +[1,3,2240], +[0,0,2241,189,10], +[0,-849,-6783,-1304,-1600,-2424], +[1,3,2243], +[0,0,2244,189,4], +[0,-23,-40,-4691,-709,-849,-1304,-6785,-1600,-1978,-2424,-2501], +[1,3,2246], +[0,2247,2248,2249,4], +[0,-3523,-2741], +[0,-1654,-2384,-2541], +[0,-712,-5535,-775], +[1,3,2251], +[0,0,0,2252,5], +[0,-3974,-3770,-712,-5514], +[1,3,2254], +[0,0,2255,2256,5], +[0,-932,-936], +[0,-5514,-3974,-714], +[1,3,2258], +[0,2259,2260,2261,11], +[0,-2269,-6786], +[0,-526,-559,-668,-2320,-2322], +[0,-6787,-5554,-5514,-4000,-3974,-4001,-4002], +[1,3,2263], +[0,0,2264,2265,6], +[0,-1003,-1452,-1654], +[0,-687,-3957,-6788], +[1,3,2267], +[0,2268,190,2269,11], +[0,-6789,-6790,-1551,-6791], +[0,-4378,-1838,-6748,-4377,-5829,-6792,-3215,-6747,-687,-3957,-6722], +[1,3,2271], +[0,2272,2273,2274,4], +[0,-6789,-6793,-6794,-6791], +[0,-350,-351,-1448,-2127,-2337], +[0,-3974,-4376,-6795,-3262], +[1,3,2276], +[0,0,2277,2278,4], +[0,-2384,-1415,-932,-1110,-2375,-1942,-190,-2410,-3136,-3037,-2411,-959,-940], +[0,-719,-3957,-5829,-3215,-687,-6748,-4377,-4378], +[1,3,2280], +[0,2281,2282,2283,5], +[0,-1107,-815,-1548,-6796,-6797,-1077,-1376,-1646,-3767,-2270,-831,-6798,-2271,-796], +[0,-1788,-664,-2446,-1654,-2210,-1104,-2177,-708,-1753,-21,-1365,-1972,-23,-43,-2174,-40,-1656,-539,-6799,-6800,-6801,-36, +-741], +[0,-5890,-3240,-3276,-6802,-720], +[1,3,2285], +[0,2286,2287,146,4], +[0,-86,-3534], +[0,-3536,-3537,-3535], +[1,3,2289], +[0,0,2290,2291,6], +[0,-526,-528,-535,-546,-6017,-558,-566,-708,-767,-855,-932,-940,-967,-1415,-1639,-1942,-2125,-2127,-2128,-2137,-2143, +-2517], +[0,-5839,-525,-4795,-6803,-3184,-6804,-6805,-3264,-6806,-6807,-6722,-6808,-6809,-6810,-6811,-6812,-6813,-6814,-6815,-2265, +-6816,-6817,-6818,-6819,-3110], +[1,3,2293], +[0,0,55,2294,6], +[0,-5389,-6820,-997,-6821,-6822,-5078,-6823], +[1,3,2296], +[0,2297,191,2298,5], +[0,-651,-6824,-812,-5397,-6825,-2155,-2453], +[0,-724,-6826,-6827,-5401,-1004,-6828,-1334,-5827], +[1,3,2300], +[0,2301,31,7,4], +[0,-6829,-1370,-2062,-5972], +[1,3,2303], +[0,2304,2305,2306,4], +[0,-2153,-668,-2550,-2369,-2194,-2297], +[0,-1344,-932,-2469,-928,-1110,-1942,-190,-2410,-3037,-1534,-3610,-3041,-6830,-6831,-2411,-6832,-3664,-2156,-4373,-6593, +-6833,-940,-967,-6834,-6835,-4814], +[0,-6836,-5920,-5921,-726,-3957,-6837], +[1,3,2308], +[0,2309,2310,2311,4], +[0,-1460], +[0,-3037,-652,-711,-6838,-6839,-6840,-3589,-2105,-2177,-2362,-2379,-2410,-2424,-6841,-2548], +[0,-6842,-727,-3870,-6843,-6844,-6845,-5558], +[1,3,2313], +[0,2314,55,2315,4], +[0,-6846,-3780,-1119,-6847,-6848], +[0,-727,-4634,-6005,-3870,-6849,-6850,-4055,-6582,-6851,-6852,-6853], +[1,3,2317], +[0,2318,2319,2320,4], +[0,-812,-1045,-1840,-2445], +[0,-932,-1654,-1788,-2293], +[0,-3161,-3578,-5401,-729,-6854], +[1,3,2322], +[0,0,84,2323,11], +[0,-729,-1004,-6855,-3556], +[1,3,2325], +[0,0,2326,7,4], +[0,-932,-1415,-2210], +[1,3,2328], +[0,2329,2330,2331,4], +[0,-812,-6856], +[0,-5028,-86,-3307,-3244,-190,-3198,-3617,-3733,-3037,-4203,-427,-428,-519,-652,-708,-932,-940,-954,-967,-1004,-1010, +-1103,-1344,-1534,-1671,-1771,-1806,-1942,-2251,-2293,-2892,-2402,-2410], +[0,-729,-6857,-1671,-6858,-1004], +[1,3,2333], +[0,0,2334,2335,5], +[0,-2581,-3733,-3037,-3664,-1010,-2379,-2410,-2466,-6859,-2469], +[0,-729,-2071,-6858,-1004], +[1,3,2337], +[0,0,2338,2339,8], +[0,-6447,-3037,-3664,-672,-6860,-932,-944,-6861,-1942,-6862,-6570,-2267,-2410,-2423,-2469], +[0,-4000,-3444,-6863,-6864,-687,-6198,-2427,-1965,-6865,-3276,-6324,-6866], +[1,3,2341], +[0,0,2342,2343,5], +[0,-2541,-519,-864,-6867,-6868,-888,-6869,-1974,-6870,-6871,-6872,-6873,-6874,-6875,-2310,-6876,-6877,-1344,-6878,-2006, +-6879,-932,-6880,-6881,-6882,-1548,-6883,-2177,-6884,-6885,-6886,-1053,-6887,-6888,-1310,-1689,-1783,-6889,-2019,-1276, +-2094,-6890,-2424,-6891,-23,-6892,-1534,-6893,-6894,-710,-6895,-6896,-6897,-6898,-41,-2099,-946], +[0,-6899,-3110,-6107], +[1,3,2345], +[0,0,2346,2347,6], +[0,-652,-932,-943,-958,-963,-966,-968,-974], +[0,-736,-1334,-6900,-4616], +[1,3,2349], +[0,0,2350,2351,5], +[0,-1788,-1654,-932,-821,-966,-958,-968,-943,-974], +[0,-737,-1334,-4610,-4616,-6901], +[1,3,2353], +[0,2354,0,2355,4], +[0,-6902,-6903,-1630,-6904,-6905,-5983,-6906,-6907], +[0,-739,-6908,-5887,-1573,-687], +[1,3,2357], +[0,2358,0,2359,9], +[0,-1630,-6909,-6910,-739], +[0,-687,-5732,-739,-6908,-5887,-1573], +[1,3,2361], +[0,2362,0,2363,11], +[0,-6911], +[0,-739,-6912,-6913], +[1,3,2365], +[0,0,2366,2367,4], +[0,-6914,-2319], +[0,-5845,-6915,-6916,-6917,-4865,-812], +[1,3,2369], +[0,0,2370,2371,5], +[0,-6918,-3664,-6919,-2410,-2469], +[0,-743,-6920], +[1,3,2373], +[0,2374,81,2375,4], +[0,-743,-746], +[0,-743,-5401], +[1,3,2377], +[0,2378,2379,2380,10], +[0,-6920,-812,-6825,-2155], +[0,-729,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], +[0,-729,-1004,-5401,-6858], +[1,3,2382], +[0,0,0,2383,4], +[0,-743,-6921,-6922], +[1,3,2385], +[0,2386,2387,2388,4], +[0,-6923], +[0,-633,-1646,-1719,-6924,-1813,-6925,-2416], +[0,-699,-6351,-4865], +[1,3,2390], +[0,2391,2392,2393,4], +[0,-2654,-1108,-2168,-1759,-2182], +[0,-824,-1415,-1344,-1623,-774,-932,-825,-1110,-6926,-2501,-1942,-767,-21,-190,-533,-2410,-23,-3037,-1041,-1534,-1771,-86, +-965,-3560,-2251,-40,-2411,-6927,-959,-960,-32,-958,-6928,-6929,-978,-940,-967,-3748,-6930,-3307], +[0,-2501,-3862,-6931,-6932,-6351], +[1,3,2395], +[0,2396,2397,7,4], +[0,-1107,-1645,-1650,-6933,-2347,-2430,-2550], +[0,-2125,-2322,-2320], +[1,3,2399], +[0,0,27,2400,4], +[0,-6934,-6935,-3262,-6936,-6937,-6938], +[1,3,2402], +[0,2403,2404,2405,4], +[0,-1559,-750,-6939], +[0,-3040,-3052,-2410,-2006,-2019], +[0,-2006,-2410,-6935,-6940,-6941], +[1,3,2407], +[0,2408,2409,2410,4], +[0,-728,-6942,-6943,-6944,-3496,-999,-1758,-2177,-2313], +[0,-6945,-652,-1412,-2123], +[0,-752,-3323,-687], +[1,3,2412], +[0,0,0,2413,5], +[0,-6946,-6947,-6948,-6949,-6950,-6951,-6952,-6953,-6954,-6955,-6956,-6957,-6958,-6959,-6960,-6961,-6962,-6963,-6964, +-6965,-6966,-6967,-6968,-6969,-6970,-6971,-6972,-6973,-6974,-6975,-6976,-6977,-6978,-6979,-6980,-6981,-6982,-6983,-6984, +-6985,-6986,-6987,-6988,-3582,-6989,-5396], +[1,3,2415], +[0,2416,2417,2418,4], +[0,-1792,-2453], +[0,-465,-932,-1004,-1654,-1788,-2293], +[0,-754,-1004,-729,-5401], +[1,3,2420], +[0,2421,2422,2423,6], +[0,-5672,-1362,-1442,-6990], +[0,-3660,-3037,-6991,-427,-428,-3899,-767,-932,-6992,-940,-948,-958,-966,-979,-1344,-1534,-6689,-1942,-6993,-2410,-2469], +[0,-6994,-3870,-727], +[1,3,2425], +[0,2426,2427,2428,4], +[0,-1442,-6995,-6996,-1646,-2105], +[0,-1654,-1788,-2198,-2200,-2210,-2541], +[0,-4005,-756], +[1,3,2430], +[0,2431,2432,2433,4], +[0,-6997,-1111,-1630], +[0,-519,-999,-1849,-6909,-2541], +[0,-5732,-687,-6351,-6998,-6997,-6656,-6999,-702,-1076,-5827,-1107,-7000,-1705,-5922,-7001,-6582,-5398,-7002], +[1,3,2435], +[0,2436,2437,2438,4], +[0,-1116,-7003,-674,-7004,-7005,-1351,-7006], +[0,-652,-519,-2392,-1722,-2210,-932,-1110,-190,-7007,-2410,-3037,-2364,-2411], +[0,-3214,-758,-7008,-6596,-6531,-1437,-3967,-1334,-1342,-5735,-1116,-2105,-2435,-5150,-6826], +[1,3,2440], +[0,0,0,2441,11], +[0,-759,-7009,-7010,-7011,-7012,-7013,-7014,-7015,-7016,-7017,-7018,-7019,-7020], +[1,3,2443], +[0,2444,2445,2446,5], +[0,-7021,-1370,-6001,-7022,-7023], +[0,-5935,-2155,-2250,-2320,-2322], +[0,-770], +[1,3,2448], +[0,2449,2450,41,5], +[0,-1580,-1792], +[0,-1415,-1967,-2006,-2019,-2501], +[1,3,2452], +[0,2453,2454,2455,10], +[0,-28,-7024,-683,-722,-7025,-7026,-812,-1047,-1099,-1111,-1116,-7027,-1366,-7028,-1393,-1435,-1548,-1549,-1591,-1630, +-7029,-5668,-7030,-1863,-1876,-1889,-7031,-7032,-7033,-2103,-2218,-2331,-2347,-2460], +[0,-510,-767,-1045,-1098,-1415,-1722,-7034,-2187,-7035,-2261,-2463,-2541], +[0,-762,-1847,-775,-7036], +[1,3,2457], +[0,2458,2459,2460,8], +[0,-3620,-3222], +[0,-86,-190,-7037,-7038,-7039,-3470,-7040,-3471,-3472,-7041,-7042,-367,-7043,-3136,-3037,-4372,-767,-932,-940,-959,-967, +-1344,-1415,-1534,-1942,-2174,-2210,-2410,-2411], +[0,-763,-7044,-7045,-7046,-2166,-7047,-7048], +[1,3,2462], +[0,0,0,2463,4], +[0,-763,-3577,-3445,-3215,-764,-7046,-2166,-7049,-4107,-5418,-6201,-7050], +[1,3,2465], +[0,0,2466,2467,4], +[0,-5285,-5291,-7051,-7052,-7053,-7054,-7055,-7056,-7057,-3037,-932,-7058,-954,-958,-960,-964,-965,-7059,-968,-971,-978, +-1110,-7060,-1608,-7061,-1768,-1942,-2910,-7062,-2402,-2410,-7063], +[0,-763,-7050,-2166,-765,-3577,-3445], +[1,3,2469], +[0,2470,0,2471,4], +[0,-7064,-7065], +[0,-6527,-7066,-6932,-7067,-7068,-7069,-7070,-7071,-7072,-7073,-7074,-7075,-7076,-7077,-3264,-775,-3214,-3577,-3578], +[1,3,2473], +[0,2474,2475,2476,5], +[0,-7078,-769], +[0,-7079,-7080,-3037,-3664,-3665,-932,-1942,-2410,-2469,-7081], +[0,-7082,-7083,-7084,-7085], +[1,3,2478], +[0,2479,2480,2481,5], +[0,-1729], +[0,-1788,-664,-1722,-1344,-1654,-2550,-2125,-2127,-2177,-708,-1004,-2501,-2250,-720,-2410,-3035,-3037,-617,-1534,-2186, +-2503,-3621,-2516,-86,-2251,-4063,-1655,-6483,-796,-7086,-3307], +[0,-4213,-1334,-2435,-1961,-510,-5867,-6201,-6198,-3966,-2006,-5269,-4865,-6989,-5388,-2533,-5998], +[1,3,2483], +[0,2484,2485,2486,6], +[0,-2518,-7087,-7088], +[0,-1415,-1344,-932,-1650,-2125,-527,-533,-1534,-86,-2251,-7089,-7090,-3307], +[0,-7091,-7092,-7084,-7085,-7093,-7094,-7095,-7096], +[1,3,2488], +[0,2489,2490,7,5], +[0,-7097,-7098,-7099,-760,-7100,-7101,-7102,-1370,-7103,-7104,-1995,-7105], +[0,-5834,-932,-5935,-1788,-1798,-7106,-2155,-2177,-2322], +[1,3,2492], +[0,0,0,2493,5], +[0,-7107,-770,-7108,-7109,-7110,-7111,-7112,-7113,-7114,-7115,-7116,-7117,-7118,-7119,-7120,-7121,-7122,-7123,-7124,-7125], +[1,3,2495], +[0,192,2496,2497,4], +[0,-652,-932,-7126,-958,-964,-966,-967,-1654,-7127,-1771,-1942], +[0,-6838,-3215], +[1,3,2499], +[0,2500,2501,2502,4], +[0,-7128,-7129,-7130,-7131,-7132,-7133,-7134,-481,-668,-6793,-719,-7135,-7136,-7137,-7138,-7139,-7140,-7141,-7142,-2177, +-2654], +[0,-4036,-3199,-1639,-1645], +[0,-7143,-7144,-707,-6513,-6514,-7145,-7146,-7147,-7148], +[1,3,2504], +[0,2505,2506,2507,4], +[0,-1370,-2231,-7149], +[0,-1654,-2198,-1612,-651], +[0,-775,-3215,-3270,-3271], +[1,3,2509], +[0,0,2510,2511,9], +[0,-190,-7150,-7151,-932,-1889,-2127,-2447], +[0,-1889,-3583,-775,-4159,-7152,-7153,-7154], +[1,3,2513], +[0,0,2514,2515,5], +[0,-7155,-4647,-3621,-3037,-4201,-7156,-932,-7157,-940,-967,-7158,-1344,-7159,-1449,-1534,-1654,-1763,-1942,-2923,-7160, +-2410,-7161,-7162], +[0,-775,-7163,-4108], +[1,3,2517], +[0,2518,2519,2520,4], +[0,-2773,-1889,-7164,-1915,-7165,-2791,-1934,-2177], +[0,-21,-23,-40,-86,-3307,-7166,-533,-767,-774,-825,-920,-932,-940,-958,-1041,-1344,-1415,-1419,-1521,-1522,-1534,-1623, +-1643,-1771,-1908,-1927,-1942,-2162,-2163,-2251,-2269,-2275,-2286,-2287,-2437,-2501], +[0,-2501,-775,-5932,-2435,-6024], +[1,3,2522], +[0,2523,2524,2525,5], +[0,-784,-1889,-1429,-2168,-2182,-3180], +[0,-824,-2746,-1415,-2162,-1344,-1623,-774,-932,-825,-928,-1110,-2289,-2501,-7167,-1942,-683,-767,-21,-190,-533,-778, +-2410,-23,-7168,-7169,-3037,-1534,-1771,-2163,-3751,-86,-965,-3560,-7170,-2251,-40,-959,-748,-960,-958,-7171,-6929,-978, +-940,-967,-1643,-3748,-6930,-3307], +[0,-784,-775,-2746,-683,-5055,-928,-2501,-7172,-7173,-7174,-1644,-6684,-7175,-7176], +[1,3,2527], +[0,2528,2529,2530,4], +[0,-7177,-2888,-6584,-2788,-6585], +[0,-2386,-2469,-2410,-3037,-1333,-2581,-7178,-7179,-3664], +[0,-775,-3585,-7180], +[1,3,2532], +[0,2533,2534,2535,4], +[0,-1620,-2232], +[0,-652,-7181,-928,-932,-7182,-1654,-2127], +[0,-775,-3272,-3579,-3215,-7183,-7184,-3262,-5260,-4132,-3926], +[1,3,2537], +[0,0,2538,2539,4], +[0,-7150,-635,-1107,-1889,-1891,-1927,-2177,-2281,-2282,-7185], +[0,-775,-7186,-4682,-7187], +[1,3,2541], +[0,0,2542,2543,4], +[0,-526,-558,-708,-1127,-6114,-1405,-1654,-2081,-2111], +[0,-775,-5559,-7188,-2265,-3673], +[1,3,2545], +[0,2546,2547,2548,4], +[0,-1532,-7189], +[0,-518,-1889,-7190,-7191], +[0,-775,-6454,-1644,-7192,-7193,-1889,-3583], +[1,3,2550], +[0,2551,2552,2553,11], +[0,-7194,-7195,-781,-1582], +[0,-7196,-7197,-932,-940,-967,-1110,-1942], +[0,-7198,-7199,-7200], +[1,3,2555], +[0,0,2556,2557,4], +[0,-23,-40,-42,-190,-7150,-7201,-7202,-5685,-3136,-4647,-3037,-6630,-7203,-533,-668,-679,-781,-940,-967,-1059,-1415,-1449, +-1620,-1942,-2091,-2392,-2393,-2410,-2411], +[0,-775,-5553,-2410,-5411,-2414,-3694,-3762], +[1,3,2559], +[0,2560,2561,2562,5], +[0,-7204,-743,-1335,-746], +[0,-1788,-1654,-932,-729,-2293,-617,-744,-745,-966,-958,-968,-943,-963,-974], +[0,-7204,-7205,-5401,-1004], +[1,3,2564], +[0,2565,2566,2567,4], +[0,-789,-790,-791,-2262], +[0,-351,-3621,-3037,-885,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], +[0,-3966,-788,-7206,-3215,-1838,-3270,-6231,-6408,-5827,-3960,-7207,-3445,-3100], +[1,3,2569], +[0,0,2570,2571,5], +[0,-351,-3621,-3037,-815,-885,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], +[0,-5827,-3960,-788,-7208,-3445,-3100], +[1,3,2573], +[0,0,2574,2575,5], +[0,-351,-3621,-3037,-789,-7209,-815,-885,-1654,-7210,-1942,-2127,-2135,-2136,-2198,-2262,-2379,-2410], +[0,-788,-1838,-3215,-5845,-7206,-5827,-3445,-3100], +[1,3,2577], +[0,0,2578,2579,9], +[0,-351,-3621,-3037,-789,-815,-885,-1004,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], +[0,-788,-6231,-3270,-3445,-3100], +[1,3,2581], +[0,34,2582,2583,4], +[0,-7211,-3621,-3037,-543,-756,-1646,-1654,-1788,-2210,-2375,-2379,-2410,-2417,-2501,-2503], +[0,-788,-7212,-7213,-792,-4055,-7214,-7215,-7216,-7217,-7218], +[1,3,2585], +[0,2586,2587,149,8], +[0,-1693,-1107,-714,-1548,-2456,-1040,-3635,-2114,-615,-7219,-1959,-719,-1399,-695,-5203,-3611,-7220,-3610,-7221,-1366, +-7222,-7223,-7224,-930,-3608,-7225,-3604], +[0,-1788,-2359,-664,-1654,-2210,-932,-729,-753,-571,-1077,-1689,-1942,-7226,-756,-21,-633,-2211,-23,-528,-711,-2187,-43, +-3630,-3633,-40,-966,-951,-2082,-958,-539,-968,-940,-943,-967,-974,-6034], +[1,3,2589], +[0,0,2590,2591,4], +[0,-556,-558,-566,-633,-932,-7227,-1339,-1650,-7228,-2322,-2339,-2416,-7229,-2491], +[0,-7230,-7231,-7232,-7233,-2446], +[1,3,2593], +[0,2594,0,2595,4], +[0,-2359,-5413,-668,-809,-812,-999,-7234,-2555,-640,-1536,-1548,-7235,-680,-1040,-1958,-615,-6797,-910,-1077,-1646,-7236, +-719,-2369,-2430,-3628,-690,-695,-7237,-722,-1018,-1574,-1948,-7238,-7239,-995,-5987,-2297,-7240,-7241,-2313,-1394,-3626], +[0,-4864,-4865,-795,-7242,-4866,-4867,-4868,-3095,-7243,-4043,-7244,-7245,-4004,-3634], +[1,3,2597], +[0,2598,2599,7,5], +[0,-668,-7246,-2524,-720,-1564,-3532,-7247], +[0,-664,-1654,-2177,-1942,-3035,-755,-3621,-1660,-2174], +[1,3,2601], +[0,2602,2603,2604,5], +[0,-7248,-7249,-7250,-7251,-7252,-7253,-7254,-7255,-798,-7256,-7257,-6258,-7258,-7259,-799,-801,-7260,-7261,-7262,-7263, +-7264,-7265,-7266,-7267,-7268,-800,-7269,-7270,-7271,-7272], +[0,-1654,-932,-2127,-2468,-7273,-2967,-4062,-7274,-3266,-351], +[0,-797,-5092,-7275,-3839,-5176,-659], +[1,3,2606], +[0,2607,2608,2609,8], +[0,-7276], +[0,-351,-7248,-7262,-932,-1449,-1654,-2127,-2140], +[0,-797,-7277,-7278,-7279,-7280,-7281,-7282,-7283,-5839], +[1,3,2611], +[0,2612,2613,2614,10], +[0,-798,-7261,-7270,-7254,-7271], +[0,-6258,-932,-1654,-2127,-2140], +[0,-797,-7277,-7069,-7275], +[1,3,2616], +[0,0,2617,2618,5], +[0,-932,-1449,-1654,-2127,-2140], +[0,-797,-7277,-5092,-7284,-7285], +[1,3,2620], +[0,2621,2622,2623,6], +[0,-7253], +[0,-7264,-932,-1654,-2127,-2140], +[0,-797,-7277,-6524,-7275,-659,-3839], +[1,3,2625], +[0,2626,0,2627,5], +[0,-1049], +[0,-3577,-7286,-5176,-3913], +[1,3,2629], +[0,0,0,2630,4], +[0,-803,-2316,-2318,-7287,-7288,-7289,-7290,-7291,-7292,-7293,-7294,-7295,-7296,-7297,-7298,-2006,-775,-3160,-2476,-3095, +-3161,-1713,-3577,-7299,-4101,-7300,-2299,-2834,-5511,-7301], +[1,3,2632], +[0,0,14,2633,9], +[0,-7302,-1646,-6792,-7303,-4377,-5272,-687,-1758,-719,-7304,-3957,-5543,-7305,-7306,-7307,-7308,-1838,-3215,-4378], +[1,3,2635], +[0,2636,2637,7,4], +[0,-7309,-469,-510,-668,-715,-754,-763,-1004,-1376,-7310,-1625,-1666,-1953,-2105,-7311,-7312,-7313,-2549,-2550], +[0,-526,-556,-559,-664,-1654,-2106,-5331], +[1,3,2639], +[0,0,2640,7,10], +[0,-7314,-2392,-7315,-3915,-2210,-932,-7316,-1548,-2469,-2402,-1050,-1942,-756,-21,-7057,-1874,-2205,-2214,-2410,-23, +-3037,-7317,-7318,-4372,-7319,-3704,-3044,-7320,-5286,-4773,-40,-7321,-3664,-2832,-42,-428,-7322,-427,-7323], +[1,3,2642], +[0,0,2643,7,5], +[0,-1654,-2416,-21,-23,-40], +[1,3,2645], +[0,0,2646,2647,5], +[0,-21,-23,-5870,-40,-3472,-527,-533,-537,-767,-932,-934,-958,-959,-7324,-1413,-1415,-1471,-1481,-1488,-1662,-1666,-1667, +-1705,-1939,-1942,-2127,-2128,-2140,-2214,-2410], +[0,-809,-4121,-4123,-1361,-1666], +[1,3,2649], +[0,2650,2651,2652,4], +[0,-596,-1723], +[0,-7325], +[0,-510,-6367,-7326,-7327], +[1,3,2654], +[0,0,118,2655,5], +[0,-811,-7328,-5924,-7329,-7330,-6729,-7331,-7332,-7333,-7334,-7335], +[1,3,2657], +[0,2658,2659,2660,4], +[0,-1681], +[0,-627,-633,-756,-1471,-1472,-1475,-1482,-1654,-1657,-2210,-2541], +[0,-812,-1573,-7336], +[1,3,2662], +[0,0,14,2663,4], +[0,-813,-7337,-656,-7338,-6514,-6515,-6516,-2265,-5554,-5845], +[1,3,2665], +[0,2666,2667,2668,10], +[0,-7339,-7340,-7341,-7342,-1119,-1591,-1866,-7343], +[0,-985,-7344,-1849,-1866,-2125], +[0,-7345,-7346,-814,-7347,-2323,-7348,-7349,-5408,-2432], +[1,3,2670], +[0,0,2671,2672,8], +[0,-21,-40,-42,-4646,-7350,-7057,-3330,-3136,-427,-428,-535,-6046,-7351,-774,-932,-7352,-954,-959,-960,-961,-963,-965, +-7353,-7354,-971,-7355,-1344,-1415,-7356,-1498,-1534,-1608,-1609,-1768,-7357,-1942,-7358,-1945,-2091,-7359,-2391,-2410, +-7360], +[0,-815,-6818,-7361,-3184], +[1,3,2674], +[0,0,2675,2676,5], +[0,-3136,-1637,-2375], +[0,-7362,-7363,-5839,-7364,-7365,-7366,-7367], +[1,3,2678], +[0,2679,0,2680,8], +[0,-7368], +[0,-7208,-7369,-7370,-1015,-3589,-1631,-702,-6351,-3755,-6545,-7371,-7372,-7373,-7374,-7375,-3589], +[0,68,15,16,4], +[1,3,2683], +[0,0,2684,2685,5], +[0,-4055,-1654,-932,-1548,-2125,-1753,-615,-7376,-1003,-2416,-821,-964,-1656], +[0,-834,-7377,-7378,-7379], +[1,3,2687], +[0,0,2688,2689,5], +[0,-7380,-1654,-932,-1405,-589,-756,-7381,-1559,-3311,-7382,-7383,-7384,-350,-7385], +[0,-7386,-7387,-7388,-3634], +[1,3,2691], +[0,2692,2693,2694,10], +[0,-7389,-655,-7390,-6503,-7391,-7392,-7393,-7394,-7395,-1402,-5849,-1795,-1797,-7396,-7397,-7398,-7399,-7400], +[0,-5834,-515,-516,-7401,-932,-1065,-7402,-1283,-7403,-1365,-1777,-1788,-3335,-2156,-2177,-2322], +[0,-7404,-6439,-7378], +[1,3,2696], +[0,0,70,2697,4], +[0,-822,-1015,-6545,-7371,-2546,-702,-1631,-4055], +[1,3,2699], +[0,0,2700,2701,9], +[0,-3037,-7405,-1396,-7406,-2127,-2131,-2137,-2322,-2379,-2410,-2416], +[0,-1631,-6545,-1015,-6351,-702,-7371], +[1,3,2703], +[0,2704,2705,2706,5], +[0,-1111,-1393,-7407,-7408,-1826,-7409,-2218], +[0,-519,-589,-2331,-2384,-2541], +[0,-6693,-6999,-7410,-7411,-6694,-7412,-7413,-7414,-6688,-7415,-7416,-6695,-7417,-2125,-7418,-1107,-7419,-6656,-7420, +-7421,-1076,-7422], +[1,3,2708], +[0,2709,2710,2711,10], +[0,-824,-1630,-7409], +[0,-519,-999,-7423,-2541], +[0,-5732,-687,-6693,-824,-6694,-7412,-7413,-7414,-6688,-7415,-7416,-6695,-7417,-2125,-7418,-1107,-6656,-6999,-7420,-7421, +-1076,-7422,-7085], +[1,3,2713], +[0,2714,2715,2716,6], +[0,-7424,-7425], +[0,-7426,-7427,-2384,-2541], +[0,-1961,-2114,-826,-7428,-4116,-7429,-7430,-7431,-5389,-6302,-2634,-7432,-826,-510,-5867,-5923,-615,-7433,-7434,-6555], +[1,3,2718], +[0,2719,2720,2721,10], +[0,-812,-1460,-2550,-1353,-1548,-2177,-1442,-2114,-7435,-6651,-656,-1645,-7436,-1686,-755,-1048,-2115,-25,-7437,-46,-7438, +-3230,-6033], +[0,-1788,-1654,-932,-2198,-2299,-1077,-1942,-767,-21,-1972,-2410,-23,-528,-7439,-39,-43,-40,-964,-969,-933,-958,-539,-940, +-962,-967,-535,-5585], +[0,-7440,-7441,-5897,-7442,-827,-6137,-3015,-3016], +[1,3,2723], +[0,0,2724,2725,6], +[0,-589,-585,-932,-943,-958,-963,-966,-968,-974,-1405,-1654,-2155,-2418], +[0,-7443,-7444], +[1,3,2727], +[0,2728,2729,7,4], +[0,-812,-5892,-1111,-7445,-1639,-1646,-1872,-7446,-2114], +[0,-7447,-1344,-3781,-1771,-2250], +[1,3,2731], +[0,0,14,2732,10], +[0,-6806,-7448,-6659,-7449,-7450,-707,-2265,-5554,-6916,-7451,-7452], +[1,3,2734], +[0,2735,2736,2737,5], +[0,-6558], +[0,-7453,-3621,-3037,-7454,-932,-7455,-999,-7456,-2269,-2386,-7457,-2410], +[0,-6659,-7458], +[1,3,2739], +[0,0,2740,2741,6], +[0,-1788,-2384,-664,-1471,-1654,-932,-2127,-1110,-2501,-767,-2416,-190,-2410,-23,-1482,-534,-1492,-5758,-43,-40,-2411, +-2505,-1483,-2832,-539,-1490], +[0,-834,-7459,-7378,-7460,-5554,-4055,-775,-3214], +[1,3,2743], +[0,2744,2745,2746,8], +[0,-834,-7461], +[0,-190,-7462,-7463,-3136,-3037,-7464,-7465,-518,-645,-699,-748,-778,-784,-932,-959,-968,-1041,-1110,-1276,-7466,-1331, +-1344,-7467,-7468,-1415,-1534,-1607,-1643,-1650,-1758,-1889,-1891,-1906,-1908,-1927,-1942,-2375,-2376,-2379,-2410,-2411, +-2437,-2501,-2503,-2505,-2516], +[0,-5889,-834,-3240,-7469,-6722,-7470,-7471,-7472,-4131,-3240,-712,-3264,-835,-7473,-7474], +[1,3,2748], +[0,119,120,2749,4], +[0,-7477,-7478,-7479,-7480,-7481,-7482,-7483,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-7487,-7488,-3966,-4336, +-7489,-7490,-7491,-7492,-7493,-7494,-7495,-7496,-7497,-3552,-7498,-7499,-7500,-1847,-7501,-7502,-7503,-7504,-7505,-7506, +-7507,-7508,-7282,-7509,-7510,-7511,-7512,-7513,-7514,-7515,-7516,-7517,-7518,-7519,-7520,-7521,-5150,-7522,-7523,-7524, +-7525,-7526,-7527,-7528, +-7529,-7530,-7531,-7532,-7533,-6582,-7534,-7535,-7536,-7537,-7538,-7539,-7540,-7541,-7542,-7543,-7544,-7545,-7546,-7547, +-7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558,-7559,-5063,-7560,-7561,-7562,-6187,-7563, +-856,-7275], +[1,3,2751], +[0,0,2752,2753,6], +[0,-664,-665,-1127,-1144,-1149,-1156,-1452,-1453,-1542,-1654], +[0,-664,-6537,-4865,-3634], +[1,3,2755], +[0,2756,56,57,4], +[0,-7564,-7565,-840,-1406,-1744], +[1,3,2758], +[0,2759,2760,2761,6], +[0,-2387,-2426,-7567,-3675,-151,-3676,-1025,-7568,-3677,-7569,-3678,-3679,-7570], +[0,-2384,-1415,-3682,-932,-2388,-879,-1942,-767,-2410,-3037,-7571,-3683,-3685,-3686,-3687,-428,-427], +[0,-3689,-3690,-7572,-3323,-3966,-3692], +[1,3,2763], +[0,2764,0,7,4], +[0,-2416,-1044,-1813], +[1,3,2766], +[0,2767,2768,193,8], +[0,-6789,-7573,-7574,-7575,-1276,-1610,-7576], +[0,-7577], +[1,3,2770], +[0,2771,0,2772,6], +[0,-1448], +[0,-843,-856,-1446,-7578,-1599,-3862], +[1,3,2774], +[0,0,0,2775,9], +[0,-7579,-7580,-7581,-7582,-3445,-6809], +[1,3,2777], +[0,2778,31,2779,10], +[0,-7583,-7584,-7585], +[0,-7586,-7587], +[1,3,2781], +[0,2782,2783,2784,8], +[0,-523,-2550,-848,-7588,-7589,-7590], +[0,-664,-1654,-1004,-617], +[0,-856,-5119,-4004,-4100,-3671], +[1,3,2786], +[0,2787,2788,2789,10], +[0,-3417,-7590,-7591,-469,-5769,-7592,-7593,-7594,-523,-7588,-7589,-865,-7595,-7596,-7597,-1870,-1880,-7598,-2369,-4881], +[0,-827,-1004,-1654,-2177], +[0,-856,-4004,-4100,-3671], +[1,3,2791], +[0,2792,0,2793,9], +[0,-719,-1610,-1077,-2424,-1304], +[0,-856,-3671,-3262,-7599,-711], +[1,3,2795], +[0,2796,0,193,4], +[0,-885,-7600,-7601], +[1,3,2798], +[0,2799,2800,2801,10], +[0,-7602,-7603,-7604,-7605,-1969,-2324,-2446], +[0,-615,-664,-1627,-1654], +[0,-7606,-7607], +[1,3,2803], +[0,2804,2805,2806,4], +[0,-7608,-7609,-7610,-573,-7611,-653,-7612,-6838,-7613,-7614,-7615,-5835,-7616,-7617,-7618,-7619,-7620,-7621,-1376,-7622, +-7623,-7624,-1640,-1729,-7625,-7626,-7627,-2125,-7628,-7629,-7630,-2177,-7631,-7632,-7633,-2424,-7634,-2549], +[0,-7635,-7636,-7637,-711,-7638,-1666,-7639,-7640], +[0,-3260,-7641,-7642,-4258,-687,-7643,-711,-7644,-3116,-7645,-7646,-3113,-7647,-7648,-6433,-3161,-3262,-7649,-3966,-1838, +-3215,-7650,-4065,-3970,-5371,-3261,-7651,-3673,-3590,-3578,-7652,-4602], +[1,3,2808], +[0,0,2809,2810,5], +[0,-3268,-3037,-3664,-6593,-589,-7653,-7654,-932,-958,-960,-2410,-2469], +[0,-3100,-3445,-4058,-3926,-1446], +[1,3,2812], +[0,0,2813,2814,6], +[0,-23,-40,-190,-3326,-350,-4062,-351,-3266,-518,-632,-724,-920,-932,-940,-1110,-1609,-6451,-1771,-1889,-1897,-1903,-1906, +-1942,-2125,-2127,-4753,-2162], +[0,-3671,-2757,-7655,-856,-3262,-3214,-3756,-1599,-3437,-3862,-7452,-7656], +[1,3,2816], +[0,2817,71,2818,8], +[0,-7657,-7658,-1333,-1646,-2424,-7659], +[0,-1105,-1599,-856,-4328,-3215,-7660,-7661,-7662], +[1,3,2820], +[0,2821,2822,2823,8], +[0,-23,-3194,-25,-46,-47,-668,-679,-834,-7663,-4236,-3649,-1107,-2765,-1304,-1371,-1442,-7664,-1548,-5347,-7665,-7666, +-7667,-1866,-2061,-2093,-2095,-2096,-7668,-4656,-2114,-2271,-7669,-2429,-5358,-7670,-7671,-2550], +[0,-7672,-796,-7673,-932,-940,-1077,-1344,-1415,-1456,-1534,-1658,-1942,-2251,-2359], +[0,-856,-4144,-1446,-7674,-3215,-3258], +[1,3,2825], +[0,2826,2827,2828,5], +[0,-7675,-7676,-812,-7677,-7678,-7679,-7680,-2424], +[0,-3037,-1127,-1152,-1156,-1542,-1656,-6799,-2210,-2351], +[0,-7681,-7682,-857,-7683,-5800,-7684,-7685,-5801], +[1,3,2830], +[0,2831,2832,2833,4], +[0,-3484,-1088,-1107,-668,-2006,-915,-1548,-1650,-572,-784,-1004,-1889,-1955,-2105,-2195,-3728,-2353,-1077,-1356,-719, +-2019,-682,-1888,-2102,-23,-7686,-47,-518,-1304,-1607,-7687,-4356,-7688,-7689,-3649,-39,-43,-46,-2015,-7690,-40,-7691, +-7692,-41,-930,-916,-26,-36], +[0,-2125,-7693,-1075,-7694], +[0,-856,-7695,-7696,-858], +[1,3,2835], +[0,2836,27,2837,5], +[0,-7697,-703,-4700,-1288,-1293,-1310,-3544,-7698,-3788,-1645,-2087,-7699,-2427,-7700], +[0,-858,-3544,-7701,-856], +[1,3,2839], +[0,2840,2841,2842,6], +[0,-44,-786], +[0,-7702,-7703,-21,-23,-42,-7704,-7705,-7706,-427,-428,-528,-534,-932,-958,-962,-964,-969,-1003,-1107,-1437,-1471,-1475, +-1479,-7707,-1482,-1483,-1489,-1490,-1492,-1654,-2125,-7708,-2210,-2410,-2501], +[0,-860,-3159,-5092,-3690,-7709,-5553,-5389,-7710,-6730,-860,-7711,-7712,-775], +[1,3,2844], +[0,2845,2846,2847,4], +[0,-3223,-6585,-7713], +[0,-1415,-932,-674,-2375,-1942,-2410,-3136,-3037,-1333,-940,-428,-427], +[0,-3264,-6597,-7650], +[1,3,2849], +[0,0,2850,2851,8], +[0,-664,-932,-1127,-1132,-1144,-1148,-1149,-1155,-1442,-1471,-1474,-1475,-1479,-1482,-1483,-1654,-1942,-2177], +[0,-5092,-6527,-7714,-7650,-3264,-659,-3839,-7715], +[1,3,2853], +[0,2854,2855,2856,6], +[0,-7716], +[0,-23,-40,-3326,-351,-3561,-3266,-426,-3037,-767,-940,-967,-1437,-1449,-1471,-1473,-1475,-1479,-1485,-1486,-7717,-1646, +-1771,-1939,-1942,-1989,-7718,-2125,-2127,-2132,-7719,-2142,-2387,-2410,-2541], +[0,-5092,-2544,-3264,-3839,-7720,-7107,-7721,-7722,-7723,-7724,-7725], +[1,3,2858], +[0,0,2859,2860,10], +[0,-1788,-932,-756,-1939,-5478], +[0,-3110,-5922,-5493,-7651], +[1,3,2862], +[0,0,2863,2864,4], +[0,-3037,-3542,-2210,-2250,-2251,-2319,-2410], +[0,-865,-6845,-7726,-5558,-3591,-727,-6849], +[1,3,2866], +[0,194,2867,2868,5], +[0,-3037,-2250,-2251,-2319,-2410], +[0,-865,-7727,-3591,-7728,-7729,-6845,-7726], +[1,3,2870], +[0,2871,2872,2873,4], +[0,-1116,-1866,-1825,-7730,-1591,-1043,-814,-7731,-1100,-7732,-736], +[0,-2541,-519,-1722,-7733,-2125,-1849,-7734], +[0,-867,-7347,-1334,-2105,-2435], +[1,3,2875], +[0,2876,2877,2878,9], +[0,-867,-7735,-2125], +[0,-3179,-1344,-1654,-2226,-2250], +[0,-867,-1105,-7661,-7660,-7736,-7737,-2323,-7347,-7738], +[1,3,2880], +[0,2881,2882,2883,4], +[0,-870,-871,-873,-875,-876,-874], +[0,-932,-2125,-190,-2410,-3037,-2411,-428,-427], +[0,-869,-856,-687,-1446,-620,-1599,-4055], +[1,3,2885], +[0,2886,2887,2888,8], +[0,-1111,-871,-7739,-7740,-873,-875,-7741,-876,-874], +[0,-1415,-932,-2125,-1753,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-427], +[0,-869,-856,-687], +[1,3,2890], +[0,2891,2892,2893,4], +[0,-6904], +[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-6902,-427], +[0,-869,-856], +[1,3,2895], +[0,2896,121,2897,4], +[0,-7743], +[0,-869,-856,-3110], +[1,3,2899], +[0,2900,2901,2902,4], +[0,-2330,-1446,-7744], +[0,-1415,-932,-2125,-2375,-749,-190,-2410,-3136,-3037,-7745,-7742,-2411,-428,-427], +[0,-869,-856,-1446], +[1,3,2904], +[0,2905,2906,2907,4], +[0,-1600,-1304,-1605], +[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-3661,-428,-427], +[0,-869,-856,-620], +[1,3,2909], +[0,0,121,2910,8], +[0,-869,-856,-4055], +[1,3,2912], +[0,2913,121,2914,5], +[0,-1605], +[0,-869,-856,-1599], +[1,3,2916], +[0,2917,2918,2919,4], +[0,-1033,-1361,-1792], +[0,-23,-6065,-5584,-7746,-528,-7747,-767,-824,-927,-932,-7748,-940,-951,-956,-962,-967,-969,-7749,-1059,-1168,-1174,-1184, +-1188,-7750,-1201,-1208,-1212,-1243,-1266,-1415,-1942,-2006,-2019,-2052,-7751,-2347,-2417,-7752], +[0,-7753,-3496,-2006,-7754], +[1,3,2921], +[0,2922,2923,2924,5], +[0,-4007,-7755], +[0,-7756,-7757,-664,-795,-7758,-1471,-1475,-1482,-7759,-1491,-1654,-1655,-1745,-7760,-2162,-2210,-2211], +[0,-7761,-7762,-7763,-7764], +[1,3,2926], +[0,2927,2928,7,5], +[0,-2550,-2388,-7765,-1077,-7766,-2271,-1458,-7767,-7768,-7769], +[0,-932,-3037,-3041,-3048,-428,-7770,-7771,-427], +[1,3,2930], +[0,2931,0,2932,4], +[0,-7772], +[0,-7773,-880,-6582,-7685,-3445,-687,-7774,-5401], +[1,3,2934], +[0,2935,2936,113,4], +[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5366,-5340,-747,-823,-5341,-909,-5342,-5343,-5344, +-3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, +-4942,-2003,-4944,-2004,-2013,-2965,-2028,-5350,-5351,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5354, +-5355,-2427,-2429, +-5356,-2435,-5357,-5358,-5359], +[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3803,-3040,-3087,-3052,-5364,-5365,-932,-4597,-1026,-1031,-5367, +-5368,-1344,-1534,-1942,-1944,-1945,-2006,-2019,-2281,-2379,-2410,-2469,-5369,-5370], +[1,3,2938], +[0,2939,2940,113,6], +[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5339,-747,-823,-5341,-5359,-909,-5342,-5343,-5344, +-3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, +-4942,-4944,-2013,-2965,-2028,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5355,-2427,-2429,-5356,-2435, +-5357,-5358], +[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3040,-3087,-5364,-5365,-932,-1026,-1031,-5368,-1344,-1534,-1942, +-1944,-1945,-2006,-2281,-2379,-2410,-2469], +[1,3,2942], +[0,0,2943,7,5], +[0,-2322,-2346], +[1,3,2945], +[0,2946,2947,110,8], +[0,-7775,-7776,-7777,-7778,-7779,-44,-3946,-7780,-7781,-7782,-7783,-7784,-682,-747,-809,-7785,-7786,-7787,-7788,-7789, +-7790,-7791,-7792,-7793,-7794,-7795,-7796,-7797,-7798,-7799,-7800,-7801,-7802,-7803,-7804,-7805,-7806,-7807,-7808,-7809, +-7810,-7811,-7812,-7813,-7814,-7815,-7816,-4951,-2345], +[0,-5695,-5704,-3139,-7817,-4952,-2581,-5702,-3744,-3745,-3746,-3747,-162,-3778,-4954,-5706,-4106,-5708,-5699,-283,-305, +-4955,-4773,-3562,-406,-407,-409,-410,-5682,-5683,-5693,-3048,-4960,-5692,-5697,-3136,-4961,-4962,-4963,-4964,-4647, +-3044,-5686,-3037,-5688,-7818,-5675,-3803,-3624,-4966,-3040,-3087,-3052,-4968,-4969,-3199,-5687,-5673,-4971,-4972,-427, +-428,-464,-5595, +-4973,-5674,-4974,-523,-668,-674,-5701,-5676,-767,-768,-4977,-865,-881,-5698,-3808,-932,-933,-940,-948,-952,-958,-959, +-962,-7819,-963,-969,-970,-978,-1026,-4979,-1077,-1103,-1107,-5346,-1339,-1352,-1359,-1392,-1404,-1415,-4980,-1416,-1419, +-1421,-4981,-4982,-1437,-1449,-4983,-3134,-1534,-1548,-5689,-4984,-1646,-1662,-1729,-1737,-1779,-1805,-1816,-5668,-1870, +-1880, +-1942,-1943,-1950,-1955,-1978,-1983,-4985,-4986,-4987,-2006,-2013,-5680,-2019,-3051,-4988,-4989,-4990,-2027,-4991,-2044, +-4992,-2082,-2090,-2093,-2094,-2095,-4994,-5707,-4995,-2101,-2125,-5669,-2177,-2193,-2205,-2214,-5671,-5000,-2323,-2324, +-2334,-2392,-2402,-2410,-5001,-5678,-2501,-2502,-5002], +[1,3,2949], +[0,0,2950,2951,10], +[0,-86,-3307,-7820,-190,-932,-940,-964,-967,-1344,-1534,-1654,-1942,-2127,-2198,-2251], +[0,-5839,-510,-6235,-7821,-885,-7208,-1961,-7822,-6302,-3445,-3100], +[1,3,2953], +[0,2954,2955,2956,11], +[0,-2387,-7823], +[0,-22,-23,-47,-7769,-7767,-7824,-262,-350,-351,-3561,-3136,-427,-428,-668,-719,-879,-928,-932,-1077,-1111,-1344,-1415, +-1416,-1452,-1588,-1805,-2127,-2140,-2172,-2177,-2334,-2375,-2410], +[0,-886,-7825,-6581,-7826,-7275,-7827,-7828,-659,-3839], +[1,3,2958], +[0,2959,2960,2961,4], +[0,-7829,-1043,-7830,-1199,-7831,-7832,-7833,-1548,-1645,-7834,-1876,-2347,-2460,-2462,-2550], +[0,-3035,-3048,-7835,-3044,-3621,-3037,-4364,-4372,-3625,-7836,-7837,-7838,-3041,-664,-994,-1077,-1100,-1654,-1788,-1972, +-2125,-2210,-2211,-2379,-2388,-2410], +[0,-7829,-3674,-5874,-7839,-7840,-7449,-7841], +[1,3,2963], +[0,2964,2965,2966,4], +[0,-1410], +[0,-2410,-32,-633,-932,-6272,-1446,-1582,-1654,-2416], +[0,-3110,-7651,-6899,-888], +[1,3,2968], +[0,2969,2970,2971,4], +[0,-668,-1548,-7842], +[0,-1722,-461,-510,-1127,-1654,-2210,-2239,-932,-1437,-1666,-2177,-521,-600,-2501,-7843,-7844,-615,-1813,-1942,-2347, +-1003,-1026,-3767,-1132,-7845,-633,-23,-7846,-528,-534,-7847,-7848,-40,-966,-1138,-1134,-958,-1136,-1148,-968,-940,-943, +-967,-974,-7849], +[0,-889,-6045,-3817], +[0,44,15,16,5], +[1,3,2974], +[0,2975,0,195,6], +[0,-3037,-1018,-7850], +[1,3,2977], +[0,2978,2979,2980,4], +[0,-668,-2550,-680,-1077,-7851,-7852,-7853,-7854,-7855,-7741], +[0,-3041,-3048], +[0,-891,-4258,-7641,-7856,-1380,-7857,-7858,-7859,-3994,-7860,-7861,-7862,-7863,-7864,-7865,-7866,-7867,-7868,-7869,-7870, +-7871,-5730], +[1,3,2982], +[0,2983,2984,2985,4], +[0,-7872,-7850,-7873,-7874,-7875,-7876,-812,-1018,-7731,-1077,-7877,-7878,-7879,-7880,-1875,-7881,-2114,-2177,-2551], +[0,-427,-428,-519,-641,-708,-932,-943,-950,-958,-966,-968,-1788,-1872,-2210,-2384,-2402,-2410], +[0,-891,-7857,-7882,-3994], +[1,3,2987], +[0,2988,2989,195,10], +[0,-1018,-7883], +[0,-2322,-2250,-7884,-1849], +[1,3,2991], +[0,2992,56,57,6], +[0,-668,-1078,-1406,-7885], +[1,3,2994], +[0,2995,2996,7,8], +[0,-7886], +[0,-1127,-7887,-1130,-1144,-1148,-1155,-1413,-1437,-1471,-1475,-1479,-1481,-1487,-1542,-1548], +[1,3,2998], +[0,2999,3000,3001,5], +[0,-513,-532,-823,-1761,-2113,-2345], +[0,-7888,-7889,-526,-527,-534,-535,-539,-541,-544,-7890,-558,-564,-7891,-664,-679,-748,-756,-7892,-767,-778,-925,-932, +-7893,-949,-957,-7894,-1041,-7895,-1168,-1171,-7896,-1248,-1304,-1331,-1455,-5610,-1471,-1475,-1476,-1482,-7759,-1490, +-1491,-1492,-7897,-1600,-1601,-7898,-1602,-1643,-1654,-1743,-1814,-1889,-1960,-2125,-2163,-7899,-2210,-2211,-2275,-7900, +-2417, +-7901,-2437,-2476,-2481,-2483,-2485,-7902,-2501,-2503,-2505,-2509], +[0,-7903,-2476,-3098], +[1,3,3003], +[0,3004,3005,3006,4], +[0,-616,-7904,-7905,-7906,-1370,-7907,-7908], +[0,-627,-756,-932,-1127,-1130,-1132,-1137,-1138,-1148,-7909,-1161,-1405,-1654], +[0,-7910,-7911,-7912,-7913], +[1,3,3008], +[0,3009,3010,3011,4], +[0,-7914,-7915,-7916,-1329,-7917,-1548,-1752], +[0,-86,-3307,-519,-674,-767,-888,-932,-946,-1053,-1344,-1534,-7918,-1788,-7919,-1974,-2094,-2099,-2541], +[0,-735,-7920,-6899,-1501,-7921,-7922,-7923,-7924,-7925,-7926,-1752,-7927,-1974,-7928,-3110,-3261,-3443], +[1,3,3013], +[0,0,3014,7,5], +[0,-190,-7929,-3037,-7930,-3664,-932,-940,-967,-7931,-1942,-7932,-2379,-2410,-2411,-2469], +[1,3,3016], +[0,3017,3018,3019,10], +[0,-7933,-7934,-7935,-7936,-7937,-2731,-7938,-7939,-7940,-7941,-628,-7942,-629,-2733,-7943,-7944,-7945,-7946,-7947,-668, +-680,-7948,-724,-728,-7949,-7950,-7951,-7952,-834,-7953,-5501,-7954,-5502,-7955,-999,-1000,-1004,-1044,-1047,-7956,-1077, +-6345,-5505,-5367,-1107,-6343,-7957,-7958,-7959,-1336,-1369,-1376,-7960,-7961,-1548,-1600,-7962,-1645,-1676,-1758,-1767, +-7834,-7963, +-1888,-7964,-7965,-7966,-2114,-6195,-7967,-7968,-2177,-5509,-7969,-7970,-2330,-2342,-2353,-7971,-2488,-7972,-3730,-7973, +-7974,-7975], +[0,-6346,-630,-664,-665,-7976,-6477,-726,-7977,-7978,-932,-940,-7979,-964,-965,-1054,-7980,-1449,-1514,-1654,-1722,-1788, +-1942,-7981,-2269,-2293,-2341,-2359,-7982,-2512,-2518,-7983,-7984], +[0,-3994,-7985,-5375,-687,-7986,-7987,-7988,-3114], +[1,3,3021], +[0,3022,3023,3024,4], +[0,-3197,-33,-3376,-3384,-3355,-3374,-3397,-38,-3412,-40,-44,-7989,-7990,-7991,-7992,-541,-7993,-7941,-628,-7944,-7946, +-702,-7994,-7995,-7955,-6195,-2177], +[0,-23,-7996,-7997,-7998,-7999,-8000,-528,-630,-664,-705,-8001,-722,-7949,-753,-7951,-8002,-902,-8003,-904,-8004,-8005, +-8006,-8007,-8008,-8009,-932,-8010,-966,-7980,-8011,-1654,-1989,-2082,-7981,-2114,-2125,-2501], +[0,-525,-7986,-8012,-902,-3185,-3186], +[1,3,3026], +[0,3027,3028,3029,6], +[0,-8013,-8014,-7941,-8015,-6346,-6345,-7959,-8016,-5509,-2488], +[0,-23,-32,-33,-3376,-38,-3412,-44,-7996,-7998,-8017,-7990,-629,-630,-664,-8001,-726,-8002,-902,-903,-8018,-8003,-8004, +-8005,-8006,-8007,-8008,-8009,-8019,-8020,-8021,-932,-940,-8010,-964,-965,-967,-8022,-1054,-8011,-1654,-1942,-1989,-1990, +-2091,-6348,-2281,-2282,-5059,-2501], +[0,-8012,-902], +[1,3,3031], +[0,3032,3033,3034,8], +[0,-8023,-8024], +[0,-351,-3267,-3037,-1520,-2125,-2127,-2392,-2410], +[0,-905,-3264,-775,-8025,-8026], +[1,3,3036], +[0,0,0,105,8], +[1,3,3038], +[0,0,3039,3040,8], +[0,-1654,-932,-1405,-966,-958,-968,-943,-974], +[0,-6422,-907,-2435], +[1,3,3042], +[0,3043,31,3044,4], +[0,-1801], +[0,-5827,-8027,-5865,-8028,-8029,-8030,-4116], +[1,3,3046], +[0,3047,3048,7,4], +[0,-1119,-2321], +[0,-4035,-3136,-3037,-774,-932,-6929,-1344,-1415,-1534,-1623,-1942,-2410], +[1,3,3050], +[0,3051,3052,3053,4], +[0,-479,-2269], +[0,-3037,-1202,-1376,-1654,-1788,-1966,-2410], +[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3262,-3960,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3966,-3967, +-1965,-1966,-3968,-3969,-2063,-3970,-3108,-3971,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], +[1,3,3055], +[0,3056,3057,3058,8], +[0,-6511,-8031,-1977,-8032], +[0,-5834,-516,-5835,-932,-993,-1365,-1777,-1788,-2156,-2322], +[0,-3223,-8033,-8034,-3264,-6422,-6420], +[1,3,3060], +[0,0,3061,3062,9], +[0,-664,-1344,-1654,-2176], +[0,-8035,-8036,-8037,-8038,-7534], +[1,3,3064], +[0,3065,122,196,5], +[0,-987,-2346], +[1,3,3067], +[0,0,3068,3069,4], +[0,-23,-5584,-39,-40,-86,-3307,-7465,-527,-528,-533,-534,-932,-934,-940,-958,-967,-8039,-1107,-1344,-1415,-1646,-3547, +-7861,-1942,-6040,-2501,-2503,-2518,-8040], +[0,-3113,-6845,-5558,-8041,-8042,-8043,-8044], +[1,3,3071], +[0,3072,3073,85,4], +[0,-8045,-674,-918,-8046,-8047,-8048,-8049,-8050,-8051,-7394,-8052,-8053,-8054,-1559,-1794,-5849,-1797,-1798,-8055,-1992, +-8056,-8057], +[0,-526,-6022,-557,-932,-933,-958,-962,-969,-1365,-1449,-2125,-2156], +[1,3,3075], +[0,3076,3077,85,11], +[0,-1285,-2177,-2029,-1967,-1797,-8055,-2052,-917,-918], +[0,-915,-932,-2125,-1777,-21,-1365,-23,-557,-969,-2156,-32,-933,-958,-962,-970,-535,-6022], +[1,3,3079], +[0,3080,3081,85,4], +[0,-1285,-2177,-1967,-1797,-8062,-8063,-8046], +[0,-932,-2125,-1777,-21,-1365,-23,-557,-969,-2156,-32,-933,-958,-962,-970,-535,-6022], +[1,3,3083], +[0,3084,3085,85,6], +[0,-1285,-5849], +[0,-932,-2125,-1777,-21,-1365,-23,-557,-2156,-32,-958,-934,-535,-6022], +[1,3,3087], +[0,3088,3089,7,9], +[0,-459,-929], +[0,-465,-932,-943,-958,-963,-966,-968,-1654,-1788,-2293], +[1,3,3091], +[0,3092,3093,3094,4], +[0,-461,-1026], +[0,-7150,-635,-8064,-3347,-8065,-8066,-1942,-2091], +[0,-8067,-8068,-6505,-8069,-8070,-8071,-3217,-8072,-8073,-8074,-3756,-8075,-8076,-8077,-8078,-8079], +[1,3,3096], +[0,3097,3098,3099,4], +[0,-8080,-1283,-8081,-8082,-8083,-6402,-1797], +[0,-2832,-5834,-8084,-8085,-8086,-8087,-8088,-8089,-8090,-8091,-8092,-8093,-8094,-8095,-8096,-505,-516,-5835,-932,-6283, +-6503,-1402,-1777,-1788,-8097,-2156,-8098,-2322,-8099], +[0,-3214,-3217,-6505,-3756,-7374,-5846,-8100,-8101,-5831], +[1,3,3101], +[0,3102,3103,3104,11], +[0,-6704,-8102,-8103,-8104], +[0,-932,-6706,-6707,-6708,-1344,-1534,-1788,-8105,-6709,-6710], +[0,-3217,-8106,-8107,-8108,-3184,-8109,-8110,-8111,-8112,-3207,-3214,-3582,-5396,-2444,-5260,-8113], +[1,3,3106], +[0,0,3107,3108,4], +[0,-5834,-515,-932,-1365,-1414,-1788,-2156,-2416], +[0,-5396,-8108,-8114,-3214,-3217,-3582], +[1,3,3110], +[0,0,3111,3112,5], +[0,-526,-527,-535,-4098,-558,-664,-767,-1654,-2125], +[0,-3184,-6324,-525], +[1,3,3114], +[0,0,3115,3116,9], +[0,-8115,-1654,-902,-7945,-7938,-8116,-8117,-8118,-8119,-629,-7993,-8003,-8120,-8121,-6083,-6070,-8122,-6081,-548,-6072, +-6068,-550,-6071,-6082], +[0,-8123,-3582,-1961,-5923], +[1,3,3118], +[0,0,3119,3120,4], +[0,-21,-23,-40,-4691,-925,-932,-940,-943,-958,-966,-968,-1344,-1788,-1942,-2210,-2322], +[0,-1961,-5923,-3184,-8124,-926], +[1,3,3122], +[0,0,3123,3124,8], +[0,-5834,-515,-664,-923,-932,-993,-1127,-1137,-1149,-1161,-1365,-1654,-1788,-1963,-8125,-2156,-2322,-2416], +[0,-3217,-3207,-3184,-5396,-1961,-5923,-8126,-6917,-8127,-8128], +[1,3,3126], +[0,0,3127,3128,5], +[0,-589,-585], +[0,-5559,-3264,-3590], +[1,3,3130], +[0,0,14,3131,10], +[0,-5559,-5569,-5570,-8129,-8130,-2265,-8131,-8132], +[1,3,3133], +[0,3134,3135,7,4], +[0,-988,-6100,-987,-2231], +[0,-461,-615,-8133,-664,-3629,-8134,-1168,-1197,-1231,-1646,-1815,-2177], +[1,3,3137], +[0,3138,3139,3140,5], +[0,-189,-5200,-8135,-8136,-7820,-8137,-8138,-8139,-8140,-426,-469,-769,-812,-930,-982,-983,-986,-8141,-6100,-1025,-8142, +-1047,-1108,-1353,-8143,-1393,-8144,-1645,-5199,-1815], +[0,-2832,-23,-40,-3794,-7462,-3244,-8145,-8146,-3037,-428,-534,-652,-664,-674,-722,-753,-795,-888,-955,-8147,-7355,-8148, +-8149,-8150,-987,-8151,-1107,-1110,-1116,-1125,-1431,-1498,-1534,-1600,-1602,-1610,-8152,-8153,-8154,-8155,-8156,-8157, +-1654,-8158,-8159,-1942,-1959,-1972,-2066,-2082,-2177,-2195,-2210,-2410,-2501,-2503,-8160], +[0,-3272,-7148,-3214,-3217,-986], +[1,3,3142], +[0,3143,3144,197,5], +[0,-1797,-1798,-934], +[0,-2322,-887,-932,-1365,-44,-8161,-8162,-557,-969,-2156,-958,-962,-970], +[1,3,3146], +[0,3147,3148,197,4], +[0,-2177,-1797,-1798,-8167], +[0,-2322,-887,-932,-1365,-44,-8161,-8162,-557,-2156,-958], +[1,3,3150], +[0,3151,3152,3153,10], +[0,-934], +[0,-427,-428,-855,-932,-940,-958,-1344,-1534,-1771,-1942,-8168,-2410], +[0,-8164,-727,-4795,-8165,-6434,-8166,-932,-8163,-3214,-4900,-2410], +[1,3,3155], +[0,0,38,3156,8], +[0,-3939,-707,-8169,-5553,-7148,-8170,-1445,-1452,-8171,-932,-5874,-8172,-8173,-7440,-7144,-8174,-7840,-8175], +[1,3,3158], +[0,3159,38,3160,4], +[0,-190,-1110], +[0,-932,-5031,-8176], +[1,3,3162], +[0,3163,3164,3165,4], +[0,-3615,-3244,-190,-3748,-427,-428,-938,-945,-8177,-948,-958,-960,-964,-965,-7354,-978,-2411], +[0,-4367,-932,-2410], +[0,-4362,-932,-5031,-8176], +[1,3,3167], +[0,3168,3169,76,11], +[0,-965,-964,-958,-8177,-428,-7354,-427,-948], +[0,-932,-2410,-4367], +[1,3,3171], +[0,0,0,3172,6], +[0,-932,-8163,-5031,-8178,-1942], +[1,3,3174], +[0,3175,0,7,5], +[0,-23,-959,-969,-32,-958,-561,-956,-962,-8179,-428,-8167,-970,-976,-427], +[1,3,3177], +[0,0,3178,3179,5], +[0,-932,-943,-958,-965,-968,-2322], +[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8163,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2176,-2250, +-8185,-5553,-8186,-8187,-8174], +[1,3,3181], +[0,0,3182,3183,4], +[0,-3330,-8096,-932,-958,-965,-968,-2322], +[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8163,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2250,-8185, +-5553,-8186,-8187,-8174], +[1,3,3185], +[0,3186,3187,7,9], +[0,-190,-3560,-978,-1110,-2411], +[0,-8188,-3330,-3037,-8189,-672,-932,-8190,-8191,-1942,-2410], +[1,3,3189], +[0,3190,3191,3192,4], +[0,-8192,-7462,-3748,-8167,-1110], +[0,-519,-932], +[0,-8163,-2541,-8193,-8194,-8195,-8196,-8197,-707,-8169,-5553,-7148,-8170,-1445,-1452,-8171,-932,-5874,-8172,-2250,-8173, +-7440,-7144,-8174,-7840,-8175,-5493], +[1,3,3194], +[0,0,3195,3196,10], +[0,-86,-3307,-767,-1344,-1534,-2094,-2099,-2541], +[0,-8198,-727,-932,-7921,-7922,-8199,-2541], +[1,3,3198], +[0,3199,3200,3201,4], +[0,-429,-469,-671,-719,-755,-823,-3780,-7829,-1418,-1456,-5473,-1605,-2400], +[0,-190,-3037,-4372,-8200,-3899,-6593,-932,-940,-958,-965,-967,-978,-1609,-1768,-1771,-1821,-1942,-2210,-7969,-2410,-2411, +-2469], +[0,-4100,-3671,-856,-932,-3262,-3862], +[1,3,3203], +[0,3204,0,3205,8], +[0,-812,-8201,-1101,-8202,-8203,-2654,-8204], +[0,-2410,-932,-6024,-6041,-3862], +[1,3,3207], +[0,3208,3209,3210,5], +[0,-1046,-1077,-1543,-1793,-2168], +[0,-21,-23,-40,-86,-3307,-8205,-7166,-528,-533,-679,-8206,-767,-824,-825,-932,-940,-8207,-958,-1344,-1415,-1424,-1534, +-1771,-1942,-2251,-2501], +[0,-932,-7148,-8170,-5932,-2501], +[1,3,3212], +[0,3213,3214,3215,4], +[0,-189,-7462,-8208,-986,-8209,-8210,-2115], +[0,-428,-519,-652,-668,-932,-8211,-947,-955,-999,-1771,-1821,-1866,-2410,-2541], +[0,-932,-5208,-3784,-519,-4004,-4043,-507,-5856,-5855,-1654], +[1,3,3217], +[0,3218,3219,3220,9], +[0,-8212], +[0,-1654,-932,-528,-1552], +[0,-525,-932,-5208,-3784,-528], +[1,3,3222], +[0,3223,3224,3225,5], +[0,-7150,-8213,-635,-658,-1047,-1110,-1565,-2177], +[0,-23,-32,-86,-3307,-3615,-190,-3470,-3471,-8214,-3268,-8215,-3330,-3136,-8216,-3199,-589,-8217,-891,-932,-940,-955,-967, +-1002,-1344,-1415,-1942,-2174,-2205,-2375,-2379,-2410,-2411], +[0,-932,-4865,-6520,-3690,-7148,-657,-8218], +[1,3,3227], +[0,0,123,3228,5], +[0,-932,-5208,-8108,-4795], +[1,3,3230], +[0,3231,3232,3233,4], +[0,-930,-1353], +[0,-5380,-3037,-8219,-528,-708,-769,-932,-8220,-1077,-1654,-1788,-1810,-2125,-2177,-5621,-8221,-2816], +[0,-932,-5208,-3784,-3862,-8222,-3485,-8223,-1109,-1110,-8224,-8225,-8226,-8227,-8228,-8229], +[1,3,3235], +[0,3236,3237,198,11], +[0,-189,-988], +[0,-86,-3307,-3534,-8230,-3244,-190,-3560,-8231,-8232,-8233,-426,-3044,-3037,-428,-429,-3899,-932,-8234,-940,-947,-965, +-978,-981,-982,-986,-1344,-1431,-1534,-1548,-1609,-1768,-1772,-1942,-2892,-2410,-2411,-2469], +[1,3,3239], +[0,3240,3241,3242,4], +[0,-1548,-8235], +[0,-469,-1107,-1344,-1654,-932,-2125,-8236,-6611,-21,-23,-5870,-43,-2174,-40,-32,-8237,-3201,-955,-535,-3408,-36], +[0,-932,-3862,-8238], +[1,3,3244], +[0,3245,3246,3247,8], +[0,-1333], +[0,-8239,-8240,-932,-940,-8241,-1942,-2177], +[0,-3784,-5208,-932,-3264], +[1,3,3249], +[0,3250,3251,3252,9], +[0,-8242,-8243,-8244,-8045,-505,-812,-8245,-8246,-8247,-1285,-7437,-1393,-1645,-8063,-8248,-8055,-2177,-8249,-2383], +[0,-8250,-3330,-428,-526,-527,-528,-539,-541,-557,-6089,-566,-572,-664,-767,-8251,-932,-947,-948,-955,-958,-7894,-6039, +-8252,-1107,-1365,-1408,-1461,-8253,-8254,-1609,-1654,-8255,-1788,-2074,-2125,-2156,-2210,-2359,-2410,-8256], +[0,-932,-5208,-3784,-3184,-5748,-3209,-6024,-8257], +[1,3,3254], +[0,199,3255,198,6], +[0,-21,-23,-40,-42,-86,-3307,-8230,-8258,-3470,-3471,-5325,-3330,-3136,-3037,-3199,-427,-428,-429,-533,-8259,-815,-932, +-940,-947,-955,-958,-965,-967,-981,-8260,-1344,-1392,-1415,-6725,-1534,-8241,-1868,-1942,-2125,-2174,-2177,-2379,-2410], +[1,3,3257], +[0,3258,3259,3260,4], +[0,-8261,-8262,-8263,-3896,-812,-930,-986,-8141,-1320,-8264,-8265,-2177,-8266,-8267], +[0,-2832,-21,-23,-32,-3203,-40,-8268,-8269,-7820,-8270,-351,-7040,-3472,-7041,-3035,-3198,-8232,-8146,-426,-4049,-3621, +-3037,-3199,-8271,-3782,-535,-539,-8272,-652,-656,-664,-813,-932,-8237,-8236,-1107,-1110,-1344,-8273,-1456,-8274,-1534, +-1654,-8275,-1874,-8276,-2125,-2127,-2174,-2210,-5198,-2410,-2411], +[0,-932,-3862,-1446], +[1,3,3262], +[0,3263,3264,3265,9], +[0,-189,-7820,-8137,-8277,-8278,-8279,-7356,-5199,-2653], +[0,-32,-8280,-50,-8230,-7462,-8281,-8282,-3748,-7155,-3621,-8283,-3037,-3199,-427,-428,-652,-8284,-928,-932,-940,-955, +-8285,-960,-8286,-961,-963,-965,-8287,-967,-971,-980,-7355,-982,-997,-1110,-1654,-1834,-1942,-2177,-2281,-8288,-2282, +-8289,-8290,-2892,-2392,-2410,-2411,-8291,-2468,-2478], +[0,-932,-5208,-3784,-7148,-8292,-1460,-4055], +[1,3,3267], +[0,3268,3269,3270,4], +[0,-5113,-8243,-505,-8293,-522,-8294,-8295,-5973,-1285,-8296,-8297,-1645,-8063,-8032,-8298], +[0,-21,-23,-32,-3203,-43,-516,-535,-557,-932,-934,-947,-955,-956,-958,-988,-1059,-1365,-1408,-7317,-1646,-1777,-1797, +-1798,-2125,-2156,-2177,-2322,-8299], +[0,-932,-5208,-3784,-4665,-4666,-4146], +[1,3,3272], +[0,3273,3274,3275,4], +[0,-1618], +[0,-1788,-664,-1654,-932,-1110,-190,-8148,-8300], +[0,-932,-5208,-1599,-7148,-8170], +[1,3,3277], +[0,3278,0,3279,10], +[0,-1110,-189], +[0,-932,-5208,-3784,-1654], +[1,3,3281], +[0,3282,3283,200,9], +[0,-189,-909,-8301,-1101,-1110,-2898,-1353,-2177,-8302], +[0,-190,-3330,-426,-8303,-3037,-428,-5209,-932,-940,-947,-955,-1026,-1344,-1534,-1609,-1654,-1772,-1788,-1810,-1942,-1977, +-2091,-2125,-8304,-2400,-2410], +[1,3,3285], +[0,3286,3287,200,6], +[0,-6578,-8305,-1353,-1645,-2114,-2177], +[0,-5380,-708,-932,-1026,-1110,-1654,-1788,-1810,-1977,-2125], +[1,3,3289], +[0,3290,0,3291,10], +[0,-8306,-2653], +[0,-932,-5208,-3784,-1942], +[1,3,3293], +[0,3294,3295,3296,4], +[0,-189], +[0,-428,-855,-932,-940,-947,-955,-959,-965,-967,-1110,-1344,-1415,-1534,-1772,-1942,-2410], +[0,-932,-5208,-3784,-1961,-5923], +[1,3,3298], +[0,3299,3300,201,5], +[0,-8243,-8307,-505,-8308,-8245,-8309,-988,-1285,-8296,-1645,-1798,-8063,-8055,-1967,-2114,-2177,-5010,-8310], +[0,-23,-32,-3332,-8311,-8312,-41,-3330,-426,-3037,-428,-528,-932,-934,-947,-955,-958,-981,-8260,-982,-986,-8313,-1107, +-1405,-1408,-8314,-1609,-1654,-1777,-2210,-2410,-8256], +[1,3,3302], +[0,3303,3304,201,5], +[0,-2564,-23,-25,-8315,-3251], +[0,-1415,-2410,-3037,-47,-528,-3330,-426,-8316,-8317,-32,-42], +[1,3,3306], +[0,3307,3308,3309,6], +[0,-189,-5200,-3896,-8273,-8318,-8319,-8320], +[0,-50,-3462,-8230,-3244,-190,-8281,-8282,-5030,-3035,-3330,-8231,-426,-3621,-3037,-8321,-427,-428,-507,-664,-8284,-932, +-940,-947,-948,-955,-958,-960,-8286,-961,-963,-965,-8322,-967,-971,-978,-980,-7355,-8323,-1609,-1654,-8324,-1588,-1772, +-1788,-1834,-1942,-2177,-2281,-3085,-8288,-2892,-2392,-2410,-2411,-8291,-2468,-2478], +[0,-932,-5208,-3784,-5570,-5569], +[1,3,3311], +[0,3312,3313,3314,5], +[0,-8325], +[0,-190,-5887,-932,-8326,-940,-947,-955,-1534,-1609,-1654,-1771,-1942,-2174,-8160], +[0,-932,-7107,-8327], +[1,3,3316], +[0,3317,0,3318,9], +[0,-2410,-2177,-8328,-1566,-8329,-5200,-1645,-5198,-8320,-651,-644,-1110], +[0,-8330,-932,-5208], +[1,3,3320], +[0,0,123,3321,11], +[0,-932,-5208], +[1,3,3323], +[0,3324,3325,3326,9], +[0,-189,-3115,-6100,-1110,-1499,-1889,-1907,-1929,-2177,-8331], +[0,-23,-32,-6034,-8230,-4776,-8332,-8333,-4049,-8334,-3621,-3037,-8335,-3199,-8336,-3331,-3782,-461,-507,-928,-982,-8190, +-983,-986,-1431,-1521,-1654,-1916,-1931,-2162,-2232,-2286,-2299,-8337,-2392,-2399,-2548], +[0,-932,-3784,-5208,-2299,-8338], +[1,3,3328], +[0,3329,3330,3331,5], +[0,-3331,-429], +[0,-86,-3307,-3244,-190,-3037,-5206,-3664,-6593,-3665,-932,-940,-947,-948,-8339,-965,-968,-981,-8260,-1110,-1344,-1431, +-1534,-1942,-2910,-2174,-2892,-2410,-2411,-2469], +[0,-932,-5208,-3784,-7148,-5127,-3634], +[1,3,3333], +[0,3334,3335,3336,4], +[0,-429,-264,-263], +[0,-4153,-3330,-426,-932,-4164], +[0,-4165,-856,-4100,-3485,-4156,-4158,-4346,-3862], +[1,3,3338], +[0,3339,3340,3341,9], +[0,-3188,-189,-671,-680,-8340,-3347,-8341,-1110,-1366,-5894,-1451,-1878,-8342,-8343,-2177,-4096], +[0,-22,-23,-32,-3244,-8344,-428,-3782,-519,-652,-910,-932,-8211,-945,-947,-955,-960,-978,-981,-8260,-982,-986,-1536,-1609, +-8345,-8346,-1768,-1772,-8275,-1821,-1951,-2410,-2478,-2548], +[0,-932,-5208,-3784,-8347,-8170,-7148,-5553,-2541], +[1,3,3343], +[0,199,3344,3345,4], +[0,-3748,-3330,-3621,-3037,-427,-428,-5206,-8348,-8349,-726,-932,-947,-955,-979,-981,-8260,-2379,-2392,-2410,-2423,-2469], +[0,-932,-5208,-3784,-8350,-2469,-8351], +[1,3,3347], +[0,3348,3349,3350,5], +[0,-189,-5199,-2788,-1931,-2177,-8352], +[0,-50,-3560,-8282,-3748,-5030,-3330,-8283,-3037,-3199,-8353,-427,-428,-3782,-3664,-507,-8284,-928,-932,-6835,-940,-955, +-958,-961,-8354,-8287,-967,-978,-8190,-983,-986,-997,-1110,-1449,-1609,-1852,-1942,-2892,-2410,-8291,-2468,-2469,-2478], +[0,-932,-3784,-5031,-2476,-5173,-8199], +[1,3,3352], +[0,3353,3354,3355,6], +[0,-22,-1464,-668,-1373,-1793,-2006,-2205], +[0,-3244,-8355,-3330,-3037,-4067,-3040,-740,-932,-5135,-8356,-8357,-1431,-1741,-2269,-2410,-2469], +[0,-932,-8358], +[1,3,3357], +[0,3358,3359,38,9], +[0,-8359,-426,-8360,-988], +[0,-428,-664,-983,-986,-8159,-2195], +[1,3,3361], +[0,0,3362,38,5], +[0,-1810,-2127,-2132,-2384,-2410], +[1,3,3364], +[0,3365,0,3366,4], +[0,-941,-8361], +[0,-984], +[1,3,3368], +[0,0,0,3369,9], +[0,-4791,-3217,-8257,-6024,-3209,-3966,-4792], +[1,3,3371], +[0,3372,3373,3374,5], +[0,-461,-6426,-983], +[0,-2832,-2127,-2195,-2384,-2410], +[0,-3272,-3217,-3214,-3215,-4132,-461], +[1,3,3376], +[0,0,3377,3378,5], +[0,-6774,-8362,-8363,-1107,-1405,-8364,-1471,-1475,-1477,-1478,-1479,-1480,-1482,-1487,-8365,-1488,-1548,-1654,-8366, +-2081,-2330,-2388,-2410,-2412,-8367,-2501], +[0,-3272,-3217,-987,-3214,-3215,-4132], +[1,3,3380], +[0,0,3381,7,5], +[0,-558,-566,-664,-986,-1168,-1179,-1199,-1205,-8368,-1452,-1654], +[1,3,3383], +[0,202,3384,7,6], +[0,-2410,-2447], +[1,3,3386], +[0,0,3387,3388,6], +[0,-1654,-932,-1405,-589,-2172,-2155,-585,-966,-958,-968,-943,-963,-974], +[0,-990,-1334,-4616], +[1,3,3390], +[0,3391,3392,3393,8], +[0,-8369,-992], +[0,-8370,-8371,-8372,-8373,-4272,-5686,-3037,-8096,-633,-8374,-756,-1344,-1405,-1471,-1472,-1477,-1479,-8375,-1646,-1788, +-1942,-2322,-2379,-2388,-2402,-2405,-2410,-8376], +[0,-4276,-8377], +[1,3,3395], +[0,3396,3397,3398,5], +[0,-4272,-616,-760,-8378,-8379], +[0,-8380,-3037,-8381,-8096,-932,-1471,-1475,-1479,-8375,-8382,-1788,-1942,-2322,-2379,-2410], +[0,-4276,-8113,-5260], +[1,3,3400], +[0,3401,3402,3403,5], +[0,-461,-668,-2550,-1548,-615,-1077,-8383,-988,-1600,-8384,-2425], +[0,-1983,-8385,-2410,-3037], +[0,-8386,-8387,-3214,-1599,-4004], +[1,3,3405], +[0,3406,3407,3408,5], +[0,-883,-8388,-1597,-8389,-2239,-8390,-2346], +[0,-8391,-8392,-8393,-2322,-8394], +[0,-5827,-6917,-8395,-7724,-2239,-8396,-1631,-8276], +[1,3,3410], +[0,0,3411,3412,9], +[0,-589,-615,-756,-1654,-1788], +[0,-5389,-997,-6820,-8397,-8398,-8399,-8400,-6821,-8401,-8402,-1801,-8403,-8404], +[1,3,3414], +[0,0,3415,3416,4], +[0,-350,-3266,-509,-652,-1654,-2127], +[0,-8405,-8406,-8407,-8408,-8398,-8399,-6821,-8401,-6820,-5389,-1801,-8400,-8403,-8409,-8404], +[1,3,3418], +[0,0,3419,3420,5], +[0,-468,-1083,-8047,-1283,-1402,-2322], +[0,-997,-8410,-8411,-8412], +[1,3,3422], +[0,3423,3424,3425,4], +[0,-8413,-769,-1040,-1100,-8414,-1395,-1399,-1773,-1951,-2202,-8415,-8416], +[0,-3037,-519,-652,-8417,-8418,-8419,-8420,-1849,-7087,-6909,-2384,-2410,-2518,-2541], +[0,-8421,-6599,-1958,-8422,-7096,-8423,-8424,-7091,-6656,-5550,-8425,-7304,-8426,-1764,-1847,-8427,-5369], +[1,3,3427], +[0,0,3428,3429,6], +[0,-1144,-1146,-1149,-1127,-2518], +[0,-1000,-1958,-8428,-3973,-8429,-8430,-8431,-8432], +[1,3,3431], +[0,3432,3433,7,4], +[0,-8433,-8434,-5124,-4025,-5129,-1427], +[0,-7037,-4034,-668,-1361], +[1,3,3435], +[0,0,3436,3437,4], +[0,-2832,-3037,-8200,-3665,-932,-8435,-1763,-8436,-2269,-2378,-2410,-2469], +[0,-2410,-8437,-507,-3694,-2414,-4004,-3634], +[1,3,3439], +[0,3440,3441,203,4], +[0,-1983,-828,-990,-1801,-2178,-2453,-812,-1072,-743,-3122,-459,-2401,-1840,-2255,-907,-1641,-5148,-617,-929,-1335,-1800, +-737,-1045,-1997,-2187,-746,-8438,-736], +[0,-888,-1296,-1788,-465,-1654,-2457,-932,-1610,-1676,-2293,-733,-744,-745,-1010,-1635,-8439], +[1,3,3443], +[0,3444,3445,203,4], +[0,-459,-8440,-617,-736,-737,-743,-746,-812,-828,-907,-929,-990,-1045,-1072,-1335,-8438,-1636,-1800,-1840,-1851,-5148, +-1983,-1997,-2155,-2178,-2187,-8441,-2255,-2401,-2445,-2453], +[0,-465,-733,-744,-745,-888,-932,-1010,-1296,-1610,-1635,-1654,-1676,-1788,-8439,-2293,-2457], +[1,3,3447], +[0,3448,3449,3450,6], +[0,-23,-25,-46,-8245,-1851], +[0,-3136,-932,-1415], +[0,-4847,-1004,-1446,-4100,-3696,-8442,-856,-2305,-5886,-3262,-3960,-8443,-8444,-8445], +[1,3,3452], +[0,3453,3454,3455,4], +[0,-888,-1650,-719,-1645,-6123], +[0,-1654,-932,-2125,-2418,-2293,-2369,-966,-958,-968,-943,-974,-2450], +[0,-1004,-3161,-6125,-3578,-3691,-5728,-3122,-3994,-3690], +[1,3,3457], +[0,3458,3459,3460,5], +[0,-1107,-1119,-1276], +[0,-190,-3470,-7040,-3471,-3472,-7041,-7042,-3136,-3037,-932,-1110,-1417,-2174,-2375,-2410,-2411], +[0,-1004,-8446,-1276,-6107,-3999,-8447,-3261], +[1,3,3462], +[0,3463,3464,3465,5], +[0,-1465,-8448,-3850], +[0,-1654,-932,-1004,-2379,-1942,-2410,-3621,-3617,-739,-428,-427], +[0,-6120,-8449,-3173,-8450,-6121,-1334,-3175,-8451,-1791,-1004], +[1,3,3467], +[0,3468,3469,7,5], +[0,-743,-746,-812,-828,-6825,-1840,-2155,-2418], +[0,-465,-744,-932,-963,-1004,-1654,-1788,-2293], +[1,3,3471], +[0,3472,3473,3474,5], +[0,-469,-668,-719,-724,-754,-865,-1004,-1435,-2127,-2132,-2410,-2564], +[0,-190,-3732,-4198,-3617,-3037,-427,-428,-932,-966,-1110,-1753,-1942,-2125,-2379,-2383,-2411], +[0,-3690,-3445,-6491,-3113,-6129,-1004,-8452,-3161,-8453,-5545,-3844,-3926], +[1,3,3476], +[0,0,3477,3478,5], +[0,-652,-8454,-2210,-932,-1004,-2379,-8455,-2410,-3037,-4372,-3617,-428,-427], +[0,-8456,-8457,-4055,-2410,-3690,-1334,-1004,-8458,-8459,-2410,-5401,-8038,-8460,-8461,-8462,-8463,-8464,-4140,-4601, +-3445,-8465,-8466,-2006,-8467,-8468,-8469], +[1,3,3480], +[0,3481,3482,3483,4], +[0,-1548,-2451], +[0,-2685,-8470,-8471,-3136,-3044,-427,-428,-932,-940,-958,-967,-1415,-1942,-2375,-2410], +[0,-1004,-2451,-3926,-5874,-7723,-8472,-2544], +[1,3,3485], +[0,3486,3487,3488,5], +[0,-483,-1736,-8473,-1993,-8474], +[0,-3732,-4198,-8475,-3617,-4199,-8476,-8477,-4625,-8478,-724,-754,-828,-1004,-4206,-1335,-1730,-8479,-2410,-2426,-2564, +-8480], +[0,-3967,-3690,-1334,-5401,-856,-4055,-1004,-2410,-4058,-3844,-8481,-4847,-8482,-3438,-8483,-8484,-8485,-8486,-2564,-3926], +[1,3,3490], +[0,0,3491,3492,8], +[0,-5834,-8487,-932,-1445,-2322], +[0,-1015,-702,-1631], +[1,3,3494], +[0,3495,3496,3497,8], +[0,-8488,-8489], +[0,-8490,-8491,-8492,-1202,-1396,-8493,-1646,-1654,-1792], +[0,-7370,-702,-1015,-1631,-7369,-7208,-1792,-1797,-7375,-3589,-7153,-8494,-8495,-2444,-3590,-5260,-5846], +[1,3,3499], +[0,3500,3501,7,5], +[0,-510,-1543,-2168,-2510], +[0,-526,-533,-551,-556,-558,-767,-778,-825,-932,-6929,-958,-1041,-1415,-1534,-1780,-1939,-2000,-2251,-2275,-2501,-8496], +[1,3,3503], +[0,3504,3505,3506,10], +[0,-812,-1100,-2555,-8497], +[0,-427,-428,-519,-932,-943,-950,-958,-966,-968,-974,-1077,-1344,-1534,-1788,-2384,-2410], +[0,-2432,-5408,-7347], +[1,3,3508], +[0,0,3509,7,9], +[0,-1788,-1168,-1446,-1654,-2210,-932,-1548,-1813,-2347,-756,-633,-2915,-1243,-1262,-1534,-2778,-2461,-1204,-8498,-8499, +-2463], +[1,3,3511], +[0,3512,3513,3514,4], +[0,-8500], +[0,-932,-937,-966,-1001,-1654,-1788,-8501,-2210], +[0,-8502,-1573,-3444,-5545,-3240,-8503], +[1,3,3516], +[0,3517,3518,3519,4], +[0,-8504], +[0,-262,-3037,-767,-1107,-8342,-2104,-2402,-2410,-2469,-8505,-8506,-1023], +[0,-8507,-8508,-5858,-3634,-8509,-8510,-8511,-1021,-8512,-8513,-1415], +[1,3,3521], +[0,3522,0,3523,8], +[0,-8514,-8515], +[0,-788,-3215,-5922,-8516,-8517,-8518], +[1,3,3525], +[0,0,3526,3527,4], +[0,-756,-864,-932,-1654,-1788,-1939,-2006,-2052,-2210,-2410], +[0,-5922,-6439,-821], +[1,3,3529], +[0,3530,3531,204,4], +[0,-8519,-8520,-1108,-5615,-1639], +[0,-8521,-6927,-8522,-4036,-3621,-3037,-8523,-4372,-8524,-932,-8525,-999,-1026,-4787,-1107,-8526,-1654,-2125,-2210,-8527, +-2410], +[1,3,3533], +[0,0,3534,7,5], +[0,-3621,-3037,-1654,-2165,-2410], +[1,3,3536], +[0,3537,3538,3539,11], +[0,-8529], +[0,-23,-38,-40,-43,-3037,-534,-652,-932,-1297,-1412,-1942,-1973,-2410,-2501,-2503], +[0,-5922,-6597,-4055,-3215,-2536,-6841,-2537,-3756,-2451,-5874,-8530,-507,-8531,-8532,-3264], +[1,3,3541], +[0,0,0,3542,10], +[0,-1029,-3162,-2363,-2319,-8533,-826], +[1,3,3544], +[0,3545,3546,3547,4], +[0,-8534,-8535,-8536,-8537,-8538,-8539,-8540,-8541,-8542,-1867,-8543,-2124,-8544,-2177,-8545], +[0,-8546,-3902,-357,-3748,-5029,-3037,-469,-3907,-470,-8547,-8548,-8549,-2917,-8550,-726,-767,-932,-8551,-4848,-8552, +-8553,-1335,-1435,-5265,-1464,-8554,-2884,-1730,-1972,-2240,-2384,-2410,-2426,-2453,-3612], +[0,-3578,-3161,-4055,-4058,-1805,-3690], +[1,3,3549], +[0,3550,3551,7,5], +[0,-262,-8555,-5335,-8556,-8557,-5336,-5337,-8558,-8559,-536,-541,-8560,-8561,-909,-928,-1026,-5344,-8562,-1645,-8563, +-2383,-2410,-8564], +[0,-86,-3307,-367,-3136,-8565,-8566,-3037,-6025,-5367,-1344,-1415,-3640,-1534,-1942,-1944,-1945,-2125,-2379,-2392,-5369], +[1,3,3553], +[0,3554,3555,3556,10], +[0,-8567,-8568,-8569,-8570,-8571,-6369,-883,-1646,-8255,-2062,-8032,-2243,-8572,-8057,-8573,-2322,-2347], +[0,-5834,-515,-516,-932,-1365,-1777,-2156], +[0,-2319,-8574,-4004,-8575,-8576,-3240], +[1,3,3558], +[0,3559,3560,7,5], +[0,-768,-8577,-1580,-1792,-1961,-8578,-2594], +[0,-23,-824,-1059,-1168,-1174,-1201,-1243,-1361,-1417,-1632], +[1,3,3562], +[0,28,3563,3564,9], +[0,-21,-23,-40,-41,-3470,-3471,-8579,-5859,-8580,-553,-796,-932,-933,-1534,-1650,-2174], +[0,-8581,-8582,-8583,-8584,-3098,-8585,-3100,-3482,-2006,-8586,-8587,-5066,-3578,-8588,-8589,-8590,-8591,-8592,-8593, +-8594,-8595,-8596,-8597,-8598,-8599,-8600,-8601,-8602,-8603,-8604,-8605], +[1,3,3566], +[0,39,3567,3568,4], +[0,-21,-23,-38,-40,-41,-42,-3326,-350,-351,-3267,-407,-409,-2622,-3136,-3040,-3052,-427,-428,-708,-726,-767,-932,-934, +-940,-7476,-958,-959,-969,-970,-1415,-2006,-2019,-2082,-2127,-2140,-2375,-2387,-2410], +[0,-8606,-3100,-8607,-2074], +[1,3,3570], +[0,3571,0,3572,8], +[0,-8608,-8609,-8610,-5140], +[0,-4213,-1334,-4215,-3634,-4216,-8611], +[1,3,3574], +[0,3575,0,3576,10], +[0,-8612], +[0,-8613,-1038,-6768,-8614,-510,-5921,-8615,-6309,-1961], +[1,3,3578], +[0,75,3579,3580,4], +[0,-3037,-3665,-510,-1344,-1534,-2410,-2466,-6859,-2469], +[0,-1039,-4111,-8616,-8617,-5514], +[1,3,3582], +[0,3583,14,3584,9], +[0,-6861], +[0,-4112,-687,-7095,-3958,-8132,-8618,-8619,-8620,-1040,-8621], +[1,3,3586], +[0,205,3587,48,4], +[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-1344,-1415,-1534,-1623,-1771,-1942,-2251,-2437, +-2501], +[1,3,3589], +[0,0,3590,3591,8], +[0,-21,-23,-4691,-3356], +[0,-8622,-8623,-8624], +[1,3,3593], +[0,3594,3595,3596,4], +[0,-8625,-8626,-8627,-8628], +[0,-8629,-3037,-519,-8630,-1100,-8631,-2384,-2541], +[0,-1640,-6656,-8038,-8632,-5409,-6527,-5094,-8633,-8634,-6855,-8635,-8636,-6659,-7440,-1391,-8637,-8638,-8639,-7863, +-7304,-640,-6438,-8640,-7715,-8641,-8642,-5315,-8643,-8644,-8645,-8646,-8647,-8648,-8649,-8650,-8651,-1992,-8652,-8653, +-8654,-8655,-8656,-8657,-5408,-2323,-8658,-8659,-7345,-8660,-7860,-8661,-8662,-8663,-8664,-8665,-8666,-8667,-8668,-8669, +-8670,-8671,-8672,-8673, +-8674,-8675,-6528,-8676,-8677,-5953,-8678,-8679,-8680,-8681,-8682,-8683,-8684,-8685,-8686,-8687,-8688,-3742,-8689,-8690, +-8691,-8692,-8693,-8694,-8695,-8696,-8697,-8698,-8699,-8700,-8701,-8702,-8703,-8704,-2534,-8705,-8706,-8707,-8708,-8709, +-8710,-8711,-8712,-8713,-8714,-6597,-8715,-8716,-4771,-8717,-8718,-8719,-6042,-8720,-8721,-8722,-8723,-8724,-8725,-8726, +-8727,-8728,-8729,-8730, +-8731,-8732,-8733,-8734,-8735,-8736,-8737,-8738,-8739,-8740,-8741,-8742,-8743,-8744,-8745,-8746,-8747,-8748,-8749,-8750, +-8751,-8752,-8753,-5316,-8754,-8755,-8756,-8757,-7557,-8758,-8759,-8760,-8761,-8762,-8763,-8764,-8765,-8766,-7711,-8767, +-8768,-8769,-8770,-8771,-8772,-8773,-8774,-8775,-8776,-8777,-8778,-8779,-8780,-8781,-8782,-8783,-8784,-8785,-8786,-8787, +-8788,-8789,-8790,-8791, +-8792,-8793,-6695,-8794,-8795,-8796,-7349,-8797,-8798], +[1,3,3598], +[0,0,3599,3600,9], +[0,-3266,-516,-652,-932,-1344,-1654,-2127], +[0,-6656,-1044,-8799,-8800,-8801,-651,-834], +[1,3,3602], +[0,3603,81,7,6], +[0,-812,-907,-929,-1800,-1840,-2255], +[1,3,3605], +[0,3606,3607,3608,5], +[0,-1871,-5907], +[0,-2541,-519,-824,-2384,-2331], +[0,-3324,-7421,-6491,-5573,-7282], +[1,3,3610], +[0,3611,3612,3613,4], +[0,-8802,-8803], +[0,-519,-7408,-2331,-2384,-2541], +[0,-5573,-8804,-1047,-5504,-8805,-8806,-6656,-7282,-5572,-5897,-2114,-8807,-6370,-7420,-7421,-2487,-8808,-1847], +[1,3,3615], +[0,3616,3617,3618,4], +[0,-8809,-1393,-1639,-8810], +[0,-932,-937,-966,-1001,-8811,-1654,-1759,-1788,-2114], +[0,-6656,-5573,-1047,-5504,-1107,-5572,-5574,-2114,-7282], +[1,3,3620], +[0,3621,3622,3623,4], +[0,-8812,-8813,-8814,-8815,-8816,-8817,-8818,-8819,-8820,-8821,-8822,-8823,-8824,-8825,-8826,-8827,-8828,-8829,-8830, +-8831,-8832,-8833,-8834,-8835,-8836,-8837,-8838,-8839], +[0,-1168,-2127,-2410,-1244,-1252,-2143,-3266,-2134,-350,-2139,-2142,-351], +[0,-3173,-7685,-8840,-1050,-8841,-6005,-6187,-8842], +[1,3,3625], +[0,3626,3627,3628,10], +[0,-8843,-8831,-8844,-3037,-8845,-1025,-8846,-1465,-8847,-1730,-2446], +[0,-8848,-8824,-8825,-8849,-262,-8850,-3035,-4269,-8851,-3850,-3044,-5686,-3621,-4624,-8852,-8853,-4372,-3625,-3738,-427, +-428,-581,-664,-665,-3629,-668,-677,-824,-932,-8854,-1168,-1199,-1208,-1261,-8855,-1548,-1646,-1654,-1693,-1722,-1771, +-1788,-2105,-2106,-2150,-2210,-2211,-2379,-2410,-2550], +[0,-8856,-7685,-8840,-8841,-3173], +[1,3,3630], +[0,3631,0,3632,10], +[0,-8857,-8858,-8859,-8860,-8861,-8862,-4106,-8863,-458,-469,-470,-501,-8864,-617,-679,-8865,-695,-713,-719,-728,-754, +-767,-769,-790,-8866,-8867,-8868,-1004,-1044,-1069,-1077,-1087,-8869,-1107,-8846,-1353,-1442,-1465,-1526,-8870,-1548, +-8871,-1610,-6294,-1640,-1645,-1676,-1729,-1805,-1816,-3447,-1857,-8872,-8873,-1888,-1959,-8874,-2122,-2177,-8875,-8876, +-8877,-8878, +-4356,-2359,-8879,-8880,-8881,-2446,-2520,-2522,-2531,-2548,-2564,-8882], +[0,-8883,-687,-8884,-5801,-8885,-1050,-8841,-6224,-8886], +[1,3,3634], +[0,3635,86,3636,9], +[0,-8887,-668,-831,-8888,-8889,-2001], +[0,-7416,-5897], +[1,3,3638], +[0,3639,3640,7,5], +[0,-3048,-8566,-8890,-1077,-8891,-2488], +[0,-3037,-2125,-2319,-2410], +[1,3,3642], +[0,0,86,3643,5], +[0,-1055,-4055,-5841,-8892,-2239,-7208,-8893], +[1,3,3645], +[0,3646,206,3647,5], +[0,-812,-926,-1077,-1548,-2359], +[0,-7871], +[1,3,3649], +[0,0,3650,3651,4], +[0,-23,-36,-6064,-40,-8894,-3048,-3036,-3136,-4964,-3037,-8336,-551,-679,-756,-1077,-1107,-1415,-1942,-2125,-2127,-2128, +-8895,-8896,-2141,-2334,-2375,-2379,-2387,-2410], +[0,-3214,-4224,-4120,-4121,-4123,-4122,-8897], +[1,3,3653], +[0,3654,3655,3656,9], +[0,-8898,-668,-1038,-1381,-1531,-1758,-6467,-1965,-2177,-2246,-8899,-6007], +[0,-664,-756,-932,-1405,-8900,-1654,-1939,-1972,-2210], +[0,-8901,-8902,-8903,-8904,-8421,-5550,-6836,-8905,-8906,-5921,-8907,-8908,-8427,-5801,-8909], +[1,3,3658], +[0,0,0,3659,4], +[0,-5732,-687,-8425,-7304,-5411,-4038,-8038,-8910,-7440,-7144,-3214,-3756,-8911], +[1,3,3661], +[0,3662,3663,3664,11], +[0,-2997,-8912,-8913,-1889,-2318], +[0,-23,-40,-3559,-8914,-8915,-427,-428,-518,-534,-749,-753,-767,-778,-779,-784,-932,-940,-967,-8916,-1041,-8917,-1643, +-1771,-1942,-8918,-4245,-2200,-2233,-2275,-2335,-2376,-2410,-2501,-2503,-2505,-8919,-2552], +[0,-1060,-2410,-3214,-2501,-3264,-775,-5511,-8920,-2316,-7287,-8921,-8922,-8923,-8924,-7287,-8925,-7288,-7289,-8926,-7294, +-8927,-8928,-7297,-7293,-7292,-7296,-8929,-932,-1942,-8930,-985,-8931], +[1,3,3666], +[0,3667,3668,3669,4], +[0,-510,-2518], +[0,-1788,-1446,-1654,-2198], +[0,-8932], +[1,3,3671], +[0,3672,3673,3674,4], +[0,-8933,-1033], +[0,-23,-534,-7747,-824,-1168,-1174,-1201,-1208,-1243,-1266,-1361,-1415,-1419,-1792,-2006,-8934,-2019,-2463,-2501,-7752], +[0,-1062,-2006,-4038,-8935], +[1,3,3676], +[0,0,3677,3678,4], +[0,-725,-932,-1004,-8936,-1654,-1788], +[0,-1334,-1342,-2435,-8937,-3323,-8938,-3590], +[1,3,3680], +[0,0,0,3681,9], +[0,-3827,-3837,-3838,-3167,-3827,-620], +[1,3,3683], +[0,3684,3685,7,11], +[0,-8050], +[0,-2832,-5834,-8084,-8939,-8096,-516,-932,-1777,-1788,-2322], +[1,3,3687], +[0,3688,3689,3690,11], +[0,-510,-8940,-702,-8941,-714,-1650,-2520,-8942,-8943,-1953,-728,-995,-1792,-8944], +[0,-664,-2471,-1654,-932,-1666,-8945,-2105,-1942,-8946,-940,-967], +[0,-687,-8947,-8948,-3674], +[1,3,3692], +[0,3693,3694,3695,8], +[0,-22,-668,-679,-755,-823,-1077,-1623,-1645,-8949,-2168,-2177,-2321], +[0,-3307,-7040,-3842,-3472,-7041,-7042,-8355,-7080,-3048,-3136,-4049,-8566,-3637,-3037,-8890,-3199,-427,-428,-721,-767, +-932,-958,-966,-967,-4650,-1344,-1415,-8950,-1421,-1456,-8951,-1534,-1658,-1942,-2125,-2174,-2269,-2375,-2410,-2501], +[0,-2501,-3862,-2410,-8952,-2376,-2501,-8423,-5922], +[1,3,3697], +[0,3698,3699,3700,5], +[0,-6008,-668,-679,-1548,-1639,-1645,-2114,-2321], +[0,-8953,-7202,-3044,-4036,-8566,-3037,-3200,-3046,-664,-778,-932,-1344,-1405,-1534,-1654,-1658,-1660,-1942,-2125,-2210, +-2376,-2388,-2389,-2410,-2476,-2477,-2481,-2485,-2501], +[0,-2501,-3862,-2410,-8038,-7144,-8170,-8423,-5922,-6188,-2376,-520,-8954,-7172], +[1,3,3702], +[0,3703,3704,7,6], +[0,-8955,-8956,-8957,-1285,-1641], +[0,-5834,-516,-633,-8958,-756,-769,-932,-8959,-8960,-1070,-1365,-8961,-1405,-8962,-8963,-6058,-1939,-1978,-2105,-2125, +-2177,-2322], +[1,3,3706], +[0,3707,3708,3709,4], +[0,-1801,-8964,-8965], +[0,-1501,-1788,-1415,-932,-2127,-1004,-1942,-2293,-8966,-958,-3234,-940,-967,-350,-8967,-934,-351,-8968], +[0,-6463,-4053,-6582,-1985,-8969,-4055,-8970,-6656], +[1,3,3711], +[0,3712,3713,3714,9], +[0,-5220,-823,-1311,-1548,-1549,-2798,-8971,-2387], +[0,-409,-3044,-3040,-3052,-4972,-8972,-2006,-2019,-8973,-2410,-3612], +[0,-1071,-4053,-4054,-2006,-2019,-3322,-8974,-3926,-8975,-3926,-8976,-8977], +[1,3,3716], +[0,0,3717,3718,6], +[0,-1654,-932,-1405,-589,-585,-966,-958,-968,-943,-963,-974], +[0,-1072,-1334,-8978,-3324], +[1,3,3720], +[0,3721,3722,3723,4], +[0,-668,-3606,-2267], +[0,-527,-528,-534,-545,-560,-932,-949,-1001,-1415,-1626,-2501], +[0,-8979,-8980,-2501,-3862], +[1,3,3725], +[0,3726,3727,3728,4], +[0,-1442], +[0,-627,-8981,-756,-1405,-2250,-2322,-2568], +[0,-2548,-8982,-8983], +[1,3,3730], +[0,3731,3732,3733,8], +[0,-1119,-1462,-8984], +[0,-8985,-5726,-1646,-1654,-1788,-1972,-8986,-2250], +[0,-1076,-6656,-8801,-6351,-7421,-8987,-1650,-8988,-8989,-7371,-4055,-2059,-6234,-8987,-6693,-6694,-2363,-8990,-5554, +-8991,-6932,-1961], +[1,3,3735], +[0,124,3736,3737,4], +[0,-3035,-3048,-3621,-3037,-664,-1077,-1405,-1654,-1788,-1942,-1948,-8992,-2379,-2410], +[0,-1076,-8801], +[1,3,3739], +[0,3740,3741,3742,4], +[0,-8993,-1077,-1693,-8994], +[0,-3048,-3623,-1654,-925,-2148,-615,-2517,-1980], +[0,-1961,-1076,-6656,-8801], +[1,3,3744], +[0,0,3745,3746,5], +[0,-1733], +[0,-1080,-8995], +[1,3,3748], +[0,3749,3750,7,11], +[0,-1650,-2125,-1370,-1119], +[0,-2319,-2250], +[1,3,3752], +[0,3753,0,3754,8], +[0,-2543,-2062], +[0,-1082,-3323,-6931], +[1,3,3756], +[0,0,3757,3758,5], +[0,-5834,-515,-516,-932,-1788,-2156,-2322], +[0,-5924,-6557,-8108,-6444,-7163,-8996], +[1,3,3760], +[0,0,3761,3762,4], +[0,-21,-23,-32,-36,-3367,-40,-42,-86,-3307,-8997,-3326,-351,-3561,-8998,-8999,-9000,-9001,-8219,-2716,-2717,-534,-932, +-940,-1344,-9002,-1942,-2104,-2127,-2132,-2251,-2334,-2410,-2469,-2816,-9003], +[0,-1087,-7282,-9004], +[1,3,3764], +[0,0,3765,3766,11], +[0,-3748,-3268,-427,-428,-367,-589,-932,-943,-948,-958,-965,-968,-1344,-2391], +[0,-7314,-3578,-1334,-3844,-9005,-3445,-3161], +[1,3,3768], +[0,0,0,3769,8], +[0,-1087,-7282,-7724,-9006,-9007], +[1,3,3771], +[0,3772,3773,3774,6], +[0,-9008], +[0,-510,-1127,-9009,-1132,-1144,-1146,-2125,-2176], +[0,-2490,-1107], +[1,3,3776], +[0,0,3777,7,6], +[0,-2410,-3037], +[1,3,3779], +[0,3780,3781,3782,5], +[0,-668,-2562,-2523,-2557], +[0,-1127,-1131,-9010,-9011,-1542,-2425,-1144,-1151], +[0,-2557,-3970,-3161,-3095,-3577,-3994,-475], +[1,3,3784], +[0,3785,3786,3787,5], +[0,-668,-2218,-2562,-1548,-9012,-2557,-2425], +[0,-1693,-888,-664,-622,-1654,-2210,-932,-1650,-615,-1405,-719,-2211,-769,-1440,-665,-2070,-1657], +[0,-2557,-475,-1168,-9013,-9014,-620,-478,-9015,-2162,-1521,-3184,-525,-9016,-2410,-711,-1409,-9017,-2501,-932], +[1,3,3789], +[0,3790,3791,3792,4], +[0,-1116,-1107,-2562,-727,-1548,-689,-9018,-9019,-2557], +[0,-888,-932,-1412,-1077,-9010,-9011,-958,-9020], +[0,-2557,-3970,-3100,-3994,-9021,-3095,-5574,-9022], +[1,3,3794], +[0,0,3795,3796,5], +[0,-3037,-932,-940,-967,-968,-1942,-2319,-2410], +[0,-9023,-9024,-7329], +[1,3,3798], +[0,0,3799,3800,10], +[0,-5325,-3037,-3899,-9025,-1942,-2200,-9026,-2410,-2469], +[0,-5925,-3262,-9027,-9028,-9029,-5112,-6917,-9030], +[1,3,3802], +[0,0,3803,7,11], +[0,-21,-23,-40,-42,-3470,-3471,-7041,-3136,-3037,-427,-428,-9031,-9032,-528,-533,-534,-8167,-932,-940,-948,-951,-958,-967, +-969,-970,-972,-978,-1344,-9033,-1415,-1534,-1942,-2125,-2174,-9034,-2410,-2501,-2503], +[1,3,3805], +[0,0,3806,7,4], +[0,-9035,-9036,-9037,-9038,-1788], +[1,3,3808], +[0,0,115,3809,5], +[0,-7458,-5573,-9039,-1888,-9040,-9041,-9042,-729,-1805,-5149,-9043,-9044,-6555,-9045,-9046], +[1,3,3811], +[0,0,3812,3813,4], +[0,-3037,-826,-2541], +[0,-9047,-3972,-8428,-9048,-640,-5827,-1958,-2059], +[1,3,3815], +[0,3816,3817,3818,9], +[0,-9049,-1399], +[0,-3037,-519,-9050,-9051,-8877,-2384,-2541], +[0,-9052,-5827,-1961,-9048,-2265,-5554,-640,-2059,-6582,-9053,-8800,-9054,-7208,-9048], +[1,3,3820], +[0,3821,0,3822,4], +[0,-9055], +[0,-1101,-9052,-2410,-9056,-9057], +[1,3,3824], +[0,0,3825,3826,5], +[0,-3037,-427,-428,-7636,-932,-9058,-940,-967,-7638,-9059,-1942,-7639,-2402,-2410,-7640], +[0,-9060,-9061,-9062,-9063,-9064,-9065,-1102,-9066,-9067,-8995,-9068,-3966,-9069,-3694,-2410], +[1,3,3828], +[0,3829,3830,3831,8], +[0,-510,-1111,-1077,-719,-7731,-1046,-9070], +[0,-2359,-664,-1654,-2210,-932,-9071,-9072], +[0,-5889,-1103,-1105], +[1,3,3833], +[0,3834,3835,3836,5], +[0,-5504,-9073,-9074,-9075,-1849,-9076], +[0,-528,-664,-9077,-708,-720,-796,-932,-9078,-951,-958,-964,-1654,-1658,-1788,-1972,-2174,-2210,-2211,-9079,-2449], +[0,-5889,-3322,-9080], +[1,3,3838], +[0,0,3839,3840,8], +[0,-5870,-40,-9081,-9082,-9083,-4062,-351,-3561,-3266,-4785,-664,-932,-943,-958,-966,-968,-1471,-1474,-1475,-1476,-1479, +-1482,-1483,-1486,-1487,-1489,-7759,-1654,-2127,-3571,-2162,-2210,-2211], +[0,-1105,-5248,-3100,-3095], +[1,3,3842], +[0,3843,3844,7,4], +[0,-1645,-9084,-9085], +[0,-3037,-928,-1623,-1650,-1942,-2125,-2319,-2386,-2402], +[1,3,3846], +[0,3847,125,3848,9], +[0,-1393], +[0,-1107,-8807,-6817,-1847,-9086,-7421,-3956,-9087], +[1,3,3850], +[0,3851,31,7,8], +[0,-9088,-1958], +[1,3,3853], +[0,0,3854,3855,4], +[0,-6593,-519,-674,-959,-1098,-9089,-8345,-1772,-1821,-1978,-2195,-2384,-2400,-2541], +[0,-1110,-1109,-9090,-3591,-3592,-1452,-932,-9091], +[1,3,3857], +[0,3858,3859,3860,8], +[0,-8413,-1026,-1353,-7408,-2218,-8803], +[0,-3037,-519,-589,-9092,-2331,-2384,-2541], +[0,-9093,-5839,-7411,-7727,-6999,-7422,-7724,-5573,-9094,-7410,-1076,-1107,-9095,-9096,-7419,-5572,-5912,-1645,-6809, +-9097,-9098,-5574,-5064,-2368,-2444,-3590,-9087,-9099,-1961,-9100,-5889], +[1,3,3862], +[0,3863,3864,3865,11], +[0,-812,-769,-9101,-9102], +[0,-510], +[0,-6524,-9103,-6527,-9104,-1355,-1112,-5845,-7450,-7378], +[1,3,3867], +[0,3868,3869,3870,4], +[0,-1729,-9105,-2387], +[0,-3037,-4201,-427,-428,-932,-9106,-958,-965,-968,-1942,-2402,-2410], +[0,-9107,-9108,-9109,-9110,-9111,-9112,-3184,-4791,-1113,-9113,-9114,-8909,-9115,-4633,-9116,-9117,-9118,-9119,-9120, +-9121,-9122,-9123,-3445,-9124,-9125,-9126,-9127], +[1,3,3872], +[0,3873,3874,3875,9], +[0,-3517,-9128], +[0,-50,-3037,-427,-428,-2758,-932,-934,-935,-958,-9129,-8846,-1722,-2892,-2410,-9130,-2469], +[0,-9131,-9132,-3939,-9133,-9134,-9135,-9136,-3690,-1115,-9137,-9138,-9139], +[1,3,3877], +[0,3878,3879,3880,8], +[0,-8846,-9140], +[0,-9141,-3621,-9142,-9143,-3037,-9144,-6630,-4364,-4966,-4372,-3628,-9145,-9146,-652,-708,-767,-999,-8869,-1166,-9147, +-1446,-9148,-9149,-9150,-1654,-6455,-1705,-1722,-1783,-1805,-1827,-9151,-1942,-1972,-2125,-2188,-2210,-2359,-2410,-2551], +[0,-3939,-3690,-9152,-3323,-9153], +[1,3,3882], +[0,3883,3884,3885,5], +[0,-9154,-9155,-9156,-9157,-9158,-9159,-7006,-1495,-9160,-9161,-9162,-2400], +[0,-9163,-5918,-357,-3268,-3617,-3037,-9164,-6279,-8852,-4372,-3626,-519,-523,-589,-615,-617,-652,-9165,-9166,-9167,-825, +-826,-1002,-1004,-1069,-5989,-1100,-1722,-1729,-1763,-1825,-9168,-1866,-3653,-2062,-2105,-2210,-9169,-2331,-9170,-2364, +-2392,-2410,-2541], +[0,-1334,-1342,-5735,-9052,-1116,-2435,-9171,-2105,-5493,-9172,-9173,-4213,-5149,-5150,-6826,-6828,-9174,-9175,-9176, +-9177,-523,-2291,-1729,-9128], +[1,3,3887], +[0,0,3888,3889,4], +[0,-1168,-2218,-2127,-784,-1821,-1889,-9178,-9179,-1783,-1978,-2281,-23,-518,-1930,-1330,-3572,-40,-9180,-9181,-3326, +-3266,-3561,-7189], +[0,-9182,-3100,-4189,-3110], +[1,3,3891], +[0,0,3892,3893,4], +[0,-1362,-1650,-2125,-2319], +[0,-1076,-3551,-9183,-2122,-9184,-1986,-6324,-8980,-9185,-9186,-9187,-9188,-9189,-9190], +[1,3,3895], +[0,0,0,3896,8], +[0,-1122,-9191], +[1,3,3898], +[0,33,3899,7,5], +[0,-3035,-3621,-3037,-664,-1122,-1654,-2125,-2127,-2139,-2234,-9192,-2410], +[1,3,3901], +[0,3902,0,7,9], +[0,-9193,-2387], +[1,3,3904], +[0,3905,3906,3907,8], +[0,-1442,-8493,-9194,-9195], +[0,-9196,-8491,-711,-9197,-1016,-1075,-1202,-1646,-1654,-2362,-2460,-6234], +[0,-9198,-9199,-710,-6582,-3671,-856,-7347,-9200,-9201,-1075,-9202,-3960,-3262,-1103,-5539,-3214,-3259,-3756,-4182,-1599, +-9203,-1838,-3215,-6747,-9204,-5142,-3110,-2362,-2548,-3672], +[1,3,3909], +[0,3910,3911,7,9], +[0,-9205,-9206,-1551,-9073,-1696,-1969], +[0,-617,-9207,-1004,-9208,-1405,-1548,-1646,-1730,-9209], +[1,3,3913], +[0,3914,3915,3916,11], +[0,-1000,-1107,-1758,-1442,-1132,-1645,-808,-1351,-1048,-995,-9210,-9211,-9212], +[0,-9213,-2347,-9214,-1152,-9215,-1149,-1146], +[0,-4107,-510,-687,-1644,-9216,-7641,-1548,-5119,-4004,-1989,-1754,-3844,-9217,-3970,-9218,-1410,-3673], +[1,3,3918], +[0,3919,3920,3921,5], +[0,-1323], +[0,-1127,-1132,-1140,-1134,-1136,-1144,-1146,-1148,-1165,-1138], +[0,-9219,-475,-3110,-3261,-9048], +[1,3,3923], +[0,0,3924,49,4], +[0,-1127,-1159,-1131,-1163,-664], +[1,3,3926], +[0,3927,3928,3929,9], +[0,-510,-633,-9220,-1107,-1548,-2114,-2491], +[0,-1127,-1132,-1134,-1144,-1654,-2210], +[0,-9219,-633,-1127], +[1,3,3931], +[0,3932,3933,49,6], +[0,-2177], +[0,-1127,-1129,-1134,-1144,-1146,-1150,-1159,-1542], +[1,3,3935], +[0,3936,207,7,4], +[0,-1758,-9221,-6007,-1381,-9212], +[1,3,3938], +[0,3939,3940,3941,5], +[0,-510,-506,-9222,-1366], +[0,-2541,-1127,-1753,-1132,-769,-1849,-9223,-2297,-1163,-1134,-1149], +[0,-9219,-5920,-5921,-9224,-7175,-6188,-9225,-6187,-5922,-9226], +[1,3,3943], +[0,208,3944,3945,10], +[0,-1127,-9071,-1144,-1143,-1146], +[0,-9219,-6688,-7416,-6694,-6693,-824,-6695,-7417,-2125], +[1,3,3947], +[0,3948,3949,3950,8], +[0,-510,-9227,-805,-9050,-2359,-2518], +[0,-1127,-1132,-1134,-1143,-1144,-1146,-1162], +[0,-9219,-9228,-3754,-2162,-775,-7644,-3277,-5553], +[1,3,3952], +[0,3953,126,49,4], +[0,-668,-2231], +[1,3,3955], +[0,3956,3957,3958,4], +[0,-1805,-510,-1676,-729,-5763,-2186,-2187,-7006,-9229], +[0,-1127,-1144,-1143,-1146], +[0,-9219,-3844,-729,-1334], +[1,3,3960], +[0,3961,3962,49,4], +[0,-668,-9230], +[0,-1127,-1132,-1134,-1143,-1144,-1146], +[1,3,3964], +[0,3965,127,3966,5], +[0,-668,-9231,-1548,-2271], +[0,-9219,-775,-7148,-9231], +[1,3,3968], +[0,3969,127,3970,8], +[0,-668,-683,-9232], +[0,-9219,-9233,-775,-5553,-3770,-3271,-1644,-6454], +[1,3,3972], +[0,3973,126,3974,4], +[0,-668,-1948,-1323], +[0,-9219,-3264,-9234,-1644,-6454,-7175], +[1,3,3976], +[0,3977,3978,3979,8], +[0,-668,-1356,-1826,-1877,-1948,-7691,-7692,-7690,-7687], +[0,-519,-825,-1127,-2541], +[0,-9219,-6454,-8642,-6527,-5094,-9235,-8640,-1644,-7715,-3839], +[1,3,3981], +[0,3982,207,7,5], +[0,-7446], +[1,3,3984], +[0,3985,3986,49,8], +[0,-668,-9236,-1452], +[0,-1127,-1143,-1146], +[1,3,3988], +[0,3989,3990,49,6], +[0,-1521,-510,-668,-1548], +[0,-1127,-1134,-1144,-9237,-1143,-1146], +[1,3,3992], +[0,3993,3994,3995,6], +[0,-9238], +[0,-1127,-1134,-1143,-1144,-2319], +[0,-9219,-1754,-4004,-4043], +[1,3,3997], +[0,3998,127,3999,8], +[0,-510,-668,-769,-805,-2518], +[0,-9219,-3754,-2162,-775,-7644,-3277,-5553], +[1,3,4001], +[0,4002,126,49,4], +[0,-668,-9232,-9239,-2416], +[1,3,4004], +[0,4005,4006,4007,6], +[0,-1088,-510,-1548,-2353], +[0,-1127,-1132,-1153,-2425,-1144,-1143,-1146], +[0,-9219,-2490,-1540], +[1,3,4009], +[0,4010,4011,4012,4], +[0,-668,-725,-739,-1877,-1980], +[0,-1127,-1131,-1132,-1134,-1138,-1144,-1146,-1151,-9240,-9241,-1153,-1159,-1542], +[0,-1127,-9219,-739,-6908,-5887,-1573], +[1,3,4014], +[0,4015,4016,4017,10], +[0,-668,-6019,-1877], +[0,-1127,-1131,-1132,-1134,-1144,-1146,-9240,-9242,-9241,-1153,-1159,-1542], +[0,-1127,-9219,-6019,-1105,-9243,-9244,-9245,-739,-6908,-5887,-1573], +[1,3,4019], +[0,4020,4021,4022,5], +[0,-668,-932], +[0,-190,-1127,-1132,-1162], +[0,-9219,-932,-7148,-5874,-9246], +[1,3,4024], +[0,4025,4026,4027,4], +[0,-9236,-1445,-1548,-9247], +[0,-1127,-1144,-1146,-1542,-2351], +[0,-9219,-1445,-8172,-7144], +[1,3,4029], +[0,4030,4031,4032,8], +[0,-769,-1446], +[0,-1127,-1134,-1146,-1152,-2778,-1542], +[0,-9219,-1127,-856,-4100,-1446,-7674], +[1,3,4034], +[0,34,4035,4036,11], +[0,-86,-9248,-3307,-3470,-3471,-7041,-932,-943,-958,-966,-968,-974,-1003,-1127,-1131,-1149,-1150,-1151,-1152,-1159,-1344, +-1471,-1475,-1479,-1482,-1542,-1654,-2174], +[0,-9219,-1471,-1127,-4004,-5119,-4043,-9249], +[1,3,4038], +[0,4039,4040,209,10], +[0,-9236,-1650], +[0,-664,-710,-1127,-1132,-9250,-1134,-1138,-1144,-9240,-9251,-9241,-9252,-1654,-2125], +[1,3,4042], +[0,208,4043,4044,10], +[0,-664,-1127,-9253,-1132,-1134,-1144,-1149,-1658,-2359,-2529], +[0,-6999,-1127,-9219,-9254], +[1,3,4046], +[0,4047,4048,4049,11], +[0,-2177,-9255,-2518], +[0,-664,-1132,-1144,-1149,-1156,-9256,-9257,-1542,-1654,-1972,-2351], +[0,-9219,-4127,-9258,-6721,-9259,-9260,-9261,-9262,-6324,-2489,-5886], +[1,3,4051], +[0,0,4052,7,10], +[0,-1127,-1131], +[1,3,4054], +[0,0,4055,4056,5], +[0,-1127,-1132,-1134,-1146,-2162,-2541], +[0,-9219,-775,-2162,-3754,-5553,-7644,-9263,-9264], +[1,3,4058], +[0,4059,4060,4061,4], +[0,-714,-1548,-1980,-9265,-9266,-5471], +[0,-1127,-1137,-1144,-1149,-1153,-9267,-1541,-1631,-8403], +[0,-9219,-1127,-5471,-4004,-1412,-1654,-1989,-9268], +[1,3,4063], +[0,4064,210,4065,11], +[0,-668,-1773,-2269], +[0,-9219,-5550,-3957,-7095,-8421,-7091,-6599,-1958,-687], +[1,3,4067], +[0,27,4068,209,9], +[0,-1127,-1144,-1654], +[1,3,4070], +[0,4071,4072,4073,11], +[0,-510,-9269,-9270,-2424,-9271], +[0,-932,-9272,-9273,-9274,-9275,-9276,-9277,-1127,-1132,-1157,-1654,-2125,-2194], +[0,-1127,-9219,-9278,-6527,-9279,-775,-9270,-7085], +[1,3,4075], +[0,4076,4077,4078,4], +[0,-668,-812,-1548,-1849], +[0,-1127,-1650,-2125,-1132,-1153,-9280,-1144], +[0,-9219,-9281,-3976,-3264,-775,-7175], +[1,3,4080], +[0,4081,4082,4083,5], +[0,-190,-427,-428,-668,-932,-940,-965,-967,-999,-1376,-1460,-1630,-1705,-1942,-2411,-2530], +[0,-9282,-7080,-3330,-3048,-3049,-9283,-3621,-9143,-3037,-4372,-3628,-9284,-652,-769,-1077,-9285,-9147,-1654,-2210,-2359, +-2410], +[0,-2410,-8170,-4144,-3939], +[1,3,4085], +[0,0,4086,4087,5], +[0,-9286,-4010,-367,-7043,-9287,-3136,-3037,-8477,-4203,-932,-1415,-1730,-1942,-2125,-2293,-2410], +[0,-1167,-3578,-3161,-3967,-1334,-3690,-3445], +[1,3,4089], +[0,4090,4091,4092,6], +[0,-9288,-9179,-9289,-2462], +[0,-932,-937,-966,-1001,-1650,-1654,-1788,-2125], +[0,-7641,-5827,-4219,-9218,-3673,-6342,-9290,-9291,-5921,-9292], +[1,3,4094], +[0,4095,72,4096,4], +[0,-1187,-9293,-1208,-1451,-1570,-1597,-8390,-2347], +[0,-7841,-1168,-475,-5175,-3501,-9294,-9295], +[1,3,4098], +[0,4099,4100,4101,4], +[0,-7850,-305,-994,-1199,-1243,-9296,-1267,-1650,-1875,-1959,-7881,-2125,-2177,-2330,-2460,-2462], +[0,-1178,-1654], +[0,-7841,-9297,-5550,-9298,-891,-1105], +[1,3,4103], +[0,4104,4105,4106,4], +[0,-518,-1236,-1889,-2464], +[0,-519,-1252,-1825,-2460,-2541], +[0,-7841,-518,-1889,-775,-5899,-9299,-3271,-9263,-9300], +[1,3,4108], +[0,4109,4110,4111,4], +[0,-3698,-479,-671,-1022,-9301,-1641,-1876,-2460], +[0,-664,-9302,-932,-1168,-1243,-1654,-1942], +[0,-7841,-5817,-5940,-8403], +[1,3,4113], +[0,4114,0,4115,4], +[0,-9303,-9304,-994,-1640,-1959,-1986,-9305,-2460,-2462,-2550], +[0,-7841,-5800,-8624,-6005], +[1,3,4117], +[0,4118,4119,4120,6], +[0,-2347,-2103,-1876,-2464], +[0,-2541,-1654,-2460,-1939,-23,-1252,-3352,-3362,-3373], +[0,-7841,-525,-3186,-4795,-8165,-6434,-9306,-9307,-4132,-9308,-9309,-3214,-3116], +[1,3,4122], +[0,4123,211,4124,5], +[0,-1236], +[0,-7841,-9310,-6472,-7154,-9311,-2443,-9312,-9313,-9314], +[1,3,4126], +[0,4127,4128,4129,4], +[0,-479,-622,-1022,-1376,-1876,-2347,-2460,-2487], +[0,-664,-994,-9315,-1220,-1231,-1452,-1654,-2125,-2210,-2211,-2261], +[0,-7841,-622], +[1,3,4131], +[0,4132,4133,4134,5], +[0,-633,-1266,-634,-2062,-2347], +[0,-1654,-664,-6398], +[0,-7841,-7419,-633], +[1,3,4136], +[0,212,4137,4138,4], +[0,-1654,-2460], +[0,-1168,-7841], +[1,3,4140], +[0,4141,72,4142,10], +[0,-9316,-1876,-9317,-2177,-2347], +[0,-1168,-6453,-2177,-7841,-9318,-9319,-9320,-9321], +[1,3,4144], +[0,4145,0,4146,8], +[0,-44,-9322,-753,-9323,-1876,-2347,-2460], +[0,-7841,-1168,-3324], +[1,3,4148], +[0,4149,4150,36,4], +[0,-2347,-1554], +[0,-1654,-2460,-2198], +[1,3,4152], +[0,4153,4154,4155,9], +[0,-9324,-1236,-2363], +[0,-519,-668,-824,-1040,-1100,-1168,-2460,-2541], +[0,-7841,-6656,-6999,-9325,-9254,-9326,-9327,-9328,-4123,-9329,-9330,-3324,-9331,-9332], +[1,3,4157], +[0,4158,114,4159,6], +[0,-1022,-1876,-2125,-2347,-2460], +[0,-7841,-6688,-6694,-6693], +[1,3,4161], +[0,4162,4163,4164,6], +[0,-683,-1876,-2347,-2464], +[0,-664,-9077,-756,-1004,-1022,-1168,-1187,-1243,-1248,-1252,-1654,-1788,-2460], +[0,-775,-6688,-1644,-9216,-683,-9333,-1229,-1184,-7841,-7419], +[1,3,4166], +[0,4167,213,36,10], +[0,-711,-1876,-2103,-2347,-2464], +[1,3,4169], +[0,4170,4171,4172,8], +[0,-1266,-2347,-2518], +[0,-756,-824,-1168,-1220,-1223,-1224,-1228,-1231,-1351,-9334,-1597,-1654,-2198], +[0,-1168,-7841,-9228,-3754,-2162,-775,-7644,-3277,-5553], +[1,3,4174], +[0,4175,4176,36,4], +[0,-2460,-2347,-6193], +[0,-1168,-1654,-2198,-1405,-7035,-2261,-1252,-1657], +[1,3,4178], +[0,4179,128,4180,4], +[0,-1554,-9335,-1876,-9336,-9337,-9338,-2347,-2460], +[0,-7841,-9048,-775,-6024,-1631,-9339], +[1,3,4182], +[0,4183,128,4184,9], +[0,-2347,-1266,-1376,-834], +[0,-7841,-3976,-9340,-9341,-3959,-3955,-9342], +[1,3,4186], +[0,4187,4188,4189,4], +[0,-2178,-729,-2353,-1022,-1597,-479,-2186,-2187,-9229], +[0,-1168,-1654,-2293,-1254,-710], +[0,-7419,-729,-1540,-9343,-3844], +[1,3,4191], +[0,214,4192,4193,4], +[0,-1168,-1415,-1942,-9078], +[0,-7841,-6351,-1168], +[1,3,4195], +[0,4196,4197,4198,4], +[0,-479,-9344,-1022,-1876,-2347], +[0,-1452,-1654,-2460], +[0,-7841,-775,-9344,-7148,-8170,-3277], +[1,3,4200], +[0,4201,4202,4203,4], +[0,-2460,-9231,-9345,-2347,-1022,-1876], +[0,-1788,-1654,-2210,-932,-2125,-2198,-756,-9346,-9347,-968,-943,-974,-942], +[0,-9231,-7841], +[1,3,4205], +[0,4206,4207,4208,4], +[0,-784,-6829,-1876,-1792,-2464], +[0,-2322,-2460,-2320,-1252], +[0,-784,-1644,-6059,-7192,-7193,-775,-7841,-1889], +[1,3,4210], +[0,4211,4212,4213,4], +[0,-2746,-1876,-2464], +[0,-2322,-2460,-2320], +[0,-7841,-1644,-775], +[1,3,4215], +[0,4216,4217,4218,5], +[0,-1876,-2347,-8899], +[0,-1452,-1980,-2198,-2460], +[0,-7841,-6582,-4055,-1168], +[1,3,4220], +[0,4221,4222,4223,9], +[0,-932,-1022,-1876], +[0,-1168,-1654,-2460,-2198,-1405,-528,-9348,-9349], +[0,-7841,-932,-1168,-8980,-9350,-7440,-6916,-707,-4144,-3756,-3214,-4107,-7148,-3862], +[1,3,4225], +[0,4226,4227,4228,8], +[0,-1460,-2460,-1015,-9351,-2347,-1876,-725,-9352], +[0,-1168,-1654,-2198,-1405,-1599], +[0,-7841,-6656,-9353,-8276,-1168,-3862], +[1,3,4230], +[0,4231,4232,4233,6], +[0,-2218,-1686,-1876,-9354,-9355], +[0,-2541,-519,-1168,-2460,-1825], +[0,-7841,-7724,-1353,-6656,-6999,-5572,-1645,-1107,-9095,-2460], +[1,3,4235], +[0,215,72,4236,5], +[0,-7841,-8395,-2239,-8423,-9356,-9357,-6917,-1168], +[1,3,4238], +[0,214,4239,4240,4], +[0,-1168,-1654,-2460,-2198,-1939,-933], +[0,-7841,-1168,-5841,-9358,-1847], +[1,3,4242], +[0,4243,27,4244,4], +[0,-9359,-2102,-9360,-2347], +[0,-6146,-3276,-4144,-1168,-7841,-1599,-3437,-3862,-9361,-3240,-2102], +[1,3,4246], +[0,4247,4248,4249,8], +[0,-668,-1266,-9362,-9363,-1792,-6370,-1877,-2347], +[0,-9364,-1849], +[0,-7841,-1082,-9362,-6656,-6999,-6931,-8576,-3844,-3323,-7764,-8901,-8902], +[1,3,4251], +[0,4252,4253,4254,4], +[0,-9365,-2125,-2462,-1266,-9366,-2062], +[0,-1654,-2460,-932,-1405,-9367,-1746,-1119,-1574,-9368,-9369], +[0,-5889,-5737,-5890,-9370,-8901,-8902,-8403,-9204,-3258,-1168,-7841,-1103,-841,-1105], +[1,3,4256], +[0,4257,4258,4259,5], +[0,-9371,-1022,-1548,-1876,-2109,-9372,-2460], +[0,-932,-1654,-1660,-2125,-2198], +[0,-1168,-5889,-9373,-7841,-9321], +[1,3,4261], +[0,4262,4263,4264,9], +[0,-479,-651,-1022,-1876,-9374,-2347], +[0,-1168,-1183,-1199,-1224,-1231,-1243,-7832,-1268,-1453,-1654,-9375,-2198], +[0,-6454,-7841,-6826], +[1,3,4266], +[0,4267,4268,4269,5], +[0,-1276,-1876,-2103,-2347], +[0,-2460,-1168,-1187,-9376,-9377,-9378,-1654,-9379,-2198], +[0,-7841,-1276], +[1,3,4271], +[0,4272,4273,4274,4], +[0,-6193,-1548,-1597,-2347], +[0,-664,-1168], +[0,-5147,-7841,-9380], +[1,3,4276], +[0,4277,4278,4279,10], +[0,-702,-2218,-615,-2461,-1792,-2062], +[0,-1654,-2460,-1405,-1266,-9348,-725,-9381,-2463], +[0,-7841,-3264,-8276], +[1,3,4281], +[0,4282,4283,4284,8], +[0,-2347,-1876,-1323], +[0,-1168,-1654,-2460,-1202], +[0,-3276,-1168,-7841,-9382,-3264,-9383,-6059,-6684,-1644], +[1,3,4286], +[0,4287,4288,4289,5], +[0,-4091,-9384,-7837,-9385,-9386,-9354,-9387,-9388,-9389], +[0,-1168,-1415,-932,-2125,-9390,-4010,-1942,-367,-7043,-190,-720,-9391,-2410,-9392,-4007,-9393,-2411,-959,-940,-967,-796, +-740], +[0,-7841,-1168,-3167,-3827], +[1,3,4291], +[0,4292,4293,4294,9], +[0,-2347,-9394,-9395], +[0,-1654,-1452,-1650,-2125,-2198,-2462,-1119,-908,-9396], +[0,-7841,-8978,-9397,-9398], +[1,3,4296], +[0,4297,4298,4299,11], +[0,-2347,-9394], +[0,-1452,-1654,-2198], +[0,-7841,-7724,-1645,-9353,-9399,-1199], +[1,3,4301], +[0,4302,4303,36,4], +[0,-510,-1548,-9400,-2347], +[0,-1112,-1168,-1183,-1231,-1224,-2150,-1453], +[1,3,4305], +[0,4306,4307,4308,4], +[0,-668,-1236,-1356,-1877,-1948], +[0,-519,-1357,-9401,-2460,-2541], +[0,-7841,-1356,-6527,-5094,-8634,-8635,-1644,-6684,-6454,-7715,-8640,-9235,-8642,-3839], +[1,3,4310], +[0,4311,4312,36,8], +[0,-479,-994,-1107,-1876,-2231,-2270,-2460,-2464], +[0,-1168,-1252,-1654,-2198,-2261], +[1,3,4314], +[0,4315,4316,4317,4], +[0,-506,-2347,-1022,-479,-9402,-1876,-9374,-930], +[0,-2541,-1344,-1654,-2460,-2198,-9403,-994,-86,-2174,-9404], +[0,-7841,-9405,-9406,-9407,-9408,-9409], +[1,3,4319], +[0,4320,4321,4322,4], +[0,-9410,-1876,-2347], +[0,-528,-756,-994,-1168,-1197,-1231,-1654,-1788,-2460], +[0,-7841,-9339,-775,-3264,-7920], +[1,3,4324], +[0,4325,4326,4327,9], +[0,-805,-1266,-9411,-1827,-2347,-2518], +[0,-664,-1654,-2251,-2541], +[0,-7841,-622,-1764,-1380], +[1,3,4329], +[0,4330,4331,4332,9], +[0,-1405,-9412,-1548,-1876,-2347,-2464], +[0,-1168,-1231,-1252,-9413,-1452,-1654,-2125,-2460], +[0,-7841,-4005,-1405,-9414], +[1,3,4334], +[0,4335,4336,4337,10], +[0,-1266,-1409,-2347], +[0,-1168,-2319,-1224], +[0,-1409,-7841,-5827,-7644], +[1,3,4339], +[0,4340,4341,4342,10], +[0,-506,-1412,-9415,-1876,-2347], +[0,-1168,-2460], +[0,-3440,-3161,-7841,-1412,-1989,-4043,-4679,-2319,-4873,-4004,-3634,-5119], +[1,3,4344], +[0,4345,4346,4347,4], +[0,-1445,-1876,-2347,-2350], +[0,-2261,-7423,-2460], +[0,-7841,-1445,-3214,-3217,-3756,-707,-5553,-5874,-7148,-3272,-7440,-7144], +[1,3,4349], +[0,4350,4351,36,8], +[0,-1548,-1645,-1876,-9345,-2347], +[0,-1168,-1452,-1654,-2198,-2460], +[1,3,4353], +[0,4354,4355,4356,5], +[0,-823,-831,-1440,-1876,-2347], +[0,-932,-937,-1168,-1654,-2198,-2460], +[0,-7841,-1168,-4055], +[1,3,4358], +[0,4359,4360,4361,5], +[0,-1521,-1792,-1876,-2103,-2347,-2464], +[0,-1452,-1654,-2198,-2460], +[0,-7841,-1168,-1521], +[1,3,4363], +[0,4364,4365,4366,8], +[0,-668,-812,-2460,-2353,-1022,-1550,-2062], +[0,-1654,-2210], +[0,-7841,-1540], +[1,3,4368], +[0,4369,4370,4371,5], +[0,-9416,-2114,-1022,-1639,-1048,-9417,-9418], +[0,-1654,-2210,-932,-1972,-9419,-965,-966,-958,-968,-943,-974], +[0,-7419,-1168,-4792,-6994,-9420], +[1,3,4373], +[0,4374,4375,7,10], +[0,-683,-1266,-1792,-2062,-9421,-2464], +[0,-664,-1654,-2460,-932,-1405,-1254,-9348,-1252,-9422,-9381,-9369], +[1,3,4377], +[0,4378,4379,4380,4], +[0,-7173,-2347,-1266], +[0,-664,-1168,-1654], +[0,-7841,-1644,-7175,-7192,-6454,-3264,-7173], +[1,3,4382], +[0,4383,211,4384,5], +[0,-805,-999,-1236,-1654,-2297], +[0,-7841,-1654,-4004,-3634,-5119,-3161,-4043,-4873,-3440,-1989,-4679,-2319], +[1,3,4386], +[0,4387,4388,4389,10], +[0,-9423,-1107,-1876], +[0,-664,-1168,-1654,-2460,-932,-1658,-9072], +[0,-1168,-7841,-9254,-9329], +[1,3,4391], +[0,4392,72,4393,5], +[0,-9424,-1631,-9425,-1876,-2347,-2464], +[0,-7841,-475,-5175,-4668,-9425], +[1,3,4395], +[0,4396,4397,4398,11], +[0,-714,-1168,-1753], +[0,-710,-1224,-1231,-8419,-1452,-2198], +[0,-1168,-1753,-9426,-3844,-9427,-8442,-2490,-7419,-7841], +[1,3,4400], +[0,4401,4402,4403,10], +[0,-1548,-2347,-1022,-479,-1750,-1876,-1737], +[0,-1168,-1654,-2460,-2198,-1237], +[0,-7841,-9258,-1168,-4127,-6863,-9428,-9429,-9262,-9430,-6721], +[1,3,4405], +[0,4406,4407,4408,4], +[0,-7837,-668,-9431], +[0,-519,-1825,-2410,-2460,-2541], +[0,-1168,-3862,-8112,-8113], +[1,3,4410], +[0,4411,4412,36,9], +[0,-668,-2347,-1022,-1876], +[0,-2541,-1168,-1654,-2198,-2346,-1405,-756,-994,-1657], +[1,3,4414], +[0,4415,4416,4417,9], +[0,-1022,-1876,-1907,-2464], +[0,-1788,-1654,-2210,-2460,-932,-1889,-1972,-1252], +[0,-7841,-1889,-9300,-775], +[1,3,4419], +[0,4420,4421,4422,4], +[0,-9263], +[0,-1654,-2987,-8065,-2460], +[0,-9432,-711,-8978,-812,-9433,-5558,-9399,-9321,-7841,-3264,-9434,-9435,-9353,-3214,-3277], +[1,3,4424], +[0,4425,4426,4427,5], +[0,-994,-1376,-1570], +[0,-507,-932,-9436,-1376,-1654,-1972,-2463], +[0,-7841,-1965], +[1,3,4429], +[0,4430,4431,4432,10], +[0,-1266,-1792,-2054,-2347,-2464], +[0,-1252], +[0,-7841,-2006,-4146,-6408,-8530,-3110,-3261,-6107,-9437,-9438,-7644], +[1,3,4434], +[0,4435,4436,4437,11], +[0,-994,-1750,-2105,-2347,-2460], +[0,-1168,-1262,-1183], +[0,-7841,-8908,-9439], +[1,3,4439], +[0,0,4440,36,10], +[0,-1168,-1252,-1597,-1654,-1942,-2198,-2460], +[1,3,4442], +[0,4443,4444,4445,9], +[0,-3037,-7837,-2551,-9440,-7622], +[0,-1654,-2460,-2198,-2379,-8255,-2410,-725], +[0,-7841,-8276], +[1,3,4447], +[0,4448,4449,4450,8], +[0,-1236,-9441,-9442,-9443,-9444,-2460,-9445], +[0,-519,-1825,-2541], +[0,-7841,-9446,-9447,-9448,-6131,-7175,-9318,-9319,-3324,-9449,-5142,-6342,-9450], +[1,3,4452], +[0,215,4453,4454,4], +[0,-994,-1199,-1245,-1654,-2460], +[0,-7841,-9446,-9448,-9318,-8276,-6342], +[1,3,4456], +[0,4457,4458,4459,5], +[0,-668,-742,-769,-805,-9451,-930,-1022,-1107,-4089,-9452,-1849,-1876,-2103,-2125,-2460], +[0,-1168,-1252,-9445], +[0,-7841,-3754,-2162,-775,-7644,-3277,-5553,-9453,-2231,-9454,-6915,-9455], +[1,3,4461], +[0,4462,4463,4464,6], +[0,-1863,-2269,-2103,-1876,-1552,-2464], +[0,-1168,-2162,-1654,-2460,-932,-2125,-9008,-1889,-7832,-1743,-518,-1238,-3572,-1252,-958,-934], +[0,-7841,-2162,-1168], +[1,3,4466], +[0,4467,0,4468,5], +[0,-510,-1266,-1792,-6370,-2246,-2347], +[0,-7841,-9456,-6656,-6999,-6931,-8576,-3844,-3323,-7764,-8901,-8902], +[1,3,4470], +[0,4471,4472,4473,5], +[0,-668,-1022,-1570,-1876,-2347,-2387], +[0,-9457,-9392,-3136,-9458,-3037,-7836,-427,-428,-756,-932,-940,-959,-1168,-1415,-1942,-2375,-2379,-2410,-2460], +[0,-7841,-1168,-5550,-3957], +[1,3,4475], +[0,4476,216,4477,10], +[0,-9459,-668,-1022,-1236,-1273,-1948], +[0,-7841,-1044,-6656,-8799,-1573,-9460,-4676,-812,-6826,-6828], +[1,3,4479], +[0,4480,4481,4482,4], +[0,-9461,-9462,-461,-742,-775,-9463,-8888,-1119,-2231,-9195,-2347], +[0,-620,-932,-937,-1001,-1168,-1187,-1212,-1226,-1228,-9464,-1405,-9381,-9465,-1654,-1792,-2125,-2460], +[0,-7841,-1168,-9466,-9455], +[1,3,4484], +[0,4485,216,4486,4], +[0,-23,-1236,-9467], +[0,-7841,-6817,-6694,-6693,-6688,-812,-7336,-4000,-1573,-5545,-3756,-3214,-3217,-3272,-987], +[1,3,4488], +[0,4489,213,4490,4], +[0,-9468,-1550,-1876,-2103,-2286,-2347,-2464], +[0,-1168,-2286,-775,-3277,-7841,-9321], +[1,3,4492], +[0,4493,4494,4495,4], +[0,-1876,-2302], +[0,-1107,-1168,-9469,-1654,-9470,-2460,-2541], +[0,-7841,-3167,-3843,-3839,-7715,-9278,-9279,-9471,-3262,-775,-2162,-1521,-2286,-3271,-9339,-3264,-9472,-9473,-9474,-1689], +[1,3,4497], +[0,4498,4499,4500,5], +[0,-1552,-1876,-2303], +[0,-21,-23,-40,-43,-519,-756,-767,-825,-1788,-1942,-2460,-2541], +[0,-7841,-1644,-3839,-2303], +[1,3,4502], +[0,4503,4504,4505,4], +[0,-674,-1022,-1876,-2460], +[0,-1045,-1168,-1217,-1654,-1978,-2187,-2210], +[0,-7841,-3839,-3167,-9278], +[1,3,4507], +[0,4508,4509,4510,9], +[0,-1236,-1548], +[0,-519,-1196,-2460,-2541], +[0,-7841,-1548,-2424,-3110,-7644,-3264,-7650,-9475,-9438], +[1,3,4512], +[0,4513,4514,4515,4], +[0,-479,-1022,-2346,-2460], +[0,-9392,-3037,-9476,-7837,-8890,-9457,-2125,-1168,-1231,-2410], +[0,-7841,-2410,-3214,-9477], +[1,3,4517], +[0,4518,4519,4520,9], +[0,-9457,-479,-1022,-1597,-1876,-2346], +[0,-9478,-3037,-9476,-1168,-1187,-1261,-2388,-2410], +[0,-1168,-2410,-3862,-3018,-7841,-7419,-2388,-8170,-7148], +[1,3,4522], +[0,4523,4524,4525,4], +[0,-2460,-2347,-2462,-2231,-479,-1876], +[0,-1168,-2125,-9479,-2410,-3037,-1187,-1208,-7837,-1237,-1632,-7836,-7838,-1252,-9480], +[0,-2410,-7841,-9481,-3018,-5058,-7644,-3116,-3185], +[1,3,4527], +[0,4528,4529,36,9], +[0,-9416,-1403,-2347,-2416,-9482,-9417,-2155,-1016,-9483,-2464], +[0,-2322,-2460,-932,-1942,-9484,-2341,-1938,-9485,-945,-978,-940,-967,-9486], +[1,3,4531], +[0,4532,122,4533,5], +[0,-1266,-1792,-9487], +[0,-7441,-775,-7841], +[1,3,4535], +[0,4536,4537,4538,5], +[0,-1107,-1187,-1876,-2347,-2460], +[0,-994,-2462,-1168,-1224,-1231,-1262,-1210,-1184,-1245,-1226,-1452], +[0,-7841,-9281,-1264], +[1,3,4540], +[0,4541,4542,4543,4], +[0,-1107,-1015,-9488,-1212,-2347,-2462,-1187,-994,-1876], +[0,-1788,-1168,-1654,-2460,-756,-9489,-1231,-1197,-1243,-528,-9490], +[0,-7841,-3264,-9408,-775,-7175,-9048], +[1,3,4545], +[0,4546,4547,7,6], +[0,-9491,-9492,-9493,-668,-808,-1022,-9416,-9417,-9494,-9495,-9496,-1570,-1646,-4091,-1792,-2103,-2347,-2460], +[0,-641,-756,-994,-1405,-9381,-1452,-9497,-1654,-2125,-2198], +[1,3,4549], +[0,4550,4551,4552,8], +[0,-1986,-2346,-2347,-2460,-2462,-2555,-9498], +[0,-1654,-2250,-2330], +[0,-1168,-7841,-9498,-9499,-5408,-8027,-2460,-9500], +[1,3,4554], +[0,4555,4556,4557,4], +[0,-479,-9501,-679,-1022,-1108,-1792,-1850,-1876,-2062,-2218,-2460,-9445], +[0,-756,-1405,-1654,-1657,-1972,-2125,-2198,-2210,-2261,-2269,-2541], +[0,-1168,-2490,-7841], +[1,3,4559], +[0,4560,0,4561,4], +[0,-1626,-2460,-2346,-2501,-1266], +[0,-7841,-2501], +[1,3,4563], +[0,4564,4565,4566,8], +[0,-729,-9229,-1266,-1402,-1750,-1805,-9502,-2186,-2187,-2347,-2353,-2490], +[0,-1654,-2293], +[0,-7841,-9343,-729,-1540], +[1,3,4568], +[0,4569,4570,4571,5], +[0,-1100,-1236,-2460,-9498], +[0,-519,-7342,-9431,-1168,-1825,-9503,-9445,-2541], +[0,-7841,-5408,-5409,-501,-6454,-724,-6656], +[1,3,4573], +[0,4574,4575,4576,5], +[0,-9271,-510,-2460,-2347,-1645,-2424,-9270,-9269], +[0,-1168,-1654,-932,-2125,-9273,-9504,-1195,-1632,-2461,-1215,-9505,-9274,-9275,-9272], +[0,-7841,-9270,-9278,-9279], +[1,3,4578], +[0,4579,4580,4581,11], +[0,-883], +[0,-519,-1825,-2384,-2541], +[0,-3994,-3673,-9506,-6826,-9507,-8799,-2265,-640], +[1,3,4583], +[0,4584,4585,4586,4], +[0,-9508,-9509,-9510,-9511,-2093,-9512,-9513,-2095,-4655,-4994,-9514,-9515,-9516,-9517,-9518,-9519,-9520,-9521,-9522, +-9523,-9524,-9525,-9526,-9527,-9528,-9529,-9530,-5707,-9531,-9532,-9533,-9534,-9535,-9536,-9537,-6368,-2297,-9538,-9539], +[0,-350,-4062,-351,-3266,-827,-9540,-2127,-2250,-2322,-2331], +[0,-1599,-856,-3671,-4328,-5887,-7440,-9541,-8170,-7148,-8169,-1274,-2093,-2427], +[1,3,4588], +[0,0,4589,4590,10], +[0,-9542,-9543,-1127,-7887,-1136,-1137,-1144,-9544,-1148,-1149,-1153,-9545,-9546], +[0,-2363,-9547], +[1,3,4592], +[0,4593,4594,4595,8], +[0,-1646,-9548,-2231,-2525,-2416], +[0,-3983,-521,-534,-567,-589,-664,-9549,-726,-838,-879,-6897,-6867,-932,-940,-952,-953,-1077,-1127,-5974,-1132,-1134, +-1136,-1137,-1138,-9550,-1148,-1149,-1162,-7848,-1344,-6785,-1534,-1654,-1661,-1689,-1788,-1942,-2177,-2210,-2410,-2424, +-2501,-2505], +[0,-1276,-1689,-3110,-3264], +[1,3,4597], +[0,4598,4599,155,5], +[0,-1435,-9551,-619,-6508,-1309,-9552,-9553,-9554,-9555,-5400,-9556,-9557,-9558,-9559,-9560,-9561,-9562,-9563], +[0,-1510,-707,-1367,-9564,-9565,-1276], +[1,3,4601], +[0,4602,4603,4604,6], +[0,-6594,-3037,-4204,-3223,-6587,-2531], +[0,-3665,-7197,-2410,-2469,-4375], +[0,-1449,-5092,-4865,-3586,-9566,-3578,-3098,-3264,-5388,-5387], +[1,3,4606], +[0,0,14,4607,4], +[0,-8047,-7440,-6659,-6543,-5573,-9567,-687,-3958,-4378,-1958,-502,-4377,-6748,-7303,-9568,-1646,-1813], +[1,3,4609], +[0,0,4610,4611,4], +[0,-2832,-5834,-8084,-9569,-8096,-516,-753,-5835,-932,-9570,-1365,-1777,-1788,-2156,-2322], +[0,-6981,-8619,-9571,-9572,-3582,-5269,-753,-6948], +[1,3,4613], +[0,0,4614,7,5], +[0,-1452,-1453,-1548,-2322], +[1,3,4616], +[0,4617,4618,4619,10], +[0,-9573], +[0,-2832,-5834,-8084,-9574,-9575,-8096,-515,-516,-932,-993,-1365,-1659,-1777,-1788,-2156,-2322], +[0,-8047,-9576,-9577,-9578,-9579,-8047,-7153,-9580,-3214,-3217], +[1,3,4621], +[0,4622,4623,4624,8], +[0,-5334,-4231,-9581,-9582,-2768,-2771,-1619,-1839,-9583,-2429,-5358,-9584,-9585], +[0,-3037,-9586,-652,-1290,-1294,-1618,-1942,-9587,-2094,-2100,-2399,-2410,-7669,-2541], +[0,-9588,-9589,-3264,-9590,-3590,-2444,-1838,-9591], +[1,3,4626], +[0,4627,4628,4629,4], +[0,-5334,-9581,-9583], +[0,-3037,-9586,-9592,-652,-823,-2586,-1290,-1294,-1318,-9593,-1942,-2094,-2100,-2399,-2410,-7669,-2429,-2541], +[0,-6688,-9588,-9589,-3264,-9594,-7723,-3590,-2444,-9590,-2544], +[1,3,4631], +[0,4632,4633,4634,9], +[0,-5334,-4231,-9595,-2742,-5981,-9596,-9597,-4263,-1292,-2769,-2788,-1968,-2235,-2429,-9585], +[0,-3037,-652,-1294,-1942,-2094,-2100,-2399,-2410,-7669,-2541], +[0,-775,-9588,-9589,-3264,-5572,-3581,-5101,-9598,-3585,-6750,-9590,-3590,-2444], +[1,3,4636], +[0,4637,4638,4639,5], +[0,-426,-8316,-5334,-2742,-9596,-9599,-9600,-2769,-9601,-9602,-9603,-1968,-2235,-2276,-9583,-9585], +[0,-3037,-6426,-652,-9604,-5342,-989,-1294,-1618,-5204,-1619,-5205,-1942,-2094,-2100,-2399,-2410,-2429,-2541], +[0,-5888,-3217,-5210,-9588,-9589,-3264,-3214,-4146,-4147,-2083,-6408,-9590,-3590,-2444], +[1,3,4641], +[0,4642,217,4643,6], +[0,-5334,-4231,-9605,-2742,-2769,-2771,-1619,-1968,-2235,-2268,-9585], +[0,-9588,-9589,-3264,-6233,-6231,-9606,-9590,-3590,-2444], +[1,3,4645], +[0,4646,4647,4648,4], +[0,-426,-5334,-4231,-2742,-9596,-9600,-2769,-9601,-9602,-9603,-1968,-2235,-2276,-9583,-6648], +[0,-3037,-3040,-3052,-652,-928,-5343,-1294,-1942,-2006,-2019,-2094,-2100,-9607,-2399,-2410,-2541], +[0,-9588,-9589,-3264,-1940,-2006,-9608,-2299,-9590,-3590,-2444,-2476], +[1,3,4650], +[0,87,0,4651,4], +[0,-5398,-9589,-9588,-3264,-6233,-2265,-6231,-5554,-9590,-2444,-3590], +[1,3,4653], +[0,4654,217,4655,4], +[0,-5334,-4231,-2766,-9609], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-2265,-5398,-5554,-4308], +[1,3,4657], +[0,4658,4659,4660,4], +[0,-5334,-2742,-2767,-1968,-2235], +[0,-3037,-6426,-652,-9604,-9610,-5342,-1942,-2094,-2100,-9611,-2384,-2399,-2410,-2541], +[0,-5092,-6311,-9588,-9589,-3264,-9612,-2083,-9590,-3590,-2444,-9613,-9614], +[1,3,4662], +[0,4663,4664,7,8], +[0,-2487,-1276], +[0,-1788,-1654,-932,-2125,-2293,-963], +[1,3,4666], +[0,0,4667,4668,5], +[0,-6774,-1127,-1132,-1162,-6114,-1405,-1451,-1548,-6186,-1991,-2081,-9615,-2111,-9616], +[0,-2265,-3223,-8034,-3264,-6422,-6420,-4112], +[1,3,4670], +[0,4671,4672,7,4], +[0,-1696], +[0,-2195,-2319], +[1,3,4674], +[0,0,0,4675,4], +[0,-1004,-7107,-5146,-3445,-9617,-9618,-9619,-9620,-9621,-9622,-9623,-9624,-9625,-9626,-9627,-9628,-9629,-9630], +[1,3,4677], +[0,0,4678,7,9], +[0,-2303,-2125,-1942,-656,-2699,-23,-9631,-3408], +[1,3,4680], +[0,0,4681,7,11], +[0,-43,-40,-6056,-6035,-527,-21,-23,-528,-533,-856,-932,-956,-958,-959,-1415,-1417], +[1,3,4683], +[0,4684,4685,4686,5], +[0,-9632,-615,-9633,-9634,-9635,-9636,-9637,-9638,-9639,-9640,-1442,-9641,-1639,-9642,-1666,-1667,-1783,-1863,-6467,-2269, +-2350,-9643,-9644], +[0,-9645,-5767,-3035,-4035,-3660,-4036,-3621,-3037,-9144,-4372,-9646,-652,-664,-674,-3542,-932,-9647,-9648,-1344,-1534, +-1654,-2210,-2379,-2410], +[0,-3258,-3260,-7643,-3161,-1302], +[1,3,4688], +[0,4689,4690,7,8], +[0,-9649], +[0,-615,-633,-634,-725,-932,-1127,-1130,-1131,-1146,-1148,-1149,-1152,-9650,-1159,-1276,-1754,-2148,-9651,-2199,-2210, +-7035,-9652,-2416], +[1,3,4692], +[0,0,4693,4694,4], +[0,-775,-824,-1107,-8318,-1449,-1654,-932,-1548,-2127,-2198,-2334,-683,-693,-719,-1276,-2410,-1339,-9653,-3621,-7694, +-9654,-5758,-9655,-9656,-966,-4062,-9657,-958,-968,-943,-350,-428,-351,-427], +[0,-4131,-4132], +[1,3,4696], +[0,218,0,7,4], +[1,3,4698], +[0,39,0,4699,5], +[0,-1306,-8938], +[1,3,4701], +[0,0,219,4702,4], +[0,-8113], +[1,3,4704], +[0,4705,4706,4707,5], +[0,-1758,-1650], +[0,-2416,-1449,-9658,-2125], +[0,-1689,-3110], +[1,3,4709], +[0,4710,4711,41,10], +[0,-2029], +[0,-23,-26,-40,-41,-43,-664,-756,-761,-932,-1654,-1788,-1939,-1967,-2006,-2125,-2127,-2128,-2131,-2137,-2140], +[1,3,4713], +[0,4714,4715,7,8], +[0,-668,-2177,-1077,-719,-9659,-1982,-2234], +[0,-1415,-932,-2125,-1753,-2375,-2379,-2402,-2410,-3136,-3037,-3198,-3199,-3048,-959,-958,-9660,-428,-9661,-427], +[1,3,4717], +[0,0,4718,4719,5], +[0,-9662,-4835,-3036,-4647,-3037,-8200,-3664,-502,-9663,-9664,-928,-932,-1107,-1449,-1683,-1763,-9665,-8436,-1942,-2910, +-2410,-2426,-9666,-2469,-9667,-2531,-2564], +[0,-1313,-3578,-3994,-1334,-9668,-3161,-3122,-9669,-9670,-9671,-9672,-9060,-7314,-5819,-3967], +[1,3,4721], +[0,4722,29,4723,6], +[0,-1582], +[0,-5889,-1105,-7660,-7661], +[1,3,4725], +[0,4726,86,4727,6], +[0,-725,-1650,-2125,-2177,-2433,-2518,-9673], +[0,-9674,-9675,-9676,-9677,-1764], +[1,3,4729], +[0,4730,4731,4732,6], +[0,-6585,-1333], +[0,-86,-3307,-3615,-190,-4066,-350,-351,-3266,-3267,-9678,-4862,-9679,-3037,-5286,-2970,-3664,-932,-967,-4814,-977,-1110, +-1323,-1344,-7317,-1449,-1534,-1772,-1874,-1942,-2910,-2127,-2214,-2379,-2410,-2411,-2469], +[0,-1317,-3264,-5092,-3215,-1333,-9680], +[1,3,4734], +[0,0,4735,4736,9], +[0,-3037,-652,-2586,-1288,-1292,-1942,-2094,-2100,-2399,-2410,-2426,-2541], +[0,-9681,-9682,-3264,-6557,-7153,-6818,-5387,-5388], +[1,3,4738], +[0,4739,4740,4741,4], +[0,-9683], +[0,-7196,-932,-1110], +[0,-5835,-3264], +[1,3,4743], +[0,0,4744,4745,5], +[0,-86,-3307,-3268,-9684,-3136,-3037,-589,-3223,-932,-940,-958,-9685,-1297,-1344,-1942,-2251,-2375,-2386,-2392,-2410, +-2411], +[0,-3264,-9686,-9687,-9688,-3223,-9689,-9690], +[1,3,4747], +[0,0,4748,4749,11], +[0,-9691,-652,-756,-2127,-2415], +[0,-3264,-5559,-6422,-9692,-6420,-3223], +[1,3,4751], +[0,4752,4753,4754,5], +[0,-1839,-1324], +[0,-824,-1415,-1344,-1623,-774,-932,-825,-2501,-920,-1936,-1942,-767,-21,-533,-1276,-23,-1534,-1771,-9693,-86,-2251,-9694, +-40,-1331,-958,-940,-3307,-7166], +[0,-2501,-3264,-5932], +[1,3,4756], +[0,4757,4758,4759,5], +[0,-6512,-683,-719,-1297,-6560,-9695,-2416], +[0,-1127,-1130,-1148,-1152,-1860,-1989], +[0,-687,-6454,-9696,-775,-3264,-9383,-3214,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838,-3215,-9698,-9216], +[1,3,4761], +[0,4762,4763,4764,4], +[0,-6512,-683,-719,-3223,-6560,-9695,-2334], +[0,-86,-5121,-350,-4062,-351,-3266,-9699,-9700,-932,-943,-1344,-1392,-1415,-1419,-1534,-2127,-9701,-2466], +[0,-687,-6454,-9696,-775,-3264,-9383,-3214,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838,-3215,-2334,-9698,-9216], +[1,3,4766], +[0,4767,4768,4769,9], +[0,-1860], +[0,-2322,-2250,-2320,-1860], +[0,-3264,-6528,-1858,-1859,-3967], +[1,3,4771], +[0,4772,4773,4774,4], +[0,-6585,-1317,-2039,-2276], +[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3267,-9678,-3268,-3037,-3040,-3052,-5286,-2970,-3664,-589,-932,-967,-4814, +-977,-1110,-1344,-1534,-1874,-1940,-2910,-2006,-2019,-2127,-2214,-2379,-2410,-2411,-2469], +[0,-1326,-3264,-2006,-3215,-5092], +[1,3,4776], +[0,0,4777,4778,5], +[0,-519,-674,-2541], +[0,-3264,-5177,-9702,-9566,-4108,-5388,-5387,-9703,-9704], +[1,3,4780], +[0,0,4781,4782,10], +[0,-1344,-1392,-1471,-2387,-932,-2125,-2127,-1942,-756,-1870,-2410,-1771,-1413,-1952,-1481,-9705,-1476,-9706,-8382,-7818, +-1491,-9707,-9708,-1475,-9709,-3469,-9710], +[0,-9711,-9712,-659,-3264,-5092,-6527,-9472,-3839], +[1,3,4784], +[0,4785,0,4786,5], +[0,-9713,-823,-861,-1333,-9714], +[0,-3264,-3966,-5554,-9715,-9716,-6473], +[1,3,4788], +[0,4789,0,4790,5], +[0,-9717,-9718,-469,-1107,-1496,-1646,-1966,-2177], +[0,-3264,-7148,-2451,-1330], +[1,3,4792], +[0,4793,4794,4795,9], +[0,-9719,-1324,-1548,-1949,-2321], +[0,-86,-3307,-3037,-767,-774,-778,-796,-9071,-932,-7466,-1322,-1344,-1415,-1534,-1643,-1771,-1942,-1974,-9720,-2000,-2125, +-2251,-2275,-2410,-2501,-2503,-9721], +[0,-2501,-3862,-3264,-1331], +[1,3,4797], +[0,4798,4799,4800,4], +[0,-9722,-719,-755,-1936], +[0,-190,-3748,-7155,-3621,-3037,-9723,-652,-784,-932,-6835,-958,-8339,-9724,-1001,-1110,-1654,-1889,-1979,-9695,-2125, +-9725,-2303,-2334,-2410,-2411,-9487], +[0,-1936,-9726,-3264,-9727,-6684], +[1,3,4802], +[0,4803,4804,4805,5], +[0,-7713,-6585,-6584,-3223], +[0,-190,-3037,-3664,-932,-940,-965,-978,-1110,-1942,-2386,-2410,-2411,-2469], +[0,-3264,-3215,-8027,-6597,-5092,-9728,-3484,-9297], +[1,3,4807], +[0,4808,129,4809,6], +[0,-828,-1370,-8441,-2255,-9729], +[0,-1334,-6324], +[1,3,4811], +[0,4812,4813,7,10], +[0,-996,-9730,-1063], +[0,-2531,-1788,-9731,-510,-1654,-2177,-1003,-2228,-725,-516,-2229], +[1,3,4815], +[0,4816,4817,4818,5], +[0,-9732,-812], +[0,-3198,-3136,-3037,-511,-1415,-2375,-2410,-1971,-9056], +[0,-1334,-1971,-8484,-9733], +[1,3,4820], +[0,4821,4822,4823,4], +[0,-4623,-812,-1336,-1393,-1396,-1639], +[0,-86,-3307,-190,-3198,-3330,-3617,-9734,-3136,-4036,-3037,-4203,-4204,-617,-932,-940,-967,-1004,-1098,-1110,-1344,-1415, +-1534,-9735,-1805,-4916,-8436,-1942,-2293,-2375,-2410,-2411,-2531], +[0,-7302,-1971,-5401,-1334,-1342,-729,-1004,-1030,-3548,-9736,-632,-1168,-1137,-2512,-2531,-754], +[1,3,4825], +[0,4826,4827,4828,4], +[0,-1297,-1640,-668,-9737,-9738,-1810,-1646,-2436,-579,-1336,-1888,-9739,-1319], +[0,-9740,-2319,-932,-1004,-2105,-9741], +[0,-687,-3957,-5142,-1334,-1342,-1339,-9742,-3844], +[1,3,4830], +[0,0,4831,4832,4], +[0,-2391,-1344,-1654,-932,-2198,-2379,-1942,-190,-721,-2410,-3037,-1534,-7820,-3621,-9743,-86,-2251,-9744,-2411,-964,-940, +-967,-3307], +[0,-1334,-729,-3100,-9745,-1004], +[1,3,4834], +[0,0,4835,4836,8], +[0,-3048,-3136,-9746,-427,-428,-932,-935,-958,-1077,-1415,-1605,-2375,-2378,-2379,-2410], +[0,-3966,-1334,-7827,-9747,-9748,-9745,-5563], +[1,3,4838], +[0,0,0,4839,4], +[0,-1342,-9749], +[1,3,4841], +[0,4842,4843,4844,4], +[0,-812,-9732], +[0,-1415,-1971,-2375,-9056,-2410,-3136,-3037,-512,-3198,-511,-9750], +[0,-1342,-1971,-8484,-9733], +[1,3,4846], +[0,0,0,4847,10], +[0,-5889,-3322,-1939], +[1,3,4849], +[0,4850,31,4851,11], +[0,-6829,-6372,-2347], +[0,-5827,-1334,-3443,-2105,-9052,-9751,-9752,-6693,-9753,-9024], +[1,3,4853], +[0,0,4854,4855,5], +[0,-3470,-3842,-3471,-741,-932,-940,-9754,-1942,-2127,-2174,-2322], +[0,-9755,-5553,-775,-656], +[1,3,4857], +[0,0,84,4858,5], +[0,-9756,-9757,-9758,-2424,-9759,-9760,-9761,-9762,-1878,-9763,-9764,-9765,-9766,-9767], +[1,3,4860], +[0,4861,4862,4863,4], +[0,-9768,-812,-9769,-9770,-9771,-1689], +[0,-510,-744,-932,-940,-943,-958,-966,-967,-968,-974,-1004,-1344,-1534,-1654,-1788,-1942,-2198,-2210,-2548,-2293], +[0,-3110,-1348,-9772], +[1,3,4865], +[0,39,4866,4867,5], +[0,-9773,-23,-3395,-3204,-38,-39,-40,-41,-43,-3326,-350,-351,-3266,-3037,-427,-428,-3664,-571,-756,-757,-932,-934,-940, +-948,-958,-9774,-1344,-9775,-9776,-9777,-9778,-9779,-1534,-1942,-2125,-2127,-2210,-2410,-2469], +[0,-1349,-9780,-1348,-9781,-9782,-9772,-9783,-9784], +[1,3,4869], +[0,0,4870,4871,4], +[0,-190,-3267,-3470,-3471,-427,-428,-932,-940,-967,-1110,-1942,-2127,-2132,-2174,-2410], +[0,-1349,-9785,-3445,-3862], +[1,3,4873], +[0,4874,4875,4876,4], +[0,-9786], +[0,-1788,-510,-9787,-9788,-1654,-9789,-932,-2177,-2105,-9790,-2410,-3037,-1002,-2884,-2832,-3748,-5029], +[0,-9788,-5845,-9791,-9792], +[1,3,4878], +[0,4879,4880,4881,5], +[0,-9793], +[0,-527,-533,-559,-562,-756,-932,-934,-958,-1417], +[0,-1971,-9794,-9795,-1415,-4215], +[1,3,4883], +[0,0,4884,4885,4], +[0,-21,-23,-40,-427,-812,-932,-9796,-958,-1650,-9797,-2125,-9798,-2319,-2359,-2379,-2410], +[0,-1353,-9799,-9100,-1777,-8199,-9800,-7724,-5570,-5569,-9094,-1107,-9801,-9802], +[1,3,4887], +[0,0,4888,4889,6], +[0,-652,-1107,-2391,-2379,-2402,-2410,-3036,-3037,-2581], +[0,-6527,-8799,-9803,-9804,-6730,-7710,-5316,-8653,-8740,-8642,-8715,-9805,-8654,-8685,-9235,-8761,-7715,-8656,-3839, +-9806,-9807,-5315], +[1,3,4891], +[0,4892,4893,4894,5], +[0,-9808,-7879,-2218,-1111,-9809,-1043,-5558,-9810,-8628,-9324], +[0,-2541,-519,-824,-2331,-7687,-9401,-7692], +[0,-1644,-6454,-6527,-5093,-9235,-8640,-7715,-8642,-3839], +[1,3,4896], +[0,4897,4898,4899,5], +[0,-9808,-999,-9811,-5558,-9812,-8628], +[0,-652,-2541,-519,-2410,-3037], +[0,-6454,-6527,-9813,-1644,-7175,-7715,-9814], +[1,3,4901], +[0,4902,0,4903,10], +[0,-9815,-2062], +[0,-1358,-9715,-7920,-9816,-3323], +[1,3,4905], +[0,0,4906,4907,9], +[0,-23,-3037,-3664,-756,-9817,-9818,-1059,-1344,-1361,-9819,-1548,-1552,-1942,-1952,-2074,-2125,-9820,-2174,-2391,-9821, +-2410,-2466,-2469], +[0,-1361,-9822,-9823], +[1,3,4909], +[0,0,4910,4911,8], +[0,-9824,-3136,-756,-1415,-2125,-2375,-2388,-2410], +[0,-9825], +[1,3,4913], +[0,0,0,4914,4], +[0,-1361,-6852,-9826,-6582,-7537,-5112,-7558,-9827,-5562,-7822], +[1,3,4916], +[0,186,4917,4918,5], +[0,-519,-1298,-2384,-2541], +[0,-4792,-3324,-6690,-6691,-3551,-1072,-9828], +[1,3,4920], +[0,4921,4922,4923,6], +[0,-1871,-5915], +[0,-519,-6997,-824,-999,-2541], +[0,-6024,-8427,-4792,-2114,-1109,-9318,-9829,-687], +[1,3,4925], +[0,4926,4927,4928,5], +[0,-9830,-9831,-9832,-9833,-9834,-9835,-9836], +[0,-3037,-4204,-932,-9837,-1942,-2410], +[0,-9668,-3844,-9838,-9839,-7107,-8897,-9840,-3690,-7586,-9841,-5196,-9842,-3691,-5728,-3578,-3161,-3122,-9843,-9844, +-6011,-5801,-1334,-1342,-2512,-6224,-9845,-3994,-3445,-5407], +[1,3,4930], +[0,0,14,4931,10], +[0,-6806,-2265,-7210,-9846,-6722,-5554,-885,-9847], +[1,3,4933], +[0,4934,4935,4936,8], +[0,-9551,-619,-9556,-1309,-1435,-1582], +[0,-707,-1277,-1510], +[0,-6656,-7421,-8481,-1277,-3862], +[1,3,4938], +[0,4939,4940,4941,6], +[0,-786,-2776,-3546], +[0,-9848,-9849], +[0,-1368,-6187,-3161,-4729,-9850,-3264,-9851,-3844,-5092,-4865,-2127,-9613], +[1,3,4943], +[0,0,4944,4945,4], +[0,-2410,-2469], +[0,-1369,-9852,-9853,-1878,-9763,-9758,-2424,-9854,-9855,-9759,-9764,-9760,-9765,-9766,-9767,-9761], +[1,3,4947], +[0,0,71,4948,10], +[0,-9856,-7711,-9857,-9858,-9859,-1370,-4865,-633], +[1,3,4950], +[0,0,29,7,5], +[1,3,4952], +[0,4953,4954,4955,5], +[0,-9860,-480,-482,-9861,-668,-688,-690,-696,-5906,-3517,-1366,-8418,-9862,-6259,-2166,-2202,-2219,-4621,-2267,-9863, +-2400,-2820,-2528,-2531,-9864], +[0,-6486,-5918,-357,-3851,-3037,-3040,-9865,-9866,-9867,-4372,-4626,-4204,-9868,-519,-623,-826,-9869,-969,-970,-1681, +-1741,-1827,-1942,-2006,-9870,-2210,-2269,-2379,-2410,-2541], +[0,-2006,-687,-4146,-3973,-3098,-3958,-1940,-2074,-9871,-7650,-714,-5554], +[1,3,4957], +[0,0,4958,4959,11], +[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-775,-932,-967,-4814,-1110,-1344,-1415,-1534,-1771,-1942,-2910,-2127], +[0,-1374,-9872,-5553,-3215,-775], +[1,3,4961], +[0,0,0,4962,6], +[0,-9873,-9874,-7864,-7084,-7856,-9219,-3966,-687], +[1,3,4964], +[0,4965,4966,63,4], +[0,-3947,-231,-4106,-2900,-3950,-9875,-2153], +[0,-3952,-2410], +[1,3,4968], +[0,4969,4970,4971,11], +[0,-480,-1040,-1863,-9875,-2153], +[0,-1059,-1087,-1376], +[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-910,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966,-3967,-1965,-3968,-1966, +-3969,-2063,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], +[1,3,4973], +[0,4974,0,4975,8], +[0,-9876,-714], +[0,-9877,-3966,-9878,-9879], +[1,3,4977], +[0,0,4978,4979,6], +[0,-849,-1654,-9880,-2334], +[0,-3209,-4792,-4791,-9881,-4865,-9882,-7857,-1380], +[1,3,4981], +[0,0,4982,4983,8], +[0,-932,-937,-966,-1001,-1442,-1654,-1788,-8501,-2068,-2094,-9883,-2195], +[0,-9199,-9884,-711,-6505,-3184,-3756,-4055,-1460,-4146,-2006,-9885,-2362,-3018,-2410,-6597,-2548,-9886], +[1,3,4985], +[0,0,4986,4987,8], +[0,-510,-526,-528,-549,-9887,-9888,-551,-556,-559,-9889,-566,-9890,-9891,-9892,-9893,-9894,-9895,-9896,-9897,-9898,-9899, +-9900,-9901,-9902,-9903,-689,-704,-932,-9904,-1045,-1107,-1127,-1132,-1134,-1138,-9905,-9906,-1452,-1650,-1797,-2125, +-2127,-2128,-2131,-9907,-5860,-2138,-2143,-9266,-2187,-2493], +[0,-1382,-1348,-9780,-9908,-3582], +[1,3,4989], +[0,0,4990,4991,4], +[0,-7,-8,-9,-10,-13,-3204,-42,-3983,-365,-407,-410,-3037,-3040,-3052,-427,-428,-4837,-9909,-535,-774,-928,-932,-948,-958, +-959,-969,-970,-1028,-9910,-4693,-9911,-1127,-1131,-1132,-1134,-1137,-1140,-1149,-9912,-1160,-1162,-1339,-1415,-1419, +-1437,-1541,-1874,-1942,-9913,-2006,-2019,-2162,-2193,-2299,-2351,-2379,-2410,-2466,-6859,-2476,-5627,-2567], +[0,-9914,-9915,-9916,-9917,-9918,-3162,-3962,-9567,-3823,-3214,-3862,-775,-3264,-3926,-5538,-2006,-2476,-475,-2299,-3095, +-2410], +[1,3,4993], +[0,220,4994,4995,5], +[0,-633,-1059,-2319], +[0,-4004,-1384], +[1,3,4997], +[0,4998,4999,5000,6], +[0,-9919,-9920,-9921], +[0,-3037,-3664,-932,-1942,-2080,-2125,-2127,-2376,-2387,-2410,-2469], +[0,-6143,-9922,-6134,-9923,-9924,-3214,-3966,-2410], +[1,3,5002], +[0,5003,5004,221,5], +[0,-2323,-834,-9925,-1805,-2446,-668,-812,-2387,-1548,-2177,-2240,-3547,-2347,-9926,-2291,-9927,-9928,-9929,-9422,-9930, +-9931,-9932,-9933,-9934,-9935,-9936,-9937,-9938], +[0,-1415,-2125,-2388,-2375,-1417,-5673,-2231,-2410,-9939,-3136,-3037,-9940,-3738,-1534,-3198,-3044,-3199,-9941,-9942, +-7836,-4202,-9943], +[1,3,5006], +[0,5007,5008,5009,5], +[0,-3978], +[0,-3983,-3048,-3136,-3037,-9947,-1077,-1415,-1417,-9948,-1772,-1942,-1978,-2125,-2177,-2184,-2303,-2392,-2410], +[0,-9949,-1386,-3167,-3839,-3162,-8585,-3095,-9950,-3119,-5270], +[1,3,5011], +[0,5012,5013,5014,4], +[0,-9951,-9952,-812,-9953,-1554,-9954,-9955,-9956,-9957], +[0,-9958,-3470,-7040,-3471,-3035,-4269,-3198,-9959,-9960,-3621,-3037,-9961,-4372,-427,-428,-664,-665,-932,-940,-1654, +-1788,-1942,-2174,-2188,-2210,-2379,-2384,-2402,-2410,-2446], +[0,-2071,-9844,-9962,-9963], +[1,3,5016], +[0,0,5017,7,8], +[0,-1654,-932], +[1,3,5019], +[0,5020,5021,7,5], +[0,-9964,-9788,-9965], +[0,-9966,-1032,-1445,-2322], +[1,3,5023], +[0,0,5024,5025,4], +[0,-515,-1788,-2322,-932,-6283,-1365,-2156,-5834,-6402], +[0,-2444,-8038,-4004], +[1,3,5027], +[0,5028,5029,184,9], +[0,-680], +[0,-686,-2250], +[1,3,5031], +[0,5032,88,5033,4], +[0,-9967], +[0,-6836,-9968,-7440,-8421,-8130,-9969,-1107,-9095,-9970,-1391,-5572,-3581,-5574,-5569,-8129,-2265,-4004], +[1,3,5035], +[0,5036,5037,5038,11], +[0,-9971,-7408], +[0,-519,-6997,-824,-999,-1591,-2384,-2541], +[0,-1109,-5897,-9972,-3551,-1380,-9973,-1764,-2552,-1391,-7440,-6659,-8427,-9974,-687,-8425,-7304], +[1,3,5040], +[0,0,14,5041,6], +[0,-7208,-1391,-7440,-4004,-8038,-9716,-9975,-9976,-5493], +[1,3,5043], +[0,0,5044,5045,9], +[0,-664,-985,-1202,-1654,-1655,-2127], +[0,-7440,-1391,-9977,-1403,-3214,-9978,-8493,-7208,-9716,-8038,-9571,-5846], +[1,3,5047], +[0,0,5048,5049,5], +[0,-1654,-2081], +[0,-3264,-9950,-9979,-5065], +[1,3,5051], +[0,0,5052,5053,5], +[0,-3037,-519,-2331,-2384,-2541], +[0,-5827,-8038,-8027,-9980,-8800,-9753,-6408,-7440,-6659,-1391], +[1,3,5055], +[0,5056,222,5057,5], +[0,-9981], +[0,-7440,-9983,-7084,-9984,-9261,-6659,-6836,-1958,-4000,-3974,-1391], +[1,3,5059], +[0,0,31,5060,11], +[0,-4865,-1402,-5839], +[1,3,5062], +[0,0,5063,5064,11], +[0,-985,-1202,-1654,-2127], +[0,-7440,-1391,-9977,-1403,-9978,-8493,-9985,-5269,-7208,-8038,-9571,-5846], +[1,3,5066], +[0,5067,5068,7,5], +[0,-1729,-2516], +[0,-664,-1452,-9986,-1654,-1722], +[1,3,5070], +[0,5071,5072,5073,4], +[0,-1107,-1758,-1801,-510,-2518,-9632,-1650,-987,-1442,-2114,-2525,-931,-1276,-2297], +[0,-1452,-2125,-1754,-756,-2111], +[0,-4005,-9987,-9988,-9989], +[1,3,5075], +[0,5076,56,89,4], +[0,-1078,-2446,-7885], +[1,3,5078], +[0,5079,5080,5081,5], +[0,-513,-823,-896,-9990,-1571,-1887,-2355,-9991], +[0,-9992,-526,-527,-532,-534,-536,-544,-546,-9993,-551,-555,-7890,-558,-565,-567,-664,-9994,-748,-767,-778,-932,-980, +-1017,-1041,-1074,-1168,-1171,-1184,-1226,-1243,-1322,-1331,-1471,-1475,-1476,-1482,-7759,-1490,-1491,-1492,-1521,-1522, +-8936,-1654,-2210,-2211,-2275,-2388,-2410,-2417,-2437,-2476,-2479,-9995,-2481,-2483,-2484,-2485,-2501,-2505,-2508], +[0,-1407,-2476,-3527,-3095,-3098,-3160,-3161], +[1,3,5083], +[0,5084,156,5085,4], +[0,-233], +[0,-6748,-3215,-4377,-5829,-9567,-687,-3957,-6722,-1838,-6747], +[1,3,5087], +[0,5088,5089,7,4], +[0,-9996,-683,-719,-9997,-9998,-1650,-9999,-2416,-2595,-10000], +[0,-10001,-10002,-756,-1004,-10003,-10004,-10005,-10006,-10007,-10008,-10009,-10010,-10011,-10012,-10013,-10014,-10015, +-10016,-1610,-1810,-10017,-2125,-10018,-3013], +[1,3,5091], +[0,5092,5093,5094,5], +[0,-510,-10019,-1863], +[0,-190,-932,-4719,-1110,-1654,-1980], +[0,-7641,-687,-9218,-10020], +[1,3,5096], +[0,5097,5098,5099,4], +[0,-10021], +[0,-3326,-351,-3561,-3266,-4964,-10022,-10023,-683,-767,-10024,-1344,-1437,-10025,-1534,-1639,-10026,-2127,-4063,-8896], +[0,-10027,-6527,-5182,-10028,-10029,-8636], +[1,3,5101], +[0,5102,5103,223,6], +[0,-1107,-1413,-10030], +[0,-932,-10031], +[1,3,5105], +[0,0,5106,223,5], +[0,-3244,-190,-501,-10032,-888,-932,-952,-1107,-1110,-1449,-1942,-2162], +[1,3,5108], +[0,5109,0,5110,5], +[0,-1088,-1650,-10033,-2111,-2424,-711,-10034,-10035], +[0,-3634,-3440], +[1,3,5112], +[0,5113,0,107,4], +[0,-236,-237,-1363,-1417], +[1,3,5115], +[0,5116,5117,5118,6], +[0,-10036,-10037], +[0,-6256,-21,-23,-26,-40,-86,-9404,-533,-10038,-756,-1344,-1415,-1942], +[0,-4215,-1415,-5129,-886,-659,-4004,-5119], +[1,3,5120], +[0,5121,5122,107,6], +[0,-236,-4019,-237,-668,-4021,-1363,-4023,-1427,-4031,-2550], +[0,-3041], +[1,3,5124], +[0,5125,224,7,6], +[0,-10039,-8434,-668,-1950], +[1,3,5127], +[0,5128,224,7,5], +[0,-10040,-10041,-4647,-3037,-1449], +[1,3,5130], +[0,5131,5132,7,4], +[0,-10040,-10042,-237,-5129,-1427,-1449], +[0,-3136,-4647,-3037,-1344,-1415,-1650,-1942,-1952,-2125,-2375,-2410], +[1,3,5134], +[0,5135,5136,7,9], +[0,-10040,-10042,-237,-3037,-5129,-1427,-4031], +[0,-4034,-703], +[1,3,5138], +[0,5139,5140,5141,5], +[0,-1418], +[0,-50,-3615,-3244,-190,-8433,-3136,-427,-428,-932,-940,-948,-958,-959,-967,-1110,-1344,-1415,-10043,-1428,-1534,-1942, +-2375,-5232,-2410], +[0,-1415,-10044,-1015,-10045,-4004,-3634,-6538], +[1,3,5143], +[0,5144,5145,5146,4], +[0,-1077,-1805], +[0,-23,-2695,-366,-407,-409,-410,-10046,-3136,-10047,-3037,-10048,-3040,-3052,-6192,-485,-533,-534,-542,-561,-594,-635, +-656,-661,-747,-778,-779,-796,-865,-866,-929,-932,-941,-10049,-1017,-1041,-1077,-1331,-1352,-1415,-1426,-1428,-10050, +-1643,-1762,-1889,-1903,-1908,-1918,-1927,-1966,-10051,-2006,-2010,-2015,-2019,-2041,-2643,-2114,-2116,-2162,-2163,-2177, +-2233, +-2275,-2318,-2335,-2410,-2437,-10052,-2501,-2502,-2505,-2507,-2526], +[0,-1415,-3264,-6863,-9246,-3862], +[1,3,5148], +[0,5149,5150,7,4], +[0,-1650,-2269,-2446,-6597], +[0,-1415,-10053,-2218], +[1,3,5152], +[0,0,0,5153,5], +[0,-1415,-2552,-10054,-10055], +[1,3,5155], +[0,5156,5157,7,6], +[0,-668,-1119,-4024,-1425,-1427,-4031,-2218,-8204], +[0,-4035,-2435], +[1,3,5159], +[0,5160,5161,7,8], +[0,-237,-3037,-668,-680,-1119,-1864], +[0,-4035,-8523,-1548], +[1,3,5163], +[0,5164,5165,7,5], +[0,-480,-668,-4026,-4032,-2218,-6715,-2269], +[0,-21,-23,-40,-42,-190,-5121,-237,-3470,-3471,-3037,-533,-10056,-767,-932,-940,-948,-8339,-959,-967,-1110,-1415,-10043, +-1942,-2125,-2174,-2177,-2410,-2411], +[1,3,5167], +[0,5168,5169,7,6], +[0,-3037,-9581,-1427,-1632,-2297], +[0,-23,-10057,-4373,-9586,-1100,-10058,-10059], +[1,3,5171], +[0,5172,5173,5174,4], +[0,-10060,-10061,-10062,-10063,-10064,-10065,-10066,-10067,-10068,-10069,-10070,-10071,-10072,-10073,-10074,-10075,-10076, +-10077,-10078,-10079,-10080,-10081,-10082,-10083,-10084,-10085,-10086], +[0,-10087,-10088,-10089,-10090,-4066,-350,-6572,-351,-3266,-5286,-932,-10091,-1848,-2127,-2132,-6483,-9701,-2386,-2410, +-10092,-2469], +[0,-6527,-10093,-10094,-7715,-8640,-9235,-8653,-10095,-7069,-7066], +[1,3,5176], +[0,0,5177,7,6], +[0,-23,-3341,-3196,-24,-10096,-33,-5828,-3367,-3077,-3389,-3408,-3412,-42,-3193,-46,-47,-10097,-10098,-4776,-4777,-10099, +-10100,-10101,-3037,-3664,-461,-10102,-672,-727,-734,-6860,-10103,-930,-932,-944,-989,-990,-1026,-1394,-1640,-1651,-1667, +-10104,-1852,-6568,-1940,-10105,-1942,-2006,-2019,-2080,-10106,-6570,-2335,-3535,-2376,-2410,-2469,-2476,-8416,-2564], +[1,3,5179], +[0,0,0,5180,6], +[0,-3494,-10107,-10108,-3495,-10109,-10110,-3264,-5554,-3496,-10111,-3214,-2410,-10112,-1432], +[1,3,5182], +[0,5183,5184,5185,4], +[0,-1432], +[0,-3615,-7155,-367,-406,-409,-410,-3040,-3052,-427,-428,-767,-778,-932,-940,-967,-969,-970,-979,-1331,-1449,-1942,-2006, +-2019,-8276,-2275,-3752,-2379,-2391,-2410,-2469,-2501,-2503,-2505], +[0,-2006,-1432,-3264,-5554,-3496,-10113,-10109,-10110,-10114], +[1,3,5187], +[0,5188,5189,5190,4], +[0,-668,-10115,-10116,-10117,-2183,-3523,-1553,-1552,-10118], +[0,-1788,-510,-1127,-2210,-1813,-756,-1132,-6758,-1153,-722,-10119,-1149,-1144,-1146], +[0,-10120,-10121,-10122,-10123,-10124,-10125,-10126,-10127,-10128,-10129,-10130,-10131,-10132,-10133,-10134,-10135,-10136, +-10137,-10138,-10139,-10140,-10141,-10142,-10143,-10144,-10145,-10146,-10147,-10148,-10115,-10149,-10150,-10151,-10152, +-10153,-10154,-10155,-10156,-10157,-10158,-10159,-10160,-10161,-10162,-10163,-10164,-10165,-10166,-10167,-10168,-10169, +-10170,-10171,-10172,-10173,-10174,-10175,-10176,-10177,-10178,-10179,-10180,-10180, +-10181,-10182,-10183,-10184,-10185,-10186,-10187,-10188,-10189,-10190,-10191,-10192,-10193,-10194,-10195,-10196,-10197, +-10198,-10199,-10200,-10201,-10202,-10203,-10204,-10205,-10206,-10207,-5158,-10208,-10209,-10210,-10211,-10212,-10213, +-10214,-10215,-10216,-10217,-10218,-10219,-10219,-10220,-10221,-10222,-10223,-10224,-10225,-10226,-10227,-2183,-10228, +-10229,-10230,-10231,-10232,-10233,-10234,-10235,-10236,-10237,-10238,-10239,-10240,-10241, +-10242,-10243,-10244,-10245,-10246,-10247,-10248], +[1,3,5192], +[0,5193,5194,5195,4], +[0,-10249,-10250,-3880,-10251,-10252,-3888,-3117], +[0,-9163,-3890,-3891,-3893,-3037,-2410], +[0,-4058,-3926], +[1,3,5197], +[0,0,0,5198,5], +[0,-2006,-4125,-9800,-4633,-10253,-4634], +[1,3,5200], +[0,0,0,5201,10], +[0,-1437,-3214,-4865,-3482], +[1,3,5203], +[0,5204,5205,7,4], +[0,-1437], +[0,-1127,-2125,-1110,-367,-10254,-10255,-1152,-10256,-1542,-10257,-10258,-10259,-10260,-1136,-1139,-9550], +[1,3,5207], +[0,0,5208,5209,11], +[0,-3037,-1654,-2410], +[0,-6118,-7304], +[1,3,5211], +[0,5212,5213,5214,4], +[0,-10261,-7829,-1107,-1441,-1758], +[0,-481,-589,-709,-1437,-1452,-1646,-1654,-1689,-2111,-2184,-2269,-2501,-2503], +[0,-6146,-10262,-10263], +[1,3,5216], +[0,0,5217,5218,4], +[0,-3266,-932,-943,-957,-963,-1127,-10258,-1137,-1146,-9544,-1149,-10264,-10265,-1942,-1989,-2091,-2127,-5090,-2134,-2250], +[0,-743,-6920,-4865,-10266,-4791,-3323,-1441,-633], +[1,3,5220], +[0,5221,5222,5223,8], +[0,-503], +[0,-1788,-5514,-1654,-932,-2127,-2195,-1103,-589,-709,-1023,-2140,-350,-351,-10267], +[0,-2548,-3215,-4142,-10268], +[1,3,5225], +[0,5226,5227,5228,10], +[0,-25,-5223,-719,-812,-822,-1107,-10269,-10270,-2001,-10271], +[0,-190,-4010,-367,-4007,-7043,-3037,-720,-740,-796,-932,-940,-959,-967,-1415,-1448,-9390,-9393,-1942,-2125,-2410,-2411], +[0,-10272,-856], +[1,3,5230], +[0,5231,5232,7,4], +[0,-714,-719,-1077,-10273,-10274,-10275,-10276,-10277,-10278,-10279], +[0,-5325,-3048,-3037,-3664,-1753,-2379,-2391,-2410,-2469], +[1,3,5234], +[0,5235,5236,5237,6], +[0,-668,-693,-719,-10280,-988,-1000,-1107,-1333,-1442,-10281,-10282,-6611,-1548,-1645,-5199,-6533,-1965,-10283,-2114, +-2270,-2271,-10284,-10285,-9247,-10286,-2538], +[0,-664,-756,-3607,-1452,-1654,-2081,-2123,-2210,-2211,-10287,-10288,-2536], +[0,-8172,-4144,-7148,-8170,-4901,-5874], +[1,3,5239], +[0,5240,5241,5242,4], +[0,-25,-10289,-3661,-615,-10290,-930,-10291,-8985,-1600,-1601,-1610,-1650,-10292,-2271,-2424], +[0,-469,-1168,-1197,-1225,-1788], +[0,-856,-3214], +[1,3,5244], +[0,5245,0,5246,4], +[0,-6789,-7573,-10293,-7575,-1446,-10294,-7576], +[0,-1446,-3690,-5731,-3964,-3214,-856], +[1,3,5248], +[0,5249,0,5250,5], +[0,-6789,-717,-718,-10295,-843,-1447,-2576,-7576], +[0,-1446,-1599,-3690,-3262,-3214,-3756,-856], +[1,3,5252], +[0,5253,5254,225,5], +[0,-10296,-10297,-10298,-9683,-785,-10299,-10300,-1319,-1337,-1343,-1397,-1839,-10301,-10302,-2364,-2426,-10303,-10304, +-6587,-10305,-8352], +[0,-7196,-932,-957,-965,-1110,-1442,-1645,-1654,-10306,-1772,-1810,-1880,-2177,-2188,-2354,-10307,-10308], +[1,3,5256], +[0,5257,5258,225,5], +[0,-10309,-10310,-785,-1333,-10311,-1839,-2105,-8352,-2540], +[0,-633,-714,-1339,-1452,-6810,-1754,-1888,-1980,-10312,-2493], +[1,3,5260], +[0,0,5261,5262,4], +[0,-756,-1127,-1132,-6114,-1405,-1654,-2081,-2111,-10313], +[0,-640,-5559,-3214,-4055,-6917,-8127,-2265,-6231,-3673], +[1,3,5264], +[0,5265,5266,7,8], +[0,-687,-6392,-1000,-1333,-1548,-1645,-2271], +[0,-510,-633,-739,-6019,-756,-1405,-1445,-1661,-1754,-1978,-2081,-10314,-2210,-6430,-10315,-10316], +[1,3,5268], +[0,5269,226,5270,5], +[0,-668,-1574,-1877,-6715,-2343,-9493], +[0,-1452,-6863,-4144,-3276,-7148,-5874,-10317,-6864,-3240], +[1,3,5272], +[0,5273,5274,5275,4], +[0,-10318,-10319], +[0,-3621,-3037,-427,-428,-932,-936,-958,-1654,-1788,-2379,-2410], +[0,-4055,-10320,-788,-6473,-8257,-10321,-10322,-1838,-3215,-1454,-10323,-687], +[1,3,5277], +[0,0,5278,7,8], +[0,-2251], +[1,3,5280], +[0,0,0,5281,9], +[0,-4055,-4058], +[1,3,5283], +[0,5284,5285,5286,4], +[0,-411,-414,-2702,-668,-679,-3780,-6869,-1369,-1460,-1581,-10324,-2213,-10325], +[0,-3037,-726,-1098,-1344,-2987,-8065,-2331,-2400,-2410], +[0,-4182,-3844,-8959,-3817,-3816,-10326,-4215,-4041,-4004,-3634,-3691,-6582,-10327], +[1,3,5288], +[0,5289,5290,5291,10], +[0,-655,-6511,-1402,-7584,-1795], +[0,-2832,-5834,-8084,-8086,-8090,-10328,-8096,-516,-5835,-932,-1365,-1777,-2156,-2322], +[0,-4055,-6231,-10329,-6131,-7283,-10330], +[1,3,5293], +[0,0,0,5294,5], +[0,-4055,-6231,-10331,-9594], +[1,3,5296], +[0,0,5297,5298,11], +[0,-753,-932,-943,-958,-966,-968,-974,-1771,-2081,-2127,-2129,-2131,-2137,-2140,-2210,-2319,-10332], +[0,-4055,-1460,-8108,-4795,-3217], +[1,3,5300], +[0,0,5301,7,4], +[0,-1654,-932,-2125,-2410,-3037,-3621,-428,-427], +[1,3,5303], +[0,5304,206,5305,4], +[0,-8984], +[0,-2059,-6234,-6656,-4055,-1076,-1077], +[1,3,5307], +[0,0,5308,5309,5], +[0,-7055,-10333,-664,-932,-10334,-1654], +[0,-4055,-4058,-1463,-2451,-3926], +[1,3,5311], +[0,5312,5313,5314,5], +[0,-2346,-10335], +[0,-2322,-8392,-10336,-7650,-6538,-994], +[0,-4055,-5827,-9292,-3215,-510,-6747], +[1,3,5316], +[0,5317,5318,5319,8], +[0,-1681,-10337,-2177,-10338,-10339,-10340,-1563,-10341,-10342,-1562], +[0,-1780,-1788,-514,-664,-1654,-2210,-932,-739], +[0,-3175], +[1,3,5321], +[0,5322,5323,7,5], +[0,-23,-10343,-10344,-1816,-1863], +[0,-5694,-3037,-10345,-653,-928,-932,-940,-1640,-1645,-1805,-1942,-2127,-2358,-2410], +[1,3,5325], +[0,0,5326,5327,4], +[0,-3037,-3664,-8436,-2391,-2410,-2469], +[0,-4125,-3967,-3445,-10346,-2006,-5269,-3578,-2034,-3138], +[1,3,5329], +[0,5330,5331,5332,6], +[0,-10347,-1834,-8578,-2062], +[0,-2359,-1127,-1989,-932,-589,-1132,-633,-1874,-2410,-1339,-10348,-1130,-1148,-10349], +[0,-5408,-6827,-10350], +[1,3,5334], +[0,0,5335,5336,6], +[0,-2200,-1415,-1344,-932,-2910,-2375,-2379,-1942,-2410,-23,-1534,-632,-726,-958,-940,-967,-1419,-428,-427,-948], +[0,-3175,-4865], +[1,3,5338], +[0,0,5339,5340,4], +[0,-1003,-1405,-1654], +[0,-3175,-6422,-6420], +[1,3,5342], +[0,5343,5344,5345,6], +[0,-6134,-2359,-1107,-1640,-10351,-2550,-9968,-1548,-1576,-1650,-2125,-729,-679,-1645,-2228,-1336,-2231,-617,-1119,-5506, +-1997,-2594,-10352,-5758], +[0,-664,-5735,-1654,-7243,-2210,-2518,-932,-793,-2491,-1978,-2293,-633,-1474,-1972,-2211,-10353,-667,-1482,-1413,-1481, +-86,-665,-1472,-2174,-966,-958,-10354,-1483,-3471,-968,-1475,-10355,-943,-974,-1479,-9404,-3470,-1473], +[0,-1471,-10356,-4043,-1471,-3756,-3214,-3634,-4004,-8908,-10357], +[1,3,5347], +[0,5348,5349,5350,6], +[0,-10358,-1548,-10359,-1645,-8016,-742], +[0,-1763,-627,-664,-1471,-1654,-2210,-2363,-5482,-932,-2114,-2491,-633,-2211,-2410,-1771,-1413,-1481,-6399,-964,-1475], +[0,-10360,-10361,-10362,-633], +[1,3,5352], +[0,5353,5354,5355,4], +[0,-1980,-2734,-10363], +[0,-1127,-932,-1159,-1131,-1152,-1542,-966,-1129,-958,-968,-943,-974,-1150,-1151], +[0,-10360,-10364,-2734,-10365], +[1,3,5357], +[0,0,0,5358,4], +[0,-1471,-10360,-664,-1654,-2198], +[1,3,5360], +[0,227,5361,5362,9], +[0,-664,-1471,-1654,-2210,-2250,-1482,-86,-2174,-3471,-9404,-3470], +[0,-10360,-10364,-10366], +[1,3,5364], +[0,5365,5366,5367,5], +[0,-5086,-6029,-5087,-5088,-5089,-1645], +[0,-86,-3307,-9248,-3470,-3471,-7041,-664,-711,-932,-943,-958,-966,-968,-974,-1127,-1132,-1155,-1159,-1344,-10367,-1471, +-10368,-1479,-1482,-10369,-1654,-7243,-2111,-2174,-2210,-2211], +[0,-10360,-10361,-10370,-4005,-1405], +[1,3,5369], +[0,227,5370,5371,4], +[0,-1127,-1138,-1144,-1155,-1413,-1471,-1481,-1860], +[0,-10360,-10364,-4865,-6413,-10371,-10372,-10373,-10374,-7490,-10375,-10376,-10377,-10378,-10379,-10380], +[1,3,5373], +[0,5374,5375,5376,5], +[0,-10381], +[0,-664,-10382,-6134,-932,-943,-968,-974,-1127,-1131,-1132,-1152,-1159,-1163,-1471,-1542,-10383,-1972], +[0,-10360,-10364,-5799,-7489], +[1,3,5378], +[0,5379,5380,5381,4], +[0,-1401,-2518], +[0,-86,-3307,-3470,-3471,-7041,-1344,-1471,-1482,-1654,-1868,-2174,-2250], +[0,-1471,-3634,-10360,-10364,-10384], +[1,3,5383], +[0,34,5384,5385,5], +[0,-664,-6134,-932,-943,-968,-969,-974,-1127,-1129,-1131,-1149,-1150,-1151,-1152,-1159,-1163,-1471,-1542,-7243,-2210, +-2211], +[0,-10360,-10364,-8996], +[1,3,5387], +[0,5388,5389,5390,5], +[0,-1413], +[0,-1127,-1344,-1471,-932,-1412,-86,-2174,-966,-958,-3471,-7041,-968,-943,-974,-1479,-3472,-9404,-3470], +[0,-10360,-10385,-1412], +[1,3,5392], +[0,228,5393,5394,6], +[0,-664,-932,-943,-968,-969,-974,-1127,-1129,-1131,-1150,-1152,-1155,-1159,-1471,-1474,-1475,-1479,-1489,-1542,-1654, +-1658,-2210,-3470,-3471,-2174,-86,-3307,-1344], +[0,-10360,-10385,-1654], +[1,3,5396], +[0,5397,5398,5399,4], +[0,-668,-1574,-2269], +[0,-664,-1127,-1131,-1138,-1144,-1150,-1155,-1162,-1413,-1474,-1477,-1542,-1654,-1860], +[0,-10360,-10370,-1654,-664,-834,-8619], +[1,3,5401], +[0,5402,5403,5404,4], +[0,-1548,-1860], +[0,-932,-943,-969,-974,-1127,-1129,-1131,-1150,-1152,-1155,-1159,-1413,-1471,-1481,-1542], +[0,-10360,-10364,-1859], +[1,3,5406], +[0,0,5407,5408,10], +[0,-664,-1127,-1471,-1654,-1989,-932,-1159,-1131,-1481,-966,-958,-968,-943,-974,-1479], +[0,-1471,-10360,-10385,-1989], +[1,3,5410], +[0,5411,5412,5413,6], +[0,-679,-811], +[0,-23,-3412,-40,-932,-1413,-1471,-1475,-1481,-1483,-2127,-2128,-2129,-2131,-2137], +[0,-6505,-4795,-1471,-3209,-6024,-8257,-3862,-3277,-10361,-10360,-10386,-2127], +[1,3,5415], +[0,0,5416,5417,8], +[0,-1159,-1127,-1131,-1129], +[0,-10360,-10364,-10387], +[1,3,5419], +[0,5420,5421,5422,4], +[0,-10388,-5471,-4881], +[0,-86,-3307,-3470,-3471,-7041,-3048,-10389,-3037,-1344,-1412,-1471,-1481,-2174,-2410], +[0,-10360,-10364,-10390,-10391,-5471], +[1,3,5424], +[0,0,0,5425,4], +[0,-1471,-10360,-2210,-4215], +[1,3,5427], +[0,5428,5429,5430,5], +[0,-1119], +[0,-4035,-652,-932,-1413,-1471,-10392,-1475,-1481,-1942,-2127,-10393], +[0,-10360,-10361,-9454,-3214], +[1,3,5432], +[0,187,5433,5434,11], +[0,-664,-756,-1654,-1771,-1788,-2210,-2211], +[0,-10360,-6863], +[1,3,5436], +[0,5437,5438,48,8], +[0,-1107,-1645,-2508], +[0,-21,-23,-39,-40,-86,-3307,-7166,-533,-664,-665,-767,-932,-958,-967,-1344,-1405,-1412,-1415,-1471,-1474,-1475,-1482, +-1491,-1534,-1626,-1654,-1939,-1942,-1978,-2251,-2501], +[1,3,5440], +[0,0,27,5441,8], +[0,-10394,-1493,-10395,-4111,-10396,-10397,-10398,-10399,-1494], +[1,3,5443], +[0,0,0,5444,6], +[0,-1494,-2063,-3103], +[1,3,5446], +[0,5447,5448,5449,6], +[0,-10400], +[0,-10401,-3653,-2581,-6486,-3664,-2125,-10402,-2384,-2469,-10403,-10404,-10405,-10406,-10407,-10408,-10409], +[0,-7372,-5846,-4634,-3324,-6495,-10410,-6005,-3445,-10411,-2071,-1671,-3742,-1691,-6321,-10412,-1724,-1582,-10413,-654], +[1,3,5451], +[0,0,5452,5453,4], +[0,-985,-2447], +[0,-5514,-687,-712,-714,-4000,-3974], +[1,3,5455], +[0,5456,5457,5458,5], +[0,-985,-10414,-812,-1548,-8945,-2068,-2350,-10415,-713,-719,-1381,-2115,-1097,-10416], +[0,-1857,-1788,-2384,-664,-1410,-2322,-1344,-1654,-1691,-2210,-932,-1692,-2125,-879,-1658,-2245,-10417,-2379,-10418,-1942, +-2320,-756,-767,-1464,-2211,-2410,-3037,-8946,-1534,-10419,-10420,-665,-2234,-10421,-958,-10422,-10423,-940,-967,-5984], +[0,-10424,-5101,-6321,-10425,-1691,-10426,-2245,-5378,-1682,-4258,-10427,-7641,-7773,-7685], +[1,3,5460], +[0,5461,5462,5463,4], +[0,-8520,-1026,-10428,-1431,-1442,-1646,-10429,-1863,-1864,-10430,-2271,-2564], +[0,-237,-7057,-3660,-5686,-8523,-3046,-4879,-10431,-4651,-2392,-2410], +[0,-10432,-10433,-7711,-687,-10434,-3015,-6659,-3016,-10435,-10436,-8035,-8257,-6999,-5573,-3214,-7148,-10437,-10438, +-10439,-10440,-10441,-5897,-9044,-3694,-2410,-10442,-10443,-7441,-10444], +[1,3,5465], +[0,0,5466,5467,6], +[0,-932,-1111,-10445,-1572], +[0,-775,-3589,-5387,-10366,-10384,-10446,-7489,-10387,-10447,-10448,-10449], +[1,3,5469], +[0,5470,0,5471,4], +[0,-1640,-2536,-812,-10450,-1801], +[0,-5817,-5937,-5940], +[1,3,5473], +[0,5474,5475,5476,4], +[0,-459,-736,-737,-6920,-10451,-7412,-907,-929,-1072,-10452,-1335,-1504,-1641,-1800,-1840,-2255,-2401,-2453], +[0,-652,-10453,-2226,-2250,-2293], +[0,-3578,-3994,-1334,-9668,-3161,-5401,-6854], +[1,3,5478], +[0,5479,5480,5481,5], +[0,-10454,-3734,-5586,-10455,-1070,-2400,-2564], +[0,-2832,-2581,-50,-8280,-10456,-3758,-8317,-10457,-4203,-1501,-2293,-2386,-7457,-2392,-2410], +[0,-1501,-10458,-6463,-4055,-10459,-3215,-4053], +[1,3,5483], +[0,5484,5485,5486,11], +[0,-10455,-10460,-2401], +[0,-946,-1344,-1501,-1654,-1788,-2198,-2293,-2541], +[0,-10461,-4055,-10458,-1501,-10459], +[1,3,5488], +[0,0,5489,5490,5], +[0,-708,-1415,-1612,-2250], +[0,-1501,-5401,-10462], +[1,3,5492], +[0,5493,5494,5495,6], +[0,-651,-668,-10463,-1800,-10464], +[0,-619,-652,-946,-1501,-10465,-10466,-2210,-2293,-2541], +[0,-1501,-5401,-3444,-1573], +[1,3,5497], +[0,5498,5499,5500,4], +[0,-812,-1504], +[0,-932,-943,-968,-974,-1405,-1501,-1508,-1654,-2198,-2293], +[0,-1501,-5401,-10467,-10468], +[1,3,5502], +[0,5503,5504,5505,10], +[0,-812,-1335,-1504,-1851], +[0,-1501,-1788,-668,-1344,-1654,-932,-1053,-2293,-10469,-2094,-1534,-86,-1448,-2099,-978,-3307], +[0,-1501,-5401,-10470,-3122], +[1,3,5507], +[0,5508,5509,5510,11], +[0,-812,-10471], +[0,-932,-943,-958,-966,-968,-974,-1405,-1501,-1654,-2293], +[0,-1501,-5401,-6656,-5142,-10472], +[1,3,5512], +[0,5513,5514,5515,4], +[0,-1717,-1974,-10473,-2071,-2550,-1548,-2286,-1004,-617,-10474], +[0,-664,-510,-1654,-2210,-2198,-2293,-710], +[0,-5418,-1986,-8615,-2071], +[1,3,5517], +[0,5518,5519,5520,4], +[0,-10475,-834,-932,-10476,-10477,-986,-10478,-1276,-1309,-1458,-1459,-1650,-2172,-2231,-2234,-2297,-10479], +[0,-707,-10480,-963,-10481,-2125,-2177], +[0,-4004], +[1,3,5522], +[0,5523,5524,5525,5], +[0,-5895], +[0,-519,-2177,-10482,-2384,-2541], +[0,-10483,-9318,-1764,-7861,-5897,-10484,-10485,-3551], +[1,3,5527], +[0,0,5528,5529,4], +[0,-1464,-10486,-589,-10487,-10488,-1414,-1446,-1548,-1627,-1963,-10489,-2111,-10490,-2424], +[0,-9826,-5112,-6187,-6188,-2444], +[1,3,5531], +[0,0,5532,5533,9], +[0,-2247,-1344,-1471,-1654,-2210,-932,-10491,-2127,-10492,-10493,-2416,-1482,-1489,-1534,-10494,-10495,-10496,-1480,-4062, +-1478,-10497,-1475,-1487,-1479,-1486,-10498,-10499], +[0,-10500,-6917], +[1,3,5535], +[0,0,5536,5537,10], +[0,-589,-1023], +[0,-1519,-10501,-7210,-10502,-2265,-10503], +[1,3,5539], +[0,0,5540,5541,6], +[0,-8511], +[0,-7210,-10504,-5538,-3276], +[1,3,5543], +[0,5544,0,5545,8], +[0,-1787,-1371,-2323,-1866,-2247,-2446,-668,-999,-1392,-1826,-2218,-4701,-2550,-10505,-815,-9809,-1831,-2125,-2177,-914, +-1442,-1827,-2346,-10506,-1077,-1098,-1376,-1591,-10507,-5917,-10508,-715,-1399,-1418,-1645,-10509,-293,-1100,-1686, +-2654,-2410,-10510,-755,-1108,-10511,-10512,-2202,-1363,-10513,-1769,-10514,-2115,-10515,-2267,-2551,-10516,-305,-8500, +-4236,-10517,-10518,-10519,-1767, +-280,-10520,-10521,-2530,-283,-1770,-4283,-4716,-2450,-10522,-10523,-10524,-10525,-10526], +[0,-1520,-10440,-10527], +[1,3,5547], +[0,5548,5549,5550,6], +[0,-10528,-8501,-2387], +[0,-350,-4062,-351,-427,-428,-10529,-10530,-664,-652,-668,-755,-767,-932,-1077,-6720,-1107,-1111,-1127,-1132,-1134,-1137, +-1152,-1161,-1162,-10531,-1418,-10532,-10533,-9237,-1646,-1654,-10534,-1771,-1856,-10535,-1874,-1961,-10536,-2114,-2127, +-2140,-2142,-2177,-2200,-2351,-2379,-2410,-5252], +[0,-10537,-10538,-10539,-775,-10540,-10541,-10542,-10543,-10544,-1521,-10545,-10546,-4730,-10547,-3215,-3277,-10548, +-10549,-5553,-3770,-3271,-10550,-10551], +[1,3,5552], +[0,0,5553,5554,4], +[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-533,-767,-774,-824,-825,-932,-940,-6929,-958,-959,-965,-967,-978,-1110,-1344, +-1415,-1521,-10552,-1534,-1623,-1771,-1942,-2251,-2269,-2411,-2501], +[0,-2501,-5932,-1521,-10546,-10545,-775,-3277], +[1,3,5556], +[0,5557,5558,229,4], +[0,-10553,-10554,-10555], +[0,-1788,-2322,-2446,-468,-571,-1274,-2250,-2410,-3037,-40,-10556,-10557], +[1,3,5560], +[0,5561,5562,5563,8], +[0,-10559,-6127,-10560], +[0,-10561,-1788,-1107,-2322,-2331,-1032,-2125,-5420,-891,-1274,-1733,-2250,-767,-10562,-10563,-6128,-10564,-10565,-829, +-10566,-10567], +[0,-10558,-1523], +[1,3,5565], +[0,5566,5567,229,11], +[0,-9508,-10568,-10569,-10570,-10571,-10572], +[0,-1788,-2322,-465,-2210,-468,-1032,-5420,-10573,-10574,-1274,-2250,-10562,-633,-2151,-10575,-10576,-725,-10577,-10578, +-829,-10556,-10567], +[1,3,5569], +[0,0,5570,5571,11], +[0,-519,-10579,-10580,-10581,-10582,-10583,-10584,-1703,-10585,-2354,-2541], +[0,-1526,-10582,-10586,-10587,-2265,-7377,-834,-5922,-1087,-6547,-4310,-7378,-10588,-10589,-5554,-5572,-10590], +[1,3,5573], +[0,5574,29,5575,10], +[0,-280,-4280,-10591,-834,-1645,-1767,-1831,-2323], +[0,-1764,-1776,-4303,-687,-834], +[1,3,5577], +[0,5578,5579,5580,5], +[0,-280,-4283,-283,-680,-1767,-1831,-1957,-10592,-2059,-2177,-2202,-4297], +[0,-4298,-4299,-4300,-4286,-668,-7755,-10593,-2319], +[0,-1764,-1776,-4303,-687,-4304,-1528], +[1,3,5582], +[0,5583,29,5584,5], +[0,-280], +[0,-1764,-1776,-4303,-687,-5889,-10594,-10595], +[1,3,5586], +[0,0,5587,5588,4], +[0,-21,-23,-3367,-3350,-40,-43,-4062,-3266,-539,-664,-757,-10596,-767,-10597,-1405,-1415,-10598,-10599,-1646,-1654,-1771, +-1788,-10600,-2104,-2125,-2127,-2387], +[0,-9917,-9918,-6240,-3962,-3162,-10601], +[1,3,5590], +[0,5591,5592,5593,6], +[0,-1015,-1048,-10602,-10603,-1396,-2068,-2114], +[0,-711,-932,-937,-940,-966,-1001,-1654,-1788,-2210], +[0,-4376], +[1,3,5595], +[0,0,5596,5597,4], +[0,-2581,-3136,-3037,-3806,-755,-1415,-2410,-2447], +[0,-755,-727,-3870,-7282], +[1,3,5599], +[0,0,0,5600,6], +[0,-10604,-7920,-10605,-3264,-1437,-10606,-10607,-2006,-2398,-2435], +[1,3,5602], +[0,5603,5604,5605,8], +[0,-719,-1536,-1639,-3610,-3535,-2548], +[0,-8280,-50,-86,-3307,-190,-3664,-6593,-10608,-767,-932,-940,-965,-967,-4814,-1344,-1661,-1942,-2177,-2410,-2469], +[0,-7148,-5889,-10609,-932,-1942,-2281,-707,-8169,-7440,-3276,-5874], +[1,3,5607], +[0,5608,5609,5610,4], +[0,-10610,-10611,-1398,-1399,-10612,-10613,-10614,-1826,-2153], +[0,-708,-826,-9464,-1534,-1574,-1788,-1939,-2239,-5747], +[0,-687,-4107,-4108,-4109,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], +[1,3,5612], +[0,5613,5614,158,6], +[0,-696,-713,-996,-1575,-2124,-2528], +[0,-5745,-2153,-5747], +[1,3,5616], +[0,5617,5618,7,8], +[0,-10615,-10616,-3297], +[0,-10617,-10618,-4686,-10619,-4690,-2387], +[1,3,5620], +[0,5621,5622,5623,5], +[0,-1548,-1646,-632,-10620,-731], +[0,-1654,-2210,-932,-1663,-1405], +[0,-475,-6205,-5142,-3844,-3113], +[1,3,5625], +[0,5626,5627,5628,6], +[0,-1812,-754,-2178,-714,-1676,-729,-679,-10621,-2186,-994,-1792,-10622,-9502], +[0,-1654,-932,-1452,-2293], +[0,-3577,-3113,-3673,-3844,-1334,-687], +[1,3,5630], +[0,5631,5632,7,4], +[0,-679,-10623,-6696,-2531], +[0,-711,-1654,-2198,-2210], +[1,3,5634], +[0,5635,5636,5637,4], +[0,-6838,-1107,-10532,-1442,-9641,-1542,-1548], +[0,-1127,-1144,-1149,-9650,-9280,-1158,-1972,-2210], +[0,-9219,-2548,-6838,-1127,-727], +[1,3,5639], +[0,5640,5641,5642,4], +[0,-506,-1686,-1872,-10624], +[0,-1127,-1132,-2889,-2541], +[0,-3015,-1107,-1127,-6994,-5572,-10625,-5574,-4792,-8906], +[1,3,5644], +[0,0,5645,7,6], +[0,-756,-932,-966,-1415,-1942,-2251], +[1,3,5647], +[0,5648,5649,5650,4], +[0,-10293,-1586,-10626,-10627,-10628,-10629,-10630,-10631,-2783,-10632,-10633,-10634,-10635,-10636,-10637,-10638,-10639], +[0,-1729,-2337], +[0,-7646,-3844,-3578,-3673,-3577,-3113,-754,-1640,-3691,-4215,-3690,-1971,-1586,-3445,-3100,-10640,-1339,-1334,-5735, +-1342], +[1,3,5652], +[0,5653,5654,5655,4], +[0,-10347], +[0,-527,-528,-534,-535,-6079,-559,-10641,-571,-10642,-647,-754,-940,-1127,-5974,-1130,-1136,-1137,-1148,-1149,-10643, +-1152,-1655,-10644,-7845,-1161,-10645,-7848,-1344,-1534,-1542,-1654,-1942,-10646,-5508,-2410,-2416,-2501,-2505], +[0,-10647,-10648,-6005,-10649], +[1,3,5657], +[0,5658,27,7,11], +[0,-523,-812,-10650,-2550], +[1,3,5660], +[0,5661,5662,5663,4], +[0,-755,-812,-1026,-10651,-2550], +[0,-528,-6048,-554,-558,-559,-849,-869,-932,-943,-958,-959,-966,-968,-972,-974,-1415,-1806,-10652,-2177], +[0,-10653,-10654,-5880,-10655,-7148,-2552,-1764,-8170,-7107,-1838], +[1,3,5665], +[0,0,0,5666,4], +[0,-3209,-10656,-2444], +[1,3,5668], +[0,0,0,5669,4], +[0,-3184,-3209,-10656,-2444], +[1,3,5671], +[0,0,0,5672,10], +[0,-10657,-7370], +[1,3,5674], +[0,0,0,5675,4], +[0,-10657,-656], +[1,3,5677], +[0,0,0,5678,5], +[0,-10657,-10658], +[1,3,5680], +[0,0,0,5681,4], +[0,-10657,-811], +[1,3,5683], +[0,0,0,5684,5], +[0,-10657,-10659], +[1,3,5686], +[0,0,0,5687,5], +[0,-10657,-5841], +[1,3,5689], +[0,0,0,5690,5], +[0,-10657,-6283], +[1,3,5692], +[0,0,0,5693,9], +[0,-10657,-9052], +[1,3,5695], +[0,0,0,5696,9], +[0,-10657,-10660], +[1,3,5698], +[0,0,0,5699,4], +[0,-10657,-10661], +[1,3,5701], +[0,0,0,5702,4], +[0,-10657,-10662], +[1,3,5704], +[0,0,0,5705,4], +[0,-1548,-10657,-10656,-2444], +[1,3,5707], +[0,0,0,5708,5], +[0,-10657,-10663], +[1,3,5710], +[0,0,0,5711,4], +[0,-10657,-10664], +[1,3,5713], +[0,0,0,5714,4], +[0,-10657,-6917], +[1,3,5716], +[0,0,0,5717,10], +[0,-10657,-5913], +[1,3,5719], +[0,0,0,5720,4], +[0,-10657,-1631], +[1,3,5722], +[0,0,0,5723,4], +[0,-10657,-10665], +[1,3,5725], +[0,0,0,5726,5], +[0,-10657,-10666], +[1,3,5728], +[0,0,0,5729,5], +[0,-10657,-8127], +[1,3,5731], +[0,5732,0,5733,4], +[0,-9496,-9497], +[0,-10657,-3110], +[1,3,5735], +[0,0,0,5736,5], +[0,-10657,-7329], +[1,3,5738], +[0,0,0,5739,4], +[0,-10657,-10667], +[1,3,5741], +[0,5742,5743,5744,5], +[0,-6703,-8038,-922,-7219,-10668,-10669,-10670], +[0,-1788,-2322,-1344,-10671,-932,-4896,-10672,-1534,-6707,-6709,-6706,-6708], +[0,-1573,-3444,-812,-648,-2520], +[1,3,5746], +[0,5747,5748,5749,5], +[0,-8416,-6861], +[0,-2541,-519,-2384,-2269], +[0,-4112,-687,-7095,-3958,-8132,-8618,-8619,-8620,-1040,-8621,-7084,-1573,-5545,-3974,-3973], +[1,3,5751], +[0,5752,5753,5754,4], +[0,-480,-690,-2219,-2269,-2528], +[0,-3037,-2267,-10673,-2384,-6786,-2541], +[0,-1573,-3444,-5545,-687,-3974,-4110,-4000,-5550,-10674,-10675,-10676,-8991,-3973,-1959,-10677,-5176], +[1,3,5756], +[0,5757,5758,5759,5], +[0,-10678,-812,-7142,-2124,-10679], +[0,-86,-3307,-10680,-5902,-9818,-932,-934,-940,-8246,-958,-967,-1077,-1344,-1392,-1788,-1942,-1972,-2319,-2410], +[0,-5545,-1573,-6459,-3966], +[1,3,5761], +[0,0,5762,5763,5], +[0,-9569,-3037,-1127,-1132,-1134,-1136,-1137,-10681,-1144,-1148,-1149,-10682,-10683,-1412,-2379,-2410], +[0,-1573,-3444,-5545,-4865], +[1,3,5765], +[0,0,5766,5767,10], +[0,-6132,-1942,-2410], +[0,-10684,-1578,-10685], +[1,3,5769], +[0,5770,5771,5772,6], +[0,-888,-828,-10686,-510,-812,-10330,-1004,-10687,-583,-615,-1369,-1752,-617,-2185,-10688,-10689,-10690,-10691,-10692, +-2425,-10693,-10694,-10695,-10696], +[0,-1788,-664,-1127,-1471,-1654,-2210,-2518,-932,-756,-1132,-10697,-2293,-633,-838,-2211,-1155,-1482,-1152,-744,-10698, +-10699,-1010,-1130,-1156,-1472,-10700,-1149,-10701,-1148,-10354,-10702,-1475,-10355,-10703,-1479,-7707], +[0,-3578,-5728,-3691,-3690,-1004,-2118,-1501,-6120,-7107,-5378,-1691,-7684,-6857,-1671,-10704,-1682,-10425,-6321,-2227, +-10705,-3161,-3162,-10706], +[1,3,5774], +[0,5775,5776,196,5], +[0,-3187], +[0,-633,-913,-2319], +[1,3,5778], +[0,5779,5780,5781,9], +[0,-10707], +[0,-2392,-1344,-2331,-932,-1548,-825,-2379,-2410,-3037,-3044,-3617,-86,-10708,-10709,-5918,-10710,-3307], +[0,-7685,-7773,-891,-10711,-10712,-1055,-4182,-8427,-10713,-10714,-4865,-985], +[1,3,5783], +[0,0,5784,5785,5], +[0,-3037,-589,-928,-1610,-1650,-1942,-2319,-2386,-2402], +[0,-10715,-10413,-3324], +[1,3,5787], +[0,0,5788,5789,10], +[0,-3561,-407,-3667,-2127,-2132,-2410,-2466,-2469,-10716,-10717,-10718], +[0,-10719,-10720,-10721,-10722,-10723,-10724,-10725,-10726,-10727], +[1,3,5791], +[0,5792,5793,5794,9], +[0,-510,-596,-10728,-1696], +[0,-756,-1405,-1650,-1654,-1657,-2198], +[0,-6527,-640,-10729,-1958,-10095,-7069,-7068,-9235,-8640,-7715,-8642,-7066,-10730,-10731,-7334,-10732,-10733,-6337, +-10502,-10734,-10735,-10736,-4162,-10737,-10738,-10739,-10740,-10741], +[1,3,5796], +[0,5797,5798,5799,5], +[0,-10742,-10743,-6789,-10508,-717,-718,-10744,-10293,-1501,-10745,-1805,-1982,-6791,-7576], +[0,-1448,-10639,-1729,-10746,-2337], +[0,-1586,-3844,-1334,-5735,-1342,-3445,-1339,-7646,-3578], +[1,3,5801], +[0,5802,5803,5804,8], +[0,-668,-715,-812,-910,-5672,-10415,-10747,-1040,-1075,-1286,-10748,-1292,-1380,-1442,-10521,-10749,-1650,-1816,-1951, +-5353,-4242,-2098,-2101,-10750,-3669,-2359,-7699,-2427,-7669,-2429,-5356,-2446,-5358,-2518,-2530,-10751,-2550], +[0,-10752,-3198,-5334,-3660,-10753,-10754,-3037,-3628,-4231,-3738,-10755,-9284,-3041,-767,-8364,-2218,-2269,-2410,-2447], +[0,-1599,-10756,-10757,-3634,-856], +[1,3,5806], +[0,5807,5808,5809,8], +[0,-3115], +[0,-190,-351,-3561,-589,-8349,-740,-932,-1942,-2910,-2127,-2232,-2234,-2469], +[0,-2265,-10758,-6915,-7651,-6431], +[1,3,5811], +[0,5812,5813,5814,6], +[0,-2531,-523,-1449,-2387,-997,-1548,-1388,-3679,-7967], +[0,-932,-2402,-4204,-2410,-3037,-1771,-4647,-3044,-428,-4659,-10759,-427], +[0,-10760,-8911,-2410,-840,-4601,-9111,-3214,-10761,-10762,-10763,-10764,-10765,-9840,-10766,-10767,-7085,-10768,-10769, +-856,-10770,-10771,-1589], +[1,3,5816], +[0,5817,5818,5819,4], +[0,-668,-1015,-1111,-2462,-1686,-1849,-2271], +[0,-1127,-1654,-2198,-1132], +[0,-622,-1168,-7419,-9219], +[1,3,5821], +[0,0,5822,5823,4], +[0,-4035,-3037,-519,-1119,-10772,-2331,-2384,-2541], +[0,-8988,-1650,-9218,-7411,-7410,-7421,-7420,-1847,-8807,-6370,-10773,-10774,-7371,-8990,-1076,-7422,-7000], +[1,3,5825], +[0,0,0,5826,5], +[0,-9218], +[1,3,5828], +[0,5829,5830,5831,4], +[0,-4733,-503,-578,-615,-10775,-1468,-10776,-1850,-2424,-2538], +[0,-3037,-633,-10777,-10778,-932,-10779,-1654,-2330,-2410,-2416], +[0,-8703,-3264,-10780,-10781,-1599,-3437], +[1,3,5833], +[0,5834,5835,5836,6], +[0,-3698,-6486,-10782,-10783,-10784,-10785,-10786,-10787,-10788,-10789,-469,-583,-668,-3910,-3911,-693,-9229,-9759,-1442, +-1465,-1540,-1658,-1692,-1729,-1753,-1851,-1857,-1878,-2080,-2153,-2193,-2223,-2245,-2409,-10790,-2435], +[0,-10791,-10792,-4353,-10793,-10794,-2980,-8850,-10795,-3617,-3660,-4201,-5363,-4203,-427,-428,-932,-940,-967,-1076, +-1415,-1847,-1942,-2234,-2293,-2375,-2376,-2383,-2410], +[0,-3445,-3690,-3691,-3967,-2410,-7685,-10796,-10797,-7643,-10798,-10799,-10800,-10801,-10802,-3742,-10425,-1691,-2409, +-5406,-6120,-3173,-10803,-6005,-5940,-10804,-10805,-10806,-10807,-10808,-10809,-6113,-10810,-1594], +[1,3,5838], +[0,0,5839,5840,5], +[0,-3244,-2658,-250,-252,-254,-10811,-10812,-3044,-3037,-3040,-3052,-427,-428,-703,-784,-932,-10813,-970,-1548,-2634, +-1889,-1891,-1906,-10814,-10815,-1942,-2006,-2019,-2193,-4245,-2592,-2391,-2410], +[0,-3160,-10816,-10817,-3824,-10818,-10819,-2006,-10820,-2410,-3214,-3577,-3100,-3477,-3160,-10821,-4015,-7566,-10822, +-3095], +[1,3,5842], +[0,0,5843,7,5], +[0,-8392,-8394,-8393,-994,-8388], +[1,3,5845], +[0,0,5846,5847,6], +[0,-3037,-427,-428,-3664,-518,-652,-932,-935,-948,-1449,-10823,-2162,-2281,-3436,-2410,-2466,-6859,-2469], +[0,-10824,-3004,-3862,-10825,-5553], +[1,3,5849], +[0,5850,71,5851,4], +[0,-1758], +[0,-1599,-10826,-3272], +[1,3,5853], +[0,5854,5855,5856,5], +[0,-503,-3223,-10827,-10828,-10829,-10830], +[0,-3326,-350,-351,-3266,-5514,-589,-652,-664,-932,-943,-1004,-1103,-1304,-1429,-3245,-1602,-3650,-1603,-3427,-10831, +-10832,-10833,-10834,-3651,-3668,-1654,-10835,-1708,-2127,-2195,-2293], +[0,-1599,-3215,-8630,-1600,-10836], +[1,3,5858], +[0,0,5859,5860,8], +[0,-3234,-519,-3425,-1637,-2234,-2250], +[0,-1599,-1600,-10836,-5147,-10837], +[1,3,5862], +[0,0,230,5863,5], +[0,-10836,-1600,-1599], +[1,3,5865], +[0,0,230,5866,8], +[0,-10836,-1600,-1599,-10838,-10839,-10840,-10841], +[1,3,5868], +[0,5869,5870,5871,4], +[0,-719,-883,-1015,-1304,-1860,-2102,-10842,-2347,-2359], +[0,-756,-1405,-10843,-2250,-2322], +[0,-1599,-6528,-5845,-3110], +[1,3,5873], +[0,0,5874,5875,4], +[0,-3037,-652,-668,-1942,-2094,-2100,-2269,-2399,-2410,-2541], +[0,-9846,-1599,-10844,-4002,-6724,-5554], +[1,3,5877], +[0,0,5878,5879,11], +[0,-7057,-3037,-3040,-3052,-10845,-928,-2006,-2019,-2034,-10106,-10846,-2410,-2476], +[0,-1599,-10847,-2006,-1940,-4146,-2476,-5173,-3944,-9608,-10848,-2034,-3264], +[1,3,5881], +[0,5882,88,5883,4], +[0,-725,-10849,-1125,-10850,-10851,-10852,-1646,-10853,-9323,-2102,-10854,-9403], +[0,-10837,-8630,-3671,-10855,-856,-10856,-10857,-9409,-10858,-1599,-3437,-3862,-4328,-4846,-2102,-10859,-7650,-4065,-4002, +-10860,-10861,-10862,-6234], +[1,3,5885], +[0,5886,5887,5888,5], +[0,-1638,-10863,-10864,-10865,-10866,-10867,-10868,-10869,-2267], +[0,-190,-3748,-469,-519,-652,-2736,-932,-960,-965,-971,-978,-10870,-1111,-1442,-8274,-1461,-1600,-10831,-10834,-3651, +-10871,-8345,-1771,-2335,-2362,-2410,-2501,-2503], +[0,-1599,-7148,-3437,-10872,-1608], +[1,3,5890], +[0,5891,5892,5893,10], +[0,-719,-822,-1353,-1442,-1461,-10873,-1608,-1600,-1645,-10874,-10430,-2654], +[0,-519,-8345,-2541], +[0,-1599,-1608,-687,-5732], +[1,3,5895], +[0,0,5896,5897,4], +[0,-2832,-10875,-10876,-7040,-3471,-3472,-7041,-7042,-674,-8630,-767,-5382,-928,-10877,-932,-1304,-1600,-10878,-10879, +-10880,-2125,-2174,-9764,-2387,-2410], +[0,-1599,-10881,-3264], +[1,3,5899], +[0,5900,5901,163,4], +[0,-4321,-4322,-3649,-4323,-4309,-4320,-4308,-1395,-4313,-4318,-4314,-4315,-4311,-4316,-4319,-1550,-1554,-4317,-1600, +-1603,-4324,-4325,-3430,-4312,-2161,-4310], +[0,-633,-674,-1107,-4327,-1654,-4326,-2250,-2251], +[1,3,5903], +[0,5904,0,7,4], +[0,-891,-10882], +[1,3,5906], +[0,5907,0,160,10], +[0,-567,-10883,-1493,-1566,-1571,-1967,-10884,-2055,-2069,-10885,-2489], +[1,3,5909], +[0,5910,5911,5912,8], +[0,-44,-10886,-10300,-10887,-5898,-10888,-2172,-6751,-10889], +[0,-23,-5585,-3391,-38,-40,-43,-8380,-3621,-427,-428,-507,-534,-652,-708,-824,-10890,-920,-932,-940,-943,-958,-964,-965, +-967,-968,-1002,-10891,-1022,-1107,-1168,-1174,-1276,-10892,-1471,-1479,-1482,-1483,-1491,-3079,-1492,-1650,-1654,-1656, +-10893,-10894,-10895,-10896,-10897,-10898,-1942,-1958,-2210,-10899,-2354,-2379,-2410,-2501,-10900], +[0,-10684,-10901,-7163,-10902,-10903,-3215,-8130,-6240,-6245,-10904,-10905,-7521,-5119], +[1,3,5914], +[0,5915,5916,7,10], +[0,-6130,-10906,-5852], +[0,-1654,-2501], +[1,3,5918], +[0,0,5919,5920,9], +[0,-1654,-2250], +[0,-1616,-10907,-10908], +[1,3,5922], +[0,5923,5924,5925,4], +[0,-4251,-4231,-10909,-9596,-5348,-1638,-10910,-10911,-10912,-10913,-10869,-10914], +[0,-3037,-652,-10915,-928,-7324,-2586,-1290,-1619,-10916,-1942,-2094,-2100,-2334,-2399,-2410,-2541], +[0,-3272,-1599,-10881,-10917,-10918,-1838,-4132,-10919,-9590,-3590,-2444], +[1,3,5927], +[0,5928,5929,5930,5], +[0,-5334,-4251,-9581,-9596,-10920,-10921,-9583,-2429,-5358], +[0,-3037,-9586,-652,-1290,-1294,-1618,-10922,-10923,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-9590,-10918,-10917,-9589,-9588,-2444,-3590,-1599,-3264], +[1,3,5932], +[0,0,5933,5934,6], +[0,-469,-4712], +[0,-6582,-10924,-10925,-775], +[1,3,5936], +[0,5937,0,5938,5], +[0,-10926,-10927], +[0,-10928,-3324,-3323,-9844,-10929,-10930,-10931,-10932,-1622,-10933,-7684], +[1,3,5940], +[0,5941,5942,5943,4], +[0,-10934,-10935,-10936,-10937,-10938,-10939,-10940,-10941,-10942,-10943,-10944,-10945,-10946,-2387], +[0,-3136,-6325,-3037,-496,-507,-640,-1331,-1344,-10947,-1415,-1848,-1942,-1958,-2062,-2125,-2325,-2375,-2376,-2379,-2388, +-10948,-2410,-2435,-2444,-2501,-2503,-2505], +[0,-1076,-7422,-10949,-1626,-1623,-6656,-8801,-10467,-10412,-10950,-9614,-4004,-3634,-4215,-10951,-10952,-10953,-10954, +-10955,-10956,-10957,-10958], +[1,3,5945], +[0,0,5946,5947,5], +[0,-5295,-3268,-3136,-10959,-8216,-3037,-427,-428,-589,-767,-932,-940,-959,-967,-1002,-10960,-1415,-1559,-1565,-1605, +-10961,-5969,-9642,-10962,-1816,-1942,-2125,-2127,-2138,-2140,-2141,-2214,-2375,-2379,-2387,-2410], +[0,-5913,-10963,-3324,-6187], +[1,3,5949], +[0,0,5950,5951,5], +[0,-664,-1168,-2210,-10964,-1231,-2211,-1224,-1220,-1453], +[0,-3324,-10965,-5493,-6005], +[1,3,5953], +[0,5954,5955,5956,8], +[0,-10966,-2062], +[0,-599,-6774,-756,-932,-1405,-1654,-2198], +[0,-1076,-10412], +[1,3,5958], +[0,0,5959,5960,5], +[0,-1003,-1654,-1127,-1132,-1156,-1144,-1980], +[0,-10412,-4004,-5827,-3674,-8027,-640], +[1,3,5962], +[0,0,5963,7,4], +[0,-1654,-2198,-1733], +[1,3,5965], +[0,68,15,16,6], +[1,3,5967], +[0,0,5968,5969,5], +[0,-350,-4062,-351,-5918,-5686,-519,-10967,-722,-813,-10968,-10969,-999,-1111,-1366,-10970,-6904,-3609,-2060,-5120,-2127, +-2132,-2134,-4621,-10971,-2384,-2400,-2410,-2541,-2551], +[0,-687,-8425,-2444,-3590,-4187,-4378,-3957,-6722,-1630,-10972,-10973,-3215,-5829,-5272,-3962,-7095,-4000], +[1,3,5971], +[0,0,5972,5973,4], +[0,-3035,-3621,-3037,-664,-726,-1654,-2410,-2501,-2503], +[0,-1631,-7371,-1015,-702,-7208,-4865], +[1,3,5975], +[0,0,5976,7,4], +[0,-10974,-1405], +[1,3,5978], +[0,5979,5980,5981,4], +[0,-679,-719,-812,-1125,-6796,-10975,-1639,-10976,-10977], +[0,-3244,-190,-10978,-4715,-3198,-4036,-3037,-10979,-652,-932,-958,-965,-1110,-1654,-1942,-2091,-2362,-2410], +[0,-5142,-5372,-6656,-9204,-3258,-3260,-3262,-1599,-3259,-1633,-2548], +[1,3,5983], +[0,5984,0,7,10], +[0,-10980,-5676,-1343,-10981,-10982,-2125,-2177,-2323,-2359], +[1,3,5986], +[0,5987,5988,7,8], +[0,-2453,-812,-1636,-1840], +[0,-1654,-932,-1405,-2293,-966,-958,-968,-943,-963,-974], +[1,3,5990], +[0,0,5991,5992,5], +[0,-1654,-1405], +[0,-1334,-1636], +[1,3,5994], +[0,5995,5996,5997,11], +[0,-23,-26,-10983,-3077,-3203,-3408,-3357,-40,-6056,-41,-4066,-3326,-350,-4062,-351,-10984,-10985,-518,-3766,-10986, +-10987,-9459,-644,-656,-930,-1044,-1273,-1496,-1566,-1889,-1948,-2127,-5994,-4753,-2140,-2142,-2144,-5037,-2334,-10988, +-2387,-2410], +[0,-21,-5870,-10989,-8280,-50,-533,-767,-10990,-932,-10991,-940,-967,-985,-1077,-1344,-1415,-1534,-10992,-1942,-2082, +-2125,-2194,-2269], +[0,-4161,-2127,-10993], +[1,3,5999], +[0,6000,0,6001,4], +[0,-3198,-812,-10909,-9596,-10863,-10994,-7666,-10995,-10996,-10910,-2785,-10912,-10997,-10920,-10998,-10913,-10869], +[0,-8630,-3116,-4329,-3264,-7184,-1599,-10881,-3437,-2427,-1838,-3215,-3862,-1958,-2093,-7650,-4065,-8451,-3579], +[1,3,6003], +[0,6004,6005,6006,5], +[0,-9968,-1864], +[0,-1654,-1645,-10999,-1202], +[0,-6836,-11000,-11001,-7727,-11002,-8130,-9969,-11003,-6656,-6999,-7724,-5573,-1107,-9095,-9096,-9970,-11004,-11005, +-11006,-5572,-5912,-3581,-10590,-1639,-1645,-1686,-11007,-11008,-1847,-5574,-5064,-11009,-5569,-5570,-8129,-5550,-11010, +-9087], +[1,3,6008], +[0,0,6009,6010,4], +[0,-11011,-3713,-3037,-427,-428,-668,-11012,-1641,-1942,-11013,-11014,-2410], +[0,-5195,-6656,-1640,-11015,-11016,-2444], +[1,3,6012], +[0,6013,129,6014,10], +[0,-11015], +[0,-1640,-3694], +[1,3,6016], +[0,119,120,6017,4], +[0,-11017,-11018,-11019,-11020,-11021,-11022,-11023,-11024,-11025,-11018,-11026,-11027,-11028,-11029,-11030,-11031,-11032, +-11033,-11034,-11035,-11036,-9234,-11037,-11038,-11039,-11040,-11041,-11042,-11043,-11044,-11045,-11046,-7530,-11047, +-11048,-7561,-7562,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-11049,-7283,-6582,-7534,-7535,-7536,-7537,-7538, +-7539,-7540,-7541,-7542,-7543,-7544,-7545,-8807,-6599,-5756, +-11050,-11051,-7503,-7371,-7546,-7547,-7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558, +-7559,-5063,-7560,-11052,-6187,-7563,-856,-7275], +[1,3,6019], +[0,6020,6021,6022,11], +[0,-2168,-2321], +[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-3037,-620,-767,-774,-778,-824,-825,-920,-932,-940,-6929,-958,-959,-960,-965, +-967,-978,-1041,-1110,-1344,-1415,-1419,-1449,-1534,-1623,-1771,-1942,-2162,-2163,-2251,-2410,-2411,-2501,-2503,-2505], +[0,-2501,-775,-7347,-6211], +[1,3,6024], +[0,6025,6026,6027,5], +[0,-11053,-367,-683,-11054,-812,-928,-1047,-11055,-3751,-11056,-11057,-2334,-11058,-11059], +[0,-11060,-932,-11061,-11062,-4653,-11063], +[0,-1644,-7173,-3756,-775,-5094,-3264,-6118], +[1,3,6029], +[0,6030,6031,7,11], +[0,-11064], +[0,-2319,-2386,-1650,-2402,-1942,-3037], +[1,3,6033], +[0,0,6034,6035,4], +[0,-515,-1788,-2322,-932,-1777,-1365,-516,-2156,-5834], +[0,-4378,-9568,-3215,-1813], +[1,3,6037], +[0,6038,6039,6040,4], +[0,-719,-1730], +[0,-8477,-1415,-1942,-2375,-2410], +[0,-11065,-11066,-11067], +[1,3,6042], +[0,0,6043,6044,9], +[0,-11068,-3037,-5866,-652,-940,-1942,-2319,-2379,-2402,-2410], +[0,-8988,-7421,-11069,-9218,-11070,-7371,-5269], +[1,3,6046], +[0,6047,6048,7,5], +[0,-461,-1852,-6568,-11071], +[0,-3037,-3664,-672,-932,-944,-3190,-1431,-1942,-6570,-2410,-2423,-2469], +[1,3,6050], +[0,0,6051,6052,4], +[0,-23,-26,-33,-38,-40,-42,-44,-11072,-1059], +[0,-1652,-11073,-5927,-3159,-2006,-3476,-11074,-6106,-11075,-11076,-11077,-11078], +[1,3,6054], +[0,6055,6056,6057,5], +[0,-11079], +[0,-1652,-11079,-11080], +[0,-1652,-11073,-3159,-2006,-3476,-11074], +[1,3,6059], +[0,6060,6061,6062,4], +[0,-1297,-1681,-834,-1107,-812,-2550,-1047,-1442,-679,-1645,-1863,-3730,-1574,-2551,-11081,-7408,-2297,-11082,-2271,-930, +-2182], +[0,-1788,-664,-1498,-1446,-1471,-2210,-11083,-932,-1708,-2093,-2125,-2127,-2177,-1110,-11084,-2501,-1942,-767,-190,-11085, +-2410,-11086,-3037,-1339,-1482,-1600,-2503,-3041,-711,-1607,-1772,-4655,-27,-11087,-11088,-11089,-11090,-965,-3781,-1609, +-11091,-3425,-1603,-3060,-1601,-4062,-11092,-4066,-1483,-1488,-1475,-350,-11093,-2144,-5995,-2136,-351,-9701,-11094, +-11095], +[0,-1654,-4004,-3440,-4873,-2319,-3634,-664,-5855,-519,-1415,-2322,-1412,-1471], +[1,3,6064], +[0,6065,6066,6067,6], +[0,-4377,-1978], +[0,-664,-1654,-10534,-2410], +[0,-1654,-3636,-1978,-11096], +[1,3,6069], +[0,6070,6071,6072,5], +[0,-812,-1616,-1650,-2269,-6597], +[0,-357,-664,-11097,-932,-1654,-2125,-11098,-11099], +[0,-1654,-11100,-6863], +[1,3,6074], +[0,0,0,6075,11], +[0,-1654,-6863,-11101,-4005], +[1,3,6077], +[0,0,6078,6079,5], +[0,-664,-932,-9072,-1654,-2125,-2177], +[0,-4215,-1076,-4004,-8101,-8801,-10412], +[1,3,6081], +[0,6082,6083,6084,8], +[0,-11102,-1083,-11103,-11104,-1285,-1402,-1794], +[0,-2832,-5834,-8084,-11105,-11106,-11107,-11108,-11109,-8088,-11110,-8089,-8939,-8090,-8091,-8092,-8093,-3037,-11111, +-8094,-8096,-516,-5835,-921,-932,-993,-1065,-1283,-1365,-1777,-1788,-2156,-2322], +[0,-3634,-4215,-7208,-7153,-5846,-11112,-4004,-6693,-11113], +[1,3,6086], +[0,6087,6088,231,4], +[0,-5505,-1759], +[0,-767,-932,-1654], +[1,3,6090], +[0,0,27,6091,6], +[0,-4004,-4215,-3966,-1076,-3972], +[1,3,6093], +[0,0,6094,6095,5], +[0,-1654,-2127,-2142,-2198,-2410], +[0,-4121,-4215,-4004], +[1,3,6097], +[0,0,6098,6099,6], +[0,-1405,-1452,-2210,-11115,-2471], +[0,-4215,-8611,-4792,-3551,-3324,-5119,-4004,-11116,-3634,-4873], +[1,3,6101], +[0,75,6102,6103,5], +[0,-1168,-1190,-11117,-1220,-1224,-1231,-11118,-1452,-1453,-2501], +[0,-4215,-11119,-11120], +[1,3,6105], +[0,6106,6107,6108,4], +[0,-4377,-1107,-1496,-1548,-11121,-1582,-1729,-995,-11122,-11123], +[0,-1435,-2384,-11124,-1415,-1680,-11125,-1867,-812,-11126,-648,-11127,-865,-932,-1576,-11128,-473,-1388,-1753,-11129, +-2379,-2520,-11130,-11131,-1417,-11132,-1942,-756,-11133,-1418,-1765,-2293,-11134,-1969,-2410,-11135,-3037,-11136,-11137, +-11138,-11139,-11140,-11141,-11142,-11143,-10453,-11144,-11145,-966,-11146,-357,-11147,-968,-940,-967,-972], +[0,-11148,-6209,-3161,-3445,-11149,-7586,-11150,-11151,-5078,-9840,-11152], +[1,3,6110], +[0,0,6111,6112,5], +[0,-1989,-2127,-767,-2410,-3037,-1488], +[0,-1666,-4121,-4123,-1838,-3276,-5874,-1348,-9772,-11153], +[1,3,6114], +[0,6115,6116,6117,4], +[0,-1666], +[0,-1127,-1134,-1144,-1146,-1148,-10264,-2410], +[0,-1666,-4121,-4123,-11154,-11155,-11156,-11157,-11158], +[1,3,6119], +[0,6120,6121,6122,5], +[0,-1461,-11159,-11160,-11161,-11162,-1848,-1942,-11163,-11164,-11165,-2548], +[0,-11166,-2970,-3664,-928,-9002,-1874,-2094,-11167,-2410,-2469,-11168], +[0,-3496,-3100,-3577,-11169,-9002,-2548], +[1,3,6124], +[0,0,6125,6126,10], +[0,-190,-3037,-3664,-932,-940,-972,-978,-1942,-2125,-2402,-2405,-7322,-2410,-2411,-2466,-6859,-2469], +[0,-11170,-11171,-11172,-5829,-11173,-3577,-3445], +[1,3,6128], +[0,6129,6130,6131,8], +[0,-6779,-11174,-6780,-6777,-11175,-6776,-8843,-11176,-11177,-2997,-11178,-617,-620,-11179,-637,-709,-719,-744,-767,-787, +-865,-919,-1004,-4206,-1010,-1055,-11180,-11181,-1320,-1437,-3725,-1635,-1671,-11182,-1676,-1863,-11183,-2185], +[0,-23,-32,-40,-11184,-11185,-534,-664,-684,-726,-748,-778,-795,-932,-934,-958,-978,-11186,-1041,-1344,-1654,-11187,-1734, +-1753,-2275,-2293,-2501,-2503], +[0,-8856,-11188,-7558,-7685,-11189,-3964,-11190,-11191,-6857,-1671,-11192,-11193,-11194], +[1,3,6133], +[0,6134,6135,6136,8], +[0,-637,-11195,-11196], +[0,-1788,-2384,-11197,-664,-668,-1654,-2210,-11198,-2550,-932,-2177,-11199,-1004,-1442,-2379,-1942,-2211,-2410,-3241, +-3035,-3037,-667,-11200,-3621,-4372,-11201,-3199,-3617,-11202,-11203,-11204,-11205,-3625,-11206,-11207,-2234,-964,-977, +-940,-967,-264,-262,-428,-11208,-6424,-9724,-11209,-427,-4814,-234], +[0,-1671,-9879,-5041], +[1,3,6138], +[0,6139,6140,6141,10], +[0,-11210,-1671,-11211,-11212,-1681,-11213], +[0,-11214,-11215,-3037,-11216,-11217,-11218,-469,-652,-674,-7743,-932,-5984,-1004,-1077,-1304,-9150,-1559,-11219,-8554, +-1610,-1650,-1654,-1666,-11208,-11187,-11220,-1705,-1974,-2210,-2655,-2410,-2411,-2446], +[0,-1671,-10855,-6106,-4058,-7685,-11221,-6582,-11222,-5101,-7684,-1818,-7773], +[1,3,6143], +[0,6144,232,6145,5], +[0,-763,-727,-573,-2228,-2424,-2229,-11223], +[0,-1673,-11224,-11225,-8841,-11226,-11227], +[1,3,6147], +[0,6148,232,6149,5], +[0,-727,-729,-1673,-11228,-11223], +[0,-1673,-11229,-11224,-11225,-11230,-5412,-8841,-11231], +[1,3,6151], +[0,6152,6153,6154,8], +[0,-11232,-812,-1671,-11233,-11234,-11235,-11236,-11237,-11238,-1792], +[0,-519,-708,-932,-943,-950,-958,-966,-968,-974,-11239,-11240,-11241,-11242,-11243,-11244,-11245,-1788], +[0,-1675,-1671,-6857,-9879], +[1,3,6156], +[0,6157,6158,6159,5], +[0,-579,-812,-828,-1800,-6825], +[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2239,-2293], +[0,-1004,-1334,-3444,-5401], +[1,3,6161], +[0,44,15,16,10], +[1,3,6163], +[0,6164,6165,6166,10], +[0,-2531,-2124,-812,-11198,-2240,-11246,-11247,-1646,-4204,-1582,-11248,-725,-11249,-2062,-11250,-6279], +[0,-1788,-664,-2322,-2210,-932,-1109,-1650,-2125,-2198,-2226,-928,-1110,-2379,-679,-1942,-11251,-190,-1939,-2091,-2410, +-3035,-3037,-8096,-4372,-908,-11252,-11253,-3244,-11254,-5325,-3311,-4805,-11255,-958,-940,-967,-428,-740,-3312,-11256, +-427,-4646], +[0,-1680,-11257,-8403,-8404], +[1,3,6168], +[0,0,6169,7,8], +[0,-1344,-1654,-932,-1942,-1003,-1534], +[1,3,6171], +[0,6172,6173,6174,10], +[0,-11258,-719,-812,-10414,-10417], +[0,-86,-3307,-7040,-3472,-7041,-7042,-1654,-2174,-2250], +[0,-7685,-1682,-10424,-3844,-11259,-10704,-11260,-11261,-10417,-11262,-10704,-11263,-5800,-11264], +[1,3,6176], +[0,6177,6178,6179,11], +[0,-2946,-269,-4190,-11265,-743,-1122,-11266,-4193,-4194,-1851,-1863,-11267,-2255,-4195,-2364,-2400,-11268,-2550], +[0,-86,-3307,-11269,-3244,-190,-11270,-3316,-4196,-4197,-3983,-3617,-11271,-3037,-11272,-427,-428,-3310,-523,-5859,-720, +-767,-768,-796,-928,-3808,-932,-940,-967,-1004,-1030,-8151,-1107,-1449,-11273,-1498,-1534,-11274,-1942,-2910,-2082,-2125, +-3246,-2391,-2410,-2411,-2426,-2437,-2469,-4209,-2501,-4211,-1683], +[0,-3690,-4215,-4041,-8615,-10807,-3844,-5196,-8481,-3634,-3577,-4725], +[1,3,6181], +[0,6182,6183,6184,4], +[0,-11275,-649,-725,-1650,-1792,-2401,-2546], +[0,-821,-1004,-1069,-11276,-1654,-1788,-2125,-2250,-11277], +[0,-4053,-9751,-6463,-1069,-11278,-1004,-5401], +[1,3,6186], +[0,6187,14,6188,4], +[0,-9491,-11279,-1645], +[0,-7727,-5573,-1107,-9095,-9096,-5572,-5912,-1645,-5574,-5064,-9087], +[1,3,6190], +[0,6191,6192,6193,5], +[0,-2418,-1335,-2155], +[0,-1788,-11280,-1654,-932,-1650,-2125,-2291,-2108,-963], +[0,-6656,-7764,-1070,-5827,-5940], +[1,3,6195], +[0,6196,6197,6198,4], +[0,-5573,-1077,-1462,-1548,-3222,-1805,-2446], +[0,-1412,-1788,-11281,-2091], +[0,-793,-3264,-11282,-1688,-11283,-11284], +[1,3,6200], +[0,0,6201,6202,4], +[0,-985,-664,-2568,-1654,-932,-1452,-2127,-1978,-2416], +[0,-1689,-3110,-3261,-888], +[1,3,6204], +[0,0,6205,6206,10], +[0,-865,-1168,-1197,-1251,-1344,-1471,-1475,-1485,-1488,-11285,-11286,-1942,-10496,-1989,-2125,-2127,-2334,-11287], +[0,-4672,-3999,-11288,-7724,-7283,-7581], +[1,3,6208], +[0,6209,6210,7,11], +[0,-595,-2062,-2155,-11289], +[0,-465,-932,-2172,-11290,-11291,-11292], +[1,3,6212], +[0,6213,6214,6215,4], +[0,-1578,-9953,-10401,-1351,-11293,-11294,-11295,-11296], +[0,-652,-2392,-11297,-1110,-1942,-589,-767,-190,-1888,-2410,-3037,-11298,-3244,-3560,-3606,-940,-967,-428,-11299,-427, +-5706], +[0,-1691,-3323,-3844], +[1,3,6217], +[0,6218,6219,6220,11], +[0,-8993,-1792,-8994], +[0,-1405,-615,-1654], +[0,-8124,-1961,-11300,-11301,-3184], +[1,3,6222], +[0,0,6223,6224,4], +[0,-11302], +[0,-1784,-3966,-9318,-9800,-11303,-3966,-7304,-6845], +[1,3,6226], +[0,0,6227,7,4], +[0,-596,-719,-1107,-2105,-2062,-2319,-2546], +[1,3,6229], +[0,0,6230,6231,4], +[0,-2426,-3037,-2410], +[0,-11304,-6582,-2105,-4055,-7684,-11151,-1697,-7685], +[1,3,6233], +[0,6234,6235,6236,5], +[0,-3115,-781,-786,-11305,-10883,-11306,-7222,-3768], +[0,-4757,-4754,-4749,-3136,-3037,-3140,-3040,-932,-4650,-1344,-11307,-1415,-1520,-11308,-1534,-1942,-1967,-2006,-2019, +-2052,-2125,-2234,-2376,-2387,-2410,-2501,-2502,-2505,-2552], +[0,-775,-5553,-3770,-11309,-1697,-11310,-2006,-3756,-11311,-3771,-11312,-11313,-3095,-2278,-11314,-11315,-3271], +[1,3,6238], +[0,0,0,6239,8], +[0,-2446,-6555,-7231,-2435], +[1,3,6241], +[0,6242,6243,6244,4], +[0,-7872,-523,-893,-1077,-11316,-11317,-1577,-1705,-11318,-2160,-2234,-2359,-2550], +[0,-3198,-3048,-11319,-3136,-9143,-3037,-11320,-3628,-3041,-427,-428,-891,-932,-940,-967,-1415,-1874,-1942,-2125,-2376, +-2410,-2501,-2503], +[0,-11321,-891,-3994,-5269,-8911], +[1,3,6246], +[0,6247,6248,6249,6], +[0,-2531,-1816,-2323,-1430,-1805,-2446,-523,-712,-1875,-2550,-8898,-1548,-1576,-1610,-1650,-1831,-2177,-7680,-2519,-2536, +-987,-1966,-2195,-501,-679,-1942,-1981,-2378,-1645,-11322,-695,-2205,-2231,-2410,-11323,-3950,-11324,-11325,-11326,-8888, +-11327,-11328,-6294,-7772,-1982,-280,-11329,-11330,-11331,-742,-8880,-11332,-11333,-11334,-11335,-11336], +[0,-664,-1127,-1344,-1654,-2210,-10645,-1405,-4204,-5673,-3035,-3037,-3738,-1162,-1534,-4248,-11337,-11338,-4372,-3041, +-11339,-3044,-11340,-3199,-11341,-11342,-11343,-3735,-3714,-6114,-11344,-11345,-665,-1138,-2234,-1134,-1149,-11346, +-11347,-4269,-11348,-3202,-11349,-740], +[0,-1702,-2410,-3214], +[1,3,6251], +[0,6252,6253,6254,6], +[0,-11350,-11351,-11352,-865,-1339,-11353,-1672,-1857,-2071,-7967,-11354,-10899,-2424,-2446,-11355], +[0,-350,-4062,-351,-9705,-3037,-427,-11356,-767,-932,-9106,-958,-965,-968,-1168,-1222,-11357,-1412,-1413,-7148,-1705, +-1788,-11358,-1972,-2125,-2127,-2210,-2234,-2250,-2379,-6416,-2410,-11359,-2501,-7752], +[0,-11360,-11361,-7281,-11362,-11363,-3579,-11364,-11365,-11366,-11367,-11368,-11369,-11370,-11371,-11372,-11373,-11374, +-11375,-11376,-11377,-11378,-11379,-11380,-11381,-11382,-11383,-11384,-11385,-11386], +[1,3,6256], +[0,6257,6258,6259,9], +[0,-1371,-510,-2550,-11387], +[0,-1788,-2471,-932,-756,-11388,-2091,-4646], +[0,-3870,-11389,-11390], +[1,3,6261], +[0,0,6262,6263,5], +[0,-1654,-2125,-8986], +[0,-687,-6351], +[1,3,6265], +[0,0,6266,6267,5], +[0,-3037,-3040,-427,-428,-749,-932,-940,-967,-969,-970,-1380,-1942,-2387,-2410], +[0,-11391,-3486,-2006,-3994,-11392,-11393,-5069,-3445], +[1,3,6269], +[0,6270,6271,6272,4], +[0,-510,-1650,-2424,-1545,-11394], +[0,-664,-1654,-2210,-2105,-719,-11395], +[0,-7685,-11222,-10712], +[1,3,6274], +[0,6275,6276,6277,5], +[0,-1351,-2165], +[0,-1464,-7623,-1654,-1976,-1980,-2198,-2210,-2536], +[0,-1334,-1342,-5493,-2105,-3323,-6463,-7764,-1971,-6827,-7430,-9791,-9788,-743,-8937], +[1,3,6279], +[0,6280,0,6281,5], +[0,-11396,-11397,-719,-755,-1376], +[0,-687,-5406,-9668,-3957,-3958,-11398,-11313], +[1,3,6283], +[0,6284,6285,6286,8], +[0,-11399,-510,-11400,-5676,-695,-714,-719,-790,-1044,-11401,-1548,-1650,-11402,-11403,-11404,-11405,-1951,-2177,-11406, +-2524,-2538], +[0,-11407,-664,-829,-11408,-7829,-932,-960,-7819,-964,-972,-1442,-1654,-1722,-1788,-11409,-2070,-2188,-2195,-2210,-2536], +[0,-1710,-11410,-3690,-3634,-6657,-11411,-3691], +[1,3,6288], +[0,6289,6290,6291,4], +[0,-11412,-7603,-7604,-11413,-5038,-5777,-5775,-5791,-5779,-5778,-5780,-5782,-11414,-725,-1343,-11415,-11273,-1459,-11416, +-2062,-11417,-2177,-2522], +[0,-3698,-11418,-11419,-11420,-11421,-11422,-305,-11423,-11424,-11425,-469,-510,-521,-2917,-652,-5980,-719,-741,-6906, +-5983,-932,-960,-11426,-1107,-1116,-1344,-1446,-1534,-1547,-1722,-1969,-1972,-2125,-11427,-2210,-2291], +[0,-5805,-6187,-11230,-6032,-11428,-11429], +[1,3,6293], +[0,6294,6295,6296,5], +[0,-44,-11430,-743,-5193,-1791,-11431,-1940,-10105,-2446], +[0,-3168,-21,-23,-6064,-38,-40,-41,-42,-11432,-367,-7043,-406,-407,-409,-2622,-410,-3136,-3037,-11433,-11434,-3040,-3052, +-518,-11435,-11436,-726,-784,-1415,-1419,-1428,-1683,-2634,-1889,-1891,-1916,-2006,-2019,-2516], +[0,-2006,-3967,-1791,-3175,-11437,-3173,-1713,-7204,-3177,-11438], +[1,3,6298], +[0,0,0,6299,5], +[0,-2634,-510,-11439,-11440], +[1,3,6301], +[0,0,0,6302,10], +[0,-475,-4004,-3634,-4215,-4041,-3095,-8223,-11441,-11442,-5196,-11443,-11444,-3100,-3577,-1415,-1412,-915,-8611,-6137], +[1,3,6304], +[0,6305,0,6306,4], +[0,-5,-11445,-3946,-807,-2387], +[0,-3158,-3099,-475,-3160,-3161,-3100], +[1,3,6308], +[0,6309,6310,6311,4], +[0,-1116,-2446,-2548,-7004,-1018,-1552], +[0,-664,-668,-1654,-2210,-3037], +[0,-1716,-11446,-11447,-1546,-11448], +[1,3,6313], +[0,0,6314,7,10], +[0,-664,-729,-1654,-1974,-2187,-2286], +[1,3,6316], +[0,6317,6318,6319,6], +[0,-812,-11449,-10659,-891,-11450,-11451,-1451,-11452,-1650,-6810,-1801,-2125,-11453,-2240], +[0,-510,-579,-11178,-615,-664,-665,-932,-940,-967,-1004,-1344,-1654,-11454,-1685,-1880,-1942,-2187,-2239], +[0,-1718,-891], +[1,3,6321], +[0,6322,6323,6324,6], +[0,-11455,-11456,-11457,-3035,-11458,-6192,-5113,-6535,-623,-11459,-668,-680,-695,-11460,-11461,-865,-888,-914,-1107, +-1449,-1548,-1645,-1646,-1654,-11462,-1805,-1816,-8563,-2173,-2177,-11463,-2269,-2430,-2446], +[0,-99,-367,-3037,-427,-428,-749,-767,-932,-1344,-1392,-1442,-1534,-1656,-3038,-11464,-11465,-1663,-1722,-1788,-2006, +-2019,-2125,-2184,-2379,-2384,-2648], +[0,-1719,-11466,-11467,-3634,-11468,-2734,-4867,-11469,-4866,-3095,-4868,-4004,-4865,-3162,-4043,-5769,-793,-1654,-4864], +[1,3,6326], +[0,6327,6328,6329,8], +[0,-4884,-357,-11470,-7755,-1851], +[0,-4888,-11471,-633,-1344,-1449,-11472,-1534,-1654,-11473,-1788,-1942,-1972,-11474,-11475], +[0,-4004,-3634,-8959,-4215,-2533,-3844], +[1,3,6331], +[0,6332,6333,7,4], +[0,-11476,-269,-1459], +[0,-1116,-1788,-664,-1415,-1654,-2210,-932,-2125,-1942,-1069,-838,-1972,-2211,-2410,-1771,-6522,-2174,-966,-964,-357,-958, +-968,-940,-943,-3775], +[1,3,6335], +[0,0,6336,6337,11], +[0,-589,-596,-11477,-932,-1077,-2884,-1939,-2177], +[0,-11478,-11479,-6249,-5269,-596,-6251,-6252,-1696,-1723], +[1,3,6339], +[0,6340,6341,6342,4], +[0,-702], +[0,-1788,-1127,-1654,-2198,-756,-1132,-7845,-2410,-3037,-7887,-710,-11480,-9280,-1134,-1149,-11481,-11482], +[0,-3324,-6491,-8427,-3833,-6809,-10412,-11483,-3966,-1622,-7208], +[1,3,6344], +[0,0,6345,6346,4], +[0,-3037,-11484,-1077,-1344,-1654,-1788,-2125,-2410,-11485], +[0,-3966,-11486,-5574,-7534,-11487,-7371,-6974,-6582,-5847,-11488,-856], +[1,3,6348], +[0,6349,6350,6351,6], +[0,-808,-11489,-11490,-1097,-1646,-1737,-2114,-2177], +[0,-3037,-932,-958,-1344,-1534,-1942,-2319,-11491,-2363,-2379,-2410], +[0,-9427,-11492,-2295,-1673,-2490], +[1,3,6353], +[0,124,70,6354,11], +[0,-1727,-7421,-11070,-11493,-6656,-6235,-7547,-1076], +[1,3,6356], +[0,6357,6358,6359,4], +[0,-9154,-11494,-11495,-11496], +[0,-4646,-367,-3330,-427,-428,-3664,-7351,-774,-932,-7352,-954,-960,-961,-963,-965,-7353,-7354,-971,-979,-7355,-1344, +-7356,-1498,-1534,-1608,-1609,-1768,-7357,-1942,-7358,-1945,-2091,-11497,-7359,-2391,-2410,-2469,-7360], +[0,-10838,-5493,-10841,-10840,-11498,-11499,-11500,-11501,-11502,-11503], +[1,3,6361], +[0,6362,6363,6364,4], +[0,-7026,-11504,-8966], +[0,-458,-5993,-649,-652,-664,-665,-11505,-9077,-756,-1069,-5989,-1654,-1828,-11506,-2384,-2541], +[0,-4213,-1334,-1961,-2105,-9172,-9173,-2533,-5388], +[1,3,6366], +[0,0,6367,6368,6], +[0,-633,-719,-767,-932,-11507,-1004,-1471,-1472,-1475,-1478,-1479,-1480,-1482,-1483,-1487,-1488,-1490,-11508,-1492,-1654, +-1657,-11509,-1788,-6696,-2501,-2503,-11510], +[0,-11511,-11512,-11513,-11514,-770,-5374,-11515,-11516,-11517,-11518,-1334,-1342,-1616,-5150,-11519,-11520,-11521,-11522, +-11523,-2191,-11524,-11525,-11526,-8905,-11527,-11528,-11529], +[1,3,6370], +[0,6371,6372,6373,9], +[0,-523,-812,-1548], +[0,-664,-1654,-1972,-2210], +[0,-3939,-5801,-5737,-5741,-5271,-11530,-11517,-11531,-1050,-5270,-491,-11532], +[1,3,6375], +[0,6376,6377,6378,9], +[0,-615,-1729], +[0,-664,-932,-1415,-2210], +[0,-11533,-11534,-11535,-3939,-11536,-11537,-11538,-11539,-11540], +[1,3,6380], +[0,6381,6382,6383,4], +[0,-5672,-11541,-1119,-10521,-1758,-1957,-2177,-2323,-2654,-2518], +[0,-596,-767,-932,-1654,-1696,-2884,-11542], +[0,-5269,-6249,-3551,-6251,-6252,-596,-6250], +[1,3,6385], +[0,6386,6387,6388,5], +[0,-780,-1297], +[0,-7177,-674,-767,-932,-11543,-1317,-11544,-11545,-11546,-6595,-11547,-1333,-11548,-11549,-1839,-2125,-10301,-2251,-2379, +-2552], +[0,-3264,-3215,-3967,-2410], +[1,3,6390], +[0,6391,6392,6393,5], +[0,-510,-11550,-812,-1004,-1107,-1850,-2001,-2177,-2185,-11551,-11552,-11553,-2518,-2531,-2550], +[0,-664,-1077,-1380,-1452,-1654,-1764,-1961,-2125], +[0,-812,-7336,-6480,-6479], +[1,3,6395], +[0,6396,6397,6398,11], +[0,-459,-736,-828,-1072,-8438,-1636,-1640,-1840,-1997,-2401], +[0,-3035,-3621,-427,-428,-664,-932,-934,-940,-958,-1344,-1654,-1788,-1942,-2210,-2211,-2379,-2384,-2410], +[0,-4215,-8611,-10327,-3967,-3756,-3634,-4004,-1334,-11554], +[1,3,6400], +[0,6401,6402,6403,10], +[0,-11555,-1401,-2177,-11556,-2446,-2518], +[0,-749,-767,-932,-942,-943,-958,-966,-968,-1344,-1415,-1534,-11557,-1942,-2125], +[0,-11558,-11559,-9258,-11560,-9262,-6721,-11561,-11562,-4127], +[1,3,6405], +[0,6406,6407,6408,5], +[0,-579], +[0,-617,-1004,-1654,-2198,-2293], +[0,-1791,-11437], +[1,3,6410], +[0,89,56,57,8], +[1,3,6412], +[0,6413,6414,6415,8], +[0,-8612,-1650,-1708,-1758,-1769,-1778,-2001,-2125,-2177,-2323], +[0,-521,-1452,-1722,-2322], +[0,-5269,-6249,-3551,-6251,-6252,-596,-7304], +[1,3,6417], +[0,6418,6419,6420,4], +[0,-1723], +[0,-1654,-932,-11563,-1733,-767,-2410,-3037,-3621,-428,-427], +[0,-11564,-3975,-3974,-11565,-11566,-11567], +[1,3,6422], +[0,6423,0,6424,8], +[0,-11568,-11569,-11570,-11571,-579,-583,-754,-1004,-1077,-11572,-1758,-2177], +[0,-3496,-11532,-11573,-5411], +[1,3,6426], +[0,6427,6428,6429,10], +[0,-1696,-1088,-1107,-1630,-668,-1548,-1733,-1099,-11574,-769,-11575,-11576,-11577,-10521], +[0,-1788,-1654,-932,-2125,-1077,-11578], +[0,-775,-9264,-3277,-2162,-3754,-5553], +[1,3,6431], +[0,6432,6433,6434,4], +[0,-5414,-11579,-11580], +[0,-1788,-2322,-2210,-468,-932], +[0,-7046,-4107,-5418,-763,-11581,-10950], +[1,3,6436], +[0,6437,0,6438,4], +[0,-1813,-714,-1640], +[0,-1334,-5142,-6656,-3844], +[1,3,6440], +[0,0,6441,6442,5], +[0,-1788], +[0,-7230,-11582,-2446], +[1,3,6444], +[0,0,6445,6446,10], +[0,-1077,-1654], +[0,-11583,-2490,-11584], +[1,3,6448], +[0,6449,0,6450,8], +[0,-6597,-2550], +[0,-11585,-7084,-5196,-11586,-5545,-5389,-11587,-11588,-11589,-4107], +[1,3,6452], +[0,6453,6454,6455,4], +[0,-2534], +[0,-11590,-11591,-3037,-932,-1942,-1944,-2391,-2410,-3924,-2469], +[0,-11592,-3215,-4258,-2534,-11593], +[1,3,6457], +[0,6458,6459,6460,11], +[0,-1285,-1391], +[0,-5834,-515,-932,-1365,-7393,-1777,-1788,-1797,-2156,-2322], +[0,-1015,-11594,-11595,-702,-6351,-11596], +[1,3,6462], +[0,6463,6464,6465,5], +[0,-1116,-1696,-1460,-1993,-1548,-2324,-1077,-1733,-1740], +[0,-2487,-1654,-1452,-521,-674,-11597,-1405,-526,-756,-1440,-11598,-7382,-559], +[0,-11599,-11600,-5889,-5269], +[1,3,6467], +[0,0,6468,6469,6], +[0,-11601,-648,-652,-932,-940,-1110,-11602,-11603,-11604,-11605,-1942,-1971,-11606,-7932], +[0,-11607], +[1,3,6471], +[0,6472,6473,6474,5], +[0,-679,-812,-5911,-1645,-11608,-2177,-7741,-2297,-2363,-11609], +[0,-86,-3307,-510,-710,-932,-1344,-1654,-1788,-1972,-2174,-2198], +[0,-687,-1673,-1673,-3113,-9427,-11610,-11492,-3974], +[1,3,6476], +[0,6477,0,7,5], +[0,-888,-2319], +[1,3,6479], +[0,6480,6481,6482,4], +[0,-2125,-867,-11611,-2550,-2177], +[0,-2105,-2322], +[0,-11612,-11613,-7856,-11321,-9668], +[1,3,6484], +[0,6485,0,6486,5], +[0,-7603,-469,-470,-8547,-5329,-473,-11614,-523,-617,-679,-744,-754,-792,-1004,-4206,-11615,-11616,-1107,-1299,-11617, +-11618,-1460,-11619,-1465,-11620,-1581,-5460,-11621,-1671,-1680,-1707,-7045,-11622,-1752,-1805,-1857,-11623,-2071,-11492, +-2107,-11624,-11625,-2520,-3730,-2548,-2550], +[0,-11626,-1756,-3214,-3967,-3161,-3445,-3100,-5407,-11627,-11628,-11629,-11630,-4055,-11631,-4058,-1460,-2548,-3994, +-11632], +[1,3,6488], +[0,6489,83,6490,4], +[0,-2424,-668], +[0,-7303,-11633,-4376,-6792,-3215], +[1,3,6492], +[0,6493,29,7,5], +[0,-9632], +[1,3,6495], +[0,0,6496,6497,8], +[0,-1202,-1646,-1654], +[0,-11634,-11635,-11636,-6656,-11637,-7693,-7839,-11638,-11639,-1076,-6811,-1847,-9358,-6517,-2218,-11640,-11641,-11642, +-11643], +[1,3,6499], +[0,0,14,6500,4], +[0,-6811,-2435,-9171,-6558,-2265,-11644,-11645,-5101,-1985,-11646,-6817,-11647,-11648], +[1,3,6502], +[0,0,0,6503,5], +[0,-11649,-11644,-4865], +[1,3,6505], +[0,6506,6507,6508,4], +[0,-668,-6793,-700,-755,-824,-2762,-930,-999,-11650,-11651,-1315,-6770,-1363,-1376,-1394,-11652,-11653,-11654,-1535, +-11655,-1574,-1630,-11656,-11657,-9050,-1805,-11658,-10270,-1849,-3609,-2060,-2153,-2177,-5746,-3669,-2433], +[0,-9154,-3199,-519,-722,-9982,-1077,-11659,-2210,-2269,-2331,-11660,-2541], +[0,-5732,-687,-1764,-8403,-5889,-5737,-9318,-6453,-5890], +[1,3,6510], +[0,6511,6512,6513,4], +[0,-1681,-1371,-2323,-1107,-1758,-2059,-2247,-11661,-668,-1826,-2518,-9632,-1831,-2177,-4287,-680,-11662,-9084,-1733, +-1957,-11663,-1645,-4296,-4279,-1527,-1528,-1529,-11664,-11665,-2343,-11666,-1119,-11667,-10513,-11668,-11669,-10517, +-11670,-11671,-4285,-2297,-1315,-1767,-1982,-280,-11672,-10520,-10521,-11673,-4291,-11674,-283,-4290,-1770,-11675,-11676, +-4292,-4283,-4306,-8266,-281,-2450,-4281, +-4278,-11677], +[0,-469,-2319,-834,-1722,-4307,-2093,-2125,-695,-2095,-11678,-470,-11679,-1769,-4655,-11680,-11681,-4300,-4298,-4299, +-11682], +[0,-1380,-3209,-11683,-10484], +[1,3,6515], +[0,6516,6517,6518,4], +[0,-705,-1816,-1630,-668,-999,-1392,-2546,-11684,-1111,-1548,-2177,-11685,-1871,-827,-1376,-1645,-1728,-2269,-2343,-1849, +-11686,-5895,-11687,-6197,-11688,-2433,-11689], +[0,-2541,-526,-567,-559,-555,-551], +[0,-1764,-11690,-3015,-7441,-5887,-7440,-11691,-3690,-9845,-687,-9594,-11692,-11693,-7856,-3016], +[1,3,6520], +[0,0,6521,6522,4], +[0,-11694,-7057,-3035,-4269,-11695,-11696,-5361,-11697,-3660,-11698,-3044,-3621,-3037,-11699,-11700,-8523,-3624,-3735, +-3199,-11701,-4372,-11702,-427,-428,-656,-664,-665,-9077,-668,-695,-719,-767,-8609,-932,-940,-11703,-943,-958,-960,-965, +-968,-1026,-10960,-1047,-11704,-1315,-1371,-1442,-1461,-11705,-1547,-1548,-1609,-1654,-1770,-1771,-1826,-5883,-1864, +-1942,-1959,-11706,-11689, +-2124,-2125,-5405,-2177,-11707,-2198,-2210,-2234,-7744,-2269,-2379,-2410,-11708,-2430,-2433,-11709,-2466,-11710,-11711, +-6859,-2552], +[0,-3015,-1764,-10484,-10674,-11712,-11713], +[1,3,6524], +[0,6525,29,7,5], +[0,-1315,-1957,-2177,-2450], +[1,3,6527], +[0,6528,6529,6530,6], +[0,-469,-3907,-668,-755,-812,-1111,-1353,-1395,-1461,-1574,-1630,-1877,-2177,-2218,-2271,-2400,-2450], +[0,-3136,-3037,-427,-428,-928,-11714,-932,-11715,-11716,-954,-958,-959,-967,-978,-1040,-1415,-7357,-11717,-1942,-2375, +-2410], +[0,-7148,-8170,-10484,-5879,-11718,-1768], +[1,3,6532], +[0,6533,6534,7,8], +[0,-6770,-1957], +[0,-280,-4298,-4300,-11719,-2319], +[1,3,6536], +[0,6537,6538,6539,10], +[0,-4285,-10335,-10521,-9084,-11720,-11721,-1767,-1957], +[0,-4298,-4300,-4287,-1722,-11542,-2247,-2319], +[0,-1764,-11722,-4213], +[1,3,6541], +[0,6542,6543,233,4], +[0,-668,-11084,-2060,-1645,-482,-769,-2194,-1627,-11723], +[0,-1788,-2552,-1654,-932,-2125,-708,-1827,-1077,-3037,-1938,-566,-11724,-6018,-545], +[1,3,6545], +[0,6546,6547,233,11], +[0,-2518,-11084,-1864,-482,-769,-2194,-1627,-11728], +[0,-652,-1498,-2552,-1446,-1654,-932,-9774,-2884,-516,-3781], +[1,3,6549], +[0,6550,14,6551,5], +[0,-7087,-8803], +[0,-1764,-11727,-1847,-5897,-8425,-7304,-8426,-11729,-687,-3958,-7096,-7237], +[1,3,6553], +[0,0,6554,6555,5], +[0,-3136,-3037,-427,-428,-3267,-932,-940,-1415,-1534,-10652,-2125,-2127,-2375,-2410], +[0,-11730,-856,-11731], +[1,3,6557], +[0,6558,6559,6560,4], +[0,-668,-691,-719,-812,-1376,-1965], +[0,-664,-1654,-1663,-2250], +[0,-7865,-1764,-11732], +[1,3,6562], +[0,6563,6564,6565,6], +[0,-1376,-1993], +[0,-526,-541,-551,-11733,-566,-1771], +[0,-1764,-687,-7095,-3957,-9408,-4043,-9845,-1776,-11734], +[1,3,6567], +[0,6568,6569,6570,6], +[0,-1285,-1646], +[0,-5834,-516,-5835,-932,-1365,-1431,-1788,-2156,-2322], +[0,-1777,-9100], +[1,3,6572], +[0,6573,6574,7,6], +[0,-4700,-10515,-11735,-4716], +[0,-2319,-4300,-4298], +[1,3,6576], +[0,0,6577,7,4], +[0,-664,-1437,-1449,-1654,-11736], +[1,3,6579], +[0,6580,6581,6582,4], +[0,-668,-694,-11737,-1343,-1376,-11738,-2177,-9564,-2550], +[0,-619,-707,-8326,-1277,-1510,-1658], +[0,-7107,-1780,-8327], +[1,3,6584], +[0,6585,6586,6587,5], +[0,-11739], +[0,-3136,-3037,-427,-428,-749,-932,-940,-967,-1344,-1415,-1942,-1952,-2125,-2375,-2379,-2410], +[0,-1781,-11740,-687,-3578,-3871,-7864,-2006,-3966,-2410,-3214,-2501,-1415,-3100,-3445,-5407], +[1,3,6589], +[0,0,6590,6591,6], +[0,-664,-1138,-1146,-1155,-1156,-9545,-1471,-1474,-1475,-1479,-1482,-1483,-1488,-1542,-1654], +[0,-1782,-6240,-3276,-4123,-11741,-11742], +[1,3,6593], +[0,6594,6595,6596,5], +[0,-11743,-11744,-719], +[0,-21,-23,-40,-43,-534,-539,-541,-729,-753,-767,-932,-934,-958,-1004,-1077,-1098,-11745,-11746,-11747,-11748,-1788,-1860, +-2187,-2416,-2417,-2501], +[0,-3110,-7651], +[1,3,6598], +[0,0,0,6599,5], +[0,-8427,-3966], +[1,3,6601], +[0,0,6602,6603,10], +[0,-2832,-5834,-8084,-8096,-516,-652,-5835,-932,-1431,-1365,-1777,-2156,-2322], +[0,-1784,-1785,-5874], +[1,3,6605], +[0,0,0,6606,10], +[0,-775,-5180,-11749,-5912,-3585], +[1,3,6608], +[0,6609,0,6610,4], +[0,-888,-1816,-2359,-1055,-1805,-2548,-523,-701,-2387,-2550,-865,-1353,-2177,-1040,-910,-1418,-1645,-2369,-690,-1863, +-2325,-692,-1075,-1461,-1773,-2267,-2551,-866,-2383,-11750,-11751,-11752,-4341,-10789,-11753,-11754], +[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340,-4347,-4343,-4344,-11755], +[1,3,6612], +[0,6613,6614,6615,4], +[0,-6028,-4003,-11756,-742,-813,-1046,-1047,-6475,-1097,-1107,-5086,-11757,-6029,-11758,-5087,-5088,-5089,-1591,-11759, +-1826,-11760,-2115,-2125,-2202,-11761,-6030,-2550], +[0,-11762,-5607,-2111,-2234,-2250,-2251,-2319,-2446,-2518], +[0,-4005,-6863,-8422,-3634], +[1,3,6617], +[0,6618,6619,6620,5], +[0,-11763,-4049,-3424,-11619,-10873,-5969,-5263,-1851,-11764], +[0,-11765,-11766,-11767,-3037,-2391,-2410,-2469], +[0,-3690,-11768,-3438,-11769,-11770,-11771,-11772,-11773,-1789,-489,-11148,-856], +[1,3,6622], +[0,6623,6624,6625,4], +[0,-11763,-11774,-1442,-5263,-3792], +[0,-11765,-3660,-11775,-1722,-2391,-2410,-2469], +[0,-3690,-489,-11768,-856,-11148,-11773,-1789,-3438,-11772,-11769,-11771,-11770,-11410,-4847], +[1,3,6627], +[0,0,84,7,8], +[1,3,6629], +[0,0,6630,6631,5], +[0,-2541,-519,-1548,-1612], +[0,-7208,-7370,-1015,-3589,-4795,-3217,-3207,-6989,-11776,-3582,-5396,-4865], +[1,3,6633], +[0,0,6634,6635,4], +[0,-633,-1168,-1177,-11117,-11777,-1220,-1224,-1231,-1243,-1244,-1262,-1452,-1453,-1471,-1475,-1482,-1654], +[0,-7208,-6131,-2191,-1616], +[1,3,6637], +[0,0,6638,6639,6], +[0,-5834,-11778,-516,-753,-11779,-921,-932,-1065,-1083,-1107,-11780,-1283,-11781,-1365,-1408,-8082,-1659,-1777,-1788, +-2156,-9786,-2177,-8310,-2322], +[0,-4676,-11782,-7208,-6231,-3240], +[1,3,6641], +[0,0,6642,6643,4], +[0,-5834,-8487,-932,-6283,-11783,-1391,-2322], +[0,-11784,-7373,-6947,-5396], +[1,3,6645], +[0,0,6646,6647,8], +[0,-1788,-664,-1654,-756,-1657,-11785], +[0,-6545,-1847,-11786,-11787,-9052,-7153,-864,-7375,-7208,-7369,-11788,-11789,-5846,-8893,-7372], +[1,3,6649], +[0,6650,6651,6652,6], +[0,-655,-6511,-5830,-11790,-1283,-1795], +[0,-5833,-5834,-633,-932,-1065,-1083,-5836,-1285,-1659,-1777,-1788,-2156,-5942,-2322], +[0,-11791,-7370,-6948,-1015,-11792,-11594,-11793,-11794,-5843,-3582,-5396], +[1,3,6654], +[0,6655,6656,6657,6], +[0,-655,-6511,-5830,-11790], +[0,-5833,-5834,-8569,-516,-5835,-932,-1083,-5836,-1365,-1777,-1788,-2156,-2322], +[0,-11795,-11796,-11784,-11797,-7374,-6949,-11798,-6952,-5396,-7208,-7373,-3582,-5843], +[1,3,6659], +[0,6660,6661,7,9], +[0,-11799], +[0,-1788,-1654,-932,-966,-958,-968,-943,-963,-974], +[1,3,6663], +[0,6664,71,6665,4], +[0,-11800], +[0,-1801,-5924,-6812,-6814], +[1,3,6667], +[0,6668,6669,6670,4], +[0,-11801,-11802,-502,-679,-769,-1353,-2369], +[0,-7080,-3037,-1344,-1534,-1942,-2125,-2410], +[0,-1107,-2490,-5888], +[1,3,6672], +[0,6673,6674,6675,5], +[0,-11803,-1553], +[0,-3621,-11804,-708,-1452,-1654,-1658,-1660,-1788,-2379,-2410], +[0,-11805,-11573,-11806,-11807,-11808,-10226,-11809,-11810,-11811,-9261], +[1,3,6677], +[0,6678,115,234,5], +[0,-11812,-11813,-11814,-9981,-6756,-11815], +[1,3,6680], +[0,6681,6682,6683,5], +[0,-1043,-1099,-1630,-1805,-2331], +[0,-519,-999,-2541], +[0,-5732,-687,-3994,-1805,-1810,-11816,-11817,-11818,-11819,-11820,-11821,-7095,-4865,-3496,-7237,-7863,-2435,-11822, +-7303,-7091,-8421,-6599,-1958,-3258,-6656], +[1,3,6685], +[0,6686,6687,6688,6], +[0,-11823,-11824,-5263], +[0,-3136,-3660,-4049,-523,-11825,-1415,-1456,-11826,-1683,-1942,-2234,-2375,-2379,-2410], +[0,-3438,-4847,-3323,-523,-3100,-4865,-4215,-2410], +[1,3,6690], +[0,6691,6692,6693,5], +[0,-813,-1326,-1459,-1600,-1967,-2006,-2019,-2451], +[0,-32,-204,-526,-552,-9968,-756,-932,-933,-934,-958,-962,-968,-969,-1108,-1320,-1415,-1753,-1771,-2105,-2106,-5331], +[0,-4847,-3438,-11827,-3264,-856,-3262], +[1,3,6695], +[0,6696,6697,6698,11], +[0,-6280,-1696], +[0,-1107,-2105,-2322], +[0,-1809,-11828,-9565,-11829], +[1,3,6700], +[0,0,38,7,6], +[1,3,6702], +[0,6703,6704,7,8], +[0,-11830,-2105], +[0,-526,-559,-932,-933,-958,-962,-969], +[1,3,6706], +[0,6707,55,234,9], +[0,-1401], +[1,3,6709], +[0,6710,6711,235,4], +[0,-2525,-1646], +[0,-11831,-2319], +[1,3,6713], +[0,6714,6715,6716,8], +[0,-784,-11832,-1889], +[0,-527,-533,-551,-556,-558,-778,-1415,-2275,-2501], +[0,-7198,-10435,-1017,-7173,-7175,-6694,-2501], +[1,3,6718], +[0,6719,6720,6721,11], +[0,-11833,-11834,-2524,-8437,-11835,-10579], +[0,-11836,-1654], +[0,-6792,-5272,-11837,-687], +[1,3,6723], +[0,6724,6725,6726,8], +[0,-668,-690,-692,-11652,-6861,-1574,-11838,-2267], +[0,-3037,-519,-1100,-11839,-2384,-2541], +[0,-687,-6716,-6717,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], +[1,3,6728], +[0,6729,6730,6731,10], +[0,-908,-11840,-11841], +[0,-994,-1262,-1452,-1597,-1632,-1654,-1980,-2198,-2462], +[0,-510,-4107,-5921,-10462], +[1,3,6733], +[0,6734,6735,6736,11], +[0,-510,-615,-7840,-10358,-1548,-1850,-11842,-11843], +[0,-652,-668,-1107,-1654,-1671,-1691,-1857,-2177,-2198,-2210,-2245], +[0,-1818,-11221,-7685,-1691,-10425,-11844,-3742,-1671], +[1,3,6738], +[0,0,0,6739,4], +[0,-3966,-1819,-3103,-3551], +[1,3,6741], +[0,6742,71,6743,6], +[0,-8383,-10383], +[0,-5558,-3833,-11845,-11846,-1847,-1965,-11847], +[1,3,6745], +[0,0,6746,6747,4], +[0,-3035,-3048,-3621,-3037,-3046,-10755,-664,-999,-1077,-1654,-1763,-2379,-2501,-2518], +[0,-3184,-4795,-11848,-11849,-7728,-2265,-3110,-6806], +[1,3,6749], +[0,0,0,6750,5], +[0,-1823,-3586,-11850,-11851,-11852,-11853,-3100,-4865], +[1,3,6752], +[0,6753,6754,6755,5], +[0,-11854,-719,-1063,-1392,-1526,-2177,-2359,-11855], +[0,-3244,-190,-3748,-4200,-11856,-3037,-3199,-3628,-11857,-427,-428,-932,-11858,-2125,-2410], +[0,-687,-11859,-8109,-8403], +[1,3,6757], +[0,6758,6759,6760,5], +[0,-1828], +[0,-3037,-519,-826,-2384,-2541], +[0,-1961,-997,-5389,-6820,-8397,-10670,-6821,-8401,-6822,-8124,-11860,-11861,-4116,-11862,-8402,-4865,-5092,-510,-5867, +-5923,-615], +[1,3,6762], +[0,0,6763,6764,5], +[0,-519,-668,-826,-7426,-7424,-7427,-2384,-2541], +[0,-1961,-6917,-11863,-4116,-7558,-9029,-9027,-11864,-11865,-510,-5867,-5923,-726,-11866,-5921,-615], +[1,3,6766], +[0,6767,6768,6769,4], +[0,-996,-1828], +[0,-5918,-3268,-3037,-589,-825,-826,-7426,-7963,-7424,-7427,-2384,-2392,-2410,-2541], +[0,-1961,-1986,-11450,-6729,-7331,-11866,-7329,-11685,-7333,-7334,-11867,-11038,-11033,-11868,-5418,-4107,-510,-5867, +-5923,-615], +[1,3,6771], +[0,0,6772,6773,11], +[0,-519,-826,-7426,-9161,-2210,-7427,-2384,-2541], +[0,-1961,-7430,-6324,-11869,-510,-5867,-5923,-4123,-11870,-5391,-615], +[1,3,6775], +[0,6776,6777,6778,4], +[0,-1107], +[0,-1415,-1942,-4701], +[0,-856,-2299,-11871,-11872], +[1,3,6780], +[0,6781,6782,6783,5], +[0,-11873,-522,-594,-719,-914,-1496,-1689,-1750,-1978,-2177], +[0,-652,-932,-11874,-1654,-11875,-4654,-2210], +[0,-4665,-4666,-10432,-11876,-5879,-4864,-5986,-522,-7144,-687,-11877,-11878,-11879,-10770,-1830,-1978,-9246,-11880,-3634, +-2451,-11881], +[1,3,6785], +[0,6786,6787,6788,4], +[0,-11678,-4280,-4283,-4306,-283,-4287,-11666,-9084,-1767,-1769,-4291,-1770,-1957,-10592,-11882,-2247,-2323], +[0,-280,-4298,-4300,-1315,-11719,-1722,-11883,-2125,-2319], +[0,-7442,-1764,-5889], +[1,3,6790], +[0,6791,6792,6793,8], +[0,-9491,-9492,-11884,-807,-7731,-11885,-1548,-1574,-1591,-1826,-1877,-2400,-11886], +[0,-5918,-5033,-3044,-3037,-11887,-743,-825,-1043,-1098,-9810,-1849,-11888,-2392,-2410,-2541], +[0,-11889,-3258,-9204,-3578,-2435,-9804,-8799,-9711,-11890,-11891,-5566,-4045,-9552,-3576,-7419,-1978,-10366,-6527,-3839, +-7650,-3264,-11878,-9712,-8633,-8634,-7715,-8640,-9235], +[1,3,6795], +[0,0,6796,6797,4], +[0,-3037,-3664,-6593,-7653,-7654,-932,-958,-960,-1449,-2410,-2466,-2469], +[0,-3100,-3445,-3261,-3098,-3160,-6107,-9975,-9612,-11074], +[1,3,6799], +[0,0,6800,6801,11], +[0,-40,-3326,-350,-351,-932,-1103,-1654,-1687,-10835,-1788,-2127,-2140,-2195], +[0,-9506,-6827,-10350,-6826], +[1,3,6803], +[0,6804,38,6805,6], +[0,-11064,-668,-6842,-1000,-1039,-1099,-1111,-1333,-1465,-1630,-1641,-1836,-2114,-11892,-2433,-2551], +[0,-11893,-3445,-687,-10810,-3690], +[1,3,6807], +[0,6808,6809,6810,5], +[0,-11197,-1582,-2291], +[0,-190,-865,-932,-940,-958,-965,-967,-968,-1110,-1548,-1654,-1942,-2340,-2892,-2410], +[0,-11893,-3323,-4725,-11894,-3844,-3445,-3690,-3691,-4055], +[1,3,6812], +[0,0,6813,6814,6], +[0,-615,-664,-710,-1654], +[0,-5921,-5550], +[1,3,6816], +[0,6817,6818,6819,9], +[0,-44,-3345,-772,-11895,-11896,-2531], +[0,-23,-26,-38,-40,-41,-42,-190,-3266,-11897,-3470,-7040,-3471,-3472,-7041,-7042,-11898,-533,-8580,-11899,-708,-753,-767, +-932,-8147,-960,-1004,-1168,-1174,-1268,-1412,-10034,-11900,-1415,-1419,-1446,-11901,-1534,-4375,-3156,-11220,-11902, +-1978,-2082,-2174,-2411,-2466,-11903,-10092], +[0,-5801,-3162,-3690], +[1,3,6821], +[0,6822,0,6823,5], +[0,-3223], +[0,-3264,-3215,-5177,-11904,-4681,-5922,-11905,-11906,-6595,-1839,-4142,-11907,-11908,-1838,-6233], +[1,3,6825], +[0,0,6826,7,6], +[0,-1654,-932,-1405,-589,-11909,-585,-966,-958,-968,-943,-974], +[1,3,6828], +[0,6829,6830,6831,10], +[0,-11910,-2445,-1846], +[0,-664,-1654,-1592,-1972,-666,-11911], +[0,-1004,-729,-6120,-8449,-3173], +[1,3,6833], +[0,6834,6835,6836,8], +[0,-1845], +[0,-1592,-1654,-664,-666], +[0,-1841,-4038,-6120,-8449,-3173,-9795], +[1,3,6838], +[0,6839,236,6840,4], +[0,-1846], +[0,-1841,-8427,-6120,-8449,-3173,-11912,-5110], +[1,3,6842], +[0,6843,236,237,8], +[0,-11913,-1845], +[1,3,6845], +[0,6846,6847,237,5], +[0,-11914,-1791,-1846,-10686,-2445], +[0,-1592,-1654,-664,-1972,-666], +[1,3,6849], +[0,0,114,6850,4], +[0,-1841,-6539], +[1,3,6852], +[0,6853,0,6854,5], +[0,-1958,-2444], +[0,-11153,-1847], +[1,3,6856], +[0,0,31,6857,8], +[0,-4865,-633,-1847], +[1,3,6859], +[0,0,238,6860,5], +[0,-1847,-6788,-11915,-6656,-7693,-1076,-7422,-7000,-11786,-9330], +[1,3,6862], +[0,0,118,6863,4], +[0,-1847,-9098,-6656,-11070,-11634,-11916,-11917,-6441,-2444,-5260,-3103,-6989,-3582,-5396,-1391,-6659,-7440], +[1,3,6865], +[0,0,6866,6867,8], +[0,-6918,-5295,-3037,-3199,-3664,-10880,-2214,-2410,-2469], +[0,-1004,-5570,-10470,-9843], +[1,3,6869], +[0,0,6870,7,5], +[0,-3037,-3664,-672,-928,-932,-944,-1431,-1942,-2410,-2423,-2469,-11918], +[1,3,6872], +[0,6873,6874,57,4], +[0,-1406,-1460,-7885], +[0,-1078,-1654,-1941], +[1,3,6876], +[0,6877,6878,6879,4], +[0,-11919,-11920,-1834,-2062,-9789,-2446], +[0,-3037,-640,-997,-1942,-2322,-2410], +[0,-6528,-3262], +[1,3,6881], +[0,6882,6883,6884,10], +[0,-772,-4702,-11921,-11922,-11923], +[0,-23,-3840,-40,-190,-3326,-533,-11924,-11925,-627,-633,-659,-709,-932,-1103,-1110,-1415,-1419,-4981,-1599,-11926,-1942, +-1974,-2127,-4063], +[0,-6528,-11927,-11928,-6524,-10855,-9472], +[1,3,6886], +[0,0,6887,7,4], +[0,-615,-11929,-664,-11930,-710,-1654,-1939], +[1,3,6889], +[0,6890,6891,6892,4], +[0,-10416,-11931,-11932,-11933,-11934,-11935], +[0,-11936,-11937,-510,-615,-705,-11938,-2410,-2469,-9667], +[0,-7685,-11939,-1857,-11940,-10425,-6321,-11941], +[1,3,6894], +[0,6895,6896,6897,5], +[0,-1860,-2239,-2520], +[0,-526,-527,-528,-556,-558,-559,-6089,-932,-934,-956,-958,-1059,-11942,-1415,-1417,-11943,-9913,-2125], +[0,-1858,-1859,-9879], +[1,3,6899], +[0,6900,6901,239,11], +[0,-1018,-1077,-7234,-9423,-1959,-2105,-7241,-2518], +[0,-932,-1754], +[1,3,6903], +[0,6904,6905,239,5], +[0,-925,-1018,-1077,-7234,-9423,-1959,-2105,-7241,-2518], +[0,-932,-1754,-4881], +[1,3,6907], +[0,6908,6909,6910,5], +[0,-501,-714,-728,-11944,-752,-9012,-1412,-1646,-1810,-1812,-3547,-11945,-1878,-1965,-1982,-2105,-2195,-2433], +[0,-7672,-932,-942,-943,-958,-966,-968,-974,-1405], +[0,-687,-752,-1861,-11946,-11947], +[1,3,6912], +[0,0,70,7,11], +[1,3,6914], +[0,0,0,6915,8], +[0,-3974,-714,-5538,-687,-4000], +[1,3,6917], +[0,0,6918,6919,5], +[0,-932,-10999,-1202,-1654,-1788], +[0,-1107,-5572,-1864], +[0,44,15,16,8], +[1,3,6922], +[0,0,6923,6924,9], +[0,-519,-11948,-2384,-11135,-2541], +[0,-8124,-5865,-1961,-5923,-11949,-5500,-3966,-11301,-11300,-5845,-6408,-4001,-8911,-6509,-510,-5867,-4795,-615], +[1,3,6926], +[0,6927,6928,6929,10], +[0,-11950,-11951,-11952,-11953,-8543,-11954,-11955,-7967,-11956,-11957,-11958], +[0,-2832,-11419,-11959,-3037,-468,-11960,-2917,-648,-812,-2758,-932,-958,-965,-966,-968,-999,-11961,-11962,-1362,-1415, +-1573,-1577,-11963,-2884,-11964,-1939,-1972,-1976,-2125,-2177,-2240,-11965,-2269,-2322,-2347,-2379,-2384,-2410,-2520], +[0,-5922,-3444,-5827,-4055], +[1,3,6931], +[0,0,6932,6933,4], +[0,-932,-940,-8177,-966,-967,-1344,-1415,-1942,-2331], +[0,-1764,-11966,-11967,-7646,-11968], +[1,3,6935], +[0,6936,6937,6938,5], +[0,-1880], +[0,-932,-10497,-2410], +[0,-6527,-10588,-834], +[1,3,6940], +[0,6941,6942,6943,6], +[0,-8341], +[0,-2541,-519,-2384,-2331], +[0,-5897,-4055,-5756,-1764,-11969,-5573,-8804,-1047,-5504,-8805,-8806,-6656,-7282,-5572,-2114,-8807,-6370,-7420,-7421, +-2487,-8808,-1847], +[1,3,6945], +[0,175,14,6946,5], +[0,-7861,-5897,-6656,-5573,-8804,-1047,-5504,-8805,-8806,-7282,-5572,-2114,-8807,-6370,-7420,-7421,-2487,-8808,-1847], +[1,3,6948], +[0,0,84,6949,5], +[0,-8041,-3674,-10484], +[1,3,6951], +[0,6952,0,7,5], +[0,-3982], +[1,3,6954], +[0,6955,6956,6957,11], +[0,-4733,-578,-2538], +[0,-633,-1654,-6810,-2568], +[0,-5736,-4865,-8995,-1875,-3215,-6597], +[1,3,6959], +[0,6960,6961,6962,4], +[0,-479], +[0,-932,-937,-966,-1001,-1654,-1788,-2410], +[0,-6324,-3862,-1266], +[1,3,6964], +[0,6965,14,6966,8], +[0,-11970], +[0,-9757,-11971,-1878,-9756,-11972,-10781,-2265,-11973,-11974,-11975], +[1,3,6968], +[0,0,6969,6970,9], +[0,-664,-1405,-1654,-2176], +[0,-9757,-11971,-1878,-9756,-9763,-1369], +[1,3,6972], +[0,6973,70,6974,8], +[0,-11976,-11977,-11978,-11979,-483,-510,-11980,-679,-11981,-719,-764,-809,-812,-910,-995,-11982,-1650,-1708,-11983, +-11984,-11985,-11986,-11987,-3968,-2177,-2234,-2243,-11988,-1442], +[0,-687,-8947,-8948,-3674,-1879,-11989,-1573,-4055,-1004,-1277,-11990,-11492,-11991,-11992,-11993,-11994,-11995,-11996, +-11997,-9466,-11998,-11148,-5731,-3207,-11999,-12000,-12001,-12002,-12003,-8901,-8902,-11586,-2295,-12004,-1753,-12005, +-7662,-12006,-11230,-12001,-12007,-1066,-11429,-12008,-5805,-11486,-8944,-12009,-12010,-12011,-12012,-9844,-7606,-763, +-8904,-12013], +[1,3,6976], +[0,0,6977,6978,4], +[0,-633,-641,-729,-932,-940,-1788,-1942,-1978,-2187,-12014,-2322], +[0,-12015,-6116,-6117,-12016,-12017,-3215,-7715,-11923,-12018,-1880], +[1,3,6980], +[0,6981,6982,6983,9], +[0,-2381], +[0,-909,-1415,-1421,-1425,-2231], +[0,-2501,-2552,-10054,-10055], +[1,3,6985], +[0,0,0,6986,4], +[0,-1882,-12019,-3015,-12020,-11037,-5922,-12021,-1380,-7856,-10606,-5880,-3209,-10440,-10527,-1764,-11683,-10484,-7442, +-12022,-12023,-6694,-5881,-12024,-12025,-10444], +[1,3,6988], +[0,241,6989,6990,5], +[0,-2334,-2379,-2410], +[0,-12026,-12027,-12028,-12029,-12030,-12031,-12032,-12033,-3690,-12034,-12035,-12036,-12037,-3445,-3100,-2410], +[1,3,6992], +[0,39,6993,6994,4], +[0,-21,-23,-32,-38,-39,-40,-6056,-3326,-351,-3561,-528,-533,-535,-12038,-767,-796,-856,-932,-934,-958,-1059,-11942,-1344, +-1415,-1534,-11943,-1942,-12039,-1993,-2127,-2139,-2140,-2174,-2200,-12040,-2410,-2449], +[0,-2278,-1885,-906,-12041,-3771,-12042,-2006,-5411,-2410,-12043,-12044,-12045,-712,-5535], +[1,3,6996], +[0,0,6997,6998,5], +[0,-12046,-12047,-12048,-12049,-932,-12050,-2410], +[0,-12051,-3095,-7582,-3821,-3822,-12052,-12053], +[1,3,7000], +[0,7001,7002,7003,6], +[0,-510,-812], +[0,-1415], +[0,-1334,-12054,-8113], +[1,3,7005], +[0,7006,0,7007,8], +[0,-1699,-1863,-2232], +[0,-775,-1889,-9336,-3277,-3215,-12055,-6408,-12056,-3186], +[1,3,7009], +[0,7010,7011,7012,8], +[0,-1931,-1934], +[0,-3037,-932,-940,-12057,-1889,-1942,-2410], +[0,-775,-1889,-3583,-12058,-12059], +[1,3,7014], +[0,7015,7016,7017,4], +[0,-679,-3227,-1077,-1863,-1907,-12060,-6467,-12061,-2218,-2654,-2550], +[0,-519,-652,-756,-932,-12062,-1110,-1889,-1906,-1942,-2289,-2446], +[0,-687,-1889,-9300], +[1,3,7019], +[0,7020,0,7021,6], +[0,-2953,-93,-94,-97,-12063], +[0,-712,-12064,-775,-3099,-5112,-12065,-12066,-12067,-11788,-1889,-3583,-5549,-12068,-7451,-4132], +[1,3,7023], +[0,7024,7025,7026,6], +[0,-635,-12069,-2840,-1934], +[0,-12070,-1889], +[0,-712,-714,-724,-775,-1644,-1889,-3583], +[1,3,7028], +[0,242,22,7029,9], +[0,-775,-7193,-1889,-3583], +[1,3,7031], +[0,7032,7033,7034,5], +[0,-518,-12069,-668,-12071,-12072,-1889,-12073,-12074,-1890,-12075,-12076,-12077,-12078,-12079,-12080,-12081,-12082,-1896, +-1897,-1898,-12083,-12084,-12085,-12086,-12087,-1917,-12088,-12089,-12090,-12091,-12092], +[0,-526,-527,-534,-558,-560,-565,-8161,-682,-778,-12093,-12094,-12095,-12096,-12097,-932,-12098,-949,-969,-1017,-1041, +-1304,-12099,-1442,-1455,-1600,-12100,-1633,-12101,-12102,-12103,-12104,-12105,-12106,-12107,-12108,-12109,-11748,-1762, +-12110,-1792,-1812,-12111,-1906,-1908,-12060,-7033,-1967,-2006,-2019,-12112,-2125,-2269,-2275,-2322,-12113,-2501,-2505, +-12114], +[0,-1889,-3583,-775,-5387,-12115], +[1,3,7036], +[0,7037,0,7038,5], +[0,-12116,-93,-94,-95], +[0,-12117,-12118,-775,-12119,-3586,-12120,-1889,-3583,-12121,-5101,-4681,-5387], +[1,3,7040], +[0,7041,0,7042,4], +[0,-12116,-93,-94,-12063,-1934], +[0,-775,-12119,-3586,-3587,-1889,-3583,-3589,-4681,-3591,-3592,-5387], +[1,3,7044], +[0,7045,0,7046,4], +[0,-12116,-93,-94,-1931], +[0,-12117,-12118,-775,-12119,-3586,-12122,-8109,-1889,-3583,-11315,-12123,-4681,-5387], +[1,3,7048], +[0,90,7049,7050,6], +[0,-1889,-1930,-10815], +[0,-775,-3485,-1889,-3583], +[1,3,7052], +[0,0,22,7053,9], +[0,-775,-816,-7192,-1889,-3583], +[1,3,7055], +[0,0,22,7056,4], +[0,-6454,-775,-12124,-1644,-7193,-1889,-3583], +[1,3,7058], +[0,0,7059,7060,6], +[0,-834,-1863,-1889], +[0,-1889,-775,-3583,-12125,-12126,-12127], +[1,3,7062], +[0,0,7063,7064,8], +[0,-664,-1168,-1197,-1231], +[0,-1889,-775,-3583,-12128,-6445,-12129], +[1,3,7066], +[0,7067,7068,7069,9], +[0,-1333,-3187,-1889,-1929], +[0,-8281,-518,-664,-708,-932,-940,-954,-8286,-961,-965,-8287,-967,-971,-980,-7355,-1654,-8324,-1788,-12130,-1930,-12131, +-1942,-2281,-2282,-2289], +[0,-1889,-4132,-3264,-2476,-12132,-12133,-775,-1521,-2162,-3754,-12134,-2289], +[1,3,7071], +[0,7072,0,7073,10], +[0,-12063,-1934], +[0,-5182,-775,-6527,-12135,-5399,-7036,-1889,-3583,-9804,-3576], +[1,3,7075], +[0,7076,7077,7078,10], +[0,-1934,-12061,-2114], +[0,-519,-652,-932,-12062,-967,-1110,-1889,-1930,-1942,-2289], +[0,-775,-1889,-3583,-6024,-12136,-1764], +[1,3,7080], +[0,7081,0,7082,4], +[0,-1532], +[0,-1889,-12137,-12138], +[1,3,7084], +[0,7085,7086,7087,5], +[0,-1431,-2177,-755], +[0,-824,-1415,-1521,-2162,-1344,-1623,-12139,-774,-932,-784,-825,-1110,-1889,-2289,-2375,-2379,-2501,-1942,-767,-21,-190, +-533,-2790,-2269,-23,-1522,-1534,-1771,-2163,-12140,-1906,-1916,-86,-965,-3560,-2251,-40,-2411,-959,-1907,-958,-6929, +-978,-940,-967,-3748,-12141,-3307], +[0,-775,-1889,-9300,-2501,-5050], +[1,3,7089], +[0,7090,22,7091,6], +[0,-1934,-2280], +[0,-775,-1644,-7192,-1889,-3583], +[1,3,7093], +[0,7094,7095,7096,8], +[0,-635,-12069,-1931,-12142], +[0,-12070,-1889,-10815,-1899], +[0,-775,-7192,-1889,-3583], +[1,3,7098], +[0,60,22,7099,5], +[0,-775,-3827,-12143,-12144,-7192,-3583], +[1,3,7101], +[0,7102,22,50,10], +[0,-2840,-1934,-12142], +[1,3,7104], +[0,7105,22,7106,10], +[0,-635,-1934,-12142], +[0,-1889,-775,-3583,-1644,-7192,-5154], +[1,3,7108], +[0,7109,7110,7111,4], +[0,-783,-1931], +[0,-12145,-1889], +[0,-775,-1644,-7192,-1889,-3583,-12123], +[1,3,7113], +[0,7114,130,7115,10], +[0,-2773,-1931,-1934], +[0,-12146,-1889,-775,-3583], +[1,3,7117], +[0,90,0,7118,11], +[0,-1889,-775,-3583,-2162,-8893], +[1,3,7120], +[0,7121,0,7122,11], +[0,-12147,-98,-1931], +[0,-12148,-6599,-12149,-775,-12115,-12119,-8893,-12150,-1889,-3583,-8199,-12123,-4682,-4683,-4132,-5387], +[1,3,7124], +[0,7125,7126,7127,5], +[0,-12151,-12152,-12153], +[0,-12154,-635,-1889,-1906,-2127], +[0,-1889,-775,-3583,-12155,-6413,-12156], +[1,3,7129], +[0,0,22,7130,6], +[0,-1889,-775,-3583,-9791], +[0,60,22,50,4], +[1,3,7133], +[0,60,22,50,11], +[1,3,7135], +[0,242,22,50,8], +[1,3,7137], +[0,60,22,7138,4], +[0,-775,-6811,-7192,-7193,-1889,-3583,-2435], +[1,3,7140], +[0,7141,22,50,5], +[0,-1934,-12142], +[1,3,7143], +[0,0,7144,7145,4], +[0,-1344,-1654,-1889,-1405,-1942,-1534,-1916], +[0,-1889,-5899,-12123,-3583,-775,-3585,-3862], +[1,3,7147], +[0,7148,0,7149,5], +[0,-12157,-5297,-12158,-12159,-12160,-12161,-12162,-12163,-12164,-12165,-12166,-12167,-12168,-12169,-12170,-96,-12171, +-12172,-12173,-12174,-12175,-12176,-12177,-12178,-12179,-12180,-12181,-12182,-12183,-97,-12184,-12185,-12186,-12187, +-12188,-12189,-12190,-12191,-12192,-12193,-12194,-518,-635,-12195,-12196,-12197,-782,-12074,-12198,-1892,-12077,-12080, +-1896,-1897,-1898,-12199,-12200,-2579,-12201,-12084,-12202,-1905,-12203, +-12204,-1917,-2635,-12205,-12206,-12207,-12088,-12090,-12092], +[0,-775,-12119,-7186,-6309,-12208,-2634,-1889,-3583,-4682,-4683,-7187,-5387], +[1,3,7151], +[0,7152,7153,50,8], +[0,-635,-12069], +[0,-12070,-1329,-1889], +[1,3,7155], +[0,0,0,7156,4], +[0,-775,-1889,-12209,-3215,-8947], +[1,3,7158], +[0,0,0,7159,4], +[0,-775,-1889,-12209,-3215,-3754,-2162], +[1,3,7161], +[0,7162,7163,7,11], +[0,-783,-9649], +[0,-21,-23,-32,-4952,-26,-40,-43,-519,-535,-6831,-825,-932,-958,-1107,-1646,-1788,-1889,-2177,-2410], +[1,3,7165], +[0,7166,7167,7168,8], +[0,-1934,-2303], +[0,-12072,-1889], +[0,-775,-1644,-7192,-1889,-3583,-3839,-2303], +[1,3,7170], +[0,90,22,50,4], +[1,3,7172], +[0,0,7173,7174,4], +[0,-932,-1344,-1534,-1942,-2320,-2322], +[0,-1889,-5846,-3215], +[1,3,7176], +[0,7177,0,7178,4], +[0,-12210,-12211,-12212,-12213,-12214,-12215,-12216,-2387], +[0,-6321,-10425,-11940,-1857,-7685,-7773,-9879,-3323,-3445,-11941,-10424,-2410,-3018,-985], +[1,3,7180], +[0,7181,7182,7183,4], +[0,-4256,-4255], +[0,-86,-9404,-652,-664,-665,-667,-740,-1344,-1448,-1534,-1654,-2250], +[0,-3264,-6597,-9727,-3215,-6408,-12217,-12056,-3277,-12218], +[1,3,7185], +[0,7186,0,7187,5], +[0,-12219,-2446,-1523,-1525,-2347,-12220,-1524,-12221,-1729,-12222,-12223,-2062,-12224,-12225], +[0,-7773,-11304,-1937], +[1,3,7189], +[0,7190,7191,7192,4], +[0,-5830,-12226,-12227,-12228,-2546], +[0,-526,-566,-3067,-551,-558,-633,-3346,-12229,-1003,-1471,-1475,-10495,-1479,-1482,-12230,-1654,-12231,-7718,-1991,-2111, +-2177], +[0,-1938,-507,-5855,-4004,-3634,-3217,-3272], +[1,3,7194], +[0,7195,7196,7197,6], +[0,-769,-9798,-2518], +[0,-509,-1405,-1654], +[0,-5889,-3322,-1764,-1939,-12232,-11727,-4004,-3113], +[1,3,7199], +[0,0,7200,7201,11], +[0,-12233,-12234,-23,-3408,-5321,-40,-43,-2581,-3035,-3621,-3037,-4372,-5286,-3899,-12235,-664,-756,-767,-12236,-928, +-1344,-12237,-1637,-1654,-1772,-8065,-10105,-1967,-5037,-2210,-2211,-2334,-2410,-2426,-2466,-2469,-4881], +[0,-1940,-2006,-3160,-3477,-12238,-9613,-3098,-12239,-3577,-3161], +[1,3,7203], +[0,7204,27,57,5], +[0,-668,-679,-1078,-7885], +[1,3,7206], +[0,7207,7208,7209,4], +[0,-12240,-3896,-1618], +[0,-8918,-3307,-350,-4062,-351,-3136,-4251,-427,-428,-721,-932,-940,-967,-1344,-1415,-12241,-12242,-1942,-2127,-2251, +-2334,-2379,-2410], +[0,-1942,-3862,-1446,-8222], +[1,3,7211], +[0,0,7212,7213,6], +[0,-3037,-12243,-519,-1942,-2410,-5627], +[0,-1942,-12244,-2410,-12245,-12246], +[1,3,7215], +[0,7216,7217,7218,8], +[0,-7969], +[0,-1772,-1942], +[0,-10484,-3862,-1942], +[1,3,7220], +[0,0,7221,7222,6], +[0,-4066,-350,-351,-3037,-519,-1942,-2127,-2141,-2299,-2379,-2387,-2410], +[0,-1942,-2299], +[1,3,7224], +[0,7225,0,7226,6], +[0,-12247,-1548,-2001], +[0,-1942,-727], +[1,3,7228], +[0,0,14,7229,4], +[0,-3240,-651,-6472,-1044,-8799,-6656,-8574,-12248,-8800,-12249,-6582,-12250,-9782,-12251], +[1,3,7231], +[0,7232,7233,7234,8], +[0,-1548,-12252], +[0,-664,-710,-711,-12253,-1654], +[0,-3240,-6324,-12254,-812,-12255,-8800,-5598,-9361,-3276,-8574], +[1,3,7236], +[0,7237,7238,7,5], +[0,-4046,-482,-2029], +[0,-3040,-6633,-3081,-1361,-1427,-2006,-2019,-2052], +[1,3,7240], +[0,7241,14,7242,6], +[0,-12256], +[0,-3240,-9361,-8574,-9854,-12248,-8800,-4123,-1681,-12257,-7219,-12258,-7434,-5554,-2265,-6240,-12259], +[1,3,7244], +[0,7245,0,7246,6], +[0,-3446,-2387,-1353,-3535,-1864,-12260,-1863], +[0,-5889,-12261,-12262,-1942,-1952,-5538,-707,-12263,-12232], +[1,3,7248], +[0,7249,7250,7251,5], +[0,-714,-1646], +[0,-1654,-1452,-2198,-1405,-756,-1657], +[0,-4055,-687,-5538,-714], +[1,3,7253], +[0,7254,7255,7256,5], +[0,-1692,-10425,-2961,-12264,-12265,-12266], +[0,-1816,-2564,-1313,-1415,-1805,-999,-1496,-12267,-1852,-865,-3913,-6570,-679,-1077,-367,-7043,-5672,-1424,-1575,-1729, +-12268,-2269,-12269,-2410,-3136,-3037,-10624,-12270,-511,-1101,-12271,-1769,-12272,-12273,-12274,-12275,-12276,-10419, +-12277,-3048,-12278,-4835,-4106,-12279,-12280,-12281,-5038,-12282,-12283,-12284,-12285,-12286,-8863,-12287,-12288,-12289, +-5782,-12290,-12291], +[0,-4340,-12292,-12293,-12294,-12295,-7685,-7773,-7485,-12296,-4165,-12297,-12298,-12299,-1857,-12300,-12301,-12302, +-12303,-12304,-12305,-12306,-12307,-12308,-12309], +[1,3,7258], +[0,0,7259,7260,4], +[0,-4201,-589,-664,-12310,-824,-12311,-932,-960,-971,-1168,-1184,-1187,-1208,-2915,-1243,-1244,-12312,-1273,-1333,-1339, +-1449,-1654,-1729,-1771,-1942,-1976,-8318,-8319,-12313,-2091,-8320,-2205,-12314,-2550], +[0,-12315,-4131], +[1,3,7262], +[0,7263,7264,7265,8], +[0,-615,-617,-714,-1004,-1576,-1650,-1666,-12316,-1813,-1850,-12317], +[0,-664,-1168,-1231,-1663,-2150,-2210,-2211,-2291], +[0,-622,-6011,-11722,-7737,-7736,-3324,-5889,-12318,-5897], +[1,3,7267], +[0,0,29,7,4], +[1,3,7269], +[0,0,7270,7271,6], +[0,-2568,-1654], +[0,-1958], +[1,3,7273], +[0,0,0,7274,7275], +[0,-687,-1959], +1769904000000, +[1,3,7277], +[0,7278,0,7279,4], +[0,-668,-1959], +[0,-2501,-3862,-1959,-10677], +[1,3,7281], +[0,7282,7283,7,8], +[0,-11744], +[0,-461,-2125,-1405], +[1,3,7285], +[0,0,7286,7287,6], +[0,-633,-767,-932,-4693,-1344,-1471,-1472,-1475,-1482,-1534,-1654,-1771,-1942,-2125,-2127,-2143,-2210,-2491,-2410], +[0,-1961,-1962,-6948,-6306], +[1,3,7289], +[0,7290,226,7291,4], +[0,-1654,-2210,-2424], +[0,-5923,-6306], +[1,3,7293], +[0,89,7294,57,6], +[0,-891,-1050,-1654,-1941], +[1,3,7296], +[0,7297,7298,7299,6], +[0,-5758,-510,-2059,-5975,-2520], +[0,-932,-2471], +[0,-1965,-3958,-12319,-3926], +[0,7301,7302,7303,6], +[0,-1496,-12320], +[0,-21,-23,-36,-40,-2320,-2322], +[0,-3160,-1966,-687,-1965,-3964,-3958,-3962,-3957,-3972,-3824,-3955,-12321], +[1,3,7305], +[0,7306,7307,41,5], +[0,-1580,-1792,-2029], +[0,-533,-560,-633,-647,-932,-1365,-1415,-2006,-12322,-12323], +[1,3,7309], +[0,0,7310,7311,11], +[0,-4251,-3037,-12324,-652,-1318,-12325,-12326,-1942,-2094,-2100,-12327,-12328,-2399,-2410,-7669,-2541], +[0,-11876,-9681,-3264,-4675,-8041,-7153,-3839], +[1,3,7313], +[0,7314,7315,7316,5], +[0,-12329,-12330,-12331,-12332,-12333,-12334,-12335,-12336,-12337,-12338,-3037,-1578], +[0,-589,-633,-12339,-647,-668,-931,-932,-986,-988,-1103,-11426,-12340,-9208,-1168,-1208,-1212,-1252,-1262,-1446,-1646, +-1788,-2080,-2322,-2388,-2410,-2416,-2461,-2462,-2463], +[0,-12341,-12342,-12343,-2410], +[1,3,7318], +[0,7319,7320,7321,5], +[0,-12344,-11458,-2729,-2734,-668,-1107,-1412,-2779,-1980,-5471,-2173,-2234,-2818,-2819,-2550], +[0,-3711,-3036,-9705,-12345,-8566,-3037,-617,-664,-665,-11477,-1003,-1004,-1168,-12346,-1260,-1452,-1548,-1610,-1654, +-12347,-2125,-2150,-2177,-2388,-12348,-2410,-12349], +[0,-475,-4004,-3634,-11468,-12350,-11467], +[1,3,7323], +[0,7324,7325,7326,4], +[0,-4377,-12351,-812], +[0,-12352,-3198,-3136,-3037,-511,-1415,-2375,-2410,-9056], +[0,-1334,-1342,-1971,-729,-7680,-12353,-12354,-7827,-12355,-12356,-12357], +[1,3,7328], +[0,7329,7330,231,4], +[0,-12358,-12359,-2114], +[0,-1654,-12360,-2198,-2210,-2250], +[1,3,7332], +[0,7333,7334,7335,5], +[0,-668,-12361,-12362,-1376,-1392,-1548,-1639,-1728,-1820,-2177], +[0,-526,-555,-558,-824,-932,-940,-1362,-1405,-1650,-1654,-1661,-1942,-2125,-2198], +[0,-1168,-1764,-8403,-5897,-3551], +[1,3,7337], +[0,7338,7339,7340,10], +[0,-12363,-12364,-12365,-12366,-12367,-12368,-12369,-12370], +[0,-1650,-2125,-10011,-10009,-10013,-10014,-12371,-12372,-10010], +[0,-3264,-1409,-1974,-3110], +[1,3,7342], +[0,0,7343,7,4], +[0,-589,-11080,-1021,-1948,-12373,-2320,-2322], +[1,3,7345], +[0,7346,0,7347,4], +[0,-908,-1801], +[0,-8027,-11441,-7412,-5865], +[1,3,7349], +[0,0,7350,7351,4], +[0,-708,-1788,-1654], +[0,-1977,-4112,-12374,-12375,-12376,-2435,-12377], +[1,3,7353], +[0,7354,91,7355,5], +[0,-7591,-12378,-755,-11460,-12379,-12380], +[0,-1978,-10366,-11878,-4864], +[1,3,7357], +[0,7358,0,7359,8], +[0,-719,-1026,-1889,-1931], +[0,-7175,-7036,-6694,-7441,-775,-3264,-8199,-12381,-9487,-7725], +[1,3,7361], +[0,0,7362,7363,9], +[0,-1127,-1452,-1612,-1132,-1414,-1148,-1963], +[0,-1980,-1961,-5923,-6305,-6306,-6307,-6309,-510,-6310,-12382,-4865,-3966], +[1,3,7365], +[0,0,0,7366,10], +[0,-6935,-12383,-6934,-7715,-3839,-6527], +[1,3,7368], +[0,0,0,7369,4], +[0,-5514,-4111,-6935,-4000], +[1,3,7371], +[0,7372,7373,7374,4], +[0,-7397], +[0,-12384,-12385,-5834,-633,-647,-12386,-887,-921,-932,-993,-1065,-1107,-8080,-12387,-11104,-7402,-1283,-1351,-1365,-1408, +-1431,-1650,-1659,-6374,-1777,-1788,-1794,-8385,-2156,-9786,-2322,-12388], +[0,-1985,-1983,-5101,-2435,-1838,-6231], +[1,3,7376], +[0,7377,7378,7379,4], +[0,-12389,-12390,-12391], +[0,-519,-589,-821,-1023,-2384,-2541], +[0,-4865,-1985,-5101,-2265,-1983,-12392,-12393,-2435,-1838,-6231,-6422,-6420,-12394,-7724], +[1,3,7381], +[0,0,7382,7383,4], +[0,-4004,-12395,-2322], +[0,-4791,-5101,-1985], +[1,3,7385], +[0,0,7386,7387,4], +[0,-652,-1339,-12396], +[0,-1986,-510,-6235,-12397,-5418,-4107,-11866,-5920], +[1,3,7389], +[0,119,120,7390,4], +[0,-1986,-11868,-12398,-12399,-12400,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-5418,-12401,-1986,-12402,-12403, +-12404,-10587,-11866,-12405,-11049,-7530,-7283,-12406,-6582,-7534,-7535,-7536,-7537,-7538,-7539,-7540,-7541,-7542,-7543, +-7544,-7545,-7503,-12407,-7547,-7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558,-7559,-5063, +-7560,-1980,-12408,-5839,-11450,-12409, +-5737,-12410,-2634,-3966,-12411,-11052,-6187,-7563,-856,-7275], +[1,3,7392], +[0,7393,7394,7395,4], +[0,-1549,-12412,-12413,-996], +[0,-1107,-2303,-1449,-932,-2286,-2469,-2379,-2501,-1942,-2376,-21,-778,-2410,-23,-3037,-1322,-2503,-534,-1304,-2275,-2287, +-2508,-3046,-5286,-3983,-3164,-40,-2233,-2505,-12414,-1331,-958,-2335,-940,-962,-967,-1643,-42,-12415,-428,-8561,-12416, +-427,-4011,-948], +[0,-1988,-3496,-3495,-3494,-3505,-3506,-3161], +[1,3,7397], +[0,7398,7399,7400,11], +[0,-719,-10988,-1747], +[0,-1788,-1127,-1496,-932,-2125,-2127,-2177,-589,-1054,-12417,-2111,-1972,-8573,-23,-12418,-40,-957,-966,-1138,-8022, +-9544,-3326,-952,-958,-12419,-968,-1137,-3561,-943,-963,-350,-942,-351,-12420,-3840], +[0,-3634,-5119,-507,-5855,-2319,-2322,-1471,-1437], +[1,3,7402], +[0,7403,7404,7405,8], +[0,-12421], +[0,-2832,-12422,-427,-428,-3664,-549,-558,-726,-932,-940,-967,-6726,-8011,-1942,-2910,-1989,-2091,-12423,-2127,-4063, +-2142,-2410,-2469,-2501], +[0,-4865,-5092,-3264,-1989,-12424,-3634], +[1,3,7407], +[0,7408,7409,7410,4], +[0,-679,-719,-12425,-1048,-12426,-2114,-2488], +[0,-510,-537,-559,-12427,-705,-10255,-10260,-957,-8022,-999,-1054,-1077,-1127,-1132,-1133,-1137,-1138,-9544,-1149,-9240, +-1152,-10257,-9241,-10644,-12418,-1542,-1972,-2111,-2128,-2177], +[0,-3634,-5119,-1437], +[1,3,7412], +[0,7413,7414,7415,9], +[0,-1856], +[0,-12428,-633,-2322], +[0,-12429,-3582], +[1,3,7417], +[0,0,7418,7419,5], +[0,-21,-23,-40,-43,-47,-3326,-10022,-12430,-571,-589,-693,-767,-12431,-932,-958,-1023,-1276,-1442,-1654,-1771,-1788,-2125, +-2127,-2143,-12432,-12433,-2210,-2342,-12434], +[0,-1993,-5112,-5260,-8113,-3481,-11639,-12435,-12436,-12437,-9976,-12438], +[1,3,7421], +[0,7422,27,7423,6], +[0,-2172], +[0,-6555,-12439,-12439,-10781,-3262,-12440,-5554], +[1,3,7425], +[0,177,7426,7427,5], +[0,-1859,-2250,-2320,-2322,-2568], +[0,-770,-6555], +[1,3,7429], +[0,7430,27,7,10], +[0,-1995], +[1,3,7432], +[0,0,172,7433,9], +[0,-7434,-3215,-1334], +[1,3,7435], +[0,7436,7437,7438,6], +[0,-1616,-2446,-743,-12441,-2249], +[0,-1107,-1722,-1654,-2210,-932,-2198,-1405,-1942,-710,-940], +[0,-11428,-8980,-12442,-5545,-1998,-12443], +[1,3,7440], +[0,7441,7442,7,5], +[0,-651,-12444,-1351,-1335], +[0,-1788,-1654,-932,-615,-2884,-2155,-2062,-3748,-5029], +[1,3,7444], +[0,205,7445,48,5], +[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-967,-1344,-1415,-1534,-1623,-1771,-1942,-2251, +-2501], +[1,3,7447], +[0,7448,0,7449,4], +[0,-1371,-1646,-822,-2271], +[0,-727,-2001,-11642,-10659], +[1,3,7451], +[0,7452,7453,7454,5], +[0,-44,-682,-2004], +[0,-12445,-407,-409,-3059,-3136,-3037,-3040,-3052,-6265,-767,-881,-932,-959,-978,-1031,-12446,-1103,-1107,-1521,-1763, +-12447,-2003,-4946,-2006,-2019,-2082,-2410], +[0,-2006,-3159,-12448,-12449,-3962,-7434], +[1,3,7456], +[0,7457,7458,7459,5], +[0,-44,-5650,-682,-2004], +[0,-12445,-409,-3136,-3040,-3052,-4972,-767,-881,-932,-978,-1031,-1103,-1521,-1763,-12447,-2006,-2019,-2410], +[0,-2006,-3159,-12450,-3821], +[1,3,7461], +[0,7462,7463,7464,5], +[0,-44,-2029], +[0,-12445,-409,-3136,-3037,-3040,-3052,-6633,-12451,-4972,-6265,-761,-767,-881,-932,-959,-978,-1031,-1107,-1344,-1534, +-1763,-1942,-12447,-2006,-2019,-2410], +[0,-2006,-2444], +[1,3,7466], +[0,0,0,41,10], +[1,3,7468], +[0,7469,0,245,10], +[0,-2055], +[1,3,7471], +[0,7472,7473,245,5], +[0,-1792], +[0,-1415,-2006,-2019,-2501], +[1,3,7475], +[0,7476,7477,7478,5], +[0,-12453,-12454,-12455,-12456,-12457], +[0,-2127,-2410], +[0,-3321,-1122,-2006,-3322,-8977,-3098], +[1,3,7480], +[0,7481,0,7,11], +[0,-1992,-753,-1961,-2516,-1792,-2082], +[1,3,7483], +[0,7484,0,7485,4], +[0,-2489,-1384,-682,-1967,-12458,-860,-44,-12459,-12460,-12461,-3140,-2055,-3024], +[0,-620,-2006,-3095,-3098,-12462,-3159], +[1,3,7487], +[0,7488,7489,7490,5], +[0,-12463,-1548,-1549,-12464,-1967,-12465,-2355], +[0,-12466,-12467,-6263,-6264,-4749,-526,-527,-533,-534,-12468,-559,-560,-562,-566,-664,-12469,-778,-915,-994,-1033,-1304, +-1322,-1331,-1347,-1415,-1417,-12470,-1654,-1762,-1764,-1792,-2006,-8934,-12471,-2019,-2024,-12472,-2052,-2102,-2109, +-2125,-2275,-12473,-2501,-2505], +[0,-2006,-12474,-3159,-8597,-4122,-12475,-10366,-12476,-3119,-3825], +[1,3,7492], +[0,7493,7494,7495,9], +[0,-747,-1967], +[0,-21,-23,-32,-26,-36,-40,-41,-43,-534,-553,-778,-827,-932,-933,-958,-962,-969,-970,-1103,-1331,-12477,-1643,-2006,-2019, +-2275,-2322,-2501,-2503,-2505], +[0,-3095,-3159,-2006,-12478,-699], +[1,3,7497], +[0,7498,7499,7500,9], +[0,-2852,-703,-807], +[0,-23,-32,-3192,-3840,-26,-40,-41,-42,-190,-12479,-3326,-350,-351,-3266,-3267,-406,-409,-410,-3330,-3136,-4961,-3037, +-3040,-3052,-427,-428,-522,-533,-553,-753,-12480,-932,-940,-958,-959,-969,-970,-9724,-1344,-1415,-4980,-1416,-1419,-1534, +-1548,-1942,-2006,-2019,-2127,-5090,-2162,-2223,-2281,-2282,-3436,-2285,-2375,-2387,-2410,-2411], +[0,-2006,-4222,-4120,-4121,-3159], +[1,3,7502], +[0,7503,7504,7,5], +[0,-1805,-668,-1359,-1111,-1872,-6558,-1047,-12481,-1966,-1044,-1273,-2269,-2343,-769,-2194,-635,-1543,-6197,-12482,-22, +-2070,-2021,-930,-1067], +[0,-1415,-767], +[1,3,7506], +[0,7507,7508,7,6], +[0,-12483,-12484,-12485,-1025,-1311], +[0,-4010,-367,-409,-5220,-3136,-3037,-3040,-3052,-1415,-5129,-1771,-2006,-2019,-2200,-2410], +[1,3,7510], +[0,7511,7512,7,8], +[0,-12485], +[0,-4010,-367,-3136,-1771,-2200,-2410], +[1,3,7514], +[0,7515,0,7516,4], +[0,-2114,-8245,-23,-47,-4096,-3200,-46,-12486,-4776,-10101], +[0,-2006,-856,-12487], +[1,3,7518], +[0,7519,0,41,4], +[0,-2166], +[1,3,7521], +[0,7522,7523,7524,4], +[0,-12488,-12489,-1967], +[0,-21,-23,-32,-3840,-12490,-34,-12491,-6065,-5584,-12492,-38,-40,-41,-43,-86,-9404,-12493,-10709,-3326,-350,-351,-3470, +-7040,-3472,-7041,-7042,-5295,-4774,-12494,-406,-407,-409,-2622,-3040,-3052,-427,-428,-533,-535,-536,-720,-767,-932,-940, +-958,-962,-966,-967,-969,-970,-1344,-12495,-1357,-1415,-1534,-1609,-1868,-1942,-2006,-2019,-2049,-2052,-2125, +-2127,-2140,-2174,-2214,-2275,-2278,-2410,-2501,-12496], +[0,-3159,-2006,-7581,-7582,-7764], +[1,3,7526], +[0,0,7527,7528,4], +[0,-22,-23,-2624,-533,-534,-561,-668,-679,-767,-1059,-1320,-1415,-12497,-1792,-1961,-2000,-2006,-2010,-2019,-2125,-12498, +-2231,-2501], +[0,-12499,-4132,-6324,-5547,-6335,-12500,-12501,-2489], +[1,3,7530], +[0,7531,7532,7533,4], +[0,-1792,-1967,-2798,-12502], +[0,-527,-528,-537,-539,-546,-551,-558,-560,-664,-708,-740,-796,-932,-12503,-940,-958,-962,-964,-967,-969,-1405,-1471, +-1474,-12504,-1475,-1476,-1479,-12505,-1482,-1486,-1490,-1491,-11508,-1654,-1942,-2006,-2019,-2125,-2127,-2128,-2131, +-2137,-2138,-2210,-2211], +[0,-2022,-12506,-2006,-10855,-12507,-12508,-12509,-10606,-11729,-3956,-12510,-5553], +[1,3,7535], +[0,0,7536,7537,4], +[0,-3615,-262,-350,-351,-3266,-367,-7043,-407,-409,-3136,-3037,-3040,-3052,-3563,-795,-932,-940,-3071,-967,-969,-970, +-4814,-1344,-1415,-1419,-12511,-2781,-1534,-1942,-2006,-2019,-2125,-2127,-2142,-2384,-2410,-2411,-2516,-2564], +[0,-2006,-3322,-4053,-4054,-12512,-3926,-2410,-4124], +[1,3,7539], +[0,7540,7541,7542,6], +[0,-10579,-1109,-1311,-1543,-1967,-2030,-2192,-2231], +[0,-3795,-3040,-3807,-526,-527,-528,-533,-536,-537,-546,-551,-556,-558,-560,-708,-6019,-761,-767,-915,-12513,-916,-932, +-933,-940,-958,-962,-969,-1344,-1415,-1534,-1942,-2006,-2019,-12514,-2052,-2069,-2125,-2127,-2128,-2131,-2133,-2137, +-2138,-2143,-2251,-12515], +[0,-2006,-3214,-2501,-6211,-1540,-12516,-10589,-12517,-5932,-11492], +[1,3,7544], +[0,7545,7546,7547,6], +[0,-44,-2770,-12518], +[0,-21,-23,-32,-12519,-36,-3204,-38,-39,-40,-41,-43,-3326,-350,-351,-3561,-3266,-406,-407,-409,-3136,-3040,-3664,-7465, +-527,-3766,-6046,-756,-757,-767,-932,-933,-940,-958,-12520,-962,-969,-976,-1278,-1344,-1349,-1534,-1650,-1942,-2006, +-2019,-2052,-2125,-2127,-2410,-2469,-2550], +[0,-1349,-9780,-1348,-9781,-9782,-9772,-9783,-2006,-3476], +[1,3,7549], +[0,0,7550,7551,10], +[0,-2832,-2581,-5295,-407,-409,-3037,-3040,-3052,-440,-2970,-3899,-8349,-1534,-1637,-1771,-1874,-2910,-2006,-2019,-3246, +-2214,-2391,-2410,-2469], +[0,-2006,-3095,-3322,-12521,-12522,-12523,-12524,-12525,-12526,-12527], +[1,3,7553], +[0,7554,0,7555,4], +[0,-5220,-1311,-2387,-12528,-12529,-12530,-12531], +[0,-3276,-5538,-9783,-1348,-9780,-1382,-12250,-9782,-2006,-3476,-3940,-9781], +[1,3,7557], +[0,0,0,41,6], +[1,3,7559], +[0,0,7560,7,5], +[0,-656,-668,-932,-12532,-1415,-1417,-1942,-2127,-2138,-2143], +[1,3,7562], +[0,7563,7564,7565,6], +[0,-5334,-4251,-9596,-1291,-2632,-1619,-2098,-2101,-2427,-2429,-5358], +[0,-409,-3037,-3040,-3052,-652,-725,-928,-969,-4652,-1942,-2006,-2019,-2088,-12533,-2094,-2095,-2100,-4656,-2399,-2410, +-2541], +[0,-3272,-8630,-3095,-4329,-1599,-2006,-3159,-2093,-2427], +[1,3,7567], +[0,7568,7569,7570,5], +[0,-12534,-1967,-2030,-2489], +[0,-12535,-526,-527,-528,-534,-535,-558,-560,-564,-756,-767,-932,-940,-12416,-958,-962,-967,-969,-5997,-1471,-1475,-1476, +-1479,-1482,-1483,-1490,-1492,-1654,-1771,-1942,-2006,-2019,-2043,-2044,-2198,-2416,-2501,-2503,-2505], +[0,-2006,-3159,-4126,-12536], +[1,3,7572], +[0,7573,7574,7575,5], +[0,-1856,-1967,-1992], +[0,-525,-12537,-527,-528,-534,-709,-778,-932,-933,-949,-958,-962,-969,-1059,-11942,-12538,-12539,-1413,-1471,-1476,-1481, +-12540,-1484,-1492,-12541,-1859,-2024,-2275,-2501,-2505], +[0,-2006,-3095,-3159,-12542,-12543,-12544,-12545,-5176,-12546,-3160], +[1,3,7577], +[0,7578,0,246,4], +[0,-2531,-2624,-2550,-2177,-1961,-578,-719,-1384,-2166,-481,-533,-12547,-2654,-1624,-2516,-12548,-1950,-2041,-12549,-458, +-12550,-11463,-12551,-9870,-2082,-12552,-1421,-12553,-12554,-12555,-12556,-12557,-12558,-12559,-12560], +[1,3,7580], +[0,0,7581,7582,4], +[0,-12563,-12564,-12565,-932,-967,-1942,-2006,-2034,-12566,-2410], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-12568], +[1,3,7584], +[0,7585,7586,7587,6], +[0,-2550,-1967], +[0,-2006,-932,-12569,-12570,-1387,-1942,-4731,-21,-12571,-23,-528,-1064,-12572,-9081,-12573,-12574,-12575,-12576,-12577, +-969,-933,-958,-940,-962,-967,-970,-3156], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-12578,-7084,-12579,-3160,-3167,-3843,-9472,-9474,-3827], +[1,3,7589], +[0,0,7590,7591,9], +[0,-21,-23,-26,-36,-3203,-40,-41,-43,-12580,-2685,-8471,-261,-6429,-3267,-407,-409,-410,-3040,-428,-528,-534,-535,-3090, +-682,-703,-767,-932,-940,-949,-958,-969,-1103,-1449,-1613,-6519,-1942,-4130,-2006,-2019,-12581,-2127,-2128,-2131,-5090, +-2134,-2137,-2138,-2143,-2376,-2410,-2469,-2501,-2503,-2505], +[0,-3159,-2006,-12582,-3962,-6240,-12583,-6769], +[1,3,7593], +[0,0,7594,7595,4], +[0,-23,-26,-36,-40,-6035,-3326,-528,-534,-664,-932,-1344,-1534,-1654,-1771,-1942,-2006,-2019,-2052,-12584,-2125,-2127, +-2501], +[0,-2006,-12585,-12586,-12587], +[1,3,7597], +[0,0,7598,7599,4], +[0,-4066,-12588,-932,-12589,-967,-12590,-1415,-1942,-2127,-2410], +[0,-2039,-3264,-3839,-5092,-7153,-9681,-727,-2006,-2019], +[1,3,7601], +[0,7602,7603,7604,5], +[0,-12591,-12518], +[0,-262,-349,-406,-407,-409,-3037,-3140,-3040,-3052,-708,-767,-932,-940,-948,-958,-967,-969,-1449,-1942,-2006,-2019,-2074, +-2125,-2391,-2410,-2411,-2469], +[0,-2006,-3476,-2074], +[0,0,0,41,4], +[1,3,7607], +[0,7608,7609,7610,4], +[0,-1346,-12592,-1967,-5582], +[0,-3267,-3035,-12593,-4647,-12594,-12595,-3621,-3040,-3052,-4372,-427,-428,-664,-767,-932,-952,-1103,-1449,-12596,-1654, +-1942,-2006,-2019,-2125,-2127,-5405,-2198,-2210,-2387,-2392,-2402,-2410], +[0,-775,-3159,-12521,-2006,-3162,-12597,-12598,-3580,-12599,-3576,-3095], +[1,3,7612], +[0,7613,7614,248,6], +[0,-743,-3169], +[0,-2391,-2006,-2426,-12600,-12601,-2019,-2410,-2052,-409,-1419,-3172,-407,-410], +[1,3,7616], +[0,7617,7618,248,10], +[0,-2043], +[0,-2391,-2006,-12600,-2019,-2410], +[1,3,7620], +[0,0,7621,7622,4], +[0,-526,-527,-528,-534,-9887,-9888,-556,-559,-560,-563,-566,-932,-941,-956,-958,-962,-969,-1001,-1306,-9413,-12539,-1471, +-1476,-1479,-1482,-1483,-1490,-1492,-1654,-2006,-2019,-2040,-2043,-2074,-12602,-12603,-12604,-2501], +[0,-2006,-2074,-3122], +[1,3,7624], +[0,7625,28,7,4], +[0,-594,-1415,-865,-932,-2177,-1889,-1966,-2114,-2501,-1077,-1080,-656,-533,-778,-23,-1041,-2163,-2318,-534,-635,-1426, +-2275,-366,-866,-2041,-1908,-2015,-1918,-2233,-1352,-1927,-2010,-2116,-2505,-1331,-1428,-10049,-2335,-561,-1903,-2526, +-941,-1643,-2507,-779,-542,-661,-2695], +[1,3,7627], +[0,7628,7629,7630,11], +[0,-44,-3772,-3778,-3819,-3024,-1624,-1967,-2055,-3820], +[0,-5131,-915,-2760,-5116,-2006,-2019], +[0,-12605,-4053,-3962,-12606,-2006,-3159,-6750,-3160], +[1,3,7632], +[0,7633,7634,7635,5], +[0,-682,-12607,-1553,-2113], +[0,-21,-23,-32,-26,-39,-40,-41,-12608,-407,-409,-410,-3037,-518,-527,-533,-534,-557,-778,-823,-824,-923,-932,-958,-969, +-1004,-12609,-1168,-1243,-1344,-1415,-1419,-1440,-1455,-1534,-1812,-1908,-1942,-1992,-2006,-2019,-2082,-2210,-12610, +-2275,-2417,-2501,-2503,-2505,-12611], +[0,-12612,-12613,-12614,-12615,-12449,-3159], +[1,3,7637], +[0,7638,7639,7640,5], +[0,-12616,-3081,-12617,-461,-6426,-507,-5223,-639,-684,-12618,-703,-12619,-748,-753,-8245,-12620,-925,-930,-931,-989, +-11676,-5504,-12621,-3649,-1107,-12622,-1284,-1395,-12623,-12624,-12625,-12626,-12627,-12628,-12629,-12630,-1496,-12631, +-1548,-9160,-1606,-12632,-3446,-1816,-1955,-1967,-12633,-12634,-2015,-2018,-12635,-12636,-12637,-2026,-5351,-2066,-2093, +-12638,-2335,-8299,-12639,-2429,-2505, +-2508], +[0,-21,-23,-26,-40,-6056,-41,-42,-407,-409,-12640,-12641,-12486,-12642,-426,-12643,-3136,-12644,-3044,-12645,-3037,-3803, +-3040,-3052,-12646,-12647,-3046,-12648,-3806,-427,-428,-527,-528,-533,-534,-778,-12310,-12649,-12650,-12651,-932,-12652, +-948,-952,-958,-962,-969,-1041,-1077,-1344,-1415,-12653,-1534,-1623,-1942,-1992,-2006,-2019,-2052,-12654,-2275,-2410, +-2437,-2501, +-2503], +[0,-2006,-4146,-4900,-4901,-856,-3671,-3262,-3095,-3098], +[1,3,7642], +[0,7643,7644,7645,4], +[0,-44,-401,-3140,-1967], +[0,-23,-38,-40,-41,-190,-6486,-3326,-350,-351,-3561,-3266,-409,-3136,-4647,-3037,-3040,-3052,-3714,-553,-2745,-932,-940, +-969,-970,-4814,-1110,-1415,-1419,-1722,-1772,-1942,-2006,-2019,-2127,-2195,-2200,-5091,-2375,-2379,-2410,-2411], +[0,-5092,-3264,-5093,-5094,-3214,-2006,-12655,-3839,-12656,-2410], +[1,3,7647], +[0,7648,0,7649,6], +[0,-1033], +[0,-12657,-2006,-2363,-826,-12658,-2051], +[1,3,7651], +[0,7652,0,7653,8], +[0,-2029,-2166], +[0,-2006,-2034,-12659], +[1,3,7655], +[0,108,7656,7657,5], +[0,-12660,-11184,-234,-405,-3037,-3040,-3052,-440,-756,-795,-2926,-1534,-1889,-1942,-2006,-2019,-2391,-2410,-2466,-12661], +[0,-2006,-4127,-12662,-3159,-2053,-5737,-12663,-12664,-12665], +[1,3,7659], +[0,7660,7661,7662,5], +[0,-12666,-12667], +[0,-589,-633,-647,-710,-12668,-3346,-913,-12669,-923,-932,-12670,-1127,-1132,-10258,-1134,-7849,-1137,-1144,-12671,-10265, +-12672,-1417,-1813,-1859,-6184,-12673,-2066,-9266,-2359,-2410,-2416,-12322,-2493], +[0,-2006,-4146,-8530,-6107], +[1,3,7664], +[0,7665,0,7666,10], +[0,-44,-860,-1580,-1967], +[0,-2006,-12546,-8111,-12674,-5176,-775,-12675], +[1,3,7668], +[0,7669,7670,7671,6], +[0,-703,-1967,-860,-1580,-44,-2030], +[0,-1415,-1344,-2006,-2490,-932,-2125,-2127,-708,-1889,-2501,-1059,-1103,-1942,-767,-1361,-1978,-2019,-21,-533,-709,-778, +-23,-1041,-1534,-1891,-2503,-518,-528,-534,-1952,-2043,-2275,-1908,-39,-11942,-12676,-2044,-40,-6056,-7748,-2505,-41, +-12677,-951,-969,-12678,-1331,-2052,-2128,-2143,-12679,-2138,-940,-956,-962,-967,-2131,-12680,-2137,-1017,-3840,-38, +-6057, +-12681,-26,-3204,-553], +[0,-2006,-3476,-3159,-9614,-4108,-12682,-12683,-12684,-4002,-12685,-5147,-12129,-6445,-4672,-9133], +[1,3,7673], +[0,7674,7675,7676,10], +[0,-2346,-2054], +[0,-1654,-1452,-2177,-6398,-633,-725,-12686], +[0,-2006,-633,-6340,-4146,-3756,-3862,-6408], +[1,3,7678], +[0,7679,7680,7681,5], +[0,-44,-2997,-682,-1967,-2804,-2055], +[0,-21,-23,-32,-34,-35,-36,-3204,-40,-41,-4757,-4762,-4754,-12687,-4749,-407,-409,-410,-3040,-528,-533,-534,-561,-620, +-726,-740,-10524,-767,-12688,-879,-888,-932,-933,-940,-956,-958,-962,-969,-4756,-12689,-1415,-1419,-1449,-1455,-1637, +-1942,-2006,-2019,-2022,-12690,-2043,-2052,-2410,-2501], +[0,-2058,-620,-2006,-3095,-3098,-3159,-3160], +[1,3,7683], +[0,7684,7685,7,4], +[0,-3950], +[0,-4298,-4300,-3952,-5866,-428,-652,-948,-2319,-2379,-2386,-2410], +[1,3,7687], +[0,7688,118,7689,8], +[0,-6902,-6904,-6990,-2400,-8803], +[0,-4055,-2059,-1838,-6656,-1076,-11998,-6994,-5897,-6811], +[1,3,7691], +[0,7692,14,7693,4], +[0,-8341,-2060,-2400], +[0,-4055,-2059,-1838,-6656,-1076,-11998,-6994,-5897,-5573,-8804,-1047,-5504,-8805,-8806,-7282,-5572,-2114,-8807,-6370, +-7420,-7421,-2487,-8808,-1847], +[1,3,7695], +[0,7696,7697,7698,9], +[0,-458,-640,-997,-1958,-6383], +[0,-23,-6065,-5584,-3244,-350,-6572,-351,-357,-633,-652,-928,-12691,-932,-943,-958,-965,-968,-1874,-1942,-2127,-9701, +-2319,-12692,-2322,-2323,-2426,-2501,-2503], +[0,-8800,-5827,-11441], +[1,3,7700], +[0,0,7701,7702,8], +[0,-2319,-1351], +[0,-2063,-12693,-6656], +[1,3,7704], +[0,0,0,7705,9], +[0,-2063,-12397,-9845,-1965,-3969,-5110,-687,-3975,-3957,-12694,-10394,-4116,-6301], +[0,68,15,16,5], +[1,3,7708], +[0,7709,7710,7711,5], +[0,-5223,-987,-2231,-12695,-2387], +[0,-23,-25,-40,-12696,-3036,-3621,-3037,-428,-932,-12670,-12697,-1107,-1534,-1654,-1942,-9880,-2410], +[0,-3272,-9306,-12698,-9308,-4132,-9307,-6747,-12699], +[0,67,15,16,8], +[1,3,7714], +[0,7715,125,7716,4], +[0,-2114], +[0,-4792,-5932,-5195,-8109,-12700], +[1,3,7718], +[0,7719,0,7720,4], +[0,-44,-12701,-1033,-1311,-2030,-5746], +[0,-2006,-12702,-3098,-12703,-3481,-8113,-12704], +[1,3,7722], +[0,124,27,7723,8], +[0,-7421,-12705], +[1,3,7725], +[0,7726,0,7727,6], +[0,-12706,-12707,-12708,-12709,-12710], +[0,-2071], +[1,3,7729], +[0,7730,7731,150,10], +[0,-3544,-3786,-1610,-3788,-1955,-2223,-1885,-863,-682,-1653,-1967,-3790,-3791,-3787,-3793,-996,-3789,-1848,-3792,-2680, +-12711], +[0,-1992,-2435,-1415,-1652,-1344,-2006,-2387,-915,-932,-2125,-753,-795,-1442,-1821,-2195,-2375,-2379,-3811,-2501,-1942, +-2019,-778,-2214,-2410,-3035,-3136,-3800,-3037,-3810,-2503,-3040,-3041,-1952,-2275,-3043,-3802,-3801,-3803,-3805,-3046, +-2760,-3808,-3809,-4773,-3797,-3052,-3140,-2278,-3806,-585,-2505,-3799,-748,-969,-1331,-958,-3798,-1419,-2509,-3804,-428, +-970,-740, +-3794,-1067,-427,-12712], +[1,3,7733], +[0,7734,7735,7736,4], +[0,-12713,-12714], +[0,-2006,-2501,-2019,-2410,-3040,-3052,-3859,-12715], +[0,-2072,-3438,-3690,-4847,-856,-12716,-858,-12717], +[1,3,7738], +[0,0,7739,7740,5], +[0,-23,-3037,-427,-428,-767,-4780,-932,-941,-948,-958,-969,-970,-1107,-12718,-1942,-2125,-2153,-2391,-2410,-2469], +[0,-2074,-4782,-4125,-12719,-5112,-1361,-12517,-12516,-12720,-1062,-12721], +[1,3,7742], +[0,7743,7744,7745,5], +[0,-12722,-12723], +[0,-12724,-12725,-12726,-1344,-1534,-1771,-1942,-2466,-2469,-2541], +[0,-1062,-2074,-10951,-12727], +[1,3,7747], +[0,7748,7749,7750,5], +[0,-1548,-2029,-924,-1384,-1398,-1967,-44,-1311], +[0,-2359,-1415,-1344,-2006,-2074,-932,-2125,-708,-2501,-1059,-1942,-767,-1361,-2019,-21,-821,-2214,-23,-12728,-1534,-2040, +-2503,-528,-534,-12729,-40,-41,-540,-951,-969,-6040,-2052,-958,-12726,-12730,-956,-962,-941,-2502,-970,-5295,-12416,-38, +-26,-3203], +[0,-2006,-3476,-1062,-2074,-2040,-2076,-4053,-11313], +[1,3,7752], +[0,7753,7754,7755,6], +[0,-819], +[0,-527,-537,-11899,-559,-664,-708,-932,-933,-958,-962,-969,-1339,-1344,-1654,-1788,-2074,-2125,-2127,-2128,-2131,-2137, +-2143,-2210], +[0,-2074,-3444,-2077,-5401], +[1,3,7757], +[0,7758,7759,7760,10], +[0,-12731], +[0,-23,-38,-39,-40], +[0,-3214,-2074,-5401,-12732,-12733,-12734], +[1,3,7762], +[0,0,7763,7764,5], +[0,-427,-428,-767,-932,-940,-1942,-2074,-2125,-2391,-2410,-2469], +[0,-2074,-12735,-5401,-12736,-1062], +[1,3,7766], +[0,0,7767,7768,4], +[0,-3035,-3621,-3037,-664,-824,-12737,-1168,-12738,-12739,-1231,-1243,-12740,-1259,-1654,-2410], +[0,-11313,-11872,-3214,-12741], +[1,3,7770], +[0,0,7771,7772,8], +[0,-708,-1127,-1162,-1405,-6186,-1991,-2111], +[0,-5569,-5570,-3214,-4112,-3262,-3673], +[1,3,7774], +[0,0,0,7775,4], +[0,-12742,-11997,-3262,-510], +[1,3,7777], +[0,7778,0,7779,6], +[0,-5334,-2087,-2090,-2427], +[0,-12743,-3272,-3264,-1838,-1958,-2083,-6233,-6231,-4132,-10919,-2427], +[1,3,7781], +[0,7782,7783,7784,5], +[0,-5334,-9581,-4264,-2766,-2427,-2429], +[0,-3037,-9586,-652,-12744,-1942,-2083,-2094,-2100,-2399,-2410,-2541], +[0,-2427,-2083,-12745,-3862,-10857,-10606,-3264], +[1,3,7786], +[0,7787,7788,7789,4], +[0,-5334,-9581,-2766,-12746,-2235,-2429], +[0,-3037,-9586,-652,-1942,-2083,-2094,-2100,-2399,-2410,-2541], +[0,-2427,-2083,-12745,-3862,-9589,-3264,-1599,-12747,-10606,-2435], +[1,3,7791], +[0,7792,7793,7794,11], +[0,-5334,-12748,-1618,-5204,-5205,-2427,-5356], +[0,-4228,-3037,-3040,-652,-932,-12749,-962,-969,-9602,-1942,-2094,-11167,-12750,-2410], +[0,-9589,-3264,-1599,-4147,-2083,-12745,-2427], +[1,3,7796], +[0,7797,0,7798,5], +[0,-5334,-2586,-2427], +[0,-12743,-3272,-3264,-1838,-3862,-2083,-12745,-4132,-10919,-2427], +[1,3,7800], +[0,7801,7802,7803,8], +[0,-5334,-1286,-5358], +[0,-3037,-652,-1942,-2090,-2094,-2098,-2100,-2101,-2399,-2410,-2427,-2429,-2541], +[0,-3264,-3862,-9591,-2083,-12745,-2427], +[1,3,7805], +[0,7806,7807,7808,4], +[0,-5334,-3649,-4264,-1292,-2429], +[0,-3037,-652,-1942,-2083,-2094,-2100,-2399,-2410,-2541], +[0,-10857,-3264,-7231,-3862,-2083,-12745,-2222,-2427], +[1,3,7810], +[0,7811,0,7812,6], +[0,-5334,-1290,-2427], +[0,-12743,-3272,-7644,-3264,-3862,-2083,-12745,-6233,-6231,-4132,-10919,-2427], +[1,3,7814], +[0,7815,7816,7817,5], +[0,-12751,-305,-12752,-512,-6563,-680,-6869,-4236,-1376,-12753,-1566,-1641,-11656,-1805,-1816,-3547,-8874,-2177,-2654, +-2426,-2436,-12754,-2551], +[0,-190,-12755,-3037,-932,-8339,-1110,-3781,-1498,-12756,-12757,-1942,-2094,-12758,-2323,-2410], +[0,-7641,-5887,-5890,-12759,-5889,-1105,-7661,-9845,-6657,-1764,-8403,-5737,-9244,-2091,-7737,-11729,-5550,-6818,-3673, +-9318,-2177,-3862], +[1,3,7819], +[0,7820,7821,7822,4], +[0,-1405,-1645,-1876,-2231,-2347], +[0,-932,-934,-958,-1127,-1168,-12760,-2125], +[0,-7841,-9219,-2231,-1405,-4005], +[1,3,7824], +[0,7825,0,7826,4], +[0,-2427,-4251,-2098,-5616], +[0,-12743,-3272,-7644,-1599,-10918,-1838,-1958,-2093,-6233,-6231,-4132,-10919,-2427], +[1,3,7828], +[0,7829,0,7830,11], +[0,-3190,-12761,-2093,-12762], +[0,-8425,-687,-1599,-10918,-2093,-2427], +[1,3,7832], +[0,7833,7834,7835,10], +[0,-4251,-10922,-10923,-2098,-5616,-2427], +[0,-3037,-652,-12744,-1942,-2093,-2094,-2100,-2267,-7699,-2399,-2410,-2541], +[0,-10604,-12763,-4329,-1105,-1599,-10918,-3862,-2093,-12764,-5552,-4002,-4109,-2427], +[1,3,7837], +[0,7838,7839,7840,4], +[0,-4251,-1287,-1619,-1290,-2427], +[0,-5334,-3037,-652,-10915,-2586,-1942,-2094,-4242,-2095,-4655,-2098,-2100,-12765,-4656,-2399,-2410,-5358,-2541], +[0,-7644,-3264,-1599,-10918,-3862,-2093,-12764,-6231,-2427], +[1,3,7842], +[0,7843,7844,7845,9], +[0,-5358,-2427,-4251,-12766,-5356,-12767], +[0,-652,-932,-2093,-1942,-1874,-2094,-2410,-5334,-2101,-2090,-12750,-12749,-11167], +[0,-856,-5670,-12768,-3862,-2093,-12764,-2427], +[1,3,7847], +[0,7848,0,7849,5], +[0,-4251,-1618,-10869,-2427], +[0,-12743,-3272,-1599,-10918,-1838,-3862,-2093,-12764,-4132,-10919,-2427], +[1,3,7851], +[0,7852,7853,7854,9], +[0,-12769,-12770,-2095,-12771,-12772,-9514,-9515,-9516,-9517,-9518,-12773,-9519,-12774,-9520,-12775,-12776,-12777,-12778, +-9524,-12779,-9527,-12780,-12781,-12782,-12783,-12784,-12785,-9528,-12786,-12787,-12788,-12789,-12790,-12791,-12792, +-12793,-9532,-9533,-9534,-12794,-9535,-9536,-4995,-12795,-4656,-12796,-12797,-2427], +[0,-86,-3307,-932,-946,-1053,-1344,-1534,-1942,-2094,-2541], +[0,-1105,-6913,-2093], +[1,3,7856], +[0,7857,7858,7859,4], +[0,-12769,-2095,-4655,-9514,-9515,-9516,-9517,-12798,-9518,-12799,-12773,-9519,-12774,-9520,-12775,-12776,-12777,-9522, +-12778,-12800,-12801,-12802,-12803,-12804,-12805,-12806,-12807,-12808,-12809,-12779,-12810,-9527,-12811,-12780,-12812, +-12781,-12782,-12783,-12784,-12785,-9528,-12786,-12813,-12814,-12815,-12788,-12789,-12816,-12817,-12790,-12791,-12792, +-12818,-12819,-12793,-9532,-9533,-9534,-12794,-9535,-9536,-4995,-12795, +-5616,-4656,-9537,-12796,-12820,-2267,-2427], +[0,-1942,-2094,-2399,-2410,-2541], +[0,-6913,-2093,-12821], +[1,3,7861], +[0,7862,7863,7864,8], +[0,-5334,-4251,-1619,-2427,-5358], +[0,-3037,-652,-1942,-2089,-2090,-2094,-2098,-2100,-5616,-2399,-2410,-2541], +[0,-9589,-3264,-1599,-10918,-3862,-12745,-2083,-12764,-2093,-2427], +[1,3,7866], +[0,7867,7868,7869,6], +[0,-503,-12822], +[0,-5514,-589,-8630,-932,-953,-985,-1202,-1304,-1610,-1654,-1788,-2127,-2133,-2137,-2140,-2184], +[0,-8630,-1599,-3437,-1838,-3215,-1958,-2102,-7650,-4065,-5554], +[1,3,7871], +[0,0,125,7872,5], +[0,-1168,-8109,-7693,-3866], +[1,3,7874], +[0,7875,7876,7877,4], +[0,-668,-1107,-2550], +[0,-190,-652,-664,-665,-932,-1654], +[0,-8276,-5554,-7002,-6656], +[1,3,7879], +[0,7880,7881,7882,10], +[0,-1983,-11197,-2446,-1015,-12823,-6397,-12824,-1069,-1641,-12825,-2155,-2364,-12826,-12827,-12828,-12829,-12830,-8956, +-1856,-1459], +[0,-1788,-2322,-1471,-12831,-2125,-708,-615,-2250,-756,-12832,-8375,-633,-641,-9573,-1476,-2188,-1472,-1860,-8958,-1484], +[0,-1334,-5493,-2444,-3590], +[1,3,7884], +[0,7885,7886,7887,4], +[0,-615,-2364,-12833,-12834], +[0,-664,-1168,-668,-1548,-2125,-2105,-1231,-617,-1197,-2150,-1220,-11117,-1973], +[0,-2533,-1334,-1342,-1961,-2105,-11301,-12835,-615], +[1,3,7889], +[0,7890,7891,7892,9], +[0,-12834,-12833,-2364], +[0,-617,-664,-668,-1168,-11117,-1197,-1220,-1231,-1548,-1973,-2105,-2125,-2150], +[0,-2533,-1334,-1342,-1961,-2105,-11301,-12835,-5269], +[1,3,7894], +[0,0,7895,7,10], +[0,-2379,-2410,-710], +[1,3,7897], +[0,0,7898,7899,4], +[0,-5856], +[0,-4792,-9409,-12836], +[1,3,7901], +[0,0,7902,7903,5], +[0,-349,-409,-3044,-3040,-3052,-3714,-427,-12837,-428,-12838,-932,-969,-12839,-1449,-1548,-1565,-1624,-12840,-12718,-1942, +-2006,-2019,-2040,-2125,-2195,-2391,-2410,-2469], +[0,-2006,-2074], +[1,3,7905], +[0,0,7906,7907,4], +[0,-528,-757,-932,-1412,-1413,-1471,-1475,-1479,-1481,-3569,-1486,-1488,-1490,-1491,-1962,-2127,-2141,-2410], +[0,-12841,-10095,-12523,-2444,-3323,-4865,-3582,-6989], +[1,3,7909], +[0,7910,7911,7912,10], +[0,-12842,-7437,-12843], +[0,-6455,-2319,-2359,-2322,-887,-932,-1650,-2125,-2177,-12844,-1777,-1365,-1795,-8569,-2156,-5834], +[0,-2114,-4792,-3966,-3551], +[1,3,7914], +[0,0,14,7915,5], +[0,-4792,-2114,-1847,-3551,-8388,-6546,-6024], +[1,3,7917], +[0,7918,0,7919,10], +[0,-12845,-742,-1543,-1889,-2231], +[0,-2501,-5932,-775,-6811,-6043,-2114,-2435,-2162,-9358,-6656], +[1,3,7921], +[0,7922,7923,7924,5], +[0,-12846,-3780,-1077,-1276,-1442,-12847,-2446], +[0,-21,-23,-5870,-26,-33,-36,-5584,-39,-40,-44,-86,-3531,-3470,-3471,-519,-523,-528,-539,-541,-617,-664,-12848,-756, +-12310,-834,-4088,-932,-12849,-12850,-958,-963,-964,-12851,-966,-968,-971,-12852,-972,-973,-978,-1004,-12853,-1344,-1444, +-1457,-1547,-1654,-1656,-12854,-1788,-2174,-12855,-2293,-12856], +[0,-3960,-489,-3262,-856,-12857,-3636,-12858,-3691,-3690,-1334], +[1,3,7926], +[0,7927,7928,7929,4], +[0,-1983,-788,-12859,-1640,-1801,-1867,-2178,-12860,-2446,-1548,-2177,-2454,-11983,-1582,-1070,-5397,-508,-8541,-12830, +-12861,-6456,-12862], +[0,-1788,-1816,-664,-1107,-1654,-2210,-932,-1650,-2125,-1376,-1754,-1942,-756,-2451,-12863,-8549,-1939,-1972,-856,-12864, +-12865,-960,-940,-967], +[0,-3817,-3161,-1004,-12866], +[1,3,7931], +[0,7932,83,7,4], +[0,-1983,-2536,-2548,-1351], +[1,3,7934], +[0,7935,251,7936,8], +[0,-9050,-2202], +[0,-1000,-12867,-1958,-11998,-12868,-12869,-12870,-12871,-12872,-10018,-687,-5564,-5514,-6713,-4110,-3974,-4000,-3975, +-5550,-3958], +[1,3,7938], +[0,7939,0,7940,8], +[0,-615], +[0,-7685,-12873,-12874,-12875], +[1,3,7942], +[0,0,7943,7,5], +[0,-8959,-1405,-2322], +[1,3,7945], +[0,7946,7947,7948,5], +[0,-932,-3414], +[0,-3037,-1003,-1654,-1788,-2379,-2410], +[0,-6137,-6138,-4215,-5396,-3551,-5119,-4004,-12876,-4676,-8959,-4792], +[1,3,7950], +[0,0,7951,7952,4], +[0,-3415,-708,-12877,-12878,-11961,-12879,-1552,-12880,-12881,-1993,-2250,-2319,-2384], +[0,-7208,-7369,-3589,-702,-6351,-6545,-7371,-7372,-7373,-7374,-7375,-12882,-12883,-12877,-12884,-5922,-6187,-12885,-12886, +-12887,-12888,-12889,-12878,-12890], +[1,3,7954], +[0,7955,7956,7957,4], +[0,-1107,-12891], +[0,-3037,-1650,-1942,-2319,-2386,-2402], +[0,-6695,-12892,-12893,-6694,-7421,-687,-7418,-7371], +[1,3,7959], +[0,7960,7961,7962,4], +[0,-1696,-3846,-6521], +[0,-1412,-12894,-12895,-12896], +[0,-12897,-11189,-12898,-10394,-9711,-6527,-12899,-11321,-2126,-5566,-12900,-12901,-12902,-12903,-712], +[1,3,7964], +[0,202,7965,7966,4], +[0,-6779,-11174,-6780,-6778,-6777,-6776,-190,-4106,-3115,-12904,-5053,-4066,-6429,-350,-4062,-351,-3561,-3266,-3267,-4785, +-12905,-3621,-3037,-8523,-3199,-9146,-12906,-461,-12907,-6426,-639,-644,-679,-726,-753,-767,-12908,-923,-927,-932,-940, +-967,-978,-980,-1054,-12909,-1077,-4706,-1110,-1344,-4788,-1534,-4789,-1588,-1623,-1654,-1753,-12910,-1788,-4916,-1863, +-1864,-2851, +-1942,-1944,-1948,-1951,-2111,-2127,-2134,-2177,-2200,-2202,-2231,-2234,-2314,-2334,-2387,-2410,-2411,-2466,-2468,-2476, +-2478,-5627,-12911,-2551], +[0,-3209,-7882,-12912,-3184,-7176], +[1,3,7968], +[0,7969,7970,7971,4], +[0,-3341,-2145], +[0,-23,-3840,-33,-38,-40,-639,-932,-940,-967,-1344,-1534,-1654,-1942,-2127,-2129,-2133,-2231,-2234], +[0,-12913,-525,-4795,-3184], +[1,3,7973], +[0,7974,7975,7,11], +[0,-639,-2145], +[0,-932,-1654,-2127], +[1,3,7977], +[0,7978,7979,7980,5], +[0,-12914,-2145], +[0,-6429,-932,-1001,-1654,-1788,-2125,-2127,-12915,-12916], +[0,-2127,-12913,-3214,-3184,-3209,-3485,-12917,-7416], +[1,3,7982], +[0,7983,7984,7,4], +[0,-989,-4788,-1588,-2114,-2145], +[0,-23,-40,-43,-461,-932,-958,-1344,-1534,-4789,-1654,-1942,-4790,-2127,-2128,-2133,-2137,-2200,-2231,-2234,-2410], +[1,3,7986], +[0,7987,7988,7989,4], +[0,-1588], +[0,-22,-8355,-12918,-426,-3037,-3040,-652,-2127,-2410], +[0,-12913,-2410,-4160,-12919], +[1,3,7991], +[0,7992,7993,7,11], +[0,-2145], +[0,-932,-958,-1344,-1534,-1654,-1942,-2127,-2129,-2137,-2234], +[1,3,7995], +[0,7996,7997,7998,5], +[0,-12920,-4787,-1548,-1588,-1666,-12921,-12922,-12923], +[0,-23,-40,-43,-3326,-350,-351,-3989,-427,-428,-479,-535,-932,-934,-958,-1022,-1077,-11780,-1168,-12924,-1222,-1412,-1413, +-1942,-2125,-2127,-12925,-12926,-2359,-2410], +[0,-2127,-12913], +[1,3,8000], +[0,8001,8002,252,6], +[0,-12927,-12928,-771,-12929], +[0,-9889,-812,-1654,-2127,-2128,-2136,-2184], +[1,3,8004], +[0,8005,8006,252,6], +[0,-461,-12928,-989,-1588,-12929,-2145], +[0,-527,-558,-633,-1415,-1650,-1654,-2125,-2127,-2128,-2137], +[1,3,8008], +[0,8009,8010,253,5], +[0,-3200,-644,-4793,-2114,-2145], +[0,-23,-40,-43,-922,-932,-1654,-2127,-2128,-2131,-2133,-4794,-2410], +[1,3,8012], +[0,8013,8014,253,9], +[0,-1588,-2145], +[0,-932,-958,-1344,-1534,-4789,-1654,-1942,-2127,-2129,-2200,-2231,-2410], +[1,3,8016], +[0,8017,8018,8019,10], +[0,-4785,-7149], +[0,-3267,-3037,-427,-428,-932,-940,-967,-1415,-1942,-2125,-2127,-2375,-2410], +[0,-2127,-12913,-6915,-2231,-12930], +[1,3,8021], +[0,8022,8023,8024,6], +[0,-22,-1429,-2182,-2334], +[0,-23,-1415,-1942,-2127], +[0,-2127,-12913,-2334,-1644], +[1,3,8026], +[0,8027,8028,8029,5], +[0,-2114,-2145], +[0,-639,-932,-1654,-2125,-2127,-2129,-2131,-2387,-2410], +[0,-12913,-2410,-4795], +[1,3,8031], +[0,8032,8033,8034,4], +[0,-4785,-1046,-1077,-2177,-2387], +[0,-5121,-350,-351,-12931,-3048,-12932,-3136,-3044,-3037,-4067,-3199,-427,-428,-714,-932,-12933,-1415,-1548,-1793,-2125, +-2127,-12934,-2142,-2375,-2410], +[0,-2142,-2141,-12913,-2410,-4795,-2127,-1764], +[1,3,8036], +[0,8037,8038,8039,6], +[0,-22,-1429,-2182,-2416], +[0,-23,-40,-533,-1415,-1942,-2127], +[0,-2127,-12913,-9216,-1644], +[1,3,8041], +[0,8042,8043,8044,4], +[0,-1805,-1864,-2231,-2550], +[0,-350,-351,-3266,-3267,-3269,-12935,-12936,-12937,-12938,-12939,-12940,-3037,-8523,-3041,-651,-798,-6258,-7259,-7268, +-799,-801,-825,-1771,-8065,-1889,-7033,-1940,-1942,-2923,-2127,-4753,-2162,-2387,-2410,-2466,-2469], +[0,-12913,-12941,-5150,-12942,-12943,-12944], +[1,3,8046], +[0,8047,8048,8049,5], +[0,-989], +[0,-426,-3136,-4036,-3037,-1344,-1415,-1534,-1639,-1942,-2127,-2131,-2137,-2141,-2200,-2375,-2388,-2410,-8256], +[0,-2127,-5260], +[1,3,8051], +[0,0,8052,7,5], +[0,-633], +[1,3,8054], +[0,8055,8056,254,10], +[0,-2694,-4007,-649,-658,-1119,-1889,-2234,-2279,-10098,-909,-2193], +[0,-12945,-22,-23,-32,-3194,-26,-35,-6062,-36,-12946,-37,-3368,-3077,-3204,-38,-40,-41,-42,-44,-46,-47,-12947,-12948, +-12949,-12950,-3872,-4020,-237,-269,-12951,-12952,-12953,-12954,-12955,-5038,-3983,-367,-5052,-12956,-12957,-12958,-8355, +-4776,-12959,-10100,-10101,-3269,-12960,-3732,-12961,-5085,-5033,-7080,-3198,-12962,-12963,-3036,-4035,-3850,-3044, +-12964,-5587,-12965, +-8523,-12966,-3040,-3052,-6633,-3199,-12967,-6832,-5673,-12968,-12969,-4204,-8559,-5900,-461,-12970,-2624,-502,-507,-512, +-12971,-8561,-553,-6386,-635,-640,-651,-12972,-2740,-719,-12973,-724,-6842,-6394,-736,-737,-743,-769,-771,-2745,-7189, +-7026,-812,-5034,-6381,-12974,-997,-1047,-1072,-1107,-1273,-1336,-1337,-6388,-1343,-2773,-12975,-1354,-10697,-1401,-1429, +-1460,-1465,-8562, +-12976,-1582,-1643,-1683,-1699,-12977,-9548,-1734,-1816,-6378,-3447,-1827,-1848,-1851,-1864,-6184,-1903,-7164,-1915, +-7165,-2791,-1927,-1929,-1930,-1934,-1958,-1977,-6387,-1999,-2041,-2082,-2163,-2177,-2178,-12978,-8578,-2194,-2231,-2233, +-11463,-6390,-6375,-4195,-12979,-6383,-2269,-3921,-2323,-12980,-2334,-2335,-2343,-6391,-6384,-2594,-12981,-2444,-6380, +-12982,-10052,-2501,-2531,-2564], +[1,3,8058], +[0,0,8059,8060,9], +[0,-6068,-548,-6070,-6071,-8122,-6072,-6081,-6082,-6083,-550,-558,-8121,-7993,-7938,-628,-629,-8116,-7945,-8119,-8118, +-902,-8003,-8004,-12983,-8117,-1654,-1963], +[0,-8123,-5923], +[1,3,8062], +[0,8063,8064,8065,5], +[0,-10415,-1863,-1889,-2271], +[0,-652,-1654,-2250], +[0,-12984,-775,-12985,-2149,-3161,-5553,-10733,-10732,-5845,-6408], +[1,3,8067], +[0,8068,8069,8070,8], +[0,-668,-1022,-1876], +[0,-1168,-1654,-2198], +[0,-7419,-11441,-5562,-1168,-1817], +[1,3,8072], +[0,0,8073,8074,5], +[0,-468,-2322], +[0,-9291,-510,-5924,-5865,-6235,-11727,-5839,-12986], +[1,3,8076], +[0,0,0,8077,4], +[0,-12987,-12988,-12989,-8408,-12990,-12991], +[1,3,8079], +[0,33,8080,8081,9], +[0,-12992,-3,-367,-4007,-3035,-3044,-3621,-3037,-3714,-4372,-3625,-12993,-427,-428,-556,-664,-12994,-712,-714,-767,-796, +-7653,-930,-932,-10031,-1069,-1077,-1107,-6783,-1344,-5726,-1534,-1548,-1646,-1654,-1753,-1771,-4099,-6184,-1942,-1961, +-2127,-12995,-12996,-2137,-2195,-2200,-2210,-2211,-2234,-2314,-2379,-2388,-2389,-12997,-12998,-12999,-2410,-2449,-13000, +-2501], +[0,-12990,-12991,-13001,-13002,-13003,-13004,-6980,-13005,-6948,-6950], +[1,3,8083], +[0,0,31,8084,9], +[0,-640,-13006,-13007,-9594,-2155,-7107,-13008], +[1,3,8086], +[0,8087,8088,8089,4], +[0,-1365,-2177,-2550], +[0,-5834,-515,-516,-887,-932,-13009,-1788,-2322], +[0,-8403,-10483,-1764,-13010,-6818,-9594,-13011], +[1,3,8091], +[0,8092,8093,8094,4], +[0,-13012,-13013,-510,-13014,-668,-719,-13015,-724,-729,-743,-744,-746,-13016,-888,-1004,-1010,-13017,-1107,-13018,-13019, +-12902,-13020,-13021,-13022,-13023,-13024,-1646,-13025,-1840,-1851,-1878,-1965,-13026,-13027,-13028,-2177,-2185,-2187, +-13029,-13030,-2418,-2453,-13031], +[0,-589,-733,-932,-1003,-1077,-13032,-1654,-1783,-1888,-13033,-13034,-13035,-13036,-13037,-13038,-2198,-2229,-2293,-2359], +[0,-13039,-13040,-1004,-13041,-13042,-3817,-3816,-1818,-2228], +[1,3,8096], +[0,8097,8098,8099,5], +[0,-13043], +[0,-2322,-468,-13044,-633,-725], +[0,-6656,-6557,-13045,-7723,-5874,-5559], +[1,3,8101], +[0,8102,8103,8104,8], +[0,-823,-930,-1333,-1396,-13046,-1889], +[0,-932,-1654,-2210,-13047], +[0,-3264,-3215,-7722,-7723], +[1,3,8106], +[0,8107,0,8108,5], +[0,-679,-1361,-2232], +[0,-5553,-3754,-2162,-3277,-775], +[1,3,8110], +[0,8111,8112,8113,5], +[0,-9548], +[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-621,-767,-774,-778,-824,-825,-909,-932,-940,-6929,-958,-959,-960,-965,-967, +-978,-1041,-2629,-1110,-1344,-1415,-1534,-13048,-1623,-1743,-13049,-1771,-1942,-2162,-3572,-2177,-2251,-2275,-2410,-2411, +-2501,-2503,-2505], +[0,-2162,-9264,-2501,-5932], +[0,44,15,16,9], +[1,3,8116], +[0,0,8117,7,8], +[0,-1942,-2319], +[1,3,8119], +[0,8120,8121,8122,9], +[0,-13050], +[0,-13051,-652,-13052,-932,-1446], +[0,-4058,-856], +[1,3,8124], +[0,8125,8126,48,4], +[0,-469,-470,-5329,-4049], +[0,-824,-1415,-1344,-932,-825,-1110,-2501,-1942,-21,-190,-533,-2410,-23,-3037,-1534,-1771,-86,-965,-3560,-2251,-40,-959, +-960,-958,-6929,-978,-940,-967,-3748,-3307], +[1,3,8128], +[0,8129,8130,8131,5], +[0,-2006,-2019,-2634], +[0,-2410,-3037,-3040,-3052,-518,-1889,-2318,-932,-10813], +[0,-13053,-13054,-1072,-5375,-770,-13055,-5375,-3634,-8576,-13056,-3551,-13057,-13058,-5376,-13059,-11152,-5150], +[1,3,8133], +[0,8134,0,8135,5], +[0,-899,-1723,-6127], +[0,-13060,-13061,-13062,-2171], +[1,3,8137], +[0,0,0,8138,4], +[0,-13063,-6555,-770], +[1,3,8140], +[0,8141,8142,8143,8], +[0,-13064,-1468,-2359,-2531], +[0,-190,-5980,-932,-940,-964,-965,-7353,-967,-1004,-1110,-1281,-1446,-1654,-1656,-1685,-1942,-2186,-2210,-2297], +[0,-4864,-11467,-3634,-11468,-12350], +[1,3,8145], +[0,8146,8147,8148,5], +[0,-7040,-13065,-3472,-7041,-7042,-13066,-755,-812,-13067,-999,-1040,-13068,-1100,-13069,-9464,-1315,-13070,-1549,-1610, +-6294,-1639,-13071,-10507,-3609,-2115,-2177,-3642,-2550], +[0,-3037,-3639,-519,-652,-686,-796,-851,-13072,-1077,-1116,-1442,-1547,-8314,-13073,-1722,-1772,-13074,-1942,-2910,-2210, +-13075,-2331,-2341], +[0,-13076,-4864,-5887,-3551,-5897,-8403,-9244,-2177,-9318], +[1,3,8150], +[0,8151,8152,7,4], +[0,-44,-13077,-13078,-2997,-13079,-703,-13080,-1548,-1549,-1967,-2029,-2804,-2192], +[0,-13081,-21,-23,-26,-34,-35,-37,-38,-40,-41,-43,-13082,-4227,-13083,-13084,-4773,-3040,-427,-428,-3807,-13085,-528,-534, +-13086,-539,-540,-13087,-553,-12468,-13088,-664,-13089,-747,-767,-795,-812,-838,-855,-8245,-915,-932,-933,-940,-3071, +-958,-962,-964,-969,-970,-1021,-1103,-1168,-1228,-1266,-1344,-6273,-1471,-1475,-12832,-1476,-1482,-1483,-1492, +-1526,-1534,-1654,-1942,-1955,-1978,-2000,-2006,-13090,-13091,-2018,-2019,-2024,-2027,-2043,-2044,-13092,-13093,-13094, +-2052,-13095,-2125,-13096,-13097,-7708,-2210,-2211,-2214,-2253,-13098,-2335,-13099,-2347,-2410,-2460,-2501,-2502,-2503, +-2504], +[1,3,8154], +[0,8155,8156,8157,4], +[0,-932,-942,-943,-13100,-958,-965,-968,-969,-13101], +[0,-3781,-1631,-1650,-2125,-2151,-2322], +[0,-8180,-13102,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8175,-1445,-1452,-7148,-8184,-8169,-13103,-5493, +-2250,-8185,-5553,-8186,-8187,-8174], +[1,3,8159], +[0,0,8160,7,5], +[0,-4298,-4300,-589,-2319], +[1,3,8162], +[0,8163,191,8164,4], +[0,-812,-907,-929,-990,-1072,-1335,-1641,-1681,-1800,-1997,-2255], +[0,-5142,-6656,-3844], +[1,3,8166], +[0,8167,8168,8169,5], +[0,-13104,-3895,-13105,-13106,-13107,-13108,-13109,-13110,-1555,-1572,-1646,-9375,-13111,-13112,-13113,-1983,-13114, +-13115,-13116], +[0,-3890,-3893,-13117,-3037,-510,-13118,-756,-13119,-1276,-13120,-8936,-1942,-13121,-13122,-13123,-13124,-13125,-2410], +[0,-11151,-5196,-11148,-13126,-6209,-13127,-11150,-6210,-13128,-3161,-13129,-13130,-13131,-3481,-10809], +[1,3,8171], +[0,0,8172,8173,11], +[0,-13132,-510,-589,-932,-1660,-2319], +[0,-2180,-10432,-13133,-11385], +[1,3,8175], +[0,8176,8177,8178,5], +[0,-13134,-2446,-812,-13135,-1548,-1666,-2177,-2451,-1369,-3198,-13136,-13137,-1667,-6109,-13138,-10416], +[0,-1857,-1788,-664,-461,-826,-2763,-1344,-1654,-1826,-2210,-932,-13139,-1692,-2125,-674,-928,-13140,-13141,-2245,-10417, +-10418,-13142,-749,-767,-1026,-13143,-1828,-13144,-12846,-1078,-2211,-2410,-3035,-3037,-1002,-1534,-3621,-4372,-11747, +-305,-3044,-13145,-13146,-13147,-86,-665,-13148,-1609,-2174,-7382,-2234,-960,-964,-13149,-428,-13150,-9404,-427,-13151, +-13152], +[0,-1691,-13140,-3742,-6321,-10425,-1857,-1682,-13153,-13139,-10424,-10418,-10704,-13154,-1818,-3967,-13155,-7685,-7773], +[1,3,8180], +[0,0,8181,8182,4], +[0,-589], +[0,-6233,-12343,-3214,-3756,-4055], +[1,3,8184], +[0,8185,37,8186,6], +[0,-812,-13156,-13157,-13158,-13159,-13160,-13161,-13162,-13163,-13164,-13165,-13166,-13167,-13168], +[0,-13169,-13170,-13171,-13172,-13173,-11573,-1434,-13174,-13175,-13176,-10225,-13177,-13178,-10227,-2183,-13179,-13180, +-5827,-3975,-13181], +[1,3,8188], +[0,8189,8190,8191,4], +[0,-469,-502,-623,-668,-700,-724,-13182,-13183,-5977,-6793,-13184], +[0,-1116,-2392,-2391,-1344,-932,-2469,-1942,-2410,-1534,-50,-3732,-13185,-3664,-13186], +[0,-2455,-2184,-11151,-1339], +[1,3,8193], +[0,8194,8195,8196,6], +[0,-990,-1072,-1681,-1840,-2155], +[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293,-13187], +[0,-1004,-13188,-5401], +[1,3,8198], +[0,8199,8200,7,11], +[0,-459,-7334,-812,-929,-1335,-1641,-1840], +[0,-465,-932,-963,-1654,-1788,-2293], +[1,3,8202], +[0,8203,81,7,5], +[0,-907,-929,-1840,-2178], +[1,3,8205], +[0,8206,8207,8208,4], +[0,-13189,-1640,-1645], +[0,-86,-3307,-13190,-13191,-521,-664,-665,-720,-932,-940,-1077,-1344,-1534,-1573,-5969,-1654,-1729,-1788,-1942,-1972, +-13192,-2210,-2211,-2323], +[0,-13192,-13193,-5819,-5817,-13194,-5937,-13195,-5940,-3258,-3100,-13196], +[1,3,8210], +[0,8211,8212,8213,5], +[0,-13197,-13198,-13199,-13200,-3698,-13201,-13202,-13203,-11209,-13204,-5810,-13205,-13206,-13207,-11197,-620,-4735, +-13208,-5813,-13209,-1805,-7223,-2531], +[0,-13210,-4171,-13211,-3136,-3037,-3738,-4204,-427,-428,-13206,-5813,-928,-13212,-932,-940,-8246,-948,-958,-967,-1344, +-1415,-13213,-13214,-13215,-13216,-1456,-1766,-1942,-5815,-2251,-2375,-2379,-2892,-2410,-2446], +[0,-3112,-5817,-3634,-1415,-13192,-4216,-2469,-5819,-5941,-5943,-5951,-13217], +[1,3,8215], +[0,8216,0,7,4], +[0,-10906,-6130], +[1,3,8218], +[0,0,8219,8220,11], +[0,-528,-558,-566,-664,-932,-1059,-13218,-1344,-1534,-1654,-1942], +[0,-2192,-8495,-6439,-10661,-7378,-13219], +[1,3,8222], +[0,8223,8224,8225,4], +[0,-2177,-13220,-8612], +[0,-8771,-2384,-13221,-2324,-1733,-13222,-1018,-13223,-2581,-1723,-13224,-1448,-13225,-13226,-13227,-13228,-13229], +[0,-9235,-7715,-5315,-5316,-9807,-8642,-3839,-8707,-13230,-6527,-10095,-13231,-7066,-10711,-13232,-13233], +[1,3,8227], +[0,0,8228,8229,5], +[0,-5834,-516,-5835,-932,-993,-1365,-1408,-1777,-1788,-2156,-2322], +[0,-3957,-1838,-13234,-5550], +[1,3,8231], +[0,8232,8233,8234,4], +[0,-999,-1026], +[0,-519,-668,-710,-932,-934,-958,-1442,-1788,-13235,-13236,-2200,-13237], +[0,-2195,-6836,-11642,-5550,-13238,-9218,-1410,-12397], +[1,3,8236], +[0,8237,8238,8239,8], +[0,-1699], +[0,-664,-1127,-1654,-913,-1132,-10682,-2351,-1158,-13239,-9256,-1130,-1156,-1542,-1136,-1144,-1148,-5295], +[0,-13240,-13241,-7231,-2446,-13242,-13243,-3005,-2197,-13244], +[1,3,8241], +[0,8242,8243,8244,4], +[0,-13245,-13246,-13247,-13248,-13249], +[0,-615,-932,-13250,-1654,-1942,-2127,-2137,-2388,-2410], +[0,-4004,-3440,-507,-2198], +[1,3,8246], +[0,75,8247,8248,4], +[0,-1127,-1134,-1136,-1144,-1148,-1150,-1151,-13251,-1152,-1163,-1449,-1542,-1856,-13252,-2177,-13253,-2234], +[0,-1599,-6473], +[1,3,8250], +[0,8251,8252,8253,8], +[0,-1646,-2195], +[0,-526,-558,-566,-932,-934,-8246,-958,-1442,-1654,-1788,-2125,-13235,-13254,-13236,-2198], +[0,-2195,-5550,-11642,-6836,-6837,-8421,-687,-3977], +[1,3,8255], +[0,0,8256,8257,9], +[0,-7080,-3037,-9867,-5866,-652,-1942,-2319,-2379,-2402,-2410], +[0,-5395,-1000], +[1,3,8259], +[0,8260,8261,8262,5], +[0,-474], +[0,-1273,-1948,-2127,-2129,-2416], +[0,-5176,-13255,-10724,-659], +[1,3,8264], +[0,8265,8266,8267,8], +[0,-13256,-13257,-812], +[0,-13258,-13259,-3198,-3136,-3037,-928,-11714,-1415,-2379,-2410], +[0,-5889,-13260,-12263], +[1,3,8269], +[0,0,8270,8271,5], +[0,-2384,-1415,-1344,-1868,-932,-2125,-2127,-1942,-767,-533,-23,-3136,-726,-13261,-1952,-44,-50,-40,-953,-13262,-32,-3326, +-2140,-3561,-13263,-350,-351,-8280,-13264,-536,-37], +[0,-5070,-6814,-11889,-9668,-3161,-2006,-475,-2476,-3122,-6209,-3100], +[1,3,8273], +[0,8274,8275,8276,4], +[0,-4884,-357,-13265,-834,-2297], +[0,-23,-4885,-4886,-4887,-4888,-13266,-11471,-13267,-539,-812,-829,-928,-13268,-10877,-1099,-1534,-1654,-1788,-1942,-1978, +-2125,-2177,-2195], +[0,-2210,-4004,-3634,-5119,-8611,-4216,-8959,-4123,-13269,-4215,-2533,-507], +[1,3,8278], +[0,0,8279,8280,9], +[0,-190,-652,-664,-932,-1654,-1942,-2210], +[0,-664,-6537,-4865,-13270,-13271,-2210,-3634,-7244,-7245,-7243], +[1,3,8282], +[0,8283,8284,8285,5], +[0,-4166,-3544,-510,-648,-13272,-13273,-1650,-2177,-6920,-1004,-1442,-2105,-927,-719,-1645,-1464,-1276,-617,-724,-1335, +-1304,-13274,-13275,-2062,-13276], +[0,-1654,-615,-633,-13277], +[0,-6011,-5897,-7737,-11722,-3209,-1971,-3844], +[1,3,8287], +[0,8288,0,7,6], +[0,-13278,-5036,-13279], +[1,3,8290], +[0,8291,0,8292,11], +[0,-13280,-1532,-13281,-1863,-2654], +[0,-2214,-687,-985,-6187,-13282,-13283], +[1,3,8294], +[0,89,56,8295,5], +[0,-13284,-13285,-13286,-3445,-3100,-7566], +[1,3,8297], +[0,8298,8299,8300,10], +[0,-13287,-13288], +[0,-2501,-2376,-2410,-2503,-13289,-2502], +[0,-3445,-13290,-3690,-13192,-7685], +[1,3,8302], +[0,0,14,8303,5], +[0,-1847,-13291,-2218,-11635,-7084,-5845], +[1,3,8305], +[0,8306,8307,8308,4], +[0,-482,-13292], +[0,-519,-668,-13293,-2269,-2541], +[0,-4783,-2265,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958, +-5554], +[1,3,8310], +[0,8311,86,8312,4], +[0,-9371,-677,-5500,-13294,-13295,-10347,-13296,-1705,-1856,-13297,-1951,-1959,-13298,-2330,-2550], +[0,-13299,-3015,-9460,-1764,-1380], +[1,3,8314], +[0,0,8315,8316,5], +[0,-11254,-3470,-3471,-3311,-652,-1654,-2174,-2250], +[0,-2223,-2222,-2265,-2443,-9312,-4112,-2435], +[1,3,8318], +[0,0,8319,8320,4], +[0,-756,-13300,-1654,-1788], +[0,-2223,-2222,-2435,-13301], +[0,44,15,16,11], +[1,3,8323], +[0,8324,0,8325,4], +[0,-668,-1370,-1646,-2062,-13302,-2269,-2343], +[0,-3240,-13303,-13304,-2250,-13305,-10317,-13306,-13307,-13308,-13309], +[1,3,8327], +[0,8328,8329,8330,5], +[0,-523,-13310,-812,-1063,-1070,-1100,-1548,-2165,-2270,-6587,-13311], +[0,-190,-3198,-3734,-3044,-3037,-13312,-6594,-617,-714,-834,-855,-883,-932,-1004,-1045,-1107,-1654,-1788,-1942,-2062, +-2177,-2187,-2198,-2210,-2234,-10402,-2402,-2410,-2411], +[0,-2227], +[1,3,8332], +[0,8333,0,8334,4], +[0,-459,-13313,-754,-812,-5454,-13314,-4208], +[0,-8841,-3161,-2512,-9043,-997,-9005,-13315], +[1,3,8336], +[0,8337,0,8338,4], +[0,-13316,-812,-5455,-4208], +[0,-8841,-3161,-2512,-9043,-997,-3323], +[1,3,8340], +[0,8341,8342,8343,4], +[0,-812,-13317,-10622,-1370,-2438], +[0,-633,-913,-932,-1003,-1168,-1208,-1243,-1244,-1252,-1262,-1471,-1472,-1473,-1475,-1482,-1654,-1972,-1976,-2187,-13318, +-2461,-2463], +[0,-6224,-2512], +[1,3,8345], +[0,0,8346,7,8], +[0,-652,-855,-932,-1942,-940], +[1,3,8348], +[0,0,8349,7,6], +[0,-13239,-855,-2501], +[1,3,8351], +[0,8352,8353,48,6], +[0,-1351,-2232], +[0,-21,-23,-40,-86,-3307,-7166,-533,-767,-774,-824,-825,-932,-940,-958,-1344,-1415,-1534,-1623,-1771,-1942,-2251,-2501], +[1,3,8355], +[0,8356,8357,7,4], +[0,-6829,-2231], +[0,-633,-711,-1339,-1654,-2501], +[1,3,8359], +[0,0,92,8360,5], +[0,-5092,-3264,-7451,-13319,-7205,-1838,-6231], +[1,3,8362], +[0,8363,8364,8365,8], +[0,-13320,-13321,-13322,-9193,-13323,-674,-711,-719,-1026,-1119,-1122,-13324,-1127,-1134,-1136,-1137,-1138,-1140,-1148, +-1149,-1160,-1276,-1304,-1333,-1440,-1442,-13325,-1460,-1548,-1610,-13326,-1889,-2162,-2312,-2359], +[0,-21,-23,-40,-43,-4710,-13327,-664,-665,-3629,-932,-964,-966,-974,-1654,-1753,-1942,-2123,-2125,-2210,-2211], +[0,-1122,-3671,-856,-13328,-13329,-3690,-4258,-3262], +[1,3,8367], +[0,8368,8369,7,8], +[0,-2346], +[0,-994,-8392,-8393,-8394,-13330], +[1,3,8371], +[0,0,8372,7,5], +[0,-13331,-13332,-11961,-1788,-1939,-2250,-2322], +[0,0,83,7,5], +[1,3,8375], +[0,0,8376,7,4], +[0,-1168,-1654,-932,-589,-1231,-1197,-1208,-1243,-1262,-13333,-1252], +[1,3,8378], +[0,8379,8380,8381,5], +[0,-615,-712,-714,-783,-1077,-1276,-13334,-3999,-1548,-1757,-7667,-13335,-9395,-2347,-2460,-2462,-13336,-13337], +[0,-664,-756,-1405,-1654,-1657,-13338,-13339], +[0,-13340,-9278,-13341,-775,-3754,-1521,-2162,-2244,-13342,-7419], +[1,3,8383], +[0,8384,8385,8386,4], +[0,-596,-1723,-6521,-2323], +[0,-932,-1654,-12894], +[0,-10424,-3742,-2245,-7685], +[1,3,8388], +[0,8389,8390,8391,5], +[0,-13343,-13344], +[0,-932,-6461], +[0,-8905,-2246,-9456,-7721,-5550,-8421,-8908,-3323], +[1,3,8393], +[0,8394,8395,8396,10], +[0,-9084], +[0,-4298,-4300,-589], +[0,-5387,-3578,-7107,-13345,-10908,-10930,-13346,-13347,-13348,-13349,-13350,-3264], +[1,3,8398], +[0,8399,91,8400,9], +[0,-2548], +[0,-2248,-4055,-2548,-9886,-10410,-7773,-6129,-13351,-13352,-3689,-7685,-856,-3445,-6857,-1671,-1050,-1691,-2245,-6597, +-13353,-10425,-4055,-6917,-13354], +[1,3,8402], +[0,0,8403,7,11], +[0,-40,-533,-1415,-13355], +[1,3,8405], +[0,8406,8407,8408,6], +[0,-932,-943,-13100,-958,-965,-968,-969,-13101,-13356], +[0,-769,-1274,-1646,-13357,-2151,-5470,-2322], +[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2250,-8185,-5553, +-8186,-8187,-8174], +[1,3,8410], +[0,8411,8412,8413,5], +[0,-668,-739,-13358,-741,-10524,-831,-8888,-13359,-1040,-1047,-12340,-2177,-13360,-2550], +[0,-664,-932,-943,-958,-966,-968,-1654,-1658,-1663,-1788,-2195,-13361], +[0,-739,-13362,-5887,-5886,-5962,-9318,-475,-2250], +[1,3,8415], +[0,8416,8417,8418,4], +[0,-502,-615,-13363,-812,-999,-13364,-4703,-2648], +[0,-3037,-13365,-664,-767,-829,-13366,-13367,-13368,-1116,-1457,-3809,-1646,-1654,-13369,-10652,-2174,-13370,-2210,-2211, +-8527,-2250], +[0,-6657,-5921,-3844,-11818,-4004,-3590,-4116], +[1,3,8420], +[0,8421,8422,8423,5], +[0,-13371,-10926,-1093,-13372], +[0,-2330,-1754,-2424], +[0,-2254,-13373,-13374,-13375,-8841], +[1,3,8425], +[0,0,8426,8427,5], +[0,-790,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-1999,-9374], +[0,-1334,-9745,-707], +[1,3,8429], +[0,8430,8431,8432,4], +[0,-2531,-1805,-2066,-2177,-928,-6488,-13376,-4890,-13377,-12518,-407,-410], +[0,-888,-2564,-664,-834,-1107,-1431,-2213,-999,-1526,-1623,-3548,-2006,-2218,-8609,-1111,-1699,-1778,-13378,-928,-13379, +-1085,-1442,-3447,-2114,-2358,-13380,-1885,-1942,-4893,-4204,-656,-719,-2578,-1864,-13381,-2019,-3654,-2400,-12982,-2528, +-4370,-3517,-13382,-1863,-2231,-2269,-2410,-23,-9939,-3037,-769,-832,-13383,-47,-6192,-4894,-4918,-25,-13384,-3199, +-13385,-831,-13386, +-6467,-13387,-6447,-3772,-3778,-3660,-3735,-13388,-6744,-13389,-3896,-13390,-12695,-2383,-46,-163,-6630,-13391,-13392, +-13393,-11751,-3194,-13394,-8523,-13395,-2044,-13396,-747,-13397,-7080,-13398,-4239,-13399,-13400,-13401,-13402,-13403, +-13404,-5474,-2271,-13405,-13406,-13407,-13408,-406,-13409,-13410,-5322,-13411,-3776,-409,-13412,-13413,-4008,-8273, +-2641,-13414,-3459,-13415,-13416,-13417,-5296,-13418,-13419, +-13420], +[0,-2257,-3095,-3098,-13421,-13422,-2006,-2634,-9736,-2034,-3138,-2476,-475,-2299,-3176,-4902], +[1,3,8434], +[0,8435,8436,8437,8], +[0,-1338], +[0,-13423,-4762,-4763,-4754,-13424,-13425,-13426,-13427,-4749,-4758,-13428,-407,-409,-3136,-4961,-3040,-932,-13429,-1415, +-4980,-1419,-1942,-1967,-1978,-2006,-2019,-2162,-2163,-2257,-2375,-2410,-2516,-2548], +[0,-4900,-2257,-13430,-3098,-856,-3100,-13431,-13432,-13433,-13434,-13435,-1783], +[1,3,8439], +[0,8440,0,147,5], +[0,-3,-23,-40,-3538,-3539,-668,-674,-679,-714,-719,-755,-3542,-1022,-13436,-1077,-1107,-1276,-1320,-1349,-13437,-1460, +-1548,-1577,-3543,-3544,-1610,-1646,-3546,-3547,-11926,-9151,-2177,-2368,-2378,-2446], +[1,3,8442], +[0,68,15,16,11], +[1,3,8444], +[0,212,8445,8446,5], +[0,-13438,-13439,-1654,-2198], +[0,-13440,-5827], +[1,3,8448], +[0,0,8449,8450,4], +[0,-351,-3621,-3037,-789,-885,-1654,-7210,-1942,-2127,-2135,-2136,-2198,-2379,-2392,-2410], +[0,-5827,-6408,-788,-7208,-3445,-3100], +[1,3,8452], +[0,8453,56,8454,5], +[0,-7590,-305,-7565,-1061,-1406,-13441,-5721], +[0,-13442,-13443,-3445], +[1,3,8456], +[0,0,0,8457,9], +[0,-2264,-3276,-2265,-4123,-4121], +[1,3,8459], +[0,0,8460,8461,4], +[0,-1168,-1177,-1231,-1243,-13444,-1262,-11473,-2416], +[0,-2265,-6816,-13445,-13446,-13447,-13448,-788,-3264,-3223,-1838,-3264,-9702,-6817,-11647,-6422,-6420,-5559,-9692], +[1,3,8463], +[0,8464,8465,8466,4], +[0,-3164,-13449,-1320,-1549,-13450,-13451,-13452], +[0,-13453,-13454,-12508], +[0,-707,-7347,-8388,-3264,-13455,-13456,-6694,-9357,-13457,-2265,-6817,-9702,-7651,-5554,-13458], +[1,3,8468], +[0,8469,14,8470,4], +[0,-13459,-2269], +[0,-2265,-7472,-4112,-6730,-13460,-6787,-13461,-13462,-13463,-6786,-13464,-13465,-5514,-5559,-5563,-687,-3958,-3974,-4000, +-13466,-13467,-13468,-13469,-13470,-13471], +[1,3,8472], +[0,8473,8474,8475,5], +[0,-2737,-2738], +[0,-3037,-652,-2736,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-6231,-6422,-5559,-3264,-7472,-4846,-8034,-3223], +[1,3,8477], +[0,8478,238,8479,4], +[0,-481], +[0,-6817,-11647,-6694,-5514,-3770,-712,-5535,-714,-3974,-4000,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545, +-3958,-5554], +[1,3,8481], +[0,0,14,8482,4], +[0,-6817,-9310,-6472,-7154,-9311,-4112,-2443,-9312,-6694,-6693,-11647,-5554,-2265], +[1,3,8484], +[0,0,8485,8486,4], +[0,-519,-1612,-2384,-2541], +[0,-4055,-6817,-3485,-6694,-6693,-11647,-6810,-1838,-727,-3870,-6849,-2444,-6845,-5558,-8292], +[1,3,8488], +[0,0,8489,8490,4], +[0,-1788,-664,-1722,-1654,-932,-2379,-1942,-1729,-2410,-3035,-3037,-3621,-13472,-665,-958,-1656,-940,-967,-4269,-428, +-4628,-427], +[0,-2272,-13473,-13474,-3690], +[1,3,8492], +[0,8493,8494,8495,5], +[0,-510,-812,-13475,-13476,-1735,-13477,-1758,-1813,-2059,-13478,-13479,-13480,-13481,-13482,-12003,-13483,-13484,-13485, +-2518,-1464,-642,-13486,-797,-1298,-1370,-1521,-1548,-1579,-10695,-11015,-13372,-1666,-2062,-9798,-2245,-13487,-10690, +-13488,-13489,-13490,-11800,-2531], +[0,-932,-1445,-2319], +[0,-4344,-13491,-11755,-13492,-10705,-13493,-5804,-9733,-5805,-7641,-4161,-9844,-727,-3015,-8901,-8904,-13494,-1066,-5889, +-11021,-13495,-5545,-10706,-9800,-13496,-10412,-13497,-11230,-13498,-1764,-13499,-13500,-13501,-6187,-13502,-1958,-6479, +-11429,-11722,-13503,-4043,-5196,-13504,-13505,-8027,-13478,-13506,-13507,-12003,-13485,-2273,-13508,-2295,-7307,-4123, +-13509], +[1,3,8497], +[0,8498,8499,8500,4], +[0,-13510,-13511,-13512,-13513,-668,-671,-5971,-719,-1395,-1460,-13514,-1942,-2355], +[0,-6327,-2843,-50,-86,-3307,-13515,-13516,-3989,-13517,-3035,-3037,-5011,-3738,-428,-3311,-13518,-3312,-461,-2834,-664, +-932,-964,-969,-989,-1077,-13519,-1344,-13520,-1448,-13521,-1521,-1534,-5273,-10918,-5670,-1654,-9002,-1771,-4916,-2162, +-2177,-2193,-13522,-2286,-2410,-2429,-2446,-2548], +[0,-13523,-5553,-13524,-775,-3099,-7205,-2162,-3754,-5739,-13525,-2006,-3163,-4901], +[1,3,8502], +[0,0,8503,48,4], +[0,-1415,-2162,-1344,-1449,-1623,-774,-932,-2177,-825,-2501,-920,-1942,-767,-21,-533,-778,-23,-1041,-1534,-1771,-2163, +-2503,-86,-2251,-40,-2505,-958,-940,-1419,-3307,-7166], +[1,3,8505], +[0,8506,8507,8508,5], +[0,-2277], +[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3136,-427,-428,-932,-967,-4814,-1110,-1344,-1415,-1534,-1942,-2127,-2375, +-2379,-2410], +[0,-2276,-775,-5553,-3214,-7208,-9680], +[1,3,8510], +[0,8511,8512,8513,6], +[0,-1374], +[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3267,-3136,-3037,-427,-428,-932,-967,-4814,-1110,-1344,-1415,-1534,-1771, +-1942,-2910,-2127,-2375,-2379,-2387,-2410], +[0,-2277,-9339,-5553,-3215,-775,-7208,-9680], +[1,3,8515], +[0,8516,8517,8518,11], +[0,-3776,-5577,-13526,-13527,-786,-1889,-2192,-3768,-2387], +[0,-23,-3341,-3840,-26,-36,-3203,-40,-41,-42,-3267,-406,-407,-409,-410,-3043,-3136,-13528,-3037,-3040,-3052,-13529,-3141, +-3081,-13530,-533,-535,-8560,-6046,-3563,-1415,-1419,-3667,-1428,-1440,-1942,-1967,-2006,-2019,-13531,-2034,-2052,-2127, +-2131,-2133,-2137,-2138,-2139,-2140,-13532,-13533,-2410], +[0,-2006,-775,-3771,-2278,-4134], +[1,3,8520], +[0,8521,8522,8523,11], +[0,-2740], +[0,-21,-23,-36,-3077,-3373,-3204,-38,-40,-41,-43,-44,-47,-3040,-519,-3766,-9723,-742,-932,-940,-1344,-1543,-1942,-1952, +-2006,-2019,-2174,-2231,-12979,-3768,-13534,-2410], +[0,-3766,-2455,-13535,-3771,-775], +[1,3,8525], +[0,8526,22,8527,10], +[0,-635,-1931], +[0,-6413,-775,-13536,-13537,-7192,-1889,-3583,-2280], +[1,3,8529], +[0,8530,8531,8532,6], +[0,-93,-7195,-94,-95,-12147,-98,-9352,-2840,-755,-777,-781,-812,-1026,-11676,-8142,-6197,-1111,-13538,-1327,-1353,-3190, +-8143,-1396,-1499,-13539,-1630,-1639,-1759,-1863,-1889,-1929,-1931,-1934,-2267,-2591,-13540,-4002,-2530], +[0,-50,-13541,-5121,-13542,-13543,-13544,-5685,-3198,-13545,-13546,-13547,-13548,-4036,-6928,-13549,-8335,-13550,-9284, +-589,-722,-823,-932,-13551,-958,-959,-1344,-1415,-13552,-1428,-1534,-4984,-1771,-4916,-1904,-1906,-12130,-13553,-1930, +-1942,-2094,-2289,-2410], +[0,-3771,-775,-1521,-7148,-8170,-1599,-2162,-3754,-2281,-2289], +[1,3,8534], +[0,8535,8536,8537,9], +[0,-3085], +[0,-13542,-13543,-932,-13551,-1344,-1534,-1771,-1942,-2094,-2281], +[0,-2281,-13554,-2250], +[1,3,8539], +[0,0,8540,8541,5], +[0,-1788,-1415,-1344,-1868,-855,-932,-708,-2402,-1942,-13555,-767,-2281,-21,-533,-13556,-5128,-2410,-23,-5870,-1534,-1637, +-43,-86,-2174,-40,-13557,-959,-977,-958,-3471,-13552,-3842,-940,-967,-2405,-42,-428,-3470,-3307,-935,-427,-3363,-5585, +-26,-36], +[0,-13558,-2281,-775,-3754,-1521,-7148,-13559,-3833,-5924,-13560,-712,-13561], +[1,3,8543], +[0,8544,8545,8546,4], +[0,-1889,-13562], +[0,-932,-13563,-940,-1110,-1344,-1415,-12241,-13552,-1428,-1534,-1904,-12130,-13564,-1942,-13565,-2281], +[0,-13558,-2281,-775,-7148,-7154], +[1,3,8548], +[0,8549,8550,8551,4], +[0,-781,-1396,-1499,-1620,-13566,-13567,-1931,-1934], +[0,-722,-767,-932,-13568,-1344,-1415,-13552,-1534,-1763,-1889,-12130,-1930,-1942,-2281], +[0,-775,-9231,-7148,-8170,-3754,-2281,-13558], +[1,3,8553], +[0,8554,128,8555,6], +[0,-28,-812,-1107,-2165,-2231], +[0,-775,-3215,-5553,-9406,-1409,-6784], +[1,3,8557], +[0,8558,8559,8560,6], +[0,-1026,-1759], +[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-589,-13569,-767,-774,-778,-824,-825,-932,-940,-6929,-958,-959,-960,-965,-967, +-978,-1110,-1344,-1415,-1534,-1623,-1717,-1771,-1942,-2000,-2251,-2275,-2286,-2411,-2501], +[0,-2501,-5932,-2286], +[1,3,8562], +[0,0,0,8563,11], +[0,-775,-1889,-12209,-4132,-6806,-3215], +[1,3,8565], +[0,8566,8567,8568,5], +[0,-723,-13570,-812,-13106,-1069,-1070,-1636,-1640,-1983], +[0,-21,-23,-38,-40,-44,-86,-3307,-571,-7124,-11178,-617,-633,-744,-767,-932,-946,-952,-966,-1004,-1010,-1053,-1098,-1344, +-1534,-1610,-1654,-1685,-1788,-2094,-2099,-2125,-2198,-13571,-13572,-2541,-2568], +[0,-9733,-5998,-5998,-3690,-510,-5867,-523,-5391,-3323,-13573,-1116,-1334,-1334,-1342,-9128,-1961,-1961,-5923,-2105,-2105, +-9176,-13503,-3691,-2122,-13574,-2291,-7430,-6408,-2533,-2540], +[1,3,8570], +[0,8571,8572,7,6], +[0,-10528], +[0,-3198,-11232,-3037,-589,-10300,-1671,-8973,-2410,-2469], +[1,3,8574], +[0,8575,8576,8577,5], +[0,-1636,-2291,-746], +[0,-1788,-1722,-1654,-2210,-932,-2198,-1004,-1972,-617,-744,-86,-958,-934,-3307], +[0,-3440,-1334,-2105,-2291,-4873,-4004,-3634], +[1,3,8579], +[0,8580,8581,8582,4], +[0,-615,-1636], +[0,-664,-665,-2123,-2517,-617,-744,-1004,-1654,-2198], +[0,-2293,-2291,-2105,-4873,-3440,-1334,-4004,-3634,-1961,-13575], +[1,3,8584], +[0,0,8585,8586,5], +[0,-2541,-519,-2384,-3037], +[0,-712,-5535,-714,-3974,-4000,-687,-5514,-3770,-3975,-5549,-5513,-5550,-2547,-3958,-6520,-13576,-13577,-6659,-13578, +-13579], +[1,3,8588], +[0,8589,8590,8591,6], +[0,-3195,-3115,-5032,-426,-461,-5113,-8294,-703,-5034,-5035,-13580,-4788,-4789,-1588,-13581], +[0,-3180,-3983,-350,-351,-3266,-3989,-5114,-3037,-5040,-928,-2127,-2231,-2654,-2410,-2469], +[0,-2299,-11193,-3161,-3261,-7651], +[1,3,8593], +[0,8594,8595,8596,4], +[0,-3180,-679,-4787,-1863,-5037], +[0,-350,-4062,-351,-3561,-3267,-13582,-644,-2127,-2130,-4063,-2299,-2410,-13583,-13584,-11164,-11165,-13585,-13586], +[0,-2299,-687], +[1,3,8598], +[0,0,8599,8600,4], +[0,-23,-40,-86,-3307,-13587,-13588,-4776,-3037,-13589,-8336,-518,-5859,-711,-740,-932,-1521,-1889,-13590,-1907,-1942, +-1974,-2162,-2286,-2289,-2299,-2410,-2469], +[0,-2299,-9263,-2410,-1521,-2286,-2162,-3754,-1974,-711], +[1,3,8602], +[0,8603,8604,8605,4], +[0,-2746,-1107,-2303,-510,-10310,-2460,-2542,-2550,-1442,-2520,-1689,-13591,-1566,-8054,-4733,-13592,-5981], +[0,-2541,-1415,-1521,-2162,-1880,-2286,-1870,-959,-960,-13593,-13594], +[0,-3167,-3843,-3839,-7715,-9278,-9279,-9471,-3262,-775,-2162,-1521,-2286,-3271,-9339,-3264,-9472,-9473,-9474,-1689,-7419], +[1,3,8607], +[0,8608,8609,8610,4], +[0,-719,-780,-781,-2888,-2746,-1863,-2165], +[0,-190,-5121,-350,-351,-3266,-5685,-7169,-3136,-3037,-13312,-3715,-767,-932,-1110,-1415,-1870,-1874,-1880,-1942,-2125, +-2127,-2325,-2384,-2410], +[0,-2303,-3839,-7175,-1644], +[1,3,8612], +[0,8613,8614,8615,4], +[0,-824,-1570,-13595,-2415], +[0,-519,-526,-528,-556,-11733,-562,-566,-615,-932,-13596,-1626,-1650,-2210,-2501], +[0,-2501,-3862,-13597,-13595,-5196,-8615], +[1,3,8617], +[0,8618,8619,8620,8], +[0,-461,-823,-1107,-1460], +[0,-932,-1942,-2322,-13598], +[0,-4847,-13599,-3696,-8442,-856,-2305,-5885,-5886,-3262,-3960,-8443,-8444,-8445,-3438], +[1,3,8622], +[0,8623,8624,8625,4], +[0,-1111,-1442,-719,-13600,-13601], +[0,-932,-2469,-1942,-3664,-13602], +[0,-4847,-3671,-13603,-856,-3690,-9339,-3485], +[1,3,8627], +[0,0,131,8628,4], +[0,-3812,-4847,-3160,-2308,-1004,-856,-3671,-13604,-5406,-2307,-4101,-13605,-13606], +[1,3,8630], +[0,8631,8632,8633,4], +[0,-3434], +[0,-927,-1004,-13607,-1654,-1788,-1978], +[0,-4847,-1004,-3160,-4055,-856], +[1,3,8635], +[0,8636,8637,8638,6], +[0,-2416,-1813], +[0,-1548,-1004,-13608,-1654,-1003,-13609,-1521,-13610,-600,-13611,-1859,-633,-6656,-1446], +[0,-3110,-7651,-3264,-13432,-13612,-6876,-1004,-6301], +[1,3,8640], +[0,0,0,8641,9], +[0,-2311,-13613,-12449,-2363,-5270,-3162,-752,-1861,-3994,-3161,-13614,-12613,-13615,-3862,-2006,-2476,-13616], +[1,3,8643], +[0,8644,8645,8646,4], +[0,-13617,-13618,-13619], +[0,-617,-767,-1004,-13620,-1415,-1676,-2125,-2410], +[0,-2105,-1334,-1342,-3324,-633,-12397,-6367], +[1,3,8648], +[0,0,0,8649,9], +[0,-13621,-13622,-1673,-11230,-1819,-9261,-12578,-7084,-13623,-13624,-13625,-13626,-13627,-13628,-13629,-12218,-13630, +-3708,-13631,-10412,-8801,-13632,-13633,-13634,-13635,-5150,-13636,-13637,-13638,-13639,-13640,-13641,-13642,-13643, +-13644,-7606,-13645,-13646,-6524,-13647,-13648,-13649,-6712,-13650,-13651,-10245,-13652,-13653,-13654,-13655,-13656, +-13657,-13658,-3445,-13173,-13659,-13660], +[1,3,8651], +[0,0,8652,7,4], +[0,-1805,-1496,-1654,-1650,-2125,-2127,-2334,-615,-1729,-13661,-8559,-2516,-2234,-4062,-2140,-3561,-13662,-351,-13663], +[1,3,8654], +[0,8655,8656,8657,4], +[0,-2531,-469,-754,-13664,-13665,-13666,-13667,-1548,-1676,-13668,-13669,-13670,-13671,-1004,-13672,-13673,-13674,-13675, +-13676,-512,-617,-724,-737,-13677,-496,-44,-13678], +[0,-1708,-473,-13679,-13680,-2195,-13681,-722,-13682], +[0,-13683,-13684], +[1,3,8659], +[0,0,8660,8661,9], +[0,-5369,-2387,-932,-1111,-2127,-2469,-1942,-2410,-23,-3037,-40,-2132,-2411,-3664,-3326,-958,-5122,-6593,-13685,-3267, +-351,-10022,-3344], +[0,-2318,-2316,-775,-3205,-13686,-13687,-1631,-9342,-13688], +[1,3,8663], +[0,0,8664,7,4], +[0,-815,-3037,-3751,-1588,-2232,-13689,-3195], +[1,3,8666], +[0,8667,0,8668,10], +[0,-13690,-13691,-13692,-13693,-13694,-13695,-13696,-13697,-13698,-13699,-13700,-13701,-13702,-13703,-13704,-13705,-13706, +-13707,-13708,-13709], +[0,-507,-2319,-4004,-3634,-3161,-687,-13710,-13711], +[1,3,8670], +[0,8671,8672,8673,9], +[0,-668,-883,-1040,-1548,-1951,-10854,-13712,-2347], +[0,-13713], +[0,-2322,-2319,-1654,-4679,-6863], +[1,3,8675], +[0,0,8676,7,6], +[0,-1415,-932,-1110,-1942,-190,-533,-23,-965,-3560,-40,-959,-958,-6929,-978,-940,-967,-3748], +[1,3,8678], +[0,8679,8680,8681,9], +[0,-13714,-13715,-13716,-655,-821,-6369,-13717,-1065,-1097,-1107,-13718,-1285,-1370,-7394,-1646,-1659,-1794,-5849,-1795, +-1797,-2114,-8057], +[0,-5834,-505,-516,-725,-767,-887,-13719,-5835,-921,-932,-6282,-1408,-1442,-13720,-1777,-1788,-2156,-2177,-2319,-8573], +[0,-2319,-4004,-13721,-507,-4865], +[1,3,8683], +[0,8684,8685,7,5], +[0,-13722,-13723,-9084,-11721,-13724], +[0,-2319,-1722,-2386,-13725,-2125,-2402,-1942,-11719,-3037,-908,-13726], +[1,3,8687], +[0,8688,8689,8690,5], +[0,-1976,-2325], +[0,-2125,-13727,-2250], +[0,-2323,-1076,-6656,-7738,-7421,-5827], +[1,3,8692], +[0,8693,8694,7,6], +[0,-13728,-13729,-13730], +[0,-13727,-2250,-725], +[1,3,8696], +[0,33,8697,8698,6], +[0,-6486,-6627,-3136,-3037,-427,-428,-756,-928,-932,-943,-958,-966,-968,-1415,-1942,-2375,-2410], +[0,-13731,-3555,-13732,-13733,-3100,-13734,-3445,-13735,-11074,-6235], +[1,3,8700], +[0,0,8701,8702,4], +[0,-6486,-13736,-13737,-3617,-6627,-3136,-3037,-4203,-427,-428,-617,-720,-796,-13738,-932,-943,-958,-966,-968,-1344,-1415, +-1534,-1753,-7760,-1942,-2293,-2375,-2410], +[0,-13731,-3555,-13732,-13733,-3445,-13735,-6367,-1004], +[1,3,8704], +[0,8705,0,8706,8], +[0,-812,-1723,-6127], +[0,-13739,-13740,-13741,-13742,-13743,-596,-13744,-3445], +[1,3,8708], +[0,8709,8710,8711,8], +[0,-812,-1723], +[0,-190,-3561,-3198,-3037,-8612,-865,-932,-940,-972,-978,-1733,-1942,-2402,-2405,-2410,-2411,-2466,-6859,-2469], +[0,-13739,-13742,-2328,-3966,-3445], +[1,3,8713], +[0,8714,27,258,5], +[0,-2125,-1650], +[1,3,8716], +[0,8717,8718,8719,4], +[0,-1399,-5917,-2400,-13387], +[0,-3037,-519,-1849,-2363,-2384,-2541], +[0,-2330,-9214,-1847,-6656,-7421,-7420,-6909,-13745,-11846,-13746,-6555,-13747], +[1,3,8721], +[0,8722,0,8723,9], +[0,-10893,-13748,-13749,-13750,-13751,-13752,-13753,-13754], +[0,-3974,-4000,-5514,-687,-2547,-712,-13755,-13756,-5553,-3962,-13757,-12898,-13758,-5564,-3824,-6716,-6765,-13759,-13760, +-13761,-12704,-6527,-7715,-9235,-8642], +[1,3,8725], +[0,8726,0,8727,11], +[0,-13762,-6372,-1370,-13763,-2347,-13764], +[0,-3824,-3974,-5514,-13765,-13766], +[1,3,8729], +[0,8730,8731,8732,6], +[0,-13767,-461,-719,-2234], +[0,-13768,-13769,-932,-8150,-985,-1654,-1939,-2127,-2177,-2231], +[0,-9216,-2334,-2415,-2416,-1644,-6684,-3214,-3217,-8108,-3184,-6052,-13770,-4795,-8165,-6434,-510,-5867], +[1,3,8734], +[0,8735,8736,8737,5], +[0,-2334,-1429,-2168,-2182,-3180], +[0,-824,-1415,-1344,-1623,-774,-932,-825,-928,-2501,-1942,-367,-767,-2416,-21,-190,-2410,-23,-3037,-1041,-1534,-1771, +-2503,-11510,-86,-965,-3560,-13771,-2251,-40,-2411,-959,-748,-960,-958,-6929,-978,-940,-967,-3748,-6930,-3307], +[0,-9216,-2416,-2415,-2334,-2501,-7172,-6059,-6454,-9696,-9234,-6059,-6684,-1644,-7175,-7176], +[1,3,8739], +[0,8740,8741,8742,4], +[0,-13772,-13773,-13774,-13775,-13776,-717,-718,-10293,-1026,-10745,-7576], +[0,-1448,-1729], +[0,-2337,-4004,-4043,-687,-5119,-3634,-3673,-2322,-2319,-519,-1654], +[1,3,8744], +[0,8745,8746,8747,11], +[0,-615,-668,-1107,-1548,-1610,-1650,-13777,-13778], +[0,-3244,-190,-5294,-5767,-3036,-3044,-3037,-4372,-427,-428,-3664,-827,-932,-6611,-13779,-2210,-13780,-13781,-2391,-2392, +-2410,-13782,-2469], +[0,-1599,-4004,-5119,-13783,-856,-3671], +[1,3,8749], +[0,8750,8751,8752,4], +[0,-23,-33,-37,-10983,-3395,-3383,-3376,-3384,-3393,-3350,-3385,-3374,-38,-40,-6056,-41,-44,-13784,-13785,-3037,-6558, +-3442,-541,-6067,-13786,-7435,-664,-668,-13787,-711,-719,-812,-815,-824,-13788,-11460,-834,-13789,-11328,-5910,-3606, +-999,-13790,-1111,-1119,-12933,-1341,-5458,-13791,-1366,-1392,-10697,-1393,-13792,-1399,-1460,-1548,-13793,-1591,-11015, +-1666,-13794,-1689, +-1699,-13795,-1839,-1866,-13796,-1880,-6467,-13797,-1966,-1982,-13798,-13799,-5915,-2115,-2160,-2177,-3169,-2234,-2270, +-13800,-13801,-13802,-13803,-13804,-13805,-13806,-13807,-13808,-13809,-2359,-2369,-2410,-13810,-13811], +[0,-13812,-7590,-13813,-4066,-350,-6572,-351,-13814,-13815,-3035,-3198,-13816,-9939,-9283,-11011,-3622,-3735,-3199,-3172, +-9660,-13817,-427,-428,-535,-579,-617,-13818,-13819,-665,-9077,-3050,-729,-754,-767,-13820,-930,-932,-13821,-7353,-1004, +-13822,-1168,-1174,-13823,-1196,-1197,-1226,-13824,-13825,-8498,-1243,-13826,-1262,-3809,-1608,-1632,-1646,-13827,-1685, +-13828,-1972,-2006,-13829, +-2127,-2142,-2187,-2210,-7220,-2269,-13830,-2387,-2416], +[0,-13831,-5112,-4865,-6413,-3258,-3995,-3634,-4864,-4004,-4043,-4873,-507,-5855,-13832,-6948,-6950,-510,-5867], +[1,3,8754], +[0,8755,8756,8757,6], +[0,-7602,-13833,-501,-8864,-8898,-812,-13834,-851,-1098,-7772,-13835,-13836,-2324,-2359,-2426], +[0,-11344,-13837,-11339,-3198,-11347,-13838,-13839,-3628], +[0,-2340,-7606,-3634], +[1,3,8759], +[0,8760,8761,8762,5], +[0,-1548,-4654,-13840,-10846], +[0,-3037,-427,-428,-633,-13841,-13842,-767,-815,-13843,-13844,-1398,-1650,-1771,-1788,-2125,-2250,-13845,-13846,-2341, +-2379,-5482,-2410], +[0,-4873,-3440,-4215,-8611,-4216,-13847,-11378], +[1,3,8764], +[0,8765,8766,8767,4], +[0,-4733,-573,-615,-13762,-719,-724,-735,-999,-1004,-13848,-1107,-1336,-1442,-1548,-1650,-1689,-1737,-1778,-13849,-2125, +-2228,-13850,-13851,-8573,-2359], +[0,-13852,-633,-664,-7976,-13853,-674,-838,-932,-7979,-964,-1654,-2105,-13854,-2195,-2210,-2211,-2229,-2322], +[0,-3214,-3634,-11116,-4865], +[1,3,8769], +[0,0,8770,8771,4], +[0,-2319,-2322,-689], +[0,-5554,-4002,-9846,-4111,-10844,-6724], +[1,3,8773], +[0,0,8774,8775,4], +[0,-190,-351,-3266,-932,-13855,-952,-957,-960,-1110,-13856,-1446,-1588,-1880,-1978,-1989,-2127,-2393], +[0,-2344,-13857,-3214,-13858,-13859,-13860,-13861,-13862,-13863,-13864,-13865,-659,-3839,-5177], +[1,3,8777], +[0,0,8778,8779,4], +[0,-21,-23,-38,-40,-44,-3326,-534,-7156,-753,-932,-7157,-940,-967,-985,-1098,-13866,-7158,-1344,-1471,-1473,-1475,-1479, +-1483,-1485,-1490,-1492,-1534,-1646,-13867,-1763,-1942,-1991,-2127,-7161,-2501], +[0,-811,-7329], +[1,3,8781], +[0,0,8782,8783,9], +[0,-8388,-2322,-8393], +[0,-5827,-8027,-13868,-11441], +[1,3,8785], +[0,8786,8787,8788,4], +[0,-2062], +[0,-599,-640,-664,-13869,-1654,-13870,-2250,-13871], +[0,-5827,-13872,-2346,-6408], +[1,3,8790], +[0,0,0,8791,11], +[0,-12735,-705,-3262,-5925,-1961], +[1,3,8793], +[0,0,14,8794,6], +[0,-13873,-13874,-13875,-2350,-13876,-1847,-11845,-7421,-2440,-7727,-5845], +[1,3,8796], +[0,8797,210,8798,4], +[0,-668,-12908,-1040,-9236,-13877,-1951,-2343], +[0,-1127,-8906,-9460,-4123,-13878,-9330,-13879,-9225,-6187,-8906], +[1,3,8800], +[0,8801,8802,8803,4], +[0,-13880,-13881,-13882,-13883,-13884,-13885,-13886,-13887,-13888,-13889,-13890,-13891,-13892,-13893,-13894,-13895,-13896, +-13897,-13898,-13899,-13900,-13901,-13902,-13903,-13904,-13905,-13906,-13907,-13908,-13909,-13910,-13911,-13912,-13913, +-13914,-13915,-13916,-13917,-13918,-13919,-13920,-13921,-13922,-13923,-13924,-13925,-13926,-13927,-13928,-13929,-13930, +-13931,-13932,-13933,-13934,-13935,-13936,-13937,-13938,-13939,-13940,-13941,-13942, +-13943,-13944,-13945], +[0,-1076,-1107,-1168,-1847,-2162,-1654,-2006,-932,-1548,-2125,-784,-1889,-2501,-923,-1077,-1405,-767,-1003,-1248,-1743, +-2019,-778,-1183,-1967,-1187,-2163,-518,-1238,-1244,-2275,-13946,-13947,-1792,-2508,-1184,-1514,-1908,-13948,-3054,-969, +-933,-958,-962,-10533,-13949,-796,-1017], +[0,-2006,-3159,-3095,-3098,-3160,-3161,-3100,-13950,-2352,-13951], +[1,3,8805], +[0,8806,8807,7,6], +[0,-10459,-812,-10622,-10623,-1792,-1983], +[0,-526,-535,-554,-559,-932,-943,-968,-974,-1004,-1088,-1654,-11943,-2251,-2293], +[1,3,8809], +[0,0,0,8810,5], +[0,-589,-13952,-13241], +[1,3,8812], +[0,0,8813,8814,5], +[0,-13953], +[0,-712,-3215,-13954], +[1,3,8816], +[0,0,0,8817,11], +[0,-3494,-2356,-7754,-3214,-3264,-5554,-10109,-10110,-10114,-3495,-10111,-3498], +[1,3,8819], +[0,0,8820,8821,4], +[0,-3037,-13239,-932,-940,-967,-978,-1942,-2892,-2410,-2411,-2466,-2469], +[0,-5922,-13955,-13956], +[1,3,8823], +[0,0,0,8824,8], +[0,-4216,-4215,-2410,-13957], +[1,3,8826], +[0,0,8827,258,4], +[0,-1654,-932,-1405,-6726,-964], +[1,3,8829], +[0,8830,8831,8832,4], +[0,-2036], +[0,-23,-13958,-3156,-1942,-2410], +[0,-2006,-3159,-13959,-12662,-3825,-13960,-13961,-2034,-2053,-13962,-13963,-2360,-4127,-4122,-13964,-687,-3162,-5270, +-5271,-3578,-13965], +[1,3,8834], +[0,0,8835,8836,10], +[0,-21,-23,-37,-40,-41,-2581,-11254,-3311,-534,-664,-932,-1004,-1077,-1103,-1111,-1442,-1449,-1610,-1650,-1654,-2634, +-13966,-1771,-13967,-2006,-2019,-2162,-2250,-2501,-2503], +[0,-2361,-3214,-4002,-13968,-7002,-3960,-3264,-7534,-9975], +[1,3,8838], +[0,0,8839,8840,6], +[0,-1754,-11358], +[0,-2362,-3215], +[1,3,8842], +[0,0,8843,7,6], +[0,-11719,-2319], +[1,3,8845], +[0,8846,8847,8848,6], +[0,-13969], +[0,-2832,-190,-4139,-262,-3037,-6593,-932,-940,-948,-958,-967,-3631,-1110,-1942,-2391,-2410,-2411,-2469], +[0,-4181,-743,-6920,-13970,-13570,-8792,-13971,-13972], +[1,3,8850], +[0,8851,8852,8853,4], +[0,-714,-808,-1650,-13973], +[0,-3035,-3621,-664,-689,-879,-932,-1654,-1788,-2379,-2388,-2410], +[0,-1573,-3444,-13974,-812], +[1,3,8855], +[0,8856,8857,8858,5], +[0,-11103,-13975,-7400], +[0,-5834,-516,-5835,-921,-932,-1365,-1777,-2156,-2322], +[0,-2368,-2487,-7371,-6917,-13976,-6545,-702], +[1,3,8860], +[0,0,27,8861,5], +[0,-10919,-10336,-1958,-13641,-12872,-5395], +[1,3,8863], +[0,241,8864,7,5], +[0,-3732,-4198,-3617,-3136,-724,-754,-1004,-1415,-1753,-1942,-2375,-2410,-2564], +[1,3,8866], +[0,8867,8868,8869,4], +[0,-1370,-2347,-6372,-13977,-13978,-2062], +[0,-2322,-2346,-725], +[0,-3264,-9292,-3215,-6408,-12123,-775], +[1,3,8871], +[0,8872,8873,8874,4], +[0,-3851,-3199,-1388,-1681,-2177,-9444], +[0,-2581,-3037,-3664,-637,-11187,-1672,-1806,-5326,-3246,-2410,-2469], +[0,-3445,-6857,-1671,-1672,-3862,-4058,-7773,-7684,-3018,-2410,-3324,-2071,-4634,-10412,-6495,-5101,-13979], +[1,3,8876], +[0,0,8877,161,11], +[0,-21,-23,-26,-35,-36,-40,-42,-50,-86,-3307,-4139,-262,-3268,-3136,-3044,-3738,-427,-428,-533,-589,-753,-932,-940,-967, +-977,-1344,-1415,-1548,-1771,-1942,-2082,-2379,-2402,-2405,-2410,-2446], +[1,3,8879], +[0,8880,8881,8882,5], +[0,-13980,-7141,-1276,-1460,-1565,-13981,-2177,-2400,-2551], +[0,-86,-9404,-3615,-3244,-190,-5121,-4020,-237,-4776,-3048,-3136,-3660,-3759,-8216,-7211,-4036,-3037,-3199,-3041,-9146, +-427,-428,-533,-10525,-739,-928,-932,-940,-958,-959,-960,-967,-999,-1026,-1077,-1110,-1344,-1415,-1442,-1534,-1623,-1942, +-2125,-2379,-2410,-2411], +[0,-1415,-2410,-6915,-2006,-3634], +[1,3,8884], +[0,8885,8886,8887,5], +[0,-668,-909,-1639,-2177,-2231], +[0,-4036,-3199,-427,-428,-525,-527,-534,-556,-559,-13982,-560,-930,-932,-940,-966,-967,-1077,-1107,-1344,-1413,-1471, +-1475,-1481,-1483,-1490,-1492,-1534,-1607,-1650,-1654,-1942,-2125,-2410,-2501,-2503], +[0,-2376,-13983,-2501,-5932,-2410,-3018], +[1,3,8889], +[0,8890,8891,8892,9], +[0,-4106,-719,-865,-1672,-2392], +[0,-2581,-3037,-3664,-11187,-1763,-1806,-5326,-3246,-2410,-2469], +[0,-3445,-13984,-13985,-13986,-1672,-1671,-6857,-4058,-7773,-7684,-3018,-2410,-687,-5732,-13987,-5731], +[1,3,8894], +[0,8895,8896,8897,6], +[0,-13988,-13989], +[0,-3267,-3035,-9939,-3621,-3037,-664,-11072,-767,-834,-1654,-2125,-2127,-2379,-2410], +[0,-2410,-3272,-13990,-3107,-13991], +[1,3,8899], +[0,8900,8901,8902,5], +[0,-2558,-502,-834,-461,-462,-13981,-13992,-13993,-13994,-13995,-8214,-13996,-13997], +[0,-519,-1788,-523,-2006,-13998,-1001,-1548,-2125,-2177,-11685,-1821,-2402,-367,-13999,-1100,-1972,-2410,-9939,-3037, +-14000,-3040,-3044,-8890,-3199,-6744,-14001,-7772,-4364,-11347,-11708,-262], +[0,-2410,-3966,-11997,-5558,-3018,-3116], +[1,3,8904], +[0,8905,8906,8907,5], +[0,-3044,-3851,-3199,-14002,-1548,-1681,-14003,-14004,-2177], +[0,-2581,-3037,-3664,-11187,-1672,-1806,-5326,-3246,-2410,-2469], +[0,-3445,-1672,-3862,-6857,-4058,-7773,-7684,-3018,-2410,-7460,-1306,-5389,-6821,-8990,-10674,-6693,-5879,-1573], +[1,3,8909], +[0,0,37,8910,8], +[0,-2410,-2552,-10054,-10055], +[1,3,8912], +[0,8913,8914,8915,5], +[0,-1548,-3044], +[0,-2581,-3037,-3664,-1806,-5326,-3246,-2410,-2469], +[0,-3445,-3018,-2410,-14005,-14006,-11315,-8199,-6899,-14007,-14008,-14009,-14010,-14011], +[1,3,8917], +[0,8918,8919,7,9], +[0,-1460,-1646,-2270], +[0,-1415,-1344,-932,-2125,-2375,-2379,-1942,-2410,-3136,-3037,-1534,-5686,-14012,-960,-958,-940,-428,-7770,-427], +[1,3,8921], +[0,8922,8923,8924,5], +[0,-14013,-3686,-1111,-1418,-1630,-1849,-2061], +[0,-5028,-3037,-3040,-427,-428,-519,-757,-825,-932,-945,-14014,-999,-2006,-2115,-2153,-2410], +[0,-2410,-2384,-7440,-2414,-3694,-14015,-14016], +[1,3,8926], +[0,0,8927,8928,4], +[0,-23,-40,-42,-5121,-8214,-14013,-3037,-427,-428,-533,-774,-932,-940,-1415,-1942,-2410], +[0,-2410,-2384,-4037,-7440,-7144,-4004,-2414,-3694], +[1,3,8930], +[0,8931,8932,8933,10], +[0,-8200,-668,-679,-6475,-14017,-1645,-1650,-14018,-13709,-2125,-14019,-2410,-4297], +[0,-3037,-928,-1942,-2319,-2402], +[0,-2410,-5058,-9946,-985,-4791,-7641], +[1,3,8935], +[0,0,0,8936,6], +[0,-4165,-14020,-3116,-6784,-3214,-2387,-11997], +[1,3,8938], +[0,8939,8940,8941,8], +[0,-22,-644,-668,-719,-834,-1107,-1442,-1645,-1650,-2114,-2177,-2387,-7765], +[0,-305,-8355,-3035,-9939,-3036,-3660,-8566,-4811,-3621,-3037,-3200,-8890,-3199,-664,-1344,-13325,-1654,-1771,-1788,-1942, +-2125,-2379,-2388,-2389,-6355,-2410,-12515], +[0,-687,-2410,-8170], +[1,3,8943], +[0,0,8944,8945,5], +[0,-1415,-1344,-1548,-2125,-2388,-2375,-1591,-1942,-14021,-720,-2410,-3136,-3037,-14022,-2390,-14023,-6630,-2174,-14024, +-14025,-12348,-2449,-12349,-14026,-796,-14027], +[0,-7148,-2388,-14028,-1942,-727,-2410], +[1,3,8947], +[0,8948,8949,7,6], +[0,-7765], +[0,-3036,-3037,-714,-1107,-1771,-1847,-2388,-14029,-2410], +[1,3,8951], +[0,8952,8953,7,4], +[0,-13389,-653,-679,-734,-812,-928,-14030,-14031,-1863,-1907,-2115,-2127,-2231,-5354,-3535,-2654,-2369], +[0,-262,-4062,-367,-3198,-3037,-3200,-8349,-1055,-1889,-10815,-1942,-2114,-2132,-2162,-2271,-2299,-2301,-2334,-14032, +-2391,-2410,-2469,-2817], +[1,3,8955], +[0,8956,0,8957,4], +[0,-928,-1101], +[0,-687,-11997,-3966,-8930,-4791,-985,-2410,-14033], +[1,3,8959], +[0,8960,8961,8962,6], +[0,-14034], +[0,-350,-351,-3561,-633,-2123,-2127,-2250,-14035], +[0,-6473,-3264,-1599], +[1,3,8964], +[0,0,8965,8966,10], +[0,-1127,-1654,-11875,-1132,-2111,-14036,-14037,-1156,-14038,-1138,-14039,-2234,-1134,-14040,-1144,-1148,-14041,-14042, +-14043], +[0,-1456,-4058,-2451,-2394], +[1,3,8968], +[0,0,8969,8970,5], +[0,-633,-932,-1032,-14044,-2322,-14045,-2416], +[0,-770,-5374,-14046,-14047,-13351,-6131,-7372,-14048,-14049,-14050,-14051,-14052], +[1,3,8972], +[0,8973,8974,8975,5], +[0,-1077,-1462,-14053,-8984], +[0,-1771,-1860,-2416], +[0,-10838,-14054,-3215,-5093,-9474,-14055,-4112], +[1,3,8977], +[0,8978,8979,8980,9], +[0,-615,-1640,-2105], +[0,-510,-714,-719,-1654,-2123,-2210], +[0,-2398,-3690,-3691,-5827,-9292,-1791], +[1,3,8982], +[0,8983,8984,8985,11], +[0,-2105,-822], +[0,-1722,-1654,-932], +[0,-2398,-9292,-1791], +[1,3,8987], +[0,8988,0,7,4], +[0,-1646,-14056,-668], +[1,3,8990], +[0,8991,8992,8993,9], +[0,-14057], +[0,-5918,-428,-932,-14058,-815,-1002,-1772,-2384,-2410,-2411,-2541], +[0,-2410,-3018,-3694,-3590,-2444,-8113,-10665,-1631,-4055,-14059], +[1,3,8995], +[0,8996,129,8997,4], +[0,-737,-14060,-1641], +[0,-5398,-8038,-14061], +[1,3,8999], +[0,9000,9001,259,4], +[0,-14062,-3544,-1600,-1645,-2548], +[0,-190,-3800,-3661,-3621,-3037,-652,-13998,-928,-932,-1654,-1978,-2177,-2392,-2410,-2411], +[1,3,9003], +[0,9004,9005,9006,11], +[0,-14063], +[0,-3037,-2402,-2410], +[0,-14064,-14065,-3118,-14066,-14067,-14068,-2410,-856], +[1,3,9008], +[0,0,131,9009,6], +[0,-4121,-4123,-13188,-2410,-856,-14068,-2402], +[1,3,9011], +[0,0,0,9012,4], +[0,-3690,-856,-1599,-2402,-2410,-14065], +[1,3,9014], +[0,9015,9016,9017,4], +[0,-1610,-2410], +[0,-3802,-3621,-3037,-3628,-756,-1405,-1654,-1657,-2359], +[0,-4165,-856,-14069,-3214], +[1,3,9019], +[0,9020,9021,9022,4], +[0,-719,-2536,-1705,-6455,-14070,-510,-714,-1666,-1650,-7418,-14071], +[0,-664], +[0,-14072,-1599,-14073,-14074,-14075,-8676,-3110,-6473,-3262], +[1,3,9024], +[0,106,9025,7,5], +[0,-234,-3035,-4269,-3621,-14076,-3037,-664,-665,-756,-1654,-14077,-1672,-14078,-1942,-14079,-2234,-2379,-2389,-12348], +[1,3,9027], +[0,9028,9029,7,10], +[0,-1107,-2446,-483,-809,-812,-2387,-2550,-640,-815,-865,-7023,-496,-14080,-2080,-14081], +[0,-652,-1857,-664,-1168,-1344,-1392,-1654,-1682,-1691,-2071,-2210,-932,-1692,-2125,-3729,-1110,-1671,-2245,-2379,-10418, +-1942,-14082,-190,-1250,-8436,-2211,-2410,-3035,-3037,-1243,-1534,-3198,-3621,-4372,-3041,-1244,-14083,-10419,-1252, +-1261,-10420,-14084,-8214,-665,-3625,-3910,-7969,-2411,-14085,-2234,-14086,-960,-14087,-14088,-4269,-9660], +[1,3,9031], +[0,0,9032,9033,5], +[0,-652,-1681,-664,-834,-1107,-1498,-1654,-2387,-2518,-13998,-932,-8526,-928,-1110,-679,-1646,-3851,-190,-1863,-1874, +-2410,-3035,-9939,-3621,-10755,-1461,-305,-5686,-1028,-14089,-14090,-2411,-14091,-2234,-971,-14092,-429,-9660,-14093, +-5201,-5206,-14094,-14095], +[0,-4165,-14020,-3116,-6784,-3214], +[1,3,9035], +[0,9036,112,9037,4], +[0,-429,-428,-427,-5209], +[0,-3272,-3217,-3214,-2410,-3215,-4132,-932,-5208,-3784], +[1,3,9039], +[0,9040,9041,9042,10], +[0,-14096,-7829], +[0,-4811,-3621,-3037,-14097,-740,-14098,-1650,-1654,-1938,-2388,-2410,-2412], +[0,-4165], +[1,3,9044], +[0,9045,9046,9047,6], +[0,-14099,-14100,-865,-2773,-1521,-1551,-1889,-1907,-7164,-1915,-7165,-10283,-2162,-2232,-2383,-2286], +[0,-14101,-3136,-8334,-3759,-3037,-14102,-14103,-8336,-427,-428,-620,-932,-940,-1344,-1415,-14104,-1534,-14105,-1916, +-1927,-1942,-14106,-2375,-2410], +[0,-775,-3754,-2162,-1521,-2286,-3209,-3862,-1889,-2410], +[1,3,9049], +[0,9050,9051,9052,8], +[0,-11661,-615,-668,-696,-715,-13789,-10511,-12631,-1575,-1646,-14107,-14108,-2433,-2525,-2546], +[0,-829,-1722,-2125,-2379,-2388,-14109,-2410], +[0,-2414,-2410,-14110,-4159,-5897,-9800,-9069], +[1,3,9054], +[0,9055,9056,9057,8], +[0,-719,-2231], +[0,-461,-1654,-2177], +[0,-9216,-2415,-2416,-1644,-6684,-3214,-3217,-8108,-3184,-6052,-13770,-4795,-8165,-6434,-510,-5867], +[1,3,9059], +[0,0,9060,9061,11], +[0,-461,-2177], +[0,-687,-6454,-9696,-14111,-3217,-6505,-8108,-3214,-3756,-14112,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838, +-3215,-9698,-9216], +[1,3,9063], +[0,9064,9065,9066,9], +[0,-4287,-1046,-1401,-2168,-2182,-2231,-2416,-2510,-10059], +[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-8206,-767,-824,-825,-932,-940,-958,-1344,-1415,-1424,-1534,-1626,-1771,-1942, +-2251,-2334,-2501], +[0,-9216,-2416,-2415,-2501,-7172], +[1,3,9068], +[0,9069,9070,9071,5], +[0,-14113], +[0,-1654,-932,-615,-1405,-966,-958,-968,-943,-974], +[0,-6555,-3262,-7232,-9594], +[1,3,9073], +[0,9074,0,9075,4], +[0,-44,-3040,-3052,-14114,-14115,-14116,-14117,-14118,-14119,-14120,-14121,-432,-14122,-14123,-14124,-14125,-14126,-14127, +-14128,-14129,-14130,-14131,-14132,-14133,-14134,-14135,-14136,-14137,-14138,-14139,-433,-434,-14140,-14141,-14142, +-14143,-14144,-14145,-14146,-14147,-5257,-435,-14148,-14149,-14150,-14151,-14152,-14153,-14154,-14155,-14156,-14157, +-14158,-14159,-14160,-14161,-14162,-14163,-14164,-14165,-14166,-14167,-14168, +-14169,-14170], +[0,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[1,3,9077], +[0,9078,9079,174,10], +[0,-1107,-1351,-1548,-2177,-2529], +[0,-1452,-1600,-1654,-1766,-2198], +[1,3,9081], +[0,0,9082,7,10], +[0,-4066,-350,-351,-3267,-3037,-589,-1942,-2127,-2387,-2410,-2469], +[1,3,9084], +[0,0,9085,9086,5], +[0,-2581,-50,-13526,-668,-5382,-928,-1111,-1273,-1600,-14171,-1771,-14172,-1948,-3768,-2469], +[0,-3264,-3110,-7723], +[1,3,9088], +[0,9089,9090,7,5], +[0,-4066,-350,-4062,-351,-3561,-4785,-14173,-734,-6860,-928,-14030,-14174,-1431,-1588,-14175,-1651,-1852,-6568,-1948, +-2127,-2132,-6569,-2654,-14176], +[0,-3376,-3037,-3664,-8189,-672,-932,-944,-1942,-2410,-2469], +[1,3,9092], +[0,0,9093,9094,4], +[0,-1788,-1107,-849,-1344,-1471,-1989,-932,-2127,-2334,-757,-756,-1485,-7324,-4916,-14177,-958,-1488], +[0,-2444,-5112,-3844,-3323,-4865], +[1,3,9096], +[0,9097,9098,9099,4], +[0,-2243,-9649], +[0,-633,-14178,-932,-1405,-1654,-1657,-8276,-12323,-2424], +[0,-2424,-2265], +[1,3,9101], +[0,0,9102,9103,5], +[0,-8843,-11419,-14179,-357,-3037,-458,-2917,-652,-767,-14180,-928,-932,-1023,-1344,-1415,-14181,-2884,-1730,-1971,-2384, +-2410,-2531], +[0,-4213,-1334,-1342,-1961,-2105,-9172,-9173,-2533,-5388], +[1,3,9105], +[0,9106,9107,9108,4], +[0,-4231,-14182,-9596,-1015,-1395,-14183,-5358], +[0,-14184,-5334,-4251,-3037,-652,-1942,-2094,-2100,-2384,-2399,-2410,-2541], +[0,-3272,-7644,-5398,-10280,-1838,-1958,-2083,-2093,-14185,-6233,-6231,-4132,-6408,-10919,-2427], +[1,3,9110], +[0,9111,14,9112,4], +[0,-14186], +[0,-13747,-6555,-6240,-6814,-3960,-14187,-5839,-12411,-9682], +[1,3,9114], +[0,9115,9116,9117,5], +[0,-4231,-7700,-5356], +[0,-4251,-3037,-652,-1618,-10922,-10923,-1942,-2094,-2100,-2384,-2399,-2410,-2541], +[0,-9590,-14188,-2444,-3590,-2093,-14185,-2083,-10918,-9589,-14189,-14190,-1703,-6784,-1599,-3264,-6597,-10919,-3272, +-3966,-14191,-2487], +[1,3,9119], +[0,0,222,9120,5], +[0,-13875,-11002,-7727,-2430,-1847,-11845,-7421,-2440,-5550,-6836], +[1,3,9122], +[0,9123,0,9124,8], +[0,-7304,-1081,-14192,-14193,-8578,-2062], +[0,-5408,-2432,-9506,-14194,-5409,-5827,-7347], +[1,3,9126], +[0,9127,9128,9129,6], +[0,-14195,-623,-668,-14196,-2177,-8418,-728,-6848,-1514,-1394], +[0,-2541,-519,-9982,-2269,-686,-14197], +[0,-1764,-10674,-11693,-9258,-14198,-7440,-7144,-687,-3551,-5897,-9318], +[1,3,9131], +[0,0,0,9132,4], +[0,-9171,-2435,-14199,-14200,-14201,-14202,-14203,-14204,-14205,-14206,-14207,-14208,-14209,-14210,-14211,-14212,-14213, +-14214], +[1,3,9134], +[0,9135,9136,9137,10], +[0,-1983,-1977], +[0,-515,-1788,-2568,-461,-1654,-932,-5834], +[0,-6747,-2435,-10433], +[1,3,9139], +[0,0,9140,9141,5], +[0,-739,-1654,-2198], +[0,-2435,-8396], +[1,3,9143], +[0,9144,9145,48,10], +[0,-1543,-1641,-2168], +[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-1041,-1344,-1415,-1534,-1623,-8913,-1771,-1942, +-2251,-2501], +[1,3,9147], +[0,9148,9149,9150,5], +[0,-6614,-9730], +[0,-509,-633,-652,-1654,-1939,-14215,-14216,-2416], +[0,-6984,-3215,-9171,-2435,-1838,-5101,-2265,-1985,-6231], +[1,3,9152], +[0,9153,9154,9155,9], +[0,-1069,-14217,-1641,-1983,-2400,-2426,-14218], +[0,-2832,-14219,-7453,-14220,-8317,-14221,-3713,-3037,-14222,-4966,-14223,-3715,-8200,-9581,-3664,-649,-767,-1351,-2987, +-8065,-1971,-3727,-14224,-2325,-2386,-7457,-2410,-2469], +[0,-2439,-1334,-14225,-9172,-9173,-2105,-1342,-2426,-4213], +[1,3,9157], +[0,9158,9159,9160,4], +[0,-10383], +[0,-1849], +[0,-2440,-11845,-13874,-10383,-11070,-7421,-7420,-1847,-6845,-3592,-5558,-3591,-14226], +[1,3,9162], +[0,9163,9164,9165,6], +[0,-1582,-2359], +[0,-509,-1654,-1939,-2105,-2177,-14227], +[0,-9733,-4865,-14228,-1819,-1838,-3215,-14229,-14230,-14231,-14232,-2440,-14233,-2442,-9318], +[1,3,9167], +[0,0,9168,9169,4], +[0,-756,-1405,-6186,-1991], +[0,-9791,-5835,-4112,-2443], +[1,3,9171], +[0,9172,9173,260,5], +[0,-1370,-7391,-14234,-14235,-7400], +[0,-468,-753,-14236,-1797,-1798,-2151,-2155,-2322], +[1,3,9175], +[0,0,183,260,8], +[1,3,9177], +[0,0,9178,9179,4], +[0,-32,-86,-3307,-190,-3563,-719,-932,-940,-967,-1110,-1344,-1415,-1534,-2884,-1771,-1942,-11013,-11014,-2251,-2410,-2411], +[0,-2446,-7230,-11582,-14237], +[1,3,9181], +[0,9182,9183,9184,10], +[0,-8609,-834,-1496,-5037], +[0,-14238,-985,-11747,-13279], +[0,-507,-14239,-4043,-4045,-4004], +[1,3,9186], +[0,0,9187,9188,5], +[0,-2319,-1452], +[0,-2435,-3926,-7440,-7144,-5574], +[1,3,9190], +[0,9191,9192,9193,5], +[0,-7247,-14240,-5504,-10482], +[0,-7465,-664,-6774,-720,-796,-1344,-1405,-1650,-1654,-9075,-2125,-2174,-2210], +[0,-14241,-5890,-12665,-5889,-6908,-5887], +[1,3,9195], +[0,0,9196,9197,8], +[0,-4298,-4300], +[0,-1764,-5897,-6444,-3926], +[1,3,9199], +[0,0,9200,9201,4], +[0,-21,-23,-40,-43,-528,-535,-932,-934,-958,-1654,-1771,-1788,-2125,-2127,-2128,-11290,-2416], +[0,-2451,-3926,-5874,-8472,-7723,-14242,-14243,-507], +[1,3,9203], +[0,9204,9205,9206,11], +[0,-14244,-14245,-14246], +[0,-3037,-4837,-5589,-3899,-14247,-4838,-786,-14248,-1449,-2410,-2466,-2469,-14249,-2476,-2483,-14250,-14251,-14252, +-14253], +[0,-3160,-2476,-3944,-3162,-3100,-3095,-3098], +[1,3,9208], +[0,0,9209,9210,5], +[0,-1654,-932,-1405,-589,-2293,-585,-966,-958,-968,-943,-963,-974], +[0,-1334,-4616,-2453], +[1,3,9212], +[0,9213,9214,7,4], +[0,-2456], +[0,-2319,-1754], +[1,3,9216], +[0,9217,9218,7,6], +[0,-5193,-928,-679,-1069,-14254,-14255,-14256,-14257,-14258,-14259,-14260,-14261,-14262,-14263,-14264,-14265,-14266, +-14267,-14268,-14269,-14270,-14271,-14272,-14273,-14274,-14275], +[0,-1681,-469,-502,-864,-985,-1371,-1816,-1805,-2466,-651,-668,-812,-999,-1623,-1971,-12508,-13969,-2518,-669,-865,-1001, +-1400,-2125,-2177,-2240,-2324,-2469,-680,-708,-1004,-1047,-1658,-2379,-807,-1077,-1098,-1981,-1999,-2694,-367,-3851, +-4966,-14276,-10697,-11705,-1645,-1878,-2369,-11697,-12324,-481,-12971,-695,-1424,-1641,-1729,-2269,-2410,-3136,-3037, +-512,-929,-14277, +-8874,-7982,-14278,-3269,-3198,-14279,-10755,-480,-511,-14280,-14281,-14282,-3199,-9941,-13839,-5977,-3124,-12274,-11855, +-3637,-14283,-13376,-10519,-14284,-4105,-3048,-11328,-1025,-14285,-1767,-7162,-2991,-14286,-2992,-8566,-5363,-2946, +-14287,-3713,-4201,-14288,-13184,-14289,-14290,-9750,-10046,-14291,-5124,-14292,-14293,-2591,-11857,-14294,-3234,-14295, +-14296,-14297,-11702,-14298,-14299,-14300,-14301,-14302,-14303, +-14304,-14305,-14306], +[1,3,9220], +[0,9221,0,9222,4], +[0,-14307,-508,-13486], +[0,-6324,-8980,-14308,-12254,-12442,-3586], +[1,3,9224], +[0,0,9225,7,4], +[0,-1654,-1405,-2293], +[1,3,9227], +[0,0,9228,9229,4], +[0,-23,-40,-86,-3307,-3326,-539,-664,-671,-708,-757,-14309,-784,-825,-932,-934,-958,-1344,-1471,-1474,-1475,-3568,-1482, +-1483,-1486,-1534,-1654,-1771,-1889,-1891,-14310,-1906,-1927,-7033,-1978,-2127,-2281,-2282,-2284,-2416], +[0,-6527,-14311,-2459,-14312,-3264,-775,-3214,-3577,-3578], +[1,3,9231], +[0,9232,9233,9234,5], +[0,-14313,-702,-2103,-14314], +[0,-1788,-1654,-932,-1001,-13729,-2062,-937,-966], +[0,-9614,-7422,-6656,-7421,-9330,-1847], +[1,3,9236], +[0,9237,9238,9239,4], +[0,-599,-2347], +[0,-2322,-2463], +[0,-2460,-7419,-5845,-640,-5827], +[1,3,9241], +[0,9242,9243,9244,11], +[0,-14315,-9092,-1119,-1351,-14316,-14317,-1759,-14318,-14319,-13729,-14320,-14321,-2460,-14322], +[0,-932,-937,-1001,-1654,-1788,-2062,-2125,-2210], +[0,-1168,-14323,-2460,-6656,-8801,-1076,-8027], +[1,3,9246], +[0,9247,9248,9249,9], +[0,-2460,-2347], +[0,-1243,-2322,-2462], +[0,-2460,-1168,-7419,-9975,-5827,-2265,-5554,-14324], +[1,3,9251], +[0,185,0,9252,4], +[0,-2460,-9455,-9466,-1168], +[1,3,9254], +[0,9255,9256,9257,5], +[0,-14325,-6324,-14326,-1109,-9977,-8104,-14327,-14328], +[0,-633,-1405,-9088,-1812,-14329,-12014,-2320,-2322,-2568], +[0,-9614,-5092,-9613,-14330,-834,-7460,-4865], +[1,3,9259], +[0,9260,9261,261,6], +[0,-4787,-2127,-928,-1889,-1864,-2654], +[0,-2531,-653,-11071,-754,-990,-1651,-5042,-1805,-2162,-2213,-1852,-865,-5036,-1699,-1839,-2334,-729,-12601,-679,-2923, +-3027,-14331,-14332,-1863,-769,-929,-14333,-3751,-1588,-25,-4371,-866,-989,-3572,-14334,-1906,-14335,-14336,-11751, +-14337,-13397,-10046,-742,-4785,-1907,-7160,-4066,-3195,-5322,-2134,-350,-6410,-7897,-3180,-14338,-7151], +[1,3,9263], +[0,9264,9265,9266,4], +[0,-14341,-1026,-1077,-14342,-14343], +[0,-3617,-3048,-3037,-1004,-2391,-2410,-2466], +[0,-2466,-3690,-14344,-14345,-14346,-14347,-1004,-14348,-3844,-14349,-9843,-14350,-14351,-3862,-3816,-2146,-3445,-14352, +-14353], +[1,3,9268], +[0,9269,9270,9271,4], +[0,-2476,-2466,-4245,-3788,-14354,-3726,-14244,-4817,-3559,-14355,-3558,-14356,-14357,-3661,-4837,-14358,-4229,-14359], +[0,-1816,-2213,-812,-999,-1826,-3548,-1699,-2125,-2127,-2177,-2469,-928,-1871,-1966,-3728,-2653,-5627,-2648,-679,-1077, +-1098,-1646,-1942,-1977,-1582,-1639,-1863,-2654,-2410,-3037,-769,-1125,-1534,-1600,-3198,-6447,-14360,-3801,-3735,-1851, +-3048,-5686,-1570,-14361,-3246,-4036,-3425,-1603,-2132,-13397,-7080,-1601,-4062,-13593,-14362,-14363,-4066,-14364,-1602, +-6483,-14365,-3561,-9458, +-350,-1926,-14366,-3662,-14367,-14368,-740,-351,-14369,-14370,-14371], +[0,-2466,-2476,-2468], +[1,3,9273], +[0,9274,9275,9276,8], +[0,-5042,-2466,-1852,-6570,-3535,-1864,-2354,-2654,-6488,-1002,-14372,-1588,-13385,-13376,-13388,-14373,-14335,-14374, +-14375,-14376], +[0,-2531,-653,-1640,-14377,-1449,-7142,-1966,-13380,-1278,-14378,-462,-3037,-4647,-426,-14334,-3735,-14379,-8523,-14380, +-5038,-357,-4048,-3180,-3626,-4047], +[0,-2466,-2469,-4004,-1415], +[1,3,9278], +[0,9279,9280,9281,5], +[0,-668,-1548,-1376,-1646,-2528,-1365,-1575,-2269,-556,-14381], +[0,-2541,-1168,-525,-1654,-1666,-2198,-14382,-2105,-615,-527,-1174,-1197,-14383,-14384,-1182,-14385,-559], +[0,-3690,-687,-12694,-5550,-4039,-3161,-3994,-9668,-3957,-719,-13831,-1965,-1376], +[1,3,9283], +[0,9284,0,9285,4], +[0,-834,-14386,-1107], +[0,-3634,-4679,-4004,-14387], +[1,3,9287], +[0,9288,9289,9290,6], +[0,-2359,-1107,-1640,-2059,-9498,-668,-1526,-2555,-14388,-2177,-2536,-674,-2436,-719,-1645,-1600,-14389,-1315,-14390, +-14092], +[0,-1344,-1654,-2379,-1942,-3628,-2410,-3036,-6325,-3037,-14391,-14392,-1771,-3621,-8497,-1952,-3199,-11343,-14393,-86, +-14394,-8566,-2174,-3661,-2234,-5361,-3307], +[0,-11859,-2472,-5195], +[1,3,9292], +[0,0,37,7,4], +[1,3,9294], +[0,9295,9296,7,4], +[0,-479,-702,-994,-1022,-1107,-1351,-1391,-2231,-2410,-2460,-2536,-2550], +[0,-9478,-14395,-9457,-3036,-14396,-8566,-3621,-3037,-12993,-9476,-7837,-3046,-11343,-3041,-427,-428,-932,-1654,-2125], +[1,3,9298], +[0,0,9299,7,9], +[0,-1654,-1650,-2501,-2410,-3037,-2503,-3621,-14397,-748,-262], +[1,3,9301], +[0,9302,0,9303,6], +[0,-14244,-14398,-9631,-7438,-3250], +[0,-2476], +[1,3,9305], +[0,0,9306,9307,5], +[0,-23,-26,-33,-3077,-40,-3035,-3621,-3037,-428,-532,-534,-7890,-664,-778,-932,-14399,-1654,-2080,-2125,-2127,-2128,-2138, +-2341,-2376,-2410,-2415,-2476,-2481,-2485,-2816,-2486,-2501,-2503], +[0,-2476,-7711,-525,-2410], +[1,3,9309], +[0,9310,9311,7,9], +[0,-812,-982,-983,-986,-8141,-2177], +[0,-23,-32,-3332,-14400,-6484,-3244,-190,-3198,-426,-3037,-3199,-427,-428,-3664,-3665,-932,-8230,-961,-965,-8287,-967, +-978,-7356,-1942,-2379,-2892,-2410,-2466,-2469], +[1,3,9313], +[0,0,9314,9315,5], +[0,-639,-1415,-2476], +[0,-2476,-12517,-11492], +[1,3,9317], +[0,9318,9319,9320,6], +[0,-14401,-14357,-14402], +[0,-14403], +[0,-1348,-9780,-14404,-3862,-2476,-3527], +[1,3,9322], +[0,9323,9324,7,4], +[0,-668,-1284,-12982], +[0,-23,-40,-14405,-426,-12643,-3136,-4647,-14406,-14407,-534,-14408,-740,-778,-1041,-1331,-1415,-1449,-1534,-14409,-1623, +-1643,-7034,-7846,-1908,-1942,-1974,-14410,-2231,-2275,-2286,-2287,-2289,-2375,-2376,-2410,-2437,-2476,-2480,-2501,-2503, +-2505,-2508,-8160], +[1,3,9326], +[0,0,9327,9328,4], +[0,-3136,-3037,-1415,-2080,-2127,-2375,-2410,-2476,-2477], +[0,-2476,-2410,-11313], +[1,3,9330], +[0,9331,9332,7,5], +[0,-3194,-14411,-14357,-14412,-679,-1460,-14378,-1588,-1651,-14413,-1852,-1864,-6569,-2654,-2981,-14414,-2548], +[0,-47,-14415,-3983,-350,-351,-3561,-3266,-12959,-14416,-8523,-8200,-4837,-7438,-14417,-3250,-4838,-10363,-14418,-731, +-865,-14419,-7595,-1278,-1719,-14420,-2851,-2125,-2127,-2142,-2892,-2391,-2466,-2476], +[1,3,9334], +[0,9335,9336,7,9], +[0,-1284,-1543], +[0,-527,-533,-549,-740,-1415], +[1,3,9338], +[0,9339,0,9340,4], +[0,-14421,-1297], +[0,-2476,-3116], +[1,3,9342], +[0,262,9343,7,8], +[0,-2476,-1415,-668,-999,-6828,-932,-2127,-2177,-1004,-2501,-910,-1077,-767,-1978,-2468,-533,-778,-2410,-2481,-23,-3037, +-534,-14422,-2484,-40,-7438,-2082,-6429,-2140,-2253,-3561,-14399,-2504,-2506,-350,-740,-351], +[1,3,9345], +[0,9346,0,9347,5], +[0,-14423], +[0,-2444,-1819,-14424,-1076,-2487,-14425], +[1,3,9349], +[0,9350,9351,7,4], +[0,-8566,-7955,-8891,-1645], +[0,-3136,-3037,-1107,-1415,-1623,-2125,-2375,-2410], +[1,3,9353], +[0,220,9354,9355,4], +[0,-86,-3307,-633,-720,-796,-1344,-1415,-2416], +[0,-2489,-4038,-2006,-1384], +[1,3,9357], +[0,9358,0,9359,8], +[0,-14426,-1646], +[0,-2444,-3590,-1076,-6999], +[1,3,9361], +[0,9362,9363,9364,6], +[0,-9501,-633,-679,-6369,-14427,-2347,-2546], +[0,-627,-1650,-2239,-2322,-2416,-14428], +[0,-633,-10362,-2490,-4161,-7641,-4865], +[1,3,9366], +[0,9367,123,9368,4], +[0,-13012,-10837,-510,-14429,-13017,-14430,-13025,-13026,-14431,-14432], +[0,-13039,-1818,-1691,-6321,-2071,-1671,-14433,-2492,-2157,-13042], +[1,3,9370], +[0,9371,9372,9373,8], +[0,-501,-510,-1548,-1650,-1980,-2105,-14434], +[0,-14435,-664,-665,-714,-7743,-1004,-1022,-1168,-14436,-1197,-1212,-1231,-1296,-1336,-13334,-1405,-1654,-14437,-1722, +-14438,-2150,-14439,-14440,-14441,-2425,-2446,-2550], +[0,-3634,-4864,-11468,-12350,-11467], +[1,3,9375], +[0,9376,9377,9378,4], +[0,-14442,-14443,-14444,-14445,-14446,-14447,-14448,-14449,-14450,-14451,-14452,-14453,-14454,-14455,-14456,-14457,-14458], +[0,-14459,-1415,-932,-14460,-4271,-2375,-1942,-589,-2410,-3136,-1422,-3268,-14461,-958,-8378,-940,-14462,-428,-14463,-427], +[0,-14464,-7485,-3816], +[1,3,9380], +[0,9381,194,9382,8], +[0,-14465,-14466,-597,-636,-14467,-14468,-14469,-14470,-14471,-14472,-2550], +[0,-2494,-3673,-687,-14473,-4270], +[1,3,9384], +[0,9385,9386,7,11], +[0,-8231,-426,-4049,-14474,-14475,-14476,-461,-14477,-635,-14478,-909,-14335,-982,-997,-8610,-1119,-11677,-8562,-1641, +-9548,-2168,-2321,-2335,-12982,-2510], +[0,-23,-41,-50,-13541,-14479,-8608,-4035,-3136,-3713,-14480,-3037,-14481,-14482,-534,-14483,-14484,-711,-753,-774,-778, +-807,-922,-3068,-932,-6929,-1041,-1067,-1110,-14485,-1322,-1344,-1405,-1415,-8950,-1417,-1418,-1421,-1424,-1455,-1460, +-1521,-1522,-1534,-1548,-1549,-1623,-14486,-1643,-8913,-1733,-1788,-1806,-8436,-1942,-1950,-1974,-9720,-2000,-2006,-2019, +-14487,-2090,-4242, +-2095,-2098,-2101,-2125,-5508,-2205,-2269,-2275,-2334,-2344,-2354,-2362,-2376,-2410,-2427,-2437,-14488,-14489,-2503, +-14490,-2549], +[1,3,9388], +[0,9389,9390,9391,10], +[0,-2531,-2213,-461,-1810,-811,-719,-462,-1863,-1321,-930,-13410], +[0,-824,-664,-1168,-1415,-1652,-932,-1111,-1940,-753,-784,-1889,-2501,-1044,-1978,-682,-778,-1174,-1653,-2437,-23,-667, +-2503,-518,-528,-534,-1566,-2275,-44,-1565,-14491,-1908,-9422,-40,-14492,-2505,-41,-540,-969,-14493,-2335,-14494,-14495, +-38,-33,-3376], +[0,-2501,-4161,-14496,-3209,-8799,-9845,-14497,-12942,-14498,-7067], +[1,3,9393], +[0,9394,9395,9396,10], +[0,-914,-2068,-713,-719,-1381,-769,-1363,-2508,-14499,-5594,-11676,-13410,-14500], +[0,-14501], +[0,-2501,-687,-3108,-3551,-7882,-3578], +[1,3,9398], +[0,9399,9400,9401,9], +[0,-1623,-713,-1641,-1800,-1997,-2168], +[0,-1501,-1313,-1415,-999,-1344,-774,-932,-3122,-729,-825,-1004,-1030,-1110,-2501,-1942,-767,-823,-2293,-21,-190,-204, +-533,-2410,-23,-3037,-1041,-1534,-1771,-1045,-5039,-3617,-86,-965,-3560,-14502,-2251,-40,-4835,-3713,-14503,-959,-960, +-958,-6929,-978,-940,-967,-3748,-3307], +[0,-2501,-5401,-3113], +[1,3,9403], +[0,9404,9405,7,9], +[0,-2531,-1805,-12860,-13318,-1004,-13074,-679,-4204,-713,-11121,-3727,-724,-1119,-2186,-2168,-14504,-13386,-14505,-3617, +-14506,-14507,-14508,-14509,-1338,-2504,-731,-12962,-14510], +[0,-1313,-1415,-1521,-461,-999,-1344,-14511,-1623,-774,-932,-1610,-2125,-729,-753,-2501,-1942,-1978,-2293,-21,-533,-778, +-1336,-2410,-23,-3037,-1522,-1534,-1771,-2503,-534,-2275,-2230,-4356,-2508,-44,-86,-965,-2062,-2817,-3560,-2251,-40, +-4835,-8477,-2411,-3732,-4035,-959,-960,-1331,-5474,-32,-14512,-7716,-958,-6929,-940,-1419,-38,-3307,-5585], +[1,3,9407], +[0,9408,9409,9410,5], +[0,-2269,-1320,-14509], +[0,-1788,-1654,-2210,-932,-1004,-2501,-1942,-2293,-967,-2504], +[0,-2501,-6211,-12517,-3551,-14513,-14514,-5401,-1004], +[1,3,9412], +[0,9413,9414,7,5], +[0,-2321,-2510], +[0,-366,-3037,-3046,-14515,-3750,-748,-824,-932,-14516,-948,-1041,-1344,-1534,-1626,-1939,-1942,-14517,-2006,-2275,-2387, +-2410,-2469,-2501,-2508], +[1,3,9416], +[0,9417,9418,9419,5], +[0,-1055,-9087,-3415], +[0,-1344,-2387,-14518,-2501,-1942,-2410,-14519,-426], +[0,-2501,-1631], +[1,3,9421], +[0,0,9422,9423,5], +[0,-664,-932,-958,-1654,-1658,-1705,-2501], +[0,-2501,-5757,-3966,-4161,-14520], +[1,3,9425], +[0,0,9426,9427,5], +[0,-1415,-932,-1110,-2501,-1405,-1942,-756,-190,-2231,-2410,-3136,-965,-3560,-959,-960,-12916,-958,-6929,-978,-940,-967, +-3748], +[0,-2501,-2231], +[1,3,9429], +[0,9430,0,9431,4], +[0,-1119,-769,-2359,-1860], +[0,-9711,-11891], +[1,3,9433], +[0,9434,9435,9436,8], +[0,-642,-812,-922,-14521,-13490,-14522], +[0,-641,-1168,-1224,-1453,-1452,-2322], +[0,-2512,-6224,-9005,-14523,-14524,-5737,-14525,-8841,-3844,-3323], +[1,3,9438], +[0,9439,9440,9441,5], +[0,-14526,-14527,-14528,-14529,-14530,-14531,-14532,-14533,-14534,-14535,-14536,-14537,-812,-929,-14538,-14539,-14540, +-14541,-14542,-14543,-14544,-1640,-1801,-14545,-1976,-10570,-14546,-1997,-10576,-13357,-14547,-13729,-14548,-14549, +-14550,-14551,-14552,-14553,-14554], +[0,-23,-32,-3367,-40,-14555,-468,-14556,-10575,-14557,-571,-14558,-640,-14559,-771,-14560,-932,-943,-958,-965,-968,-1045, +-14561,-1834,-14562,-1985,-2151,-2174,-2187,-6390,-8573,-2320,-2322,-2335,-6391,-2501,-2503,-14563], +[0,-14564,-14565,-867,-14566,-14567,-14568,-14569,-9292,-14570,-14571,-14572,-6471,-14573,-2513], +[1,3,9443], +[0,9444,9445,9446,10], +[0,-596,-1696], +[0,-11836,-2319], +[0,-3708,-14574,-14575], +[1,3,9448], +[0,9449,9450,7,5], +[0,-1004,-1758,-2424], +[0,-710], +[1,3,9452], +[0,0,9453,7,4], +[0,-664,-1471,-1654,-932,-2127,-1942,-1474,-1482,-516,-1962,-14576,-1475,-1477,-1487,-1479,-5993,-8365], +[1,3,9455], +[0,0,9456,9457,6], +[0,-2493,-1107,-14577,-3691,-1460,-14578,-1452,-1650,-14579,-1813,-589,-14580,-2416,-633,-1963,-14439], +[0,-14581,-14582,-6306,-1961,-5923,-6307,-6308,-2517,-510,-6235,-11153], +[1,3,9459], +[0,9460,29,7,5], +[0,-14583], +[1,3,9462], +[0,0,9463,9464,10], +[0,-2778,-1446,-1654,-1666,-14584,-14585], +[0,-7084,-11722], +[1,3,9466], +[0,9467,9468,9469,8], +[0,-14586,-5758,-510,-1399,-14587,-14588,-2062,-7967,-2249,-8879,-2522], +[0,-21,-23,-40,-14589,-3037,-14590,-509,-14591,-932,-14592,-1415,-2125,-2240,-13361,-2347,-14593], +[0,-2520,-3444,-5545,-11989,-8948,-648,-1867,-1577,-3674,-4055,-5827], +[1,3,9471], +[0,9472,9473,9474,6], +[0,-14594,-1793,-8879,-2522], +[0,-14595,-14596,-664,-932,-966,-1654,-2125,-3708], +[0,-2520,-14597,-14598,-14599], +[1,3,9476], +[0,9477,9478,9479,4], +[0,-14587,-2062,-8879], +[0,-3037,-509,-526,-558,-821,-932,-14589,-1654,-1788,-2125,-14593], +[0,-2520,-3443,-14600], +[1,3,9481], +[0,9482,9483,9484,4], +[0,-14601,-1107,-1548,-14602,-2347,-14603], +[0,-664,-1077,-1405], +[0,-622,-5897,-4633,-9405,-11729,-3015], +[1,3,9486], +[0,0,88,9487,11], +[0,-14604,-14605,-6722,-14606,-14607,-14608,-14609,-5554,-10781,-2524,-12439,-4001], +[1,3,9489], +[0,0,31,9490,8], +[0,-10781,-4001,-11315,-3276,-6787], +[1,3,9492], +[0,9493,9494,9495,9], +[0,-7141,-1948,-4701,-2510,-14610], +[0,-3037,-3046], +[0,-14611,-14612,-2501,-14613,-6491,-14614,-14615,-14616], +[1,3,9497], +[0,9498,9499,9500,4], +[0,-482,-2267,-2269], +[0,-519,-668,-756,-3607,-1788,-2384,-2541], +[0,-4001,-14604,-2525,-14617,-14618,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513, +-5550,-2547,-1573,-5545,-3958,-5554], +[1,3,9502], +[0,9503,29,9504,6], +[0,-8143,-2202], +[0,-14619,-14620], +[1,3,9506], +[0,0,9507,9508,4], +[0,-589,-642,-932,-940,-967,-1110,-1654,-1788,-1942,-13490], +[0,-14621,-14622,-14525,-14623,-14624,-3509], +[1,3,9510], +[0,9511,9512,9513,9], +[0,-7334,-615,-668,-674,-812,-14625,-1400,-1403,-1792,-3633,-14626,-14627], +[0,-756,-1405,-1654,-1657,-6810,-2125,-2210,-2250], +[0,-3690,-674,-14628,-6596,-7534,-3578], +[1,3,9515], +[0,9516,9517,9518,8], +[0,-1109,-14629,-14630,-2546], +[0,-1065,-1939,-2320,-2322], +[0,-2533,-1334,-2540,-3120,-633], +[1,3,9520], +[0,9521,9522,9523,6], +[0,-8696,-14631,-14632,-10781,-14633,-14634,-14635], +[0,-7746,-461,-1449,-1654,-2210,-932,-14636,-600,-879,-719,-2410,-3037,-14637,-14638,-957,-7894,-14639], +[0,-11592,-11593,-2534,-14640,-8787,-8713,-788,-14641,-14642,-14643,-10780,-9133], +[1,3,9525], +[0,9526,9527,9528,4], +[0,-2165], +[0,-527,-534,-558,-11550,-632,-14644,-14645,-13841,-708,-756,-767,-932,-14646,-1405,-1412,-1415,-1417,-14647,-1753,-1771, +-1955,-2410,-14648,-2490,-2501], +[0,-14649,-6597,-3756,-4182,-4055,-14650,-14651,-14652,-14653,-14654,-8531,-8532,-2536,-2537,-6408,-8530,-14655,-9307, +-5845,-14656,-14657,-14658,-1838,-3215,-6747], +[1,3,9530], +[0,9531,9532,9533,8], +[0,-2165,-2538], +[0,-756], +[0,-6597,-4055], +[1,3,9535], +[0,9536,219,7,4], +[0,-1309,-1435,-14659], +[1,3,9538], +[0,0,192,9539,4], +[0,-6597,-2538], +[1,3,9541], +[0,0,9542,9543,4], +[0,-1415,-2555,-14660,-932,-1753,-14661,-1942,-1100,-1771,-953,-7055,-940,-967], +[0,-5387,-5092,-6597,-3215,-3214,-14662,-14663], +[1,3,9545], +[0,0,0,9546,4], +[0,-2533,-5998], +[1,3,9548], +[0,9549,9550,9551,4], +[0,-1630,-506,-932,-1111,-1110,-1942,-1099,-2400,-1639,-755,-8275,-1849,-1101,-965,-11813,-950,-2411,-14664,-968,-978, +-5918,-940,-9869,-8339,-967,-3686,-3748,-428,-14014,-9486,-8230], +[0,-1763,-519,-999,-1344,-815,-5917,-1534,-3330,-86,-6630,-4036,-1768,-1945,-3307,-7357], +[0,-5732,-687,-2541,-8193,-8196,-8197,-707,-8169,-5553,-7148,-8170,-1452,-8171,-932,-5874,-8172,-2250,-8173,-7440,-7144, +-8174,-7840,-8175,-5493,-3214,-2410], +[1,3,9553], +[0,0,9554,9555,4], +[0,-4733,-920,-14665,-1654], +[0,-2542,-6597], +[1,3,9557], +[0,9558,9559,9560,10], +[0,-3345], +[0,-21,-23,-14666,-38,-40,-14667,-535,-14668,-14669,-633,-932,-1412,-1451,-1788,-14670], +[0,-5569,-5570,-14671,-4112], +[1,3,9562], +[0,9563,9564,9565,4], +[0,-719,-2858], +[0,-1788,-812,-1654,-932,-756,-2416,-633], +[0,-8472,-2544,-7723,-14242,-3962,-7107,-5559,-6422,-7724,-2451,-3264,-6138,-14672], +[1,3,9567], +[0,0,9568,9569,4], +[0,-14673,-469,-1872,-2153,-2535], +[0,-14674,-14675,-14676,-14677,-14678,-4125,-14679,-3552], +[1,3,9571], +[0,0,31,9572,10], +[0,-1015,-1631,-6792,-6696,-7208,-5839], +[1,3,9574], +[0,0,9575,9576,5], +[0,-3983,-3035,-3198,-14680,-3617,-14681,-3036,-4647,-3621,-3037,-14682,-3046,-4204,-427,-428,-664,-767,-821,-932,-960, +-1004,-11616,-1107,-1449,-1654,-1689,-1741,-1788,-2233,-2234,-2376,-2410,-2443,-2501,-2503,-2531,-14683], +[0,-687,-3958,-4000,-11564,-5550,-8905,-3770,-14684,-3974,-3975,-5561,-13861,-2547], +[1,3,9578], +[0,0,9579,9580,8], +[0,-1415,-2387,-932,-2127,-1942,-190,-533,-1023,-2410,-23,-3136,-3037,-1426,-40,-2411,-3326,-3561,-940,-3267,-14685,-3412], +[0,-14686,-3215,-3270], +[1,3,9582], +[0,9583,9584,9585,10], +[0,-1107,-503], +[0,-589,-6398,-1414], +[0,-2548,-4055,-14687,-14688], +[1,3,9587], +[0,9588,9589,235,5], +[0,-701,-10415,-5505,-2267,-10751,-2551], +[0,-32,-42,-3035,-3621,-3037,-427,-14689,-652,-664,-668,-10480,-767,-769,-932,-967,-1166,-11831,-1654,-2125,-2410,-2518, +-14690], +[1,3,9591], +[0,0,9592,9593,4], +[0,-32,-42,-3035,-3621,-3037,-427,-428,-652,-664,-767,-932,-1166,-1654,-1978,-2125,-2184,-2253,-2410], +[0,-6748,-3215,-2550,-3957,-687,-6747,-5829,-4377,-6748], +[1,3,9595], +[0,9596,9597,7,4], +[0,-14691,-567,-651,-656,-668,-10506,-719,-14692,-812,-10659,-834,-1105,-1371,-1384,-5894,-1526,-14693,-1645,-1650,-1728, +-1733,-1796,-7772,-2059,-14694,-2105,-14695,-2125,-14696,-2177,-2270,-2323,-2325,-2441,-10523], +[0,-527,-528,-533,-534,-6085,-555,-559,-14697,-14698,-560,-562,-572,-932,-14699,-7748,-14700,-951,-14701,-956,-14702,-969, +-1059,-1168,-1174,-1232,-1237,-1266,-1268,-1415,-1455,-1661,-2330,-2501], +[1,3,9599], +[0,0,0,9600,8], +[0,-2552,-2554,-3590,-5550,-1764,-13499], +[1,3,9602], +[0,9603,9604,9605,11], +[0,-5822,-11280], +[0,-599], +[0,-2432,-5408,-5827,-5409,-6656], +[1,3,9607], +[0,9608,9609,263,5], +[0,-14703,-14704,-14705,-14706,-14707,-506,-668,-719,-812,-999,-14708,-1111,-14709,-8802,-1549,-14710,-14711,-2177,-2218, +-2430,-14712], +[0,-3198,-3164,-3037,-3199,-14713,-652,-757,-932,-14714,-1077,-1446,-1942,-1945,-2125,-2210,-14715,-2269,-2410,-9011, +-9010], +[1,3,9611], +[0,9612,9613,263,6], +[0,-668,-812,-999,-2177,-1646,-1549,-9444,-2205,-2343,-1456,-14711,-1514,-14716,-3609,-3164,-14705], +[0,-888,-1446,-2210,-2469,-757,-1376,-1942,-2400,-4370,-2410,-9010,-3198,-4372,-3199,-9011,-14713,-5686,-14703,-12968, +-14706,-4049,-2556,-3664,-1945], +[1,3,9615], +[0,0,14,9616,4], +[0,-2558,-14717,-14718,-687,-1965,-5874,-3962,-3953,-14719,-14720,-1838,-14721], +[1,3,9618], +[0,9619,9620,9621,11], +[0,-1630,-1805,-668,-2562,-1548,-1040,-10325,-14722,-14723,-9764,-14724,-14725,-728,-769,-14726,-10388,-5895,-14707,-6715, +-14727,-14703,-14728,-3609,-2433,-14729,-2556], +[0,-652,-2541,-1722,-2210,-14714,-1110,-756,-14730], +[0,-5732,-687,-3577,-3113,-7646,-7641,-3578,-3673,-3970,-9471,-3976,-3262,-3960,-3994,-3871], +[1,3,9623], +[0,0,9624,9625,4], +[0,-14731,-479,-519,-668,-689,-713,-1496,-10962,-1863,-2384,-2541], +[0,-712,-5535,-714,-3974,-4000,-687,-2265,-5514,-5553,-3770,-3975,-5538,-5550,-2547,-1573,-5545,-3958,-5554], +[1,3,9627], +[0,9628,101,9629,6], +[0,-719,-1376], +[0,-2561,-3690,-3844,-3445], +[1,3,9631], +[0,9632,9633,9634,4], +[0,-1630,-668,-688,-2528,-481,-2269,-482,-2267,-14732], +[0,-2541,-1654], +[0,-5732,-687,-3976,-2559,-14733,-14734,-6335,-12665,-5514], +[1,3,9636], +[0,218,9637,9638,5], +[0,-2198,-2177,-1654], +[0,-14735,-2563,-14736,-14737,-14738,-5269,-14739,-6249], +[1,3,9640], +[0,0,0,9641,11], +[0,-2410,-4058,-3926,-8038,-8910], +[1,3,9643], +[0,9644,9645,9646,6], +[0,-523,-1004,-1851,-2564], +[0,-3731,-3035,-4269,-3732,-14740,-3617,-14741,-3621,-14742,-617,-664,-665,-720,-724,-744,-796,-932,-14743,-1380,-1654, +-1676,-1764,-1942,-2251,-2379,-2410], +[0,-2564,-1004,-3690,-14744,-14745,-3445], +[1,3,9648], +[0,9649,9650,9651,10], +[0,-567,-615,-812,-13317,-1351,-1449,-1548,-1640,-1681,-2105,-2364,-2531], +[0,-526,-528,-555,-558,-617,-744,-824,-932,-1004,-1168,-1174,-1197,-11777,-1235,-1252,-1266,-1654,-1676,-1687,-12720, +-2111], +[0,-4004,-3636,-3634,-9249,-4679,-4683,-14387,-11878,-4865,-3264,-5177,-5092,-775,-3214,-4868,-5998,-10640,-14746], +[1,3,9653], +[0,0,9654,7,4], +[0,-2934,-2953,-14747,-9705,-3037,-14748,-615,-10877,-1419,-1421,-1415,-1654,-1660,-1412,-2234,-1413,-10034,-2153,-2314, +-2387,-2469], +[1,3,9656], +[0,9657,9658,9659,8], +[0,-14749,-7334,-633,-8958,-14750,-714,-719,-724,-742,-812,-1004,-14751,-5456,-14752,-5457,-1296,-1304,-1336,-5458,-14753, +-5459,-1548,-1810,-1820,-14754,-2194,-14755,-7222,-2291,-14756,-8573,-2491,-2493,-2546,-2549,-14757], +[0,-465,-14758,-14759,-1654,-1860,-2322,-2347,-14760], +[0,-2568,-3634,-4865,-1989,-1654,-5471], +[1,3,9661], +[0,9662,40,9663,5], +[0,-293,-295,-297,-14761,-832,-2177,-2369,-2387], +[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340,-4343,-4347], +[1,3,9665], +[0,9666,40,164,6], +[0,-668,-2387,-297,-2177,-1110,-293,-7356,-429,-14761,-8167,-5201], +[1,3,9668], +[0,9669,40,9670,4], +[0,-2387,-297,-2177,-1427,-1645,-293,-1863,-4023,-1426,-2551,-4018,-11751,-4019,-1352,-14761], +[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-14762,-4340,-4347], +[1,3,9672], +[0,9673,9674,9675,9], +[0,-2387,-297,-2177,-293,-295,-2569,-14761], +[0,-1787,-2257], +[0,-4333,-4334,-4335,-14763,-4339,-4340,-4343,-4347], +[1,3,9677], +[0,9678,9679,9680,11], +[0,-14764,-14765,-2387], +[0,-14766,-14767,-4745,-2344], +[0,-14768,-2006,-14769,-14770,-5176,-9547,-7581,-12543,-14771,-14772,-14773], +[1,3,9682], +[0,9683,9684,9685,11], +[0,-14774,-2634,-2006,-2019,-14775,-2170,-14776], +[0,-3037,-3040,-3052,-932,-10813,-1889,-2318,-2410], +[0,-5375,-770,-13055,-5375,-3634,-8576,-13056,-3551,-13057,-13058,-5376,-13059,-11152,-5150], +[1,3,9687], +[0,9688,0,9689,4], +[0,-786,-1967,-44,-3772,-3773,-3765], +[0,-2006,-3159,-4217,-906], +[1,3,9691], +[0,9692,190,9693,11], +[0,-6789,-6790,-14777], +[0,-3214,-1446,-1838,-10855,-856], +[1,3,9695], +[0,9696,9697,264,4], +[0,-44,-3345], +[0,-3136,-1415], +[1,3,9699], +[0,9700,9701,9702,4], +[0,-44,-14778,-1967,-2029,-2387], +[0,-3192,-6093,-3394,-3794,-2685,-14779,-8471,-261,-3326,-350,-405,-406,-407,-14780,-409,-410,-3136,-3140,-3040,-427,-428, +-3766,-14781,-14782,-639,-757,-767,-795,-932,-3071,-969,-1059,-14783,-14784,-5111,-8158,-1771,-1940,-4130,-2006,-2019, +-2029,-2034,-2052,-2184,-2253,-2410], +[0,-14785,-2006,-6701,-14786,-14787,-3823,-6750,-12605,-14788,-4666,-14789,-12606,-14790], +[1,3,9704], +[0,90,0,9705,9], +[0,-4665,-4666,-5248,-10111,-775,-5564,-14791,-3962,-3214,-3756,-14792,-14793,-12898,-14794,-14795,-1889,-3583,-14796, +-14797,-6750,-12123,-14798,-2363,-14799], +[1,3,9707], +[0,9708,9709,9710,9], +[0,-2857,-14800,-14801,-482,-14802,-1460,-2400,-14803], +[0,-14804,-3311,-3312,-14805,-14806,-14807,-2410], +[0,-14808,-4187,-2444,-3966,-4865,-3445,-3100,-14809,-14810], +[1,3,9712], +[0,0,0,9713,8], +[0,-3276,-7148,-14811,-7485,-4165,-4182,-14812,-14813,-14814,-7198,-14815], +[1,3,9715], +[0,9716,9717,264,5], +[0,-23,-12490,-44,-3345,-14816,-14817,-14818,-14819,-2577,-14820,-14821,-14822,-160,-14823,-2695,-14824,-4785,-14825, +-2699,-366,-3735,-9947,-14826,-440,-14827,-518,-534,-14828,-5323,-635,-668,-719,-753,-778,-779,-865,-866,-1077,-1107, +-1122,-14829,-1123,-1331,-1455,-1469,-1548,-1643,-1666,-14830,-1729,-1805,-1889,-1896,-1897,-1906,-1908,-12060,-1942, +-1966,-6387,-2015,-2041,-2144, +-5977,-2193,-2195,-2275,-14831,-2335,-14832,-2435,-2466,-11710,-2501,-2502,-2505,-5628], +[0,-14833,-3758,-3048,-3044,-14834,-4201,-6630,-13186,-5129,-1623,-1683,-1978,-2125], +[1,3,9719], +[0,34,9720,9721,5], +[0,-234,-350,-4062,-351,-3561,-3043,-3136,-3040,-427,-428,-3807,-748,-915,-932,-940,-958,-967,-969,-1415,-1419,-1449, +-1788,-1942,-2006,-2019,-2125,-2127,-2130,-4063,-4064,-2142,-2144,-2233,-2375,-2376,-2379,-2387,-2402,-2501,-2503,-2505, +-238,-240], +[0,-9975,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[1,3,9723], +[0,34,9724,9725,4], +[0,-23,-40,-42,-4066,-3136,-3037,-427,-428,-14835,-14836,-14837,-441,-4838,-5593,-753,-767,-932,-940,-958,-14838,-980, +-1415,-1419,-1942,-2125,-2127,-2128,-2130,-2142,-2144,-14839,-2375,-2387,-2402,-2410,-2476,-238], +[0,-2476,-3944,-14840,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[1,3,9727], +[0,34,9728,9729,8], +[0,-23,-40,-42,-3035,-3136,-3621,-3037,-427,-428,-14835,-14836,-14841,-14837,-441,-4838,-5593,-664,-767,-932,-940,-958, +-14838,-980,-1771,-1942,-2125,-2127,-2128,-2130,-2142,-2144,-14839,-14842,-2387,-2402,-2410,-2476,-238,-2584], +[0,-2476,-3944,-14840,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060,-5177,-775,-2316], +[1,3,9731], +[0,9732,9733,9734,5], +[0,-5334,-9596,-9582,-1839,-5358,-6648], +[0,-4251,-3037,-652,-12326,-1942,-2094,-2100,-7699,-2399,-2400,-2410,-7669,-2541], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-1838,-14843], +[1,3,9736], +[0,0,9737,9738,4], +[0,-932,-1654,-1788,-2210], +[0,-2254,-14844,-14845,-13497,-14846,-3445], +[1,3,9740], +[0,0,0,9741,4], +[0,-14847,-14848,-14849,-14850,-14851,-14852,-14853,-14854,-856,-1599], +[1,3,9743], +[0,9744,9745,9746,6], +[0,-9929,-9936,-14855,-812,-9927,-1371,-1875,-2240,-2347,-2387,-2555], +[0,-3986,-3988,-3470,-3471,-3198,-9943,-11697,-3136,-3037,-11337,-9941,-7836,-8497,-932,-1415,-1942,-2174,-2375,-2410], +[0,-5271,-5270,-687,-3162,-3994,-9946,-5269], +[1,3,9748], +[0,9749,0,9750,5], +[0,-5334,-14856,-12767,-1293,-14857,-5356,-5358], +[0,-9589,-3264,-14857,-14075,-1599,-10684,-10918,-3862,-2083,-12745,-2093,-14858,-2427], +[1,3,9752], +[0,9753,9754,9755,5], +[0,-1281,-2297], +[0,-519,-708,-2410,-2541], +[0,-10606,-3974,-14859,-687,-6659,-7440,-5514,-5560,-4000], +[1,3,9757], +[0,9758,9759,9760,11], +[0,-8609,-12518], +[0,-2832,-11432,-3615,-3244,-190,-3983,-367,-7043,-406,-407,-409,-14860,-3136,-3037,-3040,-12591,-427,-428,-9723,-932, +-940,-12520,-969,-970,-976,-1110,-1344,-1415,-1419,-1534,-2634,-1942,-2006,-2019,-2965,-2125,-2177,-2410,-2411], +[0,-2592,-2006,-3322,-2105,-3324,-4213], +[1,3,9762], +[0,0,9763,9764,5], +[0,-3037,-2228,-2229,-2391,-2410], +[0,-2410,-8038,-3694,-9069,-7304,-8425,-6582,-7534,-4058,-3445,-3577,-4055,-6435,-640,-5835,-6421,-10227,-6233,-12343, +-14861,-14862], +[1,3,9766], +[0,9767,9768,9769,4], +[0,-14863,-14864,-14865], +[0,-25,-46,-3983,-932,-1452,-1547,-1654,-2111,-8325,-2384,-2416], +[0,-14233,-14866,-4865,-6899,-1819,-14867,-13626,-2594,-14868,-14869,-14870,-14871,-14872,-14873,-14874], +[1,3,9771], +[0,0,9772,9773,4], +[0,-1449,-2105,-2106], +[0,-3264,-9703,-9566], +[1,3,9775], +[0,9776,9777,9778,4], +[0,-1297,-14875,-9684,-2267,-14876,-14877,-14878,-6467,-14879,-14880,-14881,-14882,-14883,-14884,-14885,-14886,-14887, +-14888,-14889,-9154,-14380,-14890,-14891,-14892,-8965,-14893,-14894,-14895], +[0,-652,-999,-2210,-14896,-581,-932,-825,-14897,-1098,-1942,-367,-749,-767,-2293,-2091,-10402,-2410,-3037,-14898,-14899, +-4372,-3906,-11098,-14900,-4203,-14901,-14902,-14903,-14904,-14905,-14906,-13409,-14907,-14908,-4646], +[0,-14909,-3161,-13039], +[1,3,9780], +[0,9781,9782,9783,4], +[0,-14910,-14911,-865,-1461,-1729,-4389], +[0,-14912,-14913,-3037,-4201,-932,-7060,-1942,-2125,-2392,-2410,-2469], +[0,-4344,-7547,-4165], +[1,3,9785], +[0,9786,9787,9788,8], +[0,-812,-2193,-2387,-2550,-1077,-719,-1729,-14914,-9929,-1734,-9931,-14915], +[0,-1763,-1415,-1344,-2331,-932,-2125,-2375,-1942,-2410,-3136,-3037,-3198,-11337,-8890,-50,-3048,-4201,-14916,-3986,-3988, +-427], +[0,-1386,-3996,-14917,-3162,-5269,-3167,-14918], +[0,25,9790], +1753574400000, +[1,3,9792], +[0,9793,0,93,4], +[0,-682,-1384,-1967,-1993,-2006,-2019,-2029,-2489], +[1,3,9795], +[0,9796,0,9797,10], +[0,-2387,-14920,-14921,-14922], +[0,-5818,-1122,-3844,-3161,-3966,-3967,-2410], +[1,3,9799], +[0,9800,9801,221,5], +[0,-9933,-14923,-9938,-9931,-9929,-9934,-9935,-9932,-9937,-9936,-668,-812,-834,-9927,-9925,-1548,-1805,-3547,-8874,-2177, +-2240,-9926,-9422,-2291,-2323,-2387], +[0,-3198,-9939,-9943,-3136,-3044,-3037,-3199,-9941,-4202,-5673,-1415,-1417,-1534,-2125,-2231,-2375,-2410], +[1,3,9803], +[0,34,9804,9805,5], +[0,-14924,-14925,-14926,-8250,-7,-8,-9,-10,-427,-428,-519,-748,-932,-940,-958,-967,-14927,-1788,-1942,-2125,-2153,-2234, +-2387,-2402,-2410,-238], +[0,-475,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[1,3,9807], +[0,9808,9809,9810,4], +[0,-8547,-1548], +[0,-3037,-427,-428,-932,-940,-958,-967,-1942,-2125,-2127,-2130,-2142,-2144,-2387,-2402,-2410,-238], +[0,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[1,3,9812], +[0,9813,9814,65,5], +[0,-712,-2544], +[0,-4597,-2391,-2423], +[1,24,9816], +[0,25,9817], +1738454400000, +[1,3,9819], +[0,9820,9821,9822,4], +[0,-44,-2965], +[0,-14928,-2006,-932,-708,-2379,-1942,-767,-2019,-14929,-2410,-5111,-3040,-14784,-3052,-14930,-2052,-7465,-428,-3081,-427], +[0,-3634,-2006,-3322,-5119,-4868], +[1,3,9824], +[0,9825,0,9826,8], +[0,-14931,-14932,-14933], +[0,-10543,-9745,-11796,-9753,-6955,-9030,-2322,-14934,-4132,-14935,-3277,-14647,-11069,-6129,-11037,-5880,-7375,-14936, +-14937,-6656,-14938,-14939,-10545,-3018,-3210,-14940,-1015,-3756,-3116,-14770,-6960,-11113,-12877,-4058,-14941,-14942, +-6695,-14769,-12869,-6324,-4213,-2564,-6052,-9772,-6821,-5998,-8988,-14943,-11582,-14944,-6511,-5837,-1985,-3103,-14945, +-14946,-5550,-1631,-1000,-8808,-8127,-3590,-1959, +-7333,-2487,-7420,-5856,-9571,-6011,-3921,-10838,-14947,-2265,-11784,-6953,-4111,-14948,-10366,-9054,-6510,-3612,-11685, +-6787,-11798,-12255,-14949,-7863,-14950,-12343,-5176,-719,-3272,-5831,-7373,-14773,-8411,-9027,-11822,-6849,-6962,-7199, +-3690,-5846,-687,-14604,-14951,-7856,-7581,-14952,-5827,-14953,-3215,-5195,-3911,-14954,-2387,-3015,-9980,-6281,-4784, +-14955,-6548,-10547,-6951,-6964,-6599,-13466, +-10527,-11866,-5924,-1435,-13003,-1463,-8038,-3578,-5514,-4782,-7558,-5572,-8410,-4110,-6120,-6968,-503,-14956,-14957, +-6434,-6958,-6917,-3258,-6107,-1640,-3994,-1471,-13469,-12991,-14958,-3186,-5272,-14959,-14960,-6233,-12342,-8910,-10537, +-581,-6187,-3206,-5112,-2368,-6932,-7283,-14961,-11872,-11791,-3931,-6970,-6845,-510,-5874,-14962,-3771,-4113,-11792, +-14963,-3815,-11112,-6717,-7331,-8027,-3634, +-8163,-6977,-6280,-14964,-3322,-12020,-10549,-14965,-5210,-2547,-10544,-8108,-14966,-11153,-5092,-8989,-7822,-1361,-1415, +-1412,-3481,-6370,-655,-3207,-2344,-6972,-8166,-11782,-7459,-1764,-770,-2059,-7091,-4053,-4792,-6946,-8412,-3582,-6508, +-14967,-14968,-4795,-14969,-12893,-6506,-8164,-5554,-635,-6956,-682,-6557,-14970,-14622,-14971,-11070,-14972,-3930, +-13770,-6987,-7334,-5842,-13468,-14525,-14973, +-1080,-10539,-2518,-6947,-10440,-12892,-8132,-8421,-7404,-2451,-13467,-14974,-1961,-4142,-1122,-6966,-13234,-4679,-12883, +-5549,-5395,-9918,-6971,-14975,-8996,-12543,-5829,-11797,-1810,-6655,-14976,-14977,-14978,-14979,-12888,-7370,-8616, +-7237,-2319,-6748,-14980,-6439,-1076,-2074,-5569,-3173,-7230,-1983,-14981,-3770,-1993,-11793,-4107,-13465,-1039,-10413, +-12437,-7303,-9173,-6989,-12990,-14982,-6978,-5553, +-3270,-3185,-10330,-3217,-14983,-1030,-9172,-9917,-4055,-4665,-11821,-3324,-5563,-6784,-6965,-7421,-1359,-1654,-4676, +-2105,-14984,-6545,-3175,-10541,-6130,-6957,-3276,-14985,-12025,-7200,-14986,-2489,-1666,-9261,-775,-6543,-7442,-12912, +-13471,-14987,-4781,-13005,-615,-3966,-1449,-4115,-12889,-3925,-14988,-6654,-14989,-8388,-8472,-6948,-9048,-14624,-14772, +-12512,-8806,-3975,-3209,-14990,-4783,-6975, +-14991,-6509,-6444,-9847,-11867,-6985,-14992,-11639,-14993,-3926,-6188,-3162,-6555,-11049,-753,-3184,-14994,-664,-6986, +-8128,-14995,-6131,-6852,-12435,-7372,-14996,-1573,-12021,-14997,-14998,-1456,-14999,-3923,-15000,-4134,-5562,-5101, +-8047,-9826,-15001,-2525,-15002,-15003,-9577,-15004,-15005,-5396,-5208,-15006,-10548,-2114,-13872,-12438,-729,-7369, +-5484,-6351,-8618,-714,-4117,-9572,-12885,-13858,-6983, +-11820,-15007,-15008,-1047,-11997,-1342,-727,-15009,-5260,-15010,-8990,-4182,-8130,-6952,-518,-12878,-1986,-15011,-11817, +-891,-1801,-6976,-5841,-11483,-7440,-15012,-15013,-6980], +[1,3,9828], +[0,0,9829,9830,4], +[0,-1452,-8171,-1654], +[0,-5514,-3264], +[1,3,9832], +[0,9833,9834,9835,5], +[0,-4372,-2210,-2387], +[0,-13198,-3698,-13201,-13202,-13204,-13205,-15014,-2402], +[0,-5817,-521,-3634,-4215,-8466,-15015], +[1,3,9837], +[0,0,9838,9839,8], +[0,-3561,-668,-15016,-1077,-1107,-1168,-1190,-15017,-2125,-2127,-2132,-2142,-2334,-2387,-2388,-2410], +[0,-3994,-4126,-15018,-15019,-3578,-5270,-11536,-3214,-2363,-15020,-3162,-752,-3862,-2494,-3588], +[1,3,9841], +[0,0,0,9842,5], +[0,-4000,-3162,-812], +[1,3,9844], +[0,9845,9846,9847,8], +[0,-617,-724,-812,-832,-5035,-996,-1496,-2213,-2564], +[0,-3983,-15021,-3171,-364,-3170,-365,-3865,-3330,-518,-803,-932,-940,-975,-1110,-1889,-1942,-1946,-2910,-2299,-2300, +-2318,-2410,-2466,-2469], +[0,-3690,-3445,-1334,-2512,-2531,-3691,-3967], +[1,3,9849], +[0,0,9850,9851,6], +[0,-23,-40,-86,-3307,-518,-534,-632,-12427,-664,-15022,-699,-15023,-796,-15024,-1168,-15025,-1174,-15026,-15027,-1184, +-1187,-1197,-1199,-1212,-1228,-1232,-1237,-1238,-1243,-1244,-1248,-15028,-1252,-1262,-1271,-15029,-1344,-15030,-1442, +-1496,-1654,-1655,-15031,-4916,-1889,-1953,-2109,-2111,-2127,-2128,-3572,-3031,-15032,-2210,-4096,-15033,-2460,-15034, +-2501,-7752], +[0,-775,-3754,-2162,-3756,-3576,-3575,-3161,-6334,-15035,-15036], +[1,3,9853], +[0,9854,9855,9856,9], +[0,-668,-15037], +[0,-15038,-3664,-1344,-1534,-1942,-2410,-2469], +[0,-687,-712,-714,-5535,-3958,-4000,-5538,-15039,-15040,-1573,-5545,-5550,-2265,-5553,-3770,-3974], +[1,3,9858], +[0,9859,9860,9861,8], +[0,-3776,-15041,-1606,-1967], +[0,-21,-23,-32,-5870,-26,-12490,-34,-12492,-3376,-3400,-3398,-3380,-40,-41,-15042,-3615,-3244,-190,-15043,-12687,-15044, +-15045,-15046,-4749,-4758,-15047,-406,-407,-409,-15048,-410,-3136,-4961,-3037,-3040,-3052,-3804,-527,-533,-534,-8560, +-15049,-4976,-15050,-684,-748,-749,-753,-767,-824,-932,-933,-940,-951,-958,-962,-967,-969,-970,-976,-1077,-1110,-15051, +-1415,-4980,-1417,-1419,-15052,-1449,-1889,-1939,-1942,-1952,-2006,-2015,-2019,-2029,-15053,-2082,-2205,-2257,-2278, +-15054,-2339,-15055,-13807,-2375,-2376,-2410,-2501,-2503,-2505], +[0,-2631,-15056,-15057,-3095,-3482,-4189,-3161,-2006,-4101,-15058,-3261,-15059,-15060,-15061,-15062,-4666,-15063,-15064, +-15065,-712,-8038,-3999,-4684,-15066,-3160,-3477,-4727,-15067,-2278], +[1,3,9863], +[0,0,0,9864,4], +[0,-9681,-9681,-3264,-7153,-2435], +[1,3,9866], +[0,0,9867,9868,4], +[0,-15068,-1127,-1134,-1136,-1138,-1140,-1144,-1148,-1149,-15069,-1160], +[0,-14214,-14213,-15070,-15071,-3825,-4126,-6409,-12536,-13615,-1437,-8635,-3576,-3162], +[1,3,9870], +[0,9871,9872,254,11], +[0,-1889,-2694,-2279,-4007,-658,-6410], +[0,-2531,-502,-1683,-1816,-2323,-2564,-6842,-1107,-2178,-2444,-461,-2624,-651,-812,-1072,-1460,-12980,-507,-640,-649,-743, +-997,-1401,-1699,-2066,-2177,-2334,-5034,-1047,-3447,-1827,-1958,-2501,-1977,-1999,-12981,-12955,-367,-4204,-719,-767, +-1273,-11121,-10697,-9548,-1864,-2257,-12982,-15072,-5052,-5673,-12971,-12972,-778,-2745,-1336,-2773,-1354,-12977,-2231, +-2269,-2343,-2410, +-10052,-23,-237,-3036,-12967,-8559,-5900,-512,-2740,-724,-769,-1429,-2163,-12978,-2194,-6375,-12979,-3921,-47,-3872, +-10098,-12956,-3269,-3198,-12963,-3040,-534,-635,-12973,-737,-12974,-1465,-12976,-1930,-8578,-2275,-2594,-12957,-5033, +-3044,-3199,-12975,-8562,-6378,-2041,-5977,-6380,-44,-12960,-15073,-6381,-1851,-6383,-6384,-46,-4020,-13428,-12966,-6633, +-6386,-1848,-6387,-3194,-12951, +-3983,-4749,-8523,-3052,-1337,-6388,-1734,-22,-40,-13427,-12968,-771,-1343,-2233,-11463,-6390,-6391,-5038,-4776,-3732, +-7080,-6832,-7026,-1927,-41,-12947,-269,-5085,-3850,-12964,-12969,-736,-1929,-2082,-32,-13186,-6394,-1934,-4195,-3251, +-12948,-12952,-15043,-12965,-14296,-7165,-7967,-2335,-12949,-15074,-10100,-10101,-7189,-1903,-2791,-12953,-12959,-1643, +-3077,-42,-12950,-8355,-15075,-8863, +-12954,-4758,-12961,-12946,-4762,-5323,-4763,-8561,-6484,-38,-7164,-12962,-1915,-37,-3368,-15076,-3376,-3204,-3379,-3385, +-3389,-553], +[1,3,9874], +[0,0,9875,9876,10], +[0,-652,-13239,-1344,-1534,-1889,-2541], +[0,-1889,-775,-3583,-10739], +[1,3,9878], +[0,9879,9880,9881,9], +[0,-674,-3050,-15077,-1630,-1641,-1863,-3240,-12379,-2218], +[0,-86,-3307,-190,-3470,-7040,-3471,-3472,-7041,-7042,-3713,-3037,-5675,-15078,-427,-428,-767,-932,-965,-999,-1110,-1344, +-13856,-1534,-1870,-1942,-2125,-2174,-2410,-2469], +[0,-3998,-1978,-15079,-3167,-15080,-5270,-5271,-15081,-15082,-15083,-6527,-1594,-3162,-13188,-15084,-15085], +[1,3,9883], +[0,9884,9885,9886,9], +[0,-15086,-15087,-640,-5273,-1610,-1955,-4620,-15088], +[0,-23,-32,-40,-534,-15089,-684,-9994,-778,-932,-933,-12416,-958,-10049,-1041,-3867,-1331,-15090,-2275,-2335,-14648,-2501, +-2502,-2503,-2505], +[0,-3812,-3813,-3814,-3815,-3816,-3817,-856,-15091,-15092,-2637,-4847,-15093,-15094,-15095,-15096,-15097,-15098,-15099], +[1,3,9888], +[0,94,9889,9890,5], +[0,-23,-32,-44,-932,-933,-940,-958,-962,-967,-969,-970,-1415,-3156,-1942,-2006,-2034], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-10738,-9556,-15020,-15100,-12546,-5176], +[1,3,9892], +[0,0,9893,9894,5], +[0,-23,-40,-44,-15101,-12564,-932,-1344,-1534,-2006,-2034,-2410], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-13876,-15102,-6711,-15103], +[1,3,9896], +[0,0,9897,9898,11], +[0,-23,-32,-26,-3204,-38,-40,-41,-3326,-350,-351,-407,-409,-518,-703,-796,-932,-940,-12520,-967,-969,-970,-976,-1344, +-1352,-1415,-1534,-1889,-1942,-1967,-2006,-2019,-2127,-4063,-15104,-3474,-4753,-2281,-2282], +[0,-2006,-13613,-15105,-4108,-2006,-3095,-15106,-3162,-5270,-5271,-15107,-15108,-15109,-15110], +[1,3,9900], +[0,9901,9902,9903,9], +[0,-44,-15111,-15112], +[0,-23,-36,-38,-40,-41,-42,-8280,-50,-15113,-407,-409,-3040,-3052,-427,-428,-440,-528,-651,-767,-932,-940,-967,-969,-1344, +-1415,-1419,-1534,-1942,-2006,-2019,-2125,-2410,-2466], +[0,-15114,-15115,-2006,-3159,-14798], +[1,3,9905], +[0,9906,9907,9908,6], +[0,-656,-15116,-2400], +[0,-2832,-3615,-190,-15117,-9705,-652,-668,-716,-722,-928,-932,-940,-967,-999,-1110,-1344,-1412,-1534,-1574,-1942,-2125, +-7969,-2410,-2411], +[0,-8630,-3671,-856,-3262,-1599,-3437,-4328], +[1,3,9910], +[0,9911,9912,9913,11], +[0,-349,-703,-15118,-3517,-996,-1359,-2040,-2112,-12695,-12518,-15119], +[0,-21,-23,-40,-41,-42,-44,-15042,-10791,-8230,-3615,-190,-12608,-15120,-349,-3562,-15043,-358,-4754,-13424,-2948,-15121, +-4890,-15122,-15123,-15124,-407,-409,-410,-15125,-12940,-15126,-3037,-3040,-3052,-6633,-440,-5286,-3664,-534,-15127, +-8561,-635,-15050,-767,-7272,-7254,-7271,-834,-932,-15128,-940,-948,-958,-960,-962,-967,-969,-970,-15129,-4756,-1107, +-1110,-1344, +-1449,-1534,-1610,-1874,-1942,-2006,-2019,-2029,-2040,-2125,-2257,-2335,-2376,-2378,-2410,-2411,-6412,-2469,-15130,-2501, +-2502,-2503], +[0,-2006,-3476,-14497,-3159], +[1,3,9915], +[0,9916,9917,9918,4], +[0,-15131], +[0,-15132,-15133,-15134,-15135,-350,-351,-410,-4875,-4877,-15136,-15137,-4878,-15138,-15139,-652,-664,-15140,-15141,-932, +-15142,-958,-1449,-11472,-1654,-1942,-2127,-15143,-2184,-2210,-2211,-2253,-2334,-2410], +[0,-15144,-5072,-5065,-12238,-5073,-14939,-15145,-5495,-3161,-12122,-7651,-3110,-15146,-13039,-6106,-6107,-5394,-15147, +-15148], +[1,3,9920], +[0,0,9921,9922,6], +[0,-23,-5585,-40,-2127,-2128,-2133,-2137,-2339,-15149,-13807,-2416], +[0,-15150,-15151,-7581,-1634,-475,-15152,-2006,-2476,-3755], +[1,3,9924], +[0,9925,9926,9927,4], +[0,-44,-15153,-4817,-809,-1549,-15154,-2355,-2451], +[0,-3341,-26,-38,-40,-42,-86,-3307,-2997,-3326,-350,-15155,-4062,-351,-3561,-15156,-15157,-15158,-15159,-3164,-3037,-3803, +-5011,-6109,-427,-428,-4837,-5589,-3664,-3665,-5590,-441,-14247,-14244,-4838,-518,-523,-656,-5339,-720,-726,-767,-795, +-796,-812,-15160,-928,-932,-934,-940,-958,-967,-980,-1125,-1344,-1449,-1521,-1534,-1551,-15161,-1662,-1889,-1942,-1955, +-15162,-2082,-2125,-2127,-13263,-4063,-5122,-6483,-15163,-6746,-4753,-15164,-15165,-2140,-14839,-2145,-15166,-2387,-2410, +-2466,-15167,-2469,-2476,-2478,-2483,-5627], +[0,-2476,-3162,-15168], +[1,3,9929], +[0,9930,9931,9932,5], +[0,-5277,-929,-1437], +[0,-23,-40,-9678,-4964,-518,-521,-15169,-757,-767,-784,-795,-7758,-865,-932,-940,-943,-958,-966,-967,-968,-974,-1753, +-1889,-1890,-1891,-15170,-1896,-1903,-15171,-1906,-1916,-15172,-12060,-1942,-2125,-2127,-2128,-2131,-2133,-8895,-15173, +-2137,-8896,-15174,-2140,-5281,-2214,-2281,-3085,-2302], +[0,-5298,-6656,-15175,-15176,-15177,-7581,-7582,-6527,-15178,-5069,-3162,-12536,-7764,-4634,-12217,-8883,-1437], +[1,3,9934], +[0,9935,9936,9937,5], +[0,-523,-1435,-1548,-1646,-2153], +[0,-664,-932,-4628,-1650,-1654,-2330], +[0,-4116,-826,-687,-6999,-9043,-12054,-15179,-1334,-11915,-15180,-9041,-5730,-7085,-11642,-9261,-7084,-15181,-12578], +[1,3,9939], +[0,0,9940,9941,4], +[0,-518,-632,-1168,-15182,-1194,-1208,-1226,-1238,-1243,-1244,-1252,-7832,-15183,-1899,-2281,-2282,-2550], +[0,-2649,-15184,-15185,-775,-1521,-3162], +[1,3,9943], +[0,0,0,9944,6], +[0,-2006,-4125,-9800,-4633,-2074,-4634], +[1,24,9946], +[0,25,9947], +1731196800000, +[1,3,9949], +[0,9950,9951,7,8], +[0,-15186,-4225,-4228,-15187,-15188,-15189,-4230,-15190,-703,-5342,-15191,-1026,-3649,-1289,-14857,-1618,-10922,-1619, +-5397,-15192,-15193,-2590,-4241,-2088,-4242,-2095,-15194,-15195,-15196,-12978,-4245,-2218,-12508,-2378,-15197,-2429, +-15198,-2548,-2564], +[0,-5048,-409,-426,-5334,-4251,-15199,-3040,-3046,-440,-15200,-9602,-9603,-2634,-2006,-2019,-2427,-2469,-15201], +[1,3,9953], +[0,9954,0,9955,4], +[0,-12260], +[0,-810,-15202,-15203,-6367,-5896,-13618,-15204,-15205,-2653], +[1,3,9957], +[0,9958,9959,204,4], +[0,-4787,-1864], +[0,-2581,-3037,-8523,-1026,-15206,-1107,-2354,-2892,-2410], +[1,3,9961], +[0,0,0,9962,8], +[0,-2410,-3694,-4004,-4043,-1001], +[1,3,9964], +[0,9965,37,9966,4], +[0,-15207,-2387], +[0,-15208,-15209,-15210,-15211,-15212,-2410,-5210,-3215,-6478,-9471,-15213,-8130,-3756,-8386,-15214,-3445,-3577], +[1,3,9968], +[0,0,28,9969,10], +[0,-12613,-3098,-3100,-3482,-2634,-1713,-2006,-12612,-12449,-3160,-4119], +[1,3,9971], +[0,108,28,9972,8], +[0,-707,-3098,-3100,-4131,-3482,-2634,-1713,-2006,-4132,-4133,-3160,-4119], +[1,3,9974], +[0,9975,28,9976,5], +[0,-2020], +[0,-3098,-7761,-878,-3100,-3482,-2634,-1713,-2006,-3160,-4119,-7764], +[1,3,9978], +[0,266,28,9979,8], +[0,-3098,-3100,-3482,-2634,-1713,-1779,-1959,-2006,-3160,-4119], +[1,3,9981], +[0,266,28,9982,4], +[0,-15215,-3098,-3100,-3482,-2634,-1713,-2006,-7282,-3160,-4119], +[1,3,9984], +[0,0,28,9985,4], +[0,-3098,-3100,-3482,-2634,-1713,-2006,-15216,-10114,-15217,-3160,-4119], +[1,3,9987], +[0,9988,9989,9990,4], +[0,-1616], +[0,-21,-23,-3204,-40,-42,-3748,-4776,-15218,-3330,-3032,-3037,-427,-428,-932,-940,-958,-960,-965,-15219,-5863,-1772,-2125, +-2410,-2469], +[0,-15220,-1874,-795,-1654,-2469,-1415,-1412,-1710,-11410,-15221,-11100,-4004,-9246,-6863,-3634,-15222], +[1,3,9992], +[0,9993,9994,9995,6], +[0,-15223,-15224,-15225,-15226,-12846,-15227], +[0,-15228,-3617,-3037,-15229,-15230,-15231,-1004,-2125,-2892,-2410,-2469], +[0,-15227,-1004,-3445,-6324,-3690,-9668,-2410,-3214,-5401], +[1,3,9997], +[0,0,9998,9999,11], +[0,-1763,-10652,-2250,-4004,-15232], +[0,-3162,-11321,-7440,-4865], +[1,3,10001], +[0,10002,10003,10004,5], +[0,-5358,-2427,-5334,-1293,-8913,-12766,-2235,-5356,-12767], +[0,-652,-932,-2083,-1942,-1874,-2094,-2410,-3037,-6648,-12750,-12749,-11167,-15233], +[0,-856,-4147,-5670,-3862,-2083,-12745,-2093,-2427], +[1,3,10006], +[0,10007,10008,10009,5], +[0,-15234,-15235,-15236,-15237,-15238,-15239,-15240,-15241,-15242,-15243,-15244,-15245], +[0,-21,-2388,-2410], +[0,-15246,-3163,-12254,-6324,-3214,-11230,-8043,-15247,-3162], +[1,3,10011], +[0,10012,0,93,11], +[0,-2606,-15248,-682,-15249,-1384,-1967,-1993,-2006,-2019,-2029,-2489], +[1,3,10014], +[0,10015,0,93,10], +[0,-2006,-2019,-1967,-2606], +[1,3,10017], +[0,10018,0,10019,8], +[0,-2387,-1387,-232,-1461], +[0,-1386,-3161,-475,-3162,-3994,-3995,-3996,-752,-3997,-3998], +[1,24,10021], +[0,25,10022], +1733616000000, +[0,25,10024], +1733961600000, +[1,24,10026], +[0,25,10027], +1734220800000, +[1,3,10029], +[0,0,10030,10031,4], +[0,-2200,-2162,-2834,-2387,-932,-2125,-2127,-2149,-2334,-1753,-1889,-1077,-1942,-620,-767,-2281,-2410,-3563,-1771,-1891, +-6326,-518,-726,-3564,-1547,-6327,-945,-15250,-958,-978,-6331,-3267,-428,-14014,-3573,-427], +[0,-775,-2162,-3576,-8856,-3110,-4101,-3161,-15251,-11229], +[1,3,10033], +[0,10034,10035,10036,4], +[0,-44,-15252,-15253], +[0,-21,-23,-26,-33,-5585,-38,-39,-40,-43,-3035,-3621,-3037,-528,-534,-539,-571,-15254,-15255,-633,-664,-665,-12469,-767, +-932,-1004,-4652,-1449,-1654,-1788,-2105,-2125,-2228,-2335,-2410,-2490,-2491,-2501,-2503], +[0,-5801,-3162,-3690,-10810,-15256], +[1,3,10038], +[0,0,10039,10040,11], +[0,-652,-664,-726,-756,-928,-932,-1449,-1544,-1654,-2162], +[0,-3214,-3162,-5270,-5271,-8617], +[1,3,10042], +[0,10043,10044,10045,6], +[0,-1992,-712,-809,-15257,-1548,-682,-15258,-1762,-15259,-15260,-15261,-6640,-2055,-15262], +[0,-4977,-2006,-2019,-3040,-3044,-44,-3052,-15263,-409,-407,-410,-2622,-3024], +[0,-2006,-5253,-3159,-2678,-15264,-15265,-3095,-3098,-3160,-3161,-3100,-3162], +[1,3,10047], +[0,10048,10049,93,4], +[0,-2606,-15248,-15266,-2669,-2670,-682,-1384,-1967,-1993,-2006,-2019,-2489,-15249], +[0,-15267,-15268,-15269], +[1,3,10051], +[0,0,10052,10053,4], +[0,-3473,-1942,-2127,-2128,-5384,-2129], +[0,-3100,-11853,-11851], +[1,3,10055], +[0,10056,10057,10058,4], +[0,-6815], +[0,-409,-3040,-3052,-778,-1071,-1344,-2006,-2019,-2049,-2275,-2376,-8973,-2387,-2410,-2501,-3612], +[0,-6750,-15270,-15271,-15272,-3095,-3576,-3162,-2363,-6750,-3823,-15273,-12606], +[1,3,10060], +[0,10061,10062,10063,10], +[0,-4733,-668,-719,-999,-1077,-1948,-1966,-2177,-2426,-2518,-2528,-2542,-2555], +[0,-15274,-3899,-652,-1107,-1110,-6295,-8065,-1971], +[0,-2682,-15275,-15276,-3162,-5270,-15277,-5271], +[1,3,10065], +[0,10066,0,10067,4], +[0,-1867,-11957,-11964,-15278], +[0,-15279,-3444,-5545,-3262,-856,-15280,-15281], +[1,3,10069], +[0,10070,10071,10072,9], +[0,-15282,-15283,-15284,-31,-15285,-3325,-280,-11671,-469,-719,-7731,-15286,-15287,-5934,-1442,-10584,-1577,-1645,-1729, +-15288,-2115,-10624,-2177,-2205,-2379,-2410], +[0,-932,-959,-969,-973,-1077,-1415,-1448,-1607,-2125,-15289], +[0,-3328,-856,-3262,-1599,-9308], +[1,3,10074], +[0,10075,10076,10077,5], +[0,-6869,-8386,-1805,-623,-668,-999,-1526,-1826,-2387,-1548,-2177,-753,-1966,-2501,-679,-1077,-2357,-719,-1327,-695,-832, +-929,-2043,-5977,-2508,-15290,-2433,-15291,-2044,-15292,-3859,-15293,-4239,-2505,-15294,-1331,-15295,-15296,-2502,-15297, +-15298,-15299], +[0,-7982,-7688,-3052,-3861,-13398,-2052,-13186,-11702,-15300,-15301,-14826,-14779], +[0,-2006,-5371,-2501,-856,-7695,-7696,-858], +[1,3,10079], +[0,10080,10081,268,11], +[0,-2387,-1387,-232], +[0,-1763,-1415,-2006,-932,-2125,-2127,-2375,-1077,-1942,-2019,-2410,-3136,-3037,-3040,-3052,-3986,-3988,-409,-1419,-3267, +-407,-428,-2622,-427], +[1,3,10083], +[0,0,10084,10085,4], +[0,-3136,-427,-428,-753,-756,-784,-932,-1415,-1417,-1424,-1449,-15302,-2127,-2375,-2410], +[0,-12841,-3582,-6989,-5389,-10095,-12523,-2410,-3214,-9682,-3095,-11486,-12121,-5065,-3577,-3264,-4333,-4334,-15303], +[1,3,10087], +[0,10088,0,10089,4], +[0,-703,-2825,-2690,-1967,-44,-2997,-192], +[0,-2006,-3159,-4217,-15304,-4665], +[1,3,10091], +[0,10092,0,10093,6], +[0,-2690,-1967,-44], +[0,-2006,-3159,-4217,-4101], +[1,3,10095], +[0,10096,0,10097,8], +[0,-703,-2029,-2825,-1967,-44,-3140], +[0,-2006,-3159,-4217,-5260], +[1,3,10099], +[0,10100,0,95,5], +[0,-15305,-15306,-823,-1878], +[1,3,10102], +[0,269,0,95,5], +[1,3,10104], +[0,10105,10106,10107,4], +[0,-469,-2177,-1047,-15310,-15311,-12390,-8802,-1395,-3609], +[0,-6997,-2466,-2469,-757,-1026,-2410,-7982,-1772,-10267], +[0,-15312,-15313,-8902,-3184,-3161,-1168,-3214,-3264,-3482,-1599,-3967,-15314,-15315,-3995,-5372,-3255,-3256,-15316, +-15317,-15318], +[1,3,10109], +[0,0,10110,10111,5], +[0,-865,-8559,-866], +[0,-2006,-2634,-9736,-865], +[1,3,10113], +[0,10114,10115,10116,4], +[0,-2624,-2231,-15319,-2168,-1320,-3606], +[0,-2558,-1415,-1623,-932,-1699,-825,-2501,-1077,-1098,-1942,-767,-1978,-2400,-1424,-2410,-23,-3136,-3037,-769,-2503,-534, +-11747,-1772,-2041,-3046,-3048,-7080,-4049,-15320,-2505,-15321,-12916,-15322,-1421,-2335,-940,-967,-1419,-2506,-3204], +[0,-2006,-3214,-2501,-10675,-6211,-15323,-1540,-12516,-10589,-12517,-11492], +[1,3,10118], +[0,0,10119,10120,11], +[0,-13324,-1123,-15324], +[0,-15325,-1122,-4058,-3694,-2410,-4258,-3161,-3862], +[1,3,10122], +[0,10123,10124,10125,5], +[0,-1816,-3612,-2466,-15326,-623,-668,-999,-865,-1548,-1872,-2177,-680,-1753,-1821,-2501,-679,-1077,-1376,-1942,-719,-749, +-695,-778,-2410,-2061,-15327,-15328,-635,-5676,-726,-2115,-2275,-15329,-15330,-15331,-15332,-4236,-2041,-15333,-15334, +-15335,-3808,-15336,-15337,-4805,-15338,-15339,-15340,-15341,-1331,-15342,-2504,-2506,-15343,-5319,-1643,-2502,-15344, +-15345,-15346,-14827,-15347,-1067, +-2695], +[0,-1415,-2006,-9056,-2019,-3136,-3037,-3044,-15348,-3048,-15349,-15350,-14826], +[0,-15351,-7643,-15352,-7645,-15353,-15354,-11229,-3690,-6120,-3161,-1334,-4055,-1501,-15355,-13039,-1791,-11437,-1818, +-3691,-5728,-7107,-15356,-5372,-3214,-11878,-12303,-12304,-12301,-12299,-15357,-15358,-3445,-7696,-15359,-1520,-15360, +-2006,-3476], +[1,3,10127], +[0,10128,10129,10130,4], +[0,-23,-14825,-656,-755,-15361], +[0,-2303], +[0,-5049,-3839,-2006,-3103,-3690], +[1,3,10132], +[0,10133,10134,10135,4], +[0,-47,-3223], +[0,-15362], +[0,-3264,-9589,-525,-9588,-14188,-9590], +[1,3,10137], +[0,0,0,10138,4], +[0,-5141,-4601,-4602,-3578,-3445,-754], +[1,3,10140], +[0,10141,10142,168,5], +[0,-809,-713,-15363], +[0,-1344,-2469,-2410,-3037,-411,-2581,-86,-5144,-3664,-3307], +[0,23,0,97,5], +[1,3,10145], +[0,23,0,10146,9], +[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, +-5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, +-5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15366], +[1,3,10148], +[0,23,0,98,9], +[1,3,10150], +[0,23,0,99,4], +[0,23,0,99,5], +[1,3,10153], +[0,23,0,99,11], +[1,3,10155], +[0,10156,10157,10158,6], +[0,-3698,-13203,-15369,-15370,-11418,-617,-722,-733,-736,-744,-754,-2762,-930,-1004,-15371,-15372,-1010,-13106,-5989, +-1116,-15373,-1299,-1388,-11121,-1465,-1548,-1641,-1666,-1667,-1676,-1681,-1744,-1826,-5262,-7223,-2182,-2297,-15374, +-2451,-15375,-2531], +[0,-3732,-14740,-4198,-3330,-3733,-4623,-3850,-3044,-14742,-3851,-3037,-8852,-3046,-4204,-999,-1336,-1722,-2293,-2410, +-2469], +[0,-5300,-1959,-15176,-15376,-15377,-5940,-9139,-15378,-6335,-3445,-2512,-1004,-8841], +[1,3,10160], +[0,10161,0,271,9], +[0,-2476,-2362,-753,-928,-1442,-2501,-679,-1582,-778,-1888,-2437,-2481,-2483,-5628,-23,-769,-1041,-518,-534,-14408,-15379, +-2508,-13389,-1908,-15380,-2711,-2505,-748,-1929,-15381,-15382,-2485,-2718,-1643,-2712,-15383,-731,-15384,-2714,-1814, +-2716], +[1,3,10163], +[0,10164,0,10165,6], +[0,-1955,-1600,-7898,-1603,-1601,-2718,-5614], +[0,-856,-3262,-1599,-2476,-2816], +[1,3,10167], +[0,10168,0,42,5], +[0,-2711,-1543,-1582], +[1,3,10170], +[0,10171,0,42,9], +[0,-15380,-1553], +[1,3,10173], +[0,10174,0,42,9], +[0,-15380,-769], +[1,3,10176], +[0,10177,0,42,8], +[0,-1779,-15380], +[1,3,10179], +[0,10180,0,42,5], +[0,-15380,-2718], +[1,3,10182], +[0,10183,0,42,4], +[0,-15380], +[1,3,10185], +[0,10186,10187,42,5], +[0,-668,-929,-1077,-1111,-1125,-1284,-2177,-2362,-4701], +[0,-15385], +[1,3,10189], +[0,10190,0,42,4], +[0,-1548,-2286,-5602,-2287,-15380,-2717,-15383,-2715,-15386,-2713], +[1,3,10192], +[0,10193,10194,58,4], +[0,-15387,-15388,-15389,-15390,-15391], +[0,-664,-1654,-2379,-2501,-21,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40,-15392,-15393,-42], +[1,3,10196], +[0,10197,132,58,8], +[0,-15388,-15399,-15400], +[1,3,10199], +[0,10200,10201,58,9], +[0,-1940,-6935,-747,-15401,-15402], +[0,-664,-1654,-932,-753,-2379,-2501,-2376,-21,-778,-2410,-23,-5870,-3035,-3136,-3037,-1637,-1771,-2503,-3621,-3040,-2275, +-15403,-14831,-39,-43,-40,-966,-969,-958,-968,-940,-943,-967,-974,-42], +[1,3,10203], +[0,10204,10205,58,11], +[0,-2722,-15401,-15402,-15404,-15405,-15406], +[0,-664,-2494,-1654,-932,-4270,-753,-2379,-2501,-1942,-21,-2410,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40, +-966,-969,-958,-968,-15407,-940,-943,-967,-974,-42], +[1,3,10207], +[0,10208,132,58,11], +[0,-2531,-15388,-15399], +[1,3,10210], +[0,10211,0,10212,6], +[0,-703,-15408], +[0,-15409,-15410,-3162,-6184], +[1,3,10214], +[0,0,0,173,4], +[1,3,10216], +[0,0,0,10217,5], +[0,-475,-3161,-4865,-7243,-3634,-5495], +[1,3,10219], +[0,117,10220,10221,4], +[0,-519,-668,-756,-1788,-2250,-2251], +[0,-5514,-9846,-687,-15411,-7210], +[1,3,10223], +[0,228,10224,10225,5], +[0,-9705,-5686,-4624,-3037,-8890,-11458,-617,-11477,-1168,-12346,-1260,-1412,-15412,-15413,-1452,-1722,-2125,-2150,-15414, +-2173,-2379,-2388,-12348,-2410,-12349,-2819], +[0,-4004,-3634,-11468,-12350,-11467], +[1,3,10227], +[0,0,10228,272,5], +[0,-526,-528,-6104,-558,-6089,-562,-932,-934,-6013,-940,-956,-958,-1059,-1344,-1415,-1534,-1942,-2125,-2416], +[1,3,10230], +[0,10231,10232,10233,8], +[0,-7226,-15425,-7944,-719,-729,-7949,-1048,-1276,-6343,-7959,-1641,-15426,-2125,-7968,-2359,-7971,-2425,-7972], +[0,-190,-3035,-4269,-15427,-15428,-3617,-15429,-3713,-3037,-15430,-3628,-15431,-427,-428,-15432,-664,-665,-749,-932,-940, +-964,-966,-967,-999,-1054,-1116,-5487,-1654,-1888,-1942,-7981,-2148,-2177,-2210,-2211,-7970,-2379,-2410], +[0,-6342,-4865,-7641,-4258,-3100,-9290], +[1,3,10235], +[0,10236,10237,273,4], +[0,-15425,-6343,-7964,-7966,-2125,-2148,-5509], +[0,-664,-665,-1654,-15433], +[1,3,10239], +[0,10240,10241,273,4], +[0,-7226,-1276,-3607,-1641], +[0,-664,-7979,-1004,-1452,-1654,-6347,-2106,-2148], +[1,3,10243], +[0,10244,10245,10246,4], +[0,-1343], +[0,-1445,-1452,-1654,-2198], +[0,-4864,-4865,-2734,-9711,-3634], +[1,3,10248], +[0,0,10249,10250,4], +[0,-526,-527,-15434,-558,-664,-1654], +[0,-656,-6514,-775,-5092], +[1,3,10252], +[0,0,133,10253,4], +[0,-3264,-8034,-3223,-7472,-4846,-6557,-15435], +[1,3,10255], +[0,0,133,10256,5], +[0,-3264,-15436,-8034,-3223,-7472,-4846,-6557,-15435], +[1,3,10258], +[0,0,133,10259,4], +[0,-3264,-8034,-3223,-7472,-4846,-6557], +[1,3,10261], +[0,0,10262,10263,4], +[0,-8096,-14182,-652,-725,-1288,-1292,-1942,-2087,-2094,-2100,-2125,-2322,-2399,-2410,-2427,-2541], +[0,-3264,-8034,-10902,-7472,-4846,-15435,-15437,-6557], +[1,3,10265], +[0,0,0,41,9], +[1,3,10267], +[0,10268,251,10269,4], +[0,-15438], +[0,-712,-5535,-5549,-775], +[1,3,10271], +[0,0,92,10272,5], +[0,-5092,-3264,-12064,-13319,-7205,-1838,-6231], +[1,3,10274], +[0,10275,88,10276,4], +[0,-1016,-15439,-8493], +[0,-3671,-856,-3960,-3262,-1599,-3261,-15440], +[1,3,10278], +[0,0,10279,10280,5], +[0,-1654,-664,-1405], +[0,-775,-12120,-5101,-15441,-3162,-1838,-5572], +[1,3,10282], +[0,0,10283,10284,6], +[0,-756,-1405], +[0,-2265,-4112,-7188,-775,-10310,-3582], +[1,3,10286], +[0,10287,10288,10289,4], +[0,-781], +[0,-652,-928,-932,-1654,-2127,-2232], +[0,-775,-6454,-6684,-1644,-7192,-7193,-15442], +[1,3,10291], +[0,10292,10293,10294,4], +[0,-508], +[0,-932,-940,-967,-1942,-2319], +[0,-5829,-3215,-6747,-687,-3957,-4377,-6836,-15443], +[1,3,10296], +[0,10297,0,10298,8], +[0,-492,-493,-15444,-495,-722,-1122,-1123,-1439,-7679], +[0,-15445,-3445,-1105,-15446], +[1,3,10300], +[0,10301,0,10302,4], +[0,-1439,-1848,-7679], +[0,-15445,-3445,-5800,-8904], +[1,3,10304], +[0,10305,0,10306,4], +[0,-722,-1439,-1645,-1848,-7679,-15447], +[0,-15445,-3445,-7660], +[1,3,10308], +[0,10309,0,10310,4], +[0,-15448,-1371,-1469,-1645], +[0,-15445,-3445,-15449,-15450], +[1,3,10312], +[0,10313,0,10314,5], +[0,-492,-493,-15444,-495,-722,-1122,-1123,-1439,-1848,-7679], +[0,-15445,-3445,-1105], +[1,3,10316], +[0,10317,0,10318,4], +[0,-492,-493,-15444,-495,-1439,-1848,-7679], +[0,-15445,-3445,-7661], +[1,3,10320], +[0,0,0,274,4], +[1,3,10322], +[0,10323,0,274,10], +[0,-1848], +[1,3,10325], +[0,0,10326,10327,9], +[0,-3136,-3037,-756,-1107,-1415,-1442,-15451,-2375,-2388,-2389,-12348,-2410], +[0,-14233,-6747,-3215,-14867,-3162,-15423,-9918,-11321,-1819,-7572,-4865,-15452], +[1,3,10329], +[0,10330,10331,10332,6], +[0,-1610,-1955,-15453,-15454,-15455,-4096,-3546], +[0,-1415,-523,-1344,-1520,-932,-1650,-2125,-2127,-2286,-784,-679,-12844,-1942,-5002,-767,-533,-23,-722,-1534,-1539,-1771, +-632,-5977,-3983,-40,-959,-15456,-15457,-2129,-32,-958,-2143,-2138,-940,-967,-2131,-15458,-740,-2137], +[0,-4100,-3671,-856,-15459,-3262], +[1,3,10334], +[0,10335,10336,10337,10], +[0,-1805,-668,-2550,-729,-15460,-2757,-910,-1077,-1098,-1582,-15461,-1540,-2187,-2433,-9229,-15462,-731], +[0,-519,-754,-999,-1344,-932,-2125,-2127,-1534,-15463,-2251,-8177,-15464], +[0,-2757,-4100,-3671,-856,-15459,-3262,-687], +[1,3,10339], +[0,10340,0,10341,5], +[0,-15465], +[0,-5092,-2759,-1437,-3162,-13614], +[1,3,10343], +[0,10344,10345,10346,4], +[0,-14393,-1548,-2029], +[0,-21,-23,-40,-41,-533,-708,-915,-916,-932,-940,-943,-15466,-958,-966,-968,-969,-974,-1415,-1942,-15467,-1967,-1992, +-2006,-2019,-2052], +[0,-915,-1415,-4045,-8911,-1950,-674,-5845,-3634,-5119,-4004], +[1,3,10348], +[0,10349,0,10350,5], +[0,-464,-15468,-615,-15469,-2387,-2536], +[0,-5409,-510,-15470,-15471,-15472,-15473,-8676,-15474,-15475,-7347,-6656,-6527,-1594,-11872,-3162,-15476,-15477,-1838, +-1961,-9591,-15478,-5408], +[1,3,10352], +[0,0,14,10353,9], +[0,-5559,-9692,-3264,-8034,-3223,-15479,-7723,-8472,-3590,-3110,-9681,-5846,-15480,-2544,-15481,-15482], +[1,3,10355], +[0,10356,10357,10358,5], +[0,-674,-15483,-929,-572,-529,-569,-1077,-15484,-1610,-1646,-14584], +[0,-526,-539,-549,-566,-708,-15485,-932,-1654,-1788], +[0,-1446,-3690,-10855,-856,-6948,-15486,-6950,-15487,-6949,-15488,-6951,-15489,-11798,-15490,-6952,-15491,-15492], +[1,3,10360], +[0,0,55,10361,4], +[0,-932,-5208,-3784,-3862,-9420,-11315,-8199,-4100,-856], +[1,3,10363], +[0,0,10364,10365,4], +[0,-1116,-2251,-2322], +[0,-856,-10858,-15493,-10925,-15494,-15411,-3966], +[1,3,10367], +[0,87,275,10368,4], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-1391,-9682], +[1,3,10370], +[0,87,275,10371,6], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-775,-3585,-1838], +[1,3,10373], +[0,10374,10375,10376,4], +[0,-5334,-2742,-9596,-1968,-2235,-9584,-9585], +[0,-3705,-3037,-652,-1459,-1839,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-1839,-3272,-10919], +[1,3,10378], +[0,87,92,10379,5], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-3830,-9682,-15495,-15496,-15497], +[1,3,10381], +[0,10382,10383,10384,8], +[0,-2595], +[0,-985,-1637,-1942,-2320,-2322], +[0,-3272,-3264,-1838,-6231], +[1,3,10386], +[0,0,10387,10388,5], +[0,-3037,-652,-2586,-1288,-1292,-1729,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-3264,-9703,-6818,-6557,-9682,-15498,-5387,-5388], +[1,3,10390], +[0,10391,0,10392,5], +[0,-812], +[0,-1334,-1342,-1501,-1004,-1030,-12868,-11998,-15499,-15500,-15501,-15502,-12868,-11994,-15503,-3445], +[1,3,10394], +[0,0,130,10395,4], +[0,-775,-3209,-15504,-1889], +[1,3,10397], +[0,276,10398,277,4], +[0,-9848,-2776], +[1,3,10400], +[0,276,10401,277,6], +[0,-2774,-15505,-9848,-2776], +[1,3,10403], +[0,0,0,10404,4], +[0,-525,-2006,-1368,-3161,-4729,-9850,-3264,-9851,-3844,-5092,-4865,-2127,-15506,-15507,-5272], +[1,3,10406], +[0,0,10407,10408,4], +[0,-824,-1168,-784,-1889,-1243,-15508,-1238,-1270,-15509], +[0,-775,-3576,-3577,-3161,-3578,-15510], +[1,3,10410], +[0,10411,10412,10413,4], +[0,-1666,-2161], +[0,-510,-1127,-1138,-1145,-1148,-1162,-1446,-1548,-2105], +[0,-620,-15511,-15512,-856,-1446,-7674,-4101], +[1,3,10415], +[0,0,10416,10417,6], +[0,-9705,-3037,-11458,-1412,-1452,-2173,-2388,-12348,-2410,-12349], +[0,-4004,-3634,-11468,-12350,-11467,-1412], +[1,3,10419], +[0,10420,10421,10422,5], +[0,-10041,-13980,-3740,-1427,-1950,-2375], +[0,-15513,-4,-5,-6,-7,-8,-9,-10,-12,-13,-14,-23,-40,-86,-9404,-3244,-190,-10041,-4020,-237,-3048,-3136,-3037,-3199,-427, +-428,-15514,-533,-668,-10525,-740,-767,-4805,-932,-940,-958,-959,-960,-967,-999,-1077,-15515,-1107,-1110,-1344,-1415, +-1419,-1449,-1868,-1942,-2125,-2153,-2177,-2387,-2392,-2400,-2410,-2411,-2567], +[0,-1415,-2410,-475,-3634], +[1,3,10424], +[0,10425,10426,10427,5], +[0,-2699,-656,-668,-679,-719,-729,-6798,-1805,-1906,-1907,-2213,-2218,-12979,-2433,-2531], +[0,-23,-162,-3778,-163,-237,-350,-351,-15516,-367,-7043,-406,-407,-409,-410,-5039,-3136,-8334,-3037,-3040,-3052,-9947, +-4764,-4204,-427,-428,-440,-15517,-4734,-518,-767,-932,-940,-943,-958,-965,-968,-969,-1415,-1428,-1521,-1753,-1771,-1889, +-14336,-15518,-1942,-2006,-2019,-2029,-2125,-2127,-4063,-2132,-6483,-2162,-2278,-2318,-2410,-2466,-15519], +[0,-3634,-1415,-3100,-7566,-812,-15520], +[1,3,10429], +[0,10430,10431,10432,8], +[0,-1403,-15521], +[0,-15522,-15523,-1202,-1276,-1654,-3261], +[0,-9198,-6515,-812,-3671,-856,-6899,-3960,-3262,-1276,-4187,-8453,-4676,-15524,-15525,-1548,-5545,-1599,-3110,-3261, +-15440], +[1,3,10434], +[0,10435,10436,10437,10], +[0,-15526], +[0,-1586,-1729,-2337], +[0,-1586,-15527,-9409,-3844,-3445], +[1,3,10439], +[0,10440,10441,10442,8], +[0,-10869], +[0,-3037,-652,-1638,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-1638,-15528,-15529,-6818,-7724,-15530,-3264,-4329,-1599,-2427], +[1,3,10444], +[0,0,0,10445,4], +[0,-1638,-2444,-3590,-3264,-6422], +[1,3,10447], +[0,0,0,10448,10], +[0,-1638,-2444,-3590,-3264,-6818,-6557], +[1,3,10450], +[0,0,10451,10452,4], +[0,-6874,-1127,-1452,-1666,-2525,-2416,-10264,-1154,-15531,-1149,-1136,-1144,-1148], +[0,-2442,-3162,-9918,-15423,-6659,-14867,-4865,-9318,-15532,-15533], +[1,3,10454], +[0,10455,10456,10457,4], +[0,-7177], +[0,-1415,-932,-2375,-1942,-2410,-3136,-3037,-7178,-940,-428,-427], +[0,-15534,-15535,-775], +[1,3,10459], +[0,10460,92,10461,6], +[0,-4231,-2738,-2739,-10909,-15536,-15537,-15538], +[0,-1838,-3264,-7472,-4846,-8034,-3223], +[1,3,10463], +[0,0,0,10464,4], +[0,-1889,-9300,-3756,-9339,-2006,-775,-15539], +[1,3,10466], +[0,10467,130,10468,5], +[0,-2773], +[0,-775,-3209,-1889], +[1,3,10470], +[0,0,10471,10472,9], +[0,-23,-40,-15540,-4690,-15541,-932,-1412,-1471,-1475,-1476,-1479,-1481,-1486,-1491,-11943,-1970,-1978,-2127,-2128,-3571, +-2139,-2140,-10312,-4881], +[0,-9407,-1978,-1874,-4864,-15542,-15543,-4902,-3634,-11468,-1970,-11467,-4881,-15221], +[1,3,10474], +[0,10475,10476,10477,9], +[0,-567,-1275,-1967], +[0,-633,-634,-668,-824,-1168,-1179,-1205,-1243,-15544,-1262,-1266,-1632,-15545,-2006,-2019,-2463], +[0,-2006,-3159,-2319,-15546,-2363,-15547,-1275,-3162], +[1,3,10479], +[0,10480,10481,10482,8], +[0,-15548,-303,-15549,-304,-4360,-6448,-469,-470,-668,-680,-728,-812,-1125,-1353,-1442,-5265,-1641,-1789,-1790,-1816, +-1966,-2177,-2205,-2223,-3610,-4002,-7982,-15550,-2426,-5721], +[0,-2581,-86,-3307,-4368,-15551,-11765,-15552,-350,-4062,-351,-3561,-3198,-3660,-3713,-3735,-3199,-15553,-15554,-3664, +-13376,-1344,-1498,-1722,-4362,-5263,-1942,-2127,-6483,-2392,-2400,-2410,-2469], +[0,-3690,-489,-11768,-856,-11148,-11773,-1789,-3438,-11772,-11769,-11771,-11770,-11410,-4328,-4847], +[1,3,10484], +[0,0,10485,10486,11], +[0,-5295,-409,-3136,-3040,-3052,-13529,-427,-428,-757,-825,-932,-940,-967,-969,-970,-1103,-15555,-1415,-15556,-1637, +-15302,-15557,-1942,-2006,-2019,-13531,-2214,-2375,-2410,-15558], +[0,-2006,-12474,-3159,-8597,-13241,-15559,-712,-3577,-15560,-15273,-2012,-4666,-11876,-4665,-15561], +[1,3,10488], +[0,10489,10490,10491,4], +[0,-2594], +[0,-40,-41,-3040,-915,-916,-1415,-1992,-2052,-2127,-2128,-2131,-2137], +[0,-2442,-3162,-9918,-15423,-6659,-14867,-4865,-15562,-15563,-9318,-6106,-4000], +[1,3,10493], +[0,0,10494,10495,4], +[0,-86,-3037,-3040,-3052,-3075,-427,-9700,-932,-940,-9106,-958,-965,-967,-968,-969,-1344,-1415,-1534,-1637,-1942,-1952, +-2006,-2019,-2044,-2046], +[0,-2006,-9843,-3122,-2043,-2044,-15564,-2634], +[1,3,10497], +[0,0,10498,10499,4], +[0,-1788,-1449,-1471,-1654,-2006,-2074,-2210,-507,-932,-1548,-1940,-2334,-4258,-708,-753,-1958,-2501,-589,-2019,-15565, +-2410,-23,-3037,-1482,-2040,-3040,-534,-11472,-1492,-50,-1025,-3052,-40,-3062,-969,-2052,-15566,-406,-1483,-1475,-1487, +-1479,-14780,-428,-5030], +[0,-5922,-6439,-2006,-7378,-15567,-821], +[1,3,10501], +[0,0,0,10502,4], +[0,-2034,-3162,-5270,-5271,-7084,-6656,-14311,-15176,-15568,-6528,-4100], +[1,3,10504], +[0,0,10505,10506,4], +[0,-44,-3040,-3141,-2006,-2034,-2410], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-15071,-13615,-15569,-6527,-15570], +[1,3,10508], +[0,94,10509,10510,5], +[0,-528,-932,-933,-940,-958,-962,-967,-969,-1942,-15571], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-3160,-1959,-15572,-15573,-15574,-10677,-15575,-15576,-6716,-5176], +[1,3,10512], +[0,10513,10514,10515,4], +[0,-798,-15577,-799,-801,-1967], +[0,-15578,-4757,-6263,-4754,-15579,-528,-533,-14782,-807,-932,-943,-958,-966,-968,-969,-15580,-974,-1344,-1415,-1534, +-1942,-1952,-2006,-2034,-15571,-2052], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-9472,-6581,-14497,-797], +[1,3,10517], +[0,10518,10519,10520,6], +[0,-997], +[0,-3157,-932,-12566], +[0,-2034,-3159,-12567,-2006,-3163,-3162,-5270,-5271,-3160,-10028,-15581,-15582], +[1,3,10522], +[0,10523,10524,10525,8], +[0,-2798,-2489], +[0,-15583,-21,-23,-3204,-39,-40,-6056,-41,-161,-163,-2997,-350,-351,-3561,-409,-2622,-3040,-528,-533,-767,-932,-940,-956, +-959,-968,-969,-970,-1059,-11942,-1103,-15584,-1415,-15302,-1942,-1952,-2006,-2019,-15585,-2052,-2125,-2127,-2128,-2140, +-2410], +[0,-2006,-2804,-12051,-3095,-7582,-3821,-3822], +[1,3,10527], +[0,10528,10529,10530,8], +[0,-15586,-2730,-682], +[0,-15587,-5295,-406,-407,-409,-15588,-3059,-3037,-3040,-3052,-440,-3899,-795,-1449,-2910,-2006,-2019,-2214,-2892,-2387, +-2410,-2469], +[0,-2006,-3576,-4126,-3162,-12129], +[1,3,10532], +[0,10533,10534,10535,10], +[0,-2387,-15589], +[0,-15590,-5295,-2214,-2006,-2019], +[0,-2006,-5553,-775], +[1,3,10537], +[0,0,10538,10539,4], +[0,-509,-1654,-1939], +[0,-775,-712,-15559,-5554], +[1,3,10541], +[0,10542,0,77,5], +[0,-2869,-424,-15591,-15592,-15593,-15594,-15595,-15596,-15597,-15598,-15599,-15600,-15601], +[1,3,10544], +[0,0,10545,272,5], +[0,-23,-40,-42,-86,-3307,-3326,-15155,-3561,-3266,-3136,-3037,-427,-428,-441,-7465,-528,-533,-8349,-726,-767,-932,-943, +-958,-966,-968,-980,-1103,-1344,-1392,-1415,-1419,-1534,-2125,-2127,-2142,-2410,-2478], +[1,3,10547], +[0,0,10548,259,8], +[0,-3800,-684,-748,-778,-1041,-3544,-1643,-1942,-2116,-2162,-2163,-2376,-2410,-2437,-2501,-2503,-2508], +[1,3,10550], +[0,33,10551,10552,4], +[0,-5295,-2214,-407,-409,-15590,-1419], +[0,-2006,-9080,-15602,-15603,-15604], +[1,3,10554], +[0,10555,10556,10557,6], +[0,-15605,-2387], +[0,-5295,-2214,-15590,-15606,-916,-2006,-2019], +[0,-15607,-2006,-15608], +[1,3,10559], +[0,10560,10561,10562,5], +[0,-753,-44,-15609,-15610], +[0,-1521,-2299,-2501,-778,-2410,-23,-1522,-2503,-534,-2275,-15611,-2508,-40,-2301,-2505,-42,-38,-535,-3362,-26,-36,-35], +[0,-4000,-812,-3162], +[1,3,10564], +[0,0,10565,10566,10], +[0,-3037,-4371,-2447,-2466], +[0,-2466,-3161,-8113], +[1,3,10568], +[0,0,10569,10570,5], +[0,-527,-534,-559,-767,-778,-1041,-1743,-2680,-2163,-15612,-2275,-2476,-2481,-2483,-2484,-2485,-2501,-2505], +[0,-11853,-11851,-15613,-15614,-15615,-15616,-15617,-3100,-15618], +[1,3,10572], +[0,10573,0,271,8], +[0,-653,-914,-2710,-15380,-2433,-2719,-3546], +[1,3,10575], +[0,0,10576,10577,5], +[0,-21,-23,-26,-36,-40,-42,-3330,-15619,-3136,-3037,-6630,-427,-428,-527,-533,-535,-932,-934,-940,-958,-967,-1415,-5133, +-1942,-2174,-2410], +[0,-1415,-1001,-4116,-510,-5867,-1961,-4868,-3634,-5119], +[1,3,10579], +[0,10580,10581,10582,5], +[0,-11458,-2173], +[0,-9705,-11477,-1168,-12346,-1412,-1888,-15414,-2410], +[0,-3634,-11468,-12350,-11467,-5769], +[1,3,10584], +[0,10585,10586,10587,4], +[0,-464,-668,-824,-1107,-1371,-1646,-1980,-2105,-2125,-2177,-2536], +[0,-5682,-3711,-15620,-3036,-11697,-9705,-8566,-5686,-3037,-12344,-8852,-8890,-11458,-3199,-11343,-11477,-1168,-12346, +-1412,-2150,-2173,-2410], +[0,-475,-4004,-3634,-1970,-11468,-12350,-11467,-2173], +[1,3,10589], +[0,117,55,10590,4], +[0,-2265,-7472,-4112,-6730,-13460,-6787,-13461,-13462,-13463,-13465,-5514,-5559,-5563,-687,-3958,-3974,-4000,-13466, +-13467,-13468,-13469,-13470], +[1,3,10592], +[0,169,10593,10594,5], +[0,-3037,-928,-15621,-1496,-15622,-2410,-2447], +[0,-15623,-9669,-3161,-9670,-8615,-1334,-3690], +[1,3,10596], +[0,10597,0,10598,8], +[0,-1460,-15624,-1442,-3241], +[0,-15279,-15625,-727,-856,-15280,-15281], +[1,3,10600], +[0,0,10601,278,6], +[0,-664,-3035,-3037,-15626], +[1,3,10603], +[0,10604,0,95,10], +[0,-15631,-15632,-823,-1878], +[1,3,10606], +[0,39,0,10607,5], +[0,-2006,-3159,-4217,-3694], +[0,23,0,98,4], +[0,23,0,99,6], +[1,3,10611], +[0,10612,10613,10614,4], +[0,-15633,-10576], +[0,-5859,-633,-13719,-2322], +[0,-7581,-7582,-7580,-7762,-15634,-5177,-15635,-3100,-633], +[1,3,10616], +[0,10617,10618,10619,4], +[0,-15636,-15637,-15638,-15639,-15640,-640,-668,-671,-865,-866,-997,-1026,-14636,-1098,-1116,-1353,-1376,-7408,-1460, +-15641,-15642,-5895,-1958,-2177,-2193,-2331,-2410,-15643,-15644,-15645], +[0,-2476,-15646,-15647,-15648,-15649], +[0,-2830,-15650,-3161], +[1,3,10621], +[0,10622,10623,10624,9], +[0,-44,-15651], +[0,-1415,-2162,-1344,-2006,-915,-932,-2501,-1942,-767,-2019,-21,-778,-2095,-2410,-23,-1534,-1771,-2163,-2503,-3040,-534, +-2275,-15652,-15653,-4227,-15654,-4749,-40,-13427,-41,-969,-358,-15655,-940,-962,-967,-1419,-42,-4757,-15656,-4758,-428, +-4762,-38,-427,-12712,-15045], +[0,-2006,-3095,-15657,-13652,-15658,-3162,-15106,-2410,-15659,-15660], +[1,3,10626], +[0,10627,10628,7,4], +[0,-668,-695,-719,-1610,-6294,-2177,-15661], +[0,-3802,-11346,-3037,-3199,-15662], +[1,3,10630], +[0,10631,10632,7,4], +[0,-15663,-2564,-703,-834,-15664,-2303,-2466,-461,-623,-812,-4245,-5358,-743,-783,-5036,-2083,-2177,-2814,-680,-5034,-928, +-15665,-15666,-1442,-3447,-1827,-1966,-15667,-15668,-3535,-3027,-15669,-1864,-10430,-2422,-15670,-15671,-5113,-2654, +-3545,-15672,-1321,-1588,-2551,-989,-15673,-8294,-3649,-14335,-15674,-2429,-15675,-15676,-15677,-8882,-4785,-3190,-4288, +-15678,-6332,-3459,-15679,-15680], +[0,-9740,-2162,-2127,-2426,-2469,-674,-2427,-15681,-15206,-15682,-2410,-5334,-1002,-2089,-3198,-13046,-12145,-3199,-15683, +-6327,-3660,-3735,-5204,-1736,-3983,-8523,-5114,-9602,-15684,-3712,-9146,-2084,-15685,-15686], +[1,3,10634], +[0,10635,0,7,5], +[0,-710,-15687,-1813,-2416], +[1,3,10637], +[0,10638,10639,10640,10], +[0,-714,-1077,-1376], +[0,-932,-959,-1415], +[0,-3871,-3262,-3976,-687,-11487], +[1,3,10642], +[0,0,10643,10644,10], +[0,-350,-351,-668,-910,-932,-940,-958,-15688,-6099,-1343,-1344,-1534,-1654,-3446,-1942,-2125,-2127,-2131,-15689,-2234, +-2323,-10988], +[0,-3108,-3110,-5889], +[1,3,10646], +[0,0,10647,7,8], +[0,-427,-428,-932,-935,-940,-948,-958,-962,-967,-969,-970,-1344,-1534,-1942,-2006,-2410], +[1,3,10649], +[0,10650,10651,10652,4], +[0,-15690], +[0,-3621,-823,-1654], +[0,-3578,-4004,-4043,-15691,-1654,-3161], +[1,3,10654], +[0,0,10655,10656,4], +[0,-5295,-3136,-427,-428,-15692,-10529,-13751,-712,-932,-940,-967,-1107,-1415,-1942,-2127,-2140,-2142,-2214,-2355,-2375, +-2379,-2387,-2410], +[0,-712,-3215,-5845,-13241,-15559,-5549,-12065,-15693,-12067,-1510,-15694,-12434,-775,-15695,-4665,-15696,-15697,-1644, +-15698], +[1,3,10658], +[0,106,10659,280,6], +[0,-15587,-86,-3307,-2845,-4646,-3617,-3136,-3037,-427,-428,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], +[0,23,0,97,8], +[1,3,10662], +[0,10663,10664,10665,8], +[0,-6332,-6326,-6329,-15702,-5334,-3660,-4251,-2854,-15703,-2586,-1288,-1292,-1294,-1349,-1442,-14511,-1588,-15704,-10749, +-5348,-2918,-2083,-4262,-5353,-2422,-2427,-2429,-5358], +[0,-3983,-3037,-3664,-2834,-15705,-2469], +[0,-3671,-856,-2834,-15706,-15707], +[1,3,10667], +[0,10668,10669,280,4], +[0,-1004,-2080], +[0,-15587,-86,-3307,-2841,-2845,-4646,-3617,-3136,-3037,-427,-428,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], +[1,3,10671], +[0,10672,10673,10674,4], +[0,-2080,-2379], +[0,-86,-3307,-4646,-3617,-3136,-3037,-427,-428,-668,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], +[0,-15699,-3967,-2410,-15700,-15701,-3161,-11894,-3445,-3482], +[1,3,10676], +[0,23,0,97,4], +[0,23,0,98,11], +[1,3,10679], +[0,262,10680,10681,4], +[0,-262,-4838], +[0,-2476,-2486,-4634,-2851,-15708,-15709,-12704,-3690,-7864,-9069,-2410,-3018,-8038,-9594], +[1,3,10683], +[0,10684,10685,151,5], +[0,-15710,-192,-15711], +[0,-41,-15712,-15713,-407,-409,-410,-3040,-3052,-440,-703,-2006,-2019,-2042,-2044,-2113,-3820,-15714,-727], +[1,3,10687], +[0,10688,10689,10690,8], +[0,-2856], +[0,-2834,-999,-15715], +[0,-15707,-15716,-856,-15717,-4245,-15718,-15706], +[0,0,0,10692,5], +[0,-15318,-15719,-3445], +[1,3,10694], +[0,10695,10696,10697,9], +[0,-15717], +[0,-4251,-4231,-9602,-2090,-2098,-2101,-4245,-2427,-5358,-15715], +[0,-15716,-856,-15717,-4245,-15718], +[1,3,10699], +[0,10700,10701,10702,8], +[0,-14800,-14801,-820,-1002,-2400], +[0,-15720,-14804,-3311,-3312,-652,-14806,-2410], +[0,-14808,-4187,-2444,-3966,-4865,-3445,-3100,-507,-4004,-664,-14809,-14810], +[1,3,10704], +[0,0,10705,10706,5], +[0,-600,-633,-756,-1405,-1654,-2198,-2416], +[0,-8472,-2544,-7723,-14242,-3962,-7107,-5559,-6422,-7724,-2451,-3264,-775,-6138,-14672], +[1,3,10708], +[0,10709,0,10710,5], +[0,-15721], +[0,-3843,-3118,-14066,-2006,-3100,-3577,-3445,-4725,-3578,-4865,-3214,-3756,-2410,-3966,-3967,-3482,-15722,-5260], +[1,3,10712], +[0,10713,0,73,9], +[0,-2984,-2885,-5766,-2400], +[1,3,10715], +[0,269,0,95,10], +[1,3,10717], +[0,10718,0,77,4], +[0,-424,-2704,-2826,-2863,-2706,-2707,-2902,-2903,-2940,-2708], +[1,3,10720], +[0,0,0,10721,4], +[0,-3843,-3118,-14066,-2006,-3100,-3577,-3445,-4725,-3578,-4865,-3214,-3756,-2410,-3966,-3967,-3482,-15724,-5260], +[0,23,0,97,6], +[1,3,10724], +[0,10725,0,246,4], +[0,-2531,-1107,-2624,-2550,-2177,-1961,-578,-719,-1384,-2166,-481,-533,-12547,-1624,-2516,-12548,-1950,-2041,-458,-12550, +-11463,-12551,-9870,-2082,-12552,-1421,-12553,-12554,-12555,-12556,-12557,-12559,-12560,-15725], +[1,3,10727], +[0,10728,0,77,10], +[0,-2862,-424,-2976,-2872,-2705,-2853,-2850,-2827,-2848,-2849,-2828,-15726,-15727,-2865,-2703,-2975,-15728,-2846,-15729, +-2847,-2842,-15730,-15731,-2868,-2996,-2866], +[1,3,10730], +[0,10731,10732,268,5], +[0,-2387,-2686], +[0,-2006,-932,-2125,-2127,-1942,-2019,-2410,-3037,-3040,-2043,-3052,-2044,-15732,-3986,-3988,-3075,-3267,-428,-427], +[1,3,10734], +[0,10735,10736,10737,9], +[0,-15733,-15734,-15735,-617,-1004,-15736,-1338,-2520,-2558], +[0,-15737,-15738,-15739,-15740,-15741,-3617,-4203,-1683,-2293], +[0,-15742,-7661,-15743,-15744,-15745,-3445], +[1,3,10739], +[0,23,0,98,5], +[1,3,10741], +[0,0,10742,10743,4], +[0,-509,-1654], +[0,-2873,-5514,-712,-5535,-668,-775,-15559,-5549,-15746], +[1,3,10745], +[0,10746,10747,10748,10], +[0,-4843], +[0,-3037,-3040,-3052,-440,-2634,-2006,-2019,-2466,-6859,-2469,-4842], +[0,-3690,-856,-9736,-1713,-3438,-4847], +[1,3,10750], +[0,10751,0,10752,5], +[0,-1439,-7679,-722,-15447], +[0,-15318,-15719,-3445,-7660], +[1,3,10754], +[0,0,10755,10756,4], +[0,-8096,-652,-1942,-2094,-2100,-2125,-2322,-2399,-2410,-2541], +[0,-775,-3264,-5092,-3578,-6184,-13270,-5899,-9299], +[1,3,10758], +[0,10759,10760,285,10], +[0,-1313,-2564], +[0,-15747,-86,-3307,-4835,-15748,-3036,-3037,-427,-428,-4627,-928,-932,-934,-940,-15749,-948,-958,-967,-1107,-1344,-1534, +-1942,-15750,-2125,-2383,-2392,-2410], +[1,3,10762], +[0,10763,10764,285,4], +[0,-679,-2877], +[0,-502,-2392,-1107,-1344,-932,-2125,-928,-1942,-2410,-3036,-3037,-1534,-15748,-2383,-86,-15750,-958,-4627,-940,-967,-428, +-934,-3307,-427,-948,-15749], +[1,3,10766], +[0,10767,10768,10769,6], +[0,-2531,-469,-2392,-5193,-1867,-2446,-649,-764,-15753,-2426,-680,-1646,-2694,-823,-1043,-11121,-1878,-15754,-1354,-1340, +-11964,-1101,-1997,-14221,-15755,-14032,-1851,-2160,-15756,-15757,-8274], +[0,-2193,-2125,-2127,-928,-4204,-749,-767,-3738,-15758,-5686,-5363,-2014,-11433,-2132,-4049,-15759,-15760,-15761,-15762], +[0,-15354,-3690,-7643,-15763,-11229,-3161,-15764,-11878,-3214,-9736,-3966,-2879,-2006,-15359,-2410], +[1,24,10771], +[0,25,10772], +1743292800000, +[1,3,10774], +[0,10775,10776,10777,9], +[0,-15765,-15766,-15767,-15768,-15769], +[0,-40,-15770,-15771,-15772,-3326,-350,-351,-3561,-3048,-3037,-15773,-427,-12837,-428,-518,-534,-558,-726,-753,-756,-4809, +-15774,-932,-958,-960,-5863,-1077,-1103,-3566,-15775,-15776,-1344,-15777,-15778,-1771,-15779,-1891,-15780,-15781,-15782, +-2127,-8895,-4753,-15783,-8896,-2140,-2142,-2144,-2162,-5896,-15784,-5013,-2387,-2388,-15785,-2410,-8564], +[0,-12613,-15786,-12449,-12898,-2363,-11321,-3162,-2006,-2476,-475,-1940,-13615,-13616,-13613,-15787], +[1,3,10779], +[0,0,10780,10781,4], +[0,-50,-2410,-2466,-4840,-6859], +[0,-15415,-15416,-15788,-15417,-15418,-11853,-10655,-15419,-6711,-15420,-15421,-4126,-15071,-2006,-15422,-475,-2476,-5270, +-3162,-11321,-15423,-15424], +[1,3,10783], +[0,10784,10785,10786,5], +[0,-15789], +[0,-15790,-3136,-3037,-664,-12469,-1002], +[0,-15791,-6121,-460,-15792,-15793,-15794,-15795], +[1,3,10788], +[0,10789,10790,7,4], +[0,-15796,-3748,-948,-8339,-965,-968,-969,-1047,-1110,-15797,-2411], +[0,-3037,-10557,-932,-1344,-3781,-1498,-15798,-1772,-2399,-2410], +[1,3,10792], +[0,10793,0,73,4], +[0,-1456], +[1,3,10795], +[0,10796,10797,286,4], +[0,-4007,-658,-3190,-1548,-1549,-15799], +[0,-15800,-3037,-1278,-2410,-15801,-15802,-15803], +[1,3,10799], +[0,10800,0,7,6], +[0,-4231], +[1,3,10802], +[0,0,10803,7,8], +[0,-2386,-932,-2469,-1942,-2410,-3037,-965,-3664,-978,-940,-428,-427], +[1,3,10805], +[0,10806,10807,10808,9], +[0,-668,-1574,-1948,-2303], +[0,-1127,-1132,-1134,-1163,-2541], +[0,-9219,-3839,-9472,-6523,-6527,-7175,-1644], +[1,3,10810], +[0,10811,10812,286,5], +[0,-928,-4007,-2886], +[0,-1415,-2410,-3136,-3037,-15806,-15807], +[1,3,10814], +[0,10815,10816,10817,5], +[0,-522], +[0,-1788,-664,-2391,-1654,-2125,-1004,-2379,-2410,-3035,-3037,-3621,-511,-3617,-3983], +[0,-4665,-5119,-3634,-4873,-3440,-4666,-5986,-1874,-522], +[1,3,10819], +[0,10820,10821,7,5], +[0,-483,-653,-6860,-13380,-14174,-15808,-5042,-1864,-2923,-7160,-2177,-3535,-2654,-2369,-15809,-15810], +[0,-15661,-15811,-15812,-15813,-15814,-3037,-8523,-3199,-8200,-15815,-15816,-3664,-3665,-4817,-8349,-815,-932,-8418,-3751, +-1623,-3459,-6568,-1942,-2910,-15817,-15818,-2410,-15819,-15820,-15821,-15822,-2466,-2469], +[1,3,10823], +[0,10824,10825,10826,4], +[0,-812,-814,-1077,-1116,-7408,-2331], +[0,-3198,-15823,-3048,-664,-932,-1654], +[0,-867,-7347,-10908,-6131,-6656,-1334,-2435,-7107,-3445], +[1,3,10828], +[0,0,10829,10830,4], +[0,-3983,-3037,-3040,-9723,-1942,-2006,-2019,-3682,-2410], +[0,-2006,-5741,-12662,-12664,-12665], +[1,3,10832], +[0,10833,0,10834,5], +[0,-834,-3222,-681,-3620,-81,-66,-73,-74,-3502,-83,-68,-85,-15824,-6672,-15825], +[0,-15826,-681,-3489,-15827,-15828,-5554,-15829,-7754,-3496,-3498,-3264,-3505,-3506,-3507,-3508,-3509,-8841,-6217,-3161], +[1,3,10836], +[0,0,287,134,4], +[1,3,10838], +[0,10839,10840,10841,11], +[0,-15830,-1967,-2055], +[0,-21,-23,-32,-26,-33,-34,-35,-6034,-36,-38,-40,-41,-44,-406,-407,-409,-534,-753,-767,-932,-933,-940,-958,-962,-967,-969, +-1415,-1419,-1455,-1939,-1942,-2006,-2019,-2501,-2502,-2503,-2505], +[0,-2006,-3476,-5176,-3159], +[1,3,10843], +[0,0,122,10844,5], +[0,-1107,-5569,-5570,-3215,-15831,-3116], +[1,3,10846], +[0,10847,0,10848,5], +[0,-681,-3517,-81,-15832,-66,-83,-68,-15824,-6672,-15825,-65,-15833,-3526,-15834,-15835], +[0,-15826,-681,-3489,-15827,-15828,-5554,-15829,-7754,-3496,-3498,-3264,-3505,-3506,-3507,-3508,-3509,-8841,-3161], +[1,3,10850], +[0,0,37,288,8], +[1,3,10852], +[0,10853,10854,10855,4], +[0,-15836,-458,-812,-1729], +[0,-3198,-3037,-4201,-15837], +[0,-13739,-7572,-3690,-3323,-3161,-3482,-2901], +[1,3,10857], +[0,23,0,289,4], +[0,23,0,289,5], +[1,3,10860], +[0,10861,0,170,5], +[0,-5240,-5241,-431,-15838,-5244,-5245], +[1,3,10863], +[0,10864,0,10865,9], +[0,-15839,-15840,-15841,-15842,-15843,-15844,-15845,-15846], +[0,-15847,-2257,-15848,-3634,-4004,-15849,-15849,-2034,-2006,-3162,-5270,-5271,-3578], +[1,3,10867], +[0,10868,0,10869,6], +[0,-1439,-7679,-493,-495,-15444,-492], +[0,-15318,-15719,-3445,-7661], +[1,3,10871], +[0,0,10872,10873,5], +[0,-633,-1339,-2491], +[0,-2319,-8533,-3162,-2363,-5389,-6822], +[1,3,10875], +[0,10876,10877,10878,9], +[0,-15850,-2324], +[0,-1413,-1471,-1475,-1476,-1481,-11285,-1645,-1978,-2416], +[0,-10838,-10840,-3162,-4865], +[1,3,10880], +[0,10881,10882,7,4], +[0,-8535,-15851,-11270,-4848,-15852,-15853,-1826,-3653,-2062,-7967,-8544,-15854,-15855,-2531], +[0,-13322,-9193,-13323,-15856,-357,-15857,-3037,-4204,-8549,-2917,-726,-2758,-932,-1030,-1122,-1123,-15858,-2884,-1939, +-1972,-2177,-2210,-2240,-2384,-2410,-2426,-2648], +[1,3,10884], +[0,10885,10886,10887,11], +[0,-3459,-1863,-5037,-15811], +[0,-3735,-15206,-1966,-2469], +[0,-8403,-7148], +[1,3,10889], +[0,10890,10891,7,4], +[0,-25,-668,-2066,-2114,-2550], +[0,-528,-15859,-15860,-10445,-1978,-2070,-2226,-2250,-2322,-2359], +[1,3,10893], +[0,10894,132,58,5], +[0,-15861,-996,-15388,-15399], +[1,3,10896], +[0,0,0,10897,4], +[0,-15862,-3445,-13986,-11867,-7685,-2006], +[1,3,10899], +[0,0,0,10900,6], +[0,-932,-3784,-2006,-2041,-5324], +[1,3,10902], +[0,10903,10904,10905,8], +[0,-479,-9493,-812,-1022,-2778,-1446,-1597,-2359], +[0,-23,-40,-43,-528,-664,-756,-932,-951,-1168,-1174,-1197,-1212,-1220,-1231,-1252,-1654,-15863,-1788,-1939], +[0,-1168,-1446,-7674,-3214,-7841,-856], +[1,3,10907], +[0,10908,0,10909,4], +[0,-1371,-15448,-1645,-1469], +[0,-15318,-15719,-3445,-15449,-15450], +[1,3,10911], +[0,10912,10913,7,4], +[0,-15274,-652,-999,-1047,-1107,-2548], +[0,-15864,-11419,-15865,-357,-3037,-15866,-2177,-932,-2884,-2410], +[1,3,10915], +[0,0,91,10916,10], +[0,-5372,-5142,-7282,-2918,-11889,-5573], +[1,3,10918], +[0,0,10919,10920,10], +[0,-2391,-2851], +[0,-2476,-2486,-4634,-2851,-3636,-4215,-3634], +[1,3,10922], +[0,0,10923,10924,4], +[0,-527,-1168,-1171,-15867,-1187,-1229,-1243,-1248,-1252,-1262,-1942,-2128], +[0,-15868,-15869,-15870,-15871,-15872,-15873,-3162,-11853], +[1,3,10926], +[0,10927,10928,7,4], +[0,-15874], +[0,-2476,-4838,-15875], +[1,3,10930], +[0,0,10931,10932,6], +[0,-15661,-190,-15876,-15877,-3037,-3664,-6593,-932,-940,-960,-978,-1431,-7060,-1534,-8436,-1942,-15878,-15879,-2910, +-2174,-2892,-2400,-2410,-2411,-2469], +[0,-15880,-10587,-12437,-11639,-5112,-14059,-1548,-1993,-10656,-3481,-3018,-3694,-2410,-2424,-2444,-8113,-3590,-5260], +[1,3,10934], +[0,10935,10936,10937,6], +[0,-14337,-5322], +[0,-5053,-11754,-15881,-4062,-639,-734,-999,-1107,-9665,-1852,-2922,-7160,-2127,-2202,-2231,-2410,-2924,-2923], +[0,-7882,-928,-7760,-2923,-2127,-2501], +[1,3,10939], +[0,0,10940,10941,5], +[0,-190,-3664,-932,-958,-960,-15882,-971,-972,-1449,-2892,-15883,-2410,-2411,-2466,-2469], +[0,-9022,-2410,-4058,-3926,-6747,-15884,-8461,-11997], +[1,3,10943], +[0,0,0,10944,6], +[0,-5889,-9080,-9800], +[1,3,10946], +[0,10947,10948,10949,10], +[0,-3819,-15885,-15886,-15887,-15888,-15889,-15890,-15891,-15892,-3117,-8915,-4836,-15893,-15874,-15894,-15895,-15896, +-15897,-15898,-15899,-15900,-15901,-15902,-15903,-15904,-15905,-15906,-15907,-15908,-15909,-15910,-4816,-4817,-14358, +-15911,-15912,-734,-6860,-15913,-15914,-15915,-15916,-15917,-15918,-15919,-1085,-14174,-15920,-1588,-1651,-15921,-12267, +-1852,-15922,-6569,-2317,-15923,-2318,-2654,-11071,-2981,-15924,-15925, +-15926,-15927], +[0,-15928,-15929,-15930,-4646,-15931,-4837,-4838,-15932,-2932,-932,-1278,-7300,-2091,-2423,-2469,-15130,-15933,-2476, +-5627], +[0,-15934,-7300,-3944,-2318,-5511,-2476,-5173,-3527,-2410,-4591,-3160,-2316,-3161,-15935], +[1,3,10951], +[0,0,10952,10953,11], +[0,-3136,-1415,-2375,-2379,-2391,-2410], +[0,-3445,-4791,-9915,-15936,-15937,-15938,-15939,-15940,-15941,-15942,-15943,-775,-5272,-3100,-15944,-15945,-15946,-15947, +-15948,-15949,-15950,-15951,-15952,-15953,-15954,-15955,-2410,-15956,-15957,-15958,-15959,-15960,-15961,-15962,-15963, +-15964], +[1,3,10955], +[0,10956,10957,134,6], +[0,-2932,-2896], +[0,-1415,-932,-2127,-2375,-1942,-2410,-3136,-3040,-940,-967,-1419,-428,-427], +[1,3,10959], +[0,0,10960,10961,5], +[0,-3040,-3052,-2006,-2019,-2410], +[0,-2006,-8785,-3962,-15273], +[1,3,10963], +[0,10964,10965,10966,5], +[0,-15965,-15966,-15967], +[0,-15968,-15969,-15970,-15971,-15972,-15973,-15974,-15975,-15976,-15977,-15978,-15979,-15980,-15981,-15982,-15983,-15984, +-15985,-15986,-15987,-15988,-15989,-15990], +[0,-2931,-4004,-3634,-10817,-4873,-664,-507,-856,-15991,-15992,-15993,-1446,-6024,-8257], +[1,3,10968], +[0,0,287,134,5], +[1,3,10970], +[0,10971,10972,10973,5], +[0,-15994,-15995,-15996,-15997,-15998,-15999,-16000,-16001,-16002,-13406,-16003,-16004,-16005,-1699,-2641,-2564,-2650], +[0,-4049,-3037,-3040,-3052,-2006,-2019,-2469,-16006], +[0,-16007,-1713,-2455,-16008,-2006,-3098,-3160,-3100,-2316,-2955,-16009,-16010,-15932,-3475,-16011,-16012,-16013,-16014, +-16015,-16016,-16017,-16018,-16019,-16020,-16021], +[1,3,10975], +[0,0,0,10976,4], +[0,-12059,-775], +[1,3,10978], +[0,10979,10980,10981,4], +[0,-10782,-10784,-10786,-10793,-10788,-1691], +[0,-3136,-3037,-756,-1415,-1942,-2080,-2091,-2153,-2375,-2379,-2892,-2409,-2410], +[0,-5406,-4847,-856], +[1,3,10983], +[0,10984,10985,10986,5], +[0,-2650,-4225], +[0,-2466,-2006,-1122,-2019,-6859,-406,-440,-409,-407,-5323], +[0,-2006,-1122,-16022,-3862,-856,-10446], +[1,3,10988], +[0,10989,10990,10991,5], +[0,-1313,-1826,-865,-16023,-13074,-1582,-16024,-1125,-16025,-1456,-15672,-16026,-16027,-16028,-16029,-16030,-16031,-16032, +-3234,-16033,-16034,-8863], +[0,-2564,-2391,-932,-1111,-2127,-2469,-2378,-3665,-2410,-23,-3037,-16035,-16036,-16037,-16038,-1025,-4776,-4049,-16039, +-16040,-3664,-16041,-16042,-16043], +[0,-15932,-16044,-16045,-9733,-16046,-16047,-16048,-16049,-16050,-10412,-3674,-2410,-16051,-3161], +[1,3,10993], +[0,0,10994,10995,5], +[0,-50,-409,-3136,-855,-1415,-2634,-1942,-2006,-2019,-2052,-2125,-2375,-2410], +[0,-2006,-2634,-9736,-1713,-3122,-4215,-4004,-3634], +[1,3,10997], +[0,0,10998,10999,6], +[0,-262,-4066,-350,-351,-3561,-5295,-16052,-3136,-4647,-16053,-4837,-7438,-4838,-5593,-708,-740,-767,-1415,-1419,-1449, +-1534,-6518,-1942,-2127,-2140,-2142,-2214,-2645,-2318,-2375,-2410,-2466,-2476,-2483,-2486,-8160], +[0,-2476,-3944,-16054,-16055,-16056,-15150,-2645,-16057,-2939,-7580,-15151,-16058,-2410,-16059,-2363,-3162,-3214,-3095, +-3160], +[1,3,11001], +[0,94,0,11002,4], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-15071,-13615,-6527], +[1,3,11004], +[0,11005,11006,261,6], +[0,-16060,-4787,-3751,-1864,-1889,-2923,-2654], +[0,-25,-3195,-3180,-14337,-13397,-5322,-4066,-350,-7151,-4785,-10046,-4371,-14331,-6410,-653,-679,-729,-742,-754,-769, +-5042,-865,-866,-14335,-928,-929,-989,-990,-14338,-14333,-7897,-1588,-1651,-5036,-1699,-1805,-1839,-1852,-14332,-1863, +-1906,-1907,-14336,-12601,-11751,-7160,-2127,-2134,-2162,-3572,-2213,-14334,-2334,-3027,-11071,-2531], +[1,3,11008], +[0,0,0,11009,4], +[0,-2034,-3159,-5270,-5271,-11511,-770,-3162,-510,-2191,-11524,-11526,-7103,-16061,-16062,-2446], +[1,3,11011], +[0,0,37,288,9], +[1,3,11013], +[0,11014,11015,11016,9], +[0,-3165,-16063,-16064,-3168,-3698,-11418,-16065,-5772,-16066,-16067,-16068,-16069,-5702,-16070,-8859,-3778,-16071,-16072, +-16073,-16074,-16075,-16076,-16077,-16078,-16079,-16080,-16081,-16082,-16083,-16084,-16085,-16086,-16087,-16088,-16089, +-16090,-16091,-16092,-16093,-16094,-16095,-16096,-16097,-16098,-16099,-16100,-8863,-16101,-16102,-16103,-16104,-16105, +-16106,-16107,-16108,-16109,-402,-16110,-16111,-16112,-15748,-16113,-16114, +-16115,-16116,-16117,-16118,-15257,-485,-5674,-16119,-13751,-743,-16120,-809,-812,-16121,-834,-16122,-16123,-2761,-1025, +-14636,-1043,-2573,-16124,-1125,-1329,-1349,-9775,-16125,-11895,-1359,-5193,-16126,-16127,-1495,-16128,-16129,-16130, +-1549,-16131,-1593,-16132,-1610,-10749,-16133,-16134,-1699,-2634,-1712,-16135,-16136,-11750,-1782,-16137,-16138,-16139, +-16140,-16010,-12273,-16141,-16142,-16143,-11926,-1855,-1857, +-1867,-16144,-1885,-16145,-8504,-16146,-1984,-1994,-2006,-16147,-2019,-4988,-16148,-2025,-16149,-6620,-16150,-2042, +-16151,-2044,-16152,-16153,-16154,-2093,-2095,-2096,-16155,-16156,-2177,-2193,-4245,-16157,-2272,-2292,-16158,-2592, +-2314,-16159,-16160,-2594,-16161,-2436,-16162,-2446,-16163,-2531,-2548,-2564,-2650,-16164], +[0,-86,-14379,-16165,-16166,-16167,-16168,-16169,-16170,-10811,-16171,-3983,-5681,-3842,-407,-409,-410,-16172,-16173, +-3198,-3048,-16174,-4049,-3044,-3164,-3037,-16175,-16176,-16177,-16178,-3040,-3052,-16179,-3199,-14748,-12969,-4231, +-4204,-8200,-3664,-5329,-721,-734,-767,-772,-16180,-865,-866,-16181,-16182,-16183,-932,-16184,-16185,-1077,-1107,-1278, +-1344,-11415,-16186,-1534,-1548,-1605,-16187, +-1640,-1729,-1733,-12282,-1826,-1942,-2094,-4242,-16188,-2098,-11417,-2174,-16189,-2281,-2392,-2400,-2410,-2427,-2429, +-2466,-2469], +[0,-3161,-16011,-16017,-1713,-16190,-16010,-16191,-16192,-16193,-16194], +[1,3,11018], +[0,291,135,63,5], +[1,3,11020], +[0,11021,131,11022,5], +[0,-8863,-3617,-719,-1004,-5193,-2426,-2564], +[0,-16195,-16196,-16197,-16198,-16199,-856,-10817], +[1,3,11024], +[0,11025,11026,11027,4], +[0,-4890,-13377], +[0,-2213,-1852,-2006,-2218,-2177,-2469,-13380,-2019,-2369,-3654,-3517,-1639,-1863,-2654,-2410,-3037,-3199,-14373,-4036, +-5087,-16200,-2970], +[0,-2257,-4895,-2469,-3634,-4004,-3095,-3098,-13422,-2006,-2476,-2299,-4902], +[1,3,11029], +[0,11030,11031,11032,5], +[0,-997,-16201,-16202], +[0,-2501,-3136,-3037,-2503], +[0,-4123,-8503,-4004,-3634,-16203,-5858], +[1,3,11034], +[0,0,11035,11036,4], +[0,-526,-527,-534,-559,-562,-566,-567,-16204,-664,-16205,-13261,-796,-812,-829,-932,-943,-968,-974,-1017,-1041,-1077, +-1322,-1331,-1471,-1474,-1475,-1479,-16206,-7707,-1480,-1482,-1483,-16207,-1484,-1487,-1488,-1492,-1654,-1753,-1860, +-2125,-14439,-5471,-2174,-2416,-14648,-2437,-2501,-2505], +[0,-3576,-8897,-16208,-12613,-12449,-2363,-13616,-11594,-3162], +[1,3,11038], +[0,11039,11040,11041,5], +[0,-16209,-16210], +[0,-3040,-3052,-3804,-427,-428,-726,-932,-940,-967,-969,-16211,-16212,-1942,-2127,-2142,-2379,-2387,-2410], +[0,-16213,-16214,-16215,-2006,-5270,-5271,-3162,-16216], +[1,3,11043], +[0,0,11044,11045,6], +[0,-2006,-2034,-12566,-16217], +[0,-2034,-9021,-5270,-5271,-16218,-16219,-16220,-16221,-3161,-2006,-16222,-5269,-3209,-5922,-16223,-3682,-3970,-3110, +-9437], +[1,3,11047], +[0,11048,0,11049,6], +[0,-2954,-2934], +[0,-712,-775,-3215], +[1,3,11051], +[0,0,0,11052,9], +[0,-714,-775], +[1,3,11054], +[0,11055,11056,11057,6], +[0,-16224,-23,-25,-3412,-42,-16225,-8863,-16226,-635,-719,-755,-815,-823,-834,-999,-1026,-1077,-12417,-1343,-1496,-1683, +-1729,-1805,-1816,-1889,-1931,-1966,-2066,-16227,-2317,-2378,-2383,-2450,-2564,-8882], +[0,-4776,-3048,-3735,-16228,-2125,-2391,-2400,-2410], +[0,-3098,-3160,-2316,-16007,-2955], +[1,3,11059], +[0,0,0,11060,6], +[0,-2006,-2476,-9608,-9614,-16229,-16230], +[1,3,11062], +[0,0,11063,11064,6], +[0,-3136,-3037,-427,-428,-932,-936,-940,-958,-967,-968,-972,-978,-1107,-1415,-1942,-2125,-2127,-2130,-12925,-2142,-2375, +-2379,-2402,-2405,-7322,-2410], +[0,-16231,-8785,-16232,-16233,-16234,-16235,-16236,-16237,-3173,-16238,-3966,-4865,-3100,-3445], +[1,3,11066], +[0,0,0,11067,6], +[0,-16239,-4053,-16240,-16241,-16242,-16243,-16244,-16245,-16246,-16247,-16248,-16249,-16250,-16251,-12512,-16252,-16253, +-4055,-1456,-16254,-16244,-5495,-3100,-3214,-2410], +[1,3,11069], +[0,11070,0,73,4], +[0,-2984,-5766,-2860,-5758,-501,-523,-16255,-615,-16256,-14855,-1069,-1100,-1107,-9362,-8985,-5880,-1548,-1574,-1666, +-1705,-10270,-1875,-1878,-2060,-2115,-2160,-2177,-2194,-2297,-5764,-2400,-2446,-2518,-2555], +[1,3,11072], +[0,11073,11074,11075,4], +[0,-15224,-15226], +[0,-3037,-15229,-15230,-15231,-2125,-2892,-2410,-2469], +[0,-15227,-9668,-3690,-3445,-1348,-9780], +[1,3,11077], +[0,11078,11079,11080,4], +[0,-1313,-1852,-2922,-6570,-2924,-11918,-12278,-7772,-6475,-4835,-1341,-16257,-8859,-12284,-8860,-16258,-16259], +[0,-2391,-2469,-5672,-6568,-2410,-3037,-8321,-16260,-2832,-11347], +[0,-1954,-10425,-16261,-8427,-3113,-7646,-3634], +[1,3,11082], +[0,11083,11084,11085,6], +[0,-16262,-16263], +[0,-16264,-767,-932,-1641,-16265,-1788,-1972,-16266,-2322], +[0,-5817,-5819,-5937,-13192,-5801,-16267,-16268,-5951,-5940,-5943,-16269,-3161], +[1,3,11087], +[0,11088,11089,7,4], +[0,-16270], +[0,-879,-2410,-7768], +[1,3,11091], +[0,11092,11093,11094,10], +[0,-2006,-2019,-16271], +[0,-1992,-2125,-2388,-2376,-1967,-2410,-23,-3037,-3040,-534,-3052,-3140,-520], +[0,-2356,-3488,-16272,-2006,-3496,-3264,-3494,-13460,-11889,-4258], +[1,3,11096], +[0,0,11097,11098,5], +[0,-12182,-190,-4225,-16273,-16274,-4836,-16275,-407,-409,-410,-3269,-3732,-3661,-3037,-3040,-3052,-16276,-14827,-651, +-703,-724,-786,-932,-970,-2914,-1110,-1344,-1449,-1534,-1600,-1610,-1889,-1942,-8918,-2006,-16277,-2019,-2965,-16278, +-2044,-2140,-2144,-16279,-2193,-2213,-2317,-2318,-2334,-16280,-2379,-2392,-2410,-2411,-11708,-2466,-6859,-15519,-2469, +-16281,-2650], +[0,-2006,-3476,-9614,-6409,-16282,-4108,-12682,-12683,-12684,-4002,-4672,-9133], +[1,3,11100], +[0,11101,11102,11103,5], +[0,-4785,-12535,-462,-674,-742,-812,-14335,-1026,-1077,-1451,-1588,-1852,-1863,-2041,-2127,-2153], +[0,-16283,-16284,-4066,-350,-4062,-351,-365,-8894,-16285,-3202,-3198,-3048,-4963,-16286,-3037,-3040,-3052,-427,-428,-440, +-4837,-679,-928,-13212,-932,-969,-4981,-1771,-13593,-2006,-2019,-2125,-2132,-6483,-2299,-2400,-2410,-2466,-16287,-2469, +-2476], +[0,-12913,-5044,-10366,-16288,-5195,-16289,-16290,-4865,-16291], +[1,3,11105], +[0,11106,11107,7,5], +[0,-797,-16292,-16293], +[0,-652,-16294,-2392,-2466,-1449,-1654,-659,-932,-2127,-1110,-1942,-2378,-16295,-2468,-190,-2410,-3037,-1440,-3621,-16296, +-7273,-3244,-16297,-4062,-16298,-7274,-3266,-1602,-940,-350,-428,-351,-427], +[1,3,11109], +[0,11110,11111,11112,6], +[0,-8612,-1063,-1343,-16299], +[0,-4835,-3037,-16300,-1313,-1722,-2359], +[0,-659,-13649,-16301,-16302,-11878,-6523,-6524,-6527,-5093,-16303,-7650,-16304,-16305,-6528,-3839,-5057], +[1,3,11114], +[0,11115,11116,11117,8], +[0,-16306], +[0,-2376,-2410,-2501,-2503,-2006,-2019,-3040,-3052], +[0,-2006,-16306,-6656,-6999,-9800,-16307,-6527,-3496,-7764,-16308,-5937,-5940,-5800,-8624], +[1,3,11119], +[0,11120,11121,11122,5], +[0,-14372,-13388,-5286], +[0,-2469,-1874], +[0,-4865,-1874,-3095,-7243,-4004,-3634], +[1,3,11124], +[0,11125,11126,11127,4], +[0,-502,-668,-679,-1098,-1099,-1125,-1304,-1351,-1535,-1610,-1978,-2177,-5977], +[0,-16309,-3802,-3199,-13186,-519,-659,-1788,-11926,-1942,-1944,-11491,-2379,-2384,-2410,-2541], +[0,-16310,-687,-16311,-856,-16312,-16313,-1599,-6528,-1978,-11096,-16314], +[1,3,11129], +[0,11130,11131,278,5], +[0,-668,-2550,-16315,-2823,-16316], +[0,-3037,-16317], +[1,3,11133], +[0,11134,91,11135,5], +[0,-2177,-2823,-16316,-16318], +[0,-15627,-15629,-15630,-4864,-3634,-3636], +[1,3,11137], +[0,11138,11139,11140,4], +[0,-16319,-16316,-16318,-2823], +[0,-2973,-16320,-15626,-5769,-1870,-11468], +[0,-15627,-15629,-15630,-4864,-3634,-3636,-11890], +[1,3,11142], +[0,11143,11144,11145,4], +[0,-719,-2683,-2822,-16321], +[0,-15624,-16322,-16323,-2983], +[0,-15279,-687,-3262,-856,-15280,-15281], +[1,3,11147], +[0,11148,0,11149,4], +[0,-16324], +[0,-15279,-15625,-16325,-16326,-856,-15280,-15281], +[1,3,11151], +[0,94,11152,11153,8], +[0,-3307,-12564,-4646,-3136,-3044,-3040,-3141,-427,-428,-721,-932,-940,-967,-1344,-1415,-16327,-1942,-2006,-2034,-12566, +-2091,-2410], +[0,-2034,-3159,-5270,-5271,-16328,-16329,-3162,-5269,-3095,-6107,-7067,-14498,-11378,-2319], +[1,3,11155], +[0,11156,11157,11158,10], +[0,-2340], +[0,-16178,-1857], +[0,-10425,-6321,-3634,-7606,-2340], +[1,3,11160], +[0,11161,11162,7,6], +[0,-3195,-1864,-4247], +[0,-5694,-16224,-16330,-16331,-10097,-10098,-3037,-8523,-8200,-483,-8349,-16332,-928,-932,-16333,-1431,-1534,-1588,-2923, +-2127,-3246,-2892,-2410,-16334,-15822,-2466,-2469,-2501,-2503,-2981], +[1,3,11164], +[0,72,0,11165,6], +[0,-15279,-15625,-16335,-856,-15280,-15281], +[1,3,11167], +[0,11168,0,11169,10], +[0,-16336], +[0,-15279,-15625,-16337,-6999,-856,-15280,-15281], +[1,3,11171], +[0,11172,0,73,5], +[0,-4716,-1548,-1582,-10515], +[1,3,11174], +[0,0,11175,11176,5], +[0,-50,-190,-3035,-3664,-469,-932,-940,-1942,-2125,-2134,-2210,-2334,-2384,-2387,-2402,-2405,-2411,-2466,-16338,-16339, +-16340,-16341,-2468,-2469], +[0,-16342,-5177,-3214,-2410,-16343,-16344,-6899,-16345,-3162], +[1,3,11178], +[0,0,11179,11180,5], +[0,-50,-3037,-427,-428,-7438,-932,-940,-1003,-1654,-1942,-16346,-2134,-16347,-2210,-2402,-2405,-2410,-2466,-16338,-16339, +-16340], +[0,-5177,-16343,-9475,-3999,-6899,-16345,-659,-7085,-3578,-3162], +[1,3,11182], +[0,11183,0,11184,4], +[0,-2357], +[0,-4144,-3214,-16348,-2987,-1942,-2410], +[1,3,11186], +[0,0,0,11187,4], +[0,-3015,-16349,-1520,-15360,-10440,-1764,-1787,-5895,-7442,-1882,-2177,-7969,-3682,-16350,-16351,-11713,-4304,-2552], +[1,3,11189], +[0,0,11190,7,4], +[0,-16352,-16353,-280,-16354,-16355,-350,-4062,-351,-7155,-4007,-11348,-16356,-16357,-11752,-719,-831,-16358,-3459,-1863, +-2144,-16359,-16360], +[1,3,11192], +[0,11193,0,73,11], +[0,-2959,-2860,-5758,-8864,-5761,-523,-615,-617,-1004,-11676,-1341,-1548,-1582,-1635,-1676,-1851,-2185,-2400], +[1,3,11195], +[0,291,135,63,11], +[1,3,11197], +[0,11198,135,63,11], +[0,-3947,-231,-2944,-2900], +[1,3,11200], +[0,11201,11202,11203,10], +[0,-2564,-6860,-6415,-16361,-16362,-16363,-2292,-16364,-16365,-16122,-16366,-16367,-16368,-16369,-16370,-5038,-16371, +-5779,-5782], +[0,-1683,-16178,-3631,-2410,-3037,-16372,-3617,-16373,-8859,-16374,-12285,-16375], +[0,-16376,-16377,-14981,-16378,-16379,-3445,-16380,-16381,-16382,-11877,-16383,-16384,-16385,-16386,-16387], +[1,3,11205], +[0,11206,11207,11208,10], +[0,-1047,-1863,-1875], +[0,-11337,-3040,-825,-1802,-12566,-2410], +[0,-2034,-5270,-5271,-12578,-7084,-12579,-3159,-12567,-2006,-3162,-3160,-3167,-3843,-9472,-9474,-3827], +[1,3,11210], +[0,11211,0,11212,8], +[0,-2460,-1641,-2683,-16324], +[0,-15279,-15625,-5398,-856,-15280,-15281], +[1,3,11214], +[0,0,11215,11216,9], +[0,-16388,-15583,-21,-23,-3203,-38,-40,-16389,-16390,-3326,-3561,-528,-533,-10056,-10022,-15127,-16391,-11899,-726,-865, +-932,-956,-958,-9724,-1059,-11942,-13866,-1344,-1415,-5123,-12680,-4981,-4982,-1868,-16392,-1942,-1952,-1978,-16346, +-2127,-16393,-2134,-2140,-2144,-2184,-2410], +[0,-3821,-3822,-3823,-3825,-16394,-16395], +[1,3,11218], +[0,0,11219,11220,9], +[0,-3266,-3621,-3037,-632,-664,-1654,-1753,-2127,-2344,-2410], +[0,-16396,-2998,-16397,-7049,-5176,-16398,-15100,-16055,-15213,-6899,-11853,-16399,-16400,-12543,-16401,-7198,-10724, +-16402,-16403,-16404], +[1,3,11222], +[0,0,70,11223,9], +[0,-13351,-16405], +[1,3,11225], +[0,11226,11227,11228,9], +[0,-16406,-16407,-16408,-16409,-16410], +[0,-683,-932,-16411,-16412,-1989,-2281,-2282,-2334], +[0,-2363,-3576,-16413,-12449,-12613,-13615,-14054,-4865], +[1,3,11230], +[0,0,11231,11232,9], +[0,-664,-824,-1168,-1187,-9293,-1208,-1224,-1243,-1262,-16414,-1654], +[0,-4123,-11154,-11158,-1666,-1667,-4121], +[1,3,11234], +[0,0,0,11235,9], +[0,-3003,-7184,-5493,-11151,-16415,-8451,-3579,-8590,-3215], +[0,25,9], +[1,3,11238], +[0,11239,0,7,9], +[0,-637], +[1,3,11241], +[0,0,11242,11243,9], +[0,-1032,-2322], +[0,-3006,-10504,-10684,-16416,-11972], +[1,3,11245], +[0,0,11246,11247,9], +[0,-1654,-1003,-6851,-16417,-16418,-1818,-510], +[0,-6106,-1818,-16418,-6851], +[1,3,11249], +[0,0,0,11250,9], +[0,-16419,-14311], +[1,3,11252], +[0,11253,0,7,9], +[0,-1980,-10802,-2550,-2520,-1691,-2424,-693,-7109,-714,-2525], +[1,3,11255], +[0,11256,11257,11258,9], +[0,-1967,-16420], +[0,-21,-23,-36,-40,-41,-43,-509,-756,-915,-916,-932,-16421,-7894,-964,-969,-1449,-1654,-1788,-2006,-2019,-15571,-16422], +[0,-3839,-2034,-3010,-16423,-9682,-2006], +[1,3,11260], +[0,0,11261,7,9], +[0,-23,-40,-350,-5995,-351,-535,-571,-633,-1413,-1471,-1472,-1475,-1476,-1481,-3569,-1491,-1978,-2127,-2128,-16424,-8895, +-16425,-8896,-2140,-2491], +[1,3,11263], +[0,0,11264,7,9], +[0,-2125,-1650,-16426,-16427], +[1,3,11266], +[0,0,11267,11268,9], +[0,-21,-23,-40,-528,-557,-932,-934,-940,-958,-967,-1415,-1942], +[0,-5845,-8799,-651,-16428,-3215,-16429,-7304,-6241,-8574,-12248,-6582,-1044,-6656,-8800,-3590,-5845,-6473,-3240] ] diff --git a/packages/flatpack-json/fixtures/.prettierignore b/packages/flatpack-json/fixtures/.prettierignore new file mode 100644 index 000000000000..5e8e7e0b6ae3 --- /dev/null +++ b/packages/flatpack-json/fixtures/.prettierignore @@ -0,0 +1 @@ +**/*.json From b4618f51878631fd36ae8cb14667852a2f2bc3d5 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 06:15:13 +0000 Subject: [PATCH 10/26] [autofix.ci] apply automated fixes --- .../fixtures/.npm-packages-info-v1.json | 78516 ++++++++-------- .../fixtures/.npm-packages-info-v2.json | 47038 ++++++--- 2 files changed, 73265 insertions(+), 52289 deletions(-) diff --git a/packages/flatpack-json/fixtures/.npm-packages-info-v1.json b/packages/flatpack-json/fixtures/.npm-packages-info-v1.json index 1fe72091b400..6f619003bef9 100644 --- a/packages/flatpack-json/fixtures/.npm-packages-info-v1.json +++ b/packages/flatpack-json/fixtures/.npm-packages-info-v1.json @@ -1,36873 +1,41647 @@ [ -"Flatpack JSON v1", -[5,2,25598], -[0,3,4,7,10,13,16,19,21,24,26,28,30,32,34,37,39,40,43,46,47,48,51,53,56,58,61,62,63,64,65,66,68,71,73,76,78,81,83,85,87,90,92,94,97,99,101,104,105,106,107,110,111,114,116,119,122,124,126,129,133,135,137,140,143,146,148,150,153,155,157,159,162,164,167,169,171,174,175,177,180,182,185,187,189,191,192,195,197,198,201,203,204,205,208,213,215,218,220,221,222,225,228,231,233,235,238,240,243,245,247,249,251,253,258,260,262,265,267,269,271,272,275,277,280,282,285,288,290,293,296,298,301,303,305,308,310,313,315,319,322,324,327,329,331,334,338,340,342,345,346,347,350,351,354,355,358,359,360,361,362,365,368,370,371,374,377,379,381,384,387,392,394,399,401,404,406,409,411,413,415,419,422,425,427,430,432,434,438,439,442,443,444,445,448,449,452,456,457,460,462,465,468,469,470,471,478,481,483,486,488,490,493,495,497,502,505,507,513,516,518,525,528,533,536,538,539,540,541,542,545,546,547,548,549,550,551,554,555,559,560,561,564,565,566,567,572,573,576,577,578,581,583,585,587,589,593,595,596,598,601,602,603,606,608,609,613,615,616,617,618,621,622,624,626,627,628,631,633,634,635,638,641,643,646,649,652,654,656,659,660,663,665,666,669,672,675,677,679,682,683,684,687,688,691,692,693,697,700,702,703,706,709,711,712,713,716,721,724,727,732,735,738,740,742,745,749,751,753,758,763,767,770,773,776,782,785,790,793,795,798,802,803,804,805,806,807,808,809,810,811,816,817,818,821,822,825,826,827,828,829,831,834,835,838,840,841,842,843,846,849,850,851,852,853,857,860,864,870,872,876,881,885,891,896,898,905,910,913,915,917,920,925,929,933,935,938,944,948,951,954,955,958,961,962,963,966,968,971,972,974,975,978,980,983,985,987,989,991,993,996,997,1001,1003,1004,1005,1006,1009,1011,1012,1013,1014,1015,1018,1021,1023,1025,1026,1027,1028,1030,1031,1032,1033,1034,1043,1045,1050,1054,1056,1059,1061,1063,1066,1073,1075,1077,1078,1079,1080,1081,1082,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1096,1097,1098,1100,1102,1103,1104,1107,1109,1110,1112,1113,1114,1115,1116,1117,1118,1120,1121,1122,1125,1127,1129,1130,1131,1132,1135,1136,1137,1138,1139,1140,1143,1144,1145,1147,1148,1149,1151,1154,1156,1157,1158,1159,1162,1165,1166,1167,1168,1169,1170,1171,1172,1173,1175,1178,1180,1184,1189,1191,1193,1195,1198,1201,1203,1205,1208,1210,1212,1216,1217,1220,1225,1230,1233,1235,1240,1244,1245,1248,1251,1253,1255,1257,1261,1264,1267,1268,1270,1272,1275,1277,1279,1280,1282,1284,1287,1288,1290,1291,1292,1293,1294,1295,1298,1301,1304,1305,1306,1308,1309,1310,1311,1314,1315,1316,1317,1318,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1335,1336,1339,1342,1344,1346,1348,1350,1352,1354,1356,1358,1361,1362,1363,1364,1365,1366,1367,1369,1370,1371,1372,1373,1376,1377,1378,1381,1385,1386,1387,1389,1391,1393,1394,1395,1396,1397,1398,1400,1401,1402,1405,1406,1407,1408,1409,1410,1411,1413,1414,1415,1416,1417,1420,1421,1423,1424,1425,1426,1427,1428,1429,1431,1434,1436,1437,1438,1440,1443,1446,1447,1448,1449,1450,1455,1456,1457,1458,1459,1461,1462,1465,1468,1470,200,1471,1474,1477,1479,1480,1481,1482,1483,1486,1488,1489,1492,1494,1495,1496,1497,1498,1499,1500,1501,1503,1505,1506,1509,1473,1511,1512,1513,1516,1519,1522,1525,1527,1529,1532,1533,1536,1537,1540,1541,1543,1544,1546,1549,1551,1553,1556,1559,1560,1562,1565,1566,1567,1570,1573,977,1575,1578,1581,1582,1584,1587,1588,1590,1591,1593,1594,1595,1596,1597,1598,1599,1600,1603,1604,1605,1606,1608,1609,1610,1613,1615,1616,1618,1620,1621,1622,1623,1624,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1645,1647,1648,1649,1650,1651,1652,1653,1654,1655,1658,1660,1661,1662,1663,1664,1665,1668,1672,1673,1674,1675,1676,1677,1679,1680,1681,1682,1686,1688,1690,1693,1696,1699,1700,1701,1702,1703,1704,1705,1706,1707,1710,1711,1687,1713,1715,1718,1719,1720,1723,1724,1726,1727,1728,1729,1730,1731,1733,1734,1735,1736,1737,1738,1741,1742,1745,1748,467,1750,1751,1754,1756,1757,1758,1759,1763,1764,1766,1767,1768,1770,1774,1777,1779,1782,1784,1785,1786,1787,1788,1789,1791,1792,1793,1794,1795,1796,1797,1798,1801,1804,1806,1809,1812,1816,1817,1819,1820,1821,1822,1824,1825,1827,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1842,1843,1845,1847,1850,1853,1854,1855,1856,1859,1860,1863,1865,1866,668,1869,1874,1875,1177,1879,1881,1883,1886,1889,1891,1893,1895,1898,1900,1903,1905,1907,1909,1912,1915,1916,1920,1922,1924,1926,1930,1933,1935,1937,1938,1939,1942,1945,1947,1948,1951,1953,1954,1955,1958,1959,1961,1964,1966,1969,1970,1972,1976,1978,1982,1985,1988,1992,1994,1996,1998,1999,2000,2003,2004,2007,984,2008,2010,2011,2012,2015,2017,2018,2019,2020,2021,2022,2024,2025,2026,2028,2031,2033,2037,2039,2040,2042,2045,2046,2048,2051,2053,2054,2057,2058,2059,2060,2061,2064,2067,2069,2071,2073,2075,2077,2078,2079,2080,2081,2082,2083,2084,2086,2087,2088,2089,2092,2095,2096,2098,2099,2102,2105,2107,2108,2109,2111,2113,2114,2116,2117,2119,2122,2123,2126,2128,2129,2130,2131,2132,2133,2134,2135,2137,2139,2141,2144,2145,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2159,2160,2161,2162,2163,2164,2165,2167,2170,2172,2175,2176,2177,2178,2179,2182,2185,2188,2191,2192,2193,2194,2195,2197,2070,2200,2202,2203,2205,2206,2207,2209,2211,2212,2213,2214,2215,2216,2217,2220,2222,2225,2226,2227,2228,2231,2234,2236,2239,2240,2243,2247,2250,2253,2256,2258,2260,2263,2266,2268,2271,2273,2274,2277,2279,2281,2283,2285,2290,2291,2293,2296,2298,2300,2302,2305,2307,2308,2311,2314,2316,2318,2320,2321,2322,2323,2327,2330,2332,2334,2336,2338,2341,2344,2346,2348,2351,2352,2354,2357,2359,2361,2363,2366,2367,2368,2371,2372,2373,2375,2377,2379,2381,2383,2384,2387,2390,2393,2396,2398,2400,2401,2404,2405,2406,2409,2411,2413,2416,2419,2421,2423,2425,2427,2430,2433,2435,2436,2438,2441,2444,2447,2449,2450,2453,2455,2459,2461,2463,2464,2467,2469,2472,2476,2479,2482,2486,2489,2490,2493,2494,2496,2498,2500,2503,2504,2506,2507,2508,2510,2512,2515,2517,2519,2520,2521,2524,2526,2529,2530,2533,2536,2539,2541,2543,2544,2547,2549,2550,2552,2553,2554,2555,2036,2556,2559,2562,2563,2564,2567,2569,2570,2571,2572,2575,2577,2579,2581,2583,2584,2586,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2600,2601,2602,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2616,2620,2623,2626,2628,2629,2633,2635,2637,2639,2641,2644,2646,2650,2651,2652,2654,27,2657,2659,2661,2664,2665,2668,2670,2671,2674,2675,2676,2677,2678,2679,2681,2683,2685,2686,2687,2689,2692,2267,2694,2695,2696,2697,2700,2702,2704,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2718,2719,2720,2722,2723,2726,1161,2727,2728,2730,2731,2732,2733,2735,2738,2739,2740,2741,2742,2743,2744,2745,2747,2750,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2437,2763,2764,2765,2766,2768,1192,2771,2774,2777,2780,2782,2784,2787,2792,2794,2796,2797,2798,2802,2805,2806,2807,2808,2810,2811,2812,2813,2814,2816,2817,2820,2821,2822,2823,2824,2292,1776,2826,2829,2832,2834,2835,2272,2839,2841,2843,2845,2848,2851,2854,2856,2858,2859,2860,2861,2863,2864,2865,2866,2867,2870,2297,2871,2876,2878,2881,2886,2889,2891,2895,2897,2898,2900,2904,2906,2908,2910,2912,2915,2918,2921,2923,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2941,2943,2945,2946,2948,2949,620,2950,2954,2957,2960,2961,2962,2963,2964,2967,2968,695,2969,2970,2972,2973,2975,2976,2979,2981,2982,2983,2984,2986,2990,2991,2992,2993,2996,2997,3000,3003,3006,3008,3010,3012,3014,3019,1209,3021,3023,3025,3028,3029,3032,3034,3037,3039,3041,3044,3047,3049,3051,3052,3054,3057,3060,3062,3064,3066,3067,3070,3072,3073,3074,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3095,3096,3097,3098,3099,3102,3103,1783,3105,3107,3112,3114,3116,3117,3120,3123,3124,3125,3127,3129,3130,3132,3133,3134,3135,3136,3137,3140,3141,3142,3143,3144,3145,3148,3150,3152,3153,3156,3157,1698,3159,3160,3161,3162,3164,3165,3167,3170,3171,3173,3174,3177,3178,3181,3183,3185,3186,3187,3188,3189,3190,3191,2899,3198,3200,3202,3203,3206,3210,3211,3213,3215,3216,3219,3220,3222,3223,3226,3229,3230,3232,3233,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3249,3253,3256,3257,3258,3259,3260,3261,1952,3262,3263,2378,3264,3266,3268,3270,3271,3273,3274,3275,3276,3277,3278,3282,3283,3284,3285,3287,3288,3289,3290,3291,3292,3294,3295,3296,3297,3299,3300,3303,3305,3308,3309,3310,3313,3316,3318,640,3322,3324,3327,3330,3332,3334,3337,3339,3341,3342,3345,3347,3349,3350,3353,3355,3357,3359,3361,3363,2276,3365,3366,3367,3368,3369,3371,3373,3376,3377,3378,3379,3381,3386,3390,3393,3397,3400,3401,3404,3406,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3427,3429,3431,3433,3434,3435,3438,3439,3440,3441,3442,3443,3444,3445,3446,3451,3453,3455,3456,3458,3459,3460,3463,3466,3467,3468,3469,888,3470,3471,3472,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3488,3490,3492,1644,3493,3494,3495,3498,3499,3500,3501,1433,3403,3502,3505,3507,3509,3510,3511,3512,3513,3518,3519,3520,3521,3524,3525,3526,3527,3530,3531,3532,3533,3534,3535,3536,3537,3539,3540,3541,2072,3544,3545,3547,3548,3549,3551,3552,3553,3554,3555,3558,3559,3560,3561,3564,3566,3570,3572,3575,3577,3579,3584,3587,3591,3598,3600,3603,3605,3606,3611,3613,3616,3618,3622,3625,3628,3633,3635,3636,3638,3640,3643,3647,3649,3652,3653,3657,3660,3662,3664,3668,3672,3674,3676,3678,3681,3683,3686,3688,3691,3692,3693,3696,3697,3698,3699,1894,3703,3706,3708,3710,3711,3714,3716,3717,3718,3720,3722,3724,3725,3726,3727,3729,3730,3732,1862,3734,3736,3739,3741,3742,3744,3746,3747,3750,2658,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3765,3767,3768,3770,3771,2907,3773,3774,3775,3776,3777,3779,3780,3781,3783,3784,3786,1997,3787,3788,3789,3790,89,3793,3799,3802,3803,3804,3807,3810,3813,3816,3817,3820,3822,3824,3826,3829,3830,3833,3836,3837,3839,3843,3846,3847,3849,3850,3853,3856,3857,3861,3864,3867,3869,3872,3876,3878,3882,3884,3885,3887,3889,3891,3893,3895,3897,3899,3904,3906,3909,3911,3913,3914,3916,3917,3919,3921,3923,3925,3927,3928,3930,3931,3932,3935,3938,1552,3939,3941,3875,3943,3945,3946,3948,3950,3951,3954,3957,3958,3963,3968,3970,3971,3973,3975,3978,3980,3981,3984,3985,3988,3989,3991,3992,3995,3998,3999,4001,4002,4005,705,4008,4010,4012,4015,4018,4019,4022,4023,814,4025,4028,4029,4031,4033,4035,4036,1153,4037,4038,4039,4041,4042,4045,4048,4052,4055,4057,4058,4060,4064,4066,4067,4069,4071,4073,4075,4076,4077,4079,4081,4083,4084,4085,4086,4089,4092,4093,4094,4098,4100,4103,4104,4105,4106,4108,4110,2278,4111,4112,4113,4116,4119,4121,4124,4125,4126,4127,4130,4131,4134,1899,4135,710,4136,4137,4140,4143,4145,4146,4148,4150,4151,4153,4156,4159,4160,4163,4164,4165,4167,4168,4169,4170,4171,4172,4173,4174,4177,4181,4183,4187,4188,4189,4192,4193,4196,4199,4200,4201,4204,4205,4206,4207,4208,4209,4212,3974,4213,4214,4215,4216,4217,4218,4220,4224,4227,4228,4230,4232,4233,4234,4235,4236,4237,4238,4239,4242,4243,4245,4246,4247,4248,4249,4252,4255,4257,4258,4261,4264,4266,4267,4270,4272,4275,4277,4278,4280,4282,4283,1871,4288,4290,4292,4294,4296,4300,4302,4303,4305,4307,4309,4311,4315,4317,4319,4320,4323,4326,4328,4330,4333,4334,4335,4337,4338,4339,4341,4342,4343,4345,4347,4351,4352,3709,4355,4359,4360,4361,4362,4363,4365,4367,4369,4370,4371,4372,4373,4375,4376,4377,4380,4382,4383,4384,4387,4388,4389,4390,4391,4393,4394,4397,4398,4399,1241,4400,4401,4404,4072,4409,4411,1187,4413,4415,4419,4421,4423,4425,4426,4427,4430,4431,4433,4434,4435,4436,4437,4438,4441,4443,4445,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,100,4459,4461,4462,4463,4464,4465,4468,4469,4470,4473,4474,4475,4477,4478,4480,4481,4482,4483,4484,4487,4490,4492,4493,4494,4495,4496,4497,4498,4499,4500,4505,4507,1000,4508,4510,4512,4514,4515,4517,4520,4521,91,4523,4526,4531,4532,4533,4535,4537,4538,4539,4540,4541,4542,4543,4545,4547,4548,4549,4554,4555,4558,4559,4560,4562,4563,1002,4566,4027,4567,4568,4569,4572,4576,4577,614,4578,3348,4579,4582,4585,4588,1155,4589,4590,4591,4592,4593,4594,4595,4596,4597,4599,4600,4603,4606,4608,1983,4612,4614,1984,4615,4616,4617,4618,4621,4624,188,4629,4630,4632,4633,4634,4638,4639,4640,4645,4646,4647,4648,4649,2282,4650,4651,4652,4653,4656,4659,4662,4664,4667,4669,2924,4676,4677,4679,4681,4684,4686,4689,4693,4695,4696,4699,4702,4703,4704,4705,4706,4707,4708,4709,4711,4715,4716,4717,4720,4723,4724,4726,4727,4728,4729,4730,4731,3354,4733,4734,4735,4736,4737,4738,1906,4739,4740,4741,4742,1695,4744,4745,4746,4747,4748,4749,4751,4752,4753,4754,4756,4757,4758,4759,4760,4761,4762,4763,4767,4768,4769,4770,4771,4772,4774,4775,4776,4777,4782,4783,4786,4788,4791,639,11976,662,3405,5010,6781,23276,6974,15279,15484,17429,15887,26713,18240,11804,24566,475,24782,25169,25219,25266,25307,25432,25443,25395,25490,25766,25775,25798,25809,25833,25882,25931,29350,29385,29389,29407,29414,29394,29435,29448,29460,20562,29477,31705,29524,29537,29546,29560,33408,29564,29610,31821,29626,3286,30757,29683,29729,29754,5065,29805,9011,29821,24737,29850,29889,29942,29955,28519,29993,9355,8199,680,19571,27921,29998,30145,30165,26706,30182,30196,30218,9041,30233,30252,30257,30281,30312,906,30405,30458,30463,30469,30477,30488,30607,30612,30624,30731,907,8119,30798,30829,940,26636,20202,29755,14673,9274,9293,9273,30926,30957,30972,33145,24723,30979,14684,31064,11518,31086,12016,15951,31198,31231,31244,31262,31272,31282,31289,31290,31332,31347,31314,31353,31375,21287,21288,31343,31386,31421,31430,31465,31473,31485,31501,31509,31521,14904,31180,31528,14959,18699,18717,14336,31544,26854,34576,34578,31644,33204,11421,23288,31677,31713,11890,16858,31728,31749,31760,31782,31793,31805,31816,31822,31827,31835,17964,21594,31838,8160,31930,29013,33653,31961,17988,12421,23352,23250,23292,31752,23253,32029,16837,32144,32166,24114,32182,13896,31182,32201,31734,32238,26180,32265,27263,32294,32311,16870,32319,17167,16842,11071,32347,32397,32415,32443,32456,21174,32468,32493,32499,32506,32531,32225,32546,32564,32577,12042,32634,32747,32760,32766,32778,11501,32790,19469,9252,31184,31186,9731,32816,999,32884,32892,9272,32914,32926,32934,32939,32940,32962,5517,1083,34683,33053,8392,10572,11960,24509,30299,1300,30527,34676,1302,30535,26450,26482,26483,26489,26495,32977,8703,1418,26414,1419,28763,2115,7606,1441,13412,26273,28880,28909,1442,28458,28479,28493,1445,32733,1466,1475,29032,26257,1476,28595,28885,1491,1502,28323,1510,5290,26241,1526,29197,28873,4090,1530,9378,26158,3845,8654,1531,1761,26082,1535,26699,29865,1555,2245,8605,28450,28899,28901,1558,5993,28354,29834,1607,1667,23535,1670,1790,26644,7585,20304,28327,28400,26421,1678,2221,10973,1689,28865,8550,22378,8540,1691,26032,29417,1692,26591,29304,1694,28069,31474,31486,31507,31524,1802,28906,1813,29853,1814,8604,1841,27959,1857,28466,1918,32834,32863,32890,30286,31680,31400,1979,31833,33277,13387,1980,21374,2001,2035,5666,5564,2049,17110,5287,2362,32818,25810,2050,2065,25762,29012,29031,2066,25802,34043,28092,29161,2094,34032,28872,2097,34161,33479,2106,2140,2142,36878,36879,2186,28117,2219,29019,6372,2238,7995,9107,12097,13676,17199,26746,33929,18012,20093,34468,20362,21610,23755,23769,24602,19617], -"@alifd/next", -"@angular-devkit/core", -[3,4,16], -"schematics", -[2,5,6], -[3,4,8], -"/animations", -[2,8,9], -[3,10,9], -"cdk", -[2,11,12], -[3,13,10], -"ommon", -[2,14,15], -[3,16,12], -"piler", -[2,17,18], -"-cli", -[2,19,20], -[3,16,11], -"re", -[2,22,23], -"forms", -[2,11,25], -"http", -[2,11,27], -"material", -[2,11,29], -"platform-browser", -[2,11,31], -"-dynamic", -[2,32,33], -[3,32,18], -"server", -[2,35,36], -"router", -[2,11,38], -"@ant-design/react-native", -[3,40,12], -"web3-common", -[2,41,42], -[3,43,17], -"icons", -[2,44,45], -"@auth/sveltekit", -"@babel/cli", -[3,48,8], -"ode-frame", -[2,49,50], -[3,51,9], -[2,52,23], -[3,48,7], -"helper-plugin-utils", -[2,54,55], -"parser", -[2,54,57], -[3,58,8], -"lugin-proposal-class-properties", -[2,59,60], -"@11ty/eleventy", -"@adobe/css-tools", -"@api-components/api-method-documentation", -"@apollo/client", -"@asyncapi/generator-react-sdk", -"eslint-parser", -[2,54,67], -[3,61,23], -"decorators", -[2,69,70], -"export-default-from", -[2,69,72], -[3,73,30], -"namespace-from", -[2,74,75], -"object-rest-spread", -[2,69,77], -[3,61,14], -"syntax-dynamic-import", -[2,79,80], -"transform-runtime", -[2,79,82], -"olyfill", -[2,59,84], -"reset-env", -[2,59,86], -[3,87,14], -"react", -[2,88,89], -"typescript", -[2,88,91], -"register", -[2,54,93], -[3,94,8], -"untime", -[2,95,96], -"-corejs2", -[2,97,98], -"traverse", -[2,54,100], -[3,101,8], -"ypes", -[2,102,103], -"@biz-dev-ops/md-docs", -"@bwcr_/winston-loki", -"@changesets/cli", -"@cha", -"tscope/chat-ui-kit-react", -[2,108,109], -"@ckeditor/ckeditor5-adapter-ckfinder", -[3,111,21], -"ngular", -[2,112,113], -"utoformat", -[2,112,115], -[3,111,20], -"basic-styles", -[2,117,118], -[3,119,21], -"lock-quote", -[2,120,121], -"uild-balloon", -[2,120,123], -"-block", -[2,124,125], -[3,124,26], -"classic", -[2,127,128], -"deco", -"upled-document", -[2,130,131], -[2,127,132], -"inline", -[2,127,134], -"ckbox", -[2,117,136], -[3,137,22], -"finder", -[2,138,139], -[3,137,21], -"lipboard", -[2,141,142], -[3,143,22], -"oud-services", -[2,144,145], -"ore", -[2,141,147], -"easy-image", -[2,117,149], -[3,150,21], -"ngine", -[2,151,152], -"ssentials", -[2,151,154], -"heading", -[2,117,156], -"image", -[2,117,158], -[3,159,21], -"ndent", -[2,160,161], -"link", -[2,117,163], -[3,164,22], -"st", -[2,165,166], -"media-embed", -[2,117,168], -"paragraph", -[2,117,170], -[3,171,22], -"ste-from-office", -[2,172,173], -[2,117,89], -"table", -[2,117,176], -[3,177,21], -"yping", -[2,178,179], -"ui", -[2,117,181], -[3,182,21], -"pload", -[2,183,184], -"tils", -[2,183,186], -"vue", -[2,117,188], -"widget", -[2,117,190], -"@commitlint/cli", -"@com", -"podoc/compodoc", -[2,193,194], -"unica/core", -[2,193,196], -"@contenthook/browser", -[3,198,13], -"cli", -[2,199,200], -"node", -[2,199,202], -"@coreui/coreui", -"@csstools/css-parser-algorithms", -[3,205,14], -"tokenizer", -[2,206,207], -[3,205,10], -"media-", -"query-list-parser", -[2,210,211], -[2,209,212], -"postcss-is-pseudo-class", -[2,209,214], -[3,215,18], -"progressive-custom-properties", -[2,216,217], -"selector-specificity", -[2,209,219], -"@cucumber/cucumber", -"@deven-org/documentation-skeleton", -"@dev", -"tea2026/aspernatur-ea-non-porro", -[2,223,224], -[3,225,12], -"consectetur-ab-unde-quisquam", -[2,226,227], -[3,228,13], -"upiditate-dolorem-excepturi-impedit", -[2,229,230], -"distinctio-soluta-illo-eaque", -[2,226,232], -"eum-ullam-est-distinctio", -[2,226,234], -[3,235,13], -"xplicabo-alias-architecto-sed", -[2,236,237], -"improved-journey", -[2,226,239], -[3,240,13], -"nventore-facilis-corporis-cum", -[2,241,242], -"psa-omnis-in-molestiae", -[2,241,244], -"literate-computing-machine", -[2,226,246], -"maxime-sequi-est-rem", -[2,226,248], -"necessitatibus-dolorem-esse-atque", -[2,226,250], -"odit-enim-reiciendis-pariatur", -[2,226,252], -[3,253,17], -"maxime-", -"porro-asperiores", -[2,255,256], -[2,254,257], -"possimus-ipsa-sint-consequuntur", -[2,226,259], -"qui-quos-laborum-amet", -[2,226,261], -[3,262,15], -"a-ducimus-placeat-minima", -[2,263,264], -"dem-voluptate-repudiandae-necessitatibus", -[2,263,266], -"rerum-quaerat-porro-animi", -[2,226,268], -"ubiquitous-octo-memory", -[2,226,270], -"@diotoborg/adipisci-placeat-iure", -[3,272,12], -"met-architecto-est", -[2,273,274], -"t-totam-perspiciatis", -[2,273,276], -[3,272,11], -"commodi-voluptatum-libero", -[2,278,279], -"delectus-necessitatibus-voluptatum", -[2,278,281], -[3,282,13], -"serunt-illo-tempora", -[2,283,284], -[3,282,12], -"icta-recusandae-veniam", -[2,286,287], -"olor-earum-quia", -[2,286,289], -[3,290,17], -"tempora-fuga", -[2,291,292], -[3,290,16], -"es-praesentium-assumenda", -[2,294,295], -"eligendi-est-unde", -[2,278,297], -[3,298,12], -"sse-accusantium-ratione", -[2,299,300], -"illo-amet-architecto", -[2,278,302], -"laudantium-itaque-esse", -[2,278,304], -[3,305,12], -"ibero-asperiores-at", -[2,306,307], -"neque-inventore-corporis", -[2,278,309], -[3,310,12], -"ostrum-eveniet-officiis", -[2,311,312], -"odio-dolores-officia", -[2,278,314], -"porro-", -"modi-accusamus", -[2,316,317], -[2,278,318], -[3,319,12], -"sychic-bassoon", -[2,320,321], -"quasi-repellat-odit", -[2,278,323], -[3,324,13], -"i-ullam-ipsum", -[2,325,326], -"o-dolorem-ducimus", -[2,325,328], -"ratione-error-odio", -[2,278,330], -[3,331,12], -"epellat-blanditiis-quis", -[2,332,333], -[3,292,8], -"voluptas-distinctio", -[2,335,336], -[2,278,337], -"ullam-dignissimos-repudiandae", -[2,278,339], -"velit-reiciendis-velit", -[2,278,341], -[3,342,13], -"rbose-robot", -[2,343,344], -"@diplodoc/transform", -"@discordjs/rest", -"@dis", -"qada/workspace", -[2,348,349], -"@doc-tools/docs", -[3,351,11], -[3,82,9], -[2,352,353], -"@dramaorg/esse-praesentium-eligendi", -[3,355,10], -"quae-dolore-nostrum", -[2,356,357], -"@eas-framework/server", -"@eightshift/frontend-libs", -"@electron/docs-parser", -"@emotion/babel-plugin", -[3,362,9], -"core", -[2,363,364], -[3,365,10], -"ss", -[2,366,367], -"styled", -[2,363,369], -"@erboladaiorg/ad-exercitationem-ducimus", -[3,371,15], -"speriores-earum-quaerat", -[2,372,373], -[3,374,25], -"fuga-sint", -[2,375,376], -"nam-adipisci", -[2,375,378], -"utem-dolores-ipsam", -[2,372,380], -[3,371,14], -"cupiditate-consectetur-porro", -[2,382,383], -[3,384,25], -"pariatur-optio", -[2,385,386], -[3,232,11], -"quis", -[2,335,389], -[2,388,390], -[2,382,391], -"error-atque-ea", -[2,382,393], -[3,394,15], -"sse-", -"ipsa-numquam", -[2,396,397], -[2,395,398], -"x-hic-molestias", -[2,395,400], -[3,401,16], -"plicabo-eius-adipisci", -[2,402,403], -"molestiae-voluptatibus-perferendis", -[2,382,405], -[3,406,22], -"s-nulla-dolor", -[2,407,408], -"nisi-culpa-cum", -[2,382,410], -"officia-illum-aperiam", -[2,382,412], -"perspiciatis-magni-ut", -[2,382,414], -"quae-", -"in-veniam", -[2,416,417], -[2,382,418], -[3,419,18], -"rat-mollitia-adipisci", -[2,420,421], -[3,419,16], -"ibusdam-itaque-tempora", -[2,423,424], -"sint-deleniti-dolorem", -[2,382,426], -[3,427,16], -"t-nesciunt-amet", -[2,428,429], -"tenetur-architecto-dolore", -[2,382,431], -"ut-dignissimos-laborum", -[2,382,433], -"velit-", -"fugit-harum", -[2,435,436], -[2,382,437], -"@eslint-community/eslint-utils", -"@eslint", -"/js", -[2,440,441], -"@fakeyanss/redoc", -"@floating-ui/react-dom", -"@fontsource/inter", -[3,445,12], -"roboto", -[2,446,447], -"@fortawesome/fontawesome-svg-core", -[3,449,14], -"ree-solid-svg-icons", -[2,450,451], -[3,449,13], -"-fontawesome", -[2,89,454], -[2,453,455], -"@grandlinex/core", -[3,457,12], -"e-kernel", -[2,458,459], -"kernel", -[2,458,461], -"@gra", -"phql-markdown/core", -[2,463,464], -[3,465,18], -"docusaurus", -[2,466,467], -"@hajtech/webpack-config", -"@hapi/hapi", -"@hishprorg/aliquid-ad-vero", -[3,471,12], -"utem-", -"sint-", -"@adonisjs/core", -"sint-quas", -[2,473,476], -[2,472,477], -[3,471,11], -"cum-rem-consequuntur", -[2,479,480], -"earum-sint-veritatis", -[2,479,482], -[3,483,12], -"ius-vero-dicta", -[2,484,485], -"st-dicta-quis", -[2,484,487], -"incidunt-quibusdam-tempore", -[2,479,489], -[3,490,12], -"taque-esse-accusamus", -[2,491,492], -"ure-optio-nihil", -[2,491,494], -"magni-amet-id", -[2,479,496], -[3,497,17], -"nisi-", -"aperiam", -[2,499,500], -[2,498,501], -[3,497,13], -"xime-voluptates-enim", -[2,503,504], -"nihil-ad-ratione", -[2,479,506], -[3,414,13], -[3,330,8], -"unde", -[2,509,510], -[2,508,511], -[2,479,512], -"-perferendis-culpa", -[2,389,514], -[2,479,515], -"reprehenderit-excepturi-sed", -[2,479,517], -"nam-", -"conse", -"quuntur", -[2,520,521], -[2,519,522], -[2,474,523], -[2,479,524], -[3,525,12], -"unt-officia-eligendi", -[2,526,527], -[3,528,16], -"volupta", -"tem-nobis", -[2,530,531], -[2,529,532], -"-vitae-reprehenderit", -[2,510,534], -[2,479,535], -"wafflejs", -[2,479,537], -"@homer0/prettier-plugin-jsdoc", -"@hookform/resolvers", -"@iamtraction/google-translate", -"@idux/cdk", -"@idux/c", -"omponents", -[2,543,544], -"@inquirer/core", -"@ionic/core", -"@isaacs/cliui", -"@istanbuljs/nyc-config-typescript", -"@itwin/itwinui-react", -"@jest/core", -"@jest/", -"types", -[2,552,553], -"@jsonforms/core", -[3,555,11], -"-renderers", -[2,29,557], -[2,556,558], -[2,556,89], -"@juigorg/nisi-molestiae-ut", -[3,561,9], -"sit-nam-neque", -[2,562,563], -"@jupyterlab/application", -"@kobedevi/sassdoc", -"@kollorg/dicta-itaque-nemo", -[3,567,9], -"nihil-", -"veniam-deserunt", -[2,569,570], -[2,568,571], -"@libphamton/chatfanpage", -[3,573,12], -"fb-group", -[2,574,575], -"@listr2/prompt-adapter-inquirer", -"@mantine/core", -[3,578,9], -"dates", -[2,579,580], -"hooks", -[2,579,582], -"modals", -[2,579,584], -"notifications", -[2,579,586], -"prism", -[2,579,588], -"style", -"s", -"styles", -[2,579,592], -"utils", -[2,579,594], -"@material-ui/core", -[3,596,13], -[2,597,45], -"@mat", -"hematikoi/jsonapi", -[2,599,600], -"@mdx-js/react", -"@microsoft/api-extractor", -[3,603,11], -"tsdoc", -[2,604,605], -"-config", -[2,606,607], -"@middy/core", -"@middy/", -"-json-body-parser", -[2,27,611], -[2,610,612], -"util", -[2,610,614], -"@ministryofjustice/frontend", -"@mswjs/interceptors", -"@mui/icons-material", -"@mui/", -"lab", -"@mui/lab", -[2,619,29], -"system", -[2,619,623], -"x-date-pickers", -[2,619,625], -"@neato/guider", -"@ng-doc/core", -[3,628,8], -"ui-kit", -[2,629,630], -[3,631,9], -[2,632,186], -"@nomicfoundation/hardhat-chai-matchers", -"@npmcli/arborist", -[3,635,8], -"map-workspaces", -[2,636,637], -"@augment-vir/common", -"node-gyp", -[2,636,640], -"run-script", -[2,636,642], -"@npmc", -"orp/marky-markdown", -[2,644,645], -"@npm", -"tuanmap/ex-vel-expedita-impedit", -[2,647,648], -[3,649,12], -"psychic-guide", -[2,650,651], -"recusandae-recusandae-nam-et", -[2,650,653], -"sed-quo-nemo-rerum", -[2,650,655], -"esse-velit-magnam", -[2,435,657], -[2,650,658], -"@nrwl/devkit", -"@nrwl/", -[2,3388,3399], -"@nrwl/tao", -"workspace", -[2,661,664], -"@nx/devkit", -"@nx/", -"esbuild", -[2,667,668], -"@nx/es", -"lint", -[2,670,671], -"@nx/e", -"xpress", -[2,673,674], -"js", -"@nx/js", -"nest", -"@nx/nest", -"nextra", -"ode", -"@nx/node", -[2,667,664], -"@oclif/command", -[3,684,9], -"nfig", -[2,685,686], -[2,685,23], -"@oclif/", -"plugin-help", -[2,689,690], -"@octokit/rest", -"@opentiny/vue", -"-render", -"less", -[2,694,695], -[2,693,696], -[3,697,14], -"theme", -[2,698,699], -"-mobile", -[2,700,701], -"@otterhttp/cookie", -[3,703,11], -"request", -[2,704,705], -[3,706,13], -"sponse", -[2,707,708], -"send", -[2,704,710], -"@pact-foundation/pact", -"@patrtorg/a-ad-expedita", -[3,713,12], -"ut-amet", -[2,714,715], -[3,713,11], -[3,373,10], -"vel-accusantium", -[2,718,719], -[2,717,720], -[3,721,15], -"natur-dolorum-ducimus", -[2,722,723], -"et-hic", -[2,473,725], -[2,717,726], -[3,713,10], -[3,227,12], -"culpa-non", -[2,729,730], -[2,728,731], -[3,732,22], -"repudiandae-consequuntur", -[2,733,734], -[3,732,15], -"quatur-voluptatum-officiis", -[2,736,737], -"ducimus-magni-quibusdam", -[2,728,739], -"enim-magni-hic", -[2,728,741], -[3,742,11], -"st-corrupti-deleniti", -[2,743,744], -"veni", -"et-tempore-maiores", -[2,746,747], -[2,743,748], -"illum-sapiente-quos", -[2,728,750], -"laborum-doloribus-voluptate", -[2,728,752], -[3,753,11], -"ibero-", -"doloribus-omnis", -[2,755,756], -[2,754,757], -[3,758,17], -[3,336,9], -"sequi", -[2,760,761], -[2,759,762], -"magn", -"am-aut-adipisci", -[2,764,765], -[2,728,766], -[3,767,12], -"iores-quidem-quo", -[2,768,769], -[3,767,11], -"olestias-molestias-ut", -[2,771,772], -"eius-unde", -[2,519,774], -[2,728,775], -[3,386,9], -"dele", -"niti-quaerat", -[2,778,779], -[2,777,780], -[2,728,781], -[3,782,11], -"orro-labore-eos", -[2,783,784], -"earum-", -"eius", -[2,786,787], -[2,416,788], -[2,728,789], -[3,790,12], -"os-quasi-ipsa", -[2,791,792], -"sapiente-eos-magnam", -[2,728,794], -[3,795,20], -"xercitationem-sit", -[2,796,797], -[3,431,9], -"nimi-reprehenderit", -[2,799,800], -[2,728,801], -"@perseid/store", -"@phosphor/widgets", -"@phun-ky/speccer", -"@polymer/polymer", -"@qooxdoo/framework", -"@quasar/extras", -"@readyplayerme/visage", -"@reduxjs/toolkit", -"@rollup/plugin-commonjs", -[3,811,15], -"node-", -"resolve", -[2,813,814], -[2,812,815], -"@sanity/tsdoc", -"@scalar/api-reference", -[3,818,8], -"fastify-api-reference", -[2,819,820], -"@serenity-js/protractor", -[3,822,13], -"webdriverio", -[2,823,824], -"@sinonjs/fake-timers", -"@storybook/addon-docs", -"@subwallet/react-ui", -"@supernovaio/sdk", -"-exporters", -[2,829,830], -[3,829,14], -"upernova-sdk", -[2,832,833], -"@sveltejs/eslint-config", -[3,835,10], -"kit", -[2,836,837], -"vite-plugin-svelte", -[2,836,839], -"@svgr/webpack", -"@swc/core", -"@swenkerorg/maiores-voluptatibus-nemo", -[3,843,13], -"odi-dolorum-provident", -[2,844,845], -[3,843,12], -"nulla-voluptates-voluptates", -[2,847,848], -"@swisspost/design-system-styles", -"@symbiotejs/symbiote", -"@synion/md-docs", -"@taktikorg/aut-distinctio-repellat", -[3,853,11], -"quo-quos", -[2,729,855], -[2,854,856], -[3,857,13], -"rporis-nihil-odit", -[2,858,859], -[3,780,11], -"i-dolorem", -[2,861,862], -[2,854,863], -[3,864,12], -"olor-", -"quibusdam", -[2,509,867], -[2,866,868], -[2,865,869], -"harum-reprehenderit-perferendis", -[2,854,871], -"illum-", -"accusamus-possimus", -[2,873,874], -[2,854,875], -[3,876,12], -"psa-", -"totam-aperiam", -[2,878,879], -[2,877,880], -"ste-", -"ex-tempore", -[2,882,883], -[2,877,884], -"taque-", -"nam-e", -"os", -"nam-eos", -[2,886,889], -[2,877,890], -[3,891,18], -"tempor", -"e-exercitationem", -[2,893,894], -[2,892,895], -"maiores-dolores-aut", -[2,854,897], -[3,898,12], -[3,772,9], -"fuga-", -[3,259,8], -[2,901,902], -[2,900,903], -[2,899,904], -"@bugsnag/react-native", -"@enact/sandstone", -"sse-animi", -[2,887,908], -[2,854,909], -[3,910,12], -"ecessitatibus-repudiandae-officia", -[2,911,912], -"isi-reprehenderit-amet", -[2,911,914], -"placeat-voluptates-dolorum", -[2,854,916], -[3,917,12], -"raesentium-dolorum-quis", -[2,918,919], -[3,920,23], -"neque-i", -"psam", -[2,922,923], -[2,921,924], -"quo-", -"reiciendis-quibusdam", -[2,926,927], -[2,854,928], -[3,653,12], -"atione-veniam", -[2,930,931], -[2,854,932], -"similique-natus-officia", -[2,854,934], -[3,935,12], -"uscipit-modi-ratione", -[2,936,937], -[3,895,8], -"@antora/logger", -"in", -"veniam-in", -[2,939,942], -[2,854,943], -"unde-", -"animi-omnis", -[2,945,946], -[2,854,947], -"nobis-blanditiis", -[2,435,949], -[2,854,950], -[3,951,12], -"oluptatem-pariatur-tenetur", -[2,952,953], -"@tanem/svg-injector", -"@tan", -"stack/react-query", -[2,956,957], -[3,958,10], -"svelte-query", -[2,959,960], -"@teamhanko/hanko-frontend-sdk", -"@testing-library/cypress", -[3,963,17], -"dom", -[2,964,965], -"jest-dom", -[2,964,967], -[3,968,22], -"native", -[2,969,970], -[2,964,89], -"user-event", -[2,964,973], -"@tinyhttp/app", -[3,975,10], -"cookie", -[2,976,977], -"-signature", -[2,978,979], -[3,978,12], -"rs", -[2,981,982], -"etag", -[2,976,984], -"forwarded", -[2,976,986], -"proxy-addr", -[2,976,988], -"req", -[2,976,990], -[3,991,12], -[2,992,591], -[3,991,11], -"outer", -[2,994,995], -[2,976,710], -"type", -[2,29611,30768], -"type-is", -[2,976,1000], -"url", -[2,976,1002], -"@tsparticles/engine", -"@twurple/ebs-helper", -"@types/estree", -"@types", -"cript-eslint/eslint-plugin", -[2,1007,1008], -[3,1009,19], -[2,1010,57], -[2,1010,594], -"@ucloud-fe/react-components", -"@udecode/plate-core", -"@uiw/react-button", -[3,1015,11], -"icon", -[2,1016,1017], -[3,1018,12], -"nput", -[2,1019,1020], -"overlay-trigger", -[2,1016,1022], -"@uiw/", -"@uiw/utils", -"@unleash/proxy", -"@uploadcare/file-uploader", -"@vitejs/plugin-legacy", -[3,1028,15], -[2,1029,89], -"@vue/eslint-config-typescript", -"@wesleytodd/openapi", -"@wuxh/dumi", -"@zitterorg/adipisci-quae-eius", -[3,1034,12], -"sper", -"natur-", -[3,386,10], -"ccaecati", -[2,1038,1039], -[2,1037,1040], -[2,1036,1041], -[2,1035,1042], -"t-esse-odit", -[2,1035,1044], -[3,1034,11], -"cum-", -"ipsum-beatae", -[2,1047,1048], -[2,1046,1049], -"dolor", -"emque-ut-omnis", -[2,1051,1052], -[2,1046,1053], -"est-sunt-quos", -[2,1046,1055], -[3,1056,12], -"um-veritatis-placeat", -[2,1057,1058], -"fluffy-waddle", -[2,1046,1060], -"glowing-barnacle", -[2,1046,1062], -"perferendis-consectetur", -[2,873,1064], -[2,1046,1065], -[3,1066,12], -"taque-n", -"isi-", -"veritatis", -[2,1069,1070], -[2,1068,1071], -[2,1067,1072], -"probable-octo", -[2,1046,1074], -"upgraded-fishstick", -[2,1046,1076], -"@zkportal/aleo-oracle-sdk", -"abort-controller", -"accepts", -"acl", -"acorn", -"arethetypeswrong", -"acorn-walk", -"action-cli", -"adm-zip", -"after", -"agenda", -"aid-guard1", -"airtap", -"ajv", -"ajv-formats", -"although-line-wall-corn", -"amqp", -"lib", -"amqplib", -"analsorhost-simple-bs", -"angular", -"-animate", -[2,1098,1099], -"angular-", -[2,1101,200], -[2,1101,29], -"ansi-colors", -"ansi-", -"escapes", -[2,1105,1106], -"regex", -"ansi-regex", -[2,1105,592], -"ansi", -"ansis", -"ant-design-vue", -"antd", -"antfu", -"anyway-south-boy-pilot", -"api-console", -"apidoc", -"-markdown", -[2,1118,1119], -"apn", -"apollo-cache-inmemory", -"apollo-c", -"lient", -[2,1123,1124], -"apollo-", -[2,1126,163], -"-http", -[2,1127,1128], -"app-root-path", -"appium-android-driver", -"apple-transportation-web3-locate", -"appl", -"icationinsights", -[2,1133,1134], -"appsync-client-node", -"archiver", -"arg", -"argparse", -"arrangement-tell-arrange", -"arra", -"y.prototype.flatmap", -[2,1141,1142], -"arrify", -"assert", -"-plus", -"assert-plus", -"assume", -"async", -"-listen", -[2,1149,1150], -"async-", -"retry", -"async-retry", -"validator", -[2,1152,1155], -"atob", -"aud", -"auto-changelog", -"auto-", -"install", -[2,1160,1161], -"auto", -"prefixer", -[2,1163,1164], -"ava", -"awesome-typescript-loader", -"aws-sdk", -"axe-core", -"axios", -"azure-storage", -"babel", -"babel-cli", -"babel-c", -"babel-core", -"babel-", -"eslint", -[2,1176,1177], -"generator", -[2,1176,1179], -[3,55,7], -"fixtures", -[2,1181,1182], -[2,1176,1183], -[3,1184,13], -"plugin-", -"test-runner", -[2,1186,1187], -[2,1185,1188], -"vue-jsx-merge-props", -[2,1185,1190], -"jest", -"babel-jest", -"loader", -[2,1176,1194], -"add-module-exports", -[2,1186,1196], -[2,1176,1197], -[3,1198,13], -"dynamic-import-node", -[2,1199,1200], -"external-helpers", -[2,1199,1202], -"import", -[2,1199,1204], -[3,1205,14], -"stanbul", -[2,1206,1207], -"lodash", -[2,1199,1209], -"module-resolver", -[2,1199,1211], -"name", -"d-asset-import", -[2,1213,1214], -[2,1199,1215], -[2,1199,80], -[3,1217,20], -"jsx", -[2,1218,1219], -[3,82,10], -"to-generator", -[2,1152,1222], -[2,1221,1223], -[2,1199,1224], -[3,1225,23], -"class", -"-properties", -[2,1227,1228], -[2,1226,1229], -"-legacy", -[2,70,1231], -[2,1226,1232], -"es2015-block-scoping", -[2,1226,1234], -[3,1235,30], -"module", -"s-commonjs", -[2,1237,1238], -[2,1236,1239], -"temp", -"late-literals", -[2,1241,1242], -[2,1236,1243], -[2,1226,77], -"react-", -"react-jsx", -[2,1226,1247], -[3,1248,29], -"remove-prop-types", -[2,1249,1250], -[3,1248,25], -[2,1252,1179], -[3,1248,24], -[2,1254,96], -"babel-p", -[2,1256,84], -"reset-", -"airbnb", -[2,1258,1259], -[2,1256,1260], -[3,1261,13], -"env", -[2,1262,1263], -[3,1264,14], -"s2015", -[2,1265,1266], -[2,1262,89], -"-app", -[2,1268,1269], -"stage-0", -[2,1262,1271], -[3,1272,19], -"1", -[2,1273,1274], -"2", -[2,1273,1276], -"3", -[2,1273,1278], -[2,1176,93], -"babel-r", -[2,1281,96], -"template", -[2,1176,1283], -"babel-t", -"raverse", -[2,1285,1286], -[2,1285,103], -"ify", -"babelify", -"babylon", -"backbone", -"baqend", -"bark-needs-visit4", -"base-64", -"base-", -"individual-comfortable-crop", -[2,1296,1297], -"base", -"@expressots/core", -"base64-js", -[2,30536,26449,2026], -"auth", -"basic-auth", -"batuta", -"bcrypt", -"-nodejs", -[2,1306,1307], -"bcryptjs", -"bearcat", -"beautify-benchmark", -"beaut", -"y-foot-compass5", -[2,1312,1313], -"beefy", -"believed-usually-greater-passage", -"benchmark", -"best-lips-shoulder", -"best-", -"valley2", -[2,1319,1320], -"between-cry-additional", -"beyond", -"bfj", -"bignumber.js", -"bindings", -"bip39", -"bizcharts", -"bl", -"blanket", -"blessed", -"-con", -"trib", -"-contrib", -[2,1331,1334], -"blockchain-am5", -[3,1336,11], -"baby", -[2,1337,1338], -[3,1339,13], -"ck1", -[2,1340,1341], -"closely", -[2,1337,1343], -"directly", -[2,1337,1345], -"egg", -[2,1337,1347], -"happily", -[2,1337,1349], -"language", -[2,1337,1351], -"own8", -[2,1337,1353], -"record", -[2,1337,1355], -"scientist", -[2,1337,1357], -"block", -"ed", -"blocked", -"bluebird", -"bn.js", -"body-parser", -"bookshelf", -"boom", -"bootstrap", -"-sass", -[2,1367,1368], -"bower", -"boxen", -"brain", -"branch-body-web3-feel", -"branch-", -"camera-web3-organization", -[2,1374,1375], -"brfs", -"broccoli-funnel", -[3,1378,9], -"merge-trees", -[2,1379,1380], -"test-", -"helper", -"test-helper", -[2,1379,1384], -"brought-tried-whether8", -"browser-sync", -"browser", -"browserify", -"-shim", -[2,1389,1390], -"slist", -[2,1388,1392], -"bs58", -"bson", -"btoa", -"buble", -"buffer", -"-equal", -[2,1398,1399], -"bufferutil", -"built-who-entire", -"built", -"in-modules", -[2,1403,1404], -"bulma", -"bump-cli", -"bundle-collapser", -"bunyan", -"busboy", -"bytebuffer", -"byte", -"bytes", -"c8", -"cac", -"cache-manager", -"call-bind", -[2,32731,158], -[2,30999,28513], -"camelcase", -"caniuse", -"-lite", -[2,1421,1422], -"canvas", -"careful-faster-dirty-matter", -"case-sensitive-paths-webpack-plugin", -"casperjs", -"caught-brain-service0", -"chai", -"-as-promised", -[2,1429,1430], -"chai-", -"passport-strategy", -[2,1432,1433], -"subset", -"chai-subset", -"chalk", -"chance", -"-able-necessary-bell", -[2,1438,1439], -"@amaui/icons-material-rounded-react", -[2,26909,26910], -"change-case", -"change", -[2,27056,28675], -"changelogen", -"chart.js", -"cheerio", -"chicken-fell-spread", -"child_process", -"child", -"-pro", -"cess-promise", -[2,1452,1453], -[2,1451,1454], -"choerodon-ui", -"chokidar", -"ci-info", -"ckeditor5", -"names", -"classnames", -"clean-css", -"clean-", -"webpack-plugin", -[2,1463,1464], -[2,29755,25720], -"r", -"clear", -"-module", -[2,1468,1469], -"cli-boxes", -"cli-", -"color", -"cli-color", -"@immobiliarelabs/backstage-plugin-gitlab-backend", -[2,819,28594], -"cli-cursor", -"spinner", -"cli-spinner", -[2,1479,591], -"cli-table", -"cli-table2", -"cli-table3", -"cli-t", -"runcate", -[2,1484,1485], -"ux", -"cli-ux", -"clipanion", -"clip", -"@busy-hour/blaze", -"clipboard", -"y", -"clipboardy", -"cliui", -"clone", -"clsx", -"clui", -"co", -"co-prompt", -"code", -[2,1491,3172], -"codecov", -"mirror", -"codemirror", -"coffee-script", -"coffee", -"script", -[2,1507,1508], -"attw", -"colorette", -"colors", -"columnify", -"comm", -"and-exists", -[2,1514,1515], -"command-", -"line-args", -[2,1517,1518], -[3,1519,13], -"usage", -[2,1520,1521], -"command", -"er", -"commander", -"@casl/ability", -"commitizen", -"commit", -"commitlint", -"@types/xast", -"tsdown", -"common-tags", -"component-emitter", -"comp", -[2,15679,26697], -"compression", -"concat-stream", -"conc", -"urrently", -[2,1538,1539], -"config", -"store", -"configstore", -"connect", -"-flash", -[2,1544,1545], -"connect-", -"history-api-fallback", -[2,1547,1548], -"mongo", -[2,1547,1550], -"redis", -[2,1547,1552], -"cons", -"globrex", -"consola", -"consol", -[3,1014,14], -"consolidate", -"content-disposition", -"content-", -[2,1561,998], -"content", -"hook", -"contenthook", -"conventional-changelog", -[2,1566,20], -[3,1567,24], -"onventionalcommits", -[2,1568,1569], -"conve", -"rt-source-map", -[2,1571,1572], -"-parser", -[2,977,1574], -"cookie-", -"session", -[2,1576,1577], -"cookie-s", -"ignature", -[2,1579,1580], -"copy-to-clipboard", -"copy-", -[2,1583,1464], -"copy", -"files", -"copyfiles", -"corcojs-qrcode", -"-logo", -[2,1588,1589], -"cordova", -"-js", -"core-js", -"cors", -"cosmiconfig", -"coveralls", -"cpy-cli", -"crawler", -"crc", -"create-hash", -"create-", -"react-class", -[2,1601,1602], -"critical", -"cron", -"croner", -"emoji-js", -"cronnor", -"cropperjs", -"cross-env", -"cross-", -"fetch", -"cross-fetch", -"spawn", -"cross-spawn", -"crypto", -"-browserify", -[2,1616,1617], -"crypto-", -"crypto-js", -"cson-parser", -"cspell", -"css", -"css-declaration-sorter", -"css-", -"functions-list", -[2,1625,1626], -"css-loader", -"minimizer-webpack-plugin", -[2,1625,1629], -"select", -"css-select", -"tree", -"css-tree", -"cssdb", -"cssesc", -"cssnano", -"cssstyle", -"csstype", -"csurf", -"csv", -"csv-generate", -"csv-", -"parse", -"csv-parse", -"stringify", -[2,1643,1646], -"csvtojson", -"cucumber", -"cuid", -"cypress", -"cz-conventional-changelog", -"d3", -"d3-array", -"d3-scale", -"d3-s", -"election", -[2,1656,1657], -"hape", -"d3-shape", -"dable-effect", -"daisyui", -"dance-you-thou", -"dargs", -"datafire", -"date", -"mercurius", -"date-fns", -"form", -"unbundle", -"format", -"dateformat", -"dayjs", -"deasync", -"debounce", -"debug", -"decamelize", -"@pinia/testing", -"decompress", -"dedent", -"dedupe", -"deep-assign", -"deep-", -"ist-ability3", -[2,1554,1684], -[2,1683,1685], -"diff", -"deep-diff", -"remeda", -"deep-eql", -"@nuxt/ui", -"input-otp", -"deep-equal", -"@assistant-ui/react", -"xtend", -"deep-extend", -"deep", -"merge", -"deepmerge", -"del", -"del-cli", -"delay", -"depcheck", -"depd", -"dependency-check", -"depth-clay-tax7", -"detect-indent", -"detect-", -"port", -"detect-port", -"did-enter-lay", -"2html", -"diff2html", -"erence-mile-pocket5", -[2,1687,1714], -"direct", -"ed-graph-typed", -[2,1716,1717], -"dirty-chai", -"discord-backend-manager", -"discord", -".js", -"discord.js", -"dist", -"ance-its-clear-rate", -[2,1724,1725], -"dmd", -"dmd-grunt-jsdoc2md", -"dnd-multi-backend", -"dnode", -"doc-detective", -"-core", -[2,1731,1732], -"docco", -"docgen", -"dockerode", -"docpad", -"docschema", -"docs", -"ify-tabs", -[2,1739,1740], -"doctoc", -"docu", -"mentation", -[2,1743,1744], -"document", -"db", -"documentdb", -"-lunr-search", -[2,467,1749], -"dom-helpers", -"dom-", -"serializer", -[2,1752,1753], -"to-image-more", -[2,1752,1755], -"dompurify", -"dot", -"dotenv", -"-exp", -[2,26024,1764,1524], -"-expand", -[2,1759,1762], -"download", -"-git-repo", -[2,1764,1765], -"doxdox", -[2,1767,20], -"doxdox-c", -[2,1769,147], -"doxdox-", -"-dox", -[2,57,1772], -[2,1771,1773], -[3,1774,14], -"jsdoc", -[2,1775,1776], -"renderer-bootstrap", -[2,1771,1778], -[3,1779,16], -"json", -[2,1780,1781], -"markdown", -[2,1780,1783], -"draft-js", -"dropzone", -"dtslint", -"dubnium", -"dumi", -[2,31436,31494], -"dumi-cm", -"duplexer", -"dw-neit-antd", -"each", -"echarts", -"eclint", -"ejs", -"elasticsearch", -"elect", -"ricity-death-web3-story", -[2,1799,1800], -[2,28004,28078], -"on", -"electron", -"-builder", -[2,1804,1805], -[3,1806,9], -"packager", -[2,1807,1808], -[3,1809,10], -"rebuilt", -[2,1810,1811], -[3,32493,21], -[2,28080,31811], -"rebuilder", -[2,1807,1815], -"element-resize-detector", -"element-", -"element-ui", -"eleventy", -"elliptic", -"email-templates", -"email", -"emailjs", -"ember-cli", -"-babel", -[2,1825,1826], -[3,1827,10], -"htmlbars", -[2,1828,1829], -"emmet", -"emotion", -"encodeurl", -"end-of-stream", -"enhanced-resolve", -"enquirer", -"ent", -"enumtype", -"envify", -"envi", -"@lobehub/chat", -"envinfo", -"enzyme", -"-adapter-react-16", -[2,1843,1844], -[3,1845,15], -[2,1846,594], -"enzyme-", -"shallow-equal", -[2,1848,1849], -"error", -"handler", -[2,1851,1852], -"es-check", -"es-value-fixtures", -"es5-ext", -"@upstash/context7-mcp", -"shim", -"es5-shim", -"es6-error", -"es6-", -"promise", -"es6-promise", -[3,1863,10], -[2,1864,1289], -"es6-shim", -"escape", -"-html", -"escape-html", -"escape-", -"string", -"-regexp", -[2,1871,1872], -[2,1870,1873], -"escodegen", -[3,67,7], -"-airbnb", -[2,1541,1877], -[2,1876,1878], -"-base", -[2,1879,1880], -[3,1881,21], -[2,1882,91], -[3,1879,14], -"google", -[2,1884,1885], -[3,1886,15], -"ulp", -[2,1887,1888], -"oclif", -[2,1884,1890], -"-typescript", -[2,1891,1892], -"prettier", -[2,1884,1894], -"app", -"react-app", -[2,1884,1897], -"semistandard", -[2,1884,1899], -[3,1900,15], -"tandard", -[2,1901,1902], -"unjs", -[2,1884,1904], -"xo", -[2,1884,1906], -"-lass", -[2,1907,1908], -"doc-", -[2,1910,1179], -[2,1876,1911], -"-resolver-typescript", -[2,1204,1913], -[2,1876,1914], -[2,1876,1194], -[3,67,8], -[2,32825,32833], -"lugin-ava", -[2,1917,1919], -[3,1920,14], -[2,1921,1172], -"compat", -[2,1921,1923], -"es5", -[2,1921,1925], -[3,1926,16], -"-comments", -[2,671,1928], -[2,1927,1929], -[3,1930,21], -"plugin", -[2,1931,1932], -"flowtype", -[2,1921,1934], -"html", -[2,1921,1936], -[2,1921,1204], -[2,1921,1192], -[3,1939,15], -"sdoc", -[2,1940,1941], -[3,1942,16], -"onc", -[2,1943,1944], -"x-a11y", -[2,1943,1946], -[2,1921,1783], -[3,1948,15], -"ocha", -[2,1949,1950], -"n", -[2,1921,1952], -[2,1953,681], -[2,1921,1894], -[3,1955,16], -"omise", -[2,1956,1957], -[2,1921,89], -"-hooks", -[2,1959,1960], -[3,1959,16], -"gexp", -[2,1962,1963], -"security", -[2,1921,1965], -[3,1966,15], -"onarjs", -[2,1967,1968], -[2,1967,1902], -"velte", -[2,1967,1971], -"test", -"ing-library", -[2,1973,1974], -[2,1921,1975], -[3,1976,15], -[2,1977,1941], -[2,26374,26377], -[2,30307,5592], -"unicorn", -[2,1921,1981], -"vite", -"vitest", -[2,1921,1984], -[3,1985,15], -"ue", -[2,1986,1987], -"remo", -"te-tester", -[2,1989,1990], -[2,1876,1991], -"scope", -[2,1876,1993], -"visitor-keys", -[2,1876,1995], -"rc", -"eslintrc", -"esm", -"espree", -"@architect/asap", -"ima", -"esprima", -"estraverse", -"estr", -"ee-walker", -[2,2005,2006], -"ethereumjs-tx", -[3,2008,11], -[2,2009,614], -"evalmd", -"event-stream", -"event", -"emitter2", -[2,2013,2014], -[3,2015,12], -[2,2016,1278], -"events", -"excellent-difficult-good", -"execa", -"exit", -"expect", -"-type", -"expect-type", -"expect.js", -"express", -"-adexe", -[2,2026,2027], -[3,2028,9], -"utodoc", -[2,2029,2030], -"express-", -[2,2032,1179], -"handle", -"canvaskit-wasm", -"handlebars", -[2,2032,2036], -"jwt", -"express-jwt", -[2,2032,1577], -"tools", -[2,2032,2041], -[3,2042,9], -"yped-rpc", -[2,2043,2044], -[2,2032,1155], -"zod-api", -[2,2032,2047], -"@crxjs/vite-plugin", -[2,32904,37123], -"extend", -"-shallow", -[2,2051,2052], -"extract-text-webpack-plugin", -"extract-", -"zip", -"extract-zip", -"facing-cook", -"fair-tower-web3-store", -"faker", -"fancy-log", -"fast", -"-check", -"fast-check", -[2,32904,13392], -"@antora/cli", -"fast-csv", -"fast-", -[2,2068,1693], -"glob", -"fast-glob", -"plist", -"fast-plist", -"xml-parser", -[2,2068,2074], -"click", -"fastclick", -"fastify", -"father", -"faucet", -"fbjs", -"fe-pilot", -"feature-rising-small7", -"femo", -"-mock", -"fetch-mock", -"fibers", -"figlet", -"figures", -"file", -"-loader", -"file-loader", -"file-", -[2,29611,7436,26391], -"file-saver", -"file-type", -"planck", -"filesize", -"finalhandler", -"find", -"-cache-dir", -[2,2100,2101], -"find-", -"up", -"find-up", -"syncpack", -"findup-sync", -"firan-logging", -"firebase", -"-admin", -[2,2109,2110], -[3,2111,9], -[2,2112,2041], -"fixpack", -[2,2120,1145], -"fixturify", -"flat", -"pak-bundler", -[2,2117,2118], -[3,639,13], -[2,2125,23], -"flatpickr", -"flightplan", -"flow", -[3,639,15], -"flow-bin", -"@date-vir/duration", -"flowbite", -"fluent-ffmpeg", -"flux", -"follow-redirects", -"font-awesome", -"for-each", -"forever", -"fork-ts-checker-webpack-plugin", -"-alt", -[2,2135,2136], -"-data", -"form-data", -"nolyfill", -"formidable", -[2,13402,31197], -"k", -"formik", -"fresh", -"-dangerous", -[2,2145,2146], -"friendly-errors-webpack-plugin", -"front-matter", -"fs", -"fs-extra", -"fs-jetpack", -"fs-promise", -"fsevents", -"fstream", -"ftp", -[3,1626,10], -"have-names", -[2,2157,2158], -"fur-race-web3-pale", -"fuse.js", -"futen", -"fuzzy", -"gaze", -"gc-signals", -"-angular", -[2,1179,2166], -[3,2167,10], -"gulp-angular", -[2,2168,2169], -"nitro", -[2,2168,2171], -"gener", -"ic-pool", -[2,2173,2174], -"gensequence", -"gentle-party-other", -"geolib", -"get-package-type", -[2,2181,668], -[3,15376,16], -"get-port", -"get-", -"stdin", -"get-stdin", -"@c15t/backend", -"ream", -"get-stream", -"execute-in-browser", -"tsconfig", -[2,2183,2190], -"getmac", -"gh-pages", -"ghooks", -"github", -"-buttons", -[2,2195,2196], -[2,11941,2201], -"-parent", -"glob-parent", -"smart-text-reporter", -"global", -"globals", -"by", -"globby", -"gm", -"gmll", -"-spreadsheet", -[2,1885,2208], -"apis", -"googleapis", -"got", -"government-letter-web3-till", -"govuk-frontend", -"graceful-fs", -"gradually-current-chief", -"graph-these", -"graph", -[2,25849,25854], -"graphql", -"leaflet-gesture-handling", -"graphql-tag", -[3,2222,9], -"ools", -[2,2223,2224], -"gray-matter", -"grpc", -"grunt", -"-templates", -[2,2166,2229], -[2,2228,2230], -"grunt-a", -"uto-release", -[2,2232,2233], -"grunt-", -[2,2235,1389], -"grunt-b", -"animejs", -"grunt-bump", -"grunt-cli", -"grunt-c", -"oncurrent", -[2,2241,2242], -[3,2243,9], -[2,26107,26938], -"trib-clean", -[2,2244,2246], -[3,2247,15], -"ompass", -[2,2248,2249], -[3,2250,16], -"ncat", -[2,2251,2252], -[3,2253,17], -"nect", -[2,2254,2255], -"py", -[2,2251,2257], -"sslint", -[2,2248,2259], -[3,2260,17], -"min", -[2,2261,2262], -[3,2247,14], -"htmlmin", -[2,2264,2265], -"imagemin", -[2,2264,2267], -[3,2268,15], -"nternal", -[2,2269,2270], -"jshint", -[2,2264,2272], -[2,2264,695], -"unit", -"nodeunit", -[2,2264,2276], -"sass", -[2,2264,2278], -"uglify", -[2,2264,2280], -"watch", -[2,2264,2282], -"ventional-changelog", -[2,2244,2284], -[3,2285,19], -"github-", -"releaser", -[2,2287,2288], -[2,2286,2289], -[2,2235,1177], -"jscs", -"grunt-jscs", -"grunt-js", -"doc", -"grunt-jsdoc", -"karma", -"grunt-karma", -"mocha-test", -[2,2235,2299], -"newer", -"grunt-newer", -"grunt-n", -"otify", -[2,2303,2304], -"pm", -"grunt-npm", -"grunt-sass", -"grunt-sa", -"ucelabs", -[2,2309,2310], -"grunt-s", -"augment", -"grunt-shell", -"imple-mocha", -[2,2312,2315], -"pritesmith", -[2,2312,2317], -"usemin", -[2,2235,2319], -"gts", -"guarapi", -"gulp", -[3,2229,9], -"cache", -[2,2324,2325], -[2,2169,2326], -"gulp-a", -"tom-electron", -[2,2328,2329], -"utoprefixer", -[2,2328,2331], -"wspublish", -[2,2328,2333], -"zure-storage", -[2,2328,2335], -"gulp-", -"gulp-babel", -"gulp-b", -"vir", -"gulp-bom", -[1,2343,2349], -[0,4796,4797,4798,4799], -"gulp-bower", -"rowserify", -[2,2339,2345], -"uffer", -"gulp-buffer", -[0,2358,2380,2388,2399], -"augment-vir", -"gulp-bump", -"gulp-cache", -"d", -"gulp-cached", -"gulp-c", -"hanged", -[2,2355,2356], -[0,1673,4484,4809,1461,3744,4804,1282,4805,4806,3028,3911,4812,2609,3849,4023,4808], -"gulp-clean", -"-css", -[2,2359,2360], -"@flmngr/flmngr-react", -"gulp-coffee", -"gulp-co", -"mpass", -[2,2364,2365], -"gulp-concat", -[2,2367,2360], -"gulp-con", -"flict", -[2,2369,2370], -[2,2369,2255], -"gulp-copy", -"sscomb", -[2,2355,2374], -"gulp-css", -[2,2376,671], -"nano", -[2,2376,2378], -[0,1499,1797,3135,1429,2070,695,2278,1983,1437,2675,4868,2297,2899,89,3875,4193,4747,1843,1177,1209,3220,3984,4135,4487,4568,1448,1651,668,3561,4474,2924,1169,1457,1859,2151,2720,3183,3416,1894,4952,4473,4955,4860,2025,4919,3758,4929,3817,3824,4939,4320,4469,4873,1175,1628,4937,4941,91,53,4856,4865,4874,2900,2990,3105,4925,3876,4869,4880,4892,1165,1178,1195,3008,3090,3564,3696,3884,4307,4705,692,4855,4863,4870,2925,4931,4891,1257,3613,3618,4940,4330,192,4864,4866,4907,3816,4934,606,4883,4890,1264,4909,4917,3734,3885,4824,4831,4852,4859,4923,4835,4884,1268,3107,4681,4840,4875,1959,1978,2923,3904,4820,4827,1030,4895,1272,4913,1938,4817,4842,1208,4916,2881,1566,32965,1895,1947,1948,2921,4815,4872,4887,1845,3810,3820,4822,4851,4912,4922,3591,4829,1011,3584,4889,4927,2054,4949,4849,4946,33009,4882,1255,1198,4897,4879,1009,1426,4899,4903,61,1233,1570,4906], -"gulp-csso", -"data", -"gulp-data", -"gulp-eslint", -"include", -[2,2093,2385], -[2,2337,2386], -[0,4957,4959,3286,4627,4960,89,4962,4963,4964,4967], -"ter", -"gulp-filter", -"gulp-f", -"latmap", -[2,2391,2392], -[3,2393,9], -"ten", -[2,2394,2395], -"ormat-md", -[2,2391,2397], -1772064000000, -"gulp-ftp", -[2,2337,2193], -[1,2343,2418], -"it", -"gulp-git", -"gulp-gzip", -[2,2337,2036], -"gulp-h", -"eader", -"gulp-header", -"tml-replace", -[2,2407,2410], -[3,2411,9], -[2,2412,2262], -"font", -"iconfont", -[2,2337,2415], -"gulp-i", -[0,2431,0,2442,2443], -"gulp-if", -"gnore", -"gulp-ignore", -"mage-resize", -[2,2417,2422], -[3,2423,10], -[2,2424,2262], -"nclude", -[2,2417,2426], -"gulp-in", -"ject", -"gulp-inject", -[0,1091,4094,3530,4227,1092,2858], -"line-css", -[2,2428,2432], -"stall", -[2,2428,2434], -[2,2417,1207], -"jade", -"gulp-jade", -"gulp-ja", -"smine", -[2,2439,2440], -[0,4973,4976,1098,364,4977,4978], -1771804800000, -"gulp-jscs", -"gulp-js", -"hint", -"gulp-jshint", -"on-editor", -[2,2445,2448], -"gulp-less", -"gulp-l", -"ivereload", -[2,2451,2452], -"oad-plugins", -[2,2451,2454], -"mini", -[1,2343,2470], -"minify-css", -[2,2337,2458], -[3,2459,12], -[2,2460,1936], -"gulp-m", -"gulp-mocha", -"gulp-newer", -"gulp-n", -"g-annotate", -[2,2465,2466], -"odemon", -[2,2465,2468], -[0,2471,0,2483,34352], -[0,3467,4094,2858,3090,4], -"gulp-notify", -"extra", -"extras", -[2,1186,2474], -[2,2337,2475], -"gulp-plu", -"mber", -[2,2477,2478], -"gulp-p", -"ostcss", -[2,2480,2481], -[0,4973,4976,1098,4986,4988,4977,4989,6,4978,1283,4991], -"ocess", -"reprocess", -[2,2480,2485], -1770508800000, -[1,2343,2497], -"gulp-prompt", -[2,2337,89], -"gulp-re", -"mote-src", -[2,2491,2492], -"gulp-rename", -"place", -[2,2491,2495], -[0,2513,0,2514,2523], -"gulp-rev", -"-replace", -[2,2498,2499], -"gulp-r", -"uby-sass", -[2,2501,2502], -"gulp-sass", -"gulp-s", -"gulp-sftp", -"gulp-shell", -"gulp-size", -"ourcemaps", -[2,2505,2509], -"trip-debug", -[2,2505,2511], -[0,4484], -[0], -"gulp-stylus", -"vg-sprite", -[2,2505,2516], -"gulp-svg", -"gulp-svgmin", -[2,2518,1542], -[2,2337,1283], -"gulp-t", -1771113600000, -"gulp-tsb", -"gulp-ts", -[2,2525,671], -"cript", -"ypescript", -[2,2522,2528], -"gulp-uglify", -[1,2343,2532], -[0,2534,0,2535,2537], -"gulp-uncss", -[0,4484,3493], -[0,1098,12,4627,5001,837], -"gulp-usemin", -1771718400000, -"ref", -"gulp-useref", -[1,2343,2561], -"gulp-util", -"vinyl-zip", -[2,2337,2542], -"gulp-watch", -"gulp-w", -"ebpack", -[2,2545,2546], -"gulp-web", -[2,2548,36], -"gulp-zip", -".spritesmith", -[2,2323,2551], -"gzip-size", -"hallmark", -"hammerjs", -"hapi", -[2,5323,33498], -[2,5340,6374], -"happy-dom", -"happy-", -[0,2513,0,2514,2537], -"happy-meant", -"hard-cool-rhythm-continued", -"has-flag", -"has-", -"parts-ice-fact", -[2,2565,2566], -"symbols", -"has-symbols", -"hash-sum", -"hasown", -"hast-util-raw", -[3,2572,10], -"sanitize", -[2,2573,2574], -[3,2575,11], -[2,2576,1799], -"to-estree", -[2,2573,2578], -[3,2579,13], -[2,2580,1936], -"jsx-runtime", -[2,2580,2582], -[2,2580,1871], -"text", -[2,2580,2585], -"hast", -"hastscript", -"hay-against-any-hurry", -"hbs", -"he", -"heapdump", -"helmet", -"heroicons", -"hexlet-pairs", -"hexo", -"highland", -"highl", -"ight.js", -[2,2598,2599], -"hiredis", -"history", -"history-", -"brass-sound", -[2,2603,2604], -"hit-running-special8", -"hoek", -"hogan.js", -"hoist-non-react-statics", -"homebridge", -"hono", -"hope-slight-walk1", -"hosted-git-info", -"how-to-npm", -"-dom-parser", -[2,1936,2615], -"html-", -"attributes", -[2,1818,2618], -[2,2617,2619], -"html-e", -"ncoding-sniffer", -[2,2621,2622], -"html-en", -"tities", -[2,2624,2625], -"scaper", -[2,2621,2627], -"html-loader", -[1,2343,2647], -"ier", -"minifier", -[2,2617,2632], -"-terser", -[2,2633,2634], -"pdf", -"html-pdf", -[2,1246,57], -[2,2617,2638], -"tags", -"html-tags", -"html-t", -"o-image", -[2,2642,2643], -"html-to-", -[2,2645,2585], -[0,2648,2667,2684,2537], -[0,4484,4747,4135,1457,53,3951,1573,5012], -"validate", -[2,2617,2649], -[2,2617,1464], -"htmlnano", -"parser2", -"htmlparser2", -"http-", -"errors", -"http-errors", -"proxy", -"http-proxy", -"-agent", -[2,2659,2660], -[3,2661,11], -"middleware", -[2,2662,2663], -[2,2655,36], -"http-s", -[0,91], -"http-status", -"-codes", -[2,2668,2669], -"https", -"xy-agent", -[2,1452,2672], -[2,2671,2673], -"husky", -"hyperquest", -"hyphenate-style-name", -"i", -"i18n", -"ext", -"i18next", -"-gridly-backend", -[2,2681,2682], -[0,1098,4643], -"iconv-lite", -"identity-obj-proxy", -"ignore", -[1,2343,2690], -"image-size", -[0,2691,0,2514,2443], -[0,4484,26364], -"imagemagick", -"-pngquant", -[2,2267,2693], -"imap", -"immer", -"immutability-helper", -[1,2343,2705], -"le", -"immutable", -"import-", -[2,2701,2145], -"local", -[2,2701,2703], -[0,2513,0,2736,34352], -"ess", -"impress", -"in-publish", -"indent-string", -"inert", -"inferno", -"inflection", -"inherits", -"ini", -"iniparser", -"ink", -"-style-parser", -[2,134,2717], -"innosetup-compiler", -"inquirer", -"-autocomplete-prompt", -[2,2720,2721], -"inside-throw", -"insta", -"gram-node", -[2,2724,2725], -"interpret", -"intl", -"-tel-input", -[2,2728,2729], -"invariant", -"inversify", -"ionic", -[2,34017,34020], -"ionicons", -[0,1098,29,5027,4963], -[1,2343,2773], -"ioredis", -"ip", -"irc", -"is", -"is-ci", -"is-glob", -"is-installed-globally", -"is-plain-obj", -"ect", -[2,2745,2746], -"is-p", -"otential-custom-element-name", -[2,2748,2749], -"romise", -"is-promise", -"is-stream", -"is-url", -"is-wsl", -"isarray", -"isobject", -"isomorphic-fetch", -"istanbul", -"itwcw-package-analytics", -"iview", -"jackspeak", -"jake", -"jarallax", -"jasmine", -[2,2765,1732], -"jasmine-", -[2,2767,202], -"jest-", -"canvas-mock", -[2,2769,2770], -"jest-c", -[0,2513,0,2514,2487], -"jest-cli", -[1,2343,2776], -[0,2789,0,2514,2537], -"jest-diff", -"ronment-jsdom", -[2,1840,2778], -[2,2769,2779], -"-fourteen", -[2,2780,2781], -[3,2780,17], -[2,2783,202], -"jest-e", -"xtended", -[2,2785,2786], -"html-re", -[0,5038,4484], -"porters", -[2,2788,2790], -[2,2769,2791], -"junit", -"jest-junit", -"pnp-resolver", -[2,2769,2795], -[2,2769,814], -"jest-util", -[1,2343,2803], -"-typeahead", -[2,2282,2800], -[2,2769,2801], -[0,2513,2804,2815,2399], -[0,2734], -"jest-worker", -"jimp", -"jiti", -"jodit", -"-react", -"jodit-react", -"johnny-five", -"joi", -"jotai", -"jquery", -[0,1098,38], -"jquery-ui", -"js-base64", -[1,2343,2819], -[0,2830,2836,2837,2523], -"js-beautify", -"js-cookie", -"js-yaml", -"jsarch", -"jscpd", -"-api", -"jsdoc-api", -"jsdoc-", -"to-markdown", -[2,2827,2828], -[0,1673,3789,1461,1282,5060,5071,6476,5057,5059,5062,5065,5049,5050,5069,5047], -"m", -"jsdom", -"-no-contextify", -[2,2832,2833], -"jsesc", -[0,1114,2070,1192,89,1177,4487,5098,4468,3213,1610,5102,3824,1193,5100,3697,3846,91,53,5087,2990,5125,4880,1178,1540,3857,97,5123,5076,5090,5091,5094,5108,5113,3904,5106,5121,5097,5084,6498,3810,5115,5082,1011,971,5110,5085,5075,5118,5103,5079], -[0,5127,4964,89,5128,4627,4963,181,5130,4967,5131,5133], -"-stylish", -[2,2272,2838], -[1,2343,2868], -"json-2-csv", -"json-", -"json-loader", -[3,6,6], -"json-schema", -"json-s", -"erver", -"json-server", -"-stringify", -[2,176,2849], -[2,2846,2850], -"json-st", -"ringify-safe", -[2,2852,2853], -"5", -"json5", -"c-parser", -[2,1781,2857], -"jsonfile", -"jsonschema", -"JSONStream", -"webtoken", -[2,1781,2862], -"jspm", -"jstates", -"jszip", -"jwt-decode", -[0,2884,2901,2938,2537], -"simple", -"jwt-simple", -[2,2297,1617], -[3,2871,13], -"stack", -"-launcher", -[2,2873,2874], -[2,2872,2875], -"karma-", -"karma-chai", -"karma-ch", -"rome-launcher", -[2,2879,2880], -"karma-c", -"over", -[0,3021], -"overage", -[2,2882,2885], -"browsers", -[2,1708,2887], -[2,2877,2888], -"edge-launcher", -[2,2877,2890], -"fire", -"fox-launcher", -[2,2892,2893], -[2,2877,2894], -"ie-launcher", -[2,2877,2896], -[2,2877,2765], -"mocha", -"karma-mocha", -[0,1114,89,2079,3824,91,4880,5139,4883], -"orter", -"-reporter", -[2,2900,2903], -"phantomjs-launcher", -[2,2877,2905], -"qunit", -"karma-qunit", -"rollup-preprocessor", -[2,2877,2909], -"safari-launcher", -[2,2877,2911], -"karma-sa", -"uce-launcher", -[2,2913,2914], -"karma-s", -"inon", -"karma-sinon", -"ourcemap", -[2,2919,2091], -[2,2916,2920], -"pec-reporter", -[2,2916,2922], -"webpack", -[2,2877,2924], -"keycode", -"keypress", -"keyv", -"kleur", -"knex", -"knip", -"known-css-properties", -"knox", -"koa", -"koa-body", -[2,2935,57], -"koa-", -[0,5127,4964,4653,1114,4627,4963,5130,4967,89,5128,181], -[1,2343,2974], -"compose", -"koa-compose", -"logger", -"koa-logger", -"mount", -"koa-mount", -[2,2937,38], -"static", -"koa-static", -"kue", -"label-lungs-court4", -"-perfe", -"ctly-blow-series", -[2,2951,2952], -[2,1351,2953], -"late-", -"dress-mail5", -[2,2955,2956], -"late", -"st-version", -[2,2958,2959], -"lazy.js", -"lead-alike-web3-applied", -"leaflet", -"left-pad", -"left", -"pad", -"leftpad", -"lerna", -[2,695,2091], -"level", -"down", -"leveldown", -"levelup", -[0,2985,2988,3011,2523], -"leven", -"libnpmdiff", -"libnpm", -"exec", -"libnpmexec", -"fund", -"libnpmfund", -"libphonenumber-js", -"liftoff", -"lilconfig", -[0,1461,5145,5146], -"linkifyjs", -"lint-", -[0,1114,2070,89,2079,3824,91,4880,4883], -"staged", -"lint-staged", -"listr", -"listr2", -"lit-element", -"lite", -"-server", -"lite-server", -"live-server", -"live", -"reload", -"livereload", -"load", -"-grunt-config", -[2,3001,3002], -[3,3003,11], -"tasks", -[2,3004,3005], -"-utils", -[2,1194,3007], -"-web-server", -[2,2703,3009], -[0,5127,4964,4653,1114,4627,4963,5130,4967,89,5128,181,1017], -"localforage", -"tunnel", -"localtunnel", -"lock", -[1,2343,3017], -[0,3075,3100,3104,2537], -"file-lint", -[2,3015,3018], -"-es", -"lodash-es", -".assign", -[2,1209,3022], -"lodash.", -[2,3024,1420], -"lodash.c", -"lonedeep", -[2,3026,3027], -[2,3024,1675], -[3,3029,9], -"faults", -[2,3030,3031], -"flatten", -[2,3024,3033], -"lodash.f", -"oreach", -[2,3035,3036], -"get", -"lodash.get", -"isempty", -[2,3024,3040], -[3,3041,10], -"qual", -[2,3042,3043], -[3,3041,9], -"function", -[2,3045,3046], -"object", -[2,3045,3048], -"plainobject", -[2,3045,3050], -[2,3045,1871], -"map", -"lodash.map", -"lodash.m", -"emoize", -[2,3055,3056], -[3,3057,9], -"rge", -[2,3058,3059], -"omit", -"lodash.omit", -"pick", -"lodash.pick", -"set", -"lodash.set", -[2,3024,1283], -"lodash.t", -"hrottle", -[2,3068,3069], -"uniq", -"lodash.uniq", -"log", -"log-symbols", -[0,5154,5152], -"update", -"log-update", -"log4js", -"loglevel", -"long", -"loopback", -"loose-envify", -"lowdb", -"lru-cache", -"lucide", -"luck-rubber-do", -"lwip", -"lws", -"madwizard", -"magic-string", -"magmastream", -"main-bower-files", -"make-dir", -"make-", -"make-node", -"mammoth", -"manifest", -"mantine-contextmenu", -"many-favorite6", -[0,4484,3709,4508,4355,838,5160,5159,4514,5162,840], -"stream", -"map-stream", -"mapboxgl-legend", -[0,5165,5166,2038,5167,3424,5168,5170,3709], -"markdown-it", -"-anchor", -[2,3105,3106], -[3,3107,12], -"cont", -[1,2343,3168], -"container", -[2,3108,3111], -"emoji", -[2,3108,3113], -[3,3105,9], -[2,3115,2636], -[2,3115,176], -[3,3117,10], -"o-jsx", -[2,3118,3119], -[3,3120,11], -"c", -[2,3121,3122], -[2,1783,671], -[2,3124,20], -"mark", -"marked", -"y-markdown", -[2,3126,3128], -"matcha", -[3,558,9], -[2,3131,181], -"mathjs", -"matter-view-web3-fence", -"md5", -"md5-file", -"mdast-util-from-markdown", -[3,3137,11], -"to-hast", -[2,3138,3139], -"mdn-data", -"mdxts", -"memcached", -"memfs", -"memoize-one", -"memo", -"ry-cache", -[2,3146,3147], -"memory-", -"memory-fs", -"memory", -[2,3151,3101], -"memwatch", -"menta", -"l-oxygen-dozen", -[2,3154,3155], -"meow", -"merge-", -[2,3158,3101], -"metalsmith", -"meteor", -"method-override", -"method", -"methods", -"microbundle", -"micro", -"micromark", -[0,3169,3179,3182,2537], -[0,2070,4207,3093,1525,1573,5175,5180], -"micromatch", -"mime", -"-types", -"mime-types", -"min-heap-typed", -"-extract-plugin", -[2,2360,3175], -[2,2456,3176], -"minify", -[0,4135,53,4865,5185,5191], -"atch", -"minimatch", -[0,5193,1172,5194,5197,5198,1173,4643], -"minimist", -"-jet-printed-supper", -[2,1504,3184], -"missing-sport-living", -"mkcert", -"mkdirp", -"mlly", -"mobx", -"mobx-react", -"mocha-", -"head", -"less-", -"chrome", -"less-chrome", -[2,3193,3196], -[2,3192,3197], -[2,2793,2903], -[2,3192,3199], -"lcov-reporter", -[2,3192,3201], -"mock-fs", -"mock-", -"property", -[2,3204,3205], -[1,2343,3208], -[0,3214,3217,2514,2537], -"require", -[2,3204,3209], -"mock-stdin", -"mock", -"mockdate", -[0,9673,3527,5279], -"mockery", -"mockjs", -[0,5282,4294,5210], -[2,3224,3225], -"moleculer", -"moment", -"-timezone", -[2,3220,3221], -"monaco-yaml", -[3,5838,28], -"xp-modifiers", -"monads-io", -"ress", -"-express", -[2,1550,3228], -"mongodb", -"ose", -"mongoose", -"monitor", -"-dashboard", -[2,3233,3234], -"monk", -"morgan", -"motor-positive-spirit", -"move-wolf-throughout", -"movie-obtain-tail-prepare", -"mqtt", -"ms", -"mssql", -"msw", -"mud-slowly-five3", -"multer", -[1,2343,3248], -[0,3252,3269,3272,2537], -"multimatch", -"multi", -"part", -[0,1676,2856,4135,5233,104,58,5228,5230,101,5216,51,1573,31292,5226,5222], -"multiparty", -"multip", -"le-cucumber-html-reporter", -[2,3254,3255], -"mustache", -"muuri", -"mysql", -"mysql2", -"mz", -"nails-wild-interest-garden", -"nan", -"nano-css", -"id", -"nanoid", -"-keymap", -[2,970,3267], -[0,4494,4039,4474,5245,5254,5251,87,92,5235,5180,5244,5240,5241,5191], -"nativefier", -[2,970,1508], -[0,5193,1172,5256,5257,5194,5258,5259,5260,5197,5198,5261,1175,4643], -"natural", -"nconf", -"ncp", -"near-social-bridge", -"nedb", -"needle", -[1,2343,3280], -[0,0,3293,2514,2523], -"-commander", -[2,678,3281], -"newman", -"newrelic", -"next-auth", -"next", -"nextjs", -"ng-mocks", -"ng-zorro-antd", -"ngrok", -"nib", -"nightmare", -[0,53], -"nightwatch", -"nine-yes-merely6", -"nise", -"nock", -"addon-api", -[2,813,3298], -"node-cache", -"node-c", -"ontainerpattern", -[2,3301,3302], -"dev", -"node-dev", -"node-d", -[1,2343,3311], -"node-dir", -"node-emoji", -"node-fetch", -[0,3328,3338,3398,2523], -"orge", -"node-forge", -"node-g", -"toolchain", -"node-gcm", -"eocoder", -[2,3314,3317], -"JSONC", -"arser", -"html-parser", -[2,813,3321], -"inspector", -[2,813,3323], -"JSX", -"mocks-http", -[2,813,3326], -[0,104], -"notifier", -[2,813,3329], -"oauth2-server", -[2,813,3331], -"powertools", -[2,813,3333], -"node-p", -"re-gyp", -[2,3335,3336], -[0,5282,51,5274,5276,5279,5273], -"node-pty", -"node-re", -"node-red", -"node-sass", -"node-s", -"chedule", -[2,3343,3344], -"tatic", -"node-static", -"uuid", -"node-uuid", -"node-watch", -"node-w", -"indows", -[2,3351,3352], -"xlsx", -"node-xlsx", -".extend", -[2,202,3356], -"git", -"nodegit", -"mailer", -"nodemailer", -"TSX", -"nodemon", -"webkit", -"nodewebkit", -"nolangjs", -"nomnom", -"nopt", -"normalize-path", -[3,3369,10], -[2,3370,1002], -"wheel", -[2,3370,3372], -[3,3369,9], -".css", -[2,3374,3375], -"np", -"npm", -"npm-check", -"-updates", -[2,3379,3380], -"npm-", -"package", -"GraphQL", -"package-arg", -[2,3382,3385], -[3,3386,12], -[3,4786,24], -"json-lint", -[2,3387,3389], -"npm-pack", -"list", -[2,3391,3392], -"regist", -"ry-fetch", -[2,3394,3395], -[2,3382,3396], -[0,1172,5284,57,5285,5286,58], -"mc-scripts", -"npm-run-all", -[2,3400,1276], -"npm-run-", -"path", -[2,3402,3403], -[2,556,11398,3902,591], -"npm-to-yarn", -"windows-upgrade", -[2,3382,3407], -"npmcli", -"npmignore", -"npmlog", -"nprogress", -"nsp", -"nuke-cli", -"numeral", -"nunjucks", -"nvm", -"nvmrc", -"nwsapi", -"nx", -"nyc", -"oas", -"oas-normalize", -"oauth", -[3,77,7], -"assign", -[2,3425,3426], -"hash", -"object-hash", -"inspect", -[2,3425,3430], -"keys", -"object-keys", -"object-path", -[2,3048,3022], -"object.", -"entries", -[2,3436,3437], -"observe-food-motion-hidden", -"on-finished", -"once", -"onchange", -"one-how-hand", -"onoff", -"open", -"open-cli", -"api-c", -[1,2343,3454], -"lient-axios", -[2,3447,3449], -[2,3445,3450], -"openapi", -[2,3452,1712], -[0,3457,3464,3465,2537], -"opencv", -"opener", -[0,5292,56], -"openweather", -"opn", -"optimist", -"optimi", -"ze-css-assets-webpack-plugin", -[2,3461,3462], -[0,53,5295], -[0,5297], -"optionator", -"ora", -"orchestrator", -"orm", -"osenv", -"outdent", -"outline-slowly", -"overlay", -"scrollbars", -[2,3473,3474], -"ovsx", -"p-event", -"p-map", -"p-queue", -"p-timeout", -"p23", -"pa11y", -"pacote", -"pageres", -"paintor", -"pako", -"para", -"para-cli", -"ent-js", -[2,3488,3489], -"llelshell", -[2,3487,3491], -"parse5", -"parseurl", -"passport", -[3,1433,9], -"facebook", -[2,3496,3497], -[2,3496,2703], -[2,3496,3424], -[2,3500,1276], -[2,3403,1617], -"path-", -"exists", -"path-exists", -"is-absolute", -[2,3503,3506], -"to-regexp", -[2,3503,3508], -"pathe", -"paypal-server-api", -"pdfjs", -"pdfkit", -"perf", -[1,2343,3516], -[0,3538,3546,3581,2523], -"ormance-now", -[2,3514,3517], -"pg", -"phantom", -[3,2905,9], -[3,2905,10], -"prebuilt", -[2,3522,3523], -"phonegap", -"pi-gpio", -"picocolors", -"pico", -"match", -"picomatch", -"pie-case-nor-great", -"pify", -"pino", -"pinst", -"pitch-somehow-earth-brave", -"pixelmatch", -"pkg-dir", -[0,5302,1676,2929,5303,4135,2822,4213,1457,18089,2098,5305,3183,3416,3692,5306,3530,27921,2226,3105,5312,5314,5319,27482,5320,5321,27512,5323,5328,27513,27514,2557,5332,2558], -"pkg-up", -"pkginfo", -"playwright", -"plugin-e", -"rror", -[2,3542,3543], -"plur", -[0,1414,1166,4494,188,4763,2278,89,1177,3127,3721,4039,2203,1894,3824,442,91,5307,4874,29549,27521,19181,5944,9245,30864,3114,27517,27519,5337,25652,1895,27518,30114,5344], -"pluralize", -"pm2", -"pngjs", -"pnp-", -[2,3550,1464], -"pnpm", -"pnpx", -"poe-api-manager", -"polished", -"poli", -"tical-plan-careful", -[2,3556,3557], -"popper.js", -"portfinder", -"postcss", -[3,214,8], -"calc", -[2,3562,3563], -[3,3564,9], -"postcss-cli", -"al-notation", -[2,3046,3567], -[2,866,3568], -[2,3565,3569], -[3,3570,13], -[2,3571,2262], -[3,3570,10], -"nvert-values", -[2,3573,3574], -"ssnext", -[2,3565,3576], -"ustom-media", -[2,3565,3578], -[3,3579,15], -[0,5347,5348,5349,1745,5351,5352,5353,5354,1179,5130,1820,5355,1936,1783,5356,3416], -"ies", -"properties", -[2,3580,3583], -[3,219,8], -"selectors", -[2,3580,3586], -"disc", -"ard-comments", -[2,3588,3589], -[2,3562,3590], -[3,3591,16], -[1,2343,3594], -[0,0,3596,3601,2537], -"es", -[0,5517,11976,811,816,10615,10817,5366,5364,5087,4874,1317,1413,1192,4042,4057,4468,4484,91], -"duplicates", -[2,3592,3597], -"empty", -[2,3592,3599], -[0,1623,57,5374,5376,6892,91,31130,31139,31177,3178,1671,7121], -"overridden", -[2,3592,3602], -"flexbugs-fixes", -[2,3562,3604], -[2,3562,1936], -[3,214,9], -"mage-", -"set-function", -[2,3608,3609], -[2,3607,3610], -[3,3611,10], -[2,3612,1709], -"load-", -"load-config", -[2,3562,3615], -[3,3616,12], -[2,3617,1524], -"hand", -"longhand", -[2,3158,3620], -[2,3562,3621], -[3,3622,14], -"rules", -[2,3623,3624], -[3,3622,9], -"inify-font-values", -[2,3626,3627], -[3,3628,15], -"grad", -[1,2343,3645], -"gradients", -[2,3629,3632], -"params", -[2,3629,3634], -[2,3629,3586], -"odules-local-by-default", -[2,3626,3637], -"nested", -[2,3562,3639], -[3,3640,12], -"ing", -[2,3641,3642], -[3,3640,9], -[0,3654,3655,3690,2537], -"ormalize", -[2,3644,3646], -"-charset", -[2,3647,3648], -[3,3649,18], -"positions", -[2,3650,3651], -[2,3650,1871], -[0,5381,5383,5387,5391,5393,5394,5397,5400,5402,5405,5408,5411,5414,5416,5419,5423,5425,5430,5436,2993,5438], -[0,5441,5446,5450,5452,5453,5456,5458,5461,5464,192,5467,5470,5473,5474,5476,5478,1177,1895,2675,2990,4193,91,5480], -"unicode", -[2,3650,3656], -[3,3657,19], -"rl", -[2,3658,3659], -"whitespace", -[2,3650,3661], -"ordered-values", -[2,3562,3663], -"prefix", -"-selector", -[2,3665,3666], -[2,3562,3667], -[3,3668,11], -"set-", -"set-env", -[2,3669,3671], -"reduce-initial", -[2,3562,3673], -"safe-parser", -[2,3562,3675], -[3,3676,9], -[2,3677,1623], -"or-parser", -[2,1799,3679], -[2,3677,3680], -"vgo", -[2,3677,3682], -"ue-selectors", -[2,3071,3684], -[2,3562,3685], -"value-parser", -[2,3562,3687], -"post", -[0,5483,1117,1745,5484], -"postgrejs", -"posthtml", -"pouchdb", -"power", -"-assert", -[2,3694,3695], -"pre-commit", -"preact", -"prepare-package", -"-plu", -"gin-jsdoc", -[2,3700,3701], -[2,1894,3702], -[3,3703,16], -"organize-imports", -[2,3704,3705], -"packagejson", -[2,3704,3707], -"svelte", -[2,3704,3709], -"prettierrc", -"prett", -"y-bytes", -[2,3712,3713], -"pretty-", -[2,3715,1851], -[2,3715,1671], -"pretty-ms", -"quick", -[2,3715,3719], -"pretty", -"prettyjson", -[1,2343,3728], -"prisma", -"prismjs", -"private-bower", -"proc-log", -[0,3740,0,3748,34352], -"process", -[3,217,8], -"-bar-webpack-plugin", -[2,3730,3731], -"-polyfill", -[2,1862,3733], -"s-aplus-tests", -[2,1862,3735], -"prom", -"o-server", -[2,3737,3738], -[0,5497,5498,5502,5504,2222,5506,4484], -"prompt", -"prompts", -"prop", -"prop-types", -"-information", -[2,3205,3745], -"protobufjs", -[0,5575,2220,89,582,5576,2325], -[2,38087,27470], -"protractor", -"quire", -"proxyquire", -"publish-please", -"pug", -"pull-stream", -"pump", -"punycode", -"puppeteer", -"purgecss", -"q", -"qr-image", -"qrcode-terminal", -"qs", -"query-", -[2,3764,1871], -"query", -"querystring", -"queue", -"-typed", -"queue-typed", -"quill", -"-dom", -"qunit-dom", -"qunitjs", -"raf", -"ramda", -"random-words", -"random", -"randombytes", -[2,3778,1871], -"range-parser", -[1,2343,3785], -"raven", -"raw-body", -[0,3796,3806,3823,2487], -"raw-loader", -"rc-slider", -"rc-tooltip", -"rc-util", -"rcw-plugin", -"react-a", -"ddons-css-transition-group", -[2,3791,3792], -[3,3793,13], -"shallow-", -[0,89,4042,3744,53,5582,87,4232,90,5583,5589], -"compare", -[2,3795,3797], -[2,3794,3798], -"react-ap", -"ollo", -[2,3800,3801], -[2,1897,3733], -[2,1246,1367], -"react-c", -[0,1192,1177,4468,1610,91,5087,4880,2829,1959,1969,1966], -"react-color", -"react-co", -"py-to-clipboard", -[2,3808,3809], -"picker", -"datepicker", -[2,1246,3812], -"react-d", -"ev-utils", -[2,3814,3815], -"react-dnd", -"5-backend", -[2,1868,3818], -[2,3817,3819], -"ocgen", -[2,3814,3821], -[0,5593,1745,1179,89,4978,1283], -"react-dom", -"ropzone", -[2,3814,3825], -"error-", -[2,3827,3473], -[2,1246,3828], -[2,1246,2593], -"react-h", -"ook-form", -[2,3831,3832], -"react-ho", -"t-loader", -[2,3834,3835], -[2,1246,2681], -"react-i", -"react-icons", -"nter", -"section-observer", -[2,3840,3841], -[2,3838,3842], -[1,2343,3851], -[2,28573,26849], -"react-intl", -"react-is", -"lifecycles-compat", -[2,1246,3848], -[2,1246,1783], -[0,3859,3873,2514,2399], -"odal", -"react-modal", -"react-mo", -"tion", -[2,3854,3855], -[2,1246,970], -"-key", -[0,4135,1996,5598], -"-keychain", -[2,3857,3860], -[3,3861,13], -"vector-icons", -[2,3862,3863], -"react-n", -"umber-format", -[2,3865,3866], -"onclickoutside", -[2,1246,3868], -"react-p", -"roperty", -[2,3870,3871], -[0,1680,1177,53,5601,1006,4523,5274,5604], -"x", -"redux", -"react-redux", -"react-re", -[2,3877,2145], -[1,2343,3880], -[0,3892,3896,3907,2523], -"sponsive", -[2,3877,3881], -"react-r", -[2,3883,995], -[2,3884,3772], -[3,3885,13], -[2,3886,3875], -"scripts", -[2,1246,3888], -"react-s", -[2,3890,1799], -[0,56,5611,5292], -"react-slick", -"tyleguidist", -[2,3890,3894], -[0,53,101,5615,5617,5295,5619], -"react-svg", -"tap-event-plugin", -[2,1246,3898], -"react-t", -"est-", -"renderer", -[2,3901,3902], -[2,3900,3903], -"oastify", -[2,3900,3905], -[0,1172,5297,70], -[1,2343,3918], -"react-tools", -"ransition-group", -[2,3900,3910], -"virtualized", -[2,1246,3912], -"reactify", -"strap", -[2,89,3915], -"read", -[0,3920,3464,3465,2399], -"read-pkg", -[0,56], -"read-pkg-up", -"able-stream", -[2,3917,3922], -"line", -"readline", -"-sync", -[2,3925,3926], -"recall-shut-say", -[1,2343,3933], -"recast", -"recently-building-save", -"rechoir", -[0,3934,3464,3465,2443], -[0,56,5631], -"recompose", -"recu", -"rsive-readdir", -[2,3936,3937], -"redoc", -"usaurus", -[2,3939,3940], -"-actions", -[2,3875,3942], -"redux-", -"redux-form", -[2,3944,2942], -"saga", -"redux-saga", -"thunk", -"redux-thunk", -"reflect-metadata", -[1,2343,3953], -[0,3982,3983,3465,2537], -"regenerate", -[3,3954,9], -"or-runtime", -[2,3955,3956], -"rehype", -"-auto", -"-headings", -[2,163,3960], -[2,3959,3961], -[2,3958,3962], -"rehype-", -[3,1202,9], -"links", -[2,3965,3966], -[2,3964,3967], -"mdx-code-props", -[2,3964,3969], -[2,3964,1644], -"raw", -"rehype-raw", -"slug", -"rehype-slug", -"rehype-s", -"tringify", -[2,3976,3977], -"release", -"release-it", -"remap-istanbul", -[0,5637,5222,56,5638,5640], -[0,53,5295,58], -"remark", -[2,3984,20], -"remark-", -"gfm", -"remark-gfm", -"remark-html", -"mermaidjs", -[2,3986,3990], -[2,3986,1644], -"remark-p", -[2,1258,2195], -[2,3993,3994], -[3,3995,14], -"wooorm", -[2,3996,3997], -[2,3986,3958], -"able", -"remarkable", -"replace-ext", -"replace-", -"in-file", -[2,4003,4004], -[1,2343,4011], -"-promise", -[2,705,4007], -"-native", -[2,4008,4009], -[0,3920,3293,3465,2523], -"require-all", -"require-", -"dir", -"require-dir", -[1,2343,4032], -"index", -[2,3209,4017], -"requirejs", -"rese", -"lect", -"reselect", -"resize-observer-polyfill", -"-from", -[2,814,4024], -"resolve-", -"url-loader", -[2,4026,4027], -"rest-chronicle", -"rest", -"restify", -[0,4091,4095,3465,2399], -"restler", -"ore-cursor", -[2,4030,4034], -"rethinkdb", -"rewire", -"rfdc", -"rimraf", -"robot", -"robotjs", -"rollup", -"rollup-p", -"lugin-babel", -[2,4043,4044], -[3,4045,15], -"uble", -[2,4046,4047], -[3,4045,14], -"clean", -"cleanup", -[2,4049,4051], -[3,4052,15], -"ommonjs", -[2,4053,4054], -"dts", -[2,4049,4056], -[2,4049,1781], -"license", -[2,4049,4059], -"builtin", -"builtins", -[2,813,4062], -[2,4049,4063], -[3,4064,19], -[2,4065,2203], -[2,4065,814], -"replace", -[2,4049,4068], -"sourcemaps", -[2,4049,4070], -"terser", -[2,4049,4072], -[3,4073,15], -[2,4074,2528], -[2,4075,1276], -[2,4049,2280], -"visualizer", -[2,4049,4078], -[3,4045,13], -[2,4080,594], -"route", -"routes", -"rsnext", -"rsvp", -"rtlcss", -"run-s", -"equence", -[2,4087,4088], -"@modern-js/utils", -[0,4135,56,5652,5656,5658,5660], -"run-series", -"rx", -"rxjs", -[0,3093,53,5228,97,87,5663,5658,5295], -[1,2343,4114], -"-compat", -"rxjs-compat", -"safe-", -"safe-buffer", -"safe-p", -"ublish-latest", -[2,4101,4102], -"sails", -"salt-type-oldest-faster", -"sand-have-metal6", -"-filename", -[2,2574,4107], -[3,4108,9], -[2,4109,1936], -"sass-loader", -"sat-local", -"sax", -[0,4115,4138,2514,4139], -[0,1593,3957], -"scheduler", -"-doc", -[2,1119,4117], -[2,2844,4118], -"schema-", -[2,4120,594], -"scien", -"ce-knowledge-truth", -[2,4122,4123], -"seblakhotspicy", -"secp256k1", -"seedrandom", -"sele", -"nium-webdriver", -[2,4128,4129], -"semantic-release", -[3,4131,9], -"ui-react", -[2,4132,4133], -"semver", -"seneca", -"sentiment", -[0,1389,1408,5669,4535], -1772323200000, -"sequelize", -[3,1753,9], -"-javascript", -[2,4141,4142], -"serial", -"serialport", -"serve", -"-favicon", -[2,4146,4147], -"serve-", -"serve-index", -[2,4149,2947], -"-destroy", -[2,36,4152], -[1,2343,4194], -"less-finch", -[2,36,4155], -[3,4156,11], -"spy", -[2,4157,4158], -"sha1", -"shallow", -"equal", -[2,4161,4162], -"sharp", -"shell-quote", -"shell", -"shelljs", -"shinning-continued-becoming", -"shortid", -"should", -"showdown", -"shx", -"sick-typical-court7", -"signal-exit", -"simil", -"ar-cheese-loss", -[2,4175,4176], -"-ass", -"i-animation", -[2,4178,4179], -[2,2869,4180], -"simple-", -"simple-git", -"-web", -"-web3", -[2,3742,4185], -[2,4182,4186], -"single-spa", -"sink-mighty-orbit0", -"sink-", -"rod-lamp", -[2,4190,4191], -"sinon", -[0,4197,4198,2514,2537], -"-chai", -"sinon-chai", -[0,4135,5867,5637,5866,56,5656,5658,5676,5788,5850,5761,5797,5222,5660,5816,5640,5809,5812,5838,5769,5793,5823,5852,5756,5766,5790,5856,5863,5712,5715,5771,5778,5842,5741,5743,5830,5859,5757,5241,5810,3218,5820,5827,5835,5853,5751,5759,5821,5865,5764,5846,5785,5754,5825,5862,5782,5700,5749,5806,5832,5818,29299,5800,5813,5678,5685,5694,5690,5776,5688], -[0,53,101,5295], -"sinopia", -"sirv", -"size-limit", -"size", -[1,2343,4222], -"sizeitup", -"skapi-js", -"sky-buy-web3-rock", -"slash", -"slice-ansi", -"slow-deps", -"slow-", -"voice-spell-pass", -[2,4210,4211], -"slugify", -"small-grow-mix4", -"snake-seven-recall-interior", -"snazzy", -"soap", -"socket.io", -"-client", -[2,4218,4219], -"sock", -[0,4240,3464,2514,2537], -"js-client", -[2,4221,4223], -"source", -"-map", -"source-map", -[2,4227,1592], -[3,4228,11], -[2,4229,1194], -"support", -[2,4229,4231], -"space-separated-tokens", -"spectaql", -"speech-section-part-frozen", -"spirit-labor-cheese", -"split", -"split2", -"spring-dust-wall-size", -[0,56,5676,5874,5879,5881,5883], -[1,2343,4244], -"sprintf", -"sprintf-js", -[0,4253,3464,4254,4139], -"sprity", -"sqlite3", -"ssh2", -"ssri", -"st.db", -"stack-", -"trace", -"stack-trace", -[0,4851,56,5676,5889,5241], -[0,5891,91], -"standard", -"-version", -[2,4255,4256], -"star-location", -"star", -"t-server-and-test", -[2,4259,4260], -"stat", -[1,2343,4265], -"statsd", -[0,4269,4281,2514,2537], -"statuses", -"stock-independent-balloon", -"stor", -[0,5896,3093,5898,2102,4232], -"storybook", -"-django", -[2,4270,4271], -"stra", -"iforos-compodoc", -[2,4273,4274], -"nge-lady-riding9", -[2,4273,4276], -[2,3101,3695], -"stream-", -[2,4279,353], -[0,1389,53,5743,5241], -"streamii", -"strftime", -"string-", -"stri", -[1,2343,4297], -"strip-html", -[2,4284,4287], -"width", -[2,4284,4289], -"-entities", -[2,1646,4291], -"strip-", -"strip-ansi", -"bom", -"strip-bom", -[0,0,0,2514,2523], -"comments", -[2,2842,4298], -[2,4293,4299], -"strip", -"stripe", -"strongloop", -"-dictionary", -[2,590,4304], -"style-", -[2,4306,1194], -[1,2343,4313], -"style-to-js", -[3,4309,9], -[2,4310,3048], -"-comp", -[0,4316,0,2514,2523], -"-components", -[2,369,4314], -[0,1593], -"styled-jsx", -"hacks", -"stylehacks", -"stylelint", -"-standard", -[2,607,4321], -[2,4320,4322], -[3,4323,10], -"declaration-strict-value", -[2,4324,4325], -"order", -[2,4324,4327], -"scss", -[2,4324,4329], -[1,2343,4336], -"us", -"stylus", -[2,4333,2091], -"sugar-policeman-entire", -[0,4344,3464,2514,2537], -"sugarss", -"sun-grass-circle0", -"superagent", -"super", -"superjson", -"supertest", -[2,4342,1430], -[0,1676,104,58,5230,5216,51,30873], -"supervisor", -"-vessels-web3-vessels", -[2,4231,4346], -[1,2343,4356], -"lor", -"s-color", -[2,4231,4350], -"surrounded-characteristic-or-rain", -"svelte-", -"check", -[2,4353,4354], -[0,4379,4392,2514,2487], -"rocess", -"preprocess", -[2,4353,4358], -"svg-sprite", -"svgo", -"sw-precache-webpack-plugin", -"swagger-autogen", -"swagger-", -[2,4364,134], -"themes", -[2,4364,4366], -"ui-express", -[2,4364,4368], -"swam-darkness-weak", -"swig", -"swiper", -"sync-request", -"information", -[2,623,4374], -"systemjs", -"tail-iron-became5", -"tail", -[0,5276,5279], -"tailwind", -"-merge", -[2,4380,4381], -"tailwindcss", -"tap", -"tap-", -"spec", -"tap-spec", -"tapable", -"tape", -"tar", -"tar-fs", -[0,58,5216,5274], -"tar-stream", -"tarant", -"-router-express", -[2,3926,4395], -[2,4394,4396], -"tdl", -"tdlib-native", -"tempy", -"terminal-kit", -[3,4401,9], -"menu", -[2,4402,4403], -"pack", -"-plugin", -"pack-plugin", -[2,4184,4407], -[2,4072,4408], -"cutting", -[2,1382,4410], -"snippets", -[2,1382,4412], -"cafe", -"testcafe", -"testc", -[1,2343,4422], -"ontainers", -[2,4416,4418], -"double", -"testdouble", -[0,4424,4429,4442,4139], -"testem", -[0,5923,5927,5930,5931,5934,5935,5936,1512,2075,2088,2070,2822,2832,5941,3105,5944,3107,5946,5949,3112,26767,5953,5956,5961,3135,3257,5963,5966,3725,3754,3758,5969,5971,3348,5975,4747], -"text-table", -"three", -"throttle-debounce", -"thro", -[0,4320,5978,4328], -"through", -"through2", -"w-did-darkness4", -[2,4428,4432], -"thunkify", -"tildify", -"time-grunt", -"tinper-bee", -"tiny-lr", -"tiny", -"bench", -"tinybench", -[0,200,1783,5980,3452,5593,5981,5982,5983,1745,1179], -"tinycolor2", -[1,2343,4458], -"tinymce", -"pool", -"tinypool", -"tinyspy", -"tmp", -"toastify-react-native", -"tocbot", -"toml", -"touch", -"tough-cookie", -"tracer", -"traffic-carry-opinion", -"train-stick-swept7", -[0,4466,4471,4472,2537], -"tree-kill", -"e-leaving-basket", -[2,1333,4460], -"trpc", -"trumpet", -"ts-cache-mongoose", -"ts-japi", -[0,5990,2212,3220,3747,4715], -"est", -"ts-jest", -"ts-loader", -"ts-migrate-mongoose", -[0,1596,1177,1895,1903,1938,1954,1955,1958,1970,4255], -[0,4709,5993,4714,2942,5995], -"ts-morph", -"ts-node", -"ts-patch-mongoose", -[1,2343,4485], -"ts-pnp", -"ts-rule-engine", -"-paths", -[2,2190,4479], -"tsd", -"tsd-lite", -"tshy", -"tslib", -[0,4502,4503,2514,2537], -"nt", -"tslint", -"-config-", -[2,4488,1894], -[2,4487,4489], -"tslint-", -[2,4491,89], -"tsup", -"tsx", -"turndown", -"tv4", -"tweetnacl", -"twemoji", -"twit", -"twitter", -"type-", -[0,6041,4135,1458,6042,1836,2151,6049,3527,1104,6047,4025,6024,6027,6028,6032,6034,6009,6010,6025,6037,3749,6007,6039,6022,6003,6031,6017,6006], -[0,3471,6040,4294,5254], -"coverage", -[2,4501,4504], -[1,2343,4516], -"type-fest", -"typedoc", -"-material-theme", -[2,4508,4509], -"typedoc-", -[2,4511,2475], -[3,4512,15], -[2,4513,1783], -"typedocs", -[0,4518,4519,4527,2537], -"typegen", -[0,6056,6059,449,452,456,1461,3744], -[0,48,53,61,87,90,192,5467,5583,811,816,6061,6063,6065,1009,1011,1178,1251,6066,1177,1947,1959,1961,2675,2990,1894,89,3824,4042,6068,4073,4131,91], -"typegoose", -"typeorm", -"-eslint", -[2,91,4522], -[3,4523,11], -"formatter", -[2,4524,4525], -[0,6070,89,6071,181,6073,4963,6074,6077,6080,6081,6082,4967,6083,6084,4298,6085,6086], -[1,2343,4544], -"css-modules", -[2,1186,4529], -[2,4524,4530], -"typings", -"uglify-es", -"uglify-", -"uglify-js", -"js-webpack-plugin", -[2,2280,4536], -"uid-safe", -"uiw", -"uj-apidoc-core", -"ulid", -"ultrahtml", -"unbuild", -[0,4556,0,4557,2537], -"underscore", -".string", -[2,4545,4546], -"undici", -"unified", -"unique-", -"random-", -"array", -[2,4551,4552], -[2,4550,4553], -"unist-util-visit", -[0,1459,148,185], -[0,6092,1459,6094,6096,6098,6100], -"untildify", -"unusual-rope", -"unzip", -"-notifier", -[2,3076,4561], -"urijs", -"url-", -"join", -"url-join", -"url-parse", -"urllib", -"user", -"user-", -"home", -"user-home", -[1,2343,4574], -[0,4583,0,4642,2487], -"agent", -"useragent", -"utf8", -[2,594,4381], -"uvu", -"valid", -"-url", -"valid-url", -[0,27715,4484], -"-commit-msg", -[2,2649,4584], -[3,4585,9], -[2,3387,1213], -[2,4586,4587], -"vant", -"vary", -"vasync", -"vercel", -"verror", -"vhost", -"victory-mouth", -"viewerjs", -"vinyl", -"vinyl-", -[2,4598,1398], -"vinyl-fs", -"source-", -[2,4601,3101], -[2,4598,4602], -[3,4603,12], -"maps-apply", -[2,4604,4605], -"virtual", -"virtual-dom", -[3,839,12], -"api-", -"api-routes", -[2,4609,4611], -"press", -"vitepress", -"vorpal", -"vows", -"vsce", -"vscode-debugprotocol", -"vscode-", -"nls-dev", -[2,4619,4620], -"mate", -"textmate", -[2,4619,4623], -"vue-", -"class-", -[3,1533,9], -[2,4626,4627], -[2,4625,4628], -[2,4625,67], -"hot-reload-api", -[2,4625,4631], -"vue-i18n", -"vue-loader", -[3,3746,9], -[3,70,9], -[2,4635,4636], -[2,4625,4637], -[2,4625,38], -[2,4625,4307], -[3,1243,9], -[0,6105,6106,6038,1936,6108,6110,1098,6111,6112,6113,4627,6092,1459,6094], -"compiler", -[2,4641,4643], -[2,4625,4644], -"vuex", -"walk", -"walk-sync", -"warning", -"watchify", -"waterline", -"wd", -"web3", -"web3-", -[1,2343,4668], -"web3-be", -"web3-c", -"apital", -[2,4657,4658], -[3,42,8], -"pass", -[2,4660,4661], -"eve-cli", -[2,4654,4663], -"web3-e", -"xactly6", -[2,4665,4666], -[0,4672,0,4557,2523], -"web3-fruit", -"webpack-", -"bundle-", -[0,1459,148,187,153,180,157], -[1,2343,4697], -"analyzer", -[2,4671,4674], -[2,4670,4675], -[2,4670,200], -"dev-middleware", -[2,4670,4678], -[3,4679,12], -[2,4680,36], -"hot-", -[2,4682,2663], -[2,4670,4683], -[2,3097,4406], -[2,4670,4685], -[3,4686,9], -"erge", -[2,4687,4688], -"node-e", -"xternals", -[2,4690,4691], -[2,4670,4692], -"sources", -[2,4670,4694], -"webshot", -[0,4698,0,4557,2523], -[0,1459,182,148,29468,187,153,180], -"websocket", -[1,2343,4701], -[0,4725,0,4557,2537], -"webtorrent", -"webworker-threads", -"weinre", -"whatwg-fetch", -"when", -"which", -"winreg", -"winston", -"-daily-rotate-file", -[2,4709,4710], -"winston-", -"trans", -"transport", -[2,4712,4714], -"wiredep", -"word-wrap", -"word", -"wrap", -"wordwrap", -"work", -"box-webpack-plugin", -[2,4721,4722], -"world-toy-kill", -[0,1459,182,148,6127,29468,187,180], -"wrap-ansi", -"wrench", -"write-file-atomic", -"ws", -"x-ray", -"xhr", -"xml-", -"xml-js", -"xml2js", -"xml2json", -"xmlbuilder", -"xmldom", -"xmlhttprequest", -"xpath", -"xregexp", -"xss", -"xstate", -[1,2343,4773], -"xterm", -"yaml", -"yamljs", -"yargs", -[2,4747,1574], -"yarn", -"pkg", -"yarnpkg", -"yarnrc", -"yauzl", -"yeoman-environment", -"yeoman-", -[2,4755,1179], -"yn", -"yo", -"yoctocolors-cjs", -"yonode", -"yosay", -"zmq", -"zod", -"zod-", -"chemas", -[2,2666,4765], -[2,4764,4766], -"zombie", -"zone.js", -"zuul", -[2,667,1651], -[2,672,4406], -[0,4792,0,4801,2523], -"@nx/jest", -[2,667,4270], -"framer-motion", -"teajusgula", -"@mui/s", -"tyle", -"d-engine", -[2,4779,4780], -[2,4778,4781], -"jsdoc-parse", -"@comm", -"ercetools-frontend/constants", -[2,4784,4785], -"shift", -"downshift", -[3,3605,9], -"ocus-visible", -[2,4789,4790], -[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6133,111,174], -[2,3388,4794,4963], -[3,18878,12], -[3,1705,9], -[2,4795,3582], -"devDependencies", -"keywords", -"ts", -[2,4837,686], -[0,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130,6148,6092,1459,6094], -[3,3,7], -"field", -[2,4802,4803], -[2,4802,3473], -[2,4802,2649], -"@types/", -[2,4807,3911], -"big.js", -[3,1849,9], -"lement-equals", -[2,4810,4811], -[1,2343,4918], -"adaptor-generate", -[2,4802,4814], -[3,4815,15], -[2,4816,1383], -"@alifd/a", -"pi-extractor", -[2,4818,4819], -[2,1262,3286], -[2,4802,4821], -[2,1910,57], -[2,4802,4823], -"@alifd/d", -"ts-generator", -[2,4825,4826], -[2,1884,3286], -[2,4802,4828], -"meet-react", -[2,4802,4830], -"sass-", -"mapper", -"sass-mapper", -[2,4802,4834], -[3,4835,12], -[3,4793,38], -[2,4867,4924], -"tracker", -[2,4836,4839], -[3,4835,11], -[2,4841,4823], -"@alifd/s", -"lint-co", -"-next", -"nfig-next", -[2,4844,4846], -[2,4779,4847], -[2,4843,4848], -[3,81,21], -[2,4850,1219], -[2,4807,1175], -"@types/b", -"ig.js", -[2,4853,4854], -"@types/chai", -"@types/c", -"lassnames", -[2,4857,4858], -"@types/co", -"@types/e", -"nzyme", -[2,4861,4862], -[2,4807,2151], -"@types/glob", -[2,4807,2720], -[3,4793,25], -"jsonp", -[2,4807,4868], -[2,4807,1209], -".clonedeep", -[2,4870,4871], -"@types/md5", -[2,4807,202], -[2,4807,3564], -[3,4875,16], -"ustom-", -[2,4877,3583], -[2,4876,4878], -[3,4808,12], -[3,4808,13], -[2,4881,1582], -[2,4881,965], -[2,4881,3875], -[3,4884,14], -"outer-dom", -[2,4885,4886], -[3,4808,14], -[2,4888,3903], -[2,4807,4320], -[2,4807,2924], -[2,4807,4747], -[3,1203,14], -"spower", -[2,4893,4894], -[2,2168,1894], -[2,1199,4896], -[3,1245,30], -[2,4898,3426], -"proto", -"-to-assign", -[2,4900,4901], -[2,1226,4902], -"displayname", -[2,1861,4904], -[2,1249,4905], -[2,3195,2874], -"e-polyfill", -[2,1557,4908], -"css-s", -"plit-webpack-plugin", -[2,4910,4911], -[2,1863,3733], -[3,1924,15], -"ypress", -[2,4914,4915], -[2,2068,4111], -[0,4943,0,4801,2537], -"html5shiv", -[3,2925,9], -"driver-launcher", -[2,4920,4921], -[2,3108,588], -"ssets", -"mochawesome", -"-package-importer", -[2,3342,4926], -[2,3388,16690,4935], -"react-axe", -"ropper", -[2,3805,4930], -"react-dr", -"aggable", -[2,4932,4933], -"c-app", -"ve", -"react-live", -"true", -"sass-true", -"simulate-event", -"solarlunar", -[3,4323,17], -[0,182,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6133,111,174], -[2,4950,4951], -"recommended", -[2,4942,4945], -[3,4323,11], -"sstree-validator", -[2,4947,4948], -[3,662,27], -"dev-authentication", -"ts-mocha", -[1,2343,4969], -[2,4950,4956], -"tsconfck", -[3,25922,13], -"fusion", -" design", -[2,4957,4958], -"ui toolkit", -"mponents", -[2,3808,4961], -"components", -"design", -"front", -"end", -"frontend", -[2,4970,4971], -[0,4979,0,4983,2537], -[3,4786,14], -"/http-user-agent", -[2,31787,4980], -"Angular CLI", -"Angular ", -"DevKit", -[2,4974,4975], -"devkit", -"sdk", -[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6158,111,174], -"cli-lib", -[2,812,2220], -"@svgr/babel-preset", -[0,6148,6092,1459,6094,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130], -"blue", -[2,4807,4676], -"blueprints", -" generation", -[2,1501,4987], -"scaffolding", -"tool", -"tooling", -[2,1030,4993], -"-swc", -[1,2343,4998], -[2,5559,705], -[2,4997,4999], -"moment-loca", -[0,5003,0,4983,4139], -[3,8303,18,2], -"svg-url-loader", -"development", -"thread-loader", -[0,6164,164,167,137,159,177,162,180,157,140,6166,171,116,150,155,122,169,119,146,111,6168,174], -[1,2343,5005], -[0,5006,0,4983,4139], -[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,6173,146,111,174], -[1,2343,5008], -[0,5011,0,4557,2487], -[2,4807,4996], -[2,6776,1987], -[0,6178,1459,16485,182,148,29468,159,187,153,185,146], -"@jridgewell/sourcemap-codec", -[1,2343,5014], -[0,5015,0,4557,2537], -[0,1459,182,148,29468,159,187], -[1,2343,5017], -[0,5018,0,4557,4139], -[0,16485,182,148,187,153,191], -[1,2343,5020], -[0,5021,0,5022,2487], -[0,1459,148,187], -[0,6092,1459,6094,6192,6100], -[1,2343,5024], -[0,5025,0,5026,2443], -[0,16485,182,187,153,6200], -[0,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130,6092,1459,6094,6192,6100], -[2,29,4958], -[1,2343,5029], -[0,5030,0,4557,4139], -[0,1459,148,187,185,146], -[1,2343,5032], -[0,5033,0,5026,2399], -[0,16485,187], -[1,2343,5035], -[0,5036,0,4557,2537], -[0,1459,182,148,6215,6127,180,143,6217], -[1,2343,5039], -"xhr2", -[0,5040,0,4557,2399], -[0,1459,182,148,29468,187,153,171], -[1,2343,5042], -[0,5043,0,4557,2523], -[0,1459,16485,182,148,6215,29468,187,153,180,185,191,143], -[1,2343,5045], -[0,5046,0,4557,4139], -[0,1459,182,148,167,29468,187,153,157], -"@bang88/react-native-ultimate-listview", -[3,444,19], -[2,5048,970], -"@rc-component/mini-decimal", -"@types/s", -[1,2343,5053], -[0,5072,0,4557,2443], -"hallowequal", -[2,5051,5054], -"with", -[2,3023,5056], -"css-color", -[2,3370,5058], -"rc-field-form", -"codegen", -[2,3862,5061], -[3,5062,15], -"llapsible", -[2,5063,5064], -"modal", -"-popover", -[2,5066,5067], -[2,3862,5068], -"ity-types", -[2,614,5070], -[0,1459,16485,182,148,29468,159,187,153,180,191,143], -[2,2809,4009], -[2,45,5073], -[2,41,5074], -[2,41,2041], -"@rea", -"ct-native-community/eslint-config", -[2,5077,5078], -[3,5079,9], -"vigation/native", -[2,5080,5081], -[3,5082,18], -[2,5083,2873], -[2,972,4009], -"@types/j", -"@types/jest", -"@types/p", -"rop-types", -[2,5088,5089], -[2,4881,970], -[3,1113,11], -"palettes", -[2,5092,5093], -"-demo-data", -[2,701,5095], -[2,1114,5096], -"bisheng", -[1,2343,5101], -"enquire.js", -[0,5126,0,4557,2537], -"jsonml.js", -"metro-react-native-babel-preset", -[3,3822,9], -"ument-title", -[2,5104,5105], -[3,2197,13], -[2,1246,5107], -"gesture-handler", -[2,3862,5109], -[3,5069,15], -"cker", -[2,5111,5112], -"reanimated", -[2,3862,5114], -"area-context", -[2,4099,5116], -[2,3862,5117], -[3,5118,14], -"creens", -[2,5119,5120], -"web", -[2,3862,5122], -"shell-", -[2,5124,594], -[0,1459,182,148,6164,6127,29468,187,153,180,143], -"ant", -[3,4962,15], -"frame", -"framework", -"mobile", -" native", -[2,89,5132], -[1,2343,5135], -[0,5136,0,4557,2537], -[0,1459,182,148,6215,29468,187,153,180,191,143], -[1,2343,5138], -[0,5140,0,4557,2537], -[2,4870,3020], -[0,182,148,29468,187,153], -[1,2343,5142], -[0,5143,0,4557,2487], -[0,1459,148,153,143], -[1,2343,5147], -[3,5075,17], -"@inline-svg-unique-id/react", -[0,5148,0,5149,4139], -[0,27715], -[0,6105,6106,6038,1936,6108,6110,89,5128,6092,1459,6094], -[1,2343,5151], -[0,5163,0,4557,2487], -[2,3670,1575], -[2,5928,5155], -"@auth/core", -"junit-xml-formatter", -"adapt", -"er-auto", -[2,5156,5157], -[2,836,5158], -[2,836,3383], -"et-cookie-parser", -[2,5051,5161], -[0,1459,16485,182,148,29468,187,153,191,143], -"entication", -[2,1303,5164], -"authjs", -"sveltekit", -"oidc", -"wordless", -[2,4661,5169], -[1,2343,5172], -[0,5173,0,4557,2443], -[0,16485,148,187,153], -[1,2343,5177], -"fs-readdir-recursive", -[3,5012,12], -[0,5181,0,5022,2443], -"-mapping", -[2,4251,5178], -[2,5176,5179], -[0,16485,6268,6271,6272,28829,148,29468,187,153,15716], -[3,4864,10], -"dir-recursive", -[2,3917,5183], -[2,5182,5184], -[3,56,14], -"fixture", -"-test-runner", -[2,5187,5188], -[2,1221,5189], -[2,5186,5190], -[2,5195,5196], -"6to5", -"es6", -[3,7710,11], -"ut-extension", -"transpile", -"transpiler", -[1,2343,5201], -[2,7623,671], -[0,5202,0,5022,2443], -[0,148,187], -[1,2343,5205], -"ighlight", -[0,5206,0,5022,2537], -[0,16485,182], -"meta", -"-resolve", -[2,5207,5208], -[2,2701,5209], -[1,2343,5212], -[0,5213,0,5214,2537], -[0,27715,3021], -[0,6105,6106,6038,1936,6108,6110,188,6284,6285,6287,6092,1459,6094], -"@ampproject/remapping", -[2,54,1179], -"compil", -"ation", -"-targets", -[2,5218,5219], -[2,5217,5220], -[2,5186,5221], -"module-", -[2,353,591], -[2,5223,5224], -[2,5186,5225], -[3,56,13], -[2,5227,591], -"emplate", -[2,102,5229], -[1,2343,5232], -[0,5234,0,5022,2537], -"gensync", -[0,16485,182,148,6127,29468,187,153,180], -[2,4850,2124], -[3,83,24], -"flow-", -[2,4293,553], -[2,5237,5238], -[2,5236,5239], -[2,5236,1239], -"nvert-", -[2,5242,4227], -[2,4860,5243], -[2,4807,1676], -"@types/g", -"ensync", -[2,5246,5247], -[3,4808,9], -"solve", -[2,5249,5250], -[3,5162,9], -"mver", -[2,5252,5253], -[1,2343,5262], -"classes", -"const", -"harmony", -"let", -"modules", -"var", -[0,5263,5264,5265,2523], -[0,6297,6298,6301,6302,6303,26379,4747], -[0,6306,6307,6498,4874,4892,2151,6476], -[0,1566,1529,200], -[1,2343,5267], -[0,5268,0,5269,2523], -[0,7,53,5830,87,6316,6318,31736,1364,6320,1448,1457,1512,1525,1595,6323,1866,2061,2071,2151,2070,2036,2626,2681,2856,1209,3079,6326,6327,3127,3183,5732,6330,6331,3527,23802,3725,4135,4200,5969,6334,4473,3348,6335], -[0,6111,1098,1745,4963,1237,2218,4796,1783], -[1,2343,5280], -[3,5222,15], -"heck-duplicate-nodes", -[2,5271,5272], -[2,5186,1182], -[2,4284,57], -[2,5186,5275], -"-identifier", -[2,1155,5277], -[2,5186,5278], -[0,5283,0,5288,2537], -"codes", -"charcodes", -[0,6343,2700], -"javascript", -"tc39", -"ecmascript", -"skia-canvas", -[0,6345,6346,5130,2018,6347], -[1,5293,5296], -"@egjs/flicking", -"reate-class-features-plugin", -[2,5271,5291], -[0,8389,4799], -[3,56,21], -[2,5294,1187], -[0,8391,5298], -[3,1198,12], -1732406400000, -[1,5293,5300], -[0,8391,5301], -1733011200000, -"moo", -"luxon", -"hamljs", -"liquidjs", -"iso-639-1", -"@iarna/toml", -"-urls", -[2,3692,5308], -[3,3938,10], -[2,5310,1585], -"bcp-47-normalize", -[3,1705,11], -[2,5313,2218], -"@11ty/", -"lodash-", -"custom", -[2,5316,5317], -[2,5315,5318], -"please-upgrade-node", -[2,62,3007], -[2,5313,1633], -[2,5315,5322], -"@sin", -"dres", -"orhus/slugify", -[2,5325,5326], -[2,5324,5327], -[3,5321,15], -"dev-", -[2,5330,36], -[2,5329,5331], -[1,2343,5345], -"@vue/", -"server-", -[2,5335,3902], -[2,5334,5336], -"plugin-vue", -[2,5329,5338], -[3,5339,22], -"syntax", -[3,2600,9], -[2,5341,5342], -[2,5340,5343], -[0,5350,5358,5359,34352], -"-site-generator", -[2,2947,5346], -[3,5347,11], -"ssg", -[0,2626], -"website", -"jekyll", -"blog", -"templates", -"11ty", -"liquid", -"haml", -[0,48,53,87,37046,6371,27928,6372,5583,811,816,6373,11275,1165,1367,6375,6376,1492,1610,1177,1907,1937,1938,1982,6379,2203,2205,6382,2626,6383,2739,2765,2814,2297,2876,2881,6385,2889,2895,2898,6387,2910,3019,3363,3400,3561,3566,6389,4039,4042,6390,21688,4939,4167,4320,6392,4072,6393], -[0,1623,2278,6396,6398,6400,5130,5122], -[1,2343,5361], -[0,0,0,5372,2537], -"parcel", -"ytes", -[2,4853,5363], -"enchmark", -[2,4853,5365], -"@parcel/packager-ts", -"@parcel/", -"er-typescript-types", -[2,353,5369], -[2,5368,5370], -[0,1623,57], -[1,2343,5377], -"stringifier", -"heet", -"stylesheet", -[0,0,0,5378,2487], -[0,1623,207], -[1,2343,5380], -[0,0,0,5426,2537], -"@advanced-rest-client/arc-icons", -[3,5381,26], -[2,5382,3127], -[3,5381,22], -"-copy", -[2,1492,5385], -[2,5384,5386], -"-snippets", -[2,1501,5388], -[2,2655,5389], -[2,5384,5390], -[2,3115,592], -[2,5384,5392], -"@anypoint-web-components/anypoint-button", -[3,5394,34], -"collapse", -[2,5395,5396], -"drop", -"dropdown", -[2,5395,5399], -"item", -[2,5395,5401], -"box", -"listbox", -[2,5395,5404], -[3,64,17], -"mf-helper-mixin", -[2,5406,5407], -[3,64,20], -"annotation-document", -[2,5409,5410], -"body-", -[2,5412,1746], -[2,5409,5413], -"example-generator", -[2,5409,5415], -"ers-document", -[2,3193,5417], -[2,5409,5418], -"param", -"eters-document", -[2,5420,5421], -[2,5409,5422], -"responses-document", -[2,5409,5424], -[0,1623,6415,57], -"umentation", -[2,4117,5427], -[2,1965,5428], -[2,5409,5429], -[3,64,16], -"method-", -"label", -[2,5432,5433], -[2,2655,5434], -[2,5431,5435], -[1,2343,5448], -"lit-html", -[2,7623,594], -"demo-helper", -[2,5382,5440], -"-aut", -"horization", -[2,5442,5443], -[2,3424,5444], -[2,5384,5445], -[3,5397,35], -[0,5481,0,5485,2537], -"heckbox", -[2,5447,5449], -[3,5402,35], -[2,5451,1020], -[2,5395,592], -[3,64,21], -"odel-generator", -[2,5454,5455], -"navigation", -[2,5409,5457], -[3,5425,22], -"quest", -[2,5459,5460], -[3,5430,22], -"rver-selector", -[2,5462,5463], -[3,192,13], -"onfig-conventional", -[2,5465,5466], -"@open", -"-wc/eslint-config", -[2,5468,5469], -[3,5470,9], -"testing", -[2,5471,5472], -"@web/dev-server", -"@web/", -[2,5475,1187], -"-playwright", -[2,5476,5477], -[2,5438,4406], -[2,4524,5479], -[0,220,3681], -"api-co", -[2,5482,4961], -[2,5432,1745], -[0,1623,2741,6421,6422,3561,6425,6426,3585], -[1,2343,5487], -[0,5488,0,5492,34352], -[0,3688], -[3,465,9], -"typed", -[3,5428,9], -[0,1623,5317,6433,3561,6425,6434,3583,6435,6436,6437], -[1,2343,5503], -"-node/core", -[2,5491,5494], -[2,5490,5495], -[2,5489,5496], -"@wry/caches", -"@wry/", -"@hapi/eslint-plugin", -"equality", -[2,5499,5501], -[0,0,0,5507,2537], -"@wry/trie", -"optimis", -"optimism", -[0,1623,3681,6443], -"response", -"-iterator", -[2,5508,5509], -"symbol", -"-observable", -[2,5511,5512], -"ts-invariant", -"zen-observable-ts", -[1,2343,5524], -"@arethetypeswrong/cli", -[3,107,13], -"hange", -"log-github", -[2,5519,5520], -[2,5518,5521], -[3,5497,10], -[0,5538,5539,5543,2523], -"ools/merge", -[2,5523,5525], -[3,5526,15], -[2,5527,2844], -[2,5527,594], -"@size-limit/esbuild-why", -[3,5530,12], -"pres", -"et-small-lib", -[2,5532,5533], -[2,5531,5534], -"@tsconfig/node20", -"@types/f", -[0,6450,6452,6453,5930,6455,6457,5153,6463,6465,30874,6467,6470,6471,1437,1483,1525,1676,6473,2089,2070,6474,2709,2744,2753,6475,3060,6476,5303,3171,3188,3261,3730,27168,4135,6479,4351,4507,6481,4745,6482], -[0,6487,6488,19438,19181,442,603,826,4856,5245,6493,6494,4864,6497,6309,6498,6501,6503,6505,6507,4874,6510,5254,6512,6515,6519,6520,1009,1011,1429,6522,1509,6525,1719,1177,1938,1953,1982,2026,2151,6526,2899,3257,3421,1894,6527,4172,4193,4196,6530,4449,4474,4481,4508,91], -[2,4807,2609], -"-fetch", -[2,4874,5541], -[0,5472,5982,1649,6532,6533], -[1,2343,5548], -"use-sync-external-store", -[2,4807,5545], -"rule", -[0,5549,5553,5565,2537], -[0,1415,1437,1468,1483,2151,4468], -"rule-tester", -[2,1010,5550], -[2,1010,553], -[0,192,5467,4864,4866,5087,6541,6544,6547,1009,1011,1109,1481,1836,1177,1895,1955,2675,1192,6551,3165,3203,3403,1894,6552,6554,91], -"local-", -"local-rules", -[2,1921,5555], -[3,1961,20], -[2,5557,4643], -"graphql-", -"graphql-ws", -"patch-package", -[3,3829,12], -"boundary", -[2,5562,5563], -[0,6557,1745], -[1,5293,5567], -[0,8391,5568], -1730419200000, -"ts-api-utils", -[3,1913,9], -[2,4468,5570], -"wait-for-observables", -"web-streams-polyfill", -[1,2343,5577], -"apollo", -"client", -[0,0,0,2514,2537], -[1,2343,5579], -[0,0,0,2514,2487], -[1,2343,5590], -[3,66,10], -[2,5581,57], -[2,812,1172], -[3,1217,14], -"ource", -"-support", -[2,4226,5586], -[2,5585,5587], -[2,5584,5588], -[0,0,0,2514,2443], -[1,2343,5594], -"api", -"asyncapi", -[0,5595,5596,5597,4139], -[0,5192,27292,7605,5439,1437,1448,1623,7606,7608,7610,2822,1209,3105,5946,7612,7617,3124,7621,29457,4110,4213,4361,11143], -[0,7624,5200,7631,7632,7634,7637,4870,7639,7641,4874,7643,7677,23203,1165,668,7645,2600,26503,7648,3400,3561,3672,2278,26573,91,1984], -[0,1783,7650,1739,7651,1745,4990,2041,1179], -"@nicolo-ribaudo/eslint-scope-5-internals", -[1,2343,5605], -[3,1006,9], -[2,5600,671], -"-manager", -[2,1993,5602], -[2,1010,5603], -[0,5606,5607,5608,34352], -[0,4484,4548,7658,7660,7663,7664,7665,7668,7669], -[0,4493,7671,1177,1984,1894,1610,91,4874,7672,7674,7677,7678,7681,7685,7690], -[0,1721,5592,4030,7692,7693], -[3,81,22], -"ecorators", -[2,5609,5610], -[1,2343,5620], -[3,1143,16], -"concat", -[2,5613,5614], -"polyfill-es-shims", -[2,1199,5616], -"getownpropertydescriptors", -[2,3436,5618], -[0,5621,5622,5623,2537], -[0,1525], -[0,2899,1894], -[0,553,4532,1776,605,4508,1739,1745,7701], -[1,2343,5626], -[2,4850,72], -[0,5627,5628,5597,2523], -[0,7708,7709,7710,7715,7718,7721,354,7723,7725,4865,7729,7730,1091,1149,1168,7731,1437,1759,2075,2070,2600,2628,2670,2822,2854,3173,3181,3322,4167,4183,4213,4393,7734,7735,4648,4747], -[0,7737,7740,7744,7637,4870,7746,4874,7749,7752,4892,1009,1011,1178,668,1177,1966,2675,2990,1209,4468,4474,91], -[1,2343,5632], -[3,5625,28], -[2,5630,75], -[0,5633,5634,5597,2487], -[0,7605,1437,7608,7610,2822,1209,3105,5946,7612,7615,7617,3124,7621,4110,4213], -[0,53,5241,87,7634,5087,7637,4870,7639,7641,7759,4874,7643,7761,7762,7763,1165,1178,668,7645,1177,1966,2600,1192,7648,3561,3672,1894,3957,4468,91], -[1,5293,5641], -"mpat-data", -[2,52,5636], -[2,4850,77], -[3,5422,10], -[2,5236,5639], -[0,8391,5642], -1734825600000, -[1,2343,5644], -[0,5645,5646,5647,2537], -[0,5328,842,975,7788,1364,1437,1470,1536,7791,2040,2075,2141,7793,7794,2600,2856,3105,5944,3107,5946,7796,7797,3322,3742,2278,7798,7799,4227,4228,4232,7800,3709,3348,7801], -[0,192,5467,6061,6063,7804,7806,7808,7810,4864,7639,7641,4874,7812,7814,7816,7819,7822,1009,1011,1414,7824,2151,2675,3758,3951,4131,91], -[0,38,5995,27,5130,7826,7827,7828], -[1,2343,5649], -[0,5654,5661,5664,2399], -[3,5226,21], -"imports", -[2,5650,5651], -[3,5617,22], -[0,7833,7837,7839,7840,19344,7847,842,7858,1165,1393,1628,1630,1177,1895,1955,1959,1961,2203,2675,16860,3177,3561,3618,3678,2278,4111,4307,4320,4323,5978,7873,4409,2924,4677,4686,4689], -"corejs2", -[2,5653,5655], -[3,5656,28], -[2,5657,1278], -[3,3957,11], -[2,5653,5659], -[0,7849,2990], -[3,99,21], -[2,5662,1278], -[0,4967,4329,7880,676,6435,1237,7881], -[1,2343,5667], -"@edsdk/n1ed-react", -[0,5668,5670,5671,34352], -[0,7639,1429,1437,3025,3105,3467,3718], -"derequire", -[0,27134,4856,7889,4874,7895,2675,2990,1894,91,1984], -[0,1804,1739,1745,5592,91,7897,7900], -[1,2343,5673], -[0,5703,5705,5708,2523], -[3,5279,24], -"option", -[2,5674,5675], -"bugfix-firefox-class-in-computed-class-key", -[2,79,5677], -[3,5678,21], -"safari-", -"-initializer-scope", -[2,4803,5681], -[2,4626,5682], -[2,5680,5683], -[2,5679,5684], -[3,5685,28], -"id-destructuring-collision-in-function-expression", -[2,5686,5687], -"v8-spread-parameters-in-optional-chaining", -[2,5679,5689], -[3,5690,25], -"-class-fields-redefine-readonly", -[2,3346,5692], -[2,5691,5693], -"private-", -[3,3746,11], -"-object", -[2,5696,5697], -[2,5695,5698], -[2,69,5699], -"generators", -[2,1152,5701], -[0,5652,97,7905,7907,7910,7913,1573,1874,7915,4227,7917], -[2,4850,1229], -[0,53,7922], -"static-", -[2,5706,1359], -[0,592,1832,89,1623,7165], -"ions", -"assertions", -[2,2701,5710], -[2,4850,5711], -[3,5712,29], -"ttributes", -[2,5713,5714], -[3,5712,28], -[2,5716,5207], -[1,2343,5719], -[0,5720,5722,5708,2537], -[0,362,7931,7910,7932,7933], -"logical-assignment-operators", -[0,7935,91], -[1,2343,5724], -[0,5725,5726,2514,2523], -[0,97,362,7943,7910,7946,7933], -[0,7935,7948,89,91], -[1,2343,5729], -"meric-separator", -[0,0,0,2514,4139], -[1,2343,5733], -"ptional-catch-binding", -"neotraverse", -[0,5735,5794,5795,2523], -"haining", -[0,1996], -[2,4850,5699], -"top-level-await", -[2,4850,5737], -"-sets-regex", -[2,3656,5739], -[2,4850,5740], -"arrow-functions", -[2,5236,5742], -[3,5743,25], -"sync-", -[3,1626,9], -[2,2168,5746], -[2,5745,5747], -[2,5744,5748], -[3,5749,30], -[2,5750,1222], -"-scoped-functions", -[2,1359,5752], -[2,5236,5753], -[3,5754,34], -[2,5755,3642], -[2,5236,1229], -[3,5757,30], -[2,5758,5707], -[3,5757,29], -[2,5760,3595], -[3,5757,25], -"omputed-properties", -[2,5762,5763], -"destructuring", -[2,5236,5765], -[3,5766,25], -"otall-regex", -[2,5767,5768], -"uplicate-keys", -[2,5767,5770], -[3,5771,34], -"named-", -"capturing-groups-regex", -[2,5773,5774], -[2,5772,5775], -"ynamic-import", -[2,5767,5777], -"expo", -"nentiation-operator", -[2,5779,5780], -[2,5236,5781], -[3,5782,28], -"rt-namespace-from", -[2,5783,5784], -[3,5240,25], -"or-of", -[2,5786,5787], -"unction-name", -[2,5786,5789], -[3,2854,11], -[2,5791,591], -[2,5236,5792], -[0,1414,2931,2899,8099,1177,3456,4039,4042,4135,8098,1894,4614,91,3401,5601,1006,17529,4057,5552,4071,1011,8097], -[0,1177], -"literals", -[2,5236,5796], -[3,5797,25], -"ogical-assignment-operators", -[2,5798,5799], -[3,5241,25], -"ember-", -"ion-literals", -[2,2026,5803], -[2,5802,5804], -[2,5801,5805], -[3,5241,32], -"amd", -[2,5807,5808], -[2,5807,4376], -"umd", -[2,5807,5811], -[2,5236,5775], -[3,5813,25], -"ew-target", -[2,5814,5815], -"ullish-coalescing-operator", -[2,5814,5817], -[3,5818,26], -[2,5819,5728], -[2,5236,77], -[3,5821,31], -[2,5822,4340], -[3,5821,25], -[2,5824,5731], -[3,5825,34], -[2,5826,5734], -[3,5640,25], -"rivate-methods", -[2,5828,5829], -[3,5830,32], -[2,5831,5698], -[3,5830,26], -"operty-literals", -[2,5833,5834], -[3,83,25], -"egenerator", -[2,5836,5837], -[3,5838,26], -"d-words", -[2,4146,5840], -[2,5839,5841], -"short", -[2,3619,1228], -[2,5843,5844], -[2,5236,5845], -[3,5846,25], -[1,2343,5868], -"pread", -[2,5847,5849], -"ticky-regex", -[2,5847,5851], -[2,5236,1243], -[3,5853,25], -"ypeof-symbol", -[2,5854,5855], -"unicode-", -[2,5857,1106], -[2,5236,5858], -[3,5859,32], -[2,4635,1108], -[2,5860,5861], -[2,5860,1108], -"sets-regex", -[2,5860,5864], -[2,88,5260], -[2,1593,4097], -[0,0,0,5869,2523], -[0,5284,6939,1177], -[1,2343,5871], -[0,5872,5884,5885,2537], -[0,8110,1461,8111,1757,2017,8113,6327,8114,3127,3191,8116,3502,8119,3555,3725,3744,8122,4213,8123,8126,8127], -"act-jsx", -[2,5839,5873], -[3,5874,30], -"display", -"-name", -[2,5876,5877], -[2,5875,5878], -"-development", -[2,5874,5880], -"pure-annotations", -[2,5875,5882], -[0,8129,8130,8132,4856,8136,4863,8139,5087,8141,8144,8146,8147,4874,8149,5090,4880,4883,8152,8155,4891,8157,4892,1009,1011,8158,1311,1567,1584,1593,1596,1628,1651,1843,8160,8161,1177,1938,1959,1961,2135,2651,2675,1192,2822,8163,8165,3190,3471,1894,3720,3775,89,3824,3836,4039,4167,4201,4307,4315,4468,4474,4484,91,8166,1002,2924,4677,4681,4693], -[0,8168,8170,8171,6975,8172,8173,1745,8175], -[1,2343,5887], -[0,5890,5892,5893,2537], -[3,5856,28], -[2,5888,1508], -[0,8181], -[3,1261,12], -[0,90,972,4880,4883,1030,89,3824,8187,1541], -[0,8190,8191,5399,4403,8192,8194,89,3824], -[1,2343,5895], -[0,0,0,5897,2537], -"pirates", -[0,8199,2414,8201,8203,6941,8204,1623,2278,6400,5122,8206,6884], -"clone-deep", -[1,2343,5900], -[0,0,0,5901,34352], -[0,8199,2414,8201,8203,447,8211,1623,2278,6400,5122,8206,6884], -[1,2343,5903], -[0,5904,0,5905,4139], -[0,8218], -[0,2414,7176,8220,1017,8221,1367], -[1,2343,5907], -[0,5904,0,5905,2537], -[1,2343,5909], -[0,0,5910,5911,2487], -[0,53,8229,87,90,92,192,5467,442,449,7008,452,6061,21120,6063,966,968,972,5087,4880,4883,1393,1423,1570,1610,1177,1895,1938,1939,1947,1955,1959,1961,1976,1982,2203,2675,1192,2780,1894,3720,89,3824,4039,4131,4468,4474,4493,91,4523], -[0,8220,2132,89,5284,8221,45], -[1,2343,5913], -[0,5914,5916,5918,34352], -[0,3951], -"to-fast-properties", -[0,5087,4874,1009,1011,1177,1879,1883,1895,1938,1939,1947,1955,1192,2794,1894,4468,4469,4474,4508,91], -[2,29288,594], -[0,91,5130,36,5995,3469], -[1,2343,5920], -[0,5937,5958,5964,4139], -"@api", -"devtools/json-schema-ref-parser", -[2,5921,5922], -[3,105,13], -"web-", -[2,5925,4963], -[2,5924,5926], -[3,221,10], -"gherkin-streams", -[2,5928,5929], -"@iframe-resizer/child", -[3,5931,16], -"parent", -[2,5932,5933], -"awilix", -"bpmn-js", -[0,8245,457,1804,8248], -"of", -"-allof", -[2,4381,5939], -[2,2845,5940], -[3,3107,13], -"bbr", -[2,5942,5943], -"ttrs", -[2,5942,5945], -[3,3112,14], -"detabs", -[2,5947,5948], -"multim", -"d-table", -[2,5950,5951], -[2,3108,5952], -[3,4923,13], -"lantuml-ex", -[2,5954,5955], -"task", -[0,8252,4874,1009,1011,1610,1804,8256,1177,1879,1883,1895,1938,1947,1955,1894,4469,4474,4508,91], -"-lists", -"task-lists", -[2,3108,5960], -"-viewer-element", -[2,3512,5962], -[0,91,5130,1804,36,5995], -[1,2343,5976], -"prince", -"svg-", -"pan-zoom", -[2,5967,5968], -[3,4369,11], -[2,5970,1724], -"reso", -"urce-inliner", -[2,5972,5973], -[2,5925,5974], -[0,5979,5916,5984,34352], -"-scss", -[2,4323,5977], -[0,457,8263,8264,24156,1364,2863,3951], -"md", -"bpmn", -"bdd", -"feature", -[0,91,5130,2026,3469,36,5995], -[1,2343,5986], -[0,5987,5988,5991,2487], -[0,31740,8271,8272,8273], -[0,8275], -"exit-hook", -[2,1152,5989], -[0,2220,8277,1745,1783,8278], -[1,2343,5994], -"loki", -[0,5996,5997,5998,2523], -"backend", -[0,32359,6446,8273,8272], -[0,8286,8275], -[0,467,2220,8277,1745,1932,1783,8278], -[1,2343,6012], -[3,107,12], -"y-release-plan", -[2,1133,6001], -[2,6000,6002], -[3,6003,13], -"ssemble-release-plan", -[2,6004,6005], -[3,5522,25], -"onfig", -[2,5518,6008], -[2,6000,2656], -"dependen", -[0,6013,0,6046,2537], -[0,53,87,8292,8294,8296,1165,1195,8297,1593,1610,1628,1630,2092,8301,3177,3561,3618,8304,2278,8306,4111,4383,4027,2924,4677], -"ts-graph", -[2,6011,6014], -[2,2183,6015], -[2,6000,6016], -[3,6017,16], -"release-", -"plan", -[2,6019,6020], -[2,6018,6021], -[3,6017,13], -[2,6023,2403], -[2,6000,2942], -"pre", -[2,6000,6026], -[2,6000,3917], -"-skip-package", -[2,4170,6029], -[2,6000,6030], -[2,6000,553], -"write", -[2,6000,6033], -"@man", -"ypkg/get-packages", -[2,6035,6036], -"editor", -[2,26670,26671], -"human-id", -"mri", -"p-limit", -"pref", -"erred-pm", -[2,6043,6044], -[0,2924,8309,8310,4967], -"spawndamnit", -"term", -"term-size", -[1,2343,6051], -[0,6053,6054,6060,2487], -"@mui/x-internals", -[0,8317,8320,8321,8324,8325,8328,8330,8333,8335,8337,8339,8341,8344,8346,8348,8350,8353,8354], -[0,8357,5500,8358,8359,8362,8364,4874,2036,2812,91], -[3,110,23], -[2,6055,592], -[3,449,25], -"free", -[2,6057,6058], -[0,5130,27,5592,5122], -"@semantic-release/changelog", -[3,6061,18], -[2,6062,3358], -"hub", -[2,6063,6064], -[2,1457,20], -"peer-deps-external", -[2,4049,6067], -[1,5293,6075], -"chat", -"reactjs", -" interface", -[2,4569,6072], -"ui kit", -[0,8391,6087], -"unication", -[2,1514,6076], -"conver", -"sation", -[2,6078,6079], -"toolkit", -"library", -"reusable", -"feed", -"social", -"talk", -1724872768784, -[1,2343,6089], -[0,6090,6091,6093,2523], -[0,8506,3776], -[0,192,5467,8509,8511,6061,6063,16480,1177,2675,2742,8512,2990,1894,4131,1984], -"ckeditor", -[0,1776,1894,4298,1745,5284], -"ckeditor 5", -"-feature", -[2,1459,6095], -[3,6096,10], -[2,6097,1932], -"dll", -[2,6097,6099], -[1,2343,6102], -[0,6103,6104,6114,2537], -[0,5917], -[0,11976,8520,26364,966,968,972,974,4874,4880,8524,8527,8528,8529,1030,1091,8531,1092,6685,8534,8536,6809,7250,1610,8537,8556,8538,7091,8539,2812,2832,8540,3165,8543,8544,8547,3400,89,3824,3833,3951,7080,7103,91,8550,7114,1983,8552,1984,6482,4763], -"wysiwyg", -"rich text", -"Editable", -[2,1563,6107], -"edit", -"editing", -"angular2", -"angular 5", -"ng", -[0,6659,7020,7130,6663,3833,6482,2812,7080,91,4763,7114,6809,7091,8558,7209,7250,7103,1091,7196,6685,8560,8561,8556,29291], -[1,2343,6116], -[0,6117,5795,6118,2537], -[0,4548], -[0,8571,8572,8573,8570,1885,8574,5592], -[1,2343,6120], -[0,6121,6122,6123,2523], -[0,8579,8582,8585,8181,3021], -[0,4039,188,4639], -[0,188,8588,8591,4967,5130,181,12,4627,4963,5001,837], -[1,2343,6125], -[0,6128,6129,6130,2537], -[3,153,22], -[2,6126,2389], -[0,7905,542,1668,3021], -[0,8597,4039,188,4639], -[0,188,8588,8591,4967,5130,181,4627,4963], -[1,2343,6146], -"ditor-balloon", -[2,151,6132], -"@jest/pattern", -"oper", -"al transformation", -[2,5218,6136], -[2,6135,6137], -"ot", -"colla", -"boration", -[2,6140,6141], -[3,6142,11], -[2,6143,4936], -"real-time", -[0,6149,6150,6151,2537], -"build", -[2,6097,6147], -[0,31874,8604,8605,8611,34224,8612,4174], -[0,8616,8608,4874,91], -[0,8618,8619,8620,1299,200,1523,6876,8622,1836,8623,1179,8624,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,8632,8633,4989,2184,8634,7009,6621,181,8635,4758,8636], -[1,2343,6153], -[0,6154,6155,6156,2399], -[0,4484,2735,8641], -[0,1192,2278,1437,2020,4146,8643,1177,4042,2151,2774,1894,4320,5087,4874,8645,6376,8647,30071,4328,8648,8651,8653,8654,8656,8659,8660,8661,1895,1011,8665,816,8669,8671,1009], -[0,2733,5130,8673,5131,1896,8674,8675,1591,1804,8677,8678], -[3,6133,27], -[2,6157,128], -[1,2343,6160], -[0,0,6161,6162,2537], -[0,4874,668,1894,4384,4483,4508], -[0,200,6876,8691,4964,7201,4719,176], -[1,2343,6169], -[2,117,2414], -"lignment", -[2,112,6165], -[3,132,9], -[2,6157,6167], -[0,6170,0,6171,2537], -[0,8697], -[0,91,1541,3421,1973,4504], -[1,2343,6174], -[2,6157,134], -[0,6175,6176,6177,2537], -[0,8703,8710,8712,8714,1461,8716], -[0,8719,842,968,972,974,7677,1177,1895,8724,2832,89,3824,91,1983,1984], -[0,4627,4963,8727,4964,5130,4967,8728,8729,5128,89,181,1487], -"blurhash", -[1,2343,6180], -[0,6181,6182,6183,2537], -[0,8744,6134,8752,8762,8755,554,4874,1107,1437,1458,29680,2215,8769,8734,8750,8765,8758,2797,8771,8737,8739,8746,2798,8747,8741,3170,3717,4207], -[0,8782,8776,8780,8778], -[0,1166,1172,4504,8784,2022,3497,8786,8787,2765,1192,2832,2899,8788,8790,2907,8791,8795,8745,4384,4389,1973,5472,91,2282], -[1,2343,6185], -[0,6186,0,2514,2537], -[0,6134,8801,8809,8806,4874,4892,1437], -[1,2343,6188], -[0,6189,6190,6191,2487], -[0,8818,1091,1092,1209], -[0,549,8826,1009,1011,1166,8832,1177,1895,1938,1955,2832,3421,1894,3875,8824,4039,4042,4052,4076,4079,4232,4474,4484,4508,91], -[0,1669,25,1781,8836,4967,1179,6847,7020,8838,2860,2844,8839,8691,8841], -[2,6097,1095], -[1,2343,6194], -[0,6195,6196,6198,2523], -[0,8846,1673,1209], -[0,7948,370,618,622,626,811,8850,816,6373,4863,5087,4880,4883,1009,1011,8158,1584,1843,1177,1895,1938,1955,1959,1192,2780,2832,3421,1894,89,3824,4039,4042,4052,8849,8853,4076,4079,4230,4468,4469,4484,4508,91,2924,4677,4681,555,560], -[3,191,21], -[0,29,3902,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], -"atchdog", -[2,6197,6199], -[1,2343,6202], -[0,6203,6204,6205,2487], -[0,1209], -[0,8862,4863,5087,8860,4880,4884,1009,1011,8158,1610,1843,1177,1895,1938,1955,1959,1192,2832,3421,1894,89,3824,3876,3875,8824,4039,4042,4052,4076,4079,4468,4484,4508,91,555], -[0,89,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], -[1,2343,6207], -[0,6208,6209,2514,2537], -[0,6059,8918,8923,8928,8926,8934,8921,8913,8931,8932,8894,8916,8892,8897,8906,8900,8887,8910,8902,8890], -[0,8937,5087,1192,4039,91], -[1,2343,6211], -[0,6212,6213,6218,34352], -[0,1110,1282,1437,1537,8942,2070,8944,2822,8947,3072,3181,3188,8949,4039,8951,8952,8954,8957,8959,4431,4562,4600,4603,8962], -[0,1173,8966,1255,1264,1596,1672,2835,2899,3421,8967,4100,4193,4255,4597], -"ndo", -[2,183,6214], -"select-all", -[2,117,6216], -[0,2278,4329,1623,2295,1745,4298,699], -[1,2343,6220], -[0,0,0,6221,2399], -[0,8980,8984,8987], -[1,2343,6223], -[0,6224,6225,6226,2523], -[0,8605], -[0,546,8997,8998,2992], -[0,2991,2992,200,5957,3392,9000,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], -[1,2343,6228], -[0,6229,6230,6231,2487], -[0,8703,1497,3867,9008,9011,4507], -[0,89,3824], -[0,4963,4964,4967,6082,3286,3287,89,181,630], -[1,2343,6233], -[0,6234,6230,6235,4139], -[0,1497], -[0,9026,4963,1666,4967,6082,3286,3287,3811,89,6901,181,630], -[1,2343,6237], -[0,0,0,6238,2523], -[0,4967,582,6082,3286,3287,89,6687,6649], -[1,2343,6240], -[0,0,6230,6241,2487], -[0,4963,8622,4967,6082,5066,3286,3287,89,181,630], -[1,2343,6243], -[0,6244,6230,6245,2487], -[0,9041,3911], -[0,4963,4967,6082,3286,3287,9044,9045,9047,89,181,630], -[1,2343,6247], -[0,6248,0,6249,2537], -[0,9054,595], -[0,89,3286,3287,181,4963,630,6082,4967,1501,5342,5341,9057], -[1,2343,6251], -[0,6252,0,6253,2399], -[0,1497,1639], -[0,89,3286,3287,181,6082,4967,1832,7165,7297], -[1,2343,6255], -[0,0,0,6256,2523], -[0,89,3286,3287,6082,4967,6687,582,6649], -[1,2343,6258], -[0,6259,0,6260,2537], -[0,1497,3847,3559,3744,97,9075,9076,9071,9074,3911,2609,4808], -[0,89,5128,5027,3132], -[1,2343,6262], -[0,6263,0,6264,2537], -[0,97], -[0,89,5128,5027,3132,45], -[1,2343,6266], -[0,0,6267,6273,2537], -[0,1192,3348,2675,1177,1209,1593,4474,4508,1894,1317,48,1193,91,53,5087,7819,3400,4870,107,192,5366,87,1978,3957,1895,1955,4514,92,603,9089,1011,5467,1009,61,78,76], -"color-parse", -"color-", -"convert", -[2,6269,6270], -"vanilla-colorful", -[0,1781,5592,9091,9093,1753,9094,4525,91,4799,5995,6400], -[1,2343,6275], -[0,6276,0,6277,2523], -[0,9100], -[0,1219,1783,9102,89,3984], -[1,2343,6279], -[0,6280,6281,6282,2399], -[0,608,606,1687,1209,3181,814,4135,4227,91,9111,9110,9113,9119,9121], -[0,9125,4870,5251,5254,1177,29339,9130], -[0,91,8172,9132,9133,9134,8623,1745,6432,4056,7897,4042,6374,4643,9135,9136], -"@aws/durable-execution-sdk-js", -"vue.js", -"vue component", -" component", -[2,6284,6286], -[1,2343,6289], -[0,0,6290,6291,2537], -[0,1177,9125,9141], -[0,6869,1745,2295,4298,9132,57,4255], -[1,2343,6293], -[0,6294,6295,6291,2537], -[0,1091,9153,814,606], -[0,1177,9156,5251,9125,9141], -[3,192,12], -[2,6296,1671], -[2,6296,671], -[3,6298,13], -"oad", -[2,6299,6300], -[2,6296,3917], -[2,6296,553], -[1,2343,6310], -[3,6303,13], -[2,6305,4467], -[2,6296,594], -[3,4872,14], -[2,6308,1698], -[0,0,6311,6312,2523], -[0,6283,33639,9163,9167,4874], -[0,9169,9170,9171,9172,9173,9174,33959,33964], -[1,2343,6314], -[0,6321,6322,6340,4139], -[3,195,10], -[2,6315,2997], -"ngd-transformer", -[2,6315,6317], -".native", -[2,1367,6319], -[0,615], -[0,609,9167,4507], -"decache", -"-plugin-", -[2,6324,3665], -[2,3079,6325], -"lunr", -"openc", -"ollective-postinstall", -[2,6328,6329], -"os-name", -"pdfmake", -"sort", -"tablesort", -"vis-network", -[2,6337,6338], -[3,10088,18], -"-list", -[2,10217,6341], -[0,9169,9170,9171,9172,9173,9174,9182,9183,8172,6671,9184,9186], -"icky", -[3,197,10], -[2,6342,553], -[1,2343,6350], -"semantic", -"actor", -"messages", -[2,698,9352,6349,10029], -"scroll-b", -[0,0,6353,6356,2537], -[2,6352,1633], -[3,6348,22], -[0,9193,609,9167,4874,9196], -"cms", -"management", -[0,9169,9170,9171,9172,9173,9174,1383,614], -[1,2343,6358], -[0,0,0,6359,2523], -[0,9203,4967,9204,1283], -[1,2343,6361], -[0,6362,6363,6364,2537], -[0,9213,9215,9217,9218,9219,9221], -[0,192,5467,9225,9226,8648,9227,6494,9231,9237,4874,5542,24360,9240,9241,1170,1364,1527,1594,1610,1652,9242,2026,9243,9244,2131,2212,2559,2832,3310,9245,4218,4220,9247,4339,4342,1531,91,4548,1984,9250,9252,9255,2924,9258,4729], -[0,705,9261,27,2671,4738,4731,1612,9262,3212,4158,5472], -[1,2343,6366], -[0,6263,0,6367,2537], -[0,89,5128,9267,3132,5027,45], -[1,2343,6394], -"@doc", -"search/js", -[2,6369,6370], -"@popperjs/core", -[2,812,4068], -"bundle", -"bundlewatch", -[2,1462,20], -"find-u", -"nused-sass-variables", -[2,6377,6378], -"hammer", -"-simulator", -[2,6380,6381], -"hugo-bin", -"-istanbul-reporter", -[2,2886,6384], -[2,1868,2903], -[2,2898,6386], -"mbine-duplicated-selectors", -[2,3573,6388], -[2,4049,2759], -"twbs-bootstrap", -[2,4942,6391], -"vnu-jar", -[0,6397,0,6401,2487], -"-first", -[2,5131,6395], -[0,1497,9272,9273,3744,624,97], -"responsive", -"front-", -"front-end", -[0,89,5128,9267,3132,5027,620], -[1,2343,6403], -[0,6404,0,6405,2537], -[0,1497,1639,3847,9272,9273,3744,624,97,6372,3911,9284,4808], -[0,89,5128,9267,3132,5027], -[1,2343,6407], -[0,6408,0,6409,34352], -[0,1497,1639,9272,9273,3744,97,4782,9293], -[0,89,5128,9267,623], -[1,2343,6411], -[0,6412,0,6414,2537], -[0,97,9273,4808,1497,3744,3911,6052], -"media", -[0,89,5128,9267,9300,3132,5027,3812,9301,9302], -"media query", -[1,2343,6417], -[0,6418,6419,6420,2523], -[0,9307,9308,9310,9311,9312,9313,9315,9316,9317,1461,1473,9319,9321,9322,2070,2226,9324,9327,9329,9334,9337,9340,3988,9343,9347,9348,9351,4507,4549,4555,2924,9354,9355], -[0,9357,9359,9362,9363,4880,4891,1165,1540,3286,3613,89,3824,3958,4383,4493,91,9364,9367,9368], -[0,9102,1745,3287,1783], -"matches", -"polyfill", -[3,3668,9], -"lugin", -[2,6423,6424], -"pseudo", -[1,2343,6428], -[0,6429,0,6430,34352], -[0,9375,9376,9378,9379], -[0,1098,1745,1179,9381,9382,5592,9383,9384], -[1,2343,6438], -[3,4325,11], -[2,6432,591], -[3,217,11], -"utility", -"variables", -"vars", -[0,6439,0,6430,2443], -[0,4484,628], -[1,2343,6441], -[0,6442,0,6430,2523], -[0,3958,9393,3971,3978,7610,9396,9401,2584,4555,9405,9407,9409,1437,9348,4549,4292], -"specificity", -[1,2343,6445], -[0,6459,6460,6480,2523], -[2,6447,25240], -[3,465,19], -[3,221,11], -"i-environment", -[2,6448,6449], -[2,3228,5709], -[2,221,6451], -[3,5930,17], -[3,5930,18], -[2,6454,594], -[2,2617,4525], -[2,5928,6456], -"message", -[0,9414,1690,1431,9417], -[0,1429,1363,2899,1177,9420,4039,9422,4474,2182,1894,91,4856,4874,9424,1325,1951,1938,1895,1955,1011,9426,1009,634,9431,9437], -"-streams", -[2,6458,6461], -[2,5928,6462], -[3,6463,17], -[2,6464,591], -"tag-expressions", -[2,5928,6466], -[3,5710,9], -"-error-formatter", -[2,6468,6469], -"capital-case", -[2,4250,57], -[2,3827,6472], -"has-ansi", -"knuth-shuffle-seeded", -[2,3060,5056], -"resolve-pkg", -"argv", -"string-argv", -[0,9439,9440,9422,5472], -"util-arity", -"yup", -[1,2343,6506], -"ompa", -"tibility-kit", -[2,6484,6485], -[2,6448,6486], -[2,5928,3766], -"-xml", -[2,4856,6489], -"@types/d", -"irty-chai", -[2,6491,6492], -[2,4861,674], -"@types/h", -"as-ansi", -[2,6495,6496], -[2,6309,5056], -"@types/l", -"uxon", -[2,6499,6500], -"@types/m", -[2,6502,1950], -"ustache", -[2,6502,6504], -[0,6531,6534,2514,2523], -"@types/mz", -[3,5090,10], -"gress", -[2,6508,6509], -"inon-chai", -[2,5051,6511], -[3,6512,12], -"js__fake-timers", -[2,6513,6514], -[3,4890,9], -"-buffers", -[2,2187,6517], -[2,6516,6518], -"@types/tmp", -"exclude", -[2,1432,6521], -"xml", -"chai-xml", -[2,5313,671], -"genversion", -"reindent-template-literals", -"stream-t", -"o-string", -[2,6528,6529], -[0,9501,9452,9510,638,9496,9493,641,9479,9456,9459,643,9449,9448,9485,2613,9472,3084,3181,3368,9465,3386,9462,3397,3483,9476,3727,9447,9490,9469,4135,4248,9451,9455], -"gherkin", -"tests", -[0,9516,26037,9515,1317,9520,3297,4384,4393,9512], -[1,2343,6536], -[0,6537,6538,6542,2523], -[0,9493,9479,2070,3181], -[0,9516,9515,4384], -[3,6503,10], -"k-fs", -[2,6539,6540], -[0,3378,3409,2977,200,9527,637], -"-compare", -[2,5254,6543], -[3,6512,9], -"gnale", -[2,6545,6546], -"mock-pro", -"cess", -[2,6548,6549], -[2,2769,6550], -[2,4135,6543], -"signal", -"signale", -[1,2343,6556], -[0,0,6538,6558,2399], -"deven", -[0,3378,200,640], -[1,2343,6560], -[0,6561,6562,2514,2487], -[0,641,9479,9539,640,3727,4707], -[0,9516,9515,9542,4384], -"toobject", -[3,3568,10], -"urable", -[2,1541,6565], -"promises", -"ReactiveX", -"WeakSet", -"ES3", -[1,2343,6576], -"cloudsearch", -"uninstall", -"windows", -"cjk", -[0,6595,6603,6604,2523], -"negative", -"shar", -"shared", -"Symbol.toStringTag", -"full-width", -"Object", -"Array.prototype.flatMap", -"Uint8", -"ClampedArray", -[2,6584,6585], -"start", -"starter", -"infer", -"ence", -"inference", -[3,6583,17], -"indLast", -[2,6592,6593], -[0,9547,9548,9550,3105,2745,9552,9554,9556,9558,9560,9562,3023,9563,4110,7610,9565,9566,3032,9568,3114,9569,9573,9577,5961,9580,9584], -"replay", -"[[Prototype]]", -"es7", -"cloud", -"ion", -"formation", -[2,6599,6601], -[0,2070,2899,1448,4255,9586,1389,9588,4257], -[0,9591,3987,2195,9593,1783,5980,1745,9595,1936,3378], -"look", -"last", -"regular expression", -"ECMAScript 2023", -"hot", -"rm -fr", -"chinese", -[1,5293,6617], -"consume", -"look-up", -"ES8", -"rgb", -[0,8391,6628], -"deep-copy", -"iam", -"ES2022", -"tty", -"status", -"length", -"view", -"dom-t", -"esting-library", -[2,6625,6626], -1734998400000, -"elb", -[1,2343,6655], -"getter", -[3,6608,13], -"19", -[2,6632,6633], -"macos", -"__proto__", -"asserts", -"deepclone", -[3,2779,11], -[2,6639,591], -"crypt", -[3,6634,14], -"8", -[2,6642,6643], -"push", -"monorepo", -"lone", -"fast-clone", -"state", -"lru", -[2,1177,1541], -"endpoint", -"a11y", -"weakmap", -[0,6656,0,6658,2537], -[0,666], -"streams2", -[0,9621,9622,8174,9623,9624,9625,9626,9627,9628], -"scheme", -".json", -[2,3383,6660], -"ajax", -"hookform", -[1,2343,6672], -"autoscaling", -"packages", -"linux", -"rfc4122", -[3,2069,10], -[2,6669,1585], -"JSON", -[0,6675,0,6658,2399], -"matchAll", -"iterate", -[0,3420,4484], -[1,2343,6679], -"structuredClone", -"trim", -[0,6682,0,6658,2537], -"@cfcs/core", -[3,3518,11], -[0,683], -"findLast", -[1,2343,6699], -"arktype", -[3,3833,10], -[2,6686,591], -"prototype", -"sigint", -"sinatra", -"Object.", -"value", -"values", -[2,6691,6693], -"reduce", -"reducer", -"Function.prototype.name", -"lockfile", -[0,6712,6717,6658,2523], -"full", -"fullwidth", -"groupBy", -"wait", -"duplex", -"css less", -"helpers", -"optimize", -"optimizer", -"emr", -"nodejs", -"defineProperty", -[0,29309,1797,4484,4135,4748,3181,1836], -"pyyaml", -"call", -"bind", -"callbind", -[0,1192,3420], -"styleguide", -[1,2343,6722], -"watchFile", -"code ", -[0,6730,6736,6744,2537], -"code points", -"Index", -[2,6683,6724], -"Map", -"flatMap", -"l10n", -"WebSocket", -[0,4484,677,666,3527,27921,4480], -"utilities", -"high", -"er-order", -[2,6732,6733], -"dataview", -[0,3420], -"handling", -[2,3827,6737], -"define", -"ebs", -[2,1177,1932], -"estree", -[2,6642,2855], -[0,9621,9647,9623,9628,9648,9649], -[1,2343,6756], -"ES2015", -[3,6608,11], -[2,6747,1278], -"operati", -"ng-system", -[2,6749,6750], -"RegExp#flags", -"loading", -"range", -"rangeerror", -[0,6757,6736,6767,2537], -[0,4484,677,4135,666,91], -"accessor", -"ESnext", -"limited", -"RFC-6455", -"URLSearchParams", -"es-shim API", -"col-buffers", -[2,4900,6764], -"lesscss", -[0,9621,9623,9657,9658,9628,9659], -"nce", -"sequence", -" system", -"file system", -[1,2343,6785], -"pnpm9", -"metadata", -"YAML", -[3,3405,12], -"ES2023", -"es2015", -"simpledb", -"hasOwn", -[2,5010,6972], -"debugger", -" zero", -[2,6577,6783], -[0,6815,0,6819,34352], -"fast-copy", -"spinners", -"predictable", -"ES6", -"rm", -[3,6583,16], -"contain", -"contains", -[2,6791,6793], -"japanese", -[3,6608,14], -[2,6796,1274], -[2,20413,2659], -"byteOffset", -"setter", -"Object.keys", -"flags", -"key", -"ender", -"ponyfill", -[2,20413,8124], -"logging", -"sns", -[2,4626,1155], -"ses", -"output", -"worker", -"export", -[2,1204,6813], -[0,4484,677,682,666], -"tester", -"waf", -"setImmediate", -[0,9621,9624,9667,9626,9627,9628,9649], -"typedarrays", -"walking", -"descriptor", -[1,2343,6826], -"hardlinks", -"buffers", -[0,6833,6736,6851,2443], -"typesafe", -"Set", -"CSS", -"es-abstract", -"agegateway", -[2,4268,6831], -[0,1437,4484,2687,4135,1513,9673,3530,666,3527,27921,53,1710,2858,3404,683,97,29309,87,4232,7913,9676,92,83,71,5757,9678], -[2,6838,1172], -"cloudfront", -"7", -[2,6642,6836], -[3,13067,16], -"ES2019", -[2,6855,6872], -"reuse", -"acter", -"character", -"prese", -"rve-symlinks", -[2,6844,6845], -"input", -[3,1461,9], -"Underscore", -"ec2", -[0,9621,9623,9624,9680,9681,9628,9648,9649], -[1,2343,6861], -"indicator", -"AsyncIterator", -"@vue/cli", -"performant", -"folder", -"Stream", -"0", -"ES2020", -[0,6862,0,6880,2537], -[0,4484,677,682,666,672,9687], -[2,6822,591], -"te", -"delete", -"arraybuffer", -[2,6579,6866], -"emit", -"TypeScript", -"batch", -"rds", -[3,4075,18,6], -[2,6896,11100], -"Uint16Array", -"password", -[3,1519,12], -" manager", -[2,3383,6877], -"mru", -[0,9621,9624,9625,9626,9627,9628,9649], -"byteLength", -"rate", -"css ", -"variable", -[2,6883,6884], -[1,2343,6895], -"speed", -"own", -"has-own", -".env", -"elm", -"ast", -"6", -[2,6747,6893], -[0,6900,6736,6880,4139], -"@vue/cli-", -" compiler", -[2,695,6897], -[3,3938,9], -[0,4484,677,4774,29540,666,26784,672,18052], -"time", -[2,1955,12054], -"bundling", -[2,6916,1987], -"Uint32Array", -[1,2343,6908], -"minimal", -[0,6909,6736,6658,34352], -[0,3420,1437,4484,4135,1836,3530,666,4748,29309], -"collection", -" css", -"nested css", -"slice", -"has", -"sorted", -[3,4079,15], -"iteration", -"ES2021", -"Float32Array", -"regular", -"idle", -"column", -"Iterator", -[1,2343,6927], -"throttle", -"guid", -[0,6928,6934,6936,2537], -[0,687,9704,9706,9708,1676,4135], -"watching", -"sqs", -"vue 3", -"less css", -"glacier", -[0,9712,4856,6503,4874,5254,1429,1488,1567,1177,1891,1893,9714,2205,2899,4193,4474,91], -"sett", -[0,1890], -"settings", -"ascii", -[3,1920,13], -"break", -"inter", -[1,2343,6978], -"internal", -[2,6691,3437], -[2,6747,6836], -"Array", -"Buffer#slice", -[2,6946,6947], -"s3", -"shrinkwrap", -"sham", -"art", -"safe", -":*", -[2,664,6954], -[3,6677,9], -[2,2382,6956], -"Property", -[2,6780,6958], -"korean", -"regexp", -[2,1367,6911], -"beanstalk", -"ES5", -[2,3632,6911], -"take", -[3,6962,10], -[2,6967,695], -"tdd", -"jQuery", -"enum", -"-vanilla", -"enumerable", -"hot-shots", -"JSON-Schema", -"workflow", -"CSSStyleDeclaration", -[0,6982,6984,6936,2523], -"route53", -"wordbreak", -"columns", -[0,9704,9706,1676,2205,2755,4484], -"formatting", -[0,4856,9723,4870,6503,4874,9725,8610,1429,1567,1177,1891,1893,9714,1209,2899,3752,4474,91], -"one", -"fastclone", -"shebang", -"number", -[1,2343,6992], -"ache", -"elasticache", -[0,6995,6999,7000,2537], -[2,6838,7005], -"concurrency", -[0,1107,1112,9730,1480,1676,1797,2179,2709,2755,2984,3181,4135,4290,4351,27921,9731,4720,4726], -"bundler", -"amazon", -"toSorted", -[0,5467,19438,691,9712,9736,9737,5366,4856,9417,9740,5245,9741,9723,6503,4874,9743,6513,9746,9749,8610,1317,1429,1431,1529,1610,1177,1891,1895,2675,2990,9750,2899,3421,1894,4172,4193,4474,4481,91], -[0,1890,200,1523,9753,57,7058,6478], -"chromium", -"obj", -"await", -"move", -"unit-mocha", -"symlink-dir", -"persistent", -[2,11169,7036], -"terminal", -"coercible", -"ES2016", -[1,2343,7013], -[0,7030,7032,7034,2487], -"identifiers", -"includes", -"swf", -"readable", -"protobuf", -"form-", -"validation", -[2,7019,7020], -"RxJS", -"busy", -"fps", -[2,6965,1278], -"-0", -"Observable", -"mixins", -"parents", -[0,688], -"typeof", -[0,5467,19438,9736,9737,4856,6503,4874,1429,1529,1177,1891,1895,2675,2990,2899,1890,1894,4172,4474,91], -"interrupts", -[0,9760], -"fastcopy", -"brands-svg-icons", -"prune", -[3,6583,20], -[2,7038,2395], -[2,7027,591], -"Microtask", -[2,3768,7041], -[1,2343,7063], -"es2018", -"circular", -"streams", -"runtime", -"make", -"serializ", -[2,7049,5218], -"limit", -"Dispatcher", -[2,2013,7052], -"balancing", -[2,3001,7054], -"es2016", -"WebSockets", -"args", -"ath", -"jsonpath", -[2,6796,1276], -"visual", -[0,7066,7068,7079,2537], -"positive", -"es-shim", -[0,7725,9767,9771,9774], -"every", -[0,9778,9781,9783,9785,9786,4874,7677,668,2086,2070,3297,1894,9794,91,4548,1984], -"trimRight", -"mimetypes", -"handlers", -"ratelimit", -"signals", -"rmdir", -"es8", -"findup", -"stable", -"robust", -[0,9796,2195,4030,9797], -"superstruct", -".es6", -[2,6910,7081], -"intrinsic", -[3,6948,11], -"curl", -"symlinks", -"ES2018", -[1,2343,7093], -"writable", -"rapid", -"io-ts", -"weak", -[0,7095,0,7097,2537], -"throat", -[0,9804,9807,9810,9811,9813,9815,9819,9821,9829,9834,9838,9841,9843,9846,9848,9849,9850,9852,9855,9856,9858,9861,9862,9864,9866,9869,9871,9873,9874,9875,9878,9933,9935,9937,9938,9940,9941,9945,9949,9953,9955,9957,9960,9964,9967,9969,9971,9974,9977,9979,9983,9985,9986,9989,9991,9993,9996,9998,10001,10004,10006,10007,10009,10013,10014,10016,10019,10021,10024,10026,10027,10030,10032,10034,10037,10041,10044,10047,10048,10049,10051,10053,10055,10058,7127,10060,10063,10065,10066,10068,10075,10077,10081,10083,10084,6336,10088,10092,10094,10097,10102,10105,10107,10110,10114,10117,10119,10126,10128,28711,10130,10131,10132,10134,10135,10137,10139,10142,10144,10145,10146,10147,10149,10151,10153,10156,10159,10162,10163,10165,10167,10170,10173,10178,10180,10183,10186,10188,10191,10193,10195,10197,10198,33633,10200,10201,10203,10204,10206,10207,10208,33138,10210,10213,10216,10219,6339,10223,10226,10228,10229,10230,10231,10234,10235,34233,10237,10239,10241,10245,10247,10248,10249,10250,10253,10255,10260,10262,10264,10267,10269,10272,10273,10275,10276,10278,10280,10283,10285,10290,10291,10292,10293,6348,6351,10295,10300,10302,10304], -"restful", -[0,188,8588,4967,10307,4963,10309,10310,10313,10315], -"deep-clone", -"Rx", -"symlink", -"vpc", -"whatwg", -"typanion", -"Float", -"64Array", -[2,7104,7105], -"$.extend", -"Promise", -"Reactive", -"Extensions", -[2,7109,7110], -[1,2343,7113], -[0,7118,7124,7097,2523], -"vest", -"from", -"-package", -[2,3250,7116], -[0,28591,29506,1473], -"parsing", -"or", -[2,4358,7120], -".inspect", -[2,614,7122], -[0,10321,4493], -"fromEntries", -[2,6691,7125], -[2,10056,1631], -"getopt", -"-validation", -[2,6659,7129], -"filter", -"Emitter", -[2,2013,7132], -"URL", -"fixed-width", -[1,2343,7137], -[0,0,7138,7097,4139], -[0,48,53,87,2071,2323,2332,2361,2367,2450,10327,10328,4039,4320,4323,4361], -[1,2343,7140], -[0,0,7142,7097,4139], -"encryption", -[0,48,53,87,2323,2332,2361,2450,4039,4320,4323], -[1,2343,7154], -"TypedArray", -"isConcatSpreadable", -"StyleSheet", -"create", -"mkdir", -"mkdirs", -"zero", -"sameValueZero", -"linewrap", -"side", -[0,0,0,7156,2537], -"listeners", -[0,10337,10339,10340,5122,5995,977], -"censor", -"watcher", -"typeerror", -[1,2343,7166], -"make dir", -"bound", -"patch", -"in-js", -"css-in-js", -[0,7173,0,7186,2537], -"deepcopy", -"setPrototypeOf", -"characters", -"pipe", -[2,6747,2855], -"Push", -[0,10347,10348,703,10351,10353,10354,10355,10357], -"trail", -"cloudtrail", -"awesome", -"sauce", -[2,7176,7177], -"banner", -"redux-t", -"oolkit", -[2,7180,7181], -"dete", -"rministic", -[2,7183,7184], -[0,10337,10339,10340,5122,5995,990,705], -[1,2343,7195], -"extension", -"lazy", -[3,1705,10], -[2,7190,6877], -"es2017", -"search", -"ES2017", -[0,7203,0,7206,2523], -"TypeBox", -" in css", -[2,6436,7197], -"Streams", -"aws", -"console", -"Reflect.getPrototypeOf", -[0,10363,3171,10367,10351,703,10370,10373,706,711,10374], -"directory", -[2,6607,591], -[0,10337,10339,10340,5122,5995,10376], -[1,2343,7216], -"colour", -"nope", -"flag", -[3,2982,14], -"syntaxerror", -[3,3904,10], -[2,7213,1974], -"kinesis", -[0,7217,0,7225,2537], -[0,3171,10382,10373], -"rm -rf", -"exit-", -"exit-code", -"ES7", -"jsdiff", -"private", -"slot", -[0,10337,10339,10340,5122,5995,10376,710,10384], -"sigterm", -"group", -"less.js", -"gdpr", -"east-asian-width", -[3,6820,10], -"Int32Array", -"argument", -"compile", -" less", -[2,7234,7235], -[1,2343,7238], -[0,7240,7243,7246,2537], -"callbound", -[0,10389,1170,1364,1437,2026,2220,2222,2659,2674,2817,1209,3776,10397,38,13781], -"callback", -"installer", -[0,48,53,87,10401,4856,9417,6494,10406,4870,6503,10410,4874,10413,6513,6512,24164,1009,1011,1429,1431,10417,1587,1177,1881,1883,1895,1915,10419,1938,1951,2899,3297,3421,1894,3752,4039,4193,4196,4232,4494,91], -"256", -"tostringtag", -[0,10426,10427,5284,10430,5472,10432], -" data", -[2,7223,7247], -"uted-types", -[2,1534,7249], -"nel", -"channel", -"iterator", -"mapreduce", -[2,7017,3101], -[3,5804,10], -[1,2343,7261], -"less mixins", -[2,6796,6859], -"forEach", -[0,0,0,2514,2399], -"description", -"Symbol", -[1,2343,7266], -"generics", -[0,7267,0,7269,2487], -[0,3509], -"stdlib", -[0,6649,6355,89,188,3709,1542,91,5284,4967,5995,2202,181,2130,38], -"typed array", -[1,2343,7273], -"call-bound", -[0,7274,7277,2514,2537], -[0,10593,10594,10596,10597,10600,10602,10603,10604,10605,10606,10608], -"WeakMap", -[2,6691,3426], -[0,4856,6503,1429,1628,1863,2297,2881,2895,2897,2900,2904,2899,4039,4940,4307,4508,91,2924], -[1,2343,7279], -[0,0,7280,7281,2537], -[0,8648,10614,816,10615,966,968,13204,4874,10616,1637,1177,28727,10619,32765,10621,2203,2832,3561,3566,1894,10624,10627,3980,10630,10632,4042,4057,4076,4333,4474,4484,4494,4508,10633,4514,10636,10638,10639,10643,30098,91,10646,4614,32507], -[0,6653,7320,10655,10650,10648,1623,4964,9204,10657,10656,1745,10052,10667,1936,10661,4374,3430,5284,10651,10663,4386,10665,10658,10654,10659,91,8295,4270,28842,89,582], -"stateless", -[3,6670,11], -[2,7283,6647], -"telephone", -"some", -"efficient", -"_.extend", -"wget", -[3,6594,18], -"lter", -[2,7290,7291], -"remove", -[1,2343,7302], -"soft", -"Microsoft", -"styling", -"ie", -"HyBi", -"Int16Array", -"cloudwatch", -[0,7304,7306,2514,2537], -"css nesting", -[0,10675], -"mime-db", -[0,10708,10703,10691,10706,1178,10688,1700,10677,1937,2151,10697,2323,2338,2384,2419,2496,2508,10686,10678,3159,3493,10683,10681,4431,91,10687], -[1,2343,7312], -"dynamodb", -[2,6642,6893], -"phone", -"Int8Array", -[0,7314,7321,7322,4139], -".prototype.flags", -[0,1091,1758,4449,10739,2070,2278,1149,9892,10761,4747,1177,4039,4135,4072,4734,2026,10752,10756,1290,1457,1764,2720,1894,4171,1513,10753,10757,1389,10754,2689,3160,3310,53,3429,10760,104,10759,58,692,4228,10746,101,10737,4005,4562,5216,10748,87,10738,10755,90,10721,1942,3957,68,10723,2851,10744,4851,92,10731,10734,10751,5874,10728,5756,10720,5818], -[3,7313,11], -[2,7315,6913], -[2,7084,7316], -"access", -"ibility", -[2,7318,7319], -[0,4389,10763,4232], -[0,10765,4643,200,5130,6400,10766,5131,10768,5995,8889,10769,10771,5256,10772,7028,5198], -[1,2343,7324], -[0,0,7325,7326,34352], -[0,1177,6059,10777,10779,10780,10783,10785,1613,1615,10786,2151,2735,10788,27921,33050], -[0,10791,5130,10792,45,10793], -[1,2343,7328], -[0,7329,7330,7331,34352], -[0,3763,2813,10800,10799,2771], -[0,2675,89,4426,1177,4042,1651,2924,1894,10852,3824,4270,91,5087,4874,4880,10846,10858,3889,10855,10810,192,10837,4883,3885,10805,4057,10808,2686,1959,1879,1938,4073,10848,10854,10828,10831,972,1895,1947,1955,811,10851,10821,4023,10817,10840,968,1011,1961,10815,10841,10811,816,10825,974,10827,4531,5467,1883,10844,1009,6068,10836,5700], -[0,89,4426,10860,10863,10865,10866,10867,10868,4967], -[1,2343,7333], -[0,7334,7335,7337,2523], -[0,26364,5917,2696,3875,3950,4022], -[0,5517,53,5652,603,10874,10875,10876,966,972,30788,974,10879,10883,7729,10886,4874,10887,4880,4883,4892,1009,1011,1170,668,10888,1177,1895,1898,1935,1938,1947,1955,1959,1961,2151,2731,2832,2854,3244,3310,1894,3765,89,3824,4039,4201,4484,4493,4494,91,8550,8552,1984,4747], -"quote", -[0,3875,89,6588,6081,6696,6913,2696,2700,7182], -[1,2343,7339], -[0,7340,7341,7342,2537], -[0,10895,10897,2007,20378,10898,3090,3530], -[0,8850,816,10902,10904,4042,4227,4232,91], -[0,4042,1932,3378,5260,10906,3209], -[1,2343,7344], -[0,7345,7346,7347,2399], -[0,10895,5251,1699,10912,814], -[0,53,5889,5583,811,8850,1856,4042,4227,10916], -[0,4042,1932,6778,3378,5260], -[1,2343,7352], -[2,7350,7351], -[3,818,9], -"gent-chat", -[0,7354,7355,7356,2537], -"microdiff", -[0,1415,4449,1594,1983,1437,2205,3188,3539,668,2026,10923,2602,4213,1457,10947,10925,10927,10929,2858,10930,10931,10933,10935,606,10936,10939,10940,1030,10942,608,603,9110], -[0,10944,3348,89,1177,4039,10946,1984,1894,3824,6520,91,9227,4874,7819,2990,4880,4892,3401,10949,6494,4883,4131,4315,10951,1959,1895,1947,1955,1011,1961,3708,10960,1009,10964], -[0,10946,9134,6869,8172,10966,8623,1745], -[1,2343,7359], -[2,819,6706], -[0,7360,7361,7362,2523], -[0,10973,10981,10984,2161,7610,7353,3266,188,7349,10990,10992,28910,11005,7358,10975,10995,8079,29841,10996,10978,7374,10999,11003,28843], -[0,23531,8648,29273,11016,5337,11018,2611,2832,89,11022,4383,1983,11026,11033,1984,11039,7387,11041,28988], -[0,4627,1745,3452,11043,4386,8124,188,8588], -[1,2343,7364], -[0,7365,7366,7367,2537], -[0,11049,7610,10975,8079,7387], -[0,11051,6798,6806,2078,1983,1984,4745,818,11039], -[0,5592,1745,2078,3452,8124], -[1,2343,7369], -[0,7370,7371,7372,2537], -[0,11064,11065,11066,1699,11071,11073], -[0,11075,11076,11079,11080,11082,11083,4856,6494,11085,6503,1170,1364,1414,1610,2026,2633,2899,11086,3750,4261,4474,91], -[0,13428,1388,11862,11861,11857,8210,11088,8214,27718,8791,181,4967,1098,89,188,5982,6969,1973,5472], -[1,2343,7376], -[2,7375,582], -[3,11003,12], -[0,7377,7378,7379,2399], -[0,11064,11065,11066,11093,1699,11073], -[0,11075,6503,11096,11105,11109,11111,11112,1170,1414,1610,2899,11086,11113,4261,824], -[0,13428,1388,11862,11861,11857,8210,11088,8214,27718,8791,181,4967,5982,6969,1973,5472,824,11116,11117], -[1,2343,7381], -[0,7382,7383,2514,2537], -[0,11124], -[0,11126,11130,11133,11134,11138,668,2675,2832,2990,2899,3421,1894], -[2,10829,45], -[1,2343,7386], -[0,7388,7389,7390,2537], -[2,11004,23], -[0,89,3824,11143,602,7384,11146,11151], -[0,1983,89,4451,3555,29318,3824,16485,91,9311,3975,4880,30157,6271,7610,32415,3120,10895,28829,3968], -[0,1739,1745,4270,29043,10824,11156,29045,1783,29181,6718,25172,4627,4963,89,188,1098,3709,5926], -[1,2343,7392], -[0,7393,7394,7395,2487], -[0,11161,11164,5145,11168,97,8597,449,11172,452,456,11175,11179,11182,11185,11186,11188,1325,11189,1461,1582,1673,11191,11192,5561,11193,11196,11197,11199,11201,11202,11204,11207,5060,11208,11210,11212,11213,11216,11219,11220,11221,11223,11224,11225,11228,11231,11233,3787,11235,11236,11238,11240,11242,3788,11244,11246,11249,11251,3789,3810,11253,11257,11261,3906,11264,4426,4427], -[0,5076,53,11267,11271,368,7948,11273,11274,10875,11275,10821,10825,10827,10828,11277,11282,11285,10837,10841,11288,966,968,972,974,11290,5087,11292,11296,11300,11301,4870,8149,11303,11305,4880,11307,4882,4883,11312,11315,11317,11320,11322,1009,1011,11325,11331,11333,1195,11335,1437,1448,1610,11336,1789,11343,8161,1177,1879,1895,1915,1924,1938,1939,1947,1948,1959,1961,10851,1982,2071,11345,2151,2193,2070,2665,2675,2686,2696,2697,2720,2758,1192,11347,2771,2780,2784,11348,11350,2814,2832,11356,5102,2990,1209,11357,3213,3445,1894,3703,3717,3725,3730,3763,11360,11362,11363,89,3807,3817,3820,3824,4934,11366,11368,11371,11374,3885,11377,11378,3984,3985,11380,11382,11383,4135,4183,4201,4320,11384,11389,4323,11396,11397,4072,4474,4508,91,11400,4676,11401,11405], -[0,5127,4627,4963,4964,5130,4967,89,5128,181], -[1,2343,7397], -[0,7398,7399,7400,2537], -[0,11413,11416,11417,11420,11421,11422,2161,1209,11428,11434,4443,3348], -[0,549,4870,11438,7819,1759,1999,3400,3421,11439,4469,11440,4494,1984,4677,4693], -[0,11442,11443,11445,11446,11449,11448,11450,11451,11452,11453,11454], -[2,11425,7402], -"-fork", -[2,12213,7404], -[3,12229,13], -[1,2343,7407], -[2,7408,594], -[0,7409,7399,7400,2523], -[3,7403,15], -[0,11413,11416], -[1,2343,7411], -[0,7412,7413,7400,2537], -[0,11417,11420,11421,11422,7401,2161,2674,1209,11426,3310,11428,11430,11434,4443,3348], -[0,11436,4870,4874,11438,7819,1166,1759,3400,1894,11439,4469,4474,11440,4487,4490,91,2924,4677,4693], -[1,2343,7415], -[0,7416,7417,7418,2487], -[0,2203], -[0,107,7844,11470,1177,1895,1953,1972,3709,91,4523], -[0,1177,1541,7625,3709], -[1,2343,7420], -[0,7421,7422,7423,2523], -[0,26364,23826,11477,1082,977,11478,11479,2929,3090,11480,11481,5152,4200], -[0,13471,8648,840,11485,4874,5162,11486,4042,3709,4359,91,1983,1984], -[0,5130,11489,3709,5167,1983], -[1,2343,7425], -[0,7427,7428,7429,2523], -"location", -[0,30023,11501,1699,3090,11497], -[0,2278,1983,3709,5245], -[0,11504,11506,1983,3709], -[1,2343,7431], -[0,7432,7434,7435,2523], -[0,53,11516,87,90,92,11518,11520,11522], -"routing", -[0,1195,3150,4027,2924], -[0,11525,8221,89,2924,11526], -"redirect", -[1,2343,7438], -[0,7439,7440,7441,2523], -[0,11533,11534], -[0,11536,28491,1610,91], -[0,11538,11539,1172,91,9561,2924,11540], -[1,2343,7443], -[0,7444,7445,7446,2523], -[0,1367,6372], -[0,2070,2323,1192,2278,4039,3561,1894,1587,2504,4320,2464,91,4874,1165,2482,3678,4330,11598,11592,11591,11595], -[0,4329,4963,5926,11600,11601,6082,8727,181,4967], -[1,2343,7448], -[0,0,2667,7449,2399], -[0,11608,11609,11612,11613,190,11615,11617,4967,91,5284,11619,11622,11624,11626,11627,11630,11631,11633,11634,11636,11639,11640,32767], -[1,2343,7451], -[0,4424,4429,4442,2537], -[1,2343,7453], -[0,7454,7455,7456,34352], -[0,97,1562,4484], -[0,53,83,87,92,19181,442,8648,5583,811,816,6373,10615,11796,4874,1009,1011,1208,1177,1895,11935,11938,11940,11943,3401,1894,4042,11802,4172,11803,91], -[0,965,1936,11806,11807,5284,11815,8221,91], -[1,2343,7458], -[0,7459,7460,2514,2537], -[0,11821], -[0,972,30788,4880,4883,1030,1597,3401,89,3824,5564,7464,27122], -"pkgroll", -[1,2343,7468], -"create-vue", -[2,7467,7472], -[2,7466,7469], -"create-e", -[3,11821,16], -[0,7459,7470,7471,2523], -"slint-config", -[0,3709,4355,5160,1972,11827,1011,27122,840], -[0,32401,3766,3709], -"persist-client-core", -[1,2343,7474], -[0,7475,7476,7477,2537], -[0,11833], -[0,11835,5087,1009,11837,1177,1886,11840,1895,1955,1958,1192,2780,2821,1776,3165,4468,4469,91], -[0,11842,11843,11846,11847,6875,4967,5576,4978], -[1,2343,7479], -[0,7480,7481,7482,2523], -[0,97,966], -[0,1651,91,11853,3400], -[0,5472,1651,181,965,11857,6564,11861,11862], -[1,2343,7484], -[0,7485,7486,7487,2537], -[0,11357,11869,3527,3717,97,51,11868,11871], -[0,2832,91,11853,1393,1423,11875,968,11884,11879], -[0,5472,181,965,2832,2275,11857,6564,11861,11862], -[1,2343,7489], -[0,7490,7491,7492,2537], -[0,11891,11869,11890,3527,63,11871], -[0,2832,2022,4042,1984,91,11853,11893,3717,11899,811,11884,11896], -[0,5472,965,1192,2832], -[1,2343,7494], -[0,7495,7496,7497,2399], -[0,1437,11891,2777,3717,11907], -[0,1192,2675,89,1177,1894,48,1527,91,53,5087,4880,3720,3857,97,4131,5091,3904,11909,1652,4889,5085,5103,11912], -[0,5472,1975,1192,3857], -[1,2343,7499], -[0,6263,7500,7501,2523], -[0,966,968,4880,4883,1437,11918,2777,11853,3401,89,3824,4039,91], -[0,5472,89,181,965,2832,2275,11857,6564,11861,11862], -[1,2343,7503], -[0,0,7504,7505,2537], -[0,2742,2832,89,2022,668,4474,11944,3824,11890,91,11853,4880,11875,11952,11943,11931,11938,11929,966,11948,11935,972,11933,11940,968,5556,11925,6515,1915,11924], -[0,7214,6627,89,5472], -[1,2343,7507], -[0,7508,0,7509,2487], -[0,10347,11959,978,989,991,993,996], -[0,11961,38,5995,27,5130,5592], -[1,2343,7511], -[0,0,0,7512,34352], -[0,11961,10339,10340,5122,5995,977], -[1,2343,7514], -[0,0,0,7515,2443], -[0,11961,10339,10340,5122,5995,2947,977], -[1,2343,7520], -"fp", -"drag", -"react ", -[0,7533,7536,7537,2537], -"animation", -[2,7519,7521], -"pure", -"fantasy-land", -[2,4570,7046], -[3,5941,12], -[2,7526,1155], -"framer", -[3,7527,19], -[2,7529,6600], -"pose", -"tacit", -[0,11974], -"balanced", -"react pose", -[0,1414,4494,2675,91,4874,975,11976,192,11978,5467], -[0,11961,10339,10340,5122,5995], -[1,2343,7539], -[0,0,0,7540,2487], -[0,11961,10339,10340,5122,5995,984], -[1,2343,7542], -[0,0,0,7543,34352], -[0,11961,10339,10340,5122,5995,986,11988,10345], -[1,2343,7545], -[0,7546,0,7547,2537], -[0,987], -[0,11961,10339,10340,5122,5995,988,2739,11995,11996], -[1,2343,7549], -[0,7550,0,7551,2487], -[0,10347,12003,1001,1003], -[0,11961,10339,10340,5122,5995,990,705], -[1,2343,7553], -[0,7554,0,7555,2537], -[0,11974,3171,12011,978,980,12016,991,997], -[0,11961,10339,10340,5122,5995,10376], -[1,2343,7557], -[0,7558,0,7559,4139], -[0,11959], -[0,11961,10339,10340,5122,5995,38], -[1,2343,7561], -[0,7562,0,7563,2523], -[0,3171,985,12027], -[0,11961,10339,10340,5122,5995,10376,710,10384], -[1,2343,7565], -[0,7566,0,7567,34352], -[0,3171,12027], -[0,11961,10339,10340,5122,5995,990,705,1000,5284], -[1,2343,7569], -[0,0,0,7570,2487], -[0,11961,10339,10340,5122,5995,990,705,1002,3634,3766], -[1,2343,7572], -[0,0,0,7573,2523], -[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094], -[1,2343,7575], -[0,7576,0,7577,34352], -[0,12099,12103,12104,12105,4484], -[0,12108,7188,5995,11100,6740,5592], -[1,2343,7579], -[0,7580,7581,7586,2443], -[0,2687,5569,12118,1012,12121,12123,12124,5604], -[0,1091,3127,1984,1894,12126,9363,4880,3117,12127,4555,8818,7677,3137,12133,5551,12137], -[2,7583,7584], -[3,439,8], -"react/eslint-plugin", -[2,5557,26375], -[0,1177,6741,6939,91], -[1,2343,7588], -[0,7589,7590,7591,2487], -[0,1676,5552,12124,5604,12145], -[0,1984,7677], -[0,6892,5286,5284,91,57,5341,1177], -[1,2343,7593], -[0,7596,7590,7599,2523], -"point-free", -"curried", -[0,5552,439,5604,12145], -"gestures", -"3d", -[0,1177,91,6742], -[1,2343,7601], -[0,7602,7622,7626,4139], -[0,365,370,12159,1461,12160,12163,1832,12166,12170,2609,1209,12172,3220,3744,12173,11202,12175,11216,11224,3787,3789,3849,11374,3911,4023,4163,4649,12176], -[3,346,11], -"abs-extension", -[2,7603,7604], -"cssfilter", -"root-node-polyfill", -[2,2183,7607], -"slugger", -[2,2287,7609], -"deflist", -[2,3108,7611], -[3,5953,13], -"eta", -[2,7613,7614], -"sup", -[2,3108,7616], -[3,3125,13], -"rule-", -[2,7619,6706], -[2,7618,7620], -[0,48,53,61,71,83,85,87,90,92,192,5467,968,972,4859,5540,4870,12179,4880,4883,1009,1011,12182,12184,1170,1178,1193,1195,12186,1210,12191,12193,1527,12195,1628,1652,1843,1845,8160,1177,1959,1961,2092,2151,2651,2675,1192,12196,11348,12198,2990,3177,3222,3463,1894,3786,89,3824,3895,3904,4257,4307,4320,4946,12201,12205,12206,91,4537,4027,2924,4676,4677], -[3,346,10], -[2,7623,5891], -[3,1879,13], -[0,89,5128,4627,4963,4967,12208], -[3,3703,9], -[2,7627,1541], -[1,2343,7649], -"sconfig", -[2,7603,7630], -"@types/css", -"ithub-slugger", -[2,5246,7633], -[3,4869,9], -"-yaml", -[2,7635,7636], -"arkdown-it", -[2,6502,7638], -"-attrs", -[2,7639,7640], -"anitize-html", -[2,5051,7642], -[2,1368,4406], -[2,668,7644], -[3,5961,13], -"estgen", -[2,7646,7647], -[0,7652,0,7653,2523], -"yandex", -"yfm", -[0,1497,2813,1209,3266,12224,9355,12220,12226,12233,12217,12222,2626,12215,12219,12232,12216,7406,7403], -[0,6108,6038,5130,1936,12236,1932,6106,12214,6105], -[1,2343,7655], -[0,7670,0,7691,2523], -"magic-", -"bytes.js", -[2,7656,7657], -[3,347,11], -[2,7659,614], -"discord-", -"api-types", -[2,7661,7662], -"@sapphire/snowflake", -[2,7659,6910], -[3,7664,10], -"async-queue", -[2,7666,7667], -"@vladfrangu/async_event_emitter", -[0,1018,1025], -"turbo", -[2,7659,3888], -[3,4828,16], -[2,7673,1803], -"@vite", -"st/coverage-v8", -[2,7675,7676], -"@favware/cliff-jumper", -"-pretty", -[2,4525,7679], -[2,1876,7680], -"extract", -"extractor", -[2,4610,7683], -[2,7659,7684], -"esbuild-", -"plugin-v", -"ersion-injector", -[2,7687,7688], -[2,7686,7689], -[0,10039,12244,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], -"discordapp", -"discordjs", -[1,2343,7695], -[0,7696,0,7697,2537], -[0,12253], -[0,1017,12255,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], -[1,2343,7699], -[0,7670,0,7700,2537], -[0,6847,12260,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], -"generated", -[1,2343,7703], -[0,7704,0,7705,4139], -[0,12265,1025], -[0,1022,12268,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], -[3,5923,13], -[2,4364,57], -[2,7706,7707], -"@aws-sdk/client-s3", -[2,7623,5576], -[1,2343,7712], -[0,0,0,7732,2487], -"ranslation", -[2,3118,7713], -[2,7623,7714], -[3,7715,11], -"ermaid-extension", -[2,7716,7717], -"openapi-", -[2,7719,7188], -[2,7623,7720], -"yfm2xliff", -[2,352,7722], -[3,692,9], -[2,7724,364], -[3,4869,11], -"-safe", -[2,2849,7727], -[2,7726,7728], -"@yandex-cloud/nodejs-sdk", -"bem-cn-lite", -[0,594,12274,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], -"nanostores", -"threads", -[2,7734,4406], -[1,2343,7741], -[2,4807,1149], -[3,4856,10], -"lk", -[2,7738,7739], -[0,7742,7753,7754,2523], -[0,3763,1594,2026,1000,1536,12286,12285,12287,12284,1032], -"tml-escaper", -[2,6495,7743], -"ime-types", -[2,6502,7745], -[3,5055,9], -"elljs", -[2,7747,7748], -"@types/t", -"ar-stream", -[2,7750,7751], -[0,1192,4135,4468,4342,1193,91,53,9227,5087,4874,12292,11976,6494,12290,9240,7806,7708], -[0,12294,4967,970,12295,12296,5983,6802], -[2,12302,26070], -[1,2343,7757], -[0,7764,7765,7766,2537], -[3,7639,15], -[2,7758,671], -[3,7730,14], -[2,7760,7625], -[2,7760,7628], -[2,7760,2190], -[0,34690,12301,7733,28314,7755,12305,12307,28554], -[0,4481,4494,4493,1983,2675,1177,4039,12309,1984,668,3561,23535,4320,3350,3541,28464,4201,4360,91,4874,2990,3400,4880,29000,29038,11976,30684,17214,4328,33264,33385,34203,4523,34205,7677,33382,5517,5530,34207,4323,12312,32818,5535,12315,30630,11396], -[0,11608,12318,12319,12322,12324,12326,12328,12329,12331,11612,12334,12336,11010,12337,12338,190,12339,4967,91,12342,12346,12348,12349,12350,11619,11622,11624,12354,12355,11640], -[1,2343,7768], -[0,7769,7770,7771,2523], -[0,1593,4376,53,1393,3090,87,3957,12361,5658,5660,5778,5810], -[0,20378,1983,1082,1531,3527], -[0,4967,1983,11504,1028], -[1,2343,7773], -[0,7774,7775,7776,2487], -[0,53,12370,12372,28465,10879,3878], -[0,30521,89,3824,28865,1531], -[0,1172,27158,89,3878,1983,11504], -[1,2343,7778], -[0,7779,7780,7781,2523], -[0,1012,2071,4523,4630], -[0,5536,4874,1177,1988,2020,7461,1894,4494,91,1984,188], -[0,188,7463,7465,1177,91], -[1,2343,7783], -[0,7784,7785,7786,2399], -[0,1091,1092,12384,2657,12385,3509,38,4151,7707,5971,4745], -[0,2026,2899,4255,4342], -[0,2026,3452,8124,1745], -[3,980,17], -[2,7787,57], -"encrypt", -"encrypter", -[2,1576,7790], -[2,3115,1623], -[2,2287,7792], -"greenlock-express", -"memoryst", -[2,7795,147], -"minisearch", -"selfsigned", -"sitemap", -"sql.js", -"workerpool", -[1,2343,7825], -"ody-parser", -[2,4853,7803], -"mpression", -[2,4860,7805], -"-session", -[2,6494,7807], -"ormidable", -[2,5537,7809], -"mpts", -[2,6508,7811], -[3,7643,9], -[2,7813,367], -"ql.js", -[2,5051,7815], -"@types/u", -"uid", -"@types/uuid", -"@types/w", -"orkerpool", -[2,7820,7821], -"wasm", -[2,7686,7823], -[0,7829,7830,7831,2523], -"razor", -"sqlite", -"aspx", -[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12405,12406,1582,1699,12409,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,3788,11244,3789,3810,5564,3846,12435,12438,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12444,12445,4549,4555,12447,1002,12448,12449,12452], -[0,192,5467,7634,12455,12458,7637,12459,4874,12461,8149,4880,4882,4883,12462,12463,12467,1177,10321,2071,2079,12471,12472,2675,2990,1894,3706,3708,89,3824,4320,4474,91,1984,12473,12475], -[0,1179,12445,2924,89,12478,12479,1783,4963,1745], -[1,2343,7835], -"@dnd-kit/core", -[3,7833,9], -[0,0,7841,7843,2537], -"modifiers", -[2,7834,7836], -"sortable", -[2,7834,7838], -[2,7834,6731], -[0,4874,1009,1011,1177,1881,1938,4039,4042,4076,91], -"ui-components", -[0,5995,12586,12588,12589,12590,12592,12593], -"@stylistic/eslint-plugin-js", -[3,7844,11], -[2,4324,1932], -[2,7845,7846], -[1,2343,7852], -"@wordpress/api-fetch", -[3,7849,11], -"block-", -[0,7853,7859,7860,2537], -[0,12600], -"ion-", -[2,7854,1464], -[2,7682,7855], -[2,5313,7856], -[2,7850,7857], -[0,53,5241,87,94,12602,12604,6503,4874,1145,1503,12607,1177,2297,2881,2886,2895,12609,2897,2900,2910,2899,3400,3421,3456,4039,4042,4045,12611,4055,4067,4071,4075,12613,4474,12614,91], -[0,12616,7102,2013,2018,12617,12618,12621,12622,12620,6553,1858], -[1,2343,7864], -[2,7153,694], -[2,5335,7862], -[0,7865,7866,7867,2523], -[0,3173,12627], -[0,3421,2899,1177,1693,1954,1938,1958,1903,1948,1970], -[0,1563,12631,8316,1080], -"promis", -"ify-", -[3,1455,13], -[2,7869,7870], -[2,7868,7871], -"swc-loader", -[1,2343,7875], -[0,7876,7878,7879,2523], -[0,1149,1362,1209,3230,1552], -"ol", -[0,2899,1429], -[0,2663,1081,5122], -"mixin", -"WordPress", -[1,2343,7883], -[0,7884,0,2514,2399], -[0,1082], -[1,2343,7886], -[0,7896,7898,7899,4139], -[3,4872,15], -"amelcase", -[2,7887,7888], -[3,7746,9], -"nimist", -[2,7890,7891], -[3,5090,9], -"etty-ms", -[2,7893,7894], -[0,1170,1437,1525,2088,2151,2720,3467,7956,4183], -".d.ts", -[0,811,8850,816,10615,12654,4864,12656,4866,4874,4039,4042,8849,11054,4076,12206,4484,4487,91], -[0,200,1085,188,89,12659,12660,91,6710], -"definitions", -[1,2343,7902], -[0,0,7903,7904,2537], -[0,1429,2685,2899,1894,4039], -[0,2056,3164,12666,4560], -[2,363,3428], -"memoize", -[2,363,7906], -[3,370,10], -"erialize", -[2,7908,7909], -[3,1212,14], -"acros", -[2,7911,7912], -"root", -"find-root", -[1,2343,7918], -"stylis", -[0,0,7923,7924,2523], -[3,5272,14], -"d-nodes", -[2,7919,7920], -[2,1174,7921], -[0,2899], -[0,12674,1087,2124,12619,12675], -[1,2343,7926], -[0,7927,7928,7929,4139], -[0,12680,12681,1676,12685,5303], -[0,5245,12688,6501,4874,7677,4193,4474,4494,1984], -[0,12692,12693,1605,12694,4116,8791], -[1,2343,7934], -[2,366,6990], -[2,7908,5375], -[2,363,594], -[0,7936,7938,7939,2487], -"@definitelytyped/dtslint", -[0,43,46,1093,1116,1132,1140,1298,1316,1318,1321,1322,1336,1339,1342,12701,1344,1346,1348,1350,1352,12703,1354,1356,1358,12704,1376,1386,1402,1425,1428,12705,1440,1450,12708,12709,12710,12711,12714,1663,1706,1711,1715,2019,12715,12719,2058,2059,2177,2217,12720,2563,2567,2605,2606,12722,2723,2950,2954,2957,12726,2962,3086,3099,12730,3134,12733,3186,3240,3245,3262,3295,3439,12736,3443,3472,3535,3558,12737,3777,3931,12740,4105,4124,12743,12747,4168,4173,4177,4192,4206,4235,12749,4236,4258,12750,4267,4338,12755,4347,4352,4370,4433,4456,4461,12756,12757,12760,4548,12763,12764,4724], -"import-cwd", -[0,4880,4883,2079,89,3824,91], -[0,4627,4963,4964,5130,4967,89,5128,181,4653], -"is-pro", -"p-valid", -[2,7940,7941], -[2,363,7942], -[3,7933,10], -"se-insertion-effect-with-fallbacks", -[2,7944,7945], -[1,2343,7949], -[2,363,89], -[0,7950,7951,7952,2537], -[0,12771,12773,12775,1389,12776,1536,1676,12777,12779,2026,12783,12785,2659,12788,2822,12789,12792,12793,3183,12795,12799,12802,3923,12809,4153,4165,12812,12814,12818,3348,4650], -[0,12820,1610,2554,3421,12823,4255,4389,4400], -[0,1090,1388,12826,4384,4389,5472], -[1,2343,7954], -[0,7955,7958,7959,2523], -[0,2069,12832,12834,12837], -[2,17912,7957], -"estimator", -[0,12839,811,8850,816,10817,4856,6503,4874,12842,1009,1011,1092,1389,1429,1610,1673,12846,1177,1895,2070,2675,12847,2806,2820,12848,2297,2881,2900,2990,2899,12849,3310,3421,1894,12850,4042,4073,4474,12851,91,12852], -[0,6671,2844,1155,7020,2860,2845,7527,7530], -[1,2343,7961], -[0,7962,7963,7964,2537], -[0,1091], -[0,12839,5087,4874,1009,1011,1091,1177,1895,2675,1192,12848,2990,1894,4468,91], -[0,12860,6975,1671,7020], -[1,2343,7966], -[0,7967,7938,7939,2399], -[0,43,46,1450,3777,4548], -[1,2343,7969], -[0,6203,7970,7971,2487], -[0,3460,12870], -[0,1094], -[1,2343,7973], -[0,7974,7975,7976,2537], -[0,12879,4567], -[0,12882,2899,3421,4535], -[0,12884,12886,12887], -[1,2343,7978], -[0,0,7979,7980,2487], -[0,2278], -[0,1623,2278,181,6398,6400,2869,12893], -[1,2343,7982], -[0,0,0,7983,2523], -[0,1098,5130,1388,12899], -[1,2343,7985], -[0,0,0,7986,2523], -[0,1098,5130,1388,7521,12899], -[1,2343,7988], -[0,7989,0,7990,2523], -[0,12910,12914,19,21,24,12915,12917,1149,1165,1437,1532,1628,1637,1676,12918,1687,12923,12925,12926,2054,2092,7076,2151,12929,2070,2651,2712,2720,12930,2843,2921,2925,695,2969,1209,3181,12935,3342,3368,3459,3467,3560,3618,3786,3981,814,4039,4085,4111,12936,4135,12937,4230,12944,4307,4333,4334,1241,4430,91,4027,4648,2924,4681,4689,4695,4769], -[0,1098,1102], -[1,2343,7993], -[2,27465,3469], -[0,0,0,7994,2537], -[0,12074,29,1388,12899,5027,12951,4963], -"blurup", -[1,2343,34387], -[0,6323,2398,12956,2899,4425], -[0,7244,1111,12958,12959,12961,12963,12964,12965,12966,12967,12968,12969,12970,12971,12972,12973,12974,12975,12976,4984,12977,200,12978,1473,1512,7208,9753,6876,7201,12979,12980,6983,12981,12982,12983,12984,12986,12987,2929,3073,6807,12990,12991,10958,6616,4166,12992,12994,1871,590,592,7009,2585,6621,12996,12997,4744,12998], -[1,2343,8000], -[0,8001,8002,8003,2487], -[0,6639], -[0,4874,1166,4481,1906], -[0,1111,7009,7201,200,1871,6621,1867,1106,6983,4166,4744,3073,6807,6876,2585,13005,6769,12619,1501,5281,13006,8628,13007,1468,13008,13009,13011], -[1,2343,8005], -[0,0,8006,8007,2399], -[0,1906,1166,4481,1107], -[0,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,6876,2585,1108,6961,23,3529,1973,2100,13017], -[1,2343,8009], -[0,0,8010,8011,2523], -[0,1906,1166,4481,13024], -[0,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], -[1,2343,8013], -[0,0,0,8014,2487], -[0,1111,1512,200], -[1,2343,8016], -[0,8017,8018,8019,2443], -[0,11161,13035,97,8597,7905,13037,13038,13042,1156,1639,1673,13045,13047,1209,3021,4023,11264,1849,7917,4427,13049,4649], -[0,48,53,61,73,76,78,13051,81,5806,13052,5835,83,5853,5889,85,87,92,192,5467,692,5583,7806,4864,5087,13055,5139,13057,7639,4874,13059,1009,1011,1028,11016,13061,13063,13067,13069,1031,11018,13072,10984,13077,1082,13078,1165,1170,1178,1193,1195,1205,13080,1208,13085,1426,1437,1448,1503,12405,13086,1525,13088,1610,1628,1630,13089,1668,13090,13092,11343,13093,668,8161,1869,1177,1895,1937,1938,1939,1948,13097,1955,1988,2071,11345,2151,2070,2205,2226,2323,2338,13099,2529,2651,2675,13101,13103,1192,2780,2784,13105,13108,2817,13110,4868,695,2969,13115,13118,2990,13119,3105,3107,3112,3114,13122,3127,13123,3177,3183,3188,3213,3220,3412,3561,3618,1894,3720,3725,3730,3786,9340,3992,13124,13127,8304,13128,4039,13129,13131,4135,4207,13134,4307,4320,11384,11389,4323,11396,4328,4409,4431,4443,4468,4469,4494,4508,91,13135,4549,4027,11400,1983,188,13138,13142,4630,4633,13145,4634,13149,4639,4640,13151,4646,2924,4676,4677,4681,4689,13152,11401], -[0,188,8588,5127,4964,1114,13154,4627,4963,181,5130,4967], -[1,2343,8021], -[0,8022,8023,7395,2537], -[0,1497,1673,97,5145,4427,11161,7992,27467,33386,33387,11185,33389,33393,11164,33396,33397,33399,33401,33403,33404,33406,33417,13166,33418,33422,33423,33424,33426,13169,8048,33428,33430,33431,33433,33436,33441,33443,11168,33444,33447,13159,33449,13162,33450,33451,11264,13165,33452], -[0,1091,3467,26713,4390,4494,1789,2070,1192,3445,1170,1437,11336,2675,2696,2742,2832,13233,3549,89,4164,1759,1177,2079,2814,1209,3984,4039,13241,4135,1086,13078,25131,3725,4508,2924,1634,2151,2193,11347,3183,3213,1894,13243,11401,1610,16473,2071,5102,11357,3758,11360,3824,13214,13215,3310,3560,3985,3988,4183,4201,91,5087,4874,12424,2665,2990,3839,11380,368,13204,13210,4880,13223,33230,11362,13245,33461,7833,692,11301,4870,5254,11325,3330,3717,13235,3999,11976,7948,27424,13194,13196,11290,8149,11322,7610,11350,27047,11273,11275,16934,4864,11292,7892,6510,13213,4934,10875,13205,4883,2758,2771,13232,3885,11377,3978,5076,33233,7839,8998,29467,7837,7840,643,13200,1939,2686,11366,11400,13198,2584,11348,25366,966,11331,1924,2784,11368,13175,972,1947,2780,13182,13203,13228,11356,4676,11320,3749,13192,968,1961,33635,11300,13221,13187,7582,974,7585,13178,11312,26969,11382,11371,11296,13188,11274,13240,13189], -[1,2343,8025], -[0,8026,0,2514,2523], -[0,3445], -[1,2343,8028], -[0,8029,7938,7939,2537], -[0,43,46,1093,1132,1140,1298,1316,1318,1321,1322,1336,1339,1342,1344,1346,1348,1350,12704,1376,1386,1425,1428,1440,1450,12709,12714,1663,1706,1711,1715,2019,12719,2177,2217,12720,2563,2567,2606,12722,2950,2954,2957,2962,3086,3099,3134,3186,3240,3245,3262,3295,3439,12736,3443,3472,3535,3558,12737,3777,4124,12747,4173,4177,4192,4206,4235,12749,4236,4258,4267,4338,12755,4347,4352,4370,4433,4456,4461,12756,12757,12760,4548,12763,12764], -[1,2343,8031], -[0,8032,8033,8034,34352], -[0,5381,5383,5446,5394,5408,13261,13262,5458,5461,32772,13264,13267,13272,2993,5438], -[0,5400,5402,5405,13276,5453,5456,192,5467,13280,5470,5473,13282,5474,5476,5478,13286,13287,1364,1699,1177,1895,1999,2026,2151,2675,2822,2990,3246,3300,3561,4039,4042,13289,10854,4193,4449,91,5480,4535,13291,3348], -[0,5926,13293,5592,1117,1745,13294,3422], -[1,2343,8036], -[0,8037,8038,8039,2537], -[0,1367,1525,13302,8161,13304,2151,2070,2036,2685,2814,13305,1209,3105,3363,3725,4135,4307,2924,4677,4709], -[0,4870,6503,4874,1177,13311,1903,1938,1954,1958,2899], -[0,5592,1118,2295,1745,4030,7096], -[1,2343,8041], -[0,8042,8043,8044,2537], -[0,13319,1797,4135,4562,4747], -[0,9741,4874,5254,4892,1166,2151,91], -[0,1118,1783,13322,5592,2295,1745,1179,13325,200,13326,6876,4030,7096,13327,13328], -[1,2343,8046], -[0,8047,8049,8050,2523], -[0,1676,13333,3313,2863,4593], -[2,41,27443], -[0,1429,1431,2899,4193,4196], -[0,13336,6645,13338,13339,13340,586], -[1,2343,8052], -[0,8053,0,2514,2537], -[0,13345,13346,5506,5514,4484], -[1,2343,8055], -[0,8056,0,8057,4139], -[0,13352,13345,1127,13346,5513,5514,4484,13351], -[0,5286,6778,13354,5284,13356,3378,89], -[1,2343,8059], -[0,8060,8061,2514,2487], -[0,13346,5514,4484,5515], -[0,13364,5087,4874,2220,2222,1192,4039,4042,4468,4487,91], -[1,2343,8063], -[0,8064,8065,2514,2487], -[0,1127,13370,4484], -[0,13364,5087,13372,2086,2220,2222,1192,13374,4039,4042,4468,4487,91], -[1,2343,8067], -[0,0,8068,8069,2523], -[0,1503,1596,13379,1652,2194,2759,2899,3202,3215,3421,4131,4585], -[0,7914,3403,6435,614,202,1237,5260,13382,3209,1896], -[1,2343,8071], -[0,8072,8073,8074,2537], -[0,13387,13388,13390,13394,13395,1170,1362,13396,1209,3084,3220,3222,13399,4135,13400,4729], -[0,13406,13411,13412,6061,6063,13414,4870,6503,4874,13417,5254,9241,10780,1429,1431,1570,2899,1894,4131,4193,4474,91,4739], -[0,13426,12296,5472,13428,5131,13429], -[1,2343,8076], -[0,8077,8078,8080,2399], -[0,13446,13437,13512,13471,13508,13476,9637,13474,13497,13495,13500,13454,13502,13504,13510,13493,13507,13456,13479,13488,13484,30243,13467], -[0,3421,3297,2899,4193,1177,1894,91,13514,4874,6503,6513,5254,1954,1011,13518,1009], -[2,8182,553], -[0,13524,13525,13526,13529,13530,13531,6599,13532,13535,13538,13539], -[1,2343,8082], -[0,8083,8084,8085,2523], -[0,13547,13551,13554,13558,13559,13560], -[0,13564,5087,4874,1009,1011,13566,1177,1895,1915,1938,1955,2220,1192,1894,13568,3706,13569,4257,4468,4474,91], -[0,13571,7200,5995,13572,2220,13573,6710,91,13574], -[1,2343,8087], -[0,8088,8089,8090,2537], -[0,13579,1149,13581,3923,13583,4393,13584], -[0,13590,1429,1776,3188,2899,4039,13591,4390,4753], -[0,12666,1137,3101,2056,4390], -[1,2343,8092], -[0,0,8093,2514,4139], -[0,1429,1192,1894], -[3,439,25], -"mysticatea", -[2,1186,8095], -[2,8094,8096], -"dot-prop", -"warun", -[1,2343,8101], -[0,0,8102,8103,2399], -[0,68,5704,1177,2899,3421], -[0,200,57,1139,5675,7058], -[1,2343,8105], -[0,7967,7938,7939,2487], -[1,2343,8107], -[0,8108,8120,8121,2487], -[0,1417,13609,6830,13611], -"ly-openapi-core", -[2,443,8109], -"decko", -"pointer", -[2,2842,8112], -"mark.js", -"sampler", -[2,7719,8115], -"perfe", -"ct-scrollbar", -[2,8117,8118], -[0,13613,13614,1159,9254,1177,2011,2133,13619,2708,3410,3421,3431,4103,4389], -[0,6583,6727,4552,6759,1858,6422,3033,7039,6763], -"react-tabs", -"stickyfill", -"swagger", -"2openapi", -[2,8124,8125], -[2,4564,1283], -[1,2343,8133], -"@cypress/webpack-preprocessor", -"@hot-loader/react-dom", -[3,5535,19], -[2,8131,1896], -[0,0,8134,8142,2487], -[0,1166,4481,1906], -"ompurify", -[2,6491,8135], -"-to-", -"-to-json", -[2,4863,8138], -[3,7729,12], -[2,8140,8112], -[0,4552,1144,13625,6270,6692,13626], -[1,2343,8164], -"@types/lunr", -[3,7639,11], -[2,8145,1722], -[2,8145,1360], -"ismjs", -[2,7893,8148], -[3,4890,12], -"d-components", -[2,8150,8151], -[3,7752,9], -"pable", -[2,8153,8154], -"-env", -[2,4891,8156], -"@wojtekmaj/enzyme-adapter-react-17", -"to-json", -[2,1848,8159], -[2,7686,1194], -"-checker", -[2,4059,8162], -[0,8167,8176,8177,2523], -"lodash.noop", -"unfetch", -[0,614,13633,1417,13635,3435], -"OpenAPI", -" Specification", -[2,8168,8169], -"Swagger", -"API", -"REST", -"React", -"React.js", -[0,4389,1090,1593,1610,48,13638,53,3438,87,5619], -[0,1145,1388], -[1,2343,8179], -[0,0,8188,2514,2537], -[3,444,13], -[2,8180,965], -[3,10975,16], -"use-", -[3,2758,11], -"layout-effect", -[2,8184,8185], -[2,8183,8186], -[0,4389,2080], -"tip", -"tooltip", -"popover", -"popup", -"position", -"positioning", -[1,2343,8196], -[0,8197,8198,8200,2537], -[0,1690,13648,13651,3431,13652,13653], -[0,1389,2759,2899,3697], -"fontsource", -[0,1145,6468,6637,1148,5982,2022,2025,4170,13656,4386,6969,1973,5472,6533,13657,2275], -"font family", -" fonts", -[2,1885,8202], -"Inter", -"face", -"typeface", -[1,2343,8208], -[0,0,8209,8212,2537], -[0,3421,1429,4085,1776,2297,2899,4747,1177,4042,4135,1448,1290,1362,2151,1317,1389,53,1863,2900,13662,1280,2871,13674,1267,13665,13672,68,2904,1208,2912,2895,13668,4067,1198,13663,1240], -"serenity", -"Roboto", -[0,1149,7241,1237,6435], -[1,2343,8215], -"screenplay", -[0,0,8219,8222,34352], -"common-t", -[2,8216,103], -[2,6057,8217], -[0,4874,13680,4384,4474,91], -"fontawesome", -"svg", -[0,1149,7003,5194,27,13682,11995,1862,36], -[1,2343,8224], -[0,8225,8226,2514,2537], -[0,1153], -[0,1166,1177,1894,3310,3697,13688,2990,1959,1879,1938,1895,1947], -[1,2343,8228], -[0,0,8230,8233,2537], -[2,79,1202], -[0,53,13693,87,92,13694,5087,1193,1596,1192,2990,3377,13695,13698,3697,1894,4474,91], -"stage-3", -[2,88,8231], -[0,1155,2649,1149], -[1,2343,8235], -[0,0,0,8236,2523], -[0,1157,1388], -[1,2343,8238], -[0,8239,8240,8241,2487], -[0,4449,1512,13709,4135,13711,13712,13713], -[0,3421,4389,1177,3410,1159,4103,13614], -[0,13716,6698,6950,3378,13716], -[1,2343,8246], -[3,361,10], -"rebuild", -[2,8243,8244], -[0,8247,8249,8257,2487], -[0,1525,2036,7937,3310,13723,4135], -"node-abi", -[0,53,94,1208,13725,1429,1503,1610,3125,2899,3421,4216,4255], -[3,361,9], -"-forge/cli", -[2,8250,8251], -"devtools", -"-installer", -[2,8253,8254], -[2,1807,8255], -[0,1163,13728,13729,1444,3073,1179,3358,1528,13730,2602], -[1,2343,8259], -[0,8260,8261,8265,2523], -[0,1457,1512,13736,13738,2070,10911,3074,3467,9478,705,13739,4747], -[0,1173,1267,1429,1177,1879,1938,1947,1959,2899], -[2,4364,4622], -[2,458,8262], -[2,7726,2862], -[0,1163,4796,1161,3383,2282], -[1,2343,8267], -[0,8268,0,8269,2399], -[0,1393,1423,13746,3527,3688], -[0,1165,1623,3665,3561,6425], -[1,2343,8274], -[2,466,2220], -[2,466,2942], -[2,466,594], -[0,8276,8279,8280,4139], -[2,466,553], -[0,13753,1082,1084,1110,13754,1144,13757,13758,1437,13759,1458,13760,1486,13763,13765,13767,13770,1676,13772,2089,2205,13775,2709,2747,2752,13777,7906,3242,3478,13778,3530,3545,3718,13780,13781,13784,13786,4728,4747], -[2,5559,2844], -[2,5559,1783], -[0,11436,13789,4874,1107,1414,2020,2022,4193,4384,4400,4481,91,1906,13351], -[0,13791,1973,8791,5472,1166,13792,12804,2062,6969,13326,200,1192,2899,4389,4384,2907,2765,1145,6468,1862,6567,1149,3046,7003,1179,5701,13793,13795,13796,2275,8745,2022,91], -[1,2343,8282], -[0,8283,8287,8288,2537], -[0,1437,1835,3008,1209,3170,3188,4232,13802], -"/types", -[2,3940,8284], -[2,6369,8285], -[0,4856,4870,8778,6503,4874,7749,6513,4891,1362,1429,13804,2151,2675,2990,2899,1894,13805,4039,4167,4257,1241,4487,91,2924,4677], -[0,2924,1194,11526,91], -[1,2343,8290], -[0,8291,8305,8307,2523], -[0,4113,1002,614,3348,1398,2018,4734,13811,13812,3767], -"@tailwindcss/aspect-ratio", -[3,8292,13], -[2,8293,25], -"typography", -[2,8293,8295], -"basename", -"manage", -"r-webpack-plugin", -[2,8298,8299], -[2,2090,8300], -"remove-", -[2,1586,4408], -[2,8302,8303], -[0,1429,2297,2899,1177,1503,2765,2924,1649,4535,1389,91,4874,2843,1509,2766,2898,13817,13818,2881], -"sass-lint", -[0,5592,6997,7200,6850,6779,6949,6930,6810,6808,6979,6871,6991,6835,7024,6602,7301,7308,6619,7016,6665,6572,6629,7055,6709,7254,6814,6832,6976,6740,7101,6963,6933,7215,7175,6817], -[3,6566,9], -[2,8308,3855], -"boilerplate", -[1,2343,8312], -[0,0,8313,8314,2537], -[0,1429,2070,1437,1496,2020,2228,2675,1776,2832,2297,2899,4193,1177,2814,1593,668,2203,3471,2720,13824,1894,4535,13825,11869,13827,2878,7231,91,53,4874,13829,1863,13831,2665,2900,2918,2990,3400,13832,13833,2626,3330,5561,13834,13836,4257,13837,87,13838,2897,4130,13839,2247,2283,2923,2253,2281,13842,2881,4261,5663,1895,2895,13848,13850,78], -[0,13852,6653,5472,2275,6969,5982,11346], -"@hapi/", -"accept", -[2,8315,8316], -[1,2343,8319], -[0,8331,8332,8334,2537], -"@hapi/ammo", -"@hapi/boom", -"@hapi/bo", -"unce", -[2,8322,8323], -"@hapi/call", -"@hapi/ca", -"tbox", -[2,8326,8327], -"-memory", -[2,8328,8329], -[0,2139,13860,2131], -[0,1414,2323,1437,2675,2297,2899,4193,1177,3246,3483,4042,2026,13868,2151,13824,3183,1596,1610,2141,2188,2036,7798,4393,91,53,1364,1863,2918,2766,3714,13870,2898,1159,192,13880,87,13873,8850,8862,5583,2915,4073,13882,2881,2912,2895,2921,811,13867,2910,13879,13866,816,13875,13871,5467], -"@hapi/heavy", -[0,4731,27,6662,1862,202,1388,1612,4030,5592,5576], -"@hapi/hoek", -"mimos", -"@hapi/mimos", -"podium", -[2,8315,8338], -"shot", -"@hapi/shot", -"@hapi/s", -"omever", -[2,8342,8343], -"tatehood", -[2,8342,8345], -"ubtext", -[2,8342,8347], -"teamwork", -[2,8315,8349], -[1,2343,8352], -[0,8355,8356,8365,2537], -"@hapi/topo", -[2,8315,2649], -[0,13889,2051,13891,13892,3923,705,4545,3348,1155,4734,4736,2845], -[0,13894,1389,1596,13895,2228,2296,13896,2759,2297,2881,2891,13899,2895,2897,2900,2904,2899,3202,3297,4170,4535,4650], -"@hapi/code", -"@hapi/inert", -"@hapi/lab", -"@hapi/v", -"ision", -[2,8360,8361], -"wreck", -"@hapi/wreck", -[0,202,13531,13901], -[1,2343,8367], -[0,8368,8369,3182,2537], -[0,1175,1257,1280,1282,1525,1573,5175,2070,1209,13913,3507,4207,4227,13914,1457], -[0,1184], -[1,2343,8371], -[0,8372,8373,3272,34352], -[0,13922,1180,13924,13928,1280,1282,1284,1287,1288,1291,1573,1676,2856,1209,3181,3507,7223,4207,4227], -[0,1184,13930,1257], -[1,2343,8375], -[0,8376,8377,2514,2523], -[0,814,104,58,101,51,1996], -[0,2675,2899,1680,1177,2000,1894,2990,1178,13936,1938,1935,1955], -[1,2343,8379], -[0,8380,8381,2514,2523], -[0,13928,1282,1288,1707,2835,1209,4227,13942], -[0,1184,1291], -[1,2343,8383], -[0,8384,0,2514,2537], -[0,1282,1209,13948,4135], -[1,2343,8386], -[0,8387,0,2514,2523], -[0,1282,13930], -[1,2343,8390], -"nf", -[0,0,0,8393,2487], -true, -"cookiecutter", -[0,1172,188,1219], -[1,2343,8395], -[0,8396,8397,2514,2537], -[0,8755,10879,1208,13961,1437,2215,4207], -[0,53,8776,8780], -[1,2343,8399], -[0,8400,8401,8402,4139], -[0,2105], -[0,48,53,68,87,1414,1177,1895,1955,2203,2675,2990,1894,2924], -[0,2924,1194,1172,5194,5198,1237], -[1,2343,8404], -[0,0,8405,8406,4139], -[0,53,73,87,1173,1175,1178,13725,13982,1264,13983,1268,1284,1288,13985,1177,1895,1903,1938,1954,1955,1958,1970,2899,3696,1894,4039,4103], -[0,5297,13988], -[1,2343,8408], -[0,8409,8410,8411,2537], -[0,3435], -[0,4389,1177,4039,1173,1175,2708,53,1178,1280,13995,87,1261,1267,4103,1938,1881,1203,8229,1198,5853,13998,1244], -[0,1172,1932,14000,1204,202], -[1,2343,8413], -[0,8414,8415,3465,2523], -[0,1282], -[0,1189], -[1,2343,8417], -[0,8418,8434,8444,2399], -[0,5652], -"@keyv/redis", -[2,1416,8421], -"-redis-yet", -"cacheable", -"opens", -"spring", -"icu", -"charset", -"launch", -"xdg", -"cmd", -"xdg-open", -"iconv", -"popmotion", -"exe", -[0,53,90,14011,1175,14012,1596,1177,1879,1895,1938,1955,2079,2675,2990,3132,3377,1894,14014], -"executable", -"cache manager", -[2,27105,15292], -"multi-store cache", -"caching layer", -"cache abstraction", -"cache middleware", -"cache strategies", -"cache wrapper", -[0,5297,1114], -[1,2343,8446], -[0,8447,8448,8449,2537], -[0,56,14022,8697,14024,14025], -[0,48,53,5756,5241,94,1429,1596,1610,2899,3421,14027,4255], -[0,2759,1172,1932,14029], -[1,2343,8451], -[0,8452,8453,8454,2537], -[0,5652,104,2070,1209,14035], -[0,48,53,14039,78,5235,4851,83,87,90,14041,94,10828,1149,1198,1210,1429,14042,14045,3021,2899,3776,3804], -[0,5297,14047,1209,5260], -[1,2343,8456], -[0,8457,8458,8459,2487], -[0,14053,2070,3539,4022,814], -[0,48,53,81,5241,87,1175,1193,1532,1177,1881,1895,1938,2675,1192,2990,10623,4257], -[0,1172,5297,1237,14056,8861,9345,814,14057,14059,3209,1204], -[1,2343,8461], -[0,0,8462,2514,2523], -[0,1192,14065], -[1,2343,8464], -[0,0,0,3465,2523], -[1,2343,8466], -[0,0,0,3465,2537], -[1,2343,8468], -[0,8469,8415,3465,2523], -[0,14078,14080,1282], -[1,2343,8471], -[0,8472,8415,3465,2523], -[0,14086,14087,1282,1284], -[1,2343,8474], -[0,8475,8476,8477,2487], -[0,14093,1282,1284], -[0,1173,1230,1255,1267,1429,2899], -[0,1172,5297,6598,70], -[1,2343,8479], -[0,8480,8415,3465,2523], -[0,1282,1284,1287,1288,1209], -[1,2343,8482], -[0,8483,8484,3465,2487], -[0,14107,1282,1284,1288], -[0,1189,14109], -[1,2343,8486], -[0,8414,8415,3465,2399], -[1,2343,8488], -[0,8489,8415,3465,2537], -[0,14109,1282], -[1,2343,8491], -[0,8492,8415,3465,2523], -[0,1282,14123,1220], -[1,2343,8494], -[0,0,8495,8496,2537], -[0,48,53,5216,8229,61,5240,87,14128,90,94,1178,14132,1429,1177,1879,1922,1935,1938,1947,1951,1955,1959,2205,2899,14133,1894], -[0,1172,5297,89,14137,14139], -[1,2343,8498], -[0,8499,8415,2514,2537], -[0,14145], -[1,2343,8501], -[0,8414,8415,3465,2537], -[1,2343,8503], -[0,8504,0,2514,2487], -[0,1282,1593,3957], -"comment", -[2,8505,1574], -[1,2343,8513], -[3,539,8], -[2,8508,6939], -[3,539,17], -[2,8510,1541], -"leasot", -[0,8514,8515,8516,2487], -[0,87,90,56,5761,83,14160,13051,78,5835,14163,5853,14167,1251,5782,14170,5806], -[0,1177,53,97,4103,1938,1881], -[0,1172,5194,6778,5284], -[1,2343,8518], -[0,8522,8541,2514,2523], -"clair/typebox", -[2,5324,8519], -"@typesc", -[0,14184,14191,1225,14192,14195,1235,14196,14198,14199,14201,14204,14206,14207,14209,1240,14210,14211,14213,14214,14215,14217,14218,1244,14220,14222,14224,1253,1393,2731,4135], -"hema/core", -[2,8521,8523], -[3,8524,12], -"main", -[2,8525,8526], -[2,8525,4763], -"@vinejs/vine", -"ajv-", -"ajv-errors", -"-export", -"-export-map", -[2,4354,8533], -[3,5370,11], -[2,4626,8535], -"effect", -"fp-ts", -"io-ts-types", -"lefthook", -[0,1173,1178,1184,1189,1208,1264,1280,1429,1503,1177,13936,1935,2151,1209,2899,3421,14227,4039], -[1,2343,8545], -"monocle-ts", -"newtype-ts", -[0,8548,8557,2514,2487], -"-validator", -[2,7209,8546], -[0,14184,14192,14195,1235,14196,14198,14199,14201,14204,14206,14207,14209,1240,14210,14211,14213,14214,14215,14217,14218,1244,14220,14222,1253], -"bot", -"valibot", -"vite-", -[2,8551,4480], -"fluent", -"-ts", -[2,7020,8554], -[2,8553,8555], -[0,13930,1189], -"effect-ts", -[1,2343,8562], -"typeschema", -"vine", -[0,8563,0,2514,4139], -[0,14237,1220,14238,1248,14240,14243], -[1,2343,8565], -[0,8566,0,2514,2537], -[0,53,61,71,14170,14160,13051,14249,5700,5240,5879,83,87,90,92,97,7913,1251], -"google ", -" api", -"late api", -[2,4713,8569], -[2,8567,8570], -[3,8571,16], -"google api", -[3,8570,9], -[1,2343,8576], -[0,8577,0,2514,34352], -[0,14256,14257,1275], -[1,2343,8586], -"@atlaskit/pragmatic-drag-and-drop", -"-scroll", -[2,3959,8580], -[2,8579,8581], -[3,8582,34], -"hitbox", -[2,8583,8584], -[0,8587,0,2514,2523], -[0,14265,13982,1277], -"vue3", -"vue ", -[1,2343,8592], -"vue 3.x", -[0,8593,0,2514,2537], -[0,1279,14270,1217,1230], -[1,2343,8595], -[0,8596,0,2514,2523], -[0,14191,14276,1225,14224,1245], -"@ctrl/tinycolor", -[1,2343,8599], -[0,8600,8601,2514,2537], -[0,1175,1282,1593,14282,1209,3188,4232], -[0,6323], -[1,2343,8613], -[3,546,10], -[2,8603,2089], -[2,8603,998], -[3,6505,9], -"te-stream", -[2,8606,8607], -"rap-ansi", -[2,7820,8609], -"cli-width", -"mute-stream", -[0,4115,8617,2514,4139], -[3,8605,11], -"esting", -[2,8614,8615], -[0,13924,1255], -"answer", -"answers", -"ask", -[1,2343,8627], -"confirm", -"generate", -"hyper", -"inquire", -"interface", -[0,8629,0,2514,2537], -"iterm", -[0,1282,1287,1288,1291,1209], -"promptly", -"question", -"scaffold", -"scaffolder", -"stdout", -"yeoman", -"zsh", -[1,2343,8638], -[0,8639,8640,2514,2523], -[0,13922,13928,1282,1288,1291,1676,2203,2731,1209], -[0,1180], -"@stencil/core", -[1,2343,8672], -"domino", -[3,8641,9], -[2,8644,2278], -"@clack/prompts", -"@capacitor/core", -"@playwright/test", -[3,8647,11], -"haptics", -[2,8649,8650], -"keyboard", -[2,8649,8652], -"@axe-core/playwright", -"@ionic/", -[2,8655,7625], -"-bar", -"status-bar", -[2,8649,8658], -[2,8655,7628], -[2,812,4607], -"-target", -[2,6811,8662], -[2,4625,8663], -[2,8644,8664], -"react-o", -"utput-target", -[2,8666,8667], -[2,8644,8668], -[2,1101,8663], -[2,8644,8670], -[0,8679,8680,2514,2487], -"stencil", -"webapp", -"capacitor", -" web app", -[2,6434,8676], -"pwa", -[0,1282,14301,1209,5915], -[0,1180,1291], -[1,2343,8682], -[0,0,8684,2514,2523], -"-cjs", -[0,4384,1389,53,14311,87,14128,1573,90,14309,5835,5879], -[1,2343,8686], -[0,0,8687,8688,2487], -[0,1166,1173,1178,1184,1203,1208,14318,1267,1272,1437,1503,1610,1177,13936,1935,2126,3421,4039,4042,4045,4067,12613,14320], -[0,1172,5284,57,1291], -"standardx", -[1,2343,8692], -"layout", -[0,8693,8694,8695,2537], -[0,4545], -[0,1509,1597,1734,1177,1938,2297,2908,2907,4005,4042,4535], -[0,11415,6624,12620,38,36,5576,1388], -[3,549,12], -[2,8696,2844], -[1,2343,8699], -[0,8700,8701,8702,2443], -[0,1525,2070,2720,3445,4039,4484,3348,1155], -[0,14333,4865,4866,4874,7819,14334,4891,1009,1011,5476,14337,14338,5478,1429,1177,1938,1954,2899,3200,14339,4167,4172,4409,4469,4474,4508,91,594,2924,4677], -[0,5995,1293,3230,4978,14344], -[3,444,18], -[3,550,15], -"illu", -[1,2343,8715], -"tions-react", -[2,4273,8707], -[2,8705,8708], -[2,8704,8709], -"@swc/", -[2,8711,6706], -[3,958,16], -[2,8713,4607], -[0,7936,7938,7939,2537], -"react-table", -[1,2343,8718], -[0,0,8720,8721,2523], -"@swc/cli", -[0,1596,2228,2240,2314,14352,2759,2899,3954], -[0,14354,14355,14356,14357,1157,1396], -"-extensions", -[2,3751,8722], -[2,1962,8723], -[1,2343,8730], -"-system", -[2,4964,8726], -"itwin", -"itwinui", -[0,7967,7938,7939,2443], -[1,2343,8732], -[0,0,8733,8735,4139], -[0,13662,1317,1389,4389], -"jest-config", -[0,14357], -"unner", -"jest-runner", -"jest-run", -[2,8738,6901], -[3,2802,10], -[2,8740,1524], -[3,551,8], -"nsole", -[2,8742,8743], -"snapshot", -[2,2769,8745], -[2,2769,2649], -"jest-h", -"aste-map", -[2,8748,8749], -"reporters", -[2,552,8751], -"@jest/t", -"ransform", -[2,8753,8754], -"jest-re", -"gex-util", -[2,8756,8757], -[1,2343,8760], -[0,8766,8772,8774,2523], -"est-result", -[2,8753,8761], -"jest-m", -"essage-util", -[2,8763,8764], -[0,4100], -"-files", -[2,2356,8767], -[2,2772,8768], -"-dependencies", -[2,2797,8770], -[0,2899,1177,2759,1954,1938,1958,1903,1948,1970], -[3,6494,9], -[0,14372,1303,14374,14375], -[3,8762,11], -[2,8775,594], -"cromatch", -[2,7890,8777], -"raceful-fs", -[2,5246,8779], -"sequencer", -[2,8775,8781], -[1,2343,8789], -"easy", -"sive", -"immersive", -"instant", -"mocking", -[0,8792,8793,8794,2537], -"painless", -"runner", -[0,1797,3181,3183,3188,14380], -[0,1177,1903,1938,1954,1958,1970,2899,4039,4342,4459,4538,4588], -[0,2026,5130,14387,6690,14388,3361,5122,4030,7096,38,1896,3724,5995,5592], -"sandboxed", -[1,2343,8797], -[0,8798,8799,8810,2537], -[0,3299,15160], -[0,1192,15164], -"schemas", -[2,552,8800], -"@types/i", -"-report", -"-reports", -[2,1207,8804], -[2,8802,8805], -[3,8806,16], -"lib-coverage", -[2,8807,8808], -[0,1306,6875,1303,5165,7141,6641,1616], -"@tsd/typescript", -[1,2343,8813], -[0,0,0,8814,2537], -[0,1306,5284,676,3428,6875,1303,5165,7141,6641,1616], -[1,2343,8819], -[3,7729,13], -"chema", -[2,8816,8817], -[0,0,8822,8810,4139], -"jsdom-", -[2,8820,2202], -[0,1306,26406,1894,91], -"mock-store", -[2,3944,8823], -"dux-mock-store", -[2,5249,8825], -"-reg", -"iste", -"r-element", -[2,8828,8829], -[2,8827,8830], -[2,1746,8831], -[1,2343,8834], -[0,8835,8842,8843,34352], -[0,14413,1525,1457], -"jsonforms", -"rendere", -[2,8837,152], -"uischema", -"ization", -[2,5317,8840], -[0,2025,2228,1330,2236,2300,2247,2281], -[0,14416,14417,14418,7190,14419,14421,8309,14422,14423,14426,14428,14430,14433], -[1,2343,8845], -[0,0,0,8847,2523], -"@date-io/dayjs", -[0,1317,14438], -[3,4055,16], -[2,8848,2257], -[2,812,1781], -[3,6390,15], -"mport-css", -[2,8851,8852], -[1,2343,8855], -[0,8856,7938,7939,4139], -[0,43,46,1089,1093,1116,1132,1140,14443,1294,1298,1316,1318,1321,1322,14444,1336,1339,1342,12701,1344,1346,1348,1350,1352,12703,1354,1356,1358,14445,12704,1373,1376,14446,1386,14447,1402,1425,1428,12705,1440,1449,1450,12708,12709,14450,14453,12710,12711,12714,1663,1706,1711,14458,1715,1726,1801,2019,12715,14459,12719,2058,2059,2083,2147,2160,14460,2177,2213,2216,2217,12720,2562,2563,2567,2589,2605,2606,2612,14461,12722,2723,14464,14467,2950,2954,2957,12726,2962,14469,3086,14471,3099,12730,3134,12733,3186,3238,14473,14474,3239,3240,3245,3262,14477,3295,3439,12736,3443,3472,14478,3531,3535,3558,12737,3777,3931,12740,14479,4105,4106,4112,4124,12743,14480,12747,14483,4168,4173,4177,4189,4192,4206,4212,4214,4215,4235,12749,14484,4236,4239,4258,12750,4267,14487,4335,4338,12755,4347,4352,4370,4377,4433,14489,14491,4456,4461,12756,12757,12760,4548,4559,4595,12763,14492,14496,4659,4662,12764,14497,4724], -[1,2343,8858], -[0,8859,8863,8864,4139], -[0,3171,3445,4707,1695,2967,814,4430,1457,3183,14502,3560,3714,1537,14506,3923,14508,14512,14505], -[2,4807,3429], -"alias", -[2,812,8861], -[0,14515,3212,4389,4453,2759,4650,1389,14514], -[0,14518,1389], -[1,2343,8866], -[0,7967,7938,7939,2537], -[1,2343,8868], -[0,8869,8870,8871,2443], -[0,1209,12344], -[0,1596,14527,2759,14529,3774,4019], -[0,1317,6681,6887], -[1,2343,8873], -[0,7967,7938,7939,2523], -[1,2343,8875], -[0,8876,0,8877,34352], -[0,14544,14546,14548,53,5216,58,61,14249,5704,5809,5241,5874,87,92,101,9311,9100,4874,1091,14552,1137,1149,1448,1457,1462,1512,14557,1573,2141,2633,14558,3310,3403,1894,14562,2278,4218,4227,4246,3709,91,4535,14563,188,4747,2720,14564], -[0,14566,14568,14570,14571,14572,14574,5130,91,5284,4799,11608,8889,5995,14575,14576,14579,14580,14582,14584,14587,11498,14591,14592,14594,14596,4056,14597,14600,89,14601,14602,188,14603,14605,8889,3709,14607,14608,4218,14609], -1769904000000, -[1,2343,8880], -[0,8881,8882,8883,2399], -[0,14615,14616,14617], -[0,1170,1429,1177,2899,14621,3752,14622], -[0,1781,14626,1646,4647,1644,57,14628,4141,3917,6033,1149,14629], -[1,2343,8885], -[0,0,0,8886,2523], -[0,14634,14635,14636,14637,6988,14638,14639,14640,14641,14642,14643,14644], -"@lumino/polling", -"@lumino/", -"widgets", -[2,8888,8889], -"commands", -[2,8888,8891], -"algorithm", -[2,8888,8893], -[3,8892,10], -"reutils", -[2,8895,8896], -[1,2343,8903], -"messaging", -[2,8888,8899], -"signaling", -[2,8888,8901], -[0,8904,0,8908,4139], -[0,14652], -"disposable", -[2,8888,8905], -[3,8887,9], -[0,970,11154,1326,14654,6817,3122,14655], -"roperties", -[2,8907,8909], -[3,565,12], -"statedb", -[2,8911,8912], -[3,8894,9], -"pplication", -[2,8914,8915], -[3,565,15], -[2,8917,594], -[3,8913,13], -"ervices", -[2,8919,8920], -"coreutils", -[2,8911,8922], -"render", -"rendermime", -[2,8911,8925], -"docregistry", -[2,8911,8927], -[1,2343,8935], -"translation", -[2,8911,8930], -[2,8911,7842], -"-interfaces", -[2,8926,8933], -[0,8938,8939,2514,2537], -[3,8931,13], -[2,8936,8615], -[0,14660], -[0,3421,4389,4487,1894,3310,3752,91,4874], -[1,2343,8941], -[0,8943,8948,8950,34352], -"docopt", -[0,14667,14669,14671,14672,5241,83,14673,13998,14674,5564,14676,4649], -"glob2base", -"lodash.d", -"ifference", -[2,8945,8946], -[0,14680,48,53,5241,87,14682,94,97,10821,14684,827,14687,14689,10828,14691,11277,10837,11288,972,5087,4883,14693,14694,13995,14695,1193,1195,14697,14698,1208,1261,1268,14012,1282,14699,1462,1596,1610,1655,14702,1177,14707,2323,2529,2541,14708,2708,1192,2787,2820,3220,14711,3342,3377,3400,3415,3421,3697,1894,3786,89,3824,14714,14719,4039,4103,4111,14721,4307,4468,4469,91,2924,4676,4677], -"multipipe", -[0,1328,14723], -"safe-wipe", -[2,4832,6270], -"-theme-default", -[2,566,8953], -"-comment", -[2,8955,1574], -[2,4329,8956], -"indent", -[2,4293,8958], -"vinyl-s", -"tring", -[2,8960,8961], -[1,2343,8968], -"builtin-", -[2,8964,2051], -[2,1226,8965], -"opn-cli", -[0,8969,8970,8971,4139], -[0,14731,1398,2713,3923], -[0,2080,4255,4389,91], -[0,1398,6825,3101,7178], -[1,2343,8973], -[0,8974,8975,8976,2523], -[0,1082,14738,14741,2756,3433,1695], -[0,1149,14744,1506,2228,2240,2247,2253,2273,2281,3006,2899,3521,4019,89,14748], -[0,4504], -[1,2343,8978], -[0,0,0,8979,2523], -[0,14755,14756,14757,14759,14761], -"chatfanpage", -"api-con", -"-x", -"nect-x", -[2,8981,8983], -[3,8984,12], -"tiwtter", -[2,8985,8986], -[1,2343,8989], -[0,8990,8991,2514,2487], -[0,14768,1437,14769,1209,14770,3127,14774,14775,3152,14776,14777,4294,14780,14781], -[0,14785,1331,1512,1177,1903,1938,1954,1958,1970], -[1,2343,8993], -[0,7967,7938,7939,4139], -[1,2343,8995], -[0,8029,7938,7939,2399], -[1,2343,8999], -[2,8603,6847], -[2,8603,3742], -[0,8029,7938,7939,2523], -"tasklist", -[1,2343,9002], -[0,8029,7938,7939,2487], -[1,2343,9004], -[0,0,9012,9013,2523], -"move-", -"scroll", -"move-scroll", -[2,3877,9007], -"react-te", -"xtarea-autosize", -[2,9009,9010], -[0,2759], -[0,1359,2013,14824,6681], -[1,2343,9015], -[0,0,9016,9017,2523], -[0,1499,4093,2070,3445,1082,14830,2899,4193,2272,3188,4039,14829,1362,2597,2759,3460,1481,4535,1084,1389,1364,1615,4151,2839,2311], -[0,1862,6681,6567,14832,14833,1149,7003,14834,14835,14836,14838,14839,14840], -[1,2343,9019], -[0,0,9020,9021,2487], -[0,2899,8689,1926], -[0,14846,14847,14848,14849,14850], -[1,2343,9023], -[0,9024,9025,2514,2487], -[0,1413,1562,1676,2657,2685,3440,3763,3784,1000], -[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], -"calendar", -[1,2343,9028], -[0,9029,9030,9031,2537], -[0,1362,14864,2712,1209], -[0,14869,1429,1177,1895,1955,2675,1776,2930,2990,2899,3259,3421,3519,1894,4193,4196,4246,3348], -[0,3469,3259,14873,7827,14874,14877], -[1,2343,9033], -[0,9034,9035,9036,2537], -[0,2607], -[0,1501,620,3123], -[0,1851,27], -[1,2343,9038], -[0,0,9039,5359,2537], -[0,2739,4763,3171,2278,34683,2297,1177,2205,2814,3984,4042,4086,4072,2765,2822,3363,3561,4167,6393,1894,1492,1610,4939,4320,48,2689,53,27098,6375,2654,3566,3989,30616,1165,3401,6371,6376,2898,3019,34673,29226,6372,7637,8149,7610,11275,26407,1907,6382,4555,87,29568,1937,5583,1938,1982,2881,2889,30620,6373,1948,2895,6390,811,33071,3963,2910,6379,816,2876,6387,6392,6385], -[3,593,11], -[2,9040,147], -[1,2343,9043], -[0,0,9048,9049,2537], -[3,586,12], -[2,9044,5602], -[3,9045,13], -[2,9046,623], -[0,2278,14892,1797], -[0,1367,2278,1623,14894], -[1,2343,9051], -[0,0,0,9055,2537], -"-react-", -[2,9052,3902], -[2,588,9053], -[0,1370], -[3,80,7], -[2,9056,5342], -[1,2343,9059], -[0,9060,9061,9062,4139], -[0,14904,1420,1437,1471,4290,4507,9731,4726], -[0,1166,3421,4481,1906], -[0,200,5403,14907,7009,6048,7201,6938,3656,14908,2585], -[1,2343,9064], -[0,9065,9066,9067,2537], -[0,14923,814,14924,4431], -[0,1389,1537,4384,4430], -[0,1389,14927,2150,14930,1932,2947,14932,6374,14357], -[1,2343,9069], -[0,9070,9077,9078,2537], -[0,1676,3181,4648,14940,14937,14939,14938], -[2,597,592], -[3,9071,14], -"ystem", -[2,9072,9073], -[2,597,553], -[2,597,594], -[0,1429,2899,4039,2151,3980,14942,1951,1385,14944], -[0,14938,5284], -[1,2343,9080], -[0,9081,9082,9083,2537], -[0,14938,1380], -[0,14953,1385,1429,2899,14942], -[0,14938,1698,1585], -[1,2343,9085], -[0,9086,9090,2514,2487], -[0,6520,14959,2116,14939,4449,4648], -[3,603,15], -"documenter", -[2,9087,9088], -[0,4856,6503,4874,14962,1429,1540,2899,14964,3421,1894,14967,4487,4490,14970,91], -"json-api", -[1,2343,9095], -"json:api", -"normalizer", -[0,9096,9097,9098,2487], -[0,14978,14980,14981,1437,1457,1544,1549,14982,14985,14986,984,2145,2151,2659,2700,3170,3459,13399,3784,14990,4093,710,4150,4151,4153,4218,11804,4747], -[0,4874,14992,1429,14995,2215,13333,2899,1894,3760,705,4019,4039,4193,4220,4232,4294,4342,91,4597], -[0,14998,1623,15000,15001], -[3,4873,9], -"@types/mdx", -[1,2343,9103], -"mdx", -[0,9104,9105,9106,2523], -[0,1002,2070,614,1695,1145,1398,2018,2571,15043,15016,7029,3729,814,2713,3757,4431,15017,15019,2861,15020,15030,4165,15040,15006,15044,1537,15031,15037,15048,15018,15028,15042,15047,15007,15009,3502,15033,3923,15022,15036,1618,15039,15046,15014,15013,15015,13818,15024], -[0,15060,4384,1241,4135,4430,1292,15057,15052,1506,15051,15055,15056,15059], -[0,1388,3209,10906,15064,6374,3378,5284], -"encryptor", -[1,2343,34414], -"-model", -[2,603,9109], -"@rushstack/node-core-library", -[3,9111,11], -[2,9112,7009], -[3,9113,12], -"s-comm", -[0,15070,15071,15073,814,4430], -"and-line", -[2,9115,9117], -[2,9114,9118], -"rig-package", -[2,9112,9120], -[0,2832,3275,3752,705,4039,4384,15077], -"heft-node-rig", -[2,9112,9123], -[3,9124,15], -"eft-jest", -[2,6495,9126], -[3,7892,12], -[2,9128,3180], -[2,5554,7625], -[0,1389,14927,1858,2202,2203,353,11316,10906], -"JSDoc", -"AEDoc", -"TSDoc", -"alpha", -"beta", -[1,2343,9138], -[0,9139,0,9140,34352], -[0,28572,1423,14227,15085,15088], -[0,1421,2887,15090], -"tsdoc-build-rig", -[1,2343,9144], -"ig", -[0,9145,9147,9148,2443], -[0,15095], -[3,1937,15], -[0,4389,4039,91,4874,15097], -[0,15100,15101,1616,15102,15103,15105,10368,9254,15107], -[1,2343,9150], -[0,0,9151,9152,2399], -[0,3421,4390,4481,1429,3348,1437,2899,4193,1177,4042,4474,1894,1317,3310,4196,91,4856,4874,6503,6513,3090,6512,4232,1978,1895,1955,603,10817,1011,816,15115,1009,549], -[0,3230,1395,57], -"jju", -[1,2343,9155], -[0,0,0,9157,2487], -"@types/jju", -[0,1396,1388], -[1,2343,9159], -[0,9160,9164,9168,4139], -[0,1082,15127,15128,1437,3090,3183,15130], -"@dat", -"astream/core", -[2,9161,9162], -[0,15132,1177,2070,2899,4039,4042,15134,811,8850,816,4227,4232,15136], -"@types/a", -"ws-lambda", -[2,9165,9166], -[0,5284,15139,15140,15141,6778,7192,5194,6598], -"Lambda", -"Middleware", -"Serverless", -"Framework", -"AWS", -"AWS Lambda", -[1,2343,9176], -[0,9177,9178,9179,2443], -[0,1301,13811], -[0,1090,1317,1389,1537,2676,13651,13633,4237,4389,4431,4535], -[0,6866,1388,1389,1398,15148,6735,15149], -[1,2343,9181], -[0,0,9187,9188,2537], -"Middy", -"HTTP", -"Body Parser", -" Body Parser", -[2,6671,9185], -[0,13614,1158,1159,1177,2708,3410,4103,4389], -[0,1398,4162], -[1,2343,9190], -[0,9197,9198,9199,2537], -[3,7709,17], -"sm", -[2,9191,9192], -"aws-", -"xray-sdk", -[2,9194,9195], -[0,15160], -[0,2899,640,15164], -[0,1401], -[1,2343,9201], -[0,0,8134,9202,2523], -[0,4061,15174,4062,202,5260,364,15175,3392,4552,1460], -"moj", -[2,4964,6770], -[1,2343,9206], -[0,0,9208,9222,2523], -"hash-base", -[0,1637,3566,1894,4039,2278], -"@open-", -"draft", -"/deferred-promise", -[2,9210,9211], -[2,9209,9212], -[3,9213,12], -[2,9214,2942], -"until", -[2,9214,9216], -"is-node-process", -"outvariant", -"ct-event-emitter", -[2,4285,9220], -[0,1623,2278,4329,15182,10052,6398,5130], -[1,2343,9232], -"test-server", -[2,9214,9224], -"@ossjs/release", -[2,4860,982], -[3,7808,15], -"upload", -"fileupload", -[2,9228,9230], -[0,9234,9238,9253,2523], -"rate-limit", -[0,5923,15187,8646,688,691,9296,15194,11420,1170,1437,1676,29297,15197,3445], -[3,7810,9], -"llow-redirects", -[2,9235,9236], -[0,9736,9737,4856,5245,15203,6503,4874,6513,1009,1429,1177,1891,1893,1895,1955,2899,3211,3297,3377,3421,1890,4172,4193,4474,91], -"upertest", -[2,5051,9239], -"@types/ws", -"engine.io-parser", -[2,2032,9230], -[2,2032,9233], -[2,4183,1960], -[3,4220,10], -[2,9246,57], -"ironment-miniflare", -[2,8156,9248], -[2,1984,9249], -[3,5572,9], -[2,9251,2022], -[0,5592,1745,3452,5593,15208,200], -"encoding", -[2,5925,9254], -[3,4684,9], -"ttp-server", -[2,9256,9257], -[1,2343,9260], -[0,9263,9264,9265,2523], -"intercept", -"low-level", -[0,15006,15051,1537,14738,3183,4431], -[0,4389], -[0,1389,6374,15215,3178,3209], -[1,2343,9268], -"mui", -[0,9269,9270,9271,2487], -[0,15221,3220,15220,15223], -[0,15225,4384,4591,4593,3123], -[0,3073,6807,15227,1781,1409], -[2,619,553], -[2,619,594], -"@mui/base", -[1,2343,9276], -[0,9277,9278,9279,2487], -[0,15232], -[0,15234,1177], -[0,15236,25,15237,2139], -"core-", -"s-tracker", -[2,1764,9281], -[2,9280,9282], -[2,619,9283], -[1,2343,9286], -[0,9287,9288,9289,2537], -[0,3080], -[0,14408,15243,14406,15245,14405,14404], -[0,11995,4552,1398,6866,7270,1411,1781,4699,15247], -[1,2343,9294], -"theming", -[2,5695,9291], -[2,619,9292], -[0,0,9295,9297,2537], -[0,1177,1948,2899,3421], -[2,9710,15201], -[0,1412,1413,6435,1644,57,6270,15253], -[1,2343,9299], -[0,9303,9304,9305,2537], -"mui-x", -"timepicker", -[2,1666,9301], -[0,15258,8697,2105,15261,11935,11938,11943,14025,15262,4747,4748], -[0,4874,1429,15264,1610,2899,4255,4474,91], -[0,4504,15266,1973,2759,15267,3323,202], -[1,2343,9325], -"@headlessui/react", -"@iconify-icon/react", -[3,602,8], -[2,9309,1194], -"@mdx-js/mdx", -"@shikijs/transformers", -"@theguild/remark-npm2yarn", -"nist", -[2,7817,9314], -"@vcarl/remark-headings", -"approximate-number", -"-watch-webpack-plugin", -[2,2473,9318], -"flex", -"flexsearch", -"git-url-parse", -"phrasing", -[2,3138,9323], -[0,0,9326,2514,2523], -[0,6041,1192,2020,2675,2205,4042,668,12444,4468,4474,4508,2151,1894,15275,91,53,5087,2990,3123,4864,4131,15276,4057,15277,811,1652,816,15273], -"next-seo", -"-async", -[2,3830,9328], -[3,3968,10], -"ract", -"-excerpt", -[2,9331,9332], -[2,9330,9333], -"rehype-p", -"retty-code", -[2,9335,9336], -"matter", -"frontmatter", -[2,3986,9339], -"remark-h", -"eading-id", -[2,9341,9342], -"link-", -"rewrite", -[2,9344,9345], -[2,3986,9346], -"shiki", -[1,2343,9356], -"-themer", -[2,4383,9350], -"virtual-", -[2,9352,5260], -[2,4670,9353], -"zustand", -[0,9369,9370,9371,2443], -[2,4860,4349], -"tra-watch-webpack-plugin", -[2,8773,9358], -[3,7634,10], -"-url-parse", -[2,9360,9361], -[2,9099,6892], -"@repo/eslint-config", -"@repo/", -[2,4524,1541], -[2,9365,9366], -[2,9365,7628], -[0,2928,32554], -[0,11976,15288,8419,4874,7677,37080,8420,4039,4493,91,1984,8422], -[0,2325,20164,8436,202,10339,8437,1552,3143,8438,9553,8439,8440,8441,8442,8443], -[1,2343,9373], -[0,9377,9380,9385,2537], -[3,5309,9], -[2,9374,8924], -[2,9374,57], -[0,9441,15305,15308,15310], -"css-what", -"esthetic", -[0,13614,1159,9254,1855,1177,2011,2133,13619,2708,3410,3421,3431,4103,4389], -"builder", -"guides", -"demo", -"ng-doc", -[0,5284,5286,3595,676,6716,7239,6714,6715,7162,1417,7272,3046,6830], -[1,2343,9387], -[0,0,8134,9388,2537], -[0,1420,15320,15318,15321,13230,15322,1758,4545,15323,1871,2585,6270,15324,15326], -[1,2343,9390], -[0,0,0,9391,2537], -[0,12080,12075,8221,1388], -[1,2343,9399], -[2,3964,1671], -"has-p", -[2,9394,3871], -[2,2573,9395], -[3,9396,11], -"eading-", -[0,0,0,9410,2523], -"eading-rank", -[2,9397,9400], -"rehype-m", -"inify-", -[2,9403,3661], -[2,9402,9404], -[3,4555,11], -[2,9406,7131], -[3,9312,9], -[2,9408,3958], -[0,4231], -[1,2343,9412], -[0,9413,9418,9419,34352], -[0,3299,32944], -"ordinal", -[3,6490,12], -"as-promised", -[2,9415,9416], -[0,4874,15342,2026,2822,2899,3536,4255,4481,91], -[0,1424,15344,11812,15345,15346,158,11806,2636], -"ethers", -"hat", -"hardhat", -"n.js", -[2,4853,9423], -[3,634,25], -[2,9425,9420], -[3,634,17], -"low-", -"low-imports", -[2,1967,9429], -[2,9427,9430], -[3,9431,31], -"-inter", -"nal-rules", -[2,9433,9434], -[2,9422,9435], -[2,9432,9436], -[1,2343,9442], -"ethereum", -"smart-contracts", -[2,1417,15307], -[0,0,9443,9444,2537], -[0,1159,1177,1881,1938,2151,2899,2924], -[0,2924,1932,15356,1204,3209], -[1,2343,9446], -[0,0,0,9450,2523], -"proggy", -"cacache", -"bin-links", -[0,3521,15361,1973,5472,15362], -"treeverse", -"@npmcli/fs", -"walk-", -"up-path", -[2,9453,9454], -[2,636,3766], -[3,643,9], -"edact", -[2,9457,9458], -"npm-p", -"ick-manifest", -[2,9460,9461], -"-checks", -[2,1161,9463], -[2,3382,9464], -"promise-", -[1,2343,9482], -"call-limit", -[2,9466,9468], -[3,2854,15], -"nice", -[2,9470,9471], -"-conf", -"lict-json", -[2,9473,9474], -[2,1644,9475], -"package-", -[2,9477,1781], -[2,636,9478], -"common-", -"ance", -[0,0,9511,9521,2523], -"stor-path", -[2,9481,9483], -[2,9480,9484], -"read-p", -"ackage-json-fast", -[2,9486,9487], -"all-reject-late", -[2,9466,9489], -[3,641,9], -"ame-from-folder", -[2,9491,9492], -[3,638,9], -"etavuln-calculator", -[2,9494,9495], -[3,548,8], -"e-compare", -[2,2703,9498], -[2,4284,9499], -[2,9497,9500], -"json-p", -"arse", -"-even-better-errors", -[2,9503,9504], -[2,9502,9505], -"installe", -"d-package-contents", -[2,9507,9508], -[2,636,9509], -[0,1414,15370,2899,1177,668,2203,15371,1690,1894,442,91,15373,15374,5476,1942,15376,811,5478], -"tcompare", -"oss", -[2,4641,9513], -[2,636,9514], -[2,636,7625], -"minify-", -[3,3396,9], -[2,9518,6774], -[2,9517,9519], -[0,1973,6468,1145,5472,1429], -[1,2343,9523], -[0,9524,9525,9526,2523], -[0,15373], -[0,1414,1429,2899,1177,2203,1894,442], -[0,1429,15385,1388,1149,5472,5710,6567,14833], -[2,664,591], -[1,2343,9529], -[0,0,9530,9531,34352], -[0,3095,2899,1429], -[0,1429,3495,15393], -[1,2343,9533], -[0,0,9534,9535,34352], -[0,1429,2899,2759,1596,14942,15398], -[0,1429,15385,15400,1435,6793,1932,15402,1697,15403,3529,9549,7015,15405], -[3,9479,9], -"-spawn", -[2,2751,9537], -[2,9536,9538], -[1,2343,9541], -[0,0,9543,9544,4139], -"spawk", -[0,1414,1906,1166,4481,2020,3130,3077,15411,4874,6271], -[0,1473,7208,1512,7009,7201,200,1871,1111,590,592,6621,6983,6616,7244,4166,4744,3073,6807,6876,2585], -[1,2343,9546], -[0,0,9571,9581,2399], -"innertext", -"highlights", -"similar", -"similarity", -[3,2954,9], -[2,9551,2714], -"ttl", -[2,4635,9553], -"dart", -[2,9551,9555], -"glsl", -[2,9551,9557], -"haxe", -[2,9551,9559], -"rust", -[2,9551,9561], -[2,3064,2204], -"erlang", -[2,9551,9564], -[2,9551,4333], -"-tokens", -[2,9548,9567], -"atom-language-diff", -[3,9569,14], -[0,1166,1178,1596,15418,1177,15421,2323,15423,2384,2494,2510,15424,1209,3421,3756], -"nginx", -[2,9570,9572], -"url-t", -"o-object", -[2,9574,9575], -[2,2287,9576], -[3,3114,13], -"xpand-tabs", -[2,9578,9579], -[0,1438,3778,1179,1973,15426,1213,15427,15428], -"-headers", -[2,7189,9582], -[2,3108,9583], -[1,2343,9589], -"oniguruma", -"-stdout", -[2,9261,9587], -[0,0,0,9590,2523], -[0,1444,15321,6270,353,15320,15326,15436,15437,15439], -"readme", -[1,2343,9596], -"formatted", -" highlighting", -[2,5341,9594], -[0,9597,9598,2514,2537], -[0,15444,9632,1556,15447,6041,15448,15449,3445,3510,15450,15451,4135,15452], -[0,4874,5254,7677,1177,1905,2807,1894,4257,91,4543,1984], -[1,2343,9600], -[0,9601,9602,9603,2537], -[0,15458], -[0,811,15460,8850,816,842,1006,15463,1009,1011,15465,15467,15469,1540,1596,1610,1177,15471,1927,1937,1948,1999,2070,2765,2766,2297,2881,2886,2891,2895,2898,6387,2910,15475,2923,5303,3220,3222,3536,4042,4052,6390,15478,4073,91,4747], -[0,1424,15480,2382,15481,12075,6398], -[1,2343,9605], -[0,9606,9607,9608,2443], -[0,3493,4548,15488,15487,2654,15486,1754,15502,15491,15499,15495], -[0,4494,4483,2675,2832,1177,2814,1984,2203,1894,4441,442,91,4874,2990,13204,19438,15504,1953,15505,4523,7677,1942,22839,1982,3703,15507,1895], -[0,15512,2814,3585,15514,57,965,6523,1936], -[1,2343,9610], -[0,9611,9612,9613,2523], -[0,1615,15526,3734], -[0,1173,14184,1235,1267,1429,1177,2272,2899], -[0,1451,3729,6567], -[1,2343,9615], -[0,9616,9617,9618,2537], -[0,97,15533,8597,15538,13042,1156,1325,15540,1461,1505,12160,1582,1593,1603,15541,15545,15547,15548,13047,15550,5100,15551,15553,2752,2822,15554,2272,15555,15556,12172,3220,15559,1894,11196,15560,15562,3775,11219,11363,15566,15568,15570,15573,3843,3847,15575,15578,3876,3893,3913,4023,15579,11264,4163,15580,4484,4545,4649,3348], -[0,53,61,71,73,76,78,5806,13052,5835,15585,83,5850,5853,87,90,7833,7839,7840,11275,4859,15587,15592,4863,15594,15596,5087,15598,4870,15600,15602,12179,4880,15605,4883,15606,15607,11322,1009,1011,1110,1165,1170,1175,1178,1193,1195,1205,13080,5098,15609,15611,15612,15613,1426,1437,13086,1525,1610,1628,4912,1639,11336,13093,1843,1845,8160,1177,1879,1895,1922,1938,1939,1947,1948,1959,15615,2054,2060,11345,2092,2148,2193,2070,2323,2338,2510,13099,2529,2675,2686,2697,15616,1192,2832,5102,695,13115,2990,1209,11357,13119,15618,13123,3177,3183,3188,3190,3191,3213,3216,3222,3427,3463,3561,3618,3720,11204,15619,15622,11362,89,3807,3810,3817,3820,5106,5108,15624,3846,15627,9340,3992,13124,13127,8304,13128,4039,13129,15629,4320,11384,11389,4323,11396,4328,4409,4431,4469,91,4549,4027,15630,15632,2924,15635,4689,13152,11401,5038,3354], -[0,15637,4964,89,5128,4627,4963,181,5130,4967], -[1,2343,9620], -[0,9629,9630,9631,2537], -"Monorepo", -"Angular", -"Web", -"Node", -"Nest", -"Jest", -"Cypress", -"CLI", -[0,15648], -[0,15645,4874,1894,4448,91,10761], -[0,2150,2282,6720,7158,6929,2090,2154], -"confbox", -[1,2343,9634], -[0,0,9635,9636,2523], -[0,1470,2675,23535,4255,4389], -[0,15656,15658,11857,1973,13735], -[2,13512,9638], -"-old", -[1,2343,9640], -[0,9641,0,9642,2523], -[0,182,148,6164,164,167,6215,137,27531,6127,29468,159,15664,177,187,153,162,180,185,191,157,15667,15670,15672,27537,140,15676,6200,6166,143,15678,171,116,15681,150,155,29542,15685,15687,6217,15690,15692,122,169,15695,119,15697,15700,6173,15703,146,6133,6158,15706,15712,111,6168,15714,15716,174,15720,15724], -[0,6092,1459,6094,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130], -[1,2343,9644], -[0,0,9645,9646,2523], -[0,4481,4042,4441,2665,3117,8850,811,816], -[0,89,1623,5256,6848,1461,614,6435], -"EsBuild", -"Front-end", -"Backend", -[1,2343,9651], -[0,9652,9653,9655,2523], -[0,4227], -[0,1389,1177,1881,2659,3297,4153,4616], -"linter", -[0,1623,2632], -[1,2343,9660], -"Lint", -"ESLint", -"Testing", -[0,9661,9662,9663,2399], -[0,1700], -[0,48,53,87,92,15742,5087,4874,15745,1193,1503,1610,1701,1177,2020,2675,1192,2990,2991,3377,1894,3921,4135,15747,91,2924], -[0,2924,1932,4050,202], -[1,2343,9665], -[0,0,0,9666,2523], -[0,1111,1468,7009], -"Express", -[1,2343,9669], -[0,9670,8134,9671,4139], -[0,15757,4025], -[0,1468,1237,3209,1204,2325,15759,15760,15761,5669,6865,7293,6790,2145], -[1,2343,9674], -"js-tokens", -[0,9679,0,9682,2523], -"const-enum", -[2,1199,9675], -[2,4524,6774], -[2,1226,9677], -[0,2070,2021], -"Swc", -"Tsc", -[0,200,9753,15767,15769,15768,7058,7201,15770,15771,15774,1523,15776], -[1,2343,9684], -[0,0,9685,9686,4139], -[0,1166,91,1906], -[0,200,5403,14907,7009,6048,7201,6938,3656,14908,2585,1781], -"@nestjs/schematics", -"@phenomnomnominal/tsquery", -"@date-fns/tz", -[1,2343,9691], -[0,9693,9694,9695,2537], -[3,23750,37,8], -[0,2353,1856,15786,13824,15788], -[0,1177,15793,15797,15801,2675,2990,3421,15804,15805], -[0,1111,1473,7201,7009,200,4166,3073,6807,4744], -[1,2343,9697], -[0,9698,9699,9700,2443], -[0,4035], -[0,4874,1166,91,1906], -[0,200,13006,1111,15813,5876,15814,15815,6048,7009,7201,6621,4166,6876], -[1,2343,9702], -[0,0,0,9703,34352], -[0,200], -[2,689,2656], -[3,691,8], -[2,9705,3320], -"help", -[2,689,9707], -[1,2343,9713], -[3,691,14], -"plugins", -[2,9710,9711], -[0,0,9715,9716,2537], -"fancy-test", -[0,1166,3077,15826,91,1906], -[0,200,1478,6787,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921,1781], -[1,2343,9718], -[0,9719,9720,9726,2399], -[0,1512], -[0,4170,15833], -[3,4866,9], -"dent-string", -[2,9721,9722], -"xyquire", -[2,6508,9724], -[0,200,1512,176], -[1,2343,9728], -[0,9729,9732,9751,2523], -[0,1209,4290,1512], -"clean-stack", -"widest-line", -[0,15841,1429,1481,1596,15843,15844,2323,2436,2463,2541,4193,4196], -"rett", -"ier-config", -[2,9733,9734], -[2,9705,9735], -[2,689,1973], -[3,4859,9], -"ean-stack", -[2,9738,9739], -"@types/ejs", -"npapi", -[2,5088,9742], -[3,9240,10], -"ports-color", -[2,9744,9745], -[3,7822,10], -"dwrap", -[2,9747,9748], -"madge", -[0,202,1523,3924,200,176,15846,15847,3656,1512,10052], -" line", -[2,1523,9752], -[1,2343,9755], -[0,9756,9757,9751,2399], -[0,4290], -[0,1481,1177,1895,1955,1192,15853,15854,1894], -[1,2343,9759], -[0,9761,8134,9762,2399], -[2,1890,4406], -[0,4208,4290], -[0,15862,15864,2585,7051,6913,200,7009,6048,4166,4289,1111,1871], -[1,2343,9764], -[0,9775,9795,6936,2537], -"paginate-rest", -[2,1186,9765], -[2,7724,9766], -[3,9767,16], -"request-", -"request-log", -[2,9768,9770], -[3,9771,18], -"st-endpoint-methods", -[2,9772,9773], -[0,1437,4484,2755,1209,4135,2822,15869,2151,4294,688,1110,9730,15871,1107,13223,4290,15872,15873,2709,15876,4351,15877,15880,15883,15887], -"-action", -"auth-action", -[2,7724,9777], -[3,9778,15], -"pp", -[2,9779,9780], -[2,1182,2995], -[2,7724,9782], -[3,692,11], -[2,9784,5460], -[2,7724,2190], -"update-", -"vers", -"in-files", -[2,7854,9789], -[2,9788,9790], -[2,9787,9791], -[2,6324,9792], -[2,4131,9793], -[0,1429,1170,2899,1177,4474,9714,91,4856,4874,6503,4870,5254,7637,4864,1431,15891,15893,9740,1891,15897,9746,9417,1893], -"octokit", -[3,3450,10], -[1,2343,9799], -[0,9800,9801,9802,2523], -[0,7103], -[0,816,10817,5087,4870,4874,27744,1009,1011,15903,15906,1177,15909,1959,2188,1192,1209,4042,15911,4468,4474,91], -[0,200,91,57,7119,7233,7058,5675,1523], -"action-menu", -[2,698,9803], -[3,9804,21], -"sheet", -[2,9805,9806], -[3,9804,15], -"lert", -[2,9808,9809], -[2,9808,2944], -"nchor", -[2,9808,9812], -"rea", -[2,9808,9814], -"chart", -"flowchart", -[2,5745,9817], -[2,9808,9818], -"utocomplete", -[2,9808,9820], -[1,2343,9823], -[0,9824,9825,9827,2523], -[0,15917,1631,15918], -[0,53,87,1195,1429,1610,1177,1881,1895,1938,1955,2675,2297,2878,2881,2900,2918,2925,2990,2899,1894,4193,4481,4537,2924,4677], -"vatar", -[0,1492,1585,15921], -"badge", -[2,698,9828], -[3,9829,16], -[1,2343,9832], -[0,9836,9839,9881,2537], -"se-select", -[2,9830,9833], -[3,9829,15], -[0,34216,2020,32794,2755,15926,28429], -"readcrumb", -[2,9835,9837], -[0,1166,1906], -"-item", -[2,9838,9840], -"ulletin-board", -[2,9835,9842], -[3,9843,16], -"tton", -[2,9844,9845], -"-group", -[2,9846,9847], -[2,698,9026], -[2,9849,8657], -[3,9850,23], -[2,9851,6624], -[3,9849,16], -"rd", -[2,9853,9854], -[2,9855,9847], -[3,9856,19], -[2,9857,1283], -[3,9855,17], -"ousel", -[2,9859,9860], -[2,9861,9840], -"scader", -[2,9853,9863], -"-menu", -[2,9864,9865], -[3,9866,24], -"obile", -[2,9867,9868], -[3,9866,23], -[2,9870,202], -"panel", -[2,9870,9872], -[2,9870,1631], -[2,9870,6624], -[3,9849,15], -"ell", -[2,9876,9877], -"hart", -[2,9876,9879], -[0,1492,1585,15928,15929,15930,3917,6033,15931,1490,15932,15933], -[1,2343,9883], -[0,9884,9885,6162,2537], -[0,4290,4294,4726], -[0,4874,1009,1011,1414,1429,1437,1610,1177,1938,1953,2321,2899,4039,8689,91], -[1,2343,9887], -[0,0,9888,2514,2487], -[0,2276], -[1,2343,9890], -[0,0,9891,9893,2399], -[0,1999,4579,4072], -"gauge", -[0,5256,6848,1461], -[1,2343,9895], -[0,9896,0,9897,2523], -[0,1474], -[0,15953,9628,14777,15955,1478,9892,3924,7201,1398], -[1,2343,9899], -[0,0,9900,9901,2487], -[0,1389,15960,2899,3261], -[0,1149,2124,1179,15962,15964], -[1,2343,9903], -[0,9904,9905,9907,2537], -[0,2927], -[0,4170,2899,1499], -"pie", -[0,7009,7201,3741,8622,6875,10098,1499], -[1,2343,9909], -[0,9034,9910,9911,2523], -[0,620,3123], -[0,1973,2022,6468], -[1,2343,9913], -[0,9914,9915,9916,2443], -[0,6478,15980,2822,15984,15985], -[0,1177,1895,2675,1192,2990,3203,1894], -[0,4504,15988,15990,1503], -[1,2343,9918], -[0,9919,9920,9921,2487], -[0,15997,15999,16000,16002,16003,16005,16006], -[0,16009], -[0,6038,1501], -[1,2343,9923], -[0,0,9924,9926,2399], -[0,1734,16015,2600,3105,4545], -"fall", -[0,5284,1351,1509,4643], -[1,2343,9928], -[0,0,9929,9926,2537], -[0,53,87,10688,1505,1734,2600,16021,3105,3758,4545,2924], -[1,2343,9946], -[3,9880,16], -"eckbox", -[2,9931,9932], -"-button", -[2,9933,9934], -[3,9935,23], -[2,9936,7227], -[2,9876,7877], -"lapse", -[2,9938,9939], -[2,9940,9840], -[3,9941,23], -"ition", -"transition", -[2,9942,9944], -[0,9972,9975,10072,2537], -"icker", -"or-picker", -[2,9938,9948], -[3,9949,20], -"select-", -[2,9951,9872], -[2,9950,9952], -"umn-list-group", -[2,9938,9954], -[3,9955,26], -[2,9956,5401], -[3,9938,16], -"mpany", -[2,9958,9959], -"nfig-", -"provider", -[2,9961,9962], -[2,9958,9963], -[3,9964,17], -"tainer", -[2,9965,9966], -"untry", -[2,9958,9968], -"rop", -[2,9876,9970], -[0,6271,11421], -"urrency", -[2,9876,9973], -[0,2899,4481,1906], -"date-panel", -[2,698,9976], -[3,9977,20], -[2,9978,9947], -"-mobile-", -"first", -[2,9980,9981], -[2,9979,9982], -[3,9977,19], -[2,9984,6754], -[2,9984,176], -[3,9977,15], -"ept", -[2,9987,9988], -"ialog-box", -[2,9987,9990], -[3,9991,21], -[2,9992,1631], -[3,9991,16], -"vider", -[2,9994,9995], -"rawer", -[2,9987,9997], -[3,9998,16], -"op-roles", -[2,9999,10000], -[3,10001,19], -"times", -[2,10002,10003], -[3,10001,18], -[2,10005,2971], -[2,10006,9840], -[3,10007,23], -[2,10008,4403], -"ynamic-", -"scroller", -[2,10010,10011], -[2,9987,10012], -[2,10013,9840], -"espace", -[2,698,10015], -[3,10016,15], -"xception", -[2,10017,10018], -"fall-menu", -[2,698,10020], -[3,10021,15], -"ile-upload", -[2,10022,10023], -[3,10024,17], -[2,10025,2389], -[2,10026,8657], -[3,10027,22], -"ox", -[2,10028,10029], -[3,10027,21], -[2,10031,9872], -"loat-button", -[2,10022,10033], -[3,10034,19], -"bar", -[2,10035,10036], -"ing-", -"button", -"ing-button", -[2,10035,10040], -[3,10034,17], -"wchart", -[2,10042,10043], -[3,10034,16], -"uent-editor", -[2,10045,10046], -[2,10022,3469], -[2,10048,9840], -"ullscreen", -[2,10022,10050], -"grid", -[2,698,10052], -"-column", -[2,10053,10054], -[3,10055,19], -"manager", -[2,10056,10057], -"toolbar", -[2,10056,10059], -[3,10053,15], -"uide", -[2,10061,10062], -"hrapprover", -[2,698,10064], -[2,698,158], -"-viewer", -[2,10066,10067], -[3,10066,15], -"ndex-bar", -[2,10069,10070], -[0,1473,7208,1623], -[3,10071,16], -"put", -[2,10073,10074], -"p-address", -[2,10069,10076], -[2,698,5433], -[3,10078,16], -"yout", -[2,10079,10080], -[3,10078,15], -[2,10082,2716], -[2,10083,9865], -[1,2343,10086], -[0,0,0,10090,2523], -"oading", -[2,10082,10087], -[3,10088,16], -[0,7009,592,1473,1111], -"cales", -[2,10089,10091], -"gon-user", -[2,10089,10093], -[3,10094,18], -"ut", -[2,10095,10096], -"mask", -[2,698,10098], -[3,10099,15], -"enu", -[2,10100,10101], -[3,10102,16], -"ssage", -[2,10103,10104], -"ilestone", -[2,10100,10106], -[3,10107,16], -"nd-map", -[2,10108,10109], -[1,2343,10112], -[0,0,10113,10120,2523], -[0,1177,1886], -[2,10100,3852], -[3,10114,16], -"nth-range", -[2,10115,10116], -[3,10117,20], -[2,10118,176], -[0,1111,7009,1512], -[1,2343,10122], -[0,10140,10184,10220,2443], -"nav-bar", -[2,698,10123], -[3,10124,18], -[2,10125,4403], -[3,10124,15], -[2,10127,2304], -"umeric", -[2,10127,10129], -[2,698,5675], -[2,10131,9847], -"pager", -[2,698,10133], -[2,10134,9840], -[3,10134,16], -[2,10136,7251], -[3,10134,15], -[2,10138,9947], -[0,4294,16041], -"op-upload", -[2,10138,10141], -[3,10142,17], -[2,10143,8622], -[2,10143,6038], -[2,10143,2883], -[2,10143,2104], -"rogress", -[2,10138,10148], -"ull-refresh", -[2,10138,10150], -"qr-code", -[2,698,10152], -[3,10153,15], -"uarter-panel", -[2,10154,10155], -[3,10156,16], -"ery-builder", -[2,10157,10158], -[3,697,15], -"adio", -[2,10160,10161], -[2,10162,9934], -[3,10163,20], -[2,10164,7227], -[3,10162,16], -[2,10166,6864], -[3,697,16], -"cord", -[2,10168,10169], -[3,10170,17], -"ycle-scroller", -[2,10171,10172], -"ich-text-editor", -[2,10160,10174], -[3,10175,16], -"ver", -[2,10176,10177], -"oles", -[2,10160,10179], -[3,10180,16], -"w", -[2,10181,10182], -[0,1173,1267,1437,4387,4389], -"scroll-text", -[2,698,10185], -[3,10186,20], -[2,10187,10036], -[3,10186,15], -"earch", -[2,10189,10190], -[3,10191,16], -[2,10192,4021], -"-dropdown", -[2,10193,10194], -[3,10195,21], -[2,10196,5131], -[2,10196,6624], -"ed-box", -[2,10193,10199], -[2,10189,1580], -"keleton", -[2,10189,10202], -[2,10203,9840], -"lider", -[2,10189,10205], -[2,10206,9934], -[2,10207,9847], -"plit", -[2,10189,10209], -"-list-item", -[2,1902,10211], -[2,10189,10212], -[3,10213,17], -"tistic", -[2,10214,10215], -[3,10213,16], -"eps", -[2,10217,10218], -[0,6922,2585,1111,7201,7009,4719,176], -[1,2343,10242], -"witch", -[2,10189,10222], -[3,700,15], -"ab-item", -[2,10224,10225], -[3,10226,17], -[2,10227,10036], -[2,10228,9840], -[2,10227,2699], -[2,10227,591], -[3,10226,16], -"g", -[2,10232,10233], -[2,10234,9847], -"ext-popup", -[2,10224,10236], -"ime", -[2,10224,10238], -"-line", -[2,10239,10240], -[0,0,10243,10265,2487], -[0,2025,2272,2899], -[3,10241,19], -[2,10244,9872], -[3,10245,20], -[2,10246,9947], -[2,10247,701], -[2,10244,6754], -[2,10244,1631], -[3,10250,20], -"pinner", -[2,10251,10252], -"line-item", -[2,10239,10254], -"oast", -[2,10224,10256], -[3,10257,16], -"ggle-menu", -[2,10258,10259], -"oltip", -[2,10258,10261], -"p-box", -[2,10258,10263], -[0,200,1523,3504], -"ransfer", -[2,10224,10266], -"-panel", -[2,10267,10268], -[3,10267,16], -"ee", -[2,10270,10271], -[2,10272,9865], -[3,10273,19], -[2,10274,1631], -[2,698,9229], -"-dragger", -[2,10276,10277], -[3,10278,21], -[2,10279,3392], -[3,10276,15], -"ser", -[2,10281,10282], -"-account", -[2,10283,10284], -[3,10285,19], -[1,2343,10288], -[0,10297,10298,10305,2443], -"contact", -[2,10286,10289], -[2,10286,3193], -[2,10291,9847], -[2,10286,163], -"watermark", -[2,698,10294], -[3,10295,15], -[0,16053,16056,3025,16057], -[0,1187], -"izard", -[2,10296,10299], -"year-range", -[2,698,10301], -[3,10302,19], -[2,10303,176], -[0,6478,1644,7233,7058,5675,14690,57,7119,200,1523,3924], -[3,1533,10], -[2,10306,6082], -"vue-c", -[2,10308,544], -"opentiny", -"less-c", -[2,10311,544], -[2,8924,10312], -[3,3197,10], -[2,10314,544], -[1,2343,10317], -[0,10318,10319,10320,2537], -[0,16053,16064,16066,16057], -[0,811,816,2829,4042,1187], -[0,7009,9753,1521,1179], -"esno", -[1,2343,10323], -[0,0,10324,10325,2537], -[0,4481,1192,1177,2203,4468,1894,442,91,5087,4874,4523,1939,1895], -[0,1525,1523,5675,57,200,7233,7058,6478], -[3,2517,9], -[2,10326,134], -[2,2522,8754], -[1,2343,10330], -[0,10331,10332,10333,2523], -[0,2070,1680,1209,16085,16078,2151,2720,3183,7915,4296,1707,16082,4300,1652], -[0,3421,1429,3348,2899,4193,2194,4135,1503,3363,48,2708,3752,53,94,4131,87,3200,1208,16092,16088,16090,78,1570], -[0,1528,3721,1671,16096,1527], -[1,2343,10335], -[0,10336,10338,5265,2537], -[0,192,6303], -"otterhttp", -[0,6306,6307,26379], -"node.js", -"web framework", -[1,2343,10343], -[3,17194,17], -[0,0,10344,10358,2487], -[0,1173,1178,1198,1230,13982,1264,1280,1503,1610,1742,1177,1895,1955,1192,3170,1894,4039,4042,4045,4067,4077,4706], -"header", -"-range-parser", -[2,10345,10346], -[2,704,1080], -[3,703,13], -"ntent-type", -[2,10349,10350], -[2,988,2706], -[2,704,10352], -[2,704,1000], -[2,704,1002], -[3,706,12], -[2,10356,995], -[0,4552,1172,6778,16107,5194,16108,16109,1936,8958,16110,3924,16111,3250,16112,3374,6985,16113,16114,16115,1871,16116,4301,10381,16117,1283], -[1,2343,10360], -[0,0,9839,10361,2487], -[0,2013,13771,2018,6868,15535,11631,16123], -[1,2343,10365], -"es-escape-html", -[3,10351,19], -[0,10375,10377,10378,2523], -"disposition", -[2,10364,10366], -"encode", -"encode-url", -[2,704,10369], -[3,10370,12], -"rrors", -[2,10371,10372], -[2,704,4590], -[0,1413,16130,1676,12627,16128,4100,4590], -"res", -[0,1087,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], -[0,1536,16518,25386,2663,2026,21665,27,3101], -[1,2343,10380], -[0,10383,9264,2514,2537], -"tag", -[2,10371,10381], -[0,16136,2713,3923,7231], -"send-file", -[1,2343,10386], -[0,10387,10388,10390,2537], -[0,4094,1437,4747,4459,4165,4351], -[0,2675,1177,1984,668,2203,1894,442,91,4874,2990,6479,4892,16151,16150,4523,16149,7677,4103,9746,22839,16144,1895,1955,16152,23753,10964], -[2,712,1732], -[0,16159,13792,12804,1540,1523,16160], -[1,2343,10394], -"fined", -"undefined", -[0,10395,10396,10398,2537], -[0,2856], -[0,4874,1414,1509,16166,34218,16167,3583,705,4135,4452,4474,91,4545,16168,4745], -"randexp", -[0,12084,1541,8309,16172,16174,1263,6639], -[3,10389,22], -"js-prettier-config", -[2,10399,10400], -"i-color", -[2,9738,10402], -[3,7744,9], -"tp-proxy", -[2,10404,10405], -"isnil", -[2,6308,10407], -[3,4874,9], -"@types/nock", -[1,2343,10412], -[0,10414,9839,10415,2537], -"@types/ramda", -[0,16181,8098,2215,34027,16184], -[0,1541,1542,13901,8309,6937,16188,1781,2382,16189,7007,14745], -"-and-tag-version", -[2,1528,10416], -"hai-friendly", -[2,4914,10418], -[3,3028,12], -[1,2343,10422], -[0,10423,10424,10425,2537], -[0,1676,2099,3494,4578], -[0,1177,2899,3421,4342], -[0,5130,5122,2663,1544,16196], -"pact", -"pact-js", -" testing", -"ract testing", -[2,3109,10429], -"r driven testing", -[2,6613,10431], -[1,2343,10434], -[0,0,10435,10436,2443], -[0,4616], -[0,1544,2026,16202,6347], -[1,2343,10438], -[0,0,10439,2514,2537], -[0,1177,1192,4193], -[1,2343,10444], -"default", -"waapi", -"urls", -[0,10445,10447,10448,2537], -[0,1676,16211], -"arguments", -[0,11436,192,5467,19181,442,5245,6494,7808,4874,9240,1009,1011,1166,1414,1503,1177,1895,1930,1955,2026,2040,2193,2675,2990,3230,3400,3446,1894,4257,4342,1531,4508,91], -[0,1544,1550,3230,1577,2026], -[1,2343,10450], -[0,0,10451,10452,2523], -[0,11976,7808,4874,7677,2040,4474,91,1983,26744,1984], -[0,1544,1552,1577,2026], -[1,2343,10454], -[0,0,10455,10456,4139], -[0,8646,4874,7677,1446,16230,1177,1905,16232,1894,16234,15452,4290,91,4543,1984], -[0,7201,2942,16237,16238,200,14566,4549,3741,16239,1671,1851,16240], -[1,2343,10458], -[0,0,10459,10460,2523], -[0,1906,1166,1758,16257,2746,1797,7614,3754,16272,16249,16262,16264,16268,16270,4371,16277,16279,2675,16263,89,16278,1177,16260,5304,16267,1209,16269,4135,16274,16276,16281,2114,16261,16271,2608,3257,3416,16282,3824,2036,3985,16275,4545,16280,53,16259,2990,16265,16245,1506,16251,16273,16256,16248,90,3995,1909], -[0,16284,1283,6624], -[1,2343,10462], -[0,0,10463,10464,2487], -[0,1414,1177,1903,1938,1948,1954,1958,1970], -[0,1560,27,16290,10376], -[1,2343,10467], -"fd-package-json", -[0,0,10468,10469,2523], -[0,3421,2899,1177,1693,1954,1938,1958,1903,1970], -[0,1562,27,990,10376,16296], -[1,2343,10471], -[0,10472,0,10473,2537], -[0,18186,10466,3157,18183,16309,13848,28401,16322], -[0,1566,16094,13729,3073,200], -[1,2343,10475], -[0,10476,0,10477,34352], -[0,3157,16330,16329,1566], -[0,200,13326,1566,16094,13729,3073], -[1,2343,10479], -[0,10480,0,10481,2443], -[0,16337], -[0,1566,16341,16342], -[1,2343,10483], -[0,0,10484,10485,2537], -[0,16349,4384], -[0,6270,12938,4225,3053,1388,1676], -[1,2343,10487], -[0,0,10488,10489,2523], -[0,29867,7677,16356,91,1984], -[0,977,16358], -[1,2343,10491], -[0,10492,9025,10493,2537], -[0,977,1581], -[0,977,2663], -[1,2343,10495], -[0,10496,10497,10498,2399], -[0,16358,1676,16128,4100], -[0,1544,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], -[0,1544,2026,2663,1577], -[1,2343,10500], -[0,0,0,10501,2537], -[0,977,16375,16376], -[1,2343,10503], -[0,10504,10505,10506,2537], -[0,16382], -[0,1389,3183,3294,16384,3460,16389,4535], -[0,1492,1585,1388], -[1,2343,10508], -[0,10509,10510,10511,2537], -[0,27921,2200,4121,3369,4143], -[0,1700,1192,2675,3144,1622,1177,1701,2203,16407,2924,1894,1610,48,442,1193,91,53,4874,2092,2990,3400,192,1953,27928,4257,87,4523,16396,1939,1942,68,1938,16398,20281,1982,1895,1955,19344,16400,5467], -[0,2924,1932,16410,7004,1585], -[1,2343,10513], -[0,10514,10515,2514,2537], -[0,2070,3181,3188,16415,4431,4558,4747], -[0,4039,4389,4387], -[1,2343,10517], -[0,0,7923,10518,2537], -[0,16421,11194,1179,16423,16424,16425], -[1,2343,10520], -[0,10521,10522,10523,2537], -[0,3044,1588,16432], -[0,4880,4883,91,89,3824], -[0,89,91,11194,11255,16435], -[1,2343,10525], -[0,10526,10527,10528,2537], -[0,1543,16446,16449,16444,6038,2020,3368,4135,4375], -[0,16454,1414,2765,4037], -[0,1591,5576,200], -[1,2343,10530], -[0,0,0,10531,2523], -[0,6570,6964,6789,7221,6746,7011,7194,7087,6839,6860,6918,6620,6777,16461,6748,7171,6894,6945,6743,7309,6837,6644,6634,7259,6797,7061,6608,16462,6726,6828,7275,6569,7144,7108,7027,7263,6923,6854,7134,6762,7042,6818,6677,6422,6805,1858], -[1,2343,10533], -[0,10534,10535,10536,2537], -[0,3427,4590], -[0,1087,1177,2026,2899,3421,4342], -[0,1594,2026,1544,2663], -[1,2343,10538], -[0,10539,10540,10541,2487], -[0,16473,2702,2822,16474], -[0,7637,4874,16478,1009,1011,16480,1610,1177,16482,1895,1915,1938,1954,1985,2675,2990,15757,1894,16484,91,1984], -[0,3001,8309,1541], -[1,2343,10543], -[0,10544,10545,10546,2537], -[0,2822,16491,16492,3183,705], -[0,2899,3421,4170,4172,4193,1906], -[0,4504,1596], -[1,2343,10548], -[0,10549,10550,10551,2537], -[0,16499,2205,3157], -[0,1166,2020,3505,16330,1906], -[0,13326,200,1585,16502,16499,2090,1586,1496,2150,3101,2070,16503,3275,2062,3719,2382,1563,16504], -[1,2343,10553], -[0,10554,10555,10556,2537], -[0,2212,16513,1448,16509,16512,2685,16511], -[0,1414,1166,4494,3297,4193,1177,2203,442,16515,91,4874,4454,4523], -[0,5284,1598,16517,15514,15362,2814,6710,27,2671,13333,2212,705,1002,11996,16518], -"@epic-web/invariant", -[1,2343,10559], -[0,0,0,10560,2443], -[0,1599,16523,16526,16528,16524,16530,16531,16532,13580,16533,16534,16536,16537], -[1,2343,10562], -[0,10563,10564,10565,2523], -[0,16542,2713,13892,16543,16544], -[0,13817,4100,4255,4387,4389], -[0,1616], -[1,2343,10567], -[0,10568,10569,10570,2523], -[0,3082,3427], -[0,1192,3744,89,3824,2924], -[0,89], -[1,2343,10573], -"degit", -[0,10574,10575,10576,2399], -[0,63,16560,1462,1532,16563,16566,1676,2105,2185,2205,2212,16568,2709,16570,2743,2812,1209,3021,3093,3157,16571,13233,16572,3527,3544,3561,16573,16576,16578,4002,4207,4400,4431,4597], -[0,1149,1610,2099,2182,1192,3297,16581,4151,16584,4278,4603,1906], -[0,1604,3403,1623,16587], -[1,2343,10578], -[0,10579,10580,10581,4139], -[0,6501,5303], -[0,192,442,16596,16597,16602,6061,16607,6063,6065,16608,16612,842,16145,5087,4874,6513,1610,1177,1895,1939,1955,2675,1192,2990,1894,4131,4193,91,4523], -[0,1605,16615,16617,16618,4116,16619,16621], -[1,2343,10583], -[0,0,0,10584,2537], -[0,1605,6400,5995,57,1606,16618,4116,16629,5957,12692,14571,16631], -[1,2343,10586], -[0,0,10587,10588,2537], -[0,30684,33382,16636,16637,33968,33969,16638,33971,17212,4874,1177,16644,1930,1938,1942,1951,1953,16647,1958,1964,1982,2203,25209,3124,16649,3390,1894,23535,33974,4508,91,16650], -[0,1605,16631,4116,1608,6400,5995], -[1,2343,10590], -[0,10591,0,10609,2537], -[0,10870,16666], -[3,804,10], -[2,10592,8893], -[2,10592,8891], -[3,10594,12], -[2,10595,8896], -[2,10592,8905], -[3,10597,11], -"omutils", -[2,10598,10599], -"ragdrop", -[2,10598,10601], -[2,10592,8652], -[2,10592,8899], -[2,10592,3583], -[2,10592,8901], -"virtualdom", -[2,10592,10607], -[0,158,12712,7004,16660,16661,16662,16663,16664,29241,29242,29244,29245,29247,29248,1936,1623,5284,6400,5122], -[1,2343,10611], -[0,10612,10613,10618,2523], -[0,10557,1615], -[0,31088,21122,4874,7677,23203,1177,1894,91,1984,31103], -"@release-it/conventional-changelog", -[2,812,4072], -"cobertura", -"git-", -[0,16674,16676,6574,16697], -"git-cz", -[1,2343,10625], -"global-jsdom", -[2,7627,1177], -[2,10622,20], -"putout", -[0,10626,10628,10629,2523], -[0,3310], -"quibble", -[0,3421,1429,3297,2675,2899,4747,4039,4042,4135,1503,2026,2924,4255,1527,91,4856,4874,1364,2990,4150,4677,6503,4705,192,4257,8849,3198,15277,1652,28710,5467], -[0,1612,27,1002,1862,1149,7003,14571,14566,202,89,970,1388,6805,7102,4731,6662], -"remark-github", -"toc", -"remark-toc", -[2,4513,9339], -[3,4514,16], -"dn-links", -[2,10634,10635], -"no-inherit", -[2,4513,10637], -[2,4513,3984], -[3,10639,17], -"-defaults", -[2,1213,10641], -[2,10640,10642], -[1,2343,10647], -"-prettier", -[2,4549,10645], -[0,10649,10662,10664,2487], -[3,5410,10], -[0,4707,16687,16688], -"annotate", -"pin", -"specific", -"ations", -[2,10652,10653], -"anatomy", -"dissection", -"dissect", -[3,10654,13], -"specs", -[3,2620,12], -[2,10660,591], -[0,1192,2675,1177,3188,4039,1175,1193,2990,192,4257,16692,16694,5467], -"spacing", -[0,1614,16696,6574,16697,16699,6987,8429,16701], -"speccer", -[1,2343,10668], -"grid-layout", -[0,10669,10670,2514,2523], -[0,16710,16713,16716,1600,16719,16721,9207,2713,16722,16725,3779,16726], -[0,13614,1177,13817,3421,3438,16728,4100,4135,4389], -[1,2343,10676], -"@web", -"/shadycss", -[2,4963,10673], -[2,10672,10674], -[0,0,0,10680,2523], -"dom5", -"lazypipe", -"poly", -[0,1965,1616,16733,16734,16735,16736,16737,16739,16740,16741,16742,16743,16744,16745,16746,16747,16748,16749,16750,16751], -"polymer-cli", -"polymer-", -[2,10682,6147], -"gulp-v", -"ulcanize", -[2,10684,10685], -"wct-browser-legacy", -[2,1262,3178], -[3,806,9], -[2,1382,5187], -[2,10689,10690], -"google-", -"clos", -[1,2343,10709], -"ure-compiler", -[2,10693,10695], -[2,10692,10696], -"iron", -[3,4314,10], -"-page", -[2,10699,10700], -[2,10698,10701], -[2,10689,10702], -[3,10675,15], -"webcomponentsjs", -[2,10704,10705], -"gen-closure-declarations", -[2,10689,10707], -[0,10710,10711,10712,2537], -[0,1509], -[0,1414,1177,16758,1938,1951,1954,1955,2899,16759,3400,1894], -[0,16166,57], -[3,78,24], -[3,5731,9], -[1,2343,10716], -[0,10758,10762,10764,2537], -"-assign", -[2,5734,10717], -[2,10714,10718], -[2,10713,10719], -"@metalsmith/layouts", -[3,10721,12], -[2,10722,1783], -[3,807,9], -"disable", -[2,2827,10725], -[2,1884,10726], -[2,10724,10727], -[3,10728,23], -"qx", -[2,10729,10730], -[3,10728,16], -"plugin-qx", -[2,10732,10733], -"app-", -"module-path", -[2,10735,10736], -"better-ajv-errors", -"cldr", -"console-", -"contr", -"ol-strings", -[2,10741,10742], -[2,10740,10743], -"core-js-", -[2,10745,6374], -[3,4913,14], -[2,10747,7877], -[3,7681,17], -"codeframe", -[2,10749,10750], -"fontkit", -"get-value", -"github-api", -"jstransformer-dot", -"ps-tree", -"set-value", -[0,16765,34219,16767,16768,34222,16770,16771,1109,1437,16064,1525,28612,16772,16775,16778,16779,16780,16781,26385,4135,27921], -"tap-colorize", -"unset-value", -"upath", -[0,8778,5254,3170,3181], -"dirsum", -[0,16789,16790,1501,15318,15321,16791,16793,16794,671], -"qooxdoo", -"fontend", -[1,2343,10773], -"back-end", -"gui", -"binding", -"databinding", -"interfaces", -[0,10774,10775,10776,2537], -[0,2713,4227,16799], -[0,2899,4170,3130,1413], -[0,1623,57,5374,5376], -"@mdi/font", -[1,2343,10781], -"@mdi/svg", -"@xmldom/xmldom", -[0,0,10782,10789,34352], -[0,442,16805,16808,1177,3561,4042,4579], -"animate.css", -[3,1369,10], -[2,10784,45], -"eva-icons", -"line-a", -"line-awesome", -[0,3561,6425,1623,6432,16811,3205,4327], -"ar", -"quasar", -"fonts", -"animations", -[1,2343,10795], -[0,0,10796,10797,2523], -[0,23339,13204,6503,4874,5542,16818,1177,16821,1895,1955,16824,2675,16825,2832,2990,2899,3377,1894,28865,29444,91,16827,16831], -[0,1623,5746,3392], -"gpu", -"detect-gpu", -"gltfpack", -[1,2343,10803], -"@react-", -[0,10812,10813,10819,2537], -"three/drei", -[2,10802,10804], -[3,10805,13], -"fiber", -[2,10806,10807], -"processing", -[2,3689,10809], -[2,10806,10810], -[0,16837,3561,16840,3638,16841,16842,3688,4135], -[0,48,53,87,192,5467,16405,1193,1610,1622,1701,1854,1177,1895,1938,2092,2675,1192,2780,695,2969,2990,3144,3177,3400,3618,3672,1894,2278,4111,4257,4294,4307,4333,4334,4027,2924], -"test-renderer", -[2,10806,10814], -[3,10615,16], -[2,10816,2528], -[3,827,17], -[0,2924,1623,1194,1002,1204], -"actions", -[2,10818,10820], -[1,2343,10823], -[0,10838,10845,10856,2523], -"essentials", -[2,10818,10824], -"interactions", -[2,10818,10826], -[2,10818,3966], -[3,827,11], -[2,813,2942], -[2,10829,10830], -"preset-", -[3,1603,13], -[2,10833,1896], -[2,10832,10834], -[2,10829,10835], -[2,10829,89], -[0,1637,3561,2805,4121,4143,5180], -"-webpack5", -[2,10837,10839], -[2,10829,1975], -"__jest-dom", -[2,6626,10842], -[2,7750,10843], -[0,1700,16858,1192,2278,2675,3144,1622,1177,1701,668,2203,4337,2924,16851,1894,1462,1610,48,442,1193,1628,91,53,16850,16854,4874,2990,3400,4111,16860,192,1953,27928,16853,4257,87,1939,1584,1942,1938,16857,20281,1982,1895,1955,3177,19344,16400,5467], -"@types/three", -"-image-diff-js", -[2,1651,10847], -[3,1970,16], -"orybook", -[2,10849,10850], -"r3f-perf", -[3,6068,15], -[2,10853,2481], -"suspend-react", -[0,1637,1623,16858,1462,11538,668,2924,1464,16862,16863,3178,2632,6707,6708], -[1,2343,10859], -"three-stdlib", -[0,10861,10869,10871,2537], -"threejs", -[0,16868,9378,15488,16870,15487], -"hree-fiber", -[2,3900,10862], -"y-player-me", -[2,3917,10864], -"3D", -"avatars", -"glb", -[0,4483,1984,91,4874,2654,11976,16874,16877,7677], -"@cropper/elements", -[0,1623,3585,16879], -[1,2343,10873], -[0,10885,10889,10890,2537], -"@phryneas/ts-version", -[2,5531,2090], -[2,5531,2924], -[3,4852,12], -"__core", -[2,10877,10878], -[3,10879,14], -[2,5223,5651], -[2,1181,10881], -[2,10880,10882], -"@types/n", -[0,3141,4228], -"@types/nanoid", -[2,4807,3765], -[2,7686,2473], -[0,1414,16885,668,1177,16889,2899,4042], -[0,1623,6892,207,57,16891,16892,1179,594,5341,7020], -[1,2343,10892], -[0,0,10893,10899,2537], -[0,16805,1393,2070,3561,3566,3672,4135,4320,4323,16898], -[3,811,14], -[2,10894,594], -"common", -"commondir", -"is-reference", -[0,1623,16897,10654,16900], -"locat", -"e-character", -[2,10900,10901], -"relative", -[2,4013,10903], -[1,2343,10907], -"commonjs", -[0,0,10908,10909,2537], -[0,1173,1264,1503,2228,14352,2759,2899,3954,4019], -[0,1623,1867,16906,1871,4990], -[1,2343,10913], -"is-builtin-module", -"is-module", -[0,10914,10917,10918,2537], -[0,2984,16912], -"capitalize", -[2,4284,10915], -[0,1165,3561,16915,16916], -[0,1623,15215,3178,16918,16919,3561,6425], -[1,2343,10920], -[0,10921,10922,10926,2443], -[0,28920,30928,1634,3084], -[0,23591,23205,1177,1895,1955,2203,1894], -"groq-js", -[3,817,8], -"@sanity/ui", -[0,6829,6977,7146], -"@types/cpx", -[1,2343,10937], -"dotenv-flow", -[2,10924,1473], -[2,10924,45], -"@sanity/c", -[2,10932,1124], -[3,3878,10], -[2,10934,6346], -[2,7686,93], -[0,0,10943,10945,2537], -"pkg-utils", -[2,10924,10938], -"@portabletext/react", -[3,10940,14], -[2,10941,6081], -[0,53,87,92,442,16805,33227,16933,16934,5087,13204,4874,15600,16938,1193,1437,1457,1634,1895,1955,2126,1192,2832,3141,1894,3980,4494,4495,91,4523], -"cpx", -[0,1623,590,91,2124,4532,553,7900], -"sanity", -"refractor", -"kdirp", -[2,6502,10948], -"-workshop", -[2,10925,10950], -"vitest-", -[1,2343,10954], -[0,10955,10956,10965,2523], -[0,16944,977,2657,1581], -[0,3421,2899,1177,1544,4342,1364,1575,1578,1954,1938,1958,1903,1948,1970], -[3,9794,18], -"reset", -[2,10957,10958], -[2,10924,10959], -"imple-", -"import-sort", -[2,10961,10962], -[2,1967,10963], -[0,16944,11590,2663,2026], -"API reference", -[1,2343,10968], -[0,10969,10970,10971,2537], -[0,1642,1645,1647,4280], -[0,816,6503,4874,1794,2899,1894,4042,4064,4066,4170,4474,91], -[0,202,1641,16956,57,1644,5374,1646,353,3101,8623,16957,5995,4967], -[3,9307,12], -[2,10972,188], -[2,7719,57], -[2,819,10974], -[2,4807,1143], -"snippetz", -[2,819,10977], -[2,10987,14037], -[1,2343,10983], -"@unhead/vue", -"@vue", -[0,0,10985,10986,2523], -"@vueuse/core", -[0,816,6503,4874,1680,1794,2899,1894,4042,4064,4066,4170,4474,91], -[0,3101,8623,1641,3048,5995,4967], -[3,35505,11], -"code-", -[2,10988,5342], -[2,819,10989], -[3,818,12], -[2,10991,5576], -"@scalar/o", -"as-utils", -[2,10993,10994], -[2,819,553], -"@scalar/t", -"hemes", -[2,10997,10998], -"toast", -[1,2343,11006], -"use-toasts", -[2,819,11002], -"@scalar/co", -[2,11004,4961], -[0,0,11007,11009,2523], -[0,816,6503,4874,1642,16971,1680,1794,2899,2966,1894,4042,4064,4066,4170,4280,4474,91], -[2,27553,1794], -[0,1641,1644,57,6270,16956,3101,5995,4967], -"blocks", -[2,10829,11010], -[1,2343,11014], -[2,5249,11020], -[0,0,11015,11019,34352], -[0,816,6503,4874,1642,1680,1794,2026,2899,1894,4042,4064,4066,4170,4474,91], -[2,1029,188], -"test-utils", -[2,5334,11017], -[0,1641,1646,5374,5995,4967], -"flect.ownkeys", -"webpack-stats", -[2,4049,11021], -[1,2343,11024], -[0,6203,11025,11029,2537], -[0,35960,6503,4874,1217,1596,3183,2899,3421,4193,4468,4474,91,4537,2924,4677], -[2,4609,7179], -"css-in", -"well-known-symbols", -[0,1641,16984,16986,1648,1781,16989,16990,16991,16994,16995], -[1,2343,11035], -"jected-by-js", -[2,11027,11031], -[2,4609,11032], -"media-mock", -[0,11036,11042,5543,4139], -[0,3261,2070,1512,1209,4593,2089,6532,814,1362,17003,3730,1525,2753,1483,12126,6481,17010,6479,17007,2709,17011,17009,17000,1874,6475,17002,6470], -"-tooling", -[2,6147,11037], -[2,819,11038], -"galaxy", -[2,819,11040], -[0,3421,4449,1429,2899,4193,1177,1544,1593,1290,2151,3257,1894,17013,1596,48,1389,4196,53,1178,1509,4151,94,6525,6530,87,1954,1922,3957,1938,1208,1958,1895,1903,1955,1970,14039], -"reference", -[1,2343,11045], -[0,0,11046,11047,2537], -[0,1257,1264,1280,1389,1177,17019,2665,3188,17020,4389,4415,4535,17021,4650], -[0,6926,3265,7818,17025,3348], -[3,820,8], -[2,11048,1932], -[1,2343,11055], -"@fastify/basic-auth", -"external", -"externals", -[2,4065,11053], -[0,11056,0,11057,2537], -[0,4449,12675,1437,1673,1676,2020,29952,4753,1398,2992,1209,17031,1458,2089,3729,1362,16078,1836,2151,3183,17036,1525,4459,4558,6520,1477,1483,8435,1532,2057,3074,3714,17039,17041,2015,13860,4351,17042,17047,4375,2744,6515], -[0,13428,1388,1651,17049,11862,11861,11857,4627,17050,8791,17051,17052,1973,5472], -[1,2343,11059], -[0,11060,11061,2514,2523], -[0,1437,17059,4717,1527,3054,6301,17058], -[0,1429,2899,4135,1894,4856,1595,6503,3210,4131], -[1,2343,11063], -[0,11074,11087,11089,2523], -[2,823,364], -[2,823,4030], -[3,825,16], -"query-s", -"elector-", -"shadow-dom", -[2,11068,11069], -[2,11067,11070], -"tiny-", -"tiny-types", -[0,17081,17090,17067,17080,17082,17093,17101,17108,1654,17068,17071,14674,17083,17086,1655,1660,17104,17089,17098,17074,17096,17075,17078,17097,17091,1658,17107,17092,17103,17100], -"@integration/testing-tools", -[2,823,5710], -[3,11064,14], -"ucumber", -[2,11077,11078], -[2,823,2765], -[2,5554,36], -[2,823,11081], -[2,823,2899], -[3,7744,12], -[2,11084,2632], -"mocha-multi", -[0,2899,1177,4042,4614,17113,17110,8850,17112,10615,816], -"serenity-js", -[0,1653,965,17116,8221,7521,1424], -[1,2343,11091], -[0,11092,11094,11098,4139], -[0,17122], -"@wdio/reporter", -[0,816,17081,17098,1177,2832,2899,4042,4073], -"@wdio/", -"@wdio/cli", -[3,8255,9], -[0,1653,17125,17128,17129,17130,17134,7193,6333,4552], -[1,2343,11101], -"service", -[0,11102,11106,11107,2399], -[0,1654,17089,17092,17101,17103], -"@wdio/d", -"ot-reporter", -[2,11103,11104], -[0,14674,1177,2899,4042,4073], -[0,1653,17125,16662,17116], -"local-runner", -[2,11095,11108], -[2,4386,2903], -[2,11095,11110], -"@wdio/types", -[2,2299,2382], -[2,3758,1732], -[1,2343,11118], -"wdio", -[2,11116,2903], -[0,0,11119,11120,2523], -[0,1177,2832,2899,4042,4073], -[0,1653,17125,965,17146,17147], -[1,2343,11125], -[3,826,9], -"commons", -[2,11122,11123], -[0,11135,11136,11139,2487], -"@mochify/cli", -"@mochify/", -"driver-", -[2,11128,3758], -[2,11127,11129], -[3,11130,16], -[3,824,9], -[2,11131,11132], -[2,11122,7625], -[0,17093], -[0,17096,1177,2899,4042,4073], -"referee-sinon", -[2,11122,11137], -[0,1653,17125,11812,17116,1424,8221], -[1,2343,11141], -[0,11142,0,11144,2523], -[0,2108], -"ts-dedent", -[0,6400,17159,7521,8537], -"csf-plugin", -[2,10829,11145], -[3,10840,17], -"dom-s", -[1,2343,11152], -"dom-shim", -[2,11147,11150], -[0,0,0,11153,2537], -[0,1662,4380,4383,21029,21038,21039,11483,11487,21054,21052,21042,17164,21057,21050,17166,89,1623,181,188,4627,5130,3287,6400,17171,699,29332,3709,34683,12951,29336], -"addon", -"notes", -"organize", -[1,2343,11158], -[0,0,8134,11159,34352], -[0,17179,3183,14690,10446,7058,6802,200,3368,1525,17180,1523,12986,17181,17183,17184,13565,1644,57,6478], -[1,2343,11166], -[2,41,1512], -[3,11161,13], -"ssinjs", -[2,11162,11163], -[3,40,18], -[0,11198,11203,2514,2537], -"slick", -[2,11165,11167], -[3,452,18], -"-svg-icons", -[2,6920,11170], -[2,11169,11171], -"@pol", -"kadot/react-identicon", -[2,11173,11174], -"@polkadot/", -"util-", -"util-crypto", -[2,11176,11178], -[2,19177,11195], -"wasm-crypto", -[2,11176,11181], -[3,5050,14], -"tour", -[2,11183,11184], -"@zxing/browser", -"@zxing/", -[2,11187,6082], -"boring-avatars", -"list-react", -[2,2117,11190], -"jsqr", -"phosphor-react", -"qrcode", -"plugin-kit", -"qrcode.react", -"rc-cascader", -[0,17191,1091,1149,1437,1513,1594,1605,2026,2720,17194,3148,3220,3722,705,17195,17196,17198,4746,4747], -"rc-checkbox", -"ollapse", -"rc-collapse", -"rc-dialog", -[0,1173,1257,1267,1429,2899,4008,7707], -"rc-drawer", -[1,2343,11214], -"opdown", -"rc-dropdown", -"rc-image", -"@humanfs/node", -"rc-input", -"-number", -[2,11210,11211], -"rc-mentions", -[0,0,11217,2514,2399], -"u", -"rc-menu", -[0,17218,4494,17219,8538,4193,1177,17220,1209,1984,4508,2109,1894,1596,48,17212,3541,4183,4201,91,53,4874,17221,9689,6513,17209,7725,4870,17206,17214,10875,87,17210,7677,5517,92,1011,17223,1009,9692], -"otion", -"rc-motion", -"rc-notification", -"rc-pagination", -[1,2343,11230], -"rc-picker", -"rc-progress", -"rc-rate", -"rc-r", -"esize-observer", -[2,11226,11227], -"rc-s", -[0,0,11232,2514,2523], -"rc-segmented", -[0,2899,4535,48,53,87], -"rc-select", -"teps", -"rc-steps", -"rc-switch", -[1,2343,11239], -"rc-table", -[0,0,11247,11248,2523], -"rc-tabs", -"extarea", -"rc-textarea", -"ree", -"rc-tree", -"-select", -[2,11244,11245], -[0,48,53,13693,87,6065,1175,1193,1203,1610,1177,1881,1938,1939,17232,2766,1192,2297,2898,2915,3213,3220,3222,3275,3697,1894,4042,4045,4073,4201,91], -[0,1673,1666,6901,2700,3220], -"rc-trigger", -[1,2343,11254], -"rc-upload", -"in-input", -[2,3870,11252], -[0,11258,11259,11265,2537], -"logo", -"qrcode-logo", -[2,1246,11256], -[0,1326,3299], -[0,17240], -"uperellipse", -[2,3890,11260], -"scroll-", -"into-view-if-needed", -[2,11262,11263], -[0,1149,15001,17242,17244], -[3,68,15], -[2,11266,6424], -[3,362,16], -"css-prop", -[2,1258,11269], -[2,11268,11270], -[3,7910,12], -[2,11272,10177], -"@qixian.cs/github-contributors-list", -"@stackblitz/sdk", -[3,827,16], -[2,11276,591], -[3,11011,12], -"uild", -"er-webpack5", -[2,11279,11280], -[2,11278,11281], -[3,8300,15], -[2,11283,2855], -[2,10829,11284], -[3,10841,12], -"heming", -[2,11286,11287], -"tag.js", -[2,5246,11289], -"-axe", -[2,5087,11291], -[3,11292,12], -[3,2779,12], -[2,11294,3758], -[2,11293,11295], -"image-s", -"napshot", -[2,11297,11298], -[2,11293,11299], -[2,5086,3766], -"uppeteer", -[2,5088,11302], -"@types/q", -"@types/qs", -[3,4882,15], -[2,11306,4349], -"-wor", -[1,2343,11324], -"-words", -[2,5342,11310], -[2,4881,11311], -[3,4884,15], -"sizable", -[2,11313,11314], -"window", -[2,4881,11316], -"@types/thr", -"ottle-debounce", -[2,11318,11319], -"arning", -[2,7820,11321], -"antd-", -[0,0,11332,11334,2523], -"antd-img-crop", -"token", -"-pre", -"viewer", -"-previewer", -[2,11326,11329], -[2,11323,11330], -[0,1906], -"array-move", -[0,1675,17251,3046,6925,17252,7051,6760,17253,6882,6870,9233], -"bundlesize2", -"dekko", -[3,3597,9], -[3,4926,9], -"er-webpack", -[2,11339,4406], -[2,4354,11340], -[2,11338,11341], -[2,11337,11342], -"fetch-", -"fetch-jsonp", -"axe", -"jest-axe", -[2,2769,11299], -"jest-p", -[2,11349,11302], -"jsonml", -"react-e", -[1,2343,11358], -"react-element", -[2,8137,11354], -[2,11351,11355], -"lz-string", -[0,11359,11361,11379,2537], -[0,3242], -"rc-footer", -[0,1377,1389,1596,2297,2871,2881,2900,2899,3202,4193,1906], -"rc-tween-one", -"rc-virtual-list", -"react-f", -"ast-marquee", -[2,11364,11365], -[2,5204,11310], -[2,3831,11367], -"react-in", -"finite-scroll-component", -[2,11369,11370], -[3,3882,9], -"izable", -[2,11372,11373], -"react-st", -"icky-box", -[2,11375,11376], -"react-window", -[0,1676,3073,6782], -"remark-lint", -[2,2987,4945], -[2,3996,11381], -"rome", -[2,4942,1894], -[3,4946,18], -[1,2343,11387], -[0,0,8134,11402,2537], -"ational-order", -[2,11385,11388], -[3,4326,22], -"no-i", -"d-properties", -[2,2420,11392], -[2,11391,11393], -[2,7851,11394], -[2,11390,11395], -"sylvanas", -"vanilla-", -"jsoneditor", -[2,11398,11399], -"xhr-mock", -[0,1677,17266,1420,17267,15321,13230,15322,1871,2585,6270], -[1,2343,11406], -"-front-matter", -[2,4745,11404], -[0,11407,11408,11409,2399], -[0,17273,17275,17277,17279,2215,3093,3532,17281], -[0,1999,17283,3505,3532,4039], -[0,17274,17285,1679,7682,4390,17286,17288,2056,4560], -[1,2343,11418], -[3,829,10], -"-studio/client", -[2,11411,11412], -[3,11413,18], -"model", -[2,11414,11415], -"abab", -[0,0,11419,11423,4139], -[0,48,87,92,10614,17296,17212,5601,5087,1009,1011,1198,14065,17298,1622,1177,17300,1930,1939,1942,1945,1948,1953,17303,17306,1964,17308,2675,1192,17310,2931,2990,3124,3125,3390,17312,1894,17314,3708,3980,17318,4493,91,17319], -"async-mutex", -[2,6269,1871], -"color2k", -[0,1680,10381,17323,5194], -"presentable-error", -"expr-eval", -"ml-matrix", -[1,2343,11431], -"parse-color", -"-ast-parser", -[2,3564,11429], -[0,0,11435,11441,2523], -"matchall", -[2,7315,11432], -[2,1871,11433], -[0,5087,3165,4468], -"@ava/typescript", -"inycolor2", -[2,7750,11437], -"trash-cli", -[2,4480,4408], -[0,3597,17329,4552,17331,17332,17335,17337], -"Supernova", -"Design Systems", -"io", -"Supernovaio", -"SDK", -[1,2343,11455], -"Tokens", -"Design Tokens", -"Assets", -"Components", -"Documentation", -"Markdown", -"CMS", -[0,11456,0,11457,4139], -[0,17342], -[0,3048,7002,3426,2051,3583,1698,1496,1585,7880,1697,6899,6803,3432,6693,3743,3583], -[1,2343,11459], -[0,8856,7938,7939,2537], -[1,2343,11461], -[0,0,11462,11463,2523], -[0,1781,2899,1177,1209,4039,3363,1362,17352,2025,4535,1693,1951,3200], -[0,1687,17354,3797,17358], -[1,2343,11465], -[0,0,11466,11467,2523], -[0,17363,2899,1177,2759,1317,1596,17366,3044,5476,17370,17373,17374,811,17377], -[0,17380,17382,17383,5472], -[1,2343,11469], -[0,11471,11472,11473,2399], -"@svitejs/changesets-changelog-github-compact", -[0,17391,1417,17392,15308,17395,17399,17400,17403,17406,2756,13635,3433,3435,17407,17409,17411,17413,17416], -[0,13614,1158,1159,17418,1177,2133,17421,2569,17425,2708,3410,3421,5619,4103,4135,4389], -[0,5501,4162,3797], -[1,2343,11475], -[0,0,11488,11490,2537], -"okie", -[2,4860,11476], -"devalue", -"esm-env", -"mrmime", -"sade", -"tiny-glob", -[2,21032,1932], -[3,5244,10], -[2,11484,2255], -"dts-buddy", -[3,21031,18], -[0,2899,4170], -"official", -[0,1696,2051,1697,6899,1695,1496,1698,1781], -[1,2343,11492], -[0,0,11493,11494,34352], -[0,4874,17439,2747,17440,4042,4055,4067,4389,4474,91,4535], -[0,1698,1697,2051,1585,1496,6899], -[1,2343,11499], -"-inspector", -[2,840,11496], -"hmr", -[0,11500,11502,11503,2523], -[0,2205,2743,17447,17450,3478,11424,4207], -"vitefu", -[0,1166,1317,4400,4481,1906], -[0,6865,1586,17453,17455,7293,14858,17456,17457,4050,17458,4051,6790,17459,4039,7074,2070,17461,2090,6857,7204,2150,17462], -[3,839,11], -[1,2343,11507], -"vite plugin", -[0,11508,11509,11510,2399], -[0,1700,3157,11424], -[0,1166,2020,17468,1906], -[0,13326,200,6865,1700,7293,14858,17456,17457,4050,17458,4051,6790,17459,4039,7074,2070,2090,1586,6857,7204,2150,17462,16697], -[1,2343,11523], -"element", -"elements", -"ant-elements", -[2,5257,11514], -[2,5875,11515], -"@svgr/", -"@svgr/core", -"plugin-jsx", -[2,11517,11519], -[3,11520,13], -[2,11521,4361], -[0,11524,11527,11528,2487], -[0,29654,28415], -"svgr", -[2,4670,1194], -[0,17474,17477,4481,1906], -[0,1862,814,1702,17479,6703,2434,17481,17484,2013,14824,3286,17485,1702,1149,7003,6567,1362,17487,6754,3778], -[1,2343,11530], -[0,11531,11535,11537,2399], -[0,1676,2856,4747,2687,1209,4135,2822,814,17495,15648,1420,3181,17497,3249,1595,2107,4025,58,17501,101,17494,5320,14035], -"unter", -"@swc/counter", -"@swc/types", -[0,3421,2899,1177,4170,3709,2151,1894,1610,48,3752,91,53,1178,17504,85,94,87,1951,1959,1879,1938,1208,1895,1947,1955,1198,13052], -"@napi-rs/cli", -[0,4354,17507,3383,6666,1703,7190,4796,4797], -"swc", -"swcpack", -"tsc", -[1,2343,11542], -[0,0,11543,11544,2487], -[0,1317,1311,1177,1903,1938,1948,1954,1958,1970,2759,2899,4100,4538], -[0,17514,17515], -[1,2343,11546], -[0,11547,11548,2514,2537], -[0,1676,13736,2205,17522,3170,3183,3539,17523,814], -[0,17527,2675,17529,3400,4255], -[1,2343,11550], -[0,0,8134,11551,2399], -[0,8958,17537,13735,6589,17539,1501,1871,2585,4225,17540,16630], -[1,2343,11553], -[0,11556,11557,11558,2523], -"@rtsao/scc", -[2,18997,4966], -[0,15427], -[0,36688,6503,4874,17547,1177,17554,2020,17546,4294,4483,36684,91], -[0,13735,1709], -[1,2343,11560], -[0,0,11561,11562,2487], -[0,3421,4481,1429,2297,2899,1177,4042,2203,2924,1610,4535,442,91,53,2900,1195,2925,13388,94,87,4523,4681,2904,5517,1208,2921], -[0,1687,7222,3797,7163,2585,1781,1623,5284], -[1,2343,11564], -[0,11565,11566,11567,4139], -[0,1687,28365], -[0,442,19194,17579,5087,4874,17580,17584,1165,1406,1492,1584,1628,1637,1177,1939,1958,2092,2203,2036,17589,2651,2675,17591,17592,1192,2990,3123,3177,3188,3368,3561,3566,3613,3618,3672,1894,4468,4469,4474,91,4523,4027,2924,4677,4681,4705], -[0,3358,1687,3721,7153,3924,17595,17597,6843,5342,3721,1473,1936,1713,17599,17600], -[1,2343,11569], -[0,11570,11571,11572,2537], -[0,17610], -[0,5087,4874,1009,1011,1177,1895,17613,1915,1938,1192,1894,4468,4493,4508,91], -[0,17615,17618,17619,17620,17616,17621,17622,5284,17625,17626,676,91,17627,6869,4799,17629,17630,202,9624,17631,17632,17634,17635,17637,17640,17641,17642,17643,2218,17644,17645,17647,3403,17648,17649,17651,17652,17653,17656,17657,9981,7193,17659,17660,17661,17662,17665,17666,17667,17669,17673,17675,17677,17680,17679,11996,17683,17686,17687,17689,17691,17692,17695,17696,17697,17700,17702,17705,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,17720,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,17737,17739,6681,17740,1745,17116], -[1,2343,11574], -[0,0,11575,11576,2487], -[0,1429,1431,2228,2273,2283,2300,2272,2839,3006,2899], -[0,1429,15385,1388,5472], -[1,2343,11578], -[0,11579,11580,11581,2537], -[0,17752,17754,1723,2760,3345], -[0,2899,3699], -[0,6355,5995,4967,17758], -[1,2343,11583], -[0,11584,11585,11586,2487], -[0,4484,4548,17763,7658,347,7660,2069,17766,7663,17768,7664,7665,17770], -[0,4481,1192,7671,1177,4487,1787,1894,1610,91,4874,17772,7672,7678,7681,7685,1011,1009], -[0,1721,5592,8549,5576,202,7692], -[1,2343,11588], -[0,11599,0,2514,2537], -[3,850,25], -"tokens", -[2,11589,11590], -[2,11589,45], -[3,4323,18], -"ass-guidelines", -[2,11593,11594], -[3,7846,11], -"rettier", -[2,11596,11597], -[0,4535,2098,3460], -[2,6910,591], -"patterns", -[1,2343,11603], -[0,11604,11606,11610,4139], -[0,16053,17786,17787,17788,2036,3127,17798], -"gfm-footnotes", -[0,17805], -"web ", -[2,11607,4963], -"ui library", -[0,1745,1783], -[1,2343,11620], -"symbiote.js", -"symbiote", -"frontends", -[2,3166,11614], -" application", -[2,5207,11616], -" elements", -[2,5317,11618], -[0,11621,0,11623,2487], -[0,2829], -"shadow dom", -[0,1727,1745,1776,17813,1783,1932], -"shadow root", -"ructable stylesheets", -[2,5257,11625], -"adopted stylesheets", -"custom ", -[2,11628,3583], -[2,6883,11629], -"pubsub", -[1,2343,11641], -"import maps", -"cdn imports", -" imports", -[2,2671,11635], -"reacti", -"ve html attributes", -[2,11637,11638], -"MIT", -[0,0,0,11642,34352], -[0,17818,17819,7518,5398,5995,3250], -[1,2343,11644], -[0,11645,9264,11646,2399], -[0,17826,17827,7092], -[0,17829,17830], -[1,2343,11648], -[0,11649,11650,11651,4139], -[0,1170,4747,1733,17838,29861,17835], -[0,1429,2899,2026,1364], -[0,1745,2275,1973,2295,1739], -[1,2343,11653], -[0,11654,11655,11656,2399], -[0,5923,17835,17846,1091,13426,17849,17851,17853,1170,17838,29861,1759,17850,11663,10342,3536,3549,17859,4459,824], -[0,1703,2026,2899,4135], -[0,1745,1973,2295,1739], -[1,2343,11658], -[0,11659,0,11660,34352], -[0,1525,3127,2151,4545,2600], -[0,1745,1739,1179,17867,1509], -[1,2343,11662], -[0,11664,0,11610,2537], -"jq-web", -[0,1794,17872,5639], -[1,2343,11666], -[0,11667,11668,11669,2399], -[0,17877,28367,28371,17881,3747,4391,3348], -[0,1362,1429,3152,2899], -[0,17878,17884], -[1,2343,11671], -[0,11672,11673,11674,2537], -[0,17889,17890,17892,1292,17893,1415,17895,16166,17896,17898,17899,9254,17900,17901,17904,17905,17906,17907,2720,17909,17910,17911,3171,3310,17914,17915,17916,4039,17917,17919,17920,4135,17921,17922,17923,4545,17924,4746], -[0,17929,17930,16966,1509,17931,3220,17934,17936], -[0,5353,6147,17939,9381,200,6354,1509,7234,4643,17944,3304,5001,17945,17946,15141,5130,1179,17948,202,1644,57,8924,3902,8632,12478,5354,17950,4990,6435,5122,17951,10340], -[1,2343,11676], -[0,0,11677,11678,2523], -[0,5366,4874,7677,22839,1317,33261,35609,1177,1938,1942,91,1984], -[0,4967,5995,2844,7020,1776], -[1,2343,11680], -[0,0,11681,11682,2487], -[0,53,87,442,5583,811,8850,816,10615,1165,1387,1536,1854,1177,1895,2203,3125,15197,3400,3561,3584,3605,3613,1894,4039,4042,10854,2278], -[0,1739,17964,17965,1745,1179,5284,676,1783,5980,1932,16630,17966], -[1,2343,11684], -[0,11685,11686,11687,4139], -[0,17971,17972,2654,3183,4545,17974], -[0,4384], -[0,2195,1783,1745,9591,57,17977,17978,17979], -[1,2343,11689], -[0,11690,11691,11692,4139], -[0,53,5216,58,101,104,1437,1457,1687,17986,9322,7610,2070,17988,2600,2714,2822,17989,1209,12427,17990,17995,17997,3532,3921,3984,3988,3989,18000,10632,814,4300,18002,4555,12449,18004,18005,4747], -[0,18007,1652,18009,1177,1895,2151,2675,1192,2845,2990,3203,1894,4257,4449], -[0,1745,4525,1776,18011,57,5351], -[1,2343,11694], -[0,11695,11696,11697,2523], -[0,18016,18018,1676,18019,18020,18023,3013,4545], -[0,4874,2228,2291,2300,3006,3200,16092,4193,4436], -[0,18028,18031,1748,18036,13531,18037,18035,6599], -[1,2343,11699], -[0,11700,11701,11702,2537], -[0,6084,2164,2070,1437,89,1843,1209,3188,1291,1637,2026,3561,3725,705,4167,7799,4438,2151,2267,1525,3824,1461,3560,4001,53,18042,104,1165,2600,3123,18051,18052,18055,18056,7610,85,94,101,3816,18050,87,18045,18047,90,1874,1845,61,78], -[0,4039,17996,2149,18059], -[0,1745,18061,18063,467], -[1,2343,11704], -[0,11705,7923,11706,2523], -[0,18068,1497,9892,2577,2586,2608,6327,18070,8114,3181,3971,18071,4549,18072], -[0,467,6327,18074,1745], -[1,2343,11708], -[0,11709,11710,11711,2487], -[0,97,1639], -[0,28581,29292,48,53,92,29293,29294,29492,1009,1011,1178,1195,1177,1938,1947,1951,1959,2025,2070,2814,2297,2881,2895,26470,2900,2904,2918,2921,2925,2899,4039,33564,4193,91,2924], -[0,1751,5128,965,5592,18080,590,2013,18081,4289,1751,1227,18082,1623], -[1,2343,11713], -[0,11714,11715,11716,2537], -[0,18089,15487,18087], -[0,1192,1177,1448,4468,1894,91,5087,4874,2654,1895,1011,1009], -[0,1936,6523,8924], -[1,2343,11718], -[0,0,11719,11720,4139], -[0,1429,1177,2228,2240,2273,2281,2283,2298,2822,2297,2878,2881,2895,2900,2904,2899,1894,4135], -[0,965,158,18097,8924,1936,1424,8221,18048], -[1,2343,11722], -[0,11723,11724,11725,2487], -[0,37513], -[0,53,87,5583,816,6373,10615,1006,4874,1610,1895,1955,2814,2832,2297,2876,2881,2895,2908,2910,18103,3183,3400,3697,1894,2907,18102,4039,4042,4057,18106,4076,4484,91,1906], -[0,965,4741,1936,8221,18110,1965,18112,18113,2574,7131,18114], -[1,2343,11727], -[0,0,11728,11729,2399], -[0,3421,1177,1596,3697,12847], -[0,1283,2062,2869,17950], -[1,2343,11731], -[0,0,11732,11733,2537], -[0,4874,6323,4193,4255,4257,4384,91], -[0,1759,1263,6890,6639,6436,1541,6937], -[1,2343,11735], -[0,11736,11737,11738,2523], -[0,1759], -[0,4874,4255,4257,4384,91], -[0,1759,18132,6436,18135,18137,1263,6890], -[1,2343,11740], -[0,11741,11742,11743,2537], -[0,2212,3532,3477,18143,3093,2096,1679,18145,2188,18142,1560], -[0,1906,1166,3297,18147,4039,3505,18148], -[0,1764,7682,27,705,1002], -[1,2343,11745], -[0,11746,11747,11748,34352], -[0,1764,12650,4039], -[0,5175,2675,2899,4216,4255], -[0,1764,2195,17978,17977,12468,18157,4390,7682,18158], -[1,2343,11750], -[0,11751,11752,11753,2537], -[0,1768,1770,1777,1782,1784,1779], -[0,1177,4039,442,91,4874,4523,1011,1009], -[0,1767,1745,200,1776,1367,1783,1781], -[1,2343,11755], -[0,11756,11757,11758,4139], -[0,2205,1770,18170,18173,1777,1782,18174,1784,1779], -[0,1192,1177,4039,3363,4468,442,91,5087,4874,5571,4523,1011,1009], -[0,1767,1745,200], -[1,2343,11760], -[0,11761,11762,11763,2537], -[0,18183], -[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,1011,18186,1009], -[0,1767,1745], -[1,2343,11765], -[0,11766,11767,11768,2537], -[0,18192], -[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,1011,1009], -[0,1767,1745,1283], -[1,2343,11770], -[0,11771,11772,11773,2537], -[0,1241,1776,18201], -[0,1192,1177,4039,4468,1587,442,91,5087,4874,18203,5571,4523,1011,1009], -[0,1767,1745,1776], -[1,2343,11775], -[0,11776,11777,11778,2537], -[0,3105,2600,3117], -[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,7639,1011,1009], -[0,1767,1745,1367], -[1,2343,11780], -[0,0,11767,11781,4139], -[0,1767,1745,1781], -[1,2343,11783], -[0,11784,11767,11785,2523], -[0,3117], -[0,1767,1745,1783], -[1,2343,11787], -[0,11788,11789,11790,2537], -[0,2081,2700,3427], -[0,53,14170,13051,18225,1178,18228,1610,1700,1866,1177,18229,1895,1922,1935,1947,1955,1959,18230,2126,2323,2338,2361,2368,18233,2396,2409,2419,2494,2541,1192,1894,89,3824,3904,18235,4431,4537,18237], -[0,18239,6038,89,18241], -[1,2343,11792], -[0,11793,11794,11805,2523], -[0,8712,18248], -[0,18254,18255,1429,1651,18259,2297,2881,2900,18260,2923,2899,3198,3347,5362,2278,4193,4196], -"tent-type", -[2,11484,11795], -[1,2343,11798], -[0,26964,0,26991,34352], -"a-parser-js", -[2,7817,11799], -"null-loader", -[2,4049,2098], -"tanem-scripts", -"ua-parser-js", -[0,18263,18266,18267,9229], -"images", -"img", -"scal", -"able-", -"vector-", -"ics", -"graphics", -[2,11810,11812], -[2,11809,11813], -[2,11808,11814], -[1,2343,11817], -[0,11818,11819,2514,2523], -[0,4747,4487,18272,2151,18275,4300,2851,18277,18279,18282], -[0,1177,4874,4892,4864,1011,18285,18290,1009], -"query-core", -[2,959,11820], -[1,2343,11823], -[0,11824,0,11825,2537], -[0,28142], -[0,1747,1788,2382,18035,5995,200,18295,2663], -[1,2343,11828], -[2,964,3709], -[0,11829,11830,7831,2537], -[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12467,12406,1582,1699,12409,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,3788,11244,3789,3810,5564,3846,12435,12438,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12444,12445,4549,4555,12447,1002,12448,12449,12452], -[0,192,5467,7634,12455,12458,7637,12459,4874,12461,8149,4880,4882,4883,12462,12463,1177,10321,2071,2079,12471,12472,2675,2990,1894,3706,3708,89,3824,4320,4474,91,1984,12473,12475], -[1,2343,11834], -[3,7637,10], -[2,11832,977], -[0,11841,11844,7831,2487], -"@github/webauthn-json", -"better-", -"better-docs", -[3,1895,17], -"act", -[2,11838,11839], -[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12405,1582,1699,12409,12452,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,11244,3810,5564,3846,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12445,4549,4555,12447,1002,12448,12449], -"hanko", -"passkey", -[0,192,5467,7634,12455,12458,7637,12459,4874,12461,4880,4882,12462,12463,1177,2071,2079,12472,2675,2990,1894,3706,3708,89,4320,4474,91,1984], -[1,2343,11848], -"webauthn", -"passcode", -[0,0,11849,2514,2523], -[0,4389,4430], -[1,2343,11851], -[0,11852,11854,7395,4139], -[0,18313,18315,18316,18317,18322,97,8597,18328,18332,18333,18334,18336,1461,1582,1673,18339,18340,18344,18347,18349,18351,18354,18355,18357,18358,18360,18362,18364,18365,18368,18370,18371,18372,18374,18376,18378,18380,18381,18382,18383,18385,18386,18387,18389,18391,18392,18394,11264,4427], -"kcd-scripts", -[0,13175,13178,5076,13181,11267,11976,13187,7833,7837,7839,7840,368,7948,11273,13188,8998,13189,13192,643,692,11274,10875,11275,966,968,972,974,13194,13196,13198,4864,11290,13200,13203,5087,11292,11296,11300,11301,13204,4870,7892,4874,13205,13207,13210,8149,6510,11305,4880,4882,4883,11312,11315,5254,13213,13214,11320,11322,1009,1011,1086,13078,11325,13215,11331,1170,1437,1448,13221,13223,1610,1613,11336,1759,1789,13228,8161,1177,1879,1895,1915,1924,1938,1939,1947,13231,1948,1959,1961,1982,2071,11345,2151,2193,2070,12424,2665,2686,2696,2742,2758,1192,11347,2771,2780,2784,11348,11350,2814,2832,11356,5102,2990,1209,13232,11357,3183,3213,3310,3330,3412,3445,3467,13233,3536,3549,1894,3703,3717,3725,3758,3763,11360,11362,11363,89,3810,13235,3824,4934,11366,11368,11371,3843,11374,3885,11377,3957,3978,3984,3985,3988,11380,13240,11382,3999,4039,13241,4135,4164,4183,4201,13243,11397,4390,4391,4072,4494,4508,91,11400,13245,2924,4676,11401], -[1,2343,11856], -[0,0,11858,11859,2399], -"integration", -[0,192,5467,19193,442,1177,1895,1951,1955,2675,2990,2899,1894,4042,4170,4257], -[0,4552,1149,14629,18402,1794,3048,1862,6917,14824,5995,4967], -[1,2343,11863], -"end-to-end", -"e2e", -[0,11864,11865,11866,2443], -[0,4484,18407], -[0,51,53,104,18282,18277,18409,603,811,816,6373,5087,1009,1011,1437,1525,1787,668,1177,2151,2205,2675,1192,2771,2272,3090,3445,4042,4073,4127,4135,4072,4468,91], -[0,1795,18411,15480,18412,17116,18413,18415,1424,8221], -"ria-query", -[2,9165,11867], -"aria-query", -[2,7320,2825], -[2,1752,11870], -[1,2343,11873], -[0,11885,11886,11887,2537], -"n-case", -"jest-in-case", -"-ser", -"ializer-ansi", -[2,11876,11877], -[2,8746,11878], -[3,2802,11], -"select-p", -"rojects", -[2,11881,11882], -[2,11880,11883], -[0,18420,2096,18423,2390,18425,18426,18427,1209,3181,18428,3544,4431,4597,4600,4747], -[0,4856,4864,18432,4870,6503,4874,9725,6513,6512,18435,18438,18440,4892,1429,2012,2151,2188,2899,3421,3752,4039,4193,4196,4474,4487,91], -[0,18420,2041,2649,18442,18443,6589,18444], -[1,2343,11889], -[0,11892,11900,11901,2537], -"css.escape", -"redent", -[0,2763], -[2,552,2203], -[3,2782,23], -"sixteen", -[2,11894,11895], -[3,4057,15], -"elete", -[2,11897,11898], -[0,91,68,1389,1177,14707,1776,3084,2899,4535], -[0,1283,17950,16284,1797], -[1,2343,11903], -[0,11904,11905,11908,2537], -[0,1437,1209,18456], -[0,3297,1082,1149,2228,2899,4193,4237,1177,2814,3220,4135,1168,1330,2924,18458,18459,1362,3460,1894,4431,2025,2071,7915,2240,18463,1389,53,11801,1178,1195,18464,17568,87,1954,2258,2247,1938,2253,2281,1958,1895,1903,1955,1970,18461], -"atcher-utils", -[2,8763,11906], -[0,1798,14059,8173], -"@callstack/eslint-config", -"@rel", -"mify/jest-serializer-strip-ansi", -[2,11910,11911], -[1,2343,11914], -[0,7936,7938,7939,2523], -[1,2343,11916], -[0,11917,0,11919,2487], -[0,4874,2057,18473], -"dotenv-cli", -[0,1804], -[1,2343,11921], -[0,11922,11923,11927,2537], -[0,1437,4747,1458,2151,18479,18480,18482,18484,18488,18174], -[0,4892,4864], -"@esbuild-plugins/node-modules-polyfill", -"@ph.fritsche/scripts-config", -[3,11925,13], -[0,1804,9381,6147,7242,1161,1808,4405,18493,1896,18494,4750,18495,8433,18496,18497,18498,18499,18500,18501,18502,18503,13322], -"toolbox", -[2,11926,11928], -[3,11300,13], -[2,11930,11874], -[3,7690,15], -[2,11932,2203], -"-lib-coverage", -[2,2759,11934], -[3,11935,13], -"report", -[2,11936,11937], -[2,4227,591], -[2,11936,11939], -"istanbul-", -"reports", -[2,11941,11942], -[3,6551,9], -"jest-s", -"r-ansi", -[2,7909,11946], -[2,11945,11947], -[1,2343,11950], -[0,11953,11954,11955,2537], -"-scripts", -[2,6579,11951], -[0,18509,18473,18511,18513,18514,18518,1676,2057,18145,2151,18521,18524,18525,18527,2072,18528,814,4135,4748], -[0,1009,1011,1166,1400,1503,1177,1903,1920,1938,1954,1958,3421,3539,4193,4481,4508,91], -[0,1804,1808,6996,1896], -"@ember/app-blueprint", -[1,2343,11962], -"aram", -"regexparam", -"tseslint", -"tinyhttp", -[0,11963,11964,11919,2399], -[0,2057,18537], -[0,4389,4255,18540,3505], -[1,2343,11966], -[0,11967,11580,11581,2487], -[0,1437,2152,2760,18545], -[1,2343,11969], -[0,11970,11971,2514,4139], -[0,18552], -[0,2228,18555,2236,2273,2281,2298,2766,2814,2297,2881,2895,2898,2912,3006,1209], -[1,2343,11973], -[0,11975,11979,11980,2523], -[2,976,4590], -[0,1156,1191,1699,3373,4023,4427], -"@biomejs/biome", -[3,4343,10], -[2,11977,1612], -[0,18566,18569,1173,1175,1195,1198,1208,1212,1220,18571,1264,1277,18574,1429,1457,1584,1596,18575,1610,1628,1863,1177,18580,1916,1937,17585,2092,18581,2323,2332,18582,2504,2600,2651,2843,13110,2297,2881,2886,2900,18260,2921,2923,2925,18584,3105,3107,18587,3112,3177,2899,3342,3463,3561,3732,4039,4111,18590,4193,4196,4307,18592,4537,18595,4027,188,4634,4639,4645,18599,2924,4677,4681,4693], -[0,13449,188,4963], -[1,2343,11982], -[0,11983,11984,11985,2537], -[0,1363,18609,18610,18611,2713,18613,18616], -[0,1377,1596,1177,2228,2236,2240,2256,2258,2281,17567,2311,2759,2899], -[0,18619,18620,18621,18622], -[1,2343,11987], -[0,11989,11990,11991,2537], -"headers", -[0,18627,18629,18632,2646,18633,1209,3361], -[0,192,5467,1166,1448,1610,1797,1177,1909,2114,2675,2990,18637,3421,18634,3754,3985,3995,1906], -[0,1559,1823,16284,2934,18639,18640,18643,18645,18646,18647,3361,18648,3754,18649,1283,5354,4714], -[1,2343,11994], -"ipaddr.js", -[0,0,11997,2514,2523], -"net", -"network", -[0,442,18657,4874,18659,7677,1177,1895,1955,18660,1894,18661,4474,91,4523,1984], -[1,2343,11999], -[0,12000,12004,12005,2399], -[0,30697,27276,11956,18740,18684,14959,18693,18733,18735,18687,1378,18737,1381,18717,18720,18695,18686,18747,18683,1437,1458,18689,1536,1543,18671,18678,18679,18668,1687,18753,12923,18758,12925,18704,2020,2021,2026,2098,2105,18745,2151,14939,12929,12471,2070,14940,18728,18701,18708,2659,2712,2720,18673,18702,1209,3105,18726,3181,3237,3368,3386,18428,18669,3560,18714,18722,18675,814,14562,18730,18667,4135,12937,18710,18698,1241,4423,4438,18670,4648,18692,7801,18666,31963,31947], -[3,975,11], -"ccepts", -[2,12001,12002], -[0,14938,1385,1429,1431,18761,15264,1540,18774,18771,1177,1895,18766,1951,1953,2116,18706,2832,2960,2899,3297,3421,1894,6021,4294,4342,4421,4449,36864,4699,4707,18764,18760], -[0,1896,18776,12589,200,18777,18778,18779,837], -[1,2343,12007], -[0,12008,12013,12014,2537], -[0,5222,71,5757,5759,5809,5830,5832,83,5889,87,97,18784,18787,18790,18795,1212,18801,18687,1378,18695,18747,1496,18803,18807,18704,14562,4135], -"ntent-", -[2,12009,10366], -[2,981,12010], -[3,985,11], -[0,53,18809,18811,18812,18813,18815,1178,1385,1429,1499,18867,1532,18671,1593,18679,18823,1825,18825,1830,18829,18832,18833,18834,18835,18839,1177,18840,1954,18706,18841,2899,2907,3957,6021,814,4039,2924], -[0,1172,18777,18844,1825,5197,5198], -"ncode-url", -[2,12012,12015], -[1,2343,12018], -[0,12019,12020,12021,2487], -[0,18852,18855,18687,18865,14938,14939,18708,18868,12937,4648], -[0,53,68,71,5757,83,5889,97,18809,18812,18872,18787,1381,1385,1429,18867,1540,18823,1825,1827,18873,18825,18829,18832,18833,18834,18835,18839,18889,18892,18894,1177,1895,18840,1951,1953,1955,18895,2116,18841,2899,1894,2907,3773,3980,14944,4320,4323,11598,2924], -[0,18844,1825], -[1,2343,12023], -[0,12024,12025,12028,4139], -[0,18901,18906], -[0,816,10817,4874,2968,4039,4042,4494,91], -[3,12011,18], -[2,12026,998], -[0,1831,1936,1623,4412,18909], -[1,2343,12030], -[0,0,0,5708,4139], -[1,2343,12032], -[0,0,12033,12034,4139], -[0,2899,1177,2759,1954,1938,1958,1903,1970], -[0,10368,1833,1002], -[1,2343,12036], -[0,12037,9264,12038,2537], -[0,3441], -[0,3101,7046,7241,18924,12706,4966,6703], -[1,2343,12040], -[0,12041,12043,2514,2537], -[0,2215,4388], -"tsparticles", -[0,8780,5087,4874,1622,1177,20281,2675,1192,2990,3144,1894,91], -"particles.js", -"particles", -"particlesjs", -"particle", -"jsparticles", -"xparticles", -"particles-js", -[1,2343,12052], -[0,12057,12064,12065,2537], -"particles-bg", -"-vue", -[2,12053,12054], -"particles-ts", -[0,1104,4294], -"particles.ts", -[3,2638,9], -"ticles-js", -[2,12059,12060], -[3,12061,15], -[2,12062,1722], -[0,4874,2398,2720,2899,3421,3742,91], -[0,8618,8619,8620,1299,200,1523,6876,8622,1836,1179,8623,8624,6847,8625,2720,8626,8628,5284,202,6710,3741,3742,8630,8631,3925,8632,4989,8633,2184,8634,7009,6621,181,8635,4758,8636], -"vue-particles", -"ngx-particles", -[2,1101,12045], -[1,2343,12077], -"ground", -[2,12047,12070], -"vuejs", -"preactjs", -"angularjs", -"html5", -"web-design", -[0,12078,12085,12095,4139], -[0,7272,12240,3757,19647], -"webdesign", -"css3", -"vtt", -"animated", -"background", -"conf", -[0,13614,1159,9254,1177,2011,2708,3410,3421,4103,4389], -"confetti", -"works", -"fireworks", -"fireworks-js", -"confetti-js", -"confettijs", -"fireworksjs", -"canvas-", -[2,12093,12086], -[0,18089,18943,18944,1936,10368,15103], -"apk", -"flickity", -[1,2343,34419], -"@d-fischer/shared-utils", -[3,1005,9], -"all", -"api-call", -[2,12100,12102], -[2,12100,10896], -"jose", -[0,1429,2675,2899,1899], -[0,6971,18951,18952,998,6956], -"twitch", -[1,2343,12110], -[0,12111,12112,12113,2523], -[0,2003,4430], -[0,4387,4389], -[0,6639,6436,1389,14927,353,4225,8309], -[1,2343,12115], -[0,0,12116,12125,2537], -[0,53,13051,85,87,192,5467,17584,1175,1178,1193,1195,1177,1881,1895,1938,1955,18964,2070,2675,1192,3183,6331,4750,1894,10623,2924,4677,4707,18966], -[1,2343,12568], -[2,3273,6543], -[3,439,18], -"regexpp", -[2,12119,12120], -[3,5552,23], -[2,12122,3007], -[2,1010,1995], -[0,5001,1263,6639,18523,18968,18969,18971], -"title-case", -[2,3138,9102], -"pecific-snapshot", -[2,11945,12128], -[3,8722,10], -"-mdxjs", -[2,12130,12131], -[2,3167,12132], -[3,5551,24], -"to-typescript-types", -[2,4120,12135], -[2,12134,12136], -[1,2343,12139], -[0,12140,12141,12143,2537], -[0,18976,1448,1850,18980,6914,18982,18984,18986,18989,17403,18990,18992,18993,3044,3431,13635,3435,3438,18994,3775,18995,18997], -[0,1173,13998,1261,1177,1879,1938,1947,1959,2708,2832,4039,4103], -"pastoralist", -[0,5284,19001,19003,1973,6071,89,2130,5472,19005,19007,6969,2899], -"cript-estree", -[2,5552,12144], -[1,2343,12147], -[0,12148,12149,12143,2443], -[0,2571,4135,3847,3744,3435,18994,3904,1847,1850], -[0,1843,1177,4039,3410,48,2708,53,1261,1959,4103,68,1879,1938,1947,1961,1198,13998], -[1,2343,12151], -[0,12152,12154,12143,2537], -[0,2571,4135,3744,3435,19018,19020,18980], -[2,12155,27730], -[0,1177,4039,3410,48,2708,53,1261,1959,4103,68,1879,1938,1947,1961,1198,13998], -[3,20826,14], -[1,2343,12157], -[0,12164,12167,12143,2487], -[3,1013,11], -[2,12158,9026], -[2,10306,5256], -[3,1603,14], -"ontext", -[2,12161,12162], -[0,2571,13635], -"-theming", -[2,1832,12165], -[0,1177,4039,3410,48,2708,53,1261,4103,68,1938,1881,1198,13998], -"-formatter", -[2,1413,12168], -[2,2093,12169], -"mini-", -"mini-store", -"rc-animate", -[1,2343,12177], -"rc-form", -"z-use-drag", -[0,12183,12210,2514,34352], -"@types/ra", -"@types/raf", -[3,1013,13], -"codo-gen", -[2,12180,12181], -[0,1080,1869], -"ast-types", -"motion", -[2,4893,12185], -[3,1225,14], -"proptypes", -[2,8137,12188], -[2,2528,12189], -[2,12187,12190], -[2,4670,8861], -[2,1199,12192], -"hot-loader", -[2,1625,12194], -"jest-emotion", -"screenshot", -[2,8820,12197], -[3,4323,19], -"yled-components", -[2,12199,12200], -[3,11598,12], -"or-styled-components", -[2,2484,12203], -[2,12202,12204], -"tsc-alias", -"@electric-sql/pglite", -"ucloud", -"lsofi", -[0,1087,1177,1903,1938,1948,1954,1958,2899,3421,4342], -[1,2343,12212], -[0,12218,12221,12223,2537], -[3,1014,9], -"slate", -[2,12213,12214], -"slate-hyperscript", -"slate-react", -[0,1082,2071], -[2,12213,594], -"is-hotkey", -[0,16805,1393,19038,5867,30889,12142,1894,3980], -"jotai-optics", -[0,19042,19044,3595,19045,19046,19047,5286,19049,19052,19053,676,19054,19055,19057,19059,19060], -"jotai-x", -[1,2343,12230], -"optics-ts", -[3,3836,9], -"keys-hook", -[2,12227,12228], -[0,12234,12235,12237,2537], -"deep-compare", -[2,8183,12231], -"zustand-x", -[0,19066,2569,19071,19073,19078,15059,3435], -[0,5517,13614,23237,10976,10979,11008,27564,27568,27571,27573,27575,27576,27580,11013,19325,1143,1159,9254,1177,14741,15308,2756,3410,3421,19082,4103,19084,4389,11028], -"plate", -[0,5284,5286,3595,676,6693,6692,5187,1182,6830], -[1,2343,12239], -[0,12241,12243,12249,2443], -"es-errors", -[0,15786,19092,19093,19094], -"react-b", -[0,1177,15793,15797,15801,2675,2990,3421,19097,15804,15805], -"react-button", -"uiw-react", -"react.js", -"uikit", -"react-ui", -[0,5286,19099,19100,1925,5194,19101,2680,19102,2474,5258,5284,6422,1858,614,594,6731], -[1,2343,12251], -[0,0,12252,12254,2537], -[0,13614,1158,1177,2708,2768,3421,4103,4535], -[2,1024,45], -[0,1858,1925,19108,5284,5286,6422], -[3,3839,10], -[1,2343,12257], -[0,0,12258,12259,2523], -[0,1173,1175,1198,8966,1264,1429,1610,2899,4039], -[0,5194,1851,1172], -"react-input", -[1,2343,12262], -[0,0,12263,12264,34352], -[0,19118,2899,1825,18686,18693,19119,19121,19122,19123,1381,18801,18825,19125,19127,14217,14196,19130,14214,1235,14199,14192,1244,14198,14215], -[0,19132,6422,1862,6567], -[3,1023,18], -[1,2343,12269], -"verlay-trigger", -[2,8666,12267], -[0,0,12270,12271,2537], -[0,48,53,87,10688,1863,1177,1895,1903,1938,1954,1958,2675,3421,1894,4193,4389], -[0,1862,6567,5194,19138,1865], -[1,2343,12275], -"react-u", -"react-utils", -[0,0,12276,12277,4139], -[0,13614,1158,1429,1859,1177,2011,2228,2256,2283,2311,2708,2899,3421,3736,19146,4103,4389,4535], -[0,5286,5258,5194,1858,1862,6567,7168,3053,3065,6636], -[2,12279,8295], -"flowbite-", -[1,2343,12281], -[0,0,12282,12288,2523], -[0,1317,1311], -"to-ts", -[2,7526,12283], -[2,7719,553], -"prom-client", -"unleash-client", -[0,1867,1936,6435], -"ype-is", -[2,7750,12289], -[1,2343,12293], -"ts-node-dev", -[0,0,8134,12297,2399], -"Unleash", -"ios", -"android", -[0,1867,1108,6961,6920,7256,1871,19161,7169], -[1,2343,12299], -[0,12300,12303,2514,2537], -[0,2004,14301,2003,4227], -"keyux", -[3,1027,12], -[0,1082,1362,19168,1429,6522,19172,2323,2384,2463,3183,3466,4135], -"image-shrink", -[2,12302,12304], -[2,9229,4219], -[2,12302,12306], -[1,2343,12311], -"shipjs", -"@esm-bundle/chai", -[0,12316,12317,12321,2523], -"@total-typescript/ts-reset", -"@hap", -"py-dom/global-registrator", -[2,12313,12314], -[0,439,12121,19180,27907,19193,11180,11209,19182,19184,1006,1091,1615,1676,1874,1994,1996,2000,19186,14301,2069,16783,2105,2200,2687,19187,2743,19189,3181,12118,3466], -[0,5517,53,87,8129,19194,19181,19195,19581,4874,1011,1195,1414,1429,1448,1532,1593,1651,1797,1933,15510,17308,19206,32793,19210,2003,19213,2070,2203,2212,2226,2807,2931,2990,3105,3112,3127,19216,19219,19221,19222,19223,19224,2899,19227,19230,1894,3730,3752,3930,3957,4135,4167,4193,91,2924,4677,19235], -"uploadcare", -"lighter", -"file ", -[0,6892,671,5284,5286,2000], -"file uploader", -"ive image", -[2,5156,12323], -" optimization", -[2,158,12325], -"image ", -[2,12327,6110], -"image size", -" image editor", -[2,6599,12330], -" client", -" api client", -[2,9229,12333], -"ing blocks", -[2,6147,12335], -"lr-blocks", -"uc-blocks", -[2,11857,591], -"smart", -[1,2343,12356], -"smart cdn", -"cloud ", -[3,31,8], -"file platform", -[2,12343,12345], -"ation api", -[2,353,12347], -"webp", -"avif", -"css c", -" properties", -[2,12162,12352], -[2,12351,12353], -[2,11617,591], -[0,12357,12358,12359,2523], -[0,3435,3438,1881], -[0,4389,1796,1177,2708,97,19243,19247,1261,1959,4103,1938,1947,1961], -[0,1177,6651,1541,1259,5284,6718,6778,7056,7192,7044], -[2,8137,668], -[2,1393,12360], -[1,2343,12363], -[0,12364,12365,12359,2537], -[0,4135,3435,3438,19254], -[0,4389,1796,1177,2708,97,19243,19247,1261,4103,1938], -[1,2343,12367], -[0,12373,12374,12375,2399], -[3,5881,34], -"self", -[2,12368,12369], -[3,12370,35], -[2,12371,5585], -[0,1881], -[0,1009,1011,1742,1177,1895,1938,2675,2990,3400,1894,19263,91], -[0,1259,1541,6778,7056,7192,7044,1177,6651,5284,6718,91], -[1,2343,12377], -[0,0,5795,12378,4139], -[0,1885,1501,19269,590,671,9654,2292,2272,19270,1177,2649,19271,15717,4354,16790,19273,18443,2446], -[1,2343,12380], -[0,12381,5795,12382,2537], -[0,442,2203], -[0,1177,7625,19281], -[1,2343,12386], -[2,8530,4798], -"merge-deep", -[0,12387,12388,12389,2537], -[0,19438,19181,442,19344,1009,1011,1891,1907,19286,1915,1938,1942,1951,1953,17306,1982,4523], -[0,9736,1177,91], -[0,1890,1177,7625,19281], -[1,2343,12391], -[0,12401,12404,6936,2443], -[3,5075,18], -[2,12392,8221], -"@makotot/ghostui", -[3,6497,10], -"@types/hast", -"@umijs/bundler-utils", -"@umijs/", -"@umijs/core", -[2,12398,594], -[0,1953,1951,1938,19286,1011,17306,1009,1915], -"-scroll-to", -[2,12082,12402], -[0,1177,91,9736], -"codesandbox", -"comlink", -"dumi-", -[1,2343,12417], -"dumi-afx-deps", -"estree-", -"util-to-js", -[2,12410,12411], -[3,12412,12], -"visit", -[2,12413,12414], -"file-s", -[0,0,0,12423,2487], -"ystem-cache", -[2,12416,12418], -"is-element", -[2,2573,12420], -"heti", -[0,1177,6651,7625,28987,1894], -"html2sketch", -[3,3137,12], -"ind-and-replace", -[2,12425,12426], -[3,3140,14], -[2,12428,1871], -[1,2343,12453], -"prism-themes", -"react-l", -"-skeleton", -[2,10087,12433], -[2,12432,12434], -"code-editor", -[2,10961,12436], -[2,3890,12437], -"rehype-r", -"emove-comments", -[2,12439,12440], -"directive", -[2,3986,12442], -"sucrase", -"umi", -"-parents", -[2,4555,12446], -"v8-compile-cache", -"vfile", -"dumi-a", -"ssets-types", -[2,12450,12451], -[0,12464,0,2514,2523], -[2,11367,1732], -[2,6495,12454], -[3,5540,9], -"sted-git-info", -[2,12456,12457], -[2,6308,6925], -"luralize", -[2,5088,12460], -"@umijs/lint", -[2,12398,9711], -[0,53,1939,1959,68,1938,1270,1935,1947,19302,1011,19254,1961,1976,1009], -[1,2343,12469], -"-import-utils", -[2,12405,12466], -"repo", -[0,0,12470,12476,2523], -[0,1177,1903,1938,1953,1958,4389], -"git-repo-info", -[2,11311,1732], -"zx", -[2,699,701], -[2,12407,12474], -[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,6651,2446,2292,2272,671,19315,19269,2869,1899,4255,19317,590,19318,19320,19273], -" site generator", -[2,2947,12477], -"jamstack", -[1,2343,12481], -[0,0,12482,12483,2537], -[0,5601,19325,1177,1938,1953,1958,4389], -[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,6651,2446,2292,2272,671,19315,19269,2869,4255,19317,590,19318,19320,19273], -[1,2343,12485], -[0,12486,12487,2514,34352], -[0,442,27928,1982,2203,4523], -[0,19333,5601,4874,19336,1446,1177,19339,33860,1894,91], -[1,2343,12489], -[0,12490,12491,12492,2537], -[0,29371,19194,19344,19254,2203], -[0,1166,1177], -[0,6651,1906,19347,19348,19349,19350,19353,1501,19269,590,671,9654,2292,2272,19270,1177,2649,19271,4255,15717,4354,16790,19273,18443,2446,2869], -[1,2343,12494], -[0,0,12495,12496,2399], -[0,192,5467,1610,2675,2990,3985,3995,1906], -[0,19359,1541,1177,18639,18640,3624,1906], -[1,2343,12498], -[0,12499,12500,12501,2537], -[0,1012,1091,1443,1525,1595,1699,8098,18420,2777,2845,12834,3117,4507], -[0,442,4874,6513,29891,16480,22839,1177,1895,1938,1953,1955,1982,3125,3390,3400,3471,1894,4193,18710,91,4523,1984], -[0,2295,1739,1745,1177,1179,1932], -[1,2343,12503], -[0,12504,0,12505,4139], -[0,1676,27418,2191,19380,29856,27921,12578], -[0,91,1177,1204,14056,1932], -[1,2343,12507], -[0,12508,12509,12510,2523], -[0,2102,2151,3008,3429,4121], -[0,48,53,87,192,5467,19401,16405,1178,1193,1457,19403,1610,1700,1701,1177,1895,19405,1938,2675,1192,2794,2990,3400,1894,4257,2924], -[0,1177,671,9654,1194,2924], -[1,2343,12512], -[0,12513,12514,12515,2537], -[0,439,19194,19413,2000,19415,19419,4025], -[0,1011,1166,1414,1437,1177,19422,1912,1933,2020,3400,3471,3532,91,1906], -[0,1177,6741,6939,1166,1973,8791,1145,6637,6468,2899], -[1,2343,12517], -[0,12518,12519,12520,34352], -[0,19209], -[0,2899,1177,1178,3028], -[0,1172,1177,6741,6939,1178], -[1,2343,12522], -[0,12523,12524,12526,2523], -[0,16805,19436,1393,1423,2105,2203,3057,4135], -[0,53,68,192,5467,19438,442,6061,6063,19441,5366,19443,5601,5087,19446,5254,1317,19449,1804,1177,1895,1933,1955,2024,2675,1192,1894,4131,4183,4468,4474,91,4523], -"object-deep-merge", -[0,1177,1388,4231,5592,671,1421,19451], -[1,2343,12528], -[0,0,12529,12530,2523], -[0,1177,2899], -[0,1177,6741,1925,6778], -[1,2343,12532], -[0,12535,12536,12537,2537], -[2,19573,24759], -"diff-sequences", -[0,1874,2687], -[0,12602,4874,19464,1178,1503,1615,1177,19466,2151,2899,3421,3456,4039,4135,13134,19468,19469], -[0,1177,6741,6939,1932,8505,4298,12442,2202,2203,19472,19473,19475,19478,19479,19482], -[1,2343,12539], -[0,12540,12541,12542,2443], -[0,439,2004], -[0,192,5467,6303,19492,19181,442,27928,19611,19580,31200,1006,4870,4874,1011,1012,16480,1177,19494,1895,1912,1953,1982,1992,1994,2000,2675,2807,2990,1209,3125,3390,3401,1894,1531,91,4523,1984], -[0,1177,6741,6939], -[1,2343,12544], -[0,12545,12546,12547,2537], -[0,1209,19500], -[0,1091,2070,2675,2899,1177,4039,19505,15555,48,53,13693,94,4131,87,68,19504,5235,1933,1198,5874,78], -[0,1177,1932,1934], -[1,2343,12549], -[0,12550,12551,12552,4139], -[0,2654], -[0,19512,19514,1177,1895,19516,1894,4135], -[0,6939,6741,1177,1936], -[1,2343,12554], -[0,12555,12556,12558,34352], -[0,11554,19522,19525,18976,1143,1676,19526,19527,19378,2571,17501,2743,3181,19020,19531,18994,4135,11555,4480], -[0,19535,5601,1011,1173,1175,1178,1208,1212,1261,14237,1280,1291,1429,1610,19538,1177,1912,1915,1933,1938,17585,14053,19539,2070,2708,2762,2858,19540,19541,3125,2899,19544,3421,3875,4039,4103,4193,4449,91,19545], -"stable-hash", -[0,1177,6741,6939,5194,13354,5260,1204,6813], -[1,2343,12560], -[0,12561,12562,12542,2487], -[0,1012], -[0,48,53,87,92,192,5467,19492,19552,6061,6063,5536,5601,5087,4874,5254,1009,1011,1012,1193,19555,1680,1177,1895,1912,1933,1938,1953,1955,1992,19560,2675,2742,1192,15853,2990,19516,3534,1894,4039,4131,4135,4474,91], -[1,2343,12564], -[0,12565,12566,12567,2537], -[0,19567,12533,19568,8506,1676,1874,2000,19186,2626,12525,27427,4135,19570,30614], -[0,5517,48,53,68,5240,87,19574,19577,19193,19578,816,16607,6065,16608,4856,5245,19580,19581,1006,8818,6503,4874,5254,19586,5552,1198,1208,19588,1414,1420,1429,1677,1177,19504,19505,2070,2203,2675,19592,2845,26696,2990,2899,19595,3541,4068,4039,4042,4131,4193,5569,91,4523], -[0,1177,1932,1776], -[0,12569,19601,12572,34352], -[0,439,19193,11180,12570,12534,12668,17310,12118,19571], -[2,19606,12571], -"ast-token-store", -[0,1177,6741,6939,671,19632,2856,1781], -[1,2343,12574], -[0,12575,12576,12577,2537], -[0,11869,19522,1143,19638,1169,19639,19640,13829,2571,19644,19645,3181,19020,19647,19648], -[0,48,53,68,5240,94,1159,1198,1261,1177,1881,1912,1933,1935,1938,2004,2126,2708,2762,17221,3183,3410,3435,3438,4039,4103,4135,4389,19650], -[0,1177,6741,6939,6653,7320,1219], -"unrs-resolver", -[1,2343,12580], -[0,12581,12582,12583,2537], -[0,3137], -[0,3421,1429,2899,1177,2203,442,19206,19657], -[0,1177,6741,1783,671,9654], -[1,2343,12585], -[0,12587,0,12594,2399], -"aleo", -[0,2203,439], -"cryptography", -[3,1336,10], -"decentralized", -"-knowledge", -[2,7150,12591], -"oracle", -[0,1177,6741,6939,2899], -[1,2343,12596], -[0,12597,12601,12615,34352], -[0,439,1835,19671,2191,2203,1555,2687,4135,29860], -"event-", -"target-shim", -[2,12598,12599], -[0,442,5601,1006,27303,4874,1011,12145,1177,1895,1912,1933,2071,2675,2990,3125,2899,3401,3421,3456,1894,3757,3980,4039,19676,4507,91], -"@mysticatea/eslint-plugin", -[3,12602,12], -[2,12603,4158], -"dts-bu", -"ndle-generator", -[2,12605,12606], -"growl-reporter", -[2,2877,12608], -"-minify", -[2,4045,12610], -"rollup-", -"rollup-watch", -"type-tester", -[0,1177,6741,6939,202,6710,5286,6987,2090,3403,1204,3209], -"w3c", -"abort", -"cancel", -"control", -"controller", -[2,12617,12620], -"abortsignal", -[1,2343,12624], -[0,12625,12626,12615,2487], -[0,1927,19414,2687,3181,814,4135], -[0,12602,1503,1177,2071,2203,2899,3421,3456,3757,4039], -"negotiator", -[1,2343,12629], -[0,12630,0,12632,2399], -[0,19689,19571], -"negotiation", -[0,1177,6741,6939,1894], -[1,2343,12634], -[0,12635,12636,12637,2537], -[0,439], -[0,1011,1742,1177,1895,1912,1933,1939,1953,1955,2203,2675,1192,2990,3401,1894,91], -[0,1177,6741,6939,1862,6567], -[1,2343,12639], -[0,12640,12641,12642,2523], -[0,19522,19724,1143,19726,19526,19641,2004,2571,19644,3181,3438,19020,18994,3744,814,4135,11434,19729], -[0,53,68,5611,19731,19735,90,5601,1006,4874,1011,1178,1177,1881,1912,1933,1938,1992,19560,1994,2000,11605,2070,2759,2762,19736,3125,2899,3410,4193,91,19545], -[0,1177,6939,6741,89], -[1,2343,12644], -[0,12645,12646,12642,2523], -[0,4763,53,58,21131,25652], -[0,1192,91,4874,104,1178,5601,1006,19877,36694,68,92], -[1,2343,12648], -[0,12649,12651,12652,2487], -[0,439,12121,8506,19592,19745,19750,19751], -"git-clone", -[0,107,6022,19492,19181,442,19605,19609,11470,4856,5601,19611,1006,6503,4874,19759,1009,1011,1145,1429,19619,1177,1895,1912,1915,1933,1938,1942,19622,1945,1948,1953,19757,1955,1964,1982,1988,17308,19756,3125,2899,19761,3090,3401,3421,3486,1894,4135,4320,4946,19624,1531,4494,91,4523,19630,4614,4630], -[0,1177,6741,6939,6961,1108], -"iglet", -[2,5537,12653], -[3,9362,11], -[2,12655,1496], -[1,2343,12658], -[0,12661,12662,12663,2523], -"nestjs", -"fullstack", -[0,19767], -[0,442,13729,1177,19771,1895,1912,1933,2990,3125,2899,3400,1894,4131,19235], -[0,1177,1965,19773], -[1,2343,12665], -[0,12667,0,12669,34352], -"archive", -[0,91,4135,31800,3060,19780,12121,3181,5569,19751,1413,1405,2203], -"eslint-json-compat-utils", -[0,19786,1177,6741], -[1,2343,12671], -[0,0,12529,12672,2443], -[0,1177,6741], -[1,2343,12676], -"flowcontrol", -"arch", -[0,12677,12678,12679,34352], -[0,439,5012,14301,2203,2932,3561,3616,3676,4135,19795], -[0,53,68,14039,19492,10879,19797,19798,8818,19799,6503,4874,19800,5254,19802,5604,5552,1082,1145,668,1994,19339,1996,2000,2807,695,2899,3640,3681,2278,4228,4333,3709,19803,4494,4505,4745], -[0,1177,6939,6741,3709,19805], -"cron-parser", -"date.js", -"human-i", -[1,2343,12686], -"nterval", -[2,12682,12684], -[0,12691,12695,12696,2523], -"uman-interval", -[2,6495,12687], -[2,8329,2995], -[2,3230,12689], -[0,5604,1012], -"job", -"jobs", -"delayed", -[0,192,5467,19181,442,4874,5551,7677,22839,23203,1177,1895,1912,1915,32525,1953,1958,1992,19560,2203,2675,2807,2990,1894,23535,4131,1531,91,4523,1984], -[0,1177,6741,6939,671,1975,5472], -[1,2343,12698], -[0,12723,12724,12725,2537], -[3,1339,12], -"end4", -[2,12699,12700], -"meat7", -[2,1337,12702], -"bow-swam-troops-care", -"cent-matter-to", -"close", -"r-composed-particularly-shout", -[2,12706,12707], -"coach-organized-notice", -"correct-home-silent7", -"course-whenever-merely", -"crop", -"-birthday-web3-children", -[2,12712,12713], -"exchange-known-bend", -"-even", -"tually-bound", -[2,12716,12717], -[2,8205,12718], -"grass-dollar-crew-floating", -"-fruit-web3-perfect", -[2,4374,12721], -[0,1012,608,606], -[0,9125,5601,1006,1177,9141], -[0,6869,1745,2295,4298,9132,9134,9658,1932], -"lay-rest-hour", -"balance", -"-trade-solar", -[2,12727,12728], -[2,3131,12729], -"meat", -"-think-stove8", -[2,12731,12732], -"offic", -"e-deal-mostly1", -[2,12734,12735], -"product-slight-adult-settlers", -[3,3931,9], -"done-should-moon", -[2,12738,12739], -"scienti", -"fic-exist-event2", -[2,12741,12742], -"sent", -"-won-little-western", -[2,6590,12745], -[2,12744,12746], -"-wing-eat", -[2,6887,12748], -"stay-including", -"supp", -"er-t", -"erm-including-snake", -[2,12752,12753], -[2,12751,12754], -"truck-hospital-equator-hurt", -"trunk-darkness-believed-corner", -"typi", -"cal-recall-industry-exchange", -[2,12758,12759], -"warn", -"-clothing-whose0", -[2,12761,12762], -"weigh-flew-web3-farm", -[1,2343,12766], -[0,12767,12768,12769,34352], -[0,5279,439,1443,1458,19824,5867,30055,2203,2709,10911,2835,3547,19826,19827,4135,8959], -[0,51,53,68,19181,19829,1011,5552,1166,1414,1836,1177,19422,1907,1912,1933,1942,1982,1992,19560,1994,2000,2992,3125,17269,27922,3390,3401,19595,3471,3718,91,4630,4745], -[0,1177,6741,6939,1981,9654,671,590,1906], -[1,2343,12781], -"@airtap/browserify-istanbul", -"-default", -[2,1090,12772], -"airtap-", -"airtap-multi", -"bruce-millis-option", -[3,9242,9], -[3,9242,10], -[2,12778,5576], -"near", -[0,12561,12794,12797,2537], -"nearest-file", -[2,2103,12782], -"s-to-files", -[2,2070,12784], -"human", -"ize-duration", -[2,12786,12787], -"load-script", -[3,3736,9], -[2,12790,6953], -[2,3094,12791], -"maybe-combine-errors", -[0,19344,5601,6503,4874,1009,1011,5551,19838,19839,1540,1177,1912,1933,1985,1992,19560,4474,4494,91,4543,1984], -"nanoresource", -"-col", -[0,1177,6741,6939,19842,1984,19844], -"-collection", -[2,12795,12798], -"on-str", -"eam-close", -[2,12800,12801], -"run-", -"parallel", -[1,2343,12806], -[0,12810,12811,12816,2523], -"-settled", -[2,12804,12807], -[2,12803,12808], -[0,439,12118,16870,3681,4135,19851], -[0,107,27928,19609,19344,11470,5601,19616,4874,5254,19853,1009,1011,5552,7677,1145,19619,668,1177,23753,1895,1933,1938,1945,29743,19623,1955,1982,19339,1996,2000,2018,2203,2832,3125,3510,1894,1531,91,19630,4614,1984,4630], -"tap-completed", -"y-with-args", -[2,3949,12813], -"transi", -[0,1177,6939,7625,188,12072,3624], -"ent-error", -[2,12815,12817], -[1,2343,12821], -"abstract-browser", -[0,12822,12824,12827,2487], -[0,51,2861,1437,2716,3429,89,4183], -"simple-get", -[0,19181,19861,5601,4874,8860,4880,1567,1177,5556,19862,19864,2807,3339,4294,91,1984], -"labs", -"saucelabs", -[0,1177,19866], -[1,2343,12829], -[0,12830,12838,5795,34352], -[0,34028,1006,19871,2004], -"uri", -"fast-uri", -[3,12284,13], -[2,12833,1286], -"-string", -"from-string", -[2,4013,12836], -[0,1011,1429,1996,2000,19230,4167], -"@ajv-validator/config", -"quire-", -[2,12840,12836], -[2,5249,12841], -[1,2343,12853], -"tc", -"-plugin-utc", -[2,1673,12845], -"if-node-version", -[2,12833,4467], -[2,5223,12836], -"re2", -"tsify", -"uri-js", -[0,0,12854,5795,2523], -[0,3456,4042,4057,4481,91], -[1,2343,12856], -[0,12857,0,12858,2537], -[0,1898,19884], -[0,1998], -[1,2343,12861], -"Ajv", -[0,0,0,12862,34352], -[0,10906,5286,6813,1204,5260,202,3209], -[1,2343,12864], -[0,12865,12866,12867,2523], -[0,1082,15128,1996], -[0,5517,4042,4167,4481,91], -[0,6892,5286,5284,57,5341,1082], -[1,2343,12869], -[0,0,12871,12872,2523], -"longjohn", -[0,15990,19905,19907,2070,2759,19878,2297,2881,2889,2891,2895,2897,2900,2912,19910,2915,1209,2899,19912,3954,1241,4487,91,4526,19914,2924], -[0,6892,5286,2003,5284,57,5341], -[1,2343,12874], -[0,0,12875,2514,2523], -[0,1264,1280,1429,2000,2323,2351,2390,2404,19922,2272,2899], -[1,2343,12880], -"buffer-", -"more-ints", -[2,12877,12878], -[0,12881,12883,2514,2487], -[0,1006], -"claire", -[0,91,4579], -"AMQP", -[1,2343,12888], -"AMQP 0-9-1", -"RabbitMQ", -[0,0,12889,12890,2487], -[0,2899,1177,2759,1317,4127,4100,1311,1954,1938,1958,1903,1948,1970], -[0,984,27,10376], -[1,2343,12892], -[0,12894,12895,12896,4139], -"ux bootstrap", -[0,19937,2010], -[0,19939,19941,19942,19944,9424,7892,4874,19325,1389,19945,1596,2675,2759,2297,2871,2889,2895,19946,3183,3421,1894,4389,4474,4487,4508,4514,91,19948], -[0,9439,19950], -[1,2343,12898], -[0,12900,12901,12902,2523], -"client-side", -[0,9424,1363,1600,19956,19957], -[0,19961,4874,19963,19325,1177,2297,2881,2895,19946,19965,3421,1894,4389,4474,91], -[0,9439,6731,594], -[1,2343,12904], -[0,12905,12906,12907,2523], -[0,1082,1437,4747,1209,1362,2151,19972,2004,3105,19971,4547], -[0,3763,19974,91,4874], -[0,19976,19977,5284,1783,1973], -[3,4,9], -"cli/ast-tools", -[2,12908,12909], -[3,12910,13], -"href-webpack", -[2,1296,12912], -[2,12911,12913], -"@ngtools/json-schema", -"@ngtools/", -[2,12916,2924], -"denodeify", -[1,2343,12920], -[0,12927,12932,12933,2523], -"entity-name", -[2,3370,12921], -[2,1828,12922], -[2,4284,594], -[2,1828,12924], -"exists-sync", -[0,1792,7115,3102,19982,4237,19984,4430], -"caller-file", -[2,2183,12928], -"isbinaryfile", -"node-mo", -[0,19986,19987,19988,4389,19989], -[0,3101,3053,19991,7131,4237,4565,1698,4068], -"dules-path", -[2,12931,12934], -[2,1508,2091], -"silent-error", -[3,4070,9], -[3,6384,10], -"inst", -"rumenter-loader", -[2,12940,12941], -[2,12939,12942], -[2,12938,12943], -[1,2343,12946], -[0,0,12947,12948,34352], -[0,1317,1362,1596,2899,3421], -[0,2013,2018,13771,2016,19997,19998,19999,6868,20000,1803,3441,20001,20003], -[1,2343,12952], -" library", -[2,4627,12950], -[0,0,12953,12954,2537], -[0,811,10615,1148,1414,2899,4042], -[0,20014,20015,20016,20018,19997,19998,6868,20000,13771,2013,3441,19999,20001,20019,20003], -[1,2343,12957], -"justified", -[0,0,12960,12962,2523], -"bgblack", -"bgBlack", -[0,1090,2159,6914,2569,2756,4389], -"bgblue", -[0,2018,7133,7053,7155], -"bgBlue", -"bgcyan", -"bgCyan", -"bggreen", -"bgGreen", -"bgmagenta", -"bgMagenta", -"bgred", -"bgRed", -"bgwhite", -"bgWhite", -"bgyellow", -"bgYellow", -"black", -"bold", -"clorox", -"cyan", -"dim", -"gray", -"green", -"grey", -"hidden", -[1,2343,12988], -"inverse", -"italic", -[0,12989,12995,12999,2537], -[0,20033,1615,2089,2188,20035,2745,2753,3404,3718,4174,20039,20040], -"magenta", -"red", -"str", -"kethrough", -[2,4285,12993], -[0,4874,1166,1414,20042,20044,20047,29888,3505,16687,16330,4481,91,4707,1906], -"underline", -"white", -"yellow", -[0,2978,1451,3729,20049,16701,20050,20051,1614,2090,4166,20052,17180,20054,3378,3403,2703,12473], -[1,2343,13001], -[0,0,13003,13004,2487], -"@jest/get-type", -[0,2273,2277,2283,2228,4707], -[0,2021,3729,20061,8634,20062,20063,20064,20065], -"vt100", -"cursor", -"iterm2", -"screen", -"erase", -[1,2343,13012], -"scrollback", -[0,13013,13014,2514,2537], -[0,20076,13002,11907,8765,11944,2798], -[0,16596,8776,1437,2700], -[1,2343,13016], -[0,0,13018,13019,2537], -"pattern", -[0,5517,4874,29891,23203,1177,20083,3377,20085,4294,4473,91,1984], -[0,91,20088,1145,553,4532,1973,5472], -[1,2343,13021], -[0,13022,13023,13025,2537], -[0,3763,1704,984,3441,710,4590,1676,2145,977,38,1080,1000,3494,4266,1833,3173,988,1364,1869,2657,3440,1562,2099,3781,4151,1581,20103,1560], -[0,1797,2590,3421,1087,2899,4594,1177,3127,3237,4342,1553,1575,1578,2040,3162,20106], -"svg-term-cli", -[0,2026,5130,6690,5122,27,4030,7096,38,1896,5592], -[1,2343,13027], -[0,13028,13029,13025,2537], -[0,1080,20098,1364,1560,1562,977,1581,1676,1704,1833,1869,984,2099,2145,2657,20103,3164,3440,3494,3509,988,3763,3781,4100,710,4151,20099,4266,1000,4578,4590], -[0,1087,1553,1575,1578,1797,1177,2040,2590,3127,3162,2899,3237,3421,20106,4342,4594], -"truecolor", -[2,31213,31214], -[1,2343,13033], -[0,13034,13040,13043,2487], -[0,53,58,101,19526,3509], -[2,12392,188], -"nitless", -[2,7944,13036], -"@simonwep/pickr", -"array-", -[0,5087,1177,1192], -"tree-filter", -[2,13039,13041], -[0,8124,2026,1776,2295,7701,20120,1745,4363,13728,1179,8623,20121,20123,20124], -[1,2343,13048], -"dom-align", -"croll-into-view", -[2,11148,13046], -[0,13050,13054,13070,2537], -"vue-types", -[0,1797,3188,1525,3181,14380], -[3,10720,40], -[2,5822,3426], -"@types/k", -[0,2899,1177,4039,4538,4342,4459,1954,1938,1958,1903,1970,4588], -"@types/koa", -"ru-cache", -[2,6499,13056], -[3,4875,15], -[2,13058,3615], -"-jsx", -[2,11016,13060], -[2,1199,1219], -[2,5334,13062], -"slint", -[2,3542,13064], -[2,1472,13065], -[2,5334,13066], -[3,1031,19], -[2,13068,1894], -[0,2026,5130,6690,5122,4030,7096,38,1896,5592], -"vue3-jest", -[2,5334,13071], -"pack-", -[1,2343,13081], -"cli/serve", -[2,13073,13075], -[2,10672,13076], -"ali-oss", -"nline-import-data-uri", -[2,1206,13079], -[0,13082,13091,13102,2523], -[0,2070,2215,2036], -"context", -"quire-context", -[2,1252,13084], -"colorful", -"-versions", -[2,3797,13087], -"cz-git", -"diacritics", -[0,442,6061,16607,6063,6065,16608,16612,5087,4874,1177,2203,2774,4131,4468,91,4523], -"docsearch.js", -"enquire-js", -[3,1954,16], -"licit-type-exports", -[2,1760,13095], -[2,13094,13096], -[3,2512,11], -[2,13098,1501], -"-emit-webpack-plugin", -[2,2687,13100], -[0,2026,20137,2036,6624,8691,20140,5354], -"is-windows", -[3,11948,16], -[2,13104,188], -"stub", -[2,1221,13106], -[2,2769,13107], -"templater", -[2,2842,13109], -[1,2343,13116], -"mport", -"npm-import", -[2,1186,13113], -[2,3194,13114], -[0,13139,13140,13146,2523], -"vars-to-js", -[2,3194,13117], -"majo", -[3,5961,14], -"ble-of-contents", -[2,13120,13121], -"merge2", -[2,3986,1646], -"yaml-", -"yaml-config", -[2,3986,13126], -"reqwest", -"rucksack-css", -[3,4130,9], -[2,13130,36], -[3,1873,9], -[2,2495,2091], -[2,13132,13133], -"umi-request", -"vue-cl", -"ipboard2", -[2,13136,13137], -[0,2863,20147,8264], -[0,2899,1177,2026,4474,1894,91,6503,6494,1566,1011,1009], -"drag-resize", -[2,4625,13141], -"vue-i", -"nfinite-scroll", -[2,13143,13144], -[0,1303,20150,5165,20151,14374,27,2038,11326,3424,2026], -[1,2343,13150], -"equest", -"vue-request", -[0,13153,13155,2514,2523], -"vue-tsc", -"webpackbar", -[0,977,1581,1676,1704,16128,3494,4100,4538], -"vueComponent", -[0,1087,1575,1177,1948,2026,2899,3421,4342], -[1,2343,13157], -[0,13158,13160,13170,2523], -[0,1091,1437,1525,1536,1594,1759,2026,2812,4042,4057,91,4763], -[2,11164,3007], -[0,442,7806,9227,6494,4874,1009,1011,1177,1954,2203,3363,1894,4039,4474,4480,4523], -"color-picker", -[2,11183,13161], -[3,5050,15], -"utate-observer", -[2,13163,13164], -[2,11183,11194], -[3,11185,15], -"rigger", -[2,13167,13168], -[0,5592,5995,20164,5001,7141,2026,20165,5130,6706,6807,36,7020], -[3,11161,14], -"mpat", -[1,2343,13180], -"mpatible", -[2,13171,13174], -"work-theme", -[2,2560,13176], -[2,41,13177], -"@ant", -[0,0,13208,13209,2523], -"@antv/g6", -"@codecov/webpack-plugin", -"@code", -"sandbox", -"/sandpack-react", -[2,13184,13185], -[2,13183,13186], -"@ianvs/prettier-plugin-sort-imports", -"@madccc/duplicate-package-checker-webpack-plugin", -"@micro", -"flash/rehype-figure", -[2,13190,13191], -"dm-zip", -[2,9165,13193], -"li-oss", -[2,9165,13195], -[3,10403,11], -[2,13197,3730], -[3,10406,12], -[2,13199,36], -[3,8806,9], -"omorphic-fetch", -[2,13201,13202], -[2,7635,965], -[2,10884,3730], -"ixelmatch", -[2,5088,13206], -[0,1414,20171,4193,1177,2026,4474,20170,91,4874,6513,6494,1011,1009], -[0,20173,20174,1781,91,5592,27,2026,20175,20176,91,2663,998,20178,20179,20182,20183,20184,9091,10339,5995,20186,20188,89,20189,20194,20195], -"@types/pngjs", -[1,2343,13217], -"pinnies", -[2,5051,13212], -[3,7752,10], -"antd-style", -[3,8770,10], -[0,13222,13242,13244,2537], -"ugin", -"y-plugin", -[2,13216,13219], -[2,7045,13220], -[0,1209,1155], -"cli-progress", -"plugin-c", -"chunk", -"olor-chunk", -[2,13224,13226], -[2,12407,13227], -[3,5556,16], -"dash", -[2,13229,13230], -"lunar-typescript", -"p-all", -"untup", -[2,3808,13234], -"-no-", -"-references", -[2,10393,13237], -[2,13236,13238], -[2,11380,13239], -"runes2", -[0,20202,20207,20212,5087,4870,1009,1011,1177,1895,1938,1955,1192,1894,4468,91], -"spinnies", -[0,2026,1155,7020,2649,2574,20215,4741], -"vanilla-tilt", -[1,2343,13247], -[0,13248,13249,13250,2523], -[0,1112,3327,20221,3776,13031], -[0,7806,9227,27478,6494,9231,27327,22102,10413,20232,1536,1594,1704,2026,9243,2657,3313,20243,91,4548,4763,34143], -[0,6710,5592,27,2663,1745,1781,2026,91,2844,36,1852,8124,20246,3452,20247,6652,20251,20252,4763,7020], -[1,2343,13252], -[0,0,13253,13254,4139], -[0,13614,13616,1177,2292,4389], -[0,2051,1496,1698], -[1,2343,13256], -[0,13257,13258,13269,4139], -[0,20263,20266], -[0,20268,20269,20272,2398,2747,20273,3183,2899,3427], -"ext-comm", -[2,10740,13259], -[2,5409,13260], -[2,5409,1745], -"app-layout", -[2,10689,13263], -[3,10703,14], -[3,212,11], -[2,13265,13266], -[3,806,10], -[0,3426,1496,2051,1698,7002,3048,3427,3435,3743,3583,3205,20275,4161,614,6435,594,6692], -[1,2343,13273], -"aper-toast", -[2,13268,13271], -[0,13274,13288,2514,2523], -[0,1149,3008,4121,4695], -"menu-mixin", -[2,5395,13275], -"building", -"-rollup", -[2,13277,13278], -[2,5471,13279], -[2,1384,591], -[2,13265,13281], -[3,5478,17], -"-regression", -[2,7062,13284], -[2,13283,13285], -"amf-client-js", -[0,1173,1193,1245,1257,1264,1610,1628,1701,1177,20281,1938,2092,1192,2990,3413,3697,3786,4257,4307,2924,20283], -[2,4053,2257], -"per", -"unzipper", -[1,2343,13295], -"raml", -"amf", -[0,13296,13297,13298,2399], -[0,1676,2188,4753,20290], -[0,1009,1011,1166,1177,1903,1920,1938,1954,1958,1970,2151,2675,2990,3421,4481,91], -[0,4560,2056,7682], -[1,2343,13300], -[0,0,13306,2514,34352], -"-match-patch", -[2,1687,13301], -"se-loader", -[2,5779,13303], -"klaw-sync", -[0,3421,2323,1776,2899,4193,1177,1209,3460,4431,1596,1389,20304,2494,2530,2990,13896,4599,2401,20305,20306,4603], -[3,1898,16], -[1,2343,13309], -[0,13312,13313,13314,2537], -"commended", -[2,13307,13310], -[0,20312], -[0,1177,1889,1954,2022,2899,3421,20314,4193], -[0,20317,3073,2942,6807,3721,20319], -[1,2343,13316], -[0,13317,13320,13321,2537], -[0,20325], -"light", -"apidoc-light", -[0,603,4874,1610,2070,19826,4005,4508,91,1984,20328,20330,2064], -[0,20334,20335,13657,5472,20336,20339,20340,2060,20342,20341,1192], -"portable", -[1,2343,13324], -[0,13329,0,13330,4139], -"programmatic", -"cli-app", -[2,4610,1745], -[2,3115,1745], -[0,20351,20349], -[0,1641,57,2062,20353,20354,20355], -[1,2343,13332], -[0,0,13334,13335,2537], -"http2", -[0,1596,1758,1177,2899,3421,3697,89,3904,4193,91], -[0,2062,4162,1693], -"apple", -" notifications", -[2,6645,13337], -"iOS", -"apns", -[1,2343,13342], -[0,13343,13344,13347,2537], -[0,20366,19185,2200,13123,3170], -[0,20369,16396,20371,8778,6503,4874,20374,6513,20375,1177,20377,2020,2071,20378,2070,20380,2899,4039,4193,20382,91], -[3,1122,12], -[2,1126,6731], -[0,2070,11601,2062,20385], -[1,2343,13349], -[0,0,13350,2514,2523], -[0,6503,4874,2899,4113,91], -[3,5515,14], -[2,4807,13351], -[1,2343,13355], -"jsnext", -[0,13357,13358,13359,2443], -"relay", -[0,20394], -[0,53,83,87,94,4874,1195,1414,1177,2591,2765,1894,3753,91,2924,4677], -[0,2062,6523,1781,57,4734,16168,4735,676,1155,2649,8535,1145,20398,20400,1936], -[1,2343,13361], -[0,0,0,13365,2399], -[3,8780,10], -"phql", -[2,13362,13363], -[0,2077,5131,4453,4384,2076,1702], -[1,2343,13367], -[0,13368,13371,13375,2537], -[0,20428,20414,20434,13597,20418,20409,20426,20412,20420,3533,20416,4038,20423,4135,20410], -"-common", -[2,1129,13369], -[0,28002,8520,826,19344,7844,4874,1091,8531,1092,20437,20446,20441,28400,20450,1540,1610,1177,20444,11049,20453,20436,2657,2812,12284,2861,20451,29197,3313,3752,4238,4481,91,4548,4590,6482], -[2,1126,1612], -"to-querystring", -[2,3425,13373], -[0,5122,5130,1781,2844,3445,5592], -[1,2343,13377], -[0,13378,13380,2514,2523], -[0,603,20472,12397,20467,20482,12399,12400,27329,20463,1201,1212,20479,20476,1835,668,2071,12419,20465,3181,20460,4480,91,20474], -"cracks", -[0,192,5467,842,5087,20485,9129,4874,14011,12471,2675,1192,6551,2990,1894,3706,3708,4039,4474,4494,12473], -"_modules", -[2,202,13381], -[1,2343,13384], -[0,13385,13386,13389,2399], -[0,20490,20491,20492,20493,20494,15016,1792,3183,19544,3923,19647,4243,20495,18997,20496,4389,4431], -[0,13614,1158,1159,1177,2708,3410,4103], -"@appium/support", -"@colors/colors", -[0,4384,12786,1973,20499,20500,3721], -"appium-adb", -"appium-", -"driver", -"chromedriver", -[2,13391,13393], -"asyncbox", -"io.appium.settings", -"ports", -[1,2343,13401], -"portscanner", -"teen_process", -[0,13407,13408,2514,2523], -"@appium/", -[3,1879,15], -"ppium-ts", -[2,13403,13404], -[2,13402,13405], -[0,1613,20507,3082,3427,1862,20508,11804], -[0,53,1700,2126,2323,2338,2396,2494,2700,2774,3159], -[1,2343,13420], -"@appium/t", -[2,13410,7630], -[2,13410,103], -"luebird", -[2,4853,13413], -[3,4875,9], -"rtscanner", -[2,13415,13416], -[2,5051,5588], -"@types/te", -[0,6230,13421,13422,34352], -[0,48,53,87,90,6061,6063,20514,13662,20517,1251,1652,1177,1879,2990,3188,4131], -[0,20519,20520,20521,20522,4963,20523,4967,6082,89,20524,20525,11609,5122,20526,20528,20531,20533,17751,20536,20537,20539,20541,20542,20543,20544,20545,20546,20547,20548,20551,20553], -[1,2343,13424], -[0,6263,13425,13427,2537], -[0,48,53,83,87,90,92,5583,811,816,10817,968,972,20562,5087,4880,4883,1009,1011,1503,1540,1610,1177,1881,1895,17613,1938,1939,1959,1961,1192,89,3824,3957,4042,4073,4468,4484,91], -"appium", -[0,20566,4967,20568,3875], -"automation", -[2,5131,10428], -[1,2343,13431], -[0,13432,0,13433,4139], -[0,20577,20573,20575,11959], -[0,1612,27,3212,5472,4158,13106], -[1,2343,13435], -[0,13436,0,13438,2399], -[0,20584], -"@azure/core-auth", -[0,10807,2087,15964,20586,1149,12804,6812,14836,1862], -[1,2343,13440], -[0,5621,13443,13448,2537], -"pipeline", -"reg", -[0,4874,23203,1149,2675,2990,91,1983,26744,1984], -"@azure/", -"identity", -[2,13444,13445], -"monitor-", -[0,2088,6938,6952,7179,1111], -"eleme", -[1,2343,13451], -[0,13460,8134,13461,34352], -"opentelemetry", -[2,13447,13452], -[2,13444,13453], -[3,830,9], -[2,13454,13455], -"-inst", -"rument", -"ation-", -[0,16232], -[0,3656,200,8429,6876,7169,5511,2568,20597,2089,20598], -"azure-sdk", -[2,13459,13462], -[2,13458,13463], -[2,13457,13464], -[2,13452,13465], -[2,13444,13466], -"@opent", -[1,2343,13472], -"elemetry/api", -[2,13468,13470], -[0,13511,13519,13533,2537], -"-logs", -[2,13471,13473], -[3,13471,15], -[2,13475,364], -"er-logs-otlp-http", -[2,6813,13477], -[2,13475,13478], -[3,13479,24], -"metr", -"ics-otlp-http", -[2,13481,13482], -[2,13480,13483], -"trace-", -"otlp-http", -[2,13485,13486], -[2,13480,13487], -"otlp-", -"exporter-", -[2,13490,1299], -[2,13489,13491], -[2,13475,13492], -"resources", -[2,13475,13494], -"sdk-logs", -[2,13475,13496], -[3,13497,19], -"metrics", -[2,13498,13499], -"trace-base", -[2,13498,13501], -[3,13502,25], -[2,13503,202], -[3,13497,16], -"emantic-conventions", -[2,13505,13506], -"diagnostic-channel", -"-publishers", -[2,13508,13509], -[0,3008,4121], -[2,13444,5746], -[3,4870,9], -"@types/long", -[3,8778,12], -"__typescript-etw", -[2,7295,13516], -[2,13515,13517], -[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,2675,1192,2990,3144,3400,1894,4257,4027,2924], -"exce", -"ption", -" monitoring", -[2,13521,13522], -[2,13520,13523], -[2,705,13522], -[2,6681,13522], -[3,1135,11], -" insights", -[2,13527,13528], -"microsoft", -"azure", -"tracing", -[0,2924], -[1,2343,13536], -"telemetry", -[0,0,13537,13540,4139], -[0,48,53,10688,5812], -"analytics", -"apm", -[0,20611,20613,20614], -[1,2343,13542], -[0,13543,13555,13556,2537], -[0,13687,20619,20621,20624], -[3,7709,10], -"ial-provider-node", -[2,11891,13545], -[2,13544,13546], -[3,7709,9], -"hash-", -"hash-node", -[2,13548,13550], -[3,6765,9], -[2,13552,27], -[2,13548,13553], -[0,20626,4874,1166,20627,2188,20628,4481,1906], -[0,3171,2090,998,14431,12666,158,11807,20630,20631,16202,20632,20634,13735,4354,2741,20635,14242,20636,8433,17180,1398,15149,20637,18048,20638,20639,12349,20640,20641,20642,20643,20644,20645,20646,20647,20648,3775,20649,20650,20651,20652,20653,20654,2056,4390,20655,17276,17274,20656,18494,20657,20658,20659,20660,20661,20662,20663,20664,20665,20666,20667,20668,20669,20670,20671,2636,20672,20673,7016,20674,20675,20676,20677,20678,20679,13705,20680,20681,17918,20682,7827,20683,20684,20685,10790,20686,20687,20688,20689,20690,20691,7823,20694,20695,20696,20697,20698,3354,20699,20700,20701,20702,20703,20704,20705,20706,20707,20708,6523,20709,11811,10868,20710,20711,20712,8861,20713,20714,20715,20716,20717,20718,20719,20720,20721,20722,20723,20724,20725,20726,20727,20728,20729,20730,20731,20732,20733,20734,20735,20736,20737,20738,20739,20740,20741,20742,2403,20743,20744,20746,12350,10218,20747,20748,18508,17733,20749,20750,20751,20752,20753,20754,20755,20756,20757,1227,20758,20759,20760,20761,20762,20763,20764,12081,12096,28922,28923,28924,28925,28926,28931,28932,28942,28943,28946,28947,37859,28949,28955,28958,28961,34876,33671,6790,33677,27669,29579,17288,13442,18883], -"signature-v4", -[2,13548,13557], -[2,13548,553], -[2,9196,1732], -[1,2343,13570], -"@aws-", -"amplify/amplify-appsync-simulator", -[2,13562,13563], -"construct", -"constructs", -[3,3706,25], -[2,13567,2618], -"projen", -[0,0,13575,13576,34352], -"appsync", -"gql", -"lambda", -"xray", -[0,10615,1159,1414,1177,2675,2899,4042], -[0,2090,2098,4202,7017,6771,1413,1687], -[1,2343,13578], -[0,13582,9025,2514,2487], -[2,1137,3007], -"crc32", -"buffer-crc32", -[0,1676,1833,1869,3440,3494,4266], -"readdir-glob", -"zip-stream", -[1,2343,13588], -"archiver-", -"jsdoc-t", -[0,13592,13593,13594,2523], -"jsdoc-theme", -[2,13586,13589], -[2,4279,4440], -[0,3537,13765], -[0,1906,1166,1700,4481,4400], -[0,2325,7204,20164,2100,7193], -[1,2343,13596], -[0,13598,13599,13600,2537], -[2,27994,27995], -[0,20786,20789], -[0,1166,17450,4400,4481,1906], -[0,2100,2104,2105,7076,6614,6605,2090,7193,3529,3383,814,5933,7029,6857,7204,4647,6821,3403], -[1,2343,13602], -[0,13603,13604,13605,2537], -[0,20796,2743,3170,20797], -[0,1177,1889,1954,2022,20801,2899,3369,3421,814], -[0,2090,2100,2105,7076,2070,3529,13017,814,7193], -[1,2343,13607], -[0,13608,13620,13621,2537], -[0,13612,20819,20822,20824,20825,20826,20828,20829,20831,20833,20836,20837,20839,20840,20841,12153,20843,20846,20847,20848,20849,20850,20851,20852,20853,20857,20858,20859], -[2,6739,1228], -"-unscopables", -[2,7065,13610], -"@firebase/ai", -"@es-shims/api", -"@ljharb/eslint-config", -"cover", -"covert", -"has-s", -"trict-mode", -[2,13617,13618], -[0,2323,4042,91,2496,2510,4077,10615,4060,811,4071,4076,816], -[0,5165,18035,20862,2109,20863,13901,6681,20845], -[1,2343,13623], -[0,13624,13627,13628,2399], -[0,20870,20848,20872,4874,20873,2069,20917,2863,20874,3313,3348], -"arrayify", -"ensure", -[0,20883,20839,20840,20885,603,20886,4856,9417,20888,8264,4870,7892,6503,10410,16936,20889,6513,6512,7819,1009,1011,1306,1429,1431,6522,1437,1455,1700,1177,20892,2323,2390,2409,2529,20895,1209,3183,2899,3261,3297,3400,3421,705,4008,4089,4193,4196,4474,91,4747], -[0,20897,18035,20862,20863,5165], -[1,2343,13630], -[0,13632,0,13634,2399], -"is-n", -[0,32557,32562,12207,20745,20904,20905,8998,29421,1079,1091,1092,1137,20908,1364,1457,20909,1483,1511,1525,1543,1594,1610,1615,1645,20911,20912,20913,2026,2098,2139,2151,2163,20914,2070,20917,2687,2822,2863,2975,20918,1209,12209,3127,14774,3171,3181,3237,3310,3445,3467,6042,3519,30172,30174,3560,3730,20921,1153,4135,20922,20924,20925,20928,18052,4449,20931,20934,20935,3348,4709,4715,4729,4745,4763,33069], -"is-nan", -[0,20937,200,20938,6599,20940,2109,20863,14609,20943], -"object-is", -[1,2343,13637], -[0,13639,13640,13641,34352], -"array-fill", -[0,20948,1437,1707,20949,20951,1997], -[0,4255], -[0,4051,3383], -[1,2343,13643], -[0,13644,13645,2514,2523], -[0,4864,9129,20959,2151,20960,4648], -[0,4874,4039,4384,91], -[1,2343,13647], -[0,0,13640,13649,2523], -"fn.name", -[0,2117,1781,3033,20966,4237,3048,3639], -[1,2343,13654], -"is-buffer", -"propget", -"pruddy-error", -[0,13655,13658,13659,2523], -[0,1676,1865,2151,1209,4449], -"shouldjs", -"unit testing", -[0,2899,4039,4255], -[0,18503], -[1,2343,13661], -[0,0,13670,13675,2537], -[2,1176,3178], -[2,1218,5702], -[3,1267,18], -[2,13664,6836], -[3,1955,17], -"fer-arrow", -[2,13666,13667], -"native-", -[0,53,78,14167,87,20978,4864,4865,5087,11301,4874,19802,1245,1457,1596,2151,2070,1192,1894,4039,4042,4045,20981,20983,4075,4072,4468,4474,4484,91], -"promise-only", -[2,13669,13671], -[3,4064,15], -[2,13673,2306], -[0,5284,9302,9026,1666,6901,3811,20986], -"jstz", -[1,2343,19602], -[0,20991,1437,2087,2727,2983,3368,15245,3741,4135,4247,20992,13914], -[0,1429,1596,1177,2759,20995,2899,3697,3752,4193], -[3,8155,10], -[0,20997,20998,8891,20999,2978,4166,16159,21000,3005,12804,21003,21004,2703,6599,14692], -"listen", -[1,2343,13684], -[0,0,0,13685,2537], -[0,13326,200,20052,17180,2124,3497,998,6591,4354,16790,5284,676,21009], -[1,2343,13690], -[2,13689,25388], -"then-sleep", -[3,20626,11], -[0,13691,13692,13699,2443], -[0,6372,21020,21016,3561,4383], -[0,53,87,6371,28962,28963,1009,1011,1165,1195,1587,1593,1610,1628,1630,1637,1177,1895,1955,21023,2092,12278,3177,3400,1894,21024,9348,4172,4230,4307,4409,4469,91,2924,4677,4681,21026,4749], -[2,54,202], -"@pika/pack", -"pika-plugin-build-web-babel", -[3,13695,12], -"ts-types", -[2,13696,13697], -[0,2128,91,5284,2924,1936,1623,12951,21028,4380,21029,21031,21033,21034,21036,21029,21037,21038,21039,21040,21042,21044,21047,21050,21052,21054,21057,21060,1177,1894,17526,1999,5811], -[1,2343,13701], -[0,13702,13703,13704,2537], -[0,1149,4707], -[0,3421,1776,2899,4170], -[0,21067], -"ttc", -[1,2343,13707], -[0,13708,13710,13714,2537], -[0,21072,2081], -"libnpx", -[0,53,1195,18228,1700,2323,2338,2396,2409,2494,2541,2700,1192,2780,3427,89,21074,3824,4603,2924,18237], -"node-cleanup", -[2,3382,6698], -[2,2103,9478], -[0,2130,89,3497,21077], -[1,2343,13717], -"audit", -[0,0,13718,13719,2537], -[0,1537,1177,2026,21082,2899,3421], -[0,27,2671,1002,7436,5576,7426,6435], -[1,2343,13724], -"parse-", -[3,9577,10], -[2,13721,13722], -[0,0,0,13726,34352], -[2,1199,4037], -[0,2414,7176,8220,1017,2414,1367], -[1,2343,13731], -"automatic", -[3,1446,9], -"commits", -[0,13732,13733,2514,2443], -[0,18986], -[0,5517,13614,23237,27570,19325,1159,1177,3410,3421,4389], -[1,2343,13737], -"detect", -"detective", -[0,13740,13741,13742,2443], -"detective-es6", -"sync-exec", -[0,1149,21097,1496,21098,1512,3188,4709,21099,21100,3722,1543,2015,3427,21102], -[0,1429,4616,2899,1177,3220,21104,705,1894,21106,1895,1955], -[0,200,21110,21111,2041], -[1,2343,13744], -[0,13745,13747,13748,4139], -[0,51,1437,1457,1595,1699,2151,3144,3181,21118,4121,4135,4388], -"fraction.js", -[0,5467,16607,21120,6065,16608,16612,19861,21122,4864,5087,8818,9129,6541,4874,20959,5254,1009,1011,1529,1610,1177,1938,1954,1955,10619,2675,1192,21124,2784,2845,21125,2990,3203,1894,4039,4131,4294,4468,91,2924], -[0,2924,1932,91,21127,4469,2924,20050,2062], -[1,2343,13750], -[0,13751,13752,13761,2523], -[0,13922,1437,1457,1209,3170,3181,814,4388], -[0,21134,16933,4870,8778,9129,4874,5251,4891,1429,1628,1177,2675,2759,2990,2899,3203,3210,1894,4039,4193,4469,4487,4490,91,188,4629,4634,4645,2924], -"@vercel/nft", -"arrgv", -"site", -"sites", -"callsites", -"cbor", -"chunkd", -"ci-parallel-vars", -[0,2924,1932,91,998,16790,9654,20050,2062,6887,4469,1167,21136,1464], -[1,2343,13766], -"code-excerpt", -"path-prefix", -[2,9480,13764], -[0,13776,13779,2514,2487], -"concordance", -"curr", -"ently-unhandled", -[2,13768,13769], -"emitter", -"emittery", -"ignore-", -"by-default", -[2,13773,13774], -[0,21141,21144,13917,2571,3173], -"matcher", -[2,9477,1541], -[0,13614,1159,1389,21146,1596,1615,1177,21147,21148,2141,2708,21152,2759,26259,21153,14133,3697,3758,705,4039,4135,4389], -"resolve-cwd", -[2,4250,594], -[1,2343,13783], -[0,13785,13787,13790,2537], -"supertap", -[0,3441,21158,24987], -"temp-dir", -[0,2934,3421,1192,1177,4042,2026,1894,4342,21163,1938,5328,1895,1955,811,21165,1881,816,21161], -[3,5328,14], -[2,13788,2190], -[0,15237,1669,2382,3767,21167,1781,21168,2090], -"🦄", -[3,1540,10], -"yield", -[1,2343,13797], -"observable", -"observables", -[0,13798,13799,13800,34352], -[0,5540,1699,2609,1209,3021,21174,21175,4484], -[0,972,4870,4880,4883,11322,21179,89,3824,21180,91,6482], -[0,2144,1669,25,89,3824,582,21182,7020,21185,7020,21188,21189], -[1,2343,13803], -"webpack-log", -[0,0,13806,13807,2487], -[2,3599,1469], -"ps-node", -[0,2899,1177,2759,1317,1311,1954,1938,1958,1903,1948,1970], -[0,2145,27,21195,2325], -[1,2343,13809], -[0,13810,13813,13815,2537], -[0,1437,6473,4290], -"ieee754", -"jmespath", -[0,1175,1178,1195,1225,1268,1177,1916,2022,1192,3150,2924], -"vector", -[0,17460,2656,2924,1932], -"test-vectors", -[2,13549,13816], -"insert-module-globals", -[1,2343,13820], -[0,13821,13822,13823,2537], -[0,2822], -[0,1377,21210,1596,2759,4255,4389,4770], -[0,4745,21214,21216], -"memoizee", -"@deque/dot", -[1,2343,13844], -"colorjs.io", -"-regex", -"emoji-regex", -"abel", -"grunt-babel", -"revalidator", -"sri-toolbox", -[2,4149,1852], -"ytesize", -[2,2237,13835], -[2,6654,3733], -[2,1463,13589], -[2,1632,3679], -[3,8654,10], -"webdriverjs", -[2,13840,13841], -"browser-", -[0,13845,13851,13853,4139], -[0,2215,2859,21224], -[3,1566,14], -"ommits-parser", -[2,13846,13847], -"-no-only", -[2,1951,13849], -[0,21226,13305,3183,2899,3421,3752,21228,4255], -"Accessibility", -[0,2150,2090,6771,1585,7204,2473,3188,7148,7149,6899,1781,3917,6033,2473,6865,7293,4453,7147,2585,6811,7004,1862], -[1,2343,13855], -[0,13856,13858,13861,2537], -[0,3181], -"proxy-", -[0,4856,4864,6503,4874,1429,2151,2759,2899,3421,1894,3714,21237,4474,91], -"from-env", -[2,13857,13859], -[0,2150,6771], -"multi-", -[1,2343,13877], -"entry", -"multi-entry", -[2,812,13865], -[2,12621,3733], -"dev-null", -"data-node", -[2,1669,13869], -[2,11941,12942], -[3,6387,14], -[2,13872,6662], -[2,1160,11052], -[2,4049,13874], -[3,4048,16], -[0,13883,13884,13885,2537], -"ndle-size", -[2,13876,13878], -[2,6528,3069], -[3,13134,15], -[2,13881,1149], -[0,21243,2151,3261,21246], -[0,4864,6507,2899,1863,4085,1362,4706,3760], -[0,1862,2150,2090,6771], -[1,2343,13887], -[0,0,13893,13900,2523], -[3,1391,11], -[2,13888,3171], -"edm-parser", -[2,2842,13890], -"md5.js", -[0,640], -"batchflow", -"factor-bundle", -"ink-docstrap", -"karma-e", -"nv-preprocessor", -[2,13897,13898], -[0,2154,16718], -"storage", -[1,2343,13903], -[0,13904,13905,2514,2443], -[0,3188,4039,2713,2215], -[0,4384,4255], -[1,2343,13907], -[0,13908,0,13910,4139], -[0,4740,3923], -"output-", -[0,2156,5576,16410], -[1,2343,13915], -"file-sync", -[2,13909,13912], -"v8flags", -[0,0,13916,13918,2523], -[0,13614,1158,1159,1177,3421,4103,4389], -"es-set-tostringtag", -[0,3046,1213,1925,1460,5746,7298], -[1,2343,13926], -"babel-co", -"de-frame", -[2,13920,13921], -[3,1184,12], -[2,13923,591], -"babel-m", -[0,0,13929,13931,2537], -"essages", -[2,13925,13927], -[0,48,53,68,78,5712,87,92,192,5467,21276,5583,816,6373,21279,21280,21281,21285,19464,21287,21288,1195,1177,1895,2675,21290,1894,4005,4042,4057,4257,4072,91,1984,19469,21294], -[2,1185,5190], -[0,2163,7193,21296], -[1,2343,13933], -[0,0,13934,13935,2443], -[0,19344,5366,1009,1011,842,1317,1177,1903,1915,1938,1953,1958,2675,4493], -[0,17218,5122,27,36,21302,5995,5130], -[2,1884,1172], -[1,2343,13938], -[0,0,0,13939,4139], -[0,2163,7193,7131,21307,21309], -[1,2343,13941], -[0,13943,13944,13945,2487], -"trim-right", -[0,21315], -[0,1149,2228,21317,2240,2273,2277,4039,1899], -[0,2282,2070], -[1,2343,13947], -[0,0,13949,2514,2487], -"try-resolve", -[0,91,4874], -[1,2343,13951], -[0,13952,13953,13954,2523], -[0,1437,4761,4716,4756], -[0,2228,2239,21329,21328,3006,4547,2273,2290], -[0,4756,8632,5130,4627,6400,1896,1098], -[1,2343,13956], -[0,13957,13958,13959,2523], -[0,1437,4207,4761,1209,16442,4756,4547], -[0,3261,1797,1429,1370,2899,4193,1177,3188,1362,2759,1525,4196,1615,2820,1431,3938,3202], -[0,4756,1098,2323,21337,21339,1367,1103,21340,2278,695,5194,1172,21341,91,1509,2437,5357,2924,1177], -[1,2343,13962], -[2,1262,1192], -[0,13963,13964,13965,2537], -[0,2212,2070,4761,1541,1209,1474,21350,21348,4756], -[0,1797,1177,2765,2151,21329,21328,1938,21352], -[0,4756,8632,4967,1896,2171,4627,13017,21354], -[1,2343,13967], -[0,0,13968,13969,2523], -[0,4874,1177,1895,1955,1958,1894,4384,91], -[0,4446,21360,6925], -[3,13725,15], -[1,2343,13972], -[0,0,13973,13974,2399], -[0,5536,4874,16480,26265,1894,4172,21365,91,1984], -[0,5701,1179,7253,21367,21369,6564,3053,6695], -[1,2343,13976], -[0,0,13977,2514,2443], -[0,48,53,87,92,6061,6063,16608,5087,4874,1009,1011,21377,21380,1178,1193,1195,19254,1177,1895,1915,1922,1938,1955,1959,1961,1966,1982,2675,21385,1192,2990,1894,4039,4131,21388,91,2924,4677], -[1,2343,13979], -[0,0,13986,2514,2537], -[3,1235,24], -"xport-extensions", -[2,13980,13981], -[2,1262,3696], -[3,1566,13], -[2,13984,2289], -[0,21393,21395,21396,21397,3421], -".exports", -[2,1237,13987], -[1,2343,13990], -[0,0,8002,13991,2523], -[0,1709,2100,139,3560,6058,21402,21404,1544,3445,11995,21405,20529,3778,21406,21407], -[1,2343,13993], -[0,0,13999,14001,2537], -"-js-shims", -[2,1259,13994], -"place-", -[2,13996,3427], -[2,1252,13997], -[0,4874,1702,1906], -"dynamic", -[0,21413,2184,20061,5614,1398,3101,3729,3917], -[1,2343,14003], -[0,14004,14005,14006,34352], -[0,21418,2753], -[0,4874,1166,21420,21423,20925,4481,1906], -[0,3038,3101,1862,5614,1871,2585,1398,3917,2382,6613,7017,7255,3048,5614], -[1,2343,14008], -[0,14009,0,14010,2537], -[0,21430], -[0,2191,3038,91,2190,21432], -"@umijs/test", -[2,1262,12445], -[3,3909,10], -[2,14013,5403], -[1,2343,14016], -[0,0,14017,14018,2523], -[0,4874,1009,1011,17930,1177,21439,1895,1955,17931,21442,1894,17934,4508,91,17936], -[0,21444,21447,21450,21452,21455,21456,2192,21457,21458,16718,21459,202,5490,553,91], -[1,2343,14026], -"nyc-config", -[2,3614,14020], -[2,8696,14021], -"instrument", -[2,11936,14023], -[2,1382,6521], -[0,14028,14030,14031,4139], -"pmock", -[0,1149,2205,2151,1525,18145,2102,21466], -[2,14023,5218], -[0,4449,1429,2899,4193,1177,21468,21470], -[0,3358,2193,2195], -[1,2343,14033], -[0,14036,14043,14046,2523], -[2,9477,1213], -[2,4013,14034], -[0,7076,10420,21476,21477,3505,16142], -"-bind", -[2,3046,14037], -[2,69,14038], -[3,8232,20], -[2,14040,6859], -[2,5316,7162], -[0,1178,1429,21480,1503,1527,1652,1177,21482,1922,1938,1951,2899,3203,3421,3752,4131,4193,4196,21486,4585], -"ompat", -"lodash-compat", -[0,3358,582,1564], -"cherry-pick", -[1,2343,14049], -[0,0,14050,14051,4139], -[0,13693,87,21495,21498,21499,8850,816,6373,10615,10895,1429,1177,1903,1938,1954,1958,2297,2878,2881,2886,2895,2900,2904,2910,2912,2918,18260,2899,4042,6390,2278,4193,4196], -[0,2195,10039,4967,4627], -[2,13920,686], -[2,2103,14052], -[1,2343,14055], -[0,14058,14060,2514,2537], -"resolver", -"rename", -[0,3181,21505,21507], -"mapping", -[0,4874,668,3144,3188,1894,4039,4384,4483,4508], -[1,2343,14062], -[0,14063,14066,14067,34352], -[0,2743], -"ester", -[2,12187,14064], -[0,1177,1889,2022,2899,3421], -[0,2070,5933,4301,3403,21519,7204,1299,21520], -[1,2343,14069], -[0,14070,9264,2514,4139], -[0,21526,3729], -[1,2343,14072], -[0,0,14073,14074,2537], -[0,22839,1166,1448,1939,2182,26260,17269,3401,3471,3758,4167,4481,4507,1906], -[0,2203,2202,7014,6436,6437,2272,1177,6640], -[1,2343,14081], -"remap-", -[2,14076,1223], -[2,1185,14077], -[3,13663,26], -[2,14079,5746], -[0,14082,14083,14084,4139], -[0,20033,2071,2687,17450,4207,20789], -[0,4874,1166,1317,21539,4400,4481,1906], -[0,12101,4552,17455,18132,1586,17462,7131,2100,21541,17453,2150,2070,21543,21544,17461,3529,13777,3181,3250,15294,18104,13017,11601,100,614,6435,21520,21545,1862,16774,3358], -[3,1184,14], -[2,14085,5789], -[2,1218,1229], -[1,2343,14089], -[0,14090,14091,14094,2443], -[0,1676,1615,21552,21550], -[0,1149], -[3,1217,21], -[2,14092,5610], -[0,11812,21555,158,21556,2692,2206,6270,17539,3797], -[1,2343,14096], -[0,14097,14098,14100,2537], -[0,3310,14231,4484], -[0,4874,5542,1009,1011,1177,21564,1938,1953,1958,1894,4508,91], -"chunk-data", -[0,21566,21567,21568,15473,17623,21571,5194,10906,2207,21572,21573,14692,21574,6355,21576,21577,21578,21579,21580,21581,21582,21583,5995,21584,21585,21586,21587], -[1,2343,14102], -[0,14103,14105,14108,34352], -[0,16485,21668], -"strict-", -[0,107,4874,1009,1011,21594,1177,1881,1883,1938,21597,20917,3297,1531,91,15822,1984], -"strict-mode", -[2,1226,14106], -[0,21600,21603,1885,21604,21599,21605,21606,5592,2211,21607,21608,21611], -[2,1218,77], -[1,2343,14111], -[0,14112,14113,14114,4139], -[0,20917,21616], -[0,21619,6503,21620,21621,4874,21623,15600,9725,11305,6513,6520,21625,21626,1414,1503,1610,2020,20914,2321,21627,1776,29342,29343,21630,2899,15221,3275,3297,3416,3445,3479,6332,1894,3752,4039,4153,4193,4449,91,4748], -[0,1885,5592,21632,5576,21633], -[1,2343,14116], -[0,14117,14118,14119,2523], -[0,21642,21651,21645,21647,21650,21649,16511,2928,21641,21638,21639,4507], -[0,21662,13789,826,5366,6494,4874,21654,14731,16936,6513,6515,1166,1170,1317,1362,1364,1414,14099,21656,21663,1701,1702,2024,2026,2139,13870,2188,3297,3310,3377,3477,21653,3532,29457,3923,705,4193,21657,4400,21659,4454,4494,91,1906], -[0,27,2671,13333,3038,2212,1002,12831,705,2869,7085,7289,1612,11995,11996,16518,21665,27778,27408,21666,21667,1170,4339,3310,21668], -[1,2343,14124], -"-react-jsx", -[2,9381,14121], -[2,1185,14122], -[0,0,14125,14126,2537], -[0,2323,4207,4042,1637,3471,3561,21689,21681,3416,3758,4320,53,1165,3678,2650,21688,87,21684,21679,5583,10615,6373,16912], -[0,21691,4967,9204,1283], -[1,2343,14134], -[2,88,2124], -[3,3872,10], -[2,14129,553], -[2,5237,14130], -[2,1199,14131], -"pkgfiles", -[0,0,14135,14136,2537], -[0,2702,3188,4039,4384], -[0,2150,1237,21697,1153,21699,3768,1851,2656,6737,21700,21701,21702,21703,21704], -"minification", -[1,2343,14140], -"propTypes", -[0,0,0,14141,4139], -[0,2220,21715], -[1,2343,14143], -[0,2513,14146,2514,2523], -[3,3957,12], -[2,14144,353], -[0,4856,6503,4874,1429,2220,2899,4039,4042,4071,4232,21721,91], -[1,2343,14148], -[0,14149,0,2514,34352], -[0,5528,4484], -[1,2343,14151], -[0,14152,14153,14154,4139], -[0,2822,20273,21731,21732], -[0,21734,20269,1509,21735,2053,2149,2398,3183,2899,4452,4597,6033], -[0,21738,1507,1506,2382,1739,1745,7682,21740,4965,2149,9339,8623,1179,2193,12981,5284,5352,676,6671,1783,9338,1644,57,7119,13755,2947,1283,4452,4745,7651], -[1,2343,14156], -[0,14165,14171,2514,34352], -"numer", -"ic-separator", -[2,14157,14158], -[2,69,14159], -[3,5835,33], -"mutators", -[2,14161,14162], -[3,10720,33], -[0,14393,21746,3025,10420,3263,3747], -"atch-binding", -[2,14164,14166], -[3,14160,25], -"llish-coalescing-operator", -[2,14168,14169], -[0,1364,21748,2026,21749,2759,1209,3183,3313,21752], -[1,2343,14173], -[0,14174,14175,14176,2443], -[0,2021,2070,3368,2822,2240,3181,1672,2685,2107,2015,21761,21763,21759], -[0,21765,4431,21770,2291,21768,2283,2277], -[0,5957,1149,200,3178,2280,6147,1209,2275,1973,2907,2276,36,21772,8632,7048,2763,4990], -[3,9676,14], -"heck-", -"es2015-", -"constant", -"constants", -[2,14179,14181], -[2,14178,14182], -[2,14177,14183], -"function-", -"comma", -"commas", -[2,14185,14187], -[2,10038,14188], -[2,7174,14189], -[2,1218,14190], -[2,1236,5742], -[3,1235,40], -"ed-functions", -[2,14193,14194], -[2,1236,5256], -[3,14196,31], -[2,14197,5763], -[2,1236,5765], -[3,14199,31], -[2,14200,5770], -[1,2343,14225], -"for-of", -[2,1236,14203], -[3,14204,31], -[2,14205,5789], -[2,1236,5796], -[3,1240,38], -[2,14208,5808], -[2,14208,4376], -[2,14208,5811], -[2,3425,4340], -[2,1236,14212], -[2,1236,5639], -[2,1236,5845], -[3,14215,31], -[2,14216,5849], -[2,14216,5851], -[3,1244,31], -[2,14219,5855], -[2,5857,1108], -[2,1236,14221], -[3,13982,27], -[2,14223,5780], -[0,14228,14229,14230,2523], -"to-chromium", -[2,1807,14226], -[0,2633], -[0,2228,2240,2263,2247,2253,2273,2277,2281,2320,2258], -[0,21779,1098,1283,5354,5614], -"gfsl", -[1,2343,14233], -[0,0,14234,14235,2537], -[0,2228,2307,2239,2316,1429], -[0,21779], -[1,2343,14244], -[2,1262,2124], -[2,1249,5878], -"-source", -[2,1248,14239], -[3,14240,34], -"elf", -[2,14241,14242], -[0,14245,14246,14247,34352], -[0,1149,1389,21791,2070,1209,814,4650], -[0,2228,2240,2247,2273,2899,4193], -[0,21779,1389,2228], -[3,5700,31], -[2,14248,3164], -[1,2343,14251], -[0,14252,14253,14235,2487], -[0,4135], -[0,2228,2234,2247,2273,2277,2285,2307,3006], -[3,1233,24], -"o-expressions", -[2,14254,14255], -[2,1226,14038], -[1,2343,14259], -[0,14260,14261,2514,2537], -[0,3368,21804,13914,2727,21759], -[0,2228,2273], -[3,1230,29], -"or-call", -[2,13565,14263], -[2,14262,14264], -[1,2343,14267], -[0,14268,14269,14271,2523], -[0,1149,1144,21810,2709], -[0,1906,2228,3363,2240,1615,3505,21814,4351,2316,2247,2283], -[3,1233,33], -[0,21779,13792,12804,21820,6707,6887,3514,6681,2062,21821], -[1,2343,14273], -[0,14274,14277,14278,2399], -[0,1149,4039], -[3,1225,29], -[2,14275,5747], -[0,2228,21468,2273,2271,2277], -[0,21779,4050,4051,7293,6865,1700,6790,17459,4039], -[1,2343,14280], -[0,14281,14283,14284,4139], -[0,1149,21834,1664,21420,4449,4707], -"home-or-tmp", -[0,2228,2240,2247,2271,2273,2277,2314], -[0,21779,21837,4329,2278,1623,7234,7121,590], -[1,2343,14286], -[0,14287,14288,14235,2537], -[0,1437,4227], -[0,2228,2247,2273,2271,2277], -[1,2343,14290], -[0,14291,14292,14293,2537], -[0,3445,1149,3237,1544,13399,4150,4151,16511,21847], -[0,2228,2273,2271,2277], -[0,21779,36,1544,27], -[1,2343,14295], -[0,14296,14297,14235,2537], -[0,1437,21855], -[0,2228,2240,2247,2271,2273,2277], -[1,2343,14299], -[0,14300,14302,14303,2523], -[0,1437,21861,1209,4300], -"esutils", -[0,2228,2247,2271,2273,2277], -[0,21779,1623,671,21861], -[1,2343,14305], -[0,14306,14302,14312,4139], -[0,1437,1462,21867], -"nv-inline", -[2,4690,14307], -[2,1226,14308], -"zipobject", -[2,3024,14310], -[0,21779,21869,1623,590,592,5376,3178,15215], -[1,2343,14314], -[0,14315,14288,14321,2537], -[0,1437,3714,2633], -[3,14257,24], -[2,9428,5238], -[2,14316,14317], -"9.0.0", -[2,5857,14319], -[0,21779,1936,2262,3178,15215,6707], -[1,2343,14323], -[0,14324,14325,14326,4139], -[0,1437,2267,3478,3545,3714,18045,18047,18050,18051], -[0,1166,1701,2228,1906], -[0,21779,15215,20639,158,11807,21881,20637,3178,18048,8221], -[1,2343,14328], -[0,14329,14261,2514,2523], -[0,17523], -[1,2343,14331], -[0,14332,14335,14235,4139], -[0,1437,21890,2272], -"@purtuga/esm-webpack-plugin", -[2,4807,1155], -[0,2228,2271,2277], -"browserstack", -[2,13283,14336], -[2,13283,3199], -"otpauth", -[1,2343,14341], -[0,14342,14345,14235,2487], -[0,695,1149,1437,1209], -"-as-a-service", -[2,5995,14343], -[0,2228,2247,2273,21898,2271,2277], -[1,2343,14347], -[0,14348,14349,14350,2487], -[0,21903], -[0,2228,2247,2271,2273,4384], -[0,21779,2276,1973,8791], -[1,2343,14353], -[2,2235,1283], -[0,14358,14302,14359,4139], -"codec", -"decoder", -"encoder", -"base64", -[0,1149,1437,1615,1664,4707], -[0,21779,4329,2278,1623,7234,7121,590], -[1,2343,14361], -[0,14362,14288,14235,2537], -[0,1437,21867,21915,4535], -[1,2343,14364], -[0,14365,14366,14367,2487], -[0,2164,1149,1209,4438], -[0,2228,2240,2293,4547,2273,2271,2277], -[0,21779,2282,3000], -[1,2343,14369], -[0,14370,14371,14376,2537], -[0,1437,1537,1566,3545,3760], -[0,2228,2239,2240,2247,2258,2273,2277,2290,21929,21930,2293,2307,3006], -"basic", -"orization", -[2,1303,14373], -"basicauth", -[0,2228,21779,1566,16094,13729,3073], -[1,2343,14378], -[0,14379,14381,14382,2399], -[0,1437,13985,3545], -[2,6915,5697], -[0,2228,2239,2240,2247,2273,2277,21929,21942,21930,2293,2307,3006], -[0,2228,21779,13985,2195,21944,3979,21945,1566,16094,13729,3073], -[1,2343,14384], -[0,14385,14389,14390,2523], -[0,1437,1177], -"tructure", -"ministructure", -"orange sms", -[0,442,2228,2240,2314], -[0,21779,1177,671,2649,11937], -[1,2343,14392], -[0,14394,14395,14396,2537], -"@mapbox/node-pre-gyp", -[0,21890,2292,1209,21956], -[0,2228,2273,2277,3006,4436], -[0,21779,2292,19271,16790], -[1,2343,14398], -[0,14399,14400,14401,4139], -[0,1615,1776], -[0,2228,2247,2277,2291,13896,3006], -[0,21779,2228,1745,2295,1776,18011], -[1,2343,14403], -[0,6203,14409,14410,2443], -"utfx", -"testjs", -"metascript", -"closure", -[2,14407,4643], -[0,192,21970,5467,6061,6063,16608,1177,1903,1938,1954,1958,1970,2025,2228,2239,2283,2285,2290,2291,2307,2675,2297,2881,2895,2900,3006,2899,4131], -[0,21779,2297,2228,1973,2275,8791,21972], -[1,2343,14412], -[0,14414,14415,14420,2399], -"pomelo-logger", -[0,21890,3188], -[0,1429,1506,2228,2240,21980,2247,2258,2273,21929,21982,21930,21984,2899,4039], -"di", -"IoC", -"AOP", -"injection", -[0,21779,2899,1973], -"consistent", -"hot reload", -[2,6399,5995], -[1,2343,14434], -"able codes", -[2,6578,14425], -[3,7191,11], -[2,14427,14419], -"hronous script loading", -[2,1149,14429], -"magic", -", self-described javaScript objects", -[2,14431,14432], -[0,14274,14435,14436,2399], -[0,1429,2228,21991,2240,2247,2273,2283,3203,4449,4727], -[0,1586,2228,21779,2301], -[1,2343,14439], -"beautify", -[0,14440,14441,14442,2443], -[0,4135,6472,4707], -[0,1429,2240,2273,2283,2300,22000,22002,3006,2899,3752,4436], -[0,21779,9044,22005,15844,22008,22009,6667,22011,1851,4649,13728], -"art-near-room-catch", -"blanket-line", -"born-greatly-explain3", -"bring-water-silence", -"brush-bigger-afternoon0", -"e-meet-war", -[2,11308,14448], -[2,6922,14449], -"compare-", -"breeze-mad2", -[2,14451,14452], -"did-", -"strai", -"ght-sister-sail", -[2,14455,14456], -[2,14454,14457], -"excitement-tonight-dead", -"gain-pleasant-prepare", -"industrial-public-immediately-until", -"is-str", -"aight-web3-attack", -[2,14462,14463], -"known-", -"wet-thirty-gave", -[2,14465,14466], -"-private-thee6", -[2,13682,14468], -[1,2343,14493], -"mainly-cent", -"ain-quarter-sit8", -[2,2944,14472], -"mouse-bat-web3-present", -"need", -"s-supper-anything", -[2,14475,14476], -"percent-impossible-score", -"rocket-location-calm-valley", -"seldom-fire-web3-running", -"shad", -"e-swim-shells1", -[2,14481,14482], -"spider-melted-chemical", -"stre", -"tch-onto-driver7", -[2,14485,14486], -"dream-supply5", -[2,11072,14488], -"-invented-girl-jungle", -[2,4990,14490], -"we-hunt-process", -[0,0,14494,2514,2399], -[0,2228,2239], -"automobile7", -[2,4654,14495], -"whether-dangerous", -[1,2343,14499], -[0,0,14500,14501,2523], -[0,2228,2240,2247,2277,2278,1906], -[0,21779,1623,2278,4329,590,7234,4358,22022], -"ansicolors", -"global-", -[2,14503,6666], -[2,2103,14504], -[2,2687,11601], -[3,5510,9], -[2,14507,3101], -"script-", -"inject", -"injector", -[2,14509,14511], -[1,2343,14516], -"dotpathlookup", -"jsl", -[0,14519,14520,14521,2537], -"httpserver", -[2,2869,14517], -[0,1512,1209,3760,22027,22031,12826], -[0,2228,2256,2273,2283,2293,22035,3003,1698,20001], -[0,21779,2228,12826,1973,2765,2899,2907,22037], -[1,2343,14523], -[0,14524,14525,14526,2443], -[0,1437,3404,4294], -[0,2228,2240,1906], -[0,21779,4166,1523,8429,2978,1614,1451,3729,200], -"docdown", -[1,2343,14530], -"qunit-extras", -[0,7923,14531,14420,34352], -[0,2228,2273,2899], -[1,2343,14533], -[0,14534,14535,14536,2443], -[0,1149,22054,22057,4545,22058], -[0,1177,22062,22064,22066,22068,22071,22072,2228,2240,2302,2899,4039,4165], -[0,2228,21779,22074,158,22075,1623,22057,16697], -[1,2343,14538], -[0,14539,14540,14541,2537], -[0,1437,1676,1209,3505], -[0,2228,3188,4039,2240,2293,22081,2273], -[0,21779,2319,8635,1936,1623,6707], -[1,2343,14543], -[0,14549,14551,14565,2523], -"@beyond-js/specifier-parser", -[3,14544,11], -[2,14545,2150], -"bee", -[2,14545,14547], -[0,442,1009,1011,1437,1177,1895,1953,1955,2020,2720,2856,3157,3275,1894,4523,4728], -"tml", -[0,22088,21122,5601,4864,4866,22089,6503,21621,4874,6513,6520,22092,1414,1615,2151,22093,21627,2899,4193,4449,91], -"ansi-to-html", -"concat-", -"maps", -"-sourcemaps", -[2,5056,14555], -[2,14553,14556], -"json-format", -[3,6477,9], -"ackage-", -"ackage-path", -[2,14559,14561], -"uimport", -[2,14503,5260], -[0,91,9654,4525,1885], -"universal", -" javascript", -[2,14566,14567], -"universal ", -[2,14569,91], -[3,2758,10], -[2,14571,14567], -[3,14572,11], -[2,14573,91], -"sigle page", -"spa", -"modul", -"ar development", -[2,14577,14578], -[3,11615,13], -" frontend", -[2,3166,14581], -"micros", -[2,14583,8920], -"micro ", -"services", -[2,14585,14586], -"hot ", -" replacement", -[2,1237,14589], -[2,14588,14590], -"ssr", -" side rendering", -[2,36,14593], -" packager", -[2,91,14595], -"JAMStack", -[1,2343,14599], -[0,0,14610,14611,2523], -"real time", -[2,7519,5130], -"ssr react framework", -[2,8589,5130], -"ssr ", -[2,14604,14603], -" framework", -[2,3709,14606], -[2,14604,14607], -"websockets", -[0,22099,8719,842,16145,22100,5087,4874,22102,9240,1177,1192,3313,1894,4039,4342,91], -[0,2322,5122,5130,6710,27,5592,5995], -[1,2343,14613], -[0,14618,14623,14624,2487], -"check-", -"check-types", -"hoopy", -"tryer", -[0,22110,21681,22109,4600], -"please-", -"release-me", -[2,14619,14620], -"spooks", -[0,1177,1889,1954,2022,3188,2899,3421,4039], -[0,6147,3101,623,7048,4990,14932,13441,22114,12804,22115], -[1,2343,14627], -"streamify", -[0,14630,14631,14632,2537], -"serialise", -[3,14430,12], -[0,2367,22122,2409,2835,3067,3102,19984,4431], -[0,4597], -[0,18444,2323,1098,12074,6113,22126,22127], -[1,2343,14645], -"arbitrary", -"precision", -"arithmetic", -"big", -"decimal", -"float", -"biginteger", -"bigdecimal", -[3,1325,9], -"bigint", -"bignum", -[0,14646,14647,14648,2537], -[0,18473,692,2012,2390,2494,22133,2543,3188,2072,3730,18528,4039,4135,1241,4597,4600], -[0,2348,2899], -[0,18444,16179,4166,22137,1804,2195], -"uri-", -[1,2343,14653], -"uri-to-path", -[2,2093,14651], -[0,14656,14657,14658,2537], -"gyp", -"c++", -[0,1165,2476,3561,4606], -[0,1166,2510,3477,4597,1906], -[0,18444,1165,3561,1623,3665,22145,5376,4358,22147], -[1,2343,14661], -"@noble/hashes", -[0,14662,14663,14664,2537], -[0,7709,1104,1443,2061,22153,3173,3544,4597], -[0,1429,22157,1177,2323,2494,2899,1894], -[0,18444,7200,6949,20001], -[1,2343,14668], -"@antv/", -[2,14666,4627], -[0,14670,0,14677,2537], -"@antv/g2", -[0,22167,22168,2012,3171,3730,3768,22170,4597,4600,4747], -"@antv/g2plot", -"@antv/util", -"@juggle/resize-observer", -"d3-color", -"conciler", -[2,3877,14675], -[0,18444,13531,20614,13901], -"data-", -"data-set", -[2,14666,14679], -[3,87,15], -[2,14681,1266], -"backgrounds", -[2,10818,14683], -[3,10827,19], -"fo", -[2,14685,14686], -"knobs", -[2,10818,14688], -"options", -[2,10818,14690], -"fabric", -"@umijs/fabric", -"@welldone-software/why-did-you-render", -"aphrodite", -[3,13080,20], -[2,14696,3897], -[2,14696,8221], -"bx-jest-electron", -[3,4325,12], -[2,6996,4408], -[2,14700,14701], -[1,2343,14704], -[0,14716,14722,14724,2487], -"-deploy", -[2,7204,14705], -[2,10617,14706], -[2,5651,2091], -"moment-", -"jalaali", -[2,14709,14710], -"react-wi", -"th-styles-interface-aphrodite", -[2,14712,14713], -[3,14714,28], -[0,4431,4002,3544,4606], -"mpiler", -"css-compiler", -[2,14715,14718], -"-diff", -[2,8745,14720], -[0,1906,2899,4597,3697,53,2510,5761,5756,5743], -"g2", -[0,18444,1172,5198,6778,7056,7192,22179,22180,5341,5061,22181,5284,4643], -[1,2343,14726], -[0,14727,14729,14732,2523], -[0,2476], -[3,4808,10], -[0,1166,2323,3477,4597,1906], -"dable-stream", -[2,14728,14730], -[0,18444,4295,1412,4327,3126,4577,22188,22189,22190], -[1,2343,14734], -[0,14735,14737,14740,2537], -[0,1104,1370,2061,2720,3544,4431,4597,4647], -"bun-types", -[0,1429,2012,22198,2436,2463,2272,2899,4039,4193,4196,4278], -"falafel", -"fore", -[0,18444,1370], -"foreach", -[1,2343,14746], -"coffee-", -[2,14743,89], -"save", -[0,14749,14750,14751,2523], -"save-license", -[2,4534,14747], -[0,1389,2541,1391,3923,4431], -[0,2899,1429,15052], -[0,18444,17461,1389], -[1,2343,14753], -[0,14754,14758,14760,2537], -[0,4431], -"curses", -"tui", -"tput", -[0,2899,4597], -"terminfo", -[0,2323,18444], -"termcap", -[1,2343,14763], -[0,14764,14631,14765,2399], -[0,22217,3544,22218,4135,4431], -[0,2323,15208,4135,18444,15525,22220,22222,22223], -[1,2343,14767], -[0,14771,0,14772,4139], -"ansi-term", -"drawille-canvas-blessed-contrib", -"map-canvas", -[0,97,22229,1593,22230,3544,4431,4597], -[0,18444,2323,2325], -"-terminal", -[2,3127,14773], -[2,3149,7046], -"picture-tuber", -"sparkline", -[1,2343,14779], -[0,14782,14786,14787,2537], -"term-canvas", -"x256", -[0,4431,3032], -"@types/bl", -"essed", -[2,14783,14784], -[0,2899,4597,4170], -[0,18444], -[1,2343,14789], -[0,14790,14791,14792,34352], -[0,22246,2476,4453], -[0,1166,1437,1700,2089,2188,2323,4597,1906], -[0,18444,2090,1586,22249,2301,22251,22253,15795,6901,22254,4262,2325,16077,22255], -[1,2343,14794], -[0,14795,7878,14796,2487], -[0,2061,3544,4039,4431,4597], -[0,18444,4050,7293,6865], -[1,2343,14798], -[0,14799,14800,14801,2487], -[0,1462,3544,4431,4606], -[0,1429,21480,1596,2026,2061,2323,2367,2494,2504,2510,2899,3421,4597], -[0,1623,4050,3178,2280,1462,2458,2459,2361,18444,17461], -[1,2343,14803], -[0,14804,14805,14787,2399], -[0,1509,3544,4002,4431,4606], -[0,2510,2899,4170,4597], -[1,2343,14807], -[0,14808,14809,14810,4139], -[0,2541,4431,4707], -[0,1596,1700,2323,2436,2444,2447,2455,2463,2685,22280,3102,2899,4170], -[0,2323,18444,21837,4329,2278,1623,7234,7121,590], -[1,2343,14812], -[0,14813,14814,14787,2537], -[0,4597,4431,14557], -[0,2323,2899,4170,2759,16584,4278,2510,3202], -[1,2343,14816], -[0,14817,14818,14819,2537], -[0,3032,22291,3544,22292,22293,22296,4431,4597], -[0,1429,2899], -[0,18444,5614,1623,1204,1698,134], -[1,2343,14821], -[0,14822,14818,14823,34352], -[0,4431,2541,2720,1687], -[0,18444,8635,22303,22304,8622,8620,22306], -"loop", -[1,2343,14826], -[0,14827,14828,14831,2537], -[0,710,1544,4438,2061,3102,1104,4150,4151,21847], -[0,2323,2899,4342,2515,1506], -"baconjs", -"kefir", -[0,17461,1544,3000,22313,36], -[3,3736,10], -[3,3736,14], -"deferred", -"deferreds", -"future", -" control", -"flow control", -"dsl", -[2,8553,6072], -[1,2343,14842], -[0,14843,14844,14845,2537], -[0,4431,3544], -[0,2323,1192,1894,21482], -[0,18444,1585,2323], -"BN", -"Big number", -"BigNum", -"Modulo", -"Montgomery", -[1,2343,14852], -[0,14853,14854,14857,2537], -[0,1104,22324,2061,3544,4431], -[0,2272,2899,4597], -"unpipe", -"destr", -[0,18444,1623,22324,671,9654,7121], -"destroy", -[1,2343,14860], -[0,14861,14862,14863,2537], -[0,4597,21861,22331,4431,2061,3544], -[0,3421,2899,4193,1177,4039,4170,1596,22333,22334,1958,1903,1970,1900], -[0,21861,18444], -[2,1601,1851], -[1,2343,14866], -[0,14867,14870,14875,2537], -[0,1637,16136,3544,3427,4606], -"-jsdoc-theme", -[2,1365,14868], -[0,4389,4597,4387,2510], -"postgre", -"sql", -"postgresql", -"datamapper", -[0,1637,3178,14137,16918,16919,1623,18444,3561], -[1,2343,14878], -"active record", -[0,14879,14880,14881,2537], -[0,16858,3544,4606], -[0,4389,4597,4387], -[0,18444,3178,1623], -[1,2343,14883], -[0,14884,14885,14886,2523], -[0,3544,4431,20992], -[0,2272,3760,4170,4597], -[0,18444,2382,1781,2323], -[1,2343,14888], -[0,14889,14890,14891,34352], -[0,1177,2061,3544], -[0,2323,2899,4597,4170,2759,1178,22360,22363], -[0,18444,1177,2323,2656,22365,4354,4225,1501,4525,676,5284,5957,671,1932], -"mincer", -[1,2343,14895], -"eyeglass-module", -[0,14896,14897,14898,4139], -[0,2856,4597,2051,22372,4431,3544,1537,22371], -[0,2323,2899,4170,2759,1783], -[0,18444,2090,2385,4068,2323,1932], -[1,2343,14900], -[0,14901,14902,14905,2487], -[0,4207,3249,3544,22379,22382], -[0,1906,1166,2323,4597,3477], -"align", -"ansi-align", -[0,18444,7131,2687,2090,1586,3529,3181,2070,21543,4597], -[1,2343,14909], -"boxes", -"border", -[0,14910,14631,14911,2523], -[0,3544,4431], -[0,18444,19991,4237,20050,22390,22392,3053,2323], -[1,2343,14913], -[0,14843,14914,14915,2537], -[0,2323,2899,4597,4170,3697,1879], -[0,18444,2323,3033,10903,3403], -[1,2343,14917], -[0,14918,7923,14919,2537], -[0,22402,4001,21035,4431], -[0,14438,1671,4525,2323,18444,1783,5980,1932,22405,3721,4001], -[1,2343,14921], -[0,14925,14926,14928,4139], -"-stream", -"quote-stream", -[2,5706,1237], -[0,1437,2541,22410,22412,3427,7029,3545,4431], -[0,22414,3505], -[2,13888,353], -[0,18444,2156,22410,2090,1586,16410,20500,36,5576,9229,20997,20998], -[1,2343,14931], -"readFileSync", -[0,14933,14934,14935,2537], -"asset", -[0,22420,4039,4600,2541,22422,3923], -[0,2899,4597,1177,2759,22425,3349,2215,3074,22427,22428], -[0,3358,6645,1528,22430,20997,20998,20001,13755,5351,2323,18444,2193,1724,2195], -[1,2343,14941], -"array-equal", -[2,1379,1932], -"fs-tree-diff", -"heimdalljs", -[0,14945,14946,14947,2523], -[2,3192,1177], -"-lerna-changelog", -[2,3980,14943], -[0,22437,2061,1209,3544,4015,22440,4597], -[0,1177,2899,3210,4039,4170], -[0,2323,3358,22443,18444,22223], -[1,2343,14949], -[0,14950,14954,14955,34352], -[0,1104,1413,2061,3544,22449,4431], -[3,1378,10], -"ixture", -[2,14951,14952], -[0,2323,2359,2390,2447,2463,2494,18426,2544,2839,2899,22451,4170], -[0,15215,18444,16518], -[1,2343,14957], -[0,14958,14960,14963,2523], -[0,2036,3544,4002,4431], -"broccoli", -[0,4597,2323,2367,22460,22463,22465,2899,22466,4170], -[3,14953,15], -[2,14961,1289], -[0,18444,2036], -"multidep", -[1,2343,14966], -[0,14971,14972,14973,2537], -"ts-docs-gen", -"plugin-p", -[2,14968,11597], -[2,4491,14969], -[0,14557,1209,3102,4431], -[0,1429,2323], -[0,10345,18444,22475], -[1,2343,14975], -[0,14976,14977,14984,2399], -[0,1496,4207,1362,4599,3427,3923], -[0,2899,4597,2759,2541,22360,1537,22481,4603], -[2,1387,4219], -[3,14978,13], -[2,14979,181], -"bs-recipes", -"dev-ip", -"easy-", -[0,18444,1936,4068], -"easy-extender", -"eazy-logger", -[1,2343,14988], -[0,14989,14991,14993,4139], -[0,4431,3544,2633], -"resp-modifier", -[0,2323,2899,4597,2398], -"bs-snippet-injector", -[0,1671,2323,18444,22489,1936,2265,14137,2632,3178], -"-changelog", -[2,8623,14994], -[1,2343,14997], -[0,14999,15002,15003,2523], -"browser sync", -[0,8949,22495,18438,22497,22502,22379,22504,22505,22500], -"live reload", -"sync", -[0,2323,1192,1177,4039,22509,8719,1894,842,16145,442,1527,22512,91,22507,8712,22511,4523,1939,1895,1955,1652,1567], -[0,18444,2323,1017,2414], -[1,2343,15005], -[0,15025,15026,15029,34352], -"browser-pack", -[2,13843,814], -"zlib", -[2,13888,15008], -"d-pa", -"th-relative", -[2,15010,15011], -[2,2325,15012], -[2,10740,1389], -[2,14181,1617], -"defined", -"deps-sort", -"domain-browser", -"duplexer2", -"htmlescape", -"https-", -[2,15021,1389], -"ed-stream-splicer", -[2,5433,15023], -[0,4431,22518,22519], -[0,2899,2272,3188,4039,4170,4600,2215,1834,22522], -"-classic", -[2,3188,15027], -[0,18444,21195,22524,22525], -"module-deps", -"os-browserify", -"-es3", -[2,3767,15032], -"read-", -"only-stream", -[2,15034,15035], -"shasum-object", -"stream-b", -[2,15038,2345], -[2,4279,27], -"_decoder", -[2,1871,15041], -"subarg", -[2,9056,1851], -"rs-browserify", -[2,6901,15045], -"tty-browserify", -"vm-browserify", -[1,2343,15061], -"unpack", -[2,13843,15050], -"coffeeify", -"has-o", -"bject-spread", -[2,15053,15054], -[2,2565,1243], -"isstream", -[3,5747,18], -[2,3094,15058], -"seq", -[0,15062,15063,15065,2443], -[0,4431,22518], -[0,2272,2899,4170], -"commonj-esque", -[0,18444,7131,3181,2385,6521,2390], -[1,2343,15067], -[0,15068,15069,14787,2537], -[0,1149,1209,22536,4431], -[0,2206,2323,2359,2463,2447,4089,2839], -"exposify", -"mothership", -"-function-calls", -[2,14057,15072], -[1,2343,15075], -[0,15078,15079,15080,2537], -"peer-range", -[2,1382,15076], -[0,1437,2476,2267,3545,3714], -[0,1166,2694,24006,4597,1906], -[0,18444,2267,158,11807,20631,20632,3178,2632,15215,18048,20637,21881,20639,8221], -[1,2343,15082], -[0,15083,15089,14787,4139], -[0,1104,2012,2070,3544,4227,4296,4597,4606], -"leases", -[2,3340,15084], -[3,12361,13], -[2,15086,1747], -[2,9787,15087], -[0,2323,2510,2899,4170,4278], -"target", -[1,2343,15092], -[0,15093,15094,15096,2537], -[0,1144,4431,2061,1104,22555,3544,22449,1874], -[0,1906,2675,2899,4597,4170,22557,2012,192,4131,22559], -"base-x", -[0,18444,14510,22561,22562,3888,4017], -"ts-standard", -[1,2343,15099], -[0,15104,15106,15108,2537], -"base58", -"bitcoin", -"crytography", -"decode", -[0,22568,3544,4431], -"decoding", -[0,1178,1596,2012,2323,2384,2463,2899,3421,4597], -"litecoin", -[0,18444,134,1623,1936,1823], -[1,2343,15110], -[0,15111,15116,15117,34352], -[0,1664,2541,22576,3479,4431,4707], -[3,9366,12], -"d-transpile", -[2,6990,15113], -[2,15112,15114], -[0,1429,2899,4257,1906], -[0,18444,1370,3378,1161], -[1,2343,15119], -[0,15120,15121,15122,34352], -[0,2759,22584,1209,3544,4431,4606], -[0,2323,2463,2510,22588,2272,2899,4039,4597], -[0,18444,4504,2759,22590], -[1,2343,15124], -[0,15129,15131,15137,2399], -"acorn-", -[3,1200,14], -[2,15125,15126], -"acorn-jsx", -[0,2541,2437,4431], -"regexpu-core", -[0,2323,4384,2447], -[2,10740,7227], -[3,5583,16], -[2,15133,4047], -"262-stream", -[2,1973,15135], -[0,2437,18444,3101,7234], -"transpil", -[2,15138,5218], -[3,5221,11], -"esnext", -[1,2343,15143], -[0,15144,15145,15146,2399], -[0,1144,2765,22602,3544,4431], -[0,2323,4597], -[0,5982,5130,18444,2765,2907,8791,4386,4384,6969,1973,5472,2275], -[1,2343,15150], -"compatible", -"uint8array", -[0,15151,15152,15153,2537], -[0,2292,3544,4431,4435], -[0,4278,17468,4597], -[0,18444,2292,5284,5286,676,1501,590,2649,671,6892,4354,16790], -[1,2343,15155], -[0,15156,15157,14787,4139], -[0,1209,3181,3544,22331,4431], -[0,2323,2272,2899,4170,4597], -[1,2343,15161], -"-build", -[2,640,15159], -[0,15162,15163,15165,2523], -[0,1699,1707,2820,3544,4431], -[0,1177,1889,2323,2899,4170,4597], -"prebuildify", -[0,18444,2323,1781], -[1,2343,15167], -[0,15168,15169,15170,2523], -[0,695,3427,3544,4002,4431,4606], -[0,2272,2899,4170,4597], -[0,18444,2323,695], -[1,2343,15172], -[0,15173,15176,15177,4139], -[0,1437,1676,4597,4438,2061,3023,3923], -"built-in", -"bundled", -[0,2899,4193], -[0,18444,3000], -[1,2343,15179], -[0,15180,15181,15183,2523], -[0,22639,814,2061,3170,2107,22640,22638], -[0,2899,4193,1177,3752,22643,1953,1954,1938,1958,1903,1970], -"flexbox", -[0,17461,2323,3209,3001,9711], -[1,2343,15185], -[0,15186,15188,2514,2399], -[0,1462,2541,3427,3923,22649,4606], -[2,5581,10659], -[0,1429,2899,4597,1177,2759,2515,22360,2510,22651,22481,22428], -[1,2343,15190], -[0,15191,15195,15196,2537], -[0,16862,4431,2541], -"@sto", -"plight/yaml", -[2,15192,15193], -[0,1429,2323,2899], -[0,18444,3178,6707,16918,15215,1936,16862], -"mergician", -[1,2343,15199], -[0,15200,14729,15202,2523], -[0,1664,2020,2476,2899,4351], -"warn-if-update-available", -[0,18444,2899,1973,5472,2275,5130,8791,6969,5982,2907,4386,4384], -[2,4869,7059], -"err", -[1,2343,15206], -[0,15207,15209,15210,2399], -[0,22667,2070,3544], -"bump", -[0,1429,2323,2899,4597,1177,3203,21470], -[0,2323,18444,2301,22254], -[1,2343,15212], -[0,15213,14631,15214,2523], -[0,22675,1698,22676,3544,4431,4606], -[0,18444,1098,12074,10650,22676], -"compress", -[1,2343,15217], -[0,15218,15219,15224,2443], -[0,1512,2323,3363], -[0,1506,2447,2463,20047,2272,4170], -"dtrace-provider", -"mv", -[3,2854,14], -[2,4099,15222], -[0,2323,3363,22684,36,22687,20120,2282,17461,18444], -"ben", -[1,2343,15228], -"log4j", -[0,15229,15230,15231,2399], -[0,1209,4431,2061,1104,3357,3544,3330], -[0,2323,2899,4597,4170,2479], -[0,18444,22005,2323,9044,16237,22695,22696,22011,22699,15844], -"streamsearch", -[1,2343,15235], -"@mscdex/eslint-config", -[0,15238,15239,15240,2537], -"uploads", -[3,3253,9], -[0,18438,1437,22706], -[0,1166,3477,91,4597,1906], -[0,2323,1932,2474,6731], -[1,2343,15242], -[0,15246,15248,14787,34352], -"lxiv", -"hrtime", -[2,3715,15244], -[0,1437,4431,2061,3544], -"webrtc", -[0,1906,2323,2899,4170,4430,2759,1596,2012,3202], -[1,2343,15250], -[0,15251,15252,15254,34352], -[0,2061,3544,3616,4606], -[0,3421,2899,4193,4597,1177,3561,3752,2510], -"converter", -[0,18444,3561,22147,1623], -[1,2343,15256], -[0,15257,15259,15263,2537], -[0,4358], -"@bcoe/v8-coverage", -[0,2899,33479,30889,4597], -"ground-child", -[2,14739,15260], -"v8-to-istanbul", -[0,22726,1509,21195,1676,22729,6639,6521,22223,18444,1936,22727,22728,2385,5284,7121], -[2,1432,8746], -[1,2343,15268], -"v8", -"profiler", -[0,15269,15270,15271,2523], -[0,2012,2720,3067], -[0,1145,1177,22735,2720,2899,3752,4603], -[0,18444,3741], -[3,5738,22], -[2,15272,2528], -[1,2343,15280], -"@types/mri", -[2,13307,2831], -[2,4049,668], -[3,207,8], -"madr", -[0,15281,15282,15283,2399], -[0,2541,3427,3909,4431,4606], -[0,2510], -[0,18444,89,1219,353,8535,1283,5354,6624,22743,22746,7234], -[1,2343,15285], -[0,15291,15293,15295,2443], -"@fake", -"r-js/faker", -[2,15286,15287], -[3,1909,17], -[2,15289,91], -[0,2012,3357,705,4431,4597], -" cache", -[0,2323,2530,2359], -"multiple", -[0,18444,21004,22753], -[1,2343,15297], -[0,0,15298,14787,2399], -[0,2323,2510,3102,2899,1894,4170,4597], -[1,2343,15302], -"es-de", -"fine", -[0,15303,15306,15311,34352], -[0,4874,18438,4748,22762,17909], -"fine-property", -[2,15300,15304], -[0,2899,4597,4170,4474,19544,91,1537], -"-apply-helpers", -[2,2183,7083], -"-length", -[2,3609,15309], -[0,18444,4068], -"gopd", -[1,2343,15314], -[0,15315,15316,15317,4139], -[0,2476,22771,22772,22774,22776,4597,22778], -[0,1166,3477,1906], -[0,18444,22781,22782,22783,3428,6707,15525,22220,2325,22784,2947,14932,22785], -"camel", -"-case", -"camel-case", -"case", -"hyphen", -"separator", -"pascalcase", -[1,2343,15327], -"pascal-case", -[0,14910,15328,15329,2537], -[0,2012,2390,2498,2899,4597], -[0,18444,22781,22783,15525,4068,14932], -[1,2343,15331], -[0,15332,15333,15334,2523], -[0,1437,1573,1615,1664,22795,1874,2061,2070,8944,22798,3505,3544,4002,4039,4597], -[0,2323,2510,22778], -[0,18444,4329,2278,1623,7234,7121,590,22801,4227,11939,12938,4070], -[1,2343,15336], -[0,15337,15338,15339,2487], -[0,3527,4294,4002,3544,3028,4606], -[0,2323,2278,2899,4597,1177,4039,21315,3561,18426,3342,1165,2482,21688,2510,1938,1881], -[0,18444,2278,2323], -"assert-", -"rejects", -[2,15340,15341], -[1,2343,15347], -"graphic", -"pixman", -"cairo", -[0,15348,0,15349,2523], -[0,1149,2541,3427,7029,4247,4431], -[0,18444,22813,2090,1586,16410,20500,36,5576,9229,20997,20998], -[1,2343,15351], -[0,15352,15353,15354,2523], -[0,1437,2061,3067,3544,4431,4484], -[0,22821,22507,5087,22823,4874,18435,1009,1011,1596,1177,1895,1939,2323,1192,1894,4468,4474,91,4597], -[0,18444,2323,4166,1523], -" sensitive", -[2,15321,15355], -[1,2343,15358], -[0,15359,15360,15363,2399], -[0,22829,1437,2061,2476,2553,3714], -[0,1166,3477,4597,1906], -"slimerjs", -"scraping", -[0,18444,2098,2090,4202,3073,22832,3430,1676,16518,21665], -[1,2343,15365], -[0,15366,15367,15368,2537], -[0,22837,22841,1082,1573,1623,22843,20949,2215,4227,21732,4431], -[0,1367,1177,1889,2022,2323,2367,2419,2450,2455,22845,2759,22481,22848,2899,3427,4039,4597], -[0,18444,2323,22850,4070], -[1,2343,15372], -"loupe", -"pathval", -[0,15375,15360,15377,2537], -"check-error", -[3,6470,15], -[0,53,2476,22857], -[2,5474,13278], -[0,18444,4301,7293,6865,4050,1676,6782,7201,3073,6807,676,5284,5286,6892,2003], -[1,2343,15379], -[0,15380,14805,15381,2537], -[0,22863,3023,3544,4002,4333,4431,4606], -[0,2323,4333,1623,7121,18444,22223], -[1,2343,15383], -[0,15384,15386,15387,2537], -[0,3544,4360], -"chai-plugin", -[0,2070,2323,22871,2899,22872,4597,1906], -[0,18444,1017,45,8221,18048,22074,22075,2873,1179,1623,2278,695,4333,5376,134,1936,13814,22874,22875,3257], -[1,2343,15389], -[0,15390,15391,15392,2523], -[0,3028,3544,4361], -[0,48,53,87,94,1166,1596,1610,1701,3421,1894,4597,1906], -[0,18444,3178,8221,4361], -"strategy", -[1,2343,15395], -[0,15396,15397,15399,2537], -[0,1448,2061,3544,4597], -[0,2099,2323,2430,2899,3758,4151,4193], -"@debitoor/eslint-config-debitoor", -[0,18444,8221,1017,22074], -"objects", -"Subset", -[2,6792,15401], -"like", -[1,2343,15406], -"superset", -[0,15407,15408,15409,34352], -[0,2476,1209], -[0,1166,2383,4597,1906], -[0,18444,1209,4545,1283,7234,1936,8924,22894,22746], -[1,2343,15412], -"yoctodelay", -[0,15413,15414,15415,2537], -[0,1104,2061,4430,4597], -[0,22507,4874,22900,18438,20959,22821,4039,2323,2463,91], -[0,18444,91,5284,22902], -[1,2343,15417], -[0,15422,15425,15429,34352], -"docpress", -"git-u", -"pdate-ghpages", -[2,15419,15420], -[0,22821,1104,2061,3102,3544,4430], -"gulp-ava", -[2,2530,3020], -[0,22909,4874,22900,2323,2367,2529,4487,91], -"mersenne", -"address", -"dice", -[0,2323,91,1932,4799,18444,17461,4487,9654,671], -[1,2343,15431], -[0,15432,15433,15434,2537], -[0,4597,4431,4600,4227,1104,3544], -[0,2323,4039,22920,91,4874,2367,2409,18438,2479,3159,18435,18440,2510,22919], -[0,91,18444,22924,4799,11540,7234,4643,5197], -[1,2343,15440], -"param-case", -"kebab-case", -"header-", -"header-case", -[0,15441,15442,14787,34352], -[0,22639,2757,4431,4535,22930,22640,4100,2053,22933,4606], -[0,4389,4597,1177,1894,22941,4421,3696,22939,1907,1982,1895,1955,22937], -[1,2343,15453], -"c12", -"convert-", -"gitmoji", -[2,15445,15446], -[2,3310,4009], -"ofetch", -"pkg-types", -"scule", -"std-env", -[0,15454,12112,15455,2523], -[0,2541,3427,22946], -[0,17507,1623,18444], -[1,2343,15459], -"dogstatsd", -"@kurkle/color", -[0,15479,15485,15489,2523], -[2,812,14510], -"@types/o", -"ffscreencanvas", -[2,15461,15462], -"js-adapter-luxon", -[2,9816,15464], -[3,15465,16], -[2,15466,3220], -"chartjs-", -[2,15468,11017], -"chartjs", -[2,1884,15470], -[3,2912,13], -"launcher", -[2,5695,15473], -[2,15472,15474], -[3,4071,15], -"wc3", -[2,15476,15477], -[0,2070,2367,3544,4431,4597], -"charts", -"graphs", -"datadog", -"telegraf", -"native-run", -[0,2012,4600,2323,2447,2463,2530,2413,2361,2498,2450,2272], -[2,1448,11245], -"domhandler", -"domutils", -[0,18444,2319,2536], -"-sniffer", -[2,9254,15490], -"-tree-adapter", -[2,2653,15492], -[2,1868,15493], -[2,3493,15494], -"parse5-", -"parser-", -[2,15497,3101], -[2,15496,15498], -"whatwg-", -"mimetype", -[2,15500,15501], -[1,2343,15511], -"@imgix/js-core", -[2,7724,2220], -"hatwg-mimetype", -[2,7820,15506], -[3,1926,15], -"xpect-type", -[2,15508,15509], -[0,15513,15515,15516,2537], -[3,2654,10], -[0,2070,2051,22959,2419,4431,4600,2367,2012,3544], -"scraper", -[0,3421,2323,2899,4597,1596,22961,2463,2384,2494,1178,22963], -[0,18444,1936,3888,1623,6707,5614], -[1,2343,15518], -[0,15519,15520,2514,2487], -[0,22970,22971,22972,1437,1672,2061,22639,22640,22974,22979,22983,3067,3183,8949,3427,4002,4431,4597], -[0,1400,1596,2012,2759,22481,2272,22985,2899,4039,4170], -[1,2343,15522], -[0,15523,15524,15527,4139], -[0,3768,4430,4431,4597,4600,4753,22990], -[0,2899,4255,1241], -"version", -[2,813,15525], -[0,2323,18444,22990,22993,2056,7046,4597,2542], -[1,2343,15529], -[0,15530,15531,15532,2537], -[0,1104,15642,1457,2061,2200,3427,3507,3544,3923,4207,4597,22778], -[0,1596,2759,2899,3202,3752,4039,4170,4193,4278,4294,1906], -[0,2323,2282,18444], -"@better-scroll/core", -"add-", -"listener", -[2,12598,15535], -[2,1752,15536], -[2,15534,15537], -"-font", -[2,1456,15539], -[2,1625,7521], -[1,2343,15546], -"-converter", -[2,2275,15543], -[2,1625,15544], -[0,15552,0,15563,2537], -"dom-closest", -"dom-lib", -[3,1817,15], -[2,15549,2013], -"htmlhint", -[0,3150,4597,4430,2924,2541], -"insert-css", -"jsbarcode", -"jsonlint", -"jsonlint-mod", -"mutat", -"ionobserver-shim", -[2,15557,15558], -[2,3767,1289], -"-delta-to-html", -[2,3771,15561], -[0,18444,2924], -[1,2343,15576], -"eautiful-dnd", -[2,12242,15565], -"demirror2", -[2,3808,15567], -"asy-crop", -[2,11352,15569], -"lightbox", -[2,3608,15571], -[2,3838,15572], -"azy-load", -[2,12432,15574], -[0,15577,15581,15583,4139], -[0,1544,21847,2541,2756,3357,3445,23009,4150,4151,4431,4438,2282], -"react-quill", -"rmc-feedback", -"smooth-scroll-into-view-if-needed", -[0,2899,4342], -[3,5835,27], -[0,18444,22313,1544,3000], -"to-to-assign", -[2,15582,15584], -"demirror", -[2,4860,15586], -"lement-", -[1,2343,15593], -"resize-event", -[2,15588,15590], -[2,4861,15591], -[0,15603,15617,15620,2523], -"@types/faker", -"sert-css", -[2,9721,15595], -"barcode", -[2,7635,15597], -[3,7895,12], -[2,15599,2631], -"rcode.react", -[2,11304,15601], -[0,2188,2476,4597,22990], -"beautiful-dnd", -[2,4881,15604], -[2,4881,2741], -[2,4881,11167], -[2,6324,1456], -[2,5098,15608], -[3,15609,15], -[2,15610,7262], -[2,15610,89], -[2,15610,10631], -"tinker", -[2,1876,15614], -[2,6941,3841], -[0,1166,17279,22706,2323,3477,23017,22778,1906], -"mark-twain", -"rc-queue-anim", -[0,18444,2056,12666,1137,15215,1536,2090], -"croll-anim", -[2,11229,15621], -[3,11371,21], -[2,15623,1524], -"react-su", -"blime-video", -[2,15625,15626], -[1,2343,15631], -"scrollama", -"values.js", -[0,15636,15638,15639,2523], -"vfile-message", -"-warnings-plugin", -[2,7131,15633], -[2,4670,15634], -[0,22058,1149,4597,4431,3181,4545,22057,22054], -[3,1456,9], -[0,2323,2899,1177,4039,22064,23026,2381,3159,4599,2425,23025,22066,22068,22062], -[0,18444,22057,22074,22075], -[1,2343,15641], -[0,15646,15647,15649,2443], -"anymatch", -"braces", -"is-b", -"@paulmillr/jsbt", -[0,1792], -[0,1166,3477,4481,1906], -"readdirp", -[0,1896,4990,15008,16518,23034,4202,1871,1398], -[1,2343,15651], -[0,15652,15653,15654,2537], -[0,23040,23041,23043,23045,3984,23051,23054,3988,10630,11380,23059,23065,23070,23075,23078,23080,23082,23085,23092,23096,23098,23103,23110,23113,23118,23121,23123,13240,23126,23128,23133,23136,23139,23141,23143,15043,4351,23145,23149], -[0,811,8850,816,10615,1703,23155,4042,4255,4389,4400], -[0,1783,1745,1739,9591,13729,4354,23158,9654,671,19269,2554,3984,4549], -[1,2343,15657], -"ci", -[0,0,15660,15661,2399], -"continuous", -[2,15674,15682], -[0,23163,23164,2228,18555,2253,2256,2273,23165,2281,2283,2293,23167,23169], -[0,4453,7597], -[1,2343,15683], -[3,6217,21], -[2,15663,4779], -[3,169,22], -"ntion", -[2,15665,15666], -[3,169,21], -"inimap", -[2,15668,15669], -[3,116,24], -[2,15671,14745], -[3,164,21], -[3,5276,15], -"anguage", -[2,15673,15675], -[3,157,21], -[2,15677,5204], -[3,148,22], -"de-block", -[2,15679,15680], -"imple-access", -[0,15688,15708,15709,4139], -"tml-embed", -[2,15677,15684], -"ge-break", -[2,172,15686], -[0,3183,23175,4227,4720,4535], -"heme-lark", -[2,178,15689], -"ord-count", -[2,6197,15691], -[2,15698,15725,186], -"how-blocks", -[2,15663,15694], -[3,15685,25], -[2,15696,4231], -[3,10883,21], -"arkdown-gfm", -[2,15668,15699], -[3,175,22], -"move-format", -[2,15701,15702], -"ource-", -[2,15704,6110], -[2,15663,15705], -"oriz", -[0,8648,1168,1195,1282,1317,1429,23177,1540,1719,1787,16256,16257,1177,1895,1924,1926,2151,2228,13831,2240,2247,2253,2256,2258,23178,2281,2283,2314,17568,2675,16021,2990,2899,3211,3257,3421,1894,4135,4193,91,4545,2924,4681], -[0,2036,3257,1283,1936], -"ontal-line", -[2,15707,15710], -[2,15677,15711], -[3,6164,21], -[2,15713,12426], -"multi-root", -[2,6157,15715], -"strict", -"ed-editing", -[2,15717,15718], -[2,15701,15719], -"peci", -"al-characters", -[2,15721,15722], -[2,15663,15723], -"plugin-u", -"nano-jsx", -[1,2343,15729], -"solid-js", -[0,15730,15731,6060,2523], -[0,2812,23184,1366,6714,2607,8340,17693,23185,8336,8316,23187,23188,8338,23189,23190,8349,23192,23193], -[0,620,1501,2710,8363,23196,2036], -[1,2343,15733], -[0,15734,15735,15736,2487], -[0,15507,4874,9241,18089,15502,4729], -[0,23203,23205,91,1984,9750], -[0,2832,965,1388,5317,11513,5122,4963,1936,7102,12616], -[1,2343,15738], -[0,0,8134,15739,2537], -[0,6914,4354,13735,6793,2100,7210,200,6876,6478,3729,1138,7058,7233,10446,7128,3183,3460], -[1,2343,15741], -[0,0,15746,15748,2537], -"@chrisblossom/eslint-config", -[3,14731,11], -"-pkg-up", -[2,15743,15744], -[0,5517,13614,23237,26398,19325,1159,1593,9254,1177,23225,2708,3410,3421,4103,4389], -"temp-sandbox", -[0,7263,2568,7031,6951,6422,970,1593,6789], -[1,2343,15750], -[0,0,15751,2514,2523], -[0,2272,2839,1209,4389], -[1,2343,15753], -[0,15754,15755,15756,2399], -[0,14038], -[0,5517,13614,23237,23239,23241,19325,1158,1159,1177,2011,2708,3206,3410,3421,4103,4389], -[0,6914,6959,6780,6889,6888,6914,3205,941,5284,5286], -[2,5933,1469], -[1,2343,15762], -"uncache", -"uncached", -"unrequire", -[0,15763,15764,15765,4139], -[0,12396,9315,23247,23249,23250,23253,3140,3493,23254,4555,12449,23257,23258], -[0,4874,23262,1414,2581,2588,3137,1894,23264,3985,3998,4505,91,18002,1906], -[0,23267,2587,1936,23266,6435,614,1644,3972], -[1,2343,15772], -"opts", -"opt", -"parseopt", -"argsparse", -"optparse", -[0,15777,15778,15779,2537], -"complete", -"autocomplete", -[3,15774,11], -[2,15775,6600], -[0,12396,23247,23254], -[0,4874,23262,23274,1414,1699,23276,2581,2588,2620,23279,1894,3985,3998,4505,91,18002,4555,1906], -[0,4050,23267,2587,1936,6953,2574,6435,614,23266,4741], -[1,2343,15781], -[0,15782,15783,15784,34352], -[0,12396,9315,23286,23288,13839,23289,23291,9396,2584,23292,16870,3746,4233,4555,23258], -[0,4874,1414,2588,1894,3985,3998,4505,91,18002,1906], -[0,1623,23267,2587,1936,3529,6421,3766,23296,3585,1631,23266,6435,614], -[1,2343,15787], -[2,1861,7253], -[0,15789,15790,15791,2523], -"timers-ext", -[0,1006,19877,12396,23288,23289,23302,23308,23292,23310,23312,23314,3746,4233,4309,23254,23258], -[0,4874,15128,1414,23316,12412,2007,2588,3137,12127,3140,12133,1894,3985,3998,4505,91,4555,1906], -[0,1444,5286,6742,23267,2587,1936,5284,1219,9102,3958,353,23266,6435,614], -"medikoo", -[2,1884,15792], -"list-", -"updated", -"list-updated", -[2,10617,15796], -[3,2289,14], -"-cc-changelog", -[2,4024,15799], -[2,15798,15800], -"prettier-e", -"lastic", -[2,15802,15803], -"tad", -[1,2343,15807], -[0,15808,15809,15810,2487], -[0,12396,9315,23322,23288,23292,23253,3140,3746,4233,4292,23258], -[0,4874,1414,2588,1894,3985,3998,4505,91,1906], -[0,23267,2587,1936,4141,1646,23324,23266,6435,614], -[1,2343,15812], -[0,15816,15817,15818,2537], -"toggle", -"show", -"hide", -[0,1006,12396,9315,23288,23289,23308,23292,23310,23312,23314,3746,4233,4309,23254,15632], -[0,4874,4880,4883,1414,668,12415,2588,1894,89,3824,3985,3998,23330,4505,91,1906], -[0,23267,2587,1936,3698,89,23332,3709,23266,6435,614,188], -[1,2343,15820], -[0,15821,0,15823,2537], -[0,12396], -"varlock", -[0,1563,2587,23267,1936,4141,1871,1646,2585,23266,614,6435], -[1,2343,15825], -[0,15827,15809,15828,2537], -"string-length", -[0,12396,9315,12421,23344], -[0,23266,2587,23267,614,6435,1936,1871,1563,2585,9547], -[1,2343,15830], -[0,15831,15832,15834,2537], -[0,12396,23288,23352,3746,4233], -[0,4874,15128,1414,23316,23356,12412,1894,3985,3998,23359,4481,4505,91,1906], -"expresso", -[0,965,14839,23267,2587,1936,23362,3958,23266,6435,614,23361,4607], -[1,2343,15836], -[0,15837,15839,2514,4139], -[0,4647,2036], -"fast-text-table", -[0,3421,2899,1177,4039,4342,1948], -"256-colors", -[2,1105,15840], -"git-re", -"git-rev", -"growl", -[1,2343,15848], -"tables", -"tabular", -[0,0,15849,15850,2523], -[0,15990,2228,2240,2314,14352,2759,2835,1209,14529,3774,3954,23375,4019,23376], -[0,1871,18089,18944,1936,10368,15103,3656], -[1,2343,15852], -[0,15855,15856,2514,2537], -[2,8737,4522], -[2,2968,14994], -[0,3263], -[0,4167,4384], -[1,2343,15858], -[0,0,0,15859,2537], -[0,2026,1965,11988,5995,23389,23391,23397,23400,23404,23407,23410,23411,23412,23413,23414,23415,23416,23417], -[1,2343,15861], -[0,0,15863,2514,34352], -"truncate", -[0,4361,4039,1894,1420,11518,53,23423,5874], -"ellipsis", -[1,2343,15866], -[0,0,15867,2514,2443], -[0,94,87,14128,14041,1175,48,53,1178,1193,1745,1177,1935,1938,1939,1192,2774], -[1,2343,15870], -"cardinal", -[0,15881,15885,15888,2523], -"hyperlinker", -[2,689,13008], -[2,2055,2873], -"object-t", -"reeify", -[2,15874,15875], -[2,689,7152], -"natural-", -"orderby", -[2,15878,15879], -[0,23432,1362,27433,15838,23434,23436,23438,23439,23440,23441,2822,23444,3170,19445,3220,3222,3416,3527,15245,4294,4435,23445,23446], -"-prompt", -[2,6875,15882], -[3,4351,9], -[0,23450,13414,4856,8780,7637,8778,6503,4874,21623,6513,23448,1414,1429,1448,6323,1177,23453,23456,2675,2990,2899,4193,4474,91], -"hyperlinks", -[2,15884,15886], -[0,5351,5353,6354,5130,2596], -[3,6519,10], -"ip-ansi", -[2,15889,15890], -"nsi-styles", -[2,9165,15892], -[3,9359,12], -[1,2343,15898], -"ct-stack", -[2,15894,15896], -[0,15899,15900,2514,4139], -[0,23462], -[0,1362,1389,1391,1537,1177,2228,2236,2239,2277,2281,2283,2291,23466,2307,2036,2276,4085,23469,4171,4193,16584,23471,4535], -[1,2343,15902], -[0,0,15912,15913,2537], -"@yarnpkg/core", -"@yarnpkg/", -"fslib", -[2,15904,15905], -[3,1920,15], -"rca", -[2,15907,15908], -"multi-input", -[2,4049,15910], -[0,1623,1700,2070,19745,2832,2899,1177,1209,4042,4170,4072,1462,1481,1525,2036,91,2665,23482,6503,18059,23483,13388,23476,23479,1954,8850,23480,1938,1958,1903,811,1011,816,1009], -[0,5342,5341], -[1,2343,15915], -[0,15916,0,2514,2537], -[0,3263,1326], -"good-listener", -"tiny-emitter", -[1,2343,15920], -[0,6263,0,15922,2523], -"cut", -[0,2602,7426], -[1,2343,15924], -[0,0,15925,15927,2537], -[0,1501,620], -"is64bit", -[0,6731], -"paste", -"copy-paste", -"pasteboard", -"pbcopy", -"xclip", -"xsel", -[1,2343,15935], -[0,15936,15937,15938,2523], -[0,3368,3188], -[0,4535,2832,23509,4039], -[0,3257,1283], -[1,2343,15940], -[0,15941,15942,10570,2399], -[0,3847], -[0,53,61,87,90,94,1429,1596,1603,1177,2899,3421,3697,3744,89,4039,4042,4045,4055,4067,4073], -[1,2343,15944], -[0,15945,15946,2514,4139], -[0,1437,4135,2151,1525,23520,3762,4232], -[0,1192,1177,4039,3363,4468,4474,4508,91,5087,4874,5245,5254,4864,1939,1938,13418,1011,23523,1009], -[1,2343,15948], -[0,0,15949,15950,2523], -[0,23528,23531,4865,13204,4874,29891,7677,1138,14736,30932,668,1177,2070,2832,3244,3377,30794,20085,1894,23535,91,4548,23538,1984,23539,4729,4763], -[0,2611,5122,1896,27,13527,5130,38,23542,23543,23544,23545,21444,17218,13573,6710], -[2,976,2942], -[1,2343,15954], -[2,9753,6072], -[0,15957,6538,15958,2487], -"progress bar", -"@exodus/bytes", -[0,3084], -[0,3358,2195,17977,17978], -[1,2343,15961], -[2,11941,5258], -[0,15963,13640,15965,2487], -"coro", -[0,1537,3188,4039,4135,4562,4707,23559], -"coroutine", -[0,23561,23562,23563,23564,3378], -[1,2343,15967], -[0,15968,15969,15970,2487], -[0,15487,2654], -[0,192,5467,19438,442,8862,811,816,10615,10817,23572,11085,23573,4874,17214,32818,7677,1177,1955,10964,1978,2203,2633,2675,17221,2832,2990,3401,3541,1894,23535,4042,4201,4474,91,4523,1984], -[0,2616,1936,965,57,2654,23578], -[1,2343,15972], -[0,0,15973,15974,34352], -[0,4874,1414,23276,2577,2584,1894,3985,3998,4505,91,4548,1906], -[0,23584,11512,1936,1213,3205,10381,12616,7102], -[1,2343,15976], -[0,15977,15978,15979,2537], -[0,15956], -[0,23591,1177,2203], -[0,9254,1936], -"ignore-walk", -[1,2343,15982], -[0,0,15983,15986,2523], -[0,192,5467,5366,23597,5087,4874,1317,18089,1177,1895,1938,23598,2591,2675,1894,4257,4468,4483,4494,91,4523], -"teeny-request", -"urlgrey", -[0,1936,23601,23603,23605,18089,23606,23608], -[1,2343,15989], -[2,10988,4504], -[0,0,15991,15992,2443], -"codecov.io", -[0,23613,1414,1596,4042,4533], -[0,1936,1867,10368,23615,15103,18089], -[1,2343,15994], -[0,15995,16007,16010,2523], -[0,3493,2635], -"mirror/lint", -[2,13183,15996], -[3,15997,12], -[2,15998,6624], -[2,15998,6649], -[3,16000,13], -[2,16001,10190], -[2,15998,8891], -[3,15997,13], -[2,16004,15675], -[2,15998,15774], -[0,1700,1192,2675,3144,1622,1177,1701,2924,1854,3692,1894,1610,48,1193,2036,53,2990,3400,23621,192,4257,23623,87,2651,1938,1895,5467,16405], -"buildhelper", -[2,15998,16008], -[0,2924,1936,1194], -[1,2343,16012], -[0,16013,16014,16016,2523], -[0,15320,1462,1525,2591,15436,23631,4535], -[0,2228,2236,2281,2291,3524,2907], -[2,10697,1592], -[0,200,15215,23634,1623,1936,2265,5284,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,23637,2280], -[1,2343,16018], -[0,16019,16020,16023,2537], -[0,15320,1462,1525,18089,15436,23631,4072], -[0,192,11893,811,8850,816,10615,23643,23648,1177,1903,2675,2742,1192,2780,2990,4042,23652,1983], -"jison", -[2,5249,23751], -[0,200,15215,23634,1623,1936,2265,5284,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,4072,23637,2280], -[1,2343,16025], -[0,16026,16027,16028,34352], -[0,3524], -[0,4389,4255,4387,3524], -[0,1936,2636,3520,3521,6710], -[1,2343,16030], -[0,16031,16032,16033,2537], -[0,15487,2616,3872,4309], -[0,192,5467,19438,19181,442,811,816,10615,10817,23572,5366,4874,4880,4883,17214,32818,7677,1317,1177,1955,10964,1978,2203,2675,2990,3541,3698,23535,89,3824,4042,4201,4474,91,4523,1984], -[0,2639,1936,89,57,965], -[1,2343,16035], -[0,0,16036,16037,2523], -[0,1166,1448,1906], -[0,1936,12075,2640,11513,3392,7102,12616,23670,23674], -[1,2343,16039], -[0,0,16040,16042,2399], -[0,2675,2742,2297,4484,1177,4039,4042,1894,1596,3536,91,3400,2766,3720,2898,23689,2886,23687,19965,13207,2923,23681,23683,2881,23679,6059,23686], -"wcwidth", -[0,12197,23691,1424,1936,965,158,13814,8221], -[1,2343,16044], -[0,16045,0,16046,2523], -[0,23696,1699,1754,2654,23699], -[0,1936,202,2585,18641,19096,15253], -[1,2343,16048], -[0,16049,0,16050,2523], -[0,23708,23709,1091,2070,2929,3183,3742,4135], -[0,1936,671,1155,2650], -[1,2343,16052], -[0,16054,16055,16058,34352], -"array-back", -[0,23736,2635,1209,3716,4388], -[0,192,5467,4874,1610,1622,1628,1652,21468,1177,17589,2629,2675,1192,2990,3177,3400,1894,3754,23738,3786,4039,4257,4307,91,2924,4677,23742], -"find-replace", -"typical", -[0,2924,1932,1936,2651], -[1,2343,16060], -[0,16061,16062,16063,2537], -[0,16022,1525,1595,3692], -[0,442,19344,23339,6503,4874,34737,1414,1637,1177,23753,1938,32525,27790,2022,2203,2899,3561,3759,23631,4039,23754,4361,4072,91,4523,22946], -[0,3692,23757,1936,23760,2632], -[2,1437,2324], -"table-", -"table-layout", -[1,2343,16068], -[0,16069,16070,16071,2523], -[0,18087,15487,15488,18089], -[0,442,4874,7677,1177,1895,1953,1982,2203,1894,4483,91,4523,1984], -[0,1936,57,7046,6523,965,23767,6084,16179], -[1,2343,16073], -[0,16074,16075,16076,2487], -[0,1704,2713,20099,4266,23775], -[0,1177,1903,1938,1948,1954,1958,1970,2899,3421], -[0,27,1851], -"cached", -"cachedir", -"find-n", -"ode-", -"ode-modules", -[2,16079,16081], -"is-u", -[1,2343,16086], -"is-utf8", -[0,16093,16097,2514,2399], -[3,549,23], -[2,16087,1172], -[2,12772,8532], -[2,1652,16089], -"-reporters", -[2,11086,16091], -[0,2017,23783,2131], -[3,1566,12], -" changelog", -[2,16094,16095], -[0,4729,3421,23785,1149,2899,4135,2025,4218,1537,1159,4220], -[1,2343,16099], -[0,16100,16101,16102,2523], -[0,23791,1676], -[0,5245,5087,4874,1151,1192,4468,91,2658,2190], -[0,27,2658,6652,4575], -[1,2343,16104], -[0,16105,16106,16118,2537], -[0,10406,1676,2659,2743,2747,3170], -[0,192,5467,442,5245,5601,6494,19386,5087,8778,4874,9240,9241,1364,1177,1895,1955,2026,2182,2203,2675,1192,2990,23800,3445,5561,20085,1894,4342,4468,91,4523,4729], -"es2015-tag", -"es6-tag", -"heredoc", -"indents", -"literal", -"multiline", -"oneline", -"single", -"singleline", -"strings", -"tagged", -[0,17179,2658,2663,27,2671,1544,2026,2078,23802,23803,1387,2323,2256,4699,4729,1594], -[1,2343,16120], -[0,16121,16122,16124,2537], -[0,2591,3171,1437,23808,23809,3456,3183,4566,1304,2659,3560,23811,2623], -[0,23813,4384,1177,2026,705,23816], -"observe", -[0,200,1523,2947,27,2671,2665,23818,36], -[1,2343,16126], -[0,0,16127,16129,2537], -[0,4493,2675,2899,1177,4170,4474,1894,442,1529,91,4874,2990,19193,6503,16954,192,4257,19335,4523,1951,1895,1955,5467], -"on-headers", -[0,27,1544,4967,6622,2026], -"compressible", -[1,2343,16132], -[0,0,16133,16134,4139], -[0,4864,5087,23829,1009,1011,1177,1883,1938,2151,1192,3117,4468,4473,4474,91], -[0,202,27,18413,23831,23832,6622,5281], -[1,2343,16137], -"buffer-from", -[0,0,0,16138,2537], -[0,2671,23837], -[1,2343,16140], -[0,16143,16147,16153,2537], -"-command", -[2,1614,16141], -[0,1676,23791], -"@hirez_io/observer-spy", -"@swc/jest", -[3,7749,12], -[0,1192,2658,4468,2190,91,5087,4874,1154,5245,1151,23843], -"-quote", -[2,16146,16148], -[2,1596,4845], -"ctrlc-wrapper", -[2,32524,2994], -[0,2671,2658,6652,4575], -"instance", -[1,2343,16156], -[0,0,0,16157,2399], -[0,3358,582,3697], -[1,2343,16161], -"bash", -"sh", -[0,16162,9264,16163,2443], -[0,16136,15019,4431], -[0,3101,27,4714,705,3038,3689,10074,6865,6704,21360], -[1,2343,16165], -[0,0,16169,16170,2523], -"cson", -"hjson", -"x2js", -[0,6061,21120,6063,1570,1177,1895,23860,1894,4042,4131,4389], -[0,23862,590,1623,1420], -"fig", -"node-config", -[1,2343,16175], -"config-node", -[0,0,10435,16176,2523], -[0,23868,23869,23870,4545,23872,23874,23875,23876,3547,23877,23878,23879,23881,23883], -[1,2343,16178], -[0,16180,16182,16183,2537], -"atom", -[0,23888,1676,23891,23894,23897,3257], -"atomically", -[0,1149,1575,1177,1895,1903,1938,1954,1955,1958,1970,2026,2675,2990,2899,3421,1894,4170,4193,4745,4342], -[0,1283,2679,6728], -"xdg-basedir", -[1,2343,16187], -"prefer", -[0,6263,16190,16191,2523], -"preferences", -"persist", -[0,27386,53,5749,5241,83,85,87,90,94,5583,811,816,10615,4874,1009,1011,7677,1290,1596,1597,1177,1881,1895,1915,1938,23909,2675,23913,23915,23917,23921,23926,2990,1894,4039,4042,4193,91,1984], -[0,2681,23932,2679,8930,23933,6728,23934,23936], -[1,2343,16193], -[0,0,16194,16195,2537], -[0,442,10817,6061,6063,1009,1011,1177,1895,1955,2203,1894,4042,4057,4131,91], -[0,2681,23942,5995,1932], -"rack", -[1,2343,16198], -[0,16199,16200,16201,2537], -[0,23948], -[0,3421,1149,23950,8431,2899,23952,1177,4135,705,27387,91,4874,2024,29197,5517,19344,7844], -[0,8431,6270,8426,8425], -"flash", -[1,2343,16204], -[0,16205,16206,16207,2523], -[0,23960], -[0,1175,1193,1267,1272,1596,1177,1881,1938,2774], -[0,2658,23964,13445,1192,3212], -[1,2343,16209], -[0,0,16210,16212,2537], -[0,48,53,87,1009,1676,1177,23971,1938,3188,23974,4039,23975,4384,4449,4474,91], -"kruptein", -[0,2687,23977,16774,3410,3624,10057,7131,6961,1108,21541,2070,23980,23982], -[1,2343,16214], -[0,0,16215,16216,2487], -[0,1414,2070,4493,4474,4508,91,4865,4874,11976], -[0,158,4202,23989,23992,4289,18081,12350,20650,20733,20639,20709,23993,20651,20680,21881,20752,18048,20653,8221,23994,23995,12349], -[1,2343,16218], -[0,16219,16220,16221,2523], -[0,24003,18525,4207,2205,24004,2096,6639,29721,20624,22246], -[0,1906,1166,1700,4400,18051,24006,18047], -[0,3178,15215,158,11806,21881,20637,18048,20639,8221], -[1,2343,16223], -[0,16224,16225,16226,2523], -[0,24003,2020,24012,6639,24013,20624], -[0,1414,1906,1166,91,4874], -[0,15215,158,24016,3178,6707,18048,24017], -[1,2343,16228], -[0,16229,0,16236,2399], -[0,24022,3923], -"defu", -"nicode-supported", -[2,16083,16231], -"sentence", -"sentencer", -"sisteransi", -[0,2695,18641,1823,24024,5576], -"reporter", -"elegant", -"clack", -"stacktrace", -[1,2343,16242], -[0,0,16243,16244,34352], -[0,53,4874,7677,1596,24029,24030,2126,2675,2700,24032,1209,3028,1894,3720,3875,4039,24033,4131,4493,33863,91,1983,1984], -[0,2700,24036,24038], -"arc-templates", -"brac", -"ket-template", -[2,16246,16247], -"dust", -"js-helpers", -[2,16249,16250], -"dustjs-", -[1,2343,16254], -[0,0,16258,16266,4139], -"linkedin", -[2,16252,16255], -"eco", -[0,24045,5087,1596,1192,4039,4468,4487,91], -"haml-coffee", -"hamlet", -"htmling", -"jazz", -"jqtpl", -"just", -"liquid-node", -[0,24047], -"liquor", -"mote", -"plates", -"qejs", -"ractive", -"slm", -[2,4371,2229], -"teacup", -"tinyliquid", -"toffee", -"twig", -"twing", -"vash", -"velocityjs", -"walrus", -"whiskers", -[1,2343,16285], -"engine", -[0,0,0,16286,2537], -[0,2700,7007,7189,2382,6957,6564,6910,7282,6769,6917], -[1,2343,16288], -[0,9670,16289,16291,2523], -[0,1166,2592,4481,1906], -"rfc6266", -[0,3209,2325,15759,15760,1237,2145,24057], -[1,2343,16293], -[0,16294,16295,16297,2487], -[0,3537,13780], -[0,1166,16499,1700,2020,1906], -"rfc7231", -[0,1204,2703,3209,814,2202,15525,16186,200], -[1,2343,16299], -[0,16300,16301,16302,2523], -[0,24069,24073,24075,24077,24078,24080,24081], -[0,4874,9241,1177,24085,1894,91], -[0,13527,36,24088,24089,1965,20986,24090,5592,17829,24091,11100,24092,4030,7096,5122,5130,38,7433,24093,7223,6599,27,2671,4699,14609,24095,1896,5995,12660], -[1,2343,16304], -[0,0,8134,16305,2399], -[0,8958,1871,2966,14903,3924,2585,1794,7067], -[3,1567,23], -[2,16306,1098], -[3,1570,25], -"@conventional-changelog/git-client", -[2,16308,23], -[2,16306,1177], -[1,2343,16313], -[0,16314,16315,16317,4139], -[0,23184,1366,23187,2607,2812,3084], -[0,1501,2556,620], -"tom", -[0,2090,7204,1852,2556,1932], -[1,2343,16319], -[0,16320,16324,16325,2487], -[0,1639,24114,6330], -[2,10832,1194], -[2,16306,16321], -[2,4402,4202], -[0,24118,24117], -[0,2711,6681,5130,10772,24120,1936,24122,36,965,1388,4042,23361], -[1,2343,16327], -[0,0,16328,16331,2537], -[0,91,1984], -"add-stream", -"tempfile", -[0,2712,24128,24129,3547,23877,23870,4545,24130,10915,23872,23878,23874,23879,23881,23883,23875], -[1,2343,16333], -[0,0,11686,16334,2399], -[0,24136,1227,24137,24138,24140,2713,1388,1389], -[1,2343,16336], -[0,0,6538,2514,2523], -"compare-func", -[1,2343,16339], -[0,16343,16344,16345,2523], -"commits.org", -[2,16094,16340], -"preset", -[0,24151,1107,1110,24152,1437,1471,1477,1486,13763,16485,2709,20044,24153,14676,4116,4174,4208,13781,4290,16323,4507,9731,4726,4729,24154], -[0,15288,13789,826,24156,4874,4880,24157,34148,24162,6513,24164,9241,24165,1166,1371,1702,24166,1959,1961,3242,3339,3479,1894,89,24169,4193,4294,4474,91,1906], -[0,89,200,1219,8634,4963,6876,3698,3875,24171,8924,1512,2585], -[1,2343,16350], -"inline-s", -[3,5588,9], -[2,16347,16348], -[0,0,16351,16352,2443], -[0,192,5467,19438,19181,442,811,816,10615,1623,1177,1955,10964,2203,2675,1192,2990,3400,1894,23535,4042], -[0,2718,24177,590,57,1623], -[1,2343,16354], -[0,0,0,16355,2487], -[0,24182,24183,18496,6574,7242,21779,202,200], -"top-sites", -[1,2343,16359], -"cookies", -[0,16360,16361,6151,2537], -[0,31874,546,8998,8605,8612,24188,4094], -[0,8608,91], -[1,2343,16363], -[0,16364,16365,16366,2443], -[0,1107,2089,3527,24188,4094], -[0,2126,2163,2720], -[0,8618,8619,8620,1299,200,1523,6876,1836,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,2184,8634,7009,6621,181,8635,4758,8636], -[1,2343,16368], -[0,16369,0,16370,4139], -[0,24202,1512], -[0,24204,202,9143,13392], -[1,2343,16372], -[0,0,16373,16374,2487], -[0,1734,2899,24209,4072], -[0,5260,3209,10906,24211,1388,24213,1808,1161], -"sign", -"unsign", -[1,2343,16378], -[0,0,16379,16380,4139], -[0,1177,1889,1954,2022,2822,2899,3421,20314,3932,3985,24220,4167], -[0,1507,24223,1509,3595,5194,676,1781,2856,1219,89,24224,4452,4799,91,6523,4745,17307], -"-selection", -[2,15813,16381], -[1,2343,16386], -"@brettz9/node-static", -"-standa", -[0,0,16390,16391,4139], -"lone-jar", -[2,16385,16387], -[2,13131,16388], -[0,1149,1173,1178,1240,24231,24234,1245,1257,1267,24235,1280,24237,24241,24245,24247,24249,24251,24254,24257,24259,24262,24264,24266,24269,24272,1474,1498,1177,24273,2099,2070,2228,2240,2247,2258,24274,24275,2272,3188,3435,4039,4042,4045,4055,24278,13674,4069,4077,22031,4151,4652], -[0,2728,2679,23932,24282,6422], -[1,2343,16393], -[0,0,16394,16395,2537], -[0,19,21,24,26,32,5241,92,8648,840,968,974,4874,4880,4883,1009,1011,11016,33975,1198,1622,668,1177,1915,1938,1939,1959,1961,2075,24289,10697,24291,2228,2239,2240,2247,2256,2263,2283,24295,2308,2314,2665,1192,2780,2814,3003,3541,1894,10622,89,3824,2278,4164,3709,4436,4474,91,1983,26744,188,13151,4769], -[0,24298,24299,24302,7285,7310,5131,6847,7210,5399,5284,1932,1623,1936,7020,6983,89,188,1098,3709,4627,91], -[2,4865,2199], -"rmalize-path", -[2,10409,16397], -"rialize-javascript", -[2,5252,16399], -"@webpack-c", -"ontr", -"ib/eslint-config-webpack", -[2,16402,16403], -[2,16401,16404], -[1,2343,16408], -"is-gzip", -[0,16409,16411,16412,2523], -[0,3082], -"transfer", -[0,1389,2126,4384], -[0,1973,2731], -[1,2343,16414], -[0,16416,16417,16418,2487], -"noms", -[0,16579,16585,23711], -[0,4874,7677,1177,1894,3951,4039,4042,4469,4484,91,1984], -[0,14428,24316,14416,24319,24320,5284,202,91], -[1,2343,16420], -[0,16422,16426,16427,2523], -"qr", -[0,4390,1687,24346,3445,3348,1437,1676,4484,1209,4135,4238,6331,4431,24347,4339,24345,24332,24337,22651,24349,24335,24340,24327,24338,24339,24344,24343,24329], -"simple qr", -"npm qr JavaScript", -"js qr code", -[0,1192,4039,4487,4468,2774,13214,4227,91,17577,5087,4874,24354,7819,2990,5245,4870,5254,24358,24356,18435,24360,24352], -[0,2733,24362,24363,5131,1896,24364,1591,970,3525], -[1,2343,16429], -[0,16433,16434,16436,2523], -[3,1590,15], -"sample", -[2,16430,16431], -[0,8641], -[0,8648,4864,5087,4874,24370,2151,1192,2774,27442,3401,1894,3758,4039,4135,4146,4361,4494,91], -[2,16423,1501], -[0,24373,2733,1017,8221,5131,20523,4627,24374,5027,12295], -[1,2343,16438], -[0,16439,16440,16441,2537], -[0,24379,24382,1676,24383,3032,24386,24389,24391,24393], -[0,24397,6061,16607,6063,4856,9417,5245,24398,24400,6503,4874,24403,6513,1009,1011,1429,1431,1177,1895,2899,3421,1894,4131,4153,4193,4474,4481,4508,91,3348], -[0,1552,24093,24406,24408], -"insight", -"-lib", -"cordova-lib", -"cordova-", -[2,16445,10896], -"cordova-c", -"reate", -[2,16447,16448], -"loud-rejection", -[1,2343,16455], -"@cor", -"dova/eslint-config", -[2,16452,16453], -[0,0,16456,2514,4139], -[0,2899,1177], -[1,2343,16458], -[0,16459,16463,2514,2523], -[0,24416,8431,24419], -"4", -"ES2024", -[2,6796,16460], -[0,24421,2080,2292,4389], -[1,2343,16465], -[0,0,16466,16467,2537], -[0,1158,3421,4389,1177,14741,2708,4103,13614,15059], -[0,614,998,1973], -[1,2343,16469], -[0,16470,16471,9636,34352], -[0,1458], -[0,1470,4255], -[1,2343,16475], -"env-paths", -"parse-json", -[0,16486,16487,16488,2537], -"arse-", -"arse-json", -[2,5088,16477], -[3,7677,17], -[2,16479,2759], -"davidtheclark-node", -[2,1884,16481], -[3,16481,13], -[2,3996,16483], -"es-toolkit", -[0,24437], -[0,2398,2899], -[0,16159,15643,4354,2978,7256,24440,2070,21543,24441,2741,3529,6421,13017,1108,6920,1871,1973], -[1,2343,16490], -[0,16493,16494,16495,2443], -"lcov-parse", -"log-driver", -[0,24446,17450], -[0,1166,16499,1700,2020,3093,4481,1906], -[0,2202,3383,24449,1237,1161,24450,3378,4749,2741,4354,13735,2703,24451,200,20052,17180], -[1,2343,16497], -[0,0,8134,16498,2487], -[0,3048,2741,4354,1973,998,19096,24456,7523,2869], -"cpy", -[1,2343,16501], -[0,0,16505,16506,34352], -"cp", -[3,12419,11], -"contents", -[0,1429,1999,2398,2899,3198,4042], -[0,4354,2741,24462,2757,5284,24463,20273,3048,19096,998,7031,6692], -[1,2343,16508], -[0,0,16510,16514,2523], -"hpagent", -[0,2899,3954], -"http2-wrapper", -"seenreq", -"tslog", -[0,1936,24374,24470,11608], -"@types/got", -[1,2343,16519], -"spider", -"gzip", -[0,0,16520,16521,2523], -[0,4874,1166,4400,4481,1906], -[0,3101,998,7046,7089,7017,6704,353,4354,13735,2741], -[1,2343,16525], -"crc16ccitt", -"crc16", -[0,16527,16529,16535,2523], -"crc16kermit", -[0,24488], -"crc16modbus", -[0,1166,24491,4481,1906], -"crc16xmodem", -"crc1", -"crc24", -"crc81wire", -"crc8", -[0,4354,24493,6574,24494,6667,13735,16159,3729,7201,7009,2741], -"crc8dvbs2", -"crcjam", -[1,2343,16539], -[0,0,9264,16540,2443], -[0,1388,2756,4552], -[1,2343,16545], -"cipher-base", -"ripemd160", -"sha.js", -[0,0,16546,16547,2443], -[0,1999,2398,2899,4042], -[0,4354,2741,24462,2757,24463,20273,24504,970,3048,998,7031,6692], -[1,2343,16549], -[0,16550,16551,2514,2523], -[0,3310,4705], -[0,1429,2272,24512,2899,3297], -[1,2343,16553], -[0,16554,16555,16556,2537], -[0,2070,3368,3441,1149,4707,23432,3188,2003,2822,814,4720,1875,2036,4351], -[0,2272,4039,2276,1596,4019], -[0,4504,24520,24521,24525], -"async-t", -"-tree", -"raverse-tree", -[2,16557,16559], -"css-u", -"rl-parser", -[2,16561,16562], -"uri-to-", -[2,16564,1398], -[2,14678,16565], -[1,2343,16577], -"group-args", -"inline-", -[2,16569,1604], -"oust", -"penthouse", -[3,3591,15], -[3,3611,14], -"inliner", -[2,16574,16575], -[0,16582,11580,16583,2537], -"postcss-url", -"@inversifyjs/common", -"newline", -[2,3370,16580], -[0,2152,3348,18545], -[0,2760], -"stream-array", -[2,23712,29231], -[1,2343,16588], -"optimization", -[0,16589,16590,16591,2523], -[0,1156,1699,1817,24536,3070,3559,4443,24537], -[0,24539,1173,1175,1191,1195,1201,1220,1230,24541,1245,1255,18571,1264,1279,1282,1429,24542,1584,1610,1628,1177,1988,2054,2092,2148,2323,2332,2361,2450,2494,2629,2651,2297,2881,2886,2900,18260,2921,2923,2925,695,2969,21082,2899,4193,4196,4307,4487,91,4537,4027,188,4632,24545,4634,4639,4640,4645,2924,4681,4689], -[0,2761,188,6284,4627,4963,181,5130], -[1,2343,16594], -"@fast", -[0,16613,6161,16614,2537], -"-check/jest", -[2,16593,16595], -"@insurgent/commitlint-config", -[3,16597,13], -"nvent", -"ional-changelog-preset", -[2,16599,16600], -[2,16598,16601], -[3,6061,19], -"ommit", -"-analyzer", -[2,16604,16605], -[2,16603,16606], -[2,6062,3378], -"-generator", -[2,11155,16609], -[2,6019,16610], -[2,6062,16611], -[0,548], -[0,7233,57,7058,5675,7210,200,1523,3924,1644,7119], -"node cron", -[1,2343,16620], -"node-cron", -"schedule", -"cronjob", -[0,16622,16623,2514,2537], -"cron job", -[0,24560,1462,1525,24562,24563,3188,24564,4535,24566,5056], -[0,24570,24571,1596,2026,24574,2034,24576,24577,24581,24584,24587,24591,24592,24593,24594,24596,24598,24599,3127,3456,24600,4039,24601,24602], -[1,2343,16625], -[0,16627,16628,16632,2523], -"tz", -[0,1149,24607,3527], -[0,442,1177,10751,2203,2899,3760], -"timer", -"tab", -"crontab", -[0,6147,200,7048,24610], -[1,2343,16634], -[0,16635,16648,16651,2537], -[0,24617], -"@prantlf/jsonlint", -"@prettier/plugin-xml", -"@stryker-mutator/core", -[3,16638,17], -[2,3192,8791], -[2,16639,16640], -[3,15909,16], -"ray-func", -[2,16642,16643], -[3,13097,17], -"unsanitized", -[2,16645,16646], -[0,5583,816,6373,10615,11301,24621,24624,1462,1610,24625,2675,2814,16830,2990,3170,24627,4042,8849,20983], -"metalint", -"yaml-lint", -[0,24631,158,12083,24633,24634,20634], -[1,2343,16653], -[0,16654,16655,16659,2487], -[0,2070,2766,23576], -[0,1177,24287], -[2,1601,7179], -[3,3606,9], -[2,16657,2408], -[0,1973,5472,2765,6969,5982], -"zoom", -"rotate", -"scale", -"cropper", -"cropper.js", -[1,2343,16667], -[2,29236,594], -[0,0,16668,16659,2523], -[0,19181,442,1137,24645,1797,1177,1924,2070,2203,2832,1894,2278], -[1,2343,16670], -[0,16671,0,16672,2523], -[0,2164,3188,24653,4019,4545,1509,24652,24651], -[0,5472,5982], -"ironment", -[2,1610,16673], -" variable", -[2,6639,16675], -[1,2343,16678], -[0,16679,0,6183,2537], -[0,551,554,2704,2774], -[1,2343,16681], -[0,16682,16683,16684,2487], -[0,24665,24666], -[0,14671,48,53,61,87,192,22559,1193,24668,1596,2675,1192,1894], -[0,3212,1192,11944,1795,1424,1973,2275], -[1,2343,16686], -[0,16689,16695,6183,2487], -"path-key", -[2,6987,16141], -[0,551,8762,554,1437,29680,2704,8734,2798,8747,4747], -[3,10688,14], -"oxy", -[2,16690,16691], -[3,15793,15], -[2,16693,16691], -[0,4892], -"spawnSync", -[2,1611,12344], -[1,2343,16700], -"path-ext", -[0,16702,16703,2514,2487], -"execute", -[0,16729,13002,1437,3717], -[0,8776], -[1,2343,16705], -[0,16706,16703,2514,2523], -[0,24690,16738,13204,4874,2832], -[1,2343,16708], -[0,16714,16715,2514,2537], -"cipher", -[2,13888,16709], -[3,1391,12], -"ign", -[2,16711,16712], -[0,24690,24694,554,11944,2798,2832], -[0,5087,13204,4874,2675,1192,3188,1894,3720,4039,4468,91], -"create-ecdh", -[1,2343,16727], -"mac", -"create-hmac", -"ie-hellman", -[2,1687,16720], -"pbkdf2", -"publi", -"c-encrypt", -[2,16723,16724], -"randomfill", -[0,16730,16731,2514,34352], -[2,6426,3779], -"@jest/diff-sequences", -[0,24690,24694,554,4874,11944,2798,8747], -[0,8776,1497], -[1,2343,16752], -"Hash", -"MD5", -"SHA1", -"SHA-1", -"SHA256", -[2,24690,20072], -"SHA-256", -"RC4", -"Rabbit", -"AES", -"DES", -"PBKDF2", -"HMAC", -"OFB", -"CFB", -"CTR", -"CBC", -"Base64", -"Base64url", -[0,16753,16754,16755,2523], -[0,2777], -[0,107,19438,19181,442,20076,5087,1009,1011,1177,1895,1915,1938,1939,1955,2203,2675,1192,24713,2802,2990,1894,4468,12206,91], -[0,1192,24715,2051,24717,1973,5472,5710], -[1,2343,16760], -"roupon", -[2,1887,16757], -"nlm", -[0,16761,16762,16763,2537], -[0,2151,3445], -[0,53,24723,841,968,972,974,24725,5087,24727,4874,24729,4880,4883,14552,1114,1193,1195,1216,1270,1324,1393,1420,1426,1582,1628,1630,1652,1759,1763,1869,1177,1898,24732,2054,2092,2151,2651,2686,1192,2797,2802,24733,3177,3376,3561,3605,3618,3647,3672,3742,24734,89,3803,3816,3824,3878,24737,814,4028,2278,4111,4135,4230,4307,4383,4409,91,4027,24739,2924,4676,4681,4686,4723], -[0,1192,1936,16237,11937,1932], -[1,2343,16776], -"@cspell/cspell-json-reporter", -[3,16765,15], -[2,16766,7170], -[2,16766,553], -"@cspell/", -[2,16769,15126], -"@cspell/url", -[2,1622,4304], -"cspell-", -"gitignore", -[2,16773,16774], -[0,16777,16784,2514,2537], -[0,3188,4294,3348,6523], -"cspell-glob", -"cspell-io", -"cspell-lib", -[2,2068,2851], -"entry-cache", -[2,2093,16782], -[0,1192,24746,4207], -"@types/fi", -"le-entry-cache", -[2,16785,16786], -[1,2343,16795], -"spell", -"checker", -"spelling", -" checker", -"spell checker", -[2,16791,16792], -[0,0,0,16796,2523], -[0,1192,4749,24753,24754], -[1,2343,16798], -[0,16800,16801,2514,2487], -[2,4229,814], -[0,1437,2215,8750,2796,2798,8747,4207,12578], -[0,8780,1002], -[1,2343,16803], -[0,16809,16810,2514,4139], -"@rspack/cli", -"@mdn/browser-compat-data", -[3,1200,15], -[2,16806,6437], -[2,812,16807], -[0,554,4874,1437,1458,2215,3530], -[0,8780,20374,1209], -"sorter", -[1,2343,16813], -[0,16814,16815,2514,2523], -[0,1107,1437,8758,8741,4207,15826,4294], -[0,48,53,87,92,442,11893,554,6061,6063,4874,1193,17217,1610,1177,1895,1915,32525,1939,1955,2203,1192,24713,1894,4039,4131,4135,91,4523], -[1,2343,16829], -"-verify", -[2,13729,16817], -[3,4828,15], -"itpick", -[2,16819,16820], -[3,15801,21], -"hangelog", -[2,16822,16823], -[2,8184,8166], -"version-", -[2,16826,13729], -"write-", -[0,16832,16833,2514,2487], -"json-file", -[2,16828,16830], -[0,4874,23247,2798,3159,4351], -[0,53,24781,9746,23262,2188,24779,24777], -[1,2343,16835], -[0,16836,16844,16845,2537], -[0,18635,24786,27788,27793,27795,27796,27797,27802,27813,27817,27820,27825,27832,27833,27834,27841,27844,27870,27878,27879,27880,27881,27883,27884,27887,24789,27888], -"icss-utils", -[3,3638,16], -[2,2055,5651], -[2,16838,16839], -[2,16838,1993], -[2,16838,6693], -"@hapi/address", -[0,27890,27893,27895,24793,8862,811,15460,816,10615,17214,1177,27898,3502,4042,4057,15277,23652,4483,91,27900,1984], -[0,158,24795,24799,18048,20637,21881,20650,24800,16662,12712], -[1,2343,16847], -[0,0,16848,2514,2487], -[0,53,5652,5226,56,15659,71,5704,5712,4851,5785,5874,5889,92,5230,101,104,16804,33146,10879,10883,15693,24807,31666,4874,7677,1082,24813,1446,1541,1556,16230,14856,1874,1177,1905,2007,984,2071,2744,3171,3189,3222,15726,3510,15450,3698,28423,1894,89,3824,3951,15728,15452,4409,26379,4469,91,1984,188,20040,4763], -[1,2343,16859], -"@parcel/css", -"@swc/css", -[3,9740,13], -[2,16852,1623], -"@types/csso", -"set-simple", -[2,11327,16855], -[2,1637,16856], -"csso", -[0,0,0,16861,2487], -"lightningcss", -[0,6105,24822,24827,6106,24829,24830,1936,2585,6038,24832,5284,91,24833,2808], -"minimize", -[3,1629,9], -[1,2343,16865], -[0,16866,16867,16869,2537], -[0,2808], -[0,19438,23339,842,966,972,974,4880,4883,1009,1011,1610,1628,1177,1895,1955,1959,1961,1985,2651,2832,1894,89,3824,4068,4307,7873,4474,4493,91,1984,2924,4677,4681], -"boolbase", -[0,89,2808,1936,2585,6038,24842,24829,24830,24843], -"nth-check", -[1,2343,16878], -[3,7804,9], -"olbase", -[2,16872,16873], -"cheerio-s", -"oupselect", -[2,16875,16876], -[0,16880,16881,16882,2537], -"sizzle", -[0,1437,24854,24849,24848,4145,6271,3029,3028,24853], -[0,3421,1149,2228,4193,3460,1596,2240,15929,2293,1532,24857,2283,2273,2277], -[0,24859,24860,24861,24862,24863,24864,24867,24868,24869,24872,24873,24874,24875,24876,24877,24878,24879,24880,24881,24882,24883,24884,24885,24888,24890,24892,24893,24894,24895,24854,24896,24897,24898,24899,24902,24904,24905,24906,24907,24908,24909,24912,24915,24917,24920,24922,24924,24927,24928,24929,24930,24931,24932,24933,24934,24935,24938,24940,24942,24943,24944,24945,24945,24946,24947,24948,24949,24950,24951,24952,24953,24955,24956,24959,24960,24961,24962,24963,24966,24967,24968,24969,24970,24972,24973,24974,24975,24976,24977,24978,12047,24979,24980,24981,24983,24985,24986,24988,24991,24992,24993,24994,24995,24995,24997,25000,25001,25002,4040,25003,25004,4144,4145,25006,25007,25008,25009,25012,25014,25010,25015,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25029,25030,25033], -[1,2343,16884], -[0,16886,16887,16888,2537], -"clap", -[0,16843,25038,8335,25039,25040,8353,26364], -[0,21662,8357,5500,8359,4874,91], -[0,2844,7020], -"json-to-ast", -[1,2343,16893], -"walker", -"lexer", -[0,0,0,16895,2523], -"jquery-test-runner", -[0,89,6649,10057,6355,25054,1542], -[1,2343,16899], -"features", -"web-features", -[0,0,0,16901,2399], -"stages", -[0,2814,5284,1388,6082], -[1,2343,16903], -[0,16904,16905,2514,2537], -[0,2814], -[0,2228,4039,2203,842,25088,25063,2291,25090,3006,25070,25074,16894,25076,2253,2260,23178], -[3,7014,10], -[1,2343,16908], -[0,0,16909,16910,2443], -[0,4874,2899,91], -[0,14357,17180], -[3,16857,15], -[2,16911,10441], -[1,2343,16917], -"advanced", -[2,16911,16914], -[2,16911,2994], -[0,16920,16921,16922,2537], -"optimise", -[2,5505,5218], -[0,25106,18420,2070,2821,3368], -[0,1109,1317,1505,2814,2272,3183,2899,3257,4019,4146,4294,2924,4677], -[0,14438,24856,25109], -"@jscpd/badge-reporter", -[1,2343,16925], -[0,0,16926,16927,2537], -[0,10615,1177,1903,1937,1948,2228,25074,2256,2277,23165,2283,17565,25060,1894,2907,3980,4042,11802,4060,4255], -[0,977,16358,1388,5808,10906,5576,2821,1389], -[2,27440,27441], -[1,2343,16930], -[0,16939,16940,16941,4139], -[3,4856,9], -"okidar", -[2,16931,16932], -[2,7632,16558], -[3,12842,11], -[2,16935,4467], -"urndown", -[2,7750,16937], -[0,1139], -[0,3421,1111,2899,1177,4042,4167,2193,1317,1505,2064,4073,811,816,19232], -[0,4745,57,1753,6713], -[1,2343,16943], -[0,16945,16946,16947,2399], -"csrf", -[0,58,12184,1525,1676,1696,2070,25125,27534,1997,25126], -[0,442,8719,842,8712,16145,4874,1527,1567,1652,1177,1895,1939,1955,1192,2829,22509,22511,1894,4039,91,4523], -[0,25135,1745], -[1,2343,16949], -[0,16951,16955,2514,2537], -"@acemir/cssom", -[0,1512,1525,2151,25141,16923,25147,25144,25148,25142,25146], -[2,812,1177], -"ould", -[2,7747,16953], -[0,5536,4864,4874,7677,3363,4474,4493,91,1984], -"tsv", -"generation", -[1,2343,16959], -[0,16960,16961,16962,2487], -[0,1437,1481,1525,25154,2004,2021,2070,2654,2822,25156,25160,15555,1209,3181,12118,15371,3741,25162,814,4296,4300,25163,25164,21956,25165,4736], -[0,1429,1596,6474,2272,2899,3954,4037,4193,4196,25168,25170,4734], -[0,19271,4525,671,9654,25172,2649], -[1,2343,16965], -"@bramus/specificity", -[0,16967,16968,16969,2537], -"coffeelint", -[0,58,25177,7639,1362,25178,1874,25179,21226,3105,3107,3127,3188,25181,4300,4545], -[0,1091,2323,2384,2449,3421], -[0,1745,5284], -[1,2343,16972], -"csv-spectrum", -[0,16973,0,16974,2537], -[0,16053,17786,25190,17788,1776,25193,17798], -[0,1776,5592,13325,8626,5284,1745], -[1,2343,16976], -[0,16977,0,16978,2523], -[0,16053,1519,1522,25203,1727,2826,4783,17798], -[0,1776,1783,5592,1179,5284,676,1745], -[1,2343,16980], -[0,16981,16982,16983,2523], -[0,16950,16928,16964,15956,1638,25211,25212,2623,2661,2674,2750,3493,25213,25215,4454,4548,25216,23201,15502,25217,19851], -[0,23591,1177,1937,1953,2203,2822,3181,2899,25221,3401,3456,3549,4135,4153,4441,27602,25224], -[0,965,1936,7102,12616], -"csv parser", -[1,2343,16987], -"parse csv", -[0,16988,16992,16983,2523], -[0,25231,25232,1638,2654,25233,3493,705,19851,4738], -"csv to json", -"csv convert", -"tojson", -[0,1389,1512,2665,2272,16112,2276,3560,3760,25238,4652], -" csv to json", -[2,6270,16993], -"csv-json", -[1,2343,16997], -[0,0,16998,16999,2537], -[0,1596,2228,2240,14352,2759,2899,3954,4019,25244], -[0,1398,1867,5284,1781,3053,3065,1871,1646,4990], -[2,1649,6451], -"cucumber-", -[2,17001,6466], -"duration", -[1,2343,17005], -[0,17012,17014,2514,4139], -"enerator", -"is-generator", -[3,4143,10], -[2,17008,1851], -"stack-chain", -[2,16240,1592], -[0,200,15014,2021,2654,1209,3181,4300], -"ansi-html", -[0,1149,1389,1566,13985,1596,2759,2292,3211,2276,3758,3954,25251,4193,15136,25253,25256], -[1,2343,17016], -[0,17017,17022,17024,2523], -[0,1437,3074,3545,15826,4425,22972], -[3,1976,18], -[2,17018,4414], -"riteway", -"updtr", -[0,2272], -"unique", -[0,2272,16237,4525,1671,671,2649,25264,16238,3721], -"unique id", -[1,2343,17027], -[0,17028,17029,17030,2537], -[0,25269,25272], -[0,6503,4874,1009,1011,1177,1886,1938,2899,3421,4474,91], -[0,1781,17420,1641,15253,6813,25276,25277,1644,57,2841,25279,200], -"ospath", -[1,2343,17033], -[0,0,17035,2514,4139], -"lazy-ass", -[0,4257], -"blob-util", -[3,8129,9], -[1,2343,17043], -"@cypress/xvfb", -"zzle", -[2,6545,17040], -[2,17037,705], -[0,0,0,17048,34352], -"more-types", -[2,14614,17044], -[3,4008,11], -[2,17046,6509], -[0,1781,2844], -"cypress.io", -"mocks", -"spies", -"stubs", -[1,2343,17054], -[0,17055,17056,17060,2537], -[0,975,983,15951,1437,1457,8098,7614,2712,2856,3083,25292,4200,25294], -[0,4874,1540,2182,2675,33479,30889,4400,4507,91], -[3,13848,19], -[2,17057,3172], -"longest", -[0,6671,36,21147,8173,8172,25094,3212,8788,1973,5472,4030,2382,28726], -[1,2343,17062], -[0,17063,17064,17065,2399], -[0,1417,7272,2756,17827,3433], -[0,5517,13614,23237,10979,27571,27016,19325,1159,9254,1177,2708,3410,4103,4389], -[0,1781,1646,7185,3428,6333,7077], -[1,2343,17069], -"d3-axis", -"d3-brush", -[0,0,0,17070,2523], -[0,1781,1646,7045,6953], -"d3-chord", -[1,2343,17073], -[0,0,17076,17077,2443], -"d3-contour", -"d3-delaunay", -[0,1593,1177,1903,1938,1954,1958,1970,3400,3954,4042,4048,4055,4067,4073,4193,4384,25313], -[0,1781,2856,1925,6778,5286], -"d3-dispatch", -[1,2343,17084], -"d3-drag", -"d3-dsv", -"d3-ease", -"d3-fetch", -[0,0,17085,2514,2537], -[0,2899,1177,4039,91,4874,6503,1011,1009], -"d3-force", -[1,2343,17088], -[0,17094,13658,17095,2537], -"d3-format", -"d3-geo", -"d3-hierarchy", -"d3-interpolate", -"d3-path", -[0,21224], -[0,3917,6033,2090,1781,2150,2151], -"d3-polygon", -"d3-quadtree", -"d3-random", -"-chromatic", -[2,1655,17099], -"d3-time", -"-format", -[2,17101,17102], -"d3-timer", -[1,2343,17106], -[0,0,17109,17114,2523], -"d3-transition", -"d3-zoom", -[0,16638,16641,1429,1177,25328,2899], -"@observablehq/plot", -[3,17110,14], -[2,17111,7047], -"topojson-client", -[0,1781,2844,2860,1155,7020], -"visualiz", -[2,17115,5218], -[1,2343,17118], -[0,17119,17120,17123,2523], -[0,4430,25336], -[0,4389,19987,18718,8924,5710,2012], -"intern", -"internmap", -[0,1781,3101,22115,57,1149,7119], -[1,2343,17126], -"d3-module", -[0,17127,17131,17133,4139], -[0,3242,25343,4135,25355,25346,25353,3052,25347,25350,3051], -"histogram", -"bisect", -"shuffle", -[0,3413,3421,1157,1429,2899,4193,1177,1566], -"stic", -[0,2038], -"statistics", -[1,2343,17136], -[0,17137,17138,2514,2523], -[0,53,25363,17144,3467,3527], -[0,25366,4874,26142,1415,668,1177,1895,3171,3181,3445,1894,4042,4448,91], -[1,2343,17140], -[0,0,17141,17143,2537], -[0,4874,7677,20085,4493,91,1984], -"uniqid", -[0,6649,6710,5995,25372,89,970,5122,3857,5123], -"@jspm/plugin-rollup", -[1,2343,17148], -"selection", -"data-join", -[0,17149,17150,17151,2487], -[0,25377,3486,20508,3923], -[0,4449,2228,2907,1177,1317,2240,1389,3541,91,2665,25379,2236,2281,25383], -[0,2056,25386,25388], -[1,2343,17153], -[0,0,17154,17155,2487], -[0,4172,1192,2675,1177,23535,4468,4474,1894,91,53,2990,1387,1540,1938,1895,1955,2780,1011,1009,1915], -[0,2038,1388], -[1,2343,17157], -[0,0,17158,17160,2537], -[0,2025,2759,2899], -"dable", -[0,2038,10368,15103], -[1,2343,17162], -[0,17163,17168,17170,2487], -[0,14416,4449,2070,3171,25404,4747,15643,1209,3078,3188,4039,1544,1457,3181,4218,2659,4227,1364,2215,12930,3781,11804,25403,13388], -[2,21029,17165], -" plugin", -[2,21045,17169], -"postcss-js", -[0,1429,13333,2899,17050,4193,4707,1177,1649,4650,3758,4342,1389,2878,3752,4196,25411,1436,2900,2766,2898,192,1431,2871,4131,1954,1938,25407,2904,6063,1958,2881,25410,1903,1970,2895,22559,6061,2876], -"ails", -[0,2297,25415,8791,2297,676,5284,5472,1973,21004,25416], -"laravel", -[1,2343,17173], -[0,17174,17175,17176,2487], -[0,9421,1209,25421,3181,18868,1573], -[0,3377,1377,1429,2297,2899,4193,4453,12851,1177,814,4650,1389,4196,91,3400,2766,2898,15051,1951,2881], -[0,25425,25427,25429,1389], -[1,2343,17178], -[0,17182,17185,17186,2537], -"reverse", -"binary", -"opposite", -[0,3760,14336,25092], -"invert", -"switch", -[0,2228,1177,2307,2239,2291,3006,1954,2234,1938,1958,1903,1970,2285,2290], -[0,25425,25436,14336,25437], -[1,2343,17188], -[0,0,0,17192,2537], -"@cap", -"temulation/get-parameter-names", -[2,17189,17190], -[0,2297,25425,1429,2899,4170], -"faker-bb", -[2,7526,17193], -[2,9769,1676], -"rss-parser", -[2,2032,2663], -[2,4364,17197], -"lexxy", -[1,2343,34442], -[0,4707], -[0,1429,2297,2899,4193,4255,2900,192,4131,6063,22559,6061], -[0,25425,25436,3195], -"@date-", -"fns/docs", -[2,17204,17205], -[1,2343,17208], -[0,17211,17224,17225,2523], -"@date-fns/utc", -[3,5530,19], -[0,11935,14024,11938,11940,11943,3181], -"@types/bun", -"@vitest/", -[2,17213,1388], -[3,1198,17], -[2,2701,7188], -[2,17215,17216], -"bun", -"cloc", -"js-fns", -"jscodeshift", -"issing-exports", -[2,10634,17222], -[0,192,5467,21970,6061,6063,16608,1429,1509,1177,1903,1938,1954,1958,1970,2228,2240,2298,2307,2675,25453,2297,25455,2895,2900,25458,2899,17050,4019,4131,4193,4196], -[0,25425,25427,25462,4504,2759], -[1,2343,17227], -[0,17201,17228,17229,2537], -[0,2228,2258,2273,2298,2766,2297,2898,3524], -[0,25425,25436,1388,2887,25468,25470,25472,25473,17632,25474,25476,25479,25481,25484,25485], -[1,2343,17231], -[0,17233,17234,17235,2523], -[2,2553,20], -[0,2890], -[0,1429,25492,14416,1177,1903,1958,1970,2228,2239,2240,2291,2307,2316,2297,3006,25493,3752], -[0,25425,25436,13530,17631], -[1,2343,17237], -[0,17238,17241,17245,2537], -[0,2755,4707], -"ectory", -[2,4015,17239], -[0,192,5467,6061,6063,16608,2675,2297,2900,2899,3534,4131,4255], -"sleep", -" wrapper", -[2,1149,17243], -[0,2297,5472,25425,25436,25501], -[1,2343,17247], -[0,6203,17248,17249,2523], -[0,1429,14416,1177,1903,1958,1959,1970,2228,2234,2239,2283,2285,2290,2291,2307,2316,2297,3006,17050,4193,4196], -[0,25425,25436,7298], -[2,17257,24717,17258], -"debouncing", -"invoke", -"interval", -[1,2343,17255], -[0,17256,17259,17260,2523], -[0,2766], -[3,7621,18], -"-ascii", -[0,2228,2675,2297,1177,2765,192,4131,1954,1938,6063,16608,1958,1903,1970,2895,6065,22559,6061], -[0,25425,25514,2765], -[1,2343,17262], -[0,17263,17264,17265,2487], -[0,3183], -[0,1429,1177,1903,1958,1959,1970,2228,2234,2239,2285,2291,2298,2307,2297,2878,2881,2895,2918,3006,2899,3203,4193,6061,6063,4131,192,5467,2675], -[0,25425,25514,2899], -"decamelcase", -"lowercase", -[1,2343,17270], -"nano-spawn", -[0,17271,17280,17282,2537], -[0,1437,3074,4294], -"-tar", -[2,1679,17272], -"bz2", -[2,17273,17274], -"gz", -[2,17273,17276], -[3,17273,11], -[2,17278,4560], -[0,1429,2228,2239,2258,2273,2285,2298,2314,2766,2878,2889,3006,2899,3524], -"strip-dirs", -[0,25425,25462,2899,1429,1687,2568], -"is-jpg", -[1,2343,17287], -"bzip2", -"tar.bz", -[0,17289,17290,17291,2537], -"tar.gz", -[0,1209,3524], -[0,1177,1903,1959,1970,2228,2234,2239,2285,2291,2298,2307,2766,2297,2898,3006], -[0,25425,25436,3521], -[1,2343,17301], -[3,4852,13], -"plugin-m", -[2,17294,7912], -[2,17293,17295], -"fail-test", -[2,10740,17297], -"deprecation", -[2,1921,17299], -[0,0,17320,17324,2399], -"only-tests", -[2,16645,17302], -[3,1955,15], -"erfectionist", -[2,17304,17305], -"yml", -[2,1921,17307], -"jsonc-", -[2,17309,67], -[2,4488,10441], -[2,3390,17311], -"curly", -[2,3704,17313], -"should-s", -"emantic-", -[2,17316,3979], -[2,17315,17317], -[2,13125,67], -[0,1429,2228,2297,2899,2907,1177,2307,2239,2898,1954,1938,1958,1903,1970,2895], -" string", -"line string", -[2,13862,17322], -[0,2297,25425,25514,2907], -[1,2343,17326], -[0,17327,17328,17333,2487], -[0,1457,1675], -[0,53,5889,87,1177,2766,2297,2881,2898,2904,4042,4045,4048,4055,4067], -"dupes", -" duplicates", -[2,7293,17330], -[3,232,8], -[0,3595,6778,2297,5260,1204,6813,1932,7121,25427,25425,25544,4042], -[1,2343,17338], -"deduplicate", -"deduplicat", -[2,17336,6600], -[0,0,17339,17340,4139], -[0,2307,2228,2239,2234], -[0,25425,25436,25550], -[1,2343,17343], -"is-obj", -[0,17344,17345,17346,2537], -[0,25555,12826,824], -[0,192,5467,6061,6063,16608,4864,25558,4874,2675,2765,2297,2898,4131,91], -[0,25425,25436,7177,12825,12826], -[1,2343,17348], -[0,0,0,17349,2537], -[0,2297,25425,4193,3212], -[1,2343,17351], -[0,17353,17359,17360,2523], -"json-ptr", -[0,2215], -[3,1715,10], -"change-", -"adr", -"tracking", -[2,17355,17357], -[0,8780,1414,1177,2766,2297,25571,2881,2898,1894,4042,25575], -[0,25425,25427,11939,5284], -[1,2343,17368], -"decision record", -"kewlr", -"any decision record", -[2,17379,17381], -"simple-assert", -"lcov-re", -[0,9719,17378,17385,2443], -"sult-merger", -[2,17367,17369], -[3,1903,16], -"rict", -[2,17371,17372], -"@js-temporal/polyfill", -[3,1935,15], -"ilenames", -[2,17375,17376], -[0,1429,1596,2899,3400,3421,4193,4196], -[3,25135,11], -"chai util", -"al decision", -"deep equal", -"object equal", -[2,17365,17394], -[0,25425,16237], -[1,2343,17387], -[0,17408,17417,13533,4139], -"array-b", -"-byte-length", -[2,2347,17389], -[2,17388,17390], -"es-get-iterator", -"is-a", -" record", -"is-arguments", -"is-ar", -[2,25135,17401], -"ray-buffer", -[2,17396,17398], -"is-date-object", -" decision", -"gex", -"is-regex", -"is-s", -"hared-array-buffer", -[2,17404,17405], -[2,6961,7313], -[0,2070,3181,4689], -"side-channel", -"-boxed-primitive", -[2,4707,17410], -"which-", -[2,17412,6910], -"typed-", -"typed-array", -[2,17412,17415], -[0,48,53,85,87,192,5467,16405,1193,1429,1431,1610,1177,1938,1955,2675,2759,2765,1192,2297,2878,2881,2900,2923,2990,3150,2899,3697,1894,3758,4257,2924], -"available-typed-arrays", -[1,2343,17427], -"to", -"has-proto", -"has-t", -[2,17397,17394], -"yped-arrays", -[2,17422,17424], -"software quality", -[0,0,7923,17428,4139], -[0,8652,2926,25591,6938,25592,25594,25595,25596,2927], -"rehype-katex", -[1,2343,17431], -[0,0,0,17432,2487], -[0,2927,3925,364], -[1,2343,17434], -[0,17435,17441,17442,2487], -[0,25605], -"is-m", -"able-object", -[2,4688,17437], -[2,17436,17438], -"jsmd", -[0,18073,29457,11976,15288,7677,4039,25609,4481,1984,26108,26131,26132,26124,26104,29233,26123], -[0,6803,6692,1542,2325,9553,25611,13901,5995,25513,1552,3230,7827,3259,14873,3151,3300,3084,6650,1416], -[1,2343,17444], -[0,0,17445,17446,2537], -[0,1999,4579], -[0,1111,200,1473,1512,7201,7009], -"is-path-cwd", -"is-path-", -"inside", -[2,17448,17449], -[1,2343,17452], -[0,17454,17463,17464,2523], -"folders", -[0,1999,25625,1676,1209,21104,3932,4435,25623,1511,1525,2727,4025,2179,25624], -"directories", -"trash", -"unlink", -"cleaning", -"rmrf", -"friendly", -"gulpfriendly", -"filesystem", -[0,3519,3421,4481,1429,2763,4389,2675,2899,3259,4193,1177,3260,4039,1787,3203,4246,25635,4474,25633,1894,4387,1596,1610,2861,4196,91,4874,21106,2990,25629,25634,1431,4232,25632,1938,25628,25636,1895,1955,13850], -[0,14872,3766,14873,25638,3259,25639,4246,12593,3243,9381,25640,6147,1747,18035], -[1,2343,17466], -[0,17467,17469,17470,2537], -[0,19185,2071,17471,2807,2822,3183,29943,3527,3530,25648,4300,4763], -"temp-write", -[0,554,17212,7637,7892,20374,4891,11112,19706,32765,4494,91], -[0,19748,25658,1227,200,25660,4796,13735,4797,11337,25661,6971,6813,1586,2100,5284,671,25663,25664,18750,6646,23255,3383,20529,553,91,25667,25669,17507,664], -"formatly", -[1,2343,17473], -[0,0,17476,17478,2487], -"in-range", -"time-", -[0,1177,2205,25675,3072], -"time-span", -[0,1623,3583,12616,3195,25501,25677,17631,25550,25678,25679,25682], -"defer", -"out", -"timeout", -[1,2343,17483], -[0,17486,0,17488,2537], -"settimeout", -"tick", -[0,3171,4734,1676,25688,3441], -"threshold", -[0,7200,6997,6949], -[1,2343,17490], -[0,17491,17499,17502,2537], -[0,1080,1560,1562,16358,25696,14858,1833,1869,2145,25699,2657,2941,3173,3440,3494,4266,1000,4590], -"@vue/c", -"ompiler-sfc", -[2,17492,17493], -"callsite", -"deps-", -"deps-regex", -"is-c", -[0,1414,25710,4216,4255,4342], -"ore-module", -[2,17498,17500], -[0,5122,1896,27,13527,5130,2663,16196], -"patch-", -"patch-version", -[1,2343,17506], -[0,17508,17509,17510,2523], -"unused", -[0,25717,7810,13055,25718,2141,4507,4763], -[0,5517,11976,107,5522,28385,27134,36694,24819,9240,2934,4342,4483,36684,4494,91], -[0,2934,25723,15237,1781,20443,57,1669], -[1,2343,17512], -[0,17513,17516,17517,2443], -[0,25718,25728,1000], -"deprecate", -"deprecated", -[0,1909,2675,2934,2899,3421,4170,4342,1906], -[0,25732,1781,25723,2934,20443], -[1,2343,17519], -[0,0,17520,17521,2523], -[0,1503,1192,3130,4255], -[0,2934,2663,2940], -"is-relative", -[3,9488,17], -[1,2343,17525], -[0,17530,17531,17532,2487], -"cjs", -"detective-cjs", -[3,9509,10], -[2,17528,4354], -[0,1413,1437,25743,3440,25745], -[0,1366,1414,1909,2934,25748,25749,4193,4342,1906], -[0,2934,2663,2942,3073], -[1,2343,17534], -[0,17535,17536,17538,2537], -[0,1676,2941], -[0,1177,1903,1958,1970,2759,2934,2948,2899,4170,4342], -"indentation", -[0,2934,2663,2944,25757], -"identify", -"space", -[1,2343,17542], -[0,17543,17544,17545,2399], -[0,1676,2657,2941,3509], -[0,2934,3421,1437,2675,2899,1177,2114,4342,25763,3985,2990,192,2829,3995,1982,5467], -[0,2934,2663,4082,38], -"mm", -"egg-bin", -[1,2343,17549], -[0,17550,17552,17553,2443], -[0,1676,25771], -"ontributor", -[0,1177,1903,1938,1954,1958,1970,2759,2934,2899,4342], -[0,2934,2663,2090,2947,25774], -[2,1884,1347], -[1,2343,17556], -[0,17557,17558,17559,2537], -[0,3291,3754,25782,1552,4747,1209,4333,2026,1364,25781], -[0,1429,1149,2899,4193,4170,4342,1506], -[0,12692,3768,6812,1552], -[1,2343,17561], -[0,17562,17563,17564,2537], -[0,25789,1687,1177,25791,25792,2000,25793,2036,2607,2851,2854,3188,4127,4227,4232,4351,25794], -[0,1501,25796,1948,25797,4039,4135], -[0,1973], -"grunt-exec", -[3,2300,12], -[2,17566,2759], -[2,2235,2924], -[1,2343,17570], -[0,17571,17572,17573,2523], -[0,9478], -[0,1166,4135,25814,4481,1906], -[0,25816,15525,3378,4750,3383,6661,25188,1237], -[1,2343,17575], -[0,0,17576,17587,2537], -[0,2861,25821,1317,25822,25823,2768,1776,1209,3152,3736,25825,4019,25826,4545], -"@types/diff", -"gan.js", -[2,12456,17578], -"@types/nopt", -"all-", -"ibutors-cli", -[2,10741,17582], -[2,17581,17583], -[3,1945,18], -[3,3463,9], -[0,7189,6564,6681,6887,614], -[1,2343,17593], -[2,2036,2091], -"image-", -[2,17590,11526], -"is-ci-cli", -[0,0,17594,17596,34352], -[0,4248,2675,2297,2899,4193,1177,25846,4042,25850,25840,4535,2900,2918,2990,25844,25848,25851,2897,8850,2891,25843,2881,2912,2895,2910,25853,25838], -"side-by-side", -[0,25855,3053], -"line-by-line", -[1,2343,17601], -"difftohtml", -"colorized", -[0,0,17602,17603,2399], -[0,1317,2064], -[0,2967,2965,2966,23119,1871,19728], -[1,2343,17605], -[0,0,17606,17607,2487], -[0,20340], -[0,2966,25866,6983,1671], -"data-s", -[2,14386,3769], -[2,17608,17609], -[1,2343,17614], -[3,1915,23], -[2,17612,8861], -[0,17624,0,17628,4139], -"Directed Graph", -"directed", -" graph", -[2,17616,17617], -[2,17616,2218], -[3,1718,14], -"Directed", -"digraph", -"java", -[0,3420,2714,4390,3532,4248,3348,1437,2020,2742,3478,4207,10761,4747,25871,1680,24004,3483,4039,4135,1842,2822,3479,4430,25872,2151,2182,2720,3093,25873,13786,25874,1513,2753,2777,3181,25875,666,2188,3249,27921,91,25878,1595,2200,25879,25880,4174,2704,25881,3393,25884,4025,25886,4290,4748,25887,692,20312,9322,25888,25891,25892,3386,635,25893,26567,4728,643,3397,9479,10744,4588,16310,25898,25901,16307,25904], -"java script", -"JavaScript", -"type script", -[0,2968,6646,7117], -"vertex", -"Vertex", -"edge", -"Edge", -[1,2343,17638], -"graph theory", -"Graph Theory", -"graph ", -[2,17636,6956], -[0,17639,17646,17650,2487], -[0,25910,20314,4484], -"weighted", -"Weighted", -"unweighted", -"Unweighted", -"adjacency", -"Adjacency", -[0,811,8850,816,1009,1011,25917,25920,1429,1414,1437,1595,1610,1177,2151,15843,2070,2205,2228,2240,2247,2256,2291,2311,2314,25922,2777,25923,25925,21898,3183,2899,25928,3400,3518,25929,3541,1862,25930,814,4042,4073,4076,4135,4172,4436,4474,91,12247], -"connectivity", -"cycle", -"acyclic", -[0,7236,7303,6885,1623,6965,7025,6898,6932,7258,695,7228,6766,7028,6912,57,7121,6962,6968,590,592,5376,7198,6705], -"traversal", -"depth", -"Depth", -[1,2343,17655], -[0,0,17682,17684,2537], -"breadth", -"Breadth", -" first search", -[2,17652,17658], -"dfs", -"DFS", -[2,17656,17658], -" search", -[2,6395,17663], -[2,17656,17664], -"bfs", -"BFS", -"algorithms", -[2,17636,17668], -"repre", -"sentation", -[2,17670,17671], -[2,17636,17672], -" matrix", -[2,17647,17674], -" list", -[2,17644,17676], -"adjacency ", -"matrix", -[2,17678,17679], -"node ", -[0,48,53,87,192,5467,442,27928,19344,1193,1610,1622,1700,1701,1177,1895,20281,1938,1939,1953,1955,1982,2203,2675,1192,695,25936,2990,3144,3400,1894,4257,4294,4523,2924], -"node degree", -[0,2924,1194,695,6766,7228,1623,7121], -[1,2343,17694], -"sparse graph", -"dense graph", -"directed ", -[2,17688,17648], -"acyclic graph", -[2,17688,17690], -"DAG", -"topo", -[0,17703,17707,17708,2537], -"topologic", -"topological", -"sorting", -"strongl", -"y connected components", -[2,17698,17699], -" digraph", -[2,17640,17701], -[0,25946,25948,25944], -"weighted edge", -[2,17688,17704], -"structures", -[0,3421,4389,3348,1090,1290,2554,4255,91,4874,87,25951,25950], -[0,2970,25954,3101,18035,1747,1542,13901,1781], -" structure", -[2,2382,17709], -[3,17610,14], -[2,17710,591], -[2,6957,591], -[2,17711,591], -"in data structures", -[3,17715,17], -"DataStructure", -[2,17717,591], -[1,2343,17725], -"iterative", -"Node.js", -"CommonJS", -"UMD", -"esmodule", -[0,17728,17736,17738,4139], -"java.util", -"c++ stl", -[0,25960,15160,25959], -"c++ std", -"Python collections", -"System.Collections.Generic", -"STL", -"stl", -"Collection", -"Collections", -[0,25964,3421,2070,4389,4400,2080,4039,12694,1804,2554,640,4255,1610,25963,25968,15164,25974,25969,1705,25972,25967], -"insertion", -[0,25954,2970], -"deletion", -"OOP", -[1,2343,17742], -[0,17743,17744,17708,2443], -[0,23040,25983,25987,25990,25981,25985], -[0,3421,4389,1087,4193,1090,2080,12694,25995,26000,2554,4255,25963,1389,4092,25992,25996,1537,25994,25997,1705,25951,25967], -[1,2343,17746], -[0,0,17747,17748,2443], -[0,1166,26007,26008,26009,26006,26010,26014,3273,26015,4441,1906], -[0,2975,26006,26017,8893,1871,17354,1687,2062,2163,9549,9550,3797,26020,6109,2585,3529,19051], -[1,2343,17750], -[0,17755,6538,17756,2399], -"voice", -[2,7659,17751], -"backend-", -[2,17753,10057], -[0,635,9510,26026,1687,3181,3386,3483,4390], -[0,3378,3409,2977,200,1687], -"product", -"productivity", -[1,2343,17760], -[0,17761,17762,17771,2523], -[0,635,9479,643,1458,3386,3483,3727,29698,3917,4135,4174,9455], -[0,9516,26037,9515,9449,1437,18248,26035,4384], -[2,7659,4729], -"lodash.s", -"nakecase", -[2,17764,17765], -"builders", -[2,7659,17767], -"formatters", -[2,7659,17769], -[0,3378,3409,2977,200,9527,2979], -[2,7659,1735], -[1,2343,17774], -[0,17775,6538,17776,2523], -[0,635], -[0,3378,3409,2977,200,3358,2980,26044], -[1,2343,17778], -[0,0,17779,17780,2537], -[0,48,53,5712,5788,87,94,8850,10615,1208,1429,1597,26049,1610,32572,2759,1192,25913,26052,3183,2899,3400,3421,26053,4005,4039,4042,4484], -[0,7285,7310,6988,6847,5131,7211], -[1,2343,17782], -[0,17783,17784,17785,2487], -[0,2051,2107,10392,26060,2747,3932,814], -[0,1509,1177,1889,1895,1954,2022,2899,3421,4193], -[0,9753], -"cache-point", -[2,9480,6769], -"file-set", -[1,2343,17791], -"reduce-", -[0,0,17792,17794,2537], -[0,11976,5087,4874,8157,1595,1192,91,4579], -"without", -[0,1595,1541,8309,7193], -[1,2343,17796], -[0,0,0,17797,2487], -[0,26072,1823,26073,1936,2814,163,26074,89,4500,1002], -"walk-back", -[1,2343,17802], -"dmd-", -[3,2475,9], -[0,17806,17807,17808,4139], -"ample", -[2,17801,17803], -[2,17800,17804], -[0,1525,2992,3170,6479,26379,4745], -[0,5522,107,192,5467,442,7677,22839,26081,1610,1177,1895,1953,1955,10964,2675,3211,1894,4135,91,1984], -[0,671,3358,2989,1177,1894,4320,1501,19269,4354,1671,2649], -[1,2343,17810], -[0,17811,17812,17814,2537], -[0,26087,26090,2752,2753,26092,26095,26099,3478,4094], -[0,1503,1702,22845,2990,3074,3421,3697,4237,13351], -"jsdoc2md", -[0,200,5957,3392,9000,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], -[1,2343,17816], -[0,17817,17820,6226,2487], -[0,1486,1511,2017,3077,4038,4726], -"agnostic", -"dnd", -[0,13352,4094,13351], -[1,2343,17822], -[0,17823,17824,2514,4139], -[0,26114,26111,5438], -[0,26121,26117,10675,26122,10706,4484], -"-protocol", -[2,1730,17825], -"jsonify", -[1,2343,17831], -"rpc", -"callbacks", -[0,17832,17833,17834,2523], -[0,1209,3183,1387,26129,1549], -[0,2899,4193,1177,3215,2759], -[0,1098,14576,2947,36,5001], -"@ffmpeg-installer/ffmpeg", -[3,1733,16], -"mmon", -[2,17836,17837], -[1,2343,17840], -[0,17841,17842,17843,2487], -[0,3459,1594,710,1512,3237,1544,1457,26136,4150,2012,3427,26137,23009], -[0,2899,1177,2272,4342], -[0,6400,5001,4990,36,27,200], -[1,2343,17845], -[0,17854,17855,2514,2537], -"@puppeteer/browsers", -[3,13394,12], -"ium-driver", -[2,17847,17848], -"geckodriver", -[2,13391,17850], -[2,5680,13392], -[2,13391,17852], -[0,1457,26144,15767,4729], -[0,1509,2899,4170,4193], -[1,2343,17857], -[0,17858,17860,17861,2537], -[0,16166,2070,25923,2822,23444,3006,1209], -"posthog-node", -[0,2228,2273,2283,23466,22081,2305,3752,4193], -[0,21779,4745,16166,2228,1541], -[1,2343,17863], -[0,17864,17865,17866,2537], -[0,1144,3249,3539,6477], -[0,2228,2240,26158,1906], -[0,4796,2070,2228,3001,3529,26160,13017,3209,3005], -[3,246,8], -[1,2343,17869], -[0,0,17870,2514,2487], -[0,1596,1177,1954,1192,1894,4257], -[1,2343,17873], -"mecano", -[0,17874,17875,17876,2537], -[0,25190,3088,26169,26172,26173,26175,26178,26179,26180,26181,26182,26183,26184,26187,26189,26190,26192], -[0,3310,1187], -[0,3304,36,5122,4990,6400,5001,1594,3171,4030,3212,5592,2658,3088,5995,4967,26196,2665,27,13333,2671], -"@balena/dockerignore", -"docker", -[1,2343,17880], -[0,17882,17883,17885,2537], -"docker-modem", -[0,25377], -[0,1175,1178,1195,1198,14211,1267,26204,1290,26205,1408,1594,1895,2228,13831,2236,2253,2256,2281,2283,26208,2291,3198,26210,18463,2311,26212,17568,2675,2990,3006,2899,1894,26213,12936,91,4535,2924,4681], -"docker.io", -[0,26216,26217,13901,26218], -[1,2343,17887], -[0,17888,7923,2514,2443], -[0,1170,1676,26223,4747], -"@bevry/pluginloader", -"ambi", -[1,2343,17894], -"ansistyles", -"bal-util", -[0,17925,17932,17933,2537], -"caterpillar", -"docmatter", -"-baseplugin", -[2,1737,17897], -"eachr", -"envfile", -"errlop", -"-grouped", -[2,13771,17902], -[2,12598,17903], -"extendr", -"extract-opts", -"ignorefs", -"xtorbinary", -[2,8828,17908], -"jschardet", -"lazy-require", -[3,3732,9], -"title", -[2,17912,17913], -"query-engine", -"rfc-log-levels", -"safefs", -"ps", -"safeps", -"scandirectory", -"taskgroup", -"typechecker", -"unbounded", -"watchr", -[0,1595,1676,2071,26228,4747], -"@bevry/", -[3,17583,12], -[2,9787,17927], -[2,17926,17928], -[2,15340,6706], -"kava", -[0,1178,14080,1253,1264,1267,1734,1767,1177,1903,1938,1939,1954,1958,1966,1970,1192,3446,26230,4135], -[0,26232,26234,6698,3015,671,4749,3378,9654,1965,1644], -"projectz", -"valid-", -[2,17935,7204], -[1,2343,17941], -" and deployment", -[2,6147,17938], -" manage", -[0,0,0,17949,2537], -"ment system", -[2,17940,17942], -[2,1563,17943], -"dms", -[2,1746,17943], -" agnostic", -[2,1351,17947], -[0,5260,7268,614], -"templating", -[2,11607,5001], -[1,2343,17953], -[0,0,0,17954,2537], -[0,5194,5260,7268,614], -[1,2343,17956], -[0,0,0,17957,2399], -[0,26249,3426], -[1,2343,17959], -[0,0,0,17960,2537], -[0,26249,1420], -[1,2343,17962], -[0,0,0,17963,2523], -[0,26249,26258], -"docsify", -"docsify.js", -"tabs", -[1,2343,17968], -[0,0,0,17969,2537], -[0,26249,1675], -[1,2343,17975], -"@textlint/markdown-to-ast", -"anchor-markdown-header", -"section", -[2,9787,17973], -[0,0,0,17976,2523], -[0,26249,19400], -"bitbucket", -"gitlab", -"ghost", -[1,2343,17981], -[0,0,0,17983,2523], -[2,20413,4699], -[0,26249,3033], -"doct", -"rine-temporary-fork", -[2,17984,17985], -[1,2343,18006], -"globals-docs", -"konan", -[2,3138,14510], -"micromark-", -"util-c", -"haracter", -[2,17992,17993], -[2,17991,17994], -"filepath", -[2,13721,17996], -[3,3999,9], -"ference-links", -[2,17998,17999], -"unist-", -[2,18001,9381], -"vfile-", -[2,18003,16237], -"vfile-sort", -[0,0,0,18010,2523], -"chdir", -"-schema", -[2,1745,18008], -[0,26249,14741], -"jsdoc3", -"nums", -[1,2343,34449], -[0,26249,3038], -[1,2343,18021], -"big-integer", -"-search-bounds", -[2,17180,18017], -"int64-buffer", -"priorityqueuejs", -[0,0,0,18022,34352], -[0,26249,3040], -"semaphore", -[1,2343,18025], -[0,0,0,18026,2537], -[0,26249,26287], -[1,2343,18029], -"cosmosdb", -[0,0,0,18030,2537], -[0,26249,26292], -"cosmos db", -"document ", -[1,2343,18034], -[0,0,0,18038,2537], -"database", -[2,18032,18035], -"nosql", -[0,1209,26249,7268,614], -[1,2343,18040], -[0,0,0,18041,2523], -[0,26249,26301], -"crowdin-cli", -[3,2694,9], -"gifsicle", -[2,18043,18044], -"jpegtran", -[2,18043,18046], -"png", -"optipng", -[2,18043,18049], -[2,18043,4361], -"tcp-port-used", -[1,2343,18054], -[0,0,0,18057,2537], -"tree-node-cli", -[2,15862,1868], -[0,26249,26307], -[1,2343,18060], -"glob-promise", -[0,0,0,18062,2537], -"websites", -[0,26249,3053], -"open source", -[1,2343,18065], -[0,0,0,18066,2399], -[0,26249,7906], -[1,2343,18075], -[2,15774,1722], -"-languages", -[2,6327,18069], -"to-vfile", -[2,9406,2741], -"lru.min", -"offline-search", -[0,0,0,18076,2537], -[0,26249,1698], -[1,2343,18078], -[0,0,0,18079,2537], -[0,26249,3061], -[2,1611,1388], -"height", -"classlist", -[1,2343,18084], -[0,0,0,18085,2523], -[0,26249,3063], -[1,2343,18088], -"domelementtype", -[0,0,0,18090,2523], -"entities", -[0,26249,3065], -[1,2343,18092], -[0,18093,0,18094,2537], -[0,22983,22985], -[0,26249,1283], -[1,2343,18096], -[0,0,0,18098,2523], -"raster", -[0,26249,6925], -[1,2343,18100], -[0,0,0,18101,2537], -[0,26249,3071], -"qunit-tap", -"lodash.sample", -"paths", -"ncludepaths", -[2,8851,18105], -[1,2343,18109], -"math", -[0,18111,18115,18116,2523], -"mathml", -[0,2353,998,1856,17003,26351,26350,26349], -"secure", -"sanitizer", -"purify", -[0,3421,4389,2675,26357,1177,10824,26358,2990,15797,15804,15793,15801], -[0,3073,2942,1676,1409,4709], -[1,2343,18118], -[0,18119,18120,18121,2523], -[0,20040,16232], -[0,1906,1166,4481,4294], -[0,3656,200,8429,6876,7169,5511,2568,20597,2089,20598,6574,3073,6807,7009,8634], -[1,2343,18123], -[0,18125,18126,18127,2537], -[3,4257,9], -[0,1107,1477,4208,4294,4726], -[0,4874,4290,26371,4481,16041,1906], -[0,3073,2942,6807,200,7009,6048,7201,4166,3076,26375,26376,6811,8634,3730,10036,7521], -[1,2343,18129], -[0,18130,18131,18133,2523], -[0,26383,1676,26385,4038,26388], -[0,192,5467,26390,13757,24030,1177,1881,1895,19527,1938,1955,2151,2675,2742,3421,1894,3752,4384,91], -"expand", -[0,6807,3073,15227,202], -[1,2343,18136], -"interpolation", -[0,0,18138,18139,2523], -"substitution", -[0,26398,4874,2228,2240,2247,2253,2256,24293,2273,2281,2283,26399,26400,2765,4474,91], -[0,3073,2942,6807,1388], -[1,2343,18141], -[0,0,18144,18146,2399], -"archive-type", -"ext-name", -[0,26406,1894,91], -"filenamify", -[0,18108,3080,26408], -"is-zip", -[2,4551,1398], -[1,2343,18150], -[0,18151,18152,18153,2487], -[0,1797,1704,26413,1149,1676,7077,2026,26416,1309,1362,2712,3361,1364,4148,26417,26420,26423,26426,26429,4547,26435,26438,26443,26448], -[0,3421,1429,2228,2297,2899,4193,4707,1177,1596,2240,26453,4342,1389,1719,4196,2298,2900,2291,1575,26455,26457,2040,2236,2300,2871,26459,2283,26462,2281,25407,26465,2881,25410,26466,2895,26470], -[0,5122,7096,4030,5592,2026,4031,2934,1303,1965,12593,3259,18037,1550,3230,26472,3243,25638,14873,4217,26473,5130,5131,26474], -[1,2343,18155], -[0,18156,18159,12113,2523], -[0,9673], -"repository", -"tarball", -[0,1389,1839,4384], -[1,2343,18161], -[0,18162,18163,18164,34352], -[0,26484], -[0,4494,2675,4400,1177,1209,1701,4474,91,4874,4870,6494,192,26488,26486,13789,25298,5467], -[0,18035,1747,1804,26490,21687,2117,6671,2703,26492,26493,1388,1999], -[1,2343,18166], -[0,0,18167,18168,2523], -[0,4874,1317,668,3127,3188,1894,4384,4483,4508], -[0,6879,6650,2325], -[1,2343,18175], -"import-from", -"parse-c", -"md-args", -[2,18171,18172], -[2,4182,4562], -[0,0,18176,18177,2399], -[0,6373,968,26503,4042,4057,91,1983,1984,26504,25079,26507], -[0,26509,26510,26511,26512,26513,26514,26516,26517,26520], -[1,2343,18179], -[0,18180,18184,18187,34352], -[0,1149,1326,26528,3263], -[3,3369,12], -"ckage-data", -[2,18181,18182], -[0,1596,2759,3188,2899,3202,4170], -[3,16398,19], -[2,18185,18182], -[0,158,1398,26532,3729,24800,16662,16661,21881,20637,18048,20639,12712,26533,26534,6870,26535,1504,14908,23119,26536,26537,26539,9135,26541,26542,26543,6792,13615], -[1,2343,18189], -[0,18190,18191,18193,2523], -[0,26548,26551,16053,25874,1519,1522,26552,25190,2934,26553,3445,3762,16057,17798], -[0,2829,26192,3310,26556,1187], -"dox", -[0,3088,36,27,13333,2671,5995,2665,3304,5122], -[1,2343,18195], -[0,18196,18197,18198,4139], -[0,1437,1513,1676,1836,16473,25623,26563,2089,2149,2572,26565,2584,1161,2822,26567,26568,3188,3467,3718,12443,9340,3992,3999,26572,26573,4449,18071,4549,18002,4555,12447,3348,12449,4707,4728,26574,4747], -[0,26578,5245,12396,7637,26579,26581,4874,6520,9315,7819,26584,22092,4892,1610,19878,4207,4294,91,4579], -[0,1783,26586,26587,5472,1745], -"spawn-", -"please", -"spawn-please", -[1,2343,18204], -"@types/temp", -[0,18205,18206,18207,4139], -[0,5012], -[0,442,816,6373,1317,19839,1567,1177,1894,23535,4042,4228,4232,1984], -[0,1871,26597,12938,17950,15139], -[1,2343,18209], -[0,18210,18211,18212,2487], -[0,4729,1170,2832,4484,2018,1209,2738,7665,18730], -[0,1177,4508,9241,91,4874,3400,13204,4870,1011,10638,26606,1009], -[0,26608,21009,91,1723,10339,17623,5284,26611,26614,26617,26620,26622,24090,26624,26626,16697,26628,26631,1745,26632,26633,3091], -[1,2343,18214], -[0,18215,18216,18217,2537], -[0,1437,2051,2205,4600,3249,3505,4300], -[0,2228,2899,4170,2240], -[0,1370,2323,17461,21779], -[1,2343,18219], -[0,0,18221,18222,2537], -"bplist-parser", -[0,8780,4874,1166,2215,21537,4400,4481,1906], -[0,7148,3188,7048,17455,17453,7204,6857,3403,5933,7029,26647,26648,6899,7147,2150,17462,16503], -[1,2343,18224], -[0,0,0,18238,2523], -"alex", -[3,14237,14], -"bjs", -[2,18226,18227], -[2,1884,2081], -"fbjs-scripts", -"gulp-d", -"erequire", -[2,18231,18232], -"stats", -[2,18234,4408], -"webpack-st", -[2,18236,2187], -[0,7048], -"draftjs", -"typed-binary", -"richtext", -[1,2343,18243], -[0,18244,18245,18246,2537], -[0,10780,1139,1301,1362,26657,2866,26658,3507,4545,4736], -[0,4874,1389,26662,26663,1177,26664,2899,1241,91,4535], -[0,20697,1936,26666,4718,1783,5980], -[1,2343,18249], -"just-extend", -[0,18251,18257,18261,2487], -[3,5371,20], -[0,7709,15288,26675,26677,26678,26681,26684,26412,26685,29310,1091,1309,1437,8536,6809,1481,21847,23872,2822,2863,3000,3203,3260,3310,3363,3509,3519,3547,3951,4094,4164,4213,4246,4521,17142,1002], -"ring", -"inline-string", -[2,18250,18253], -[2,18250,2278], -"cypress-", -[0,28091,26688,9687,26690,28084,28092,20886,26694,6494,7637,5542,12461,9240,1009,1011,1177,1895,1955,2150,1192,3403,1894,4232,4342,4468,4469,4480,91], -"file-upload", -[2,18256,18258], -[2,2918,4195], -[0,5995,5592,4030,6710,91,18035,30967,28976,6354,28986,29686,26147,29690,13126,7827,25638,3259,4521,12659,1303,5165,18258,13901,6949,29732,29735,30183,6688,30184,33629,14344,29744,3097], -[1,2343,18264], -"dragndrop", -[0,0,18268,18269,2523], -" and drop", -[2,7518,18265], -[3,12322,11], -[0,19181,26706,578,583,587,32379,26707,4870,4874,4880,4883,1009,1011,1497,1637,1177,4828,1961,1209,3286,3561,3566,3613,26710,26712,1894,89,3824,4164,9348,26713,4493,91], -[0,181,26709,13083,4403,26715,26717,89,26720,91,5284,6400,4967,6073,181,26726,1487,17758,26727,4627], -[1,2343,18271], -[0,0,18273,2514,2523], -"tsutils", -[0,19987,19989,19988,2012,7115], -[1,2343,18283], -"dts-critic", -[3,7935,17], -[2,18276,594], -[2,15438,57], -[2,18276,18278], -"versions", -[2,4524,18280], -[2,18276,18281], -[0,0,18291,18292,2487], -[3,15891,13], -[2,18284,4299], -[3,7729,14], -"able-str", -"ingify", -[2,18287,18288], -[2,18286,18289], -[0,4874,1009,1011,7677,1165,1414,1177,1883,1915,2832,26743,2278,4320,5978,91,1983,26744,1984], -[0,26741,26746,1932,26747,590], -[1,2343,18294], -[0,18296,11686,18297,2537], -[2,11513,2527], -[0,3368], -[0,1783,26755,6892], -[1,2343,18299], -[0,18300,18301,18302,2523], -[0,1139,18089,26761,26762,26763,26764], -[0,5583,811,816,10615,1111,1317,1414,1429,1177,1903,2026,2193,2600,2805,5944,3112,7612,3114,26767,26770,26772,26774,26776,7617,7648,2899,26777,3278,4042,4167,4342], -[0,1783,57,20627,3105,26780], -[1,2343,18304], -[0,0,18305,18306,4139], -[0,5328,1166,5946,3165,4232,4255], -[0,1783,3105,26780,10345,26786], -[1,2343,18308], -[0,0,18309,18310,2523], -[0,5583,816,10615,1414,1177,1903,3105,7648,2899,4042], -[0,26780,3105,1783], -[1,2343,18342], -"dw-neit-", -[2,18312,1512], -"dw-neit-c", -[2,18314,11163], -[2,18315,3007], -[2,18312,45], -[3,1793,11], -"-des", -"ign-react-slick", -[2,18319,18320], -[2,18318,18321], -"rc-co", -"mponent", -[2,12796,9948], -[2,18324,18325], -[2,18323,18326], -[2,18312,18327], -[3,18328,21], -"e-observer", -[2,15557,18330], -[2,18329,18331], -[2,18329,11194], -[2,18329,11184], -[3,18334,22], -[2,18335,13168], -[3,18328,12], -"ascader", -[2,18337,18338], -[2,18337,5449], -[3,18328,13], -[0,0,18309,18352,4139], -"llapse", -[2,18341,18343], -[3,18328,11], -"dialog", -[2,18345,18346], -[3,18347,12], -[2,18348,9997], -[3,18349,13], -[2,18350,11206], -[0,26780,3105,1783,3113,26796,26799,26800], -"field-form", -[2,18345,18353], -[2,18345,158], -[3,18355,12], -[2,18356,1020], -[2,18357,11211], -"mentions", -[2,18345,18359], -[3,18360,14], -[2,18361,11215], -[3,18360,12], -[2,18363,11218], -[2,18345,9044], -[1,2343,18395], -"pagination", -[2,18345,18367], -[3,18368,12], -[2,18369,9947], -[2,18369,10148], -[2,18345,6882], -[3,18372,12], -[2,18373,11227], -"segmented", -[2,18345,18375], -[3,18376,13], -[2,18377,4021], -[3,18376,12], -[2,18379,10205], -[2,18379,11234], -[2,18379,10222], -[2,18345,17966], -[3,18383,12], -[2,18384,11241], -[2,18384,11243], -[2,18345,614], -[3,18383,14], -[2,18388,2699], -"ooltip", -[2,18384,18390], -[2,18386,11245], -[3,18387,12], -[2,18393,184], -[0,18396,18397,18398,2537], -[0,1525,1792,2051,2600,3524,4001,26806,4431,4449], -[0,1596,2759,26808,4255,4389], -[0,1783,2636,6270,1283], -[1,2343,18400], -[0,0,18401,18403,2537], -[0,4874,1414,1437,1894,3985,3998,4294,4505,91,1906], -"control flow", -[0,14903,1783,26815,176,15847,2585], -[1,2343,18405], -[0,0,18406,18408,2443], -[0,17212,4874,4880,4883,33492,668,89,3824,3857,15728,26827,91,188], -"zrender", -[0,1783,33510,89,3698,1219,188,12072,8588,23332,33512,3857,1936], -"@lang/rollup-plugin-dts", -[1,2343,18414], -[2,14678,17116], -[2,9816,1974], -"apache", -[0,18416,16487,18417,2537], -"data-viz", -[0,1537,26835,2226,26836,26837,26838,3183,26839,22230,4001,26840,22557], -[0,26786,20627,1739,1746,1745,26842,156,4017,3966,1783,5980,1932,9591,11043,4001,26843,8924,3902,176,26845,26847,10631,6033], -[1,2343,18419], -[0,18429,18436,18437,2523], -[2,6038,1541], -"gulp-e", -"xclude-gitignore", -[2,18421,18422], -"gulp-rep", -[2,18424,2902], -"gulp-tap", -"linez", -"os-locale", -[0,3167,27252,18578,26852,28035,28719,28722,26987,4290], -[3,5248,9], -"t-stream", -[2,18430,18431], -[3,11320,11], -"ugh2", -[2,18433,18434], -[0,442,19344,1091,1166,1414,26854,1177,1942,1953,1964,1982,26855,2205,2822,26696,2858,3105,26770,26776,7617,17250,17269,3400,4409,4452,91,2924,4677], -[0,1783,671,5980,26859,3124], -"@types/vinyl", -"-fs", -[2,18438,18439], -[1,2343,18445], -"fix", -"enforce", -"gulpplugin", -[0,18446,18447,18448,2399], -[0,1525,1696,2687,2822,2858,26865,3124,3105,3181,26866,25648,27921], -[0,1166,17269,1906], -[0,1783,3124,200,13326], -[1,2343,18450], -[0,0,18451,18452,2537], -[0,5517,26873,26876,16607,6063,6065,16608,16612,1448,20627,1610,12607,668,26739,1177,2600,3105,26878,26880,26881,4039,4131,23878,4484,91], -[0,1783,26885,1936], -[1,2343,18454], -[0,18457,18465,6604,2537], -"keepalive", -[2,4575,18455], -[0,9569,9573,7610,9577,9548,9568,9547,2745,9556,9565,9558,9560,9552,9562,9566,3023,3032,9563,3105,3114,9580,9584,5961,9554,4110,9550], -"aliasify", -"backport", -[3,2250,18], -[2,18460,3227], -"run", -"grunt-run", -[2,4431,4226], -[0,1389,1448,2070,9588,2899,9586,4255,4257], -[1,2343,18467], -[0,18468,0,2514,2537], -[0,1804,26895], -[1,2343,18470], -[0,18471,0,6260,2399], -[0,1282,26902,2926,3060,3070,3744,26906,3911,3935,26908,4649], -[1,2343,18474], -[2,8243,3038], -[0,18475,18476,18477,4139], -[0,97,26915,25212,26917,13746,26921,4127,15918,26922], -[0,53,13052,5825,83,87,94,19961,6503,1009,1011,1145,1195,1414,1503,1700,26703,1854,1177,1895,1903,1938,1951,1953,1955,1958,2024,11425,2061,2070,2323,2338,2036,26924,2297,2895,2900,2904,2923,4922,2925,3188,2899,3200,26925,26927,26930,26932,26933,26935,1894,3729,4193,26940,4441,4474,91,2924,26941], -[0,18108,26944,5746,26934,26945,57,7256,6988,14642,26946,26947,17679,2275], -[1,2343,18485], -"lazy-val", -"dmg-builder", -"builder-", -[2,18481,614], -"builder-lib", -[2,10735,18483], -[0,18486,18489,2514,2399], -[0,6641,26956,13651], -"-runtime", -[2,18482,18487], -[0,2899,2924], -"-ci", -"@types/is-ci", -[1,2343,18504], -"nsis", -"dmg", -"msi", -"setup", -"Windows", -"OS X", -"MacOS", -"Mac", -"appx", -"snap", -"flatpak", -[0,0,18505,18506,34352], -[0,2899,4255], -[0,3135,26963,26965], -[1,2343,18515], -"asar", -[2,8243,18508], -"notarize", -[2,8243,18510], -"osx-sign", -[2,8243,18512], -[2,8243,14566], -[0,18516,18519,18520,2537], -[0,9363,9315,26972,23289,12429,3167,26981,26983,26985,26986,26987,26990], -"-windows-exe", -[2,1615,18517], -[0,4874,1414,26992,668,17232,23276,2581,3140,26993,1894,3985,3998,4072,4505,91,1906], -[0,6892,1783,26885,26995,26564,1644,5341,1633,23266,6435,614], -"galactus", -[3,2179,12], -"info", -[2,18522,18523], -"junk", -"author", -"parse-author", -"rcedit", -[2,27093,33977], -[1,2343,18531], -[0,18532,18533,18534,2523], -[0,12396,9363,23247,23289,27003,27006,23254,4555,12449], -[0,4874,23262,1414,2581,2588,3137,27008,27010,1894,3985,3998,4505,91,1906], -[0,23266,26564,26995,2587,23267,614,6435,1783,1936], -[3,8256,10], -"ownload", -[2,18535,18536], -[1,2343,18539], -[0,0,18541,18542,2487], -"home-path", -[0,1091,10738], -[0,2382,27017,27018,1623], -[1,2343,18544], -[0,18546,0,18547,2523], -"wonderful-fetch", -[0,27073,27076], -[0,27078,2325,5576,24093,27080,27081,27083,27084,3143,27085,18037], -[1,2343,18549], -[0,18550,18553,18554,2537], -[0,18529,33978,33980,33981,33983,33990,33998,34001,27092,27094,26256,27472,27096,4484], -"-processor", -[2,6870,18551], -[0,5087,27098,4874,1130,1145,1398,2651,2675,27099,1192,3502,1894,3729,3923,4039,4393,4468,4469,4474,4487,27101,91,1002,614,2924,4677,4681], -[0,2150,17462,27103,3150,3144,2090,6771,2944,3151,27105,4607,1973,5472,3212,27106,27108,27110,27111,27112,27113,27114,27119], -"grunt-banner", -[1,2343,18557], -[0,0,18558,18559,2523], -[0,5535,5366,5087,27124,19446,4874,1009,1011,1317,1610,1177,1895,1939,1955,2024,27125,1192,3044,3057,3117,27126,13824,19445,27127,3467,1894,4039,4042,4069,4073,4075,4201,4468,4474,4484,91], -[0,7906,27130,2325,6681], -[1,2343,18567], -"@vue/comp", -"onent", -"iler-utils", -[2,4312,18563], -[2,18562,18564], -[2,18561,18565], -[0,0,18568,18577,2523], -[0,1429,2323,4193,27136,2463,4196,2447,2436,2839], -"algoliasearch", -"vue-jsx", -[2,1226,18570], -[3,1280,9], -[2,17006,18487], -[2,18572,18573], -"cp-cli", -[3,17554,15], -[0,2325,27138,2869,13901], -[2,27009,12442], -"lemefe", -[2,18576,18579], -[3,2095,9], -"gulp-cssmin", -"-editor-middleware", -[2,8427,18583], -[3,3112,13], -"hain", -[2,18585,18586], -[1,2343,18600], -"version-cli", -[2,9951,18589], -"transl", -[2,18591,6917], -"uppe", -"rcamelcase", -[2,18593,18594], -[3,4645,13], -"es2015-co", -[2,18597,14717], -[2,18596,18598], -[0,18601,18602,18603,4139], -[0,25911,3923], -[0,1329,15990,1596,1177,2759,2899,4170], -[0,2150,3151], -[1,2343,18605], -[0,0,18606,18607,2523], -[0,2025,2899,2228,2240,2300,2273,3760], -[0,3151,1973,3101,2041,7046,1398], -[1,2343,18617], -"brorand", -"hash.js", -"hmac-drbg", -"istic-assert", -[2,6907,18612], -[3,18613,13], -[2,1619,594], -[2,18614,18615], -[0,0,18618,2514,2537], -[0,2899,4170,640], -"EC", -"Elliptic", -"curve", -"Cryptography", -[1,2343,18624], -[0,8856,7938,7939,2487], -[1,2343,18626], -[0,0,18628,18630,2523], -"@ladjs/consolidate", -[0,811,8850,816,13789,7892,1166,27163,1532,1677,27164,27166,2020,2205,2709,27171,18183,27168,3919,11891,4042,4057,4060,13781,27162,4481,4507,91,1906,4748], -"@ladjs/i18n", -[0,200,20052,614,6435,1383,6478,1523,3924,3157,27173,27174,57,5675,6802,6847,8429,7201], -[1,2343,18638], -"get-paths", -"juice", -"preview-email", -"@jimp/core", -"-sendgrid", -[2,3361,18636], -[0,0,18642,18644,2537], -"lad", -"lass", -"mail", -[0,4856,6503,4874,1429,1540,2899,91,2924,4677], -"mailchimp", -[0,1698,6899,2051,1496,3048,1388], -"mailgun", -"mandrill", -"moonmail", -"postmark", -"sendgrid", -[1,2343,18651], -[0,0,18652,2514,2537], -[0,27184,2759], -[1,2343,18654], -[0,18662,18663,18664,2537], -[3,7639,9], -"ilparser", -[2,18655,18656], -"mtp-server", -[2,5051,18658], -"mailparser", -"smtp-server", -[0,1457,1525,1676,2226,16085,27189,3170,27190,27191], -[0,19181,442,27194,10723,5245,8778,4874,27196,1414,1177,1938,1953,2203,2899,1894,3980,4452,91], -[0,2947,12479,2090,13755,5351,5353,1179,1783,5352,3160,4745], -[1,2343,18672], -"yam", -"sane", -"dag-map", -"p-defer", -"tree-sync", -"console-ui", -[0,18674,0,2514,2399], -"is-git-url", -[0,27202,13223,2674,27203,27206,4039,4135,4390,4449], -"quick-temp", -[1,2343,18677], -[0,18680,18681,2514,4139], -"content-tag", -"core-object", -[0,4590,1676,3164,3494], -[0,2899,1177,2759,4342,1954,1938,1958,1903,1948,1970], -[1,2343,18696], -"capture-exit", -[2,26872,33868], -"stew", -[2,1379,18685], -[2,1379,1676], -"base-url", -[2,1463,18688], -"watch-", -"detector", -[2,18690,18691], -[2,1379,5614], -"broccoli-s", -[2,18694,5585], -[0,0,18711,18712,2523], -"-or-copy", -[2,7100,18697], -[2,1379,9381], -"-graph", -[2,14940,18700], -"is-language-code", -"-posix-path", -[2,13626,18703], -"-project", -[2,2116,18705], -[3,18701,11], -[2,18707,2942], -[2,11338,1781], -[2,6333,18709], -[0,2899,2759], -[0,27,3164], -"map-series", -[2,9466,18713], -[3,1381,10], -"iddleware", -[2,18715,18716], -"trees", -"low-trees", -[2,18694,18719], -".hash.helper", -[2,1862,18721], -[3,7648,14], -[1,2343,18738], -"rminal", -[2,18723,18725], -"fs-monitor", -[2,18707,18727], -[2,7077,2849], -[2,4099,18729], -[3,18693,12], -"fig-loader", -[2,18731,18732], -[3,18733,16], -[2,18734,4068], -"-reducer", -[2,1378,18736], -[0,18739,18749,18754,2443], -[0,53,61,5717,4851,5240,5874,5838,87,14128,90,8862,5583,811,8850,816,27221,27223,1165,7913,27225,27228,22829,1405,1420,1874,2098,2553,2929,3060,3561,3714,4042,13879,10854,4073,4076,4079,11481,4072,11482,4484,91], -"@pnpm/find-workspace-dir", -"-works", -"pace-root", -[2,18741,18742], -[2,4749,18743], -[2,2103,18744], -"ulate-cache-key-for-tree", -[2,3563,18746], -"is-pa", -[0,48,13693,27232,5522,107,1193,1610,27234,1177,27238,1895,1955,1999,2151,2675,1192,2990,27244,1894,3957,4039,4165,4294], -"missing", -"ckage-missing", -[2,18748,18751], -[2,1828,18752], -[0,6374,4042,27246], -[1,2343,18759], -"-registry", -[2,4358,18756], -[2,1828,18757], -[0,18775,0,18780,2537], -"yuidocjs", -"chai-files", -"yuidoc", -"-ember-cli-theme", -[2,18762,18763], -[3,10419,19], -[2,18765,2022], -[3,18753,11], -"-test-", -[2,18768,6706], -[2,2270,18769], -[2,18767,18770], -[3,1827,11], -"lueprint-test-helpers", -[2,18772,18773], -[0,5245,1676,26972,23289,27252,27256,17995,27259,27262,26981,27263,26985,27265,27003,27267,26986,26987], -"app-kit", -"ember", -[2,5802,18776], -"ember.js", -[0,20627,4643,3987,1936,16892,1783,26885,5980,4549,1644,57,1932,3729,3984,8924,3902,11326,207], -[1,2343,18782], -[0,18783,18797,18798,2523], -[0,15643,3530], -"amd-name-resolver", -[3,1201,14], -"ebug-macros", -[2,18785,18786], -[3,12186,15], -"ber-data-packages-polyfill", -[2,18788,18789], -[3,18790,19], -"modules-", -[2,4610,6422], -[2,18792,18793], -[2,18791,18794], -"broccoli-b", -[0,2899,3181,27275,2398], -[0,16159,27277,27278,18132,27280,7256,24440,27281,2090,1586,7131,2100,2070,21543,21544,24441,27282,27285,27287,3529,13777,6421,19051,3170,3181,3249,27289,27291,3403,13017,11601,27293,1108,6961,6920,4166,4259,21520], -"-transpiler", -[2,13830,18799], -[2,18796,18800], -[2,6324,6706], -[2,1827,18802], -"version-ch", -"ecker", -[2,18804,18805], -[2,1828,18806], -[1,2343,18821], -"@ember/optional-features", -"@ember/", -[2,18810,1871], -[2,18810,13281], -"@glimmer/component", -"@glimmer/", -[2,18814,17357], -[3,10614,11], -"s/lerna-changelog", -[2,4406,18817], -[2,18816,18818], -"ember-a", -[0,0,18836,18837,2537], -"uto-import", -[2,18820,18822], -[2,1705,1524], -[2,1828,18824], -[3,18771,12], -"-live-reload", -[2,2429,18827], -[2,18826,18828], -"initializers", -[2,3614,18830], -[2,5802,18831], -"ember-qunit", -[2,5802,14056], -[2,5802,4225], -[0,27299,7746,4874,1009,1011,1437,27301,3173,1894,23901,27302,91], -[0,7188,2090,3171,7305,7070,614], -"-channel-url", -[2,18835,18838], -[2,15508,2478], -"loader.js", -[1,2343,18843], -[0,18845,16075,18846,2399], -"ember-addon", -[0,7305], -[0,3171,553], -[1,2343,18848], -[0,11570,11571,18849,2537], -[0,27314,27315,27316,27317,27318,27319,27320,27322,27323,27315,27325,27326,27328,27330,27332,27333,27337,27338,27340,27341,27343,2262,7287,27334,27344,27346,27348,27350,27353,27355,27357,27358,17697,27359,27360,17737,17739,5284,17625,17626,676,91,17627,6869,4799,6915,6333,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,5933,1451,7914,27363,27365,17651,6899,17720,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,27366,6681,17740,1745,17116], -[1,2343,18861], -"edition-utils", -[2,18810,18851], -[3,4644,15], -[2,18853,5218], -[2,18791,18854], -"-inline-precompile", -[2,1829,18856], -[2,1199,18857], -"broccoli-p", -"ersi", -[0,18862,18866,18869,2443], -[0,4121,4388], -"stent-filter", -[2,18860,18863], -[2,18859,18864], -[0,48,53,87,192,5467,442,27928,19344,4874,1367,1610,1622,1628,1700,1701,1854,1177,1895,20281,1938,1939,1942,1953,1955,1982,2092,2203,2675,1192,2780,2832,2990,3144,3400,1894,2278,4111,4257,91,4523,2924,4677,4681], -"code-equality-assertions", -"js-string-escape", -[0,2924,1623,7682,11498], -"@emb", -"roider/test-setup", -[2,18870,18871], -[2,1828,1462], -[1,2343,18875], -[0,18879,18880,18881,2523], -"ort-", -"-global", -[2,13527,18877], -[0,27377,842,1462,27379,1676,668,2105,30621,16860,28134,27380,4072,27385,27388], -[0,27390,1177,27393,27394,10624,27395], -[0,3178,16862,676,1623,11807,1936,14357], -[1,2343,18884], -"dat", -[0,18885,18887,2514,2443], -[0,27404], -"ember-s", -[0,4384,4483,3188,4508,1894,4874], -"tyleguide", -[2,18886,18888], -[3,1243,11], -[2,18890,4486], -[2,5802,18891], -[1,2343,18896], -"ember-try", -[2,1921,2907], -[0,0,18897,18898,2537], -[0,1158,3421,4389,1177,3410,2708,1159,4103,13614], -[0,6478,7128,57,3460], -[1,2343,18900], -[0,18907,18908,18910,2537], -"@emmetio/abbreviation", -"@emmetio/", -"css-a", -"bbreviation", -[2,18903,18904], -[2,18902,18905], -[0,1525,3313], -[0,22102,1192,1894,4468,91], -"coding", -[0,27425,27428,21655], -[1,2343,18912], -[0,0,18913,18914,34352], -[0,27407,4874,13680,1414,1895,1894,4384,4474,4508,91], -[0,7148,7204,7161,7048,4014,6899,970], -[1,2343,18916], -[0,18917,18918,2514,2523], -[0,1082,3510,15450,27438], -[0,4874,7677,1446,1177,1905,5210,2807,1894,15452,91,4543,1984], -[1,2343,18920], -[0,0,18921,18922,2537], -[0,53,61,71,83,87,92,97,27445,2126], -[0,3190,27447,13795,5128,89,6071,27448,11415,27449,27456,27458,27459], -[1,2343,18925], -"finish", -[0,18926,18927,18928,2523], -[0,27464], -[0,3190,27464,27468], -[0,3190,27447,5128,89,6071,27448], -[1,2343,18930], -[0,18931,18932,18933,2537], -[0,2591,3242,1687,2070,1676,4747,2105,2822,1457,3181,3527,7801,3074,4748,27476,17450,4351,27481,4300,1874,4143], -[0,3421,1429,2931,1776,2297,4193,27510,1177,3278,3984,4039,4042,4135,2203,26079,2924,1894,1610,442,27500,91,27501,4874,2665,2900,3105,4677,4892,1509,3123,3401,10630,62,27490,27497,27506,27507,1953,17529,3125,27509,5946,3114,4923,3107,8850,27499,8862,2904,2915,2881,811,27504,4079,13866,4066,816,23652,27495,27487], -[0,2899,1973,5982,6969,4384,5472,1429,6468,1166,1192,4389,2765,2297], -[1,2343,18935], -[0,18936,18937,18938,2487], -[0,7058,3758], -[0,1429,2899,25928,91], -[0,2899,6533,3758,3197], -[1,2343,18940], -[0,18941,18942,18945,2523], -[0,1676,3135,3188,4294,6523], -[0,826,1429,6524,1177,2899,4039,27525,27526], -"entitify", -"entity", -[0,2899,2793,16237], -[1,2343,18947], -[0,0,0,18948,2443], -[0,2899,16237,27532,4504], -[1,2343,18950], -[0,0,18953,18954,2523], -"enumeration", -"datatype", -[0,1429,1177,21470,2899,4039,4135], -[0,3212,2150,1973,1182,6771,3151], -[1,2343,18956], -[0,18957,18958,18959,4139], -[0,27544,2159,15312,27547,2571,2756,3431], -[0,5517,13614,23237,27552,27555,27557,27559,27562,27564,27567,27568,27570,27571,27573,27575,27576,4874,27578,27580,19325,1159,9254,1855,1177,2011,2133,2569,2708,3410,3421,4103,4389], -[0,5472,3212,3048,3205,6692,6822,1973,6865,6739], -[1,2343,18961], -[0,18962,18967,18970,2537], -[0,12929,3369], -[3,15801,15], -[2,18963,200], -"ify-object", -[2,4745,18965], -[0,1610,1177,2899], -"issues", -"reporting", -[0,3209,7190,14419,14416,14510,22228,1973,3212,13106], -"diagnostics", -[1,2343,18973], -[0,0,7923,18974,2487], -[0,1973,3212,202,2150,2184], -[1,2343,18987], -[3,1143,20], -"function.", -".name", -[2,6688,18978], -[2,18977,18979], -[3,2620,13], -[2,18981,3053], -"oolean-object", -[2,15644,18983], -"allable", -"is-callable", -[0,0,18991,18998,2523], -"umber-object", -[2,13631,18988], -"is-string", -[0,2899,4042,4076,4170,91], -"is-subset", -[2,3024,1867], -[2,3436,6693], -"rst-selector-parser", -[3,11434,17], -[2,18996,6678], -[0,1666,3212,1973], -[1,2343,19004], -" rendering", -[2,4161,19000], -"Render", -[2,4161,19002], -[0,0,19008,19009,2487], -"test utils", -" helpers", -[2,6468,19006], -[0,2759,2272,4193,27601,4616], -[0,3212,13106,3209,1237,2325,2275,1973,27603,5472,6969], -[1,2343,19011], -[0,5621,19012,19013,2523], -[0,2323,2372,27608,2436,2447,2463,27610,2272,2839,2924], -[0,3212,27612,27614], -[1,2343,19015], -[0,19016,19021,19022,2537], -[0,7058,2070,2929,1209,11993,3084,3310,2015,27624,27623], -"airbnb-", -[2,19017,3744], -"fromentries", -[2,3436,19019], -[0,2812,4481,27633,1192,3241,27649,3533,1676,27637,1409,27635,1759,1177,3078,27658,1096,2738,3363,27656,4474,4709,27636,27643,2774,27648,1894,1596,27641,2777,3379,4342,27645,3747,91,27659,4874,27632,27655,27634,27657,27628,27644,27630,27647,25710,27660,27640,1954,27652,826,27626,1958,1895,1955,1966], -[0,27662,14584,5130,5995,27664,17829,14586,3166,11631,24090,27666], -[1,2343,19024], -[0,0,19025,19026,2523], -[0,2907,4042,1610,91,4874,2915], -[0,3220,1666,6901,1644,1671,2649,2679,6728,6804], -[1,2343,19028], -[0,19029,19030,19031,2537], -[0,3220], -[0,2228,2247,2273,2277,2281,17565,91], -[0,3220,1666,6901,27679,27680,27681,27678,16626], -[1,2343,19033], -[0,19034,19035,19037,2523], -[0,2858,27688,27692,27693,27696,3502,1894,27700,27702,27703,4745], -[0,27709,32818,7677,668,21290,3541,3985,27711,91,1984,27714], -[2,6296,3741], -[0,6038,4967,6400,27708,21290,4745], -"codependence", -[1,2343,19040], -[0,0,19061,19062,2399], -" for es6", -[2,4354,19041], -"check for ", -[2,19043,5260], -"es check", -"es matching", -"es version", -" check", -[2,5286,19048], -[3,19049,11], -"matching", -[2,19050,19051], -[2,19050,15525], -"js version", -[2,19054,19048], -[3,19055,11], -[2,19056,19051], -"test ", -[2,19058,19054], -[2,19058,19053], -[0,442,4874,7677,1177,1895,1966,1982,1894,4039,4508,4514,17223,91,4523,1983,26744,1984], -[0,27722,27723,27724,5675,27725,6400,5995], -[1,2343,19064], -[0,19068,19075,19079,4139], -"bigints", -"has-bigints", -"intl-", -[0,16003,32967,16005,16000,19267,15999,20870,23721,19282,6372,27731,1364,1367,23723,1395,1505,1525,1575,1610,1640,1759,1853,2026,9243,2040,2117,27735,27737,2626,2814,7796,3162,3230,27740,3237,3527,23726,4148], -"back-symbol", -[2,9925,19069], -[2,19067,19070], -[3,5742,14], -[2,3094,19072], -"make-a", -[0,53,68,87,27742,27743,1195,1429,1465,1540,1584,1628,1651,1177,1881,1938,1982,26154,2092,2675,2899,12690,3322,3363,4307,4342,2924,4677], -"unction", -"sync-function", -[2,19074,19077], -[0,20897,27746,6910,18035,27747,8626,8298,27749,1550,3230,27750,27751,27752], -"reflect", -".ownkeys", -[2,19080,19081], -[2,7315,7262], -[2,5511,19083], -[1,2343,19086], -[0,19087,19088,19089,4139], -[0,1395,27759,27762], -[0,3421,4481,29749,1429,1437,2899,4193,27764,4747,1177,4135,27765,2026,2822,4474,1894,4196,91,5307,4856,4874,1436,27767,6503,6513,27768,5254,6494,27772,27775,27776,27779,6512,27781,27782,4232,1951,1978,1895,1955,608,603,1011,27786,15115,27790,27792,1009,10964,549], -[0,3230,13392,11489], -[1,2343,19091], -[0,19095,19098,19103,2399], -"es6-symbol", -"esniff", -"next-tick", -[0,27798,3230,27799,27800,3242,27801], -"plain", -[2,19096,4007], -[0,30604,29957,4874,27803,27805,27807,1091,1414,1448,18192,1177,13850,2026,2151,2600,21630,3044,27810,20451,3127,3188,2899,3220,27786,12690,29780,3275,3754,4193,29998,91,4523,3348], -"ecmascript5", -"ecmascript6", -"extensions", -"addons", -[0,3230,1746,11415,2844,18035,27812,2382,27814,3766,18037,3469,1747], -[1,2343,19105], -[0,19106,19107,19109,2523], -[0,1605,1541,1292,4218,4545,4220,27822], -[0,2228], -"es5 shim", -[0,3233,27826,27827,20863,27829,27830], -[1,2343,19111], -[0,19112,19107,19113,2523], -[0,1541,1544,3233,27835,27822], -[0,3233,27837,27826,27827,27838,12619,20863,27840], -"rettime", -[1,2343,19116], -[0,19117,19131,19133,4139], -[0,27847,1676,3230,27849,27852,27855,27856,27857,27859,3427], -"json3", -[2,1379,4042], -"git-repo-", -[2,19120,15525], -[2,1379,4650], -[2,1379,4535], -"-phantom", -[2,3736,19124], -"6-plugin-strip-class-callcheck", -[2,1172,19126], -[3,14198,32], -"nstants", -[2,19128,19129], -[0,1166,1503,1177,1903,1920,1938,1954,1958,1970,27861,27866,27869,27872,27873,27874,27875,3421], -"futures", -[0,3236,3230,1550,13392], -[1,2343,19135], -[0,19136,19137,19139,2523], -[0,1304,1676,1704,3440,16128], -[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4237,4342], -[3,7872,9], -[0,2026,27,2942,2663], -[1,2343,19141], -[0,7936,7938,7939,2399], -[1,2343,19143], -[0,19144,19147,19148,2399], -[0,4729,4038,1676,27764,4238,27897,27899,3183,9241,3084,27902,1537,27910,3923,27905,14731], -"es6-tests", -[2,12790,19145], -[0,3421,1429,4389,4193,1177,2202,3188,4039,4170,4216,668,2203,4474,1457,1894,27912,442,3697,3980,91,4856,4874,19325,6513,1834,27918,27920,19181,12310,5536,5476,10936,27924,1938,1895,1955,1011,1567,5478,27915,1009,10614], -[0,3241,27927,20001,20003], -[1,2343,19150], -[0,0,19152,2514,4139], -[2,31089,9224], -[0,2675,2899,1177,1894,2025,2990], -[2,31715,31719], -[1,2343,19155], -[0,19156,19157,19158,2399], -[0,27936,1525,1676,25625,25635], -[0,192,5467,16607,6065,16608,16612,2899,4131,4255], -[0,18035,3243,14872,36,27939,26472,27940,27942,25635,27944,26472,27945,13531,27948], -[1,2343,19160], -[0,19162,19163,19164,2443], -"special", -[0,27959,617,9213,27962,977,2220,27964,9218,9219,3509,3527,19114,4266,9221,4454,4507,27955,4747], -[0,192,5467,19151,19181,442,17982,5497,9225,9226,8648,6494,27966,4874,19153,1009,1011,5474,1170,13662,1527,1610,1613,1652,668,8161,1177,1895,1955,2026,2078,19213,2070,2832,27967,2931,2990,27969,1894,23535,3957,4039,9245,4493,91,4523,4548,4027,1984,9250,2924,9258,3244], -[0,5592,3212,8788,6812,6688,36,11100,1852,5472,6400,10768], -[1,2343,19166], -[0,19169,19170,19173,2537], -[2,18756,4219], -[2,1370,19167], -[0,27978,1410,1537,3188,3427,1000,1695], -[0,1693,2026,2139,27981,2899,3421,4039,4255,27984], -"-everywhere", -[2,10906,19171], -[0,1669,3689,15237,2139,27986,2026,2663], -[1,2343,19175], -[0,19176,8134,19178,2537], -[0,22970,27992,3181], -[3,442,8], -[0,18132,2100,2070,21543,21544,3529,13777,3181,13017,11601,21520], -"config-array", -[2,19177,19179], -[2,19177,1998], -"@humanwhocodes/module-importer", -[3,19182,15], -[2,19183,1153], -"@nodelib/fs.walk", -"esquery", -"imurmurhash", -"-without-jsonify", -[2,2851,19188], -"levn", -[1,2343,19196], -"@eslint/co", -[2,19192,23], -[2,442,1803], -"@trunkio/launcher", -[0,19197,19198,19199,2523], -[0,4538,2657,4100], -[0,3421,27999,2899,1177,3188,4039,4339,4012,1948], -[0,2090,9229,2141,3101,6949], -[1,2343,19201], -[0,19211,19212,19214,2537], -[2,3192,5130], -[2,11095,19202], -[3,1992,9], -"lease", -[2,19204,19205], -"eslint-r", -"ule-composer", -[2,19207,19208], -"eslump", -[0,2100,2151,2859,1209,5303,3445,3348], -[0,2765,3421,33373,3980], -"fs-teardown", -[0,1649,1936,28007,3256,28009,28012], -[1,2343,19217], -"metascraper", -[0,0,19228,19229,2537], -"-description", -[2,19216,19218], -[3,19219,12], -[2,19220,158], -[2,19220,11255], -[2,19222,4147], -[2,19220,17913], -"node-po", -"lyfill-webpack-plugin", -[2,19225,19226], -[0,1999,1429,4770,2899,1177,2272,4042,3758,4535], -[0,3257,1283,5354,1797], -"npm-license", -"polyfills", -[2,4065,19231], -[1,2343,19234], -[0,0,19236,19237,2399], -"yorkie", -[0,1759,2323,2384,2508,2675,2297,2881,2908,2915,28023,28024,1894,25851,2907,4039,4042,4072,28027], -[0,10052,8691,28030,7131,6333,7518], -"sql-escaper", -[1,2343,19240], -[0,19241,19245,2514,2443], -[0,1325,3923,4100,28036], -"ape-runner", -[2,1285,19242], -"eslint-f", -[0,1087,1177,4127,28038,28039,28040], -"ind-rules", -[2,19244,19246], -[1,2343,19249], -[0,19250,19251,19252,2537], -[0,3080,24383,18073,2685,19238,28047,28049,28052], -[0,1414,4494,28059,2203,1894,1317,1610,442,3560,91,4874,28056,19181,27928,6473,1895,1955,1011,28058,1009,13188], -[0,3259,5576,36], -"using-browser-globals", -[2,12084,19253], -[1,2343,19256], -[0,19257,19258,19259,2443], -[0,21243,3427,21246], -[0,2759,1362,2899], -[0,19138,1862,28067,21244,5194], -[1,2343,19264], -[3,3703,10], -[3,9487,11], -[2,19261,19262], -[0,0,19265,19266,2537], -[0,28072], -[0,3417,202,15525,10057,28074,202,17180,1263], -[2,15998,23720], -[1,2343,19272], -"quality", -"jslint", -"code style", -[0,0,19274,2514,2537], -"verify", -[0,1326,1525,2070,705,3923,4384,1695], -[1,2343,19276], -[0,0,19277,19278,2537], -[0,4548,4874,91], -[0,28088,2382,705,1781,18037,3166,2378,18035], -[1,2343,19283], -" config", -[2,1177,19280], -"@lezer/highlight", -[0,19284,19285,19287,2523], -[0,5012,1634,1639,28094,26902,28095,17011,7917], -[0,10821,10828,10837,5087,4874,5090,4880,1177,10619,2675,28098,1192,2968,28101,2990,1894,3744,89,3824,3904,4039,4232,4469,4484,91,2924,4676,4681,4749], -[2,15289,17540], -[0,1623,590,592,3528,2378,2994,89,676,7164,7165,369,4636,4627,4315,28103,5547,5376], -[2,19289,1564], -[3,28155,14], -[1,2343,19291], -[0,0,0,19292,4139], -[0,3348,3778,3265,1002], -[1,2343,19294], -[0,19295,19296,19297,2537], -[0,18509,1170,1809,2151,28115,28116,3079,3275,28118,4108,4232,4449,4747], -[0,5245,4864,28120,5087,21621,4874,28123,6520,4892,1009,1011,1804,1177,1895,1955,1192,3541,1894,4039,4469,91,2924,4677], -[0,28125,1804,1896,970,21009], -[1,2343,19299], -[0,19300,19303,19304,2487], -[0,4729,3467,4390,2806,3445,3348,1170,1473,2072,4747,20991,1209,3078,3127,3188,3483,4135,3013,4708,4734,2003,3742,4167,1137,1457,1894,3761,4473,3181,28130,1483,4183,4227,91,28132,8612,28133,19499,28135,20949,28136,28137,14774,28142,3762,635,28145,28151,19288,1573,20934,28155,28158,28164,28214,28167], -"eslint-patch", -[2,9112,19301], -[0,1429,2228,2675,2899,4193,26212,2759,9241,13214,4856,4874,7819,2314,2990,9357,28177,28178,6513,4892,28180,4870,28182,5254,28184,28187,28189,7812,7749,14352,28192,28195,1431,2258,4232,2247,2283,33046,28203,9417,28206,5244,28211,1567], -[0,3271,91,5284], -[1,2343,19306], -[0,19307,19321,19322,2487], -[0,28219,28223,28224,1759,2665,28225,3232,3519,1552,18730,28228,26940,4545,3348,28230], -" Standard Style", -[2,17626,19308], -"code checker", -"code linter", -"code st", -"andards", -[2,19312,19313], -"policy", -" style", -[2,4255,19316], -[2,590,16792], -"style ", -"style linter", -[0,811,8850,816,23689,4874,1009,28232,1610,1177,21564,1938,1953,1958,2323,2441,28233,2765,2766,671,3275,3421,28234,3752,4039,4042,4193,4232,4255,4474,15097,91,28235,2924,18237], -[0,28238,28241,17134,28242,28243,207,28244,28245,28246,28247,28248,28249,28251,28253,28256,28258,28260,28261,28265,28266,4420,28267,28269,28271,28273,28274,28275,28277,28280], -[1,2343,19324], -[0,19326,19327,19328,34352], -"@types/tape", -[0,2714,1149,4747,28285], -[0,3421,4616,1177,1596,28287,3980,10614], -[0,8309,28289,28291], -[1,2343,19330], -[0,0,19331,19340,2523], -[0,2899,4039,21228], -[3,19180,15], -[2,19332,3323], -"__js", -[2,5601,19334], -"automd", -"eslint-t", -"ypegen", -[2,19337,19338], -[0,200,1585], -[1,2343,19342], -[0,0,19343,19345,2523], -[0,4874,4880,1009,1011,1587,1177,1895,1955,1959,1961,1161,1894,4484,91], -[3,7844,24], -[0,28303,6085,89,1896,28304,12780,190,5995], -[1,2343,19351], -"xoxo", -"hugs", -"kisses", -"happy", -[0,19352,19354,19355,2537], -[0,1149,3188,4545,3012,28310], -"happiness", -[0,1429,2899,4193,705,1525,28312], -[0,18035,27814,21687], -[1,2343,19357], -[0,19358,19360,19361,2523], -[0,2685,4113], -"cabin", -[0,2861,17910,2899,3756,3760,4170,4193,4734], -[0,27,2671,2869,705,5576,15237,9229,2658,25386,17481,8426,8431,977,7436], -[1,2343,19363], -[0,19364,0,19365,2523], -[0,28324,28325,1525,1595,2720], -[0,200,12659,13527,1523,6876,678,4636], -"boolean", -[1,2343,19368], -[0,19369,19370,19371,4139], -[0,28331,1149,28333,13223,1483,1512,1525,1645,2098,28335,1209,3188,28340,28342,28344,28346,3718,4135,28348,4717,4736], -[0,28353,1429,1705,28356,18420,1177,1942,13231,1951,1966,2822,2899,3297,3421,28358,3938,4153,4167,4193,4734], -[0,3283,28360,5592,5472,15656,28362,4030], -[1,2343,19373], -[0,19374,19375,19376,2537], -[0,30869,28367,28371,28372,13471,13474,13476,30243,13495,13497,13500,13502,28373,1537,2674,28375,27967,2854,28379,3923,28380,4135,4715], -[0,7709,28384,36559,28387,28390,28394,692,28395,28396,28399,1091,1149,1168,28400,1414,13838,1525,1570,28401,13848,1177,1942,28406,2070,2212,2675,1776,2990,3019,3297,3747,3752,4039,28408,4193,4339], -[0,13539,6681,27838,14029,28411,28413], -[2,5223,594], -[2,1876,19377], -[1,2343,19381], -"is-bun-module", -[0,19382,19383,19384,2523], -[0,97,28418,977,12105,3424,28420,3698,28423,3348], -[0,5154,48,53,14167,83,87,90,92,28436,842,16145,966,968,972,20562,974,5087,4874,28426,28425,4880,4883,1165,28435,28433,1540,1637,1192,2780,2802,3244,3286,3561,3566,3640,89,3824,4705], -[0,89,6710,3424,2038,28438,5165,3287,16944,5168,28439], -"@types/is-", -[2,19385,2070], -[1,2343,19388], -[0,0,0,19389,2523], -[0,3286,1149,28445,28446], -"node-lib", -[1,2343,19392], -[0,0,0,19393,2399], -[0,1098,1973,5472,3212,8788,4627,12442,7170,9962,11100,28453,28454,4967,6400,1192,2765,1843,13106,7190], -[1,2343,19395], -[0,19396,0,19397,2537], -[0,13,28459,8597,1668,4484], -[0,5127,4964,1098,181,5130,4967], -[1,2343,19406], -[3,16405,17], -"defaults", -[2,19399,19400], -"-azure-pipelines-cli", -[2,1529,19402], -"riendly-formatter", -[2,19244,19404], -[0,19407,19408,19409,2537], -[0,2212,3348,4745,16509,2057,3028], -[0,1429,1437,2899,4193,4874], -[0,3290,28467,28468,3014,28469], -[1,2343,19416], -"enhance", -"-visitors", -[2,19411,19412], -[2,1876,594], -"espurify", -[0,0,19417,2514,2399], -[0,1429,1544,2899,3754,4151,4333], -"-spelling-correcter", -[2,3166,19418], -[1,2343,19423], -"ava-rule-tester", -[2,1876,19421], -[0,19424,19425,19426,2487], -[0,1676,28480,19400,1804,28483,28484,2835,28485,3188,16112,3441,4039,28486,4238], -[0,1149,1304,27731,1362,1429,1431,1177,1895,1955,2026,2675,2899,28488,3246,3549,1894,4151,4237], -[0,3292,1804], -[1,2343,19428], -[0,19429,19430,19431,2487], -[0,28494,28498,28500,4856,28502,14552,11869,15374,1371,28503,1437,1458,1483,28504,28505,1759,1797,1842,2070,2832,1209,3181,3183,2899,28510,3445,3467,20460,4130,4135,28512,4294,4558,3348], -[0,221,842,4874,1009,1011,1587,1610,1177,2675,2742,2822,2990,3200,4925,28514,28517,3215,3297,3421,89,3824,4039,4146,4474,4481,28519], -[0,3294,28521,28522,5472,11132,14336,11861,28525,11862,4627,11857,1973,1388,5131,8791,13426,1649,2899,13428], -[1,2343,19433], -[0,19437,19447,19450,4139], -"ast-m", -"etadata-inferer", -[2,19434,19435], -[0,11124,826,28535,18248,3509], -[2,19192,13172], -[3,5536,14], -"16", -[2,19439,19440], -"aniuse-lite", -[2,4857,19442], -[3,6309,16], -"moize", -[2,19444,19445], -[0,11134,28537,1389,2675,2832,8821,2990,2899,28539,3421,1894,3752,28542,28543], -"config-erb", -[2,15086,19448], -[0,1973,5472,21147,3212,4731,36], -"kangax", -[1,2343,19453], -[0,19454,19455,2514,2537], -[0,28550,617,2854], -[0,2212,3421,1429,1192,2899,4193,1177,4039,1894,2139,1719,3752,4196,91,3400,15342,4131,1954,1951,826,1938,1958,1895,1903,7935], -[1,2343,19457], -[0,0,19458,19459,2443], -[0,1317,1326,28556,1177,2151,29197,3697,4135], -[0,28558,28559,11154,970,1326,3122,14655,3263,3299], -[1,2343,19461], -[0,19465,19470,19471,2537], -"/plugin-pwa", -[2,4613,19462], -[2,10982,19463], -[0,1496], -"eslint4b", -[3,4630,11], -[2,19467,6038], -"vuepress", -[0,3421,2228,2899,4170,1596,2240,18463,91,4874,18555,1506,28565,22081,2247,2283,28567,28570], -[0,2325,20164,2703,6884,3250,3151,6943,202,3143,3048], -"exported", -"eslint-env", -"eslint-en", -[2,19474,4000], -"eslint-d", -"isable", -[2,19476,19477], -[2,19478,10240], -[3,19479,15], -"next-line", -[2,19480,19481], -[1,2343,19484], -[0,0,19485,19486,2537], -[0,4874,28577,2151,2675,2899,3421,4039,91,28580], -[0,202,3111,13017,6956,28582,6899,6726,2382,13626,28583,1745], -[1,2343,19495], -[3,8097,32], -[3,1879,9], -"mments", -[2,19489,19490], -[2,19488,19491], -"ot-an-aardvark", -[2,16819,19493], -[0,19496,19497,19498,2487], -[0,1672,28589,28590,2179,3183,3330,814,4135], -[0,4874,1177,1938,2675,2990,1894,4384,28593,4453,4474,91], -[0,22687,2999,4345,3233,2282], -"@foxt/js-srp", -[2,4284,12118], -[1,2343,19506], -[3,15471,15], -"anonical", -[2,19502,19503], -"gitdown", -[0,13856,11488,19507,2443], -[0,3308,7204,4014,28599,2090,14629,17721,2150], -[1,2343,19509], -[0,19510,19511,19517,2537], -[0,21642,28604,28605,28608], -[0,10614,842,5601,1009,1011,7677,17298,1622,1177,17300,1930,1942,1945,1948,1953,17303,17306,1964,1985,17308,2675,17310,2931,2990,3124,3125,3390,17312,1894,17314,3708,3980,28611,17318,4493,91,1984,17319], -"@html-eslint/eslint-plugin", -[3,19512,13], -[2,19513,57], -"link-check", -[2,3115,19515], -[0,3113,2869,26800,26799,28613,28614,28615,28617,28618,28619], -[1,2343,19519], -[0,19520,19521,19529,2537], -[0,16566,28624,21163], -[0,1079,13867,1410,1414,1429,1431,28626,21480,1596,2139,13870,2899,3480,28628,4481,1906], -[2,13039,7015], -[3,1143,17], -"indlastindex", -[2,19523,19524], -"doctrine", -[2,17612,202], -"object.g", -[0,1612,27,1862,705,7085,7289,4731,7102], -"roupby", -[2,19528,19530], -[1,2343,19536], -"/template-parser", -[2,1177,19533], -[2,12908,19534], -[0,0,19537,19542,2487], -[0,1389,1525,1610,1177,28635,2026,2297,2871,2881,2891,2895,2897,2900,2904,2912,2915,2921,28636,2925,2899,3202,28638,3421,15767,2924,4677,28639], -"escope", -"fs-copy-file-sync", -"linklocal", -[2,3045,4552], -[0,28641,28642,28643,28644,1616,12588,28645,28646,28647,28648,27,2671,3135,11996,28649,28650,28651,28652,28653,4160,28654,28655,28656,21000,28657,28658,28659], -[1,2343,19546], -"npm-which", -[2,4523,1574], -[0,19547,19548,19549,34352], -[0,1170,1676,1209], -[0,1429,2899,3752,4193], -[0,1885,6599,6645,586,12296,28666,28647,28667,2109,12295,1121,8899], -[1,2343,19551], -[0,19556,19557,19558,34352], -"@schemastore/package", -"ts-export-assignment", -[2,13996,19553], -[2,13970,19554], -[0,1362,3310], -[0,1429,1177,1192,4193], -[0,28674,28676,28677,1885,14554,28678,28679,28680,28681], -"-repositories", -[2,1992,19559], -[1,2343,19562], -[0,19563,19564,19572,2537], -[0,16473,28688,2215,26567,3368,3727,4135,4390,27921,4707], -[0,1326,1610,1177,2899,3263,29197,28691], -"@es-", -"joy/jsdoccomment", -[2,19565,19566], -"are-docs-informative", -[2,13721,5651], -"spdx-expression-parse", -"synckit", -[0,970,11154,1237,3122,14655,1326,14654], -"@es-joy/", -[2,19573,1875], -[3,19567,13], -[2,4522,1574], -[2,19575,19576], -"@hkdobrev/run-if-changed", -"pree", -[2,5600,19579], -[2,5600,3766], -"defaultsdeep", -[2,6308,19582], -"@types/sp", -"dx-expression-parse", -[2,19584,19585], -[3,5210,11], -[2,1226,19587], -"ype-", -"pratt-parser", -[2,19589,19590], -[2,13587,19591], -[2,3032,1697], -[1,2343,19596], -"open-editor", -[0,19597,19598,19599,2523], -[0,1632,2591], -[0,16868,1448,1610,1177,28698,2616,3321,28699,28702,15512,28704,2654,28706,28707,3493,4039,25213,4257,4474,4749], -[0,1936,57,6710,91], -[1,2343,19604], -[0,68,5522,107,19492,19194,19605,19609,19344,23339,6503,19616,4874,5254,1009,1011,1414,19619,668,1177,1895,1933,19620,1942,19622,1945,1948,1953,19623,1955,1964,1988,17308,1994,2018,2203,2899,3486,1894,4135,4320,19624,4323,19626,19629,1531,4494,91,4523,19630,4614,4630], -[0,13678,13679,13681,34352], -[1,2343,34428], -[0,19613,19618,19631,2523], -"@ota-meshi/eslint-plugin", -[3,19605,11], -"-kit-eslint-editor-vue", -[2,13755,19607], -[2,19606,19608], -"-scope", -[2,5601,19610], -[3,19611,14], -[0,1149,28713,1676,2026,2070,3507,1997,4135,4148,28715,28716,28717,4707,4729,4747], -"@types/na", -"tural-compare", -[2,19614,19615], -"xbytes", -[0,1429,2151,1161,2272,2899,3378,1862,4039], -"env-cmd", -[2,1931,5550], -[2,18008,8546], -[2,17585,19621], -[2,1954,8770], -[2,4946,12054], -[3,5978,26], -[2,19625,188], -[3,4330,11], -"tylus", -[2,19627,19628], -[2,4609,19466], -[0,1676,6782,3323,15267], -"jsonc", -[1,2343,19634], -[0,19635,19636,19642,2443], -[0,1080,1560,1704,2145,20103,3164,3171,3494,3781,1000], -[0,4856,6503,1009,1011,1429,1177,1881,1895,1938,2675,2899,3421,1894,4193,4196,4474,4481,91], -"-flow", -[2,12184,19637], -"axobject-query", -"damerau-levenshtein", -"es-iterator-helpers", -[0,3212,13106,28726,6710,676,5472,1973,27,28728], -[1,2343,19649], -"jsx-ast-utils", -[2,9551,2640], -"regex-test", -[2,4099,19646], -[2,18996,7015], -[0,19651,19652,19653,2399], -"to-ast", -[0,28733,2755,4135,28735,3348,4707], -[0,1587,1610,1177,1900,1903,1938,1954,1958,2675,1192,2990,28737,1894,4039], -[0,28740,28743,22005,28744,22011,15844,28747,28748,9044], -[1,2343,19655], -[0,19656,19658,19659,2523], -[0,1304], -[2,18576,13064], -[0,1364,2026,2899,4170,4342], -[0,3424,28438], -[1,2343,19661], -[0,16583,11580,11581,4139], -[1,2343,19663], -[0,19664,19665,19666,4139], -[0,20584,3188,3278,3368,3393,3411,1997,4039,4135,4390], -[0,1168,2272,3297,4389], -[0,970,11154,1237,3122,14655,1326,17180], -[1,2343,19668], -[0,19669,19670,19672,2537], -[0,3299], -[0,2899,1177,28768,640,1610,91,4874,6503,1011,1009], -[2,1927,8982], -[0,28770,6621,7009,28771,28772,28773], -"ts-i", -[1,2343,19677], -"gnore-import", -[2,19673,19675], -[0,19678,0,19679,4139], -[0,28792,28790,28782,28786,1304,1309,1594,2026,2151,28783,3368,4135], -[0,6038,8899,28794,2124], -[1,2343,19681], -[0,19682,19683,19684,2399], -[0,3263,2164,2070,3157,1437,1209,640,2185,28799,1615,28800,28802,28804,26567], -[0,3421,2899,1177,4039,2151,28806], -[0,1623,22022,7121,2278,4329,590], -[1,2343,19686], -[0,19690,19691,19693,2537], -"-helpers", -[2,9654,19687], -[2,7627,19688], -[0,12680,28813,28816], -[0,3421,4389,4193,1090,1177], -[3,3995,13], -[0,16618,5957,12692,1605,28821,27105], -[1,2343,19695], -[0,19697,0,19698,2537], -"@chromatic-com/storybook", -[0,3460,1512,3171], -[0,27,2947,2090,36], -[1,2343,19700], -[0,0,19701,19702,2523], -[0,3421], -[0,6926,6668,3348], -[1,2343,19704], -[0,0,19705,19710,2399], -[0,2151,2899], -[2,19707,103], -[3,35573,13], -"ug", -[2,17304,19708], -[0,28837,2282,28838], -[3,3708,17], -"kg", -[2,19711,19712], -[1,2343,19715], -[0,19716,0,19717,4139], -[0,6523,4747], -[0,28844,6574,11100,28845,6807,2013,28847,28849,28850,5957], -[1,2343,19719], -[0,19720,19721,19722,2537], -[0,3354], -[0,28856,28858,4874,1177,1894,3706,4493,91,8552,1984], -[0,28860,57,9381,3354,28861], -[1,2343,19727], -[3,19525,24], -"tosorted", -[2,5613,19725], -[0,19730,19733,19737,2443], -"repeat", -[2,18996,19728], -[0,2571,2741], -[2,5609,14255], -[3,5235,22], -[0,13614,1158,1177,2708,17400,3410,3421,3435,4103,4389], -"unction-bind", -[2,19732,19734], -"ls-engines", -[0,2051,6970,28869,1496,1585,24135], -[1,2343,19739], -[0,19740,19741,19742,2523], -[0,2212,3263,2856,3776,1209,4391,2151,640,3337], -[0,4647,2899,2272,1168,1448,28877,2759,1173,1596,2820,28879,17370,1267], -[0,28881,28882,3358,970], -[1,2343,19744], -[0,0,19746,19747,2487], -"refa", -[0,28043,1409,1414,1177,1895,2203,28890,28891,28892,28894,1894,2658,28895,18661], -[0,28897], -"analysis", -"-ast-analysis", -[2,6961,19749], -"scslre", -[1,2343,19760], -"eslint-s", -"-rule-tester", -[2,11298,19754], -[2,19753,19755], -[2,19758,29135], -[3,17306,17], -"@types/pako", -[0,19762,19763,19764,2523], -[2,3192,15264], -[0,1457,1676,13775,3181,28904,4135,18174,4351,4453,28903], -[0,192,5467,1149,1506,1177,2675,2899,3421,3752,4131,4170], -[0,200,3233,3233,5001,22687,28908,2999,7009], -[1,2343,19766], -[0,19768,0,2514,2523], -"safe-regex", -[0,1797,4384], -[3,19494,16], -"desecurity", -[2,19769,19770], -[1,2343,19774], -[2,202,1965], -[0,19775,19776,19777,2537], -[0,4039,1764,28917,4747,4135], -[0,705,4389], -[0,28921,3364,7242,28125,13527], -[3,3568,11], -"red-black-tree", -[2,19778,19779], -[1,2343,19785], -"al-red-black-tree", -[2,19076,19782], -[2,5537,19783], -[0,19787,0,19788,2523], -"sonarjs", -[0,28367,1091,1092,20437,12384,1096,28927,1170,1364,1457,1575,1594,1648,2026,9243,28929,28930,2070,2593,28933,28934,2856,28935,2863,28936,3083,12792,28940,3230,3241,3277,16617,28859,3361,3445,3519,28944,1552,2999,4010,28945,28948,4709,7801,4745,4747], -[0,28950,3366,5284,6710,5130,5995,4967,12660,28951,28954,28956,28957,1781,28959,2844,2856,4745,1896,28960], -[1,2343,19790], -[0,19791,9888,19792,2537], -[0,4545,1437], -[0,10446,28967,9753,14690,57], -[1,2343,19794], -[0,19796,6538,2514,2523], -[2,4353,67], -[0,23432], -[2,19612,594], -[2,5600,594], -"@types/less", -[2,13058,3675], -[3,4890,11], -[2,19801,4332], -"svelte-i18n", -[1,2343,19806], -"sveltejs", -[0,0,19807,19808,4139], -[0,2398,3183,2899], -[0,28977,28978,28979,2090,28980,17996,18442,28981,7517,2150,3374,3403,10903,15323,4207,28982,28983,28984,28985], -[1,2343,19810], -[0,0,8134,19813,2537], -"-formatting", -[2,1939,19811], -[0,3374,1002,12831,15427,1871,28992,28994,3766,3767,28996,4301,6678,28997], -[1,2343,19815], -[0,0,0,19816,2523], -[0,29004,28992,1388], -[1,2343,19818], -[0,19819,19820,19821,2537], -[0,1437,16064,1494,1595,1700,29013,1874,2020,5989,29016,2613,15980,2704,2720,2744,29018,29020,29022,2991,29023,3074,3157,29024,29025,21420,3445,29026,27534,3505,27168,3919,4094,4135,5513,26573,4562], -[0,21642,5254,1166,1532,24491,2151,29028,4193,4294,4400,29030,1906], -[0,13326,200,3378,20001,3358,6645,15525,15208,1528], -[1,2343,19823], -[0,19828,19830,19831,2537], -[2,1463,6961], -"regexp-", -"regexp-tree", -"regjsparser", -[0,3242,2714,4390,2070,3368,3917,4248,23433,1437,3478,4707,23432,3483,4135,9448,1458,29037,21505,640,3727,29039,3181,9451,9452,2976,2979,2981,29042,29044,4425,29051,2215,29053,25881,29054,29055,25888,29056,29057,9459,4351,2613,3386,3762,635,29059,25893,26567,29061,9462,29063,643,9465,3397,29066,29067,9476,9479,9539,19570,638,4588,9496,9501,9506], -"@lubien/fixture-beta-package", -[0,1091,4384,1687,3297,9542,3984,4039,1483,3988,29069,1092,29070,3393,10630,29071,29073,9515,9516,26037,29077], -[0,1161,5260,6878,6661], -[1,2343,19833], -[0,19834,19840,19845,2537], -[0,1499,3467,3157,1437,2020,2742,1695,29085,2205,1209,4135,7094,3537,1703,2720,3181,3309,4294,4425,3505,29088,9478,6045,14564,29084,4562,29087], -"@ver", -"/eslint-config", -[2,5401,19836], -[2,19835,19837], -"bumpp", -[0,1906,1173,1282,1267,1255,1245], -" eslint plugin", -[2,1984,19841], -"eslint ", -[2,19843,1932], -[0,3378,29093,4796,17507,13729,4354,24313,5592,24095,200,6953,29095,29096,7242,4797], -[1,2343,19847], -[0,0,19848,19852,2537], -[0,29101,17212,4856,9417,29103,29104,12458,29105,7637,29111,4870,6503,4874,29115,29117,20374,6510,7812,5254,29122,6513,29125,1009,1011,1420,1429,1431,21480,1437,1483,1525,1610,20573,1177,1895,29128,1903,1938,1942,1953,1958,2071,27125,2105,29129,2613,2714,2822,2858,29133,3019,1209,3125,2899,3397,3400,3478,13723,3530,1894,3730,29136,29087,4038,4039,11054,4135,29138,4170,4193,4232,18201,4294,4474,91,29139,4558,4562,29140,1983,29141,29142,26744,4749], -"name-", -[2,19849,1155], -[2,4732,19850], -[0,4796,3378,6661,3076,29144,18280], -[2,4807,19851], -[1,2343,19855], -[0,19856,6538,2514,2523], -[0,2613,3727,4135,4588], -[1,2343,19858], -[0,19859,19865,19867,2487], -[0,1091,8531,1437,1595,1676,2205,2687,2745,2858,3074,3157,3545,4135,4207,4300,4507,4588], -[3,10879,16], -[2,19860,13921], -"importx", -"ink-", -[2,19863,1975], -[0,5087,4874,1009,1011,668,29154,1177,29155,29158,1930,1938,1939,1955,1982,2089,1192,17312,29160,1894,4468,91], -"eslint-test", -[0,671,9654,6661,13716,29162,3390], -[1,2343,19869], -[0,19870,19872,2514,4139], -[0,15980,3727], -"esrecurse", -[0,635,9516,9515,29169,4384], -[1,2343,19874], -[0,19875,19876,19879,2399], -[0,9459,25336,26567,21505,29176,29174,3386,3727], -[0,9516,9515,9448,3297,28691,4248,4384], -[2,1006,13060], -"json-diff", -[0,3378,29179,1612], -[1,2343,19881], -[0,19882,19885,19886,2537], -[0,1437,26079,3919,3181,1110,1615,4165,3152,29185], -[3,8724,21], -[2,19883,676], -[0,3421,4749,2899,1177,4039,1503,3479,2151,4874,3696,1280,29188,13983,1225], -[0,200,1523,29190,4990,3378,29191,18462,21003,4144,12804,5957], -[1,2343,19888], -[0,19889,19890,19886,2443], -[0,4707,26079,3530,1110,1615,4165,3152,9488], -[0,1414,2931,4749,1776,2899,1177,23909,29197,1159,17529], -[1,2343,19892], -[0,19893,8134,19894,2523], -[0,16687,20789], -[0,3378,18462,3403,3383,20052,17180,20054,1508,200,6876,16701,8435], -"-fb", -"esprima-fb", -[1,2343,19898], -[0,0,19899,19900,2523], -[0,5087,4874,1009,1011,10817,1177,1895,1192,2990,26230,4039,4042,4468,91], -[0,29208,1745,29210], -[1,2343,19902], -[0,19903,19904,19915,2537], -[0,1437,1479,1525,1676,2720,3741], -[0,1429,2899,3215,4255], -"escomplex-js", -"thing.js", -[2,7067,19906], -[3,2912,12], -"techpreview-launcher", -[2,19908,19909], -[2,17485,18551], -[2,813,19911], -"8.0.0", -[2,5857,19913], -[0,18497,3378,29218], -[1,2343,19917], -[0,19918,19919,19923,2487], -[0,2720,3776], -[0,1173,1212,1245,29224,1280,3400], -"gulp-ta", -"g-version", -[2,19920,19921], -[0,3378,200,8429,1523,3888,8791,24095,3409,29227], -[1,2343,19925], -[0,19926,19927,19928,2487], -[0,2571,3183], -[0,13614,1159,9254,1177,2708,2807,3421,4103,4389], -[0,3410,16774], -[1,2343,19930], -[0,19931,19932,2514,2487], -[0,9892,25886,29239,10744], -[0,4384,9515,9516], -[1,2343,19934], -[0,0,19935,2514,2537], -[0,1429,2814,2832,2899,29246], -[1,2343,19938], -[2,2009,10896], -[0,19947,19949,19951,2537], -"@ethereumjs/config-nyc", -[3,19939,19], -[2,19940,1894], -[2,19940,11540], -[3,19942,21], -[2,19943,671], -[3,17583,11], -"karma-tap", -[0,1437,1482,29251,2674,2720,29253,4135,8363,4747], -"typestrict", -[0,1366,1501,19771,2556,620,3203], -"transactions", -[0,1965,3413,19773], -[1,2343,19953], -[0,19954,19958,19959,2523], -[0,29260], -"-cryptography", -[2,9439,19955], -"rlp", -[0,5087,4874,1009,1011,1587,1177,1895,1955,2675,1192,1894,3720,4039,4468,4474,91], -[0,3414,29263,200,5122,8310,18496,89,202,91,5284,2924,1192,4967,5995,12660], -[1,2343,19966], -"@types/assert", -"cp256k1", -[2,5252,19962], -"karma-t", -[2,19964,2528], -[0,0,19967,19968,2487], -[0,1429,2258,2277,2298,2300,23167,2297,2878,2881,2895,2900,2904,2915,3006,2899], -[0,3415,6988,1671,6901,29269,29271], -[1,2343,19970], -[0,19973,19975,19978,2523], -"es-lookup-scope", -"os-tmpdir", -[0,29276,29277,1525], -"qs-iconv", -[0,48,53,87,94,1195,1208,1212,1544,1593,1610,1177,1881,1938,2026,2151,2182,29280,29282,29283,29285,3421,3524,4151,4535,4537,2924], -"eval", -"evaulate", -[0,1283,17950], -[1,2343,19980], -[0,0,0,19981,2523], -[0,2703,202], -"pause-stream", -"combiner", -[2,4279,19983], -[1,2343,19990], -"asynct", -"it-is", -"stream-spec", -"ubelt", -[0,0,19992,19993,2399], -"flatmap", -[0,5517,13614,23237,19325,1159,1414,9254,1177,2807,2708,3410,4103,4389], -[0,3417,3418,2649], -[1,2343,19995], -[0,0,0,19996,2399], -[0,1623,12080,29300,13777,3585], -"addEventListener", -"addListener", -"pub/sub", -"emits", -"publish", -[1,2343,20004], -"subscribe", -[0,20005,0,20006,2537], -[0,1797,3467,4449,2117,3445,4745,1170,1495,4484,4747,1759,2687,4135,2089,1836,2777,3181,4459,1477,3527,4393,1480,2149,2858,3404,4290,4748,1763,4480,29306,24759,29308,29309,29310,29313,29317], -[0,9621,9622,8174,9623,9624,9625,9626,9627,9628,9659,9648,9649,29319], -[1,2343,20013], -"-browser", -"-browsers", -[2,7177,20009], -"sauce-", -"sauce-test", -[0,20017,20020,20021,2537], -"EventEmitter", -[2,20014,1276], -[2,20014,1278], -[0,14022,8697,29324,1573,1677,2102,2105,15261,2179,2070,11935,29325,14024,29328,11938,11940,11943,3093,29330,3478,29334,4025,4039,4174,29335,14025,4747], -"Events", -"reactor", -[0,29338,13103,4019,4232,4255,4257,4384,3348,4707], -[0,4504,16237,20049,5472], -[1,2343,20023], -[0,20024,20025,20026,2523], -[0,29358,8818,5941,28935,26865,13824,12285,3509,29349], -[0,29355,29359,29362,4874,4493,91,1984], -[0,5592,2210,3452,29365,29367,29368,29369,29370,3422,1118,27662,1745], -[1,2343,20028], -[0,20029,20030,20031,2537], -[0,29358,29377,2822,12285,8126], -[0,29355,7637,29380,3297,4493,91,1984], -[0,5592,1118,2210,1745,27662,29370,3422,3452,29369,29365,29368,29367,28360,8124], -[2,3159,591], -[2,13788,20032], -"human-", -[2,20034,7073], -[1,2343,20037], -[0,0,10435,2514,4139], -"final-newline", -[2,4293,20038], -[3,4759,11], -[1,2343,20045], -"get-node", -"is-in", -"is-in-ci", -[0,0,20046,20048,2523], -[0,1906,1166,1209,3130], -"is-running", -[0,3048,3426,2051,3583,6778,5286,5258,6805,29390,6422,1858,1388], -"subprocess", -"fork", -"execfile", -"bin", -[1,2343,20055], -"binaries", -[0,0,20056,20057,2537], -[0,1389,2323,2346,27608,29396,2436,2447,2463,2494,2496,2530,2272,2839,2297,2881,2900,2899], -[0,3048,3428,4160,3135], -[1,2343,20059], -[0,0,20060,20066,2487], -[0,13614,29404,1159,1593,22932,1855,1177,2133,2159,2070,29406,2569,29410,2708,2762,19073,3206,3410,3421,4103,23948,4135,19729,4389], -"stdio", -"stderr", -"drain", -"flush", -"3584", -[0,3430,7123,3048,1646,3721], -[1,2343,20068], -[0,0,20069,20070,2537], -[0,13614,13616,1177,14741,29416,2741,4389], -[0,6801,3432,6964,1858], -[1,2343,20073], -"-jsdom-abstract", -[0,0,20077,20078,4139], -"expect-", -[2,20074,594], -[2,552,20075], -[0,3421,1429,2899,1596,3202,29424], -[0,1697,3403,7318,29426,3038,3205,1758,3743,3048,7002,29428,29429,6692,3639,6803], -[1,2343,20080], -[0,20081,20084,20086,2487], -[0,1417,7272,13609,29440,2569,3433], -"mkal", -[2,1949,20082], -[0,13613,13614,1389,1177,2133,2159,13619,2571,3206,3410,3421,4103,6810,4389], -"pkg-pr-new", -[0,7276,3426,6789,2051,7107,6970,7288,6849,6763,6422,1858], -[1,2343,20089], -"type-check", -[0,20090,20091,20092,2487], -[0,1417,7272,13609,29440], -[0,13613,13614,20492,1159,9254,1177,2159,13619,2708,3410,3421,4103,4389], -[0,6944,6694,6801,3437,6693,7221,6615,7194,1858,3048,3432,6422,6763], -"orms", -[1,2343,34459], -[0,29450], -"array-f", -[0,3421,2899,1177,1954,1938,1958,1903,1948,1970], -"array-flatten", -"setprototypeof", -"merge-de", -[1,2343,20104], -"scriptors", -[2,20100,20102], -[0,20107,11686,20108,2537], -"-password", -[2,16722,20105], -[0,29456], -[0,3441,3046,6985,16114], -[1,2343,20110], -[0,20111,20112,20113,2537], -[0,29462,29464,1138,1457,1615,2687,4459], -[0,21122,4874,2675,2990,1894,4039,91], -[0,2070,2282,1444], -[1,2343,20115], -[0,20116,20118,20119,2523], -[0,29474,3029], -[2,30722,20731], -[0,6503,29476,1503,2272,2899,3203,3210,3421,4474,91], -[0,29478,28794,29479,24996,29480,25004,20181,29481,29483,6667], -"automatically", -[2,1163,8623], -[3,20121,11], -[2,20122,7120], -[2,20121,2353], -[1,2343,20126], -[0,20127,8002,20128,2523], -[0,29488,29490,28428,24488,28429,27908], -[0,1896,3445,3456,8423,8427,6587,8430,8428,10441,8429,1388,6038,8435,8433,1002,10443,10446,7058,1614,2978,1451,3729,5351,2090], -[1,2343,20130], -[0,20131,20132,20133,2523], -[0,2096,2185,3157,3445,4400], -[0,1166,2020,1906], -[0,13326,200,1896,3445,3456,8423,8427,6587,8430,8428,10441,8429,1388,6038,8435,8433,1002,10443,10446,1614,2978,1451,3729,5351,2090], -[1,2343,20135], -[0,20136,20138,20139,2487], -[0,29501,29505,12285], -"express3", -[0,5087,7637,8818,1170,29509,1192,2845,29512,3244,1894,4232,4468,4474,91], -[0,3452,8124,5576,1170,4967,1388,3212,91], -"partials", -[1,2343,20142], -[0,20143,20144,20145,2523], -[0,1677,2639,2854,3105,3744,89,3824,1155], -[0,68,470,1173,1248,15643,1596,1177,1879,1881,1938,1947,1958,1959,2200,2626,1192,3363,3400,705,4008,7707], -[0,8124,3452,29521,1936,1745,1179], -"unless", -[2,2032,20146], -[1,2343,20149], -[0,20152,20153,20154,2443], -"authn", -"authz", -[0,6825,3263], -[0,2070,705,4389], -[0,3455,29528,23196,29531], -[1,2343,20156], -[0,0,5795,2514,2487], -[1,2343,20158], -[0,20159,20160,2514,4139], -[0,29539,705], -[0,1173,1267,1177,1879,1938,1947,1959], -[1,2343,20162], -[0,20163,9839,20128,34352], -[0,2755], -"caching", -"expressjs", -[1,2343,20167], -[0,20168,20169,20172,2537], -[0,4720,3183], -[0,29551,4384], -"cjs-mock", -"hoare", -[0,7233,7058,5675,57,7119,200,1523], -"tRPC", -"RPC", -"express.js", -[2,10988,16957], -[1,2343,20180], -"fully-typed", -"type-safe", -[0,20187,20191,20192,4139], -"pi", -"typed-api", -"express-api", -"http-api", -"client-s", -[2,20185,2847], -[0,1637,29559,3561], -"unit-testing", -[2,13843,5576], -"web-de", -[0,1175,1193,1245,1257,1264,1628,1192,4307,2924], -[0,6829,11337,2054,16862,6707,7293,2924], -"velopment", -[2,20190,20193], -"web-api", -[1,2343,20197], -[0,20198,20199,20200,2443], -[0,29566,29567,4717,20088,19190,26007], -[0,29569,2899], -[0,14690,6802,29572,200], -[3,8286,12], -[2,20201,364], -"lient-", -"redirects", -[2,20203,20204], -[2,13224,20205], -[2,20201,20206], -[3,20207,13], -[1,2343,20210], -[0,20213,20214,20216,4139], -"reset-classic", -[2,20208,20211], -[0,1437,1477,1480,29018,16232,3074,29581,4290], -[0,4874,1166,2188,29583,4481,1906], -"sanitization", -[0,200,1478,6787,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], -[1,2343,20218], -[0,20219,20220,20222,2399], -[0,1834,29590,29591], -[0,2012,2530,2272,3102,3159,2899,3760,4170,4600], -"openapi3-ts", -[0,1149,5957,12804,2940], -[3,19441,15], -[2,20223,6643], -[1,2343,20228], -"wagger-ui-express", -[2,5051,20226], -[0,20229,20230,20231,2443], -[0,1149,1362,18443,9421,1209,3507,29600,29601], -[0,1414,1437,2070,2899,3230,3259,3519,4135,4170,4193,4246], -[0,3469,27812,18035,3259,25638,29605,7827,3230], -"camelize-ts", -[1,2343,20234], -[0,0,0,20235,2537], -[0,202,888,364,1237], -[1,2343,20237], -[0,20238,11686,20239,2487], -[0,19972,25493], -[0,6639,6884,4571,29615,3403,3741,29616], -[1,2343,20241], -[0,0,20242,20244,2537], -[0,4856,4864,6503,4874,4891,26584,1429,2020,2151,2899,3377,4474,2924,4707], -"snakify-ts", -[0,5194,6778,29622,29624,18135,1871,1283,8958], -[3,18009,14], -[2,20245,4990], -[2,4120,7020], -[3,8116,9], -[1,2343,20253], -"pecification", -[2,20248,20250], -[2,4364,1745], -[0,0,0,20254,2523], -[0,3475,5317,29632,29633,3474,9006,4967,1388], -[1,2343,20256], -[0,20257,20258,20259,2523], -[0,29638,1525,2131,2742,2975,4135,4449,36872], -[0,19181,442,19344,9237,18491,4874,5254,6520,36890,1009,1011,1177,26698,4039,91], -[0,200,29641,19101,20001], -[1,2343,20261], -[0,20264,20265,20267,2523], -"-symbols", -[2,3426,20262], -[0,3480], -[0,4874,1166,1702,4481,1906], -"is-extendable", -[0,1862,2018,2013,13771,2016,26349,6868,20000,15535,19138,29647,29648,6703,29649,1803,1388,965,1149,7003,6567,1362], -"array-slice", -"benchmarked", -[1,2343,20271], -[0,0,20274,20276,2523], -"for-own", -"kind-of", -[0,1166,1437,1702,17474,29654,17477,4481,1906], -"props", -[0,1862,3053,29656,6703,6910,21369,7253,25824,29657,1149,7003,6567,1540,6994,12804,1362], -[1,2343,20278], -[0,20279,20285,20286,2537], -[0,2017,3480], -[2,20284,29685], -[2,1884,2924], -[3,4679,10], -[2,20282,3031], -"@pa11y/", -[0,13789,5366,4874,1317,1701,1702,17474,18669,29654,17477,4481,4494,91,1906], -[0,1862,3768,28483,7051,6760,6994,6925,7094,6882,6870,7072,27334,27338,29664,12692,5957,1149,7003,6567,1362], -[1,2343,20288], -[0,0,20289,20291,2443], -[0,1166,1702,17474,21638,4193,17477,4481,1906], -"@types/yauzl", -[0,1862,17481,1851,29672,1149,7003,6567,6901,17480,12618,1362], -[1,2343,20293], -[0,20294,20295,20296,2537], -[0,2070], -[0,1192,1894,10761], -[0,1745,3709,29679,6774], -[1,2343,20298], -[0,20299,20300,20301,2523], -[0,20280,1169,1324,1525,1842,2929,3257,3357,3758,4135], -[0,1414,1177,29689,2899,29691,10627,4193], -[0,6653,7320,19748,31152,13716,13428,11346,1169,16790,200,33055,29727,34150,26632,3482,3758,11937,34151,5472,1155,34152], -[1,2343,20303], -[0,20307,20308,20309,2537], -"gulp-jsdoc3", -[2,2462,6504], -[2,4598,353], -[0,29069,9510,9479,9539,643,9448,29051,21505,3386,3393,9462,3397,3727,29698,29697,4248,4390], -[0,635,9516,9515,2613,29169,3297,29701,4039,4384], -[0,6666,3378,3358], -[1,2343,20311], -[0,20313,20315,20316,4139], -"color-support", -[0,22970,22971,29707,1668,18145,29708,1209,3074,3093,3478,3545,4507,29711], -[2,13721,15526], -[0,13789,11477,4870,4874,29717,977,1701,2096,2182,29721,3505,29722,4494,91,1906], -[0,27968,5351,13755,5122,1002,23992,4202,12197,29724,29726,13008,8745,8340,6398,17461,3758,3195,158,8221,8924,1936,29727,23691,20630,20631,18048,20637,21881], -"console.log", -[1,2343,20320], -"timestamp", -[0,0,20321,20322,2537], -[0,4874,7677,22839,33261,35609,1177,1938,1942,2832,91,1983,1984], -[0,4967,5995,5354,4963,181,6624,24456,23362,27448], -[1,2343,20324], -[0,0,20326,20331,2443], -"pure-rand", -[0,87,5583,811,816,1177,2193,2899,3253,26777,3421,4042,4073,4167], -[3,16596,12], -[2,20327,2024], -"poisoning", -[2,20327,20329], -[0,15008,25386,25388,16518], -"based", -"based testing", -[2,4635,20333], -[2,11861,10428], -"quickcheck", -[1,2343,20338], -[0,20343,5795,20344,2487], -"jscheck", -"jsverify", -"fuzz", -"fuzzer", -[0,27404,1437,12084,2021,2088,2185,2205,2654,2863,3157,3173,3490,814,29742,4562,4748], -[0,3487,5995,200,29744,5592], -[1,2343,20346], -[0,20352,20356,20357,2523], -"@fast-c", -"sv/format", -[2,20347,20348], -"@fast-csv/", -[2,20350,1644], -[0,29749,3084,4339], -"writer", -"csv writer", -"CSV", -[0,442,1759,1177,1895,1938,1953,1955,1958,2203,1209,2899,1894,4419,1531,91], -[0,3487,5576,10768,29752,36,5995,5592,4030,1781], -[1,2343,20359], -[0,0,20360,20361,2487], -[0,1362,1429,1506,2899], -[0,12804,4166], -"psql", -[1,2343,20364], -[0,20367,34487,20379,34352], -[3,19185,12], -[2,20365,4262], -[0,97,5663,1620,29762,29765,4729], -"macchiato", -[2,20365,20368], -"erge2", -[2,6502,20370], -"@types/pi", -"comatch", -[2,20372,20373], -"bencho", -"rmlnc", -[2,16693,20376], -"fdir", -[0,6599,5131,5592], -"hereby", -[1,2343,20383], -"snap-shot-it", -[0,20386,0,20387,2523], -"imple", -[2,20384,1744], -[0,18089], -[0,1936,57,12075,29790,10658,2062,29791,29792,15512,3493,1753,29793,29794,1644,4141], -[1,2343,20389], -[0,0,20390,2514,2487], -[0,2899,1177,2759,1317,29801,1311,1954,1938,1958,1903,1970], -[1,2343,20392], -[0,20393,20395,20396,2399], -[0,29806,4578,1433], -"strnum", -[0,1429,2899,3095,3752,1434,29810], -[0,2026,1544,1303,20150,5165], -[1,2343,20399], -"js2xml", -[0,20401,20402,20403,4139], -"json2xml", -[0,3501], -[0,3095,2899,1429,1434], -[0,3495,3497,1303,20150,5165,13445], -[1,2343,20405], -[0,20406,20407,20408,2537], -[0,1433], -[0,2899,1429,1434], -[0,3495,2703,1303,20150,5165,29824,6875], -"avvio", -"toad-cache", -[1,2343,20421], -"find-my-way", -"@fastify/", -[2,20413,1851], -"-warning", -[2,3729,20415], -"abstract-", -[2,20417,6807], -"-my-request", -[2,13318,20419], -[0,20429,20407,20430,4139], -"-json-parse", -[2,18112,20422], -[3,16781,12], -"ringify", -[2,20424,20425], -[2,8530,4643], -[2,20413,20427], -[0,29829,3501], -[0,3495,1303,20150,5165,20151,14374,3424,28438], -[1,2343,20435], -"-compiler", -[2,20426,20432], -[2,20413,20433], -[0,20438,20439,20430,2523], -"h2url", -"ajv-i18n", -[0,29835,3424,1433,26413,4578], -[0,3095,2899,1429,3752,1434], -[1,2343,20448], -"autocannon", -"fast-json-", -"body", -[2,20442,20443], -"merge-patch", -[2,8530,20445], -"branch-c", -[0,0,7878,20455,2537], -"omparer", -[2,20447,20449], -[2,3125,1276], -"fluent-", -[2,20452,2845], -[2,20413,3697], -[0,3495,15393], -[1,2343,20457], -[0,20458,0,20459,2523], -[0,3729,614], -[0,6804,3403], -"piscina", -"@vercel/n", -[1,2343,20483], -"@vercel/ncc", -"loader-", -[2,20464,8791], -[3,12397,15], -[2,20466,2924], -"@umijs/b", -"abel-", -"preset-umi", -[2,20469,20470], -[2,20468,20471], -[2,1221,18104], -[2,4524,20473], -[3,1233,25], -[2,20475,15301], -"tyled-", -[2,20477,4963], -[2,5584,20478], -"@umijs/c", -"ase-sensitive-paths-webpack-plugin", -[2,20480,20481], -[0,0,9264,20486,4139], -"ader-runner", -[2,13513,20484], -[0,1388,1389,3403], -[1,2343,20488], -[0,0,20489,20497,2523], -[0,1906,1166,4481], -[2,19523,3036], -[2,5613,4565], -[2,5613,3053], -[2,5613,6645], -[2,5613,6913], -[2,18996,4237], -[2,4385,57], -[0,3403,3504,29854,2090,17996,2150,17462,16503,7318,4262], -[1,2343,20501], -"anything", -"protocol", -[0,0,11332,20502,2537], -[0,3403,18104,2090,4014,28977,29862,3506,15174,614,594,364,6805,6422,1858,2741,13735,4354], -[1,2343,20504], -[0,0,20505,20506,4139], -[0,29867,5535,4874,5254,7677,26881,4201,91,1984], -[0,2026,6961,4082,7433], -"fbjs-css-vars", -"setimmediate", -[1,2343,20510], -[0,0,20511,2514,2523], -[0,4874,7677,1446,668,1177,1905,2807,1894,91,4543,1984,28862], -[1,2343,20513], -[0,20518,20530,11581,2537], -"@skypack/package-check", -"dead-code-elimination", -[2,9403,20515], -[2,7911,20516], -[0,2760,2856,18545], -"in web", -"in javascript", -"in react", -"Plug & Play", -[3,11608,13], -[2,7519,4963], -"ui component", -[2,16914,6286], -"advanced ", -[2,20527,5983], -"scan", -[0,2152,2899,3699], -"scanner", -[1,2343,20534], -"phonebook", -[0,20535,20552,20554,2537], -[0,29882,29884,3486,3923,23952,3348], -"autofillotp", -"share", -[2,7426,17357], -[2,2998,20538], -"mylocation", -[2,13735,20540], -"colorpicker", -"wakelock", -"WhatsappShare", -"NetworkConnection", -"TextToSpeech", -"VoiceRecognition", -"SnapScanner", -"Network", -"Monitor", -[2,20549,20550], -[0,4874,1398,2018,1894,4389,91], -"View360", -[0,2636,1179], -[1,2343,20556], -[0,20557,20558,20559,2399], -[0,1620,10752,29893,29894,29895], -[0,53,8229,87,442,5583,1193,29897,27401,1377,1389,1424,1505,1177,2193,2203,1192,2780,11348,1783,29899,1894,3754,4042,8849], -[0,2636,29901,29903,11812,1746,13814], -[1,2343,20563], -[3,5085,23], -[2,20561,582], -[0,0,20564,2514,2537], -[0,1362,29908,1429,29913,1506,2899,3697], -" program", -[2,6564,20565], -"data ", -[2,20567,6355], -[1,2343,20570], -[0,20571,20572,20578,2537], -[0,25624,29919,29923,29920,29918,29928], -[0,28042,29934,1149,1362,1499,29933,91,1984,23539], -"dequal", -"glob-", -[2,20574,3508], -[3,16396,12], -[2,20576,3508], -[0,18035,29937,3519,14871,25638,14873,29938], -[1,2343,20580], -[0,20581,20582,20583,2523], -[0,3524,4237,4709], -[0,1173,1175,1178,1257,1264,1267,14237,1177,1881,1935,1938,2126,29945,1192,2774,29946,10622,4039], -[0,3520,3521,13392], -"detect-libc", -[1,2343,20587], -"thread", -[0,20588,20589,20590,2443], -[0,2057,2151,29952,22667,3730,705,17047,4707], -[0,1177,2276], -[0,3521,29727,3364], -[1,2343,20592], -[0,20593,20594,20590,2523], -[0,1863,2057,2151,29952,22667,3730,705,17047,4707], -[0,1177,2276,824], -"@pinojs/redact", -[1,2343,20599], -"figure", -"fallback", -[0,20600,20601,20602,2523], -[0,1137,1512,1543,29964,1591,16442,2765,3183,3456,3459,6331,29965,3547,3741,3762,705,4167,4562], -[0,18007,1177,1900,1903,1938,1954,1958,1970,2759], -[0,200,1591,3525,29969,29971], -[1,2343,20604], -[0,0,11488,2514,2443], -[1,2343,20606], -[0,0,0,20607,4139], -[0,7009,1512,6983,200,7201], -[1,2343,20609], -[0,0,20610,20612,2523], -[0,1177,27275,2398,2899,3421], -"filesaver", -[0,2070,3529,3530], -"saveas", -"blob", -[1,2343,20616], -[0,7936,7938,7939,4139], -[1,2343,20618], -[0,0,20620,20625,34352], -"strtok3", -[0,1166,29991,4481,27659,1906], -"token-types", -"-extra", -"-extras", -[2,15149,20623], -[0,19138,7241,1862,6567,29994,12918,202,21244,28067,6270,353,4719,21009,6715,1149,7003,6778,1362], -"@tokenizer/token", -"commonmark", -"noop-stream", -[1,2343,20633], -"pic", -"picture", -"photo", -[0,20692,20693,20765,2399], -"video", -"exif", -"macho", -"jpg", -"apng", -"gif", -"flif", -"xcf", -"cr2", -"cr3", -"orf", -"arw", -"dng", -"nef", -"rw2", -"tif", -"bmp", -"icns", -"jxr", -"psd", -"indd", -"rar", -"7z", -"mp4", -"mid", -"mkv", -"webm", -"mov", -"avi", -"mpg", -"mp2", -"mp3", -"m4a", -"ogg", -"opus", -"flac", -"wav", -"amr", -"epub", -"mobi", -"rtf", -"woff", -"woff2", -"eot", -"ttf", -"otf", -"ico", -"flv", -"xz", -"xpi", -"cab", -"deb", -"rpm", -"Z", -"lz", -"cfb", -"mxf", -"mts", -[0,30001,30004,30007,30011,20416,30015,30017,18730,20595,30018,30019], -[0,5517,36559,30022,4874,1090,30024,28400,1409,1676,21594,1177,1938,1953,1954,1958,2020,30025,30027,2702,1192,3073,3079,30028,29197,28941,3697,3752,3756,4039,4135,4238,30029,4294,4389,4431,4474,4481,91,4709], -"webassembly", -"blend", -"bpg", -"docx", -"pptx", -"3gp", -"j2c", -"jp2", -"jpm", -"jpx", -"mj2", -"aif", -"odt", -"ods", -"odp", -"heic", -"pcap", -"dsf", -"lnk", -"voc", -"ac3", -"3g2", -"m4b", -"m4p", -"m4v", -"f4a", -"f4b", -"f4p", -"f4v", -"mie", -"qcp", -"asf", -"ogv", -"ogm", -"oga", -"spx", -"ogx", -"ape", -"wv", -"cur", -"nes", -"crx", -"ktx", -"dcm", -"mpc", -"arrow", -"shp", -"aac", -"mp1", -"s3m", -"xm", -[2,12207,35471], -"skp", -"lzh", -"pgp", -"chm", -"3mf", -"zst", -"jxl", -"vcf", -"jls", -"pst", -"dwg", -"parquet", -"arj", -"cpio", -"ace", -"avro", -"icc", -"fbx", -"vsdx", -[0,2062,2942,3101,1781], -[1,2343,20767], -[0,0,20768,20769,2537], -[0,1177,1895,19286,1954,1955,2675,1192,1894,4400], -[0,3378,30036,30037,3304,30038], -[1,2343,20771], -[0,20772,20773,20774,2523], -[0,3549], -[0,1177,25843,91], -[0,158,26020,1687], -[1,2343,20776], -[0,20777,20778,20779,2487], -[0,30055], -[0,1906,1166,4481,4400], -[0,3383,1781,7914,3378,13864,2100,2104,2105,7076,6614,6605,2090,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], -[1,2343,20781], -[0,8400,8134,20782,2523], -[0,4750,3383,2090,2100,2104,2105,7076,6614,6605,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], -[1,2343,20784], -[0,0,10435,20785,2523], -[0,18523,2041,6661], -"locate-path", -[1,2343,20790], -"-magic", -[2,1981,20788], -[0,20791,0,2514,2523], -[0,30071], -[1,2343,20793], -[0,20794,20795,20798,2443], -[0,10780,1301,4736], -[0,1389,2899,16112,4770], -"detect-file", -"resolve-dir", -[0,13336,1388,16718,2072,57,6523], -[1,2343,20802], -"dir-polyfill", -[2,4571,20800], -[0,20803,20804,20805,2537], -[0,1104], -[0,1177,1889,1954,2022,2899,3421,91], -[0,1851,1932,2541], -[1,2343,20807], -[0,20808,8134,20809,4139], -[0,30088], -[0,23869,30090,3547,23868,30091,4718,1871,30092,30093,30094], -[1,2343,20811], -[0,0,20812,20813,34352], -[0,1429,2759,2899,1899], -[0,23869,30090,3547,23868,23877,2712], -[1,2343,20815], -[0,20816,11488,20817,4139], -[0,30110,30115,30106,30122,1112,1149,29183,1457,30117,1525,1606,1673,1676,1836,2015,30104,3188,3278,30107,30108,30119,30112,30120,8630,4135,4232,4243,30105,2822], -[0,200,21110,21111,2041,3548,30124,3073,1781,2026,2556,30125,2999,30127,30128,30130,30131,30132,30134,7047,22850,30135,27662,13325,5258,30137,30139,30140,30141,30142,20997,20998,28845,4345,30143,3363,30144,17979,30147,27838,30140,30148,2134,28413,30149,13539,3111,21102,30153,30155,30156,30158,24093,17878,1605,20999,30159], -[1,2343,20854], -"@firebase/app", -[3,20819,11], -"uth", -[2,20820,20821], -"@firebase/", -[2,20823,614], -[2,20823,13901], -[2,20823,18035], -"nalytics", -[2,20820,20827], -[2,20819,2063], -[3,20829,14], -[2,20830,553], -"firestore", -[2,20823,20832], -[3,20833,11], -"unctions", -[2,20834,20835], -[2,20823,8899], -[3,20829,15], -[2,20838,14044], -[2,20822,4097], -[2,20823,6681], -[2,1161,10653], -[2,20823,20842], -"remote-", -[2,20844,1541], -[2,20823,20845], -[2,20825,4097], -[2,20826,4097], -[2,20828,4097], -[2,20829,4097], -[2,20833,4097], -[2,20836,4097], -[2,20837,4097], -[0,0,20855,20856,2537], -[0,1389,1400,1544,1177,1895,3421,1894,3758,4151,30164,4389], -[0,30166,14355,14356,30167,30168,57,18048,29895,30170,3549], -[2,20841,4097], -[2,20843,4097], -[2,20846,4097], -[1,2343,20861], -[0,20864,20865,20866,34352], -"Firebase", -"realtime", -[0,4477], -[0,1835,1192,2784,2796,4227], -[0,2924,4749,24753,24754], -[1,2343,20877], -"@fastify/b", -"usboy", -[2,20868,20869], -[3,20848,19], -[2,20871,553], -"farmhash-modern", -"jwks-rsa", -"@google-cloud/firestore", -[3,20875,14], -[0,0,0,20878,2537], -[0,3552,28100,4796,7191,7287,2062,6824,1161,7242,163,6698,5260,6646,7117,3378,6878,6661,6666,7037,7090,7293,6950,7086,6573,664], -[3,20819,12], -[1,2343,20881], -[0,20896,20898,20899,2523], -"i-documenter", -[2,20879,20882], -[3,20840,15], -[2,20884,553], -[2,4853,6641], -"rebase-token-generator", -[2,16785,20887], -[2,16936,4007], -[3,2113,11], -"ken-generator", -[2,20890,20891], -"http-me", -"ssage-parser", -[2,20893,20894], -[0,1170], -"admin", -[0,4072,4474,91], -[0,30190,30191,30192,30193,30194,30198,30200,30202,5592,30203,30204,30207,30208,5995,4967,91], -[1,2343,20901], -[0,6263,20906,20907,2537], -"-sql-connector", -[2,6599,20902], -[2,20876,20903], -[2,20876,11631], -[0,48,53,68,83,85,87,14128,5583,816,6373,1178,1193,1198,30214,1610,1652,1745,1177,1881,1938,2126,29945,2675,1192,2990,29946,1894,30216,3776,4042,4071,4073,4131,4172,30217,91,4585], -[0,4315,3555,1832,30219,7165,30220,89,2124,91,30223,30225,30227,1473,7208], -"async-lock", -"cjson", -"-in-any-order", -[2,1693,20910], -"exegesis", -[2,20912,3228], -"gaxios", -[1,2343,20919], -"auth-library", -[2,10692,20916], -"libsodium-wrappers", -[0,0,20920,20923,2523], -[0,30236,30239,30240,30241,1177,30242,91], -"proxy-agent", -"sql-formatter", -[0,30245,4627,5398,8190,8191,8193,30247], -"stream-chain", -"stream-json", -[1,2343,20927], -[0,20929,20930,20932,2487], -"superstatic", -[0,1149,1676], -[0,1192], -"triple-beam", -[0,27,13397,6731], -"-analytics", -[2,14566,20933], -[2,4562,8683], -[1,2343,20939], -"cdn", -"ssl", -[0,20941,0,20944,4139], -"hosting", -[0,3266,3527,4228], -"hronization", -[2,15001,20942], -[0,1623,3561,22292,7121,57,30258,353,24798,5198], -[1,2343,20946], -[0,20947,20952,20953,4139], -[0,3681,3688], -"alce", -[2,1708,16580], -"extend-", -[2,20950,3048], -[0,4874,1177,1895,30265,3561,1894,91], -[0,1623,3561,6425,30268,3563], -[1,2343,20955], -[0,20956,20957,20958,2537], -[0,1457,5314,2151,3527,3616,30274,15245,30275,4207,27921,4747], -[0,1166,1414,1596,1177,30279,2203,3561,3613,1894,4337,3348], -[0,200,3561,22147], -"@types/rimraf", -[2,13777,12798], -[1,2343,20962], -[0,20963,0,20964,2487], -[0,30286,205,208,218,30287], -[0,1473,14186,1623,4964,6564,30289,30290,30291,29428,3561,6425,6616,30292,17540,5341], -[1,2343,20967], -"unflatten", -[0,20968,20969,20970,2487], -[0,1393,30298,30299,3688], -[0,30302,3561], -[0,1473,1512,1536,1623,3178,3561,6425], -[1,2343,20972], -[0,20973,20974,20975,34352], -[0,1393,3688], -[0,3561], -[0,1623,16919,3561,6425], -[1,2343,20977], -[0,20984,20985,20987,2523], -"@types/acorn", -[3,4060,16], -"vereload", -[2,20979,20980], -"erve", -[2,15476,20982], -[0,1165,30298,1437,30314,30315,3561,30317,30326,3564,30327,30329,30331,30334,30336,30338,30341,30343,3579,3584,3587,30346,30348,30350,30353,30356,3643,30358,30360,30363,30365,30366], -[0,1173,1175,1195,1264,1268,1279,19243,1461,1628,30368,30370,30371,30372,30378,1177,30380,1916,1959,2054,2092,2600,30381,2822,2843,3105,30383,3160,30385,30389,30390,30391,30393,30395,30396,30397,30399,29285,3376,30400,3427,3459,30402,3613,3618,30274,16578,3744,89,3824,30404,4039,4294,4307,4389,30407,2924,4681,30410], -"lightweight", -[0,3561,6425,1623,12616,30413], -[1,2343,20989], -[0,20990,0,20993,2523], -[0,30424,205,208,213], -"byline", -"util-extend", -[0,30426,30427,1623,30428,5317,6413,3561,6425,30430,3766,10658,12616], -[1,2343,20996], -"markdox", -[0,21001,0,21002,2537], -"deploy", -"deployment", -"devops", -"ssh", -[0,30424,205,208,30287,3688], -[0,1623,30428,5317,6433,3561,6425,3583,10658,6436,6437,12616], -"sequential", -"remote", -[1,2343,21006], -[0,21007,0,21008,2537], -[0,30424,205,208,3681], -[0,30426,30427,1623,30428,5317,30442,19101,3561,6425,5547,3586,10658,12616], -"wrapper", -[1,2343,21011], -[0,21012,21013,21017,2487], -[0,3681], -[0,3561,3678,26712], -"mini-s", -"vg-data-uri", -[2,21014,21015], -[0,1623,4298,3561,6425], -[1,2343,21021], -"-datepicker", -[2,2128,21019], -[0,0,20974,21025,34352], -"ailwindcss", -[2,1977,21022], -[2,3704,4383], -[0,1623,1681,16918,3561,6425], -"windicss", -[1,2343,21051], -[2,20525,591], -[2,4380,6911], -"tailwind c", -[2,21030,544], -"tailwind ", -[2,21032,11513], -[2,21032,6082], -"sections", -[2,21032,21035], -"tailwind ui", -[2,21032,89], -[2,21032,188], -[2,21032,1098], -"tailwind s", -[2,21041,1971], -"django", -[2,21032,21043], -"tailwind r", -"uby on rails", -[2,21045,21046], -"tailwind l", -"aravel", -[2,21048,21049], -[0,0,20974,21058,2537], -"tailwind nuxt", -"tailwind n", -[2,21053,2680], -"tailwind a", -"stro", -[2,21055,21056], -[0,15215,1623,3599,3178,16919,3561,6425], -"flask", -[2,21032,21059], -[1,2343,21062], -[0,0,21063,21064,2487], -[0,1687,3527,3561], -[0,3561,1623,6425,30462,30465,30466], -[1,2343,21066], -[0,0,21068,21069,4139], -"ffmpeg", -[0,1429,2323,2384,2463], -[0,3561,1623,6425,30472,15182,9320], -[1,2343,21071], -[0,21073,21075,21076,34352], -"fbemitter", -[0,2654,9673,3561,3676], -[2,3794,11017], -[0,19605,1165,1429,1503,1177,1895,1930,19622,1945,1953,19623,1955,1964,1988,17308,2899,19761,3421,30479,3678,30481,1894,4320,4323,4337], -[0,3561,5341,1936,188,30483,30484,1623,695,2278,4329,30485,4337], -"dispatcher", -[1,2343,21079], -[0,21080,0,21081,2399], -[0,30287,3688], -[0,12083,1623,158,30491,12631,16587,3561,6425,23992,6398], -"lolex", -[1,2343,21084], -[0,21085,21086,21087,2399], -[0,3688,30275,814], -[0,1166,1414,1177,30279,1955,2203,3561,3678,1894,4337], -[0,1623,3561,6425,1204,30498,3378], -[1,2343,21089], -[0,21090,0,21091,2537], -[0,2984], -[0,3561,30504,30506], -[1,2343,21093], -[0,21094,21095,21096,2523], -[0,2807,4135,1595], -[0,1700,1192,695,2278,2675,3144,30512,1622,1177,1637,1701,2203,3561,4337,4468,4474,2924,1894,1610,48,442,1193,17167,4294,53,2969,2990,3400,4111,30520,3613,3640,192,1953,27928,4257,87,4523,1939,3616,1938,20281,1982,1895,1955,19344,30518,5467], -[0,1623,3561,22147,2924,11526], -"cliff", -"shush", -"flatiron", -"nssocket", -"-monitor", -[2,2134,21101], -[1,2343,21105], -"getopts", -[0,21107,20974,21112,2487], -"cli-testlab", -[0,3688,4319], -"fault", -" tolerant", -[2,21108,21109], -"sysadmin", -[0,1623,3178,16918,3561,6425], -[1,2343,21114], -[0,21115,21119,21123,4139], -[0,1393,30298,3681,30532], -"node-ab", -[2,18876,12620], -[2,21116,21117], -[0,30302,3561,26712,3591], -[2,6062,2978], -"ross-spawn", -[2,4857,21121], -[0,1623,16918,3561,6425], -"jest-circus", -"karton", -[1,2343,21128], -"typecheck", -[0,5488,20974,21130,2523], -[2,1218,21131], -[0,1623,2414,30541,30542,16918,6425], -"hermes-parser", -[1,2343,21135], -[3,4852,15], -[2,21133,13921], -[0,21137,20974,21138,2399], -"increment", -[0,30299,3688,30532], -[0,1623,3561,6425], -[1,2343,21140], -[0,21145,20974,21150,2399], -"asynckit", -"combine", -"d-stream", -[2,21142,21143], -[0,1393,3688,30532], -[2,13888,2759], -"fake", -"far", -"is-node-", -[0,3561,1623,6425,3178,16918,3634], -"modern", -[2,21149,21151], -"obake", -[1,2343,21157], -[2,31868,7625], -[2,31865,21160], -[0,21159,21164,21169,2537], -"dezalgo", -[0,1636,3681], -[3,9367,18,5], -"@tunnckocore/prettier-config", -"formdata-", -[2,21162,6422], -[0,30559,3561], -[2,19713,1781], -[2,3862,18481,21172], -"www", -"ulpoad", -[0,1623,3178,16918,3561,6425,3586], -[1,2343,21171], -[0,21176,21181,21183,2399], -"bob", -[3,11366,11], -[2,21173,3797], -"tiny-warning", -[0,16837,3681,3688], -"just-", -"debounce-it", -[2,21177,21178], -"tsdx", -[0,1596,1177,1895,2675,1192,2990,3561,1894], -[2,7519,582], -[0,4529,3561,1623,6425], -[1,2343,21190], -"render props", -"higher", -" order component", -[2,21186,21187], -"hoc", -[0,21012,0,21191,2443], -[0,3561,1623,6425,2278,3639], -[1,2343,21193], -[0,21194,0,21196,2443], -[0,30577,220,3681], -"conditional", -[0,30579,1451,30581,1623,30413,30428,3639,30582,3561,6425,3624,3586,10654,10659,5341,12616], -[1,2343,21198], -[0,21199,21200,21201,2523], -[0,30587,30589,30590], -[0,20117,1393,3561,3613,4042], -[0,3561,1623,6425,30594,2887,30595], -[1,2343,21203], -[0,0,20974,21204,2487], -[0,3561,1623,6425,8426], -[1,2343,21206], -[0,5488,20974,21138,2537], -[1,2343,21208], -[0,5488,20974,21138,2443], -[1,2343,21211], -"check-dts", -[0,20973,20974,21138,4139], -[1,2343,21213], -[0,5488,20974,21215,2537], -"front matter", -[0,1623,3374,16918,16919,3561,6425,1002], -"meta data", -[1,2343,21218], -[0,21219,20974,21138,2523], -[0,3688,30532], -[1,2343,21221], -[0,0,21222,21223,2537], -[0,2675,2899,3561,2759,1894,2990,3640], -[0,3561,3665,3586,6425,1623,3585,1932], -"universalify", -[1,2343,21229], -"klaw", -"dir-files", -[2,15034,21227], -[0,21230,0,21231,2523], -[0,28789,30630,30633,28817,30636,26477,30640,32579,30643,30647,30649,30652,30654,30657,30658,215,30662,30670,30673,30677,30678,30682,30686,30690,31001,30693,30701,30703,27930,218,28640,27069,30708,30712,29388,30715,32835,29704,30721,30724,30725,1165,1393,30728,30733,30736,1635,30326,30739,3570,30331,30338,3579,3584,3587,30742,30744,4791,30747,30348,30749,3611,30751,30754,3643,30757,30759,30761,30763,30358,30363,30366], -[0,1623,30428,16897,14836,30765,3286,3561,6425,10654,10659,16900,12616], -[1,2343,21233], -[0,21234,21235,21138,4139], -[0,1393,30298], -[0,30302,2646,3561], -"assist", -[2,6019,21236], -[1,2343,21239], -[0,0,0,21240,2537], -[0,1623,3561,30775,57,21110], -[1,2343,21242], -[0,0,0,21245,2537], -"any-promise", -"then", -[0,1623,3561,30775,57,4329,2278], -"thenify-all", -[1,2343,21248], -[0,21249,21250,2514,2443], -[0,1636,23462], -[0,48,53,68,11267,61,87,94,1166,1198,16150,1701,1177,1938,2070,3183,3421,3561,4135,91], -[1,2343,21252], -[0,21253,21254,21255,4139], -[0,3688,4361], -[0,30315,3561], -[0,1623,3178,16918,3561,6425,8221,4361], -[1,2343,21257], -[0,21012,20974,21138,2537], -[1,2343,21259], -[0,0,21260,21261,2537], -[0,1177,2675,2990,1894,4387,4389], -[0,3561,6692,57], -[1,2343,21263], -[0,21264,0,21265,2537], -[0,28807,30805,30808,30811,30813,30816,30818,4484], -[0,14873,25638,14871,3519,18035,1747,13392,5576,5995,29938,14872,91,4799,1999], -[1,2343,21267], -[0,21268,21269,21270,2537], -[0,9376,9375], -[0,192,22559,1414,1429,1431,1436,1567,2675,2829,2990,2899,4255], -[0,1936,6523,23760,57,353,30826,24798,7121,26467], -[1,2343,21272], -[0,21273,0,21274,2523], -[0,30840,3348,2970,2973,4431,30843,2972,30842,3310,30837,30834,3923,30833,30839], -[0,1747,28088,3693], -[1,2343,21295], -"@monaco-editor/loader", -[3,7664,11], -"topwatch", -[2,21277,21278], -[2,7666,6731], -"@snippetors/vuepress-plugin-tabs", -[3,19464,17], -"google-a", -[2,21283,20827], -[2,21282,21284], -[2,93,4314], -[2,21282,21286], -[2,21282,7193], -"monaco-", -[2,21289,6038], -"dsense2", -[2,21283,21291], -[2,6324,21292], -[2,19469,21293], -[0,21297,21298,21299,2537], -"bitap", -[0,13609,30849,30850,30855,1695], -[0,1173,1280,4895,1245,1264,1389,5669,30857,2025,2297,2881,25848,2895,2900,30859,2899,30862,18102,3774,4019,4135], -[0,3696,1145,6468,1973,5472,5286,6892], -"@types/katex", -[1,2343,21303], -"socket", -[0,21304,21305,21310,2487], -[0,1615,23975,4707], -[0,1148,2759,2899], -"tex", -"sublime", -"katex", -"sublime text", -[0,3358,582,3378,3697,30872,18462,1973,5001], -[1,2343,21312], -[0,0,21313,21314,2443], -[0,30877,30879,53,5874,12372,87,94,11976,4856,6503,4874,6513,17214,16480,30881,1429,1596,1610,30883,668,2675,30888,3165,2899,3401,30889,28423,3744,11481,4193,4196,4072,91,4548,1983,1984,824], -[0,3698,89,181,6073,30891,23361,4963,30892,6400,5130], -"globule", -[1,2343,21318], -[2,2237,5365], -[0,21319,7923,11581,2523], -[0,1437,1457,2152,18545], -[1,2343,21321], -[0,21322,21323,21324,2537], -[0,30905,8506,3137], -[0,21024,5467,811,8850,816,5087,9363,1009,1011,1529,1177,1895,1955,2675,1192,30912,12129,1894,4042,4257,4072,4474,91], -[0,1894,1932,1776,8505], -[1,2343,21326], -[0,0,21327,21330,2487], -[0,4874,30922,1166,1894,91,13151], -[2,4755,1145], -"yeoman-test", -[0,1894,30924,91,5651,3705], -[1,2343,21332], -[0,21333,21334,21335,4139], -[0,18710], -[0,3401,1894], -[0,6661,1932,1894], -[1,2343,21338], -"restangular", -[0,0,21342,21343,2487], -"ui-router", -"foundation", -"traceur", -[0,8862,811,816,4874,1166,1894,4042,4075,3709,4474,4484,91], -[0,1894,3709], -[1,2343,21345], -[0,21346,0,21347,2487], -[0,30940,1209,1997], -[0,1894,1541], -"find-git-root", -[1,2343,21353], -"git-config", -[3,31021,19], -"@merkle-open/eslint-config", -[0,0,8134,21355,2537], -"modular", -[0,3721,1413,1412,2098,4202,2090,12786,30946,7017,30947,2382,30948,23933,30950], -[1,2343,21357], -[0,21358,21359,21361,4139], -[0,1209,30956], -[0,1429,1506,1509,30958,2899], -"pooling", -[0,3721,1851,30960,1676,6738,7017,13086,22405,1671,12786], -[1,2343,21363], -[0,21364,21366,2514,2523], -[0,8801,1110,3847], -"ts2mjs", -[0,4880,15606,4889,2700,2798,89,3824,3904], -"iterators", -[1,2343,21370], -"iterable", -[0,21372,8134,21375,2487], -[2,21373,29777], -[0,30970], -"@prisma/d", -"@prisma/dev", -[0,3721,22405,12786,24130,30946,7017,6901,3242,30974,17003,30975,6754,2585,1871,6988,15244], -[1,2343,21382], -"@werkzeugkiste/eslint-config", -[3,21377,15], -[2,6019,1541], -[2,21378,21379], -"install-", -[0,21389,0,21390,2487], -"postmerge", -[2,17496,21383], -[2,21381,21384], -[3,9794,17], -[3,13848,20], -[2,21386,21387], -[0,6041,4484,2687,26379,3530,30097,3527], -[0,3358,30981,30982,1894,3720,6983,1501,30983,30872], -[1,2343,21392], -[0,21394,21398,21399,2523], -"@cfware/lint", -[0,1512,3183], -"@cfware/nyc", -"if-ver", -"libtap", -[0,2899,2272,4170,2759,1596,3202], -[0,1781,200,6983,1512], -[1,2343,21401], -[0,21403,21408,21409,2523], -"available", -[0,3260,25638,21374,28286,30996,21351], -"connection", -"tcp", -[3,6045,9], -"chosen", -[0,3467,4763,2611,1192,3445,2020,2929,28974,3510,1759,8537,15452,1457,2151,842,16145,16473,2794,3077,3310,29710,4294,31000,91,5087,4874,6477,28076,1151,2191,31004,3393,31006,32248,31008,28229,31009,25629,31013,4864,33235,23531,8998,29420,31015,31018,13471,32470,31023,31026,33237,28231,29421,26285,33683,21371,13502,29425,31475], -[0,9628,31034,31035,31037,31038,18035,1747,17626,31039,6869,31040,31041,31042,3519,31043,31045,31046,31047,31048,31049,31050,31051,31052,31221], -[1,2343,21411], -[0,0,21412,21414,2537], -[0,5542,1317,1429,31058,1700,31061,1177,1942,1964,2323,2361,2367,2409,20304,2494,2496,31063,2553,2654,2665,2832,2899,3310,3400,1894,3756,19745,19750,12120,3980,19751,4183,31066,4747], -"std", -[0,588,5342], -[1,2343,21416], -[0,21417,21419,21421,4139], -[0,1362,1364,1512,2026,3078,3188,3220,31074,3460,3507,31075], -"@sec-ant/readable-stream", -[0,1429,2323,2463,3215,4089,4193,4196,4339], -"onetime", -[0,1370,7223,29179,18157,12468,2325,3358,31078,3383], -[1,2343,21424], -"precise-now", -[0,0,6538,2514,2537], -[1,2343,21426], -[0,0,21427,21428,2487], -[0,4770,2899], -[0,3729], -"-maps", -[2,6477,21429], -[1,2343,21433], -[2,2190,6660], -[0,0,0,21434,8878], -[0,200,3730], -[1,2343,21436], -[0,21443,0,21445,2537], -[3,13936,15], -"evry", -[2,21437,21438], -"make-d", -"eno-edition", -[2,21440,21441], -[0,1437,3730], -"deno", -[0,2924,1932,3730,10036], -[1,2343,21448], -"deno-edition", -[0,21449,21451,2514,4139], -[0,29277], -"deno-entry", -[0,1082,4039,2759], -"denoland", -[1,2343,21454], -[0,0,21460,21461,2487], -"es2022", -[3,72,14], -"ifconfig", -"ipconfig", -"mac-address", -[0,1389,1610,1177,10697,2675,2297,2871,2881,2900,2990,2899,3400,1894,4039,4042,4077,4193,4650,91], -[0,1862,3734,6789,14833], -[1,2343,21463], -[0,21467,17022,21471,2537], -"email-", -"addresses", -[2,21464,21465], -[0,2899,4193,4545], -"dir-compare", -"tschaub", -[2,1884,21469], -[0,6567,14833], -[1,2343,21473], -[0,16583,21474,11581,2487], -[0,1804,2109,2899,3699], -[1,2343,21478], -"manage-path", -"opt-cli", -[0,21484,21487,21488,2487], -"chai-s", -"chai-string", -"kentcdodds", -[2,1884,21481], -"trav", -[0,13388,1149,3917,13832,4709], -"is-after-all", -[2,21483,21485], -[0,1177,4616], -[0,3741,6876,31122,7020], -[1,2343,21490], -[0,21491,21492,21493,2487], -[0,2929,16235], -[0,48,53,78,87,4387,4389], -[0,181,3742,200,3741,8626,6876,6847,1523,2184,4403,8620,31129], -[1,2343,21500], -"@primer/octicons", -"@primer/", -"primitives", -[2,21496,21497], -[2,812,1936], -[0,21501,21502,10570,2523], -[0,3082,3427,3847], -[0,1193,1268,1389,1408,1177,2708,1192,89,31135,31136], -[1,2343,21504], -[0,0,21506,21508,2443], -"minipass", -[0,9363,4874,31142,1414,2620,31145,31147,1894,3985,3998,31148,31150,4505,91,18002,1906], -"path-scurry", -[0,31152,23584,1936,4374,18523,3205,8221], -"-from-dist", -[2,9478,21509], -[1,2343,21513], -[2,5745,1563], -[0,21514,21515,21516,2523], -[0,31157,31159,31160,31161,31162,31165,31166,31167,31169,31170,4874,3080], -[0,1317,1389,31172,1408,1437,1875,1177,2000,2004,2193,28406,31174,21749,2323,2409,2419,2510,2530,1776,3183,3421,3951,4389,4487,91,4535,4599,4600,4603], -[0,7018,6765,7050,91], -[1,2343,21518], -[0,21521,21522,21523,2523], -"dirname", -"wildcard", -[0,11304,28502,31180,14336,1437,2070,2765,31182,3760,12826,4130,4232,31184,31186,4747], -[0,7740,4865,23689,31188,9129,4874,1364,1429,1431,28556,2025,2026,2323,31190,2526,2272,1209,3127,2899,31191,4039,4089,4135,4487,31194,91,31195], -[0,1098,1973,5472,11132,13841,28522], -[1,2343,21525], -[0,21527,21528,21529,2537], -"min-document", -[0,7058,31202,1676], -[0,31205,5245,5087,4874,1151,1192,4468,91,2190], -[0,27,2671,2658,1544,3013,31207,31209,18413,31210,31211,31212], -[1,2343,21531], -[0,21532,21533,18970,2537], -[0,31218,31220,814], -[0,2899,31224,4170,4193,4255], -[1,2343,21535], -[0,21538,21540,21542,2523], -"path-t", -"path-type", -[0,1437,31229,31233,2720,2742,1209,3170,3309,3470,4135], -"glob-stream", -[0,1173,1255,1264,1700,1177,1895,2702,2759,3188,2899,3211,1894,4039,4170], -"fnmatch", -[0,2323,3378,20001,3383,1237], -"globbing", -"globs", -"wildcards", -[1,2343,21547], -[0,21548,21549,21551,2399], -[0,31249,31246,31248,31250,31243,31251,31242,31254], -[0,3188,4039,24592,24587,24594,24596,31259,31258,24591], -[2,13039,12804], -[0,1936,2437,3754,1283], -"array-series", -[1,2343,21554], -[0,0,21557,2514,2537], -"magick", -[2,11812,21555], -[0,1317,27468,2060,3714,31266,4387,4389], -[1,2343,21559], -[0,21560,0,21561,2537], -[0,1834,3441], -[0,7046,7170,14858,7241], -"-with", -[2,21562,1892], -[2,1903,21563], -[1,2343,21569], -"msmc", -"mc", -"minecraft", -[0,0,21570,21588,2537], -[0,1503,3421,2899], -"java edition", -"arm", -"arm-support", -"forge", -"s-management", -[2,16154,21575], -"instances", -"mod", -"mods", -"mc-mod", -"mc-mods", -"modpack", -"modpack-api", -"extendable", -"nbt", -"jarmods", -"skin fix", -[0,3757,3656,31277,31278,31279,1002,31280], -[1,2343,21590], -[0,21591,21592,21593,2523], -[0,17846,31286,1595,28504,11114,31288], -[0,4874], -[0,3758,3195,29727,13428], -"docsify-cli", -"ing-promise", -[2,14639,21595], -[2,16645,21596], -[1,2343,21601], -"spreadsheets", -[2,8567,21599], -[0,21602,0,21609,4139], -[0,1525,2071,3561,3681], -"google sheets", -[3,21599,11], -"sheets", -"gdata", -"drive", -"google docs", -[0,6707,16587,7293,17507,1623,1936,3624,31297,22946,18114], -"svgs", -"google drive", -[1,2343,26326], -[0,2228,2272,3130,2240,2768,2281,3736], -[0,3760,1862,6567,14832,14833,14834,14836,1149,14838,8553,1388,202], -[1,2343,21617], -[2,2211,13369], -[0,0,0,21618,2399], -[0,11194,31307,16421,18048,8221,158], -"@types/execa", -"@types/mv", -"@types/ncp", -"unjucks", -[2,10884,21622], -"rl-template", -[2,7817,21624], -[2,4892,1574], -"js-green-licenses", -[1,2343,21629], -[0,0,0,21631,2537], -"linkinator", -[0,1111,6938,11194,7201], -[2,8573,591], -[2,5576,12950], -[1,2343,21635], -[0,21636,21637,21643,2537], -[0,17409], -[0,31317,31319,13614,1389,1408,31322,1796,1855,1177,2011,2133,2070,19066,31328,27547,17421,2569,2685,2708,2762,2807,3188,3206,15030,3410,3421,3431,19974,4103,23948,4389,31329], -"p-cancelable", -"responselike", -"-keys", -[2,17267,21640], -[2,13788,2741], -[0,3767,3763,3766,1002,1644,1646], -"able-lookup", -[2,2325,21644], -"cacheable-", -[2,21646,705], -"-encoder", -[2,2139,21648], -[2,17278,5508], -"byte-counter", -[1,2343,21660], -"pem", -"@types/pem", -"cert", -"create-cert", -"slow-stream", -"then-", -"then-busboy", -[0,21661,21664,21669,2537], -[0,31337,31339,31341], -"@hapi/bourne", -[2,1601,9224], -[0,1166,1317,1693,2064,4481,1906], -"brotli", -"requests", -[2,20034,17460], -"ky", -[0,1388,3767,3766,1871,3763,5420,31344,1002,1644,1646,10368,15103,31345,7131], -[1,2343,21671], -[0,0,21672,21673,2537], -[0,1973,31350,4389], -[0,10906,3766,3767], -[1,2343,21675], -[0,0,21685,21686,2537], -"govuk-", -"-kit", -[2,6688,21677], -[2,21676,21678], -"gulp-cl", -"gulp-cli", -"sass-co", -"lor-helpers", -[2,21682,21683], -[0,1414,2665,31357], -[0,3768,1149,14629,31360,12692,5957,6994,13792], -"embedded", -[2,4832,21687], -"sassdoc", -[1,2343,21692], -"govuk", -[0,11570,11571,21693,2537], -[0,3768,29664,31365,31366,31367,5284,17625,17626,676,91,17627,6869,4799,12692,4721,3768,31369,31370,31374,8893,6994,31376,6915,17697,6333,31377,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,17651,6674,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,3760,31379,4552,28483,31381,6645,4787,3286,202,5401,27366,6681,17740,1745,17116], -[1,2343,21695], -[0,21696,21698,21705,2537], -[0,3021,31388,31389,2017], -"reading", -[0,2070,4361,2832,1177,4333,1984,4474,2924,1894,4469,48,1628,91,53,4874,2629,4677,1195,2600,4307,4334,4689,4891,17214,8648,5139,87,4230,4681,31392,2651,1938,4409,1895,1947,1955,3177,92,31394,1011,20476,31393,1009,8724,1915], -"retries", -"EMFILE", -"EAGAIN", -"EINVAL", -"EPERM", -"EACCESS", -[0,3771,6038,6106,6105,6138,6139,5130], -[1,2343,21707], -[0,21708,21709,21710,2443], -[0,1525,11482,3350], -[0,3421,2228,2929,1177,4039,4042,4135,1317,2116,31401,4019,3752,20496,53,31402,87,1937,1954,2258,18895,23165,5583,1924,1938,31404,1958,2256,6373,1903,1948,811,1900,816,31405,8229], -[0,5472,2275,1145,6468,4384,4389,2297,2814], -[1,2343,21712], -[0,21713,21714,21716,4139], -[0,31413], -[0,5517,31417,1009,1011,7677,1240,1264,1540,1177,1895,1955,15854,18841,1894,23535,2907,3980,18819,4042,8849,4076,91,1984,2924], -"graphql-js", -[0,1388,965,1936,2907,31419,5472], -[1,2343,21718], -[0,21719,21722,21723,2537], -[0,1457,1525,31426,2107,31427,814,4648], -"all-versions", -[2,1382,21720], -[0,1149,1203,1267,31429,1499,25063,25076,1937,18895,2020,2116,2151,2228,2240,2243,2256,2258,23165,2283,21929,2291,25070,21930,26210,31402,3006,3752,4019,4045,4135], -[0,5472,2275,2814], -[1,2343,21725], -[0,21726,21727,21728,34352], -[0,3518], -[0,31437,1389,4389], -[0,31440,6422], -[1,2343,21733], -"section-", -[2,21730,9338], -[2,4296,12835], -[0,0,21736,21737,2523], -"ansi-green", -"delimiter-regex", -[0,48,53,87,94,104,5583,24621,31447,1290,1317,1481,1610,31448,1177,1938,2064,2036,2822,2899,3400,3421,4039,4042,4077,31449,31452,4193,4423,31453], -[0,3776,6564,594,6731,6081,7517,7532,7594,7595,7523,7524], -"assemble", -[1,2343,21741], -"extracting", -[0,21742,7923,21743,2487], -[0,4127], -[0,3778,28734,28734,4718,1179,16431,2585], -[1,2343,21747], -[3,5364,11], -[2,21745,1398], -[0,8766,21753,21754,2523], -[2,1807,2899], -[2,10692,7018], -"pois", -"son-process", -[2,21750,21751], -[0,3521,4255,4387,4389,4770], -[0,1616,3778], -[1,2343,21756], -[0,21764,7923,2514,2399], -"grunt-k", -"nown-options", -[2,21757,21758], -"legacy-log", -[2,2235,21760], -[3,21761,13], -[2,21762,614], -[0,3779], -"difflet", -[3,16758,16], -"unt", -[2,21766,21767], -[1,2343,21771], -"temporary", -[0,0,7866,21773,34352], -"init", -[0,6754,57,27], -[1,2343,21775], -[0,21776,21777,21778,2487], -[0,3135,3348,977,31479,4252], -[0,2070,3297,2899,4193,1177,4170,2759,1894,1506,1895], -[0,28411,2656,31482,6807,3783,31483], -"gruntplugin", -[1,2343,21781], -[0,21782,21783,2514,2523], -[0,1413,14855,2685,2657], -[0,3421,2899,1177,1362,29197,4100,3923,19344,7844], -[1,2343,21785], -[0,13511,21786,13533,2523], -[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,1955,2675,1192,2990,3144,3400,1894,4257,2924], -[1,2343,21788], -[0,21792,0,21793,2537], -[3,21146,12], -"ncremental", -[2,21789,21790], -[0,2714,3183,1696,4300], -[0,1541,1997,28984,19400], -[1,2343,21795], -[0,21796,21797,21798,2523], -[0,97,1461,3789], -[0,31504,968,972,4859,5087,4874,4880,4883,14693,1610,1789,1177,1939,1982,2079,31506,2193,2070,695,3377,31508,3788,11249,89,3824,3957,91], -[0,89,5128,31511,31512,6847,6754], -[1,2343,21800], -[0,21801,21802,21803,2523], -[0,97,13169,1461,3789], -[0,31504,972,5087,4880,4883,11322,1610,1789,1177,1982,2079,2193,695,3377,31508,89,3824,91], -[0,89,5128,31519,8190], -"liftup", -[1,2343,21806], -[0,21807,21808,21809,2523], -[0,97,3847], -[0,31504,972,5087,4874,4880,4883,15606,31527,11322,14693,1603,1610,1789,1177,1939,1982,2079,2070,2675,2990,3377,1894,31508,89,3824,91], -[0,89,614], -"pad-stream", -[1,2343,21812], -[0,0,0,10570,2399], -[1,2343,21815], -"grunt-nodemon", -[0,21816,0,21817,2399], -[0,3911], -[0,89,31542], -[1,2343,21819], -[0,21822,21823,21817,2523], -"simultaneous", -"faster", -[0,3427], -[0,1192,89,3824,2924], -[1,2343,21825], -[0,21826,21827,21828,2523], -[0,31555,31558,31560,31563,31564], -[0,4042,91], -[0,5575,2220,89,582,21189,4963], -[1,2343,21835], -[2,21831,36], -[3,30922,14], -"bin-", -[3,18806,13], -[2,21832,21833], -[0,21836,0,2514,2443], -[0,3775,1593,1862,4705,3427,3957], -"compass", -[1,2343,21839], -[0,21840,0,21841,2537], -[0,4649,2731,1461,3744,31577,1751,97,31575,31581,31578,5090,3911,4808], -[0,1367,89,4627,4963,31583,5128], -[1,2343,21843], -[0,21844,21845,21846,2523], -[0,31590,1209,3021,31591,3744,31592,4443], -[0,31594,31598,14689,14691,10837,1173,1175,1193,1195,31600,1267,1268,1272,1280,1429,31602,1628,1843,2012,2081,2600,2629,2651,2678,1192,2774,31603,2899,3376,3378,3427,89,21074,31605,3824,3836,31606,3904,4001,4015,4039,4307,31608,2924,4681], -[0,89,31611,5128,20542,3811,31612,3195,31614,5027,8192], -[2,1547,3000], -[1,2343,21849], -[0,21850,21851,21852,34352], -[0,1582,3744], -[0,48,53,68,61,78,87,90,94,1195,1251,1628,1703,1177,1879,1938,1947,1959,1961,2193,2651,31622,3177,89,3824,4307,4389,2924,4677,4681], -[0,4627,5128,89,31625,1492], -[1,2343,21854], -[0,21856,21857,21858,34352], -"file-sync-cmp", -[0,8703,1497,1668], -[0,53,68,5228,8229,61,87,90,92,442,31633,5583,811,816,10615,10817,966,972,974,5601,5087,11292,4874,4880,4883,1009,1011,1169,1193,1251,1593,33872,1177,1895,1938,1939,1959,1961,27790,2675,1192,11347,2771,2780,2990,1209,1894,89,3824,4042,11802,2278,4213,4320,4323,5978,4330,4468,4484,91,4523], -[0,89,3812,9026,1666,5128], -[1,2343,21860], -[0,21862,21863,2514,2523], -"csslint", -[0,3445,1437,2696,2205,3539,15427,2105,31642,3742,2098,2553,4294,4425,1615,4165,1393,3008,14564,31640,51,3938,3829,1874,2135], -[0,1192,1610], -[1,2343,21865], -[0,21866,21868,2514,2487], -[0,31650,31652,31654,2069,2609], -"maxmin", -[0,8719,842,972,5540,5087,4874,4880,4883,1192,11944,3400,89,3824,4172,91], -"cssmin", -[1,2343,21871], -[0,21872,21873,2514,4139], -[0,31654], -[0,8719,842,5087,3400,4172,91], -[1,2343,21875], -[0,21876,0,21877,2537], -[0,814,19526,53,104,8959,5251,101,31669,10879,31666], -[0,89,1745,31671], -[1,2343,21879], -[0,21880,0,10570,2537], -[0,4116], -"jpeg", -[1,2343,21883], -[0,21884,21885,21886,2537], -[0,31683,31686,3744], -[0,48,53,68,8229,31689,73,31690,14170,13051,31693,83,87,90,94,192,22559,19036,26486,5583,811,816,6061,16607,6065,16608,16612,5535,10876,31695,966,968,972,20562,4880,4883,1009,1011,1193,1198,1201,1527,1610,1177,1895,1938,1947,1954,1955,1959,1961,2675,31696,2694,1192,2990,3125,3534,1894,89,3824,3895,3904,4039,4042,4073,4131,4201,4307,4315,91,2924,31699], -[0,5128,89,7518,5398,9229], -[1,2343,21888], -[0,0,21889,21891,2537], -[0,51,53,31705,1193,1195,1270,1437,1457,1610,2126,2626,1192,31706,3427,1862,3786,89,3803,3824,4039,31708,4227,2924], -"hooker", -[0,3473,5341,1851,12991,5403,31710,31711,4649], -[1,2343,21893], -[0,21894,21895,21896,2537], -[0,3427,3744,21174,31718], -[0,1175,1178,1203,1208,1230,1245,1264,1268,1429,1503,1567,1652,1177,31721,1895,1938,1947,1951,1955,1959,2759,2297,2878,30885,2881,2886,2895,31723,2900,2910,2921,2923,28636,2899,1894,89,3824,4039,4042,4045,4055,4067,4069,4193,4196], -[0,3830,31725,89,1746,3193,17913,5207,163,1508,1299,31726,590], -[3,13115,12], -[2,21897,1462], -[1,2343,21900], -[0,0,21901,21902,2537], -[0,19438,603,811,816,10615,842,16145,968,972,5087,4874,4880,4883,6375,1651,1177,1895,4916,1955,1959,1961,10964,2675,1192,2780,27412,31734,2990,1894,89,3824,4039,4042,4076,4481,91,4523,4705,4763], -[0,89,582,1669,25,7021,7020,91,6687], -"nodeunit-x", -[1,2343,21905], -[0,21906,21907,21908,2487], -[0,26007,2202,2609,3008,3744,3849,4163,4227], -[0,8130,4880,8158,1173,1175,1178,1193,1201,1203,1230,1245,1257,1264,1268,1503,13985,1603,1610,1843,31742,1845,1177,1879,1895,1938,1947,1959,2675,1192,2990,1894,89,3824,31743,3904,3935,4039,4042,4045,4055,4058,4067,4069,4077,4257,31745], -[0,89,5284,2924,11498,3000,2998,6109,6609,1194,2999], -[1,2343,21910], -[0,21911,21912,21913,2487], -[0,97,31752,5545], -[0,48,53,68,23908,78,5241,83,85,87,90,94,5583,811,816,6373,10615,966,968,972,5087,4880,7677,17584,1175,7913,14065,1596,1597,1610,1177,1879,1895,1938,31755,1947,1959,1976,2559,2675,2681,2990,3188,1894,89,3824,3904,4039,4042,91,1984,4747], -[0,2681,23932,2679,8930,23933,6728,23934,89,6071], -[1,2343,21916], -"uri-path", -[0,0,21917,21918,2399], -[0,5517,11976,5535,968,972,4874,4880,4883,1030,32818,16480,19839,2990,3165,3400,3541,23535,89,3824,9245,4201,4493,91,1984], -[0,89,4627,582,31765,31766,31767,31769,31770,31771,31779], -[1,2343,21920], -[0,21921,0,21922,2537], -[0,5540,2609,4484,26222,31797,31791,31799], -[0,1671,6983,23934,2679,23932,2728,30948,23933,89,6071,8574,8930], -[1,2343,21924], -[0,0,0,10570,2487], -[1,2343,21926], -[0,0,21931,2514,2523], -"grunt-co", -"veralls", -[2,21927,21928], -[2,2235,2759], -[0,1420,1437,1177,31815,1192,2774,1894,4042,4069,4077], -[1,2343,21933], -[0,21934,21935,21936,2487], -[0,12396,9363,23289,2583,31821,3140,3992,3999,4549,4555,12449], -[0,972,4874,4880,4883,1414,1537,668,1959,10621,1894,89,3824,3973,29250,3985,3988,3998,10632,4505,91,1906], -[0,6892,20627,4627,3987,1783,89,5128,3984,4549], -[3,2289,9], -[1,2343,21943], -"all-releases", -[2,9005,21939], -[2,21937,21940], -[2,2235,21941], -[0,21946,21947,21948,2523], -"gh", -"releases", -[0,31828,3744,3849,4649], -[0,31832,1173,1175,1178,1195,1198,1264,1268,1277,1596,1610,1177,1895,31393,1938,1947,1955,1959,13871,2297,2881,2886,2895,2900,2904,2921,2925,2899,3400,1894,89,3824,3884,3885,4170,4535,2924,4677,4681], -[0,89,5128,5066,18346], -[1,2343,21950], -[0,21951,21952,21953,2523], -[0,3518,3744,3775], -[0,1172,31840,1175,1178,1195,1505,1628,1177,1879,1916,1938,1947,1959,2126,29945,31841,31842,2766,2297,2886,2898,31844,2906,2925,31845,3521,3836,4307,2924,4681], -[0,89,4627,5128,31847,8424,31849,12185,7521,9944,181], -[1,2343,21955], -[0,21957,0,21958,2537], -"vow", -[0,4729,31705,4747,4135,1862,1301,1525,2731,4116,1109,1193,31856,27921,3145,4705,31859,3717,3878,30781,1079,31861,28512,31864,24169,3957,31867,2784,31871,31877,31880,31884,31891,31893,21129,31896], -[0,89,3857,12296,12295,5131,16697,31904,31906], -[1,2343,21960], -[0,0,21961,21962,2537], -[0,29525,21155,21156,1177,1955,1894,89,3857,21166,91], -[0,3857,5128,31912,89,5131,12295,12296,31914], -[1,2343,21964], -[0,21965,21966,21967,2487], -[0,4747,3744], -[0,89,1177,31934,31928,2735,1894,10777,48,31923,53,1178,2132,31926,21495,31929,31935,31932,31920,31922,1959,1879,1938,1895,1947,1955,1961,5103], -[0,3857,5128,31912,89,5131,12295,12296,31937,6574,6635,181,1017,45,13814,22875,2414], -[1,2343,21971], -"ravis-cli", -[2,6305,21969], -[0,0,21973,21974,34352], -"TDD", -[0,48,53,61,78,5240,87,90,94,31942,20202,20212,602,15134,10817,968,972,974,4880,1011,1178,1195,1198,4899,1461,1497,1610,1177,1895,1916,1938,1959,2193,2832,3132,15326,1894,9054,89,3824,31945,4042,4045,4055,11802,4060,4067,4069,4077,4469,91,1984,2924,4677,4681], -[0,5128,89,31948,6847,6988,31950,10098], -[1,2343,21976], -[0,0,21977,21981,2537], -[0,53,61,78,87,14041,5583,1178,1195,1429,1177,2675,2990,2899,3400,1894,89,3824,3904,31956,4039,4042,2924], -[3,2247,10], -"inue", -[2,21978,21979], -[0,89,31958,31959,3868], -"grunt-env", -"-coverage", -[2,21930,21983], -[1,2343,21986], -[0,0,21987,21988,2537], -[0,8862,31964,1177,31966,1955,31967,1192,1894,4042,91], -[0,3872,1936,8221,965,3205,23584,1541,89,3824], -[1,2343,21992], -"afe-mocha", -[2,2241,21990], -[0,21993,21994,21997,2523], -[0,5546,5545], -[0,603,810,966,968,972,4874,5090,4880,4883,1503,1610,1177,1895,1915,1938,1955,1959,2832,1894,89,3824,3875,4039,4493,91,4523,1984], -[2,21996,995], -"@sailshq/r", -[0,89,6071,3875], -[1,2343,21999], -[0,0,0,10570,2537], -"grunt-release", -"s-dylang", -[2,14352,22001], -[1,2343,22004], -[0,22006,22007,22010,2537], -"notify", -[0,2677,31983,3744,1849], -[0,10817,4856,31986,13204,31989,31992,6503,4880,4883,6513,1009,1011,1429,1610,1177,1924,2193,2832,31994,2899,1894,89,3824,4039,4042,11054,4170,4193,4484,4494,4508,91], -"mountain lion", -"mavericks", -[0,1623,5128,31765,89,5131,31997,31999,6415,32001,6398,4627], -"notify-send", -[1,2343,22013], -[0,22014,22015,22016,2487], -[0,977,5152], -[0,4493,89,4548,22205,28119,3824,91,3904,972,2780,5162,968,974], -[0,89,38,4082,7433,2602,163], -[1,2343,22018], -[0,22019,22020,22016,2399], -[0,3884], -[0,4493,89,22205,3824,91], -[1,2343,22023], -"libsass", -[0,0,22024,22025,2537], -[0,1173,1175,1178,1195,24231,24234,1257,1267,1268,1275,1280,1177,1898,1935,1938,1947,1959,2022,2602,22588,31842,2297,2886,2895,2900,2904,2921,2925,2899,89,3824,3876,3884,3875,32020,32023,32026,2924], -[0,89,3875,38], -[1,2343,22028], -[2,705,1153], -[0,22029,6230,2514,2537], -[0,1324,1192,1759,1177,4135,3561,3742,814,2924,2151,2154,1420,1193,1628,53,2092,4111,4383,1195,1393,2797,4307,841,1763,3878,3618,3816,3647,4230,2686,3672,3803,4028,4681,2651,2802,24732,4409,1270,3605,4723,1898,3177,4686,1630,1216,1426,24723], -[1,2343,22032], -"sauce-tunnel", -[0,22036,22038,22039,2443], -[3,2311,11], -"-tunnel", -[2,22033,22034], -[0,97,7931,7948,8181,4808,3145,3744,3911,8187], -"yui", -[0,11931,1843,8160,11875,89,3824], -[0,32039,1669,6847,32040,89,5128,1631,181], -[1,2343,22041], -[0,22042,22043,22044,2523], -[0,1461,32046,3029,4023], -[0,48,53,68,61,85,87,90,28598,968,972,974,4874,1165,1175,1193,1195,1261,1628,1699,1700,1859,1177,1938,1959,2026,32049,2323,2494,2675,1192,2780,2820,2843,2990,3459,3618,1894,3775,89,3824,3957,4193,32051,4307,4537,2924,4677,4681,32052], -[0,11167,32054,32055,32056,31512,5128], -[1,2343,22046], -[0,22047,22048,22049,2523], -[0,32061,4889,32062,1082,15128,1145,12184,1397,1465,5386,1497,32063,1584,1593,19526,32064,1863,1874,1875,2007,29067,7076,32067,7610,2070,32068,2570,2745,32070,32071,32072,32076,32080,32081,32084,32085,2929,32086,1209,21641,3120,32087,6041,3467,3725,3744,32088,32089,3816,3822,32091,32095,32097,3839,12438,3930,3984,32098,4409,19650,32099,4555,4681,4689], -[0,48,53,61,87,14128,90,92,968,972,32102,32104,31669,32107,1006,32109,5087,32112,4870,32114,4874,8149,4880,4883,32116,32118,4891,32120,8157,1009,1011,1175,1178,1193,1195,1628,31058,32121,32123,32124,1177,32126,1915,1924,1938,1947,1959,2092,2151,2675,1192,32129,2990,3144,1894,3775,89,3824,3904,32130,4307,91,4027,2924,4677], -[0,89,1219,6718,25172,1745,1739,1179,4627,4963], -[1,2343,22051], -[0,22056,22059,22063,2537], -"sprit", -"esheet-templates", -[2,22052,22053], -"sprites", -[0,97,955,5090,3744], -"spritesmith", -"url2", -[0,53,83,87,90,442,15288,5583,811,816,6373,10615,972,5087,13204,4874,4880,4883,7749,1251,11890,1177,1895,1959,1961,10964,2203,1192,2780,3297,3401,1894,89,3824,4042,4167,4172,11803,4468,4474,91,4523], -[3,21470,15], -"wolfson", -[2,22060,22061], -[0,965,1936,11806,11807,5284,89,32142,8221,32145,91], -"foundry", -"-release-git", -[2,22064,22065], -[3,22066,16], -[2,22067,3378], -[1,2343,22070], -[0,22073,0,22076,2487], -"get-pixels", -"gmsmith", -[0,2081], -"sprite", -[3,22054,11], -[0,32151,89,4453,1702,32152,3899], -[1,2343,22078], -[0,22079,0,22080,4139], -[0,3847,4116], -[0,89,3857,32162], -[2,17566,200], -[1,2343,22083], -[0,6234,22084,22085,2523], -[0,32167,27742,549,963,4874,4880,4883,1030,1596,1651,8540,2990,3561,1894,89,3824,4493,91,1983,32170], -[0,89,9044,11000,5128,3906,6645,32172,26264,6458], -[1,2343,22087], -[0,22094,22095,22096,2523], -"@npm/types", -[2,7726,2855], -[3,8610,9], -"ite-file-atomic", -[2,22090,22091], -[2,16569,1182], -[0,32177,32178], -[0,1317,1389,1408,1506,32180,5669,1839,32181,1859,1177,19896,2228,2240,25074,2247,18461,2256,2273,32183,25060,32186,2774,3460,3521,12344,32188,3930,22031,4449,91,4535,31135,4652], -[0,89,1219,8535,6624], -[1,2343,22098], -[0,22103,0,22104,2399], -"@guarapi/eslint-config-guarapi", -[2,8711,93], -[3,5542,13], -[2,22101,3312], -[0,97,1751,3082,3744], -[0,89,9944,19102,32195,7521,1623,32196], -[1,2343,22106], -[0,22107,22108,22111,2487], -[0,1497,3744,1751,3082,97,3849], -[0,1192,2675,89,2282,1177,4039,4042,1503,3561,2924,2126,2193,1894,1610,2700,3758,3824,48,1193,1505,1628,53,2092,2990,3566,4677,1165,1178,1195,3720,3884,4307,3618,85,29945,32207,3885,87,14128,18229,4681,90,32203,1922,1959,32205,2651,3904,4045,4077,32202,4069,1895,1935,1947,1955,4055,32206,4067,2054,8229,83,14132,28972,61,5241,1251], -"undertaker", -"glob-watcher", -[0,89,6071,5128,4607,3392,32209,32210,3912,176,32211,10345,9320,15182,10052,21604], -[1,2343,22113], -[0,22116,22117,22118,2399], -"series", -"streaming", -[0,4430,3909], -[0,2899,2272,4135,15052,1389,1537,32218], -[0,89,1389,14927,1219,676,1932,353], -[1,2343,22120], -[0,22121,22123,22124,2523], -[0,97,6372,1461,3744,32225,3911], -"gulp-footer", -[0,48,53,68,73,76,78,5241,87,90,10821,10825,10828,32229,10837,968,972,974,4880,1178,1193,1195,1270,1367,1540,1567,25901,1610,32231,1787,1797,1177,1879,1895,1935,1938,1947,1959,10851,32233,1192,2780,2832,2843,3165,1894,89,3824,3830,32236,3884,3904,91,2924], -[0,3916,1367,89,4627,4963,5128,181], -[1,2343,22128], -"html2js", -[2,1283,2325], -[0,22129,22130,2514,2537], -[0,8612], -[0,9516,9515,8608,13680,1011,1414,1915,4384,4474,4483,91], -[1,2343,22132], -[0,22134,11332,22135,4139], -"gulp-symdest", -[0,18186,18183,16474,4507,20789], -[0,1781,3917,1644,2090,2150,30135,3001,3383,3374], -[1,2343,22138], -"atom-shell", -[0,22139,8134,22140,2537], -[0,30055,3919,4507], -[0,1781,3917,1644,2090,2150,30135,3001,3383,2100,2104,2105,7076,6614,6605,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], -[1,2343,22142], -[0,22143,22144,22148,34352], -[0,1079,1398,2018,3729,15042], -[0,53,14170,13051,19181,811,15460,816,826,1389,1414,668,32258,1177,1903,1938,1953,1958,3541,1894,4042,23652,4384,32262,4389,4390,4548,2924,4677], -"prefixes", -[3,3674,9], -[2,22146,8736], -[0,7017,3101,7170], -[1,2343,22150], -[0,0,22151,22152,4139], -[0,4384,2685], -[0,3925,32271,2090], -"lodash.chunk", -[1,2343,22155], -[0,0,0,22158,34352], -"-transform", -[2,13792,22156], -[0,3925,31360,24095,3741,8631,6875,200,6621,1523,32276,8652,6703,1359], -[1,2343,22160], -[0,8856,7938,7939,2523], -[1,2343,22162], -[0,22163,22165,22169,2523], -[0,12184,2003,4227,32284,4484], -"b", -[0,53,58,87,32287,4865,6503,4874,1011,1177,19896,32288,2070,2990,2899,1894,24209,91], -"storage-blob", -[2,13444,22166], -[2,12694,14922], -[0,6892,22179,32291,5061,5341,22180,7119,32293], -"streamifier", -[1,2343,22172], -[0,8029,7938,7939,4139], -[1,2343,22174], -[0,22175,14066,22176,2537], -[0,814], -[0,3209,1194,7188,19101,32302], -[1,2343,22178], -[0,22182,0,22183,2537], -"rewriting", -[3,12348,14], -"desugaring", -[0,97,32307,2081,2609,3849,5513], -[0,89,6734,4963,32310,6081,6731,32312], -[1,2343,22185], -[0,13856,7923,22186,4139], -[0,7204,32318], -[1,2343,22191], -"utf-8", -"add", -"prepend", -[0,22192,0,22193,2487], -[0,32325,32327,32329,32330,32333], -[0,1552], -[1,2343,22195], -[0,22196,22199,5885,2399], -[0,6327,8111,3127,8114,3725,4213,3555,1757,1461,3191,3744,8122,8123,8113,8127,2017,8116,3502,8126,8119,32343], -"decov.io", -[2,2364,22197], -[0,3775,1002,1192,3190,2675,89,4484,1843,1177,4039,1593,1651,2822,3471,4167,4468,4474,8166,2924,1894,3824,1628,4201,91,4856,5087,8144,4874,8165,4677,4880,4892,3720,4307,4863,8147,8146,8149,8155,4891,8160,8161,8163,10875,8136,4883,5090,4315,8157,1311,4681,8141,1584,1959,2651,1938,8139,2780,4693,8152,1011,1961,1567,8129,2135,1009,32341], -[1,2343,22201], -[0,22202,22203,22204,2537], -[0,32353,32351], -[0,89,2924,3824,91,4880,4883,32359,32358], -[0,3939,3452,5592,8124,1745,32361,467,32363], -"wireit", -[1,2343,22207], -[0,0,22208,22209,2523], -[0,53,4874,1009,1011,1610,10888,1177,1898,1915,1938,1959,1961,2070,32368,1894,4039,4094,4493,91,1984], -[0,3875,6696,6649,6788,6564,2700,6609,2998,6596,2130,6891], -[1,2343,22211], -[0,22212,22213,22214,2523], -[0,32376,32378], -[0,32380,32383,32385,2675,2990,3400,1894,1983,1984,1906], -[0,2130,3875,27106,10820], -[1,2343,22216], -[0,22219,22221,22224,2523], -"bump-regex", -"plugin-log", -[0,1209,3847,1860,2731,2752,3744,97,2609], -"versioning", -[0,4449,1192,2675,89,3875,1177,4039,1503,2924,2126,1894,1610,2700,3824,48,1693,4201,53,32392,2990,3876,4677,1178,1195,32394,87,90,1210,1922,1959,10623,3904,1938,32385,32393,1935,1947,1898,4676,1961,5535,31393,83,61,5240], -"gulp-version", -[3,2476,11], -[0,89,6071,2130,3875,3876,3945,1669,4636], -[1,2343,22226], -[0,22227,22231,22232,2487], -[0,1688], -"swap", -"cache-swap", -"object.pick", -[0,1175,1203,29775,1267,1429,1503,1177,1879,1938,1947,1959,2665,2675,2899,3421,3875,4039,4042,4045,4055,4067,4077,4193], -[0,3875,2942,3946,2663], -[1,2343,22234], -[0,22235,22236,22237,2399], -[0,32408], -[0,53,83,85,87], -[0,5284,3875,2663,3947,32416,32418], -[1,2343,22239], -[0,0,22240,22241,2523], -[0,1009,1011,1610,1177,1895,1894,3875,4039,4493,91,1984], -[0,3875,3949,2663,32425,2130], -"file-e", -[1,2343,22247], -"xtension", -[2,22242,22244], -[2,17355,22245], -[0,0,22248,22250,2537], -[0,4856,6503,4874,1429,1700,32431,2323,32433,32435,2463,2494,32436,2524,2899,91], -"changed", -[0,4636,6774,5284,19080], -"modified", -[1,2343,22256], -"modification", -"mtime", -"passthrough", -[0,0,22257,22258,4139], -[0,1503,2228,2314,2759,14529,3774,4019], -[0,1108,6961,5284,3656,1179,4990], -[1,2343,22260], -[0,0,0,22261,2537], -[0,5659,7047,1179,1149], -[1,2343,22263], -[0,22264,0,22265,2487], -[0,12396,3971,3978,4549], -[0,32452,6892,1936,1644,3729,3958,4141,1646,5341,1633,4549], -[1,2343,22267], -[0,22268,22269,22270,2523], -[0,12396,23247,9401,12421,4549,4555], -[0,4874,23262,1414,32460,1894,3958,3985,3998,4505,91,1906], -[0,4549,3958,32462,1932,156,163,1936], -[1,2343,22272], -[0,22273,22274,22275,2537], -[0,12396,23247,12421,32467,4233,4555], -[0,4874,23262,1414,1894,3958,3985,3998,4505,91,1906], -[0,4549,3958,32462,1932,2587,1936,1783,11052,163,1002], -[1,2343,22278], -"jshint-", -[0,22281,22282,22283,2443], -"reporter-jscs", -[2,22277,22279], -[0,12396,32481,3137,12127,12133,4549,12447], -[0,9311,4874,4880,1414,1177,27706,1947,1959,23312,1894,3985,27711,32484,91], -[0,2587,1936,1783,9102,3958,32462,4549], -[1,2343,22285], -[0,22286,0,22287,2523], -[0,12396,23276,4549], -[0,32452,6892,1936,1644,1932,3958,32462,5341,1633,4549], -[1,2343,22289], -[0,22290,22297,22298,4139], -[0,12396,2572,12449], -[3,19569,12], -"rework", -"rework-import", -"rework-", -"plugin-url", -[2,22294,22295], -[0,4874,1414,1894,3978,3985,3992,3998,3999,4505,91,4549,4555,1906], -[0,1936,1932,3972,3958,32462,4549], -[1,2343,22300], -[0,22301,22302,22305,2537], -[0,12396,7610,9401,2584,4555], -[0,4874,1414,1894,3958,3985,3998,4505,91,1906], -"slush", -"dest", -[0,156,1936,3265,1932,3958,32462,3974,4549], -"conflict", -[1,2343,22308], -[0,22309,0,22310,2487], -[0,12396,2581,4549], -[0,32452,6892,7234,1936,1932,3958,32462,4141,1646,5341,1633,4549], -[1,2343,22312], -[0,22314,22315,22317,2523], -"webserver", -[0,22353,692,29431,1154,15444,1458,7614,9322,2720,32513,3060,3173,29024,3445,3467,6331,20921,4135,27921,4548,4566,32514,4748], -[0,442,32523,4874,1177,32525,2203,17529,2931,29442,32519,1894,3985,32522,4390,91], -"hyperlink", -[0,6147,13729,1528,32528,3358,2195,17978,24095,15656,3378,20001,6645,3979,3980,18157,1508,4166,10381,4990,15525,4135,1932], -[1,2343,22319], -[0,22320,22321,22322,2537], -[0,2759,3181,3544,4227,4431], -[0,1177,1881,1938,2228,2323,17121,4039], -[0,18444,21779,4227,2759,4504], -[1,2343,22325], -"csscomb", -[0,22326,0,22327,2537], -[0,4549,9363,3992,13124], -[0,32452,6892,7234,1783,26564,1644,3729,3984,4141,1646,5341,1633,4549], -[1,2343,22329], -[0,22330,0,22332,2443], -[0,5210,32544,3984,32545], -"rcloader", -[0,20052,200,1783,26564,3984,4549], -[2,21861,2838], -[2,15526,2063], -[1,2343,22336], -[0,22337,22338,22339,2399], -[0,9363,27008,27010,3992,13124,4549], -[0,4874,1414,32460,1894,3984,3985,3998,4290,18071,4505,91,1906], -[0,26072,26766,3987,2195,1783,26564,1932,3984,32553,12994,176,9000,4549], -[1,2343,22341], -[0,22342,22343,22344,2537], -[0,9363,2575,3140,2581,4549], -[0,12396,4874,1414,26992,23276,1894,3985,9340,3988,10630,3992,3998,32560,10632,4505,91,12449,1906], -[0,7234,1936,1783,26564,1932,3984,32553,1646,4549], -[1,2343,22346], -[0,22347,22348,22349,34352], -[0,12449,4549,9363,32568,12447,32567], -[0,1414,1177,3984,1894,3541,3985,91,12396,3999,3978,32484,27706,27711], -[0,1745,25131,3990,1932,3984,32553,4549], -[1,2343,22351], -[0,22352,0,22354,2523], -[0,9363,3137,26987,4549], -"@nodeutils/defaults-deep", -[0,32452,6892,1783,26564,1644,1932,3984,32553,5341,1633,4549], -[1,2343,22356], -[0,22357,22358,22359,34352], -[0,32582,32584,3988,32587,32591,23059,23065,23070,23075,23078,32593,23080,32595,23082,32599,32601,32606,32609,23098,32613,23113,32617,32620,32626,32629,32631,32636,23118,32638,32640,32646,32651,32654,32656,32658,32664,23128,23133,23136,32667,23139,23141,11382,32668,10632,32669,32672,4549], -[0,192,5467,1177,1909,2114,2675,2990,1894,3985,1906], -[0,2195,16342,3984], -"from2-string", -"@shi", -"nnn/eslint-config-node", -[2,22361,22362], -[1,2343,22366], -"warnings", -[0,22367,22368,22369,2537], -[0,32582,3988,10630,23059,23065,23070,23075,29079,23078,29082,32593,23080,32595,23082,32599,32601,32606,23092,32609,32681,32686,32689,29091,29097,29100,29132,29143,29147,29149,32613,32692,23113,32696,32617,32699,32620,32626,32629,32631,32636,23118,32638,32703,29151,32705,32646,32651,32707,32710,32654,32656,32658,32715,32717,32664,23128,23133,23136,32667,23139,23141,11382,32668,13124,10632,23143,32669,32719,4290,4549], -[0,1894,3985,4505,91,1906], -[0,16342,3984,3997], -"-match", -[2,7534,22370], -"flatnest", -[1,2343,22374], -[0,22376,22377,22383,4139], -"@type-challenges/utils", -[0,12396,9363,3140,4549,12449], -[0,4874,1414,1894,3975,3978,3985,3992,3998,13124,4505,91,1906], -[2,29833,2658], -[2,3101,7131], -"to-a", -"bsolute-glob", -[2,22380,22381], -[0,2587,1936,1783,26564,1932,32462,3958,32553,3984,4549], -[1,2343,22385], -[0,22386,22387,22388,2487], -[0,1139,32732], -[0,1111,1317,20627,1177,1926,1999,2398,2600,3127,2899,3421,4042,4058,4067,4073,4146], -[0,20627,1783,5980,1644,57,3729,4001,8924,3902,2585], -[1,2343,22391], -"divide", -[0,0,14066,22393,2523], -"separate", -[0,2323,19101,17996,8297], -[1,2343,22395], -[0,22396,22397,22398,2537], -[0,1437,2070,4747], -[0,442,1414,1429,1431,1177,2899], -[0,4068,2585,16504,2090], -[1,2343,22400], -[0,22401,22403,22404,2399], -[0,3763,29749,3348,2051,32749,15057,32751,2139,3173,32753,4100,4454,32754,32756,32757,32758,32759,21144,3518,2854], -[2,3715,4001], -[0,3421,4389,2297,32761,4039,1503,1362,4255,1596,32762,19946,1389,1400,14038,2886,4153,2871,3524,21146,2906], -[0,27,2869,614,6435], -"prettify", -[1,2343,22407], -[0,22408,22409,22411,2537], -[0,1362,4454,32768,32770], -[0,1429,2323,1437,1209,4039,705,2463,1364,2384,4089,2436,27608,3753], -"jsftp", -[0,4731,27,2671,1862,705,21244,32773,1362], -"jsftp-mkdirp", -[1,2343,22415], -"ftp-test-server", -[0,22416,22417,22418,34352], -[0,32770,32768,4454], -[0,1364,1429,1437,2323,27608,2384,2436,2463,1209,3753,705,4039,4089], -[0,4731,27,2671,1862,705,21244,32773,970], -[1,2343,22421], -"gift", -[0,0,22423,2514,2399], -"wrap-promise", -[0,4474,91,1506], -[1,2343,22429], -"octonode", -[3,8304,11], -[2,15034,22426], -[2,22363,1231], -[0,0,22431,22432,2537], -"branch", -[0,6637], -[0,3209,4017,32792], -[1,2343,22434], -[0,0,22441,22442,2523], -"any-", -[2,5124,1867], -[2,22435,22436], -[3,21732,13], -"eam", -[2,22438,22439], -[0,810,972,4870,4880,4883,7749,1009,32801,1011,32804,1177,1959,32805,2832,1209,3057,3145,32807,32368,1894,89,3824,3876,4039,4167,4493,91,1984], -[0,89,3875], -"gulpgit", -[1,2343,22445], -[0,0,22446,22447,2537], -[0,1178,1597,1177,2765,2766,2297,2881,2895,2898,6387,2910,2915,2921,2923,3734,4042,4075,91], -[0,32814,24800,31767,614,5576,1388,6422,6805], -[3,6530,10], -[2,22448,4552], -[1,2343,22452], -"nid", -[0,22453,22454,22455,2399], -[0,32820,17501,32824], -[0,15221,4384,4449,4389,1796,1177,3188,4039,4135,32826,3410,2708,3433,20492,4103,13614], -[0,814,3209,202,1237], -[1,2343,22457], -[0,0,8134,22459,2523], -"gulp-de", -[0,3209,814,3403,1237,7115,15403,1204], -"gulp-declare", -[1,2343,22464], -"fine-module", -[2,22458,22462], -[0,22467,0,22468,2399], -"gulp-wrap", -"nsdeclare", -[0,32836,1573,3008,3561,4227], -[0,2924,1194,1623,3374,9345,814,1002,2278,10903,2090], -[1,2343,22470], -[0,22471,22472,22473,2523], -[0,32842,8098,2151,2036,2822,32843,3348], -[0,48,53,13693,61,71,78,13051,85,87,97,192,6298,6061,6063,1166,1170,1178,1208,1212,1364,1429,16311,1596,31058,1687,8942,1177,32848,32850,1938,1948,1951,32852,1954,1958,1964,32855,1966,1969,1982,2026,32856,2675,2824,2848,3019,2899,3200,32858,3421,4131,32860,4342,32861], -[0,8623,1118,1179,1745,32864,6533,32867,4030,5592,27], -[1,2343,22476], -"eventstream", -[0,22477,22478,22479,2537], -[0,3763,1641,32874,3171,3441,3533,710,32876,3348,1209,4135,4591,30107,3084,2141,12627,1147,20412,32759,32875,15220,32873], -[0,3421,3467,1429,2070,2899,4193,1177,3188,4039,2720,2276,1894,1596,1155,32883,20441,3697,3752,1745,32881,32878,1942,1895,1955], -[0,8173,5130,2026,32885], -[1,2343,22482], -[2,11941,1596], -[0,22483,9888,2514,2537], -[0,3763,4734,4745,2685], -[1,2343,22485], -[0,22486,22487,22488,4139], -[0,21420,4174], -[0,4481,1906], -[0,2021,32896,3729,30135,32897,7226,6689,32899,32900,24601,200,13006,1111,15814,6048,7009,7201,6621,4166,6876], -"htm", -[1,2343,22491], -[0,22492,0,22493,4139], -[0,1362], -[0,18035,32906,32907,32909], -[1,2343,22503], -"gulp-spawn", -[2,22501,33473], -"gulp-svg2ttf", -"2svgfont", -[2,45,22498], -[2,2518,22499], -[3,29059,12], -"gulp-ttf2eot", -[0,0,22506,2514,2523], -"gulp-ttf2woff", -[2,22504,1276], -[0,21147,2759,4389], -"@types/gulp", -[1,2343,22513], -"metapak", -"-nfroidure", -[2,22509,22510], -"streamtest", -[0,22514,22515,22516,2523], -[0,1177,5896], -[0,4874,2025,2899,3421,4474,91], -[0,7190,14419,3212,1858,1237,2275,1973,27916,3430,21147,3209], -[1,2343,22520], -"gulp-match", -"ternary-stream", -[0,0,22523,22526,2537], -"exhaust", -[2,4279,22521], -[0,5898,1503,6618,6786,30025,32925,3028,32927,32930,3776,4255,4384,4481], -"if", -"ternary", -[0,3048,7002,3583,1496,1585,1697,6899,6803,3432,6693,3743,7098,6638,6618,7167,2062,6681,6856,6986,7035,6648,7284,6786,6670], -[1,2343,22528], -[0,22529,22530,22531,2537], -[0,2070,21510], -[0,4874,3188,1894,4384,4483,4508], -[0,6790,7218,6610,7293,7204,200,7074,6899], -[1,2343,22533], -[0,22534,22535,22537,2537], -[0,3263,8248,32944], -[0,2765,32942,32947,32949], -"gulp-gm", -[0,32951,27747,29002,8652,12197,158,32952,28125,4041,13008,32954,32956,32959,32961,1473], -[1,2343,22539], -[0,12881,22540,22541,2537], -[0,16003,32967,16005,16002,16000,15999,442,8998,5012,25130,11536,8862,15134,811,8850,816,6373,10615,10817,10895,32970,6503,4874,20374,5254,21626,21830,1082,32971,15128,1397,1405,1457,1540,1593,1610,32972,1859,1866,1177,1895,1955,1982,1988,2116,32973,2151,10754,2203,2675,10898,2990,10902,3090,3144,2899,3363,22496,3421,5561,3527,3530,32977,1894,3706,3714,3718,4019,4042,4060,4135,4172,4174,4227,4232,4376,4072,4484,91,4523,1983,4614,188,4630,13151,32979,4748], -[0,5260,6996,6903,5194,6708], -[1,2343,22543], -[0,22544,22545,22546,2537], -[0,5652,4081], -[0,53,8229,71,83,87,1397,1177,1895,1955,2675,2990,2899,1894,4042,4048,4058,4227,4232], -[0,4080,1172,6778,5194], -[1,2343,22548], -[0,22549,22550,2514,2443], -[0,1397,4081], -[0,1177,2899,4042], -[1,2343,22552], -[0,22553,22554,22556,2523], -[0,32998,4081], -[0,15134,1177,2022,2899,3421,4039,4042,33001,33002], -"group-array", -[0,4042,4080,5284,5194,5260,4298,33005,4051], -"strip-color", -[3,5467,19], -[2,22558,1098], -[1,2343,22563], -[2,5376,591], -[3,10705,13], -[0,22564,22565,2514,2537], -[0,2007,10898,3090,814,4081], -[0,53,87,94,1082,1177,1938,2675,2990,10902,2899,1894,10904,4042,4045,4058,4067,4172,4227,4232,91], -[1,2343,22567], -[0,22569,22570,22571,2537], -"inline-css", -[0,3090], -[0,51,19861,33017,1006,4874,4880,1414,4042,91], -[0,4080,91,4056,1007], -[1,2343,22573], -[0,22574,22577,2514,2443], -[0,4081], -"lodash.g", -[2,22575,19530], -[0,1177,1938,2675,2990,2899,1894,4042,4048,4067,4232], -[1,2343,22579], -[0,22580,22581,22582,2523], -[0,33028,20378,1209,3090,3220,33029,33031,33036], -[0,53,87,94,5583,811,816,8661,1009,1011,1104,1198,1177,1881,1938,2061,2151,29406,2323,33038,2441,2765,2766,1894,4039,4042,27720,33042,4449,91], -[0,4042,4080], -[2,17487,8162], -[2,11941,22583], -[1,2343,22586], -[0,22587,22589,22591,2487], -[0,33048,33051,1618,33052], -"isparta", -[0,24235,1676,2899,4042,4045,4066,4146], -"unit test", -[0,4080], -[1,2343,22593], -[0,22594,22597,22591,2487], -[0,1082,33051,2007,3090,33052,4081], -[2,34675,22596], -"-links-validator", -[0,1175,1264,1389,1192,3188,2899,4039,4042,4045,4067], -[1,2343,22599], -[0,22600,22603,22604,2523], -[0,5251,1405,10912,814,4081], -[2,4402,16237], -[2,2767,22601], -[0,53,87,94,1856,1177,2899,4042,4045,4055,4058,10916,91], -[0,4042,4080,6778,3378,5260], -[1,2343,22606], -[0,22607,22608,22604,34352], -[0,3090,4081], -[0,1177,1938,2675,2990,10902,2899,1894,4042,4048,4172,4227,91], -[1,2343,22610], -[0,22611,22612,22613,2399], -[0,10895,16799], -[0,10817,4874,1009,1011,1177,1895,1955,1192,1894,4039,4042,4468,91], -[0,4042,4080,12938,4227,33078], -[1,2343,22615], -[0,22616,22617,22618,2487], -[0,51,2805,4143,4072], -[0,53,1192,1894,4042], -[0,4042,4080,4072,3178], -[1,2343,22620], -[0,22621,22622,22623,2523], -[0,814,4081], -[0,1397,1177,2899,4039,4042,4048,4055,4484,91], -[0,4080,91,6778], -[1,2343,22625], -[0,22626,22627,22628,2537], -[0,10895,2102,2151,4135,4484], -[0,11893,811,816,33097,4864,33099,5087,4870,4874,8860,5254,1009,1011,1512,1177,33100,1192,1209,3429,4039,4042,33101,4076,4468,91], -[0,4076,4075,4080,91,6778,4042,3378], -[1,2343,22630], -[0,22631,22632,22633,2487], -[0,51,2805,4143,4535], -[0,53,87,1193,1192,1894,4042], -[0,4042,4080,2280,3178], -[1,2343,22635], -[0,22636,22637,22641,2537], -[0,3445,3530,4227,4747], -[0,811,816,10615,10817,5364,33115,33116,33118,33120,33121,33123,4874,20374,4892,1413,1654,14674,17086,17091,1655,1660,1701,3400,30889,3561,16578,3698,1894,28865,4042,10854,2278,4484,91,1983,1984], -"array-unique", -"gulplog", -"has-gulplog", -[0,4080,4078,11996,33126,33127,33129], -"capture-", -[2,22642,3101], -[1,2343,22645], -[0,22646,22647,22648,2523], -[0,2007], -[0,1006,5087,8778,4874,2675,1192,2990,3170,1894,4042,4055,4067,4075,4172,4468,4487,91,19545], -[0,4042,594], -[2,4599,3101], -[1,2343,22652], -[2,19984,1276], -[0,0,22653,2514,2523], -[0,1389], -[1,2343,22655], -[0,22656,22657,22658,2399], -[0,33145,8712,1410,1423,2215,3561,4232,4317,33146,1835,4164], -[0,33152,51,53,68,5216,61,76,14160,78,33153,81,5715,4851,5241,83,87,90,92,97,101,104,33156,33158,33159,33162,8317,8755,554,617,33165,33167,33170,33172,33173,13471,8648,842,11534,33174,33176,33178,19861,10879,33179,24807,31666,5364,33181,7806,33183,11796,11477,21122,5245,33189,33191,4865,8780,8264,4870,33193,13057,33195,20374,33197,4880,4883,15606,5254,33198,16149,13214,23452,11800,9241,20463,13753,1082,33199,31705,1138,1145,1154,33200,20476,1251,15009,1393,1398,1413,33202,33204,1525,33206,1536,12084,15015,1560,1562,977,1615,1618,11890,16912,16566,1676,11478,15018,33208,2018,2105,2145,2070,2553,2659,2661,15022,2674,16837,33209,2689,26453,2755,2805,2856,2863,20465,33210,3084,3177,3244,3266,33211,23175,3322,3467,15031,6042,3479,3502,3509,3530,12344,3605,16840,3638,16841,16842,3672,3676,3678,3688,3729,3757,15033,3784,3878,3957,4111,4135,710,27062,20508,4165,4227,4230,28512,15039,15040,9221,33212,15042,4294,7080,4390,33213,4072,4409,4425,15046,15047,11804,33214,614,15048,33215,24739,2924,4729,4763], -[0,89,5130,3287,5122,36,202,6400,5995,200,4592], -[1,2343,22660], -[0,0,22661,22662,34352], -[0,14192,1235,14196,14198,19130,14199,14214,14215,14217,1244,1264,19127,18801,18693,1378,1381,19119,18686,19123,19122,1825,18825,18829,33223,19121,2899,3736], -[0,19132,6567], -[1,2343,22664], -[0,22665,22666,22668,2523], -[0,25623,3527,3561,4300], -[0,1414,2899,4255], -"kew", -[0,33231,1623,33232,4086,5130,590,1504,26535,6270,353], -[1,2343,22670], -[0,22671,22672,22673,4139], -[0,1437,2061,3544], -[0,2323,2899,4170], -[0,17461,7170,6769,2323,3468], -"treams", -[2,6825,22674], -"ng-annotate", -[1,2343,22678], -[0,0,22679,22680,2523], -[0,1090,4389], -[0,22114,1149,3046,7241,14629,18462,4552,33244], -[1,2343,22682], -[0,0,0,22683,2537], -[0,33249,33250,7109,20018,7099,7022], -"develop", -[1,2343,22686], -[0,2513,22688,22689,34352], -"restart", -[0,33256,7,842,8712,4856,4870,6503,4874,7749,6513,6512,28198,1009,1011,1257,1429,33258,1473,1512,1610,1652,33261,1874,1177,24287,2139,2151,2070,16015,2675,13305,2990,1209,3183,2899,3363,3400,8967,12344,1894,1862,4042,32414,33263,4067,4167,4172,4193,4196,4232,4376,4474,4487,4490,33265,33267,33273,91,4585,5573,2924], -[0,7099,7022,6568,7111,7199,7040,7027,6858,6789,6746], -[1,2343,22691], -[0,0,9264,22692,34352], -[0,1398,33283,33284,6953,4100,1965,33287], -[1,2343,22697], -[3,13337,13], -[2,6574,22694], -"mac notification", -[0,22698,22700,22701,2537], -[0,2708,4135,4747], -"notify-osd", -[0,13614,1158,1159,1796,1177,33293,3421,4389], -[0,20001,25816,3378,33295,10381,6953,33297], -[1,2343,22703], -[0,22707,22708,22709,2537], -[3,13107,12], -[2,22704,2187], -[2,14983,22705], -[0,33304,21995,1149,33307,1437,1525,33312,1536,1544,977,1575,1581,29500,1797,2026,2040,33313,2070,33315,33316,32959,33319,33322,33324,33325,33327,3183,33328,3494,3509,3547,3741,33329,33332,33335,4135,4148,4151,33336,33339,4538,4590,33340], -[0,1317,1553,1177,2025,2151,33342,2899,3416,3560,33344,33346,33349,33352,33354,33357,4170,4220,4342,4449], -[0,33359,33362,2026,33363,33365,8173,8172,3469,4218], -[1,2343,22711], -[0,22712,22713,22714,2523], -[0,33379], -[0,4389,1090,33381,1389,1537], -[0,2090,1213,33383,2574,2649,1867], -"acorn-typescript", -"esrap", -[1,2343,22718], -[0,22719,22721,22722,4139], -[0,1699,1874,2654,2747,33390,3561], -"zimmerframe", -[0,1177,2899,4193,33395], -[0,1936,57,18113,2574], -[1,2343,22724], -[0,22725,0,22730,2523], -[0,1457,2700,4228], -"ENV", -"ifdef", -"ifndef", -"echo", -[0,590,4329,2278,7121,1623], -[1,2343,22732], -[0,22733,22734,22736,2523], -[0,23175], -[0,48,53,87,192,5467,442,27928,19344,1369,1610,1622,1628,1700,1701,1835,1177,1895,20281,1938,1939,1942,1953,1955,1982,2092,33408,2203,2675,1192,2990,33415,3144,3342,33420,3400,1894,2278,21688,4135,4257,4307,91,4523,2924,4677,4681], -[2,1876,2282], -[0,2278,22022,2924,1194], -[1,2343,22738], -[0,0,22739,2514,4139], -[0,1894,4384], -[1,2343,22741], -[0,22742,22744,22745,34352], -[0,33435], -"views", -[0,33437,1414,33438,1177,1776], -[0,2844,1745], -"precompile", -[1,2343,22748], -[0,22749,22750,13533,2537], -[0,1091,1092,12384,8818], -[0,1700,1192,2675,1177,1701,2203,2924,1894,48,442,1193,91,53,4874,2990,3400,192,1953,27928,4257,87,1939,1942,1938,20281,1982,1895,1955,19344,5467], -[1,2343,22752], -[0,22754,22755,22756,2523], -"src", -[0,89,3824,3286], -[0,91,4874,4880,4883,1165,3561,4383,1177,4828], -[0,33454,33455,2145,12589,1616,33456,12589,5472,20500,33459,1237,33462,33464,12590,33465,27666,11996], -[1,2343,22758], -[0,22759,0,22760,2523], -[0,1821,3299,15160], -[0,29395,33471,33472,4126], -[1,2343,22763], -[2,4068,3101], -[0,0,0,22764,2537], -[0,33477,3778,1616], -[1,2343,22766], -[0,22767,22768,22773,4139], -[0,33482,2866,4449,4729], -[0,442,13838,1177,1895,1951,1953,17303,1955,2026,2203,2564,1776,2899,3200,3246,1894,4150,4193,4351], -"modif", -"y-filename", -[2,22769,22770], -"rev-hash", -[0,13428,28522,5472,11132,13841], -"rev-path", -"sort-", -"sort-keys", -[1,2343,22779], -"vinyl-file", -[0,22780,22786,22787,2523], -[0,16607,33490,6065,16608,16612,33491,1595,1676,33493,2020,2089,33494,2188,33497,22845,2613,33499,3021,3127,14774,3170,33500,25873,27168,4025,4135,6554,4747], -"rev", -"revving", -"revision", -"expire", -"assets", -[0,4874,6547,1166,1414,1470,1652,1736,33503,2151,2212,2822,3019,19736,33505,3297,3401,33507,1894,23535,4193,23730,4400,4421], -[0,18526,13428,13729,1237,3383,20001,3979,4135,15525], -[1,2343,22790], -"deserialization", -[0,22792,22793,2514,2537], -"deserialize", -[0,97,33513,33515,6372,33519,1497,33520,1209,3021,3744,3847,32225,4163], -[0,33522,48,53,61,73,76,81,83,87,90,94,33525,9310,33528,33530,10875,4880,1009,1011,8158,33532,1178,1195,33537,1208,1210,33541,1251,31600,33543,1429,33545,1582,1610,1651,1676,1719,1742,19526,1843,1177,1879,1895,4916,1938,1947,1951,1959,1961,2060,2193,2323,2455,2541,2675,14708,2297,2881,32762,2886,2900,2904,2925,2975,2990,2899,1894,3725,3758,3786,89,33546,33550,3822,3824,3836,3843,3884,3885,33552,33553,33556,3904,33558,4039,33560,33562,33564,4193,4196,4201,4261,33565,4409,33566,4431,91,4597,2924,4676,4677,4679], -[1,2343,22796], -"each-async", -[0,22797,22799,22800,2537], -[0,1177,1900,1903,33572,1938,1953,1958,1959,33573], -"md5-hex", -[0,17529,1698,3188,4039,4092,4389], -[0,19309,33576,4354,16790,1501,19310,19311,19314,19271,18443,1177,2446,2292,2272,671,19315,19269,33578,2869,4255,19317,590,19318,19320,19273], -"ruby", -[1,2343,22803], -[0,0,22805,2514,2523], -"@img/colour", -[0,9516,9515,1317,4384], -[1,2343,22807], -[0,22808,10377,22809,2537], -[0,1676,1833,1869,984,2145,2657,3173,3242,3440,3781,4266], -[0,2947,2090,36], -[1,2343,22811], -[0,22812,22814,22815,2523], -[0,22966,8364,33593,33596,33598,33599,22967,19593,3034,3072,3183,22451,22968,33602,33603,3763,33605,28440,33606], -"sftp", -[0,8357,8359,33608,4874,1149,4440,1596,17402,2036,33612,21082,1894,33615,33618,28664,33620,25649,91], -[0,3166,11100,27662,33624,14584,33625,14586,14587,33626,5130,33627,33628,17757,6081,33629], -[1,2343,22817], -[0,0,22818,22824,2443], -[0,33634,1149,1317,1177,3210,4384], -"@types/fa", -"ncy-log", -[2,22819,22820], -[3,12459,15], -[2,22822,5229], -[0,4137,19748,33636,28277], -[1,2343,22826], -[0,22827,22828,22830,2523], -[0,33646,3348,1676,33641,1209,3220,4135,1155,2712,5245,33643,33645,3222,14334,33642,25624], -[0,3519,3421,1429,1082,1702,33653,2675,2899,3478,4193,1177,33663,3260,4039,1448,668,33669,33673,4246,25635,25633,33674,1587,1610,2071,33672,3480,33675,32842,2152,4196,91,4856,4874,2024,2990,6503,6513,29283,692,4870,33652,33682,33649,192,1431,33668,3125,4131,17370,4232,1942,1951,33662,1011,33660,22559,1009,33655,33681], -"brotli-size", -[0,3259,33669,7827,14873,25638,3519,3243,33684,33663,14872,25633,26472,33685,3469,6710,33690,18035,1747], -[1,2343,22833], -"measure", -[0,0,22834,22835,2537], -[0,1317], -[0,4141,7050,5284,676,1781], -[1,2343,22846], -"@gulp-sourcemaps/identity-map", -[3,22837,17], -[2,22844,36113], -"map-sources", -[2,22838,22840], -"-fabulous", -[2,1676,22842], -"@vitest/e", -"hook-std", -[0,22849,2667,22851,2487], -"@codspeed/vitest-plugin", -"mississippi", -[0,1676,33735,33702,33705,33725,33727,33713,33723,33714,33710,33734,33729,33722,33718], -"source maps", -[0,33737,33738,33739,33740,33741,28794,2811,33742,33744,33745,25003,33746,33748,4144,4145,33749,33750,3101,6621,33751], -[1,2343,22853], -[0,22854,22855,22858,2537], -[0,1091,1138,1371,1437,1494,1536,33757,33758,13834,16064,33761], -[0,2212,4494,4493,2675,1177,1984,1894,91,2990,107,7806,33765,7677,33768], -"device", -"strip-debug", -[0,4592,4146,3166,2665], -[1,2343,22861], -"client-hints", -[0,22862,22864,22865,2487], -[0,984,2145,3242,3494,4100], -"accord", -[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342,33775], -[0,2026,33777,2663], -[1,2343,22867], -[0,22868,22869,2514,2443], -[0,1080,6870,1676,1869,2657,3173,3494], -[0,1087,1177,1948,2899,3421,4342], -[1,2343,22876], -"looks-same", -"svg2png", -"@cpplint/cli", -"rwd", -"retina", -[0,22877,9025,2514,2523], -[0,1833,1869,3494,710], -[1,2343,22879], -[0,22880,22881,22882,2537], -[0,33798,3171,3181], -[0,192,5467,33801,33803,1168,1429,1431,1527,1177,1895,2151,2675,2990,3073,13824,2899,3310,3421,1894,3752,33804,4193,4196,4390], -[0,33804,33807,13573,7200,33808,6997,33811,6949,5351,4967,33813], -[2,33888,22889], -[1,2343,22885], -[0,22886,22887,22888,2523], -[0,33819,33821,33823,33824,7709,33826,33827,33828,27792,33831,13559,33836,33838,33840,29749,1367,10785,33841,13566,33843,3445,17009,4729], -[0,33846,9167,33848,5087,4874,7819,9241,1009,1011,33838,13566,668,33850,1177,1895,19527,1915,1938,1955,2675,1192,33851,33852,33854,33857,2845,3381,1894,13569,4257,4468,4474,1531,91,3348], -[0,12,7200,5472,1192,33804,4158,1984,13573,6930,6808,7308,33822], -"arm64", -[1,2343,22891], -[0,22892,0,2514,2537], -[0,26956,6641], -[1,2343,22895], -"rendering", -[0,0,22896,22897,2443], -[0,1178,1264,1280,1429,1177,2126,33869,2675,2990,2899,1894], -[0,4163,4161,4162,26287,3797,33871], -[1,2343,22899], -[0,22901,22903,22904,2537], -[3,18435,14], -[0,4135,22804,20584], -"incremental", -[0,20762,4481,33891,4391,640,33894,2057,22873,11976,3299,33877,2829,33882,33890,33884,33887,22883], -[0,21881,18048,12349,12350,23995,20639,8221,20701,33896,158,24800,33897,12712,26490,33898,33899], -[1,2343,22906], -[0,0,22907,22910,2523], -[0,13614,1159,9254,1177,2011,2708,2762,3410,3421,4103,4389], -[3,15893,12], -[2,22908,1512], -[0,1523,1644,7336,4166], -[1,2343,22912], -[0,22913,22914,22915,2537], -[0,2020,2071], -[0,1166,1437,1506,1177,1881,1938,2822,3421,33910,33912,4172,33916], -[0,4167,16159,28984,4166,33918,7048,2763,31360], -"@types/plu", -[1,2343,22921], -"gin-error", -[2,22916,22918], -"gulp-diff", -[0,22922,22925,22926,4139], -[0,3266], -" compilation", -[2,22902,22923], -[0,1429,2228,2899,1839,2240,26399,4436,2305,34238,22000,2236,2300,3006,2253,2273,2281,5535], -[0,5843,4439,3265,3348,33927,33928,33929,4169,33930], -[1,2343,22928], -[0,22929,22931,22934,2537], -[0,33936,33937,33938,33941,33942], -"array-each", -[0,1362,1177,33945,2899,1894,4042,4067,4487,91], -"error-cause", -[2,3094,22932], -[0,1973,5982,1145,4170], -[3,16647,18], -"se-extend-native", -[2,22935,22936], -"list-map", -[2,4601,22938], -[1,2343,22942], -"tape-catch", -[0,5621,22943,22944,2537], -[0,2228,2247,2253,2273,2281,2285,2290,33953,2291,2316,2832,3006,3518,33954,4135,33955,4232], -[0,1783,15253], -[1,2343,22947], -"uncss", -[0,22948,22949,22950,4139], -[0,3183,4167], -[0,1173,1264,1280,1177,1881,19527,1938,2822,2899,3421,4039,33910,33963,33912,4170], -[0,4167,4166,28984,16159,16160,2978,200,8636], -[1,2343,22952], -[0,0,22953,22954,34352], -[0,21122,4874,24162,13680,1414,1894,4384,4474,4508,91], -[0,6553,2021], -[1,2343,22956], -[0,22957,22958,22960,2523], -[0,1097], -[0,2553,3714,4042,4048,4535], -"useref", -[0,7521,5224,26514,1424], -"async-once", -"gulp-dest", -[2,3204,22962], -[1,2343,22965], -[0,22969,22976,22977,4139], -"@hapi/joi", -"jsonic", -"optioner", -[0,33986,33989,1676], -"array-differ", -"array-uniq", -"beeper", -"_reescape", -[2,3024,22973], -[3,22974,11], -[0,33992,33997,5245,5087,4874,668,29154,1192,4474,91], -[0,3358,34000,30983], -"valuate", -[2,22975,22978], -"lodash._re", -[1,2343,22984], -"interpolate", -[2,22980,22982], -[0,0,22986,22987,2523], -[2,3067,6937], -[0,4481,1192,2675,3534,1177,4039,4042,1894,1610,1193,53,5087,1540,34009,3720,97,107,87,1926,34015,68,5583,4073,6373,34019,811,816,5522,34013,1201,81], -[0,11615,16114,27968,13527,5130,89,1098,188,38,14584,4967], -[1,2343,22994], -"@test-runner/core", -"yazl", -[2,22996,32078,6624], -"qpass", -"yazul", -[0,22995,22998,22999,2537], -[0,11124,826,34034,1687,4351], -[3,22989,13], -[2,22996,23000], -[0,53,11126,11130,11133,11134,34040,28537,34041,1208,1676,1705,668,27502,26739,2185,2990,2899,3421,1894,3758,4039,4135,4167], -[0,4193,1973,5472,2275,13106,4158,21147,6901,34044,3212,4731,1145], -"live-view", -[2,22996,23003], -[1,2343,23005], -"oneline-view", -[2,22996,16316], -[0,0,23006,23007,34352], -[0,442,1414,1429,1177,2899,1894,4193], -[0,1429,15385,1388,34050,34053,4193,5472,17051,17052,17050], -[1,2343,23010], -[2,13857,2663], -[0,23011,23012,23013,2523], -[0,9153,6327,1149,1409,34066,34065,3188,4135,16358,2026,2822,705,1866,1525,3181,2861,2036,1364,1536,2657,2600,34060,34062,3923,34064], -[0,2899,1362,1389,34068], -[0,7223,3383,18157,29179,5260,2658,36], -[1,2343,23015], -[0,23016,0,2514,2487], -[0,34076,11480,34078], -[2,4598,3426], -[1,2343,23019], -[0,23020,0,23021,2443], -[0,34085,2984,34086,3527,27921], -[0,4201,200,1999,6681,34088,34090], -[1,2343,23023], -[0,16583,11580,23027,2523], -"smith", -[2,3521,23024], -"pngparse", -[0,34096,34098,34099,5995,4967,17758], -[1,2343,23029], -[0,23030,23031,23032,2399], -[0,22992,34105], -[0,2924,4469,91,4677,23319,4676], -[0,5995,34107,5592,33804,18035], -[1,2343,23035], -"compressed", -[0,0,8134,23036,2523], -[0,3403,34116,4207,28978,6574,6270], -[1,2343,23038], -[0,23039,23042,23044,2537], -[0,1110,34121], -"catering", -"deglob", -[0,1166,1437,34125,4294,1906], -"find-file-up", -[0,6913,1871,1111,592,1473,7208,1512,7009,7201,200,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], -"find-githost", -"link-re", -[1,2343,23067], -"ferences", -[2,23046,23048], -[2,1163,23049], -[2,3986,23050], -"remark-c", -[2,15,14994], -[2,23052,23053], -[3,13240,12], -"quote-", -[2,23056,17537], -[2,1359,23057], -[2,23055,23058], -"box-", -"-style", -[2,6843,23061], -[2,23060,23062], -[2,4354,23063], -[2,23055,23064], -[3,23065,22], -[0,23068,13640,23072,2537], -[0,22437,1455,12918,34132,34134,25377,34136,3275,3518,34137,3718,3730,34139,1241,4747], -"ontent-indent", -[2,23066,23069], -[3,23065,13], -[0,34141,4796,22832,3378,1161], -"block-style", -[2,16080,23073], -[2,23071,23074], -[3,7900,10], -[2,23076,15319], -[2,23055,23077], -"emphasis-marker", -[2,23055,23079], -"fenced-code-marker", -[2,23055,23081], -[3,23082,13], -"inal-newline", -[2,23083,23084], -"hard-", -[1,2343,23088], -[0,0,23089,23106,2523], -[0,12310,6061,6063,5476,1414,2899,4131,4255], -"break-spaces", -[2,23086,23090], -[2,23055,23091], -"-bullet-indent", -[2,5401,23093], -[2,15794,23094], -[2,23055,23095], -[3,23096,22], -[2,23097,8958], -[3,13240,15], -[2,17793,17825], -[2,9344,23100], -[2,1160,23101], -[2,23099,23102], -[3,23058,11], -"without-", -[0,4213,3974,1871,4577,22188,3656,1002], -"marker", -[2,23105,23107], -[2,23104,23108], -[2,23099,23109], -"duplicate-", -[2,23111,7900], -[2,23099,23112], -"-cont", -"ent-indent", -[2,23114,23115], -[2,156,23116], -[2,23099,23117], -"padding", -[2,16569,23119], -[2,23099,23120], -"literal-urls", -[2,23099,23122], -[3,13240,17], -"used-definitions", -[2,23124,23125], -"rule-style", -[2,23055,23127], -[1,2343,23130], -[0,0,23131,23146,2537], -[0,1596,34154,2899,3421], -"strong-marker", -[2,23055,23132], -"cell-padding", -[2,16065,23134], -[2,23055,23135], -[3,23136,18], -"pipes", -[2,23137,23138], -"unordered-list-marker-style", -[2,23055,23140], -[2,4586,3966], -[2,3986,23142], -"unified-", -[2,23144,16284], -[0,4213,3974,1002,34156], -[1,2343,23150], -"-shiny", -[2,18004,23148], -[0,7936,7938,7939,2443], -"pull-", -[1,2343,23153], -[0,23156,0,23157,2537], -"pull-or-clone", -[2,10617,23154], -[0,1437,2713,3183,3923,34167,4294,4425], -[0,3721,34170,34172,4255,34174,25264,34177,34179,34181,34182], -"fixer", -[1,2343,23160], -[0,23161,23162,23170,2523], -[0,1170,34189,1676,2131,2141,2188,1209,4113,4296,15502,34190], -[0,442,5245,7810,4870,4874,34194,15507,1364,1512,1687,1742,1792,1177,2026,2099,2070,2899,3421,1894,3923,4135,4151,4170,4193,4232,25609,4508,91,4523], -[2,13729,18200], -"git-tags", -[2,2264,2907], -[2,8961,2499], -[2,2312,23166], -"jquery-", -[2,23168,2555], -[0,4217], -[1,2343,23172], -[0,23173,0,23174,2537], -[0,1080,34200,1594,1676,12777,34201,9247], -[0,20863,5130,4699,21405,2018,21302,11444], -"neo-async", -[1,2343,23179], -"chai-diff", -[2,2264,4019], -[0,23180,0,23181,2537], -[0,34208,1676,12779,9247], -[0,20863,5130,4699,21405,2018,5576], -[1,2343,23183], -[0,23186,23191,23194,2537], -"ammo", -"heavy", -[0,1676,34226,26137,2713,4567], -"bounce", -"catbox", -"somever", -"subtext", -[0,1389,1839,1177,2025,2323,2409,2494,2496,2510,2530,2297,2871,2876,2881,2900,2899,3752,3756,4151,34228,4599,4603], -"statehood", -[2,23188,8329], -[0,14609,4699], -[1,2343,23197], -"vision", -[0,0,23198,2514,4139], -[0,1414,1742,1177,1894,1895], -[1,2343,23200], -[0,0,23202,2514,2487], -"webidl-conversions", -[0,34238,1742,2924], -"@vitest/ui", -[1,2343,23206], -"@webref/css", -[0,23207,23208,13533,2487], -[0,2685,4228], -[0,48,53,87,192,5467,16405,1193,1610,1622,1700,1701,1177,1895,1938,2675,1192,2990,3144,3400,1894,4257,2924], -[1,2343,23210], -[0,23211,23212,2514,2537], -[0,16136,4227], -[0,1389,1509,2665,2899,2924], -[1,2343,23214], -[0,0,23215,23216,2523], -[0,4874,1414,1894,3985,3998,4505,91,1906], -[0,965,1936,17540,34254,11590,1644,1646], -[1,2343,23218], -[0,23219,23220,23221,4139], -[0,34270,34266,5526,5528,5529,1448,1509,1525,2071,2215,2220,34264,2228,2247,2253,2256,2258,2263,2281,2283,2308,2036,2600,2654,2820,2822,34269,2856,1209,3127,34261,3561,2278,4373,4449], -[0,48,53,87,94,10737,34272,1429,1431,6522,1177,1951,1954,1970,2899,3363,1894,4037,4039,4193,4196], -[0,2220,1739,1745,34276,34279,5592,9381,1179], -[1,2343,23223], -[0,23226,23227,2514,4139], -"own-property-symbols", -[2,2183,23224], -[0,4430], -[0,2012,19987,19988,19989,34294], -[1,2343,23229], -[0,0,23230,2514,2523], -[0,34300,34301,30025,3421,3697,4255,4389], -[1,2343,23232], -[0,0,9888,2514,2523], -[1,2343,23234], -[0,0,23235,2514,2537], -[0,2323,2899,1177,1317,2463,2384,2409,2494,2530,34312,2510], -"@ljharb/", -[2,23236,2190], -[3,19784,15], -[2,23238,14037], -[3,6541,12], -[2,23240,3205], -[1,2343,23243], -[0,23244,23259,23263,2523], -[0,1362,1473,1512,1636,2151,2036,34317,8691,1209,3367,17997,34318,22519,4431,4597,4600,34319,34321], -[2,8727,591], -[2,10306,5472], -"@ungap/structured-clone", -"from-parse5", -[2,2573,23248], -[2,2580,3493], -"html-v", -"oid-elements", -[2,23251,23252], -[2,9406,8193], -[3,75,9], -"namespaces", -[2,5925,23256], -"zwitch", -[0,1429,1596,2759,2899,3202,34324,34326], -[3,9315,9], -"gap__structured-clone", -[2,23260,23261], -[0,22055,22074,34328,1623,4329,695,2278,4245,34331,17461], -"remark-api", -[1,2343,23268], -"unist", -[3,2572,9], -[0,23269,23270,23271,2537], -[0,1326,3299,32944,4390], -[0,1177,2899,32942], -[0,14872,7827,4246,18035], -[1,2343,23280], -"aria-", -[2,23273,2618], -[3,23249,15], -[2,23275,1936], -"html-tag", -"-names", -[2,23277,23278], -[0,23281,23282,23283,2523], -[0,34342,34345], -[0,1177,15234], -[0,21000,4247,22813,18112,4166,2978,21004,5576], -[1,2343,23285], -[0,23290,23294,23295,2399], -"bcp-47-match", -"-separated-tokens", -[2,14186,23287], -"devlop", -[0,21505], -"direction", -[2,2573,3661], -"not", -[0,9516,9515,1317], -[0,12616,5122,1965,34354,26965,27081,34355,34356,34357,34359,34360,1936], -"selectall", -[1,2343,23298], -[0,23299,21592,23300,34352], -[0,4745], -[0,4249,1781,4745,17307,25611,1747,7141,7789,166,1721,18035,1745,5995,1550,3230,2109,3259,4246,6523,20832,25638,1781,3053,34366], -"attach-comments", -[2,12413,23301], -"is-i", -"dent", -"ifier-name", -[2,23304,23305], -[2,23303,23306], -[2,12413,23307], -[3,6451,11], -[2,12127,23309], -[3,23310,15], -[2,23311,1219], -"js-esm", -[2,12127,23313], -[1,2343,23317], -"esast-util-from-js", -[0,0,23318,2514,2443], -[0,87,1193,1192,34373], -"basic-node-server", -[1,2343,23321], -[0,23323,23325,23326,2487], -"ccount", -[0,1177,1903,33572,1938,1953,1958,1959,33573,34380], -"tostring", -[0,1615,2554,3183,34383,4092,12823,4389], -[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,2446,2292,2272,671,19315,19269,2869,4255,19317,590,19318,19320,19273], -[1,2343,23328], -[0,23329,23331,23333,2523], -[0,1437,1566,34392,1570,25901,1707,20949,34393,2089,2105,31174,4135,28154,4747], -"sval", -[0,1429,1177,1903,1938,1954,1958,2899,3203,3215,3421,4167,34395], -"solid", -[0,1566,4945,13729,13728,6976,15525,1098,4255], -[1,2343,23335], -[0,23337,23338,23341,2537], -"wcswidth", -[0,1138,1362,17045,1676,2020,17034,10756,28519], -[0,4874,34405,1429,1610,1705,34407,34408,34409,2212,2848,8163,3183,2899,34410,26230,4131,34413,4193,4196,20382,4255], -[2,23340,93], -"@swc-node/", -[0,15656,12804,36,6587,1973,6435,6703], -[3,9407,13], -"nd-after", -[2,23342,23343], -"exsolve", -[1,2343,23347], -[0,23348,23349,23350,2523], -[0,34423,27073,2175,34421], -[0,1241,2276,4545], -[0,4264,34426,34427,34429,20863], -[2,13721,3585], -[2,2573,23351], -[1,2343,23357], -"build-", -"build-jsx", -[2,12413,23355], -[0,0,23358,23360,2523], -[0,1645,1177,1903,1938,1948,1954,1958,1970,2899,3421,3784,22449], -"svg-tag-names", -[0,27,6622,1501], -"vdom", -"hyperscript", -"@glen/jest-raw-loader", -[1,2343,23365], -[0,23366,23367,23368,2537], -[0,4729,3445,3930,4135,668,37080,36874,7384,26870,5545,968,974], -[0,1797,4763,1429,1687,2070,2807,4200,2020,2975,3144,23802,89,4207,20573,2205,3266,3411,28853,668,23345,2161,2822,6042,814,4448,24324,3555,1894,29318,9241,1420,1525,4788,3530,28863,3824,11143,4507,33215,4726,9741,16485,30414,3527,4227,4294,91,53,17577,4874,1615,1710,29514,104,14552,30157,11196,58,29515,5254,37084,1707,37491,15245,35349,8646,7931,7948,7637,7812,26380,15906,36119,8506,30253,32284,4480,101,370,15600,30254,30260,30262,24759,5216,30464,20374,30283,3885,33523,1582,37017,21122,30913,9329,30284,33228,33534,33538,30300,30313,12837,4300,30321,30375,31673,30398,966,25114,37449,28465,30406,7943,972,33554,33526,8714,19592,9011,30387,3749,30453,30454,30467,12315,30468,30470,30471], -[0,4270,4627,4963,23245,23246,89,3286,23803,3857,5123,188,1098,3709,5167,5926], -[1,2343,23370], -[0,23371,23372,23373,4139], -[0,2664], -[0,23363,10825,10827,10828,28147,34473,34475,11011,10837,10840,29877,968,972,5087,11292,4880,1177,34480,1192,11347,2780,1894,3744,3758,89,3824,2278,4111,4270,4468,91,4705,4745], -[0,6718,4270,34484,4963,1745,4967,34485,21043,34491,34493,34494,3416], -[1,2343,23377], -"regexgen", -"sort-object", -[0,23378,0,5269,2523], -[0,7,53,87,6316,6318,1437,1448,1457,1512,1525,1595,6323,2061,34500,2151,2070,2036,2626,2681,17449,2856,1209,3079,6326,6327,3127,3183,6330,6331,29899,6332,4135,100,4473,3348], -[1,2343,23380], -[0,8856,7938,7939,2443], -[1,2343,23382], -[0,14754,23383,23384,2523], -[0,34508,34510,2899,4170], -[0,34513,3101], -[1,2343,23386], -[0,0,23393,23394,2537], -[3,5429,9], -[2,23387,19315], -[2,1561,23388], -"origin-embedder-policy", -[2,1611,23390], -[3,23391,13], -[0,816,6503,4874,1642,1794,2899,2966,1894,4042,4064,4066,4170,4474,4494,91], -[0,3101,353,1641,3048,5995,4967], -"-policy", -[2,3456,23395], -[2,23392,23396], -[3,5974,9], -[2,23398,19315], -[2,23392,23399], -"origin-", -"-cluster", -[2,4575,23402], -[2,23401,23403], -"refer", -"rer-policy", -[2,23405,23406], -"-security", -[2,4714,23408], -[2,14104,23409], -"x-content-type-options", -"x-dns-prefetch-control", -"x-download-options", -"x-frame-options", -"x-permitted-cross-domain-policies", -"x-powered-by", -"x-xss-protection", -[1,2343,23419], -[0,23420,11580,23421,2523], -[0,17835,692,17754,2129,2760,34524,13291], -[0,34527,34528,5995], -[3,17494,14], -[2,23422,965], -[1,2343,23425], -[0,0,0,23426,34352], -[0,4283,1671,1871,6901,1666], -[1,2343,23428], -[0,0,23429,23430,2537], -[0,2323,2346,2463,2494,34537,2530,28539,4535], -[0,1871,16116,34540,34541,34542,591,1641,1936,18089,1644,1936,2640,4301,6678,10368,15103,1867,23615], -[1,2343,23437], -"abbrev", -"archy", -"hexo-cli", -"hexo-", -[2,23435,2149], -[0,23442,23447,23457,2537], -"hexo-fs", -"hexo-i18n", -"hexo-log", -"hexo-util", -[0,5139,34547,2626,3021,34551,34553,34556], -"-js-types", -[2,2822,23443], -"titlecase", -"warehouse", -[0,34559,34560,17913], -"0x", -"bbrev", -[2,9165,23449], -"xt-table", -[2,13419,23451], -[2,1884,2596], -[3,1778,9], -[2,23454,3127], -[2,23435,23455], -[0,1501,7682,7115,1936,34562,34563,7293,22392,4285,1871,4301,2640,17950,2585,34564], -[1,2343,23459], -[0,23460,8134,23461,2537], -[0,34569,4294], -[0,1871,6843,3656,4289,7062,6922,6981,6701,6581,16041,23336,6700,1111,1867,5281,200,6876,7009,7201,6575,6611,6795,6960,7135,7230], -[2,11177,17514], -[1,2343,23467], -"grunt-g", -"h-pages", -[2,23464,23465], -[0,23468,23472,23473,2523], -[0,34576,34578], -"scrawl", -"ducers-js", -[2,4713,23470], -[0,4874,1414,26854,1894,3985,3998,4505,91,1906], -[0,1646,10368,1867,1936,6843,11043,18944,18089], -[1,2343,23475], -[0,23477,20489,23481,2537], -[2,5058,23278], -[0,1109], -"freeze-es6", -[2,1683,23478], -[2,5313,14056], -[0,4301,6678,7293,1111,592,1473,7208,1512,7009,7201,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], -"tiny-worker", -"wcag-contrast", -[1,2343,23485], -[0,0,8134,23486,2537], -[0,4301,4295,1412,4327,3126,3656,4577,22188,7293,6865,6678,2585,1871], -[1,2343,23488], -[0,0,23489,23490,2537], -[0,1166,3130,4481,1906], -[0,1781,4301,4298,7293,6865,6678,16112,1644,1541,8309,6937,614,1263,6639,19632], -[1,2343,23492], -[0,0,23493,23494,2537], -[0,3421,1429,3297,2899,1177,4474,1894,3310,91,4856,4874,6503,23496,1431,1938,3200,1895,1955,9417,1011,10419,1009], -[0,4302,34601,34602,5592], -[1,2343,23497], -"undici-types", -[0,23498,23499,23500,2523], -[0,1149,1676,34607,34610,3324,34612,3368,3460,3917,34613,34615,34616,34619,34622,30142,34625,34626,34629,4707,2861,1401,34631,1653,2592,2713,695,1209,3081,26443,7305,34421,3220,3923,23975,4246,34634,26423,34636,34637,34639,29456,4729], -[0,1177,2292,4384], -[0,9649,34642,29319,34643,26473,34644,13538,4575,13539,6147,6374,24093,1541,4796,20997,20999,34647,2134,3358,27318,34650,6807,26474,10057,25202,3151,13499,27838,34651,3378,34652,34653,26931,6681,2306,3729,15267,28413,29179,5508,8791,11100,34654,34656,7046,34613,34657,34660,30142,34629,4303,34661,4345,17184,6901,34662], -[1,2343,23502], -[0,23503,23504,23505,2537], -[0,34667,34668,34669,34670,1437,1443,13827,1525,2745,2856,34671,1894,4443], -[0,34673,34676,107,192,5467,34677,34679,8661,34680,4856,4874,11438,7819,1011,5476,34681,5478,1082,34683,1429,1177,1951,1959,2007,2151,34684,2675,34686,2829,34689,695,2990,34690,26564,25131,2899,21290,3400,5561,2278,4135,4164,22595,4333,91,4555,3348,4745], -[0,34693,590,34692,1623,4964,11590,2278,4329,13339,34694,89,5133,25172], -[1,2343,23507], -[0,0,23508,13533,2537], -[0,1192,2278,2675,2832,3144,1622,1177,4135,1701,2924,1854,1894,1610,48,1193,1628,53,2092,2990,3400,4111,4677,192,4257,87,4681,1938,1895,2780,5467,16405], -"step", -[1,2343,23511], -[0,23512,23513,23514,2523], -[0,4311], -[0,192,5467,19438,19181,442,811,816,10615,5087,1009,1011,1177,1955,10964,2203,2675,1192,2990,1894,4042,4468,4474,91], -[0,4309,1623,590,5284,3048,23578], -[1,2343,23516], -[0,23517,23518,23519,2487], -[0,2718], -[0,192,5467,19438,19181,442,811,816,10615,10817,5087,4874,1009,1011,1177,1955,10964,2203,2675,1192,2990,3400,1894,23535,4042,4468,4474,4484,91], -[0,4311,134,590,57,1623,3048,23578], -"hap-nodejs", -[1,2343,23524], -"-newlines", -[2,1938,23522], -[0,23525,23526,23527,2443], -[0,7943,13037,34715,34718,1639,3561,4163,7917,4484], -[0,53,5652,8229,61,78,5240,87,90,92,10817,966,968,972,974,4863,5087,34720,4874,4880,4883,34722,5091,4889,5055,1193,1198,20479,14065,6375,1192,2780,26503,2802,2820,1894,3744,89,3824,34725,3857,3904,4042,4055,4058,4067,4069,4071,4073,34727,34730,91], -[0,89,1623,7165,4315,7297], -"@hono/eslint-config", -"@hono/", -"node-server", -[2,23529,23530], -[1,2343,23533], -[0,23534,23540,23541,2443], -[0,33204], -"publint", -"ly-js-compute", -[2,2062,23536], -[2,4609,23537], -"wrangler", -[0,48,53,78,4851,5743,5241,83,87,90,94,97,104,4880,1166,7913,34737,1573,1177,1895,2675,3008,1894,3720,89,3824,4131,4227,33212,7917,34741,91], -[0,7913,4592,34743,7165,1623], -"cloudflare", -"workers", -"fastly", -"compute", -[1,2343,23547], -[0,23548,20974,23549,2399], -[0,1393,3681], -[0,2887,1623,34749,4318,16918,3561,6425,4319], -[1,2343,23551], -[0,23552,23553,23554,2487], -[0,205,30928,208,213,30577,220,22371,30299,1595,1627,1634,1676,2071,29067,16783,14564,2205,34755,2641,2687,5210,19187,2747,2932,34757,3157,3170,3369,3527,3561,3676,3681,3688,4290,15887,34762,176,4728], -[0,107,34765,11893,34768,34770,34773,16934,5245,16787,34775,34776,34778,8778,16398,34780,19800,34785,22092,1317,1532,1699,1177,34787,1938,1939,2675,1192,34791,2802,2990,11357,3400,5561,3606,3613,30479,34793,3678,1894,3985,4337,91], -[0,7165,1623,695,671,9654,1783,2278,4329,4320,4337], -[1,2343,23556], -[0,23557,23565,23566,34352], -[0,4946], -"hopper-adventure", -[2,12087,23558], -"svelte2tsx", -"workshop", -"adventure", -"tutorial", -"tutor", -[0,34768,34770,1177,34787,2675,2990,3400,1894,3985,4320], -[0,4320,34801,4255], -[1,2343,23568], -[0,0,23569,23570,2523], -[0,3421,1192,2675,3534,1742,1177,1503,4508,1894,34810,1610,4320,48,1193,34809,11918,91,53,13693,2990,3165,94,192,4131,87,34806,1939,1978,1938,6063,34791,21120,1895,1955,4514,92,1011,6061,5467,1883,1009,5766,13052,61,78], -[0,7846,4320,1623,4329,695,671,34818,6884,3046,34819,1473,34820], -"big-lib", -[2,8131,23571], -[2,7635,23575], -"karma-co", -"codeshift", -"@jasminejs/reporters", -[1,2343,23579], -"pojo", -[0,23580,23581,23582,2537], -[0,3561,34826], -[0,1177,34829,1895,2203,2675,1192,30912,34791,2802,2990,3606,30479,34832,1894,34835,4320], -[0,7846,4320,1623,671,4327], -[1,2343,23585], -[3,2618,9], -[0,23586,23587,23588,2537], -[0,1634,2747,2932,3141,34842,34760,3681,3688], -[0,1532,1610,1177,34847,2675,1192,34791,2990,3377,3561,30479,3678,1894,4320], -[0,1623,21861,671,9654,4329,4320,7846], -[1,2343,23590], -[0,23592,14818,23593,2487], -"@domenic/eslint-config", -[0,63,1676,2070,4113,4227], -[0,1623,57,590,22561,2437,1351], -[1,2343,23595], -[0,23596,23599,23609,2487], -[0,2071,3369], -[3,9127,9], -"flowgen", -[0,48,53,87,192,5467,442,27928,19344,1317,34860,1610,1622,1628,1700,1701,1177,1895,20281,1938,1939,1942,1953,1955,1982,2203,2675,1192,2990,3144,3291,3400,1894,3786,4257,4307,4333,4523,2924], -" entities", -[2,1936,23600], -" encode", -[2,23601,23602], -[3,23603,14], -[2,23604,15103], -[2,18089,23602], -"entities ", -[2,23607,15103], -[0,2924,1194,4333], -[1,2343,23611], -[0,0,0,23612,2443], -[0,1623,3561,30775,5341,8958,57], -"ascjs", -[1,2343,23616], -"unescape", -[0,23617,23618,23619,2523], -[0,1533,34877,1676,33596,2139,2141,3164,3171,3763], -[0,48,53,83,87,97,192,5467,1290,16750,27731,1364,1389,1575,1610,1177,1909,1924,1954,2026,2040,2114,2182,2675,2990,3127,2899,3246,3421,3985,3995,4039,4170,34879,34881,1906,4770], -[0,4575,6662,6662,5592,1149,7003,1170,12618,5576,34883,2212,27,27,2671,21668,1862,1862,6567,705,705,21666,5508,4030,1153,4340,4339,17481,353,4731,4738], -[1,2343,23624], -[2,9374,12349], -"-unicode", -[2,23615,23622], -[0,23625,23626,2514,2487], -[0,25910], -[0,5245,27847,4874,1317,25212,3230,21180,91,1984], -[1,2343,23628], -[0,23629,23630,23632,2523], -[0,3164,4339,1581], -[0,3421,3297,2899,4193,1177,4170,2026,3752,1364,1575,192,1938,1881,5467], -"relateurl", -[0,5982,27,705,4339,6969,1973,5472], -[1,2343,23636], -"compressor", -"packer", -[0,23638,23639,23640,2537], -"uglifier", -[0,1362,3164], -[0,1429,1431,4037,4706,1364,1575,2026,2899,4170], -[0,4342,4339,705,6969,5982,27,1973,5472,1862,34901], -"detect-europe-js", -[1,2343,23650], -"alpinejs", -[3,19403,11], -"config-no", -"n-conventional", -[2,23645,23646], -[2,23644,23647], -[3,10854,16], -[0,0,23653,23654,2523], -"lyfill-node", -[2,23649,23651], -[0,1906,1166,4481,4874], -[0,1473,7208,1512,7009,7201,200,1111,592,6621,6616,7244,4166,4744,6876,4231,25986,34915,13735,13030,34916], -[1,2343,23656], -[0,23657,23658,23661,2487], -[0,31292,5012,23826,1006,1082,11869,19639,1497,11478,11479,22716,10898,10902,3090,22720], -[0,5180,8648,811,816,10615,8661,11868,4874,11486,668,4042,4227,27921,91,1984], -[2,23660,23663], -"browser-d", -[0,3709,27751,5130,5354,17950], -[1,2343,23665], -"etection", -"device-detection", -[0,23666,23669,23671,2537], -[0,5180,1457,20378,3527,11481], -"os-detection", -"bot-detection", -[0,811,8850,816,6373,10817,34939,1405,4042,4052,8849,3709,91,34940,34942,27702,27703,23560,34945], -"void", -[0,3709,200], -[1,2343,23673], -[0,0,23675,23676,2537], -"self-closing", -[0,53,87,192,5467,34951,34953,10879,4874,34955,19802,1165,13662,1509,1567,1177,695,3561,34958,3616,1894,3754,2278,4333,4337,3709,91,1984], -[0,3709,4358,91,695,4333,2278,4329,3754,1509], -[1,2343,23678], -[0,23690,23692,23693,2537], -"@bubkoo/commitlint-config", -"@bubkoo/", -[2,23680,7625], -[2,12612,1541], -[2,23680,23682], -[3,21388,20], -[2,23684,16171], -[2,23680,23685], -[2,23680,2190], -"asmine", -[2,5086,23688], -[0,16858,2070,4361,1149,25232,4597,4739,4747,2822,4709,3257,34967,3060,18993,10780,34966,13839], -"capture", -[0,1906,1192,695,2278,3549,4333,3536,1939,1942,34971,19812], -[0,1017,45,8221,18048,22074,22075,2873,1179,1623,2278,695,4333,5376,134,1936,13814,22874,22875,3257,17461], -[1,2343,23695], -[0,23697,23698,23700,2537], -"@selderee/plugin-htmlparser2", -[0,1525,1632,1634,9378,16858,3527,4113], -[0,442,11893,811,816,10615,16934,16854,5087,4874,34194,7752,1610,1177,2203,1192,3536,3541,3549,1894,4039,4042,4393,4481,91], -"selderee", -[0,4361,8221,6707,3178], -[1,2343,23702], -[0,23703,23704,23710,2537], -[0,1700,3067,34984,4533], -[0,1166,1173,1178,1257,29224,1272,1280,1362,1177,34989,3150,3188,4193,2924], -"@html-", -"/stylish", -[2,2649,23706], -[2,23705,23707], -"@sidvind/better-ajv-errors", -[0,2924,1932,34991,34984,11100,6812], -[2,23712,23], -[3,16579,15], -[1,2343,23714], -[0,23715,23716,23717,4139], -[0,1082,1699,2070,2856], -[0,1177,1894,4389,34997], -[0,8124,34999,7701,20120,1745,4363,1163,13728,1179,8623,20121,20123,20124,3452], -[1,2343,23719], -[0,23724,23727,23728,2537], -"theme-one-dark", -"@json2csv/plainjs", -[2,6019,3888], -[2,27733,23725], -[0,2205,2822,1525,35011,35008], -"-2", -"renderjson-2", -[0,1177,1984,1894,7677,35013], -[0,8124,1739,35015,1745,5592,134,4298], -"uffers", -[2,15038,23729], -[1,2343,23732], -[0,0,23733,23734,2537], -[0,4874,91], -[0,8168,8124,181,4369,2026,1745,1739,35021,12659,4367,699,35024,35026], -[1,2343,23737], -[2,11085,2634], -[0,23743,23744,23745,2537], -"pug-loader", -"recomp", -"ilation-simulator", -[2,23739,23740], -[2,4670,23741], -[0,5971], -[0,1866,2026,35036,2899,3421,3758], -[0,8124,2026,181,1781,1745], -[1,2343,23747], -[0,23748,23749,23752,2487], -[0,4535,3460], -[0,1209,2026,35046,2899,2025,35047,695,35048,1330,35051,3521,1389,2090,1776], -"@aminya/babel-plugin-replace-import-extension", -"lateurl", -[0,1283,17950,1936,21043,35053,16277,2026,1359], -[2,31806,31807], -"srcset", -"swiperjs", -[3,9376,10], -[2,23756,6424], -"postproc", -"cessor", -[2,23758,23759], -[1,2343,34505], -[0,4372,35058,31512,4453,12295,5131,1591,3525,1896,5130,35059,32054,35060,1932,89,188,35062], -[1,2343,23764], -[0,23765,23766,23768,2537], -[0,35068,35071,35072], -[0,1364,1610,2026,35074,1192,3237,4039,91], -"rss", -[0,705,27,2671,2325,1389,31360,15001], -"tributejs", -[1,2343,34522], -[0,35081,35082,3233,27838,888,6667,31937,6574,35084,35085,35086,35087,35088,35089,35092,26467,35093,7734,35095,3151,6771,35096,35097,35099,35100,11996,35102,35105,35106,35107,35108,35109,35110,35111,35112,17878,35115,35117,11812,35119,35122,10798,5876,12340,35125,25028,35126,35128,35129,35131,35133,35134,24079,5995,33741,35135,35136], -[1,2343,23773], -[0,0,23774,2514,2537], -[0,3445,2929,2899,3188,4039,4042,4072,1362,3310,35146,20463,4705,4232,8850,4073,6373,35141,816,35145], -"toidentifier", -[1,2343,23777], -[0,23778,23779,23780,2537], -[0,4729,1091,1594,35154,35155,35156,35157,1209,3237,35158,35159,35161,35162,2026,35163,35164,35166,35168,35169,1154,1364,1536,1562,35171,1130,97,35173], -[0,3278,1096,35175,35176,4167,35178,1532,35179], -[0,35181,35182], -[1,2343,23784], -"s-port", -[2,3209,23782], -[0,0,23786,23787,34352], -"sse", -[0,12473,4484,1177,2205,4042,1984,1894,91,53,4874,87,4057,4523,7677,5583,1938,11899,22839,22847,10817,816,24621,5660], -[0,4383,4380,1623,5256,35189,35191,1698,22306,35193], -[1,2343,23789], -[0,0,23790,2514,2537], -[0,1680,4874,16860,3090,4228,23956,31292], -"agent-base", -[1,2343,23793], -[0,23794,0,23795,2399], -[0,35205,35206,35209,35212,35213,35214,35216,35217,35220,35221,35222,35226,35227,35228,35230,35232,35233,35235,35236,35237], -[0,1145,4384,1973,5472,5130,200,35239,35240], -[1,2343,23797], -[0,23798,23799,23801,34352], -[0,1437,1792,2089,1209,3718,26840,35245,4431], -[0,35247], -"mockttp", -[0,4389,4384,2899,4386,16237], -"polka", -"next.js", -[1,2343,23805], -[0,0,23806,2514,2487], -[0,1192,1177,2203,1894,442,1193,53,1953,27928,87,1939,1938,20281,1982,1895,1955,19344], -[1,2343,23812], -"union", -"corser", -"secure-", -[2,23810,3797], -[0,23817,23819,23820,34352], -"eol", -[3,1895,15], -"opulist", -[2,23814,23815], -[0,35260,35263,35264,1417,1693,15016,35265,2133,2179,2070,35266,2571,2713,17403,3183,3206,3431,13635,3433,3435,814,18997], -[2,15021,36], -[0,13614,1143,1159,1537,1610,1796,35268,9254,1855,1177,14738,2762,2822,35271,3410,3421,4103,4135,4384,20496], -[0,4384,1973,35273,1145,1388], -[1,2343,23822], -[0,23823,23824,2514,2523], -[0,35279,35280,21505,29174,35278], -[0,4384,3297,4483,35282,4039,4508,1894,29169,4874,1834,35285], -[1,2343,23827], -[2,836,22715], -[0,23830,23833,23834,2523], -[3,7639,16], -[2,23828,176], -[0,3756,4393], -"HttpStatus", -[2,27,5576], -[0,4039,35291,4255], -[0,4390,2150,2090,18158,7204,3101], -[1,2343,23836], -[0,23838,23839,2514,2487], -"mediation", -[0,35297,35299,35298], -[0,35291,4255,1537], -[1,2343,23841], -[0,2513,23844,23845,2487], -"-retry", -[2,7737,23842], -[0,15288,15594,5087,4874,1009,1011,1596,668,1177,1903,1938,1954,1958,1192,1894,4468,91], -[0,35306,6346,35307,35308,4967,35310,5995,35312,27448,14629], -[1,2343,23847], -[0,0,23848,23849,2537], -[0,15288,5367,5371,6494,15594,5087,4874,9240,1009,1011,1364,1527,1652,35317,1177,1903,1938,1954,1958,2675,1192,2990,3363,5362,1894,4342,4468,91], -[0,35306,6346,35307,35308,5995,35312,15001,2026], -[1,2343,23851], -[0,23852,0,23853,4139], -[0,1676,3299,15160], -[0,32859,35324,35327,35328,35329,1326,35330,5995], -[1,2343,23855], -[0,23856,23857,23858,4139], -[0,1676,3299], -[0,442,6373,5245,4874,20584,1759,1177,1895,1966,1982,640,1894,4508,4514,91,4523,1983,26744,1984], -[0,32859,35328,4398,202,5995], -"anity", -[2,1901,23859], -[1,2343,23863], -[3,2677,9], -[0,23864,7923,23865,2523], -[0,4039,3188], -[0,21770,4449,1241,35342,16330,29615,35343], -[1,2343,23867], -[0,23871,23873,23880,2537], -"singular", -"plural", -"camelize", -[0,2753,13786,4507,35349], -"dasherize", -[0,4874,1166,3505,4453,4481,1906], -"demodulize", -"ordinalize", -"uncountable", -"singularize", -"titleize", -"tableize", -[0,1241,21770,3403,2090,7204,6857,16330,35342,29615,35343,3778,17023], -"classify", -[1,2343,23884], -"foreign_key", -[0,23885,0,23886,34352], -[0,26925,35364,35359,35367,35358,35365,35363,35356], -[0,7009,7201,1111,200,4744,1473,35369,35371,590,6847,35373,29002,35374,13006,4403,1478,15955,35375,35376,35377,32312,158,18048,21881,20639], -[1,2343,23889], -"@messageformat/core", -[0,23890,0,23892,2443], -[0,35382,15019,2713,35259,4431,35383], -"fast-printf", -[0,4403,7009,1111,35385,35386], -[1,2343,23898], -"make-plural", -"val-parser", -[2,9433,23895], -[2,18108,23896], -[0,23899,23900,23902,2487], -[0,35392,1082,1525,4232], -[0,35394,35395,1177,19210,1999,2899,3697,4042,4135,4227], -[2,23927,23929], -[0,2280,4072,4533,4535,3178,2632,5284,5286,1925,5194,6598,7075,6778,7056,7192,1149,7003], -[1,2343,23935], -[3,5702,15], -"-function", -"-functions", -[2,23904,23906], -[2,69,23907], -"gh-release", -"i18next-", -[2,1351,18691], -[2,13843,23911], -[2,23910,23912], -"fs-backend", -[2,23910,23914], -[2,2655,5995], -[2,23910,23916], -"storage-", -[2,23918,2325], -[2,2703,23919], -[2,23910,23920], -"sprintf-", -[3,10810,11], -[2,23923,7120], -[2,23922,23924], -[2,23910,23925], -[3,6021,10], -"interna", -"ease", -"alization", -[2,3855,23930], -[2,23928,23931], -[2,2703,8840], -[2,2202,8840], -[0,23937,23938,23939,2523], -"gettext", -[0,4072,2805,4121,4143,5180], -[0,1700,1192,2675,3144,1622,1177,1701,668,2924,1894,842,1610,4535,48,442,91,53,4874,2092,2990,3400,4677,28639,192,1953,27928,35403,4257,87,4523,1939,1584,1942,1938,20281,1982,1895,1955,19344,16400,5467], -[0,2280,4535,4533,4072,2924,1464,14137,15215,23634,2262,14137,2632,3178,6707,6708], -[1,2343,23941], -[0,23943,23944,23945,2537], -"gridly", -[0,22989,22991,22997,23001,23004,1519,1522,25190,2071,26553,17798], -[0,2829,3310], -[0,1187,1973,8791,200,2275,5472,4990,4389,4384,1166,2899], -[1,2343,23947], -[0,23949,23951,23953,2443], -"safer-buffer", -[0,1362,1437,2070,1209,3127,3188,35417,35419], -"errto", -[0,19181,442,12312,13414,4865,4870,4874,6513,1009,1011,7677,1703,1177,15555,35422,4193,35425,35426,4493,4494,91,35428,1984], -"unorm", -[0,1783,1973,2275,29352,1745,1739], -[1,2343,23955], -[0,23957,23961,23962,2537], -[2,8293,23958], -[0,53,71,81,5717,5749,5751,5757,5759,5782,5788,5821,5830,83,87,14128,90,97,35437,35439,4874,15427,5990,1212,14191,35440,17495,1429,1437,35443,1509,1525,1676,1680,1700,35444,28504,1687,35446,28137,13772,6473,2020,35450,2205,2215,33100,2670,12788,35453,2709,2742,26453,2743,35455,2753,2856,1209,35457,3093,7305,3220,35461,3257,3266,35462,3493,3532,35463,3549,15245,35465,3742,3762,35467,35469,13780,4025,4108,4135,5152,4232,4296,35473,35476,35479,35482,35484,35485,35486,35487,35494,35496,4449,4459,91,35497,35500], -"oxide", -"-reflect", -[2,5258,23959], -[0,33640,17835,35502,8862,811,15460,816,29544,35505,4856,5245,35507,17577,22089,27299,6505,7812,5254,5162,13418,35510,1009,1011,1198,1304,1364,35512,35513,1431,21480,4907,1544,1594,1610,35514,1874,1177,35517,17303,2026,35518,2323,2338,35519,2383,2384,2450,35521,35523,20305,2494,35527,2530,8163,3124,3159,3183,35531,3246,35533,3752,89,5311,4042,4076,4151,4193,17010,4294,35537,4484,4535], -[0,35539,6564,1388,2887,5351,8674,5472,13428,1973,8791,6969,1145,6468,35540,6789,6746,1149,7003], -[1,2343,23965], -"proxies", -[0,23966,23967,23968,2487], -[0,17877,35547,1137,20908,20991,1676,35549,1736,2182,28142,35550,35555,4391,4449,4548], -[0,28192,35558,28180,5245,28203,35561,35563,6520], -[0,4419,17878,5472], -[3,1891,15], -"stai", -[2,23969,23970], -[1,2343,23973], -[0,23976,23978,23979,2523], -"pre-suf", -"spawn-sync", -[0,1209,10627,35570,26827], -".gitignore", -[0,4874,1009,1011,1389,35573,35575,1610,1680,35576,35577,2752,3188,3400,3421,4039,4255,35579,35580,4421,4474,12851,91], -[0,6969,5982,3212,13106,4158,35582,4420], -"asterisks", -"regular-", -[2,23981,7256], -[1,2343,23984], -[0,23985,23986,23987,2537], -[0,10780,1292,1362,35382,1525,1536,1559,2020,2026,35588,2070,2659,2822,1209,3188,3257,3330,3411,35589,4039,4218,25192,35591,20496,4449], -[0,35593,1389,1429,18761,35596,1448,1719,1177,18766,1951,2899,705,35598,4167,4193,4196,4220,4389], -[0,5284,5472,27603,1388], -[1,2343,23990], -"dimensions", -[0,0,23991,23996,2537], -[0,4384,4389,1474], -"resolution", -"heif", -"tga", -"tiff", -[0,2585,176,14903,6938,26815,15847], -[1,2343,23998], -[0,0,23999,24000,2537], -[0,442,816,10615,1177,35611,1924,1937,1942,2203,29741,1776,3090,3549,3758,2907,4042,4495], -[0,4426,35617,5284,7598,35619,35620,35621,35622,35625,35628,35629,1424,8221,12075], -[1,2343,24002], -[0,0,24005,24007,2537], -"ow", -"p-pipe", -[0,48,53,83,87,97,5583,1195,16818,1593,1177,16821,1895,1955,1999,2182,35634,16824,2675,2297,2876,2881,2895,2904,2908,2921,2925,2990,3183,35637,3377,1894,3774,4042,16827,2924], -"imagemin-webp", -[0,1675,6925], -[1,2343,24009], -[0,0,24010,24011,34352], -[0,7115,4389,19988], -[0,3101,7046,7525,7170], -"is-png", -"pngquant-bin", -[1,2343,24015], -[0,24018,24019,24020,2537], -[2,2267,1932], -"pngquant", -[0,3923], -[0,1329,1398,1429,35649,2899,35650,4255,35653], -[0,3101,6657,4430,353], -[1,2343,24023], -"utf7", -[0,0,0,24025,2443], -"reader", -[0,3949,1499,1179,5701,1862], -[1,2343,24027], -[0,0,8134,24028,2487], -[0,35667,35668,35670,4435,5396,3403,4571,7204,4569,18132,6270], -"cpx2", -[3,23479,11], -[1,2343,24034], -"import-size", -"seamless-immutable", -[0,24035,14525,24039,2537], -[0,1437,32972,2089,21890,35675,3718,4425], -"mutable", -"on-write", -[2,1583,24037], -[0,2228,3005,22832,6901,35677,4262,18234,3514,6681,3005], -[1,2343,24041], -[0,24042,24043,24046,2537], -[0,35720,35797,35724,35730,35781,35789,35795,35799,35810,35682,35684,35697,35739,35750,35754,35769,35779,35793,35685,35700,35721,35741,35748,35756,35785,35787,35792,35812,35689,35694,35743,35752,35762,35774,35791,35805,35702,35705,35706,35708,35710,35723,35802,35806,35709,35699,35718,35729,35767,35772,35804,35808,35713,35733,35764,35811,35690,35701,35717,35727,35738,35761,35776,35783,35746,35736], -[0,2150,2070,2323,3403,2278,2899,89,1177,1209,4039,1637,3561,2924,1859,2151,2759,1610,2025,2504,3342,3824,1628,2359,3744,2367,4111,1165,2482,2496,4307,35814,35816,3427,4689,2361,2960,3618,35819,4909,1959,1879,1938,1947,25925,35818,1652,2054], -"variant", -[2,9721,24044], -[0,89,5128,4627,4963,181,5130,4967,35821,4437,14547], -[3,2697,12], -[1,2343,24049], -[0,24050,24051,2514,2487], -[0,20443,1676,26137,26144,3427,3763], -[0,1173,1198,1253,1267,1177,1903,1958,1970,2026,2164,2899,29946,4257,4342], -[1,2343,24053], -[0,0,0,24054,2523], -[0,1317,35832,4439], -[1,2343,24056], -[0,0,24058,24059,2523], -"bypass", -[0,35837], -[0,1473,57,35839], -[1,2343,24061], -[0,0,0,24062,2443], -[0,6105,4445,18241,5284,1936,2585,24829,24830,24843,6106,24832,6110], -[1,2343,24064], -[0,0,24065,24066,2537], -[0,4874,34238,1177,1895,1955,1982,1894,1531,91,4523,1983,1984], -[0,2062,35849,35851], -[1,2343,24068], -[0,0,0,24071,4139], -"metacom", -"metaco", -[0,4158,3212,91,3163], -"nfiguration", -[2,24070,24072], -[1,2343,24076], -"metalog", -[0,0,24082,23865,2537], -"metaschema", -"metautil", -"vm", -"metavm", -"metawatch", -[0,2899,1177,2759,15854,1951], -[3,15793,16], -"tarhia", -[2,24083,24084], -[1,2343,24087], -[0,24094,24096,24098,2537], -"isolation", -"enterprise", -"scalable", -"soa", -"stateful", -"cluster", -[0,3864], -"interactive", -[0,53,29553,5103,1894,91], -[2,24101,103], -[0,89,5128,35865,11000,8192,35867,35869,3857,3906,35868,35870,4450,9044,3811,5779,200,5131,12295,12296,5122,35871], -[1,2343,24100], -[0,0,24102,24103,2399], -[3,9312,10], -[0,48,53,81,87,90,11976,12310,5476,1195,1429,1177,2026,2151,2193,2205,2822,2832,3127,3188,2899,3286,35877,3400,35878,89,3824,2278,4255,2924,4677], -[0,4451,5284,176,5938,16504,8623,1936,6956,24456], -[1,2343,24105], -[0,0,24106,24107,2487], -[0,2276,28234], -[0,4452,57], -[1,2343,24109], -[0,0,24110,2514,2487], -[0,29169,4384], -[1,2343,24112], -[0,24115,24119,24123,2487], -"-vnode-flags", -[2,2711,24113], -[0,25671], -"inferno-", -[2,24116,594], -[2,24116,6579], -[0,5517,442,9089,603,4874,22839,1177,1895,1915,1938,1955,6526,2203,1894,4493,91,4523,1984], -[2,6073,591], -"ToString", -[2,8924,24121], -[0,9183,977,16358,35896,34877,34876,35897,35898], -[1,2343,24125], -[0,24126,24127,24131,2537], -[0,1512,1672,3188,35904], -[0,4856,6503,1429,1474,1787,1177,2899,3421,4474,4487,91], -[2,2712,591], -[2,2712,1592], -"humanize", -[0,3073,2942,4251,1676], -[1,2343,24133], -[0,24134,24141,24142,2523], -[0,15312,35917,17416], -"inherit", -"inheritance", -"klass", -"oop", -"oriented", -[2,3425,24139], -[0,13614,1159,9254,1855,1177,2708,3410,4103,4389], -[0,100,4647,6899,3053,7260,1697,1496], -[1,2343,24144], -[0,0,7923,24145,2523], -[0,1633,18718,3729,35109,32900,6553], -[1,2343,24147], -[0,20896,24148,2514,2523], -[0,7806,9227,6494,5087,1536,1594,2026,1192,3363,1894,4468,91,4763], -[1,2343,24150], -[0,24155,24158,24159,2537], -"@alcalzone/ansi-tokenize", -"auto-bind", -[2,17503,7201], -"yoga-layout", -[0,2713,4431,15019,35935,35938,3923], -"@types/ms", -[2,11313,14675], -[0,4389,4430,1537], -[0,1936,22115,57,353,3586,1623], -[3,6547,13], -"-exit", -[2,24160,24161], -"ack-utils", -[2,6516,24163], -"@vdemedes/prettier-config", -[2,15289,89], -[3,3816,9], -"tools-core", -[2,24167,24168], -[1,2343,24172], -"print", -[0,24173,24174,24175,2537], -[0,24156,5254,2738,3242,4135,22776], -[0,11976,4874,7677,1395,12690,3232,3446,7461,9245,91,1984], -[0,5995,1550,3230,3232,1932,2844,1747,18037,4799,91,2325,1552,1542,3151,9553,3766,35948], -[1,2343,24178], -[3,2718,12], -[0,0,24179,6273,2443], -[0,48,53,61,76,78,87,92,107,192,5467,9089,603,5366,5087,4870,7819,1009,1011,1193,1317,1593,1177,1895,1955,1978,2675,1192,1209,3400,1894,3957,4474,4508,4514,91,3348], -[1,2343,24185], -[2,24184,4013,17526], -"inno", -[3,2719,9], -[3,29444,16], -[0,24186,24187,24189,2523], -[0,35957,16781,2036,2856,3057,35958,4135,4507,4748], -[0,192,22559,19438,19181,442,11893,8755,554,10879,4864,5087,7637,7889,19446,35960,8778,4874,5254,4892,21626,1009,1011,1193,16307,1566,668,1177,1895,1938,1939,1942,1955,2020,2071,2151,2203,2675,1192,2822,2990,3144,1894,4039,4474,91,4523], -"run-async", -[0,1192,91,12938,89,5472], -[1,2343,24191], -[0,24192,24193,24194,2523], -[0,1437,1835,3170,4135,4227], -[0,8778,5254,1009,1011,1172,1175,1195,1257,1267,35968,1268,1874,1177,1895,1954,1955,2151,2070,2675,2766,2297,2881,2898,2904,2921,2925,2990,3123,3188,2899,1894,4039,91,2924,4677], -[0,4469,35972,2924,1194,91,4799], -[1,2343,25249], -[1,2343,24198], -[0,8998,1525,1759,3232,4494], -[0,24197,34525,24199,34352], -[0,5995,31012,35980,35981,3232,3230,1550,2844,1747,18037,4799,91,200,13326,35982,13325], -[1,2343,24201], -[0,24203,24205,24206,2487], -"fwk", -[0,35987,35989], -[3,2726,9], -[0,10817,4856,17577,6503,4874,1429,27445,1610,1687,2899,4039,4042,4474,91], -[0,91,6892,35993,4988,35995], -[1,2343,24208], -[0,24210,24212,24215,2523], -"reify", -[0,4757,1138,1687,1082,1084,35958,24806,36000,36001,32335,19441,36002,36005], -"exports", -[0,1166,3421,1170,89,36007,2022,1209,4039,4135,7094,3471,4508,842,36008,2188,3752,91,17577,4874,36009,4880,4870,20959,5254,15906,36011,28142,9725,28203,29139,603], -"packaging", -"unrun", -[0,91,202,7047,6639,4799,4643], -[1,2343,24217], -[0,24221,24222,24225,2523], -"remark-co", -"de-import", -[2,24218,24219], -[0,4870,24156,5254,36017,1209,3242,36018,36020,4135], -[0,11976,4874,7677,12690,3232,3446,7461,9245,91,1984], -"coffee.md", -"litcoffee", -[0,5995,3232,1932,1550,2844,1747,18037,4799,91,7163,2602,2013,6868,7147,3076,6865,13716,3073], -[2,24227,553], -[3,37196,18], -[1,2343,24243], -[3,1235,25], -"3-member-expression-literals", -[2,24229,24230], -[3,24231,27], -[2,4635,5796], -[2,24232,24233], -[2,1267,13278], -"-cal-buddhist-full", -[2,10739,24236], -"cldr-cal-", -"-full", -"chinese-full", -[2,24238,24240], -"cldr-cal-c", -[0,0,2667,24252,4139], -"optic-full", -[2,24242,24244], -"dangi-full", -[2,24238,24246], -"ethiopic-full", -[2,24238,24248], -"hebrew-full", -[2,24238,24250], -[0,91,4749,24753,24754], -"indian-full", -[2,24238,24253], -"cldr-cal-i", -"slamic-full", -[2,24255,24256], -[2,6795,24239], -[2,24238,24258], -[1,2343,24265], -"persian-full", -[2,24238,24261], -"roc-full", -[2,24238,24263], -[0,24270,24279,24281,2523], -"cldr-core", -"cldr-", -"dates-full", -[2,24267,24268], -[0,1209,4870], -"numbers-full", -[2,24267,24271], -[2,2004,19895], -"grunt-curl", -"grunt-zip", -[3,15911,15], -"emory", -[2,24276,24277], -[0,11976,4874,7677,3446,7461,9245,91,1984], -"ecma", -[0,5995,4799,91,36033,36034,5547,3624,16284,36036,36037,36039,36040,36041], -"ecma402", -"jsonc-simple-parser", -[1,2343,24285], -[0,24286,24288,2514,34352], -[0,2856,3183,4296], -[2,1940,23688], -[0,1192,2675,1177,4039,4468,4474,1894,91,5087,4874,2990,7892,36047,1942,1938,1895,1011,18285,1009], -"flag-icons", -[3,10697,15], -[2,24290,6082], -[3,2273,15], -[2,24292,23688], -"grunt-re", -[2,24294,2495], -[1,2343,24297], -[0,24300,24301,24303,2523], -[3,23932,13], -"country", -[0,8811,7681,2205,2777,3157,3505,3921], -[0,11436,4874,4880,1009,1011,1166,1597,1701,1177,1907,15290,2020,89,4025,4094,91], -"dial code", -[0,91,4481,4354,4532,553,36055,36059], -[1,2343,24305], -[0,0,24306,24307,2537], -[0,53,87,92,11893,19441,8811,4874,1009,1011,1193,1622,1177,1895,1192,1894,91], -[0,91,4481,8784,4354,16790,1973,4532,553], -[1,2343,24309], -[0,24310,24311,24312,2399], -[0,29891,1437,1457,15261,24283,3181,3188,36071,35237,4039,21512,91,9455], -[0,4874,668,1894,4384,4508], -[0,91,11540,24364,1999,10906,6147], -"updates", -[1,2343,24321], -[3,14428,13], -[2,24315,15525], -"inversi", -"on of control container", -[2,24317,24318], -"ioc", -[0,0,0,24322,2487], -[0,6869,7296,4643,1351,5284,4484,7047], -[1,2343,24330], -"empathic", -[3,547,8], -"li-framework", -[2,24325,24326], -"-prompts", -[2,24327,24328], -[0,24333,24350,24357,4139], -"discover", -[2,8655,24331], -[0,51,1405,1437,1525,1687,2070,2822,3181,3188,814,4135,4484,18272], -"utils-array", -[2,8655,24334], -[3,24335,13], -[2,24336,2150], -[2,24336,11996], -[2,24336,3729], -[2,24336,3101], -[3,24340,14], -"ubprocess", -[2,24341,24342], -[2,24336,7009], -"elementtree", -"leek", -"ssh-config", -"-proxy", -[2,4339,24348], -[0,692,19861,4856,17577,4865,7637,9129,10949,6503,4874,5251,20959,5254,1429,2675,34269,2899,3400,3421,1894,4039,4474,4487,4490,14970,91,31745], -[3,15592,14], -[2,24351,1633], -"pen", -"@types/open", -"s-name", -[2,15461,24355], -[0,200,91,9654], -"@types/split2", -[3,9240,12], -[2,24359,4575], -[1,2343,24365], -[2,2733,14606], -[2,2733,5130], -"hybrid", -[0,0,24366,24367,2523], -[0,1192,2675,1209,4039,4487,4468,3093,1894,36090,1527,91,5087,4874,36097,4492,36088,15600,4131,36098,36103,31194,4585,31195,36100,1652,36095], -[0,671,4487,36106,1894,1541,91], -[1,2343,24369], -[0,24371,24372,2514,2487], -"@types/svgo", -[0,18272], -[0,4865,4874,1512,2070,3400,3403,4487,36114,91], -"icon pack", -[3,11619,14], -[1,2343,24376], -[0,24377,24378,2514,2537], -[0,36119,1415,1457,1556,1676,668,28795,36120,3527,3616,4025,4042,4227,12444,26379,27921,4459], -[0,603,8850,842,5245,4874,5251,19839,2117,3561,26712,1894,814,4057,2278,4300,3709,4359,4072,36123,4493,91,1984,9252], -"@ioredis/commands", -[1,2343,24394], -"-key-slot", -[2,24093,24381], -"denque", -[3,19541,11], -"guments", -[2,24384,24385], -"-error", -"-errors", -"redis-errors", -"redis-", -[2,24390,57], -"as-callback", -[2,18124,24392], -[0,24404,0,24405,2537], -"@ioredis/", -[2,8626,16609], -[2,24395,24396], -[3,19583,22], -[3,10408,16], -[2,24399,10446], -[3,8826,10], -"is-errors", -[2,24401,24402], -[0,668,2191], -[0,200,7047,202,17526,10906,1999,91,36130], -"sentinel", -[1,2343,24409], -"pipelining", -[0,24410,24411,24412,2487], -[0,36135], -[0,811,816,6373,1389,4037,4042,4255,36140], -[0,15253,1936,1783], -[1,2343,24414], -[0,0,24415,24420,2399], -[0,2228,2899,29691,2240,4019,36157,36156,2300,36149,2258,36160,4232,2247,36163,2273,2281,36165,36167,36153], -"irc-colors", -"node-i", -"cu-charset-detector", -[2,24417,24418], -[0,2845,2844,1155,4496], -[3,1104,10], -[1,2343,24423], -[0,0,24424,24425,2523], -[0,1389,1177,2080,36176,4389,36178,4535], -[0,1616,12588,36181,36182,7789,3428,6803,36183,36185,36186,36187,36189], -[1,2343,24427], -[0,24428,24429,24430,2523], -[0,2151,2859,36194,21224], -[0,3400,3524,4535], -[0,3113,36197,57,11806,22875,36198,3656], -[1,2343,24432], -[0,24433,24434,24435,34352], -[0,1362,3171,705], -[0,1149,1512,1525,2899,4037,4193], -[0,4500,5592,4030,3101,22115,3424], -[1,2343,24438], -"is-extglob", -[0,24439,24442,24443,2443], -[0,705,1696], -"extglob", -"globstar", -[0,3297,2899,1177], -[0,4500,22115,3424], -[1,2343,24445], -[0,24447,0,2514,2537], -[2,14503,7204], -[0,3183,36215,1437], -[1,2343,24452], -"globally", -[3,9509,9], -"locally", -[0,24453,24454,24455,34352], -[0,31081], -[0,13789,1011,1177,28753,1680,2024,3401,4481,91,4523,1906], -[0,91,4799,553,6435,614,6731,3061,1698,1781,7265], -"vanilla", -[1,2343,24458], -[0,24459,16075,24460,2537], -[0,1562,36226,3173], -[0,1563,998,36228], -[1,2343,24464], -"is-object", -"kind", -[0,24465,24466,24467,2537], -[0,24648,6327,3105,3181,4745], -[0,442,8144,7639,6503,4874,1414,36007,668,1177,2899,3758,4135,4494,91,4523], -[0,91,1745,1179], -[1,2343,24471], -" name", -[2,24374,24469], -[0,24472,24473,24474,2443], -[0,36241], -[0,4874,4508,91], -[0,36244,36245,29,36246,36247,36248,91,1745], -[1,2343,24476], -[0,0,23733,24477,2487], -[0,1666,6901,33777,91,1745,36248,4508], -[1,2343,24479], -[0,0,0,24480,2537], -[0,5592,1745,1783,4508,91,36245], -[1,2343,24482], -[0,24483,24484,24485,2537], -[0,3127,91], -[0,8147,6503,4874,6520,1596,2759,2899,3202,4449], -[0,6869,1745,36263,5284], -"is-ins", -"ide-container", -[2,24486,24487], -[1,2343,24490], -[0,24492,24495,24496,2537], -"esmock", -[0,1525,4734,3275,15221,36270,1149,1512,3220,3188,7074,36272], -"wsl", -"subsystem", -[0,1429], -[0,36275,1783,36276,36278,26916,20672,1283,15253,1179], -[1,2343,24498], -[0,5914,24499,2514,2523], -[0,549,4856,9417,6503,36284,4874,1429,1431,1596,2899,36285,3232,36289,1894,36290,4232,4474,4490,31194], -[1,2343,24501], -[0,24502,24503,2514,2399], -[0,2070,3348,1112,1673,1676,4484,4747,1398,1680,1759,16544,1130,24697,3951,36295], -[0,1414,3519,1429,2323,2675,2742,2899,3243,3259,1552,4193,1177,3260,4039,7800,2203,3230,4246,4474,25633,1894,36308,442,2507,20085,4196,91,4856,4874,2494,2990,5245,6503,6513,4892,2496,36307,25629,2510,2529,25634,27585,19441,1431,6512,8536,18710,4523,36303,4232,28290,1942,28033,36305,9417,13418], -"kindof", -[1,2343,24506], -[0,0,24507,24508,2523], -[0,1414,3242,1429,1687,2070,2931,2899,4484,4707,36007,1177,20380,668,2203,1457,3183,24156,442,3527,3541,91,4856,17577,6503,26584,2858,692,7892,2075,36315,36316,4523,36318,4232,1964,36323,1012,13418,27909,12123,5551,36326,36331], -[0,6869,7296,4643,1351,5284], -[2,13283,2899], -[1,2343,24513], -"spaces-cli", -[2,671,24511], -[0,24514,7590,24515,2537], -[0,1012,1011,1009,12145], -[0,6892,5286,5284,91,57,5341,1177,6741,6939], -[1,2343,24517], -[0,24518,24522,24526,2399], -[0,36342,18420], -"code c", -[2,24519,2885], -"JS code coverage", -[0,10949,6503,4874,36345,1567,36348,3188,2899,3696,4487,91,4526], -"@metcoder95/https-pem", -"verage", -"JS coverage", -[0,6869], -[1,2343,24528], -[0,24529,24530,24531,2487], -[0,36356,36358,1759,16837,695,3025,3561,3616,16840,3638,16841,25162,2278,4228,4480,4333], -[0,36361,5087,19799,7889,4874,36362,36364,19802,1009,1011,1367,1177,1895,2675,1192,33412,2990,36366,3640,3672,1894,36367,4468,91], -[0,1623,4329,2278,695,4333,5260,1932,3561,91], -[1,2343,24533], -[0,24534,24535,24538,4139], -[0,23433,1362,1437,1486,1513,35446,25879,32086,3077,3183,36374,36375,4562,4720,1695], -[0,1705,3297,4039,4474,4487,36377,91], -"js-calendar", -"v-click-outside-x", -[0,4532,91,23076,6432,3383,10057,5490], -[2,1165,2091], -"5-property-mutators", -[2,24229,24540], -[2,1536,4408], -"vue-h", -"tml-loader", -[2,24543,24544], -[1,2343,24547], -[0,24548,24549,24550,4139], -[0,1525,4227], -[0,1082,2899,4135], -[0,2280,4533,4535,3178,2632,5284,5286,1925,5194,6598,7075,6778,7056,7192,1149,7003], -[1,2343,24552], -[0,0,24553,24554,2443], -[0,1082,4135], -[0,200,15215,23634,24280,5286,3595,1925,5284,676,36390,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,23637,2280], -[1,2343,24556], -[0,24557,24558,24565,34352], -[0,9448,2102,2755,4121,4143,4227,4535,4695,24777], -[0,48,53,87,192,5467,19401,16405,1193,19403,1610,1700,1701,1177,1895,1938,2675,1192,2794,2990,3150,3400,1894,4257,4072,2924], -"character-", -[2,24559,57], -"inople", -[2,14180,24561], -[3,10755,13], -[2,8535,591], -[0,2280,4535,4533,2924,1464], -"void-elements", -[1,2343,24572], -[3,13889,13], -"ddleware", -[2,24568,24569], -"code-mirror", -[0,24573,24578,24579,2523], -[0,36402], -"github-basic", -"highlight-", -[2,24575,1505], -"inconsolata", -[0,2899,1177,1362,2759,1954,1938,1958,1903,1970], -[0,3778,1179,7818,6953], -"-code-mirror", -[2,2437,24580], -"jade-", -"highlighter", -[2,24582,24583], -[3,10755,14], -"cdata", -[2,24585,24586], -[3,24587,15], -[1,2343,24597], -"offee-script", -[2,24588,24590], -[2,24585,695], -[2,24585,3127], -[2,24585,4333], -"verbatim", -[2,24585,24595], -[0,24603,0,24604,2537], -"less-file", -"lsr", -[2,23151,705], -"stop", -"twbs", -[0,97,4880,4883,36409,36411,36413,36415,36416,36420,36422,36423,1015,36424,36425,36427,36429,36430,36432,36433,36435,36437,36439,36442,36444,36445,36447,36448,36451,36453,36454,1018,1021,36455,36457,36458,36459,36461,36463,36466,36467,12265,1023,36468,36471,36473,36476,36477,36478,36480,36483,36485,36487,36489,36490,36491,36492,36493,36495,36497,36499,36502,36503,36504,36506,36509], -[0,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], -[1,2343,24606], -[0,24608,24609,8039,2399], -"filelist", -[0,2070,2685,1209,4135,4727], -[0,2272,3105,2899,3381,4170], -"rake", -[1,2343,24612], -[0,0,24613,2514,2399], -[0,8862,811,816,10817,4874,1317,1894,4042,4484,91,1984], -[1,2343,24615], -[0,0,24616,24618,2523], -[0,11976,107,34715,1437,12607,668,2205,2553,3105,36526,3400,36528,3714,7917,1984], -"video-worker", -[0,1936,1283,2574], -[3,1198,14], -"nnotate-pure-calls", -[2,24619,24620], -[3,19449,20], -"nk", -[2,24622,24623], -[2,16819,2143], -"-nk", -[2,7628,24626], -[1,2343,24629], -[0,24630,24632,2514,2523], -[0,8862,811,8850,816,6373,10895,36534,1556,16230,668,28795,36538,2807,3090,36536,3189,3510,15450,3714,4042,4057,15451,27921,36537], -"parallax", -[0,5757,4874,7677,19336,1446,1177,1905,1894,91,1984], -"youtube", -"vimeo", -[1,2343,24636], -[0,0,24637,24638,2537], -[0,3421,2070,1734,2675,2297,2907,1177,4042,4072,1597,1596,2908,17232,5561,36544,1938,2915], -[0,614,6564,36,5576,1388], -[1,2343,24640], -[0,24641,24642,24643,2537], -[0,4243,23462], -[0,1389,36552,1177,2759,2899,3202,4068,31136,4545], -[0,4545,1871], -[1,2343,24646], -"css-url-embed", -[0,0,24647,24649,2523], -[0,20870,36559,24523,826,4874,1079,28400,1414,1610,36560,668,1177,2064,2675,1192,31808,29197,3313,2658,4481,91,4729], -"@gerrit0/mini-shiki", -[0,1612,27,2671,1862,705,7085,7289,4731,7102], -[1,2343,24654], -[2,2767,12608], -[2,2767,8751], -"walkdir", -[0,24655,24656,24657,2537], -[0,9315,31265,23289,2051,2745,36568,12449], -[0,36571,12396,9363,4874,1414,1894,3985,3998,4481,4505,91,1906], -[0,6892,7234,1563,25154,1644,3729,3958,3984,36573,4141,1646,5341,353,1633,4549], -[1,2343,24659], -[0,24660,8134,24661,2537], -[0,36578], -[0,17023,3778,6988,16114,8623,36580,4552,5401,11512], -[1,2343,24663], -[0,24664,24667,24669,2523], -[0,9315,18072,12447], -"cssfontparser", -"moo-color", -[0,9363,4874,1414,3137,27008,27010,1894,3985,3998,4481,4505,91,1906], -[2,1199,15525], -[0,23266,36587,614,6435,3984,36573,3958,26564,2587,36588,36589,3273,1351,1783,1936,6523,1633,6892,202,12414,4647], -[1,2343,24671], -[0,0,16529,24672,2523], -[0,35670,27280,18132,4558,3403,4571,7204,4569,4166,16159], -[1,2343,24674], -[0,24675,0,24676,4139], -[0,17180,2155,36602,36604,20508,3923], -[0,2056,4560,15008,36606,12666,3101,7682], -[1,2343,24678], -[0,24679,24680,24681,2487], -[0,36612,1371,1437,36611,4135,20044,1543,16184,2960,2744], -[0,1906,1166,24491,4294,1470,36615], -[0,3378,3076,29096,22005,3329,4354,16790,200,1237,3383,15525], -[1,2343,24683], -[0,0,0,24684,2537], -[0,12831,1002,36621,36622,36623,36626,36628,36630,36632,36637,36639,36641,36642,36643,36646,36649,36650,36653], -[1,2343,24686], -[0,24687,24691,24692,2399], -[0,3763,3757], -"@jest/e", -"nvironment", -[2,24688,24689], -[0,1158,3421,4770,1082,2899,1177,13614], -[0,7119,1002,25658], -"fake-timers", -[2,552,24693], -[1,2343,24696], -[0,0,24698,24699,2523], -"sql-highlight", -[0,1566,2899,4170], -[0,1002,4565], -[1,2343,24701], -[0,24702,24703,13533,2399], -[0,3008,3173,4121], -[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,2092,2675,1192,2990,3144,21016,3400,1894,4257,2924], -[1,2343,24705], -[0,24706,24707,24708,2523], -[0,15560,23783], -[0,1148,1389,1414,2899,3697,20010,20012,4535], -[0,7134,57,12831,1002,1644,3766,1871,3767,1646], -[1,2343,24710], -[0,24711,24714,24716,34352], -[0,2139,36681,3173,3763,4507,4548,36680], -"-escapes", -[2,11948,24712], -[0,5517,30494,36688,20224,36694,36687,7746,4874,36685,11305,36691,7752,29891,23247,7677,1410,1610,2685,33479,30889,2658,7798,28531,4393,4483,36684,91,1984], -"matchers", -[0,4568,27,36696,7085,7289,705,2671,4548,1612], -"extended", -[1,2343,24720], -[2,38074,1177], -[0,24721,24722,24735,2537], -[0,25493], -[0,3505], -"@pmmmwh/react-refresh-webpack-plugin", -"cape-html", -[2,5600,24724], -"ump.js", -[2,5086,24726], -"ndomcolor", -[2,12178,24728], -"eslint-w", -[2,2546,4406], -[2,24730,24731], -"jump.js", -"randomcolor", -[0,4569,4571,35668,25493,4014,7204,6857,3403,1263,6437,6639,6436,36706], -[1,2343,24740], -"recharts", -[2,30495,674], -"web-vitals", -[0,24741,24742,24743,2487], -[0,3084,4449], -[0,1148,2899,3697,705,4135,36712], -[0,4575,1388,36715,888,1644,57,36716,36717,36718,36719,4569,36720,4576,15525], -[1,2343,24745], -[0,0,24747,24748,2537], -"libxmljs2", -[0,1596,2759,14529,3774], -[0,8426,9254,3656,4577], -[1,2343,24750], -[0,24751,24752,24755,2523], -[0,2713,17395,25700,36732,17416], -[0,1090,1593,36736,3435,3438,4092,4100,4389], -"plugnplay", -"pnp", -[0,614], -[1,2343,24757], -[0,0,9530,24755,4139], -[1,2343,24760], -[2,814,13987], -[0,0,24761,24763,2537], -[0,68,192,5467,442,6375,1525,1177,1895,1955,2203,2675,1192,2990,29197,3400,1894,23901,27302,4257,91,4523], -"@vercel/h3", -[0,3348,6926,6668,36760], -[1,2343,24765], -[0,24766,24767,24768,2399], -[0,20573,1687,2929,11481], -[0,36767,1999,29283,34078], -[0,1145,36769,8791,8745,1973], -[1,2343,24770], -[0,0,24771,24772,2523], -[0,4384,2272], -[0,1002,7020,4354,16790,13017], -[1,2343,24774], -[0,24775,24776,24784,2523], -[0,17058,36781,7076,25814], -[0,17584,1429,15990,1527,1652,2675,2759,3188,2899,21477,4039,4131,4193], -"worker-farm", -"leak-detector", -[2,2769,24778], -[3,20371,12], -[2,24780,14922], -"@aneuhold/be-ts-lib", -"@vercel/koa", -[0,36785,1528,6458,3358,16094,13729], -"@vercel/hono", -"@jimp/diff", -"@jimp/", -[2,24787,9711], -"@jimp/types", -[1,2343,24803], -"@jimp/t", -"est-utils", -[2,24791,24792], -"@adonisjs/ace", -[2,12327,10809], -[3,475,10], -[2,24801,8915], -"manipulation", -[2,12327,24798], -"resize", -[3,24794,11], -[2,24796,24815], -[0,0,24804,24814,4139], -[0,9516,9515], -[3,1603,9], -[2,24805,3751], -[2,10880,1283], -[3,5617,14], -"eter", -"-decorator", -[2,24809,24810], -[2,11958,24811], -[2,24808,24812], -[0,3378,3383,1460,7020], -"bodyparser", -[2,24825,686], -[1,2343,24820], -[2,29401,166], -[2,13055,25721], -[0,0,24824,24834,2537], -" editor", -[2,6105,24821], -"wysiwyg ", -[0,48,53,87,94,1178,1198,1177,1881,1938,2899,3400,3421,4039,4042,4045,28038,4535], -[3,475,12], -"html editor", -[2,24823,24826], -[2,24796,7141], -"rich editor", -[2,6106,24821], -"editable", -[2,1563,24831], -"vanillajs", -[0,1155,7020,2649,20215,2574,36796,36798,1145], -[1,2343,24837], -"@adonisjs/env", -[0,24838,24839,24840,2443], -[0,36805,36809,36806], -[0,4874,11016,13061,16480,36812,11018,1639,36814,2832,91,1983,1984,36815,188,4639,36820,36821,36816,36817], -[0,181,188,8588,5131,4967,4627,4963], -[2,24846,24847], -"wysisyg", -"rte", -[1,2343,24845], -[0,0,24851,24865,2523], -[3,24828,11], -"vents", -"nanotimer", -"temporal", -[3,1387,9], -[0,2899,1177,2759,1317,4342,1311,1954,1938,1958,1903,1948,1970], -"erialport", -[2,24850,24852], -"firmata", -[2,24796,24858], -"beautifier", -[2,2294,24856], -"fold", -"0A02", -"0A21", -"16x2 LCD", -"20x4 LCD", -"2D120X", -"2Y0A02", -[0,27,10376,4590], -[1,2343,24870], -"2Y0A21", -"74HC595", -"ADXL335", -[0,24901,24903,2514,2537], -[2,24796,3428], -"ADXL345", -"ALS-PT19", -"ALSPT19", -"ANALOG", -"arduino", -"Ardumoto", -"AT42QT1070", -"BLINKM", -"BMP180", -"Continuous Rotation", -"DEFAULT", -"Diffused LED", -"DS18B20", -"Edison Arduino Block", -"Edison ", -"GPIO Block", -[2,24886,24887], -"I2C Block", -[2,24886,24889], -"PWM Block", -[2,24886,24891], -"edison", -"ESPLORA", -"EV3", -"galileo-io", -"galileo", -"GP2D120XJ00F", -"GP2Y0A02YK0F", -[2,24925,24926], -[0,4593], -"GP2Y0A21YK", -[0,4384,2276], -"GP2Y0A41SK0F", -"GY-521", -"GY521", -"HD44780", -"High Torque", -"Hitec HS-35HD", -"Hitec HS-", -[1,2343,24939], -"Hitec HS-422", -[3,24912,11], -"5BB", -[2,24913,24914], -"625MG", -[2,24910,24916], -"Hitec HS-6", -"46WP", -[2,24918,24919], -"755HB", -[2,24910,24921], -"805BB", -[2,24910,24923], -[3,24871,11], -"ealth", -"Hitec HS-85MG", -"HMC5883L", -"HMC6352", -"Hobby Motor", -"HRLV-MaxSonar-EZ0", -"HT16K33", -"HTU21D", -"i2c", -"Infrared Proximity Sensor", -"Infrared ", -"Sensor", -[2,24936,24937], -[0,24941,24957,2514,2487], -"intel edison", -[0,12105,668,1457,2139,36838,24762,36840,24783,30162,24785,36841,36842,36843,24818,28111,29471,36845,24738,28441,36848,30929,36850,36852,31275,36855,36859], -"intel galileo", -"ISL29125", -"JHD1313M1", -"Joystick", -"LCD1602", -"LCD2004", -"LCM1602", -"LED", -"LIDAR-Lite v2", -"Ludus Protoshield Wireless", -[3,24951,17], -"LV-MaxSonar-EZ0", -[3,24953,14], -[2,24954,1278], -"MCP23008", -[0,3242,1091,1138,1758,1999,2714,3467,3445,1983,1413,1437,1676,2020,3144,2658,17913,25671,4707,1438,1759,2022,2754,4039,4135,4238,4391,1984,1458,1503,2026,2105,3203,4474,1668,2151,2182,3761,3784,33145,842,24156,11305,36861,26453,29133,3181,3547,4459,29105,31142,1109,33200,1483,2794,3173,3310,4294,91,5087,4874,1154,1869,36863,20921,36864,36867,5364,5245,27066,26584,1107,1151,36868,36869,36871,5254,24358,35563,13834,5071,31008,36872,6541,36873,36874,25892,36875,8997,4864,28137,2069,36877,3386,16831,36878,34118,36879,9129,12461,27959,36880,7746,5542,30493,33761,36882,31071,23843,24725,36885,11907,36887,36889,15887,36890,36892,5328,36895,36897,36899,29125,36901,36906,36909,36911,36915,36917,36918,36920,36922], -[2,24925,9257], -"MCP23017", -"MCP9808", -"Metal Gear", -"MJKDZ", -"MMA7361", -[2,24796,2942], -[1,2343,24971], -"MMA7660", -"MMA8462Q", -"MPL115A2", -"MPL3115A2", -"MPR121", -[0,24982,0,24990,2537], -"MPR121QR2", -"MPU-6050", -"MPU6050", -"MUXSHIELD2", -"NXT", -"OA41SK", -"PARALLEL", -"PCA9685", -"pcduino", -"PCF8574", -[0,36927,1147,34631], -"PCF8574A", -[2,24796,32276], -"PCF8574AT", -"PCF8574T", -"@paralleldrive/cuid2", -"PCF8575", -"@poppinss/colors", -[0,1851,2656,15204,30960,31482,5317], -"PCF8591", -"photon", -"PIR Motion Sensor", -"QTOUCH", -"raspberry pi", -"raspberry", -"raspberrypi", -[2,24999,25005], -"@poppinss/", -"raspi-io", -"RedBoard", -"RGB LED", -"robotics", -"rpi", -"dumper", -"Servo", -"Shift Register 8-Bit SN74HC595", -[3,25007,14], -"SI7020", -"spark", -[2,24999,25017], -"spark core", -[1,2343,25035], -"spark-io", -"SparkFun Essential Sensor Kit", -"SparkFun ", -"macroable", -"Sensor Kit", -[2,25016,25018], -"Speed controller", -"Temperature", -"tessel 2", -"Thumb Joystick", -"TINKERKIT", -"TMP36", -"TSL2561", -"Ultrasonic Range Finder", -"usb", -"VKEY", -"Weather Shield Arduino", -[3,25030,15], -"Photon", -[2,25031,25032], -[2,24999,594], -[0,0,25036,2514,2537], -[0,2899,2759,4342], -[1,2343,25041], -"@hapi/formula", -"@hapi/pinpoint", -"@hapi/tlds", -[0,0,25043,25044,2537], -[2,6473,3020], -[0,53,87,192,5467,5583,1208,1429,1443,1503,1597,16656,1637,1701,1177,1881,1938,2675,2297,2878,2881,6385,2900,2904,2910,2990,2899,3400,3561,3566,16658,3613,3672,16578,3758,4042,4320,4323,4328,4535], -[0,158,11328,4596,36941,1936,1623,5284,6400,5122], -[1,2343,25046], -[0,25048,25050,25051,2523], -"youch", -[0,36951,1496,4002,36950], -"youch-terminal", -[0,3421,2899,1177,2022,35299,3923,1889,1954], -[0,4607,17462,2090,7204,4262,3403], -[1,2343,25056], -[2,24801,25055], -"recoil", -"ssembler", -[0,25057,25061,25062,2537], -[0,1329,4431], -[2,25059,25082], -"@adonis", -"gzip-js", -[0,4389,4603], -[0,4597,17461,6270,1398,3101], -"commitplease", -[1,2343,25065], -[0,25066,25068,25078,2443], -[0,36965,21539,2215,2685,36966,36967,3369,36968,36971,35299,36972,36975,4597,36976], -"grunt-git", -[0,1177,1889,2022,2899,3421,3923,4039,4193], -"-authors", -[2,25067,25069], -"-webkit", -[2,3541,25071], -"mpare-size", -[2,21927,25073], -[3,10727,15], -[2,25075,3766], -"karma-j", -[0,2323,36981,4597,2090,6771,2150,7046], -[2,26505,6579], -[1,2343,25081], -[0,25084,25087,25093,34352], -[3,835,16,7], -[2,25085,25086], -[0,4597,4431], -[3,475,8], -[3,24165,17,8], -[0,2494,4389,4600], -"grunt-html", -"owercopy", -[2,2237,25089], -"-local", -[2,14336,25091], -[0,4597,2323,17461,24456,3101,1871,2585,128], -"prototyping", -[1,2343,25096], -[0,9652,0,25097,2537], -[0,4597,4070,22850,2323], -[2,24796,2190], -"@japa/assert", -[1,2343,25101], -[0,25102,25105,25107,2523], -[0,36996,1851,36997,2202,24462,19094,36998,37000], -"@japa/expect-type", -"@japa/file-system", -[0,1389,2759,21526,3459,37002,30164,4387,4389,4770], -"config-chain", -[0,4607,965,23361,37004,1687,7163,1388], -"@japa/runner", -"code-quality", -"@japa/snapshot", -[1,2343,25112], -[0,25113,25116,25117,2487], -[0,20378,4042,668,3561,3530,27921], -[2,25115,15244], -[3,7895,14], -[0,4729,1415,27438,1594,984,3189,30023,3445,2278,4200,3510,1759,11480,3266,3493,4072,1544,28119,1457,28865,4955,37012,34928,3527,1615,1869,31308,16860,3090,58,9743,1763,2007,21688,37013,3613,37014,37015,24759,30787,37017,24725,1573,10895,3616,29444,8862,31292,28465,4060,811,28572,18584,5180,28575,16808], -[0,4967,5130,11498,5331,37019,1983], -[2,25119,25121], -[3,10844,11], -[1,2343,25123], -"-console", -"argon2", -[0,25124,25132,25133,2537], -[0,25375,2071,2151,37024,26479], -"knifecycle", -"yerror", -"edge.js", -"@mer", -"maid-js/mermaid-cli", -[2,25128,25129], -"mermaid", -[0,6494,4864,4874,2026,4493,91,1983], -[0,1983,5592,37028,37029,37030,37032,2026,37034,36,37036,7433,37031,37038,1932,8172,4083,5995,37039,37040], -[1,2343,25136], -"architecture", -[0,25139,25149,25150,2537], -[2,25138,25151], -"ts-node-", -[0,188,1983,9348,8114,37052,7797,36805,10984,6371,37047,37046,24097,37049,7639,11016,37051,9312,25447], -"-to-glob", -[2,16774,25140], -"@jscpd/html-reporter", -"@jscpd/", -[2,25143,139], -"-sarif-reporter", -[2,2824,25145], -"@jscpd/core", -[2,25143,207], -[0,3467,4200,1676,2020,3478,23802,3266,4039,4042,4135,1984,668,3537,3742,7799,19571,13151,28519,1457,2151,2182,3183,1894,3757,3084,3170,3527,27921,91,4874,1615,2226,2990,3105,5245,8646,30795,8146,7812,3509,4864,7892,3067,37067,9245,8778,5946,3114,4057,37017,21122,3107,8850,34971,37061,37065,8862,37074,3112,15277,37062,6373,22823,811,3668,37059,7641,37070,37056,1567,816,37058,37069,37071], -[0,1983,188,4614], -"maintained", -[1,2343,25153], -[0,25166,25171,25173,4139], -"cst", -"adonisjs", -"jscs-jsdoc", -"jscs-", -"wikimedia", -[2,10832,25158], -[2,25157,25159], -"rved-words", -[2,4020,25161], -"to-double-quotes", -"to-single-quotes", -"vow-fs", -[0,30023,1983,3510,15452,26379,3530,4441,27921,37080,2024,37082,3090,37084,36874,26380,37085,37014,37087,37092,37093], -"7.0.0", -[2,5857,25167], -[2,8649,22785], -"unit-coverage", -[0,4729,1415,3171,37095,2832,26385,3742,24324,2559,37096,1084,4874,13204,1006,37013,7812,37097,20374,37100,13471,826,8806,5180,6515,8809], -"style guide", -[0,1983,1984,1973,1192], -[1,2343,25175], -[0,25176,25180,25182,2523], -[0,1437,1209,2720,3183,4726,2708,3077,4294,1257,37108], -"@jsdoc/salty", -"catharsis", -[2,20398,57], -[0,1906,2323,1172,2899,3220,4170,37110,705,1362,1175,2338,2384,37115,37117,2357,37113,1267], -"requizzle", -[0,5592,200,32276,4166,8786,5130,1896,13527,1523,1525,35539,3741,2720], -[2,25184,25186], -"@aneuhold/", -[1,2343,25187], -"core-ts-api-lib", -[0,25196,0,25197,2537], -"current", -[2,1469,4479], -[2,25188,25189], -"object-to-", -"spawn-args", -[2,25191,25192], -[2,25195,1095], -[3,25183,18], -[0,1687,37123,2070], -[0,5472,4386,1973,37125], -[1,2343,25199], -[0,25201,25206,25207,2487], -"ool", -[0,4449,2070,3171,3917,22990,1437,2975,4753,37130,4135,4734,1448,4566,1525,3181,3105,37131,2613,37132,36323], -"master", -"config-master", -[2,25184,25205], -"main-scripts", -[0,2675,2899,4474,1894,6520,91,4865,27098,4874,15743,37139,3400,6503,20290,3720,5254,28189,37135,192,37137,9129,4131,7639,4232,12458,5467], -[0,29641,4617,7188], -[1,2343,25210], -"jsr", -[0,0,2667,2514,2537], -"data-urls", -"decimal.js", -"saxes", -[1,2343,25218], -"symbol-tree", -"w3c-xmlserializer", -"whatwg-url", -[0,25222,25223,2514,2537], -[2,25261,25262], -"sugar-free", -[2,3192,25220], -[0,1104,1496,2012,2061,2070,2685,2741,4227,91,4597,4734,4747], -[0,22909,37149,22821,4865,37152,9129,6503,4874,28198,22900,18438,4891,28189,4892,1009,1011,1177,2899,4039], -"webidl2js", -[1,2343,25226], -[0,0,25227,2514,34352], -[0,2899,3188,2924,91,4874,4677,6503,37157,1584,603], -[2,25239,25240], -[1,2343,25234], -"browser-re", -[2,25230,5460], -"cssom", -"nwmatcher", -[0,25236,0,25241,2487], -"selenium-s", -[0,36805,37163,23423,17494,5337], -"tandalone", -[2,25235,25237], -[3,8647,12], -"li", -[0,188], -[1,2343,25246], -"13.0.0", -[2,5857,25243], -"@trapezedev/project", -[0,0,25247,25248,2523], -[0,53,61,71,4851,87,4856,6503,4874,1011,1191,1195,18571,1429,1628,1177,37170,2899,3951,4039,4042,4045,4069,4421,4469,91,4533,188,4634,4645,19469,4646,2924,4677], -[0,188,1227,1172,91], -[0,25260,25258,2514,34352], -[2,5051,25257], -"results-interpreter", -"5.2.0", -[2,5857,25252], -"unicode-1", -"1.0.0", -[2,25254,25255], -"lice-ansi", -[0,53,68,5611,37178,15273,19181,442,5245,1006,4874,5254,1009,1011,7677,23203,1177,19492,1945,1953,19623,1955,1982,17310,1894,4474,1531,91,1983,1984], -"splash screen", -[0,1676,1994,1996,2000,19186,4135], -[3,225,10], -"5/blanditiis-numquam-expedita-neque", -[1,2343,25301], -"stylish", -[1,2343,25267], -[2,25303,25304], -[0,0,25268,25270,2523], -[0,1397,1192,188], -"deeks", -[0,188,6609,2999], -[1,2343,25273], -"doc-path", -[0,25274,25275,25278,2487], -[0,37192,37049,37190], -[0,24226], -"json2csv", -"csv2json", -[0,2679,23932,37202,1932,188,6284], -"csv-2-json", -[3,25219,12], -[1,2343,25282], -[0,25283,25286,2514,2537], -[0,1437,2570,33215], -[2,25280,25285,25288], -[3,780,9], -[0,53,87,37211,1006,32109,5087,13204,37213,37214,1195,37215,1567,1628,2092,2651,1192,2832,2990,37217,3144,3177,16581,11801,3618,1894,3754,37220,4227,4307,4333,4334,4337,4468,4469,91,4027,188,4633,2924,4677,4681,4689,19235], -[1,2343,25289], -"aut-officiis-quae", -[0,0,25290,25291,2537], -[0,5087,4874,1192,3951,4042,4468,91,188,4629], -[0,188,91,4636], -"milliparsec", -[1,2343,25295], -"sort-on", -[0,25299,25300,2514,2523], -"@typ", -"icode/eslint-config", -[2,25296,25297], -[0,5216,28126,37049,30206,1457,2856,37096,3090,3189,30230,3510,3530,15451,27921,29161,30959,4745], -[0,104,31940,8648,811,816,6373,10615,33179,37232,20374,29891,11016,17494,34157,5337,11018,25092,13393,1549,1759,37235,17850,2559,3294,37236,32977,4039,4042,4076,1531,4493,1983,188], -[0,25305,25306,2514,34352], -[1,2343,25412], -[3,25284,13], -"oloremque-voluptas-facere-nemo", -[0,2570,3008], -[0,1175,1193,1240,1567,1192], -[2,25280,25391], -[1,2343,25309], -[0,25310,0,25311,2537], -[0,37247,2591], -[0,188,4643], -"0.0.0", -[2,25254,25312], -[1,2343,25315], -[0,25316,25317,2514,4139], -[0,37049], -[0,188,1192,1437,2020,21665,1177,4042,4135,2026,2924,1836,2151,1610,3758,4614,1193,1628,91,4634,53,4874,1195,37253,4640,87,17494,3957,15134,4073,4261,6373,37170,4679,4684,811,1567,816], -[1,2343,25319], -[0,25320,0,25321,2523], -[0,37258], -[0,614,888,37260,2150,4647,37261], -[1,2343,25323], -[0,25324,25325,2514,2537], -[0,9129,18704,20960,3181], -[0,5087,4874,2070,1192,3144,4039,4468,91], -[1,2343,25327], -[0,16409,25329,25330,2537], -[2,2842,24077], -[0,192,5467,1389,1527,1652,2675,1192,4535], -[0,4649,3497,89,2731], -[1,2343,25332], -[0,25334,0,25335,4139], -"meriyah", -[0,37277,3183], -[0,614,6435,2150,1586], -"jsonparse", -[1,2343,25338], -[0,25339,25340,25341,2487], -[0,15642,1389,1457,15016,37284,4431,1695], -[0,1377,3188,4237,4389,4535,37286], -[0,1389,25429,2282,6374,6147,1388], -[1,2343,25348], -"jws", -"lodash.i", -"ncludes", -[2,25344,25345], -[2,3045,19366], -[0,25354,12529,25356,2537], -"integer", -[2,3045,25349], -"lodash.isn", -"umber", -[2,25351,25352], -[0,33304,26786,1149,37294,33313,37297,33328,33329,37298,37300], -"lodash.once", -[0,33359,3469,3259,14873,1552,3230,37303,4651,4104,33365], -[1,2343,25358], -[0,25359,25360,25367,4139], -[0,1137,1149,1209,3188,3760,705,37308], -[0,37313,1429,1431,1512,18192,2026,2061,2323,37315,2384,2419,2463,2590,2659,34317,2759,2899,37316,3297,37317,4089,37320,37324,37325,4547,3348,4747], -[2,25362,25364], -[3,32971,13], -"@jspm/generator", -"phases", -"fu/eslint-config", -[2,13179,25365], -[0,5472,13428,11132,13841,28522], -[1,2343,25369], -[0,25371,25373,25374,2537], -"webdav", -[0,37331,37332,37334,37335,37336,37337,37339,37342,37344,37345,37347,37350,37352,37355,37358,37361,37363], -"states", -[0,37365,1192,1177,37366,9422,4468,1894,1317,91,5087,2787,5366,37368,1938,19956,1895,37371,1011,37374,1009], -[0,37376,17626,8172], -"dotenv-local", -[2,28322,364], -"lie", -[1,2343,25381], -"jszip-utils", -[3,21510,13], -[0,25384,11736,25385,4139], -"versionify", -[2,25380,25382], -[0,37390,37393,1327,1394,37394,37397,37398,37401,37404,37408,4747], -[0,4653,4990,200,37410,9420], -"deflate", -[1,2343,25389], -"inflate", -[0,25390,25392,2514,2443], -[0,19611,1006,8818,37424,37427,37429,1082,25361,1393,37433,1835,37014,1994,2018,20575,2215,9506,20465,3173,23175,4121,4388,4409,33215,4695], -"quisquam-quod-ab-aut", -[0,53,90,107,34765,25376,20577,8780,5087,7746,28919,4874,25422,37436,1195,37437,37438,1509,1593,1622,1628,1668,1856,4913,1177,20281,2092,2135,2203,37439,2629,2675,2759,1192,21124,2774,2777,2784,2794,2843,2856,695,2969,2990,1209,3021,3144,25333,3177,21016,640,3421,3446,20085,1894,3717,3754,23738,3786,89,3824,30570,3978,9340,3988,3992,3999,4039,12936,4183,4294,4307,4072,4426,4441,4452,4469,91,4549,4027,37440,37441,4677,37442,4746], -[1,2343,25394], -[0,25396,25397,25398,2399], -"@diahkomalasarinpm/odio-facilis-beatae", -[0,4729,4200,1082,3456,1675,1525,1084,3527,2628,1874,37449], -[0,1700,1429,2323,1192,3190,1177,2205,3698,1593,1637,3561,2924,2098,3758,1461,1628,2338,3191,4027,53,1436,4677,1165,1178,1195,3060,4307,97,3057,37457,3618,22651,87,37453,4681,90,1210,1959,37458,4409,37451,37454,83,71,5757], -[0,2924,6374,4674,5260,4202,24095,9816,33126,37460,16660], -[1,2343,25400], -[0,25401,25402,25405,2399], -[0,1842,3932,1511,1525,2727,1615,2704,4689,37466,13077,29067,37449,37468], -[0,37472], -[3,1754,13], -"qjobs", -[0,2924,200,4989,1237,6996,5122], -"unit-reporter", -[2,25077,25406], -"cript-", -[2,25408,15473], -[2,2916,25409], -"timer-shim", -[0,25414,25417,25418,34352], -[1,2343,25419], -[0,3144,1511,3173,3440,3781,4121], -"spectacular", -"execution", -[0,2934,2611,1192,2020,2675,1622,1177,38,1544,1701,2026,2078,2203,2924,1894,1610,1699,4342,48,442,470,1193,91,53,4874,2092,2990,3400,2099,11485,6494,192,1953,27928,37480,4257,87,23531,7746,37482,1939,1942,1938,20281,1982,1895,1955,19344,5467], -[0,2924,2663,5001], -[0,25431,25433,2514,34352], -[1,2343,25567], -"os-shim", -[2,25423,25430], -"@types/x", -"karma-p", -"karma-plugin", -"reprocessor", -[2,25424,25426], -[3,14927,12], -[2,25428,25200], -"xhashjs", -[0,4729,3445,32876,34228,2026,33507,1457,9241,1511,11993,7798,1536,2215,4150,4121,37490,37491,37493,6494,37494,37499,37500,37503,2664,4679,1549,33189,37505], -[2,25280,25435], -[0,2611,1192,695,1082,2020,2675,37507,3144,1622,1177,3127,4039,1544,1593,2924,1894,3758,4342,48,1193,1628,2659,91,53,4874,2969,2990,3400,4677,1195,4307,4224,18052,4689,97,192,1953,3923,9252,27928,4257,87,23531,22102,4523,7806,8780,1939,1942,2651,12837,68,37508,37513,1938,20281,1895,2780,83,5467,13052], -[1,2343,25439], -"suscipit-assumenda-a-assumenda", -[2,2877,15473], -"browser-stack", -[2,25280,25442], -[0,25440,25441,25444,2523], -[0,4294,2626,37503], -[0,3421,2899,4193,1177,2026,2924,1894,4342,1955,4679], -"vitae-sequi-voluptas-a", -[2,25445,25446], -[0,2924,11498,6609,1237,37523,37525,2663,2026], -[3,25438,13], -"oluptatibus-vero-magni-rerum", -[2,29825,29840], -[1,2343,25449], -[0,25450,25451,2514,2523], -[0,4388,4695], -[0,841,4874,4891,37531,7858,1584,1700,1177,37534,1915,2092,2675,2990,3150,3697,1894,37535,89,4307,4484,91,1984,2924,4689], -[1,2343,25459], -"ibrik", -"ffee-preprocessor", -[2,23574,25454], -"karma-r", -"equirejs", -[2,25456,25457], -[0,25463,25464,25465,2523], -"karma-re", -"porter", -[2,25460,25461], -[0,2117,21520,5898], -[0,2675,4484,37542,2924,1894,91,37544,1006], -[0,2924,1698], -[1,2343,25467], -[0,0,25475,25480,2523], -"Safari", -" Tech Preview", -[2,25468,25469], -"TechPreview", -[2,25468,25471], -"IE", -"Chrome", -[0,1429,1177,1938,2899,3203,3275,2924], -"Chrome Canary", -"Chrome ", -"Headless", -[2,25477,25478], -[0,2924,13382,202,6374,11053], -"Chromium", -[1,2343,25483], -[0,0,25486,25487,2523], -"Firefox", -"Opera", -[0,1192,1177,2203,2924,2759,1894,1596,442,4227,91,5087,1953,27928,1939,1942,33002,1938,20281,1982,1895,1955,19344], -[0,2924,4227], -[1,2343,25489], -[0,25491,0,25494,2537], -[2,25764,25765], -[0,2215,1615,4449,3524], -"chai-fs", -"os-homedir", -[0,12197,29726], -[1,2343,25496], -[0,25497,25498,25499,4139], -[0,1401,1676,1856,37568,34639,37569], -[0,1400,2323,2447,2839,2272,4389], -[0,4699,14609,21302,37572,37573,6645,6761,20863,36,5576], -"@asdfgertyjhnpm/a-unde-explicabo-eaque", -"firefox", -[1,2343,25503], -[0,25504,25505,25506,2523], -[0,37578,37579,37581,37585,37586,37587,37589,37592,37594,37595,37598,37600,1676,1869,37602,37603,37606,37609,37612,37613,37615,3171,3441,37617,3756,25990,37619,3781,25996,34383,37623,35299,37624,37628,37631,37633,37636,37637,37638], -[0,53,68,5712,87,37641,1090,37644,25992,37646,1290,37647,1398,37648,1618,3588,1177,1903,1938,1953,1958,2099,37650,3486,37652,3767,4092,4131,4151,15039,20496,4387,4389,4409,15046,2924,4677,37654], -[0,37656,37657,1764,37658,37659,37663,37665,22115,37666,37616,37667,15247,37668,4702], -[1,2343,25508], -[0,25509,25512,25515,2399], -[0,1326,3263], -[2,25511,25517], -[3,25500,16], -[0,29569,4384], -"adapter", -[2,2877,25513], -[0,7734,37674,37675], -[1,2343,25518], -"nesciunt-molestias-reprehenderit-occaecati", -[0,25519,25520,2514,2523], -[0,2026,3368,4545], -[0,1506], -[3,25395,19], -[1,2343,25523], -[0,0,25524,2514,2537], -[0,1429,2297,2899,1177,4042,1894,2878,2900,1159,3734,37688,2881,2889,2912,2895,13867,19910], -[1,2343,25526], -[0,0,25527,25528,2487], -[0,4652,2070,10679,4030,2856,37693,2272,3188,37694,3460,1317,26825,4535,1389,3736,37320], -[0,37696,37698,14833,1862,6567,14834,14835,4706,1149,14629,6804], -[1,2343,25530], -[0,25531,6538,2514,2523], -[0,37703], -[1,2343,25533], -[0,0,25534,25535,2399], -[0,13896,1776,2899,3220,37708,37709], -[0,6574,29179], -[1,2343,25537], -[0,25538,25539,25540,4139], -[0,37715,13388,1149,2753,37716,37718,3923,18730,4252,20931,4715], -[0,48,53,87,37721,4874,37722,1148,37724,1177,37725,1192,4039,4238,34395,4431,37727], -[0,4709,2942,6807,30124,21111,1409,3533,3079,2041,1781,3101], -[1,2343,25542], -[0,25543,25545,25546,2487], -[0,37735,3429,20931,4715], -[3,2910,12], -[0,37739,37741,1429,1177,1954,2899,4039,7734], -[0,4709,37743,37744,37745], -[1,2343,25548], -[0,25549,25551,25552,2537], -[0,37716,3923,20931], -"safari", -[0,4874,1148,1173,1264,1693,1177,37721,2899,3421,4039,37727], -[0,4709,4714,37752], -[1,2343,25554], -[0,25556,25559,25560,2537], -"global-agent", -[0,37758,2070,1209,37759,4431,37760], -"al-agent", -[2,4865,25557], -[0,1429,2151,2759], -[0,1370,3383,6355,14510,1508,4796], -[1,2343,25562], -[0,0,16487,25563,2443], -[0,6940,37767,3924,37769,16580,37770,7295,2585,4718,4717,28734,4719], -[1,2343,25565], -[0,0,9264,25566,4139], -[0,4718,4719,5547,1671,6922], -[0,25576,25577,25578,34352], -[1,2343,25597], -"karma-br", -"ief-reporter", -[2,25569,25570], -"sourcemap-", -[2,21536,8754], -[2,25572,25573], -[2,12612,25574], -[0,16781,3714,10761,4695,37780], -[0,4874,4891], -[0,37783,37784,2924,37786,20164,37788,37789,37790], -[1,2343,25580], -[0,25581,25582,25583,2537], -[0,1110,4290,4294], -[0,1166,1437,1596,6474,3421,4481,1906], -[0,4719,6940,4720,6980,7152,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], -[1,2343,25585], -[0,25586,6538,25587,2487], -[0,19187,4174], -[0,37808,29999], -[1,2343,25589], -[0,0,25590,25593,2537], -[0,1317,1401,1177,1895,1955,2203,2899,3421,1894,34639], -[2,8652,2013], -"keydown", -[0,7299,7172,6761,6729,7057,6145], -"keyup", -"metakey", -"keyname", -[0,25599,25600,25601,34352], -[0,2342,2402,2457,2488,2531,2540,2540,2630,2488,2688,2488,2698,2737,2488,2775,2799,2818,2840,2939,3016,3110,3207,3247,3279,3307,3448,3515,3593,3631,3723,3782,3844,3879,3908,3929,3952,4006,4016,4096,4154,4203,4241,4263,4286,4308,4331,4348,4417,4444,4476,4506,4528,4573,4655,4673,4700,4743,4813,4953,4994,5004,5007,5013,5016,5019,5023,5028,5031,5034,5037,5041,5044,5052,5099,5134,5137,5141,5144,5150,5171,5174,5199,5203,5211,5231,5255,5266,5270,5289,5299,5289,5333,5360,5373,5379,5437,5486,5493,5516,5544,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5574,5566,5574,5566,5566,5566,5566,5566,5566,5566,5574,5574,5566,4286,5566,5566,5578,4286,5574,5566,5566,5566,5566,5566,5566,5574,5574,5574,5580,4286,5566,5566,4286,5566,4286,5574,5591,5599,5612,5624,5629,5635,4286,5643,5648,5665,5672,5574,5718,5723,5566,5566,5566,5578,5566,5566,5566,5566,5566,5578,5566,5566,5566,4286,5727,5566,5566,5566,5578,5566,5566,5566,5578,5566,5574,5730,5848,5870,5886,5894,5899,5902,5906,5908,5912,5919,5965,5985,5992,5999,6050,5566,5566,5566,5566,6069,5566,5566,5566,5566,5578,5574,5566,5566,5566,5566,5566,5566,5566,5566,4286,5566,6088,6101,6115,6119,6124,6131,6152,6159,6163,6172,6179,6184,6187,6193,6201,5566,5580,6206,6210,5578,5574,6219,5299,6222,6227,6232,6236,6239,6242,6246,6250,6254,6257,6261,6265,6274,6278,6288,6292,6304,6313,6344,6357,6360,6365,6368,6402,6406,6410,6416,6427,6431,6440,6444,6483,6535,6555,6559,6571,5299,6612,5299,5635,5299,6630,6664,6676,6684,6719,6745,6772,6823,6852,6886,6906,6924,6942,6989,7012,7043,7088,7112,7136,7139,7143,7160,7187,7207,7237,5566,5566,5574,5566,5574,4286,5566,5566,7257,5566,5566,5727,5566,4286,5566,5566,5566,5566,5566,5566,7257,5566,5578,5578,5566,5566,5566,7264,7271,7278,7294,7307,7323,7327,7332,7338,7343,7348,7357,7363,7368,7373,7380,7385,7391,7396,7405,7410,7414,7419,7424,7430,7437,4286,4286,5574,7442,7447,7450,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5574,5566,5574,5566,5566,5566,5566,7452,7457,7462,7473,7478,7483,7488,7493,7498,7502,7506,7510,7513,7516,7538,7541,7544,7548,7552,7556,7560,7564,7568,7571,7574,7257,7578,7587,7592,7600,7629,7654,7694,7698,7702,7711,7736,7756,7767,7772,7777,7782,7802,5566,5566,5566,27071,5574,4286,5578,5566,5574,5566,5566,27071,4286,7832,7848,7861,7874,5727,7882,7885,7901,7916,7925,7930,7947,7953,7960,7965,7968,7972,7977,7981,7984,7987,7991,7996,7999,8004,8008,8012,8015,8020,8024,8027,8030,8035,8040,8045,8051,8054,8058,8062,8066,8070,7965,8075,8081,8086,8091,8100,8104,8106,8128,8143,8178,8195,8207,8213,8223,8227,8234,8237,8242,8258,8266,8270,8281,8289,8311,8318,8351,5574,8366,8370,8374,8378,8382,8385,8388,8394,8398,8403,8407,8412,8416,8445,8450,8455,8460,8463,8465,8467,8470,8473,8478,8481,8485,8487,8490,8493,8497,8500,8502,8507,8517,8542,8559,8564,8575,8578,8590,8594,8598,8602,8621,8637,8642,8681,8685,8690,8698,8706,8717,8725,8731,8759,8783,8796,8812,8815,8833,8844,8854,8857,8865,8867,8872,8104,8872,8874,8879,8884,8898,8929,8940,8963,8972,8977,8988,8104,8865,8865,8104,7965,7965,8992,8994,8996,9001,8996,9003,9014,9018,9022,9027,9032,9037,9042,9050,9058,4286,8706,8865,9063,9068,9079,9084,8865,9092,9101,9108,9137,9142,9149,9154,9158,9175,9180,9189,8996,9200,9205,9223,9259,9266,9275,9285,9290,9298,9306,9349,9372,9386,9389,9392,9411,34415,9438,9445,8872,9467,9522,9528,9532,9540,9545,8104,9585,9592,9599,9604,8706,5574,9609,9614,9619,9633,9639,9643,9650,9656,9664,9668,9672,9683,9690,9696,9701,9709,9717,9727,9754,9758,9763,9798,9822,9831,9882,9886,9889,9894,9898,9902,9908,9912,9917,9922,9927,9930,10085,10111,10121,10221,10287,10316,10322,10329,10334,10341,10359,10362,10379,10385,10391,10411,10421,10433,10437,10440,10449,10453,10457,10461,10465,5289,10470,10474,10478,10482,10486,10490,10494,10499,10502,10507,10512,10516,10519,10524,10529,10532,10537,10542,10547,10552,10558,10561,10566,10571,10577,10582,10585,10589,10610,10620,10644,5574,10666,10671,10694,10715,10767,10778,10794,10801,10822,10857,10872,10891,10905,10910,10919,10928,10953,10967,10980,11001,11012,11023,11030,11044,11050,11058,11062,11090,11099,11115,11121,11140,11149,34415,11157,11160,11205,11222,11237,11250,11309,11353,11386,11403,11410,11427,11447,11458,11460,11464,11468,11474,11491,11495,11505,11511,11529,11541,11545,8992,11549,11552,8865,11559,11563,8865,11568,11573,11577,11582,11587,8706,11602,11611,11632,11643,11647,11652,11657,11661,11665,11670,11675,11679,11683,11688,11693,11698,11703,11707,11712,11717,11721,11726,11730,11734,11739,11744,11749,11754,11759,11764,11769,11774,11779,11782,11786,11791,11816,11822,11826,11831,11845,11850,11855,11860,11872,11888,11902,11913,11915,11920,11949,11957,11965,11968,11972,5578,11981,11986,11992,11998,12006,12017,12022,12029,12031,12035,12039,12051,12069,12098,12109,12114,12138,12146,12150,12156,12174,12211,12225,12238,12250,12256,12261,12266,12272,7257,12280,12291,12298,12308,12341,12362,12366,12376,12379,12383,12390,12408,12430,12465,12480,12484,12488,12493,12497,12502,12506,12511,12516,12521,12527,12531,12538,12543,12548,12553,12559,12563,12117,12573,12579,12584,12595,12623,12628,12633,12638,12643,12647,12657,12664,12670,12673,12683,12697,12765,12770,12805,12819,12828,12843,12855,12859,12863,12868,12873,12876,12885,12891,12897,12903,12919,12945,12949,12955,8992,12985,13000,13010,13015,5574,13020,13026,13032,13044,13074,13111,13147,13156,13173,13211,13246,13251,13255,13270,13292,8027,8027,13299,13308,13315,13323,13331,13341,13348,13353,13360,13366,13376,13383,13398,13409,11913,13423,13430,13434,13439,13450,13469,13534,13541,13561,13577,13585,13595,13601,5566,13606,13622,13629,13636,13642,13646,13650,13660,13677,13683,13686,13700,13706,13715,13720,13727,13734,13743,13749,13762,13782,13794,13801,8706,13808,13819,5574,13826,13854,13863,13886,13902,13906,13911,11913,13919,13932,13937,13940,13946,13950,13955,13960,13966,13971,8872,13975,13978,13989,13992,14002,14007,14015,14019,14032,5727,14048,14054,14061,14068,14071,14075,14088,14095,14101,14110,14115,7930,14120,14127,7930,8865,14138,14142,14147,14150,14155,14172,14202,14232,14236,14250,14258,14266,14272,14279,14285,14289,14294,14298,14304,14313,14322,14327,14330,14340,14346,14351,14360,14363,14368,14377,14383,14391,14397,14402,14411,14424,14437,14470,14498,14513,14522,14528,14532,14537,14542,14598,14612,14625,14633,14650,14659,14665,14703,14725,14733,14742,14752,14762,14766,14778,14788,14793,14797,14802,14806,14811,14815,14820,14825,14841,14851,14859,14865,14876,14882,14887,14893,14899,14906,14912,14916,14920,14929,14936,14948,14956,14965,14974,14987,14996,15004,15049,15066,15074,15081,15091,15098,15109,15118,15123,15142,15147,15154,15158,15166,15171,15178,15184,15189,15198,15205,15211,15216,15226,15233,15241,15249,15255,15265,15274,15284,15296,15299,15313,15325,15330,15335,15343,15350,15357,15364,15369,15378,15382,15388,15394,15404,15410,15416,15430,15435,15443,15456,15503,15517,15521,15528,15542,15564,15589,15628,15640,15650,15655,15662,15727,15732,11913,8872,15737,8872,15740,15749,15752,15758,15766,15780,15785,15806,15811,15819,15824,15829,8706,15835,15845,15851,15857,15860,15865,15868,15895,15901,15914,15919,8994,8872,15923,15934,15939,15943,15947,8706,15952,15959,15966,15971,15975,15981,15987,15993,16011,16017,16024,16029,16034,16038,16043,16047,16051,16059,16067,5574,16072,16084,16098,16103,16119,16125,16131,16135,16139,16155,16158,16164,16173,16177,16185,16192,16197,16203,16208,16213,5727,16217,16222,16227,16241,16253,16283,16287,16292,16298,5574,16303,16312,16318,16326,16332,16335,5578,16338,16346,16353,16357,16362,8996,16367,16371,16377,16383,16392,16406,16413,16419,16428,16437,16451,16457,16464,16468,16472,16489,16496,16500,16507,4286,16516,4286,16522,16538,16541,16548,16552,16567,16586,16592,16616,16624,16633,16652,16665,16669,16677,16680,16685,16698,16704,16707,16717,16732,16756,16764,16788,16797,16802,16812,16816,16834,16846,16849,16864,16871,16883,16890,16896,16902,16907,16913,16924,16929,16942,16948,16958,16963,16970,16975,16979,16985,16996,17004,17015,17026,17032,17038,17053,17061,17066,17072,17079,17087,17105,17117,17124,17135,17139,17145,17152,17156,17161,17172,17177,17187,17200,17207,17226,17230,17236,17246,17254,17261,17268,17284,17292,17325,17334,17341,17347,17350,17361,17386,17419,17430,17433,17443,17451,17465,17472,17482,17489,17505,17511,17518,17524,17533,17541,17548,17555,17560,8104,8865,8992,17569,17574,8865,17588,17598,17604,17611,17633,17654,17685,17719,17741,17745,17749,17759,17773,17777,17781,17789,17795,17799,17809,17815,17821,17828,17839,17844,17856,17862,17868,17871,17879,17886,17891,17937,17952,17955,17958,17961,17967,17970,17980,17987,18013,18015,18024,18027,18033,18039,18053,18058,18064,18067,18077,18083,18086,18091,18095,18099,18107,18117,18122,18128,18134,18140,18149,18154,18160,18165,18169,8872,18178,18188,18194,18202,18208,18213,18218,18223,18242,18247,18262,8865,18270,18274,18293,18298,18303,18307,18311,18366,18399,18404,18410,18418,18441,18449,18453,18466,18469,18472,8872,18478,18492,18507,18530,18538,5574,18543,18548,18556,18560,18588,18604,18608,18623,18625,18631,18650,18653,18665,18676,18682,18724,18755,18781,18808,18842,18847,18850,18874,18882,18893,11458,8865,18899,18911,18915,18919,18923,18929,18934,18939,18946,18949,18955,18960,18972,18975,18999,19010,19014,19023,19027,19032,19039,19063,19085,19090,19104,19110,19115,19134,11913,19140,8865,19142,19149,19154,19159,34415,19165,19174,19191,19200,19215,19233,19239,19248,19255,19260,7965,19268,19275,19279,19290,5578,19293,19298,19305,19323,19329,19341,19346,19356,19362,19367,19372,19379,19387,19391,19394,19398,19410,19420,19427,34415,19432,19452,19456,19460,19483,19487,19501,19508,19518,19532,19543,19550,19561,19594,19600,19633,19643,19654,19660,19662,19667,19674,19680,19685,19694,19699,19703,19714,19718,19723,19738,19743,19752,19765,19772,19781,19789,19793,19804,19809,19814,5580,19817,19822,19832,19846,19854,19857,19868,19873,19880,19887,19891,19897,19901,19916,19924,19929,19933,19936,19952,19960,19969,19979,19985,19994,20002,20007,20022,20027,20036,20041,20053,20058,20067,20071,20079,20087,8872,20094,20101,20109,8872,20114,20125,20129,20134,20141,20148,20155,20157,20161,20166,20177,20196,20209,20217,20225,20233,20236,20240,8865,20249,20255,20260,20270,20277,20287,20292,20297,20302,20310,20318,20323,20337,20345,20358,20363,20381,20388,20391,20397,20404,20411,20431,20440,20456,20462,20487,20498,20503,20509,20512,20532,20555,20560,20569,20579,20585,20591,20596,20603,20605,20608,20615,20617,20629,20766,8872,20770,20775,20780,20783,20787,20792,20799,20806,20810,20814,20818,20860,20867,27071,20880,20900,8872,20915,20926,20936,20945,20954,20961,20965,20971,20976,20988,20994,21005,21010,21018,21027,21061,21065,21070,21078,21083,21088,21092,21103,21113,21126,21132,21139,21154,21170,21184,21192,21197,21202,21205,21207,21209,21212,21205,21217,21220,21225,21232,21238,21241,21247,21251,21256,21258,21262,21266,21271,21275,21301,21311,21316,7257,21320,21325,21331,21336,21344,21349,21356,21362,21368,21376,21391,21400,21410,21415,21422,21425,21431,21435,21446,21453,21462,21472,21475,21489,21494,21503,21511,21517,21524,21530,21534,21546,21553,21558,21565,21589,21598,21612,21615,21628,21634,21652,21670,21674,21690,21694,21706,21711,21717,21724,21729,21739,21744,21755,21769,21774,21780,21784,21787,21794,21799,21805,5566,21811,21813,21818,21824,21829,21838,21842,21848,21853,21859,21864,21870,21874,21878,21882,21887,21892,21899,21904,21909,5574,21914,21919,21923,21925,21932,21938,21949,21954,21959,21963,21968,21975,21985,21989,21998,22003,22012,22017,22021,22026,22030,22040,22045,22050,22069,22077,22082,22086,22097,22105,22112,22119,22125,22131,22136,22141,22149,22154,22159,22161,22171,22173,22177,22184,22187,22194,22200,22206,22210,22215,22225,22233,22238,22243,22252,22259,22262,22266,22271,22276,22284,22288,22299,22307,22311,22318,22323,22328,22335,22340,22345,22350,22355,22364,22373,22384,22389,22394,22399,22406,22413,4286,22419,22424,4286,22433,22444,22450,22456,22461,22469,22474,22480,22484,22490,22494,22508,22517,22527,22532,22538,22542,22547,22551,22560,22566,22572,22578,22585,22592,22598,22605,22609,22614,22619,22624,22629,22634,22644,22650,22654,22659,22663,22669,22677,22681,22685,5580,22690,22693,22702,9001,11913,22710,22717,22723,22731,34503,22737,21998,22740,22747,8872,22751,22757,22761,22765,22777,22788,22794,22802,22806,22810,22816,22825,22831,22836,22852,22859,22866,22870,5574,22878,22884,22890,22893,22898,22905,22911,22171,22917,22927,22940,22945,8872,22951,8872,22955,22964,21489,22981,20615,8865,22988,23002,23008,23014,23018,23022,23028,8865,23033,23037,23047,8706,23087,23129,23147,11913,23152,23159,23171,23176,23182,23195,23199,23204,23209,23213,23217,8865,8872,23222,23228,8706,23231,23233,23242,23265,23272,23284,23297,23315,23320,23327,8104,23334,23346,23353,8872,23364,23369,23374,23379,23381,23385,23418,23424,23427,23431,23458,23463,23474,23484,23487,23491,23495,23501,23506,23510,23515,23521,23532,23546,23550,23555,23567,23577,23583,23589,23594,8706,23610,8865,23614,23620,23627,23633,23231,8992,23642,8872,23655,23662,23672,23677,23694,23701,23713,23718,23731,23735,8992,23746,23761,23763,23770,23772,34503,23776,23781,23788,23792,23796,23804,23807,23821,23825,23835,23840,23846,23850,23854,23861,23866,23882,23887,23893,23903,22159,23940,23946,23954,23963,23972,23983,23988,23997,24001,24008,24014,8725,24021,24026,24031,24040,24048,24052,24055,24060,24063,24067,24074,24086,24099,24104,24108,24111,24124,8872,11458,24132,24143,7965,24146,24149,24170,24176,24180,24190,24196,24200,24207,24216,24228,24260,24284,24296,24304,24308,24314,24323,24361,24368,24375,24380,24407,24413,24422,24426,24431,24436,24444,24448,24457,24461,24468,24475,24478,24481,24489,24497,24500,24505,24510,24516,24527,24532,24546,24551,24555,24567,24589,24605,24611,24614,24628,24635,24639,24644,24650,24658,24662,24670,8706,24673,24677,24682,24685,24695,24700,24704,24709,5727,24718,24736,24744,24749,24756,24758,24764,24769,24773,24790,24817,24835,24844,24866,24911,24965,25013,7930,25037,25045,25052,25064,25080,25095,25100,25111,25120,25134,25152,25174,25185,25198,25208,25214,25225,25229,25242,24195,25265,25271,25281,25287,25293,25263,25308,25314,25318,25322,25326,25331,25337,25342,25357,25368,11458,7930,23147,25378,8854,11458,25387,25393,25399,25302,25413,25434,25448,25452,25466,25482,25488,25495,25502,25507,25516,25522,25525,25529,25532,25536,25541,25547,25553,25561,25564,25420,8027,25579,4286,25584,25588,25568,25602,25610,25616,25621,25641,25644,25647,25656,25662,25672,25680,25686,25695,25702,25706,25713,25722,25729,25734,7257,25738,25746,25751,25756,25768,25773,25778,25787,25800,25808,25818,25830,25834,25859,25869,25883,25905,25909,25916,25934,25940,25953,25961,25976,25991,26003,26019,26023,26031,26038,26042,26047,26056,26063,26068,26076,26080,26088,26102,26115,26134,26140,26148,26152,26162,26167,5299,5299,5299,5635,5299,26191,26191,26195,26200,26214,26221,26229,5635,5635,5299,26238,5574,4286,5574,5578,26243,5574,5580,26250,26255,26266,26270,26277,26281,26284,26293,26297,26303,26309,26313,26317,26321,26327,26331,26336,26341,26348,26356,26363,26369,26381,26389,26395,26405,26452,26476,26498,26502,26518,26523,26527,26538,26545,26558,26561,26582,26589,26594,6236,26599,26602,26623,26638,26642,26650,26656,26667,26672,26691,26701,26724,26730,26735,26745,26751,26758,26778,26785,26791,26797,26803,26814,26820,26826,26831,26841,26853,26860,26864,26879,26889,26893,26899,5727,26912,26928,26948,26953,26957,26961,11797,26967,26998,27004,27011,27013,26994,27027,27031,27021,27035,27041,27044,27048,27051,27055,27059,27065,27038,27079,27088,27097,27121,27128,27132,27140,27144,27148,27153,27159,27172,27179,27183,27192,27199,27207,34417,27211,27215,27218,27229,27245,27250,27270,27279,27288,27296,27306,27310,27331,27351,27364,27369,27373,27382,27397,27402,27413,27417,27422,27434,27437,27453,27466,27516,27528,27536,27545,27581,27586,27589,27595,27598,27604,27611,27618,27627,27665,27672,27677,27704,27734,27748,27755,27770,27889,27925,27935,27947,27956,27973,27979,27988,27996,28003,28013,28016,28020,28031,28054,28063,28071,28083,28097,28105,28108,28113,28127,28140,28160,28173,28186,28213,28218,28252,28281,28295,28298,28302,28308,28316,28319,28328,28334,27004,28351,28410,28431,28451,26701,28520,28530,28545,28552,28562,28584,28602,28630,28663,28668,28683,28700,26961,28759,28765,28765,28328,28774,28808,28328,28822,28833,28836,28851,28871,28918,28995,29052,29068,28334,29078,29164,29164,29172,26961,29180,29217,29230,29272,29275,29289,29337,29473,29496,29523,29548,29613,29705,29734,29871,29982,30002,30185,30205,30250,30474,30500,30528,30557,30598,30615,30782,30800,30827,30910,30931,30938,31020,31216,31274,31387,31487,31513,31532,31630,31664,31709,31738,31753,31758,31763,31785,31817,31853,31927,31938,31984,32340,32496,32532,32547,28833,32556,32748,32781,32809,32862,32887,32921,32936,33045,33079,33092,33104,33109,33218,31274,33225,33240,33248,33279,33281,33375,33478,33484,33501,33563,33630,33670,33696,33719,33773,33781,33788,33814,33833,33858,33866,33906,33924,33933,33956,33961,34004,34021,34047,34059,34075,34091,34101,34108,26961,28328,34122,34133,34142,34147,34160,34185,34195,34211,34214,34249,34253,34258,34296,34325,34330,34333,34336,34341,34348,28663,34353,34388,27071,34420,19603,34444,34450,34454,34456,34460,34469,34488,34499,34506,34454,34526,34535,34544], -[0,6870,1362,1437,1448,1676,37818,2754,2757,3427,6530,37821,37823], -[0,1596,2759,2899,3202,16112,4039,4193,4255], -[0,5592,1448,37826,15514,6956,5122], -[1,2343,25603], -[0,25604,25606,25608,4139], -[0,2202,37833,37834,1695], -"@keyv/serialize", -[0,2133,3697,4387,4389], -"keep", -[0,4731,27,4738,5038,1389], -"timekeeper", -[1,2343,25612], -"key-value", -[0,25613,25614,25615,2487], -[0,20689,37845,37846,4718,37844,37841,37843], -[0,18225,1082,2832,2899,4193,1177,37853,1330,1787,1525,91,4874,37852,37850,1937,17585,37856], -[0,28860,28861,3354,37858,37859,20707,1641,37860,37861,37862,26666,21604], -[1,2343,25617], -[0,25618,25619,25620,2537], -[0,4113], -[0,1175,1195,1264,28713,1387,37868,37869,35573,1503,1596,1610,1177,37870,2759,2765,1192,2774,7060,3363,3400,3725,91,37871,2282,2924], -[0,37873,6523,676,6671,1781,24586,37874,37875,37880,37882,20398,20400,4734,4735,353,8535,37883,22180,6270,37884,37885,37887,1644,57,7119], -[1,2343,25622], -[0,25626,25630,25637,4139], -"escalade", -"pg-connection-string", -"tarn", -[0,4113,4736], -[3,5536,10], -[2,25627,4945], -[2,11836,4246], -[0,1596], -"-in-order", -[2,1436,25631], -"oracledb", -"pg-query-stream", -"tedious", -"toxiproxy-node-client", -[0,6523,1781], -"postgres", -"cockroachdb", -[2,3766,9381], -[1,2343,25642], -[0,25643,15925,2514,2537], -[0,2607,2812,37899], -[1,2343,25645], -[0,0,10710,25646,2537], -[0,6523,4736], -[1,2343,25653], -"smol-toml", -"summary", -[3,8555,11], -[2,25650,1851], -[2,4764,25651], -[0,0,25654,25655,2537], -[0,1192,4753,37908,1177,3363,37909,1894,2188,3400,1926,16638,1895,1955], -[0,12616,965,6523,57,5284,37911,37912], -[1,2343,25657], -[0,0,0,25659,2537], -"analyze", -[0,4731,6662], -"dead code", -"entropy", -[1,2343,25665], -"maintenance", -"members", -[0,25666,25668,25670,2537], -[0,3157,1144,1177,2205,2203,1894,2185,4507,3170,1595,19595,3505,2191,1953,29490,1920,4523,25803,1958,1982,13789,1895,24166,32525,1955,7681,19344,1011,15290,22937,19492], -"unreferenced", -[0,3377,1166,2020,2675,1680,13786,2990,5601,192,15600,8778,3390,3708,5467,17312], -"unresolved", -[0,13326,200,1906,19347,19350,19353,1501,19269,590,671,9654,2272,19270,1177,2649,19271,4255,15717,4354,16790,19273,18443,2446,2869,5284,91], -"tldts", -[1,2343,25673], -[0,0,25674,25676,2537], -[0,10780,1854,37928,2899], -"lodash.sortby", -[0,4739,6523], -"explorer", -"opera", -"samsung-internet", -[1,2343,25681], -[0,25683,25684,25685,2399], -"uc-browser", -[0,5663], -[0,48,53,37936,83,87,37937,1198,37940,37941,1389,1177,2765,2835,3421,37945], -[0,1108,6961,6607,3656], -[1,2343,25690], -"stream-co", -[2,25687,11532], -[2,25521,25692], -[0,25691,25693,25694,2537], -[0,1525,7606], -"praesentium-accusamus-maiores-autem", -[0,3421,1676,2899,1177,1596,4535,1389], -[0,20215,4741,2574,36796,6847,1965,1867,10368,7131,1155,1936,14419,37953], -[1,2343,25697], -"delegates", -[0,0,25698,25701,2537], -[0,37958,1091,3539,4094,4733], -"http-assert", -[2,17007,23905], -[0,37960,37963,37968,37971,37972,6649,37973,2218], -[1,2343,25703], -[0,0,9264,25704,2399], -[0,2051,1698,14690,15767,3048,4552], -[3,21482,15], -[1,2343,25708], -"gen-", -[0,0,25711,25712,2523], -"esm-wrapper", -[2,25707,25709], -[0,8648,4856,5245,37983,6494,37984,4865,13204,6503,4874,37987,4891,9241,1009,1011,1429,1610,1693,1177,1942,2026,28930,2070,2832,2899,3257,3339,3421,4230,4232,4469,91,4577,2924,4677,4729,37988], -[0,200,6876,7201,28770,4166,21000,592,37991,7009,6621,13005,35621,4744], -[1,2343,25714], -[0,0,25715,25719,4139], -[0,1192,4484,1177,4042,1894,442,1193,2064,91,53,5087,4874,2797,87,4523,5583,6373,1895,10817,37998,5889], -"-body", -[2,4860,25716], -"co-body", -[0,6775,57,5374], -"-router", -"__router", -[1,2343,25724], -"urlencoded", -[0,25725,25726,25727,2399], -[0,2070,1139], -[0,1317,15052,2768], -[0,4745,1781,38007,38008], -"copy-to", -[1,2343,25730], -[0,25731,25733,20172,2523], -[0,1495,25623,12929,4290,26574,4748], -"bodyParser", -[0,68,92,4856,6503,4874,1009,25912,1414,1429,1437,25796,1610,1615,1177,1955,2321,29551,2899,4039,91,4707,38017], -[1,2343,25735], -[0,0,25736,25737,2537], -[0,68,92,4856,6503,4874,1009,1011,1414,1429,1610,1177,2321,2899,3758,4039,4146,4261,91], -[0,7233,57,4747,1523,200,7119,5675,7058,7233], -[1,2343,25739], -[0,25740,25741,2514,2537], -[0,38035,1282,1413,1420,1437,25872,1525,38036,1676,19400,1687,2195,2714,2731,10911,2975,16450,3181,3188,3309,640,3434,28142,3917,38037,705,38040,4039,38041,4135,4296,4390,4393,4572,25898], -[0,1175,1178,1193,1195,14220,1255,1267,38044,38047,1268,1272,1291,1177,38050,18229,38052,1922,38055,1935,38058,1959,2126,2323,2338,2464,2479,2541,2544,1192,2843,3211,1241,2924], -"humanize-", -[2,25742,6988], -"-counter", -[2,22255,25744], -[1,2343,25747], -[0,0,0,25750,4139], -"koa-compress", -[3,2946,9], -[0,4749,4752,6435,4166,3378,34652], -[1,2343,25752], -[0,25753,25754,25755,2443], -[0,13581,27999], -[0,1329], -[0,4560,2056,3101,12666,2090], -[1,2343,25759], -"mounting", -"@drftgyhuji7npm/repellendus-eum-et-itaque", -[0,25760,25761,25767,2523], -[0,38073,38076,38077,38078,38080,1144,1437,1525,1676,2020,38082,2205,38083,20786,3021,38084,38086,4135,4207,4558,38088], -[0,5245,5139,4874,5254,24719,1414,1597,1177,38092,2151,1776,1894,3708,4039,4193,38093,4294,91,21328,21329], -[2,29234,32235,1524], -"@ladjs/env", -[3,25689,31], -"sint-dolorem", -"@enact/core", -[0,5001,3304,6147,4990,200,8632,4989,8623,1179,8635,1896], -[1,2343,25769], -[0,25770,25772,25767,2487], -[0,1437,1676,2020,4135,3183,3021,22776,4183,4425,2845,38086,2960,38101,27168,5139,38077], -"koa-send", -[0,1797,1776,4193,1984,1597,2720,1894,4507,9741,91,21329,5245,6513,5254,21328,24719,7892,38073,23452,38078,8818,4754,7677,3708], -[1,2343,25776], -"sendfile", -"@envelop/core", -[0,0,8134,25777,2537], -[0,4757,38108,27631,200,3741,2649,6847,8618,4938,38109,1644,38111], -[1,2343,25779], -[0,25783,25784,25785,2443], -"is-warlock", -[2,3341,25780], -"reds", -[0,3157,3445,1437,4761,1209,2089,25294,38117,38118,23878,38121,38122,1543,1615,38123,25555,9478,38080,15826,38126,38073,38127,27168,4562,38131,4754], -[0,1414,1906,3297,4193,38092,2203,1596,38133], -[0,13326,200,6400,5001,3304,6147,5122,4990,8632,2873,8635,1179,8623,1896,8310], -"webOS", -[1,2343,25788], -[0,0,25795,25799,2537], -"bossy", -[3,23453,15], -[2,25790,5592], -[2,9146,5592], -"find-rc", -"will-call", -[0,38139,1104,1166,1437,1474,1511,2929,27127,3527,4481,1906], -"cpr", -"lab-event-reporter", -"@ionic/cli", -[0,1473,7208,1512,7009,7201,200,1871,1111,590,592,6621,6983,4166,4744,3073,6807,6876,2585], -[1,2343,25801], -[0,25805,3293,25807,2487], -[2,29611,5457,1805], -[2,2102,17239], -[2,25806,553], -[0,1525,2720], -"@envelop/", -[0,4760,5592,36,5995], -[1,2343,25811], -[2,556,1098], -"md-to-pdf", -[0,25812,25815,25817,2537], -[0,3157,1437,1471,4726,1109,4294,1110,4290,38150], -"semver-", -"semver-regex", -[0,1906,2899], -"latest", -[0,13326,200,8635,4758,38152,38153,5403,6458,1111], -[1,2343,25820], -[2,25829,6811], -[0,15916,25827,25828,2523], -"autodoc", -"deft", -[2,2767,1149], -"race", -"race.js", -[2,4284,176], -[0,4170,4135,2899], -[0,38160,4762,38161,38162,38163,970,10770,11154], -[3,24329,21], -[1,2343,25831], -[0,0,0,25832,2443], -[0,91,2844,7020,998,6591], -[2,556,25877], -[1,2343,25839], -"@mapbox/", -"cript-tags", -[2,1967,25836], -[2,25835,25837], -[0,25845,25847,25856,2487], -"bundlemon", -[3,16694,16], -"urner", -[2,25841,25842], -"git-rev-sync", -[0,1170,2026,3509,4763], -"happen", -[0,7804,4856,9417,7806,38176,6494,38177,6503,38179,1364,1429,1431,1527,1536,1575,1652,1177,38182,1161,2899,3237,3378,1894,4257,4474,91], -"karma-expect", -[3,2066,9], -"leafdoc", -"prosthetic-hand", -"git-version", -[2,4049,25852], -"ontent-classifier", -"gis", -[0,4763,2026,5592,8800,38185,5995], -[2,8,25858], -[3,1008,21,5], -[1,2343,25860], -[0,25861,25864,25865,2399], -[0,1282,1362,1676,34226,2685,2832,1209,3171,3242,705,4454,4729], -[2,25857,2324], -[2,25867,6], -[0,1173,1178,1255,1264,1364,1575,1700,1177,2026,2323,2338,2384,29396,2472,2510,2541,2899,3237,3253,6596,4019], -[0,1973,6533,5472,21972,4386,10659,37125,29727,1388,1936,12075,965,1623,5284,11857,6662,26196,38192], -"numbers", -[3,19535,16], -"ng-packagr", -[1,2343,25870], -[0,0,25876,2514,2537], -"aproba", -"cmd-shim", -"p-reduce", -"byte-size", -"write-pkg", -[0,28069,30286,38197,23689,4874,32440,1362,26739,2780,2784,1192,2899,3210,2765,4232,2766,24652,4094,4376,4484,1984], -"examples", -"wide-align", -"has-unicode", -"p-waterfall", -[2,2977,7318], -"@npmtea2024/quasi-nisi-doloremque-fugit", -[1,2343,25889], -"p-map-series", -"blocking", -"set-blocking", -"@lerna/create", -[2,2977,20001], -[0,25890,25895,25896,4139], -[0,38202,6870,1389,21146,38204,1512,1525,1536,1573,1676,2026,38207,12783,38209,12785,2590,2600,2659,12788,38210,12789,1209,3456,3470,38212,4165,38213,17011,4339,38215,20496,4650,4652,1695,4746,38217], -"read-cmd-shim", -[2,3614,16830], -[2,21772,18709], -"strong-", -[0,1087,38221,38222,2899,3524,4389,4431,38224], -[0,4770,5472,1388,2907,2899,12826], -[3,4588,21], -[2,25897,4059], -"-bump", -[2,4945,25899], -[2,13984,25900], -"-rest", -[2,24089,25902], -[2,9768,25903], -[1,2343,25906], -[0,25907,6736,25908,2523], -[0,666,672,677,9688,1710,4135,4459,4484], -[0,9621,9622,8174,9623,9624,9625,9626,9627,9628,9648,9659], -[1,2343,25914], -[2,1583,20499], -"errno", -[2,15086,1179], -"jest-codemods", -[0,25915,6736,6767,2487], -[0,1437,4484,677,4135,2203,666,17310,1012,9688,19254,12123], -[1,2343,25918], -"benny", -[0,25932,6736,25933,2537], -"less-port", -[2,10784,25919], -"emplate-tag", -[2,2642,25921], -"jit-grunt", -[3,1165,10], -[2,21897,25924], -"mocha-te", -"amcity-reporter", -[2,25926,25927], -"phin", -"read-glob", -"@ptkhanh94npm/iusto-libero-aperiam", -[0,4484,677,4135,2798,3181,666,3527,8734,2797,4748,8752,24759,8762,2686,9688], -[0,9621,9622,8174,9623,9624,9625,9626,38247,9628,9659], -[1,2343,25935], -[0,25937,25938,25939,34352], -[2,21897,2070], -[0,4484,677,4135,666,672,4771,9688], -[0,3420,4270], -[0,9622,8174,9623,38255,9627,9628,9648,9659], -[1,2343,25941], -[0,25945,25949,25952,2443], -"abstract-l", -"evel", -[2,25942,25943], -[0,30508,30509,4484], -"browser-level", -"-level", -[2,128,25947], -[0,34030,26312,10846,4426], -"@voxpelli/tsconfig", -[2,12774,3541], -[0,7522,89,7531,7535,7521,7597,7518,8424,8432,7528,10442], -[1,2343,25955], -"leveldb", -[0,25956,25957,25958,2443], -[0,38264,3286,89,3824,38265,4125,38266], -[0,4874,4880,4883,1177,4828,3561,4383,91], -[0,12589,1616,33456,12589,5472,20500,33459,1237,33462,33464,12590,33465,27666,11996], -[2,25944,2971], -"napi-macros", -[1,2343,25962], -[0,25973,0,25975,2537], -"async-each", -"du", -"cat-iterator", -[2,1332,25965], -[2,2970,25966], -"mkfiletree", -[2,15164,18490], -[3,25969,13], -"ross", -[2,25970,25971], -[0,1639,3744,97,7931,7932,7910], -"readfiletree", -[0,89,5128,9267,1832], -[1,2343,25977], -[0,25978,10298,25979,2443], -[0,16053,16056,38278], -[0,5284,1776,1644,1746,1745], -"-leveldown", -[2,14834,25980], -"level-", -"level-errors", -[2,7253,14922], -[2,25982,25984], -"supports", -[2,25982,25986], -"queue-", -"microtask", -[2,25988,25989], -[1,2343,25998], -"airtap-sauce", -"encoding-", -[2,25993,2971], -"memdown", -[3,12809,12], -[2,4182,5614], -[0,25999,26001,26002,2537], -[0,97,5663], -"trickle", -[0,5087,1192], -[0,5284,4967,89,6081], -[1,2343,26004], -[0,26005,26016,26018,2537], -[0,97,38293,3744,3847,4484], -"levenshtein", -[2,2068,26006], -"ld", -"levdist", -[2,26006,10699], -[3,26010,12], -"-distance", -[2,6109,26012], -[2,26011,26013], -"talisman", -[0,5228,14249,5700,8129,20202,38298,20212,602,5583,811,963,966,968,38299,972,974,5087,5090,4880,1009,1011,7913,38302,38304,1397,1597,1610,1651,1177,4916,1959,2126,38307,38309,11853,19227,3400,3698,9054,89,3824,3847,3857,3904,4146,4261,91], -"distance", -[0,38313,89,15774,38316,38317,5399,1631,32039,38319,7320,38320,32040,38322], -[1,2343,26021], -"comparison", -[0,21012,0,26022,34352], -[0,6653,7320,10039,24832,1623,13006,38327,6847,5284,676,38328,38329,29002,24353,8112,3561,6425,38330,18252,1631,3586,38332,4453,38333], -[1,2343,26027], -"careful-", -"binary-", -[2,26025,19101], -[0,26028,26029,26030,34352], -[0,2115,2121,2127,1110,28827,2856,4507,26907], -[0,2180,5476,5478,2189,2198,31852,91], -[0,2313,1383,614,202,1388,5995,4967,2340,2350], -[1,2343,26033], -"country-codes-flags-phone-codes", -[0,0,0,26034,4139], -[0,1671,671,3315,17626,6869,6671,3319,3325,3362,6829,3384], -"just-safe-set", -"ock-registry", -[2,9494,26036], -[1,2343,26039], -[0,26040,26041,26002,2523], -[0,53,31689,97,5663,4793,4800,4838,4928,4786,4944,4954,4968,362,4972,24723,4981,10895,4982,11518,841,7812,24370,4985,1030,4992,1165,1195,29040,30521,1393,1437,1525,1593,1628,1630,1759,1763,2151,2070,2220,4995,2222,2651,2843,2867,1209,3177,3220,4996,3310,3445,3561,3579,3584,3613,3618,30274,1894,3742,15033,3816,3878,4079,13834,4164,4167,4307,5000,4409,5002,1002,1983,29141,2924,4676,4681,13152], -[0,29536,27134,4864,4870,5009,5542,15600,33768,11944,3144,3244,3758,4039], -[1,2343,26043], -[0,6203,26045,26046,2523], -"gitfund", -[0,549,811,8850,816,6373,4863,5087,4880,1009,1011,8158,1584,1843,1177,1895,1938,1955,1959,1192,2780,2832,3421,1894,89,3824,4039,4042,4052,8849,8853,4076,4079,4230,4468,4469,4474,4484,4508,2924,4677,4681,555,560], -[0,24456,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], -[1,2343,26048], -[0,6203,26054,26055,2537], -"crlf", -[3,2982,15], -[2,6774,16609], -[2,26050,26051], -"renamer", -[0,53,87,92,8862,5087,4874,1009,1011,6834,6840,6873,1031,11018,13072,1593,1610,1177,1895,1938,6902,1988,1192,2780,1894,4039,4042,4045,4052,4076,4079,6904,4468,4484,4508,91,188,555], -[0,188,8588,6931,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], -[1,2343,26058], -[2,33018,188], -[0,6203,26061,26062,4139], -"ged-respawn", -[2,7210,26059], -[0,53,87,92,4856,5087,6503,4874,1009,1011,6834,6840,6993,6873,1031,11018,13072,1429,1610,1177,1895,1938,6902,1988,3400,1894,4039,4042,4045,4052,4076,4079,6904,7006,4484,4508,91,188,555,5010], -[0,188,8588,6931,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841,12075,1623,4380], -[1,2343,26064], -[0,26065,26066,26067,2523], -[0,12396,23289,23249,3493,12449,15632], -[0,9363,4874,1414,31147,1894,3985,3998,18071,4505,4507,91,18002,1906], -[0,23266,2587,23267,614,6435,1936,1644,15278], -[1,2343,26069], -[0,0,26071,26075,2537], -"cname-prefix", -[0,1177,2899,3421,4193], -"autolink", -"hashtag", -"mention", -[0,4264,15457,15482,13499,15483,5995], -[1,2343,26077], -[0,0,0,26078,2537], -[0,17356,17362,17364,17365,17384,17397,17423,17426,1745,1783], -"pidtree", -[1,2343,26083], -"consolemock", -"sonner", -[0,26084,26085,26086,2487], -[0,24337,24344,18220,1676,24345,2714,2072,4238,4431,4484,4753], -[0,8656,8660,6061,6063,5245,24352,29105,5087,4874,28177,24358,18435,20290,1177,1192,1894,4131,4468,91], -[0,12296,12295,200,5131,1896,24364,970], -"@samverschueren/stream-to-observable", -[1,2343,26089], -[0,26100,0,26101,2523], -"is-observable", -"-silent-renderer", -[2,2991,26091], -"listr-", -[2,9787,3902], -[2,26093,26094], -"verb", -"ose-renderer", -[2,26096,26097], -[2,26093,26098], -[0,12396,21300,32567,2586,21308,12447,12449], -[0,2587,1936,21308,26916,1783,18108,26564,1932,3958,32462,3984,21306,4549], -[1,2343,26103], -[0,26105,26106,26110,2523], -"@keyv/compress-brotli", -[0,2564,4351], -[0,1166,1503,91,1906], -[3,175,23], -[2,26109,16518], -[3,26104,15], -[0,163,7009,22316,200,13735,4354,1111,1106,7201], -"@lit/reactive-element", -"@lit", -"-labs/ssr-dom-shim", -[2,26112,26113], -[1,2343,26125], -"@lit-labs/", -[2,26116,5472], -"@lit-", -"/scripts", -[2,6943,26119], -[2,26118,26120], -[2,10704,1283], -"@keyv/memcache", -"@keyv/mongo", -[0,26126,26130,26133,2443], -[0,20573,5545], -"connect-l", -"ogger", -[2,26127,26128], -[0,5517,28436,19438,19181,442,8648,842,16145,966,968,972,22375,5087,4874,4880,5546,1009,1011,34737,1177,1895,31755,1959,1961,1976,2203,2675,1192,2780,2990,3286,1894,89,3824,5564,4039,4135,91,4523], -"@keyv/sqlite", -"@keyv/test-suite", -[0,26713,89,582,705,2325,1612], -[1,2343,26135], -[0,0,26138,26139,2523], -"http-auth", -"faye-websocket", -[0,4874,4218,4220,4493,91], -[0,91,998,553,5490,17180,20052,2382,6956,2844,5995,6400,1781,6866,1398,9254,15105,4144,4141,7050,22789,22791], -[1,2343,26141], -[0,26143,26145,26146,2537], -"amaro", -[0,23641,27185,29561], -[2,3000,1592], -[0,58,101,8648,1177,2272,3019,2899,4019,19767,4481,4535], -[0,36720,22860,1388,16284,888,22856,35087,11804,23659,23664,23667,23668,29725,29728,32633], -"micro-backend", -[1,2343,26149], -[0,0,26150,26151,2537], -[0,2832,705,4008], -[0,1936,23670,11513], -[1,2343,26153], -[0,26156,26157,26161,2537], -[2,2032,26155,26159], -"openid-c", -[0,2591,25047,23597,4290,24794,24836,19569,15245,24855,24871,24984,25049,25034,24816,24841,24900,24964,24989,24998,21642,37100,25011,24802,24828,24987,24797,24958,25042], -[0,1414,2020,4193,25122,1306,1177,1701,25127,2182,1894,842,1587,1610,4342,3980,25609,91,4874,25099,25108,6513,8529,27525,25110,9240,25103,25104,25098,25137,25053,25118,25114,25058,25083,10614], -"grunt-svgmin", -"onnect", -"matchdep", -[0,25155,5130,33359], -[1,2343,26163], -[0,26164,26165,26166,2537], -[0,25183,25194,1759,2858,3310,9796], -[0,33460,25204,4874,5542,1177,25209,1894,4039,4494,91,1984], -[0,9649,17721,6869], -[1,2343,26168], -[0,26171,26174,26188,4139], -"lws-basic-auth", -"lws-b", -[0,1676,4164,4484,4747,2151,1525,3310,25228,24337,3322,24335,25245], -"lws-blacklist", -[2,26170,7803], -[0,3377,1192,2675,4400,1177,4039,4468,1894,91,5087,4874,5245,28177,20959,107,4864,5542,25250,8656,8660,1009], -"lws-compress", -"lws-co", -"nditional-get", -[2,26176,26177], -"lws-cors", -"lws-index", -"lws-json", -"lws-log", -"lws-mime", -"lws-range", -"lws-r", -[2,13148,21101], -[2,26185,26186], -[0,2733,8675,13494,5131,970,1017,25259], -"lws-rewrite", -"lws-spa", -[1,5293,26193], -"lws-static", -[0,8391,26194], -1753574400000, -[1,2343,26197], -"full-stack", -[0,26198,0,26199,2537], -[0,1461,2731,3744,3776,89,3824,3847,4649], -[0,5130,6081,4963,5131,25786], -[1,2343,26201], -[0,26209,0,26211,2399], -[3,24235,20], -"loose", -[2,26202,26203], -[2,13888,5669], -"grunt-es", -"3-safe-recast", -[2,26206,26207], -[0,4484,25804,29321,29322], -"grunt-rollup", -[0,13572,2220,36,5130,202,6710,91], -"grunt-ts", -"rollupify", -[1,2343,26215], -[0,26219,26220,16427,2523], -"indexeddb", -[3,23920,12], -"websql", -[0,24327,25819,24329,24335,24337,24338,24339,24340,24343,24344,1437,1676,1687,24345,24346,1209,3445,6331,20921,4135,4238,24347,22651,4339,4390,4484], -[0,5245,17577,24352,5087,4870,4874,5254,24358,24360,13214,1192,2774,2990,4039,4227,4468,91], -[1,2343,26224], -[2,31787,26225], -"openurl", -[0,6203,26226,26227,2523], -"ecma402-abstract", -[0,25857,25862,25863,19535,19,21,24,26,1009,1011,1166,1584,1177,1895,1938,1955,25868,3421,1894,4039,4094,4232,4484,4508,91,555], -[0,1098,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], -[2,3019,2825], -[1,2343,26231], -[2,7627,4255], -[0,26235,26236,26237,2537], -[2,6698,19048], -"lockfile ", -[2,26233,671], -[0,20437,1209], -[0,4874,1009,1011,1177,1895,1938,1955,1894,4039,4042,4052,4076,4079,4484,4508,91,555], -[0,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], -[1,2343,26239], -[0,26240,26242,7097,2523], -[0,1473,4741], -[2,31528,29413], -[0,10321,4493,4543], -[1,5293,26244], -[0,8391,26245], -1738454400000, -"@egjs/axes", -"@egjs/imready", -"modularized", -[2,5316,26248], -[1,2343,26251], -[0,26252,26253,26254,2537], -[0,97,5564], -[0,29519,89,1177,1503,4474,1894,1610,3824,29520,91,11853,4880,38309,4883,29522,3904,17584,1011,4889,1009], -[0,5472,89,582,2275,11857], -[1,2343,26261], -[2,27471,1722], -"kuler", -"clonedeep", -"js-randomness-predictor", -[3,23307,13], -[0,26262,0,26263,4139], -[0,25510,29529,25758], -[0,6932,6622,6694,6704,6860,6695,4389,7159,5341,7202,7121,7060,7161,7141,7287,6698,3743,7311,6946,2090,6566,6907,7228,4799,5261,6863,2051,676,4643,7535,6748,6739,6618,2844,7252,6673,6790,7531,7226,1851,1612,4763,6598,6728,6868,6662,7148,6905,6668,7292,7272,6583,3767,364,6800,6874,4166,1698,2021,6821,3065,6435,3730,6882,4647,6857,6637,7031,7223,7080,3113,7220,1871,6801,7087,6938,7145,3195,7255,7162,6482,7094,6922,6615,6738,6654,8433,7212,7050,7521,1525,6892,6830,3432,10442,7053,7253,10443,6937,6894,6977,5592,6692,200,6940,6867,7242,7518,6582,3101,7038,57,7188,6809,6998,4484,4796,7089,7178,7182,6827,7015,6912,7011,6743,1451,6575,7117,6994,3046,2812,7199,2860,998,5122,1111,6696,6910,3529,7133,6048,1303,6634,1139,6846,6784,7192,6777,3053,5351,6624,3171,1896,2297,6960,7022,6597,5198,6802,6816,7317,4141,6765,6591,7236,1306,6681,5257,6564,100,7004,6333,6799,6774,7276,7196,6797,1263,1149,2649,7150,7165,6753,7107,6948,6975,6822,6787,6760,7046,5472,6651,6569,6825,7069,582,7191,6968,6631,6742,4744,7258,1925,6794,6804,965,7149,6917,2700,1192,2765,6081,7029,1417,5258,4426,6608,7044,7123,7222,3378,1616,3917,1614,1669,3209,6570,7155,6422,6714,6725,6606,6778,7300,6610,6716,1259,2585,1393,6918,1461,1213,7232,7172,6755,4014,6919,7209,7075,6818,6870,7039,6795,6761,6966,2154,6885,4707,6964,6646,7218,7169,2978,5501,1155,6611,6955,1862,1753,2220,6837,7336,4386,6638,6616,6553,7310,7061,6881,7298,8424,5675,3437,3456,6929,7157,6580,6751,7010,6648,3426,6952,8435,4384,7233,6697,4162,2150,3875,1108,5165,6926,3763,7229,592,3776,7288,5957,6700,2088,6650,7595,10446,7289,6805,7099,7084,7144,590,5374,5197,7077,5286,7248,2078,7085,7285,1781,6653,10441,2325,5281,1351,7309,7204,2696,2899,3430,705,7126,1697,2038,7025,6641,6620,1671,6859,6573,7146,7245,4649,3220,6667,1623,6793,6666,6903,7230,7026,6588,6858,1362,202,2832,7023,7284,6659,6577,7158,6594,7115,20215,6789,5614,7057,7528,7021,6605,6621,5260,6973,6913,6828,6563,6715,1460,7067,7072,6762,7033,7517,6702,7020,6887,5131,3778,6915,1593,5194,7071,1429,7042,6636,6841,3428,7007,7532,6803,7106,3073,6824,7227,7286,2845,7082,7114,7151,7297,6769,3766,6914,7189,7064,4720,6723,7205,6780,6683,7078,1858,6741,7262,6962,814,6657,7524,1544,7002,7527,1585,5511,1512,6921,6951,6856,7598,6854,8428,6586,6773,2105,7047,2671,1541,6623,594,6711,7147,6671,7256,7194,1165,6786,3768,6752,8427,1804,3441,7275,3033,6943,4354,4580,6758,7027], -"snackbar", -"inject-markdown", -[1,2343,26267], -[0,0,26268,26269,2537], -[0,2272,19270,2899], -[0,1111,1936], -[1,2343,26271], -[0,26272,26275,26276,2523], -[0,6513,4193,4484], -[2,32920,4521], -"rchitecto-", -[0,33821,7709,33826,33827,33831,33836,29543,4508], -[0,7200,1168,5472,3212,20188,29545], -[1,2343,26278], -[0,0,26279,26280,4139], -[0,6373,1437,29550,2151,2070,2323,2372,29552,4039,4042,4057,4076,4072,4484,4487,91], -[0,1896,5066,29554,29555,5122,12295,14554,5284,4453,29556,5131,1591,1932,4653,6434], -[1,2343,26282], -[0,0,0,26283,2523], -[0,7201,5131,1676], -[1,2343,26288], -[2,28288,26286,33678], -"redential", -"isequal", -[0,26289,26290,26291,4139], -[0,1364,1536,1676,1710,11479,2017,2929,4200,4763], -[0,8648,29574,5159,838,5160,840,8296,5601,1165,1662,1177,1895,1972,2203,3561,1894,3710,23535,3709,4355,4383,91,1983,1984], -[0,5592,5995,27,4699,4729,4030,6710], -"isfunction", -[1,2343,26294], -[0,0,26295,26296,2487], -[0,53,87,192,5467,1165,1195,1387,31429,1429,29582,1492,29584,1652,29585,2323,29586,2338,29587,29589,2361,2367,2384,2390,2419,2455,2464,2479,2482,2494,2496,2504,29592,2510,2530,2550,29593,2675,29594,2822,2929,2899,3198,29595,5561,3561,3722,4015,4019,4042,4045,21688,4939,29596,4193,8959,29597,4597,29599,2924,18237], -[0,1623,4329,2278,676,6398,6396,5130,14894,29603,29607], -[1,2343,26298], -[0,26299,26300,26302,34352], -[0,1437,29614], -[0,29618,7677,2675,2990,1894,91,1984], -"isplainobject", -[0,200,1473,1512,7208,6876,7201,6983,29609,3632,3073,6807,4166,1871,590,592,7009], -[1,2343,26304], -[0,26305,26306,26308,4139], -[0,7943,29630,3120,3744], -[0,48,53,68,13693,61,31689,73,31693,5757,5800,5818,5827,87,90,19696,19438,19181,442,34467,32229,29634,28970,29636,10837,10840,29639,966,968,972,29642,974,5087,11292,4874,4880,4883,8152,1175,1193,1195,20479,29643,11335,29645,1465,1584,1587,1593,1610,1700,1177,1879,1895,1922,1938,1947,1955,1959,1961,1976,2151,2203,29646,1192,11347,2774,2780,29652,2832,3561,3697,1894,3720,89,3816,3824,3847,29655,3957,4183,4270,4315,29660,4415,29661,35487,4468,4469,91,2924,4677,4681], -"isstring", -[0,29610,29666,29667,4627,6082,9204,5130,89,699,9291,5354,29668,29669,29670,29671,7320,29673,29674,29676,1473,998,8691,8295,29677,181,6073,10769,29678,4315], -[1,2343,26310], -[0,0,0,26311,2537], -[0,23584,23584,1936,3205,1002], -"@thednp/dommatrix", -[1,2343,26314], -[0,0,26315,26316,2537], -[0,29693,2228,2247,2253,2258,2263,2273,2281,2283,29694,2308], -[0,36653,36650,29702,15571,8192,5066,11316,18346,35060,2814,20632,6398,5131], -[1,2343,26318], -[0,26319,26320,22658,2443], -[0,3561,33145,4317,8712,1423,28572], -[0,4729,1138,3244,3467,4390,4763,12084,2070,710,614,1082,31705,1413,1676,2145,2856,33213,1145,1398,1410,977,2018,2755,3266,3930,4135,4072,11478,2105,6042,3479,3729,2924,3757,3784,33214,33173,842,9241,1525,1610,2553,11993,26453,23175,3530,4270,33215,29709,11534,13214,33200,33202,1628,11890,2659,16837,2689,33211,4227,4294,4425,91,24739,53,554,4865,33198,20463,13753,1154,33204,1536,1615,2805,4111,27062,4165,15040,33212,7080,104,8317,33146,33174,5364,5245,33191,4880,1195,1393,33206,1562,33208,2863,33210,3678,20508,4307,11804,33176,11477,4870,5254,33209,20465,15031,3878,13834,15048,97,33181,26733,15018,3509,15042,15047,101,8755,29877,33197,15606,15009,3502,15033,5216,33165,8648,10837,20374,4883,2661,15022,3322,51,87,11011,23452,1618,2674,4230,28512,15039,15046,13471,10879,7806,21122,16149,16566,3672,90,33156,617,11796,8264,33193,11800,1560,3676,3957,68,33768,15015,3688,9221,25652,33158,33167,34467,33195,36897,16841,18730,4409,33159,29876,24807,31666,16912,3605,16842,33170,33179,3177,4851,92,33162,19861,29517,29421,33172,10840,33183,33153,10825,30521,10827,20476,15273,83,16840,33189,3638,81,5715,29874,5757,5241,5820,5821,5785,1251], -[1,2343,26323], -[2,1882,24717], -[0,0,26324,26325,2399], -[0,1414,34238,2675,2990,3561,1906], -[0,3561,1623,6425,26543], -[0,0,21613,21614,34352], -[1,2343,34498], -[0,1448,4907,29733,3157,3173,3527,3721,11114,4207], -[0,192,5467,442,6061,16607,6063,6065,16608,16612,7746,4874,13210,29740,1009,1011,1610,1177,1953,2020,2203,2675,29741,2990,3536,1894,4039,4131,91,1984], -[0,8678,3758,7001,1017,29745,12295,12296,29746,29747,29748,158,3097,5131,33777,29750,29751], -[1,2343,26332], -[0,26333,26334,26335,34352], -[0,29758,29759,1398,34690,3127,3725,10397,29761], -[0,53,68,87,1195,29776,1465,24542,1628,1177,1879,31393,1938,24732,2092,8301,2651,29784,4307,4409,37871,2924,4676,4677,4681], -[0,8168,8170,8171,6975,8172,8173,1745,29786,29787,29729,8124,29788,29795,29796,29797,29798,29802,29803], -[1,2343,26337], -[0,26338,26339,26340,2523], -[0,3744], -[0,53,68,97,1177,1879,1895,1938,1947,1955,1959,1961,1192,5103,1894,89,3857], -[0,3857,5128,31912,89,5131,12295,12296,181,26542,23187,29556,29804,9944,7521], -[1,2343,26342], -[0,0,26345,26347,2523], -[3,532,8], -[2,26346,26651], -[0,53,87,97,29817,21155,1177,2675,2990,89,3857,91], -"@tdesign/", -[0,3857,5128,31912,89,5131,12295,12296,181,5396,29819,15813,29820], -[1,2343,26352], -[3,17904,13], -"sprintf-kit", -"uni-global", -[0,0,26354,26355,2443], -[3,25092,13], -[0,53,68,61,5241,83,87,90,5583,811,816,968,972,1165,1497,1652,1177,1895,31755,1955,1959,1961,1976,2675,2686,1192,2990,3561,1894,3744,89,3824,4042,8849,29826,6068,10854,4320,4323], -[0,89,35058,29831,3392,89,4627,29832,5131,12295,12296,29836,29837,29838,29839], -[1,2343,26359], -"ncjsm", -"tape-index", -[0,26360,26361,26362,34352], -[0,97,29843,29844], -[0,53,78,83,87,90,92,5522,107,29846,968,972,4880,4883,1009,1011,1030,1178,1413,1610,1177,1895,1955,1959,2675,1192,2780,2990,1894,89,3824,4039,91,1983], -[0,29848,29849,89,5128,38332], -[1,2343,26365], -"@standard-schema/spec", -[0,26366,26367,26368,2487], -[0,1420,29855,4507], -[0,5517,19438,442,29857,23689,1414,1437,1516,1532,668,1177,1895,1955,2020,2203,2675,2765,2990,3074,1894,4039,18710,91,4523], -[0,20627,1739,1745,1179,1783,5980,9591], -[1,2343,26370], -[0,26372,26373,26378,2443], -"terminal.js", -[0,810,1497,26570,16485,2017,2696,3876,4022,32284,5545,29869], -[0,48,53,87,90,92,97,19696,28091,19492,19438,442,28598,30507,810,11275,34467,827,10828,28147,28466,31235,7384,31237,28473,28476,968,972,974,29879,33123,29880,4874,4880,4883,15606,1030,17214,7677,1195,29883,20476,1393,29645,1610,17100,17101,17103,1687,1177,26322,1895,1915,1938,1942,1947,1955,1959,1961,30553,10851,2070,2203,2675,2832,2990,3127,3541,1894,89,3824,3847,3876,4039,4270,4409,4469,4473,91,4523,15088,1984,29887,2924,4676,4677], -[3,28685,11], -"refresh", -"overwrite", -"irtual-core", -[0,89,6071,9816,5128], -"tinyexec", -[2,17213,28937], -[1,2343,26382], -[0,26384,26386,26387,2537], -"date-format", -[0,29896], -"flatted", -[0,29900,29905,29910,29911,811,816,974,11096,11109,19203,29914,11111,29917,29921,1414,1429,29922,29924,1177,29925,1938,2832,8821,2899,1894,4042,29926,4146,4193,4196,4261,4072,91], -[0,29935,11619,11608,30891,11622,6907,29936,12899,5130,30442,17950,1283,29939,33359,11415,6624,12620,29940,29941], -"streamroller", -[1,2343,26392], -"@log4js-node/sandboxed-module", -"-producer", -[0,0,26393,26394,2487], -[0,53,13052,87,4042,4045,4058,4067,4415,29949,35487,4535], -[0,7838,29953,7518,3161,1098,29954,89,188,7880], -[1,2343,26401], -[3,9227,10], -"e-js", -[2,26396,26397], -"grunt-open", -[2,2235,4358], -[0,26402,26403,26404,2537], -[0,97,29959,10984,1673,3021,29960,4443,1155], -[0,5652,61,83,87,92,192,5467,6372,5583,811,16952,8850,816,6373,29966,29967,29980,26344,5139,4874,8149,11438,14334,1009,1011,11016,13061,7677,23203,13063,1031,36812,36805,11018,1165,1170,1420,12405,1527,1540,1610,1651,1652,1676,29972,668,1177,1881,1895,1938,1955,1988,2226,2675,2832,695,2990,3025,26804,3213,3561,1894,3725,29973,3957,4039,4042,34019,8849,11899,15277,29974,15911,10854,29975,29978,4073,6904,4081,29983,4484,91,1983,29987,1984,188,4630,4639,13151], -[0,188,5131,29990], -[1,2343,26427], -"esm2umd", -[2,26409,26410], -"int64", -"@astrojs/s", -"itemap", -"@pagefind/default-ui", -[2,26689,27593], -"uid2", -"astro-expressive-code", -"bcp-47", -"isemail", -"canonical-json", -[2,3138,12442], -"-phase", -[2,3081,26419], -"pagefind", -"remoting", -[2,25894,26422], -"loopback-", -"filters", -[2,26424,26425], -[0,26430,26432,26451,2523], -"globalize", -[2,25894,26428], -[0,7755,1869,2814], -"linkedom", -[0,53,87,23572,11301,1165,1168,30000,1597,1610,1637,1651,18259,1759,1177,1895,1903,1938,1954,1955,1958,1970,3363,3561,3564,3566,30030,3579,3605,30033,3613,3640,30039,30274,1894,4039,4042,4045,4055,4058,20981,30041,4067,20983,32978,4073,12309,4201,4320,4946,4360], -"or-remote", -[2,1544,26433], -[2,26424,26434], -[3,18637,12], -"tub-transport", -[2,26436,26437], -"datas", -"withastro", -"ource-juggler", -[2,26439,26441], -[2,26424,26442], -[3,18637,11], -"astro-integration", -"-transport", -[2,1716,26446], -[2,26444,26447], -"adapter-", -[2,32700,23187], -[0,12318,2090,30044,30045,13225,7518,5398,158,30046,190,5131,18346,9229,1542,30826,20937,2814], -[1,2343,26454], -"is-docker", -[0,26460,26471,26475,2523], -"loopback-boot", -"s6-shim", -[2,13897,26456], -[3,26435,12], -[2,26458,2585], -[0,1170,2812,1209,3183,4094], -"task-emitter", -[2,25894,26461], -[3,6738,11], -[2,26463,1524], -[2,25894,26464], -[2,1884,3081], -"processor", -"-preprocessor", -[2,22126,26468], -[2,2877,26469], -[0,1429,1177,10419,3188,2899,1241], -"sqlserver", -"StrongLoop", -"mBaaS", -[0,6703,1702,200,1586,21405,13397,33351,27,29854,30053,21402,13322,16697,28984,6667,6574,30056,31937], -[1,2343,26480], -[2,26478,29168], -[3,30636,28], -[2,26868,26869], -[0,0,26496,26497,2537], -"exact-versions", -[2,32700,7293], -[2,26485,24631], -"steno", -[3,31231,18], -[2,19036,20], -[2,5745,1852], -[2,2029,26487], -[2,32731,26494], -"embed", -"Storage", -"localStorage", -[2,1577,26491], -"polygon", -[2,32731,32729], -[0,1165,1387,2323,30061,2379,2409,2450,2482,2494,2496,2510,18426,30064,3591,4320,4323,4747], -[0,29993,30066,30067,1623,695,5131], -[1,2343,26500], -"rslog", -[0,0,0,26501,2487], -[0,89,6649,10057,6355,3875,1542], -[1,5293,26508], -[2,13104,1936], -"@lucide/build-icons", -"@lucide/", -[2,4080,591], -[2,26505,26506], -[0,8391,26515], -"Lucide", -"HTML", -"Feather", -"Icons", -"Icon", -"SVG", -1731196800000, -"Feather Icons", -"Fontawesome", -[1,2343,26519], -[0,26521,26522,2514,4139], -"Font Awesome", -[0,30078,9307,9311,30068,30052,30073,9313,30072,1497,12412,30075,2071,7610,2579,21308,3137,27008,3140,12627,26929,26914,17429,9337,3973,9340,3988,30049,30069,30059,27062,9348,4207,17913,4473,30058,4555,28830,4745,4763], -[0,11522,972,1006,12396,9363,30082,4880,4891,1030,30084,23312,23314,3286,89,3824,4549,1984,28965], -[1,2343,26524], -[0,26525,0,26526,2537], -[0,30097], -[0,1674,30099,30100,15001,13739,35071,30103,30113,19571], -[1,2343,26529], -"decree", -[0,26530,26531,13347,2537], -[0,20378,3530], -[0,11976,4874,20374,2071,30138,2070,4441,1531,91], -"manipulate", -"blur", -"sharpen", -"flip", -"hue", -"saturation", -[1,2343,26540], -"lightness", -[0,0,0,26544,4139], -"transparency", -"fade", -"opacity", -[0,91,553,1973,8791,2022], -[1,2343,26546], -[0,26547,2667,26554,2537], -[0,30173,4484], -"@75lb/deep-merge", -[3,1107,11], -"-sequences", -[2,26549,26550], -[2,1601,7880], -"load-module", -[0,30175,30176,27227,30177,30178,91,6742,57,15266,2873,1993,7256,676,19976,30179,5995,6400], -"-anywhere", -[2,17242,26555], -[2,30307,553], -[1,2343,26559], -[0,0,6230,26560,2399], -[0,32054,4963,4967,6082,3286,3287,89,11167,31512,181,630], -[1,2343,26569], -"-home-dir", -[2,18132,26562], -"mdast", -[2,2580,26564], -"fetch-happen", -[2,3094,26566], -[2,12428,1783], -[0,6234,6230,26575,4139], -[2,25212,28139], -"-unique-id", -[2,5843,26571], -[2,4402,163], -"y18n", -[0,1501,4963,4967,5342,6082,3286,3287,89,5341,9057,181,630], -[3,9357,10], -"umnify", -[2,26576,26577], -[2,8140,1687], -"ke-fetch-happen", -[2,18655,26580], -[1,2343,26583], -[0,26585,6230,26588,2523], -"@types/which", -[0,3826], -"wizard", -"task graph", -[0,4963,18263,1786,4967,6082,3286,3287,89,181,630,9229], -[1,2343,26590], -[0,26592,6230,26593,4139], -"zoroaster", -[0,9041], -[0,4963,4967,6082,3286,3287,3412,3730,89,181,630], -[1,2343,26595], -[0,26592,6230,26598,2537], -" manipulation", -[2,1871,26596], -[0,30246,4963,4967,6082,3286,3287,89,7193,181,630], -[1,2343,26600], -[0,0,6230,26601,2537], -[0,4963,4967,6082,3286,3287,89,30256,24843,30251,181,630], -[1,2343,26607], -[3,7678,9], -[2,4501,6996], -[2,12612,26604], -[2,26603,26605], -[0,26613,26615,26618,2537], -"lavalink client", -"audi", -"o streaming", -[2,26609,26610], -"music", -[0,3135], -"music bot", -[0,48,53,5241,87,92,19344,10879,30263,5601,4873,4874,1009,1011,1177,1895,1938,1942,1953,30266,13668,3401,4039,91,1984], -"emoji-datasource", -"voice chat", -[0,30270,3541,1651,2899,1984,1192,2765,3283,28360,30271,2793,1973,11937,16237,5472,30272], -" integration", -[2,1721,26619], -" performance", -[2,6732,26621], -[1,2343,26625], -"easy-to-use", -[0,26634,26635,26637,2487], -"feature-rich", -"seamless", -[2,26627,26619], -"communi", -"ty support", -[2,26629,26630], -"open-source", -"lavalink", -[0,30288,30293,30295,26557,32842,30297], -[0,30303,6494,4874,30306,30305,30310,2026,4039,1531,91,1984], -[3,66,19], -[0,30297,2026,5995,1851,5592,13527,91,5284,2663], -[1,2343,26639], -[0,0,26640,26641,2443], -[0,3377,26230,4255,1973,30351], -[0,5131,28125,4354,1388], -[1,2343,26643], -[0,26645,26646,26649,2523], -"convex-helpers", -[0,12449,4549,12396,2586,21016,32568,4233,12447,32567], -[0,1414,1177,3958,1894,3541,3985,91,4874,15632,32484,27706,27711,30411], -"intermediate", -"recursively", -[0,1745,9102,25131,1932,3958,32462,3984,4549], -[1,2343,26652], -"theme-generator", -[0,26653,26654,26655,2523], -[0,30416,30425,30431,30434,30438,30439,30441,30445,30447,30449,30450,30452], -[0,48,4487,91], -[0,30455,5133,30960,1851,5284,27838,18969,30456,5131], -[1,2343,26659], -"dingbat-to-unicode", -"lop", -[0,26665,0,26199,2443], -"-licenses", -[2,22190,26660], -[2,13888,26661], -"duck", -"hamjest", -[0,25766,30802,1461,30809,2731,3744,3776,89,3824,3847,4649], -"office", -[1,2343,26668], -[0,26669,0,26199,2399], -[0,89,3824,3744,25766], -[3,36878,12], -"ternal-editor", -[1,2343,26673], -[0,26686,0,26687,4139], -"@nestjs/", -[2,26674,10896], -"@nestjs/co", -[2,26676,686], -[2,26676,23], -[3,31,9], -[2,26679,2026], -[2,26674,26680], -[3,9687,9], -"wagger", -[2,26682,26683], -[2,26674,4521], -[0,4484,2735,547,2858], -[0,2733,5130,1098,5131,1896,8674,8675,1591,8677,8678], -"@nestjs/cli", -"@nestjs/t", -[2,26689,8615], -[1,5293,26692], -[0,8391,26700], -"asherize", -[2,6491,26693], -[3,12284,16], -[2,26695,2528], -"llaboration-core", -"limiter", -"embla-carousel-reactive-utils", -1733616000000, -[1,5293,26722], -[2,19183,26714,3181], -"eigen", -[3,578,11], -"de-highlight", -[2,26704,26705], -"@tabler/icons-react", -[3,3672,15], -"mantine", -[2,26708,26709], -"imple-vars", -[2,3677,26711], -"swr", -[3,25141,13], -"context-menu", -"peowly", -"context menu", -"server ", -[2,26718,4963], -[2,7519,26719], -"user ", -[0,8391,26723], -1733961600000, -[1,5293,26728], -"experience", -[2,26721,26725], -"usability", -[0,8391,26729], -1734220800000, -[1,2343,26731], -[0,0,26732,26734,2537], -[0,4172,2278,34683,4484,1177,4039,4042,4086,4072,3363,3561,2151,1894,1367,1610,4320,91,6375,3400,3566,30616,1165,1540,6376,3019,34673,1907,30617,1938,1982,30620,10817,1011,15290,6392,1009], -"axe-playwright", -[0,1623,2278,6398,20897,1283,699,5130,30622,27837], -[1,2343,26736], -[0,26737,26738,26742,2537], -[0,97,30628,30666], -[0,48,53,61,71,13052,83,85,87,94,4856,6503,4874,1178,1195,1208,1290,30691,30696,1389,1429,1431,31602,1610,1177,2026,10621,2832,2899,3421,705,4039,4218,4409,91,2282,4650,2924,4677], -[2,11932,26740], -"umd-wrapper", -"mapbox", -[0,6599,5131,5592,29744,30730], -"mapbox-gl", -[2,4609,4056], -[1,2343,26748], -"mapboxgl", -"legend", -[0,0,26749,26750,2443], -[0,1414,1429,1540,1596,668,1177,2832,3010,2899,2278], -[0,5284,5131,12295,12296,7179], -[1,2343,26752], -[0,26753,26756,26757,2487], -[0,3775,1473,1673,30778,1209,1461,30779,3376,30774,30772,30776,15616,3911,30770], -" processing", -[2,2585,26754], -[0,11336,89,3824,4880,4870,97,4883,30783,972,968,974,20562,4808], -[0,89,12248,5128,30731,30785,30786,4627,4963,181,5130,4967,5131], -[1,2343,26759], -[0,26760,26765,26199,2537], -[0,25766,30802,30803,30405,30458,1461,2731,3744,3776,89,3824,4649,30809], -"linkify-it", -"mdurl", -"punycode.js", -"uc.micro", -[0,30819,30820,30822], -"footnote", -[2,3108,26766], -[3,26767,14], -"r-inline", -[2,26768,26769], -"ins", -[2,3108,26771], -"ark", -[2,7613,26773], -[3,7617,14], -[2,26775,22164], -"ndoc", -[1,2343,26781], -[3,5956,14], -[2,26779,13218], -[0,0,26782,26783,2537], -[0,6066,1894,4042,4045,12611,4048], -[0,4967,9006,29633], -"@nx/docker", -[1,2343,26787], -"anchor", -[0,26788,26789,26790,2537], -[0,16115], -[0,972,4880,4883,1628,2144,2675,89,3824,3895,4307,4469,21180,4484,91,2924,6482], -[0,1631,30845,30847,30848,4627,6398,5131,4453,1631,5399,30858,32040], -[1,2343,26792], -[0,26793,26794,26795,2399], -[0,10780,1437,1525,2020,2151,3714,3742,4135,4548,4707,4726,4739,4753], -[0,30868,16480,1414,2070,2203,14775,30889,2658], -[0,30829,31731,30870,5131,12295,30871,12296], -"emojies", -[1,2343,26798], -[0,26801,0,26802,2537], -"emoticon", -"emoticons", -[0,3533,30018,28941,29602], -[0,29699,2942,6807,1179,1745,29703,29753], -[1,2343,26810], -[2,26807,26809], -"from-to", -[2,4279,26805], -"lodash.u", -"pdf-text", -"pperfirst", -[0,26811,26812,26813,34352], -[0,31834,31846,29951,66,29890,5582,635,29057,1091,1525,18145,30089,31002,13812,2822,26014,3079,3181,3310,30095,4025,6477,4135,4183,4474,91], -[0,1177,1939,1959,1969,2151,1192,2829,3123,4039,30269], -[0,5593,1745,1179,1783,5061], -[1,2343,26816], -"rows", -[0,26817,26818,26819,2523], -[0,7614,19976,3445,1371,1437,2020,2975,3478,4484,1209,4135,1593,3742,2924,1457,2151,4447,1525,2641,1483,1710,1869,3884,13834,4689,30459,4562,30876,3885,30878,32359,30882,9329,4681,30890,2651,30895,30896,4676,30899,30900,30902], -[0,36864,18055,4883,8286,30913,3904,33768,29125,30915,30919,4985,38298], -[0,89,12478,2924,1745,18061,18063,467], -[1,2343,26821], -[0,26822,26823,26824,2443], -[0,4484,2735,547], -[0,3377,1192,89,1177,4039,4042,4468,2151,1894,3824,91,5087,4874,4880,4883,8656,8660,972,2780,10817,968,1011,20562,1009], -[0,2733,5130,89,5131,1896,24364,8674,1591,8677,8678], -"microtime", -[1,2343,26828], -"theredoc", -[0,0,26829,26830,2537], -[0,5087,1009,1011,1593,1596,1637,1177,1192,2774,2794,2832,30935,4042,4468,91], -[0,32814,6422,6805,2013,24800,31767,91,5284,11512,4627,3111,30430,11608,6400,1936,9622,8174,30937], -[1,2343,26832], -[0,26833,0,26834,2537], -[0,1497,9272,9273,3744,97,6372,444], -[0,89,5128,9267,30943,6653], -[2,13090,4226], -"lazy-cache", -"list-item", -[3,19516,13], -"mixin-deep", -"repeat-string", -[1,2343,26848], -"glossary", -[2,4001,1932], -" of contents", -[2,176,26844], -"of-contents", -[2,16065,26846], -[0,26850,0,26851,2487], -"node-bundle-require", -[0,9273,3744,97], -[0,89,5128,9267,699], -[2,28001,28034,16111], -[1,2343,26856], -[2,24559,18089], -"gemoji", -[0,26857,0,26858,4139], -[0,1497,3847,9272,3744,97,5090], -[0,89,5128,9267,594], -"CommonMark", -[1,2343,26861], -[0,26862,0,26863,2523], -[0,30963,30964,1699,3547], -[0,91,4521,678,12659,4030,7096,5592,30967,30968,5995,30969], -[1,2343,26867], -"jsonpointer", -"run-con", -[0,26871,0,26863,2523], -[3,11026,13], -"uilder", -[2,10829,2202], -[0,30978], -"babel-re", -"@markedjs/eslint-config", -"@markedjs/", -"testutils", -[2,26874,26875], -"marked-", -[2,26877,5342], -[1,2343,26884], -"marked-man", -"recheck", -"@egjs/component", -"@egjs/list-differ", -[0,26886,26887,26888,2537], -"markup", -[0,1091,4135,2105,30986,30987,31339,20786,2745,27168], -[0,16499,1983,1984,1597,2071,91,36864,3401,19232], -[0,30990,30991,20998,5194,5130,2323,5284,1936,6082,1783,6710,30993,38087,8674,12479,5347,5348,30997,30998,30999], -[1,2343,26890], -[0,0,26891,26892,2523], -[0,1759,20463,1763], -[0,89,3286,23803,1759], -[1,2343,26894], -[0,26896,26897,26898,2537], -"v8-argv", -[0,31705,4227,31044,4121,2626,6473], -[0,4757,1192,3144,1177,3266,1701,2924,2151,2182,1894,1610,3758,4507,2794,91,53,5087,4874,1615,4677,1195,29283,3401,3878,4891,4864,21122,8818,31054,4681,31055,33002,31057,2784,4409,1895,1955,2780,4684,5241], -[0,89,5284,2924,26375,11498,31062,3000,2998,6109,6609,2999], -[1,2343,26903], -[3,2718,14], -"refixer", -[2,26900,26901], -[0,0,26904,26911,2443], -[0,34264,2222,31069], -"vent-listener", -[2,11352,26905], -"typed-event-target", -"simple-assign", -"@onesy", -[3,1441,29,6], -[0,31076,2220,2844,553,91,9381,5130,1932], -[1,2343,26913], -[0,26918,26919,26923,2523], -"react-medium-image-zoom", -"complex.js", -"latex", -"escape-latex", -[0,3467,6482,1983,31090,1371,1437,2020,1759,1209,3539,4135,1458,3363,3471,2924,1457,2151,2720,1894,1525,1587,1483,1628,91,3921,31091,31093,1393,13223,1540,4025,4307,31094,31095,31096,31097,9322,3878,31098,31099,31101,8161,29182,31105,10936,31106,31109,31110,31111,2651,31114,4679,4684,31117,12361,3177,4676,31120,31123,31125,4992,31127,2135,24723], -[0,1192,89,2190,3824,5087,4874,4870,31131,4864,31134,31138,4985], -"-natural-sort", -[2,5284,26920], -[2,17414,3046], -[0,31140,6354,31141,17944,31146,31153,27837,5592,1303,5130,27,1781,2934,31154,33359,3424,28438,3469,4030,7096,1965,31155,12479,5284,29727,31047,31048,31045,31042,31156,31171,5995,18063,31175,2968,31176,89,6071], -"jsep", -"ndarray", -"-determinant", -[2,26925,26926], -[1,2343,26937], -[2,28402,28403], -"ndarray-gemm", -"ops", -"ndarray-ops", -"ndarray-pack", -"numeric", -"numericjs", -"pad-", -[0,26939,26942,26943,2537], -"l-time-collaboration", -[0,53,4982,1420,1595,31187], -"sylvester", -"zeros", -[0,4361], -[0,11525,8221,89,364,5592], -"mathematics", -"algebra", -"complex", -"fraction", -[1,2343,26949], -[0,26950,26951,26952,2537], -[0,104,18089], -[0,31206], -[0,1936,2587,1172,23267,36587,23266], -[1,2343,26954], -[0,0,0,26955,2537], -[0,11961,10339,10340,5122,5995,1594], -"charenc", -[1,2343,26958], -[0,26959,26960,7537,2523], -[0,1673,1511,31225], -[0,2675,1984,91,4874,975,11976,192,11978,7677,5467], -[1,2343,26962], -[0,26964,0,26966,2523], -"md5sum", -[0,1004], -"checksum", -[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31239], -[1,2343,26968], -[0,26964,0,26997,34352], -[2,27022,27023], -"d-character-reference", -[2,5877,26970], -[2,15103,26971], -[3,17995,15], -"decode-n", -"-char", -"-reference", -[2,6842,26976], -[2,26975,26977], -[2,10129,26978], -[2,26974,26979], -[2,26973,26980], -[3,26981,22], -[2,26982,1871], -[2,3370,16906], -[2,26973,26984], -[2,26973,5511], -[2,26973,553], -[3,4292,10], -[2,26988,8193], -[2,9406,26989], -[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31260], -[2,20627,6660], -[2,17991,6147], -[1,2343,26996], -[3,3137,10], -[0,27025,0,27026,34352], -[0,6400,4967,12042,12045,12047,1424,12048,12049,12050,12044,12056,12058,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,31268], -[1,2343,26999], -[0,26964,0,27001,2537], -[3,26986,16], -[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31276], -"anitize-uri", -[2,27000,27002], -[1,2343,27007], -"lines", -"trim-lines", -[0,26964,0,27001,2523], -[2,3138,3987], -[3,12133,20], -[2,27009,3987], -[1,2343,27012], -[0,26964,0,27001,2443], -[1,2343,27014], -[0,27015,27019,27020,2487], -[0,7709,33828,31294,31296,28384,1364,1532,1553,1560,1575,1594,29013,1874,2026,31300,31303,2040,33596,13870,2212,31305,2593,2738,11993,2863,1209,3173,3220,3222,3237,3242,3345,3478,12286,17009,4143,4351,31306,1155,25370,4729], -[2,27577,3432], -"mdn", -"mozilla", -[0,7806,38176,9227,5601,7808,10406,8264,4870,38179,24156,4874,16936,4891,9241,2020,2659,3297,4342,91,1984], -[0,12322,3730,30045,31310,31311,6949,21611,31312,5403,5995,4699,2026,20863], -[1,2343,27024], -[3,10848,19], -[3,2791,11], -[0,27037,0,27034,34352], -[0,188,4452,1593,668,2822,2924,1457,3084,1628,3560,4027,4634,4639,13152,53,1615,2092,1165,1195,37215,31325,4689,36119,3618,31331,31332,4681,1584,3676,31333,31334,4645,31343,3177,31347,31348,1549,31351,31353,3463,21287], -[0,1745,1179,188], -[1,2343,27028], -[0,27029,0,27030,2487], -[0,3725,3105,18587,3114,3107,31343,13122], -[0,1745,1179,1783,188,19469], -[1,2343,27032], -[0,27033,0,27034,2523], -[0,31332,3008,3084], -[0,1745,1179,188,19469], -[1,2343,27036], -[0,27040,0,27034,34352], -[0,31331,3029], -[1,2343,27039], -[0,27075,27077,27064,34352], -[0,31331,1615], -[1,2343,27042], -[0,27043,0,27034,4139], -[0,3412,31331], -[1,2343,27045], -[0,27046,0,27034,2523], -[0,31331,31343], -"@blazediff/core", -[1,2343,27049], -[0,27050,0,27034,2537], -[0,31331], -[1,2343,27052], -[0,27053,27054,27034,2523], -[0,1437,1869,2151,2205,2226,2570,4135,4452,10761], -[0,31414], -[1,2343,27057], -[3,26482,36], -[0,27058,0,27034,2537], -[0,1209,4333,13092,4334,31331,21288,31348,31375,31425,31314], -[1,2343,27060], -[0,27061,27063,27064,2537], -[0,31434,31435,31438,31442,31444], -"server-only", -[0,1429,2899,4474,2924,48,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,31455,31456,92], -[0,31459,31460,9439,31461,5131,11194,4653,1616,31462,31463], -[1,2343,27067], -"@types/title", -[0,27068,27070,27064,4139], -[0,31435,31469,31470], -[2,27074,29387], -[0,1429,2899,4474,2924,48,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,31456,92], -[1,2343,27072], -[0,0,0,2514,34352], -"hashring", -[3,30708,19], -[0,3698,11194,1582,31477,31480], -"jackpot", -[0,1429,2899,1177,1593,4474,2924,4469,48,1628,91,53,13693,4856,5087,4874,3165,3400,4677,6503,4880,4307,31484,5000,85,94,87,1954,1959,1938,1958,1895,1903,1955,1970,92], -"InnoDB memcached API", -[1,2343,27082], -"failover", -"hashing", -[0,27086,27087,27064,2443], -"membase", -"memcache", -"nMemcached", -[0,31465,31477,31480,31489,31490,31492], -[0,1429,4653,2899,1177,9420,1593,4474,2924,1894,48,91,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,1954,1959,1938,1958,31496,1895,1903,1955,1970,92], -[1,2343,27089], -[0,27095,27070,27064,2443], -"@json", -"joy.com/json-pack", -[2,27090,27091], -[3,27092,13], -[2,27093,614], -[0,4729,31435,31469], -"tree-dump", -[1,2343,27102], -[3,7746,11], -[2,8184,3358], -[3,4490,14], -[2,27100,10896], -[0,27104,0,27116,2487], -"fs.js", -[0,1497,31515], -"in-memory", -"fsa", -" access", -[2,6771,27107], -" file system", -[2,970,27109], -"webfs", -"crudfs", -"opfs", -"casfs", -"content ", -[0,31517,31518,5131,12344], -"able storage", -[2,15427,27117], -[2,27115,27118], -"pvu", -[1,2343,27123], -[2,7467,11017], -[0,0,0,7983,2537], -[2,24399,4162], -[2,2068,7906], -"mem", -"nanocolors", -[1,2343,27129], -[0,0,0,27131,2523], -"memoization", -[0,1098,5130,1388,17050,5472,12899], -[1,2343,27133], -[0,9756,27137,27139,2537], -[2,27135,1276], -[3,5536,15], -"gulp-exit", -[0,1166,1437,1596,3421,4255,4257], -"ram", -[0,1111,14903,200,30248,2966], -[1,2343,27141], -[0,17263,27142,27143,2523], -[0,23689,7892,10410,4874,20959,28502,1364,28556,2323,31190,2526,2765,31539,31540,2272,3297,4039,4089,31541,4130,4474,4487,31194,91,31195,31186], -[0,1973,5472,11132,13841,28522], -[1,2343,27145], -[0,0,27146,27147,2523], -[0,1173,1178,14318,1264,14237,1272,1177,1881,13936,1895,1935,1938,2126,2675,1192,2990,1894,4039,4535], -[0,31549,31550,31553,31565,9006,3015,31566,15813,10725,30672,5066,15571,89,31567,1098,188,12295,5131,28125,31568,31569], -[1,2343,27149], -[0,27150,27151,27152,4139], -[0,17013,31573,18695,1525,1544,18671,2107,2036,14940,18708,3173,31576,4039,18667,4449,18670,4547,18692], -[0,442,4856,9417,31586,31593,6494,31595,7746,4874,31607,6520,31613,1009,1011,31615,1429,1431,1587,1177,1895,1951,1954,1955,2020,2116,2212,12870,2899,3560,1894,6021,4085,4135,4193,4196,18698,4474,91], -[0,14932,1388,6147,9381,4967,13441], -[1,2343,27154], -[0,27155,27156,27157,2537], -[0,31573,14940,18714,18675,4039,4085,12937], -[0,1429,1431,2899,31627], -[0,9381,6147,4967,1388,14932,13441], -"fast refresh", -[1,2343,27160], -[0,27161,27169,27157,2537], -[0,17013,2036,6474,3173], -"trim-newlines", -[2,1420,21640], -[2,1677,21640], -"_comments", -[2,6865,27165], -[3,9488,13], -[2,27167,2104], -[0,1429,18766,2026,2272,2899,14942,4008,4085], -"-options", -[2,3183,27170], -[1,2343,27175], -"cat", -"kitten", -[0,27176,27177,27178,2537], -[0,2674], -[0,2292,2272,2899,4170], -[0,13428,1388,14336,12197,5472], -[1,2343,27180], -[0,0,27181,27182,2537], -[0,1173,1175,31653,1264,1429,2899], -[0,1420,15321,1623,965], -[1,2343,27186], -"from2", -"is-standalone-pwa", -[0,0,27187,27188,2537], -[0,19325,31265,1414,1537,1894,3985,3998,4039,4389,4505,91,1906], -[0,1936,18944,18089,6843,11043,1213,31661], -[2,3028,5056], -"stat-mode", -"ware", -[1,2343,27197], -"drafts", -[2,10722,27193], -"dir-equal", -[2,15340,27195], -[0,0,27187,27198,2523], -[0,1936,31670,18944,18089,6843,11043,1213,31661], -[1,2343,27200], -[0,0,27187,27201,2537], -[0,1936,18944,18089,6843,11043,1213], -"7zip-bin", -"node-7z", -"er-helper", -[2,18536,27204], -[2,3306,27205], -[1,2343,27208], -[0,0,27209,27210,2537], -[0,19325,31265,1414,1537,2577,2584,1894,3971,3985,3998,4039,4389,4505,91,4549,1906], -[0,1936,18944,26934,6843,11043,31661,31676,1213], -[1,2343,27212], -[0,27213,22487,27214,2537], -[0,31701], -[0,1473,7208,6616,1623], -[1,2343,27216], -[0,0,23215,27217,2523], -[0,965,1936,14186,34254,11590,1644,1646], -[1,2343,27219], -[0,27220,16487,27222,2537], -[0,2053,31724,20273], -"@surma/rollup-plugin-off-main-thread", -[0,1739,1745,8623,1179,1783,5354,26096], -"asyncro", -[3,1225,32], -[2,27224,6567], -[3,13998,31], -[2,7256,591], -[2,27226,27227], -[1,2343,27236], -"throw-", -[2,27230,27227], -[2,69,27231], -"directory-", -[2,27233,1633], -[3,16482,15], -[0,0,27240,27241,2523], -"evelopit", -[2,27235,27237], -"merge-d", -[0,2899,1429,2759], -[0,1623,6413,3766,31991,5131,1644,3529], -"river-install", -[2,27239,27242], -[2,3382,27243], -[1,2343,27247], -[2,14585,6082], -[0,0,27248,27249,2487], -[0,1596,2759], -[0,1871,3656,16906,1623,25232,6422], -[1,2343,27253], -[2,9280,20627], -[2,17991,27251], -[0,27254,27268,27269,2537], -[0,1634], -"factory-space", -[2,17991,27255], -[3,17995,17], -"unked", -[2,27257,27258], -[3,17995,16], -"ombine-extensions", -[2,27260,27261], -[2,26973,10368], -"resolve-all", -[2,26973,27264], -"ubtokenize", -[2,27000,27266], -[0,1414,668,1177,2899,4042,4228], -[0,1623,15215,2632,3178,16918,16919,31748], -[1,2343,27271], -[0,27272,27273,27274,2537], -[0,1147], -[0,1177,1895,1955,1894,4384], -[0,5675,57,7119,200,1523,7058,16159,31759], -"fill-range", -"@ember-tooling/blueprint-model", -"bracket", -[2,24559,1227], -[1,2343,27283], -"expansion", -"extglobs", -"lookahead", -[0,27284,0,27286,4139], -[0,1122,1125,31764,1129,1532,2220,2222,2817,18023], -"lookaround", -[0,31775,5995,2195,31776], -"lookbehind", -[1,2343,27290], -"negate", -[0,27294,0,27295,2537], -"negation", -[2,7623,22245], -"posix", -[0,2817,3502,18023], -[0,31775,5995,13531,20999], -[1,2343,27297], -[0,27300,0,27305,2537], -[3,7746,12], -[2,27298,1747], -[0,1532,2817,3181,3502,18023,31802], -"mime-score", -"runmd", -[2,4865,27304], -"rex", -[0,31775,5995,17977], -[1,2343,27307], -[0,27308,0,27309,2537], -[0,31809,2714,2867,3181], -[0,31775,5995,31804,31812], -[1,2343,27311], -[0,27312,0,27313,2523], -[0,1122,1125,31764,1129,1532,2220,2222,2817,3502,18023], -[0,31775,5995,2195], -"Min Heap", -"min heap", -"maxheap", -"min-heap", -"heap", -"Binary Heap", -"binary-heap", -[2,7247,17709], -[2,27318,27321], -[2,27315,27321], -" binary tree", -[2,15773,27324], -"heapify", -[2,13199,2656], -"heap sort", -"@utoo/pack", -"heapify up", -[1,2343,27335], -"heapify down", -"Priority Queue", -"priority", -[0,27342,0,27345,2537], -" queue", -[2,27334,27336], -[3,18020,13], -"-queue", -[2,27334,27339], -"priority q", -[0,1122,1125,31764,1129,2817,3502,18023], -"priorityQ", -[3,27325,15], -[0,31775,5995,17978], -"extract min", -"min ", -[2,27347,27337], -" priority", -[2,7287,27349], -[1,2343,27361], -"ing property", -[2,4327,27352], -" resizing", -[2,14000,27354], -"priority-", -[2,27356,20332], -[2,27357,26754], -[2,11512,27349], -[2,3768,27349], -[0,0,0,27362,2537], -[0,31775,5995], -"decrease key", -[1,2343,27367], -"increase key", -"searching", -[0,27368,0,27362,2399], -[0,3502], -[1,2343,27370], -[0,0,27371,27372,34352], -[0,5087,4874,1596,2070,1192,2822,31851,4468,4487,4490,31194,91], -[0,36720,7119,57,22856,5131,31568,7310,28125,888,8549,1388,18691], -[1,2343,27374], -[0,27375,27376,27381,2487], -[0,3127,3725,31872,31873,31869,8959,6330], -[0,1192,1170,2675,2968,1177,3188,4039,4042,4333,1637,1457,32826,1894,11401,1610,1193,53,1532,2990,2997,3400,1387,13834,8648,87,1939,31897,31901,4048,68,1938,4077,4069,1895,1955,4055,31899,1567,4067], -"@putout/minify", -"b64-images", -[2,1625,27378], -"readjson", -[0,2295,1739,1745,31903,1179], -[1,2343,27383], -[0,27384,27389,27396,2399], -[0,3445,1437,4747,1544,31910,17964,1836,2151,2182,3084,31915,3000,4151,4562,21847,31911,1549], -"try-catch", -"@arktype/attest", -"bench-node", -"try-to-catch", -[0,1166,1594,2020,2675,1177,4039,4042,2990,31917,4257,19286,31919], -"escover", -[3,19709,16], -"tout", -[2,27391,27392], -"madrun", -"supertape", -[0,17964,2295,1739,1745,31903,1179,200], -[1,2343,27398], -[0,27399,0,27400,2523], -[0,31939], -[0,965,31838,2814,5131,35059], -"brace", -[1,2343,27405], -"-expansion", -[2,27401,27403], -[0,27409,27410,27411,2537], -[2,25824,27403], -[2,4853,27406], -"zstandard", -[0,37135,1209,3847], -[0,48,53,87,90,1193,1503,1843,1845,1177,1895,1903,31952,1938,1954,1958,1959,1970,1192,1894,31953,3744,3775,89,3824,3904], -[0,1843,1192,8745,21009,3717,1448,6270,5472,2275,1973], -"jest-fixed-jsdom", -[1,2343,27414], -[0,27415,0,27416,2523], -[0,1086,31969,1362,31970,4484,4734], -[0,12666,1149,31972,31973,31974,31975,20672,31976,31977,7682,2090,158,3097,6774,5131,31978,31979,1644,1862,3972,31980,2056], -[1,2343,27419], -[2,27423,13083], -[0,0,8134,27420,34352], -[0,1867,23615,1936,18944,18089,31998,2574,20215,6435,1283,23584,6692,22982,4741,32000,32002], -[3,927,11], -[1,2343,27429], -[3,1915,14], -[2,27426,15001], -"signed", -"@prettier/", -[2,19569,27530], -"certificate", -[0,27430,27431,27432,2523], -[0,1448,32006,1869,1291,1180,1287,2151,32007,3127,3183,37708], -[0,1173,1208,1240,1280,1503,32009,1177,2899,3421], -[0,1776,5592,1746,1745,6789,32011,6746,32013,7221,32015,7011,32016,6615,32018,7194,32019,32027], -"fast-archy", -[1,2343,27435], -[0,0,9839,27436,2537], -[0,1177,6741,6939,1932,9711,5547,3624,2295,1745], -[1,2343,27439], -"ufo", -[0,0,27446,27452,2537], -[3,28920,12], -"dom-selector", -"jest-stencil-runner", -"fast-color", -[2,2023,9463], -[2,21195,27444], -[0,2212,4257,4389], -"mobservable", -"reactive", -"frp", -[3,19780,13], -"active", -[0,1745,3966,32037,27018,32038,30248,202], -[1,2343,27460], -"-programming", -[2,27451,27454], -[2,27450,27455], -[3,17943,11], -[2,6649,27457], -"data flow", -[0,15821,27461,27462,2537], -[0,4874,1414,1894,3985,3998,4481,4505,91,1906], -[0,23266,2587,23267,614,6435,1936,2741,11512], -[3,517,14], -[2,3191,1422], -[3,31504,15], -[1,2343,27469], -[2,13163,10101], -"expose-gc", -[0,15821,27461,27473,2487], -"-detector", -[3,20575,13], -"thingies", -[0,23266,2587,23267,614,6435,1936,1623,3585,1644], -"browser-st", -"dout", -[2,27474,27475], -"yargs-", -"@types/depd", -"rser", -"unparser", -[2,27477,27480], -"@11ty/posthtml-urls", -"inclu", -"-language", -[2,8785,27484], -[2,27483,27485], -[2,5340,27486], -"@moch", -"a/docdash", -[2,27488,27489], -"fail-", -"on-e", -[2,10372,4408], -[2,27492,27493], -[2,27491,27494], -"s-utils", -[2,13587,27496], -"inline-links", -[2,3986,27498], -"rewiremock", -"unexpected", -[2,668,27511], -"-eventemitter", -[2,27501,27503], -[3,27504,11], -[2,27505,3053], -[2,27505,3065], -[3,27507,12], -[2,27508,2917], -"uslug", -[3,1208,16,5], -"@11ty/recursive-copy", -"node-retrieve-globals", -[2,9374,27515], -"match-helper", -[1,2343,27522], -[2,5329,11807], -[2,5340,23767], -[2,9309,27520], -"node-loader", -"@zachleat/noop", -[0,27523,27524,27527,2537], -[0,12396,23288,23289,3746,4233,23257,23258], -[0,7729,4874,1414,2854,3493,1894,3985,3998,4505,91,1906], -"test-console", -"xmllint", -[0,23266,2587,23267,614,6435,1936,3493,6892,1633], -[1,2343,27529], -[0,15821,23215,27535,2523], -"-exports", -[2,151,27533], -"lcov", -"moji", -[2,9477,7204], -[0,23266,2587,23267,614,6435,1936,6941,11512,32101,32122,3661], -[1,2343,27538], -[2,120,28708], -[0,27539,27540,27541,4139], -[0,24566], -[0,1999,3165,1894,4387,4389], -[0,6892,1936,1644,1646], -"define-", -[2,14678,3205], -[2,27542,27543], -[1,2343,27548], -"-descriptors", -[2,9395,27546], -[0,0,27560,27561,2523], -"-val", -"ue-fixtures", -[2,27549,27550], -[2,5600,27551], -[3,7810,10], -"-each", -[2,27553,27554], -"s-have-names", -[2,23238,27556], -[3,18432,11], -[2,27558,7083], -[0,4874,1414,23276,2577,2584,3310,1894,3985,3998,4505,91,1906], -[0,1936,23670,10381,1213,11512,32143,12616,7102], -"@types/gopd", -[3,6497,11], -[2,27563,19065], -[3,4637,11], -[2,27565,20102], -[2,27563,27566], -[2,27563,2568], -[3,18491,11], -[2,27569,18985], -[2,13201,4552], -[3,26581,12], -[2,27572,19072], -[3,27573,13], -[2,27574,19077], -[2,27572,15058], -[3,8860,14], -[2,27577,3430], -[3,8860,13], -[2,27579,3022], -[1,2343,27582], -[0,27583,0,27584,2523], -[0,1676], -[0,27,2671,2934,2026,2078,32897,30135,33117,32150,32153,32154,32897,30131,32155,5995], -"@sap/hana-client", -[1,2343,27587], -[0,0,21181,27588,2537], -[0,1623,5260,32164,3561], -[1,2343,27590], -[0,27591,27592,27594,2537], -[0,2711], -[0,24118,24114], -"hrottler", -[0,1172,89,2711,5130,10772,24120,23361], -[1,2343,27596], -[0,27591,27597,27594,2487], -[0,32144,32191,24118,24114], -[1,2343,27599], -[0,0,0,27600,2537], -[0,1172,89,2711,5130,10772,24120,1936,24122,36,965,1388,4042,32199,32200,6802], -"unix-dgram", -"webidl2", -"unittest", -[1,2343,27605], -[0,0,27606,27607,2537], -[0,1700,2323,1637,3561,2494,32214,2482,2549,32215], -[0,1623,6398,6400,5130,5122,32219], -[2,2364,21928], -"-phantomjs", -[2,2463,27609], -[1,2343,27613], -"mockJSON", -[0,27615,27616,27617,2537], -"mockAjax", -[0,3220,4110], -[0,1149,2228,2258,2274,2281,2314,1776,1209,705], -[0,1367,32226,32227,1745,1776,18011,699], -[1,2343,27620], -"faste", -[0,0,27621,27625,2487], -[0,23689,4874,28502,2765,2272,4130,4487,31194,91,31195], -"st-validator", -[2,27619,27622], -[2,5310,2282], -[0,1973,5472,11132,13841,28522,2765], -"@icebob/node-memwatch", -[1,2343,27642], -"@types/bunyan", -"oredis", -[2,8802,27629], -"no", -"@types/pino", -"avsc", -[2,1317,1289], -"cbor-x", -"dd-trace", -"etcd3", -"event-l", -"oop-stats", -[2,27638,27639], -"fakerator", -[0,27653,27661,27663,2523], -"gc-stats", -"jaeger-client", -"kafka-node", -"-repl", -[2,3219,27646], -"msgpack5", -"nats", -"node-n", -"ats-streaming", -[2,27650,27651], -[0,16738,35957,7824,2798,3717,4468], -[2,29351,4255,591], -"notepack.io", -"redlock", -"rhea-promise", -"thrift", -"v8-natives", -[2,4712,13083], -[0,32243,10,13,16,19,21,24,26,30,32,34,53,87,192,22559,19181,442,16738,8755,554,4864,5087,4874,5254,1009,1011,27726,1193,1437,16307,1567,1610,10936,1177,1895,1938,1939,1942,1955,2020,2151,32245,2070,2203,2675,1192,2780,2832,3534,1894,4039,4094,4135,4484,4494,4507,91,4523,4769], -[3,14584,12], -[0,1192,91,1098,5472], -"messagebus", -[1,2343,27667], -"distributed", -[0,27668,27670,27671,2523], -[0,11518,1420,1437,1457,1525,1544,16082,3445,3613,3616,4200,4207,33212,4562,4729], -"ppsm", -[0,53,368,7948,370,554,811,816,32251,842,16145,966,968,972,974,11485,5087,19799,4874,4880,4883,24370,10844,9241,1009,1011,1030,32252,10783,1165,1610,1177,1895,1903,1938,1953,1958,1959,1192,2802,695,3363,3400,3561,37015,32253,1894,89,3824,3847,4039,4042,8849,4057,15277,2278,4315,4383,91,1983,32255], -[0,5472,1192,4967,17758,1676,32264], -[1,2343,27673], -[0,27674,27675,27676,4139], -[0,2757,32269], -[0,32272,32273,2398,2036,2899,5354], -[0,21738,13230,1676,1739,1745,16284,8623,1179,2036,1383,6706,3430,32275,32277,1209,6807,1783,1283,5354,26096], -[1,2343,27682], -"zone", -"timezone", -"olson", -"iana", -[0,27683,27684,27685,2399], -[0,32281], -[0,3088,3310,1187], -[0,3088,32289,4017,36,5995], -[2,5335,553], -[2,1351,27686], -[2,21289,27687], -"-provider", -[2,2138,27689], -[2,23107,27690], -[2,21289,27691], -[2,21289,553], -"worker-", -[2,27694,10057], -[2,21289,27695], -[3,27687,16], -"extdocument", -[2,27697,27698], -[2,4619,27699], -[3,27700,23], -[2,27701,103], -"vscode-uri", -[1,2343,27721], -"cohaszing", -[2,15276,27705], -[3,25072,11], -"monaco", -"@remcohaszing/eslint", -"remcohaszing", -[2,3996,27710], -"yaml-l", -[2,15675,2995], -[2,27712,27713], -[2,27716,27717], -[3,162,22], -"tegrations-common", -[2,8214,27719], -"-pattern", -[2,10853,11597], -[0,27727,27728,27729,4139], -"monads", -"either", -"maybe", -"result", -[2,1101,1177], -[0,26987], -[0,4874,1414,3167,1894,3985,3998,4505,91,1906], -[0,3167,32300,32301,10381,7131,32303,1936,3987,1783,4549], -"-connect", -[2,1304,27730], -"paginator", -[2,10784,27732], -[1,2343,27736], -"free-swig", -[0,0,0,27741,2537], -"gridfs-stream", -"mongodb-", -[2,3764,57], -[2,27738,27739], -[0,3167,614,6435,1936,10368], -[2,17037,15988], -[2,22785,4408], -"@types/rollup", -"istration", -[2,20897,27745], -"GUI", -[1,2343,27753], -"manage-mongo", -"phpmyadmin", -"UI", -"web-based", -[0,0,0,27754,2399], -[0,3167,614,6435,1936,10381,1213], -[1,2343,27756], -[0,0,27763,27766,2537], -"@mon", -"godb-js/saslprep", -[2,27757,27758], -"-string-url", -[2,21404,27760], -[2,27738,27761], -[0,16268,2228,2272,3220,4720,4535,17565,2296,32324,2283,2253,2273,2281], -"socks", -"snappy", -[0,4576,5131,7310,31568,13735,22856,1388,15525,32334,32336], -"mocha-sinon", -"gcp-metadata", -"legacy", -[1,2343,27783], -"erberos", -[2,13053,27771], -[3,7814,10], -"lprep", -[2,27773,27774], -"v8-heapsnapshot", -[3,27759,12], -"zstd", -[2,27777,27778], -[3,15507,14], -[2,27780,1002], -[2,9415,1435], -[0,27794,27808,27809,2537], -"mongodb-c", -[2,20203,7141], -[2,27784,27785], -[3,1982,16], -"@jimp/js-bmp", -"used-imports", -[2,27787,27789], -[3,13547,28], -[2,27791,591], -"@jimp/js-gif", -[0,16868], -"@jimp/js-jpeg", -"@jimp/js-png", -"@jimp/js-tiff", -"kareem", -"mpath", -"mquery", -"sift", -[2,27804,27811], -"acquit", -[3,24788,12], -"acquit-ignore", -"acquit-", -[2,27806,3209], -[0,1192,1177,4468,1894,91,5087,4874,16874,1895,1011,1009], -[0,32345,32346,1623], -[2,3044,5056], -"-blit", -"odm", -[2,27815,27816], -"datastore", -[3,27802,15], -"ur", -[2,27818,27819], -[3,27802,13], -"circle", -[2,27823,27824], -"-callbacks", -[2,1292,27821], -[3,27817,14], -"olor", -[2,27828,27831], -"node-monitor", -[2,21004,14837], -[3,27820,15], -"probe", -"JMX", -"ntain", -[2,27828,10177], -[2,27823,9970], -[2,27818,27836], -[2,9280,3233], -"displace", -"dashboard", -"monitoring", -"control ", -[2,27839,9872], -[2,27842,27843], -[3,27834,15], -"ther", -[2,27818,27860], -[3,6503,9], -"ngodb", -[2,27845,27846], -"-middleware-cast-ids", -[2,3236,27848], -[3,27849,16], -"fields", -[2,27850,27851], -"-callback", -[2,2034,27853], -[2,27850,27854], -[2,27850,14690], -[2,27850,3766], -[2,9251,21404], -[2,27850,27858], -"fisheye", -"gitbook-cli", -"gitbook-", -"plugin-a", -"nker-enable", -[2,27863,27864], -[2,27862,27865], -[3,27866,15], -[2,5317,4147], -[2,27867,27868], -[2,27876,27877], -"edit-link", -[2,27867,27871], -[2,27867,2195], -[2,27867,588], -[2,27850,1676], -[3,27844,14], -"lip", -[2,27818,3428], -[2,27818,10098], -[2,27818,24171], -[2,27818,27882], -"quantize", -[2,27818,24800], -[2,27885,27886], -[3,27883,14], -"otate", -[2,27818,17487], -"@jimp/utils", -[1,2343,27903], -[2,27891,27892], -"@jimp/co", -"nfig-eslint", -[2,24787,27894], -[3,549,17,16], -[2,27896,1984], -[3,27890,13], -"commist", -"node-self", -"help-me", -[2,1983,27901], -[3,19232,22,6], -"mqtt-packet", -[0,27906,23215,27911,2487], -"-allocator", -[2,6988,27904], -[0,9315,34578,31644,26972,32360,32364,32365], -[2,19332,6706], -"wsl-utils", -"monocart-coverage-reports", -"worker-timers", -[0,1644,1936,6843,11043,18944,18089], -"aedes-cli", -[3,5616,9], -[2,27913,202], -[2,11932,27914], -"leak", -"ed-handles", -[2,27916,27917], -"mqtt-", -[2,27919,21404], -"tinyglobby", -"node-style-text", -"level-store", -[2,27919,27923], -[1,2343,27929], -"/subscribe", -[2,20001,27926], -[2,19177,1783], -[0,0,0,27932,2537], -[2,27931,29682], -[3,218,19], -[0,3561,22147,676,134,89,1623,32372], -[2,26343,27934], -"ibus-quod", -[1,2343,27937], -"@tediousjs/connection-string", -[0,27938,21181,27941,2523], -[0,16837], -"msnodesql", -"tds", -[0,1623,5260,3561], -"node-tds", -"qlserver", -[2,3343,27943], -"msnodesqlv8", -"node-m", -[1,2343,27950], -"node-mssql", -"list-dependents-cli", -[0,0,27951,27952,34352], -[0,53,87,32389,10706,32390,1177,2765,2297,2881,2886,2895,2898,2910,2923,29946,3750,3758,4042,4045,6390,4071,4073,25238,824], -[0,22562,3758,3541,13428,32395,32396,5926,5472,11132,3750,28522,824,30271], -"@bundled-es-modules/cookie", -[3,27953,20], -"until-async", -[1,2343,27965], -[3,546,12], -"nfirm", -[2,27957,27958], -"@types/sta", -"tuses", -[2,27960,27961], -"headers-", -[2,27963,6422], -[0,27970,27971,27972,34352], -[2,8140,14643], -"json-bigint", -"page", -"page-with", -[0,1282,2555,3744], -[0,1389,1391,1437,1700,2323,2351,2404,2494,32402,2530,2541,3159,32405,89,3824,4603], -[0,89,5128,4384,32410,4453,6380,2555,5131], -[1,2343,27974], -[0,27975,27976,27977,4139], -[0,32421,688,28208,691,9712,9296,1091,1092,1437,1458,1543,1676,2226,2687,2822,12284,3173,3422,3423,3467,3742,4135,4183,4213,6479,176,36864,28731,4548,13291], -[0,11976,192,5467,9737,32432,29355,27654,811,8850,816,6373,5245,7637,7746,7812,5254,28736,28557,7677,36874,2675,2931,3297,1890,12285,1894,4042,15277,4494,4507,91,1984], -[0,5592,1118,2210,1745,27662,29370,3422,3452,29369,29365,29368,29367,28360,9591,8124], -"append-field", -[1,2343,27980], -[0,0,27985,27987,2443], -"fs-temp", -"testd", -"ata-w3c-json-form", -[2,27982,27983], -[0,5535,972,5087,4880,4883,34722,1009,1011,1597,1701,1177,1895,1955,1959,1961,2193,32447,1192,32448,3165,30935,32449,1894,89,3824,34725,4201,4468,91,32450], -"formdata", -[0,89,31611,5128,20542,4439,32453,1473,6400,13161,30858,3807,7320,31152,6653,32454], -[1,2343,27989], -[0,27990,27991,27993,2537], -[0,11804], -[0,87,90,4880,1843,1845,1192,3775,3904,4042,4045,4055,4067], -"array-union", -[0,4576,5131,7310,31568,13735,22856,1388,32464,32465,15525,11415,7201], -[3,20454,11], -"oxy-addr", -[1,2343,27997], -[0,0,27998,28000,2537], -[0,192,4874,4880,4883,4887,1009,23648,1177,1895,21564,1938,1953,1955,1958,1959,2675,1192,2990,3165,1894,3720,89,3824,3885,3889], -"pend", -[0,89,7433,38,3884,3885,32473,3286], -[3,32265,24], -"@jsumners/line-reporter", -[1,2343,28005], -"vue-drag", -[0,0,28006,28011,2537], -[0,3421,2832,2297,2899,89,3875,4193,1145,1177,1209,3698,4072,9381,1503,1593,3729,2924,1317,3824,32487,91,53,4874,2900,3876,4880,1195,8821,2925,107,2069,4883,87,4884,1959,3904,32488,966,2904,2881,2912,2895,38299,1011,11470], -"test report", -"html ", -"html report", -" to ", -[0,2062,4162,89,3797,32491,1693], -"json to html", -[1,2343,28014], -[0,0,0,28015,2537], -[0,3857,5131,12295,12296,6574,2090,11328,30045,32497,2636,2295], -[1,2343,28017], -[0,0,28018,28019,2537], -[0,97,4880,5091,89,3857,91], -[0,3857,5128,31912,89,5131,12295,12296,181,15571,35060,32504,158,32505], -[1,2343,28021], -[0,26338,28028,28029,2523], -"tory-reporter", -[2,2916,28022], -"mezr", -"web-a", -"nimations-js", -[2,28025,28026], -[0,1178,1177,1879,1895,1938,1947,1955,1959,1894,32510], -[0,3857,5128,31912,89,5131,12295,181,3730,32516,27819,9906,10036,32527,32529,1478,7521], -"bin-packing", -[1,2343,28032], -[0,28037,28041,28053,2537], -[2,20876,28090], -"autolink-", -[2,28001,26766], -"sqlstring", -[0,1654,32535,1655,1660,3744], -[2,27679,2085], -"urun", -"utest", -[0,32538,10821,14689,10828,32540,1178,1193,38304,1668,1177,1903,1938,1954,1958,1959,32541,1970,2675,1192,2990,1894,3720,89,3857,32510,3904], -[2,28050,28065], -[2,28887,28044], -"v2", -"aws-s", -"sl-profiles", -[2,28045,28046], -"generate-", -[2,28048,3046], -[3,29934,12], -"placeholders", -[2,5773,28051], -[0,3857,5128,31912,89,5131,12295,12296,13814,15480,9816,1653], -[1,2343,28055], -[0,28060,28061,28062,2487], -"assert-diff", -"sync-await", -[2,15907,28057], -"poku", -[0,2018], -[0,5079,1177,21166], -[0,3857,5128,31912,89,5133,5131,12295,12296,181,24633,32543,32552], -[1,2343,28064], -[0,28066,28068,28070,4139], -"vitest-pool-workers", -[0,21174,4649], -"thenify", -[0,32558,48,53,5241,85,87,14128,90,365,370,6372,811,816,6373,972,20562,4880,1178,1193,1610,1177,1895,1935,1939,1958,1959,1961,2126,29945,2193,32559,1192,30935,1894,3720,89,3824,32561,3904,4039,4042,4045,4073,91], -[2,31468,31471], -[0,89,32225,30245,4627,5398,8190,8191], -[1,2343,28077], -"bats", -[2,28075,28493,28553], -"switcher", -"@", -"@prisma/dmmf", -[0,28079,28081,28082,4139], -"gable-next", -[0,32571,31528,1461], -[3,29754,14], -[0,30533,5535,966,968,972,32573,4859,4874,4880,4883,1030,16480,1651,2832,23535,89,3824,4201,1531,4484,91,1984], -[0,89,6398,5066,5131,9320], -[1,2343,28086], -[2,28085,3259], -[3,28092,16], -[0,28087,28089,28096,2399], -[0,4484,32597], -"couchdb", -[0,32632,5535,4201,89,3824], -"spanner", -[2,30534,4675], -"@testcontainers/postgresql", -"fastest-", -[2,28093,18729], -"rtl-css-js", -[0,89,590,1623], -[1,2343,28099], -"iconista", -[0,0,28102,28104,2537], -"pnpm10", -"libreact", -[0,1148,2899,3697], -"jsxstyle", -[0,1623,1473,32453,2585], -[1,2343,28106], -[0,28107,0,7573,2523], -[0,32733,1004,32730,32737,32739,32744,32722,32736,32741,32720,32678,32725,32727], -[1,2343,28109], -[0,0,28110,27147,2523], -[0,53,87,92,192,5467,5583,16952,6373,10615,5087,4874,1009,1011,1031,17584,1178,1193,19839,1540,1610,1177,1903,1938,1954,1958,1988,2193,2675,2742,1192,2780,2990,4039,4042,4076,91,4630], -[2,30495,28112], -"lysia", -[1,2343,28114], -[0,0,28124,24467,4139], -"gitcloud", -"hasbin", -[2,34316,3863,34320], -"page-icon", -"premove", -"@types/hasbin", -"@types/pa", -"ge-icon", -[2,28121,28122], -[0,8144,1465,1584,1628,2092,6327,3177,1894,4028,2278,4111,4469,91,4027,2924,4677,4689], -"desktop", -"@vue-macros/common", -[1,2343,28128], -[0,2513,28129,28131,2537], -[0,5535,4201,968,972,32632,2780], -"proxy-lib", -[0,89,1564,32775,32776,32777], -"font-finder", -"pbxproj-dom", -"montag", -"simple-plist", -"ios-device-lib", -[2,21464,1155], -"proper", -"-light", -[1,2343,28146], -"-lockfile", -[2,28138,28141], -"ios-", -"sim-portable", -[2,28143,28144], -[0,28148,28149,28156,2487], -[2,28457,28462], -[0,32782,4484], -[0,5535,4201,32632,32786,1845,89,3824], -"-merge-patch", -[2,2072,28150], -[3,26989,11], -"ackage", -[2,28152,28153], -"@nativescript/doctor", -[0,32788,89,32789], -"-dev-xcode", -[2,3271,28157], -"provi", -[1,2343,28168], -"sion-finder", -[2,28159,28161], -[2,5131,28162], -[2,28143,28163], -"@rigor789/trapezedev-project", -"@rigor789/", -[2,28166,14562], -[0,28169,28170,28171,2523], -[0,1593,97,32796,32795], -[0,695,3709,2924,1628,91,53,2969,4677,1195,4307,32808,4689,87,4359,4681,92,83,1198,5756,61,78,76], -[0,7201,1676,5131], -[2,32904,364], -[1,2343,28174], -[0,0,28181,28185,2399], -"@types/pl", -"ist", -"@types/plist", -"@types/retry", -[3,5364,9], -[2,28179,3924], -[0,4874,9743,4579,1983], -"@types/pacote", -"btab", -[2,8153,28183], -[0,1983,5130,6731], -[1,2343,28188], -"@types/tunnel", -[0,0,28201,28212,2523], -"@types/xml2js", -"@types/ar", -"chiver", -[2,28190,28191], -"@types/qr", -"-image", -[2,28193,28194], -[3,7810,11], -[2,28196,2138], -[3,13418,17], -[3,5090,11], -[2,32904,4412], -[0,1175,1195,1267,1610,1628,2092,3342,8119,4111,32821,4307,188,4634,4639,4640,4645,2924,4681], -"er-lockfile", -[2,28199,28202], -"@types/np", -"mcli__arborist", -[2,28204,28205], -[3,9315,10], -[2,9710,15774], -"al-analytics", -[2,9788,28209], -[2,28207,28210], -[0,9006,29633,32827,32828,32829,32830,32831,4967,32832], -[1,2343,28216], -[2,31819,31823], -[3,27933,13], -[0,28217,0,27026,4139], -[0,1415,1842,31290,31331,4562,31386,6330], -[1,2343,28226], -"afinn-165", -"-fin", -"ancialmarketnews", -[2,28220,28221], -[2,28219,28222], -"apparatus", -"memjs", -[0,0,28227,28250,2523], -[0,48,53,61,78,87,92,5601,32840,5087,4874,15600,1009,1011,1175,1193,1198,1177,1881,1895,1938,1955,1192,11948,1894,4131,91], -"stopwords-iso", -"@libsql/client", -"wordnet-db", -[2,31005,26449,28684], -"browserfs", -[2,2441,20008], -"pegjs", -"uubench", -[2,32904,2942], -" language processing", -[2,3273,28237], -"arti", -"fical intelligence", -[2,28239,28240], -"Porter stemmer", -"Lancaster stemmer", -"bigram", -"trigram", -"quadgram", -"ngram", -"stemmer", -"bayes", -[0,1192,2022,6703,1149,7003,1862,11857,5472,2275], -"classifier", -[1,2343,28254], -"phonetic", -[0,28255,28257,28259,2523], -[0,28502,4130], -"metaphone", -[0,23689,28556,2323,31190,2765,3560,31541,91], -"inflector", -[0,5472,11132,13841,28522,13426], -"Wordnet", -"tf-idf", -"logi", -" regression", -[2,17132,28263], -[2,28262,28264], -[2,4420,28256], -"jaro-winkler distance", -" distance", -[2,26006,28268], -"string ", -[2,28270,26017], -"-of-speech tagger", -[2,3251,28272], -"Eric Brill", -"Brill tagger", -" analysis", -[2,4137,28276], -"maxim", -"um entropy modelling", -[2,28278,28279], -[1,2343,28284], -"@mrleebo/prisma-ast", -[2,31733,21302], -[0,28292,28293,28294,2537], -"secure-keys", -[2,28288,6008], -"nconf-yaml", -"@prisma/c", -"key value store", -[2,18124,13729], -"plugabble", -[0,1086,1437,1700,2070,2714,3183,3760,705,4039,4135,4734], -[0,13194,7740,28197,4865,29105,23689,9129,7892,4874,11304,16936,20959,28502,5254,28189,28556,2323,31190,2765,4089,4130,91], -[0,1098,1973,5472,3750,11132,13841,28522,4130], -[1,2343,28296], -[0,9756,9839,28297,2537], -[0,1871,6843,3656,4289,7062,6922,6981,6701,6581,6700,1111,1867,5281,200,6876,7009,7201,6575,6611,6795,6960,7135], -[1,2343,28299], -[0,7558,28300,28301,2523], -[0,4874,668,32894,2929,32895,91,4579], -[0,32901,23542,5130,23543,6812,27,5592], -[1,2343,28305], -"near social", -"bridge", -[0,28306,0,28307,4139], -[0,2856,32889,2822,5307], -[0,29699,32891,1541,1745,29703,29753], -[1,2343,28311], -[3,18018,14], -[2,28309,1633], -[0,0,28313,28315,2487], -"exec-time", -[0,1429,4856,4874,32903], -"@lit/context", -[0,32910,37123,32911,32912,32913,13428,5472,6533], -[1,2343,28317], -[0,28318,0,26863,2399], -[0,32918,32919,1699,3547], -[1,2343,28320], -[0,6263,0,28321,2523], -[0,89,5128,9267,553], -"@codspeed/", -"payload", -"@fig/complete-commander", -"@golevelup/nestjs-discovery", -"xhr2-cookies", -[2,30999,30499], -[1,2343,28330], -[2,28338,28349,28603], -[0,26964,0,26997,2537], -"@postman/tough-cookie", -[2,15679,19490], -"chardet", -[1,2343,28337], -"liquid-json", -"postma", -[0,26964,0,27001,2487], -"@interna", -"n-collection", -[2,28336,28339], -"-transformer", -[2,28340,28341], -"postman-", -[2,28343,705], -"postman-r", -[2,28345,96], -"d-error", -[2,14628,28347], -"tionaliz", -"@postman/", -[1,2343,28359], -"shipit", -[2,28350,28352], -[2,29833,17978], -"file_lint", -[2,17878,28355], -"parse-git", -[2,28357,2687], -[0,28364,28381,28409,2537], -"postman", -[2,178,28363], -"rest-client", -"rack-changes", -[0,32953,25996], -"@profoundlogic/hogan", -[3,2665,10], -"@grpc/grpc-js", -"@grpc/", -"print-sizes", -"proto-loader", -[2,28368,28370], -"@newrelic/security-agent", -"@tyriar/fibonacci-heap", -"in-the-middle", -[2,2701,28374], -"module-de", -"s-from-path", -[2,4378,28377], -[2,28376,28378], -[2,4013,28374], -[0,13662,1389,35268,4389], -"@aws-sdk/s", -"3-request-presigner", -[2,28382,28383], -"@koa/router", -"@newrelic/", -[2,28386,7625], -"-oss-cli", -[2,3284,28388], -[2,28386,28389], -"test-util", -"ities", -[2,28391,28392], -[2,28386,28393], -"@slack/bolt", -"@smithy/eventstream-codec", -"@smithy/", -"util-utf8", -[2,28397,28398], -"borp", -[2,16306,20353], -[3,4962,10], -"iler-runtime", -"git-r", -"aw-commits", -[2,28404,28405], -"CKEditor", -"self-cert", -[0,7518,5398,17819,18266,32958,12075,32960,4967,1389], -[1,2343,28412], -"debugging", -[0,28414,28424,28430,2537], -"profiling", -[0,32980,32981,32983,32984,32986,1398,1437,1443,1759,1763,2018,2071,37853,2182,2212,2687,2720,17450,2856,32987,32988,9478,3729,4135,4164,4400,91,32990,32993,32989], -"unlimited-timeout", -"WYSIWYG", -"WYSIWYW", -"@panva/hkdf", -"id-client", -[2,3445,28419], -"-to-string", -[2,694,28421], -[2,3698,28422], -[0,188,32996,32997,33004,33007], -"@types/oauth", -[2,4874,3360], -"@next", -"is-in-ssh", -"powershell-utils", -[0,32940,33010,5130], -[1,2343,28437], -[3,13983,14], -[2,28432,89], -"-pragmatic", -[2,13062,28434], -"@edge-runtime/jest-environment", -[0,28447,28448,28449,34352], -"oauth2", -"nextauth", -"seneca-transport", -[2,36883,28443], -"rich-text", -"astify", -"async ", -[2,28444,1852], -[2,28444,5746], -[0,97,33015], -[0,1192,2278,2675,89,1843,1177,2924,1894,1610,3824,48,1628,3988,91,53,2990,3400,4111,4677,4880,1195,4307,33020,33021,9310,28809,10837,87,11011,90,1959,827,33023,1895,1947,1955,2780,92,10821,29872,10840,1011,10825,83,1009,32341,28970], -[0,89,4627,26612,35126,33026,5131,29832,91,33027,33033], -"grammy", -[1,2343,28463], -"qs-esm", -"TestBed", -"how-to", -"@scripts/build", -[2,28573,553], -[3,14691,18], -[2,32700,28478], -[2,12392,1098], -"dataloader", -"bson-objectid", -"nboarding", -[0,28481,28492,2514,2537], -"render-jsx", -"@rolldown/pluginutils", -[2,28472,1973], -"localhost", -"tunneling", -"webhook", -[2,28471,28596], -[3,37983,14], -[3,34476,19], -[2,16639,15112,28475], -"onesy", -"hecker", -[2,16639,28477], -"vitest-runner", -"grab", -[2,28489,28490], -"deep-defaults", -[0,1437,1483,1525,3127,14774,4135,33043], -[2,10740,28487], -"enqueue", -[2,14185,4225], -"minstache", -"sliced", -"table-printer", -[2,3192,5701], -[3,30527,35], -"collisions", -"@rstest/core", -[0,8147,33046,4874,5254,33047], -[2,28508,28526], -"@nightwatch/chai", -[3,28494,12], -[3,2791,13], -[2,28496,2324], -[2,28495,28497], -[2,3294,11496], -[2,28495,28499], -"lenium-webdriver", -[2,5252,28501], -[2,1432,3294], -[2,11097,20500], -"didyoumean", -[3,28499,11], -"@amaui/ui-react", -[3,5069,14], -"axe-verbose", -[2,28506,28509], -[3,17011,11], -[2,28511,57], -[3,31827,17,5], -[2,4925,4381], -[3,28514,12], -[2,11937,16609], -[2,28515,28516], -"@payloadcms/translations", -"wait-on", -[1,2343,28527], -[2,3294,676], -"selenium", -"automat", -"ed-testing", -[2,28523,28524], -"acos", -[0,28528,28529,2514,2537], -[0,35198,4763,1497,1687,33057,4361,1983,1082,1371,1676,9348,12449,977,1636,11480,3958,4135,11501,1458,11478,668,33058,28564,2822,6042,3479,3742,29535,33059,26379,4955,33149,3530,25648,4542,28623,33061,11869,27921,5732,33062,2628,3090,4748,2007,33063,19639,7610,37014,33064,4555,33065,33068,29533,33069,10895,5210,9485,33070,33071,3749,33074,33075], -[0,23813,2278,4042,4548,1984,1448,4549,33080,30138,33082,91,12396,2024,3975,5245,33390,30559,5254,33083,34673,7637,7812,12127,3327,8648,20374,11868,23312,33084,7744,21626,3963,33087,33088], -[1,2343,28536], -[2,28532,28547], -[3,11555,18], -"text-", -[2,28533,9254], -[2,11122,28534], -[0,28538,0,2514,2523], -[3,11138,16], -[0,1506,33093,3460,4535], -"mochify", -[3,4887,19], -"-universal", -[2,3752,28541], -[2,3752,1289], -"@backstage/backend-common", -[1,2343,28546], -[0,28548,28549,28551,2399], -"owellformed", -[0,1512,2151,2720], -[0,1177,1939,1192], -"propagate", -[0,8310,1179,8635,200,28582], -[1,2343,28555], -[3,31893,18,13], -[2,12302,28732], -[0,0,28560,28561,2399], -"clang-format", -[2,23260,28729], -"n-api", -"napi", -[0,811,816,1437,1836,1177,1895,1938,33110,14282,2674,2675,2990,2899,6041,1894,4039,4042,4055,33111,4232,4390,11482], -[0,4989,1283,3358], -[1,2343,28563], -[0,0,28571,2514,4139], -"fontace", -[2,14743,4504], -"ffee", -[2,2251,28566], -"grunt-i", -[2,2426,2499], -[2,28568,28569], -[0,1009,1011,1177,1883,1895,1915,1938,1947,1955,1959,1961,2675,2990,1894,89,91], -"baseline-browser-mapping", -[3,4090,11], -[2,28606,8734], -"host-validation-middleware", -[2,16826,5260], -[2,14614,28576], -"used-de", -"ps-analyzer", -[2,28578,28579], -"@4c/rollout", -"skeleton", -"formate", -[1,2343,28587], -[2,5559,27], -[2,28689,89], -[0,28597,28600,28601,2537], -"dynamic-", -[2,28588,1681], -"filewatcher", -[2,28914,594], -"xunit", -"tap-xunit", -"nextjs-api-reference", -[2,30999,28884], -"l", -[0,33139], -[2,31222,31227,31234], -"subdir", -[0,6503,1699,2899], -[0,5122,1973,8791,33143,2899,5130], -[1,2343,28609], -"ed/date", -"char-regex", -"emojilib", -"@scripts/", -[2,28616,6988], -"skin-tone", -[0,0,28621,28622,2537], -"s-per-line", -[2,16233,28610], -"cspell-config-lib", -"emojis", -"smiley", -"smileys", -[3,28329,19], -"smilies", -"ideogram", -"ideograms", -"@nuxt/fonts", -[0,5535,5087,1009,1011,33175,25917,35358,1473,1177,1895,1955,2070,1192,1894,4042,4073,4076,4201,4443,4468,4474,4484,91], -[0,1473,57,6270,4439,32453,6616,30289,33190,30291,620,33201,31453,1623,33203,6653,33205,33207,3178,33216], -"unstorage", -"fetch-blob", -"ttypescript", -[2,1432,7253], -"nsumers", -[2,25687,28627], -"jsdoc-to-mdx", -[1,2343,28633], -"@nuxt/icon", -"@nuxt/kit", -[0,5914,28661,28662,2487], -"igitalbazaar", -[2,27235,28634], -[2,19946,2903], -"-websocket", -[2,6710,28637], -[2,27694,1194], -[2,28660,32819], -"aes", -"asn", -"asn.1", -"cbc", -"csr", -"des", -"gcm", -"hmac", -"pkcs", -"pki", -"prng", -"rc2", -"rsa", -"sha256", -"sha384", -"sha512", -"tls", -"x.509", -"x509", -[3,218,21], -[0,30533,192,5467,30535,10614,6494,5087,4874,1009,1011,1177,1895,2675,1192,1894,3980,4468,91], -[0,30538,6710,14584,91,30540,30543,5130,29752], -[1,2343,28665], -"seneca-joi", -[0,26964,0,26966,4139], -"c2dm", -"fcm", -[1,2343,28669], -[0,28670,28671,28682,4139], -[0,33071,30616,26407,26411,12396,7637,9363,26414,26415,23276,2577,2584,2588,2681,2822,37507,3090,26418,26568,12429,26421,3958,9393,12443,4542,4549,4555,12449], -[0,8648,4874,7677,34683,26431,1984], -"@nuxt/schema", -"@nuxtjs/color-mode", -"geocoder", -"pulse", -"geocoding", -"geo", -"mapquest", -"agol", -"arcgis", -"tomtom", -[0,1739,1745,34683,26440,26445], -[1,2343,28695], -"libsql", -[2,28694,176], -[3,5781,10], -"l-backoff", -[2,28686,28687], -[3,21276,15], -"require-in", -[2,28690,2429], -"piña", -"pigna", -[3,30585,14], -[0,28696,28697,28662,2537], -[0,2026,3951], -[0,30533,192,5467,1300,30535,10614,6494,5087,4874,1009,1011,1177,1895,2675,1192,1894,3980,4468,91], -"high5", -[2,12075,57], -[1,2343,28705], -"js-parser", -[2,1936,28701], -"-benchmark", -[2,15512,28703], -[0,28730,28750,28758,2537], -"mocha-each", -"neutron-html5parser", -"ookmark", -"colortranslator", -[2,15277,12610], -[2,28712,28725], -[3,10130,17], -"biased-opener", -"data-uri", -[2,25894,28714], -"v8-debug", -"v8-profiler", -[2,28742,28749], -[2,28720,28721], -[3,32265,26], -"ble", -[2,28723,7059], -[3,12133,21], -"vitest-browser-react", -"ber-animation", -"dummy", -[2,23814,28898], -"http mock", -"zipper", -[0,3951,4474], -"toposort", -"quality-insights", -"growly", -"words", -"shellwords", -[2,28738,28741], -"nexe", -"@types/to", -" center", -[2,9044,28739], -"posort", -[3,26699,15], -"mac os x 10.8", -[2,4402,3329], -"windows ", -"8 notification", -[2,28745,28746], -"toaster", -"auto-height", -[0,192,5467,10614,6494,5087,4874,1009,1011,1437,1177,1895,2675,1192,1894,3980,4468,91], -"tabbable", -[2,8180,594], -[2,29518,28757], -"@radix-ui/react-checkbox", -[2,28756,45], -[3,28754,16], -"vfs", -[0,30538,6710,91,30540,30543,5130,29752,5995,6082], -[1,2343,28760], -[0,26964,0,26966,2537], -[2,28762,9006], -[3,28718,20], -[2,3958,28764], -[3,26414,16,5], -[1,2343,28767], -"@internal/test-utils", -[0,26964,0,26997,2443], -"ps-list", -"code-blocks", -"pty", -[2,6426,7009], -"forkpty", -"openpty", -[1,2343,28787], -[2,28776,28777], -"expressi", -"ve-code", -"@node", -[2,9057,3642], -[2,28793,28798], -"-red/util", -[2,28778,28781], -[2,3341,2110], -"@node-red/", -"nodes", -[2,28784,28785], -[0,25316,28788,28796,2537], -[0,603,11018], -[2,216,28812], -[2,28784,7047], -"editor-api", -[2,28784,28791], -[3,28718,19], -"iot", -"fix-dts-default-cjs-exports", -[0,188,4646,1542,32977,28692,28693,32312,5592,18496,5490,91,4799,998,6953], -[2,28826,16860], -"play", -"sass-graph", -[2,1152,14741], -"stdout-st", -[2,28801,2187], -"-case-path", -[2,4938,28803], -[2,28742,28875], -[2,4550,13786], -"@jsopen/objects", -[1,2343,28810], -[2,34443,25240], -[0,28819,28820,5893,2523], -"modern.js", -"alpha-function", -"long-timeout", -"sorted-", -[2,20096,20835], -[2,28814,28815], -[2,30633,30886,31217], -[3,1419,11], -[0,28751,444,28752], -[0,90,28754,28755,968,972,974,4880,4883,1030,1497,89,3824,3882,3885,4023,8187,28724,1541], -"recurrent", -[1,2343,28823], -[0,28824,28825,28828,4139], -[0,28763], -[0,34683,2020,28766], -"unplugin-", -"deepcopy-esm", -[0,26445,28769,1745,28775,9348,28779,26440], -[2,9357,28832], -[2,28831,30581], -[3,12447,17], -"-convert", -[1,2343,28834], -[0,0,0,28835,2523], -[0,30999,28818,5995], -[1,2343,28839], -"fs.watch", -"watchfile", -[0,28840,28841,28848,34352], -[0,28775], -[0,9363,9315,23312,3978,3992,3999,9348,4549,12449,28766], -"stories", -[2,819,664,33355], -"ngn", -"daemon", -" logging", -[2,2013,28846], -[0,28769,1745,28775,9348,28779], -"elevate", -"sudo", -[1,2343,28852], -[0,28864,28867,28870,4139], -"store2", -[2,28855,7625], -[3,28518,12], -"@mgcrea/eslint-config-node", -"-lts", -[2,19439,28857], -"node-ipc", -"excel", -"xls", -"zeptomatch", -"picoquery", -[0,2121,2127,1690,2024,4507], -"rolldown", -"amaui", -[0,28470,2180,5476,5478,1414,2198,91], -" extend", -[2,6970,28868], -[0,2313,1383,614,202,1388,5995,4967,1145,1973,1429,2340,2350], -[1,2343,28886], -[2,13402,2942], -[2,28874,8817], -"@appium/s", -"class-names", -"firefoxos", -"combyne", -"for-publish", -[2,1463,28878], -[2,31228,14372], -"libgit2", -"git2", -[2,28742,26542], -[3,31782,22,5], -"vendors", -[0,0,28888,28889,2523], -[2,9191,3595], -[0,1330,1389,1596,2759,2899,4170,4535], -[0,20215,4741,2574,36796,6847,1965,1867,10368,7131,1155,1936,1623,14419,37953], -"libbase64", -"libmime", -"libqp", -"ntlm-auth", -[2,26444,28893], -[2,13857,9224], -[2,28742,188], -"Nodemailer", -"hun-ky", -[2,32723,28900], -"hex-color", -[2,28902,28905], -[3,28899,21], -"undefsafe", -"pstree.remy", -"sl-color", -[2,32723,28907], -"rgb-color", -"autoload", -[2,31281,4202], -[2,819,45], -[2,28742,28916], -[2,6097,6142], -[2,15701,28915], -[3,693,10], -"vision-history", -"wheel-gestures", -"multimeter", -[1,2343,28975], -[2,30211,30221], -"@asamuzakjp/css-color", -"node-webkit", -"drc", -"lz4", -"potx", -"xltx", -"dotx", -"async-redis", -"ipfilter", -[2,2032,28928], -"express-ws", -"xltm", -"ots", -"json-logic-js", -"json-sql", -[2,7060,1146], -"line-reader", -"mocker", -"-data-", -[2,28938,1179], -[2,28937,28939], -"pino-pretty", -"odg", -"otg", -"promise-mysql", -"stjs", -"otp", -"ott", -"uuid-random", -"docm", -"nolang", -"Programming", -"programm", -"ing language", -[2,28952,28953], -"dotm", -"descriptive", -"5GL", -"potm", -"json schema", -"Mehdi Salartayefeh", -"pptm", -[2,8293,200], -[2,8293,3561], -"knitwork", -[2,28968,28969], -" parser", -[2,5675,28966], -"esbuild-re", -"act-compiler-plugin", -[2,28971,1172], -[3,29874,35], -[2,28973,4298], -[3,5240,29], -"ohash", -[0,28989,0,28990,2523], -"admin-panel", -"absolute", -"backslash", -"delimiter", -"file-path", -"forward", -"slashes", -"trailing", -"unix", -"urix", -"headless-cms", -[2,1917,11597], -[2,819,3877,29320], -[0,28507], -[0,45,29,36246,89,4967,6400,5995,10768,5122,1388,5284,676,91,202,6710,6082,28866,594], -"normaliz", -[2,28991,5218], -"normali", -[2,28993,6079], -[1,2343,28998], -"simplify", -"canonical", -[0,29046,0,29047,34352], -[2,29171,594], -"lit-analyzer", -[2,32700,29003], -"mouse", -"attract", -"mouse wheel", -[2,29006,29007], -[3,26450,35], -"ubble", -[2,32700,1544], -[2,29010,29011], -[3,31198,35], -"ause", -[2,32700,34141], -"escape-goat", -[3,9577,11], -"from-git", -[2,29014,29015], -"teractive", -[2,20043,29017], -[2,28489,29003], -"is-scoped", -[2,29027,29029], -"issue-regex", -"listr-input", -"new-github-release-url", -"npm-name", -"p-memoize", -[3,32722,21], -"map-obj", -"asing-quad", -"write-package", -[2,32731,3924], -[2,29033,4390], -[3,26495,20], -[2,29035,29036], -[3,28909,22], -"troke-color", -"is-cidr", -"ts-lit-plugin", -"libnpmorg", -[2,33533,29041], -"ormatjs", -"libnpmpack", -[3,29818,15], -"libnpmteam", -"MDX", -[0,28872,28873,13411,4507], -[0,13428,5284,28522,11132,12295,12296,28876,5472], -"fs-m", -"reka-ui", -[2,37399,29156], -"fs-minipass", -[1,2343,29064], -"npm-profile", -[2,2977,7193], -"@sigstore/tuf", -[2,2977,15525], -[2,636,1541], -"audit-report", -[2,3382,29058], -"-pipeline", -[2,21505,29060], -[2,4570,2649], -[2,3382,29062], -[0,26871,0,26863,2399], -"relative-date", -[2,11072,29065], -[2,28093,26006], -[1,2343,29074], -[2,636,3358], -[2,636,1739], -"@tufjs/repo-mock", -[3,26037,13], -[2,29072,2203], -[0,29075,0,7573,2537], -[0,1004,31231,32914,28909,31262,31272,28899,28901,28906,31282], -"-draft2019", -[2,1092,29076], -[1,2343,29119], -[2,29080,29081], -[3,23075,14], -"rrect-media-syntax", -[2,29089,29090], -"-record", -[2,17495,29083], -"giturl", -"nfig-loader", -[2,18323,29086], -"semver-diff", -[3,32593,24], -"ort", -[2,29092,29094], -[3,32686,13], -"outdated", -"dx-jsx-attribute-sort", -"updating", -"updater", -[2,29098,29099], -[3,29091,20], -"no-void-children", -[2,29098,29107,29118], -"@trivago/prettier-plugin-sort-imports", -[3,27782,13], -[2,29102,8961], -[2,13197,176], -"@types/ini", -[3,8141,13], -"quote-st", -"helpfulerror", -[2,16476,29108], -[2,29106,29109], -[2,7726,27005], -"@types/npm", -"-registry-", -[2,29113,1612], -[2,29112,29114], -[3,16478,13], -[2,29116,13722], -"yle", -[0,0,0,29163,2537], -[2,2645,89], -[3,6544,14], -[2,29121,594], -"pdate-", -[2,29123,3329], -[2,7817,29124], -[3,1898,15], -"aine", -[2,29126,29127], -"fp-and-or", -[3,9506,11], -[2,117,29153,29494], -[2,29098,29134,29135], -"jsonlines", -"self-clos", -"e", -"prompts-ncu", -"postcss-clean", -[2,25813,594], -[2,4524,2845], -"verdaccio", -[2,8551,4675], -"vite-node", -[2,29145,29146], -"upgrade", -[3,29132,21], -"horthand-attribute", -[2,29098,29148], -"unique-attribute-name", -[2,29092,29150], -"edia-style", -[2,32704,29152], -"idden-table-cell", -[3,6138,9], -[2,7686,4692], -[2,22060,3122], -"variants", -"ypescript-tc", -[2,22060,29157], -[3,17312,29], -[2,29159,12844], -"unplugin", -"auditor", -[0,45,29,36246,89,4967,6400,5995,10768,5122,1388,5284,676,91,202,6710,6082,28474,594], -[1,2343,29167], -[2,28826,29166], -"auto-import", -[0,26964,0,26966,2487], -"variadic-function-arguments", -"mutate-fs", -"@publint/pack", -[3,1014,15], -[1,2343,29173], -[0,29177,0,21958,2537], -"minizlib", -"minipass-", -[2,29175,1612], -[0,4729,2070,31705,4747,4135,1862,1301,1525,2731,4116,1109,1193,31856,3145,4705,31859,3717,3878,1079,31861,28512,31864,24169,3957,31867,2784,31871,31877,31880,31884,31891,21129,31896,28073], -"fast-equals", -"registry", -[1,2343,29199], -"autodocs", -[2,31092,3452], -"@pm2/blessed", -"padend", -[2,18996,29184], -[2,29189,27863,20181], -"ysticatea", -[2,16693,29187], -[3,28544,19], -"commandline", -"npm-scripts", -[2,29193,1541], -[3,28544,11], -[2,29193,11857], -[2,29196,29198], -[3,31303,12], -"neostandard", -"ise-router", -[0,29216,0,7573,2399], -[2,29189,11017], -[2,29202,29203], -[3,29192,12], -"atalog-model", -[2,29202,25240], -[2,29193,13224,29206], -"atalog-common", -[2,29209,202], -[2,28270,6270], -[3,29205,26], -"yarn to npm", -"@daybrush/jsdoc", -"backstage", -"ci/cd", -"immobiliare", -[2,29214,12825], -[0,28880,1004,29031,29032,31244,1418,26495,32926,26483,26489,32934,29021,29034,28458,31198,29012,29009,26450,29005,26482,30527,29001,29008,1445,29019,28479], -[1,2343,29221], -"npm upgrade", -[2,28826,10309], -"vaul-vue", -[0,29223,29225,26824,2523], -"rgv", -[0,4484,29755], -[2,1262,25816], -[0,89,1177,4039,4042,1894,3824,91,4874,4880,3884,4883,3885,28540,8656,8660,4887,10817,1011,1009], -[2,34674,588], -"npm-cli", -[2,29229,29303], -"@hyrious/esbuild", -[1,2343,29232], -"ntainer", -[0,29256,29257,29258,34352], -[2,26109,28923], -[3,28200,13], -[2,29240,29249], -"@cropper/", -"are-", -"we-there-yet", -[2,29237,29238], -[3,10309,13], -"image-cropping", -[2,29243,3642], -"image-view", -"image-processing", -"cropper-element", -"mocha-jsdom", -[3,31831,14], -[3,5926,13], -"-type-helpers", -[2,29254,29255], -"cvss", -"-npm-utils", -[2,19773,29252], -[3,3978,9], -"arry-night", -[0,29186,29192,29194,1364,2026,29195,2664,4709,4757], -[0,29200,29201,29204,29205,29207,6494,9240,3244,4342], -[0,29212,17978,29213,29214,29215,5995], -"@asteasolutions/zod-to-openapi", -"gluegun", -"@trpc/server", -[2,17612,29264], -"nuke", -"custom-alias", -[2,4026,29266], -"tspaths", -"@nuxt/eslint-config", -"event-driven", -"money", -"blaze", -"percentage", -[1,2343,29274], -[2,8293,1983], -[0,26964,0,26997,2523], -[1,2343,29278], -"a-sync-waterfall", -"asap", -[0,0,29286,29287,2537], -[2,3522,364], -[2,3192,29279], -[3,29280,16], -[2,29281,2759], -[2,5223,8861], -"s-browser", -[2,19390,29284], -[0,1148,2899], -[0,26257,1111,1473,7208,1437,1623,32453,6616,29222], -[3,26364,17], -[1,2343,29296], -"@nuxt/module-builder", -[2,18124,2844], -"@4c/tsconfig", -"@react-bootstrap/babel-preset", -[2,29344,7625], -"@nuxt/test-utils", -[0,29298,29302,29329,2399], -"jsonpathly", -[0,7387], -[2,29301,29538], -"css4", -[3,5782,27], -[0,4874,4880,4883,1030,3286,89,3824,1983,26744,1984,11039], -[3,4055,16,6], -[3,26699,14], -"achine-id", -[2,27946,29305], -"parsers", -[2,15904,29307], -"@zkochan/js-yaml", -[2,15904,6698], -[3,17944,18], -"-and-columns", -[2,27005,29312], -"@napi-rs/", -"graphQL", -"wasm-runtime", -[2,29314,29316], -"telejson", -"Mobile", -"nderer", -[2,25806,14029], -"@whatwg-node/promise-helpers", -[2,29326,29332], -[2,20164,22156], -[2,11936,1564], -[3,9250,19], -"processinfo", -[2,11936,29327], -[0,5592,1745,23803,3287,3452,8124], -"node-preload", -"process-", -"nuxt", -"on-spawn", -[2,29331,29333], -"spawn-wrap", -"css library", -[1,2343,29353], -"any-path", -[2,29340,29341], -[3,132,10], -"local-node-rig", -"jsdoc-fresh", -"jsdoc-region-tag", -[3,29293,17], -"nuxt-ui", -"ui-framework", -"undefined-", -[2,29347,15400], -[2,8302,29348], -[2,29383,29384], -"@readme/", -"example", -[0,29363,0,29472,2523], -"oas-examples", -[2,29351,29354], -"@readme/o", -"penapi-parser", -[2,29356,29357], -[2,8818,5940], -"@types/me", -"moizee", -[2,29360,29361], -[0,2817,18023,1532,31802], -" initiative", -[2,3452,29364], -"openapi ", -[2,29366,10658], -[3,29367,12], -[2,29366,1746], -"oai", -"@eslint/css", -"print-coveralls", -"ts-mock-imports", -"egjs-jsdoc-template", -"to-openapi", -[2,28343,29375], -[2,29351,29376], -"@egjs/release-helper", -[3,20227,14], -[2,29379,8125], -[2,5290,29382], -"-plugins", -[3,25931,14], -"quis-saepe-velit", -"@renyii/vue-renderless", -[2,31525,29391], -"andom-function", -[2,30713,29397], -"@teamteanpm2024/aperiam-fugit-error", -"prollyfill", -"ize-observer-browser", -[2,19965,29393], -"-es6-transform", -[2,29418,29475], -"ec", -"gulp-exec", -"ign-functions", -[2,29399,29400], -[3,27720,16], -"ototype-minify", -"@vercel/ru", -"@pkg", -"js/support", -[2,29402,29403], -"flicking", -"globalthis", -[2,29408,26274,29411], -[3,29389,17], -"ostringtag", -[2,17422,29409], -"alias-quod", -"egjs", -"-upgrade", -[2,29408,29415], -"ut-voluptatum-vero", -"indexof", -[3,26699,20], -[3,29389,16], -"@loki/integration-react", -[3,31032,17], -"@modelcontextprotocol/sdk", -"@mar", -"iocasciaro/benchpress", -[2,29422,29423], -[2,31009,16609,18756], -"bean", -[2,31550,29430], -"notation", -"segment", -" upgrade", -[2,29438,7031], -[2,29418,29433,29434], -"effective-octo", -[3,246,18,8], -[2,29436,29437,29439], -[3,29432,17], -"xpedita-", -[3,805,9], -"labore-ipsum", -"es-object-atoms", -[2,29419,4009], -"mentoss", -"@ucast/mongo2js", -[2,28865,6324,4056], -"unconfig", -"permissions", -"abac", -[2,29418,29449], -"odio-fugiat-in", -"ee-first", -"rbac", -"ibac", -"cancan", -[2,29487,188], -"@sxzz/eslint-config", -"wrappy", -"quick-lru", -[2,29459,29620], -"@sxzz", -[2,29418,28215,27463,29461], -"odit", -"@blakeembrey/deque", -[3,29462,13], -[2,29463,1283], -"@sxzz/test-utils", -"@unocss/eslint-plugin", -[3,4949,17,10], -[2,160,1554], -"unocss", -"unplugin-unused", -[2,30209,28945], -[0,30999,28818,5995,17977], -[1,2343,29484], -"epoll", -"beatae-aliquid-id", -[2,23240,3209], -"@zibuthe7j11/deserunt-quasi-impedit", -"gpio", -[3,7033,9], -"raspi", -"beaglebone", -"-black", -[2,29481,29482], -[0,0,29485,29491,2537], -[0,19325,1414,1894,3985,3998,4039,4389,4505,91,1906], -"llms", -[3,29419,18], -[2,10441,20008], -"lazy-prop", -[2,27542,29489], -[0,1623,1936,965,5122,12344,34050,3665,22145], -[2,29294,1892], -[2,35506,15215], -"s-compressor", -[2,29628,29629], -[1,2343,29497], -[0,29498,29499,29516,2399], -[0,2611,4763], -[0,29259,192,5467,23531,29261,4865,4874,1009,1011,10417,668,1177,1881,1895,29262,1915,1938,1955,2070,2675,2990,1894,29265,4039,4480,4494,91], -[2,33343,1640], -"bath-es5", -"dere", -"ference-", -[2,29503,2845], -[2,29502,29504], -[2,29510,29513], -"-adapter", -[2,2085,29507], -[2,1170,29508], -[3,10065,15], -"deref-sync", -[2,7526,29511], -"ooks", -"fetch-retry", -[2,29112,3073], -[0,2611,5995,29268,29270,5130,24090], -"@base-ui-components/react", -[3,32804,12], -"docz", -"docz-utils", -"open api", -"docz-theme-default", -[1,2343,29526], -"aws-sdk-client-mock", -[2,32539,200], -[0,29541,29547,29516,2537], -[3,26032,12], -"computer", -[2,29530,29532], -[3,25758,18], -"quadrocopter", -"m-sint-necessitatibus-possimus", -[2,29534,15050], -[3,33156,12], -"unifont", -[2,29627,29631], -"cupertino-pane", -"licit-resource-management", -"countrynames", -"kill-port", -[0,1457,1491], -[2,15713,10050], -[2,28397,553], -"@testcafe/publish-please", -"aws-lambda", -"eruda", -[0,1138,4494,2070,2675,1177,4039,668,1894,91,4865,4874,2990,29261,4480,192,29265,1938,10417,1895,1955,1011,1881,5467,1009,1915,29262], -[1,2343,29562], -"nano-staged", -"elapsed-time-logger", -"hashish", -"gulp-open", -[2,4807,3864], -"cupertino", -"pane", -"slide", -"-call", -[2,29557,4408], -[2,6606,29558], -"fasteejs", -"ua-is-frozen", -[0,29570,29578,29612,2487], -[3,26032,13], -[2,29609,12835], -[2,29573,6802], -"prelude-ls", -"deep-is", -"astro-auto-import", -"livescript", -[0,4729,1091,4494,12105,3533,3348,1410,1606,28452,4548,1458,3183,33145,1699,2096,11993,3547,28460,2689,2668,28941,2191,3781,36687,28461,36123,3509,4108,28482,28518,26696], -[3,28967,11], -[2,29571,3642], -"country-", -"@pouchlab/ui", -[2,29573,1460], -[2,29573,7285,2669], -"-dis", -[0,4164,4039,4042,668,9241,1587,1610,7819,28585,7892,12461,3813,28426,4057,8818,31727,28586,28854,29228], -"ppsx", -"-discarder", -[2,2184,29580], -"chai-jquery", -[2,1221,6621], -"corejs-typeahead", -"doiuse", -"gulp-add-src", -[2,2352,29588], -"-bust", -"gulp-check-deps", -"sequencify", -[3,28628,14], -[2,2504,29687], -"gulp4-run-sequence", -"is-empty-object", -"motion-ui", -"sassy-lists", -[2,22109,29598], -"-forward-reference", -"vinyl-named", -"sql-ddl-sync", -"sql-query", -[2,29611,29625], -[2,29604,29606], -[3,17589,11], -"redshift", -"helper-rel", -[2,29608,4213], -[3,29603,18], -"gradient", -"grommet", -[3,940,8], -[0,31153,5592,6354,29311,27837,5130,29315,29727,5284,23803,202,28323,89,31175,91], -[1,5293,29665], -"tinygradient", -"tmpdir", -"ps1", -"glob2regx", -[2,29619,29620], -"@bokub", -[3,29621,16,9], -[2,7623,7628], -[2,1283,17321], -"template ", -[2,29623,16111], -"expand-path-helper", -"magnific-popup", -[3,4968,15], -[3,111,18], -"-cloud-services-collaboration", -"grommet-icons", -"composable-commerce-test-data", -"styleable", -[3,3474,9], -[2,10818,29635], -"toolbars", -[2,29637,5592], -[3,11285,19], -"@vscode/vsce", -[2,10829,29640,35971], -"source-l", -"vscode", -[2,964,4415], -[2,29644,591], -[3,19588,29], -"chromatic", -[2,29650,29651], -"addlistener", -"addeventlistener", -"waits", -"grommet-", -"theme-hpe", -[2,1192,29653], -[3,12201,18,16], -"random-int", -"react-shadow", -"resolved", -"fulfilled", -[2,29659,22145], -[3,29576,18], -"tarball-extract", -[2,29662,29663], -[3,35482,11], -"act-selectors", -"fifo", -[0,8391,29688], -"grommet.io", -"grommetux", -"sticker sheets", -"design patterns", -"app templates", -"atomic design", -"invalidate", -"WCAG 2.1", -[2,8652,29675], -" navigation", -"screen reader tags", -[3,10826,11], -"graphical user interface", -"plunder", -"exit-x", -"modelcontextprotocol", -"osition-area-property", -"pwa-asset-generator", -"_codesniffer", -[2,1936,29684], -[2,17753,5130], -"-lint", -1743292800000, -[2,23814,6653], -"rapid-development", -"proclaim", -"@grammyjs/types", -"dart-sass", -"grunt-jekyll", -"mcp", -"deno2node", -"sigstore", -[2,9466,1153], -"antora", -[3,3397,13], -[2,29700,3212], -"zepto", -[3,12478,11], -[2,30713,29989], -[1,2343,29712], -"countries", -[2,22642,5351], -[2,18145,4581], -"@next/font", -"package-up", -[2,17507,4107], -[0,29714,29715,29720,34352], -"@jsdevtools/ez-spawn", -[0,6680,26246,26882,26247,26883], -[0,87,29211,29381,29378,5583,811,816,6373,4864,4874,29386,1009,32801,1011,1165,1195,1264,1540,1593,1596,10944,29374,1177,1938,1942,13668,2151,2193,6382,29120,28366,2675,28629,29392,3400,29137,3566,29372,28369,27120,4042,20981,10854,29398,20983,4073,4076,4079,2278,13739,29373,11440,4484,4487,28625,91,20474], -"@types/png", -[2,29716,1722], -"context7", -"vibe-coding", -[0,32054,29405,31512,29002,4453,28125,5131,89,188,1098,3698,35060,35062,35058,29412], -[2,17590,23989], -"png.js", -[2,29573,29730], -"screenshots", -"ai-detection", -"screengrab", -"headless", -"app-detection", -"rapidoc", -"iso-codes", -"iso", -"api-generator", -"find-process", -[1,2343,29738], -"low-code", -[2,29737,3729], -[3,33097,12], -[0,0,29739,29864,2537], -[0,107,91,1983,11026,26744], -[3,7895,13], -"jpeg-js", -"striptags", -[2,1948,29816], -"baas", -"launch-image", -"splashscreen", -"splash-screen", -"image-generation", -"aws4", -"mstile", -"pwa-assets", -[3,7863,11], -"web publishing", -[2,3862,29804], -"@ionic/react", -"@loki/runner", -"@loki/target-chrome-app", -"@apitools/openapi-parser", -[2,29760,6866], -"base64-", -"xml-but-prettier", -"idb-keyval", -[3,5062,14], -"rypto-js", -[2,29763,29764], -[2,29785,17878], -"@saithodev/semantic-release-backmerge", -"cebook-js-sdk", -[2,22819,29768], -[2,1983,29303], -[3,19588,24], -"nline-", -[2,11294,6436], -[2,29772,29773], -[2,29771,29774], -[2,29781,29782], -"river-adapter-utils", -[2,2767,11110], -"jsdoc-babel", -[2,27738,8791], -[3,14065,15], -"mplate-html-minifier", -"parse-server", -"inspectpack", -[3,29757,20], -"Custom Element", -"Web Component", -"swagger ui", -"swagger ", -"WHATWG", -[2,28008,57], -"html5 parser", -[2,28008,1753], -[2,1936,1753], -"openapi ui", -[2,29366,4366], -[2,29366,11328], -[2,29366,3902], -"fast-ur", -"l-parser", -[2,29799,29800], -[2,29366,25677], -[2,29789,4366], -"animatable", -"react-swipeable-list", -"pause", -[2,29811,29812], -[3,1551,9], -[2,29808,18716], -[2,1432,29809], -[3,29757,13], -"native-android-emulator", -[2,29814,29815], -[3,29807,20], -"ios-simulator", -"-preferences", -[2,31868,5891], -[2,29822,19102], -"collapsible", -"accordion", -"readme-md", -[3,4272,10], -[2,11375,10850], -"username", -[3,9308,9], -[2,29827,29828], -[3,4060,15], -"ocal-resolve", -[2,3500,1274], -"visual testing", -"swipeable", -"customizable", -[3,1419,20], -"teeny-tap", -"base64url", -"touchscreen", -"listview", -"swipe-to-delete", -"swipe-actions", -"json/simple-icons", -[2,29852,32865], -"iso-country-codes", -"use-composed-ref", -"use-latest", -[2,29866,1460], -"@preconstruct/cli", -"blue-tape", -"autosize", -"grow", -"riot", -"events.once", -"@scalar/s", -[2,30844,1983], -"exist", -"md-writer", -[2,12557,8982], -[2,29858,29859], -[3,7806,10], -"mon-tags", -"ts-declaration-location", -[2,29863,14056], -"isabsolute", -[3,1733,14], -[0,31549,31550,29427,31553,31565,9006,3015,31566,15813,10725,30672,5066,15571,89,31567,1098,188,12295,5131,28125,31568,31569], -"react-smooth", -[3,29842,12], -"@borderless/ts-scripts", -[2,29958,29576], -[2,29870,34050], -"victory-", -[1,2343,29929], -[2,10818,29873], -"mdx-gfm", -[2,10818,29875], -"webpack5-compiler-swc", -[2,29877,29878], -[3,10841,15], -"-runner", -[2,33114,22982], -[2,33114,29881], -"time-format", -"@rkusa/linebreak", -[2,29885,29886], -"opentype.js", -[3,18787,15], -"v-expression", -"vitest-axe", -"log-process-errors", -"sortablejs", -[2,5581,29898,27479], -[2,29518,29892,29930], -"native-pr", -"jpeg-exif", -"linebreak", -"png-js", -"@riotjs/dom-bindings", -"blob-stream", -"multi-pa", -"pdfjs-dist", -[2,29904,4643], -"pdf writer", -"pdf ", -[2,29902,1179], -"@riotjs/", -[2,29906,29907], -"@riot", -[3,25083,18,7], -"call-delayed", -"chai-i", -[2,29904,93], -[2,29904,614], -"ncreasing", -[2,29909,29912], -[2,29915,29916], -"@wdio/s", -"auce-service", -"bianco.attr", -"pgpass", -"pg-pool", -"pg-types", -"bianco.query", -"cumpa", -"pg-protocol", -"curri", -[2,29126,28794], -[2,29927,28794], -[3,4069,15], -"pg-cloudflare", -[0,29947,29948,29981,2523], -"eview", -"pg-co", -"py-streams", -[2,29931,29932], -"@cloudflare/workers-types", -"custom tags", -"minimalist", -"libpq", -"rdbms", -"data binding", -"riotjs", -"riot.js", -"tdesign-mobile-vue", -"oxc-resolver", -"copy-source", -[2,5237,29944], -"npm-watch", -[0,29443], -[0,33580,5087,4874,1429,31602,2024], -[2,29950,12826], -[3,35537,26], -[2,29956,582], -"hasha", -"reorder", -"ng-sortable", -[2,12318,29992], -[3,66,20], -[2,27777,27738,1764,1524], -"iso-", -"@use-gesture/vanilla", -[2,29961,29962], -"tdesign-", -"icons-vue-next", -[2,29958,29658], -[2,1547,3525], -[2,3525,15159], -[2,812,1002], -"@soerenmartius/vue3-clipboard", -" build", -[2,3525,29968], -"/build", -[2,3525,29970], -"dom-parser", -"qrcode.vue", -[2,8851,19675], -[2,29976,29977], -[3,32978,16], -"atic-import", -[2,29976,29979], -"yles", -"@tdesign/site-components", -[0,29446,14374,1081,29447,29451,29452,29453], -[1,2343,29985], -[2,29961,29984,200], -"publish-", -[0,29986,29995,2514,2537], -[0,26702,19344,1915,32525,1953,1958,1959,2105,2203,26716,4523], -[2,4609,29988], -"tdoc", -"ystem-ui-font-family", -"tdesign", -"pinkie-promise", -"-widget", -"weui", -"denodify", -[0,4874,25950,1177,2675,17529,2931,27949,3401,4505,91], -[2,29997,3346], -[3,6806,10], -"tstyche", -"atomic", -[2,30016,30020], -"atomic-sleep", -[1,2343,30160], -"xit-leak-free", -[2,27492,30003], -"pino-", -[2,20417,4714], -[2,30005,30006], -"std-", -[2,1753,591], -[2,30008,30009], -[2,30005,30010], -"quick-", -"-unescaped", -[2,1671,30013], -[2,30012,30014], -[3,18858,17], -"real-require", -"sonic-boom", -"thread-stream", -"-tag", -"lush-write-stream", -[2,5537,30021], -"obug", -"bole", -"fastbench", -"-write-stream", -[2,20064,30026], -"midnight-smoker", -"steed", -[2,30031,30032], -[3,3577,11], -"-variables", -[2,30034,30035], -"postcss-he", -"xrgba", -"postinstall", -[3,3848,9], -"devpostinstall", -[2,30040,1524], -[3,3668,14], -[2,24276,30042], -"odule-replacement", -"graphql-jit", -"uploader", -"preview", -"image-edit", -[2,30085,3582], -"mqemitter", -"remark-math", -"single-user-cache", -"base64-stream", -[2,24101,30057], -"ready", -"-simple", -[2,2105,30054], -"win32", -"woslash", -[2,9406,7293], -[2,30060,30065], -"remark-s", -[2,30062,30063], -"gulp-conve", -"rt-css-var", -"picklog", -"martypants", -"wechat", -"weixin", -[2,29314,4183], -[2,17998,30070], -"ading-time", -[2,27707,364], -"better-react-mathjax", -[2,30074,25131], -[3,9313,17], -[2,30076,30077], -[3,12415,13], -"alue-to-estree", -[2,30079,30080], -[3,31790,16], -"ocalematcher", -"tiny-lru", -[2,10884,30083], -"egotiator", -[2,11932,11525], -"iso-countr", -[2,30087,30096], -[3,13203,19], -"irregular-plurals", -"fs.extra", -"plurals", -"count", -"irregular", -"noun", -"nouns", -"requireg", -"orm-data", -"@pkgr/core", -[2,4511,30118,30123], -"make-synchronized", -[2,30101,30102], -[3,30099,13], -"ous", -"sync-threads", -"fclone", -"vizion", -"@pm2/io", -"pidusage", -"pm2-axon", -"@pm2/", -"@pm2/agent", -"pm2-", -"pm2-deploy", -"synchronize", -[2,5340,30116], -"@pm2/js-api", -"webc", -"cli-tableau", -[3,32969,11], -"pm2-axon-rpc", -[2,30111,28917], -[2,30111,21833], -[2,30109,30121], -"heme", -"logs", -"kraken", -" balancer", -[2,3001,30126], -"lb", -"balancer", -[2,3614,30129], -"kubernetes", -"k8s", -"emoji-flags", -"pm2-docker", -"graceful", -"phone-codes", -"node-pm2", -"fs-fixture", -"production", -"keymetrics", -[2,10339,13522], -"strong-pm", -"supervisord", -"pm2.io", -"@ibyar/expressions", -" production", -[2,17979,30146], -[2,3729,6877], -"probes", -" process", -" alive", -[2,30150,30151], -[2,25607,30152], -"process ", -[2,30154,8309], -"clustering", -"memoizerific", -"cluster cli", -"dev ops", -[0,30171,0,29047,2537], -"phone-prefixes", -"@vercel/blob", -[2,7285,2669], -"tap-dot", -[2,30180,30181], -"PNG", -"js-png", -"node-png", -"import-without-cache", -"png-parse", -[0,2845], -"pg-gateway", -"@ibyar/decorators", -"pglite-2", -"aurora", -"ibyar", -[2,4641,5341], -[2,4641,7256], -"evaluation", -[3,578,10], -"arousel", -[2,30195,3825], -"no-code", -"mvp", -[1,2343,30186], -[0,30187,30188,30189,2537], -[0,8712,1423,5210,1209,3021,26499], -[0,34225,4874,2559,91,34229,28456,34231], -[0,89,5130,21151,28811], -"poe", -"economy", -"ninja", -"poe.ninja", -"poe economy", -[3,581,10], -[2,30212,3730], -" of exile", -[2,3403,30197], -" economy", -[2,30198,30199], -[3,30200,14], -[2,30201,30192], -[2,30194,8568], -[2,30201,5592], -[1,2343,30229], -"ast-walker-scope", -"poe.watch api", -[2,30193,8568], -"@vercel/ne", -"copilot", -"@types/ne", -[3,587,10], -"reval", -[2,24808,30213], -[2,6649,2995], -[2,6645,30215], -"tsgen", -[2,30231,30232], -"glamor", -[2,24177,591], -"o-async", -" manipulate", -[2,1473,30222], -[3,30223,15], -[2,30224,6600], -" color manipulation", -[2,7595,30226], -[3,35570,16], -[0,30249,0,2514,2487], -"muggle-string", -[3,593,10], -"potlight", -[2,579,30251], -[2,29444,30511], -[3,6372,10], -[2,30235,6374], -[3,23816,17], -[2,30237,13290], -[2,30235,30238], -[2,30235,1973], -[2,30240,3007], -"nuget-publish", -[2,30244,4900], -[3,13484,37], -"popperjs", -[2,1517,30248], -"attached", -"center", -[0,9315], -[1,2343,30308], -"tiptap", -"allure-js-commons", -"flush-promises", -[2,30255,30259], -"@yarnpkg/l", -[3,10175,16,14], -[2,30276,30280], -"source map", -"ibzip", -[2,23660,30261], -"tector", -[2,11369,30282], -[2,10880,30264], -"preset-env", -"jison-gho", -[2,16645,30267], -"null", -"calculation", -"unixify", -"allure", -"codeceptjs", -"testops", -[3,3674,10], -[2,30273,25461], -"read-cache", -"express-i", -[3,1895,16], -"oblems", -[2,30277,30278], -"ntlayer", -"is-mobile", -"spector", -"deep-object-diff", -"@ngard/tiny-isequal", -[2,6268,1467], -[2,206,30285], -[2,209,6731], -"@intlayer/chokidar", -"hsl", -"hsla", -"hwb", -"rgba", -[2,30294,6008], -[3,30288,11], -[2,30296,23], -[3,30293,12], -"intlayer", -"caniuse-api", -"colord", -[2,10829,30311], -[3,19443,15], -[2,30301,5592], -[2,9738,30304], -"s-hooked", -"@utils/ts-config-types", -[3,30305,16], -"@intlayer/", -[0,0,30473,2514,4139], -"@utils/ts", -[2,30309,32810], -"docs-mdx", -[2,9402,30374], -"get-npm-tarball-url", -"pixrem", -"pleeease-filters", -"apply", -[2,3562,30316], -"postcss-a", -"ttribute", -"-case-", -[2,30322,30367], -"use", -"insensitive", -[2,30320,30323], -[2,30319,30324], -[2,30318,30325], -[3,3570,22], -[3,3570,14], -[2,30328,12981], -"hex-alpha", -[2,30328,30330], -[3,30331,15], -"sl", -[2,30332,30333], -"wb", -[2,30332,30335], -"rebeccapurple", -[2,30328,30337], -[3,30338,15], -"gb", -[2,30339,30340], -"a-fallback", -[2,30341,30342], -[3,4791,10], -"nt-family-system-ui", -[2,30344,30345], -[3,30346,13], -[2,30347,24044], -[3,3611,18], -[2,30349,6422], -"user-agents", -"nitial", -[2,3607,30352], -[3,3622,10], -"dia-minmax", -[2,30354,30355], -"seudo-class-any-link", -[2,6423,30357], -[3,30358,14], -[2,30359,11513], -[3,30274,11], -"lace-overflow-wrap", -[2,30361,30362], -[3,3681,17], -[2,30364,6421], -[2,30364,23293], -[3,11228,16,2], -"cssrecipes-custom-media-queries", -[3,30368,11], -[2,30369,19400], -[2,30369,10052], -[2,30369,594], -"vert", -"ermaid", -[2,28756,7224], -"ical-rhythm", -[2,30373,30376], -[2,30369,30377], -"i-am-meticulous", -[2,1884,30379], -"isogram", -"oc-and-anchor", -[2,7646,30382], -[2,12798,591], -[2,3160,30384], -[3,30385,11], -"@react-aria/interactions", -"filenames", -[2,30386,30388], -[2,30386,5980], -[2,30386,89], -[3,30391,13], -[2,30392,1213], -[3,30391,12], -[2,30394,367], -[2,30386,1002], -[2,30386,2282], -[2,30415,30461], -"nano-logger", -"npmpub", -[2,25230,25461], -[2,3562,30401], -"-inline", -[2,3897,30403], -"@enact/ui", -"lazy-universal-dotenv", -"to-slug-case", -[3,4693,9], -"ano-logs", -[2,30408,30409], -[2,30058,30412], -"-position", -"cssnext", -"modern-tar", -[3,30387,12], -[2,30417,364], -[3,906,9], -[3,205,11], -"ascade", -"-lay", -"er-name-parser", -[2,30420,30421], -[2,30419,30422], -[2,30418,30423], -[2,30417,30429], -"at-rule", -"atrule", -"csswg", -"delivery-react-native", -"queries", -[2,30417,30432,30433], -"plugin-co", -"nsole-breadcrumbs", -[2,30435,30436,30437], -[3,30431,16], -"network-", -"breadcrumbs", -[2,30435,89], -[2,30438,30440], -"-native-client-sync", -[2,30443,30444], -"declarative", -[3,30439,29], -"event-sync", -[2,30443,30446], -"global-error-handler", -[2,30443,30448], -"hermes", -[2,30443,1577], -[2,30443,30451], -"unhandled-rejection", -"iserror", -"react-syntax-highlighter", -[2,30457,30460], -"bugsnag", -"stability", -[3,30375,17], -"@enact/webos", -[2,30875,4000], -"croll-area", -"overlays", -"at-rules", -"@ionic/angular", -[2,30415,17966], -"@keyframes", -"@counter-style", -"@devtools-ds/object-inspector", -[2,4807,30453], -[2,30475,30476], -"@aw-web-design/x-default-browser", -"@fal-works/esbuild-plugin-global-externals", -"flexbugs", -[0,4483,1177,1984,1894,91,4874,1953,7677,1982,1895,1011,1009], -[1,2343,30482], -[3,659,18], -"nobis-nostrum-nam", -"@skylernpm/hic-inventore-dolores", -[3,3616,9], -"postcss-less", -"tyl", -"postcss-styl", -[0,30490,30492,30497,34352], -"quickapp", -"PHP", -"sss", -"convex", -[3,29658,18,8], -[2,30502,27421,30606], -"world-countries", -[0,1437,3074,3714,4361], -"image-set", -[0,2228,2240,2247,2316,1906], -[2,2662,30554], -"@eggjs/oxlint-config", -"@vercel/e", -"mock-spawn", -[0,21779,8221,13814,15344,158,6707,3178], -"node modules", -[3,31793,24,5], -[1,2343,30524], -[2,30503,30515], -[3,30477,11], -[3,30489,12], -"postcssrc", -".config.js", -[2,3561,30505], -"@recharts/devtools", -"motion-dom", -[2,30510,186], -"motion-u", -"-snapshot", -"midas", -[3,3591,9], -"ark-", -"y-codes", -"theme-class", -[2,30514,30516], -[2,30513,30517], -"hort", -[2,3677,30519], -[2,1172,30522], -[3,5558,22,6], -[2,30560,6802], -[0,30525,30526,30189,2523], -[0,668,8712,4090], -[0,1192,91,5087,4874,28455,28574], -[2,30546,30547,3966], -[1,2343,30549], -[2,30530,30537], -[3,30868,11], -"cssnano-", -[2,30531,594], -[2,30534,11504], -"@codecov/", -[2,30536,6579], -[3,1300,12], -"silent", -"expressots", -"font-f", -"clean-architecture", -"font-family", -"font-weight", -[2,30544,30545], -[3,4526,12], -"ramework", -[3,31198,25], -"particles-", -"desm", -[0,30550,30555,30556,2523], -[0,1169], -[2,41,30552], -"pro-components", -[2,5557,3514], -"node16", -[0,3421,1429,4493,2899,4039,2026,4474,91,4856,4874,6503,1151,6494,8648], -[0,6653,2275,5472,6969,5982,7320,11346,3541,1169], -[1,2343,30580], -"esc", -[2,7632,30558], -[3,30501,14], -"gulp-better-rollup", -[2,30560,1460], -"Leaflet", -"Maps", -"Gesture", -"Handling", -"two", -"fingers", -[2,30571,30572], -[2,3976,30573], -"world", -[3,29868,24,3], -"anitize", -[2,30571,30578], -[3,220,19], -[2,4026,3639], -[2,30575,30576], -[3,29963,27,3], -"atrules", -[0,30596,30597,2514,2523], -"children", -"nestings", -"@anthropic-ai/sdk", -"@azure-rest/ai-inference", -[2,959,30586], -"vue-virtual", -[2,209,3376], -[3,30402,16], -[2,30588,4298], -[2,2574,3375], -"world-iso-codes", -[2,964,188], -[2,30599,29842], -"normalizes", -"fixes", -[0,1112,1415,16230,24324,36538,30169,30023,3530,28865,29444,4135,26379,27921,4459,33251,24214], -[0,33043,29170,29455,29458,29465,4874,20374,5254,29891,29466,33253,7677,23203,10984,19839,1680,1177,20044,16860,3144,3749,15450,1894,23535,30234,24181,91,29469,30908,28797,29470,1983,1984], -[1,2343,30601], -"world-", -[2,30613,1460], -[0,30605,30608,30611,2537], -"@cfworker/json-schema", -"@clerk/localizations", -"@ark/attest", -[0,1676,1679,2151,2212,17450,4400], -"non-corrupti", -"admin-lte", -[0,5245,29493,4864,1429,1177,2899], -"@clerk/nextjs", -"@clerk/themes", -[0,1764,7682,26965,3428,2090,27,1002,1965,5995], -"backendless", -[3,30593,18], -"to-valid-identifier", -[1,2343,30626], -"@astrojs/mdx", -[2,30618,30619], -[3,28058,16], -"tro", -[2,3704,34683], -[2,30625,3286], -[2,30623,9872], -"control-", -"smartbanner.js", -[3,2635,14], -[0,0,30627,30780,2537], -[0,8648,4874,4880,34737,1894,89,3824,7671,91], -[2,30612,30665], -"cascade-layers", -[2,216,30629], -[3,30630,19], -[3,3569,13], -[2,30631,30632], -[3,30633,24], -"mix-function", -[2,30634,30635], -[3,30633,20], -"alt-text", -[2,12009,30638], -[2,30637,30639], -[3,28688,12], -[2,30641,5746], -[2,216,30642], -"ormat-", -[2,30644,4798], -[2,30539,30645], -[2,216,30646], -"gamut-mapping", -[2,216,30648], -[3,30649,19], -"radients-interpolation-method", -[2,30650,30651], -"hwb-function", -[2,216,30653], -[3,215,19], -"c-unit", -[2,30655,30656], -[2,30655,30352], -"light-", -"dark-function", -[2,30659,30660], -[2,216,30661], -[3,30662,19], -"ogical-", -"-request", -[2,30683,31073], -"-and-clear", -[2,14639,30667], -[2,30664,30668], -[2,30663,30669], -[3,30670,26], -"overflow", -[2,30671,30672], -[3,30673,30], -"behavior", -[2,11262,30675], -[2,30674,30676], -[2,30671,24800], -"viewport-", -"units", -[2,30679,30680], -[2,30671,30681], -[3,30628,13], -[2,30767,33380], -"media-minmax", -[2,216,30685], -[3,30686,24], -"-aspect-ratio-number-values", -[2,30430,30688], -[2,30687,30689], -[2,30695,10740,4978], -"nested-calc", -[2,216,30692], -[3,30693,19], -[3,30628,12], -"bannerize", -[2,31495,31502], -"play-values", -[2,29577,30698], -[2,3646,30699], -[2,30694,30700], -"oklab-function", -[2,216,30702], -"relative-", -"yntax", -"color-syntax", -[2,30704,30706], -[2,216,30707], -"scope-", -"pseudo-class", -[2,30709,30710], -[2,216,30711], -[3,30712,19], -"tepped-value-functions", -[2,30713,30714], -[3,70,7], -[3,5845,9], -[2,7854,30717], -[2,30716,30718], -[2,28533,30719], -[2,216,30720], -[3,30721,19], -"rigonometric-functions", -[2,30722,30723], -[2,216,10760], -"css-b", -"lank-pseudo", -[2,30726,30727], -"css-h", -[2,30612,33812], -"zarm", -"as-pseudo", -[2,30729,30732], -"css-pr", -"efers-color-scheme", -[2,30734,30735], -[2,1007,30738], -[3,13069,23,4], -"postcss-clamp", -[3,3591,10], -"r-pseudo-class", -[2,30740,30741], -"ouble-position-gradients", -[2,30513,30743], -[3,4791,14], -"within", -[2,30745,30746], -"gap-properties", -[2,3562,30748], -"ab-function", -[2,30478,30750], -[3,3616,10], -"gical", -[2,30752,30753], -[3,3664,9], -"pacity-percentage", -[2,30755,30756], -"verflow-shorthand", -[2,30755,30758], -"age-break", -[2,6423,30760], -[2,30764,30766], -"postcss-place", -[3,3710,17], -"lists", -"h", -"@biomejs/", -"playbook-builder", -"algo", -[2,444,30771], -"-interactions", -[2,30773,89], -[3,29959,13], -"@zarm-design/bem", -[2,3677,30705], -[2,30777,45], -[3,30774,13], -"ahooks", -"better-scroll", -[0,89,586,11000,26264,6458], -"hermes-compiler", -[1,2343,30791], -[2,30777,200], -"@oxc-project/runtime", -"zarm-ui", -"zarm-mobile", -[2,30790,553], -[2,20561,30789], -"render-stream", -[3,30784,13], -[0,30793,0,30799,2523], -"@oxc-node/cli", -[0,1687,5303,1459,6501,182,148,164,167,29468,187,153,191,28332,15690,28361], -"oxc-parser", -[2,30796,30797], -"@iconify", -"/utils", -[2,3882,11245], -[0,28407,1459,6094,28416,28417,2585,28442,18241,6038,6110,1936,6138,6139,6142,6144,6145,20863,14600,5130], -[1,2343,30801], -[0,0,30812,30825,2537], -"@enact/i18n", -[2,30804,30232], -[3,907,8], -"doublylinked", -"lightning", -"-pool", -[2,30806,30807], -"ilib", -"-bytea", -[2,25638,30810], -[0,1192,1177,4042,4468,1894,91,5087,1895,1955,2780,1011,1009], -"power-tasks", -"@cyntler/react-doc-viewer", -"putil-", -[2,30815,19138], -"varhelpers", -[2,30815,30817], -"@enact/docs-utils", -[2,30405,30821], -"-test-utils", -[2,18576,30823], -"nact-proxy", -"@fal-ai/client", -[0,31512,32054,35062,35060,20986,4453,5284,91,89,188,3709,23332], -[2,22180,591], -[1,2343,30836], -[2,1962,30830], -"titanium", -"dos-detector", -"ed-queue", -"-ended-queue", -[2,4420,30832], -[2,11344,977], -"tsm", -[0,30846,30863,30865,2443], -"level-codec", -"write-stream", -[2,25982,30838], -"ltgt", -"bundle-size", -"spark-md5", -"vuvuzela", -"rolldown-", -"react select", -[0,29178,3744,3911], -"react dropdown", -[2,30852,30856], -"empower", -[2,3696,12168], -"universal-", -"accessib", -"strict-equal", -[2,1683,30853], -[2,30851,30854], -"le react select", -"dereserve", -"accessible", -"licensify", -[3,21510,14], -"ilterify", -[2,30860,30861], -[0,48,53,68,61,71,73,76,14039,78,83,87,90,97,966,968,972,1195,1593,1610,1177,1879,1895,1938,1947,1955,1959,1192,2780,2843,3697,1894,89,3824,2924,4676,4677,4681], -"jsx-async-runtime", -[0,89,6071,7521,5128], -"@formkit/auto-animate", -[2,8293,181], -"@reporters/github", -"@apm-js-collab/tracing-hooks", -"tidev", -"iphone", -"precommit", -[2,5186,2203], -[2,5928,3717,2389], -"react-load", -"combine-promises", -"@actions/github", -[2,20201,1172], -"@actions/glob", -[2,19849,3583], -[2,1252,30880], -[2,20201,2942], -"errorstacks", -"-sinon", -[2,2878,30884], -"-display-", -"@google/genai", -"kolorist", -"oxlint", -[2,30893,30894], -"virtual dom", -"dom diff", -[3,30878,13], -"undler", -[2,3886,1541], -[2,30897,30898], -[3,38298,13], -"dx-loader", -[2,32359,13369], -[2,30901,7020], -[3,30899,18], -[2,30459,30903], -"-ssr-addon-v5-slorber", -[3,18018,13], -[2,30904,3642], -"@huggingface/inference", -"jest-l", -[2,30909,166], -"unplugin-a", -[1,2343,30925], -"ight-runner", -[2,30907,30911], -[2,35506,30914], -"tect-port", -[2,30916,30917], -[3,12312,18], -"shoehorn", -[3,2954,10], -[2,30923,1541], -"lugin-pug", -[2,30918,30920], -[2,5334,30921], -[3,4887,20], -[3,3703,15], -[0,0,12112,30927,2523], -"@nestjsx/crud", -[0,2070,1108,6961,57,29617,4643], -[2,206,31196], -[2,30930,32550], -"@vercel/b", -[1,2343,30933], -[2,18420,8162], -[0,30934,0,30936,2523], -[0,1459,16485,182,28912,148,187,153,28332,15690,28361,146,28913,15716,29131,29495], -"parcel-bundler", -[0,28407,1459,6094,28416,28417,2585,28442,18241,6038,6110,1936,6138,6139,6142,6144,6145,20863,5130], -"Vue", -[1,2343,30945], -"@zoroaster/assert", -"glob-fs", -[2,30942,10098], -[3,30939,11], -"unstyled", -"alamode", -[0,0,2667,31019,4139], -"humanized", -"si", -"locale", -"@a-la/fixture-alamode", -"localized", -[2,30952,1172], -[3,30949,14], -"@artdeco/clean-stack", -"@artdeco/erte", -"@artdeco/", -"renderkid", -[2,30971,4521], -"jitter", -[2,30989,186], -"exception", -[2,30955,30962], -"scripts.json", -[2,30926,30665], -[2,30965,614], -"@nestjsx/", -"@depack/render", -"crud", -"crud-generator", -"frameworks", -"parse-ms", -[3,30963,14], -"@netlify/framework-info", -"@wrote/exists", -"milliseconds", -"period", -"@wrote/rm", -[2,30942,6696], -"@zmotivat0r/o0", -"@pothos/core", -[2,30942,553], -"mercurial", -"hg", -"vcs", -"argufy", -"catchment", -"p-filter", -"p-locate", -"documentary", -"unplugin-u", -[2,5313,6355], -[2,15658,30992], -"-integration", -"npmjs", -"@pri", -"sma/engines", -[2,30994,30995], -"gatsby", -"hugo", -"netlify", -"ts-pattern", -[2,32976,33011], -"global-dirs", -"erotic", -"line-replace", -"@prisma/", -[2,31005,1676], -[2,13403,31016], -"xdg-app-paths", -[2,31005,5576], -"studio", -[2,31005,31010], -"migrate", -[2,31005,31012], -"internals", -[2,31005,31014], -"rtdeco", -"point-client", -[2,4354,31017], -[0,8618,8619,8620,1299,200,1523,6876,8622,1836,8623,1179,8624,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,8632,8633,4989,2184,8634,7009,6621,553,91,181,8635,4758,8636], -[1,2343,31082], -[2,31514,31516], -"fetch-engine", -[2,31005,31022], -"makepromise", -"get-platform", -[2,31005,31025], -[2,31011,2995], -"@prisma/ge", -"nerat", -"or-helper", -[2,31029,31030], -[2,31028,31031], -"promto", -"ORM", -"Prisma", -"reloquent", -"Prisma CLI", -"prisma2", -"JS", -"TS", -"SQL", -"SQLite", -"Postgres", -"core-js-pure", -"PostgreSQL", -"CockroachDB", -"MySQL", -"MariaDB", -"MSSQL", -"SQL Server", -"SQLServer", -"MongoDB", -[2,32483,13083], -"jest-location-mock", -[2,27845,31056], -"dule-alias", -[2,1464,31059], -"danger", -"-serve", -"spawncommand", -"docdash", -"hotreload", -"gulp-terser", -"@strapi/strapi", -"temp-context", -"webfont", -"usually", -"yarn-s", -[2,31070,11017], -"@pothos/", -[2,31084,31085], -[3,815,8], -"t-client", -[2,31072,31073], -"URIjs", -"pothos", -"IDE", -"svn", -"suggestions", -"intellisense", -"tagged-tag", -[0,31083,31199,31215,2537], -[0,29692,1079,1676,3310], -[3,8998,11], -"assword", -"@svgr/hast-util-to-babel-ast", -[2,31104,31682], -[2,31089,1541], -"@epic-web/", -"yalc", -[2,31092,364], -"@strapi/", -"@strapi/i18n", -"@strapi/admin", -[2,31092,1823], -[2,31092,553], -[2,31092,594], -[2,31092,2942], -[2,31100,184], -"@strapi/u", -[2,31102,1803], -[3,28426,12], -"zshy", -"@types/so", -[2,31092,18035], -[2,31107,31108], -"@strapi/c", -"loud-cli", -[2,31092,5701], -"get-latest-version", -[2,31112,31113], -"@strapi/p", -"ermissions", -[2,31115,31116], -[3,31105,12], -"-transfer", -[2,31118,31119], -"@strapi/co", -"ntent-manager", -[2,31121,21945], -[3,31117,16], -"customize", -[2,31092,31124], -"review-workflows", -[2,31096,31126], -"cript-utils", -[2,31121,31128], -"type-builder", -"interact", -"css-parser", -[2,31132,31133], -"@strapi/t", -"s-zen", -[2,19502,31137], -"uglifyify", -"uglifyjs", -"ustom", -[2,4807,4684], -"css-ast", -"strapi", -"cmf", -"alpha-sort", -"vent-", -[2,31143,2618], -[2,2621,31144], -[2,31151,5130], -"mdast-zone", -[2,5967,2619], -"svg-e", -[2,31149,31144], -[3,17944,19], -"aria", -"admin panel", -"koajs", -"jam", -"graphqL", -"@protobufjs/aspromise", -[3,31157,12], -[2,31158,14357], -[2,31158,5061], -[2,31158,2016], -[2,31158,1612], -[3,31162,13], -"loat", -[2,31163,31164], -[2,31158,8625], -[2,31158,3403], -[3,31167,13], -[2,31168,25200], -[2,31158,4577], -"infrastructure", -[2,13888,4719], -"semver-tags", -[2,10617,31173], -"self hosted", -"lernajs", -"css-tools", -"@icons-pack/react-simple-icons", -"@khmyznikov/pwa-install", -[2,25885,24348], -"wd2", -"jasminewd2", -"-js-extender", -[2,11132,31183], -"webdriver-", -[2,31185,10057], -"snake-case", -[2,23689,31181], -"ang-format", -[2,21680,31189], -"natives", -[3,19209,11], -[2,31192,591], -[2,4491,31193], -"vrsource-tslint-rules", -"syntax-patches-for-csstree", -"base-driver", -[2,31228,29677,31230], -[0,5245,4874,5542,29696], -[2,31203,31204], -[3,27731,11], -[2,31201,57], -[3,1006,11], -"averse", -"@types/args", -[2,31208,57], -"squid", -[3,34785,11], -"privoxy", -"mod_proxy", -"via", -"x-forwarded-for", -"@express", -"-zod-api/zod-plugin", -[0,32859,8549,5592,5576,5130,6082,28450], -[1,2343,31245], -"p3-linear", -"fill-keys", -"not-found-error", -[2,5223,31219], -"MCP", -[3,8648,12], -"hello-world", -[2,13669,31223], -[2,31226,28613], -[3,2670,12], -[3,33464,11], -[3,1004,13], -"cp-sugar", -"-external-push", -[2,31228,31241], -"-status", -[2,16238,31232], -"l-ct-react", -[2,31236,1983], -[3,11282,19], -[2,11147,1983], -[2,12042,4406], -[3,31198,24], -"pug-", -"move-base", -"pug-code-gen", -"pug-filters", -[2,31228,31261], -[0,26964,0,31273,2537], -"pug-lexer", -"@langchain/community", -"pug-linker", -"pug-load", -"pug-parser", -"pug-runtime", -"strip-co", -[2,31252,19490], -[2,31240,31253], -"@lobechat/agent-runtime", -[3,24593,18], -"down-it", -[2,31256,31257], -[2,24585,4535], -[3,31231,17], -"shape-emoji", -[2,31228,31271], -[2,31995,5257], -[2,32038,31267], -"bail", -"tap-bail", -" tools", -[2,31269,31270], -[3,31238,12], -"shape", -"updater-color", -[2,31281,26543], -[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238], -[1,2343,31309], -[2,33763,31291], -[3,31262,20], -"idn", -"idna", -"dns", -"domain", -[3,31262,21], -[2,31283,31284], -[3,31272,22], -"ut-modes", -"-bidi", -[2,7001,31285], -[3,11071,14], -[2,17414,31287], -"@uppy/companion", -[2,31313,364], -"detect-agent", -[2,5176,31293], -"remapping", -[2,31295,13901], -[3,33831,13], -[2,31298,31299], -"purge", -[3,28384,12], -"presigned-post", -[2,31301,31302], -[3,30257,11], -"erceptor", -[2,2032,31304], -"prom-bundle", -"grant", -"tus-js-client", -"qr code", -[2,2662,1278], -[0,26964,0,31273,2523], -"resumable uploads", -"tus", -"dropbox", -"@vuepress/", -[2,21282,31372], -[2,31316,31324], -"@radix-ui/", -"@browserify/envify", -[3,31317,12], -[2,31318,31135], -"common-s", -"hakeify", -[2,31320,31321], -"verr", -"primitive", -"webpack-chain", -"ide-mistake", -[2,31323,31326], -[2,15053,31327], -"unassertify", -[2,31355,31356], -[2,31313,553], -[2,31313,1783], -"vue-server-renderer", -[2,31338,31342], -"decode-", -[2,14649,4627], -[2,31335,31336], -[3,13063,12], -"filter-obj", -"-on-first", -[2,4237,31340], -"reset-app", -[2,31313,31346], -[3,5422,9], -[2,7193,3634], -"shared-utils", -[2,31332,2091], -[2,31349,3111], -[3,21294,16], -"retape", -[2,19469,31352], -[3,32087,20,4], -[2,21282,31354], -"last-updated", -[3,28754,17], -"ompose-refs", -"tap-esm", -[2,31359,31604], -[3,31330,18], -"synchronous", -[2,28756,8191], -[2,31363,31364], -[3,31361,17], -"rimitive", -"FIFO", -"lifo", -"LIFO", -[2,28756,32760], -"queue js", -"job queue", -"job ", -"active-header-links", -"scheduling", -[2,31371,31373], -[2,21282,3412], -"task queue", -"ordered", -[2,31380,31382], -"linked list", -[3,31368,20], -"dequeue", -"escape-keydown", -"assistant-stream", -[2,31385,6599], -"assistant-", -[2,31418,31420], -[1,2343,31476], -"parchment", -[3,15562,11], -[2,31395,31396], -[3,12455,16], -[2,31391,1722], -[2,17612,2924], -[2,5197,4408], -[3,1694,14], -"x-buildutils", -"@types/sharp", -"radix-ui", -"ai-sdk", -"shadcn", -"fuzzysort", -"grunt-search", -[3,19622,19], -[2,31403,3595], -"@qunitjs/browserstack-runner", -"assistant", -"openai", -"ai", -"chatbot", -"ai-chat", -"dom-e", -[2,15588,6863], -[2,31411,31412], -[2,31415,31416], -[3,6493,9], -"acritics", -"@types/qunit", -[3,31331,11], -"qunit-plugin", -"heme-default", -"@walletconnect/browser-utils", -"ai-chatbot", -"ai-assistant", -"ai-copilot", -[2,31349,31428], -"exists-stat", -"js-reporters", -[3,15580,13], -[2,26353,8791], -[2,31436,31464], -"chatgpt", -"gpt4", -"gpt-4", -[3,2888,14], -[2,31436,553], -[3,31421,15], -"testling", -[2,31436,31441], -"AnimationFrame", -[2,705,31439], -"safe-json", -[2,31436,31443], -"window-getters", -[2,31450,6774], -"-export-", -[2,31445,14057], -[2,1205,31446], -"envvar", -"sanctuary", -[3,31442,22], -"-identity", -[2,31449,31451], -"xyz", -[2,6080,31458], -"@ethersproject/address", -[2,31457,25352], -[3,10408,17], -"al-ui", -"wallet", -"walletconnect", -"jsonrpc", -"cryptocurrency", -"dapp", -"iso-crypto", -[2,31436,31472], -[2,31467,31408], -[3,31454,15], -[3,30286,15], -[2,31436,594], -[2,31436,1616], -"alc", -"legacy-modal", -[2,31478,9962], -"@globalart/nestjs-swagger", -[2,32811,32812], -[0,31481,0,7653,2523], -[2,31478,553], -[3,31465,22], -"timed-out", -[2,31478,594], -[0,12215,12219,1014,28999,7406,7403], -"exceptions", -"sentry", -[3,15602,13], -[2,31499,31500], -"@graphiql/plugin-doc-explorer", -[1,2343,31488], -[0,31505,0,31510,34352], -[2,31478,5576], -[2,31436,31491], -"jsonrpc-provider", -[2,31493,31494], -[3,31490,23], -"http-connection", -[3,27276,25], -[2,31497,31498], -"ethereum-", -"test-network", -[3,31438,16], -"ocket-transport", -[2,7850,21497], -[3,4986,9], -[2,2079,4406], -[2,11183,31503], -[0,29419,29441,29454,29756,29757,29766,29807,29813], -"father-build", -"@mastra/core", -"rc-test", -[2,31520,13927], -[0,29818,4270,29823,5472,1973,29830,29830,3857,89,5131,12295,12296,5122], -"react-slider", -"slider", -[1,2343,31522], -[3,31027,15], -[2,7850,11512], -"core-licensed", -"wordpress", -"gutenberg", -[2,14013,8189], -[3,1103,9], -"angular-mocks", -[0,31529,0,31531,2487], -"graphiql", -"next-router-mock", -[3,5251,10], -"ponselike", -[2,31525,31526], -"body-scroll-lock", -[0,2817,18023,1125,1129,31764,1122], -"motion-v", -[0,30999,28818,5995,17978], -[1,2343,31546], -"radash", -"@a2a-js/sdk", -"js-tiktoken", -"hono-openapi", -"@ai-sdk/provider", -[2,31543,31545], -[3,2766,10], -"jasmine-ts", -[2,13130,3212], -[3,3793,11], -"@ai-sdk/", -[2,31643,1623], -"ui-utils", -[0,0,31547,31628,2523], -[0,1389,2665,4650], -[2,31537,31570], -"body scroll", -[2,31549,31551], -" lock", -[3,65,8], -"react scroll lock", -"react-common", -[2,31552,31554], -[3,31555,17], -"ponents", -[2,31556,31557], -[3,31555,14], -[2,31559,21189], -[3,31560,16], -"oks", -[2,31561,31562], -[2,31559,14592], -[3,31553,12], -"freeze", -"vanilla-js", -"tablet", -"bsl", -"-v5", -[2,31572,31582], -"@mastra/", -[2,1379,31574], -"node-info", -"@restart/hooks", -"resolve-path", -"@restart/ui", -[2,3744,20622], -"unco", -"ntrollable", -[2,31579,31580], -"schema-compat", -"ecosystem-react", -[2,31585,594], -[3,31548,17], -[2,11484,31587], -"sole-ui", -"@icon", -"s/material", -[2,31588,31589], -[2,3131,1512], -"reactcss", -"@types/esm", -"@case/eslint-config", -[2,31596,31601], -[3,29736,11], -"centered", -[2,10818,31597], -[3,30881,30], -[2,31599,1204], -"up-sync", -"chai-spies", -"jsx-loader", -"ntext", -[2,3808,31604], -[3,3850,10], -"@types/sane", -"testdom", -"@lukeed/uuid", -[2,31584,31570], -"color picker", -"sketch", -[2,4807,4547], -"photoshop", -[2,31616,5592], -[3,31573,14], -[2,31618,6893], -[3,31548,18], -[2,31538,31570], -[3,2651,13], -"tags-plugin", -[2,31620,31621], -[2,31626,6893], -[2,28010,1492], -[2,1585,31624], -[3,31610,24], -"mocha-jshint", -[0,4384,2076,5131,4453,2013,15535], -"@ai-sdk/azure", -[1,2343,31641], -[2,31543,31407], -"docgen/cli", -[2,10802,31632], -[2,31635,671], -"@internal/", -[2,31637,31638], -[3,28766,11], -"ypes-builder", -"@openrouter/ai-sdk-provider", -[2,1710,2136], -[0,31660,31662,31663,34352], -"is-root", -"camelcase-", -[2,24559,31675,31676], -"llm", -"agents", -"vectorstore", -"@react-d", -"nd/invariant", -[2,31648,31649], -[3,31650,11], -[2,31651,4163], -[2,1199,17586,31655], -"dnd-core", -"starts-with", -"embeddings", -"rag", -"evals", -"otel", -[0,26616,4391], -"replacement", -[0,2766,2297,2881,2886,2898,28023,3181,3758,4535], -[0,3113,26799,5131,1388], -[1,2343,31672], -[3,24807,15], -[2,31665,1286], -[3,8136,9], -"ctrine", -[2,31667,31668], -"html4", -[2,20245,16957], -[0,31679,31684,2514,2537], -[2,30415,31678], -[2,32813,18502], -"reference-", -"invalid", -"condense-newlines", -"landmark", -[0,20414,29996,17982,11049,30043,30048,3478,29457,3923,18730,20423,30050,30081,4729], -[2,30418,31681], -"olor-helpers", -"rtablejs", -"attr-accept", -[0,5526,5528,5529,31674,826,30086,4874,9241,20441,28400,1540,21594,1177,2078,2220,2222,5560,29197,3697,3752,4135,4193,4238,4481,91,4548,28519], -"vue-next", -"file-selector", -"draggable", -[3,71,24], -[2,31688,14255], -[2,69,5721], -[3,5700,24], -"ipeline-operator", -[2,31691,31692], -"-why", -[2,10876,31694], -[2,18043,200], -[3,4676,9], -"locks", -[2,31697,31698], -"drag-and-drop", -"color-name", -[3,1802,13], -"kanban", -[2,32312,2825], -"anser", -[2,2769,2086], -"le-promise", -[2,6935,31707], -[1,2343,31712], -"redbox", -"crash", -[0,31714,31730,31732,2443], -"css-mediaquery", -[0,3749,3527,11481,29170], -[3,33768,11], -"react-si", -"de-effect", -[2,31716,31717], -"iceworker", -"fl", -[2,16819,31720], -"karma-html", -[2,31722,2903], -"is-whitespace", -"nfl", -"noscript", -[2,31729,33865], -"dashdash", -"@types/ran", -[0,7812,30138,3742,1984], -"titanium-sdk", -[0,20001,671], -[3,20745,21], -"jest-preview", -[2,31395,4384], -"@polka/send-type", -[2,31005,31774], -[1,2343,31739], -[0,31746,31747,2514,2537], -[2,20413,1699], -[3,1845,22], -[2,31741,2855], -"react-mount", -"yarn-", -[2,31744,17335], -[0,58,1437,3930,814,4747], -[0,1178,29847,29851,25675,3758,3938,4216,4255,4389,4449], -"csstree", -"decap-cms-backend-aws-cognito-github-proxy", -[2,9497,31907], -[3,3321,10], -[2,31751,2849], -[1,2343,31756], -[3,19812,19], -[2,31754,965], -[0,31757,27070,27064,2523], -[0,28326,2017,31435,31469], -[1,2343,31761], -"completion", -[2,31780,31781], -[0,0,0,31762,2537], -[0,30486,5995,35981,7072,18035,89], -[1,2343,31783], -[2,31768,13083], -"viewport", -[3,15616,12], -"observer", -[3,1129,12], -"lazy load", -"inview", -"useInView", -"useIn", -"terse", -"query-plan-executor", -"decap-cms", -"aws-cognito", -"ctionObserver", -[2,31773,31777], -[2,31772,31778], -[3,31749,19], -"zure", -[2,31792,17977], -[0,0,0,31784,2487], -[0,1177,6939,89,3878,27158], -[1,2343,31786], -[0,31801,31803,31810,4139], -"@formatjs/", -"listformat", -[2,19067,31788], -[2,31787,31789], -[3,31790,14], -[3,31749,18], -[2,31792,31804], -"common-stuff", -[3,31790,11], -"cu-messageformat-parser", -[2,31795,31796], -[2,6458,1671], -[2,19067,31798], -[2,19644,8982], -[0,1104,22972,1676,2061,13896,1776,3102,4449], -"what-the-diff", -[0,53,87,94,1178,1429,1596,1177,1922,2323,2338,2384,2419,2436,2463,2510,2899,30496,3421,3697], -"git-gateway", -[2,31813,6064], -[3,18229,15], -"lat-gitignore", -"jsondiffpatch", -"gotrue-js", -[0,2323,1776,18011,5284,18444,1745], -"es-crypto", -"gateway", -[3,31793,21], -[3,19657,16], -[2,31814,2855], -[2,31813,620], -[1,2343,31818], -[0,31826,0,31829,2537], -"@nstudio", -[2,4564,2618], -[2,2617,31820], -[2,31792,2658], -[3,28165,19,9], -"hmac256", -"hmac512", -[0,2714,31809,3181,2867], -[2,31792,1973], -"exenv", -[0,30999,28818,5995,31804,31812], -"custom-", -[2,31830,11513], -[2,10704,31831], -"otp-io", -[2,29956,4963], -[2,31836,31837], -[3,23664,13], -"or-js", -"dom7", -[2,13843,353], -[2,1176,31839], -[2,14510,2091], -[2,22588,2091], -"diff-reporter", -[2,13872,31843], -[2,3024,6754], -[2,31848,31850], -[2,9944,7227], -[3,29951,21], -"tween", -"elpers", -"napa", -"runstorm", -[1,2343,31854], -[0,31909,31916,2514,2537], -[2,32904,158], -"nullthrows", -"@tiptap/core", -"metro-r", -[2,31858,96], -"metro-", -[2,31860,4227], -"s-runtime", -[2,6971,31862], -[2,5237,31863], -[3,5079,13], -"/codegen", -[2,31865,31866], -[3,31867,14], -"medium-zoom", -"js-polyfills", -[2,31868,31870], -"tinydate", -"tweezer.js", -[2,8603,1111], -"le-plugin", -[2,3630,31875], -[2,31868,31876], -"assets-", -[2,31878,29179], -[2,31868,31879], -[3,5059,11], -"olors", -[2,31881,31882], -[2,31868,31883], -"@jest/c", -"reate-c", -"-key-", -[2,31887,3046], -[2,6990,31888], -[2,31886,31889], -[2,31885,31890], -[2,3912,5959], -[2,31868,31892], -[3,31867,16], -"mmunity-cli-plugin", -[2,31894,31895], -[2,31898,4333], -[3,24539,13], -[2,17304,31900], -"laywright", -[2,32412,15001], -[2,31908,7188,32485], -"creator", -[2,10735,5130], -"mobile-", -[2,31905,5001], -"ttlcache", -"@tiptap/", -[0,30868,1414,2020,2105,2070,4745], -"cp-file", -[2,17964,31913], -[2,5063,18324], -[3,31333,16,3], -"keychain", -"yargonaut", -[0,20454,36559,30529,826,4874,30548,4135,1177,29197,91], -[2,36270,31918], -"s-test", -[2,31924,31925], -"@entypo-icons/core", -"ocial-buttons", -[2,4910,31921], -"evil-icons", -[3,15277,15], -"xecutable", -"feather-icons", -[1,2343,31933], -"fontisto", -"oslllo-svg-fixer", -"epub2", -"line-icons", -[2,4182,31931], -[0,0,21592,31936,2399], -"svg2ttf", -"svgicons2svgfont", -[0,12479,2947,7193,26421,27968,2100], -"osx", -[1,2343,31941], -"ssr-window", -"@pinia/colada", -[0,0,31946,31981,2399], -"@cmfcmf/docusaurus-search-local", -[3,3911,11], -"form-hmr", -[2,31943,31944], -[0,4493,32977], -[2,31951,31960,31962], -"currency", -"number-", -[2,31949,1671], -[3,27276,15], -[2,33571,89], -[2,31954,31957], -[3,7628,10], -"hijack", -[2,4013,31955], -"heck", -"onclick", -"outside", -"classic-", -[2,32028,1745], -"build-app-blueprint", -[2,31968,31971], -[2,812,12444], -"t-flow", -[2,17375,31965], -"hermes-eslint", -[3,31947,30], -"array-hyper-unique", -"crlf-normalize", -"ddon-blueprint", -"book", -"books", -"chapter", -"comic", -"epub-maker", -"epub-maker2", -"node-novel", -"novel", -"volume", -[0,188,4646,1542,32977,6533,3212,5472], -"matchmedia", -[2,31982,3766], -[1,2343,32268], -"yphenate-style-name", -[2,6495,31985], -"tch-", -[2,31987,11034], -[2,18655,31988], -[3,31989,12], -"mediaquery", -[2,31990,31991], -"-media-mock", -[2,3529,31993], -"@lobechat/", -[3,6415,10], -[2,31996,3582], -"escaping", -"respond", -"goat", -"matchMedia", -"🐐", -[2,32004,32005], -[3,31263,13], -"text-engine", -"color-logger", -"ice-cap", -[2,31995,18035], -"esdoc-importpath-plugin", -[2,31995,1807,32030], -"ECMAScript6", -[3,6608,10], -[2,32012,32014], -"2015", -"ECMAScript7", -[2,32017,6893], -[3,32013,13], -"ECMAScript8", -[2,32017,6836], -[2,3944,8253], -"k-monitor", -[2,4117,32021], -[2,32020,32022], -[3,32023,15], -"log-monitor", -[2,32024,32025], -"proposal", -[3,19209,12], -"http-graceful-shutdown", -"client-ipc", -[2,32032,32033], -[3,32010,19], -"server-ipc", -[2,31995,2092,591], -[2,31995,32036], -"model-runtime", -"mdc", -"developer", -"combobox", -"multiselect", -[2,31995,3742], -[2,31995,594], -[2,31995,32044], -"web-crawler", -[2,32047,13538], -"json2mq", -[3,1841,9], -"-apps", -[2,21340,32048], -"-carousel", -[2,11167,32050], -"why-did-you-update", -[2,32057,32058], -"carousel", -"Image slider", -"orbit", -[3,1841,12], -"rts", -[2,1841,6324,4978], -[2,32074,32082], -"@tippyjs/react", -"@vxna/mini-html-webpack-template", -"common-dir", -[2,1861,3427], -"name-p", -[2,32065,84], -[2,18977,32066], -"glogg", -[3,26921,11], -[2,32069,1646], -"jss", -"jss-plugin-camel-case", -[3,32072,12], -[3,32059,20], -"ompose", -[2,32073,32075], -[3,32072,11], -"default-", -"default-unit", -[2,32077,32079], -[2,32077,2202], -"s-gateway", -"isolate", -[2,32077,32083], -[2,32077,3639], -"listify", -[2,12171,2651], -"q-i", -"qss", -"-annotation-resolver", -[2,3822,32090], -[3,32091,13], -"-handler", -[2,4904,32093], -[2,32092,32094], -[2,32047,6038], -"react-group", -[2,4287,1928], -"type-detect", -[2,32047,45], -"inter-element", -"@types/buble", -"py-webpack-plugin", -[2,4860,32103], -"@types/esc", -"odegen", -[2,32105,32106], -"h-sum", -[2,12395,32108], -"@types/ke", -"ymirror", -[2,32110,32111], -[3,23829,17], -[2,32113,3119], -[2,27479,4408], -[2,13419,32115], -[3,12290,12], -[2,32117,13735], -[3,8157,15], -[2,32119,5331], -"deabsdeep", -"white-space", -"deepfreeze", -"dog-names", -"amia", -[2,22060,32125], -[2,32047,32128], -"market-sdk", -"keymirror", -[2,4293,6987], -"@lobehub/tts", -"tts", -"@lobehub/ui", -"@neondatabase/serverless", -"@next/third-parties", -"@react-spring/web", -"jest-pre", -[2,29611,32139], -"user-require-helper", -"@serwist/next", -" vector graphics", -[2,24090,32141], -"tagname", -[2,24116,7466,32165], -"svginjector", -"@t3-oss/env-nextjs", -"@trpc/client", -"@trpc/next", -"@trpc/react-query", -[3,32029,17,5], -"TapEventPlugin", -"300ms", -"http-shutdown", -"http-terminate", -"prometheus", -[2,33763,13538], -[2,30495,32158], -"dge-config", -[2,36840,32160], -"ctions", -[2,32163,32168], -[3,7214,13], -"@vercel/s", -"icss", -"lement", -[2,24116,32179], -"@4tw/cypress-drag-drop", -"peed-insights", -"@xterm/xterm", -[2,4609,2759], -"brotli-wasm", -"alert", -[2,29706,32174], -"-and-timezones", -"dexie", -"drizzle-orm", -"commoner", -[3,10755,11], -"hydrate", -"coverify", -"es3ify", -"infima", -"grunt-jest", -"jasmine-t", -"apreporter", -[2,32184,32185], -"drizzle-zod", -"populist", -"drizzle-", -"gpt-tokenizer", -[2,32192,32193], -"inferno-hy", -"perscript", -[2,23910,13494,32197], -[2,9944,9847], -[2,9944,591], -"-to-backend", -"js-sha256", -"vnode", -"createVNode", -[2,32237,1098], -[2,14040,1276], -[3,1898,19], -"lay", -[2,1962,32204], -[2,2783,3758], -[3,15568,16], -[2,1781,32212], -"scrolling", -"infinite", -"fixed", -[3,31752,17,3], -"langchain", -"gulp-rtlcss", -[2,26708,32182], -"langfuse", -[2,5223,32178], -[2,1861,32217], -"dark mode", -[2,32216,1732], -"lucide-react", -[2,32223,32224], -[3,3120,12], -"txt", -"react-popper", -"bootswatch", -"docstrap", -"storysource", -[2,10818,32228], -"model-bank", -"customize-cra", -[2,32234,32235], -"holderjs", -"modern-s", -"creenshot", -"react-prism", -[3,34791,12], -"logging-helpers", -"next-mdx-remote", -"nextjs-toploader", -"nuqs", -"officeparser", -[2,32244,1098], -[3,33256,22], -"github-files-fetcher", -"oidc-provider", -"ollama", -[2,7719,1612], -"partial-json", -[2,3502,33498], -"@stitches/react", -"animate-sass", -[2,3562,32254], -"trolling", -[2,32256,32257], -[3,839,14], -"gr", -[2,11932,8861], -"mocha-r", -"eporter", -[2,32259,32260], -[2,4385,32261], -"pdf-parse", -"preview jest", -[2,27010,32290], -"plaiceholder", -"posthog-js", -[0,0,32306,32313,2537], -"log-utils", -"pwa-install-handler", -"line by line", -"engine-base", -"engine-handlebars", -[2,32278,32279], -"lo", -"repl", -"lo-dash", -"react-con", -"fetti", -[2,32283,32285], -[2,4150,32282], -"-75lb", -"react-la", -[2,11072,2731], -"yout-kit", -[3,19580,11], -[2,32286,2002], -[2,5237,57], -"lws-middleware", -"-tagfilter", -"refactoring", -"printing", -[2,3715,32292], -[2,26973,32308], -"react-pdf", -"react-rnd", -"react-scan", -[2,32299,32304], -[3,3913,11], -[3,12133,19], -"tagfilter", -"prepare", -"dangerous", -"oso", -"react-wrap-balancer", -[0,1175,2323,2332,30561,2367,2459,2494,2504,2510,2530,1894,4045], -[2,17355,13771], -[3,23279,13], -[2,4627,8840], -[2,3166,32309], -"mobile-detect", -"composition", -[0,30563,30564,30565,30566,30567,30568,5131,9006], -[2,32315,32316], -"resolve-a", -"ccept-language", -"rtl-detect", -"lister", -"parse-entities", -"svix", -"tokenx", -"ts-md5", -"@red", -"grunt-jasmine-node", -"@redis/bloom", -"@redis/", -[2,32326,5576], -"unstructured-client", -"@redis/json", -[2,32326,7193], -"use-merge-value", -"time-series", -[2,32326,32332], -"mobilegrade", -[2,20223,16460], -"sniff", -"word-extractor", -[2,32339,594], -"zustand-", -[1,2343,32427], -"@cfaester/enzyme-adapter-react-18", -"ocly/openapi-core", -[2,32323,32342], -[2,32348,3005], -"nth-child", -"nth", -"rc-hammerjs", -[3,30906,13], -[3,1750,11], -[2,1186,3939], -[2,32349,32350], -"theme-redoc", -[2,32349,32352], -[2,32356,32366], -[3,8286,13], -"@lobehub/i", -"heme-common", -[2,32355,32357], -[2,20201,594], -"is-alphanumerical", -"api-doc", -[3,32351,12], -[2,32362,10958], -"is-decimal", -"is-hexadecimal", -"18n-cli", -[2,32047,671], -"netlify-plugin-cache", -[2,32370,553], -[3,32127,16], -[2,32047,32373], -"cssinjs", -"seo-cli", -[2,28427,32375], -[3,28091,16,8], -"just-curry-it", -"reducers", -[2,17790,32377], -"@next/eslint-plugin-next", -[2,16479,1414], -[3,1905,16], -"icorn-camelcase", -[2,32381,32382], -[2,4321,9776], -[2,2130,32384], -"@peculiar/webcrypto", -[2,16931,32388], -"roma-js", -"@wdio/selenium-standalone-service", -"babelrc-rollup", -[2,32398,32399], -"insert-line", -[2,5316,1464], -[2,3944,2700], -"queryselector", -"shadowdom", -"rdme", -"@types/cr", -"ypto-js", -"@types/ip", -"tanstack", -[2,32403,32404], -"gulp-str", -"eamify", -"rc-tools", -"@redux", -"-saga/core", -[2,32406,32407], -[2,32417,32419], -"tappable", -[2,33060,1501], -[3,13875,15], -"lias", -[2,32412,32413], -[2,3807,32442], -"effects", -"@types/nu", -"side effects", -"meral", -[2,15461,32423], -[2,32422,364], -"@actions/", -"idc-provider", -"redux-m", -[2,32424,18716], -"@types/pg", -[0,32428,32472,2514,2537], -[0,30585], -[2,32430,32439], -"@types/r", -"ecmarkup", -[2,32437,32438], -"gulp-emu", -[3,2453,9], -[2,32434,2995], -[2,2505,4088], -"@readme", -[3,23709,18,8], -"tl-detect", -[2,5051,32441], -"ystemjs", -"ful", -[2,24167,32455], -"dbdocs", -"dpdm-fast", -[2,32189,32451], -"goober", -"jest-esm-jsx-transform", -"parcel-plugin-css-to-string", -"use-throttled-effect", -"dbml-generator", -"abstract", -"hex", -"wai-aria", -"ice-detect", -[2,32466,38], -"drizzle-kit", -[2,1949,32459], -"dx", -"is-hidden", -"fake-indexeddb", -[2,9335,6424], -"just-diff", -"smart-tv", -"smarttv", -[3,15570,11], -[2,3506,4581], -[2,3862,32492], -"mcp-hello-world", -[2,12285,2527], -"remark-mdx", -[0,188,11018,30592], -"simple-routing", -[3,23352,11], -"mdx-", -"jsx-a", -[2,32476,5714], -[2,32475,32477], -[2,8137,32478], -[2,8909,32479], -[2,32474,32480], -"serwist", -"snapshot-", -[2,32483,1182], -"-bubble-menu", -"vercel-ai", -"nano-equal", -[2,1849,32489], -"-fuzzy", -"azure-openai", -"shouldComponentUpdate", -"file-viewer", -[2,3862,15571,32498], -"visual-model", -"stt", -[1,2343,32500], -"quicklook", -"-v2", -[2,3862,3730], -[0,0,32501,32517,2487], -[0,33043,442,34111,30737,4874,7677,22839,1177,1895,1942,1982,2807,25209,2990,20085,1894,19713,30762,23535,4131,1531,4507,91,4523,1984], -[2,31995,32503,32515], -"observab", -"image-gallery", -"image-viewer", -[2,32510,32530], -[2,32508,32509], -"vitepress-", -"plugin-group-icons", -[2,5119,32511], -"vg", -"issue-", -[2,32512,57], -[2,21520,22370], -"ility-otel", -[2,32518,32526], -[0,30769,8893,7595,7517,6564,7265,1209,3776,7268,6081,4799,553,91,4545,614,6731,6435,594], -[3,217,9], -"mock-stdio", -[3,3998,15], -"ebpro", -[2,32520,32521], -[2,9785,24387], -[3,23523,21], -[2,32524,3874], -"ndicator", -"progressbar", -"distribution", -"indeterminate", -"-charts", -[2,3862,32543], -[1,2343,32533], -[0,32534,32537,32542,2487], -[0,30787,28465], -[2,17092,32536], -"-path", -[0,11536,29317,30792,8850,1397,1556,2020,2070,30794,3510,1689,29444,4042,4174,4227,91,8550,28865], -[2,32539,21172], -[3,5079,24], -[2,11147,970], -[2,5557,970], -[0,6996,668,5362,28865,4042,2924], -"youtube-iframe", -[2,3115,19101], -"unified-args", -[2,32563,5066], -[1,2343,32548], -[0,0,32549,32555,2523], -[0,442,7677,1177,1938,1942,30828,1964,1966,2832,1531,30835,91,4523,1983,1984], -"ackends", -[2,32904,990], -"iframe", -[2,3993,6424], -"@cacheable/utils", -[0,21354,91,2844,7020,7119,30841,20179,7047], -[1,2343,32642], -"@apphosting/build", -"@atomico/rollup-plugin-sizes", -"git-branch-is", -"remark-slug", -"react-spring", -[2,32565,10896], -[3,30798,17], -[2,32575,32576], -[3,32557,12], -"-isomorphic", -[2,23276,32566], -[2,25131,32566], -[2,32570,32574], -[3,32041,11], -"@bedrock-layout/use-forwarded-ref", -"gmail-send", -[2,4807,31528], -"ython-interpreter", -[3,3895,11], -"-singleton", -"text-hex", -"ssrf-safe-fetch", -[2,32589,32623], -[3,23054,11], -"ent-config", -[2,32580,32581], -"ntributors", -[2,24218,32583], -[3,9343,15], -"gap", -[2,32585,32586], -[3,9347,9], -[3,30640,22], -"cense", -[2,32588,32590], -[3,23078,23], -[2,32592,10663], -[3,23082,24], -[2,32594,7210], -[3,23085,14], -"get-nonce", -"le-extension", -[2,32596,32598], -[3,23085,18], -[2,32600,23076], -"rst-", -"heading-", -[2,32603,2970], -[2,32602,32604], -[2,32596,32605], -[3,23092,13], -[2,9398,590], -[2,32607,32608], -"consec", -"utive-blank-lines", -[2,32610,32611], -[2,23099,32612], -"emphasis-", -"as-heading", -[2,32614,32615], -[2,23099,32616], -"name-articles", -[2,2093,32618], -[2,23099,32619], -[3,32620,25], -[3,32612,12], -"rast-color-function", -"dashes", -[2,32622,32624], -[2,32621,32625], -"irregular-", -[2,32627,7169], -[2,32621,32628], -"mixed-case", -[2,32621,32630], -"@theuiteam/lib-builder", -"crawler-detection", -[2,32746,31528], -"outer-dashes", -[2,32621,32635], -[3,23118,23], -[2,32637,8958], -"punctuation", -[2,32637,32639], -"missing-", -[0,0,0,32677,2487], -[2,31635,32673], -"blank-lines", -[2,32641,32644], -[2,23099,32645], -[3,32646,16], -"ulti", -"ple-toplevel-headings", -[2,32648,32649], -[2,32647,32650], -"dollars", -[2,5124,32652], -[2,23099,32653], -[2,16065,17537], -[2,23099,32655], -[3,32656,18], -[2,32657,591], -"ordered-", -"list-ma", -"rker-value", -[2,32660,32661], -[2,32659,32662], -[2,23055,32663], -[3,23139,22], -"-alignment", -[2,32665,32666], -[2,17998,2585], -"retext-english", -"retext-", -[2,10832,2195], -[2,32670,32671], -"ai-v6", -[2,32675,32676], -[3,32643,13], -"sdk-v4", -[0,3358,1564,10057], -[2,32700,7174], -[3,23096,14], -"nk-title-style", -[2,32679,32680], -"maximum", -"-heading", -[2,32683,15309], -[2,32682,32684], -[2,23055,32685], -[3,32686,20], -"line-length", -[2,32687,32688], -[3,23113,30], -"ed-urls", -[2,32690,32691], -[3,23113,25], -"s-in-section", -[2,156,32694], -[2,32693,32695], -[3,32617,18], -"ty-url", -[2,32697,32698], -[3,31198,34], -"-paragraph", -[2,15403,32701], -[2,32637,32702], -[3,23118,16], -[2,32704,14550], -[2,170,23116], -[2,23099,32706], -"-like-url", -[2,11043,32708], -[2,23099,32709], -"ed-fu", -"ll-reference-image", -[2,32711,32712], -[2,14475,32713], -[2,23124,32714], -[3,32715,39], -[2,32716,163], -[3,32672,14], -[2,32718,3997], -[2,31228,27863,32721], -"bsorbers", -[2,32723,32724], -[3,32720,20], -"emitters", -[2,32722,32726], -"-shape-circle", -[2,32728,32729], -[3,32725,35], -"square", -[2,32731,2585], -[3,31244,19], -"autolinker", -[2,32734,32735], -[3,31244,14], -"lim", -[2,31281,14858], -[2,31281,32738], -"roll", -[2,31281,32740], -"tilt", -[2,32742,32743], -[3,32739,22], -"winkle", -[2,31281,32745], -"wobble", -"tua-", -[2,4511,32078,4366], -[1,2343,32763], -"caseless", -[2,32752,2855], -"aws-sign2", -[3,32674,18], -"oauth-sign", -[2,3013,2660], -"forever-", -[2,32755,4575], -"har-validator", -"is-typedarray", -[2,2666,1580], -"use-callback-ref", -"taper", -"karma-cli", -[0,32764,32771,32780,2399], -[0,8181,26057,28329,28607,28620,28631,28632,28672,28673,26364,28963,29273,28685,30585,31857,31902,32411,33136,34082,33056,33586,33588,33590,33591,34083,33592,33600,33601,33604,33613,33623,10981,10984,37051,34087,28709,1556,16230,28718,28761,28780,28805,28883,28896,28911,2161,36538,28964,3090,3189,31530,28974,3510,29049,15451,4382,29050,4383,27921,27438,29161,29165,29219,29220,29235], -"glob-bin", -"use-sidecar", -"JSDA", -"stealthy-require", -[3,4010,16], -[2,32769,364], -[0,29267,29290,29295,10614,34092,11016,11018,31408,29304,1177,2559,29332,3980,4543,1984,29887,29323,188,13151], -[2,32774,32779], -"thenable", -[3,5430,21], -"useRef", -"createRef", -"merge refs", -"vconsole", -"ummary", -[0,29345,29332,8588,4383,12951,188,12072,6284,91,10309,181,4380,5130,29346], -[1,2343,32785], -[2,32783,32784], -"detect-n", -"ode-es", -[0,0,32791,32799,2443], -[2,4807,1845], -"@react-pdf/renderer", -"code spliting", -"sidecar", -[2,4625,8119], -[0,5087,1192,4468,4474,4493,91], -"index.js", -[2,32028,33976], -"is-wayland", -"copy-text-to-clipboard", -[2,32797,32798], -"mutation", -"-observer", -[0,5995,10906,24299,29527,29563,29565,29575,29576,29658,29706,29723,1623,6802,4967,29731,29730,29842,29845,29868,29963,30047,30133,30136,30161,30163,30487,91,30489,30501,30523,30562,30569,30574,30591,30593,30600], -"-tslint", -[2,1009,32800], -[3,1009,11], -"/analyze-trace", -[2,32802,32803], -[2,1977,2528], -"micro-", -[2,32806,7906], -"svelte-loader", -[1,2343,32837], -"down-config", -[3,13476,17], -"ntext-async-hooks", -[3,36559,16], -"ResizeObserver", -[2,32817,11937], -"worktop", -[3,8809,20], -[2,17214,5477], -"perty-rule-prelude-list", -"path-parse", -"scss-loader", -"-flag", -[2,6846,32822], -[2,15884,32823], -[3,1790,16], -"copy-dir", -[3,8119,14], -[3,32790,18], -"vue-scroll", -"vue-scrollbar", -"vue-plugin", -"滚动条", -"eartbeat", -"lory.js", -[2,33112,33113], -"adjust-sourcemap-loader", -[0,32838,32846,30825,2487], -[0,29304,26699], -[2,32841,10238], -[2,4807,1955], -[3,31435,16], -"cls-hooked", -"myrmidon", -[2,31436,2018], -[3,30380,15], -[0,1192,1177,4042,4468,1894,91,5087,4880,1895,1955,2780,1011,1009], -"ncredible", -[2,32845,32847], -"ensor", -[2,4914,32849], -"secrets", -[2,16645,32851], -[3,25837,16], -"anjs-rules", -[2,32853,32854], -"fatum", -[2,14560,6816], -[2,3335,32857], -"telegram", -[2,21386,32859], -"vesta", -[1,2343,32868], -"react-camera-pro", -"documentate", -"idebar", -"umentate", -[2,25821,32866], -[0,0,32869,32882,2523], -[0,4880,4883,89,3824,91], -"better-npm-run", -"clamp.js", -[2,19825,4627], -[2,1870,32872], -"ewma", -[2,4031,24388], -"spdy", -"karma-fixture", -[2,20441,6543], -"restify-", -"clients", -[2,32879,32880], -[0,89,28946,6847,30858], -"watershed", -"@applitools/utils", -"DTrace", -"karma-opera-launcher", -[1,2343,32893], -[3,18613,12], -"convict", -[2,32957,32963], -"antora-component", -"@dataui/crud", -[0,32898,32902,32915,2523], -"is-uuid", -"rewrite-imports", -"quit", -"shutdown", -[0,30939,30941,30944], -"terminate", -"kill", -"serviceworker", -[0,30949,30951,30953,30954,30961,30966,30973,30976,30977,30980,30984,30985,30988,31003,31007,31024,31033,31036,31053,31060,31065,31067,31068], -[2,32904,11017], -[3,32884,12], -"@types/webrtc", -"NoSQL", -"reql", -" language", -[2,3766,32908], -"applitools", -"eyes-sdk", -"test automation", -"visual regression", -[2,32731,27819], -[0,26591,1973,5472,13083,6969,1429,1145,1745,31077,31079,31080,1776,1204,6813], -"accelerate", -"detectrtc", -[2,32892,30665], -[2,32920,614], -[3,32918,13], -[1,2343,32935], -[2,32923,32931], -"install-p", -"json-copy", -[2,28093,32924], -[2,31281,32933], -"nano-copy", -"plain-", -[2,3425,1496], -[2,32928,32929], -"eers-cli", -"prepend-file", -"life", -[2,32937,32938], -[0,0,30812,30825,2523], -[1,2343,32964], -[3,32737,23], -"tate", -"drag-drop", -"plasmo", -"camera", -"prebuild", -"-install", -[2,32942,32943], -"webcam", -"-os", -[2,642,32946], -"practice", -[2,15090,32948], -"cam", -"Automation", -"pixel", -"blob-to-buffer", -"recognition", -"webRTC", -"autohotkey", -[3,35870,14], -"drag drop", -"machine", -"drag & drop", -"learning", -"react-h5-audio-player", -"itro-modules", -[0,32974,33037,33040,2523], -[2,32995,8745], -[3,16005,16], -[2,32966,4142], -"-twoslash", -[2,4614,32968], -[2,9408,32969], -[2,15125,5711], -"date-time", -"flru", -[0,31384,31735,34024,31315,31330,31358,34025,31361,31362,30375,31368,31378,31383,3266,9011,4763,9355], -[2,33470,33475], -[3,30686,19], -"pinia", -[2,15476,8961], -"wasm-pack", -"@expo/spawn-async", -[2,32982,147], -"@parcel/c", -"@parcel/fs", -[2,32985,5602], -[3,5367,15], -[2,5368,7158], -"mnemonic-id", -"node-object-hash", -"@plasmohq/init", -[2,32991,32992], -"@plasmohq/", -"parcel-config", -[2,32994,23], -[3,32990,19], -[3,10848,14], -"@plasmo/config", -[2,32999,33003], -"js-cleanup", -[3,32996,11], -[3,4058,16], -[2,33000,3874], -[2,25572,1155], -"stants", -[2,33006,594], -"removal", -"@plasmo/", -[2,33006,5130,33008], -"-shared", -[2,4807,32965], -[2,13843,19101], -"ixins", -"visionOS", -"tvOS", -"macOS", -[2,33018,89], -"3-drag", -[2,6491,33016], -"@iconify/", -"cpp", -[2,4861,24847], -[2,33022,2847], -"static-s", -[2,21897,33024], -"sass2less", -"swift", -"player", -"mse", -"commenting", -[2,14034,13828], -[3,19570,16], -[2,33030,2649], -"spdx-", -"eme", -"jsi", -"satisfies", -[2,33032,33035], -[0,8818,4874,4880,4883,89,3824,1984,31390], -[2,2369,2284], -[3,32978,18], -[0,31398,3287,4592,31399,89,4963,181,4967,4380,31400,31406,31407,31408,6070,31409,30210,31410,31422,31423,31424,31431,31432,31433,31454,31466], -"p-banner", -[2,33039,33041], -[2,33044,147], -[3,5517,19], -[1,2343,33049], -[2,8147,14773], -"ts-expose-internals", -[2,13888,2150], -[0,0,0,33054,2537], -[2,1884,10791], -"buffer-es6", -"process-es6", -"astrojs", -[0,3563,1623], -"compliance", -[2,33060,33585], -"dset", -"flattie", -"magicast", -[3,31902,18], -"zod-to-ts", -"xxhash-wasm", -"yocto-spinner", -"@oslojs/encoding", -[2,33066,33067], -"@astrojs/c", -"ompiler", -[2,34674,13535], -"zod-to-json-schema", -"http-cache-semantics", -[2,33072,33073,3984], -"@astrojs/m", -"arkdown-", -[2,34674,6943,19687], -[2,7185,33076], -"-object-hash", -"MappingURL", -[2,4225,33077], -[1,2343,33081], -"@types/dlv", -[0,33089,33090,33091,2537], -"rehype-toc", -"astro-scripts", -[2,33085,33086], -[3,24220,12], -"titles", -[2,4807,9485], -[2,4807,33070], -[0,26675,26678,26684,26690,26685,3259], -[0,5087,4874,1596,1192,1894,3951,3980,4094,4468,4474,1531,4521,91], -[0,12659,8124,1745], -[1,2343,33094], -"strata", -[0,33095,33102,33103,2523], -[0,9355,9307], -"nd-cache-dir", -[2,16785,33096], -[3,13364,12], -[2,33098,1095], -"graphlib", -[3,4069,16], -[0,1983,89,2220,3824,26744,966,1030,972,968,30521], -[0,89,2220,31523,1932,1745,25677], -[1,2343,33105], -[0,33106,33107,33108,2523], -[0,2611,3478,1759,31533,33507,3084,31534,2226,31535,2845,33062,31609,31536,31750,31548,31617,31619,31571,5328,31610,31623,29421], -[0,4763,4493,1177,2205,4042,1984,4473,23203,91,53,4874,31629,31631,31634,32643,2069,10879,8818,32674,32750,7677,31636,33137,31639], -[0,31408,31645,29486,4575,31646,31647,31656,31657,31658,3151,2041,91,31659,5130], -[1,2343,33132], -"fuzzysearch", -"sander", -[3,29704,20], -"ntax-descriptor-syntax-production", -"@types/d3-", -[2,33114,4552], -[2,33114,1473], -"force", -[2,33114,33117], -"hierarchy", -[2,33114,33119], -[2,33114,16662], -[3,33121,11], -[2,33122,1659], -"@saintno/comfyui-sdk", -"@virtuoso.dev/masonry", -"treemap", -"sunburst", -[2,13480,33130], -"diagram", -"jaeger", -[2,13475,4715], -[0,0,33135,33217,2523], -[2,5088,33134], -"dfkit", -[0,107,972,5087,1742,1192,3286,1894,89,3824,3904,4039,4468,91], -[2,33142,33147], -[2,31635,3965,553], -[2,33141,20760], -[2,33140,23], -[3,34681,19], -[3,10210,16], -[3,32411,20], -"testrunner", -"@next/", -"@next/env", -"@rspack/core", -[3,26697,11], -[3,5215,12], -"piccolore", -"-optimizer", -[2,11928,33150], -[2,33148,33151], -[2,4850,14643], -"css/metrics", -[2,4202,33154], -[2,17189,33155], -[3,28436,14], -[2,33157,16358], -[2,33157,6805], -[3,33159,15], -"rimitives", -[2,33160,33161], -"turborepo", -"triples", -[2,29314,33164], -[2,27913,1237], -[2,33144,33166], -[3,33167,15], -"nomodule", -[2,33168,33169], -[2,3878,3007], -[2,33144,33171], -"@next/swc", -"@taskr/clear", -"ac-colors", -"@taskr/esnext", -"mphtml-validator", -[2,9165,33177], -[2,10880,1179], -"i-info", -[2,4857,33180], -[3,11796,15], -[2,33182,10366], -[3,7808,17], -"rve-s", -[2,16826,9654], -"tatic-core", -[2,33185,33187], -[2,33184,33188], -"hsv", -"@types/fresh", -"urry", -[2,7887,33192], -"th-to-regexp", -[2,28121,33194], -"atform", -[2,28175,33196], -"@types/send", -"amphtml-validator", -"async-sema", -"lch", -"cli-select", -"color-names", -"client-only", -"cmyk", -"comment-json", -"mix", -"edge-runtime", -[2,13773,1194], -"lodash.curry", -"native-url", -"string-hash", -"taskr", -"unistore", -"watchpack", -"harmonies", -[0,89,3286,23803,3287,38,3212,1973,5472], -[1,2343,33219], -[0,0,33220,33224,2487], -[0,603,8862,811,816,6373,5535,30867,5087,13204,31087,11016,17494,11018,13072,1503,1567,1610,1192,2780,2832,2990,15324,1894,4042,4073,4076,4201,29889,4383,4468,91,1983,188,4639,4646,19235], -[3,18758,12], -"ogress", -[2,33221,33222], -[0,188,8588,31685,31687,31700,7838,29889,31702,1802,17819,29953,31703,91,31704,4453,5131,5284,4627,181], -[1,2343,33226], -[0,26338,0,33234,2537], -[2,27135,16460], -[2,33229,33521], -[3,30464,13], -"domparser-rs", -"rtl", -"ltr", -[2,33461,33965], -[0,3857,5128,31912,89,5131,12295,12296,181,15571,35060,158], -[2,33236,18200], -"get-port-", -[2,33238,33239], -[3,5366,9], -"tter-sqlite3", -[1,2343,33241], -[0,33242,33246,25117,2487], -[0,30784,20378,16860,3530,3561,28865,27921], -"@antfu/ni", -"run series", -"@dotenvx/dotenvx", -[0,58,31292,5180,30787,37017,28465,8862,811,16808,10895,24725,9743,37012,28572,1415,1457,1544,1573,1594,1615,30023,1759,1763,37014,668,1869,2007,984,28575,31308,18584,3090,3189,11480,3266,3445,3493,3510,34928,3527,3613,3616,37015,28119,24759,29444,4042,4060,2278,21688,4200,37013,4072,4955,27438,4729], -[2,4807,30228], -[1,2343,33252], -"LINQ", -"FRP", -[2,29445,1732], -[0,0,0,33278,2537], -[2,33254,8253], -"@vitejs/", -[2,23354,6708], -[2,5,33255], -"side-effects", -[2,14614,33257], -[3,1705,12], -"ruiser", -[2,33259,33260], -[3,18106,16], -[2,33262,2429], -[2,1921,33274], -"tslint-etc", -"no-toplevel-property-access", -[2,4491,33266], -"tslint-no-", -"unused-", -[3,5804,11], -[2,33270,1429], -[2,33269,33271], -[2,33268,33272], -"wc", -[2,9352,364], -"datagrid", -"survey-core", -[0,3857,5128,12295,12296,28641,1616,5131,1149,4160,28654,28656,16722,31824,31825,3348], -[1,2343,33280], -[0,0,2667,31019,34352], -[1,2343,33300], -" allocate", -[2,1398,33282], -[2,17681,1965], -"2fa", -"hotp", -"uninitialized", -"topt", -[2,33290,33291], -"google a", -"uthenticator", -[2,33294,7120], -"mock-env", -[3,5165,11], -"dist-tag", -"one time password", -"prepublish", -[2,37718,20105], -"2 factor", -[0,33301,33306,33372,34352], -[0,5145,30551,30583,5154,7709,28384,30584,13437,30602,30603,30609,30610,13187,30814,12207,7948,30824,30866,30887,30906,31178,31179,31247,31255,31263,32003,32008,32010,32031,32975,32034,32035,32502,32041,32569,32042,32043,32045,32053,32059,32060,32096,32100,32127,32131,32133,29421,32134,32135,33128,33131,32787,32136,33124,32140,32146,958,32147,32148,32149,29261,32156,32157,32159,32161,33125,32169,30778,1114,13215,32171,35358,977,32173,1673,1676,32175,1687,32176,32187,31930,2069,37853,2096,4776,32190,2226,2646,2681,23913,32194,29762,2696,12105,32198,32208,2928,32213,32216,32220,3021,32221,3096,32222,3127,26568,32230,32232,3266,3286,3285,32239,32240,29306,3415,32241,32242,32246,32247,31407,32248,32249,32250,32263,29899,3513,3519,3533,32266,3555,32267,20325,32270,3765,3777,89,32274,3824,11366,12229,3837,32280,15575,32295,3882,32296,3885,32297,32298,32305,3984,3988,3989,32314,32317,4135,4164,9348,32578,4302,4341,32320,26713,4376,32321,32322,11804,32328,4566,32331,3348,32337,4729,4745,4763,9355,32338], -"@sai", -"lshq/lodash", -[2,33302,33303], -[2,4807,4588], -[0,192,37097,32344,32354,32367,32369,32371,32374,32379,32386,8648,27424,21120,968,972,974,32387,32391,5245,4864,32400,8818,4870,5139,4874,32409,32420,33133,32426,4880,4883,32429,5254,32440,11800,9315,9241,29891,7677,12384,1529,1556,1610,1620,32444,1759,1763,32445,32446,32457,1177,32458,32461,2151,2070,2559,2675,28375,32463,2990,1209,3117,32469,3171,3310,640,32470,3478,1894,3985,9340,32471,3992,28380,4131,32482,4320,4494,4507,91,4549,4555,1983,1984], -"captains-log", -"js-f", -"ile-", -[2,33309,19101], -[2,33308,33310], -[2,9480,33311], -"flaverr", -"survey", -"i18n-2", -"include-all", -"surveyjs", -"-as-action", -[2,32959,33318], -"survey-library", -"pack-process", -[2,32959,33321], -[3,33322,12], -[2,33323,1552], -[2,20100,3031], -"ictionaries", -[2,27239,33326], -"parley", -"rttc", -"form-component", -"-generate", -[2,4104,33331], -"sails-", -"stringfile", -[2,33333,33334], -"skipper", -"-addresses", -[2,4082,33337], -[2,22775,33338], -"whelk", -"form-rendering", -[2,33323,2150], -"@sailshq/", -[2,33343,705], -"survey-renderer", -"root-require", -"dynamic-form", -"hook-orm", -[2,33333,33348], -[3,33349,11], -"sockets", -[2,33350,33351], -[2,24095,33358], -"sails.io.js", -"-store", -"-file-store", -[2,1577,33356], -"-form", -"mvc", -"form-library", -"form-management", -"web-framework", -"sailsjs", -[2,8631,33366], -"sails.js", -"naire", -"data-collection", -"data-validation", -"input-validation", -[3,7842,12], -"schema-form", -[0,5130,31409,31431,3287,32486,31407,32490,32494,32132,32495], -[2,33374,3552], -[3,14944,11], -[1,2343,33468], -"truncate-", -[2,33467,33631], -"utf8-bytes", -[2,33376,33378], -"js-api", -"mktemp", -[2,30767,33384], -"filename", -"wasm-nodejs", -[2,31208,22074], -[2,11183,6882], -[2,13167,33388], -"abs", -[2,33391,10271], -"parse-srcset", -[3,13169,16], -[3,13405,16], -[2,11183,614], -"ostrophe", -[2,33392,33394], -[2,11183,158], -[2,33398,1020], -[3,33396,15], -[2,11183,33400], -"steps", -[2,33402,2699], -[3,33387,17], -[2,11183,18346], -[2,33405,9997], -[3,33403,15], -[2,13163,11218], -[3,32049,11], -[2,33407,13756], -"-sin", -"gle-context", -[2,33409,33410], -[2,2784,33411], -[3,31591,11], -[2,4961,4184], -[2,33413,33414], -[3,4927,10], -[2,11183,3811], -[2,33421,1799], -"glob-importer", -[2,33416,33419], -[3,33399,15], -[2,33421,10205], -[2,33421,10222], -[2,33425,184], -[3,33393,15], -[2,33427,10261], -[3,11185,16], -[2,33429,18338], -[3,13162,15], -[2,33429,5449], -[2,33432,9939], -[3,13162,17], -[2,33434,11206], -[3,33404,16], -[2,3115,11415], -[2,33439,33440], -"bare-script", -[2,1818,11415], -[3,27467,17], -"tions", -[2,33442,10148], -[3,33417,15], -[2,13167,11241], -[2,33445,33446], -[3,33418,16], -"gmented", -[2,33442,33448], -"agination", -[2,33389,11245], -[2,33397,11211], -[2,11183,9044], -[2,33453,33457], -[3,5050,13], -"food", -"drink", -"helpful", -[3,14673,16,7], -"ourcesoftware", -[2,8423,33458], -[2,25184,33466], -[2,41,3874], -"teaching", -"experi", -[2,33463,1744], -[2,13527,591], -"local-npm-registry", -[3,5123,14], -[0,33469,33476,6151,2523], -[0,546,8605], -[3,32034,11], -"ecdh", -"ecdsa", -"solver", -"bplist-creator", -"etch-sse", -[0,8616,91], -"seed", -[1,2343,33480], -"oxfmt", -[0,33481,23733,33483,2523], -[0,29421,6494,1525,2026,12105,4548,4763], -"@bazel/runfiles", -[0,29681,29695,29718,29719,31264,1745,13083], -[1,2343,33485], -[0,33486,33487,33488,2537], -[0,7384,26870], -[0,4200,3510,89,4207,4135,1984,24324,3824,4459,11143,16485,3170,3527,27921,91,4874,5254,37085,8778,11938,32815,32818], -[0,4270,29043,1984,5472,1973,4627,4963,23246,89,188,3709,5926], -[3,21120,19], -[2,33489,3543], -"aggregate-error", -"bunup", -"env-ci", -[2,2103,18280], -"git-l", -"og-parser", -[2,33495,33496], -"-esm", -[2,18170,33498], -"p-each-series", -[1,2343,33502], -[0,33506,33508,33509,2523], -"file-url", -[2,2847,4219], -[2,17050,33504], -[0,2018,32839,32844], -"p-retry", -[0,2924,5087,4874,4677], -[0,6901,20319,1973,5472,5433,13657], -[2,33511,57], -"markdown ", -"solidjs", -"@fluentui/react-component-event-listener", -[3,33513,26], -[2,33514,2538], -[3,6061,10], -"/event-stack", -[2,4133,33517], -[2,33516,33518], -[2,8652,3858], -"oolbar", -"@artsy/fresnel", -[2,30415,594], -"standalone", -[2,54,33524], -[2,33527,33531], -"@react-s", -"@percy/cli", -"@percy/c", -[2,33529,4915], -"tately/overlays", -"anchor-js", -[3,14132,14], -[2,33535,17966], -[3,33526,15], -"ilter-imports", -[2,33533,33536], -[2,33544,33548], -"d-props", -[2,2034,33539], -[2,1249,33540], -[2,30851,1204], -[2,1199,33542], -"@react-t", -"chai-enzyme", -"react-ace", -"react-code", -"ypes/shared", -"sandboxer", -[2,33547,33549], -"ource-render", -[2,3890,33551], -"react-static", -[2,33559,6649], -"-routes", -[2,33553,33555], -"niversal-component", -[2,12273,33557], -[3,3911,17], -"satisfied", -[3,4134,12], -[2,33561,1623], -[1,2343,33569], -"simulant", -"ta-scripts", -[2,4409,1231], -"@aws-lite/client", -"@aws-lite/s3", -[0,0,33570,33584,2537], -[0,1173,1175,1195,1267,1272,1280,1282,32870,1429,32871,34009,1652,1676,1705,1177,1903,1958,1970,2054,2092,2151,2629,2651,2297,2878,2881,2895,32877,26470,2897,2900,2904,32886,2906,2912,2915,2925,2899,3363,3524,4039,37320,12826,4131,4535,37871,4027,2924,4681], -[3,21564,23], -[2,33571,1219], -[2,18124,16284], -[2,33575,7625], -[3,2001,11], -"bikeshed", -"mock-tmp", -"semicolon", -"tap-arc", -"@casl/dx", -"cloudfunctions", -"apigateway", -"api gateway", -[0,6398,20986,32888,32054,31512,4453,35062,6970,5131], -"drag-handle-vue-3", -[2,33060,33587,4403], -"floating-", -[2,33060,33589], -"horizontal-rule", -[2,33060,158], -[2,33060,26074], -[2,33060,33597], -"eraro", -"fast-sa", -"fe-stringify", -[2,33594,33595], -[3,28051,11], -"gate-executor", -"gubu", -[2,31908,1783], -"@tiptap/pm", -"ordu", -"patrun", -[2,31908,33607], -"rolling-stats", -"use-plugin", -"starter-kit", -"@seneca/test-plugin", -"lab-", -[3,29583,11], -[2,33610,2528], -[2,33609,33611], -[2,33621,33622], -"-entity", -[2,4136,33614], -"seneca-e", -"rror-test", -[2,33616,33617], -"seneca-", -[2,33619,19138], -"@tiptap/s", -"uggestion", -"@tiptap/vue-3", -"micro-service", -[2,33624,591], -[3,14587,13], -"minimum", -"viable", -"startup", -[1,2343,33632], -"orklets", -[0,33637,33651,33665,2523], -[2,10196,21009], -"Sentimental", -[2,11183,9352,3392], -"nlp", -[0,32905,32917], -"@farmfe/cli", -[2,6283,33647], -[2,35438,35525], -"dottie", -[2,1153,1430], -[2,4140,30807], -"sort-class", -[2,17693,33644], -"wkx", -"-testing", -[3,9786,10], -[2,33648,103], -[2,33900,147], -[0,4880,4883,8152,1009,1011,1540,1177,1895,1955,1959,32922,32932,1894,4042,4076,4474,4484,91], -"chai-datetime", -"esdoc", -"-ecmascript-proposal-plugin", -[2,33653,33654], -"esdoc-", -"inject-", -[2,4306,1932], -[2,33657,33658], -[2,33656,33659], -[2,18124,1932], -[2,33656,33661], -"ibm_db", -"js-co", -[0,32941,32945,32950,89,12295,12296,5131,32955], -"@webgpu/types", -"mbinatorics", -[2,33664,33667], -"mariadb", -[1,2343,33693], -"jmp", -"node-hook", -"p-props", -"p-settle", -"pg-hstore", -"fail-on-", -"sav", -"s-store", -"major-bump", -[2,33676,33679], -[2,21386,33680], -"snowflake-sdk", -[2,33691,33692], -"db2", -"snowflake", -"object ", -"relati", -"onal mapper", -[2,33687,33688], -[2,33686,33689], -"@prisma/m", -"anagement-api-sdk", -[0,0,33694,33695,2487], -[0,89,3857,21166,33377], -[0,3857,2171,12295,12296,33012,33013,33014,33019,5130,89,33025,970,5260,2062,33034,7671,8632,1283,22743], -[1,2343,33698], -"@tinymce/tinymce-react", -[0,33699,0,33715,2487], -[0,31680,28069], -"@ser", -"ialport/binding-mock", -[2,33700,33701], -[3,33702,19], -"s-cpp", -[2,33703,33704], -[3,33702,12], -"n1ed", -"byte-length", -[2,15497,33708], -[2,33706,33709], -[3,33710,19], -"cctalk", -[2,33711,33712], -[2,33711,28979], -[0,1473,1623,57], -"-byte-timeout", -[2,6941,33716], -[2,33711,33717], -[1,2343,33720], -[0,0,0,33752,34352], -"packet-length", -[2,33711,33721], -[2,33711,3925], -[3,33723,23], -[2,33724,1493], -[3,33723,21], -[2,33726,17402], -"slip-encoder", -[2,33711,33728], -[3,33729,20], -[2,10972,4383], -"@heroicons/react", -"pacepacket", -[2,33730,33733], -[2,33706,3101], -[2,33743,33747], -"ccTalk", -"com port", -"COM", -"data logging", -"hardware", -"modem", -[3,8292,9], -"nodebots", -"RFID", -"sensor", -"plus/elements", -"serial port", -"sms gateway", -"sms", -"UART", -[0,1512,1623], -[2,32092,91], -[2,33755,33756], -"react-li", -"b-tools", -"update-check", -"@zeit/schemas", -"is-po", -"rt-reachable", -[2,33759,33760], -[2,33769,33770], -"@vercel/", -"style-guide", -[2,33763,33764], -"@types/ser", -"ve-handler", -[2,33766,33767], -[3,2909,10], -"serve-directives", -"ts-blank-space", -"vitest-fail-on-console", -[1,2343,33776], -"windowed", -"temp-path", -[0,33778,33779,33780,2487], -"favicon", -[0,33243,53,58,5889,92,33245,29421,33305,1393,1525,1595,1680,1699,1687,2020,2071,2151,31401,2674,2929,3244,3310,3445,3467,3561,3681,3742,3930,30228,4382,4473,4480,4588,4763,33069], -[0,10879,4864,7812,33247,4039,4493,4507,91], -[0,4963,181,4380,31398,31400], -[1,2343,33782], -[0,0,0,33783,2487], -[0,89,188,23332,4607,33275,33276], -"@extend-chrome/messages", -[2,33786,13901], -[3,33784,15], -"@types/chrome", -[1,2343,33793], -"@types/jsesc", -[2,33791,33792], -[3,32170,13], -"nspect", -[0,0,33805,33809,2487], -"chrome-extension", -"webext", -"webextension", -"verless/utils", -[2,33700,33797], -[3,33010,17], -"z-commitlint", -[2,5465,33800], -[3,33798,12], -[2,33802,1973], -[3,4156,10], -[0,5087,4874,1009,1011,1177,1886,1895,1938,1955,1958,1966,1982,2070,1192,1894,4039,4042,4052,27720,4076,4468,4474,4508,4514,17223,91], -" plugins", -[2,33804,33806], -"aws lambda", -[0,33285,28946,33286,33288,33289,33292,33296,33298,5165,33299,202,1388,4967,5995], -" web services", -[2,6997,33810], -".com", -[2,33804,33812], -[1,2343,33815], -[0,0,0,33816,2487], -[0,33314,1669,33317,33320,33330,33341,33345,33347,33353,33360,33361,33364,33367,33368,7021,33369,33370,1781,2845,33371,33345,12899,4967,5284,91], -"isoformat", -"cdk/aws-lambda-python-alpha", -[2,13562,33818], -[3,7709,16], -[2,33820,7308], -"eventbridge", -[2,33820,33822], -[2,33820,13573], -"ns", -[2,9191,33825], -[2,9191,3763], -[2,9191,4799], -[2,17253,33832], -"lib-dynamodb", -[2,13548,33830], -"-tree-1d", -[1,2343,33855], -"htl", -"util-dynamodb", -[2,13548,33835], -"@types/d3", -"aws-cdk-lib", -"iot-device-sdk", -[2,9194,33839], -"caporal", -"-highlight", -[2,14558,33842], -"apache-arrow", -[3,9167,11], -[2,33845,33839], -"d3-geo-projection", -"@types/aws4", -"esbuild-r", -[2,33849,8736], -"jsii", -"jsii-diff", -[2,17111,7268], -"jsii-docgen", -[0,33856,0,29047,2537], -[0,28872,13411,13412,13388,1137,1170,30051,1362,33474,18220,2139,2188,2070,22410,21226,6698,1209,3074,3220,3275,27534,2072,3547,3919,4025,4108,4135,4165,4351,13400,4507,3348,4707,4753], -"jsii-pacmak", -[1,2343,33859], -[0,33861,33862,33864,2537], -"obuild", -[0,30293,26557], -[0,4874,30306,30305,30310,4039,1531,91,1984], -"type-plus", -[0,30297,13527,5592,5995,2679,23932], -"ge-parser", -[1,2343,33870], -"flow-re", -"move-types", -[2,33867,33868], -[0,33873,33874,33875,2537], -"isequalwith", -"date-fns-tz", -[0,2611,3510,1689,15452,8550,28862,33235,28142,15261,23531,2670,28282,12207,31026,20745,28283,31737], -[0,4493,1984,16473,15450,91,4874,19759,31794,5517,28203], -[0,3724,25638,32916,2703,5001,3304,5472], -[2,33892,33895], -"@emnapi/runtime", -"@img", -"/sha", -"rp-libvips-dev", -[2,33879,33880], -[2,33878,33881], -"-wasm32", -[2,33882,33883], -[3,33882,19], -"win32-ia32", -[2,33885,33886], -[3,33887,25], -"x64", -[2,33888,33889], -"emnapi", -"string-s", -"-reader", -"exif-reader", -"plit-by", -"dzi", -"thumbnail", -"libvips", -"vips", -"@farmfe/c", -"cargo-cp-artifact", -[2,14736,34112], -"skia", -"offscreen", -"compositing", -[1,2343,33917], -"vulkan", -"metal", -"flmngr", -[2,4167,14994], -"shelljs-", -[2,33911,3979], -"travis-", -"changes", -"check-changes", -[2,33913,33915], -[0,33919,33922,33923,2487], -"makefile", -[0,33567,33568], -"imgpen", -"unsplash", -[0,33574,1610,1177,3173,33577,3421,3752,33579,4389], -[0,7200,13573,6997,33804,6599,33581,33582,7308,6949,6808,33583,5130], -[1,2343,33925], -[0,33926,33931,2514,2537], -[0,33666], -"bitly", -"shorten", -"mongoid", -"tinyid", -[0,1787,91,18279], -"kapok-js", -[1,2343,33934], -[0,33939,33946,33947,2399], -"should-", -"should-equal", -[2,33935,1671], -"should-type", -[0,89,3824,33697], -"-adaptors", -[2,33938,33940], -"should-util", -"@types/listr", -"houldjs", -[2,1901,33944], -[0,3775,4039,4487,4469,3744,91,53,4874,4880,1195,4883,5090,1167], -[0,4445,6092,33707,89,6038,1936,6105,7062,27968,9381], -[2,32223,2636], -"pdf-generation", -"assignments", -"homework", -"html-to-pdf", -"grunt-endline", -"quiet-grunt", -"semver-sort", -[1,2343,33957], -[0,0,33958,33960,2523], -[0,30703,442,9307,33731,33732,29273,33736,968,972,974,5364,7806,7639,4874,4880,4883,31397,4992,1413,1497,1536,1639,1177,1961,7585,2203,2675,2832,2990,3105,3127,3561,1894,21024,89,33753,3824,5564,33754,3885,4073,4079,33762,4164,4200,4382,4383,4072,33771,4474,4494,91,4523,29139,1983,26744,32255,1984,33772,9355], -"Function URL", -[0,89,6071,4607,11316,33774,3392,32209,32210,3912,176,10052,21604], -[1,2343,33966], -"plugin-open", -[2,33911,33962], -"Durable function", -"-sdk", -[0,33967,34002,34003,2523], -[0,10895,31832,1084,1448,1573,1676,37014,2071,2151,2835,3090,3510,3527,3878,4042,4094], -"@secretlint/secretlint-rule-github", -[2,33970,3378], -[3,33968,28], -[2,33972,33973], -[3,28473,18], -"ap-runner", -"secretlint", -"@vue/tsconfig", -"extender", -"fs-core", -[2,33979,27106], -[3,18529,16], -[2,33979,202], -[2,33980,33982], -"-builtins", -[2,33984,33985], -[3,33981,21], -"to-fsa", -"@kwsites/file-exists", -"@kwsites/", -[2,9466,14834], -[2,33987,33988], -[2,33984,594], -[3,33989,17], -[2,33991,27725], -"@sim", -"ple-", -"git/babel-config", -[2,33994,33995], -[2,33993,33996], -[2,33979,24171], -"source ", -[2,33999,12619], -[2,33979,8745], -[0,33784,33785,8862,811,8850,816,840,20978,33787,5244,5245,4864,11300,33789,4874,4880,4883,1009,1011,1030,11016,1457,668,33850,1177,1959,11348,3400,34971,89,3824,4039,4057,15277,3709,4507,91,1983,33790,1984,188], -[0,4080,11504,3195,33794,7188,33795,33796,1388,33799], -[1,2343,34005], -[0,34006,34016,2514,2523], -[0,1653,33817,33829], -[2,29234,34008,34010], -"pec-", -"custom-event", -[3,11133,16,9], -"ant-stuff", -[2,13112,34011], -[2,32845,34012], -"rrect-lockfile", -[2,33664,34014], -[0,1414,33834,4494,1983,2832,2899,1424,1177,4042,2203,1894,4473,33837,4614,442,91,4874,2820,6503,33844,17113,19181,33847,8850,33853,17112,10615,3112,1895,811,1011,816,1009], -[3,8136,10], -"nalyzer", -[2,32412,34018], -"-navigation", -[1,2343,34022], -[0,34023,34045,34046,2487], -[0,20584,2131,2674,33876], -[2,31395,1542], -[2,34026,34042], -[3,34030,17], -"is-safe-filename", -[2,5600,34029], -"recurse", -[2,28756,18346], -"@asciidoctor/core", -[2,29611,34035], -"samsam", -[2,11122,34033], -"site-publisher", -[3,11134,16], -"plugin-n", -"o-prototype-methods", -[2,34037,34038], -[2,34036,34039], -"@studio/changes", -"ropdown-menu", -"@openspacelabs/react-native-zoomable-view", -"clock", -[0,23531,4874,33901,2611,3297,4449], -[0,1424,10798,33903,33904,29727,15344,11812,158,11806,33905,8924,33907,33908,2636,8221,9561], -[1,2343,34054], -[2,29611,34049], -"asciidoc-loader", -"vendor", -"mocks-", -"and-spies", -[2,34051,34052], -[0,34056,34057,34058,4139], -"asciidoc", -[0,33909], -[0,4469,91,2924,4677,89,3824,4880,4883], -[0,89,33909,2090,1586,10057,33920,158,6038,9229,33921,6997,6949,13531,20614], -[1,2343,34069], -"express-json5", -"-readme", -[2,8924,34061], -"-htpasswd", -[2,4199,34063], -"fs-ext", -"crypt3", -"pod-install", -[2,13888,2036], -[0,34072,34073,34074,2523], -"pinch-to-zoom", -"pinch", -[0,37082,26380,17214], -[0,1984,3541], -[0,1388,3541,4627,17050,1973,5472], -[1,2343,34077], -"@polka/url", -[0,34079,34080,34081,2537], -"totalist", -[0,1138,1437,1457,2182,2185,2226,2600,2685,2991,3127,3758,4135,13834], -[0,33943,8147,5254,33768,1166,1424,3421,29899,1894,3706,28593,4474,4481,91,1906], -[0,33948,200,33949,1745,33950,33951,1783,2636,3758,3197,33952], -[3,33056,29], -[2,33060,34084], -"node-range", -"bytes-iec", -"nanospinner", -[2,37050,6579], -"budget", -[3,13526,12], -[2,34089,34088], -[1,2343,34094], -[2,959,34093], -"table-core", -[0,34095,34100,28315,2523], -[0,1437,4747,28172,32884,28236], -"file size", -" size", -[2,7204,34097], -"get size", -[0,4874,32551], -[1,2343,34102], -[0,34103,21592,34106,2523], -[0,4135,32884,28236,28200], -"-cognito-identity-js", -[2,6997,34104], -[0,32910,32912,32913,13428,5472,6533], -"skapi", -[1,2343,34109], -[0,34110,34117,34120,2537], -[0,31855,28236,28200,32884], -[2,20327,1984], -"-no-globals", -[2,17375,34114], -"ormat", -"unloader", -"seperator", -[0,2065,34007,32903,13426,3536,11132], -[2,34119,12675], -[3,36879,12], -[0,32910,32912,32913,13428,5472,6533,29724], -"is-fullwidth-code-point", -[1,2343,34123], -[0,34124,34126,34129,2537], -[0,1525,940,999,32138], -"random-item", -[0,32889,33932,34031,34032], -[2,29611,34128], -"file-publisher", -[0,29699,200,1179,1745,29703,29753], -"publisher", -"folder-size", -[2,2183,34131], -[1,2343,34135], -"js-extend", -[0,34138,0,34140,2537], -"math-sum", -[2,7627,1413], -[0,34048], -"tablify", -[0,29699,32891,5457,34055,1745,29703,29753], -"slow", -[1,2343,34144], -"dts-plugin", -[0,26338,34145,34146,4139], -[0,5467,21155,10614,5087,4870,4880,5091,1009,1011,1529,1177,1895,1955,2675,1192,34067,1894,89,3857,21166,3980,91], -[0,3857,5128,12295,12296,34070,34071,5131,970,4627,6624,16660,37460,4420,4384], -[1,2343,34153], -[2,5051,34149], -"cheduler", -"htmlcs", -"standards", -"WCAG", -[0,34155,34158,34159,2399], -[2,2287,33914], -[0,4419], -"urlify", -[2,21831,364], -[0,32426,3519], -[0,25638,14873,5472,17878,4419], -[1,2343,34162], -"stage-js", -[0,34163,34164,2514,2487], -[0,31292,3530,9354], -[0,25366,33243,33638,33650,16804,33146,4874,20374,29891,1112,19839,33902,668,1177,34113,2807,2990,3090,28865,4042,9245,1531,91,34115,29470,1983,1984,2924,4677,29161], -[2,4609,12607], -[2,4609,34168], -[2,18124,1781], -"pages", -" output", -[2,3721,34169], -" standard", -[2,4216,34171], -"standard ", -[2,34173,3721], -" for ", -[2,34175,4255], -[2,25264,34176], -[3,34177,11], -[2,34178,9338], -"stylish ", -[2,34180,16237], -[2,34180,4255], -[2,1983,6872], -[2,34183,22156], -[1,2343,34192], -"box2d", -"game", -"physics", -"axios-ntlm", -"xml-crypto", -"2d", -[0,14631,0,34193,2487], -[0,29699,32891,20204,1745,29703,29753], -"@types/sax", -[1,2343,34196], -[0,34202,0,34210,2399], -[2,4005,34198], -"s-cli", -[3,26390,16,13], -"base64id", -[2,9246,25513], -[0,34127], -[2,34204,2403], -[3,5556,15], -[2,34206,34690], -[3,28724,15], -[2,7686,34209], -"@socket.io/component-emitter", -"minify-templates", -[0,29699,32891,34130,1586,1745,29703,29753], -[1,2343,34212], -[0,34213,0,29047,2523], -[0,10744,1209,3084,25886], -[1,2343,34215], -[0,0,34223,34248,2523], -[2,34217,158], -[3,5386,10], -"faceoff", -[2,34220,34221], -[3,16767,16], -"erformance-monitor", -[2,16766,6812], -[0,107,442,4856,7677,1091,1177,1895,1894,4039,4060,4193,4072,4481,4484,4508,4514,4523,1983,34165,34166,34183,34184,4614,1984], -"fast-wrap-ansi", -"@rslib/core", -"eventsource", -"oxc", -"sockjs", -[2,28573,34230], -"rslib", -[2,28606,34232], -"rstest-config", -[2,34234,6847], -[3,10235,18], -[2,29314,3090], -"@pnpm/list", -"@pnpm/workspace.find-packages", -[2,1463,20001], -[2,37509,34240], -"eeverse", -[2,34242,34243], -[3,4892,10], -"npkg__lockfile", -"fast-npm-meta", -"@nolyfill/internal", -[2,34247,35011], -"@nolyfill/", -[0,34186,12075,5284,91,34187,34188,16284,34191,5131], -[1,2343,34250], -[0,0,34251,34252,2523], -[0,107,4874,1009,1011,17494,1177,1895,2025,2899,1894,34197,4060,34199,4193,4508,4514,91,1983,34165,34166,34183], -[0,12075,34187,22894,8691,16284,34191,1424,16697,5122,5131], -[1,2343,34255], -"separated", -[0,34256,0,34257,2537], -[0,4447], -[0,4525,5284,34227,33479,1894,91], -[1,2343,34259], -[0,0,0,34285,2537], -"fumadb", -"microfiber", -[3,8277,10], -"alars", -[2,34262,34263], -"load-files", -[2,5527,34265], -"compact", -[2,3715,34267], -[2,9470,34268], -"@anvilco/apollo-server-plugin-introspection-metadata", -"kysely", -"bdd-lazy-var", -"@orpc/zod", -"@orpc/otel", -"neverthrow", -"introspection", -"@c15t/logger", -"-query", -[2,34276,34278], -"@orpc/server", -"@orpc/openapi", -"@orpc/contract", -"@c15t/translations", -[2,13498,202], -[0,4796,26481,2968,31176,6646,3378,3420,9478,6666,3552,4135,18710,7671,33163,33186,18280,9527,4749], -"kysely-pglite", -"@c15t/vitest-config", -[2,34289,34290], -"@libsql/", -"kysely-libsql", -"string-t", -[2,34295,21160], -"o-stream", -[2,34291,34293], -"@c15t", -[1,2343,34322], -"consent", -"privacy", -"ccpa", -"binary-split", -[2,7241,14922], -"lgpd", -"self-host", -"consent-management", -"user-privacy", -[2,34307,34308], -"data-pro", -"tection", -"cookie-banner", -[2,34304,34311], -"-platform", -[2,2339,5365], -"cmp", -[2,34315,7179], -"consent-", -[3,5079,14], -"imageinfo", -"prettydiff", -"sprity-css", -"/common", -"sprity-lwip", -[0,0,34323,2514,2537], -[0,29713,34235,635,34236,34237,811,8850,816,23339,8712,28206,34239,34241,29308,1525,1707,34244,3749,3527,4079,34245,34246], -"object-stream", -[1,2343,34327], -"through2-spy", -[0,34329,0,29047,2443], -"coordinates", -[0,13387,13412,13388,20908,13395,1170,1362,1364,2026,29067,2670,1209,3084,3162,3237,3509,4148,4507], -[1,2343,34332], -"css-sprite", -[0,33469,33476,6151,2443], -[1,2343,34334], -[0,34335,33476,6151,2443], -[0,31874,546,8604,8605], -[1,2343,34337], -[0,34338,34339,34340,2399], -[0,4763,16230,15095,34260,34271,34273,4341,34274,34275,32176,34277,34280,34281,34282,34283,13471,34284,13495,13502], -[0,3244,32426,6526,91,4874,34286,6494,34287,12207,34288,33237,34292], -[0,34297,34298,7229,34299,34302,5995,34303,34304,34305,33055,34306,34309,34310,34313,34314], -[1,2343,34343], -"asn1", -[0,34344,34346,34347,2399], -[0,2105,3527,2072], -"bcrypt-pbkdf", -[0,28177,4880,1701,3442,21166,91], -[0,3857,12295,12296,31937,6574,6635,5128,31912,89,5131,181,1017,45,13814,22875,2414], -[1,2343,34349], -[0,34350,0,34351,4139], -[0,4597,3173,940,34048], -[0,29699,32891,1563,1745,29703,29753], -1772409600000, -[1,2343,34361], -"integrity", -"subresource integrity", -"sri", -"sri hash", -"sri ", -"sri string", -[2,34358,1179], -[0,0,34362,34381,34352], -[0,34363,32558,48,53,5240,83,87,34368,34369,5583,6373,1178,1193,17217,24621,29883,34370,29775,1540,1759,1177,1935,1938,27790,2126,29945,35634,2675,1192,11896,32206,11348,11350,3534,34376,1894,3720,3758,34197,4042,34377,4060,4073,4079,4146,91], -[2,34364,34365,34367], -[3,5215,13], -"ollup-plugin", -"shuruhatik", -[3,10697,17,6], -"@fezvrasta/tsc-silent", -"@khanacademy/flow-to-ts", -[2,34374,34375], -"long-", -[2,4252,591], -[2,34371,34372], -[3,14697,22], -"place-variables", -"poster", -[2,34378,34379], -[3,11802,15], -"low-entry", -"version-guard", -[0,8190,8191,5399,8192,34384,34385], -[3,12809,13], -[2,34382,7051], -"popper", -[2,8194,34386], -" engine", -[0,0,7997,7998,34352], -[1,2343,34390], -[3,1570,26], -[0,0,34394,34396,34352], -"fig-spec", -[2,34389,34391], -"dotgitignore", -[0,10615,6503,4874,1387,1429,2899,3363,4042,4426,91], -"std-mocks", -[0,34397,2238,34398,16629,7521,34399,29804,31687,1993,16284,9006,34400,34401,8424,34402,6829,26514,34403,34404,34406], -"anime", -"anime.js", -"timeline", -"easings", -"cubic-bezier", -"splitText", -"WAAPI", -"Canvas", -"ban-sensitive-files", -"WebGL", -"deps-ok", -"dont-crack", -"git-issues", -"pre-git", -"simple-co", -"mmit-message", -[2,34411,34412], -[0,9116,9122,9131,34352], -[1,2343,34416], -[0,7967,7938,7939,34352], -[1,2343,34418], -[0,0,0,10570,34352], -[0,0,12106,12107,34352], -[1,2343,34422], -"modern-syslog", -[0,0,11488,34424,34352], -"winser", -[0,7789,34425], -"decrypt", -"etsy", -"metric", -[0,34430,34436,34440,34352], -"aggregation", -[0,34431,34432,34433,34434,34435], -"ev-emitter", -"fizzy-ui-utils", -"get-size", -"imagesloaded", -"unidragger", -[0,1462,1177,34437,34439,2907,4320,4323,4072], -[2,1949,34438], -"etafizzy", -"jquery-bridget", -[0,4453,6398,34441,31512,32054,35060,36197,1388], -"flick", -[0,17201,17202,17203,34352], -[3,11146,12], -[1,2343,34445], -[0,0,34446,34448,34352], -[0,1429,1700,2323,2367,22122,2409,2447,2494,2530,34447,2899], -[2,22465,35458], -[0,6901,27679,16626,3220,3222,1666], -[0,0,0,18014,34352], -[1,2343,34451], -[0,0,0,34452,34352], -[0,17199,16892,2869,3166,34453,11326,207,20531,57], -"lex", -[1,5293,34455], -[0,8391,34352], -[1,2343,34457], -[0,34458,0,2514,34352], -[0,1395], -[0,20095,20097,2514,34352], -[1,2343,34461], -[0,0,34462,34463,34352], -[0,2080,4389], -[0,18012,25866,18108,34464,30091], -"maths", -[3,10821,18], -"11y", -[2,34465,34466], -"pannellum", -[1,2343,34470], -[0,0,34477,34483,34352], -[3,32229,23], -"hots", -[2,34471,34472], -"-puppeteer", -[2,34473,34474], -[2,10818,31765], -[0,2899,2025,16189,34478,34482,3469,1149], -[2,34481,2844], -"orchbox", -[2,22060,34479], -"persist-", -"jugglingdb", -[0,11415,3469,34482,16189], -[2,4270,676], -"patternlab", -"-pat", -[0,53,61,83,87,90,92,442,10615,29767,6061,16607,6063,6065,16608,16612,29769,1193,20517,29775,1503,1593,1610,1177,15510,1942,2026,2323,2338,2544,2765,24652,29778,1192,2780,1776,29779,2990,9750,5103,29780,29783,3758,3957,4131,4523,1983,29770,27900], -[1,2343,34495], -"tern-library", -[2,34486,34489], -[2,21043,34490], -"django-", -[2,34492,5354], -"jinja2", -[0,0,0,34496,34352], -[0,34497,11328], -"panorama", -[0,26328,26329,26330,34352], -[1,2343,34501], -"findit2", -[0,34502,0,2514,34352], -[0,3760,13126,4747,4709,3259,4545,1481,16734,1512,4720], -[1,2343,34504], -[0,7936,7938,7939,34352], -[0,0,0,23762,34352], -[1,2343,34507], -[0,34509,34512,34518,34352], -"funsert", -[0,3744,34511], -"into-stream", -"rip-out", -[0,48,53,78,87,90,94,1148,1596,1843,1845,1177,34514,17585,1951,1959,2832,2899,3421,89,3824,32510,34517], -"Assert", -[2,34515,34516], -[3,1886,16], -"daddy-react", -"setup-env", -[0,8221,3857,21610,34519,11512,89], -"compatiblity", -"compatibl", -"ity", -[0,0,0,23771,34352], -"-metadata", -[2,26612,34523], -[0,11976,4874,7677,12690,3377,3446,7461,9245,91,1984], -[1,2343,34529], -"livestream", -[2,34527,3642], -[0,0,34530,2514,34352], -[0,53,87,811,13866,816,1198,1290,1389,2766,2297,2871,2881,2886,2898,6387,2923,3758,4042,4045,34531,20981,34533,20983,4073,4650], -[2,34532,671], -[3,15277,16], -[2,15476,34534], -"ass", -[1,2343,34536], -[0,0,34538,2514,34352], -"gulp-rimraf", -[0,4039,3188,34539,34543], -"testit", -"string.js", -"stringjs", -"S", -"gethub", -[1,2343,34545], -[0,0,34546,34548,34352], -[0,48,53,87,1178,1261,1177,1881,1895,1938,1955,1192,1894], -"codsen-utils", -[0,6270,4202,1413,34549,57,34550,17180,14638,12786,30946,2382,2098,2090,7017,6435,6270,15253,3721], -"bits", -"iec", -"ranges-apply", -0, -"ranges-push", -"string-le", -"ft-right", -[2,34554,34555], -0, -"onkey-traverse", -[2,19434,34558], -"ranges-invert", -0, -"jsp", -"mixed", -"xhtml", -0,0,0,0, -[2,2183,7230], -0,0,0,0,0, -"-html4", -[2,26854,34575], -[3,34576,19], -[2,34577,27769], -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"payment processing", -"credit cards", -0,0,0,0, -[2,2168,3081], -"sdk-", -[2,34608,1102], -[2,26424,34609], -"fly-register", -[2,202,34611], -"strong-agent", -0, -"strong-arc", -"strong-build", -0,0, -"strong-deploy", -"strong-m", -"esh-models", -[2,34620,34621], -"strong-re", -"gistry", -[2,34623,34624], -"strong-start", -"strong-s", -"upervisor", -[2,34627,34628], -0, -"core-util-is", -"strong-de", -"bugger", -[2,34632,34633], -"wagger-ui", -[2,34627,34635], -[3,4369,10], -"-validate", -[2,22188,34638], -0,0, -"LoopBack", -"Platform", -"alerts", -0,0, -"event loop", -0,0, -"heroku", -"nodeops", -"npmrc", -"openshift", -"slc", -"est functions", -[2,34141,34655], -"strong-cli", -"strong-cl", -"uster-control", -[2,34658,34659], -"strongops", -"upstart", -0,0,0,0, -[2,27954,1699], -[2,27954,2070], -[2,27954,3144], -"@zip.js/zip.js", -[2,3503,4549], -0, -"@astrojs/check", -"@astrojs/", -"starlight", -[2,34674,34675], -[2,12310,1430], -[3,811,8], -[2,34678,1388], -"@shoelace-style/shoelace", -[2,13283,8891], -0, -"astro", -"hanbi", -"escape-at", -[2,2827,34685], -"jsdoc-ts", -[2,2701,1932], -[2,34687,34688], -"lit", -0, -"dictionary", -[2,19319,34692], -"Android", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -[2,19801,2741], -"css-t", -"o-react-native", -[2,34716,34717], -0, -[2,11832,14438], -[2,5129,10699], -[2,4881,34721], -"rame", -[2,34723,10699], -[2,11364,34724], -"-plugin-rtl", -[2,7917,34726], -0,0, -"ts-toolbelt", -0,0,0,0,0,0, -"bunchee", -"stylis-", -0, -"rule-sheet", -[2,34738,34740], -0, -"zeit", -0,0,0,0,0, -"hack", -0,0,0,0,0, -"globjoin", -"-tag-names", -[2,18110,34756], -"-nested-selector", -[2,5250,34758], -[2,30273,34759], -0, -"svg-tags", -0, -"github-info", -[2,6018,34764], -"@styl", -"elint/prettier-config", -[2,34766,34767], -[3,34768,11], -[2,34769,19692], -[3,4852,9], -"lanced-match", -[2,34771,34772], -[3,25558,14], -[2,34774,5260], -[2,4865,4565], -"murmurhash", -[2,8802,34777], -[3,13059,16], -[2,34779,2706], -0,0, -"@types/svg", -"-tags", -[2,34783,34784], -"ylelint", -[2,17371,34786], -0,0, -"set-stylelint", -[2,32137,34790], -[3,3676,10], -[2,34792,367], -0,0,0,0,0,0,0, -[3,4323,16], -0,0,0,0, -[2,1280,8554], -0,0, -"css-values", -"shortcss", -0, -"dela", -"ration", -0,0, -"-strict-value", -[2,34813,34816], -[2,34812,34817], -"keyword", -"z-index", -0,0,0,0, -"orting", -[2,3677,34825], -0, -"udochenkov", -[2,25790,34828], -0, -"ed-syntax", -[2,30481,34831], -[3,24627,16], -"hudochenkov", -[2,34833,34834], -0,0,0,0,0, -[3,30356,14], -[2,34841,27739], -0, -"github-c", -"s-list", -[2,17551,34845], -[2,34844,34846], -0,0,0,0,0,0,0,0,0,0,0, -[3,1369,11], -[2,34859,30480], -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"jar", -"cookiejar", -0, -[2,33935,27], -0, -"tinyify", -0, -"frisbee", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"promised", -0,0,0,0,0,0,0,0,0,0,0,0,0, -"capability", -"16m", -0,0,0,0,0,0,0,0,0,0,0, -"periscopic", -0,0,0,0,0,0,0,0,0,0, -"@types/sade", -[3,27700,21], -[3,27700,22], -[2,34941,20500], -[3,9566,10], -[2,34943,2847], -[2,4353,34944], -0,0,0,0,0, -"@kiwi/eslint-config", -"@kiwi/", -[2,34952,7628], -0, -"@types/pug", -0, -"easy-import", -[2,3562,34957], -0,0,0,0,0, -"@res", -"vg/resvg-js", -[2,34964,34965], -"prettysize", -0, -[3,30071,12], -"hromium", -[2,34969,34970], -0,0,0,0,0,0,0,0,0,0,0,0, -[3,4362,11], -0,0,0, -"lease-notes", -[2,15842,34988], -0, -"precache", -0,0,0,0,0, -"tape-promise", -0, -"autogen", -0,0,0,0, -"multil", -"ang-", -[2,2055,4298], -[2,35005,35006], -[2,35004,35007], -0,0, -"promise.any", -0, -[2,29351,7625], -0, -"readmeio", -0,0,0,0,0, -[2,4364,12659], -[3,4367,9], -"emplates", -[2,35022,35023], -0, -"swagger UI", -0,0,0,0,0,0,0, -"s-readme", -[2,9828,35034], -[2,11941,35035], -0,0,0,0,0,0,0,0,0, -"nodelint", -"still", -[3,29280,15], -0,0, -"travis-cov", -0, -"jinja", -0,0,0,0, -"swipe", -"framework7", -"gallery", -0, -"slideshow", -0,0,0,0, -[2,14507,3048], -[2,2655,35067], -0,0, -"sync-rpc", -[2,21658,705], -0, -"flowgen2", -0,0,0,0,0, -" information", -[2,623,35080], -"sysinfo", -0, -"freebsd", -"openbsd", -"netbsd", -"cpu", -"cpuload", -"physical cores", -0,0, -"logical cores", -"cores", -0, -"socket type", -"fsstats", -"diskio", -" devices", -[2,1359,35098], -"netstats", -[2,6072,591], -[2,11996,35101], -"network ", -"connections", -[2,35103,35104], -"network stats", -"iface", -"printer", -"processes", -"users", -"internet", -"battery", -0,0, -"docker stats", -"docker ", -[2,35116,35109], -0, -"graphic card", -"graphic c", -"ontroller", -[2,35120,35121], -0,0, -"disk layout", -"audio", -0, -"bluetooth", -"wifi", -0, -"wifinetworks", -0, -"virtual box", -"virtualbox", -"BIOS", -"chassis", -0,0,0,0, -"@jsenv/file-size-impact", -"-style-", -[2,21605,3733], -[2,35142,35143], -[2,13565,35144], -"symbol-es6", -0,0,0,0,0,0,0, -"hase", -"draht", -"limes", -"lusca", -"partof", -"timer2", -0, -"uuidv4", -"crypto2", -"nocache", -"datasette", -0, -"json-lines", -0, -"processenv", -"stethoskop", -0, -"flaschenpost", -"-events", -[2,8891,35172], -0, -"nodeenv", -"roboter", -0, -"assertthat", -[2,35166,4219], -0, -"cqs", -"cqrs", -0,0,0,0,0,0, -"className", -0, -"classList", -0, -"override", -0,0,0,0, -"dlv", -0,0,0,0,0,0, -"@tapjs/after", -[2,35205,27554], -"@tapjs/a", -"sserts", -[2,35207,35208], -"@tapjs/", -0, -"@tapjs/before", -[2,35212,27554], -"@tapjs/chdir", -0, -"@tapjs/core", -[2,35210,7131], -"@tapjs/fi", -"xture", -[2,35218,35219], -[2,35210,9261], -"@tapjs/mock", -"node-ser", -"ialize", -[2,35223,35224], -[2,35210,35225], -"@tapjs/run", -[2,35210,8745], -0, -"@tapjs/spawn", -0, -"@tapjs/stdin", -"@tapjs/test", -"@tapjs/t", -[2,35234,2528], -[2,35210,6812], -[2,4026,1204], -0, -"tapjs", -"tapjs plugin", -0,0,0,0, -"tap-out", -0, -"tapes", -0,0,0,0,0,0,0,0,0,0,0, -"resumer", -[2,23236,35259], -"@ljharb/t", -"hrough", -[2,35261,35262], -[2,5613,7067], -"dotignore", -[2,2565,15126], -0, -"ecstatic", -[3,3404,9], -"osix-or-windows", -[2,35269,35270], -0, -"harness", -0,0,0,0, -[2,9497,29051], -"chownr", -"yallist", -0, -"chmodr", -0, -"-to-array", -[2,2018,35284], -0,0,0,0,0, -"brittle", -0,0,0,0,0, -"b4a", -"fast-fifo", -"streamx", -0,0,0,0,0,0, -[2,6346,6770], -"DDD", -[2,6346,8726], -0, -"front end", -0, -"back end", -0,0,0,0, -"cz-format-extension", -0,0,0,0,0,0, -"telegram-api", -"telegram-", -"client-api", -[2,35325,35326], -"tdlib", -"tglib", -[3,3299,10], -0,0,0,0,0,0,0,0,0,0,0, -"tempdir", -"tmpfile", -0,0,0,0, -"unique-s", -[2,35348,8961], -0,0,0,0,0,0, -"@cronvel/get-pixels", -0, -"chroma-js", -"lazyness", -0,0, -"gen-events", -[2,3286,35362], -"seventh", -"string-kit", -0, -"tree-kit", -0, -"256 colors", -0, -"true color", -0, -"input field", -"gpm", -"screenbuffer", -"textbuffer", -"32-bit", -0,0,0,0, -"charm", -"visualwidth", -0, -"80s", -"ibm", -0,0,0,0, -[3,5012,18], -[2,35391,4226], -0, -"@ls-lint/ls-lint", -"astring", -0,0,0,0,0,0, -"glify-js", -[2,7817,35402], -0,0,0,0,0,0,0,0,0,0,0,0,0, -"multiline-ts", -"spawn-p", -[2,35418,4357], -0,0, -"only-allow", -"sinon-", -"assert-stub", -[2,35423,35424], -[2,35423,2299], -0, -"unlinted", -0,0,0,0,0, -"@deve", -"/bin-v8-flags-filter", -[2,674,35435], -[2,35434,35436], -[3,35437,12], -[2,35438,29084], -"bowser", -"chrome-", -[2,20844,8626], -[2,35441,35442], -"device-specs", -"elegant-s", -[2,35445,10252], -0,0,0, -"get-os-info", -0,0, -"import-lazy", -0, -"is-podman", -"-async-hook", -[2,3077,35456], -"-commonjs", -[2,17102,35458], -[2,17003,35459], -[2,14709,35460], -"os-family", -"pinkie", -[3,7872,10], -[2,35464,2013], -[2,2093,10903], -[2,15034,35466], -0, -"replicator", -0, -"-tools", -[2,20008,35471], -[2,4415,35472], -"testcafe-", -"hammerhead", -[2,35474,35475], -0, -"legacy-api", -[2,35474,35478], -[3,22279,11], -[2,35480,1803], -[2,35474,35481], -[3,35482,18], -[2,35483,3392], -[2,35483,6907], -[2,35483,4386], -[2,35483,28592], -0,0,0,0, -"testcafe-s", -[2,11068,1179], -[2,35492,35493], -[2,7051,4007], -[2,17475,35495], -"unquote", -"url-to-o", -"ptions", -[2,35498,35499], -0, -"@ffprobe-installer/ffprobe", -"@types/ca", -"llsite", -[2,35503,35504], -[3,5245,9], -"@types/dedent", -[3,5546,10], -"ragent", -[2,35508,35509], -"connector", -[2,26353,35511], -"caller", -"dom-walk", -[3,25792,16], -"mmerhead", -[2,35515,35516], -"express-ntlm", -"gulp-clone", -0, -"gulp-ll-next", -[3,27610,11], -[2,35522,2869], -"qunit-harness", -[2,2337,35524], -0, -"gulp-step", -"-spe", -"c-with-retries", -[2,35528,35529], -[2,32261,35530], -"sl-self-signed-certificate", -[2,8423,35532], -[3,35473,17], -"-browserstack", -[2,9962,35535], -[2,35534,35536], -0, -"automated", -"QA", -0,0,0,0, -"@types/doc", -"kerode", -[2,35545,35546], -"docker-", -[2,35548,2940], -[2,3583,33893], -"ssh-", -0, -"port-forward", -[2,20844,35553], -[2,35551,35554], -0, -[3,23843,13], -[2,35557,3015], -[3,28203,13], -"ties-reader", -[2,35559,35560], -[3,7752,11], -[2,35562,2150], -0,0,0,0,0, -"object-es5", -[2,26988,35569], -0, -"limate-test-reporter", -[2,14354,35572], -"conf-env", -[2,1611,35574], -"headerify", -"is-number", -0, -"teenytest", -[2,35579,4007], -0, -"test double", -0,0,0,0,0, -"fireworm", -"printf", -"_string", -[2,369,35590], -0, -[2,1362,23842], -"hallow-", -[2,35594,1693], -[2,21479,35595], -0, -"saucie", -0,0,0,0,0,0,0,0,0,0, -"dpdm", -"dcs", -[2,16693,35610], -0,0,0,0,0, -"three.js", -"reality", -[2,9352,35618], -"augmented-reality", -"webgl", -"webgl2", -0,0, -"webaudio", -0,0, -"webgpu", -"webxr", -0,0,0,0, -[2,2182,20], -"node-st", -"dlib-browser", -[2,35635,35636], -0,0,0,0,0,0,0,0,0,0,0, -"hundreds", -"polendina", -0,0, -"stream-spigot", -0,0,0,0,0,0,0,0,0,0,0,0,0, -"unexpand", -"homedir", -0, -"tilde", -0,0,0,0, -"number-is-nan", -0, -"profile", -0,0,0,0, -"bee-affix", -"bee-a", -"bee-alert", -"bee-anchor", -0,0,0, -"bee-animate", -[2,35683,9820], -"bee-", -0,0, -"bee-backtop", -0, -"dge", -"bee-badge", -"bee-b", -[2,35698,9837], -"bee-button", -[2,35700,9847], -"bee-calendar", -0,0, -"bee-carousel", -"bee-cascader", -"bee-c", -"bee-checkbox", -[2,35707,142], -"bee-collapse", -"bee-col", -"orpicker", -[2,35711,35712], -"bee-co", -0, -"mplex-grid", -[2,35714,35716], -[2,35691,3812], -0, -"bee-dnd", -"bee-drawer", -0, -"bee-dropdown", -"bee-form", -0, -"-control", -[2,35724,35726], -"bee-form-", -[2,35728,7227], -"bee-icon", -"bee-i", -"nput-group", -[2,35731,35732], -0, -"-addon", -[2,35733,35735], -"bee-input-", -[2,35737,6988], -"bee-label", -0, -"bee-layout", -0, -"bee-loading", -0, -"-state", -[2,35743,35745], -0, -"bee-locale", -0, -"bee-menus", -0, -"bee-message", -0, -"bee-modal", -0, -"bee-navbar", -"bee-n", -0,0, -"otification", -[2,35757,35760], -"bee-overlay", -"page-layout", -[2,35691,35763], -"bee-pag", -"ination", -[2,35765,35766], -0, -"bee-panel", -"bee-p", -"opconfirm", -[2,35770,35771], -0, -"bee-popover", -"rogress-bar", -[2,35770,35775], -0, -"radio", -"bee-radio", -0, -"bee-rate", -"search-panel", -[2,35691,35782], -0, -"bee-select", -0, -"bee-slider", -0, -"bee-step", -0, -"bee-svgicon", -"bee-switch", -"bee-table", -0, -"bee-tabs", -0, -"bee-tag", -0, -"bee-tile", -0,0, -"bee-timeline", -"bee-time", -[2,35803,3811], -"bee-tooltip", -"bee-transfer", -"bee-trans", -[2,35807,9943], -0, -"bee-tree", -[2,35810,11245], -"bee-upload", -0, -[2,2359,1623], -"-wrap", -[2,2376,35815], -"inline-urls", -[2,21897,35817], -[2,4437,1732], -0, -"tinper", -0,0,0,0,0,0,0,0,0,0, -"tinylibs", -0,0,0,0, -"@deno/shim-deno-test", -0, -[3,4443,9], -0,0,0,0,0,0,0,0, -" threads", -[2,6812,35848], -0, -"thread pool", -0,0,0,0,0,0,0,0,0,0,0,0,0, -"pushalert", -" toast", -[2,3857,35866], -"toastify", -[2,3862,35868], -[2,3862,9044], -"Typescript", -0,0,0,0, -"emble-js", -[2,31072,35876], -"processmd", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -[3,5152,10], -"RFC6265", -"RFC2965", -0,0,0,0,0, -"tinytim", -0,0,0,0,0,0,0,0,0,0,0,0, -[2,7231,7316], -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"html-select", -0,0, -"html-tokenize", -0,0,0,0,0,0,0,0,0, -"aggregate", -0,0,0,0,0,0,0,0, -"bs-logger", -"make-error", -0, -[2,6308,3065], -0,0,0,0,0,0,0, -[2,13664,6893], -0, -[3,5480,12], -"oader", -[2,35970,35971], -0,0,0,0,0,0,0, -"migration", -"migrations", -"cli-tool", -0,0,0,0, -"@ts-morph/common", -"block-writer", -[2,10988,35988], -0,0, -"static ", -[2,35992,19748], -"refactor", -[2,6721,35994], -0,0,0,0, -[2,20223,6859], -[2,20223,1276], -[2,12448,16443], -"@csp", -"otcode/source-map-support", -[2,36003,36004], -0, -"dprint", -"@swc/wasm", -"ntypescript", -"util.", -[2,36010,19138], -0,0,0,0,0, -[2,20442,7163], -"omit-deep", -0, -"power-assign", -0,0,0,0,0,0,0,0,0,0,0,0, -"bre", -"rete", -0, -"rule engine", -"rules engine", -" rule engine", -[2,5284,36038], -"js rule engine", -[2,6591,6770], -0,0,0,0,0, -[2,18284,4295], -0,0,0,0,0,0,0, -"typedefs", -"typedef", -0, -"initions", -[2,36056,36058], -0,0,0,0,0,0,0,0,0,0,0, -"polite-json", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -[2,27572,4014], -0, -"codelyzer", -[3,4490,10], -"siste", -"nt-codestyle", -[2,36092,36093], -[2,36091,36094], -0, -"tslint-divid", -[2,4491,2700], -[2,13530,1334], -[2,4491,36099], -"tslint-mi", -"sc-rules", -[2,36101,36102], -0,0, -"ts-lint", -0,0,0,0,0, -[3,20474,12], -"slint-plugin", -[2,36112,36113], -0,0,0,0, -[2,4671,3209], -"joycon", -0, -"ts-e", -[2,36122,154], -0,0,0,0,0, -[3,14596,11], -[2,36129,8791], -0,0,0,0, -"@mixmark-io/domino", -0,0,0, -"-attendant", -[2,4495,36139], -0,0,0,0,0, -"grunt-comp", -0, -"onent-io", -[2,36146,36148], -[3,2243,10], -0, -"at-sourcemap", -[2,36150,36152], -"grunt-m", -"arkdown", -[2,36154,36155], -[3,2300,11], -"grunt-p", -"ush-release", -[2,36158,36159], -0, -"gex-replace", -[2,24294,36162], -[2,3503,16237], -[2,22277,36164], -"unfunk-reporter", -[2,3192,36166], -0,0,0,0,0, -"tap-b", -0, -"rowser-color", -[2,36173,36175], -"-util", -[2,4497,36177], -0,0, -"curve25519", -"ed25519", -"nacl", -0, -"poly1305", -"public", -"salsa20", -0, -"signatures", -0,0,0,0, -[2,4498,1574], -0,0, -"DOM", -"Twitter", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -[2,4505,1732], -0,0,0,0,0,0,0,0,0,0, -"media-typer", -0, -"checking", -0,0,0,0,0,0,0,0,0,0, -[3,596,9], -"/material-color-utilities", -[2,36239,36240], -0,0, -[2,4511,699], -[3,4512,14], -[2,3131,4964], -"material-3", -[2,4508,1932], -0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"JsDocs", -0,0,0,0,0,0, -"cli-prompt", -0, -"concatenate", -0,0, -"ebook", -"pandoc", -0, -"kindlegen", -0,0,0,0, -[3,27847,12], -[2,36283,3231], -[2,12690,18877], -0,0, -"-findorcreate", -[2,3232,36288], -[2,7627,4487], -0,0,0,0, -"@sqltools/formatter", -0,0,0,0,0,0, -"-rename", -[2,22507,36302], -[3,36303,12], -[2,36304,4070], -[3,5055,10], -[2,36306,1722], -"gulpclass", -0,0,0,0,0,0, -"@dprint/formatter", -"@esfx/canceltoken", -"@dprint/", -[2,36317,91], -0, -"azure-", -"-node-api", -[2,20999,36321], -[2,36320,36322], -"mocha-f", -"ivemat-progress-reporter", -[2,36324,36325], -0,0, -"able-stylish", -[2,26072,36329], -[2,10749,36330], -0,0,0,0,0,0,0,0,0,0, -"commandpost", -0, -"wer-assert", -[2,13415,36344], -"intel", -"li-espower-loader", -[2,36346,36347], -0,0,0,0,0, -[2,5554,13774], -[2,18792,36354], -[2,13058,36355], -[3,36356,23], -[2,36357,1993], -0, -"css-utils", -[2,8802,36360], -[2,36357,16839], -"erved-words", -[2,31525,36363], -"-sync2", -[2,3613,36365], -"sass-svg", -0,0,0,0,0, -"finally", -[2,9466,36373], -[2,4532,1732], -0, -[2,27100,4255], -0,0,0,0,0,0,0,0,0,0,0,0, -"jsmin", -0,0,0,0,0,0,0,0,0,0,0, -"random-bytes", -0,0,0,0,0,0, -[2,1024,4525], -"affix", -[2,1016,36410], -[3,36411,12], -[2,36412,9809], -"uto-link", -[2,36412,36414], -[2,36412,9826], -[3,1015,12], -0, -"ack-top", -[2,36417,36419], -[3,36420,13], -[2,36421,35696], -[2,36417,9837], -[2,1015,9847], -[2,1016,9026], -[3,36425,13], -[2,36426,9854], -[3,36427,14], -[2,36428,9860], -[2,36426,9863], -[3,36425,12], -[2,36431,5449], -[2,36431,11200], -[3,36433,13], -[2,36434,3809], -"date-input", -[2,1016,36436], -[3,36437,16], -[2,36438,3811], -[3,36437,12], -"escriptions", -[2,36440,36441], -"ivider", -[2,36440,36443], -[2,36440,9997], -[3,36445,13], -[2,36446,11206], -[2,1016,3599], -0, -"file-input", -[2,1016,36450], -[3,36451,12], -[2,36452,3469], -[2,1016,10052], -[2,1016,8691], -[3,36455,12], -[2,36456,28176], -[2,36456,35971], -[2,1016,4403], -[3,36459,13], -[2,36460,10104], -[3,36459,12], -[2,36462,3852], -[3,36463,13], -"nth-picker", -[2,36464,36465], -[2,1016,22005], -[2,1016,18367], -[3,36468,12], -"in-code", -[2,36469,36470], -"opover", -[2,36469,36472], -[3,36473,13], -"rtal", -[2,36474,36475], -[2,36469,10148], -[2,1016,35778], -[3,36478,13], -[2,36479,6864], -"search-", -[2,36481,1631], -[2,1016,36482], -[3,36483,18], -[2,36484,1633], -[3,36483,13], -[2,36486,4021], -[3,36483,12], -[2,36488,10205], -[2,36488,10209], -[2,36488,11234], -[2,36488,10222], -[2,1016,176], -[3,36493,14], -[2,36494,591], -[3,36493,13], -[2,36496,10233], -[3,36493,12], -[2,36498,11241], -0, -"ime-picker", -[2,36498,36501], -[2,36498,18390], -[2,36498,10266], -[3,36504,13], -[2,36505,10271], -0, -"-checked", -[2,36506,36508], -0,0,0,0,0,0,0,0,0,0,0,0,0,0, -[3,212,12], -"fns", -[2,36524,36525], -0, -"parsel-js", -0,0,0,0,0, -"citty", -0, -"mkdist", -"untyped", -"hookable", -0,0,0,0,0, -[2,3714,20], -0,0,0,0,0,0, -[3,34068,12], -[2,36551,2408], -0,0,0,0,0, -"teo.collina/tspl", -[2,599,36558], -"dns-packet", -0,0,0,0,0,0,0, -"trough", -0, -[3,9359,10], -[2,36570,4966], -0, -"retext", -0,0,0,0, -[3,4554,13], -0, -"non-repeating", -0,0,0,0,0,0, -[3,4555,10], -"xast", -"nlcst", -0,0,0,0,0,0,0,0,0,0,0,0, -"pullstream", -0, -"match-stream", -0, -"uncompress", -0,0,0,0, -"is-npm", -"pupa", -0, -"fixture-", -[2,36614,8634], -0,0,0,0,0, -"urn", -"uri mutation", -"url mutation", -"uri m", -"anipulation", -[2,36624,36625], -"url m", -[2,36627,36625], -0, -"uri template", -0, -"url template", -" res", -" locator", -[2,5585,36634], -[2,36633,36635], -[2,4549,36636], -[3,36637,17], -[2,36638,16906], -0, -"query string", -"RFC 3986", -"RFC3986", -0,0, -"RFC 6570", -0,0, -"RFC6570", -[2,23168,1932], -"ecosystem", -":jquery", -[2,36651,36652], -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"ylru", -"formstream", -0,0, -"tshy-after", -[3,9725,12], -0, -"@types/busboy", -"@eggjs/tsconfig", -"@types/sel", -"fsigned", -[2,36689,36690], -0, -"strictest", -[2,25627,36693], -0, -"urlopen", -0,0,0,0,0,0,0,0,0, -"userprofile", -0,0,0,0,0, -[2,4745,57], -0,0, -"browserscope", -"ua", -"ua-parse", -"ua-parser", -"user agent", -"user-agent", -0,0,0,0,0,0,0,0,0, -"is-typed", -"-array", -[2,36730,36731], -0, -"supported", -[2,5745,36734], -[2,17393,36735], -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"rfc9562", -0,0,0,0,0,0, -"bundt", -0, -"diffs", -0,0,0,0,0,0,0,0,0, -"find-pa", -"rent-dir", -[2,36779,36780], -0,0,0, -"githook", -0,0,0,0,0,0,0,0,0,0, -"sanitisation", -0, -"sanitise", -0,0,0,0,0,0, -"@vue/shared", -"@vant/popperjs", -"@vant/", -0, -"@vant/use", -0, -[2,7047,1732], -[2,5334,36811], -"able-html", -[2,1687,36813], -[2,10952,2770], -[2,36807,7625], -[2,36807,45], -0, -"area-data", -[2,36807,36819], -"@vant/cli", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"@vercel/go", -0, -"@vercel/fun", -"@vercel/next", -[2,20461,681], -"@vercel/ruby", -"python", -[2,33763,36844], -"@vercel/r", -"edwood", -[2,36846,36847], -"hydrogen", -[2,33763,36849], -"build-utils", -[2,33763,36851], -"@vercel/st", -"atic-build", -[2,36853,36854], -"@vercel/re", -0, -"mix-builder", -[2,36856,36858], -0, -"epipebomb", -0, -"promisepipe", -"tmp-promise", -0,0, -"@sentry/node", -[3,28267,12], -[2,7738,6768], -0, -"@types/dotenv", -[2,4753,4007], -[2,33763,5576], -[2,17213,2022], -"pcre-to-regexp", -"ast-commit", -[2,33495,36876], -[2,8603,18132], -[2,8603,1631], -"@tootallnate/once", -[3,546,11], -[2,36881,5449], -"@vercel/f", -"rameworks", -[2,36883,36884], -[2,3827,594], -[2,33763,36886], -[2,5745,7253], -[2,10787,36888], -[2,20290,4007], -"s-detectors", -[2,36883,36891], -[3,20485,11], -"-json-file", -[2,36893,36894], -"outing-utils", -[2,36846,36896], -[3,29115,11], -[2,36898,3385], -[3,22092,13], -[2,36900,16830], -"@vercel", -[3,9435,9], -"s/types", -[2,36903,36904], -[2,36902,36905], -0, -"node-utils", -[2,33157,36908], -[2,11836,2656], -[2,29130,36910], -[3,11296,13], -"xpect-", -[2,36913,6458], -[2,36912,36914], -[3,36906,18], -[2,36916,14181], -"@alex_neo/jest-expect-message", -[3,29110,18], -[2,36919,36910], -[2,18522,1781], -[2,36916,36921], -0,0,0,0, -"extsprintf", -0,0,0,0,0,0,0,0,0,0,0,0,0, -"viewer.js", -0,0,0,0,0,0, -"remove-t", -"railing-separator", -[2,36948,36949], -"teex", -0,0,0,0,0,0,0,0,0,0,0,0, -"kdirp-stream", -[2,29048,36964], -"is-valid-glob", -"lead", -[2,4026,14690], -"stream-com", -"poser", -[2,36969,36970], -"to-through", -"value-", -"or-function", -[2,36973,36974], -[3,4606,15], -0,0,0,0, -"vinyl-adapter", -0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"browser-split", -"ev-store", -"x-is-array", -0, -"x-is-string", -0, -"run-browser", -0, -"vtree", -0,0,0,0,0,0,0, -"artichokie", -[2,4293,16111], -"es-module-lexer", -[3,3638,15], -"@polka/", -[2,37016,1536], -0, -"build-tool", -0,0,0,0, -"slash-path", -0,0,0, -"api-router", -"api-routers", -[3,4612,15], -"rest-api", -[2,4609,37031], -[3,9244,9], -[2,37033,995], -[3,12419,12], -[2,37035,20332], -0, -"api-rest", -"Remix", -"Next.js", -0,0,0,0, -[3,6371,11], -[2,37045,1623], -[2,9408,364], -"devtools-api", -[2,5334,37048], -"@vueuse/", -[2,37050,12339], -"focus-trap", -0, -"@mdi", -"t-vue/plugin-component", -[2,37054,37055], -[3,37056,17], -[2,37057,9339], -[2,37057,11988], -"sfc", -[2,37057,37060], -[2,37057,17913], -[3,37062,18], -"oc", -[2,37063,37064], -"@mdit-vue/", -[2,37066,6579], -[3,7641,19], -[2,37068,3111], -[2,37068,3113], -[2,13058,3667], -[3,26774,14], -"thjax3", -[2,37072,37073], -0,0,0,0,0, -"@vitest/spy", -0, -"tinyrainbow", -"@vitest/u", -[2,37083,186], -[2,17213,8791], -"@vitest/s", -[2,37086,11298], -"why-", -0, -"running", -[2,21149,37090], -[2,37088,37091], -[2,17213,3717], -0, -"birpc", -"local-pkg", -[2,33157,24079], -"@antfu/", -"install-pkg", -[2,37098,37099], -0,0,0,0,0, -"node-lo", -"calstorage", -[2,37106,37107], -0, -"gulp-xo", -0,0, -"load-plugins", -0, -"vorpal-less", -0, -"vorpal-repl", -0,0,0,0,0, -"eyes", -0, -"BDD", -0,0,0,0, -"keytar", -"parse-semver", -[2,17414,28362], -0, -"eerio", -[2,16931,37134], -[3,21625,11], -[2,37136,4565], -0, -"@types/yazl", -0,0,0,0,0,0,0,0,0, -[2,9738,6985], -"@types/ic", -"onv-lite", -[2,37150,37151], -0,0,0,0, -[2,4619,9586], -0,0,0,0, -[3,36812,13], -[2,37162,965], -0,0,0,0,0, -"-libs", -[2,1988,37169], -0,0,0,0,0,0, -[3,5736,22], -[2,37177,31692], -0,0,0,0,0,0,0,0,0, -"@int", -"lify/core-base", -[2,37188,37189], -"@intlify/", -[2,37191,6579], -0,0, -"devtools-if", -[2,37191,37195], -0,0, -"vue-devtools", -[2,37191,37199], -0, -"intlify", -0,0,0,0,0, -[3,37200,13], -0, -"i18n-loader", -[2,37208,37210], -[3,7892,11], -[2,37212,3176], -[2,32119,1698], -"cache-loader", -"markdown-l", -[2,37216,35971], -"pug-p", -"lain-loader", -[2,37218,37219], -0,0,0,0,0,0,0,0,0,0, -"ightwatch", -[2,10884,37231], -0,0, -"faked-promise", -[2,28506,6706], -0,0,0,0,0,0,0,0,0,0, -"de-indent", -0,0,0,0,0, -"todomvc-app-css", -0,0,0,0, -"foreachasync", -0, -"sys", -"walkSync", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"exec-sh", -0,0,0,0,0,0, -"outpipe", -0, -"win-spawn", -0,0,0,0,0, -"encrypte", -"d-attr", -[2,37292,37293], -[3,3052,10], -"afeinteger", -[2,37295,37296], -[2,4651,18008], -"waterline-", -[2,37299,594], -0, -"active-", -[2,37302,1355], -0,0,0,0, -"vargs", -0,0,0,0, -"bdd-with-opts", -0, -"gulp-debug", -"mu2", -[2,9466,2869], -"auncher", -[2,26127,37318], -[2,20011,37319], -"mocha-p", -"arallel", -[2,37321,37322], -[2,18199,37323], -"sv-selenium", -0,0,0,0,0, -"web3-eth", -"web3-net", -0, -"web3-core", -"web3-types", -"web3-utils", -"web3-errors", -0, -"web3-eth-abi", -"web3-eth-", -0, -"web3-eth-ens", -0, -"web3-eth-iban", -[2,4654,1155], -"rpc-methods", -[2,4654,37346], -"web3-eth-a", -"ccounts", -[2,37348,37349], -"contract", -[2,37340,37351], -0, -"personal", -[2,37340,37354], -0, -"providers-ws", -[2,4654,37357], -"web3-rpc-", -"providers", -[2,37359,37360], -[3,37358,15], -[2,37362,27], -0, -"in3", -"ganache", -"ipc", -[2,37362,37367], -[3,13936,16], -"se-web3", -[2,37369,37370], -"@tru", -"ffle/hdwallet-provider", -[2,37372,37373], -0, -"Ethereum", -0,0,0,0,0,0,0,0,0,0,0,0,0, -"@solana/spl-token", -"@solana/", -"web3.js", -[2,37391,37392], -"kva-email-service", -0, -"ed25519-hdkey", -[2,32806,37396], -"ssl-http-with-docker", -[3,4382,9], -[2,7521,12130], -[2,37399,37400], -"telegram-a", -"ssistant", -[2,37402,37403], -"web3-r", -0, -"eact-task", -[2,37405,37407], -0, -"sol", -0,0,0,0,0,0,0,0,0,0, -"assembl", -"yjs/ast", -[2,37421,37422], -[2,10672,37423], -[3,37424,15], -"wasm-edit", -[2,37425,37426], -[3,37427,20], -[2,37428,57], -0,0, -"trace-event", -[2,35441,37432], -0, -"assembly", -[2,37435,1508], -[2,4671,1194], -[2,14743,1194], -"hash-wasm", -"wast-loader", -[2,20694,6095], -"xxhashjs", -0,0,0,0, -"@disco", -"veryjs/json-ext", -[2,37447,37448], -0, -"@carrotsearch/foamtree", -"h0r", -[2,22060,37452], -[2,37453,2809], -"lodash.p", -"artial", -[2,37455,37456], -[2,3607,34809], -0, -"zoomable", -0,0,0,0, -[3,13077,13], -[2,37465,18523], -"configtest", -[2,37465,37467], -0, -[3,4863,9], -"vinfo", -[2,37470,37471], -0,0,0,0,0,0, -"@fastify/e", -[2,37479,674], -"n-finished", -[2,15461,37481], -0,0,0,0,0,0,0, -"@types/sockjs", -[3,18584,13], -"njour", -[2,16872,37492], -"bonjour-service", -0,0,0, -[3,33768,13], -[2,37498,4017], -[2,37498,2947], -0, -"-community", -[2,17013,37502], -"-history-api-fallback", -[2,11485,37504], -0, -"klona", -[2,37490,4219], -"@types/tr", -0,0, -"usted-types", -[2,37509,37512], -0,0,0,0,0,0,0,0,0, -"reloading", -[3,4631,10], -[2,37524,3642], -0,0,0,0,0, -[2,32119,4694], -[3,33945,16], -"ellscape", -[2,37532,37533], -[3,3708,23], -0,0,0,0,0,0, -"dts-cli", -0, -"@types/flat", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"-to-buffer", -[2,7231,37567], -"yaeti", -0,0, -"networking", -"comet", -0,0,0,0, -"@silentbot1/nat-api", -"@thaunknown/simple-peer", -"torrent/http-node", -[2,10672,37580], -"addr", -0, -"-to-ip-port", -[2,37582,37584], -"bitfield", -"bittorrent-dht", -[3,37587,11], -[2,37588,20500], -"cache-c", -"hunk-store", -[2,37590,37591], -[2,33355,5509], -[2,13225,37593], -"cpus", -"create-t", -"orrent", -[2,37596,37597], -"-ponyfill", -[2,1613,37599], -"fs-c", -[2,37601,37591], -"fsa-chunk-store", -"imme", -"diate-chunk-store", -[2,37604,37605], -"-async-", -[2,37607,7253], -[2,4565,37608], -0,0, -"load-ip-set", -"lt_donthave", -"memory-c", -[2,37614,37591], -"torrent", -"parse-torrent", -"random-ite", -[2,37618,6882], -0,0,0, -"speed-limiter", -"throughput", -0,0, -"-discovery", -[2,37616,37627], -0,0, -"torrent-piece", -0, -"uint8-util", -"unordered-", -"array-remove", -[2,37634,37635], -"ut_metadata", -"ut_pex", -0, -[3,37581,12], -[2,37640,23685], -0,0, -"airtap-manual", -"airtap-s", -[2,37645,9073], -[2,37588,4839], -"chrome-net", -"-address", -[2,11996,37649], -0, -"path-esm", -"-fixtures", -[2,4702,37653], -0, -"bittorrent", -[2,37656,12332], -"mad science", -"p2p", -0,0,0, -"peer-to-peer", -0, -"peers", -"swarm", -"web torrent", -"webrtc data", -0,0,0,0,0, -"web worker", -"a gogo", -0,0,0,0,0,0,0,0,0,0,0, -"search-params", -[2,4564,37687], -0,0,0,0, -"buster", -"exorcist", -0, -"cujo", -0, -"Promises/A+", -0,0,0,0, -"isexe", -0,0,0,0, -"taffydb", -"unit.js", -0,0,0,0,0, -"@dabh/diagnostics", -"logform", -0, -"one-time", -0, -"@dabh/", -[2,37720,23816], -[2,20417,4715], -[3,18518,12], -[2,37723,1149], -"hock", -"winston-co", -[2,37726,13172], -0,0,0,0,0,0, -"tream-rotator", -[2,12416,37734], -0, -[3,24151,11], -[3,23722,14], -[2,37737,37738], -[2,6324,4059], -[2,37739,37740], -0, -"daily-rotate-file", -"log-rotate", -"logrotate", -0,0,0,0,0,0, -"winston3", -0,0,0,0,0, -"bower-config", -"propprop", -[2,4716,20], -0,0,0,0,0,0, -"carriage", -0, -"new-line", -"return", -0,0,0,0,0,0,0,0, -"workbox-", -[2,37779,6147], -0,0, -"workbox", -"workboxjs", -" worker", -[2,11100,37785], -" requests", -[2,1612,37787], -"offline", -[2,12320,3097], -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"writeFile", -0,0,0,0,0,0,0,0,0, -"enstore", -0, -"-crawler", -[2,4730,37820], -0, -"x-ray-parse", -0,0, -"scrape", -0,0,0,0,0,0, -"is-function", -"parse-headers", -0,0,0,0,0,0, -"adler-32", -0, -"codepage", -"crc-32", -"ssf", -"wmf", -0, -"@she", -"etjs/uglify-js", -[2,37848,37849], -"on-epipe", -[2,7219,37851], -"fflate", -[3,5392,10], -"pellcheck", -[2,37854,37855], -0, -"xlsb", -"xlsm", -"dbf", -"dif", -"sylk", -0,0,0,0,0, -"cash-cat", -"codacy-coverage", -"globify", -"unminified-webpack-plugin", -0, -"XML", -"CDATA", -"doctype", -0,0,0, -" instruction", -[2,10809,37879], -0, -"Javascript", -[2,353,3642], -"convertor", -"converting", -0, -"conversion", -0,0,0,0,0,0,0,0,0,0,0, -"node-expat", -0,0,0,0,0,0,0,0, -"dom-js", -"xmltest", -0, -"DOMParser", -"XMLSerializer", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"func-xml", -0,0,0,0,0,0, -[2,5857,5861], -[2,69,37935], -"@unicode/unicode-14.0.0", -0, -"rray-includes", -[2,24619,37939], -[2,1226,4740], -[3,37935,17], -0, -"value-aliases", -[2,37942,37944], -0,0,0,0,0,0,0, -"whitelist", -0,0,0,0, -"@scion-scxml/test-framework", -0, -"statechart", -0,0, -"state machine", -"finite", -" stat", -"e machine", -[2,37965,37966], -[2,37964,37967], -"finite ", -"automata", -[2,37969,37970], -"scxml", -"interpreter", -0,0,0,0,0,0,0,0, -"ep-equal", -[2,35506,37982], -[2,9228,4729], -0,0, -"@types/utf8", -[2,4744,28703], -0, -"emulator", -[2,4402,37990], -0,0,0,0, -"jest-t", -"s-webcompat-resolver", -[2,37996,37997], -0,0,0,0,0,0,0,0, -"yaml2json", -"json2yaml", -0,0,0,0,0,0,0, -"test-extends", -[2,27477,38016], -0,0,0,0,0,0,0,0,0,0,0,0,0,0, -[3,29775,30], -"imports-", -[2,38033,10906], -[2,38032,38034], -"death", -"repeating", -0, -"capture-har", -[2,9769,38039], -"roadrunner", -0, -"node4", -[2,26202,38043], -[3,4821,14], -"ode5", -[2,38045,38046], -[3,18229,16], -"-strict", -[2,38048,38049], -"ittens", -[2,25705,38051], -[3,1935,18], -"-vars", -[2,38053,38054], -[2,23105,7003], -[2,1152,38056], -[2,16645,38057], -0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"@yeoman/adapter", -"@yeoman/", -"conflicter", -[2,38074,38075], -[2,38074,23255], -[2,38074,353], -"@yeoman/t", -[2,38079,103], -0, -"fly-import", -[2,7227,30831], -"mem-fs", -0, -"mem-fs-editor", -[2,9477,10057], -[2,17412,38087], -0,0,0, -"esmocha", -"sinon-test", -0,0,0,0,0, -"github-u", -"sername", -[2,38099,38100], -0,0,0,0,0,0, -"yes", -"false", -0, -"lenient", -0,0,0,0,0, -"cli-list", -"fullname", -0,0, -"parse-help", -"root-check", -"npm-keyword", -0, -"doctor", -[2,4755,38125], -[2,25742,1871], -0,0,0, -[2,4755,6843], -0, -[2,9518,1002], -0,0,0,0,0, -"@jonahsnider/benchmark", -0,0,0,0,0,0,0,0,0,0, -[2,26936,4627], -0, -"cowsay", -"say", -0,0,0,0,0,0, -"zeromq", -"0mq", -"ømq", -"libzmq", -0,0,0,0,0,0,0,0,0,0,0,0, -[2,11477,1574], -[2,9228,4576], -0, -"@types/morgan", -"express-u", -"seragent", -[2,38180,38181], -0, -" types", -[2,7047,38184], -0,0,0,0,0,0, -"DSL", -0,0,0,0, -"@externs/nodejs", -0,0,0,0, -"JSON2", -0, -"char-split", -0,0, -"express-state", -"firefox-", -[2,38208,35677], -[2,11941,2663], -0, -"shallow-copy", -[2,4250,4833], -0, -"tap-finished", -"-localtunnel", -[2,4770,38216], -0,0,0, -"browzers", -"bulk-require", -0, -"zuul-ngrok", -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"Unit Testing", -0,0,0,0,0,0,0, -"Storybook", -0,0,0,0,0,0,0,0, -"belalangkayu", -"rengginangbasi", -"tehtarik3", -0,0,0,0,0,0,0,0,0,0,0, -"sort-array", -0,0,0,0,0,0,0,0,0,0,0, -"-scroll-", -"into-view", -[2,38290,38291], -[2,23545,38292], -0, -"module-t", -"ype-aliases", -[2,38295,38296], -[2,20201,38297], -[2,964,3698], -[3,1216,14], -"o-side-effect-class-properties", -[2,38300,38301], -[3,1270,19], -[2,38303,970], -"flow-co", -[2,24524,8803], -[2,38305,38306], -0, -"get-pkg-repo", -0, -"enhanced", -" input", -[2,38311,38312], -0,0, -"autosuggest", -"typeahead", -0, -"omnibox", -"WAI-ARIA", -"multiple ", -[2,38321,17146], -0,0,0,0, -"focus", -"keyboards", -"mice", -"pseudos", -0, -"textarea", -"trackpad" + "Flatpack JSON v1", + [5, 2, 25598], + [ + 0, 3, 4, 7, 10, 13, 16, 19, 21, 24, 26, 28, 30, 32, 34, 37, 39, 40, 43, 46, 47, 48, 51, 53, 56, 58, 61, 62, 63, + 64, 65, 66, 68, 71, 73, 76, 78, 81, 83, 85, 87, 90, 92, 94, 97, 99, 101, 104, 105, 106, 107, 110, 111, 114, 116, + 119, 122, 124, 126, 129, 133, 135, 137, 140, 143, 146, 148, 150, 153, 155, 157, 159, 162, 164, 167, 169, 171, + 174, 175, 177, 180, 182, 185, 187, 189, 191, 192, 195, 197, 198, 201, 203, 204, 205, 208, 213, 215, 218, 220, + 221, 222, 225, 228, 231, 233, 235, 238, 240, 243, 245, 247, 249, 251, 253, 258, 260, 262, 265, 267, 269, 271, + 272, 275, 277, 280, 282, 285, 288, 290, 293, 296, 298, 301, 303, 305, 308, 310, 313, 315, 319, 322, 324, 327, + 329, 331, 334, 338, 340, 342, 345, 346, 347, 350, 351, 354, 355, 358, 359, 360, 361, 362, 365, 368, 370, 371, + 374, 377, 379, 381, 384, 387, 392, 394, 399, 401, 404, 406, 409, 411, 413, 415, 419, 422, 425, 427, 430, 432, + 434, 438, 439, 442, 443, 444, 445, 448, 449, 452, 456, 457, 460, 462, 465, 468, 469, 470, 471, 478, 481, 483, + 486, 488, 490, 493, 495, 497, 502, 505, 507, 513, 516, 518, 525, 528, 533, 536, 538, 539, 540, 541, 542, 545, + 546, 547, 548, 549, 550, 551, 554, 555, 559, 560, 561, 564, 565, 566, 567, 572, 573, 576, 577, 578, 581, 583, + 585, 587, 589, 593, 595, 596, 598, 601, 602, 603, 606, 608, 609, 613, 615, 616, 617, 618, 621, 622, 624, 626, + 627, 628, 631, 633, 634, 635, 638, 641, 643, 646, 649, 652, 654, 656, 659, 660, 663, 665, 666, 669, 672, 675, + 677, 679, 682, 683, 684, 687, 688, 691, 692, 693, 697, 700, 702, 703, 706, 709, 711, 712, 713, 716, 721, 724, + 727, 732, 735, 738, 740, 742, 745, 749, 751, 753, 758, 763, 767, 770, 773, 776, 782, 785, 790, 793, 795, 798, + 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 816, 817, 818, 821, 822, 825, 826, 827, 828, 829, 831, 834, + 835, 838, 840, 841, 842, 843, 846, 849, 850, 851, 852, 853, 857, 860, 864, 870, 872, 876, 881, 885, 891, 896, + 898, 905, 910, 913, 915, 917, 920, 925, 929, 933, 935, 938, 944, 948, 951, 954, 955, 958, 961, 962, 963, 966, + 968, 971, 972, 974, 975, 978, 980, 983, 985, 987, 989, 991, 993, 996, 997, 1001, 1003, 1004, 1005, 1006, 1009, + 1011, 1012, 1013, 1014, 1015, 1018, 1021, 1023, 1025, 1026, 1027, 1028, 1030, 1031, 1032, 1033, 1034, 1043, + 1045, 1050, 1054, 1056, 1059, 1061, 1063, 1066, 1073, 1075, 1077, 1078, 1079, 1080, 1081, 1082, 1084, 1085, + 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1098, 1100, 1102, 1103, 1104, 1107, 1109, + 1110, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1120, 1121, 1122, 1125, 1127, 1129, 1130, 1131, 1132, 1135, + 1136, 1137, 1138, 1139, 1140, 1143, 1144, 1145, 1147, 1148, 1149, 1151, 1154, 1156, 1157, 1158, 1159, 1162, + 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1175, 1178, 1180, 1184, 1189, 1191, 1193, 1195, 1198, + 1201, 1203, 1205, 1208, 1210, 1212, 1216, 1217, 1220, 1225, 1230, 1233, 1235, 1240, 1244, 1245, 1248, 1251, + 1253, 1255, 1257, 1261, 1264, 1267, 1268, 1270, 1272, 1275, 1277, 1279, 1280, 1282, 1284, 1287, 1288, 1290, + 1291, 1292, 1293, 1294, 1295, 1298, 1301, 1304, 1305, 1306, 1308, 1309, 1310, 1311, 1314, 1315, 1316, 1317, + 1318, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1335, 1336, 1339, 1342, 1344, 1346, + 1348, 1350, 1352, 1354, 1356, 1358, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1369, 1370, 1371, 1372, 1373, + 1376, 1377, 1378, 1381, 1385, 1386, 1387, 1389, 1391, 1393, 1394, 1395, 1396, 1397, 1398, 1400, 1401, 1402, + 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1413, 1414, 1415, 1416, 1417, 1420, 1421, 1423, 1424, 1425, 1426, + 1427, 1428, 1429, 1431, 1434, 1436, 1437, 1438, 1440, 1443, 1446, 1447, 1448, 1449, 1450, 1455, 1456, 1457, + 1458, 1459, 1461, 1462, 1465, 1468, 1470, 200, 1471, 1474, 1477, 1479, 1480, 1481, 1482, 1483, 1486, 1488, 1489, + 1492, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1503, 1505, 1506, 1509, 1473, 1511, 1512, 1513, 1516, + 1519, 1522, 1525, 1527, 1529, 1532, 1533, 1536, 1537, 1540, 1541, 1543, 1544, 1546, 1549, 1551, 1553, 1556, + 1559, 1560, 1562, 1565, 1566, 1567, 1570, 1573, 977, 1575, 1578, 1581, 1582, 1584, 1587, 1588, 1590, 1591, 1593, + 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1603, 1604, 1605, 1606, 1608, 1609, 1610, 1613, 1615, 1616, 1618, + 1620, 1621, 1622, 1623, 1624, 1627, 1628, 1630, 1632, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, + 1645, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1658, 1660, 1661, 1662, 1663, 1664, 1665, 1668, + 1672, 1673, 1674, 1675, 1676, 1677, 1679, 1680, 1681, 1682, 1686, 1688, 1690, 1693, 1696, 1699, 1700, 1701, + 1702, 1703, 1704, 1705, 1706, 1707, 1710, 1711, 1687, 1713, 1715, 1718, 1719, 1720, 1723, 1724, 1726, 1727, + 1728, 1729, 1730, 1731, 1733, 1734, 1735, 1736, 1737, 1738, 1741, 1742, 1745, 1748, 467, 1750, 1751, 1754, 1756, + 1757, 1758, 1759, 1763, 1764, 1766, 1767, 1768, 1770, 1774, 1777, 1779, 1782, 1784, 1785, 1786, 1787, 1788, + 1789, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1801, 1804, 1806, 1809, 1812, 1816, 1817, 1819, 1820, + 1821, 1822, 1824, 1825, 1827, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1842, 1843, 1845, + 1847, 1850, 1853, 1854, 1855, 1856, 1859, 1860, 1863, 1865, 1866, 668, 1869, 1874, 1875, 1177, 1879, 1881, 1883, + 1886, 1889, 1891, 1893, 1895, 1898, 1900, 1903, 1905, 1907, 1909, 1912, 1915, 1916, 1920, 1922, 1924, 1926, + 1930, 1933, 1935, 1937, 1938, 1939, 1942, 1945, 1947, 1948, 1951, 1953, 1954, 1955, 1958, 1959, 1961, 1964, + 1966, 1969, 1970, 1972, 1976, 1978, 1982, 1985, 1988, 1992, 1994, 1996, 1998, 1999, 2000, 2003, 2004, 2007, 984, + 2008, 2010, 2011, 2012, 2015, 2017, 2018, 2019, 2020, 2021, 2022, 2024, 2025, 2026, 2028, 2031, 2033, 2037, + 2039, 2040, 2042, 2045, 2046, 2048, 2051, 2053, 2054, 2057, 2058, 2059, 2060, 2061, 2064, 2067, 2069, 2071, + 2073, 2075, 2077, 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2086, 2087, 2088, 2089, 2092, 2095, 2096, 2098, + 2099, 2102, 2105, 2107, 2108, 2109, 2111, 2113, 2114, 2116, 2117, 2119, 2122, 2123, 2126, 2128, 2129, 2130, + 2131, 2132, 2133, 2134, 2135, 2137, 2139, 2141, 2144, 2145, 2147, 2148, 2149, 2150, 2151, 2152, 2153, 2154, + 2155, 2156, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2167, 2170, 2172, 2175, 2176, 2177, 2178, 2179, 2182, + 2185, 2188, 2191, 2192, 2193, 2194, 2195, 2197, 2070, 2200, 2202, 2203, 2205, 2206, 2207, 2209, 2211, 2212, + 2213, 2214, 2215, 2216, 2217, 2220, 2222, 2225, 2226, 2227, 2228, 2231, 2234, 2236, 2239, 2240, 2243, 2247, + 2250, 2253, 2256, 2258, 2260, 2263, 2266, 2268, 2271, 2273, 2274, 2277, 2279, 2281, 2283, 2285, 2290, 2291, + 2293, 2296, 2298, 2300, 2302, 2305, 2307, 2308, 2311, 2314, 2316, 2318, 2320, 2321, 2322, 2323, 2327, 2330, + 2332, 2334, 2336, 2338, 2341, 2344, 2346, 2348, 2351, 2352, 2354, 2357, 2359, 2361, 2363, 2366, 2367, 2368, + 2371, 2372, 2373, 2375, 2377, 2379, 2381, 2383, 2384, 2387, 2390, 2393, 2396, 2398, 2400, 2401, 2404, 2405, + 2406, 2409, 2411, 2413, 2416, 2419, 2421, 2423, 2425, 2427, 2430, 2433, 2435, 2436, 2438, 2441, 2444, 2447, + 2449, 2450, 2453, 2455, 2459, 2461, 2463, 2464, 2467, 2469, 2472, 2476, 2479, 2482, 2486, 2489, 2490, 2493, + 2494, 2496, 2498, 2500, 2503, 2504, 2506, 2507, 2508, 2510, 2512, 2515, 2517, 2519, 2520, 2521, 2524, 2526, + 2529, 2530, 2533, 2536, 2539, 2541, 2543, 2544, 2547, 2549, 2550, 2552, 2553, 2554, 2555, 2036, 2556, 2559, + 2562, 2563, 2564, 2567, 2569, 2570, 2571, 2572, 2575, 2577, 2579, 2581, 2583, 2584, 2586, 2588, 2589, 2590, + 2591, 2592, 2593, 2594, 2595, 2596, 2597, 2600, 2601, 2602, 2605, 2606, 2607, 2608, 2609, 2610, 2611, 2612, + 2613, 2614, 2616, 2620, 2623, 2626, 2628, 2629, 2633, 2635, 2637, 2639, 2641, 2644, 2646, 2650, 2651, 2652, + 2654, 27, 2657, 2659, 2661, 2664, 2665, 2668, 2670, 2671, 2674, 2675, 2676, 2677, 2678, 2679, 2681, 2683, 2685, + 2686, 2687, 2689, 2692, 2267, 2694, 2695, 2696, 2697, 2700, 2702, 2704, 2707, 2708, 2709, 2710, 2711, 2712, + 2713, 2714, 2715, 2716, 2718, 2719, 2720, 2722, 2723, 2726, 1161, 2727, 2728, 2730, 2731, 2732, 2733, 2735, + 2738, 2739, 2740, 2741, 2742, 2743, 2744, 2745, 2747, 2750, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2759, + 2760, 2761, 2762, 2437, 2763, 2764, 2765, 2766, 2768, 1192, 2771, 2774, 2777, 2780, 2782, 2784, 2787, 2792, + 2794, 2796, 2797, 2798, 2802, 2805, 2806, 2807, 2808, 2810, 2811, 2812, 2813, 2814, 2816, 2817, 2820, 2821, + 2822, 2823, 2824, 2292, 1776, 2826, 2829, 2832, 2834, 2835, 2272, 2839, 2841, 2843, 2845, 2848, 2851, 2854, + 2856, 2858, 2859, 2860, 2861, 2863, 2864, 2865, 2866, 2867, 2870, 2297, 2871, 2876, 2878, 2881, 2886, 2889, + 2891, 2895, 2897, 2898, 2900, 2904, 2906, 2908, 2910, 2912, 2915, 2918, 2921, 2923, 2925, 2926, 2927, 2928, + 2929, 2930, 2931, 2932, 2933, 2934, 2935, 2936, 2941, 2943, 2945, 2946, 2948, 2949, 620, 2950, 2954, 2957, 2960, + 2961, 2962, 2963, 2964, 2967, 2968, 695, 2969, 2970, 2972, 2973, 2975, 2976, 2979, 2981, 2982, 2983, 2984, 2986, + 2990, 2991, 2992, 2993, 2996, 2997, 3000, 3003, 3006, 3008, 3010, 3012, 3014, 3019, 1209, 3021, 3023, 3025, + 3028, 3029, 3032, 3034, 3037, 3039, 3041, 3044, 3047, 3049, 3051, 3052, 3054, 3057, 3060, 3062, 3064, 3066, + 3067, 3070, 3072, 3073, 3074, 3077, 3078, 3079, 3080, 3081, 3082, 3083, 3084, 3085, 3086, 3087, 3088, 3089, + 3090, 3091, 3092, 3093, 3095, 3096, 3097, 3098, 3099, 3102, 3103, 1783, 3105, 3107, 3112, 3114, 3116, 3117, + 3120, 3123, 3124, 3125, 3127, 3129, 3130, 3132, 3133, 3134, 3135, 3136, 3137, 3140, 3141, 3142, 3143, 3144, + 3145, 3148, 3150, 3152, 3153, 3156, 3157, 1698, 3159, 3160, 3161, 3162, 3164, 3165, 3167, 3170, 3171, 3173, + 3174, 3177, 3178, 3181, 3183, 3185, 3186, 3187, 3188, 3189, 3190, 3191, 2899, 3198, 3200, 3202, 3203, 3206, + 3210, 3211, 3213, 3215, 3216, 3219, 3220, 3222, 3223, 3226, 3229, 3230, 3232, 3233, 3235, 3236, 3237, 3238, + 3239, 3240, 3241, 3242, 3243, 3244, 3245, 3246, 3249, 3253, 3256, 3257, 3258, 3259, 3260, 3261, 1952, 3262, + 3263, 2378, 3264, 3266, 3268, 3270, 3271, 3273, 3274, 3275, 3276, 3277, 3278, 3282, 3283, 3284, 3285, 3287, + 3288, 3289, 3290, 3291, 3292, 3294, 3295, 3296, 3297, 3299, 3300, 3303, 3305, 3308, 3309, 3310, 3313, 3316, + 3318, 640, 3322, 3324, 3327, 3330, 3332, 3334, 3337, 3339, 3341, 3342, 3345, 3347, 3349, 3350, 3353, 3355, 3357, + 3359, 3361, 3363, 2276, 3365, 3366, 3367, 3368, 3369, 3371, 3373, 3376, 3377, 3378, 3379, 3381, 3386, 3390, + 3393, 3397, 3400, 3401, 3404, 3406, 3408, 3409, 3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, + 3420, 3421, 3422, 3423, 3424, 3427, 3429, 3431, 3433, 3434, 3435, 3438, 3439, 3440, 3441, 3442, 3443, 3444, + 3445, 3446, 3451, 3453, 3455, 3456, 3458, 3459, 3460, 3463, 3466, 3467, 3468, 3469, 888, 3470, 3471, 3472, 3475, + 3476, 3477, 3478, 3479, 3480, 3481, 3482, 3483, 3484, 3485, 3486, 3488, 3490, 3492, 1644, 3493, 3494, 3495, + 3498, 3499, 3500, 3501, 1433, 3403, 3502, 3505, 3507, 3509, 3510, 3511, 3512, 3513, 3518, 3519, 3520, 3521, + 3524, 3525, 3526, 3527, 3530, 3531, 3532, 3533, 3534, 3535, 3536, 3537, 3539, 3540, 3541, 2072, 3544, 3545, + 3547, 3548, 3549, 3551, 3552, 3553, 3554, 3555, 3558, 3559, 3560, 3561, 3564, 3566, 3570, 3572, 3575, 3577, + 3579, 3584, 3587, 3591, 3598, 3600, 3603, 3605, 3606, 3611, 3613, 3616, 3618, 3622, 3625, 3628, 3633, 3635, + 3636, 3638, 3640, 3643, 3647, 3649, 3652, 3653, 3657, 3660, 3662, 3664, 3668, 3672, 3674, 3676, 3678, 3681, + 3683, 3686, 3688, 3691, 3692, 3693, 3696, 3697, 3698, 3699, 1894, 3703, 3706, 3708, 3710, 3711, 3714, 3716, + 3717, 3718, 3720, 3722, 3724, 3725, 3726, 3727, 3729, 3730, 3732, 1862, 3734, 3736, 3739, 3741, 3742, 3744, + 3746, 3747, 3750, 2658, 3752, 3753, 3754, 3755, 3756, 3757, 3758, 3759, 3760, 3761, 3762, 3763, 3765, 3767, + 3768, 3770, 3771, 2907, 3773, 3774, 3775, 3776, 3777, 3779, 3780, 3781, 3783, 3784, 3786, 1997, 3787, 3788, + 3789, 3790, 89, 3793, 3799, 3802, 3803, 3804, 3807, 3810, 3813, 3816, 3817, 3820, 3822, 3824, 3826, 3829, 3830, + 3833, 3836, 3837, 3839, 3843, 3846, 3847, 3849, 3850, 3853, 3856, 3857, 3861, 3864, 3867, 3869, 3872, 3876, + 3878, 3882, 3884, 3885, 3887, 3889, 3891, 3893, 3895, 3897, 3899, 3904, 3906, 3909, 3911, 3913, 3914, 3916, + 3917, 3919, 3921, 3923, 3925, 3927, 3928, 3930, 3931, 3932, 3935, 3938, 1552, 3939, 3941, 3875, 3943, 3945, + 3946, 3948, 3950, 3951, 3954, 3957, 3958, 3963, 3968, 3970, 3971, 3973, 3975, 3978, 3980, 3981, 3984, 3985, + 3988, 3989, 3991, 3992, 3995, 3998, 3999, 4001, 4002, 4005, 705, 4008, 4010, 4012, 4015, 4018, 4019, 4022, 4023, + 814, 4025, 4028, 4029, 4031, 4033, 4035, 4036, 1153, 4037, 4038, 4039, 4041, 4042, 4045, 4048, 4052, 4055, 4057, + 4058, 4060, 4064, 4066, 4067, 4069, 4071, 4073, 4075, 4076, 4077, 4079, 4081, 4083, 4084, 4085, 4086, 4089, + 4092, 4093, 4094, 4098, 4100, 4103, 4104, 4105, 4106, 4108, 4110, 2278, 4111, 4112, 4113, 4116, 4119, 4121, + 4124, 4125, 4126, 4127, 4130, 4131, 4134, 1899, 4135, 710, 4136, 4137, 4140, 4143, 4145, 4146, 4148, 4150, 4151, + 4153, 4156, 4159, 4160, 4163, 4164, 4165, 4167, 4168, 4169, 4170, 4171, 4172, 4173, 4174, 4177, 4181, 4183, + 4187, 4188, 4189, 4192, 4193, 4196, 4199, 4200, 4201, 4204, 4205, 4206, 4207, 4208, 4209, 4212, 3974, 4213, + 4214, 4215, 4216, 4217, 4218, 4220, 4224, 4227, 4228, 4230, 4232, 4233, 4234, 4235, 4236, 4237, 4238, 4239, + 4242, 4243, 4245, 4246, 4247, 4248, 4249, 4252, 4255, 4257, 4258, 4261, 4264, 4266, 4267, 4270, 4272, 4275, + 4277, 4278, 4280, 4282, 4283, 1871, 4288, 4290, 4292, 4294, 4296, 4300, 4302, 4303, 4305, 4307, 4309, 4311, + 4315, 4317, 4319, 4320, 4323, 4326, 4328, 4330, 4333, 4334, 4335, 4337, 4338, 4339, 4341, 4342, 4343, 4345, + 4347, 4351, 4352, 3709, 4355, 4359, 4360, 4361, 4362, 4363, 4365, 4367, 4369, 4370, 4371, 4372, 4373, 4375, + 4376, 4377, 4380, 4382, 4383, 4384, 4387, 4388, 4389, 4390, 4391, 4393, 4394, 4397, 4398, 4399, 1241, 4400, + 4401, 4404, 4072, 4409, 4411, 1187, 4413, 4415, 4419, 4421, 4423, 4425, 4426, 4427, 4430, 4431, 4433, 4434, + 4435, 4436, 4437, 4438, 4441, 4443, 4445, 4447, 4448, 4449, 4450, 4451, 4452, 4453, 4454, 4455, 4456, 4457, 100, + 4459, 4461, 4462, 4463, 4464, 4465, 4468, 4469, 4470, 4473, 4474, 4475, 4477, 4478, 4480, 4481, 4482, 4483, + 4484, 4487, 4490, 4492, 4493, 4494, 4495, 4496, 4497, 4498, 4499, 4500, 4505, 4507, 1000, 4508, 4510, 4512, + 4514, 4515, 4517, 4520, 4521, 91, 4523, 4526, 4531, 4532, 4533, 4535, 4537, 4538, 4539, 4540, 4541, 4542, 4543, + 4545, 4547, 4548, 4549, 4554, 4555, 4558, 4559, 4560, 4562, 4563, 1002, 4566, 4027, 4567, 4568, 4569, 4572, + 4576, 4577, 614, 4578, 3348, 4579, 4582, 4585, 4588, 1155, 4589, 4590, 4591, 4592, 4593, 4594, 4595, 4596, 4597, + 4599, 4600, 4603, 4606, 4608, 1983, 4612, 4614, 1984, 4615, 4616, 4617, 4618, 4621, 4624, 188, 4629, 4630, 4632, + 4633, 4634, 4638, 4639, 4640, 4645, 4646, 4647, 4648, 4649, 2282, 4650, 4651, 4652, 4653, 4656, 4659, 4662, + 4664, 4667, 4669, 2924, 4676, 4677, 4679, 4681, 4684, 4686, 4689, 4693, 4695, 4696, 4699, 4702, 4703, 4704, + 4705, 4706, 4707, 4708, 4709, 4711, 4715, 4716, 4717, 4720, 4723, 4724, 4726, 4727, 4728, 4729, 4730, 4731, + 3354, 4733, 4734, 4735, 4736, 4737, 4738, 1906, 4739, 4740, 4741, 4742, 1695, 4744, 4745, 4746, 4747, 4748, + 4749, 4751, 4752, 4753, 4754, 4756, 4757, 4758, 4759, 4760, 4761, 4762, 4763, 4767, 4768, 4769, 4770, 4771, + 4772, 4774, 4775, 4776, 4777, 4782, 4783, 4786, 4788, 4791, 639, 11976, 662, 3405, 5010, 6781, 23276, 6974, + 15279, 15484, 17429, 15887, 26713, 18240, 11804, 24566, 475, 24782, 25169, 25219, 25266, 25307, 25432, 25443, + 25395, 25490, 25766, 25775, 25798, 25809, 25833, 25882, 25931, 29350, 29385, 29389, 29407, 29414, 29394, 29435, + 29448, 29460, 20562, 29477, 31705, 29524, 29537, 29546, 29560, 33408, 29564, 29610, 31821, 29626, 3286, 30757, + 29683, 29729, 29754, 5065, 29805, 9011, 29821, 24737, 29850, 29889, 29942, 29955, 28519, 29993, 9355, 8199, 680, + 19571, 27921, 29998, 30145, 30165, 26706, 30182, 30196, 30218, 9041, 30233, 30252, 30257, 30281, 30312, 906, + 30405, 30458, 30463, 30469, 30477, 30488, 30607, 30612, 30624, 30731, 907, 8119, 30798, 30829, 940, 26636, + 20202, 29755, 14673, 9274, 9293, 9273, 30926, 30957, 30972, 33145, 24723, 30979, 14684, 31064, 11518, 31086, + 12016, 15951, 31198, 31231, 31244, 31262, 31272, 31282, 31289, 31290, 31332, 31347, 31314, 31353, 31375, 21287, + 21288, 31343, 31386, 31421, 31430, 31465, 31473, 31485, 31501, 31509, 31521, 14904, 31180, 31528, 14959, 18699, + 18717, 14336, 31544, 26854, 34576, 34578, 31644, 33204, 11421, 23288, 31677, 31713, 11890, 16858, 31728, 31749, + 31760, 31782, 31793, 31805, 31816, 31822, 31827, 31835, 17964, 21594, 31838, 8160, 31930, 29013, 33653, 31961, + 17988, 12421, 23352, 23250, 23292, 31752, 23253, 32029, 16837, 32144, 32166, 24114, 32182, 13896, 31182, 32201, + 31734, 32238, 26180, 32265, 27263, 32294, 32311, 16870, 32319, 17167, 16842, 11071, 32347, 32397, 32415, 32443, + 32456, 21174, 32468, 32493, 32499, 32506, 32531, 32225, 32546, 32564, 32577, 12042, 32634, 32747, 32760, 32766, + 32778, 11501, 32790, 19469, 9252, 31184, 31186, 9731, 32816, 999, 32884, 32892, 9272, 32914, 32926, 32934, + 32939, 32940, 32962, 5517, 1083, 34683, 33053, 8392, 10572, 11960, 24509, 30299, 1300, 30527, 34676, 1302, + 30535, 26450, 26482, 26483, 26489, 26495, 32977, 8703, 1418, 26414, 1419, 28763, 2115, 7606, 1441, 13412, 26273, + 28880, 28909, 1442, 28458, 28479, 28493, 1445, 32733, 1466, 1475, 29032, 26257, 1476, 28595, 28885, 1491, 1502, + 28323, 1510, 5290, 26241, 1526, 29197, 28873, 4090, 1530, 9378, 26158, 3845, 8654, 1531, 1761, 26082, 1535, + 26699, 29865, 1555, 2245, 8605, 28450, 28899, 28901, 1558, 5993, 28354, 29834, 1607, 1667, 23535, 1670, 1790, + 26644, 7585, 20304, 28327, 28400, 26421, 1678, 2221, 10973, 1689, 28865, 8550, 22378, 8540, 1691, 26032, 29417, + 1692, 26591, 29304, 1694, 28069, 31474, 31486, 31507, 31524, 1802, 28906, 1813, 29853, 1814, 8604, 1841, 27959, + 1857, 28466, 1918, 32834, 32863, 32890, 30286, 31680, 31400, 1979, 31833, 33277, 13387, 1980, 21374, 2001, 2035, + 5666, 5564, 2049, 17110, 5287, 2362, 32818, 25810, 2050, 2065, 25762, 29012, 29031, 2066, 25802, 34043, 28092, + 29161, 2094, 34032, 28872, 2097, 34161, 33479, 2106, 2140, 2142, 36878, 36879, 2186, 28117, 2219, 29019, 6372, + 2238, 7995, 9107, 12097, 13676, 17199, 26746, 33929, 18012, 20093, 34468, 20362, 21610, 23755, 23769, 24602, + 19617 + ], + "@alifd/next", + "@angular-devkit/core", + [3, 4, 16], + "schematics", + [2, 5, 6], + [3, 4, 8], + "/animations", + [2, 8, 9], + [3, 10, 9], + "cdk", + [2, 11, 12], + [3, 13, 10], + "ommon", + [2, 14, 15], + [3, 16, 12], + "piler", + [2, 17, 18], + "-cli", + [2, 19, 20], + [3, 16, 11], + "re", + [2, 22, 23], + "forms", + [2, 11, 25], + "http", + [2, 11, 27], + "material", + [2, 11, 29], + "platform-browser", + [2, 11, 31], + "-dynamic", + [2, 32, 33], + [3, 32, 18], + "server", + [2, 35, 36], + "router", + [2, 11, 38], + "@ant-design/react-native", + [3, 40, 12], + "web3-common", + [2, 41, 42], + [3, 43, 17], + "icons", + [2, 44, 45], + "@auth/sveltekit", + "@babel/cli", + [3, 48, 8], + "ode-frame", + [2, 49, 50], + [3, 51, 9], + [2, 52, 23], + [3, 48, 7], + "helper-plugin-utils", + [2, 54, 55], + "parser", + [2, 54, 57], + [3, 58, 8], + "lugin-proposal-class-properties", + [2, 59, 60], + "@11ty/eleventy", + "@adobe/css-tools", + "@api-components/api-method-documentation", + "@apollo/client", + "@asyncapi/generator-react-sdk", + "eslint-parser", + [2, 54, 67], + [3, 61, 23], + "decorators", + [2, 69, 70], + "export-default-from", + [2, 69, 72], + [3, 73, 30], + "namespace-from", + [2, 74, 75], + "object-rest-spread", + [2, 69, 77], + [3, 61, 14], + "syntax-dynamic-import", + [2, 79, 80], + "transform-runtime", + [2, 79, 82], + "olyfill", + [2, 59, 84], + "reset-env", + [2, 59, 86], + [3, 87, 14], + "react", + [2, 88, 89], + "typescript", + [2, 88, 91], + "register", + [2, 54, 93], + [3, 94, 8], + "untime", + [2, 95, 96], + "-corejs2", + [2, 97, 98], + "traverse", + [2, 54, 100], + [3, 101, 8], + "ypes", + [2, 102, 103], + "@biz-dev-ops/md-docs", + "@bwcr_/winston-loki", + "@changesets/cli", + "@cha", + "tscope/chat-ui-kit-react", + [2, 108, 109], + "@ckeditor/ckeditor5-adapter-ckfinder", + [3, 111, 21], + "ngular", + [2, 112, 113], + "utoformat", + [2, 112, 115], + [3, 111, 20], + "basic-styles", + [2, 117, 118], + [3, 119, 21], + "lock-quote", + [2, 120, 121], + "uild-balloon", + [2, 120, 123], + "-block", + [2, 124, 125], + [3, 124, 26], + "classic", + [2, 127, 128], + "deco", + "upled-document", + [2, 130, 131], + [2, 127, 132], + "inline", + [2, 127, 134], + "ckbox", + [2, 117, 136], + [3, 137, 22], + "finder", + [2, 138, 139], + [3, 137, 21], + "lipboard", + [2, 141, 142], + [3, 143, 22], + "oud-services", + [2, 144, 145], + "ore", + [2, 141, 147], + "easy-image", + [2, 117, 149], + [3, 150, 21], + "ngine", + [2, 151, 152], + "ssentials", + [2, 151, 154], + "heading", + [2, 117, 156], + "image", + [2, 117, 158], + [3, 159, 21], + "ndent", + [2, 160, 161], + "link", + [2, 117, 163], + [3, 164, 22], + "st", + [2, 165, 166], + "media-embed", + [2, 117, 168], + "paragraph", + [2, 117, 170], + [3, 171, 22], + "ste-from-office", + [2, 172, 173], + [2, 117, 89], + "table", + [2, 117, 176], + [3, 177, 21], + "yping", + [2, 178, 179], + "ui", + [2, 117, 181], + [3, 182, 21], + "pload", + [2, 183, 184], + "tils", + [2, 183, 186], + "vue", + [2, 117, 188], + "widget", + [2, 117, 190], + "@commitlint/cli", + "@com", + "podoc/compodoc", + [2, 193, 194], + "unica/core", + [2, 193, 196], + "@contenthook/browser", + [3, 198, 13], + "cli", + [2, 199, 200], + "node", + [2, 199, 202], + "@coreui/coreui", + "@csstools/css-parser-algorithms", + [3, 205, 14], + "tokenizer", + [2, 206, 207], + [3, 205, 10], + "media-", + "query-list-parser", + [2, 210, 211], + [2, 209, 212], + "postcss-is-pseudo-class", + [2, 209, 214], + [3, 215, 18], + "progressive-custom-properties", + [2, 216, 217], + "selector-specificity", + [2, 209, 219], + "@cucumber/cucumber", + "@deven-org/documentation-skeleton", + "@dev", + "tea2026/aspernatur-ea-non-porro", + [2, 223, 224], + [3, 225, 12], + "consectetur-ab-unde-quisquam", + [2, 226, 227], + [3, 228, 13], + "upiditate-dolorem-excepturi-impedit", + [2, 229, 230], + "distinctio-soluta-illo-eaque", + [2, 226, 232], + "eum-ullam-est-distinctio", + [2, 226, 234], + [3, 235, 13], + "xplicabo-alias-architecto-sed", + [2, 236, 237], + "improved-journey", + [2, 226, 239], + [3, 240, 13], + "nventore-facilis-corporis-cum", + [2, 241, 242], + "psa-omnis-in-molestiae", + [2, 241, 244], + "literate-computing-machine", + [2, 226, 246], + "maxime-sequi-est-rem", + [2, 226, 248], + "necessitatibus-dolorem-esse-atque", + [2, 226, 250], + "odit-enim-reiciendis-pariatur", + [2, 226, 252], + [3, 253, 17], + "maxime-", + "porro-asperiores", + [2, 255, 256], + [2, 254, 257], + "possimus-ipsa-sint-consequuntur", + [2, 226, 259], + "qui-quos-laborum-amet", + [2, 226, 261], + [3, 262, 15], + "a-ducimus-placeat-minima", + [2, 263, 264], + "dem-voluptate-repudiandae-necessitatibus", + [2, 263, 266], + "rerum-quaerat-porro-animi", + [2, 226, 268], + "ubiquitous-octo-memory", + [2, 226, 270], + "@diotoborg/adipisci-placeat-iure", + [3, 272, 12], + "met-architecto-est", + [2, 273, 274], + "t-totam-perspiciatis", + [2, 273, 276], + [3, 272, 11], + "commodi-voluptatum-libero", + [2, 278, 279], + "delectus-necessitatibus-voluptatum", + [2, 278, 281], + [3, 282, 13], + "serunt-illo-tempora", + [2, 283, 284], + [3, 282, 12], + "icta-recusandae-veniam", + [2, 286, 287], + "olor-earum-quia", + [2, 286, 289], + [3, 290, 17], + "tempora-fuga", + [2, 291, 292], + [3, 290, 16], + "es-praesentium-assumenda", + [2, 294, 295], + "eligendi-est-unde", + [2, 278, 297], + [3, 298, 12], + "sse-accusantium-ratione", + [2, 299, 300], + "illo-amet-architecto", + [2, 278, 302], + "laudantium-itaque-esse", + [2, 278, 304], + [3, 305, 12], + "ibero-asperiores-at", + [2, 306, 307], + "neque-inventore-corporis", + [2, 278, 309], + [3, 310, 12], + "ostrum-eveniet-officiis", + [2, 311, 312], + "odio-dolores-officia", + [2, 278, 314], + "porro-", + "modi-accusamus", + [2, 316, 317], + [2, 278, 318], + [3, 319, 12], + "sychic-bassoon", + [2, 320, 321], + "quasi-repellat-odit", + [2, 278, 323], + [3, 324, 13], + "i-ullam-ipsum", + [2, 325, 326], + "o-dolorem-ducimus", + [2, 325, 328], + "ratione-error-odio", + [2, 278, 330], + [3, 331, 12], + "epellat-blanditiis-quis", + [2, 332, 333], + [3, 292, 8], + "voluptas-distinctio", + [2, 335, 336], + [2, 278, 337], + "ullam-dignissimos-repudiandae", + [2, 278, 339], + "velit-reiciendis-velit", + [2, 278, 341], + [3, 342, 13], + "rbose-robot", + [2, 343, 344], + "@diplodoc/transform", + "@discordjs/rest", + "@dis", + "qada/workspace", + [2, 348, 349], + "@doc-tools/docs", + [3, 351, 11], + [3, 82, 9], + [2, 352, 353], + "@dramaorg/esse-praesentium-eligendi", + [3, 355, 10], + "quae-dolore-nostrum", + [2, 356, 357], + "@eas-framework/server", + "@eightshift/frontend-libs", + "@electron/docs-parser", + "@emotion/babel-plugin", + [3, 362, 9], + "core", + [2, 363, 364], + [3, 365, 10], + "ss", + [2, 366, 367], + "styled", + [2, 363, 369], + "@erboladaiorg/ad-exercitationem-ducimus", + [3, 371, 15], + "speriores-earum-quaerat", + [2, 372, 373], + [3, 374, 25], + "fuga-sint", + [2, 375, 376], + "nam-adipisci", + [2, 375, 378], + "utem-dolores-ipsam", + [2, 372, 380], + [3, 371, 14], + "cupiditate-consectetur-porro", + [2, 382, 383], + [3, 384, 25], + "pariatur-optio", + [2, 385, 386], + [3, 232, 11], + "quis", + [2, 335, 389], + [2, 388, 390], + [2, 382, 391], + "error-atque-ea", + [2, 382, 393], + [3, 394, 15], + "sse-", + "ipsa-numquam", + [2, 396, 397], + [2, 395, 398], + "x-hic-molestias", + [2, 395, 400], + [3, 401, 16], + "plicabo-eius-adipisci", + [2, 402, 403], + "molestiae-voluptatibus-perferendis", + [2, 382, 405], + [3, 406, 22], + "s-nulla-dolor", + [2, 407, 408], + "nisi-culpa-cum", + [2, 382, 410], + "officia-illum-aperiam", + [2, 382, 412], + "perspiciatis-magni-ut", + [2, 382, 414], + "quae-", + "in-veniam", + [2, 416, 417], + [2, 382, 418], + [3, 419, 18], + "rat-mollitia-adipisci", + [2, 420, 421], + [3, 419, 16], + "ibusdam-itaque-tempora", + [2, 423, 424], + "sint-deleniti-dolorem", + [2, 382, 426], + [3, 427, 16], + "t-nesciunt-amet", + [2, 428, 429], + "tenetur-architecto-dolore", + [2, 382, 431], + "ut-dignissimos-laborum", + [2, 382, 433], + "velit-", + "fugit-harum", + [2, 435, 436], + [2, 382, 437], + "@eslint-community/eslint-utils", + "@eslint", + "/js", + [2, 440, 441], + "@fakeyanss/redoc", + "@floating-ui/react-dom", + "@fontsource/inter", + [3, 445, 12], + "roboto", + [2, 446, 447], + "@fortawesome/fontawesome-svg-core", + [3, 449, 14], + "ree-solid-svg-icons", + [2, 450, 451], + [3, 449, 13], + "-fontawesome", + [2, 89, 454], + [2, 453, 455], + "@grandlinex/core", + [3, 457, 12], + "e-kernel", + [2, 458, 459], + "kernel", + [2, 458, 461], + "@gra", + "phql-markdown/core", + [2, 463, 464], + [3, 465, 18], + "docusaurus", + [2, 466, 467], + "@hajtech/webpack-config", + "@hapi/hapi", + "@hishprorg/aliquid-ad-vero", + [3, 471, 12], + "utem-", + "sint-", + "@adonisjs/core", + "sint-quas", + [2, 473, 476], + [2, 472, 477], + [3, 471, 11], + "cum-rem-consequuntur", + [2, 479, 480], + "earum-sint-veritatis", + [2, 479, 482], + [3, 483, 12], + "ius-vero-dicta", + [2, 484, 485], + "st-dicta-quis", + [2, 484, 487], + "incidunt-quibusdam-tempore", + [2, 479, 489], + [3, 490, 12], + "taque-esse-accusamus", + [2, 491, 492], + "ure-optio-nihil", + [2, 491, 494], + "magni-amet-id", + [2, 479, 496], + [3, 497, 17], + "nisi-", + "aperiam", + [2, 499, 500], + [2, 498, 501], + [3, 497, 13], + "xime-voluptates-enim", + [2, 503, 504], + "nihil-ad-ratione", + [2, 479, 506], + [3, 414, 13], + [3, 330, 8], + "unde", + [2, 509, 510], + [2, 508, 511], + [2, 479, 512], + "-perferendis-culpa", + [2, 389, 514], + [2, 479, 515], + "reprehenderit-excepturi-sed", + [2, 479, 517], + "nam-", + "conse", + "quuntur", + [2, 520, 521], + [2, 519, 522], + [2, 474, 523], + [2, 479, 524], + [3, 525, 12], + "unt-officia-eligendi", + [2, 526, 527], + [3, 528, 16], + "volupta", + "tem-nobis", + [2, 530, 531], + [2, 529, 532], + "-vitae-reprehenderit", + [2, 510, 534], + [2, 479, 535], + "wafflejs", + [2, 479, 537], + "@homer0/prettier-plugin-jsdoc", + "@hookform/resolvers", + "@iamtraction/google-translate", + "@idux/cdk", + "@idux/c", + "omponents", + [2, 543, 544], + "@inquirer/core", + "@ionic/core", + "@isaacs/cliui", + "@istanbuljs/nyc-config-typescript", + "@itwin/itwinui-react", + "@jest/core", + "@jest/", + "types", + [2, 552, 553], + "@jsonforms/core", + [3, 555, 11], + "-renderers", + [2, 29, 557], + [2, 556, 558], + [2, 556, 89], + "@juigorg/nisi-molestiae-ut", + [3, 561, 9], + "sit-nam-neque", + [2, 562, 563], + "@jupyterlab/application", + "@kobedevi/sassdoc", + "@kollorg/dicta-itaque-nemo", + [3, 567, 9], + "nihil-", + "veniam-deserunt", + [2, 569, 570], + [2, 568, 571], + "@libphamton/chatfanpage", + [3, 573, 12], + "fb-group", + [2, 574, 575], + "@listr2/prompt-adapter-inquirer", + "@mantine/core", + [3, 578, 9], + "dates", + [2, 579, 580], + "hooks", + [2, 579, 582], + "modals", + [2, 579, 584], + "notifications", + [2, 579, 586], + "prism", + [2, 579, 588], + "style", + "s", + "styles", + [2, 579, 592], + "utils", + [2, 579, 594], + "@material-ui/core", + [3, 596, 13], + [2, 597, 45], + "@mat", + "hematikoi/jsonapi", + [2, 599, 600], + "@mdx-js/react", + "@microsoft/api-extractor", + [3, 603, 11], + "tsdoc", + [2, 604, 605], + "-config", + [2, 606, 607], + "@middy/core", + "@middy/", + "-json-body-parser", + [2, 27, 611], + [2, 610, 612], + "util", + [2, 610, 614], + "@ministryofjustice/frontend", + "@mswjs/interceptors", + "@mui/icons-material", + "@mui/", + "lab", + "@mui/lab", + [2, 619, 29], + "system", + [2, 619, 623], + "x-date-pickers", + [2, 619, 625], + "@neato/guider", + "@ng-doc/core", + [3, 628, 8], + "ui-kit", + [2, 629, 630], + [3, 631, 9], + [2, 632, 186], + "@nomicfoundation/hardhat-chai-matchers", + "@npmcli/arborist", + [3, 635, 8], + "map-workspaces", + [2, 636, 637], + "@augment-vir/common", + "node-gyp", + [2, 636, 640], + "run-script", + [2, 636, 642], + "@npmc", + "orp/marky-markdown", + [2, 644, 645], + "@npm", + "tuanmap/ex-vel-expedita-impedit", + [2, 647, 648], + [3, 649, 12], + "psychic-guide", + [2, 650, 651], + "recusandae-recusandae-nam-et", + [2, 650, 653], + "sed-quo-nemo-rerum", + [2, 650, 655], + "esse-velit-magnam", + [2, 435, 657], + [2, 650, 658], + "@nrwl/devkit", + "@nrwl/", + [2, 3388, 3399], + "@nrwl/tao", + "workspace", + [2, 661, 664], + "@nx/devkit", + "@nx/", + "esbuild", + [2, 667, 668], + "@nx/es", + "lint", + [2, 670, 671], + "@nx/e", + "xpress", + [2, 673, 674], + "js", + "@nx/js", + "nest", + "@nx/nest", + "nextra", + "ode", + "@nx/node", + [2, 667, 664], + "@oclif/command", + [3, 684, 9], + "nfig", + [2, 685, 686], + [2, 685, 23], + "@oclif/", + "plugin-help", + [2, 689, 690], + "@octokit/rest", + "@opentiny/vue", + "-render", + "less", + [2, 694, 695], + [2, 693, 696], + [3, 697, 14], + "theme", + [2, 698, 699], + "-mobile", + [2, 700, 701], + "@otterhttp/cookie", + [3, 703, 11], + "request", + [2, 704, 705], + [3, 706, 13], + "sponse", + [2, 707, 708], + "send", + [2, 704, 710], + "@pact-foundation/pact", + "@patrtorg/a-ad-expedita", + [3, 713, 12], + "ut-amet", + [2, 714, 715], + [3, 713, 11], + [3, 373, 10], + "vel-accusantium", + [2, 718, 719], + [2, 717, 720], + [3, 721, 15], + "natur-dolorum-ducimus", + [2, 722, 723], + "et-hic", + [2, 473, 725], + [2, 717, 726], + [3, 713, 10], + [3, 227, 12], + "culpa-non", + [2, 729, 730], + [2, 728, 731], + [3, 732, 22], + "repudiandae-consequuntur", + [2, 733, 734], + [3, 732, 15], + "quatur-voluptatum-officiis", + [2, 736, 737], + "ducimus-magni-quibusdam", + [2, 728, 739], + "enim-magni-hic", + [2, 728, 741], + [3, 742, 11], + "st-corrupti-deleniti", + [2, 743, 744], + "veni", + "et-tempore-maiores", + [2, 746, 747], + [2, 743, 748], + "illum-sapiente-quos", + [2, 728, 750], + "laborum-doloribus-voluptate", + [2, 728, 752], + [3, 753, 11], + "ibero-", + "doloribus-omnis", + [2, 755, 756], + [2, 754, 757], + [3, 758, 17], + [3, 336, 9], + "sequi", + [2, 760, 761], + [2, 759, 762], + "magn", + "am-aut-adipisci", + [2, 764, 765], + [2, 728, 766], + [3, 767, 12], + "iores-quidem-quo", + [2, 768, 769], + [3, 767, 11], + "olestias-molestias-ut", + [2, 771, 772], + "eius-unde", + [2, 519, 774], + [2, 728, 775], + [3, 386, 9], + "dele", + "niti-quaerat", + [2, 778, 779], + [2, 777, 780], + [2, 728, 781], + [3, 782, 11], + "orro-labore-eos", + [2, 783, 784], + "earum-", + "eius", + [2, 786, 787], + [2, 416, 788], + [2, 728, 789], + [3, 790, 12], + "os-quasi-ipsa", + [2, 791, 792], + "sapiente-eos-magnam", + [2, 728, 794], + [3, 795, 20], + "xercitationem-sit", + [2, 796, 797], + [3, 431, 9], + "nimi-reprehenderit", + [2, 799, 800], + [2, 728, 801], + "@perseid/store", + "@phosphor/widgets", + "@phun-ky/speccer", + "@polymer/polymer", + "@qooxdoo/framework", + "@quasar/extras", + "@readyplayerme/visage", + "@reduxjs/toolkit", + "@rollup/plugin-commonjs", + [3, 811, 15], + "node-", + "resolve", + [2, 813, 814], + [2, 812, 815], + "@sanity/tsdoc", + "@scalar/api-reference", + [3, 818, 8], + "fastify-api-reference", + [2, 819, 820], + "@serenity-js/protractor", + [3, 822, 13], + "webdriverio", + [2, 823, 824], + "@sinonjs/fake-timers", + "@storybook/addon-docs", + "@subwallet/react-ui", + "@supernovaio/sdk", + "-exporters", + [2, 829, 830], + [3, 829, 14], + "upernova-sdk", + [2, 832, 833], + "@sveltejs/eslint-config", + [3, 835, 10], + "kit", + [2, 836, 837], + "vite-plugin-svelte", + [2, 836, 839], + "@svgr/webpack", + "@swc/core", + "@swenkerorg/maiores-voluptatibus-nemo", + [3, 843, 13], + "odi-dolorum-provident", + [2, 844, 845], + [3, 843, 12], + "nulla-voluptates-voluptates", + [2, 847, 848], + "@swisspost/design-system-styles", + "@symbiotejs/symbiote", + "@synion/md-docs", + "@taktikorg/aut-distinctio-repellat", + [3, 853, 11], + "quo-quos", + [2, 729, 855], + [2, 854, 856], + [3, 857, 13], + "rporis-nihil-odit", + [2, 858, 859], + [3, 780, 11], + "i-dolorem", + [2, 861, 862], + [2, 854, 863], + [3, 864, 12], + "olor-", + "quibusdam", + [2, 509, 867], + [2, 866, 868], + [2, 865, 869], + "harum-reprehenderit-perferendis", + [2, 854, 871], + "illum-", + "accusamus-possimus", + [2, 873, 874], + [2, 854, 875], + [3, 876, 12], + "psa-", + "totam-aperiam", + [2, 878, 879], + [2, 877, 880], + "ste-", + "ex-tempore", + [2, 882, 883], + [2, 877, 884], + "taque-", + "nam-e", + "os", + "nam-eos", + [2, 886, 889], + [2, 877, 890], + [3, 891, 18], + "tempor", + "e-exercitationem", + [2, 893, 894], + [2, 892, 895], + "maiores-dolores-aut", + [2, 854, 897], + [3, 898, 12], + [3, 772, 9], + "fuga-", + [3, 259, 8], + [2, 901, 902], + [2, 900, 903], + [2, 899, 904], + "@bugsnag/react-native", + "@enact/sandstone", + "sse-animi", + [2, 887, 908], + [2, 854, 909], + [3, 910, 12], + "ecessitatibus-repudiandae-officia", + [2, 911, 912], + "isi-reprehenderit-amet", + [2, 911, 914], + "placeat-voluptates-dolorum", + [2, 854, 916], + [3, 917, 12], + "raesentium-dolorum-quis", + [2, 918, 919], + [3, 920, 23], + "neque-i", + "psam", + [2, 922, 923], + [2, 921, 924], + "quo-", + "reiciendis-quibusdam", + [2, 926, 927], + [2, 854, 928], + [3, 653, 12], + "atione-veniam", + [2, 930, 931], + [2, 854, 932], + "similique-natus-officia", + [2, 854, 934], + [3, 935, 12], + "uscipit-modi-ratione", + [2, 936, 937], + [3, 895, 8], + "@antora/logger", + "in", + "veniam-in", + [2, 939, 942], + [2, 854, 943], + "unde-", + "animi-omnis", + [2, 945, 946], + [2, 854, 947], + "nobis-blanditiis", + [2, 435, 949], + [2, 854, 950], + [3, 951, 12], + "oluptatem-pariatur-tenetur", + [2, 952, 953], + "@tanem/svg-injector", + "@tan", + "stack/react-query", + [2, 956, 957], + [3, 958, 10], + "svelte-query", + [2, 959, 960], + "@teamhanko/hanko-frontend-sdk", + "@testing-library/cypress", + [3, 963, 17], + "dom", + [2, 964, 965], + "jest-dom", + [2, 964, 967], + [3, 968, 22], + "native", + [2, 969, 970], + [2, 964, 89], + "user-event", + [2, 964, 973], + "@tinyhttp/app", + [3, 975, 10], + "cookie", + [2, 976, 977], + "-signature", + [2, 978, 979], + [3, 978, 12], + "rs", + [2, 981, 982], + "etag", + [2, 976, 984], + "forwarded", + [2, 976, 986], + "proxy-addr", + [2, 976, 988], + "req", + [2, 976, 990], + [3, 991, 12], + [2, 992, 591], + [3, 991, 11], + "outer", + [2, 994, 995], + [2, 976, 710], + "type", + [2, 29611, 30768], + "type-is", + [2, 976, 1000], + "url", + [2, 976, 1002], + "@tsparticles/engine", + "@twurple/ebs-helper", + "@types/estree", + "@types", + "cript-eslint/eslint-plugin", + [2, 1007, 1008], + [3, 1009, 19], + [2, 1010, 57], + [2, 1010, 594], + "@ucloud-fe/react-components", + "@udecode/plate-core", + "@uiw/react-button", + [3, 1015, 11], + "icon", + [2, 1016, 1017], + [3, 1018, 12], + "nput", + [2, 1019, 1020], + "overlay-trigger", + [2, 1016, 1022], + "@uiw/", + "@uiw/utils", + "@unleash/proxy", + "@uploadcare/file-uploader", + "@vitejs/plugin-legacy", + [3, 1028, 15], + [2, 1029, 89], + "@vue/eslint-config-typescript", + "@wesleytodd/openapi", + "@wuxh/dumi", + "@zitterorg/adipisci-quae-eius", + [3, 1034, 12], + "sper", + "natur-", + [3, 386, 10], + "ccaecati", + [2, 1038, 1039], + [2, 1037, 1040], + [2, 1036, 1041], + [2, 1035, 1042], + "t-esse-odit", + [2, 1035, 1044], + [3, 1034, 11], + "cum-", + "ipsum-beatae", + [2, 1047, 1048], + [2, 1046, 1049], + "dolor", + "emque-ut-omnis", + [2, 1051, 1052], + [2, 1046, 1053], + "est-sunt-quos", + [2, 1046, 1055], + [3, 1056, 12], + "um-veritatis-placeat", + [2, 1057, 1058], + "fluffy-waddle", + [2, 1046, 1060], + "glowing-barnacle", + [2, 1046, 1062], + "perferendis-consectetur", + [2, 873, 1064], + [2, 1046, 1065], + [3, 1066, 12], + "taque-n", + "isi-", + "veritatis", + [2, 1069, 1070], + [2, 1068, 1071], + [2, 1067, 1072], + "probable-octo", + [2, 1046, 1074], + "upgraded-fishstick", + [2, 1046, 1076], + "@zkportal/aleo-oracle-sdk", + "abort-controller", + "accepts", + "acl", + "acorn", + "arethetypeswrong", + "acorn-walk", + "action-cli", + "adm-zip", + "after", + "agenda", + "aid-guard1", + "airtap", + "ajv", + "ajv-formats", + "although-line-wall-corn", + "amqp", + "lib", + "amqplib", + "analsorhost-simple-bs", + "angular", + "-animate", + [2, 1098, 1099], + "angular-", + [2, 1101, 200], + [2, 1101, 29], + "ansi-colors", + "ansi-", + "escapes", + [2, 1105, 1106], + "regex", + "ansi-regex", + [2, 1105, 592], + "ansi", + "ansis", + "ant-design-vue", + "antd", + "antfu", + "anyway-south-boy-pilot", + "api-console", + "apidoc", + "-markdown", + [2, 1118, 1119], + "apn", + "apollo-cache-inmemory", + "apollo-c", + "lient", + [2, 1123, 1124], + "apollo-", + [2, 1126, 163], + "-http", + [2, 1127, 1128], + "app-root-path", + "appium-android-driver", + "apple-transportation-web3-locate", + "appl", + "icationinsights", + [2, 1133, 1134], + "appsync-client-node", + "archiver", + "arg", + "argparse", + "arrangement-tell-arrange", + "arra", + "y.prototype.flatmap", + [2, 1141, 1142], + "arrify", + "assert", + "-plus", + "assert-plus", + "assume", + "async", + "-listen", + [2, 1149, 1150], + "async-", + "retry", + "async-retry", + "validator", + [2, 1152, 1155], + "atob", + "aud", + "auto-changelog", + "auto-", + "install", + [2, 1160, 1161], + "auto", + "prefixer", + [2, 1163, 1164], + "ava", + "awesome-typescript-loader", + "aws-sdk", + "axe-core", + "axios", + "azure-storage", + "babel", + "babel-cli", + "babel-c", + "babel-core", + "babel-", + "eslint", + [2, 1176, 1177], + "generator", + [2, 1176, 1179], + [3, 55, 7], + "fixtures", + [2, 1181, 1182], + [2, 1176, 1183], + [3, 1184, 13], + "plugin-", + "test-runner", + [2, 1186, 1187], + [2, 1185, 1188], + "vue-jsx-merge-props", + [2, 1185, 1190], + "jest", + "babel-jest", + "loader", + [2, 1176, 1194], + "add-module-exports", + [2, 1186, 1196], + [2, 1176, 1197], + [3, 1198, 13], + "dynamic-import-node", + [2, 1199, 1200], + "external-helpers", + [2, 1199, 1202], + "import", + [2, 1199, 1204], + [3, 1205, 14], + "stanbul", + [2, 1206, 1207], + "lodash", + [2, 1199, 1209], + "module-resolver", + [2, 1199, 1211], + "name", + "d-asset-import", + [2, 1213, 1214], + [2, 1199, 1215], + [2, 1199, 80], + [3, 1217, 20], + "jsx", + [2, 1218, 1219], + [3, 82, 10], + "to-generator", + [2, 1152, 1222], + [2, 1221, 1223], + [2, 1199, 1224], + [3, 1225, 23], + "class", + "-properties", + [2, 1227, 1228], + [2, 1226, 1229], + "-legacy", + [2, 70, 1231], + [2, 1226, 1232], + "es2015-block-scoping", + [2, 1226, 1234], + [3, 1235, 30], + "module", + "s-commonjs", + [2, 1237, 1238], + [2, 1236, 1239], + "temp", + "late-literals", + [2, 1241, 1242], + [2, 1236, 1243], + [2, 1226, 77], + "react-", + "react-jsx", + [2, 1226, 1247], + [3, 1248, 29], + "remove-prop-types", + [2, 1249, 1250], + [3, 1248, 25], + [2, 1252, 1179], + [3, 1248, 24], + [2, 1254, 96], + "babel-p", + [2, 1256, 84], + "reset-", + "airbnb", + [2, 1258, 1259], + [2, 1256, 1260], + [3, 1261, 13], + "env", + [2, 1262, 1263], + [3, 1264, 14], + "s2015", + [2, 1265, 1266], + [2, 1262, 89], + "-app", + [2, 1268, 1269], + "stage-0", + [2, 1262, 1271], + [3, 1272, 19], + "1", + [2, 1273, 1274], + "2", + [2, 1273, 1276], + "3", + [2, 1273, 1278], + [2, 1176, 93], + "babel-r", + [2, 1281, 96], + "template", + [2, 1176, 1283], + "babel-t", + "raverse", + [2, 1285, 1286], + [2, 1285, 103], + "ify", + "babelify", + "babylon", + "backbone", + "baqend", + "bark-needs-visit4", + "base-64", + "base-", + "individual-comfortable-crop", + [2, 1296, 1297], + "base", + "@expressots/core", + "base64-js", + [2, 30536, 26449, 2026], + "auth", + "basic-auth", + "batuta", + "bcrypt", + "-nodejs", + [2, 1306, 1307], + "bcryptjs", + "bearcat", + "beautify-benchmark", + "beaut", + "y-foot-compass5", + [2, 1312, 1313], + "beefy", + "believed-usually-greater-passage", + "benchmark", + "best-lips-shoulder", + "best-", + "valley2", + [2, 1319, 1320], + "between-cry-additional", + "beyond", + "bfj", + "bignumber.js", + "bindings", + "bip39", + "bizcharts", + "bl", + "blanket", + "blessed", + "-con", + "trib", + "-contrib", + [2, 1331, 1334], + "blockchain-am5", + [3, 1336, 11], + "baby", + [2, 1337, 1338], + [3, 1339, 13], + "ck1", + [2, 1340, 1341], + "closely", + [2, 1337, 1343], + "directly", + [2, 1337, 1345], + "egg", + [2, 1337, 1347], + "happily", + [2, 1337, 1349], + "language", + [2, 1337, 1351], + "own8", + [2, 1337, 1353], + "record", + [2, 1337, 1355], + "scientist", + [2, 1337, 1357], + "block", + "ed", + "blocked", + "bluebird", + "bn.js", + "body-parser", + "bookshelf", + "boom", + "bootstrap", + "-sass", + [2, 1367, 1368], + "bower", + "boxen", + "brain", + "branch-body-web3-feel", + "branch-", + "camera-web3-organization", + [2, 1374, 1375], + "brfs", + "broccoli-funnel", + [3, 1378, 9], + "merge-trees", + [2, 1379, 1380], + "test-", + "helper", + "test-helper", + [2, 1379, 1384], + "brought-tried-whether8", + "browser-sync", + "browser", + "browserify", + "-shim", + [2, 1389, 1390], + "slist", + [2, 1388, 1392], + "bs58", + "bson", + "btoa", + "buble", + "buffer", + "-equal", + [2, 1398, 1399], + "bufferutil", + "built-who-entire", + "built", + "in-modules", + [2, 1403, 1404], + "bulma", + "bump-cli", + "bundle-collapser", + "bunyan", + "busboy", + "bytebuffer", + "byte", + "bytes", + "c8", + "cac", + "cache-manager", + "call-bind", + [2, 32731, 158], + [2, 30999, 28513], + "camelcase", + "caniuse", + "-lite", + [2, 1421, 1422], + "canvas", + "careful-faster-dirty-matter", + "case-sensitive-paths-webpack-plugin", + "casperjs", + "caught-brain-service0", + "chai", + "-as-promised", + [2, 1429, 1430], + "chai-", + "passport-strategy", + [2, 1432, 1433], + "subset", + "chai-subset", + "chalk", + "chance", + "-able-necessary-bell", + [2, 1438, 1439], + "@amaui/icons-material-rounded-react", + [2, 26909, 26910], + "change-case", + "change", + [2, 27056, 28675], + "changelogen", + "chart.js", + "cheerio", + "chicken-fell-spread", + "child_process", + "child", + "-pro", + "cess-promise", + [2, 1452, 1453], + [2, 1451, 1454], + "choerodon-ui", + "chokidar", + "ci-info", + "ckeditor5", + "names", + "classnames", + "clean-css", + "clean-", + "webpack-plugin", + [2, 1463, 1464], + [2, 29755, 25720], + "r", + "clear", + "-module", + [2, 1468, 1469], + "cli-boxes", + "cli-", + "color", + "cli-color", + "@immobiliarelabs/backstage-plugin-gitlab-backend", + [2, 819, 28594], + "cli-cursor", + "spinner", + "cli-spinner", + [2, 1479, 591], + "cli-table", + "cli-table2", + "cli-table3", + "cli-t", + "runcate", + [2, 1484, 1485], + "ux", + "cli-ux", + "clipanion", + "clip", + "@busy-hour/blaze", + "clipboard", + "y", + "clipboardy", + "cliui", + "clone", + "clsx", + "clui", + "co", + "co-prompt", + "code", + [2, 1491, 3172], + "codecov", + "mirror", + "codemirror", + "coffee-script", + "coffee", + "script", + [2, 1507, 1508], + "attw", + "colorette", + "colors", + "columnify", + "comm", + "and-exists", + [2, 1514, 1515], + "command-", + "line-args", + [2, 1517, 1518], + [3, 1519, 13], + "usage", + [2, 1520, 1521], + "command", + "er", + "commander", + "@casl/ability", + "commitizen", + "commit", + "commitlint", + "@types/xast", + "tsdown", + "common-tags", + "component-emitter", + "comp", + [2, 15679, 26697], + "compression", + "concat-stream", + "conc", + "urrently", + [2, 1538, 1539], + "config", + "store", + "configstore", + "connect", + "-flash", + [2, 1544, 1545], + "connect-", + "history-api-fallback", + [2, 1547, 1548], + "mongo", + [2, 1547, 1550], + "redis", + [2, 1547, 1552], + "cons", + "globrex", + "consola", + "consol", + [3, 1014, 14], + "consolidate", + "content-disposition", + "content-", + [2, 1561, 998], + "content", + "hook", + "contenthook", + "conventional-changelog", + [2, 1566, 20], + [3, 1567, 24], + "onventionalcommits", + [2, 1568, 1569], + "conve", + "rt-source-map", + [2, 1571, 1572], + "-parser", + [2, 977, 1574], + "cookie-", + "session", + [2, 1576, 1577], + "cookie-s", + "ignature", + [2, 1579, 1580], + "copy-to-clipboard", + "copy-", + [2, 1583, 1464], + "copy", + "files", + "copyfiles", + "corcojs-qrcode", + "-logo", + [2, 1588, 1589], + "cordova", + "-js", + "core-js", + "cors", + "cosmiconfig", + "coveralls", + "cpy-cli", + "crawler", + "crc", + "create-hash", + "create-", + "react-class", + [2, 1601, 1602], + "critical", + "cron", + "croner", + "emoji-js", + "cronnor", + "cropperjs", + "cross-env", + "cross-", + "fetch", + "cross-fetch", + "spawn", + "cross-spawn", + "crypto", + "-browserify", + [2, 1616, 1617], + "crypto-", + "crypto-js", + "cson-parser", + "cspell", + "css", + "css-declaration-sorter", + "css-", + "functions-list", + [2, 1625, 1626], + "css-loader", + "minimizer-webpack-plugin", + [2, 1625, 1629], + "select", + "css-select", + "tree", + "css-tree", + "cssdb", + "cssesc", + "cssnano", + "cssstyle", + "csstype", + "csurf", + "csv", + "csv-generate", + "csv-", + "parse", + "csv-parse", + "stringify", + [2, 1643, 1646], + "csvtojson", + "cucumber", + "cuid", + "cypress", + "cz-conventional-changelog", + "d3", + "d3-array", + "d3-scale", + "d3-s", + "election", + [2, 1656, 1657], + "hape", + "d3-shape", + "dable-effect", + "daisyui", + "dance-you-thou", + "dargs", + "datafire", + "date", + "mercurius", + "date-fns", + "form", + "unbundle", + "format", + "dateformat", + "dayjs", + "deasync", + "debounce", + "debug", + "decamelize", + "@pinia/testing", + "decompress", + "dedent", + "dedupe", + "deep-assign", + "deep-", + "ist-ability3", + [2, 1554, 1684], + [2, 1683, 1685], + "diff", + "deep-diff", + "remeda", + "deep-eql", + "@nuxt/ui", + "input-otp", + "deep-equal", + "@assistant-ui/react", + "xtend", + "deep-extend", + "deep", + "merge", + "deepmerge", + "del", + "del-cli", + "delay", + "depcheck", + "depd", + "dependency-check", + "depth-clay-tax7", + "detect-indent", + "detect-", + "port", + "detect-port", + "did-enter-lay", + "2html", + "diff2html", + "erence-mile-pocket5", + [2, 1687, 1714], + "direct", + "ed-graph-typed", + [2, 1716, 1717], + "dirty-chai", + "discord-backend-manager", + "discord", + ".js", + "discord.js", + "dist", + "ance-its-clear-rate", + [2, 1724, 1725], + "dmd", + "dmd-grunt-jsdoc2md", + "dnd-multi-backend", + "dnode", + "doc-detective", + "-core", + [2, 1731, 1732], + "docco", + "docgen", + "dockerode", + "docpad", + "docschema", + "docs", + "ify-tabs", + [2, 1739, 1740], + "doctoc", + "docu", + "mentation", + [2, 1743, 1744], + "document", + "db", + "documentdb", + "-lunr-search", + [2, 467, 1749], + "dom-helpers", + "dom-", + "serializer", + [2, 1752, 1753], + "to-image-more", + [2, 1752, 1755], + "dompurify", + "dot", + "dotenv", + "-exp", + [2, 26024, 1764, 1524], + "-expand", + [2, 1759, 1762], + "download", + "-git-repo", + [2, 1764, 1765], + "doxdox", + [2, 1767, 20], + "doxdox-c", + [2, 1769, 147], + "doxdox-", + "-dox", + [2, 57, 1772], + [2, 1771, 1773], + [3, 1774, 14], + "jsdoc", + [2, 1775, 1776], + "renderer-bootstrap", + [2, 1771, 1778], + [3, 1779, 16], + "json", + [2, 1780, 1781], + "markdown", + [2, 1780, 1783], + "draft-js", + "dropzone", + "dtslint", + "dubnium", + "dumi", + [2, 31436, 31494], + "dumi-cm", + "duplexer", + "dw-neit-antd", + "each", + "echarts", + "eclint", + "ejs", + "elasticsearch", + "elect", + "ricity-death-web3-story", + [2, 1799, 1800], + [2, 28004, 28078], + "on", + "electron", + "-builder", + [2, 1804, 1805], + [3, 1806, 9], + "packager", + [2, 1807, 1808], + [3, 1809, 10], + "rebuilt", + [2, 1810, 1811], + [3, 32493, 21], + [2, 28080, 31811], + "rebuilder", + [2, 1807, 1815], + "element-resize-detector", + "element-", + "element-ui", + "eleventy", + "elliptic", + "email-templates", + "email", + "emailjs", + "ember-cli", + "-babel", + [2, 1825, 1826], + [3, 1827, 10], + "htmlbars", + [2, 1828, 1829], + "emmet", + "emotion", + "encodeurl", + "end-of-stream", + "enhanced-resolve", + "enquirer", + "ent", + "enumtype", + "envify", + "envi", + "@lobehub/chat", + "envinfo", + "enzyme", + "-adapter-react-16", + [2, 1843, 1844], + [3, 1845, 15], + [2, 1846, 594], + "enzyme-", + "shallow-equal", + [2, 1848, 1849], + "error", + "handler", + [2, 1851, 1852], + "es-check", + "es-value-fixtures", + "es5-ext", + "@upstash/context7-mcp", + "shim", + "es5-shim", + "es6-error", + "es6-", + "promise", + "es6-promise", + [3, 1863, 10], + [2, 1864, 1289], + "es6-shim", + "escape", + "-html", + "escape-html", + "escape-", + "string", + "-regexp", + [2, 1871, 1872], + [2, 1870, 1873], + "escodegen", + [3, 67, 7], + "-airbnb", + [2, 1541, 1877], + [2, 1876, 1878], + "-base", + [2, 1879, 1880], + [3, 1881, 21], + [2, 1882, 91], + [3, 1879, 14], + "google", + [2, 1884, 1885], + [3, 1886, 15], + "ulp", + [2, 1887, 1888], + "oclif", + [2, 1884, 1890], + "-typescript", + [2, 1891, 1892], + "prettier", + [2, 1884, 1894], + "app", + "react-app", + [2, 1884, 1897], + "semistandard", + [2, 1884, 1899], + [3, 1900, 15], + "tandard", + [2, 1901, 1902], + "unjs", + [2, 1884, 1904], + "xo", + [2, 1884, 1906], + "-lass", + [2, 1907, 1908], + "doc-", + [2, 1910, 1179], + [2, 1876, 1911], + "-resolver-typescript", + [2, 1204, 1913], + [2, 1876, 1914], + [2, 1876, 1194], + [3, 67, 8], + [2, 32825, 32833], + "lugin-ava", + [2, 1917, 1919], + [3, 1920, 14], + [2, 1921, 1172], + "compat", + [2, 1921, 1923], + "es5", + [2, 1921, 1925], + [3, 1926, 16], + "-comments", + [2, 671, 1928], + [2, 1927, 1929], + [3, 1930, 21], + "plugin", + [2, 1931, 1932], + "flowtype", + [2, 1921, 1934], + "html", + [2, 1921, 1936], + [2, 1921, 1204], + [2, 1921, 1192], + [3, 1939, 15], + "sdoc", + [2, 1940, 1941], + [3, 1942, 16], + "onc", + [2, 1943, 1944], + "x-a11y", + [2, 1943, 1946], + [2, 1921, 1783], + [3, 1948, 15], + "ocha", + [2, 1949, 1950], + "n", + [2, 1921, 1952], + [2, 1953, 681], + [2, 1921, 1894], + [3, 1955, 16], + "omise", + [2, 1956, 1957], + [2, 1921, 89], + "-hooks", + [2, 1959, 1960], + [3, 1959, 16], + "gexp", + [2, 1962, 1963], + "security", + [2, 1921, 1965], + [3, 1966, 15], + "onarjs", + [2, 1967, 1968], + [2, 1967, 1902], + "velte", + [2, 1967, 1971], + "test", + "ing-library", + [2, 1973, 1974], + [2, 1921, 1975], + [3, 1976, 15], + [2, 1977, 1941], + [2, 26374, 26377], + [2, 30307, 5592], + "unicorn", + [2, 1921, 1981], + "vite", + "vitest", + [2, 1921, 1984], + [3, 1985, 15], + "ue", + [2, 1986, 1987], + "remo", + "te-tester", + [2, 1989, 1990], + [2, 1876, 1991], + "scope", + [2, 1876, 1993], + "visitor-keys", + [2, 1876, 1995], + "rc", + "eslintrc", + "esm", + "espree", + "@architect/asap", + "ima", + "esprima", + "estraverse", + "estr", + "ee-walker", + [2, 2005, 2006], + "ethereumjs-tx", + [3, 2008, 11], + [2, 2009, 614], + "evalmd", + "event-stream", + "event", + "emitter2", + [2, 2013, 2014], + [3, 2015, 12], + [2, 2016, 1278], + "events", + "excellent-difficult-good", + "execa", + "exit", + "expect", + "-type", + "expect-type", + "expect.js", + "express", + "-adexe", + [2, 2026, 2027], + [3, 2028, 9], + "utodoc", + [2, 2029, 2030], + "express-", + [2, 2032, 1179], + "handle", + "canvaskit-wasm", + "handlebars", + [2, 2032, 2036], + "jwt", + "express-jwt", + [2, 2032, 1577], + "tools", + [2, 2032, 2041], + [3, 2042, 9], + "yped-rpc", + [2, 2043, 2044], + [2, 2032, 1155], + "zod-api", + [2, 2032, 2047], + "@crxjs/vite-plugin", + [2, 32904, 37123], + "extend", + "-shallow", + [2, 2051, 2052], + "extract-text-webpack-plugin", + "extract-", + "zip", + "extract-zip", + "facing-cook", + "fair-tower-web3-store", + "faker", + "fancy-log", + "fast", + "-check", + "fast-check", + [2, 32904, 13392], + "@antora/cli", + "fast-csv", + "fast-", + [2, 2068, 1693], + "glob", + "fast-glob", + "plist", + "fast-plist", + "xml-parser", + [2, 2068, 2074], + "click", + "fastclick", + "fastify", + "father", + "faucet", + "fbjs", + "fe-pilot", + "feature-rising-small7", + "femo", + "-mock", + "fetch-mock", + "fibers", + "figlet", + "figures", + "file", + "-loader", + "file-loader", + "file-", + [2, 29611, 7436, 26391], + "file-saver", + "file-type", + "planck", + "filesize", + "finalhandler", + "find", + "-cache-dir", + [2, 2100, 2101], + "find-", + "up", + "find-up", + "syncpack", + "findup-sync", + "firan-logging", + "firebase", + "-admin", + [2, 2109, 2110], + [3, 2111, 9], + [2, 2112, 2041], + "fixpack", + [2, 2120, 1145], + "fixturify", + "flat", + "pak-bundler", + [2, 2117, 2118], + [3, 639, 13], + [2, 2125, 23], + "flatpickr", + "flightplan", + "flow", + [3, 639, 15], + "flow-bin", + "@date-vir/duration", + "flowbite", + "fluent-ffmpeg", + "flux", + "follow-redirects", + "font-awesome", + "for-each", + "forever", + "fork-ts-checker-webpack-plugin", + "-alt", + [2, 2135, 2136], + "-data", + "form-data", + "nolyfill", + "formidable", + [2, 13402, 31197], + "k", + "formik", + "fresh", + "-dangerous", + [2, 2145, 2146], + "friendly-errors-webpack-plugin", + "front-matter", + "fs", + "fs-extra", + "fs-jetpack", + "fs-promise", + "fsevents", + "fstream", + "ftp", + [3, 1626, 10], + "have-names", + [2, 2157, 2158], + "fur-race-web3-pale", + "fuse.js", + "futen", + "fuzzy", + "gaze", + "gc-signals", + "-angular", + [2, 1179, 2166], + [3, 2167, 10], + "gulp-angular", + [2, 2168, 2169], + "nitro", + [2, 2168, 2171], + "gener", + "ic-pool", + [2, 2173, 2174], + "gensequence", + "gentle-party-other", + "geolib", + "get-package-type", + [2, 2181, 668], + [3, 15376, 16], + "get-port", + "get-", + "stdin", + "get-stdin", + "@c15t/backend", + "ream", + "get-stream", + "execute-in-browser", + "tsconfig", + [2, 2183, 2190], + "getmac", + "gh-pages", + "ghooks", + "github", + "-buttons", + [2, 2195, 2196], + [2, 11941, 2201], + "-parent", + "glob-parent", + "smart-text-reporter", + "global", + "globals", + "by", + "globby", + "gm", + "gmll", + "-spreadsheet", + [2, 1885, 2208], + "apis", + "googleapis", + "got", + "government-letter-web3-till", + "govuk-frontend", + "graceful-fs", + "gradually-current-chief", + "graph-these", + "graph", + [2, 25849, 25854], + "graphql", + "leaflet-gesture-handling", + "graphql-tag", + [3, 2222, 9], + "ools", + [2, 2223, 2224], + "gray-matter", + "grpc", + "grunt", + "-templates", + [2, 2166, 2229], + [2, 2228, 2230], + "grunt-a", + "uto-release", + [2, 2232, 2233], + "grunt-", + [2, 2235, 1389], + "grunt-b", + "animejs", + "grunt-bump", + "grunt-cli", + "grunt-c", + "oncurrent", + [2, 2241, 2242], + [3, 2243, 9], + [2, 26107, 26938], + "trib-clean", + [2, 2244, 2246], + [3, 2247, 15], + "ompass", + [2, 2248, 2249], + [3, 2250, 16], + "ncat", + [2, 2251, 2252], + [3, 2253, 17], + "nect", + [2, 2254, 2255], + "py", + [2, 2251, 2257], + "sslint", + [2, 2248, 2259], + [3, 2260, 17], + "min", + [2, 2261, 2262], + [3, 2247, 14], + "htmlmin", + [2, 2264, 2265], + "imagemin", + [2, 2264, 2267], + [3, 2268, 15], + "nternal", + [2, 2269, 2270], + "jshint", + [2, 2264, 2272], + [2, 2264, 695], + "unit", + "nodeunit", + [2, 2264, 2276], + "sass", + [2, 2264, 2278], + "uglify", + [2, 2264, 2280], + "watch", + [2, 2264, 2282], + "ventional-changelog", + [2, 2244, 2284], + [3, 2285, 19], + "github-", + "releaser", + [2, 2287, 2288], + [2, 2286, 2289], + [2, 2235, 1177], + "jscs", + "grunt-jscs", + "grunt-js", + "doc", + "grunt-jsdoc", + "karma", + "grunt-karma", + "mocha-test", + [2, 2235, 2299], + "newer", + "grunt-newer", + "grunt-n", + "otify", + [2, 2303, 2304], + "pm", + "grunt-npm", + "grunt-sass", + "grunt-sa", + "ucelabs", + [2, 2309, 2310], + "grunt-s", + "augment", + "grunt-shell", + "imple-mocha", + [2, 2312, 2315], + "pritesmith", + [2, 2312, 2317], + "usemin", + [2, 2235, 2319], + "gts", + "guarapi", + "gulp", + [3, 2229, 9], + "cache", + [2, 2324, 2325], + [2, 2169, 2326], + "gulp-a", + "tom-electron", + [2, 2328, 2329], + "utoprefixer", + [2, 2328, 2331], + "wspublish", + [2, 2328, 2333], + "zure-storage", + [2, 2328, 2335], + "gulp-", + "gulp-babel", + "gulp-b", + "vir", + "gulp-bom", + [1, 2343, 2349], + [0, 4796, 4797, 4798, 4799], + "gulp-bower", + "rowserify", + [2, 2339, 2345], + "uffer", + "gulp-buffer", + [0, 2358, 2380, 2388, 2399], + "augment-vir", + "gulp-bump", + "gulp-cache", + "d", + "gulp-cached", + "gulp-c", + "hanged", + [2, 2355, 2356], + [0, 1673, 4484, 4809, 1461, 3744, 4804, 1282, 4805, 4806, 3028, 3911, 4812, 2609, 3849, 4023, 4808], + "gulp-clean", + "-css", + [2, 2359, 2360], + "@flmngr/flmngr-react", + "gulp-coffee", + "gulp-co", + "mpass", + [2, 2364, 2365], + "gulp-concat", + [2, 2367, 2360], + "gulp-con", + "flict", + [2, 2369, 2370], + [2, 2369, 2255], + "gulp-copy", + "sscomb", + [2, 2355, 2374], + "gulp-css", + [2, 2376, 671], + "nano", + [2, 2376, 2378], + [ + 0, 1499, 1797, 3135, 1429, 2070, 695, 2278, 1983, 1437, 2675, 4868, 2297, 2899, 89, 3875, 4193, 4747, 1843, + 1177, 1209, 3220, 3984, 4135, 4487, 4568, 1448, 1651, 668, 3561, 4474, 2924, 1169, 1457, 1859, 2151, 2720, 3183, + 3416, 1894, 4952, 4473, 4955, 4860, 2025, 4919, 3758, 4929, 3817, 3824, 4939, 4320, 4469, 4873, 1175, 1628, + 4937, 4941, 91, 53, 4856, 4865, 4874, 2900, 2990, 3105, 4925, 3876, 4869, 4880, 4892, 1165, 1178, 1195, 3008, + 3090, 3564, 3696, 3884, 4307, 4705, 692, 4855, 4863, 4870, 2925, 4931, 4891, 1257, 3613, 3618, 4940, 4330, 192, + 4864, 4866, 4907, 3816, 4934, 606, 4883, 4890, 1264, 4909, 4917, 3734, 3885, 4824, 4831, 4852, 4859, 4923, 4835, + 4884, 1268, 3107, 4681, 4840, 4875, 1959, 1978, 2923, 3904, 4820, 4827, 1030, 4895, 1272, 4913, 1938, 4817, + 4842, 1208, 4916, 2881, 1566, 32965, 1895, 1947, 1948, 2921, 4815, 4872, 4887, 1845, 3810, 3820, 4822, 4851, + 4912, 4922, 3591, 4829, 1011, 3584, 4889, 4927, 2054, 4949, 4849, 4946, 33009, 4882, 1255, 1198, 4897, 4879, + 1009, 1426, 4899, 4903, 61, 1233, 1570, 4906 + ], + "gulp-csso", + "data", + "gulp-data", + "gulp-eslint", + "include", + [2, 2093, 2385], + [2, 2337, 2386], + [0, 4957, 4959, 3286, 4627, 4960, 89, 4962, 4963, 4964, 4967], + "ter", + "gulp-filter", + "gulp-f", + "latmap", + [2, 2391, 2392], + [3, 2393, 9], + "ten", + [2, 2394, 2395], + "ormat-md", + [2, 2391, 2397], + 1772064000000, + "gulp-ftp", + [2, 2337, 2193], + [1, 2343, 2418], + "it", + "gulp-git", + "gulp-gzip", + [2, 2337, 2036], + "gulp-h", + "eader", + "gulp-header", + "tml-replace", + [2, 2407, 2410], + [3, 2411, 9], + [2, 2412, 2262], + "font", + "iconfont", + [2, 2337, 2415], + "gulp-i", + [0, 2431, 0, 2442, 2443], + "gulp-if", + "gnore", + "gulp-ignore", + "mage-resize", + [2, 2417, 2422], + [3, 2423, 10], + [2, 2424, 2262], + "nclude", + [2, 2417, 2426], + "gulp-in", + "ject", + "gulp-inject", + [0, 1091, 4094, 3530, 4227, 1092, 2858], + "line-css", + [2, 2428, 2432], + "stall", + [2, 2428, 2434], + [2, 2417, 1207], + "jade", + "gulp-jade", + "gulp-ja", + "smine", + [2, 2439, 2440], + [0, 4973, 4976, 1098, 364, 4977, 4978], + 1771804800000, + "gulp-jscs", + "gulp-js", + "hint", + "gulp-jshint", + "on-editor", + [2, 2445, 2448], + "gulp-less", + "gulp-l", + "ivereload", + [2, 2451, 2452], + "oad-plugins", + [2, 2451, 2454], + "mini", + [1, 2343, 2470], + "minify-css", + [2, 2337, 2458], + [3, 2459, 12], + [2, 2460, 1936], + "gulp-m", + "gulp-mocha", + "gulp-newer", + "gulp-n", + "g-annotate", + [2, 2465, 2466], + "odemon", + [2, 2465, 2468], + [0, 2471, 0, 2483, 34352], + [0, 3467, 4094, 2858, 3090, 4], + "gulp-notify", + "extra", + "extras", + [2, 1186, 2474], + [2, 2337, 2475], + "gulp-plu", + "mber", + [2, 2477, 2478], + "gulp-p", + "ostcss", + [2, 2480, 2481], + [0, 4973, 4976, 1098, 4986, 4988, 4977, 4989, 6, 4978, 1283, 4991], + "ocess", + "reprocess", + [2, 2480, 2485], + 1770508800000, + [1, 2343, 2497], + "gulp-prompt", + [2, 2337, 89], + "gulp-re", + "mote-src", + [2, 2491, 2492], + "gulp-rename", + "place", + [2, 2491, 2495], + [0, 2513, 0, 2514, 2523], + "gulp-rev", + "-replace", + [2, 2498, 2499], + "gulp-r", + "uby-sass", + [2, 2501, 2502], + "gulp-sass", + "gulp-s", + "gulp-sftp", + "gulp-shell", + "gulp-size", + "ourcemaps", + [2, 2505, 2509], + "trip-debug", + [2, 2505, 2511], + [0, 4484], + [0], + "gulp-stylus", + "vg-sprite", + [2, 2505, 2516], + "gulp-svg", + "gulp-svgmin", + [2, 2518, 1542], + [2, 2337, 1283], + "gulp-t", + 1771113600000, + "gulp-tsb", + "gulp-ts", + [2, 2525, 671], + "cript", + "ypescript", + [2, 2522, 2528], + "gulp-uglify", + [1, 2343, 2532], + [0, 2534, 0, 2535, 2537], + "gulp-uncss", + [0, 4484, 3493], + [0, 1098, 12, 4627, 5001, 837], + "gulp-usemin", + 1771718400000, + "ref", + "gulp-useref", + [1, 2343, 2561], + "gulp-util", + "vinyl-zip", + [2, 2337, 2542], + "gulp-watch", + "gulp-w", + "ebpack", + [2, 2545, 2546], + "gulp-web", + [2, 2548, 36], + "gulp-zip", + ".spritesmith", + [2, 2323, 2551], + "gzip-size", + "hallmark", + "hammerjs", + "hapi", + [2, 5323, 33498], + [2, 5340, 6374], + "happy-dom", + "happy-", + [0, 2513, 0, 2514, 2537], + "happy-meant", + "hard-cool-rhythm-continued", + "has-flag", + "has-", + "parts-ice-fact", + [2, 2565, 2566], + "symbols", + "has-symbols", + "hash-sum", + "hasown", + "hast-util-raw", + [3, 2572, 10], + "sanitize", + [2, 2573, 2574], + [3, 2575, 11], + [2, 2576, 1799], + "to-estree", + [2, 2573, 2578], + [3, 2579, 13], + [2, 2580, 1936], + "jsx-runtime", + [2, 2580, 2582], + [2, 2580, 1871], + "text", + [2, 2580, 2585], + "hast", + "hastscript", + "hay-against-any-hurry", + "hbs", + "he", + "heapdump", + "helmet", + "heroicons", + "hexlet-pairs", + "hexo", + "highland", + "highl", + "ight.js", + [2, 2598, 2599], + "hiredis", + "history", + "history-", + "brass-sound", + [2, 2603, 2604], + "hit-running-special8", + "hoek", + "hogan.js", + "hoist-non-react-statics", + "homebridge", + "hono", + "hope-slight-walk1", + "hosted-git-info", + "how-to-npm", + "-dom-parser", + [2, 1936, 2615], + "html-", + "attributes", + [2, 1818, 2618], + [2, 2617, 2619], + "html-e", + "ncoding-sniffer", + [2, 2621, 2622], + "html-en", + "tities", + [2, 2624, 2625], + "scaper", + [2, 2621, 2627], + "html-loader", + [1, 2343, 2647], + "ier", + "minifier", + [2, 2617, 2632], + "-terser", + [2, 2633, 2634], + "pdf", + "html-pdf", + [2, 1246, 57], + [2, 2617, 2638], + "tags", + "html-tags", + "html-t", + "o-image", + [2, 2642, 2643], + "html-to-", + [2, 2645, 2585], + [0, 2648, 2667, 2684, 2537], + [0, 4484, 4747, 4135, 1457, 53, 3951, 1573, 5012], + "validate", + [2, 2617, 2649], + [2, 2617, 1464], + "htmlnano", + "parser2", + "htmlparser2", + "http-", + "errors", + "http-errors", + "proxy", + "http-proxy", + "-agent", + [2, 2659, 2660], + [3, 2661, 11], + "middleware", + [2, 2662, 2663], + [2, 2655, 36], + "http-s", + [0, 91], + "http-status", + "-codes", + [2, 2668, 2669], + "https", + "xy-agent", + [2, 1452, 2672], + [2, 2671, 2673], + "husky", + "hyperquest", + "hyphenate-style-name", + "i", + "i18n", + "ext", + "i18next", + "-gridly-backend", + [2, 2681, 2682], + [0, 1098, 4643], + "iconv-lite", + "identity-obj-proxy", + "ignore", + [1, 2343, 2690], + "image-size", + [0, 2691, 0, 2514, 2443], + [0, 4484, 26364], + "imagemagick", + "-pngquant", + [2, 2267, 2693], + "imap", + "immer", + "immutability-helper", + [1, 2343, 2705], + "le", + "immutable", + "import-", + [2, 2701, 2145], + "local", + [2, 2701, 2703], + [0, 2513, 0, 2736, 34352], + "ess", + "impress", + "in-publish", + "indent-string", + "inert", + "inferno", + "inflection", + "inherits", + "ini", + "iniparser", + "ink", + "-style-parser", + [2, 134, 2717], + "innosetup-compiler", + "inquirer", + "-autocomplete-prompt", + [2, 2720, 2721], + "inside-throw", + "insta", + "gram-node", + [2, 2724, 2725], + "interpret", + "intl", + "-tel-input", + [2, 2728, 2729], + "invariant", + "inversify", + "ionic", + [2, 34017, 34020], + "ionicons", + [0, 1098, 29, 5027, 4963], + [1, 2343, 2773], + "ioredis", + "ip", + "irc", + "is", + "is-ci", + "is-glob", + "is-installed-globally", + "is-plain-obj", + "ect", + [2, 2745, 2746], + "is-p", + "otential-custom-element-name", + [2, 2748, 2749], + "romise", + "is-promise", + "is-stream", + "is-url", + "is-wsl", + "isarray", + "isobject", + "isomorphic-fetch", + "istanbul", + "itwcw-package-analytics", + "iview", + "jackspeak", + "jake", + "jarallax", + "jasmine", + [2, 2765, 1732], + "jasmine-", + [2, 2767, 202], + "jest-", + "canvas-mock", + [2, 2769, 2770], + "jest-c", + [0, 2513, 0, 2514, 2487], + "jest-cli", + [1, 2343, 2776], + [0, 2789, 0, 2514, 2537], + "jest-diff", + "ronment-jsdom", + [2, 1840, 2778], + [2, 2769, 2779], + "-fourteen", + [2, 2780, 2781], + [3, 2780, 17], + [2, 2783, 202], + "jest-e", + "xtended", + [2, 2785, 2786], + "html-re", + [0, 5038, 4484], + "porters", + [2, 2788, 2790], + [2, 2769, 2791], + "junit", + "jest-junit", + "pnp-resolver", + [2, 2769, 2795], + [2, 2769, 814], + "jest-util", + [1, 2343, 2803], + "-typeahead", + [2, 2282, 2800], + [2, 2769, 2801], + [0, 2513, 2804, 2815, 2399], + [0, 2734], + "jest-worker", + "jimp", + "jiti", + "jodit", + "-react", + "jodit-react", + "johnny-five", + "joi", + "jotai", + "jquery", + [0, 1098, 38], + "jquery-ui", + "js-base64", + [1, 2343, 2819], + [0, 2830, 2836, 2837, 2523], + "js-beautify", + "js-cookie", + "js-yaml", + "jsarch", + "jscpd", + "-api", + "jsdoc-api", + "jsdoc-", + "to-markdown", + [2, 2827, 2828], + [0, 1673, 3789, 1461, 1282, 5060, 5071, 6476, 5057, 5059, 5062, 5065, 5049, 5050, 5069, 5047], + "m", + "jsdom", + "-no-contextify", + [2, 2832, 2833], + "jsesc", + [ + 0, 1114, 2070, 1192, 89, 1177, 4487, 5098, 4468, 3213, 1610, 5102, 3824, 1193, 5100, 3697, 3846, 91, 53, 5087, + 2990, 5125, 4880, 1178, 1540, 3857, 97, 5123, 5076, 5090, 5091, 5094, 5108, 5113, 3904, 5106, 5121, 5097, 5084, + 6498, 3810, 5115, 5082, 1011, 971, 5110, 5085, 5075, 5118, 5103, 5079 + ], + [0, 5127, 4964, 89, 5128, 4627, 4963, 181, 5130, 4967, 5131, 5133], + "-stylish", + [2, 2272, 2838], + [1, 2343, 2868], + "json-2-csv", + "json-", + "json-loader", + [3, 6, 6], + "json-schema", + "json-s", + "erver", + "json-server", + "-stringify", + [2, 176, 2849], + [2, 2846, 2850], + "json-st", + "ringify-safe", + [2, 2852, 2853], + "5", + "json5", + "c-parser", + [2, 1781, 2857], + "jsonfile", + "jsonschema", + "JSONStream", + "webtoken", + [2, 1781, 2862], + "jspm", + "jstates", + "jszip", + "jwt-decode", + [0, 2884, 2901, 2938, 2537], + "simple", + "jwt-simple", + [2, 2297, 1617], + [3, 2871, 13], + "stack", + "-launcher", + [2, 2873, 2874], + [2, 2872, 2875], + "karma-", + "karma-chai", + "karma-ch", + "rome-launcher", + [2, 2879, 2880], + "karma-c", + "over", + [0, 3021], + "overage", + [2, 2882, 2885], + "browsers", + [2, 1708, 2887], + [2, 2877, 2888], + "edge-launcher", + [2, 2877, 2890], + "fire", + "fox-launcher", + [2, 2892, 2893], + [2, 2877, 2894], + "ie-launcher", + [2, 2877, 2896], + [2, 2877, 2765], + "mocha", + "karma-mocha", + [0, 1114, 89, 2079, 3824, 91, 4880, 5139, 4883], + "orter", + "-reporter", + [2, 2900, 2903], + "phantomjs-launcher", + [2, 2877, 2905], + "qunit", + "karma-qunit", + "rollup-preprocessor", + [2, 2877, 2909], + "safari-launcher", + [2, 2877, 2911], + "karma-sa", + "uce-launcher", + [2, 2913, 2914], + "karma-s", + "inon", + "karma-sinon", + "ourcemap", + [2, 2919, 2091], + [2, 2916, 2920], + "pec-reporter", + [2, 2916, 2922], + "webpack", + [2, 2877, 2924], + "keycode", + "keypress", + "keyv", + "kleur", + "knex", + "knip", + "known-css-properties", + "knox", + "koa", + "koa-body", + [2, 2935, 57], + "koa-", + [0, 5127, 4964, 4653, 1114, 4627, 4963, 5130, 4967, 89, 5128, 181], + [1, 2343, 2974], + "compose", + "koa-compose", + "logger", + "koa-logger", + "mount", + "koa-mount", + [2, 2937, 38], + "static", + "koa-static", + "kue", + "label-lungs-court4", + "-perfe", + "ctly-blow-series", + [2, 2951, 2952], + [2, 1351, 2953], + "late-", + "dress-mail5", + [2, 2955, 2956], + "late", + "st-version", + [2, 2958, 2959], + "lazy.js", + "lead-alike-web3-applied", + "leaflet", + "left-pad", + "left", + "pad", + "leftpad", + "lerna", + [2, 695, 2091], + "level", + "down", + "leveldown", + "levelup", + [0, 2985, 2988, 3011, 2523], + "leven", + "libnpmdiff", + "libnpm", + "exec", + "libnpmexec", + "fund", + "libnpmfund", + "libphonenumber-js", + "liftoff", + "lilconfig", + [0, 1461, 5145, 5146], + "linkifyjs", + "lint-", + [0, 1114, 2070, 89, 2079, 3824, 91, 4880, 4883], + "staged", + "lint-staged", + "listr", + "listr2", + "lit-element", + "lite", + "-server", + "lite-server", + "live-server", + "live", + "reload", + "livereload", + "load", + "-grunt-config", + [2, 3001, 3002], + [3, 3003, 11], + "tasks", + [2, 3004, 3005], + "-utils", + [2, 1194, 3007], + "-web-server", + [2, 2703, 3009], + [0, 5127, 4964, 4653, 1114, 4627, 4963, 5130, 4967, 89, 5128, 181, 1017], + "localforage", + "tunnel", + "localtunnel", + "lock", + [1, 2343, 3017], + [0, 3075, 3100, 3104, 2537], + "file-lint", + [2, 3015, 3018], + "-es", + "lodash-es", + ".assign", + [2, 1209, 3022], + "lodash.", + [2, 3024, 1420], + "lodash.c", + "lonedeep", + [2, 3026, 3027], + [2, 3024, 1675], + [3, 3029, 9], + "faults", + [2, 3030, 3031], + "flatten", + [2, 3024, 3033], + "lodash.f", + "oreach", + [2, 3035, 3036], + "get", + "lodash.get", + "isempty", + [2, 3024, 3040], + [3, 3041, 10], + "qual", + [2, 3042, 3043], + [3, 3041, 9], + "function", + [2, 3045, 3046], + "object", + [2, 3045, 3048], + "plainobject", + [2, 3045, 3050], + [2, 3045, 1871], + "map", + "lodash.map", + "lodash.m", + "emoize", + [2, 3055, 3056], + [3, 3057, 9], + "rge", + [2, 3058, 3059], + "omit", + "lodash.omit", + "pick", + "lodash.pick", + "set", + "lodash.set", + [2, 3024, 1283], + "lodash.t", + "hrottle", + [2, 3068, 3069], + "uniq", + "lodash.uniq", + "log", + "log-symbols", + [0, 5154, 5152], + "update", + "log-update", + "log4js", + "loglevel", + "long", + "loopback", + "loose-envify", + "lowdb", + "lru-cache", + "lucide", + "luck-rubber-do", + "lwip", + "lws", + "madwizard", + "magic-string", + "magmastream", + "main-bower-files", + "make-dir", + "make-", + "make-node", + "mammoth", + "manifest", + "mantine-contextmenu", + "many-favorite6", + [0, 4484, 3709, 4508, 4355, 838, 5160, 5159, 4514, 5162, 840], + "stream", + "map-stream", + "mapboxgl-legend", + [0, 5165, 5166, 2038, 5167, 3424, 5168, 5170, 3709], + "markdown-it", + "-anchor", + [2, 3105, 3106], + [3, 3107, 12], + "cont", + [1, 2343, 3168], + "container", + [2, 3108, 3111], + "emoji", + [2, 3108, 3113], + [3, 3105, 9], + [2, 3115, 2636], + [2, 3115, 176], + [3, 3117, 10], + "o-jsx", + [2, 3118, 3119], + [3, 3120, 11], + "c", + [2, 3121, 3122], + [2, 1783, 671], + [2, 3124, 20], + "mark", + "marked", + "y-markdown", + [2, 3126, 3128], + "matcha", + [3, 558, 9], + [2, 3131, 181], + "mathjs", + "matter-view-web3-fence", + "md5", + "md5-file", + "mdast-util-from-markdown", + [3, 3137, 11], + "to-hast", + [2, 3138, 3139], + "mdn-data", + "mdxts", + "memcached", + "memfs", + "memoize-one", + "memo", + "ry-cache", + [2, 3146, 3147], + "memory-", + "memory-fs", + "memory", + [2, 3151, 3101], + "memwatch", + "menta", + "l-oxygen-dozen", + [2, 3154, 3155], + "meow", + "merge-", + [2, 3158, 3101], + "metalsmith", + "meteor", + "method-override", + "method", + "methods", + "microbundle", + "micro", + "micromark", + [0, 3169, 3179, 3182, 2537], + [0, 2070, 4207, 3093, 1525, 1573, 5175, 5180], + "micromatch", + "mime", + "-types", + "mime-types", + "min-heap-typed", + "-extract-plugin", + [2, 2360, 3175], + [2, 2456, 3176], + "minify", + [0, 4135, 53, 4865, 5185, 5191], + "atch", + "minimatch", + [0, 5193, 1172, 5194, 5197, 5198, 1173, 4643], + "minimist", + "-jet-printed-supper", + [2, 1504, 3184], + "missing-sport-living", + "mkcert", + "mkdirp", + "mlly", + "mobx", + "mobx-react", + "mocha-", + "head", + "less-", + "chrome", + "less-chrome", + [2, 3193, 3196], + [2, 3192, 3197], + [2, 2793, 2903], + [2, 3192, 3199], + "lcov-reporter", + [2, 3192, 3201], + "mock-fs", + "mock-", + "property", + [2, 3204, 3205], + [1, 2343, 3208], + [0, 3214, 3217, 2514, 2537], + "require", + [2, 3204, 3209], + "mock-stdin", + "mock", + "mockdate", + [0, 9673, 3527, 5279], + "mockery", + "mockjs", + [0, 5282, 4294, 5210], + [2, 3224, 3225], + "moleculer", + "moment", + "-timezone", + [2, 3220, 3221], + "monaco-yaml", + [3, 5838, 28], + "xp-modifiers", + "monads-io", + "ress", + "-express", + [2, 1550, 3228], + "mongodb", + "ose", + "mongoose", + "monitor", + "-dashboard", + [2, 3233, 3234], + "monk", + "morgan", + "motor-positive-spirit", + "move-wolf-throughout", + "movie-obtain-tail-prepare", + "mqtt", + "ms", + "mssql", + "msw", + "mud-slowly-five3", + "multer", + [1, 2343, 3248], + [0, 3252, 3269, 3272, 2537], + "multimatch", + "multi", + "part", + [0, 1676, 2856, 4135, 5233, 104, 58, 5228, 5230, 101, 5216, 51, 1573, 31292, 5226, 5222], + "multiparty", + "multip", + "le-cucumber-html-reporter", + [2, 3254, 3255], + "mustache", + "muuri", + "mysql", + "mysql2", + "mz", + "nails-wild-interest-garden", + "nan", + "nano-css", + "id", + "nanoid", + "-keymap", + [2, 970, 3267], + [0, 4494, 4039, 4474, 5245, 5254, 5251, 87, 92, 5235, 5180, 5244, 5240, 5241, 5191], + "nativefier", + [2, 970, 1508], + [0, 5193, 1172, 5256, 5257, 5194, 5258, 5259, 5260, 5197, 5198, 5261, 1175, 4643], + "natural", + "nconf", + "ncp", + "near-social-bridge", + "nedb", + "needle", + [1, 2343, 3280], + [0, 0, 3293, 2514, 2523], + "-commander", + [2, 678, 3281], + "newman", + "newrelic", + "next-auth", + "next", + "nextjs", + "ng-mocks", + "ng-zorro-antd", + "ngrok", + "nib", + "nightmare", + [0, 53], + "nightwatch", + "nine-yes-merely6", + "nise", + "nock", + "addon-api", + [2, 813, 3298], + "node-cache", + "node-c", + "ontainerpattern", + [2, 3301, 3302], + "dev", + "node-dev", + "node-d", + [1, 2343, 3311], + "node-dir", + "node-emoji", + "node-fetch", + [0, 3328, 3338, 3398, 2523], + "orge", + "node-forge", + "node-g", + "toolchain", + "node-gcm", + "eocoder", + [2, 3314, 3317], + "JSONC", + "arser", + "html-parser", + [2, 813, 3321], + "inspector", + [2, 813, 3323], + "JSX", + "mocks-http", + [2, 813, 3326], + [0, 104], + "notifier", + [2, 813, 3329], + "oauth2-server", + [2, 813, 3331], + "powertools", + [2, 813, 3333], + "node-p", + "re-gyp", + [2, 3335, 3336], + [0, 5282, 51, 5274, 5276, 5279, 5273], + "node-pty", + "node-re", + "node-red", + "node-sass", + "node-s", + "chedule", + [2, 3343, 3344], + "tatic", + "node-static", + "uuid", + "node-uuid", + "node-watch", + "node-w", + "indows", + [2, 3351, 3352], + "xlsx", + "node-xlsx", + ".extend", + [2, 202, 3356], + "git", + "nodegit", + "mailer", + "nodemailer", + "TSX", + "nodemon", + "webkit", + "nodewebkit", + "nolangjs", + "nomnom", + "nopt", + "normalize-path", + [3, 3369, 10], + [2, 3370, 1002], + "wheel", + [2, 3370, 3372], + [3, 3369, 9], + ".css", + [2, 3374, 3375], + "np", + "npm", + "npm-check", + "-updates", + [2, 3379, 3380], + "npm-", + "package", + "GraphQL", + "package-arg", + [2, 3382, 3385], + [3, 3386, 12], + [3, 4786, 24], + "json-lint", + [2, 3387, 3389], + "npm-pack", + "list", + [2, 3391, 3392], + "regist", + "ry-fetch", + [2, 3394, 3395], + [2, 3382, 3396], + [0, 1172, 5284, 57, 5285, 5286, 58], + "mc-scripts", + "npm-run-all", + [2, 3400, 1276], + "npm-run-", + "path", + [2, 3402, 3403], + [2, 556, 11398, 3902, 591], + "npm-to-yarn", + "windows-upgrade", + [2, 3382, 3407], + "npmcli", + "npmignore", + "npmlog", + "nprogress", + "nsp", + "nuke-cli", + "numeral", + "nunjucks", + "nvm", + "nvmrc", + "nwsapi", + "nx", + "nyc", + "oas", + "oas-normalize", + "oauth", + [3, 77, 7], + "assign", + [2, 3425, 3426], + "hash", + "object-hash", + "inspect", + [2, 3425, 3430], + "keys", + "object-keys", + "object-path", + [2, 3048, 3022], + "object.", + "entries", + [2, 3436, 3437], + "observe-food-motion-hidden", + "on-finished", + "once", + "onchange", + "one-how-hand", + "onoff", + "open", + "open-cli", + "api-c", + [1, 2343, 3454], + "lient-axios", + [2, 3447, 3449], + [2, 3445, 3450], + "openapi", + [2, 3452, 1712], + [0, 3457, 3464, 3465, 2537], + "opencv", + "opener", + [0, 5292, 56], + "openweather", + "opn", + "optimist", + "optimi", + "ze-css-assets-webpack-plugin", + [2, 3461, 3462], + [0, 53, 5295], + [0, 5297], + "optionator", + "ora", + "orchestrator", + "orm", + "osenv", + "outdent", + "outline-slowly", + "overlay", + "scrollbars", + [2, 3473, 3474], + "ovsx", + "p-event", + "p-map", + "p-queue", + "p-timeout", + "p23", + "pa11y", + "pacote", + "pageres", + "paintor", + "pako", + "para", + "para-cli", + "ent-js", + [2, 3488, 3489], + "llelshell", + [2, 3487, 3491], + "parse5", + "parseurl", + "passport", + [3, 1433, 9], + "facebook", + [2, 3496, 3497], + [2, 3496, 2703], + [2, 3496, 3424], + [2, 3500, 1276], + [2, 3403, 1617], + "path-", + "exists", + "path-exists", + "is-absolute", + [2, 3503, 3506], + "to-regexp", + [2, 3503, 3508], + "pathe", + "paypal-server-api", + "pdfjs", + "pdfkit", + "perf", + [1, 2343, 3516], + [0, 3538, 3546, 3581, 2523], + "ormance-now", + [2, 3514, 3517], + "pg", + "phantom", + [3, 2905, 9], + [3, 2905, 10], + "prebuilt", + [2, 3522, 3523], + "phonegap", + "pi-gpio", + "picocolors", + "pico", + "match", + "picomatch", + "pie-case-nor-great", + "pify", + "pino", + "pinst", + "pitch-somehow-earth-brave", + "pixelmatch", + "pkg-dir", + [ + 0, 5302, 1676, 2929, 5303, 4135, 2822, 4213, 1457, 18089, 2098, 5305, 3183, 3416, 3692, 5306, 3530, 27921, 2226, + 3105, 5312, 5314, 5319, 27482, 5320, 5321, 27512, 5323, 5328, 27513, 27514, 2557, 5332, 2558 + ], + "pkg-up", + "pkginfo", + "playwright", + "plugin-e", + "rror", + [2, 3542, 3543], + "plur", + [ + 0, 1414, 1166, 4494, 188, 4763, 2278, 89, 1177, 3127, 3721, 4039, 2203, 1894, 3824, 442, 91, 5307, 4874, 29549, + 27521, 19181, 5944, 9245, 30864, 3114, 27517, 27519, 5337, 25652, 1895, 27518, 30114, 5344 + ], + "pluralize", + "pm2", + "pngjs", + "pnp-", + [2, 3550, 1464], + "pnpm", + "pnpx", + "poe-api-manager", + "polished", + "poli", + "tical-plan-careful", + [2, 3556, 3557], + "popper.js", + "portfinder", + "postcss", + [3, 214, 8], + "calc", + [2, 3562, 3563], + [3, 3564, 9], + "postcss-cli", + "al-notation", + [2, 3046, 3567], + [2, 866, 3568], + [2, 3565, 3569], + [3, 3570, 13], + [2, 3571, 2262], + [3, 3570, 10], + "nvert-values", + [2, 3573, 3574], + "ssnext", + [2, 3565, 3576], + "ustom-media", + [2, 3565, 3578], + [3, 3579, 15], + [0, 5347, 5348, 5349, 1745, 5351, 5352, 5353, 5354, 1179, 5130, 1820, 5355, 1936, 1783, 5356, 3416], + "ies", + "properties", + [2, 3580, 3583], + [3, 219, 8], + "selectors", + [2, 3580, 3586], + "disc", + "ard-comments", + [2, 3588, 3589], + [2, 3562, 3590], + [3, 3591, 16], + [1, 2343, 3594], + [0, 0, 3596, 3601, 2537], + "es", + [0, 5517, 11976, 811, 816, 10615, 10817, 5366, 5364, 5087, 4874, 1317, 1413, 1192, 4042, 4057, 4468, 4484, 91], + "duplicates", + [2, 3592, 3597], + "empty", + [2, 3592, 3599], + [0, 1623, 57, 5374, 5376, 6892, 91, 31130, 31139, 31177, 3178, 1671, 7121], + "overridden", + [2, 3592, 3602], + "flexbugs-fixes", + [2, 3562, 3604], + [2, 3562, 1936], + [3, 214, 9], + "mage-", + "set-function", + [2, 3608, 3609], + [2, 3607, 3610], + [3, 3611, 10], + [2, 3612, 1709], + "load-", + "load-config", + [2, 3562, 3615], + [3, 3616, 12], + [2, 3617, 1524], + "hand", + "longhand", + [2, 3158, 3620], + [2, 3562, 3621], + [3, 3622, 14], + "rules", + [2, 3623, 3624], + [3, 3622, 9], + "inify-font-values", + [2, 3626, 3627], + [3, 3628, 15], + "grad", + [1, 2343, 3645], + "gradients", + [2, 3629, 3632], + "params", + [2, 3629, 3634], + [2, 3629, 3586], + "odules-local-by-default", + [2, 3626, 3637], + "nested", + [2, 3562, 3639], + [3, 3640, 12], + "ing", + [2, 3641, 3642], + [3, 3640, 9], + [0, 3654, 3655, 3690, 2537], + "ormalize", + [2, 3644, 3646], + "-charset", + [2, 3647, 3648], + [3, 3649, 18], + "positions", + [2, 3650, 3651], + [2, 3650, 1871], + [ + 0, 5381, 5383, 5387, 5391, 5393, 5394, 5397, 5400, 5402, 5405, 5408, 5411, 5414, 5416, 5419, 5423, 5425, 5430, + 5436, 2993, 5438 + ], + [ + 0, 5441, 5446, 5450, 5452, 5453, 5456, 5458, 5461, 5464, 192, 5467, 5470, 5473, 5474, 5476, 5478, 1177, 1895, + 2675, 2990, 4193, 91, 5480 + ], + "unicode", + [2, 3650, 3656], + [3, 3657, 19], + "rl", + [2, 3658, 3659], + "whitespace", + [2, 3650, 3661], + "ordered-values", + [2, 3562, 3663], + "prefix", + "-selector", + [2, 3665, 3666], + [2, 3562, 3667], + [3, 3668, 11], + "set-", + "set-env", + [2, 3669, 3671], + "reduce-initial", + [2, 3562, 3673], + "safe-parser", + [2, 3562, 3675], + [3, 3676, 9], + [2, 3677, 1623], + "or-parser", + [2, 1799, 3679], + [2, 3677, 3680], + "vgo", + [2, 3677, 3682], + "ue-selectors", + [2, 3071, 3684], + [2, 3562, 3685], + "value-parser", + [2, 3562, 3687], + "post", + [0, 5483, 1117, 1745, 5484], + "postgrejs", + "posthtml", + "pouchdb", + "power", + "-assert", + [2, 3694, 3695], + "pre-commit", + "preact", + "prepare-package", + "-plu", + "gin-jsdoc", + [2, 3700, 3701], + [2, 1894, 3702], + [3, 3703, 16], + "organize-imports", + [2, 3704, 3705], + "packagejson", + [2, 3704, 3707], + "svelte", + [2, 3704, 3709], + "prettierrc", + "prett", + "y-bytes", + [2, 3712, 3713], + "pretty-", + [2, 3715, 1851], + [2, 3715, 1671], + "pretty-ms", + "quick", + [2, 3715, 3719], + "pretty", + "prettyjson", + [1, 2343, 3728], + "prisma", + "prismjs", + "private-bower", + "proc-log", + [0, 3740, 0, 3748, 34352], + "process", + [3, 217, 8], + "-bar-webpack-plugin", + [2, 3730, 3731], + "-polyfill", + [2, 1862, 3733], + "s-aplus-tests", + [2, 1862, 3735], + "prom", + "o-server", + [2, 3737, 3738], + [0, 5497, 5498, 5502, 5504, 2222, 5506, 4484], + "prompt", + "prompts", + "prop", + "prop-types", + "-information", + [2, 3205, 3745], + "protobufjs", + [0, 5575, 2220, 89, 582, 5576, 2325], + [2, 38087, 27470], + "protractor", + "quire", + "proxyquire", + "publish-please", + "pug", + "pull-stream", + "pump", + "punycode", + "puppeteer", + "purgecss", + "q", + "qr-image", + "qrcode-terminal", + "qs", + "query-", + [2, 3764, 1871], + "query", + "querystring", + "queue", + "-typed", + "queue-typed", + "quill", + "-dom", + "qunit-dom", + "qunitjs", + "raf", + "ramda", + "random-words", + "random", + "randombytes", + [2, 3778, 1871], + "range-parser", + [1, 2343, 3785], + "raven", + "raw-body", + [0, 3796, 3806, 3823, 2487], + "raw-loader", + "rc-slider", + "rc-tooltip", + "rc-util", + "rcw-plugin", + "react-a", + "ddons-css-transition-group", + [2, 3791, 3792], + [3, 3793, 13], + "shallow-", + [0, 89, 4042, 3744, 53, 5582, 87, 4232, 90, 5583, 5589], + "compare", + [2, 3795, 3797], + [2, 3794, 3798], + "react-ap", + "ollo", + [2, 3800, 3801], + [2, 1897, 3733], + [2, 1246, 1367], + "react-c", + [0, 1192, 1177, 4468, 1610, 91, 5087, 4880, 2829, 1959, 1969, 1966], + "react-color", + "react-co", + "py-to-clipboard", + [2, 3808, 3809], + "picker", + "datepicker", + [2, 1246, 3812], + "react-d", + "ev-utils", + [2, 3814, 3815], + "react-dnd", + "5-backend", + [2, 1868, 3818], + [2, 3817, 3819], + "ocgen", + [2, 3814, 3821], + [0, 5593, 1745, 1179, 89, 4978, 1283], + "react-dom", + "ropzone", + [2, 3814, 3825], + "error-", + [2, 3827, 3473], + [2, 1246, 3828], + [2, 1246, 2593], + "react-h", + "ook-form", + [2, 3831, 3832], + "react-ho", + "t-loader", + [2, 3834, 3835], + [2, 1246, 2681], + "react-i", + "react-icons", + "nter", + "section-observer", + [2, 3840, 3841], + [2, 3838, 3842], + [1, 2343, 3851], + [2, 28573, 26849], + "react-intl", + "react-is", + "lifecycles-compat", + [2, 1246, 3848], + [2, 1246, 1783], + [0, 3859, 3873, 2514, 2399], + "odal", + "react-modal", + "react-mo", + "tion", + [2, 3854, 3855], + [2, 1246, 970], + "-key", + [0, 4135, 1996, 5598], + "-keychain", + [2, 3857, 3860], + [3, 3861, 13], + "vector-icons", + [2, 3862, 3863], + "react-n", + "umber-format", + [2, 3865, 3866], + "onclickoutside", + [2, 1246, 3868], + "react-p", + "roperty", + [2, 3870, 3871], + [0, 1680, 1177, 53, 5601, 1006, 4523, 5274, 5604], + "x", + "redux", + "react-redux", + "react-re", + [2, 3877, 2145], + [1, 2343, 3880], + [0, 3892, 3896, 3907, 2523], + "sponsive", + [2, 3877, 3881], + "react-r", + [2, 3883, 995], + [2, 3884, 3772], + [3, 3885, 13], + [2, 3886, 3875], + "scripts", + [2, 1246, 3888], + "react-s", + [2, 3890, 1799], + [0, 56, 5611, 5292], + "react-slick", + "tyleguidist", + [2, 3890, 3894], + [0, 53, 101, 5615, 5617, 5295, 5619], + "react-svg", + "tap-event-plugin", + [2, 1246, 3898], + "react-t", + "est-", + "renderer", + [2, 3901, 3902], + [2, 3900, 3903], + "oastify", + [2, 3900, 3905], + [0, 1172, 5297, 70], + [1, 2343, 3918], + "react-tools", + "ransition-group", + [2, 3900, 3910], + "virtualized", + [2, 1246, 3912], + "reactify", + "strap", + [2, 89, 3915], + "read", + [0, 3920, 3464, 3465, 2399], + "read-pkg", + [0, 56], + "read-pkg-up", + "able-stream", + [2, 3917, 3922], + "line", + "readline", + "-sync", + [2, 3925, 3926], + "recall-shut-say", + [1, 2343, 3933], + "recast", + "recently-building-save", + "rechoir", + [0, 3934, 3464, 3465, 2443], + [0, 56, 5631], + "recompose", + "recu", + "rsive-readdir", + [2, 3936, 3937], + "redoc", + "usaurus", + [2, 3939, 3940], + "-actions", + [2, 3875, 3942], + "redux-", + "redux-form", + [2, 3944, 2942], + "saga", + "redux-saga", + "thunk", + "redux-thunk", + "reflect-metadata", + [1, 2343, 3953], + [0, 3982, 3983, 3465, 2537], + "regenerate", + [3, 3954, 9], + "or-runtime", + [2, 3955, 3956], + "rehype", + "-auto", + "-headings", + [2, 163, 3960], + [2, 3959, 3961], + [2, 3958, 3962], + "rehype-", + [3, 1202, 9], + "links", + [2, 3965, 3966], + [2, 3964, 3967], + "mdx-code-props", + [2, 3964, 3969], + [2, 3964, 1644], + "raw", + "rehype-raw", + "slug", + "rehype-slug", + "rehype-s", + "tringify", + [2, 3976, 3977], + "release", + "release-it", + "remap-istanbul", + [0, 5637, 5222, 56, 5638, 5640], + [0, 53, 5295, 58], + "remark", + [2, 3984, 20], + "remark-", + "gfm", + "remark-gfm", + "remark-html", + "mermaidjs", + [2, 3986, 3990], + [2, 3986, 1644], + "remark-p", + [2, 1258, 2195], + [2, 3993, 3994], + [3, 3995, 14], + "wooorm", + [2, 3996, 3997], + [2, 3986, 3958], + "able", + "remarkable", + "replace-ext", + "replace-", + "in-file", + [2, 4003, 4004], + [1, 2343, 4011], + "-promise", + [2, 705, 4007], + "-native", + [2, 4008, 4009], + [0, 3920, 3293, 3465, 2523], + "require-all", + "require-", + "dir", + "require-dir", + [1, 2343, 4032], + "index", + [2, 3209, 4017], + "requirejs", + "rese", + "lect", + "reselect", + "resize-observer-polyfill", + "-from", + [2, 814, 4024], + "resolve-", + "url-loader", + [2, 4026, 4027], + "rest-chronicle", + "rest", + "restify", + [0, 4091, 4095, 3465, 2399], + "restler", + "ore-cursor", + [2, 4030, 4034], + "rethinkdb", + "rewire", + "rfdc", + "rimraf", + "robot", + "robotjs", + "rollup", + "rollup-p", + "lugin-babel", + [2, 4043, 4044], + [3, 4045, 15], + "uble", + [2, 4046, 4047], + [3, 4045, 14], + "clean", + "cleanup", + [2, 4049, 4051], + [3, 4052, 15], + "ommonjs", + [2, 4053, 4054], + "dts", + [2, 4049, 4056], + [2, 4049, 1781], + "license", + [2, 4049, 4059], + "builtin", + "builtins", + [2, 813, 4062], + [2, 4049, 4063], + [3, 4064, 19], + [2, 4065, 2203], + [2, 4065, 814], + "replace", + [2, 4049, 4068], + "sourcemaps", + [2, 4049, 4070], + "terser", + [2, 4049, 4072], + [3, 4073, 15], + [2, 4074, 2528], + [2, 4075, 1276], + [2, 4049, 2280], + "visualizer", + [2, 4049, 4078], + [3, 4045, 13], + [2, 4080, 594], + "route", + "routes", + "rsnext", + "rsvp", + "rtlcss", + "run-s", + "equence", + [2, 4087, 4088], + "@modern-js/utils", + [0, 4135, 56, 5652, 5656, 5658, 5660], + "run-series", + "rx", + "rxjs", + [0, 3093, 53, 5228, 97, 87, 5663, 5658, 5295], + [1, 2343, 4114], + "-compat", + "rxjs-compat", + "safe-", + "safe-buffer", + "safe-p", + "ublish-latest", + [2, 4101, 4102], + "sails", + "salt-type-oldest-faster", + "sand-have-metal6", + "-filename", + [2, 2574, 4107], + [3, 4108, 9], + [2, 4109, 1936], + "sass-loader", + "sat-local", + "sax", + [0, 4115, 4138, 2514, 4139], + [0, 1593, 3957], + "scheduler", + "-doc", + [2, 1119, 4117], + [2, 2844, 4118], + "schema-", + [2, 4120, 594], + "scien", + "ce-knowledge-truth", + [2, 4122, 4123], + "seblakhotspicy", + "secp256k1", + "seedrandom", + "sele", + "nium-webdriver", + [2, 4128, 4129], + "semantic-release", + [3, 4131, 9], + "ui-react", + [2, 4132, 4133], + "semver", + "seneca", + "sentiment", + [0, 1389, 1408, 5669, 4535], + 1772323200000, + "sequelize", + [3, 1753, 9], + "-javascript", + [2, 4141, 4142], + "serial", + "serialport", + "serve", + "-favicon", + [2, 4146, 4147], + "serve-", + "serve-index", + [2, 4149, 2947], + "-destroy", + [2, 36, 4152], + [1, 2343, 4194], + "less-finch", + [2, 36, 4155], + [3, 4156, 11], + "spy", + [2, 4157, 4158], + "sha1", + "shallow", + "equal", + [2, 4161, 4162], + "sharp", + "shell-quote", + "shell", + "shelljs", + "shinning-continued-becoming", + "shortid", + "should", + "showdown", + "shx", + "sick-typical-court7", + "signal-exit", + "simil", + "ar-cheese-loss", + [2, 4175, 4176], + "-ass", + "i-animation", + [2, 4178, 4179], + [2, 2869, 4180], + "simple-", + "simple-git", + "-web", + "-web3", + [2, 3742, 4185], + [2, 4182, 4186], + "single-spa", + "sink-mighty-orbit0", + "sink-", + "rod-lamp", + [2, 4190, 4191], + "sinon", + [0, 4197, 4198, 2514, 2537], + "-chai", + "sinon-chai", + [ + 0, 4135, 5867, 5637, 5866, 56, 5656, 5658, 5676, 5788, 5850, 5761, 5797, 5222, 5660, 5816, 5640, 5809, 5812, + 5838, 5769, 5793, 5823, 5852, 5756, 5766, 5790, 5856, 5863, 5712, 5715, 5771, 5778, 5842, 5741, 5743, 5830, + 5859, 5757, 5241, 5810, 3218, 5820, 5827, 5835, 5853, 5751, 5759, 5821, 5865, 5764, 5846, 5785, 5754, 5825, + 5862, 5782, 5700, 5749, 5806, 5832, 5818, 29299, 5800, 5813, 5678, 5685, 5694, 5690, 5776, 5688 + ], + [0, 53, 101, 5295], + "sinopia", + "sirv", + "size-limit", + "size", + [1, 2343, 4222], + "sizeitup", + "skapi-js", + "sky-buy-web3-rock", + "slash", + "slice-ansi", + "slow-deps", + "slow-", + "voice-spell-pass", + [2, 4210, 4211], + "slugify", + "small-grow-mix4", + "snake-seven-recall-interior", + "snazzy", + "soap", + "socket.io", + "-client", + [2, 4218, 4219], + "sock", + [0, 4240, 3464, 2514, 2537], + "js-client", + [2, 4221, 4223], + "source", + "-map", + "source-map", + [2, 4227, 1592], + [3, 4228, 11], + [2, 4229, 1194], + "support", + [2, 4229, 4231], + "space-separated-tokens", + "spectaql", + "speech-section-part-frozen", + "spirit-labor-cheese", + "split", + "split2", + "spring-dust-wall-size", + [0, 56, 5676, 5874, 5879, 5881, 5883], + [1, 2343, 4244], + "sprintf", + "sprintf-js", + [0, 4253, 3464, 4254, 4139], + "sprity", + "sqlite3", + "ssh2", + "ssri", + "st.db", + "stack-", + "trace", + "stack-trace", + [0, 4851, 56, 5676, 5889, 5241], + [0, 5891, 91], + "standard", + "-version", + [2, 4255, 4256], + "star-location", + "star", + "t-server-and-test", + [2, 4259, 4260], + "stat", + [1, 2343, 4265], + "statsd", + [0, 4269, 4281, 2514, 2537], + "statuses", + "stock-independent-balloon", + "stor", + [0, 5896, 3093, 5898, 2102, 4232], + "storybook", + "-django", + [2, 4270, 4271], + "stra", + "iforos-compodoc", + [2, 4273, 4274], + "nge-lady-riding9", + [2, 4273, 4276], + [2, 3101, 3695], + "stream-", + [2, 4279, 353], + [0, 1389, 53, 5743, 5241], + "streamii", + "strftime", + "string-", + "stri", + [1, 2343, 4297], + "strip-html", + [2, 4284, 4287], + "width", + [2, 4284, 4289], + "-entities", + [2, 1646, 4291], + "strip-", + "strip-ansi", + "bom", + "strip-bom", + [0, 0, 0, 2514, 2523], + "comments", + [2, 2842, 4298], + [2, 4293, 4299], + "strip", + "stripe", + "strongloop", + "-dictionary", + [2, 590, 4304], + "style-", + [2, 4306, 1194], + [1, 2343, 4313], + "style-to-js", + [3, 4309, 9], + [2, 4310, 3048], + "-comp", + [0, 4316, 0, 2514, 2523], + "-components", + [2, 369, 4314], + [0, 1593], + "styled-jsx", + "hacks", + "stylehacks", + "stylelint", + "-standard", + [2, 607, 4321], + [2, 4320, 4322], + [3, 4323, 10], + "declaration-strict-value", + [2, 4324, 4325], + "order", + [2, 4324, 4327], + "scss", + [2, 4324, 4329], + [1, 2343, 4336], + "us", + "stylus", + [2, 4333, 2091], + "sugar-policeman-entire", + [0, 4344, 3464, 2514, 2537], + "sugarss", + "sun-grass-circle0", + "superagent", + "super", + "superjson", + "supertest", + [2, 4342, 1430], + [0, 1676, 104, 58, 5230, 5216, 51, 30873], + "supervisor", + "-vessels-web3-vessels", + [2, 4231, 4346], + [1, 2343, 4356], + "lor", + "s-color", + [2, 4231, 4350], + "surrounded-characteristic-or-rain", + "svelte-", + "check", + [2, 4353, 4354], + [0, 4379, 4392, 2514, 2487], + "rocess", + "preprocess", + [2, 4353, 4358], + "svg-sprite", + "svgo", + "sw-precache-webpack-plugin", + "swagger-autogen", + "swagger-", + [2, 4364, 134], + "themes", + [2, 4364, 4366], + "ui-express", + [2, 4364, 4368], + "swam-darkness-weak", + "swig", + "swiper", + "sync-request", + "information", + [2, 623, 4374], + "systemjs", + "tail-iron-became5", + "tail", + [0, 5276, 5279], + "tailwind", + "-merge", + [2, 4380, 4381], + "tailwindcss", + "tap", + "tap-", + "spec", + "tap-spec", + "tapable", + "tape", + "tar", + "tar-fs", + [0, 58, 5216, 5274], + "tar-stream", + "tarant", + "-router-express", + [2, 3926, 4395], + [2, 4394, 4396], + "tdl", + "tdlib-native", + "tempy", + "terminal-kit", + [3, 4401, 9], + "menu", + [2, 4402, 4403], + "pack", + "-plugin", + "pack-plugin", + [2, 4184, 4407], + [2, 4072, 4408], + "cutting", + [2, 1382, 4410], + "snippets", + [2, 1382, 4412], + "cafe", + "testcafe", + "testc", + [1, 2343, 4422], + "ontainers", + [2, 4416, 4418], + "double", + "testdouble", + [0, 4424, 4429, 4442, 4139], + "testem", + [ + 0, 5923, 5927, 5930, 5931, 5934, 5935, 5936, 1512, 2075, 2088, 2070, 2822, 2832, 5941, 3105, 5944, 3107, 5946, + 5949, 3112, 26767, 5953, 5956, 5961, 3135, 3257, 5963, 5966, 3725, 3754, 3758, 5969, 5971, 3348, 5975, 4747 + ], + "text-table", + "three", + "throttle-debounce", + "thro", + [0, 4320, 5978, 4328], + "through", + "through2", + "w-did-darkness4", + [2, 4428, 4432], + "thunkify", + "tildify", + "time-grunt", + "tinper-bee", + "tiny-lr", + "tiny", + "bench", + "tinybench", + [0, 200, 1783, 5980, 3452, 5593, 5981, 5982, 5983, 1745, 1179], + "tinycolor2", + [1, 2343, 4458], + "tinymce", + "pool", + "tinypool", + "tinyspy", + "tmp", + "toastify-react-native", + "tocbot", + "toml", + "touch", + "tough-cookie", + "tracer", + "traffic-carry-opinion", + "train-stick-swept7", + [0, 4466, 4471, 4472, 2537], + "tree-kill", + "e-leaving-basket", + [2, 1333, 4460], + "trpc", + "trumpet", + "ts-cache-mongoose", + "ts-japi", + [0, 5990, 2212, 3220, 3747, 4715], + "est", + "ts-jest", + "ts-loader", + "ts-migrate-mongoose", + [0, 1596, 1177, 1895, 1903, 1938, 1954, 1955, 1958, 1970, 4255], + [0, 4709, 5993, 4714, 2942, 5995], + "ts-morph", + "ts-node", + "ts-patch-mongoose", + [1, 2343, 4485], + "ts-pnp", + "ts-rule-engine", + "-paths", + [2, 2190, 4479], + "tsd", + "tsd-lite", + "tshy", + "tslib", + [0, 4502, 4503, 2514, 2537], + "nt", + "tslint", + "-config-", + [2, 4488, 1894], + [2, 4487, 4489], + "tslint-", + [2, 4491, 89], + "tsup", + "tsx", + "turndown", + "tv4", + "tweetnacl", + "twemoji", + "twit", + "twitter", + "type-", + [ + 0, 6041, 4135, 1458, 6042, 1836, 2151, 6049, 3527, 1104, 6047, 4025, 6024, 6027, 6028, 6032, 6034, 6009, 6010, + 6025, 6037, 3749, 6007, 6039, 6022, 6003, 6031, 6017, 6006 + ], + [0, 3471, 6040, 4294, 5254], + "coverage", + [2, 4501, 4504], + [1, 2343, 4516], + "type-fest", + "typedoc", + "-material-theme", + [2, 4508, 4509], + "typedoc-", + [2, 4511, 2475], + [3, 4512, 15], + [2, 4513, 1783], + "typedocs", + [0, 4518, 4519, 4527, 2537], + "typegen", + [0, 6056, 6059, 449, 452, 456, 1461, 3744], + [ + 0, 48, 53, 61, 87, 90, 192, 5467, 5583, 811, 816, 6061, 6063, 6065, 1009, 1011, 1178, 1251, 6066, 1177, 1947, + 1959, 1961, 2675, 2990, 1894, 89, 3824, 4042, 6068, 4073, 4131, 91 + ], + "typegoose", + "typeorm", + "-eslint", + [2, 91, 4522], + [3, 4523, 11], + "formatter", + [2, 4524, 4525], + [0, 6070, 89, 6071, 181, 6073, 4963, 6074, 6077, 6080, 6081, 6082, 4967, 6083, 6084, 4298, 6085, 6086], + [1, 2343, 4544], + "css-modules", + [2, 1186, 4529], + [2, 4524, 4530], + "typings", + "uglify-es", + "uglify-", + "uglify-js", + "js-webpack-plugin", + [2, 2280, 4536], + "uid-safe", + "uiw", + "uj-apidoc-core", + "ulid", + "ultrahtml", + "unbuild", + [0, 4556, 0, 4557, 2537], + "underscore", + ".string", + [2, 4545, 4546], + "undici", + "unified", + "unique-", + "random-", + "array", + [2, 4551, 4552], + [2, 4550, 4553], + "unist-util-visit", + [0, 1459, 148, 185], + [0, 6092, 1459, 6094, 6096, 6098, 6100], + "untildify", + "unusual-rope", + "unzip", + "-notifier", + [2, 3076, 4561], + "urijs", + "url-", + "join", + "url-join", + "url-parse", + "urllib", + "user", + "user-", + "home", + "user-home", + [1, 2343, 4574], + [0, 4583, 0, 4642, 2487], + "agent", + "useragent", + "utf8", + [2, 594, 4381], + "uvu", + "valid", + "-url", + "valid-url", + [0, 27715, 4484], + "-commit-msg", + [2, 2649, 4584], + [3, 4585, 9], + [2, 3387, 1213], + [2, 4586, 4587], + "vant", + "vary", + "vasync", + "vercel", + "verror", + "vhost", + "victory-mouth", + "viewerjs", + "vinyl", + "vinyl-", + [2, 4598, 1398], + "vinyl-fs", + "source-", + [2, 4601, 3101], + [2, 4598, 4602], + [3, 4603, 12], + "maps-apply", + [2, 4604, 4605], + "virtual", + "virtual-dom", + [3, 839, 12], + "api-", + "api-routes", + [2, 4609, 4611], + "press", + "vitepress", + "vorpal", + "vows", + "vsce", + "vscode-debugprotocol", + "vscode-", + "nls-dev", + [2, 4619, 4620], + "mate", + "textmate", + [2, 4619, 4623], + "vue-", + "class-", + [3, 1533, 9], + [2, 4626, 4627], + [2, 4625, 4628], + [2, 4625, 67], + "hot-reload-api", + [2, 4625, 4631], + "vue-i18n", + "vue-loader", + [3, 3746, 9], + [3, 70, 9], + [2, 4635, 4636], + [2, 4625, 4637], + [2, 4625, 38], + [2, 4625, 4307], + [3, 1243, 9], + [0, 6105, 6106, 6038, 1936, 6108, 6110, 1098, 6111, 6112, 6113, 4627, 6092, 1459, 6094], + "compiler", + [2, 4641, 4643], + [2, 4625, 4644], + "vuex", + "walk", + "walk-sync", + "warning", + "watchify", + "waterline", + "wd", + "web3", + "web3-", + [1, 2343, 4668], + "web3-be", + "web3-c", + "apital", + [2, 4657, 4658], + [3, 42, 8], + "pass", + [2, 4660, 4661], + "eve-cli", + [2, 4654, 4663], + "web3-e", + "xactly6", + [2, 4665, 4666], + [0, 4672, 0, 4557, 2523], + "web3-fruit", + "webpack-", + "bundle-", + [0, 1459, 148, 187, 153, 180, 157], + [1, 2343, 4697], + "analyzer", + [2, 4671, 4674], + [2, 4670, 4675], + [2, 4670, 200], + "dev-middleware", + [2, 4670, 4678], + [3, 4679, 12], + [2, 4680, 36], + "hot-", + [2, 4682, 2663], + [2, 4670, 4683], + [2, 3097, 4406], + [2, 4670, 4685], + [3, 4686, 9], + "erge", + [2, 4687, 4688], + "node-e", + "xternals", + [2, 4690, 4691], + [2, 4670, 4692], + "sources", + [2, 4670, 4694], + "webshot", + [0, 4698, 0, 4557, 2523], + [0, 1459, 182, 148, 29468, 187, 153, 180], + "websocket", + [1, 2343, 4701], + [0, 4725, 0, 4557, 2537], + "webtorrent", + "webworker-threads", + "weinre", + "whatwg-fetch", + "when", + "which", + "winreg", + "winston", + "-daily-rotate-file", + [2, 4709, 4710], + "winston-", + "trans", + "transport", + [2, 4712, 4714], + "wiredep", + "word-wrap", + "word", + "wrap", + "wordwrap", + "work", + "box-webpack-plugin", + [2, 4721, 4722], + "world-toy-kill", + [0, 1459, 182, 148, 6127, 29468, 187, 180], + "wrap-ansi", + "wrench", + "write-file-atomic", + "ws", + "x-ray", + "xhr", + "xml-", + "xml-js", + "xml2js", + "xml2json", + "xmlbuilder", + "xmldom", + "xmlhttprequest", + "xpath", + "xregexp", + "xss", + "xstate", + [1, 2343, 4773], + "xterm", + "yaml", + "yamljs", + "yargs", + [2, 4747, 1574], + "yarn", + "pkg", + "yarnpkg", + "yarnrc", + "yauzl", + "yeoman-environment", + "yeoman-", + [2, 4755, 1179], + "yn", + "yo", + "yoctocolors-cjs", + "yonode", + "yosay", + "zmq", + "zod", + "zod-", + "chemas", + [2, 2666, 4765], + [2, 4764, 4766], + "zombie", + "zone.js", + "zuul", + [2, 667, 1651], + [2, 672, 4406], + [0, 4792, 0, 4801, 2523], + "@nx/jest", + [2, 667, 4270], + "framer-motion", + "teajusgula", + "@mui/s", + "tyle", + "d-engine", + [2, 4779, 4780], + [2, 4778, 4781], + "jsdoc-parse", + "@comm", + "ercetools-frontend/constants", + [2, 4784, 4785], + "shift", + "downshift", + [3, 3605, 9], + "ocus-visible", + [2, 4789, 4790], + [0, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 146, 6133, 111, 174], + [2, 3388, 4794, 4963], + [3, 18878, 12], + [3, 1705, 9], + [2, 4795, 3582], + "devDependencies", + "keywords", + "ts", + [2, 4837, 686], + [0, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130, 6148, 6092, 1459, 6094], + [3, 3, 7], + "field", + [2, 4802, 4803], + [2, 4802, 3473], + [2, 4802, 2649], + "@types/", + [2, 4807, 3911], + "big.js", + [3, 1849, 9], + "lement-equals", + [2, 4810, 4811], + [1, 2343, 4918], + "adaptor-generate", + [2, 4802, 4814], + [3, 4815, 15], + [2, 4816, 1383], + "@alifd/a", + "pi-extractor", + [2, 4818, 4819], + [2, 1262, 3286], + [2, 4802, 4821], + [2, 1910, 57], + [2, 4802, 4823], + "@alifd/d", + "ts-generator", + [2, 4825, 4826], + [2, 1884, 3286], + [2, 4802, 4828], + "meet-react", + [2, 4802, 4830], + "sass-", + "mapper", + "sass-mapper", + [2, 4802, 4834], + [3, 4835, 12], + [3, 4793, 38], + [2, 4867, 4924], + "tracker", + [2, 4836, 4839], + [3, 4835, 11], + [2, 4841, 4823], + "@alifd/s", + "lint-co", + "-next", + "nfig-next", + [2, 4844, 4846], + [2, 4779, 4847], + [2, 4843, 4848], + [3, 81, 21], + [2, 4850, 1219], + [2, 4807, 1175], + "@types/b", + "ig.js", + [2, 4853, 4854], + "@types/chai", + "@types/c", + "lassnames", + [2, 4857, 4858], + "@types/co", + "@types/e", + "nzyme", + [2, 4861, 4862], + [2, 4807, 2151], + "@types/glob", + [2, 4807, 2720], + [3, 4793, 25], + "jsonp", + [2, 4807, 4868], + [2, 4807, 1209], + ".clonedeep", + [2, 4870, 4871], + "@types/md5", + [2, 4807, 202], + [2, 4807, 3564], + [3, 4875, 16], + "ustom-", + [2, 4877, 3583], + [2, 4876, 4878], + [3, 4808, 12], + [3, 4808, 13], + [2, 4881, 1582], + [2, 4881, 965], + [2, 4881, 3875], + [3, 4884, 14], + "outer-dom", + [2, 4885, 4886], + [3, 4808, 14], + [2, 4888, 3903], + [2, 4807, 4320], + [2, 4807, 2924], + [2, 4807, 4747], + [3, 1203, 14], + "spower", + [2, 4893, 4894], + [2, 2168, 1894], + [2, 1199, 4896], + [3, 1245, 30], + [2, 4898, 3426], + "proto", + "-to-assign", + [2, 4900, 4901], + [2, 1226, 4902], + "displayname", + [2, 1861, 4904], + [2, 1249, 4905], + [2, 3195, 2874], + "e-polyfill", + [2, 1557, 4908], + "css-s", + "plit-webpack-plugin", + [2, 4910, 4911], + [2, 1863, 3733], + [3, 1924, 15], + "ypress", + [2, 4914, 4915], + [2, 2068, 4111], + [0, 4943, 0, 4801, 2537], + "html5shiv", + [3, 2925, 9], + "driver-launcher", + [2, 4920, 4921], + [2, 3108, 588], + "ssets", + "mochawesome", + "-package-importer", + [2, 3342, 4926], + [2, 3388, 16690, 4935], + "react-axe", + "ropper", + [2, 3805, 4930], + "react-dr", + "aggable", + [2, 4932, 4933], + "c-app", + "ve", + "react-live", + "true", + "sass-true", + "simulate-event", + "solarlunar", + [3, 4323, 17], + [0, 182, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 146, 6133, 111, 174], + [2, 4950, 4951], + "recommended", + [2, 4942, 4945], + [3, 4323, 11], + "sstree-validator", + [2, 4947, 4948], + [3, 662, 27], + "dev-authentication", + "ts-mocha", + [1, 2343, 4969], + [2, 4950, 4956], + "tsconfck", + [3, 25922, 13], + "fusion", + " design", + [2, 4957, 4958], + "ui toolkit", + "mponents", + [2, 3808, 4961], + "components", + "design", + "front", + "end", + "frontend", + [2, 4970, 4971], + [0, 4979, 0, 4983, 2537], + [3, 4786, 14], + "/http-user-agent", + [2, 31787, 4980], + "Angular CLI", + "Angular ", + "DevKit", + [2, 4974, 4975], + "devkit", + "sdk", + [0, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 146, 6158, 111, 174], + "cli-lib", + [2, 812, 2220], + "@svgr/babel-preset", + [0, 6148, 6092, 1459, 6094, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130], + "blue", + [2, 4807, 4676], + "blueprints", + " generation", + [2, 1501, 4987], + "scaffolding", + "tool", + "tooling", + [2, 1030, 4993], + "-swc", + [1, 2343, 4998], + [2, 5559, 705], + [2, 4997, 4999], + "moment-loca", + [0, 5003, 0, 4983, 4139], + [3, 8303, 18, 2], + "svg-url-loader", + "development", + "thread-loader", + [ + 0, 6164, 164, 167, 137, 159, 177, 162, 180, 157, 140, 6166, 171, 116, 150, 155, 122, 169, 119, 146, 111, 6168, + 174 + ], + [1, 2343, 5005], + [0, 5006, 0, 4983, 4139], + [0, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 6173, 146, 111, 174], + [1, 2343, 5008], + [0, 5011, 0, 4557, 2487], + [2, 4807, 4996], + [2, 6776, 1987], + [0, 6178, 1459, 16485, 182, 148, 29468, 159, 187, 153, 185, 146], + "@jridgewell/sourcemap-codec", + [1, 2343, 5014], + [0, 5015, 0, 4557, 2537], + [0, 1459, 182, 148, 29468, 159, 187], + [1, 2343, 5017], + [0, 5018, 0, 4557, 4139], + [0, 16485, 182, 148, 187, 153, 191], + [1, 2343, 5020], + [0, 5021, 0, 5022, 2487], + [0, 1459, 148, 187], + [0, 6092, 1459, 6094, 6192, 6100], + [1, 2343, 5024], + [0, 5025, 0, 5026, 2443], + [0, 16485, 182, 187, 153, 6200], + [0, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130, 6092, 1459, 6094, 6192, 6100], + [2, 29, 4958], + [1, 2343, 5029], + [0, 5030, 0, 4557, 4139], + [0, 1459, 148, 187, 185, 146], + [1, 2343, 5032], + [0, 5033, 0, 5026, 2399], + [0, 16485, 187], + [1, 2343, 5035], + [0, 5036, 0, 4557, 2537], + [0, 1459, 182, 148, 6215, 6127, 180, 143, 6217], + [1, 2343, 5039], + "xhr2", + [0, 5040, 0, 4557, 2399], + [0, 1459, 182, 148, 29468, 187, 153, 171], + [1, 2343, 5042], + [0, 5043, 0, 4557, 2523], + [0, 1459, 16485, 182, 148, 6215, 29468, 187, 153, 180, 185, 191, 143], + [1, 2343, 5045], + [0, 5046, 0, 4557, 4139], + [0, 1459, 182, 148, 167, 29468, 187, 153, 157], + "@bang88/react-native-ultimate-listview", + [3, 444, 19], + [2, 5048, 970], + "@rc-component/mini-decimal", + "@types/s", + [1, 2343, 5053], + [0, 5072, 0, 4557, 2443], + "hallowequal", + [2, 5051, 5054], + "with", + [2, 3023, 5056], + "css-color", + [2, 3370, 5058], + "rc-field-form", + "codegen", + [2, 3862, 5061], + [3, 5062, 15], + "llapsible", + [2, 5063, 5064], + "modal", + "-popover", + [2, 5066, 5067], + [2, 3862, 5068], + "ity-types", + [2, 614, 5070], + [0, 1459, 16485, 182, 148, 29468, 159, 187, 153, 180, 191, 143], + [2, 2809, 4009], + [2, 45, 5073], + [2, 41, 5074], + [2, 41, 2041], + "@rea", + "ct-native-community/eslint-config", + [2, 5077, 5078], + [3, 5079, 9], + "vigation/native", + [2, 5080, 5081], + [3, 5082, 18], + [2, 5083, 2873], + [2, 972, 4009], + "@types/j", + "@types/jest", + "@types/p", + "rop-types", + [2, 5088, 5089], + [2, 4881, 970], + [3, 1113, 11], + "palettes", + [2, 5092, 5093], + "-demo-data", + [2, 701, 5095], + [2, 1114, 5096], + "bisheng", + [1, 2343, 5101], + "enquire.js", + [0, 5126, 0, 4557, 2537], + "jsonml.js", + "metro-react-native-babel-preset", + [3, 3822, 9], + "ument-title", + [2, 5104, 5105], + [3, 2197, 13], + [2, 1246, 5107], + "gesture-handler", + [2, 3862, 5109], + [3, 5069, 15], + "cker", + [2, 5111, 5112], + "reanimated", + [2, 3862, 5114], + "area-context", + [2, 4099, 5116], + [2, 3862, 5117], + [3, 5118, 14], + "creens", + [2, 5119, 5120], + "web", + [2, 3862, 5122], + "shell-", + [2, 5124, 594], + [0, 1459, 182, 148, 6164, 6127, 29468, 187, 153, 180, 143], + "ant", + [3, 4962, 15], + "frame", + "framework", + "mobile", + " native", + [2, 89, 5132], + [1, 2343, 5135], + [0, 5136, 0, 4557, 2537], + [0, 1459, 182, 148, 6215, 29468, 187, 153, 180, 191, 143], + [1, 2343, 5138], + [0, 5140, 0, 4557, 2537], + [2, 4870, 3020], + [0, 182, 148, 29468, 187, 153], + [1, 2343, 5142], + [0, 5143, 0, 4557, 2487], + [0, 1459, 148, 153, 143], + [1, 2343, 5147], + [3, 5075, 17], + "@inline-svg-unique-id/react", + [0, 5148, 0, 5149, 4139], + [0, 27715], + [0, 6105, 6106, 6038, 1936, 6108, 6110, 89, 5128, 6092, 1459, 6094], + [1, 2343, 5151], + [0, 5163, 0, 4557, 2487], + [2, 3670, 1575], + [2, 5928, 5155], + "@auth/core", + "junit-xml-formatter", + "adapt", + "er-auto", + [2, 5156, 5157], + [2, 836, 5158], + [2, 836, 3383], + "et-cookie-parser", + [2, 5051, 5161], + [0, 1459, 16485, 182, 148, 29468, 187, 153, 191, 143], + "entication", + [2, 1303, 5164], + "authjs", + "sveltekit", + "oidc", + "wordless", + [2, 4661, 5169], + [1, 2343, 5172], + [0, 5173, 0, 4557, 2443], + [0, 16485, 148, 187, 153], + [1, 2343, 5177], + "fs-readdir-recursive", + [3, 5012, 12], + [0, 5181, 0, 5022, 2443], + "-mapping", + [2, 4251, 5178], + [2, 5176, 5179], + [0, 16485, 6268, 6271, 6272, 28829, 148, 29468, 187, 153, 15716], + [3, 4864, 10], + "dir-recursive", + [2, 3917, 5183], + [2, 5182, 5184], + [3, 56, 14], + "fixture", + "-test-runner", + [2, 5187, 5188], + [2, 1221, 5189], + [2, 5186, 5190], + [2, 5195, 5196], + "6to5", + "es6", + [3, 7710, 11], + "ut-extension", + "transpile", + "transpiler", + [1, 2343, 5201], + [2, 7623, 671], + [0, 5202, 0, 5022, 2443], + [0, 148, 187], + [1, 2343, 5205], + "ighlight", + [0, 5206, 0, 5022, 2537], + [0, 16485, 182], + "meta", + "-resolve", + [2, 5207, 5208], + [2, 2701, 5209], + [1, 2343, 5212], + [0, 5213, 0, 5214, 2537], + [0, 27715, 3021], + [0, 6105, 6106, 6038, 1936, 6108, 6110, 188, 6284, 6285, 6287, 6092, 1459, 6094], + "@ampproject/remapping", + [2, 54, 1179], + "compil", + "ation", + "-targets", + [2, 5218, 5219], + [2, 5217, 5220], + [2, 5186, 5221], + "module-", + [2, 353, 591], + [2, 5223, 5224], + [2, 5186, 5225], + [3, 56, 13], + [2, 5227, 591], + "emplate", + [2, 102, 5229], + [1, 2343, 5232], + [0, 5234, 0, 5022, 2537], + "gensync", + [0, 16485, 182, 148, 6127, 29468, 187, 153, 180], + [2, 4850, 2124], + [3, 83, 24], + "flow-", + [2, 4293, 553], + [2, 5237, 5238], + [2, 5236, 5239], + [2, 5236, 1239], + "nvert-", + [2, 5242, 4227], + [2, 4860, 5243], + [2, 4807, 1676], + "@types/g", + "ensync", + [2, 5246, 5247], + [3, 4808, 9], + "solve", + [2, 5249, 5250], + [3, 5162, 9], + "mver", + [2, 5252, 5253], + [1, 2343, 5262], + "classes", + "const", + "harmony", + "let", + "modules", + "var", + [0, 5263, 5264, 5265, 2523], + [0, 6297, 6298, 6301, 6302, 6303, 26379, 4747], + [0, 6306, 6307, 6498, 4874, 4892, 2151, 6476], + [0, 1566, 1529, 200], + [1, 2343, 5267], + [0, 5268, 0, 5269, 2523], + [ + 0, 7, 53, 5830, 87, 6316, 6318, 31736, 1364, 6320, 1448, 1457, 1512, 1525, 1595, 6323, 1866, 2061, 2071, 2151, + 2070, 2036, 2626, 2681, 2856, 1209, 3079, 6326, 6327, 3127, 3183, 5732, 6330, 6331, 3527, 23802, 3725, 4135, + 4200, 5969, 6334, 4473, 3348, 6335 + ], + [0, 6111, 1098, 1745, 4963, 1237, 2218, 4796, 1783], + [1, 2343, 5280], + [3, 5222, 15], + "heck-duplicate-nodes", + [2, 5271, 5272], + [2, 5186, 1182], + [2, 4284, 57], + [2, 5186, 5275], + "-identifier", + [2, 1155, 5277], + [2, 5186, 5278], + [0, 5283, 0, 5288, 2537], + "codes", + "charcodes", + [0, 6343, 2700], + "javascript", + "tc39", + "ecmascript", + "skia-canvas", + [0, 6345, 6346, 5130, 2018, 6347], + [1, 5293, 5296], + "@egjs/flicking", + "reate-class-features-plugin", + [2, 5271, 5291], + [0, 8389, 4799], + [3, 56, 21], + [2, 5294, 1187], + [0, 8391, 5298], + [3, 1198, 12], + 1732406400000, + [1, 5293, 5300], + [0, 8391, 5301], + 1733011200000, + "moo", + "luxon", + "hamljs", + "liquidjs", + "iso-639-1", + "@iarna/toml", + "-urls", + [2, 3692, 5308], + [3, 3938, 10], + [2, 5310, 1585], + "bcp-47-normalize", + [3, 1705, 11], + [2, 5313, 2218], + "@11ty/", + "lodash-", + "custom", + [2, 5316, 5317], + [2, 5315, 5318], + "please-upgrade-node", + [2, 62, 3007], + [2, 5313, 1633], + [2, 5315, 5322], + "@sin", + "dres", + "orhus/slugify", + [2, 5325, 5326], + [2, 5324, 5327], + [3, 5321, 15], + "dev-", + [2, 5330, 36], + [2, 5329, 5331], + [1, 2343, 5345], + "@vue/", + "server-", + [2, 5335, 3902], + [2, 5334, 5336], + "plugin-vue", + [2, 5329, 5338], + [3, 5339, 22], + "syntax", + [3, 2600, 9], + [2, 5341, 5342], + [2, 5340, 5343], + [0, 5350, 5358, 5359, 34352], + "-site-generator", + [2, 2947, 5346], + [3, 5347, 11], + "ssg", + [0, 2626], + "website", + "jekyll", + "blog", + "templates", + "11ty", + "liquid", + "haml", + [ + 0, 48, 53, 87, 37046, 6371, 27928, 6372, 5583, 811, 816, 6373, 11275, 1165, 1367, 6375, 6376, 1492, 1610, 1177, + 1907, 1937, 1938, 1982, 6379, 2203, 2205, 6382, 2626, 6383, 2739, 2765, 2814, 2297, 2876, 2881, 6385, 2889, + 2895, 2898, 6387, 2910, 3019, 3363, 3400, 3561, 3566, 6389, 4039, 4042, 6390, 21688, 4939, 4167, 4320, 6392, + 4072, 6393 + ], + [0, 1623, 2278, 6396, 6398, 6400, 5130, 5122], + [1, 2343, 5361], + [0, 0, 0, 5372, 2537], + "parcel", + "ytes", + [2, 4853, 5363], + "enchmark", + [2, 4853, 5365], + "@parcel/packager-ts", + "@parcel/", + "er-typescript-types", + [2, 353, 5369], + [2, 5368, 5370], + [0, 1623, 57], + [1, 2343, 5377], + "stringifier", + "heet", + "stylesheet", + [0, 0, 0, 5378, 2487], + [0, 1623, 207], + [1, 2343, 5380], + [0, 0, 0, 5426, 2537], + "@advanced-rest-client/arc-icons", + [3, 5381, 26], + [2, 5382, 3127], + [3, 5381, 22], + "-copy", + [2, 1492, 5385], + [2, 5384, 5386], + "-snippets", + [2, 1501, 5388], + [2, 2655, 5389], + [2, 5384, 5390], + [2, 3115, 592], + [2, 5384, 5392], + "@anypoint-web-components/anypoint-button", + [3, 5394, 34], + "collapse", + [2, 5395, 5396], + "drop", + "dropdown", + [2, 5395, 5399], + "item", + [2, 5395, 5401], + "box", + "listbox", + [2, 5395, 5404], + [3, 64, 17], + "mf-helper-mixin", + [2, 5406, 5407], + [3, 64, 20], + "annotation-document", + [2, 5409, 5410], + "body-", + [2, 5412, 1746], + [2, 5409, 5413], + "example-generator", + [2, 5409, 5415], + "ers-document", + [2, 3193, 5417], + [2, 5409, 5418], + "param", + "eters-document", + [2, 5420, 5421], + [2, 5409, 5422], + "responses-document", + [2, 5409, 5424], + [0, 1623, 6415, 57], + "umentation", + [2, 4117, 5427], + [2, 1965, 5428], + [2, 5409, 5429], + [3, 64, 16], + "method-", + "label", + [2, 5432, 5433], + [2, 2655, 5434], + [2, 5431, 5435], + [1, 2343, 5448], + "lit-html", + [2, 7623, 594], + "demo-helper", + [2, 5382, 5440], + "-aut", + "horization", + [2, 5442, 5443], + [2, 3424, 5444], + [2, 5384, 5445], + [3, 5397, 35], + [0, 5481, 0, 5485, 2537], + "heckbox", + [2, 5447, 5449], + [3, 5402, 35], + [2, 5451, 1020], + [2, 5395, 592], + [3, 64, 21], + "odel-generator", + [2, 5454, 5455], + "navigation", + [2, 5409, 5457], + [3, 5425, 22], + "quest", + [2, 5459, 5460], + [3, 5430, 22], + "rver-selector", + [2, 5462, 5463], + [3, 192, 13], + "onfig-conventional", + [2, 5465, 5466], + "@open", + "-wc/eslint-config", + [2, 5468, 5469], + [3, 5470, 9], + "testing", + [2, 5471, 5472], + "@web/dev-server", + "@web/", + [2, 5475, 1187], + "-playwright", + [2, 5476, 5477], + [2, 5438, 4406], + [2, 4524, 5479], + [0, 220, 3681], + "api-co", + [2, 5482, 4961], + [2, 5432, 1745], + [0, 1623, 2741, 6421, 6422, 3561, 6425, 6426, 3585], + [1, 2343, 5487], + [0, 5488, 0, 5492, 34352], + [0, 3688], + [3, 465, 9], + "typed", + [3, 5428, 9], + [0, 1623, 5317, 6433, 3561, 6425, 6434, 3583, 6435, 6436, 6437], + [1, 2343, 5503], + "-node/core", + [2, 5491, 5494], + [2, 5490, 5495], + [2, 5489, 5496], + "@wry/caches", + "@wry/", + "@hapi/eslint-plugin", + "equality", + [2, 5499, 5501], + [0, 0, 0, 5507, 2537], + "@wry/trie", + "optimis", + "optimism", + [0, 1623, 3681, 6443], + "response", + "-iterator", + [2, 5508, 5509], + "symbol", + "-observable", + [2, 5511, 5512], + "ts-invariant", + "zen-observable-ts", + [1, 2343, 5524], + "@arethetypeswrong/cli", + [3, 107, 13], + "hange", + "log-github", + [2, 5519, 5520], + [2, 5518, 5521], + [3, 5497, 10], + [0, 5538, 5539, 5543, 2523], + "ools/merge", + [2, 5523, 5525], + [3, 5526, 15], + [2, 5527, 2844], + [2, 5527, 594], + "@size-limit/esbuild-why", + [3, 5530, 12], + "pres", + "et-small-lib", + [2, 5532, 5533], + [2, 5531, 5534], + "@tsconfig/node20", + "@types/f", + [ + 0, 6450, 6452, 6453, 5930, 6455, 6457, 5153, 6463, 6465, 30874, 6467, 6470, 6471, 1437, 1483, 1525, 1676, 6473, + 2089, 2070, 6474, 2709, 2744, 2753, 6475, 3060, 6476, 5303, 3171, 3188, 3261, 3730, 27168, 4135, 6479, 4351, + 4507, 6481, 4745, 6482 + ], + [ + 0, 6487, 6488, 19438, 19181, 442, 603, 826, 4856, 5245, 6493, 6494, 4864, 6497, 6309, 6498, 6501, 6503, 6505, + 6507, 4874, 6510, 5254, 6512, 6515, 6519, 6520, 1009, 1011, 1429, 6522, 1509, 6525, 1719, 1177, 1938, 1953, + 1982, 2026, 2151, 6526, 2899, 3257, 3421, 1894, 6527, 4172, 4193, 4196, 6530, 4449, 4474, 4481, 4508, 91 + ], + [2, 4807, 2609], + "-fetch", + [2, 4874, 5541], + [0, 5472, 5982, 1649, 6532, 6533], + [1, 2343, 5548], + "use-sync-external-store", + [2, 4807, 5545], + "rule", + [0, 5549, 5553, 5565, 2537], + [0, 1415, 1437, 1468, 1483, 2151, 4468], + "rule-tester", + [2, 1010, 5550], + [2, 1010, 553], + [ + 0, 192, 5467, 4864, 4866, 5087, 6541, 6544, 6547, 1009, 1011, 1109, 1481, 1836, 1177, 1895, 1955, 2675, 1192, + 6551, 3165, 3203, 3403, 1894, 6552, 6554, 91 + ], + "local-", + "local-rules", + [2, 1921, 5555], + [3, 1961, 20], + [2, 5557, 4643], + "graphql-", + "graphql-ws", + "patch-package", + [3, 3829, 12], + "boundary", + [2, 5562, 5563], + [0, 6557, 1745], + [1, 5293, 5567], + [0, 8391, 5568], + 1730419200000, + "ts-api-utils", + [3, 1913, 9], + [2, 4468, 5570], + "wait-for-observables", + "web-streams-polyfill", + [1, 2343, 5577], + "apollo", + "client", + [0, 0, 0, 2514, 2537], + [1, 2343, 5579], + [0, 0, 0, 2514, 2487], + [1, 2343, 5590], + [3, 66, 10], + [2, 5581, 57], + [2, 812, 1172], + [3, 1217, 14], + "ource", + "-support", + [2, 4226, 5586], + [2, 5585, 5587], + [2, 5584, 5588], + [0, 0, 0, 2514, 2443], + [1, 2343, 5594], + "api", + "asyncapi", + [0, 5595, 5596, 5597, 4139], + [ + 0, 5192, 27292, 7605, 5439, 1437, 1448, 1623, 7606, 7608, 7610, 2822, 1209, 3105, 5946, 7612, 7617, 3124, 7621, + 29457, 4110, 4213, 4361, 11143 + ], + [ + 0, 7624, 5200, 7631, 7632, 7634, 7637, 4870, 7639, 7641, 4874, 7643, 7677, 23203, 1165, 668, 7645, 2600, 26503, + 7648, 3400, 3561, 3672, 2278, 26573, 91, 1984 + ], + [0, 1783, 7650, 1739, 7651, 1745, 4990, 2041, 1179], + "@nicolo-ribaudo/eslint-scope-5-internals", + [1, 2343, 5605], + [3, 1006, 9], + [2, 5600, 671], + "-manager", + [2, 1993, 5602], + [2, 1010, 5603], + [0, 5606, 5607, 5608, 34352], + [0, 4484, 4548, 7658, 7660, 7663, 7664, 7665, 7668, 7669], + [0, 4493, 7671, 1177, 1984, 1894, 1610, 91, 4874, 7672, 7674, 7677, 7678, 7681, 7685, 7690], + [0, 1721, 5592, 4030, 7692, 7693], + [3, 81, 22], + "ecorators", + [2, 5609, 5610], + [1, 2343, 5620], + [3, 1143, 16], + "concat", + [2, 5613, 5614], + "polyfill-es-shims", + [2, 1199, 5616], + "getownpropertydescriptors", + [2, 3436, 5618], + [0, 5621, 5622, 5623, 2537], + [0, 1525], + [0, 2899, 1894], + [0, 553, 4532, 1776, 605, 4508, 1739, 1745, 7701], + [1, 2343, 5626], + [2, 4850, 72], + [0, 5627, 5628, 5597, 2523], + [ + 0, 7708, 7709, 7710, 7715, 7718, 7721, 354, 7723, 7725, 4865, 7729, 7730, 1091, 1149, 1168, 7731, 1437, 1759, + 2075, 2070, 2600, 2628, 2670, 2822, 2854, 3173, 3181, 3322, 4167, 4183, 4213, 4393, 7734, 7735, 4648, 4747 + ], + [ + 0, 7737, 7740, 7744, 7637, 4870, 7746, 4874, 7749, 7752, 4892, 1009, 1011, 1178, 668, 1177, 1966, 2675, 2990, + 1209, 4468, 4474, 91 + ], + [1, 2343, 5632], + [3, 5625, 28], + [2, 5630, 75], + [0, 5633, 5634, 5597, 2487], + [0, 7605, 1437, 7608, 7610, 2822, 1209, 3105, 5946, 7612, 7615, 7617, 3124, 7621, 4110, 4213], + [ + 0, 53, 5241, 87, 7634, 5087, 7637, 4870, 7639, 7641, 7759, 4874, 7643, 7761, 7762, 7763, 1165, 1178, 668, 7645, + 1177, 1966, 2600, 1192, 7648, 3561, 3672, 1894, 3957, 4468, 91 + ], + [1, 5293, 5641], + "mpat-data", + [2, 52, 5636], + [2, 4850, 77], + [3, 5422, 10], + [2, 5236, 5639], + [0, 8391, 5642], + 1734825600000, + [1, 2343, 5644], + [0, 5645, 5646, 5647, 2537], + [ + 0, 5328, 842, 975, 7788, 1364, 1437, 1470, 1536, 7791, 2040, 2075, 2141, 7793, 7794, 2600, 2856, 3105, 5944, + 3107, 5946, 7796, 7797, 3322, 3742, 2278, 7798, 7799, 4227, 4228, 4232, 7800, 3709, 3348, 7801 + ], + [ + 0, 192, 5467, 6061, 6063, 7804, 7806, 7808, 7810, 4864, 7639, 7641, 4874, 7812, 7814, 7816, 7819, 7822, 1009, + 1011, 1414, 7824, 2151, 2675, 3758, 3951, 4131, 91 + ], + [0, 38, 5995, 27, 5130, 7826, 7827, 7828], + [1, 2343, 5649], + [0, 5654, 5661, 5664, 2399], + [3, 5226, 21], + "imports", + [2, 5650, 5651], + [3, 5617, 22], + [ + 0, 7833, 7837, 7839, 7840, 19344, 7847, 842, 7858, 1165, 1393, 1628, 1630, 1177, 1895, 1955, 1959, 1961, 2203, + 2675, 16860, 3177, 3561, 3618, 3678, 2278, 4111, 4307, 4320, 4323, 5978, 7873, 4409, 2924, 4677, 4686, 4689 + ], + "corejs2", + [2, 5653, 5655], + [3, 5656, 28], + [2, 5657, 1278], + [3, 3957, 11], + [2, 5653, 5659], + [0, 7849, 2990], + [3, 99, 21], + [2, 5662, 1278], + [0, 4967, 4329, 7880, 676, 6435, 1237, 7881], + [1, 2343, 5667], + "@edsdk/n1ed-react", + [0, 5668, 5670, 5671, 34352], + [0, 7639, 1429, 1437, 3025, 3105, 3467, 3718], + "derequire", + [0, 27134, 4856, 7889, 4874, 7895, 2675, 2990, 1894, 91, 1984], + [0, 1804, 1739, 1745, 5592, 91, 7897, 7900], + [1, 2343, 5673], + [0, 5703, 5705, 5708, 2523], + [3, 5279, 24], + "option", + [2, 5674, 5675], + "bugfix-firefox-class-in-computed-class-key", + [2, 79, 5677], + [3, 5678, 21], + "safari-", + "-initializer-scope", + [2, 4803, 5681], + [2, 4626, 5682], + [2, 5680, 5683], + [2, 5679, 5684], + [3, 5685, 28], + "id-destructuring-collision-in-function-expression", + [2, 5686, 5687], + "v8-spread-parameters-in-optional-chaining", + [2, 5679, 5689], + [3, 5690, 25], + "-class-fields-redefine-readonly", + [2, 3346, 5692], + [2, 5691, 5693], + "private-", + [3, 3746, 11], + "-object", + [2, 5696, 5697], + [2, 5695, 5698], + [2, 69, 5699], + "generators", + [2, 1152, 5701], + [0, 5652, 97, 7905, 7907, 7910, 7913, 1573, 1874, 7915, 4227, 7917], + [2, 4850, 1229], + [0, 53, 7922], + "static-", + [2, 5706, 1359], + [0, 592, 1832, 89, 1623, 7165], + "ions", + "assertions", + [2, 2701, 5710], + [2, 4850, 5711], + [3, 5712, 29], + "ttributes", + [2, 5713, 5714], + [3, 5712, 28], + [2, 5716, 5207], + [1, 2343, 5719], + [0, 5720, 5722, 5708, 2537], + [0, 362, 7931, 7910, 7932, 7933], + "logical-assignment-operators", + [0, 7935, 91], + [1, 2343, 5724], + [0, 5725, 5726, 2514, 2523], + [0, 97, 362, 7943, 7910, 7946, 7933], + [0, 7935, 7948, 89, 91], + [1, 2343, 5729], + "meric-separator", + [0, 0, 0, 2514, 4139], + [1, 2343, 5733], + "ptional-catch-binding", + "neotraverse", + [0, 5735, 5794, 5795, 2523], + "haining", + [0, 1996], + [2, 4850, 5699], + "top-level-await", + [2, 4850, 5737], + "-sets-regex", + [2, 3656, 5739], + [2, 4850, 5740], + "arrow-functions", + [2, 5236, 5742], + [3, 5743, 25], + "sync-", + [3, 1626, 9], + [2, 2168, 5746], + [2, 5745, 5747], + [2, 5744, 5748], + [3, 5749, 30], + [2, 5750, 1222], + "-scoped-functions", + [2, 1359, 5752], + [2, 5236, 5753], + [3, 5754, 34], + [2, 5755, 3642], + [2, 5236, 1229], + [3, 5757, 30], + [2, 5758, 5707], + [3, 5757, 29], + [2, 5760, 3595], + [3, 5757, 25], + "omputed-properties", + [2, 5762, 5763], + "destructuring", + [2, 5236, 5765], + [3, 5766, 25], + "otall-regex", + [2, 5767, 5768], + "uplicate-keys", + [2, 5767, 5770], + [3, 5771, 34], + "named-", + "capturing-groups-regex", + [2, 5773, 5774], + [2, 5772, 5775], + "ynamic-import", + [2, 5767, 5777], + "expo", + "nentiation-operator", + [2, 5779, 5780], + [2, 5236, 5781], + [3, 5782, 28], + "rt-namespace-from", + [2, 5783, 5784], + [3, 5240, 25], + "or-of", + [2, 5786, 5787], + "unction-name", + [2, 5786, 5789], + [3, 2854, 11], + [2, 5791, 591], + [2, 5236, 5792], + [ + 0, 1414, 2931, 2899, 8099, 1177, 3456, 4039, 4042, 4135, 8098, 1894, 4614, 91, 3401, 5601, 1006, 17529, 4057, + 5552, 4071, 1011, 8097 + ], + [0, 1177], + "literals", + [2, 5236, 5796], + [3, 5797, 25], + "ogical-assignment-operators", + [2, 5798, 5799], + [3, 5241, 25], + "ember-", + "ion-literals", + [2, 2026, 5803], + [2, 5802, 5804], + [2, 5801, 5805], + [3, 5241, 32], + "amd", + [2, 5807, 5808], + [2, 5807, 4376], + "umd", + [2, 5807, 5811], + [2, 5236, 5775], + [3, 5813, 25], + "ew-target", + [2, 5814, 5815], + "ullish-coalescing-operator", + [2, 5814, 5817], + [3, 5818, 26], + [2, 5819, 5728], + [2, 5236, 77], + [3, 5821, 31], + [2, 5822, 4340], + [3, 5821, 25], + [2, 5824, 5731], + [3, 5825, 34], + [2, 5826, 5734], + [3, 5640, 25], + "rivate-methods", + [2, 5828, 5829], + [3, 5830, 32], + [2, 5831, 5698], + [3, 5830, 26], + "operty-literals", + [2, 5833, 5834], + [3, 83, 25], + "egenerator", + [2, 5836, 5837], + [3, 5838, 26], + "d-words", + [2, 4146, 5840], + [2, 5839, 5841], + "short", + [2, 3619, 1228], + [2, 5843, 5844], + [2, 5236, 5845], + [3, 5846, 25], + [1, 2343, 5868], + "pread", + [2, 5847, 5849], + "ticky-regex", + [2, 5847, 5851], + [2, 5236, 1243], + [3, 5853, 25], + "ypeof-symbol", + [2, 5854, 5855], + "unicode-", + [2, 5857, 1106], + [2, 5236, 5858], + [3, 5859, 32], + [2, 4635, 1108], + [2, 5860, 5861], + [2, 5860, 1108], + "sets-regex", + [2, 5860, 5864], + [2, 88, 5260], + [2, 1593, 4097], + [0, 0, 0, 5869, 2523], + [0, 5284, 6939, 1177], + [1, 2343, 5871], + [0, 5872, 5884, 5885, 2537], + [ + 0, 8110, 1461, 8111, 1757, 2017, 8113, 6327, 8114, 3127, 3191, 8116, 3502, 8119, 3555, 3725, 3744, 8122, 4213, + 8123, 8126, 8127 + ], + "act-jsx", + [2, 5839, 5873], + [3, 5874, 30], + "display", + "-name", + [2, 5876, 5877], + [2, 5875, 5878], + "-development", + [2, 5874, 5880], + "pure-annotations", + [2, 5875, 5882], + [ + 0, 8129, 8130, 8132, 4856, 8136, 4863, 8139, 5087, 8141, 8144, 8146, 8147, 4874, 8149, 5090, 4880, 4883, 8152, + 8155, 4891, 8157, 4892, 1009, 1011, 8158, 1311, 1567, 1584, 1593, 1596, 1628, 1651, 1843, 8160, 8161, 1177, + 1938, 1959, 1961, 2135, 2651, 2675, 1192, 2822, 8163, 8165, 3190, 3471, 1894, 3720, 3775, 89, 3824, 3836, 4039, + 4167, 4201, 4307, 4315, 4468, 4474, 4484, 91, 8166, 1002, 2924, 4677, 4681, 4693 + ], + [0, 8168, 8170, 8171, 6975, 8172, 8173, 1745, 8175], + [1, 2343, 5887], + [0, 5890, 5892, 5893, 2537], + [3, 5856, 28], + [2, 5888, 1508], + [0, 8181], + [3, 1261, 12], + [0, 90, 972, 4880, 4883, 1030, 89, 3824, 8187, 1541], + [0, 8190, 8191, 5399, 4403, 8192, 8194, 89, 3824], + [1, 2343, 5895], + [0, 0, 0, 5897, 2537], + "pirates", + [0, 8199, 2414, 8201, 8203, 6941, 8204, 1623, 2278, 6400, 5122, 8206, 6884], + "clone-deep", + [1, 2343, 5900], + [0, 0, 0, 5901, 34352], + [0, 8199, 2414, 8201, 8203, 447, 8211, 1623, 2278, 6400, 5122, 8206, 6884], + [1, 2343, 5903], + [0, 5904, 0, 5905, 4139], + [0, 8218], + [0, 2414, 7176, 8220, 1017, 8221, 1367], + [1, 2343, 5907], + [0, 5904, 0, 5905, 2537], + [1, 2343, 5909], + [0, 0, 5910, 5911, 2487], + [ + 0, 53, 8229, 87, 90, 92, 192, 5467, 442, 449, 7008, 452, 6061, 21120, 6063, 966, 968, 972, 5087, 4880, 4883, + 1393, 1423, 1570, 1610, 1177, 1895, 1938, 1939, 1947, 1955, 1959, 1961, 1976, 1982, 2203, 2675, 1192, 2780, + 1894, 3720, 89, 3824, 4039, 4131, 4468, 4474, 4493, 91, 4523 + ], + [0, 8220, 2132, 89, 5284, 8221, 45], + [1, 2343, 5913], + [0, 5914, 5916, 5918, 34352], + [0, 3951], + "to-fast-properties", + [ + 0, 5087, 4874, 1009, 1011, 1177, 1879, 1883, 1895, 1938, 1939, 1947, 1955, 1192, 2794, 1894, 4468, 4469, 4474, + 4508, 91 + ], + [2, 29288, 594], + [0, 91, 5130, 36, 5995, 3469], + [1, 2343, 5920], + [0, 5937, 5958, 5964, 4139], + "@api", + "devtools/json-schema-ref-parser", + [2, 5921, 5922], + [3, 105, 13], + "web-", + [2, 5925, 4963], + [2, 5924, 5926], + [3, 221, 10], + "gherkin-streams", + [2, 5928, 5929], + "@iframe-resizer/child", + [3, 5931, 16], + "parent", + [2, 5932, 5933], + "awilix", + "bpmn-js", + [0, 8245, 457, 1804, 8248], + "of", + "-allof", + [2, 4381, 5939], + [2, 2845, 5940], + [3, 3107, 13], + "bbr", + [2, 5942, 5943], + "ttrs", + [2, 5942, 5945], + [3, 3112, 14], + "detabs", + [2, 5947, 5948], + "multim", + "d-table", + [2, 5950, 5951], + [2, 3108, 5952], + [3, 4923, 13], + "lantuml-ex", + [2, 5954, 5955], + "task", + [0, 8252, 4874, 1009, 1011, 1610, 1804, 8256, 1177, 1879, 1883, 1895, 1938, 1947, 1955, 1894, 4469, 4474, 4508, 91], + "-lists", + "task-lists", + [2, 3108, 5960], + "-viewer-element", + [2, 3512, 5962], + [0, 91, 5130, 1804, 36, 5995], + [1, 2343, 5976], + "prince", + "svg-", + "pan-zoom", + [2, 5967, 5968], + [3, 4369, 11], + [2, 5970, 1724], + "reso", + "urce-inliner", + [2, 5972, 5973], + [2, 5925, 5974], + [0, 5979, 5916, 5984, 34352], + "-scss", + [2, 4323, 5977], + [0, 457, 8263, 8264, 24156, 1364, 2863, 3951], + "md", + "bpmn", + "bdd", + "feature", + [0, 91, 5130, 2026, 3469, 36, 5995], + [1, 2343, 5986], + [0, 5987, 5988, 5991, 2487], + [0, 31740, 8271, 8272, 8273], + [0, 8275], + "exit-hook", + [2, 1152, 5989], + [0, 2220, 8277, 1745, 1783, 8278], + [1, 2343, 5994], + "loki", + [0, 5996, 5997, 5998, 2523], + "backend", + [0, 32359, 6446, 8273, 8272], + [0, 8286, 8275], + [0, 467, 2220, 8277, 1745, 1932, 1783, 8278], + [1, 2343, 6012], + [3, 107, 12], + "y-release-plan", + [2, 1133, 6001], + [2, 6000, 6002], + [3, 6003, 13], + "ssemble-release-plan", + [2, 6004, 6005], + [3, 5522, 25], + "onfig", + [2, 5518, 6008], + [2, 6000, 2656], + "dependen", + [0, 6013, 0, 6046, 2537], + [ + 0, 53, 87, 8292, 8294, 8296, 1165, 1195, 8297, 1593, 1610, 1628, 1630, 2092, 8301, 3177, 3561, 3618, 8304, 2278, + 8306, 4111, 4383, 4027, 2924, 4677 + ], + "ts-graph", + [2, 6011, 6014], + [2, 2183, 6015], + [2, 6000, 6016], + [3, 6017, 16], + "release-", + "plan", + [2, 6019, 6020], + [2, 6018, 6021], + [3, 6017, 13], + [2, 6023, 2403], + [2, 6000, 2942], + "pre", + [2, 6000, 6026], + [2, 6000, 3917], + "-skip-package", + [2, 4170, 6029], + [2, 6000, 6030], + [2, 6000, 553], + "write", + [2, 6000, 6033], + "@man", + "ypkg/get-packages", + [2, 6035, 6036], + "editor", + [2, 26670, 26671], + "human-id", + "mri", + "p-limit", + "pref", + "erred-pm", + [2, 6043, 6044], + [0, 2924, 8309, 8310, 4967], + "spawndamnit", + "term", + "term-size", + [1, 2343, 6051], + [0, 6053, 6054, 6060, 2487], + "@mui/x-internals", + [0, 8317, 8320, 8321, 8324, 8325, 8328, 8330, 8333, 8335, 8337, 8339, 8341, 8344, 8346, 8348, 8350, 8353, 8354], + [0, 8357, 5500, 8358, 8359, 8362, 8364, 4874, 2036, 2812, 91], + [3, 110, 23], + [2, 6055, 592], + [3, 449, 25], + "free", + [2, 6057, 6058], + [0, 5130, 27, 5592, 5122], + "@semantic-release/changelog", + [3, 6061, 18], + [2, 6062, 3358], + "hub", + [2, 6063, 6064], + [2, 1457, 20], + "peer-deps-external", + [2, 4049, 6067], + [1, 5293, 6075], + "chat", + "reactjs", + " interface", + [2, 4569, 6072], + "ui kit", + [0, 8391, 6087], + "unication", + [2, 1514, 6076], + "conver", + "sation", + [2, 6078, 6079], + "toolkit", + "library", + "reusable", + "feed", + "social", + "talk", + 1724872768784, + [1, 2343, 6089], + [0, 6090, 6091, 6093, 2523], + [0, 8506, 3776], + [0, 192, 5467, 8509, 8511, 6061, 6063, 16480, 1177, 2675, 2742, 8512, 2990, 1894, 4131, 1984], + "ckeditor", + [0, 1776, 1894, 4298, 1745, 5284], + "ckeditor 5", + "-feature", + [2, 1459, 6095], + [3, 6096, 10], + [2, 6097, 1932], + "dll", + [2, 6097, 6099], + [1, 2343, 6102], + [0, 6103, 6104, 6114, 2537], + [0, 5917], + [ + 0, 11976, 8520, 26364, 966, 968, 972, 974, 4874, 4880, 8524, 8527, 8528, 8529, 1030, 1091, 8531, 1092, 6685, + 8534, 8536, 6809, 7250, 1610, 8537, 8556, 8538, 7091, 8539, 2812, 2832, 8540, 3165, 8543, 8544, 8547, 3400, 89, + 3824, 3833, 3951, 7080, 7103, 91, 8550, 7114, 1983, 8552, 1984, 6482, 4763 + ], + "wysiwyg", + "rich text", + "Editable", + [2, 1563, 6107], + "edit", + "editing", + "angular2", + "angular 5", + "ng", + [ + 0, 6659, 7020, 7130, 6663, 3833, 6482, 2812, 7080, 91, 4763, 7114, 6809, 7091, 8558, 7209, 7250, 7103, 1091, + 7196, 6685, 8560, 8561, 8556, 29291 + ], + [1, 2343, 6116], + [0, 6117, 5795, 6118, 2537], + [0, 4548], + [0, 8571, 8572, 8573, 8570, 1885, 8574, 5592], + [1, 2343, 6120], + [0, 6121, 6122, 6123, 2523], + [0, 8579, 8582, 8585, 8181, 3021], + [0, 4039, 188, 4639], + [0, 188, 8588, 8591, 4967, 5130, 181, 12, 4627, 4963, 5001, 837], + [1, 2343, 6125], + [0, 6128, 6129, 6130, 2537], + [3, 153, 22], + [2, 6126, 2389], + [0, 7905, 542, 1668, 3021], + [0, 8597, 4039, 188, 4639], + [0, 188, 8588, 8591, 4967, 5130, 181, 4627, 4963], + [1, 2343, 6146], + "ditor-balloon", + [2, 151, 6132], + "@jest/pattern", + "oper", + "al transformation", + [2, 5218, 6136], + [2, 6135, 6137], + "ot", + "colla", + "boration", + [2, 6140, 6141], + [3, 6142, 11], + [2, 6143, 4936], + "real-time", + [0, 6149, 6150, 6151, 2537], + "build", + [2, 6097, 6147], + [0, 31874, 8604, 8605, 8611, 34224, 8612, 4174], + [0, 8616, 8608, 4874, 91], + [ + 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 8622, 1836, 8623, 1179, 8624, 6847, 8625, 2720, 8626, 8628, 5284, + 4403, 202, 6710, 3741, 8630, 3742, 8631, 3925, 8632, 8633, 4989, 2184, 8634, 7009, 6621, 181, 8635, 4758, 8636 + ], + [1, 2343, 6153], + [0, 6154, 6155, 6156, 2399], + [0, 4484, 2735, 8641], + [ + 0, 1192, 2278, 1437, 2020, 4146, 8643, 1177, 4042, 2151, 2774, 1894, 4320, 5087, 4874, 8645, 6376, 8647, 30071, + 4328, 8648, 8651, 8653, 8654, 8656, 8659, 8660, 8661, 1895, 1011, 8665, 816, 8669, 8671, 1009 + ], + [0, 2733, 5130, 8673, 5131, 1896, 8674, 8675, 1591, 1804, 8677, 8678], + [3, 6133, 27], + [2, 6157, 128], + [1, 2343, 6160], + [0, 0, 6161, 6162, 2537], + [0, 4874, 668, 1894, 4384, 4483, 4508], + [0, 200, 6876, 8691, 4964, 7201, 4719, 176], + [1, 2343, 6169], + [2, 117, 2414], + "lignment", + [2, 112, 6165], + [3, 132, 9], + [2, 6157, 6167], + [0, 6170, 0, 6171, 2537], + [0, 8697], + [0, 91, 1541, 3421, 1973, 4504], + [1, 2343, 6174], + [2, 6157, 134], + [0, 6175, 6176, 6177, 2537], + [0, 8703, 8710, 8712, 8714, 1461, 8716], + [0, 8719, 842, 968, 972, 974, 7677, 1177, 1895, 8724, 2832, 89, 3824, 91, 1983, 1984], + [0, 4627, 4963, 8727, 4964, 5130, 4967, 8728, 8729, 5128, 89, 181, 1487], + "blurhash", + [1, 2343, 6180], + [0, 6181, 6182, 6183, 2537], + [ + 0, 8744, 6134, 8752, 8762, 8755, 554, 4874, 1107, 1437, 1458, 29680, 2215, 8769, 8734, 8750, 8765, 8758, 2797, + 8771, 8737, 8739, 8746, 2798, 8747, 8741, 3170, 3717, 4207 + ], + [0, 8782, 8776, 8780, 8778], + [ + 0, 1166, 1172, 4504, 8784, 2022, 3497, 8786, 8787, 2765, 1192, 2832, 2899, 8788, 8790, 2907, 8791, 8795, 8745, + 4384, 4389, 1973, 5472, 91, 2282 + ], + [1, 2343, 6185], + [0, 6186, 0, 2514, 2537], + [0, 6134, 8801, 8809, 8806, 4874, 4892, 1437], + [1, 2343, 6188], + [0, 6189, 6190, 6191, 2487], + [0, 8818, 1091, 1092, 1209], + [ + 0, 549, 8826, 1009, 1011, 1166, 8832, 1177, 1895, 1938, 1955, 2832, 3421, 1894, 3875, 8824, 4039, 4042, 4052, + 4076, 4079, 4232, 4474, 4484, 4508, 91 + ], + [0, 1669, 25, 1781, 8836, 4967, 1179, 6847, 7020, 8838, 2860, 2844, 8839, 8691, 8841], + [2, 6097, 1095], + [1, 2343, 6194], + [0, 6195, 6196, 6198, 2523], + [0, 8846, 1673, 1209], + [ + 0, 7948, 370, 618, 622, 626, 811, 8850, 816, 6373, 4863, 5087, 4880, 4883, 1009, 1011, 8158, 1584, 1843, 1177, + 1895, 1938, 1955, 1959, 1192, 2780, 2832, 3421, 1894, 89, 3824, 4039, 4042, 4052, 8849, 8853, 4076, 4079, 4230, + 4468, 4469, 4484, 4508, 91, 2924, 4677, 4681, 555, 560 + ], + [3, 191, 21], + [0, 29, 3902, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], + "atchdog", + [2, 6197, 6199], + [1, 2343, 6202], + [0, 6203, 6204, 6205, 2487], + [0, 1209], + [ + 0, 8862, 4863, 5087, 8860, 4880, 4884, 1009, 1011, 8158, 1610, 1843, 1177, 1895, 1938, 1955, 1959, 1192, 2832, + 3421, 1894, 89, 3824, 3876, 3875, 8824, 4039, 4042, 4052, 4076, 4079, 4468, 4484, 4508, 91, 555 + ], + [0, 89, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], + [1, 2343, 6207], + [0, 6208, 6209, 2514, 2537], + [ + 0, 6059, 8918, 8923, 8928, 8926, 8934, 8921, 8913, 8931, 8932, 8894, 8916, 8892, 8897, 8906, 8900, 8887, 8910, + 8902, 8890 + ], + [0, 8937, 5087, 1192, 4039, 91], + [1, 2343, 6211], + [0, 6212, 6213, 6218, 34352], + [ + 0, 1110, 1282, 1437, 1537, 8942, 2070, 8944, 2822, 8947, 3072, 3181, 3188, 8949, 4039, 8951, 8952, 8954, 8957, + 8959, 4431, 4562, 4600, 4603, 8962 + ], + [0, 1173, 8966, 1255, 1264, 1596, 1672, 2835, 2899, 3421, 8967, 4100, 4193, 4255, 4597], + "ndo", + [2, 183, 6214], + "select-all", + [2, 117, 6216], + [0, 2278, 4329, 1623, 2295, 1745, 4298, 699], + [1, 2343, 6220], + [0, 0, 0, 6221, 2399], + [0, 8980, 8984, 8987], + [1, 2343, 6223], + [0, 6224, 6225, 6226, 2523], + [0, 8605], + [0, 546, 8997, 8998, 2992], + [0, 2991, 2992, 200, 5957, 3392, 9000, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921], + [1, 2343, 6228], + [0, 6229, 6230, 6231, 2487], + [0, 8703, 1497, 3867, 9008, 9011, 4507], + [0, 89, 3824], + [0, 4963, 4964, 4967, 6082, 3286, 3287, 89, 181, 630], + [1, 2343, 6233], + [0, 6234, 6230, 6235, 4139], + [0, 1497], + [0, 9026, 4963, 1666, 4967, 6082, 3286, 3287, 3811, 89, 6901, 181, 630], + [1, 2343, 6237], + [0, 0, 0, 6238, 2523], + [0, 4967, 582, 6082, 3286, 3287, 89, 6687, 6649], + [1, 2343, 6240], + [0, 0, 6230, 6241, 2487], + [0, 4963, 8622, 4967, 6082, 5066, 3286, 3287, 89, 181, 630], + [1, 2343, 6243], + [0, 6244, 6230, 6245, 2487], + [0, 9041, 3911], + [0, 4963, 4967, 6082, 3286, 3287, 9044, 9045, 9047, 89, 181, 630], + [1, 2343, 6247], + [0, 6248, 0, 6249, 2537], + [0, 9054, 595], + [0, 89, 3286, 3287, 181, 4963, 630, 6082, 4967, 1501, 5342, 5341, 9057], + [1, 2343, 6251], + [0, 6252, 0, 6253, 2399], + [0, 1497, 1639], + [0, 89, 3286, 3287, 181, 6082, 4967, 1832, 7165, 7297], + [1, 2343, 6255], + [0, 0, 0, 6256, 2523], + [0, 89, 3286, 3287, 6082, 4967, 6687, 582, 6649], + [1, 2343, 6258], + [0, 6259, 0, 6260, 2537], + [0, 1497, 3847, 3559, 3744, 97, 9075, 9076, 9071, 9074, 3911, 2609, 4808], + [0, 89, 5128, 5027, 3132], + [1, 2343, 6262], + [0, 6263, 0, 6264, 2537], + [0, 97], + [0, 89, 5128, 5027, 3132, 45], + [1, 2343, 6266], + [0, 0, 6267, 6273, 2537], + [ + 0, 1192, 3348, 2675, 1177, 1209, 1593, 4474, 4508, 1894, 1317, 48, 1193, 91, 53, 5087, 7819, 3400, 4870, 107, + 192, 5366, 87, 1978, 3957, 1895, 1955, 4514, 92, 603, 9089, 1011, 5467, 1009, 61, 78, 76 + ], + "color-parse", + "color-", + "convert", + [2, 6269, 6270], + "vanilla-colorful", + [0, 1781, 5592, 9091, 9093, 1753, 9094, 4525, 91, 4799, 5995, 6400], + [1, 2343, 6275], + [0, 6276, 0, 6277, 2523], + [0, 9100], + [0, 1219, 1783, 9102, 89, 3984], + [1, 2343, 6279], + [0, 6280, 6281, 6282, 2399], + [0, 608, 606, 1687, 1209, 3181, 814, 4135, 4227, 91, 9111, 9110, 9113, 9119, 9121], + [0, 9125, 4870, 5251, 5254, 1177, 29339, 9130], + [0, 91, 8172, 9132, 9133, 9134, 8623, 1745, 6432, 4056, 7897, 4042, 6374, 4643, 9135, 9136], + "@aws/durable-execution-sdk-js", + "vue.js", + "vue component", + " component", + [2, 6284, 6286], + [1, 2343, 6289], + [0, 0, 6290, 6291, 2537], + [0, 1177, 9125, 9141], + [0, 6869, 1745, 2295, 4298, 9132, 57, 4255], + [1, 2343, 6293], + [0, 6294, 6295, 6291, 2537], + [0, 1091, 9153, 814, 606], + [0, 1177, 9156, 5251, 9125, 9141], + [3, 192, 12], + [2, 6296, 1671], + [2, 6296, 671], + [3, 6298, 13], + "oad", + [2, 6299, 6300], + [2, 6296, 3917], + [2, 6296, 553], + [1, 2343, 6310], + [3, 6303, 13], + [2, 6305, 4467], + [2, 6296, 594], + [3, 4872, 14], + [2, 6308, 1698], + [0, 0, 6311, 6312, 2523], + [0, 6283, 33639, 9163, 9167, 4874], + [0, 9169, 9170, 9171, 9172, 9173, 9174, 33959, 33964], + [1, 2343, 6314], + [0, 6321, 6322, 6340, 4139], + [3, 195, 10], + [2, 6315, 2997], + "ngd-transformer", + [2, 6315, 6317], + ".native", + [2, 1367, 6319], + [0, 615], + [0, 609, 9167, 4507], + "decache", + "-plugin-", + [2, 6324, 3665], + [2, 3079, 6325], + "lunr", + "openc", + "ollective-postinstall", + [2, 6328, 6329], + "os-name", + "pdfmake", + "sort", + "tablesort", + "vis-network", + [2, 6337, 6338], + [3, 10088, 18], + "-list", + [2, 10217, 6341], + [0, 9169, 9170, 9171, 9172, 9173, 9174, 9182, 9183, 8172, 6671, 9184, 9186], + "icky", + [3, 197, 10], + [2, 6342, 553], + [1, 2343, 6350], + "semantic", + "actor", + "messages", + [2, 698, 9352, 6349, 10029], + "scroll-b", + [0, 0, 6353, 6356, 2537], + [2, 6352, 1633], + [3, 6348, 22], + [0, 9193, 609, 9167, 4874, 9196], + "cms", + "management", + [0, 9169, 9170, 9171, 9172, 9173, 9174, 1383, 614], + [1, 2343, 6358], + [0, 0, 0, 6359, 2523], + [0, 9203, 4967, 9204, 1283], + [1, 2343, 6361], + [0, 6362, 6363, 6364, 2537], + [0, 9213, 9215, 9217, 9218, 9219, 9221], + [ + 0, 192, 5467, 9225, 9226, 8648, 9227, 6494, 9231, 9237, 4874, 5542, 24360, 9240, 9241, 1170, 1364, 1527, 1594, + 1610, 1652, 9242, 2026, 9243, 9244, 2131, 2212, 2559, 2832, 3310, 9245, 4218, 4220, 9247, 4339, 4342, 1531, 91, + 4548, 1984, 9250, 9252, 9255, 2924, 9258, 4729 + ], + [0, 705, 9261, 27, 2671, 4738, 4731, 1612, 9262, 3212, 4158, 5472], + [1, 2343, 6366], + [0, 6263, 0, 6367, 2537], + [0, 89, 5128, 9267, 3132, 5027, 45], + [1, 2343, 6394], + "@doc", + "search/js", + [2, 6369, 6370], + "@popperjs/core", + [2, 812, 4068], + "bundle", + "bundlewatch", + [2, 1462, 20], + "find-u", + "nused-sass-variables", + [2, 6377, 6378], + "hammer", + "-simulator", + [2, 6380, 6381], + "hugo-bin", + "-istanbul-reporter", + [2, 2886, 6384], + [2, 1868, 2903], + [2, 2898, 6386], + "mbine-duplicated-selectors", + [2, 3573, 6388], + [2, 4049, 2759], + "twbs-bootstrap", + [2, 4942, 6391], + "vnu-jar", + [0, 6397, 0, 6401, 2487], + "-first", + [2, 5131, 6395], + [0, 1497, 9272, 9273, 3744, 624, 97], + "responsive", + "front-", + "front-end", + [0, 89, 5128, 9267, 3132, 5027, 620], + [1, 2343, 6403], + [0, 6404, 0, 6405, 2537], + [0, 1497, 1639, 3847, 9272, 9273, 3744, 624, 97, 6372, 3911, 9284, 4808], + [0, 89, 5128, 9267, 3132, 5027], + [1, 2343, 6407], + [0, 6408, 0, 6409, 34352], + [0, 1497, 1639, 9272, 9273, 3744, 97, 4782, 9293], + [0, 89, 5128, 9267, 623], + [1, 2343, 6411], + [0, 6412, 0, 6414, 2537], + [0, 97, 9273, 4808, 1497, 3744, 3911, 6052], + "media", + [0, 89, 5128, 9267, 9300, 3132, 5027, 3812, 9301, 9302], + "media query", + [1, 2343, 6417], + [0, 6418, 6419, 6420, 2523], + [ + 0, 9307, 9308, 9310, 9311, 9312, 9313, 9315, 9316, 9317, 1461, 1473, 9319, 9321, 9322, 2070, 2226, 9324, 9327, + 9329, 9334, 9337, 9340, 3988, 9343, 9347, 9348, 9351, 4507, 4549, 4555, 2924, 9354, 9355 + ], + [0, 9357, 9359, 9362, 9363, 4880, 4891, 1165, 1540, 3286, 3613, 89, 3824, 3958, 4383, 4493, 91, 9364, 9367, 9368], + [0, 9102, 1745, 3287, 1783], + "matches", + "polyfill", + [3, 3668, 9], + "lugin", + [2, 6423, 6424], + "pseudo", + [1, 2343, 6428], + [0, 6429, 0, 6430, 34352], + [0, 9375, 9376, 9378, 9379], + [0, 1098, 1745, 1179, 9381, 9382, 5592, 9383, 9384], + [1, 2343, 6438], + [3, 4325, 11], + [2, 6432, 591], + [3, 217, 11], + "utility", + "variables", + "vars", + [0, 6439, 0, 6430, 2443], + [0, 4484, 628], + [1, 2343, 6441], + [0, 6442, 0, 6430, 2523], + [0, 3958, 9393, 3971, 3978, 7610, 9396, 9401, 2584, 4555, 9405, 9407, 9409, 1437, 9348, 4549, 4292], + "specificity", + [1, 2343, 6445], + [0, 6459, 6460, 6480, 2523], + [2, 6447, 25240], + [3, 465, 19], + [3, 221, 11], + "i-environment", + [2, 6448, 6449], + [2, 3228, 5709], + [2, 221, 6451], + [3, 5930, 17], + [3, 5930, 18], + [2, 6454, 594], + [2, 2617, 4525], + [2, 5928, 6456], + "message", + [0, 9414, 1690, 1431, 9417], + [ + 0, 1429, 1363, 2899, 1177, 9420, 4039, 9422, 4474, 2182, 1894, 91, 4856, 4874, 9424, 1325, 1951, 1938, 1895, + 1955, 1011, 9426, 1009, 634, 9431, 9437 + ], + "-streams", + [2, 6458, 6461], + [2, 5928, 6462], + [3, 6463, 17], + [2, 6464, 591], + "tag-expressions", + [2, 5928, 6466], + [3, 5710, 9], + "-error-formatter", + [2, 6468, 6469], + "capital-case", + [2, 4250, 57], + [2, 3827, 6472], + "has-ansi", + "knuth-shuffle-seeded", + [2, 3060, 5056], + "resolve-pkg", + "argv", + "string-argv", + [0, 9439, 9440, 9422, 5472], + "util-arity", + "yup", + [1, 2343, 6506], + "ompa", + "tibility-kit", + [2, 6484, 6485], + [2, 6448, 6486], + [2, 5928, 3766], + "-xml", + [2, 4856, 6489], + "@types/d", + "irty-chai", + [2, 6491, 6492], + [2, 4861, 674], + "@types/h", + "as-ansi", + [2, 6495, 6496], + [2, 6309, 5056], + "@types/l", + "uxon", + [2, 6499, 6500], + "@types/m", + [2, 6502, 1950], + "ustache", + [2, 6502, 6504], + [0, 6531, 6534, 2514, 2523], + "@types/mz", + [3, 5090, 10], + "gress", + [2, 6508, 6509], + "inon-chai", + [2, 5051, 6511], + [3, 6512, 12], + "js__fake-timers", + [2, 6513, 6514], + [3, 4890, 9], + "-buffers", + [2, 2187, 6517], + [2, 6516, 6518], + "@types/tmp", + "exclude", + [2, 1432, 6521], + "xml", + "chai-xml", + [2, 5313, 671], + "genversion", + "reindent-template-literals", + "stream-t", + "o-string", + [2, 6528, 6529], + [ + 0, 9501, 9452, 9510, 638, 9496, 9493, 641, 9479, 9456, 9459, 643, 9449, 9448, 9485, 2613, 9472, 3084, 3181, + 3368, 9465, 3386, 9462, 3397, 3483, 9476, 3727, 9447, 9490, 9469, 4135, 4248, 9451, 9455 + ], + "gherkin", + "tests", + [0, 9516, 26037, 9515, 1317, 9520, 3297, 4384, 4393, 9512], + [1, 2343, 6536], + [0, 6537, 6538, 6542, 2523], + [0, 9493, 9479, 2070, 3181], + [0, 9516, 9515, 4384], + [3, 6503, 10], + "k-fs", + [2, 6539, 6540], + [0, 3378, 3409, 2977, 200, 9527, 637], + "-compare", + [2, 5254, 6543], + [3, 6512, 9], + "gnale", + [2, 6545, 6546], + "mock-pro", + "cess", + [2, 6548, 6549], + [2, 2769, 6550], + [2, 4135, 6543], + "signal", + "signale", + [1, 2343, 6556], + [0, 0, 6538, 6558, 2399], + "deven", + [0, 3378, 200, 640], + [1, 2343, 6560], + [0, 6561, 6562, 2514, 2487], + [0, 641, 9479, 9539, 640, 3727, 4707], + [0, 9516, 9515, 9542, 4384], + "toobject", + [3, 3568, 10], + "urable", + [2, 1541, 6565], + "promises", + "ReactiveX", + "WeakSet", + "ES3", + [1, 2343, 6576], + "cloudsearch", + "uninstall", + "windows", + "cjk", + [0, 6595, 6603, 6604, 2523], + "negative", + "shar", + "shared", + "Symbol.toStringTag", + "full-width", + "Object", + "Array.prototype.flatMap", + "Uint8", + "ClampedArray", + [2, 6584, 6585], + "start", + "starter", + "infer", + "ence", + "inference", + [3, 6583, 17], + "indLast", + [2, 6592, 6593], + [ + 0, 9547, 9548, 9550, 3105, 2745, 9552, 9554, 9556, 9558, 9560, 9562, 3023, 9563, 4110, 7610, 9565, 9566, 3032, + 9568, 3114, 9569, 9573, 9577, 5961, 9580, 9584 + ], + "replay", + "[[Prototype]]", + "es7", + "cloud", + "ion", + "formation", + [2, 6599, 6601], + [0, 2070, 2899, 1448, 4255, 9586, 1389, 9588, 4257], + [0, 9591, 3987, 2195, 9593, 1783, 5980, 1745, 9595, 1936, 3378], + "look", + "last", + "regular expression", + "ECMAScript 2023", + "hot", + "rm -fr", + "chinese", + [1, 5293, 6617], + "consume", + "look-up", + "ES8", + "rgb", + [0, 8391, 6628], + "deep-copy", + "iam", + "ES2022", + "tty", + "status", + "length", + "view", + "dom-t", + "esting-library", + [2, 6625, 6626], + 1734998400000, + "elb", + [1, 2343, 6655], + "getter", + [3, 6608, 13], + "19", + [2, 6632, 6633], + "macos", + "__proto__", + "asserts", + "deepclone", + [3, 2779, 11], + [2, 6639, 591], + "crypt", + [3, 6634, 14], + "8", + [2, 6642, 6643], + "push", + "monorepo", + "lone", + "fast-clone", + "state", + "lru", + [2, 1177, 1541], + "endpoint", + "a11y", + "weakmap", + [0, 6656, 0, 6658, 2537], + [0, 666], + "streams2", + [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 9627, 9628], + "scheme", + ".json", + [2, 3383, 6660], + "ajax", + "hookform", + [1, 2343, 6672], + "autoscaling", + "packages", + "linux", + "rfc4122", + [3, 2069, 10], + [2, 6669, 1585], + "JSON", + [0, 6675, 0, 6658, 2399], + "matchAll", + "iterate", + [0, 3420, 4484], + [1, 2343, 6679], + "structuredClone", + "trim", + [0, 6682, 0, 6658, 2537], + "@cfcs/core", + [3, 3518, 11], + [0, 683], + "findLast", + [1, 2343, 6699], + "arktype", + [3, 3833, 10], + [2, 6686, 591], + "prototype", + "sigint", + "sinatra", + "Object.", + "value", + "values", + [2, 6691, 6693], + "reduce", + "reducer", + "Function.prototype.name", + "lockfile", + [0, 6712, 6717, 6658, 2523], + "full", + "fullwidth", + "groupBy", + "wait", + "duplex", + "css less", + "helpers", + "optimize", + "optimizer", + "emr", + "nodejs", + "defineProperty", + [0, 29309, 1797, 4484, 4135, 4748, 3181, 1836], + "pyyaml", + "call", + "bind", + "callbind", + [0, 1192, 3420], + "styleguide", + [1, 2343, 6722], + "watchFile", + "code ", + [0, 6730, 6736, 6744, 2537], + "code points", + "Index", + [2, 6683, 6724], + "Map", + "flatMap", + "l10n", + "WebSocket", + [0, 4484, 677, 666, 3527, 27921, 4480], + "utilities", + "high", + "er-order", + [2, 6732, 6733], + "dataview", + [0, 3420], + "handling", + [2, 3827, 6737], + "define", + "ebs", + [2, 1177, 1932], + "estree", + [2, 6642, 2855], + [0, 9621, 9647, 9623, 9628, 9648, 9649], + [1, 2343, 6756], + "ES2015", + [3, 6608, 11], + [2, 6747, 1278], + "operati", + "ng-system", + [2, 6749, 6750], + "RegExp#flags", + "loading", + "range", + "rangeerror", + [0, 6757, 6736, 6767, 2537], + [0, 4484, 677, 4135, 666, 91], + "accessor", + "ESnext", + "limited", + "RFC-6455", + "URLSearchParams", + "es-shim API", + "col-buffers", + [2, 4900, 6764], + "lesscss", + [0, 9621, 9623, 9657, 9658, 9628, 9659], + "nce", + "sequence", + " system", + "file system", + [1, 2343, 6785], + "pnpm9", + "metadata", + "YAML", + [3, 3405, 12], + "ES2023", + "es2015", + "simpledb", + "hasOwn", + [2, 5010, 6972], + "debugger", + " zero", + [2, 6577, 6783], + [0, 6815, 0, 6819, 34352], + "fast-copy", + "spinners", + "predictable", + "ES6", + "rm", + [3, 6583, 16], + "contain", + "contains", + [2, 6791, 6793], + "japanese", + [3, 6608, 14], + [2, 6796, 1274], + [2, 20413, 2659], + "byteOffset", + "setter", + "Object.keys", + "flags", + "key", + "ender", + "ponyfill", + [2, 20413, 8124], + "logging", + "sns", + [2, 4626, 1155], + "ses", + "output", + "worker", + "export", + [2, 1204, 6813], + [0, 4484, 677, 682, 666], + "tester", + "waf", + "setImmediate", + [0, 9621, 9624, 9667, 9626, 9627, 9628, 9649], + "typedarrays", + "walking", + "descriptor", + [1, 2343, 6826], + "hardlinks", + "buffers", + [0, 6833, 6736, 6851, 2443], + "typesafe", + "Set", + "CSS", + "es-abstract", + "agegateway", + [2, 4268, 6831], + [ + 0, 1437, 4484, 2687, 4135, 1513, 9673, 3530, 666, 3527, 27921, 53, 1710, 2858, 3404, 683, 97, 29309, 87, 4232, + 7913, 9676, 92, 83, 71, 5757, 9678 + ], + [2, 6838, 1172], + "cloudfront", + "7", + [2, 6642, 6836], + [3, 13067, 16], + "ES2019", + [2, 6855, 6872], + "reuse", + "acter", + "character", + "prese", + "rve-symlinks", + [2, 6844, 6845], + "input", + [3, 1461, 9], + "Underscore", + "ec2", + [0, 9621, 9623, 9624, 9680, 9681, 9628, 9648, 9649], + [1, 2343, 6861], + "indicator", + "AsyncIterator", + "@vue/cli", + "performant", + "folder", + "Stream", + "0", + "ES2020", + [0, 6862, 0, 6880, 2537], + [0, 4484, 677, 682, 666, 672, 9687], + [2, 6822, 591], + "te", + "delete", + "arraybuffer", + [2, 6579, 6866], + "emit", + "TypeScript", + "batch", + "rds", + [3, 4075, 18, 6], + [2, 6896, 11100], + "Uint16Array", + "password", + [3, 1519, 12], + " manager", + [2, 3383, 6877], + "mru", + [0, 9621, 9624, 9625, 9626, 9627, 9628, 9649], + "byteLength", + "rate", + "css ", + "variable", + [2, 6883, 6884], + [1, 2343, 6895], + "speed", + "own", + "has-own", + ".env", + "elm", + "ast", + "6", + [2, 6747, 6893], + [0, 6900, 6736, 6880, 4139], + "@vue/cli-", + " compiler", + [2, 695, 6897], + [3, 3938, 9], + [0, 4484, 677, 4774, 29540, 666, 26784, 672, 18052], + "time", + [2, 1955, 12054], + "bundling", + [2, 6916, 1987], + "Uint32Array", + [1, 2343, 6908], + "minimal", + [0, 6909, 6736, 6658, 34352], + [0, 3420, 1437, 4484, 4135, 1836, 3530, 666, 4748, 29309], + "collection", + " css", + "nested css", + "slice", + "has", + "sorted", + [3, 4079, 15], + "iteration", + "ES2021", + "Float32Array", + "regular", + "idle", + "column", + "Iterator", + [1, 2343, 6927], + "throttle", + "guid", + [0, 6928, 6934, 6936, 2537], + [0, 687, 9704, 9706, 9708, 1676, 4135], + "watching", + "sqs", + "vue 3", + "less css", + "glacier", + [0, 9712, 4856, 6503, 4874, 5254, 1429, 1488, 1567, 1177, 1891, 1893, 9714, 2205, 2899, 4193, 4474, 91], + "sett", + [0, 1890], + "settings", + "ascii", + [3, 1920, 13], + "break", + "inter", + [1, 2343, 6978], + "internal", + [2, 6691, 3437], + [2, 6747, 6836], + "Array", + "Buffer#slice", + [2, 6946, 6947], + "s3", + "shrinkwrap", + "sham", + "art", + "safe", + ":*", + [2, 664, 6954], + [3, 6677, 9], + [2, 2382, 6956], + "Property", + [2, 6780, 6958], + "korean", + "regexp", + [2, 1367, 6911], + "beanstalk", + "ES5", + [2, 3632, 6911], + "take", + [3, 6962, 10], + [2, 6967, 695], + "tdd", + "jQuery", + "enum", + "-vanilla", + "enumerable", + "hot-shots", + "JSON-Schema", + "workflow", + "CSSStyleDeclaration", + [0, 6982, 6984, 6936, 2523], + "route53", + "wordbreak", + "columns", + [0, 9704, 9706, 1676, 2205, 2755, 4484], + "formatting", + [0, 4856, 9723, 4870, 6503, 4874, 9725, 8610, 1429, 1567, 1177, 1891, 1893, 9714, 1209, 2899, 3752, 4474, 91], + "one", + "fastclone", + "shebang", + "number", + [1, 2343, 6992], + "ache", + "elasticache", + [0, 6995, 6999, 7000, 2537], + [2, 6838, 7005], + "concurrency", + [0, 1107, 1112, 9730, 1480, 1676, 1797, 2179, 2709, 2755, 2984, 3181, 4135, 4290, 4351, 27921, 9731, 4720, 4726], + "bundler", + "amazon", + "toSorted", + [ + 0, 5467, 19438, 691, 9712, 9736, 9737, 5366, 4856, 9417, 9740, 5245, 9741, 9723, 6503, 4874, 9743, 6513, 9746, + 9749, 8610, 1317, 1429, 1431, 1529, 1610, 1177, 1891, 1895, 2675, 2990, 9750, 2899, 3421, 1894, 4172, 4193, + 4474, 4481, 91 + ], + [0, 1890, 200, 1523, 9753, 57, 7058, 6478], + "chromium", + "obj", + "await", + "move", + "unit-mocha", + "symlink-dir", + "persistent", + [2, 11169, 7036], + "terminal", + "coercible", + "ES2016", + [1, 2343, 7013], + [0, 7030, 7032, 7034, 2487], + "identifiers", + "includes", + "swf", + "readable", + "protobuf", + "form-", + "validation", + [2, 7019, 7020], + "RxJS", + "busy", + "fps", + [2, 6965, 1278], + "-0", + "Observable", + "mixins", + "parents", + [0, 688], + "typeof", + [ + 0, 5467, 19438, 9736, 9737, 4856, 6503, 4874, 1429, 1529, 1177, 1891, 1895, 2675, 2990, 2899, 1890, 1894, 4172, + 4474, 91 + ], + "interrupts", + [0, 9760], + "fastcopy", + "brands-svg-icons", + "prune", + [3, 6583, 20], + [2, 7038, 2395], + [2, 7027, 591], + "Microtask", + [2, 3768, 7041], + [1, 2343, 7063], + "es2018", + "circular", + "streams", + "runtime", + "make", + "serializ", + [2, 7049, 5218], + "limit", + "Dispatcher", + [2, 2013, 7052], + "balancing", + [2, 3001, 7054], + "es2016", + "WebSockets", + "args", + "ath", + "jsonpath", + [2, 6796, 1276], + "visual", + [0, 7066, 7068, 7079, 2537], + "positive", + "es-shim", + [0, 7725, 9767, 9771, 9774], + "every", + [0, 9778, 9781, 9783, 9785, 9786, 4874, 7677, 668, 2086, 2070, 3297, 1894, 9794, 91, 4548, 1984], + "trimRight", + "mimetypes", + "handlers", + "ratelimit", + "signals", + "rmdir", + "es8", + "findup", + "stable", + "robust", + [0, 9796, 2195, 4030, 9797], + "superstruct", + ".es6", + [2, 6910, 7081], + "intrinsic", + [3, 6948, 11], + "curl", + "symlinks", + "ES2018", + [1, 2343, 7093], + "writable", + "rapid", + "io-ts", + "weak", + [0, 7095, 0, 7097, 2537], + "throat", + [ + 0, 9804, 9807, 9810, 9811, 9813, 9815, 9819, 9821, 9829, 9834, 9838, 9841, 9843, 9846, 9848, 9849, 9850, 9852, + 9855, 9856, 9858, 9861, 9862, 9864, 9866, 9869, 9871, 9873, 9874, 9875, 9878, 9933, 9935, 9937, 9938, 9940, + 9941, 9945, 9949, 9953, 9955, 9957, 9960, 9964, 9967, 9969, 9971, 9974, 9977, 9979, 9983, 9985, 9986, 9989, + 9991, 9993, 9996, 9998, 10001, 10004, 10006, 10007, 10009, 10013, 10014, 10016, 10019, 10021, 10024, 10026, + 10027, 10030, 10032, 10034, 10037, 10041, 10044, 10047, 10048, 10049, 10051, 10053, 10055, 10058, 7127, 10060, + 10063, 10065, 10066, 10068, 10075, 10077, 10081, 10083, 10084, 6336, 10088, 10092, 10094, 10097, 10102, 10105, + 10107, 10110, 10114, 10117, 10119, 10126, 10128, 28711, 10130, 10131, 10132, 10134, 10135, 10137, 10139, 10142, + 10144, 10145, 10146, 10147, 10149, 10151, 10153, 10156, 10159, 10162, 10163, 10165, 10167, 10170, 10173, 10178, + 10180, 10183, 10186, 10188, 10191, 10193, 10195, 10197, 10198, 33633, 10200, 10201, 10203, 10204, 10206, 10207, + 10208, 33138, 10210, 10213, 10216, 10219, 6339, 10223, 10226, 10228, 10229, 10230, 10231, 10234, 10235, 34233, + 10237, 10239, 10241, 10245, 10247, 10248, 10249, 10250, 10253, 10255, 10260, 10262, 10264, 10267, 10269, 10272, + 10273, 10275, 10276, 10278, 10280, 10283, 10285, 10290, 10291, 10292, 10293, 6348, 6351, 10295, 10300, 10302, + 10304 + ], + "restful", + [0, 188, 8588, 4967, 10307, 4963, 10309, 10310, 10313, 10315], + "deep-clone", + "Rx", + "symlink", + "vpc", + "whatwg", + "typanion", + "Float", + "64Array", + [2, 7104, 7105], + "$.extend", + "Promise", + "Reactive", + "Extensions", + [2, 7109, 7110], + [1, 2343, 7113], + [0, 7118, 7124, 7097, 2523], + "vest", + "from", + "-package", + [2, 3250, 7116], + [0, 28591, 29506, 1473], + "parsing", + "or", + [2, 4358, 7120], + ".inspect", + [2, 614, 7122], + [0, 10321, 4493], + "fromEntries", + [2, 6691, 7125], + [2, 10056, 1631], + "getopt", + "-validation", + [2, 6659, 7129], + "filter", + "Emitter", + [2, 2013, 7132], + "URL", + "fixed-width", + [1, 2343, 7137], + [0, 0, 7138, 7097, 4139], + [0, 48, 53, 87, 2071, 2323, 2332, 2361, 2367, 2450, 10327, 10328, 4039, 4320, 4323, 4361], + [1, 2343, 7140], + [0, 0, 7142, 7097, 4139], + "encryption", + [0, 48, 53, 87, 2323, 2332, 2361, 2450, 4039, 4320, 4323], + [1, 2343, 7154], + "TypedArray", + "isConcatSpreadable", + "StyleSheet", + "create", + "mkdir", + "mkdirs", + "zero", + "sameValueZero", + "linewrap", + "side", + [0, 0, 0, 7156, 2537], + "listeners", + [0, 10337, 10339, 10340, 5122, 5995, 977], + "censor", + "watcher", + "typeerror", + [1, 2343, 7166], + "make dir", + "bound", + "patch", + "in-js", + "css-in-js", + [0, 7173, 0, 7186, 2537], + "deepcopy", + "setPrototypeOf", + "characters", + "pipe", + [2, 6747, 2855], + "Push", + [0, 10347, 10348, 703, 10351, 10353, 10354, 10355, 10357], + "trail", + "cloudtrail", + "awesome", + "sauce", + [2, 7176, 7177], + "banner", + "redux-t", + "oolkit", + [2, 7180, 7181], + "dete", + "rministic", + [2, 7183, 7184], + [0, 10337, 10339, 10340, 5122, 5995, 990, 705], + [1, 2343, 7195], + "extension", + "lazy", + [3, 1705, 10], + [2, 7190, 6877], + "es2017", + "search", + "ES2017", + [0, 7203, 0, 7206, 2523], + "TypeBox", + " in css", + [2, 6436, 7197], + "Streams", + "aws", + "console", + "Reflect.getPrototypeOf", + [0, 10363, 3171, 10367, 10351, 703, 10370, 10373, 706, 711, 10374], + "directory", + [2, 6607, 591], + [0, 10337, 10339, 10340, 5122, 5995, 10376], + [1, 2343, 7216], + "colour", + "nope", + "flag", + [3, 2982, 14], + "syntaxerror", + [3, 3904, 10], + [2, 7213, 1974], + "kinesis", + [0, 7217, 0, 7225, 2537], + [0, 3171, 10382, 10373], + "rm -rf", + "exit-", + "exit-code", + "ES7", + "jsdiff", + "private", + "slot", + [0, 10337, 10339, 10340, 5122, 5995, 10376, 710, 10384], + "sigterm", + "group", + "less.js", + "gdpr", + "east-asian-width", + [3, 6820, 10], + "Int32Array", + "argument", + "compile", + " less", + [2, 7234, 7235], + [1, 2343, 7238], + [0, 7240, 7243, 7246, 2537], + "callbound", + [0, 10389, 1170, 1364, 1437, 2026, 2220, 2222, 2659, 2674, 2817, 1209, 3776, 10397, 38, 13781], + "callback", + "installer", + [ + 0, 48, 53, 87, 10401, 4856, 9417, 6494, 10406, 4870, 6503, 10410, 4874, 10413, 6513, 6512, 24164, 1009, 1011, + 1429, 1431, 10417, 1587, 1177, 1881, 1883, 1895, 1915, 10419, 1938, 1951, 2899, 3297, 3421, 1894, 3752, 4039, + 4193, 4196, 4232, 4494, 91 + ], + "256", + "tostringtag", + [0, 10426, 10427, 5284, 10430, 5472, 10432], + " data", + [2, 7223, 7247], + "uted-types", + [2, 1534, 7249], + "nel", + "channel", + "iterator", + "mapreduce", + [2, 7017, 3101], + [3, 5804, 10], + [1, 2343, 7261], + "less mixins", + [2, 6796, 6859], + "forEach", + [0, 0, 0, 2514, 2399], + "description", + "Symbol", + [1, 2343, 7266], + "generics", + [0, 7267, 0, 7269, 2487], + [0, 3509], + "stdlib", + [0, 6649, 6355, 89, 188, 3709, 1542, 91, 5284, 4967, 5995, 2202, 181, 2130, 38], + "typed array", + [1, 2343, 7273], + "call-bound", + [0, 7274, 7277, 2514, 2537], + [0, 10593, 10594, 10596, 10597, 10600, 10602, 10603, 10604, 10605, 10606, 10608], + "WeakMap", + [2, 6691, 3426], + [0, 4856, 6503, 1429, 1628, 1863, 2297, 2881, 2895, 2897, 2900, 2904, 2899, 4039, 4940, 4307, 4508, 91, 2924], + [1, 2343, 7279], + [0, 0, 7280, 7281, 2537], + [ + 0, 8648, 10614, 816, 10615, 966, 968, 13204, 4874, 10616, 1637, 1177, 28727, 10619, 32765, 10621, 2203, 2832, + 3561, 3566, 1894, 10624, 10627, 3980, 10630, 10632, 4042, 4057, 4076, 4333, 4474, 4484, 4494, 4508, 10633, 4514, + 10636, 10638, 10639, 10643, 30098, 91, 10646, 4614, 32507 + ], + [ + 0, 6653, 7320, 10655, 10650, 10648, 1623, 4964, 9204, 10657, 10656, 1745, 10052, 10667, 1936, 10661, 4374, 3430, + 5284, 10651, 10663, 4386, 10665, 10658, 10654, 10659, 91, 8295, 4270, 28842, 89, 582 + ], + "stateless", + [3, 6670, 11], + [2, 7283, 6647], + "telephone", + "some", + "efficient", + "_.extend", + "wget", + [3, 6594, 18], + "lter", + [2, 7290, 7291], + "remove", + [1, 2343, 7302], + "soft", + "Microsoft", + "styling", + "ie", + "HyBi", + "Int16Array", + "cloudwatch", + [0, 7304, 7306, 2514, 2537], + "css nesting", + [0, 10675], + "mime-db", + [ + 0, 10708, 10703, 10691, 10706, 1178, 10688, 1700, 10677, 1937, 2151, 10697, 2323, 2338, 2384, 2419, 2496, 2508, + 10686, 10678, 3159, 3493, 10683, 10681, 4431, 91, 10687 + ], + [1, 2343, 7312], + "dynamodb", + [2, 6642, 6893], + "phone", + "Int8Array", + [0, 7314, 7321, 7322, 4139], + ".prototype.flags", + [ + 0, 1091, 1758, 4449, 10739, 2070, 2278, 1149, 9892, 10761, 4747, 1177, 4039, 4135, 4072, 4734, 2026, 10752, + 10756, 1290, 1457, 1764, 2720, 1894, 4171, 1513, 10753, 10757, 1389, 10754, 2689, 3160, 3310, 53, 3429, 10760, + 104, 10759, 58, 692, 4228, 10746, 101, 10737, 4005, 4562, 5216, 10748, 87, 10738, 10755, 90, 10721, 1942, 3957, + 68, 10723, 2851, 10744, 4851, 92, 10731, 10734, 10751, 5874, 10728, 5756, 10720, 5818 + ], + [3, 7313, 11], + [2, 7315, 6913], + [2, 7084, 7316], + "access", + "ibility", + [2, 7318, 7319], + [0, 4389, 10763, 4232], + [0, 10765, 4643, 200, 5130, 6400, 10766, 5131, 10768, 5995, 8889, 10769, 10771, 5256, 10772, 7028, 5198], + [1, 2343, 7324], + [0, 0, 7325, 7326, 34352], + [0, 1177, 6059, 10777, 10779, 10780, 10783, 10785, 1613, 1615, 10786, 2151, 2735, 10788, 27921, 33050], + [0, 10791, 5130, 10792, 45, 10793], + [1, 2343, 7328], + [0, 7329, 7330, 7331, 34352], + [0, 3763, 2813, 10800, 10799, 2771], + [ + 0, 2675, 89, 4426, 1177, 4042, 1651, 2924, 1894, 10852, 3824, 4270, 91, 5087, 4874, 4880, 10846, 10858, 3889, + 10855, 10810, 192, 10837, 4883, 3885, 10805, 4057, 10808, 2686, 1959, 1879, 1938, 4073, 10848, 10854, 10828, + 10831, 972, 1895, 1947, 1955, 811, 10851, 10821, 4023, 10817, 10840, 968, 1011, 1961, 10815, 10841, 10811, 816, + 10825, 974, 10827, 4531, 5467, 1883, 10844, 1009, 6068, 10836, 5700 + ], + [0, 89, 4426, 10860, 10863, 10865, 10866, 10867, 10868, 4967], + [1, 2343, 7333], + [0, 7334, 7335, 7337, 2523], + [0, 26364, 5917, 2696, 3875, 3950, 4022], + [ + 0, 5517, 53, 5652, 603, 10874, 10875, 10876, 966, 972, 30788, 974, 10879, 10883, 7729, 10886, 4874, 10887, 4880, + 4883, 4892, 1009, 1011, 1170, 668, 10888, 1177, 1895, 1898, 1935, 1938, 1947, 1955, 1959, 1961, 2151, 2731, + 2832, 2854, 3244, 3310, 1894, 3765, 89, 3824, 4039, 4201, 4484, 4493, 4494, 91, 8550, 8552, 1984, 4747 + ], + "quote", + [0, 3875, 89, 6588, 6081, 6696, 6913, 2696, 2700, 7182], + [1, 2343, 7339], + [0, 7340, 7341, 7342, 2537], + [0, 10895, 10897, 2007, 20378, 10898, 3090, 3530], + [0, 8850, 816, 10902, 10904, 4042, 4227, 4232, 91], + [0, 4042, 1932, 3378, 5260, 10906, 3209], + [1, 2343, 7344], + [0, 7345, 7346, 7347, 2399], + [0, 10895, 5251, 1699, 10912, 814], + [0, 53, 5889, 5583, 811, 8850, 1856, 4042, 4227, 10916], + [0, 4042, 1932, 6778, 3378, 5260], + [1, 2343, 7352], + [2, 7350, 7351], + [3, 818, 9], + "gent-chat", + [0, 7354, 7355, 7356, 2537], + "microdiff", + [ + 0, 1415, 4449, 1594, 1983, 1437, 2205, 3188, 3539, 668, 2026, 10923, 2602, 4213, 1457, 10947, 10925, 10927, + 10929, 2858, 10930, 10931, 10933, 10935, 606, 10936, 10939, 10940, 1030, 10942, 608, 603, 9110 + ], + [ + 0, 10944, 3348, 89, 1177, 4039, 10946, 1984, 1894, 3824, 6520, 91, 9227, 4874, 7819, 2990, 4880, 4892, 3401, + 10949, 6494, 4883, 4131, 4315, 10951, 1959, 1895, 1947, 1955, 1011, 1961, 3708, 10960, 1009, 10964 + ], + [0, 10946, 9134, 6869, 8172, 10966, 8623, 1745], + [1, 2343, 7359], + [2, 819, 6706], + [0, 7360, 7361, 7362, 2523], + [ + 0, 10973, 10981, 10984, 2161, 7610, 7353, 3266, 188, 7349, 10990, 10992, 28910, 11005, 7358, 10975, 10995, 8079, + 29841, 10996, 10978, 7374, 10999, 11003, 28843 + ], + [ + 0, 23531, 8648, 29273, 11016, 5337, 11018, 2611, 2832, 89, 11022, 4383, 1983, 11026, 11033, 1984, 11039, 7387, + 11041, 28988 + ], + [0, 4627, 1745, 3452, 11043, 4386, 8124, 188, 8588], + [1, 2343, 7364], + [0, 7365, 7366, 7367, 2537], + [0, 11049, 7610, 10975, 8079, 7387], + [0, 11051, 6798, 6806, 2078, 1983, 1984, 4745, 818, 11039], + [0, 5592, 1745, 2078, 3452, 8124], + [1, 2343, 7369], + [0, 7370, 7371, 7372, 2537], + [0, 11064, 11065, 11066, 1699, 11071, 11073], + [ + 0, 11075, 11076, 11079, 11080, 11082, 11083, 4856, 6494, 11085, 6503, 1170, 1364, 1414, 1610, 2026, 2633, 2899, + 11086, 3750, 4261, 4474, 91 + ], + [ + 0, 13428, 1388, 11862, 11861, 11857, 8210, 11088, 8214, 27718, 8791, 181, 4967, 1098, 89, 188, 5982, 6969, 1973, + 5472 + ], + [1, 2343, 7376], + [2, 7375, 582], + [3, 11003, 12], + [0, 7377, 7378, 7379, 2399], + [0, 11064, 11065, 11066, 11093, 1699, 11073], + [0, 11075, 6503, 11096, 11105, 11109, 11111, 11112, 1170, 1414, 1610, 2899, 11086, 11113, 4261, 824], + [ + 0, 13428, 1388, 11862, 11861, 11857, 8210, 11088, 8214, 27718, 8791, 181, 4967, 5982, 6969, 1973, 5472, 824, + 11116, 11117 + ], + [1, 2343, 7381], + [0, 7382, 7383, 2514, 2537], + [0, 11124], + [0, 11126, 11130, 11133, 11134, 11138, 668, 2675, 2832, 2990, 2899, 3421, 1894], + [2, 10829, 45], + [1, 2343, 7386], + [0, 7388, 7389, 7390, 2537], + [2, 11004, 23], + [0, 89, 3824, 11143, 602, 7384, 11146, 11151], + [ + 0, 1983, 89, 4451, 3555, 29318, 3824, 16485, 91, 9311, 3975, 4880, 30157, 6271, 7610, 32415, 3120, 10895, 28829, + 3968 + ], + [0, 1739, 1745, 4270, 29043, 10824, 11156, 29045, 1783, 29181, 6718, 25172, 4627, 4963, 89, 188, 1098, 3709, 5926], + [1, 2343, 7392], + [0, 7393, 7394, 7395, 2487], + [ + 0, 11161, 11164, 5145, 11168, 97, 8597, 449, 11172, 452, 456, 11175, 11179, 11182, 11185, 11186, 11188, 1325, + 11189, 1461, 1582, 1673, 11191, 11192, 5561, 11193, 11196, 11197, 11199, 11201, 11202, 11204, 11207, 5060, + 11208, 11210, 11212, 11213, 11216, 11219, 11220, 11221, 11223, 11224, 11225, 11228, 11231, 11233, 3787, 11235, + 11236, 11238, 11240, 11242, 3788, 11244, 11246, 11249, 11251, 3789, 3810, 11253, 11257, 11261, 3906, 11264, + 4426, 4427 + ], + [ + 0, 5076, 53, 11267, 11271, 368, 7948, 11273, 11274, 10875, 11275, 10821, 10825, 10827, 10828, 11277, 11282, + 11285, 10837, 10841, 11288, 966, 968, 972, 974, 11290, 5087, 11292, 11296, 11300, 11301, 4870, 8149, 11303, + 11305, 4880, 11307, 4882, 4883, 11312, 11315, 11317, 11320, 11322, 1009, 1011, 11325, 11331, 11333, 1195, 11335, + 1437, 1448, 1610, 11336, 1789, 11343, 8161, 1177, 1879, 1895, 1915, 1924, 1938, 1939, 1947, 1948, 1959, 1961, + 10851, 1982, 2071, 11345, 2151, 2193, 2070, 2665, 2675, 2686, 2696, 2697, 2720, 2758, 1192, 11347, 2771, 2780, + 2784, 11348, 11350, 2814, 2832, 11356, 5102, 2990, 1209, 11357, 3213, 3445, 1894, 3703, 3717, 3725, 3730, 3763, + 11360, 11362, 11363, 89, 3807, 3817, 3820, 3824, 4934, 11366, 11368, 11371, 11374, 3885, 11377, 11378, 3984, + 3985, 11380, 11382, 11383, 4135, 4183, 4201, 4320, 11384, 11389, 4323, 11396, 11397, 4072, 4474, 4508, 91, + 11400, 4676, 11401, 11405 + ], + [0, 5127, 4627, 4963, 4964, 5130, 4967, 89, 5128, 181], + [1, 2343, 7397], + [0, 7398, 7399, 7400, 2537], + [0, 11413, 11416, 11417, 11420, 11421, 11422, 2161, 1209, 11428, 11434, 4443, 3348], + [0, 549, 4870, 11438, 7819, 1759, 1999, 3400, 3421, 11439, 4469, 11440, 4494, 1984, 4677, 4693], + [0, 11442, 11443, 11445, 11446, 11449, 11448, 11450, 11451, 11452, 11453, 11454], + [2, 11425, 7402], + "-fork", + [2, 12213, 7404], + [3, 12229, 13], + [1, 2343, 7407], + [2, 7408, 594], + [0, 7409, 7399, 7400, 2523], + [3, 7403, 15], + [0, 11413, 11416], + [1, 2343, 7411], + [0, 7412, 7413, 7400, 2537], + [0, 11417, 11420, 11421, 11422, 7401, 2161, 2674, 1209, 11426, 3310, 11428, 11430, 11434, 4443, 3348], + [ + 0, 11436, 4870, 4874, 11438, 7819, 1166, 1759, 3400, 1894, 11439, 4469, 4474, 11440, 4487, 4490, 91, 2924, 4677, + 4693 + ], + [1, 2343, 7415], + [0, 7416, 7417, 7418, 2487], + [0, 2203], + [0, 107, 7844, 11470, 1177, 1895, 1953, 1972, 3709, 91, 4523], + [0, 1177, 1541, 7625, 3709], + [1, 2343, 7420], + [0, 7421, 7422, 7423, 2523], + [0, 26364, 23826, 11477, 1082, 977, 11478, 11479, 2929, 3090, 11480, 11481, 5152, 4200], + [0, 13471, 8648, 840, 11485, 4874, 5162, 11486, 4042, 3709, 4359, 91, 1983, 1984], + [0, 5130, 11489, 3709, 5167, 1983], + [1, 2343, 7425], + [0, 7427, 7428, 7429, 2523], + "location", + [0, 30023, 11501, 1699, 3090, 11497], + [0, 2278, 1983, 3709, 5245], + [0, 11504, 11506, 1983, 3709], + [1, 2343, 7431], + [0, 7432, 7434, 7435, 2523], + [0, 53, 11516, 87, 90, 92, 11518, 11520, 11522], + "routing", + [0, 1195, 3150, 4027, 2924], + [0, 11525, 8221, 89, 2924, 11526], + "redirect", + [1, 2343, 7438], + [0, 7439, 7440, 7441, 2523], + [0, 11533, 11534], + [0, 11536, 28491, 1610, 91], + [0, 11538, 11539, 1172, 91, 9561, 2924, 11540], + [1, 2343, 7443], + [0, 7444, 7445, 7446, 2523], + [0, 1367, 6372], + [ + 0, 2070, 2323, 1192, 2278, 4039, 3561, 1894, 1587, 2504, 4320, 2464, 91, 4874, 1165, 2482, 3678, 4330, 11598, + 11592, 11591, 11595 + ], + [0, 4329, 4963, 5926, 11600, 11601, 6082, 8727, 181, 4967], + [1, 2343, 7448], + [0, 0, 2667, 7449, 2399], + [ + 0, 11608, 11609, 11612, 11613, 190, 11615, 11617, 4967, 91, 5284, 11619, 11622, 11624, 11626, 11627, 11630, + 11631, 11633, 11634, 11636, 11639, 11640, 32767 + ], + [1, 2343, 7451], + [0, 4424, 4429, 4442, 2537], + [1, 2343, 7453], + [0, 7454, 7455, 7456, 34352], + [0, 97, 1562, 4484], + [ + 0, 53, 83, 87, 92, 19181, 442, 8648, 5583, 811, 816, 6373, 10615, 11796, 4874, 1009, 1011, 1208, 1177, 1895, + 11935, 11938, 11940, 11943, 3401, 1894, 4042, 11802, 4172, 11803, 91 + ], + [0, 965, 1936, 11806, 11807, 5284, 11815, 8221, 91], + [1, 2343, 7458], + [0, 7459, 7460, 2514, 2537], + [0, 11821], + [0, 972, 30788, 4880, 4883, 1030, 1597, 3401, 89, 3824, 5564, 7464, 27122], + "pkgroll", + [1, 2343, 7468], + "create-vue", + [2, 7467, 7472], + [2, 7466, 7469], + "create-e", + [3, 11821, 16], + [0, 7459, 7470, 7471, 2523], + "slint-config", + [0, 3709, 4355, 5160, 1972, 11827, 1011, 27122, 840], + [0, 32401, 3766, 3709], + "persist-client-core", + [1, 2343, 7474], + [0, 7475, 7476, 7477, 2537], + [0, 11833], + [0, 11835, 5087, 1009, 11837, 1177, 1886, 11840, 1895, 1955, 1958, 1192, 2780, 2821, 1776, 3165, 4468, 4469, 91], + [0, 11842, 11843, 11846, 11847, 6875, 4967, 5576, 4978], + [1, 2343, 7479], + [0, 7480, 7481, 7482, 2523], + [0, 97, 966], + [0, 1651, 91, 11853, 3400], + [0, 5472, 1651, 181, 965, 11857, 6564, 11861, 11862], + [1, 2343, 7484], + [0, 7485, 7486, 7487, 2537], + [0, 11357, 11869, 3527, 3717, 97, 51, 11868, 11871], + [0, 2832, 91, 11853, 1393, 1423, 11875, 968, 11884, 11879], + [0, 5472, 181, 965, 2832, 2275, 11857, 6564, 11861, 11862], + [1, 2343, 7489], + [0, 7490, 7491, 7492, 2537], + [0, 11891, 11869, 11890, 3527, 63, 11871], + [0, 2832, 2022, 4042, 1984, 91, 11853, 11893, 3717, 11899, 811, 11884, 11896], + [0, 5472, 965, 1192, 2832], + [1, 2343, 7494], + [0, 7495, 7496, 7497, 2399], + [0, 1437, 11891, 2777, 3717, 11907], + [ + 0, 1192, 2675, 89, 1177, 1894, 48, 1527, 91, 53, 5087, 4880, 3720, 3857, 97, 4131, 5091, 3904, 11909, 1652, + 4889, 5085, 5103, 11912 + ], + [0, 5472, 1975, 1192, 3857], + [1, 2343, 7499], + [0, 6263, 7500, 7501, 2523], + [0, 966, 968, 4880, 4883, 1437, 11918, 2777, 11853, 3401, 89, 3824, 4039, 91], + [0, 5472, 89, 181, 965, 2832, 2275, 11857, 6564, 11861, 11862], + [1, 2343, 7503], + [0, 0, 7504, 7505, 2537], + [ + 0, 2742, 2832, 89, 2022, 668, 4474, 11944, 3824, 11890, 91, 11853, 4880, 11875, 11952, 11943, 11931, 11938, + 11929, 966, 11948, 11935, 972, 11933, 11940, 968, 5556, 11925, 6515, 1915, 11924 + ], + [0, 7214, 6627, 89, 5472], + [1, 2343, 7507], + [0, 7508, 0, 7509, 2487], + [0, 10347, 11959, 978, 989, 991, 993, 996], + [0, 11961, 38, 5995, 27, 5130, 5592], + [1, 2343, 7511], + [0, 0, 0, 7512, 34352], + [0, 11961, 10339, 10340, 5122, 5995, 977], + [1, 2343, 7514], + [0, 0, 0, 7515, 2443], + [0, 11961, 10339, 10340, 5122, 5995, 2947, 977], + [1, 2343, 7520], + "fp", + "drag", + "react ", + [0, 7533, 7536, 7537, 2537], + "animation", + [2, 7519, 7521], + "pure", + "fantasy-land", + [2, 4570, 7046], + [3, 5941, 12], + [2, 7526, 1155], + "framer", + [3, 7527, 19], + [2, 7529, 6600], + "pose", + "tacit", + [0, 11974], + "balanced", + "react pose", + [0, 1414, 4494, 2675, 91, 4874, 975, 11976, 192, 11978, 5467], + [0, 11961, 10339, 10340, 5122, 5995], + [1, 2343, 7539], + [0, 0, 0, 7540, 2487], + [0, 11961, 10339, 10340, 5122, 5995, 984], + [1, 2343, 7542], + [0, 0, 0, 7543, 34352], + [0, 11961, 10339, 10340, 5122, 5995, 986, 11988, 10345], + [1, 2343, 7545], + [0, 7546, 0, 7547, 2537], + [0, 987], + [0, 11961, 10339, 10340, 5122, 5995, 988, 2739, 11995, 11996], + [1, 2343, 7549], + [0, 7550, 0, 7551, 2487], + [0, 10347, 12003, 1001, 1003], + [0, 11961, 10339, 10340, 5122, 5995, 990, 705], + [1, 2343, 7553], + [0, 7554, 0, 7555, 2537], + [0, 11974, 3171, 12011, 978, 980, 12016, 991, 997], + [0, 11961, 10339, 10340, 5122, 5995, 10376], + [1, 2343, 7557], + [0, 7558, 0, 7559, 4139], + [0, 11959], + [0, 11961, 10339, 10340, 5122, 5995, 38], + [1, 2343, 7561], + [0, 7562, 0, 7563, 2523], + [0, 3171, 985, 12027], + [0, 11961, 10339, 10340, 5122, 5995, 10376, 710, 10384], + [1, 2343, 7565], + [0, 7566, 0, 7567, 34352], + [0, 3171, 12027], + [0, 11961, 10339, 10340, 5122, 5995, 990, 705, 1000, 5284], + [1, 2343, 7569], + [0, 0, 0, 7570, 2487], + [0, 11961, 10339, 10340, 5122, 5995, 990, 705, 1002, 3634, 3766], + [1, 2343, 7572], + [0, 0, 0, 7573, 2523], + [ + 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, + 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, + 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, + 12094 + ], + [1, 2343, 7575], + [0, 7576, 0, 7577, 34352], + [0, 12099, 12103, 12104, 12105, 4484], + [0, 12108, 7188, 5995, 11100, 6740, 5592], + [1, 2343, 7579], + [0, 7580, 7581, 7586, 2443], + [0, 2687, 5569, 12118, 1012, 12121, 12123, 12124, 5604], + [0, 1091, 3127, 1984, 1894, 12126, 9363, 4880, 3117, 12127, 4555, 8818, 7677, 3137, 12133, 5551, 12137], + [2, 7583, 7584], + [3, 439, 8], + "react/eslint-plugin", + [2, 5557, 26375], + [0, 1177, 6741, 6939, 91], + [1, 2343, 7588], + [0, 7589, 7590, 7591, 2487], + [0, 1676, 5552, 12124, 5604, 12145], + [0, 1984, 7677], + [0, 6892, 5286, 5284, 91, 57, 5341, 1177], + [1, 2343, 7593], + [0, 7596, 7590, 7599, 2523], + "point-free", + "curried", + [0, 5552, 439, 5604, 12145], + "gestures", + "3d", + [0, 1177, 91, 6742], + [1, 2343, 7601], + [0, 7602, 7622, 7626, 4139], + [ + 0, 365, 370, 12159, 1461, 12160, 12163, 1832, 12166, 12170, 2609, 1209, 12172, 3220, 3744, 12173, 11202, 12175, + 11216, 11224, 3787, 3789, 3849, 11374, 3911, 4023, 4163, 4649, 12176 + ], + [3, 346, 11], + "abs-extension", + [2, 7603, 7604], + "cssfilter", + "root-node-polyfill", + [2, 2183, 7607], + "slugger", + [2, 2287, 7609], + "deflist", + [2, 3108, 7611], + [3, 5953, 13], + "eta", + [2, 7613, 7614], + "sup", + [2, 3108, 7616], + [3, 3125, 13], + "rule-", + [2, 7619, 6706], + [2, 7618, 7620], + [ + 0, 48, 53, 61, 71, 83, 85, 87, 90, 92, 192, 5467, 968, 972, 4859, 5540, 4870, 12179, 4880, 4883, 1009, 1011, + 12182, 12184, 1170, 1178, 1193, 1195, 12186, 1210, 12191, 12193, 1527, 12195, 1628, 1652, 1843, 1845, 8160, + 1177, 1959, 1961, 2092, 2151, 2651, 2675, 1192, 12196, 11348, 12198, 2990, 3177, 3222, 3463, 1894, 3786, 89, + 3824, 3895, 3904, 4257, 4307, 4320, 4946, 12201, 12205, 12206, 91, 4537, 4027, 2924, 4676, 4677 + ], + [3, 346, 10], + [2, 7623, 5891], + [3, 1879, 13], + [0, 89, 5128, 4627, 4963, 4967, 12208], + [3, 3703, 9], + [2, 7627, 1541], + [1, 2343, 7649], + "sconfig", + [2, 7603, 7630], + "@types/css", + "ithub-slugger", + [2, 5246, 7633], + [3, 4869, 9], + "-yaml", + [2, 7635, 7636], + "arkdown-it", + [2, 6502, 7638], + "-attrs", + [2, 7639, 7640], + "anitize-html", + [2, 5051, 7642], + [2, 1368, 4406], + [2, 668, 7644], + [3, 5961, 13], + "estgen", + [2, 7646, 7647], + [0, 7652, 0, 7653, 2523], + "yandex", + "yfm", + [ + 0, 1497, 2813, 1209, 3266, 12224, 9355, 12220, 12226, 12233, 12217, 12222, 2626, 12215, 12219, 12232, 12216, + 7406, 7403 + ], + [0, 6108, 6038, 5130, 1936, 12236, 1932, 6106, 12214, 6105], + [1, 2343, 7655], + [0, 7670, 0, 7691, 2523], + "magic-", + "bytes.js", + [2, 7656, 7657], + [3, 347, 11], + [2, 7659, 614], + "discord-", + "api-types", + [2, 7661, 7662], + "@sapphire/snowflake", + [2, 7659, 6910], + [3, 7664, 10], + "async-queue", + [2, 7666, 7667], + "@vladfrangu/async_event_emitter", + [0, 1018, 1025], + "turbo", + [2, 7659, 3888], + [3, 4828, 16], + [2, 7673, 1803], + "@vite", + "st/coverage-v8", + [2, 7675, 7676], + "@favware/cliff-jumper", + "-pretty", + [2, 4525, 7679], + [2, 1876, 7680], + "extract", + "extractor", + [2, 4610, 7683], + [2, 7659, 7684], + "esbuild-", + "plugin-v", + "ersion-injector", + [2, 7687, 7688], + [2, 7686, 7689], + [0, 10039, 12244, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], + "discordapp", + "discordjs", + [1, 2343, 7695], + [0, 7696, 0, 7697, 2537], + [0, 12253], + [0, 1017, 12255, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], + [1, 2343, 7699], + [0, 7670, 0, 7700, 2537], + [0, 6847, 12260, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], + "generated", + [1, 2343, 7703], + [0, 7704, 0, 7705, 4139], + [0, 12265, 1025], + [0, 1022, 12268, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], + [3, 5923, 13], + [2, 4364, 57], + [2, 7706, 7707], + "@aws-sdk/client-s3", + [2, 7623, 5576], + [1, 2343, 7712], + [0, 0, 0, 7732, 2487], + "ranslation", + [2, 3118, 7713], + [2, 7623, 7714], + [3, 7715, 11], + "ermaid-extension", + [2, 7716, 7717], + "openapi-", + [2, 7719, 7188], + [2, 7623, 7720], + "yfm2xliff", + [2, 352, 7722], + [3, 692, 9], + [2, 7724, 364], + [3, 4869, 11], + "-safe", + [2, 2849, 7727], + [2, 7726, 7728], + "@yandex-cloud/nodejs-sdk", + "bem-cn-lite", + [0, 594, 12274, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], + "nanostores", + "threads", + [2, 7734, 4406], + [1, 2343, 7741], + [2, 4807, 1149], + [3, 4856, 10], + "lk", + [2, 7738, 7739], + [0, 7742, 7753, 7754, 2523], + [0, 3763, 1594, 2026, 1000, 1536, 12286, 12285, 12287, 12284, 1032], + "tml-escaper", + [2, 6495, 7743], + "ime-types", + [2, 6502, 7745], + [3, 5055, 9], + "elljs", + [2, 7747, 7748], + "@types/t", + "ar-stream", + [2, 7750, 7751], + [0, 1192, 4135, 4468, 4342, 1193, 91, 53, 9227, 5087, 4874, 12292, 11976, 6494, 12290, 9240, 7806, 7708], + [0, 12294, 4967, 970, 12295, 12296, 5983, 6802], + [2, 12302, 26070], + [1, 2343, 7757], + [0, 7764, 7765, 7766, 2537], + [3, 7639, 15], + [2, 7758, 671], + [3, 7730, 14], + [2, 7760, 7625], + [2, 7760, 7628], + [2, 7760, 2190], + [0, 34690, 12301, 7733, 28314, 7755, 12305, 12307, 28554], + [ + 0, 4481, 4494, 4493, 1983, 2675, 1177, 4039, 12309, 1984, 668, 3561, 23535, 4320, 3350, 3541, 28464, 4201, 4360, + 91, 4874, 2990, 3400, 4880, 29000, 29038, 11976, 30684, 17214, 4328, 33264, 33385, 34203, 4523, 34205, 7677, + 33382, 5517, 5530, 34207, 4323, 12312, 32818, 5535, 12315, 30630, 11396 + ], + [ + 0, 11608, 12318, 12319, 12322, 12324, 12326, 12328, 12329, 12331, 11612, 12334, 12336, 11010, 12337, 12338, 190, + 12339, 4967, 91, 12342, 12346, 12348, 12349, 12350, 11619, 11622, 11624, 12354, 12355, 11640 + ], + [1, 2343, 7768], + [0, 7769, 7770, 7771, 2523], + [0, 1593, 4376, 53, 1393, 3090, 87, 3957, 12361, 5658, 5660, 5778, 5810], + [0, 20378, 1983, 1082, 1531, 3527], + [0, 4967, 1983, 11504, 1028], + [1, 2343, 7773], + [0, 7774, 7775, 7776, 2487], + [0, 53, 12370, 12372, 28465, 10879, 3878], + [0, 30521, 89, 3824, 28865, 1531], + [0, 1172, 27158, 89, 3878, 1983, 11504], + [1, 2343, 7778], + [0, 7779, 7780, 7781, 2523], + [0, 1012, 2071, 4523, 4630], + [0, 5536, 4874, 1177, 1988, 2020, 7461, 1894, 4494, 91, 1984, 188], + [0, 188, 7463, 7465, 1177, 91], + [1, 2343, 7783], + [0, 7784, 7785, 7786, 2399], + [0, 1091, 1092, 12384, 2657, 12385, 3509, 38, 4151, 7707, 5971, 4745], + [0, 2026, 2899, 4255, 4342], + [0, 2026, 3452, 8124, 1745], + [3, 980, 17], + [2, 7787, 57], + "encrypt", + "encrypter", + [2, 1576, 7790], + [2, 3115, 1623], + [2, 2287, 7792], + "greenlock-express", + "memoryst", + [2, 7795, 147], + "minisearch", + "selfsigned", + "sitemap", + "sql.js", + "workerpool", + [1, 2343, 7825], + "ody-parser", + [2, 4853, 7803], + "mpression", + [2, 4860, 7805], + "-session", + [2, 6494, 7807], + "ormidable", + [2, 5537, 7809], + "mpts", + [2, 6508, 7811], + [3, 7643, 9], + [2, 7813, 367], + "ql.js", + [2, 5051, 7815], + "@types/u", + "uid", + "@types/uuid", + "@types/w", + "orkerpool", + [2, 7820, 7821], + "wasm", + [2, 7686, 7823], + [0, 7829, 7830, 7831, 2523], + "razor", + "sqlite", + "aspx", + [ + 0, 12393, 12394, 11275, 842, 12396, 9363, 12397, 12399, 12400, 12403, 1461, 12405, 12406, 1582, 1699, 12409, + 1835, 12412, 12415, 12419, 7610, 12421, 2572, 2579, 2584, 12422, 2613, 2646, 12424, 2822, 3070, 12427, 12429, + 3412, 3547, 9054, 12431, 3725, 3786, 11219, 11240, 3788, 11244, 3789, 3810, 5564, 3846, 12435, 12438, 3963, + 12441, 3978, 12443, 9340, 3988, 3992, 3999, 2278, 7799, 12444, 12445, 4549, 4555, 12447, 1002, 12448, 12449, + 12452 + ], + [ + 0, 192, 5467, 7634, 12455, 12458, 7637, 12459, 4874, 12461, 8149, 4880, 4882, 4883, 12462, 12463, 12467, 1177, + 10321, 2071, 2079, 12471, 12472, 2675, 2990, 1894, 3706, 3708, 89, 3824, 4320, 4474, 91, 1984, 12473, 12475 + ], + [0, 1179, 12445, 2924, 89, 12478, 12479, 1783, 4963, 1745], + [1, 2343, 7835], + "@dnd-kit/core", + [3, 7833, 9], + [0, 0, 7841, 7843, 2537], + "modifiers", + [2, 7834, 7836], + "sortable", + [2, 7834, 7838], + [2, 7834, 6731], + [0, 4874, 1009, 1011, 1177, 1881, 1938, 4039, 4042, 4076, 91], + "ui-components", + [0, 5995, 12586, 12588, 12589, 12590, 12592, 12593], + "@stylistic/eslint-plugin-js", + [3, 7844, 11], + [2, 4324, 1932], + [2, 7845, 7846], + [1, 2343, 7852], + "@wordpress/api-fetch", + [3, 7849, 11], + "block-", + [0, 7853, 7859, 7860, 2537], + [0, 12600], + "ion-", + [2, 7854, 1464], + [2, 7682, 7855], + [2, 5313, 7856], + [2, 7850, 7857], + [ + 0, 53, 5241, 87, 94, 12602, 12604, 6503, 4874, 1145, 1503, 12607, 1177, 2297, 2881, 2886, 2895, 12609, 2897, + 2900, 2910, 2899, 3400, 3421, 3456, 4039, 4042, 4045, 12611, 4055, 4067, 4071, 4075, 12613, 4474, 12614, 91 + ], + [0, 12616, 7102, 2013, 2018, 12617, 12618, 12621, 12622, 12620, 6553, 1858], + [1, 2343, 7864], + [2, 7153, 694], + [2, 5335, 7862], + [0, 7865, 7866, 7867, 2523], + [0, 3173, 12627], + [0, 3421, 2899, 1177, 1693, 1954, 1938, 1958, 1903, 1948, 1970], + [0, 1563, 12631, 8316, 1080], + "promis", + "ify-", + [3, 1455, 13], + [2, 7869, 7870], + [2, 7868, 7871], + "swc-loader", + [1, 2343, 7875], + [0, 7876, 7878, 7879, 2523], + [0, 1149, 1362, 1209, 3230, 1552], + "ol", + [0, 2899, 1429], + [0, 2663, 1081, 5122], + "mixin", + "WordPress", + [1, 2343, 7883], + [0, 7884, 0, 2514, 2399], + [0, 1082], + [1, 2343, 7886], + [0, 7896, 7898, 7899, 4139], + [3, 4872, 15], + "amelcase", + [2, 7887, 7888], + [3, 7746, 9], + "nimist", + [2, 7890, 7891], + [3, 5090, 9], + "etty-ms", + [2, 7893, 7894], + [0, 1170, 1437, 1525, 2088, 2151, 2720, 3467, 7956, 4183], + ".d.ts", + [0, 811, 8850, 816, 10615, 12654, 4864, 12656, 4866, 4874, 4039, 4042, 8849, 11054, 4076, 12206, 4484, 4487, 91], + [0, 200, 1085, 188, 89, 12659, 12660, 91, 6710], + "definitions", + [1, 2343, 7902], + [0, 0, 7903, 7904, 2537], + [0, 1429, 2685, 2899, 1894, 4039], + [0, 2056, 3164, 12666, 4560], + [2, 363, 3428], + "memoize", + [2, 363, 7906], + [3, 370, 10], + "erialize", + [2, 7908, 7909], + [3, 1212, 14], + "acros", + [2, 7911, 7912], + "root", + "find-root", + [1, 2343, 7918], + "stylis", + [0, 0, 7923, 7924, 2523], + [3, 5272, 14], + "d-nodes", + [2, 7919, 7920], + [2, 1174, 7921], + [0, 2899], + [0, 12674, 1087, 2124, 12619, 12675], + [1, 2343, 7926], + [0, 7927, 7928, 7929, 4139], + [0, 12680, 12681, 1676, 12685, 5303], + [0, 5245, 12688, 6501, 4874, 7677, 4193, 4474, 4494, 1984], + [0, 12692, 12693, 1605, 12694, 4116, 8791], + [1, 2343, 7934], + [2, 366, 6990], + [2, 7908, 5375], + [2, 363, 594], + [0, 7936, 7938, 7939, 2487], + "@definitelytyped/dtslint", + [ + 0, 43, 46, 1093, 1116, 1132, 1140, 1298, 1316, 1318, 1321, 1322, 1336, 1339, 1342, 12701, 1344, 1346, 1348, + 1350, 1352, 12703, 1354, 1356, 1358, 12704, 1376, 1386, 1402, 1425, 1428, 12705, 1440, 1450, 12708, 12709, + 12710, 12711, 12714, 1663, 1706, 1711, 1715, 2019, 12715, 12719, 2058, 2059, 2177, 2217, 12720, 2563, 2567, + 2605, 2606, 12722, 2723, 2950, 2954, 2957, 12726, 2962, 3086, 3099, 12730, 3134, 12733, 3186, 3240, 3245, 3262, + 3295, 3439, 12736, 3443, 3472, 3535, 3558, 12737, 3777, 3931, 12740, 4105, 4124, 12743, 12747, 4168, 4173, 4177, + 4192, 4206, 4235, 12749, 4236, 4258, 12750, 4267, 4338, 12755, 4347, 4352, 4370, 4433, 4456, 4461, 12756, 12757, + 12760, 4548, 12763, 12764, 4724 + ], + "import-cwd", + [0, 4880, 4883, 2079, 89, 3824, 91], + [0, 4627, 4963, 4964, 5130, 4967, 89, 5128, 181, 4653], + "is-pro", + "p-valid", + [2, 7940, 7941], + [2, 363, 7942], + [3, 7933, 10], + "se-insertion-effect-with-fallbacks", + [2, 7944, 7945], + [1, 2343, 7949], + [2, 363, 89], + [0, 7950, 7951, 7952, 2537], + [ + 0, 12771, 12773, 12775, 1389, 12776, 1536, 1676, 12777, 12779, 2026, 12783, 12785, 2659, 12788, 2822, 12789, + 12792, 12793, 3183, 12795, 12799, 12802, 3923, 12809, 4153, 4165, 12812, 12814, 12818, 3348, 4650 + ], + [0, 12820, 1610, 2554, 3421, 12823, 4255, 4389, 4400], + [0, 1090, 1388, 12826, 4384, 4389, 5472], + [1, 2343, 7954], + [0, 7955, 7958, 7959, 2523], + [0, 2069, 12832, 12834, 12837], + [2, 17912, 7957], + "estimator", + [ + 0, 12839, 811, 8850, 816, 10817, 4856, 6503, 4874, 12842, 1009, 1011, 1092, 1389, 1429, 1610, 1673, 12846, 1177, + 1895, 2070, 2675, 12847, 2806, 2820, 12848, 2297, 2881, 2900, 2990, 2899, 12849, 3310, 3421, 1894, 12850, 4042, + 4073, 4474, 12851, 91, 12852 + ], + [0, 6671, 2844, 1155, 7020, 2860, 2845, 7527, 7530], + [1, 2343, 7961], + [0, 7962, 7963, 7964, 2537], + [0, 1091], + [0, 12839, 5087, 4874, 1009, 1011, 1091, 1177, 1895, 2675, 1192, 12848, 2990, 1894, 4468, 91], + [0, 12860, 6975, 1671, 7020], + [1, 2343, 7966], + [0, 7967, 7938, 7939, 2399], + [0, 43, 46, 1450, 3777, 4548], + [1, 2343, 7969], + [0, 6203, 7970, 7971, 2487], + [0, 3460, 12870], + [0, 1094], + [1, 2343, 7973], + [0, 7974, 7975, 7976, 2537], + [0, 12879, 4567], + [0, 12882, 2899, 3421, 4535], + [0, 12884, 12886, 12887], + [1, 2343, 7978], + [0, 0, 7979, 7980, 2487], + [0, 2278], + [0, 1623, 2278, 181, 6398, 6400, 2869, 12893], + [1, 2343, 7982], + [0, 0, 0, 7983, 2523], + [0, 1098, 5130, 1388, 12899], + [1, 2343, 7985], + [0, 0, 0, 7986, 2523], + [0, 1098, 5130, 1388, 7521, 12899], + [1, 2343, 7988], + [0, 7989, 0, 7990, 2523], + [ + 0, 12910, 12914, 19, 21, 24, 12915, 12917, 1149, 1165, 1437, 1532, 1628, 1637, 1676, 12918, 1687, 12923, 12925, + 12926, 2054, 2092, 7076, 2151, 12929, 2070, 2651, 2712, 2720, 12930, 2843, 2921, 2925, 695, 2969, 1209, 3181, + 12935, 3342, 3368, 3459, 3467, 3560, 3618, 3786, 3981, 814, 4039, 4085, 4111, 12936, 4135, 12937, 4230, 12944, + 4307, 4333, 4334, 1241, 4430, 91, 4027, 4648, 2924, 4681, 4689, 4695, 4769 + ], + [0, 1098, 1102], + [1, 2343, 7993], + [2, 27465, 3469], + [0, 0, 0, 7994, 2537], + [0, 12074, 29, 1388, 12899, 5027, 12951, 4963], + "blurup", + [1, 2343, 34387], + [0, 6323, 2398, 12956, 2899, 4425], + [ + 0, 7244, 1111, 12958, 12959, 12961, 12963, 12964, 12965, 12966, 12967, 12968, 12969, 12970, 12971, 12972, 12973, + 12974, 12975, 12976, 4984, 12977, 200, 12978, 1473, 1512, 7208, 9753, 6876, 7201, 12979, 12980, 6983, 12981, + 12982, 12983, 12984, 12986, 12987, 2929, 3073, 6807, 12990, 12991, 10958, 6616, 4166, 12992, 12994, 1871, 590, + 592, 7009, 2585, 6621, 12996, 12997, 4744, 12998 + ], + [1, 2343, 8000], + [0, 8001, 8002, 8003, 2487], + [0, 6639], + [0, 4874, 1166, 4481, 1906], + [ + 0, 1111, 7009, 7201, 200, 1871, 6621, 1867, 1106, 6983, 4166, 4744, 3073, 6807, 6876, 2585, 13005, 6769, 12619, + 1501, 5281, 13006, 8628, 13007, 1468, 13008, 13009, 13011 + ], + [1, 2343, 8005], + [0, 0, 8006, 8007, 2399], + [0, 1906, 1166, 4481, 1107], + [ + 0, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 1871, 6621, 1867, 6983, 6616, 7244, 4166, 4744, 6876, 2585, + 1108, 6961, 23, 3529, 1973, 2100, 13017 + ], + [1, 2343, 8009], + [0, 0, 8010, 8011, 2523], + [0, 1906, 1166, 4481, 13024], + [ + 0, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 1871, 6621, 1867, 6983, 6616, 7244, 4166, 4744, 3073, 6807, + 6876, 2585 + ], + [1, 2343, 8013], + [0, 0, 0, 8014, 2487], + [0, 1111, 1512, 200], + [1, 2343, 8016], + [0, 8017, 8018, 8019, 2443], + [ + 0, 11161, 13035, 97, 8597, 7905, 13037, 13038, 13042, 1156, 1639, 1673, 13045, 13047, 1209, 3021, 4023, 11264, + 1849, 7917, 4427, 13049, 4649 + ], + [ + 0, 48, 53, 61, 73, 76, 78, 13051, 81, 5806, 13052, 5835, 83, 5853, 5889, 85, 87, 92, 192, 5467, 692, 5583, 7806, + 4864, 5087, 13055, 5139, 13057, 7639, 4874, 13059, 1009, 1011, 1028, 11016, 13061, 13063, 13067, 13069, 1031, + 11018, 13072, 10984, 13077, 1082, 13078, 1165, 1170, 1178, 1193, 1195, 1205, 13080, 1208, 13085, 1426, 1437, + 1448, 1503, 12405, 13086, 1525, 13088, 1610, 1628, 1630, 13089, 1668, 13090, 13092, 11343, 13093, 668, 8161, + 1869, 1177, 1895, 1937, 1938, 1939, 1948, 13097, 1955, 1988, 2071, 11345, 2151, 2070, 2205, 2226, 2323, 2338, + 13099, 2529, 2651, 2675, 13101, 13103, 1192, 2780, 2784, 13105, 13108, 2817, 13110, 4868, 695, 2969, 13115, + 13118, 2990, 13119, 3105, 3107, 3112, 3114, 13122, 3127, 13123, 3177, 3183, 3188, 3213, 3220, 3412, 3561, 3618, + 1894, 3720, 3725, 3730, 3786, 9340, 3992, 13124, 13127, 8304, 13128, 4039, 13129, 13131, 4135, 4207, 13134, + 4307, 4320, 11384, 11389, 4323, 11396, 4328, 4409, 4431, 4443, 4468, 4469, 4494, 4508, 91, 13135, 4549, 4027, + 11400, 1983, 188, 13138, 13142, 4630, 4633, 13145, 4634, 13149, 4639, 4640, 13151, 4646, 2924, 4676, 4677, 4681, + 4689, 13152, 11401 + ], + [0, 188, 8588, 5127, 4964, 1114, 13154, 4627, 4963, 181, 5130, 4967], + [1, 2343, 8021], + [0, 8022, 8023, 7395, 2537], + [ + 0, 1497, 1673, 97, 5145, 4427, 11161, 7992, 27467, 33386, 33387, 11185, 33389, 33393, 11164, 33396, 33397, + 33399, 33401, 33403, 33404, 33406, 33417, 13166, 33418, 33422, 33423, 33424, 33426, 13169, 8048, 33428, 33430, + 33431, 33433, 33436, 33441, 33443, 11168, 33444, 33447, 13159, 33449, 13162, 33450, 33451, 11264, 13165, 33452 + ], + [ + 0, 1091, 3467, 26713, 4390, 4494, 1789, 2070, 1192, 3445, 1170, 1437, 11336, 2675, 2696, 2742, 2832, 13233, + 3549, 89, 4164, 1759, 1177, 2079, 2814, 1209, 3984, 4039, 13241, 4135, 1086, 13078, 25131, 3725, 4508, 2924, + 1634, 2151, 2193, 11347, 3183, 3213, 1894, 13243, 11401, 1610, 16473, 2071, 5102, 11357, 3758, 11360, 3824, + 13214, 13215, 3310, 3560, 3985, 3988, 4183, 4201, 91, 5087, 4874, 12424, 2665, 2990, 3839, 11380, 368, 13204, + 13210, 4880, 13223, 33230, 11362, 13245, 33461, 7833, 692, 11301, 4870, 5254, 11325, 3330, 3717, 13235, 3999, + 11976, 7948, 27424, 13194, 13196, 11290, 8149, 11322, 7610, 11350, 27047, 11273, 11275, 16934, 4864, 11292, + 7892, 6510, 13213, 4934, 10875, 13205, 4883, 2758, 2771, 13232, 3885, 11377, 3978, 5076, 33233, 7839, 8998, + 29467, 7837, 7840, 643, 13200, 1939, 2686, 11366, 11400, 13198, 2584, 11348, 25366, 966, 11331, 1924, 2784, + 11368, 13175, 972, 1947, 2780, 13182, 13203, 13228, 11356, 4676, 11320, 3749, 13192, 968, 1961, 33635, 11300, + 13221, 13187, 7582, 974, 7585, 13178, 11312, 26969, 11382, 11371, 11296, 13188, 11274, 13240, 13189 + ], + [1, 2343, 8025], + [0, 8026, 0, 2514, 2523], + [0, 3445], + [1, 2343, 8028], + [0, 8029, 7938, 7939, 2537], + [ + 0, 43, 46, 1093, 1132, 1140, 1298, 1316, 1318, 1321, 1322, 1336, 1339, 1342, 1344, 1346, 1348, 1350, 12704, + 1376, 1386, 1425, 1428, 1440, 1450, 12709, 12714, 1663, 1706, 1711, 1715, 2019, 12719, 2177, 2217, 12720, 2563, + 2567, 2606, 12722, 2950, 2954, 2957, 2962, 3086, 3099, 3134, 3186, 3240, 3245, 3262, 3295, 3439, 12736, 3443, + 3472, 3535, 3558, 12737, 3777, 4124, 12747, 4173, 4177, 4192, 4206, 4235, 12749, 4236, 4258, 4267, 4338, 12755, + 4347, 4352, 4370, 4433, 4456, 4461, 12756, 12757, 12760, 4548, 12763, 12764 + ], + [1, 2343, 8031], + [0, 8032, 8033, 8034, 34352], + [0, 5381, 5383, 5446, 5394, 5408, 13261, 13262, 5458, 5461, 32772, 13264, 13267, 13272, 2993, 5438], + [ + 0, 5400, 5402, 5405, 13276, 5453, 5456, 192, 5467, 13280, 5470, 5473, 13282, 5474, 5476, 5478, 13286, 13287, + 1364, 1699, 1177, 1895, 1999, 2026, 2151, 2675, 2822, 2990, 3246, 3300, 3561, 4039, 4042, 13289, 10854, 4193, + 4449, 91, 5480, 4535, 13291, 3348 + ], + [0, 5926, 13293, 5592, 1117, 1745, 13294, 3422], + [1, 2343, 8036], + [0, 8037, 8038, 8039, 2537], + [ + 0, 1367, 1525, 13302, 8161, 13304, 2151, 2070, 2036, 2685, 2814, 13305, 1209, 3105, 3363, 3725, 4135, 4307, + 2924, 4677, 4709 + ], + [0, 4870, 6503, 4874, 1177, 13311, 1903, 1938, 1954, 1958, 2899], + [0, 5592, 1118, 2295, 1745, 4030, 7096], + [1, 2343, 8041], + [0, 8042, 8043, 8044, 2537], + [0, 13319, 1797, 4135, 4562, 4747], + [0, 9741, 4874, 5254, 4892, 1166, 2151, 91], + [0, 1118, 1783, 13322, 5592, 2295, 1745, 1179, 13325, 200, 13326, 6876, 4030, 7096, 13327, 13328], + [1, 2343, 8046], + [0, 8047, 8049, 8050, 2523], + [0, 1676, 13333, 3313, 2863, 4593], + [2, 41, 27443], + [0, 1429, 1431, 2899, 4193, 4196], + [0, 13336, 6645, 13338, 13339, 13340, 586], + [1, 2343, 8052], + [0, 8053, 0, 2514, 2537], + [0, 13345, 13346, 5506, 5514, 4484], + [1, 2343, 8055], + [0, 8056, 0, 8057, 4139], + [0, 13352, 13345, 1127, 13346, 5513, 5514, 4484, 13351], + [0, 5286, 6778, 13354, 5284, 13356, 3378, 89], + [1, 2343, 8059], + [0, 8060, 8061, 2514, 2487], + [0, 13346, 5514, 4484, 5515], + [0, 13364, 5087, 4874, 2220, 2222, 1192, 4039, 4042, 4468, 4487, 91], + [1, 2343, 8063], + [0, 8064, 8065, 2514, 2487], + [0, 1127, 13370, 4484], + [0, 13364, 5087, 13372, 2086, 2220, 2222, 1192, 13374, 4039, 4042, 4468, 4487, 91], + [1, 2343, 8067], + [0, 0, 8068, 8069, 2523], + [0, 1503, 1596, 13379, 1652, 2194, 2759, 2899, 3202, 3215, 3421, 4131, 4585], + [0, 7914, 3403, 6435, 614, 202, 1237, 5260, 13382, 3209, 1896], + [1, 2343, 8071], + [0, 8072, 8073, 8074, 2537], + [0, 13387, 13388, 13390, 13394, 13395, 1170, 1362, 13396, 1209, 3084, 3220, 3222, 13399, 4135, 13400, 4729], + [ + 0, 13406, 13411, 13412, 6061, 6063, 13414, 4870, 6503, 4874, 13417, 5254, 9241, 10780, 1429, 1431, 1570, 2899, + 1894, 4131, 4193, 4474, 91, 4739 + ], + [0, 13426, 12296, 5472, 13428, 5131, 13429], + [1, 2343, 8076], + [0, 8077, 8078, 8080, 2399], + [ + 0, 13446, 13437, 13512, 13471, 13508, 13476, 9637, 13474, 13497, 13495, 13500, 13454, 13502, 13504, 13510, + 13493, 13507, 13456, 13479, 13488, 13484, 30243, 13467 + ], + [0, 3421, 3297, 2899, 4193, 1177, 1894, 91, 13514, 4874, 6503, 6513, 5254, 1954, 1011, 13518, 1009], + [2, 8182, 553], + [0, 13524, 13525, 13526, 13529, 13530, 13531, 6599, 13532, 13535, 13538, 13539], + [1, 2343, 8082], + [0, 8083, 8084, 8085, 2523], + [0, 13547, 13551, 13554, 13558, 13559, 13560], + [ + 0, 13564, 5087, 4874, 1009, 1011, 13566, 1177, 1895, 1915, 1938, 1955, 2220, 1192, 1894, 13568, 3706, 13569, + 4257, 4468, 4474, 91 + ], + [0, 13571, 7200, 5995, 13572, 2220, 13573, 6710, 91, 13574], + [1, 2343, 8087], + [0, 8088, 8089, 8090, 2537], + [0, 13579, 1149, 13581, 3923, 13583, 4393, 13584], + [0, 13590, 1429, 1776, 3188, 2899, 4039, 13591, 4390, 4753], + [0, 12666, 1137, 3101, 2056, 4390], + [1, 2343, 8092], + [0, 0, 8093, 2514, 4139], + [0, 1429, 1192, 1894], + [3, 439, 25], + "mysticatea", + [2, 1186, 8095], + [2, 8094, 8096], + "dot-prop", + "warun", + [1, 2343, 8101], + [0, 0, 8102, 8103, 2399], + [0, 68, 5704, 1177, 2899, 3421], + [0, 200, 57, 1139, 5675, 7058], + [1, 2343, 8105], + [0, 7967, 7938, 7939, 2487], + [1, 2343, 8107], + [0, 8108, 8120, 8121, 2487], + [0, 1417, 13609, 6830, 13611], + "ly-openapi-core", + [2, 443, 8109], + "decko", + "pointer", + [2, 2842, 8112], + "mark.js", + "sampler", + [2, 7719, 8115], + "perfe", + "ct-scrollbar", + [2, 8117, 8118], + [0, 13613, 13614, 1159, 9254, 1177, 2011, 2133, 13619, 2708, 3410, 3421, 3431, 4103, 4389], + [0, 6583, 6727, 4552, 6759, 1858, 6422, 3033, 7039, 6763], + "react-tabs", + "stickyfill", + "swagger", + "2openapi", + [2, 8124, 8125], + [2, 4564, 1283], + [1, 2343, 8133], + "@cypress/webpack-preprocessor", + "@hot-loader/react-dom", + [3, 5535, 19], + [2, 8131, 1896], + [0, 0, 8134, 8142, 2487], + [0, 1166, 4481, 1906], + "ompurify", + [2, 6491, 8135], + "-to-", + "-to-json", + [2, 4863, 8138], + [3, 7729, 12], + [2, 8140, 8112], + [0, 4552, 1144, 13625, 6270, 6692, 13626], + [1, 2343, 8164], + "@types/lunr", + [3, 7639, 11], + [2, 8145, 1722], + [2, 8145, 1360], + "ismjs", + [2, 7893, 8148], + [3, 4890, 12], + "d-components", + [2, 8150, 8151], + [3, 7752, 9], + "pable", + [2, 8153, 8154], + "-env", + [2, 4891, 8156], + "@wojtekmaj/enzyme-adapter-react-17", + "to-json", + [2, 1848, 8159], + [2, 7686, 1194], + "-checker", + [2, 4059, 8162], + [0, 8167, 8176, 8177, 2523], + "lodash.noop", + "unfetch", + [0, 614, 13633, 1417, 13635, 3435], + "OpenAPI", + " Specification", + [2, 8168, 8169], + "Swagger", + "API", + "REST", + "React", + "React.js", + [0, 4389, 1090, 1593, 1610, 48, 13638, 53, 3438, 87, 5619], + [0, 1145, 1388], + [1, 2343, 8179], + [0, 0, 8188, 2514, 2537], + [3, 444, 13], + [2, 8180, 965], + [3, 10975, 16], + "use-", + [3, 2758, 11], + "layout-effect", + [2, 8184, 8185], + [2, 8183, 8186], + [0, 4389, 2080], + "tip", + "tooltip", + "popover", + "popup", + "position", + "positioning", + [1, 2343, 8196], + [0, 8197, 8198, 8200, 2537], + [0, 1690, 13648, 13651, 3431, 13652, 13653], + [0, 1389, 2759, 2899, 3697], + "fontsource", + [0, 1145, 6468, 6637, 1148, 5982, 2022, 2025, 4170, 13656, 4386, 6969, 1973, 5472, 6533, 13657, 2275], + "font family", + " fonts", + [2, 1885, 8202], + "Inter", + "face", + "typeface", + [1, 2343, 8208], + [0, 0, 8209, 8212, 2537], + [ + 0, 3421, 1429, 4085, 1776, 2297, 2899, 4747, 1177, 4042, 4135, 1448, 1290, 1362, 2151, 1317, 1389, 53, 1863, + 2900, 13662, 1280, 2871, 13674, 1267, 13665, 13672, 68, 2904, 1208, 2912, 2895, 13668, 4067, 1198, 13663, 1240 + ], + "serenity", + "Roboto", + [0, 1149, 7241, 1237, 6435], + [1, 2343, 8215], + "screenplay", + [0, 0, 8219, 8222, 34352], + "common-t", + [2, 8216, 103], + [2, 6057, 8217], + [0, 4874, 13680, 4384, 4474, 91], + "fontawesome", + "svg", + [0, 1149, 7003, 5194, 27, 13682, 11995, 1862, 36], + [1, 2343, 8224], + [0, 8225, 8226, 2514, 2537], + [0, 1153], + [0, 1166, 1177, 1894, 3310, 3697, 13688, 2990, 1959, 1879, 1938, 1895, 1947], + [1, 2343, 8228], + [0, 0, 8230, 8233, 2537], + [2, 79, 1202], + [0, 53, 13693, 87, 92, 13694, 5087, 1193, 1596, 1192, 2990, 3377, 13695, 13698, 3697, 1894, 4474, 91], + "stage-3", + [2, 88, 8231], + [0, 1155, 2649, 1149], + [1, 2343, 8235], + [0, 0, 0, 8236, 2523], + [0, 1157, 1388], + [1, 2343, 8238], + [0, 8239, 8240, 8241, 2487], + [0, 4449, 1512, 13709, 4135, 13711, 13712, 13713], + [0, 3421, 4389, 1177, 3410, 1159, 4103, 13614], + [0, 13716, 6698, 6950, 3378, 13716], + [1, 2343, 8246], + [3, 361, 10], + "rebuild", + [2, 8243, 8244], + [0, 8247, 8249, 8257, 2487], + [0, 1525, 2036, 7937, 3310, 13723, 4135], + "node-abi", + [0, 53, 94, 1208, 13725, 1429, 1503, 1610, 3125, 2899, 3421, 4216, 4255], + [3, 361, 9], + "-forge/cli", + [2, 8250, 8251], + "devtools", + "-installer", + [2, 8253, 8254], + [2, 1807, 8255], + [0, 1163, 13728, 13729, 1444, 3073, 1179, 3358, 1528, 13730, 2602], + [1, 2343, 8259], + [0, 8260, 8261, 8265, 2523], + [0, 1457, 1512, 13736, 13738, 2070, 10911, 3074, 3467, 9478, 705, 13739, 4747], + [0, 1173, 1267, 1429, 1177, 1879, 1938, 1947, 1959, 2899], + [2, 4364, 4622], + [2, 458, 8262], + [2, 7726, 2862], + [0, 1163, 4796, 1161, 3383, 2282], + [1, 2343, 8267], + [0, 8268, 0, 8269, 2399], + [0, 1393, 1423, 13746, 3527, 3688], + [0, 1165, 1623, 3665, 3561, 6425], + [1, 2343, 8274], + [2, 466, 2220], + [2, 466, 2942], + [2, 466, 594], + [0, 8276, 8279, 8280, 4139], + [2, 466, 553], + [ + 0, 13753, 1082, 1084, 1110, 13754, 1144, 13757, 13758, 1437, 13759, 1458, 13760, 1486, 13763, 13765, 13767, + 13770, 1676, 13772, 2089, 2205, 13775, 2709, 2747, 2752, 13777, 7906, 3242, 3478, 13778, 3530, 3545, 3718, + 13780, 13781, 13784, 13786, 4728, 4747 + ], + [2, 5559, 2844], + [2, 5559, 1783], + [0, 11436, 13789, 4874, 1107, 1414, 2020, 2022, 4193, 4384, 4400, 4481, 91, 1906, 13351], + [ + 0, 13791, 1973, 8791, 5472, 1166, 13792, 12804, 2062, 6969, 13326, 200, 1192, 2899, 4389, 4384, 2907, 2765, + 1145, 6468, 1862, 6567, 1149, 3046, 7003, 1179, 5701, 13793, 13795, 13796, 2275, 8745, 2022, 91 + ], + [1, 2343, 8282], + [0, 8283, 8287, 8288, 2537], + [0, 1437, 1835, 3008, 1209, 3170, 3188, 4232, 13802], + "/types", + [2, 3940, 8284], + [2, 6369, 8285], + [ + 0, 4856, 4870, 8778, 6503, 4874, 7749, 6513, 4891, 1362, 1429, 13804, 2151, 2675, 2990, 2899, 1894, 13805, 4039, + 4167, 4257, 1241, 4487, 91, 2924, 4677 + ], + [0, 2924, 1194, 11526, 91], + [1, 2343, 8290], + [0, 8291, 8305, 8307, 2523], + [0, 4113, 1002, 614, 3348, 1398, 2018, 4734, 13811, 13812, 3767], + "@tailwindcss/aspect-ratio", + [3, 8292, 13], + [2, 8293, 25], + "typography", + [2, 8293, 8295], + "basename", + "manage", + "r-webpack-plugin", + [2, 8298, 8299], + [2, 2090, 8300], + "remove-", + [2, 1586, 4408], + [2, 8302, 8303], + [ + 0, 1429, 2297, 2899, 1177, 1503, 2765, 2924, 1649, 4535, 1389, 91, 4874, 2843, 1509, 2766, 2898, 13817, 13818, + 2881 + ], + "sass-lint", + [ + 0, 5592, 6997, 7200, 6850, 6779, 6949, 6930, 6810, 6808, 6979, 6871, 6991, 6835, 7024, 6602, 7301, 7308, 6619, + 7016, 6665, 6572, 6629, 7055, 6709, 7254, 6814, 6832, 6976, 6740, 7101, 6963, 6933, 7215, 7175, 6817 + ], + [3, 6566, 9], + [2, 8308, 3855], + "boilerplate", + [1, 2343, 8312], + [0, 0, 8313, 8314, 2537], + [ + 0, 1429, 2070, 1437, 1496, 2020, 2228, 2675, 1776, 2832, 2297, 2899, 4193, 1177, 2814, 1593, 668, 2203, 3471, + 2720, 13824, 1894, 4535, 13825, 11869, 13827, 2878, 7231, 91, 53, 4874, 13829, 1863, 13831, 2665, 2900, 2918, + 2990, 3400, 13832, 13833, 2626, 3330, 5561, 13834, 13836, 4257, 13837, 87, 13838, 2897, 4130, 13839, 2247, 2283, + 2923, 2253, 2281, 13842, 2881, 4261, 5663, 1895, 2895, 13848, 13850, 78 + ], + [0, 13852, 6653, 5472, 2275, 6969, 5982, 11346], + "@hapi/", + "accept", + [2, 8315, 8316], + [1, 2343, 8319], + [0, 8331, 8332, 8334, 2537], + "@hapi/ammo", + "@hapi/boom", + "@hapi/bo", + "unce", + [2, 8322, 8323], + "@hapi/call", + "@hapi/ca", + "tbox", + [2, 8326, 8327], + "-memory", + [2, 8328, 8329], + [0, 2139, 13860, 2131], + [ + 0, 1414, 2323, 1437, 2675, 2297, 2899, 4193, 1177, 3246, 3483, 4042, 2026, 13868, 2151, 13824, 3183, 1596, 1610, + 2141, 2188, 2036, 7798, 4393, 91, 53, 1364, 1863, 2918, 2766, 3714, 13870, 2898, 1159, 192, 13880, 87, 13873, + 8850, 8862, 5583, 2915, 4073, 13882, 2881, 2912, 2895, 2921, 811, 13867, 2910, 13879, 13866, 816, 13875, 13871, + 5467 + ], + "@hapi/heavy", + [0, 4731, 27, 6662, 1862, 202, 1388, 1612, 4030, 5592, 5576], + "@hapi/hoek", + "mimos", + "@hapi/mimos", + "podium", + [2, 8315, 8338], + "shot", + "@hapi/shot", + "@hapi/s", + "omever", + [2, 8342, 8343], + "tatehood", + [2, 8342, 8345], + "ubtext", + [2, 8342, 8347], + "teamwork", + [2, 8315, 8349], + [1, 2343, 8352], + [0, 8355, 8356, 8365, 2537], + "@hapi/topo", + [2, 8315, 2649], + [0, 13889, 2051, 13891, 13892, 3923, 705, 4545, 3348, 1155, 4734, 4736, 2845], + [ + 0, 13894, 1389, 1596, 13895, 2228, 2296, 13896, 2759, 2297, 2881, 2891, 13899, 2895, 2897, 2900, 2904, 2899, + 3202, 3297, 4170, 4535, 4650 + ], + "@hapi/code", + "@hapi/inert", + "@hapi/lab", + "@hapi/v", + "ision", + [2, 8360, 8361], + "wreck", + "@hapi/wreck", + [0, 202, 13531, 13901], + [1, 2343, 8367], + [0, 8368, 8369, 3182, 2537], + [0, 1175, 1257, 1280, 1282, 1525, 1573, 5175, 2070, 1209, 13913, 3507, 4207, 4227, 13914, 1457], + [0, 1184], + [1, 2343, 8371], + [0, 8372, 8373, 3272, 34352], + [ + 0, 13922, 1180, 13924, 13928, 1280, 1282, 1284, 1287, 1288, 1291, 1573, 1676, 2856, 1209, 3181, 3507, 7223, + 4207, 4227 + ], + [0, 1184, 13930, 1257], + [1, 2343, 8375], + [0, 8376, 8377, 2514, 2523], + [0, 814, 104, 58, 101, 51, 1996], + [0, 2675, 2899, 1680, 1177, 2000, 1894, 2990, 1178, 13936, 1938, 1935, 1955], + [1, 2343, 8379], + [0, 8380, 8381, 2514, 2523], + [0, 13928, 1282, 1288, 1707, 2835, 1209, 4227, 13942], + [0, 1184, 1291], + [1, 2343, 8383], + [0, 8384, 0, 2514, 2537], + [0, 1282, 1209, 13948, 4135], + [1, 2343, 8386], + [0, 8387, 0, 2514, 2523], + [0, 1282, 13930], + [1, 2343, 8390], + "nf", + [0, 0, 0, 8393, 2487], + true, + "cookiecutter", + [0, 1172, 188, 1219], + [1, 2343, 8395], + [0, 8396, 8397, 2514, 2537], + [0, 8755, 10879, 1208, 13961, 1437, 2215, 4207], + [0, 53, 8776, 8780], + [1, 2343, 8399], + [0, 8400, 8401, 8402, 4139], + [0, 2105], + [0, 48, 53, 68, 87, 1414, 1177, 1895, 1955, 2203, 2675, 2990, 1894, 2924], + [0, 2924, 1194, 1172, 5194, 5198, 1237], + [1, 2343, 8404], + [0, 0, 8405, 8406, 4139], + [ + 0, 53, 73, 87, 1173, 1175, 1178, 13725, 13982, 1264, 13983, 1268, 1284, 1288, 13985, 1177, 1895, 1903, 1938, + 1954, 1955, 1958, 1970, 2899, 3696, 1894, 4039, 4103 + ], + [0, 5297, 13988], + [1, 2343, 8408], + [0, 8409, 8410, 8411, 2537], + [0, 3435], + [ + 0, 4389, 1177, 4039, 1173, 1175, 2708, 53, 1178, 1280, 13995, 87, 1261, 1267, 4103, 1938, 1881, 1203, 8229, + 1198, 5853, 13998, 1244 + ], + [0, 1172, 1932, 14000, 1204, 202], + [1, 2343, 8413], + [0, 8414, 8415, 3465, 2523], + [0, 1282], + [0, 1189], + [1, 2343, 8417], + [0, 8418, 8434, 8444, 2399], + [0, 5652], + "@keyv/redis", + [2, 1416, 8421], + "-redis-yet", + "cacheable", + "opens", + "spring", + "icu", + "charset", + "launch", + "xdg", + "cmd", + "xdg-open", + "iconv", + "popmotion", + "exe", + [0, 53, 90, 14011, 1175, 14012, 1596, 1177, 1879, 1895, 1938, 1955, 2079, 2675, 2990, 3132, 3377, 1894, 14014], + "executable", + "cache manager", + [2, 27105, 15292], + "multi-store cache", + "caching layer", + "cache abstraction", + "cache middleware", + "cache strategies", + "cache wrapper", + [0, 5297, 1114], + [1, 2343, 8446], + [0, 8447, 8448, 8449, 2537], + [0, 56, 14022, 8697, 14024, 14025], + [0, 48, 53, 5756, 5241, 94, 1429, 1596, 1610, 2899, 3421, 14027, 4255], + [0, 2759, 1172, 1932, 14029], + [1, 2343, 8451], + [0, 8452, 8453, 8454, 2537], + [0, 5652, 104, 2070, 1209, 14035], + [ + 0, 48, 53, 14039, 78, 5235, 4851, 83, 87, 90, 14041, 94, 10828, 1149, 1198, 1210, 1429, 14042, 14045, 3021, + 2899, 3776, 3804 + ], + [0, 5297, 14047, 1209, 5260], + [1, 2343, 8456], + [0, 8457, 8458, 8459, 2487], + [0, 14053, 2070, 3539, 4022, 814], + [0, 48, 53, 81, 5241, 87, 1175, 1193, 1532, 1177, 1881, 1895, 1938, 2675, 1192, 2990, 10623, 4257], + [0, 1172, 5297, 1237, 14056, 8861, 9345, 814, 14057, 14059, 3209, 1204], + [1, 2343, 8461], + [0, 0, 8462, 2514, 2523], + [0, 1192, 14065], + [1, 2343, 8464], + [0, 0, 0, 3465, 2523], + [1, 2343, 8466], + [0, 0, 0, 3465, 2537], + [1, 2343, 8468], + [0, 8469, 8415, 3465, 2523], + [0, 14078, 14080, 1282], + [1, 2343, 8471], + [0, 8472, 8415, 3465, 2523], + [0, 14086, 14087, 1282, 1284], + [1, 2343, 8474], + [0, 8475, 8476, 8477, 2487], + [0, 14093, 1282, 1284], + [0, 1173, 1230, 1255, 1267, 1429, 2899], + [0, 1172, 5297, 6598, 70], + [1, 2343, 8479], + [0, 8480, 8415, 3465, 2523], + [0, 1282, 1284, 1287, 1288, 1209], + [1, 2343, 8482], + [0, 8483, 8484, 3465, 2487], + [0, 14107, 1282, 1284, 1288], + [0, 1189, 14109], + [1, 2343, 8486], + [0, 8414, 8415, 3465, 2399], + [1, 2343, 8488], + [0, 8489, 8415, 3465, 2537], + [0, 14109, 1282], + [1, 2343, 8491], + [0, 8492, 8415, 3465, 2523], + [0, 1282, 14123, 1220], + [1, 2343, 8494], + [0, 0, 8495, 8496, 2537], + [ + 0, 48, 53, 5216, 8229, 61, 5240, 87, 14128, 90, 94, 1178, 14132, 1429, 1177, 1879, 1922, 1935, 1938, 1947, 1951, + 1955, 1959, 2205, 2899, 14133, 1894 + ], + [0, 1172, 5297, 89, 14137, 14139], + [1, 2343, 8498], + [0, 8499, 8415, 2514, 2537], + [0, 14145], + [1, 2343, 8501], + [0, 8414, 8415, 3465, 2537], + [1, 2343, 8503], + [0, 8504, 0, 2514, 2487], + [0, 1282, 1593, 3957], + "comment", + [2, 8505, 1574], + [1, 2343, 8513], + [3, 539, 8], + [2, 8508, 6939], + [3, 539, 17], + [2, 8510, 1541], + "leasot", + [0, 8514, 8515, 8516, 2487], + [0, 87, 90, 56, 5761, 83, 14160, 13051, 78, 5835, 14163, 5853, 14167, 1251, 5782, 14170, 5806], + [0, 1177, 53, 97, 4103, 1938, 1881], + [0, 1172, 5194, 6778, 5284], + [1, 2343, 8518], + [0, 8522, 8541, 2514, 2523], + "clair/typebox", + [2, 5324, 8519], + "@typesc", + [ + 0, 14184, 14191, 1225, 14192, 14195, 1235, 14196, 14198, 14199, 14201, 14204, 14206, 14207, 14209, 1240, 14210, + 14211, 14213, 14214, 14215, 14217, 14218, 1244, 14220, 14222, 14224, 1253, 1393, 2731, 4135 + ], + "hema/core", + [2, 8521, 8523], + [3, 8524, 12], + "main", + [2, 8525, 8526], + [2, 8525, 4763], + "@vinejs/vine", + "ajv-", + "ajv-errors", + "-export", + "-export-map", + [2, 4354, 8533], + [3, 5370, 11], + [2, 4626, 8535], + "effect", + "fp-ts", + "io-ts-types", + "lefthook", + [0, 1173, 1178, 1184, 1189, 1208, 1264, 1280, 1429, 1503, 1177, 13936, 1935, 2151, 1209, 2899, 3421, 14227, 4039], + [1, 2343, 8545], + "monocle-ts", + "newtype-ts", + [0, 8548, 8557, 2514, 2487], + "-validator", + [2, 7209, 8546], + [ + 0, 14184, 14192, 14195, 1235, 14196, 14198, 14199, 14201, 14204, 14206, 14207, 14209, 1240, 14210, 14211, 14213, + 14214, 14215, 14217, 14218, 1244, 14220, 14222, 1253 + ], + "bot", + "valibot", + "vite-", + [2, 8551, 4480], + "fluent", + "-ts", + [2, 7020, 8554], + [2, 8553, 8555], + [0, 13930, 1189], + "effect-ts", + [1, 2343, 8562], + "typeschema", + "vine", + [0, 8563, 0, 2514, 4139], + [0, 14237, 1220, 14238, 1248, 14240, 14243], + [1, 2343, 8565], + [0, 8566, 0, 2514, 2537], + [0, 53, 61, 71, 14170, 14160, 13051, 14249, 5700, 5240, 5879, 83, 87, 90, 92, 97, 7913, 1251], + "google ", + " api", + "late api", + [2, 4713, 8569], + [2, 8567, 8570], + [3, 8571, 16], + "google api", + [3, 8570, 9], + [1, 2343, 8576], + [0, 8577, 0, 2514, 34352], + [0, 14256, 14257, 1275], + [1, 2343, 8586], + "@atlaskit/pragmatic-drag-and-drop", + "-scroll", + [2, 3959, 8580], + [2, 8579, 8581], + [3, 8582, 34], + "hitbox", + [2, 8583, 8584], + [0, 8587, 0, 2514, 2523], + [0, 14265, 13982, 1277], + "vue3", + "vue ", + [1, 2343, 8592], + "vue 3.x", + [0, 8593, 0, 2514, 2537], + [0, 1279, 14270, 1217, 1230], + [1, 2343, 8595], + [0, 8596, 0, 2514, 2523], + [0, 14191, 14276, 1225, 14224, 1245], + "@ctrl/tinycolor", + [1, 2343, 8599], + [0, 8600, 8601, 2514, 2537], + [0, 1175, 1282, 1593, 14282, 1209, 3188, 4232], + [0, 6323], + [1, 2343, 8613], + [3, 546, 10], + [2, 8603, 2089], + [2, 8603, 998], + [3, 6505, 9], + "te-stream", + [2, 8606, 8607], + "rap-ansi", + [2, 7820, 8609], + "cli-width", + "mute-stream", + [0, 4115, 8617, 2514, 4139], + [3, 8605, 11], + "esting", + [2, 8614, 8615], + [0, 13924, 1255], + "answer", + "answers", + "ask", + [1, 2343, 8627], + "confirm", + "generate", + "hyper", + "inquire", + "interface", + [0, 8629, 0, 2514, 2537], + "iterm", + [0, 1282, 1287, 1288, 1291, 1209], + "promptly", + "question", + "scaffold", + "scaffolder", + "stdout", + "yeoman", + "zsh", + [1, 2343, 8638], + [0, 8639, 8640, 2514, 2523], + [0, 13922, 13928, 1282, 1288, 1291, 1676, 2203, 2731, 1209], + [0, 1180], + "@stencil/core", + [1, 2343, 8672], + "domino", + [3, 8641, 9], + [2, 8644, 2278], + "@clack/prompts", + "@capacitor/core", + "@playwright/test", + [3, 8647, 11], + "haptics", + [2, 8649, 8650], + "keyboard", + [2, 8649, 8652], + "@axe-core/playwright", + "@ionic/", + [2, 8655, 7625], + "-bar", + "status-bar", + [2, 8649, 8658], + [2, 8655, 7628], + [2, 812, 4607], + "-target", + [2, 6811, 8662], + [2, 4625, 8663], + [2, 8644, 8664], + "react-o", + "utput-target", + [2, 8666, 8667], + [2, 8644, 8668], + [2, 1101, 8663], + [2, 8644, 8670], + [0, 8679, 8680, 2514, 2487], + "stencil", + "webapp", + "capacitor", + " web app", + [2, 6434, 8676], + "pwa", + [0, 1282, 14301, 1209, 5915], + [0, 1180, 1291], + [1, 2343, 8682], + [0, 0, 8684, 2514, 2523], + "-cjs", + [0, 4384, 1389, 53, 14311, 87, 14128, 1573, 90, 14309, 5835, 5879], + [1, 2343, 8686], + [0, 0, 8687, 8688, 2487], + [ + 0, 1166, 1173, 1178, 1184, 1203, 1208, 14318, 1267, 1272, 1437, 1503, 1610, 1177, 13936, 1935, 2126, 3421, 4039, + 4042, 4045, 4067, 12613, 14320 + ], + [0, 1172, 5284, 57, 1291], + "standardx", + [1, 2343, 8692], + "layout", + [0, 8693, 8694, 8695, 2537], + [0, 4545], + [0, 1509, 1597, 1734, 1177, 1938, 2297, 2908, 2907, 4005, 4042, 4535], + [0, 11415, 6624, 12620, 38, 36, 5576, 1388], + [3, 549, 12], + [2, 8696, 2844], + [1, 2343, 8699], + [0, 8700, 8701, 8702, 2443], + [0, 1525, 2070, 2720, 3445, 4039, 4484, 3348, 1155], + [ + 0, 14333, 4865, 4866, 4874, 7819, 14334, 4891, 1009, 1011, 5476, 14337, 14338, 5478, 1429, 1177, 1938, 1954, + 2899, 3200, 14339, 4167, 4172, 4409, 4469, 4474, 4508, 91, 594, 2924, 4677 + ], + [0, 5995, 1293, 3230, 4978, 14344], + [3, 444, 18], + [3, 550, 15], + "illu", + [1, 2343, 8715], + "tions-react", + [2, 4273, 8707], + [2, 8705, 8708], + [2, 8704, 8709], + "@swc/", + [2, 8711, 6706], + [3, 958, 16], + [2, 8713, 4607], + [0, 7936, 7938, 7939, 2537], + "react-table", + [1, 2343, 8718], + [0, 0, 8720, 8721, 2523], + "@swc/cli", + [0, 1596, 2228, 2240, 2314, 14352, 2759, 2899, 3954], + [0, 14354, 14355, 14356, 14357, 1157, 1396], + "-extensions", + [2, 3751, 8722], + [2, 1962, 8723], + [1, 2343, 8730], + "-system", + [2, 4964, 8726], + "itwin", + "itwinui", + [0, 7967, 7938, 7939, 2443], + [1, 2343, 8732], + [0, 0, 8733, 8735, 4139], + [0, 13662, 1317, 1389, 4389], + "jest-config", + [0, 14357], + "unner", + "jest-runner", + "jest-run", + [2, 8738, 6901], + [3, 2802, 10], + [2, 8740, 1524], + [3, 551, 8], + "nsole", + [2, 8742, 8743], + "snapshot", + [2, 2769, 8745], + [2, 2769, 2649], + "jest-h", + "aste-map", + [2, 8748, 8749], + "reporters", + [2, 552, 8751], + "@jest/t", + "ransform", + [2, 8753, 8754], + "jest-re", + "gex-util", + [2, 8756, 8757], + [1, 2343, 8760], + [0, 8766, 8772, 8774, 2523], + "est-result", + [2, 8753, 8761], + "jest-m", + "essage-util", + [2, 8763, 8764], + [0, 4100], + "-files", + [2, 2356, 8767], + [2, 2772, 8768], + "-dependencies", + [2, 2797, 8770], + [0, 2899, 1177, 2759, 1954, 1938, 1958, 1903, 1948, 1970], + [3, 6494, 9], + [0, 14372, 1303, 14374, 14375], + [3, 8762, 11], + [2, 8775, 594], + "cromatch", + [2, 7890, 8777], + "raceful-fs", + [2, 5246, 8779], + "sequencer", + [2, 8775, 8781], + [1, 2343, 8789], + "easy", + "sive", + "immersive", + "instant", + "mocking", + [0, 8792, 8793, 8794, 2537], + "painless", + "runner", + [0, 1797, 3181, 3183, 3188, 14380], + [0, 1177, 1903, 1938, 1954, 1958, 1970, 2899, 4039, 4342, 4459, 4538, 4588], + [0, 2026, 5130, 14387, 6690, 14388, 3361, 5122, 4030, 7096, 38, 1896, 3724, 5995, 5592], + "sandboxed", + [1, 2343, 8797], + [0, 8798, 8799, 8810, 2537], + [0, 3299, 15160], + [0, 1192, 15164], + "schemas", + [2, 552, 8800], + "@types/i", + "-report", + "-reports", + [2, 1207, 8804], + [2, 8802, 8805], + [3, 8806, 16], + "lib-coverage", + [2, 8807, 8808], + [0, 1306, 6875, 1303, 5165, 7141, 6641, 1616], + "@tsd/typescript", + [1, 2343, 8813], + [0, 0, 0, 8814, 2537], + [0, 1306, 5284, 676, 3428, 6875, 1303, 5165, 7141, 6641, 1616], + [1, 2343, 8819], + [3, 7729, 13], + "chema", + [2, 8816, 8817], + [0, 0, 8822, 8810, 4139], + "jsdom-", + [2, 8820, 2202], + [0, 1306, 26406, 1894, 91], + "mock-store", + [2, 3944, 8823], + "dux-mock-store", + [2, 5249, 8825], + "-reg", + "iste", + "r-element", + [2, 8828, 8829], + [2, 8827, 8830], + [2, 1746, 8831], + [1, 2343, 8834], + [0, 8835, 8842, 8843, 34352], + [0, 14413, 1525, 1457], + "jsonforms", + "rendere", + [2, 8837, 152], + "uischema", + "ization", + [2, 5317, 8840], + [0, 2025, 2228, 1330, 2236, 2300, 2247, 2281], + [0, 14416, 14417, 14418, 7190, 14419, 14421, 8309, 14422, 14423, 14426, 14428, 14430, 14433], + [1, 2343, 8845], + [0, 0, 0, 8847, 2523], + "@date-io/dayjs", + [0, 1317, 14438], + [3, 4055, 16], + [2, 8848, 2257], + [2, 812, 1781], + [3, 6390, 15], + "mport-css", + [2, 8851, 8852], + [1, 2343, 8855], + [0, 8856, 7938, 7939, 4139], + [ + 0, 43, 46, 1089, 1093, 1116, 1132, 1140, 14443, 1294, 1298, 1316, 1318, 1321, 1322, 14444, 1336, 1339, 1342, + 12701, 1344, 1346, 1348, 1350, 1352, 12703, 1354, 1356, 1358, 14445, 12704, 1373, 1376, 14446, 1386, 14447, + 1402, 1425, 1428, 12705, 1440, 1449, 1450, 12708, 12709, 14450, 14453, 12710, 12711, 12714, 1663, 1706, 1711, + 14458, 1715, 1726, 1801, 2019, 12715, 14459, 12719, 2058, 2059, 2083, 2147, 2160, 14460, 2177, 2213, 2216, 2217, + 12720, 2562, 2563, 2567, 2589, 2605, 2606, 2612, 14461, 12722, 2723, 14464, 14467, 2950, 2954, 2957, 12726, + 2962, 14469, 3086, 14471, 3099, 12730, 3134, 12733, 3186, 3238, 14473, 14474, 3239, 3240, 3245, 3262, 14477, + 3295, 3439, 12736, 3443, 3472, 14478, 3531, 3535, 3558, 12737, 3777, 3931, 12740, 14479, 4105, 4106, 4112, 4124, + 12743, 14480, 12747, 14483, 4168, 4173, 4177, 4189, 4192, 4206, 4212, 4214, 4215, 4235, 12749, 14484, 4236, + 4239, 4258, 12750, 4267, 14487, 4335, 4338, 12755, 4347, 4352, 4370, 4377, 4433, 14489, 14491, 4456, 4461, + 12756, 12757, 12760, 4548, 4559, 4595, 12763, 14492, 14496, 4659, 4662, 12764, 14497, 4724 + ], + [1, 2343, 8858], + [0, 8859, 8863, 8864, 4139], + [0, 3171, 3445, 4707, 1695, 2967, 814, 4430, 1457, 3183, 14502, 3560, 3714, 1537, 14506, 3923, 14508, 14512, 14505], + [2, 4807, 3429], + "alias", + [2, 812, 8861], + [0, 14515, 3212, 4389, 4453, 2759, 4650, 1389, 14514], + [0, 14518, 1389], + [1, 2343, 8866], + [0, 7967, 7938, 7939, 2537], + [1, 2343, 8868], + [0, 8869, 8870, 8871, 2443], + [0, 1209, 12344], + [0, 1596, 14527, 2759, 14529, 3774, 4019], + [0, 1317, 6681, 6887], + [1, 2343, 8873], + [0, 7967, 7938, 7939, 2523], + [1, 2343, 8875], + [0, 8876, 0, 8877, 34352], + [ + 0, 14544, 14546, 14548, 53, 5216, 58, 61, 14249, 5704, 5809, 5241, 5874, 87, 92, 101, 9311, 9100, 4874, 1091, + 14552, 1137, 1149, 1448, 1457, 1462, 1512, 14557, 1573, 2141, 2633, 14558, 3310, 3403, 1894, 14562, 2278, 4218, + 4227, 4246, 3709, 91, 4535, 14563, 188, 4747, 2720, 14564 + ], + [ + 0, 14566, 14568, 14570, 14571, 14572, 14574, 5130, 91, 5284, 4799, 11608, 8889, 5995, 14575, 14576, 14579, + 14580, 14582, 14584, 14587, 11498, 14591, 14592, 14594, 14596, 4056, 14597, 14600, 89, 14601, 14602, 188, 14603, + 14605, 8889, 3709, 14607, 14608, 4218, 14609 + ], + 1769904000000, + [1, 2343, 8880], + [0, 8881, 8882, 8883, 2399], + [0, 14615, 14616, 14617], + [0, 1170, 1429, 1177, 2899, 14621, 3752, 14622], + [0, 1781, 14626, 1646, 4647, 1644, 57, 14628, 4141, 3917, 6033, 1149, 14629], + [1, 2343, 8885], + [0, 0, 0, 8886, 2523], + [0, 14634, 14635, 14636, 14637, 6988, 14638, 14639, 14640, 14641, 14642, 14643, 14644], + "@lumino/polling", + "@lumino/", + "widgets", + [2, 8888, 8889], + "commands", + [2, 8888, 8891], + "algorithm", + [2, 8888, 8893], + [3, 8892, 10], + "reutils", + [2, 8895, 8896], + [1, 2343, 8903], + "messaging", + [2, 8888, 8899], + "signaling", + [2, 8888, 8901], + [0, 8904, 0, 8908, 4139], + [0, 14652], + "disposable", + [2, 8888, 8905], + [3, 8887, 9], + [0, 970, 11154, 1326, 14654, 6817, 3122, 14655], + "roperties", + [2, 8907, 8909], + [3, 565, 12], + "statedb", + [2, 8911, 8912], + [3, 8894, 9], + "pplication", + [2, 8914, 8915], + [3, 565, 15], + [2, 8917, 594], + [3, 8913, 13], + "ervices", + [2, 8919, 8920], + "coreutils", + [2, 8911, 8922], + "render", + "rendermime", + [2, 8911, 8925], + "docregistry", + [2, 8911, 8927], + [1, 2343, 8935], + "translation", + [2, 8911, 8930], + [2, 8911, 7842], + "-interfaces", + [2, 8926, 8933], + [0, 8938, 8939, 2514, 2537], + [3, 8931, 13], + [2, 8936, 8615], + [0, 14660], + [0, 3421, 4389, 4487, 1894, 3310, 3752, 91, 4874], + [1, 2343, 8941], + [0, 8943, 8948, 8950, 34352], + "docopt", + [0, 14667, 14669, 14671, 14672, 5241, 83, 14673, 13998, 14674, 5564, 14676, 4649], + "glob2base", + "lodash.d", + "ifference", + [2, 8945, 8946], + [ + 0, 14680, 48, 53, 5241, 87, 14682, 94, 97, 10821, 14684, 827, 14687, 14689, 10828, 14691, 11277, 10837, 11288, + 972, 5087, 4883, 14693, 14694, 13995, 14695, 1193, 1195, 14697, 14698, 1208, 1261, 1268, 14012, 1282, 14699, + 1462, 1596, 1610, 1655, 14702, 1177, 14707, 2323, 2529, 2541, 14708, 2708, 1192, 2787, 2820, 3220, 14711, 3342, + 3377, 3400, 3415, 3421, 3697, 1894, 3786, 89, 3824, 14714, 14719, 4039, 4103, 4111, 14721, 4307, 4468, 4469, 91, + 2924, 4676, 4677 + ], + "multipipe", + [0, 1328, 14723], + "safe-wipe", + [2, 4832, 6270], + "-theme-default", + [2, 566, 8953], + "-comment", + [2, 8955, 1574], + [2, 4329, 8956], + "indent", + [2, 4293, 8958], + "vinyl-s", + "tring", + [2, 8960, 8961], + [1, 2343, 8968], + "builtin-", + [2, 8964, 2051], + [2, 1226, 8965], + "opn-cli", + [0, 8969, 8970, 8971, 4139], + [0, 14731, 1398, 2713, 3923], + [0, 2080, 4255, 4389, 91], + [0, 1398, 6825, 3101, 7178], + [1, 2343, 8973], + [0, 8974, 8975, 8976, 2523], + [0, 1082, 14738, 14741, 2756, 3433, 1695], + [0, 1149, 14744, 1506, 2228, 2240, 2247, 2253, 2273, 2281, 3006, 2899, 3521, 4019, 89, 14748], + [0, 4504], + [1, 2343, 8978], + [0, 0, 0, 8979, 2523], + [0, 14755, 14756, 14757, 14759, 14761], + "chatfanpage", + "api-con", + "-x", + "nect-x", + [2, 8981, 8983], + [3, 8984, 12], + "tiwtter", + [2, 8985, 8986], + [1, 2343, 8989], + [0, 8990, 8991, 2514, 2487], + [0, 14768, 1437, 14769, 1209, 14770, 3127, 14774, 14775, 3152, 14776, 14777, 4294, 14780, 14781], + [0, 14785, 1331, 1512, 1177, 1903, 1938, 1954, 1958, 1970], + [1, 2343, 8993], + [0, 7967, 7938, 7939, 4139], + [1, 2343, 8995], + [0, 8029, 7938, 7939, 2399], + [1, 2343, 8999], + [2, 8603, 6847], + [2, 8603, 3742], + [0, 8029, 7938, 7939, 2523], + "tasklist", + [1, 2343, 9002], + [0, 8029, 7938, 7939, 2487], + [1, 2343, 9004], + [0, 0, 9012, 9013, 2523], + "move-", + "scroll", + "move-scroll", + [2, 3877, 9007], + "react-te", + "xtarea-autosize", + [2, 9009, 9010], + [0, 2759], + [0, 1359, 2013, 14824, 6681], + [1, 2343, 9015], + [0, 0, 9016, 9017, 2523], + [ + 0, 1499, 4093, 2070, 3445, 1082, 14830, 2899, 4193, 2272, 3188, 4039, 14829, 1362, 2597, 2759, 3460, 1481, 4535, + 1084, 1389, 1364, 1615, 4151, 2839, 2311 + ], + [0, 1862, 6681, 6567, 14832, 14833, 1149, 7003, 14834, 14835, 14836, 14838, 14839, 14840], + [1, 2343, 9019], + [0, 0, 9020, 9021, 2487], + [0, 2899, 8689, 1926], + [0, 14846, 14847, 14848, 14849, 14850], + [1, 2343, 9023], + [0, 9024, 9025, 2514, 2487], + [0, 1413, 1562, 1676, 2657, 2685, 3440, 3763, 3784, 1000], + [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342], + "calendar", + [1, 2343, 9028], + [0, 9029, 9030, 9031, 2537], + [0, 1362, 14864, 2712, 1209], + [0, 14869, 1429, 1177, 1895, 1955, 2675, 1776, 2930, 2990, 2899, 3259, 3421, 3519, 1894, 4193, 4196, 4246, 3348], + [0, 3469, 3259, 14873, 7827, 14874, 14877], + [1, 2343, 9033], + [0, 9034, 9035, 9036, 2537], + [0, 2607], + [0, 1501, 620, 3123], + [0, 1851, 27], + [1, 2343, 9038], + [0, 0, 9039, 5359, 2537], + [ + 0, 2739, 4763, 3171, 2278, 34683, 2297, 1177, 2205, 2814, 3984, 4042, 4086, 4072, 2765, 2822, 3363, 3561, 4167, + 6393, 1894, 1492, 1610, 4939, 4320, 48, 2689, 53, 27098, 6375, 2654, 3566, 3989, 30616, 1165, 3401, 6371, 6376, + 2898, 3019, 34673, 29226, 6372, 7637, 8149, 7610, 11275, 26407, 1907, 6382, 4555, 87, 29568, 1937, 5583, 1938, + 1982, 2881, 2889, 30620, 6373, 1948, 2895, 6390, 811, 33071, 3963, 2910, 6379, 816, 2876, 6387, 6392, 6385 + ], + [3, 593, 11], + [2, 9040, 147], + [1, 2343, 9043], + [0, 0, 9048, 9049, 2537], + [3, 586, 12], + [2, 9044, 5602], + [3, 9045, 13], + [2, 9046, 623], + [0, 2278, 14892, 1797], + [0, 1367, 2278, 1623, 14894], + [1, 2343, 9051], + [0, 0, 0, 9055, 2537], + "-react-", + [2, 9052, 3902], + [2, 588, 9053], + [0, 1370], + [3, 80, 7], + [2, 9056, 5342], + [1, 2343, 9059], + [0, 9060, 9061, 9062, 4139], + [0, 14904, 1420, 1437, 1471, 4290, 4507, 9731, 4726], + [0, 1166, 3421, 4481, 1906], + [0, 200, 5403, 14907, 7009, 6048, 7201, 6938, 3656, 14908, 2585], + [1, 2343, 9064], + [0, 9065, 9066, 9067, 2537], + [0, 14923, 814, 14924, 4431], + [0, 1389, 1537, 4384, 4430], + [0, 1389, 14927, 2150, 14930, 1932, 2947, 14932, 6374, 14357], + [1, 2343, 9069], + [0, 9070, 9077, 9078, 2537], + [0, 1676, 3181, 4648, 14940, 14937, 14939, 14938], + [2, 597, 592], + [3, 9071, 14], + "ystem", + [2, 9072, 9073], + [2, 597, 553], + [2, 597, 594], + [0, 1429, 2899, 4039, 2151, 3980, 14942, 1951, 1385, 14944], + [0, 14938, 5284], + [1, 2343, 9080], + [0, 9081, 9082, 9083, 2537], + [0, 14938, 1380], + [0, 14953, 1385, 1429, 2899, 14942], + [0, 14938, 1698, 1585], + [1, 2343, 9085], + [0, 9086, 9090, 2514, 2487], + [0, 6520, 14959, 2116, 14939, 4449, 4648], + [3, 603, 15], + "documenter", + [2, 9087, 9088], + [0, 4856, 6503, 4874, 14962, 1429, 1540, 2899, 14964, 3421, 1894, 14967, 4487, 4490, 14970, 91], + "json-api", + [1, 2343, 9095], + "json:api", + "normalizer", + [0, 9096, 9097, 9098, 2487], + [ + 0, 14978, 14980, 14981, 1437, 1457, 1544, 1549, 14982, 14985, 14986, 984, 2145, 2151, 2659, 2700, 3170, 3459, + 13399, 3784, 14990, 4093, 710, 4150, 4151, 4153, 4218, 11804, 4747 + ], + [ + 0, 4874, 14992, 1429, 14995, 2215, 13333, 2899, 1894, 3760, 705, 4019, 4039, 4193, 4220, 4232, 4294, 4342, 91, + 4597 + ], + [0, 14998, 1623, 15000, 15001], + [3, 4873, 9], + "@types/mdx", + [1, 2343, 9103], + "mdx", + [0, 9104, 9105, 9106, 2523], + [ + 0, 1002, 2070, 614, 1695, 1145, 1398, 2018, 2571, 15043, 15016, 7029, 3729, 814, 2713, 3757, 4431, 15017, 15019, + 2861, 15020, 15030, 4165, 15040, 15006, 15044, 1537, 15031, 15037, 15048, 15018, 15028, 15042, 15047, 15007, + 15009, 3502, 15033, 3923, 15022, 15036, 1618, 15039, 15046, 15014, 15013, 15015, 13818, 15024 + ], + [0, 15060, 4384, 1241, 4135, 4430, 1292, 15057, 15052, 1506, 15051, 15055, 15056, 15059], + [0, 1388, 3209, 10906, 15064, 6374, 3378, 5284], + "encryptor", + [1, 2343, 34414], + "-model", + [2, 603, 9109], + "@rushstack/node-core-library", + [3, 9111, 11], + [2, 9112, 7009], + [3, 9113, 12], + "s-comm", + [0, 15070, 15071, 15073, 814, 4430], + "and-line", + [2, 9115, 9117], + [2, 9114, 9118], + "rig-package", + [2, 9112, 9120], + [0, 2832, 3275, 3752, 705, 4039, 4384, 15077], + "heft-node-rig", + [2, 9112, 9123], + [3, 9124, 15], + "eft-jest", + [2, 6495, 9126], + [3, 7892, 12], + [2, 9128, 3180], + [2, 5554, 7625], + [0, 1389, 14927, 1858, 2202, 2203, 353, 11316, 10906], + "JSDoc", + "AEDoc", + "TSDoc", + "alpha", + "beta", + [1, 2343, 9138], + [0, 9139, 0, 9140, 34352], + [0, 28572, 1423, 14227, 15085, 15088], + [0, 1421, 2887, 15090], + "tsdoc-build-rig", + [1, 2343, 9144], + "ig", + [0, 9145, 9147, 9148, 2443], + [0, 15095], + [3, 1937, 15], + [0, 4389, 4039, 91, 4874, 15097], + [0, 15100, 15101, 1616, 15102, 15103, 15105, 10368, 9254, 15107], + [1, 2343, 9150], + [0, 0, 9151, 9152, 2399], + [ + 0, 3421, 4390, 4481, 1429, 3348, 1437, 2899, 4193, 1177, 4042, 4474, 1894, 1317, 3310, 4196, 91, 4856, 4874, + 6503, 6513, 3090, 6512, 4232, 1978, 1895, 1955, 603, 10817, 1011, 816, 15115, 1009, 549 + ], + [0, 3230, 1395, 57], + "jju", + [1, 2343, 9155], + [0, 0, 0, 9157, 2487], + "@types/jju", + [0, 1396, 1388], + [1, 2343, 9159], + [0, 9160, 9164, 9168, 4139], + [0, 1082, 15127, 15128, 1437, 3090, 3183, 15130], + "@dat", + "astream/core", + [2, 9161, 9162], + [0, 15132, 1177, 2070, 2899, 4039, 4042, 15134, 811, 8850, 816, 4227, 4232, 15136], + "@types/a", + "ws-lambda", + [2, 9165, 9166], + [0, 5284, 15139, 15140, 15141, 6778, 7192, 5194, 6598], + "Lambda", + "Middleware", + "Serverless", + "Framework", + "AWS", + "AWS Lambda", + [1, 2343, 9176], + [0, 9177, 9178, 9179, 2443], + [0, 1301, 13811], + [0, 1090, 1317, 1389, 1537, 2676, 13651, 13633, 4237, 4389, 4431, 4535], + [0, 6866, 1388, 1389, 1398, 15148, 6735, 15149], + [1, 2343, 9181], + [0, 0, 9187, 9188, 2537], + "Middy", + "HTTP", + "Body Parser", + " Body Parser", + [2, 6671, 9185], + [0, 13614, 1158, 1159, 1177, 2708, 3410, 4103, 4389], + [0, 1398, 4162], + [1, 2343, 9190], + [0, 9197, 9198, 9199, 2537], + [3, 7709, 17], + "sm", + [2, 9191, 9192], + "aws-", + "xray-sdk", + [2, 9194, 9195], + [0, 15160], + [0, 2899, 640, 15164], + [0, 1401], + [1, 2343, 9201], + [0, 0, 8134, 9202, 2523], + [0, 4061, 15174, 4062, 202, 5260, 364, 15175, 3392, 4552, 1460], + "moj", + [2, 4964, 6770], + [1, 2343, 9206], + [0, 0, 9208, 9222, 2523], + "hash-base", + [0, 1637, 3566, 1894, 4039, 2278], + "@open-", + "draft", + "/deferred-promise", + [2, 9210, 9211], + [2, 9209, 9212], + [3, 9213, 12], + [2, 9214, 2942], + "until", + [2, 9214, 9216], + "is-node-process", + "outvariant", + "ct-event-emitter", + [2, 4285, 9220], + [0, 1623, 2278, 4329, 15182, 10052, 6398, 5130], + [1, 2343, 9232], + "test-server", + [2, 9214, 9224], + "@ossjs/release", + [2, 4860, 982], + [3, 7808, 15], + "upload", + "fileupload", + [2, 9228, 9230], + [0, 9234, 9238, 9253, 2523], + "rate-limit", + [0, 5923, 15187, 8646, 688, 691, 9296, 15194, 11420, 1170, 1437, 1676, 29297, 15197, 3445], + [3, 7810, 9], + "llow-redirects", + [2, 9235, 9236], + [ + 0, 9736, 9737, 4856, 5245, 15203, 6503, 4874, 6513, 1009, 1429, 1177, 1891, 1893, 1895, 1955, 2899, 3211, 3297, + 3377, 3421, 1890, 4172, 4193, 4474, 91 + ], + "upertest", + [2, 5051, 9239], + "@types/ws", + "engine.io-parser", + [2, 2032, 9230], + [2, 2032, 9233], + [2, 4183, 1960], + [3, 4220, 10], + [2, 9246, 57], + "ironment-miniflare", + [2, 8156, 9248], + [2, 1984, 9249], + [3, 5572, 9], + [2, 9251, 2022], + [0, 5592, 1745, 3452, 5593, 15208, 200], + "encoding", + [2, 5925, 9254], + [3, 4684, 9], + "ttp-server", + [2, 9256, 9257], + [1, 2343, 9260], + [0, 9263, 9264, 9265, 2523], + "intercept", + "low-level", + [0, 15006, 15051, 1537, 14738, 3183, 4431], + [0, 4389], + [0, 1389, 6374, 15215, 3178, 3209], + [1, 2343, 9268], + "mui", + [0, 9269, 9270, 9271, 2487], + [0, 15221, 3220, 15220, 15223], + [0, 15225, 4384, 4591, 4593, 3123], + [0, 3073, 6807, 15227, 1781, 1409], + [2, 619, 553], + [2, 619, 594], + "@mui/base", + [1, 2343, 9276], + [0, 9277, 9278, 9279, 2487], + [0, 15232], + [0, 15234, 1177], + [0, 15236, 25, 15237, 2139], + "core-", + "s-tracker", + [2, 1764, 9281], + [2, 9280, 9282], + [2, 619, 9283], + [1, 2343, 9286], + [0, 9287, 9288, 9289, 2537], + [0, 3080], + [0, 14408, 15243, 14406, 15245, 14405, 14404], + [0, 11995, 4552, 1398, 6866, 7270, 1411, 1781, 4699, 15247], + [1, 2343, 9294], + "theming", + [2, 5695, 9291], + [2, 619, 9292], + [0, 0, 9295, 9297, 2537], + [0, 1177, 1948, 2899, 3421], + [2, 9710, 15201], + [0, 1412, 1413, 6435, 1644, 57, 6270, 15253], + [1, 2343, 9299], + [0, 9303, 9304, 9305, 2537], + "mui-x", + "timepicker", + [2, 1666, 9301], + [0, 15258, 8697, 2105, 15261, 11935, 11938, 11943, 14025, 15262, 4747, 4748], + [0, 4874, 1429, 15264, 1610, 2899, 4255, 4474, 91], + [0, 4504, 15266, 1973, 2759, 15267, 3323, 202], + [1, 2343, 9325], + "@headlessui/react", + "@iconify-icon/react", + [3, 602, 8], + [2, 9309, 1194], + "@mdx-js/mdx", + "@shikijs/transformers", + "@theguild/remark-npm2yarn", + "nist", + [2, 7817, 9314], + "@vcarl/remark-headings", + "approximate-number", + "-watch-webpack-plugin", + [2, 2473, 9318], + "flex", + "flexsearch", + "git-url-parse", + "phrasing", + [2, 3138, 9323], + [0, 0, 9326, 2514, 2523], + [ + 0, 6041, 1192, 2020, 2675, 2205, 4042, 668, 12444, 4468, 4474, 4508, 2151, 1894, 15275, 91, 53, 5087, 2990, + 3123, 4864, 4131, 15276, 4057, 15277, 811, 1652, 816, 15273 + ], + "next-seo", + "-async", + [2, 3830, 9328], + [3, 3968, 10], + "ract", + "-excerpt", + [2, 9331, 9332], + [2, 9330, 9333], + "rehype-p", + "retty-code", + [2, 9335, 9336], + "matter", + "frontmatter", + [2, 3986, 9339], + "remark-h", + "eading-id", + [2, 9341, 9342], + "link-", + "rewrite", + [2, 9344, 9345], + [2, 3986, 9346], + "shiki", + [1, 2343, 9356], + "-themer", + [2, 4383, 9350], + "virtual-", + [2, 9352, 5260], + [2, 4670, 9353], + "zustand", + [0, 9369, 9370, 9371, 2443], + [2, 4860, 4349], + "tra-watch-webpack-plugin", + [2, 8773, 9358], + [3, 7634, 10], + "-url-parse", + [2, 9360, 9361], + [2, 9099, 6892], + "@repo/eslint-config", + "@repo/", + [2, 4524, 1541], + [2, 9365, 9366], + [2, 9365, 7628], + [0, 2928, 32554], + [0, 11976, 15288, 8419, 4874, 7677, 37080, 8420, 4039, 4493, 91, 1984, 8422], + [0, 2325, 20164, 8436, 202, 10339, 8437, 1552, 3143, 8438, 9553, 8439, 8440, 8441, 8442, 8443], + [1, 2343, 9373], + [0, 9377, 9380, 9385, 2537], + [3, 5309, 9], + [2, 9374, 8924], + [2, 9374, 57], + [0, 9441, 15305, 15308, 15310], + "css-what", + "esthetic", + [0, 13614, 1159, 9254, 1855, 1177, 2011, 2133, 13619, 2708, 3410, 3421, 3431, 4103, 4389], + "builder", + "guides", + "demo", + "ng-doc", + [0, 5284, 5286, 3595, 676, 6716, 7239, 6714, 6715, 7162, 1417, 7272, 3046, 6830], + [1, 2343, 9387], + [0, 0, 8134, 9388, 2537], + [0, 1420, 15320, 15318, 15321, 13230, 15322, 1758, 4545, 15323, 1871, 2585, 6270, 15324, 15326], + [1, 2343, 9390], + [0, 0, 0, 9391, 2537], + [0, 12080, 12075, 8221, 1388], + [1, 2343, 9399], + [2, 3964, 1671], + "has-p", + [2, 9394, 3871], + [2, 2573, 9395], + [3, 9396, 11], + "eading-", + [0, 0, 0, 9410, 2523], + "eading-rank", + [2, 9397, 9400], + "rehype-m", + "inify-", + [2, 9403, 3661], + [2, 9402, 9404], + [3, 4555, 11], + [2, 9406, 7131], + [3, 9312, 9], + [2, 9408, 3958], + [0, 4231], + [1, 2343, 9412], + [0, 9413, 9418, 9419, 34352], + [0, 3299, 32944], + "ordinal", + [3, 6490, 12], + "as-promised", + [2, 9415, 9416], + [0, 4874, 15342, 2026, 2822, 2899, 3536, 4255, 4481, 91], + [0, 1424, 15344, 11812, 15345, 15346, 158, 11806, 2636], + "ethers", + "hat", + "hardhat", + "n.js", + [2, 4853, 9423], + [3, 634, 25], + [2, 9425, 9420], + [3, 634, 17], + "low-", + "low-imports", + [2, 1967, 9429], + [2, 9427, 9430], + [3, 9431, 31], + "-inter", + "nal-rules", + [2, 9433, 9434], + [2, 9422, 9435], + [2, 9432, 9436], + [1, 2343, 9442], + "ethereum", + "smart-contracts", + [2, 1417, 15307], + [0, 0, 9443, 9444, 2537], + [0, 1159, 1177, 1881, 1938, 2151, 2899, 2924], + [0, 2924, 1932, 15356, 1204, 3209], + [1, 2343, 9446], + [0, 0, 0, 9450, 2523], + "proggy", + "cacache", + "bin-links", + [0, 3521, 15361, 1973, 5472, 15362], + "treeverse", + "@npmcli/fs", + "walk-", + "up-path", + [2, 9453, 9454], + [2, 636, 3766], + [3, 643, 9], + "edact", + [2, 9457, 9458], + "npm-p", + "ick-manifest", + [2, 9460, 9461], + "-checks", + [2, 1161, 9463], + [2, 3382, 9464], + "promise-", + [1, 2343, 9482], + "call-limit", + [2, 9466, 9468], + [3, 2854, 15], + "nice", + [2, 9470, 9471], + "-conf", + "lict-json", + [2, 9473, 9474], + [2, 1644, 9475], + "package-", + [2, 9477, 1781], + [2, 636, 9478], + "common-", + "ance", + [0, 0, 9511, 9521, 2523], + "stor-path", + [2, 9481, 9483], + [2, 9480, 9484], + "read-p", + "ackage-json-fast", + [2, 9486, 9487], + "all-reject-late", + [2, 9466, 9489], + [3, 641, 9], + "ame-from-folder", + [2, 9491, 9492], + [3, 638, 9], + "etavuln-calculator", + [2, 9494, 9495], + [3, 548, 8], + "e-compare", + [2, 2703, 9498], + [2, 4284, 9499], + [2, 9497, 9500], + "json-p", + "arse", + "-even-better-errors", + [2, 9503, 9504], + [2, 9502, 9505], + "installe", + "d-package-contents", + [2, 9507, 9508], + [2, 636, 9509], + [0, 1414, 15370, 2899, 1177, 668, 2203, 15371, 1690, 1894, 442, 91, 15373, 15374, 5476, 1942, 15376, 811, 5478], + "tcompare", + "oss", + [2, 4641, 9513], + [2, 636, 9514], + [2, 636, 7625], + "minify-", + [3, 3396, 9], + [2, 9518, 6774], + [2, 9517, 9519], + [0, 1973, 6468, 1145, 5472, 1429], + [1, 2343, 9523], + [0, 9524, 9525, 9526, 2523], + [0, 15373], + [0, 1414, 1429, 2899, 1177, 2203, 1894, 442], + [0, 1429, 15385, 1388, 1149, 5472, 5710, 6567, 14833], + [2, 664, 591], + [1, 2343, 9529], + [0, 0, 9530, 9531, 34352], + [0, 3095, 2899, 1429], + [0, 1429, 3495, 15393], + [1, 2343, 9533], + [0, 0, 9534, 9535, 34352], + [0, 1429, 2899, 2759, 1596, 14942, 15398], + [0, 1429, 15385, 15400, 1435, 6793, 1932, 15402, 1697, 15403, 3529, 9549, 7015, 15405], + [3, 9479, 9], + "-spawn", + [2, 2751, 9537], + [2, 9536, 9538], + [1, 2343, 9541], + [0, 0, 9543, 9544, 4139], + "spawk", + [0, 1414, 1906, 1166, 4481, 2020, 3130, 3077, 15411, 4874, 6271], + [ + 0, 1473, 7208, 1512, 7009, 7201, 200, 1871, 1111, 590, 592, 6621, 6983, 6616, 7244, 4166, 4744, 3073, 6807, + 6876, 2585 + ], + [1, 2343, 9546], + [0, 0, 9571, 9581, 2399], + "innertext", + "highlights", + "similar", + "similarity", + [3, 2954, 9], + [2, 9551, 2714], + "ttl", + [2, 4635, 9553], + "dart", + [2, 9551, 9555], + "glsl", + [2, 9551, 9557], + "haxe", + [2, 9551, 9559], + "rust", + [2, 9551, 9561], + [2, 3064, 2204], + "erlang", + [2, 9551, 9564], + [2, 9551, 4333], + "-tokens", + [2, 9548, 9567], + "atom-language-diff", + [3, 9569, 14], + [0, 1166, 1178, 1596, 15418, 1177, 15421, 2323, 15423, 2384, 2494, 2510, 15424, 1209, 3421, 3756], + "nginx", + [2, 9570, 9572], + "url-t", + "o-object", + [2, 9574, 9575], + [2, 2287, 9576], + [3, 3114, 13], + "xpand-tabs", + [2, 9578, 9579], + [0, 1438, 3778, 1179, 1973, 15426, 1213, 15427, 15428], + "-headers", + [2, 7189, 9582], + [2, 3108, 9583], + [1, 2343, 9589], + "oniguruma", + "-stdout", + [2, 9261, 9587], + [0, 0, 0, 9590, 2523], + [0, 1444, 15321, 6270, 353, 15320, 15326, 15436, 15437, 15439], + "readme", + [1, 2343, 9596], + "formatted", + " highlighting", + [2, 5341, 9594], + [0, 9597, 9598, 2514, 2537], + [0, 15444, 9632, 1556, 15447, 6041, 15448, 15449, 3445, 3510, 15450, 15451, 4135, 15452], + [0, 4874, 5254, 7677, 1177, 1905, 2807, 1894, 4257, 91, 4543, 1984], + [1, 2343, 9600], + [0, 9601, 9602, 9603, 2537], + [0, 15458], + [ + 0, 811, 15460, 8850, 816, 842, 1006, 15463, 1009, 1011, 15465, 15467, 15469, 1540, 1596, 1610, 1177, 15471, + 1927, 1937, 1948, 1999, 2070, 2765, 2766, 2297, 2881, 2886, 2891, 2895, 2898, 6387, 2910, 15475, 2923, 5303, + 3220, 3222, 3536, 4042, 4052, 6390, 15478, 4073, 91, 4747 + ], + [0, 1424, 15480, 2382, 15481, 12075, 6398], + [1, 2343, 9605], + [0, 9606, 9607, 9608, 2443], + [0, 3493, 4548, 15488, 15487, 2654, 15486, 1754, 15502, 15491, 15499, 15495], + [ + 0, 4494, 4483, 2675, 2832, 1177, 2814, 1984, 2203, 1894, 4441, 442, 91, 4874, 2990, 13204, 19438, 15504, 1953, + 15505, 4523, 7677, 1942, 22839, 1982, 3703, 15507, 1895 + ], + [0, 15512, 2814, 3585, 15514, 57, 965, 6523, 1936], + [1, 2343, 9610], + [0, 9611, 9612, 9613, 2523], + [0, 1615, 15526, 3734], + [0, 1173, 14184, 1235, 1267, 1429, 1177, 2272, 2899], + [0, 1451, 3729, 6567], + [1, 2343, 9615], + [0, 9616, 9617, 9618, 2537], + [ + 0, 97, 15533, 8597, 15538, 13042, 1156, 1325, 15540, 1461, 1505, 12160, 1582, 1593, 1603, 15541, 15545, 15547, + 15548, 13047, 15550, 5100, 15551, 15553, 2752, 2822, 15554, 2272, 15555, 15556, 12172, 3220, 15559, 1894, 11196, + 15560, 15562, 3775, 11219, 11363, 15566, 15568, 15570, 15573, 3843, 3847, 15575, 15578, 3876, 3893, 3913, 4023, + 15579, 11264, 4163, 15580, 4484, 4545, 4649, 3348 + ], + [ + 0, 53, 61, 71, 73, 76, 78, 5806, 13052, 5835, 15585, 83, 5850, 5853, 87, 90, 7833, 7839, 7840, 11275, 4859, + 15587, 15592, 4863, 15594, 15596, 5087, 15598, 4870, 15600, 15602, 12179, 4880, 15605, 4883, 15606, 15607, + 11322, 1009, 1011, 1110, 1165, 1170, 1175, 1178, 1193, 1195, 1205, 13080, 5098, 15609, 15611, 15612, 15613, + 1426, 1437, 13086, 1525, 1610, 1628, 4912, 1639, 11336, 13093, 1843, 1845, 8160, 1177, 1879, 1895, 1922, 1938, + 1939, 1947, 1948, 1959, 15615, 2054, 2060, 11345, 2092, 2148, 2193, 2070, 2323, 2338, 2510, 13099, 2529, 2675, + 2686, 2697, 15616, 1192, 2832, 5102, 695, 13115, 2990, 1209, 11357, 13119, 15618, 13123, 3177, 3183, 3188, 3190, + 3191, 3213, 3216, 3222, 3427, 3463, 3561, 3618, 3720, 11204, 15619, 15622, 11362, 89, 3807, 3810, 3817, 3820, + 5106, 5108, 15624, 3846, 15627, 9340, 3992, 13124, 13127, 8304, 13128, 4039, 13129, 15629, 4320, 11384, 11389, + 4323, 11396, 4328, 4409, 4431, 4469, 91, 4549, 4027, 15630, 15632, 2924, 15635, 4689, 13152, 11401, 5038, 3354 + ], + [0, 15637, 4964, 89, 5128, 4627, 4963, 181, 5130, 4967], + [1, 2343, 9620], + [0, 9629, 9630, 9631, 2537], + "Monorepo", + "Angular", + "Web", + "Node", + "Nest", + "Jest", + "Cypress", + "CLI", + [0, 15648], + [0, 15645, 4874, 1894, 4448, 91, 10761], + [0, 2150, 2282, 6720, 7158, 6929, 2090, 2154], + "confbox", + [1, 2343, 9634], + [0, 0, 9635, 9636, 2523], + [0, 1470, 2675, 23535, 4255, 4389], + [0, 15656, 15658, 11857, 1973, 13735], + [2, 13512, 9638], + "-old", + [1, 2343, 9640], + [0, 9641, 0, 9642, 2523], + [ + 0, 182, 148, 6164, 164, 167, 6215, 137, 27531, 6127, 29468, 159, 15664, 177, 187, 153, 162, 180, 185, 191, 157, + 15667, 15670, 15672, 27537, 140, 15676, 6200, 6166, 143, 15678, 171, 116, 15681, 150, 155, 29542, 15685, 15687, + 6217, 15690, 15692, 122, 169, 15695, 119, 15697, 15700, 6173, 15703, 146, 6133, 6158, 15706, 15712, 111, 6168, + 15714, 15716, 174, 15720, 15724 + ], + [0, 6092, 1459, 6094, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130], + [1, 2343, 9644], + [0, 0, 9645, 9646, 2523], + [0, 4481, 4042, 4441, 2665, 3117, 8850, 811, 816], + [0, 89, 1623, 5256, 6848, 1461, 614, 6435], + "EsBuild", + "Front-end", + "Backend", + [1, 2343, 9651], + [0, 9652, 9653, 9655, 2523], + [0, 4227], + [0, 1389, 1177, 1881, 2659, 3297, 4153, 4616], + "linter", + [0, 1623, 2632], + [1, 2343, 9660], + "Lint", + "ESLint", + "Testing", + [0, 9661, 9662, 9663, 2399], + [0, 1700], + [ + 0, 48, 53, 87, 92, 15742, 5087, 4874, 15745, 1193, 1503, 1610, 1701, 1177, 2020, 2675, 1192, 2990, 2991, 3377, + 1894, 3921, 4135, 15747, 91, 2924 + ], + [0, 2924, 1932, 4050, 202], + [1, 2343, 9665], + [0, 0, 0, 9666, 2523], + [0, 1111, 1468, 7009], + "Express", + [1, 2343, 9669], + [0, 9670, 8134, 9671, 4139], + [0, 15757, 4025], + [0, 1468, 1237, 3209, 1204, 2325, 15759, 15760, 15761, 5669, 6865, 7293, 6790, 2145], + [1, 2343, 9674], + "js-tokens", + [0, 9679, 0, 9682, 2523], + "const-enum", + [2, 1199, 9675], + [2, 4524, 6774], + [2, 1226, 9677], + [0, 2070, 2021], + "Swc", + "Tsc", + [0, 200, 9753, 15767, 15769, 15768, 7058, 7201, 15770, 15771, 15774, 1523, 15776], + [1, 2343, 9684], + [0, 0, 9685, 9686, 4139], + [0, 1166, 91, 1906], + [0, 200, 5403, 14907, 7009, 6048, 7201, 6938, 3656, 14908, 2585, 1781], + "@nestjs/schematics", + "@phenomnomnominal/tsquery", + "@date-fns/tz", + [1, 2343, 9691], + [0, 9693, 9694, 9695, 2537], + [3, 23750, 37, 8], + [0, 2353, 1856, 15786, 13824, 15788], + [0, 1177, 15793, 15797, 15801, 2675, 2990, 3421, 15804, 15805], + [0, 1111, 1473, 7201, 7009, 200, 4166, 3073, 6807, 4744], + [1, 2343, 9697], + [0, 9698, 9699, 9700, 2443], + [0, 4035], + [0, 4874, 1166, 91, 1906], + [0, 200, 13006, 1111, 15813, 5876, 15814, 15815, 6048, 7009, 7201, 6621, 4166, 6876], + [1, 2343, 9702], + [0, 0, 0, 9703, 34352], + [0, 200], + [2, 689, 2656], + [3, 691, 8], + [2, 9705, 3320], + "help", + [2, 689, 9707], + [1, 2343, 9713], + [3, 691, 14], + "plugins", + [2, 9710, 9711], + [0, 0, 9715, 9716, 2537], + "fancy-test", + [0, 1166, 3077, 15826, 91, 1906], + [0, 200, 1478, 6787, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921, 1781], + [1, 2343, 9718], + [0, 9719, 9720, 9726, 2399], + [0, 1512], + [0, 4170, 15833], + [3, 4866, 9], + "dent-string", + [2, 9721, 9722], + "xyquire", + [2, 6508, 9724], + [0, 200, 1512, 176], + [1, 2343, 9728], + [0, 9729, 9732, 9751, 2523], + [0, 1209, 4290, 1512], + "clean-stack", + "widest-line", + [0, 15841, 1429, 1481, 1596, 15843, 15844, 2323, 2436, 2463, 2541, 4193, 4196], + "rett", + "ier-config", + [2, 9733, 9734], + [2, 9705, 9735], + [2, 689, 1973], + [3, 4859, 9], + "ean-stack", + [2, 9738, 9739], + "@types/ejs", + "npapi", + [2, 5088, 9742], + [3, 9240, 10], + "ports-color", + [2, 9744, 9745], + [3, 7822, 10], + "dwrap", + [2, 9747, 9748], + "madge", + [0, 202, 1523, 3924, 200, 176, 15846, 15847, 3656, 1512, 10052], + " line", + [2, 1523, 9752], + [1, 2343, 9755], + [0, 9756, 9757, 9751, 2399], + [0, 4290], + [0, 1481, 1177, 1895, 1955, 1192, 15853, 15854, 1894], + [1, 2343, 9759], + [0, 9761, 8134, 9762, 2399], + [2, 1890, 4406], + [0, 4208, 4290], + [0, 15862, 15864, 2585, 7051, 6913, 200, 7009, 6048, 4166, 4289, 1111, 1871], + [1, 2343, 9764], + [0, 9775, 9795, 6936, 2537], + "paginate-rest", + [2, 1186, 9765], + [2, 7724, 9766], + [3, 9767, 16], + "request-", + "request-log", + [2, 9768, 9770], + [3, 9771, 18], + "st-endpoint-methods", + [2, 9772, 9773], + [ + 0, 1437, 4484, 2755, 1209, 4135, 2822, 15869, 2151, 4294, 688, 1110, 9730, 15871, 1107, 13223, 4290, 15872, + 15873, 2709, 15876, 4351, 15877, 15880, 15883, 15887 + ], + "-action", + "auth-action", + [2, 7724, 9777], + [3, 9778, 15], + "pp", + [2, 9779, 9780], + [2, 1182, 2995], + [2, 7724, 9782], + [3, 692, 11], + [2, 9784, 5460], + [2, 7724, 2190], + "update-", + "vers", + "in-files", + [2, 7854, 9789], + [2, 9788, 9790], + [2, 9787, 9791], + [2, 6324, 9792], + [2, 4131, 9793], + [ + 0, 1429, 1170, 2899, 1177, 4474, 9714, 91, 4856, 4874, 6503, 4870, 5254, 7637, 4864, 1431, 15891, 15893, 9740, + 1891, 15897, 9746, 9417, 1893 + ], + "octokit", + [3, 3450, 10], + [1, 2343, 9799], + [0, 9800, 9801, 9802, 2523], + [0, 7103], + [ + 0, 816, 10817, 5087, 4870, 4874, 27744, 1009, 1011, 15903, 15906, 1177, 15909, 1959, 2188, 1192, 1209, 4042, + 15911, 4468, 4474, 91 + ], + [0, 200, 91, 57, 7119, 7233, 7058, 5675, 1523], + "action-menu", + [2, 698, 9803], + [3, 9804, 21], + "sheet", + [2, 9805, 9806], + [3, 9804, 15], + "lert", + [2, 9808, 9809], + [2, 9808, 2944], + "nchor", + [2, 9808, 9812], + "rea", + [2, 9808, 9814], + "chart", + "flowchart", + [2, 5745, 9817], + [2, 9808, 9818], + "utocomplete", + [2, 9808, 9820], + [1, 2343, 9823], + [0, 9824, 9825, 9827, 2523], + [0, 15917, 1631, 15918], + [ + 0, 53, 87, 1195, 1429, 1610, 1177, 1881, 1895, 1938, 1955, 2675, 2297, 2878, 2881, 2900, 2918, 2925, 2990, 2899, + 1894, 4193, 4481, 4537, 2924, 4677 + ], + "vatar", + [0, 1492, 1585, 15921], + "badge", + [2, 698, 9828], + [3, 9829, 16], + [1, 2343, 9832], + [0, 9836, 9839, 9881, 2537], + "se-select", + [2, 9830, 9833], + [3, 9829, 15], + [0, 34216, 2020, 32794, 2755, 15926, 28429], + "readcrumb", + [2, 9835, 9837], + [0, 1166, 1906], + "-item", + [2, 9838, 9840], + "ulletin-board", + [2, 9835, 9842], + [3, 9843, 16], + "tton", + [2, 9844, 9845], + "-group", + [2, 9846, 9847], + [2, 698, 9026], + [2, 9849, 8657], + [3, 9850, 23], + [2, 9851, 6624], + [3, 9849, 16], + "rd", + [2, 9853, 9854], + [2, 9855, 9847], + [3, 9856, 19], + [2, 9857, 1283], + [3, 9855, 17], + "ousel", + [2, 9859, 9860], + [2, 9861, 9840], + "scader", + [2, 9853, 9863], + "-menu", + [2, 9864, 9865], + [3, 9866, 24], + "obile", + [2, 9867, 9868], + [3, 9866, 23], + [2, 9870, 202], + "panel", + [2, 9870, 9872], + [2, 9870, 1631], + [2, 9870, 6624], + [3, 9849, 15], + "ell", + [2, 9876, 9877], + "hart", + [2, 9876, 9879], + [0, 1492, 1585, 15928, 15929, 15930, 3917, 6033, 15931, 1490, 15932, 15933], + [1, 2343, 9883], + [0, 9884, 9885, 6162, 2537], + [0, 4290, 4294, 4726], + [0, 4874, 1009, 1011, 1414, 1429, 1437, 1610, 1177, 1938, 1953, 2321, 2899, 4039, 8689, 91], + [1, 2343, 9887], + [0, 0, 9888, 2514, 2487], + [0, 2276], + [1, 2343, 9890], + [0, 0, 9891, 9893, 2399], + [0, 1999, 4579, 4072], + "gauge", + [0, 5256, 6848, 1461], + [1, 2343, 9895], + [0, 9896, 0, 9897, 2523], + [0, 1474], + [0, 15953, 9628, 14777, 15955, 1478, 9892, 3924, 7201, 1398], + [1, 2343, 9899], + [0, 0, 9900, 9901, 2487], + [0, 1389, 15960, 2899, 3261], + [0, 1149, 2124, 1179, 15962, 15964], + [1, 2343, 9903], + [0, 9904, 9905, 9907, 2537], + [0, 2927], + [0, 4170, 2899, 1499], + "pie", + [0, 7009, 7201, 3741, 8622, 6875, 10098, 1499], + [1, 2343, 9909], + [0, 9034, 9910, 9911, 2523], + [0, 620, 3123], + [0, 1973, 2022, 6468], + [1, 2343, 9913], + [0, 9914, 9915, 9916, 2443], + [0, 6478, 15980, 2822, 15984, 15985], + [0, 1177, 1895, 2675, 1192, 2990, 3203, 1894], + [0, 4504, 15988, 15990, 1503], + [1, 2343, 9918], + [0, 9919, 9920, 9921, 2487], + [0, 15997, 15999, 16000, 16002, 16003, 16005, 16006], + [0, 16009], + [0, 6038, 1501], + [1, 2343, 9923], + [0, 0, 9924, 9926, 2399], + [0, 1734, 16015, 2600, 3105, 4545], + "fall", + [0, 5284, 1351, 1509, 4643], + [1, 2343, 9928], + [0, 0, 9929, 9926, 2537], + [0, 53, 87, 10688, 1505, 1734, 2600, 16021, 3105, 3758, 4545, 2924], + [1, 2343, 9946], + [3, 9880, 16], + "eckbox", + [2, 9931, 9932], + "-button", + [2, 9933, 9934], + [3, 9935, 23], + [2, 9936, 7227], + [2, 9876, 7877], + "lapse", + [2, 9938, 9939], + [2, 9940, 9840], + [3, 9941, 23], + "ition", + "transition", + [2, 9942, 9944], + [0, 9972, 9975, 10072, 2537], + "icker", + "or-picker", + [2, 9938, 9948], + [3, 9949, 20], + "select-", + [2, 9951, 9872], + [2, 9950, 9952], + "umn-list-group", + [2, 9938, 9954], + [3, 9955, 26], + [2, 9956, 5401], + [3, 9938, 16], + "mpany", + [2, 9958, 9959], + "nfig-", + "provider", + [2, 9961, 9962], + [2, 9958, 9963], + [3, 9964, 17], + "tainer", + [2, 9965, 9966], + "untry", + [2, 9958, 9968], + "rop", + [2, 9876, 9970], + [0, 6271, 11421], + "urrency", + [2, 9876, 9973], + [0, 2899, 4481, 1906], + "date-panel", + [2, 698, 9976], + [3, 9977, 20], + [2, 9978, 9947], + "-mobile-", + "first", + [2, 9980, 9981], + [2, 9979, 9982], + [3, 9977, 19], + [2, 9984, 6754], + [2, 9984, 176], + [3, 9977, 15], + "ept", + [2, 9987, 9988], + "ialog-box", + [2, 9987, 9990], + [3, 9991, 21], + [2, 9992, 1631], + [3, 9991, 16], + "vider", + [2, 9994, 9995], + "rawer", + [2, 9987, 9997], + [3, 9998, 16], + "op-roles", + [2, 9999, 10000], + [3, 10001, 19], + "times", + [2, 10002, 10003], + [3, 10001, 18], + [2, 10005, 2971], + [2, 10006, 9840], + [3, 10007, 23], + [2, 10008, 4403], + "ynamic-", + "scroller", + [2, 10010, 10011], + [2, 9987, 10012], + [2, 10013, 9840], + "espace", + [2, 698, 10015], + [3, 10016, 15], + "xception", + [2, 10017, 10018], + "fall-menu", + [2, 698, 10020], + [3, 10021, 15], + "ile-upload", + [2, 10022, 10023], + [3, 10024, 17], + [2, 10025, 2389], + [2, 10026, 8657], + [3, 10027, 22], + "ox", + [2, 10028, 10029], + [3, 10027, 21], + [2, 10031, 9872], + "loat-button", + [2, 10022, 10033], + [3, 10034, 19], + "bar", + [2, 10035, 10036], + "ing-", + "button", + "ing-button", + [2, 10035, 10040], + [3, 10034, 17], + "wchart", + [2, 10042, 10043], + [3, 10034, 16], + "uent-editor", + [2, 10045, 10046], + [2, 10022, 3469], + [2, 10048, 9840], + "ullscreen", + [2, 10022, 10050], + "grid", + [2, 698, 10052], + "-column", + [2, 10053, 10054], + [3, 10055, 19], + "manager", + [2, 10056, 10057], + "toolbar", + [2, 10056, 10059], + [3, 10053, 15], + "uide", + [2, 10061, 10062], + "hrapprover", + [2, 698, 10064], + [2, 698, 158], + "-viewer", + [2, 10066, 10067], + [3, 10066, 15], + "ndex-bar", + [2, 10069, 10070], + [0, 1473, 7208, 1623], + [3, 10071, 16], + "put", + [2, 10073, 10074], + "p-address", + [2, 10069, 10076], + [2, 698, 5433], + [3, 10078, 16], + "yout", + [2, 10079, 10080], + [3, 10078, 15], + [2, 10082, 2716], + [2, 10083, 9865], + [1, 2343, 10086], + [0, 0, 0, 10090, 2523], + "oading", + [2, 10082, 10087], + [3, 10088, 16], + [0, 7009, 592, 1473, 1111], + "cales", + [2, 10089, 10091], + "gon-user", + [2, 10089, 10093], + [3, 10094, 18], + "ut", + [2, 10095, 10096], + "mask", + [2, 698, 10098], + [3, 10099, 15], + "enu", + [2, 10100, 10101], + [3, 10102, 16], + "ssage", + [2, 10103, 10104], + "ilestone", + [2, 10100, 10106], + [3, 10107, 16], + "nd-map", + [2, 10108, 10109], + [1, 2343, 10112], + [0, 0, 10113, 10120, 2523], + [0, 1177, 1886], + [2, 10100, 3852], + [3, 10114, 16], + "nth-range", + [2, 10115, 10116], + [3, 10117, 20], + [2, 10118, 176], + [0, 1111, 7009, 1512], + [1, 2343, 10122], + [0, 10140, 10184, 10220, 2443], + "nav-bar", + [2, 698, 10123], + [3, 10124, 18], + [2, 10125, 4403], + [3, 10124, 15], + [2, 10127, 2304], + "umeric", + [2, 10127, 10129], + [2, 698, 5675], + [2, 10131, 9847], + "pager", + [2, 698, 10133], + [2, 10134, 9840], + [3, 10134, 16], + [2, 10136, 7251], + [3, 10134, 15], + [2, 10138, 9947], + [0, 4294, 16041], + "op-upload", + [2, 10138, 10141], + [3, 10142, 17], + [2, 10143, 8622], + [2, 10143, 6038], + [2, 10143, 2883], + [2, 10143, 2104], + "rogress", + [2, 10138, 10148], + "ull-refresh", + [2, 10138, 10150], + "qr-code", + [2, 698, 10152], + [3, 10153, 15], + "uarter-panel", + [2, 10154, 10155], + [3, 10156, 16], + "ery-builder", + [2, 10157, 10158], + [3, 697, 15], + "adio", + [2, 10160, 10161], + [2, 10162, 9934], + [3, 10163, 20], + [2, 10164, 7227], + [3, 10162, 16], + [2, 10166, 6864], + [3, 697, 16], + "cord", + [2, 10168, 10169], + [3, 10170, 17], + "ycle-scroller", + [2, 10171, 10172], + "ich-text-editor", + [2, 10160, 10174], + [3, 10175, 16], + "ver", + [2, 10176, 10177], + "oles", + [2, 10160, 10179], + [3, 10180, 16], + "w", + [2, 10181, 10182], + [0, 1173, 1267, 1437, 4387, 4389], + "scroll-text", + [2, 698, 10185], + [3, 10186, 20], + [2, 10187, 10036], + [3, 10186, 15], + "earch", + [2, 10189, 10190], + [3, 10191, 16], + [2, 10192, 4021], + "-dropdown", + [2, 10193, 10194], + [3, 10195, 21], + [2, 10196, 5131], + [2, 10196, 6624], + "ed-box", + [2, 10193, 10199], + [2, 10189, 1580], + "keleton", + [2, 10189, 10202], + [2, 10203, 9840], + "lider", + [2, 10189, 10205], + [2, 10206, 9934], + [2, 10207, 9847], + "plit", + [2, 10189, 10209], + "-list-item", + [2, 1902, 10211], + [2, 10189, 10212], + [3, 10213, 17], + "tistic", + [2, 10214, 10215], + [3, 10213, 16], + "eps", + [2, 10217, 10218], + [0, 6922, 2585, 1111, 7201, 7009, 4719, 176], + [1, 2343, 10242], + "witch", + [2, 10189, 10222], + [3, 700, 15], + "ab-item", + [2, 10224, 10225], + [3, 10226, 17], + [2, 10227, 10036], + [2, 10228, 9840], + [2, 10227, 2699], + [2, 10227, 591], + [3, 10226, 16], + "g", + [2, 10232, 10233], + [2, 10234, 9847], + "ext-popup", + [2, 10224, 10236], + "ime", + [2, 10224, 10238], + "-line", + [2, 10239, 10240], + [0, 0, 10243, 10265, 2487], + [0, 2025, 2272, 2899], + [3, 10241, 19], + [2, 10244, 9872], + [3, 10245, 20], + [2, 10246, 9947], + [2, 10247, 701], + [2, 10244, 6754], + [2, 10244, 1631], + [3, 10250, 20], + "pinner", + [2, 10251, 10252], + "line-item", + [2, 10239, 10254], + "oast", + [2, 10224, 10256], + [3, 10257, 16], + "ggle-menu", + [2, 10258, 10259], + "oltip", + [2, 10258, 10261], + "p-box", + [2, 10258, 10263], + [0, 200, 1523, 3504], + "ransfer", + [2, 10224, 10266], + "-panel", + [2, 10267, 10268], + [3, 10267, 16], + "ee", + [2, 10270, 10271], + [2, 10272, 9865], + [3, 10273, 19], + [2, 10274, 1631], + [2, 698, 9229], + "-dragger", + [2, 10276, 10277], + [3, 10278, 21], + [2, 10279, 3392], + [3, 10276, 15], + "ser", + [2, 10281, 10282], + "-account", + [2, 10283, 10284], + [3, 10285, 19], + [1, 2343, 10288], + [0, 10297, 10298, 10305, 2443], + "contact", + [2, 10286, 10289], + [2, 10286, 3193], + [2, 10291, 9847], + [2, 10286, 163], + "watermark", + [2, 698, 10294], + [3, 10295, 15], + [0, 16053, 16056, 3025, 16057], + [0, 1187], + "izard", + [2, 10296, 10299], + "year-range", + [2, 698, 10301], + [3, 10302, 19], + [2, 10303, 176], + [0, 6478, 1644, 7233, 7058, 5675, 14690, 57, 7119, 200, 1523, 3924], + [3, 1533, 10], + [2, 10306, 6082], + "vue-c", + [2, 10308, 544], + "opentiny", + "less-c", + [2, 10311, 544], + [2, 8924, 10312], + [3, 3197, 10], + [2, 10314, 544], + [1, 2343, 10317], + [0, 10318, 10319, 10320, 2537], + [0, 16053, 16064, 16066, 16057], + [0, 811, 816, 2829, 4042, 1187], + [0, 7009, 9753, 1521, 1179], + "esno", + [1, 2343, 10323], + [0, 0, 10324, 10325, 2537], + [0, 4481, 1192, 1177, 2203, 4468, 1894, 442, 91, 5087, 4874, 4523, 1939, 1895], + [0, 1525, 1523, 5675, 57, 200, 7233, 7058, 6478], + [3, 2517, 9], + [2, 10326, 134], + [2, 2522, 8754], + [1, 2343, 10330], + [0, 10331, 10332, 10333, 2523], + [0, 2070, 1680, 1209, 16085, 16078, 2151, 2720, 3183, 7915, 4296, 1707, 16082, 4300, 1652], + [ + 0, 3421, 1429, 3348, 2899, 4193, 2194, 4135, 1503, 3363, 48, 2708, 3752, 53, 94, 4131, 87, 3200, 1208, 16092, + 16088, 16090, 78, 1570 + ], + [0, 1528, 3721, 1671, 16096, 1527], + [1, 2343, 10335], + [0, 10336, 10338, 5265, 2537], + [0, 192, 6303], + "otterhttp", + [0, 6306, 6307, 26379], + "node.js", + "web framework", + [1, 2343, 10343], + [3, 17194, 17], + [0, 0, 10344, 10358, 2487], + [ + 0, 1173, 1178, 1198, 1230, 13982, 1264, 1280, 1503, 1610, 1742, 1177, 1895, 1955, 1192, 3170, 1894, 4039, 4042, + 4045, 4067, 4077, 4706 + ], + "header", + "-range-parser", + [2, 10345, 10346], + [2, 704, 1080], + [3, 703, 13], + "ntent-type", + [2, 10349, 10350], + [2, 988, 2706], + [2, 704, 10352], + [2, 704, 1000], + [2, 704, 1002], + [3, 706, 12], + [2, 10356, 995], + [ + 0, 4552, 1172, 6778, 16107, 5194, 16108, 16109, 1936, 8958, 16110, 3924, 16111, 3250, 16112, 3374, 6985, 16113, + 16114, 16115, 1871, 16116, 4301, 10381, 16117, 1283 + ], + [1, 2343, 10360], + [0, 0, 9839, 10361, 2487], + [0, 2013, 13771, 2018, 6868, 15535, 11631, 16123], + [1, 2343, 10365], + "es-escape-html", + [3, 10351, 19], + [0, 10375, 10377, 10378, 2523], + "disposition", + [2, 10364, 10366], + "encode", + "encode-url", + [2, 704, 10369], + [3, 10370, 12], + "rrors", + [2, 10371, 10372], + [2, 704, 4590], + [0, 1413, 16130, 1676, 12627, 16128, 4100, 4590], + "res", + [0, 1087, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342], + [0, 1536, 16518, 25386, 2663, 2026, 21665, 27, 3101], + [1, 2343, 10380], + [0, 10383, 9264, 2514, 2537], + "tag", + [2, 10371, 10381], + [0, 16136, 2713, 3923, 7231], + "send-file", + [1, 2343, 10386], + [0, 10387, 10388, 10390, 2537], + [0, 4094, 1437, 4747, 4459, 4165, 4351], + [ + 0, 2675, 1177, 1984, 668, 2203, 1894, 442, 91, 4874, 2990, 6479, 4892, 16151, 16150, 4523, 16149, 7677, 4103, + 9746, 22839, 16144, 1895, 1955, 16152, 23753, 10964 + ], + [2, 712, 1732], + [0, 16159, 13792, 12804, 1540, 1523, 16160], + [1, 2343, 10394], + "fined", + "undefined", + [0, 10395, 10396, 10398, 2537], + [0, 2856], + [0, 4874, 1414, 1509, 16166, 34218, 16167, 3583, 705, 4135, 4452, 4474, 91, 4545, 16168, 4745], + "randexp", + [0, 12084, 1541, 8309, 16172, 16174, 1263, 6639], + [3, 10389, 22], + "js-prettier-config", + [2, 10399, 10400], + "i-color", + [2, 9738, 10402], + [3, 7744, 9], + "tp-proxy", + [2, 10404, 10405], + "isnil", + [2, 6308, 10407], + [3, 4874, 9], + "@types/nock", + [1, 2343, 10412], + [0, 10414, 9839, 10415, 2537], + "@types/ramda", + [0, 16181, 8098, 2215, 34027, 16184], + [0, 1541, 1542, 13901, 8309, 6937, 16188, 1781, 2382, 16189, 7007, 14745], + "-and-tag-version", + [2, 1528, 10416], + "hai-friendly", + [2, 4914, 10418], + [3, 3028, 12], + [1, 2343, 10422], + [0, 10423, 10424, 10425, 2537], + [0, 1676, 2099, 3494, 4578], + [0, 1177, 2899, 3421, 4342], + [0, 5130, 5122, 2663, 1544, 16196], + "pact", + "pact-js", + " testing", + "ract testing", + [2, 3109, 10429], + "r driven testing", + [2, 6613, 10431], + [1, 2343, 10434], + [0, 0, 10435, 10436, 2443], + [0, 4616], + [0, 1544, 2026, 16202, 6347], + [1, 2343, 10438], + [0, 0, 10439, 2514, 2537], + [0, 1177, 1192, 4193], + [1, 2343, 10444], + "default", + "waapi", + "urls", + [0, 10445, 10447, 10448, 2537], + [0, 1676, 16211], + "arguments", + [ + 0, 11436, 192, 5467, 19181, 442, 5245, 6494, 7808, 4874, 9240, 1009, 1011, 1166, 1414, 1503, 1177, 1895, 1930, + 1955, 2026, 2040, 2193, 2675, 2990, 3230, 3400, 3446, 1894, 4257, 4342, 1531, 4508, 91 + ], + [0, 1544, 1550, 3230, 1577, 2026], + [1, 2343, 10450], + [0, 0, 10451, 10452, 2523], + [0, 11976, 7808, 4874, 7677, 2040, 4474, 91, 1983, 26744, 1984], + [0, 1544, 1552, 1577, 2026], + [1, 2343, 10454], + [0, 0, 10455, 10456, 4139], + [0, 8646, 4874, 7677, 1446, 16230, 1177, 1905, 16232, 1894, 16234, 15452, 4290, 91, 4543, 1984], + [0, 7201, 2942, 16237, 16238, 200, 14566, 4549, 3741, 16239, 1671, 1851, 16240], + [1, 2343, 10458], + [0, 0, 10459, 10460, 2523], + [ + 0, 1906, 1166, 1758, 16257, 2746, 1797, 7614, 3754, 16272, 16249, 16262, 16264, 16268, 16270, 4371, 16277, + 16279, 2675, 16263, 89, 16278, 1177, 16260, 5304, 16267, 1209, 16269, 4135, 16274, 16276, 16281, 2114, 16261, + 16271, 2608, 3257, 3416, 16282, 3824, 2036, 3985, 16275, 4545, 16280, 53, 16259, 2990, 16265, 16245, 1506, + 16251, 16273, 16256, 16248, 90, 3995, 1909 + ], + [0, 16284, 1283, 6624], + [1, 2343, 10462], + [0, 0, 10463, 10464, 2487], + [0, 1414, 1177, 1903, 1938, 1948, 1954, 1958, 1970], + [0, 1560, 27, 16290, 10376], + [1, 2343, 10467], + "fd-package-json", + [0, 0, 10468, 10469, 2523], + [0, 3421, 2899, 1177, 1693, 1954, 1938, 1958, 1903, 1970], + [0, 1562, 27, 990, 10376, 16296], + [1, 2343, 10471], + [0, 10472, 0, 10473, 2537], + [0, 18186, 10466, 3157, 18183, 16309, 13848, 28401, 16322], + [0, 1566, 16094, 13729, 3073, 200], + [1, 2343, 10475], + [0, 10476, 0, 10477, 34352], + [0, 3157, 16330, 16329, 1566], + [0, 200, 13326, 1566, 16094, 13729, 3073], + [1, 2343, 10479], + [0, 10480, 0, 10481, 2443], + [0, 16337], + [0, 1566, 16341, 16342], + [1, 2343, 10483], + [0, 0, 10484, 10485, 2537], + [0, 16349, 4384], + [0, 6270, 12938, 4225, 3053, 1388, 1676], + [1, 2343, 10487], + [0, 0, 10488, 10489, 2523], + [0, 29867, 7677, 16356, 91, 1984], + [0, 977, 16358], + [1, 2343, 10491], + [0, 10492, 9025, 10493, 2537], + [0, 977, 1581], + [0, 977, 2663], + [1, 2343, 10495], + [0, 10496, 10497, 10498, 2399], + [0, 16358, 1676, 16128, 4100], + [0, 1544, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342], + [0, 1544, 2026, 2663, 1577], + [1, 2343, 10500], + [0, 0, 0, 10501, 2537], + [0, 977, 16375, 16376], + [1, 2343, 10503], + [0, 10504, 10505, 10506, 2537], + [0, 16382], + [0, 1389, 3183, 3294, 16384, 3460, 16389, 4535], + [0, 1492, 1585, 1388], + [1, 2343, 10508], + [0, 10509, 10510, 10511, 2537], + [0, 27921, 2200, 4121, 3369, 4143], + [ + 0, 1700, 1192, 2675, 3144, 1622, 1177, 1701, 2203, 16407, 2924, 1894, 1610, 48, 442, 1193, 91, 53, 4874, 2092, + 2990, 3400, 192, 1953, 27928, 4257, 87, 4523, 16396, 1939, 1942, 68, 1938, 16398, 20281, 1982, 1895, 1955, + 19344, 16400, 5467 + ], + [0, 2924, 1932, 16410, 7004, 1585], + [1, 2343, 10513], + [0, 10514, 10515, 2514, 2537], + [0, 2070, 3181, 3188, 16415, 4431, 4558, 4747], + [0, 4039, 4389, 4387], + [1, 2343, 10517], + [0, 0, 7923, 10518, 2537], + [0, 16421, 11194, 1179, 16423, 16424, 16425], + [1, 2343, 10520], + [0, 10521, 10522, 10523, 2537], + [0, 3044, 1588, 16432], + [0, 4880, 4883, 91, 89, 3824], + [0, 89, 91, 11194, 11255, 16435], + [1, 2343, 10525], + [0, 10526, 10527, 10528, 2537], + [0, 1543, 16446, 16449, 16444, 6038, 2020, 3368, 4135, 4375], + [0, 16454, 1414, 2765, 4037], + [0, 1591, 5576, 200], + [1, 2343, 10530], + [0, 0, 0, 10531, 2523], + [ + 0, 6570, 6964, 6789, 7221, 6746, 7011, 7194, 7087, 6839, 6860, 6918, 6620, 6777, 16461, 6748, 7171, 6894, 6945, + 6743, 7309, 6837, 6644, 6634, 7259, 6797, 7061, 6608, 16462, 6726, 6828, 7275, 6569, 7144, 7108, 7027, 7263, + 6923, 6854, 7134, 6762, 7042, 6818, 6677, 6422, 6805, 1858 + ], + [1, 2343, 10533], + [0, 10534, 10535, 10536, 2537], + [0, 3427, 4590], + [0, 1087, 1177, 2026, 2899, 3421, 4342], + [0, 1594, 2026, 1544, 2663], + [1, 2343, 10538], + [0, 10539, 10540, 10541, 2487], + [0, 16473, 2702, 2822, 16474], + [ + 0, 7637, 4874, 16478, 1009, 1011, 16480, 1610, 1177, 16482, 1895, 1915, 1938, 1954, 1985, 2675, 2990, 15757, + 1894, 16484, 91, 1984 + ], + [0, 3001, 8309, 1541], + [1, 2343, 10543], + [0, 10544, 10545, 10546, 2537], + [0, 2822, 16491, 16492, 3183, 705], + [0, 2899, 3421, 4170, 4172, 4193, 1906], + [0, 4504, 1596], + [1, 2343, 10548], + [0, 10549, 10550, 10551, 2537], + [0, 16499, 2205, 3157], + [0, 1166, 2020, 3505, 16330, 1906], + [0, 13326, 200, 1585, 16502, 16499, 2090, 1586, 1496, 2150, 3101, 2070, 16503, 3275, 2062, 3719, 2382, 1563, 16504], + [1, 2343, 10553], + [0, 10554, 10555, 10556, 2537], + [0, 2212, 16513, 1448, 16509, 16512, 2685, 16511], + [0, 1414, 1166, 4494, 3297, 4193, 1177, 2203, 442, 16515, 91, 4874, 4454, 4523], + [0, 5284, 1598, 16517, 15514, 15362, 2814, 6710, 27, 2671, 13333, 2212, 705, 1002, 11996, 16518], + "@epic-web/invariant", + [1, 2343, 10559], + [0, 0, 0, 10560, 2443], + [0, 1599, 16523, 16526, 16528, 16524, 16530, 16531, 16532, 13580, 16533, 16534, 16536, 16537], + [1, 2343, 10562], + [0, 10563, 10564, 10565, 2523], + [0, 16542, 2713, 13892, 16543, 16544], + [0, 13817, 4100, 4255, 4387, 4389], + [0, 1616], + [1, 2343, 10567], + [0, 10568, 10569, 10570, 2523], + [0, 3082, 3427], + [0, 1192, 3744, 89, 3824, 2924], + [0, 89], + [1, 2343, 10573], + "degit", + [0, 10574, 10575, 10576, 2399], + [ + 0, 63, 16560, 1462, 1532, 16563, 16566, 1676, 2105, 2185, 2205, 2212, 16568, 2709, 16570, 2743, 2812, 1209, + 3021, 3093, 3157, 16571, 13233, 16572, 3527, 3544, 3561, 16573, 16576, 16578, 4002, 4207, 4400, 4431, 4597 + ], + [0, 1149, 1610, 2099, 2182, 1192, 3297, 16581, 4151, 16584, 4278, 4603, 1906], + [0, 1604, 3403, 1623, 16587], + [1, 2343, 10578], + [0, 10579, 10580, 10581, 4139], + [0, 6501, 5303], + [ + 0, 192, 442, 16596, 16597, 16602, 6061, 16607, 6063, 6065, 16608, 16612, 842, 16145, 5087, 4874, 6513, 1610, + 1177, 1895, 1939, 1955, 2675, 1192, 2990, 1894, 4131, 4193, 91, 4523 + ], + [0, 1605, 16615, 16617, 16618, 4116, 16619, 16621], + [1, 2343, 10583], + [0, 0, 0, 10584, 2537], + [0, 1605, 6400, 5995, 57, 1606, 16618, 4116, 16629, 5957, 12692, 14571, 16631], + [1, 2343, 10586], + [0, 0, 10587, 10588, 2537], + [ + 0, 30684, 33382, 16636, 16637, 33968, 33969, 16638, 33971, 17212, 4874, 1177, 16644, 1930, 1938, 1942, 1951, + 1953, 16647, 1958, 1964, 1982, 2203, 25209, 3124, 16649, 3390, 1894, 23535, 33974, 4508, 91, 16650 + ], + [0, 1605, 16631, 4116, 1608, 6400, 5995], + [1, 2343, 10590], + [0, 10591, 0, 10609, 2537], + [0, 10870, 16666], + [3, 804, 10], + [2, 10592, 8893], + [2, 10592, 8891], + [3, 10594, 12], + [2, 10595, 8896], + [2, 10592, 8905], + [3, 10597, 11], + "omutils", + [2, 10598, 10599], + "ragdrop", + [2, 10598, 10601], + [2, 10592, 8652], + [2, 10592, 8899], + [2, 10592, 3583], + [2, 10592, 8901], + "virtualdom", + [2, 10592, 10607], + [ + 0, 158, 12712, 7004, 16660, 16661, 16662, 16663, 16664, 29241, 29242, 29244, 29245, 29247, 29248, 1936, 1623, + 5284, 6400, 5122 + ], + [1, 2343, 10611], + [0, 10612, 10613, 10618, 2523], + [0, 10557, 1615], + [0, 31088, 21122, 4874, 7677, 23203, 1177, 1894, 91, 1984, 31103], + "@release-it/conventional-changelog", + [2, 812, 4072], + "cobertura", + "git-", + [0, 16674, 16676, 6574, 16697], + "git-cz", + [1, 2343, 10625], + "global-jsdom", + [2, 7627, 1177], + [2, 10622, 20], + "putout", + [0, 10626, 10628, 10629, 2523], + [0, 3310], + "quibble", + [ + 0, 3421, 1429, 3297, 2675, 2899, 4747, 4039, 4042, 4135, 1503, 2026, 2924, 4255, 1527, 91, 4856, 4874, 1364, + 2990, 4150, 4677, 6503, 4705, 192, 4257, 8849, 3198, 15277, 1652, 28710, 5467 + ], + [0, 1612, 27, 1002, 1862, 1149, 7003, 14571, 14566, 202, 89, 970, 1388, 6805, 7102, 4731, 6662], + "remark-github", + "toc", + "remark-toc", + [2, 4513, 9339], + [3, 4514, 16], + "dn-links", + [2, 10634, 10635], + "no-inherit", + [2, 4513, 10637], + [2, 4513, 3984], + [3, 10639, 17], + "-defaults", + [2, 1213, 10641], + [2, 10640, 10642], + [1, 2343, 10647], + "-prettier", + [2, 4549, 10645], + [0, 10649, 10662, 10664, 2487], + [3, 5410, 10], + [0, 4707, 16687, 16688], + "annotate", + "pin", + "specific", + "ations", + [2, 10652, 10653], + "anatomy", + "dissection", + "dissect", + [3, 10654, 13], + "specs", + [3, 2620, 12], + [2, 10660, 591], + [0, 1192, 2675, 1177, 3188, 4039, 1175, 1193, 2990, 192, 4257, 16692, 16694, 5467], + "spacing", + [0, 1614, 16696, 6574, 16697, 16699, 6987, 8429, 16701], + "speccer", + [1, 2343, 10668], + "grid-layout", + [0, 10669, 10670, 2514, 2523], + [0, 16710, 16713, 16716, 1600, 16719, 16721, 9207, 2713, 16722, 16725, 3779, 16726], + [0, 13614, 1177, 13817, 3421, 3438, 16728, 4100, 4135, 4389], + [1, 2343, 10676], + "@web", + "/shadycss", + [2, 4963, 10673], + [2, 10672, 10674], + [0, 0, 0, 10680, 2523], + "dom5", + "lazypipe", + "poly", + [ + 0, 1965, 1616, 16733, 16734, 16735, 16736, 16737, 16739, 16740, 16741, 16742, 16743, 16744, 16745, 16746, 16747, + 16748, 16749, 16750, 16751 + ], + "polymer-cli", + "polymer-", + [2, 10682, 6147], + "gulp-v", + "ulcanize", + [2, 10684, 10685], + "wct-browser-legacy", + [2, 1262, 3178], + [3, 806, 9], + [2, 1382, 5187], + [2, 10689, 10690], + "google-", + "clos", + [1, 2343, 10709], + "ure-compiler", + [2, 10693, 10695], + [2, 10692, 10696], + "iron", + [3, 4314, 10], + "-page", + [2, 10699, 10700], + [2, 10698, 10701], + [2, 10689, 10702], + [3, 10675, 15], + "webcomponentsjs", + [2, 10704, 10705], + "gen-closure-declarations", + [2, 10689, 10707], + [0, 10710, 10711, 10712, 2537], + [0, 1509], + [0, 1414, 1177, 16758, 1938, 1951, 1954, 1955, 2899, 16759, 3400, 1894], + [0, 16166, 57], + [3, 78, 24], + [3, 5731, 9], + [1, 2343, 10716], + [0, 10758, 10762, 10764, 2537], + "-assign", + [2, 5734, 10717], + [2, 10714, 10718], + [2, 10713, 10719], + "@metalsmith/layouts", + [3, 10721, 12], + [2, 10722, 1783], + [3, 807, 9], + "disable", + [2, 2827, 10725], + [2, 1884, 10726], + [2, 10724, 10727], + [3, 10728, 23], + "qx", + [2, 10729, 10730], + [3, 10728, 16], + "plugin-qx", + [2, 10732, 10733], + "app-", + "module-path", + [2, 10735, 10736], + "better-ajv-errors", + "cldr", + "console-", + "contr", + "ol-strings", + [2, 10741, 10742], + [2, 10740, 10743], + "core-js-", + [2, 10745, 6374], + [3, 4913, 14], + [2, 10747, 7877], + [3, 7681, 17], + "codeframe", + [2, 10749, 10750], + "fontkit", + "get-value", + "github-api", + "jstransformer-dot", + "ps-tree", + "set-value", + [ + 0, 16765, 34219, 16767, 16768, 34222, 16770, 16771, 1109, 1437, 16064, 1525, 28612, 16772, 16775, 16778, 16779, + 16780, 16781, 26385, 4135, 27921 + ], + "tap-colorize", + "unset-value", + "upath", + [0, 8778, 5254, 3170, 3181], + "dirsum", + [0, 16789, 16790, 1501, 15318, 15321, 16791, 16793, 16794, 671], + "qooxdoo", + "fontend", + [1, 2343, 10773], + "back-end", + "gui", + "binding", + "databinding", + "interfaces", + [0, 10774, 10775, 10776, 2537], + [0, 2713, 4227, 16799], + [0, 2899, 4170, 3130, 1413], + [0, 1623, 57, 5374, 5376], + "@mdi/font", + [1, 2343, 10781], + "@mdi/svg", + "@xmldom/xmldom", + [0, 0, 10782, 10789, 34352], + [0, 442, 16805, 16808, 1177, 3561, 4042, 4579], + "animate.css", + [3, 1369, 10], + [2, 10784, 45], + "eva-icons", + "line-a", + "line-awesome", + [0, 3561, 6425, 1623, 6432, 16811, 3205, 4327], + "ar", + "quasar", + "fonts", + "animations", + [1, 2343, 10795], + [0, 0, 10796, 10797, 2523], + [ + 0, 23339, 13204, 6503, 4874, 5542, 16818, 1177, 16821, 1895, 1955, 16824, 2675, 16825, 2832, 2990, 2899, 3377, + 1894, 28865, 29444, 91, 16827, 16831 + ], + [0, 1623, 5746, 3392], + "gpu", + "detect-gpu", + "gltfpack", + [1, 2343, 10803], + "@react-", + [0, 10812, 10813, 10819, 2537], + "three/drei", + [2, 10802, 10804], + [3, 10805, 13], + "fiber", + [2, 10806, 10807], + "processing", + [2, 3689, 10809], + [2, 10806, 10810], + [0, 16837, 3561, 16840, 3638, 16841, 16842, 3688, 4135], + [ + 0, 48, 53, 87, 192, 5467, 16405, 1193, 1610, 1622, 1701, 1854, 1177, 1895, 1938, 2092, 2675, 1192, 2780, 695, + 2969, 2990, 3144, 3177, 3400, 3618, 3672, 1894, 2278, 4111, 4257, 4294, 4307, 4333, 4334, 4027, 2924 + ], + "test-renderer", + [2, 10806, 10814], + [3, 10615, 16], + [2, 10816, 2528], + [3, 827, 17], + [0, 2924, 1623, 1194, 1002, 1204], + "actions", + [2, 10818, 10820], + [1, 2343, 10823], + [0, 10838, 10845, 10856, 2523], + "essentials", + [2, 10818, 10824], + "interactions", + [2, 10818, 10826], + [2, 10818, 3966], + [3, 827, 11], + [2, 813, 2942], + [2, 10829, 10830], + "preset-", + [3, 1603, 13], + [2, 10833, 1896], + [2, 10832, 10834], + [2, 10829, 10835], + [2, 10829, 89], + [0, 1637, 3561, 2805, 4121, 4143, 5180], + "-webpack5", + [2, 10837, 10839], + [2, 10829, 1975], + "__jest-dom", + [2, 6626, 10842], + [2, 7750, 10843], + [ + 0, 1700, 16858, 1192, 2278, 2675, 3144, 1622, 1177, 1701, 668, 2203, 4337, 2924, 16851, 1894, 1462, 1610, 48, + 442, 1193, 1628, 91, 53, 16850, 16854, 4874, 2990, 3400, 4111, 16860, 192, 1953, 27928, 16853, 4257, 87, 1939, + 1584, 1942, 1938, 16857, 20281, 1982, 1895, 1955, 3177, 19344, 16400, 5467 + ], + "@types/three", + "-image-diff-js", + [2, 1651, 10847], + [3, 1970, 16], + "orybook", + [2, 10849, 10850], + "r3f-perf", + [3, 6068, 15], + [2, 10853, 2481], + "suspend-react", + [0, 1637, 1623, 16858, 1462, 11538, 668, 2924, 1464, 16862, 16863, 3178, 2632, 6707, 6708], + [1, 2343, 10859], + "three-stdlib", + [0, 10861, 10869, 10871, 2537], + "threejs", + [0, 16868, 9378, 15488, 16870, 15487], + "hree-fiber", + [2, 3900, 10862], + "y-player-me", + [2, 3917, 10864], + "3D", + "avatars", + "glb", + [0, 4483, 1984, 91, 4874, 2654, 11976, 16874, 16877, 7677], + "@cropper/elements", + [0, 1623, 3585, 16879], + [1, 2343, 10873], + [0, 10885, 10889, 10890, 2537], + "@phryneas/ts-version", + [2, 5531, 2090], + [2, 5531, 2924], + [3, 4852, 12], + "__core", + [2, 10877, 10878], + [3, 10879, 14], + [2, 5223, 5651], + [2, 1181, 10881], + [2, 10880, 10882], + "@types/n", + [0, 3141, 4228], + "@types/nanoid", + [2, 4807, 3765], + [2, 7686, 2473], + [0, 1414, 16885, 668, 1177, 16889, 2899, 4042], + [0, 1623, 6892, 207, 57, 16891, 16892, 1179, 594, 5341, 7020], + [1, 2343, 10892], + [0, 0, 10893, 10899, 2537], + [0, 16805, 1393, 2070, 3561, 3566, 3672, 4135, 4320, 4323, 16898], + [3, 811, 14], + [2, 10894, 594], + "common", + "commondir", + "is-reference", + [0, 1623, 16897, 10654, 16900], + "locat", + "e-character", + [2, 10900, 10901], + "relative", + [2, 4013, 10903], + [1, 2343, 10907], + "commonjs", + [0, 0, 10908, 10909, 2537], + [0, 1173, 1264, 1503, 2228, 14352, 2759, 2899, 3954, 4019], + [0, 1623, 1867, 16906, 1871, 4990], + [1, 2343, 10913], + "is-builtin-module", + "is-module", + [0, 10914, 10917, 10918, 2537], + [0, 2984, 16912], + "capitalize", + [2, 4284, 10915], + [0, 1165, 3561, 16915, 16916], + [0, 1623, 15215, 3178, 16918, 16919, 3561, 6425], + [1, 2343, 10920], + [0, 10921, 10922, 10926, 2443], + [0, 28920, 30928, 1634, 3084], + [0, 23591, 23205, 1177, 1895, 1955, 2203, 1894], + "groq-js", + [3, 817, 8], + "@sanity/ui", + [0, 6829, 6977, 7146], + "@types/cpx", + [1, 2343, 10937], + "dotenv-flow", + [2, 10924, 1473], + [2, 10924, 45], + "@sanity/c", + [2, 10932, 1124], + [3, 3878, 10], + [2, 10934, 6346], + [2, 7686, 93], + [0, 0, 10943, 10945, 2537], + "pkg-utils", + [2, 10924, 10938], + "@portabletext/react", + [3, 10940, 14], + [2, 10941, 6081], + [ + 0, 53, 87, 92, 442, 16805, 33227, 16933, 16934, 5087, 13204, 4874, 15600, 16938, 1193, 1437, 1457, 1634, 1895, + 1955, 2126, 1192, 2832, 3141, 1894, 3980, 4494, 4495, 91, 4523 + ], + "cpx", + [0, 1623, 590, 91, 2124, 4532, 553, 7900], + "sanity", + "refractor", + "kdirp", + [2, 6502, 10948], + "-workshop", + [2, 10925, 10950], + "vitest-", + [1, 2343, 10954], + [0, 10955, 10956, 10965, 2523], + [0, 16944, 977, 2657, 1581], + [0, 3421, 2899, 1177, 1544, 4342, 1364, 1575, 1578, 1954, 1938, 1958, 1903, 1948, 1970], + [3, 9794, 18], + "reset", + [2, 10957, 10958], + [2, 10924, 10959], + "imple-", + "import-sort", + [2, 10961, 10962], + [2, 1967, 10963], + [0, 16944, 11590, 2663, 2026], + "API reference", + [1, 2343, 10968], + [0, 10969, 10970, 10971, 2537], + [0, 1642, 1645, 1647, 4280], + [0, 816, 6503, 4874, 1794, 2899, 1894, 4042, 4064, 4066, 4170, 4474, 91], + [0, 202, 1641, 16956, 57, 1644, 5374, 1646, 353, 3101, 8623, 16957, 5995, 4967], + [3, 9307, 12], + [2, 10972, 188], + [2, 7719, 57], + [2, 819, 10974], + [2, 4807, 1143], + "snippetz", + [2, 819, 10977], + [2, 10987, 14037], + [1, 2343, 10983], + "@unhead/vue", + "@vue", + [0, 0, 10985, 10986, 2523], + "@vueuse/core", + [0, 816, 6503, 4874, 1680, 1794, 2899, 1894, 4042, 4064, 4066, 4170, 4474, 91], + [0, 3101, 8623, 1641, 3048, 5995, 4967], + [3, 35505, 11], + "code-", + [2, 10988, 5342], + [2, 819, 10989], + [3, 818, 12], + [2, 10991, 5576], + "@scalar/o", + "as-utils", + [2, 10993, 10994], + [2, 819, 553], + "@scalar/t", + "hemes", + [2, 10997, 10998], + "toast", + [1, 2343, 11006], + "use-toasts", + [2, 819, 11002], + "@scalar/co", + [2, 11004, 4961], + [0, 0, 11007, 11009, 2523], + [0, 816, 6503, 4874, 1642, 16971, 1680, 1794, 2899, 2966, 1894, 4042, 4064, 4066, 4170, 4280, 4474, 91], + [2, 27553, 1794], + [0, 1641, 1644, 57, 6270, 16956, 3101, 5995, 4967], + "blocks", + [2, 10829, 11010], + [1, 2343, 11014], + [2, 5249, 11020], + [0, 0, 11015, 11019, 34352], + [0, 816, 6503, 4874, 1642, 1680, 1794, 2026, 2899, 1894, 4042, 4064, 4066, 4170, 4474, 91], + [2, 1029, 188], + "test-utils", + [2, 5334, 11017], + [0, 1641, 1646, 5374, 5995, 4967], + "flect.ownkeys", + "webpack-stats", + [2, 4049, 11021], + [1, 2343, 11024], + [0, 6203, 11025, 11029, 2537], + [0, 35960, 6503, 4874, 1217, 1596, 3183, 2899, 3421, 4193, 4468, 4474, 91, 4537, 2924, 4677], + [2, 4609, 7179], + "css-in", + "well-known-symbols", + [0, 1641, 16984, 16986, 1648, 1781, 16989, 16990, 16991, 16994, 16995], + [1, 2343, 11035], + "jected-by-js", + [2, 11027, 11031], + [2, 4609, 11032], + "media-mock", + [0, 11036, 11042, 5543, 4139], + [ + 0, 3261, 2070, 1512, 1209, 4593, 2089, 6532, 814, 1362, 17003, 3730, 1525, 2753, 1483, 12126, 6481, 17010, 6479, + 17007, 2709, 17011, 17009, 17000, 1874, 6475, 17002, 6470 + ], + "-tooling", + [2, 6147, 11037], + [2, 819, 11038], + "galaxy", + [2, 819, 11040], + [ + 0, 3421, 4449, 1429, 2899, 4193, 1177, 1544, 1593, 1290, 2151, 3257, 1894, 17013, 1596, 48, 1389, 4196, 53, + 1178, 1509, 4151, 94, 6525, 6530, 87, 1954, 1922, 3957, 1938, 1208, 1958, 1895, 1903, 1955, 1970, 14039 + ], + "reference", + [1, 2343, 11045], + [0, 0, 11046, 11047, 2537], + [0, 1257, 1264, 1280, 1389, 1177, 17019, 2665, 3188, 17020, 4389, 4415, 4535, 17021, 4650], + [0, 6926, 3265, 7818, 17025, 3348], + [3, 820, 8], + [2, 11048, 1932], + [1, 2343, 11055], + "@fastify/basic-auth", + "external", + "externals", + [2, 4065, 11053], + [0, 11056, 0, 11057, 2537], + [ + 0, 4449, 12675, 1437, 1673, 1676, 2020, 29952, 4753, 1398, 2992, 1209, 17031, 1458, 2089, 3729, 1362, 16078, + 1836, 2151, 3183, 17036, 1525, 4459, 4558, 6520, 1477, 1483, 8435, 1532, 2057, 3074, 3714, 17039, 17041, 2015, + 13860, 4351, 17042, 17047, 4375, 2744, 6515 + ], + [0, 13428, 1388, 1651, 17049, 11862, 11861, 11857, 4627, 17050, 8791, 17051, 17052, 1973, 5472], + [1, 2343, 11059], + [0, 11060, 11061, 2514, 2523], + [0, 1437, 17059, 4717, 1527, 3054, 6301, 17058], + [0, 1429, 2899, 4135, 1894, 4856, 1595, 6503, 3210, 4131], + [1, 2343, 11063], + [0, 11074, 11087, 11089, 2523], + [2, 823, 364], + [2, 823, 4030], + [3, 825, 16], + "query-s", + "elector-", + "shadow-dom", + [2, 11068, 11069], + [2, 11067, 11070], + "tiny-", + "tiny-types", + [ + 0, 17081, 17090, 17067, 17080, 17082, 17093, 17101, 17108, 1654, 17068, 17071, 14674, 17083, 17086, 1655, 1660, + 17104, 17089, 17098, 17074, 17096, 17075, 17078, 17097, 17091, 1658, 17107, 17092, 17103, 17100 + ], + "@integration/testing-tools", + [2, 823, 5710], + [3, 11064, 14], + "ucumber", + [2, 11077, 11078], + [2, 823, 2765], + [2, 5554, 36], + [2, 823, 11081], + [2, 823, 2899], + [3, 7744, 12], + [2, 11084, 2632], + "mocha-multi", + [0, 2899, 1177, 4042, 4614, 17113, 17110, 8850, 17112, 10615, 816], + "serenity-js", + [0, 1653, 965, 17116, 8221, 7521, 1424], + [1, 2343, 11091], + [0, 11092, 11094, 11098, 4139], + [0, 17122], + "@wdio/reporter", + [0, 816, 17081, 17098, 1177, 2832, 2899, 4042, 4073], + "@wdio/", + "@wdio/cli", + [3, 8255, 9], + [0, 1653, 17125, 17128, 17129, 17130, 17134, 7193, 6333, 4552], + [1, 2343, 11101], + "service", + [0, 11102, 11106, 11107, 2399], + [0, 1654, 17089, 17092, 17101, 17103], + "@wdio/d", + "ot-reporter", + [2, 11103, 11104], + [0, 14674, 1177, 2899, 4042, 4073], + [0, 1653, 17125, 16662, 17116], + "local-runner", + [2, 11095, 11108], + [2, 4386, 2903], + [2, 11095, 11110], + "@wdio/types", + [2, 2299, 2382], + [2, 3758, 1732], + [1, 2343, 11118], + "wdio", + [2, 11116, 2903], + [0, 0, 11119, 11120, 2523], + [0, 1177, 2832, 2899, 4042, 4073], + [0, 1653, 17125, 965, 17146, 17147], + [1, 2343, 11125], + [3, 826, 9], + "commons", + [2, 11122, 11123], + [0, 11135, 11136, 11139, 2487], + "@mochify/cli", + "@mochify/", + "driver-", + [2, 11128, 3758], + [2, 11127, 11129], + [3, 11130, 16], + [3, 824, 9], + [2, 11131, 11132], + [2, 11122, 7625], + [0, 17093], + [0, 17096, 1177, 2899, 4042, 4073], + "referee-sinon", + [2, 11122, 11137], + [0, 1653, 17125, 11812, 17116, 1424, 8221], + [1, 2343, 11141], + [0, 11142, 0, 11144, 2523], + [0, 2108], + "ts-dedent", + [0, 6400, 17159, 7521, 8537], + "csf-plugin", + [2, 10829, 11145], + [3, 10840, 17], + "dom-s", + [1, 2343, 11152], + "dom-shim", + [2, 11147, 11150], + [0, 0, 0, 11153, 2537], + [ + 0, 1662, 4380, 4383, 21029, 21038, 21039, 11483, 11487, 21054, 21052, 21042, 17164, 21057, 21050, 17166, 89, + 1623, 181, 188, 4627, 5130, 3287, 6400, 17171, 699, 29332, 3709, 34683, 12951, 29336 + ], + "addon", + "notes", + "organize", + [1, 2343, 11158], + [0, 0, 8134, 11159, 34352], + [ + 0, 17179, 3183, 14690, 10446, 7058, 6802, 200, 3368, 1525, 17180, 1523, 12986, 17181, 17183, 17184, 13565, 1644, + 57, 6478 + ], + [1, 2343, 11166], + [2, 41, 1512], + [3, 11161, 13], + "ssinjs", + [2, 11162, 11163], + [3, 40, 18], + [0, 11198, 11203, 2514, 2537], + "slick", + [2, 11165, 11167], + [3, 452, 18], + "-svg-icons", + [2, 6920, 11170], + [2, 11169, 11171], + "@pol", + "kadot/react-identicon", + [2, 11173, 11174], + "@polkadot/", + "util-", + "util-crypto", + [2, 11176, 11178], + [2, 19177, 11195], + "wasm-crypto", + [2, 11176, 11181], + [3, 5050, 14], + "tour", + [2, 11183, 11184], + "@zxing/browser", + "@zxing/", + [2, 11187, 6082], + "boring-avatars", + "list-react", + [2, 2117, 11190], + "jsqr", + "phosphor-react", + "qrcode", + "plugin-kit", + "qrcode.react", + "rc-cascader", + [ + 0, 17191, 1091, 1149, 1437, 1513, 1594, 1605, 2026, 2720, 17194, 3148, 3220, 3722, 705, 17195, 17196, 17198, + 4746, 4747 + ], + "rc-checkbox", + "ollapse", + "rc-collapse", + "rc-dialog", + [0, 1173, 1257, 1267, 1429, 2899, 4008, 7707], + "rc-drawer", + [1, 2343, 11214], + "opdown", + "rc-dropdown", + "rc-image", + "@humanfs/node", + "rc-input", + "-number", + [2, 11210, 11211], + "rc-mentions", + [0, 0, 11217, 2514, 2399], + "u", + "rc-menu", + [ + 0, 17218, 4494, 17219, 8538, 4193, 1177, 17220, 1209, 1984, 4508, 2109, 1894, 1596, 48, 17212, 3541, 4183, 4201, + 91, 53, 4874, 17221, 9689, 6513, 17209, 7725, 4870, 17206, 17214, 10875, 87, 17210, 7677, 5517, 92, 1011, 17223, + 1009, 9692 + ], + "otion", + "rc-motion", + "rc-notification", + "rc-pagination", + [1, 2343, 11230], + "rc-picker", + "rc-progress", + "rc-rate", + "rc-r", + "esize-observer", + [2, 11226, 11227], + "rc-s", + [0, 0, 11232, 2514, 2523], + "rc-segmented", + [0, 2899, 4535, 48, 53, 87], + "rc-select", + "teps", + "rc-steps", + "rc-switch", + [1, 2343, 11239], + "rc-table", + [0, 0, 11247, 11248, 2523], + "rc-tabs", + "extarea", + "rc-textarea", + "ree", + "rc-tree", + "-select", + [2, 11244, 11245], + [ + 0, 48, 53, 13693, 87, 6065, 1175, 1193, 1203, 1610, 1177, 1881, 1938, 1939, 17232, 2766, 1192, 2297, 2898, 2915, + 3213, 3220, 3222, 3275, 3697, 1894, 4042, 4045, 4073, 4201, 91 + ], + [0, 1673, 1666, 6901, 2700, 3220], + "rc-trigger", + [1, 2343, 11254], + "rc-upload", + "in-input", + [2, 3870, 11252], + [0, 11258, 11259, 11265, 2537], + "logo", + "qrcode-logo", + [2, 1246, 11256], + [0, 1326, 3299], + [0, 17240], + "uperellipse", + [2, 3890, 11260], + "scroll-", + "into-view-if-needed", + [2, 11262, 11263], + [0, 1149, 15001, 17242, 17244], + [3, 68, 15], + [2, 11266, 6424], + [3, 362, 16], + "css-prop", + [2, 1258, 11269], + [2, 11268, 11270], + [3, 7910, 12], + [2, 11272, 10177], + "@qixian.cs/github-contributors-list", + "@stackblitz/sdk", + [3, 827, 16], + [2, 11276, 591], + [3, 11011, 12], + "uild", + "er-webpack5", + [2, 11279, 11280], + [2, 11278, 11281], + [3, 8300, 15], + [2, 11283, 2855], + [2, 10829, 11284], + [3, 10841, 12], + "heming", + [2, 11286, 11287], + "tag.js", + [2, 5246, 11289], + "-axe", + [2, 5087, 11291], + [3, 11292, 12], + [3, 2779, 12], + [2, 11294, 3758], + [2, 11293, 11295], + "image-s", + "napshot", + [2, 11297, 11298], + [2, 11293, 11299], + [2, 5086, 3766], + "uppeteer", + [2, 5088, 11302], + "@types/q", + "@types/qs", + [3, 4882, 15], + [2, 11306, 4349], + "-wor", + [1, 2343, 11324], + "-words", + [2, 5342, 11310], + [2, 4881, 11311], + [3, 4884, 15], + "sizable", + [2, 11313, 11314], + "window", + [2, 4881, 11316], + "@types/thr", + "ottle-debounce", + [2, 11318, 11319], + "arning", + [2, 7820, 11321], + "antd-", + [0, 0, 11332, 11334, 2523], + "antd-img-crop", + "token", + "-pre", + "viewer", + "-previewer", + [2, 11326, 11329], + [2, 11323, 11330], + [0, 1906], + "array-move", + [0, 1675, 17251, 3046, 6925, 17252, 7051, 6760, 17253, 6882, 6870, 9233], + "bundlesize2", + "dekko", + [3, 3597, 9], + [3, 4926, 9], + "er-webpack", + [2, 11339, 4406], + [2, 4354, 11340], + [2, 11338, 11341], + [2, 11337, 11342], + "fetch-", + "fetch-jsonp", + "axe", + "jest-axe", + [2, 2769, 11299], + "jest-p", + [2, 11349, 11302], + "jsonml", + "react-e", + [1, 2343, 11358], + "react-element", + [2, 8137, 11354], + [2, 11351, 11355], + "lz-string", + [0, 11359, 11361, 11379, 2537], + [0, 3242], + "rc-footer", + [0, 1377, 1389, 1596, 2297, 2871, 2881, 2900, 2899, 3202, 4193, 1906], + "rc-tween-one", + "rc-virtual-list", + "react-f", + "ast-marquee", + [2, 11364, 11365], + [2, 5204, 11310], + [2, 3831, 11367], + "react-in", + "finite-scroll-component", + [2, 11369, 11370], + [3, 3882, 9], + "izable", + [2, 11372, 11373], + "react-st", + "icky-box", + [2, 11375, 11376], + "react-window", + [0, 1676, 3073, 6782], + "remark-lint", + [2, 2987, 4945], + [2, 3996, 11381], + "rome", + [2, 4942, 1894], + [3, 4946, 18], + [1, 2343, 11387], + [0, 0, 8134, 11402, 2537], + "ational-order", + [2, 11385, 11388], + [3, 4326, 22], + "no-i", + "d-properties", + [2, 2420, 11392], + [2, 11391, 11393], + [2, 7851, 11394], + [2, 11390, 11395], + "sylvanas", + "vanilla-", + "jsoneditor", + [2, 11398, 11399], + "xhr-mock", + [0, 1677, 17266, 1420, 17267, 15321, 13230, 15322, 1871, 2585, 6270], + [1, 2343, 11406], + "-front-matter", + [2, 4745, 11404], + [0, 11407, 11408, 11409, 2399], + [0, 17273, 17275, 17277, 17279, 2215, 3093, 3532, 17281], + [0, 1999, 17283, 3505, 3532, 4039], + [0, 17274, 17285, 1679, 7682, 4390, 17286, 17288, 2056, 4560], + [1, 2343, 11418], + [3, 829, 10], + "-studio/client", + [2, 11411, 11412], + [3, 11413, 18], + "model", + [2, 11414, 11415], + "abab", + [0, 0, 11419, 11423, 4139], + [ + 0, 48, 87, 92, 10614, 17296, 17212, 5601, 5087, 1009, 1011, 1198, 14065, 17298, 1622, 1177, 17300, 1930, 1939, + 1942, 1945, 1948, 1953, 17303, 17306, 1964, 17308, 2675, 1192, 17310, 2931, 2990, 3124, 3125, 3390, 17312, 1894, + 17314, 3708, 3980, 17318, 4493, 91, 17319 + ], + "async-mutex", + [2, 6269, 1871], + "color2k", + [0, 1680, 10381, 17323, 5194], + "presentable-error", + "expr-eval", + "ml-matrix", + [1, 2343, 11431], + "parse-color", + "-ast-parser", + [2, 3564, 11429], + [0, 0, 11435, 11441, 2523], + "matchall", + [2, 7315, 11432], + [2, 1871, 11433], + [0, 5087, 3165, 4468], + "@ava/typescript", + "inycolor2", + [2, 7750, 11437], + "trash-cli", + [2, 4480, 4408], + [0, 3597, 17329, 4552, 17331, 17332, 17335, 17337], + "Supernova", + "Design Systems", + "io", + "Supernovaio", + "SDK", + [1, 2343, 11455], + "Tokens", + "Design Tokens", + "Assets", + "Components", + "Documentation", + "Markdown", + "CMS", + [0, 11456, 0, 11457, 4139], + [0, 17342], + [0, 3048, 7002, 3426, 2051, 3583, 1698, 1496, 1585, 7880, 1697, 6899, 6803, 3432, 6693, 3743, 3583], + [1, 2343, 11459], + [0, 8856, 7938, 7939, 2537], + [1, 2343, 11461], + [0, 0, 11462, 11463, 2523], + [0, 1781, 2899, 1177, 1209, 4039, 3363, 1362, 17352, 2025, 4535, 1693, 1951, 3200], + [0, 1687, 17354, 3797, 17358], + [1, 2343, 11465], + [0, 0, 11466, 11467, 2523], + [0, 17363, 2899, 1177, 2759, 1317, 1596, 17366, 3044, 5476, 17370, 17373, 17374, 811, 17377], + [0, 17380, 17382, 17383, 5472], + [1, 2343, 11469], + [0, 11471, 11472, 11473, 2399], + "@svitejs/changesets-changelog-github-compact", + [ + 0, 17391, 1417, 17392, 15308, 17395, 17399, 17400, 17403, 17406, 2756, 13635, 3433, 3435, 17407, 17409, 17411, + 17413, 17416 + ], + [0, 13614, 1158, 1159, 17418, 1177, 2133, 17421, 2569, 17425, 2708, 3410, 3421, 5619, 4103, 4135, 4389], + [0, 5501, 4162, 3797], + [1, 2343, 11475], + [0, 0, 11488, 11490, 2537], + "okie", + [2, 4860, 11476], + "devalue", + "esm-env", + "mrmime", + "sade", + "tiny-glob", + [2, 21032, 1932], + [3, 5244, 10], + [2, 11484, 2255], + "dts-buddy", + [3, 21031, 18], + [0, 2899, 4170], + "official", + [0, 1696, 2051, 1697, 6899, 1695, 1496, 1698, 1781], + [1, 2343, 11492], + [0, 0, 11493, 11494, 34352], + [0, 4874, 17439, 2747, 17440, 4042, 4055, 4067, 4389, 4474, 91, 4535], + [0, 1698, 1697, 2051, 1585, 1496, 6899], + [1, 2343, 11499], + "-inspector", + [2, 840, 11496], + "hmr", + [0, 11500, 11502, 11503, 2523], + [0, 2205, 2743, 17447, 17450, 3478, 11424, 4207], + "vitefu", + [0, 1166, 1317, 4400, 4481, 1906], + [ + 0, 6865, 1586, 17453, 17455, 7293, 14858, 17456, 17457, 4050, 17458, 4051, 6790, 17459, 4039, 7074, 2070, 17461, + 2090, 6857, 7204, 2150, 17462 + ], + [3, 839, 11], + [1, 2343, 11507], + "vite plugin", + [0, 11508, 11509, 11510, 2399], + [0, 1700, 3157, 11424], + [0, 1166, 2020, 17468, 1906], + [ + 0, 13326, 200, 6865, 1700, 7293, 14858, 17456, 17457, 4050, 17458, 4051, 6790, 17459, 4039, 7074, 2070, 2090, + 1586, 6857, 7204, 2150, 17462, 16697 + ], + [1, 2343, 11523], + "element", + "elements", + "ant-elements", + [2, 5257, 11514], + [2, 5875, 11515], + "@svgr/", + "@svgr/core", + "plugin-jsx", + [2, 11517, 11519], + [3, 11520, 13], + [2, 11521, 4361], + [0, 11524, 11527, 11528, 2487], + [0, 29654, 28415], + "svgr", + [2, 4670, 1194], + [0, 17474, 17477, 4481, 1906], + [ + 0, 1862, 814, 1702, 17479, 6703, 2434, 17481, 17484, 2013, 14824, 3286, 17485, 1702, 1149, 7003, 6567, 1362, + 17487, 6754, 3778 + ], + [1, 2343, 11530], + [0, 11531, 11535, 11537, 2399], + [ + 0, 1676, 2856, 4747, 2687, 1209, 4135, 2822, 814, 17495, 15648, 1420, 3181, 17497, 3249, 1595, 2107, 4025, 58, + 17501, 101, 17494, 5320, 14035 + ], + "unter", + "@swc/counter", + "@swc/types", + [ + 0, 3421, 2899, 1177, 4170, 3709, 2151, 1894, 1610, 48, 3752, 91, 53, 1178, 17504, 85, 94, 87, 1951, 1959, 1879, + 1938, 1208, 1895, 1947, 1955, 1198, 13052 + ], + "@napi-rs/cli", + [0, 4354, 17507, 3383, 6666, 1703, 7190, 4796, 4797], + "swc", + "swcpack", + "tsc", + [1, 2343, 11542], + [0, 0, 11543, 11544, 2487], + [0, 1317, 1311, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2759, 2899, 4100, 4538], + [0, 17514, 17515], + [1, 2343, 11546], + [0, 11547, 11548, 2514, 2537], + [0, 1676, 13736, 2205, 17522, 3170, 3183, 3539, 17523, 814], + [0, 17527, 2675, 17529, 3400, 4255], + [1, 2343, 11550], + [0, 0, 8134, 11551, 2399], + [0, 8958, 17537, 13735, 6589, 17539, 1501, 1871, 2585, 4225, 17540, 16630], + [1, 2343, 11553], + [0, 11556, 11557, 11558, 2523], + "@rtsao/scc", + [2, 18997, 4966], + [0, 15427], + [0, 36688, 6503, 4874, 17547, 1177, 17554, 2020, 17546, 4294, 4483, 36684, 91], + [0, 13735, 1709], + [1, 2343, 11560], + [0, 0, 11561, 11562, 2487], + [ + 0, 3421, 4481, 1429, 2297, 2899, 1177, 4042, 2203, 2924, 1610, 4535, 442, 91, 53, 2900, 1195, 2925, 13388, 94, + 87, 4523, 4681, 2904, 5517, 1208, 2921 + ], + [0, 1687, 7222, 3797, 7163, 2585, 1781, 1623, 5284], + [1, 2343, 11564], + [0, 11565, 11566, 11567, 4139], + [0, 1687, 28365], + [ + 0, 442, 19194, 17579, 5087, 4874, 17580, 17584, 1165, 1406, 1492, 1584, 1628, 1637, 1177, 1939, 1958, 2092, + 2203, 2036, 17589, 2651, 2675, 17591, 17592, 1192, 2990, 3123, 3177, 3188, 3368, 3561, 3566, 3613, 3618, 3672, + 1894, 4468, 4469, 4474, 91, 4523, 4027, 2924, 4677, 4681, 4705 + ], + [0, 3358, 1687, 3721, 7153, 3924, 17595, 17597, 6843, 5342, 3721, 1473, 1936, 1713, 17599, 17600], + [1, 2343, 11569], + [0, 11570, 11571, 11572, 2537], + [0, 17610], + [0, 5087, 4874, 1009, 1011, 1177, 1895, 17613, 1915, 1938, 1192, 1894, 4468, 4493, 4508, 91], + [ + 0, 17615, 17618, 17619, 17620, 17616, 17621, 17622, 5284, 17625, 17626, 676, 91, 17627, 6869, 4799, 17629, + 17630, 202, 9624, 17631, 17632, 17634, 17635, 17637, 17640, 17641, 17642, 17643, 2218, 17644, 17645, 17647, + 3403, 17648, 17649, 17651, 17652, 17653, 17656, 17657, 9981, 7193, 17659, 17660, 17661, 17662, 17665, 17666, + 17667, 17669, 17673, 17675, 17677, 17680, 17679, 11996, 17683, 17686, 17687, 17689, 17691, 17692, 17695, 17696, + 17697, 17700, 17702, 17705, 2382, 6956, 17706, 17710, 6957, 17711, 17712, 17713, 17714, 17715, 17716, 17717, + 17718, 17720, 17721, 17722, 6789, 17723, 17724, 17726, 17727, 17729, 17730, 17731, 17732, 17733, 614, 6910, + 17734, 11600, 17735, 17737, 17739, 6681, 17740, 1745, 17116 + ], + [1, 2343, 11574], + [0, 0, 11575, 11576, 2487], + [0, 1429, 1431, 2228, 2273, 2283, 2300, 2272, 2839, 3006, 2899], + [0, 1429, 15385, 1388, 5472], + [1, 2343, 11578], + [0, 11579, 11580, 11581, 2537], + [0, 17752, 17754, 1723, 2760, 3345], + [0, 2899, 3699], + [0, 6355, 5995, 4967, 17758], + [1, 2343, 11583], + [0, 11584, 11585, 11586, 2487], + [0, 4484, 4548, 17763, 7658, 347, 7660, 2069, 17766, 7663, 17768, 7664, 7665, 17770], + [0, 4481, 1192, 7671, 1177, 4487, 1787, 1894, 1610, 91, 4874, 17772, 7672, 7678, 7681, 7685, 1011, 1009], + [0, 1721, 5592, 8549, 5576, 202, 7692], + [1, 2343, 11588], + [0, 11599, 0, 2514, 2537], + [3, 850, 25], + "tokens", + [2, 11589, 11590], + [2, 11589, 45], + [3, 4323, 18], + "ass-guidelines", + [2, 11593, 11594], + [3, 7846, 11], + "rettier", + [2, 11596, 11597], + [0, 4535, 2098, 3460], + [2, 6910, 591], + "patterns", + [1, 2343, 11603], + [0, 11604, 11606, 11610, 4139], + [0, 16053, 17786, 17787, 17788, 2036, 3127, 17798], + "gfm-footnotes", + [0, 17805], + "web ", + [2, 11607, 4963], + "ui library", + [0, 1745, 1783], + [1, 2343, 11620], + "symbiote.js", + "symbiote", + "frontends", + [2, 3166, 11614], + " application", + [2, 5207, 11616], + " elements", + [2, 5317, 11618], + [0, 11621, 0, 11623, 2487], + [0, 2829], + "shadow dom", + [0, 1727, 1745, 1776, 17813, 1783, 1932], + "shadow root", + "ructable stylesheets", + [2, 5257, 11625], + "adopted stylesheets", + "custom ", + [2, 11628, 3583], + [2, 6883, 11629], + "pubsub", + [1, 2343, 11641], + "import maps", + "cdn imports", + " imports", + [2, 2671, 11635], + "reacti", + "ve html attributes", + [2, 11637, 11638], + "MIT", + [0, 0, 0, 11642, 34352], + [0, 17818, 17819, 7518, 5398, 5995, 3250], + [1, 2343, 11644], + [0, 11645, 9264, 11646, 2399], + [0, 17826, 17827, 7092], + [0, 17829, 17830], + [1, 2343, 11648], + [0, 11649, 11650, 11651, 4139], + [0, 1170, 4747, 1733, 17838, 29861, 17835], + [0, 1429, 2899, 2026, 1364], + [0, 1745, 2275, 1973, 2295, 1739], + [1, 2343, 11653], + [0, 11654, 11655, 11656, 2399], + [ + 0, 5923, 17835, 17846, 1091, 13426, 17849, 17851, 17853, 1170, 17838, 29861, 1759, 17850, 11663, 10342, 3536, + 3549, 17859, 4459, 824 + ], + [0, 1703, 2026, 2899, 4135], + [0, 1745, 1973, 2295, 1739], + [1, 2343, 11658], + [0, 11659, 0, 11660, 34352], + [0, 1525, 3127, 2151, 4545, 2600], + [0, 1745, 1739, 1179, 17867, 1509], + [1, 2343, 11662], + [0, 11664, 0, 11610, 2537], + "jq-web", + [0, 1794, 17872, 5639], + [1, 2343, 11666], + [0, 11667, 11668, 11669, 2399], + [0, 17877, 28367, 28371, 17881, 3747, 4391, 3348], + [0, 1362, 1429, 3152, 2899], + [0, 17878, 17884], + [1, 2343, 11671], + [0, 11672, 11673, 11674, 2537], + [ + 0, 17889, 17890, 17892, 1292, 17893, 1415, 17895, 16166, 17896, 17898, 17899, 9254, 17900, 17901, 17904, 17905, + 17906, 17907, 2720, 17909, 17910, 17911, 3171, 3310, 17914, 17915, 17916, 4039, 17917, 17919, 17920, 4135, + 17921, 17922, 17923, 4545, 17924, 4746 + ], + [0, 17929, 17930, 16966, 1509, 17931, 3220, 17934, 17936], + [ + 0, 5353, 6147, 17939, 9381, 200, 6354, 1509, 7234, 4643, 17944, 3304, 5001, 17945, 17946, 15141, 5130, 1179, + 17948, 202, 1644, 57, 8924, 3902, 8632, 12478, 5354, 17950, 4990, 6435, 5122, 17951, 10340 + ], + [1, 2343, 11676], + [0, 0, 11677, 11678, 2523], + [0, 5366, 4874, 7677, 22839, 1317, 33261, 35609, 1177, 1938, 1942, 91, 1984], + [0, 4967, 5995, 2844, 7020, 1776], + [1, 2343, 11680], + [0, 0, 11681, 11682, 2487], + [ + 0, 53, 87, 442, 5583, 811, 8850, 816, 10615, 1165, 1387, 1536, 1854, 1177, 1895, 2203, 3125, 15197, 3400, 3561, + 3584, 3605, 3613, 1894, 4039, 4042, 10854, 2278 + ], + [0, 1739, 17964, 17965, 1745, 1179, 5284, 676, 1783, 5980, 1932, 16630, 17966], + [1, 2343, 11684], + [0, 11685, 11686, 11687, 4139], + [0, 17971, 17972, 2654, 3183, 4545, 17974], + [0, 4384], + [0, 2195, 1783, 1745, 9591, 57, 17977, 17978, 17979], + [1, 2343, 11689], + [0, 11690, 11691, 11692, 4139], + [ + 0, 53, 5216, 58, 101, 104, 1437, 1457, 1687, 17986, 9322, 7610, 2070, 17988, 2600, 2714, 2822, 17989, 1209, + 12427, 17990, 17995, 17997, 3532, 3921, 3984, 3988, 3989, 18000, 10632, 814, 4300, 18002, 4555, 12449, 18004, + 18005, 4747 + ], + [0, 18007, 1652, 18009, 1177, 1895, 2151, 2675, 1192, 2845, 2990, 3203, 1894, 4257, 4449], + [0, 1745, 4525, 1776, 18011, 57, 5351], + [1, 2343, 11694], + [0, 11695, 11696, 11697, 2523], + [0, 18016, 18018, 1676, 18019, 18020, 18023, 3013, 4545], + [0, 4874, 2228, 2291, 2300, 3006, 3200, 16092, 4193, 4436], + [0, 18028, 18031, 1748, 18036, 13531, 18037, 18035, 6599], + [1, 2343, 11699], + [0, 11700, 11701, 11702, 2537], + [ + 0, 6084, 2164, 2070, 1437, 89, 1843, 1209, 3188, 1291, 1637, 2026, 3561, 3725, 705, 4167, 7799, 4438, 2151, + 2267, 1525, 3824, 1461, 3560, 4001, 53, 18042, 104, 1165, 2600, 3123, 18051, 18052, 18055, 18056, 7610, 85, 94, + 101, 3816, 18050, 87, 18045, 18047, 90, 1874, 1845, 61, 78 + ], + [0, 4039, 17996, 2149, 18059], + [0, 1745, 18061, 18063, 467], + [1, 2343, 11704], + [0, 11705, 7923, 11706, 2523], + [0, 18068, 1497, 9892, 2577, 2586, 2608, 6327, 18070, 8114, 3181, 3971, 18071, 4549, 18072], + [0, 467, 6327, 18074, 1745], + [1, 2343, 11708], + [0, 11709, 11710, 11711, 2487], + [0, 97, 1639], + [ + 0, 28581, 29292, 48, 53, 92, 29293, 29294, 29492, 1009, 1011, 1178, 1195, 1177, 1938, 1947, 1951, 1959, 2025, + 2070, 2814, 2297, 2881, 2895, 26470, 2900, 2904, 2918, 2921, 2925, 2899, 4039, 33564, 4193, 91, 2924 + ], + [0, 1751, 5128, 965, 5592, 18080, 590, 2013, 18081, 4289, 1751, 1227, 18082, 1623], + [1, 2343, 11713], + [0, 11714, 11715, 11716, 2537], + [0, 18089, 15487, 18087], + [0, 1192, 1177, 1448, 4468, 1894, 91, 5087, 4874, 2654, 1895, 1011, 1009], + [0, 1936, 6523, 8924], + [1, 2343, 11718], + [0, 0, 11719, 11720, 4139], + [0, 1429, 1177, 2228, 2240, 2273, 2281, 2283, 2298, 2822, 2297, 2878, 2881, 2895, 2900, 2904, 2899, 1894, 4135], + [0, 965, 158, 18097, 8924, 1936, 1424, 8221, 18048], + [1, 2343, 11722], + [0, 11723, 11724, 11725, 2487], + [0, 37513], + [ + 0, 53, 87, 5583, 816, 6373, 10615, 1006, 4874, 1610, 1895, 1955, 2814, 2832, 2297, 2876, 2881, 2895, 2908, 2910, + 18103, 3183, 3400, 3697, 1894, 2907, 18102, 4039, 4042, 4057, 18106, 4076, 4484, 91, 1906 + ], + [0, 965, 4741, 1936, 8221, 18110, 1965, 18112, 18113, 2574, 7131, 18114], + [1, 2343, 11727], + [0, 0, 11728, 11729, 2399], + [0, 3421, 1177, 1596, 3697, 12847], + [0, 1283, 2062, 2869, 17950], + [1, 2343, 11731], + [0, 0, 11732, 11733, 2537], + [0, 4874, 6323, 4193, 4255, 4257, 4384, 91], + [0, 1759, 1263, 6890, 6639, 6436, 1541, 6937], + [1, 2343, 11735], + [0, 11736, 11737, 11738, 2523], + [0, 1759], + [0, 4874, 4255, 4257, 4384, 91], + [0, 1759, 18132, 6436, 18135, 18137, 1263, 6890], + [1, 2343, 11740], + [0, 11741, 11742, 11743, 2537], + [0, 2212, 3532, 3477, 18143, 3093, 2096, 1679, 18145, 2188, 18142, 1560], + [0, 1906, 1166, 3297, 18147, 4039, 3505, 18148], + [0, 1764, 7682, 27, 705, 1002], + [1, 2343, 11745], + [0, 11746, 11747, 11748, 34352], + [0, 1764, 12650, 4039], + [0, 5175, 2675, 2899, 4216, 4255], + [0, 1764, 2195, 17978, 17977, 12468, 18157, 4390, 7682, 18158], + [1, 2343, 11750], + [0, 11751, 11752, 11753, 2537], + [0, 1768, 1770, 1777, 1782, 1784, 1779], + [0, 1177, 4039, 442, 91, 4874, 4523, 1011, 1009], + [0, 1767, 1745, 200, 1776, 1367, 1783, 1781], + [1, 2343, 11755], + [0, 11756, 11757, 11758, 4139], + [0, 2205, 1770, 18170, 18173, 1777, 1782, 18174, 1784, 1779], + [0, 1192, 1177, 4039, 3363, 4468, 442, 91, 5087, 4874, 5571, 4523, 1011, 1009], + [0, 1767, 1745, 200], + [1, 2343, 11760], + [0, 11761, 11762, 11763, 2537], + [0, 18183], + [0, 1192, 1177, 4039, 4468, 442, 91, 5087, 4874, 5571, 4523, 1011, 18186, 1009], + [0, 1767, 1745], + [1, 2343, 11765], + [0, 11766, 11767, 11768, 2537], + [0, 18192], + [0, 1192, 1177, 4039, 4468, 442, 91, 5087, 4874, 5571, 4523, 1011, 1009], + [0, 1767, 1745, 1283], + [1, 2343, 11770], + [0, 11771, 11772, 11773, 2537], + [0, 1241, 1776, 18201], + [0, 1192, 1177, 4039, 4468, 1587, 442, 91, 5087, 4874, 18203, 5571, 4523, 1011, 1009], + [0, 1767, 1745, 1776], + [1, 2343, 11775], + [0, 11776, 11777, 11778, 2537], + [0, 3105, 2600, 3117], + [0, 1192, 1177, 4039, 4468, 442, 91, 5087, 4874, 5571, 4523, 7639, 1011, 1009], + [0, 1767, 1745, 1367], + [1, 2343, 11780], + [0, 0, 11767, 11781, 4139], + [0, 1767, 1745, 1781], + [1, 2343, 11783], + [0, 11784, 11767, 11785, 2523], + [0, 3117], + [0, 1767, 1745, 1783], + [1, 2343, 11787], + [0, 11788, 11789, 11790, 2537], + [0, 2081, 2700, 3427], + [ + 0, 53, 14170, 13051, 18225, 1178, 18228, 1610, 1700, 1866, 1177, 18229, 1895, 1922, 1935, 1947, 1955, 1959, + 18230, 2126, 2323, 2338, 2361, 2368, 18233, 2396, 2409, 2419, 2494, 2541, 1192, 1894, 89, 3824, 3904, 18235, + 4431, 4537, 18237 + ], + [0, 18239, 6038, 89, 18241], + [1, 2343, 11792], + [0, 11793, 11794, 11805, 2523], + [0, 8712, 18248], + [0, 18254, 18255, 1429, 1651, 18259, 2297, 2881, 2900, 18260, 2923, 2899, 3198, 3347, 5362, 2278, 4193, 4196], + "tent-type", + [2, 11484, 11795], + [1, 2343, 11798], + [0, 26964, 0, 26991, 34352], + "a-parser-js", + [2, 7817, 11799], + "null-loader", + [2, 4049, 2098], + "tanem-scripts", + "ua-parser-js", + [0, 18263, 18266, 18267, 9229], + "images", + "img", + "scal", + "able-", + "vector-", + "ics", + "graphics", + [2, 11810, 11812], + [2, 11809, 11813], + [2, 11808, 11814], + [1, 2343, 11817], + [0, 11818, 11819, 2514, 2523], + [0, 4747, 4487, 18272, 2151, 18275, 4300, 2851, 18277, 18279, 18282], + [0, 1177, 4874, 4892, 4864, 1011, 18285, 18290, 1009], + "query-core", + [2, 959, 11820], + [1, 2343, 11823], + [0, 11824, 0, 11825, 2537], + [0, 28142], + [0, 1747, 1788, 2382, 18035, 5995, 200, 18295, 2663], + [1, 2343, 11828], + [2, 964, 3709], + [0, 11829, 11830, 7831, 2537], + [ + 0, 12393, 12394, 11275, 842, 12396, 9363, 12397, 12399, 12400, 12403, 1461, 12467, 12406, 1582, 1699, 12409, + 1835, 12412, 12415, 12419, 7610, 12421, 2572, 2579, 2584, 12422, 2613, 2646, 12424, 2822, 3070, 12427, 12429, + 3412, 3547, 9054, 12431, 3725, 3786, 11219, 11240, 3788, 11244, 3789, 3810, 5564, 3846, 12435, 12438, 3963, + 12441, 3978, 12443, 9340, 3988, 3992, 3999, 2278, 7799, 12444, 12445, 4549, 4555, 12447, 1002, 12448, 12449, + 12452 + ], + [ + 0, 192, 5467, 7634, 12455, 12458, 7637, 12459, 4874, 12461, 8149, 4880, 4882, 4883, 12462, 12463, 1177, 10321, + 2071, 2079, 12471, 12472, 2675, 2990, 1894, 3706, 3708, 89, 3824, 4320, 4474, 91, 1984, 12473, 12475 + ], + [1, 2343, 11834], + [3, 7637, 10], + [2, 11832, 977], + [0, 11841, 11844, 7831, 2487], + "@github/webauthn-json", + "better-", + "better-docs", + [3, 1895, 17], + "act", + [2, 11838, 11839], + [ + 0, 12393, 12394, 11275, 842, 12396, 9363, 12397, 12399, 12400, 12403, 1461, 12405, 1582, 1699, 12409, 12452, + 1835, 12412, 12415, 12419, 7610, 12421, 2572, 2579, 2584, 12422, 2613, 2646, 12424, 2822, 3070, 12427, 12429, + 3412, 3547, 9054, 12431, 3725, 3786, 11219, 11240, 11244, 3810, 5564, 3846, 3963, 12441, 3978, 12443, 9340, + 3988, 3992, 3999, 2278, 7799, 12445, 4549, 4555, 12447, 1002, 12448, 12449 + ], + "hanko", + "passkey", + [ + 0, 192, 5467, 7634, 12455, 12458, 7637, 12459, 4874, 12461, 4880, 4882, 12462, 12463, 1177, 2071, 2079, 12472, + 2675, 2990, 1894, 3706, 3708, 89, 4320, 4474, 91, 1984 + ], + [1, 2343, 11848], + "webauthn", + "passcode", + [0, 0, 11849, 2514, 2523], + [0, 4389, 4430], + [1, 2343, 11851], + [0, 11852, 11854, 7395, 4139], + [ + 0, 18313, 18315, 18316, 18317, 18322, 97, 8597, 18328, 18332, 18333, 18334, 18336, 1461, 1582, 1673, 18339, + 18340, 18344, 18347, 18349, 18351, 18354, 18355, 18357, 18358, 18360, 18362, 18364, 18365, 18368, 18370, 18371, + 18372, 18374, 18376, 18378, 18380, 18381, 18382, 18383, 18385, 18386, 18387, 18389, 18391, 18392, 18394, 11264, + 4427 + ], + "kcd-scripts", + [ + 0, 13175, 13178, 5076, 13181, 11267, 11976, 13187, 7833, 7837, 7839, 7840, 368, 7948, 11273, 13188, 8998, 13189, + 13192, 643, 692, 11274, 10875, 11275, 966, 968, 972, 974, 13194, 13196, 13198, 4864, 11290, 13200, 13203, 5087, + 11292, 11296, 11300, 11301, 13204, 4870, 7892, 4874, 13205, 13207, 13210, 8149, 6510, 11305, 4880, 4882, 4883, + 11312, 11315, 5254, 13213, 13214, 11320, 11322, 1009, 1011, 1086, 13078, 11325, 13215, 11331, 1170, 1437, 1448, + 13221, 13223, 1610, 1613, 11336, 1759, 1789, 13228, 8161, 1177, 1879, 1895, 1915, 1924, 1938, 1939, 1947, 13231, + 1948, 1959, 1961, 1982, 2071, 11345, 2151, 2193, 2070, 12424, 2665, 2686, 2696, 2742, 2758, 1192, 11347, 2771, + 2780, 2784, 11348, 11350, 2814, 2832, 11356, 5102, 2990, 1209, 13232, 11357, 3183, 3213, 3310, 3330, 3412, 3445, + 3467, 13233, 3536, 3549, 1894, 3703, 3717, 3725, 3758, 3763, 11360, 11362, 11363, 89, 3810, 13235, 3824, 4934, + 11366, 11368, 11371, 3843, 11374, 3885, 11377, 3957, 3978, 3984, 3985, 3988, 11380, 13240, 11382, 3999, 4039, + 13241, 4135, 4164, 4183, 4201, 13243, 11397, 4390, 4391, 4072, 4494, 4508, 91, 11400, 13245, 2924, 4676, 11401 + ], + [1, 2343, 11856], + [0, 0, 11858, 11859, 2399], + "integration", + [0, 192, 5467, 19193, 442, 1177, 1895, 1951, 1955, 2675, 2990, 2899, 1894, 4042, 4170, 4257], + [0, 4552, 1149, 14629, 18402, 1794, 3048, 1862, 6917, 14824, 5995, 4967], + [1, 2343, 11863], + "end-to-end", + "e2e", + [0, 11864, 11865, 11866, 2443], + [0, 4484, 18407], + [ + 0, 51, 53, 104, 18282, 18277, 18409, 603, 811, 816, 6373, 5087, 1009, 1011, 1437, 1525, 1787, 668, 1177, 2151, + 2205, 2675, 1192, 2771, 2272, 3090, 3445, 4042, 4073, 4127, 4135, 4072, 4468, 91 + ], + [0, 1795, 18411, 15480, 18412, 17116, 18413, 18415, 1424, 8221], + "ria-query", + [2, 9165, 11867], + "aria-query", + [2, 7320, 2825], + [2, 1752, 11870], + [1, 2343, 11873], + [0, 11885, 11886, 11887, 2537], + "n-case", + "jest-in-case", + "-ser", + "ializer-ansi", + [2, 11876, 11877], + [2, 8746, 11878], + [3, 2802, 11], + "select-p", + "rojects", + [2, 11881, 11882], + [2, 11880, 11883], + [0, 18420, 2096, 18423, 2390, 18425, 18426, 18427, 1209, 3181, 18428, 3544, 4431, 4597, 4600, 4747], + [ + 0, 4856, 4864, 18432, 4870, 6503, 4874, 9725, 6513, 6512, 18435, 18438, 18440, 4892, 1429, 2012, 2151, 2188, + 2899, 3421, 3752, 4039, 4193, 4196, 4474, 4487, 91 + ], + [0, 18420, 2041, 2649, 18442, 18443, 6589, 18444], + [1, 2343, 11889], + [0, 11892, 11900, 11901, 2537], + "css.escape", + "redent", + [0, 2763], + [2, 552, 2203], + [3, 2782, 23], + "sixteen", + [2, 11894, 11895], + [3, 4057, 15], + "elete", + [2, 11897, 11898], + [0, 91, 68, 1389, 1177, 14707, 1776, 3084, 2899, 4535], + [0, 1283, 17950, 16284, 1797], + [1, 2343, 11903], + [0, 11904, 11905, 11908, 2537], + [0, 1437, 1209, 18456], + [ + 0, 3297, 1082, 1149, 2228, 2899, 4193, 4237, 1177, 2814, 3220, 4135, 1168, 1330, 2924, 18458, 18459, 1362, 3460, + 1894, 4431, 2025, 2071, 7915, 2240, 18463, 1389, 53, 11801, 1178, 1195, 18464, 17568, 87, 1954, 2258, 2247, + 1938, 2253, 2281, 1958, 1895, 1903, 1955, 1970, 18461 + ], + "atcher-utils", + [2, 8763, 11906], + [0, 1798, 14059, 8173], + "@callstack/eslint-config", + "@rel", + "mify/jest-serializer-strip-ansi", + [2, 11910, 11911], + [1, 2343, 11914], + [0, 7936, 7938, 7939, 2523], + [1, 2343, 11916], + [0, 11917, 0, 11919, 2487], + [0, 4874, 2057, 18473], + "dotenv-cli", + [0, 1804], + [1, 2343, 11921], + [0, 11922, 11923, 11927, 2537], + [0, 1437, 4747, 1458, 2151, 18479, 18480, 18482, 18484, 18488, 18174], + [0, 4892, 4864], + "@esbuild-plugins/node-modules-polyfill", + "@ph.fritsche/scripts-config", + [3, 11925, 13], + [ + 0, 1804, 9381, 6147, 7242, 1161, 1808, 4405, 18493, 1896, 18494, 4750, 18495, 8433, 18496, 18497, 18498, 18499, + 18500, 18501, 18502, 18503, 13322 + ], + "toolbox", + [2, 11926, 11928], + [3, 11300, 13], + [2, 11930, 11874], + [3, 7690, 15], + [2, 11932, 2203], + "-lib-coverage", + [2, 2759, 11934], + [3, 11935, 13], + "report", + [2, 11936, 11937], + [2, 4227, 591], + [2, 11936, 11939], + "istanbul-", + "reports", + [2, 11941, 11942], + [3, 6551, 9], + "jest-s", + "r-ansi", + [2, 7909, 11946], + [2, 11945, 11947], + [1, 2343, 11950], + [0, 11953, 11954, 11955, 2537], + "-scripts", + [2, 6579, 11951], + [ + 0, 18509, 18473, 18511, 18513, 18514, 18518, 1676, 2057, 18145, 2151, 18521, 18524, 18525, 18527, 2072, 18528, + 814, 4135, 4748 + ], + [0, 1009, 1011, 1166, 1400, 1503, 1177, 1903, 1920, 1938, 1954, 1958, 3421, 3539, 4193, 4481, 4508, 91], + [0, 1804, 1808, 6996, 1896], + "@ember/app-blueprint", + [1, 2343, 11962], + "aram", + "regexparam", + "tseslint", + "tinyhttp", + [0, 11963, 11964, 11919, 2399], + [0, 2057, 18537], + [0, 4389, 4255, 18540, 3505], + [1, 2343, 11966], + [0, 11967, 11580, 11581, 2487], + [0, 1437, 2152, 2760, 18545], + [1, 2343, 11969], + [0, 11970, 11971, 2514, 4139], + [0, 18552], + [0, 2228, 18555, 2236, 2273, 2281, 2298, 2766, 2814, 2297, 2881, 2895, 2898, 2912, 3006, 1209], + [1, 2343, 11973], + [0, 11975, 11979, 11980, 2523], + [2, 976, 4590], + [0, 1156, 1191, 1699, 3373, 4023, 4427], + "@biomejs/biome", + [3, 4343, 10], + [2, 11977, 1612], + [ + 0, 18566, 18569, 1173, 1175, 1195, 1198, 1208, 1212, 1220, 18571, 1264, 1277, 18574, 1429, 1457, 1584, 1596, + 18575, 1610, 1628, 1863, 1177, 18580, 1916, 1937, 17585, 2092, 18581, 2323, 2332, 18582, 2504, 2600, 2651, 2843, + 13110, 2297, 2881, 2886, 2900, 18260, 2921, 2923, 2925, 18584, 3105, 3107, 18587, 3112, 3177, 2899, 3342, 3463, + 3561, 3732, 4039, 4111, 18590, 4193, 4196, 4307, 18592, 4537, 18595, 4027, 188, 4634, 4639, 4645, 18599, 2924, + 4677, 4681, 4693 + ], + [0, 13449, 188, 4963], + [1, 2343, 11982], + [0, 11983, 11984, 11985, 2537], + [0, 1363, 18609, 18610, 18611, 2713, 18613, 18616], + [0, 1377, 1596, 1177, 2228, 2236, 2240, 2256, 2258, 2281, 17567, 2311, 2759, 2899], + [0, 18619, 18620, 18621, 18622], + [1, 2343, 11987], + [0, 11989, 11990, 11991, 2537], + "headers", + [0, 18627, 18629, 18632, 2646, 18633, 1209, 3361], + [0, 192, 5467, 1166, 1448, 1610, 1797, 1177, 1909, 2114, 2675, 2990, 18637, 3421, 18634, 3754, 3985, 3995, 1906], + [0, 1559, 1823, 16284, 2934, 18639, 18640, 18643, 18645, 18646, 18647, 3361, 18648, 3754, 18649, 1283, 5354, 4714], + [1, 2343, 11994], + "ipaddr.js", + [0, 0, 11997, 2514, 2523], + "net", + "network", + [0, 442, 18657, 4874, 18659, 7677, 1177, 1895, 1955, 18660, 1894, 18661, 4474, 91, 4523, 1984], + [1, 2343, 11999], + [0, 12000, 12004, 12005, 2399], + [ + 0, 30697, 27276, 11956, 18740, 18684, 14959, 18693, 18733, 18735, 18687, 1378, 18737, 1381, 18717, 18720, 18695, + 18686, 18747, 18683, 1437, 1458, 18689, 1536, 1543, 18671, 18678, 18679, 18668, 1687, 18753, 12923, 18758, + 12925, 18704, 2020, 2021, 2026, 2098, 2105, 18745, 2151, 14939, 12929, 12471, 2070, 14940, 18728, 18701, 18708, + 2659, 2712, 2720, 18673, 18702, 1209, 3105, 18726, 3181, 3237, 3368, 3386, 18428, 18669, 3560, 18714, 18722, + 18675, 814, 14562, 18730, 18667, 4135, 12937, 18710, 18698, 1241, 4423, 4438, 18670, 4648, 18692, 7801, 18666, + 31963, 31947 + ], + [3, 975, 11], + "ccepts", + [2, 12001, 12002], + [ + 0, 14938, 1385, 1429, 1431, 18761, 15264, 1540, 18774, 18771, 1177, 1895, 18766, 1951, 1953, 2116, 18706, 2832, + 2960, 2899, 3297, 3421, 1894, 6021, 4294, 4342, 4421, 4449, 36864, 4699, 4707, 18764, 18760 + ], + [0, 1896, 18776, 12589, 200, 18777, 18778, 18779, 837], + [1, 2343, 12007], + [0, 12008, 12013, 12014, 2537], + [ + 0, 5222, 71, 5757, 5759, 5809, 5830, 5832, 83, 5889, 87, 97, 18784, 18787, 18790, 18795, 1212, 18801, 18687, + 1378, 18695, 18747, 1496, 18803, 18807, 18704, 14562, 4135 + ], + "ntent-", + [2, 12009, 10366], + [2, 981, 12010], + [3, 985, 11], + [ + 0, 53, 18809, 18811, 18812, 18813, 18815, 1178, 1385, 1429, 1499, 18867, 1532, 18671, 1593, 18679, 18823, 1825, + 18825, 1830, 18829, 18832, 18833, 18834, 18835, 18839, 1177, 18840, 1954, 18706, 18841, 2899, 2907, 3957, 6021, + 814, 4039, 2924 + ], + [0, 1172, 18777, 18844, 1825, 5197, 5198], + "ncode-url", + [2, 12012, 12015], + [1, 2343, 12018], + [0, 12019, 12020, 12021, 2487], + [0, 18852, 18855, 18687, 18865, 14938, 14939, 18708, 18868, 12937, 4648], + [ + 0, 53, 68, 71, 5757, 83, 5889, 97, 18809, 18812, 18872, 18787, 1381, 1385, 1429, 18867, 1540, 18823, 1825, 1827, + 18873, 18825, 18829, 18832, 18833, 18834, 18835, 18839, 18889, 18892, 18894, 1177, 1895, 18840, 1951, 1953, + 1955, 18895, 2116, 18841, 2899, 1894, 2907, 3773, 3980, 14944, 4320, 4323, 11598, 2924 + ], + [0, 18844, 1825], + [1, 2343, 12023], + [0, 12024, 12025, 12028, 4139], + [0, 18901, 18906], + [0, 816, 10817, 4874, 2968, 4039, 4042, 4494, 91], + [3, 12011, 18], + [2, 12026, 998], + [0, 1831, 1936, 1623, 4412, 18909], + [1, 2343, 12030], + [0, 0, 0, 5708, 4139], + [1, 2343, 12032], + [0, 0, 12033, 12034, 4139], + [0, 2899, 1177, 2759, 1954, 1938, 1958, 1903, 1970], + [0, 10368, 1833, 1002], + [1, 2343, 12036], + [0, 12037, 9264, 12038, 2537], + [0, 3441], + [0, 3101, 7046, 7241, 18924, 12706, 4966, 6703], + [1, 2343, 12040], + [0, 12041, 12043, 2514, 2537], + [0, 2215, 4388], + "tsparticles", + [0, 8780, 5087, 4874, 1622, 1177, 20281, 2675, 1192, 2990, 3144, 1894, 91], + "particles.js", + "particles", + "particlesjs", + "particle", + "jsparticles", + "xparticles", + "particles-js", + [1, 2343, 12052], + [0, 12057, 12064, 12065, 2537], + "particles-bg", + "-vue", + [2, 12053, 12054], + "particles-ts", + [0, 1104, 4294], + "particles.ts", + [3, 2638, 9], + "ticles-js", + [2, 12059, 12060], + [3, 12061, 15], + [2, 12062, 1722], + [0, 4874, 2398, 2720, 2899, 3421, 3742, 91], + [ + 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 8622, 1836, 1179, 8623, 8624, 6847, 8625, 2720, 8626, 8628, 5284, + 202, 6710, 3741, 3742, 8630, 8631, 3925, 8632, 4989, 8633, 2184, 8634, 7009, 6621, 181, 8635, 4758, 8636 + ], + "vue-particles", + "ngx-particles", + [2, 1101, 12045], + [1, 2343, 12077], + "ground", + [2, 12047, 12070], + "vuejs", + "preactjs", + "angularjs", + "html5", + "web-design", + [0, 12078, 12085, 12095, 4139], + [0, 7272, 12240, 3757, 19647], + "webdesign", + "css3", + "vtt", + "animated", + "background", + "conf", + [0, 13614, 1159, 9254, 1177, 2011, 2708, 3410, 3421, 4103, 4389], + "confetti", + "works", + "fireworks", + "fireworks-js", + "confetti-js", + "confettijs", + "fireworksjs", + "canvas-", + [2, 12093, 12086], + [0, 18089, 18943, 18944, 1936, 10368, 15103], + "apk", + "flickity", + [1, 2343, 34419], + "@d-fischer/shared-utils", + [3, 1005, 9], + "all", + "api-call", + [2, 12100, 12102], + [2, 12100, 10896], + "jose", + [0, 1429, 2675, 2899, 1899], + [0, 6971, 18951, 18952, 998, 6956], + "twitch", + [1, 2343, 12110], + [0, 12111, 12112, 12113, 2523], + [0, 2003, 4430], + [0, 4387, 4389], + [0, 6639, 6436, 1389, 14927, 353, 4225, 8309], + [1, 2343, 12115], + [0, 0, 12116, 12125, 2537], + [ + 0, 53, 13051, 85, 87, 192, 5467, 17584, 1175, 1178, 1193, 1195, 1177, 1881, 1895, 1938, 1955, 18964, 2070, 2675, + 1192, 3183, 6331, 4750, 1894, 10623, 2924, 4677, 4707, 18966 + ], + [1, 2343, 12568], + [2, 3273, 6543], + [3, 439, 18], + "regexpp", + [2, 12119, 12120], + [3, 5552, 23], + [2, 12122, 3007], + [2, 1010, 1995], + [0, 5001, 1263, 6639, 18523, 18968, 18969, 18971], + "title-case", + [2, 3138, 9102], + "pecific-snapshot", + [2, 11945, 12128], + [3, 8722, 10], + "-mdxjs", + [2, 12130, 12131], + [2, 3167, 12132], + [3, 5551, 24], + "to-typescript-types", + [2, 4120, 12135], + [2, 12134, 12136], + [1, 2343, 12139], + [0, 12140, 12141, 12143, 2537], + [ + 0, 18976, 1448, 1850, 18980, 6914, 18982, 18984, 18986, 18989, 17403, 18990, 18992, 18993, 3044, 3431, 13635, + 3435, 3438, 18994, 3775, 18995, 18997 + ], + [0, 1173, 13998, 1261, 1177, 1879, 1938, 1947, 1959, 2708, 2832, 4039, 4103], + "pastoralist", + [0, 5284, 19001, 19003, 1973, 6071, 89, 2130, 5472, 19005, 19007, 6969, 2899], + "cript-estree", + [2, 5552, 12144], + [1, 2343, 12147], + [0, 12148, 12149, 12143, 2443], + [0, 2571, 4135, 3847, 3744, 3435, 18994, 3904, 1847, 1850], + [0, 1843, 1177, 4039, 3410, 48, 2708, 53, 1261, 1959, 4103, 68, 1879, 1938, 1947, 1961, 1198, 13998], + [1, 2343, 12151], + [0, 12152, 12154, 12143, 2537], + [0, 2571, 4135, 3744, 3435, 19018, 19020, 18980], + [2, 12155, 27730], + [0, 1177, 4039, 3410, 48, 2708, 53, 1261, 1959, 4103, 68, 1879, 1938, 1947, 1961, 1198, 13998], + [3, 20826, 14], + [1, 2343, 12157], + [0, 12164, 12167, 12143, 2487], + [3, 1013, 11], + [2, 12158, 9026], + [2, 10306, 5256], + [3, 1603, 14], + "ontext", + [2, 12161, 12162], + [0, 2571, 13635], + "-theming", + [2, 1832, 12165], + [0, 1177, 4039, 3410, 48, 2708, 53, 1261, 4103, 68, 1938, 1881, 1198, 13998], + "-formatter", + [2, 1413, 12168], + [2, 2093, 12169], + "mini-", + "mini-store", + "rc-animate", + [1, 2343, 12177], + "rc-form", + "z-use-drag", + [0, 12183, 12210, 2514, 34352], + "@types/ra", + "@types/raf", + [3, 1013, 13], + "codo-gen", + [2, 12180, 12181], + [0, 1080, 1869], + "ast-types", + "motion", + [2, 4893, 12185], + [3, 1225, 14], + "proptypes", + [2, 8137, 12188], + [2, 2528, 12189], + [2, 12187, 12190], + [2, 4670, 8861], + [2, 1199, 12192], + "hot-loader", + [2, 1625, 12194], + "jest-emotion", + "screenshot", + [2, 8820, 12197], + [3, 4323, 19], + "yled-components", + [2, 12199, 12200], + [3, 11598, 12], + "or-styled-components", + [2, 2484, 12203], + [2, 12202, 12204], + "tsc-alias", + "@electric-sql/pglite", + "ucloud", + "lsofi", + [0, 1087, 1177, 1903, 1938, 1948, 1954, 1958, 2899, 3421, 4342], + [1, 2343, 12212], + [0, 12218, 12221, 12223, 2537], + [3, 1014, 9], + "slate", + [2, 12213, 12214], + "slate-hyperscript", + "slate-react", + [0, 1082, 2071], + [2, 12213, 594], + "is-hotkey", + [0, 16805, 1393, 19038, 5867, 30889, 12142, 1894, 3980], + "jotai-optics", + [0, 19042, 19044, 3595, 19045, 19046, 19047, 5286, 19049, 19052, 19053, 676, 19054, 19055, 19057, 19059, 19060], + "jotai-x", + [1, 2343, 12230], + "optics-ts", + [3, 3836, 9], + "keys-hook", + [2, 12227, 12228], + [0, 12234, 12235, 12237, 2537], + "deep-compare", + [2, 8183, 12231], + "zustand-x", + [0, 19066, 2569, 19071, 19073, 19078, 15059, 3435], + [ + 0, 5517, 13614, 23237, 10976, 10979, 11008, 27564, 27568, 27571, 27573, 27575, 27576, 27580, 11013, 19325, 1143, + 1159, 9254, 1177, 14741, 15308, 2756, 3410, 3421, 19082, 4103, 19084, 4389, 11028 + ], + "plate", + [0, 5284, 5286, 3595, 676, 6693, 6692, 5187, 1182, 6830], + [1, 2343, 12239], + [0, 12241, 12243, 12249, 2443], + "es-errors", + [0, 15786, 19092, 19093, 19094], + "react-b", + [0, 1177, 15793, 15797, 15801, 2675, 2990, 3421, 19097, 15804, 15805], + "react-button", + "uiw-react", + "react.js", + "uikit", + "react-ui", + [0, 5286, 19099, 19100, 1925, 5194, 19101, 2680, 19102, 2474, 5258, 5284, 6422, 1858, 614, 594, 6731], + [1, 2343, 12251], + [0, 0, 12252, 12254, 2537], + [0, 13614, 1158, 1177, 2708, 2768, 3421, 4103, 4535], + [2, 1024, 45], + [0, 1858, 1925, 19108, 5284, 5286, 6422], + [3, 3839, 10], + [1, 2343, 12257], + [0, 0, 12258, 12259, 2523], + [0, 1173, 1175, 1198, 8966, 1264, 1429, 1610, 2899, 4039], + [0, 5194, 1851, 1172], + "react-input", + [1, 2343, 12262], + [0, 0, 12263, 12264, 34352], + [ + 0, 19118, 2899, 1825, 18686, 18693, 19119, 19121, 19122, 19123, 1381, 18801, 18825, 19125, 19127, 14217, 14196, + 19130, 14214, 1235, 14199, 14192, 1244, 14198, 14215 + ], + [0, 19132, 6422, 1862, 6567], + [3, 1023, 18], + [1, 2343, 12269], + "verlay-trigger", + [2, 8666, 12267], + [0, 0, 12270, 12271, 2537], + [0, 48, 53, 87, 10688, 1863, 1177, 1895, 1903, 1938, 1954, 1958, 2675, 3421, 1894, 4193, 4389], + [0, 1862, 6567, 5194, 19138, 1865], + [1, 2343, 12275], + "react-u", + "react-utils", + [0, 0, 12276, 12277, 4139], + [0, 13614, 1158, 1429, 1859, 1177, 2011, 2228, 2256, 2283, 2311, 2708, 2899, 3421, 3736, 19146, 4103, 4389, 4535], + [0, 5286, 5258, 5194, 1858, 1862, 6567, 7168, 3053, 3065, 6636], + [2, 12279, 8295], + "flowbite-", + [1, 2343, 12281], + [0, 0, 12282, 12288, 2523], + [0, 1317, 1311], + "to-ts", + [2, 7526, 12283], + [2, 7719, 553], + "prom-client", + "unleash-client", + [0, 1867, 1936, 6435], + "ype-is", + [2, 7750, 12289], + [1, 2343, 12293], + "ts-node-dev", + [0, 0, 8134, 12297, 2399], + "Unleash", + "ios", + "android", + [0, 1867, 1108, 6961, 6920, 7256, 1871, 19161, 7169], + [1, 2343, 12299], + [0, 12300, 12303, 2514, 2537], + [0, 2004, 14301, 2003, 4227], + "keyux", + [3, 1027, 12], + [0, 1082, 1362, 19168, 1429, 6522, 19172, 2323, 2384, 2463, 3183, 3466, 4135], + "image-shrink", + [2, 12302, 12304], + [2, 9229, 4219], + [2, 12302, 12306], + [1, 2343, 12311], + "shipjs", + "@esm-bundle/chai", + [0, 12316, 12317, 12321, 2523], + "@total-typescript/ts-reset", + "@hap", + "py-dom/global-registrator", + [2, 12313, 12314], + [ + 0, 439, 12121, 19180, 27907, 19193, 11180, 11209, 19182, 19184, 1006, 1091, 1615, 1676, 1874, 1994, 1996, 2000, + 19186, 14301, 2069, 16783, 2105, 2200, 2687, 19187, 2743, 19189, 3181, 12118, 3466 + ], + [ + 0, 5517, 53, 87, 8129, 19194, 19181, 19195, 19581, 4874, 1011, 1195, 1414, 1429, 1448, 1532, 1593, 1651, 1797, + 1933, 15510, 17308, 19206, 32793, 19210, 2003, 19213, 2070, 2203, 2212, 2226, 2807, 2931, 2990, 3105, 3112, + 3127, 19216, 19219, 19221, 19222, 19223, 19224, 2899, 19227, 19230, 1894, 3730, 3752, 3930, 3957, 4135, 4167, + 4193, 91, 2924, 4677, 19235 + ], + "uploadcare", + "lighter", + "file ", + [0, 6892, 671, 5284, 5286, 2000], + "file uploader", + "ive image", + [2, 5156, 12323], + " optimization", + [2, 158, 12325], + "image ", + [2, 12327, 6110], + "image size", + " image editor", + [2, 6599, 12330], + " client", + " api client", + [2, 9229, 12333], + "ing blocks", + [2, 6147, 12335], + "lr-blocks", + "uc-blocks", + [2, 11857, 591], + "smart", + [1, 2343, 12356], + "smart cdn", + "cloud ", + [3, 31, 8], + "file platform", + [2, 12343, 12345], + "ation api", + [2, 353, 12347], + "webp", + "avif", + "css c", + " properties", + [2, 12162, 12352], + [2, 12351, 12353], + [2, 11617, 591], + [0, 12357, 12358, 12359, 2523], + [0, 3435, 3438, 1881], + [0, 4389, 1796, 1177, 2708, 97, 19243, 19247, 1261, 1959, 4103, 1938, 1947, 1961], + [0, 1177, 6651, 1541, 1259, 5284, 6718, 6778, 7056, 7192, 7044], + [2, 8137, 668], + [2, 1393, 12360], + [1, 2343, 12363], + [0, 12364, 12365, 12359, 2537], + [0, 4135, 3435, 3438, 19254], + [0, 4389, 1796, 1177, 2708, 97, 19243, 19247, 1261, 4103, 1938], + [1, 2343, 12367], + [0, 12373, 12374, 12375, 2399], + [3, 5881, 34], + "self", + [2, 12368, 12369], + [3, 12370, 35], + [2, 12371, 5585], + [0, 1881], + [0, 1009, 1011, 1742, 1177, 1895, 1938, 2675, 2990, 3400, 1894, 19263, 91], + [0, 1259, 1541, 6778, 7056, 7192, 7044, 1177, 6651, 5284, 6718, 91], + [1, 2343, 12377], + [0, 0, 5795, 12378, 4139], + [ + 0, 1885, 1501, 19269, 590, 671, 9654, 2292, 2272, 19270, 1177, 2649, 19271, 15717, 4354, 16790, 19273, 18443, + 2446 + ], + [1, 2343, 12380], + [0, 12381, 5795, 12382, 2537], + [0, 442, 2203], + [0, 1177, 7625, 19281], + [1, 2343, 12386], + [2, 8530, 4798], + "merge-deep", + [0, 12387, 12388, 12389, 2537], + [0, 19438, 19181, 442, 19344, 1009, 1011, 1891, 1907, 19286, 1915, 1938, 1942, 1951, 1953, 17306, 1982, 4523], + [0, 9736, 1177, 91], + [0, 1890, 1177, 7625, 19281], + [1, 2343, 12391], + [0, 12401, 12404, 6936, 2443], + [3, 5075, 18], + [2, 12392, 8221], + "@makotot/ghostui", + [3, 6497, 10], + "@types/hast", + "@umijs/bundler-utils", + "@umijs/", + "@umijs/core", + [2, 12398, 594], + [0, 1953, 1951, 1938, 19286, 1011, 17306, 1009, 1915], + "-scroll-to", + [2, 12082, 12402], + [0, 1177, 91, 9736], + "codesandbox", + "comlink", + "dumi-", + [1, 2343, 12417], + "dumi-afx-deps", + "estree-", + "util-to-js", + [2, 12410, 12411], + [3, 12412, 12], + "visit", + [2, 12413, 12414], + "file-s", + [0, 0, 0, 12423, 2487], + "ystem-cache", + [2, 12416, 12418], + "is-element", + [2, 2573, 12420], + "heti", + [0, 1177, 6651, 7625, 28987, 1894], + "html2sketch", + [3, 3137, 12], + "ind-and-replace", + [2, 12425, 12426], + [3, 3140, 14], + [2, 12428, 1871], + [1, 2343, 12453], + "prism-themes", + "react-l", + "-skeleton", + [2, 10087, 12433], + [2, 12432, 12434], + "code-editor", + [2, 10961, 12436], + [2, 3890, 12437], + "rehype-r", + "emove-comments", + [2, 12439, 12440], + "directive", + [2, 3986, 12442], + "sucrase", + "umi", + "-parents", + [2, 4555, 12446], + "v8-compile-cache", + "vfile", + "dumi-a", + "ssets-types", + [2, 12450, 12451], + [0, 12464, 0, 2514, 2523], + [2, 11367, 1732], + [2, 6495, 12454], + [3, 5540, 9], + "sted-git-info", + [2, 12456, 12457], + [2, 6308, 6925], + "luralize", + [2, 5088, 12460], + "@umijs/lint", + [2, 12398, 9711], + [0, 53, 1939, 1959, 68, 1938, 1270, 1935, 1947, 19302, 1011, 19254, 1961, 1976, 1009], + [1, 2343, 12469], + "-import-utils", + [2, 12405, 12466], + "repo", + [0, 0, 12470, 12476, 2523], + [0, 1177, 1903, 1938, 1953, 1958, 4389], + "git-repo-info", + [2, 11311, 1732], + "zx", + [2, 699, 701], + [2, 12407, 12474], + [ + 0, 19309, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 6651, 2446, 2292, 2272, 671, 19315, 19269, + 2869, 1899, 4255, 19317, 590, 19318, 19320, 19273 + ], + " site generator", + [2, 2947, 12477], + "jamstack", + [1, 2343, 12481], + [0, 0, 12482, 12483, 2537], + [0, 5601, 19325, 1177, 1938, 1953, 1958, 4389], + [ + 0, 19309, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 6651, 2446, 2292, 2272, 671, 19315, 19269, + 2869, 4255, 19317, 590, 19318, 19320, 19273 + ], + [1, 2343, 12485], + [0, 12486, 12487, 2514, 34352], + [0, 442, 27928, 1982, 2203, 4523], + [0, 19333, 5601, 4874, 19336, 1446, 1177, 19339, 33860, 1894, 91], + [1, 2343, 12489], + [0, 12490, 12491, 12492, 2537], + [0, 29371, 19194, 19344, 19254, 2203], + [0, 1166, 1177], + [ + 0, 6651, 1906, 19347, 19348, 19349, 19350, 19353, 1501, 19269, 590, 671, 9654, 2292, 2272, 19270, 1177, 2649, + 19271, 4255, 15717, 4354, 16790, 19273, 18443, 2446, 2869 + ], + [1, 2343, 12494], + [0, 0, 12495, 12496, 2399], + [0, 192, 5467, 1610, 2675, 2990, 3985, 3995, 1906], + [0, 19359, 1541, 1177, 18639, 18640, 3624, 1906], + [1, 2343, 12498], + [0, 12499, 12500, 12501, 2537], + [0, 1012, 1091, 1443, 1525, 1595, 1699, 8098, 18420, 2777, 2845, 12834, 3117, 4507], + [ + 0, 442, 4874, 6513, 29891, 16480, 22839, 1177, 1895, 1938, 1953, 1955, 1982, 3125, 3390, 3400, 3471, 1894, 4193, + 18710, 91, 4523, 1984 + ], + [0, 2295, 1739, 1745, 1177, 1179, 1932], + [1, 2343, 12503], + [0, 12504, 0, 12505, 4139], + [0, 1676, 27418, 2191, 19380, 29856, 27921, 12578], + [0, 91, 1177, 1204, 14056, 1932], + [1, 2343, 12507], + [0, 12508, 12509, 12510, 2523], + [0, 2102, 2151, 3008, 3429, 4121], + [ + 0, 48, 53, 87, 192, 5467, 19401, 16405, 1178, 1193, 1457, 19403, 1610, 1700, 1701, 1177, 1895, 19405, 1938, + 2675, 1192, 2794, 2990, 3400, 1894, 4257, 2924 + ], + [0, 1177, 671, 9654, 1194, 2924], + [1, 2343, 12512], + [0, 12513, 12514, 12515, 2537], + [0, 439, 19194, 19413, 2000, 19415, 19419, 4025], + [0, 1011, 1166, 1414, 1437, 1177, 19422, 1912, 1933, 2020, 3400, 3471, 3532, 91, 1906], + [0, 1177, 6741, 6939, 1166, 1973, 8791, 1145, 6637, 6468, 2899], + [1, 2343, 12517], + [0, 12518, 12519, 12520, 34352], + [0, 19209], + [0, 2899, 1177, 1178, 3028], + [0, 1172, 1177, 6741, 6939, 1178], + [1, 2343, 12522], + [0, 12523, 12524, 12526, 2523], + [0, 16805, 19436, 1393, 1423, 2105, 2203, 3057, 4135], + [ + 0, 53, 68, 192, 5467, 19438, 442, 6061, 6063, 19441, 5366, 19443, 5601, 5087, 19446, 5254, 1317, 19449, 1804, + 1177, 1895, 1933, 1955, 2024, 2675, 1192, 1894, 4131, 4183, 4468, 4474, 91, 4523 + ], + "object-deep-merge", + [0, 1177, 1388, 4231, 5592, 671, 1421, 19451], + [1, 2343, 12528], + [0, 0, 12529, 12530, 2523], + [0, 1177, 2899], + [0, 1177, 6741, 1925, 6778], + [1, 2343, 12532], + [0, 12535, 12536, 12537, 2537], + [2, 19573, 24759], + "diff-sequences", + [0, 1874, 2687], + [0, 12602, 4874, 19464, 1178, 1503, 1615, 1177, 19466, 2151, 2899, 3421, 3456, 4039, 4135, 13134, 19468, 19469], + [0, 1177, 6741, 6939, 1932, 8505, 4298, 12442, 2202, 2203, 19472, 19473, 19475, 19478, 19479, 19482], + [1, 2343, 12539], + [0, 12540, 12541, 12542, 2443], + [0, 439, 2004], + [ + 0, 192, 5467, 6303, 19492, 19181, 442, 27928, 19611, 19580, 31200, 1006, 4870, 4874, 1011, 1012, 16480, 1177, + 19494, 1895, 1912, 1953, 1982, 1992, 1994, 2000, 2675, 2807, 2990, 1209, 3125, 3390, 3401, 1894, 1531, 91, 4523, + 1984 + ], + [0, 1177, 6741, 6939], + [1, 2343, 12544], + [0, 12545, 12546, 12547, 2537], + [0, 1209, 19500], + [ + 0, 1091, 2070, 2675, 2899, 1177, 4039, 19505, 15555, 48, 53, 13693, 94, 4131, 87, 68, 19504, 5235, 1933, 1198, + 5874, 78 + ], + [0, 1177, 1932, 1934], + [1, 2343, 12549], + [0, 12550, 12551, 12552, 4139], + [0, 2654], + [0, 19512, 19514, 1177, 1895, 19516, 1894, 4135], + [0, 6939, 6741, 1177, 1936], + [1, 2343, 12554], + [0, 12555, 12556, 12558, 34352], + [ + 0, 11554, 19522, 19525, 18976, 1143, 1676, 19526, 19527, 19378, 2571, 17501, 2743, 3181, 19020, 19531, 18994, + 4135, 11555, 4480 + ], + [ + 0, 19535, 5601, 1011, 1173, 1175, 1178, 1208, 1212, 1261, 14237, 1280, 1291, 1429, 1610, 19538, 1177, 1912, + 1915, 1933, 1938, 17585, 14053, 19539, 2070, 2708, 2762, 2858, 19540, 19541, 3125, 2899, 19544, 3421, 3875, + 4039, 4103, 4193, 4449, 91, 19545 + ], + "stable-hash", + [0, 1177, 6741, 6939, 5194, 13354, 5260, 1204, 6813], + [1, 2343, 12560], + [0, 12561, 12562, 12542, 2487], + [0, 1012], + [ + 0, 48, 53, 87, 92, 192, 5467, 19492, 19552, 6061, 6063, 5536, 5601, 5087, 4874, 5254, 1009, 1011, 1012, 1193, + 19555, 1680, 1177, 1895, 1912, 1933, 1938, 1953, 1955, 1992, 19560, 2675, 2742, 1192, 15853, 2990, 19516, 3534, + 1894, 4039, 4131, 4135, 4474, 91 + ], + [1, 2343, 12564], + [0, 12565, 12566, 12567, 2537], + [0, 19567, 12533, 19568, 8506, 1676, 1874, 2000, 19186, 2626, 12525, 27427, 4135, 19570, 30614], + [ + 0, 5517, 48, 53, 68, 5240, 87, 19574, 19577, 19193, 19578, 816, 16607, 6065, 16608, 4856, 5245, 19580, 19581, + 1006, 8818, 6503, 4874, 5254, 19586, 5552, 1198, 1208, 19588, 1414, 1420, 1429, 1677, 1177, 19504, 19505, 2070, + 2203, 2675, 19592, 2845, 26696, 2990, 2899, 19595, 3541, 4068, 4039, 4042, 4131, 4193, 5569, 91, 4523 + ], + [0, 1177, 1932, 1776], + [0, 12569, 19601, 12572, 34352], + [0, 439, 19193, 11180, 12570, 12534, 12668, 17310, 12118, 19571], + [2, 19606, 12571], + "ast-token-store", + [0, 1177, 6741, 6939, 671, 19632, 2856, 1781], + [1, 2343, 12574], + [0, 12575, 12576, 12577, 2537], + [0, 11869, 19522, 1143, 19638, 1169, 19639, 19640, 13829, 2571, 19644, 19645, 3181, 19020, 19647, 19648], + [ + 0, 48, 53, 68, 5240, 94, 1159, 1198, 1261, 1177, 1881, 1912, 1933, 1935, 1938, 2004, 2126, 2708, 2762, 17221, + 3183, 3410, 3435, 3438, 4039, 4103, 4135, 4389, 19650 + ], + [0, 1177, 6741, 6939, 6653, 7320, 1219], + "unrs-resolver", + [1, 2343, 12580], + [0, 12581, 12582, 12583, 2537], + [0, 3137], + [0, 3421, 1429, 2899, 1177, 2203, 442, 19206, 19657], + [0, 1177, 6741, 1783, 671, 9654], + [1, 2343, 12585], + [0, 12587, 0, 12594, 2399], + "aleo", + [0, 2203, 439], + "cryptography", + [3, 1336, 10], + "decentralized", + "-knowledge", + [2, 7150, 12591], + "oracle", + [0, 1177, 6741, 6939, 2899], + [1, 2343, 12596], + [0, 12597, 12601, 12615, 34352], + [0, 439, 1835, 19671, 2191, 2203, 1555, 2687, 4135, 29860], + "event-", + "target-shim", + [2, 12598, 12599], + [ + 0, 442, 5601, 1006, 27303, 4874, 1011, 12145, 1177, 1895, 1912, 1933, 2071, 2675, 2990, 3125, 2899, 3401, 3421, + 3456, 1894, 3757, 3980, 4039, 19676, 4507, 91 + ], + "@mysticatea/eslint-plugin", + [3, 12602, 12], + [2, 12603, 4158], + "dts-bu", + "ndle-generator", + [2, 12605, 12606], + "growl-reporter", + [2, 2877, 12608], + "-minify", + [2, 4045, 12610], + "rollup-", + "rollup-watch", + "type-tester", + [0, 1177, 6741, 6939, 202, 6710, 5286, 6987, 2090, 3403, 1204, 3209], + "w3c", + "abort", + "cancel", + "control", + "controller", + [2, 12617, 12620], + "abortsignal", + [1, 2343, 12624], + [0, 12625, 12626, 12615, 2487], + [0, 1927, 19414, 2687, 3181, 814, 4135], + [0, 12602, 1503, 1177, 2071, 2203, 2899, 3421, 3456, 3757, 4039], + "negotiator", + [1, 2343, 12629], + [0, 12630, 0, 12632, 2399], + [0, 19689, 19571], + "negotiation", + [0, 1177, 6741, 6939, 1894], + [1, 2343, 12634], + [0, 12635, 12636, 12637, 2537], + [0, 439], + [0, 1011, 1742, 1177, 1895, 1912, 1933, 1939, 1953, 1955, 2203, 2675, 1192, 2990, 3401, 1894, 91], + [0, 1177, 6741, 6939, 1862, 6567], + [1, 2343, 12639], + [0, 12640, 12641, 12642, 2523], + [ + 0, 19522, 19724, 1143, 19726, 19526, 19641, 2004, 2571, 19644, 3181, 3438, 19020, 18994, 3744, 814, 4135, 11434, + 19729 + ], + [ + 0, 53, 68, 5611, 19731, 19735, 90, 5601, 1006, 4874, 1011, 1178, 1177, 1881, 1912, 1933, 1938, 1992, 19560, + 1994, 2000, 11605, 2070, 2759, 2762, 19736, 3125, 2899, 3410, 4193, 91, 19545 + ], + [0, 1177, 6939, 6741, 89], + [1, 2343, 12644], + [0, 12645, 12646, 12642, 2523], + [0, 4763, 53, 58, 21131, 25652], + [0, 1192, 91, 4874, 104, 1178, 5601, 1006, 19877, 36694, 68, 92], + [1, 2343, 12648], + [0, 12649, 12651, 12652, 2487], + [0, 439, 12121, 8506, 19592, 19745, 19750, 19751], + "git-clone", + [ + 0, 107, 6022, 19492, 19181, 442, 19605, 19609, 11470, 4856, 5601, 19611, 1006, 6503, 4874, 19759, 1009, 1011, + 1145, 1429, 19619, 1177, 1895, 1912, 1915, 1933, 1938, 1942, 19622, 1945, 1948, 1953, 19757, 1955, 1964, 1982, + 1988, 17308, 19756, 3125, 2899, 19761, 3090, 3401, 3421, 3486, 1894, 4135, 4320, 4946, 19624, 1531, 4494, 91, + 4523, 19630, 4614, 4630 + ], + [0, 1177, 6741, 6939, 6961, 1108], + "iglet", + [2, 5537, 12653], + [3, 9362, 11], + [2, 12655, 1496], + [1, 2343, 12658], + [0, 12661, 12662, 12663, 2523], + "nestjs", + "fullstack", + [0, 19767], + [0, 442, 13729, 1177, 19771, 1895, 1912, 1933, 2990, 3125, 2899, 3400, 1894, 4131, 19235], + [0, 1177, 1965, 19773], + [1, 2343, 12665], + [0, 12667, 0, 12669, 34352], + "archive", + [0, 91, 4135, 31800, 3060, 19780, 12121, 3181, 5569, 19751, 1413, 1405, 2203], + "eslint-json-compat-utils", + [0, 19786, 1177, 6741], + [1, 2343, 12671], + [0, 0, 12529, 12672, 2443], + [0, 1177, 6741], + [1, 2343, 12676], + "flowcontrol", + "arch", + [0, 12677, 12678, 12679, 34352], + [0, 439, 5012, 14301, 2203, 2932, 3561, 3616, 3676, 4135, 19795], + [ + 0, 53, 68, 14039, 19492, 10879, 19797, 19798, 8818, 19799, 6503, 4874, 19800, 5254, 19802, 5604, 5552, 1082, + 1145, 668, 1994, 19339, 1996, 2000, 2807, 695, 2899, 3640, 3681, 2278, 4228, 4333, 3709, 19803, 4494, 4505, 4745 + ], + [0, 1177, 6939, 6741, 3709, 19805], + "cron-parser", + "date.js", + "human-i", + [1, 2343, 12686], + "nterval", + [2, 12682, 12684], + [0, 12691, 12695, 12696, 2523], + "uman-interval", + [2, 6495, 12687], + [2, 8329, 2995], + [2, 3230, 12689], + [0, 5604, 1012], + "job", + "jobs", + "delayed", + [ + 0, 192, 5467, 19181, 442, 4874, 5551, 7677, 22839, 23203, 1177, 1895, 1912, 1915, 32525, 1953, 1958, 1992, + 19560, 2203, 2675, 2807, 2990, 1894, 23535, 4131, 1531, 91, 4523, 1984 + ], + [0, 1177, 6741, 6939, 671, 1975, 5472], + [1, 2343, 12698], + [0, 12723, 12724, 12725, 2537], + [3, 1339, 12], + "end4", + [2, 12699, 12700], + "meat7", + [2, 1337, 12702], + "bow-swam-troops-care", + "cent-matter-to", + "close", + "r-composed-particularly-shout", + [2, 12706, 12707], + "coach-organized-notice", + "correct-home-silent7", + "course-whenever-merely", + "crop", + "-birthday-web3-children", + [2, 12712, 12713], + "exchange-known-bend", + "-even", + "tually-bound", + [2, 12716, 12717], + [2, 8205, 12718], + "grass-dollar-crew-floating", + "-fruit-web3-perfect", + [2, 4374, 12721], + [0, 1012, 608, 606], + [0, 9125, 5601, 1006, 1177, 9141], + [0, 6869, 1745, 2295, 4298, 9132, 9134, 9658, 1932], + "lay-rest-hour", + "balance", + "-trade-solar", + [2, 12727, 12728], + [2, 3131, 12729], + "meat", + "-think-stove8", + [2, 12731, 12732], + "offic", + "e-deal-mostly1", + [2, 12734, 12735], + "product-slight-adult-settlers", + [3, 3931, 9], + "done-should-moon", + [2, 12738, 12739], + "scienti", + "fic-exist-event2", + [2, 12741, 12742], + "sent", + "-won-little-western", + [2, 6590, 12745], + [2, 12744, 12746], + "-wing-eat", + [2, 6887, 12748], + "stay-including", + "supp", + "er-t", + "erm-including-snake", + [2, 12752, 12753], + [2, 12751, 12754], + "truck-hospital-equator-hurt", + "trunk-darkness-believed-corner", + "typi", + "cal-recall-industry-exchange", + [2, 12758, 12759], + "warn", + "-clothing-whose0", + [2, 12761, 12762], + "weigh-flew-web3-farm", + [1, 2343, 12766], + [0, 12767, 12768, 12769, 34352], + [0, 5279, 439, 1443, 1458, 19824, 5867, 30055, 2203, 2709, 10911, 2835, 3547, 19826, 19827, 4135, 8959], + [ + 0, 51, 53, 68, 19181, 19829, 1011, 5552, 1166, 1414, 1836, 1177, 19422, 1907, 1912, 1933, 1942, 1982, 1992, + 19560, 1994, 2000, 2992, 3125, 17269, 27922, 3390, 3401, 19595, 3471, 3718, 91, 4630, 4745 + ], + [0, 1177, 6741, 6939, 1981, 9654, 671, 590, 1906], + [1, 2343, 12781], + "@airtap/browserify-istanbul", + "-default", + [2, 1090, 12772], + "airtap-", + "airtap-multi", + "bruce-millis-option", + [3, 9242, 9], + [3, 9242, 10], + [2, 12778, 5576], + "near", + [0, 12561, 12794, 12797, 2537], + "nearest-file", + [2, 2103, 12782], + "s-to-files", + [2, 2070, 12784], + "human", + "ize-duration", + [2, 12786, 12787], + "load-script", + [3, 3736, 9], + [2, 12790, 6953], + [2, 3094, 12791], + "maybe-combine-errors", + [ + 0, 19344, 5601, 6503, 4874, 1009, 1011, 5551, 19838, 19839, 1540, 1177, 1912, 1933, 1985, 1992, 19560, 4474, + 4494, 91, 4543, 1984 + ], + "nanoresource", + "-col", + [0, 1177, 6741, 6939, 19842, 1984, 19844], + "-collection", + [2, 12795, 12798], + "on-str", + "eam-close", + [2, 12800, 12801], + "run-", + "parallel", + [1, 2343, 12806], + [0, 12810, 12811, 12816, 2523], + "-settled", + [2, 12804, 12807], + [2, 12803, 12808], + [0, 439, 12118, 16870, 3681, 4135, 19851], + [ + 0, 107, 27928, 19609, 19344, 11470, 5601, 19616, 4874, 5254, 19853, 1009, 1011, 5552, 7677, 1145, 19619, 668, + 1177, 23753, 1895, 1933, 1938, 1945, 29743, 19623, 1955, 1982, 19339, 1996, 2000, 2018, 2203, 2832, 3125, 3510, + 1894, 1531, 91, 19630, 4614, 1984, 4630 + ], + "tap-completed", + "y-with-args", + [2, 3949, 12813], + "transi", + [0, 1177, 6939, 7625, 188, 12072, 3624], + "ent-error", + [2, 12815, 12817], + [1, 2343, 12821], + "abstract-browser", + [0, 12822, 12824, 12827, 2487], + [0, 51, 2861, 1437, 2716, 3429, 89, 4183], + "simple-get", + [0, 19181, 19861, 5601, 4874, 8860, 4880, 1567, 1177, 5556, 19862, 19864, 2807, 3339, 4294, 91, 1984], + "labs", + "saucelabs", + [0, 1177, 19866], + [1, 2343, 12829], + [0, 12830, 12838, 5795, 34352], + [0, 34028, 1006, 19871, 2004], + "uri", + "fast-uri", + [3, 12284, 13], + [2, 12833, 1286], + "-string", + "from-string", + [2, 4013, 12836], + [0, 1011, 1429, 1996, 2000, 19230, 4167], + "@ajv-validator/config", + "quire-", + [2, 12840, 12836], + [2, 5249, 12841], + [1, 2343, 12853], + "tc", + "-plugin-utc", + [2, 1673, 12845], + "if-node-version", + [2, 12833, 4467], + [2, 5223, 12836], + "re2", + "tsify", + "uri-js", + [0, 0, 12854, 5795, 2523], + [0, 3456, 4042, 4057, 4481, 91], + [1, 2343, 12856], + [0, 12857, 0, 12858, 2537], + [0, 1898, 19884], + [0, 1998], + [1, 2343, 12861], + "Ajv", + [0, 0, 0, 12862, 34352], + [0, 10906, 5286, 6813, 1204, 5260, 202, 3209], + [1, 2343, 12864], + [0, 12865, 12866, 12867, 2523], + [0, 1082, 15128, 1996], + [0, 5517, 4042, 4167, 4481, 91], + [0, 6892, 5286, 5284, 57, 5341, 1082], + [1, 2343, 12869], + [0, 0, 12871, 12872, 2523], + "longjohn", + [ + 0, 15990, 19905, 19907, 2070, 2759, 19878, 2297, 2881, 2889, 2891, 2895, 2897, 2900, 2912, 19910, 2915, 1209, + 2899, 19912, 3954, 1241, 4487, 91, 4526, 19914, 2924 + ], + [0, 6892, 5286, 2003, 5284, 57, 5341], + [1, 2343, 12874], + [0, 0, 12875, 2514, 2523], + [0, 1264, 1280, 1429, 2000, 2323, 2351, 2390, 2404, 19922, 2272, 2899], + [1, 2343, 12880], + "buffer-", + "more-ints", + [2, 12877, 12878], + [0, 12881, 12883, 2514, 2487], + [0, 1006], + "claire", + [0, 91, 4579], + "AMQP", + [1, 2343, 12888], + "AMQP 0-9-1", + "RabbitMQ", + [0, 0, 12889, 12890, 2487], + [0, 2899, 1177, 2759, 1317, 4127, 4100, 1311, 1954, 1938, 1958, 1903, 1948, 1970], + [0, 984, 27, 10376], + [1, 2343, 12892], + [0, 12894, 12895, 12896, 4139], + "ux bootstrap", + [0, 19937, 2010], + [ + 0, 19939, 19941, 19942, 19944, 9424, 7892, 4874, 19325, 1389, 19945, 1596, 2675, 2759, 2297, 2871, 2889, 2895, + 19946, 3183, 3421, 1894, 4389, 4474, 4487, 4508, 4514, 91, 19948 + ], + [0, 9439, 19950], + [1, 2343, 12898], + [0, 12900, 12901, 12902, 2523], + "client-side", + [0, 9424, 1363, 1600, 19956, 19957], + [0, 19961, 4874, 19963, 19325, 1177, 2297, 2881, 2895, 19946, 19965, 3421, 1894, 4389, 4474, 91], + [0, 9439, 6731, 594], + [1, 2343, 12904], + [0, 12905, 12906, 12907, 2523], + [0, 1082, 1437, 4747, 1209, 1362, 2151, 19972, 2004, 3105, 19971, 4547], + [0, 3763, 19974, 91, 4874], + [0, 19976, 19977, 5284, 1783, 1973], + [3, 4, 9], + "cli/ast-tools", + [2, 12908, 12909], + [3, 12910, 13], + "href-webpack", + [2, 1296, 12912], + [2, 12911, 12913], + "@ngtools/json-schema", + "@ngtools/", + [2, 12916, 2924], + "denodeify", + [1, 2343, 12920], + [0, 12927, 12932, 12933, 2523], + "entity-name", + [2, 3370, 12921], + [2, 1828, 12922], + [2, 4284, 594], + [2, 1828, 12924], + "exists-sync", + [0, 1792, 7115, 3102, 19982, 4237, 19984, 4430], + "caller-file", + [2, 2183, 12928], + "isbinaryfile", + "node-mo", + [0, 19986, 19987, 19988, 4389, 19989], + [0, 3101, 3053, 19991, 7131, 4237, 4565, 1698, 4068], + "dules-path", + [2, 12931, 12934], + [2, 1508, 2091], + "silent-error", + [3, 4070, 9], + [3, 6384, 10], + "inst", + "rumenter-loader", + [2, 12940, 12941], + [2, 12939, 12942], + [2, 12938, 12943], + [1, 2343, 12946], + [0, 0, 12947, 12948, 34352], + [0, 1317, 1362, 1596, 2899, 3421], + [0, 2013, 2018, 13771, 2016, 19997, 19998, 19999, 6868, 20000, 1803, 3441, 20001, 20003], + [1, 2343, 12952], + " library", + [2, 4627, 12950], + [0, 0, 12953, 12954, 2537], + [0, 811, 10615, 1148, 1414, 2899, 4042], + [0, 20014, 20015, 20016, 20018, 19997, 19998, 6868, 20000, 13771, 2013, 3441, 19999, 20001, 20019, 20003], + [1, 2343, 12957], + "justified", + [0, 0, 12960, 12962, 2523], + "bgblack", + "bgBlack", + [0, 1090, 2159, 6914, 2569, 2756, 4389], + "bgblue", + [0, 2018, 7133, 7053, 7155], + "bgBlue", + "bgcyan", + "bgCyan", + "bggreen", + "bgGreen", + "bgmagenta", + "bgMagenta", + "bgred", + "bgRed", + "bgwhite", + "bgWhite", + "bgyellow", + "bgYellow", + "black", + "bold", + "clorox", + "cyan", + "dim", + "gray", + "green", + "grey", + "hidden", + [1, 2343, 12988], + "inverse", + "italic", + [0, 12989, 12995, 12999, 2537], + [0, 20033, 1615, 2089, 2188, 20035, 2745, 2753, 3404, 3718, 4174, 20039, 20040], + "magenta", + "red", + "str", + "kethrough", + [2, 4285, 12993], + [0, 4874, 1166, 1414, 20042, 20044, 20047, 29888, 3505, 16687, 16330, 4481, 91, 4707, 1906], + "underline", + "white", + "yellow", + [0, 2978, 1451, 3729, 20049, 16701, 20050, 20051, 1614, 2090, 4166, 20052, 17180, 20054, 3378, 3403, 2703, 12473], + [1, 2343, 13001], + [0, 0, 13003, 13004, 2487], + "@jest/get-type", + [0, 2273, 2277, 2283, 2228, 4707], + [0, 2021, 3729, 20061, 8634, 20062, 20063, 20064, 20065], + "vt100", + "cursor", + "iterm2", + "screen", + "erase", + [1, 2343, 13012], + "scrollback", + [0, 13013, 13014, 2514, 2537], + [0, 20076, 13002, 11907, 8765, 11944, 2798], + [0, 16596, 8776, 1437, 2700], + [1, 2343, 13016], + [0, 0, 13018, 13019, 2537], + "pattern", + [0, 5517, 4874, 29891, 23203, 1177, 20083, 3377, 20085, 4294, 4473, 91, 1984], + [0, 91, 20088, 1145, 553, 4532, 1973, 5472], + [1, 2343, 13021], + [0, 13022, 13023, 13025, 2537], + [ + 0, 3763, 1704, 984, 3441, 710, 4590, 1676, 2145, 977, 38, 1080, 1000, 3494, 4266, 1833, 3173, 988, 1364, 1869, + 2657, 3440, 1562, 2099, 3781, 4151, 1581, 20103, 1560 + ], + [0, 1797, 2590, 3421, 1087, 2899, 4594, 1177, 3127, 3237, 4342, 1553, 1575, 1578, 2040, 3162, 20106], + "svg-term-cli", + [0, 2026, 5130, 6690, 5122, 27, 4030, 7096, 38, 1896, 5592], + [1, 2343, 13027], + [0, 13028, 13029, 13025, 2537], + [ + 0, 1080, 20098, 1364, 1560, 1562, 977, 1581, 1676, 1704, 1833, 1869, 984, 2099, 2145, 2657, 20103, 3164, 3440, + 3494, 3509, 988, 3763, 3781, 4100, 710, 4151, 20099, 4266, 1000, 4578, 4590 + ], + [0, 1087, 1553, 1575, 1578, 1797, 1177, 2040, 2590, 3127, 3162, 2899, 3237, 3421, 20106, 4342, 4594], + "truecolor", + [2, 31213, 31214], + [1, 2343, 13033], + [0, 13034, 13040, 13043, 2487], + [0, 53, 58, 101, 19526, 3509], + [2, 12392, 188], + "nitless", + [2, 7944, 13036], + "@simonwep/pickr", + "array-", + [0, 5087, 1177, 1192], + "tree-filter", + [2, 13039, 13041], + [0, 8124, 2026, 1776, 2295, 7701, 20120, 1745, 4363, 13728, 1179, 8623, 20121, 20123, 20124], + [1, 2343, 13048], + "dom-align", + "croll-into-view", + [2, 11148, 13046], + [0, 13050, 13054, 13070, 2537], + "vue-types", + [0, 1797, 3188, 1525, 3181, 14380], + [3, 10720, 40], + [2, 5822, 3426], + "@types/k", + [0, 2899, 1177, 4039, 4538, 4342, 4459, 1954, 1938, 1958, 1903, 1970, 4588], + "@types/koa", + "ru-cache", + [2, 6499, 13056], + [3, 4875, 15], + [2, 13058, 3615], + "-jsx", + [2, 11016, 13060], + [2, 1199, 1219], + [2, 5334, 13062], + "slint", + [2, 3542, 13064], + [2, 1472, 13065], + [2, 5334, 13066], + [3, 1031, 19], + [2, 13068, 1894], + [0, 2026, 5130, 6690, 5122, 4030, 7096, 38, 1896, 5592], + "vue3-jest", + [2, 5334, 13071], + "pack-", + [1, 2343, 13081], + "cli/serve", + [2, 13073, 13075], + [2, 10672, 13076], + "ali-oss", + "nline-import-data-uri", + [2, 1206, 13079], + [0, 13082, 13091, 13102, 2523], + [0, 2070, 2215, 2036], + "context", + "quire-context", + [2, 1252, 13084], + "colorful", + "-versions", + [2, 3797, 13087], + "cz-git", + "diacritics", + [0, 442, 6061, 16607, 6063, 6065, 16608, 16612, 5087, 4874, 1177, 2203, 2774, 4131, 4468, 91, 4523], + "docsearch.js", + "enquire-js", + [3, 1954, 16], + "licit-type-exports", + [2, 1760, 13095], + [2, 13094, 13096], + [3, 2512, 11], + [2, 13098, 1501], + "-emit-webpack-plugin", + [2, 2687, 13100], + [0, 2026, 20137, 2036, 6624, 8691, 20140, 5354], + "is-windows", + [3, 11948, 16], + [2, 13104, 188], + "stub", + [2, 1221, 13106], + [2, 2769, 13107], + "templater", + [2, 2842, 13109], + [1, 2343, 13116], + "mport", + "npm-import", + [2, 1186, 13113], + [2, 3194, 13114], + [0, 13139, 13140, 13146, 2523], + "vars-to-js", + [2, 3194, 13117], + "majo", + [3, 5961, 14], + "ble-of-contents", + [2, 13120, 13121], + "merge2", + [2, 3986, 1646], + "yaml-", + "yaml-config", + [2, 3986, 13126], + "reqwest", + "rucksack-css", + [3, 4130, 9], + [2, 13130, 36], + [3, 1873, 9], + [2, 2495, 2091], + [2, 13132, 13133], + "umi-request", + "vue-cl", + "ipboard2", + [2, 13136, 13137], + [0, 2863, 20147, 8264], + [0, 2899, 1177, 2026, 4474, 1894, 91, 6503, 6494, 1566, 1011, 1009], + "drag-resize", + [2, 4625, 13141], + "vue-i", + "nfinite-scroll", + [2, 13143, 13144], + [0, 1303, 20150, 5165, 20151, 14374, 27, 2038, 11326, 3424, 2026], + [1, 2343, 13150], + "equest", + "vue-request", + [0, 13153, 13155, 2514, 2523], + "vue-tsc", + "webpackbar", + [0, 977, 1581, 1676, 1704, 16128, 3494, 4100, 4538], + "vueComponent", + [0, 1087, 1575, 1177, 1948, 2026, 2899, 3421, 4342], + [1, 2343, 13157], + [0, 13158, 13160, 13170, 2523], + [0, 1091, 1437, 1525, 1536, 1594, 1759, 2026, 2812, 4042, 4057, 91, 4763], + [2, 11164, 3007], + [0, 442, 7806, 9227, 6494, 4874, 1009, 1011, 1177, 1954, 2203, 3363, 1894, 4039, 4474, 4480, 4523], + "color-picker", + [2, 11183, 13161], + [3, 5050, 15], + "utate-observer", + [2, 13163, 13164], + [2, 11183, 11194], + [3, 11185, 15], + "rigger", + [2, 13167, 13168], + [0, 5592, 5995, 20164, 5001, 7141, 2026, 20165, 5130, 6706, 6807, 36, 7020], + [3, 11161, 14], + "mpat", + [1, 2343, 13180], + "mpatible", + [2, 13171, 13174], + "work-theme", + [2, 2560, 13176], + [2, 41, 13177], + "@ant", + [0, 0, 13208, 13209, 2523], + "@antv/g6", + "@codecov/webpack-plugin", + "@code", + "sandbox", + "/sandpack-react", + [2, 13184, 13185], + [2, 13183, 13186], + "@ianvs/prettier-plugin-sort-imports", + "@madccc/duplicate-package-checker-webpack-plugin", + "@micro", + "flash/rehype-figure", + [2, 13190, 13191], + "dm-zip", + [2, 9165, 13193], + "li-oss", + [2, 9165, 13195], + [3, 10403, 11], + [2, 13197, 3730], + [3, 10406, 12], + [2, 13199, 36], + [3, 8806, 9], + "omorphic-fetch", + [2, 13201, 13202], + [2, 7635, 965], + [2, 10884, 3730], + "ixelmatch", + [2, 5088, 13206], + [0, 1414, 20171, 4193, 1177, 2026, 4474, 20170, 91, 4874, 6513, 6494, 1011, 1009], + [ + 0, 20173, 20174, 1781, 91, 5592, 27, 2026, 20175, 20176, 91, 2663, 998, 20178, 20179, 20182, 20183, 20184, 9091, + 10339, 5995, 20186, 20188, 89, 20189, 20194, 20195 + ], + "@types/pngjs", + [1, 2343, 13217], + "pinnies", + [2, 5051, 13212], + [3, 7752, 10], + "antd-style", + [3, 8770, 10], + [0, 13222, 13242, 13244, 2537], + "ugin", + "y-plugin", + [2, 13216, 13219], + [2, 7045, 13220], + [0, 1209, 1155], + "cli-progress", + "plugin-c", + "chunk", + "olor-chunk", + [2, 13224, 13226], + [2, 12407, 13227], + [3, 5556, 16], + "dash", + [2, 13229, 13230], + "lunar-typescript", + "p-all", + "untup", + [2, 3808, 13234], + "-no-", + "-references", + [2, 10393, 13237], + [2, 13236, 13238], + [2, 11380, 13239], + "runes2", + [0, 20202, 20207, 20212, 5087, 4870, 1009, 1011, 1177, 1895, 1938, 1955, 1192, 1894, 4468, 91], + "spinnies", + [0, 2026, 1155, 7020, 2649, 2574, 20215, 4741], + "vanilla-tilt", + [1, 2343, 13247], + [0, 13248, 13249, 13250, 2523], + [0, 1112, 3327, 20221, 3776, 13031], + [ + 0, 7806, 9227, 27478, 6494, 9231, 27327, 22102, 10413, 20232, 1536, 1594, 1704, 2026, 9243, 2657, 3313, 20243, + 91, 4548, 4763, 34143 + ], + [ + 0, 6710, 5592, 27, 2663, 1745, 1781, 2026, 91, 2844, 36, 1852, 8124, 20246, 3452, 20247, 6652, 20251, 20252, + 4763, 7020 + ], + [1, 2343, 13252], + [0, 0, 13253, 13254, 4139], + [0, 13614, 13616, 1177, 2292, 4389], + [0, 2051, 1496, 1698], + [1, 2343, 13256], + [0, 13257, 13258, 13269, 4139], + [0, 20263, 20266], + [0, 20268, 20269, 20272, 2398, 2747, 20273, 3183, 2899, 3427], + "ext-comm", + [2, 10740, 13259], + [2, 5409, 13260], + [2, 5409, 1745], + "app-layout", + [2, 10689, 13263], + [3, 10703, 14], + [3, 212, 11], + [2, 13265, 13266], + [3, 806, 10], + [0, 3426, 1496, 2051, 1698, 7002, 3048, 3427, 3435, 3743, 3583, 3205, 20275, 4161, 614, 6435, 594, 6692], + [1, 2343, 13273], + "aper-toast", + [2, 13268, 13271], + [0, 13274, 13288, 2514, 2523], + [0, 1149, 3008, 4121, 4695], + "menu-mixin", + [2, 5395, 13275], + "building", + "-rollup", + [2, 13277, 13278], + [2, 5471, 13279], + [2, 1384, 591], + [2, 13265, 13281], + [3, 5478, 17], + "-regression", + [2, 7062, 13284], + [2, 13283, 13285], + "amf-client-js", + [ + 0, 1173, 1193, 1245, 1257, 1264, 1610, 1628, 1701, 1177, 20281, 1938, 2092, 1192, 2990, 3413, 3697, 3786, 4257, + 4307, 2924, 20283 + ], + [2, 4053, 2257], + "per", + "unzipper", + [1, 2343, 13295], + "raml", + "amf", + [0, 13296, 13297, 13298, 2399], + [0, 1676, 2188, 4753, 20290], + [0, 1009, 1011, 1166, 1177, 1903, 1920, 1938, 1954, 1958, 1970, 2151, 2675, 2990, 3421, 4481, 91], + [0, 4560, 2056, 7682], + [1, 2343, 13300], + [0, 0, 13306, 2514, 34352], + "-match-patch", + [2, 1687, 13301], + "se-loader", + [2, 5779, 13303], + "klaw-sync", + [ + 0, 3421, 2323, 1776, 2899, 4193, 1177, 1209, 3460, 4431, 1596, 1389, 20304, 2494, 2530, 2990, 13896, 4599, 2401, + 20305, 20306, 4603 + ], + [3, 1898, 16], + [1, 2343, 13309], + [0, 13312, 13313, 13314, 2537], + "commended", + [2, 13307, 13310], + [0, 20312], + [0, 1177, 1889, 1954, 2022, 2899, 3421, 20314, 4193], + [0, 20317, 3073, 2942, 6807, 3721, 20319], + [1, 2343, 13316], + [0, 13317, 13320, 13321, 2537], + [0, 20325], + "light", + "apidoc-light", + [0, 603, 4874, 1610, 2070, 19826, 4005, 4508, 91, 1984, 20328, 20330, 2064], + [0, 20334, 20335, 13657, 5472, 20336, 20339, 20340, 2060, 20342, 20341, 1192], + "portable", + [1, 2343, 13324], + [0, 13329, 0, 13330, 4139], + "programmatic", + "cli-app", + [2, 4610, 1745], + [2, 3115, 1745], + [0, 20351, 20349], + [0, 1641, 57, 2062, 20353, 20354, 20355], + [1, 2343, 13332], + [0, 0, 13334, 13335, 2537], + "http2", + [0, 1596, 1758, 1177, 2899, 3421, 3697, 89, 3904, 4193, 91], + [0, 2062, 4162, 1693], + "apple", + " notifications", + [2, 6645, 13337], + "iOS", + "apns", + [1, 2343, 13342], + [0, 13343, 13344, 13347, 2537], + [0, 20366, 19185, 2200, 13123, 3170], + [ + 0, 20369, 16396, 20371, 8778, 6503, 4874, 20374, 6513, 20375, 1177, 20377, 2020, 2071, 20378, 2070, 20380, 2899, + 4039, 4193, 20382, 91 + ], + [3, 1122, 12], + [2, 1126, 6731], + [0, 2070, 11601, 2062, 20385], + [1, 2343, 13349], + [0, 0, 13350, 2514, 2523], + [0, 6503, 4874, 2899, 4113, 91], + [3, 5515, 14], + [2, 4807, 13351], + [1, 2343, 13355], + "jsnext", + [0, 13357, 13358, 13359, 2443], + "relay", + [0, 20394], + [0, 53, 83, 87, 94, 4874, 1195, 1414, 1177, 2591, 2765, 1894, 3753, 91, 2924, 4677], + [0, 2062, 6523, 1781, 57, 4734, 16168, 4735, 676, 1155, 2649, 8535, 1145, 20398, 20400, 1936], + [1, 2343, 13361], + [0, 0, 0, 13365, 2399], + [3, 8780, 10], + "phql", + [2, 13362, 13363], + [0, 2077, 5131, 4453, 4384, 2076, 1702], + [1, 2343, 13367], + [0, 13368, 13371, 13375, 2537], + [0, 20428, 20414, 20434, 13597, 20418, 20409, 20426, 20412, 20420, 3533, 20416, 4038, 20423, 4135, 20410], + "-common", + [2, 1129, 13369], + [ + 0, 28002, 8520, 826, 19344, 7844, 4874, 1091, 8531, 1092, 20437, 20446, 20441, 28400, 20450, 1540, 1610, 1177, + 20444, 11049, 20453, 20436, 2657, 2812, 12284, 2861, 20451, 29197, 3313, 3752, 4238, 4481, 91, 4548, 4590, 6482 + ], + [2, 1126, 1612], + "to-querystring", + [2, 3425, 13373], + [0, 5122, 5130, 1781, 2844, 3445, 5592], + [1, 2343, 13377], + [0, 13378, 13380, 2514, 2523], + [ + 0, 603, 20472, 12397, 20467, 20482, 12399, 12400, 27329, 20463, 1201, 1212, 20479, 20476, 1835, 668, 2071, + 12419, 20465, 3181, 20460, 4480, 91, 20474 + ], + "cracks", + [ + 0, 192, 5467, 842, 5087, 20485, 9129, 4874, 14011, 12471, 2675, 1192, 6551, 2990, 1894, 3706, 3708, 4039, 4474, + 4494, 12473 + ], + "_modules", + [2, 202, 13381], + [1, 2343, 13384], + [0, 13385, 13386, 13389, 2399], + [ + 0, 20490, 20491, 20492, 20493, 20494, 15016, 1792, 3183, 19544, 3923, 19647, 4243, 20495, 18997, 20496, 4389, + 4431 + ], + [0, 13614, 1158, 1159, 1177, 2708, 3410, 4103], + "@appium/support", + "@colors/colors", + [0, 4384, 12786, 1973, 20499, 20500, 3721], + "appium-adb", + "appium-", + "driver", + "chromedriver", + [2, 13391, 13393], + "asyncbox", + "io.appium.settings", + "ports", + [1, 2343, 13401], + "portscanner", + "teen_process", + [0, 13407, 13408, 2514, 2523], + "@appium/", + [3, 1879, 15], + "ppium-ts", + [2, 13403, 13404], + [2, 13402, 13405], + [0, 1613, 20507, 3082, 3427, 1862, 20508, 11804], + [0, 53, 1700, 2126, 2323, 2338, 2396, 2494, 2700, 2774, 3159], + [1, 2343, 13420], + "@appium/t", + [2, 13410, 7630], + [2, 13410, 103], + "luebird", + [2, 4853, 13413], + [3, 4875, 9], + "rtscanner", + [2, 13415, 13416], + [2, 5051, 5588], + "@types/te", + [0, 6230, 13421, 13422, 34352], + [0, 48, 53, 87, 90, 6061, 6063, 20514, 13662, 20517, 1251, 1652, 1177, 1879, 2990, 3188, 4131], + [ + 0, 20519, 20520, 20521, 20522, 4963, 20523, 4967, 6082, 89, 20524, 20525, 11609, 5122, 20526, 20528, 20531, + 20533, 17751, 20536, 20537, 20539, 20541, 20542, 20543, 20544, 20545, 20546, 20547, 20548, 20551, 20553 + ], + [1, 2343, 13424], + [0, 6263, 13425, 13427, 2537], + [ + 0, 48, 53, 83, 87, 90, 92, 5583, 811, 816, 10817, 968, 972, 20562, 5087, 4880, 4883, 1009, 1011, 1503, 1540, + 1610, 1177, 1881, 1895, 17613, 1938, 1939, 1959, 1961, 1192, 89, 3824, 3957, 4042, 4073, 4468, 4484, 91 + ], + "appium", + [0, 20566, 4967, 20568, 3875], + "automation", + [2, 5131, 10428], + [1, 2343, 13431], + [0, 13432, 0, 13433, 4139], + [0, 20577, 20573, 20575, 11959], + [0, 1612, 27, 3212, 5472, 4158, 13106], + [1, 2343, 13435], + [0, 13436, 0, 13438, 2399], + [0, 20584], + "@azure/core-auth", + [0, 10807, 2087, 15964, 20586, 1149, 12804, 6812, 14836, 1862], + [1, 2343, 13440], + [0, 5621, 13443, 13448, 2537], + "pipeline", + "reg", + [0, 4874, 23203, 1149, 2675, 2990, 91, 1983, 26744, 1984], + "@azure/", + "identity", + [2, 13444, 13445], + "monitor-", + [0, 2088, 6938, 6952, 7179, 1111], + "eleme", + [1, 2343, 13451], + [0, 13460, 8134, 13461, 34352], + "opentelemetry", + [2, 13447, 13452], + [2, 13444, 13453], + [3, 830, 9], + [2, 13454, 13455], + "-inst", + "rument", + "ation-", + [0, 16232], + [0, 3656, 200, 8429, 6876, 7169, 5511, 2568, 20597, 2089, 20598], + "azure-sdk", + [2, 13459, 13462], + [2, 13458, 13463], + [2, 13457, 13464], + [2, 13452, 13465], + [2, 13444, 13466], + "@opent", + [1, 2343, 13472], + "elemetry/api", + [2, 13468, 13470], + [0, 13511, 13519, 13533, 2537], + "-logs", + [2, 13471, 13473], + [3, 13471, 15], + [2, 13475, 364], + "er-logs-otlp-http", + [2, 6813, 13477], + [2, 13475, 13478], + [3, 13479, 24], + "metr", + "ics-otlp-http", + [2, 13481, 13482], + [2, 13480, 13483], + "trace-", + "otlp-http", + [2, 13485, 13486], + [2, 13480, 13487], + "otlp-", + "exporter-", + [2, 13490, 1299], + [2, 13489, 13491], + [2, 13475, 13492], + "resources", + [2, 13475, 13494], + "sdk-logs", + [2, 13475, 13496], + [3, 13497, 19], + "metrics", + [2, 13498, 13499], + "trace-base", + [2, 13498, 13501], + [3, 13502, 25], + [2, 13503, 202], + [3, 13497, 16], + "emantic-conventions", + [2, 13505, 13506], + "diagnostic-channel", + "-publishers", + [2, 13508, 13509], + [0, 3008, 4121], + [2, 13444, 5746], + [3, 4870, 9], + "@types/long", + [3, 8778, 12], + "__typescript-etw", + [2, 7295, 13516], + [2, 13515, 13517], + [ + 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 1610, 1700, 1701, 1177, 1895, 1938, 2675, 1192, 2990, 3144, 3400, + 1894, 4257, 4027, 2924 + ], + "exce", + "ption", + " monitoring", + [2, 13521, 13522], + [2, 13520, 13523], + [2, 705, 13522], + [2, 6681, 13522], + [3, 1135, 11], + " insights", + [2, 13527, 13528], + "microsoft", + "azure", + "tracing", + [0, 2924], + [1, 2343, 13536], + "telemetry", + [0, 0, 13537, 13540, 4139], + [0, 48, 53, 10688, 5812], + "analytics", + "apm", + [0, 20611, 20613, 20614], + [1, 2343, 13542], + [0, 13543, 13555, 13556, 2537], + [0, 13687, 20619, 20621, 20624], + [3, 7709, 10], + "ial-provider-node", + [2, 11891, 13545], + [2, 13544, 13546], + [3, 7709, 9], + "hash-", + "hash-node", + [2, 13548, 13550], + [3, 6765, 9], + [2, 13552, 27], + [2, 13548, 13553], + [0, 20626, 4874, 1166, 20627, 2188, 20628, 4481, 1906], + [ + 0, 3171, 2090, 998, 14431, 12666, 158, 11807, 20630, 20631, 16202, 20632, 20634, 13735, 4354, 2741, 20635, + 14242, 20636, 8433, 17180, 1398, 15149, 20637, 18048, 20638, 20639, 12349, 20640, 20641, 20642, 20643, 20644, + 20645, 20646, 20647, 20648, 3775, 20649, 20650, 20651, 20652, 20653, 20654, 2056, 4390, 20655, 17276, 17274, + 20656, 18494, 20657, 20658, 20659, 20660, 20661, 20662, 20663, 20664, 20665, 20666, 20667, 20668, 20669, 20670, + 20671, 2636, 20672, 20673, 7016, 20674, 20675, 20676, 20677, 20678, 20679, 13705, 20680, 20681, 17918, 20682, + 7827, 20683, 20684, 20685, 10790, 20686, 20687, 20688, 20689, 20690, 20691, 7823, 20694, 20695, 20696, 20697, + 20698, 3354, 20699, 20700, 20701, 20702, 20703, 20704, 20705, 20706, 20707, 20708, 6523, 20709, 11811, 10868, + 20710, 20711, 20712, 8861, 20713, 20714, 20715, 20716, 20717, 20718, 20719, 20720, 20721, 20722, 20723, 20724, + 20725, 20726, 20727, 20728, 20729, 20730, 20731, 20732, 20733, 20734, 20735, 20736, 20737, 20738, 20739, 20740, + 20741, 20742, 2403, 20743, 20744, 20746, 12350, 10218, 20747, 20748, 18508, 17733, 20749, 20750, 20751, 20752, + 20753, 20754, 20755, 20756, 20757, 1227, 20758, 20759, 20760, 20761, 20762, 20763, 20764, 12081, 12096, 28922, + 28923, 28924, 28925, 28926, 28931, 28932, 28942, 28943, 28946, 28947, 37859, 28949, 28955, 28958, 28961, 34876, + 33671, 6790, 33677, 27669, 29579, 17288, 13442, 18883 + ], + "signature-v4", + [2, 13548, 13557], + [2, 13548, 553], + [2, 9196, 1732], + [1, 2343, 13570], + "@aws-", + "amplify/amplify-appsync-simulator", + [2, 13562, 13563], + "construct", + "constructs", + [3, 3706, 25], + [2, 13567, 2618], + "projen", + [0, 0, 13575, 13576, 34352], + "appsync", + "gql", + "lambda", + "xray", + [0, 10615, 1159, 1414, 1177, 2675, 2899, 4042], + [0, 2090, 2098, 4202, 7017, 6771, 1413, 1687], + [1, 2343, 13578], + [0, 13582, 9025, 2514, 2487], + [2, 1137, 3007], + "crc32", + "buffer-crc32", + [0, 1676, 1833, 1869, 3440, 3494, 4266], + "readdir-glob", + "zip-stream", + [1, 2343, 13588], + "archiver-", + "jsdoc-t", + [0, 13592, 13593, 13594, 2523], + "jsdoc-theme", + [2, 13586, 13589], + [2, 4279, 4440], + [0, 3537, 13765], + [0, 1906, 1166, 1700, 4481, 4400], + [0, 2325, 7204, 20164, 2100, 7193], + [1, 2343, 13596], + [0, 13598, 13599, 13600, 2537], + [2, 27994, 27995], + [0, 20786, 20789], + [0, 1166, 17450, 4400, 4481, 1906], + [0, 2100, 2104, 2105, 7076, 6614, 6605, 2090, 7193, 3529, 3383, 814, 5933, 7029, 6857, 7204, 4647, 6821, 3403], + [1, 2343, 13602], + [0, 13603, 13604, 13605, 2537], + [0, 20796, 2743, 3170, 20797], + [0, 1177, 1889, 1954, 2022, 20801, 2899, 3369, 3421, 814], + [0, 2090, 2100, 2105, 7076, 2070, 3529, 13017, 814, 7193], + [1, 2343, 13607], + [0, 13608, 13620, 13621, 2537], + [ + 0, 13612, 20819, 20822, 20824, 20825, 20826, 20828, 20829, 20831, 20833, 20836, 20837, 20839, 20840, 20841, + 12153, 20843, 20846, 20847, 20848, 20849, 20850, 20851, 20852, 20853, 20857, 20858, 20859 + ], + [2, 6739, 1228], + "-unscopables", + [2, 7065, 13610], + "@firebase/ai", + "@es-shims/api", + "@ljharb/eslint-config", + "cover", + "covert", + "has-s", + "trict-mode", + [2, 13617, 13618], + [0, 2323, 4042, 91, 2496, 2510, 4077, 10615, 4060, 811, 4071, 4076, 816], + [0, 5165, 18035, 20862, 2109, 20863, 13901, 6681, 20845], + [1, 2343, 13623], + [0, 13624, 13627, 13628, 2399], + [0, 20870, 20848, 20872, 4874, 20873, 2069, 20917, 2863, 20874, 3313, 3348], + "arrayify", + "ensure", + [ + 0, 20883, 20839, 20840, 20885, 603, 20886, 4856, 9417, 20888, 8264, 4870, 7892, 6503, 10410, 16936, 20889, 6513, + 6512, 7819, 1009, 1011, 1306, 1429, 1431, 6522, 1437, 1455, 1700, 1177, 20892, 2323, 2390, 2409, 2529, 20895, + 1209, 3183, 2899, 3261, 3297, 3400, 3421, 705, 4008, 4089, 4193, 4196, 4474, 91, 4747 + ], + [0, 20897, 18035, 20862, 20863, 5165], + [1, 2343, 13630], + [0, 13632, 0, 13634, 2399], + "is-n", + [ + 0, 32557, 32562, 12207, 20745, 20904, 20905, 8998, 29421, 1079, 1091, 1092, 1137, 20908, 1364, 1457, 20909, + 1483, 1511, 1525, 1543, 1594, 1610, 1615, 1645, 20911, 20912, 20913, 2026, 2098, 2139, 2151, 2163, 20914, 2070, + 20917, 2687, 2822, 2863, 2975, 20918, 1209, 12209, 3127, 14774, 3171, 3181, 3237, 3310, 3445, 3467, 6042, 3519, + 30172, 30174, 3560, 3730, 20921, 1153, 4135, 20922, 20924, 20925, 20928, 18052, 4449, 20931, 20934, 20935, 3348, + 4709, 4715, 4729, 4745, 4763, 33069 + ], + "is-nan", + [0, 20937, 200, 20938, 6599, 20940, 2109, 20863, 14609, 20943], + "object-is", + [1, 2343, 13637], + [0, 13639, 13640, 13641, 34352], + "array-fill", + [0, 20948, 1437, 1707, 20949, 20951, 1997], + [0, 4255], + [0, 4051, 3383], + [1, 2343, 13643], + [0, 13644, 13645, 2514, 2523], + [0, 4864, 9129, 20959, 2151, 20960, 4648], + [0, 4874, 4039, 4384, 91], + [1, 2343, 13647], + [0, 0, 13640, 13649, 2523], + "fn.name", + [0, 2117, 1781, 3033, 20966, 4237, 3048, 3639], + [1, 2343, 13654], + "is-buffer", + "propget", + "pruddy-error", + [0, 13655, 13658, 13659, 2523], + [0, 1676, 1865, 2151, 1209, 4449], + "shouldjs", + "unit testing", + [0, 2899, 4039, 4255], + [0, 18503], + [1, 2343, 13661], + [0, 0, 13670, 13675, 2537], + [2, 1176, 3178], + [2, 1218, 5702], + [3, 1267, 18], + [2, 13664, 6836], + [3, 1955, 17], + "fer-arrow", + [2, 13666, 13667], + "native-", + [ + 0, 53, 78, 14167, 87, 20978, 4864, 4865, 5087, 11301, 4874, 19802, 1245, 1457, 1596, 2151, 2070, 1192, 1894, + 4039, 4042, 4045, 20981, 20983, 4075, 4072, 4468, 4474, 4484, 91 + ], + "promise-only", + [2, 13669, 13671], + [3, 4064, 15], + [2, 13673, 2306], + [0, 5284, 9302, 9026, 1666, 6901, 3811, 20986], + "jstz", + [1, 2343, 19602], + [0, 20991, 1437, 2087, 2727, 2983, 3368, 15245, 3741, 4135, 4247, 20992, 13914], + [0, 1429, 1596, 1177, 2759, 20995, 2899, 3697, 3752, 4193], + [3, 8155, 10], + [0, 20997, 20998, 8891, 20999, 2978, 4166, 16159, 21000, 3005, 12804, 21003, 21004, 2703, 6599, 14692], + "listen", + [1, 2343, 13684], + [0, 0, 0, 13685, 2537], + [0, 13326, 200, 20052, 17180, 2124, 3497, 998, 6591, 4354, 16790, 5284, 676, 21009], + [1, 2343, 13690], + [2, 13689, 25388], + "then-sleep", + [3, 20626, 11], + [0, 13691, 13692, 13699, 2443], + [0, 6372, 21020, 21016, 3561, 4383], + [ + 0, 53, 87, 6371, 28962, 28963, 1009, 1011, 1165, 1195, 1587, 1593, 1610, 1628, 1630, 1637, 1177, 1895, 1955, + 21023, 2092, 12278, 3177, 3400, 1894, 21024, 9348, 4172, 4230, 4307, 4409, 4469, 91, 2924, 4677, 4681, 21026, + 4749 + ], + [2, 54, 202], + "@pika/pack", + "pika-plugin-build-web-babel", + [3, 13695, 12], + "ts-types", + [2, 13696, 13697], + [ + 0, 2128, 91, 5284, 2924, 1936, 1623, 12951, 21028, 4380, 21029, 21031, 21033, 21034, 21036, 21029, 21037, 21038, + 21039, 21040, 21042, 21044, 21047, 21050, 21052, 21054, 21057, 21060, 1177, 1894, 17526, 1999, 5811 + ], + [1, 2343, 13701], + [0, 13702, 13703, 13704, 2537], + [0, 1149, 4707], + [0, 3421, 1776, 2899, 4170], + [0, 21067], + "ttc", + [1, 2343, 13707], + [0, 13708, 13710, 13714, 2537], + [0, 21072, 2081], + "libnpx", + [ + 0, 53, 1195, 18228, 1700, 2323, 2338, 2396, 2409, 2494, 2541, 2700, 1192, 2780, 3427, 89, 21074, 3824, 4603, + 2924, 18237 + ], + "node-cleanup", + [2, 3382, 6698], + [2, 2103, 9478], + [0, 2130, 89, 3497, 21077], + [1, 2343, 13717], + "audit", + [0, 0, 13718, 13719, 2537], + [0, 1537, 1177, 2026, 21082, 2899, 3421], + [0, 27, 2671, 1002, 7436, 5576, 7426, 6435], + [1, 2343, 13724], + "parse-", + [3, 9577, 10], + [2, 13721, 13722], + [0, 0, 0, 13726, 34352], + [2, 1199, 4037], + [0, 2414, 7176, 8220, 1017, 2414, 1367], + [1, 2343, 13731], + "automatic", + [3, 1446, 9], + "commits", + [0, 13732, 13733, 2514, 2443], + [0, 18986], + [0, 5517, 13614, 23237, 27570, 19325, 1159, 1177, 3410, 3421, 4389], + [1, 2343, 13737], + "detect", + "detective", + [0, 13740, 13741, 13742, 2443], + "detective-es6", + "sync-exec", + [0, 1149, 21097, 1496, 21098, 1512, 3188, 4709, 21099, 21100, 3722, 1543, 2015, 3427, 21102], + [0, 1429, 4616, 2899, 1177, 3220, 21104, 705, 1894, 21106, 1895, 1955], + [0, 200, 21110, 21111, 2041], + [1, 2343, 13744], + [0, 13745, 13747, 13748, 4139], + [0, 51, 1437, 1457, 1595, 1699, 2151, 3144, 3181, 21118, 4121, 4135, 4388], + "fraction.js", + [ + 0, 5467, 16607, 21120, 6065, 16608, 16612, 19861, 21122, 4864, 5087, 8818, 9129, 6541, 4874, 20959, 5254, 1009, + 1011, 1529, 1610, 1177, 1938, 1954, 1955, 10619, 2675, 1192, 21124, 2784, 2845, 21125, 2990, 3203, 1894, 4039, + 4131, 4294, 4468, 91, 2924 + ], + [0, 2924, 1932, 91, 21127, 4469, 2924, 20050, 2062], + [1, 2343, 13750], + [0, 13751, 13752, 13761, 2523], + [0, 13922, 1437, 1457, 1209, 3170, 3181, 814, 4388], + [ + 0, 21134, 16933, 4870, 8778, 9129, 4874, 5251, 4891, 1429, 1628, 1177, 2675, 2759, 2990, 2899, 3203, 3210, 1894, + 4039, 4193, 4469, 4487, 4490, 91, 188, 4629, 4634, 4645, 2924 + ], + "@vercel/nft", + "arrgv", + "site", + "sites", + "callsites", + "cbor", + "chunkd", + "ci-parallel-vars", + [0, 2924, 1932, 91, 998, 16790, 9654, 20050, 2062, 6887, 4469, 1167, 21136, 1464], + [1, 2343, 13766], + "code-excerpt", + "path-prefix", + [2, 9480, 13764], + [0, 13776, 13779, 2514, 2487], + "concordance", + "curr", + "ently-unhandled", + [2, 13768, 13769], + "emitter", + "emittery", + "ignore-", + "by-default", + [2, 13773, 13774], + [0, 21141, 21144, 13917, 2571, 3173], + "matcher", + [2, 9477, 1541], + [ + 0, 13614, 1159, 1389, 21146, 1596, 1615, 1177, 21147, 21148, 2141, 2708, 21152, 2759, 26259, 21153, 14133, 3697, + 3758, 705, 4039, 4135, 4389 + ], + "resolve-cwd", + [2, 4250, 594], + [1, 2343, 13783], + [0, 13785, 13787, 13790, 2537], + "supertap", + [0, 3441, 21158, 24987], + "temp-dir", + [0, 2934, 3421, 1192, 1177, 4042, 2026, 1894, 4342, 21163, 1938, 5328, 1895, 1955, 811, 21165, 1881, 816, 21161], + [3, 5328, 14], + [2, 13788, 2190], + [0, 15237, 1669, 2382, 3767, 21167, 1781, 21168, 2090], + "🦄", + [3, 1540, 10], + "yield", + [1, 2343, 13797], + "observable", + "observables", + [0, 13798, 13799, 13800, 34352], + [0, 5540, 1699, 2609, 1209, 3021, 21174, 21175, 4484], + [0, 972, 4870, 4880, 4883, 11322, 21179, 89, 3824, 21180, 91, 6482], + [0, 2144, 1669, 25, 89, 3824, 582, 21182, 7020, 21185, 7020, 21188, 21189], + [1, 2343, 13803], + "webpack-log", + [0, 0, 13806, 13807, 2487], + [2, 3599, 1469], + "ps-node", + [0, 2899, 1177, 2759, 1317, 1311, 1954, 1938, 1958, 1903, 1948, 1970], + [0, 2145, 27, 21195, 2325], + [1, 2343, 13809], + [0, 13810, 13813, 13815, 2537], + [0, 1437, 6473, 4290], + "ieee754", + "jmespath", + [0, 1175, 1178, 1195, 1225, 1268, 1177, 1916, 2022, 1192, 3150, 2924], + "vector", + [0, 17460, 2656, 2924, 1932], + "test-vectors", + [2, 13549, 13816], + "insert-module-globals", + [1, 2343, 13820], + [0, 13821, 13822, 13823, 2537], + [0, 2822], + [0, 1377, 21210, 1596, 2759, 4255, 4389, 4770], + [0, 4745, 21214, 21216], + "memoizee", + "@deque/dot", + [1, 2343, 13844], + "colorjs.io", + "-regex", + "emoji-regex", + "abel", + "grunt-babel", + "revalidator", + "sri-toolbox", + [2, 4149, 1852], + "ytesize", + [2, 2237, 13835], + [2, 6654, 3733], + [2, 1463, 13589], + [2, 1632, 3679], + [3, 8654, 10], + "webdriverjs", + [2, 13840, 13841], + "browser-", + [0, 13845, 13851, 13853, 4139], + [0, 2215, 2859, 21224], + [3, 1566, 14], + "ommits-parser", + [2, 13846, 13847], + "-no-only", + [2, 1951, 13849], + [0, 21226, 13305, 3183, 2899, 3421, 3752, 21228, 4255], + "Accessibility", + [ + 0, 2150, 2090, 6771, 1585, 7204, 2473, 3188, 7148, 7149, 6899, 1781, 3917, 6033, 2473, 6865, 7293, 4453, 7147, + 2585, 6811, 7004, 1862 + ], + [1, 2343, 13855], + [0, 13856, 13858, 13861, 2537], + [0, 3181], + "proxy-", + [0, 4856, 4864, 6503, 4874, 1429, 2151, 2759, 2899, 3421, 1894, 3714, 21237, 4474, 91], + "from-env", + [2, 13857, 13859], + [0, 2150, 6771], + "multi-", + [1, 2343, 13877], + "entry", + "multi-entry", + [2, 812, 13865], + [2, 12621, 3733], + "dev-null", + "data-node", + [2, 1669, 13869], + [2, 11941, 12942], + [3, 6387, 14], + [2, 13872, 6662], + [2, 1160, 11052], + [2, 4049, 13874], + [3, 4048, 16], + [0, 13883, 13884, 13885, 2537], + "ndle-size", + [2, 13876, 13878], + [2, 6528, 3069], + [3, 13134, 15], + [2, 13881, 1149], + [0, 21243, 2151, 3261, 21246], + [0, 4864, 6507, 2899, 1863, 4085, 1362, 4706, 3760], + [0, 1862, 2150, 2090, 6771], + [1, 2343, 13887], + [0, 0, 13893, 13900, 2523], + [3, 1391, 11], + [2, 13888, 3171], + "edm-parser", + [2, 2842, 13890], + "md5.js", + [0, 640], + "batchflow", + "factor-bundle", + "ink-docstrap", + "karma-e", + "nv-preprocessor", + [2, 13897, 13898], + [0, 2154, 16718], + "storage", + [1, 2343, 13903], + [0, 13904, 13905, 2514, 2443], + [0, 3188, 4039, 2713, 2215], + [0, 4384, 4255], + [1, 2343, 13907], + [0, 13908, 0, 13910, 4139], + [0, 4740, 3923], + "output-", + [0, 2156, 5576, 16410], + [1, 2343, 13915], + "file-sync", + [2, 13909, 13912], + "v8flags", + [0, 0, 13916, 13918, 2523], + [0, 13614, 1158, 1159, 1177, 3421, 4103, 4389], + "es-set-tostringtag", + [0, 3046, 1213, 1925, 1460, 5746, 7298], + [1, 2343, 13926], + "babel-co", + "de-frame", + [2, 13920, 13921], + [3, 1184, 12], + [2, 13923, 591], + "babel-m", + [0, 0, 13929, 13931, 2537], + "essages", + [2, 13925, 13927], + [ + 0, 48, 53, 68, 78, 5712, 87, 92, 192, 5467, 21276, 5583, 816, 6373, 21279, 21280, 21281, 21285, 19464, 21287, + 21288, 1195, 1177, 1895, 2675, 21290, 1894, 4005, 4042, 4057, 4257, 4072, 91, 1984, 19469, 21294 + ], + [2, 1185, 5190], + [0, 2163, 7193, 21296], + [1, 2343, 13933], + [0, 0, 13934, 13935, 2443], + [0, 19344, 5366, 1009, 1011, 842, 1317, 1177, 1903, 1915, 1938, 1953, 1958, 2675, 4493], + [0, 17218, 5122, 27, 36, 21302, 5995, 5130], + [2, 1884, 1172], + [1, 2343, 13938], + [0, 0, 0, 13939, 4139], + [0, 2163, 7193, 7131, 21307, 21309], + [1, 2343, 13941], + [0, 13943, 13944, 13945, 2487], + "trim-right", + [0, 21315], + [0, 1149, 2228, 21317, 2240, 2273, 2277, 4039, 1899], + [0, 2282, 2070], + [1, 2343, 13947], + [0, 0, 13949, 2514, 2487], + "try-resolve", + [0, 91, 4874], + [1, 2343, 13951], + [0, 13952, 13953, 13954, 2523], + [0, 1437, 4761, 4716, 4756], + [0, 2228, 2239, 21329, 21328, 3006, 4547, 2273, 2290], + [0, 4756, 8632, 5130, 4627, 6400, 1896, 1098], + [1, 2343, 13956], + [0, 13957, 13958, 13959, 2523], + [0, 1437, 4207, 4761, 1209, 16442, 4756, 4547], + [0, 3261, 1797, 1429, 1370, 2899, 4193, 1177, 3188, 1362, 2759, 1525, 4196, 1615, 2820, 1431, 3938, 3202], + [ + 0, 4756, 1098, 2323, 21337, 21339, 1367, 1103, 21340, 2278, 695, 5194, 1172, 21341, 91, 1509, 2437, 5357, 2924, + 1177 + ], + [1, 2343, 13962], + [2, 1262, 1192], + [0, 13963, 13964, 13965, 2537], + [0, 2212, 2070, 4761, 1541, 1209, 1474, 21350, 21348, 4756], + [0, 1797, 1177, 2765, 2151, 21329, 21328, 1938, 21352], + [0, 4756, 8632, 4967, 1896, 2171, 4627, 13017, 21354], + [1, 2343, 13967], + [0, 0, 13968, 13969, 2523], + [0, 4874, 1177, 1895, 1955, 1958, 1894, 4384, 91], + [0, 4446, 21360, 6925], + [3, 13725, 15], + [1, 2343, 13972], + [0, 0, 13973, 13974, 2399], + [0, 5536, 4874, 16480, 26265, 1894, 4172, 21365, 91, 1984], + [0, 5701, 1179, 7253, 21367, 21369, 6564, 3053, 6695], + [1, 2343, 13976], + [0, 0, 13977, 2514, 2443], + [ + 0, 48, 53, 87, 92, 6061, 6063, 16608, 5087, 4874, 1009, 1011, 21377, 21380, 1178, 1193, 1195, 19254, 1177, 1895, + 1915, 1922, 1938, 1955, 1959, 1961, 1966, 1982, 2675, 21385, 1192, 2990, 1894, 4039, 4131, 21388, 91, 2924, 4677 + ], + [1, 2343, 13979], + [0, 0, 13986, 2514, 2537], + [3, 1235, 24], + "xport-extensions", + [2, 13980, 13981], + [2, 1262, 3696], + [3, 1566, 13], + [2, 13984, 2289], + [0, 21393, 21395, 21396, 21397, 3421], + ".exports", + [2, 1237, 13987], + [1, 2343, 13990], + [0, 0, 8002, 13991, 2523], + [0, 1709, 2100, 139, 3560, 6058, 21402, 21404, 1544, 3445, 11995, 21405, 20529, 3778, 21406, 21407], + [1, 2343, 13993], + [0, 0, 13999, 14001, 2537], + "-js-shims", + [2, 1259, 13994], + "place-", + [2, 13996, 3427], + [2, 1252, 13997], + [0, 4874, 1702, 1906], + "dynamic", + [0, 21413, 2184, 20061, 5614, 1398, 3101, 3729, 3917], + [1, 2343, 14003], + [0, 14004, 14005, 14006, 34352], + [0, 21418, 2753], + [0, 4874, 1166, 21420, 21423, 20925, 4481, 1906], + [0, 3038, 3101, 1862, 5614, 1871, 2585, 1398, 3917, 2382, 6613, 7017, 7255, 3048, 5614], + [1, 2343, 14008], + [0, 14009, 0, 14010, 2537], + [0, 21430], + [0, 2191, 3038, 91, 2190, 21432], + "@umijs/test", + [2, 1262, 12445], + [3, 3909, 10], + [2, 14013, 5403], + [1, 2343, 14016], + [0, 0, 14017, 14018, 2523], + [0, 4874, 1009, 1011, 17930, 1177, 21439, 1895, 1955, 17931, 21442, 1894, 17934, 4508, 91, 17936], + [0, 21444, 21447, 21450, 21452, 21455, 21456, 2192, 21457, 21458, 16718, 21459, 202, 5490, 553, 91], + [1, 2343, 14026], + "nyc-config", + [2, 3614, 14020], + [2, 8696, 14021], + "instrument", + [2, 11936, 14023], + [2, 1382, 6521], + [0, 14028, 14030, 14031, 4139], + "pmock", + [0, 1149, 2205, 2151, 1525, 18145, 2102, 21466], + [2, 14023, 5218], + [0, 4449, 1429, 2899, 4193, 1177, 21468, 21470], + [0, 3358, 2193, 2195], + [1, 2343, 14033], + [0, 14036, 14043, 14046, 2523], + [2, 9477, 1213], + [2, 4013, 14034], + [0, 7076, 10420, 21476, 21477, 3505, 16142], + "-bind", + [2, 3046, 14037], + [2, 69, 14038], + [3, 8232, 20], + [2, 14040, 6859], + [2, 5316, 7162], + [ + 0, 1178, 1429, 21480, 1503, 1527, 1652, 1177, 21482, 1922, 1938, 1951, 2899, 3203, 3421, 3752, 4131, 4193, 4196, + 21486, 4585 + ], + "ompat", + "lodash-compat", + [0, 3358, 582, 1564], + "cherry-pick", + [1, 2343, 14049], + [0, 0, 14050, 14051, 4139], + [ + 0, 13693, 87, 21495, 21498, 21499, 8850, 816, 6373, 10615, 10895, 1429, 1177, 1903, 1938, 1954, 1958, 2297, + 2878, 2881, 2886, 2895, 2900, 2904, 2910, 2912, 2918, 18260, 2899, 4042, 6390, 2278, 4193, 4196 + ], + [0, 2195, 10039, 4967, 4627], + [2, 13920, 686], + [2, 2103, 14052], + [1, 2343, 14055], + [0, 14058, 14060, 2514, 2537], + "resolver", + "rename", + [0, 3181, 21505, 21507], + "mapping", + [0, 4874, 668, 3144, 3188, 1894, 4039, 4384, 4483, 4508], + [1, 2343, 14062], + [0, 14063, 14066, 14067, 34352], + [0, 2743], + "ester", + [2, 12187, 14064], + [0, 1177, 1889, 2022, 2899, 3421], + [0, 2070, 5933, 4301, 3403, 21519, 7204, 1299, 21520], + [1, 2343, 14069], + [0, 14070, 9264, 2514, 4139], + [0, 21526, 3729], + [1, 2343, 14072], + [0, 0, 14073, 14074, 2537], + [0, 22839, 1166, 1448, 1939, 2182, 26260, 17269, 3401, 3471, 3758, 4167, 4481, 4507, 1906], + [0, 2203, 2202, 7014, 6436, 6437, 2272, 1177, 6640], + [1, 2343, 14081], + "remap-", + [2, 14076, 1223], + [2, 1185, 14077], + [3, 13663, 26], + [2, 14079, 5746], + [0, 14082, 14083, 14084, 4139], + [0, 20033, 2071, 2687, 17450, 4207, 20789], + [0, 4874, 1166, 1317, 21539, 4400, 4481, 1906], + [ + 0, 12101, 4552, 17455, 18132, 1586, 17462, 7131, 2100, 21541, 17453, 2150, 2070, 21543, 21544, 17461, 3529, + 13777, 3181, 3250, 15294, 18104, 13017, 11601, 100, 614, 6435, 21520, 21545, 1862, 16774, 3358 + ], + [3, 1184, 14], + [2, 14085, 5789], + [2, 1218, 1229], + [1, 2343, 14089], + [0, 14090, 14091, 14094, 2443], + [0, 1676, 1615, 21552, 21550], + [0, 1149], + [3, 1217, 21], + [2, 14092, 5610], + [0, 11812, 21555, 158, 21556, 2692, 2206, 6270, 17539, 3797], + [1, 2343, 14096], + [0, 14097, 14098, 14100, 2537], + [0, 3310, 14231, 4484], + [0, 4874, 5542, 1009, 1011, 1177, 21564, 1938, 1953, 1958, 1894, 4508, 91], + "chunk-data", + [ + 0, 21566, 21567, 21568, 15473, 17623, 21571, 5194, 10906, 2207, 21572, 21573, 14692, 21574, 6355, 21576, 21577, + 21578, 21579, 21580, 21581, 21582, 21583, 5995, 21584, 21585, 21586, 21587 + ], + [1, 2343, 14102], + [0, 14103, 14105, 14108, 34352], + [0, 16485, 21668], + "strict-", + [0, 107, 4874, 1009, 1011, 21594, 1177, 1881, 1883, 1938, 21597, 20917, 3297, 1531, 91, 15822, 1984], + "strict-mode", + [2, 1226, 14106], + [0, 21600, 21603, 1885, 21604, 21599, 21605, 21606, 5592, 2211, 21607, 21608, 21611], + [2, 1218, 77], + [1, 2343, 14111], + [0, 14112, 14113, 14114, 4139], + [0, 20917, 21616], + [ + 0, 21619, 6503, 21620, 21621, 4874, 21623, 15600, 9725, 11305, 6513, 6520, 21625, 21626, 1414, 1503, 1610, 2020, + 20914, 2321, 21627, 1776, 29342, 29343, 21630, 2899, 15221, 3275, 3297, 3416, 3445, 3479, 6332, 1894, 3752, + 4039, 4153, 4193, 4449, 91, 4748 + ], + [0, 1885, 5592, 21632, 5576, 21633], + [1, 2343, 14116], + [0, 14117, 14118, 14119, 2523], + [0, 21642, 21651, 21645, 21647, 21650, 21649, 16511, 2928, 21641, 21638, 21639, 4507], + [ + 0, 21662, 13789, 826, 5366, 6494, 4874, 21654, 14731, 16936, 6513, 6515, 1166, 1170, 1317, 1362, 1364, 1414, + 14099, 21656, 21663, 1701, 1702, 2024, 2026, 2139, 13870, 2188, 3297, 3310, 3377, 3477, 21653, 3532, 29457, + 3923, 705, 4193, 21657, 4400, 21659, 4454, 4494, 91, 1906 + ], + [ + 0, 27, 2671, 13333, 3038, 2212, 1002, 12831, 705, 2869, 7085, 7289, 1612, 11995, 11996, 16518, 21665, 27778, + 27408, 21666, 21667, 1170, 4339, 3310, 21668 + ], + [1, 2343, 14124], + "-react-jsx", + [2, 9381, 14121], + [2, 1185, 14122], + [0, 0, 14125, 14126, 2537], + [ + 0, 2323, 4207, 4042, 1637, 3471, 3561, 21689, 21681, 3416, 3758, 4320, 53, 1165, 3678, 2650, 21688, 87, 21684, + 21679, 5583, 10615, 6373, 16912 + ], + [0, 21691, 4967, 9204, 1283], + [1, 2343, 14134], + [2, 88, 2124], + [3, 3872, 10], + [2, 14129, 553], + [2, 5237, 14130], + [2, 1199, 14131], + "pkgfiles", + [0, 0, 14135, 14136, 2537], + [0, 2702, 3188, 4039, 4384], + [0, 2150, 1237, 21697, 1153, 21699, 3768, 1851, 2656, 6737, 21700, 21701, 21702, 21703, 21704], + "minification", + [1, 2343, 14140], + "propTypes", + [0, 0, 0, 14141, 4139], + [0, 2220, 21715], + [1, 2343, 14143], + [0, 2513, 14146, 2514, 2523], + [3, 3957, 12], + [2, 14144, 353], + [0, 4856, 6503, 4874, 1429, 2220, 2899, 4039, 4042, 4071, 4232, 21721, 91], + [1, 2343, 14148], + [0, 14149, 0, 2514, 34352], + [0, 5528, 4484], + [1, 2343, 14151], + [0, 14152, 14153, 14154, 4139], + [0, 2822, 20273, 21731, 21732], + [0, 21734, 20269, 1509, 21735, 2053, 2149, 2398, 3183, 2899, 4452, 4597, 6033], + [ + 0, 21738, 1507, 1506, 2382, 1739, 1745, 7682, 21740, 4965, 2149, 9339, 8623, 1179, 2193, 12981, 5284, 5352, 676, + 6671, 1783, 9338, 1644, 57, 7119, 13755, 2947, 1283, 4452, 4745, 7651 + ], + [1, 2343, 14156], + [0, 14165, 14171, 2514, 34352], + "numer", + "ic-separator", + [2, 14157, 14158], + [2, 69, 14159], + [3, 5835, 33], + "mutators", + [2, 14161, 14162], + [3, 10720, 33], + [0, 14393, 21746, 3025, 10420, 3263, 3747], + "atch-binding", + [2, 14164, 14166], + [3, 14160, 25], + "llish-coalescing-operator", + [2, 14168, 14169], + [0, 1364, 21748, 2026, 21749, 2759, 1209, 3183, 3313, 21752], + [1, 2343, 14173], + [0, 14174, 14175, 14176, 2443], + [0, 2021, 2070, 3368, 2822, 2240, 3181, 1672, 2685, 2107, 2015, 21761, 21763, 21759], + [0, 21765, 4431, 21770, 2291, 21768, 2283, 2277], + [0, 5957, 1149, 200, 3178, 2280, 6147, 1209, 2275, 1973, 2907, 2276, 36, 21772, 8632, 7048, 2763, 4990], + [3, 9676, 14], + "heck-", + "es2015-", + "constant", + "constants", + [2, 14179, 14181], + [2, 14178, 14182], + [2, 14177, 14183], + "function-", + "comma", + "commas", + [2, 14185, 14187], + [2, 10038, 14188], + [2, 7174, 14189], + [2, 1218, 14190], + [2, 1236, 5742], + [3, 1235, 40], + "ed-functions", + [2, 14193, 14194], + [2, 1236, 5256], + [3, 14196, 31], + [2, 14197, 5763], + [2, 1236, 5765], + [3, 14199, 31], + [2, 14200, 5770], + [1, 2343, 14225], + "for-of", + [2, 1236, 14203], + [3, 14204, 31], + [2, 14205, 5789], + [2, 1236, 5796], + [3, 1240, 38], + [2, 14208, 5808], + [2, 14208, 4376], + [2, 14208, 5811], + [2, 3425, 4340], + [2, 1236, 14212], + [2, 1236, 5639], + [2, 1236, 5845], + [3, 14215, 31], + [2, 14216, 5849], + [2, 14216, 5851], + [3, 1244, 31], + [2, 14219, 5855], + [2, 5857, 1108], + [2, 1236, 14221], + [3, 13982, 27], + [2, 14223, 5780], + [0, 14228, 14229, 14230, 2523], + "to-chromium", + [2, 1807, 14226], + [0, 2633], + [0, 2228, 2240, 2263, 2247, 2253, 2273, 2277, 2281, 2320, 2258], + [0, 21779, 1098, 1283, 5354, 5614], + "gfsl", + [1, 2343, 14233], + [0, 0, 14234, 14235, 2537], + [0, 2228, 2307, 2239, 2316, 1429], + [0, 21779], + [1, 2343, 14244], + [2, 1262, 2124], + [2, 1249, 5878], + "-source", + [2, 1248, 14239], + [3, 14240, 34], + "elf", + [2, 14241, 14242], + [0, 14245, 14246, 14247, 34352], + [0, 1149, 1389, 21791, 2070, 1209, 814, 4650], + [0, 2228, 2240, 2247, 2273, 2899, 4193], + [0, 21779, 1389, 2228], + [3, 5700, 31], + [2, 14248, 3164], + [1, 2343, 14251], + [0, 14252, 14253, 14235, 2487], + [0, 4135], + [0, 2228, 2234, 2247, 2273, 2277, 2285, 2307, 3006], + [3, 1233, 24], + "o-expressions", + [2, 14254, 14255], + [2, 1226, 14038], + [1, 2343, 14259], + [0, 14260, 14261, 2514, 2537], + [0, 3368, 21804, 13914, 2727, 21759], + [0, 2228, 2273], + [3, 1230, 29], + "or-call", + [2, 13565, 14263], + [2, 14262, 14264], + [1, 2343, 14267], + [0, 14268, 14269, 14271, 2523], + [0, 1149, 1144, 21810, 2709], + [0, 1906, 2228, 3363, 2240, 1615, 3505, 21814, 4351, 2316, 2247, 2283], + [3, 1233, 33], + [0, 21779, 13792, 12804, 21820, 6707, 6887, 3514, 6681, 2062, 21821], + [1, 2343, 14273], + [0, 14274, 14277, 14278, 2399], + [0, 1149, 4039], + [3, 1225, 29], + [2, 14275, 5747], + [0, 2228, 21468, 2273, 2271, 2277], + [0, 21779, 4050, 4051, 7293, 6865, 1700, 6790, 17459, 4039], + [1, 2343, 14280], + [0, 14281, 14283, 14284, 4139], + [0, 1149, 21834, 1664, 21420, 4449, 4707], + "home-or-tmp", + [0, 2228, 2240, 2247, 2271, 2273, 2277, 2314], + [0, 21779, 21837, 4329, 2278, 1623, 7234, 7121, 590], + [1, 2343, 14286], + [0, 14287, 14288, 14235, 2537], + [0, 1437, 4227], + [0, 2228, 2247, 2273, 2271, 2277], + [1, 2343, 14290], + [0, 14291, 14292, 14293, 2537], + [0, 3445, 1149, 3237, 1544, 13399, 4150, 4151, 16511, 21847], + [0, 2228, 2273, 2271, 2277], + [0, 21779, 36, 1544, 27], + [1, 2343, 14295], + [0, 14296, 14297, 14235, 2537], + [0, 1437, 21855], + [0, 2228, 2240, 2247, 2271, 2273, 2277], + [1, 2343, 14299], + [0, 14300, 14302, 14303, 2523], + [0, 1437, 21861, 1209, 4300], + "esutils", + [0, 2228, 2247, 2271, 2273, 2277], + [0, 21779, 1623, 671, 21861], + [1, 2343, 14305], + [0, 14306, 14302, 14312, 4139], + [0, 1437, 1462, 21867], + "nv-inline", + [2, 4690, 14307], + [2, 1226, 14308], + "zipobject", + [2, 3024, 14310], + [0, 21779, 21869, 1623, 590, 592, 5376, 3178, 15215], + [1, 2343, 14314], + [0, 14315, 14288, 14321, 2537], + [0, 1437, 3714, 2633], + [3, 14257, 24], + [2, 9428, 5238], + [2, 14316, 14317], + "9.0.0", + [2, 5857, 14319], + [0, 21779, 1936, 2262, 3178, 15215, 6707], + [1, 2343, 14323], + [0, 14324, 14325, 14326, 4139], + [0, 1437, 2267, 3478, 3545, 3714, 18045, 18047, 18050, 18051], + [0, 1166, 1701, 2228, 1906], + [0, 21779, 15215, 20639, 158, 11807, 21881, 20637, 3178, 18048, 8221], + [1, 2343, 14328], + [0, 14329, 14261, 2514, 2523], + [0, 17523], + [1, 2343, 14331], + [0, 14332, 14335, 14235, 4139], + [0, 1437, 21890, 2272], + "@purtuga/esm-webpack-plugin", + [2, 4807, 1155], + [0, 2228, 2271, 2277], + "browserstack", + [2, 13283, 14336], + [2, 13283, 3199], + "otpauth", + [1, 2343, 14341], + [0, 14342, 14345, 14235, 2487], + [0, 695, 1149, 1437, 1209], + "-as-a-service", + [2, 5995, 14343], + [0, 2228, 2247, 2273, 21898, 2271, 2277], + [1, 2343, 14347], + [0, 14348, 14349, 14350, 2487], + [0, 21903], + [0, 2228, 2247, 2271, 2273, 4384], + [0, 21779, 2276, 1973, 8791], + [1, 2343, 14353], + [2, 2235, 1283], + [0, 14358, 14302, 14359, 4139], + "codec", + "decoder", + "encoder", + "base64", + [0, 1149, 1437, 1615, 1664, 4707], + [0, 21779, 4329, 2278, 1623, 7234, 7121, 590], + [1, 2343, 14361], + [0, 14362, 14288, 14235, 2537], + [0, 1437, 21867, 21915, 4535], + [1, 2343, 14364], + [0, 14365, 14366, 14367, 2487], + [0, 2164, 1149, 1209, 4438], + [0, 2228, 2240, 2293, 4547, 2273, 2271, 2277], + [0, 21779, 2282, 3000], + [1, 2343, 14369], + [0, 14370, 14371, 14376, 2537], + [0, 1437, 1537, 1566, 3545, 3760], + [0, 2228, 2239, 2240, 2247, 2258, 2273, 2277, 2290, 21929, 21930, 2293, 2307, 3006], + "basic", + "orization", + [2, 1303, 14373], + "basicauth", + [0, 2228, 21779, 1566, 16094, 13729, 3073], + [1, 2343, 14378], + [0, 14379, 14381, 14382, 2399], + [0, 1437, 13985, 3545], + [2, 6915, 5697], + [0, 2228, 2239, 2240, 2247, 2273, 2277, 21929, 21942, 21930, 2293, 2307, 3006], + [0, 2228, 21779, 13985, 2195, 21944, 3979, 21945, 1566, 16094, 13729, 3073], + [1, 2343, 14384], + [0, 14385, 14389, 14390, 2523], + [0, 1437, 1177], + "tructure", + "ministructure", + "orange sms", + [0, 442, 2228, 2240, 2314], + [0, 21779, 1177, 671, 2649, 11937], + [1, 2343, 14392], + [0, 14394, 14395, 14396, 2537], + "@mapbox/node-pre-gyp", + [0, 21890, 2292, 1209, 21956], + [0, 2228, 2273, 2277, 3006, 4436], + [0, 21779, 2292, 19271, 16790], + [1, 2343, 14398], + [0, 14399, 14400, 14401, 4139], + [0, 1615, 1776], + [0, 2228, 2247, 2277, 2291, 13896, 3006], + [0, 21779, 2228, 1745, 2295, 1776, 18011], + [1, 2343, 14403], + [0, 6203, 14409, 14410, 2443], + "utfx", + "testjs", + "metascript", + "closure", + [2, 14407, 4643], + [ + 0, 192, 21970, 5467, 6061, 6063, 16608, 1177, 1903, 1938, 1954, 1958, 1970, 2025, 2228, 2239, 2283, 2285, 2290, + 2291, 2307, 2675, 2297, 2881, 2895, 2900, 3006, 2899, 4131 + ], + [0, 21779, 2297, 2228, 1973, 2275, 8791, 21972], + [1, 2343, 14412], + [0, 14414, 14415, 14420, 2399], + "pomelo-logger", + [0, 21890, 3188], + [0, 1429, 1506, 2228, 2240, 21980, 2247, 2258, 2273, 21929, 21982, 21930, 21984, 2899, 4039], + "di", + "IoC", + "AOP", + "injection", + [0, 21779, 2899, 1973], + "consistent", + "hot reload", + [2, 6399, 5995], + [1, 2343, 14434], + "able codes", + [2, 6578, 14425], + [3, 7191, 11], + [2, 14427, 14419], + "hronous script loading", + [2, 1149, 14429], + "magic", + ", self-described javaScript objects", + [2, 14431, 14432], + [0, 14274, 14435, 14436, 2399], + [0, 1429, 2228, 21991, 2240, 2247, 2273, 2283, 3203, 4449, 4727], + [0, 1586, 2228, 21779, 2301], + [1, 2343, 14439], + "beautify", + [0, 14440, 14441, 14442, 2443], + [0, 4135, 6472, 4707], + [0, 1429, 2240, 2273, 2283, 2300, 22000, 22002, 3006, 2899, 3752, 4436], + [0, 21779, 9044, 22005, 15844, 22008, 22009, 6667, 22011, 1851, 4649, 13728], + "art-near-room-catch", + "blanket-line", + "born-greatly-explain3", + "bring-water-silence", + "brush-bigger-afternoon0", + "e-meet-war", + [2, 11308, 14448], + [2, 6922, 14449], + "compare-", + "breeze-mad2", + [2, 14451, 14452], + "did-", + "strai", + "ght-sister-sail", + [2, 14455, 14456], + [2, 14454, 14457], + "excitement-tonight-dead", + "gain-pleasant-prepare", + "industrial-public-immediately-until", + "is-str", + "aight-web3-attack", + [2, 14462, 14463], + "known-", + "wet-thirty-gave", + [2, 14465, 14466], + "-private-thee6", + [2, 13682, 14468], + [1, 2343, 14493], + "mainly-cent", + "ain-quarter-sit8", + [2, 2944, 14472], + "mouse-bat-web3-present", + "need", + "s-supper-anything", + [2, 14475, 14476], + "percent-impossible-score", + "rocket-location-calm-valley", + "seldom-fire-web3-running", + "shad", + "e-swim-shells1", + [2, 14481, 14482], + "spider-melted-chemical", + "stre", + "tch-onto-driver7", + [2, 14485, 14486], + "dream-supply5", + [2, 11072, 14488], + "-invented-girl-jungle", + [2, 4990, 14490], + "we-hunt-process", + [0, 0, 14494, 2514, 2399], + [0, 2228, 2239], + "automobile7", + [2, 4654, 14495], + "whether-dangerous", + [1, 2343, 14499], + [0, 0, 14500, 14501, 2523], + [0, 2228, 2240, 2247, 2277, 2278, 1906], + [0, 21779, 1623, 2278, 4329, 590, 7234, 4358, 22022], + "ansicolors", + "global-", + [2, 14503, 6666], + [2, 2103, 14504], + [2, 2687, 11601], + [3, 5510, 9], + [2, 14507, 3101], + "script-", + "inject", + "injector", + [2, 14509, 14511], + [1, 2343, 14516], + "dotpathlookup", + "jsl", + [0, 14519, 14520, 14521, 2537], + "httpserver", + [2, 2869, 14517], + [0, 1512, 1209, 3760, 22027, 22031, 12826], + [0, 2228, 2256, 2273, 2283, 2293, 22035, 3003, 1698, 20001], + [0, 21779, 2228, 12826, 1973, 2765, 2899, 2907, 22037], + [1, 2343, 14523], + [0, 14524, 14525, 14526, 2443], + [0, 1437, 3404, 4294], + [0, 2228, 2240, 1906], + [0, 21779, 4166, 1523, 8429, 2978, 1614, 1451, 3729, 200], + "docdown", + [1, 2343, 14530], + "qunit-extras", + [0, 7923, 14531, 14420, 34352], + [0, 2228, 2273, 2899], + [1, 2343, 14533], + [0, 14534, 14535, 14536, 2443], + [0, 1149, 22054, 22057, 4545, 22058], + [0, 1177, 22062, 22064, 22066, 22068, 22071, 22072, 2228, 2240, 2302, 2899, 4039, 4165], + [0, 2228, 21779, 22074, 158, 22075, 1623, 22057, 16697], + [1, 2343, 14538], + [0, 14539, 14540, 14541, 2537], + [0, 1437, 1676, 1209, 3505], + [0, 2228, 3188, 4039, 2240, 2293, 22081, 2273], + [0, 21779, 2319, 8635, 1936, 1623, 6707], + [1, 2343, 14543], + [0, 14549, 14551, 14565, 2523], + "@beyond-js/specifier-parser", + [3, 14544, 11], + [2, 14545, 2150], + "bee", + [2, 14545, 14547], + [0, 442, 1009, 1011, 1437, 1177, 1895, 1953, 1955, 2020, 2720, 2856, 3157, 3275, 1894, 4523, 4728], + "tml", + [ + 0, 22088, 21122, 5601, 4864, 4866, 22089, 6503, 21621, 4874, 6513, 6520, 22092, 1414, 1615, 2151, 22093, 21627, + 2899, 4193, 4449, 91 + ], + "ansi-to-html", + "concat-", + "maps", + "-sourcemaps", + [2, 5056, 14555], + [2, 14553, 14556], + "json-format", + [3, 6477, 9], + "ackage-", + "ackage-path", + [2, 14559, 14561], + "uimport", + [2, 14503, 5260], + [0, 91, 9654, 4525, 1885], + "universal", + " javascript", + [2, 14566, 14567], + "universal ", + [2, 14569, 91], + [3, 2758, 10], + [2, 14571, 14567], + [3, 14572, 11], + [2, 14573, 91], + "sigle page", + "spa", + "modul", + "ar development", + [2, 14577, 14578], + [3, 11615, 13], + " frontend", + [2, 3166, 14581], + "micros", + [2, 14583, 8920], + "micro ", + "services", + [2, 14585, 14586], + "hot ", + " replacement", + [2, 1237, 14589], + [2, 14588, 14590], + "ssr", + " side rendering", + [2, 36, 14593], + " packager", + [2, 91, 14595], + "JAMStack", + [1, 2343, 14599], + [0, 0, 14610, 14611, 2523], + "real time", + [2, 7519, 5130], + "ssr react framework", + [2, 8589, 5130], + "ssr ", + [2, 14604, 14603], + " framework", + [2, 3709, 14606], + [2, 14604, 14607], + "websockets", + [0, 22099, 8719, 842, 16145, 22100, 5087, 4874, 22102, 9240, 1177, 1192, 3313, 1894, 4039, 4342, 91], + [0, 2322, 5122, 5130, 6710, 27, 5592, 5995], + [1, 2343, 14613], + [0, 14618, 14623, 14624, 2487], + "check-", + "check-types", + "hoopy", + "tryer", + [0, 22110, 21681, 22109, 4600], + "please-", + "release-me", + [2, 14619, 14620], + "spooks", + [0, 1177, 1889, 1954, 2022, 3188, 2899, 3421, 4039], + [0, 6147, 3101, 623, 7048, 4990, 14932, 13441, 22114, 12804, 22115], + [1, 2343, 14627], + "streamify", + [0, 14630, 14631, 14632, 2537], + "serialise", + [3, 14430, 12], + [0, 2367, 22122, 2409, 2835, 3067, 3102, 19984, 4431], + [0, 4597], + [0, 18444, 2323, 1098, 12074, 6113, 22126, 22127], + [1, 2343, 14645], + "arbitrary", + "precision", + "arithmetic", + "big", + "decimal", + "float", + "biginteger", + "bigdecimal", + [3, 1325, 9], + "bigint", + "bignum", + [0, 14646, 14647, 14648, 2537], + [0, 18473, 692, 2012, 2390, 2494, 22133, 2543, 3188, 2072, 3730, 18528, 4039, 4135, 1241, 4597, 4600], + [0, 2348, 2899], + [0, 18444, 16179, 4166, 22137, 1804, 2195], + "uri-", + [1, 2343, 14653], + "uri-to-path", + [2, 2093, 14651], + [0, 14656, 14657, 14658, 2537], + "gyp", + "c++", + [0, 1165, 2476, 3561, 4606], + [0, 1166, 2510, 3477, 4597, 1906], + [0, 18444, 1165, 3561, 1623, 3665, 22145, 5376, 4358, 22147], + [1, 2343, 14661], + "@noble/hashes", + [0, 14662, 14663, 14664, 2537], + [0, 7709, 1104, 1443, 2061, 22153, 3173, 3544, 4597], + [0, 1429, 22157, 1177, 2323, 2494, 2899, 1894], + [0, 18444, 7200, 6949, 20001], + [1, 2343, 14668], + "@antv/", + [2, 14666, 4627], + [0, 14670, 0, 14677, 2537], + "@antv/g2", + [0, 22167, 22168, 2012, 3171, 3730, 3768, 22170, 4597, 4600, 4747], + "@antv/g2plot", + "@antv/util", + "@juggle/resize-observer", + "d3-color", + "conciler", + [2, 3877, 14675], + [0, 18444, 13531, 20614, 13901], + "data-", + "data-set", + [2, 14666, 14679], + [3, 87, 15], + [2, 14681, 1266], + "backgrounds", + [2, 10818, 14683], + [3, 10827, 19], + "fo", + [2, 14685, 14686], + "knobs", + [2, 10818, 14688], + "options", + [2, 10818, 14690], + "fabric", + "@umijs/fabric", + "@welldone-software/why-did-you-render", + "aphrodite", + [3, 13080, 20], + [2, 14696, 3897], + [2, 14696, 8221], + "bx-jest-electron", + [3, 4325, 12], + [2, 6996, 4408], + [2, 14700, 14701], + [1, 2343, 14704], + [0, 14716, 14722, 14724, 2487], + "-deploy", + [2, 7204, 14705], + [2, 10617, 14706], + [2, 5651, 2091], + "moment-", + "jalaali", + [2, 14709, 14710], + "react-wi", + "th-styles-interface-aphrodite", + [2, 14712, 14713], + [3, 14714, 28], + [0, 4431, 4002, 3544, 4606], + "mpiler", + "css-compiler", + [2, 14715, 14718], + "-diff", + [2, 8745, 14720], + [0, 1906, 2899, 4597, 3697, 53, 2510, 5761, 5756, 5743], + "g2", + [0, 18444, 1172, 5198, 6778, 7056, 7192, 22179, 22180, 5341, 5061, 22181, 5284, 4643], + [1, 2343, 14726], + [0, 14727, 14729, 14732, 2523], + [0, 2476], + [3, 4808, 10], + [0, 1166, 2323, 3477, 4597, 1906], + "dable-stream", + [2, 14728, 14730], + [0, 18444, 4295, 1412, 4327, 3126, 4577, 22188, 22189, 22190], + [1, 2343, 14734], + [0, 14735, 14737, 14740, 2537], + [0, 1104, 1370, 2061, 2720, 3544, 4431, 4597, 4647], + "bun-types", + [0, 1429, 2012, 22198, 2436, 2463, 2272, 2899, 4039, 4193, 4196, 4278], + "falafel", + "fore", + [0, 18444, 1370], + "foreach", + [1, 2343, 14746], + "coffee-", + [2, 14743, 89], + "save", + [0, 14749, 14750, 14751, 2523], + "save-license", + [2, 4534, 14747], + [0, 1389, 2541, 1391, 3923, 4431], + [0, 2899, 1429, 15052], + [0, 18444, 17461, 1389], + [1, 2343, 14753], + [0, 14754, 14758, 14760, 2537], + [0, 4431], + "curses", + "tui", + "tput", + [0, 2899, 4597], + "terminfo", + [0, 2323, 18444], + "termcap", + [1, 2343, 14763], + [0, 14764, 14631, 14765, 2399], + [0, 22217, 3544, 22218, 4135, 4431], + [0, 2323, 15208, 4135, 18444, 15525, 22220, 22222, 22223], + [1, 2343, 14767], + [0, 14771, 0, 14772, 4139], + "ansi-term", + "drawille-canvas-blessed-contrib", + "map-canvas", + [0, 97, 22229, 1593, 22230, 3544, 4431, 4597], + [0, 18444, 2323, 2325], + "-terminal", + [2, 3127, 14773], + [2, 3149, 7046], + "picture-tuber", + "sparkline", + [1, 2343, 14779], + [0, 14782, 14786, 14787, 2537], + "term-canvas", + "x256", + [0, 4431, 3032], + "@types/bl", + "essed", + [2, 14783, 14784], + [0, 2899, 4597, 4170], + [0, 18444], + [1, 2343, 14789], + [0, 14790, 14791, 14792, 34352], + [0, 22246, 2476, 4453], + [0, 1166, 1437, 1700, 2089, 2188, 2323, 4597, 1906], + [0, 18444, 2090, 1586, 22249, 2301, 22251, 22253, 15795, 6901, 22254, 4262, 2325, 16077, 22255], + [1, 2343, 14794], + [0, 14795, 7878, 14796, 2487], + [0, 2061, 3544, 4039, 4431, 4597], + [0, 18444, 4050, 7293, 6865], + [1, 2343, 14798], + [0, 14799, 14800, 14801, 2487], + [0, 1462, 3544, 4431, 4606], + [0, 1429, 21480, 1596, 2026, 2061, 2323, 2367, 2494, 2504, 2510, 2899, 3421, 4597], + [0, 1623, 4050, 3178, 2280, 1462, 2458, 2459, 2361, 18444, 17461], + [1, 2343, 14803], + [0, 14804, 14805, 14787, 2399], + [0, 1509, 3544, 4002, 4431, 4606], + [0, 2510, 2899, 4170, 4597], + [1, 2343, 14807], + [0, 14808, 14809, 14810, 4139], + [0, 2541, 4431, 4707], + [0, 1596, 1700, 2323, 2436, 2444, 2447, 2455, 2463, 2685, 22280, 3102, 2899, 4170], + [0, 2323, 18444, 21837, 4329, 2278, 1623, 7234, 7121, 590], + [1, 2343, 14812], + [0, 14813, 14814, 14787, 2537], + [0, 4597, 4431, 14557], + [0, 2323, 2899, 4170, 2759, 16584, 4278, 2510, 3202], + [1, 2343, 14816], + [0, 14817, 14818, 14819, 2537], + [0, 3032, 22291, 3544, 22292, 22293, 22296, 4431, 4597], + [0, 1429, 2899], + [0, 18444, 5614, 1623, 1204, 1698, 134], + [1, 2343, 14821], + [0, 14822, 14818, 14823, 34352], + [0, 4431, 2541, 2720, 1687], + [0, 18444, 8635, 22303, 22304, 8622, 8620, 22306], + "loop", + [1, 2343, 14826], + [0, 14827, 14828, 14831, 2537], + [0, 710, 1544, 4438, 2061, 3102, 1104, 4150, 4151, 21847], + [0, 2323, 2899, 4342, 2515, 1506], + "baconjs", + "kefir", + [0, 17461, 1544, 3000, 22313, 36], + [3, 3736, 10], + [3, 3736, 14], + "deferred", + "deferreds", + "future", + " control", + "flow control", + "dsl", + [2, 8553, 6072], + [1, 2343, 14842], + [0, 14843, 14844, 14845, 2537], + [0, 4431, 3544], + [0, 2323, 1192, 1894, 21482], + [0, 18444, 1585, 2323], + "BN", + "Big number", + "BigNum", + "Modulo", + "Montgomery", + [1, 2343, 14852], + [0, 14853, 14854, 14857, 2537], + [0, 1104, 22324, 2061, 3544, 4431], + [0, 2272, 2899, 4597], + "unpipe", + "destr", + [0, 18444, 1623, 22324, 671, 9654, 7121], + "destroy", + [1, 2343, 14860], + [0, 14861, 14862, 14863, 2537], + [0, 4597, 21861, 22331, 4431, 2061, 3544], + [0, 3421, 2899, 4193, 1177, 4039, 4170, 1596, 22333, 22334, 1958, 1903, 1970, 1900], + [0, 21861, 18444], + [2, 1601, 1851], + [1, 2343, 14866], + [0, 14867, 14870, 14875, 2537], + [0, 1637, 16136, 3544, 3427, 4606], + "-jsdoc-theme", + [2, 1365, 14868], + [0, 4389, 4597, 4387, 2510], + "postgre", + "sql", + "postgresql", + "datamapper", + [0, 1637, 3178, 14137, 16918, 16919, 1623, 18444, 3561], + [1, 2343, 14878], + "active record", + [0, 14879, 14880, 14881, 2537], + [0, 16858, 3544, 4606], + [0, 4389, 4597, 4387], + [0, 18444, 3178, 1623], + [1, 2343, 14883], + [0, 14884, 14885, 14886, 2523], + [0, 3544, 4431, 20992], + [0, 2272, 3760, 4170, 4597], + [0, 18444, 2382, 1781, 2323], + [1, 2343, 14888], + [0, 14889, 14890, 14891, 34352], + [0, 1177, 2061, 3544], + [0, 2323, 2899, 4597, 4170, 2759, 1178, 22360, 22363], + [0, 18444, 1177, 2323, 2656, 22365, 4354, 4225, 1501, 4525, 676, 5284, 5957, 671, 1932], + "mincer", + [1, 2343, 14895], + "eyeglass-module", + [0, 14896, 14897, 14898, 4139], + [0, 2856, 4597, 2051, 22372, 4431, 3544, 1537, 22371], + [0, 2323, 2899, 4170, 2759, 1783], + [0, 18444, 2090, 2385, 4068, 2323, 1932], + [1, 2343, 14900], + [0, 14901, 14902, 14905, 2487], + [0, 4207, 3249, 3544, 22379, 22382], + [0, 1906, 1166, 2323, 4597, 3477], + "align", + "ansi-align", + [0, 18444, 7131, 2687, 2090, 1586, 3529, 3181, 2070, 21543, 4597], + [1, 2343, 14909], + "boxes", + "border", + [0, 14910, 14631, 14911, 2523], + [0, 3544, 4431], + [0, 18444, 19991, 4237, 20050, 22390, 22392, 3053, 2323], + [1, 2343, 14913], + [0, 14843, 14914, 14915, 2537], + [0, 2323, 2899, 4597, 4170, 3697, 1879], + [0, 18444, 2323, 3033, 10903, 3403], + [1, 2343, 14917], + [0, 14918, 7923, 14919, 2537], + [0, 22402, 4001, 21035, 4431], + [0, 14438, 1671, 4525, 2323, 18444, 1783, 5980, 1932, 22405, 3721, 4001], + [1, 2343, 14921], + [0, 14925, 14926, 14928, 4139], + "-stream", + "quote-stream", + [2, 5706, 1237], + [0, 1437, 2541, 22410, 22412, 3427, 7029, 3545, 4431], + [0, 22414, 3505], + [2, 13888, 353], + [0, 18444, 2156, 22410, 2090, 1586, 16410, 20500, 36, 5576, 9229, 20997, 20998], + [1, 2343, 14931], + "readFileSync", + [0, 14933, 14934, 14935, 2537], + "asset", + [0, 22420, 4039, 4600, 2541, 22422, 3923], + [0, 2899, 4597, 1177, 2759, 22425, 3349, 2215, 3074, 22427, 22428], + [0, 3358, 6645, 1528, 22430, 20997, 20998, 20001, 13755, 5351, 2323, 18444, 2193, 1724, 2195], + [1, 2343, 14941], + "array-equal", + [2, 1379, 1932], + "fs-tree-diff", + "heimdalljs", + [0, 14945, 14946, 14947, 2523], + [2, 3192, 1177], + "-lerna-changelog", + [2, 3980, 14943], + [0, 22437, 2061, 1209, 3544, 4015, 22440, 4597], + [0, 1177, 2899, 3210, 4039, 4170], + [0, 2323, 3358, 22443, 18444, 22223], + [1, 2343, 14949], + [0, 14950, 14954, 14955, 34352], + [0, 1104, 1413, 2061, 3544, 22449, 4431], + [3, 1378, 10], + "ixture", + [2, 14951, 14952], + [0, 2323, 2359, 2390, 2447, 2463, 2494, 18426, 2544, 2839, 2899, 22451, 4170], + [0, 15215, 18444, 16518], + [1, 2343, 14957], + [0, 14958, 14960, 14963, 2523], + [0, 2036, 3544, 4002, 4431], + "broccoli", + [0, 4597, 2323, 2367, 22460, 22463, 22465, 2899, 22466, 4170], + [3, 14953, 15], + [2, 14961, 1289], + [0, 18444, 2036], + "multidep", + [1, 2343, 14966], + [0, 14971, 14972, 14973, 2537], + "ts-docs-gen", + "plugin-p", + [2, 14968, 11597], + [2, 4491, 14969], + [0, 14557, 1209, 3102, 4431], + [0, 1429, 2323], + [0, 10345, 18444, 22475], + [1, 2343, 14975], + [0, 14976, 14977, 14984, 2399], + [0, 1496, 4207, 1362, 4599, 3427, 3923], + [0, 2899, 4597, 2759, 2541, 22360, 1537, 22481, 4603], + [2, 1387, 4219], + [3, 14978, 13], + [2, 14979, 181], + "bs-recipes", + "dev-ip", + "easy-", + [0, 18444, 1936, 4068], + "easy-extender", + "eazy-logger", + [1, 2343, 14988], + [0, 14989, 14991, 14993, 4139], + [0, 4431, 3544, 2633], + "resp-modifier", + [0, 2323, 2899, 4597, 2398], + "bs-snippet-injector", + [0, 1671, 2323, 18444, 22489, 1936, 2265, 14137, 2632, 3178], + "-changelog", + [2, 8623, 14994], + [1, 2343, 14997], + [0, 14999, 15002, 15003, 2523], + "browser sync", + [0, 8949, 22495, 18438, 22497, 22502, 22379, 22504, 22505, 22500], + "live reload", + "sync", + [ + 0, 2323, 1192, 1177, 4039, 22509, 8719, 1894, 842, 16145, 442, 1527, 22512, 91, 22507, 8712, 22511, 4523, 1939, + 1895, 1955, 1652, 1567 + ], + [0, 18444, 2323, 1017, 2414], + [1, 2343, 15005], + [0, 15025, 15026, 15029, 34352], + "browser-pack", + [2, 13843, 814], + "zlib", + [2, 13888, 15008], + "d-pa", + "th-relative", + [2, 15010, 15011], + [2, 2325, 15012], + [2, 10740, 1389], + [2, 14181, 1617], + "defined", + "deps-sort", + "domain-browser", + "duplexer2", + "htmlescape", + "https-", + [2, 15021, 1389], + "ed-stream-splicer", + [2, 5433, 15023], + [0, 4431, 22518, 22519], + [0, 2899, 2272, 3188, 4039, 4170, 4600, 2215, 1834, 22522], + "-classic", + [2, 3188, 15027], + [0, 18444, 21195, 22524, 22525], + "module-deps", + "os-browserify", + "-es3", + [2, 3767, 15032], + "read-", + "only-stream", + [2, 15034, 15035], + "shasum-object", + "stream-b", + [2, 15038, 2345], + [2, 4279, 27], + "_decoder", + [2, 1871, 15041], + "subarg", + [2, 9056, 1851], + "rs-browserify", + [2, 6901, 15045], + "tty-browserify", + "vm-browserify", + [1, 2343, 15061], + "unpack", + [2, 13843, 15050], + "coffeeify", + "has-o", + "bject-spread", + [2, 15053, 15054], + [2, 2565, 1243], + "isstream", + [3, 5747, 18], + [2, 3094, 15058], + "seq", + [0, 15062, 15063, 15065, 2443], + [0, 4431, 22518], + [0, 2272, 2899, 4170], + "commonj-esque", + [0, 18444, 7131, 3181, 2385, 6521, 2390], + [1, 2343, 15067], + [0, 15068, 15069, 14787, 2537], + [0, 1149, 1209, 22536, 4431], + [0, 2206, 2323, 2359, 2463, 2447, 4089, 2839], + "exposify", + "mothership", + "-function-calls", + [2, 14057, 15072], + [1, 2343, 15075], + [0, 15078, 15079, 15080, 2537], + "peer-range", + [2, 1382, 15076], + [0, 1437, 2476, 2267, 3545, 3714], + [0, 1166, 2694, 24006, 4597, 1906], + [0, 18444, 2267, 158, 11807, 20631, 20632, 3178, 2632, 15215, 18048, 20637, 21881, 20639, 8221], + [1, 2343, 15082], + [0, 15083, 15089, 14787, 4139], + [0, 1104, 2012, 2070, 3544, 4227, 4296, 4597, 4606], + "leases", + [2, 3340, 15084], + [3, 12361, 13], + [2, 15086, 1747], + [2, 9787, 15087], + [0, 2323, 2510, 2899, 4170, 4278], + "target", + [1, 2343, 15092], + [0, 15093, 15094, 15096, 2537], + [0, 1144, 4431, 2061, 1104, 22555, 3544, 22449, 1874], + [0, 1906, 2675, 2899, 4597, 4170, 22557, 2012, 192, 4131, 22559], + "base-x", + [0, 18444, 14510, 22561, 22562, 3888, 4017], + "ts-standard", + [1, 2343, 15099], + [0, 15104, 15106, 15108, 2537], + "base58", + "bitcoin", + "crytography", + "decode", + [0, 22568, 3544, 4431], + "decoding", + [0, 1178, 1596, 2012, 2323, 2384, 2463, 2899, 3421, 4597], + "litecoin", + [0, 18444, 134, 1623, 1936, 1823], + [1, 2343, 15110], + [0, 15111, 15116, 15117, 34352], + [0, 1664, 2541, 22576, 3479, 4431, 4707], + [3, 9366, 12], + "d-transpile", + [2, 6990, 15113], + [2, 15112, 15114], + [0, 1429, 2899, 4257, 1906], + [0, 18444, 1370, 3378, 1161], + [1, 2343, 15119], + [0, 15120, 15121, 15122, 34352], + [0, 2759, 22584, 1209, 3544, 4431, 4606], + [0, 2323, 2463, 2510, 22588, 2272, 2899, 4039, 4597], + [0, 18444, 4504, 2759, 22590], + [1, 2343, 15124], + [0, 15129, 15131, 15137, 2399], + "acorn-", + [3, 1200, 14], + [2, 15125, 15126], + "acorn-jsx", + [0, 2541, 2437, 4431], + "regexpu-core", + [0, 2323, 4384, 2447], + [2, 10740, 7227], + [3, 5583, 16], + [2, 15133, 4047], + "262-stream", + [2, 1973, 15135], + [0, 2437, 18444, 3101, 7234], + "transpil", + [2, 15138, 5218], + [3, 5221, 11], + "esnext", + [1, 2343, 15143], + [0, 15144, 15145, 15146, 2399], + [0, 1144, 2765, 22602, 3544, 4431], + [0, 2323, 4597], + [0, 5982, 5130, 18444, 2765, 2907, 8791, 4386, 4384, 6969, 1973, 5472, 2275], + [1, 2343, 15150], + "compatible", + "uint8array", + [0, 15151, 15152, 15153, 2537], + [0, 2292, 3544, 4431, 4435], + [0, 4278, 17468, 4597], + [0, 18444, 2292, 5284, 5286, 676, 1501, 590, 2649, 671, 6892, 4354, 16790], + [1, 2343, 15155], + [0, 15156, 15157, 14787, 4139], + [0, 1209, 3181, 3544, 22331, 4431], + [0, 2323, 2272, 2899, 4170, 4597], + [1, 2343, 15161], + "-build", + [2, 640, 15159], + [0, 15162, 15163, 15165, 2523], + [0, 1699, 1707, 2820, 3544, 4431], + [0, 1177, 1889, 2323, 2899, 4170, 4597], + "prebuildify", + [0, 18444, 2323, 1781], + [1, 2343, 15167], + [0, 15168, 15169, 15170, 2523], + [0, 695, 3427, 3544, 4002, 4431, 4606], + [0, 2272, 2899, 4170, 4597], + [0, 18444, 2323, 695], + [1, 2343, 15172], + [0, 15173, 15176, 15177, 4139], + [0, 1437, 1676, 4597, 4438, 2061, 3023, 3923], + "built-in", + "bundled", + [0, 2899, 4193], + [0, 18444, 3000], + [1, 2343, 15179], + [0, 15180, 15181, 15183, 2523], + [0, 22639, 814, 2061, 3170, 2107, 22640, 22638], + [0, 2899, 4193, 1177, 3752, 22643, 1953, 1954, 1938, 1958, 1903, 1970], + "flexbox", + [0, 17461, 2323, 3209, 3001, 9711], + [1, 2343, 15185], + [0, 15186, 15188, 2514, 2399], + [0, 1462, 2541, 3427, 3923, 22649, 4606], + [2, 5581, 10659], + [0, 1429, 2899, 4597, 1177, 2759, 2515, 22360, 2510, 22651, 22481, 22428], + [1, 2343, 15190], + [0, 15191, 15195, 15196, 2537], + [0, 16862, 4431, 2541], + "@sto", + "plight/yaml", + [2, 15192, 15193], + [0, 1429, 2323, 2899], + [0, 18444, 3178, 6707, 16918, 15215, 1936, 16862], + "mergician", + [1, 2343, 15199], + [0, 15200, 14729, 15202, 2523], + [0, 1664, 2020, 2476, 2899, 4351], + "warn-if-update-available", + [0, 18444, 2899, 1973, 5472, 2275, 5130, 8791, 6969, 5982, 2907, 4386, 4384], + [2, 4869, 7059], + "err", + [1, 2343, 15206], + [0, 15207, 15209, 15210, 2399], + [0, 22667, 2070, 3544], + "bump", + [0, 1429, 2323, 2899, 4597, 1177, 3203, 21470], + [0, 2323, 18444, 2301, 22254], + [1, 2343, 15212], + [0, 15213, 14631, 15214, 2523], + [0, 22675, 1698, 22676, 3544, 4431, 4606], + [0, 18444, 1098, 12074, 10650, 22676], + "compress", + [1, 2343, 15217], + [0, 15218, 15219, 15224, 2443], + [0, 1512, 2323, 3363], + [0, 1506, 2447, 2463, 20047, 2272, 4170], + "dtrace-provider", + "mv", + [3, 2854, 14], + [2, 4099, 15222], + [0, 2323, 3363, 22684, 36, 22687, 20120, 2282, 17461, 18444], + "ben", + [1, 2343, 15228], + "log4j", + [0, 15229, 15230, 15231, 2399], + [0, 1209, 4431, 2061, 1104, 3357, 3544, 3330], + [0, 2323, 2899, 4597, 4170, 2479], + [0, 18444, 22005, 2323, 9044, 16237, 22695, 22696, 22011, 22699, 15844], + "streamsearch", + [1, 2343, 15235], + "@mscdex/eslint-config", + [0, 15238, 15239, 15240, 2537], + "uploads", + [3, 3253, 9], + [0, 18438, 1437, 22706], + [0, 1166, 3477, 91, 4597, 1906], + [0, 2323, 1932, 2474, 6731], + [1, 2343, 15242], + [0, 15246, 15248, 14787, 34352], + "lxiv", + "hrtime", + [2, 3715, 15244], + [0, 1437, 4431, 2061, 3544], + "webrtc", + [0, 1906, 2323, 2899, 4170, 4430, 2759, 1596, 2012, 3202], + [1, 2343, 15250], + [0, 15251, 15252, 15254, 34352], + [0, 2061, 3544, 3616, 4606], + [0, 3421, 2899, 4193, 4597, 1177, 3561, 3752, 2510], + "converter", + [0, 18444, 3561, 22147, 1623], + [1, 2343, 15256], + [0, 15257, 15259, 15263, 2537], + [0, 4358], + "@bcoe/v8-coverage", + [0, 2899, 33479, 30889, 4597], + "ground-child", + [2, 14739, 15260], + "v8-to-istanbul", + [0, 22726, 1509, 21195, 1676, 22729, 6639, 6521, 22223, 18444, 1936, 22727, 22728, 2385, 5284, 7121], + [2, 1432, 8746], + [1, 2343, 15268], + "v8", + "profiler", + [0, 15269, 15270, 15271, 2523], + [0, 2012, 2720, 3067], + [0, 1145, 1177, 22735, 2720, 2899, 3752, 4603], + [0, 18444, 3741], + [3, 5738, 22], + [2, 15272, 2528], + [1, 2343, 15280], + "@types/mri", + [2, 13307, 2831], + [2, 4049, 668], + [3, 207, 8], + "madr", + [0, 15281, 15282, 15283, 2399], + [0, 2541, 3427, 3909, 4431, 4606], + [0, 2510], + [0, 18444, 89, 1219, 353, 8535, 1283, 5354, 6624, 22743, 22746, 7234], + [1, 2343, 15285], + [0, 15291, 15293, 15295, 2443], + "@fake", + "r-js/faker", + [2, 15286, 15287], + [3, 1909, 17], + [2, 15289, 91], + [0, 2012, 3357, 705, 4431, 4597], + " cache", + [0, 2323, 2530, 2359], + "multiple", + [0, 18444, 21004, 22753], + [1, 2343, 15297], + [0, 0, 15298, 14787, 2399], + [0, 2323, 2510, 3102, 2899, 1894, 4170, 4597], + [1, 2343, 15302], + "es-de", + "fine", + [0, 15303, 15306, 15311, 34352], + [0, 4874, 18438, 4748, 22762, 17909], + "fine-property", + [2, 15300, 15304], + [0, 2899, 4597, 4170, 4474, 19544, 91, 1537], + "-apply-helpers", + [2, 2183, 7083], + "-length", + [2, 3609, 15309], + [0, 18444, 4068], + "gopd", + [1, 2343, 15314], + [0, 15315, 15316, 15317, 4139], + [0, 2476, 22771, 22772, 22774, 22776, 4597, 22778], + [0, 1166, 3477, 1906], + [0, 18444, 22781, 22782, 22783, 3428, 6707, 15525, 22220, 2325, 22784, 2947, 14932, 22785], + "camel", + "-case", + "camel-case", + "case", + "hyphen", + "separator", + "pascalcase", + [1, 2343, 15327], + "pascal-case", + [0, 14910, 15328, 15329, 2537], + [0, 2012, 2390, 2498, 2899, 4597], + [0, 18444, 22781, 22783, 15525, 4068, 14932], + [1, 2343, 15331], + [0, 15332, 15333, 15334, 2523], + [0, 1437, 1573, 1615, 1664, 22795, 1874, 2061, 2070, 8944, 22798, 3505, 3544, 4002, 4039, 4597], + [0, 2323, 2510, 22778], + [0, 18444, 4329, 2278, 1623, 7234, 7121, 590, 22801, 4227, 11939, 12938, 4070], + [1, 2343, 15336], + [0, 15337, 15338, 15339, 2487], + [0, 3527, 4294, 4002, 3544, 3028, 4606], + [0, 2323, 2278, 2899, 4597, 1177, 4039, 21315, 3561, 18426, 3342, 1165, 2482, 21688, 2510, 1938, 1881], + [0, 18444, 2278, 2323], + "assert-", + "rejects", + [2, 15340, 15341], + [1, 2343, 15347], + "graphic", + "pixman", + "cairo", + [0, 15348, 0, 15349, 2523], + [0, 1149, 2541, 3427, 7029, 4247, 4431], + [0, 18444, 22813, 2090, 1586, 16410, 20500, 36, 5576, 9229, 20997, 20998], + [1, 2343, 15351], + [0, 15352, 15353, 15354, 2523], + [0, 1437, 2061, 3067, 3544, 4431, 4484], + [ + 0, 22821, 22507, 5087, 22823, 4874, 18435, 1009, 1011, 1596, 1177, 1895, 1939, 2323, 1192, 1894, 4468, 4474, 91, + 4597 + ], + [0, 18444, 2323, 4166, 1523], + " sensitive", + [2, 15321, 15355], + [1, 2343, 15358], + [0, 15359, 15360, 15363, 2399], + [0, 22829, 1437, 2061, 2476, 2553, 3714], + [0, 1166, 3477, 4597, 1906], + "slimerjs", + "scraping", + [0, 18444, 2098, 2090, 4202, 3073, 22832, 3430, 1676, 16518, 21665], + [1, 2343, 15365], + [0, 15366, 15367, 15368, 2537], + [0, 22837, 22841, 1082, 1573, 1623, 22843, 20949, 2215, 4227, 21732, 4431], + [0, 1367, 1177, 1889, 2022, 2323, 2367, 2419, 2450, 2455, 22845, 2759, 22481, 22848, 2899, 3427, 4039, 4597], + [0, 18444, 2323, 22850, 4070], + [1, 2343, 15372], + "loupe", + "pathval", + [0, 15375, 15360, 15377, 2537], + "check-error", + [3, 6470, 15], + [0, 53, 2476, 22857], + [2, 5474, 13278], + [0, 18444, 4301, 7293, 6865, 4050, 1676, 6782, 7201, 3073, 6807, 676, 5284, 5286, 6892, 2003], + [1, 2343, 15379], + [0, 15380, 14805, 15381, 2537], + [0, 22863, 3023, 3544, 4002, 4333, 4431, 4606], + [0, 2323, 4333, 1623, 7121, 18444, 22223], + [1, 2343, 15383], + [0, 15384, 15386, 15387, 2537], + [0, 3544, 4360], + "chai-plugin", + [0, 2070, 2323, 22871, 2899, 22872, 4597, 1906], + [ + 0, 18444, 1017, 45, 8221, 18048, 22074, 22075, 2873, 1179, 1623, 2278, 695, 4333, 5376, 134, 1936, 13814, 22874, + 22875, 3257 + ], + [1, 2343, 15389], + [0, 15390, 15391, 15392, 2523], + [0, 3028, 3544, 4361], + [0, 48, 53, 87, 94, 1166, 1596, 1610, 1701, 3421, 1894, 4597, 1906], + [0, 18444, 3178, 8221, 4361], + "strategy", + [1, 2343, 15395], + [0, 15396, 15397, 15399, 2537], + [0, 1448, 2061, 3544, 4597], + [0, 2099, 2323, 2430, 2899, 3758, 4151, 4193], + "@debitoor/eslint-config-debitoor", + [0, 18444, 8221, 1017, 22074], + "objects", + "Subset", + [2, 6792, 15401], + "like", + [1, 2343, 15406], + "superset", + [0, 15407, 15408, 15409, 34352], + [0, 2476, 1209], + [0, 1166, 2383, 4597, 1906], + [0, 18444, 1209, 4545, 1283, 7234, 1936, 8924, 22894, 22746], + [1, 2343, 15412], + "yoctodelay", + [0, 15413, 15414, 15415, 2537], + [0, 1104, 2061, 4430, 4597], + [0, 22507, 4874, 22900, 18438, 20959, 22821, 4039, 2323, 2463, 91], + [0, 18444, 91, 5284, 22902], + [1, 2343, 15417], + [0, 15422, 15425, 15429, 34352], + "docpress", + "git-u", + "pdate-ghpages", + [2, 15419, 15420], + [0, 22821, 1104, 2061, 3102, 3544, 4430], + "gulp-ava", + [2, 2530, 3020], + [0, 22909, 4874, 22900, 2323, 2367, 2529, 4487, 91], + "mersenne", + "address", + "dice", + [0, 2323, 91, 1932, 4799, 18444, 17461, 4487, 9654, 671], + [1, 2343, 15431], + [0, 15432, 15433, 15434, 2537], + [0, 4597, 4431, 4600, 4227, 1104, 3544], + [0, 2323, 4039, 22920, 91, 4874, 2367, 2409, 18438, 2479, 3159, 18435, 18440, 2510, 22919], + [0, 91, 18444, 22924, 4799, 11540, 7234, 4643, 5197], + [1, 2343, 15440], + "param-case", + "kebab-case", + "header-", + "header-case", + [0, 15441, 15442, 14787, 34352], + [0, 22639, 2757, 4431, 4535, 22930, 22640, 4100, 2053, 22933, 4606], + [0, 4389, 4597, 1177, 1894, 22941, 4421, 3696, 22939, 1907, 1982, 1895, 1955, 22937], + [1, 2343, 15453], + "c12", + "convert-", + "gitmoji", + [2, 15445, 15446], + [2, 3310, 4009], + "ofetch", + "pkg-types", + "scule", + "std-env", + [0, 15454, 12112, 15455, 2523], + [0, 2541, 3427, 22946], + [0, 17507, 1623, 18444], + [1, 2343, 15459], + "dogstatsd", + "@kurkle/color", + [0, 15479, 15485, 15489, 2523], + [2, 812, 14510], + "@types/o", + "ffscreencanvas", + [2, 15461, 15462], + "js-adapter-luxon", + [2, 9816, 15464], + [3, 15465, 16], + [2, 15466, 3220], + "chartjs-", + [2, 15468, 11017], + "chartjs", + [2, 1884, 15470], + [3, 2912, 13], + "launcher", + [2, 5695, 15473], + [2, 15472, 15474], + [3, 4071, 15], + "wc3", + [2, 15476, 15477], + [0, 2070, 2367, 3544, 4431, 4597], + "charts", + "graphs", + "datadog", + "telegraf", + "native-run", + [0, 2012, 4600, 2323, 2447, 2463, 2530, 2413, 2361, 2498, 2450, 2272], + [2, 1448, 11245], + "domhandler", + "domutils", + [0, 18444, 2319, 2536], + "-sniffer", + [2, 9254, 15490], + "-tree-adapter", + [2, 2653, 15492], + [2, 1868, 15493], + [2, 3493, 15494], + "parse5-", + "parser-", + [2, 15497, 3101], + [2, 15496, 15498], + "whatwg-", + "mimetype", + [2, 15500, 15501], + [1, 2343, 15511], + "@imgix/js-core", + [2, 7724, 2220], + "hatwg-mimetype", + [2, 7820, 15506], + [3, 1926, 15], + "xpect-type", + [2, 15508, 15509], + [0, 15513, 15515, 15516, 2537], + [3, 2654, 10], + [0, 2070, 2051, 22959, 2419, 4431, 4600, 2367, 2012, 3544], + "scraper", + [0, 3421, 2323, 2899, 4597, 1596, 22961, 2463, 2384, 2494, 1178, 22963], + [0, 18444, 1936, 3888, 1623, 6707, 5614], + [1, 2343, 15518], + [0, 15519, 15520, 2514, 2487], + [ + 0, 22970, 22971, 22972, 1437, 1672, 2061, 22639, 22640, 22974, 22979, 22983, 3067, 3183, 8949, 3427, 4002, 4431, + 4597 + ], + [0, 1400, 1596, 2012, 2759, 22481, 2272, 22985, 2899, 4039, 4170], + [1, 2343, 15522], + [0, 15523, 15524, 15527, 4139], + [0, 3768, 4430, 4431, 4597, 4600, 4753, 22990], + [0, 2899, 4255, 1241], + "version", + [2, 813, 15525], + [0, 2323, 18444, 22990, 22993, 2056, 7046, 4597, 2542], + [1, 2343, 15529], + [0, 15530, 15531, 15532, 2537], + [0, 1104, 15642, 1457, 2061, 2200, 3427, 3507, 3544, 3923, 4207, 4597, 22778], + [0, 1596, 2759, 2899, 3202, 3752, 4039, 4170, 4193, 4278, 4294, 1906], + [0, 2323, 2282, 18444], + "@better-scroll/core", + "add-", + "listener", + [2, 12598, 15535], + [2, 1752, 15536], + [2, 15534, 15537], + "-font", + [2, 1456, 15539], + [2, 1625, 7521], + [1, 2343, 15546], + "-converter", + [2, 2275, 15543], + [2, 1625, 15544], + [0, 15552, 0, 15563, 2537], + "dom-closest", + "dom-lib", + [3, 1817, 15], + [2, 15549, 2013], + "htmlhint", + [0, 3150, 4597, 4430, 2924, 2541], + "insert-css", + "jsbarcode", + "jsonlint", + "jsonlint-mod", + "mutat", + "ionobserver-shim", + [2, 15557, 15558], + [2, 3767, 1289], + "-delta-to-html", + [2, 3771, 15561], + [0, 18444, 2924], + [1, 2343, 15576], + "eautiful-dnd", + [2, 12242, 15565], + "demirror2", + [2, 3808, 15567], + "asy-crop", + [2, 11352, 15569], + "lightbox", + [2, 3608, 15571], + [2, 3838, 15572], + "azy-load", + [2, 12432, 15574], + [0, 15577, 15581, 15583, 4139], + [0, 1544, 21847, 2541, 2756, 3357, 3445, 23009, 4150, 4151, 4431, 4438, 2282], + "react-quill", + "rmc-feedback", + "smooth-scroll-into-view-if-needed", + [0, 2899, 4342], + [3, 5835, 27], + [0, 18444, 22313, 1544, 3000], + "to-to-assign", + [2, 15582, 15584], + "demirror", + [2, 4860, 15586], + "lement-", + [1, 2343, 15593], + "resize-event", + [2, 15588, 15590], + [2, 4861, 15591], + [0, 15603, 15617, 15620, 2523], + "@types/faker", + "sert-css", + [2, 9721, 15595], + "barcode", + [2, 7635, 15597], + [3, 7895, 12], + [2, 15599, 2631], + "rcode.react", + [2, 11304, 15601], + [0, 2188, 2476, 4597, 22990], + "beautiful-dnd", + [2, 4881, 15604], + [2, 4881, 2741], + [2, 4881, 11167], + [2, 6324, 1456], + [2, 5098, 15608], + [3, 15609, 15], + [2, 15610, 7262], + [2, 15610, 89], + [2, 15610, 10631], + "tinker", + [2, 1876, 15614], + [2, 6941, 3841], + [0, 1166, 17279, 22706, 2323, 3477, 23017, 22778, 1906], + "mark-twain", + "rc-queue-anim", + [0, 18444, 2056, 12666, 1137, 15215, 1536, 2090], + "croll-anim", + [2, 11229, 15621], + [3, 11371, 21], + [2, 15623, 1524], + "react-su", + "blime-video", + [2, 15625, 15626], + [1, 2343, 15631], + "scrollama", + "values.js", + [0, 15636, 15638, 15639, 2523], + "vfile-message", + "-warnings-plugin", + [2, 7131, 15633], + [2, 4670, 15634], + [0, 22058, 1149, 4597, 4431, 3181, 4545, 22057, 22054], + [3, 1456, 9], + [0, 2323, 2899, 1177, 4039, 22064, 23026, 2381, 3159, 4599, 2425, 23025, 22066, 22068, 22062], + [0, 18444, 22057, 22074, 22075], + [1, 2343, 15641], + [0, 15646, 15647, 15649, 2443], + "anymatch", + "braces", + "is-b", + "@paulmillr/jsbt", + [0, 1792], + [0, 1166, 3477, 4481, 1906], + "readdirp", + [0, 1896, 4990, 15008, 16518, 23034, 4202, 1871, 1398], + [1, 2343, 15651], + [0, 15652, 15653, 15654, 2537], + [ + 0, 23040, 23041, 23043, 23045, 3984, 23051, 23054, 3988, 10630, 11380, 23059, 23065, 23070, 23075, 23078, 23080, + 23082, 23085, 23092, 23096, 23098, 23103, 23110, 23113, 23118, 23121, 23123, 13240, 23126, 23128, 23133, 23136, + 23139, 23141, 23143, 15043, 4351, 23145, 23149 + ], + [0, 811, 8850, 816, 10615, 1703, 23155, 4042, 4255, 4389, 4400], + [0, 1783, 1745, 1739, 9591, 13729, 4354, 23158, 9654, 671, 19269, 2554, 3984, 4549], + [1, 2343, 15657], + "ci", + [0, 0, 15660, 15661, 2399], + "continuous", + [2, 15674, 15682], + [0, 23163, 23164, 2228, 18555, 2253, 2256, 2273, 23165, 2281, 2283, 2293, 23167, 23169], + [0, 4453, 7597], + [1, 2343, 15683], + [3, 6217, 21], + [2, 15663, 4779], + [3, 169, 22], + "ntion", + [2, 15665, 15666], + [3, 169, 21], + "inimap", + [2, 15668, 15669], + [3, 116, 24], + [2, 15671, 14745], + [3, 164, 21], + [3, 5276, 15], + "anguage", + [2, 15673, 15675], + [3, 157, 21], + [2, 15677, 5204], + [3, 148, 22], + "de-block", + [2, 15679, 15680], + "imple-access", + [0, 15688, 15708, 15709, 4139], + "tml-embed", + [2, 15677, 15684], + "ge-break", + [2, 172, 15686], + [0, 3183, 23175, 4227, 4720, 4535], + "heme-lark", + [2, 178, 15689], + "ord-count", + [2, 6197, 15691], + [2, 15698, 15725, 186], + "how-blocks", + [2, 15663, 15694], + [3, 15685, 25], + [2, 15696, 4231], + [3, 10883, 21], + "arkdown-gfm", + [2, 15668, 15699], + [3, 175, 22], + "move-format", + [2, 15701, 15702], + "ource-", + [2, 15704, 6110], + [2, 15663, 15705], + "oriz", + [ + 0, 8648, 1168, 1195, 1282, 1317, 1429, 23177, 1540, 1719, 1787, 16256, 16257, 1177, 1895, 1924, 1926, 2151, + 2228, 13831, 2240, 2247, 2253, 2256, 2258, 23178, 2281, 2283, 2314, 17568, 2675, 16021, 2990, 2899, 3211, 3257, + 3421, 1894, 4135, 4193, 91, 4545, 2924, 4681 + ], + [0, 2036, 3257, 1283, 1936], + "ontal-line", + [2, 15707, 15710], + [2, 15677, 15711], + [3, 6164, 21], + [2, 15713, 12426], + "multi-root", + [2, 6157, 15715], + "strict", + "ed-editing", + [2, 15717, 15718], + [2, 15701, 15719], + "peci", + "al-characters", + [2, 15721, 15722], + [2, 15663, 15723], + "plugin-u", + "nano-jsx", + [1, 2343, 15729], + "solid-js", + [0, 15730, 15731, 6060, 2523], + [ + 0, 2812, 23184, 1366, 6714, 2607, 8340, 17693, 23185, 8336, 8316, 23187, 23188, 8338, 23189, 23190, 8349, 23192, + 23193 + ], + [0, 620, 1501, 2710, 8363, 23196, 2036], + [1, 2343, 15733], + [0, 15734, 15735, 15736, 2487], + [0, 15507, 4874, 9241, 18089, 15502, 4729], + [0, 23203, 23205, 91, 1984, 9750], + [0, 2832, 965, 1388, 5317, 11513, 5122, 4963, 1936, 7102, 12616], + [1, 2343, 15738], + [0, 0, 8134, 15739, 2537], + [0, 6914, 4354, 13735, 6793, 2100, 7210, 200, 6876, 6478, 3729, 1138, 7058, 7233, 10446, 7128, 3183, 3460], + [1, 2343, 15741], + [0, 0, 15746, 15748, 2537], + "@chrisblossom/eslint-config", + [3, 14731, 11], + "-pkg-up", + [2, 15743, 15744], + [0, 5517, 13614, 23237, 26398, 19325, 1159, 1593, 9254, 1177, 23225, 2708, 3410, 3421, 4103, 4389], + "temp-sandbox", + [0, 7263, 2568, 7031, 6951, 6422, 970, 1593, 6789], + [1, 2343, 15750], + [0, 0, 15751, 2514, 2523], + [0, 2272, 2839, 1209, 4389], + [1, 2343, 15753], + [0, 15754, 15755, 15756, 2399], + [0, 14038], + [0, 5517, 13614, 23237, 23239, 23241, 19325, 1158, 1159, 1177, 2011, 2708, 3206, 3410, 3421, 4103, 4389], + [0, 6914, 6959, 6780, 6889, 6888, 6914, 3205, 941, 5284, 5286], + [2, 5933, 1469], + [1, 2343, 15762], + "uncache", + "uncached", + "unrequire", + [0, 15763, 15764, 15765, 4139], + [0, 12396, 9315, 23247, 23249, 23250, 23253, 3140, 3493, 23254, 4555, 12449, 23257, 23258], + [0, 4874, 23262, 1414, 2581, 2588, 3137, 1894, 23264, 3985, 3998, 4505, 91, 18002, 1906], + [0, 23267, 2587, 1936, 23266, 6435, 614, 1644, 3972], + [1, 2343, 15772], + "opts", + "opt", + "parseopt", + "argsparse", + "optparse", + [0, 15777, 15778, 15779, 2537], + "complete", + "autocomplete", + [3, 15774, 11], + [2, 15775, 6600], + [0, 12396, 23247, 23254], + [0, 4874, 23262, 23274, 1414, 1699, 23276, 2581, 2588, 2620, 23279, 1894, 3985, 3998, 4505, 91, 18002, 4555, 1906], + [0, 4050, 23267, 2587, 1936, 6953, 2574, 6435, 614, 23266, 4741], + [1, 2343, 15781], + [0, 15782, 15783, 15784, 34352], + [0, 12396, 9315, 23286, 23288, 13839, 23289, 23291, 9396, 2584, 23292, 16870, 3746, 4233, 4555, 23258], + [0, 4874, 1414, 2588, 1894, 3985, 3998, 4505, 91, 18002, 1906], + [0, 1623, 23267, 2587, 1936, 3529, 6421, 3766, 23296, 3585, 1631, 23266, 6435, 614], + [1, 2343, 15787], + [2, 1861, 7253], + [0, 15789, 15790, 15791, 2523], + "timers-ext", + [0, 1006, 19877, 12396, 23288, 23289, 23302, 23308, 23292, 23310, 23312, 23314, 3746, 4233, 4309, 23254, 23258], + [0, 4874, 15128, 1414, 23316, 12412, 2007, 2588, 3137, 12127, 3140, 12133, 1894, 3985, 3998, 4505, 91, 4555, 1906], + [0, 1444, 5286, 6742, 23267, 2587, 1936, 5284, 1219, 9102, 3958, 353, 23266, 6435, 614], + "medikoo", + [2, 1884, 15792], + "list-", + "updated", + "list-updated", + [2, 10617, 15796], + [3, 2289, 14], + "-cc-changelog", + [2, 4024, 15799], + [2, 15798, 15800], + "prettier-e", + "lastic", + [2, 15802, 15803], + "tad", + [1, 2343, 15807], + [0, 15808, 15809, 15810, 2487], + [0, 12396, 9315, 23322, 23288, 23292, 23253, 3140, 3746, 4233, 4292, 23258], + [0, 4874, 1414, 2588, 1894, 3985, 3998, 4505, 91, 1906], + [0, 23267, 2587, 1936, 4141, 1646, 23324, 23266, 6435, 614], + [1, 2343, 15812], + [0, 15816, 15817, 15818, 2537], + "toggle", + "show", + "hide", + [0, 1006, 12396, 9315, 23288, 23289, 23308, 23292, 23310, 23312, 23314, 3746, 4233, 4309, 23254, 15632], + [0, 4874, 4880, 4883, 1414, 668, 12415, 2588, 1894, 89, 3824, 3985, 3998, 23330, 4505, 91, 1906], + [0, 23267, 2587, 1936, 3698, 89, 23332, 3709, 23266, 6435, 614, 188], + [1, 2343, 15820], + [0, 15821, 0, 15823, 2537], + [0, 12396], + "varlock", + [0, 1563, 2587, 23267, 1936, 4141, 1871, 1646, 2585, 23266, 614, 6435], + [1, 2343, 15825], + [0, 15827, 15809, 15828, 2537], + "string-length", + [0, 12396, 9315, 12421, 23344], + [0, 23266, 2587, 23267, 614, 6435, 1936, 1871, 1563, 2585, 9547], + [1, 2343, 15830], + [0, 15831, 15832, 15834, 2537], + [0, 12396, 23288, 23352, 3746, 4233], + [0, 4874, 15128, 1414, 23316, 23356, 12412, 1894, 3985, 3998, 23359, 4481, 4505, 91, 1906], + "expresso", + [0, 965, 14839, 23267, 2587, 1936, 23362, 3958, 23266, 6435, 614, 23361, 4607], + [1, 2343, 15836], + [0, 15837, 15839, 2514, 4139], + [0, 4647, 2036], + "fast-text-table", + [0, 3421, 2899, 1177, 4039, 4342, 1948], + "256-colors", + [2, 1105, 15840], + "git-re", + "git-rev", + "growl", + [1, 2343, 15848], + "tables", + "tabular", + [0, 0, 15849, 15850, 2523], + [0, 15990, 2228, 2240, 2314, 14352, 2759, 2835, 1209, 14529, 3774, 3954, 23375, 4019, 23376], + [0, 1871, 18089, 18944, 1936, 10368, 15103, 3656], + [1, 2343, 15852], + [0, 15855, 15856, 2514, 2537], + [2, 8737, 4522], + [2, 2968, 14994], + [0, 3263], + [0, 4167, 4384], + [1, 2343, 15858], + [0, 0, 0, 15859, 2537], + [ + 0, 2026, 1965, 11988, 5995, 23389, 23391, 23397, 23400, 23404, 23407, 23410, 23411, 23412, 23413, 23414, 23415, + 23416, 23417 + ], + [1, 2343, 15861], + [0, 0, 15863, 2514, 34352], + "truncate", + [0, 4361, 4039, 1894, 1420, 11518, 53, 23423, 5874], + "ellipsis", + [1, 2343, 15866], + [0, 0, 15867, 2514, 2443], + [0, 94, 87, 14128, 14041, 1175, 48, 53, 1178, 1193, 1745, 1177, 1935, 1938, 1939, 1192, 2774], + [1, 2343, 15870], + "cardinal", + [0, 15881, 15885, 15888, 2523], + "hyperlinker", + [2, 689, 13008], + [2, 2055, 2873], + "object-t", + "reeify", + [2, 15874, 15875], + [2, 689, 7152], + "natural-", + "orderby", + [2, 15878, 15879], + [ + 0, 23432, 1362, 27433, 15838, 23434, 23436, 23438, 23439, 23440, 23441, 2822, 23444, 3170, 19445, 3220, 3222, + 3416, 3527, 15245, 4294, 4435, 23445, 23446 + ], + "-prompt", + [2, 6875, 15882], + [3, 4351, 9], + [ + 0, 23450, 13414, 4856, 8780, 7637, 8778, 6503, 4874, 21623, 6513, 23448, 1414, 1429, 1448, 6323, 1177, 23453, + 23456, 2675, 2990, 2899, 4193, 4474, 91 + ], + "hyperlinks", + [2, 15884, 15886], + [0, 5351, 5353, 6354, 5130, 2596], + [3, 6519, 10], + "ip-ansi", + [2, 15889, 15890], + "nsi-styles", + [2, 9165, 15892], + [3, 9359, 12], + [1, 2343, 15898], + "ct-stack", + [2, 15894, 15896], + [0, 15899, 15900, 2514, 4139], + [0, 23462], + [ + 0, 1362, 1389, 1391, 1537, 1177, 2228, 2236, 2239, 2277, 2281, 2283, 2291, 23466, 2307, 2036, 2276, 4085, 23469, + 4171, 4193, 16584, 23471, 4535 + ], + [1, 2343, 15902], + [0, 0, 15912, 15913, 2537], + "@yarnpkg/core", + "@yarnpkg/", + "fslib", + [2, 15904, 15905], + [3, 1920, 15], + "rca", + [2, 15907, 15908], + "multi-input", + [2, 4049, 15910], + [ + 0, 1623, 1700, 2070, 19745, 2832, 2899, 1177, 1209, 4042, 4170, 4072, 1462, 1481, 1525, 2036, 91, 2665, 23482, + 6503, 18059, 23483, 13388, 23476, 23479, 1954, 8850, 23480, 1938, 1958, 1903, 811, 1011, 816, 1009 + ], + [0, 5342, 5341], + [1, 2343, 15915], + [0, 15916, 0, 2514, 2537], + [0, 3263, 1326], + "good-listener", + "tiny-emitter", + [1, 2343, 15920], + [0, 6263, 0, 15922, 2523], + "cut", + [0, 2602, 7426], + [1, 2343, 15924], + [0, 0, 15925, 15927, 2537], + [0, 1501, 620], + "is64bit", + [0, 6731], + "paste", + "copy-paste", + "pasteboard", + "pbcopy", + "xclip", + "xsel", + [1, 2343, 15935], + [0, 15936, 15937, 15938, 2523], + [0, 3368, 3188], + [0, 4535, 2832, 23509, 4039], + [0, 3257, 1283], + [1, 2343, 15940], + [0, 15941, 15942, 10570, 2399], + [0, 3847], + [0, 53, 61, 87, 90, 94, 1429, 1596, 1603, 1177, 2899, 3421, 3697, 3744, 89, 4039, 4042, 4045, 4055, 4067, 4073], + [1, 2343, 15944], + [0, 15945, 15946, 2514, 4139], + [0, 1437, 4135, 2151, 1525, 23520, 3762, 4232], + [ + 0, 1192, 1177, 4039, 3363, 4468, 4474, 4508, 91, 5087, 4874, 5245, 5254, 4864, 1939, 1938, 13418, 1011, 23523, + 1009 + ], + [1, 2343, 15948], + [0, 0, 15949, 15950, 2523], + [ + 0, 23528, 23531, 4865, 13204, 4874, 29891, 7677, 1138, 14736, 30932, 668, 1177, 2070, 2832, 3244, 3377, 30794, + 20085, 1894, 23535, 91, 4548, 23538, 1984, 23539, 4729, 4763 + ], + [0, 2611, 5122, 1896, 27, 13527, 5130, 38, 23542, 23543, 23544, 23545, 21444, 17218, 13573, 6710], + [2, 976, 2942], + [1, 2343, 15954], + [2, 9753, 6072], + [0, 15957, 6538, 15958, 2487], + "progress bar", + "@exodus/bytes", + [0, 3084], + [0, 3358, 2195, 17977, 17978], + [1, 2343, 15961], + [2, 11941, 5258], + [0, 15963, 13640, 15965, 2487], + "coro", + [0, 1537, 3188, 4039, 4135, 4562, 4707, 23559], + "coroutine", + [0, 23561, 23562, 23563, 23564, 3378], + [1, 2343, 15967], + [0, 15968, 15969, 15970, 2487], + [0, 15487, 2654], + [ + 0, 192, 5467, 19438, 442, 8862, 811, 816, 10615, 10817, 23572, 11085, 23573, 4874, 17214, 32818, 7677, 1177, + 1955, 10964, 1978, 2203, 2633, 2675, 17221, 2832, 2990, 3401, 3541, 1894, 23535, 4042, 4201, 4474, 91, 4523, + 1984 + ], + [0, 2616, 1936, 965, 57, 2654, 23578], + [1, 2343, 15972], + [0, 0, 15973, 15974, 34352], + [0, 4874, 1414, 23276, 2577, 2584, 1894, 3985, 3998, 4505, 91, 4548, 1906], + [0, 23584, 11512, 1936, 1213, 3205, 10381, 12616, 7102], + [1, 2343, 15976], + [0, 15977, 15978, 15979, 2537], + [0, 15956], + [0, 23591, 1177, 2203], + [0, 9254, 1936], + "ignore-walk", + [1, 2343, 15982], + [0, 0, 15983, 15986, 2523], + [ + 0, 192, 5467, 5366, 23597, 5087, 4874, 1317, 18089, 1177, 1895, 1938, 23598, 2591, 2675, 1894, 4257, 4468, 4483, + 4494, 91, 4523 + ], + "teeny-request", + "urlgrey", + [0, 1936, 23601, 23603, 23605, 18089, 23606, 23608], + [1, 2343, 15989], + [2, 10988, 4504], + [0, 0, 15991, 15992, 2443], + "codecov.io", + [0, 23613, 1414, 1596, 4042, 4533], + [0, 1936, 1867, 10368, 23615, 15103, 18089], + [1, 2343, 15994], + [0, 15995, 16007, 16010, 2523], + [0, 3493, 2635], + "mirror/lint", + [2, 13183, 15996], + [3, 15997, 12], + [2, 15998, 6624], + [2, 15998, 6649], + [3, 16000, 13], + [2, 16001, 10190], + [2, 15998, 8891], + [3, 15997, 13], + [2, 16004, 15675], + [2, 15998, 15774], + [ + 0, 1700, 1192, 2675, 3144, 1622, 1177, 1701, 2924, 1854, 3692, 1894, 1610, 48, 1193, 2036, 53, 2990, 3400, + 23621, 192, 4257, 23623, 87, 2651, 1938, 1895, 5467, 16405 + ], + "buildhelper", + [2, 15998, 16008], + [0, 2924, 1936, 1194], + [1, 2343, 16012], + [0, 16013, 16014, 16016, 2523], + [0, 15320, 1462, 1525, 2591, 15436, 23631, 4535], + [0, 2228, 2236, 2281, 2291, 3524, 2907], + [2, 10697, 1592], + [ + 0, 200, 15215, 23634, 1623, 1936, 2265, 5284, 2262, 14137, 2632, 3178, 6707, 6708, 4405, 23635, 1644, 57, 23637, + 2280 + ], + [1, 2343, 16018], + [0, 16019, 16020, 16023, 2537], + [0, 15320, 1462, 1525, 18089, 15436, 23631, 4072], + [0, 192, 11893, 811, 8850, 816, 10615, 23643, 23648, 1177, 1903, 2675, 2742, 1192, 2780, 2990, 4042, 23652, 1983], + "jison", + [2, 5249, 23751], + [ + 0, 200, 15215, 23634, 1623, 1936, 2265, 5284, 2262, 14137, 2632, 3178, 6707, 6708, 4405, 23635, 1644, 57, 4072, + 23637, 2280 + ], + [1, 2343, 16025], + [0, 16026, 16027, 16028, 34352], + [0, 3524], + [0, 4389, 4255, 4387, 3524], + [0, 1936, 2636, 3520, 3521, 6710], + [1, 2343, 16030], + [0, 16031, 16032, 16033, 2537], + [0, 15487, 2616, 3872, 4309], + [ + 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 10817, 23572, 5366, 4874, 4880, 4883, 17214, 32818, 7677, + 1317, 1177, 1955, 10964, 1978, 2203, 2675, 2990, 3541, 3698, 23535, 89, 3824, 4042, 4201, 4474, 91, 4523, 1984 + ], + [0, 2639, 1936, 89, 57, 965], + [1, 2343, 16035], + [0, 0, 16036, 16037, 2523], + [0, 1166, 1448, 1906], + [0, 1936, 12075, 2640, 11513, 3392, 7102, 12616, 23670, 23674], + [1, 2343, 16039], + [0, 0, 16040, 16042, 2399], + [ + 0, 2675, 2742, 2297, 4484, 1177, 4039, 4042, 1894, 1596, 3536, 91, 3400, 2766, 3720, 2898, 23689, 2886, 23687, + 19965, 13207, 2923, 23681, 23683, 2881, 23679, 6059, 23686 + ], + "wcwidth", + [0, 12197, 23691, 1424, 1936, 965, 158, 13814, 8221], + [1, 2343, 16044], + [0, 16045, 0, 16046, 2523], + [0, 23696, 1699, 1754, 2654, 23699], + [0, 1936, 202, 2585, 18641, 19096, 15253], + [1, 2343, 16048], + [0, 16049, 0, 16050, 2523], + [0, 23708, 23709, 1091, 2070, 2929, 3183, 3742, 4135], + [0, 1936, 671, 1155, 2650], + [1, 2343, 16052], + [0, 16054, 16055, 16058, 34352], + "array-back", + [0, 23736, 2635, 1209, 3716, 4388], + [ + 0, 192, 5467, 4874, 1610, 1622, 1628, 1652, 21468, 1177, 17589, 2629, 2675, 1192, 2990, 3177, 3400, 1894, 3754, + 23738, 3786, 4039, 4257, 4307, 91, 2924, 4677, 23742 + ], + "find-replace", + "typical", + [0, 2924, 1932, 1936, 2651], + [1, 2343, 16060], + [0, 16061, 16062, 16063, 2537], + [0, 16022, 1525, 1595, 3692], + [ + 0, 442, 19344, 23339, 6503, 4874, 34737, 1414, 1637, 1177, 23753, 1938, 32525, 27790, 2022, 2203, 2899, 3561, + 3759, 23631, 4039, 23754, 4361, 4072, 91, 4523, 22946 + ], + [0, 3692, 23757, 1936, 23760, 2632], + [2, 1437, 2324], + "table-", + "table-layout", + [1, 2343, 16068], + [0, 16069, 16070, 16071, 2523], + [0, 18087, 15487, 15488, 18089], + [0, 442, 4874, 7677, 1177, 1895, 1953, 1982, 2203, 1894, 4483, 91, 4523, 1984], + [0, 1936, 57, 7046, 6523, 965, 23767, 6084, 16179], + [1, 2343, 16073], + [0, 16074, 16075, 16076, 2487], + [0, 1704, 2713, 20099, 4266, 23775], + [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421], + [0, 27, 1851], + "cached", + "cachedir", + "find-n", + "ode-", + "ode-modules", + [2, 16079, 16081], + "is-u", + [1, 2343, 16086], + "is-utf8", + [0, 16093, 16097, 2514, 2399], + [3, 549, 23], + [2, 16087, 1172], + [2, 12772, 8532], + [2, 1652, 16089], + "-reporters", + [2, 11086, 16091], + [0, 2017, 23783, 2131], + [3, 1566, 12], + " changelog", + [2, 16094, 16095], + [0, 4729, 3421, 23785, 1149, 2899, 4135, 2025, 4218, 1537, 1159, 4220], + [1, 2343, 16099], + [0, 16100, 16101, 16102, 2523], + [0, 23791, 1676], + [0, 5245, 5087, 4874, 1151, 1192, 4468, 91, 2658, 2190], + [0, 27, 2658, 6652, 4575], + [1, 2343, 16104], + [0, 16105, 16106, 16118, 2537], + [0, 10406, 1676, 2659, 2743, 2747, 3170], + [ + 0, 192, 5467, 442, 5245, 5601, 6494, 19386, 5087, 8778, 4874, 9240, 9241, 1364, 1177, 1895, 1955, 2026, 2182, + 2203, 2675, 1192, 2990, 23800, 3445, 5561, 20085, 1894, 4342, 4468, 91, 4523, 4729 + ], + "es2015-tag", + "es6-tag", + "heredoc", + "indents", + "literal", + "multiline", + "oneline", + "single", + "singleline", + "strings", + "tagged", + [0, 17179, 2658, 2663, 27, 2671, 1544, 2026, 2078, 23802, 23803, 1387, 2323, 2256, 4699, 4729, 1594], + [1, 2343, 16120], + [0, 16121, 16122, 16124, 2537], + [0, 2591, 3171, 1437, 23808, 23809, 3456, 3183, 4566, 1304, 2659, 3560, 23811, 2623], + [0, 23813, 4384, 1177, 2026, 705, 23816], + "observe", + [0, 200, 1523, 2947, 27, 2671, 2665, 23818, 36], + [1, 2343, 16126], + [0, 0, 16127, 16129, 2537], + [ + 0, 4493, 2675, 2899, 1177, 4170, 4474, 1894, 442, 1529, 91, 4874, 2990, 19193, 6503, 16954, 192, 4257, 19335, + 4523, 1951, 1895, 1955, 5467 + ], + "on-headers", + [0, 27, 1544, 4967, 6622, 2026], + "compressible", + [1, 2343, 16132], + [0, 0, 16133, 16134, 4139], + [0, 4864, 5087, 23829, 1009, 1011, 1177, 1883, 1938, 2151, 1192, 3117, 4468, 4473, 4474, 91], + [0, 202, 27, 18413, 23831, 23832, 6622, 5281], + [1, 2343, 16137], + "buffer-from", + [0, 0, 0, 16138, 2537], + [0, 2671, 23837], + [1, 2343, 16140], + [0, 16143, 16147, 16153, 2537], + "-command", + [2, 1614, 16141], + [0, 1676, 23791], + "@hirez_io/observer-spy", + "@swc/jest", + [3, 7749, 12], + [0, 1192, 2658, 4468, 2190, 91, 5087, 4874, 1154, 5245, 1151, 23843], + "-quote", + [2, 16146, 16148], + [2, 1596, 4845], + "ctrlc-wrapper", + [2, 32524, 2994], + [0, 2671, 2658, 6652, 4575], + "instance", + [1, 2343, 16156], + [0, 0, 0, 16157, 2399], + [0, 3358, 582, 3697], + [1, 2343, 16161], + "bash", + "sh", + [0, 16162, 9264, 16163, 2443], + [0, 16136, 15019, 4431], + [0, 3101, 27, 4714, 705, 3038, 3689, 10074, 6865, 6704, 21360], + [1, 2343, 16165], + [0, 0, 16169, 16170, 2523], + "cson", + "hjson", + "x2js", + [0, 6061, 21120, 6063, 1570, 1177, 1895, 23860, 1894, 4042, 4131, 4389], + [0, 23862, 590, 1623, 1420], + "fig", + "node-config", + [1, 2343, 16175], + "config-node", + [0, 0, 10435, 16176, 2523], + [0, 23868, 23869, 23870, 4545, 23872, 23874, 23875, 23876, 3547, 23877, 23878, 23879, 23881, 23883], + [1, 2343, 16178], + [0, 16180, 16182, 16183, 2537], + "atom", + [0, 23888, 1676, 23891, 23894, 23897, 3257], + "atomically", + [ + 0, 1149, 1575, 1177, 1895, 1903, 1938, 1954, 1955, 1958, 1970, 2026, 2675, 2990, 2899, 3421, 1894, 4170, 4193, + 4745, 4342 + ], + [0, 1283, 2679, 6728], + "xdg-basedir", + [1, 2343, 16187], + "prefer", + [0, 6263, 16190, 16191, 2523], + "preferences", + "persist", + [ + 0, 27386, 53, 5749, 5241, 83, 85, 87, 90, 94, 5583, 811, 816, 10615, 4874, 1009, 1011, 7677, 1290, 1596, 1597, + 1177, 1881, 1895, 1915, 1938, 23909, 2675, 23913, 23915, 23917, 23921, 23926, 2990, 1894, 4039, 4042, 4193, 91, + 1984 + ], + [0, 2681, 23932, 2679, 8930, 23933, 6728, 23934, 23936], + [1, 2343, 16193], + [0, 0, 16194, 16195, 2537], + [0, 442, 10817, 6061, 6063, 1009, 1011, 1177, 1895, 1955, 2203, 1894, 4042, 4057, 4131, 91], + [0, 2681, 23942, 5995, 1932], + "rack", + [1, 2343, 16198], + [0, 16199, 16200, 16201, 2537], + [0, 23948], + [0, 3421, 1149, 23950, 8431, 2899, 23952, 1177, 4135, 705, 27387, 91, 4874, 2024, 29197, 5517, 19344, 7844], + [0, 8431, 6270, 8426, 8425], + "flash", + [1, 2343, 16204], + [0, 16205, 16206, 16207, 2523], + [0, 23960], + [0, 1175, 1193, 1267, 1272, 1596, 1177, 1881, 1938, 2774], + [0, 2658, 23964, 13445, 1192, 3212], + [1, 2343, 16209], + [0, 0, 16210, 16212, 2537], + [0, 48, 53, 87, 1009, 1676, 1177, 23971, 1938, 3188, 23974, 4039, 23975, 4384, 4449, 4474, 91], + "kruptein", + [0, 2687, 23977, 16774, 3410, 3624, 10057, 7131, 6961, 1108, 21541, 2070, 23980, 23982], + [1, 2343, 16214], + [0, 0, 16215, 16216, 2487], + [0, 1414, 2070, 4493, 4474, 4508, 91, 4865, 4874, 11976], + [ + 0, 158, 4202, 23989, 23992, 4289, 18081, 12350, 20650, 20733, 20639, 20709, 23993, 20651, 20680, 21881, 20752, + 18048, 20653, 8221, 23994, 23995, 12349 + ], + [1, 2343, 16218], + [0, 16219, 16220, 16221, 2523], + [0, 24003, 18525, 4207, 2205, 24004, 2096, 6639, 29721, 20624, 22246], + [0, 1906, 1166, 1700, 4400, 18051, 24006, 18047], + [0, 3178, 15215, 158, 11806, 21881, 20637, 18048, 20639, 8221], + [1, 2343, 16223], + [0, 16224, 16225, 16226, 2523], + [0, 24003, 2020, 24012, 6639, 24013, 20624], + [0, 1414, 1906, 1166, 91, 4874], + [0, 15215, 158, 24016, 3178, 6707, 18048, 24017], + [1, 2343, 16228], + [0, 16229, 0, 16236, 2399], + [0, 24022, 3923], + "defu", + "nicode-supported", + [2, 16083, 16231], + "sentence", + "sentencer", + "sisteransi", + [0, 2695, 18641, 1823, 24024, 5576], + "reporter", + "elegant", + "clack", + "stacktrace", + [1, 2343, 16242], + [0, 0, 16243, 16244, 34352], + [ + 0, 53, 4874, 7677, 1596, 24029, 24030, 2126, 2675, 2700, 24032, 1209, 3028, 1894, 3720, 3875, 4039, 24033, 4131, + 4493, 33863, 91, 1983, 1984 + ], + [0, 2700, 24036, 24038], + "arc-templates", + "brac", + "ket-template", + [2, 16246, 16247], + "dust", + "js-helpers", + [2, 16249, 16250], + "dustjs-", + [1, 2343, 16254], + [0, 0, 16258, 16266, 4139], + "linkedin", + [2, 16252, 16255], + "eco", + [0, 24045, 5087, 1596, 1192, 4039, 4468, 4487, 91], + "haml-coffee", + "hamlet", + "htmling", + "jazz", + "jqtpl", + "just", + "liquid-node", + [0, 24047], + "liquor", + "mote", + "plates", + "qejs", + "ractive", + "slm", + [2, 4371, 2229], + "teacup", + "tinyliquid", + "toffee", + "twig", + "twing", + "vash", + "velocityjs", + "walrus", + "whiskers", + [1, 2343, 16285], + "engine", + [0, 0, 0, 16286, 2537], + [0, 2700, 7007, 7189, 2382, 6957, 6564, 6910, 7282, 6769, 6917], + [1, 2343, 16288], + [0, 9670, 16289, 16291, 2523], + [0, 1166, 2592, 4481, 1906], + "rfc6266", + [0, 3209, 2325, 15759, 15760, 1237, 2145, 24057], + [1, 2343, 16293], + [0, 16294, 16295, 16297, 2487], + [0, 3537, 13780], + [0, 1166, 16499, 1700, 2020, 1906], + "rfc7231", + [0, 1204, 2703, 3209, 814, 2202, 15525, 16186, 200], + [1, 2343, 16299], + [0, 16300, 16301, 16302, 2523], + [0, 24069, 24073, 24075, 24077, 24078, 24080, 24081], + [0, 4874, 9241, 1177, 24085, 1894, 91], + [ + 0, 13527, 36, 24088, 24089, 1965, 20986, 24090, 5592, 17829, 24091, 11100, 24092, 4030, 7096, 5122, 5130, 38, + 7433, 24093, 7223, 6599, 27, 2671, 4699, 14609, 24095, 1896, 5995, 12660 + ], + [1, 2343, 16304], + [0, 0, 8134, 16305, 2399], + [0, 8958, 1871, 2966, 14903, 3924, 2585, 1794, 7067], + [3, 1567, 23], + [2, 16306, 1098], + [3, 1570, 25], + "@conventional-changelog/git-client", + [2, 16308, 23], + [2, 16306, 1177], + [1, 2343, 16313], + [0, 16314, 16315, 16317, 4139], + [0, 23184, 1366, 23187, 2607, 2812, 3084], + [0, 1501, 2556, 620], + "tom", + [0, 2090, 7204, 1852, 2556, 1932], + [1, 2343, 16319], + [0, 16320, 16324, 16325, 2487], + [0, 1639, 24114, 6330], + [2, 10832, 1194], + [2, 16306, 16321], + [2, 4402, 4202], + [0, 24118, 24117], + [0, 2711, 6681, 5130, 10772, 24120, 1936, 24122, 36, 965, 1388, 4042, 23361], + [1, 2343, 16327], + [0, 0, 16328, 16331, 2537], + [0, 91, 1984], + "add-stream", + "tempfile", + [0, 2712, 24128, 24129, 3547, 23877, 23870, 4545, 24130, 10915, 23872, 23878, 23874, 23879, 23881, 23883, 23875], + [1, 2343, 16333], + [0, 0, 11686, 16334, 2399], + [0, 24136, 1227, 24137, 24138, 24140, 2713, 1388, 1389], + [1, 2343, 16336], + [0, 0, 6538, 2514, 2523], + "compare-func", + [1, 2343, 16339], + [0, 16343, 16344, 16345, 2523], + "commits.org", + [2, 16094, 16340], + "preset", + [ + 0, 24151, 1107, 1110, 24152, 1437, 1471, 1477, 1486, 13763, 16485, 2709, 20044, 24153, 14676, 4116, 4174, 4208, + 13781, 4290, 16323, 4507, 9731, 4726, 4729, 24154 + ], + [ + 0, 15288, 13789, 826, 24156, 4874, 4880, 24157, 34148, 24162, 6513, 24164, 9241, 24165, 1166, 1371, 1702, 24166, + 1959, 1961, 3242, 3339, 3479, 1894, 89, 24169, 4193, 4294, 4474, 91, 1906 + ], + [0, 89, 200, 1219, 8634, 4963, 6876, 3698, 3875, 24171, 8924, 1512, 2585], + [1, 2343, 16350], + "inline-s", + [3, 5588, 9], + [2, 16347, 16348], + [0, 0, 16351, 16352, 2443], + [ + 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 1623, 1177, 1955, 10964, 2203, 2675, 1192, 2990, 3400, 1894, + 23535, 4042 + ], + [0, 2718, 24177, 590, 57, 1623], + [1, 2343, 16354], + [0, 0, 0, 16355, 2487], + [0, 24182, 24183, 18496, 6574, 7242, 21779, 202, 200], + "top-sites", + [1, 2343, 16359], + "cookies", + [0, 16360, 16361, 6151, 2537], + [0, 31874, 546, 8998, 8605, 8612, 24188, 4094], + [0, 8608, 91], + [1, 2343, 16363], + [0, 16364, 16365, 16366, 2443], + [0, 1107, 2089, 3527, 24188, 4094], + [0, 2126, 2163, 2720], + [ + 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 1836, 6847, 8625, 2720, 8626, 8628, 5284, 4403, 202, 6710, 3741, + 8630, 3742, 8631, 3925, 2184, 8634, 7009, 6621, 181, 8635, 4758, 8636 + ], + [1, 2343, 16368], + [0, 16369, 0, 16370, 4139], + [0, 24202, 1512], + [0, 24204, 202, 9143, 13392], + [1, 2343, 16372], + [0, 0, 16373, 16374, 2487], + [0, 1734, 2899, 24209, 4072], + [0, 5260, 3209, 10906, 24211, 1388, 24213, 1808, 1161], + "sign", + "unsign", + [1, 2343, 16378], + [0, 0, 16379, 16380, 4139], + [0, 1177, 1889, 1954, 2022, 2822, 2899, 3421, 20314, 3932, 3985, 24220, 4167], + [0, 1507, 24223, 1509, 3595, 5194, 676, 1781, 2856, 1219, 89, 24224, 4452, 4799, 91, 6523, 4745, 17307], + "-selection", + [2, 15813, 16381], + [1, 2343, 16386], + "@brettz9/node-static", + "-standa", + [0, 0, 16390, 16391, 4139], + "lone-jar", + [2, 16385, 16387], + [2, 13131, 16388], + [ + 0, 1149, 1173, 1178, 1240, 24231, 24234, 1245, 1257, 1267, 24235, 1280, 24237, 24241, 24245, 24247, 24249, + 24251, 24254, 24257, 24259, 24262, 24264, 24266, 24269, 24272, 1474, 1498, 1177, 24273, 2099, 2070, 2228, 2240, + 2247, 2258, 24274, 24275, 2272, 3188, 3435, 4039, 4042, 4045, 4055, 24278, 13674, 4069, 4077, 22031, 4151, 4652 + ], + [0, 2728, 2679, 23932, 24282, 6422], + [1, 2343, 16393], + [0, 0, 16394, 16395, 2537], + [ + 0, 19, 21, 24, 26, 32, 5241, 92, 8648, 840, 968, 974, 4874, 4880, 4883, 1009, 1011, 11016, 33975, 1198, 1622, + 668, 1177, 1915, 1938, 1939, 1959, 1961, 2075, 24289, 10697, 24291, 2228, 2239, 2240, 2247, 2256, 2263, 2283, + 24295, 2308, 2314, 2665, 1192, 2780, 2814, 3003, 3541, 1894, 10622, 89, 3824, 2278, 4164, 3709, 4436, 4474, 91, + 1983, 26744, 188, 13151, 4769 + ], + [ + 0, 24298, 24299, 24302, 7285, 7310, 5131, 6847, 7210, 5399, 5284, 1932, 1623, 1936, 7020, 6983, 89, 188, 1098, + 3709, 4627, 91 + ], + [2, 4865, 2199], + "rmalize-path", + [2, 10409, 16397], + "rialize-javascript", + [2, 5252, 16399], + "@webpack-c", + "ontr", + "ib/eslint-config-webpack", + [2, 16402, 16403], + [2, 16401, 16404], + [1, 2343, 16408], + "is-gzip", + [0, 16409, 16411, 16412, 2523], + [0, 3082], + "transfer", + [0, 1389, 2126, 4384], + [0, 1973, 2731], + [1, 2343, 16414], + [0, 16416, 16417, 16418, 2487], + "noms", + [0, 16579, 16585, 23711], + [0, 4874, 7677, 1177, 1894, 3951, 4039, 4042, 4469, 4484, 91, 1984], + [0, 14428, 24316, 14416, 24319, 24320, 5284, 202, 91], + [1, 2343, 16420], + [0, 16422, 16426, 16427, 2523], + "qr", + [ + 0, 4390, 1687, 24346, 3445, 3348, 1437, 1676, 4484, 1209, 4135, 4238, 6331, 4431, 24347, 4339, 24345, 24332, + 24337, 22651, 24349, 24335, 24340, 24327, 24338, 24339, 24344, 24343, 24329 + ], + "simple qr", + "npm qr JavaScript", + "js qr code", + [ + 0, 1192, 4039, 4487, 4468, 2774, 13214, 4227, 91, 17577, 5087, 4874, 24354, 7819, 2990, 5245, 4870, 5254, 24358, + 24356, 18435, 24360, 24352 + ], + [0, 2733, 24362, 24363, 5131, 1896, 24364, 1591, 970, 3525], + [1, 2343, 16429], + [0, 16433, 16434, 16436, 2523], + [3, 1590, 15], + "sample", + [2, 16430, 16431], + [0, 8641], + [0, 8648, 4864, 5087, 4874, 24370, 2151, 1192, 2774, 27442, 3401, 1894, 3758, 4039, 4135, 4146, 4361, 4494, 91], + [2, 16423, 1501], + [0, 24373, 2733, 1017, 8221, 5131, 20523, 4627, 24374, 5027, 12295], + [1, 2343, 16438], + [0, 16439, 16440, 16441, 2537], + [0, 24379, 24382, 1676, 24383, 3032, 24386, 24389, 24391, 24393], + [ + 0, 24397, 6061, 16607, 6063, 4856, 9417, 5245, 24398, 24400, 6503, 4874, 24403, 6513, 1009, 1011, 1429, 1431, + 1177, 1895, 2899, 3421, 1894, 4131, 4153, 4193, 4474, 4481, 4508, 91, 3348 + ], + [0, 1552, 24093, 24406, 24408], + "insight", + "-lib", + "cordova-lib", + "cordova-", + [2, 16445, 10896], + "cordova-c", + "reate", + [2, 16447, 16448], + "loud-rejection", + [1, 2343, 16455], + "@cor", + "dova/eslint-config", + [2, 16452, 16453], + [0, 0, 16456, 2514, 4139], + [0, 2899, 1177], + [1, 2343, 16458], + [0, 16459, 16463, 2514, 2523], + [0, 24416, 8431, 24419], + "4", + "ES2024", + [2, 6796, 16460], + [0, 24421, 2080, 2292, 4389], + [1, 2343, 16465], + [0, 0, 16466, 16467, 2537], + [0, 1158, 3421, 4389, 1177, 14741, 2708, 4103, 13614, 15059], + [0, 614, 998, 1973], + [1, 2343, 16469], + [0, 16470, 16471, 9636, 34352], + [0, 1458], + [0, 1470, 4255], + [1, 2343, 16475], + "env-paths", + "parse-json", + [0, 16486, 16487, 16488, 2537], + "arse-", + "arse-json", + [2, 5088, 16477], + [3, 7677, 17], + [2, 16479, 2759], + "davidtheclark-node", + [2, 1884, 16481], + [3, 16481, 13], + [2, 3996, 16483], + "es-toolkit", + [0, 24437], + [0, 2398, 2899], + [0, 16159, 15643, 4354, 2978, 7256, 24440, 2070, 21543, 24441, 2741, 3529, 6421, 13017, 1108, 6920, 1871, 1973], + [1, 2343, 16490], + [0, 16493, 16494, 16495, 2443], + "lcov-parse", + "log-driver", + [0, 24446, 17450], + [0, 1166, 16499, 1700, 2020, 3093, 4481, 1906], + [0, 2202, 3383, 24449, 1237, 1161, 24450, 3378, 4749, 2741, 4354, 13735, 2703, 24451, 200, 20052, 17180], + [1, 2343, 16497], + [0, 0, 8134, 16498, 2487], + [0, 3048, 2741, 4354, 1973, 998, 19096, 24456, 7523, 2869], + "cpy", + [1, 2343, 16501], + [0, 0, 16505, 16506, 34352], + "cp", + [3, 12419, 11], + "contents", + [0, 1429, 1999, 2398, 2899, 3198, 4042], + [0, 4354, 2741, 24462, 2757, 5284, 24463, 20273, 3048, 19096, 998, 7031, 6692], + [1, 2343, 16508], + [0, 0, 16510, 16514, 2523], + "hpagent", + [0, 2899, 3954], + "http2-wrapper", + "seenreq", + "tslog", + [0, 1936, 24374, 24470, 11608], + "@types/got", + [1, 2343, 16519], + "spider", + "gzip", + [0, 0, 16520, 16521, 2523], + [0, 4874, 1166, 4400, 4481, 1906], + [0, 3101, 998, 7046, 7089, 7017, 6704, 353, 4354, 13735, 2741], + [1, 2343, 16525], + "crc16ccitt", + "crc16", + [0, 16527, 16529, 16535, 2523], + "crc16kermit", + [0, 24488], + "crc16modbus", + [0, 1166, 24491, 4481, 1906], + "crc16xmodem", + "crc1", + "crc24", + "crc81wire", + "crc8", + [0, 4354, 24493, 6574, 24494, 6667, 13735, 16159, 3729, 7201, 7009, 2741], + "crc8dvbs2", + "crcjam", + [1, 2343, 16539], + [0, 0, 9264, 16540, 2443], + [0, 1388, 2756, 4552], + [1, 2343, 16545], + "cipher-base", + "ripemd160", + "sha.js", + [0, 0, 16546, 16547, 2443], + [0, 1999, 2398, 2899, 4042], + [0, 4354, 2741, 24462, 2757, 24463, 20273, 24504, 970, 3048, 998, 7031, 6692], + [1, 2343, 16549], + [0, 16550, 16551, 2514, 2523], + [0, 3310, 4705], + [0, 1429, 2272, 24512, 2899, 3297], + [1, 2343, 16553], + [0, 16554, 16555, 16556, 2537], + [0, 2070, 3368, 3441, 1149, 4707, 23432, 3188, 2003, 2822, 814, 4720, 1875, 2036, 4351], + [0, 2272, 4039, 2276, 1596, 4019], + [0, 4504, 24520, 24521, 24525], + "async-t", + "-tree", + "raverse-tree", + [2, 16557, 16559], + "css-u", + "rl-parser", + [2, 16561, 16562], + "uri-to-", + [2, 16564, 1398], + [2, 14678, 16565], + [1, 2343, 16577], + "group-args", + "inline-", + [2, 16569, 1604], + "oust", + "penthouse", + [3, 3591, 15], + [3, 3611, 14], + "inliner", + [2, 16574, 16575], + [0, 16582, 11580, 16583, 2537], + "postcss-url", + "@inversifyjs/common", + "newline", + [2, 3370, 16580], + [0, 2152, 3348, 18545], + [0, 2760], + "stream-array", + [2, 23712, 29231], + [1, 2343, 16588], + "optimization", + [0, 16589, 16590, 16591, 2523], + [0, 1156, 1699, 1817, 24536, 3070, 3559, 4443, 24537], + [ + 0, 24539, 1173, 1175, 1191, 1195, 1201, 1220, 1230, 24541, 1245, 1255, 18571, 1264, 1279, 1282, 1429, 24542, + 1584, 1610, 1628, 1177, 1988, 2054, 2092, 2148, 2323, 2332, 2361, 2450, 2494, 2629, 2651, 2297, 2881, 2886, + 2900, 18260, 2921, 2923, 2925, 695, 2969, 21082, 2899, 4193, 4196, 4307, 4487, 91, 4537, 4027, 188, 4632, 24545, + 4634, 4639, 4640, 4645, 2924, 4681, 4689 + ], + [0, 2761, 188, 6284, 4627, 4963, 181, 5130], + [1, 2343, 16594], + "@fast", + [0, 16613, 6161, 16614, 2537], + "-check/jest", + [2, 16593, 16595], + "@insurgent/commitlint-config", + [3, 16597, 13], + "nvent", + "ional-changelog-preset", + [2, 16599, 16600], + [2, 16598, 16601], + [3, 6061, 19], + "ommit", + "-analyzer", + [2, 16604, 16605], + [2, 16603, 16606], + [2, 6062, 3378], + "-generator", + [2, 11155, 16609], + [2, 6019, 16610], + [2, 6062, 16611], + [0, 548], + [0, 7233, 57, 7058, 5675, 7210, 200, 1523, 3924, 1644, 7119], + "node cron", + [1, 2343, 16620], + "node-cron", + "schedule", + "cronjob", + [0, 16622, 16623, 2514, 2537], + "cron job", + [0, 24560, 1462, 1525, 24562, 24563, 3188, 24564, 4535, 24566, 5056], + [ + 0, 24570, 24571, 1596, 2026, 24574, 2034, 24576, 24577, 24581, 24584, 24587, 24591, 24592, 24593, 24594, 24596, + 24598, 24599, 3127, 3456, 24600, 4039, 24601, 24602 + ], + [1, 2343, 16625], + [0, 16627, 16628, 16632, 2523], + "tz", + [0, 1149, 24607, 3527], + [0, 442, 1177, 10751, 2203, 2899, 3760], + "timer", + "tab", + "crontab", + [0, 6147, 200, 7048, 24610], + [1, 2343, 16634], + [0, 16635, 16648, 16651, 2537], + [0, 24617], + "@prantlf/jsonlint", + "@prettier/plugin-xml", + "@stryker-mutator/core", + [3, 16638, 17], + [2, 3192, 8791], + [2, 16639, 16640], + [3, 15909, 16], + "ray-func", + [2, 16642, 16643], + [3, 13097, 17], + "unsanitized", + [2, 16645, 16646], + [ + 0, 5583, 816, 6373, 10615, 11301, 24621, 24624, 1462, 1610, 24625, 2675, 2814, 16830, 2990, 3170, 24627, 4042, + 8849, 20983 + ], + "metalint", + "yaml-lint", + [0, 24631, 158, 12083, 24633, 24634, 20634], + [1, 2343, 16653], + [0, 16654, 16655, 16659, 2487], + [0, 2070, 2766, 23576], + [0, 1177, 24287], + [2, 1601, 7179], + [3, 3606, 9], + [2, 16657, 2408], + [0, 1973, 5472, 2765, 6969, 5982], + "zoom", + "rotate", + "scale", + "cropper", + "cropper.js", + [1, 2343, 16667], + [2, 29236, 594], + [0, 0, 16668, 16659, 2523], + [0, 19181, 442, 1137, 24645, 1797, 1177, 1924, 2070, 2203, 2832, 1894, 2278], + [1, 2343, 16670], + [0, 16671, 0, 16672, 2523], + [0, 2164, 3188, 24653, 4019, 4545, 1509, 24652, 24651], + [0, 5472, 5982], + "ironment", + [2, 1610, 16673], + " variable", + [2, 6639, 16675], + [1, 2343, 16678], + [0, 16679, 0, 6183, 2537], + [0, 551, 554, 2704, 2774], + [1, 2343, 16681], + [0, 16682, 16683, 16684, 2487], + [0, 24665, 24666], + [0, 14671, 48, 53, 61, 87, 192, 22559, 1193, 24668, 1596, 2675, 1192, 1894], + [0, 3212, 1192, 11944, 1795, 1424, 1973, 2275], + [1, 2343, 16686], + [0, 16689, 16695, 6183, 2487], + "path-key", + [2, 6987, 16141], + [0, 551, 8762, 554, 1437, 29680, 2704, 8734, 2798, 8747, 4747], + [3, 10688, 14], + "oxy", + [2, 16690, 16691], + [3, 15793, 15], + [2, 16693, 16691], + [0, 4892], + "spawnSync", + [2, 1611, 12344], + [1, 2343, 16700], + "path-ext", + [0, 16702, 16703, 2514, 2487], + "execute", + [0, 16729, 13002, 1437, 3717], + [0, 8776], + [1, 2343, 16705], + [0, 16706, 16703, 2514, 2523], + [0, 24690, 16738, 13204, 4874, 2832], + [1, 2343, 16708], + [0, 16714, 16715, 2514, 2537], + "cipher", + [2, 13888, 16709], + [3, 1391, 12], + "ign", + [2, 16711, 16712], + [0, 24690, 24694, 554, 11944, 2798, 2832], + [0, 5087, 13204, 4874, 2675, 1192, 3188, 1894, 3720, 4039, 4468, 91], + "create-ecdh", + [1, 2343, 16727], + "mac", + "create-hmac", + "ie-hellman", + [2, 1687, 16720], + "pbkdf2", + "publi", + "c-encrypt", + [2, 16723, 16724], + "randomfill", + [0, 16730, 16731, 2514, 34352], + [2, 6426, 3779], + "@jest/diff-sequences", + [0, 24690, 24694, 554, 4874, 11944, 2798, 8747], + [0, 8776, 1497], + [1, 2343, 16752], + "Hash", + "MD5", + "SHA1", + "SHA-1", + "SHA256", + [2, 24690, 20072], + "SHA-256", + "RC4", + "Rabbit", + "AES", + "DES", + "PBKDF2", + "HMAC", + "OFB", + "CFB", + "CTR", + "CBC", + "Base64", + "Base64url", + [0, 16753, 16754, 16755, 2523], + [0, 2777], + [ + 0, 107, 19438, 19181, 442, 20076, 5087, 1009, 1011, 1177, 1895, 1915, 1938, 1939, 1955, 2203, 2675, 1192, 24713, + 2802, 2990, 1894, 4468, 12206, 91 + ], + [0, 1192, 24715, 2051, 24717, 1973, 5472, 5710], + [1, 2343, 16760], + "roupon", + [2, 1887, 16757], + "nlm", + [0, 16761, 16762, 16763, 2537], + [0, 2151, 3445], + [ + 0, 53, 24723, 841, 968, 972, 974, 24725, 5087, 24727, 4874, 24729, 4880, 4883, 14552, 1114, 1193, 1195, 1216, + 1270, 1324, 1393, 1420, 1426, 1582, 1628, 1630, 1652, 1759, 1763, 1869, 1177, 1898, 24732, 2054, 2092, 2151, + 2651, 2686, 1192, 2797, 2802, 24733, 3177, 3376, 3561, 3605, 3618, 3647, 3672, 3742, 24734, 89, 3803, 3816, + 3824, 3878, 24737, 814, 4028, 2278, 4111, 4135, 4230, 4307, 4383, 4409, 91, 4027, 24739, 2924, 4676, 4681, 4686, + 4723 + ], + [0, 1192, 1936, 16237, 11937, 1932], + [1, 2343, 16776], + "@cspell/cspell-json-reporter", + [3, 16765, 15], + [2, 16766, 7170], + [2, 16766, 553], + "@cspell/", + [2, 16769, 15126], + "@cspell/url", + [2, 1622, 4304], + "cspell-", + "gitignore", + [2, 16773, 16774], + [0, 16777, 16784, 2514, 2537], + [0, 3188, 4294, 3348, 6523], + "cspell-glob", + "cspell-io", + "cspell-lib", + [2, 2068, 2851], + "entry-cache", + [2, 2093, 16782], + [0, 1192, 24746, 4207], + "@types/fi", + "le-entry-cache", + [2, 16785, 16786], + [1, 2343, 16795], + "spell", + "checker", + "spelling", + " checker", + "spell checker", + [2, 16791, 16792], + [0, 0, 0, 16796, 2523], + [0, 1192, 4749, 24753, 24754], + [1, 2343, 16798], + [0, 16800, 16801, 2514, 2487], + [2, 4229, 814], + [0, 1437, 2215, 8750, 2796, 2798, 8747, 4207, 12578], + [0, 8780, 1002], + [1, 2343, 16803], + [0, 16809, 16810, 2514, 4139], + "@rspack/cli", + "@mdn/browser-compat-data", + [3, 1200, 15], + [2, 16806, 6437], + [2, 812, 16807], + [0, 554, 4874, 1437, 1458, 2215, 3530], + [0, 8780, 20374, 1209], + "sorter", + [1, 2343, 16813], + [0, 16814, 16815, 2514, 2523], + [0, 1107, 1437, 8758, 8741, 4207, 15826, 4294], + [ + 0, 48, 53, 87, 92, 442, 11893, 554, 6061, 6063, 4874, 1193, 17217, 1610, 1177, 1895, 1915, 32525, 1939, 1955, + 2203, 1192, 24713, 1894, 4039, 4131, 4135, 91, 4523 + ], + [1, 2343, 16829], + "-verify", + [2, 13729, 16817], + [3, 4828, 15], + "itpick", + [2, 16819, 16820], + [3, 15801, 21], + "hangelog", + [2, 16822, 16823], + [2, 8184, 8166], + "version-", + [2, 16826, 13729], + "write-", + [0, 16832, 16833, 2514, 2487], + "json-file", + [2, 16828, 16830], + [0, 4874, 23247, 2798, 3159, 4351], + [0, 53, 24781, 9746, 23262, 2188, 24779, 24777], + [1, 2343, 16835], + [0, 16836, 16844, 16845, 2537], + [ + 0, 18635, 24786, 27788, 27793, 27795, 27796, 27797, 27802, 27813, 27817, 27820, 27825, 27832, 27833, 27834, + 27841, 27844, 27870, 27878, 27879, 27880, 27881, 27883, 27884, 27887, 24789, 27888 + ], + "icss-utils", + [3, 3638, 16], + [2, 2055, 5651], + [2, 16838, 16839], + [2, 16838, 1993], + [2, 16838, 6693], + "@hapi/address", + [ + 0, 27890, 27893, 27895, 24793, 8862, 811, 15460, 816, 10615, 17214, 1177, 27898, 3502, 4042, 4057, 15277, 23652, + 4483, 91, 27900, 1984 + ], + [0, 158, 24795, 24799, 18048, 20637, 21881, 20650, 24800, 16662, 12712], + [1, 2343, 16847], + [0, 0, 16848, 2514, 2487], + [ + 0, 53, 5652, 5226, 56, 15659, 71, 5704, 5712, 4851, 5785, 5874, 5889, 92, 5230, 101, 104, 16804, 33146, 10879, + 10883, 15693, 24807, 31666, 4874, 7677, 1082, 24813, 1446, 1541, 1556, 16230, 14856, 1874, 1177, 1905, 2007, + 984, 2071, 2744, 3171, 3189, 3222, 15726, 3510, 15450, 3698, 28423, 1894, 89, 3824, 3951, 15728, 15452, 4409, + 26379, 4469, 91, 1984, 188, 20040, 4763 + ], + [1, 2343, 16859], + "@parcel/css", + "@swc/css", + [3, 9740, 13], + [2, 16852, 1623], + "@types/csso", + "set-simple", + [2, 11327, 16855], + [2, 1637, 16856], + "csso", + [0, 0, 0, 16861, 2487], + "lightningcss", + [0, 6105, 24822, 24827, 6106, 24829, 24830, 1936, 2585, 6038, 24832, 5284, 91, 24833, 2808], + "minimize", + [3, 1629, 9], + [1, 2343, 16865], + [0, 16866, 16867, 16869, 2537], + [0, 2808], + [ + 0, 19438, 23339, 842, 966, 972, 974, 4880, 4883, 1009, 1011, 1610, 1628, 1177, 1895, 1955, 1959, 1961, 1985, + 2651, 2832, 1894, 89, 3824, 4068, 4307, 7873, 4474, 4493, 91, 1984, 2924, 4677, 4681 + ], + "boolbase", + [0, 89, 2808, 1936, 2585, 6038, 24842, 24829, 24830, 24843], + "nth-check", + [1, 2343, 16878], + [3, 7804, 9], + "olbase", + [2, 16872, 16873], + "cheerio-s", + "oupselect", + [2, 16875, 16876], + [0, 16880, 16881, 16882, 2537], + "sizzle", + [0, 1437, 24854, 24849, 24848, 4145, 6271, 3029, 3028, 24853], + [0, 3421, 1149, 2228, 4193, 3460, 1596, 2240, 15929, 2293, 1532, 24857, 2283, 2273, 2277], + [ + 0, 24859, 24860, 24861, 24862, 24863, 24864, 24867, 24868, 24869, 24872, 24873, 24874, 24875, 24876, 24877, + 24878, 24879, 24880, 24881, 24882, 24883, 24884, 24885, 24888, 24890, 24892, 24893, 24894, 24895, 24854, 24896, + 24897, 24898, 24899, 24902, 24904, 24905, 24906, 24907, 24908, 24909, 24912, 24915, 24917, 24920, 24922, 24924, + 24927, 24928, 24929, 24930, 24931, 24932, 24933, 24934, 24935, 24938, 24940, 24942, 24943, 24944, 24945, 24945, + 24946, 24947, 24948, 24949, 24950, 24951, 24952, 24953, 24955, 24956, 24959, 24960, 24961, 24962, 24963, 24966, + 24967, 24968, 24969, 24970, 24972, 24973, 24974, 24975, 24976, 24977, 24978, 12047, 24979, 24980, 24981, 24983, + 24985, 24986, 24988, 24991, 24992, 24993, 24994, 24995, 24995, 24997, 25000, 25001, 25002, 4040, 25003, 25004, + 4144, 4145, 25006, 25007, 25008, 25009, 25012, 25014, 25010, 25015, 25019, 25020, 25021, 25022, 25023, 25024, + 25025, 25026, 25027, 25028, 25029, 25030, 25033 + ], + [1, 2343, 16884], + [0, 16886, 16887, 16888, 2537], + "clap", + [0, 16843, 25038, 8335, 25039, 25040, 8353, 26364], + [0, 21662, 8357, 5500, 8359, 4874, 91], + [0, 2844, 7020], + "json-to-ast", + [1, 2343, 16893], + "walker", + "lexer", + [0, 0, 0, 16895, 2523], + "jquery-test-runner", + [0, 89, 6649, 10057, 6355, 25054, 1542], + [1, 2343, 16899], + "features", + "web-features", + [0, 0, 0, 16901, 2399], + "stages", + [0, 2814, 5284, 1388, 6082], + [1, 2343, 16903], + [0, 16904, 16905, 2514, 2537], + [0, 2814], + [0, 2228, 4039, 2203, 842, 25088, 25063, 2291, 25090, 3006, 25070, 25074, 16894, 25076, 2253, 2260, 23178], + [3, 7014, 10], + [1, 2343, 16908], + [0, 0, 16909, 16910, 2443], + [0, 4874, 2899, 91], + [0, 14357, 17180], + [3, 16857, 15], + [2, 16911, 10441], + [1, 2343, 16917], + "advanced", + [2, 16911, 16914], + [2, 16911, 2994], + [0, 16920, 16921, 16922, 2537], + "optimise", + [2, 5505, 5218], + [0, 25106, 18420, 2070, 2821, 3368], + [0, 1109, 1317, 1505, 2814, 2272, 3183, 2899, 3257, 4019, 4146, 4294, 2924, 4677], + [0, 14438, 24856, 25109], + "@jscpd/badge-reporter", + [1, 2343, 16925], + [0, 0, 16926, 16927, 2537], + [ + 0, 10615, 1177, 1903, 1937, 1948, 2228, 25074, 2256, 2277, 23165, 2283, 17565, 25060, 1894, 2907, 3980, 4042, + 11802, 4060, 4255 + ], + [0, 977, 16358, 1388, 5808, 10906, 5576, 2821, 1389], + [2, 27440, 27441], + [1, 2343, 16930], + [0, 16939, 16940, 16941, 4139], + [3, 4856, 9], + "okidar", + [2, 16931, 16932], + [2, 7632, 16558], + [3, 12842, 11], + [2, 16935, 4467], + "urndown", + [2, 7750, 16937], + [0, 1139], + [0, 3421, 1111, 2899, 1177, 4042, 4167, 2193, 1317, 1505, 2064, 4073, 811, 816, 19232], + [0, 4745, 57, 1753, 6713], + [1, 2343, 16943], + [0, 16945, 16946, 16947, 2399], + "csrf", + [0, 58, 12184, 1525, 1676, 1696, 2070, 25125, 27534, 1997, 25126], + [ + 0, 442, 8719, 842, 8712, 16145, 4874, 1527, 1567, 1652, 1177, 1895, 1939, 1955, 1192, 2829, 22509, 22511, 1894, + 4039, 91, 4523 + ], + [0, 25135, 1745], + [1, 2343, 16949], + [0, 16951, 16955, 2514, 2537], + "@acemir/cssom", + [0, 1512, 1525, 2151, 25141, 16923, 25147, 25144, 25148, 25142, 25146], + [2, 812, 1177], + "ould", + [2, 7747, 16953], + [0, 5536, 4864, 4874, 7677, 3363, 4474, 4493, 91, 1984], + "tsv", + "generation", + [1, 2343, 16959], + [0, 16960, 16961, 16962, 2487], + [ + 0, 1437, 1481, 1525, 25154, 2004, 2021, 2070, 2654, 2822, 25156, 25160, 15555, 1209, 3181, 12118, 15371, 3741, + 25162, 814, 4296, 4300, 25163, 25164, 21956, 25165, 4736 + ], + [0, 1429, 1596, 6474, 2272, 2899, 3954, 4037, 4193, 4196, 25168, 25170, 4734], + [0, 19271, 4525, 671, 9654, 25172, 2649], + [1, 2343, 16965], + "@bramus/specificity", + [0, 16967, 16968, 16969, 2537], + "coffeelint", + [0, 58, 25177, 7639, 1362, 25178, 1874, 25179, 21226, 3105, 3107, 3127, 3188, 25181, 4300, 4545], + [0, 1091, 2323, 2384, 2449, 3421], + [0, 1745, 5284], + [1, 2343, 16972], + "csv-spectrum", + [0, 16973, 0, 16974, 2537], + [0, 16053, 17786, 25190, 17788, 1776, 25193, 17798], + [0, 1776, 5592, 13325, 8626, 5284, 1745], + [1, 2343, 16976], + [0, 16977, 0, 16978, 2523], + [0, 16053, 1519, 1522, 25203, 1727, 2826, 4783, 17798], + [0, 1776, 1783, 5592, 1179, 5284, 676, 1745], + [1, 2343, 16980], + [0, 16981, 16982, 16983, 2523], + [ + 0, 16950, 16928, 16964, 15956, 1638, 25211, 25212, 2623, 2661, 2674, 2750, 3493, 25213, 25215, 4454, 4548, + 25216, 23201, 15502, 25217, 19851 + ], + [0, 23591, 1177, 1937, 1953, 2203, 2822, 3181, 2899, 25221, 3401, 3456, 3549, 4135, 4153, 4441, 27602, 25224], + [0, 965, 1936, 7102, 12616], + "csv parser", + [1, 2343, 16987], + "parse csv", + [0, 16988, 16992, 16983, 2523], + [0, 25231, 25232, 1638, 2654, 25233, 3493, 705, 19851, 4738], + "csv to json", + "csv convert", + "tojson", + [0, 1389, 1512, 2665, 2272, 16112, 2276, 3560, 3760, 25238, 4652], + " csv to json", + [2, 6270, 16993], + "csv-json", + [1, 2343, 16997], + [0, 0, 16998, 16999, 2537], + [0, 1596, 2228, 2240, 14352, 2759, 2899, 3954, 4019, 25244], + [0, 1398, 1867, 5284, 1781, 3053, 3065, 1871, 1646, 4990], + [2, 1649, 6451], + "cucumber-", + [2, 17001, 6466], + "duration", + [1, 2343, 17005], + [0, 17012, 17014, 2514, 4139], + "enerator", + "is-generator", + [3, 4143, 10], + [2, 17008, 1851], + "stack-chain", + [2, 16240, 1592], + [0, 200, 15014, 2021, 2654, 1209, 3181, 4300], + "ansi-html", + [0, 1149, 1389, 1566, 13985, 1596, 2759, 2292, 3211, 2276, 3758, 3954, 25251, 4193, 15136, 25253, 25256], + [1, 2343, 17016], + [0, 17017, 17022, 17024, 2523], + [0, 1437, 3074, 3545, 15826, 4425, 22972], + [3, 1976, 18], + [2, 17018, 4414], + "riteway", + "updtr", + [0, 2272], + "unique", + [0, 2272, 16237, 4525, 1671, 671, 2649, 25264, 16238, 3721], + "unique id", + [1, 2343, 17027], + [0, 17028, 17029, 17030, 2537], + [0, 25269, 25272], + [0, 6503, 4874, 1009, 1011, 1177, 1886, 1938, 2899, 3421, 4474, 91], + [0, 1781, 17420, 1641, 15253, 6813, 25276, 25277, 1644, 57, 2841, 25279, 200], + "ospath", + [1, 2343, 17033], + [0, 0, 17035, 2514, 4139], + "lazy-ass", + [0, 4257], + "blob-util", + [3, 8129, 9], + [1, 2343, 17043], + "@cypress/xvfb", + "zzle", + [2, 6545, 17040], + [2, 17037, 705], + [0, 0, 0, 17048, 34352], + "more-types", + [2, 14614, 17044], + [3, 4008, 11], + [2, 17046, 6509], + [0, 1781, 2844], + "cypress.io", + "mocks", + "spies", + "stubs", + [1, 2343, 17054], + [0, 17055, 17056, 17060, 2537], + [0, 975, 983, 15951, 1437, 1457, 8098, 7614, 2712, 2856, 3083, 25292, 4200, 25294], + [0, 4874, 1540, 2182, 2675, 33479, 30889, 4400, 4507, 91], + [3, 13848, 19], + [2, 17057, 3172], + "longest", + [0, 6671, 36, 21147, 8173, 8172, 25094, 3212, 8788, 1973, 5472, 4030, 2382, 28726], + [1, 2343, 17062], + [0, 17063, 17064, 17065, 2399], + [0, 1417, 7272, 2756, 17827, 3433], + [0, 5517, 13614, 23237, 10979, 27571, 27016, 19325, 1159, 9254, 1177, 2708, 3410, 4103, 4389], + [0, 1781, 1646, 7185, 3428, 6333, 7077], + [1, 2343, 17069], + "d3-axis", + "d3-brush", + [0, 0, 0, 17070, 2523], + [0, 1781, 1646, 7045, 6953], + "d3-chord", + [1, 2343, 17073], + [0, 0, 17076, 17077, 2443], + "d3-contour", + "d3-delaunay", + [0, 1593, 1177, 1903, 1938, 1954, 1958, 1970, 3400, 3954, 4042, 4048, 4055, 4067, 4073, 4193, 4384, 25313], + [0, 1781, 2856, 1925, 6778, 5286], + "d3-dispatch", + [1, 2343, 17084], + "d3-drag", + "d3-dsv", + "d3-ease", + "d3-fetch", + [0, 0, 17085, 2514, 2537], + [0, 2899, 1177, 4039, 91, 4874, 6503, 1011, 1009], + "d3-force", + [1, 2343, 17088], + [0, 17094, 13658, 17095, 2537], + "d3-format", + "d3-geo", + "d3-hierarchy", + "d3-interpolate", + "d3-path", + [0, 21224], + [0, 3917, 6033, 2090, 1781, 2150, 2151], + "d3-polygon", + "d3-quadtree", + "d3-random", + "-chromatic", + [2, 1655, 17099], + "d3-time", + "-format", + [2, 17101, 17102], + "d3-timer", + [1, 2343, 17106], + [0, 0, 17109, 17114, 2523], + "d3-transition", + "d3-zoom", + [0, 16638, 16641, 1429, 1177, 25328, 2899], + "@observablehq/plot", + [3, 17110, 14], + [2, 17111, 7047], + "topojson-client", + [0, 1781, 2844, 2860, 1155, 7020], + "visualiz", + [2, 17115, 5218], + [1, 2343, 17118], + [0, 17119, 17120, 17123, 2523], + [0, 4430, 25336], + [0, 4389, 19987, 18718, 8924, 5710, 2012], + "intern", + "internmap", + [0, 1781, 3101, 22115, 57, 1149, 7119], + [1, 2343, 17126], + "d3-module", + [0, 17127, 17131, 17133, 4139], + [0, 3242, 25343, 4135, 25355, 25346, 25353, 3052, 25347, 25350, 3051], + "histogram", + "bisect", + "shuffle", + [0, 3413, 3421, 1157, 1429, 2899, 4193, 1177, 1566], + "stic", + [0, 2038], + "statistics", + [1, 2343, 17136], + [0, 17137, 17138, 2514, 2523], + [0, 53, 25363, 17144, 3467, 3527], + [0, 25366, 4874, 26142, 1415, 668, 1177, 1895, 3171, 3181, 3445, 1894, 4042, 4448, 91], + [1, 2343, 17140], + [0, 0, 17141, 17143, 2537], + [0, 4874, 7677, 20085, 4493, 91, 1984], + "uniqid", + [0, 6649, 6710, 5995, 25372, 89, 970, 5122, 3857, 5123], + "@jspm/plugin-rollup", + [1, 2343, 17148], + "selection", + "data-join", + [0, 17149, 17150, 17151, 2487], + [0, 25377, 3486, 20508, 3923], + [0, 4449, 2228, 2907, 1177, 1317, 2240, 1389, 3541, 91, 2665, 25379, 2236, 2281, 25383], + [0, 2056, 25386, 25388], + [1, 2343, 17153], + [0, 0, 17154, 17155, 2487], + [ + 0, 4172, 1192, 2675, 1177, 23535, 4468, 4474, 1894, 91, 53, 2990, 1387, 1540, 1938, 1895, 1955, 2780, 1011, + 1009, 1915 + ], + [0, 2038, 1388], + [1, 2343, 17157], + [0, 0, 17158, 17160, 2537], + [0, 2025, 2759, 2899], + "dable", + [0, 2038, 10368, 15103], + [1, 2343, 17162], + [0, 17163, 17168, 17170, 2487], + [ + 0, 14416, 4449, 2070, 3171, 25404, 4747, 15643, 1209, 3078, 3188, 4039, 1544, 1457, 3181, 4218, 2659, 4227, + 1364, 2215, 12930, 3781, 11804, 25403, 13388 + ], + [2, 21029, 17165], + " plugin", + [2, 21045, 17169], + "postcss-js", + [ + 0, 1429, 13333, 2899, 17050, 4193, 4707, 1177, 1649, 4650, 3758, 4342, 1389, 2878, 3752, 4196, 25411, 1436, + 2900, 2766, 2898, 192, 1431, 2871, 4131, 1954, 1938, 25407, 2904, 6063, 1958, 2881, 25410, 1903, 1970, 2895, + 22559, 6061, 2876 + ], + "ails", + [0, 2297, 25415, 8791, 2297, 676, 5284, 5472, 1973, 21004, 25416], + "laravel", + [1, 2343, 17173], + [0, 17174, 17175, 17176, 2487], + [0, 9421, 1209, 25421, 3181, 18868, 1573], + [ + 0, 3377, 1377, 1429, 2297, 2899, 4193, 4453, 12851, 1177, 814, 4650, 1389, 4196, 91, 3400, 2766, 2898, 15051, + 1951, 2881 + ], + [0, 25425, 25427, 25429, 1389], + [1, 2343, 17178], + [0, 17182, 17185, 17186, 2537], + "reverse", + "binary", + "opposite", + [0, 3760, 14336, 25092], + "invert", + "switch", + [0, 2228, 1177, 2307, 2239, 2291, 3006, 1954, 2234, 1938, 1958, 1903, 1970, 2285, 2290], + [0, 25425, 25436, 14336, 25437], + [1, 2343, 17188], + [0, 0, 0, 17192, 2537], + "@cap", + "temulation/get-parameter-names", + [2, 17189, 17190], + [0, 2297, 25425, 1429, 2899, 4170], + "faker-bb", + [2, 7526, 17193], + [2, 9769, 1676], + "rss-parser", + [2, 2032, 2663], + [2, 4364, 17197], + "lexxy", + [1, 2343, 34442], + [0, 4707], + [0, 1429, 2297, 2899, 4193, 4255, 2900, 192, 4131, 6063, 22559, 6061], + [0, 25425, 25436, 3195], + "@date-", + "fns/docs", + [2, 17204, 17205], + [1, 2343, 17208], + [0, 17211, 17224, 17225, 2523], + "@date-fns/utc", + [3, 5530, 19], + [0, 11935, 14024, 11938, 11940, 11943, 3181], + "@types/bun", + "@vitest/", + [2, 17213, 1388], + [3, 1198, 17], + [2, 2701, 7188], + [2, 17215, 17216], + "bun", + "cloc", + "js-fns", + "jscodeshift", + "issing-exports", + [2, 10634, 17222], + [ + 0, 192, 5467, 21970, 6061, 6063, 16608, 1429, 1509, 1177, 1903, 1938, 1954, 1958, 1970, 2228, 2240, 2298, 2307, + 2675, 25453, 2297, 25455, 2895, 2900, 25458, 2899, 17050, 4019, 4131, 4193, 4196 + ], + [0, 25425, 25427, 25462, 4504, 2759], + [1, 2343, 17227], + [0, 17201, 17228, 17229, 2537], + [0, 2228, 2258, 2273, 2298, 2766, 2297, 2898, 3524], + [0, 25425, 25436, 1388, 2887, 25468, 25470, 25472, 25473, 17632, 25474, 25476, 25479, 25481, 25484, 25485], + [1, 2343, 17231], + [0, 17233, 17234, 17235, 2523], + [2, 2553, 20], + [0, 2890], + [0, 1429, 25492, 14416, 1177, 1903, 1958, 1970, 2228, 2239, 2240, 2291, 2307, 2316, 2297, 3006, 25493, 3752], + [0, 25425, 25436, 13530, 17631], + [1, 2343, 17237], + [0, 17238, 17241, 17245, 2537], + [0, 2755, 4707], + "ectory", + [2, 4015, 17239], + [0, 192, 5467, 6061, 6063, 16608, 2675, 2297, 2900, 2899, 3534, 4131, 4255], + "sleep", + " wrapper", + [2, 1149, 17243], + [0, 2297, 5472, 25425, 25436, 25501], + [1, 2343, 17247], + [0, 6203, 17248, 17249, 2523], + [ + 0, 1429, 14416, 1177, 1903, 1958, 1959, 1970, 2228, 2234, 2239, 2283, 2285, 2290, 2291, 2307, 2316, 2297, 3006, + 17050, 4193, 4196 + ], + [0, 25425, 25436, 7298], + [2, 17257, 24717, 17258], + "debouncing", + "invoke", + "interval", + [1, 2343, 17255], + [0, 17256, 17259, 17260, 2523], + [0, 2766], + [3, 7621, 18], + "-ascii", + [0, 2228, 2675, 2297, 1177, 2765, 192, 4131, 1954, 1938, 6063, 16608, 1958, 1903, 1970, 2895, 6065, 22559, 6061], + [0, 25425, 25514, 2765], + [1, 2343, 17262], + [0, 17263, 17264, 17265, 2487], + [0, 3183], + [ + 0, 1429, 1177, 1903, 1958, 1959, 1970, 2228, 2234, 2239, 2285, 2291, 2298, 2307, 2297, 2878, 2881, 2895, 2918, + 3006, 2899, 3203, 4193, 6061, 6063, 4131, 192, 5467, 2675 + ], + [0, 25425, 25514, 2899], + "decamelcase", + "lowercase", + [1, 2343, 17270], + "nano-spawn", + [0, 17271, 17280, 17282, 2537], + [0, 1437, 3074, 4294], + "-tar", + [2, 1679, 17272], + "bz2", + [2, 17273, 17274], + "gz", + [2, 17273, 17276], + [3, 17273, 11], + [2, 17278, 4560], + [0, 1429, 2228, 2239, 2258, 2273, 2285, 2298, 2314, 2766, 2878, 2889, 3006, 2899, 3524], + "strip-dirs", + [0, 25425, 25462, 2899, 1429, 1687, 2568], + "is-jpg", + [1, 2343, 17287], + "bzip2", + "tar.bz", + [0, 17289, 17290, 17291, 2537], + "tar.gz", + [0, 1209, 3524], + [0, 1177, 1903, 1959, 1970, 2228, 2234, 2239, 2285, 2291, 2298, 2307, 2766, 2297, 2898, 3006], + [0, 25425, 25436, 3521], + [1, 2343, 17301], + [3, 4852, 13], + "plugin-m", + [2, 17294, 7912], + [2, 17293, 17295], + "fail-test", + [2, 10740, 17297], + "deprecation", + [2, 1921, 17299], + [0, 0, 17320, 17324, 2399], + "only-tests", + [2, 16645, 17302], + [3, 1955, 15], + "erfectionist", + [2, 17304, 17305], + "yml", + [2, 1921, 17307], + "jsonc-", + [2, 17309, 67], + [2, 4488, 10441], + [2, 3390, 17311], + "curly", + [2, 3704, 17313], + "should-s", + "emantic-", + [2, 17316, 3979], + [2, 17315, 17317], + [2, 13125, 67], + [0, 1429, 2228, 2297, 2899, 2907, 1177, 2307, 2239, 2898, 1954, 1938, 1958, 1903, 1970, 2895], + " string", + "line string", + [2, 13862, 17322], + [0, 2297, 25425, 25514, 2907], + [1, 2343, 17326], + [0, 17327, 17328, 17333, 2487], + [0, 1457, 1675], + [0, 53, 5889, 87, 1177, 2766, 2297, 2881, 2898, 2904, 4042, 4045, 4048, 4055, 4067], + "dupes", + " duplicates", + [2, 7293, 17330], + [3, 232, 8], + [0, 3595, 6778, 2297, 5260, 1204, 6813, 1932, 7121, 25427, 25425, 25544, 4042], + [1, 2343, 17338], + "deduplicate", + "deduplicat", + [2, 17336, 6600], + [0, 0, 17339, 17340, 4139], + [0, 2307, 2228, 2239, 2234], + [0, 25425, 25436, 25550], + [1, 2343, 17343], + "is-obj", + [0, 17344, 17345, 17346, 2537], + [0, 25555, 12826, 824], + [0, 192, 5467, 6061, 6063, 16608, 4864, 25558, 4874, 2675, 2765, 2297, 2898, 4131, 91], + [0, 25425, 25436, 7177, 12825, 12826], + [1, 2343, 17348], + [0, 0, 0, 17349, 2537], + [0, 2297, 25425, 4193, 3212], + [1, 2343, 17351], + [0, 17353, 17359, 17360, 2523], + "json-ptr", + [0, 2215], + [3, 1715, 10], + "change-", + "adr", + "tracking", + [2, 17355, 17357], + [0, 8780, 1414, 1177, 2766, 2297, 25571, 2881, 2898, 1894, 4042, 25575], + [0, 25425, 25427, 11939, 5284], + [1, 2343, 17368], + "decision record", + "kewlr", + "any decision record", + [2, 17379, 17381], + "simple-assert", + "lcov-re", + [0, 9719, 17378, 17385, 2443], + "sult-merger", + [2, 17367, 17369], + [3, 1903, 16], + "rict", + [2, 17371, 17372], + "@js-temporal/polyfill", + [3, 1935, 15], + "ilenames", + [2, 17375, 17376], + [0, 1429, 1596, 2899, 3400, 3421, 4193, 4196], + [3, 25135, 11], + "chai util", + "al decision", + "deep equal", + "object equal", + [2, 17365, 17394], + [0, 25425, 16237], + [1, 2343, 17387], + [0, 17408, 17417, 13533, 4139], + "array-b", + "-byte-length", + [2, 2347, 17389], + [2, 17388, 17390], + "es-get-iterator", + "is-a", + " record", + "is-arguments", + "is-ar", + [2, 25135, 17401], + "ray-buffer", + [2, 17396, 17398], + "is-date-object", + " decision", + "gex", + "is-regex", + "is-s", + "hared-array-buffer", + [2, 17404, 17405], + [2, 6961, 7313], + [0, 2070, 3181, 4689], + "side-channel", + "-boxed-primitive", + [2, 4707, 17410], + "which-", + [2, 17412, 6910], + "typed-", + "typed-array", + [2, 17412, 17415], + [ + 0, 48, 53, 85, 87, 192, 5467, 16405, 1193, 1429, 1431, 1610, 1177, 1938, 1955, 2675, 2759, 2765, 1192, 2297, + 2878, 2881, 2900, 2923, 2990, 3150, 2899, 3697, 1894, 3758, 4257, 2924 + ], + "available-typed-arrays", + [1, 2343, 17427], + "to", + "has-proto", + "has-t", + [2, 17397, 17394], + "yped-arrays", + [2, 17422, 17424], + "software quality", + [0, 0, 7923, 17428, 4139], + [0, 8652, 2926, 25591, 6938, 25592, 25594, 25595, 25596, 2927], + "rehype-katex", + [1, 2343, 17431], + [0, 0, 0, 17432, 2487], + [0, 2927, 3925, 364], + [1, 2343, 17434], + [0, 17435, 17441, 17442, 2487], + [0, 25605], + "is-m", + "able-object", + [2, 4688, 17437], + [2, 17436, 17438], + "jsmd", + [0, 18073, 29457, 11976, 15288, 7677, 4039, 25609, 4481, 1984, 26108, 26131, 26132, 26124, 26104, 29233, 26123], + [ + 0, 6803, 6692, 1542, 2325, 9553, 25611, 13901, 5995, 25513, 1552, 3230, 7827, 3259, 14873, 3151, 3300, 3084, + 6650, 1416 + ], + [1, 2343, 17444], + [0, 0, 17445, 17446, 2537], + [0, 1999, 4579], + [0, 1111, 200, 1473, 1512, 7201, 7009], + "is-path-cwd", + "is-path-", + "inside", + [2, 17448, 17449], + [1, 2343, 17452], + [0, 17454, 17463, 17464, 2523], + "folders", + [0, 1999, 25625, 1676, 1209, 21104, 3932, 4435, 25623, 1511, 1525, 2727, 4025, 2179, 25624], + "directories", + "trash", + "unlink", + "cleaning", + "rmrf", + "friendly", + "gulpfriendly", + "filesystem", + [ + 0, 3519, 3421, 4481, 1429, 2763, 4389, 2675, 2899, 3259, 4193, 1177, 3260, 4039, 1787, 3203, 4246, 25635, 4474, + 25633, 1894, 4387, 1596, 1610, 2861, 4196, 91, 4874, 21106, 2990, 25629, 25634, 1431, 4232, 25632, 1938, 25628, + 25636, 1895, 1955, 13850 + ], + [0, 14872, 3766, 14873, 25638, 3259, 25639, 4246, 12593, 3243, 9381, 25640, 6147, 1747, 18035], + [1, 2343, 17466], + [0, 17467, 17469, 17470, 2537], + [0, 19185, 2071, 17471, 2807, 2822, 3183, 29943, 3527, 3530, 25648, 4300, 4763], + "temp-write", + [0, 554, 17212, 7637, 7892, 20374, 4891, 11112, 19706, 32765, 4494, 91], + [ + 0, 19748, 25658, 1227, 200, 25660, 4796, 13735, 4797, 11337, 25661, 6971, 6813, 1586, 2100, 5284, 671, 25663, + 25664, 18750, 6646, 23255, 3383, 20529, 553, 91, 25667, 25669, 17507, 664 + ], + "formatly", + [1, 2343, 17473], + [0, 0, 17476, 17478, 2487], + "in-range", + "time-", + [0, 1177, 2205, 25675, 3072], + "time-span", + [0, 1623, 3583, 12616, 3195, 25501, 25677, 17631, 25550, 25678, 25679, 25682], + "defer", + "out", + "timeout", + [1, 2343, 17483], + [0, 17486, 0, 17488, 2537], + "settimeout", + "tick", + [0, 3171, 4734, 1676, 25688, 3441], + "threshold", + [0, 7200, 6997, 6949], + [1, 2343, 17490], + [0, 17491, 17499, 17502, 2537], + [0, 1080, 1560, 1562, 16358, 25696, 14858, 1833, 1869, 2145, 25699, 2657, 2941, 3173, 3440, 3494, 4266, 1000, 4590], + "@vue/c", + "ompiler-sfc", + [2, 17492, 17493], + "callsite", + "deps-", + "deps-regex", + "is-c", + [0, 1414, 25710, 4216, 4255, 4342], + "ore-module", + [2, 17498, 17500], + [0, 5122, 1896, 27, 13527, 5130, 2663, 16196], + "patch-", + "patch-version", + [1, 2343, 17506], + [0, 17508, 17509, 17510, 2523], + "unused", + [0, 25717, 7810, 13055, 25718, 2141, 4507, 4763], + [0, 5517, 11976, 107, 5522, 28385, 27134, 36694, 24819, 9240, 2934, 4342, 4483, 36684, 4494, 91], + [0, 2934, 25723, 15237, 1781, 20443, 57, 1669], + [1, 2343, 17512], + [0, 17513, 17516, 17517, 2443], + [0, 25718, 25728, 1000], + "deprecate", + "deprecated", + [0, 1909, 2675, 2934, 2899, 3421, 4170, 4342, 1906], + [0, 25732, 1781, 25723, 2934, 20443], + [1, 2343, 17519], + [0, 0, 17520, 17521, 2523], + [0, 1503, 1192, 3130, 4255], + [0, 2934, 2663, 2940], + "is-relative", + [3, 9488, 17], + [1, 2343, 17525], + [0, 17530, 17531, 17532, 2487], + "cjs", + "detective-cjs", + [3, 9509, 10], + [2, 17528, 4354], + [0, 1413, 1437, 25743, 3440, 25745], + [0, 1366, 1414, 1909, 2934, 25748, 25749, 4193, 4342, 1906], + [0, 2934, 2663, 2942, 3073], + [1, 2343, 17534], + [0, 17535, 17536, 17538, 2537], + [0, 1676, 2941], + [0, 1177, 1903, 1958, 1970, 2759, 2934, 2948, 2899, 4170, 4342], + "indentation", + [0, 2934, 2663, 2944, 25757], + "identify", + "space", + [1, 2343, 17542], + [0, 17543, 17544, 17545, 2399], + [0, 1676, 2657, 2941, 3509], + [0, 2934, 3421, 1437, 2675, 2899, 1177, 2114, 4342, 25763, 3985, 2990, 192, 2829, 3995, 1982, 5467], + [0, 2934, 2663, 4082, 38], + "mm", + "egg-bin", + [1, 2343, 17549], + [0, 17550, 17552, 17553, 2443], + [0, 1676, 25771], + "ontributor", + [0, 1177, 1903, 1938, 1954, 1958, 1970, 2759, 2934, 2899, 4342], + [0, 2934, 2663, 2090, 2947, 25774], + [2, 1884, 1347], + [1, 2343, 17556], + [0, 17557, 17558, 17559, 2537], + [0, 3291, 3754, 25782, 1552, 4747, 1209, 4333, 2026, 1364, 25781], + [0, 1429, 1149, 2899, 4193, 4170, 4342, 1506], + [0, 12692, 3768, 6812, 1552], + [1, 2343, 17561], + [0, 17562, 17563, 17564, 2537], + [0, 25789, 1687, 1177, 25791, 25792, 2000, 25793, 2036, 2607, 2851, 2854, 3188, 4127, 4227, 4232, 4351, 25794], + [0, 1501, 25796, 1948, 25797, 4039, 4135], + [0, 1973], + "grunt-exec", + [3, 2300, 12], + [2, 17566, 2759], + [2, 2235, 2924], + [1, 2343, 17570], + [0, 17571, 17572, 17573, 2523], + [0, 9478], + [0, 1166, 4135, 25814, 4481, 1906], + [0, 25816, 15525, 3378, 4750, 3383, 6661, 25188, 1237], + [1, 2343, 17575], + [0, 0, 17576, 17587, 2537], + [0, 2861, 25821, 1317, 25822, 25823, 2768, 1776, 1209, 3152, 3736, 25825, 4019, 25826, 4545], + "@types/diff", + "gan.js", + [2, 12456, 17578], + "@types/nopt", + "all-", + "ibutors-cli", + [2, 10741, 17582], + [2, 17581, 17583], + [3, 1945, 18], + [3, 3463, 9], + [0, 7189, 6564, 6681, 6887, 614], + [1, 2343, 17593], + [2, 2036, 2091], + "image-", + [2, 17590, 11526], + "is-ci-cli", + [0, 0, 17594, 17596, 34352], + [ + 0, 4248, 2675, 2297, 2899, 4193, 1177, 25846, 4042, 25850, 25840, 4535, 2900, 2918, 2990, 25844, 25848, 25851, + 2897, 8850, 2891, 25843, 2881, 2912, 2895, 2910, 25853, 25838 + ], + "side-by-side", + [0, 25855, 3053], + "line-by-line", + [1, 2343, 17601], + "difftohtml", + "colorized", + [0, 0, 17602, 17603, 2399], + [0, 1317, 2064], + [0, 2967, 2965, 2966, 23119, 1871, 19728], + [1, 2343, 17605], + [0, 0, 17606, 17607, 2487], + [0, 20340], + [0, 2966, 25866, 6983, 1671], + "data-s", + [2, 14386, 3769], + [2, 17608, 17609], + [1, 2343, 17614], + [3, 1915, 23], + [2, 17612, 8861], + [0, 17624, 0, 17628, 4139], + "Directed Graph", + "directed", + " graph", + [2, 17616, 17617], + [2, 17616, 2218], + [3, 1718, 14], + "Directed", + "digraph", + "java", + [ + 0, 3420, 2714, 4390, 3532, 4248, 3348, 1437, 2020, 2742, 3478, 4207, 10761, 4747, 25871, 1680, 24004, 3483, + 4039, 4135, 1842, 2822, 3479, 4430, 25872, 2151, 2182, 2720, 3093, 25873, 13786, 25874, 1513, 2753, 2777, 3181, + 25875, 666, 2188, 3249, 27921, 91, 25878, 1595, 2200, 25879, 25880, 4174, 2704, 25881, 3393, 25884, 4025, 25886, + 4290, 4748, 25887, 692, 20312, 9322, 25888, 25891, 25892, 3386, 635, 25893, 26567, 4728, 643, 3397, 9479, 10744, + 4588, 16310, 25898, 25901, 16307, 25904 + ], + "java script", + "JavaScript", + "type script", + [0, 2968, 6646, 7117], + "vertex", + "Vertex", + "edge", + "Edge", + [1, 2343, 17638], + "graph theory", + "Graph Theory", + "graph ", + [2, 17636, 6956], + [0, 17639, 17646, 17650, 2487], + [0, 25910, 20314, 4484], + "weighted", + "Weighted", + "unweighted", + "Unweighted", + "adjacency", + "Adjacency", + [ + 0, 811, 8850, 816, 1009, 1011, 25917, 25920, 1429, 1414, 1437, 1595, 1610, 1177, 2151, 15843, 2070, 2205, 2228, + 2240, 2247, 2256, 2291, 2311, 2314, 25922, 2777, 25923, 25925, 21898, 3183, 2899, 25928, 3400, 3518, 25929, + 3541, 1862, 25930, 814, 4042, 4073, 4076, 4135, 4172, 4436, 4474, 91, 12247 + ], + "connectivity", + "cycle", + "acyclic", + [ + 0, 7236, 7303, 6885, 1623, 6965, 7025, 6898, 6932, 7258, 695, 7228, 6766, 7028, 6912, 57, 7121, 6962, 6968, 590, + 592, 5376, 7198, 6705 + ], + "traversal", + "depth", + "Depth", + [1, 2343, 17655], + [0, 0, 17682, 17684, 2537], + "breadth", + "Breadth", + " first search", + [2, 17652, 17658], + "dfs", + "DFS", + [2, 17656, 17658], + " search", + [2, 6395, 17663], + [2, 17656, 17664], + "bfs", + "BFS", + "algorithms", + [2, 17636, 17668], + "repre", + "sentation", + [2, 17670, 17671], + [2, 17636, 17672], + " matrix", + [2, 17647, 17674], + " list", + [2, 17644, 17676], + "adjacency ", + "matrix", + [2, 17678, 17679], + "node ", + [ + 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 1193, 1610, 1622, 1700, 1701, 1177, 1895, 20281, 1938, 1939, 1953, + 1955, 1982, 2203, 2675, 1192, 695, 25936, 2990, 3144, 3400, 1894, 4257, 4294, 4523, 2924 + ], + "node degree", + [0, 2924, 1194, 695, 6766, 7228, 1623, 7121], + [1, 2343, 17694], + "sparse graph", + "dense graph", + "directed ", + [2, 17688, 17648], + "acyclic graph", + [2, 17688, 17690], + "DAG", + "topo", + [0, 17703, 17707, 17708, 2537], + "topologic", + "topological", + "sorting", + "strongl", + "y connected components", + [2, 17698, 17699], + " digraph", + [2, 17640, 17701], + [0, 25946, 25948, 25944], + "weighted edge", + [2, 17688, 17704], + "structures", + [0, 3421, 4389, 3348, 1090, 1290, 2554, 4255, 91, 4874, 87, 25951, 25950], + [0, 2970, 25954, 3101, 18035, 1747, 1542, 13901, 1781], + " structure", + [2, 2382, 17709], + [3, 17610, 14], + [2, 17710, 591], + [2, 6957, 591], + [2, 17711, 591], + "in data structures", + [3, 17715, 17], + "DataStructure", + [2, 17717, 591], + [1, 2343, 17725], + "iterative", + "Node.js", + "CommonJS", + "UMD", + "esmodule", + [0, 17728, 17736, 17738, 4139], + "java.util", + "c++ stl", + [0, 25960, 15160, 25959], + "c++ std", + "Python collections", + "System.Collections.Generic", + "STL", + "stl", + "Collection", + "Collections", + [ + 0, 25964, 3421, 2070, 4389, 4400, 2080, 4039, 12694, 1804, 2554, 640, 4255, 1610, 25963, 25968, 15164, 25974, + 25969, 1705, 25972, 25967 + ], + "insertion", + [0, 25954, 2970], + "deletion", + "OOP", + [1, 2343, 17742], + [0, 17743, 17744, 17708, 2443], + [0, 23040, 25983, 25987, 25990, 25981, 25985], + [ + 0, 3421, 4389, 1087, 4193, 1090, 2080, 12694, 25995, 26000, 2554, 4255, 25963, 1389, 4092, 25992, 25996, 1537, + 25994, 25997, 1705, 25951, 25967 + ], + [1, 2343, 17746], + [0, 0, 17747, 17748, 2443], + [0, 1166, 26007, 26008, 26009, 26006, 26010, 26014, 3273, 26015, 4441, 1906], + [0, 2975, 26006, 26017, 8893, 1871, 17354, 1687, 2062, 2163, 9549, 9550, 3797, 26020, 6109, 2585, 3529, 19051], + [1, 2343, 17750], + [0, 17755, 6538, 17756, 2399], + "voice", + [2, 7659, 17751], + "backend-", + [2, 17753, 10057], + [0, 635, 9510, 26026, 1687, 3181, 3386, 3483, 4390], + [0, 3378, 3409, 2977, 200, 1687], + "product", + "productivity", + [1, 2343, 17760], + [0, 17761, 17762, 17771, 2523], + [0, 635, 9479, 643, 1458, 3386, 3483, 3727, 29698, 3917, 4135, 4174, 9455], + [0, 9516, 26037, 9515, 9449, 1437, 18248, 26035, 4384], + [2, 7659, 4729], + "lodash.s", + "nakecase", + [2, 17764, 17765], + "builders", + [2, 7659, 17767], + "formatters", + [2, 7659, 17769], + [0, 3378, 3409, 2977, 200, 9527, 2979], + [2, 7659, 1735], + [1, 2343, 17774], + [0, 17775, 6538, 17776, 2523], + [0, 635], + [0, 3378, 3409, 2977, 200, 3358, 2980, 26044], + [1, 2343, 17778], + [0, 0, 17779, 17780, 2537], + [ + 0, 48, 53, 5712, 5788, 87, 94, 8850, 10615, 1208, 1429, 1597, 26049, 1610, 32572, 2759, 1192, 25913, 26052, + 3183, 2899, 3400, 3421, 26053, 4005, 4039, 4042, 4484 + ], + [0, 7285, 7310, 6988, 6847, 5131, 7211], + [1, 2343, 17782], + [0, 17783, 17784, 17785, 2487], + [0, 2051, 2107, 10392, 26060, 2747, 3932, 814], + [0, 1509, 1177, 1889, 1895, 1954, 2022, 2899, 3421, 4193], + [0, 9753], + "cache-point", + [2, 9480, 6769], + "file-set", + [1, 2343, 17791], + "reduce-", + [0, 0, 17792, 17794, 2537], + [0, 11976, 5087, 4874, 8157, 1595, 1192, 91, 4579], + "without", + [0, 1595, 1541, 8309, 7193], + [1, 2343, 17796], + [0, 0, 0, 17797, 2487], + [0, 26072, 1823, 26073, 1936, 2814, 163, 26074, 89, 4500, 1002], + "walk-back", + [1, 2343, 17802], + "dmd-", + [3, 2475, 9], + [0, 17806, 17807, 17808, 4139], + "ample", + [2, 17801, 17803], + [2, 17800, 17804], + [0, 1525, 2992, 3170, 6479, 26379, 4745], + [ + 0, 5522, 107, 192, 5467, 442, 7677, 22839, 26081, 1610, 1177, 1895, 1953, 1955, 10964, 2675, 3211, 1894, 4135, + 91, 1984 + ], + [0, 671, 3358, 2989, 1177, 1894, 4320, 1501, 19269, 4354, 1671, 2649], + [1, 2343, 17810], + [0, 17811, 17812, 17814, 2537], + [0, 26087, 26090, 2752, 2753, 26092, 26095, 26099, 3478, 4094], + [0, 1503, 1702, 22845, 2990, 3074, 3421, 3697, 4237, 13351], + "jsdoc2md", + [0, 200, 5957, 3392, 9000, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921], + [1, 2343, 17816], + [0, 17817, 17820, 6226, 2487], + [0, 1486, 1511, 2017, 3077, 4038, 4726], + "agnostic", + "dnd", + [0, 13352, 4094, 13351], + [1, 2343, 17822], + [0, 17823, 17824, 2514, 4139], + [0, 26114, 26111, 5438], + [0, 26121, 26117, 10675, 26122, 10706, 4484], + "-protocol", + [2, 1730, 17825], + "jsonify", + [1, 2343, 17831], + "rpc", + "callbacks", + [0, 17832, 17833, 17834, 2523], + [0, 1209, 3183, 1387, 26129, 1549], + [0, 2899, 4193, 1177, 3215, 2759], + [0, 1098, 14576, 2947, 36, 5001], + "@ffmpeg-installer/ffmpeg", + [3, 1733, 16], + "mmon", + [2, 17836, 17837], + [1, 2343, 17840], + [0, 17841, 17842, 17843, 2487], + [0, 3459, 1594, 710, 1512, 3237, 1544, 1457, 26136, 4150, 2012, 3427, 26137, 23009], + [0, 2899, 1177, 2272, 4342], + [0, 6400, 5001, 4990, 36, 27, 200], + [1, 2343, 17845], + [0, 17854, 17855, 2514, 2537], + "@puppeteer/browsers", + [3, 13394, 12], + "ium-driver", + [2, 17847, 17848], + "geckodriver", + [2, 13391, 17850], + [2, 5680, 13392], + [2, 13391, 17852], + [0, 1457, 26144, 15767, 4729], + [0, 1509, 2899, 4170, 4193], + [1, 2343, 17857], + [0, 17858, 17860, 17861, 2537], + [0, 16166, 2070, 25923, 2822, 23444, 3006, 1209], + "posthog-node", + [0, 2228, 2273, 2283, 23466, 22081, 2305, 3752, 4193], + [0, 21779, 4745, 16166, 2228, 1541], + [1, 2343, 17863], + [0, 17864, 17865, 17866, 2537], + [0, 1144, 3249, 3539, 6477], + [0, 2228, 2240, 26158, 1906], + [0, 4796, 2070, 2228, 3001, 3529, 26160, 13017, 3209, 3005], + [3, 246, 8], + [1, 2343, 17869], + [0, 0, 17870, 2514, 2487], + [0, 1596, 1177, 1954, 1192, 1894, 4257], + [1, 2343, 17873], + "mecano", + [0, 17874, 17875, 17876, 2537], + [ + 0, 25190, 3088, 26169, 26172, 26173, 26175, 26178, 26179, 26180, 26181, 26182, 26183, 26184, 26187, 26189, + 26190, 26192 + ], + [0, 3310, 1187], + [ + 0, 3304, 36, 5122, 4990, 6400, 5001, 1594, 3171, 4030, 3212, 5592, 2658, 3088, 5995, 4967, 26196, 2665, 27, + 13333, 2671 + ], + "@balena/dockerignore", + "docker", + [1, 2343, 17880], + [0, 17882, 17883, 17885, 2537], + "docker-modem", + [0, 25377], + [ + 0, 1175, 1178, 1195, 1198, 14211, 1267, 26204, 1290, 26205, 1408, 1594, 1895, 2228, 13831, 2236, 2253, 2256, + 2281, 2283, 26208, 2291, 3198, 26210, 18463, 2311, 26212, 17568, 2675, 2990, 3006, 2899, 1894, 26213, 12936, 91, + 4535, 2924, 4681 + ], + "docker.io", + [0, 26216, 26217, 13901, 26218], + [1, 2343, 17887], + [0, 17888, 7923, 2514, 2443], + [0, 1170, 1676, 26223, 4747], + "@bevry/pluginloader", + "ambi", + [1, 2343, 17894], + "ansistyles", + "bal-util", + [0, 17925, 17932, 17933, 2537], + "caterpillar", + "docmatter", + "-baseplugin", + [2, 1737, 17897], + "eachr", + "envfile", + "errlop", + "-grouped", + [2, 13771, 17902], + [2, 12598, 17903], + "extendr", + "extract-opts", + "ignorefs", + "xtorbinary", + [2, 8828, 17908], + "jschardet", + "lazy-require", + [3, 3732, 9], + "title", + [2, 17912, 17913], + "query-engine", + "rfc-log-levels", + "safefs", + "ps", + "safeps", + "scandirectory", + "taskgroup", + "typechecker", + "unbounded", + "watchr", + [0, 1595, 1676, 2071, 26228, 4747], + "@bevry/", + [3, 17583, 12], + [2, 9787, 17927], + [2, 17926, 17928], + [2, 15340, 6706], + "kava", + [ + 0, 1178, 14080, 1253, 1264, 1267, 1734, 1767, 1177, 1903, 1938, 1939, 1954, 1958, 1966, 1970, 1192, 3446, 26230, + 4135 + ], + [0, 26232, 26234, 6698, 3015, 671, 4749, 3378, 9654, 1965, 1644], + "projectz", + "valid-", + [2, 17935, 7204], + [1, 2343, 17941], + " and deployment", + [2, 6147, 17938], + " manage", + [0, 0, 0, 17949, 2537], + "ment system", + [2, 17940, 17942], + [2, 1563, 17943], + "dms", + [2, 1746, 17943], + " agnostic", + [2, 1351, 17947], + [0, 5260, 7268, 614], + "templating", + [2, 11607, 5001], + [1, 2343, 17953], + [0, 0, 0, 17954, 2537], + [0, 5194, 5260, 7268, 614], + [1, 2343, 17956], + [0, 0, 0, 17957, 2399], + [0, 26249, 3426], + [1, 2343, 17959], + [0, 0, 0, 17960, 2537], + [0, 26249, 1420], + [1, 2343, 17962], + [0, 0, 0, 17963, 2523], + [0, 26249, 26258], + "docsify", + "docsify.js", + "tabs", + [1, 2343, 17968], + [0, 0, 0, 17969, 2537], + [0, 26249, 1675], + [1, 2343, 17975], + "@textlint/markdown-to-ast", + "anchor-markdown-header", + "section", + [2, 9787, 17973], + [0, 0, 0, 17976, 2523], + [0, 26249, 19400], + "bitbucket", + "gitlab", + "ghost", + [1, 2343, 17981], + [0, 0, 0, 17983, 2523], + [2, 20413, 4699], + [0, 26249, 3033], + "doct", + "rine-temporary-fork", + [2, 17984, 17985], + [1, 2343, 18006], + "globals-docs", + "konan", + [2, 3138, 14510], + "micromark-", + "util-c", + "haracter", + [2, 17992, 17993], + [2, 17991, 17994], + "filepath", + [2, 13721, 17996], + [3, 3999, 9], + "ference-links", + [2, 17998, 17999], + "unist-", + [2, 18001, 9381], + "vfile-", + [2, 18003, 16237], + "vfile-sort", + [0, 0, 0, 18010, 2523], + "chdir", + "-schema", + [2, 1745, 18008], + [0, 26249, 14741], + "jsdoc3", + "nums", + [1, 2343, 34449], + [0, 26249, 3038], + [1, 2343, 18021], + "big-integer", + "-search-bounds", + [2, 17180, 18017], + "int64-buffer", + "priorityqueuejs", + [0, 0, 0, 18022, 34352], + [0, 26249, 3040], + "semaphore", + [1, 2343, 18025], + [0, 0, 0, 18026, 2537], + [0, 26249, 26287], + [1, 2343, 18029], + "cosmosdb", + [0, 0, 0, 18030, 2537], + [0, 26249, 26292], + "cosmos db", + "document ", + [1, 2343, 18034], + [0, 0, 0, 18038, 2537], + "database", + [2, 18032, 18035], + "nosql", + [0, 1209, 26249, 7268, 614], + [1, 2343, 18040], + [0, 0, 0, 18041, 2523], + [0, 26249, 26301], + "crowdin-cli", + [3, 2694, 9], + "gifsicle", + [2, 18043, 18044], + "jpegtran", + [2, 18043, 18046], + "png", + "optipng", + [2, 18043, 18049], + [2, 18043, 4361], + "tcp-port-used", + [1, 2343, 18054], + [0, 0, 0, 18057, 2537], + "tree-node-cli", + [2, 15862, 1868], + [0, 26249, 26307], + [1, 2343, 18060], + "glob-promise", + [0, 0, 0, 18062, 2537], + "websites", + [0, 26249, 3053], + "open source", + [1, 2343, 18065], + [0, 0, 0, 18066, 2399], + [0, 26249, 7906], + [1, 2343, 18075], + [2, 15774, 1722], + "-languages", + [2, 6327, 18069], + "to-vfile", + [2, 9406, 2741], + "lru.min", + "offline-search", + [0, 0, 0, 18076, 2537], + [0, 26249, 1698], + [1, 2343, 18078], + [0, 0, 0, 18079, 2537], + [0, 26249, 3061], + [2, 1611, 1388], + "height", + "classlist", + [1, 2343, 18084], + [0, 0, 0, 18085, 2523], + [0, 26249, 3063], + [1, 2343, 18088], + "domelementtype", + [0, 0, 0, 18090, 2523], + "entities", + [0, 26249, 3065], + [1, 2343, 18092], + [0, 18093, 0, 18094, 2537], + [0, 22983, 22985], + [0, 26249, 1283], + [1, 2343, 18096], + [0, 0, 0, 18098, 2523], + "raster", + [0, 26249, 6925], + [1, 2343, 18100], + [0, 0, 0, 18101, 2537], + [0, 26249, 3071], + "qunit-tap", + "lodash.sample", + "paths", + "ncludepaths", + [2, 8851, 18105], + [1, 2343, 18109], + "math", + [0, 18111, 18115, 18116, 2523], + "mathml", + [0, 2353, 998, 1856, 17003, 26351, 26350, 26349], + "secure", + "sanitizer", + "purify", + [0, 3421, 4389, 2675, 26357, 1177, 10824, 26358, 2990, 15797, 15804, 15793, 15801], + [0, 3073, 2942, 1676, 1409, 4709], + [1, 2343, 18118], + [0, 18119, 18120, 18121, 2523], + [0, 20040, 16232], + [0, 1906, 1166, 4481, 4294], + [0, 3656, 200, 8429, 6876, 7169, 5511, 2568, 20597, 2089, 20598, 6574, 3073, 6807, 7009, 8634], + [1, 2343, 18123], + [0, 18125, 18126, 18127, 2537], + [3, 4257, 9], + [0, 1107, 1477, 4208, 4294, 4726], + [0, 4874, 4290, 26371, 4481, 16041, 1906], + [0, 3073, 2942, 6807, 200, 7009, 6048, 7201, 4166, 3076, 26375, 26376, 6811, 8634, 3730, 10036, 7521], + [1, 2343, 18129], + [0, 18130, 18131, 18133, 2523], + [0, 26383, 1676, 26385, 4038, 26388], + [ + 0, 192, 5467, 26390, 13757, 24030, 1177, 1881, 1895, 19527, 1938, 1955, 2151, 2675, 2742, 3421, 1894, 3752, + 4384, 91 + ], + "expand", + [0, 6807, 3073, 15227, 202], + [1, 2343, 18136], + "interpolation", + [0, 0, 18138, 18139, 2523], + "substitution", + [0, 26398, 4874, 2228, 2240, 2247, 2253, 2256, 24293, 2273, 2281, 2283, 26399, 26400, 2765, 4474, 91], + [0, 3073, 2942, 6807, 1388], + [1, 2343, 18141], + [0, 0, 18144, 18146, 2399], + "archive-type", + "ext-name", + [0, 26406, 1894, 91], + "filenamify", + [0, 18108, 3080, 26408], + "is-zip", + [2, 4551, 1398], + [1, 2343, 18150], + [0, 18151, 18152, 18153, 2487], + [ + 0, 1797, 1704, 26413, 1149, 1676, 7077, 2026, 26416, 1309, 1362, 2712, 3361, 1364, 4148, 26417, 26420, 26423, + 26426, 26429, 4547, 26435, 26438, 26443, 26448 + ], + [ + 0, 3421, 1429, 2228, 2297, 2899, 4193, 4707, 1177, 1596, 2240, 26453, 4342, 1389, 1719, 4196, 2298, 2900, 2291, + 1575, 26455, 26457, 2040, 2236, 2300, 2871, 26459, 2283, 26462, 2281, 25407, 26465, 2881, 25410, 26466, 2895, + 26470 + ], + [ + 0, 5122, 7096, 4030, 5592, 2026, 4031, 2934, 1303, 1965, 12593, 3259, 18037, 1550, 3230, 26472, 3243, 25638, + 14873, 4217, 26473, 5130, 5131, 26474 + ], + [1, 2343, 18155], + [0, 18156, 18159, 12113, 2523], + [0, 9673], + "repository", + "tarball", + [0, 1389, 1839, 4384], + [1, 2343, 18161], + [0, 18162, 18163, 18164, 34352], + [0, 26484], + [0, 4494, 2675, 4400, 1177, 1209, 1701, 4474, 91, 4874, 4870, 6494, 192, 26488, 26486, 13789, 25298, 5467], + [0, 18035, 1747, 1804, 26490, 21687, 2117, 6671, 2703, 26492, 26493, 1388, 1999], + [1, 2343, 18166], + [0, 0, 18167, 18168, 2523], + [0, 4874, 1317, 668, 3127, 3188, 1894, 4384, 4483, 4508], + [0, 6879, 6650, 2325], + [1, 2343, 18175], + "import-from", + "parse-c", + "md-args", + [2, 18171, 18172], + [2, 4182, 4562], + [0, 0, 18176, 18177, 2399], + [0, 6373, 968, 26503, 4042, 4057, 91, 1983, 1984, 26504, 25079, 26507], + [0, 26509, 26510, 26511, 26512, 26513, 26514, 26516, 26517, 26520], + [1, 2343, 18179], + [0, 18180, 18184, 18187, 34352], + [0, 1149, 1326, 26528, 3263], + [3, 3369, 12], + "ckage-data", + [2, 18181, 18182], + [0, 1596, 2759, 3188, 2899, 3202, 4170], + [3, 16398, 19], + [2, 18185, 18182], + [ + 0, 158, 1398, 26532, 3729, 24800, 16662, 16661, 21881, 20637, 18048, 20639, 12712, 26533, 26534, 6870, 26535, + 1504, 14908, 23119, 26536, 26537, 26539, 9135, 26541, 26542, 26543, 6792, 13615 + ], + [1, 2343, 18189], + [0, 18190, 18191, 18193, 2523], + [0, 26548, 26551, 16053, 25874, 1519, 1522, 26552, 25190, 2934, 26553, 3445, 3762, 16057, 17798], + [0, 2829, 26192, 3310, 26556, 1187], + "dox", + [0, 3088, 36, 27, 13333, 2671, 5995, 2665, 3304, 5122], + [1, 2343, 18195], + [0, 18196, 18197, 18198, 4139], + [ + 0, 1437, 1513, 1676, 1836, 16473, 25623, 26563, 2089, 2149, 2572, 26565, 2584, 1161, 2822, 26567, 26568, 3188, + 3467, 3718, 12443, 9340, 3992, 3999, 26572, 26573, 4449, 18071, 4549, 18002, 4555, 12447, 3348, 12449, 4707, + 4728, 26574, 4747 + ], + [ + 0, 26578, 5245, 12396, 7637, 26579, 26581, 4874, 6520, 9315, 7819, 26584, 22092, 4892, 1610, 19878, 4207, 4294, + 91, 4579 + ], + [0, 1783, 26586, 26587, 5472, 1745], + "spawn-", + "please", + "spawn-please", + [1, 2343, 18204], + "@types/temp", + [0, 18205, 18206, 18207, 4139], + [0, 5012], + [0, 442, 816, 6373, 1317, 19839, 1567, 1177, 1894, 23535, 4042, 4228, 4232, 1984], + [0, 1871, 26597, 12938, 17950, 15139], + [1, 2343, 18209], + [0, 18210, 18211, 18212, 2487], + [0, 4729, 1170, 2832, 4484, 2018, 1209, 2738, 7665, 18730], + [0, 1177, 4508, 9241, 91, 4874, 3400, 13204, 4870, 1011, 10638, 26606, 1009], + [ + 0, 26608, 21009, 91, 1723, 10339, 17623, 5284, 26611, 26614, 26617, 26620, 26622, 24090, 26624, 26626, 16697, + 26628, 26631, 1745, 26632, 26633, 3091 + ], + [1, 2343, 18214], + [0, 18215, 18216, 18217, 2537], + [0, 1437, 2051, 2205, 4600, 3249, 3505, 4300], + [0, 2228, 2899, 4170, 2240], + [0, 1370, 2323, 17461, 21779], + [1, 2343, 18219], + [0, 0, 18221, 18222, 2537], + "bplist-parser", + [0, 8780, 4874, 1166, 2215, 21537, 4400, 4481, 1906], + [0, 7148, 3188, 7048, 17455, 17453, 7204, 6857, 3403, 5933, 7029, 26647, 26648, 6899, 7147, 2150, 17462, 16503], + [1, 2343, 18224], + [0, 0, 0, 18238, 2523], + "alex", + [3, 14237, 14], + "bjs", + [2, 18226, 18227], + [2, 1884, 2081], + "fbjs-scripts", + "gulp-d", + "erequire", + [2, 18231, 18232], + "stats", + [2, 18234, 4408], + "webpack-st", + [2, 18236, 2187], + [0, 7048], + "draftjs", + "typed-binary", + "richtext", + [1, 2343, 18243], + [0, 18244, 18245, 18246, 2537], + [0, 10780, 1139, 1301, 1362, 26657, 2866, 26658, 3507, 4545, 4736], + [0, 4874, 1389, 26662, 26663, 1177, 26664, 2899, 1241, 91, 4535], + [0, 20697, 1936, 26666, 4718, 1783, 5980], + [1, 2343, 18249], + "just-extend", + [0, 18251, 18257, 18261, 2487], + [3, 5371, 20], + [ + 0, 7709, 15288, 26675, 26677, 26678, 26681, 26684, 26412, 26685, 29310, 1091, 1309, 1437, 8536, 6809, 1481, + 21847, 23872, 2822, 2863, 3000, 3203, 3260, 3310, 3363, 3509, 3519, 3547, 3951, 4094, 4164, 4213, 4246, 4521, + 17142, 1002 + ], + "ring", + "inline-string", + [2, 18250, 18253], + [2, 18250, 2278], + "cypress-", + [ + 0, 28091, 26688, 9687, 26690, 28084, 28092, 20886, 26694, 6494, 7637, 5542, 12461, 9240, 1009, 1011, 1177, 1895, + 1955, 2150, 1192, 3403, 1894, 4232, 4342, 4468, 4469, 4480, 91 + ], + "file-upload", + [2, 18256, 18258], + [2, 2918, 4195], + [ + 0, 5995, 5592, 4030, 6710, 91, 18035, 30967, 28976, 6354, 28986, 29686, 26147, 29690, 13126, 7827, 25638, 3259, + 4521, 12659, 1303, 5165, 18258, 13901, 6949, 29732, 29735, 30183, 6688, 30184, 33629, 14344, 29744, 3097 + ], + [1, 2343, 18264], + "dragndrop", + [0, 0, 18268, 18269, 2523], + " and drop", + [2, 7518, 18265], + [3, 12322, 11], + [ + 0, 19181, 26706, 578, 583, 587, 32379, 26707, 4870, 4874, 4880, 4883, 1009, 1011, 1497, 1637, 1177, 4828, 1961, + 1209, 3286, 3561, 3566, 3613, 26710, 26712, 1894, 89, 3824, 4164, 9348, 26713, 4493, 91 + ], + [ + 0, 181, 26709, 13083, 4403, 26715, 26717, 89, 26720, 91, 5284, 6400, 4967, 6073, 181, 26726, 1487, 17758, 26727, + 4627 + ], + [1, 2343, 18271], + [0, 0, 18273, 2514, 2523], + "tsutils", + [0, 19987, 19989, 19988, 2012, 7115], + [1, 2343, 18283], + "dts-critic", + [3, 7935, 17], + [2, 18276, 594], + [2, 15438, 57], + [2, 18276, 18278], + "versions", + [2, 4524, 18280], + [2, 18276, 18281], + [0, 0, 18291, 18292, 2487], + [3, 15891, 13], + [2, 18284, 4299], + [3, 7729, 14], + "able-str", + "ingify", + [2, 18287, 18288], + [2, 18286, 18289], + [0, 4874, 1009, 1011, 7677, 1165, 1414, 1177, 1883, 1915, 2832, 26743, 2278, 4320, 5978, 91, 1983, 26744, 1984], + [0, 26741, 26746, 1932, 26747, 590], + [1, 2343, 18294], + [0, 18296, 11686, 18297, 2537], + [2, 11513, 2527], + [0, 3368], + [0, 1783, 26755, 6892], + [1, 2343, 18299], + [0, 18300, 18301, 18302, 2523], + [0, 1139, 18089, 26761, 26762, 26763, 26764], + [ + 0, 5583, 811, 816, 10615, 1111, 1317, 1414, 1429, 1177, 1903, 2026, 2193, 2600, 2805, 5944, 3112, 7612, 3114, + 26767, 26770, 26772, 26774, 26776, 7617, 7648, 2899, 26777, 3278, 4042, 4167, 4342 + ], + [0, 1783, 57, 20627, 3105, 26780], + [1, 2343, 18304], + [0, 0, 18305, 18306, 4139], + [0, 5328, 1166, 5946, 3165, 4232, 4255], + [0, 1783, 3105, 26780, 10345, 26786], + [1, 2343, 18308], + [0, 0, 18309, 18310, 2523], + [0, 5583, 816, 10615, 1414, 1177, 1903, 3105, 7648, 2899, 4042], + [0, 26780, 3105, 1783], + [1, 2343, 18342], + "dw-neit-", + [2, 18312, 1512], + "dw-neit-c", + [2, 18314, 11163], + [2, 18315, 3007], + [2, 18312, 45], + [3, 1793, 11], + "-des", + "ign-react-slick", + [2, 18319, 18320], + [2, 18318, 18321], + "rc-co", + "mponent", + [2, 12796, 9948], + [2, 18324, 18325], + [2, 18323, 18326], + [2, 18312, 18327], + [3, 18328, 21], + "e-observer", + [2, 15557, 18330], + [2, 18329, 18331], + [2, 18329, 11194], + [2, 18329, 11184], + [3, 18334, 22], + [2, 18335, 13168], + [3, 18328, 12], + "ascader", + [2, 18337, 18338], + [2, 18337, 5449], + [3, 18328, 13], + [0, 0, 18309, 18352, 4139], + "llapse", + [2, 18341, 18343], + [3, 18328, 11], + "dialog", + [2, 18345, 18346], + [3, 18347, 12], + [2, 18348, 9997], + [3, 18349, 13], + [2, 18350, 11206], + [0, 26780, 3105, 1783, 3113, 26796, 26799, 26800], + "field-form", + [2, 18345, 18353], + [2, 18345, 158], + [3, 18355, 12], + [2, 18356, 1020], + [2, 18357, 11211], + "mentions", + [2, 18345, 18359], + [3, 18360, 14], + [2, 18361, 11215], + [3, 18360, 12], + [2, 18363, 11218], + [2, 18345, 9044], + [1, 2343, 18395], + "pagination", + [2, 18345, 18367], + [3, 18368, 12], + [2, 18369, 9947], + [2, 18369, 10148], + [2, 18345, 6882], + [3, 18372, 12], + [2, 18373, 11227], + "segmented", + [2, 18345, 18375], + [3, 18376, 13], + [2, 18377, 4021], + [3, 18376, 12], + [2, 18379, 10205], + [2, 18379, 11234], + [2, 18379, 10222], + [2, 18345, 17966], + [3, 18383, 12], + [2, 18384, 11241], + [2, 18384, 11243], + [2, 18345, 614], + [3, 18383, 14], + [2, 18388, 2699], + "ooltip", + [2, 18384, 18390], + [2, 18386, 11245], + [3, 18387, 12], + [2, 18393, 184], + [0, 18396, 18397, 18398, 2537], + [0, 1525, 1792, 2051, 2600, 3524, 4001, 26806, 4431, 4449], + [0, 1596, 2759, 26808, 4255, 4389], + [0, 1783, 2636, 6270, 1283], + [1, 2343, 18400], + [0, 0, 18401, 18403, 2537], + [0, 4874, 1414, 1437, 1894, 3985, 3998, 4294, 4505, 91, 1906], + "control flow", + [0, 14903, 1783, 26815, 176, 15847, 2585], + [1, 2343, 18405], + [0, 0, 18406, 18408, 2443], + [0, 17212, 4874, 4880, 4883, 33492, 668, 89, 3824, 3857, 15728, 26827, 91, 188], + "zrender", + [0, 1783, 33510, 89, 3698, 1219, 188, 12072, 8588, 23332, 33512, 3857, 1936], + "@lang/rollup-plugin-dts", + [1, 2343, 18414], + [2, 14678, 17116], + [2, 9816, 1974], + "apache", + [0, 18416, 16487, 18417, 2537], + "data-viz", + [0, 1537, 26835, 2226, 26836, 26837, 26838, 3183, 26839, 22230, 4001, 26840, 22557], + [ + 0, 26786, 20627, 1739, 1746, 1745, 26842, 156, 4017, 3966, 1783, 5980, 1932, 9591, 11043, 4001, 26843, 8924, + 3902, 176, 26845, 26847, 10631, 6033 + ], + [1, 2343, 18419], + [0, 18429, 18436, 18437, 2523], + [2, 6038, 1541], + "gulp-e", + "xclude-gitignore", + [2, 18421, 18422], + "gulp-rep", + [2, 18424, 2902], + "gulp-tap", + "linez", + "os-locale", + [0, 3167, 27252, 18578, 26852, 28035, 28719, 28722, 26987, 4290], + [3, 5248, 9], + "t-stream", + [2, 18430, 18431], + [3, 11320, 11], + "ugh2", + [2, 18433, 18434], + [ + 0, 442, 19344, 1091, 1166, 1414, 26854, 1177, 1942, 1953, 1964, 1982, 26855, 2205, 2822, 26696, 2858, 3105, + 26770, 26776, 7617, 17250, 17269, 3400, 4409, 4452, 91, 2924, 4677 + ], + [0, 1783, 671, 5980, 26859, 3124], + "@types/vinyl", + "-fs", + [2, 18438, 18439], + [1, 2343, 18445], + "fix", + "enforce", + "gulpplugin", + [0, 18446, 18447, 18448, 2399], + [0, 1525, 1696, 2687, 2822, 2858, 26865, 3124, 3105, 3181, 26866, 25648, 27921], + [0, 1166, 17269, 1906], + [0, 1783, 3124, 200, 13326], + [1, 2343, 18450], + [0, 0, 18451, 18452, 2537], + [ + 0, 5517, 26873, 26876, 16607, 6063, 6065, 16608, 16612, 1448, 20627, 1610, 12607, 668, 26739, 1177, 2600, 3105, + 26878, 26880, 26881, 4039, 4131, 23878, 4484, 91 + ], + [0, 1783, 26885, 1936], + [1, 2343, 18454], + [0, 18457, 18465, 6604, 2537], + "keepalive", + [2, 4575, 18455], + [ + 0, 9569, 9573, 7610, 9577, 9548, 9568, 9547, 2745, 9556, 9565, 9558, 9560, 9552, 9562, 9566, 3023, 3032, 9563, + 3105, 3114, 9580, 9584, 5961, 9554, 4110, 9550 + ], + "aliasify", + "backport", + [3, 2250, 18], + [2, 18460, 3227], + "run", + "grunt-run", + [2, 4431, 4226], + [0, 1389, 1448, 2070, 9588, 2899, 9586, 4255, 4257], + [1, 2343, 18467], + [0, 18468, 0, 2514, 2537], + [0, 1804, 26895], + [1, 2343, 18470], + [0, 18471, 0, 6260, 2399], + [0, 1282, 26902, 2926, 3060, 3070, 3744, 26906, 3911, 3935, 26908, 4649], + [1, 2343, 18474], + [2, 8243, 3038], + [0, 18475, 18476, 18477, 4139], + [0, 97, 26915, 25212, 26917, 13746, 26921, 4127, 15918, 26922], + [ + 0, 53, 13052, 5825, 83, 87, 94, 19961, 6503, 1009, 1011, 1145, 1195, 1414, 1503, 1700, 26703, 1854, 1177, 1895, + 1903, 1938, 1951, 1953, 1955, 1958, 2024, 11425, 2061, 2070, 2323, 2338, 2036, 26924, 2297, 2895, 2900, 2904, + 2923, 4922, 2925, 3188, 2899, 3200, 26925, 26927, 26930, 26932, 26933, 26935, 1894, 3729, 4193, 26940, 4441, + 4474, 91, 2924, 26941 + ], + [0, 18108, 26944, 5746, 26934, 26945, 57, 7256, 6988, 14642, 26946, 26947, 17679, 2275], + [1, 2343, 18485], + "lazy-val", + "dmg-builder", + "builder-", + [2, 18481, 614], + "builder-lib", + [2, 10735, 18483], + [0, 18486, 18489, 2514, 2399], + [0, 6641, 26956, 13651], + "-runtime", + [2, 18482, 18487], + [0, 2899, 2924], + "-ci", + "@types/is-ci", + [1, 2343, 18504], + "nsis", + "dmg", + "msi", + "setup", + "Windows", + "OS X", + "MacOS", + "Mac", + "appx", + "snap", + "flatpak", + [0, 0, 18505, 18506, 34352], + [0, 2899, 4255], + [0, 3135, 26963, 26965], + [1, 2343, 18515], + "asar", + [2, 8243, 18508], + "notarize", + [2, 8243, 18510], + "osx-sign", + [2, 8243, 18512], + [2, 8243, 14566], + [0, 18516, 18519, 18520, 2537], + [0, 9363, 9315, 26972, 23289, 12429, 3167, 26981, 26983, 26985, 26986, 26987, 26990], + "-windows-exe", + [2, 1615, 18517], + [0, 4874, 1414, 26992, 668, 17232, 23276, 2581, 3140, 26993, 1894, 3985, 3998, 4072, 4505, 91, 1906], + [0, 6892, 1783, 26885, 26995, 26564, 1644, 5341, 1633, 23266, 6435, 614], + "galactus", + [3, 2179, 12], + "info", + [2, 18522, 18523], + "junk", + "author", + "parse-author", + "rcedit", + [2, 27093, 33977], + [1, 2343, 18531], + [0, 18532, 18533, 18534, 2523], + [0, 12396, 9363, 23247, 23289, 27003, 27006, 23254, 4555, 12449], + [0, 4874, 23262, 1414, 2581, 2588, 3137, 27008, 27010, 1894, 3985, 3998, 4505, 91, 1906], + [0, 23266, 26564, 26995, 2587, 23267, 614, 6435, 1783, 1936], + [3, 8256, 10], + "ownload", + [2, 18535, 18536], + [1, 2343, 18539], + [0, 0, 18541, 18542, 2487], + "home-path", + [0, 1091, 10738], + [0, 2382, 27017, 27018, 1623], + [1, 2343, 18544], + [0, 18546, 0, 18547, 2523], + "wonderful-fetch", + [0, 27073, 27076], + [0, 27078, 2325, 5576, 24093, 27080, 27081, 27083, 27084, 3143, 27085, 18037], + [1, 2343, 18549], + [0, 18550, 18553, 18554, 2537], + [0, 18529, 33978, 33980, 33981, 33983, 33990, 33998, 34001, 27092, 27094, 26256, 27472, 27096, 4484], + "-processor", + [2, 6870, 18551], + [ + 0, 5087, 27098, 4874, 1130, 1145, 1398, 2651, 2675, 27099, 1192, 3502, 1894, 3729, 3923, 4039, 4393, 4468, 4469, + 4474, 4487, 27101, 91, 1002, 614, 2924, 4677, 4681 + ], + [ + 0, 2150, 17462, 27103, 3150, 3144, 2090, 6771, 2944, 3151, 27105, 4607, 1973, 5472, 3212, 27106, 27108, 27110, + 27111, 27112, 27113, 27114, 27119 + ], + "grunt-banner", + [1, 2343, 18557], + [0, 0, 18558, 18559, 2523], + [ + 0, 5535, 5366, 5087, 27124, 19446, 4874, 1009, 1011, 1317, 1610, 1177, 1895, 1939, 1955, 2024, 27125, 1192, + 3044, 3057, 3117, 27126, 13824, 19445, 27127, 3467, 1894, 4039, 4042, 4069, 4073, 4075, 4201, 4468, 4474, 4484, + 91 + ], + [0, 7906, 27130, 2325, 6681], + [1, 2343, 18567], + "@vue/comp", + "onent", + "iler-utils", + [2, 4312, 18563], + [2, 18562, 18564], + [2, 18561, 18565], + [0, 0, 18568, 18577, 2523], + [0, 1429, 2323, 4193, 27136, 2463, 4196, 2447, 2436, 2839], + "algoliasearch", + "vue-jsx", + [2, 1226, 18570], + [3, 1280, 9], + [2, 17006, 18487], + [2, 18572, 18573], + "cp-cli", + [3, 17554, 15], + [0, 2325, 27138, 2869, 13901], + [2, 27009, 12442], + "lemefe", + [2, 18576, 18579], + [3, 2095, 9], + "gulp-cssmin", + "-editor-middleware", + [2, 8427, 18583], + [3, 3112, 13], + "hain", + [2, 18585, 18586], + [1, 2343, 18600], + "version-cli", + [2, 9951, 18589], + "transl", + [2, 18591, 6917], + "uppe", + "rcamelcase", + [2, 18593, 18594], + [3, 4645, 13], + "es2015-co", + [2, 18597, 14717], + [2, 18596, 18598], + [0, 18601, 18602, 18603, 4139], + [0, 25911, 3923], + [0, 1329, 15990, 1596, 1177, 2759, 2899, 4170], + [0, 2150, 3151], + [1, 2343, 18605], + [0, 0, 18606, 18607, 2523], + [0, 2025, 2899, 2228, 2240, 2300, 2273, 3760], + [0, 3151, 1973, 3101, 2041, 7046, 1398], + [1, 2343, 18617], + "brorand", + "hash.js", + "hmac-drbg", + "istic-assert", + [2, 6907, 18612], + [3, 18613, 13], + [2, 1619, 594], + [2, 18614, 18615], + [0, 0, 18618, 2514, 2537], + [0, 2899, 4170, 640], + "EC", + "Elliptic", + "curve", + "Cryptography", + [1, 2343, 18624], + [0, 8856, 7938, 7939, 2487], + [1, 2343, 18626], + [0, 0, 18628, 18630, 2523], + "@ladjs/consolidate", + [ + 0, 811, 8850, 816, 13789, 7892, 1166, 27163, 1532, 1677, 27164, 27166, 2020, 2205, 2709, 27171, 18183, 27168, + 3919, 11891, 4042, 4057, 4060, 13781, 27162, 4481, 4507, 91, 1906, 4748 + ], + "@ladjs/i18n", + [0, 200, 20052, 614, 6435, 1383, 6478, 1523, 3924, 3157, 27173, 27174, 57, 5675, 6802, 6847, 8429, 7201], + [1, 2343, 18638], + "get-paths", + "juice", + "preview-email", + "@jimp/core", + "-sendgrid", + [2, 3361, 18636], + [0, 0, 18642, 18644, 2537], + "lad", + "lass", + "mail", + [0, 4856, 6503, 4874, 1429, 1540, 2899, 91, 2924, 4677], + "mailchimp", + [0, 1698, 6899, 2051, 1496, 3048, 1388], + "mailgun", + "mandrill", + "moonmail", + "postmark", + "sendgrid", + [1, 2343, 18651], + [0, 0, 18652, 2514, 2537], + [0, 27184, 2759], + [1, 2343, 18654], + [0, 18662, 18663, 18664, 2537], + [3, 7639, 9], + "ilparser", + [2, 18655, 18656], + "mtp-server", + [2, 5051, 18658], + "mailparser", + "smtp-server", + [0, 1457, 1525, 1676, 2226, 16085, 27189, 3170, 27190, 27191], + [0, 19181, 442, 27194, 10723, 5245, 8778, 4874, 27196, 1414, 1177, 1938, 1953, 2203, 2899, 1894, 3980, 4452, 91], + [0, 2947, 12479, 2090, 13755, 5351, 5353, 1179, 1783, 5352, 3160, 4745], + [1, 2343, 18672], + "yam", + "sane", + "dag-map", + "p-defer", + "tree-sync", + "console-ui", + [0, 18674, 0, 2514, 2399], + "is-git-url", + [0, 27202, 13223, 2674, 27203, 27206, 4039, 4135, 4390, 4449], + "quick-temp", + [1, 2343, 18677], + [0, 18680, 18681, 2514, 4139], + "content-tag", + "core-object", + [0, 4590, 1676, 3164, 3494], + [0, 2899, 1177, 2759, 4342, 1954, 1938, 1958, 1903, 1948, 1970], + [1, 2343, 18696], + "capture-exit", + [2, 26872, 33868], + "stew", + [2, 1379, 18685], + [2, 1379, 1676], + "base-url", + [2, 1463, 18688], + "watch-", + "detector", + [2, 18690, 18691], + [2, 1379, 5614], + "broccoli-s", + [2, 18694, 5585], + [0, 0, 18711, 18712, 2523], + "-or-copy", + [2, 7100, 18697], + [2, 1379, 9381], + "-graph", + [2, 14940, 18700], + "is-language-code", + "-posix-path", + [2, 13626, 18703], + "-project", + [2, 2116, 18705], + [3, 18701, 11], + [2, 18707, 2942], + [2, 11338, 1781], + [2, 6333, 18709], + [0, 2899, 2759], + [0, 27, 3164], + "map-series", + [2, 9466, 18713], + [3, 1381, 10], + "iddleware", + [2, 18715, 18716], + "trees", + "low-trees", + [2, 18694, 18719], + ".hash.helper", + [2, 1862, 18721], + [3, 7648, 14], + [1, 2343, 18738], + "rminal", + [2, 18723, 18725], + "fs-monitor", + [2, 18707, 18727], + [2, 7077, 2849], + [2, 4099, 18729], + [3, 18693, 12], + "fig-loader", + [2, 18731, 18732], + [3, 18733, 16], + [2, 18734, 4068], + "-reducer", + [2, 1378, 18736], + [0, 18739, 18749, 18754, 2443], + [ + 0, 53, 61, 5717, 4851, 5240, 5874, 5838, 87, 14128, 90, 8862, 5583, 811, 8850, 816, 27221, 27223, 1165, 7913, + 27225, 27228, 22829, 1405, 1420, 1874, 2098, 2553, 2929, 3060, 3561, 3714, 4042, 13879, 10854, 4073, 4076, 4079, + 11481, 4072, 11482, 4484, 91 + ], + "@pnpm/find-workspace-dir", + "-works", + "pace-root", + [2, 18741, 18742], + [2, 4749, 18743], + [2, 2103, 18744], + "ulate-cache-key-for-tree", + [2, 3563, 18746], + "is-pa", + [ + 0, 48, 13693, 27232, 5522, 107, 1193, 1610, 27234, 1177, 27238, 1895, 1955, 1999, 2151, 2675, 1192, 2990, 27244, + 1894, 3957, 4039, 4165, 4294 + ], + "missing", + "ckage-missing", + [2, 18748, 18751], + [2, 1828, 18752], + [0, 6374, 4042, 27246], + [1, 2343, 18759], + "-registry", + [2, 4358, 18756], + [2, 1828, 18757], + [0, 18775, 0, 18780, 2537], + "yuidocjs", + "chai-files", + "yuidoc", + "-ember-cli-theme", + [2, 18762, 18763], + [3, 10419, 19], + [2, 18765, 2022], + [3, 18753, 11], + "-test-", + [2, 18768, 6706], + [2, 2270, 18769], + [2, 18767, 18770], + [3, 1827, 11], + "lueprint-test-helpers", + [2, 18772, 18773], + [ + 0, 5245, 1676, 26972, 23289, 27252, 27256, 17995, 27259, 27262, 26981, 27263, 26985, 27265, 27003, 27267, 26986, + 26987 + ], + "app-kit", + "ember", + [2, 5802, 18776], + "ember.js", + [0, 20627, 4643, 3987, 1936, 16892, 1783, 26885, 5980, 4549, 1644, 57, 1932, 3729, 3984, 8924, 3902, 11326, 207], + [1, 2343, 18782], + [0, 18783, 18797, 18798, 2523], + [0, 15643, 3530], + "amd-name-resolver", + [3, 1201, 14], + "ebug-macros", + [2, 18785, 18786], + [3, 12186, 15], + "ber-data-packages-polyfill", + [2, 18788, 18789], + [3, 18790, 19], + "modules-", + [2, 4610, 6422], + [2, 18792, 18793], + [2, 18791, 18794], + "broccoli-b", + [0, 2899, 3181, 27275, 2398], + [ + 0, 16159, 27277, 27278, 18132, 27280, 7256, 24440, 27281, 2090, 1586, 7131, 2100, 2070, 21543, 21544, 24441, + 27282, 27285, 27287, 3529, 13777, 6421, 19051, 3170, 3181, 3249, 27289, 27291, 3403, 13017, 11601, 27293, 1108, + 6961, 6920, 4166, 4259, 21520 + ], + "-transpiler", + [2, 13830, 18799], + [2, 18796, 18800], + [2, 6324, 6706], + [2, 1827, 18802], + "version-ch", + "ecker", + [2, 18804, 18805], + [2, 1828, 18806], + [1, 2343, 18821], + "@ember/optional-features", + "@ember/", + [2, 18810, 1871], + [2, 18810, 13281], + "@glimmer/component", + "@glimmer/", + [2, 18814, 17357], + [3, 10614, 11], + "s/lerna-changelog", + [2, 4406, 18817], + [2, 18816, 18818], + "ember-a", + [0, 0, 18836, 18837, 2537], + "uto-import", + [2, 18820, 18822], + [2, 1705, 1524], + [2, 1828, 18824], + [3, 18771, 12], + "-live-reload", + [2, 2429, 18827], + [2, 18826, 18828], + "initializers", + [2, 3614, 18830], + [2, 5802, 18831], + "ember-qunit", + [2, 5802, 14056], + [2, 5802, 4225], + [0, 27299, 7746, 4874, 1009, 1011, 1437, 27301, 3173, 1894, 23901, 27302, 91], + [0, 7188, 2090, 3171, 7305, 7070, 614], + "-channel-url", + [2, 18835, 18838], + [2, 15508, 2478], + "loader.js", + [1, 2343, 18843], + [0, 18845, 16075, 18846, 2399], + "ember-addon", + [0, 7305], + [0, 3171, 553], + [1, 2343, 18848], + [0, 11570, 11571, 18849, 2537], + [ + 0, 27314, 27315, 27316, 27317, 27318, 27319, 27320, 27322, 27323, 27315, 27325, 27326, 27328, 27330, 27332, + 27333, 27337, 27338, 27340, 27341, 27343, 2262, 7287, 27334, 27344, 27346, 27348, 27350, 27353, 27355, 27357, + 27358, 17697, 27359, 27360, 17737, 17739, 5284, 17625, 17626, 676, 91, 17627, 6869, 4799, 6915, 6333, 2382, + 6956, 17706, 17710, 6957, 17711, 17712, 17713, 17714, 17715, 17716, 17717, 17718, 5933, 1451, 7914, 27363, + 27365, 17651, 6899, 17720, 17721, 17722, 6789, 17723, 17724, 17726, 17727, 17729, 17730, 17731, 17732, 17733, + 614, 6910, 17734, 11600, 17735, 27366, 6681, 17740, 1745, 17116 + ], + [1, 2343, 18861], + "edition-utils", + [2, 18810, 18851], + [3, 4644, 15], + [2, 18853, 5218], + [2, 18791, 18854], + "-inline-precompile", + [2, 1829, 18856], + [2, 1199, 18857], + "broccoli-p", + "ersi", + [0, 18862, 18866, 18869, 2443], + [0, 4121, 4388], + "stent-filter", + [2, 18860, 18863], + [2, 18859, 18864], + [ + 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 4874, 1367, 1610, 1622, 1628, 1700, 1701, 1854, 1177, 1895, 20281, + 1938, 1939, 1942, 1953, 1955, 1982, 2092, 2203, 2675, 1192, 2780, 2832, 2990, 3144, 3400, 1894, 2278, 4111, + 4257, 91, 4523, 2924, 4677, 4681 + ], + "code-equality-assertions", + "js-string-escape", + [0, 2924, 1623, 7682, 11498], + "@emb", + "roider/test-setup", + [2, 18870, 18871], + [2, 1828, 1462], + [1, 2343, 18875], + [0, 18879, 18880, 18881, 2523], + "ort-", + "-global", + [2, 13527, 18877], + [0, 27377, 842, 1462, 27379, 1676, 668, 2105, 30621, 16860, 28134, 27380, 4072, 27385, 27388], + [0, 27390, 1177, 27393, 27394, 10624, 27395], + [0, 3178, 16862, 676, 1623, 11807, 1936, 14357], + [1, 2343, 18884], + "dat", + [0, 18885, 18887, 2514, 2443], + [0, 27404], + "ember-s", + [0, 4384, 4483, 3188, 4508, 1894, 4874], + "tyleguide", + [2, 18886, 18888], + [3, 1243, 11], + [2, 18890, 4486], + [2, 5802, 18891], + [1, 2343, 18896], + "ember-try", + [2, 1921, 2907], + [0, 0, 18897, 18898, 2537], + [0, 1158, 3421, 4389, 1177, 3410, 2708, 1159, 4103, 13614], + [0, 6478, 7128, 57, 3460], + [1, 2343, 18900], + [0, 18907, 18908, 18910, 2537], + "@emmetio/abbreviation", + "@emmetio/", + "css-a", + "bbreviation", + [2, 18903, 18904], + [2, 18902, 18905], + [0, 1525, 3313], + [0, 22102, 1192, 1894, 4468, 91], + "coding", + [0, 27425, 27428, 21655], + [1, 2343, 18912], + [0, 0, 18913, 18914, 34352], + [0, 27407, 4874, 13680, 1414, 1895, 1894, 4384, 4474, 4508, 91], + [0, 7148, 7204, 7161, 7048, 4014, 6899, 970], + [1, 2343, 18916], + [0, 18917, 18918, 2514, 2523], + [0, 1082, 3510, 15450, 27438], + [0, 4874, 7677, 1446, 1177, 1905, 5210, 2807, 1894, 15452, 91, 4543, 1984], + [1, 2343, 18920], + [0, 0, 18921, 18922, 2537], + [0, 53, 61, 71, 83, 87, 92, 97, 27445, 2126], + [0, 3190, 27447, 13795, 5128, 89, 6071, 27448, 11415, 27449, 27456, 27458, 27459], + [1, 2343, 18925], + "finish", + [0, 18926, 18927, 18928, 2523], + [0, 27464], + [0, 3190, 27464, 27468], + [0, 3190, 27447, 5128, 89, 6071, 27448], + [1, 2343, 18930], + [0, 18931, 18932, 18933, 2537], + [ + 0, 2591, 3242, 1687, 2070, 1676, 4747, 2105, 2822, 1457, 3181, 3527, 7801, 3074, 4748, 27476, 17450, 4351, + 27481, 4300, 1874, 4143 + ], + [ + 0, 3421, 1429, 2931, 1776, 2297, 4193, 27510, 1177, 3278, 3984, 4039, 4042, 4135, 2203, 26079, 2924, 1894, 1610, + 442, 27500, 91, 27501, 4874, 2665, 2900, 3105, 4677, 4892, 1509, 3123, 3401, 10630, 62, 27490, 27497, 27506, + 27507, 1953, 17529, 3125, 27509, 5946, 3114, 4923, 3107, 8850, 27499, 8862, 2904, 2915, 2881, 811, 27504, 4079, + 13866, 4066, 816, 23652, 27495, 27487 + ], + [0, 2899, 1973, 5982, 6969, 4384, 5472, 1429, 6468, 1166, 1192, 4389, 2765, 2297], + [1, 2343, 18935], + [0, 18936, 18937, 18938, 2487], + [0, 7058, 3758], + [0, 1429, 2899, 25928, 91], + [0, 2899, 6533, 3758, 3197], + [1, 2343, 18940], + [0, 18941, 18942, 18945, 2523], + [0, 1676, 3135, 3188, 4294, 6523], + [0, 826, 1429, 6524, 1177, 2899, 4039, 27525, 27526], + "entitify", + "entity", + [0, 2899, 2793, 16237], + [1, 2343, 18947], + [0, 0, 0, 18948, 2443], + [0, 2899, 16237, 27532, 4504], + [1, 2343, 18950], + [0, 0, 18953, 18954, 2523], + "enumeration", + "datatype", + [0, 1429, 1177, 21470, 2899, 4039, 4135], + [0, 3212, 2150, 1973, 1182, 6771, 3151], + [1, 2343, 18956], + [0, 18957, 18958, 18959, 4139], + [0, 27544, 2159, 15312, 27547, 2571, 2756, 3431], + [ + 0, 5517, 13614, 23237, 27552, 27555, 27557, 27559, 27562, 27564, 27567, 27568, 27570, 27571, 27573, 27575, + 27576, 4874, 27578, 27580, 19325, 1159, 9254, 1855, 1177, 2011, 2133, 2569, 2708, 3410, 3421, 4103, 4389 + ], + [0, 5472, 3212, 3048, 3205, 6692, 6822, 1973, 6865, 6739], + [1, 2343, 18961], + [0, 18962, 18967, 18970, 2537], + [0, 12929, 3369], + [3, 15801, 15], + [2, 18963, 200], + "ify-object", + [2, 4745, 18965], + [0, 1610, 1177, 2899], + "issues", + "reporting", + [0, 3209, 7190, 14419, 14416, 14510, 22228, 1973, 3212, 13106], + "diagnostics", + [1, 2343, 18973], + [0, 0, 7923, 18974, 2487], + [0, 1973, 3212, 202, 2150, 2184], + [1, 2343, 18987], + [3, 1143, 20], + "function.", + ".name", + [2, 6688, 18978], + [2, 18977, 18979], + [3, 2620, 13], + [2, 18981, 3053], + "oolean-object", + [2, 15644, 18983], + "allable", + "is-callable", + [0, 0, 18991, 18998, 2523], + "umber-object", + [2, 13631, 18988], + "is-string", + [0, 2899, 4042, 4076, 4170, 91], + "is-subset", + [2, 3024, 1867], + [2, 3436, 6693], + "rst-selector-parser", + [3, 11434, 17], + [2, 18996, 6678], + [0, 1666, 3212, 1973], + [1, 2343, 19004], + " rendering", + [2, 4161, 19000], + "Render", + [2, 4161, 19002], + [0, 0, 19008, 19009, 2487], + "test utils", + " helpers", + [2, 6468, 19006], + [0, 2759, 2272, 4193, 27601, 4616], + [0, 3212, 13106, 3209, 1237, 2325, 2275, 1973, 27603, 5472, 6969], + [1, 2343, 19011], + [0, 5621, 19012, 19013, 2523], + [0, 2323, 2372, 27608, 2436, 2447, 2463, 27610, 2272, 2839, 2924], + [0, 3212, 27612, 27614], + [1, 2343, 19015], + [0, 19016, 19021, 19022, 2537], + [0, 7058, 2070, 2929, 1209, 11993, 3084, 3310, 2015, 27624, 27623], + "airbnb-", + [2, 19017, 3744], + "fromentries", + [2, 3436, 19019], + [ + 0, 2812, 4481, 27633, 1192, 3241, 27649, 3533, 1676, 27637, 1409, 27635, 1759, 1177, 3078, 27658, 1096, 2738, + 3363, 27656, 4474, 4709, 27636, 27643, 2774, 27648, 1894, 1596, 27641, 2777, 3379, 4342, 27645, 3747, 91, 27659, + 4874, 27632, 27655, 27634, 27657, 27628, 27644, 27630, 27647, 25710, 27660, 27640, 1954, 27652, 826, 27626, + 1958, 1895, 1955, 1966 + ], + [0, 27662, 14584, 5130, 5995, 27664, 17829, 14586, 3166, 11631, 24090, 27666], + [1, 2343, 19024], + [0, 0, 19025, 19026, 2523], + [0, 2907, 4042, 1610, 91, 4874, 2915], + [0, 3220, 1666, 6901, 1644, 1671, 2649, 2679, 6728, 6804], + [1, 2343, 19028], + [0, 19029, 19030, 19031, 2537], + [0, 3220], + [0, 2228, 2247, 2273, 2277, 2281, 17565, 91], + [0, 3220, 1666, 6901, 27679, 27680, 27681, 27678, 16626], + [1, 2343, 19033], + [0, 19034, 19035, 19037, 2523], + [0, 2858, 27688, 27692, 27693, 27696, 3502, 1894, 27700, 27702, 27703, 4745], + [0, 27709, 32818, 7677, 668, 21290, 3541, 3985, 27711, 91, 1984, 27714], + [2, 6296, 3741], + [0, 6038, 4967, 6400, 27708, 21290, 4745], + "codependence", + [1, 2343, 19040], + [0, 0, 19061, 19062, 2399], + " for es6", + [2, 4354, 19041], + "check for ", + [2, 19043, 5260], + "es check", + "es matching", + "es version", + " check", + [2, 5286, 19048], + [3, 19049, 11], + "matching", + [2, 19050, 19051], + [2, 19050, 15525], + "js version", + [2, 19054, 19048], + [3, 19055, 11], + [2, 19056, 19051], + "test ", + [2, 19058, 19054], + [2, 19058, 19053], + [0, 442, 4874, 7677, 1177, 1895, 1966, 1982, 1894, 4039, 4508, 4514, 17223, 91, 4523, 1983, 26744, 1984], + [0, 27722, 27723, 27724, 5675, 27725, 6400, 5995], + [1, 2343, 19064], + [0, 19068, 19075, 19079, 4139], + "bigints", + "has-bigints", + "intl-", + [ + 0, 16003, 32967, 16005, 16000, 19267, 15999, 20870, 23721, 19282, 6372, 27731, 1364, 1367, 23723, 1395, 1505, + 1525, 1575, 1610, 1640, 1759, 1853, 2026, 9243, 2040, 2117, 27735, 27737, 2626, 2814, 7796, 3162, 3230, 27740, + 3237, 3527, 23726, 4148 + ], + "back-symbol", + [2, 9925, 19069], + [2, 19067, 19070], + [3, 5742, 14], + [2, 3094, 19072], + "make-a", + [ + 0, 53, 68, 87, 27742, 27743, 1195, 1429, 1465, 1540, 1584, 1628, 1651, 1177, 1881, 1938, 1982, 26154, 2092, + 2675, 2899, 12690, 3322, 3363, 4307, 4342, 2924, 4677 + ], + "unction", + "sync-function", + [2, 19074, 19077], + [0, 20897, 27746, 6910, 18035, 27747, 8626, 8298, 27749, 1550, 3230, 27750, 27751, 27752], + "reflect", + ".ownkeys", + [2, 19080, 19081], + [2, 7315, 7262], + [2, 5511, 19083], + [1, 2343, 19086], + [0, 19087, 19088, 19089, 4139], + [0, 1395, 27759, 27762], + [ + 0, 3421, 4481, 29749, 1429, 1437, 2899, 4193, 27764, 4747, 1177, 4135, 27765, 2026, 2822, 4474, 1894, 4196, 91, + 5307, 4856, 4874, 1436, 27767, 6503, 6513, 27768, 5254, 6494, 27772, 27775, 27776, 27779, 6512, 27781, 27782, + 4232, 1951, 1978, 1895, 1955, 608, 603, 1011, 27786, 15115, 27790, 27792, 1009, 10964, 549 + ], + [0, 3230, 13392, 11489], + [1, 2343, 19091], + [0, 19095, 19098, 19103, 2399], + "es6-symbol", + "esniff", + "next-tick", + [0, 27798, 3230, 27799, 27800, 3242, 27801], + "plain", + [2, 19096, 4007], + [ + 0, 30604, 29957, 4874, 27803, 27805, 27807, 1091, 1414, 1448, 18192, 1177, 13850, 2026, 2151, 2600, 21630, 3044, + 27810, 20451, 3127, 3188, 2899, 3220, 27786, 12690, 29780, 3275, 3754, 4193, 29998, 91, 4523, 3348 + ], + "ecmascript5", + "ecmascript6", + "extensions", + "addons", + [0, 3230, 1746, 11415, 2844, 18035, 27812, 2382, 27814, 3766, 18037, 3469, 1747], + [1, 2343, 19105], + [0, 19106, 19107, 19109, 2523], + [0, 1605, 1541, 1292, 4218, 4545, 4220, 27822], + [0, 2228], + "es5 shim", + [0, 3233, 27826, 27827, 20863, 27829, 27830], + [1, 2343, 19111], + [0, 19112, 19107, 19113, 2523], + [0, 1541, 1544, 3233, 27835, 27822], + [0, 3233, 27837, 27826, 27827, 27838, 12619, 20863, 27840], + "rettime", + [1, 2343, 19116], + [0, 19117, 19131, 19133, 4139], + [0, 27847, 1676, 3230, 27849, 27852, 27855, 27856, 27857, 27859, 3427], + "json3", + [2, 1379, 4042], + "git-repo-", + [2, 19120, 15525], + [2, 1379, 4650], + [2, 1379, 4535], + "-phantom", + [2, 3736, 19124], + "6-plugin-strip-class-callcheck", + [2, 1172, 19126], + [3, 14198, 32], + "nstants", + [2, 19128, 19129], + [0, 1166, 1503, 1177, 1903, 1920, 1938, 1954, 1958, 1970, 27861, 27866, 27869, 27872, 27873, 27874, 27875, 3421], + "futures", + [0, 3236, 3230, 1550, 13392], + [1, 2343, 19135], + [0, 19136, 19137, 19139, 2523], + [0, 1304, 1676, 1704, 3440, 16128], + [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4237, 4342], + [3, 7872, 9], + [0, 2026, 27, 2942, 2663], + [1, 2343, 19141], + [0, 7936, 7938, 7939, 2399], + [1, 2343, 19143], + [0, 19144, 19147, 19148, 2399], + [0, 4729, 4038, 1676, 27764, 4238, 27897, 27899, 3183, 9241, 3084, 27902, 1537, 27910, 3923, 27905, 14731], + "es6-tests", + [2, 12790, 19145], + [ + 0, 3421, 1429, 4389, 4193, 1177, 2202, 3188, 4039, 4170, 4216, 668, 2203, 4474, 1457, 1894, 27912, 442, 3697, + 3980, 91, 4856, 4874, 19325, 6513, 1834, 27918, 27920, 19181, 12310, 5536, 5476, 10936, 27924, 1938, 1895, 1955, + 1011, 1567, 5478, 27915, 1009, 10614 + ], + [0, 3241, 27927, 20001, 20003], + [1, 2343, 19150], + [0, 0, 19152, 2514, 4139], + [2, 31089, 9224], + [0, 2675, 2899, 1177, 1894, 2025, 2990], + [2, 31715, 31719], + [1, 2343, 19155], + [0, 19156, 19157, 19158, 2399], + [0, 27936, 1525, 1676, 25625, 25635], + [0, 192, 5467, 16607, 6065, 16608, 16612, 2899, 4131, 4255], + [0, 18035, 3243, 14872, 36, 27939, 26472, 27940, 27942, 25635, 27944, 26472, 27945, 13531, 27948], + [1, 2343, 19160], + [0, 19162, 19163, 19164, 2443], + "special", + [0, 27959, 617, 9213, 27962, 977, 2220, 27964, 9218, 9219, 3509, 3527, 19114, 4266, 9221, 4454, 4507, 27955, 4747], + [ + 0, 192, 5467, 19151, 19181, 442, 17982, 5497, 9225, 9226, 8648, 6494, 27966, 4874, 19153, 1009, 1011, 5474, + 1170, 13662, 1527, 1610, 1613, 1652, 668, 8161, 1177, 1895, 1955, 2026, 2078, 19213, 2070, 2832, 27967, 2931, + 2990, 27969, 1894, 23535, 3957, 4039, 9245, 4493, 91, 4523, 4548, 4027, 1984, 9250, 2924, 9258, 3244 + ], + [0, 5592, 3212, 8788, 6812, 6688, 36, 11100, 1852, 5472, 6400, 10768], + [1, 2343, 19166], + [0, 19169, 19170, 19173, 2537], + [2, 18756, 4219], + [2, 1370, 19167], + [0, 27978, 1410, 1537, 3188, 3427, 1000, 1695], + [0, 1693, 2026, 2139, 27981, 2899, 3421, 4039, 4255, 27984], + "-everywhere", + [2, 10906, 19171], + [0, 1669, 3689, 15237, 2139, 27986, 2026, 2663], + [1, 2343, 19175], + [0, 19176, 8134, 19178, 2537], + [0, 22970, 27992, 3181], + [3, 442, 8], + [0, 18132, 2100, 2070, 21543, 21544, 3529, 13777, 3181, 13017, 11601, 21520], + "config-array", + [2, 19177, 19179], + [2, 19177, 1998], + "@humanwhocodes/module-importer", + [3, 19182, 15], + [2, 19183, 1153], + "@nodelib/fs.walk", + "esquery", + "imurmurhash", + "-without-jsonify", + [2, 2851, 19188], + "levn", + [1, 2343, 19196], + "@eslint/co", + [2, 19192, 23], + [2, 442, 1803], + "@trunkio/launcher", + [0, 19197, 19198, 19199, 2523], + [0, 4538, 2657, 4100], + [0, 3421, 27999, 2899, 1177, 3188, 4039, 4339, 4012, 1948], + [0, 2090, 9229, 2141, 3101, 6949], + [1, 2343, 19201], + [0, 19211, 19212, 19214, 2537], + [2, 3192, 5130], + [2, 11095, 19202], + [3, 1992, 9], + "lease", + [2, 19204, 19205], + "eslint-r", + "ule-composer", + [2, 19207, 19208], + "eslump", + [0, 2100, 2151, 2859, 1209, 5303, 3445, 3348], + [0, 2765, 3421, 33373, 3980], + "fs-teardown", + [0, 1649, 1936, 28007, 3256, 28009, 28012], + [1, 2343, 19217], + "metascraper", + [0, 0, 19228, 19229, 2537], + "-description", + [2, 19216, 19218], + [3, 19219, 12], + [2, 19220, 158], + [2, 19220, 11255], + [2, 19222, 4147], + [2, 19220, 17913], + "node-po", + "lyfill-webpack-plugin", + [2, 19225, 19226], + [0, 1999, 1429, 4770, 2899, 1177, 2272, 4042, 3758, 4535], + [0, 3257, 1283, 5354, 1797], + "npm-license", + "polyfills", + [2, 4065, 19231], + [1, 2343, 19234], + [0, 0, 19236, 19237, 2399], + "yorkie", + [0, 1759, 2323, 2384, 2508, 2675, 2297, 2881, 2908, 2915, 28023, 28024, 1894, 25851, 2907, 4039, 4042, 4072, 28027], + [0, 10052, 8691, 28030, 7131, 6333, 7518], + "sql-escaper", + [1, 2343, 19240], + [0, 19241, 19245, 2514, 2443], + [0, 1325, 3923, 4100, 28036], + "ape-runner", + [2, 1285, 19242], + "eslint-f", + [0, 1087, 1177, 4127, 28038, 28039, 28040], + "ind-rules", + [2, 19244, 19246], + [1, 2343, 19249], + [0, 19250, 19251, 19252, 2537], + [0, 3080, 24383, 18073, 2685, 19238, 28047, 28049, 28052], + [ + 0, 1414, 4494, 28059, 2203, 1894, 1317, 1610, 442, 3560, 91, 4874, 28056, 19181, 27928, 6473, 1895, 1955, 1011, + 28058, 1009, 13188 + ], + [0, 3259, 5576, 36], + "using-browser-globals", + [2, 12084, 19253], + [1, 2343, 19256], + [0, 19257, 19258, 19259, 2443], + [0, 21243, 3427, 21246], + [0, 2759, 1362, 2899], + [0, 19138, 1862, 28067, 21244, 5194], + [1, 2343, 19264], + [3, 3703, 10], + [3, 9487, 11], + [2, 19261, 19262], + [0, 0, 19265, 19266, 2537], + [0, 28072], + [0, 3417, 202, 15525, 10057, 28074, 202, 17180, 1263], + [2, 15998, 23720], + [1, 2343, 19272], + "quality", + "jslint", + "code style", + [0, 0, 19274, 2514, 2537], + "verify", + [0, 1326, 1525, 2070, 705, 3923, 4384, 1695], + [1, 2343, 19276], + [0, 0, 19277, 19278, 2537], + [0, 4548, 4874, 91], + [0, 28088, 2382, 705, 1781, 18037, 3166, 2378, 18035], + [1, 2343, 19283], + " config", + [2, 1177, 19280], + "@lezer/highlight", + [0, 19284, 19285, 19287, 2523], + [0, 5012, 1634, 1639, 28094, 26902, 28095, 17011, 7917], + [ + 0, 10821, 10828, 10837, 5087, 4874, 5090, 4880, 1177, 10619, 2675, 28098, 1192, 2968, 28101, 2990, 1894, 3744, + 89, 3824, 3904, 4039, 4232, 4469, 4484, 91, 2924, 4676, 4681, 4749 + ], + [2, 15289, 17540], + [0, 1623, 590, 592, 3528, 2378, 2994, 89, 676, 7164, 7165, 369, 4636, 4627, 4315, 28103, 5547, 5376], + [2, 19289, 1564], + [3, 28155, 14], + [1, 2343, 19291], + [0, 0, 0, 19292, 4139], + [0, 3348, 3778, 3265, 1002], + [1, 2343, 19294], + [0, 19295, 19296, 19297, 2537], + [0, 18509, 1170, 1809, 2151, 28115, 28116, 3079, 3275, 28118, 4108, 4232, 4449, 4747], + [ + 0, 5245, 4864, 28120, 5087, 21621, 4874, 28123, 6520, 4892, 1009, 1011, 1804, 1177, 1895, 1955, 1192, 3541, + 1894, 4039, 4469, 91, 2924, 4677 + ], + [0, 28125, 1804, 1896, 970, 21009], + [1, 2343, 19299], + [0, 19300, 19303, 19304, 2487], + [ + 0, 4729, 3467, 4390, 2806, 3445, 3348, 1170, 1473, 2072, 4747, 20991, 1209, 3078, 3127, 3188, 3483, 4135, 3013, + 4708, 4734, 2003, 3742, 4167, 1137, 1457, 1894, 3761, 4473, 3181, 28130, 1483, 4183, 4227, 91, 28132, 8612, + 28133, 19499, 28135, 20949, 28136, 28137, 14774, 28142, 3762, 635, 28145, 28151, 19288, 1573, 20934, 28155, + 28158, 28164, 28214, 28167 + ], + "eslint-patch", + [2, 9112, 19301], + [ + 0, 1429, 2228, 2675, 2899, 4193, 26212, 2759, 9241, 13214, 4856, 4874, 7819, 2314, 2990, 9357, 28177, 28178, + 6513, 4892, 28180, 4870, 28182, 5254, 28184, 28187, 28189, 7812, 7749, 14352, 28192, 28195, 1431, 2258, 4232, + 2247, 2283, 33046, 28203, 9417, 28206, 5244, 28211, 1567 + ], + [0, 3271, 91, 5284], + [1, 2343, 19306], + [0, 19307, 19321, 19322, 2487], + [0, 28219, 28223, 28224, 1759, 2665, 28225, 3232, 3519, 1552, 18730, 28228, 26940, 4545, 3348, 28230], + " Standard Style", + [2, 17626, 19308], + "code checker", + "code linter", + "code st", + "andards", + [2, 19312, 19313], + "policy", + " style", + [2, 4255, 19316], + [2, 590, 16792], + "style ", + "style linter", + [ + 0, 811, 8850, 816, 23689, 4874, 1009, 28232, 1610, 1177, 21564, 1938, 1953, 1958, 2323, 2441, 28233, 2765, 2766, + 671, 3275, 3421, 28234, 3752, 4039, 4042, 4193, 4232, 4255, 4474, 15097, 91, 28235, 2924, 18237 + ], + [ + 0, 28238, 28241, 17134, 28242, 28243, 207, 28244, 28245, 28246, 28247, 28248, 28249, 28251, 28253, 28256, 28258, + 28260, 28261, 28265, 28266, 4420, 28267, 28269, 28271, 28273, 28274, 28275, 28277, 28280 + ], + [1, 2343, 19324], + [0, 19326, 19327, 19328, 34352], + "@types/tape", + [0, 2714, 1149, 4747, 28285], + [0, 3421, 4616, 1177, 1596, 28287, 3980, 10614], + [0, 8309, 28289, 28291], + [1, 2343, 19330], + [0, 0, 19331, 19340, 2523], + [0, 2899, 4039, 21228], + [3, 19180, 15], + [2, 19332, 3323], + "__js", + [2, 5601, 19334], + "automd", + "eslint-t", + "ypegen", + [2, 19337, 19338], + [0, 200, 1585], + [1, 2343, 19342], + [0, 0, 19343, 19345, 2523], + [0, 4874, 4880, 1009, 1011, 1587, 1177, 1895, 1955, 1959, 1961, 1161, 1894, 4484, 91], + [3, 7844, 24], + [0, 28303, 6085, 89, 1896, 28304, 12780, 190, 5995], + [1, 2343, 19351], + "xoxo", + "hugs", + "kisses", + "happy", + [0, 19352, 19354, 19355, 2537], + [0, 1149, 3188, 4545, 3012, 28310], + "happiness", + [0, 1429, 2899, 4193, 705, 1525, 28312], + [0, 18035, 27814, 21687], + [1, 2343, 19357], + [0, 19358, 19360, 19361, 2523], + [0, 2685, 4113], + "cabin", + [0, 2861, 17910, 2899, 3756, 3760, 4170, 4193, 4734], + [0, 27, 2671, 2869, 705, 5576, 15237, 9229, 2658, 25386, 17481, 8426, 8431, 977, 7436], + [1, 2343, 19363], + [0, 19364, 0, 19365, 2523], + [0, 28324, 28325, 1525, 1595, 2720], + [0, 200, 12659, 13527, 1523, 6876, 678, 4636], + "boolean", + [1, 2343, 19368], + [0, 19369, 19370, 19371, 4139], + [ + 0, 28331, 1149, 28333, 13223, 1483, 1512, 1525, 1645, 2098, 28335, 1209, 3188, 28340, 28342, 28344, 28346, 3718, + 4135, 28348, 4717, 4736 + ], + [ + 0, 28353, 1429, 1705, 28356, 18420, 1177, 1942, 13231, 1951, 1966, 2822, 2899, 3297, 3421, 28358, 3938, 4153, + 4167, 4193, 4734 + ], + [0, 3283, 28360, 5592, 5472, 15656, 28362, 4030], + [1, 2343, 19373], + [0, 19374, 19375, 19376, 2537], + [ + 0, 30869, 28367, 28371, 28372, 13471, 13474, 13476, 30243, 13495, 13497, 13500, 13502, 28373, 1537, 2674, 28375, + 27967, 2854, 28379, 3923, 28380, 4135, 4715 + ], + [ + 0, 7709, 28384, 36559, 28387, 28390, 28394, 692, 28395, 28396, 28399, 1091, 1149, 1168, 28400, 1414, 13838, + 1525, 1570, 28401, 13848, 1177, 1942, 28406, 2070, 2212, 2675, 1776, 2990, 3019, 3297, 3747, 3752, 4039, 28408, + 4193, 4339 + ], + [0, 13539, 6681, 27838, 14029, 28411, 28413], + [2, 5223, 594], + [2, 1876, 19377], + [1, 2343, 19381], + "is-bun-module", + [0, 19382, 19383, 19384, 2523], + [0, 97, 28418, 977, 12105, 3424, 28420, 3698, 28423, 3348], + [ + 0, 5154, 48, 53, 14167, 83, 87, 90, 92, 28436, 842, 16145, 966, 968, 972, 20562, 974, 5087, 4874, 28426, 28425, + 4880, 4883, 1165, 28435, 28433, 1540, 1637, 1192, 2780, 2802, 3244, 3286, 3561, 3566, 3640, 89, 3824, 4705 + ], + [0, 89, 6710, 3424, 2038, 28438, 5165, 3287, 16944, 5168, 28439], + "@types/is-", + [2, 19385, 2070], + [1, 2343, 19388], + [0, 0, 0, 19389, 2523], + [0, 3286, 1149, 28445, 28446], + "node-lib", + [1, 2343, 19392], + [0, 0, 0, 19393, 2399], + [ + 0, 1098, 1973, 5472, 3212, 8788, 4627, 12442, 7170, 9962, 11100, 28453, 28454, 4967, 6400, 1192, 2765, 1843, + 13106, 7190 + ], + [1, 2343, 19395], + [0, 19396, 0, 19397, 2537], + [0, 13, 28459, 8597, 1668, 4484], + [0, 5127, 4964, 1098, 181, 5130, 4967], + [1, 2343, 19406], + [3, 16405, 17], + "defaults", + [2, 19399, 19400], + "-azure-pipelines-cli", + [2, 1529, 19402], + "riendly-formatter", + [2, 19244, 19404], + [0, 19407, 19408, 19409, 2537], + [0, 2212, 3348, 4745, 16509, 2057, 3028], + [0, 1429, 1437, 2899, 4193, 4874], + [0, 3290, 28467, 28468, 3014, 28469], + [1, 2343, 19416], + "enhance", + "-visitors", + [2, 19411, 19412], + [2, 1876, 594], + "espurify", + [0, 0, 19417, 2514, 2399], + [0, 1429, 1544, 2899, 3754, 4151, 4333], + "-spelling-correcter", + [2, 3166, 19418], + [1, 2343, 19423], + "ava-rule-tester", + [2, 1876, 19421], + [0, 19424, 19425, 19426, 2487], + [0, 1676, 28480, 19400, 1804, 28483, 28484, 2835, 28485, 3188, 16112, 3441, 4039, 28486, 4238], + [0, 1149, 1304, 27731, 1362, 1429, 1431, 1177, 1895, 1955, 2026, 2675, 2899, 28488, 3246, 3549, 1894, 4151, 4237], + [0, 3292, 1804], + [1, 2343, 19428], + [0, 19429, 19430, 19431, 2487], + [ + 0, 28494, 28498, 28500, 4856, 28502, 14552, 11869, 15374, 1371, 28503, 1437, 1458, 1483, 28504, 28505, 1759, + 1797, 1842, 2070, 2832, 1209, 3181, 3183, 2899, 28510, 3445, 3467, 20460, 4130, 4135, 28512, 4294, 4558, 3348 + ], + [ + 0, 221, 842, 4874, 1009, 1011, 1587, 1610, 1177, 2675, 2742, 2822, 2990, 3200, 4925, 28514, 28517, 3215, 3297, + 3421, 89, 3824, 4039, 4146, 4474, 4481, 28519 + ], + [ + 0, 3294, 28521, 28522, 5472, 11132, 14336, 11861, 28525, 11862, 4627, 11857, 1973, 1388, 5131, 8791, 13426, + 1649, 2899, 13428 + ], + [1, 2343, 19433], + [0, 19437, 19447, 19450, 4139], + "ast-m", + "etadata-inferer", + [2, 19434, 19435], + [0, 11124, 826, 28535, 18248, 3509], + [2, 19192, 13172], + [3, 5536, 14], + "16", + [2, 19439, 19440], + "aniuse-lite", + [2, 4857, 19442], + [3, 6309, 16], + "moize", + [2, 19444, 19445], + [0, 11134, 28537, 1389, 2675, 2832, 8821, 2990, 2899, 28539, 3421, 1894, 3752, 28542, 28543], + "config-erb", + [2, 15086, 19448], + [0, 1973, 5472, 21147, 3212, 4731, 36], + "kangax", + [1, 2343, 19453], + [0, 19454, 19455, 2514, 2537], + [0, 28550, 617, 2854], + [ + 0, 2212, 3421, 1429, 1192, 2899, 4193, 1177, 4039, 1894, 2139, 1719, 3752, 4196, 91, 3400, 15342, 4131, 1954, + 1951, 826, 1938, 1958, 1895, 1903, 7935 + ], + [1, 2343, 19457], + [0, 0, 19458, 19459, 2443], + [0, 1317, 1326, 28556, 1177, 2151, 29197, 3697, 4135], + [0, 28558, 28559, 11154, 970, 1326, 3122, 14655, 3263, 3299], + [1, 2343, 19461], + [0, 19465, 19470, 19471, 2537], + "/plugin-pwa", + [2, 4613, 19462], + [2, 10982, 19463], + [0, 1496], + "eslint4b", + [3, 4630, 11], + [2, 19467, 6038], + "vuepress", + [0, 3421, 2228, 2899, 4170, 1596, 2240, 18463, 91, 4874, 18555, 1506, 28565, 22081, 2247, 2283, 28567, 28570], + [0, 2325, 20164, 2703, 6884, 3250, 3151, 6943, 202, 3143, 3048], + "exported", + "eslint-env", + "eslint-en", + [2, 19474, 4000], + "eslint-d", + "isable", + [2, 19476, 19477], + [2, 19478, 10240], + [3, 19479, 15], + "next-line", + [2, 19480, 19481], + [1, 2343, 19484], + [0, 0, 19485, 19486, 2537], + [0, 4874, 28577, 2151, 2675, 2899, 3421, 4039, 91, 28580], + [0, 202, 3111, 13017, 6956, 28582, 6899, 6726, 2382, 13626, 28583, 1745], + [1, 2343, 19495], + [3, 8097, 32], + [3, 1879, 9], + "mments", + [2, 19489, 19490], + [2, 19488, 19491], + "ot-an-aardvark", + [2, 16819, 19493], + [0, 19496, 19497, 19498, 2487], + [0, 1672, 28589, 28590, 2179, 3183, 3330, 814, 4135], + [0, 4874, 1177, 1938, 2675, 2990, 1894, 4384, 28593, 4453, 4474, 91], + [0, 22687, 2999, 4345, 3233, 2282], + "@foxt/js-srp", + [2, 4284, 12118], + [1, 2343, 19506], + [3, 15471, 15], + "anonical", + [2, 19502, 19503], + "gitdown", + [0, 13856, 11488, 19507, 2443], + [0, 3308, 7204, 4014, 28599, 2090, 14629, 17721, 2150], + [1, 2343, 19509], + [0, 19510, 19511, 19517, 2537], + [0, 21642, 28604, 28605, 28608], + [ + 0, 10614, 842, 5601, 1009, 1011, 7677, 17298, 1622, 1177, 17300, 1930, 1942, 1945, 1948, 1953, 17303, 17306, + 1964, 1985, 17308, 2675, 17310, 2931, 2990, 3124, 3125, 3390, 17312, 1894, 17314, 3708, 3980, 28611, 17318, + 4493, 91, 1984, 17319 + ], + "@html-eslint/eslint-plugin", + [3, 19512, 13], + [2, 19513, 57], + "link-check", + [2, 3115, 19515], + [0, 3113, 2869, 26800, 26799, 28613, 28614, 28615, 28617, 28618, 28619], + [1, 2343, 19519], + [0, 19520, 19521, 19529, 2537], + [0, 16566, 28624, 21163], + [0, 1079, 13867, 1410, 1414, 1429, 1431, 28626, 21480, 1596, 2139, 13870, 2899, 3480, 28628, 4481, 1906], + [2, 13039, 7015], + [3, 1143, 17], + "indlastindex", + [2, 19523, 19524], + "doctrine", + [2, 17612, 202], + "object.g", + [0, 1612, 27, 1862, 705, 7085, 7289, 4731, 7102], + "roupby", + [2, 19528, 19530], + [1, 2343, 19536], + "/template-parser", + [2, 1177, 19533], + [2, 12908, 19534], + [0, 0, 19537, 19542, 2487], + [ + 0, 1389, 1525, 1610, 1177, 28635, 2026, 2297, 2871, 2881, 2891, 2895, 2897, 2900, 2904, 2912, 2915, 2921, 28636, + 2925, 2899, 3202, 28638, 3421, 15767, 2924, 4677, 28639 + ], + "escope", + "fs-copy-file-sync", + "linklocal", + [2, 3045, 4552], + [ + 0, 28641, 28642, 28643, 28644, 1616, 12588, 28645, 28646, 28647, 28648, 27, 2671, 3135, 11996, 28649, 28650, + 28651, 28652, 28653, 4160, 28654, 28655, 28656, 21000, 28657, 28658, 28659 + ], + [1, 2343, 19546], + "npm-which", + [2, 4523, 1574], + [0, 19547, 19548, 19549, 34352], + [0, 1170, 1676, 1209], + [0, 1429, 2899, 3752, 4193], + [0, 1885, 6599, 6645, 586, 12296, 28666, 28647, 28667, 2109, 12295, 1121, 8899], + [1, 2343, 19551], + [0, 19556, 19557, 19558, 34352], + "@schemastore/package", + "ts-export-assignment", + [2, 13996, 19553], + [2, 13970, 19554], + [0, 1362, 3310], + [0, 1429, 1177, 1192, 4193], + [0, 28674, 28676, 28677, 1885, 14554, 28678, 28679, 28680, 28681], + "-repositories", + [2, 1992, 19559], + [1, 2343, 19562], + [0, 19563, 19564, 19572, 2537], + [0, 16473, 28688, 2215, 26567, 3368, 3727, 4135, 4390, 27921, 4707], + [0, 1326, 1610, 1177, 2899, 3263, 29197, 28691], + "@es-", + "joy/jsdoccomment", + [2, 19565, 19566], + "are-docs-informative", + [2, 13721, 5651], + "spdx-expression-parse", + "synckit", + [0, 970, 11154, 1237, 3122, 14655, 1326, 14654], + "@es-joy/", + [2, 19573, 1875], + [3, 19567, 13], + [2, 4522, 1574], + [2, 19575, 19576], + "@hkdobrev/run-if-changed", + "pree", + [2, 5600, 19579], + [2, 5600, 3766], + "defaultsdeep", + [2, 6308, 19582], + "@types/sp", + "dx-expression-parse", + [2, 19584, 19585], + [3, 5210, 11], + [2, 1226, 19587], + "ype-", + "pratt-parser", + [2, 19589, 19590], + [2, 13587, 19591], + [2, 3032, 1697], + [1, 2343, 19596], + "open-editor", + [0, 19597, 19598, 19599, 2523], + [0, 1632, 2591], + [ + 0, 16868, 1448, 1610, 1177, 28698, 2616, 3321, 28699, 28702, 15512, 28704, 2654, 28706, 28707, 3493, 4039, + 25213, 4257, 4474, 4749 + ], + [0, 1936, 57, 6710, 91], + [1, 2343, 19604], + [ + 0, 68, 5522, 107, 19492, 19194, 19605, 19609, 19344, 23339, 6503, 19616, 4874, 5254, 1009, 1011, 1414, 19619, + 668, 1177, 1895, 1933, 19620, 1942, 19622, 1945, 1948, 1953, 19623, 1955, 1964, 1988, 17308, 1994, 2018, 2203, + 2899, 3486, 1894, 4135, 4320, 19624, 4323, 19626, 19629, 1531, 4494, 91, 4523, 19630, 4614, 4630 + ], + [0, 13678, 13679, 13681, 34352], + [1, 2343, 34428], + [0, 19613, 19618, 19631, 2523], + "@ota-meshi/eslint-plugin", + [3, 19605, 11], + "-kit-eslint-editor-vue", + [2, 13755, 19607], + [2, 19606, 19608], + "-scope", + [2, 5601, 19610], + [3, 19611, 14], + [0, 1149, 28713, 1676, 2026, 2070, 3507, 1997, 4135, 4148, 28715, 28716, 28717, 4707, 4729, 4747], + "@types/na", + "tural-compare", + [2, 19614, 19615], + "xbytes", + [0, 1429, 2151, 1161, 2272, 2899, 3378, 1862, 4039], + "env-cmd", + [2, 1931, 5550], + [2, 18008, 8546], + [2, 17585, 19621], + [2, 1954, 8770], + [2, 4946, 12054], + [3, 5978, 26], + [2, 19625, 188], + [3, 4330, 11], + "tylus", + [2, 19627, 19628], + [2, 4609, 19466], + [0, 1676, 6782, 3323, 15267], + "jsonc", + [1, 2343, 19634], + [0, 19635, 19636, 19642, 2443], + [0, 1080, 1560, 1704, 2145, 20103, 3164, 3171, 3494, 3781, 1000], + [0, 4856, 6503, 1009, 1011, 1429, 1177, 1881, 1895, 1938, 2675, 2899, 3421, 1894, 4193, 4196, 4474, 4481, 91], + "-flow", + [2, 12184, 19637], + "axobject-query", + "damerau-levenshtein", + "es-iterator-helpers", + [0, 3212, 13106, 28726, 6710, 676, 5472, 1973, 27, 28728], + [1, 2343, 19649], + "jsx-ast-utils", + [2, 9551, 2640], + "regex-test", + [2, 4099, 19646], + [2, 18996, 7015], + [0, 19651, 19652, 19653, 2399], + "to-ast", + [0, 28733, 2755, 4135, 28735, 3348, 4707], + [0, 1587, 1610, 1177, 1900, 1903, 1938, 1954, 1958, 2675, 1192, 2990, 28737, 1894, 4039], + [0, 28740, 28743, 22005, 28744, 22011, 15844, 28747, 28748, 9044], + [1, 2343, 19655], + [0, 19656, 19658, 19659, 2523], + [0, 1304], + [2, 18576, 13064], + [0, 1364, 2026, 2899, 4170, 4342], + [0, 3424, 28438], + [1, 2343, 19661], + [0, 16583, 11580, 11581, 4139], + [1, 2343, 19663], + [0, 19664, 19665, 19666, 4139], + [0, 20584, 3188, 3278, 3368, 3393, 3411, 1997, 4039, 4135, 4390], + [0, 1168, 2272, 3297, 4389], + [0, 970, 11154, 1237, 3122, 14655, 1326, 17180], + [1, 2343, 19668], + [0, 19669, 19670, 19672, 2537], + [0, 3299], + [0, 2899, 1177, 28768, 640, 1610, 91, 4874, 6503, 1011, 1009], + [2, 1927, 8982], + [0, 28770, 6621, 7009, 28771, 28772, 28773], + "ts-i", + [1, 2343, 19677], + "gnore-import", + [2, 19673, 19675], + [0, 19678, 0, 19679, 4139], + [0, 28792, 28790, 28782, 28786, 1304, 1309, 1594, 2026, 2151, 28783, 3368, 4135], + [0, 6038, 8899, 28794, 2124], + [1, 2343, 19681], + [0, 19682, 19683, 19684, 2399], + [0, 3263, 2164, 2070, 3157, 1437, 1209, 640, 2185, 28799, 1615, 28800, 28802, 28804, 26567], + [0, 3421, 2899, 1177, 4039, 2151, 28806], + [0, 1623, 22022, 7121, 2278, 4329, 590], + [1, 2343, 19686], + [0, 19690, 19691, 19693, 2537], + "-helpers", + [2, 9654, 19687], + [2, 7627, 19688], + [0, 12680, 28813, 28816], + [0, 3421, 4389, 4193, 1090, 1177], + [3, 3995, 13], + [0, 16618, 5957, 12692, 1605, 28821, 27105], + [1, 2343, 19695], + [0, 19697, 0, 19698, 2537], + "@chromatic-com/storybook", + [0, 3460, 1512, 3171], + [0, 27, 2947, 2090, 36], + [1, 2343, 19700], + [0, 0, 19701, 19702, 2523], + [0, 3421], + [0, 6926, 6668, 3348], + [1, 2343, 19704], + [0, 0, 19705, 19710, 2399], + [0, 2151, 2899], + [2, 19707, 103], + [3, 35573, 13], + "ug", + [2, 17304, 19708], + [0, 28837, 2282, 28838], + [3, 3708, 17], + "kg", + [2, 19711, 19712], + [1, 2343, 19715], + [0, 19716, 0, 19717, 4139], + [0, 6523, 4747], + [0, 28844, 6574, 11100, 28845, 6807, 2013, 28847, 28849, 28850, 5957], + [1, 2343, 19719], + [0, 19720, 19721, 19722, 2537], + [0, 3354], + [0, 28856, 28858, 4874, 1177, 1894, 3706, 4493, 91, 8552, 1984], + [0, 28860, 57, 9381, 3354, 28861], + [1, 2343, 19727], + [3, 19525, 24], + "tosorted", + [2, 5613, 19725], + [0, 19730, 19733, 19737, 2443], + "repeat", + [2, 18996, 19728], + [0, 2571, 2741], + [2, 5609, 14255], + [3, 5235, 22], + [0, 13614, 1158, 1177, 2708, 17400, 3410, 3421, 3435, 4103, 4389], + "unction-bind", + [2, 19732, 19734], + "ls-engines", + [0, 2051, 6970, 28869, 1496, 1585, 24135], + [1, 2343, 19739], + [0, 19740, 19741, 19742, 2523], + [0, 2212, 3263, 2856, 3776, 1209, 4391, 2151, 640, 3337], + [0, 4647, 2899, 2272, 1168, 1448, 28877, 2759, 1173, 1596, 2820, 28879, 17370, 1267], + [0, 28881, 28882, 3358, 970], + [1, 2343, 19744], + [0, 0, 19746, 19747, 2487], + "refa", + [0, 28043, 1409, 1414, 1177, 1895, 2203, 28890, 28891, 28892, 28894, 1894, 2658, 28895, 18661], + [0, 28897], + "analysis", + "-ast-analysis", + [2, 6961, 19749], + "scslre", + [1, 2343, 19760], + "eslint-s", + "-rule-tester", + [2, 11298, 19754], + [2, 19753, 19755], + [2, 19758, 29135], + [3, 17306, 17], + "@types/pako", + [0, 19762, 19763, 19764, 2523], + [2, 3192, 15264], + [0, 1457, 1676, 13775, 3181, 28904, 4135, 18174, 4351, 4453, 28903], + [0, 192, 5467, 1149, 1506, 1177, 2675, 2899, 3421, 3752, 4131, 4170], + [0, 200, 3233, 3233, 5001, 22687, 28908, 2999, 7009], + [1, 2343, 19766], + [0, 19768, 0, 2514, 2523], + "safe-regex", + [0, 1797, 4384], + [3, 19494, 16], + "desecurity", + [2, 19769, 19770], + [1, 2343, 19774], + [2, 202, 1965], + [0, 19775, 19776, 19777, 2537], + [0, 4039, 1764, 28917, 4747, 4135], + [0, 705, 4389], + [0, 28921, 3364, 7242, 28125, 13527], + [3, 3568, 11], + "red-black-tree", + [2, 19778, 19779], + [1, 2343, 19785], + "al-red-black-tree", + [2, 19076, 19782], + [2, 5537, 19783], + [0, 19787, 0, 19788, 2523], + "sonarjs", + [ + 0, 28367, 1091, 1092, 20437, 12384, 1096, 28927, 1170, 1364, 1457, 1575, 1594, 1648, 2026, 9243, 28929, 28930, + 2070, 2593, 28933, 28934, 2856, 28935, 2863, 28936, 3083, 12792, 28940, 3230, 3241, 3277, 16617, 28859, 3361, + 3445, 3519, 28944, 1552, 2999, 4010, 28945, 28948, 4709, 7801, 4745, 4747 + ], + [ + 0, 28950, 3366, 5284, 6710, 5130, 5995, 4967, 12660, 28951, 28954, 28956, 28957, 1781, 28959, 2844, 2856, 4745, + 1896, 28960 + ], + [1, 2343, 19790], + [0, 19791, 9888, 19792, 2537], + [0, 4545, 1437], + [0, 10446, 28967, 9753, 14690, 57], + [1, 2343, 19794], + [0, 19796, 6538, 2514, 2523], + [2, 4353, 67], + [0, 23432], + [2, 19612, 594], + [2, 5600, 594], + "@types/less", + [2, 13058, 3675], + [3, 4890, 11], + [2, 19801, 4332], + "svelte-i18n", + [1, 2343, 19806], + "sveltejs", + [0, 0, 19807, 19808, 4139], + [0, 2398, 3183, 2899], + [ + 0, 28977, 28978, 28979, 2090, 28980, 17996, 18442, 28981, 7517, 2150, 3374, 3403, 10903, 15323, 4207, 28982, + 28983, 28984, 28985 + ], + [1, 2343, 19810], + [0, 0, 8134, 19813, 2537], + "-formatting", + [2, 1939, 19811], + [0, 3374, 1002, 12831, 15427, 1871, 28992, 28994, 3766, 3767, 28996, 4301, 6678, 28997], + [1, 2343, 19815], + [0, 0, 0, 19816, 2523], + [0, 29004, 28992, 1388], + [1, 2343, 19818], + [0, 19819, 19820, 19821, 2537], + [ + 0, 1437, 16064, 1494, 1595, 1700, 29013, 1874, 2020, 5989, 29016, 2613, 15980, 2704, 2720, 2744, 29018, 29020, + 29022, 2991, 29023, 3074, 3157, 29024, 29025, 21420, 3445, 29026, 27534, 3505, 27168, 3919, 4094, 4135, 5513, + 26573, 4562 + ], + [0, 21642, 5254, 1166, 1532, 24491, 2151, 29028, 4193, 4294, 4400, 29030, 1906], + [0, 13326, 200, 3378, 20001, 3358, 6645, 15525, 15208, 1528], + [1, 2343, 19823], + [0, 19828, 19830, 19831, 2537], + [2, 1463, 6961], + "regexp-", + "regexp-tree", + "regjsparser", + [ + 0, 3242, 2714, 4390, 2070, 3368, 3917, 4248, 23433, 1437, 3478, 4707, 23432, 3483, 4135, 9448, 1458, 29037, + 21505, 640, 3727, 29039, 3181, 9451, 9452, 2976, 2979, 2981, 29042, 29044, 4425, 29051, 2215, 29053, 25881, + 29054, 29055, 25888, 29056, 29057, 9459, 4351, 2613, 3386, 3762, 635, 29059, 25893, 26567, 29061, 9462, 29063, + 643, 9465, 3397, 29066, 29067, 9476, 9479, 9539, 19570, 638, 4588, 9496, 9501, 9506 + ], + "@lubien/fixture-beta-package", + [ + 0, 1091, 4384, 1687, 3297, 9542, 3984, 4039, 1483, 3988, 29069, 1092, 29070, 3393, 10630, 29071, 29073, 9515, + 9516, 26037, 29077 + ], + [0, 1161, 5260, 6878, 6661], + [1, 2343, 19833], + [0, 19834, 19840, 19845, 2537], + [ + 0, 1499, 3467, 3157, 1437, 2020, 2742, 1695, 29085, 2205, 1209, 4135, 7094, 3537, 1703, 2720, 3181, 3309, 4294, + 4425, 3505, 29088, 9478, 6045, 14564, 29084, 4562, 29087 + ], + "@ver", + "/eslint-config", + [2, 5401, 19836], + [2, 19835, 19837], + "bumpp", + [0, 1906, 1173, 1282, 1267, 1255, 1245], + " eslint plugin", + [2, 1984, 19841], + "eslint ", + [2, 19843, 1932], + [0, 3378, 29093, 4796, 17507, 13729, 4354, 24313, 5592, 24095, 200, 6953, 29095, 29096, 7242, 4797], + [1, 2343, 19847], + [0, 0, 19848, 19852, 2537], + [ + 0, 29101, 17212, 4856, 9417, 29103, 29104, 12458, 29105, 7637, 29111, 4870, 6503, 4874, 29115, 29117, 20374, + 6510, 7812, 5254, 29122, 6513, 29125, 1009, 1011, 1420, 1429, 1431, 21480, 1437, 1483, 1525, 1610, 20573, 1177, + 1895, 29128, 1903, 1938, 1942, 1953, 1958, 2071, 27125, 2105, 29129, 2613, 2714, 2822, 2858, 29133, 3019, 1209, + 3125, 2899, 3397, 3400, 3478, 13723, 3530, 1894, 3730, 29136, 29087, 4038, 4039, 11054, 4135, 29138, 4170, 4193, + 4232, 18201, 4294, 4474, 91, 29139, 4558, 4562, 29140, 1983, 29141, 29142, 26744, 4749 + ], + "name-", + [2, 19849, 1155], + [2, 4732, 19850], + [0, 4796, 3378, 6661, 3076, 29144, 18280], + [2, 4807, 19851], + [1, 2343, 19855], + [0, 19856, 6538, 2514, 2523], + [0, 2613, 3727, 4135, 4588], + [1, 2343, 19858], + [0, 19859, 19865, 19867, 2487], + [0, 1091, 8531, 1437, 1595, 1676, 2205, 2687, 2745, 2858, 3074, 3157, 3545, 4135, 4207, 4300, 4507, 4588], + [3, 10879, 16], + [2, 19860, 13921], + "importx", + "ink-", + [2, 19863, 1975], + [ + 0, 5087, 4874, 1009, 1011, 668, 29154, 1177, 29155, 29158, 1930, 1938, 1939, 1955, 1982, 2089, 1192, 17312, + 29160, 1894, 4468, 91 + ], + "eslint-test", + [0, 671, 9654, 6661, 13716, 29162, 3390], + [1, 2343, 19869], + [0, 19870, 19872, 2514, 4139], + [0, 15980, 3727], + "esrecurse", + [0, 635, 9516, 9515, 29169, 4384], + [1, 2343, 19874], + [0, 19875, 19876, 19879, 2399], + [0, 9459, 25336, 26567, 21505, 29176, 29174, 3386, 3727], + [0, 9516, 9515, 9448, 3297, 28691, 4248, 4384], + [2, 1006, 13060], + "json-diff", + [0, 3378, 29179, 1612], + [1, 2343, 19881], + [0, 19882, 19885, 19886, 2537], + [0, 1437, 26079, 3919, 3181, 1110, 1615, 4165, 3152, 29185], + [3, 8724, 21], + [2, 19883, 676], + [0, 3421, 4749, 2899, 1177, 4039, 1503, 3479, 2151, 4874, 3696, 1280, 29188, 13983, 1225], + [0, 200, 1523, 29190, 4990, 3378, 29191, 18462, 21003, 4144, 12804, 5957], + [1, 2343, 19888], + [0, 19889, 19890, 19886, 2443], + [0, 4707, 26079, 3530, 1110, 1615, 4165, 3152, 9488], + [0, 1414, 2931, 4749, 1776, 2899, 1177, 23909, 29197, 1159, 17529], + [1, 2343, 19892], + [0, 19893, 8134, 19894, 2523], + [0, 16687, 20789], + [0, 3378, 18462, 3403, 3383, 20052, 17180, 20054, 1508, 200, 6876, 16701, 8435], + "-fb", + "esprima-fb", + [1, 2343, 19898], + [0, 0, 19899, 19900, 2523], + [0, 5087, 4874, 1009, 1011, 10817, 1177, 1895, 1192, 2990, 26230, 4039, 4042, 4468, 91], + [0, 29208, 1745, 29210], + [1, 2343, 19902], + [0, 19903, 19904, 19915, 2537], + [0, 1437, 1479, 1525, 1676, 2720, 3741], + [0, 1429, 2899, 3215, 4255], + "escomplex-js", + "thing.js", + [2, 7067, 19906], + [3, 2912, 12], + "techpreview-launcher", + [2, 19908, 19909], + [2, 17485, 18551], + [2, 813, 19911], + "8.0.0", + [2, 5857, 19913], + [0, 18497, 3378, 29218], + [1, 2343, 19917], + [0, 19918, 19919, 19923, 2487], + [0, 2720, 3776], + [0, 1173, 1212, 1245, 29224, 1280, 3400], + "gulp-ta", + "g-version", + [2, 19920, 19921], + [0, 3378, 200, 8429, 1523, 3888, 8791, 24095, 3409, 29227], + [1, 2343, 19925], + [0, 19926, 19927, 19928, 2487], + [0, 2571, 3183], + [0, 13614, 1159, 9254, 1177, 2708, 2807, 3421, 4103, 4389], + [0, 3410, 16774], + [1, 2343, 19930], + [0, 19931, 19932, 2514, 2487], + [0, 9892, 25886, 29239, 10744], + [0, 4384, 9515, 9516], + [1, 2343, 19934], + [0, 0, 19935, 2514, 2537], + [0, 1429, 2814, 2832, 2899, 29246], + [1, 2343, 19938], + [2, 2009, 10896], + [0, 19947, 19949, 19951, 2537], + "@ethereumjs/config-nyc", + [3, 19939, 19], + [2, 19940, 1894], + [2, 19940, 11540], + [3, 19942, 21], + [2, 19943, 671], + [3, 17583, 11], + "karma-tap", + [0, 1437, 1482, 29251, 2674, 2720, 29253, 4135, 8363, 4747], + "typestrict", + [0, 1366, 1501, 19771, 2556, 620, 3203], + "transactions", + [0, 1965, 3413, 19773], + [1, 2343, 19953], + [0, 19954, 19958, 19959, 2523], + [0, 29260], + "-cryptography", + [2, 9439, 19955], + "rlp", + [0, 5087, 4874, 1009, 1011, 1587, 1177, 1895, 1955, 2675, 1192, 1894, 3720, 4039, 4468, 4474, 91], + [0, 3414, 29263, 200, 5122, 8310, 18496, 89, 202, 91, 5284, 2924, 1192, 4967, 5995, 12660], + [1, 2343, 19966], + "@types/assert", + "cp256k1", + [2, 5252, 19962], + "karma-t", + [2, 19964, 2528], + [0, 0, 19967, 19968, 2487], + [0, 1429, 2258, 2277, 2298, 2300, 23167, 2297, 2878, 2881, 2895, 2900, 2904, 2915, 3006, 2899], + [0, 3415, 6988, 1671, 6901, 29269, 29271], + [1, 2343, 19970], + [0, 19973, 19975, 19978, 2523], + "es-lookup-scope", + "os-tmpdir", + [0, 29276, 29277, 1525], + "qs-iconv", + [ + 0, 48, 53, 87, 94, 1195, 1208, 1212, 1544, 1593, 1610, 1177, 1881, 1938, 2026, 2151, 2182, 29280, 29282, 29283, + 29285, 3421, 3524, 4151, 4535, 4537, 2924 + ], + "eval", + "evaulate", + [0, 1283, 17950], + [1, 2343, 19980], + [0, 0, 0, 19981, 2523], + [0, 2703, 202], + "pause-stream", + "combiner", + [2, 4279, 19983], + [1, 2343, 19990], + "asynct", + "it-is", + "stream-spec", + "ubelt", + [0, 0, 19992, 19993, 2399], + "flatmap", + [0, 5517, 13614, 23237, 19325, 1159, 1414, 9254, 1177, 2807, 2708, 3410, 4103, 4389], + [0, 3417, 3418, 2649], + [1, 2343, 19995], + [0, 0, 0, 19996, 2399], + [0, 1623, 12080, 29300, 13777, 3585], + "addEventListener", + "addListener", + "pub/sub", + "emits", + "publish", + [1, 2343, 20004], + "subscribe", + [0, 20005, 0, 20006, 2537], + [ + 0, 1797, 3467, 4449, 2117, 3445, 4745, 1170, 1495, 4484, 4747, 1759, 2687, 4135, 2089, 1836, 2777, 3181, 4459, + 1477, 3527, 4393, 1480, 2149, 2858, 3404, 4290, 4748, 1763, 4480, 29306, 24759, 29308, 29309, 29310, 29313, + 29317 + ], + [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 9627, 9628, 9659, 9648, 9649, 29319], + [1, 2343, 20013], + "-browser", + "-browsers", + [2, 7177, 20009], + "sauce-", + "sauce-test", + [0, 20017, 20020, 20021, 2537], + "EventEmitter", + [2, 20014, 1276], + [2, 20014, 1278], + [ + 0, 14022, 8697, 29324, 1573, 1677, 2102, 2105, 15261, 2179, 2070, 11935, 29325, 14024, 29328, 11938, 11940, + 11943, 3093, 29330, 3478, 29334, 4025, 4039, 4174, 29335, 14025, 4747 + ], + "Events", + "reactor", + [0, 29338, 13103, 4019, 4232, 4255, 4257, 4384, 3348, 4707], + [0, 4504, 16237, 20049, 5472], + [1, 2343, 20023], + [0, 20024, 20025, 20026, 2523], + [0, 29358, 8818, 5941, 28935, 26865, 13824, 12285, 3509, 29349], + [0, 29355, 29359, 29362, 4874, 4493, 91, 1984], + [0, 5592, 2210, 3452, 29365, 29367, 29368, 29369, 29370, 3422, 1118, 27662, 1745], + [1, 2343, 20028], + [0, 20029, 20030, 20031, 2537], + [0, 29358, 29377, 2822, 12285, 8126], + [0, 29355, 7637, 29380, 3297, 4493, 91, 1984], + [0, 5592, 1118, 2210, 1745, 27662, 29370, 3422, 3452, 29369, 29365, 29368, 29367, 28360, 8124], + [2, 3159, 591], + [2, 13788, 20032], + "human-", + [2, 20034, 7073], + [1, 2343, 20037], + [0, 0, 10435, 2514, 4139], + "final-newline", + [2, 4293, 20038], + [3, 4759, 11], + [1, 2343, 20045], + "get-node", + "is-in", + "is-in-ci", + [0, 0, 20046, 20048, 2523], + [0, 1906, 1166, 1209, 3130], + "is-running", + [0, 3048, 3426, 2051, 3583, 6778, 5286, 5258, 6805, 29390, 6422, 1858, 1388], + "subprocess", + "fork", + "execfile", + "bin", + [1, 2343, 20055], + "binaries", + [0, 0, 20056, 20057, 2537], + [0, 1389, 2323, 2346, 27608, 29396, 2436, 2447, 2463, 2494, 2496, 2530, 2272, 2839, 2297, 2881, 2900, 2899], + [0, 3048, 3428, 4160, 3135], + [1, 2343, 20059], + [0, 0, 20060, 20066, 2487], + [ + 0, 13614, 29404, 1159, 1593, 22932, 1855, 1177, 2133, 2159, 2070, 29406, 2569, 29410, 2708, 2762, 19073, 3206, + 3410, 3421, 4103, 23948, 4135, 19729, 4389 + ], + "stdio", + "stderr", + "drain", + "flush", + "3584", + [0, 3430, 7123, 3048, 1646, 3721], + [1, 2343, 20068], + [0, 0, 20069, 20070, 2537], + [0, 13614, 13616, 1177, 14741, 29416, 2741, 4389], + [0, 6801, 3432, 6964, 1858], + [1, 2343, 20073], + "-jsdom-abstract", + [0, 0, 20077, 20078, 4139], + "expect-", + [2, 20074, 594], + [2, 552, 20075], + [0, 3421, 1429, 2899, 1596, 3202, 29424], + [0, 1697, 3403, 7318, 29426, 3038, 3205, 1758, 3743, 3048, 7002, 29428, 29429, 6692, 3639, 6803], + [1, 2343, 20080], + [0, 20081, 20084, 20086, 2487], + [0, 1417, 7272, 13609, 29440, 2569, 3433], + "mkal", + [2, 1949, 20082], + [0, 13613, 13614, 1389, 1177, 2133, 2159, 13619, 2571, 3206, 3410, 3421, 4103, 6810, 4389], + "pkg-pr-new", + [0, 7276, 3426, 6789, 2051, 7107, 6970, 7288, 6849, 6763, 6422, 1858], + [1, 2343, 20089], + "type-check", + [0, 20090, 20091, 20092, 2487], + [0, 1417, 7272, 13609, 29440], + [0, 13613, 13614, 20492, 1159, 9254, 1177, 2159, 13619, 2708, 3410, 3421, 4103, 4389], + [0, 6944, 6694, 6801, 3437, 6693, 7221, 6615, 7194, 1858, 3048, 3432, 6422, 6763], + "orms", + [1, 2343, 34459], + [0, 29450], + "array-f", + [0, 3421, 2899, 1177, 1954, 1938, 1958, 1903, 1948, 1970], + "array-flatten", + "setprototypeof", + "merge-de", + [1, 2343, 20104], + "scriptors", + [2, 20100, 20102], + [0, 20107, 11686, 20108, 2537], + "-password", + [2, 16722, 20105], + [0, 29456], + [0, 3441, 3046, 6985, 16114], + [1, 2343, 20110], + [0, 20111, 20112, 20113, 2537], + [0, 29462, 29464, 1138, 1457, 1615, 2687, 4459], + [0, 21122, 4874, 2675, 2990, 1894, 4039, 91], + [0, 2070, 2282, 1444], + [1, 2343, 20115], + [0, 20116, 20118, 20119, 2523], + [0, 29474, 3029], + [2, 30722, 20731], + [0, 6503, 29476, 1503, 2272, 2899, 3203, 3210, 3421, 4474, 91], + [0, 29478, 28794, 29479, 24996, 29480, 25004, 20181, 29481, 29483, 6667], + "automatically", + [2, 1163, 8623], + [3, 20121, 11], + [2, 20122, 7120], + [2, 20121, 2353], + [1, 2343, 20126], + [0, 20127, 8002, 20128, 2523], + [0, 29488, 29490, 28428, 24488, 28429, 27908], + [ + 0, 1896, 3445, 3456, 8423, 8427, 6587, 8430, 8428, 10441, 8429, 1388, 6038, 8435, 8433, 1002, 10443, 10446, + 7058, 1614, 2978, 1451, 3729, 5351, 2090 + ], + [1, 2343, 20130], + [0, 20131, 20132, 20133, 2523], + [0, 2096, 2185, 3157, 3445, 4400], + [0, 1166, 2020, 1906], + [ + 0, 13326, 200, 1896, 3445, 3456, 8423, 8427, 6587, 8430, 8428, 10441, 8429, 1388, 6038, 8435, 8433, 1002, 10443, + 10446, 1614, 2978, 1451, 3729, 5351, 2090 + ], + [1, 2343, 20135], + [0, 20136, 20138, 20139, 2487], + [0, 29501, 29505, 12285], + "express3", + [0, 5087, 7637, 8818, 1170, 29509, 1192, 2845, 29512, 3244, 1894, 4232, 4468, 4474, 91], + [0, 3452, 8124, 5576, 1170, 4967, 1388, 3212, 91], + "partials", + [1, 2343, 20142], + [0, 20143, 20144, 20145, 2523], + [0, 1677, 2639, 2854, 3105, 3744, 89, 3824, 1155], + [ + 0, 68, 470, 1173, 1248, 15643, 1596, 1177, 1879, 1881, 1938, 1947, 1958, 1959, 2200, 2626, 1192, 3363, 3400, + 705, 4008, 7707 + ], + [0, 8124, 3452, 29521, 1936, 1745, 1179], + "unless", + [2, 2032, 20146], + [1, 2343, 20149], + [0, 20152, 20153, 20154, 2443], + "authn", + "authz", + [0, 6825, 3263], + [0, 2070, 705, 4389], + [0, 3455, 29528, 23196, 29531], + [1, 2343, 20156], + [0, 0, 5795, 2514, 2487], + [1, 2343, 20158], + [0, 20159, 20160, 2514, 4139], + [0, 29539, 705], + [0, 1173, 1267, 1177, 1879, 1938, 1947, 1959], + [1, 2343, 20162], + [0, 20163, 9839, 20128, 34352], + [0, 2755], + "caching", + "expressjs", + [1, 2343, 20167], + [0, 20168, 20169, 20172, 2537], + [0, 4720, 3183], + [0, 29551, 4384], + "cjs-mock", + "hoare", + [0, 7233, 7058, 5675, 57, 7119, 200, 1523], + "tRPC", + "RPC", + "express.js", + [2, 10988, 16957], + [1, 2343, 20180], + "fully-typed", + "type-safe", + [0, 20187, 20191, 20192, 4139], + "pi", + "typed-api", + "express-api", + "http-api", + "client-s", + [2, 20185, 2847], + [0, 1637, 29559, 3561], + "unit-testing", + [2, 13843, 5576], + "web-de", + [0, 1175, 1193, 1245, 1257, 1264, 1628, 1192, 4307, 2924], + [0, 6829, 11337, 2054, 16862, 6707, 7293, 2924], + "velopment", + [2, 20190, 20193], + "web-api", + [1, 2343, 20197], + [0, 20198, 20199, 20200, 2443], + [0, 29566, 29567, 4717, 20088, 19190, 26007], + [0, 29569, 2899], + [0, 14690, 6802, 29572, 200], + [3, 8286, 12], + [2, 20201, 364], + "lient-", + "redirects", + [2, 20203, 20204], + [2, 13224, 20205], + [2, 20201, 20206], + [3, 20207, 13], + [1, 2343, 20210], + [0, 20213, 20214, 20216, 4139], + "reset-classic", + [2, 20208, 20211], + [0, 1437, 1477, 1480, 29018, 16232, 3074, 29581, 4290], + [0, 4874, 1166, 2188, 29583, 4481, 1906], + "sanitization", + [0, 200, 1478, 6787, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921], + [1, 2343, 20218], + [0, 20219, 20220, 20222, 2399], + [0, 1834, 29590, 29591], + [0, 2012, 2530, 2272, 3102, 3159, 2899, 3760, 4170, 4600], + "openapi3-ts", + [0, 1149, 5957, 12804, 2940], + [3, 19441, 15], + [2, 20223, 6643], + [1, 2343, 20228], + "wagger-ui-express", + [2, 5051, 20226], + [0, 20229, 20230, 20231, 2443], + [0, 1149, 1362, 18443, 9421, 1209, 3507, 29600, 29601], + [0, 1414, 1437, 2070, 2899, 3230, 3259, 3519, 4135, 4170, 4193, 4246], + [0, 3469, 27812, 18035, 3259, 25638, 29605, 7827, 3230], + "camelize-ts", + [1, 2343, 20234], + [0, 0, 0, 20235, 2537], + [0, 202, 888, 364, 1237], + [1, 2343, 20237], + [0, 20238, 11686, 20239, 2487], + [0, 19972, 25493], + [0, 6639, 6884, 4571, 29615, 3403, 3741, 29616], + [1, 2343, 20241], + [0, 0, 20242, 20244, 2537], + [0, 4856, 4864, 6503, 4874, 4891, 26584, 1429, 2020, 2151, 2899, 3377, 4474, 2924, 4707], + "snakify-ts", + [0, 5194, 6778, 29622, 29624, 18135, 1871, 1283, 8958], + [3, 18009, 14], + [2, 20245, 4990], + [2, 4120, 7020], + [3, 8116, 9], + [1, 2343, 20253], + "pecification", + [2, 20248, 20250], + [2, 4364, 1745], + [0, 0, 0, 20254, 2523], + [0, 3475, 5317, 29632, 29633, 3474, 9006, 4967, 1388], + [1, 2343, 20256], + [0, 20257, 20258, 20259, 2523], + [0, 29638, 1525, 2131, 2742, 2975, 4135, 4449, 36872], + [0, 19181, 442, 19344, 9237, 18491, 4874, 5254, 6520, 36890, 1009, 1011, 1177, 26698, 4039, 91], + [0, 200, 29641, 19101, 20001], + [1, 2343, 20261], + [0, 20264, 20265, 20267, 2523], + "-symbols", + [2, 3426, 20262], + [0, 3480], + [0, 4874, 1166, 1702, 4481, 1906], + "is-extendable", + [ + 0, 1862, 2018, 2013, 13771, 2016, 26349, 6868, 20000, 15535, 19138, 29647, 29648, 6703, 29649, 1803, 1388, 965, + 1149, 7003, 6567, 1362 + ], + "array-slice", + "benchmarked", + [1, 2343, 20271], + [0, 0, 20274, 20276, 2523], + "for-own", + "kind-of", + [0, 1166, 1437, 1702, 17474, 29654, 17477, 4481, 1906], + "props", + [0, 1862, 3053, 29656, 6703, 6910, 21369, 7253, 25824, 29657, 1149, 7003, 6567, 1540, 6994, 12804, 1362], + [1, 2343, 20278], + [0, 20279, 20285, 20286, 2537], + [0, 2017, 3480], + [2, 20284, 29685], + [2, 1884, 2924], + [3, 4679, 10], + [2, 20282, 3031], + "@pa11y/", + [0, 13789, 5366, 4874, 1317, 1701, 1702, 17474, 18669, 29654, 17477, 4481, 4494, 91, 1906], + [ + 0, 1862, 3768, 28483, 7051, 6760, 6994, 6925, 7094, 6882, 6870, 7072, 27334, 27338, 29664, 12692, 5957, 1149, + 7003, 6567, 1362 + ], + [1, 2343, 20288], + [0, 0, 20289, 20291, 2443], + [0, 1166, 1702, 17474, 21638, 4193, 17477, 4481, 1906], + "@types/yauzl", + [0, 1862, 17481, 1851, 29672, 1149, 7003, 6567, 6901, 17480, 12618, 1362], + [1, 2343, 20293], + [0, 20294, 20295, 20296, 2537], + [0, 2070], + [0, 1192, 1894, 10761], + [0, 1745, 3709, 29679, 6774], + [1, 2343, 20298], + [0, 20299, 20300, 20301, 2523], + [0, 20280, 1169, 1324, 1525, 1842, 2929, 3257, 3357, 3758, 4135], + [0, 1414, 1177, 29689, 2899, 29691, 10627, 4193], + [ + 0, 6653, 7320, 19748, 31152, 13716, 13428, 11346, 1169, 16790, 200, 33055, 29727, 34150, 26632, 3482, 3758, + 11937, 34151, 5472, 1155, 34152 + ], + [1, 2343, 20303], + [0, 20307, 20308, 20309, 2537], + "gulp-jsdoc3", + [2, 2462, 6504], + [2, 4598, 353], + [0, 29069, 9510, 9479, 9539, 643, 9448, 29051, 21505, 3386, 3393, 9462, 3397, 3727, 29698, 29697, 4248, 4390], + [0, 635, 9516, 9515, 2613, 29169, 3297, 29701, 4039, 4384], + [0, 6666, 3378, 3358], + [1, 2343, 20311], + [0, 20313, 20315, 20316, 4139], + "color-support", + [0, 22970, 22971, 29707, 1668, 18145, 29708, 1209, 3074, 3093, 3478, 3545, 4507, 29711], + [2, 13721, 15526], + [0, 13789, 11477, 4870, 4874, 29717, 977, 1701, 2096, 2182, 29721, 3505, 29722, 4494, 91, 1906], + [ + 0, 27968, 5351, 13755, 5122, 1002, 23992, 4202, 12197, 29724, 29726, 13008, 8745, 8340, 6398, 17461, 3758, 3195, + 158, 8221, 8924, 1936, 29727, 23691, 20630, 20631, 18048, 20637, 21881 + ], + "console.log", + [1, 2343, 20320], + "timestamp", + [0, 0, 20321, 20322, 2537], + [0, 4874, 7677, 22839, 33261, 35609, 1177, 1938, 1942, 2832, 91, 1983, 1984], + [0, 4967, 5995, 5354, 4963, 181, 6624, 24456, 23362, 27448], + [1, 2343, 20324], + [0, 0, 20326, 20331, 2443], + "pure-rand", + [0, 87, 5583, 811, 816, 1177, 2193, 2899, 3253, 26777, 3421, 4042, 4073, 4167], + [3, 16596, 12], + [2, 20327, 2024], + "poisoning", + [2, 20327, 20329], + [0, 15008, 25386, 25388, 16518], + "based", + "based testing", + [2, 4635, 20333], + [2, 11861, 10428], + "quickcheck", + [1, 2343, 20338], + [0, 20343, 5795, 20344, 2487], + "jscheck", + "jsverify", + "fuzz", + "fuzzer", + [0, 27404, 1437, 12084, 2021, 2088, 2185, 2205, 2654, 2863, 3157, 3173, 3490, 814, 29742, 4562, 4748], + [0, 3487, 5995, 200, 29744, 5592], + [1, 2343, 20346], + [0, 20352, 20356, 20357, 2523], + "@fast-c", + "sv/format", + [2, 20347, 20348], + "@fast-csv/", + [2, 20350, 1644], + [0, 29749, 3084, 4339], + "writer", + "csv writer", + "CSV", + [0, 442, 1759, 1177, 1895, 1938, 1953, 1955, 1958, 2203, 1209, 2899, 1894, 4419, 1531, 91], + [0, 3487, 5576, 10768, 29752, 36, 5995, 5592, 4030, 1781], + [1, 2343, 20359], + [0, 0, 20360, 20361, 2487], + [0, 1362, 1429, 1506, 2899], + [0, 12804, 4166], + "psql", + [1, 2343, 20364], + [0, 20367, 34487, 20379, 34352], + [3, 19185, 12], + [2, 20365, 4262], + [0, 97, 5663, 1620, 29762, 29765, 4729], + "macchiato", + [2, 20365, 20368], + "erge2", + [2, 6502, 20370], + "@types/pi", + "comatch", + [2, 20372, 20373], + "bencho", + "rmlnc", + [2, 16693, 20376], + "fdir", + [0, 6599, 5131, 5592], + "hereby", + [1, 2343, 20383], + "snap-shot-it", + [0, 20386, 0, 20387, 2523], + "imple", + [2, 20384, 1744], + [0, 18089], + [0, 1936, 57, 12075, 29790, 10658, 2062, 29791, 29792, 15512, 3493, 1753, 29793, 29794, 1644, 4141], + [1, 2343, 20389], + [0, 0, 20390, 2514, 2487], + [0, 2899, 1177, 2759, 1317, 29801, 1311, 1954, 1938, 1958, 1903, 1970], + [1, 2343, 20392], + [0, 20393, 20395, 20396, 2399], + [0, 29806, 4578, 1433], + "strnum", + [0, 1429, 2899, 3095, 3752, 1434, 29810], + [0, 2026, 1544, 1303, 20150, 5165], + [1, 2343, 20399], + "js2xml", + [0, 20401, 20402, 20403, 4139], + "json2xml", + [0, 3501], + [0, 3095, 2899, 1429, 1434], + [0, 3495, 3497, 1303, 20150, 5165, 13445], + [1, 2343, 20405], + [0, 20406, 20407, 20408, 2537], + [0, 1433], + [0, 2899, 1429, 1434], + [0, 3495, 2703, 1303, 20150, 5165, 29824, 6875], + "avvio", + "toad-cache", + [1, 2343, 20421], + "find-my-way", + "@fastify/", + [2, 20413, 1851], + "-warning", + [2, 3729, 20415], + "abstract-", + [2, 20417, 6807], + "-my-request", + [2, 13318, 20419], + [0, 20429, 20407, 20430, 4139], + "-json-parse", + [2, 18112, 20422], + [3, 16781, 12], + "ringify", + [2, 20424, 20425], + [2, 8530, 4643], + [2, 20413, 20427], + [0, 29829, 3501], + [0, 3495, 1303, 20150, 5165, 20151, 14374, 3424, 28438], + [1, 2343, 20435], + "-compiler", + [2, 20426, 20432], + [2, 20413, 20433], + [0, 20438, 20439, 20430, 2523], + "h2url", + "ajv-i18n", + [0, 29835, 3424, 1433, 26413, 4578], + [0, 3095, 2899, 1429, 3752, 1434], + [1, 2343, 20448], + "autocannon", + "fast-json-", + "body", + [2, 20442, 20443], + "merge-patch", + [2, 8530, 20445], + "branch-c", + [0, 0, 7878, 20455, 2537], + "omparer", + [2, 20447, 20449], + [2, 3125, 1276], + "fluent-", + [2, 20452, 2845], + [2, 20413, 3697], + [0, 3495, 15393], + [1, 2343, 20457], + [0, 20458, 0, 20459, 2523], + [0, 3729, 614], + [0, 6804, 3403], + "piscina", + "@vercel/n", + [1, 2343, 20483], + "@vercel/ncc", + "loader-", + [2, 20464, 8791], + [3, 12397, 15], + [2, 20466, 2924], + "@umijs/b", + "abel-", + "preset-umi", + [2, 20469, 20470], + [2, 20468, 20471], + [2, 1221, 18104], + [2, 4524, 20473], + [3, 1233, 25], + [2, 20475, 15301], + "tyled-", + [2, 20477, 4963], + [2, 5584, 20478], + "@umijs/c", + "ase-sensitive-paths-webpack-plugin", + [2, 20480, 20481], + [0, 0, 9264, 20486, 4139], + "ader-runner", + [2, 13513, 20484], + [0, 1388, 1389, 3403], + [1, 2343, 20488], + [0, 0, 20489, 20497, 2523], + [0, 1906, 1166, 4481], + [2, 19523, 3036], + [2, 5613, 4565], + [2, 5613, 3053], + [2, 5613, 6645], + [2, 5613, 6913], + [2, 18996, 4237], + [2, 4385, 57], + [0, 3403, 3504, 29854, 2090, 17996, 2150, 17462, 16503, 7318, 4262], + [1, 2343, 20501], + "anything", + "protocol", + [0, 0, 11332, 20502, 2537], + [0, 3403, 18104, 2090, 4014, 28977, 29862, 3506, 15174, 614, 594, 364, 6805, 6422, 1858, 2741, 13735, 4354], + [1, 2343, 20504], + [0, 0, 20505, 20506, 4139], + [0, 29867, 5535, 4874, 5254, 7677, 26881, 4201, 91, 1984], + [0, 2026, 6961, 4082, 7433], + "fbjs-css-vars", + "setimmediate", + [1, 2343, 20510], + [0, 0, 20511, 2514, 2523], + [0, 4874, 7677, 1446, 668, 1177, 1905, 2807, 1894, 91, 4543, 1984, 28862], + [1, 2343, 20513], + [0, 20518, 20530, 11581, 2537], + "@skypack/package-check", + "dead-code-elimination", + [2, 9403, 20515], + [2, 7911, 20516], + [0, 2760, 2856, 18545], + "in web", + "in javascript", + "in react", + "Plug & Play", + [3, 11608, 13], + [2, 7519, 4963], + "ui component", + [2, 16914, 6286], + "advanced ", + [2, 20527, 5983], + "scan", + [0, 2152, 2899, 3699], + "scanner", + [1, 2343, 20534], + "phonebook", + [0, 20535, 20552, 20554, 2537], + [0, 29882, 29884, 3486, 3923, 23952, 3348], + "autofillotp", + "share", + [2, 7426, 17357], + [2, 2998, 20538], + "mylocation", + [2, 13735, 20540], + "colorpicker", + "wakelock", + "WhatsappShare", + "NetworkConnection", + "TextToSpeech", + "VoiceRecognition", + "SnapScanner", + "Network", + "Monitor", + [2, 20549, 20550], + [0, 4874, 1398, 2018, 1894, 4389, 91], + "View360", + [0, 2636, 1179], + [1, 2343, 20556], + [0, 20557, 20558, 20559, 2399], + [0, 1620, 10752, 29893, 29894, 29895], + [ + 0, 53, 8229, 87, 442, 5583, 1193, 29897, 27401, 1377, 1389, 1424, 1505, 1177, 2193, 2203, 1192, 2780, 11348, + 1783, 29899, 1894, 3754, 4042, 8849 + ], + [0, 2636, 29901, 29903, 11812, 1746, 13814], + [1, 2343, 20563], + [3, 5085, 23], + [2, 20561, 582], + [0, 0, 20564, 2514, 2537], + [0, 1362, 29908, 1429, 29913, 1506, 2899, 3697], + " program", + [2, 6564, 20565], + "data ", + [2, 20567, 6355], + [1, 2343, 20570], + [0, 20571, 20572, 20578, 2537], + [0, 25624, 29919, 29923, 29920, 29918, 29928], + [0, 28042, 29934, 1149, 1362, 1499, 29933, 91, 1984, 23539], + "dequal", + "glob-", + [2, 20574, 3508], + [3, 16396, 12], + [2, 20576, 3508], + [0, 18035, 29937, 3519, 14871, 25638, 14873, 29938], + [1, 2343, 20580], + [0, 20581, 20582, 20583, 2523], + [0, 3524, 4237, 4709], + [0, 1173, 1175, 1178, 1257, 1264, 1267, 14237, 1177, 1881, 1935, 1938, 2126, 29945, 1192, 2774, 29946, 10622, 4039], + [0, 3520, 3521, 13392], + "detect-libc", + [1, 2343, 20587], + "thread", + [0, 20588, 20589, 20590, 2443], + [0, 2057, 2151, 29952, 22667, 3730, 705, 17047, 4707], + [0, 1177, 2276], + [0, 3521, 29727, 3364], + [1, 2343, 20592], + [0, 20593, 20594, 20590, 2523], + [0, 1863, 2057, 2151, 29952, 22667, 3730, 705, 17047, 4707], + [0, 1177, 2276, 824], + "@pinojs/redact", + [1, 2343, 20599], + "figure", + "fallback", + [0, 20600, 20601, 20602, 2523], + [0, 1137, 1512, 1543, 29964, 1591, 16442, 2765, 3183, 3456, 3459, 6331, 29965, 3547, 3741, 3762, 705, 4167, 4562], + [0, 18007, 1177, 1900, 1903, 1938, 1954, 1958, 1970, 2759], + [0, 200, 1591, 3525, 29969, 29971], + [1, 2343, 20604], + [0, 0, 11488, 2514, 2443], + [1, 2343, 20606], + [0, 0, 0, 20607, 4139], + [0, 7009, 1512, 6983, 200, 7201], + [1, 2343, 20609], + [0, 0, 20610, 20612, 2523], + [0, 1177, 27275, 2398, 2899, 3421], + "filesaver", + [0, 2070, 3529, 3530], + "saveas", + "blob", + [1, 2343, 20616], + [0, 7936, 7938, 7939, 4139], + [1, 2343, 20618], + [0, 0, 20620, 20625, 34352], + "strtok3", + [0, 1166, 29991, 4481, 27659, 1906], + "token-types", + "-extra", + "-extras", + [2, 15149, 20623], + [0, 19138, 7241, 1862, 6567, 29994, 12918, 202, 21244, 28067, 6270, 353, 4719, 21009, 6715, 1149, 7003, 6778, 1362], + "@tokenizer/token", + "commonmark", + "noop-stream", + [1, 2343, 20633], + "pic", + "picture", + "photo", + [0, 20692, 20693, 20765, 2399], + "video", + "exif", + "macho", + "jpg", + "apng", + "gif", + "flif", + "xcf", + "cr2", + "cr3", + "orf", + "arw", + "dng", + "nef", + "rw2", + "tif", + "bmp", + "icns", + "jxr", + "psd", + "indd", + "rar", + "7z", + "mp4", + "mid", + "mkv", + "webm", + "mov", + "avi", + "mpg", + "mp2", + "mp3", + "m4a", + "ogg", + "opus", + "flac", + "wav", + "amr", + "epub", + "mobi", + "rtf", + "woff", + "woff2", + "eot", + "ttf", + "otf", + "ico", + "flv", + "xz", + "xpi", + "cab", + "deb", + "rpm", + "Z", + "lz", + "cfb", + "mxf", + "mts", + [0, 30001, 30004, 30007, 30011, 20416, 30015, 30017, 18730, 20595, 30018, 30019], + [ + 0, 5517, 36559, 30022, 4874, 1090, 30024, 28400, 1409, 1676, 21594, 1177, 1938, 1953, 1954, 1958, 2020, 30025, + 30027, 2702, 1192, 3073, 3079, 30028, 29197, 28941, 3697, 3752, 3756, 4039, 4135, 4238, 30029, 4294, 4389, 4431, + 4474, 4481, 91, 4709 + ], + "webassembly", + "blend", + "bpg", + "docx", + "pptx", + "3gp", + "j2c", + "jp2", + "jpm", + "jpx", + "mj2", + "aif", + "odt", + "ods", + "odp", + "heic", + "pcap", + "dsf", + "lnk", + "voc", + "ac3", + "3g2", + "m4b", + "m4p", + "m4v", + "f4a", + "f4b", + "f4p", + "f4v", + "mie", + "qcp", + "asf", + "ogv", + "ogm", + "oga", + "spx", + "ogx", + "ape", + "wv", + "cur", + "nes", + "crx", + "ktx", + "dcm", + "mpc", + "arrow", + "shp", + "aac", + "mp1", + "s3m", + "xm", + [2, 12207, 35471], + "skp", + "lzh", + "pgp", + "chm", + "3mf", + "zst", + "jxl", + "vcf", + "jls", + "pst", + "dwg", + "parquet", + "arj", + "cpio", + "ace", + "avro", + "icc", + "fbx", + "vsdx", + [0, 2062, 2942, 3101, 1781], + [1, 2343, 20767], + [0, 0, 20768, 20769, 2537], + [0, 1177, 1895, 19286, 1954, 1955, 2675, 1192, 1894, 4400], + [0, 3378, 30036, 30037, 3304, 30038], + [1, 2343, 20771], + [0, 20772, 20773, 20774, 2523], + [0, 3549], + [0, 1177, 25843, 91], + [0, 158, 26020, 1687], + [1, 2343, 20776], + [0, 20777, 20778, 20779, 2487], + [0, 30055], + [0, 1906, 1166, 4481, 4400], + [ + 0, 3383, 1781, 7914, 3378, 13864, 2100, 2104, 2105, 7076, 6614, 6605, 2090, 7193, 3529, 814, 5933, 7029, 6857, + 7204, 4647, 6821, 3403 + ], + [1, 2343, 20781], + [0, 8400, 8134, 20782, 2523], + [ + 0, 4750, 3383, 2090, 2100, 2104, 2105, 7076, 6614, 6605, 7193, 3529, 814, 5933, 7029, 6857, 7204, 4647, 6821, + 3403 + ], + [1, 2343, 20784], + [0, 0, 10435, 20785, 2523], + [0, 18523, 2041, 6661], + "locate-path", + [1, 2343, 20790], + "-magic", + [2, 1981, 20788], + [0, 20791, 0, 2514, 2523], + [0, 30071], + [1, 2343, 20793], + [0, 20794, 20795, 20798, 2443], + [0, 10780, 1301, 4736], + [0, 1389, 2899, 16112, 4770], + "detect-file", + "resolve-dir", + [0, 13336, 1388, 16718, 2072, 57, 6523], + [1, 2343, 20802], + "dir-polyfill", + [2, 4571, 20800], + [0, 20803, 20804, 20805, 2537], + [0, 1104], + [0, 1177, 1889, 1954, 2022, 2899, 3421, 91], + [0, 1851, 1932, 2541], + [1, 2343, 20807], + [0, 20808, 8134, 20809, 4139], + [0, 30088], + [0, 23869, 30090, 3547, 23868, 30091, 4718, 1871, 30092, 30093, 30094], + [1, 2343, 20811], + [0, 0, 20812, 20813, 34352], + [0, 1429, 2759, 2899, 1899], + [0, 23869, 30090, 3547, 23868, 23877, 2712], + [1, 2343, 20815], + [0, 20816, 11488, 20817, 4139], + [ + 0, 30110, 30115, 30106, 30122, 1112, 1149, 29183, 1457, 30117, 1525, 1606, 1673, 1676, 1836, 2015, 30104, 3188, + 3278, 30107, 30108, 30119, 30112, 30120, 8630, 4135, 4232, 4243, 30105, 2822 + ], + [ + 0, 200, 21110, 21111, 2041, 3548, 30124, 3073, 1781, 2026, 2556, 30125, 2999, 30127, 30128, 30130, 30131, 30132, + 30134, 7047, 22850, 30135, 27662, 13325, 5258, 30137, 30139, 30140, 30141, 30142, 20997, 20998, 28845, 4345, + 30143, 3363, 30144, 17979, 30147, 27838, 30140, 30148, 2134, 28413, 30149, 13539, 3111, 21102, 30153, 30155, + 30156, 30158, 24093, 17878, 1605, 20999, 30159 + ], + [1, 2343, 20854], + "@firebase/app", + [3, 20819, 11], + "uth", + [2, 20820, 20821], + "@firebase/", + [2, 20823, 614], + [2, 20823, 13901], + [2, 20823, 18035], + "nalytics", + [2, 20820, 20827], + [2, 20819, 2063], + [3, 20829, 14], + [2, 20830, 553], + "firestore", + [2, 20823, 20832], + [3, 20833, 11], + "unctions", + [2, 20834, 20835], + [2, 20823, 8899], + [3, 20829, 15], + [2, 20838, 14044], + [2, 20822, 4097], + [2, 20823, 6681], + [2, 1161, 10653], + [2, 20823, 20842], + "remote-", + [2, 20844, 1541], + [2, 20823, 20845], + [2, 20825, 4097], + [2, 20826, 4097], + [2, 20828, 4097], + [2, 20829, 4097], + [2, 20833, 4097], + [2, 20836, 4097], + [2, 20837, 4097], + [0, 0, 20855, 20856, 2537], + [0, 1389, 1400, 1544, 1177, 1895, 3421, 1894, 3758, 4151, 30164, 4389], + [0, 30166, 14355, 14356, 30167, 30168, 57, 18048, 29895, 30170, 3549], + [2, 20841, 4097], + [2, 20843, 4097], + [2, 20846, 4097], + [1, 2343, 20861], + [0, 20864, 20865, 20866, 34352], + "Firebase", + "realtime", + [0, 4477], + [0, 1835, 1192, 2784, 2796, 4227], + [0, 2924, 4749, 24753, 24754], + [1, 2343, 20877], + "@fastify/b", + "usboy", + [2, 20868, 20869], + [3, 20848, 19], + [2, 20871, 553], + "farmhash-modern", + "jwks-rsa", + "@google-cloud/firestore", + [3, 20875, 14], + [0, 0, 0, 20878, 2537], + [ + 0, 3552, 28100, 4796, 7191, 7287, 2062, 6824, 1161, 7242, 163, 6698, 5260, 6646, 7117, 3378, 6878, 6661, 6666, + 7037, 7090, 7293, 6950, 7086, 6573, 664 + ], + [3, 20819, 12], + [1, 2343, 20881], + [0, 20896, 20898, 20899, 2523], + "i-documenter", + [2, 20879, 20882], + [3, 20840, 15], + [2, 20884, 553], + [2, 4853, 6641], + "rebase-token-generator", + [2, 16785, 20887], + [2, 16936, 4007], + [3, 2113, 11], + "ken-generator", + [2, 20890, 20891], + "http-me", + "ssage-parser", + [2, 20893, 20894], + [0, 1170], + "admin", + [0, 4072, 4474, 91], + [0, 30190, 30191, 30192, 30193, 30194, 30198, 30200, 30202, 5592, 30203, 30204, 30207, 30208, 5995, 4967, 91], + [1, 2343, 20901], + [0, 6263, 20906, 20907, 2537], + "-sql-connector", + [2, 6599, 20902], + [2, 20876, 20903], + [2, 20876, 11631], + [ + 0, 48, 53, 68, 83, 85, 87, 14128, 5583, 816, 6373, 1178, 1193, 1198, 30214, 1610, 1652, 1745, 1177, 1881, 1938, + 2126, 29945, 2675, 1192, 2990, 29946, 1894, 30216, 3776, 4042, 4071, 4073, 4131, 4172, 30217, 91, 4585 + ], + [0, 4315, 3555, 1832, 30219, 7165, 30220, 89, 2124, 91, 30223, 30225, 30227, 1473, 7208], + "async-lock", + "cjson", + "-in-any-order", + [2, 1693, 20910], + "exegesis", + [2, 20912, 3228], + "gaxios", + [1, 2343, 20919], + "auth-library", + [2, 10692, 20916], + "libsodium-wrappers", + [0, 0, 20920, 20923, 2523], + [0, 30236, 30239, 30240, 30241, 1177, 30242, 91], + "proxy-agent", + "sql-formatter", + [0, 30245, 4627, 5398, 8190, 8191, 8193, 30247], + "stream-chain", + "stream-json", + [1, 2343, 20927], + [0, 20929, 20930, 20932, 2487], + "superstatic", + [0, 1149, 1676], + [0, 1192], + "triple-beam", + [0, 27, 13397, 6731], + "-analytics", + [2, 14566, 20933], + [2, 4562, 8683], + [1, 2343, 20939], + "cdn", + "ssl", + [0, 20941, 0, 20944, 4139], + "hosting", + [0, 3266, 3527, 4228], + "hronization", + [2, 15001, 20942], + [0, 1623, 3561, 22292, 7121, 57, 30258, 353, 24798, 5198], + [1, 2343, 20946], + [0, 20947, 20952, 20953, 4139], + [0, 3681, 3688], + "alce", + [2, 1708, 16580], + "extend-", + [2, 20950, 3048], + [0, 4874, 1177, 1895, 30265, 3561, 1894, 91], + [0, 1623, 3561, 6425, 30268, 3563], + [1, 2343, 20955], + [0, 20956, 20957, 20958, 2537], + [0, 1457, 5314, 2151, 3527, 3616, 30274, 15245, 30275, 4207, 27921, 4747], + [0, 1166, 1414, 1596, 1177, 30279, 2203, 3561, 3613, 1894, 4337, 3348], + [0, 200, 3561, 22147], + "@types/rimraf", + [2, 13777, 12798], + [1, 2343, 20962], + [0, 20963, 0, 20964, 2487], + [0, 30286, 205, 208, 218, 30287], + [0, 1473, 14186, 1623, 4964, 6564, 30289, 30290, 30291, 29428, 3561, 6425, 6616, 30292, 17540, 5341], + [1, 2343, 20967], + "unflatten", + [0, 20968, 20969, 20970, 2487], + [0, 1393, 30298, 30299, 3688], + [0, 30302, 3561], + [0, 1473, 1512, 1536, 1623, 3178, 3561, 6425], + [1, 2343, 20972], + [0, 20973, 20974, 20975, 34352], + [0, 1393, 3688], + [0, 3561], + [0, 1623, 16919, 3561, 6425], + [1, 2343, 20977], + [0, 20984, 20985, 20987, 2523], + "@types/acorn", + [3, 4060, 16], + "vereload", + [2, 20979, 20980], + "erve", + [2, 15476, 20982], + [ + 0, 1165, 30298, 1437, 30314, 30315, 3561, 30317, 30326, 3564, 30327, 30329, 30331, 30334, 30336, 30338, 30341, + 30343, 3579, 3584, 3587, 30346, 30348, 30350, 30353, 30356, 3643, 30358, 30360, 30363, 30365, 30366 + ], + [ + 0, 1173, 1175, 1195, 1264, 1268, 1279, 19243, 1461, 1628, 30368, 30370, 30371, 30372, 30378, 1177, 30380, 1916, + 1959, 2054, 2092, 2600, 30381, 2822, 2843, 3105, 30383, 3160, 30385, 30389, 30390, 30391, 30393, 30395, 30396, + 30397, 30399, 29285, 3376, 30400, 3427, 3459, 30402, 3613, 3618, 30274, 16578, 3744, 89, 3824, 30404, 4039, + 4294, 4307, 4389, 30407, 2924, 4681, 30410 + ], + "lightweight", + [0, 3561, 6425, 1623, 12616, 30413], + [1, 2343, 20989], + [0, 20990, 0, 20993, 2523], + [0, 30424, 205, 208, 213], + "byline", + "util-extend", + [0, 30426, 30427, 1623, 30428, 5317, 6413, 3561, 6425, 30430, 3766, 10658, 12616], + [1, 2343, 20996], + "markdox", + [0, 21001, 0, 21002, 2537], + "deploy", + "deployment", + "devops", + "ssh", + [0, 30424, 205, 208, 30287, 3688], + [0, 1623, 30428, 5317, 6433, 3561, 6425, 3583, 10658, 6436, 6437, 12616], + "sequential", + "remote", + [1, 2343, 21006], + [0, 21007, 0, 21008, 2537], + [0, 30424, 205, 208, 3681], + [0, 30426, 30427, 1623, 30428, 5317, 30442, 19101, 3561, 6425, 5547, 3586, 10658, 12616], + "wrapper", + [1, 2343, 21011], + [0, 21012, 21013, 21017, 2487], + [0, 3681], + [0, 3561, 3678, 26712], + "mini-s", + "vg-data-uri", + [2, 21014, 21015], + [0, 1623, 4298, 3561, 6425], + [1, 2343, 21021], + "-datepicker", + [2, 2128, 21019], + [0, 0, 20974, 21025, 34352], + "ailwindcss", + [2, 1977, 21022], + [2, 3704, 4383], + [0, 1623, 1681, 16918, 3561, 6425], + "windicss", + [1, 2343, 21051], + [2, 20525, 591], + [2, 4380, 6911], + "tailwind c", + [2, 21030, 544], + "tailwind ", + [2, 21032, 11513], + [2, 21032, 6082], + "sections", + [2, 21032, 21035], + "tailwind ui", + [2, 21032, 89], + [2, 21032, 188], + [2, 21032, 1098], + "tailwind s", + [2, 21041, 1971], + "django", + [2, 21032, 21043], + "tailwind r", + "uby on rails", + [2, 21045, 21046], + "tailwind l", + "aravel", + [2, 21048, 21049], + [0, 0, 20974, 21058, 2537], + "tailwind nuxt", + "tailwind n", + [2, 21053, 2680], + "tailwind a", + "stro", + [2, 21055, 21056], + [0, 15215, 1623, 3599, 3178, 16919, 3561, 6425], + "flask", + [2, 21032, 21059], + [1, 2343, 21062], + [0, 0, 21063, 21064, 2487], + [0, 1687, 3527, 3561], + [0, 3561, 1623, 6425, 30462, 30465, 30466], + [1, 2343, 21066], + [0, 0, 21068, 21069, 4139], + "ffmpeg", + [0, 1429, 2323, 2384, 2463], + [0, 3561, 1623, 6425, 30472, 15182, 9320], + [1, 2343, 21071], + [0, 21073, 21075, 21076, 34352], + "fbemitter", + [0, 2654, 9673, 3561, 3676], + [2, 3794, 11017], + [ + 0, 19605, 1165, 1429, 1503, 1177, 1895, 1930, 19622, 1945, 1953, 19623, 1955, 1964, 1988, 17308, 2899, 19761, + 3421, 30479, 3678, 30481, 1894, 4320, 4323, 4337 + ], + [0, 3561, 5341, 1936, 188, 30483, 30484, 1623, 695, 2278, 4329, 30485, 4337], + "dispatcher", + [1, 2343, 21079], + [0, 21080, 0, 21081, 2399], + [0, 30287, 3688], + [0, 12083, 1623, 158, 30491, 12631, 16587, 3561, 6425, 23992, 6398], + "lolex", + [1, 2343, 21084], + [0, 21085, 21086, 21087, 2399], + [0, 3688, 30275, 814], + [0, 1166, 1414, 1177, 30279, 1955, 2203, 3561, 3678, 1894, 4337], + [0, 1623, 3561, 6425, 1204, 30498, 3378], + [1, 2343, 21089], + [0, 21090, 0, 21091, 2537], + [0, 2984], + [0, 3561, 30504, 30506], + [1, 2343, 21093], + [0, 21094, 21095, 21096, 2523], + [0, 2807, 4135, 1595], + [ + 0, 1700, 1192, 695, 2278, 2675, 3144, 30512, 1622, 1177, 1637, 1701, 2203, 3561, 4337, 4468, 4474, 2924, 1894, + 1610, 48, 442, 1193, 17167, 4294, 53, 2969, 2990, 3400, 4111, 30520, 3613, 3640, 192, 1953, 27928, 4257, 87, + 4523, 1939, 3616, 1938, 20281, 1982, 1895, 1955, 19344, 30518, 5467 + ], + [0, 1623, 3561, 22147, 2924, 11526], + "cliff", + "shush", + "flatiron", + "nssocket", + "-monitor", + [2, 2134, 21101], + [1, 2343, 21105], + "getopts", + [0, 21107, 20974, 21112, 2487], + "cli-testlab", + [0, 3688, 4319], + "fault", + " tolerant", + [2, 21108, 21109], + "sysadmin", + [0, 1623, 3178, 16918, 3561, 6425], + [1, 2343, 21114], + [0, 21115, 21119, 21123, 4139], + [0, 1393, 30298, 3681, 30532], + "node-ab", + [2, 18876, 12620], + [2, 21116, 21117], + [0, 30302, 3561, 26712, 3591], + [2, 6062, 2978], + "ross-spawn", + [2, 4857, 21121], + [0, 1623, 16918, 3561, 6425], + "jest-circus", + "karton", + [1, 2343, 21128], + "typecheck", + [0, 5488, 20974, 21130, 2523], + [2, 1218, 21131], + [0, 1623, 2414, 30541, 30542, 16918, 6425], + "hermes-parser", + [1, 2343, 21135], + [3, 4852, 15], + [2, 21133, 13921], + [0, 21137, 20974, 21138, 2399], + "increment", + [0, 30299, 3688, 30532], + [0, 1623, 3561, 6425], + [1, 2343, 21140], + [0, 21145, 20974, 21150, 2399], + "asynckit", + "combine", + "d-stream", + [2, 21142, 21143], + [0, 1393, 3688, 30532], + [2, 13888, 2759], + "fake", + "far", + "is-node-", + [0, 3561, 1623, 6425, 3178, 16918, 3634], + "modern", + [2, 21149, 21151], + "obake", + [1, 2343, 21157], + [2, 31868, 7625], + [2, 31865, 21160], + [0, 21159, 21164, 21169, 2537], + "dezalgo", + [0, 1636, 3681], + [3, 9367, 18, 5], + "@tunnckocore/prettier-config", + "formdata-", + [2, 21162, 6422], + [0, 30559, 3561], + [2, 19713, 1781], + [2, 3862, 18481, 21172], + "www", + "ulpoad", + [0, 1623, 3178, 16918, 3561, 6425, 3586], + [1, 2343, 21171], + [0, 21176, 21181, 21183, 2399], + "bob", + [3, 11366, 11], + [2, 21173, 3797], + "tiny-warning", + [0, 16837, 3681, 3688], + "just-", + "debounce-it", + [2, 21177, 21178], + "tsdx", + [0, 1596, 1177, 1895, 2675, 1192, 2990, 3561, 1894], + [2, 7519, 582], + [0, 4529, 3561, 1623, 6425], + [1, 2343, 21190], + "render props", + "higher", + " order component", + [2, 21186, 21187], + "hoc", + [0, 21012, 0, 21191, 2443], + [0, 3561, 1623, 6425, 2278, 3639], + [1, 2343, 21193], + [0, 21194, 0, 21196, 2443], + [0, 30577, 220, 3681], + "conditional", + [0, 30579, 1451, 30581, 1623, 30413, 30428, 3639, 30582, 3561, 6425, 3624, 3586, 10654, 10659, 5341, 12616], + [1, 2343, 21198], + [0, 21199, 21200, 21201, 2523], + [0, 30587, 30589, 30590], + [0, 20117, 1393, 3561, 3613, 4042], + [0, 3561, 1623, 6425, 30594, 2887, 30595], + [1, 2343, 21203], + [0, 0, 20974, 21204, 2487], + [0, 3561, 1623, 6425, 8426], + [1, 2343, 21206], + [0, 5488, 20974, 21138, 2537], + [1, 2343, 21208], + [0, 5488, 20974, 21138, 2443], + [1, 2343, 21211], + "check-dts", + [0, 20973, 20974, 21138, 4139], + [1, 2343, 21213], + [0, 5488, 20974, 21215, 2537], + "front matter", + [0, 1623, 3374, 16918, 16919, 3561, 6425, 1002], + "meta data", + [1, 2343, 21218], + [0, 21219, 20974, 21138, 2523], + [0, 3688, 30532], + [1, 2343, 21221], + [0, 0, 21222, 21223, 2537], + [0, 2675, 2899, 3561, 2759, 1894, 2990, 3640], + [0, 3561, 3665, 3586, 6425, 1623, 3585, 1932], + "universalify", + [1, 2343, 21229], + "klaw", + "dir-files", + [2, 15034, 21227], + [0, 21230, 0, 21231, 2523], + [ + 0, 28789, 30630, 30633, 28817, 30636, 26477, 30640, 32579, 30643, 30647, 30649, 30652, 30654, 30657, 30658, 215, + 30662, 30670, 30673, 30677, 30678, 30682, 30686, 30690, 31001, 30693, 30701, 30703, 27930, 218, 28640, 27069, + 30708, 30712, 29388, 30715, 32835, 29704, 30721, 30724, 30725, 1165, 1393, 30728, 30733, 30736, 1635, 30326, + 30739, 3570, 30331, 30338, 3579, 3584, 3587, 30742, 30744, 4791, 30747, 30348, 30749, 3611, 30751, 30754, 3643, + 30757, 30759, 30761, 30763, 30358, 30363, 30366 + ], + [0, 1623, 30428, 16897, 14836, 30765, 3286, 3561, 6425, 10654, 10659, 16900, 12616], + [1, 2343, 21233], + [0, 21234, 21235, 21138, 4139], + [0, 1393, 30298], + [0, 30302, 2646, 3561], + "assist", + [2, 6019, 21236], + [1, 2343, 21239], + [0, 0, 0, 21240, 2537], + [0, 1623, 3561, 30775, 57, 21110], + [1, 2343, 21242], + [0, 0, 0, 21245, 2537], + "any-promise", + "then", + [0, 1623, 3561, 30775, 57, 4329, 2278], + "thenify-all", + [1, 2343, 21248], + [0, 21249, 21250, 2514, 2443], + [0, 1636, 23462], + [0, 48, 53, 68, 11267, 61, 87, 94, 1166, 1198, 16150, 1701, 1177, 1938, 2070, 3183, 3421, 3561, 4135, 91], + [1, 2343, 21252], + [0, 21253, 21254, 21255, 4139], + [0, 3688, 4361], + [0, 30315, 3561], + [0, 1623, 3178, 16918, 3561, 6425, 8221, 4361], + [1, 2343, 21257], + [0, 21012, 20974, 21138, 2537], + [1, 2343, 21259], + [0, 0, 21260, 21261, 2537], + [0, 1177, 2675, 2990, 1894, 4387, 4389], + [0, 3561, 6692, 57], + [1, 2343, 21263], + [0, 21264, 0, 21265, 2537], + [0, 28807, 30805, 30808, 30811, 30813, 30816, 30818, 4484], + [0, 14873, 25638, 14871, 3519, 18035, 1747, 13392, 5576, 5995, 29938, 14872, 91, 4799, 1999], + [1, 2343, 21267], + [0, 21268, 21269, 21270, 2537], + [0, 9376, 9375], + [0, 192, 22559, 1414, 1429, 1431, 1436, 1567, 2675, 2829, 2990, 2899, 4255], + [0, 1936, 6523, 23760, 57, 353, 30826, 24798, 7121, 26467], + [1, 2343, 21272], + [0, 21273, 0, 21274, 2523], + [0, 30840, 3348, 2970, 2973, 4431, 30843, 2972, 30842, 3310, 30837, 30834, 3923, 30833, 30839], + [0, 1747, 28088, 3693], + [1, 2343, 21295], + "@monaco-editor/loader", + [3, 7664, 11], + "topwatch", + [2, 21277, 21278], + [2, 7666, 6731], + "@snippetors/vuepress-plugin-tabs", + [3, 19464, 17], + "google-a", + [2, 21283, 20827], + [2, 21282, 21284], + [2, 93, 4314], + [2, 21282, 21286], + [2, 21282, 7193], + "monaco-", + [2, 21289, 6038], + "dsense2", + [2, 21283, 21291], + [2, 6324, 21292], + [2, 19469, 21293], + [0, 21297, 21298, 21299, 2537], + "bitap", + [0, 13609, 30849, 30850, 30855, 1695], + [ + 0, 1173, 1280, 4895, 1245, 1264, 1389, 5669, 30857, 2025, 2297, 2881, 25848, 2895, 2900, 30859, 2899, 30862, + 18102, 3774, 4019, 4135 + ], + [0, 3696, 1145, 6468, 1973, 5472, 5286, 6892], + "@types/katex", + [1, 2343, 21303], + "socket", + [0, 21304, 21305, 21310, 2487], + [0, 1615, 23975, 4707], + [0, 1148, 2759, 2899], + "tex", + "sublime", + "katex", + "sublime text", + [0, 3358, 582, 3378, 3697, 30872, 18462, 1973, 5001], + [1, 2343, 21312], + [0, 0, 21313, 21314, 2443], + [ + 0, 30877, 30879, 53, 5874, 12372, 87, 94, 11976, 4856, 6503, 4874, 6513, 17214, 16480, 30881, 1429, 1596, 1610, + 30883, 668, 2675, 30888, 3165, 2899, 3401, 30889, 28423, 3744, 11481, 4193, 4196, 4072, 91, 4548, 1983, 1984, + 824 + ], + [0, 3698, 89, 181, 6073, 30891, 23361, 4963, 30892, 6400, 5130], + "globule", + [1, 2343, 21318], + [2, 2237, 5365], + [0, 21319, 7923, 11581, 2523], + [0, 1437, 1457, 2152, 18545], + [1, 2343, 21321], + [0, 21322, 21323, 21324, 2537], + [0, 30905, 8506, 3137], + [ + 0, 21024, 5467, 811, 8850, 816, 5087, 9363, 1009, 1011, 1529, 1177, 1895, 1955, 2675, 1192, 30912, 12129, 1894, + 4042, 4257, 4072, 4474, 91 + ], + [0, 1894, 1932, 1776, 8505], + [1, 2343, 21326], + [0, 0, 21327, 21330, 2487], + [0, 4874, 30922, 1166, 1894, 91, 13151], + [2, 4755, 1145], + "yeoman-test", + [0, 1894, 30924, 91, 5651, 3705], + [1, 2343, 21332], + [0, 21333, 21334, 21335, 4139], + [0, 18710], + [0, 3401, 1894], + [0, 6661, 1932, 1894], + [1, 2343, 21338], + "restangular", + [0, 0, 21342, 21343, 2487], + "ui-router", + "foundation", + "traceur", + [0, 8862, 811, 816, 4874, 1166, 1894, 4042, 4075, 3709, 4474, 4484, 91], + [0, 1894, 3709], + [1, 2343, 21345], + [0, 21346, 0, 21347, 2487], + [0, 30940, 1209, 1997], + [0, 1894, 1541], + "find-git-root", + [1, 2343, 21353], + "git-config", + [3, 31021, 19], + "@merkle-open/eslint-config", + [0, 0, 8134, 21355, 2537], + "modular", + [0, 3721, 1413, 1412, 2098, 4202, 2090, 12786, 30946, 7017, 30947, 2382, 30948, 23933, 30950], + [1, 2343, 21357], + [0, 21358, 21359, 21361, 4139], + [0, 1209, 30956], + [0, 1429, 1506, 1509, 30958, 2899], + "pooling", + [0, 3721, 1851, 30960, 1676, 6738, 7017, 13086, 22405, 1671, 12786], + [1, 2343, 21363], + [0, 21364, 21366, 2514, 2523], + [0, 8801, 1110, 3847], + "ts2mjs", + [0, 4880, 15606, 4889, 2700, 2798, 89, 3824, 3904], + "iterators", + [1, 2343, 21370], + "iterable", + [0, 21372, 8134, 21375, 2487], + [2, 21373, 29777], + [0, 30970], + "@prisma/d", + "@prisma/dev", + [0, 3721, 22405, 12786, 24130, 30946, 7017, 6901, 3242, 30974, 17003, 30975, 6754, 2585, 1871, 6988, 15244], + [1, 2343, 21382], + "@werkzeugkiste/eslint-config", + [3, 21377, 15], + [2, 6019, 1541], + [2, 21378, 21379], + "install-", + [0, 21389, 0, 21390, 2487], + "postmerge", + [2, 17496, 21383], + [2, 21381, 21384], + [3, 9794, 17], + [3, 13848, 20], + [2, 21386, 21387], + [0, 6041, 4484, 2687, 26379, 3530, 30097, 3527], + [0, 3358, 30981, 30982, 1894, 3720, 6983, 1501, 30983, 30872], + [1, 2343, 21392], + [0, 21394, 21398, 21399, 2523], + "@cfware/lint", + [0, 1512, 3183], + "@cfware/nyc", + "if-ver", + "libtap", + [0, 2899, 2272, 4170, 2759, 1596, 3202], + [0, 1781, 200, 6983, 1512], + [1, 2343, 21401], + [0, 21403, 21408, 21409, 2523], + "available", + [0, 3260, 25638, 21374, 28286, 30996, 21351], + "connection", + "tcp", + [3, 6045, 9], + "chosen", + [ + 0, 3467, 4763, 2611, 1192, 3445, 2020, 2929, 28974, 3510, 1759, 8537, 15452, 1457, 2151, 842, 16145, 16473, + 2794, 3077, 3310, 29710, 4294, 31000, 91, 5087, 4874, 6477, 28076, 1151, 2191, 31004, 3393, 31006, 32248, 31008, + 28229, 31009, 25629, 31013, 4864, 33235, 23531, 8998, 29420, 31015, 31018, 13471, 32470, 31023, 31026, 33237, + 28231, 29421, 26285, 33683, 21371, 13502, 29425, 31475 + ], + [ + 0, 9628, 31034, 31035, 31037, 31038, 18035, 1747, 17626, 31039, 6869, 31040, 31041, 31042, 3519, 31043, 31045, + 31046, 31047, 31048, 31049, 31050, 31051, 31052, 31221 + ], + [1, 2343, 21411], + [0, 0, 21412, 21414, 2537], + [ + 0, 5542, 1317, 1429, 31058, 1700, 31061, 1177, 1942, 1964, 2323, 2361, 2367, 2409, 20304, 2494, 2496, 31063, + 2553, 2654, 2665, 2832, 2899, 3310, 3400, 1894, 3756, 19745, 19750, 12120, 3980, 19751, 4183, 31066, 4747 + ], + "std", + [0, 588, 5342], + [1, 2343, 21416], + [0, 21417, 21419, 21421, 4139], + [0, 1362, 1364, 1512, 2026, 3078, 3188, 3220, 31074, 3460, 3507, 31075], + "@sec-ant/readable-stream", + [0, 1429, 2323, 2463, 3215, 4089, 4193, 4196, 4339], + "onetime", + [0, 1370, 7223, 29179, 18157, 12468, 2325, 3358, 31078, 3383], + [1, 2343, 21424], + "precise-now", + [0, 0, 6538, 2514, 2537], + [1, 2343, 21426], + [0, 0, 21427, 21428, 2487], + [0, 4770, 2899], + [0, 3729], + "-maps", + [2, 6477, 21429], + [1, 2343, 21433], + [2, 2190, 6660], + [0, 0, 0, 21434, 8878], + [0, 200, 3730], + [1, 2343, 21436], + [0, 21443, 0, 21445, 2537], + [3, 13936, 15], + "evry", + [2, 21437, 21438], + "make-d", + "eno-edition", + [2, 21440, 21441], + [0, 1437, 3730], + "deno", + [0, 2924, 1932, 3730, 10036], + [1, 2343, 21448], + "deno-edition", + [0, 21449, 21451, 2514, 4139], + [0, 29277], + "deno-entry", + [0, 1082, 4039, 2759], + "denoland", + [1, 2343, 21454], + [0, 0, 21460, 21461, 2487], + "es2022", + [3, 72, 14], + "ifconfig", + "ipconfig", + "mac-address", + [ + 0, 1389, 1610, 1177, 10697, 2675, 2297, 2871, 2881, 2900, 2990, 2899, 3400, 1894, 4039, 4042, 4077, 4193, 4650, + 91 + ], + [0, 1862, 3734, 6789, 14833], + [1, 2343, 21463], + [0, 21467, 17022, 21471, 2537], + "email-", + "addresses", + [2, 21464, 21465], + [0, 2899, 4193, 4545], + "dir-compare", + "tschaub", + [2, 1884, 21469], + [0, 6567, 14833], + [1, 2343, 21473], + [0, 16583, 21474, 11581, 2487], + [0, 1804, 2109, 2899, 3699], + [1, 2343, 21478], + "manage-path", + "opt-cli", + [0, 21484, 21487, 21488, 2487], + "chai-s", + "chai-string", + "kentcdodds", + [2, 1884, 21481], + "trav", + [0, 13388, 1149, 3917, 13832, 4709], + "is-after-all", + [2, 21483, 21485], + [0, 1177, 4616], + [0, 3741, 6876, 31122, 7020], + [1, 2343, 21490], + [0, 21491, 21492, 21493, 2487], + [0, 2929, 16235], + [0, 48, 53, 78, 87, 4387, 4389], + [0, 181, 3742, 200, 3741, 8626, 6876, 6847, 1523, 2184, 4403, 8620, 31129], + [1, 2343, 21500], + "@primer/octicons", + "@primer/", + "primitives", + [2, 21496, 21497], + [2, 812, 1936], + [0, 21501, 21502, 10570, 2523], + [0, 3082, 3427, 3847], + [0, 1193, 1268, 1389, 1408, 1177, 2708, 1192, 89, 31135, 31136], + [1, 2343, 21504], + [0, 0, 21506, 21508, 2443], + "minipass", + [0, 9363, 4874, 31142, 1414, 2620, 31145, 31147, 1894, 3985, 3998, 31148, 31150, 4505, 91, 18002, 1906], + "path-scurry", + [0, 31152, 23584, 1936, 4374, 18523, 3205, 8221], + "-from-dist", + [2, 9478, 21509], + [1, 2343, 21513], + [2, 5745, 1563], + [0, 21514, 21515, 21516, 2523], + [0, 31157, 31159, 31160, 31161, 31162, 31165, 31166, 31167, 31169, 31170, 4874, 3080], + [ + 0, 1317, 1389, 31172, 1408, 1437, 1875, 1177, 2000, 2004, 2193, 28406, 31174, 21749, 2323, 2409, 2419, 2510, + 2530, 1776, 3183, 3421, 3951, 4389, 4487, 91, 4535, 4599, 4600, 4603 + ], + [0, 7018, 6765, 7050, 91], + [1, 2343, 21518], + [0, 21521, 21522, 21523, 2523], + "dirname", + "wildcard", + [0, 11304, 28502, 31180, 14336, 1437, 2070, 2765, 31182, 3760, 12826, 4130, 4232, 31184, 31186, 4747], + [ + 0, 7740, 4865, 23689, 31188, 9129, 4874, 1364, 1429, 1431, 28556, 2025, 2026, 2323, 31190, 2526, 2272, 1209, + 3127, 2899, 31191, 4039, 4089, 4135, 4487, 31194, 91, 31195 + ], + [0, 1098, 1973, 5472, 11132, 13841, 28522], + [1, 2343, 21525], + [0, 21527, 21528, 21529, 2537], + "min-document", + [0, 7058, 31202, 1676], + [0, 31205, 5245, 5087, 4874, 1151, 1192, 4468, 91, 2190], + [0, 27, 2671, 2658, 1544, 3013, 31207, 31209, 18413, 31210, 31211, 31212], + [1, 2343, 21531], + [0, 21532, 21533, 18970, 2537], + [0, 31218, 31220, 814], + [0, 2899, 31224, 4170, 4193, 4255], + [1, 2343, 21535], + [0, 21538, 21540, 21542, 2523], + "path-t", + "path-type", + [0, 1437, 31229, 31233, 2720, 2742, 1209, 3170, 3309, 3470, 4135], + "glob-stream", + [0, 1173, 1255, 1264, 1700, 1177, 1895, 2702, 2759, 3188, 2899, 3211, 1894, 4039, 4170], + "fnmatch", + [0, 2323, 3378, 20001, 3383, 1237], + "globbing", + "globs", + "wildcards", + [1, 2343, 21547], + [0, 21548, 21549, 21551, 2399], + [0, 31249, 31246, 31248, 31250, 31243, 31251, 31242, 31254], + [0, 3188, 4039, 24592, 24587, 24594, 24596, 31259, 31258, 24591], + [2, 13039, 12804], + [0, 1936, 2437, 3754, 1283], + "array-series", + [1, 2343, 21554], + [0, 0, 21557, 2514, 2537], + "magick", + [2, 11812, 21555], + [0, 1317, 27468, 2060, 3714, 31266, 4387, 4389], + [1, 2343, 21559], + [0, 21560, 0, 21561, 2537], + [0, 1834, 3441], + [0, 7046, 7170, 14858, 7241], + "-with", + [2, 21562, 1892], + [2, 1903, 21563], + [1, 2343, 21569], + "msmc", + "mc", + "minecraft", + [0, 0, 21570, 21588, 2537], + [0, 1503, 3421, 2899], + "java edition", + "arm", + "arm-support", + "forge", + "s-management", + [2, 16154, 21575], + "instances", + "mod", + "mods", + "mc-mod", + "mc-mods", + "modpack", + "modpack-api", + "extendable", + "nbt", + "jarmods", + "skin fix", + [0, 3757, 3656, 31277, 31278, 31279, 1002, 31280], + [1, 2343, 21590], + [0, 21591, 21592, 21593, 2523], + [0, 17846, 31286, 1595, 28504, 11114, 31288], + [0, 4874], + [0, 3758, 3195, 29727, 13428], + "docsify-cli", + "ing-promise", + [2, 14639, 21595], + [2, 16645, 21596], + [1, 2343, 21601], + "spreadsheets", + [2, 8567, 21599], + [0, 21602, 0, 21609, 4139], + [0, 1525, 2071, 3561, 3681], + "google sheets", + [3, 21599, 11], + "sheets", + "gdata", + "drive", + "google docs", + [0, 6707, 16587, 7293, 17507, 1623, 1936, 3624, 31297, 22946, 18114], + "svgs", + "google drive", + [1, 2343, 26326], + [0, 2228, 2272, 3130, 2240, 2768, 2281, 3736], + [0, 3760, 1862, 6567, 14832, 14833, 14834, 14836, 1149, 14838, 8553, 1388, 202], + [1, 2343, 21617], + [2, 2211, 13369], + [0, 0, 0, 21618, 2399], + [0, 11194, 31307, 16421, 18048, 8221, 158], + "@types/execa", + "@types/mv", + "@types/ncp", + "unjucks", + [2, 10884, 21622], + "rl-template", + [2, 7817, 21624], + [2, 4892, 1574], + "js-green-licenses", + [1, 2343, 21629], + [0, 0, 0, 21631, 2537], + "linkinator", + [0, 1111, 6938, 11194, 7201], + [2, 8573, 591], + [2, 5576, 12950], + [1, 2343, 21635], + [0, 21636, 21637, 21643, 2537], + [0, 17409], + [ + 0, 31317, 31319, 13614, 1389, 1408, 31322, 1796, 1855, 1177, 2011, 2133, 2070, 19066, 31328, 27547, 17421, 2569, + 2685, 2708, 2762, 2807, 3188, 3206, 15030, 3410, 3421, 3431, 19974, 4103, 23948, 4389, 31329 + ], + "p-cancelable", + "responselike", + "-keys", + [2, 17267, 21640], + [2, 13788, 2741], + [0, 3767, 3763, 3766, 1002, 1644, 1646], + "able-lookup", + [2, 2325, 21644], + "cacheable-", + [2, 21646, 705], + "-encoder", + [2, 2139, 21648], + [2, 17278, 5508], + "byte-counter", + [1, 2343, 21660], + "pem", + "@types/pem", + "cert", + "create-cert", + "slow-stream", + "then-", + "then-busboy", + [0, 21661, 21664, 21669, 2537], + [0, 31337, 31339, 31341], + "@hapi/bourne", + [2, 1601, 9224], + [0, 1166, 1317, 1693, 2064, 4481, 1906], + "brotli", + "requests", + [2, 20034, 17460], + "ky", + [0, 1388, 3767, 3766, 1871, 3763, 5420, 31344, 1002, 1644, 1646, 10368, 15103, 31345, 7131], + [1, 2343, 21671], + [0, 0, 21672, 21673, 2537], + [0, 1973, 31350, 4389], + [0, 10906, 3766, 3767], + [1, 2343, 21675], + [0, 0, 21685, 21686, 2537], + "govuk-", + "-kit", + [2, 6688, 21677], + [2, 21676, 21678], + "gulp-cl", + "gulp-cli", + "sass-co", + "lor-helpers", + [2, 21682, 21683], + [0, 1414, 2665, 31357], + [0, 3768, 1149, 14629, 31360, 12692, 5957, 6994, 13792], + "embedded", + [2, 4832, 21687], + "sassdoc", + [1, 2343, 21692], + "govuk", + [0, 11570, 11571, 21693, 2537], + [ + 0, 3768, 29664, 31365, 31366, 31367, 5284, 17625, 17626, 676, 91, 17627, 6869, 4799, 12692, 4721, 3768, 31369, + 31370, 31374, 8893, 6994, 31376, 6915, 17697, 6333, 31377, 2382, 6956, 17706, 17710, 6957, 17711, 17712, 17713, + 17714, 17715, 17716, 17717, 17718, 17651, 6674, 17721, 17722, 6789, 17723, 17724, 17726, 17727, 17729, 17730, + 17731, 17732, 17733, 614, 6910, 17734, 11600, 17735, 3760, 31379, 4552, 28483, 31381, 6645, 4787, 3286, 202, + 5401, 27366, 6681, 17740, 1745, 17116 + ], + [1, 2343, 21695], + [0, 21696, 21698, 21705, 2537], + [0, 3021, 31388, 31389, 2017], + "reading", + [ + 0, 2070, 4361, 2832, 1177, 4333, 1984, 4474, 2924, 1894, 4469, 48, 1628, 91, 53, 4874, 2629, 4677, 1195, 2600, + 4307, 4334, 4689, 4891, 17214, 8648, 5139, 87, 4230, 4681, 31392, 2651, 1938, 4409, 1895, 1947, 1955, 3177, 92, + 31394, 1011, 20476, 31393, 1009, 8724, 1915 + ], + "retries", + "EMFILE", + "EAGAIN", + "EINVAL", + "EPERM", + "EACCESS", + [0, 3771, 6038, 6106, 6105, 6138, 6139, 5130], + [1, 2343, 21707], + [0, 21708, 21709, 21710, 2443], + [0, 1525, 11482, 3350], + [ + 0, 3421, 2228, 2929, 1177, 4039, 4042, 4135, 1317, 2116, 31401, 4019, 3752, 20496, 53, 31402, 87, 1937, 1954, + 2258, 18895, 23165, 5583, 1924, 1938, 31404, 1958, 2256, 6373, 1903, 1948, 811, 1900, 816, 31405, 8229 + ], + [0, 5472, 2275, 1145, 6468, 4384, 4389, 2297, 2814], + [1, 2343, 21712], + [0, 21713, 21714, 21716, 4139], + [0, 31413], + [ + 0, 5517, 31417, 1009, 1011, 7677, 1240, 1264, 1540, 1177, 1895, 1955, 15854, 18841, 1894, 23535, 2907, 3980, + 18819, 4042, 8849, 4076, 91, 1984, 2924 + ], + "graphql-js", + [0, 1388, 965, 1936, 2907, 31419, 5472], + [1, 2343, 21718], + [0, 21719, 21722, 21723, 2537], + [0, 1457, 1525, 31426, 2107, 31427, 814, 4648], + "all-versions", + [2, 1382, 21720], + [ + 0, 1149, 1203, 1267, 31429, 1499, 25063, 25076, 1937, 18895, 2020, 2116, 2151, 2228, 2240, 2243, 2256, 2258, + 23165, 2283, 21929, 2291, 25070, 21930, 26210, 31402, 3006, 3752, 4019, 4045, 4135 + ], + [0, 5472, 2275, 2814], + [1, 2343, 21725], + [0, 21726, 21727, 21728, 34352], + [0, 3518], + [0, 31437, 1389, 4389], + [0, 31440, 6422], + [1, 2343, 21733], + "section-", + [2, 21730, 9338], + [2, 4296, 12835], + [0, 0, 21736, 21737, 2523], + "ansi-green", + "delimiter-regex", + [ + 0, 48, 53, 87, 94, 104, 5583, 24621, 31447, 1290, 1317, 1481, 1610, 31448, 1177, 1938, 2064, 2036, 2822, 2899, + 3400, 3421, 4039, 4042, 4077, 31449, 31452, 4193, 4423, 31453 + ], + [0, 3776, 6564, 594, 6731, 6081, 7517, 7532, 7594, 7595, 7523, 7524], + "assemble", + [1, 2343, 21741], + "extracting", + [0, 21742, 7923, 21743, 2487], + [0, 4127], + [0, 3778, 28734, 28734, 4718, 1179, 16431, 2585], + [1, 2343, 21747], + [3, 5364, 11], + [2, 21745, 1398], + [0, 8766, 21753, 21754, 2523], + [2, 1807, 2899], + [2, 10692, 7018], + "pois", + "son-process", + [2, 21750, 21751], + [0, 3521, 4255, 4387, 4389, 4770], + [0, 1616, 3778], + [1, 2343, 21756], + [0, 21764, 7923, 2514, 2399], + "grunt-k", + "nown-options", + [2, 21757, 21758], + "legacy-log", + [2, 2235, 21760], + [3, 21761, 13], + [2, 21762, 614], + [0, 3779], + "difflet", + [3, 16758, 16], + "unt", + [2, 21766, 21767], + [1, 2343, 21771], + "temporary", + [0, 0, 7866, 21773, 34352], + "init", + [0, 6754, 57, 27], + [1, 2343, 21775], + [0, 21776, 21777, 21778, 2487], + [0, 3135, 3348, 977, 31479, 4252], + [0, 2070, 3297, 2899, 4193, 1177, 4170, 2759, 1894, 1506, 1895], + [0, 28411, 2656, 31482, 6807, 3783, 31483], + "gruntplugin", + [1, 2343, 21781], + [0, 21782, 21783, 2514, 2523], + [0, 1413, 14855, 2685, 2657], + [0, 3421, 2899, 1177, 1362, 29197, 4100, 3923, 19344, 7844], + [1, 2343, 21785], + [0, 13511, 21786, 13533, 2523], + [ + 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 1610, 1700, 1701, 1177, 1895, 1938, 1955, 2675, 1192, 2990, 3144, + 3400, 1894, 4257, 2924 + ], + [1, 2343, 21788], + [0, 21792, 0, 21793, 2537], + [3, 21146, 12], + "ncremental", + [2, 21789, 21790], + [0, 2714, 3183, 1696, 4300], + [0, 1541, 1997, 28984, 19400], + [1, 2343, 21795], + [0, 21796, 21797, 21798, 2523], + [0, 97, 1461, 3789], + [ + 0, 31504, 968, 972, 4859, 5087, 4874, 4880, 4883, 14693, 1610, 1789, 1177, 1939, 1982, 2079, 31506, 2193, 2070, + 695, 3377, 31508, 3788, 11249, 89, 3824, 3957, 91 + ], + [0, 89, 5128, 31511, 31512, 6847, 6754], + [1, 2343, 21800], + [0, 21801, 21802, 21803, 2523], + [0, 97, 13169, 1461, 3789], + [0, 31504, 972, 5087, 4880, 4883, 11322, 1610, 1789, 1177, 1982, 2079, 2193, 695, 3377, 31508, 89, 3824, 91], + [0, 89, 5128, 31519, 8190], + "liftup", + [1, 2343, 21806], + [0, 21807, 21808, 21809, 2523], + [0, 97, 3847], + [ + 0, 31504, 972, 5087, 4874, 4880, 4883, 15606, 31527, 11322, 14693, 1603, 1610, 1789, 1177, 1939, 1982, 2079, + 2070, 2675, 2990, 3377, 1894, 31508, 89, 3824, 91 + ], + [0, 89, 614], + "pad-stream", + [1, 2343, 21812], + [0, 0, 0, 10570, 2399], + [1, 2343, 21815], + "grunt-nodemon", + [0, 21816, 0, 21817, 2399], + [0, 3911], + [0, 89, 31542], + [1, 2343, 21819], + [0, 21822, 21823, 21817, 2523], + "simultaneous", + "faster", + [0, 3427], + [0, 1192, 89, 3824, 2924], + [1, 2343, 21825], + [0, 21826, 21827, 21828, 2523], + [0, 31555, 31558, 31560, 31563, 31564], + [0, 4042, 91], + [0, 5575, 2220, 89, 582, 21189, 4963], + [1, 2343, 21835], + [2, 21831, 36], + [3, 30922, 14], + "bin-", + [3, 18806, 13], + [2, 21832, 21833], + [0, 21836, 0, 2514, 2443], + [0, 3775, 1593, 1862, 4705, 3427, 3957], + "compass", + [1, 2343, 21839], + [0, 21840, 0, 21841, 2537], + [0, 4649, 2731, 1461, 3744, 31577, 1751, 97, 31575, 31581, 31578, 5090, 3911, 4808], + [0, 1367, 89, 4627, 4963, 31583, 5128], + [1, 2343, 21843], + [0, 21844, 21845, 21846, 2523], + [0, 31590, 1209, 3021, 31591, 3744, 31592, 4443], + [ + 0, 31594, 31598, 14689, 14691, 10837, 1173, 1175, 1193, 1195, 31600, 1267, 1268, 1272, 1280, 1429, 31602, 1628, + 1843, 2012, 2081, 2600, 2629, 2651, 2678, 1192, 2774, 31603, 2899, 3376, 3378, 3427, 89, 21074, 31605, 3824, + 3836, 31606, 3904, 4001, 4015, 4039, 4307, 31608, 2924, 4681 + ], + [0, 89, 31611, 5128, 20542, 3811, 31612, 3195, 31614, 5027, 8192], + [2, 1547, 3000], + [1, 2343, 21849], + [0, 21850, 21851, 21852, 34352], + [0, 1582, 3744], + [ + 0, 48, 53, 68, 61, 78, 87, 90, 94, 1195, 1251, 1628, 1703, 1177, 1879, 1938, 1947, 1959, 1961, 2193, 2651, + 31622, 3177, 89, 3824, 4307, 4389, 2924, 4677, 4681 + ], + [0, 4627, 5128, 89, 31625, 1492], + [1, 2343, 21854], + [0, 21856, 21857, 21858, 34352], + "file-sync-cmp", + [0, 8703, 1497, 1668], + [ + 0, 53, 68, 5228, 8229, 61, 87, 90, 92, 442, 31633, 5583, 811, 816, 10615, 10817, 966, 972, 974, 5601, 5087, + 11292, 4874, 4880, 4883, 1009, 1011, 1169, 1193, 1251, 1593, 33872, 1177, 1895, 1938, 1939, 1959, 1961, 27790, + 2675, 1192, 11347, 2771, 2780, 2990, 1209, 1894, 89, 3824, 4042, 11802, 2278, 4213, 4320, 4323, 5978, 4330, + 4468, 4484, 91, 4523 + ], + [0, 89, 3812, 9026, 1666, 5128], + [1, 2343, 21860], + [0, 21862, 21863, 2514, 2523], + "csslint", + [ + 0, 3445, 1437, 2696, 2205, 3539, 15427, 2105, 31642, 3742, 2098, 2553, 4294, 4425, 1615, 4165, 1393, 3008, + 14564, 31640, 51, 3938, 3829, 1874, 2135 + ], + [0, 1192, 1610], + [1, 2343, 21865], + [0, 21866, 21868, 2514, 2487], + [0, 31650, 31652, 31654, 2069, 2609], + "maxmin", + [0, 8719, 842, 972, 5540, 5087, 4874, 4880, 4883, 1192, 11944, 3400, 89, 3824, 4172, 91], + "cssmin", + [1, 2343, 21871], + [0, 21872, 21873, 2514, 4139], + [0, 31654], + [0, 8719, 842, 5087, 3400, 4172, 91], + [1, 2343, 21875], + [0, 21876, 0, 21877, 2537], + [0, 814, 19526, 53, 104, 8959, 5251, 101, 31669, 10879, 31666], + [0, 89, 1745, 31671], + [1, 2343, 21879], + [0, 21880, 0, 10570, 2537], + [0, 4116], + "jpeg", + [1, 2343, 21883], + [0, 21884, 21885, 21886, 2537], + [0, 31683, 31686, 3744], + [ + 0, 48, 53, 68, 8229, 31689, 73, 31690, 14170, 13051, 31693, 83, 87, 90, 94, 192, 22559, 19036, 26486, 5583, 811, + 816, 6061, 16607, 6065, 16608, 16612, 5535, 10876, 31695, 966, 968, 972, 20562, 4880, 4883, 1009, 1011, 1193, + 1198, 1201, 1527, 1610, 1177, 1895, 1938, 1947, 1954, 1955, 1959, 1961, 2675, 31696, 2694, 1192, 2990, 3125, + 3534, 1894, 89, 3824, 3895, 3904, 4039, 4042, 4073, 4131, 4201, 4307, 4315, 91, 2924, 31699 + ], + [0, 5128, 89, 7518, 5398, 9229], + [1, 2343, 21888], + [0, 0, 21889, 21891, 2537], + [ + 0, 51, 53, 31705, 1193, 1195, 1270, 1437, 1457, 1610, 2126, 2626, 1192, 31706, 3427, 1862, 3786, 89, 3803, 3824, + 4039, 31708, 4227, 2924 + ], + "hooker", + [0, 3473, 5341, 1851, 12991, 5403, 31710, 31711, 4649], + [1, 2343, 21893], + [0, 21894, 21895, 21896, 2537], + [0, 3427, 3744, 21174, 31718], + [ + 0, 1175, 1178, 1203, 1208, 1230, 1245, 1264, 1268, 1429, 1503, 1567, 1652, 1177, 31721, 1895, 1938, 1947, 1951, + 1955, 1959, 2759, 2297, 2878, 30885, 2881, 2886, 2895, 31723, 2900, 2910, 2921, 2923, 28636, 2899, 1894, 89, + 3824, 4039, 4042, 4045, 4055, 4067, 4069, 4193, 4196 + ], + [0, 3830, 31725, 89, 1746, 3193, 17913, 5207, 163, 1508, 1299, 31726, 590], + [3, 13115, 12], + [2, 21897, 1462], + [1, 2343, 21900], + [0, 0, 21901, 21902, 2537], + [ + 0, 19438, 603, 811, 816, 10615, 842, 16145, 968, 972, 5087, 4874, 4880, 4883, 6375, 1651, 1177, 1895, 4916, + 1955, 1959, 1961, 10964, 2675, 1192, 2780, 27412, 31734, 2990, 1894, 89, 3824, 4039, 4042, 4076, 4481, 91, 4523, + 4705, 4763 + ], + [0, 89, 582, 1669, 25, 7021, 7020, 91, 6687], + "nodeunit-x", + [1, 2343, 21905], + [0, 21906, 21907, 21908, 2487], + [0, 26007, 2202, 2609, 3008, 3744, 3849, 4163, 4227], + [ + 0, 8130, 4880, 8158, 1173, 1175, 1178, 1193, 1201, 1203, 1230, 1245, 1257, 1264, 1268, 1503, 13985, 1603, 1610, + 1843, 31742, 1845, 1177, 1879, 1895, 1938, 1947, 1959, 2675, 1192, 2990, 1894, 89, 3824, 31743, 3904, 3935, + 4039, 4042, 4045, 4055, 4058, 4067, 4069, 4077, 4257, 31745 + ], + [0, 89, 5284, 2924, 11498, 3000, 2998, 6109, 6609, 1194, 2999], + [1, 2343, 21910], + [0, 21911, 21912, 21913, 2487], + [0, 97, 31752, 5545], + [ + 0, 48, 53, 68, 23908, 78, 5241, 83, 85, 87, 90, 94, 5583, 811, 816, 6373, 10615, 966, 968, 972, 5087, 4880, + 7677, 17584, 1175, 7913, 14065, 1596, 1597, 1610, 1177, 1879, 1895, 1938, 31755, 1947, 1959, 1976, 2559, 2675, + 2681, 2990, 3188, 1894, 89, 3824, 3904, 4039, 4042, 91, 1984, 4747 + ], + [0, 2681, 23932, 2679, 8930, 23933, 6728, 23934, 89, 6071], + [1, 2343, 21916], + "uri-path", + [0, 0, 21917, 21918, 2399], + [ + 0, 5517, 11976, 5535, 968, 972, 4874, 4880, 4883, 1030, 32818, 16480, 19839, 2990, 3165, 3400, 3541, 23535, 89, + 3824, 9245, 4201, 4493, 91, 1984 + ], + [0, 89, 4627, 582, 31765, 31766, 31767, 31769, 31770, 31771, 31779], + [1, 2343, 21920], + [0, 21921, 0, 21922, 2537], + [0, 5540, 2609, 4484, 26222, 31797, 31791, 31799], + [0, 1671, 6983, 23934, 2679, 23932, 2728, 30948, 23933, 89, 6071, 8574, 8930], + [1, 2343, 21924], + [0, 0, 0, 10570, 2487], + [1, 2343, 21926], + [0, 0, 21931, 2514, 2523], + "grunt-co", + "veralls", + [2, 21927, 21928], + [2, 2235, 2759], + [0, 1420, 1437, 1177, 31815, 1192, 2774, 1894, 4042, 4069, 4077], + [1, 2343, 21933], + [0, 21934, 21935, 21936, 2487], + [0, 12396, 9363, 23289, 2583, 31821, 3140, 3992, 3999, 4549, 4555, 12449], + [ + 0, 972, 4874, 4880, 4883, 1414, 1537, 668, 1959, 10621, 1894, 89, 3824, 3973, 29250, 3985, 3988, 3998, 10632, + 4505, 91, 1906 + ], + [0, 6892, 20627, 4627, 3987, 1783, 89, 5128, 3984, 4549], + [3, 2289, 9], + [1, 2343, 21943], + "all-releases", + [2, 9005, 21939], + [2, 21937, 21940], + [2, 2235, 21941], + [0, 21946, 21947, 21948, 2523], + "gh", + "releases", + [0, 31828, 3744, 3849, 4649], + [ + 0, 31832, 1173, 1175, 1178, 1195, 1198, 1264, 1268, 1277, 1596, 1610, 1177, 1895, 31393, 1938, 1947, 1955, 1959, + 13871, 2297, 2881, 2886, 2895, 2900, 2904, 2921, 2925, 2899, 3400, 1894, 89, 3824, 3884, 3885, 4170, 4535, 2924, + 4677, 4681 + ], + [0, 89, 5128, 5066, 18346], + [1, 2343, 21950], + [0, 21951, 21952, 21953, 2523], + [0, 3518, 3744, 3775], + [ + 0, 1172, 31840, 1175, 1178, 1195, 1505, 1628, 1177, 1879, 1916, 1938, 1947, 1959, 2126, 29945, 31841, 31842, + 2766, 2297, 2886, 2898, 31844, 2906, 2925, 31845, 3521, 3836, 4307, 2924, 4681 + ], + [0, 89, 4627, 5128, 31847, 8424, 31849, 12185, 7521, 9944, 181], + [1, 2343, 21955], + [0, 21957, 0, 21958, 2537], + "vow", + [ + 0, 4729, 31705, 4747, 4135, 1862, 1301, 1525, 2731, 4116, 1109, 1193, 31856, 27921, 3145, 4705, 31859, 3717, + 3878, 30781, 1079, 31861, 28512, 31864, 24169, 3957, 31867, 2784, 31871, 31877, 31880, 31884, 31891, 31893, + 21129, 31896 + ], + [0, 89, 3857, 12296, 12295, 5131, 16697, 31904, 31906], + [1, 2343, 21960], + [0, 0, 21961, 21962, 2537], + [0, 29525, 21155, 21156, 1177, 1955, 1894, 89, 3857, 21166, 91], + [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 31914], + [1, 2343, 21964], + [0, 21965, 21966, 21967, 2487], + [0, 4747, 3744], + [ + 0, 89, 1177, 31934, 31928, 2735, 1894, 10777, 48, 31923, 53, 1178, 2132, 31926, 21495, 31929, 31935, 31932, + 31920, 31922, 1959, 1879, 1938, 1895, 1947, 1955, 1961, 5103 + ], + [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 31937, 6574, 6635, 181, 1017, 45, 13814, 22875, 2414], + [1, 2343, 21971], + "ravis-cli", + [2, 6305, 21969], + [0, 0, 21973, 21974, 34352], + "TDD", + [ + 0, 48, 53, 61, 78, 5240, 87, 90, 94, 31942, 20202, 20212, 602, 15134, 10817, 968, 972, 974, 4880, 1011, 1178, + 1195, 1198, 4899, 1461, 1497, 1610, 1177, 1895, 1916, 1938, 1959, 2193, 2832, 3132, 15326, 1894, 9054, 89, 3824, + 31945, 4042, 4045, 4055, 11802, 4060, 4067, 4069, 4077, 4469, 91, 1984, 2924, 4677, 4681 + ], + [0, 5128, 89, 31948, 6847, 6988, 31950, 10098], + [1, 2343, 21976], + [0, 0, 21977, 21981, 2537], + [ + 0, 53, 61, 78, 87, 14041, 5583, 1178, 1195, 1429, 1177, 2675, 2990, 2899, 3400, 1894, 89, 3824, 3904, 31956, + 4039, 4042, 2924 + ], + [3, 2247, 10], + "inue", + [2, 21978, 21979], + [0, 89, 31958, 31959, 3868], + "grunt-env", + "-coverage", + [2, 21930, 21983], + [1, 2343, 21986], + [0, 0, 21987, 21988, 2537], + [0, 8862, 31964, 1177, 31966, 1955, 31967, 1192, 1894, 4042, 91], + [0, 3872, 1936, 8221, 965, 3205, 23584, 1541, 89, 3824], + [1, 2343, 21992], + "afe-mocha", + [2, 2241, 21990], + [0, 21993, 21994, 21997, 2523], + [0, 5546, 5545], + [ + 0, 603, 810, 966, 968, 972, 4874, 5090, 4880, 4883, 1503, 1610, 1177, 1895, 1915, 1938, 1955, 1959, 2832, 1894, + 89, 3824, 3875, 4039, 4493, 91, 4523, 1984 + ], + [2, 21996, 995], + "@sailshq/r", + [0, 89, 6071, 3875], + [1, 2343, 21999], + [0, 0, 0, 10570, 2537], + "grunt-release", + "s-dylang", + [2, 14352, 22001], + [1, 2343, 22004], + [0, 22006, 22007, 22010, 2537], + "notify", + [0, 2677, 31983, 3744, 1849], + [ + 0, 10817, 4856, 31986, 13204, 31989, 31992, 6503, 4880, 4883, 6513, 1009, 1011, 1429, 1610, 1177, 1924, 2193, + 2832, 31994, 2899, 1894, 89, 3824, 4039, 4042, 11054, 4170, 4193, 4484, 4494, 4508, 91 + ], + "mountain lion", + "mavericks", + [0, 1623, 5128, 31765, 89, 5131, 31997, 31999, 6415, 32001, 6398, 4627], + "notify-send", + [1, 2343, 22013], + [0, 22014, 22015, 22016, 2487], + [0, 977, 5152], + [0, 4493, 89, 4548, 22205, 28119, 3824, 91, 3904, 972, 2780, 5162, 968, 974], + [0, 89, 38, 4082, 7433, 2602, 163], + [1, 2343, 22018], + [0, 22019, 22020, 22016, 2399], + [0, 3884], + [0, 4493, 89, 22205, 3824, 91], + [1, 2343, 22023], + "libsass", + [0, 0, 22024, 22025, 2537], + [ + 0, 1173, 1175, 1178, 1195, 24231, 24234, 1257, 1267, 1268, 1275, 1280, 1177, 1898, 1935, 1938, 1947, 1959, 2022, + 2602, 22588, 31842, 2297, 2886, 2895, 2900, 2904, 2921, 2925, 2899, 89, 3824, 3876, 3884, 3875, 32020, 32023, + 32026, 2924 + ], + [0, 89, 3875, 38], + [1, 2343, 22028], + [2, 705, 1153], + [0, 22029, 6230, 2514, 2537], + [ + 0, 1324, 1192, 1759, 1177, 4135, 3561, 3742, 814, 2924, 2151, 2154, 1420, 1193, 1628, 53, 2092, 4111, 4383, + 1195, 1393, 2797, 4307, 841, 1763, 3878, 3618, 3816, 3647, 4230, 2686, 3672, 3803, 4028, 4681, 2651, 2802, + 24732, 4409, 1270, 3605, 4723, 1898, 3177, 4686, 1630, 1216, 1426, 24723 + ], + [1, 2343, 22032], + "sauce-tunnel", + [0, 22036, 22038, 22039, 2443], + [3, 2311, 11], + "-tunnel", + [2, 22033, 22034], + [0, 97, 7931, 7948, 8181, 4808, 3145, 3744, 3911, 8187], + "yui", + [0, 11931, 1843, 8160, 11875, 89, 3824], + [0, 32039, 1669, 6847, 32040, 89, 5128, 1631, 181], + [1, 2343, 22041], + [0, 22042, 22043, 22044, 2523], + [0, 1461, 32046, 3029, 4023], + [ + 0, 48, 53, 68, 61, 85, 87, 90, 28598, 968, 972, 974, 4874, 1165, 1175, 1193, 1195, 1261, 1628, 1699, 1700, 1859, + 1177, 1938, 1959, 2026, 32049, 2323, 2494, 2675, 1192, 2780, 2820, 2843, 2990, 3459, 3618, 1894, 3775, 89, 3824, + 3957, 4193, 32051, 4307, 4537, 2924, 4677, 4681, 32052 + ], + [0, 11167, 32054, 32055, 32056, 31512, 5128], + [1, 2343, 22046], + [0, 22047, 22048, 22049, 2523], + [ + 0, 32061, 4889, 32062, 1082, 15128, 1145, 12184, 1397, 1465, 5386, 1497, 32063, 1584, 1593, 19526, 32064, 1863, + 1874, 1875, 2007, 29067, 7076, 32067, 7610, 2070, 32068, 2570, 2745, 32070, 32071, 32072, 32076, 32080, 32081, + 32084, 32085, 2929, 32086, 1209, 21641, 3120, 32087, 6041, 3467, 3725, 3744, 32088, 32089, 3816, 3822, 32091, + 32095, 32097, 3839, 12438, 3930, 3984, 32098, 4409, 19650, 32099, 4555, 4681, 4689 + ], + [ + 0, 48, 53, 61, 87, 14128, 90, 92, 968, 972, 32102, 32104, 31669, 32107, 1006, 32109, 5087, 32112, 4870, 32114, + 4874, 8149, 4880, 4883, 32116, 32118, 4891, 32120, 8157, 1009, 1011, 1175, 1178, 1193, 1195, 1628, 31058, 32121, + 32123, 32124, 1177, 32126, 1915, 1924, 1938, 1947, 1959, 2092, 2151, 2675, 1192, 32129, 2990, 3144, 1894, 3775, + 89, 3824, 3904, 32130, 4307, 91, 4027, 2924, 4677 + ], + [0, 89, 1219, 6718, 25172, 1745, 1739, 1179, 4627, 4963], + [1, 2343, 22051], + [0, 22056, 22059, 22063, 2537], + "sprit", + "esheet-templates", + [2, 22052, 22053], + "sprites", + [0, 97, 955, 5090, 3744], + "spritesmith", + "url2", + [ + 0, 53, 83, 87, 90, 442, 15288, 5583, 811, 816, 6373, 10615, 972, 5087, 13204, 4874, 4880, 4883, 7749, 1251, + 11890, 1177, 1895, 1959, 1961, 10964, 2203, 1192, 2780, 3297, 3401, 1894, 89, 3824, 4042, 4167, 4172, 11803, + 4468, 4474, 91, 4523 + ], + [3, 21470, 15], + "wolfson", + [2, 22060, 22061], + [0, 965, 1936, 11806, 11807, 5284, 89, 32142, 8221, 32145, 91], + "foundry", + "-release-git", + [2, 22064, 22065], + [3, 22066, 16], + [2, 22067, 3378], + [1, 2343, 22070], + [0, 22073, 0, 22076, 2487], + "get-pixels", + "gmsmith", + [0, 2081], + "sprite", + [3, 22054, 11], + [0, 32151, 89, 4453, 1702, 32152, 3899], + [1, 2343, 22078], + [0, 22079, 0, 22080, 4139], + [0, 3847, 4116], + [0, 89, 3857, 32162], + [2, 17566, 200], + [1, 2343, 22083], + [0, 6234, 22084, 22085, 2523], + [ + 0, 32167, 27742, 549, 963, 4874, 4880, 4883, 1030, 1596, 1651, 8540, 2990, 3561, 1894, 89, 3824, 4493, 91, 1983, + 32170 + ], + [0, 89, 9044, 11000, 5128, 3906, 6645, 32172, 26264, 6458], + [1, 2343, 22087], + [0, 22094, 22095, 22096, 2523], + "@npm/types", + [2, 7726, 2855], + [3, 8610, 9], + "ite-file-atomic", + [2, 22090, 22091], + [2, 16569, 1182], + [0, 32177, 32178], + [ + 0, 1317, 1389, 1408, 1506, 32180, 5669, 1839, 32181, 1859, 1177, 19896, 2228, 2240, 25074, 2247, 18461, 2256, + 2273, 32183, 25060, 32186, 2774, 3460, 3521, 12344, 32188, 3930, 22031, 4449, 91, 4535, 31135, 4652 + ], + [0, 89, 1219, 8535, 6624], + [1, 2343, 22098], + [0, 22103, 0, 22104, 2399], + "@guarapi/eslint-config-guarapi", + [2, 8711, 93], + [3, 5542, 13], + [2, 22101, 3312], + [0, 97, 1751, 3082, 3744], + [0, 89, 9944, 19102, 32195, 7521, 1623, 32196], + [1, 2343, 22106], + [0, 22107, 22108, 22111, 2487], + [0, 1497, 3744, 1751, 3082, 97, 3849], + [ + 0, 1192, 2675, 89, 2282, 1177, 4039, 4042, 1503, 3561, 2924, 2126, 2193, 1894, 1610, 2700, 3758, 3824, 48, 1193, + 1505, 1628, 53, 2092, 2990, 3566, 4677, 1165, 1178, 1195, 3720, 3884, 4307, 3618, 85, 29945, 32207, 3885, 87, + 14128, 18229, 4681, 90, 32203, 1922, 1959, 32205, 2651, 3904, 4045, 4077, 32202, 4069, 1895, 1935, 1947, 1955, + 4055, 32206, 4067, 2054, 8229, 83, 14132, 28972, 61, 5241, 1251 + ], + "undertaker", + "glob-watcher", + [0, 89, 6071, 5128, 4607, 3392, 32209, 32210, 3912, 176, 32211, 10345, 9320, 15182, 10052, 21604], + [1, 2343, 22113], + [0, 22116, 22117, 22118, 2399], + "series", + "streaming", + [0, 4430, 3909], + [0, 2899, 2272, 4135, 15052, 1389, 1537, 32218], + [0, 89, 1389, 14927, 1219, 676, 1932, 353], + [1, 2343, 22120], + [0, 22121, 22123, 22124, 2523], + [0, 97, 6372, 1461, 3744, 32225, 3911], + "gulp-footer", + [ + 0, 48, 53, 68, 73, 76, 78, 5241, 87, 90, 10821, 10825, 10828, 32229, 10837, 968, 972, 974, 4880, 1178, 1193, + 1195, 1270, 1367, 1540, 1567, 25901, 1610, 32231, 1787, 1797, 1177, 1879, 1895, 1935, 1938, 1947, 1959, 10851, + 32233, 1192, 2780, 2832, 2843, 3165, 1894, 89, 3824, 3830, 32236, 3884, 3904, 91, 2924 + ], + [0, 3916, 1367, 89, 4627, 4963, 5128, 181], + [1, 2343, 22128], + "html2js", + [2, 1283, 2325], + [0, 22129, 22130, 2514, 2537], + [0, 8612], + [0, 9516, 9515, 8608, 13680, 1011, 1414, 1915, 4384, 4474, 4483, 91], + [1, 2343, 22132], + [0, 22134, 11332, 22135, 4139], + "gulp-symdest", + [0, 18186, 18183, 16474, 4507, 20789], + [0, 1781, 3917, 1644, 2090, 2150, 30135, 3001, 3383, 3374], + [1, 2343, 22138], + "atom-shell", + [0, 22139, 8134, 22140, 2537], + [0, 30055, 3919, 4507], + [ + 0, 1781, 3917, 1644, 2090, 2150, 30135, 3001, 3383, 2100, 2104, 2105, 7076, 6614, 6605, 7193, 3529, 814, 5933, + 7029, 6857, 7204, 4647, 6821, 3403 + ], + [1, 2343, 22142], + [0, 22143, 22144, 22148, 34352], + [0, 1079, 1398, 2018, 3729, 15042], + [ + 0, 53, 14170, 13051, 19181, 811, 15460, 816, 826, 1389, 1414, 668, 32258, 1177, 1903, 1938, 1953, 1958, 3541, + 1894, 4042, 23652, 4384, 32262, 4389, 4390, 4548, 2924, 4677 + ], + "prefixes", + [3, 3674, 9], + [2, 22146, 8736], + [0, 7017, 3101, 7170], + [1, 2343, 22150], + [0, 0, 22151, 22152, 4139], + [0, 4384, 2685], + [0, 3925, 32271, 2090], + "lodash.chunk", + [1, 2343, 22155], + [0, 0, 0, 22158, 34352], + "-transform", + [2, 13792, 22156], + [0, 3925, 31360, 24095, 3741, 8631, 6875, 200, 6621, 1523, 32276, 8652, 6703, 1359], + [1, 2343, 22160], + [0, 8856, 7938, 7939, 2523], + [1, 2343, 22162], + [0, 22163, 22165, 22169, 2523], + [0, 12184, 2003, 4227, 32284, 4484], + "b", + [0, 53, 58, 87, 32287, 4865, 6503, 4874, 1011, 1177, 19896, 32288, 2070, 2990, 2899, 1894, 24209, 91], + "storage-blob", + [2, 13444, 22166], + [2, 12694, 14922], + [0, 6892, 22179, 32291, 5061, 5341, 22180, 7119, 32293], + "streamifier", + [1, 2343, 22172], + [0, 8029, 7938, 7939, 4139], + [1, 2343, 22174], + [0, 22175, 14066, 22176, 2537], + [0, 814], + [0, 3209, 1194, 7188, 19101, 32302], + [1, 2343, 22178], + [0, 22182, 0, 22183, 2537], + "rewriting", + [3, 12348, 14], + "desugaring", + [0, 97, 32307, 2081, 2609, 3849, 5513], + [0, 89, 6734, 4963, 32310, 6081, 6731, 32312], + [1, 2343, 22185], + [0, 13856, 7923, 22186, 4139], + [0, 7204, 32318], + [1, 2343, 22191], + "utf-8", + "add", + "prepend", + [0, 22192, 0, 22193, 2487], + [0, 32325, 32327, 32329, 32330, 32333], + [0, 1552], + [1, 2343, 22195], + [0, 22196, 22199, 5885, 2399], + [ + 0, 6327, 8111, 3127, 8114, 3725, 4213, 3555, 1757, 1461, 3191, 3744, 8122, 8123, 8113, 8127, 2017, 8116, 3502, + 8126, 8119, 32343 + ], + "decov.io", + [2, 2364, 22197], + [ + 0, 3775, 1002, 1192, 3190, 2675, 89, 4484, 1843, 1177, 4039, 1593, 1651, 2822, 3471, 4167, 4468, 4474, 8166, + 2924, 1894, 3824, 1628, 4201, 91, 4856, 5087, 8144, 4874, 8165, 4677, 4880, 4892, 3720, 4307, 4863, 8147, 8146, + 8149, 8155, 4891, 8160, 8161, 8163, 10875, 8136, 4883, 5090, 4315, 8157, 1311, 4681, 8141, 1584, 1959, 2651, + 1938, 8139, 2780, 4693, 8152, 1011, 1961, 1567, 8129, 2135, 1009, 32341 + ], + [1, 2343, 22201], + [0, 22202, 22203, 22204, 2537], + [0, 32353, 32351], + [0, 89, 2924, 3824, 91, 4880, 4883, 32359, 32358], + [0, 3939, 3452, 5592, 8124, 1745, 32361, 467, 32363], + "wireit", + [1, 2343, 22207], + [0, 0, 22208, 22209, 2523], + [ + 0, 53, 4874, 1009, 1011, 1610, 10888, 1177, 1898, 1915, 1938, 1959, 1961, 2070, 32368, 1894, 4039, 4094, 4493, + 91, 1984 + ], + [0, 3875, 6696, 6649, 6788, 6564, 2700, 6609, 2998, 6596, 2130, 6891], + [1, 2343, 22211], + [0, 22212, 22213, 22214, 2523], + [0, 32376, 32378], + [0, 32380, 32383, 32385, 2675, 2990, 3400, 1894, 1983, 1984, 1906], + [0, 2130, 3875, 27106, 10820], + [1, 2343, 22216], + [0, 22219, 22221, 22224, 2523], + "bump-regex", + "plugin-log", + [0, 1209, 3847, 1860, 2731, 2752, 3744, 97, 2609], + "versioning", + [ + 0, 4449, 1192, 2675, 89, 3875, 1177, 4039, 1503, 2924, 2126, 1894, 1610, 2700, 3824, 48, 1693, 4201, 53, 32392, + 2990, 3876, 4677, 1178, 1195, 32394, 87, 90, 1210, 1922, 1959, 10623, 3904, 1938, 32385, 32393, 1935, 1947, + 1898, 4676, 1961, 5535, 31393, 83, 61, 5240 + ], + "gulp-version", + [3, 2476, 11], + [0, 89, 6071, 2130, 3875, 3876, 3945, 1669, 4636], + [1, 2343, 22226], + [0, 22227, 22231, 22232, 2487], + [0, 1688], + "swap", + "cache-swap", + "object.pick", + [ + 0, 1175, 1203, 29775, 1267, 1429, 1503, 1177, 1879, 1938, 1947, 1959, 2665, 2675, 2899, 3421, 3875, 4039, 4042, + 4045, 4055, 4067, 4077, 4193 + ], + [0, 3875, 2942, 3946, 2663], + [1, 2343, 22234], + [0, 22235, 22236, 22237, 2399], + [0, 32408], + [0, 53, 83, 85, 87], + [0, 5284, 3875, 2663, 3947, 32416, 32418], + [1, 2343, 22239], + [0, 0, 22240, 22241, 2523], + [0, 1009, 1011, 1610, 1177, 1895, 1894, 3875, 4039, 4493, 91, 1984], + [0, 3875, 3949, 2663, 32425, 2130], + "file-e", + [1, 2343, 22247], + "xtension", + [2, 22242, 22244], + [2, 17355, 22245], + [0, 0, 22248, 22250, 2537], + [0, 4856, 6503, 4874, 1429, 1700, 32431, 2323, 32433, 32435, 2463, 2494, 32436, 2524, 2899, 91], + "changed", + [0, 4636, 6774, 5284, 19080], + "modified", + [1, 2343, 22256], + "modification", + "mtime", + "passthrough", + [0, 0, 22257, 22258, 4139], + [0, 1503, 2228, 2314, 2759, 14529, 3774, 4019], + [0, 1108, 6961, 5284, 3656, 1179, 4990], + [1, 2343, 22260], + [0, 0, 0, 22261, 2537], + [0, 5659, 7047, 1179, 1149], + [1, 2343, 22263], + [0, 22264, 0, 22265, 2487], + [0, 12396, 3971, 3978, 4549], + [0, 32452, 6892, 1936, 1644, 3729, 3958, 4141, 1646, 5341, 1633, 4549], + [1, 2343, 22267], + [0, 22268, 22269, 22270, 2523], + [0, 12396, 23247, 9401, 12421, 4549, 4555], + [0, 4874, 23262, 1414, 32460, 1894, 3958, 3985, 3998, 4505, 91, 1906], + [0, 4549, 3958, 32462, 1932, 156, 163, 1936], + [1, 2343, 22272], + [0, 22273, 22274, 22275, 2537], + [0, 12396, 23247, 12421, 32467, 4233, 4555], + [0, 4874, 23262, 1414, 1894, 3958, 3985, 3998, 4505, 91, 1906], + [0, 4549, 3958, 32462, 1932, 2587, 1936, 1783, 11052, 163, 1002], + [1, 2343, 22278], + "jshint-", + [0, 22281, 22282, 22283, 2443], + "reporter-jscs", + [2, 22277, 22279], + [0, 12396, 32481, 3137, 12127, 12133, 4549, 12447], + [0, 9311, 4874, 4880, 1414, 1177, 27706, 1947, 1959, 23312, 1894, 3985, 27711, 32484, 91], + [0, 2587, 1936, 1783, 9102, 3958, 32462, 4549], + [1, 2343, 22285], + [0, 22286, 0, 22287, 2523], + [0, 12396, 23276, 4549], + [0, 32452, 6892, 1936, 1644, 1932, 3958, 32462, 5341, 1633, 4549], + [1, 2343, 22289], + [0, 22290, 22297, 22298, 4139], + [0, 12396, 2572, 12449], + [3, 19569, 12], + "rework", + "rework-import", + "rework-", + "plugin-url", + [2, 22294, 22295], + [0, 4874, 1414, 1894, 3978, 3985, 3992, 3998, 3999, 4505, 91, 4549, 4555, 1906], + [0, 1936, 1932, 3972, 3958, 32462, 4549], + [1, 2343, 22300], + [0, 22301, 22302, 22305, 2537], + [0, 12396, 7610, 9401, 2584, 4555], + [0, 4874, 1414, 1894, 3958, 3985, 3998, 4505, 91, 1906], + "slush", + "dest", + [0, 156, 1936, 3265, 1932, 3958, 32462, 3974, 4549], + "conflict", + [1, 2343, 22308], + [0, 22309, 0, 22310, 2487], + [0, 12396, 2581, 4549], + [0, 32452, 6892, 7234, 1936, 1932, 3958, 32462, 4141, 1646, 5341, 1633, 4549], + [1, 2343, 22312], + [0, 22314, 22315, 22317, 2523], + "webserver", + [ + 0, 22353, 692, 29431, 1154, 15444, 1458, 7614, 9322, 2720, 32513, 3060, 3173, 29024, 3445, 3467, 6331, 20921, + 4135, 27921, 4548, 4566, 32514, 4748 + ], + [0, 442, 32523, 4874, 1177, 32525, 2203, 17529, 2931, 29442, 32519, 1894, 3985, 32522, 4390, 91], + "hyperlink", + [ + 0, 6147, 13729, 1528, 32528, 3358, 2195, 17978, 24095, 15656, 3378, 20001, 6645, 3979, 3980, 18157, 1508, 4166, + 10381, 4990, 15525, 4135, 1932 + ], + [1, 2343, 22319], + [0, 22320, 22321, 22322, 2537], + [0, 2759, 3181, 3544, 4227, 4431], + [0, 1177, 1881, 1938, 2228, 2323, 17121, 4039], + [0, 18444, 21779, 4227, 2759, 4504], + [1, 2343, 22325], + "csscomb", + [0, 22326, 0, 22327, 2537], + [0, 4549, 9363, 3992, 13124], + [0, 32452, 6892, 7234, 1783, 26564, 1644, 3729, 3984, 4141, 1646, 5341, 1633, 4549], + [1, 2343, 22329], + [0, 22330, 0, 22332, 2443], + [0, 5210, 32544, 3984, 32545], + "rcloader", + [0, 20052, 200, 1783, 26564, 3984, 4549], + [2, 21861, 2838], + [2, 15526, 2063], + [1, 2343, 22336], + [0, 22337, 22338, 22339, 2399], + [0, 9363, 27008, 27010, 3992, 13124, 4549], + [0, 4874, 1414, 32460, 1894, 3984, 3985, 3998, 4290, 18071, 4505, 91, 1906], + [0, 26072, 26766, 3987, 2195, 1783, 26564, 1932, 3984, 32553, 12994, 176, 9000, 4549], + [1, 2343, 22341], + [0, 22342, 22343, 22344, 2537], + [0, 9363, 2575, 3140, 2581, 4549], + [ + 0, 12396, 4874, 1414, 26992, 23276, 1894, 3985, 9340, 3988, 10630, 3992, 3998, 32560, 10632, 4505, 91, 12449, + 1906 + ], + [0, 7234, 1936, 1783, 26564, 1932, 3984, 32553, 1646, 4549], + [1, 2343, 22346], + [0, 22347, 22348, 22349, 34352], + [0, 12449, 4549, 9363, 32568, 12447, 32567], + [0, 1414, 1177, 3984, 1894, 3541, 3985, 91, 12396, 3999, 3978, 32484, 27706, 27711], + [0, 1745, 25131, 3990, 1932, 3984, 32553, 4549], + [1, 2343, 22351], + [0, 22352, 0, 22354, 2523], + [0, 9363, 3137, 26987, 4549], + "@nodeutils/defaults-deep", + [0, 32452, 6892, 1783, 26564, 1644, 1932, 3984, 32553, 5341, 1633, 4549], + [1, 2343, 22356], + [0, 22357, 22358, 22359, 34352], + [ + 0, 32582, 32584, 3988, 32587, 32591, 23059, 23065, 23070, 23075, 23078, 32593, 23080, 32595, 23082, 32599, + 32601, 32606, 32609, 23098, 32613, 23113, 32617, 32620, 32626, 32629, 32631, 32636, 23118, 32638, 32640, 32646, + 32651, 32654, 32656, 32658, 32664, 23128, 23133, 23136, 32667, 23139, 23141, 11382, 32668, 10632, 32669, 32672, + 4549 + ], + [0, 192, 5467, 1177, 1909, 2114, 2675, 2990, 1894, 3985, 1906], + [0, 2195, 16342, 3984], + "from2-string", + "@shi", + "nnn/eslint-config-node", + [2, 22361, 22362], + [1, 2343, 22366], + "warnings", + [0, 22367, 22368, 22369, 2537], + [ + 0, 32582, 3988, 10630, 23059, 23065, 23070, 23075, 29079, 23078, 29082, 32593, 23080, 32595, 23082, 32599, + 32601, 32606, 23092, 32609, 32681, 32686, 32689, 29091, 29097, 29100, 29132, 29143, 29147, 29149, 32613, 32692, + 23113, 32696, 32617, 32699, 32620, 32626, 32629, 32631, 32636, 23118, 32638, 32703, 29151, 32705, 32646, 32651, + 32707, 32710, 32654, 32656, 32658, 32715, 32717, 32664, 23128, 23133, 23136, 32667, 23139, 23141, 11382, 32668, + 13124, 10632, 23143, 32669, 32719, 4290, 4549 + ], + [0, 1894, 3985, 4505, 91, 1906], + [0, 16342, 3984, 3997], + "-match", + [2, 7534, 22370], + "flatnest", + [1, 2343, 22374], + [0, 22376, 22377, 22383, 4139], + "@type-challenges/utils", + [0, 12396, 9363, 3140, 4549, 12449], + [0, 4874, 1414, 1894, 3975, 3978, 3985, 3992, 3998, 13124, 4505, 91, 1906], + [2, 29833, 2658], + [2, 3101, 7131], + "to-a", + "bsolute-glob", + [2, 22380, 22381], + [0, 2587, 1936, 1783, 26564, 1932, 32462, 3958, 32553, 3984, 4549], + [1, 2343, 22385], + [0, 22386, 22387, 22388, 2487], + [0, 1139, 32732], + [0, 1111, 1317, 20627, 1177, 1926, 1999, 2398, 2600, 3127, 2899, 3421, 4042, 4058, 4067, 4073, 4146], + [0, 20627, 1783, 5980, 1644, 57, 3729, 4001, 8924, 3902, 2585], + [1, 2343, 22391], + "divide", + [0, 0, 14066, 22393, 2523], + "separate", + [0, 2323, 19101, 17996, 8297], + [1, 2343, 22395], + [0, 22396, 22397, 22398, 2537], + [0, 1437, 2070, 4747], + [0, 442, 1414, 1429, 1431, 1177, 2899], + [0, 4068, 2585, 16504, 2090], + [1, 2343, 22400], + [0, 22401, 22403, 22404, 2399], + [ + 0, 3763, 29749, 3348, 2051, 32749, 15057, 32751, 2139, 3173, 32753, 4100, 4454, 32754, 32756, 32757, 32758, + 32759, 21144, 3518, 2854 + ], + [2, 3715, 4001], + [ + 0, 3421, 4389, 2297, 32761, 4039, 1503, 1362, 4255, 1596, 32762, 19946, 1389, 1400, 14038, 2886, 4153, 2871, + 3524, 21146, 2906 + ], + [0, 27, 2869, 614, 6435], + "prettify", + [1, 2343, 22407], + [0, 22408, 22409, 22411, 2537], + [0, 1362, 4454, 32768, 32770], + [0, 1429, 2323, 1437, 1209, 4039, 705, 2463, 1364, 2384, 4089, 2436, 27608, 3753], + "jsftp", + [0, 4731, 27, 2671, 1862, 705, 21244, 32773, 1362], + "jsftp-mkdirp", + [1, 2343, 22415], + "ftp-test-server", + [0, 22416, 22417, 22418, 34352], + [0, 32770, 32768, 4454], + [0, 1364, 1429, 1437, 2323, 27608, 2384, 2436, 2463, 1209, 3753, 705, 4039, 4089], + [0, 4731, 27, 2671, 1862, 705, 21244, 32773, 970], + [1, 2343, 22421], + "gift", + [0, 0, 22423, 2514, 2399], + "wrap-promise", + [0, 4474, 91, 1506], + [1, 2343, 22429], + "octonode", + [3, 8304, 11], + [2, 15034, 22426], + [2, 22363, 1231], + [0, 0, 22431, 22432, 2537], + "branch", + [0, 6637], + [0, 3209, 4017, 32792], + [1, 2343, 22434], + [0, 0, 22441, 22442, 2523], + "any-", + [2, 5124, 1867], + [2, 22435, 22436], + [3, 21732, 13], + "eam", + [2, 22438, 22439], + [ + 0, 810, 972, 4870, 4880, 4883, 7749, 1009, 32801, 1011, 32804, 1177, 1959, 32805, 2832, 1209, 3057, 3145, 32807, + 32368, 1894, 89, 3824, 3876, 4039, 4167, 4493, 91, 1984 + ], + [0, 89, 3875], + "gulpgit", + [1, 2343, 22445], + [0, 0, 22446, 22447, 2537], + [0, 1178, 1597, 1177, 2765, 2766, 2297, 2881, 2895, 2898, 6387, 2910, 2915, 2921, 2923, 3734, 4042, 4075, 91], + [0, 32814, 24800, 31767, 614, 5576, 1388, 6422, 6805], + [3, 6530, 10], + [2, 22448, 4552], + [1, 2343, 22452], + "nid", + [0, 22453, 22454, 22455, 2399], + [0, 32820, 17501, 32824], + [0, 15221, 4384, 4449, 4389, 1796, 1177, 3188, 4039, 4135, 32826, 3410, 2708, 3433, 20492, 4103, 13614], + [0, 814, 3209, 202, 1237], + [1, 2343, 22457], + [0, 0, 8134, 22459, 2523], + "gulp-de", + [0, 3209, 814, 3403, 1237, 7115, 15403, 1204], + "gulp-declare", + [1, 2343, 22464], + "fine-module", + [2, 22458, 22462], + [0, 22467, 0, 22468, 2399], + "gulp-wrap", + "nsdeclare", + [0, 32836, 1573, 3008, 3561, 4227], + [0, 2924, 1194, 1623, 3374, 9345, 814, 1002, 2278, 10903, 2090], + [1, 2343, 22470], + [0, 22471, 22472, 22473, 2523], + [0, 32842, 8098, 2151, 2036, 2822, 32843, 3348], + [ + 0, 48, 53, 13693, 61, 71, 78, 13051, 85, 87, 97, 192, 6298, 6061, 6063, 1166, 1170, 1178, 1208, 1212, 1364, + 1429, 16311, 1596, 31058, 1687, 8942, 1177, 32848, 32850, 1938, 1948, 1951, 32852, 1954, 1958, 1964, 32855, + 1966, 1969, 1982, 2026, 32856, 2675, 2824, 2848, 3019, 2899, 3200, 32858, 3421, 4131, 32860, 4342, 32861 + ], + [0, 8623, 1118, 1179, 1745, 32864, 6533, 32867, 4030, 5592, 27], + [1, 2343, 22476], + "eventstream", + [0, 22477, 22478, 22479, 2537], + [ + 0, 3763, 1641, 32874, 3171, 3441, 3533, 710, 32876, 3348, 1209, 4135, 4591, 30107, 3084, 2141, 12627, 1147, + 20412, 32759, 32875, 15220, 32873 + ], + [ + 0, 3421, 3467, 1429, 2070, 2899, 4193, 1177, 3188, 4039, 2720, 2276, 1894, 1596, 1155, 32883, 20441, 3697, 3752, + 1745, 32881, 32878, 1942, 1895, 1955 + ], + [0, 8173, 5130, 2026, 32885], + [1, 2343, 22482], + [2, 11941, 1596], + [0, 22483, 9888, 2514, 2537], + [0, 3763, 4734, 4745, 2685], + [1, 2343, 22485], + [0, 22486, 22487, 22488, 4139], + [0, 21420, 4174], + [0, 4481, 1906], + [ + 0, 2021, 32896, 3729, 30135, 32897, 7226, 6689, 32899, 32900, 24601, 200, 13006, 1111, 15814, 6048, 7009, 7201, + 6621, 4166, 6876 + ], + "htm", + [1, 2343, 22491], + [0, 22492, 0, 22493, 4139], + [0, 1362], + [0, 18035, 32906, 32907, 32909], + [1, 2343, 22503], + "gulp-spawn", + [2, 22501, 33473], + "gulp-svg2ttf", + "2svgfont", + [2, 45, 22498], + [2, 2518, 22499], + [3, 29059, 12], + "gulp-ttf2eot", + [0, 0, 22506, 2514, 2523], + "gulp-ttf2woff", + [2, 22504, 1276], + [0, 21147, 2759, 4389], + "@types/gulp", + [1, 2343, 22513], + "metapak", + "-nfroidure", + [2, 22509, 22510], + "streamtest", + [0, 22514, 22515, 22516, 2523], + [0, 1177, 5896], + [0, 4874, 2025, 2899, 3421, 4474, 91], + [0, 7190, 14419, 3212, 1858, 1237, 2275, 1973, 27916, 3430, 21147, 3209], + [1, 2343, 22520], + "gulp-match", + "ternary-stream", + [0, 0, 22523, 22526, 2537], + "exhaust", + [2, 4279, 22521], + [0, 5898, 1503, 6618, 6786, 30025, 32925, 3028, 32927, 32930, 3776, 4255, 4384, 4481], + "if", + "ternary", + [ + 0, 3048, 7002, 3583, 1496, 1585, 1697, 6899, 6803, 3432, 6693, 3743, 7098, 6638, 6618, 7167, 2062, 6681, 6856, + 6986, 7035, 6648, 7284, 6786, 6670 + ], + [1, 2343, 22528], + [0, 22529, 22530, 22531, 2537], + [0, 2070, 21510], + [0, 4874, 3188, 1894, 4384, 4483, 4508], + [0, 6790, 7218, 6610, 7293, 7204, 200, 7074, 6899], + [1, 2343, 22533], + [0, 22534, 22535, 22537, 2537], + [0, 3263, 8248, 32944], + [0, 2765, 32942, 32947, 32949], + "gulp-gm", + [0, 32951, 27747, 29002, 8652, 12197, 158, 32952, 28125, 4041, 13008, 32954, 32956, 32959, 32961, 1473], + [1, 2343, 22539], + [0, 12881, 22540, 22541, 2537], + [ + 0, 16003, 32967, 16005, 16002, 16000, 15999, 442, 8998, 5012, 25130, 11536, 8862, 15134, 811, 8850, 816, 6373, + 10615, 10817, 10895, 32970, 6503, 4874, 20374, 5254, 21626, 21830, 1082, 32971, 15128, 1397, 1405, 1457, 1540, + 1593, 1610, 32972, 1859, 1866, 1177, 1895, 1955, 1982, 1988, 2116, 32973, 2151, 10754, 2203, 2675, 10898, 2990, + 10902, 3090, 3144, 2899, 3363, 22496, 3421, 5561, 3527, 3530, 32977, 1894, 3706, 3714, 3718, 4019, 4042, 4060, + 4135, 4172, 4174, 4227, 4232, 4376, 4072, 4484, 91, 4523, 1983, 4614, 188, 4630, 13151, 32979, 4748 + ], + [0, 5260, 6996, 6903, 5194, 6708], + [1, 2343, 22543], + [0, 22544, 22545, 22546, 2537], + [0, 5652, 4081], + [0, 53, 8229, 71, 83, 87, 1397, 1177, 1895, 1955, 2675, 2990, 2899, 1894, 4042, 4048, 4058, 4227, 4232], + [0, 4080, 1172, 6778, 5194], + [1, 2343, 22548], + [0, 22549, 22550, 2514, 2443], + [0, 1397, 4081], + [0, 1177, 2899, 4042], + [1, 2343, 22552], + [0, 22553, 22554, 22556, 2523], + [0, 32998, 4081], + [0, 15134, 1177, 2022, 2899, 3421, 4039, 4042, 33001, 33002], + "group-array", + [0, 4042, 4080, 5284, 5194, 5260, 4298, 33005, 4051], + "strip-color", + [3, 5467, 19], + [2, 22558, 1098], + [1, 2343, 22563], + [2, 5376, 591], + [3, 10705, 13], + [0, 22564, 22565, 2514, 2537], + [0, 2007, 10898, 3090, 814, 4081], + [ + 0, 53, 87, 94, 1082, 1177, 1938, 2675, 2990, 10902, 2899, 1894, 10904, 4042, 4045, 4058, 4067, 4172, 4227, 4232, + 91 + ], + [1, 2343, 22567], + [0, 22569, 22570, 22571, 2537], + "inline-css", + [0, 3090], + [0, 51, 19861, 33017, 1006, 4874, 4880, 1414, 4042, 91], + [0, 4080, 91, 4056, 1007], + [1, 2343, 22573], + [0, 22574, 22577, 2514, 2443], + [0, 4081], + "lodash.g", + [2, 22575, 19530], + [0, 1177, 1938, 2675, 2990, 2899, 1894, 4042, 4048, 4067, 4232], + [1, 2343, 22579], + [0, 22580, 22581, 22582, 2523], + [0, 33028, 20378, 1209, 3090, 3220, 33029, 33031, 33036], + [ + 0, 53, 87, 94, 5583, 811, 816, 8661, 1009, 1011, 1104, 1198, 1177, 1881, 1938, 2061, 2151, 29406, 2323, 33038, + 2441, 2765, 2766, 1894, 4039, 4042, 27720, 33042, 4449, 91 + ], + [0, 4042, 4080], + [2, 17487, 8162], + [2, 11941, 22583], + [1, 2343, 22586], + [0, 22587, 22589, 22591, 2487], + [0, 33048, 33051, 1618, 33052], + "isparta", + [0, 24235, 1676, 2899, 4042, 4045, 4066, 4146], + "unit test", + [0, 4080], + [1, 2343, 22593], + [0, 22594, 22597, 22591, 2487], + [0, 1082, 33051, 2007, 3090, 33052, 4081], + [2, 34675, 22596], + "-links-validator", + [0, 1175, 1264, 1389, 1192, 3188, 2899, 4039, 4042, 4045, 4067], + [1, 2343, 22599], + [0, 22600, 22603, 22604, 2523], + [0, 5251, 1405, 10912, 814, 4081], + [2, 4402, 16237], + [2, 2767, 22601], + [0, 53, 87, 94, 1856, 1177, 2899, 4042, 4045, 4055, 4058, 10916, 91], + [0, 4042, 4080, 6778, 3378, 5260], + [1, 2343, 22606], + [0, 22607, 22608, 22604, 34352], + [0, 3090, 4081], + [0, 1177, 1938, 2675, 2990, 10902, 2899, 1894, 4042, 4048, 4172, 4227, 91], + [1, 2343, 22610], + [0, 22611, 22612, 22613, 2399], + [0, 10895, 16799], + [0, 10817, 4874, 1009, 1011, 1177, 1895, 1955, 1192, 1894, 4039, 4042, 4468, 91], + [0, 4042, 4080, 12938, 4227, 33078], + [1, 2343, 22615], + [0, 22616, 22617, 22618, 2487], + [0, 51, 2805, 4143, 4072], + [0, 53, 1192, 1894, 4042], + [0, 4042, 4080, 4072, 3178], + [1, 2343, 22620], + [0, 22621, 22622, 22623, 2523], + [0, 814, 4081], + [0, 1397, 1177, 2899, 4039, 4042, 4048, 4055, 4484, 91], + [0, 4080, 91, 6778], + [1, 2343, 22625], + [0, 22626, 22627, 22628, 2537], + [0, 10895, 2102, 2151, 4135, 4484], + [ + 0, 11893, 811, 816, 33097, 4864, 33099, 5087, 4870, 4874, 8860, 5254, 1009, 1011, 1512, 1177, 33100, 1192, 1209, + 3429, 4039, 4042, 33101, 4076, 4468, 91 + ], + [0, 4076, 4075, 4080, 91, 6778, 4042, 3378], + [1, 2343, 22630], + [0, 22631, 22632, 22633, 2487], + [0, 51, 2805, 4143, 4535], + [0, 53, 87, 1193, 1192, 1894, 4042], + [0, 4042, 4080, 2280, 3178], + [1, 2343, 22635], + [0, 22636, 22637, 22641, 2537], + [0, 3445, 3530, 4227, 4747], + [ + 0, 811, 816, 10615, 10817, 5364, 33115, 33116, 33118, 33120, 33121, 33123, 4874, 20374, 4892, 1413, 1654, 14674, + 17086, 17091, 1655, 1660, 1701, 3400, 30889, 3561, 16578, 3698, 1894, 28865, 4042, 10854, 2278, 4484, 91, 1983, + 1984 + ], + "array-unique", + "gulplog", + "has-gulplog", + [0, 4080, 4078, 11996, 33126, 33127, 33129], + "capture-", + [2, 22642, 3101], + [1, 2343, 22645], + [0, 22646, 22647, 22648, 2523], + [0, 2007], + [0, 1006, 5087, 8778, 4874, 2675, 1192, 2990, 3170, 1894, 4042, 4055, 4067, 4075, 4172, 4468, 4487, 91, 19545], + [0, 4042, 594], + [2, 4599, 3101], + [1, 2343, 22652], + [2, 19984, 1276], + [0, 0, 22653, 2514, 2523], + [0, 1389], + [1, 2343, 22655], + [0, 22656, 22657, 22658, 2399], + [0, 33145, 8712, 1410, 1423, 2215, 3561, 4232, 4317, 33146, 1835, 4164], + [ + 0, 33152, 51, 53, 68, 5216, 61, 76, 14160, 78, 33153, 81, 5715, 4851, 5241, 83, 87, 90, 92, 97, 101, 104, 33156, + 33158, 33159, 33162, 8317, 8755, 554, 617, 33165, 33167, 33170, 33172, 33173, 13471, 8648, 842, 11534, 33174, + 33176, 33178, 19861, 10879, 33179, 24807, 31666, 5364, 33181, 7806, 33183, 11796, 11477, 21122, 5245, 33189, + 33191, 4865, 8780, 8264, 4870, 33193, 13057, 33195, 20374, 33197, 4880, 4883, 15606, 5254, 33198, 16149, 13214, + 23452, 11800, 9241, 20463, 13753, 1082, 33199, 31705, 1138, 1145, 1154, 33200, 20476, 1251, 15009, 1393, 1398, + 1413, 33202, 33204, 1525, 33206, 1536, 12084, 15015, 1560, 1562, 977, 1615, 1618, 11890, 16912, 16566, 1676, + 11478, 15018, 33208, 2018, 2105, 2145, 2070, 2553, 2659, 2661, 15022, 2674, 16837, 33209, 2689, 26453, 2755, + 2805, 2856, 2863, 20465, 33210, 3084, 3177, 3244, 3266, 33211, 23175, 3322, 3467, 15031, 6042, 3479, 3502, 3509, + 3530, 12344, 3605, 16840, 3638, 16841, 16842, 3672, 3676, 3678, 3688, 3729, 3757, 15033, 3784, 3878, 3957, 4111, + 4135, 710, 27062, 20508, 4165, 4227, 4230, 28512, 15039, 15040, 9221, 33212, 15042, 4294, 7080, 4390, 33213, + 4072, 4409, 4425, 15046, 15047, 11804, 33214, 614, 15048, 33215, 24739, 2924, 4729, 4763 + ], + [0, 89, 5130, 3287, 5122, 36, 202, 6400, 5995, 200, 4592], + [1, 2343, 22660], + [0, 0, 22661, 22662, 34352], + [ + 0, 14192, 1235, 14196, 14198, 19130, 14199, 14214, 14215, 14217, 1244, 1264, 19127, 18801, 18693, 1378, 1381, + 19119, 18686, 19123, 19122, 1825, 18825, 18829, 33223, 19121, 2899, 3736 + ], + [0, 19132, 6567], + [1, 2343, 22664], + [0, 22665, 22666, 22668, 2523], + [0, 25623, 3527, 3561, 4300], + [0, 1414, 2899, 4255], + "kew", + [0, 33231, 1623, 33232, 4086, 5130, 590, 1504, 26535, 6270, 353], + [1, 2343, 22670], + [0, 22671, 22672, 22673, 4139], + [0, 1437, 2061, 3544], + [0, 2323, 2899, 4170], + [0, 17461, 7170, 6769, 2323, 3468], + "treams", + [2, 6825, 22674], + "ng-annotate", + [1, 2343, 22678], + [0, 0, 22679, 22680, 2523], + [0, 1090, 4389], + [0, 22114, 1149, 3046, 7241, 14629, 18462, 4552, 33244], + [1, 2343, 22682], + [0, 0, 0, 22683, 2537], + [0, 33249, 33250, 7109, 20018, 7099, 7022], + "develop", + [1, 2343, 22686], + [0, 2513, 22688, 22689, 34352], + "restart", + [ + 0, 33256, 7, 842, 8712, 4856, 4870, 6503, 4874, 7749, 6513, 6512, 28198, 1009, 1011, 1257, 1429, 33258, 1473, + 1512, 1610, 1652, 33261, 1874, 1177, 24287, 2139, 2151, 2070, 16015, 2675, 13305, 2990, 1209, 3183, 2899, 3363, + 3400, 8967, 12344, 1894, 1862, 4042, 32414, 33263, 4067, 4167, 4172, 4193, 4196, 4232, 4376, 4474, 4487, 4490, + 33265, 33267, 33273, 91, 4585, 5573, 2924 + ], + [0, 7099, 7022, 6568, 7111, 7199, 7040, 7027, 6858, 6789, 6746], + [1, 2343, 22691], + [0, 0, 9264, 22692, 34352], + [0, 1398, 33283, 33284, 6953, 4100, 1965, 33287], + [1, 2343, 22697], + [3, 13337, 13], + [2, 6574, 22694], + "mac notification", + [0, 22698, 22700, 22701, 2537], + [0, 2708, 4135, 4747], + "notify-osd", + [0, 13614, 1158, 1159, 1796, 1177, 33293, 3421, 4389], + [0, 20001, 25816, 3378, 33295, 10381, 6953, 33297], + [1, 2343, 22703], + [0, 22707, 22708, 22709, 2537], + [3, 13107, 12], + [2, 22704, 2187], + [2, 14983, 22705], + [ + 0, 33304, 21995, 1149, 33307, 1437, 1525, 33312, 1536, 1544, 977, 1575, 1581, 29500, 1797, 2026, 2040, 33313, + 2070, 33315, 33316, 32959, 33319, 33322, 33324, 33325, 33327, 3183, 33328, 3494, 3509, 3547, 3741, 33329, 33332, + 33335, 4135, 4148, 4151, 33336, 33339, 4538, 4590, 33340 + ], + [ + 0, 1317, 1553, 1177, 2025, 2151, 33342, 2899, 3416, 3560, 33344, 33346, 33349, 33352, 33354, 33357, 4170, 4220, + 4342, 4449 + ], + [0, 33359, 33362, 2026, 33363, 33365, 8173, 8172, 3469, 4218], + [1, 2343, 22711], + [0, 22712, 22713, 22714, 2523], + [0, 33379], + [0, 4389, 1090, 33381, 1389, 1537], + [0, 2090, 1213, 33383, 2574, 2649, 1867], + "acorn-typescript", + "esrap", + [1, 2343, 22718], + [0, 22719, 22721, 22722, 4139], + [0, 1699, 1874, 2654, 2747, 33390, 3561], + "zimmerframe", + [0, 1177, 2899, 4193, 33395], + [0, 1936, 57, 18113, 2574], + [1, 2343, 22724], + [0, 22725, 0, 22730, 2523], + [0, 1457, 2700, 4228], + "ENV", + "ifdef", + "ifndef", + "echo", + [0, 590, 4329, 2278, 7121, 1623], + [1, 2343, 22732], + [0, 22733, 22734, 22736, 2523], + [0, 23175], + [ + 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 1369, 1610, 1622, 1628, 1700, 1701, 1835, 1177, 1895, 20281, 1938, + 1939, 1942, 1953, 1955, 1982, 2092, 33408, 2203, 2675, 1192, 2990, 33415, 3144, 3342, 33420, 3400, 1894, 2278, + 21688, 4135, 4257, 4307, 91, 4523, 2924, 4677, 4681 + ], + [2, 1876, 2282], + [0, 2278, 22022, 2924, 1194], + [1, 2343, 22738], + [0, 0, 22739, 2514, 4139], + [0, 1894, 4384], + [1, 2343, 22741], + [0, 22742, 22744, 22745, 34352], + [0, 33435], + "views", + [0, 33437, 1414, 33438, 1177, 1776], + [0, 2844, 1745], + "precompile", + [1, 2343, 22748], + [0, 22749, 22750, 13533, 2537], + [0, 1091, 1092, 12384, 8818], + [ + 0, 1700, 1192, 2675, 1177, 1701, 2203, 2924, 1894, 48, 442, 1193, 91, 53, 4874, 2990, 3400, 192, 1953, 27928, + 4257, 87, 1939, 1942, 1938, 20281, 1982, 1895, 1955, 19344, 5467 + ], + [1, 2343, 22752], + [0, 22754, 22755, 22756, 2523], + "src", + [0, 89, 3824, 3286], + [0, 91, 4874, 4880, 4883, 1165, 3561, 4383, 1177, 4828], + [ + 0, 33454, 33455, 2145, 12589, 1616, 33456, 12589, 5472, 20500, 33459, 1237, 33462, 33464, 12590, 33465, 27666, + 11996 + ], + [1, 2343, 22758], + [0, 22759, 0, 22760, 2523], + [0, 1821, 3299, 15160], + [0, 29395, 33471, 33472, 4126], + [1, 2343, 22763], + [2, 4068, 3101], + [0, 0, 0, 22764, 2537], + [0, 33477, 3778, 1616], + [1, 2343, 22766], + [0, 22767, 22768, 22773, 4139], + [0, 33482, 2866, 4449, 4729], + [ + 0, 442, 13838, 1177, 1895, 1951, 1953, 17303, 1955, 2026, 2203, 2564, 1776, 2899, 3200, 3246, 1894, 4150, 4193, + 4351 + ], + "modif", + "y-filename", + [2, 22769, 22770], + "rev-hash", + [0, 13428, 28522, 5472, 11132, 13841], + "rev-path", + "sort-", + "sort-keys", + [1, 2343, 22779], + "vinyl-file", + [0, 22780, 22786, 22787, 2523], + [ + 0, 16607, 33490, 6065, 16608, 16612, 33491, 1595, 1676, 33493, 2020, 2089, 33494, 2188, 33497, 22845, 2613, + 33499, 3021, 3127, 14774, 3170, 33500, 25873, 27168, 4025, 4135, 6554, 4747 + ], + "rev", + "revving", + "revision", + "expire", + "assets", + [ + 0, 4874, 6547, 1166, 1414, 1470, 1652, 1736, 33503, 2151, 2212, 2822, 3019, 19736, 33505, 3297, 3401, 33507, + 1894, 23535, 4193, 23730, 4400, 4421 + ], + [0, 18526, 13428, 13729, 1237, 3383, 20001, 3979, 4135, 15525], + [1, 2343, 22790], + "deserialization", + [0, 22792, 22793, 2514, 2537], + "deserialize", + [0, 97, 33513, 33515, 6372, 33519, 1497, 33520, 1209, 3021, 3744, 3847, 32225, 4163], + [ + 0, 33522, 48, 53, 61, 73, 76, 81, 83, 87, 90, 94, 33525, 9310, 33528, 33530, 10875, 4880, 1009, 1011, 8158, + 33532, 1178, 1195, 33537, 1208, 1210, 33541, 1251, 31600, 33543, 1429, 33545, 1582, 1610, 1651, 1676, 1719, + 1742, 19526, 1843, 1177, 1879, 1895, 4916, 1938, 1947, 1951, 1959, 1961, 2060, 2193, 2323, 2455, 2541, 2675, + 14708, 2297, 2881, 32762, 2886, 2900, 2904, 2925, 2975, 2990, 2899, 1894, 3725, 3758, 3786, 89, 33546, 33550, + 3822, 3824, 3836, 3843, 3884, 3885, 33552, 33553, 33556, 3904, 33558, 4039, 33560, 33562, 33564, 4193, 4196, + 4201, 4261, 33565, 4409, 33566, 4431, 91, 4597, 2924, 4676, 4677, 4679 + ], + [1, 2343, 22796], + "each-async", + [0, 22797, 22799, 22800, 2537], + [0, 1177, 1900, 1903, 33572, 1938, 1953, 1958, 1959, 33573], + "md5-hex", + [0, 17529, 1698, 3188, 4039, 4092, 4389], + [ + 0, 19309, 33576, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 2446, 2292, 2272, 671, 19315, + 19269, 33578, 2869, 4255, 19317, 590, 19318, 19320, 19273 + ], + "ruby", + [1, 2343, 22803], + [0, 0, 22805, 2514, 2523], + "@img/colour", + [0, 9516, 9515, 1317, 4384], + [1, 2343, 22807], + [0, 22808, 10377, 22809, 2537], + [0, 1676, 1833, 1869, 984, 2145, 2657, 3173, 3242, 3440, 3781, 4266], + [0, 2947, 2090, 36], + [1, 2343, 22811], + [0, 22812, 22814, 22815, 2523], + [ + 0, 22966, 8364, 33593, 33596, 33598, 33599, 22967, 19593, 3034, 3072, 3183, 22451, 22968, 33602, 33603, 3763, + 33605, 28440, 33606 + ], + "sftp", + [ + 0, 8357, 8359, 33608, 4874, 1149, 4440, 1596, 17402, 2036, 33612, 21082, 1894, 33615, 33618, 28664, 33620, + 25649, 91 + ], + [0, 3166, 11100, 27662, 33624, 14584, 33625, 14586, 14587, 33626, 5130, 33627, 33628, 17757, 6081, 33629], + [1, 2343, 22817], + [0, 0, 22818, 22824, 2443], + [0, 33634, 1149, 1317, 1177, 3210, 4384], + "@types/fa", + "ncy-log", + [2, 22819, 22820], + [3, 12459, 15], + [2, 22822, 5229], + [0, 4137, 19748, 33636, 28277], + [1, 2343, 22826], + [0, 22827, 22828, 22830, 2523], + [0, 33646, 3348, 1676, 33641, 1209, 3220, 4135, 1155, 2712, 5245, 33643, 33645, 3222, 14334, 33642, 25624], + [ + 0, 3519, 3421, 1429, 1082, 1702, 33653, 2675, 2899, 3478, 4193, 1177, 33663, 3260, 4039, 1448, 668, 33669, + 33673, 4246, 25635, 25633, 33674, 1587, 1610, 2071, 33672, 3480, 33675, 32842, 2152, 4196, 91, 4856, 4874, 2024, + 2990, 6503, 6513, 29283, 692, 4870, 33652, 33682, 33649, 192, 1431, 33668, 3125, 4131, 17370, 4232, 1942, 1951, + 33662, 1011, 33660, 22559, 1009, 33655, 33681 + ], + "brotli-size", + [ + 0, 3259, 33669, 7827, 14873, 25638, 3519, 3243, 33684, 33663, 14872, 25633, 26472, 33685, 3469, 6710, 33690, + 18035, 1747 + ], + [1, 2343, 22833], + "measure", + [0, 0, 22834, 22835, 2537], + [0, 1317], + [0, 4141, 7050, 5284, 676, 1781], + [1, 2343, 22846], + "@gulp-sourcemaps/identity-map", + [3, 22837, 17], + [2, 22844, 36113], + "map-sources", + [2, 22838, 22840], + "-fabulous", + [2, 1676, 22842], + "@vitest/e", + "hook-std", + [0, 22849, 2667, 22851, 2487], + "@codspeed/vitest-plugin", + "mississippi", + [0, 1676, 33735, 33702, 33705, 33725, 33727, 33713, 33723, 33714, 33710, 33734, 33729, 33722, 33718], + "source maps", + [ + 0, 33737, 33738, 33739, 33740, 33741, 28794, 2811, 33742, 33744, 33745, 25003, 33746, 33748, 4144, 4145, 33749, + 33750, 3101, 6621, 33751 + ], + [1, 2343, 22853], + [0, 22854, 22855, 22858, 2537], + [0, 1091, 1138, 1371, 1437, 1494, 1536, 33757, 33758, 13834, 16064, 33761], + [0, 2212, 4494, 4493, 2675, 1177, 1984, 1894, 91, 2990, 107, 7806, 33765, 7677, 33768], + "device", + "strip-debug", + [0, 4592, 4146, 3166, 2665], + [1, 2343, 22861], + "client-hints", + [0, 22862, 22864, 22865, 2487], + [0, 984, 2145, 3242, 3494, 4100], + "accord", + [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342, 33775], + [0, 2026, 33777, 2663], + [1, 2343, 22867], + [0, 22868, 22869, 2514, 2443], + [0, 1080, 6870, 1676, 1869, 2657, 3173, 3494], + [0, 1087, 1177, 1948, 2899, 3421, 4342], + [1, 2343, 22876], + "looks-same", + "svg2png", + "@cpplint/cli", + "rwd", + "retina", + [0, 22877, 9025, 2514, 2523], + [0, 1833, 1869, 3494, 710], + [1, 2343, 22879], + [0, 22880, 22881, 22882, 2537], + [0, 33798, 3171, 3181], + [ + 0, 192, 5467, 33801, 33803, 1168, 1429, 1431, 1527, 1177, 1895, 2151, 2675, 2990, 3073, 13824, 2899, 3310, 3421, + 1894, 3752, 33804, 4193, 4196, 4390 + ], + [0, 33804, 33807, 13573, 7200, 33808, 6997, 33811, 6949, 5351, 4967, 33813], + [2, 33888, 22889], + [1, 2343, 22885], + [0, 22886, 22887, 22888, 2523], + [ + 0, 33819, 33821, 33823, 33824, 7709, 33826, 33827, 33828, 27792, 33831, 13559, 33836, 33838, 33840, 29749, 1367, + 10785, 33841, 13566, 33843, 3445, 17009, 4729 + ], + [ + 0, 33846, 9167, 33848, 5087, 4874, 7819, 9241, 1009, 1011, 33838, 13566, 668, 33850, 1177, 1895, 19527, 1915, + 1938, 1955, 2675, 1192, 33851, 33852, 33854, 33857, 2845, 3381, 1894, 13569, 4257, 4468, 4474, 1531, 91, 3348 + ], + [0, 12, 7200, 5472, 1192, 33804, 4158, 1984, 13573, 6930, 6808, 7308, 33822], + "arm64", + [1, 2343, 22891], + [0, 22892, 0, 2514, 2537], + [0, 26956, 6641], + [1, 2343, 22895], + "rendering", + [0, 0, 22896, 22897, 2443], + [0, 1178, 1264, 1280, 1429, 1177, 2126, 33869, 2675, 2990, 2899, 1894], + [0, 4163, 4161, 4162, 26287, 3797, 33871], + [1, 2343, 22899], + [0, 22901, 22903, 22904, 2537], + [3, 18435, 14], + [0, 4135, 22804, 20584], + "incremental", + [0, 20762, 4481, 33891, 4391, 640, 33894, 2057, 22873, 11976, 3299, 33877, 2829, 33882, 33890, 33884, 33887, 22883], + [0, 21881, 18048, 12349, 12350, 23995, 20639, 8221, 20701, 33896, 158, 24800, 33897, 12712, 26490, 33898, 33899], + [1, 2343, 22906], + [0, 0, 22907, 22910, 2523], + [0, 13614, 1159, 9254, 1177, 2011, 2708, 2762, 3410, 3421, 4103, 4389], + [3, 15893, 12], + [2, 22908, 1512], + [0, 1523, 1644, 7336, 4166], + [1, 2343, 22912], + [0, 22913, 22914, 22915, 2537], + [0, 2020, 2071], + [0, 1166, 1437, 1506, 1177, 1881, 1938, 2822, 3421, 33910, 33912, 4172, 33916], + [0, 4167, 16159, 28984, 4166, 33918, 7048, 2763, 31360], + "@types/plu", + [1, 2343, 22921], + "gin-error", + [2, 22916, 22918], + "gulp-diff", + [0, 22922, 22925, 22926, 4139], + [0, 3266], + " compilation", + [2, 22902, 22923], + [0, 1429, 2228, 2899, 1839, 2240, 26399, 4436, 2305, 34238, 22000, 2236, 2300, 3006, 2253, 2273, 2281, 5535], + [0, 5843, 4439, 3265, 3348, 33927, 33928, 33929, 4169, 33930], + [1, 2343, 22928], + [0, 22929, 22931, 22934, 2537], + [0, 33936, 33937, 33938, 33941, 33942], + "array-each", + [0, 1362, 1177, 33945, 2899, 1894, 4042, 4067, 4487, 91], + "error-cause", + [2, 3094, 22932], + [0, 1973, 5982, 1145, 4170], + [3, 16647, 18], + "se-extend-native", + [2, 22935, 22936], + "list-map", + [2, 4601, 22938], + [1, 2343, 22942], + "tape-catch", + [0, 5621, 22943, 22944, 2537], + [0, 2228, 2247, 2253, 2273, 2281, 2285, 2290, 33953, 2291, 2316, 2832, 3006, 3518, 33954, 4135, 33955, 4232], + [0, 1783, 15253], + [1, 2343, 22947], + "uncss", + [0, 22948, 22949, 22950, 4139], + [0, 3183, 4167], + [0, 1173, 1264, 1280, 1177, 1881, 19527, 1938, 2822, 2899, 3421, 4039, 33910, 33963, 33912, 4170], + [0, 4167, 4166, 28984, 16159, 16160, 2978, 200, 8636], + [1, 2343, 22952], + [0, 0, 22953, 22954, 34352], + [0, 21122, 4874, 24162, 13680, 1414, 1894, 4384, 4474, 4508, 91], + [0, 6553, 2021], + [1, 2343, 22956], + [0, 22957, 22958, 22960, 2523], + [0, 1097], + [0, 2553, 3714, 4042, 4048, 4535], + "useref", + [0, 7521, 5224, 26514, 1424], + "async-once", + "gulp-dest", + [2, 3204, 22962], + [1, 2343, 22965], + [0, 22969, 22976, 22977, 4139], + "@hapi/joi", + "jsonic", + "optioner", + [0, 33986, 33989, 1676], + "array-differ", + "array-uniq", + "beeper", + "_reescape", + [2, 3024, 22973], + [3, 22974, 11], + [0, 33992, 33997, 5245, 5087, 4874, 668, 29154, 1192, 4474, 91], + [0, 3358, 34000, 30983], + "valuate", + [2, 22975, 22978], + "lodash._re", + [1, 2343, 22984], + "interpolate", + [2, 22980, 22982], + [0, 0, 22986, 22987, 2523], + [2, 3067, 6937], + [ + 0, 4481, 1192, 2675, 3534, 1177, 4039, 4042, 1894, 1610, 1193, 53, 5087, 1540, 34009, 3720, 97, 107, 87, 1926, + 34015, 68, 5583, 4073, 6373, 34019, 811, 816, 5522, 34013, 1201, 81 + ], + [0, 11615, 16114, 27968, 13527, 5130, 89, 1098, 188, 38, 14584, 4967], + [1, 2343, 22994], + "@test-runner/core", + "yazl", + [2, 22996, 32078, 6624], + "qpass", + "yazul", + [0, 22995, 22998, 22999, 2537], + [0, 11124, 826, 34034, 1687, 4351], + [3, 22989, 13], + [2, 22996, 23000], + [ + 0, 53, 11126, 11130, 11133, 11134, 34040, 28537, 34041, 1208, 1676, 1705, 668, 27502, 26739, 2185, 2990, 2899, + 3421, 1894, 3758, 4039, 4135, 4167 + ], + [0, 4193, 1973, 5472, 2275, 13106, 4158, 21147, 6901, 34044, 3212, 4731, 1145], + "live-view", + [2, 22996, 23003], + [1, 2343, 23005], + "oneline-view", + [2, 22996, 16316], + [0, 0, 23006, 23007, 34352], + [0, 442, 1414, 1429, 1177, 2899, 1894, 4193], + [0, 1429, 15385, 1388, 34050, 34053, 4193, 5472, 17051, 17052, 17050], + [1, 2343, 23010], + [2, 13857, 2663], + [0, 23011, 23012, 23013, 2523], + [ + 0, 9153, 6327, 1149, 1409, 34066, 34065, 3188, 4135, 16358, 2026, 2822, 705, 1866, 1525, 3181, 2861, 2036, 1364, + 1536, 2657, 2600, 34060, 34062, 3923, 34064 + ], + [0, 2899, 1362, 1389, 34068], + [0, 7223, 3383, 18157, 29179, 5260, 2658, 36], + [1, 2343, 23015], + [0, 23016, 0, 2514, 2487], + [0, 34076, 11480, 34078], + [2, 4598, 3426], + [1, 2343, 23019], + [0, 23020, 0, 23021, 2443], + [0, 34085, 2984, 34086, 3527, 27921], + [0, 4201, 200, 1999, 6681, 34088, 34090], + [1, 2343, 23023], + [0, 16583, 11580, 23027, 2523], + "smith", + [2, 3521, 23024], + "pngparse", + [0, 34096, 34098, 34099, 5995, 4967, 17758], + [1, 2343, 23029], + [0, 23030, 23031, 23032, 2399], + [0, 22992, 34105], + [0, 2924, 4469, 91, 4677, 23319, 4676], + [0, 5995, 34107, 5592, 33804, 18035], + [1, 2343, 23035], + "compressed", + [0, 0, 8134, 23036, 2523], + [0, 3403, 34116, 4207, 28978, 6574, 6270], + [1, 2343, 23038], + [0, 23039, 23042, 23044, 2537], + [0, 1110, 34121], + "catering", + "deglob", + [0, 1166, 1437, 34125, 4294, 1906], + "find-file-up", + [ + 0, 6913, 1871, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 6621, 1867, 6983, 6616, 7244, 4166, 4744, 3073, + 6807, 6876, 2585 + ], + "find-githost", + "link-re", + [1, 2343, 23067], + "ferences", + [2, 23046, 23048], + [2, 1163, 23049], + [2, 3986, 23050], + "remark-c", + [2, 15, 14994], + [2, 23052, 23053], + [3, 13240, 12], + "quote-", + [2, 23056, 17537], + [2, 1359, 23057], + [2, 23055, 23058], + "box-", + "-style", + [2, 6843, 23061], + [2, 23060, 23062], + [2, 4354, 23063], + [2, 23055, 23064], + [3, 23065, 22], + [0, 23068, 13640, 23072, 2537], + [0, 22437, 1455, 12918, 34132, 34134, 25377, 34136, 3275, 3518, 34137, 3718, 3730, 34139, 1241, 4747], + "ontent-indent", + [2, 23066, 23069], + [3, 23065, 13], + [0, 34141, 4796, 22832, 3378, 1161], + "block-style", + [2, 16080, 23073], + [2, 23071, 23074], + [3, 7900, 10], + [2, 23076, 15319], + [2, 23055, 23077], + "emphasis-marker", + [2, 23055, 23079], + "fenced-code-marker", + [2, 23055, 23081], + [3, 23082, 13], + "inal-newline", + [2, 23083, 23084], + "hard-", + [1, 2343, 23088], + [0, 0, 23089, 23106, 2523], + [0, 12310, 6061, 6063, 5476, 1414, 2899, 4131, 4255], + "break-spaces", + [2, 23086, 23090], + [2, 23055, 23091], + "-bullet-indent", + [2, 5401, 23093], + [2, 15794, 23094], + [2, 23055, 23095], + [3, 23096, 22], + [2, 23097, 8958], + [3, 13240, 15], + [2, 17793, 17825], + [2, 9344, 23100], + [2, 1160, 23101], + [2, 23099, 23102], + [3, 23058, 11], + "without-", + [0, 4213, 3974, 1871, 4577, 22188, 3656, 1002], + "marker", + [2, 23105, 23107], + [2, 23104, 23108], + [2, 23099, 23109], + "duplicate-", + [2, 23111, 7900], + [2, 23099, 23112], + "-cont", + "ent-indent", + [2, 23114, 23115], + [2, 156, 23116], + [2, 23099, 23117], + "padding", + [2, 16569, 23119], + [2, 23099, 23120], + "literal-urls", + [2, 23099, 23122], + [3, 13240, 17], + "used-definitions", + [2, 23124, 23125], + "rule-style", + [2, 23055, 23127], + [1, 2343, 23130], + [0, 0, 23131, 23146, 2537], + [0, 1596, 34154, 2899, 3421], + "strong-marker", + [2, 23055, 23132], + "cell-padding", + [2, 16065, 23134], + [2, 23055, 23135], + [3, 23136, 18], + "pipes", + [2, 23137, 23138], + "unordered-list-marker-style", + [2, 23055, 23140], + [2, 4586, 3966], + [2, 3986, 23142], + "unified-", + [2, 23144, 16284], + [0, 4213, 3974, 1002, 34156], + [1, 2343, 23150], + "-shiny", + [2, 18004, 23148], + [0, 7936, 7938, 7939, 2443], + "pull-", + [1, 2343, 23153], + [0, 23156, 0, 23157, 2537], + "pull-or-clone", + [2, 10617, 23154], + [0, 1437, 2713, 3183, 3923, 34167, 4294, 4425], + [0, 3721, 34170, 34172, 4255, 34174, 25264, 34177, 34179, 34181, 34182], + "fixer", + [1, 2343, 23160], + [0, 23161, 23162, 23170, 2523], + [0, 1170, 34189, 1676, 2131, 2141, 2188, 1209, 4113, 4296, 15502, 34190], + [ + 0, 442, 5245, 7810, 4870, 4874, 34194, 15507, 1364, 1512, 1687, 1742, 1792, 1177, 2026, 2099, 2070, 2899, 3421, + 1894, 3923, 4135, 4151, 4170, 4193, 4232, 25609, 4508, 91, 4523 + ], + [2, 13729, 18200], + "git-tags", + [2, 2264, 2907], + [2, 8961, 2499], + [2, 2312, 23166], + "jquery-", + [2, 23168, 2555], + [0, 4217], + [1, 2343, 23172], + [0, 23173, 0, 23174, 2537], + [0, 1080, 34200, 1594, 1676, 12777, 34201, 9247], + [0, 20863, 5130, 4699, 21405, 2018, 21302, 11444], + "neo-async", + [1, 2343, 23179], + "chai-diff", + [2, 2264, 4019], + [0, 23180, 0, 23181, 2537], + [0, 34208, 1676, 12779, 9247], + [0, 20863, 5130, 4699, 21405, 2018, 5576], + [1, 2343, 23183], + [0, 23186, 23191, 23194, 2537], + "ammo", + "heavy", + [0, 1676, 34226, 26137, 2713, 4567], + "bounce", + "catbox", + "somever", + "subtext", + [ + 0, 1389, 1839, 1177, 2025, 2323, 2409, 2494, 2496, 2510, 2530, 2297, 2871, 2876, 2881, 2900, 2899, 3752, 3756, + 4151, 34228, 4599, 4603 + ], + "statehood", + [2, 23188, 8329], + [0, 14609, 4699], + [1, 2343, 23197], + "vision", + [0, 0, 23198, 2514, 4139], + [0, 1414, 1742, 1177, 1894, 1895], + [1, 2343, 23200], + [0, 0, 23202, 2514, 2487], + "webidl-conversions", + [0, 34238, 1742, 2924], + "@vitest/ui", + [1, 2343, 23206], + "@webref/css", + [0, 23207, 23208, 13533, 2487], + [0, 2685, 4228], + [ + 0, 48, 53, 87, 192, 5467, 16405, 1193, 1610, 1622, 1700, 1701, 1177, 1895, 1938, 2675, 1192, 2990, 3144, 3400, + 1894, 4257, 2924 + ], + [1, 2343, 23210], + [0, 23211, 23212, 2514, 2537], + [0, 16136, 4227], + [0, 1389, 1509, 2665, 2899, 2924], + [1, 2343, 23214], + [0, 0, 23215, 23216, 2523], + [0, 4874, 1414, 1894, 3985, 3998, 4505, 91, 1906], + [0, 965, 1936, 17540, 34254, 11590, 1644, 1646], + [1, 2343, 23218], + [0, 23219, 23220, 23221, 4139], + [ + 0, 34270, 34266, 5526, 5528, 5529, 1448, 1509, 1525, 2071, 2215, 2220, 34264, 2228, 2247, 2253, 2256, 2258, + 2263, 2281, 2283, 2308, 2036, 2600, 2654, 2820, 2822, 34269, 2856, 1209, 3127, 34261, 3561, 2278, 4373, 4449 + ], + [ + 0, 48, 53, 87, 94, 10737, 34272, 1429, 1431, 6522, 1177, 1951, 1954, 1970, 2899, 3363, 1894, 4037, 4039, 4193, + 4196 + ], + [0, 2220, 1739, 1745, 34276, 34279, 5592, 9381, 1179], + [1, 2343, 23223], + [0, 23226, 23227, 2514, 4139], + "own-property-symbols", + [2, 2183, 23224], + [0, 4430], + [0, 2012, 19987, 19988, 19989, 34294], + [1, 2343, 23229], + [0, 0, 23230, 2514, 2523], + [0, 34300, 34301, 30025, 3421, 3697, 4255, 4389], + [1, 2343, 23232], + [0, 0, 9888, 2514, 2523], + [1, 2343, 23234], + [0, 0, 23235, 2514, 2537], + [0, 2323, 2899, 1177, 1317, 2463, 2384, 2409, 2494, 2530, 34312, 2510], + "@ljharb/", + [2, 23236, 2190], + [3, 19784, 15], + [2, 23238, 14037], + [3, 6541, 12], + [2, 23240, 3205], + [1, 2343, 23243], + [0, 23244, 23259, 23263, 2523], + [ + 0, 1362, 1473, 1512, 1636, 2151, 2036, 34317, 8691, 1209, 3367, 17997, 34318, 22519, 4431, 4597, 4600, 34319, + 34321 + ], + [2, 8727, 591], + [2, 10306, 5472], + "@ungap/structured-clone", + "from-parse5", + [2, 2573, 23248], + [2, 2580, 3493], + "html-v", + "oid-elements", + [2, 23251, 23252], + [2, 9406, 8193], + [3, 75, 9], + "namespaces", + [2, 5925, 23256], + "zwitch", + [0, 1429, 1596, 2759, 2899, 3202, 34324, 34326], + [3, 9315, 9], + "gap__structured-clone", + [2, 23260, 23261], + [0, 22055, 22074, 34328, 1623, 4329, 695, 2278, 4245, 34331, 17461], + "remark-api", + [1, 2343, 23268], + "unist", + [3, 2572, 9], + [0, 23269, 23270, 23271, 2537], + [0, 1326, 3299, 32944, 4390], + [0, 1177, 2899, 32942], + [0, 14872, 7827, 4246, 18035], + [1, 2343, 23280], + "aria-", + [2, 23273, 2618], + [3, 23249, 15], + [2, 23275, 1936], + "html-tag", + "-names", + [2, 23277, 23278], + [0, 23281, 23282, 23283, 2523], + [0, 34342, 34345], + [0, 1177, 15234], + [0, 21000, 4247, 22813, 18112, 4166, 2978, 21004, 5576], + [1, 2343, 23285], + [0, 23290, 23294, 23295, 2399], + "bcp-47-match", + "-separated-tokens", + [2, 14186, 23287], + "devlop", + [0, 21505], + "direction", + [2, 2573, 3661], + "not", + [0, 9516, 9515, 1317], + [0, 12616, 5122, 1965, 34354, 26965, 27081, 34355, 34356, 34357, 34359, 34360, 1936], + "selectall", + [1, 2343, 23298], + [0, 23299, 21592, 23300, 34352], + [0, 4745], + [ + 0, 4249, 1781, 4745, 17307, 25611, 1747, 7141, 7789, 166, 1721, 18035, 1745, 5995, 1550, 3230, 2109, 3259, 4246, + 6523, 20832, 25638, 1781, 3053, 34366 + ], + "attach-comments", + [2, 12413, 23301], + "is-i", + "dent", + "ifier-name", + [2, 23304, 23305], + [2, 23303, 23306], + [2, 12413, 23307], + [3, 6451, 11], + [2, 12127, 23309], + [3, 23310, 15], + [2, 23311, 1219], + "js-esm", + [2, 12127, 23313], + [1, 2343, 23317], + "esast-util-from-js", + [0, 0, 23318, 2514, 2443], + [0, 87, 1193, 1192, 34373], + "basic-node-server", + [1, 2343, 23321], + [0, 23323, 23325, 23326, 2487], + "ccount", + [0, 1177, 1903, 33572, 1938, 1953, 1958, 1959, 33573, 34380], + "tostring", + [0, 1615, 2554, 3183, 34383, 4092, 12823, 4389], + [ + 0, 19309, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 2446, 2292, 2272, 671, 19315, 19269, 2869, + 4255, 19317, 590, 19318, 19320, 19273 + ], + [1, 2343, 23328], + [0, 23329, 23331, 23333, 2523], + [0, 1437, 1566, 34392, 1570, 25901, 1707, 20949, 34393, 2089, 2105, 31174, 4135, 28154, 4747], + "sval", + [0, 1429, 1177, 1903, 1938, 1954, 1958, 2899, 3203, 3215, 3421, 4167, 34395], + "solid", + [0, 1566, 4945, 13729, 13728, 6976, 15525, 1098, 4255], + [1, 2343, 23335], + [0, 23337, 23338, 23341, 2537], + "wcswidth", + [0, 1138, 1362, 17045, 1676, 2020, 17034, 10756, 28519], + [ + 0, 4874, 34405, 1429, 1610, 1705, 34407, 34408, 34409, 2212, 2848, 8163, 3183, 2899, 34410, 26230, 4131, 34413, + 4193, 4196, 20382, 4255 + ], + [2, 23340, 93], + "@swc-node/", + [0, 15656, 12804, 36, 6587, 1973, 6435, 6703], + [3, 9407, 13], + "nd-after", + [2, 23342, 23343], + "exsolve", + [1, 2343, 23347], + [0, 23348, 23349, 23350, 2523], + [0, 34423, 27073, 2175, 34421], + [0, 1241, 2276, 4545], + [0, 4264, 34426, 34427, 34429, 20863], + [2, 13721, 3585], + [2, 2573, 23351], + [1, 2343, 23357], + "build-", + "build-jsx", + [2, 12413, 23355], + [0, 0, 23358, 23360, 2523], + [0, 1645, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 3784, 22449], + "svg-tag-names", + [0, 27, 6622, 1501], + "vdom", + "hyperscript", + "@glen/jest-raw-loader", + [1, 2343, 23365], + [0, 23366, 23367, 23368, 2537], + [0, 4729, 3445, 3930, 4135, 668, 37080, 36874, 7384, 26870, 5545, 968, 974], + [ + 0, 1797, 4763, 1429, 1687, 2070, 2807, 4200, 2020, 2975, 3144, 23802, 89, 4207, 20573, 2205, 3266, 3411, 28853, + 668, 23345, 2161, 2822, 6042, 814, 4448, 24324, 3555, 1894, 29318, 9241, 1420, 1525, 4788, 3530, 28863, 3824, + 11143, 4507, 33215, 4726, 9741, 16485, 30414, 3527, 4227, 4294, 91, 53, 17577, 4874, 1615, 1710, 29514, 104, + 14552, 30157, 11196, 58, 29515, 5254, 37084, 1707, 37491, 15245, 35349, 8646, 7931, 7948, 7637, 7812, 26380, + 15906, 36119, 8506, 30253, 32284, 4480, 101, 370, 15600, 30254, 30260, 30262, 24759, 5216, 30464, 20374, 30283, + 3885, 33523, 1582, 37017, 21122, 30913, 9329, 30284, 33228, 33534, 33538, 30300, 30313, 12837, 4300, 30321, + 30375, 31673, 30398, 966, 25114, 37449, 28465, 30406, 7943, 972, 33554, 33526, 8714, 19592, 9011, 30387, 3749, + 30453, 30454, 30467, 12315, 30468, 30470, 30471 + ], + [0, 4270, 4627, 4963, 23245, 23246, 89, 3286, 23803, 3857, 5123, 188, 1098, 3709, 5167, 5926], + [1, 2343, 23370], + [0, 23371, 23372, 23373, 4139], + [0, 2664], + [ + 0, 23363, 10825, 10827, 10828, 28147, 34473, 34475, 11011, 10837, 10840, 29877, 968, 972, 5087, 11292, 4880, + 1177, 34480, 1192, 11347, 2780, 1894, 3744, 3758, 89, 3824, 2278, 4111, 4270, 4468, 91, 4705, 4745 + ], + [0, 6718, 4270, 34484, 4963, 1745, 4967, 34485, 21043, 34491, 34493, 34494, 3416], + [1, 2343, 23377], + "regexgen", + "sort-object", + [0, 23378, 0, 5269, 2523], + [ + 0, 7, 53, 87, 6316, 6318, 1437, 1448, 1457, 1512, 1525, 1595, 6323, 2061, 34500, 2151, 2070, 2036, 2626, 2681, + 17449, 2856, 1209, 3079, 6326, 6327, 3127, 3183, 6330, 6331, 29899, 6332, 4135, 100, 4473, 3348 + ], + [1, 2343, 23380], + [0, 8856, 7938, 7939, 2443], + [1, 2343, 23382], + [0, 14754, 23383, 23384, 2523], + [0, 34508, 34510, 2899, 4170], + [0, 34513, 3101], + [1, 2343, 23386], + [0, 0, 23393, 23394, 2537], + [3, 5429, 9], + [2, 23387, 19315], + [2, 1561, 23388], + "origin-embedder-policy", + [2, 1611, 23390], + [3, 23391, 13], + [0, 816, 6503, 4874, 1642, 1794, 2899, 2966, 1894, 4042, 4064, 4066, 4170, 4474, 4494, 91], + [0, 3101, 353, 1641, 3048, 5995, 4967], + "-policy", + [2, 3456, 23395], + [2, 23392, 23396], + [3, 5974, 9], + [2, 23398, 19315], + [2, 23392, 23399], + "origin-", + "-cluster", + [2, 4575, 23402], + [2, 23401, 23403], + "refer", + "rer-policy", + [2, 23405, 23406], + "-security", + [2, 4714, 23408], + [2, 14104, 23409], + "x-content-type-options", + "x-dns-prefetch-control", + "x-download-options", + "x-frame-options", + "x-permitted-cross-domain-policies", + "x-powered-by", + "x-xss-protection", + [1, 2343, 23419], + [0, 23420, 11580, 23421, 2523], + [0, 17835, 692, 17754, 2129, 2760, 34524, 13291], + [0, 34527, 34528, 5995], + [3, 17494, 14], + [2, 23422, 965], + [1, 2343, 23425], + [0, 0, 0, 23426, 34352], + [0, 4283, 1671, 1871, 6901, 1666], + [1, 2343, 23428], + [0, 0, 23429, 23430, 2537], + [0, 2323, 2346, 2463, 2494, 34537, 2530, 28539, 4535], + [ + 0, 1871, 16116, 34540, 34541, 34542, 591, 1641, 1936, 18089, 1644, 1936, 2640, 4301, 6678, 10368, 15103, 1867, + 23615 + ], + [1, 2343, 23437], + "abbrev", + "archy", + "hexo-cli", + "hexo-", + [2, 23435, 2149], + [0, 23442, 23447, 23457, 2537], + "hexo-fs", + "hexo-i18n", + "hexo-log", + "hexo-util", + [0, 5139, 34547, 2626, 3021, 34551, 34553, 34556], + "-js-types", + [2, 2822, 23443], + "titlecase", + "warehouse", + [0, 34559, 34560, 17913], + "0x", + "bbrev", + [2, 9165, 23449], + "xt-table", + [2, 13419, 23451], + [2, 1884, 2596], + [3, 1778, 9], + [2, 23454, 3127], + [2, 23435, 23455], + [0, 1501, 7682, 7115, 1936, 34562, 34563, 7293, 22392, 4285, 1871, 4301, 2640, 17950, 2585, 34564], + [1, 2343, 23459], + [0, 23460, 8134, 23461, 2537], + [0, 34569, 4294], + [ + 0, 1871, 6843, 3656, 4289, 7062, 6922, 6981, 6701, 6581, 16041, 23336, 6700, 1111, 1867, 5281, 200, 6876, 7009, + 7201, 6575, 6611, 6795, 6960, 7135, 7230 + ], + [2, 11177, 17514], + [1, 2343, 23467], + "grunt-g", + "h-pages", + [2, 23464, 23465], + [0, 23468, 23472, 23473, 2523], + [0, 34576, 34578], + "scrawl", + "ducers-js", + [2, 4713, 23470], + [0, 4874, 1414, 26854, 1894, 3985, 3998, 4505, 91, 1906], + [0, 1646, 10368, 1867, 1936, 6843, 11043, 18944, 18089], + [1, 2343, 23475], + [0, 23477, 20489, 23481, 2537], + [2, 5058, 23278], + [0, 1109], + "freeze-es6", + [2, 1683, 23478], + [2, 5313, 14056], + [ + 0, 4301, 6678, 7293, 1111, 592, 1473, 7208, 1512, 7009, 7201, 1871, 6621, 1867, 6983, 6616, 7244, 4166, 4744, + 3073, 6807, 6876, 2585 + ], + "tiny-worker", + "wcag-contrast", + [1, 2343, 23485], + [0, 0, 8134, 23486, 2537], + [0, 4301, 4295, 1412, 4327, 3126, 3656, 4577, 22188, 7293, 6865, 6678, 2585, 1871], + [1, 2343, 23488], + [0, 0, 23489, 23490, 2537], + [0, 1166, 3130, 4481, 1906], + [0, 1781, 4301, 4298, 7293, 6865, 6678, 16112, 1644, 1541, 8309, 6937, 614, 1263, 6639, 19632], + [1, 2343, 23492], + [0, 0, 23493, 23494, 2537], + [ + 0, 3421, 1429, 3297, 2899, 1177, 4474, 1894, 3310, 91, 4856, 4874, 6503, 23496, 1431, 1938, 3200, 1895, 1955, + 9417, 1011, 10419, 1009 + ], + [0, 4302, 34601, 34602, 5592], + [1, 2343, 23497], + "undici-types", + [0, 23498, 23499, 23500, 2523], + [ + 0, 1149, 1676, 34607, 34610, 3324, 34612, 3368, 3460, 3917, 34613, 34615, 34616, 34619, 34622, 30142, 34625, + 34626, 34629, 4707, 2861, 1401, 34631, 1653, 2592, 2713, 695, 1209, 3081, 26443, 7305, 34421, 3220, 3923, 23975, + 4246, 34634, 26423, 34636, 34637, 34639, 29456, 4729 + ], + [0, 1177, 2292, 4384], + [ + 0, 9649, 34642, 29319, 34643, 26473, 34644, 13538, 4575, 13539, 6147, 6374, 24093, 1541, 4796, 20997, 20999, + 34647, 2134, 3358, 27318, 34650, 6807, 26474, 10057, 25202, 3151, 13499, 27838, 34651, 3378, 34652, 34653, + 26931, 6681, 2306, 3729, 15267, 28413, 29179, 5508, 8791, 11100, 34654, 34656, 7046, 34613, 34657, 34660, 30142, + 34629, 4303, 34661, 4345, 17184, 6901, 34662 + ], + [1, 2343, 23502], + [0, 23503, 23504, 23505, 2537], + [0, 34667, 34668, 34669, 34670, 1437, 1443, 13827, 1525, 2745, 2856, 34671, 1894, 4443], + [ + 0, 34673, 34676, 107, 192, 5467, 34677, 34679, 8661, 34680, 4856, 4874, 11438, 7819, 1011, 5476, 34681, 5478, + 1082, 34683, 1429, 1177, 1951, 1959, 2007, 2151, 34684, 2675, 34686, 2829, 34689, 695, 2990, 34690, 26564, + 25131, 2899, 21290, 3400, 5561, 2278, 4135, 4164, 22595, 4333, 91, 4555, 3348, 4745 + ], + [0, 34693, 590, 34692, 1623, 4964, 11590, 2278, 4329, 13339, 34694, 89, 5133, 25172], + [1, 2343, 23507], + [0, 0, 23508, 13533, 2537], + [ + 0, 1192, 2278, 2675, 2832, 3144, 1622, 1177, 4135, 1701, 2924, 1854, 1894, 1610, 48, 1193, 1628, 53, 2092, 2990, + 3400, 4111, 4677, 192, 4257, 87, 4681, 1938, 1895, 2780, 5467, 16405 + ], + "step", + [1, 2343, 23511], + [0, 23512, 23513, 23514, 2523], + [0, 4311], + [ + 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 5087, 1009, 1011, 1177, 1955, 10964, 2203, 2675, 1192, 2990, + 1894, 4042, 4468, 4474, 91 + ], + [0, 4309, 1623, 590, 5284, 3048, 23578], + [1, 2343, 23516], + [0, 23517, 23518, 23519, 2487], + [0, 2718], + [ + 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 10817, 5087, 4874, 1009, 1011, 1177, 1955, 10964, 2203, 2675, + 1192, 2990, 3400, 1894, 23535, 4042, 4468, 4474, 4484, 91 + ], + [0, 4311, 134, 590, 57, 1623, 3048, 23578], + "hap-nodejs", + [1, 2343, 23524], + "-newlines", + [2, 1938, 23522], + [0, 23525, 23526, 23527, 2443], + [0, 7943, 13037, 34715, 34718, 1639, 3561, 4163, 7917, 4484], + [ + 0, 53, 5652, 8229, 61, 78, 5240, 87, 90, 92, 10817, 966, 968, 972, 974, 4863, 5087, 34720, 4874, 4880, 4883, + 34722, 5091, 4889, 5055, 1193, 1198, 20479, 14065, 6375, 1192, 2780, 26503, 2802, 2820, 1894, 3744, 89, 3824, + 34725, 3857, 3904, 4042, 4055, 4058, 4067, 4069, 4071, 4073, 34727, 34730, 91 + ], + [0, 89, 1623, 7165, 4315, 7297], + "@hono/eslint-config", + "@hono/", + "node-server", + [2, 23529, 23530], + [1, 2343, 23533], + [0, 23534, 23540, 23541, 2443], + [0, 33204], + "publint", + "ly-js-compute", + [2, 2062, 23536], + [2, 4609, 23537], + "wrangler", + [ + 0, 48, 53, 78, 4851, 5743, 5241, 83, 87, 90, 94, 97, 104, 4880, 1166, 7913, 34737, 1573, 1177, 1895, 2675, 3008, + 1894, 3720, 89, 3824, 4131, 4227, 33212, 7917, 34741, 91 + ], + [0, 7913, 4592, 34743, 7165, 1623], + "cloudflare", + "workers", + "fastly", + "compute", + [1, 2343, 23547], + [0, 23548, 20974, 23549, 2399], + [0, 1393, 3681], + [0, 2887, 1623, 34749, 4318, 16918, 3561, 6425, 4319], + [1, 2343, 23551], + [0, 23552, 23553, 23554, 2487], + [ + 0, 205, 30928, 208, 213, 30577, 220, 22371, 30299, 1595, 1627, 1634, 1676, 2071, 29067, 16783, 14564, 2205, + 34755, 2641, 2687, 5210, 19187, 2747, 2932, 34757, 3157, 3170, 3369, 3527, 3561, 3676, 3681, 3688, 4290, 15887, + 34762, 176, 4728 + ], + [ + 0, 107, 34765, 11893, 34768, 34770, 34773, 16934, 5245, 16787, 34775, 34776, 34778, 8778, 16398, 34780, 19800, + 34785, 22092, 1317, 1532, 1699, 1177, 34787, 1938, 1939, 2675, 1192, 34791, 2802, 2990, 11357, 3400, 5561, 3606, + 3613, 30479, 34793, 3678, 1894, 3985, 4337, 91 + ], + [0, 7165, 1623, 695, 671, 9654, 1783, 2278, 4329, 4320, 4337], + [1, 2343, 23556], + [0, 23557, 23565, 23566, 34352], + [0, 4946], + "hopper-adventure", + [2, 12087, 23558], + "svelte2tsx", + "workshop", + "adventure", + "tutorial", + "tutor", + [0, 34768, 34770, 1177, 34787, 2675, 2990, 3400, 1894, 3985, 4320], + [0, 4320, 34801, 4255], + [1, 2343, 23568], + [0, 0, 23569, 23570, 2523], + [ + 0, 3421, 1192, 2675, 3534, 1742, 1177, 1503, 4508, 1894, 34810, 1610, 4320, 48, 1193, 34809, 11918, 91, 53, + 13693, 2990, 3165, 94, 192, 4131, 87, 34806, 1939, 1978, 1938, 6063, 34791, 21120, 1895, 1955, 4514, 92, 1011, + 6061, 5467, 1883, 1009, 5766, 13052, 61, 78 + ], + [0, 7846, 4320, 1623, 4329, 695, 671, 34818, 6884, 3046, 34819, 1473, 34820], + "big-lib", + [2, 8131, 23571], + [2, 7635, 23575], + "karma-co", + "codeshift", + "@jasminejs/reporters", + [1, 2343, 23579], + "pojo", + [0, 23580, 23581, 23582, 2537], + [0, 3561, 34826], + [0, 1177, 34829, 1895, 2203, 2675, 1192, 30912, 34791, 2802, 2990, 3606, 30479, 34832, 1894, 34835, 4320], + [0, 7846, 4320, 1623, 671, 4327], + [1, 2343, 23585], + [3, 2618, 9], + [0, 23586, 23587, 23588, 2537], + [0, 1634, 2747, 2932, 3141, 34842, 34760, 3681, 3688], + [0, 1532, 1610, 1177, 34847, 2675, 1192, 34791, 2990, 3377, 3561, 30479, 3678, 1894, 4320], + [0, 1623, 21861, 671, 9654, 4329, 4320, 7846], + [1, 2343, 23590], + [0, 23592, 14818, 23593, 2487], + "@domenic/eslint-config", + [0, 63, 1676, 2070, 4113, 4227], + [0, 1623, 57, 590, 22561, 2437, 1351], + [1, 2343, 23595], + [0, 23596, 23599, 23609, 2487], + [0, 2071, 3369], + [3, 9127, 9], + "flowgen", + [ + 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 1317, 34860, 1610, 1622, 1628, 1700, 1701, 1177, 1895, 20281, 1938, + 1939, 1942, 1953, 1955, 1982, 2203, 2675, 1192, 2990, 3144, 3291, 3400, 1894, 3786, 4257, 4307, 4333, 4523, 2924 + ], + " entities", + [2, 1936, 23600], + " encode", + [2, 23601, 23602], + [3, 23603, 14], + [2, 23604, 15103], + [2, 18089, 23602], + "entities ", + [2, 23607, 15103], + [0, 2924, 1194, 4333], + [1, 2343, 23611], + [0, 0, 0, 23612, 2443], + [0, 1623, 3561, 30775, 5341, 8958, 57], + "ascjs", + [1, 2343, 23616], + "unescape", + [0, 23617, 23618, 23619, 2523], + [0, 1533, 34877, 1676, 33596, 2139, 2141, 3164, 3171, 3763], + [ + 0, 48, 53, 83, 87, 97, 192, 5467, 1290, 16750, 27731, 1364, 1389, 1575, 1610, 1177, 1909, 1924, 1954, 2026, + 2040, 2114, 2182, 2675, 2990, 3127, 2899, 3246, 3421, 3985, 3995, 4039, 4170, 34879, 34881, 1906, 4770 + ], + [ + 0, 4575, 6662, 6662, 5592, 1149, 7003, 1170, 12618, 5576, 34883, 2212, 27, 27, 2671, 21668, 1862, 1862, 6567, + 705, 705, 21666, 5508, 4030, 1153, 4340, 4339, 17481, 353, 4731, 4738 + ], + [1, 2343, 23624], + [2, 9374, 12349], + "-unicode", + [2, 23615, 23622], + [0, 23625, 23626, 2514, 2487], + [0, 25910], + [0, 5245, 27847, 4874, 1317, 25212, 3230, 21180, 91, 1984], + [1, 2343, 23628], + [0, 23629, 23630, 23632, 2523], + [0, 3164, 4339, 1581], + [0, 3421, 3297, 2899, 4193, 1177, 4170, 2026, 3752, 1364, 1575, 192, 1938, 1881, 5467], + "relateurl", + [0, 5982, 27, 705, 4339, 6969, 1973, 5472], + [1, 2343, 23636], + "compressor", + "packer", + [0, 23638, 23639, 23640, 2537], + "uglifier", + [0, 1362, 3164], + [0, 1429, 1431, 4037, 4706, 1364, 1575, 2026, 2899, 4170], + [0, 4342, 4339, 705, 6969, 5982, 27, 1973, 5472, 1862, 34901], + "detect-europe-js", + [1, 2343, 23650], + "alpinejs", + [3, 19403, 11], + "config-no", + "n-conventional", + [2, 23645, 23646], + [2, 23644, 23647], + [3, 10854, 16], + [0, 0, 23653, 23654, 2523], + "lyfill-node", + [2, 23649, 23651], + [0, 1906, 1166, 4481, 4874], + [ + 0, 1473, 7208, 1512, 7009, 7201, 200, 1111, 592, 6621, 6616, 7244, 4166, 4744, 6876, 4231, 25986, 34915, 13735, + 13030, 34916 + ], + [1, 2343, 23656], + [0, 23657, 23658, 23661, 2487], + [0, 31292, 5012, 23826, 1006, 1082, 11869, 19639, 1497, 11478, 11479, 22716, 10898, 10902, 3090, 22720], + [0, 5180, 8648, 811, 816, 10615, 8661, 11868, 4874, 11486, 668, 4042, 4227, 27921, 91, 1984], + [2, 23660, 23663], + "browser-d", + [0, 3709, 27751, 5130, 5354, 17950], + [1, 2343, 23665], + "etection", + "device-detection", + [0, 23666, 23669, 23671, 2537], + [0, 5180, 1457, 20378, 3527, 11481], + "os-detection", + "bot-detection", + [0, 811, 8850, 816, 6373, 10817, 34939, 1405, 4042, 4052, 8849, 3709, 91, 34940, 34942, 27702, 27703, 23560, 34945], + "void", + [0, 3709, 200], + [1, 2343, 23673], + [0, 0, 23675, 23676, 2537], + "self-closing", + [ + 0, 53, 87, 192, 5467, 34951, 34953, 10879, 4874, 34955, 19802, 1165, 13662, 1509, 1567, 1177, 695, 3561, 34958, + 3616, 1894, 3754, 2278, 4333, 4337, 3709, 91, 1984 + ], + [0, 3709, 4358, 91, 695, 4333, 2278, 4329, 3754, 1509], + [1, 2343, 23678], + [0, 23690, 23692, 23693, 2537], + "@bubkoo/commitlint-config", + "@bubkoo/", + [2, 23680, 7625], + [2, 12612, 1541], + [2, 23680, 23682], + [3, 21388, 20], + [2, 23684, 16171], + [2, 23680, 23685], + [2, 23680, 2190], + "asmine", + [2, 5086, 23688], + [0, 16858, 2070, 4361, 1149, 25232, 4597, 4739, 4747, 2822, 4709, 3257, 34967, 3060, 18993, 10780, 34966, 13839], + "capture", + [0, 1906, 1192, 695, 2278, 3549, 4333, 3536, 1939, 1942, 34971, 19812], + [ + 0, 1017, 45, 8221, 18048, 22074, 22075, 2873, 1179, 1623, 2278, 695, 4333, 5376, 134, 1936, 13814, 22874, 22875, + 3257, 17461 + ], + [1, 2343, 23695], + [0, 23697, 23698, 23700, 2537], + "@selderee/plugin-htmlparser2", + [0, 1525, 1632, 1634, 9378, 16858, 3527, 4113], + [ + 0, 442, 11893, 811, 816, 10615, 16934, 16854, 5087, 4874, 34194, 7752, 1610, 1177, 2203, 1192, 3536, 3541, 3549, + 1894, 4039, 4042, 4393, 4481, 91 + ], + "selderee", + [0, 4361, 8221, 6707, 3178], + [1, 2343, 23702], + [0, 23703, 23704, 23710, 2537], + [0, 1700, 3067, 34984, 4533], + [0, 1166, 1173, 1178, 1257, 29224, 1272, 1280, 1362, 1177, 34989, 3150, 3188, 4193, 2924], + "@html-", + "/stylish", + [2, 2649, 23706], + [2, 23705, 23707], + "@sidvind/better-ajv-errors", + [0, 2924, 1932, 34991, 34984, 11100, 6812], + [2, 23712, 23], + [3, 16579, 15], + [1, 2343, 23714], + [0, 23715, 23716, 23717, 4139], + [0, 1082, 1699, 2070, 2856], + [0, 1177, 1894, 4389, 34997], + [0, 8124, 34999, 7701, 20120, 1745, 4363, 1163, 13728, 1179, 8623, 20121, 20123, 20124, 3452], + [1, 2343, 23719], + [0, 23724, 23727, 23728, 2537], + "theme-one-dark", + "@json2csv/plainjs", + [2, 6019, 3888], + [2, 27733, 23725], + [0, 2205, 2822, 1525, 35011, 35008], + "-2", + "renderjson-2", + [0, 1177, 1984, 1894, 7677, 35013], + [0, 8124, 1739, 35015, 1745, 5592, 134, 4298], + "uffers", + [2, 15038, 23729], + [1, 2343, 23732], + [0, 0, 23733, 23734, 2537], + [0, 4874, 91], + [0, 8168, 8124, 181, 4369, 2026, 1745, 1739, 35021, 12659, 4367, 699, 35024, 35026], + [1, 2343, 23737], + [2, 11085, 2634], + [0, 23743, 23744, 23745, 2537], + "pug-loader", + "recomp", + "ilation-simulator", + [2, 23739, 23740], + [2, 4670, 23741], + [0, 5971], + [0, 1866, 2026, 35036, 2899, 3421, 3758], + [0, 8124, 2026, 181, 1781, 1745], + [1, 2343, 23747], + [0, 23748, 23749, 23752, 2487], + [0, 4535, 3460], + [0, 1209, 2026, 35046, 2899, 2025, 35047, 695, 35048, 1330, 35051, 3521, 1389, 2090, 1776], + "@aminya/babel-plugin-replace-import-extension", + "lateurl", + [0, 1283, 17950, 1936, 21043, 35053, 16277, 2026, 1359], + [2, 31806, 31807], + "srcset", + "swiperjs", + [3, 9376, 10], + [2, 23756, 6424], + "postproc", + "cessor", + [2, 23758, 23759], + [1, 2343, 34505], + [0, 4372, 35058, 31512, 4453, 12295, 5131, 1591, 3525, 1896, 5130, 35059, 32054, 35060, 1932, 89, 188, 35062], + [1, 2343, 23764], + [0, 23765, 23766, 23768, 2537], + [0, 35068, 35071, 35072], + [0, 1364, 1610, 2026, 35074, 1192, 3237, 4039, 91], + "rss", + [0, 705, 27, 2671, 2325, 1389, 31360, 15001], + "tributejs", + [1, 2343, 34522], + [ + 0, 35081, 35082, 3233, 27838, 888, 6667, 31937, 6574, 35084, 35085, 35086, 35087, 35088, 35089, 35092, 26467, + 35093, 7734, 35095, 3151, 6771, 35096, 35097, 35099, 35100, 11996, 35102, 35105, 35106, 35107, 35108, 35109, + 35110, 35111, 35112, 17878, 35115, 35117, 11812, 35119, 35122, 10798, 5876, 12340, 35125, 25028, 35126, 35128, + 35129, 35131, 35133, 35134, 24079, 5995, 33741, 35135, 35136 + ], + [1, 2343, 23773], + [0, 0, 23774, 2514, 2537], + [ + 0, 3445, 2929, 2899, 3188, 4039, 4042, 4072, 1362, 3310, 35146, 20463, 4705, 4232, 8850, 4073, 6373, 35141, 816, + 35145 + ], + "toidentifier", + [1, 2343, 23777], + [0, 23778, 23779, 23780, 2537], + [ + 0, 4729, 1091, 1594, 35154, 35155, 35156, 35157, 1209, 3237, 35158, 35159, 35161, 35162, 2026, 35163, 35164, + 35166, 35168, 35169, 1154, 1364, 1536, 1562, 35171, 1130, 97, 35173 + ], + [0, 3278, 1096, 35175, 35176, 4167, 35178, 1532, 35179], + [0, 35181, 35182], + [1, 2343, 23784], + "s-port", + [2, 3209, 23782], + [0, 0, 23786, 23787, 34352], + "sse", + [ + 0, 12473, 4484, 1177, 2205, 4042, 1984, 1894, 91, 53, 4874, 87, 4057, 4523, 7677, 5583, 1938, 11899, 22839, + 22847, 10817, 816, 24621, 5660 + ], + [0, 4383, 4380, 1623, 5256, 35189, 35191, 1698, 22306, 35193], + [1, 2343, 23789], + [0, 0, 23790, 2514, 2537], + [0, 1680, 4874, 16860, 3090, 4228, 23956, 31292], + "agent-base", + [1, 2343, 23793], + [0, 23794, 0, 23795, 2399], + [ + 0, 35205, 35206, 35209, 35212, 35213, 35214, 35216, 35217, 35220, 35221, 35222, 35226, 35227, 35228, 35230, + 35232, 35233, 35235, 35236, 35237 + ], + [0, 1145, 4384, 1973, 5472, 5130, 200, 35239, 35240], + [1, 2343, 23797], + [0, 23798, 23799, 23801, 34352], + [0, 1437, 1792, 2089, 1209, 3718, 26840, 35245, 4431], + [0, 35247], + "mockttp", + [0, 4389, 4384, 2899, 4386, 16237], + "polka", + "next.js", + [1, 2343, 23805], + [0, 0, 23806, 2514, 2487], + [0, 1192, 1177, 2203, 1894, 442, 1193, 53, 1953, 27928, 87, 1939, 1938, 20281, 1982, 1895, 1955, 19344], + [1, 2343, 23812], + "union", + "corser", + "secure-", + [2, 23810, 3797], + [0, 23817, 23819, 23820, 34352], + "eol", + [3, 1895, 15], + "opulist", + [2, 23814, 23815], + [ + 0, 35260, 35263, 35264, 1417, 1693, 15016, 35265, 2133, 2179, 2070, 35266, 2571, 2713, 17403, 3183, 3206, 3431, + 13635, 3433, 3435, 814, 18997 + ], + [2, 15021, 36], + [ + 0, 13614, 1143, 1159, 1537, 1610, 1796, 35268, 9254, 1855, 1177, 14738, 2762, 2822, 35271, 3410, 3421, 4103, + 4135, 4384, 20496 + ], + [0, 4384, 1973, 35273, 1145, 1388], + [1, 2343, 23822], + [0, 23823, 23824, 2514, 2523], + [0, 35279, 35280, 21505, 29174, 35278], + [0, 4384, 3297, 4483, 35282, 4039, 4508, 1894, 29169, 4874, 1834, 35285], + [1, 2343, 23827], + [2, 836, 22715], + [0, 23830, 23833, 23834, 2523], + [3, 7639, 16], + [2, 23828, 176], + [0, 3756, 4393], + "HttpStatus", + [2, 27, 5576], + [0, 4039, 35291, 4255], + [0, 4390, 2150, 2090, 18158, 7204, 3101], + [1, 2343, 23836], + [0, 23838, 23839, 2514, 2487], + "mediation", + [0, 35297, 35299, 35298], + [0, 35291, 4255, 1537], + [1, 2343, 23841], + [0, 2513, 23844, 23845, 2487], + "-retry", + [2, 7737, 23842], + [0, 15288, 15594, 5087, 4874, 1009, 1011, 1596, 668, 1177, 1903, 1938, 1954, 1958, 1192, 1894, 4468, 91], + [0, 35306, 6346, 35307, 35308, 4967, 35310, 5995, 35312, 27448, 14629], + [1, 2343, 23847], + [0, 0, 23848, 23849, 2537], + [ + 0, 15288, 5367, 5371, 6494, 15594, 5087, 4874, 9240, 1009, 1011, 1364, 1527, 1652, 35317, 1177, 1903, 1938, + 1954, 1958, 2675, 1192, 2990, 3363, 5362, 1894, 4342, 4468, 91 + ], + [0, 35306, 6346, 35307, 35308, 5995, 35312, 15001, 2026], + [1, 2343, 23851], + [0, 23852, 0, 23853, 4139], + [0, 1676, 3299, 15160], + [0, 32859, 35324, 35327, 35328, 35329, 1326, 35330, 5995], + [1, 2343, 23855], + [0, 23856, 23857, 23858, 4139], + [0, 1676, 3299], + [0, 442, 6373, 5245, 4874, 20584, 1759, 1177, 1895, 1966, 1982, 640, 1894, 4508, 4514, 91, 4523, 1983, 26744, 1984], + [0, 32859, 35328, 4398, 202, 5995], + "anity", + [2, 1901, 23859], + [1, 2343, 23863], + [3, 2677, 9], + [0, 23864, 7923, 23865, 2523], + [0, 4039, 3188], + [0, 21770, 4449, 1241, 35342, 16330, 29615, 35343], + [1, 2343, 23867], + [0, 23871, 23873, 23880, 2537], + "singular", + "plural", + "camelize", + [0, 2753, 13786, 4507, 35349], + "dasherize", + [0, 4874, 1166, 3505, 4453, 4481, 1906], + "demodulize", + "ordinalize", + "uncountable", + "singularize", + "titleize", + "tableize", + [0, 1241, 21770, 3403, 2090, 7204, 6857, 16330, 35342, 29615, 35343, 3778, 17023], + "classify", + [1, 2343, 23884], + "foreign_key", + [0, 23885, 0, 23886, 34352], + [0, 26925, 35364, 35359, 35367, 35358, 35365, 35363, 35356], + [ + 0, 7009, 7201, 1111, 200, 4744, 1473, 35369, 35371, 590, 6847, 35373, 29002, 35374, 13006, 4403, 1478, 15955, + 35375, 35376, 35377, 32312, 158, 18048, 21881, 20639 + ], + [1, 2343, 23889], + "@messageformat/core", + [0, 23890, 0, 23892, 2443], + [0, 35382, 15019, 2713, 35259, 4431, 35383], + "fast-printf", + [0, 4403, 7009, 1111, 35385, 35386], + [1, 2343, 23898], + "make-plural", + "val-parser", + [2, 9433, 23895], + [2, 18108, 23896], + [0, 23899, 23900, 23902, 2487], + [0, 35392, 1082, 1525, 4232], + [0, 35394, 35395, 1177, 19210, 1999, 2899, 3697, 4042, 4135, 4227], + [2, 23927, 23929], + [0, 2280, 4072, 4533, 4535, 3178, 2632, 5284, 5286, 1925, 5194, 6598, 7075, 6778, 7056, 7192, 1149, 7003], + [1, 2343, 23935], + [3, 5702, 15], + "-function", + "-functions", + [2, 23904, 23906], + [2, 69, 23907], + "gh-release", + "i18next-", + [2, 1351, 18691], + [2, 13843, 23911], + [2, 23910, 23912], + "fs-backend", + [2, 23910, 23914], + [2, 2655, 5995], + [2, 23910, 23916], + "storage-", + [2, 23918, 2325], + [2, 2703, 23919], + [2, 23910, 23920], + "sprintf-", + [3, 10810, 11], + [2, 23923, 7120], + [2, 23922, 23924], + [2, 23910, 23925], + [3, 6021, 10], + "interna", + "ease", + "alization", + [2, 3855, 23930], + [2, 23928, 23931], + [2, 2703, 8840], + [2, 2202, 8840], + [0, 23937, 23938, 23939, 2523], + "gettext", + [0, 4072, 2805, 4121, 4143, 5180], + [ + 0, 1700, 1192, 2675, 3144, 1622, 1177, 1701, 668, 2924, 1894, 842, 1610, 4535, 48, 442, 91, 53, 4874, 2092, + 2990, 3400, 4677, 28639, 192, 1953, 27928, 35403, 4257, 87, 4523, 1939, 1584, 1942, 1938, 20281, 1982, 1895, + 1955, 19344, 16400, 5467 + ], + [0, 2280, 4535, 4533, 4072, 2924, 1464, 14137, 15215, 23634, 2262, 14137, 2632, 3178, 6707, 6708], + [1, 2343, 23941], + [0, 23943, 23944, 23945, 2537], + "gridly", + [0, 22989, 22991, 22997, 23001, 23004, 1519, 1522, 25190, 2071, 26553, 17798], + [0, 2829, 3310], + [0, 1187, 1973, 8791, 200, 2275, 5472, 4990, 4389, 4384, 1166, 2899], + [1, 2343, 23947], + [0, 23949, 23951, 23953, 2443], + "safer-buffer", + [0, 1362, 1437, 2070, 1209, 3127, 3188, 35417, 35419], + "errto", + [ + 0, 19181, 442, 12312, 13414, 4865, 4870, 4874, 6513, 1009, 1011, 7677, 1703, 1177, 15555, 35422, 4193, 35425, + 35426, 4493, 4494, 91, 35428, 1984 + ], + "unorm", + [0, 1783, 1973, 2275, 29352, 1745, 1739], + [1, 2343, 23955], + [0, 23957, 23961, 23962, 2537], + [2, 8293, 23958], + [ + 0, 53, 71, 81, 5717, 5749, 5751, 5757, 5759, 5782, 5788, 5821, 5830, 83, 87, 14128, 90, 97, 35437, 35439, 4874, + 15427, 5990, 1212, 14191, 35440, 17495, 1429, 1437, 35443, 1509, 1525, 1676, 1680, 1700, 35444, 28504, 1687, + 35446, 28137, 13772, 6473, 2020, 35450, 2205, 2215, 33100, 2670, 12788, 35453, 2709, 2742, 26453, 2743, 35455, + 2753, 2856, 1209, 35457, 3093, 7305, 3220, 35461, 3257, 3266, 35462, 3493, 3532, 35463, 3549, 15245, 35465, + 3742, 3762, 35467, 35469, 13780, 4025, 4108, 4135, 5152, 4232, 4296, 35473, 35476, 35479, 35482, 35484, 35485, + 35486, 35487, 35494, 35496, 4449, 4459, 91, 35497, 35500 + ], + "oxide", + "-reflect", + [2, 5258, 23959], + [ + 0, 33640, 17835, 35502, 8862, 811, 15460, 816, 29544, 35505, 4856, 5245, 35507, 17577, 22089, 27299, 6505, 7812, + 5254, 5162, 13418, 35510, 1009, 1011, 1198, 1304, 1364, 35512, 35513, 1431, 21480, 4907, 1544, 1594, 1610, + 35514, 1874, 1177, 35517, 17303, 2026, 35518, 2323, 2338, 35519, 2383, 2384, 2450, 35521, 35523, 20305, 2494, + 35527, 2530, 8163, 3124, 3159, 3183, 35531, 3246, 35533, 3752, 89, 5311, 4042, 4076, 4151, 4193, 17010, 4294, + 35537, 4484, 4535 + ], + [0, 35539, 6564, 1388, 2887, 5351, 8674, 5472, 13428, 1973, 8791, 6969, 1145, 6468, 35540, 6789, 6746, 1149, 7003], + [1, 2343, 23965], + "proxies", + [0, 23966, 23967, 23968, 2487], + [0, 17877, 35547, 1137, 20908, 20991, 1676, 35549, 1736, 2182, 28142, 35550, 35555, 4391, 4449, 4548], + [0, 28192, 35558, 28180, 5245, 28203, 35561, 35563, 6520], + [0, 4419, 17878, 5472], + [3, 1891, 15], + "stai", + [2, 23969, 23970], + [1, 2343, 23973], + [0, 23976, 23978, 23979, 2523], + "pre-suf", + "spawn-sync", + [0, 1209, 10627, 35570, 26827], + ".gitignore", + [ + 0, 4874, 1009, 1011, 1389, 35573, 35575, 1610, 1680, 35576, 35577, 2752, 3188, 3400, 3421, 4039, 4255, 35579, + 35580, 4421, 4474, 12851, 91 + ], + [0, 6969, 5982, 3212, 13106, 4158, 35582, 4420], + "asterisks", + "regular-", + [2, 23981, 7256], + [1, 2343, 23984], + [0, 23985, 23986, 23987, 2537], + [ + 0, 10780, 1292, 1362, 35382, 1525, 1536, 1559, 2020, 2026, 35588, 2070, 2659, 2822, 1209, 3188, 3257, 3330, + 3411, 35589, 4039, 4218, 25192, 35591, 20496, 4449 + ], + [0, 35593, 1389, 1429, 18761, 35596, 1448, 1719, 1177, 18766, 1951, 2899, 705, 35598, 4167, 4193, 4196, 4220, 4389], + [0, 5284, 5472, 27603, 1388], + [1, 2343, 23990], + "dimensions", + [0, 0, 23991, 23996, 2537], + [0, 4384, 4389, 1474], + "resolution", + "heif", + "tga", + "tiff", + [0, 2585, 176, 14903, 6938, 26815, 15847], + [1, 2343, 23998], + [0, 0, 23999, 24000, 2537], + [0, 442, 816, 10615, 1177, 35611, 1924, 1937, 1942, 2203, 29741, 1776, 3090, 3549, 3758, 2907, 4042, 4495], + [0, 4426, 35617, 5284, 7598, 35619, 35620, 35621, 35622, 35625, 35628, 35629, 1424, 8221, 12075], + [1, 2343, 24002], + [0, 0, 24005, 24007, 2537], + "ow", + "p-pipe", + [ + 0, 48, 53, 83, 87, 97, 5583, 1195, 16818, 1593, 1177, 16821, 1895, 1955, 1999, 2182, 35634, 16824, 2675, 2297, + 2876, 2881, 2895, 2904, 2908, 2921, 2925, 2990, 3183, 35637, 3377, 1894, 3774, 4042, 16827, 2924 + ], + "imagemin-webp", + [0, 1675, 6925], + [1, 2343, 24009], + [0, 0, 24010, 24011, 34352], + [0, 7115, 4389, 19988], + [0, 3101, 7046, 7525, 7170], + "is-png", + "pngquant-bin", + [1, 2343, 24015], + [0, 24018, 24019, 24020, 2537], + [2, 2267, 1932], + "pngquant", + [0, 3923], + [0, 1329, 1398, 1429, 35649, 2899, 35650, 4255, 35653], + [0, 3101, 6657, 4430, 353], + [1, 2343, 24023], + "utf7", + [0, 0, 0, 24025, 2443], + "reader", + [0, 3949, 1499, 1179, 5701, 1862], + [1, 2343, 24027], + [0, 0, 8134, 24028, 2487], + [0, 35667, 35668, 35670, 4435, 5396, 3403, 4571, 7204, 4569, 18132, 6270], + "cpx2", + [3, 23479, 11], + [1, 2343, 24034], + "import-size", + "seamless-immutable", + [0, 24035, 14525, 24039, 2537], + [0, 1437, 32972, 2089, 21890, 35675, 3718, 4425], + "mutable", + "on-write", + [2, 1583, 24037], + [0, 2228, 3005, 22832, 6901, 35677, 4262, 18234, 3514, 6681, 3005], + [1, 2343, 24041], + [0, 24042, 24043, 24046, 2537], + [ + 0, 35720, 35797, 35724, 35730, 35781, 35789, 35795, 35799, 35810, 35682, 35684, 35697, 35739, 35750, 35754, + 35769, 35779, 35793, 35685, 35700, 35721, 35741, 35748, 35756, 35785, 35787, 35792, 35812, 35689, 35694, 35743, + 35752, 35762, 35774, 35791, 35805, 35702, 35705, 35706, 35708, 35710, 35723, 35802, 35806, 35709, 35699, 35718, + 35729, 35767, 35772, 35804, 35808, 35713, 35733, 35764, 35811, 35690, 35701, 35717, 35727, 35738, 35761, 35776, + 35783, 35746, 35736 + ], + [ + 0, 2150, 2070, 2323, 3403, 2278, 2899, 89, 1177, 1209, 4039, 1637, 3561, 2924, 1859, 2151, 2759, 1610, 2025, + 2504, 3342, 3824, 1628, 2359, 3744, 2367, 4111, 1165, 2482, 2496, 4307, 35814, 35816, 3427, 4689, 2361, 2960, + 3618, 35819, 4909, 1959, 1879, 1938, 1947, 25925, 35818, 1652, 2054 + ], + "variant", + [2, 9721, 24044], + [0, 89, 5128, 4627, 4963, 181, 5130, 4967, 35821, 4437, 14547], + [3, 2697, 12], + [1, 2343, 24049], + [0, 24050, 24051, 2514, 2487], + [0, 20443, 1676, 26137, 26144, 3427, 3763], + [0, 1173, 1198, 1253, 1267, 1177, 1903, 1958, 1970, 2026, 2164, 2899, 29946, 4257, 4342], + [1, 2343, 24053], + [0, 0, 0, 24054, 2523], + [0, 1317, 35832, 4439], + [1, 2343, 24056], + [0, 0, 24058, 24059, 2523], + "bypass", + [0, 35837], + [0, 1473, 57, 35839], + [1, 2343, 24061], + [0, 0, 0, 24062, 2443], + [0, 6105, 4445, 18241, 5284, 1936, 2585, 24829, 24830, 24843, 6106, 24832, 6110], + [1, 2343, 24064], + [0, 0, 24065, 24066, 2537], + [0, 4874, 34238, 1177, 1895, 1955, 1982, 1894, 1531, 91, 4523, 1983, 1984], + [0, 2062, 35849, 35851], + [1, 2343, 24068], + [0, 0, 0, 24071, 4139], + "metacom", + "metaco", + [0, 4158, 3212, 91, 3163], + "nfiguration", + [2, 24070, 24072], + [1, 2343, 24076], + "metalog", + [0, 0, 24082, 23865, 2537], + "metaschema", + "metautil", + "vm", + "metavm", + "metawatch", + [0, 2899, 1177, 2759, 15854, 1951], + [3, 15793, 16], + "tarhia", + [2, 24083, 24084], + [1, 2343, 24087], + [0, 24094, 24096, 24098, 2537], + "isolation", + "enterprise", + "scalable", + "soa", + "stateful", + "cluster", + [0, 3864], + "interactive", + [0, 53, 29553, 5103, 1894, 91], + [2, 24101, 103], + [ + 0, 89, 5128, 35865, 11000, 8192, 35867, 35869, 3857, 3906, 35868, 35870, 4450, 9044, 3811, 5779, 200, 5131, + 12295, 12296, 5122, 35871 + ], + [1, 2343, 24100], + [0, 0, 24102, 24103, 2399], + [3, 9312, 10], + [ + 0, 48, 53, 81, 87, 90, 11976, 12310, 5476, 1195, 1429, 1177, 2026, 2151, 2193, 2205, 2822, 2832, 3127, 3188, + 2899, 3286, 35877, 3400, 35878, 89, 3824, 2278, 4255, 2924, 4677 + ], + [0, 4451, 5284, 176, 5938, 16504, 8623, 1936, 6956, 24456], + [1, 2343, 24105], + [0, 0, 24106, 24107, 2487], + [0, 2276, 28234], + [0, 4452, 57], + [1, 2343, 24109], + [0, 0, 24110, 2514, 2487], + [0, 29169, 4384], + [1, 2343, 24112], + [0, 24115, 24119, 24123, 2487], + "-vnode-flags", + [2, 2711, 24113], + [0, 25671], + "inferno-", + [2, 24116, 594], + [2, 24116, 6579], + [0, 5517, 442, 9089, 603, 4874, 22839, 1177, 1895, 1915, 1938, 1955, 6526, 2203, 1894, 4493, 91, 4523, 1984], + [2, 6073, 591], + "ToString", + [2, 8924, 24121], + [0, 9183, 977, 16358, 35896, 34877, 34876, 35897, 35898], + [1, 2343, 24125], + [0, 24126, 24127, 24131, 2537], + [0, 1512, 1672, 3188, 35904], + [0, 4856, 6503, 1429, 1474, 1787, 1177, 2899, 3421, 4474, 4487, 91], + [2, 2712, 591], + [2, 2712, 1592], + "humanize", + [0, 3073, 2942, 4251, 1676], + [1, 2343, 24133], + [0, 24134, 24141, 24142, 2523], + [0, 15312, 35917, 17416], + "inherit", + "inheritance", + "klass", + "oop", + "oriented", + [2, 3425, 24139], + [0, 13614, 1159, 9254, 1855, 1177, 2708, 3410, 4103, 4389], + [0, 100, 4647, 6899, 3053, 7260, 1697, 1496], + [1, 2343, 24144], + [0, 0, 7923, 24145, 2523], + [0, 1633, 18718, 3729, 35109, 32900, 6553], + [1, 2343, 24147], + [0, 20896, 24148, 2514, 2523], + [0, 7806, 9227, 6494, 5087, 1536, 1594, 2026, 1192, 3363, 1894, 4468, 91, 4763], + [1, 2343, 24150], + [0, 24155, 24158, 24159, 2537], + "@alcalzone/ansi-tokenize", + "auto-bind", + [2, 17503, 7201], + "yoga-layout", + [0, 2713, 4431, 15019, 35935, 35938, 3923], + "@types/ms", + [2, 11313, 14675], + [0, 4389, 4430, 1537], + [0, 1936, 22115, 57, 353, 3586, 1623], + [3, 6547, 13], + "-exit", + [2, 24160, 24161], + "ack-utils", + [2, 6516, 24163], + "@vdemedes/prettier-config", + [2, 15289, 89], + [3, 3816, 9], + "tools-core", + [2, 24167, 24168], + [1, 2343, 24172], + "print", + [0, 24173, 24174, 24175, 2537], + [0, 24156, 5254, 2738, 3242, 4135, 22776], + [0, 11976, 4874, 7677, 1395, 12690, 3232, 3446, 7461, 9245, 91, 1984], + [0, 5995, 1550, 3230, 3232, 1932, 2844, 1747, 18037, 4799, 91, 2325, 1552, 1542, 3151, 9553, 3766, 35948], + [1, 2343, 24178], + [3, 2718, 12], + [0, 0, 24179, 6273, 2443], + [ + 0, 48, 53, 61, 76, 78, 87, 92, 107, 192, 5467, 9089, 603, 5366, 5087, 4870, 7819, 1009, 1011, 1193, 1317, 1593, + 1177, 1895, 1955, 1978, 2675, 1192, 1209, 3400, 1894, 3957, 4474, 4508, 4514, 91, 3348 + ], + [1, 2343, 24185], + [2, 24184, 4013, 17526], + "inno", + [3, 2719, 9], + [3, 29444, 16], + [0, 24186, 24187, 24189, 2523], + [0, 35957, 16781, 2036, 2856, 3057, 35958, 4135, 4507, 4748], + [ + 0, 192, 22559, 19438, 19181, 442, 11893, 8755, 554, 10879, 4864, 5087, 7637, 7889, 19446, 35960, 8778, 4874, + 5254, 4892, 21626, 1009, 1011, 1193, 16307, 1566, 668, 1177, 1895, 1938, 1939, 1942, 1955, 2020, 2071, 2151, + 2203, 2675, 1192, 2822, 2990, 3144, 1894, 4039, 4474, 91, 4523 + ], + "run-async", + [0, 1192, 91, 12938, 89, 5472], + [1, 2343, 24191], + [0, 24192, 24193, 24194, 2523], + [0, 1437, 1835, 3170, 4135, 4227], + [ + 0, 8778, 5254, 1009, 1011, 1172, 1175, 1195, 1257, 1267, 35968, 1268, 1874, 1177, 1895, 1954, 1955, 2151, 2070, + 2675, 2766, 2297, 2881, 2898, 2904, 2921, 2925, 2990, 3123, 3188, 2899, 1894, 4039, 91, 2924, 4677 + ], + [0, 4469, 35972, 2924, 1194, 91, 4799], + [1, 2343, 25249], + [1, 2343, 24198], + [0, 8998, 1525, 1759, 3232, 4494], + [0, 24197, 34525, 24199, 34352], + [0, 5995, 31012, 35980, 35981, 3232, 3230, 1550, 2844, 1747, 18037, 4799, 91, 200, 13326, 35982, 13325], + [1, 2343, 24201], + [0, 24203, 24205, 24206, 2487], + "fwk", + [0, 35987, 35989], + [3, 2726, 9], + [0, 10817, 4856, 17577, 6503, 4874, 1429, 27445, 1610, 1687, 2899, 4039, 4042, 4474, 91], + [0, 91, 6892, 35993, 4988, 35995], + [1, 2343, 24208], + [0, 24210, 24212, 24215, 2523], + "reify", + [0, 4757, 1138, 1687, 1082, 1084, 35958, 24806, 36000, 36001, 32335, 19441, 36002, 36005], + "exports", + [ + 0, 1166, 3421, 1170, 89, 36007, 2022, 1209, 4039, 4135, 7094, 3471, 4508, 842, 36008, 2188, 3752, 91, 17577, + 4874, 36009, 4880, 4870, 20959, 5254, 15906, 36011, 28142, 9725, 28203, 29139, 603 + ], + "packaging", + "unrun", + [0, 91, 202, 7047, 6639, 4799, 4643], + [1, 2343, 24217], + [0, 24221, 24222, 24225, 2523], + "remark-co", + "de-import", + [2, 24218, 24219], + [0, 4870, 24156, 5254, 36017, 1209, 3242, 36018, 36020, 4135], + [0, 11976, 4874, 7677, 12690, 3232, 3446, 7461, 9245, 91, 1984], + "coffee.md", + "litcoffee", + [0, 5995, 3232, 1932, 1550, 2844, 1747, 18037, 4799, 91, 7163, 2602, 2013, 6868, 7147, 3076, 6865, 13716, 3073], + [2, 24227, 553], + [3, 37196, 18], + [1, 2343, 24243], + [3, 1235, 25], + "3-member-expression-literals", + [2, 24229, 24230], + [3, 24231, 27], + [2, 4635, 5796], + [2, 24232, 24233], + [2, 1267, 13278], + "-cal-buddhist-full", + [2, 10739, 24236], + "cldr-cal-", + "-full", + "chinese-full", + [2, 24238, 24240], + "cldr-cal-c", + [0, 0, 2667, 24252, 4139], + "optic-full", + [2, 24242, 24244], + "dangi-full", + [2, 24238, 24246], + "ethiopic-full", + [2, 24238, 24248], + "hebrew-full", + [2, 24238, 24250], + [0, 91, 4749, 24753, 24754], + "indian-full", + [2, 24238, 24253], + "cldr-cal-i", + "slamic-full", + [2, 24255, 24256], + [2, 6795, 24239], + [2, 24238, 24258], + [1, 2343, 24265], + "persian-full", + [2, 24238, 24261], + "roc-full", + [2, 24238, 24263], + [0, 24270, 24279, 24281, 2523], + "cldr-core", + "cldr-", + "dates-full", + [2, 24267, 24268], + [0, 1209, 4870], + "numbers-full", + [2, 24267, 24271], + [2, 2004, 19895], + "grunt-curl", + "grunt-zip", + [3, 15911, 15], + "emory", + [2, 24276, 24277], + [0, 11976, 4874, 7677, 3446, 7461, 9245, 91, 1984], + "ecma", + [0, 5995, 4799, 91, 36033, 36034, 5547, 3624, 16284, 36036, 36037, 36039, 36040, 36041], + "ecma402", + "jsonc-simple-parser", + [1, 2343, 24285], + [0, 24286, 24288, 2514, 34352], + [0, 2856, 3183, 4296], + [2, 1940, 23688], + [ + 0, 1192, 2675, 1177, 4039, 4468, 4474, 1894, 91, 5087, 4874, 2990, 7892, 36047, 1942, 1938, 1895, 1011, 18285, + 1009 + ], + "flag-icons", + [3, 10697, 15], + [2, 24290, 6082], + [3, 2273, 15], + [2, 24292, 23688], + "grunt-re", + [2, 24294, 2495], + [1, 2343, 24297], + [0, 24300, 24301, 24303, 2523], + [3, 23932, 13], + "country", + [0, 8811, 7681, 2205, 2777, 3157, 3505, 3921], + [0, 11436, 4874, 4880, 1009, 1011, 1166, 1597, 1701, 1177, 1907, 15290, 2020, 89, 4025, 4094, 91], + "dial code", + [0, 91, 4481, 4354, 4532, 553, 36055, 36059], + [1, 2343, 24305], + [0, 0, 24306, 24307, 2537], + [0, 53, 87, 92, 11893, 19441, 8811, 4874, 1009, 1011, 1193, 1622, 1177, 1895, 1192, 1894, 91], + [0, 91, 4481, 8784, 4354, 16790, 1973, 4532, 553], + [1, 2343, 24309], + [0, 24310, 24311, 24312, 2399], + [0, 29891, 1437, 1457, 15261, 24283, 3181, 3188, 36071, 35237, 4039, 21512, 91, 9455], + [0, 4874, 668, 1894, 4384, 4508], + [0, 91, 11540, 24364, 1999, 10906, 6147], + "updates", + [1, 2343, 24321], + [3, 14428, 13], + [2, 24315, 15525], + "inversi", + "on of control container", + [2, 24317, 24318], + "ioc", + [0, 0, 0, 24322, 2487], + [0, 6869, 7296, 4643, 1351, 5284, 4484, 7047], + [1, 2343, 24330], + "empathic", + [3, 547, 8], + "li-framework", + [2, 24325, 24326], + "-prompts", + [2, 24327, 24328], + [0, 24333, 24350, 24357, 4139], + "discover", + [2, 8655, 24331], + [0, 51, 1405, 1437, 1525, 1687, 2070, 2822, 3181, 3188, 814, 4135, 4484, 18272], + "utils-array", + [2, 8655, 24334], + [3, 24335, 13], + [2, 24336, 2150], + [2, 24336, 11996], + [2, 24336, 3729], + [2, 24336, 3101], + [3, 24340, 14], + "ubprocess", + [2, 24341, 24342], + [2, 24336, 7009], + "elementtree", + "leek", + "ssh-config", + "-proxy", + [2, 4339, 24348], + [ + 0, 692, 19861, 4856, 17577, 4865, 7637, 9129, 10949, 6503, 4874, 5251, 20959, 5254, 1429, 2675, 34269, 2899, + 3400, 3421, 1894, 4039, 4474, 4487, 4490, 14970, 91, 31745 + ], + [3, 15592, 14], + [2, 24351, 1633], + "pen", + "@types/open", + "s-name", + [2, 15461, 24355], + [0, 200, 91, 9654], + "@types/split2", + [3, 9240, 12], + [2, 24359, 4575], + [1, 2343, 24365], + [2, 2733, 14606], + [2, 2733, 5130], + "hybrid", + [0, 0, 24366, 24367, 2523], + [ + 0, 1192, 2675, 1209, 4039, 4487, 4468, 3093, 1894, 36090, 1527, 91, 5087, 4874, 36097, 4492, 36088, 15600, 4131, + 36098, 36103, 31194, 4585, 31195, 36100, 1652, 36095 + ], + [0, 671, 4487, 36106, 1894, 1541, 91], + [1, 2343, 24369], + [0, 24371, 24372, 2514, 2487], + "@types/svgo", + [0, 18272], + [0, 4865, 4874, 1512, 2070, 3400, 3403, 4487, 36114, 91], + "icon pack", + [3, 11619, 14], + [1, 2343, 24376], + [0, 24377, 24378, 2514, 2537], + [0, 36119, 1415, 1457, 1556, 1676, 668, 28795, 36120, 3527, 3616, 4025, 4042, 4227, 12444, 26379, 27921, 4459], + [ + 0, 603, 8850, 842, 5245, 4874, 5251, 19839, 2117, 3561, 26712, 1894, 814, 4057, 2278, 4300, 3709, 4359, 4072, + 36123, 4493, 91, 1984, 9252 + ], + "@ioredis/commands", + [1, 2343, 24394], + "-key-slot", + [2, 24093, 24381], + "denque", + [3, 19541, 11], + "guments", + [2, 24384, 24385], + "-error", + "-errors", + "redis-errors", + "redis-", + [2, 24390, 57], + "as-callback", + [2, 18124, 24392], + [0, 24404, 0, 24405, 2537], + "@ioredis/", + [2, 8626, 16609], + [2, 24395, 24396], + [3, 19583, 22], + [3, 10408, 16], + [2, 24399, 10446], + [3, 8826, 10], + "is-errors", + [2, 24401, 24402], + [0, 668, 2191], + [0, 200, 7047, 202, 17526, 10906, 1999, 91, 36130], + "sentinel", + [1, 2343, 24409], + "pipelining", + [0, 24410, 24411, 24412, 2487], + [0, 36135], + [0, 811, 816, 6373, 1389, 4037, 4042, 4255, 36140], + [0, 15253, 1936, 1783], + [1, 2343, 24414], + [0, 0, 24415, 24420, 2399], + [ + 0, 2228, 2899, 29691, 2240, 4019, 36157, 36156, 2300, 36149, 2258, 36160, 4232, 2247, 36163, 2273, 2281, 36165, + 36167, 36153 + ], + "irc-colors", + "node-i", + "cu-charset-detector", + [2, 24417, 24418], + [0, 2845, 2844, 1155, 4496], + [3, 1104, 10], + [1, 2343, 24423], + [0, 0, 24424, 24425, 2523], + [0, 1389, 1177, 2080, 36176, 4389, 36178, 4535], + [0, 1616, 12588, 36181, 36182, 7789, 3428, 6803, 36183, 36185, 36186, 36187, 36189], + [1, 2343, 24427], + [0, 24428, 24429, 24430, 2523], + [0, 2151, 2859, 36194, 21224], + [0, 3400, 3524, 4535], + [0, 3113, 36197, 57, 11806, 22875, 36198, 3656], + [1, 2343, 24432], + [0, 24433, 24434, 24435, 34352], + [0, 1362, 3171, 705], + [0, 1149, 1512, 1525, 2899, 4037, 4193], + [0, 4500, 5592, 4030, 3101, 22115, 3424], + [1, 2343, 24438], + "is-extglob", + [0, 24439, 24442, 24443, 2443], + [0, 705, 1696], + "extglob", + "globstar", + [0, 3297, 2899, 1177], + [0, 4500, 22115, 3424], + [1, 2343, 24445], + [0, 24447, 0, 2514, 2537], + [2, 14503, 7204], + [0, 3183, 36215, 1437], + [1, 2343, 24452], + "globally", + [3, 9509, 9], + "locally", + [0, 24453, 24454, 24455, 34352], + [0, 31081], + [0, 13789, 1011, 1177, 28753, 1680, 2024, 3401, 4481, 91, 4523, 1906], + [0, 91, 4799, 553, 6435, 614, 6731, 3061, 1698, 1781, 7265], + "vanilla", + [1, 2343, 24458], + [0, 24459, 16075, 24460, 2537], + [0, 1562, 36226, 3173], + [0, 1563, 998, 36228], + [1, 2343, 24464], + "is-object", + "kind", + [0, 24465, 24466, 24467, 2537], + [0, 24648, 6327, 3105, 3181, 4745], + [0, 442, 8144, 7639, 6503, 4874, 1414, 36007, 668, 1177, 2899, 3758, 4135, 4494, 91, 4523], + [0, 91, 1745, 1179], + [1, 2343, 24471], + " name", + [2, 24374, 24469], + [0, 24472, 24473, 24474, 2443], + [0, 36241], + [0, 4874, 4508, 91], + [0, 36244, 36245, 29, 36246, 36247, 36248, 91, 1745], + [1, 2343, 24476], + [0, 0, 23733, 24477, 2487], + [0, 1666, 6901, 33777, 91, 1745, 36248, 4508], + [1, 2343, 24479], + [0, 0, 0, 24480, 2537], + [0, 5592, 1745, 1783, 4508, 91, 36245], + [1, 2343, 24482], + [0, 24483, 24484, 24485, 2537], + [0, 3127, 91], + [0, 8147, 6503, 4874, 6520, 1596, 2759, 2899, 3202, 4449], + [0, 6869, 1745, 36263, 5284], + "is-ins", + "ide-container", + [2, 24486, 24487], + [1, 2343, 24490], + [0, 24492, 24495, 24496, 2537], + "esmock", + [0, 1525, 4734, 3275, 15221, 36270, 1149, 1512, 3220, 3188, 7074, 36272], + "wsl", + "subsystem", + [0, 1429], + [0, 36275, 1783, 36276, 36278, 26916, 20672, 1283, 15253, 1179], + [1, 2343, 24498], + [0, 5914, 24499, 2514, 2523], + [ + 0, 549, 4856, 9417, 6503, 36284, 4874, 1429, 1431, 1596, 2899, 36285, 3232, 36289, 1894, 36290, 4232, 4474, + 4490, 31194 + ], + [1, 2343, 24501], + [0, 24502, 24503, 2514, 2399], + [0, 2070, 3348, 1112, 1673, 1676, 4484, 4747, 1398, 1680, 1759, 16544, 1130, 24697, 3951, 36295], + [ + 0, 1414, 3519, 1429, 2323, 2675, 2742, 2899, 3243, 3259, 1552, 4193, 1177, 3260, 4039, 7800, 2203, 3230, 4246, + 4474, 25633, 1894, 36308, 442, 2507, 20085, 4196, 91, 4856, 4874, 2494, 2990, 5245, 6503, 6513, 4892, 2496, + 36307, 25629, 2510, 2529, 25634, 27585, 19441, 1431, 6512, 8536, 18710, 4523, 36303, 4232, 28290, 1942, 28033, + 36305, 9417, 13418 + ], + "kindof", + [1, 2343, 24506], + [0, 0, 24507, 24508, 2523], + [ + 0, 1414, 3242, 1429, 1687, 2070, 2931, 2899, 4484, 4707, 36007, 1177, 20380, 668, 2203, 1457, 3183, 24156, 442, + 3527, 3541, 91, 4856, 17577, 6503, 26584, 2858, 692, 7892, 2075, 36315, 36316, 4523, 36318, 4232, 1964, 36323, + 1012, 13418, 27909, 12123, 5551, 36326, 36331 + ], + [0, 6869, 7296, 4643, 1351, 5284], + [2, 13283, 2899], + [1, 2343, 24513], + "spaces-cli", + [2, 671, 24511], + [0, 24514, 7590, 24515, 2537], + [0, 1012, 1011, 1009, 12145], + [0, 6892, 5286, 5284, 91, 57, 5341, 1177, 6741, 6939], + [1, 2343, 24517], + [0, 24518, 24522, 24526, 2399], + [0, 36342, 18420], + "code c", + [2, 24519, 2885], + "JS code coverage", + [0, 10949, 6503, 4874, 36345, 1567, 36348, 3188, 2899, 3696, 4487, 91, 4526], + "@metcoder95/https-pem", + "verage", + "JS coverage", + [0, 6869], + [1, 2343, 24528], + [0, 24529, 24530, 24531, 2487], + [0, 36356, 36358, 1759, 16837, 695, 3025, 3561, 3616, 16840, 3638, 16841, 25162, 2278, 4228, 4480, 4333], + [ + 0, 36361, 5087, 19799, 7889, 4874, 36362, 36364, 19802, 1009, 1011, 1367, 1177, 1895, 2675, 1192, 33412, 2990, + 36366, 3640, 3672, 1894, 36367, 4468, 91 + ], + [0, 1623, 4329, 2278, 695, 4333, 5260, 1932, 3561, 91], + [1, 2343, 24533], + [0, 24534, 24535, 24538, 4139], + [0, 23433, 1362, 1437, 1486, 1513, 35446, 25879, 32086, 3077, 3183, 36374, 36375, 4562, 4720, 1695], + [0, 1705, 3297, 4039, 4474, 4487, 36377, 91], + "js-calendar", + "v-click-outside-x", + [0, 4532, 91, 23076, 6432, 3383, 10057, 5490], + [2, 1165, 2091], + "5-property-mutators", + [2, 24229, 24540], + [2, 1536, 4408], + "vue-h", + "tml-loader", + [2, 24543, 24544], + [1, 2343, 24547], + [0, 24548, 24549, 24550, 4139], + [0, 1525, 4227], + [0, 1082, 2899, 4135], + [0, 2280, 4533, 4535, 3178, 2632, 5284, 5286, 1925, 5194, 6598, 7075, 6778, 7056, 7192, 1149, 7003], + [1, 2343, 24552], + [0, 0, 24553, 24554, 2443], + [0, 1082, 4135], + [ + 0, 200, 15215, 23634, 24280, 5286, 3595, 1925, 5284, 676, 36390, 2262, 14137, 2632, 3178, 6707, 6708, 4405, + 23635, 1644, 57, 23637, 2280 + ], + [1, 2343, 24556], + [0, 24557, 24558, 24565, 34352], + [0, 9448, 2102, 2755, 4121, 4143, 4227, 4535, 4695, 24777], + [ + 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 19403, 1610, 1700, 1701, 1177, 1895, 1938, 2675, 1192, 2794, 2990, + 3150, 3400, 1894, 4257, 4072, 2924 + ], + "character-", + [2, 24559, 57], + "inople", + [2, 14180, 24561], + [3, 10755, 13], + [2, 8535, 591], + [0, 2280, 4535, 4533, 2924, 1464], + "void-elements", + [1, 2343, 24572], + [3, 13889, 13], + "ddleware", + [2, 24568, 24569], + "code-mirror", + [0, 24573, 24578, 24579, 2523], + [0, 36402], + "github-basic", + "highlight-", + [2, 24575, 1505], + "inconsolata", + [0, 2899, 1177, 1362, 2759, 1954, 1938, 1958, 1903, 1970], + [0, 3778, 1179, 7818, 6953], + "-code-mirror", + [2, 2437, 24580], + "jade-", + "highlighter", + [2, 24582, 24583], + [3, 10755, 14], + "cdata", + [2, 24585, 24586], + [3, 24587, 15], + [1, 2343, 24597], + "offee-script", + [2, 24588, 24590], + [2, 24585, 695], + [2, 24585, 3127], + [2, 24585, 4333], + "verbatim", + [2, 24585, 24595], + [0, 24603, 0, 24604, 2537], + "less-file", + "lsr", + [2, 23151, 705], + "stop", + "twbs", + [ + 0, 97, 4880, 4883, 36409, 36411, 36413, 36415, 36416, 36420, 36422, 36423, 1015, 36424, 36425, 36427, 36429, + 36430, 36432, 36433, 36435, 36437, 36439, 36442, 36444, 36445, 36447, 36448, 36451, 36453, 36454, 1018, 1021, + 36455, 36457, 36458, 36459, 36461, 36463, 36466, 36467, 12265, 1023, 36468, 36471, 36473, 36476, 36477, 36478, + 36480, 36483, 36485, 36487, 36489, 36490, 36491, 36492, 36493, 36495, 36497, 36499, 36502, 36503, 36504, 36506, + 36509 + ], + [0, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], + [1, 2343, 24606], + [0, 24608, 24609, 8039, 2399], + "filelist", + [0, 2070, 2685, 1209, 4135, 4727], + [0, 2272, 3105, 2899, 3381, 4170], + "rake", + [1, 2343, 24612], + [0, 0, 24613, 2514, 2399], + [0, 8862, 811, 816, 10817, 4874, 1317, 1894, 4042, 4484, 91, 1984], + [1, 2343, 24615], + [0, 0, 24616, 24618, 2523], + [0, 11976, 107, 34715, 1437, 12607, 668, 2205, 2553, 3105, 36526, 3400, 36528, 3714, 7917, 1984], + "video-worker", + [0, 1936, 1283, 2574], + [3, 1198, 14], + "nnotate-pure-calls", + [2, 24619, 24620], + [3, 19449, 20], + "nk", + [2, 24622, 24623], + [2, 16819, 2143], + "-nk", + [2, 7628, 24626], + [1, 2343, 24629], + [0, 24630, 24632, 2514, 2523], + [ + 0, 8862, 811, 8850, 816, 6373, 10895, 36534, 1556, 16230, 668, 28795, 36538, 2807, 3090, 36536, 3189, 3510, + 15450, 3714, 4042, 4057, 15451, 27921, 36537 + ], + "parallax", + [0, 5757, 4874, 7677, 19336, 1446, 1177, 1905, 1894, 91, 1984], + "youtube", + "vimeo", + [1, 2343, 24636], + [0, 0, 24637, 24638, 2537], + [0, 3421, 2070, 1734, 2675, 2297, 2907, 1177, 4042, 4072, 1597, 1596, 2908, 17232, 5561, 36544, 1938, 2915], + [0, 614, 6564, 36, 5576, 1388], + [1, 2343, 24640], + [0, 24641, 24642, 24643, 2537], + [0, 4243, 23462], + [0, 1389, 36552, 1177, 2759, 2899, 3202, 4068, 31136, 4545], + [0, 4545, 1871], + [1, 2343, 24646], + "css-url-embed", + [0, 0, 24647, 24649, 2523], + [ + 0, 20870, 36559, 24523, 826, 4874, 1079, 28400, 1414, 1610, 36560, 668, 1177, 2064, 2675, 1192, 31808, 29197, + 3313, 2658, 4481, 91, 4729 + ], + "@gerrit0/mini-shiki", + [0, 1612, 27, 2671, 1862, 705, 7085, 7289, 4731, 7102], + [1, 2343, 24654], + [2, 2767, 12608], + [2, 2767, 8751], + "walkdir", + [0, 24655, 24656, 24657, 2537], + [0, 9315, 31265, 23289, 2051, 2745, 36568, 12449], + [0, 36571, 12396, 9363, 4874, 1414, 1894, 3985, 3998, 4481, 4505, 91, 1906], + [0, 6892, 7234, 1563, 25154, 1644, 3729, 3958, 3984, 36573, 4141, 1646, 5341, 353, 1633, 4549], + [1, 2343, 24659], + [0, 24660, 8134, 24661, 2537], + [0, 36578], + [0, 17023, 3778, 6988, 16114, 8623, 36580, 4552, 5401, 11512], + [1, 2343, 24663], + [0, 24664, 24667, 24669, 2523], + [0, 9315, 18072, 12447], + "cssfontparser", + "moo-color", + [0, 9363, 4874, 1414, 3137, 27008, 27010, 1894, 3985, 3998, 4481, 4505, 91, 1906], + [2, 1199, 15525], + [ + 0, 23266, 36587, 614, 6435, 3984, 36573, 3958, 26564, 2587, 36588, 36589, 3273, 1351, 1783, 1936, 6523, 1633, + 6892, 202, 12414, 4647 + ], + [1, 2343, 24671], + [0, 0, 16529, 24672, 2523], + [0, 35670, 27280, 18132, 4558, 3403, 4571, 7204, 4569, 4166, 16159], + [1, 2343, 24674], + [0, 24675, 0, 24676, 4139], + [0, 17180, 2155, 36602, 36604, 20508, 3923], + [0, 2056, 4560, 15008, 36606, 12666, 3101, 7682], + [1, 2343, 24678], + [0, 24679, 24680, 24681, 2487], + [0, 36612, 1371, 1437, 36611, 4135, 20044, 1543, 16184, 2960, 2744], + [0, 1906, 1166, 24491, 4294, 1470, 36615], + [0, 3378, 3076, 29096, 22005, 3329, 4354, 16790, 200, 1237, 3383, 15525], + [1, 2343, 24683], + [0, 0, 0, 24684, 2537], + [ + 0, 12831, 1002, 36621, 36622, 36623, 36626, 36628, 36630, 36632, 36637, 36639, 36641, 36642, 36643, 36646, + 36649, 36650, 36653 + ], + [1, 2343, 24686], + [0, 24687, 24691, 24692, 2399], + [0, 3763, 3757], + "@jest/e", + "nvironment", + [2, 24688, 24689], + [0, 1158, 3421, 4770, 1082, 2899, 1177, 13614], + [0, 7119, 1002, 25658], + "fake-timers", + [2, 552, 24693], + [1, 2343, 24696], + [0, 0, 24698, 24699, 2523], + "sql-highlight", + [0, 1566, 2899, 4170], + [0, 1002, 4565], + [1, 2343, 24701], + [0, 24702, 24703, 13533, 2399], + [0, 3008, 3173, 4121], + [ + 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 1610, 1700, 1701, 1177, 1895, 1938, 2092, 2675, 1192, 2990, 3144, + 21016, 3400, 1894, 4257, 2924 + ], + [1, 2343, 24705], + [0, 24706, 24707, 24708, 2523], + [0, 15560, 23783], + [0, 1148, 1389, 1414, 2899, 3697, 20010, 20012, 4535], + [0, 7134, 57, 12831, 1002, 1644, 3766, 1871, 3767, 1646], + [1, 2343, 24710], + [0, 24711, 24714, 24716, 34352], + [0, 2139, 36681, 3173, 3763, 4507, 4548, 36680], + "-escapes", + [2, 11948, 24712], + [ + 0, 5517, 30494, 36688, 20224, 36694, 36687, 7746, 4874, 36685, 11305, 36691, 7752, 29891, 23247, 7677, 1410, + 1610, 2685, 33479, 30889, 2658, 7798, 28531, 4393, 4483, 36684, 91, 1984 + ], + "matchers", + [0, 4568, 27, 36696, 7085, 7289, 705, 2671, 4548, 1612], + "extended", + [1, 2343, 24720], + [2, 38074, 1177], + [0, 24721, 24722, 24735, 2537], + [0, 25493], + [0, 3505], + "@pmmmwh/react-refresh-webpack-plugin", + "cape-html", + [2, 5600, 24724], + "ump.js", + [2, 5086, 24726], + "ndomcolor", + [2, 12178, 24728], + "eslint-w", + [2, 2546, 4406], + [2, 24730, 24731], + "jump.js", + "randomcolor", + [0, 4569, 4571, 35668, 25493, 4014, 7204, 6857, 3403, 1263, 6437, 6639, 6436, 36706], + [1, 2343, 24740], + "recharts", + [2, 30495, 674], + "web-vitals", + [0, 24741, 24742, 24743, 2487], + [0, 3084, 4449], + [0, 1148, 2899, 3697, 705, 4135, 36712], + [0, 4575, 1388, 36715, 888, 1644, 57, 36716, 36717, 36718, 36719, 4569, 36720, 4576, 15525], + [1, 2343, 24745], + [0, 0, 24747, 24748, 2537], + "libxmljs2", + [0, 1596, 2759, 14529, 3774], + [0, 8426, 9254, 3656, 4577], + [1, 2343, 24750], + [0, 24751, 24752, 24755, 2523], + [0, 2713, 17395, 25700, 36732, 17416], + [0, 1090, 1593, 36736, 3435, 3438, 4092, 4100, 4389], + "plugnplay", + "pnp", + [0, 614], + [1, 2343, 24757], + [0, 0, 9530, 24755, 4139], + [1, 2343, 24760], + [2, 814, 13987], + [0, 0, 24761, 24763, 2537], + [ + 0, 68, 192, 5467, 442, 6375, 1525, 1177, 1895, 1955, 2203, 2675, 1192, 2990, 29197, 3400, 1894, 23901, 27302, + 4257, 91, 4523 + ], + "@vercel/h3", + [0, 3348, 6926, 6668, 36760], + [1, 2343, 24765], + [0, 24766, 24767, 24768, 2399], + [0, 20573, 1687, 2929, 11481], + [0, 36767, 1999, 29283, 34078], + [0, 1145, 36769, 8791, 8745, 1973], + [1, 2343, 24770], + [0, 0, 24771, 24772, 2523], + [0, 4384, 2272], + [0, 1002, 7020, 4354, 16790, 13017], + [1, 2343, 24774], + [0, 24775, 24776, 24784, 2523], + [0, 17058, 36781, 7076, 25814], + [0, 17584, 1429, 15990, 1527, 1652, 2675, 2759, 3188, 2899, 21477, 4039, 4131, 4193], + "worker-farm", + "leak-detector", + [2, 2769, 24778], + [3, 20371, 12], + [2, 24780, 14922], + "@aneuhold/be-ts-lib", + "@vercel/koa", + [0, 36785, 1528, 6458, 3358, 16094, 13729], + "@vercel/hono", + "@jimp/diff", + "@jimp/", + [2, 24787, 9711], + "@jimp/types", + [1, 2343, 24803], + "@jimp/t", + "est-utils", + [2, 24791, 24792], + "@adonisjs/ace", + [2, 12327, 10809], + [3, 475, 10], + [2, 24801, 8915], + "manipulation", + [2, 12327, 24798], + "resize", + [3, 24794, 11], + [2, 24796, 24815], + [0, 0, 24804, 24814, 4139], + [0, 9516, 9515], + [3, 1603, 9], + [2, 24805, 3751], + [2, 10880, 1283], + [3, 5617, 14], + "eter", + "-decorator", + [2, 24809, 24810], + [2, 11958, 24811], + [2, 24808, 24812], + [0, 3378, 3383, 1460, 7020], + "bodyparser", + [2, 24825, 686], + [1, 2343, 24820], + [2, 29401, 166], + [2, 13055, 25721], + [0, 0, 24824, 24834, 2537], + " editor", + [2, 6105, 24821], + "wysiwyg ", + [0, 48, 53, 87, 94, 1178, 1198, 1177, 1881, 1938, 2899, 3400, 3421, 4039, 4042, 4045, 28038, 4535], + [3, 475, 12], + "html editor", + [2, 24823, 24826], + [2, 24796, 7141], + "rich editor", + [2, 6106, 24821], + "editable", + [2, 1563, 24831], + "vanillajs", + [0, 1155, 7020, 2649, 20215, 2574, 36796, 36798, 1145], + [1, 2343, 24837], + "@adonisjs/env", + [0, 24838, 24839, 24840, 2443], + [0, 36805, 36809, 36806], + [ + 0, 4874, 11016, 13061, 16480, 36812, 11018, 1639, 36814, 2832, 91, 1983, 1984, 36815, 188, 4639, 36820, 36821, + 36816, 36817 + ], + [0, 181, 188, 8588, 5131, 4967, 4627, 4963], + [2, 24846, 24847], + "wysisyg", + "rte", + [1, 2343, 24845], + [0, 0, 24851, 24865, 2523], + [3, 24828, 11], + "vents", + "nanotimer", + "temporal", + [3, 1387, 9], + [0, 2899, 1177, 2759, 1317, 4342, 1311, 1954, 1938, 1958, 1903, 1948, 1970], + "erialport", + [2, 24850, 24852], + "firmata", + [2, 24796, 24858], + "beautifier", + [2, 2294, 24856], + "fold", + "0A02", + "0A21", + "16x2 LCD", + "20x4 LCD", + "2D120X", + "2Y0A02", + [0, 27, 10376, 4590], + [1, 2343, 24870], + "2Y0A21", + "74HC595", + "ADXL335", + [0, 24901, 24903, 2514, 2537], + [2, 24796, 3428], + "ADXL345", + "ALS-PT19", + "ALSPT19", + "ANALOG", + "arduino", + "Ardumoto", + "AT42QT1070", + "BLINKM", + "BMP180", + "Continuous Rotation", + "DEFAULT", + "Diffused LED", + "DS18B20", + "Edison Arduino Block", + "Edison ", + "GPIO Block", + [2, 24886, 24887], + "I2C Block", + [2, 24886, 24889], + "PWM Block", + [2, 24886, 24891], + "edison", + "ESPLORA", + "EV3", + "galileo-io", + "galileo", + "GP2D120XJ00F", + "GP2Y0A02YK0F", + [2, 24925, 24926], + [0, 4593], + "GP2Y0A21YK", + [0, 4384, 2276], + "GP2Y0A41SK0F", + "GY-521", + "GY521", + "HD44780", + "High Torque", + "Hitec HS-35HD", + "Hitec HS-", + [1, 2343, 24939], + "Hitec HS-422", + [3, 24912, 11], + "5BB", + [2, 24913, 24914], + "625MG", + [2, 24910, 24916], + "Hitec HS-6", + "46WP", + [2, 24918, 24919], + "755HB", + [2, 24910, 24921], + "805BB", + [2, 24910, 24923], + [3, 24871, 11], + "ealth", + "Hitec HS-85MG", + "HMC5883L", + "HMC6352", + "Hobby Motor", + "HRLV-MaxSonar-EZ0", + "HT16K33", + "HTU21D", + "i2c", + "Infrared Proximity Sensor", + "Infrared ", + "Sensor", + [2, 24936, 24937], + [0, 24941, 24957, 2514, 2487], + "intel edison", + [ + 0, 12105, 668, 1457, 2139, 36838, 24762, 36840, 24783, 30162, 24785, 36841, 36842, 36843, 24818, 28111, 29471, + 36845, 24738, 28441, 36848, 30929, 36850, 36852, 31275, 36855, 36859 + ], + "intel galileo", + "ISL29125", + "JHD1313M1", + "Joystick", + "LCD1602", + "LCD2004", + "LCM1602", + "LED", + "LIDAR-Lite v2", + "Ludus Protoshield Wireless", + [3, 24951, 17], + "LV-MaxSonar-EZ0", + [3, 24953, 14], + [2, 24954, 1278], + "MCP23008", + [ + 0, 3242, 1091, 1138, 1758, 1999, 2714, 3467, 3445, 1983, 1413, 1437, 1676, 2020, 3144, 2658, 17913, 25671, 4707, + 1438, 1759, 2022, 2754, 4039, 4135, 4238, 4391, 1984, 1458, 1503, 2026, 2105, 3203, 4474, 1668, 2151, 2182, + 3761, 3784, 33145, 842, 24156, 11305, 36861, 26453, 29133, 3181, 3547, 4459, 29105, 31142, 1109, 33200, 1483, + 2794, 3173, 3310, 4294, 91, 5087, 4874, 1154, 1869, 36863, 20921, 36864, 36867, 5364, 5245, 27066, 26584, 1107, + 1151, 36868, 36869, 36871, 5254, 24358, 35563, 13834, 5071, 31008, 36872, 6541, 36873, 36874, 25892, 36875, + 8997, 4864, 28137, 2069, 36877, 3386, 16831, 36878, 34118, 36879, 9129, 12461, 27959, 36880, 7746, 5542, 30493, + 33761, 36882, 31071, 23843, 24725, 36885, 11907, 36887, 36889, 15887, 36890, 36892, 5328, 36895, 36897, 36899, + 29125, 36901, 36906, 36909, 36911, 36915, 36917, 36918, 36920, 36922 + ], + [2, 24925, 9257], + "MCP23017", + "MCP9808", + "Metal Gear", + "MJKDZ", + "MMA7361", + [2, 24796, 2942], + [1, 2343, 24971], + "MMA7660", + "MMA8462Q", + "MPL115A2", + "MPL3115A2", + "MPR121", + [0, 24982, 0, 24990, 2537], + "MPR121QR2", + "MPU-6050", + "MPU6050", + "MUXSHIELD2", + "NXT", + "OA41SK", + "PARALLEL", + "PCA9685", + "pcduino", + "PCF8574", + [0, 36927, 1147, 34631], + "PCF8574A", + [2, 24796, 32276], + "PCF8574AT", + "PCF8574T", + "@paralleldrive/cuid2", + "PCF8575", + "@poppinss/colors", + [0, 1851, 2656, 15204, 30960, 31482, 5317], + "PCF8591", + "photon", + "PIR Motion Sensor", + "QTOUCH", + "raspberry pi", + "raspberry", + "raspberrypi", + [2, 24999, 25005], + "@poppinss/", + "raspi-io", + "RedBoard", + "RGB LED", + "robotics", + "rpi", + "dumper", + "Servo", + "Shift Register 8-Bit SN74HC595", + [3, 25007, 14], + "SI7020", + "spark", + [2, 24999, 25017], + "spark core", + [1, 2343, 25035], + "spark-io", + "SparkFun Essential Sensor Kit", + "SparkFun ", + "macroable", + "Sensor Kit", + [2, 25016, 25018], + "Speed controller", + "Temperature", + "tessel 2", + "Thumb Joystick", + "TINKERKIT", + "TMP36", + "TSL2561", + "Ultrasonic Range Finder", + "usb", + "VKEY", + "Weather Shield Arduino", + [3, 25030, 15], + "Photon", + [2, 25031, 25032], + [2, 24999, 594], + [0, 0, 25036, 2514, 2537], + [0, 2899, 2759, 4342], + [1, 2343, 25041], + "@hapi/formula", + "@hapi/pinpoint", + "@hapi/tlds", + [0, 0, 25043, 25044, 2537], + [2, 6473, 3020], + [ + 0, 53, 87, 192, 5467, 5583, 1208, 1429, 1443, 1503, 1597, 16656, 1637, 1701, 1177, 1881, 1938, 2675, 2297, 2878, + 2881, 6385, 2900, 2904, 2910, 2990, 2899, 3400, 3561, 3566, 16658, 3613, 3672, 16578, 3758, 4042, 4320, 4323, + 4328, 4535 + ], + [0, 158, 11328, 4596, 36941, 1936, 1623, 5284, 6400, 5122], + [1, 2343, 25046], + [0, 25048, 25050, 25051, 2523], + "youch", + [0, 36951, 1496, 4002, 36950], + "youch-terminal", + [0, 3421, 2899, 1177, 2022, 35299, 3923, 1889, 1954], + [0, 4607, 17462, 2090, 7204, 4262, 3403], + [1, 2343, 25056], + [2, 24801, 25055], + "recoil", + "ssembler", + [0, 25057, 25061, 25062, 2537], + [0, 1329, 4431], + [2, 25059, 25082], + "@adonis", + "gzip-js", + [0, 4389, 4603], + [0, 4597, 17461, 6270, 1398, 3101], + "commitplease", + [1, 2343, 25065], + [0, 25066, 25068, 25078, 2443], + [0, 36965, 21539, 2215, 2685, 36966, 36967, 3369, 36968, 36971, 35299, 36972, 36975, 4597, 36976], + "grunt-git", + [0, 1177, 1889, 2022, 2899, 3421, 3923, 4039, 4193], + "-authors", + [2, 25067, 25069], + "-webkit", + [2, 3541, 25071], + "mpare-size", + [2, 21927, 25073], + [3, 10727, 15], + [2, 25075, 3766], + "karma-j", + [0, 2323, 36981, 4597, 2090, 6771, 2150, 7046], + [2, 26505, 6579], + [1, 2343, 25081], + [0, 25084, 25087, 25093, 34352], + [3, 835, 16, 7], + [2, 25085, 25086], + [0, 4597, 4431], + [3, 475, 8], + [3, 24165, 17, 8], + [0, 2494, 4389, 4600], + "grunt-html", + "owercopy", + [2, 2237, 25089], + "-local", + [2, 14336, 25091], + [0, 4597, 2323, 17461, 24456, 3101, 1871, 2585, 128], + "prototyping", + [1, 2343, 25096], + [0, 9652, 0, 25097, 2537], + [0, 4597, 4070, 22850, 2323], + [2, 24796, 2190], + "@japa/assert", + [1, 2343, 25101], + [0, 25102, 25105, 25107, 2523], + [0, 36996, 1851, 36997, 2202, 24462, 19094, 36998, 37000], + "@japa/expect-type", + "@japa/file-system", + [0, 1389, 2759, 21526, 3459, 37002, 30164, 4387, 4389, 4770], + "config-chain", + [0, 4607, 965, 23361, 37004, 1687, 7163, 1388], + "@japa/runner", + "code-quality", + "@japa/snapshot", + [1, 2343, 25112], + [0, 25113, 25116, 25117, 2487], + [0, 20378, 4042, 668, 3561, 3530, 27921], + [2, 25115, 15244], + [3, 7895, 14], + [ + 0, 4729, 1415, 27438, 1594, 984, 3189, 30023, 3445, 2278, 4200, 3510, 1759, 11480, 3266, 3493, 4072, 1544, + 28119, 1457, 28865, 4955, 37012, 34928, 3527, 1615, 1869, 31308, 16860, 3090, 58, 9743, 1763, 2007, 21688, + 37013, 3613, 37014, 37015, 24759, 30787, 37017, 24725, 1573, 10895, 3616, 29444, 8862, 31292, 28465, 4060, 811, + 28572, 18584, 5180, 28575, 16808 + ], + [0, 4967, 5130, 11498, 5331, 37019, 1983], + [2, 25119, 25121], + [3, 10844, 11], + [1, 2343, 25123], + "-console", + "argon2", + [0, 25124, 25132, 25133, 2537], + [0, 25375, 2071, 2151, 37024, 26479], + "knifecycle", + "yerror", + "edge.js", + "@mer", + "maid-js/mermaid-cli", + [2, 25128, 25129], + "mermaid", + [0, 6494, 4864, 4874, 2026, 4493, 91, 1983], + [ + 0, 1983, 5592, 37028, 37029, 37030, 37032, 2026, 37034, 36, 37036, 7433, 37031, 37038, 1932, 8172, 4083, 5995, + 37039, 37040 + ], + [1, 2343, 25136], + "architecture", + [0, 25139, 25149, 25150, 2537], + [2, 25138, 25151], + "ts-node-", + [ + 0, 188, 1983, 9348, 8114, 37052, 7797, 36805, 10984, 6371, 37047, 37046, 24097, 37049, 7639, 11016, 37051, 9312, + 25447 + ], + "-to-glob", + [2, 16774, 25140], + "@jscpd/html-reporter", + "@jscpd/", + [2, 25143, 139], + "-sarif-reporter", + [2, 2824, 25145], + "@jscpd/core", + [2, 25143, 207], + [ + 0, 3467, 4200, 1676, 2020, 3478, 23802, 3266, 4039, 4042, 4135, 1984, 668, 3537, 3742, 7799, 19571, 13151, + 28519, 1457, 2151, 2182, 3183, 1894, 3757, 3084, 3170, 3527, 27921, 91, 4874, 1615, 2226, 2990, 3105, 5245, + 8646, 30795, 8146, 7812, 3509, 4864, 7892, 3067, 37067, 9245, 8778, 5946, 3114, 4057, 37017, 21122, 3107, 8850, + 34971, 37061, 37065, 8862, 37074, 3112, 15277, 37062, 6373, 22823, 811, 3668, 37059, 7641, 37070, 37056, 1567, + 816, 37058, 37069, 37071 + ], + [0, 1983, 188, 4614], + "maintained", + [1, 2343, 25153], + [0, 25166, 25171, 25173, 4139], + "cst", + "adonisjs", + "jscs-jsdoc", + "jscs-", + "wikimedia", + [2, 10832, 25158], + [2, 25157, 25159], + "rved-words", + [2, 4020, 25161], + "to-double-quotes", + "to-single-quotes", + "vow-fs", + [ + 0, 30023, 1983, 3510, 15452, 26379, 3530, 4441, 27921, 37080, 2024, 37082, 3090, 37084, 36874, 26380, 37085, + 37014, 37087, 37092, 37093 + ], + "7.0.0", + [2, 5857, 25167], + [2, 8649, 22785], + "unit-coverage", + [ + 0, 4729, 1415, 3171, 37095, 2832, 26385, 3742, 24324, 2559, 37096, 1084, 4874, 13204, 1006, 37013, 7812, 37097, + 20374, 37100, 13471, 826, 8806, 5180, 6515, 8809 + ], + "style guide", + [0, 1983, 1984, 1973, 1192], + [1, 2343, 25175], + [0, 25176, 25180, 25182, 2523], + [0, 1437, 1209, 2720, 3183, 4726, 2708, 3077, 4294, 1257, 37108], + "@jsdoc/salty", + "catharsis", + [2, 20398, 57], + [0, 1906, 2323, 1172, 2899, 3220, 4170, 37110, 705, 1362, 1175, 2338, 2384, 37115, 37117, 2357, 37113, 1267], + "requizzle", + [0, 5592, 200, 32276, 4166, 8786, 5130, 1896, 13527, 1523, 1525, 35539, 3741, 2720], + [2, 25184, 25186], + "@aneuhold/", + [1, 2343, 25187], + "core-ts-api-lib", + [0, 25196, 0, 25197, 2537], + "current", + [2, 1469, 4479], + [2, 25188, 25189], + "object-to-", + "spawn-args", + [2, 25191, 25192], + [2, 25195, 1095], + [3, 25183, 18], + [0, 1687, 37123, 2070], + [0, 5472, 4386, 1973, 37125], + [1, 2343, 25199], + [0, 25201, 25206, 25207, 2487], + "ool", + [ + 0, 4449, 2070, 3171, 3917, 22990, 1437, 2975, 4753, 37130, 4135, 4734, 1448, 4566, 1525, 3181, 3105, 37131, + 2613, 37132, 36323 + ], + "master", + "config-master", + [2, 25184, 25205], + "main-scripts", + [ + 0, 2675, 2899, 4474, 1894, 6520, 91, 4865, 27098, 4874, 15743, 37139, 3400, 6503, 20290, 3720, 5254, 28189, + 37135, 192, 37137, 9129, 4131, 7639, 4232, 12458, 5467 + ], + [0, 29641, 4617, 7188], + [1, 2343, 25210], + "jsr", + [0, 0, 2667, 2514, 2537], + "data-urls", + "decimal.js", + "saxes", + [1, 2343, 25218], + "symbol-tree", + "w3c-xmlserializer", + "whatwg-url", + [0, 25222, 25223, 2514, 2537], + [2, 25261, 25262], + "sugar-free", + [2, 3192, 25220], + [0, 1104, 1496, 2012, 2061, 2070, 2685, 2741, 4227, 91, 4597, 4734, 4747], + [ + 0, 22909, 37149, 22821, 4865, 37152, 9129, 6503, 4874, 28198, 22900, 18438, 4891, 28189, 4892, 1009, 1011, 1177, + 2899, 4039 + ], + "webidl2js", + [1, 2343, 25226], + [0, 0, 25227, 2514, 34352], + [0, 2899, 3188, 2924, 91, 4874, 4677, 6503, 37157, 1584, 603], + [2, 25239, 25240], + [1, 2343, 25234], + "browser-re", + [2, 25230, 5460], + "cssom", + "nwmatcher", + [0, 25236, 0, 25241, 2487], + "selenium-s", + [0, 36805, 37163, 23423, 17494, 5337], + "tandalone", + [2, 25235, 25237], + [3, 8647, 12], + "li", + [0, 188], + [1, 2343, 25246], + "13.0.0", + [2, 5857, 25243], + "@trapezedev/project", + [0, 0, 25247, 25248, 2523], + [ + 0, 53, 61, 71, 4851, 87, 4856, 6503, 4874, 1011, 1191, 1195, 18571, 1429, 1628, 1177, 37170, 2899, 3951, 4039, + 4042, 4045, 4069, 4421, 4469, 91, 4533, 188, 4634, 4645, 19469, 4646, 2924, 4677 + ], + [0, 188, 1227, 1172, 91], + [0, 25260, 25258, 2514, 34352], + [2, 5051, 25257], + "results-interpreter", + "5.2.0", + [2, 5857, 25252], + "unicode-1", + "1.0.0", + [2, 25254, 25255], + "lice-ansi", + [ + 0, 53, 68, 5611, 37178, 15273, 19181, 442, 5245, 1006, 4874, 5254, 1009, 1011, 7677, 23203, 1177, 19492, 1945, + 1953, 19623, 1955, 1982, 17310, 1894, 4474, 1531, 91, 1983, 1984 + ], + "splash screen", + [0, 1676, 1994, 1996, 2000, 19186, 4135], + [3, 225, 10], + "5/blanditiis-numquam-expedita-neque", + [1, 2343, 25301], + "stylish", + [1, 2343, 25267], + [2, 25303, 25304], + [0, 0, 25268, 25270, 2523], + [0, 1397, 1192, 188], + "deeks", + [0, 188, 6609, 2999], + [1, 2343, 25273], + "doc-path", + [0, 25274, 25275, 25278, 2487], + [0, 37192, 37049, 37190], + [0, 24226], + "json2csv", + "csv2json", + [0, 2679, 23932, 37202, 1932, 188, 6284], + "csv-2-json", + [3, 25219, 12], + [1, 2343, 25282], + [0, 25283, 25286, 2514, 2537], + [0, 1437, 2570, 33215], + [2, 25280, 25285, 25288], + [3, 780, 9], + [ + 0, 53, 87, 37211, 1006, 32109, 5087, 13204, 37213, 37214, 1195, 37215, 1567, 1628, 2092, 2651, 1192, 2832, 2990, + 37217, 3144, 3177, 16581, 11801, 3618, 1894, 3754, 37220, 4227, 4307, 4333, 4334, 4337, 4468, 4469, 91, 4027, + 188, 4633, 2924, 4677, 4681, 4689, 19235 + ], + [1, 2343, 25289], + "aut-officiis-quae", + [0, 0, 25290, 25291, 2537], + [0, 5087, 4874, 1192, 3951, 4042, 4468, 91, 188, 4629], + [0, 188, 91, 4636], + "milliparsec", + [1, 2343, 25295], + "sort-on", + [0, 25299, 25300, 2514, 2523], + "@typ", + "icode/eslint-config", + [2, 25296, 25297], + [0, 5216, 28126, 37049, 30206, 1457, 2856, 37096, 3090, 3189, 30230, 3510, 3530, 15451, 27921, 29161, 30959, 4745], + [ + 0, 104, 31940, 8648, 811, 816, 6373, 10615, 33179, 37232, 20374, 29891, 11016, 17494, 34157, 5337, 11018, 25092, + 13393, 1549, 1759, 37235, 17850, 2559, 3294, 37236, 32977, 4039, 4042, 4076, 1531, 4493, 1983, 188 + ], + [0, 25305, 25306, 2514, 34352], + [1, 2343, 25412], + [3, 25284, 13], + "oloremque-voluptas-facere-nemo", + [0, 2570, 3008], + [0, 1175, 1193, 1240, 1567, 1192], + [2, 25280, 25391], + [1, 2343, 25309], + [0, 25310, 0, 25311, 2537], + [0, 37247, 2591], + [0, 188, 4643], + "0.0.0", + [2, 25254, 25312], + [1, 2343, 25315], + [0, 25316, 25317, 2514, 4139], + [0, 37049], + [ + 0, 188, 1192, 1437, 2020, 21665, 1177, 4042, 4135, 2026, 2924, 1836, 2151, 1610, 3758, 4614, 1193, 1628, 91, + 4634, 53, 4874, 1195, 37253, 4640, 87, 17494, 3957, 15134, 4073, 4261, 6373, 37170, 4679, 4684, 811, 1567, 816 + ], + [1, 2343, 25319], + [0, 25320, 0, 25321, 2523], + [0, 37258], + [0, 614, 888, 37260, 2150, 4647, 37261], + [1, 2343, 25323], + [0, 25324, 25325, 2514, 2537], + [0, 9129, 18704, 20960, 3181], + [0, 5087, 4874, 2070, 1192, 3144, 4039, 4468, 91], + [1, 2343, 25327], + [0, 16409, 25329, 25330, 2537], + [2, 2842, 24077], + [0, 192, 5467, 1389, 1527, 1652, 2675, 1192, 4535], + [0, 4649, 3497, 89, 2731], + [1, 2343, 25332], + [0, 25334, 0, 25335, 4139], + "meriyah", + [0, 37277, 3183], + [0, 614, 6435, 2150, 1586], + "jsonparse", + [1, 2343, 25338], + [0, 25339, 25340, 25341, 2487], + [0, 15642, 1389, 1457, 15016, 37284, 4431, 1695], + [0, 1377, 3188, 4237, 4389, 4535, 37286], + [0, 1389, 25429, 2282, 6374, 6147, 1388], + [1, 2343, 25348], + "jws", + "lodash.i", + "ncludes", + [2, 25344, 25345], + [2, 3045, 19366], + [0, 25354, 12529, 25356, 2537], + "integer", + [2, 3045, 25349], + "lodash.isn", + "umber", + [2, 25351, 25352], + [0, 33304, 26786, 1149, 37294, 33313, 37297, 33328, 33329, 37298, 37300], + "lodash.once", + [0, 33359, 3469, 3259, 14873, 1552, 3230, 37303, 4651, 4104, 33365], + [1, 2343, 25358], + [0, 25359, 25360, 25367, 4139], + [0, 1137, 1149, 1209, 3188, 3760, 705, 37308], + [ + 0, 37313, 1429, 1431, 1512, 18192, 2026, 2061, 2323, 37315, 2384, 2419, 2463, 2590, 2659, 34317, 2759, 2899, + 37316, 3297, 37317, 4089, 37320, 37324, 37325, 4547, 3348, 4747 + ], + [2, 25362, 25364], + [3, 32971, 13], + "@jspm/generator", + "phases", + "fu/eslint-config", + [2, 13179, 25365], + [0, 5472, 13428, 11132, 13841, 28522], + [1, 2343, 25369], + [0, 25371, 25373, 25374, 2537], + "webdav", + [ + 0, 37331, 37332, 37334, 37335, 37336, 37337, 37339, 37342, 37344, 37345, 37347, 37350, 37352, 37355, 37358, + 37361, 37363 + ], + "states", + [ + 0, 37365, 1192, 1177, 37366, 9422, 4468, 1894, 1317, 91, 5087, 2787, 5366, 37368, 1938, 19956, 1895, 37371, + 1011, 37374, 1009 + ], + [0, 37376, 17626, 8172], + "dotenv-local", + [2, 28322, 364], + "lie", + [1, 2343, 25381], + "jszip-utils", + [3, 21510, 13], + [0, 25384, 11736, 25385, 4139], + "versionify", + [2, 25380, 25382], + [0, 37390, 37393, 1327, 1394, 37394, 37397, 37398, 37401, 37404, 37408, 4747], + [0, 4653, 4990, 200, 37410, 9420], + "deflate", + [1, 2343, 25389], + "inflate", + [0, 25390, 25392, 2514, 2443], + [ + 0, 19611, 1006, 8818, 37424, 37427, 37429, 1082, 25361, 1393, 37433, 1835, 37014, 1994, 2018, 20575, 2215, 9506, + 20465, 3173, 23175, 4121, 4388, 4409, 33215, 4695 + ], + "quisquam-quod-ab-aut", + [ + 0, 53, 90, 107, 34765, 25376, 20577, 8780, 5087, 7746, 28919, 4874, 25422, 37436, 1195, 37437, 37438, 1509, + 1593, 1622, 1628, 1668, 1856, 4913, 1177, 20281, 2092, 2135, 2203, 37439, 2629, 2675, 2759, 1192, 21124, 2774, + 2777, 2784, 2794, 2843, 2856, 695, 2969, 2990, 1209, 3021, 3144, 25333, 3177, 21016, 640, 3421, 3446, 20085, + 1894, 3717, 3754, 23738, 3786, 89, 3824, 30570, 3978, 9340, 3988, 3992, 3999, 4039, 12936, 4183, 4294, 4307, + 4072, 4426, 4441, 4452, 4469, 91, 4549, 4027, 37440, 37441, 4677, 37442, 4746 + ], + [1, 2343, 25394], + [0, 25396, 25397, 25398, 2399], + "@diahkomalasarinpm/odio-facilis-beatae", + [0, 4729, 4200, 1082, 3456, 1675, 1525, 1084, 3527, 2628, 1874, 37449], + [ + 0, 1700, 1429, 2323, 1192, 3190, 1177, 2205, 3698, 1593, 1637, 3561, 2924, 2098, 3758, 1461, 1628, 2338, 3191, + 4027, 53, 1436, 4677, 1165, 1178, 1195, 3060, 4307, 97, 3057, 37457, 3618, 22651, 87, 37453, 4681, 90, 1210, + 1959, 37458, 4409, 37451, 37454, 83, 71, 5757 + ], + [0, 2924, 6374, 4674, 5260, 4202, 24095, 9816, 33126, 37460, 16660], + [1, 2343, 25400], + [0, 25401, 25402, 25405, 2399], + [0, 1842, 3932, 1511, 1525, 2727, 1615, 2704, 4689, 37466, 13077, 29067, 37449, 37468], + [0, 37472], + [3, 1754, 13], + "qjobs", + [0, 2924, 200, 4989, 1237, 6996, 5122], + "unit-reporter", + [2, 25077, 25406], + "cript-", + [2, 25408, 15473], + [2, 2916, 25409], + "timer-shim", + [0, 25414, 25417, 25418, 34352], + [1, 2343, 25419], + [0, 3144, 1511, 3173, 3440, 3781, 4121], + "spectacular", + "execution", + [ + 0, 2934, 2611, 1192, 2020, 2675, 1622, 1177, 38, 1544, 1701, 2026, 2078, 2203, 2924, 1894, 1610, 1699, 4342, 48, + 442, 470, 1193, 91, 53, 4874, 2092, 2990, 3400, 2099, 11485, 6494, 192, 1953, 27928, 37480, 4257, 87, 23531, + 7746, 37482, 1939, 1942, 1938, 20281, 1982, 1895, 1955, 19344, 5467 + ], + [0, 2924, 2663, 5001], + [0, 25431, 25433, 2514, 34352], + [1, 2343, 25567], + "os-shim", + [2, 25423, 25430], + "@types/x", + "karma-p", + "karma-plugin", + "reprocessor", + [2, 25424, 25426], + [3, 14927, 12], + [2, 25428, 25200], + "xhashjs", + [ + 0, 4729, 3445, 32876, 34228, 2026, 33507, 1457, 9241, 1511, 11993, 7798, 1536, 2215, 4150, 4121, 37490, 37491, + 37493, 6494, 37494, 37499, 37500, 37503, 2664, 4679, 1549, 33189, 37505 + ], + [2, 25280, 25435], + [ + 0, 2611, 1192, 695, 1082, 2020, 2675, 37507, 3144, 1622, 1177, 3127, 4039, 1544, 1593, 2924, 1894, 3758, 4342, + 48, 1193, 1628, 2659, 91, 53, 4874, 2969, 2990, 3400, 4677, 1195, 4307, 4224, 18052, 4689, 97, 192, 1953, 3923, + 9252, 27928, 4257, 87, 23531, 22102, 4523, 7806, 8780, 1939, 1942, 2651, 12837, 68, 37508, 37513, 1938, 20281, + 1895, 2780, 83, 5467, 13052 + ], + [1, 2343, 25439], + "suscipit-assumenda-a-assumenda", + [2, 2877, 15473], + "browser-stack", + [2, 25280, 25442], + [0, 25440, 25441, 25444, 2523], + [0, 4294, 2626, 37503], + [0, 3421, 2899, 4193, 1177, 2026, 2924, 1894, 4342, 1955, 4679], + "vitae-sequi-voluptas-a", + [2, 25445, 25446], + [0, 2924, 11498, 6609, 1237, 37523, 37525, 2663, 2026], + [3, 25438, 13], + "oluptatibus-vero-magni-rerum", + [2, 29825, 29840], + [1, 2343, 25449], + [0, 25450, 25451, 2514, 2523], + [0, 4388, 4695], + [ + 0, 841, 4874, 4891, 37531, 7858, 1584, 1700, 1177, 37534, 1915, 2092, 2675, 2990, 3150, 3697, 1894, 37535, 89, + 4307, 4484, 91, 1984, 2924, 4689 + ], + [1, 2343, 25459], + "ibrik", + "ffee-preprocessor", + [2, 23574, 25454], + "karma-r", + "equirejs", + [2, 25456, 25457], + [0, 25463, 25464, 25465, 2523], + "karma-re", + "porter", + [2, 25460, 25461], + [0, 2117, 21520, 5898], + [0, 2675, 4484, 37542, 2924, 1894, 91, 37544, 1006], + [0, 2924, 1698], + [1, 2343, 25467], + [0, 0, 25475, 25480, 2523], + "Safari", + " Tech Preview", + [2, 25468, 25469], + "TechPreview", + [2, 25468, 25471], + "IE", + "Chrome", + [0, 1429, 1177, 1938, 2899, 3203, 3275, 2924], + "Chrome Canary", + "Chrome ", + "Headless", + [2, 25477, 25478], + [0, 2924, 13382, 202, 6374, 11053], + "Chromium", + [1, 2343, 25483], + [0, 0, 25486, 25487, 2523], + "Firefox", + "Opera", + [ + 0, 1192, 1177, 2203, 2924, 2759, 1894, 1596, 442, 4227, 91, 5087, 1953, 27928, 1939, 1942, 33002, 1938, 20281, + 1982, 1895, 1955, 19344 + ], + [0, 2924, 4227], + [1, 2343, 25489], + [0, 25491, 0, 25494, 2537], + [2, 25764, 25765], + [0, 2215, 1615, 4449, 3524], + "chai-fs", + "os-homedir", + [0, 12197, 29726], + [1, 2343, 25496], + [0, 25497, 25498, 25499, 4139], + [0, 1401, 1676, 1856, 37568, 34639, 37569], + [0, 1400, 2323, 2447, 2839, 2272, 4389], + [0, 4699, 14609, 21302, 37572, 37573, 6645, 6761, 20863, 36, 5576], + "@asdfgertyjhnpm/a-unde-explicabo-eaque", + "firefox", + [1, 2343, 25503], + [0, 25504, 25505, 25506, 2523], + [ + 0, 37578, 37579, 37581, 37585, 37586, 37587, 37589, 37592, 37594, 37595, 37598, 37600, 1676, 1869, 37602, 37603, + 37606, 37609, 37612, 37613, 37615, 3171, 3441, 37617, 3756, 25990, 37619, 3781, 25996, 34383, 37623, 35299, + 37624, 37628, 37631, 37633, 37636, 37637, 37638 + ], + [ + 0, 53, 68, 5712, 87, 37641, 1090, 37644, 25992, 37646, 1290, 37647, 1398, 37648, 1618, 3588, 1177, 1903, 1938, + 1953, 1958, 2099, 37650, 3486, 37652, 3767, 4092, 4131, 4151, 15039, 20496, 4387, 4389, 4409, 15046, 2924, 4677, + 37654 + ], + [0, 37656, 37657, 1764, 37658, 37659, 37663, 37665, 22115, 37666, 37616, 37667, 15247, 37668, 4702], + [1, 2343, 25508], + [0, 25509, 25512, 25515, 2399], + [0, 1326, 3263], + [2, 25511, 25517], + [3, 25500, 16], + [0, 29569, 4384], + "adapter", + [2, 2877, 25513], + [0, 7734, 37674, 37675], + [1, 2343, 25518], + "nesciunt-molestias-reprehenderit-occaecati", + [0, 25519, 25520, 2514, 2523], + [0, 2026, 3368, 4545], + [0, 1506], + [3, 25395, 19], + [1, 2343, 25523], + [0, 0, 25524, 2514, 2537], + [0, 1429, 2297, 2899, 1177, 4042, 1894, 2878, 2900, 1159, 3734, 37688, 2881, 2889, 2912, 2895, 13867, 19910], + [1, 2343, 25526], + [0, 0, 25527, 25528, 2487], + [0, 4652, 2070, 10679, 4030, 2856, 37693, 2272, 3188, 37694, 3460, 1317, 26825, 4535, 1389, 3736, 37320], + [0, 37696, 37698, 14833, 1862, 6567, 14834, 14835, 4706, 1149, 14629, 6804], + [1, 2343, 25530], + [0, 25531, 6538, 2514, 2523], + [0, 37703], + [1, 2343, 25533], + [0, 0, 25534, 25535, 2399], + [0, 13896, 1776, 2899, 3220, 37708, 37709], + [0, 6574, 29179], + [1, 2343, 25537], + [0, 25538, 25539, 25540, 4139], + [0, 37715, 13388, 1149, 2753, 37716, 37718, 3923, 18730, 4252, 20931, 4715], + [0, 48, 53, 87, 37721, 4874, 37722, 1148, 37724, 1177, 37725, 1192, 4039, 4238, 34395, 4431, 37727], + [0, 4709, 2942, 6807, 30124, 21111, 1409, 3533, 3079, 2041, 1781, 3101], + [1, 2343, 25542], + [0, 25543, 25545, 25546, 2487], + [0, 37735, 3429, 20931, 4715], + [3, 2910, 12], + [0, 37739, 37741, 1429, 1177, 1954, 2899, 4039, 7734], + [0, 4709, 37743, 37744, 37745], + [1, 2343, 25548], + [0, 25549, 25551, 25552, 2537], + [0, 37716, 3923, 20931], + "safari", + [0, 4874, 1148, 1173, 1264, 1693, 1177, 37721, 2899, 3421, 4039, 37727], + [0, 4709, 4714, 37752], + [1, 2343, 25554], + [0, 25556, 25559, 25560, 2537], + "global-agent", + [0, 37758, 2070, 1209, 37759, 4431, 37760], + "al-agent", + [2, 4865, 25557], + [0, 1429, 2151, 2759], + [0, 1370, 3383, 6355, 14510, 1508, 4796], + [1, 2343, 25562], + [0, 0, 16487, 25563, 2443], + [0, 6940, 37767, 3924, 37769, 16580, 37770, 7295, 2585, 4718, 4717, 28734, 4719], + [1, 2343, 25565], + [0, 0, 9264, 25566, 4139], + [0, 4718, 4719, 5547, 1671, 6922], + [0, 25576, 25577, 25578, 34352], + [1, 2343, 25597], + "karma-br", + "ief-reporter", + [2, 25569, 25570], + "sourcemap-", + [2, 21536, 8754], + [2, 25572, 25573], + [2, 12612, 25574], + [0, 16781, 3714, 10761, 4695, 37780], + [0, 4874, 4891], + [0, 37783, 37784, 2924, 37786, 20164, 37788, 37789, 37790], + [1, 2343, 25580], + [0, 25581, 25582, 25583, 2537], + [0, 1110, 4290, 4294], + [0, 1166, 1437, 1596, 6474, 3421, 4481, 1906], + [ + 0, 4719, 6940, 4720, 6980, 7152, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 1871, 6621, 1867, 6983, 6616, + 7244, 4166, 4744, 3073, 6807, 6876, 2585 + ], + [1, 2343, 25585], + [0, 25586, 6538, 25587, 2487], + [0, 19187, 4174], + [0, 37808, 29999], + [1, 2343, 25589], + [0, 0, 25590, 25593, 2537], + [0, 1317, 1401, 1177, 1895, 1955, 2203, 2899, 3421, 1894, 34639], + [2, 8652, 2013], + "keydown", + [0, 7299, 7172, 6761, 6729, 7057, 6145], + "keyup", + "metakey", + "keyname", + [0, 25599, 25600, 25601, 34352], + [ + 0, 2342, 2402, 2457, 2488, 2531, 2540, 2540, 2630, 2488, 2688, 2488, 2698, 2737, 2488, 2775, 2799, 2818, 2840, + 2939, 3016, 3110, 3207, 3247, 3279, 3307, 3448, 3515, 3593, 3631, 3723, 3782, 3844, 3879, 3908, 3929, 3952, + 4006, 4016, 4096, 4154, 4203, 4241, 4263, 4286, 4308, 4331, 4348, 4417, 4444, 4476, 4506, 4528, 4573, 4655, + 4673, 4700, 4743, 4813, 4953, 4994, 5004, 5007, 5013, 5016, 5019, 5023, 5028, 5031, 5034, 5037, 5041, 5044, + 5052, 5099, 5134, 5137, 5141, 5144, 5150, 5171, 5174, 5199, 5203, 5211, 5231, 5255, 5266, 5270, 5289, 5299, + 5289, 5333, 5360, 5373, 5379, 5437, 5486, 5493, 5516, 5544, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, + 5566, 5566, 5566, 5566, 5566, 5574, 5566, 5574, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5574, 5574, 5566, + 4286, 5566, 5566, 5578, 4286, 5574, 5566, 5566, 5566, 5566, 5566, 5566, 5574, 5574, 5574, 5580, 4286, 5566, + 5566, 4286, 5566, 4286, 5574, 5591, 5599, 5612, 5624, 5629, 5635, 4286, 5643, 5648, 5665, 5672, 5574, 5718, + 5723, 5566, 5566, 5566, 5578, 5566, 5566, 5566, 5566, 5566, 5578, 5566, 5566, 5566, 4286, 5727, 5566, 5566, + 5566, 5578, 5566, 5566, 5566, 5578, 5566, 5574, 5730, 5848, 5870, 5886, 5894, 5899, 5902, 5906, 5908, 5912, + 5919, 5965, 5985, 5992, 5999, 6050, 5566, 5566, 5566, 5566, 6069, 5566, 5566, 5566, 5566, 5578, 5574, 5566, + 5566, 5566, 5566, 5566, 5566, 5566, 5566, 4286, 5566, 6088, 6101, 6115, 6119, 6124, 6131, 6152, 6159, 6163, + 6172, 6179, 6184, 6187, 6193, 6201, 5566, 5580, 6206, 6210, 5578, 5574, 6219, 5299, 6222, 6227, 6232, 6236, + 6239, 6242, 6246, 6250, 6254, 6257, 6261, 6265, 6274, 6278, 6288, 6292, 6304, 6313, 6344, 6357, 6360, 6365, + 6368, 6402, 6406, 6410, 6416, 6427, 6431, 6440, 6444, 6483, 6535, 6555, 6559, 6571, 5299, 6612, 5299, 5635, + 5299, 6630, 6664, 6676, 6684, 6719, 6745, 6772, 6823, 6852, 6886, 6906, 6924, 6942, 6989, 7012, 7043, 7088, + 7112, 7136, 7139, 7143, 7160, 7187, 7207, 7237, 5566, 5566, 5574, 5566, 5574, 4286, 5566, 5566, 7257, 5566, + 5566, 5727, 5566, 4286, 5566, 5566, 5566, 5566, 5566, 5566, 7257, 5566, 5578, 5578, 5566, 5566, 5566, 7264, + 7271, 7278, 7294, 7307, 7323, 7327, 7332, 7338, 7343, 7348, 7357, 7363, 7368, 7373, 7380, 7385, 7391, 7396, + 7405, 7410, 7414, 7419, 7424, 7430, 7437, 4286, 4286, 5574, 7442, 7447, 7450, 5566, 5566, 5566, 5566, 5566, + 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5574, 5566, 5574, + 5566, 5566, 5566, 5566, 7452, 7457, 7462, 7473, 7478, 7483, 7488, 7493, 7498, 7502, 7506, 7510, 7513, 7516, + 7538, 7541, 7544, 7548, 7552, 7556, 7560, 7564, 7568, 7571, 7574, 7257, 7578, 7587, 7592, 7600, 7629, 7654, + 7694, 7698, 7702, 7711, 7736, 7756, 7767, 7772, 7777, 7782, 7802, 5566, 5566, 5566, 27071, 5574, 4286, 5578, + 5566, 5574, 5566, 5566, 27071, 4286, 7832, 7848, 7861, 7874, 5727, 7882, 7885, 7901, 7916, 7925, 7930, 7947, + 7953, 7960, 7965, 7968, 7972, 7977, 7981, 7984, 7987, 7991, 7996, 7999, 8004, 8008, 8012, 8015, 8020, 8024, + 8027, 8030, 8035, 8040, 8045, 8051, 8054, 8058, 8062, 8066, 8070, 7965, 8075, 8081, 8086, 8091, 8100, 8104, + 8106, 8128, 8143, 8178, 8195, 8207, 8213, 8223, 8227, 8234, 8237, 8242, 8258, 8266, 8270, 8281, 8289, 8311, + 8318, 8351, 5574, 8366, 8370, 8374, 8378, 8382, 8385, 8388, 8394, 8398, 8403, 8407, 8412, 8416, 8445, 8450, + 8455, 8460, 8463, 8465, 8467, 8470, 8473, 8478, 8481, 8485, 8487, 8490, 8493, 8497, 8500, 8502, 8507, 8517, + 8542, 8559, 8564, 8575, 8578, 8590, 8594, 8598, 8602, 8621, 8637, 8642, 8681, 8685, 8690, 8698, 8706, 8717, + 8725, 8731, 8759, 8783, 8796, 8812, 8815, 8833, 8844, 8854, 8857, 8865, 8867, 8872, 8104, 8872, 8874, 8879, + 8884, 8898, 8929, 8940, 8963, 8972, 8977, 8988, 8104, 8865, 8865, 8104, 7965, 7965, 8992, 8994, 8996, 9001, + 8996, 9003, 9014, 9018, 9022, 9027, 9032, 9037, 9042, 9050, 9058, 4286, 8706, 8865, 9063, 9068, 9079, 9084, + 8865, 9092, 9101, 9108, 9137, 9142, 9149, 9154, 9158, 9175, 9180, 9189, 8996, 9200, 9205, 9223, 9259, 9266, + 9275, 9285, 9290, 9298, 9306, 9349, 9372, 9386, 9389, 9392, 9411, 34415, 9438, 9445, 8872, 9467, 9522, 9528, + 9532, 9540, 9545, 8104, 9585, 9592, 9599, 9604, 8706, 5574, 9609, 9614, 9619, 9633, 9639, 9643, 9650, 9656, + 9664, 9668, 9672, 9683, 9690, 9696, 9701, 9709, 9717, 9727, 9754, 9758, 9763, 9798, 9822, 9831, 9882, 9886, + 9889, 9894, 9898, 9902, 9908, 9912, 9917, 9922, 9927, 9930, 10085, 10111, 10121, 10221, 10287, 10316, 10322, + 10329, 10334, 10341, 10359, 10362, 10379, 10385, 10391, 10411, 10421, 10433, 10437, 10440, 10449, 10453, 10457, + 10461, 10465, 5289, 10470, 10474, 10478, 10482, 10486, 10490, 10494, 10499, 10502, 10507, 10512, 10516, 10519, + 10524, 10529, 10532, 10537, 10542, 10547, 10552, 10558, 10561, 10566, 10571, 10577, 10582, 10585, 10589, 10610, + 10620, 10644, 5574, 10666, 10671, 10694, 10715, 10767, 10778, 10794, 10801, 10822, 10857, 10872, 10891, 10905, + 10910, 10919, 10928, 10953, 10967, 10980, 11001, 11012, 11023, 11030, 11044, 11050, 11058, 11062, 11090, 11099, + 11115, 11121, 11140, 11149, 34415, 11157, 11160, 11205, 11222, 11237, 11250, 11309, 11353, 11386, 11403, 11410, + 11427, 11447, 11458, 11460, 11464, 11468, 11474, 11491, 11495, 11505, 11511, 11529, 11541, 11545, 8992, 11549, + 11552, 8865, 11559, 11563, 8865, 11568, 11573, 11577, 11582, 11587, 8706, 11602, 11611, 11632, 11643, 11647, + 11652, 11657, 11661, 11665, 11670, 11675, 11679, 11683, 11688, 11693, 11698, 11703, 11707, 11712, 11717, 11721, + 11726, 11730, 11734, 11739, 11744, 11749, 11754, 11759, 11764, 11769, 11774, 11779, 11782, 11786, 11791, 11816, + 11822, 11826, 11831, 11845, 11850, 11855, 11860, 11872, 11888, 11902, 11913, 11915, 11920, 11949, 11957, 11965, + 11968, 11972, 5578, 11981, 11986, 11992, 11998, 12006, 12017, 12022, 12029, 12031, 12035, 12039, 12051, 12069, + 12098, 12109, 12114, 12138, 12146, 12150, 12156, 12174, 12211, 12225, 12238, 12250, 12256, 12261, 12266, 12272, + 7257, 12280, 12291, 12298, 12308, 12341, 12362, 12366, 12376, 12379, 12383, 12390, 12408, 12430, 12465, 12480, + 12484, 12488, 12493, 12497, 12502, 12506, 12511, 12516, 12521, 12527, 12531, 12538, 12543, 12548, 12553, 12559, + 12563, 12117, 12573, 12579, 12584, 12595, 12623, 12628, 12633, 12638, 12643, 12647, 12657, 12664, 12670, 12673, + 12683, 12697, 12765, 12770, 12805, 12819, 12828, 12843, 12855, 12859, 12863, 12868, 12873, 12876, 12885, 12891, + 12897, 12903, 12919, 12945, 12949, 12955, 8992, 12985, 13000, 13010, 13015, 5574, 13020, 13026, 13032, 13044, + 13074, 13111, 13147, 13156, 13173, 13211, 13246, 13251, 13255, 13270, 13292, 8027, 8027, 13299, 13308, 13315, + 13323, 13331, 13341, 13348, 13353, 13360, 13366, 13376, 13383, 13398, 13409, 11913, 13423, 13430, 13434, 13439, + 13450, 13469, 13534, 13541, 13561, 13577, 13585, 13595, 13601, 5566, 13606, 13622, 13629, 13636, 13642, 13646, + 13650, 13660, 13677, 13683, 13686, 13700, 13706, 13715, 13720, 13727, 13734, 13743, 13749, 13762, 13782, 13794, + 13801, 8706, 13808, 13819, 5574, 13826, 13854, 13863, 13886, 13902, 13906, 13911, 11913, 13919, 13932, 13937, + 13940, 13946, 13950, 13955, 13960, 13966, 13971, 8872, 13975, 13978, 13989, 13992, 14002, 14007, 14015, 14019, + 14032, 5727, 14048, 14054, 14061, 14068, 14071, 14075, 14088, 14095, 14101, 14110, 14115, 7930, 14120, 14127, + 7930, 8865, 14138, 14142, 14147, 14150, 14155, 14172, 14202, 14232, 14236, 14250, 14258, 14266, 14272, 14279, + 14285, 14289, 14294, 14298, 14304, 14313, 14322, 14327, 14330, 14340, 14346, 14351, 14360, 14363, 14368, 14377, + 14383, 14391, 14397, 14402, 14411, 14424, 14437, 14470, 14498, 14513, 14522, 14528, 14532, 14537, 14542, 14598, + 14612, 14625, 14633, 14650, 14659, 14665, 14703, 14725, 14733, 14742, 14752, 14762, 14766, 14778, 14788, 14793, + 14797, 14802, 14806, 14811, 14815, 14820, 14825, 14841, 14851, 14859, 14865, 14876, 14882, 14887, 14893, 14899, + 14906, 14912, 14916, 14920, 14929, 14936, 14948, 14956, 14965, 14974, 14987, 14996, 15004, 15049, 15066, 15074, + 15081, 15091, 15098, 15109, 15118, 15123, 15142, 15147, 15154, 15158, 15166, 15171, 15178, 15184, 15189, 15198, + 15205, 15211, 15216, 15226, 15233, 15241, 15249, 15255, 15265, 15274, 15284, 15296, 15299, 15313, 15325, 15330, + 15335, 15343, 15350, 15357, 15364, 15369, 15378, 15382, 15388, 15394, 15404, 15410, 15416, 15430, 15435, 15443, + 15456, 15503, 15517, 15521, 15528, 15542, 15564, 15589, 15628, 15640, 15650, 15655, 15662, 15727, 15732, 11913, + 8872, 15737, 8872, 15740, 15749, 15752, 15758, 15766, 15780, 15785, 15806, 15811, 15819, 15824, 15829, 8706, + 15835, 15845, 15851, 15857, 15860, 15865, 15868, 15895, 15901, 15914, 15919, 8994, 8872, 15923, 15934, 15939, + 15943, 15947, 8706, 15952, 15959, 15966, 15971, 15975, 15981, 15987, 15993, 16011, 16017, 16024, 16029, 16034, + 16038, 16043, 16047, 16051, 16059, 16067, 5574, 16072, 16084, 16098, 16103, 16119, 16125, 16131, 16135, 16139, + 16155, 16158, 16164, 16173, 16177, 16185, 16192, 16197, 16203, 16208, 16213, 5727, 16217, 16222, 16227, 16241, + 16253, 16283, 16287, 16292, 16298, 5574, 16303, 16312, 16318, 16326, 16332, 16335, 5578, 16338, 16346, 16353, + 16357, 16362, 8996, 16367, 16371, 16377, 16383, 16392, 16406, 16413, 16419, 16428, 16437, 16451, 16457, 16464, + 16468, 16472, 16489, 16496, 16500, 16507, 4286, 16516, 4286, 16522, 16538, 16541, 16548, 16552, 16567, 16586, + 16592, 16616, 16624, 16633, 16652, 16665, 16669, 16677, 16680, 16685, 16698, 16704, 16707, 16717, 16732, 16756, + 16764, 16788, 16797, 16802, 16812, 16816, 16834, 16846, 16849, 16864, 16871, 16883, 16890, 16896, 16902, 16907, + 16913, 16924, 16929, 16942, 16948, 16958, 16963, 16970, 16975, 16979, 16985, 16996, 17004, 17015, 17026, 17032, + 17038, 17053, 17061, 17066, 17072, 17079, 17087, 17105, 17117, 17124, 17135, 17139, 17145, 17152, 17156, 17161, + 17172, 17177, 17187, 17200, 17207, 17226, 17230, 17236, 17246, 17254, 17261, 17268, 17284, 17292, 17325, 17334, + 17341, 17347, 17350, 17361, 17386, 17419, 17430, 17433, 17443, 17451, 17465, 17472, 17482, 17489, 17505, 17511, + 17518, 17524, 17533, 17541, 17548, 17555, 17560, 8104, 8865, 8992, 17569, 17574, 8865, 17588, 17598, 17604, + 17611, 17633, 17654, 17685, 17719, 17741, 17745, 17749, 17759, 17773, 17777, 17781, 17789, 17795, 17799, 17809, + 17815, 17821, 17828, 17839, 17844, 17856, 17862, 17868, 17871, 17879, 17886, 17891, 17937, 17952, 17955, 17958, + 17961, 17967, 17970, 17980, 17987, 18013, 18015, 18024, 18027, 18033, 18039, 18053, 18058, 18064, 18067, 18077, + 18083, 18086, 18091, 18095, 18099, 18107, 18117, 18122, 18128, 18134, 18140, 18149, 18154, 18160, 18165, 18169, + 8872, 18178, 18188, 18194, 18202, 18208, 18213, 18218, 18223, 18242, 18247, 18262, 8865, 18270, 18274, 18293, + 18298, 18303, 18307, 18311, 18366, 18399, 18404, 18410, 18418, 18441, 18449, 18453, 18466, 18469, 18472, 8872, + 18478, 18492, 18507, 18530, 18538, 5574, 18543, 18548, 18556, 18560, 18588, 18604, 18608, 18623, 18625, 18631, + 18650, 18653, 18665, 18676, 18682, 18724, 18755, 18781, 18808, 18842, 18847, 18850, 18874, 18882, 18893, 11458, + 8865, 18899, 18911, 18915, 18919, 18923, 18929, 18934, 18939, 18946, 18949, 18955, 18960, 18972, 18975, 18999, + 19010, 19014, 19023, 19027, 19032, 19039, 19063, 19085, 19090, 19104, 19110, 19115, 19134, 11913, 19140, 8865, + 19142, 19149, 19154, 19159, 34415, 19165, 19174, 19191, 19200, 19215, 19233, 19239, 19248, 19255, 19260, 7965, + 19268, 19275, 19279, 19290, 5578, 19293, 19298, 19305, 19323, 19329, 19341, 19346, 19356, 19362, 19367, 19372, + 19379, 19387, 19391, 19394, 19398, 19410, 19420, 19427, 34415, 19432, 19452, 19456, 19460, 19483, 19487, 19501, + 19508, 19518, 19532, 19543, 19550, 19561, 19594, 19600, 19633, 19643, 19654, 19660, 19662, 19667, 19674, 19680, + 19685, 19694, 19699, 19703, 19714, 19718, 19723, 19738, 19743, 19752, 19765, 19772, 19781, 19789, 19793, 19804, + 19809, 19814, 5580, 19817, 19822, 19832, 19846, 19854, 19857, 19868, 19873, 19880, 19887, 19891, 19897, 19901, + 19916, 19924, 19929, 19933, 19936, 19952, 19960, 19969, 19979, 19985, 19994, 20002, 20007, 20022, 20027, 20036, + 20041, 20053, 20058, 20067, 20071, 20079, 20087, 8872, 20094, 20101, 20109, 8872, 20114, 20125, 20129, 20134, + 20141, 20148, 20155, 20157, 20161, 20166, 20177, 20196, 20209, 20217, 20225, 20233, 20236, 20240, 8865, 20249, + 20255, 20260, 20270, 20277, 20287, 20292, 20297, 20302, 20310, 20318, 20323, 20337, 20345, 20358, 20363, 20381, + 20388, 20391, 20397, 20404, 20411, 20431, 20440, 20456, 20462, 20487, 20498, 20503, 20509, 20512, 20532, 20555, + 20560, 20569, 20579, 20585, 20591, 20596, 20603, 20605, 20608, 20615, 20617, 20629, 20766, 8872, 20770, 20775, + 20780, 20783, 20787, 20792, 20799, 20806, 20810, 20814, 20818, 20860, 20867, 27071, 20880, 20900, 8872, 20915, + 20926, 20936, 20945, 20954, 20961, 20965, 20971, 20976, 20988, 20994, 21005, 21010, 21018, 21027, 21061, 21065, + 21070, 21078, 21083, 21088, 21092, 21103, 21113, 21126, 21132, 21139, 21154, 21170, 21184, 21192, 21197, 21202, + 21205, 21207, 21209, 21212, 21205, 21217, 21220, 21225, 21232, 21238, 21241, 21247, 21251, 21256, 21258, 21262, + 21266, 21271, 21275, 21301, 21311, 21316, 7257, 21320, 21325, 21331, 21336, 21344, 21349, 21356, 21362, 21368, + 21376, 21391, 21400, 21410, 21415, 21422, 21425, 21431, 21435, 21446, 21453, 21462, 21472, 21475, 21489, 21494, + 21503, 21511, 21517, 21524, 21530, 21534, 21546, 21553, 21558, 21565, 21589, 21598, 21612, 21615, 21628, 21634, + 21652, 21670, 21674, 21690, 21694, 21706, 21711, 21717, 21724, 21729, 21739, 21744, 21755, 21769, 21774, 21780, + 21784, 21787, 21794, 21799, 21805, 5566, 21811, 21813, 21818, 21824, 21829, 21838, 21842, 21848, 21853, 21859, + 21864, 21870, 21874, 21878, 21882, 21887, 21892, 21899, 21904, 21909, 5574, 21914, 21919, 21923, 21925, 21932, + 21938, 21949, 21954, 21959, 21963, 21968, 21975, 21985, 21989, 21998, 22003, 22012, 22017, 22021, 22026, 22030, + 22040, 22045, 22050, 22069, 22077, 22082, 22086, 22097, 22105, 22112, 22119, 22125, 22131, 22136, 22141, 22149, + 22154, 22159, 22161, 22171, 22173, 22177, 22184, 22187, 22194, 22200, 22206, 22210, 22215, 22225, 22233, 22238, + 22243, 22252, 22259, 22262, 22266, 22271, 22276, 22284, 22288, 22299, 22307, 22311, 22318, 22323, 22328, 22335, + 22340, 22345, 22350, 22355, 22364, 22373, 22384, 22389, 22394, 22399, 22406, 22413, 4286, 22419, 22424, 4286, + 22433, 22444, 22450, 22456, 22461, 22469, 22474, 22480, 22484, 22490, 22494, 22508, 22517, 22527, 22532, 22538, + 22542, 22547, 22551, 22560, 22566, 22572, 22578, 22585, 22592, 22598, 22605, 22609, 22614, 22619, 22624, 22629, + 22634, 22644, 22650, 22654, 22659, 22663, 22669, 22677, 22681, 22685, 5580, 22690, 22693, 22702, 9001, 11913, + 22710, 22717, 22723, 22731, 34503, 22737, 21998, 22740, 22747, 8872, 22751, 22757, 22761, 22765, 22777, 22788, + 22794, 22802, 22806, 22810, 22816, 22825, 22831, 22836, 22852, 22859, 22866, 22870, 5574, 22878, 22884, 22890, + 22893, 22898, 22905, 22911, 22171, 22917, 22927, 22940, 22945, 8872, 22951, 8872, 22955, 22964, 21489, 22981, + 20615, 8865, 22988, 23002, 23008, 23014, 23018, 23022, 23028, 8865, 23033, 23037, 23047, 8706, 23087, 23129, + 23147, 11913, 23152, 23159, 23171, 23176, 23182, 23195, 23199, 23204, 23209, 23213, 23217, 8865, 8872, 23222, + 23228, 8706, 23231, 23233, 23242, 23265, 23272, 23284, 23297, 23315, 23320, 23327, 8104, 23334, 23346, 23353, + 8872, 23364, 23369, 23374, 23379, 23381, 23385, 23418, 23424, 23427, 23431, 23458, 23463, 23474, 23484, 23487, + 23491, 23495, 23501, 23506, 23510, 23515, 23521, 23532, 23546, 23550, 23555, 23567, 23577, 23583, 23589, 23594, + 8706, 23610, 8865, 23614, 23620, 23627, 23633, 23231, 8992, 23642, 8872, 23655, 23662, 23672, 23677, 23694, + 23701, 23713, 23718, 23731, 23735, 8992, 23746, 23761, 23763, 23770, 23772, 34503, 23776, 23781, 23788, 23792, + 23796, 23804, 23807, 23821, 23825, 23835, 23840, 23846, 23850, 23854, 23861, 23866, 23882, 23887, 23893, 23903, + 22159, 23940, 23946, 23954, 23963, 23972, 23983, 23988, 23997, 24001, 24008, 24014, 8725, 24021, 24026, 24031, + 24040, 24048, 24052, 24055, 24060, 24063, 24067, 24074, 24086, 24099, 24104, 24108, 24111, 24124, 8872, 11458, + 24132, 24143, 7965, 24146, 24149, 24170, 24176, 24180, 24190, 24196, 24200, 24207, 24216, 24228, 24260, 24284, + 24296, 24304, 24308, 24314, 24323, 24361, 24368, 24375, 24380, 24407, 24413, 24422, 24426, 24431, 24436, 24444, + 24448, 24457, 24461, 24468, 24475, 24478, 24481, 24489, 24497, 24500, 24505, 24510, 24516, 24527, 24532, 24546, + 24551, 24555, 24567, 24589, 24605, 24611, 24614, 24628, 24635, 24639, 24644, 24650, 24658, 24662, 24670, 8706, + 24673, 24677, 24682, 24685, 24695, 24700, 24704, 24709, 5727, 24718, 24736, 24744, 24749, 24756, 24758, 24764, + 24769, 24773, 24790, 24817, 24835, 24844, 24866, 24911, 24965, 25013, 7930, 25037, 25045, 25052, 25064, 25080, + 25095, 25100, 25111, 25120, 25134, 25152, 25174, 25185, 25198, 25208, 25214, 25225, 25229, 25242, 24195, 25265, + 25271, 25281, 25287, 25293, 25263, 25308, 25314, 25318, 25322, 25326, 25331, 25337, 25342, 25357, 25368, 11458, + 7930, 23147, 25378, 8854, 11458, 25387, 25393, 25399, 25302, 25413, 25434, 25448, 25452, 25466, 25482, 25488, + 25495, 25502, 25507, 25516, 25522, 25525, 25529, 25532, 25536, 25541, 25547, 25553, 25561, 25564, 25420, 8027, + 25579, 4286, 25584, 25588, 25568, 25602, 25610, 25616, 25621, 25641, 25644, 25647, 25656, 25662, 25672, 25680, + 25686, 25695, 25702, 25706, 25713, 25722, 25729, 25734, 7257, 25738, 25746, 25751, 25756, 25768, 25773, 25778, + 25787, 25800, 25808, 25818, 25830, 25834, 25859, 25869, 25883, 25905, 25909, 25916, 25934, 25940, 25953, 25961, + 25976, 25991, 26003, 26019, 26023, 26031, 26038, 26042, 26047, 26056, 26063, 26068, 26076, 26080, 26088, 26102, + 26115, 26134, 26140, 26148, 26152, 26162, 26167, 5299, 5299, 5299, 5635, 5299, 26191, 26191, 26195, 26200, + 26214, 26221, 26229, 5635, 5635, 5299, 26238, 5574, 4286, 5574, 5578, 26243, 5574, 5580, 26250, 26255, 26266, + 26270, 26277, 26281, 26284, 26293, 26297, 26303, 26309, 26313, 26317, 26321, 26327, 26331, 26336, 26341, 26348, + 26356, 26363, 26369, 26381, 26389, 26395, 26405, 26452, 26476, 26498, 26502, 26518, 26523, 26527, 26538, 26545, + 26558, 26561, 26582, 26589, 26594, 6236, 26599, 26602, 26623, 26638, 26642, 26650, 26656, 26667, 26672, 26691, + 26701, 26724, 26730, 26735, 26745, 26751, 26758, 26778, 26785, 26791, 26797, 26803, 26814, 26820, 26826, 26831, + 26841, 26853, 26860, 26864, 26879, 26889, 26893, 26899, 5727, 26912, 26928, 26948, 26953, 26957, 26961, 11797, + 26967, 26998, 27004, 27011, 27013, 26994, 27027, 27031, 27021, 27035, 27041, 27044, 27048, 27051, 27055, 27059, + 27065, 27038, 27079, 27088, 27097, 27121, 27128, 27132, 27140, 27144, 27148, 27153, 27159, 27172, 27179, 27183, + 27192, 27199, 27207, 34417, 27211, 27215, 27218, 27229, 27245, 27250, 27270, 27279, 27288, 27296, 27306, 27310, + 27331, 27351, 27364, 27369, 27373, 27382, 27397, 27402, 27413, 27417, 27422, 27434, 27437, 27453, 27466, 27516, + 27528, 27536, 27545, 27581, 27586, 27589, 27595, 27598, 27604, 27611, 27618, 27627, 27665, 27672, 27677, 27704, + 27734, 27748, 27755, 27770, 27889, 27925, 27935, 27947, 27956, 27973, 27979, 27988, 27996, 28003, 28013, 28016, + 28020, 28031, 28054, 28063, 28071, 28083, 28097, 28105, 28108, 28113, 28127, 28140, 28160, 28173, 28186, 28213, + 28218, 28252, 28281, 28295, 28298, 28302, 28308, 28316, 28319, 28328, 28334, 27004, 28351, 28410, 28431, 28451, + 26701, 28520, 28530, 28545, 28552, 28562, 28584, 28602, 28630, 28663, 28668, 28683, 28700, 26961, 28759, 28765, + 28765, 28328, 28774, 28808, 28328, 28822, 28833, 28836, 28851, 28871, 28918, 28995, 29052, 29068, 28334, 29078, + 29164, 29164, 29172, 26961, 29180, 29217, 29230, 29272, 29275, 29289, 29337, 29473, 29496, 29523, 29548, 29613, + 29705, 29734, 29871, 29982, 30002, 30185, 30205, 30250, 30474, 30500, 30528, 30557, 30598, 30615, 30782, 30800, + 30827, 30910, 30931, 30938, 31020, 31216, 31274, 31387, 31487, 31513, 31532, 31630, 31664, 31709, 31738, 31753, + 31758, 31763, 31785, 31817, 31853, 31927, 31938, 31984, 32340, 32496, 32532, 32547, 28833, 32556, 32748, 32781, + 32809, 32862, 32887, 32921, 32936, 33045, 33079, 33092, 33104, 33109, 33218, 31274, 33225, 33240, 33248, 33279, + 33281, 33375, 33478, 33484, 33501, 33563, 33630, 33670, 33696, 33719, 33773, 33781, 33788, 33814, 33833, 33858, + 33866, 33906, 33924, 33933, 33956, 33961, 34004, 34021, 34047, 34059, 34075, 34091, 34101, 34108, 26961, 28328, + 34122, 34133, 34142, 34147, 34160, 34185, 34195, 34211, 34214, 34249, 34253, 34258, 34296, 34325, 34330, 34333, + 34336, 34341, 34348, 28663, 34353, 34388, 27071, 34420, 19603, 34444, 34450, 34454, 34456, 34460, 34469, 34488, + 34499, 34506, 34454, 34526, 34535, 34544 + ], + [0, 6870, 1362, 1437, 1448, 1676, 37818, 2754, 2757, 3427, 6530, 37821, 37823], + [0, 1596, 2759, 2899, 3202, 16112, 4039, 4193, 4255], + [0, 5592, 1448, 37826, 15514, 6956, 5122], + [1, 2343, 25603], + [0, 25604, 25606, 25608, 4139], + [0, 2202, 37833, 37834, 1695], + "@keyv/serialize", + [0, 2133, 3697, 4387, 4389], + "keep", + [0, 4731, 27, 4738, 5038, 1389], + "timekeeper", + [1, 2343, 25612], + "key-value", + [0, 25613, 25614, 25615, 2487], + [0, 20689, 37845, 37846, 4718, 37844, 37841, 37843], + [0, 18225, 1082, 2832, 2899, 4193, 1177, 37853, 1330, 1787, 1525, 91, 4874, 37852, 37850, 1937, 17585, 37856], + [0, 28860, 28861, 3354, 37858, 37859, 20707, 1641, 37860, 37861, 37862, 26666, 21604], + [1, 2343, 25617], + [0, 25618, 25619, 25620, 2537], + [0, 4113], + [ + 0, 1175, 1195, 1264, 28713, 1387, 37868, 37869, 35573, 1503, 1596, 1610, 1177, 37870, 2759, 2765, 1192, 2774, + 7060, 3363, 3400, 3725, 91, 37871, 2282, 2924 + ], + [ + 0, 37873, 6523, 676, 6671, 1781, 24586, 37874, 37875, 37880, 37882, 20398, 20400, 4734, 4735, 353, 8535, 37883, + 22180, 6270, 37884, 37885, 37887, 1644, 57, 7119 + ], + [1, 2343, 25622], + [0, 25626, 25630, 25637, 4139], + "escalade", + "pg-connection-string", + "tarn", + [0, 4113, 4736], + [3, 5536, 10], + [2, 25627, 4945], + [2, 11836, 4246], + [0, 1596], + "-in-order", + [2, 1436, 25631], + "oracledb", + "pg-query-stream", + "tedious", + "toxiproxy-node-client", + [0, 6523, 1781], + "postgres", + "cockroachdb", + [2, 3766, 9381], + [1, 2343, 25642], + [0, 25643, 15925, 2514, 2537], + [0, 2607, 2812, 37899], + [1, 2343, 25645], + [0, 0, 10710, 25646, 2537], + [0, 6523, 4736], + [1, 2343, 25653], + "smol-toml", + "summary", + [3, 8555, 11], + [2, 25650, 1851], + [2, 4764, 25651], + [0, 0, 25654, 25655, 2537], + [0, 1192, 4753, 37908, 1177, 3363, 37909, 1894, 2188, 3400, 1926, 16638, 1895, 1955], + [0, 12616, 965, 6523, 57, 5284, 37911, 37912], + [1, 2343, 25657], + [0, 0, 0, 25659, 2537], + "analyze", + [0, 4731, 6662], + "dead code", + "entropy", + [1, 2343, 25665], + "maintenance", + "members", + [0, 25666, 25668, 25670, 2537], + [ + 0, 3157, 1144, 1177, 2205, 2203, 1894, 2185, 4507, 3170, 1595, 19595, 3505, 2191, 1953, 29490, 1920, 4523, + 25803, 1958, 1982, 13789, 1895, 24166, 32525, 1955, 7681, 19344, 1011, 15290, 22937, 19492 + ], + "unreferenced", + [0, 3377, 1166, 2020, 2675, 1680, 13786, 2990, 5601, 192, 15600, 8778, 3390, 3708, 5467, 17312], + "unresolved", + [ + 0, 13326, 200, 1906, 19347, 19350, 19353, 1501, 19269, 590, 671, 9654, 2272, 19270, 1177, 2649, 19271, 4255, + 15717, 4354, 16790, 19273, 18443, 2446, 2869, 5284, 91 + ], + "tldts", + [1, 2343, 25673], + [0, 0, 25674, 25676, 2537], + [0, 10780, 1854, 37928, 2899], + "lodash.sortby", + [0, 4739, 6523], + "explorer", + "opera", + "samsung-internet", + [1, 2343, 25681], + [0, 25683, 25684, 25685, 2399], + "uc-browser", + [0, 5663], + [0, 48, 53, 37936, 83, 87, 37937, 1198, 37940, 37941, 1389, 1177, 2765, 2835, 3421, 37945], + [0, 1108, 6961, 6607, 3656], + [1, 2343, 25690], + "stream-co", + [2, 25687, 11532], + [2, 25521, 25692], + [0, 25691, 25693, 25694, 2537], + [0, 1525, 7606], + "praesentium-accusamus-maiores-autem", + [0, 3421, 1676, 2899, 1177, 1596, 4535, 1389], + [0, 20215, 4741, 2574, 36796, 6847, 1965, 1867, 10368, 7131, 1155, 1936, 14419, 37953], + [1, 2343, 25697], + "delegates", + [0, 0, 25698, 25701, 2537], + [0, 37958, 1091, 3539, 4094, 4733], + "http-assert", + [2, 17007, 23905], + [0, 37960, 37963, 37968, 37971, 37972, 6649, 37973, 2218], + [1, 2343, 25703], + [0, 0, 9264, 25704, 2399], + [0, 2051, 1698, 14690, 15767, 3048, 4552], + [3, 21482, 15], + [1, 2343, 25708], + "gen-", + [0, 0, 25711, 25712, 2523], + "esm-wrapper", + [2, 25707, 25709], + [ + 0, 8648, 4856, 5245, 37983, 6494, 37984, 4865, 13204, 6503, 4874, 37987, 4891, 9241, 1009, 1011, 1429, 1610, + 1693, 1177, 1942, 2026, 28930, 2070, 2832, 2899, 3257, 3339, 3421, 4230, 4232, 4469, 91, 4577, 2924, 4677, 4729, + 37988 + ], + [0, 200, 6876, 7201, 28770, 4166, 21000, 592, 37991, 7009, 6621, 13005, 35621, 4744], + [1, 2343, 25714], + [0, 0, 25715, 25719, 4139], + [ + 0, 1192, 4484, 1177, 4042, 1894, 442, 1193, 2064, 91, 53, 5087, 4874, 2797, 87, 4523, 5583, 6373, 1895, 10817, + 37998, 5889 + ], + "-body", + [2, 4860, 25716], + "co-body", + [0, 6775, 57, 5374], + "-router", + "__router", + [1, 2343, 25724], + "urlencoded", + [0, 25725, 25726, 25727, 2399], + [0, 2070, 1139], + [0, 1317, 15052, 2768], + [0, 4745, 1781, 38007, 38008], + "copy-to", + [1, 2343, 25730], + [0, 25731, 25733, 20172, 2523], + [0, 1495, 25623, 12929, 4290, 26574, 4748], + "bodyParser", + [ + 0, 68, 92, 4856, 6503, 4874, 1009, 25912, 1414, 1429, 1437, 25796, 1610, 1615, 1177, 1955, 2321, 29551, 2899, + 4039, 91, 4707, 38017 + ], + [1, 2343, 25735], + [0, 0, 25736, 25737, 2537], + [0, 68, 92, 4856, 6503, 4874, 1009, 1011, 1414, 1429, 1610, 1177, 2321, 2899, 3758, 4039, 4146, 4261, 91], + [0, 7233, 57, 4747, 1523, 200, 7119, 5675, 7058, 7233], + [1, 2343, 25739], + [0, 25740, 25741, 2514, 2537], + [ + 0, 38035, 1282, 1413, 1420, 1437, 25872, 1525, 38036, 1676, 19400, 1687, 2195, 2714, 2731, 10911, 2975, 16450, + 3181, 3188, 3309, 640, 3434, 28142, 3917, 38037, 705, 38040, 4039, 38041, 4135, 4296, 4390, 4393, 4572, 25898 + ], + [ + 0, 1175, 1178, 1193, 1195, 14220, 1255, 1267, 38044, 38047, 1268, 1272, 1291, 1177, 38050, 18229, 38052, 1922, + 38055, 1935, 38058, 1959, 2126, 2323, 2338, 2464, 2479, 2541, 2544, 1192, 2843, 3211, 1241, 2924 + ], + "humanize-", + [2, 25742, 6988], + "-counter", + [2, 22255, 25744], + [1, 2343, 25747], + [0, 0, 0, 25750, 4139], + "koa-compress", + [3, 2946, 9], + [0, 4749, 4752, 6435, 4166, 3378, 34652], + [1, 2343, 25752], + [0, 25753, 25754, 25755, 2443], + [0, 13581, 27999], + [0, 1329], + [0, 4560, 2056, 3101, 12666, 2090], + [1, 2343, 25759], + "mounting", + "@drftgyhuji7npm/repellendus-eum-et-itaque", + [0, 25760, 25761, 25767, 2523], + [ + 0, 38073, 38076, 38077, 38078, 38080, 1144, 1437, 1525, 1676, 2020, 38082, 2205, 38083, 20786, 3021, 38084, + 38086, 4135, 4207, 4558, 38088 + ], + [ + 0, 5245, 5139, 4874, 5254, 24719, 1414, 1597, 1177, 38092, 2151, 1776, 1894, 3708, 4039, 4193, 38093, 4294, 91, + 21328, 21329 + ], + [2, 29234, 32235, 1524], + "@ladjs/env", + [3, 25689, 31], + "sint-dolorem", + "@enact/core", + [0, 5001, 3304, 6147, 4990, 200, 8632, 4989, 8623, 1179, 8635, 1896], + [1, 2343, 25769], + [0, 25770, 25772, 25767, 2487], + [0, 1437, 1676, 2020, 4135, 3183, 3021, 22776, 4183, 4425, 2845, 38086, 2960, 38101, 27168, 5139, 38077], + "koa-send", + [ + 0, 1797, 1776, 4193, 1984, 1597, 2720, 1894, 4507, 9741, 91, 21329, 5245, 6513, 5254, 21328, 24719, 7892, 38073, + 23452, 38078, 8818, 4754, 7677, 3708 + ], + [1, 2343, 25776], + "sendfile", + "@envelop/core", + [0, 0, 8134, 25777, 2537], + [0, 4757, 38108, 27631, 200, 3741, 2649, 6847, 8618, 4938, 38109, 1644, 38111], + [1, 2343, 25779], + [0, 25783, 25784, 25785, 2443], + "is-warlock", + [2, 3341, 25780], + "reds", + [ + 0, 3157, 3445, 1437, 4761, 1209, 2089, 25294, 38117, 38118, 23878, 38121, 38122, 1543, 1615, 38123, 25555, 9478, + 38080, 15826, 38126, 38073, 38127, 27168, 4562, 38131, 4754 + ], + [0, 1414, 1906, 3297, 4193, 38092, 2203, 1596, 38133], + [0, 13326, 200, 6400, 5001, 3304, 6147, 5122, 4990, 8632, 2873, 8635, 1179, 8623, 1896, 8310], + "webOS", + [1, 2343, 25788], + [0, 0, 25795, 25799, 2537], + "bossy", + [3, 23453, 15], + [2, 25790, 5592], + [2, 9146, 5592], + "find-rc", + "will-call", + [0, 38139, 1104, 1166, 1437, 1474, 1511, 2929, 27127, 3527, 4481, 1906], + "cpr", + "lab-event-reporter", + "@ionic/cli", + [0, 1473, 7208, 1512, 7009, 7201, 200, 1871, 1111, 590, 592, 6621, 6983, 4166, 4744, 3073, 6807, 6876, 2585], + [1, 2343, 25801], + [0, 25805, 3293, 25807, 2487], + [2, 29611, 5457, 1805], + [2, 2102, 17239], + [2, 25806, 553], + [0, 1525, 2720], + "@envelop/", + [0, 4760, 5592, 36, 5995], + [1, 2343, 25811], + [2, 556, 1098], + "md-to-pdf", + [0, 25812, 25815, 25817, 2537], + [0, 3157, 1437, 1471, 4726, 1109, 4294, 1110, 4290, 38150], + "semver-", + "semver-regex", + [0, 1906, 2899], + "latest", + [0, 13326, 200, 8635, 4758, 38152, 38153, 5403, 6458, 1111], + [1, 2343, 25820], + [2, 25829, 6811], + [0, 15916, 25827, 25828, 2523], + "autodoc", + "deft", + [2, 2767, 1149], + "race", + "race.js", + [2, 4284, 176], + [0, 4170, 4135, 2899], + [0, 38160, 4762, 38161, 38162, 38163, 970, 10770, 11154], + [3, 24329, 21], + [1, 2343, 25831], + [0, 0, 0, 25832, 2443], + [0, 91, 2844, 7020, 998, 6591], + [2, 556, 25877], + [1, 2343, 25839], + "@mapbox/", + "cript-tags", + [2, 1967, 25836], + [2, 25835, 25837], + [0, 25845, 25847, 25856, 2487], + "bundlemon", + [3, 16694, 16], + "urner", + [2, 25841, 25842], + "git-rev-sync", + [0, 1170, 2026, 3509, 4763], + "happen", + [ + 0, 7804, 4856, 9417, 7806, 38176, 6494, 38177, 6503, 38179, 1364, 1429, 1431, 1527, 1536, 1575, 1652, 1177, + 38182, 1161, 2899, 3237, 3378, 1894, 4257, 4474, 91 + ], + "karma-expect", + [3, 2066, 9], + "leafdoc", + "prosthetic-hand", + "git-version", + [2, 4049, 25852], + "ontent-classifier", + "gis", + [0, 4763, 2026, 5592, 8800, 38185, 5995], + [2, 8, 25858], + [3, 1008, 21, 5], + [1, 2343, 25860], + [0, 25861, 25864, 25865, 2399], + [0, 1282, 1362, 1676, 34226, 2685, 2832, 1209, 3171, 3242, 705, 4454, 4729], + [2, 25857, 2324], + [2, 25867, 6], + [ + 0, 1173, 1178, 1255, 1264, 1364, 1575, 1700, 1177, 2026, 2323, 2338, 2384, 29396, 2472, 2510, 2541, 2899, 3237, + 3253, 6596, 4019 + ], + [ + 0, 1973, 6533, 5472, 21972, 4386, 10659, 37125, 29727, 1388, 1936, 12075, 965, 1623, 5284, 11857, 6662, 26196, + 38192 + ], + "numbers", + [3, 19535, 16], + "ng-packagr", + [1, 2343, 25870], + [0, 0, 25876, 2514, 2537], + "aproba", + "cmd-shim", + "p-reduce", + "byte-size", + "write-pkg", + [ + 0, 28069, 30286, 38197, 23689, 4874, 32440, 1362, 26739, 2780, 2784, 1192, 2899, 3210, 2765, 4232, 2766, 24652, + 4094, 4376, 4484, 1984 + ], + "examples", + "wide-align", + "has-unicode", + "p-waterfall", + [2, 2977, 7318], + "@npmtea2024/quasi-nisi-doloremque-fugit", + [1, 2343, 25889], + "p-map-series", + "blocking", + "set-blocking", + "@lerna/create", + [2, 2977, 20001], + [0, 25890, 25895, 25896, 4139], + [ + 0, 38202, 6870, 1389, 21146, 38204, 1512, 1525, 1536, 1573, 1676, 2026, 38207, 12783, 38209, 12785, 2590, 2600, + 2659, 12788, 38210, 12789, 1209, 3456, 3470, 38212, 4165, 38213, 17011, 4339, 38215, 20496, 4650, 4652, 1695, + 4746, 38217 + ], + "read-cmd-shim", + [2, 3614, 16830], + [2, 21772, 18709], + "strong-", + [0, 1087, 38221, 38222, 2899, 3524, 4389, 4431, 38224], + [0, 4770, 5472, 1388, 2907, 2899, 12826], + [3, 4588, 21], + [2, 25897, 4059], + "-bump", + [2, 4945, 25899], + [2, 13984, 25900], + "-rest", + [2, 24089, 25902], + [2, 9768, 25903], + [1, 2343, 25906], + [0, 25907, 6736, 25908, 2523], + [0, 666, 672, 677, 9688, 1710, 4135, 4459, 4484], + [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 9627, 9628, 9648, 9659], + [1, 2343, 25914], + [2, 1583, 20499], + "errno", + [2, 15086, 1179], + "jest-codemods", + [0, 25915, 6736, 6767, 2487], + [0, 1437, 4484, 677, 4135, 2203, 666, 17310, 1012, 9688, 19254, 12123], + [1, 2343, 25918], + "benny", + [0, 25932, 6736, 25933, 2537], + "less-port", + [2, 10784, 25919], + "emplate-tag", + [2, 2642, 25921], + "jit-grunt", + [3, 1165, 10], + [2, 21897, 25924], + "mocha-te", + "amcity-reporter", + [2, 25926, 25927], + "phin", + "read-glob", + "@ptkhanh94npm/iusto-libero-aperiam", + [0, 4484, 677, 4135, 2798, 3181, 666, 3527, 8734, 2797, 4748, 8752, 24759, 8762, 2686, 9688], + [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 38247, 9628, 9659], + [1, 2343, 25935], + [0, 25937, 25938, 25939, 34352], + [2, 21897, 2070], + [0, 4484, 677, 4135, 666, 672, 4771, 9688], + [0, 3420, 4270], + [0, 9622, 8174, 9623, 38255, 9627, 9628, 9648, 9659], + [1, 2343, 25941], + [0, 25945, 25949, 25952, 2443], + "abstract-l", + "evel", + [2, 25942, 25943], + [0, 30508, 30509, 4484], + "browser-level", + "-level", + [2, 128, 25947], + [0, 34030, 26312, 10846, 4426], + "@voxpelli/tsconfig", + [2, 12774, 3541], + [0, 7522, 89, 7531, 7535, 7521, 7597, 7518, 8424, 8432, 7528, 10442], + [1, 2343, 25955], + "leveldb", + [0, 25956, 25957, 25958, 2443], + [0, 38264, 3286, 89, 3824, 38265, 4125, 38266], + [0, 4874, 4880, 4883, 1177, 4828, 3561, 4383, 91], + [0, 12589, 1616, 33456, 12589, 5472, 20500, 33459, 1237, 33462, 33464, 12590, 33465, 27666, 11996], + [2, 25944, 2971], + "napi-macros", + [1, 2343, 25962], + [0, 25973, 0, 25975, 2537], + "async-each", + "du", + "cat-iterator", + [2, 1332, 25965], + [2, 2970, 25966], + "mkfiletree", + [2, 15164, 18490], + [3, 25969, 13], + "ross", + [2, 25970, 25971], + [0, 1639, 3744, 97, 7931, 7932, 7910], + "readfiletree", + [0, 89, 5128, 9267, 1832], + [1, 2343, 25977], + [0, 25978, 10298, 25979, 2443], + [0, 16053, 16056, 38278], + [0, 5284, 1776, 1644, 1746, 1745], + "-leveldown", + [2, 14834, 25980], + "level-", + "level-errors", + [2, 7253, 14922], + [2, 25982, 25984], + "supports", + [2, 25982, 25986], + "queue-", + "microtask", + [2, 25988, 25989], + [1, 2343, 25998], + "airtap-sauce", + "encoding-", + [2, 25993, 2971], + "memdown", + [3, 12809, 12], + [2, 4182, 5614], + [0, 25999, 26001, 26002, 2537], + [0, 97, 5663], + "trickle", + [0, 5087, 1192], + [0, 5284, 4967, 89, 6081], + [1, 2343, 26004], + [0, 26005, 26016, 26018, 2537], + [0, 97, 38293, 3744, 3847, 4484], + "levenshtein", + [2, 2068, 26006], + "ld", + "levdist", + [2, 26006, 10699], + [3, 26010, 12], + "-distance", + [2, 6109, 26012], + [2, 26011, 26013], + "talisman", + [ + 0, 5228, 14249, 5700, 8129, 20202, 38298, 20212, 602, 5583, 811, 963, 966, 968, 38299, 972, 974, 5087, 5090, + 4880, 1009, 1011, 7913, 38302, 38304, 1397, 1597, 1610, 1651, 1177, 4916, 1959, 2126, 38307, 38309, 11853, + 19227, 3400, 3698, 9054, 89, 3824, 3847, 3857, 3904, 4146, 4261, 91 + ], + "distance", + [0, 38313, 89, 15774, 38316, 38317, 5399, 1631, 32039, 38319, 7320, 38320, 32040, 38322], + [1, 2343, 26021], + "comparison", + [0, 21012, 0, 26022, 34352], + [ + 0, 6653, 7320, 10039, 24832, 1623, 13006, 38327, 6847, 5284, 676, 38328, 38329, 29002, 24353, 8112, 3561, 6425, + 38330, 18252, 1631, 3586, 38332, 4453, 38333 + ], + [1, 2343, 26027], + "careful-", + "binary-", + [2, 26025, 19101], + [0, 26028, 26029, 26030, 34352], + [0, 2115, 2121, 2127, 1110, 28827, 2856, 4507, 26907], + [0, 2180, 5476, 5478, 2189, 2198, 31852, 91], + [0, 2313, 1383, 614, 202, 1388, 5995, 4967, 2340, 2350], + [1, 2343, 26033], + "country-codes-flags-phone-codes", + [0, 0, 0, 26034, 4139], + [0, 1671, 671, 3315, 17626, 6869, 6671, 3319, 3325, 3362, 6829, 3384], + "just-safe-set", + "ock-registry", + [2, 9494, 26036], + [1, 2343, 26039], + [0, 26040, 26041, 26002, 2523], + [ + 0, 53, 31689, 97, 5663, 4793, 4800, 4838, 4928, 4786, 4944, 4954, 4968, 362, 4972, 24723, 4981, 10895, 4982, + 11518, 841, 7812, 24370, 4985, 1030, 4992, 1165, 1195, 29040, 30521, 1393, 1437, 1525, 1593, 1628, 1630, 1759, + 1763, 2151, 2070, 2220, 4995, 2222, 2651, 2843, 2867, 1209, 3177, 3220, 4996, 3310, 3445, 3561, 3579, 3584, + 3613, 3618, 30274, 1894, 3742, 15033, 3816, 3878, 4079, 13834, 4164, 4167, 4307, 5000, 4409, 5002, 1002, 1983, + 29141, 2924, 4676, 4681, 13152 + ], + [0, 29536, 27134, 4864, 4870, 5009, 5542, 15600, 33768, 11944, 3144, 3244, 3758, 4039], + [1, 2343, 26043], + [0, 6203, 26045, 26046, 2523], + "gitfund", + [ + 0, 549, 811, 8850, 816, 6373, 4863, 5087, 4880, 1009, 1011, 8158, 1584, 1843, 1177, 1895, 1938, 1955, 1959, + 1192, 2780, 2832, 3421, 1894, 89, 3824, 4039, 4042, 4052, 8849, 8853, 4076, 4079, 4230, 4468, 4469, 4474, 4484, + 4508, 2924, 4677, 4681, 555, 560 + ], + [0, 24456, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], + [1, 2343, 26048], + [0, 6203, 26054, 26055, 2537], + "crlf", + [3, 2982, 15], + [2, 6774, 16609], + [2, 26050, 26051], + "renamer", + [ + 0, 53, 87, 92, 8862, 5087, 4874, 1009, 1011, 6834, 6840, 6873, 1031, 11018, 13072, 1593, 1610, 1177, 1895, 1938, + 6902, 1988, 1192, 2780, 1894, 4039, 4042, 4045, 4052, 4076, 4079, 6904, 4468, 4484, 4508, 91, 188, 555 + ], + [0, 188, 8588, 6931, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], + [1, 2343, 26058], + [2, 33018, 188], + [0, 6203, 26061, 26062, 4139], + "ged-respawn", + [2, 7210, 26059], + [ + 0, 53, 87, 92, 4856, 5087, 6503, 4874, 1009, 1011, 6834, 6840, 6993, 6873, 1031, 11018, 13072, 1429, 1610, 1177, + 1895, 1938, 6902, 1988, 3400, 1894, 4039, 4042, 4045, 4052, 4076, 4079, 6904, 7006, 4484, 4508, 91, 188, 555, + 5010 + ], + [0, 188, 8588, 6931, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841, 12075, 1623, 4380], + [1, 2343, 26064], + [0, 26065, 26066, 26067, 2523], + [0, 12396, 23289, 23249, 3493, 12449, 15632], + [0, 9363, 4874, 1414, 31147, 1894, 3985, 3998, 18071, 4505, 4507, 91, 18002, 1906], + [0, 23266, 2587, 23267, 614, 6435, 1936, 1644, 15278], + [1, 2343, 26069], + [0, 0, 26071, 26075, 2537], + "cname-prefix", + [0, 1177, 2899, 3421, 4193], + "autolink", + "hashtag", + "mention", + [0, 4264, 15457, 15482, 13499, 15483, 5995], + [1, 2343, 26077], + [0, 0, 0, 26078, 2537], + [0, 17356, 17362, 17364, 17365, 17384, 17397, 17423, 17426, 1745, 1783], + "pidtree", + [1, 2343, 26083], + "consolemock", + "sonner", + [0, 26084, 26085, 26086, 2487], + [0, 24337, 24344, 18220, 1676, 24345, 2714, 2072, 4238, 4431, 4484, 4753], + [ + 0, 8656, 8660, 6061, 6063, 5245, 24352, 29105, 5087, 4874, 28177, 24358, 18435, 20290, 1177, 1192, 1894, 4131, + 4468, 91 + ], + [0, 12296, 12295, 200, 5131, 1896, 24364, 970], + "@samverschueren/stream-to-observable", + [1, 2343, 26089], + [0, 26100, 0, 26101, 2523], + "is-observable", + "-silent-renderer", + [2, 2991, 26091], + "listr-", + [2, 9787, 3902], + [2, 26093, 26094], + "verb", + "ose-renderer", + [2, 26096, 26097], + [2, 26093, 26098], + [0, 12396, 21300, 32567, 2586, 21308, 12447, 12449], + [0, 2587, 1936, 21308, 26916, 1783, 18108, 26564, 1932, 3958, 32462, 3984, 21306, 4549], + [1, 2343, 26103], + [0, 26105, 26106, 26110, 2523], + "@keyv/compress-brotli", + [0, 2564, 4351], + [0, 1166, 1503, 91, 1906], + [3, 175, 23], + [2, 26109, 16518], + [3, 26104, 15], + [0, 163, 7009, 22316, 200, 13735, 4354, 1111, 1106, 7201], + "@lit/reactive-element", + "@lit", + "-labs/ssr-dom-shim", + [2, 26112, 26113], + [1, 2343, 26125], + "@lit-labs/", + [2, 26116, 5472], + "@lit-", + "/scripts", + [2, 6943, 26119], + [2, 26118, 26120], + [2, 10704, 1283], + "@keyv/memcache", + "@keyv/mongo", + [0, 26126, 26130, 26133, 2443], + [0, 20573, 5545], + "connect-l", + "ogger", + [2, 26127, 26128], + [ + 0, 5517, 28436, 19438, 19181, 442, 8648, 842, 16145, 966, 968, 972, 22375, 5087, 4874, 4880, 5546, 1009, 1011, + 34737, 1177, 1895, 31755, 1959, 1961, 1976, 2203, 2675, 1192, 2780, 2990, 3286, 1894, 89, 3824, 5564, 4039, + 4135, 91, 4523 + ], + "@keyv/sqlite", + "@keyv/test-suite", + [0, 26713, 89, 582, 705, 2325, 1612], + [1, 2343, 26135], + [0, 0, 26138, 26139, 2523], + "http-auth", + "faye-websocket", + [0, 4874, 4218, 4220, 4493, 91], + [ + 0, 91, 998, 553, 5490, 17180, 20052, 2382, 6956, 2844, 5995, 6400, 1781, 6866, 1398, 9254, 15105, 4144, 4141, + 7050, 22789, 22791 + ], + [1, 2343, 26141], + [0, 26143, 26145, 26146, 2537], + "amaro", + [0, 23641, 27185, 29561], + [2, 3000, 1592], + [0, 58, 101, 8648, 1177, 2272, 3019, 2899, 4019, 19767, 4481, 4535], + [0, 36720, 22860, 1388, 16284, 888, 22856, 35087, 11804, 23659, 23664, 23667, 23668, 29725, 29728, 32633], + "micro-backend", + [1, 2343, 26149], + [0, 0, 26150, 26151, 2537], + [0, 2832, 705, 4008], + [0, 1936, 23670, 11513], + [1, 2343, 26153], + [0, 26156, 26157, 26161, 2537], + [2, 2032, 26155, 26159], + "openid-c", + [ + 0, 2591, 25047, 23597, 4290, 24794, 24836, 19569, 15245, 24855, 24871, 24984, 25049, 25034, 24816, 24841, 24900, + 24964, 24989, 24998, 21642, 37100, 25011, 24802, 24828, 24987, 24797, 24958, 25042 + ], + [ + 0, 1414, 2020, 4193, 25122, 1306, 1177, 1701, 25127, 2182, 1894, 842, 1587, 1610, 4342, 3980, 25609, 91, 4874, + 25099, 25108, 6513, 8529, 27525, 25110, 9240, 25103, 25104, 25098, 25137, 25053, 25118, 25114, 25058, 25083, + 10614 + ], + "grunt-svgmin", + "onnect", + "matchdep", + [0, 25155, 5130, 33359], + [1, 2343, 26163], + [0, 26164, 26165, 26166, 2537], + [0, 25183, 25194, 1759, 2858, 3310, 9796], + [0, 33460, 25204, 4874, 5542, 1177, 25209, 1894, 4039, 4494, 91, 1984], + [0, 9649, 17721, 6869], + [1, 2343, 26168], + [0, 26171, 26174, 26188, 4139], + "lws-basic-auth", + "lws-b", + [0, 1676, 4164, 4484, 4747, 2151, 1525, 3310, 25228, 24337, 3322, 24335, 25245], + "lws-blacklist", + [2, 26170, 7803], + [ + 0, 3377, 1192, 2675, 4400, 1177, 4039, 4468, 1894, 91, 5087, 4874, 5245, 28177, 20959, 107, 4864, 5542, 25250, + 8656, 8660, 1009 + ], + "lws-compress", + "lws-co", + "nditional-get", + [2, 26176, 26177], + "lws-cors", + "lws-index", + "lws-json", + "lws-log", + "lws-mime", + "lws-range", + "lws-r", + [2, 13148, 21101], + [2, 26185, 26186], + [0, 2733, 8675, 13494, 5131, 970, 1017, 25259], + "lws-rewrite", + "lws-spa", + [1, 5293, 26193], + "lws-static", + [0, 8391, 26194], + 1753574400000, + [1, 2343, 26197], + "full-stack", + [0, 26198, 0, 26199, 2537], + [0, 1461, 2731, 3744, 3776, 89, 3824, 3847, 4649], + [0, 5130, 6081, 4963, 5131, 25786], + [1, 2343, 26201], + [0, 26209, 0, 26211, 2399], + [3, 24235, 20], + "loose", + [2, 26202, 26203], + [2, 13888, 5669], + "grunt-es", + "3-safe-recast", + [2, 26206, 26207], + [0, 4484, 25804, 29321, 29322], + "grunt-rollup", + [0, 13572, 2220, 36, 5130, 202, 6710, 91], + "grunt-ts", + "rollupify", + [1, 2343, 26215], + [0, 26219, 26220, 16427, 2523], + "indexeddb", + [3, 23920, 12], + "websql", + [ + 0, 24327, 25819, 24329, 24335, 24337, 24338, 24339, 24340, 24343, 24344, 1437, 1676, 1687, 24345, 24346, 1209, + 3445, 6331, 20921, 4135, 4238, 24347, 22651, 4339, 4390, 4484 + ], + [0, 5245, 17577, 24352, 5087, 4870, 4874, 5254, 24358, 24360, 13214, 1192, 2774, 2990, 4039, 4227, 4468, 91], + [1, 2343, 26224], + [2, 31787, 26225], + "openurl", + [0, 6203, 26226, 26227, 2523], + "ecma402-abstract", + [ + 0, 25857, 25862, 25863, 19535, 19, 21, 24, 26, 1009, 1011, 1166, 1584, 1177, 1895, 1938, 1955, 25868, 3421, + 1894, 4039, 4094, 4232, 4484, 4508, 91, 555 + ], + [0, 1098, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], + [2, 3019, 2825], + [1, 2343, 26231], + [2, 7627, 4255], + [0, 26235, 26236, 26237, 2537], + [2, 6698, 19048], + "lockfile ", + [2, 26233, 671], + [0, 20437, 1209], + [0, 4874, 1009, 1011, 1177, 1895, 1938, 1955, 1894, 4039, 4042, 4052, 4076, 4079, 4484, 4508, 91, 555], + [0, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], + [1, 2343, 26239], + [0, 26240, 26242, 7097, 2523], + [0, 1473, 4741], + [2, 31528, 29413], + [0, 10321, 4493, 4543], + [1, 5293, 26244], + [0, 8391, 26245], + 1738454400000, + "@egjs/axes", + "@egjs/imready", + "modularized", + [2, 5316, 26248], + [1, 2343, 26251], + [0, 26252, 26253, 26254, 2537], + [0, 97, 5564], + [ + 0, 29519, 89, 1177, 1503, 4474, 1894, 1610, 3824, 29520, 91, 11853, 4880, 38309, 4883, 29522, 3904, 17584, 1011, + 4889, 1009 + ], + [0, 5472, 89, 582, 2275, 11857], + [1, 2343, 26261], + [2, 27471, 1722], + "kuler", + "clonedeep", + "js-randomness-predictor", + [3, 23307, 13], + [0, 26262, 0, 26263, 4139], + [0, 25510, 29529, 25758], + [ + 0, 6932, 6622, 6694, 6704, 6860, 6695, 4389, 7159, 5341, 7202, 7121, 7060, 7161, 7141, 7287, 6698, 3743, 7311, + 6946, 2090, 6566, 6907, 7228, 4799, 5261, 6863, 2051, 676, 4643, 7535, 6748, 6739, 6618, 2844, 7252, 6673, 6790, + 7531, 7226, 1851, 1612, 4763, 6598, 6728, 6868, 6662, 7148, 6905, 6668, 7292, 7272, 6583, 3767, 364, 6800, 6874, + 4166, 1698, 2021, 6821, 3065, 6435, 3730, 6882, 4647, 6857, 6637, 7031, 7223, 7080, 3113, 7220, 1871, 6801, + 7087, 6938, 7145, 3195, 7255, 7162, 6482, 7094, 6922, 6615, 6738, 6654, 8433, 7212, 7050, 7521, 1525, 6892, + 6830, 3432, 10442, 7053, 7253, 10443, 6937, 6894, 6977, 5592, 6692, 200, 6940, 6867, 7242, 7518, 6582, 3101, + 7038, 57, 7188, 6809, 6998, 4484, 4796, 7089, 7178, 7182, 6827, 7015, 6912, 7011, 6743, 1451, 6575, 7117, 6994, + 3046, 2812, 7199, 2860, 998, 5122, 1111, 6696, 6910, 3529, 7133, 6048, 1303, 6634, 1139, 6846, 6784, 7192, 6777, + 3053, 5351, 6624, 3171, 1896, 2297, 6960, 7022, 6597, 5198, 6802, 6816, 7317, 4141, 6765, 6591, 7236, 1306, + 6681, 5257, 6564, 100, 7004, 6333, 6799, 6774, 7276, 7196, 6797, 1263, 1149, 2649, 7150, 7165, 6753, 7107, 6948, + 6975, 6822, 6787, 6760, 7046, 5472, 6651, 6569, 6825, 7069, 582, 7191, 6968, 6631, 6742, 4744, 7258, 1925, 6794, + 6804, 965, 7149, 6917, 2700, 1192, 2765, 6081, 7029, 1417, 5258, 4426, 6608, 7044, 7123, 7222, 3378, 1616, 3917, + 1614, 1669, 3209, 6570, 7155, 6422, 6714, 6725, 6606, 6778, 7300, 6610, 6716, 1259, 2585, 1393, 6918, 1461, + 1213, 7232, 7172, 6755, 4014, 6919, 7209, 7075, 6818, 6870, 7039, 6795, 6761, 6966, 2154, 6885, 4707, 6964, + 6646, 7218, 7169, 2978, 5501, 1155, 6611, 6955, 1862, 1753, 2220, 6837, 7336, 4386, 6638, 6616, 6553, 7310, + 7061, 6881, 7298, 8424, 5675, 3437, 3456, 6929, 7157, 6580, 6751, 7010, 6648, 3426, 6952, 8435, 4384, 7233, + 6697, 4162, 2150, 3875, 1108, 5165, 6926, 3763, 7229, 592, 3776, 7288, 5957, 6700, 2088, 6650, 7595, 10446, + 7289, 6805, 7099, 7084, 7144, 590, 5374, 5197, 7077, 5286, 7248, 2078, 7085, 7285, 1781, 6653, 10441, 2325, + 5281, 1351, 7309, 7204, 2696, 2899, 3430, 705, 7126, 1697, 2038, 7025, 6641, 6620, 1671, 6859, 6573, 7146, 7245, + 4649, 3220, 6667, 1623, 6793, 6666, 6903, 7230, 7026, 6588, 6858, 1362, 202, 2832, 7023, 7284, 6659, 6577, 7158, + 6594, 7115, 20215, 6789, 5614, 7057, 7528, 7021, 6605, 6621, 5260, 6973, 6913, 6828, 6563, 6715, 1460, 7067, + 7072, 6762, 7033, 7517, 6702, 7020, 6887, 5131, 3778, 6915, 1593, 5194, 7071, 1429, 7042, 6636, 6841, 3428, + 7007, 7532, 6803, 7106, 3073, 6824, 7227, 7286, 2845, 7082, 7114, 7151, 7297, 6769, 3766, 6914, 7189, 7064, + 4720, 6723, 7205, 6780, 6683, 7078, 1858, 6741, 7262, 6962, 814, 6657, 7524, 1544, 7002, 7527, 1585, 5511, 1512, + 6921, 6951, 6856, 7598, 6854, 8428, 6586, 6773, 2105, 7047, 2671, 1541, 6623, 594, 6711, 7147, 6671, 7256, 7194, + 1165, 6786, 3768, 6752, 8427, 1804, 3441, 7275, 3033, 6943, 4354, 4580, 6758, 7027 + ], + "snackbar", + "inject-markdown", + [1, 2343, 26267], + [0, 0, 26268, 26269, 2537], + [0, 2272, 19270, 2899], + [0, 1111, 1936], + [1, 2343, 26271], + [0, 26272, 26275, 26276, 2523], + [0, 6513, 4193, 4484], + [2, 32920, 4521], + "rchitecto-", + [0, 33821, 7709, 33826, 33827, 33831, 33836, 29543, 4508], + [0, 7200, 1168, 5472, 3212, 20188, 29545], + [1, 2343, 26278], + [0, 0, 26279, 26280, 4139], + [0, 6373, 1437, 29550, 2151, 2070, 2323, 2372, 29552, 4039, 4042, 4057, 4076, 4072, 4484, 4487, 91], + [0, 1896, 5066, 29554, 29555, 5122, 12295, 14554, 5284, 4453, 29556, 5131, 1591, 1932, 4653, 6434], + [1, 2343, 26282], + [0, 0, 0, 26283, 2523], + [0, 7201, 5131, 1676], + [1, 2343, 26288], + [2, 28288, 26286, 33678], + "redential", + "isequal", + [0, 26289, 26290, 26291, 4139], + [0, 1364, 1536, 1676, 1710, 11479, 2017, 2929, 4200, 4763], + [ + 0, 8648, 29574, 5159, 838, 5160, 840, 8296, 5601, 1165, 1662, 1177, 1895, 1972, 2203, 3561, 1894, 3710, 23535, + 3709, 4355, 4383, 91, 1983, 1984 + ], + [0, 5592, 5995, 27, 4699, 4729, 4030, 6710], + "isfunction", + [1, 2343, 26294], + [0, 0, 26295, 26296, 2487], + [ + 0, 53, 87, 192, 5467, 1165, 1195, 1387, 31429, 1429, 29582, 1492, 29584, 1652, 29585, 2323, 29586, 2338, 29587, + 29589, 2361, 2367, 2384, 2390, 2419, 2455, 2464, 2479, 2482, 2494, 2496, 2504, 29592, 2510, 2530, 2550, 29593, + 2675, 29594, 2822, 2929, 2899, 3198, 29595, 5561, 3561, 3722, 4015, 4019, 4042, 4045, 21688, 4939, 29596, 4193, + 8959, 29597, 4597, 29599, 2924, 18237 + ], + [0, 1623, 4329, 2278, 676, 6398, 6396, 5130, 14894, 29603, 29607], + [1, 2343, 26298], + [0, 26299, 26300, 26302, 34352], + [0, 1437, 29614], + [0, 29618, 7677, 2675, 2990, 1894, 91, 1984], + "isplainobject", + [0, 200, 1473, 1512, 7208, 6876, 7201, 6983, 29609, 3632, 3073, 6807, 4166, 1871, 590, 592, 7009], + [1, 2343, 26304], + [0, 26305, 26306, 26308, 4139], + [0, 7943, 29630, 3120, 3744], + [ + 0, 48, 53, 68, 13693, 61, 31689, 73, 31693, 5757, 5800, 5818, 5827, 87, 90, 19696, 19438, 19181, 442, 34467, + 32229, 29634, 28970, 29636, 10837, 10840, 29639, 966, 968, 972, 29642, 974, 5087, 11292, 4874, 4880, 4883, 8152, + 1175, 1193, 1195, 20479, 29643, 11335, 29645, 1465, 1584, 1587, 1593, 1610, 1700, 1177, 1879, 1895, 1922, 1938, + 1947, 1955, 1959, 1961, 1976, 2151, 2203, 29646, 1192, 11347, 2774, 2780, 29652, 2832, 3561, 3697, 1894, 3720, + 89, 3816, 3824, 3847, 29655, 3957, 4183, 4270, 4315, 29660, 4415, 29661, 35487, 4468, 4469, 91, 2924, 4677, 4681 + ], + "isstring", + [ + 0, 29610, 29666, 29667, 4627, 6082, 9204, 5130, 89, 699, 9291, 5354, 29668, 29669, 29670, 29671, 7320, 29673, + 29674, 29676, 1473, 998, 8691, 8295, 29677, 181, 6073, 10769, 29678, 4315 + ], + [1, 2343, 26310], + [0, 0, 0, 26311, 2537], + [0, 23584, 23584, 1936, 3205, 1002], + "@thednp/dommatrix", + [1, 2343, 26314], + [0, 0, 26315, 26316, 2537], + [0, 29693, 2228, 2247, 2253, 2258, 2263, 2273, 2281, 2283, 29694, 2308], + [0, 36653, 36650, 29702, 15571, 8192, 5066, 11316, 18346, 35060, 2814, 20632, 6398, 5131], + [1, 2343, 26318], + [0, 26319, 26320, 22658, 2443], + [0, 3561, 33145, 4317, 8712, 1423, 28572], + [ + 0, 4729, 1138, 3244, 3467, 4390, 4763, 12084, 2070, 710, 614, 1082, 31705, 1413, 1676, 2145, 2856, 33213, 1145, + 1398, 1410, 977, 2018, 2755, 3266, 3930, 4135, 4072, 11478, 2105, 6042, 3479, 3729, 2924, 3757, 3784, 33214, + 33173, 842, 9241, 1525, 1610, 2553, 11993, 26453, 23175, 3530, 4270, 33215, 29709, 11534, 13214, 33200, 33202, + 1628, 11890, 2659, 16837, 2689, 33211, 4227, 4294, 4425, 91, 24739, 53, 554, 4865, 33198, 20463, 13753, 1154, + 33204, 1536, 1615, 2805, 4111, 27062, 4165, 15040, 33212, 7080, 104, 8317, 33146, 33174, 5364, 5245, 33191, + 4880, 1195, 1393, 33206, 1562, 33208, 2863, 33210, 3678, 20508, 4307, 11804, 33176, 11477, 4870, 5254, 33209, + 20465, 15031, 3878, 13834, 15048, 97, 33181, 26733, 15018, 3509, 15042, 15047, 101, 8755, 29877, 33197, 15606, + 15009, 3502, 15033, 5216, 33165, 8648, 10837, 20374, 4883, 2661, 15022, 3322, 51, 87, 11011, 23452, 1618, 2674, + 4230, 28512, 15039, 15046, 13471, 10879, 7806, 21122, 16149, 16566, 3672, 90, 33156, 617, 11796, 8264, 33193, + 11800, 1560, 3676, 3957, 68, 33768, 15015, 3688, 9221, 25652, 33158, 33167, 34467, 33195, 36897, 16841, 18730, + 4409, 33159, 29876, 24807, 31666, 16912, 3605, 16842, 33170, 33179, 3177, 4851, 92, 33162, 19861, 29517, 29421, + 33172, 10840, 33183, 33153, 10825, 30521, 10827, 20476, 15273, 83, 16840, 33189, 3638, 81, 5715, 29874, 5757, + 5241, 5820, 5821, 5785, 1251 + ], + [1, 2343, 26323], + [2, 1882, 24717], + [0, 0, 26324, 26325, 2399], + [0, 1414, 34238, 2675, 2990, 3561, 1906], + [0, 3561, 1623, 6425, 26543], + [0, 0, 21613, 21614, 34352], + [1, 2343, 34498], + [0, 1448, 4907, 29733, 3157, 3173, 3527, 3721, 11114, 4207], + [ + 0, 192, 5467, 442, 6061, 16607, 6063, 6065, 16608, 16612, 7746, 4874, 13210, 29740, 1009, 1011, 1610, 1177, + 1953, 2020, 2203, 2675, 29741, 2990, 3536, 1894, 4039, 4131, 91, 1984 + ], + [0, 8678, 3758, 7001, 1017, 29745, 12295, 12296, 29746, 29747, 29748, 158, 3097, 5131, 33777, 29750, 29751], + [1, 2343, 26332], + [0, 26333, 26334, 26335, 34352], + [0, 29758, 29759, 1398, 34690, 3127, 3725, 10397, 29761], + [ + 0, 53, 68, 87, 1195, 29776, 1465, 24542, 1628, 1177, 1879, 31393, 1938, 24732, 2092, 8301, 2651, 29784, 4307, + 4409, 37871, 2924, 4676, 4677, 4681 + ], + [ + 0, 8168, 8170, 8171, 6975, 8172, 8173, 1745, 29786, 29787, 29729, 8124, 29788, 29795, 29796, 29797, 29798, + 29802, 29803 + ], + [1, 2343, 26337], + [0, 26338, 26339, 26340, 2523], + [0, 3744], + [0, 53, 68, 97, 1177, 1879, 1895, 1938, 1947, 1955, 1959, 1961, 1192, 5103, 1894, 89, 3857], + [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 26542, 23187, 29556, 29804, 9944, 7521], + [1, 2343, 26342], + [0, 0, 26345, 26347, 2523], + [3, 532, 8], + [2, 26346, 26651], + [0, 53, 87, 97, 29817, 21155, 1177, 2675, 2990, 89, 3857, 91], + "@tdesign/", + [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 5396, 29819, 15813, 29820], + [1, 2343, 26352], + [3, 17904, 13], + "sprintf-kit", + "uni-global", + [0, 0, 26354, 26355, 2443], + [3, 25092, 13], + [ + 0, 53, 68, 61, 5241, 83, 87, 90, 5583, 811, 816, 968, 972, 1165, 1497, 1652, 1177, 1895, 31755, 1955, 1959, + 1961, 1976, 2675, 2686, 1192, 2990, 3561, 1894, 3744, 89, 3824, 4042, 8849, 29826, 6068, 10854, 4320, 4323 + ], + [0, 89, 35058, 29831, 3392, 89, 4627, 29832, 5131, 12295, 12296, 29836, 29837, 29838, 29839], + [1, 2343, 26359], + "ncjsm", + "tape-index", + [0, 26360, 26361, 26362, 34352], + [0, 97, 29843, 29844], + [ + 0, 53, 78, 83, 87, 90, 92, 5522, 107, 29846, 968, 972, 4880, 4883, 1009, 1011, 1030, 1178, 1413, 1610, 1177, + 1895, 1955, 1959, 2675, 1192, 2780, 2990, 1894, 89, 3824, 4039, 91, 1983 + ], + [0, 29848, 29849, 89, 5128, 38332], + [1, 2343, 26365], + "@standard-schema/spec", + [0, 26366, 26367, 26368, 2487], + [0, 1420, 29855, 4507], + [ + 0, 5517, 19438, 442, 29857, 23689, 1414, 1437, 1516, 1532, 668, 1177, 1895, 1955, 2020, 2203, 2675, 2765, 2990, + 3074, 1894, 4039, 18710, 91, 4523 + ], + [0, 20627, 1739, 1745, 1179, 1783, 5980, 9591], + [1, 2343, 26370], + [0, 26372, 26373, 26378, 2443], + "terminal.js", + [0, 810, 1497, 26570, 16485, 2017, 2696, 3876, 4022, 32284, 5545, 29869], + [ + 0, 48, 53, 87, 90, 92, 97, 19696, 28091, 19492, 19438, 442, 28598, 30507, 810, 11275, 34467, 827, 10828, 28147, + 28466, 31235, 7384, 31237, 28473, 28476, 968, 972, 974, 29879, 33123, 29880, 4874, 4880, 4883, 15606, 1030, + 17214, 7677, 1195, 29883, 20476, 1393, 29645, 1610, 17100, 17101, 17103, 1687, 1177, 26322, 1895, 1915, 1938, + 1942, 1947, 1955, 1959, 1961, 30553, 10851, 2070, 2203, 2675, 2832, 2990, 3127, 3541, 1894, 89, 3824, 3847, + 3876, 4039, 4270, 4409, 4469, 4473, 91, 4523, 15088, 1984, 29887, 2924, 4676, 4677 + ], + [3, 28685, 11], + "refresh", + "overwrite", + "irtual-core", + [0, 89, 6071, 9816, 5128], + "tinyexec", + [2, 17213, 28937], + [1, 2343, 26382], + [0, 26384, 26386, 26387, 2537], + "date-format", + [0, 29896], + "flatted", + [ + 0, 29900, 29905, 29910, 29911, 811, 816, 974, 11096, 11109, 19203, 29914, 11111, 29917, 29921, 1414, 1429, + 29922, 29924, 1177, 29925, 1938, 2832, 8821, 2899, 1894, 4042, 29926, 4146, 4193, 4196, 4261, 4072, 91 + ], + [ + 0, 29935, 11619, 11608, 30891, 11622, 6907, 29936, 12899, 5130, 30442, 17950, 1283, 29939, 33359, 11415, 6624, + 12620, 29940, 29941 + ], + "streamroller", + [1, 2343, 26392], + "@log4js-node/sandboxed-module", + "-producer", + [0, 0, 26393, 26394, 2487], + [0, 53, 13052, 87, 4042, 4045, 4058, 4067, 4415, 29949, 35487, 4535], + [0, 7838, 29953, 7518, 3161, 1098, 29954, 89, 188, 7880], + [1, 2343, 26401], + [3, 9227, 10], + "e-js", + [2, 26396, 26397], + "grunt-open", + [2, 2235, 4358], + [0, 26402, 26403, 26404, 2537], + [0, 97, 29959, 10984, 1673, 3021, 29960, 4443, 1155], + [ + 0, 5652, 61, 83, 87, 92, 192, 5467, 6372, 5583, 811, 16952, 8850, 816, 6373, 29966, 29967, 29980, 26344, 5139, + 4874, 8149, 11438, 14334, 1009, 1011, 11016, 13061, 7677, 23203, 13063, 1031, 36812, 36805, 11018, 1165, 1170, + 1420, 12405, 1527, 1540, 1610, 1651, 1652, 1676, 29972, 668, 1177, 1881, 1895, 1938, 1955, 1988, 2226, 2675, + 2832, 695, 2990, 3025, 26804, 3213, 3561, 1894, 3725, 29973, 3957, 4039, 4042, 34019, 8849, 11899, 15277, 29974, + 15911, 10854, 29975, 29978, 4073, 6904, 4081, 29983, 4484, 91, 1983, 29987, 1984, 188, 4630, 4639, 13151 + ], + [0, 188, 5131, 29990], + [1, 2343, 26427], + "esm2umd", + [2, 26409, 26410], + "int64", + "@astrojs/s", + "itemap", + "@pagefind/default-ui", + [2, 26689, 27593], + "uid2", + "astro-expressive-code", + "bcp-47", + "isemail", + "canonical-json", + [2, 3138, 12442], + "-phase", + [2, 3081, 26419], + "pagefind", + "remoting", + [2, 25894, 26422], + "loopback-", + "filters", + [2, 26424, 26425], + [0, 26430, 26432, 26451, 2523], + "globalize", + [2, 25894, 26428], + [0, 7755, 1869, 2814], + "linkedom", + [ + 0, 53, 87, 23572, 11301, 1165, 1168, 30000, 1597, 1610, 1637, 1651, 18259, 1759, 1177, 1895, 1903, 1938, 1954, + 1955, 1958, 1970, 3363, 3561, 3564, 3566, 30030, 3579, 3605, 30033, 3613, 3640, 30039, 30274, 1894, 4039, 4042, + 4045, 4055, 4058, 20981, 30041, 4067, 20983, 32978, 4073, 12309, 4201, 4320, 4946, 4360 + ], + "or-remote", + [2, 1544, 26433], + [2, 26424, 26434], + [3, 18637, 12], + "tub-transport", + [2, 26436, 26437], + "datas", + "withastro", + "ource-juggler", + [2, 26439, 26441], + [2, 26424, 26442], + [3, 18637, 11], + "astro-integration", + "-transport", + [2, 1716, 26446], + [2, 26444, 26447], + "adapter-", + [2, 32700, 23187], + [0, 12318, 2090, 30044, 30045, 13225, 7518, 5398, 158, 30046, 190, 5131, 18346, 9229, 1542, 30826, 20937, 2814], + [1, 2343, 26454], + "is-docker", + [0, 26460, 26471, 26475, 2523], + "loopback-boot", + "s6-shim", + [2, 13897, 26456], + [3, 26435, 12], + [2, 26458, 2585], + [0, 1170, 2812, 1209, 3183, 4094], + "task-emitter", + [2, 25894, 26461], + [3, 6738, 11], + [2, 26463, 1524], + [2, 25894, 26464], + [2, 1884, 3081], + "processor", + "-preprocessor", + [2, 22126, 26468], + [2, 2877, 26469], + [0, 1429, 1177, 10419, 3188, 2899, 1241], + "sqlserver", + "StrongLoop", + "mBaaS", + [ + 0, 6703, 1702, 200, 1586, 21405, 13397, 33351, 27, 29854, 30053, 21402, 13322, 16697, 28984, 6667, 6574, 30056, + 31937 + ], + [1, 2343, 26480], + [2, 26478, 29168], + [3, 30636, 28], + [2, 26868, 26869], + [0, 0, 26496, 26497, 2537], + "exact-versions", + [2, 32700, 7293], + [2, 26485, 24631], + "steno", + [3, 31231, 18], + [2, 19036, 20], + [2, 5745, 1852], + [2, 2029, 26487], + [2, 32731, 26494], + "embed", + "Storage", + "localStorage", + [2, 1577, 26491], + "polygon", + [2, 32731, 32729], + [0, 1165, 1387, 2323, 30061, 2379, 2409, 2450, 2482, 2494, 2496, 2510, 18426, 30064, 3591, 4320, 4323, 4747], + [0, 29993, 30066, 30067, 1623, 695, 5131], + [1, 2343, 26500], + "rslog", + [0, 0, 0, 26501, 2487], + [0, 89, 6649, 10057, 6355, 3875, 1542], + [1, 5293, 26508], + [2, 13104, 1936], + "@lucide/build-icons", + "@lucide/", + [2, 4080, 591], + [2, 26505, 26506], + [0, 8391, 26515], + "Lucide", + "HTML", + "Feather", + "Icons", + "Icon", + "SVG", + 1731196800000, + "Feather Icons", + "Fontawesome", + [1, 2343, 26519], + [0, 26521, 26522, 2514, 4139], + "Font Awesome", + [ + 0, 30078, 9307, 9311, 30068, 30052, 30073, 9313, 30072, 1497, 12412, 30075, 2071, 7610, 2579, 21308, 3137, + 27008, 3140, 12627, 26929, 26914, 17429, 9337, 3973, 9340, 3988, 30049, 30069, 30059, 27062, 9348, 4207, 17913, + 4473, 30058, 4555, 28830, 4745, 4763 + ], + [0, 11522, 972, 1006, 12396, 9363, 30082, 4880, 4891, 1030, 30084, 23312, 23314, 3286, 89, 3824, 4549, 1984, 28965], + [1, 2343, 26524], + [0, 26525, 0, 26526, 2537], + [0, 30097], + [0, 1674, 30099, 30100, 15001, 13739, 35071, 30103, 30113, 19571], + [1, 2343, 26529], + "decree", + [0, 26530, 26531, 13347, 2537], + [0, 20378, 3530], + [0, 11976, 4874, 20374, 2071, 30138, 2070, 4441, 1531, 91], + "manipulate", + "blur", + "sharpen", + "flip", + "hue", + "saturation", + [1, 2343, 26540], + "lightness", + [0, 0, 0, 26544, 4139], + "transparency", + "fade", + "opacity", + [0, 91, 553, 1973, 8791, 2022], + [1, 2343, 26546], + [0, 26547, 2667, 26554, 2537], + [0, 30173, 4484], + "@75lb/deep-merge", + [3, 1107, 11], + "-sequences", + [2, 26549, 26550], + [2, 1601, 7880], + "load-module", + [0, 30175, 30176, 27227, 30177, 30178, 91, 6742, 57, 15266, 2873, 1993, 7256, 676, 19976, 30179, 5995, 6400], + "-anywhere", + [2, 17242, 26555], + [2, 30307, 553], + [1, 2343, 26559], + [0, 0, 6230, 26560, 2399], + [0, 32054, 4963, 4967, 6082, 3286, 3287, 89, 11167, 31512, 181, 630], + [1, 2343, 26569], + "-home-dir", + [2, 18132, 26562], + "mdast", + [2, 2580, 26564], + "fetch-happen", + [2, 3094, 26566], + [2, 12428, 1783], + [0, 6234, 6230, 26575, 4139], + [2, 25212, 28139], + "-unique-id", + [2, 5843, 26571], + [2, 4402, 163], + "y18n", + [0, 1501, 4963, 4967, 5342, 6082, 3286, 3287, 89, 5341, 9057, 181, 630], + [3, 9357, 10], + "umnify", + [2, 26576, 26577], + [2, 8140, 1687], + "ke-fetch-happen", + [2, 18655, 26580], + [1, 2343, 26583], + [0, 26585, 6230, 26588, 2523], + "@types/which", + [0, 3826], + "wizard", + "task graph", + [0, 4963, 18263, 1786, 4967, 6082, 3286, 3287, 89, 181, 630, 9229], + [1, 2343, 26590], + [0, 26592, 6230, 26593, 4139], + "zoroaster", + [0, 9041], + [0, 4963, 4967, 6082, 3286, 3287, 3412, 3730, 89, 181, 630], + [1, 2343, 26595], + [0, 26592, 6230, 26598, 2537], + " manipulation", + [2, 1871, 26596], + [0, 30246, 4963, 4967, 6082, 3286, 3287, 89, 7193, 181, 630], + [1, 2343, 26600], + [0, 0, 6230, 26601, 2537], + [0, 4963, 4967, 6082, 3286, 3287, 89, 30256, 24843, 30251, 181, 630], + [1, 2343, 26607], + [3, 7678, 9], + [2, 4501, 6996], + [2, 12612, 26604], + [2, 26603, 26605], + [0, 26613, 26615, 26618, 2537], + "lavalink client", + "audi", + "o streaming", + [2, 26609, 26610], + "music", + [0, 3135], + "music bot", + [ + 0, 48, 53, 5241, 87, 92, 19344, 10879, 30263, 5601, 4873, 4874, 1009, 1011, 1177, 1895, 1938, 1942, 1953, 30266, + 13668, 3401, 4039, 91, 1984 + ], + "emoji-datasource", + "voice chat", + [0, 30270, 3541, 1651, 2899, 1984, 1192, 2765, 3283, 28360, 30271, 2793, 1973, 11937, 16237, 5472, 30272], + " integration", + [2, 1721, 26619], + " performance", + [2, 6732, 26621], + [1, 2343, 26625], + "easy-to-use", + [0, 26634, 26635, 26637, 2487], + "feature-rich", + "seamless", + [2, 26627, 26619], + "communi", + "ty support", + [2, 26629, 26630], + "open-source", + "lavalink", + [0, 30288, 30293, 30295, 26557, 32842, 30297], + [0, 30303, 6494, 4874, 30306, 30305, 30310, 2026, 4039, 1531, 91, 1984], + [3, 66, 19], + [0, 30297, 2026, 5995, 1851, 5592, 13527, 91, 5284, 2663], + [1, 2343, 26639], + [0, 0, 26640, 26641, 2443], + [0, 3377, 26230, 4255, 1973, 30351], + [0, 5131, 28125, 4354, 1388], + [1, 2343, 26643], + [0, 26645, 26646, 26649, 2523], + "convex-helpers", + [0, 12449, 4549, 12396, 2586, 21016, 32568, 4233, 12447, 32567], + [0, 1414, 1177, 3958, 1894, 3541, 3985, 91, 4874, 15632, 32484, 27706, 27711, 30411], + "intermediate", + "recursively", + [0, 1745, 9102, 25131, 1932, 3958, 32462, 3984, 4549], + [1, 2343, 26652], + "theme-generator", + [0, 26653, 26654, 26655, 2523], + [0, 30416, 30425, 30431, 30434, 30438, 30439, 30441, 30445, 30447, 30449, 30450, 30452], + [0, 48, 4487, 91], + [0, 30455, 5133, 30960, 1851, 5284, 27838, 18969, 30456, 5131], + [1, 2343, 26659], + "dingbat-to-unicode", + "lop", + [0, 26665, 0, 26199, 2443], + "-licenses", + [2, 22190, 26660], + [2, 13888, 26661], + "duck", + "hamjest", + [0, 25766, 30802, 1461, 30809, 2731, 3744, 3776, 89, 3824, 3847, 4649], + "office", + [1, 2343, 26668], + [0, 26669, 0, 26199, 2399], + [0, 89, 3824, 3744, 25766], + [3, 36878, 12], + "ternal-editor", + [1, 2343, 26673], + [0, 26686, 0, 26687, 4139], + "@nestjs/", + [2, 26674, 10896], + "@nestjs/co", + [2, 26676, 686], + [2, 26676, 23], + [3, 31, 9], + [2, 26679, 2026], + [2, 26674, 26680], + [3, 9687, 9], + "wagger", + [2, 26682, 26683], + [2, 26674, 4521], + [0, 4484, 2735, 547, 2858], + [0, 2733, 5130, 1098, 5131, 1896, 8674, 8675, 1591, 8677, 8678], + "@nestjs/cli", + "@nestjs/t", + [2, 26689, 8615], + [1, 5293, 26692], + [0, 8391, 26700], + "asherize", + [2, 6491, 26693], + [3, 12284, 16], + [2, 26695, 2528], + "llaboration-core", + "limiter", + "embla-carousel-reactive-utils", + 1733616000000, + [1, 5293, 26722], + [2, 19183, 26714, 3181], + "eigen", + [3, 578, 11], + "de-highlight", + [2, 26704, 26705], + "@tabler/icons-react", + [3, 3672, 15], + "mantine", + [2, 26708, 26709], + "imple-vars", + [2, 3677, 26711], + "swr", + [3, 25141, 13], + "context-menu", + "peowly", + "context menu", + "server ", + [2, 26718, 4963], + [2, 7519, 26719], + "user ", + [0, 8391, 26723], + 1733961600000, + [1, 5293, 26728], + "experience", + [2, 26721, 26725], + "usability", + [0, 8391, 26729], + 1734220800000, + [1, 2343, 26731], + [0, 0, 26732, 26734, 2537], + [ + 0, 4172, 2278, 34683, 4484, 1177, 4039, 4042, 4086, 4072, 3363, 3561, 2151, 1894, 1367, 1610, 4320, 91, 6375, + 3400, 3566, 30616, 1165, 1540, 6376, 3019, 34673, 1907, 30617, 1938, 1982, 30620, 10817, 1011, 15290, 6392, 1009 + ], + "axe-playwright", + [0, 1623, 2278, 6398, 20897, 1283, 699, 5130, 30622, 27837], + [1, 2343, 26736], + [0, 26737, 26738, 26742, 2537], + [0, 97, 30628, 30666], + [ + 0, 48, 53, 61, 71, 13052, 83, 85, 87, 94, 4856, 6503, 4874, 1178, 1195, 1208, 1290, 30691, 30696, 1389, 1429, + 1431, 31602, 1610, 1177, 2026, 10621, 2832, 2899, 3421, 705, 4039, 4218, 4409, 91, 2282, 4650, 2924, 4677 + ], + [2, 11932, 26740], + "umd-wrapper", + "mapbox", + [0, 6599, 5131, 5592, 29744, 30730], + "mapbox-gl", + [2, 4609, 4056], + [1, 2343, 26748], + "mapboxgl", + "legend", + [0, 0, 26749, 26750, 2443], + [0, 1414, 1429, 1540, 1596, 668, 1177, 2832, 3010, 2899, 2278], + [0, 5284, 5131, 12295, 12296, 7179], + [1, 2343, 26752], + [0, 26753, 26756, 26757, 2487], + [0, 3775, 1473, 1673, 30778, 1209, 1461, 30779, 3376, 30774, 30772, 30776, 15616, 3911, 30770], + " processing", + [2, 2585, 26754], + [0, 11336, 89, 3824, 4880, 4870, 97, 4883, 30783, 972, 968, 974, 20562, 4808], + [0, 89, 12248, 5128, 30731, 30785, 30786, 4627, 4963, 181, 5130, 4967, 5131], + [1, 2343, 26759], + [0, 26760, 26765, 26199, 2537], + [0, 25766, 30802, 30803, 30405, 30458, 1461, 2731, 3744, 3776, 89, 3824, 4649, 30809], + "linkify-it", + "mdurl", + "punycode.js", + "uc.micro", + [0, 30819, 30820, 30822], + "footnote", + [2, 3108, 26766], + [3, 26767, 14], + "r-inline", + [2, 26768, 26769], + "ins", + [2, 3108, 26771], + "ark", + [2, 7613, 26773], + [3, 7617, 14], + [2, 26775, 22164], + "ndoc", + [1, 2343, 26781], + [3, 5956, 14], + [2, 26779, 13218], + [0, 0, 26782, 26783, 2537], + [0, 6066, 1894, 4042, 4045, 12611, 4048], + [0, 4967, 9006, 29633], + "@nx/docker", + [1, 2343, 26787], + "anchor", + [0, 26788, 26789, 26790, 2537], + [0, 16115], + [0, 972, 4880, 4883, 1628, 2144, 2675, 89, 3824, 3895, 4307, 4469, 21180, 4484, 91, 2924, 6482], + [0, 1631, 30845, 30847, 30848, 4627, 6398, 5131, 4453, 1631, 5399, 30858, 32040], + [1, 2343, 26792], + [0, 26793, 26794, 26795, 2399], + [0, 10780, 1437, 1525, 2020, 2151, 3714, 3742, 4135, 4548, 4707, 4726, 4739, 4753], + [0, 30868, 16480, 1414, 2070, 2203, 14775, 30889, 2658], + [0, 30829, 31731, 30870, 5131, 12295, 30871, 12296], + "emojies", + [1, 2343, 26798], + [0, 26801, 0, 26802, 2537], + "emoticon", + "emoticons", + [0, 3533, 30018, 28941, 29602], + [0, 29699, 2942, 6807, 1179, 1745, 29703, 29753], + [1, 2343, 26810], + [2, 26807, 26809], + "from-to", + [2, 4279, 26805], + "lodash.u", + "pdf-text", + "pperfirst", + [0, 26811, 26812, 26813, 34352], + [ + 0, 31834, 31846, 29951, 66, 29890, 5582, 635, 29057, 1091, 1525, 18145, 30089, 31002, 13812, 2822, 26014, 3079, + 3181, 3310, 30095, 4025, 6477, 4135, 4183, 4474, 91 + ], + [0, 1177, 1939, 1959, 1969, 2151, 1192, 2829, 3123, 4039, 30269], + [0, 5593, 1745, 1179, 1783, 5061], + [1, 2343, 26816], + "rows", + [0, 26817, 26818, 26819, 2523], + [ + 0, 7614, 19976, 3445, 1371, 1437, 2020, 2975, 3478, 4484, 1209, 4135, 1593, 3742, 2924, 1457, 2151, 4447, 1525, + 2641, 1483, 1710, 1869, 3884, 13834, 4689, 30459, 4562, 30876, 3885, 30878, 32359, 30882, 9329, 4681, 30890, + 2651, 30895, 30896, 4676, 30899, 30900, 30902 + ], + [0, 36864, 18055, 4883, 8286, 30913, 3904, 33768, 29125, 30915, 30919, 4985, 38298], + [0, 89, 12478, 2924, 1745, 18061, 18063, 467], + [1, 2343, 26821], + [0, 26822, 26823, 26824, 2443], + [0, 4484, 2735, 547], + [ + 0, 3377, 1192, 89, 1177, 4039, 4042, 4468, 2151, 1894, 3824, 91, 5087, 4874, 4880, 4883, 8656, 8660, 972, 2780, + 10817, 968, 1011, 20562, 1009 + ], + [0, 2733, 5130, 89, 5131, 1896, 24364, 8674, 1591, 8677, 8678], + "microtime", + [1, 2343, 26828], + "theredoc", + [0, 0, 26829, 26830, 2537], + [0, 5087, 1009, 1011, 1593, 1596, 1637, 1177, 1192, 2774, 2794, 2832, 30935, 4042, 4468, 91], + [ + 0, 32814, 6422, 6805, 2013, 24800, 31767, 91, 5284, 11512, 4627, 3111, 30430, 11608, 6400, 1936, 9622, 8174, + 30937 + ], + [1, 2343, 26832], + [0, 26833, 0, 26834, 2537], + [0, 1497, 9272, 9273, 3744, 97, 6372, 444], + [0, 89, 5128, 9267, 30943, 6653], + [2, 13090, 4226], + "lazy-cache", + "list-item", + [3, 19516, 13], + "mixin-deep", + "repeat-string", + [1, 2343, 26848], + "glossary", + [2, 4001, 1932], + " of contents", + [2, 176, 26844], + "of-contents", + [2, 16065, 26846], + [0, 26850, 0, 26851, 2487], + "node-bundle-require", + [0, 9273, 3744, 97], + [0, 89, 5128, 9267, 699], + [2, 28001, 28034, 16111], + [1, 2343, 26856], + [2, 24559, 18089], + "gemoji", + [0, 26857, 0, 26858, 4139], + [0, 1497, 3847, 9272, 3744, 97, 5090], + [0, 89, 5128, 9267, 594], + "CommonMark", + [1, 2343, 26861], + [0, 26862, 0, 26863, 2523], + [0, 30963, 30964, 1699, 3547], + [0, 91, 4521, 678, 12659, 4030, 7096, 5592, 30967, 30968, 5995, 30969], + [1, 2343, 26867], + "jsonpointer", + "run-con", + [0, 26871, 0, 26863, 2523], + [3, 11026, 13], + "uilder", + [2, 10829, 2202], + [0, 30978], + "babel-re", + "@markedjs/eslint-config", + "@markedjs/", + "testutils", + [2, 26874, 26875], + "marked-", + [2, 26877, 5342], + [1, 2343, 26884], + "marked-man", + "recheck", + "@egjs/component", + "@egjs/list-differ", + [0, 26886, 26887, 26888, 2537], + "markup", + [0, 1091, 4135, 2105, 30986, 30987, 31339, 20786, 2745, 27168], + [0, 16499, 1983, 1984, 1597, 2071, 91, 36864, 3401, 19232], + [ + 0, 30990, 30991, 20998, 5194, 5130, 2323, 5284, 1936, 6082, 1783, 6710, 30993, 38087, 8674, 12479, 5347, 5348, + 30997, 30998, 30999 + ], + [1, 2343, 26890], + [0, 0, 26891, 26892, 2523], + [0, 1759, 20463, 1763], + [0, 89, 3286, 23803, 1759], + [1, 2343, 26894], + [0, 26896, 26897, 26898, 2537], + "v8-argv", + [0, 31705, 4227, 31044, 4121, 2626, 6473], + [ + 0, 4757, 1192, 3144, 1177, 3266, 1701, 2924, 2151, 2182, 1894, 1610, 3758, 4507, 2794, 91, 53, 5087, 4874, 1615, + 4677, 1195, 29283, 3401, 3878, 4891, 4864, 21122, 8818, 31054, 4681, 31055, 33002, 31057, 2784, 4409, 1895, + 1955, 2780, 4684, 5241 + ], + [0, 89, 5284, 2924, 26375, 11498, 31062, 3000, 2998, 6109, 6609, 2999], + [1, 2343, 26903], + [3, 2718, 14], + "refixer", + [2, 26900, 26901], + [0, 0, 26904, 26911, 2443], + [0, 34264, 2222, 31069], + "vent-listener", + [2, 11352, 26905], + "typed-event-target", + "simple-assign", + "@onesy", + [3, 1441, 29, 6], + [0, 31076, 2220, 2844, 553, 91, 9381, 5130, 1932], + [1, 2343, 26913], + [0, 26918, 26919, 26923, 2523], + "react-medium-image-zoom", + "complex.js", + "latex", + "escape-latex", + [ + 0, 3467, 6482, 1983, 31090, 1371, 1437, 2020, 1759, 1209, 3539, 4135, 1458, 3363, 3471, 2924, 1457, 2151, 2720, + 1894, 1525, 1587, 1483, 1628, 91, 3921, 31091, 31093, 1393, 13223, 1540, 4025, 4307, 31094, 31095, 31096, 31097, + 9322, 3878, 31098, 31099, 31101, 8161, 29182, 31105, 10936, 31106, 31109, 31110, 31111, 2651, 31114, 4679, 4684, + 31117, 12361, 3177, 4676, 31120, 31123, 31125, 4992, 31127, 2135, 24723 + ], + [0, 1192, 89, 2190, 3824, 5087, 4874, 4870, 31131, 4864, 31134, 31138, 4985], + "-natural-sort", + [2, 5284, 26920], + [2, 17414, 3046], + [ + 0, 31140, 6354, 31141, 17944, 31146, 31153, 27837, 5592, 1303, 5130, 27, 1781, 2934, 31154, 33359, 3424, 28438, + 3469, 4030, 7096, 1965, 31155, 12479, 5284, 29727, 31047, 31048, 31045, 31042, 31156, 31171, 5995, 18063, 31175, + 2968, 31176, 89, 6071 + ], + "jsep", + "ndarray", + "-determinant", + [2, 26925, 26926], + [1, 2343, 26937], + [2, 28402, 28403], + "ndarray-gemm", + "ops", + "ndarray-ops", + "ndarray-pack", + "numeric", + "numericjs", + "pad-", + [0, 26939, 26942, 26943, 2537], + "l-time-collaboration", + [0, 53, 4982, 1420, 1595, 31187], + "sylvester", + "zeros", + [0, 4361], + [0, 11525, 8221, 89, 364, 5592], + "mathematics", + "algebra", + "complex", + "fraction", + [1, 2343, 26949], + [0, 26950, 26951, 26952, 2537], + [0, 104, 18089], + [0, 31206], + [0, 1936, 2587, 1172, 23267, 36587, 23266], + [1, 2343, 26954], + [0, 0, 0, 26955, 2537], + [0, 11961, 10339, 10340, 5122, 5995, 1594], + "charenc", + [1, 2343, 26958], + [0, 26959, 26960, 7537, 2523], + [0, 1673, 1511, 31225], + [0, 2675, 1984, 91, 4874, 975, 11976, 192, 11978, 7677, 5467], + [1, 2343, 26962], + [0, 26964, 0, 26966, 2523], + "md5sum", + [0, 1004], + "checksum", + [ + 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, + 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, + 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, + 12094, 31238, 31239 + ], + [1, 2343, 26968], + [0, 26964, 0, 26997, 34352], + [2, 27022, 27023], + "d-character-reference", + [2, 5877, 26970], + [2, 15103, 26971], + [3, 17995, 15], + "decode-n", + "-char", + "-reference", + [2, 6842, 26976], + [2, 26975, 26977], + [2, 10129, 26978], + [2, 26974, 26979], + [2, 26973, 26980], + [3, 26981, 22], + [2, 26982, 1871], + [2, 3370, 16906], + [2, 26973, 26984], + [2, 26973, 5511], + [2, 26973, 553], + [3, 4292, 10], + [2, 26988, 8193], + [2, 9406, 26989], + [ + 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, + 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, + 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, + 12094, 31238, 31260 + ], + [2, 20627, 6660], + [2, 17991, 6147], + [1, 2343, 26996], + [3, 3137, 10], + [0, 27025, 0, 27026, 34352], + [ + 0, 6400, 4967, 12042, 12045, 12047, 1424, 12048, 12049, 12050, 12044, 12056, 12058, 91, 5284, 7521, 5122, 12075, + 12076, 12079, 1623, 1936, 12080, 12082, 12083, 31268 + ], + [1, 2343, 26999], + [0, 26964, 0, 27001, 2537], + [3, 26986, 16], + [ + 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, + 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, + 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, + 12094, 31238, 31276 + ], + "anitize-uri", + [2, 27000, 27002], + [1, 2343, 27007], + "lines", + "trim-lines", + [0, 26964, 0, 27001, 2523], + [2, 3138, 3987], + [3, 12133, 20], + [2, 27009, 3987], + [1, 2343, 27012], + [0, 26964, 0, 27001, 2443], + [1, 2343, 27014], + [0, 27015, 27019, 27020, 2487], + [ + 0, 7709, 33828, 31294, 31296, 28384, 1364, 1532, 1553, 1560, 1575, 1594, 29013, 1874, 2026, 31300, 31303, 2040, + 33596, 13870, 2212, 31305, 2593, 2738, 11993, 2863, 1209, 3173, 3220, 3222, 3237, 3242, 3345, 3478, 12286, + 17009, 4143, 4351, 31306, 1155, 25370, 4729 + ], + [2, 27577, 3432], + "mdn", + "mozilla", + [ + 0, 7806, 38176, 9227, 5601, 7808, 10406, 8264, 4870, 38179, 24156, 4874, 16936, 4891, 9241, 2020, 2659, 3297, + 4342, 91, 1984 + ], + [0, 12322, 3730, 30045, 31310, 31311, 6949, 21611, 31312, 5403, 5995, 4699, 2026, 20863], + [1, 2343, 27024], + [3, 10848, 19], + [3, 2791, 11], + [0, 27037, 0, 27034, 34352], + [ + 0, 188, 4452, 1593, 668, 2822, 2924, 1457, 3084, 1628, 3560, 4027, 4634, 4639, 13152, 53, 1615, 2092, 1165, + 1195, 37215, 31325, 4689, 36119, 3618, 31331, 31332, 4681, 1584, 3676, 31333, 31334, 4645, 31343, 3177, 31347, + 31348, 1549, 31351, 31353, 3463, 21287 + ], + [0, 1745, 1179, 188], + [1, 2343, 27028], + [0, 27029, 0, 27030, 2487], + [0, 3725, 3105, 18587, 3114, 3107, 31343, 13122], + [0, 1745, 1179, 1783, 188, 19469], + [1, 2343, 27032], + [0, 27033, 0, 27034, 2523], + [0, 31332, 3008, 3084], + [0, 1745, 1179, 188, 19469], + [1, 2343, 27036], + [0, 27040, 0, 27034, 34352], + [0, 31331, 3029], + [1, 2343, 27039], + [0, 27075, 27077, 27064, 34352], + [0, 31331, 1615], + [1, 2343, 27042], + [0, 27043, 0, 27034, 4139], + [0, 3412, 31331], + [1, 2343, 27045], + [0, 27046, 0, 27034, 2523], + [0, 31331, 31343], + "@blazediff/core", + [1, 2343, 27049], + [0, 27050, 0, 27034, 2537], + [0, 31331], + [1, 2343, 27052], + [0, 27053, 27054, 27034, 2523], + [0, 1437, 1869, 2151, 2205, 2226, 2570, 4135, 4452, 10761], + [0, 31414], + [1, 2343, 27057], + [3, 26482, 36], + [0, 27058, 0, 27034, 2537], + [0, 1209, 4333, 13092, 4334, 31331, 21288, 31348, 31375, 31425, 31314], + [1, 2343, 27060], + [0, 27061, 27063, 27064, 2537], + [0, 31434, 31435, 31438, 31442, 31444], + "server-only", + [0, 1429, 2899, 4474, 2924, 48, 53, 13693, 4856, 5087, 4874, 3400, 4677, 6503, 85, 94, 87, 31455, 31456, 92], + [0, 31459, 31460, 9439, 31461, 5131, 11194, 4653, 1616, 31462, 31463], + [1, 2343, 27067], + "@types/title", + [0, 27068, 27070, 27064, 4139], + [0, 31435, 31469, 31470], + [2, 27074, 29387], + [0, 1429, 2899, 4474, 2924, 48, 53, 13693, 4856, 5087, 4874, 3400, 4677, 6503, 85, 94, 87, 31456, 92], + [1, 2343, 27072], + [0, 0, 0, 2514, 34352], + "hashring", + [3, 30708, 19], + [0, 3698, 11194, 1582, 31477, 31480], + "jackpot", + [ + 0, 1429, 2899, 1177, 1593, 4474, 2924, 4469, 48, 1628, 91, 53, 13693, 4856, 5087, 4874, 3165, 3400, 4677, 6503, + 4880, 4307, 31484, 5000, 85, 94, 87, 1954, 1959, 1938, 1958, 1895, 1903, 1955, 1970, 92 + ], + "InnoDB memcached API", + [1, 2343, 27082], + "failover", + "hashing", + [0, 27086, 27087, 27064, 2443], + "membase", + "memcache", + "nMemcached", + [0, 31465, 31477, 31480, 31489, 31490, 31492], + [ + 0, 1429, 4653, 2899, 1177, 9420, 1593, 4474, 2924, 1894, 48, 91, 53, 13693, 4856, 5087, 4874, 3400, 4677, 6503, + 85, 94, 87, 1954, 1959, 1938, 1958, 31496, 1895, 1903, 1955, 1970, 92 + ], + [1, 2343, 27089], + [0, 27095, 27070, 27064, 2443], + "@json", + "joy.com/json-pack", + [2, 27090, 27091], + [3, 27092, 13], + [2, 27093, 614], + [0, 4729, 31435, 31469], + "tree-dump", + [1, 2343, 27102], + [3, 7746, 11], + [2, 8184, 3358], + [3, 4490, 14], + [2, 27100, 10896], + [0, 27104, 0, 27116, 2487], + "fs.js", + [0, 1497, 31515], + "in-memory", + "fsa", + " access", + [2, 6771, 27107], + " file system", + [2, 970, 27109], + "webfs", + "crudfs", + "opfs", + "casfs", + "content ", + [0, 31517, 31518, 5131, 12344], + "able storage", + [2, 15427, 27117], + [2, 27115, 27118], + "pvu", + [1, 2343, 27123], + [2, 7467, 11017], + [0, 0, 0, 7983, 2537], + [2, 24399, 4162], + [2, 2068, 7906], + "mem", + "nanocolors", + [1, 2343, 27129], + [0, 0, 0, 27131, 2523], + "memoization", + [0, 1098, 5130, 1388, 17050, 5472, 12899], + [1, 2343, 27133], + [0, 9756, 27137, 27139, 2537], + [2, 27135, 1276], + [3, 5536, 15], + "gulp-exit", + [0, 1166, 1437, 1596, 3421, 4255, 4257], + "ram", + [0, 1111, 14903, 200, 30248, 2966], + [1, 2343, 27141], + [0, 17263, 27142, 27143, 2523], + [ + 0, 23689, 7892, 10410, 4874, 20959, 28502, 1364, 28556, 2323, 31190, 2526, 2765, 31539, 31540, 2272, 3297, 4039, + 4089, 31541, 4130, 4474, 4487, 31194, 91, 31195, 31186 + ], + [0, 1973, 5472, 11132, 13841, 28522], + [1, 2343, 27145], + [0, 0, 27146, 27147, 2523], + [ + 0, 1173, 1178, 14318, 1264, 14237, 1272, 1177, 1881, 13936, 1895, 1935, 1938, 2126, 2675, 1192, 2990, 1894, + 4039, 4535 + ], + [ + 0, 31549, 31550, 31553, 31565, 9006, 3015, 31566, 15813, 10725, 30672, 5066, 15571, 89, 31567, 1098, 188, 12295, + 5131, 28125, 31568, 31569 + ], + [1, 2343, 27149], + [0, 27150, 27151, 27152, 4139], + [ + 0, 17013, 31573, 18695, 1525, 1544, 18671, 2107, 2036, 14940, 18708, 3173, 31576, 4039, 18667, 4449, 18670, + 4547, 18692 + ], + [ + 0, 442, 4856, 9417, 31586, 31593, 6494, 31595, 7746, 4874, 31607, 6520, 31613, 1009, 1011, 31615, 1429, 1431, + 1587, 1177, 1895, 1951, 1954, 1955, 2020, 2116, 2212, 12870, 2899, 3560, 1894, 6021, 4085, 4135, 4193, 4196, + 18698, 4474, 91 + ], + [0, 14932, 1388, 6147, 9381, 4967, 13441], + [1, 2343, 27154], + [0, 27155, 27156, 27157, 2537], + [0, 31573, 14940, 18714, 18675, 4039, 4085, 12937], + [0, 1429, 1431, 2899, 31627], + [0, 9381, 6147, 4967, 1388, 14932, 13441], + "fast refresh", + [1, 2343, 27160], + [0, 27161, 27169, 27157, 2537], + [0, 17013, 2036, 6474, 3173], + "trim-newlines", + [2, 1420, 21640], + [2, 1677, 21640], + "_comments", + [2, 6865, 27165], + [3, 9488, 13], + [2, 27167, 2104], + [0, 1429, 18766, 2026, 2272, 2899, 14942, 4008, 4085], + "-options", + [2, 3183, 27170], + [1, 2343, 27175], + "cat", + "kitten", + [0, 27176, 27177, 27178, 2537], + [0, 2674], + [0, 2292, 2272, 2899, 4170], + [0, 13428, 1388, 14336, 12197, 5472], + [1, 2343, 27180], + [0, 0, 27181, 27182, 2537], + [0, 1173, 1175, 31653, 1264, 1429, 2899], + [0, 1420, 15321, 1623, 965], + [1, 2343, 27186], + "from2", + "is-standalone-pwa", + [0, 0, 27187, 27188, 2537], + [0, 19325, 31265, 1414, 1537, 1894, 3985, 3998, 4039, 4389, 4505, 91, 1906], + [0, 1936, 18944, 18089, 6843, 11043, 1213, 31661], + [2, 3028, 5056], + "stat-mode", + "ware", + [1, 2343, 27197], + "drafts", + [2, 10722, 27193], + "dir-equal", + [2, 15340, 27195], + [0, 0, 27187, 27198, 2523], + [0, 1936, 31670, 18944, 18089, 6843, 11043, 1213, 31661], + [1, 2343, 27200], + [0, 0, 27187, 27201, 2537], + [0, 1936, 18944, 18089, 6843, 11043, 1213], + "7zip-bin", + "node-7z", + "er-helper", + [2, 18536, 27204], + [2, 3306, 27205], + [1, 2343, 27208], + [0, 0, 27209, 27210, 2537], + [0, 19325, 31265, 1414, 1537, 2577, 2584, 1894, 3971, 3985, 3998, 4039, 4389, 4505, 91, 4549, 1906], + [0, 1936, 18944, 26934, 6843, 11043, 31661, 31676, 1213], + [1, 2343, 27212], + [0, 27213, 22487, 27214, 2537], + [0, 31701], + [0, 1473, 7208, 6616, 1623], + [1, 2343, 27216], + [0, 0, 23215, 27217, 2523], + [0, 965, 1936, 14186, 34254, 11590, 1644, 1646], + [1, 2343, 27219], + [0, 27220, 16487, 27222, 2537], + [0, 2053, 31724, 20273], + "@surma/rollup-plugin-off-main-thread", + [0, 1739, 1745, 8623, 1179, 1783, 5354, 26096], + "asyncro", + [3, 1225, 32], + [2, 27224, 6567], + [3, 13998, 31], + [2, 7256, 591], + [2, 27226, 27227], + [1, 2343, 27236], + "throw-", + [2, 27230, 27227], + [2, 69, 27231], + "directory-", + [2, 27233, 1633], + [3, 16482, 15], + [0, 0, 27240, 27241, 2523], + "evelopit", + [2, 27235, 27237], + "merge-d", + [0, 2899, 1429, 2759], + [0, 1623, 6413, 3766, 31991, 5131, 1644, 3529], + "river-install", + [2, 27239, 27242], + [2, 3382, 27243], + [1, 2343, 27247], + [2, 14585, 6082], + [0, 0, 27248, 27249, 2487], + [0, 1596, 2759], + [0, 1871, 3656, 16906, 1623, 25232, 6422], + [1, 2343, 27253], + [2, 9280, 20627], + [2, 17991, 27251], + [0, 27254, 27268, 27269, 2537], + [0, 1634], + "factory-space", + [2, 17991, 27255], + [3, 17995, 17], + "unked", + [2, 27257, 27258], + [3, 17995, 16], + "ombine-extensions", + [2, 27260, 27261], + [2, 26973, 10368], + "resolve-all", + [2, 26973, 27264], + "ubtokenize", + [2, 27000, 27266], + [0, 1414, 668, 1177, 2899, 4042, 4228], + [0, 1623, 15215, 2632, 3178, 16918, 16919, 31748], + [1, 2343, 27271], + [0, 27272, 27273, 27274, 2537], + [0, 1147], + [0, 1177, 1895, 1955, 1894, 4384], + [0, 5675, 57, 7119, 200, 1523, 7058, 16159, 31759], + "fill-range", + "@ember-tooling/blueprint-model", + "bracket", + [2, 24559, 1227], + [1, 2343, 27283], + "expansion", + "extglobs", + "lookahead", + [0, 27284, 0, 27286, 4139], + [0, 1122, 1125, 31764, 1129, 1532, 2220, 2222, 2817, 18023], + "lookaround", + [0, 31775, 5995, 2195, 31776], + "lookbehind", + [1, 2343, 27290], + "negate", + [0, 27294, 0, 27295, 2537], + "negation", + [2, 7623, 22245], + "posix", + [0, 2817, 3502, 18023], + [0, 31775, 5995, 13531, 20999], + [1, 2343, 27297], + [0, 27300, 0, 27305, 2537], + [3, 7746, 12], + [2, 27298, 1747], + [0, 1532, 2817, 3181, 3502, 18023, 31802], + "mime-score", + "runmd", + [2, 4865, 27304], + "rex", + [0, 31775, 5995, 17977], + [1, 2343, 27307], + [0, 27308, 0, 27309, 2537], + [0, 31809, 2714, 2867, 3181], + [0, 31775, 5995, 31804, 31812], + [1, 2343, 27311], + [0, 27312, 0, 27313, 2523], + [0, 1122, 1125, 31764, 1129, 1532, 2220, 2222, 2817, 3502, 18023], + [0, 31775, 5995, 2195], + "Min Heap", + "min heap", + "maxheap", + "min-heap", + "heap", + "Binary Heap", + "binary-heap", + [2, 7247, 17709], + [2, 27318, 27321], + [2, 27315, 27321], + " binary tree", + [2, 15773, 27324], + "heapify", + [2, 13199, 2656], + "heap sort", + "@utoo/pack", + "heapify up", + [1, 2343, 27335], + "heapify down", + "Priority Queue", + "priority", + [0, 27342, 0, 27345, 2537], + " queue", + [2, 27334, 27336], + [3, 18020, 13], + "-queue", + [2, 27334, 27339], + "priority q", + [0, 1122, 1125, 31764, 1129, 2817, 3502, 18023], + "priorityQ", + [3, 27325, 15], + [0, 31775, 5995, 17978], + "extract min", + "min ", + [2, 27347, 27337], + " priority", + [2, 7287, 27349], + [1, 2343, 27361], + "ing property", + [2, 4327, 27352], + " resizing", + [2, 14000, 27354], + "priority-", + [2, 27356, 20332], + [2, 27357, 26754], + [2, 11512, 27349], + [2, 3768, 27349], + [0, 0, 0, 27362, 2537], + [0, 31775, 5995], + "decrease key", + [1, 2343, 27367], + "increase key", + "searching", + [0, 27368, 0, 27362, 2399], + [0, 3502], + [1, 2343, 27370], + [0, 0, 27371, 27372, 34352], + [0, 5087, 4874, 1596, 2070, 1192, 2822, 31851, 4468, 4487, 4490, 31194, 91], + [0, 36720, 7119, 57, 22856, 5131, 31568, 7310, 28125, 888, 8549, 1388, 18691], + [1, 2343, 27374], + [0, 27375, 27376, 27381, 2487], + [0, 3127, 3725, 31872, 31873, 31869, 8959, 6330], + [ + 0, 1192, 1170, 2675, 2968, 1177, 3188, 4039, 4042, 4333, 1637, 1457, 32826, 1894, 11401, 1610, 1193, 53, 1532, + 2990, 2997, 3400, 1387, 13834, 8648, 87, 1939, 31897, 31901, 4048, 68, 1938, 4077, 4069, 1895, 1955, 4055, + 31899, 1567, 4067 + ], + "@putout/minify", + "b64-images", + [2, 1625, 27378], + "readjson", + [0, 2295, 1739, 1745, 31903, 1179], + [1, 2343, 27383], + [0, 27384, 27389, 27396, 2399], + [0, 3445, 1437, 4747, 1544, 31910, 17964, 1836, 2151, 2182, 3084, 31915, 3000, 4151, 4562, 21847, 31911, 1549], + "try-catch", + "@arktype/attest", + "bench-node", + "try-to-catch", + [0, 1166, 1594, 2020, 2675, 1177, 4039, 4042, 2990, 31917, 4257, 19286, 31919], + "escover", + [3, 19709, 16], + "tout", + [2, 27391, 27392], + "madrun", + "supertape", + [0, 17964, 2295, 1739, 1745, 31903, 1179, 200], + [1, 2343, 27398], + [0, 27399, 0, 27400, 2523], + [0, 31939], + [0, 965, 31838, 2814, 5131, 35059], + "brace", + [1, 2343, 27405], + "-expansion", + [2, 27401, 27403], + [0, 27409, 27410, 27411, 2537], + [2, 25824, 27403], + [2, 4853, 27406], + "zstandard", + [0, 37135, 1209, 3847], + [ + 0, 48, 53, 87, 90, 1193, 1503, 1843, 1845, 1177, 1895, 1903, 31952, 1938, 1954, 1958, 1959, 1970, 1192, 1894, + 31953, 3744, 3775, 89, 3824, 3904 + ], + [0, 1843, 1192, 8745, 21009, 3717, 1448, 6270, 5472, 2275, 1973], + "jest-fixed-jsdom", + [1, 2343, 27414], + [0, 27415, 0, 27416, 2523], + [0, 1086, 31969, 1362, 31970, 4484, 4734], + [ + 0, 12666, 1149, 31972, 31973, 31974, 31975, 20672, 31976, 31977, 7682, 2090, 158, 3097, 6774, 5131, 31978, + 31979, 1644, 1862, 3972, 31980, 2056 + ], + [1, 2343, 27419], + [2, 27423, 13083], + [0, 0, 8134, 27420, 34352], + [0, 1867, 23615, 1936, 18944, 18089, 31998, 2574, 20215, 6435, 1283, 23584, 6692, 22982, 4741, 32000, 32002], + [3, 927, 11], + [1, 2343, 27429], + [3, 1915, 14], + [2, 27426, 15001], + "signed", + "@prettier/", + [2, 19569, 27530], + "certificate", + [0, 27430, 27431, 27432, 2523], + [0, 1448, 32006, 1869, 1291, 1180, 1287, 2151, 32007, 3127, 3183, 37708], + [0, 1173, 1208, 1240, 1280, 1503, 32009, 1177, 2899, 3421], + [0, 1776, 5592, 1746, 1745, 6789, 32011, 6746, 32013, 7221, 32015, 7011, 32016, 6615, 32018, 7194, 32019, 32027], + "fast-archy", + [1, 2343, 27435], + [0, 0, 9839, 27436, 2537], + [0, 1177, 6741, 6939, 1932, 9711, 5547, 3624, 2295, 1745], + [1, 2343, 27439], + "ufo", + [0, 0, 27446, 27452, 2537], + [3, 28920, 12], + "dom-selector", + "jest-stencil-runner", + "fast-color", + [2, 2023, 9463], + [2, 21195, 27444], + [0, 2212, 4257, 4389], + "mobservable", + "reactive", + "frp", + [3, 19780, 13], + "active", + [0, 1745, 3966, 32037, 27018, 32038, 30248, 202], + [1, 2343, 27460], + "-programming", + [2, 27451, 27454], + [2, 27450, 27455], + [3, 17943, 11], + [2, 6649, 27457], + "data flow", + [0, 15821, 27461, 27462, 2537], + [0, 4874, 1414, 1894, 3985, 3998, 4481, 4505, 91, 1906], + [0, 23266, 2587, 23267, 614, 6435, 1936, 2741, 11512], + [3, 517, 14], + [2, 3191, 1422], + [3, 31504, 15], + [1, 2343, 27469], + [2, 13163, 10101], + "expose-gc", + [0, 15821, 27461, 27473, 2487], + "-detector", + [3, 20575, 13], + "thingies", + [0, 23266, 2587, 23267, 614, 6435, 1936, 1623, 3585, 1644], + "browser-st", + "dout", + [2, 27474, 27475], + "yargs-", + "@types/depd", + "rser", + "unparser", + [2, 27477, 27480], + "@11ty/posthtml-urls", + "inclu", + "-language", + [2, 8785, 27484], + [2, 27483, 27485], + [2, 5340, 27486], + "@moch", + "a/docdash", + [2, 27488, 27489], + "fail-", + "on-e", + [2, 10372, 4408], + [2, 27492, 27493], + [2, 27491, 27494], + "s-utils", + [2, 13587, 27496], + "inline-links", + [2, 3986, 27498], + "rewiremock", + "unexpected", + [2, 668, 27511], + "-eventemitter", + [2, 27501, 27503], + [3, 27504, 11], + [2, 27505, 3053], + [2, 27505, 3065], + [3, 27507, 12], + [2, 27508, 2917], + "uslug", + [3, 1208, 16, 5], + "@11ty/recursive-copy", + "node-retrieve-globals", + [2, 9374, 27515], + "match-helper", + [1, 2343, 27522], + [2, 5329, 11807], + [2, 5340, 23767], + [2, 9309, 27520], + "node-loader", + "@zachleat/noop", + [0, 27523, 27524, 27527, 2537], + [0, 12396, 23288, 23289, 3746, 4233, 23257, 23258], + [0, 7729, 4874, 1414, 2854, 3493, 1894, 3985, 3998, 4505, 91, 1906], + "test-console", + "xmllint", + [0, 23266, 2587, 23267, 614, 6435, 1936, 3493, 6892, 1633], + [1, 2343, 27529], + [0, 15821, 23215, 27535, 2523], + "-exports", + [2, 151, 27533], + "lcov", + "moji", + [2, 9477, 7204], + [0, 23266, 2587, 23267, 614, 6435, 1936, 6941, 11512, 32101, 32122, 3661], + [1, 2343, 27538], + [2, 120, 28708], + [0, 27539, 27540, 27541, 4139], + [0, 24566], + [0, 1999, 3165, 1894, 4387, 4389], + [0, 6892, 1936, 1644, 1646], + "define-", + [2, 14678, 3205], + [2, 27542, 27543], + [1, 2343, 27548], + "-descriptors", + [2, 9395, 27546], + [0, 0, 27560, 27561, 2523], + "-val", + "ue-fixtures", + [2, 27549, 27550], + [2, 5600, 27551], + [3, 7810, 10], + "-each", + [2, 27553, 27554], + "s-have-names", + [2, 23238, 27556], + [3, 18432, 11], + [2, 27558, 7083], + [0, 4874, 1414, 23276, 2577, 2584, 3310, 1894, 3985, 3998, 4505, 91, 1906], + [0, 1936, 23670, 10381, 1213, 11512, 32143, 12616, 7102], + "@types/gopd", + [3, 6497, 11], + [2, 27563, 19065], + [3, 4637, 11], + [2, 27565, 20102], + [2, 27563, 27566], + [2, 27563, 2568], + [3, 18491, 11], + [2, 27569, 18985], + [2, 13201, 4552], + [3, 26581, 12], + [2, 27572, 19072], + [3, 27573, 13], + [2, 27574, 19077], + [2, 27572, 15058], + [3, 8860, 14], + [2, 27577, 3430], + [3, 8860, 13], + [2, 27579, 3022], + [1, 2343, 27582], + [0, 27583, 0, 27584, 2523], + [0, 1676], + [0, 27, 2671, 2934, 2026, 2078, 32897, 30135, 33117, 32150, 32153, 32154, 32897, 30131, 32155, 5995], + "@sap/hana-client", + [1, 2343, 27587], + [0, 0, 21181, 27588, 2537], + [0, 1623, 5260, 32164, 3561], + [1, 2343, 27590], + [0, 27591, 27592, 27594, 2537], + [0, 2711], + [0, 24118, 24114], + "hrottler", + [0, 1172, 89, 2711, 5130, 10772, 24120, 23361], + [1, 2343, 27596], + [0, 27591, 27597, 27594, 2487], + [0, 32144, 32191, 24118, 24114], + [1, 2343, 27599], + [0, 0, 0, 27600, 2537], + [0, 1172, 89, 2711, 5130, 10772, 24120, 1936, 24122, 36, 965, 1388, 4042, 32199, 32200, 6802], + "unix-dgram", + "webidl2", + "unittest", + [1, 2343, 27605], + [0, 0, 27606, 27607, 2537], + [0, 1700, 2323, 1637, 3561, 2494, 32214, 2482, 2549, 32215], + [0, 1623, 6398, 6400, 5130, 5122, 32219], + [2, 2364, 21928], + "-phantomjs", + [2, 2463, 27609], + [1, 2343, 27613], + "mockJSON", + [0, 27615, 27616, 27617, 2537], + "mockAjax", + [0, 3220, 4110], + [0, 1149, 2228, 2258, 2274, 2281, 2314, 1776, 1209, 705], + [0, 1367, 32226, 32227, 1745, 1776, 18011, 699], + [1, 2343, 27620], + "faste", + [0, 0, 27621, 27625, 2487], + [0, 23689, 4874, 28502, 2765, 2272, 4130, 4487, 31194, 91, 31195], + "st-validator", + [2, 27619, 27622], + [2, 5310, 2282], + [0, 1973, 5472, 11132, 13841, 28522, 2765], + "@icebob/node-memwatch", + [1, 2343, 27642], + "@types/bunyan", + "oredis", + [2, 8802, 27629], + "no", + "@types/pino", + "avsc", + [2, 1317, 1289], + "cbor-x", + "dd-trace", + "etcd3", + "event-l", + "oop-stats", + [2, 27638, 27639], + "fakerator", + [0, 27653, 27661, 27663, 2523], + "gc-stats", + "jaeger-client", + "kafka-node", + "-repl", + [2, 3219, 27646], + "msgpack5", + "nats", + "node-n", + "ats-streaming", + [2, 27650, 27651], + [0, 16738, 35957, 7824, 2798, 3717, 4468], + [2, 29351, 4255, 591], + "notepack.io", + "redlock", + "rhea-promise", + "thrift", + "v8-natives", + [2, 4712, 13083], + [ + 0, 32243, 10, 13, 16, 19, 21, 24, 26, 30, 32, 34, 53, 87, 192, 22559, 19181, 442, 16738, 8755, 554, 4864, 5087, + 4874, 5254, 1009, 1011, 27726, 1193, 1437, 16307, 1567, 1610, 10936, 1177, 1895, 1938, 1939, 1942, 1955, 2020, + 2151, 32245, 2070, 2203, 2675, 1192, 2780, 2832, 3534, 1894, 4039, 4094, 4135, 4484, 4494, 4507, 91, 4523, 4769 + ], + [3, 14584, 12], + [0, 1192, 91, 1098, 5472], + "messagebus", + [1, 2343, 27667], + "distributed", + [0, 27668, 27670, 27671, 2523], + [0, 11518, 1420, 1437, 1457, 1525, 1544, 16082, 3445, 3613, 3616, 4200, 4207, 33212, 4562, 4729], + "ppsm", + [ + 0, 53, 368, 7948, 370, 554, 811, 816, 32251, 842, 16145, 966, 968, 972, 974, 11485, 5087, 19799, 4874, 4880, + 4883, 24370, 10844, 9241, 1009, 1011, 1030, 32252, 10783, 1165, 1610, 1177, 1895, 1903, 1938, 1953, 1958, 1959, + 1192, 2802, 695, 3363, 3400, 3561, 37015, 32253, 1894, 89, 3824, 3847, 4039, 4042, 8849, 4057, 15277, 2278, + 4315, 4383, 91, 1983, 32255 + ], + [0, 5472, 1192, 4967, 17758, 1676, 32264], + [1, 2343, 27673], + [0, 27674, 27675, 27676, 4139], + [0, 2757, 32269], + [0, 32272, 32273, 2398, 2036, 2899, 5354], + [ + 0, 21738, 13230, 1676, 1739, 1745, 16284, 8623, 1179, 2036, 1383, 6706, 3430, 32275, 32277, 1209, 6807, 1783, + 1283, 5354, 26096 + ], + [1, 2343, 27682], + "zone", + "timezone", + "olson", + "iana", + [0, 27683, 27684, 27685, 2399], + [0, 32281], + [0, 3088, 3310, 1187], + [0, 3088, 32289, 4017, 36, 5995], + [2, 5335, 553], + [2, 1351, 27686], + [2, 21289, 27687], + "-provider", + [2, 2138, 27689], + [2, 23107, 27690], + [2, 21289, 27691], + [2, 21289, 553], + "worker-", + [2, 27694, 10057], + [2, 21289, 27695], + [3, 27687, 16], + "extdocument", + [2, 27697, 27698], + [2, 4619, 27699], + [3, 27700, 23], + [2, 27701, 103], + "vscode-uri", + [1, 2343, 27721], + "cohaszing", + [2, 15276, 27705], + [3, 25072, 11], + "monaco", + "@remcohaszing/eslint", + "remcohaszing", + [2, 3996, 27710], + "yaml-l", + [2, 15675, 2995], + [2, 27712, 27713], + [2, 27716, 27717], + [3, 162, 22], + "tegrations-common", + [2, 8214, 27719], + "-pattern", + [2, 10853, 11597], + [0, 27727, 27728, 27729, 4139], + "monads", + "either", + "maybe", + "result", + [2, 1101, 1177], + [0, 26987], + [0, 4874, 1414, 3167, 1894, 3985, 3998, 4505, 91, 1906], + [0, 3167, 32300, 32301, 10381, 7131, 32303, 1936, 3987, 1783, 4549], + "-connect", + [2, 1304, 27730], + "paginator", + [2, 10784, 27732], + [1, 2343, 27736], + "free-swig", + [0, 0, 0, 27741, 2537], + "gridfs-stream", + "mongodb-", + [2, 3764, 57], + [2, 27738, 27739], + [0, 3167, 614, 6435, 1936, 10368], + [2, 17037, 15988], + [2, 22785, 4408], + "@types/rollup", + "istration", + [2, 20897, 27745], + "GUI", + [1, 2343, 27753], + "manage-mongo", + "phpmyadmin", + "UI", + "web-based", + [0, 0, 0, 27754, 2399], + [0, 3167, 614, 6435, 1936, 10381, 1213], + [1, 2343, 27756], + [0, 0, 27763, 27766, 2537], + "@mon", + "godb-js/saslprep", + [2, 27757, 27758], + "-string-url", + [2, 21404, 27760], + [2, 27738, 27761], + [0, 16268, 2228, 2272, 3220, 4720, 4535, 17565, 2296, 32324, 2283, 2253, 2273, 2281], + "socks", + "snappy", + [0, 4576, 5131, 7310, 31568, 13735, 22856, 1388, 15525, 32334, 32336], + "mocha-sinon", + "gcp-metadata", + "legacy", + [1, 2343, 27783], + "erberos", + [2, 13053, 27771], + [3, 7814, 10], + "lprep", + [2, 27773, 27774], + "v8-heapsnapshot", + [3, 27759, 12], + "zstd", + [2, 27777, 27778], + [3, 15507, 14], + [2, 27780, 1002], + [2, 9415, 1435], + [0, 27794, 27808, 27809, 2537], + "mongodb-c", + [2, 20203, 7141], + [2, 27784, 27785], + [3, 1982, 16], + "@jimp/js-bmp", + "used-imports", + [2, 27787, 27789], + [3, 13547, 28], + [2, 27791, 591], + "@jimp/js-gif", + [0, 16868], + "@jimp/js-jpeg", + "@jimp/js-png", + "@jimp/js-tiff", + "kareem", + "mpath", + "mquery", + "sift", + [2, 27804, 27811], + "acquit", + [3, 24788, 12], + "acquit-ignore", + "acquit-", + [2, 27806, 3209], + [0, 1192, 1177, 4468, 1894, 91, 5087, 4874, 16874, 1895, 1011, 1009], + [0, 32345, 32346, 1623], + [2, 3044, 5056], + "-blit", + "odm", + [2, 27815, 27816], + "datastore", + [3, 27802, 15], + "ur", + [2, 27818, 27819], + [3, 27802, 13], + "circle", + [2, 27823, 27824], + "-callbacks", + [2, 1292, 27821], + [3, 27817, 14], + "olor", + [2, 27828, 27831], + "node-monitor", + [2, 21004, 14837], + [3, 27820, 15], + "probe", + "JMX", + "ntain", + [2, 27828, 10177], + [2, 27823, 9970], + [2, 27818, 27836], + [2, 9280, 3233], + "displace", + "dashboard", + "monitoring", + "control ", + [2, 27839, 9872], + [2, 27842, 27843], + [3, 27834, 15], + "ther", + [2, 27818, 27860], + [3, 6503, 9], + "ngodb", + [2, 27845, 27846], + "-middleware-cast-ids", + [2, 3236, 27848], + [3, 27849, 16], + "fields", + [2, 27850, 27851], + "-callback", + [2, 2034, 27853], + [2, 27850, 27854], + [2, 27850, 14690], + [2, 27850, 3766], + [2, 9251, 21404], + [2, 27850, 27858], + "fisheye", + "gitbook-cli", + "gitbook-", + "plugin-a", + "nker-enable", + [2, 27863, 27864], + [2, 27862, 27865], + [3, 27866, 15], + [2, 5317, 4147], + [2, 27867, 27868], + [2, 27876, 27877], + "edit-link", + [2, 27867, 27871], + [2, 27867, 2195], + [2, 27867, 588], + [2, 27850, 1676], + [3, 27844, 14], + "lip", + [2, 27818, 3428], + [2, 27818, 10098], + [2, 27818, 24171], + [2, 27818, 27882], + "quantize", + [2, 27818, 24800], + [2, 27885, 27886], + [3, 27883, 14], + "otate", + [2, 27818, 17487], + "@jimp/utils", + [1, 2343, 27903], + [2, 27891, 27892], + "@jimp/co", + "nfig-eslint", + [2, 24787, 27894], + [3, 549, 17, 16], + [2, 27896, 1984], + [3, 27890, 13], + "commist", + "node-self", + "help-me", + [2, 1983, 27901], + [3, 19232, 22, 6], + "mqtt-packet", + [0, 27906, 23215, 27911, 2487], + "-allocator", + [2, 6988, 27904], + [0, 9315, 34578, 31644, 26972, 32360, 32364, 32365], + [2, 19332, 6706], + "wsl-utils", + "monocart-coverage-reports", + "worker-timers", + [0, 1644, 1936, 6843, 11043, 18944, 18089], + "aedes-cli", + [3, 5616, 9], + [2, 27913, 202], + [2, 11932, 27914], + "leak", + "ed-handles", + [2, 27916, 27917], + "mqtt-", + [2, 27919, 21404], + "tinyglobby", + "node-style-text", + "level-store", + [2, 27919, 27923], + [1, 2343, 27929], + "/subscribe", + [2, 20001, 27926], + [2, 19177, 1783], + [0, 0, 0, 27932, 2537], + [2, 27931, 29682], + [3, 218, 19], + [0, 3561, 22147, 676, 134, 89, 1623, 32372], + [2, 26343, 27934], + "ibus-quod", + [1, 2343, 27937], + "@tediousjs/connection-string", + [0, 27938, 21181, 27941, 2523], + [0, 16837], + "msnodesql", + "tds", + [0, 1623, 5260, 3561], + "node-tds", + "qlserver", + [2, 3343, 27943], + "msnodesqlv8", + "node-m", + [1, 2343, 27950], + "node-mssql", + "list-dependents-cli", + [0, 0, 27951, 27952, 34352], + [ + 0, 53, 87, 32389, 10706, 32390, 1177, 2765, 2297, 2881, 2886, 2895, 2898, 2910, 2923, 29946, 3750, 3758, 4042, + 4045, 6390, 4071, 4073, 25238, 824 + ], + [0, 22562, 3758, 3541, 13428, 32395, 32396, 5926, 5472, 11132, 3750, 28522, 824, 30271], + "@bundled-es-modules/cookie", + [3, 27953, 20], + "until-async", + [1, 2343, 27965], + [3, 546, 12], + "nfirm", + [2, 27957, 27958], + "@types/sta", + "tuses", + [2, 27960, 27961], + "headers-", + [2, 27963, 6422], + [0, 27970, 27971, 27972, 34352], + [2, 8140, 14643], + "json-bigint", + "page", + "page-with", + [0, 1282, 2555, 3744], + [0, 1389, 1391, 1437, 1700, 2323, 2351, 2404, 2494, 32402, 2530, 2541, 3159, 32405, 89, 3824, 4603], + [0, 89, 5128, 4384, 32410, 4453, 6380, 2555, 5131], + [1, 2343, 27974], + [0, 27975, 27976, 27977, 4139], + [ + 0, 32421, 688, 28208, 691, 9712, 9296, 1091, 1092, 1437, 1458, 1543, 1676, 2226, 2687, 2822, 12284, 3173, 3422, + 3423, 3467, 3742, 4135, 4183, 4213, 6479, 176, 36864, 28731, 4548, 13291 + ], + [ + 0, 11976, 192, 5467, 9737, 32432, 29355, 27654, 811, 8850, 816, 6373, 5245, 7637, 7746, 7812, 5254, 28736, + 28557, 7677, 36874, 2675, 2931, 3297, 1890, 12285, 1894, 4042, 15277, 4494, 4507, 91, 1984 + ], + [0, 5592, 1118, 2210, 1745, 27662, 29370, 3422, 3452, 29369, 29365, 29368, 29367, 28360, 9591, 8124], + "append-field", + [1, 2343, 27980], + [0, 0, 27985, 27987, 2443], + "fs-temp", + "testd", + "ata-w3c-json-form", + [2, 27982, 27983], + [ + 0, 5535, 972, 5087, 4880, 4883, 34722, 1009, 1011, 1597, 1701, 1177, 1895, 1955, 1959, 1961, 2193, 32447, 1192, + 32448, 3165, 30935, 32449, 1894, 89, 3824, 34725, 4201, 4468, 91, 32450 + ], + "formdata", + [0, 89, 31611, 5128, 20542, 4439, 32453, 1473, 6400, 13161, 30858, 3807, 7320, 31152, 6653, 32454], + [1, 2343, 27989], + [0, 27990, 27991, 27993, 2537], + [0, 11804], + [0, 87, 90, 4880, 1843, 1845, 1192, 3775, 3904, 4042, 4045, 4055, 4067], + "array-union", + [0, 4576, 5131, 7310, 31568, 13735, 22856, 1388, 32464, 32465, 15525, 11415, 7201], + [3, 20454, 11], + "oxy-addr", + [1, 2343, 27997], + [0, 0, 27998, 28000, 2537], + [ + 0, 192, 4874, 4880, 4883, 4887, 1009, 23648, 1177, 1895, 21564, 1938, 1953, 1955, 1958, 1959, 2675, 1192, 2990, + 3165, 1894, 3720, 89, 3824, 3885, 3889 + ], + "pend", + [0, 89, 7433, 38, 3884, 3885, 32473, 3286], + [3, 32265, 24], + "@jsumners/line-reporter", + [1, 2343, 28005], + "vue-drag", + [0, 0, 28006, 28011, 2537], + [ + 0, 3421, 2832, 2297, 2899, 89, 3875, 4193, 1145, 1177, 1209, 3698, 4072, 9381, 1503, 1593, 3729, 2924, 1317, + 3824, 32487, 91, 53, 4874, 2900, 3876, 4880, 1195, 8821, 2925, 107, 2069, 4883, 87, 4884, 1959, 3904, 32488, + 966, 2904, 2881, 2912, 2895, 38299, 1011, 11470 + ], + "test report", + "html ", + "html report", + " to ", + [0, 2062, 4162, 89, 3797, 32491, 1693], + "json to html", + [1, 2343, 28014], + [0, 0, 0, 28015, 2537], + [0, 3857, 5131, 12295, 12296, 6574, 2090, 11328, 30045, 32497, 2636, 2295], + [1, 2343, 28017], + [0, 0, 28018, 28019, 2537], + [0, 97, 4880, 5091, 89, 3857, 91], + [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 15571, 35060, 32504, 158, 32505], + [1, 2343, 28021], + [0, 26338, 28028, 28029, 2523], + "tory-reporter", + [2, 2916, 28022], + "mezr", + "web-a", + "nimations-js", + [2, 28025, 28026], + [0, 1178, 1177, 1879, 1895, 1938, 1947, 1955, 1959, 1894, 32510], + [0, 3857, 5128, 31912, 89, 5131, 12295, 181, 3730, 32516, 27819, 9906, 10036, 32527, 32529, 1478, 7521], + "bin-packing", + [1, 2343, 28032], + [0, 28037, 28041, 28053, 2537], + [2, 20876, 28090], + "autolink-", + [2, 28001, 26766], + "sqlstring", + [0, 1654, 32535, 1655, 1660, 3744], + [2, 27679, 2085], + "urun", + "utest", + [ + 0, 32538, 10821, 14689, 10828, 32540, 1178, 1193, 38304, 1668, 1177, 1903, 1938, 1954, 1958, 1959, 32541, 1970, + 2675, 1192, 2990, 1894, 3720, 89, 3857, 32510, 3904 + ], + [2, 28050, 28065], + [2, 28887, 28044], + "v2", + "aws-s", + "sl-profiles", + [2, 28045, 28046], + "generate-", + [2, 28048, 3046], + [3, 29934, 12], + "placeholders", + [2, 5773, 28051], + [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 13814, 15480, 9816, 1653], + [1, 2343, 28055], + [0, 28060, 28061, 28062, 2487], + "assert-diff", + "sync-await", + [2, 15907, 28057], + "poku", + [0, 2018], + [0, 5079, 1177, 21166], + [0, 3857, 5128, 31912, 89, 5133, 5131, 12295, 12296, 181, 24633, 32543, 32552], + [1, 2343, 28064], + [0, 28066, 28068, 28070, 4139], + "vitest-pool-workers", + [0, 21174, 4649], + "thenify", + [ + 0, 32558, 48, 53, 5241, 85, 87, 14128, 90, 365, 370, 6372, 811, 816, 6373, 972, 20562, 4880, 1178, 1193, 1610, + 1177, 1895, 1935, 1939, 1958, 1959, 1961, 2126, 29945, 2193, 32559, 1192, 30935, 1894, 3720, 89, 3824, 32561, + 3904, 4039, 4042, 4045, 4073, 91 + ], + [2, 31468, 31471], + [0, 89, 32225, 30245, 4627, 5398, 8190, 8191], + [1, 2343, 28077], + "bats", + [2, 28075, 28493, 28553], + "switcher", + "@", + "@prisma/dmmf", + [0, 28079, 28081, 28082, 4139], + "gable-next", + [0, 32571, 31528, 1461], + [3, 29754, 14], + [ + 0, 30533, 5535, 966, 968, 972, 32573, 4859, 4874, 4880, 4883, 1030, 16480, 1651, 2832, 23535, 89, 3824, 4201, + 1531, 4484, 91, 1984 + ], + [0, 89, 6398, 5066, 5131, 9320], + [1, 2343, 28086], + [2, 28085, 3259], + [3, 28092, 16], + [0, 28087, 28089, 28096, 2399], + [0, 4484, 32597], + "couchdb", + [0, 32632, 5535, 4201, 89, 3824], + "spanner", + [2, 30534, 4675], + "@testcontainers/postgresql", + "fastest-", + [2, 28093, 18729], + "rtl-css-js", + [0, 89, 590, 1623], + [1, 2343, 28099], + "iconista", + [0, 0, 28102, 28104, 2537], + "pnpm10", + "libreact", + [0, 1148, 2899, 3697], + "jsxstyle", + [0, 1623, 1473, 32453, 2585], + [1, 2343, 28106], + [0, 28107, 0, 7573, 2523], + [0, 32733, 1004, 32730, 32737, 32739, 32744, 32722, 32736, 32741, 32720, 32678, 32725, 32727], + [1, 2343, 28109], + [0, 0, 28110, 27147, 2523], + [ + 0, 53, 87, 92, 192, 5467, 5583, 16952, 6373, 10615, 5087, 4874, 1009, 1011, 1031, 17584, 1178, 1193, 19839, + 1540, 1610, 1177, 1903, 1938, 1954, 1958, 1988, 2193, 2675, 2742, 1192, 2780, 2990, 4039, 4042, 4076, 91, 4630 + ], + [2, 30495, 28112], + "lysia", + [1, 2343, 28114], + [0, 0, 28124, 24467, 4139], + "gitcloud", + "hasbin", + [2, 34316, 3863, 34320], + "page-icon", + "premove", + "@types/hasbin", + "@types/pa", + "ge-icon", + [2, 28121, 28122], + [0, 8144, 1465, 1584, 1628, 2092, 6327, 3177, 1894, 4028, 2278, 4111, 4469, 91, 4027, 2924, 4677, 4689], + "desktop", + "@vue-macros/common", + [1, 2343, 28128], + [0, 2513, 28129, 28131, 2537], + [0, 5535, 4201, 968, 972, 32632, 2780], + "proxy-lib", + [0, 89, 1564, 32775, 32776, 32777], + "font-finder", + "pbxproj-dom", + "montag", + "simple-plist", + "ios-device-lib", + [2, 21464, 1155], + "proper", + "-light", + [1, 2343, 28146], + "-lockfile", + [2, 28138, 28141], + "ios-", + "sim-portable", + [2, 28143, 28144], + [0, 28148, 28149, 28156, 2487], + [2, 28457, 28462], + [0, 32782, 4484], + [0, 5535, 4201, 32632, 32786, 1845, 89, 3824], + "-merge-patch", + [2, 2072, 28150], + [3, 26989, 11], + "ackage", + [2, 28152, 28153], + "@nativescript/doctor", + [0, 32788, 89, 32789], + "-dev-xcode", + [2, 3271, 28157], + "provi", + [1, 2343, 28168], + "sion-finder", + [2, 28159, 28161], + [2, 5131, 28162], + [2, 28143, 28163], + "@rigor789/trapezedev-project", + "@rigor789/", + [2, 28166, 14562], + [0, 28169, 28170, 28171, 2523], + [0, 1593, 97, 32796, 32795], + [ + 0, 695, 3709, 2924, 1628, 91, 53, 2969, 4677, 1195, 4307, 32808, 4689, 87, 4359, 4681, 92, 83, 1198, 5756, 61, + 78, 76 + ], + [0, 7201, 1676, 5131], + [2, 32904, 364], + [1, 2343, 28174], + [0, 0, 28181, 28185, 2399], + "@types/pl", + "ist", + "@types/plist", + "@types/retry", + [3, 5364, 9], + [2, 28179, 3924], + [0, 4874, 9743, 4579, 1983], + "@types/pacote", + "btab", + [2, 8153, 28183], + [0, 1983, 5130, 6731], + [1, 2343, 28188], + "@types/tunnel", + [0, 0, 28201, 28212, 2523], + "@types/xml2js", + "@types/ar", + "chiver", + [2, 28190, 28191], + "@types/qr", + "-image", + [2, 28193, 28194], + [3, 7810, 11], + [2, 28196, 2138], + [3, 13418, 17], + [3, 5090, 11], + [2, 32904, 4412], + [0, 1175, 1195, 1267, 1610, 1628, 2092, 3342, 8119, 4111, 32821, 4307, 188, 4634, 4639, 4640, 4645, 2924, 4681], + "er-lockfile", + [2, 28199, 28202], + "@types/np", + "mcli__arborist", + [2, 28204, 28205], + [3, 9315, 10], + [2, 9710, 15774], + "al-analytics", + [2, 9788, 28209], + [2, 28207, 28210], + [0, 9006, 29633, 32827, 32828, 32829, 32830, 32831, 4967, 32832], + [1, 2343, 28216], + [2, 31819, 31823], + [3, 27933, 13], + [0, 28217, 0, 27026, 4139], + [0, 1415, 1842, 31290, 31331, 4562, 31386, 6330], + [1, 2343, 28226], + "afinn-165", + "-fin", + "ancialmarketnews", + [2, 28220, 28221], + [2, 28219, 28222], + "apparatus", + "memjs", + [0, 0, 28227, 28250, 2523], + [ + 0, 48, 53, 61, 78, 87, 92, 5601, 32840, 5087, 4874, 15600, 1009, 1011, 1175, 1193, 1198, 1177, 1881, 1895, 1938, + 1955, 1192, 11948, 1894, 4131, 91 + ], + "stopwords-iso", + "@libsql/client", + "wordnet-db", + [2, 31005, 26449, 28684], + "browserfs", + [2, 2441, 20008], + "pegjs", + "uubench", + [2, 32904, 2942], + " language processing", + [2, 3273, 28237], + "arti", + "fical intelligence", + [2, 28239, 28240], + "Porter stemmer", + "Lancaster stemmer", + "bigram", + "trigram", + "quadgram", + "ngram", + "stemmer", + "bayes", + [0, 1192, 2022, 6703, 1149, 7003, 1862, 11857, 5472, 2275], + "classifier", + [1, 2343, 28254], + "phonetic", + [0, 28255, 28257, 28259, 2523], + [0, 28502, 4130], + "metaphone", + [0, 23689, 28556, 2323, 31190, 2765, 3560, 31541, 91], + "inflector", + [0, 5472, 11132, 13841, 28522, 13426], + "Wordnet", + "tf-idf", + "logi", + " regression", + [2, 17132, 28263], + [2, 28262, 28264], + [2, 4420, 28256], + "jaro-winkler distance", + " distance", + [2, 26006, 28268], + "string ", + [2, 28270, 26017], + "-of-speech tagger", + [2, 3251, 28272], + "Eric Brill", + "Brill tagger", + " analysis", + [2, 4137, 28276], + "maxim", + "um entropy modelling", + [2, 28278, 28279], + [1, 2343, 28284], + "@mrleebo/prisma-ast", + [2, 31733, 21302], + [0, 28292, 28293, 28294, 2537], + "secure-keys", + [2, 28288, 6008], + "nconf-yaml", + "@prisma/c", + "key value store", + [2, 18124, 13729], + "plugabble", + [0, 1086, 1437, 1700, 2070, 2714, 3183, 3760, 705, 4039, 4135, 4734], + [ + 0, 13194, 7740, 28197, 4865, 29105, 23689, 9129, 7892, 4874, 11304, 16936, 20959, 28502, 5254, 28189, 28556, + 2323, 31190, 2765, 4089, 4130, 91 + ], + [0, 1098, 1973, 5472, 3750, 11132, 13841, 28522, 4130], + [1, 2343, 28296], + [0, 9756, 9839, 28297, 2537], + [ + 0, 1871, 6843, 3656, 4289, 7062, 6922, 6981, 6701, 6581, 6700, 1111, 1867, 5281, 200, 6876, 7009, 7201, 6575, + 6611, 6795, 6960, 7135 + ], + [1, 2343, 28299], + [0, 7558, 28300, 28301, 2523], + [0, 4874, 668, 32894, 2929, 32895, 91, 4579], + [0, 32901, 23542, 5130, 23543, 6812, 27, 5592], + [1, 2343, 28305], + "near social", + "bridge", + [0, 28306, 0, 28307, 4139], + [0, 2856, 32889, 2822, 5307], + [0, 29699, 32891, 1541, 1745, 29703, 29753], + [1, 2343, 28311], + [3, 18018, 14], + [2, 28309, 1633], + [0, 0, 28313, 28315, 2487], + "exec-time", + [0, 1429, 4856, 4874, 32903], + "@lit/context", + [0, 32910, 37123, 32911, 32912, 32913, 13428, 5472, 6533], + [1, 2343, 28317], + [0, 28318, 0, 26863, 2399], + [0, 32918, 32919, 1699, 3547], + [1, 2343, 28320], + [0, 6263, 0, 28321, 2523], + [0, 89, 5128, 9267, 553], + "@codspeed/", + "payload", + "@fig/complete-commander", + "@golevelup/nestjs-discovery", + "xhr2-cookies", + [2, 30999, 30499], + [1, 2343, 28330], + [2, 28338, 28349, 28603], + [0, 26964, 0, 26997, 2537], + "@postman/tough-cookie", + [2, 15679, 19490], + "chardet", + [1, 2343, 28337], + "liquid-json", + "postma", + [0, 26964, 0, 27001, 2487], + "@interna", + "n-collection", + [2, 28336, 28339], + "-transformer", + [2, 28340, 28341], + "postman-", + [2, 28343, 705], + "postman-r", + [2, 28345, 96], + "d-error", + [2, 14628, 28347], + "tionaliz", + "@postman/", + [1, 2343, 28359], + "shipit", + [2, 28350, 28352], + [2, 29833, 17978], + "file_lint", + [2, 17878, 28355], + "parse-git", + [2, 28357, 2687], + [0, 28364, 28381, 28409, 2537], + "postman", + [2, 178, 28363], + "rest-client", + "rack-changes", + [0, 32953, 25996], + "@profoundlogic/hogan", + [3, 2665, 10], + "@grpc/grpc-js", + "@grpc/", + "print-sizes", + "proto-loader", + [2, 28368, 28370], + "@newrelic/security-agent", + "@tyriar/fibonacci-heap", + "in-the-middle", + [2, 2701, 28374], + "module-de", + "s-from-path", + [2, 4378, 28377], + [2, 28376, 28378], + [2, 4013, 28374], + [0, 13662, 1389, 35268, 4389], + "@aws-sdk/s", + "3-request-presigner", + [2, 28382, 28383], + "@koa/router", + "@newrelic/", + [2, 28386, 7625], + "-oss-cli", + [2, 3284, 28388], + [2, 28386, 28389], + "test-util", + "ities", + [2, 28391, 28392], + [2, 28386, 28393], + "@slack/bolt", + "@smithy/eventstream-codec", + "@smithy/", + "util-utf8", + [2, 28397, 28398], + "borp", + [2, 16306, 20353], + [3, 4962, 10], + "iler-runtime", + "git-r", + "aw-commits", + [2, 28404, 28405], + "CKEditor", + "self-cert", + [0, 7518, 5398, 17819, 18266, 32958, 12075, 32960, 4967, 1389], + [1, 2343, 28412], + "debugging", + [0, 28414, 28424, 28430, 2537], + "profiling", + [ + 0, 32980, 32981, 32983, 32984, 32986, 1398, 1437, 1443, 1759, 1763, 2018, 2071, 37853, 2182, 2212, 2687, 2720, + 17450, 2856, 32987, 32988, 9478, 3729, 4135, 4164, 4400, 91, 32990, 32993, 32989 + ], + "unlimited-timeout", + "WYSIWYG", + "WYSIWYW", + "@panva/hkdf", + "id-client", + [2, 3445, 28419], + "-to-string", + [2, 694, 28421], + [2, 3698, 28422], + [0, 188, 32996, 32997, 33004, 33007], + "@types/oauth", + [2, 4874, 3360], + "@next", + "is-in-ssh", + "powershell-utils", + [0, 32940, 33010, 5130], + [1, 2343, 28437], + [3, 13983, 14], + [2, 28432, 89], + "-pragmatic", + [2, 13062, 28434], + "@edge-runtime/jest-environment", + [0, 28447, 28448, 28449, 34352], + "oauth2", + "nextauth", + "seneca-transport", + [2, 36883, 28443], + "rich-text", + "astify", + "async ", + [2, 28444, 1852], + [2, 28444, 5746], + [0, 97, 33015], + [ + 0, 1192, 2278, 2675, 89, 1843, 1177, 2924, 1894, 1610, 3824, 48, 1628, 3988, 91, 53, 2990, 3400, 4111, 4677, + 4880, 1195, 4307, 33020, 33021, 9310, 28809, 10837, 87, 11011, 90, 1959, 827, 33023, 1895, 1947, 1955, 2780, 92, + 10821, 29872, 10840, 1011, 10825, 83, 1009, 32341, 28970 + ], + [0, 89, 4627, 26612, 35126, 33026, 5131, 29832, 91, 33027, 33033], + "grammy", + [1, 2343, 28463], + "qs-esm", + "TestBed", + "how-to", + "@scripts/build", + [2, 28573, 553], + [3, 14691, 18], + [2, 32700, 28478], + [2, 12392, 1098], + "dataloader", + "bson-objectid", + "nboarding", + [0, 28481, 28492, 2514, 2537], + "render-jsx", + "@rolldown/pluginutils", + [2, 28472, 1973], + "localhost", + "tunneling", + "webhook", + [2, 28471, 28596], + [3, 37983, 14], + [3, 34476, 19], + [2, 16639, 15112, 28475], + "onesy", + "hecker", + [2, 16639, 28477], + "vitest-runner", + "grab", + [2, 28489, 28490], + "deep-defaults", + [0, 1437, 1483, 1525, 3127, 14774, 4135, 33043], + [2, 10740, 28487], + "enqueue", + [2, 14185, 4225], + "minstache", + "sliced", + "table-printer", + [2, 3192, 5701], + [3, 30527, 35], + "collisions", + "@rstest/core", + [0, 8147, 33046, 4874, 5254, 33047], + [2, 28508, 28526], + "@nightwatch/chai", + [3, 28494, 12], + [3, 2791, 13], + [2, 28496, 2324], + [2, 28495, 28497], + [2, 3294, 11496], + [2, 28495, 28499], + "lenium-webdriver", + [2, 5252, 28501], + [2, 1432, 3294], + [2, 11097, 20500], + "didyoumean", + [3, 28499, 11], + "@amaui/ui-react", + [3, 5069, 14], + "axe-verbose", + [2, 28506, 28509], + [3, 17011, 11], + [2, 28511, 57], + [3, 31827, 17, 5], + [2, 4925, 4381], + [3, 28514, 12], + [2, 11937, 16609], + [2, 28515, 28516], + "@payloadcms/translations", + "wait-on", + [1, 2343, 28527], + [2, 3294, 676], + "selenium", + "automat", + "ed-testing", + [2, 28523, 28524], + "acos", + [0, 28528, 28529, 2514, 2537], + [ + 0, 35198, 4763, 1497, 1687, 33057, 4361, 1983, 1082, 1371, 1676, 9348, 12449, 977, 1636, 11480, 3958, 4135, + 11501, 1458, 11478, 668, 33058, 28564, 2822, 6042, 3479, 3742, 29535, 33059, 26379, 4955, 33149, 3530, 25648, + 4542, 28623, 33061, 11869, 27921, 5732, 33062, 2628, 3090, 4748, 2007, 33063, 19639, 7610, 37014, 33064, 4555, + 33065, 33068, 29533, 33069, 10895, 5210, 9485, 33070, 33071, 3749, 33074, 33075 + ], + [ + 0, 23813, 2278, 4042, 4548, 1984, 1448, 4549, 33080, 30138, 33082, 91, 12396, 2024, 3975, 5245, 33390, 30559, + 5254, 33083, 34673, 7637, 7812, 12127, 3327, 8648, 20374, 11868, 23312, 33084, 7744, 21626, 3963, 33087, 33088 + ], + [1, 2343, 28536], + [2, 28532, 28547], + [3, 11555, 18], + "text-", + [2, 28533, 9254], + [2, 11122, 28534], + [0, 28538, 0, 2514, 2523], + [3, 11138, 16], + [0, 1506, 33093, 3460, 4535], + "mochify", + [3, 4887, 19], + "-universal", + [2, 3752, 28541], + [2, 3752, 1289], + "@backstage/backend-common", + [1, 2343, 28546], + [0, 28548, 28549, 28551, 2399], + "owellformed", + [0, 1512, 2151, 2720], + [0, 1177, 1939, 1192], + "propagate", + [0, 8310, 1179, 8635, 200, 28582], + [1, 2343, 28555], + [3, 31893, 18, 13], + [2, 12302, 28732], + [0, 0, 28560, 28561, 2399], + "clang-format", + [2, 23260, 28729], + "n-api", + "napi", + [ + 0, 811, 816, 1437, 1836, 1177, 1895, 1938, 33110, 14282, 2674, 2675, 2990, 2899, 6041, 1894, 4039, 4042, 4055, + 33111, 4232, 4390, 11482 + ], + [0, 4989, 1283, 3358], + [1, 2343, 28563], + [0, 0, 28571, 2514, 4139], + "fontace", + [2, 14743, 4504], + "ffee", + [2, 2251, 28566], + "grunt-i", + [2, 2426, 2499], + [2, 28568, 28569], + [0, 1009, 1011, 1177, 1883, 1895, 1915, 1938, 1947, 1955, 1959, 1961, 2675, 2990, 1894, 89, 91], + "baseline-browser-mapping", + [3, 4090, 11], + [2, 28606, 8734], + "host-validation-middleware", + [2, 16826, 5260], + [2, 14614, 28576], + "used-de", + "ps-analyzer", + [2, 28578, 28579], + "@4c/rollout", + "skeleton", + "formate", + [1, 2343, 28587], + [2, 5559, 27], + [2, 28689, 89], + [0, 28597, 28600, 28601, 2537], + "dynamic-", + [2, 28588, 1681], + "filewatcher", + [2, 28914, 594], + "xunit", + "tap-xunit", + "nextjs-api-reference", + [2, 30999, 28884], + "l", + [0, 33139], + [2, 31222, 31227, 31234], + "subdir", + [0, 6503, 1699, 2899], + [0, 5122, 1973, 8791, 33143, 2899, 5130], + [1, 2343, 28609], + "ed/date", + "char-regex", + "emojilib", + "@scripts/", + [2, 28616, 6988], + "skin-tone", + [0, 0, 28621, 28622, 2537], + "s-per-line", + [2, 16233, 28610], + "cspell-config-lib", + "emojis", + "smiley", + "smileys", + [3, 28329, 19], + "smilies", + "ideogram", + "ideograms", + "@nuxt/fonts", + [ + 0, 5535, 5087, 1009, 1011, 33175, 25917, 35358, 1473, 1177, 1895, 1955, 2070, 1192, 1894, 4042, 4073, 4076, + 4201, 4443, 4468, 4474, 4484, 91 + ], + [ + 0, 1473, 57, 6270, 4439, 32453, 6616, 30289, 33190, 30291, 620, 33201, 31453, 1623, 33203, 6653, 33205, 33207, + 3178, 33216 + ], + "unstorage", + "fetch-blob", + "ttypescript", + [2, 1432, 7253], + "nsumers", + [2, 25687, 28627], + "jsdoc-to-mdx", + [1, 2343, 28633], + "@nuxt/icon", + "@nuxt/kit", + [0, 5914, 28661, 28662, 2487], + "igitalbazaar", + [2, 27235, 28634], + [2, 19946, 2903], + "-websocket", + [2, 6710, 28637], + [2, 27694, 1194], + [2, 28660, 32819], + "aes", + "asn", + "asn.1", + "cbc", + "csr", + "des", + "gcm", + "hmac", + "pkcs", + "pki", + "prng", + "rc2", + "rsa", + "sha256", + "sha384", + "sha512", + "tls", + "x.509", + "x509", + [3, 218, 21], + [0, 30533, 192, 5467, 30535, 10614, 6494, 5087, 4874, 1009, 1011, 1177, 1895, 2675, 1192, 1894, 3980, 4468, 91], + [0, 30538, 6710, 14584, 91, 30540, 30543, 5130, 29752], + [1, 2343, 28665], + "seneca-joi", + [0, 26964, 0, 26966, 4139], + "c2dm", + "fcm", + [1, 2343, 28669], + [0, 28670, 28671, 28682, 4139], + [ + 0, 33071, 30616, 26407, 26411, 12396, 7637, 9363, 26414, 26415, 23276, 2577, 2584, 2588, 2681, 2822, 37507, + 3090, 26418, 26568, 12429, 26421, 3958, 9393, 12443, 4542, 4549, 4555, 12449 + ], + [0, 8648, 4874, 7677, 34683, 26431, 1984], + "@nuxt/schema", + "@nuxtjs/color-mode", + "geocoder", + "pulse", + "geocoding", + "geo", + "mapquest", + "agol", + "arcgis", + "tomtom", + [0, 1739, 1745, 34683, 26440, 26445], + [1, 2343, 28695], + "libsql", + [2, 28694, 176], + [3, 5781, 10], + "l-backoff", + [2, 28686, 28687], + [3, 21276, 15], + "require-in", + [2, 28690, 2429], + "piña", + "pigna", + [3, 30585, 14], + [0, 28696, 28697, 28662, 2537], + [0, 2026, 3951], + [ + 0, 30533, 192, 5467, 1300, 30535, 10614, 6494, 5087, 4874, 1009, 1011, 1177, 1895, 2675, 1192, 1894, 3980, 4468, + 91 + ], + "high5", + [2, 12075, 57], + [1, 2343, 28705], + "js-parser", + [2, 1936, 28701], + "-benchmark", + [2, 15512, 28703], + [0, 28730, 28750, 28758, 2537], + "mocha-each", + "neutron-html5parser", + "ookmark", + "colortranslator", + [2, 15277, 12610], + [2, 28712, 28725], + [3, 10130, 17], + "biased-opener", + "data-uri", + [2, 25894, 28714], + "v8-debug", + "v8-profiler", + [2, 28742, 28749], + [2, 28720, 28721], + [3, 32265, 26], + "ble", + [2, 28723, 7059], + [3, 12133, 21], + "vitest-browser-react", + "ber-animation", + "dummy", + [2, 23814, 28898], + "http mock", + "zipper", + [0, 3951, 4474], + "toposort", + "quality-insights", + "growly", + "words", + "shellwords", + [2, 28738, 28741], + "nexe", + "@types/to", + " center", + [2, 9044, 28739], + "posort", + [3, 26699, 15], + "mac os x 10.8", + [2, 4402, 3329], + "windows ", + "8 notification", + [2, 28745, 28746], + "toaster", + "auto-height", + [0, 192, 5467, 10614, 6494, 5087, 4874, 1009, 1011, 1437, 1177, 1895, 2675, 1192, 1894, 3980, 4468, 91], + "tabbable", + [2, 8180, 594], + [2, 29518, 28757], + "@radix-ui/react-checkbox", + [2, 28756, 45], + [3, 28754, 16], + "vfs", + [0, 30538, 6710, 91, 30540, 30543, 5130, 29752, 5995, 6082], + [1, 2343, 28760], + [0, 26964, 0, 26966, 2537], + [2, 28762, 9006], + [3, 28718, 20], + [2, 3958, 28764], + [3, 26414, 16, 5], + [1, 2343, 28767], + "@internal/test-utils", + [0, 26964, 0, 26997, 2443], + "ps-list", + "code-blocks", + "pty", + [2, 6426, 7009], + "forkpty", + "openpty", + [1, 2343, 28787], + [2, 28776, 28777], + "expressi", + "ve-code", + "@node", + [2, 9057, 3642], + [2, 28793, 28798], + "-red/util", + [2, 28778, 28781], + [2, 3341, 2110], + "@node-red/", + "nodes", + [2, 28784, 28785], + [0, 25316, 28788, 28796, 2537], + [0, 603, 11018], + [2, 216, 28812], + [2, 28784, 7047], + "editor-api", + [2, 28784, 28791], + [3, 28718, 19], + "iot", + "fix-dts-default-cjs-exports", + [0, 188, 4646, 1542, 32977, 28692, 28693, 32312, 5592, 18496, 5490, 91, 4799, 998, 6953], + [2, 28826, 16860], + "play", + "sass-graph", + [2, 1152, 14741], + "stdout-st", + [2, 28801, 2187], + "-case-path", + [2, 4938, 28803], + [2, 28742, 28875], + [2, 4550, 13786], + "@jsopen/objects", + [1, 2343, 28810], + [2, 34443, 25240], + [0, 28819, 28820, 5893, 2523], + "modern.js", + "alpha-function", + "long-timeout", + "sorted-", + [2, 20096, 20835], + [2, 28814, 28815], + [2, 30633, 30886, 31217], + [3, 1419, 11], + [0, 28751, 444, 28752], + [0, 90, 28754, 28755, 968, 972, 974, 4880, 4883, 1030, 1497, 89, 3824, 3882, 3885, 4023, 8187, 28724, 1541], + "recurrent", + [1, 2343, 28823], + [0, 28824, 28825, 28828, 4139], + [0, 28763], + [0, 34683, 2020, 28766], + "unplugin-", + "deepcopy-esm", + [0, 26445, 28769, 1745, 28775, 9348, 28779, 26440], + [2, 9357, 28832], + [2, 28831, 30581], + [3, 12447, 17], + "-convert", + [1, 2343, 28834], + [0, 0, 0, 28835, 2523], + [0, 30999, 28818, 5995], + [1, 2343, 28839], + "fs.watch", + "watchfile", + [0, 28840, 28841, 28848, 34352], + [0, 28775], + [0, 9363, 9315, 23312, 3978, 3992, 3999, 9348, 4549, 12449, 28766], + "stories", + [2, 819, 664, 33355], + "ngn", + "daemon", + " logging", + [2, 2013, 28846], + [0, 28769, 1745, 28775, 9348, 28779], + "elevate", + "sudo", + [1, 2343, 28852], + [0, 28864, 28867, 28870, 4139], + "store2", + [2, 28855, 7625], + [3, 28518, 12], + "@mgcrea/eslint-config-node", + "-lts", + [2, 19439, 28857], + "node-ipc", + "excel", + "xls", + "zeptomatch", + "picoquery", + [0, 2121, 2127, 1690, 2024, 4507], + "rolldown", + "amaui", + [0, 28470, 2180, 5476, 5478, 1414, 2198, 91], + " extend", + [2, 6970, 28868], + [0, 2313, 1383, 614, 202, 1388, 5995, 4967, 1145, 1973, 1429, 2340, 2350], + [1, 2343, 28886], + [2, 13402, 2942], + [2, 28874, 8817], + "@appium/s", + "class-names", + "firefoxos", + "combyne", + "for-publish", + [2, 1463, 28878], + [2, 31228, 14372], + "libgit2", + "git2", + [2, 28742, 26542], + [3, 31782, 22, 5], + "vendors", + [0, 0, 28888, 28889, 2523], + [2, 9191, 3595], + [0, 1330, 1389, 1596, 2759, 2899, 4170, 4535], + [0, 20215, 4741, 2574, 36796, 6847, 1965, 1867, 10368, 7131, 1155, 1936, 1623, 14419, 37953], + "libbase64", + "libmime", + "libqp", + "ntlm-auth", + [2, 26444, 28893], + [2, 13857, 9224], + [2, 28742, 188], + "Nodemailer", + "hun-ky", + [2, 32723, 28900], + "hex-color", + [2, 28902, 28905], + [3, 28899, 21], + "undefsafe", + "pstree.remy", + "sl-color", + [2, 32723, 28907], + "rgb-color", + "autoload", + [2, 31281, 4202], + [2, 819, 45], + [2, 28742, 28916], + [2, 6097, 6142], + [2, 15701, 28915], + [3, 693, 10], + "vision-history", + "wheel-gestures", + "multimeter", + [1, 2343, 28975], + [2, 30211, 30221], + "@asamuzakjp/css-color", + "node-webkit", + "drc", + "lz4", + "potx", + "xltx", + "dotx", + "async-redis", + "ipfilter", + [2, 2032, 28928], + "express-ws", + "xltm", + "ots", + "json-logic-js", + "json-sql", + [2, 7060, 1146], + "line-reader", + "mocker", + "-data-", + [2, 28938, 1179], + [2, 28937, 28939], + "pino-pretty", + "odg", + "otg", + "promise-mysql", + "stjs", + "otp", + "ott", + "uuid-random", + "docm", + "nolang", + "Programming", + "programm", + "ing language", + [2, 28952, 28953], + "dotm", + "descriptive", + "5GL", + "potm", + "json schema", + "Mehdi Salartayefeh", + "pptm", + [2, 8293, 200], + [2, 8293, 3561], + "knitwork", + [2, 28968, 28969], + " parser", + [2, 5675, 28966], + "esbuild-re", + "act-compiler-plugin", + [2, 28971, 1172], + [3, 29874, 35], + [2, 28973, 4298], + [3, 5240, 29], + "ohash", + [0, 28989, 0, 28990, 2523], + "admin-panel", + "absolute", + "backslash", + "delimiter", + "file-path", + "forward", + "slashes", + "trailing", + "unix", + "urix", + "headless-cms", + [2, 1917, 11597], + [2, 819, 3877, 29320], + [0, 28507], + [0, 45, 29, 36246, 89, 4967, 6400, 5995, 10768, 5122, 1388, 5284, 676, 91, 202, 6710, 6082, 28866, 594], + "normaliz", + [2, 28991, 5218], + "normali", + [2, 28993, 6079], + [1, 2343, 28998], + "simplify", + "canonical", + [0, 29046, 0, 29047, 34352], + [2, 29171, 594], + "lit-analyzer", + [2, 32700, 29003], + "mouse", + "attract", + "mouse wheel", + [2, 29006, 29007], + [3, 26450, 35], + "ubble", + [2, 32700, 1544], + [2, 29010, 29011], + [3, 31198, 35], + "ause", + [2, 32700, 34141], + "escape-goat", + [3, 9577, 11], + "from-git", + [2, 29014, 29015], + "teractive", + [2, 20043, 29017], + [2, 28489, 29003], + "is-scoped", + [2, 29027, 29029], + "issue-regex", + "listr-input", + "new-github-release-url", + "npm-name", + "p-memoize", + [3, 32722, 21], + "map-obj", + "asing-quad", + "write-package", + [2, 32731, 3924], + [2, 29033, 4390], + [3, 26495, 20], + [2, 29035, 29036], + [3, 28909, 22], + "troke-color", + "is-cidr", + "ts-lit-plugin", + "libnpmorg", + [2, 33533, 29041], + "ormatjs", + "libnpmpack", + [3, 29818, 15], + "libnpmteam", + "MDX", + [0, 28872, 28873, 13411, 4507], + [0, 13428, 5284, 28522, 11132, 12295, 12296, 28876, 5472], + "fs-m", + "reka-ui", + [2, 37399, 29156], + "fs-minipass", + [1, 2343, 29064], + "npm-profile", + [2, 2977, 7193], + "@sigstore/tuf", + [2, 2977, 15525], + [2, 636, 1541], + "audit-report", + [2, 3382, 29058], + "-pipeline", + [2, 21505, 29060], + [2, 4570, 2649], + [2, 3382, 29062], + [0, 26871, 0, 26863, 2399], + "relative-date", + [2, 11072, 29065], + [2, 28093, 26006], + [1, 2343, 29074], + [2, 636, 3358], + [2, 636, 1739], + "@tufjs/repo-mock", + [3, 26037, 13], + [2, 29072, 2203], + [0, 29075, 0, 7573, 2537], + [0, 1004, 31231, 32914, 28909, 31262, 31272, 28899, 28901, 28906, 31282], + "-draft2019", + [2, 1092, 29076], + [1, 2343, 29119], + [2, 29080, 29081], + [3, 23075, 14], + "rrect-media-syntax", + [2, 29089, 29090], + "-record", + [2, 17495, 29083], + "giturl", + "nfig-loader", + [2, 18323, 29086], + "semver-diff", + [3, 32593, 24], + "ort", + [2, 29092, 29094], + [3, 32686, 13], + "outdated", + "dx-jsx-attribute-sort", + "updating", + "updater", + [2, 29098, 29099], + [3, 29091, 20], + "no-void-children", + [2, 29098, 29107, 29118], + "@trivago/prettier-plugin-sort-imports", + [3, 27782, 13], + [2, 29102, 8961], + [2, 13197, 176], + "@types/ini", + [3, 8141, 13], + "quote-st", + "helpfulerror", + [2, 16476, 29108], + [2, 29106, 29109], + [2, 7726, 27005], + "@types/npm", + "-registry-", + [2, 29113, 1612], + [2, 29112, 29114], + [3, 16478, 13], + [2, 29116, 13722], + "yle", + [0, 0, 0, 29163, 2537], + [2, 2645, 89], + [3, 6544, 14], + [2, 29121, 594], + "pdate-", + [2, 29123, 3329], + [2, 7817, 29124], + [3, 1898, 15], + "aine", + [2, 29126, 29127], + "fp-and-or", + [3, 9506, 11], + [2, 117, 29153, 29494], + [2, 29098, 29134, 29135], + "jsonlines", + "self-clos", + "e", + "prompts-ncu", + "postcss-clean", + [2, 25813, 594], + [2, 4524, 2845], + "verdaccio", + [2, 8551, 4675], + "vite-node", + [2, 29145, 29146], + "upgrade", + [3, 29132, 21], + "horthand-attribute", + [2, 29098, 29148], + "unique-attribute-name", + [2, 29092, 29150], + "edia-style", + [2, 32704, 29152], + "idden-table-cell", + [3, 6138, 9], + [2, 7686, 4692], + [2, 22060, 3122], + "variants", + "ypescript-tc", + [2, 22060, 29157], + [3, 17312, 29], + [2, 29159, 12844], + "unplugin", + "auditor", + [0, 45, 29, 36246, 89, 4967, 6400, 5995, 10768, 5122, 1388, 5284, 676, 91, 202, 6710, 6082, 28474, 594], + [1, 2343, 29167], + [2, 28826, 29166], + "auto-import", + [0, 26964, 0, 26966, 2487], + "variadic-function-arguments", + "mutate-fs", + "@publint/pack", + [3, 1014, 15], + [1, 2343, 29173], + [0, 29177, 0, 21958, 2537], + "minizlib", + "minipass-", + [2, 29175, 1612], + [ + 0, 4729, 2070, 31705, 4747, 4135, 1862, 1301, 1525, 2731, 4116, 1109, 1193, 31856, 3145, 4705, 31859, 3717, + 3878, 1079, 31861, 28512, 31864, 24169, 3957, 31867, 2784, 31871, 31877, 31880, 31884, 31891, 21129, 31896, + 28073 + ], + "fast-equals", + "registry", + [1, 2343, 29199], + "autodocs", + [2, 31092, 3452], + "@pm2/blessed", + "padend", + [2, 18996, 29184], + [2, 29189, 27863, 20181], + "ysticatea", + [2, 16693, 29187], + [3, 28544, 19], + "commandline", + "npm-scripts", + [2, 29193, 1541], + [3, 28544, 11], + [2, 29193, 11857], + [2, 29196, 29198], + [3, 31303, 12], + "neostandard", + "ise-router", + [0, 29216, 0, 7573, 2399], + [2, 29189, 11017], + [2, 29202, 29203], + [3, 29192, 12], + "atalog-model", + [2, 29202, 25240], + [2, 29193, 13224, 29206], + "atalog-common", + [2, 29209, 202], + [2, 28270, 6270], + [3, 29205, 26], + "yarn to npm", + "@daybrush/jsdoc", + "backstage", + "ci/cd", + "immobiliare", + [2, 29214, 12825], + [ + 0, 28880, 1004, 29031, 29032, 31244, 1418, 26495, 32926, 26483, 26489, 32934, 29021, 29034, 28458, 31198, 29012, + 29009, 26450, 29005, 26482, 30527, 29001, 29008, 1445, 29019, 28479 + ], + [1, 2343, 29221], + "npm upgrade", + [2, 28826, 10309], + "vaul-vue", + [0, 29223, 29225, 26824, 2523], + "rgv", + [0, 4484, 29755], + [2, 1262, 25816], + [0, 89, 1177, 4039, 4042, 1894, 3824, 91, 4874, 4880, 3884, 4883, 3885, 28540, 8656, 8660, 4887, 10817, 1011, 1009], + [2, 34674, 588], + "npm-cli", + [2, 29229, 29303], + "@hyrious/esbuild", + [1, 2343, 29232], + "ntainer", + [0, 29256, 29257, 29258, 34352], + [2, 26109, 28923], + [3, 28200, 13], + [2, 29240, 29249], + "@cropper/", + "are-", + "we-there-yet", + [2, 29237, 29238], + [3, 10309, 13], + "image-cropping", + [2, 29243, 3642], + "image-view", + "image-processing", + "cropper-element", + "mocha-jsdom", + [3, 31831, 14], + [3, 5926, 13], + "-type-helpers", + [2, 29254, 29255], + "cvss", + "-npm-utils", + [2, 19773, 29252], + [3, 3978, 9], + "arry-night", + [0, 29186, 29192, 29194, 1364, 2026, 29195, 2664, 4709, 4757], + [0, 29200, 29201, 29204, 29205, 29207, 6494, 9240, 3244, 4342], + [0, 29212, 17978, 29213, 29214, 29215, 5995], + "@asteasolutions/zod-to-openapi", + "gluegun", + "@trpc/server", + [2, 17612, 29264], + "nuke", + "custom-alias", + [2, 4026, 29266], + "tspaths", + "@nuxt/eslint-config", + "event-driven", + "money", + "blaze", + "percentage", + [1, 2343, 29274], + [2, 8293, 1983], + [0, 26964, 0, 26997, 2523], + [1, 2343, 29278], + "a-sync-waterfall", + "asap", + [0, 0, 29286, 29287, 2537], + [2, 3522, 364], + [2, 3192, 29279], + [3, 29280, 16], + [2, 29281, 2759], + [2, 5223, 8861], + "s-browser", + [2, 19390, 29284], + [0, 1148, 2899], + [0, 26257, 1111, 1473, 7208, 1437, 1623, 32453, 6616, 29222], + [3, 26364, 17], + [1, 2343, 29296], + "@nuxt/module-builder", + [2, 18124, 2844], + "@4c/tsconfig", + "@react-bootstrap/babel-preset", + [2, 29344, 7625], + "@nuxt/test-utils", + [0, 29298, 29302, 29329, 2399], + "jsonpathly", + [0, 7387], + [2, 29301, 29538], + "css4", + [3, 5782, 27], + [0, 4874, 4880, 4883, 1030, 3286, 89, 3824, 1983, 26744, 1984, 11039], + [3, 4055, 16, 6], + [3, 26699, 14], + "achine-id", + [2, 27946, 29305], + "parsers", + [2, 15904, 29307], + "@zkochan/js-yaml", + [2, 15904, 6698], + [3, 17944, 18], + "-and-columns", + [2, 27005, 29312], + "@napi-rs/", + "graphQL", + "wasm-runtime", + [2, 29314, 29316], + "telejson", + "Mobile", + "nderer", + [2, 25806, 14029], + "@whatwg-node/promise-helpers", + [2, 29326, 29332], + [2, 20164, 22156], + [2, 11936, 1564], + [3, 9250, 19], + "processinfo", + [2, 11936, 29327], + [0, 5592, 1745, 23803, 3287, 3452, 8124], + "node-preload", + "process-", + "nuxt", + "on-spawn", + [2, 29331, 29333], + "spawn-wrap", + "css library", + [1, 2343, 29353], + "any-path", + [2, 29340, 29341], + [3, 132, 10], + "local-node-rig", + "jsdoc-fresh", + "jsdoc-region-tag", + [3, 29293, 17], + "nuxt-ui", + "ui-framework", + "undefined-", + [2, 29347, 15400], + [2, 8302, 29348], + [2, 29383, 29384], + "@readme/", + "example", + [0, 29363, 0, 29472, 2523], + "oas-examples", + [2, 29351, 29354], + "@readme/o", + "penapi-parser", + [2, 29356, 29357], + [2, 8818, 5940], + "@types/me", + "moizee", + [2, 29360, 29361], + [0, 2817, 18023, 1532, 31802], + " initiative", + [2, 3452, 29364], + "openapi ", + [2, 29366, 10658], + [3, 29367, 12], + [2, 29366, 1746], + "oai", + "@eslint/css", + "print-coveralls", + "ts-mock-imports", + "egjs-jsdoc-template", + "to-openapi", + [2, 28343, 29375], + [2, 29351, 29376], + "@egjs/release-helper", + [3, 20227, 14], + [2, 29379, 8125], + [2, 5290, 29382], + "-plugins", + [3, 25931, 14], + "quis-saepe-velit", + "@renyii/vue-renderless", + [2, 31525, 29391], + "andom-function", + [2, 30713, 29397], + "@teamteanpm2024/aperiam-fugit-error", + "prollyfill", + "ize-observer-browser", + [2, 19965, 29393], + "-es6-transform", + [2, 29418, 29475], + "ec", + "gulp-exec", + "ign-functions", + [2, 29399, 29400], + [3, 27720, 16], + "ototype-minify", + "@vercel/ru", + "@pkg", + "js/support", + [2, 29402, 29403], + "flicking", + "globalthis", + [2, 29408, 26274, 29411], + [3, 29389, 17], + "ostringtag", + [2, 17422, 29409], + "alias-quod", + "egjs", + "-upgrade", + [2, 29408, 29415], + "ut-voluptatum-vero", + "indexof", + [3, 26699, 20], + [3, 29389, 16], + "@loki/integration-react", + [3, 31032, 17], + "@modelcontextprotocol/sdk", + "@mar", + "iocasciaro/benchpress", + [2, 29422, 29423], + [2, 31009, 16609, 18756], + "bean", + [2, 31550, 29430], + "notation", + "segment", + " upgrade", + [2, 29438, 7031], + [2, 29418, 29433, 29434], + "effective-octo", + [3, 246, 18, 8], + [2, 29436, 29437, 29439], + [3, 29432, 17], + "xpedita-", + [3, 805, 9], + "labore-ipsum", + "es-object-atoms", + [2, 29419, 4009], + "mentoss", + "@ucast/mongo2js", + [2, 28865, 6324, 4056], + "unconfig", + "permissions", + "abac", + [2, 29418, 29449], + "odio-fugiat-in", + "ee-first", + "rbac", + "ibac", + "cancan", + [2, 29487, 188], + "@sxzz/eslint-config", + "wrappy", + "quick-lru", + [2, 29459, 29620], + "@sxzz", + [2, 29418, 28215, 27463, 29461], + "odit", + "@blakeembrey/deque", + [3, 29462, 13], + [2, 29463, 1283], + "@sxzz/test-utils", + "@unocss/eslint-plugin", + [3, 4949, 17, 10], + [2, 160, 1554], + "unocss", + "unplugin-unused", + [2, 30209, 28945], + [0, 30999, 28818, 5995, 17977], + [1, 2343, 29484], + "epoll", + "beatae-aliquid-id", + [2, 23240, 3209], + "@zibuthe7j11/deserunt-quasi-impedit", + "gpio", + [3, 7033, 9], + "raspi", + "beaglebone", + "-black", + [2, 29481, 29482], + [0, 0, 29485, 29491, 2537], + [0, 19325, 1414, 1894, 3985, 3998, 4039, 4389, 4505, 91, 1906], + "llms", + [3, 29419, 18], + [2, 10441, 20008], + "lazy-prop", + [2, 27542, 29489], + [0, 1623, 1936, 965, 5122, 12344, 34050, 3665, 22145], + [2, 29294, 1892], + [2, 35506, 15215], + "s-compressor", + [2, 29628, 29629], + [1, 2343, 29497], + [0, 29498, 29499, 29516, 2399], + [0, 2611, 4763], + [ + 0, 29259, 192, 5467, 23531, 29261, 4865, 4874, 1009, 1011, 10417, 668, 1177, 1881, 1895, 29262, 1915, 1938, + 1955, 2070, 2675, 2990, 1894, 29265, 4039, 4480, 4494, 91 + ], + [2, 33343, 1640], + "bath-es5", + "dere", + "ference-", + [2, 29503, 2845], + [2, 29502, 29504], + [2, 29510, 29513], + "-adapter", + [2, 2085, 29507], + [2, 1170, 29508], + [3, 10065, 15], + "deref-sync", + [2, 7526, 29511], + "ooks", + "fetch-retry", + [2, 29112, 3073], + [0, 2611, 5995, 29268, 29270, 5130, 24090], + "@base-ui-components/react", + [3, 32804, 12], + "docz", + "docz-utils", + "open api", + "docz-theme-default", + [1, 2343, 29526], + "aws-sdk-client-mock", + [2, 32539, 200], + [0, 29541, 29547, 29516, 2537], + [3, 26032, 12], + "computer", + [2, 29530, 29532], + [3, 25758, 18], + "quadrocopter", + "m-sint-necessitatibus-possimus", + [2, 29534, 15050], + [3, 33156, 12], + "unifont", + [2, 29627, 29631], + "cupertino-pane", + "licit-resource-management", + "countrynames", + "kill-port", + [0, 1457, 1491], + [2, 15713, 10050], + [2, 28397, 553], + "@testcafe/publish-please", + "aws-lambda", + "eruda", + [ + 0, 1138, 4494, 2070, 2675, 1177, 4039, 668, 1894, 91, 4865, 4874, 2990, 29261, 4480, 192, 29265, 1938, 10417, + 1895, 1955, 1011, 1881, 5467, 1009, 1915, 29262 + ], + [1, 2343, 29562], + "nano-staged", + "elapsed-time-logger", + "hashish", + "gulp-open", + [2, 4807, 3864], + "cupertino", + "pane", + "slide", + "-call", + [2, 29557, 4408], + [2, 6606, 29558], + "fasteejs", + "ua-is-frozen", + [0, 29570, 29578, 29612, 2487], + [3, 26032, 13], + [2, 29609, 12835], + [2, 29573, 6802], + "prelude-ls", + "deep-is", + "astro-auto-import", + "livescript", + [ + 0, 4729, 1091, 4494, 12105, 3533, 3348, 1410, 1606, 28452, 4548, 1458, 3183, 33145, 1699, 2096, 11993, 3547, + 28460, 2689, 2668, 28941, 2191, 3781, 36687, 28461, 36123, 3509, 4108, 28482, 28518, 26696 + ], + [3, 28967, 11], + [2, 29571, 3642], + "country-", + "@pouchlab/ui", + [2, 29573, 1460], + [2, 29573, 7285, 2669], + "-dis", + [ + 0, 4164, 4039, 4042, 668, 9241, 1587, 1610, 7819, 28585, 7892, 12461, 3813, 28426, 4057, 8818, 31727, 28586, + 28854, 29228 + ], + "ppsx", + "-discarder", + [2, 2184, 29580], + "chai-jquery", + [2, 1221, 6621], + "corejs-typeahead", + "doiuse", + "gulp-add-src", + [2, 2352, 29588], + "-bust", + "gulp-check-deps", + "sequencify", + [3, 28628, 14], + [2, 2504, 29687], + "gulp4-run-sequence", + "is-empty-object", + "motion-ui", + "sassy-lists", + [2, 22109, 29598], + "-forward-reference", + "vinyl-named", + "sql-ddl-sync", + "sql-query", + [2, 29611, 29625], + [2, 29604, 29606], + [3, 17589, 11], + "redshift", + "helper-rel", + [2, 29608, 4213], + [3, 29603, 18], + "gradient", + "grommet", + [3, 940, 8], + [0, 31153, 5592, 6354, 29311, 27837, 5130, 29315, 29727, 5284, 23803, 202, 28323, 89, 31175, 91], + [1, 5293, 29665], + "tinygradient", + "tmpdir", + "ps1", + "glob2regx", + [2, 29619, 29620], + "@bokub", + [3, 29621, 16, 9], + [2, 7623, 7628], + [2, 1283, 17321], + "template ", + [2, 29623, 16111], + "expand-path-helper", + "magnific-popup", + [3, 4968, 15], + [3, 111, 18], + "-cloud-services-collaboration", + "grommet-icons", + "composable-commerce-test-data", + "styleable", + [3, 3474, 9], + [2, 10818, 29635], + "toolbars", + [2, 29637, 5592], + [3, 11285, 19], + "@vscode/vsce", + [2, 10829, 29640, 35971], + "source-l", + "vscode", + [2, 964, 4415], + [2, 29644, 591], + [3, 19588, 29], + "chromatic", + [2, 29650, 29651], + "addlistener", + "addeventlistener", + "waits", + "grommet-", + "theme-hpe", + [2, 1192, 29653], + [3, 12201, 18, 16], + "random-int", + "react-shadow", + "resolved", + "fulfilled", + [2, 29659, 22145], + [3, 29576, 18], + "tarball-extract", + [2, 29662, 29663], + [3, 35482, 11], + "act-selectors", + "fifo", + [0, 8391, 29688], + "grommet.io", + "grommetux", + "sticker sheets", + "design patterns", + "app templates", + "atomic design", + "invalidate", + "WCAG 2.1", + [2, 8652, 29675], + " navigation", + "screen reader tags", + [3, 10826, 11], + "graphical user interface", + "plunder", + "exit-x", + "modelcontextprotocol", + "osition-area-property", + "pwa-asset-generator", + "_codesniffer", + [2, 1936, 29684], + [2, 17753, 5130], + "-lint", + 1743292800000, + [2, 23814, 6653], + "rapid-development", + "proclaim", + "@grammyjs/types", + "dart-sass", + "grunt-jekyll", + "mcp", + "deno2node", + "sigstore", + [2, 9466, 1153], + "antora", + [3, 3397, 13], + [2, 29700, 3212], + "zepto", + [3, 12478, 11], + [2, 30713, 29989], + [1, 2343, 29712], + "countries", + [2, 22642, 5351], + [2, 18145, 4581], + "@next/font", + "package-up", + [2, 17507, 4107], + [0, 29714, 29715, 29720, 34352], + "@jsdevtools/ez-spawn", + [0, 6680, 26246, 26882, 26247, 26883], + [ + 0, 87, 29211, 29381, 29378, 5583, 811, 816, 6373, 4864, 4874, 29386, 1009, 32801, 1011, 1165, 1195, 1264, 1540, + 1593, 1596, 10944, 29374, 1177, 1938, 1942, 13668, 2151, 2193, 6382, 29120, 28366, 2675, 28629, 29392, 3400, + 29137, 3566, 29372, 28369, 27120, 4042, 20981, 10854, 29398, 20983, 4073, 4076, 4079, 2278, 13739, 29373, 11440, + 4484, 4487, 28625, 91, 20474 + ], + "@types/png", + [2, 29716, 1722], + "context7", + "vibe-coding", + [0, 32054, 29405, 31512, 29002, 4453, 28125, 5131, 89, 188, 1098, 3698, 35060, 35062, 35058, 29412], + [2, 17590, 23989], + "png.js", + [2, 29573, 29730], + "screenshots", + "ai-detection", + "screengrab", + "headless", + "app-detection", + "rapidoc", + "iso-codes", + "iso", + "api-generator", + "find-process", + [1, 2343, 29738], + "low-code", + [2, 29737, 3729], + [3, 33097, 12], + [0, 0, 29739, 29864, 2537], + [0, 107, 91, 1983, 11026, 26744], + [3, 7895, 13], + "jpeg-js", + "striptags", + [2, 1948, 29816], + "baas", + "launch-image", + "splashscreen", + "splash-screen", + "image-generation", + "aws4", + "mstile", + "pwa-assets", + [3, 7863, 11], + "web publishing", + [2, 3862, 29804], + "@ionic/react", + "@loki/runner", + "@loki/target-chrome-app", + "@apitools/openapi-parser", + [2, 29760, 6866], + "base64-", + "xml-but-prettier", + "idb-keyval", + [3, 5062, 14], + "rypto-js", + [2, 29763, 29764], + [2, 29785, 17878], + "@saithodev/semantic-release-backmerge", + "cebook-js-sdk", + [2, 22819, 29768], + [2, 1983, 29303], + [3, 19588, 24], + "nline-", + [2, 11294, 6436], + [2, 29772, 29773], + [2, 29771, 29774], + [2, 29781, 29782], + "river-adapter-utils", + [2, 2767, 11110], + "jsdoc-babel", + [2, 27738, 8791], + [3, 14065, 15], + "mplate-html-minifier", + "parse-server", + "inspectpack", + [3, 29757, 20], + "Custom Element", + "Web Component", + "swagger ui", + "swagger ", + "WHATWG", + [2, 28008, 57], + "html5 parser", + [2, 28008, 1753], + [2, 1936, 1753], + "openapi ui", + [2, 29366, 4366], + [2, 29366, 11328], + [2, 29366, 3902], + "fast-ur", + "l-parser", + [2, 29799, 29800], + [2, 29366, 25677], + [2, 29789, 4366], + "animatable", + "react-swipeable-list", + "pause", + [2, 29811, 29812], + [3, 1551, 9], + [2, 29808, 18716], + [2, 1432, 29809], + [3, 29757, 13], + "native-android-emulator", + [2, 29814, 29815], + [3, 29807, 20], + "ios-simulator", + "-preferences", + [2, 31868, 5891], + [2, 29822, 19102], + "collapsible", + "accordion", + "readme-md", + [3, 4272, 10], + [2, 11375, 10850], + "username", + [3, 9308, 9], + [2, 29827, 29828], + [3, 4060, 15], + "ocal-resolve", + [2, 3500, 1274], + "visual testing", + "swipeable", + "customizable", + [3, 1419, 20], + "teeny-tap", + "base64url", + "touchscreen", + "listview", + "swipe-to-delete", + "swipe-actions", + "json/simple-icons", + [2, 29852, 32865], + "iso-country-codes", + "use-composed-ref", + "use-latest", + [2, 29866, 1460], + "@preconstruct/cli", + "blue-tape", + "autosize", + "grow", + "riot", + "events.once", + "@scalar/s", + [2, 30844, 1983], + "exist", + "md-writer", + [2, 12557, 8982], + [2, 29858, 29859], + [3, 7806, 10], + "mon-tags", + "ts-declaration-location", + [2, 29863, 14056], + "isabsolute", + [3, 1733, 14], + [ + 0, 31549, 31550, 29427, 31553, 31565, 9006, 3015, 31566, 15813, 10725, 30672, 5066, 15571, 89, 31567, 1098, 188, + 12295, 5131, 28125, 31568, 31569 + ], + "react-smooth", + [3, 29842, 12], + "@borderless/ts-scripts", + [2, 29958, 29576], + [2, 29870, 34050], + "victory-", + [1, 2343, 29929], + [2, 10818, 29873], + "mdx-gfm", + [2, 10818, 29875], + "webpack5-compiler-swc", + [2, 29877, 29878], + [3, 10841, 15], + "-runner", + [2, 33114, 22982], + [2, 33114, 29881], + "time-format", + "@rkusa/linebreak", + [2, 29885, 29886], + "opentype.js", + [3, 18787, 15], + "v-expression", + "vitest-axe", + "log-process-errors", + "sortablejs", + [2, 5581, 29898, 27479], + [2, 29518, 29892, 29930], + "native-pr", + "jpeg-exif", + "linebreak", + "png-js", + "@riotjs/dom-bindings", + "blob-stream", + "multi-pa", + "pdfjs-dist", + [2, 29904, 4643], + "pdf writer", + "pdf ", + [2, 29902, 1179], + "@riotjs/", + [2, 29906, 29907], + "@riot", + [3, 25083, 18, 7], + "call-delayed", + "chai-i", + [2, 29904, 93], + [2, 29904, 614], + "ncreasing", + [2, 29909, 29912], + [2, 29915, 29916], + "@wdio/s", + "auce-service", + "bianco.attr", + "pgpass", + "pg-pool", + "pg-types", + "bianco.query", + "cumpa", + "pg-protocol", + "curri", + [2, 29126, 28794], + [2, 29927, 28794], + [3, 4069, 15], + "pg-cloudflare", + [0, 29947, 29948, 29981, 2523], + "eview", + "pg-co", + "py-streams", + [2, 29931, 29932], + "@cloudflare/workers-types", + "custom tags", + "minimalist", + "libpq", + "rdbms", + "data binding", + "riotjs", + "riot.js", + "tdesign-mobile-vue", + "oxc-resolver", + "copy-source", + [2, 5237, 29944], + "npm-watch", + [0, 29443], + [0, 33580, 5087, 4874, 1429, 31602, 2024], + [2, 29950, 12826], + [3, 35537, 26], + [2, 29956, 582], + "hasha", + "reorder", + "ng-sortable", + [2, 12318, 29992], + [3, 66, 20], + [2, 27777, 27738, 1764, 1524], + "iso-", + "@use-gesture/vanilla", + [2, 29961, 29962], + "tdesign-", + "icons-vue-next", + [2, 29958, 29658], + [2, 1547, 3525], + [2, 3525, 15159], + [2, 812, 1002], + "@soerenmartius/vue3-clipboard", + " build", + [2, 3525, 29968], + "/build", + [2, 3525, 29970], + "dom-parser", + "qrcode.vue", + [2, 8851, 19675], + [2, 29976, 29977], + [3, 32978, 16], + "atic-import", + [2, 29976, 29979], + "yles", + "@tdesign/site-components", + [0, 29446, 14374, 1081, 29447, 29451, 29452, 29453], + [1, 2343, 29985], + [2, 29961, 29984, 200], + "publish-", + [0, 29986, 29995, 2514, 2537], + [0, 26702, 19344, 1915, 32525, 1953, 1958, 1959, 2105, 2203, 26716, 4523], + [2, 4609, 29988], + "tdoc", + "ystem-ui-font-family", + "tdesign", + "pinkie-promise", + "-widget", + "weui", + "denodify", + [0, 4874, 25950, 1177, 2675, 17529, 2931, 27949, 3401, 4505, 91], + [2, 29997, 3346], + [3, 6806, 10], + "tstyche", + "atomic", + [2, 30016, 30020], + "atomic-sleep", + [1, 2343, 30160], + "xit-leak-free", + [2, 27492, 30003], + "pino-", + [2, 20417, 4714], + [2, 30005, 30006], + "std-", + [2, 1753, 591], + [2, 30008, 30009], + [2, 30005, 30010], + "quick-", + "-unescaped", + [2, 1671, 30013], + [2, 30012, 30014], + [3, 18858, 17], + "real-require", + "sonic-boom", + "thread-stream", + "-tag", + "lush-write-stream", + [2, 5537, 30021], + "obug", + "bole", + "fastbench", + "-write-stream", + [2, 20064, 30026], + "midnight-smoker", + "steed", + [2, 30031, 30032], + [3, 3577, 11], + "-variables", + [2, 30034, 30035], + "postcss-he", + "xrgba", + "postinstall", + [3, 3848, 9], + "devpostinstall", + [2, 30040, 1524], + [3, 3668, 14], + [2, 24276, 30042], + "odule-replacement", + "graphql-jit", + "uploader", + "preview", + "image-edit", + [2, 30085, 3582], + "mqemitter", + "remark-math", + "single-user-cache", + "base64-stream", + [2, 24101, 30057], + "ready", + "-simple", + [2, 2105, 30054], + "win32", + "woslash", + [2, 9406, 7293], + [2, 30060, 30065], + "remark-s", + [2, 30062, 30063], + "gulp-conve", + "rt-css-var", + "picklog", + "martypants", + "wechat", + "weixin", + [2, 29314, 4183], + [2, 17998, 30070], + "ading-time", + [2, 27707, 364], + "better-react-mathjax", + [2, 30074, 25131], + [3, 9313, 17], + [2, 30076, 30077], + [3, 12415, 13], + "alue-to-estree", + [2, 30079, 30080], + [3, 31790, 16], + "ocalematcher", + "tiny-lru", + [2, 10884, 30083], + "egotiator", + [2, 11932, 11525], + "iso-countr", + [2, 30087, 30096], + [3, 13203, 19], + "irregular-plurals", + "fs.extra", + "plurals", + "count", + "irregular", + "noun", + "nouns", + "requireg", + "orm-data", + "@pkgr/core", + [2, 4511, 30118, 30123], + "make-synchronized", + [2, 30101, 30102], + [3, 30099, 13], + "ous", + "sync-threads", + "fclone", + "vizion", + "@pm2/io", + "pidusage", + "pm2-axon", + "@pm2/", + "@pm2/agent", + "pm2-", + "pm2-deploy", + "synchronize", + [2, 5340, 30116], + "@pm2/js-api", + "webc", + "cli-tableau", + [3, 32969, 11], + "pm2-axon-rpc", + [2, 30111, 28917], + [2, 30111, 21833], + [2, 30109, 30121], + "heme", + "logs", + "kraken", + " balancer", + [2, 3001, 30126], + "lb", + "balancer", + [2, 3614, 30129], + "kubernetes", + "k8s", + "emoji-flags", + "pm2-docker", + "graceful", + "phone-codes", + "node-pm2", + "fs-fixture", + "production", + "keymetrics", + [2, 10339, 13522], + "strong-pm", + "supervisord", + "pm2.io", + "@ibyar/expressions", + " production", + [2, 17979, 30146], + [2, 3729, 6877], + "probes", + " process", + " alive", + [2, 30150, 30151], + [2, 25607, 30152], + "process ", + [2, 30154, 8309], + "clustering", + "memoizerific", + "cluster cli", + "dev ops", + [0, 30171, 0, 29047, 2537], + "phone-prefixes", + "@vercel/blob", + [2, 7285, 2669], + "tap-dot", + [2, 30180, 30181], + "PNG", + "js-png", + "node-png", + "import-without-cache", + "png-parse", + [0, 2845], + "pg-gateway", + "@ibyar/decorators", + "pglite-2", + "aurora", + "ibyar", + [2, 4641, 5341], + [2, 4641, 7256], + "evaluation", + [3, 578, 10], + "arousel", + [2, 30195, 3825], + "no-code", + "mvp", + [1, 2343, 30186], + [0, 30187, 30188, 30189, 2537], + [0, 8712, 1423, 5210, 1209, 3021, 26499], + [0, 34225, 4874, 2559, 91, 34229, 28456, 34231], + [0, 89, 5130, 21151, 28811], + "poe", + "economy", + "ninja", + "poe.ninja", + "poe economy", + [3, 581, 10], + [2, 30212, 3730], + " of exile", + [2, 3403, 30197], + " economy", + [2, 30198, 30199], + [3, 30200, 14], + [2, 30201, 30192], + [2, 30194, 8568], + [2, 30201, 5592], + [1, 2343, 30229], + "ast-walker-scope", + "poe.watch api", + [2, 30193, 8568], + "@vercel/ne", + "copilot", + "@types/ne", + [3, 587, 10], + "reval", + [2, 24808, 30213], + [2, 6649, 2995], + [2, 6645, 30215], + "tsgen", + [2, 30231, 30232], + "glamor", + [2, 24177, 591], + "o-async", + " manipulate", + [2, 1473, 30222], + [3, 30223, 15], + [2, 30224, 6600], + " color manipulation", + [2, 7595, 30226], + [3, 35570, 16], + [0, 30249, 0, 2514, 2487], + "muggle-string", + [3, 593, 10], + "potlight", + [2, 579, 30251], + [2, 29444, 30511], + [3, 6372, 10], + [2, 30235, 6374], + [3, 23816, 17], + [2, 30237, 13290], + [2, 30235, 30238], + [2, 30235, 1973], + [2, 30240, 3007], + "nuget-publish", + [2, 30244, 4900], + [3, 13484, 37], + "popperjs", + [2, 1517, 30248], + "attached", + "center", + [0, 9315], + [1, 2343, 30308], + "tiptap", + "allure-js-commons", + "flush-promises", + [2, 30255, 30259], + "@yarnpkg/l", + [3, 10175, 16, 14], + [2, 30276, 30280], + "source map", + "ibzip", + [2, 23660, 30261], + "tector", + [2, 11369, 30282], + [2, 10880, 30264], + "preset-env", + "jison-gho", + [2, 16645, 30267], + "null", + "calculation", + "unixify", + "allure", + "codeceptjs", + "testops", + [3, 3674, 10], + [2, 30273, 25461], + "read-cache", + "express-i", + [3, 1895, 16], + "oblems", + [2, 30277, 30278], + "ntlayer", + "is-mobile", + "spector", + "deep-object-diff", + "@ngard/tiny-isequal", + [2, 6268, 1467], + [2, 206, 30285], + [2, 209, 6731], + "@intlayer/chokidar", + "hsl", + "hsla", + "hwb", + "rgba", + [2, 30294, 6008], + [3, 30288, 11], + [2, 30296, 23], + [3, 30293, 12], + "intlayer", + "caniuse-api", + "colord", + [2, 10829, 30311], + [3, 19443, 15], + [2, 30301, 5592], + [2, 9738, 30304], + "s-hooked", + "@utils/ts-config-types", + [3, 30305, 16], + "@intlayer/", + [0, 0, 30473, 2514, 4139], + "@utils/ts", + [2, 30309, 32810], + "docs-mdx", + [2, 9402, 30374], + "get-npm-tarball-url", + "pixrem", + "pleeease-filters", + "apply", + [2, 3562, 30316], + "postcss-a", + "ttribute", + "-case-", + [2, 30322, 30367], + "use", + "insensitive", + [2, 30320, 30323], + [2, 30319, 30324], + [2, 30318, 30325], + [3, 3570, 22], + [3, 3570, 14], + [2, 30328, 12981], + "hex-alpha", + [2, 30328, 30330], + [3, 30331, 15], + "sl", + [2, 30332, 30333], + "wb", + [2, 30332, 30335], + "rebeccapurple", + [2, 30328, 30337], + [3, 30338, 15], + "gb", + [2, 30339, 30340], + "a-fallback", + [2, 30341, 30342], + [3, 4791, 10], + "nt-family-system-ui", + [2, 30344, 30345], + [3, 30346, 13], + [2, 30347, 24044], + [3, 3611, 18], + [2, 30349, 6422], + "user-agents", + "nitial", + [2, 3607, 30352], + [3, 3622, 10], + "dia-minmax", + [2, 30354, 30355], + "seudo-class-any-link", + [2, 6423, 30357], + [3, 30358, 14], + [2, 30359, 11513], + [3, 30274, 11], + "lace-overflow-wrap", + [2, 30361, 30362], + [3, 3681, 17], + [2, 30364, 6421], + [2, 30364, 23293], + [3, 11228, 16, 2], + "cssrecipes-custom-media-queries", + [3, 30368, 11], + [2, 30369, 19400], + [2, 30369, 10052], + [2, 30369, 594], + "vert", + "ermaid", + [2, 28756, 7224], + "ical-rhythm", + [2, 30373, 30376], + [2, 30369, 30377], + "i-am-meticulous", + [2, 1884, 30379], + "isogram", + "oc-and-anchor", + [2, 7646, 30382], + [2, 12798, 591], + [2, 3160, 30384], + [3, 30385, 11], + "@react-aria/interactions", + "filenames", + [2, 30386, 30388], + [2, 30386, 5980], + [2, 30386, 89], + [3, 30391, 13], + [2, 30392, 1213], + [3, 30391, 12], + [2, 30394, 367], + [2, 30386, 1002], + [2, 30386, 2282], + [2, 30415, 30461], + "nano-logger", + "npmpub", + [2, 25230, 25461], + [2, 3562, 30401], + "-inline", + [2, 3897, 30403], + "@enact/ui", + "lazy-universal-dotenv", + "to-slug-case", + [3, 4693, 9], + "ano-logs", + [2, 30408, 30409], + [2, 30058, 30412], + "-position", + "cssnext", + "modern-tar", + [3, 30387, 12], + [2, 30417, 364], + [3, 906, 9], + [3, 205, 11], + "ascade", + "-lay", + "er-name-parser", + [2, 30420, 30421], + [2, 30419, 30422], + [2, 30418, 30423], + [2, 30417, 30429], + "at-rule", + "atrule", + "csswg", + "delivery-react-native", + "queries", + [2, 30417, 30432, 30433], + "plugin-co", + "nsole-breadcrumbs", + [2, 30435, 30436, 30437], + [3, 30431, 16], + "network-", + "breadcrumbs", + [2, 30435, 89], + [2, 30438, 30440], + "-native-client-sync", + [2, 30443, 30444], + "declarative", + [3, 30439, 29], + "event-sync", + [2, 30443, 30446], + "global-error-handler", + [2, 30443, 30448], + "hermes", + [2, 30443, 1577], + [2, 30443, 30451], + "unhandled-rejection", + "iserror", + "react-syntax-highlighter", + [2, 30457, 30460], + "bugsnag", + "stability", + [3, 30375, 17], + "@enact/webos", + [2, 30875, 4000], + "croll-area", + "overlays", + "at-rules", + "@ionic/angular", + [2, 30415, 17966], + "@keyframes", + "@counter-style", + "@devtools-ds/object-inspector", + [2, 4807, 30453], + [2, 30475, 30476], + "@aw-web-design/x-default-browser", + "@fal-works/esbuild-plugin-global-externals", + "flexbugs", + [0, 4483, 1177, 1984, 1894, 91, 4874, 1953, 7677, 1982, 1895, 1011, 1009], + [1, 2343, 30482], + [3, 659, 18], + "nobis-nostrum-nam", + "@skylernpm/hic-inventore-dolores", + [3, 3616, 9], + "postcss-less", + "tyl", + "postcss-styl", + [0, 30490, 30492, 30497, 34352], + "quickapp", + "PHP", + "sss", + "convex", + [3, 29658, 18, 8], + [2, 30502, 27421, 30606], + "world-countries", + [0, 1437, 3074, 3714, 4361], + "image-set", + [0, 2228, 2240, 2247, 2316, 1906], + [2, 2662, 30554], + "@eggjs/oxlint-config", + "@vercel/e", + "mock-spawn", + [0, 21779, 8221, 13814, 15344, 158, 6707, 3178], + "node modules", + [3, 31793, 24, 5], + [1, 2343, 30524], + [2, 30503, 30515], + [3, 30477, 11], + [3, 30489, 12], + "postcssrc", + ".config.js", + [2, 3561, 30505], + "@recharts/devtools", + "motion-dom", + [2, 30510, 186], + "motion-u", + "-snapshot", + "midas", + [3, 3591, 9], + "ark-", + "y-codes", + "theme-class", + [2, 30514, 30516], + [2, 30513, 30517], + "hort", + [2, 3677, 30519], + [2, 1172, 30522], + [3, 5558, 22, 6], + [2, 30560, 6802], + [0, 30525, 30526, 30189, 2523], + [0, 668, 8712, 4090], + [0, 1192, 91, 5087, 4874, 28455, 28574], + [2, 30546, 30547, 3966], + [1, 2343, 30549], + [2, 30530, 30537], + [3, 30868, 11], + "cssnano-", + [2, 30531, 594], + [2, 30534, 11504], + "@codecov/", + [2, 30536, 6579], + [3, 1300, 12], + "silent", + "expressots", + "font-f", + "clean-architecture", + "font-family", + "font-weight", + [2, 30544, 30545], + [3, 4526, 12], + "ramework", + [3, 31198, 25], + "particles-", + "desm", + [0, 30550, 30555, 30556, 2523], + [0, 1169], + [2, 41, 30552], + "pro-components", + [2, 5557, 3514], + "node16", + [0, 3421, 1429, 4493, 2899, 4039, 2026, 4474, 91, 4856, 4874, 6503, 1151, 6494, 8648], + [0, 6653, 2275, 5472, 6969, 5982, 7320, 11346, 3541, 1169], + [1, 2343, 30580], + "esc", + [2, 7632, 30558], + [3, 30501, 14], + "gulp-better-rollup", + [2, 30560, 1460], + "Leaflet", + "Maps", + "Gesture", + "Handling", + "two", + "fingers", + [2, 30571, 30572], + [2, 3976, 30573], + "world", + [3, 29868, 24, 3], + "anitize", + [2, 30571, 30578], + [3, 220, 19], + [2, 4026, 3639], + [2, 30575, 30576], + [3, 29963, 27, 3], + "atrules", + [0, 30596, 30597, 2514, 2523], + "children", + "nestings", + "@anthropic-ai/sdk", + "@azure-rest/ai-inference", + [2, 959, 30586], + "vue-virtual", + [2, 209, 3376], + [3, 30402, 16], + [2, 30588, 4298], + [2, 2574, 3375], + "world-iso-codes", + [2, 964, 188], + [2, 30599, 29842], + "normalizes", + "fixes", + [0, 1112, 1415, 16230, 24324, 36538, 30169, 30023, 3530, 28865, 29444, 4135, 26379, 27921, 4459, 33251, 24214], + [ + 0, 33043, 29170, 29455, 29458, 29465, 4874, 20374, 5254, 29891, 29466, 33253, 7677, 23203, 10984, 19839, 1680, + 1177, 20044, 16860, 3144, 3749, 15450, 1894, 23535, 30234, 24181, 91, 29469, 30908, 28797, 29470, 1983, 1984 + ], + [1, 2343, 30601], + "world-", + [2, 30613, 1460], + [0, 30605, 30608, 30611, 2537], + "@cfworker/json-schema", + "@clerk/localizations", + "@ark/attest", + [0, 1676, 1679, 2151, 2212, 17450, 4400], + "non-corrupti", + "admin-lte", + [0, 5245, 29493, 4864, 1429, 1177, 2899], + "@clerk/nextjs", + "@clerk/themes", + [0, 1764, 7682, 26965, 3428, 2090, 27, 1002, 1965, 5995], + "backendless", + [3, 30593, 18], + "to-valid-identifier", + [1, 2343, 30626], + "@astrojs/mdx", + [2, 30618, 30619], + [3, 28058, 16], + "tro", + [2, 3704, 34683], + [2, 30625, 3286], + [2, 30623, 9872], + "control-", + "smartbanner.js", + [3, 2635, 14], + [0, 0, 30627, 30780, 2537], + [0, 8648, 4874, 4880, 34737, 1894, 89, 3824, 7671, 91], + [2, 30612, 30665], + "cascade-layers", + [2, 216, 30629], + [3, 30630, 19], + [3, 3569, 13], + [2, 30631, 30632], + [3, 30633, 24], + "mix-function", + [2, 30634, 30635], + [3, 30633, 20], + "alt-text", + [2, 12009, 30638], + [2, 30637, 30639], + [3, 28688, 12], + [2, 30641, 5746], + [2, 216, 30642], + "ormat-", + [2, 30644, 4798], + [2, 30539, 30645], + [2, 216, 30646], + "gamut-mapping", + [2, 216, 30648], + [3, 30649, 19], + "radients-interpolation-method", + [2, 30650, 30651], + "hwb-function", + [2, 216, 30653], + [3, 215, 19], + "c-unit", + [2, 30655, 30656], + [2, 30655, 30352], + "light-", + "dark-function", + [2, 30659, 30660], + [2, 216, 30661], + [3, 30662, 19], + "ogical-", + "-request", + [2, 30683, 31073], + "-and-clear", + [2, 14639, 30667], + [2, 30664, 30668], + [2, 30663, 30669], + [3, 30670, 26], + "overflow", + [2, 30671, 30672], + [3, 30673, 30], + "behavior", + [2, 11262, 30675], + [2, 30674, 30676], + [2, 30671, 24800], + "viewport-", + "units", + [2, 30679, 30680], + [2, 30671, 30681], + [3, 30628, 13], + [2, 30767, 33380], + "media-minmax", + [2, 216, 30685], + [3, 30686, 24], + "-aspect-ratio-number-values", + [2, 30430, 30688], + [2, 30687, 30689], + [2, 30695, 10740, 4978], + "nested-calc", + [2, 216, 30692], + [3, 30693, 19], + [3, 30628, 12], + "bannerize", + [2, 31495, 31502], + "play-values", + [2, 29577, 30698], + [2, 3646, 30699], + [2, 30694, 30700], + "oklab-function", + [2, 216, 30702], + "relative-", + "yntax", + "color-syntax", + [2, 30704, 30706], + [2, 216, 30707], + "scope-", + "pseudo-class", + [2, 30709, 30710], + [2, 216, 30711], + [3, 30712, 19], + "tepped-value-functions", + [2, 30713, 30714], + [3, 70, 7], + [3, 5845, 9], + [2, 7854, 30717], + [2, 30716, 30718], + [2, 28533, 30719], + [2, 216, 30720], + [3, 30721, 19], + "rigonometric-functions", + [2, 30722, 30723], + [2, 216, 10760], + "css-b", + "lank-pseudo", + [2, 30726, 30727], + "css-h", + [2, 30612, 33812], + "zarm", + "as-pseudo", + [2, 30729, 30732], + "css-pr", + "efers-color-scheme", + [2, 30734, 30735], + [2, 1007, 30738], + [3, 13069, 23, 4], + "postcss-clamp", + [3, 3591, 10], + "r-pseudo-class", + [2, 30740, 30741], + "ouble-position-gradients", + [2, 30513, 30743], + [3, 4791, 14], + "within", + [2, 30745, 30746], + "gap-properties", + [2, 3562, 30748], + "ab-function", + [2, 30478, 30750], + [3, 3616, 10], + "gical", + [2, 30752, 30753], + [3, 3664, 9], + "pacity-percentage", + [2, 30755, 30756], + "verflow-shorthand", + [2, 30755, 30758], + "age-break", + [2, 6423, 30760], + [2, 30764, 30766], + "postcss-place", + [3, 3710, 17], + "lists", + "h", + "@biomejs/", + "playbook-builder", + "algo", + [2, 444, 30771], + "-interactions", + [2, 30773, 89], + [3, 29959, 13], + "@zarm-design/bem", + [2, 3677, 30705], + [2, 30777, 45], + [3, 30774, 13], + "ahooks", + "better-scroll", + [0, 89, 586, 11000, 26264, 6458], + "hermes-compiler", + [1, 2343, 30791], + [2, 30777, 200], + "@oxc-project/runtime", + "zarm-ui", + "zarm-mobile", + [2, 30790, 553], + [2, 20561, 30789], + "render-stream", + [3, 30784, 13], + [0, 30793, 0, 30799, 2523], + "@oxc-node/cli", + [0, 1687, 5303, 1459, 6501, 182, 148, 164, 167, 29468, 187, 153, 191, 28332, 15690, 28361], + "oxc-parser", + [2, 30796, 30797], + "@iconify", + "/utils", + [2, 3882, 11245], + [ + 0, 28407, 1459, 6094, 28416, 28417, 2585, 28442, 18241, 6038, 6110, 1936, 6138, 6139, 6142, 6144, 6145, 20863, + 14600, 5130 + ], + [1, 2343, 30801], + [0, 0, 30812, 30825, 2537], + "@enact/i18n", + [2, 30804, 30232], + [3, 907, 8], + "doublylinked", + "lightning", + "-pool", + [2, 30806, 30807], + "ilib", + "-bytea", + [2, 25638, 30810], + [0, 1192, 1177, 4042, 4468, 1894, 91, 5087, 1895, 1955, 2780, 1011, 1009], + "power-tasks", + "@cyntler/react-doc-viewer", + "putil-", + [2, 30815, 19138], + "varhelpers", + [2, 30815, 30817], + "@enact/docs-utils", + [2, 30405, 30821], + "-test-utils", + [2, 18576, 30823], + "nact-proxy", + "@fal-ai/client", + [0, 31512, 32054, 35062, 35060, 20986, 4453, 5284, 91, 89, 188, 3709, 23332], + [2, 22180, 591], + [1, 2343, 30836], + [2, 1962, 30830], + "titanium", + "dos-detector", + "ed-queue", + "-ended-queue", + [2, 4420, 30832], + [2, 11344, 977], + "tsm", + [0, 30846, 30863, 30865, 2443], + "level-codec", + "write-stream", + [2, 25982, 30838], + "ltgt", + "bundle-size", + "spark-md5", + "vuvuzela", + "rolldown-", + "react select", + [0, 29178, 3744, 3911], + "react dropdown", + [2, 30852, 30856], + "empower", + [2, 3696, 12168], + "universal-", + "accessib", + "strict-equal", + [2, 1683, 30853], + [2, 30851, 30854], + "le react select", + "dereserve", + "accessible", + "licensify", + [3, 21510, 14], + "ilterify", + [2, 30860, 30861], + [ + 0, 48, 53, 68, 61, 71, 73, 76, 14039, 78, 83, 87, 90, 97, 966, 968, 972, 1195, 1593, 1610, 1177, 1879, 1895, + 1938, 1947, 1955, 1959, 1192, 2780, 2843, 3697, 1894, 89, 3824, 2924, 4676, 4677, 4681 + ], + "jsx-async-runtime", + [0, 89, 6071, 7521, 5128], + "@formkit/auto-animate", + [2, 8293, 181], + "@reporters/github", + "@apm-js-collab/tracing-hooks", + "tidev", + "iphone", + "precommit", + [2, 5186, 2203], + [2, 5928, 3717, 2389], + "react-load", + "combine-promises", + "@actions/github", + [2, 20201, 1172], + "@actions/glob", + [2, 19849, 3583], + [2, 1252, 30880], + [2, 20201, 2942], + "errorstacks", + "-sinon", + [2, 2878, 30884], + "-display-", + "@google/genai", + "kolorist", + "oxlint", + [2, 30893, 30894], + "virtual dom", + "dom diff", + [3, 30878, 13], + "undler", + [2, 3886, 1541], + [2, 30897, 30898], + [3, 38298, 13], + "dx-loader", + [2, 32359, 13369], + [2, 30901, 7020], + [3, 30899, 18], + [2, 30459, 30903], + "-ssr-addon-v5-slorber", + [3, 18018, 13], + [2, 30904, 3642], + "@huggingface/inference", + "jest-l", + [2, 30909, 166], + "unplugin-a", + [1, 2343, 30925], + "ight-runner", + [2, 30907, 30911], + [2, 35506, 30914], + "tect-port", + [2, 30916, 30917], + [3, 12312, 18], + "shoehorn", + [3, 2954, 10], + [2, 30923, 1541], + "lugin-pug", + [2, 30918, 30920], + [2, 5334, 30921], + [3, 4887, 20], + [3, 3703, 15], + [0, 0, 12112, 30927, 2523], + "@nestjsx/crud", + [0, 2070, 1108, 6961, 57, 29617, 4643], + [2, 206, 31196], + [2, 30930, 32550], + "@vercel/b", + [1, 2343, 30933], + [2, 18420, 8162], + [0, 30934, 0, 30936, 2523], + [0, 1459, 16485, 182, 28912, 148, 187, 153, 28332, 15690, 28361, 146, 28913, 15716, 29131, 29495], + "parcel-bundler", + [ + 0, 28407, 1459, 6094, 28416, 28417, 2585, 28442, 18241, 6038, 6110, 1936, 6138, 6139, 6142, 6144, 6145, 20863, + 5130 + ], + "Vue", + [1, 2343, 30945], + "@zoroaster/assert", + "glob-fs", + [2, 30942, 10098], + [3, 30939, 11], + "unstyled", + "alamode", + [0, 0, 2667, 31019, 4139], + "humanized", + "si", + "locale", + "@a-la/fixture-alamode", + "localized", + [2, 30952, 1172], + [3, 30949, 14], + "@artdeco/clean-stack", + "@artdeco/erte", + "@artdeco/", + "renderkid", + [2, 30971, 4521], + "jitter", + [2, 30989, 186], + "exception", + [2, 30955, 30962], + "scripts.json", + [2, 30926, 30665], + [2, 30965, 614], + "@nestjsx/", + "@depack/render", + "crud", + "crud-generator", + "frameworks", + "parse-ms", + [3, 30963, 14], + "@netlify/framework-info", + "@wrote/exists", + "milliseconds", + "period", + "@wrote/rm", + [2, 30942, 6696], + "@zmotivat0r/o0", + "@pothos/core", + [2, 30942, 553], + "mercurial", + "hg", + "vcs", + "argufy", + "catchment", + "p-filter", + "p-locate", + "documentary", + "unplugin-u", + [2, 5313, 6355], + [2, 15658, 30992], + "-integration", + "npmjs", + "@pri", + "sma/engines", + [2, 30994, 30995], + "gatsby", + "hugo", + "netlify", + "ts-pattern", + [2, 32976, 33011], + "global-dirs", + "erotic", + "line-replace", + "@prisma/", + [2, 31005, 1676], + [2, 13403, 31016], + "xdg-app-paths", + [2, 31005, 5576], + "studio", + [2, 31005, 31010], + "migrate", + [2, 31005, 31012], + "internals", + [2, 31005, 31014], + "rtdeco", + "point-client", + [2, 4354, 31017], + [ + 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 8622, 1836, 8623, 1179, 8624, 6847, 8625, 2720, 8626, 8628, 5284, + 4403, 202, 6710, 3741, 8630, 3742, 8631, 3925, 8632, 8633, 4989, 2184, 8634, 7009, 6621, 553, 91, 181, 8635, + 4758, 8636 + ], + [1, 2343, 31082], + [2, 31514, 31516], + "fetch-engine", + [2, 31005, 31022], + "makepromise", + "get-platform", + [2, 31005, 31025], + [2, 31011, 2995], + "@prisma/ge", + "nerat", + "or-helper", + [2, 31029, 31030], + [2, 31028, 31031], + "promto", + "ORM", + "Prisma", + "reloquent", + "Prisma CLI", + "prisma2", + "JS", + "TS", + "SQL", + "SQLite", + "Postgres", + "core-js-pure", + "PostgreSQL", + "CockroachDB", + "MySQL", + "MariaDB", + "MSSQL", + "SQL Server", + "SQLServer", + "MongoDB", + [2, 32483, 13083], + "jest-location-mock", + [2, 27845, 31056], + "dule-alias", + [2, 1464, 31059], + "danger", + "-serve", + "spawncommand", + "docdash", + "hotreload", + "gulp-terser", + "@strapi/strapi", + "temp-context", + "webfont", + "usually", + "yarn-s", + [2, 31070, 11017], + "@pothos/", + [2, 31084, 31085], + [3, 815, 8], + "t-client", + [2, 31072, 31073], + "URIjs", + "pothos", + "IDE", + "svn", + "suggestions", + "intellisense", + "tagged-tag", + [0, 31083, 31199, 31215, 2537], + [0, 29692, 1079, 1676, 3310], + [3, 8998, 11], + "assword", + "@svgr/hast-util-to-babel-ast", + [2, 31104, 31682], + [2, 31089, 1541], + "@epic-web/", + "yalc", + [2, 31092, 364], + "@strapi/", + "@strapi/i18n", + "@strapi/admin", + [2, 31092, 1823], + [2, 31092, 553], + [2, 31092, 594], + [2, 31092, 2942], + [2, 31100, 184], + "@strapi/u", + [2, 31102, 1803], + [3, 28426, 12], + "zshy", + "@types/so", + [2, 31092, 18035], + [2, 31107, 31108], + "@strapi/c", + "loud-cli", + [2, 31092, 5701], + "get-latest-version", + [2, 31112, 31113], + "@strapi/p", + "ermissions", + [2, 31115, 31116], + [3, 31105, 12], + "-transfer", + [2, 31118, 31119], + "@strapi/co", + "ntent-manager", + [2, 31121, 21945], + [3, 31117, 16], + "customize", + [2, 31092, 31124], + "review-workflows", + [2, 31096, 31126], + "cript-utils", + [2, 31121, 31128], + "type-builder", + "interact", + "css-parser", + [2, 31132, 31133], + "@strapi/t", + "s-zen", + [2, 19502, 31137], + "uglifyify", + "uglifyjs", + "ustom", + [2, 4807, 4684], + "css-ast", + "strapi", + "cmf", + "alpha-sort", + "vent-", + [2, 31143, 2618], + [2, 2621, 31144], + [2, 31151, 5130], + "mdast-zone", + [2, 5967, 2619], + "svg-e", + [2, 31149, 31144], + [3, 17944, 19], + "aria", + "admin panel", + "koajs", + "jam", + "graphqL", + "@protobufjs/aspromise", + [3, 31157, 12], + [2, 31158, 14357], + [2, 31158, 5061], + [2, 31158, 2016], + [2, 31158, 1612], + [3, 31162, 13], + "loat", + [2, 31163, 31164], + [2, 31158, 8625], + [2, 31158, 3403], + [3, 31167, 13], + [2, 31168, 25200], + [2, 31158, 4577], + "infrastructure", + [2, 13888, 4719], + "semver-tags", + [2, 10617, 31173], + "self hosted", + "lernajs", + "css-tools", + "@icons-pack/react-simple-icons", + "@khmyznikov/pwa-install", + [2, 25885, 24348], + "wd2", + "jasminewd2", + "-js-extender", + [2, 11132, 31183], + "webdriver-", + [2, 31185, 10057], + "snake-case", + [2, 23689, 31181], + "ang-format", + [2, 21680, 31189], + "natives", + [3, 19209, 11], + [2, 31192, 591], + [2, 4491, 31193], + "vrsource-tslint-rules", + "syntax-patches-for-csstree", + "base-driver", + [2, 31228, 29677, 31230], + [0, 5245, 4874, 5542, 29696], + [2, 31203, 31204], + [3, 27731, 11], + [2, 31201, 57], + [3, 1006, 11], + "averse", + "@types/args", + [2, 31208, 57], + "squid", + [3, 34785, 11], + "privoxy", + "mod_proxy", + "via", + "x-forwarded-for", + "@express", + "-zod-api/zod-plugin", + [0, 32859, 8549, 5592, 5576, 5130, 6082, 28450], + [1, 2343, 31245], + "p3-linear", + "fill-keys", + "not-found-error", + [2, 5223, 31219], + "MCP", + [3, 8648, 12], + "hello-world", + [2, 13669, 31223], + [2, 31226, 28613], + [3, 2670, 12], + [3, 33464, 11], + [3, 1004, 13], + "cp-sugar", + "-external-push", + [2, 31228, 31241], + "-status", + [2, 16238, 31232], + "l-ct-react", + [2, 31236, 1983], + [3, 11282, 19], + [2, 11147, 1983], + [2, 12042, 4406], + [3, 31198, 24], + "pug-", + "move-base", + "pug-code-gen", + "pug-filters", + [2, 31228, 31261], + [0, 26964, 0, 31273, 2537], + "pug-lexer", + "@langchain/community", + "pug-linker", + "pug-load", + "pug-parser", + "pug-runtime", + "strip-co", + [2, 31252, 19490], + [2, 31240, 31253], + "@lobechat/agent-runtime", + [3, 24593, 18], + "down-it", + [2, 31256, 31257], + [2, 24585, 4535], + [3, 31231, 17], + "shape-emoji", + [2, 31228, 31271], + [2, 31995, 5257], + [2, 32038, 31267], + "bail", + "tap-bail", + " tools", + [2, 31269, 31270], + [3, 31238, 12], + "shape", + "updater-color", + [2, 31281, 26543], + [ + 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, + 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, + 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, + 12094, 31238 + ], + [1, 2343, 31309], + [2, 33763, 31291], + [3, 31262, 20], + "idn", + "idna", + "dns", + "domain", + [3, 31262, 21], + [2, 31283, 31284], + [3, 31272, 22], + "ut-modes", + "-bidi", + [2, 7001, 31285], + [3, 11071, 14], + [2, 17414, 31287], + "@uppy/companion", + [2, 31313, 364], + "detect-agent", + [2, 5176, 31293], + "remapping", + [2, 31295, 13901], + [3, 33831, 13], + [2, 31298, 31299], + "purge", + [3, 28384, 12], + "presigned-post", + [2, 31301, 31302], + [3, 30257, 11], + "erceptor", + [2, 2032, 31304], + "prom-bundle", + "grant", + "tus-js-client", + "qr code", + [2, 2662, 1278], + [0, 26964, 0, 31273, 2523], + "resumable uploads", + "tus", + "dropbox", + "@vuepress/", + [2, 21282, 31372], + [2, 31316, 31324], + "@radix-ui/", + "@browserify/envify", + [3, 31317, 12], + [2, 31318, 31135], + "common-s", + "hakeify", + [2, 31320, 31321], + "verr", + "primitive", + "webpack-chain", + "ide-mistake", + [2, 31323, 31326], + [2, 15053, 31327], + "unassertify", + [2, 31355, 31356], + [2, 31313, 553], + [2, 31313, 1783], + "vue-server-renderer", + [2, 31338, 31342], + "decode-", + [2, 14649, 4627], + [2, 31335, 31336], + [3, 13063, 12], + "filter-obj", + "-on-first", + [2, 4237, 31340], + "reset-app", + [2, 31313, 31346], + [3, 5422, 9], + [2, 7193, 3634], + "shared-utils", + [2, 31332, 2091], + [2, 31349, 3111], + [3, 21294, 16], + "retape", + [2, 19469, 31352], + [3, 32087, 20, 4], + [2, 21282, 31354], + "last-updated", + [3, 28754, 17], + "ompose-refs", + "tap-esm", + [2, 31359, 31604], + [3, 31330, 18], + "synchronous", + [2, 28756, 8191], + [2, 31363, 31364], + [3, 31361, 17], + "rimitive", + "FIFO", + "lifo", + "LIFO", + [2, 28756, 32760], + "queue js", + "job queue", + "job ", + "active-header-links", + "scheduling", + [2, 31371, 31373], + [2, 21282, 3412], + "task queue", + "ordered", + [2, 31380, 31382], + "linked list", + [3, 31368, 20], + "dequeue", + "escape-keydown", + "assistant-stream", + [2, 31385, 6599], + "assistant-", + [2, 31418, 31420], + [1, 2343, 31476], + "parchment", + [3, 15562, 11], + [2, 31395, 31396], + [3, 12455, 16], + [2, 31391, 1722], + [2, 17612, 2924], + [2, 5197, 4408], + [3, 1694, 14], + "x-buildutils", + "@types/sharp", + "radix-ui", + "ai-sdk", + "shadcn", + "fuzzysort", + "grunt-search", + [3, 19622, 19], + [2, 31403, 3595], + "@qunitjs/browserstack-runner", + "assistant", + "openai", + "ai", + "chatbot", + "ai-chat", + "dom-e", + [2, 15588, 6863], + [2, 31411, 31412], + [2, 31415, 31416], + [3, 6493, 9], + "acritics", + "@types/qunit", + [3, 31331, 11], + "qunit-plugin", + "heme-default", + "@walletconnect/browser-utils", + "ai-chatbot", + "ai-assistant", + "ai-copilot", + [2, 31349, 31428], + "exists-stat", + "js-reporters", + [3, 15580, 13], + [2, 26353, 8791], + [2, 31436, 31464], + "chatgpt", + "gpt4", + "gpt-4", + [3, 2888, 14], + [2, 31436, 553], + [3, 31421, 15], + "testling", + [2, 31436, 31441], + "AnimationFrame", + [2, 705, 31439], + "safe-json", + [2, 31436, 31443], + "window-getters", + [2, 31450, 6774], + "-export-", + [2, 31445, 14057], + [2, 1205, 31446], + "envvar", + "sanctuary", + [3, 31442, 22], + "-identity", + [2, 31449, 31451], + "xyz", + [2, 6080, 31458], + "@ethersproject/address", + [2, 31457, 25352], + [3, 10408, 17], + "al-ui", + "wallet", + "walletconnect", + "jsonrpc", + "cryptocurrency", + "dapp", + "iso-crypto", + [2, 31436, 31472], + [2, 31467, 31408], + [3, 31454, 15], + [3, 30286, 15], + [2, 31436, 594], + [2, 31436, 1616], + "alc", + "legacy-modal", + [2, 31478, 9962], + "@globalart/nestjs-swagger", + [2, 32811, 32812], + [0, 31481, 0, 7653, 2523], + [2, 31478, 553], + [3, 31465, 22], + "timed-out", + [2, 31478, 594], + [0, 12215, 12219, 1014, 28999, 7406, 7403], + "exceptions", + "sentry", + [3, 15602, 13], + [2, 31499, 31500], + "@graphiql/plugin-doc-explorer", + [1, 2343, 31488], + [0, 31505, 0, 31510, 34352], + [2, 31478, 5576], + [2, 31436, 31491], + "jsonrpc-provider", + [2, 31493, 31494], + [3, 31490, 23], + "http-connection", + [3, 27276, 25], + [2, 31497, 31498], + "ethereum-", + "test-network", + [3, 31438, 16], + "ocket-transport", + [2, 7850, 21497], + [3, 4986, 9], + [2, 2079, 4406], + [2, 11183, 31503], + [0, 29419, 29441, 29454, 29756, 29757, 29766, 29807, 29813], + "father-build", + "@mastra/core", + "rc-test", + [2, 31520, 13927], + [0, 29818, 4270, 29823, 5472, 1973, 29830, 29830, 3857, 89, 5131, 12295, 12296, 5122], + "react-slider", + "slider", + [1, 2343, 31522], + [3, 31027, 15], + [2, 7850, 11512], + "core-licensed", + "wordpress", + "gutenberg", + [2, 14013, 8189], + [3, 1103, 9], + "angular-mocks", + [0, 31529, 0, 31531, 2487], + "graphiql", + "next-router-mock", + [3, 5251, 10], + "ponselike", + [2, 31525, 31526], + "body-scroll-lock", + [0, 2817, 18023, 1125, 1129, 31764, 1122], + "motion-v", + [0, 30999, 28818, 5995, 17978], + [1, 2343, 31546], + "radash", + "@a2a-js/sdk", + "js-tiktoken", + "hono-openapi", + "@ai-sdk/provider", + [2, 31543, 31545], + [3, 2766, 10], + "jasmine-ts", + [2, 13130, 3212], + [3, 3793, 11], + "@ai-sdk/", + [2, 31643, 1623], + "ui-utils", + [0, 0, 31547, 31628, 2523], + [0, 1389, 2665, 4650], + [2, 31537, 31570], + "body scroll", + [2, 31549, 31551], + " lock", + [3, 65, 8], + "react scroll lock", + "react-common", + [2, 31552, 31554], + [3, 31555, 17], + "ponents", + [2, 31556, 31557], + [3, 31555, 14], + [2, 31559, 21189], + [3, 31560, 16], + "oks", + [2, 31561, 31562], + [2, 31559, 14592], + [3, 31553, 12], + "freeze", + "vanilla-js", + "tablet", + "bsl", + "-v5", + [2, 31572, 31582], + "@mastra/", + [2, 1379, 31574], + "node-info", + "@restart/hooks", + "resolve-path", + "@restart/ui", + [2, 3744, 20622], + "unco", + "ntrollable", + [2, 31579, 31580], + "schema-compat", + "ecosystem-react", + [2, 31585, 594], + [3, 31548, 17], + [2, 11484, 31587], + "sole-ui", + "@icon", + "s/material", + [2, 31588, 31589], + [2, 3131, 1512], + "reactcss", + "@types/esm", + "@case/eslint-config", + [2, 31596, 31601], + [3, 29736, 11], + "centered", + [2, 10818, 31597], + [3, 30881, 30], + [2, 31599, 1204], + "up-sync", + "chai-spies", + "jsx-loader", + "ntext", + [2, 3808, 31604], + [3, 3850, 10], + "@types/sane", + "testdom", + "@lukeed/uuid", + [2, 31584, 31570], + "color picker", + "sketch", + [2, 4807, 4547], + "photoshop", + [2, 31616, 5592], + [3, 31573, 14], + [2, 31618, 6893], + [3, 31548, 18], + [2, 31538, 31570], + [3, 2651, 13], + "tags-plugin", + [2, 31620, 31621], + [2, 31626, 6893], + [2, 28010, 1492], + [2, 1585, 31624], + [3, 31610, 24], + "mocha-jshint", + [0, 4384, 2076, 5131, 4453, 2013, 15535], + "@ai-sdk/azure", + [1, 2343, 31641], + [2, 31543, 31407], + "docgen/cli", + [2, 10802, 31632], + [2, 31635, 671], + "@internal/", + [2, 31637, 31638], + [3, 28766, 11], + "ypes-builder", + "@openrouter/ai-sdk-provider", + [2, 1710, 2136], + [0, 31660, 31662, 31663, 34352], + "is-root", + "camelcase-", + [2, 24559, 31675, 31676], + "llm", + "agents", + "vectorstore", + "@react-d", + "nd/invariant", + [2, 31648, 31649], + [3, 31650, 11], + [2, 31651, 4163], + [2, 1199, 17586, 31655], + "dnd-core", + "starts-with", + "embeddings", + "rag", + "evals", + "otel", + [0, 26616, 4391], + "replacement", + [0, 2766, 2297, 2881, 2886, 2898, 28023, 3181, 3758, 4535], + [0, 3113, 26799, 5131, 1388], + [1, 2343, 31672], + [3, 24807, 15], + [2, 31665, 1286], + [3, 8136, 9], + "ctrine", + [2, 31667, 31668], + "html4", + [2, 20245, 16957], + [0, 31679, 31684, 2514, 2537], + [2, 30415, 31678], + [2, 32813, 18502], + "reference-", + "invalid", + "condense-newlines", + "landmark", + [0, 20414, 29996, 17982, 11049, 30043, 30048, 3478, 29457, 3923, 18730, 20423, 30050, 30081, 4729], + [2, 30418, 31681], + "olor-helpers", + "rtablejs", + "attr-accept", + [ + 0, 5526, 5528, 5529, 31674, 826, 30086, 4874, 9241, 20441, 28400, 1540, 21594, 1177, 2078, 2220, 2222, 5560, + 29197, 3697, 3752, 4135, 4193, 4238, 4481, 91, 4548, 28519 + ], + "vue-next", + "file-selector", + "draggable", + [3, 71, 24], + [2, 31688, 14255], + [2, 69, 5721], + [3, 5700, 24], + "ipeline-operator", + [2, 31691, 31692], + "-why", + [2, 10876, 31694], + [2, 18043, 200], + [3, 4676, 9], + "locks", + [2, 31697, 31698], + "drag-and-drop", + "color-name", + [3, 1802, 13], + "kanban", + [2, 32312, 2825], + "anser", + [2, 2769, 2086], + "le-promise", + [2, 6935, 31707], + [1, 2343, 31712], + "redbox", + "crash", + [0, 31714, 31730, 31732, 2443], + "css-mediaquery", + [0, 3749, 3527, 11481, 29170], + [3, 33768, 11], + "react-si", + "de-effect", + [2, 31716, 31717], + "iceworker", + "fl", + [2, 16819, 31720], + "karma-html", + [2, 31722, 2903], + "is-whitespace", + "nfl", + "noscript", + [2, 31729, 33865], + "dashdash", + "@types/ran", + [0, 7812, 30138, 3742, 1984], + "titanium-sdk", + [0, 20001, 671], + [3, 20745, 21], + "jest-preview", + [2, 31395, 4384], + "@polka/send-type", + [2, 31005, 31774], + [1, 2343, 31739], + [0, 31746, 31747, 2514, 2537], + [2, 20413, 1699], + [3, 1845, 22], + [2, 31741, 2855], + "react-mount", + "yarn-", + [2, 31744, 17335], + [0, 58, 1437, 3930, 814, 4747], + [0, 1178, 29847, 29851, 25675, 3758, 3938, 4216, 4255, 4389, 4449], + "csstree", + "decap-cms-backend-aws-cognito-github-proxy", + [2, 9497, 31907], + [3, 3321, 10], + [2, 31751, 2849], + [1, 2343, 31756], + [3, 19812, 19], + [2, 31754, 965], + [0, 31757, 27070, 27064, 2523], + [0, 28326, 2017, 31435, 31469], + [1, 2343, 31761], + "completion", + [2, 31780, 31781], + [0, 0, 0, 31762, 2537], + [0, 30486, 5995, 35981, 7072, 18035, 89], + [1, 2343, 31783], + [2, 31768, 13083], + "viewport", + [3, 15616, 12], + "observer", + [3, 1129, 12], + "lazy load", + "inview", + "useInView", + "useIn", + "terse", + "query-plan-executor", + "decap-cms", + "aws-cognito", + "ctionObserver", + [2, 31773, 31777], + [2, 31772, 31778], + [3, 31749, 19], + "zure", + [2, 31792, 17977], + [0, 0, 0, 31784, 2487], + [0, 1177, 6939, 89, 3878, 27158], + [1, 2343, 31786], + [0, 31801, 31803, 31810, 4139], + "@formatjs/", + "listformat", + [2, 19067, 31788], + [2, 31787, 31789], + [3, 31790, 14], + [3, 31749, 18], + [2, 31792, 31804], + "common-stuff", + [3, 31790, 11], + "cu-messageformat-parser", + [2, 31795, 31796], + [2, 6458, 1671], + [2, 19067, 31798], + [2, 19644, 8982], + [0, 1104, 22972, 1676, 2061, 13896, 1776, 3102, 4449], + "what-the-diff", + [0, 53, 87, 94, 1178, 1429, 1596, 1177, 1922, 2323, 2338, 2384, 2419, 2436, 2463, 2510, 2899, 30496, 3421, 3697], + "git-gateway", + [2, 31813, 6064], + [3, 18229, 15], + "lat-gitignore", + "jsondiffpatch", + "gotrue-js", + [0, 2323, 1776, 18011, 5284, 18444, 1745], + "es-crypto", + "gateway", + [3, 31793, 21], + [3, 19657, 16], + [2, 31814, 2855], + [2, 31813, 620], + [1, 2343, 31818], + [0, 31826, 0, 31829, 2537], + "@nstudio", + [2, 4564, 2618], + [2, 2617, 31820], + [2, 31792, 2658], + [3, 28165, 19, 9], + "hmac256", + "hmac512", + [0, 2714, 31809, 3181, 2867], + [2, 31792, 1973], + "exenv", + [0, 30999, 28818, 5995, 31804, 31812], + "custom-", + [2, 31830, 11513], + [2, 10704, 31831], + "otp-io", + [2, 29956, 4963], + [2, 31836, 31837], + [3, 23664, 13], + "or-js", + "dom7", + [2, 13843, 353], + [2, 1176, 31839], + [2, 14510, 2091], + [2, 22588, 2091], + "diff-reporter", + [2, 13872, 31843], + [2, 3024, 6754], + [2, 31848, 31850], + [2, 9944, 7227], + [3, 29951, 21], + "tween", + "elpers", + "napa", + "runstorm", + [1, 2343, 31854], + [0, 31909, 31916, 2514, 2537], + [2, 32904, 158], + "nullthrows", + "@tiptap/core", + "metro-r", + [2, 31858, 96], + "metro-", + [2, 31860, 4227], + "s-runtime", + [2, 6971, 31862], + [2, 5237, 31863], + [3, 5079, 13], + "/codegen", + [2, 31865, 31866], + [3, 31867, 14], + "medium-zoom", + "js-polyfills", + [2, 31868, 31870], + "tinydate", + "tweezer.js", + [2, 8603, 1111], + "le-plugin", + [2, 3630, 31875], + [2, 31868, 31876], + "assets-", + [2, 31878, 29179], + [2, 31868, 31879], + [3, 5059, 11], + "olors", + [2, 31881, 31882], + [2, 31868, 31883], + "@jest/c", + "reate-c", + "-key-", + [2, 31887, 3046], + [2, 6990, 31888], + [2, 31886, 31889], + [2, 31885, 31890], + [2, 3912, 5959], + [2, 31868, 31892], + [3, 31867, 16], + "mmunity-cli-plugin", + [2, 31894, 31895], + [2, 31898, 4333], + [3, 24539, 13], + [2, 17304, 31900], + "laywright", + [2, 32412, 15001], + [2, 31908, 7188, 32485], + "creator", + [2, 10735, 5130], + "mobile-", + [2, 31905, 5001], + "ttlcache", + "@tiptap/", + [0, 30868, 1414, 2020, 2105, 2070, 4745], + "cp-file", + [2, 17964, 31913], + [2, 5063, 18324], + [3, 31333, 16, 3], + "keychain", + "yargonaut", + [0, 20454, 36559, 30529, 826, 4874, 30548, 4135, 1177, 29197, 91], + [2, 36270, 31918], + "s-test", + [2, 31924, 31925], + "@entypo-icons/core", + "ocial-buttons", + [2, 4910, 31921], + "evil-icons", + [3, 15277, 15], + "xecutable", + "feather-icons", + [1, 2343, 31933], + "fontisto", + "oslllo-svg-fixer", + "epub2", + "line-icons", + [2, 4182, 31931], + [0, 0, 21592, 31936, 2399], + "svg2ttf", + "svgicons2svgfont", + [0, 12479, 2947, 7193, 26421, 27968, 2100], + "osx", + [1, 2343, 31941], + "ssr-window", + "@pinia/colada", + [0, 0, 31946, 31981, 2399], + "@cmfcmf/docusaurus-search-local", + [3, 3911, 11], + "form-hmr", + [2, 31943, 31944], + [0, 4493, 32977], + [2, 31951, 31960, 31962], + "currency", + "number-", + [2, 31949, 1671], + [3, 27276, 15], + [2, 33571, 89], + [2, 31954, 31957], + [3, 7628, 10], + "hijack", + [2, 4013, 31955], + "heck", + "onclick", + "outside", + "classic-", + [2, 32028, 1745], + "build-app-blueprint", + [2, 31968, 31971], + [2, 812, 12444], + "t-flow", + [2, 17375, 31965], + "hermes-eslint", + [3, 31947, 30], + "array-hyper-unique", + "crlf-normalize", + "ddon-blueprint", + "book", + "books", + "chapter", + "comic", + "epub-maker", + "epub-maker2", + "node-novel", + "novel", + "volume", + [0, 188, 4646, 1542, 32977, 6533, 3212, 5472], + "matchmedia", + [2, 31982, 3766], + [1, 2343, 32268], + "yphenate-style-name", + [2, 6495, 31985], + "tch-", + [2, 31987, 11034], + [2, 18655, 31988], + [3, 31989, 12], + "mediaquery", + [2, 31990, 31991], + "-media-mock", + [2, 3529, 31993], + "@lobechat/", + [3, 6415, 10], + [2, 31996, 3582], + "escaping", + "respond", + "goat", + "matchMedia", + "🐐", + [2, 32004, 32005], + [3, 31263, 13], + "text-engine", + "color-logger", + "ice-cap", + [2, 31995, 18035], + "esdoc-importpath-plugin", + [2, 31995, 1807, 32030], + "ECMAScript6", + [3, 6608, 10], + [2, 32012, 32014], + "2015", + "ECMAScript7", + [2, 32017, 6893], + [3, 32013, 13], + "ECMAScript8", + [2, 32017, 6836], + [2, 3944, 8253], + "k-monitor", + [2, 4117, 32021], + [2, 32020, 32022], + [3, 32023, 15], + "log-monitor", + [2, 32024, 32025], + "proposal", + [3, 19209, 12], + "http-graceful-shutdown", + "client-ipc", + [2, 32032, 32033], + [3, 32010, 19], + "server-ipc", + [2, 31995, 2092, 591], + [2, 31995, 32036], + "model-runtime", + "mdc", + "developer", + "combobox", + "multiselect", + [2, 31995, 3742], + [2, 31995, 594], + [2, 31995, 32044], + "web-crawler", + [2, 32047, 13538], + "json2mq", + [3, 1841, 9], + "-apps", + [2, 21340, 32048], + "-carousel", + [2, 11167, 32050], + "why-did-you-update", + [2, 32057, 32058], + "carousel", + "Image slider", + "orbit", + [3, 1841, 12], + "rts", + [2, 1841, 6324, 4978], + [2, 32074, 32082], + "@tippyjs/react", + "@vxna/mini-html-webpack-template", + "common-dir", + [2, 1861, 3427], + "name-p", + [2, 32065, 84], + [2, 18977, 32066], + "glogg", + [3, 26921, 11], + [2, 32069, 1646], + "jss", + "jss-plugin-camel-case", + [3, 32072, 12], + [3, 32059, 20], + "ompose", + [2, 32073, 32075], + [3, 32072, 11], + "default-", + "default-unit", + [2, 32077, 32079], + [2, 32077, 2202], + "s-gateway", + "isolate", + [2, 32077, 32083], + [2, 32077, 3639], + "listify", + [2, 12171, 2651], + "q-i", + "qss", + "-annotation-resolver", + [2, 3822, 32090], + [3, 32091, 13], + "-handler", + [2, 4904, 32093], + [2, 32092, 32094], + [2, 32047, 6038], + "react-group", + [2, 4287, 1928], + "type-detect", + [2, 32047, 45], + "inter-element", + "@types/buble", + "py-webpack-plugin", + [2, 4860, 32103], + "@types/esc", + "odegen", + [2, 32105, 32106], + "h-sum", + [2, 12395, 32108], + "@types/ke", + "ymirror", + [2, 32110, 32111], + [3, 23829, 17], + [2, 32113, 3119], + [2, 27479, 4408], + [2, 13419, 32115], + [3, 12290, 12], + [2, 32117, 13735], + [3, 8157, 15], + [2, 32119, 5331], + "deabsdeep", + "white-space", + "deepfreeze", + "dog-names", + "amia", + [2, 22060, 32125], + [2, 32047, 32128], + "market-sdk", + "keymirror", + [2, 4293, 6987], + "@lobehub/tts", + "tts", + "@lobehub/ui", + "@neondatabase/serverless", + "@next/third-parties", + "@react-spring/web", + "jest-pre", + [2, 29611, 32139], + "user-require-helper", + "@serwist/next", + " vector graphics", + [2, 24090, 32141], + "tagname", + [2, 24116, 7466, 32165], + "svginjector", + "@t3-oss/env-nextjs", + "@trpc/client", + "@trpc/next", + "@trpc/react-query", + [3, 32029, 17, 5], + "TapEventPlugin", + "300ms", + "http-shutdown", + "http-terminate", + "prometheus", + [2, 33763, 13538], + [2, 30495, 32158], + "dge-config", + [2, 36840, 32160], + "ctions", + [2, 32163, 32168], + [3, 7214, 13], + "@vercel/s", + "icss", + "lement", + [2, 24116, 32179], + "@4tw/cypress-drag-drop", + "peed-insights", + "@xterm/xterm", + [2, 4609, 2759], + "brotli-wasm", + "alert", + [2, 29706, 32174], + "-and-timezones", + "dexie", + "drizzle-orm", + "commoner", + [3, 10755, 11], + "hydrate", + "coverify", + "es3ify", + "infima", + "grunt-jest", + "jasmine-t", + "apreporter", + [2, 32184, 32185], + "drizzle-zod", + "populist", + "drizzle-", + "gpt-tokenizer", + [2, 32192, 32193], + "inferno-hy", + "perscript", + [2, 23910, 13494, 32197], + [2, 9944, 9847], + [2, 9944, 591], + "-to-backend", + "js-sha256", + "vnode", + "createVNode", + [2, 32237, 1098], + [2, 14040, 1276], + [3, 1898, 19], + "lay", + [2, 1962, 32204], + [2, 2783, 3758], + [3, 15568, 16], + [2, 1781, 32212], + "scrolling", + "infinite", + "fixed", + [3, 31752, 17, 3], + "langchain", + "gulp-rtlcss", + [2, 26708, 32182], + "langfuse", + [2, 5223, 32178], + [2, 1861, 32217], + "dark mode", + [2, 32216, 1732], + "lucide-react", + [2, 32223, 32224], + [3, 3120, 12], + "txt", + "react-popper", + "bootswatch", + "docstrap", + "storysource", + [2, 10818, 32228], + "model-bank", + "customize-cra", + [2, 32234, 32235], + "holderjs", + "modern-s", + "creenshot", + "react-prism", + [3, 34791, 12], + "logging-helpers", + "next-mdx-remote", + "nextjs-toploader", + "nuqs", + "officeparser", + [2, 32244, 1098], + [3, 33256, 22], + "github-files-fetcher", + "oidc-provider", + "ollama", + [2, 7719, 1612], + "partial-json", + [2, 3502, 33498], + "@stitches/react", + "animate-sass", + [2, 3562, 32254], + "trolling", + [2, 32256, 32257], + [3, 839, 14], + "gr", + [2, 11932, 8861], + "mocha-r", + "eporter", + [2, 32259, 32260], + [2, 4385, 32261], + "pdf-parse", + "preview jest", + [2, 27010, 32290], + "plaiceholder", + "posthog-js", + [0, 0, 32306, 32313, 2537], + "log-utils", + "pwa-install-handler", + "line by line", + "engine-base", + "engine-handlebars", + [2, 32278, 32279], + "lo", + "repl", + "lo-dash", + "react-con", + "fetti", + [2, 32283, 32285], + [2, 4150, 32282], + "-75lb", + "react-la", + [2, 11072, 2731], + "yout-kit", + [3, 19580, 11], + [2, 32286, 2002], + [2, 5237, 57], + "lws-middleware", + "-tagfilter", + "refactoring", + "printing", + [2, 3715, 32292], + [2, 26973, 32308], + "react-pdf", + "react-rnd", + "react-scan", + [2, 32299, 32304], + [3, 3913, 11], + [3, 12133, 19], + "tagfilter", + "prepare", + "dangerous", + "oso", + "react-wrap-balancer", + [0, 1175, 2323, 2332, 30561, 2367, 2459, 2494, 2504, 2510, 2530, 1894, 4045], + [2, 17355, 13771], + [3, 23279, 13], + [2, 4627, 8840], + [2, 3166, 32309], + "mobile-detect", + "composition", + [0, 30563, 30564, 30565, 30566, 30567, 30568, 5131, 9006], + [2, 32315, 32316], + "resolve-a", + "ccept-language", + "rtl-detect", + "lister", + "parse-entities", + "svix", + "tokenx", + "ts-md5", + "@red", + "grunt-jasmine-node", + "@redis/bloom", + "@redis/", + [2, 32326, 5576], + "unstructured-client", + "@redis/json", + [2, 32326, 7193], + "use-merge-value", + "time-series", + [2, 32326, 32332], + "mobilegrade", + [2, 20223, 16460], + "sniff", + "word-extractor", + [2, 32339, 594], + "zustand-", + [1, 2343, 32427], + "@cfaester/enzyme-adapter-react-18", + "ocly/openapi-core", + [2, 32323, 32342], + [2, 32348, 3005], + "nth-child", + "nth", + "rc-hammerjs", + [3, 30906, 13], + [3, 1750, 11], + [2, 1186, 3939], + [2, 32349, 32350], + "theme-redoc", + [2, 32349, 32352], + [2, 32356, 32366], + [3, 8286, 13], + "@lobehub/i", + "heme-common", + [2, 32355, 32357], + [2, 20201, 594], + "is-alphanumerical", + "api-doc", + [3, 32351, 12], + [2, 32362, 10958], + "is-decimal", + "is-hexadecimal", + "18n-cli", + [2, 32047, 671], + "netlify-plugin-cache", + [2, 32370, 553], + [3, 32127, 16], + [2, 32047, 32373], + "cssinjs", + "seo-cli", + [2, 28427, 32375], + [3, 28091, 16, 8], + "just-curry-it", + "reducers", + [2, 17790, 32377], + "@next/eslint-plugin-next", + [2, 16479, 1414], + [3, 1905, 16], + "icorn-camelcase", + [2, 32381, 32382], + [2, 4321, 9776], + [2, 2130, 32384], + "@peculiar/webcrypto", + [2, 16931, 32388], + "roma-js", + "@wdio/selenium-standalone-service", + "babelrc-rollup", + [2, 32398, 32399], + "insert-line", + [2, 5316, 1464], + [2, 3944, 2700], + "queryselector", + "shadowdom", + "rdme", + "@types/cr", + "ypto-js", + "@types/ip", + "tanstack", + [2, 32403, 32404], + "gulp-str", + "eamify", + "rc-tools", + "@redux", + "-saga/core", + [2, 32406, 32407], + [2, 32417, 32419], + "tappable", + [2, 33060, 1501], + [3, 13875, 15], + "lias", + [2, 32412, 32413], + [2, 3807, 32442], + "effects", + "@types/nu", + "side effects", + "meral", + [2, 15461, 32423], + [2, 32422, 364], + "@actions/", + "idc-provider", + "redux-m", + [2, 32424, 18716], + "@types/pg", + [0, 32428, 32472, 2514, 2537], + [0, 30585], + [2, 32430, 32439], + "@types/r", + "ecmarkup", + [2, 32437, 32438], + "gulp-emu", + [3, 2453, 9], + [2, 32434, 2995], + [2, 2505, 4088], + "@readme", + [3, 23709, 18, 8], + "tl-detect", + [2, 5051, 32441], + "ystemjs", + "ful", + [2, 24167, 32455], + "dbdocs", + "dpdm-fast", + [2, 32189, 32451], + "goober", + "jest-esm-jsx-transform", + "parcel-plugin-css-to-string", + "use-throttled-effect", + "dbml-generator", + "abstract", + "hex", + "wai-aria", + "ice-detect", + [2, 32466, 38], + "drizzle-kit", + [2, 1949, 32459], + "dx", + "is-hidden", + "fake-indexeddb", + [2, 9335, 6424], + "just-diff", + "smart-tv", + "smarttv", + [3, 15570, 11], + [2, 3506, 4581], + [2, 3862, 32492], + "mcp-hello-world", + [2, 12285, 2527], + "remark-mdx", + [0, 188, 11018, 30592], + "simple-routing", + [3, 23352, 11], + "mdx-", + "jsx-a", + [2, 32476, 5714], + [2, 32475, 32477], + [2, 8137, 32478], + [2, 8909, 32479], + [2, 32474, 32480], + "serwist", + "snapshot-", + [2, 32483, 1182], + "-bubble-menu", + "vercel-ai", + "nano-equal", + [2, 1849, 32489], + "-fuzzy", + "azure-openai", + "shouldComponentUpdate", + "file-viewer", + [2, 3862, 15571, 32498], + "visual-model", + "stt", + [1, 2343, 32500], + "quicklook", + "-v2", + [2, 3862, 3730], + [0, 0, 32501, 32517, 2487], + [ + 0, 33043, 442, 34111, 30737, 4874, 7677, 22839, 1177, 1895, 1942, 1982, 2807, 25209, 2990, 20085, 1894, 19713, + 30762, 23535, 4131, 1531, 4507, 91, 4523, 1984 + ], + [2, 31995, 32503, 32515], + "observab", + "image-gallery", + "image-viewer", + [2, 32510, 32530], + [2, 32508, 32509], + "vitepress-", + "plugin-group-icons", + [2, 5119, 32511], + "vg", + "issue-", + [2, 32512, 57], + [2, 21520, 22370], + "ility-otel", + [2, 32518, 32526], + [0, 30769, 8893, 7595, 7517, 6564, 7265, 1209, 3776, 7268, 6081, 4799, 553, 91, 4545, 614, 6731, 6435, 594], + [3, 217, 9], + "mock-stdio", + [3, 3998, 15], + "ebpro", + [2, 32520, 32521], + [2, 9785, 24387], + [3, 23523, 21], + [2, 32524, 3874], + "ndicator", + "progressbar", + "distribution", + "indeterminate", + "-charts", + [2, 3862, 32543], + [1, 2343, 32533], + [0, 32534, 32537, 32542, 2487], + [0, 30787, 28465], + [2, 17092, 32536], + "-path", + [0, 11536, 29317, 30792, 8850, 1397, 1556, 2020, 2070, 30794, 3510, 1689, 29444, 4042, 4174, 4227, 91, 8550, 28865], + [2, 32539, 21172], + [3, 5079, 24], + [2, 11147, 970], + [2, 5557, 970], + [0, 6996, 668, 5362, 28865, 4042, 2924], + "youtube-iframe", + [2, 3115, 19101], + "unified-args", + [2, 32563, 5066], + [1, 2343, 32548], + [0, 0, 32549, 32555, 2523], + [0, 442, 7677, 1177, 1938, 1942, 30828, 1964, 1966, 2832, 1531, 30835, 91, 4523, 1983, 1984], + "ackends", + [2, 32904, 990], + "iframe", + [2, 3993, 6424], + "@cacheable/utils", + [0, 21354, 91, 2844, 7020, 7119, 30841, 20179, 7047], + [1, 2343, 32642], + "@apphosting/build", + "@atomico/rollup-plugin-sizes", + "git-branch-is", + "remark-slug", + "react-spring", + [2, 32565, 10896], + [3, 30798, 17], + [2, 32575, 32576], + [3, 32557, 12], + "-isomorphic", + [2, 23276, 32566], + [2, 25131, 32566], + [2, 32570, 32574], + [3, 32041, 11], + "@bedrock-layout/use-forwarded-ref", + "gmail-send", + [2, 4807, 31528], + "ython-interpreter", + [3, 3895, 11], + "-singleton", + "text-hex", + "ssrf-safe-fetch", + [2, 32589, 32623], + [3, 23054, 11], + "ent-config", + [2, 32580, 32581], + "ntributors", + [2, 24218, 32583], + [3, 9343, 15], + "gap", + [2, 32585, 32586], + [3, 9347, 9], + [3, 30640, 22], + "cense", + [2, 32588, 32590], + [3, 23078, 23], + [2, 32592, 10663], + [3, 23082, 24], + [2, 32594, 7210], + [3, 23085, 14], + "get-nonce", + "le-extension", + [2, 32596, 32598], + [3, 23085, 18], + [2, 32600, 23076], + "rst-", + "heading-", + [2, 32603, 2970], + [2, 32602, 32604], + [2, 32596, 32605], + [3, 23092, 13], + [2, 9398, 590], + [2, 32607, 32608], + "consec", + "utive-blank-lines", + [2, 32610, 32611], + [2, 23099, 32612], + "emphasis-", + "as-heading", + [2, 32614, 32615], + [2, 23099, 32616], + "name-articles", + [2, 2093, 32618], + [2, 23099, 32619], + [3, 32620, 25], + [3, 32612, 12], + "rast-color-function", + "dashes", + [2, 32622, 32624], + [2, 32621, 32625], + "irregular-", + [2, 32627, 7169], + [2, 32621, 32628], + "mixed-case", + [2, 32621, 32630], + "@theuiteam/lib-builder", + "crawler-detection", + [2, 32746, 31528], + "outer-dashes", + [2, 32621, 32635], + [3, 23118, 23], + [2, 32637, 8958], + "punctuation", + [2, 32637, 32639], + "missing-", + [0, 0, 0, 32677, 2487], + [2, 31635, 32673], + "blank-lines", + [2, 32641, 32644], + [2, 23099, 32645], + [3, 32646, 16], + "ulti", + "ple-toplevel-headings", + [2, 32648, 32649], + [2, 32647, 32650], + "dollars", + [2, 5124, 32652], + [2, 23099, 32653], + [2, 16065, 17537], + [2, 23099, 32655], + [3, 32656, 18], + [2, 32657, 591], + "ordered-", + "list-ma", + "rker-value", + [2, 32660, 32661], + [2, 32659, 32662], + [2, 23055, 32663], + [3, 23139, 22], + "-alignment", + [2, 32665, 32666], + [2, 17998, 2585], + "retext-english", + "retext-", + [2, 10832, 2195], + [2, 32670, 32671], + "ai-v6", + [2, 32675, 32676], + [3, 32643, 13], + "sdk-v4", + [0, 3358, 1564, 10057], + [2, 32700, 7174], + [3, 23096, 14], + "nk-title-style", + [2, 32679, 32680], + "maximum", + "-heading", + [2, 32683, 15309], + [2, 32682, 32684], + [2, 23055, 32685], + [3, 32686, 20], + "line-length", + [2, 32687, 32688], + [3, 23113, 30], + "ed-urls", + [2, 32690, 32691], + [3, 23113, 25], + "s-in-section", + [2, 156, 32694], + [2, 32693, 32695], + [3, 32617, 18], + "ty-url", + [2, 32697, 32698], + [3, 31198, 34], + "-paragraph", + [2, 15403, 32701], + [2, 32637, 32702], + [3, 23118, 16], + [2, 32704, 14550], + [2, 170, 23116], + [2, 23099, 32706], + "-like-url", + [2, 11043, 32708], + [2, 23099, 32709], + "ed-fu", + "ll-reference-image", + [2, 32711, 32712], + [2, 14475, 32713], + [2, 23124, 32714], + [3, 32715, 39], + [2, 32716, 163], + [3, 32672, 14], + [2, 32718, 3997], + [2, 31228, 27863, 32721], + "bsorbers", + [2, 32723, 32724], + [3, 32720, 20], + "emitters", + [2, 32722, 32726], + "-shape-circle", + [2, 32728, 32729], + [3, 32725, 35], + "square", + [2, 32731, 2585], + [3, 31244, 19], + "autolinker", + [2, 32734, 32735], + [3, 31244, 14], + "lim", + [2, 31281, 14858], + [2, 31281, 32738], + "roll", + [2, 31281, 32740], + "tilt", + [2, 32742, 32743], + [3, 32739, 22], + "winkle", + [2, 31281, 32745], + "wobble", + "tua-", + [2, 4511, 32078, 4366], + [1, 2343, 32763], + "caseless", + [2, 32752, 2855], + "aws-sign2", + [3, 32674, 18], + "oauth-sign", + [2, 3013, 2660], + "forever-", + [2, 32755, 4575], + "har-validator", + "is-typedarray", + [2, 2666, 1580], + "use-callback-ref", + "taper", + "karma-cli", + [0, 32764, 32771, 32780, 2399], + [ + 0, 8181, 26057, 28329, 28607, 28620, 28631, 28632, 28672, 28673, 26364, 28963, 29273, 28685, 30585, 31857, + 31902, 32411, 33136, 34082, 33056, 33586, 33588, 33590, 33591, 34083, 33592, 33600, 33601, 33604, 33613, 33623, + 10981, 10984, 37051, 34087, 28709, 1556, 16230, 28718, 28761, 28780, 28805, 28883, 28896, 28911, 2161, 36538, + 28964, 3090, 3189, 31530, 28974, 3510, 29049, 15451, 4382, 29050, 4383, 27921, 27438, 29161, 29165, 29219, + 29220, 29235 + ], + "glob-bin", + "use-sidecar", + "JSDA", + "stealthy-require", + [3, 4010, 16], + [2, 32769, 364], + [ + 0, 29267, 29290, 29295, 10614, 34092, 11016, 11018, 31408, 29304, 1177, 2559, 29332, 3980, 4543, 1984, 29887, + 29323, 188, 13151 + ], + [2, 32774, 32779], + "thenable", + [3, 5430, 21], + "useRef", + "createRef", + "merge refs", + "vconsole", + "ummary", + [0, 29345, 29332, 8588, 4383, 12951, 188, 12072, 6284, 91, 10309, 181, 4380, 5130, 29346], + [1, 2343, 32785], + [2, 32783, 32784], + "detect-n", + "ode-es", + [0, 0, 32791, 32799, 2443], + [2, 4807, 1845], + "@react-pdf/renderer", + "code spliting", + "sidecar", + [2, 4625, 8119], + [0, 5087, 1192, 4468, 4474, 4493, 91], + "index.js", + [2, 32028, 33976], + "is-wayland", + "copy-text-to-clipboard", + [2, 32797, 32798], + "mutation", + "-observer", + [ + 0, 5995, 10906, 24299, 29527, 29563, 29565, 29575, 29576, 29658, 29706, 29723, 1623, 6802, 4967, 29731, 29730, + 29842, 29845, 29868, 29963, 30047, 30133, 30136, 30161, 30163, 30487, 91, 30489, 30501, 30523, 30562, 30569, + 30574, 30591, 30593, 30600 + ], + "-tslint", + [2, 1009, 32800], + [3, 1009, 11], + "/analyze-trace", + [2, 32802, 32803], + [2, 1977, 2528], + "micro-", + [2, 32806, 7906], + "svelte-loader", + [1, 2343, 32837], + "down-config", + [3, 13476, 17], + "ntext-async-hooks", + [3, 36559, 16], + "ResizeObserver", + [2, 32817, 11937], + "worktop", + [3, 8809, 20], + [2, 17214, 5477], + "perty-rule-prelude-list", + "path-parse", + "scss-loader", + "-flag", + [2, 6846, 32822], + [2, 15884, 32823], + [3, 1790, 16], + "copy-dir", + [3, 8119, 14], + [3, 32790, 18], + "vue-scroll", + "vue-scrollbar", + "vue-plugin", + "滚动条", + "eartbeat", + "lory.js", + [2, 33112, 33113], + "adjust-sourcemap-loader", + [0, 32838, 32846, 30825, 2487], + [0, 29304, 26699], + [2, 32841, 10238], + [2, 4807, 1955], + [3, 31435, 16], + "cls-hooked", + "myrmidon", + [2, 31436, 2018], + [3, 30380, 15], + [0, 1192, 1177, 4042, 4468, 1894, 91, 5087, 4880, 1895, 1955, 2780, 1011, 1009], + "ncredible", + [2, 32845, 32847], + "ensor", + [2, 4914, 32849], + "secrets", + [2, 16645, 32851], + [3, 25837, 16], + "anjs-rules", + [2, 32853, 32854], + "fatum", + [2, 14560, 6816], + [2, 3335, 32857], + "telegram", + [2, 21386, 32859], + "vesta", + [1, 2343, 32868], + "react-camera-pro", + "documentate", + "idebar", + "umentate", + [2, 25821, 32866], + [0, 0, 32869, 32882, 2523], + [0, 4880, 4883, 89, 3824, 91], + "better-npm-run", + "clamp.js", + [2, 19825, 4627], + [2, 1870, 32872], + "ewma", + [2, 4031, 24388], + "spdy", + "karma-fixture", + [2, 20441, 6543], + "restify-", + "clients", + [2, 32879, 32880], + [0, 89, 28946, 6847, 30858], + "watershed", + "@applitools/utils", + "DTrace", + "karma-opera-launcher", + [1, 2343, 32893], + [3, 18613, 12], + "convict", + [2, 32957, 32963], + "antora-component", + "@dataui/crud", + [0, 32898, 32902, 32915, 2523], + "is-uuid", + "rewrite-imports", + "quit", + "shutdown", + [0, 30939, 30941, 30944], + "terminate", + "kill", + "serviceworker", + [ + 0, 30949, 30951, 30953, 30954, 30961, 30966, 30973, 30976, 30977, 30980, 30984, 30985, 30988, 31003, 31007, + 31024, 31033, 31036, 31053, 31060, 31065, 31067, 31068 + ], + [2, 32904, 11017], + [3, 32884, 12], + "@types/webrtc", + "NoSQL", + "reql", + " language", + [2, 3766, 32908], + "applitools", + "eyes-sdk", + "test automation", + "visual regression", + [2, 32731, 27819], + [0, 26591, 1973, 5472, 13083, 6969, 1429, 1145, 1745, 31077, 31079, 31080, 1776, 1204, 6813], + "accelerate", + "detectrtc", + [2, 32892, 30665], + [2, 32920, 614], + [3, 32918, 13], + [1, 2343, 32935], + [2, 32923, 32931], + "install-p", + "json-copy", + [2, 28093, 32924], + [2, 31281, 32933], + "nano-copy", + "plain-", + [2, 3425, 1496], + [2, 32928, 32929], + "eers-cli", + "prepend-file", + "life", + [2, 32937, 32938], + [0, 0, 30812, 30825, 2523], + [1, 2343, 32964], + [3, 32737, 23], + "tate", + "drag-drop", + "plasmo", + "camera", + "prebuild", + "-install", + [2, 32942, 32943], + "webcam", + "-os", + [2, 642, 32946], + "practice", + [2, 15090, 32948], + "cam", + "Automation", + "pixel", + "blob-to-buffer", + "recognition", + "webRTC", + "autohotkey", + [3, 35870, 14], + "drag drop", + "machine", + "drag & drop", + "learning", + "react-h5-audio-player", + "itro-modules", + [0, 32974, 33037, 33040, 2523], + [2, 32995, 8745], + [3, 16005, 16], + [2, 32966, 4142], + "-twoslash", + [2, 4614, 32968], + [2, 9408, 32969], + [2, 15125, 5711], + "date-time", + "flru", + [ + 0, 31384, 31735, 34024, 31315, 31330, 31358, 34025, 31361, 31362, 30375, 31368, 31378, 31383, 3266, 9011, 4763, + 9355 + ], + [2, 33470, 33475], + [3, 30686, 19], + "pinia", + [2, 15476, 8961], + "wasm-pack", + "@expo/spawn-async", + [2, 32982, 147], + "@parcel/c", + "@parcel/fs", + [2, 32985, 5602], + [3, 5367, 15], + [2, 5368, 7158], + "mnemonic-id", + "node-object-hash", + "@plasmohq/init", + [2, 32991, 32992], + "@plasmohq/", + "parcel-config", + [2, 32994, 23], + [3, 32990, 19], + [3, 10848, 14], + "@plasmo/config", + [2, 32999, 33003], + "js-cleanup", + [3, 32996, 11], + [3, 4058, 16], + [2, 33000, 3874], + [2, 25572, 1155], + "stants", + [2, 33006, 594], + "removal", + "@plasmo/", + [2, 33006, 5130, 33008], + "-shared", + [2, 4807, 32965], + [2, 13843, 19101], + "ixins", + "visionOS", + "tvOS", + "macOS", + [2, 33018, 89], + "3-drag", + [2, 6491, 33016], + "@iconify/", + "cpp", + [2, 4861, 24847], + [2, 33022, 2847], + "static-s", + [2, 21897, 33024], + "sass2less", + "swift", + "player", + "mse", + "commenting", + [2, 14034, 13828], + [3, 19570, 16], + [2, 33030, 2649], + "spdx-", + "eme", + "jsi", + "satisfies", + [2, 33032, 33035], + [0, 8818, 4874, 4880, 4883, 89, 3824, 1984, 31390], + [2, 2369, 2284], + [3, 32978, 18], + [ + 0, 31398, 3287, 4592, 31399, 89, 4963, 181, 4967, 4380, 31400, 31406, 31407, 31408, 6070, 31409, 30210, 31410, + 31422, 31423, 31424, 31431, 31432, 31433, 31454, 31466 + ], + "p-banner", + [2, 33039, 33041], + [2, 33044, 147], + [3, 5517, 19], + [1, 2343, 33049], + [2, 8147, 14773], + "ts-expose-internals", + [2, 13888, 2150], + [0, 0, 0, 33054, 2537], + [2, 1884, 10791], + "buffer-es6", + "process-es6", + "astrojs", + [0, 3563, 1623], + "compliance", + [2, 33060, 33585], + "dset", + "flattie", + "magicast", + [3, 31902, 18], + "zod-to-ts", + "xxhash-wasm", + "yocto-spinner", + "@oslojs/encoding", + [2, 33066, 33067], + "@astrojs/c", + "ompiler", + [2, 34674, 13535], + "zod-to-json-schema", + "http-cache-semantics", + [2, 33072, 33073, 3984], + "@astrojs/m", + "arkdown-", + [2, 34674, 6943, 19687], + [2, 7185, 33076], + "-object-hash", + "MappingURL", + [2, 4225, 33077], + [1, 2343, 33081], + "@types/dlv", + [0, 33089, 33090, 33091, 2537], + "rehype-toc", + "astro-scripts", + [2, 33085, 33086], + [3, 24220, 12], + "titles", + [2, 4807, 9485], + [2, 4807, 33070], + [0, 26675, 26678, 26684, 26690, 26685, 3259], + [0, 5087, 4874, 1596, 1192, 1894, 3951, 3980, 4094, 4468, 4474, 1531, 4521, 91], + [0, 12659, 8124, 1745], + [1, 2343, 33094], + "strata", + [0, 33095, 33102, 33103, 2523], + [0, 9355, 9307], + "nd-cache-dir", + [2, 16785, 33096], + [3, 13364, 12], + [2, 33098, 1095], + "graphlib", + [3, 4069, 16], + [0, 1983, 89, 2220, 3824, 26744, 966, 1030, 972, 968, 30521], + [0, 89, 2220, 31523, 1932, 1745, 25677], + [1, 2343, 33105], + [0, 33106, 33107, 33108, 2523], + [ + 0, 2611, 3478, 1759, 31533, 33507, 3084, 31534, 2226, 31535, 2845, 33062, 31609, 31536, 31750, 31548, 31617, + 31619, 31571, 5328, 31610, 31623, 29421 + ], + [ + 0, 4763, 4493, 1177, 2205, 4042, 1984, 4473, 23203, 91, 53, 4874, 31629, 31631, 31634, 32643, 2069, 10879, 8818, + 32674, 32750, 7677, 31636, 33137, 31639 + ], + [0, 31408, 31645, 29486, 4575, 31646, 31647, 31656, 31657, 31658, 3151, 2041, 91, 31659, 5130], + [1, 2343, 33132], + "fuzzysearch", + "sander", + [3, 29704, 20], + "ntax-descriptor-syntax-production", + "@types/d3-", + [2, 33114, 4552], + [2, 33114, 1473], + "force", + [2, 33114, 33117], + "hierarchy", + [2, 33114, 33119], + [2, 33114, 16662], + [3, 33121, 11], + [2, 33122, 1659], + "@saintno/comfyui-sdk", + "@virtuoso.dev/masonry", + "treemap", + "sunburst", + [2, 13480, 33130], + "diagram", + "jaeger", + [2, 13475, 4715], + [0, 0, 33135, 33217, 2523], + [2, 5088, 33134], + "dfkit", + [0, 107, 972, 5087, 1742, 1192, 3286, 1894, 89, 3824, 3904, 4039, 4468, 91], + [2, 33142, 33147], + [2, 31635, 3965, 553], + [2, 33141, 20760], + [2, 33140, 23], + [3, 34681, 19], + [3, 10210, 16], + [3, 32411, 20], + "testrunner", + "@next/", + "@next/env", + "@rspack/core", + [3, 26697, 11], + [3, 5215, 12], + "piccolore", + "-optimizer", + [2, 11928, 33150], + [2, 33148, 33151], + [2, 4850, 14643], + "css/metrics", + [2, 4202, 33154], + [2, 17189, 33155], + [3, 28436, 14], + [2, 33157, 16358], + [2, 33157, 6805], + [3, 33159, 15], + "rimitives", + [2, 33160, 33161], + "turborepo", + "triples", + [2, 29314, 33164], + [2, 27913, 1237], + [2, 33144, 33166], + [3, 33167, 15], + "nomodule", + [2, 33168, 33169], + [2, 3878, 3007], + [2, 33144, 33171], + "@next/swc", + "@taskr/clear", + "ac-colors", + "@taskr/esnext", + "mphtml-validator", + [2, 9165, 33177], + [2, 10880, 1179], + "i-info", + [2, 4857, 33180], + [3, 11796, 15], + [2, 33182, 10366], + [3, 7808, 17], + "rve-s", + [2, 16826, 9654], + "tatic-core", + [2, 33185, 33187], + [2, 33184, 33188], + "hsv", + "@types/fresh", + "urry", + [2, 7887, 33192], + "th-to-regexp", + [2, 28121, 33194], + "atform", + [2, 28175, 33196], + "@types/send", + "amphtml-validator", + "async-sema", + "lch", + "cli-select", + "color-names", + "client-only", + "cmyk", + "comment-json", + "mix", + "edge-runtime", + [2, 13773, 1194], + "lodash.curry", + "native-url", + "string-hash", + "taskr", + "unistore", + "watchpack", + "harmonies", + [0, 89, 3286, 23803, 3287, 38, 3212, 1973, 5472], + [1, 2343, 33219], + [0, 0, 33220, 33224, 2487], + [ + 0, 603, 8862, 811, 816, 6373, 5535, 30867, 5087, 13204, 31087, 11016, 17494, 11018, 13072, 1503, 1567, 1610, + 1192, 2780, 2832, 2990, 15324, 1894, 4042, 4073, 4076, 4201, 29889, 4383, 4468, 91, 1983, 188, 4639, 4646, 19235 + ], + [3, 18758, 12], + "ogress", + [2, 33221, 33222], + [ + 0, 188, 8588, 31685, 31687, 31700, 7838, 29889, 31702, 1802, 17819, 29953, 31703, 91, 31704, 4453, 5131, 5284, + 4627, 181 + ], + [1, 2343, 33226], + [0, 26338, 0, 33234, 2537], + [2, 27135, 16460], + [2, 33229, 33521], + [3, 30464, 13], + "domparser-rs", + "rtl", + "ltr", + [2, 33461, 33965], + [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 15571, 35060, 158], + [2, 33236, 18200], + "get-port-", + [2, 33238, 33239], + [3, 5366, 9], + "tter-sqlite3", + [1, 2343, 33241], + [0, 33242, 33246, 25117, 2487], + [0, 30784, 20378, 16860, 3530, 3561, 28865, 27921], + "@antfu/ni", + "run series", + "@dotenvx/dotenvx", + [ + 0, 58, 31292, 5180, 30787, 37017, 28465, 8862, 811, 16808, 10895, 24725, 9743, 37012, 28572, 1415, 1457, 1544, + 1573, 1594, 1615, 30023, 1759, 1763, 37014, 668, 1869, 2007, 984, 28575, 31308, 18584, 3090, 3189, 11480, 3266, + 3445, 3493, 3510, 34928, 3527, 3613, 3616, 37015, 28119, 24759, 29444, 4042, 4060, 2278, 21688, 4200, 37013, + 4072, 4955, 27438, 4729 + ], + [2, 4807, 30228], + [1, 2343, 33252], + "LINQ", + "FRP", + [2, 29445, 1732], + [0, 0, 0, 33278, 2537], + [2, 33254, 8253], + "@vitejs/", + [2, 23354, 6708], + [2, 5, 33255], + "side-effects", + [2, 14614, 33257], + [3, 1705, 12], + "ruiser", + [2, 33259, 33260], + [3, 18106, 16], + [2, 33262, 2429], + [2, 1921, 33274], + "tslint-etc", + "no-toplevel-property-access", + [2, 4491, 33266], + "tslint-no-", + "unused-", + [3, 5804, 11], + [2, 33270, 1429], + [2, 33269, 33271], + [2, 33268, 33272], + "wc", + [2, 9352, 364], + "datagrid", + "survey-core", + [0, 3857, 5128, 12295, 12296, 28641, 1616, 5131, 1149, 4160, 28654, 28656, 16722, 31824, 31825, 3348], + [1, 2343, 33280], + [0, 0, 2667, 31019, 34352], + [1, 2343, 33300], + " allocate", + [2, 1398, 33282], + [2, 17681, 1965], + "2fa", + "hotp", + "uninitialized", + "topt", + [2, 33290, 33291], + "google a", + "uthenticator", + [2, 33294, 7120], + "mock-env", + [3, 5165, 11], + "dist-tag", + "one time password", + "prepublish", + [2, 37718, 20105], + "2 factor", + [0, 33301, 33306, 33372, 34352], + [ + 0, 5145, 30551, 30583, 5154, 7709, 28384, 30584, 13437, 30602, 30603, 30609, 30610, 13187, 30814, 12207, 7948, + 30824, 30866, 30887, 30906, 31178, 31179, 31247, 31255, 31263, 32003, 32008, 32010, 32031, 32975, 32034, 32035, + 32502, 32041, 32569, 32042, 32043, 32045, 32053, 32059, 32060, 32096, 32100, 32127, 32131, 32133, 29421, 32134, + 32135, 33128, 33131, 32787, 32136, 33124, 32140, 32146, 958, 32147, 32148, 32149, 29261, 32156, 32157, 32159, + 32161, 33125, 32169, 30778, 1114, 13215, 32171, 35358, 977, 32173, 1673, 1676, 32175, 1687, 32176, 32187, 31930, + 2069, 37853, 2096, 4776, 32190, 2226, 2646, 2681, 23913, 32194, 29762, 2696, 12105, 32198, 32208, 2928, 32213, + 32216, 32220, 3021, 32221, 3096, 32222, 3127, 26568, 32230, 32232, 3266, 3286, 3285, 32239, 32240, 29306, 3415, + 32241, 32242, 32246, 32247, 31407, 32248, 32249, 32250, 32263, 29899, 3513, 3519, 3533, 32266, 3555, 32267, + 20325, 32270, 3765, 3777, 89, 32274, 3824, 11366, 12229, 3837, 32280, 15575, 32295, 3882, 32296, 3885, 32297, + 32298, 32305, 3984, 3988, 3989, 32314, 32317, 4135, 4164, 9348, 32578, 4302, 4341, 32320, 26713, 4376, 32321, + 32322, 11804, 32328, 4566, 32331, 3348, 32337, 4729, 4745, 4763, 9355, 32338 + ], + "@sai", + "lshq/lodash", + [2, 33302, 33303], + [2, 4807, 4588], + [ + 0, 192, 37097, 32344, 32354, 32367, 32369, 32371, 32374, 32379, 32386, 8648, 27424, 21120, 968, 972, 974, 32387, + 32391, 5245, 4864, 32400, 8818, 4870, 5139, 4874, 32409, 32420, 33133, 32426, 4880, 4883, 32429, 5254, 32440, + 11800, 9315, 9241, 29891, 7677, 12384, 1529, 1556, 1610, 1620, 32444, 1759, 1763, 32445, 32446, 32457, 1177, + 32458, 32461, 2151, 2070, 2559, 2675, 28375, 32463, 2990, 1209, 3117, 32469, 3171, 3310, 640, 32470, 3478, 1894, + 3985, 9340, 32471, 3992, 28380, 4131, 32482, 4320, 4494, 4507, 91, 4549, 4555, 1983, 1984 + ], + "captains-log", + "js-f", + "ile-", + [2, 33309, 19101], + [2, 33308, 33310], + [2, 9480, 33311], + "flaverr", + "survey", + "i18n-2", + "include-all", + "surveyjs", + "-as-action", + [2, 32959, 33318], + "survey-library", + "pack-process", + [2, 32959, 33321], + [3, 33322, 12], + [2, 33323, 1552], + [2, 20100, 3031], + "ictionaries", + [2, 27239, 33326], + "parley", + "rttc", + "form-component", + "-generate", + [2, 4104, 33331], + "sails-", + "stringfile", + [2, 33333, 33334], + "skipper", + "-addresses", + [2, 4082, 33337], + [2, 22775, 33338], + "whelk", + "form-rendering", + [2, 33323, 2150], + "@sailshq/", + [2, 33343, 705], + "survey-renderer", + "root-require", + "dynamic-form", + "hook-orm", + [2, 33333, 33348], + [3, 33349, 11], + "sockets", + [2, 33350, 33351], + [2, 24095, 33358], + "sails.io.js", + "-store", + "-file-store", + [2, 1577, 33356], + "-form", + "mvc", + "form-library", + "form-management", + "web-framework", + "sailsjs", + [2, 8631, 33366], + "sails.js", + "naire", + "data-collection", + "data-validation", + "input-validation", + [3, 7842, 12], + "schema-form", + [0, 5130, 31409, 31431, 3287, 32486, 31407, 32490, 32494, 32132, 32495], + [2, 33374, 3552], + [3, 14944, 11], + [1, 2343, 33468], + "truncate-", + [2, 33467, 33631], + "utf8-bytes", + [2, 33376, 33378], + "js-api", + "mktemp", + [2, 30767, 33384], + "filename", + "wasm-nodejs", + [2, 31208, 22074], + [2, 11183, 6882], + [2, 13167, 33388], + "abs", + [2, 33391, 10271], + "parse-srcset", + [3, 13169, 16], + [3, 13405, 16], + [2, 11183, 614], + "ostrophe", + [2, 33392, 33394], + [2, 11183, 158], + [2, 33398, 1020], + [3, 33396, 15], + [2, 11183, 33400], + "steps", + [2, 33402, 2699], + [3, 33387, 17], + [2, 11183, 18346], + [2, 33405, 9997], + [3, 33403, 15], + [2, 13163, 11218], + [3, 32049, 11], + [2, 33407, 13756], + "-sin", + "gle-context", + [2, 33409, 33410], + [2, 2784, 33411], + [3, 31591, 11], + [2, 4961, 4184], + [2, 33413, 33414], + [3, 4927, 10], + [2, 11183, 3811], + [2, 33421, 1799], + "glob-importer", + [2, 33416, 33419], + [3, 33399, 15], + [2, 33421, 10205], + [2, 33421, 10222], + [2, 33425, 184], + [3, 33393, 15], + [2, 33427, 10261], + [3, 11185, 16], + [2, 33429, 18338], + [3, 13162, 15], + [2, 33429, 5449], + [2, 33432, 9939], + [3, 13162, 17], + [2, 33434, 11206], + [3, 33404, 16], + [2, 3115, 11415], + [2, 33439, 33440], + "bare-script", + [2, 1818, 11415], + [3, 27467, 17], + "tions", + [2, 33442, 10148], + [3, 33417, 15], + [2, 13167, 11241], + [2, 33445, 33446], + [3, 33418, 16], + "gmented", + [2, 33442, 33448], + "agination", + [2, 33389, 11245], + [2, 33397, 11211], + [2, 11183, 9044], + [2, 33453, 33457], + [3, 5050, 13], + "food", + "drink", + "helpful", + [3, 14673, 16, 7], + "ourcesoftware", + [2, 8423, 33458], + [2, 25184, 33466], + [2, 41, 3874], + "teaching", + "experi", + [2, 33463, 1744], + [2, 13527, 591], + "local-npm-registry", + [3, 5123, 14], + [0, 33469, 33476, 6151, 2523], + [0, 546, 8605], + [3, 32034, 11], + "ecdh", + "ecdsa", + "solver", + "bplist-creator", + "etch-sse", + [0, 8616, 91], + "seed", + [1, 2343, 33480], + "oxfmt", + [0, 33481, 23733, 33483, 2523], + [0, 29421, 6494, 1525, 2026, 12105, 4548, 4763], + "@bazel/runfiles", + [0, 29681, 29695, 29718, 29719, 31264, 1745, 13083], + [1, 2343, 33485], + [0, 33486, 33487, 33488, 2537], + [0, 7384, 26870], + [ + 0, 4200, 3510, 89, 4207, 4135, 1984, 24324, 3824, 4459, 11143, 16485, 3170, 3527, 27921, 91, 4874, 5254, 37085, + 8778, 11938, 32815, 32818 + ], + [0, 4270, 29043, 1984, 5472, 1973, 4627, 4963, 23246, 89, 188, 3709, 5926], + [3, 21120, 19], + [2, 33489, 3543], + "aggregate-error", + "bunup", + "env-ci", + [2, 2103, 18280], + "git-l", + "og-parser", + [2, 33495, 33496], + "-esm", + [2, 18170, 33498], + "p-each-series", + [1, 2343, 33502], + [0, 33506, 33508, 33509, 2523], + "file-url", + [2, 2847, 4219], + [2, 17050, 33504], + [0, 2018, 32839, 32844], + "p-retry", + [0, 2924, 5087, 4874, 4677], + [0, 6901, 20319, 1973, 5472, 5433, 13657], + [2, 33511, 57], + "markdown ", + "solidjs", + "@fluentui/react-component-event-listener", + [3, 33513, 26], + [2, 33514, 2538], + [3, 6061, 10], + "/event-stack", + [2, 4133, 33517], + [2, 33516, 33518], + [2, 8652, 3858], + "oolbar", + "@artsy/fresnel", + [2, 30415, 594], + "standalone", + [2, 54, 33524], + [2, 33527, 33531], + "@react-s", + "@percy/cli", + "@percy/c", + [2, 33529, 4915], + "tately/overlays", + "anchor-js", + [3, 14132, 14], + [2, 33535, 17966], + [3, 33526, 15], + "ilter-imports", + [2, 33533, 33536], + [2, 33544, 33548], + "d-props", + [2, 2034, 33539], + [2, 1249, 33540], + [2, 30851, 1204], + [2, 1199, 33542], + "@react-t", + "chai-enzyme", + "react-ace", + "react-code", + "ypes/shared", + "sandboxer", + [2, 33547, 33549], + "ource-render", + [2, 3890, 33551], + "react-static", + [2, 33559, 6649], + "-routes", + [2, 33553, 33555], + "niversal-component", + [2, 12273, 33557], + [3, 3911, 17], + "satisfied", + [3, 4134, 12], + [2, 33561, 1623], + [1, 2343, 33569], + "simulant", + "ta-scripts", + [2, 4409, 1231], + "@aws-lite/client", + "@aws-lite/s3", + [0, 0, 33570, 33584, 2537], + [ + 0, 1173, 1175, 1195, 1267, 1272, 1280, 1282, 32870, 1429, 32871, 34009, 1652, 1676, 1705, 1177, 1903, 1958, + 1970, 2054, 2092, 2151, 2629, 2651, 2297, 2878, 2881, 2895, 32877, 26470, 2897, 2900, 2904, 32886, 2906, 2912, + 2915, 2925, 2899, 3363, 3524, 4039, 37320, 12826, 4131, 4535, 37871, 4027, 2924, 4681 + ], + [3, 21564, 23], + [2, 33571, 1219], + [2, 18124, 16284], + [2, 33575, 7625], + [3, 2001, 11], + "bikeshed", + "mock-tmp", + "semicolon", + "tap-arc", + "@casl/dx", + "cloudfunctions", + "apigateway", + "api gateway", + [0, 6398, 20986, 32888, 32054, 31512, 4453, 35062, 6970, 5131], + "drag-handle-vue-3", + [2, 33060, 33587, 4403], + "floating-", + [2, 33060, 33589], + "horizontal-rule", + [2, 33060, 158], + [2, 33060, 26074], + [2, 33060, 33597], + "eraro", + "fast-sa", + "fe-stringify", + [2, 33594, 33595], + [3, 28051, 11], + "gate-executor", + "gubu", + [2, 31908, 1783], + "@tiptap/pm", + "ordu", + "patrun", + [2, 31908, 33607], + "rolling-stats", + "use-plugin", + "starter-kit", + "@seneca/test-plugin", + "lab-", + [3, 29583, 11], + [2, 33610, 2528], + [2, 33609, 33611], + [2, 33621, 33622], + "-entity", + [2, 4136, 33614], + "seneca-e", + "rror-test", + [2, 33616, 33617], + "seneca-", + [2, 33619, 19138], + "@tiptap/s", + "uggestion", + "@tiptap/vue-3", + "micro-service", + [2, 33624, 591], + [3, 14587, 13], + "minimum", + "viable", + "startup", + [1, 2343, 33632], + "orklets", + [0, 33637, 33651, 33665, 2523], + [2, 10196, 21009], + "Sentimental", + [2, 11183, 9352, 3392], + "nlp", + [0, 32905, 32917], + "@farmfe/cli", + [2, 6283, 33647], + [2, 35438, 35525], + "dottie", + [2, 1153, 1430], + [2, 4140, 30807], + "sort-class", + [2, 17693, 33644], + "wkx", + "-testing", + [3, 9786, 10], + [2, 33648, 103], + [2, 33900, 147], + [0, 4880, 4883, 8152, 1009, 1011, 1540, 1177, 1895, 1955, 1959, 32922, 32932, 1894, 4042, 4076, 4474, 4484, 91], + "chai-datetime", + "esdoc", + "-ecmascript-proposal-plugin", + [2, 33653, 33654], + "esdoc-", + "inject-", + [2, 4306, 1932], + [2, 33657, 33658], + [2, 33656, 33659], + [2, 18124, 1932], + [2, 33656, 33661], + "ibm_db", + "js-co", + [0, 32941, 32945, 32950, 89, 12295, 12296, 5131, 32955], + "@webgpu/types", + "mbinatorics", + [2, 33664, 33667], + "mariadb", + [1, 2343, 33693], + "jmp", + "node-hook", + "p-props", + "p-settle", + "pg-hstore", + "fail-on-", + "sav", + "s-store", + "major-bump", + [2, 33676, 33679], + [2, 21386, 33680], + "snowflake-sdk", + [2, 33691, 33692], + "db2", + "snowflake", + "object ", + "relati", + "onal mapper", + [2, 33687, 33688], + [2, 33686, 33689], + "@prisma/m", + "anagement-api-sdk", + [0, 0, 33694, 33695, 2487], + [0, 89, 3857, 21166, 33377], + [ + 0, 3857, 2171, 12295, 12296, 33012, 33013, 33014, 33019, 5130, 89, 33025, 970, 5260, 2062, 33034, 7671, 8632, + 1283, 22743 + ], + [1, 2343, 33698], + "@tinymce/tinymce-react", + [0, 33699, 0, 33715, 2487], + [0, 31680, 28069], + "@ser", + "ialport/binding-mock", + [2, 33700, 33701], + [3, 33702, 19], + "s-cpp", + [2, 33703, 33704], + [3, 33702, 12], + "n1ed", + "byte-length", + [2, 15497, 33708], + [2, 33706, 33709], + [3, 33710, 19], + "cctalk", + [2, 33711, 33712], + [2, 33711, 28979], + [0, 1473, 1623, 57], + "-byte-timeout", + [2, 6941, 33716], + [2, 33711, 33717], + [1, 2343, 33720], + [0, 0, 0, 33752, 34352], + "packet-length", + [2, 33711, 33721], + [2, 33711, 3925], + [3, 33723, 23], + [2, 33724, 1493], + [3, 33723, 21], + [2, 33726, 17402], + "slip-encoder", + [2, 33711, 33728], + [3, 33729, 20], + [2, 10972, 4383], + "@heroicons/react", + "pacepacket", + [2, 33730, 33733], + [2, 33706, 3101], + [2, 33743, 33747], + "ccTalk", + "com port", + "COM", + "data logging", + "hardware", + "modem", + [3, 8292, 9], + "nodebots", + "RFID", + "sensor", + "plus/elements", + "serial port", + "sms gateway", + "sms", + "UART", + [0, 1512, 1623], + [2, 32092, 91], + [2, 33755, 33756], + "react-li", + "b-tools", + "update-check", + "@zeit/schemas", + "is-po", + "rt-reachable", + [2, 33759, 33760], + [2, 33769, 33770], + "@vercel/", + "style-guide", + [2, 33763, 33764], + "@types/ser", + "ve-handler", + [2, 33766, 33767], + [3, 2909, 10], + "serve-directives", + "ts-blank-space", + "vitest-fail-on-console", + [1, 2343, 33776], + "windowed", + "temp-path", + [0, 33778, 33779, 33780, 2487], + "favicon", + [ + 0, 33243, 53, 58, 5889, 92, 33245, 29421, 33305, 1393, 1525, 1595, 1680, 1699, 1687, 2020, 2071, 2151, 31401, + 2674, 2929, 3244, 3310, 3445, 3467, 3561, 3681, 3742, 3930, 30228, 4382, 4473, 4480, 4588, 4763, 33069 + ], + [0, 10879, 4864, 7812, 33247, 4039, 4493, 4507, 91], + [0, 4963, 181, 4380, 31398, 31400], + [1, 2343, 33782], + [0, 0, 0, 33783, 2487], + [0, 89, 188, 23332, 4607, 33275, 33276], + "@extend-chrome/messages", + [2, 33786, 13901], + [3, 33784, 15], + "@types/chrome", + [1, 2343, 33793], + "@types/jsesc", + [2, 33791, 33792], + [3, 32170, 13], + "nspect", + [0, 0, 33805, 33809, 2487], + "chrome-extension", + "webext", + "webextension", + "verless/utils", + [2, 33700, 33797], + [3, 33010, 17], + "z-commitlint", + [2, 5465, 33800], + [3, 33798, 12], + [2, 33802, 1973], + [3, 4156, 10], + [ + 0, 5087, 4874, 1009, 1011, 1177, 1886, 1895, 1938, 1955, 1958, 1966, 1982, 2070, 1192, 1894, 4039, 4042, 4052, + 27720, 4076, 4468, 4474, 4508, 4514, 17223, 91 + ], + " plugins", + [2, 33804, 33806], + "aws lambda", + [0, 33285, 28946, 33286, 33288, 33289, 33292, 33296, 33298, 5165, 33299, 202, 1388, 4967, 5995], + " web services", + [2, 6997, 33810], + ".com", + [2, 33804, 33812], + [1, 2343, 33815], + [0, 0, 0, 33816, 2487], + [ + 0, 33314, 1669, 33317, 33320, 33330, 33341, 33345, 33347, 33353, 33360, 33361, 33364, 33367, 33368, 7021, 33369, + 33370, 1781, 2845, 33371, 33345, 12899, 4967, 5284, 91 + ], + "isoformat", + "cdk/aws-lambda-python-alpha", + [2, 13562, 33818], + [3, 7709, 16], + [2, 33820, 7308], + "eventbridge", + [2, 33820, 33822], + [2, 33820, 13573], + "ns", + [2, 9191, 33825], + [2, 9191, 3763], + [2, 9191, 4799], + [2, 17253, 33832], + "lib-dynamodb", + [2, 13548, 33830], + "-tree-1d", + [1, 2343, 33855], + "htl", + "util-dynamodb", + [2, 13548, 33835], + "@types/d3", + "aws-cdk-lib", + "iot-device-sdk", + [2, 9194, 33839], + "caporal", + "-highlight", + [2, 14558, 33842], + "apache-arrow", + [3, 9167, 11], + [2, 33845, 33839], + "d3-geo-projection", + "@types/aws4", + "esbuild-r", + [2, 33849, 8736], + "jsii", + "jsii-diff", + [2, 17111, 7268], + "jsii-docgen", + [0, 33856, 0, 29047, 2537], + [ + 0, 28872, 13411, 13412, 13388, 1137, 1170, 30051, 1362, 33474, 18220, 2139, 2188, 2070, 22410, 21226, 6698, + 1209, 3074, 3220, 3275, 27534, 2072, 3547, 3919, 4025, 4108, 4135, 4165, 4351, 13400, 4507, 3348, 4707, 4753 + ], + "jsii-pacmak", + [1, 2343, 33859], + [0, 33861, 33862, 33864, 2537], + "obuild", + [0, 30293, 26557], + [0, 4874, 30306, 30305, 30310, 4039, 1531, 91, 1984], + "type-plus", + [0, 30297, 13527, 5592, 5995, 2679, 23932], + "ge-parser", + [1, 2343, 33870], + "flow-re", + "move-types", + [2, 33867, 33868], + [0, 33873, 33874, 33875, 2537], + "isequalwith", + "date-fns-tz", + [ + 0, 2611, 3510, 1689, 15452, 8550, 28862, 33235, 28142, 15261, 23531, 2670, 28282, 12207, 31026, 20745, 28283, + 31737 + ], + [0, 4493, 1984, 16473, 15450, 91, 4874, 19759, 31794, 5517, 28203], + [0, 3724, 25638, 32916, 2703, 5001, 3304, 5472], + [2, 33892, 33895], + "@emnapi/runtime", + "@img", + "/sha", + "rp-libvips-dev", + [2, 33879, 33880], + [2, 33878, 33881], + "-wasm32", + [2, 33882, 33883], + [3, 33882, 19], + "win32-ia32", + [2, 33885, 33886], + [3, 33887, 25], + "x64", + [2, 33888, 33889], + "emnapi", + "string-s", + "-reader", + "exif-reader", + "plit-by", + "dzi", + "thumbnail", + "libvips", + "vips", + "@farmfe/c", + "cargo-cp-artifact", + [2, 14736, 34112], + "skia", + "offscreen", + "compositing", + [1, 2343, 33917], + "vulkan", + "metal", + "flmngr", + [2, 4167, 14994], + "shelljs-", + [2, 33911, 3979], + "travis-", + "changes", + "check-changes", + [2, 33913, 33915], + [0, 33919, 33922, 33923, 2487], + "makefile", + [0, 33567, 33568], + "imgpen", + "unsplash", + [0, 33574, 1610, 1177, 3173, 33577, 3421, 3752, 33579, 4389], + [0, 7200, 13573, 6997, 33804, 6599, 33581, 33582, 7308, 6949, 6808, 33583, 5130], + [1, 2343, 33925], + [0, 33926, 33931, 2514, 2537], + [0, 33666], + "bitly", + "shorten", + "mongoid", + "tinyid", + [0, 1787, 91, 18279], + "kapok-js", + [1, 2343, 33934], + [0, 33939, 33946, 33947, 2399], + "should-", + "should-equal", + [2, 33935, 1671], + "should-type", + [0, 89, 3824, 33697], + "-adaptors", + [2, 33938, 33940], + "should-util", + "@types/listr", + "houldjs", + [2, 1901, 33944], + [0, 3775, 4039, 4487, 4469, 3744, 91, 53, 4874, 4880, 1195, 4883, 5090, 1167], + [0, 4445, 6092, 33707, 89, 6038, 1936, 6105, 7062, 27968, 9381], + [2, 32223, 2636], + "pdf-generation", + "assignments", + "homework", + "html-to-pdf", + "grunt-endline", + "quiet-grunt", + "semver-sort", + [1, 2343, 33957], + [0, 0, 33958, 33960, 2523], + [ + 0, 30703, 442, 9307, 33731, 33732, 29273, 33736, 968, 972, 974, 5364, 7806, 7639, 4874, 4880, 4883, 31397, 4992, + 1413, 1497, 1536, 1639, 1177, 1961, 7585, 2203, 2675, 2832, 2990, 3105, 3127, 3561, 1894, 21024, 89, 33753, + 3824, 5564, 33754, 3885, 4073, 4079, 33762, 4164, 4200, 4382, 4383, 4072, 33771, 4474, 4494, 91, 4523, 29139, + 1983, 26744, 32255, 1984, 33772, 9355 + ], + "Function URL", + [0, 89, 6071, 4607, 11316, 33774, 3392, 32209, 32210, 3912, 176, 10052, 21604], + [1, 2343, 33966], + "plugin-open", + [2, 33911, 33962], + "Durable function", + "-sdk", + [0, 33967, 34002, 34003, 2523], + [0, 10895, 31832, 1084, 1448, 1573, 1676, 37014, 2071, 2151, 2835, 3090, 3510, 3527, 3878, 4042, 4094], + "@secretlint/secretlint-rule-github", + [2, 33970, 3378], + [3, 33968, 28], + [2, 33972, 33973], + [3, 28473, 18], + "ap-runner", + "secretlint", + "@vue/tsconfig", + "extender", + "fs-core", + [2, 33979, 27106], + [3, 18529, 16], + [2, 33979, 202], + [2, 33980, 33982], + "-builtins", + [2, 33984, 33985], + [3, 33981, 21], + "to-fsa", + "@kwsites/file-exists", + "@kwsites/", + [2, 9466, 14834], + [2, 33987, 33988], + [2, 33984, 594], + [3, 33989, 17], + [2, 33991, 27725], + "@sim", + "ple-", + "git/babel-config", + [2, 33994, 33995], + [2, 33993, 33996], + [2, 33979, 24171], + "source ", + [2, 33999, 12619], + [2, 33979, 8745], + [ + 0, 33784, 33785, 8862, 811, 8850, 816, 840, 20978, 33787, 5244, 5245, 4864, 11300, 33789, 4874, 4880, 4883, + 1009, 1011, 1030, 11016, 1457, 668, 33850, 1177, 1959, 11348, 3400, 34971, 89, 3824, 4039, 4057, 15277, 3709, + 4507, 91, 1983, 33790, 1984, 188 + ], + [0, 4080, 11504, 3195, 33794, 7188, 33795, 33796, 1388, 33799], + [1, 2343, 34005], + [0, 34006, 34016, 2514, 2523], + [0, 1653, 33817, 33829], + [2, 29234, 34008, 34010], + "pec-", + "custom-event", + [3, 11133, 16, 9], + "ant-stuff", + [2, 13112, 34011], + [2, 32845, 34012], + "rrect-lockfile", + [2, 33664, 34014], + [ + 0, 1414, 33834, 4494, 1983, 2832, 2899, 1424, 1177, 4042, 2203, 1894, 4473, 33837, 4614, 442, 91, 4874, 2820, + 6503, 33844, 17113, 19181, 33847, 8850, 33853, 17112, 10615, 3112, 1895, 811, 1011, 816, 1009 + ], + [3, 8136, 10], + "nalyzer", + [2, 32412, 34018], + "-navigation", + [1, 2343, 34022], + [0, 34023, 34045, 34046, 2487], + [0, 20584, 2131, 2674, 33876], + [2, 31395, 1542], + [2, 34026, 34042], + [3, 34030, 17], + "is-safe-filename", + [2, 5600, 34029], + "recurse", + [2, 28756, 18346], + "@asciidoctor/core", + [2, 29611, 34035], + "samsam", + [2, 11122, 34033], + "site-publisher", + [3, 11134, 16], + "plugin-n", + "o-prototype-methods", + [2, 34037, 34038], + [2, 34036, 34039], + "@studio/changes", + "ropdown-menu", + "@openspacelabs/react-native-zoomable-view", + "clock", + [0, 23531, 4874, 33901, 2611, 3297, 4449], + [0, 1424, 10798, 33903, 33904, 29727, 15344, 11812, 158, 11806, 33905, 8924, 33907, 33908, 2636, 8221, 9561], + [1, 2343, 34054], + [2, 29611, 34049], + "asciidoc-loader", + "vendor", + "mocks-", + "and-spies", + [2, 34051, 34052], + [0, 34056, 34057, 34058, 4139], + "asciidoc", + [0, 33909], + [0, 4469, 91, 2924, 4677, 89, 3824, 4880, 4883], + [0, 89, 33909, 2090, 1586, 10057, 33920, 158, 6038, 9229, 33921, 6997, 6949, 13531, 20614], + [1, 2343, 34069], + "express-json5", + "-readme", + [2, 8924, 34061], + "-htpasswd", + [2, 4199, 34063], + "fs-ext", + "crypt3", + "pod-install", + [2, 13888, 2036], + [0, 34072, 34073, 34074, 2523], + "pinch-to-zoom", + "pinch", + [0, 37082, 26380, 17214], + [0, 1984, 3541], + [0, 1388, 3541, 4627, 17050, 1973, 5472], + [1, 2343, 34077], + "@polka/url", + [0, 34079, 34080, 34081, 2537], + "totalist", + [0, 1138, 1437, 1457, 2182, 2185, 2226, 2600, 2685, 2991, 3127, 3758, 4135, 13834], + [0, 33943, 8147, 5254, 33768, 1166, 1424, 3421, 29899, 1894, 3706, 28593, 4474, 4481, 91, 1906], + [0, 33948, 200, 33949, 1745, 33950, 33951, 1783, 2636, 3758, 3197, 33952], + [3, 33056, 29], + [2, 33060, 34084], + "node-range", + "bytes-iec", + "nanospinner", + [2, 37050, 6579], + "budget", + [3, 13526, 12], + [2, 34089, 34088], + [1, 2343, 34094], + [2, 959, 34093], + "table-core", + [0, 34095, 34100, 28315, 2523], + [0, 1437, 4747, 28172, 32884, 28236], + "file size", + " size", + [2, 7204, 34097], + "get size", + [0, 4874, 32551], + [1, 2343, 34102], + [0, 34103, 21592, 34106, 2523], + [0, 4135, 32884, 28236, 28200], + "-cognito-identity-js", + [2, 6997, 34104], + [0, 32910, 32912, 32913, 13428, 5472, 6533], + "skapi", + [1, 2343, 34109], + [0, 34110, 34117, 34120, 2537], + [0, 31855, 28236, 28200, 32884], + [2, 20327, 1984], + "-no-globals", + [2, 17375, 34114], + "ormat", + "unloader", + "seperator", + [0, 2065, 34007, 32903, 13426, 3536, 11132], + [2, 34119, 12675], + [3, 36879, 12], + [0, 32910, 32912, 32913, 13428, 5472, 6533, 29724], + "is-fullwidth-code-point", + [1, 2343, 34123], + [0, 34124, 34126, 34129, 2537], + [0, 1525, 940, 999, 32138], + "random-item", + [0, 32889, 33932, 34031, 34032], + [2, 29611, 34128], + "file-publisher", + [0, 29699, 200, 1179, 1745, 29703, 29753], + "publisher", + "folder-size", + [2, 2183, 34131], + [1, 2343, 34135], + "js-extend", + [0, 34138, 0, 34140, 2537], + "math-sum", + [2, 7627, 1413], + [0, 34048], + "tablify", + [0, 29699, 32891, 5457, 34055, 1745, 29703, 29753], + "slow", + [1, 2343, 34144], + "dts-plugin", + [0, 26338, 34145, 34146, 4139], + [ + 0, 5467, 21155, 10614, 5087, 4870, 4880, 5091, 1009, 1011, 1529, 1177, 1895, 1955, 2675, 1192, 34067, 1894, 89, + 3857, 21166, 3980, 91 + ], + [0, 3857, 5128, 12295, 12296, 34070, 34071, 5131, 970, 4627, 6624, 16660, 37460, 4420, 4384], + [1, 2343, 34153], + [2, 5051, 34149], + "cheduler", + "htmlcs", + "standards", + "WCAG", + [0, 34155, 34158, 34159, 2399], + [2, 2287, 33914], + [0, 4419], + "urlify", + [2, 21831, 364], + [0, 32426, 3519], + [0, 25638, 14873, 5472, 17878, 4419], + [1, 2343, 34162], + "stage-js", + [0, 34163, 34164, 2514, 2487], + [0, 31292, 3530, 9354], + [ + 0, 25366, 33243, 33638, 33650, 16804, 33146, 4874, 20374, 29891, 1112, 19839, 33902, 668, 1177, 34113, 2807, + 2990, 3090, 28865, 4042, 9245, 1531, 91, 34115, 29470, 1983, 1984, 2924, 4677, 29161 + ], + [2, 4609, 12607], + [2, 4609, 34168], + [2, 18124, 1781], + "pages", + " output", + [2, 3721, 34169], + " standard", + [2, 4216, 34171], + "standard ", + [2, 34173, 3721], + " for ", + [2, 34175, 4255], + [2, 25264, 34176], + [3, 34177, 11], + [2, 34178, 9338], + "stylish ", + [2, 34180, 16237], + [2, 34180, 4255], + [2, 1983, 6872], + [2, 34183, 22156], + [1, 2343, 34192], + "box2d", + "game", + "physics", + "axios-ntlm", + "xml-crypto", + "2d", + [0, 14631, 0, 34193, 2487], + [0, 29699, 32891, 20204, 1745, 29703, 29753], + "@types/sax", + [1, 2343, 34196], + [0, 34202, 0, 34210, 2399], + [2, 4005, 34198], + "s-cli", + [3, 26390, 16, 13], + "base64id", + [2, 9246, 25513], + [0, 34127], + [2, 34204, 2403], + [3, 5556, 15], + [2, 34206, 34690], + [3, 28724, 15], + [2, 7686, 34209], + "@socket.io/component-emitter", + "minify-templates", + [0, 29699, 32891, 34130, 1586, 1745, 29703, 29753], + [1, 2343, 34212], + [0, 34213, 0, 29047, 2523], + [0, 10744, 1209, 3084, 25886], + [1, 2343, 34215], + [0, 0, 34223, 34248, 2523], + [2, 34217, 158], + [3, 5386, 10], + "faceoff", + [2, 34220, 34221], + [3, 16767, 16], + "erformance-monitor", + [2, 16766, 6812], + [ + 0, 107, 442, 4856, 7677, 1091, 1177, 1895, 1894, 4039, 4060, 4193, 4072, 4481, 4484, 4508, 4514, 4523, 1983, + 34165, 34166, 34183, 34184, 4614, 1984 + ], + "fast-wrap-ansi", + "@rslib/core", + "eventsource", + "oxc", + "sockjs", + [2, 28573, 34230], + "rslib", + [2, 28606, 34232], + "rstest-config", + [2, 34234, 6847], + [3, 10235, 18], + [2, 29314, 3090], + "@pnpm/list", + "@pnpm/workspace.find-packages", + [2, 1463, 20001], + [2, 37509, 34240], + "eeverse", + [2, 34242, 34243], + [3, 4892, 10], + "npkg__lockfile", + "fast-npm-meta", + "@nolyfill/internal", + [2, 34247, 35011], + "@nolyfill/", + [0, 34186, 12075, 5284, 91, 34187, 34188, 16284, 34191, 5131], + [1, 2343, 34250], + [0, 0, 34251, 34252, 2523], + [ + 0, 107, 4874, 1009, 1011, 17494, 1177, 1895, 2025, 2899, 1894, 34197, 4060, 34199, 4193, 4508, 4514, 91, 1983, + 34165, 34166, 34183 + ], + [0, 12075, 34187, 22894, 8691, 16284, 34191, 1424, 16697, 5122, 5131], + [1, 2343, 34255], + "separated", + [0, 34256, 0, 34257, 2537], + [0, 4447], + [0, 4525, 5284, 34227, 33479, 1894, 91], + [1, 2343, 34259], + [0, 0, 0, 34285, 2537], + "fumadb", + "microfiber", + [3, 8277, 10], + "alars", + [2, 34262, 34263], + "load-files", + [2, 5527, 34265], + "compact", + [2, 3715, 34267], + [2, 9470, 34268], + "@anvilco/apollo-server-plugin-introspection-metadata", + "kysely", + "bdd-lazy-var", + "@orpc/zod", + "@orpc/otel", + "neverthrow", + "introspection", + "@c15t/logger", + "-query", + [2, 34276, 34278], + "@orpc/server", + "@orpc/openapi", + "@orpc/contract", + "@c15t/translations", + [2, 13498, 202], + [ + 0, 4796, 26481, 2968, 31176, 6646, 3378, 3420, 9478, 6666, 3552, 4135, 18710, 7671, 33163, 33186, 18280, 9527, + 4749 + ], + "kysely-pglite", + "@c15t/vitest-config", + [2, 34289, 34290], + "@libsql/", + "kysely-libsql", + "string-t", + [2, 34295, 21160], + "o-stream", + [2, 34291, 34293], + "@c15t", + [1, 2343, 34322], + "consent", + "privacy", + "ccpa", + "binary-split", + [2, 7241, 14922], + "lgpd", + "self-host", + "consent-management", + "user-privacy", + [2, 34307, 34308], + "data-pro", + "tection", + "cookie-banner", + [2, 34304, 34311], + "-platform", + [2, 2339, 5365], + "cmp", + [2, 34315, 7179], + "consent-", + [3, 5079, 14], + "imageinfo", + "prettydiff", + "sprity-css", + "/common", + "sprity-lwip", + [0, 0, 34323, 2514, 2537], + [ + 0, 29713, 34235, 635, 34236, 34237, 811, 8850, 816, 23339, 8712, 28206, 34239, 34241, 29308, 1525, 1707, 34244, + 3749, 3527, 4079, 34245, 34246 + ], + "object-stream", + [1, 2343, 34327], + "through2-spy", + [0, 34329, 0, 29047, 2443], + "coordinates", + [ + 0, 13387, 13412, 13388, 20908, 13395, 1170, 1362, 1364, 2026, 29067, 2670, 1209, 3084, 3162, 3237, 3509, 4148, + 4507 + ], + [1, 2343, 34332], + "css-sprite", + [0, 33469, 33476, 6151, 2443], + [1, 2343, 34334], + [0, 34335, 33476, 6151, 2443], + [0, 31874, 546, 8604, 8605], + [1, 2343, 34337], + [0, 34338, 34339, 34340, 2399], + [ + 0, 4763, 16230, 15095, 34260, 34271, 34273, 4341, 34274, 34275, 32176, 34277, 34280, 34281, 34282, 34283, 13471, + 34284, 13495, 13502 + ], + [0, 3244, 32426, 6526, 91, 4874, 34286, 6494, 34287, 12207, 34288, 33237, 34292], + [0, 34297, 34298, 7229, 34299, 34302, 5995, 34303, 34304, 34305, 33055, 34306, 34309, 34310, 34313, 34314], + [1, 2343, 34343], + "asn1", + [0, 34344, 34346, 34347, 2399], + [0, 2105, 3527, 2072], + "bcrypt-pbkdf", + [0, 28177, 4880, 1701, 3442, 21166, 91], + [0, 3857, 12295, 12296, 31937, 6574, 6635, 5128, 31912, 89, 5131, 181, 1017, 45, 13814, 22875, 2414], + [1, 2343, 34349], + [0, 34350, 0, 34351, 4139], + [0, 4597, 3173, 940, 34048], + [0, 29699, 32891, 1563, 1745, 29703, 29753], + 1772409600000, + [1, 2343, 34361], + "integrity", + "subresource integrity", + "sri", + "sri hash", + "sri ", + "sri string", + [2, 34358, 1179], + [0, 0, 34362, 34381, 34352], + [ + 0, 34363, 32558, 48, 53, 5240, 83, 87, 34368, 34369, 5583, 6373, 1178, 1193, 17217, 24621, 29883, 34370, 29775, + 1540, 1759, 1177, 1935, 1938, 27790, 2126, 29945, 35634, 2675, 1192, 11896, 32206, 11348, 11350, 3534, 34376, + 1894, 3720, 3758, 34197, 4042, 34377, 4060, 4073, 4079, 4146, 91 + ], + [2, 34364, 34365, 34367], + [3, 5215, 13], + "ollup-plugin", + "shuruhatik", + [3, 10697, 17, 6], + "@fezvrasta/tsc-silent", + "@khanacademy/flow-to-ts", + [2, 34374, 34375], + "long-", + [2, 4252, 591], + [2, 34371, 34372], + [3, 14697, 22], + "place-variables", + "poster", + [2, 34378, 34379], + [3, 11802, 15], + "low-entry", + "version-guard", + [0, 8190, 8191, 5399, 8192, 34384, 34385], + [3, 12809, 13], + [2, 34382, 7051], + "popper", + [2, 8194, 34386], + " engine", + [0, 0, 7997, 7998, 34352], + [1, 2343, 34390], + [3, 1570, 26], + [0, 0, 34394, 34396, 34352], + "fig-spec", + [2, 34389, 34391], + "dotgitignore", + [0, 10615, 6503, 4874, 1387, 1429, 2899, 3363, 4042, 4426, 91], + "std-mocks", + [ + 0, 34397, 2238, 34398, 16629, 7521, 34399, 29804, 31687, 1993, 16284, 9006, 34400, 34401, 8424, 34402, 6829, + 26514, 34403, 34404, 34406 + ], + "anime", + "anime.js", + "timeline", + "easings", + "cubic-bezier", + "splitText", + "WAAPI", + "Canvas", + "ban-sensitive-files", + "WebGL", + "deps-ok", + "dont-crack", + "git-issues", + "pre-git", + "simple-co", + "mmit-message", + [2, 34411, 34412], + [0, 9116, 9122, 9131, 34352], + [1, 2343, 34416], + [0, 7967, 7938, 7939, 34352], + [1, 2343, 34418], + [0, 0, 0, 10570, 34352], + [0, 0, 12106, 12107, 34352], + [1, 2343, 34422], + "modern-syslog", + [0, 0, 11488, 34424, 34352], + "winser", + [0, 7789, 34425], + "decrypt", + "etsy", + "metric", + [0, 34430, 34436, 34440, 34352], + "aggregation", + [0, 34431, 34432, 34433, 34434, 34435], + "ev-emitter", + "fizzy-ui-utils", + "get-size", + "imagesloaded", + "unidragger", + [0, 1462, 1177, 34437, 34439, 2907, 4320, 4323, 4072], + [2, 1949, 34438], + "etafizzy", + "jquery-bridget", + [0, 4453, 6398, 34441, 31512, 32054, 35060, 36197, 1388], + "flick", + [0, 17201, 17202, 17203, 34352], + [3, 11146, 12], + [1, 2343, 34445], + [0, 0, 34446, 34448, 34352], + [0, 1429, 1700, 2323, 2367, 22122, 2409, 2447, 2494, 2530, 34447, 2899], + [2, 22465, 35458], + [0, 6901, 27679, 16626, 3220, 3222, 1666], + [0, 0, 0, 18014, 34352], + [1, 2343, 34451], + [0, 0, 0, 34452, 34352], + [0, 17199, 16892, 2869, 3166, 34453, 11326, 207, 20531, 57], + "lex", + [1, 5293, 34455], + [0, 8391, 34352], + [1, 2343, 34457], + [0, 34458, 0, 2514, 34352], + [0, 1395], + [0, 20095, 20097, 2514, 34352], + [1, 2343, 34461], + [0, 0, 34462, 34463, 34352], + [0, 2080, 4389], + [0, 18012, 25866, 18108, 34464, 30091], + "maths", + [3, 10821, 18], + "11y", + [2, 34465, 34466], + "pannellum", + [1, 2343, 34470], + [0, 0, 34477, 34483, 34352], + [3, 32229, 23], + "hots", + [2, 34471, 34472], + "-puppeteer", + [2, 34473, 34474], + [2, 10818, 31765], + [0, 2899, 2025, 16189, 34478, 34482, 3469, 1149], + [2, 34481, 2844], + "orchbox", + [2, 22060, 34479], + "persist-", + "jugglingdb", + [0, 11415, 3469, 34482, 16189], + [2, 4270, 676], + "patternlab", + "-pat", + [ + 0, 53, 61, 83, 87, 90, 92, 442, 10615, 29767, 6061, 16607, 6063, 6065, 16608, 16612, 29769, 1193, 20517, 29775, + 1503, 1593, 1610, 1177, 15510, 1942, 2026, 2323, 2338, 2544, 2765, 24652, 29778, 1192, 2780, 1776, 29779, 2990, + 9750, 5103, 29780, 29783, 3758, 3957, 4131, 4523, 1983, 29770, 27900 + ], + [1, 2343, 34495], + "tern-library", + [2, 34486, 34489], + [2, 21043, 34490], + "django-", + [2, 34492, 5354], + "jinja2", + [0, 0, 0, 34496, 34352], + [0, 34497, 11328], + "panorama", + [0, 26328, 26329, 26330, 34352], + [1, 2343, 34501], + "findit2", + [0, 34502, 0, 2514, 34352], + [0, 3760, 13126, 4747, 4709, 3259, 4545, 1481, 16734, 1512, 4720], + [1, 2343, 34504], + [0, 7936, 7938, 7939, 34352], + [0, 0, 0, 23762, 34352], + [1, 2343, 34507], + [0, 34509, 34512, 34518, 34352], + "funsert", + [0, 3744, 34511], + "into-stream", + "rip-out", + [ + 0, 48, 53, 78, 87, 90, 94, 1148, 1596, 1843, 1845, 1177, 34514, 17585, 1951, 1959, 2832, 2899, 3421, 89, 3824, + 32510, 34517 + ], + "Assert", + [2, 34515, 34516], + [3, 1886, 16], + "daddy-react", + "setup-env", + [0, 8221, 3857, 21610, 34519, 11512, 89], + "compatiblity", + "compatibl", + "ity", + [0, 0, 0, 23771, 34352], + "-metadata", + [2, 26612, 34523], + [0, 11976, 4874, 7677, 12690, 3377, 3446, 7461, 9245, 91, 1984], + [1, 2343, 34529], + "livestream", + [2, 34527, 3642], + [0, 0, 34530, 2514, 34352], + [ + 0, 53, 87, 811, 13866, 816, 1198, 1290, 1389, 2766, 2297, 2871, 2881, 2886, 2898, 6387, 2923, 3758, 4042, 4045, + 34531, 20981, 34533, 20983, 4073, 4650 + ], + [2, 34532, 671], + [3, 15277, 16], + [2, 15476, 34534], + "ass", + [1, 2343, 34536], + [0, 0, 34538, 2514, 34352], + "gulp-rimraf", + [0, 4039, 3188, 34539, 34543], + "testit", + "string.js", + "stringjs", + "S", + "gethub", + [1, 2343, 34545], + [0, 0, 34546, 34548, 34352], + [0, 48, 53, 87, 1178, 1261, 1177, 1881, 1895, 1938, 1955, 1192, 1894], + "codsen-utils", + [ + 0, 6270, 4202, 1413, 34549, 57, 34550, 17180, 14638, 12786, 30946, 2382, 2098, 2090, 7017, 6435, 6270, 15253, + 3721 + ], + "bits", + "iec", + "ranges-apply", + 0, + "ranges-push", + "string-le", + "ft-right", + [2, 34554, 34555], + 0, + "onkey-traverse", + [2, 19434, 34558], + "ranges-invert", + 0, + "jsp", + "mixed", + "xhtml", + 0, + 0, + 0, + 0, + [2, 2183, 7230], + 0, + 0, + 0, + 0, + 0, + "-html4", + [2, 26854, 34575], + [3, 34576, 19], + [2, 34577, 27769], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "payment processing", + "credit cards", + 0, + 0, + 0, + 0, + [2, 2168, 3081], + "sdk-", + [2, 34608, 1102], + [2, 26424, 34609], + "fly-register", + [2, 202, 34611], + "strong-agent", + 0, + "strong-arc", + "strong-build", + 0, + 0, + "strong-deploy", + "strong-m", + "esh-models", + [2, 34620, 34621], + "strong-re", + "gistry", + [2, 34623, 34624], + "strong-start", + "strong-s", + "upervisor", + [2, 34627, 34628], + 0, + "core-util-is", + "strong-de", + "bugger", + [2, 34632, 34633], + "wagger-ui", + [2, 34627, 34635], + [3, 4369, 10], + "-validate", + [2, 22188, 34638], + 0, + 0, + "LoopBack", + "Platform", + "alerts", + 0, + 0, + "event loop", + 0, + 0, + "heroku", + "nodeops", + "npmrc", + "openshift", + "slc", + "est functions", + [2, 34141, 34655], + "strong-cli", + "strong-cl", + "uster-control", + [2, 34658, 34659], + "strongops", + "upstart", + 0, + 0, + 0, + 0, + [2, 27954, 1699], + [2, 27954, 2070], + [2, 27954, 3144], + "@zip.js/zip.js", + [2, 3503, 4549], + 0, + "@astrojs/check", + "@astrojs/", + "starlight", + [2, 34674, 34675], + [2, 12310, 1430], + [3, 811, 8], + [2, 34678, 1388], + "@shoelace-style/shoelace", + [2, 13283, 8891], + 0, + "astro", + "hanbi", + "escape-at", + [2, 2827, 34685], + "jsdoc-ts", + [2, 2701, 1932], + [2, 34687, 34688], + "lit", + 0, + "dictionary", + [2, 19319, 34692], + "Android", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 19801, 2741], + "css-t", + "o-react-native", + [2, 34716, 34717], + 0, + [2, 11832, 14438], + [2, 5129, 10699], + [2, 4881, 34721], + "rame", + [2, 34723, 10699], + [2, 11364, 34724], + "-plugin-rtl", + [2, 7917, 34726], + 0, + 0, + "ts-toolbelt", + 0, + 0, + 0, + 0, + 0, + 0, + "bunchee", + "stylis-", + 0, + "rule-sheet", + [2, 34738, 34740], + 0, + "zeit", + 0, + 0, + 0, + 0, + 0, + "hack", + 0, + 0, + 0, + 0, + 0, + "globjoin", + "-tag-names", + [2, 18110, 34756], + "-nested-selector", + [2, 5250, 34758], + [2, 30273, 34759], + 0, + "svg-tags", + 0, + "github-info", + [2, 6018, 34764], + "@styl", + "elint/prettier-config", + [2, 34766, 34767], + [3, 34768, 11], + [2, 34769, 19692], + [3, 4852, 9], + "lanced-match", + [2, 34771, 34772], + [3, 25558, 14], + [2, 34774, 5260], + [2, 4865, 4565], + "murmurhash", + [2, 8802, 34777], + [3, 13059, 16], + [2, 34779, 2706], + 0, + 0, + "@types/svg", + "-tags", + [2, 34783, 34784], + "ylelint", + [2, 17371, 34786], + 0, + 0, + "set-stylelint", + [2, 32137, 34790], + [3, 3676, 10], + [2, 34792, 367], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [3, 4323, 16], + 0, + 0, + 0, + 0, + [2, 1280, 8554], + 0, + 0, + "css-values", + "shortcss", + 0, + "dela", + "ration", + 0, + 0, + "-strict-value", + [2, 34813, 34816], + [2, 34812, 34817], + "keyword", + "z-index", + 0, + 0, + 0, + 0, + "orting", + [2, 3677, 34825], + 0, + "udochenkov", + [2, 25790, 34828], + 0, + "ed-syntax", + [2, 30481, 34831], + [3, 24627, 16], + "hudochenkov", + [2, 34833, 34834], + 0, + 0, + 0, + 0, + 0, + [3, 30356, 14], + [2, 34841, 27739], + 0, + "github-c", + "s-list", + [2, 17551, 34845], + [2, 34844, 34846], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [3, 1369, 11], + [2, 34859, 30480], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "jar", + "cookiejar", + 0, + [2, 33935, 27], + 0, + "tinyify", + 0, + "frisbee", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "promised", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "capability", + "16m", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "periscopic", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "@types/sade", + [3, 27700, 21], + [3, 27700, 22], + [2, 34941, 20500], + [3, 9566, 10], + [2, 34943, 2847], + [2, 4353, 34944], + 0, + 0, + 0, + 0, + 0, + "@kiwi/eslint-config", + "@kiwi/", + [2, 34952, 7628], + 0, + "@types/pug", + 0, + "easy-import", + [2, 3562, 34957], + 0, + 0, + 0, + 0, + 0, + "@res", + "vg/resvg-js", + [2, 34964, 34965], + "prettysize", + 0, + [3, 30071, 12], + "hromium", + [2, 34969, 34970], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [3, 4362, 11], + 0, + 0, + 0, + "lease-notes", + [2, 15842, 34988], + 0, + "precache", + 0, + 0, + 0, + 0, + 0, + "tape-promise", + 0, + "autogen", + 0, + 0, + 0, + 0, + "multil", + "ang-", + [2, 2055, 4298], + [2, 35005, 35006], + [2, 35004, 35007], + 0, + 0, + "promise.any", + 0, + [2, 29351, 7625], + 0, + "readmeio", + 0, + 0, + 0, + 0, + 0, + [2, 4364, 12659], + [3, 4367, 9], + "emplates", + [2, 35022, 35023], + 0, + "swagger UI", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "s-readme", + [2, 9828, 35034], + [2, 11941, 35035], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "nodelint", + "still", + [3, 29280, 15], + 0, + 0, + "travis-cov", + 0, + "jinja", + 0, + 0, + 0, + 0, + "swipe", + "framework7", + "gallery", + 0, + "slideshow", + 0, + 0, + 0, + 0, + [2, 14507, 3048], + [2, 2655, 35067], + 0, + 0, + "sync-rpc", + [2, 21658, 705], + 0, + "flowgen2", + 0, + 0, + 0, + 0, + 0, + " information", + [2, 623, 35080], + "sysinfo", + 0, + "freebsd", + "openbsd", + "netbsd", + "cpu", + "cpuload", + "physical cores", + 0, + 0, + "logical cores", + "cores", + 0, + "socket type", + "fsstats", + "diskio", + " devices", + [2, 1359, 35098], + "netstats", + [2, 6072, 591], + [2, 11996, 35101], + "network ", + "connections", + [2, 35103, 35104], + "network stats", + "iface", + "printer", + "processes", + "users", + "internet", + "battery", + 0, + 0, + "docker stats", + "docker ", + [2, 35116, 35109], + 0, + "graphic card", + "graphic c", + "ontroller", + [2, 35120, 35121], + 0, + 0, + "disk layout", + "audio", + 0, + "bluetooth", + "wifi", + 0, + "wifinetworks", + 0, + "virtual box", + "virtualbox", + "BIOS", + "chassis", + 0, + 0, + 0, + 0, + "@jsenv/file-size-impact", + "-style-", + [2, 21605, 3733], + [2, 35142, 35143], + [2, 13565, 35144], + "symbol-es6", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "hase", + "draht", + "limes", + "lusca", + "partof", + "timer2", + 0, + "uuidv4", + "crypto2", + "nocache", + "datasette", + 0, + "json-lines", + 0, + "processenv", + "stethoskop", + 0, + "flaschenpost", + "-events", + [2, 8891, 35172], + 0, + "nodeenv", + "roboter", + 0, + "assertthat", + [2, 35166, 4219], + 0, + "cqs", + "cqrs", + 0, + 0, + 0, + 0, + 0, + 0, + "className", + 0, + "classList", + 0, + "override", + 0, + 0, + 0, + 0, + "dlv", + 0, + 0, + 0, + 0, + 0, + 0, + "@tapjs/after", + [2, 35205, 27554], + "@tapjs/a", + "sserts", + [2, 35207, 35208], + "@tapjs/", + 0, + "@tapjs/before", + [2, 35212, 27554], + "@tapjs/chdir", + 0, + "@tapjs/core", + [2, 35210, 7131], + "@tapjs/fi", + "xture", + [2, 35218, 35219], + [2, 35210, 9261], + "@tapjs/mock", + "node-ser", + "ialize", + [2, 35223, 35224], + [2, 35210, 35225], + "@tapjs/run", + [2, 35210, 8745], + 0, + "@tapjs/spawn", + 0, + "@tapjs/stdin", + "@tapjs/test", + "@tapjs/t", + [2, 35234, 2528], + [2, 35210, 6812], + [2, 4026, 1204], + 0, + "tapjs", + "tapjs plugin", + 0, + 0, + 0, + 0, + "tap-out", + 0, + "tapes", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "resumer", + [2, 23236, 35259], + "@ljharb/t", + "hrough", + [2, 35261, 35262], + [2, 5613, 7067], + "dotignore", + [2, 2565, 15126], + 0, + "ecstatic", + [3, 3404, 9], + "osix-or-windows", + [2, 35269, 35270], + 0, + "harness", + 0, + 0, + 0, + 0, + [2, 9497, 29051], + "chownr", + "yallist", + 0, + "chmodr", + 0, + "-to-array", + [2, 2018, 35284], + 0, + 0, + 0, + 0, + 0, + "brittle", + 0, + 0, + 0, + 0, + 0, + "b4a", + "fast-fifo", + "streamx", + 0, + 0, + 0, + 0, + 0, + 0, + [2, 6346, 6770], + "DDD", + [2, 6346, 8726], + 0, + "front end", + 0, + "back end", + 0, + 0, + 0, + 0, + "cz-format-extension", + 0, + 0, + 0, + 0, + 0, + 0, + "telegram-api", + "telegram-", + "client-api", + [2, 35325, 35326], + "tdlib", + "tglib", + [3, 3299, 10], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "tempdir", + "tmpfile", + 0, + 0, + 0, + 0, + "unique-s", + [2, 35348, 8961], + 0, + 0, + 0, + 0, + 0, + 0, + "@cronvel/get-pixels", + 0, + "chroma-js", + "lazyness", + 0, + 0, + "gen-events", + [2, 3286, 35362], + "seventh", + "string-kit", + 0, + "tree-kit", + 0, + "256 colors", + 0, + "true color", + 0, + "input field", + "gpm", + "screenbuffer", + "textbuffer", + "32-bit", + 0, + 0, + 0, + 0, + "charm", + "visualwidth", + 0, + "80s", + "ibm", + 0, + 0, + 0, + 0, + [3, 5012, 18], + [2, 35391, 4226], + 0, + "@ls-lint/ls-lint", + "astring", + 0, + 0, + 0, + 0, + 0, + 0, + "glify-js", + [2, 7817, 35402], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "multiline-ts", + "spawn-p", + [2, 35418, 4357], + 0, + 0, + "only-allow", + "sinon-", + "assert-stub", + [2, 35423, 35424], + [2, 35423, 2299], + 0, + "unlinted", + 0, + 0, + 0, + 0, + 0, + "@deve", + "/bin-v8-flags-filter", + [2, 674, 35435], + [2, 35434, 35436], + [3, 35437, 12], + [2, 35438, 29084], + "bowser", + "chrome-", + [2, 20844, 8626], + [2, 35441, 35442], + "device-specs", + "elegant-s", + [2, 35445, 10252], + 0, + 0, + 0, + "get-os-info", + 0, + 0, + "import-lazy", + 0, + "is-podman", + "-async-hook", + [2, 3077, 35456], + "-commonjs", + [2, 17102, 35458], + [2, 17003, 35459], + [2, 14709, 35460], + "os-family", + "pinkie", + [3, 7872, 10], + [2, 35464, 2013], + [2, 2093, 10903], + [2, 15034, 35466], + 0, + "replicator", + 0, + "-tools", + [2, 20008, 35471], + [2, 4415, 35472], + "testcafe-", + "hammerhead", + [2, 35474, 35475], + 0, + "legacy-api", + [2, 35474, 35478], + [3, 22279, 11], + [2, 35480, 1803], + [2, 35474, 35481], + [3, 35482, 18], + [2, 35483, 3392], + [2, 35483, 6907], + [2, 35483, 4386], + [2, 35483, 28592], + 0, + 0, + 0, + 0, + "testcafe-s", + [2, 11068, 1179], + [2, 35492, 35493], + [2, 7051, 4007], + [2, 17475, 35495], + "unquote", + "url-to-o", + "ptions", + [2, 35498, 35499], + 0, + "@ffprobe-installer/ffprobe", + "@types/ca", + "llsite", + [2, 35503, 35504], + [3, 5245, 9], + "@types/dedent", + [3, 5546, 10], + "ragent", + [2, 35508, 35509], + "connector", + [2, 26353, 35511], + "caller", + "dom-walk", + [3, 25792, 16], + "mmerhead", + [2, 35515, 35516], + "express-ntlm", + "gulp-clone", + 0, + "gulp-ll-next", + [3, 27610, 11], + [2, 35522, 2869], + "qunit-harness", + [2, 2337, 35524], + 0, + "gulp-step", + "-spe", + "c-with-retries", + [2, 35528, 35529], + [2, 32261, 35530], + "sl-self-signed-certificate", + [2, 8423, 35532], + [3, 35473, 17], + "-browserstack", + [2, 9962, 35535], + [2, 35534, 35536], + 0, + "automated", + "QA", + 0, + 0, + 0, + 0, + "@types/doc", + "kerode", + [2, 35545, 35546], + "docker-", + [2, 35548, 2940], + [2, 3583, 33893], + "ssh-", + 0, + "port-forward", + [2, 20844, 35553], + [2, 35551, 35554], + 0, + [3, 23843, 13], + [2, 35557, 3015], + [3, 28203, 13], + "ties-reader", + [2, 35559, 35560], + [3, 7752, 11], + [2, 35562, 2150], + 0, + 0, + 0, + 0, + 0, + "object-es5", + [2, 26988, 35569], + 0, + "limate-test-reporter", + [2, 14354, 35572], + "conf-env", + [2, 1611, 35574], + "headerify", + "is-number", + 0, + "teenytest", + [2, 35579, 4007], + 0, + "test double", + 0, + 0, + 0, + 0, + 0, + "fireworm", + "printf", + "_string", + [2, 369, 35590], + 0, + [2, 1362, 23842], + "hallow-", + [2, 35594, 1693], + [2, 21479, 35595], + 0, + "saucie", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "dpdm", + "dcs", + [2, 16693, 35610], + 0, + 0, + 0, + 0, + 0, + "three.js", + "reality", + [2, 9352, 35618], + "augmented-reality", + "webgl", + "webgl2", + 0, + 0, + "webaudio", + 0, + 0, + "webgpu", + "webxr", + 0, + 0, + 0, + 0, + [2, 2182, 20], + "node-st", + "dlib-browser", + [2, 35635, 35636], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "hundreds", + "polendina", + 0, + 0, + "stream-spigot", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "unexpand", + "homedir", + 0, + "tilde", + 0, + 0, + 0, + 0, + "number-is-nan", + 0, + "profile", + 0, + 0, + 0, + 0, + "bee-affix", + "bee-a", + "bee-alert", + "bee-anchor", + 0, + 0, + 0, + "bee-animate", + [2, 35683, 9820], + "bee-", + 0, + 0, + "bee-backtop", + 0, + "dge", + "bee-badge", + "bee-b", + [2, 35698, 9837], + "bee-button", + [2, 35700, 9847], + "bee-calendar", + 0, + 0, + "bee-carousel", + "bee-cascader", + "bee-c", + "bee-checkbox", + [2, 35707, 142], + "bee-collapse", + "bee-col", + "orpicker", + [2, 35711, 35712], + "bee-co", + 0, + "mplex-grid", + [2, 35714, 35716], + [2, 35691, 3812], + 0, + "bee-dnd", + "bee-drawer", + 0, + "bee-dropdown", + "bee-form", + 0, + "-control", + [2, 35724, 35726], + "bee-form-", + [2, 35728, 7227], + "bee-icon", + "bee-i", + "nput-group", + [2, 35731, 35732], + 0, + "-addon", + [2, 35733, 35735], + "bee-input-", + [2, 35737, 6988], + "bee-label", + 0, + "bee-layout", + 0, + "bee-loading", + 0, + "-state", + [2, 35743, 35745], + 0, + "bee-locale", + 0, + "bee-menus", + 0, + "bee-message", + 0, + "bee-modal", + 0, + "bee-navbar", + "bee-n", + 0, + 0, + "otification", + [2, 35757, 35760], + "bee-overlay", + "page-layout", + [2, 35691, 35763], + "bee-pag", + "ination", + [2, 35765, 35766], + 0, + "bee-panel", + "bee-p", + "opconfirm", + [2, 35770, 35771], + 0, + "bee-popover", + "rogress-bar", + [2, 35770, 35775], + 0, + "radio", + "bee-radio", + 0, + "bee-rate", + "search-panel", + [2, 35691, 35782], + 0, + "bee-select", + 0, + "bee-slider", + 0, + "bee-step", + 0, + "bee-svgicon", + "bee-switch", + "bee-table", + 0, + "bee-tabs", + 0, + "bee-tag", + 0, + "bee-tile", + 0, + 0, + "bee-timeline", + "bee-time", + [2, 35803, 3811], + "bee-tooltip", + "bee-transfer", + "bee-trans", + [2, 35807, 9943], + 0, + "bee-tree", + [2, 35810, 11245], + "bee-upload", + 0, + [2, 2359, 1623], + "-wrap", + [2, 2376, 35815], + "inline-urls", + [2, 21897, 35817], + [2, 4437, 1732], + 0, + "tinper", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "tinylibs", + 0, + 0, + 0, + 0, + "@deno/shim-deno-test", + 0, + [3, 4443, 9], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + " threads", + [2, 6812, 35848], + 0, + "thread pool", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "pushalert", + " toast", + [2, 3857, 35866], + "toastify", + [2, 3862, 35868], + [2, 3862, 9044], + "Typescript", + 0, + 0, + 0, + 0, + "emble-js", + [2, 31072, 35876], + "processmd", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [3, 5152, 10], + "RFC6265", + "RFC2965", + 0, + 0, + 0, + 0, + 0, + "tinytim", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 7231, 7316], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "html-select", + 0, + 0, + "html-tokenize", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "aggregate", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "bs-logger", + "make-error", + 0, + [2, 6308, 3065], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 13664, 6893], + 0, + [3, 5480, 12], + "oader", + [2, 35970, 35971], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "migration", + "migrations", + "cli-tool", + 0, + 0, + 0, + 0, + "@ts-morph/common", + "block-writer", + [2, 10988, 35988], + 0, + 0, + "static ", + [2, 35992, 19748], + "refactor", + [2, 6721, 35994], + 0, + 0, + 0, + 0, + [2, 20223, 6859], + [2, 20223, 1276], + [2, 12448, 16443], + "@csp", + "otcode/source-map-support", + [2, 36003, 36004], + 0, + "dprint", + "@swc/wasm", + "ntypescript", + "util.", + [2, 36010, 19138], + 0, + 0, + 0, + 0, + 0, + [2, 20442, 7163], + "omit-deep", + 0, + "power-assign", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "bre", + "rete", + 0, + "rule engine", + "rules engine", + " rule engine", + [2, 5284, 36038], + "js rule engine", + [2, 6591, 6770], + 0, + 0, + 0, + 0, + 0, + [2, 18284, 4295], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "typedefs", + "typedef", + 0, + "initions", + [2, 36056, 36058], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "polite-json", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 27572, 4014], + 0, + "codelyzer", + [3, 4490, 10], + "siste", + "nt-codestyle", + [2, 36092, 36093], + [2, 36091, 36094], + 0, + "tslint-divid", + [2, 4491, 2700], + [2, 13530, 1334], + [2, 4491, 36099], + "tslint-mi", + "sc-rules", + [2, 36101, 36102], + 0, + 0, + "ts-lint", + 0, + 0, + 0, + 0, + 0, + [3, 20474, 12], + "slint-plugin", + [2, 36112, 36113], + 0, + 0, + 0, + 0, + [2, 4671, 3209], + "joycon", + 0, + "ts-e", + [2, 36122, 154], + 0, + 0, + 0, + 0, + 0, + [3, 14596, 11], + [2, 36129, 8791], + 0, + 0, + 0, + 0, + "@mixmark-io/domino", + 0, + 0, + 0, + "-attendant", + [2, 4495, 36139], + 0, + 0, + 0, + 0, + 0, + "grunt-comp", + 0, + "onent-io", + [2, 36146, 36148], + [3, 2243, 10], + 0, + "at-sourcemap", + [2, 36150, 36152], + "grunt-m", + "arkdown", + [2, 36154, 36155], + [3, 2300, 11], + "grunt-p", + "ush-release", + [2, 36158, 36159], + 0, + "gex-replace", + [2, 24294, 36162], + [2, 3503, 16237], + [2, 22277, 36164], + "unfunk-reporter", + [2, 3192, 36166], + 0, + 0, + 0, + 0, + 0, + "tap-b", + 0, + "rowser-color", + [2, 36173, 36175], + "-util", + [2, 4497, 36177], + 0, + 0, + "curve25519", + "ed25519", + "nacl", + 0, + "poly1305", + "public", + "salsa20", + 0, + "signatures", + 0, + 0, + 0, + 0, + [2, 4498, 1574], + 0, + 0, + "DOM", + "Twitter", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 4505, 1732], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "media-typer", + 0, + "checking", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [3, 596, 9], + "/material-color-utilities", + [2, 36239, 36240], + 0, + 0, + [2, 4511, 699], + [3, 4512, 14], + [2, 3131, 4964], + "material-3", + [2, 4508, 1932], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "JsDocs", + 0, + 0, + 0, + 0, + 0, + 0, + "cli-prompt", + 0, + "concatenate", + 0, + 0, + "ebook", + "pandoc", + 0, + "kindlegen", + 0, + 0, + 0, + 0, + [3, 27847, 12], + [2, 36283, 3231], + [2, 12690, 18877], + 0, + 0, + "-findorcreate", + [2, 3232, 36288], + [2, 7627, 4487], + 0, + 0, + 0, + 0, + "@sqltools/formatter", + 0, + 0, + 0, + 0, + 0, + 0, + "-rename", + [2, 22507, 36302], + [3, 36303, 12], + [2, 36304, 4070], + [3, 5055, 10], + [2, 36306, 1722], + "gulpclass", + 0, + 0, + 0, + 0, + 0, + 0, + "@dprint/formatter", + "@esfx/canceltoken", + "@dprint/", + [2, 36317, 91], + 0, + "azure-", + "-node-api", + [2, 20999, 36321], + [2, 36320, 36322], + "mocha-f", + "ivemat-progress-reporter", + [2, 36324, 36325], + 0, + 0, + "able-stylish", + [2, 26072, 36329], + [2, 10749, 36330], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "commandpost", + 0, + "wer-assert", + [2, 13415, 36344], + "intel", + "li-espower-loader", + [2, 36346, 36347], + 0, + 0, + 0, + 0, + 0, + [2, 5554, 13774], + [2, 18792, 36354], + [2, 13058, 36355], + [3, 36356, 23], + [2, 36357, 1993], + 0, + "css-utils", + [2, 8802, 36360], + [2, 36357, 16839], + "erved-words", + [2, 31525, 36363], + "-sync2", + [2, 3613, 36365], + "sass-svg", + 0, + 0, + 0, + 0, + 0, + "finally", + [2, 9466, 36373], + [2, 4532, 1732], + 0, + [2, 27100, 4255], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "jsmin", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "random-bytes", + 0, + 0, + 0, + 0, + 0, + 0, + [2, 1024, 4525], + "affix", + [2, 1016, 36410], + [3, 36411, 12], + [2, 36412, 9809], + "uto-link", + [2, 36412, 36414], + [2, 36412, 9826], + [3, 1015, 12], + 0, + "ack-top", + [2, 36417, 36419], + [3, 36420, 13], + [2, 36421, 35696], + [2, 36417, 9837], + [2, 1015, 9847], + [2, 1016, 9026], + [3, 36425, 13], + [2, 36426, 9854], + [3, 36427, 14], + [2, 36428, 9860], + [2, 36426, 9863], + [3, 36425, 12], + [2, 36431, 5449], + [2, 36431, 11200], + [3, 36433, 13], + [2, 36434, 3809], + "date-input", + [2, 1016, 36436], + [3, 36437, 16], + [2, 36438, 3811], + [3, 36437, 12], + "escriptions", + [2, 36440, 36441], + "ivider", + [2, 36440, 36443], + [2, 36440, 9997], + [3, 36445, 13], + [2, 36446, 11206], + [2, 1016, 3599], + 0, + "file-input", + [2, 1016, 36450], + [3, 36451, 12], + [2, 36452, 3469], + [2, 1016, 10052], + [2, 1016, 8691], + [3, 36455, 12], + [2, 36456, 28176], + [2, 36456, 35971], + [2, 1016, 4403], + [3, 36459, 13], + [2, 36460, 10104], + [3, 36459, 12], + [2, 36462, 3852], + [3, 36463, 13], + "nth-picker", + [2, 36464, 36465], + [2, 1016, 22005], + [2, 1016, 18367], + [3, 36468, 12], + "in-code", + [2, 36469, 36470], + "opover", + [2, 36469, 36472], + [3, 36473, 13], + "rtal", + [2, 36474, 36475], + [2, 36469, 10148], + [2, 1016, 35778], + [3, 36478, 13], + [2, 36479, 6864], + "search-", + [2, 36481, 1631], + [2, 1016, 36482], + [3, 36483, 18], + [2, 36484, 1633], + [3, 36483, 13], + [2, 36486, 4021], + [3, 36483, 12], + [2, 36488, 10205], + [2, 36488, 10209], + [2, 36488, 11234], + [2, 36488, 10222], + [2, 1016, 176], + [3, 36493, 14], + [2, 36494, 591], + [3, 36493, 13], + [2, 36496, 10233], + [3, 36493, 12], + [2, 36498, 11241], + 0, + "ime-picker", + [2, 36498, 36501], + [2, 36498, 18390], + [2, 36498, 10266], + [3, 36504, 13], + [2, 36505, 10271], + 0, + "-checked", + [2, 36506, 36508], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [3, 212, 12], + "fns", + [2, 36524, 36525], + 0, + "parsel-js", + 0, + 0, + 0, + 0, + 0, + "citty", + 0, + "mkdist", + "untyped", + "hookable", + 0, + 0, + 0, + 0, + 0, + [2, 3714, 20], + 0, + 0, + 0, + 0, + 0, + 0, + [3, 34068, 12], + [2, 36551, 2408], + 0, + 0, + 0, + 0, + 0, + "teo.collina/tspl", + [2, 599, 36558], + "dns-packet", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "trough", + 0, + [3, 9359, 10], + [2, 36570, 4966], + 0, + "retext", + 0, + 0, + 0, + 0, + [3, 4554, 13], + 0, + "non-repeating", + 0, + 0, + 0, + 0, + 0, + 0, + [3, 4555, 10], + "xast", + "nlcst", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "pullstream", + 0, + "match-stream", + 0, + "uncompress", + 0, + 0, + 0, + 0, + "is-npm", + "pupa", + 0, + "fixture-", + [2, 36614, 8634], + 0, + 0, + 0, + 0, + 0, + "urn", + "uri mutation", + "url mutation", + "uri m", + "anipulation", + [2, 36624, 36625], + "url m", + [2, 36627, 36625], + 0, + "uri template", + 0, + "url template", + " res", + " locator", + [2, 5585, 36634], + [2, 36633, 36635], + [2, 4549, 36636], + [3, 36637, 17], + [2, 36638, 16906], + 0, + "query string", + "RFC 3986", + "RFC3986", + 0, + 0, + "RFC 6570", + 0, + 0, + "RFC6570", + [2, 23168, 1932], + "ecosystem", + ":jquery", + [2, 36651, 36652], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "ylru", + "formstream", + 0, + 0, + "tshy-after", + [3, 9725, 12], + 0, + "@types/busboy", + "@eggjs/tsconfig", + "@types/sel", + "fsigned", + [2, 36689, 36690], + 0, + "strictest", + [2, 25627, 36693], + 0, + "urlopen", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "userprofile", + 0, + 0, + 0, + 0, + 0, + [2, 4745, 57], + 0, + 0, + "browserscope", + "ua", + "ua-parse", + "ua-parser", + "user agent", + "user-agent", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "is-typed", + "-array", + [2, 36730, 36731], + 0, + "supported", + [2, 5745, 36734], + [2, 17393, 36735], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "rfc9562", + 0, + 0, + 0, + 0, + 0, + 0, + "bundt", + 0, + "diffs", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "find-pa", + "rent-dir", + [2, 36779, 36780], + 0, + 0, + 0, + "githook", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "sanitisation", + 0, + "sanitise", + 0, + 0, + 0, + 0, + 0, + 0, + "@vue/shared", + "@vant/popperjs", + "@vant/", + 0, + "@vant/use", + 0, + [2, 7047, 1732], + [2, 5334, 36811], + "able-html", + [2, 1687, 36813], + [2, 10952, 2770], + [2, 36807, 7625], + [2, 36807, 45], + 0, + "area-data", + [2, 36807, 36819], + "@vant/cli", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "@vercel/go", + 0, + "@vercel/fun", + "@vercel/next", + [2, 20461, 681], + "@vercel/ruby", + "python", + [2, 33763, 36844], + "@vercel/r", + "edwood", + [2, 36846, 36847], + "hydrogen", + [2, 33763, 36849], + "build-utils", + [2, 33763, 36851], + "@vercel/st", + "atic-build", + [2, 36853, 36854], + "@vercel/re", + 0, + "mix-builder", + [2, 36856, 36858], + 0, + "epipebomb", + 0, + "promisepipe", + "tmp-promise", + 0, + 0, + "@sentry/node", + [3, 28267, 12], + [2, 7738, 6768], + 0, + "@types/dotenv", + [2, 4753, 4007], + [2, 33763, 5576], + [2, 17213, 2022], + "pcre-to-regexp", + "ast-commit", + [2, 33495, 36876], + [2, 8603, 18132], + [2, 8603, 1631], + "@tootallnate/once", + [3, 546, 11], + [2, 36881, 5449], + "@vercel/f", + "rameworks", + [2, 36883, 36884], + [2, 3827, 594], + [2, 33763, 36886], + [2, 5745, 7253], + [2, 10787, 36888], + [2, 20290, 4007], + "s-detectors", + [2, 36883, 36891], + [3, 20485, 11], + "-json-file", + [2, 36893, 36894], + "outing-utils", + [2, 36846, 36896], + [3, 29115, 11], + [2, 36898, 3385], + [3, 22092, 13], + [2, 36900, 16830], + "@vercel", + [3, 9435, 9], + "s/types", + [2, 36903, 36904], + [2, 36902, 36905], + 0, + "node-utils", + [2, 33157, 36908], + [2, 11836, 2656], + [2, 29130, 36910], + [3, 11296, 13], + "xpect-", + [2, 36913, 6458], + [2, 36912, 36914], + [3, 36906, 18], + [2, 36916, 14181], + "@alex_neo/jest-expect-message", + [3, 29110, 18], + [2, 36919, 36910], + [2, 18522, 1781], + [2, 36916, 36921], + 0, + 0, + 0, + 0, + "extsprintf", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "viewer.js", + 0, + 0, + 0, + 0, + 0, + 0, + "remove-t", + "railing-separator", + [2, 36948, 36949], + "teex", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "kdirp-stream", + [2, 29048, 36964], + "is-valid-glob", + "lead", + [2, 4026, 14690], + "stream-com", + "poser", + [2, 36969, 36970], + "to-through", + "value-", + "or-function", + [2, 36973, 36974], + [3, 4606, 15], + 0, + 0, + 0, + 0, + "vinyl-adapter", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "browser-split", + "ev-store", + "x-is-array", + 0, + "x-is-string", + 0, + "run-browser", + 0, + "vtree", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "artichokie", + [2, 4293, 16111], + "es-module-lexer", + [3, 3638, 15], + "@polka/", + [2, 37016, 1536], + 0, + "build-tool", + 0, + 0, + 0, + 0, + "slash-path", + 0, + 0, + 0, + "api-router", + "api-routers", + [3, 4612, 15], + "rest-api", + [2, 4609, 37031], + [3, 9244, 9], + [2, 37033, 995], + [3, 12419, 12], + [2, 37035, 20332], + 0, + "api-rest", + "Remix", + "Next.js", + 0, + 0, + 0, + 0, + [3, 6371, 11], + [2, 37045, 1623], + [2, 9408, 364], + "devtools-api", + [2, 5334, 37048], + "@vueuse/", + [2, 37050, 12339], + "focus-trap", + 0, + "@mdi", + "t-vue/plugin-component", + [2, 37054, 37055], + [3, 37056, 17], + [2, 37057, 9339], + [2, 37057, 11988], + "sfc", + [2, 37057, 37060], + [2, 37057, 17913], + [3, 37062, 18], + "oc", + [2, 37063, 37064], + "@mdit-vue/", + [2, 37066, 6579], + [3, 7641, 19], + [2, 37068, 3111], + [2, 37068, 3113], + [2, 13058, 3667], + [3, 26774, 14], + "thjax3", + [2, 37072, 37073], + 0, + 0, + 0, + 0, + 0, + "@vitest/spy", + 0, + "tinyrainbow", + "@vitest/u", + [2, 37083, 186], + [2, 17213, 8791], + "@vitest/s", + [2, 37086, 11298], + "why-", + 0, + "running", + [2, 21149, 37090], + [2, 37088, 37091], + [2, 17213, 3717], + 0, + "birpc", + "local-pkg", + [2, 33157, 24079], + "@antfu/", + "install-pkg", + [2, 37098, 37099], + 0, + 0, + 0, + 0, + 0, + "node-lo", + "calstorage", + [2, 37106, 37107], + 0, + "gulp-xo", + 0, + 0, + "load-plugins", + 0, + "vorpal-less", + 0, + "vorpal-repl", + 0, + 0, + 0, + 0, + 0, + "eyes", + 0, + "BDD", + 0, + 0, + 0, + 0, + "keytar", + "parse-semver", + [2, 17414, 28362], + 0, + "eerio", + [2, 16931, 37134], + [3, 21625, 11], + [2, 37136, 4565], + 0, + "@types/yazl", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 9738, 6985], + "@types/ic", + "onv-lite", + [2, 37150, 37151], + 0, + 0, + 0, + 0, + [2, 4619, 9586], + 0, + 0, + 0, + 0, + [3, 36812, 13], + [2, 37162, 965], + 0, + 0, + 0, + 0, + 0, + "-libs", + [2, 1988, 37169], + 0, + 0, + 0, + 0, + 0, + 0, + [3, 5736, 22], + [2, 37177, 31692], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "@int", + "lify/core-base", + [2, 37188, 37189], + "@intlify/", + [2, 37191, 6579], + 0, + 0, + "devtools-if", + [2, 37191, 37195], + 0, + 0, + "vue-devtools", + [2, 37191, 37199], + 0, + "intlify", + 0, + 0, + 0, + 0, + 0, + [3, 37200, 13], + 0, + "i18n-loader", + [2, 37208, 37210], + [3, 7892, 11], + [2, 37212, 3176], + [2, 32119, 1698], + "cache-loader", + "markdown-l", + [2, 37216, 35971], + "pug-p", + "lain-loader", + [2, 37218, 37219], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "ightwatch", + [2, 10884, 37231], + 0, + 0, + "faked-promise", + [2, 28506, 6706], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "de-indent", + 0, + 0, + 0, + 0, + 0, + "todomvc-app-css", + 0, + 0, + 0, + 0, + "foreachasync", + 0, + "sys", + "walkSync", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "exec-sh", + 0, + 0, + 0, + 0, + 0, + 0, + "outpipe", + 0, + "win-spawn", + 0, + 0, + 0, + 0, + 0, + "encrypte", + "d-attr", + [2, 37292, 37293], + [3, 3052, 10], + "afeinteger", + [2, 37295, 37296], + [2, 4651, 18008], + "waterline-", + [2, 37299, 594], + 0, + "active-", + [2, 37302, 1355], + 0, + 0, + 0, + 0, + "vargs", + 0, + 0, + 0, + 0, + "bdd-with-opts", + 0, + "gulp-debug", + "mu2", + [2, 9466, 2869], + "auncher", + [2, 26127, 37318], + [2, 20011, 37319], + "mocha-p", + "arallel", + [2, 37321, 37322], + [2, 18199, 37323], + "sv-selenium", + 0, + 0, + 0, + 0, + 0, + "web3-eth", + "web3-net", + 0, + "web3-core", + "web3-types", + "web3-utils", + "web3-errors", + 0, + "web3-eth-abi", + "web3-eth-", + 0, + "web3-eth-ens", + 0, + "web3-eth-iban", + [2, 4654, 1155], + "rpc-methods", + [2, 4654, 37346], + "web3-eth-a", + "ccounts", + [2, 37348, 37349], + "contract", + [2, 37340, 37351], + 0, + "personal", + [2, 37340, 37354], + 0, + "providers-ws", + [2, 4654, 37357], + "web3-rpc-", + "providers", + [2, 37359, 37360], + [3, 37358, 15], + [2, 37362, 27], + 0, + "in3", + "ganache", + "ipc", + [2, 37362, 37367], + [3, 13936, 16], + "se-web3", + [2, 37369, 37370], + "@tru", + "ffle/hdwallet-provider", + [2, 37372, 37373], + 0, + "Ethereum", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "@solana/spl-token", + "@solana/", + "web3.js", + [2, 37391, 37392], + "kva-email-service", + 0, + "ed25519-hdkey", + [2, 32806, 37396], + "ssl-http-with-docker", + [3, 4382, 9], + [2, 7521, 12130], + [2, 37399, 37400], + "telegram-a", + "ssistant", + [2, 37402, 37403], + "web3-r", + 0, + "eact-task", + [2, 37405, 37407], + 0, + "sol", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "assembl", + "yjs/ast", + [2, 37421, 37422], + [2, 10672, 37423], + [3, 37424, 15], + "wasm-edit", + [2, 37425, 37426], + [3, 37427, 20], + [2, 37428, 57], + 0, + 0, + "trace-event", + [2, 35441, 37432], + 0, + "assembly", + [2, 37435, 1508], + [2, 4671, 1194], + [2, 14743, 1194], + "hash-wasm", + "wast-loader", + [2, 20694, 6095], + "xxhashjs", + 0, + 0, + 0, + 0, + "@disco", + "veryjs/json-ext", + [2, 37447, 37448], + 0, + "@carrotsearch/foamtree", + "h0r", + [2, 22060, 37452], + [2, 37453, 2809], + "lodash.p", + "artial", + [2, 37455, 37456], + [2, 3607, 34809], + 0, + "zoomable", + 0, + 0, + 0, + 0, + [3, 13077, 13], + [2, 37465, 18523], + "configtest", + [2, 37465, 37467], + 0, + [3, 4863, 9], + "vinfo", + [2, 37470, 37471], + 0, + 0, + 0, + 0, + 0, + 0, + "@fastify/e", + [2, 37479, 674], + "n-finished", + [2, 15461, 37481], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "@types/sockjs", + [3, 18584, 13], + "njour", + [2, 16872, 37492], + "bonjour-service", + 0, + 0, + 0, + [3, 33768, 13], + [2, 37498, 4017], + [2, 37498, 2947], + 0, + "-community", + [2, 17013, 37502], + "-history-api-fallback", + [2, 11485, 37504], + 0, + "klona", + [2, 37490, 4219], + "@types/tr", + 0, + 0, + "usted-types", + [2, 37509, 37512], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "reloading", + [3, 4631, 10], + [2, 37524, 3642], + 0, + 0, + 0, + 0, + 0, + [2, 32119, 4694], + [3, 33945, 16], + "ellscape", + [2, 37532, 37533], + [3, 3708, 23], + 0, + 0, + 0, + 0, + 0, + 0, + "dts-cli", + 0, + "@types/flat", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "-to-buffer", + [2, 7231, 37567], + "yaeti", + 0, + 0, + "networking", + "comet", + 0, + 0, + 0, + 0, + "@silentbot1/nat-api", + "@thaunknown/simple-peer", + "torrent/http-node", + [2, 10672, 37580], + "addr", + 0, + "-to-ip-port", + [2, 37582, 37584], + "bitfield", + "bittorrent-dht", + [3, 37587, 11], + [2, 37588, 20500], + "cache-c", + "hunk-store", + [2, 37590, 37591], + [2, 33355, 5509], + [2, 13225, 37593], + "cpus", + "create-t", + "orrent", + [2, 37596, 37597], + "-ponyfill", + [2, 1613, 37599], + "fs-c", + [2, 37601, 37591], + "fsa-chunk-store", + "imme", + "diate-chunk-store", + [2, 37604, 37605], + "-async-", + [2, 37607, 7253], + [2, 4565, 37608], + 0, + 0, + "load-ip-set", + "lt_donthave", + "memory-c", + [2, 37614, 37591], + "torrent", + "parse-torrent", + "random-ite", + [2, 37618, 6882], + 0, + 0, + 0, + "speed-limiter", + "throughput", + 0, + 0, + "-discovery", + [2, 37616, 37627], + 0, + 0, + "torrent-piece", + 0, + "uint8-util", + "unordered-", + "array-remove", + [2, 37634, 37635], + "ut_metadata", + "ut_pex", + 0, + [3, 37581, 12], + [2, 37640, 23685], + 0, + 0, + "airtap-manual", + "airtap-s", + [2, 37645, 9073], + [2, 37588, 4839], + "chrome-net", + "-address", + [2, 11996, 37649], + 0, + "path-esm", + "-fixtures", + [2, 4702, 37653], + 0, + "bittorrent", + [2, 37656, 12332], + "mad science", + "p2p", + 0, + 0, + 0, + "peer-to-peer", + 0, + "peers", + "swarm", + "web torrent", + "webrtc data", + 0, + 0, + 0, + 0, + 0, + "web worker", + "a gogo", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "search-params", + [2, 4564, 37687], + 0, + 0, + 0, + 0, + "buster", + "exorcist", + 0, + "cujo", + 0, + "Promises/A+", + 0, + 0, + 0, + 0, + "isexe", + 0, + 0, + 0, + 0, + "taffydb", + "unit.js", + 0, + 0, + 0, + 0, + 0, + "@dabh/diagnostics", + "logform", + 0, + "one-time", + 0, + "@dabh/", + [2, 37720, 23816], + [2, 20417, 4715], + [3, 18518, 12], + [2, 37723, 1149], + "hock", + "winston-co", + [2, 37726, 13172], + 0, + 0, + 0, + 0, + 0, + 0, + "tream-rotator", + [2, 12416, 37734], + 0, + [3, 24151, 11], + [3, 23722, 14], + [2, 37737, 37738], + [2, 6324, 4059], + [2, 37739, 37740], + 0, + "daily-rotate-file", + "log-rotate", + "logrotate", + 0, + 0, + 0, + 0, + 0, + 0, + "winston3", + 0, + 0, + 0, + 0, + 0, + "bower-config", + "propprop", + [2, 4716, 20], + 0, + 0, + 0, + 0, + 0, + 0, + "carriage", + 0, + "new-line", + "return", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "workbox-", + [2, 37779, 6147], + 0, + 0, + "workbox", + "workboxjs", + " worker", + [2, 11100, 37785], + " requests", + [2, 1612, 37787], + "offline", + [2, 12320, 3097], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "writeFile", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "enstore", + 0, + "-crawler", + [2, 4730, 37820], + 0, + "x-ray-parse", + 0, + 0, + "scrape", + 0, + 0, + 0, + 0, + 0, + 0, + "is-function", + "parse-headers", + 0, + 0, + 0, + 0, + 0, + 0, + "adler-32", + 0, + "codepage", + "crc-32", + "ssf", + "wmf", + 0, + "@she", + "etjs/uglify-js", + [2, 37848, 37849], + "on-epipe", + [2, 7219, 37851], + "fflate", + [3, 5392, 10], + "pellcheck", + [2, 37854, 37855], + 0, + "xlsb", + "xlsm", + "dbf", + "dif", + "sylk", + 0, + 0, + 0, + 0, + 0, + "cash-cat", + "codacy-coverage", + "globify", + "unminified-webpack-plugin", + 0, + "XML", + "CDATA", + "doctype", + 0, + 0, + 0, + " instruction", + [2, 10809, 37879], + 0, + "Javascript", + [2, 353, 3642], + "convertor", + "converting", + 0, + "conversion", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "node-expat", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "dom-js", + "xmltest", + 0, + "DOMParser", + "XMLSerializer", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "func-xml", + 0, + 0, + 0, + 0, + 0, + 0, + [2, 5857, 5861], + [2, 69, 37935], + "@unicode/unicode-14.0.0", + 0, + "rray-includes", + [2, 24619, 37939], + [2, 1226, 4740], + [3, 37935, 17], + 0, + "value-aliases", + [2, 37942, 37944], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "whitelist", + 0, + 0, + 0, + 0, + "@scion-scxml/test-framework", + 0, + "statechart", + 0, + 0, + "state machine", + "finite", + " stat", + "e machine", + [2, 37965, 37966], + [2, 37964, 37967], + "finite ", + "automata", + [2, 37969, 37970], + "scxml", + "interpreter", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "ep-equal", + [2, 35506, 37982], + [2, 9228, 4729], + 0, + 0, + "@types/utf8", + [2, 4744, 28703], + 0, + "emulator", + [2, 4402, 37990], + 0, + 0, + 0, + 0, + "jest-t", + "s-webcompat-resolver", + [2, 37996, 37997], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "yaml2json", + "json2yaml", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "test-extends", + [2, 27477, 38016], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [3, 29775, 30], + "imports-", + [2, 38033, 10906], + [2, 38032, 38034], + "death", + "repeating", + 0, + "capture-har", + [2, 9769, 38039], + "roadrunner", + 0, + "node4", + [2, 26202, 38043], + [3, 4821, 14], + "ode5", + [2, 38045, 38046], + [3, 18229, 16], + "-strict", + [2, 38048, 38049], + "ittens", + [2, 25705, 38051], + [3, 1935, 18], + "-vars", + [2, 38053, 38054], + [2, 23105, 7003], + [2, 1152, 38056], + [2, 16645, 38057], + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "@yeoman/adapter", + "@yeoman/", + "conflicter", + [2, 38074, 38075], + [2, 38074, 23255], + [2, 38074, 353], + "@yeoman/t", + [2, 38079, 103], + 0, + "fly-import", + [2, 7227, 30831], + "mem-fs", + 0, + "mem-fs-editor", + [2, 9477, 10057], + [2, 17412, 38087], + 0, + 0, + 0, + "esmocha", + "sinon-test", + 0, + 0, + 0, + 0, + 0, + "github-u", + "sername", + [2, 38099, 38100], + 0, + 0, + 0, + 0, + 0, + 0, + "yes", + "false", + 0, + "lenient", + 0, + 0, + 0, + 0, + 0, + "cli-list", + "fullname", + 0, + 0, + "parse-help", + "root-check", + "npm-keyword", + 0, + "doctor", + [2, 4755, 38125], + [2, 25742, 1871], + 0, + 0, + 0, + [2, 4755, 6843], + 0, + [2, 9518, 1002], + 0, + 0, + 0, + 0, + 0, + "@jonahsnider/benchmark", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 26936, 4627], + 0, + "cowsay", + "say", + 0, + 0, + 0, + 0, + 0, + 0, + "zeromq", + "0mq", + "ømq", + "libzmq", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + [2, 11477, 1574], + [2, 9228, 4576], + 0, + "@types/morgan", + "express-u", + "seragent", + [2, 38180, 38181], + 0, + " types", + [2, 7047, 38184], + 0, + 0, + 0, + 0, + 0, + 0, + "DSL", + 0, + 0, + 0, + 0, + "@externs/nodejs", + 0, + 0, + 0, + 0, + "JSON2", + 0, + "char-split", + 0, + 0, + "express-state", + "firefox-", + [2, 38208, 35677], + [2, 11941, 2663], + 0, + "shallow-copy", + [2, 4250, 4833], + 0, + "tap-finished", + "-localtunnel", + [2, 4770, 38216], + 0, + 0, + 0, + "browzers", + "bulk-require", + 0, + "zuul-ngrok", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "Unit Testing", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "Storybook", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "belalangkayu", + "rengginangbasi", + "tehtarik3", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "sort-array", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "-scroll-", + "into-view", + [2, 38290, 38291], + [2, 23545, 38292], + 0, + "module-t", + "ype-aliases", + [2, 38295, 38296], + [2, 20201, 38297], + [2, 964, 3698], + [3, 1216, 14], + "o-side-effect-class-properties", + [2, 38300, 38301], + [3, 1270, 19], + [2, 38303, 970], + "flow-co", + [2, 24524, 8803], + [2, 38305, 38306], + 0, + "get-pkg-repo", + 0, + "enhanced", + " input", + [2, 38311, 38312], + 0, + 0, + "autosuggest", + "typeahead", + 0, + "omnibox", + "WAI-ARIA", + "multiple ", + [2, 38321, 17146], + 0, + 0, + 0, + 0, + "focus", + "keyboards", + "mice", + "pseudos", + 0, + "textarea", + "trackpad" ] diff --git a/packages/flatpack-json/fixtures/.npm-packages-info-v2.json b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json index 87d0fd123795..71c507e68d2e 100644 --- a/packages/flatpack-json/fixtures/.npm-packages-info-v2.json +++ b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json @@ -1,15420 +1,31622 @@ [ -"Flatpack JSON v2", -[128,"@alifd/next","@angular-devkit/core","@angular-devkit/schematics","@angular/animations","@angular/cdk", -"@angular/common","@angular/compiler","@angular/compiler-cli","@angular/core","@angular/forms","@angular/http", -"@angular/material","@angular/platform-browser","@angular/platform-browser-dynamic","@angular/platform-server", -"@angular/router","@ant-design/react-native","@ant-design/web3-common","@ant-design/web3-icons","@auth/sveltekit", -"@babel/cli","@babel/code-frame","@babel/core","@babel/helper-plugin-utils","@babel/parser", -"@babel/plugin-proposal-class-properties","@11ty/eleventy","@adobe/css-tools","@api-components/api-method-documentation", -"@apollo/client","@asyncapi/generator-react-sdk","@babel/eslint-parser","@babel/plugin-proposal-decorators", -"@babel/plugin-proposal-export-default-from","@babel/plugin-proposal-export-namespace-from", -"@babel/plugin-proposal-object-rest-spread","@babel/plugin-syntax-dynamic-import","@babel/plugin-transform-runtime", -"@babel/polyfill","@babel/preset-env","@babel/preset-react","@babel/preset-typescript","@babel/register", -"@babel/runtime","@babel/runtime-corejs2","@babel/traverse","@babel/types","@biz-dev-ops/md-docs","@bwcr_/winston-loki", -"@changesets/cli","@chatscope/chat-ui-kit-react","@ckeditor/ckeditor5-adapter-ckfinder","@ckeditor/ckeditor5-angular", -"@ckeditor/ckeditor5-autoformat","@ckeditor/ckeditor5-basic-styles","@ckeditor/ckeditor5-block-quote", -"@ckeditor/ckeditor5-build-balloon","@ckeditor/ckeditor5-build-balloon-block","@ckeditor/ckeditor5-build-classic", -"@ckeditor/ckeditor5-build-decoupled-document","@ckeditor/ckeditor5-build-inline","@ckeditor/ckeditor5-ckbox", -"@ckeditor/ckeditor5-ckfinder", -"@ckeditor/ckeditor5-clipboard","@ckeditor/ckeditor5-cloud-services","@ckeditor/ckeditor5-core", -"@ckeditor/ckeditor5-easy-image","@ckeditor/ckeditor5-engine","@ckeditor/ckeditor5-essentials", -"@ckeditor/ckeditor5-heading","@ckeditor/ckeditor5-image","@ckeditor/ckeditor5-indent","@ckeditor/ckeditor5-link", -"@ckeditor/ckeditor5-list","@ckeditor/ckeditor5-media-embed","@ckeditor/ckeditor5-paragraph", -"@ckeditor/ckeditor5-paste-from-office","@ckeditor/ckeditor5-react","@ckeditor/ckeditor5-table", -"@ckeditor/ckeditor5-typing","@ckeditor/ckeditor5-ui","@ckeditor/ckeditor5-upload","@ckeditor/ckeditor5-utils", -"@ckeditor/ckeditor5-vue","@ckeditor/ckeditor5-widget","@commitlint/cli","@compodoc/compodoc","@comunica/core", -"@contenthook/browser","@contenthook/cli","@contenthook/node","@coreui/coreui","@csstools/css-parser-algorithms", -"@csstools/css-tokenizer","@csstools/media-query-list-parser","@csstools/postcss-is-pseudo-class", -"@csstools/postcss-progressive-custom-properties","@csstools/selector-specificity","@cucumber/cucumber", -"@deven-org/documentation-skeleton","@devtea2026/aspernatur-ea-non-porro","@devtea2026/consectetur-ab-unde-quisquam", -"@devtea2026/cupiditate-dolorem-excepturi-impedit","@devtea2026/distinctio-soluta-illo-eaque", -"@devtea2026/eum-ullam-est-distinctio","@devtea2026/explicabo-alias-architecto-sed","@devtea2026/improved-journey", -"@devtea2026/inventore-facilis-corporis-cum","@devtea2026/ipsa-omnis-in-molestiae", -"@devtea2026/literate-computing-machine","@devtea2026/maxime-sequi-est-rem", -"@devtea2026/necessitatibus-dolorem-esse-atque","@devtea2026/odit-enim-reiciendis-pariatur", -"@devtea2026/odit-maxime-porro-asperiores","@devtea2026/possimus-ipsa-sint-consequuntur", -"@devtea2026/qui-quos-laborum-amet","@devtea2026/quia-ducimus-placeat-minima", -"@devtea2026/quidem-voluptate-repudiandae-necessitatibus","@devtea2026/rerum-quaerat-porro-animi", -"@devtea2026/ubiquitous-octo-memory","@diotoborg/adipisci-placeat-iure","@diotoborg/amet-architecto-est", -"@diotoborg/at-totam-perspiciatis","@diotoborg/commodi-voluptatum-libero", -"@diotoborg/delectus-necessitatibus-voluptatum","@diotoborg/deserunt-illo-tempora","@diotoborg/dicta-recusandae-veniam", -"@diotoborg/dolor-earum-quia","@diotoborg/dolor-tempora-fuga","@diotoborg/dolores-praesentium-assumenda", -"@diotoborg/eligendi-est-unde","@diotoborg/esse-accusantium-ratione","@diotoborg/illo-amet-architecto", -"@diotoborg/laudantium-itaque-esse","@diotoborg/libero-asperiores-at","@diotoborg/neque-inventore-corporis", -"@diotoborg/nostrum-eveniet-officiis","@diotoborg/odio-dolores-officia","@diotoborg/porro-modi-accusamus", -"@diotoborg/psychic-bassoon","@diotoborg/quasi-repellat-odit","@diotoborg/qui-ullam-ipsum", -"@diotoborg/quo-dolorem-ducimus","@diotoborg/ratione-error-odio","@diotoborg/repellat-blanditiis-quis", -"@diotoborg/tempora-voluptas-distinctio","@diotoborg/ullam-dignissimos-repudiandae","@diotoborg/velit-reiciendis-velit", -"@diotoborg/verbose-robot","@diplodoc/transform","@discordjs/rest","@disqada/workspace","@doc-tools/docs", -"@doc-tools/transform","@dramaorg/esse-praesentium-eligendi","@dramaorg/quae-dolore-nostrum","@eas-framework/server", -"@eightshift/frontend-libs","@electron/docs-parser","@emotion/babel-plugin","@emotion/core","@emotion/css", -"@emotion/styled","@erboladaiorg/ad-exercitationem-ducimus","@erboladaiorg/asperiores-earum-quaerat", -"@erboladaiorg/asperiores-fuga-sint","@erboladaiorg/asperiores-nam-adipisci","@erboladaiorg/autem-dolores-ipsam", -"@erboladaiorg/cupiditate-consectetur-porro","@erboladaiorg/cupiditate-pariatur-optio", -"@erboladaiorg/distinctio-tempora-quis","@erboladaiorg/error-atque-ea","@erboladaiorg/esse-ipsa-numquam", -"@erboladaiorg/ex-hic-molestias","@erboladaiorg/explicabo-eius-adipisci", -"@erboladaiorg/molestiae-voluptatibus-perferendis","@erboladaiorg/molestias-nulla-dolor","@erboladaiorg/nisi-culpa-cum", -"@erboladaiorg/officia-illum-aperiam","@erboladaiorg/perspiciatis-magni-ut","@erboladaiorg/quae-in-veniam", -"@erboladaiorg/quaerat-mollitia-adipisci","@erboladaiorg/quibusdam-itaque-tempora","@erboladaiorg/sint-deleniti-dolorem", -"@erboladaiorg/sit-nesciunt-amet","@erboladaiorg/tenetur-architecto-dolore","@erboladaiorg/ut-dignissimos-laborum", -"@erboladaiorg/velit-fugit-harum","@eslint-community/eslint-utils","@eslint/js","@fakeyanss/redoc", -"@floating-ui/react-dom","@fontsource/inter","@fontsource/roboto","@fortawesome/fontawesome-svg-core", -"@fortawesome/free-solid-svg-icons","@fortawesome/react-fontawesome","@grandlinex/core","@grandlinex/e-kernel", -"@grandlinex/kernel","@graphql-markdown/core","@graphql-markdown/docusaurus","@hajtech/webpack-config","@hapi/hapi", -"@hishprorg/aliquid-ad-vero","@hishprorg/autem-sint-quas","@hishprorg/cum-rem-consequuntur", -"@hishprorg/earum-sint-veritatis","@hishprorg/eius-vero-dicta","@hishprorg/est-dicta-quis", -"@hishprorg/incidunt-quibusdam-tempore","@hishprorg/itaque-esse-accusamus","@hishprorg/iure-optio-nihil", -"@hishprorg/magni-amet-id","@hishprorg/magni-nisi-aperiam","@hishprorg/maxime-voluptates-enim", -"@hishprorg/nihil-ad-ratione","@hishprorg/perspiciatis-ratione-unde","@hishprorg/quis-perferendis-culpa", -"@hishprorg/reprehenderit-excepturi-sed","@hishprorg/sint-nam-consequuntur","@hishprorg/sunt-officia-eligendi", -"@hishprorg/sunt-voluptatem-nobis","@hishprorg/unde-vitae-reprehenderit","@hishprorg/wafflejs", -"@homer0/prettier-plugin-jsdoc","@hookform/resolvers","@iamtraction/google-translate","@idux/cdk","@idux/components", -"@inquirer/core","@ionic/core","@isaacs/cliui","@istanbuljs/nyc-config-typescript","@itwin/itwinui-react","@jest/core", -"@jest/types","@jsonforms/core","@jsonforms/material-renderers","@jsonforms/react","@juigorg/nisi-molestiae-ut", -"@juigorg/sit-nam-neque","@jupyterlab/application","@kobedevi/sassdoc","@kollorg/dicta-itaque-nemo", -"@kollorg/nihil-veniam-deserunt","@libphamton/chatfanpage","@libphamton/fb-group","@listr2/prompt-adapter-inquirer", -"@mantine/core","@mantine/dates","@mantine/hooks","@mantine/modals","@mantine/notifications","@mantine/prism", -"@mantine/styles","@mantine/utils","@material-ui/core","@material-ui/icons","@mathematikoi/jsonapi","@mdx-js/react", -"@microsoft/api-extractor","@microsoft/tsdoc","@microsoft/tsdoc-config","@middy/core","@middy/http-json-body-parser", -"@middy/util","@ministryofjustice/frontend","@mswjs/interceptors","@mui/icons-material","@mui/lab","@mui/material", -"@mui/system","@mui/x-date-pickers","@neato/guider","@ng-doc/core","@ng-doc/ui-kit","@ng-doc/utils", -"@nomicfoundation/hardhat-chai-matchers","@npmcli/arborist","@npmcli/map-workspaces","@npmcli/node-gyp", -"@npmcli/run-script","@npmcorp/marky-markdown","@npmtuanmap/ex-vel-expedita-impedit","@npmtuanmap/psychic-guide", -"@npmtuanmap/recusandae-recusandae-nam-et","@npmtuanmap/sed-quo-nemo-rerum","@npmtuanmap/velit-esse-velit-magnam", -"@nrwl/devkit","@nrwl/tao","@nrwl/workspace","@nx/devkit","@nx/esbuild","@nx/eslint","@nx/express","@nx/js","@nx/nest", -"@nx/node","@nx/workspace","@oclif/command","@oclif/config","@oclif/core","@oclif/plugin-help","@octokit/rest", -"@opentiny/vue","@opentiny/vue-renderless","@opentiny/vue-theme","@opentiny/vue-theme-mobile","@otterhttp/cookie", -"@otterhttp/request","@otterhttp/response","@otterhttp/send","@pact-foundation/pact","@patrtorg/a-ad-expedita", -"@patrtorg/a-ut-amet","@patrtorg/asperiores-vel-accusantium","@patrtorg/aspernatur-dolorum-ducimus", -"@patrtorg/autem-et-hic", -"@patrtorg/consectetur-culpa-non","@patrtorg/consectetur-repudiandae-consequuntur", -"@patrtorg/consequatur-voluptatum-officiis","@patrtorg/ducimus-magni-quibusdam","@patrtorg/enim-magni-hic", -"@patrtorg/est-corrupti-deleniti","@patrtorg/eveniet-tempore-maiores","@patrtorg/illum-sapiente-quos", -"@patrtorg/laborum-doloribus-voluptate","@patrtorg/libero-doloribus-omnis","@patrtorg/libero-voluptas-sequi", -"@patrtorg/magnam-aut-adipisci","@patrtorg/maiores-quidem-quo","@patrtorg/molestias-molestias-ut", -"@patrtorg/nam-eius-unde","@patrtorg/pariatur-deleniti-quaerat","@patrtorg/porro-labore-eos","@patrtorg/quae-earum-eius", -"@patrtorg/quos-quasi-ipsa","@patrtorg/sapiente-eos-magnam","@patrtorg/sapiente-exercitationem-sit", -"@patrtorg/tenetur-animi-reprehenderit","@perseid/store","@phosphor/widgets","@phun-ky/speccer","@polymer/polymer", -"@qooxdoo/framework","@quasar/extras","@readyplayerme/visage","@reduxjs/toolkit","@rollup/plugin-commonjs", -"@rollup/plugin-node-resolve","@sanity/tsdoc","@scalar/api-reference","@scalar/fastify-api-reference", -"@serenity-js/protractor","@serenity-js/webdriverio","@sinonjs/fake-timers","@storybook/addon-docs", -"@subwallet/react-ui","@supernovaio/sdk","@supernovaio/sdk-exporters","@supernovaio/supernova-sdk", -"@sveltejs/eslint-config","@sveltejs/kit","@sveltejs/vite-plugin-svelte","@svgr/webpack","@swc/core", -"@swenkerorg/maiores-voluptatibus-nemo","@swenkerorg/modi-dolorum-provident","@swenkerorg/nulla-voluptates-voluptates", -"@swisspost/design-system-styles","@symbiotejs/symbiote","@synion/md-docs","@taktikorg/aut-distinctio-repellat", -"@taktikorg/consectetur-quo-quos","@taktikorg/corporis-nihil-odit","@taktikorg/deleniti-qui-dolorem", -"@taktikorg/dolor-ratione-quibusdam","@taktikorg/harum-reprehenderit-perferendis","@taktikorg/illum-accusamus-possimus", -"@taktikorg/ipsa-totam-aperiam","@taktikorg/iste-ex-tempore","@taktikorg/itaque-nam-eos", -"@taktikorg/itaque-tempore-exercitationem","@taktikorg/maiores-dolores-aut","@taktikorg/molestias-fuga-possimus", -"@taktikorg/nam-esse-animi","@taktikorg/necessitatibus-repudiandae-officia","@taktikorg/nisi-reprehenderit-amet", -"@taktikorg/placeat-voluptates-dolorum","@taktikorg/praesentium-dolorum-quis","@taktikorg/praesentium-neque-ipsam", -"@taktikorg/quo-reiciendis-quibusdam","@taktikorg/recusandae-ratione-veniam","@taktikorg/similique-natus-officia", -"@taktikorg/suscipit-modi-ratione","@taktikorg/tempore-veniam-in","@taktikorg/unde-animi-omnis", -"@taktikorg/velit-nobis-blanditiis","@taktikorg/voluptatem-pariatur-tenetur","@tanem/svg-injector", -"@tanstack/react-query","@tanstack/svelte-query","@teamhanko/hanko-frontend-sdk","@testing-library/cypress", -"@testing-library/dom","@testing-library/jest-dom","@testing-library/jest-native","@testing-library/react", -"@testing-library/user-event","@tinyhttp/app","@tinyhttp/cookie","@tinyhttp/cookie-signature","@tinyhttp/cors", -"@tinyhttp/etag","@tinyhttp/forwarded","@tinyhttp/proxy-addr","@tinyhttp/req","@tinyhttp/res","@tinyhttp/router", -"@tinyhttp/send","@tinyhttp/type-is","@tinyhttp/url","@tsparticles/engine","@twurple/ebs-helper","@types/estree", -"@typescript-eslint/eslint-plugin","@typescript-eslint/parser","@typescript-eslint/utils","@ucloud-fe/react-components", -"@udecode/plate-core","@uiw/react-button","@uiw/react-icon","@uiw/react-input","@uiw/react-overlay-trigger","@uiw/utils", -"@unleash/proxy","@uploadcare/file-uploader","@vitejs/plugin-legacy","@vitejs/plugin-react", -"@vue/eslint-config-typescript","@wesleytodd/openapi","@wuxh/dumi","@zitterorg/adipisci-quae-eius", -"@zitterorg/aspernatur-pariatur-occaecati","@zitterorg/at-esse-odit","@zitterorg/cum-ipsum-beatae", -"@zitterorg/doloremque-ut-omnis","@zitterorg/est-sunt-quos","@zitterorg/eum-veritatis-placeat", -"@zitterorg/fluffy-waddle","@zitterorg/glowing-barnacle","@zitterorg/illum-perferendis-consectetur", -"@zitterorg/itaque-nisi-veritatis","@zitterorg/probable-octo","@zitterorg/upgraded-fishstick", -"@zkportal/aleo-oracle-sdk","abort-controller","accepts","acl","acorn","acorn-walk","action-cli","adm-zip","after", -"agenda","aid-guard1","airtap","ajv","ajv-formats","although-line-wall-corn","amqp","amqplib","analsorhost-simple-bs", -"angular","angular-animate","angular-cli","angular-material","ansi-colors","ansi-escapes","ansi-regex","ansi-styles", -"ansis","ant-design-vue","antd","antfu","anyway-south-boy-pilot","api-console","apidoc","apidoc-markdown","apn", -"apollo-cache-inmemory","apollo-client","apollo-link","apollo-link-http","app-root-path","appium-android-driver", -"apple-transportation-web3-locate","applicationinsights","appsync-client-node","archiver","arg","argparse", -"arrangement-tell-arrange","array.prototype.flatmap","arrify","assert","assert-plus","assume","async","async-listen", -"async-retry","async-validator","atob","aud","auto-changelog","auto-install","autoprefixer","ava", -"awesome-typescript-loader","aws-sdk","axe-core","axios","azure-storage","babel","babel-cli","babel-core","babel-eslint", -"babel-generator","babel-helper-fixtures","babel-helper-plugin-test-runner","babel-helper-vue-jsx-merge-props", -"babel-jest","babel-loader","babel-plugin-add-module-exports","babel-plugin-dynamic-import-node", -"babel-plugin-external-helpers","babel-plugin-import","babel-plugin-istanbul","babel-plugin-lodash", -"babel-plugin-module-resolver","babel-plugin-named-asset-import","babel-plugin-syntax-dynamic-import", -"babel-plugin-syntax-jsx","babel-plugin-transform-async-to-generator","babel-plugin-transform-class-properties", -"babel-plugin-transform-decorators-legacy","babel-plugin-transform-es2015-block-scoping", -"babel-plugin-transform-es2015-modules-commonjs","babel-plugin-transform-es2015-template-literals", -"babel-plugin-transform-object-rest-spread","babel-plugin-transform-react-jsx", -"babel-plugin-transform-react-remove-prop-types","babel-plugin-transform-regenerator","babel-plugin-transform-runtime", -"babel-polyfill","babel-preset-airbnb","babel-preset-env","babel-preset-es2015","babel-preset-react", -"babel-preset-react-app","babel-preset-stage-0","babel-preset-stage-1","babel-preset-stage-2","babel-preset-stage-3", -"babel-register","babel-runtime","babel-template","babel-traverse","babel-types","babelify","babylon","backbone", -"baqend","bark-needs-visit4", -"base-64","base-individual-comfortable-crop","base64-js","basic-auth","batuta","bcrypt","bcrypt-nodejs","bcryptjs", -"bearcat","beautify-benchmark","beauty-foot-compass5","beefy","believed-usually-greater-passage","benchmark", -"best-lips-shoulder","best-valley2","between-cry-additional","beyond","bfj","bignumber.js","bindings","bip39", -"bizcharts","bl","blanket","blessed","blessed-contrib","blockchain-am5","blockchain-baby","blockchain-back1", -"blockchain-closely","blockchain-directly","blockchain-egg","blockchain-happily","blockchain-language","blockchain-own8", -"blockchain-record","blockchain-scientist","blocked","bluebird","bn.js","body-parser","bookshelf","boom","bootstrap", -"bootstrap-sass","bower","boxen","brain","branch-body-web3-feel","branch-camera-web3-organization","brfs", -"broccoli-funnel","broccoli-merge-trees","broccoli-test-helper","brought-tried-whether8","browser-sync","browserify", -"browserify-shim","browserslist","bs58","bson","btoa","buble", -"buffer","buffer-equal","bufferutil","built-who-entire","builtin-modules","bulma","bump-cli","bundle-collapser","bunyan", -"busboy","bytebuffer","bytes","c8","cac","cache-manager","call-bind","camelcase","caniuse","caniuse-lite","canvas", -"careful-faster-dirty-matter","case-sensitive-paths-webpack-plugin","casperjs","caught-brain-service0","chai", -"chai-as-promised","chai-passport-strategy","chai-subset","chalk","chance","chance-able-necessary-bell","change-case", -"changelogen","chart.js","cheerio","chicken-fell-spread","child_process","child-process-promise","choerodon-ui", -"chokidar","ci-info","ckeditor5","classnames","clean-css","clean-webpack-plugin","clear","clear-module","cli", -"cli-boxes","cli-color","cli-cursor","cli-spinner","cli-spinners","cli-table","cli-table2","cli-table3","cli-truncate", -"cli-ux","clipanion","clipboard","clipboardy","cliui","clone","clsx", -"clui","co","co-prompt","code","codecov","codemirror","coffee-script","coffeescript","color","colorette","colors", -"columnify","command-exists","command-line-args","command-line-usage","commander","commitizen","commitlint", -"common-tags","component-emitter","compression","concat-stream","concurrently","config","configstore","connect", -"connect-flash","connect-history-api-fallback","connect-mongo","connect-redis","consola","consolidate", -"content-disposition","content-type","contenthook","conventional-changelog","conventional-changelog-cli", -"conventional-changelog-conventionalcommits","convert-source-map","cookie","cookie-parser","cookie-session", -"cookie-signature","copy-to-clipboard","copy-webpack-plugin","copyfiles","corcojs-qrcode","corcojs-qrcode-logo", -"cordova","core-js","cors","cosmiconfig","coveralls","cpy-cli","crawler","crc","create-hash","create-react-class", -"critical","cron","croner","cronnor","cropperjs","cross-env", -"cross-fetch","cross-spawn","crypto","crypto-browserify","crypto-js","cson-parser","cspell","css", -"css-declaration-sorter","css-functions-list","css-loader","css-minimizer-webpack-plugin","css-select","css-tree", -"cssdb","cssesc","cssnano","cssstyle","csstype","csurf","csv","csv-generate","csv-parse","csv-stringify","csvtojson", -"cucumber","cuid","cypress","cz-conventional-changelog","d3","d3-array","d3-scale","d3-selection","d3-shape", -"dable-effect","daisyui","dance-you-thou","dargs","datafire","date-fns","dateformat","dayjs","deasync","debounce", -"debug","decamelize","decompress","dedent","dedupe","deep-assign","deep-consist-ability3","deep-diff","deep-eql", -"deep-equal","deep-extend","deepmerge","del","del-cli","delay","depcheck","depd","dependency-check","depth-clay-tax7", -"detect-indent", -"detect-port","did-enter-lay","diff","diff2html","difference-mile-pocket5","directed-graph-typed","dirty-chai", -"discord-backend-manager","discord.js","dist","distance-its-clear-rate","dmd","dmd-grunt-jsdoc2md","dnd-multi-backend", -"dnode","doc-detective","doc-detective-core","docco","docgen","dockerode","docpad","docschema","docsify-tabs","doctoc", -"documentation","documentdb","docusaurus","docusaurus-lunr-search","dom-helpers","dom-serializer","dom-to-image-more", -"dompurify","dot","dotenv","dotenv-expand","download","download-git-repo","doxdox","doxdox-cli","doxdox-core", -"doxdox-parser-dox","doxdox-parser-jsdoc","doxdox-renderer-bootstrap","doxdox-renderer-json","doxdox-renderer-markdown", -"draft-js","dropzone","dtslint","dubnium","dumi","dumi-cm","duplexer","dw-neit-antd","each","echarts","eclint","ejs", -"elasticsearch","electricity-death-web3-story","electron","electron-builder","electron-packager","electron-prebuilt", -"electron-rebuilder", -"element-resize-detector","element-ui","eleventy","elliptic","email-templates","emailjs","ember-cli","ember-cli-babel", -"ember-cli-htmlbars","emmet","emotion","encodeurl","end-of-stream","enhanced-resolve","enquirer","ent","enumtype", -"envify","envinfo","enzyme","enzyme-adapter-react-16","enzyme-adapter-utils","enzyme-shallow-equal","errorhandler", -"es-check","es-value-fixtures","es5-ext","es5-shim","es6-error","es6-promise","es6-promisify","es6-shim","esbuild", -"escape-html","escape-string-regexp","escodegen","eslint","eslint-config-airbnb","eslint-config-airbnb-base", -"eslint-config-airbnb-typescript","eslint-config-google","eslint-config-gulp","eslint-config-oclif", -"eslint-config-oclif-typescript","eslint-config-prettier","eslint-config-react-app","eslint-config-semistandard", -"eslint-config-standard","eslint-config-unjs","eslint-config-xo","eslint-config-xo-lass","eslint-doc-generator", -"eslint-import-resolver-typescript","eslint-loader","eslint-plugin-ava","eslint-plugin-babel","eslint-plugin-compat", -"eslint-plugin-es5","eslint-plugin-eslint-comments","eslint-plugin-eslint-plugin","eslint-plugin-flowtype", -"eslint-plugin-html","eslint-plugin-import","eslint-plugin-jest", -"eslint-plugin-jsdoc","eslint-plugin-jsonc","eslint-plugin-jsx-a11y","eslint-plugin-markdown","eslint-plugin-mocha", -"eslint-plugin-n","eslint-plugin-node","eslint-plugin-prettier","eslint-plugin-promise","eslint-plugin-react", -"eslint-plugin-react-hooks","eslint-plugin-regexp","eslint-plugin-security","eslint-plugin-sonarjs", -"eslint-plugin-standard","eslint-plugin-svelte","eslint-plugin-testing-library","eslint-plugin-tsdoc", -"eslint-plugin-unicorn","eslint-plugin-vitest","eslint-plugin-vue","eslint-remote-tester","eslint-scope", -"eslint-visitor-keys","eslintrc","esm","espree","esprima","estraverse","estree-walker","etag","ethereumjs-tx", -"ethereumjs-util","evalmd","event-stream","eventemitter2","eventemitter3","events","excellent-difficult-good","execa", -"exit","expect","expect-type","expect.js","express","express-adexe","express-autodoc","express-generator", -"express-handlebars","express-jwt","express-session","express-tools","express-typed-rpc","express-validator", -"express-zod-api","extend","extend-shallow","extract-text-webpack-plugin","extract-zip","facing-cook", -"fair-tower-web3-store","faker","fancy-log","fast-check", -"fast-csv","fast-deep-equal","fast-glob","fast-plist","fast-xml-parser","fastclick","fastify","father","faucet","fbjs", -"fe-pilot","feature-rising-small7","femo","fetch-mock","fibers","figlet","figures","file-loader","file-saver", -"file-type","filesize","finalhandler","find-cache-dir","find-up","findup-sync","firan-logging","firebase", -"firebase-admin","firebase-tools","fixpack","fixturify","flat","flatpak-bundler","flatpickr","flightplan","flow-bin", -"flowbite","fluent-ffmpeg","flux","follow-redirects","font-awesome","for-each","forever", -"fork-ts-checker-webpack-plugin","fork-ts-checker-webpack-plugin-alt","form-data","formidable","formik","fresh", -"fresh-dangerous","friendly-errors-webpack-plugin","front-matter","fs","fs-extra","fs-jetpack","fs-promise","fsevents", -"fstream","ftp","functions-have-names","fur-race-web3-pale","fuse.js","futen","fuzzy", -"gaze","gc-signals","generator-angular","generator-gulp-angular","generator-nitro","generic-pool","gensequence", -"gentle-party-other","geolib","get-package-type","get-port","get-stdin","get-stream","get-tsconfig","getmac","gh-pages", -"ghooks","github","github-buttons","glob","glob-parent","global","globals","globby","gm","gmll","google-spreadsheet", -"googleapis","got","government-letter-web3-till","govuk-frontend","graceful-fs","gradually-current-chief","graph-these", -"graphql","graphql-tag","graphql-tools","gray-matter","grpc","grunt","grunt-angular-templates","grunt-auto-release", -"grunt-browserify","grunt-bump","grunt-cli","grunt-concurrent","grunt-contrib-clean","grunt-contrib-compass", -"grunt-contrib-concat","grunt-contrib-connect","grunt-contrib-copy","grunt-contrib-csslint","grunt-contrib-cssmin", -"grunt-contrib-htmlmin","grunt-contrib-imagemin","grunt-contrib-internal","grunt-contrib-jshint","grunt-contrib-less", -"grunt-contrib-nodeunit","grunt-contrib-sass","grunt-contrib-uglify","grunt-contrib-watch", -"grunt-conventional-changelog","grunt-conventional-github-releaser", -"grunt-eslint","grunt-jscs","grunt-jsdoc","grunt-karma","grunt-mocha-test","grunt-newer","grunt-notify","grunt-npm", -"grunt-sass","grunt-saucelabs","grunt-shell","grunt-simple-mocha","grunt-spritesmith","grunt-usemin","gts","guarapi", -"gulp","gulp-angular-templatecache","gulp-atom-electron","gulp-autoprefixer","gulp-awspublish","gulp-azure-storage", -"gulp-babel","gulp-bom","gulp-bower","gulp-browserify","gulp-buffer","gulp-bump","gulp-cache","gulp-cached", -"gulp-changed","gulp-clean","gulp-clean-css","gulp-coffee","gulp-compass","gulp-concat","gulp-concat-css", -"gulp-conflict","gulp-connect","gulp-copy","gulp-csscomb","gulp-csslint","gulp-cssnano","gulp-csso","gulp-data", -"gulp-eslint","gulp-file-include","gulp-filter","gulp-flatmap","gulp-flatten","gulp-format-md","gulp-ftp", -"gulp-gh-pages","gulp-git","gulp-gzip","gulp-handlebars","gulp-header","gulp-html-replace","gulp-htmlmin", -"gulp-iconfont","gulp-if","gulp-ignore","gulp-image-resize","gulp-imagemin", -"gulp-include","gulp-inject","gulp-inline-css","gulp-install","gulp-istanbul","gulp-jade","gulp-jasmine","gulp-jscs", -"gulp-jshint","gulp-json-editor","gulp-less","gulp-livereload","gulp-load-plugins","gulp-minify-css","gulp-minify-html", -"gulp-mocha","gulp-newer","gulp-ng-annotate","gulp-nodemon","gulp-notify","gulp-plugin-extras","gulp-plumber", -"gulp-postcss","gulp-preprocess","gulp-prompt","gulp-react","gulp-remote-src","gulp-rename","gulp-replace","gulp-rev", -"gulp-rev-replace","gulp-ruby-sass","gulp-sass","gulp-sftp","gulp-shell","gulp-size","gulp-sourcemaps", -"gulp-strip-debug","gulp-stylus","gulp-svg-sprite","gulp-svgmin","gulp-svgstore","gulp-template","gulp-tsb", -"gulp-tslint","gulp-typescript","gulp-uglify","gulp-uncss","gulp-usemin","gulp-useref","gulp-util","gulp-vinyl-zip", -"gulp-watch","gulp-webpack","gulp-webserver","gulp-zip","gulp.spritesmith","gzip-size","hallmark","hammerjs", -"handlebars","hapi","happy-dom","happy-meant", -"hard-cool-rhythm-continued","has-flag","has-parts-ice-fact","has-symbols","hash-sum","hasown","hast-util-raw", -"hast-util-sanitize","hast-util-select","hast-util-to-estree","hast-util-to-html","hast-util-to-jsx-runtime", -"hast-util-to-string","hast-util-to-text","hastscript","hay-against-any-hurry","hbs","he","heapdump","helmet", -"heroicons","hexlet-pairs","hexo","highland","highlight.js","hiredis","history","history-brass-sound", -"hit-running-special8","hoek","hogan.js","hoist-non-react-statics","homebridge","hono","hope-slight-walk1", -"hosted-git-info","how-to-npm","html-dom-parser","html-element-attributes","html-encoding-sniffer","html-entities", -"html-escaper","html-loader","html-minifier","html-minifier-terser","html-pdf","html-react-parser","html-tags", -"html-to-image","html-to-text","html-validate","html-webpack-plugin","htmlnano","htmlparser2","http","http-errors", -"http-proxy","http-proxy-agent","http-proxy-middleware","http-server","http-status","http-status-codes","https", -"https-proxy-agent", -"husky","hyperquest","hyphenate-style-name","i","i18n","i18next","i18next-gridly-backend","iconv-lite", -"identity-obj-proxy","ignore","image-size","imagemagick","imagemin","imagemin-pngquant","imap","immer", -"immutability-helper","immutable","import-fresh","import-local","impress","in-publish","indent-string","inert","inferno", -"inflection","inherits","ini","iniparser","ink","inline-style-parser","innosetup-compiler","inquirer", -"inquirer-autocomplete-prompt","inside-throw","instagram-node","install","interpret","intl","intl-tel-input","invariant", -"inversify","ionic","ionicons","ioredis","ip","irc","is","is-ci","is-glob","is-installed-globally","is-plain-obj", -"is-plain-object","is-potential-custom-element-name","is-promise","is-stream","is-url","is-wsl","isarray","isobject", -"isomorphic-fetch","istanbul","itwcw-package-analytics","iview", -"jackspeak","jade","jake","jarallax","jasmine","jasmine-core","jasmine-node","jest","jest-canvas-mock","jest-cli", -"jest-diff","jest-environment-jsdom","jest-environment-jsdom-fourteen","jest-environment-node","jest-extended", -"jest-html-reporters","jest-junit","jest-pnp-resolver","jest-resolve","jest-util","jest-watch-typeahead","jest-worker", -"jimp","jiti","jodit","jodit-react","johnny-five","joi","jotai","jquery","jquery-ui","js-base64","js-beautify", -"js-cookie","js-yaml","jsarch","jscpd","jscs","jsdoc","jsdoc-api","jsdoc-to-markdown","jsdom","jsdom-no-contextify", -"jsesc","jshint","jshint-stylish","json-2-csv","json-loader","json-schema","json-server","json-stable-stringify", -"json-stringify-safe","json5","jsonc-parser","jsonfile","jsonschema","JSONStream","jsonwebtoken","jspm","jstates", -"jszip","jwt-decode","jwt-simple","karma", -"karma-browserify","karma-browserstack-launcher","karma-chai","karma-chrome-launcher","karma-coverage", -"karma-detect-browsers","karma-edge-launcher","karma-firefox-launcher","karma-ie-launcher","karma-jasmine","karma-mocha", -"karma-mocha-reporter","karma-phantomjs-launcher","karma-qunit","karma-rollup-preprocessor","karma-safari-launcher", -"karma-sauce-launcher","karma-sinon","karma-sourcemap-loader","karma-spec-reporter","karma-webpack","keycode","keypress", -"keyv","kleur","knex","knip","known-css-properties","knox","koa","koa-body","koa-bodyparser","koa-compose","koa-logger", -"koa-mount","koa-router","koa-static","kue","lab","label-lungs-court4","language-perfectly-blow-series", -"late-dress-mail5","latest-version","lazy.js","lead-alike-web3-applied","leaflet","left-pad","leftpad","lerna","less", -"less-loader","level","leveldown","levelup","leven","libnpmdiff","libnpmexec","libnpmfund","libphonenumber-js","liftoff", -"lilconfig","linkifyjs","lint-staged","listr", -"listr2","lit-element","lite-server","live-server","livereload","load-grunt-config","load-grunt-tasks","loader-utils", -"local-web-server","localforage","localtunnel","lockfile-lint","lodash","lodash-es","lodash.assign","lodash.camelcase", -"lodash.clonedeep","lodash.debounce","lodash.defaults","lodash.flatten","lodash.foreach","lodash.get","lodash.isempty", -"lodash.isequal","lodash.isfunction","lodash.isobject","lodash.isplainobject","lodash.isstring","lodash.map", -"lodash.memoize","lodash.merge","lodash.omit","lodash.pick","lodash.set","lodash.template","lodash.throttle", -"lodash.uniq","log","log-symbols","log-update","log4js","loglevel","long","loopback","loose-envify","lowdb","lru-cache", -"lucide","luck-rubber-do","lwip","lws","madwizard","magic-string","magmastream","main-bower-files","make-dir", -"make-node","mammoth","manifest","mantine-contextmenu","many-favorite6","map-stream","mapboxgl-legend","markdown", -"markdown-it","markdown-it-anchor","markdown-it-container","markdown-it-emoji","markdown-pdf","markdown-table", -"markdown-to-jsx","markdown-toc","markdownlint","markdownlint-cli","marked","marky-markdown","matcha","material-ui", -"mathjs","matter-view-web3-fence","md5","md5-file","mdast-util-from-markdown","mdast-util-to-hast","mdn-data","mdxts", -"memcached","memfs","memoize-one","memory-cache","memory-fs","memorystream","memwatch","mental-oxygen-dozen","meow", -"merge","merge-stream","metalsmith","meteor","method-override","methods","microbundle","micromark","micromatch","mime", -"mime-types","min-heap-typed","mini-css-extract-plugin","minify","minimatch","minimist","mirror-jet-printed-supper", -"missing-sport-living","mkcert","mkdirp","mlly","mobx","mobx-react","mocha","mocha-headless-chrome", -"mocha-junit-reporter","mocha-lcov-reporter","mock-fs","mock-property","mock-require","mock-stdin","mockdate","mockery", -"mockjs","moleculer","moment","moment-timezone","monaco-yaml","monads-io","mongo-express","mongodb","mongoose","monitor", -"monitor-dashboard","monk","morgan","motor-positive-spirit","move-wolf-throughout","movie-obtain-tail-prepare","mqtt", -"ms","mssql","msw","mud-slowly-five3","multer","multimatch","multiparty","multiple-cucumber-html-reporter","mustache", -"muuri","mysql","mysql2","mz","n","nails-wild-interest-garden","nan","nano","nano-css","nanoid","native-keymap", -"nativefier","nativescript","natural","nconf","ncp","near-social-bridge","nedb","needle","nest-commander","newman", -"newrelic","next-auth","nextjs","ng-mocks","ng-zorro-antd","ngrok","nib","nightmare","nightwatch","nine-yes-merely6", -"nise","nock","node-addon-api","node-cache","node-containerpattern","node-dev","node-dir", -"node-emoji","node-fetch","node-forge","node-gcm","node-geocoder","node-gyp","node-html-parser","node-inspector", -"node-mocks-http","node-notifier","node-oauth2-server","node-powertools","node-pre-gyp","node-pty","node-red", -"node-sass","node-schedule","node-static","node-uuid","node-watch","node-windows","node-xlsx","node.extend","nodegit", -"nodemailer","nodemon","nodeunit","nodewebkit","nolangjs","nomnom","nopt","normalize-path","normalize-url", -"normalize-wheel","normalize.css","np","npm","npm-check","npm-check-updates","npm-package-arg","npm-package-json-lint", -"npm-packlist","npm-registry-fetch","npm-run-all","npm-run-all2","npm-run-path","npm-to-yarn","npm-windows-upgrade", -"npmcli","npmignore","npmlog","nprogress","nsp","nuke-cli","numeral","nunjucks","nvm","nvmrc","nwsapi","nx","nyc","oas", -"oas-normalize","oauth", -"object-assign","object-hash","object-inspect","object-keys","object-path","object.assign","object.entries", -"observe-food-motion-hidden","on-finished","once","onchange","one-how-hand","onoff","open","open-cli", -"openapi-client-axios","openapi2html","opencv","opener","openweather","opn","optimist", -"optimize-css-assets-webpack-plugin","optionator","ora","orchestrator","orm","os","osenv","outdent","outline-slowly", -"overlayscrollbars","ovsx","p-event","p-map","p-queue","p-timeout","p23","pa11y","pacote","pageres","paintor","pako", -"para-cli","para-client-js","parallelshell","parse","parse5","parseurl","passport","passport-facebook","passport-local", -"passport-oauth","passport-oauth2","passport-strategy","path","path-browserify","path-exists","path-is-absolute", -"path-to-regexp","pathe","paypal-server-api","pdfjs","pdfkit", -"performance-now","pg","phantom","phantomjs","phantomjs-prebuilt","phonegap","pi-gpio","picocolors","picomatch", -"pie-case-nor-great","pify","pino","pinst","pitch-somehow-earth-brave","pixelmatch","pkg-dir","pkg-up","pkginfo", -"playwright","plist","plugin-error","plur","pluralize","pm2","pngjs","pnp-webpack-plugin","pnpm","pnpx", -"poe-api-manager","polished","political-plan-careful","popper.js","portfinder","postcss","postcss-calc","postcss-cli", -"postcss-color-functional-notation","postcss-colormin","postcss-convert-values","postcss-cssnext","postcss-custom-media", -"postcss-custom-properties","postcss-custom-selectors","postcss-discard-comments","postcss-discard-duplicates", -"postcss-discard-empty","postcss-discard-overridden","postcss-flexbugs-fixes","postcss-html", -"postcss-image-set-function","postcss-import","postcss-load-config","postcss-loader","postcss-merge-longhand", -"postcss-merge-rules","postcss-minify-font-values","postcss-minify-gradients","postcss-minify-params", -"postcss-minify-selectors","postcss-modules-local-by-default","postcss-nested","postcss-nesting","postcss-normalize", -"postcss-normalize-charset", -"postcss-normalize-positions","postcss-normalize-string","postcss-normalize-unicode","postcss-normalize-url", -"postcss-normalize-whitespace","postcss-ordered-values","postcss-prefix-selector","postcss-preset-env", -"postcss-reduce-initial","postcss-safe-parser","postcss-scss","postcss-selector-parser","postcss-svgo", -"postcss-unique-selectors","postcss-value-parser","postgrejs","posthtml","pouchdb","power-assert","pre-commit","preact", -"prepare-package","prettier","prettier-plugin-jsdoc","prettier-plugin-organize-imports","prettier-plugin-packagejson", -"prettier-plugin-svelte","prettierrc","pretty-bytes","pretty-error","pretty-format","pretty-ms","pretty-quick", -"prettyjson","prisma","prismjs","private-bower","proc-log","process","progress","progress-bar-webpack-plugin","promise", -"promise-polyfill","promises-aplus-tests","promo-server","prompt","prompts","prop-types","property-information", -"protobufjs","protractor","proxy","proxyquire","publish-please","pug","pull-stream","pump","punycode","puppeteer", -"purgecss","q","qr-image","qrcode-terminal","qs", -"query-string","querystring","queue","queue-typed","quill","qunit","qunit-dom","qunitjs","raf","ramda","random-words", -"randombytes","randomstring","range-parser","raven","raw-body","raw-loader","rc","rc-slider","rc-tooltip","rc-util", -"rcw-plugin","react","react-addons-css-transition-group","react-addons-shallow-compare","react-apollo", -"react-app-polyfill","react-bootstrap","react-color","react-copy-to-clipboard","react-datepicker","react-dev-utils", -"react-dnd","react-dnd-html5-backend","react-docgen","react-dom","react-dropzone","react-error-overlay","react-helmet", -"react-hook-form","react-hot-loader","react-i18next","react-icons","react-intersection-observer","react-intl","react-is", -"react-lifecycles-compat","react-markdown","react-modal","react-motion","react-native","react-native-keychain", -"react-native-vector-icons","react-number-format","react-onclickoutside","react-property","react-redux","react-refresh", -"react-responsive","react-router","react-router-dom","react-router-redux","react-scripts","react-select", -"react-slick","react-styleguidist","react-svg","react-tap-event-plugin","react-test-renderer","react-toastify", -"react-tools","react-transition-group","react-virtualized","reactify","reactstrap","read","read-pkg","read-pkg-up", -"readable-stream","readline","readline-sync","recall-shut-say","recast","recently-building-save","rechoir","recompose", -"recursive-readdir","redis","redoc","redocusaurus","redux","redux-actions","redux-form","redux-logger","redux-saga", -"redux-thunk","reflect-metadata","regenerate","regenerator-runtime","rehype","rehype-autolink-headings", -"rehype-external-links","rehype-mdx-code-props","rehype-parse","rehype-raw","rehype-slug","rehype-stringify", -"release-it","remap-istanbul","remark","remark-cli","remark-gfm","remark-html","remark-mermaidjs","remark-parse", -"remark-preset-github","remark-preset-wooorm","remark-rehype","remarkable","replace-ext","replace-in-file","request", -"request-promise","request-promise-native","require-all","require-dir","requireindex","requirejs", -"reselect","resize-observer-polyfill","resolve","resolve-from","resolve-url-loader","rest-chronicle","restify","restler", -"restore-cursor","rethinkdb","retry","rewire","rfdc","rimraf","robotjs","rollup","rollup-plugin-babel", -"rollup-plugin-buble","rollup-plugin-cleanup","rollup-plugin-commonjs","rollup-plugin-dts","rollup-plugin-json", -"rollup-plugin-license","rollup-plugin-node-builtins","rollup-plugin-node-globals","rollup-plugin-node-resolve", -"rollup-plugin-replace","rollup-plugin-sourcemaps","rollup-plugin-terser","rollup-plugin-typescript", -"rollup-plugin-typescript2","rollup-plugin-uglify","rollup-plugin-visualizer","rollup-pluginutils","routes","rsnext", -"rsvp","rtlcss","run-sequence","run-series","rx","rxjs","rxjs-compat","safe-buffer","safe-publish-latest","sails", -"salt-type-oldest-faster","sand-have-metal6","sanitize-filename","sanitize-html","sass","sass-loader","sat-local","sax", -"scheduler","schema-markdown-doc","schema-utils","science-knowledge-truth","seblakhotspicy","secp256k1","seedrandom", -"selenium-webdriver","semantic-release","semantic-ui-react", -"semistandard","semver","send","seneca","sentiment","sequelize","serialize-javascript","serialport","serve", -"serve-favicon","serve-index","serve-static","server-destroy","serverless-finch","serverless-spy","sha1","shallowequal", -"sharp","shell-quote","shelljs","shinning-continued-becoming","shortid","should","showdown","shx","sick-typical-court7", -"signal-exit","similar-cheese-loss","simple-assi-animation","simple-git","simple-prompts-web3","single-spa", -"sink-mighty-orbit0","sink-rod-lamp","sinon","sinon-chai","sinopia","sirv","size-limit","sizeitup","skapi-js", -"sky-buy-web3-rock","slash","slice-ansi","slow-deps","slow-voice-spell-pass","slug","slugify","small-grow-mix4", -"snake-seven-recall-interior","snazzy","soap","socket.io","socket.io-client","sockjs-client","source-map", -"source-map-js","source-map-loader","source-map-support","space-separated-tokens","spectaql", -"speech-section-part-frozen","spirit-labor-cheese","split", -"split2","spring-dust-wall-size","sprintf","sprintf-js","sprity","sqlite3","ssh2","ssri","st.db","stack-trace", -"standard","standard-version","star-location","start-server-and-test","statsd","statuses","stock-independent-balloon", -"storybook","storybook-django","straiforos-compodoc","strange-lady-riding9","stream-assert","stream-transform", -"streamii","strftime","string","string-strip-html","string-width","stringify-entities","strip-ansi","strip-bom", -"strip-json-comments","stripe","strongloop","style-dictionary","style-loader","style-to-js","style-to-object", -"styled-components","styled-jsx","stylehacks","stylelint","stylelint-config-standard", -"stylelint-declaration-strict-value","stylelint-order","stylelint-scss","stylus","stylus-loader", -"sugar-policeman-entire","sugarss","sun-grass-circle0","superagent","superjson","supertest","supertest-as-promised", -"supervisor","support-vessels-web3-vessels","supports-color","surrounded-characteristic-or-rain","svelte","svelte-check", -"svelte-preprocess","svg-sprite","svgo", -"sw-precache-webpack-plugin","swagger-autogen","swagger-inline","swagger-themes","swagger-ui-express", -"swam-darkness-weak","swig","swiper","sync-request","systeminformation","systemjs","tail-iron-became5","tailwind", -"tailwind-merge","tailwindcss","tap","tap-spec","tapable","tape","tar","tar-fs","tar-stream","tarant", -"tarant-sync-router-express","tdl","tdlib-native","temp","tempy","terminal-kit","terminal-menu","terser", -"terser-webpack-plugin","test-cutting","test-runner","test-snippets","testcafe","testcontainers","testdouble","testem", -"text-table","three","throttle-debounce","through","through2","throw-did-darkness4","thunkify","tildify","time-grunt", -"tinper-bee","tiny-lr","tinybench","tinycolor2","tinymce","tinypool","tinyspy","tmp","toastify-react-native","tocbot", -"toml","touch","tough-cookie","tracer","traffic-carry-opinion","train-stick-swept7", -"traverse","tree-kill","tribe-leaving-basket","trpc","trumpet","ts-cache-mongoose","ts-japi","ts-jest","ts-loader", -"ts-migrate-mongoose","ts-morph","ts-node","ts-patch-mongoose","ts-pnp","ts-rule-engine","tsconfig-paths","tsd", -"tsd-lite","tshy","tslib","tslint","tslint-config-prettier","tslint-react","tsup","tsx","turndown","tv4","tweetnacl", -"twemoji","twit","twitter","type-coverage","type-fest","type-is","typedoc","typedoc-material-theme", -"typedoc-plugin-extras","typedoc-plugin-markdown","typedocs","typegen","typegoose","typeorm","typescript", -"typescript-eslint","typescript-formatter","typescript-plugin-css-modules","typings","uglify-es","uglify-js", -"uglifyjs-webpack-plugin","uid-safe","uiw","uj-apidoc-core","ulid","ultrahtml","unbuild","underscore", -"underscore.string","undici","unified","unique-random-array","unist-util-visit","untildify","unusual-rope", -"unzip","update-notifier","urijs","url","url-join","url-loader","url-parse","urllib","user","user-home","useragent", -"utf8","util","utils-merge","uuid","uvu","valid-url","validate-commit-msg","validate-npm-package-name","validator", -"vant","vary","vasync","vercel","verror","vhost","victory-mouth","viewerjs","vinyl","vinyl-buffer","vinyl-fs", -"vinyl-source-stream","vinyl-sourcemaps-apply","virtual-dom","vite","vite-plugin-api-routes","vitepress","vitest", -"vorpal","vows","vsce","vscode-debugprotocol","vscode-nls-dev","vscode-textmate","vue","vue-class-component", -"vue-eslint-parser","vue-hot-reload-api","vue-i18n","vue-loader","vue-property-decorator","vue-router", -"vue-style-loader","vue-template-compiler","vuex","walk","walk-sync","warning","watch","watchify","waterline","wd", -"web3","web3-be", -"web3-capital","web3-compass","web3-eve-cli","web3-exactly6","web3-fruit","webpack","webpack-bundle-analyzer", -"webpack-cli","webpack-dev-middleware","webpack-dev-server","webpack-hot-middleware","webpack-manifest-plugin", -"webpack-merge","webpack-node-externals","webpack-sources","webshot","websocket","webtorrent","webworker-threads", -"weinre","whatwg-fetch","when","which","winreg","winston","winston-daily-rotate-file","winston-transport","wiredep", -"word-wrap","wordwrap","workbox-webpack-plugin","world-toy-kill","wrap-ansi","wrench","write-file-atomic","ws","x-ray", -"xhr","xlsx","xml-js","xml2js","xml2json","xmlbuilder","xmldom","xmlhttprequest","xo","xpath","xregexp","xss","xstate", -"xtend","xterm","yaml","yamljs","yargs","yargs-parser","yarn","yarnpkg","yarnrc","yauzl","yeoman-environment", -"yeoman-generator","yn","yo", -"yoctocolors-cjs","yonode","yosay","zmq","zod","zod-http-schemas","zombie","zone.js","zuul","@nx/cypress", -"@nx/eslint-plugin","@nx/jest","@nx/storybook","framer-motion","teajusgula","@mui/styled-engine","jsdoc-parse", -"@commercetools-frontend/constants","downshift","postcss-focus-visible","@augment-vir/common","@biomejs/biome", -"@commercetools-frontend/mc-scripts","@jsonforms/vanilla-renderers","@jsonforms/vue","@jsonforms/vue-vanilla", -"hast-util-from-html","hot-shots","madr","native-run","rehype-katex","supports-hyperlinks","swr","typed-binary", -"ua-parser-js","void-elements","@adonisjs/core","@aneuhold/be-ts-lib","@capacitor/assets", -"@devtea2025/blanditiis-numquam-expedita-neque","@devtea2025/doloremque-voluptas-facere-nemo", -"@devtea2025/quisquam-quod-ab-aut","@devtea2025/suscipit-assumenda-a-assumenda", -"@devtea2025/voluptatibus-vero-magni-rerum","@diahkomalasarinpm/odio-facilis-beatae", -"@diahkomalasarinpm/praesentium-sint-dolorem","@enact/core","@envelop/core","@ionic/cli","@jsonforms/angular", -"@jsonforms/examples","@npmtea2024/quasi-nisi-doloremque-fugit","@ptkhanh94npm/iusto-libero-aperiam", -"@ptkhanh94npm/quis-saepe-velit","@renyii/vue-renderless","@teamteanpm2024/aperiam-fugit-error", -"@teamteanpm2024/architecto-alias-quod","@teamteanpm2024/aut-voluptatum-vero","@teamteanpm2024/beatae-aliquid-id", -"@teamteanpm2024/expedita-labore-ipsum","@teamteanpm2024/odio-fugiat-in", -"@teamteanpm2024/voluptatibus-reprehenderit-odit","@testing-library/react-hooks","@zibuthe7j11/deserunt-quasi-impedit", -"anser","aws-sdk-client-mock","cupertino-pane","eruda","fasteejs","foundation-sites","gradient-string","grommet", -"html-url-attributes","magnific-popup","next","postcss-opacity-percentage","pwa-asset-generator","rapidoc", -"react-native-animatable","react-native-collapsible","react-swipeable-list","react-textarea-autosize","readme-md", -"recharts","riot","sortablejs","tdesign-mobile-vue","uploadcare-widget","wait-on","weui","zustand","fontsource","nextra", -"synckit","tinyglobby","tstyche","@ibyar/expressions","@mantine/carousel","@mantine/code-highlight","@mantine/dropzone", -"@mantine/nprogress","@mantine/spotlight","@mantine/store","@mantine/tiptap","allure-js-commons","express-intlayer", -"is-mobile","rehype-mermaid","@bugsnag/react-native","@enact/ui","@enact/webos","@ionic/angular", -"@npmtuanmap/velit-nobis-nostrum-nam","@skylernpm/hic-inventore-dolores","@skylernpm/reiciendis-non-corrupti", -"admin-lte","backendless","smartbanner.js","zarm","@enact/sandstone","perfect-scrollbar","react-responsive-select", -"titanium","@antora/logger","@asyncapi/generator","@docusaurus/core","@ionic/react","@juggle/resize-observer", -"@mui/base","@mui/private-theming","@mui/utils","@nestjsx/crud","@nestjsx/crud-typeorm","@netlify/framework-info", -"@next/env","@pmmmwh/react-refresh-webpack-plugin","@pothos/core","@storybook/addon-backgrounds","@strapi/strapi", -"@svgr/core","@svgr/hast-util-to-babel-ast","@tinyhttp/encode-url","@tinyhttp/logger", -"@tsparticles/interaction-external-push","@tsparticles/move-base","@tsparticles/shape-emoji", -"@tsparticles/updater-color","@tsparticles/updater-opacity","@tsparticles/updater-out-modes","@uppy/companion", -"@vuepress/core","@vuepress/markdown","@vuepress/markdown-loader","@vuepress/plugin-active-header-links", -"@vuepress/plugin-last-updated","@vuepress/plugin-nprogress","@vuepress/plugin-register-components", -"@vuepress/plugin-search","@vuepress/shared-utils","@vuepress/theme-default","@walletconnect/browser-utils", -"@walletconnect/iso-crypto","@walletconnect/legacy-modal","@walletconnect/legacy-provider", -"@walletconnect/socket-transport","@wordpress/primitives","angular-messages","angular-mocks","ansi-align", -"blocking-proxy","body-scroll-lock","broccoli","broccoli-builder","broccoli-middleware","browserstack","camelcase-css", -"character-entities","character-entities-html4","character-entities-legacy","character-reference-invalid","client-only", -"color-string","comma-separated-tokens","condense-newlines","css-mediaquery","css.escape","csso","dashdash", -"decap-cms-backend-aws-cognito-github-proxy","decap-cms-backend-azure","decap-cms-backend-bitbucket", -"decap-cms-backend-git-gateway", -"decap-cms-backend-github","decap-cms-backend-gitlab","decap-cms-backend-proxy","decap-cms-backend-test", -"device-detector-js","docsify","docsify-cli","dom7","enzyme-to-json","epub2","escape-goat","esdoc", -"eslint-rule-documentation","globals-docs","hast-util-is-element","hast-util-parse-selector","hast-util-to-parse5", -"hast-util-whitespace","html-parse-stringify","html-void-elements","http-graceful-shutdown","icss-utils", -"inferno-create-element","inferno-hydrate","inferno-vnode-flags","infima","ink-docstrap","jasminewd2", -"jest-preset-angular","jest-preview","logging-helpers","lws-index","micromark-extension-gfm-tagfilter", -"micromark-util-encode","micromark-util-html-tag-name","mobile-detect","nth-check","parse-entities","postcss-js", -"postcss-modules-values","query-selector-shadow-dom","rc-hammerjs","rdme","react-colorful","react-device-detect", -"react-easy-router","react-fast-compare","react-native-file-viewer","react-native-lightbox-v2","react-native-progress", -"react-native-svg-charts","react-native-youtube-iframe","react-popper","react-responsive-modal","react-style-singleton", -"text-hex","tsparticles","tua-body-scroll-lock","typedoc-default-themes","use-callback-ref","use-sidecar","vconsole", -"vitefu","vue-perfect-scrollbar", -"vuepress","wait-for-expect","webdriver-js-extender","webdriver-manager","widest-line","worktop", -"@antora/playbook-builder","@applitools/utils","@dataui/crud","@mui/types","@tsparticles/shape-circle", -"@tsparticles/updater-life","@tsparticles/updater-rotate","drag-drop","plasmo","react-h5-audio-player", -"@arethetypeswrong/cli","arethetypeswrong","astro","astrojs","cookiecutter","degit","tseslint","@web/test-runner-mocha", -"colord","@expressots/core","@tsparticles/interaction-particles-links","@astrojs/starlight", -"@expressots/adapter-express","@expressots/shared","@tsparticles/interaction-external-bounce", -"@tsparticles/interaction-external-remove","@tsparticles/move-parallax","@tsparticles/shape-polygon", -"@tsparticles/shape-square","pinia","@floating-ui/react","@tsparticles/shape-image","astro-expressive-code", -"netlify-cms-backend-test","rehype-expressive-code","@augment-vir/assert","cssfilter", -"@amaui/icons-material-rounded-react","@appium/types","@dataui/crud-typeorm","@tsparticles/basic", -"@tsparticles/updater-size","@onesy/icons-material-rounded-react","@tsparticles/interaction-external-grab", -"@tsparticles/interaction-particles-collisions","react-native-macos","@tsparticles/interaction-external-repulse", -"@tsparticles/slim","@ionic/react-router","@immobiliarelabs/backstage-plugin-gitlab-backend","@tsparticles/shape-star", -"kuler","@scalar/nextjs-api-reference","netlify-cms-backend-bitbucket","vendors","@busy-hour/blaze", -"@busy-hour/blaze-types","payload", -"attw","@egjs/flicking","body-scroll-lock-upgrade","@casl/ability","neostandard","@appium/schema","@modern-js/utils", -"@types/xast","css-what","grunt-svgmin","@modern-js/node-bundle-require","@axe-core/playwright","tsdown", -"careful-downloader","sonner","@ckeditor/ckeditor5-collaboration-core","embla-carousel-reactive-utils","react-smooth", -"globrex","@ckeditor/ckeditor5-real-time-collaboration","@inquirer/type","grammy","@tsparticles/plugin-hex-color", -"@tsparticles/plugin-hsl-color","@udecode/plate","loki","netlify-cms-backend-gitlab","teeny-tap","emoji-js","mercurius", -"publint","unbundle","@walletconnect/http-connection","convex-helpers","eslint-plugin-react-refresh","gulp-jsdoc3", -"netlify-cms-backend-git-gateway","borp","pagefind","@pinia/testing","leaflet-gesture-handling","@headlessui/vue", -"remeda","rolldown","valibot","netlify-cms-backend-proxy","lefthook","@nuxt/ui","country-codes-flags-phone-codes", -"embla-carousel-react","input-otp","zoroaster","embla-carousel","@assistant-ui/react","@csstools/css-calc", -"@globalart/nestjs-swagger","@graphiql/plugin-doc-explorer","@mastra/core","next-router-mock","vue-draggable-next", -"@tsparticles/plugin-rgb-color","react-native-lightbox","rolldown-vite","react-native-aes-crypto", -"@inquirer/figures","@lobehub/chat","@inquirer/confirm","@upstash/context7-mcp","@storybook/addon-vitest", -"@walletconnect/heartbeat","lory.js","react-camera-pro","react-native-nitro-modules","@csstools/css-color-parser", -"@csstools/color-helpers","shadcn","@tanstack/virtual-core","otp-io","survey-core","@appium/support","@intlayer/api", -"@prisma/dev","@architect/asap","canvaskit-wasm","@edsdk/n1ed-react","react-error-boundary","@crxjs/vite-plugin", -"@observablehq/plot","skia-canvas","@flmngr/flmngr-react","@vitest/browser-playwright","md-to-pdf","@applitools/eyes", -"@applitools/driver","@applitools/screenshoter","@tsparticles/interaction-external-slow","@tsparticles/shape-line", -"@antora/cli","@antora/navigation-builder","@openspacelabs/react-native-zoomable-view","@testcontainers/postgresql", -"unplugin","@antora/redirect-producer","@antora/site-publisher","@appium/logger","planck","stage-js","oxfmt","syncpack", -"nolyfill","@appium/base-driver","@inquirer/expand","@inquirer/select","@c15t/backend", -"@react-native-vector-icons/common","@antora/content-classifier","@tsparticles/interaction-particles-attract", -"@popperjs/core","animejs","blurup","encryptor","flickity","jstz","lexxy","mapboxgl","mongoid","nums","orms", -"pannellum","psql","svgs","swiperjs","tributejs","twbs","xbytes","dependencies","devDependencies","keywords","ts", -"big.js","@alifd/field","@alifd/overlay","@alifd/validate","shallow-element-equals","@types/react-transition-group", -"jsonp","ts-mocha","tsconfck","@types/co","html5shiv","react-axe","sass-true","@types/md5","react-live","solarlunar", -"@types/chai","@types/glob","@types/node","mochawesome","@types/jsonp","@types/react","@types/yargs","@types/big.js", -"@types/enzyme","@types/lodash","react-cropper","@types/webpack","simulate-event","@types/fs-extra","@types/inquirer", -"chrome-launcher","react-draggable","@types/react-dom","@types/stylelint","console-polyfill","fast-sass-loader", -"@alifd/doc-parser","@alifd/meet-react","@types/babel-core","@types/classnames","markdown-it-prism","@alifd/sass-mapper", -"@types/react-redux","@alifd/sass-tracker","@types/postcss-calc","@alifd/api-extractor","@alifd/dts-generator", -"babel-plugin-espower","es6-promise-polyfill","@alifd/adaptor-helper","@alifd/sassdoc-parser","eslint-plugin-cypress", -"cypress-image-snapshot","@alifd/adaptor-generate","@types/lodash.clonedeep","@types/react-router-dom", -"@alifd/babel-preset-next","@babel/plugin-syntax-jsx","css-split-webpack-plugin","karma-webdriver-launcher", -"@alifd/eslint-config-next","@types/react-test-renderer","node-sass-package-importer","stylelint-csstree-validator", -"@alifd/stylelint-config-next","stylelint-config-recommended","@types/cypress-image-snapshot", -"@types/react-copy-to-clipboard","babel-plugin-generator-prettier","@types/postcss-custom-properties", -"babel-plugin-transform-object-assign","babel-plugin-transform-proto-to-assign", -"babel-plugin-transform-react-es6-displayname","fusion","fusion design","component","ui toolkit","react-components", -"components","design","frontend","Angular CLI","Angular DevKit","core","devkit","sdk","blueprints","code generation", -"scaffolding","schematics","template","tooling","cdk","development","kit","@jridgewell/sourcemap-codec","compiler", -"@standard-schema/spec","material","material design","xhr2","@types/dom-navigation","router","rc-field-form", -"utility-types","lodash.mergewith","lodash.assignwith","normalize-css-color","react-native-codegen", -"@floating-ui/react-native","@rc-component/mini-decimal","react-native-modal-popover", -"@bang88/react-native-ultimate-listview","bisheng","jsonml.js","enquire.js", -"@types/jest","shell-utils","react-native-web","@ant-design/tools","@types/prop-types","@types/react-native", -"ant-design-palettes","react-github-button","react-native-mocker","react-document-title","react-native-screens", -"antd-mobile-demo-data","@react-navigation/stack","@types/lodash.mergewith","react-native-reanimated", -"@react-navigation/native","react-native-gesture-handler","@testing-library/react-native", -"@ant-design/icons-react-native","react-native-safe-area-context","metro-react-native-babel-preset", -"@react-native-community/eslint-config","ant","react-component","ui","framework","mobile","react native", -"@types/lodash-es","@ant-design/icons","@inline-svg-unique-id/react","icon","@auth/core","set-cookie-parser", -"@sveltejs/package","@sveltejs/adapter-auto","@types/set-cookie-parser","authentication","authjs","jwt","sveltekit", -"oidc","passwordless","fs-readdir-recursive","@jridgewell/trace-mapping","@types/fs-readdir-recursive", -"@babel/helper-transform-fixture-test-runner","6to5","es6","transpile","transpiler","js-tokens", -"@babel/helper-validator-identifier","charcodes","import-meta-resolve","gensync","@babel/helpers","@babel/template", -"@babel/generator","@jridgewell/remapping","@babel/helper-module-transforms","@babel/helper-compilation-targets", -"@types/debug","@types/semver", -"@types/resolve","@babel/plugin-syntax-flow","@types/convert-source-map","@babel/plugin-transform-flow-strip-types", -"@babel/plugin-transform-modules-commonjs","classes","const","harmony","let","modules","var","@babel/helper-fixtures", -"@babel/helper-string-parser","@babel/helper-check-duplicate-nodes","javascript","parser","tc39","ecmascript", -"@babel/helper-create-class-features-plugin","@babel/helper-plugin-test-runner","babel-plugin","moo","luxon","entities", -"liquidjs","iso-639-1","bcp-47-normalize","dependency-graph","@11ty/lodash-custom","@11ty/posthtml-urls", -"please-upgrade-node","@11ty/eleventy-utils","@11ty/recursive-copy","@11ty/dependency-tree","@sindresorhus/slugify", -"node-retrieve-globals","posthtml-match-helper","@11ty/dependency-tree-esm","@11ty/eleventy-dev-server", -"@11ty/eleventy-plugin-bundle","pretty","@iarna/toml","nano-staged","@zachleat/noop","@eslint/eslintrc", -"markdown-it-abbr","simple-git-hooks","jsx-async-runtime","@11ty/eleventy-img","@mdx-js/node-loader", -"@vue/server-renderer","zod-validation-error","@11ty/eleventy-plugin-rss","@11ty/eleventy-plugin-webc", -"@11ty/eleventy-plugin-syntaxhighlight","static-site-generator","static-site","ssg","website","jekyll","blog", -"templates","generator","11ty", -"html","liquid","@rollup/plugin-terser","@rollup/plugin-typescript","@types/benchmark","@types/bytes","stringifier", -"stylesheet","ast","css-parser","css-ast","css-tools","format","preprocessor","@advanced-rest-client/arc-icons", -"@advanced-rest-client/arc-marked","@advanced-rest-client/clipboard-copy","@advanced-rest-client/http-code-snippets", -"@advanced-rest-client/markdown-styles","@anypoint-web-components/anypoint-button", -"@anypoint-web-components/anypoint-collapse","@anypoint-web-components/anypoint-dropdown", -"@anypoint-web-components/anypoint-item","@anypoint-web-components/anypoint-listbox","@api-components/amf-helper-mixin", -"@api-components/api-annotation-document","@api-components/api-body-document","@api-components/api-example-generator", -"@api-components/api-headers-document","@api-components/api-parameters-document", -"@api-components/api-responses-document","@api-components/api-security-documentation", -"@api-components/http-method-label","lit-html","@advanced-rest-client/arc-demo-helper", -"@advanced-rest-client/oauth-authorization","@anypoint-web-components/anypoint-checkbox", -"@anypoint-web-components/anypoint-input","@anypoint-web-components/anypoint-styles", -"@api-components/api-model-generator","@api-components/api-navigation","@api-components/api-request", -"@api-components/api-server-selector","@commitlint/config-conventional","@open-wc/eslint-config","@open-wc/testing", -"@web/dev-server","@web/test-runner","@web/test-runner-playwright","typescript-lit-html-plugin","api-components", -"method-documentation","@graphql-typed-document-node/core","@wry/caches","@wry/equality","@wry/trie","optimism","apollo", -"hooks","client","cache","@asyncapi/parser","@rollup/plugin-babel","babel-plugin-source-map-support", -"asyncapi","@nicolo-ribaudo/eslint-scope-5-internals","@types/eslint","@typescript-eslint/scope-manager", -"@babel/plugin-syntax-decorators","array.prototype.concat","babel-plugin-polyfill-es-shims", -"object.getownpropertydescriptors","decorators","@babel/plugin-syntax-export-namespace-from","@babel/compat-data", -"@babel/plugin-syntax-object-rest-spread","@babel/plugin-transform-parameters","@babel/helper-module-imports", -"babel-plugin-polyfill-corejs2","babel-plugin-polyfill-corejs3","babel-plugin-polyfill-regenerator", -"@babel/runtime-corejs3","derequire","core-js-compat","@babel/preset-modules","@babel/helper-validator-option", -"@babel/plugin-transform-for-of","@babel/plugin-transform-spread","@babel/plugin-transform-classes", -"@babel/plugin-transform-literals","@babel/plugin-transform-new-target","@babel/plugin-transform-modules-amd", -"@babel/plugin-transform-modules-umd","@babel/plugin-transform-regenerator","@babel/plugin-transform-dotall-regex", -"@babel/plugin-transform-json-strings","@babel/plugin-transform-object-super","@babel/plugin-transform-sticky-regex", -"@babel/plugin-transform-block-scoping","@babel/plugin-transform-destructuring","@babel/plugin-transform-function-name", -"@babel/plugin-transform-typeof-symbol","@babel/plugin-transform-unicode-regex","@babel/plugin-syntax-import-assertions", -"@babel/plugin-syntax-import-attributes","@babel/plugin-transform-duplicate-keys", -"@babel/plugin-transform-dynamic-import","@babel/plugin-transform-reserved-words", -"@babel/plugin-syntax-unicode-sets-regex","@babel/plugin-transform-arrow-functions", -"@babel/plugin-transform-private-methods","@babel/plugin-transform-unicode-escapes", -"@babel/plugin-transform-class-properties","@babel/plugin-transform-modules-systemjs", -"@babel/plugin-transform-regexp-modifiers","@babel/plugin-transform-numeric-separator", -"@babel/plugin-transform-optional-chaining","@babel/plugin-transform-property-literals", -"@babel/plugin-transform-template-literals","@babel/plugin-transform-async-to-generator", -"@babel/plugin-transform-class-static-block","@babel/plugin-transform-object-rest-spread", -"@babel/plugin-transform-unicode-sets-regex","@babel/plugin-transform-computed-properties", -"@babel/plugin-transform-shorthand-properties","@babel/plugin-transform-export-namespace-from", -"@babel/plugin-transform-block-scoped-functions","@babel/plugin-transform-optional-catch-binding", -"@babel/plugin-transform-unicode-property-regex","@babel/plugin-transform-exponentiation-operator", -"@babel/plugin-proposal-private-property-in-object","@babel/plugin-transform-async-generator-functions", -"@babel/plugin-transform-member-expression-literals","@babel/plugin-transform-private-property-in-object", -"@babel/plugin-transform-nullish-coalescing-operator","@babel/plugin-transform-explicit-resource-management", -"@babel/plugin-transform-logical-assignment-operators","@babel/plugin-transform-named-capturing-groups-regex", -"@babel/plugin-bugfix-firefox-class-in-computed-class-key","@babel/plugin-bugfix-safari-class-field-initializer-scope", -"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", -"@babel/plugin-transform-duplicate-named-capturing-groups-regex", -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression","@babel/plugin-transform-react-jsx", -"@babel/plugin-transform-react-display-name","@babel/plugin-transform-react-jsx-development", -"@babel/plugin-transform-react-pure-annotations","@babel/plugin-transform-typescript","babel-preset","pirates", -"clone-deep","@babel/helper-globals","@apidevtools/json-schema-ref-parser","@biz-dev-ops/web-components", -"@cucumber/gherkin-streams","@iframe-resizer/child","@iframe-resizer/parent","awilix","bpmn-js", -"json-schema-merge-allof","markdown-it-attrs","markdown-it-codetabs","markdown-it-footnote","markdown-it-multimd-table", -"markdown-it-plantuml-ex","markdown-it-task-lists","pdfjs-viewer-element","prince","svg-pan-zoom","swagger-ui-dist", -"web-resource-inliner","stylelint-config-standard-scss","md","openapi","bpmn","bdd","feature","async-exit-hook", -"transport","logger","backend","mri","p-limit","term-size","spawndamnit","@changesets/git","@changesets/pre", -"@changesets/read","@changesets/types","@changesets/write","@changesets/config", -"@changesets/errors","@changesets/logger","@manypkg/get-packages","package-manager-detector","@changesets/changelog-git", -"@inquirer/external-editor","@changesets/get-release-plan","@changesets/apply-release-plan", -"@changesets/should-skip-package","@changesets/get-dependents-graph","@changesets/assemble-release-plan","human-id", -"@chatscope/chat-ui-kit-styles","@fortawesome/fontawesome-free","@semantic-release/changelog","@semantic-release/git", -"@semantic-release/github","chokidar-cli","rollup-plugin-peer-deps-external","chat","reactjs","user interface","ui kit", -"communication","conversation","toolkit","library","reusable","feed","comments","social","talk","ckeditor","ckeditor 5", -"ckeditor5-feature","ckeditor5-plugin","ckeditor5-dll","@ckeditor/ckeditor5-integrations-common","wysiwyg","rich text", -"editor","contentEditable","editing","angular2","angular 5","ng","@ckeditor/ckeditor5-icons","@ckeditor/ckeditor5-enter", -"@ckeditor/ckeditor5-editor-balloon","operational transformation","ot","collaboration","collaborative","real-time", -"ckeditor5-build","@ckeditor/ckeditor5-editor-classic","@ckeditor/ckeditor5-font","@ckeditor/ckeditor5-alignment", -"@ckeditor/ckeditor5-editor-decoupled","@ckeditor/ckeditor5-editor-inline","blurhash","es-toolkit","ckeditor5-lib", -"@ckeditor/ckeditor5-watchdog", -"@ckeditor/ckeditor5-undo","@ckeditor/ckeditor5-select-all","color-parse","color-convert","vanilla-colorful", -"@types/color-convert","@ckeditor/ckeditor5-editor-multi-root","vue.js","vue component","vue.js component", -"@commitlint/format","@commitlint/lint","@commitlint/load","@commitlint/read","@commitlint/types","tinyexec", -"@commitlint/test","@commitlint/utils","@compodoc/live-server","@compodoc/ngd-transformer","@polka/send-type", -"bootstrap.native","decache","loglevel-plugin-prefix","lunr","neotraverse","opencollective-postinstall","os-name", -"polka","tablesort","vis-network","module","graph","@comunica/types","semantic","actor","messages","nf","@docsearch/css", -"@docsearch/js","@eslint/markdown","@rollup/plugin-replace","@stackblitz/sdk","bundlewatch","clean-css-cli", -"find-unused-sass-variables","hammer-simulator","hugo-bin","karma-coverage-istanbul-reporter", -"karma-jasmine-html-reporter","postcss-combine-duplicated-selectors","rollup-plugin-istanbul","sass-embedded", -"stylelint-config-twbs-bootstrap","vnu-jar","mobile-first","responsive","front-end","web","tokenizer","media query", -"matches","polyfill","postcss-plugin", -"pseudo","selector","custom","declarations","progressive","properties","utility","variables","vars","specificity", -"@cucumber/ci-environment","@cucumber/cucumber-expressions","@cucumber/gherkin","@cucumber/gherkin-utils", -"@cucumber/html-formatter","@cucumber/junit-xml-formatter","@cucumber/message-streams","@cucumber/messages", -"@cucumber/pretty-formatter","@cucumber/tag-expressions","assertion-error-formatter","capital-case","error-stack-parser", -"has-ansi","knuth-shuffle-seeded","read-package-up","string-argv","util-arity","yup","@cucumber/compatibility-kit", -"@cucumber/query","@eslint/compat","@types/dirty-chai","@types/express","@types/has-ansi","@types/lodash.merge", -"@types/luxon","@types/mocha","@types/mustache","@types/mz","@types/progress","@types/sinon-chai", -"@types/sinonjs__fake-timers","@types/stream-buffers","@types/tmp","chai-exclude","dependency-lint","genversion", -"reindent-template-literals","stream-to-string","testing","gherkin","tests","@types/mock-fs","@types/semver-compare", -"@types/signale","jest-mock-process","semver-compare","signale","deven","@diplodoc/cut-extension", -"@diplodoc/file-extension","@diplodoc/tabs-extension","@diplodoc/utils", -"get-root-node-polyfill","github-slugger","markdown-it-deflist","markdown-it-sup","markdownlint-rule-helpers", -"quick-lru","ts-dedent","@diplodoc/babel-preset","@diplodoc/lint","@diplodoc/tsconfig","@types/css", -"@types/github-slugger","@types/js-yaml","@types/markdown-it","@types/markdown-it-attrs","@types/sanitize-html", -"@vitest/coverage-v8","@vitest/ui","esbuild-sass-plugin","jest-serializer-html","markdown-it-testgen","terminal-link", -"yandex","docs","yfm","tool","tools","magic-bytes.js","@discordjs/util","discord-api-types","@sapphire/snowflake", -"@discordjs/collection","@sapphire/async-queue","@vladfrangu/async_event_emitter","turbo","@discordjs/scripts", -"eslint-config-neon","@favware/cliff-jumper","eslint-formatter-pretty","@discordjs/api-extractor", -"esbuild-plugin-version-injector","discord","api","rest","discordapp","discordjs","types","tsdoc","generated", -"@apidevtools/swagger-parser","@aws-sdk/client-s3","@diplodoc/client","@diplodoc/markdown-translation", -"@diplodoc/mermaid-extension","@diplodoc/openapi-extension","@doc-tools/yfm2xliff","@octokit/core", -"@types/json-stringify-safe","@yandex-cloud/nodejs-sdk","bem-cn-lite","threads","threads-plugin","@types/async", -"@types/chalk", -"@types/html-escaper","@types/mime-types","@types/shelljs","@types/tar-stream","markdown-it-meta","@types/markdownlint", -"@yandex-cloud/eslint-config","@yandex-cloud/prettier-config","@yandex-cloud/tsconfig","@tinyhttp/cookie-parser", -"cookie-encrypter","github-markdown-css","greenlock-express","memorystore","minisearch","selfsigned","sitemap","sql.js", -"workerpool","@types/body-parser","@types/compression","@types/express-session","@types/formidable","@types/prompts", -"@types/sass","@types/sql.js","@types/uuid","@types/workerpool","esbuild-wasm","razor","sqlite","aspx","@dnd-kit/core", -"@dnd-kit/modifiers","@dnd-kit/sortable","@dnd-kit/utilities","@stylistic/eslint-plugin","@stylistic/stylelint-plugin", -"@wordpress/dependency-extraction-webpack-plugin","lightningcss","swc-loader","@wordpress/api-fetch","scss","mixin","js", -"WordPress","@tsconfig/node22","@types/lodash.camelcase","@types/pretty-ms",".d.ts","definitions","@emotion/hash", -"@emotion/memoize","@emotion/serialize","babel-plugin-macros","find-root","stylis","babel-check-duplicated-nodes", -"styles","css-in-js","@emotion/cache","@emotion/sheet","@emotion/utils","@definitelytyped/dtslint", -"@emotion/is-prop-valid","@emotion/use-insertion-effect-with-fallbacks","@emotion/react","warun","dot-prop", -"installed-check","@typescript-eslint/types","@eslint-community/eslint-plugin-mysticatea","eslint-plugin", -"@fakeyanss/redocly-openapi-core","decko","json-pointer","mark.js","openapi-sampler","react-tabs","stickyfill", -"swagger2openapi","url-template","@cypress/webpack-preprocessor","@hot-loader/react-dom","@size-limit/preset-app", -"@types/dompurify","@types/enzyme-to-json","@types/json-pointer","@types/lunr","@types/mark.js","@types/marked", -"@types/prismjs","@types/styled-components","@types/tapable","@types/webpack-env","@wojtekmaj/enzyme-adapter-react-17", -"esbuild-loader","license-checker","lodash.noop","unfetch","OpenAPI","OpenAPI Specification","Swagger","JSON-Schema", -"API","REST","React.js","@floating-ui/dom","use-isomorphic-layout-effect","tooltip","popover","dropdown","menu","popup", -"positioning","font","font family","google fonts","inter","Inter","typeface","variable","roboto","Roboto", -"@fortawesome/fontawesome-common-types","awesome","fontawesome","svg", -"@babel/plugin-external-helpers","@fortawesome/free-brands-svg-icons","@semantic-release/exec","icons","server", -"@electron/rebuild","node-abi","@electron-forge/cli","electron-devtools-installer","@grandlinex/swagger-mate", -"@types/jsonwebtoken","@types/ms","@fastify/deepmerge","@graphql-markdown/graphql","@graphql-markdown/logger", -"@graphql-markdown/utils","@graphql-markdown/types","graphql-schema","graphql-markdown","@docusaurus/utils", -"@graphql-markdown/cli","@docusaurus/types","plugin","@tailwindcss/aspect-ratio","@tailwindcss/forms", -"@tailwindcss/typography","basename","filemanager-webpack-plugin","remove-files-webpack-plugin","sass-lint", -"configuration","boilerplate","@hapi/accept","@hapi/ammo","@hapi/boom","@hapi/bounce","@hapi/call","@hapi/catbox", -"@hapi/catbox-memory","@hapi/heavy","@hapi/hoek","@hapi/mimos","@hapi/podium","@hapi/shot","@hapi/somever", -"@hapi/statehood","@hapi/subtext","@hapi/teamwork","@hapi/topo","@hapi/validate","@hapi/code","@hapi/eslint-plugin", -"@hapi/inert","@hapi/lab","@hapi/vision","@hapi/wreck","comment-parser","@homer0/eslint-plugin", -"@homer0/prettier-config","@vitest/coverage-istanbul","leasot","@standard-schema/utils","@sinclair/typebox", -"@typeschema/core", -"@typeschema/main","@typeschema/zod","@vinejs/vine","ajv-errors","arktype","check-export-map","class-transformer", -"class-validator","computed-types","effect","fluentvalidation-ts","fp-ts","io-ts","io-ts-types","monocle-ts", -"newtype-ts","nope-validator","superstruct","typanion","vest","vite-tsconfig-paths","scheme","validation", -"scheme-validation","hookform","effect-ts","nope","TypeBox","typeschema","vine","standard-schema","google translate api", -"google translate","google api","translate api","google","translate","@atlaskit/pragmatic-drag-and-drop", -"@atlaskit/pragmatic-drag-and-drop-auto-scroll","@atlaskit/pragmatic-drag-and-drop-hitbox","vue3","vue 3.x", -"@ctrl/tinycolor","@inquirer/ansi","cli-width","fast-wrap-ansi","mute-stream","@inquirer/testing","@types/mute-stream", -"answer","answers","ask","base","command","command-line","confirm","generate","hyper","input","inquire","interface", -"iterm","node","nodejs", -"promptly","question","scaffold","scaffolder","stdin","stdout","terminal","tty","yeoman","zsh","@stencil/core","domino", -"@stencil/sass","@capacitor/core","playwright-core","@playwright/test","@capacitor/haptics","@capacitor/keyboard", -"@ionic/eslint-config","@capacitor/status-bar","@ionic/prettier-config","@rollup/plugin-virtual", -"@stencil/vue-output-target","@stencil/react-output-target","@stencil/angular-output-target","stencil","app","webapp", -"capacitor","progressive web app","pwa","layout","console","wrap","table","@istanbuljs/schema","test","coverage", -"@itwin/itwinui-illustrations-react","@swc/helpers","@tanstack/react-virtual","react-table","@swc/cli", -"eslint-plugin-require-extensions","design-system","itwin","itwinui","ux","@jest/console","@jest/pattern", -"@jest/reporters","@jest/test-result","@jest/transform","exit-x","jest-changed-files","jest-config","jest-haste-map", -"jest-message-util","jest-regex-util","jest-resolve-dependencies","jest-runner","jest-runtime","jest-snapshot", -"jest-validate", -"jest-watcher","@jest/test-sequencer","@jest/test-utils","@types/graceful-fs","@types/micromatch","easy","facebook", -"immersive","instant","mocking","painless","runner","sandboxed","snapshot","@jest/schemas", -"@types/istanbul-lib-coverage","@types/istanbul-reports","@types/json-schema","@types/redux-mock-store", -"document-register-element","redux-mock-store","form","forms","json","jsonforms","renderengine","schema","uischema", -"customization","@date-io/dayjs","@rollup/plugin-json","rollup-plugin-copy","rollup-plugin-import-css","renderer", -"@rollup/plugin-alias","@types/object-hash","@jupyterlab/apputils","@jupyterlab/coreutils","@jupyterlab/docregistry", -"@jupyterlab/rendermime","@jupyterlab/rendermime-interfaces","@jupyterlab/services","@jupyterlab/statedb", -"@jupyterlab/translation","@jupyterlab/ui-components","@lumino/algorithm","@lumino/application","@lumino/commands", -"@lumino/coreutils","@lumino/disposable","@lumino/messaging","@lumino/polling","@lumino/properties","@lumino/signaling", -"@lumino/widgets","@jupyterlab/testing","docopt","glob2base","lodash.difference","multipipe","safe-wipe","sass-convert", -"@kobedevi/sassdoc-theme-default","scss-comment-parser", -"strip-indent","vinyl-string","babel-plugin-transform-builtin-extend","opn-cli","doc","theme","chatfanpage", -"api-connect-x","api-connect-tiwtter","@inquirer/input","@inquirer/prompts","task","list","tasklist","term","ascii", -"unicode","loading","indicator","busy","wait","idle","react-remove-scroll","ui-kit","calendar","date","picker","time", -"react-hooks","state","modal","notification","notification-manager","notification-system","prism-react-renderer", -"highlight","syntax","syntax-highlight","styling","@material-ui/types","@material-ui/utils","@material-ui/styles", -"@material-ui/system","@microsoft/api-documenter","json-api","json:api","serializer","normalizer","formatter", -"@types/mdx","jsx","mdx","@rushstack/node-core-library","@microsoft/api-extractor-model","@rushstack/terminal", -"@rushstack/ts-command-line","@rushstack/rig-package","@rushstack/heft","decoupled-local-node-rig","local-eslint-config", -"JSDoc","AEDoc","TSDoc","declaration", -"dts","bundle","alpha","beta","tsdoc-build-rig","TypeScript","jju","@types/jju","@aws/durable-execution-sdk-js", -"@aws/durable-execution-sdk-js-testing","@datastream/core","@types/aws-lambda","Lambda","Middleware","Serverless", -"Framework","AWS","AWS Lambda","Function URL","Durable function","Middy","HTTP","JSON","Body Parser","JSON Body Parser", -"@aws-sdk/client-ssm","aws-xray-sdk","helper","moj","design system","@open-draft/deferred-promise","@open-draft/logger", -"@open-draft/until","is-node-process","outvariant","strict-event-emitter","@open-draft/test-server","@ossjs/release", -"@types/cors","@types/express-fileupload","@types/follow-redirects","@types/node-fetch","@types/superagent", -"@types/supertest","@types/ws","engine.io-parser","express-fileupload","express-rate-limit","socket.io-parser", -"vitest-environment-miniflare","web-encoding","webpack-http-server","intercept","fetch","low-level","mock","spy","mui", -"@mui/core-downloads-tracker","system","@mui/x-internals","mui-x","datepicker","timepicker", -"datetimepicker","@headlessui/react","@iconify-icon/react","@mdx-js/loader","@mdx-js/mdx","@shikijs/transformers", -"@theguild/remark-npm2yarn","@types/unist","@vcarl/remark-headings","approximate-number","extra-watch-webpack-plugin", -"flexsearch","git-url-parse","mdast-util-phrasing","next-seo","react-helmet-async","rehype-extract-excerpt", -"rehype-pretty-code","remark-frontmatter","remark-heading-id","remark-link-rewrite","shiki","tailwindcss-themer", -"webpack-virtual-modules","@types/color","@types/extra-watch-webpack-plugin","@types/git-url-parse","@types/mdast", -"@repo/eslint-config","@repo/typescript-config","@repo/prettier-config","posthtml-render","posthtml-parser","esthetic", -"builder","guides","demo","ng-doc","rehype-format","hast-util-has-property","hast-util-heading-rank", -"rehype-minify-whitespace","unist-util-filter","@shikijs/rehype","ordinal","@types/chai-as-promised","ethers","hardhat", -"@types/bn.js","@nomicfoundation/hardhat-ethers","@nomicfoundation/eslint-plugin-slow-imports", -"@nomicfoundation/eslint-plugin-hardhat-internal-rules","ethereum","smart-contracts","@isaacs/string-locale-compare", -"@npmcli/fs","@npmcli/installed-package-contents","@npmcli/metavuln-calculator","@npmcli/name-from-folder", -"@npmcli/package-json","@npmcli/query","@npmcli/redact","bin-links","cacache", -"common-ancestor-path","json-stringify-nice","npm-install-checks","npm-pick-manifest","parse-conflict-json","proggy", -"promise-all-reject-late","promise-call-limit","treeverse","walk-up-path","@npmcli/eslint-config", -"@npmcli/mock-registry","@npmcli/template-oss","minify-registry-metadata","tcompare","libnpm","workspaces", -"map-workspaces","@npmcli/promise-spawn","spawk","innertext","highlights","similarity","language-ini","property-ttl", -"language-dart","language-glsl","language-haxe","language-rust","lodash.pickby","language-erlang","language-stylus", -"highlights-tokens","atom-language-diff","atom-language-nginx","github-url-to-object","markdown-it-expand-tabs", -"markdown-it-lazy-headers","oniguruma","intercept-stdout","readme","gfm","formatted","syntax highlighting","Monorepo", -"Angular","React","Web","Node","Nest","Jest","Cypress","CLI","@zkochan/js-yaml","EsBuild","Front-end","Backend","Lint", -"ESLint","Testing","Express","babel-plugin-const-enum","babel-plugin-transform-typescript-metadata","Swc", -"Tsc","@nestjs/schematics","kill-port","@nx/docker","tcp-port-used","@oclif/errors","@oclif/parser","@oclif/help", -"@oclif/plugin-plugins","fancy-test","oclif","@types/indent-string","@types/proxyquire","@types/wrap-ansi","clean-stack", -"@oclif/prettier-config","@oclif/test","@types/clean-stack","@types/ejs","@types/pnpapi","@types/sinon", -"@types/supports-color","@types/wordwrap","madge","command line","args","argv","oclif-plugin", -"@octokit/plugin-paginate-rest","@octokit/plugin-request-log","@octokit/plugin-rest-endpoint-methods", -"@octokit/auth-action","@octokit/auth-app","@octokit/fixtures-server","@octokit/request","@octokit/tsconfig", -"semantic-release-plugin-update-version-in-files","octokit","api-client","@opentiny/vue-action-menu", -"@opentiny/vue-action-sheet","@opentiny/vue-alert","@opentiny/vue-amount","@opentiny/vue-anchor","@opentiny/vue-area", -"@opentiny/vue-async-flowchart","@opentiny/vue-autocomplete","@opentiny/vue-badge","@opentiny/vue-base-select", -"@opentiny/vue-breadcrumb","@opentiny/vue-breadcrumb-item","@opentiny/vue-bulletin-board","@opentiny/vue-button", -"@opentiny/vue-button-group","@opentiny/vue-calendar","@opentiny/vue-calendar-bar","@opentiny/vue-calendar-view", -"@opentiny/vue-card","@opentiny/vue-card-group","@opentiny/vue-card-template","@opentiny/vue-carousel", -"@opentiny/vue-carousel-item","@opentiny/vue-cascader","@opentiny/vue-cascader-menu", -"@opentiny/vue-cascader-mobile","@opentiny/vue-cascader-node","@opentiny/vue-cascader-panel", -"@opentiny/vue-cascader-select","@opentiny/vue-cascader-view","@opentiny/vue-cell","@opentiny/vue-checkbox", -"@opentiny/vue-checkbox-button","@opentiny/vue-checkbox-group","@opentiny/vue-col","@opentiny/vue-collapse", -"@opentiny/vue-collapse-item","@opentiny/vue-collapse-transition","@opentiny/vue-color-picker", -"@opentiny/vue-color-select-panel","@opentiny/vue-column-list-group","@opentiny/vue-column-list-item", -"@opentiny/vue-company","@opentiny/vue-config-provider","@opentiny/vue-container","@opentiny/vue-country", -"@opentiny/vue-crop","@opentiny/vue-currency","@opentiny/vue-date-panel","@opentiny/vue-date-picker", -"@opentiny/vue-date-picker-mobile-first","@opentiny/vue-date-range","@opentiny/vue-date-table","@opentiny/vue-dept", -"@opentiny/vue-dialog-box","@opentiny/vue-dialog-select","@opentiny/vue-divider","@opentiny/vue-drawer", -"@opentiny/vue-drop-roles","@opentiny/vue-drop-times","@opentiny/vue-dropdown","@opentiny/vue-dropdown-item", -"@opentiny/vue-dropdown-menu","@opentiny/vue-dynamic-scroller","@opentiny/vue-dynamic-scroller-item", -"@opentiny/vue-espace","@opentiny/vue-exception","@opentiny/vue-fall-menu","@opentiny/vue-file-upload", -"@opentiny/vue-filter","@opentiny/vue-filter-bar","@opentiny/vue-filter-box","@opentiny/vue-filter-panel", -"@opentiny/vue-float-button","@opentiny/vue-floatbar","@opentiny/vue-floating-button","@opentiny/vue-flowchart", -"@opentiny/vue-fluent-editor","@opentiny/vue-form","@opentiny/vue-form-item","@opentiny/vue-fullscreen", -"@opentiny/vue-grid","@opentiny/vue-grid-column","@opentiny/vue-grid-manager","@opentiny/vue-grid-select", -"@opentiny/vue-grid-toolbar","@opentiny/vue-guide","@opentiny/vue-hrapprover","@opentiny/vue-image", -"@opentiny/vue-image-viewer","@opentiny/vue-input","@opentiny/vue-ip-address","@opentiny/vue-layout", -"@opentiny/vue-link","@opentiny/vue-link-menu","@opentiny/vue-load-list","@opentiny/vue-loading","@opentiny/vue-locales", -"@opentiny/vue-logon-user","@opentiny/vue-logout","@opentiny/vue-menu","@opentiny/vue-message","@opentiny/vue-milestone", -"@opentiny/vue-mind-map","@opentiny/vue-modal","@opentiny/vue-month-range","@opentiny/vue-month-table", -"@opentiny/vue-nav-menu","@opentiny/vue-notify","@opentiny/vue-number-animation","@opentiny/vue-numeric", -"@opentiny/vue-option","@opentiny/vue-option-group","@opentiny/vue-pager","@opentiny/vue-pager-item", -"@opentiny/vue-panel","@opentiny/vue-picker","@opentiny/vue-pop-upload","@opentiny/vue-popconfirm", -"@opentiny/vue-popeditor","@opentiny/vue-popover","@opentiny/vue-popup","@opentiny/vue-progress", -"@opentiny/vue-pull-refresh","@opentiny/vue-qr-code","@opentiny/vue-quarter-panel","@opentiny/vue-query-builder", -"@opentiny/vue-radio","@opentiny/vue-radio-button","@opentiny/vue-radio-group","@opentiny/vue-rate", -"@opentiny/vue-record","@opentiny/vue-recycle-scroller","@opentiny/vue-river","@opentiny/vue-roles","@opentiny/vue-row", -"@opentiny/vue-scroll-text","@opentiny/vue-scrollbar","@opentiny/vue-search","@opentiny/vue-select", -"@opentiny/vue-select-dropdown","@opentiny/vue-select-mobile","@opentiny/vue-select-view","@opentiny/vue-select-wrapper", -"@opentiny/vue-selected-box","@opentiny/vue-signature","@opentiny/vue-skeleton","@opentiny/vue-skeleton-item", -"@opentiny/vue-slider","@opentiny/vue-slider-button","@opentiny/vue-slider-button-group","@opentiny/vue-space", -"@opentiny/vue-split", -"@opentiny/vue-standard-list-item","@opentiny/vue-statistic","@opentiny/vue-steps","@opentiny/vue-sticky", -"@opentiny/vue-switch","@opentiny/vue-tab-item","@opentiny/vue-tabbar","@opentiny/vue-tabbar-item","@opentiny/vue-table", -"@opentiny/vue-tabs","@opentiny/vue-tag","@opentiny/vue-tag-group","@opentiny/vue-tag-input","@opentiny/vue-text-popup", -"@opentiny/vue-time","@opentiny/vue-time-line","@opentiny/vue-time-panel","@opentiny/vue-time-picker", -"@opentiny/vue-time-picker-mobile","@opentiny/vue-time-range","@opentiny/vue-time-select","@opentiny/vue-time-spinner", -"@opentiny/vue-timeline-item","@opentiny/vue-toggle-menu","@opentiny/vue-tooltip","@opentiny/vue-top-box", -"@opentiny/vue-transfer","@opentiny/vue-transfer-panel","@opentiny/vue-tree","@opentiny/vue-tree-menu", -"@opentiny/vue-tree-select","@opentiny/vue-upload","@opentiny/vue-upload-dragger","@opentiny/vue-upload-list", -"@opentiny/vue-user","@opentiny/vue-user-account","@opentiny/vue-user-contact","@opentiny/vue-user-head", -"@opentiny/vue-user-head-group","@opentiny/vue-user-link","@opentiny/vue-virtual-scroll-box", -"@opentiny/vue-virtual-tree","@opentiny/vue-watermark","@opentiny/vue-wizard","@opentiny/vue-year-range", -"@opentiny/vue-year-table","component-library","vue-components","opentiny","renderless-components","headless-components", -"@opentiny/utils","@opentiny/vue-hooks","esno","gulp-svg-inline","gulp-transform","otterhttp","node.js","web framework", -"header-range-parser","@otterhttp/accepts","@otterhttp/content-type","@otterhttp/proxy-address","@otterhttp/type-is", -"@otterhttp/url","@otterhttp/router","req","es-escape-html","@otterhttp/content-disposition","@otterhttp/encode-url", -"@otterhttp/errors","@otterhttp/vary","res","@otterhttp/etag","send-file","@pact-foundation/pact-core","randexp", -"stack-utils","@pact-foundation/pact-js-prettier-config","@types/http-proxy","@types/nock","@types/ramda", -"@types/stack-utils","commit-and-tag-version","eslint-plugin-chai-friendly","pact","pact-js","contract testing", -"consumer driven testing","management","store","@phosphor/algorithm","@phosphor/commands","@phosphor/coreutils", -"@phosphor/disposable","@phosphor/domutils","@phosphor/dragdrop","@phosphor/keyboard","@phosphor/messaging", -"@phosphor/properties","@phosphor/signaling","@phosphor/virtualdom","@release-it/conventional-changelog","@types/jsdom", -"cobertura","eslint-config-phun-ky","git-cz","glob-bin","global-jsdom","putout","quibble","remark-github","remark-toc", -"typedoc-plugin-frontmatter","typedoc-plugin-mdn-links","typedoc-plugin-no-inherit","typedoc-plugin-remark", -"typedoc-plugin-rename-defaults","typedoc-vitepress-theme","unified-prettier","vitepress-plugin-group-icons","a11y", -"accessibility","anatomy","annotate","annotation","dissect","dissection", -"grid","grid-layout","html-elements","information","inspect","pin","spacing","spec","speccer","specification", -"specifications","specs","typography","stories","@webcomponents/shadycss","@polymer/gen-closure-declarations", -"@polymer/iron-component-page","@polymer/test-fixture","@webcomponents/webcomponentsjs","babel-preset-minify","dom5", -"google-closure-compiler","gulp-vulcanize","lazypipe","polymer-build","polymer-cli","wct-browser-legacy","cldr","gauge", -"upath","fontkit","ps-tree","get-value","set-value","github-api","unset-value","tap-colorize","core-js-bundle", -"app-module-path","es6-promise-pool","better-ajv-errors","jstransformer-dot","@metalsmith/layouts", -"@metalsmith/markdown","console-control-strings","@qooxdoo/eslint-config-qx","@qooxdoo/eslint-plugin-qx", -"eslint-formatter-codeframe","@qooxdoo/eslint-config-jsdoc-disable","@babel/plugin-proposal-optional-chaining-assign", -"dirsum","qooxdoo","fontend","back-end","widgets","gui","databinding","interfaces","mixins","@mdi/font","@mdi/svg", -"@xmldom/xmldom","animate.css","bootstrap-icons", -"eva-icons","line-awesome","eslint-config-quasar","quasar","fonts","animations","gltfpack","detect-gpu","r3f-perf", -"@types/three","three-stdlib","suspend-react","postprocessing","@storybook/react","@react-three/drei", -"@react-three/fiber","cypress-image-diff-js","rollup-plugin-postcss","@storybook/addon-links","@storybook/node-logger", -"eslint-plugin-storybook","@storybook/addon-actions","@storybook/react-webpack5","@react-three/test-renderer", -"@storybook/testing-library","@react-three/postprocessing","@storybook/addon-essentials","@storybook/addon-interactions", -"@types/testing-library__jest-dom","@storybook/preset-create-react-app","threejs","react-three-fiber","ready-player-me", -"3D","avatars","glb","@phryneas/ts-version","@size-limit/file","@size-limit/webpack", -"@testing-library/react-render-stream","@types/babel__core","@types/babel__helper-module-imports","@types/nanoid", -"@types/query-string","esbuild-extra","starter","reducer","slice","redux-toolkit","@rollup/pluginutils","commondir", -"fdir","is-reference","locate-character","require-relative","commonjs","require","is-module","string-capitalize", -"es2015","groq-js","refractor","@sanity/ui","@types/cpx", -"dotenv-flow","@sanity/color","@sanity/icons","@sanity/client","react-refractor","esbuild-register","@sanity/pkg-utils", -"@portabletext/react","@portabletext/toolkit","cpx","sanity","@types/mkdirp","@sanity/ui-workshop", -"@sanity/semantic-release-preset","eslint-plugin-simple-import-sort","API reference","@unhead/vue","@vueuse/core", -"microdiff","@scalar/agent-chat","@scalar/code-highlight","@scalar/api-client","@scalar/icons","@scalar/components", -"@scalar/helpers","@scalar/openapi-parser","@scalar/oas-utils","@scalar/openapi-types","@scalar/sidebar","@scalar/types", -"@scalar/snippetz","@scalar/use-hooks","@scalar/themes","@scalar/use-toasts","@scalar/workspace-store", -"@hono/node-server","@tailwindcss/vite","@vitejs/plugin-vue","@vue/test-utils","rollup-plugin-webpack-stats", -"vite-plugin-banner","vite-plugin-css-injected-by-js","@scalar/build-tooling","@scalar/core","@scalar/galaxy", -"@scalar/react-renderer","reference","swagger","fastify-plugin","@fastify/basic-auth","@fastify/http-proxy", -"@fastify/swagger","@serenity-js/core","@serenity-js/rest","@serenity-js/web","tiny-types","@integration/testing-tools", -"@serenity-js/assertions","@serenity-js/cucumber","@serenity-js/jasmine","@serenity-js/local-server", -"@serenity-js/mocha","@types/html-minifier","mocha-multi", -"automation","browser","e2e","end-to-end","integration","serenity","serenity-js","screenplay","screenplay-pattern","tdd", -"@wdio/reporter","@wdio/cli","@wdio/dot-reporter","@wdio/local-runner","@wdio/spec-reporter","@wdio/types", -"mocha-testdata","webdriverio","wdio","wdio-reporter","@sinonjs/commons","@mochify/cli","@mochify/driver-puppeteer", -"@mochify/driver-webdriver","@sinonjs/eslint-config","@sinonjs/referee-sinon","@storybook/icons","@storybook/csf-plugin", -"@storybook/react-dom-shim","telejson","memoizerific","storybook-addon","essentials","organize","MDX","autodocs", -"styleguide","style guide","web-components","@ant-design/colors","@ant-design/cssinjs","@ant-design/react-slick", -"@fortawesome/free-regular-svg-icons","@polkadot/react-identicon","@polkadot/util-crypto","@polkadot/wasm-crypto", -"@rc-component/tour","@zxing/browser","@zxing/library","boring-avatars","flatlist-react","jsqr","patch-package", -"phosphor-react","qrcode.react","rc-cascader","rc-checkbox","rc-collapse","rc-dialog","rc-drawer","rc-dropdown", -"rc-image","rc-input","rc-input-number", -"rc-mentions","rc-menu","rc-motion","rc-notification","rc-pagination","rc-picker","rc-progress","rc-rate", -"rc-resize-observer","rc-segmented","rc-select","rc-steps","rc-switch","rc-table","rc-tabs","rc-textarea","rc-tree", -"rc-tree-select","rc-trigger","rc-upload","react-pin-input","react-qrcode-logo","react-superellipse", -"scroll-into-view-if-needed","@babel/eslint-plugin","@emotion/babel-preset-css-prop","@emotion/server", -"@qixian.cs/github-contributors-list","@storybook/addons","@storybook/builder-webpack5","@storybook/manager-webpack5", -"@storybook/theming","@types/gtag.js","@types/jest-axe","@types/jest-environment-puppeteer","@types/jest-image-snapshot", -"@types/jquery","@types/puppeteer","@types/qs","@types/react-color","@types/react-highlight-words", -"@types/react-resizable","@types/react-window","@types/throttle-debounce","@types/warning","antd-img-crop", -"antd-token-previewer","array-move","bundlesize2","dekko","duplicate-package-checker-webpack-plugin","fetch-jsonp", -"jest-axe","jest-image-snapshot","jest-puppeteer","jsonml-to-react-element","lz-string","rc-footer","rc-tween-one", -"rc-virtual-list","react-fast-marquee","react-highlight-words","react-infinite-scroll-component","react-resizable", -"react-sticky-box","react-window","remark-lint","remark-preset-lint-recommended","rome","stylelint-config-prettier", -"stylelint-config-rational-order","stylelint-declaration-block-no-ignored-properties","sylvanas","vanilla-jsoneditor", -"xhr-mock","yaml-front-matter","@supernova-studio/client","@supernova-studio/model","abab","async-mutex","color2k", -"parse-color","string.prototype.matchall","@types/tinycolor2","trash-cli","tsconfig-paths-webpack-plugin","Supernova", -"Design Systems","Supernovaio","SDK","Design Tokens","Tokens","Assets","Components","Documentation","Markdown","CMS", -"expr-eval-fork","ml-matrix","postcss-calc-ast-parser","@ava/typescript","@stylistic/eslint-plugin-js", -"@svitejs/changesets-changelog-github-compact","eslint-config","@sveltejs/acorn-typescript","@types/cookie","devalue", -"esm-env","mrmime","sade","@opentelemetry/api","@types/connect","dts-buddy","official","obug", -"@sveltejs/vite-plugin-svelte-inspector","vite-plugin","vite plugin","@babel/plugin-transform-react-constant-elements", -"@svgr/plugin-jsx","@svgr/plugin-svgo","svgr","webpack-loader","@swc/counter","@swc/types","@napi-rs/cli","@rstest/core", -"swc", -"swcpack","rust","tsc","stylelint-prettier","@swisspost/design-system-icons","@swisspost/design-system-tokens", -"stylelint-config-sass-guidelines","collections","patterns","web components","ui library","symbiote.js","symbiote", -"widget","microfrontends","meta application","custom elements","shadow dom","shadow root","constructable stylesheets", -"adopted stylesheets","css custom properties","pubsub","import maps","cdn imports","https imports", -"reactive html attributes","MIT","JSDA","@types/content-type","istanbul-lib-coverage","istanbul-lib-report", -"istanbul-lib-source-maps","istanbul-reports","rollup-plugin-filesize","tanem-scripts","dom","images","img", -"scalable-vector-graphics","@tanstack/query-core","@tanstack/query-persist-client-core","@tanstack/query-test-utils", -"@testing-library/svelte","tanstack","query","@types/js-cookie","@github/webauthn-json","better-docs", -"eslint-config-preact","hanko","passkey","webauthn","passcode","password","kcd-scripts","functional","aria-query", -"@types/aria-query","dom-accessibility-api","jest-in-case","jest-watch-select-projects","jest-snapshot-serializer-ansi", -"unit", -"redent","@jest/globals","rollup-plugin-delete","jest-environment-jsdom-sixteen","jest-matcher-utils", -"@callstack/eslint-config","@relmify/jest-serializer-strip-ansi","testing-library","dotenv-cli","jest-mock", -"shared-scripts","@types/jest-in-case","@ph.fritsche/toolbox","jest-serializer-ansi","esbuild-plugin-globals", -"eslint-plugin-local-rules","@ph.fritsche/scripts-config","@esbuild-plugins/node-modules-polyfill", -"react-testing-library","dom-testing-library","regexparam","tinyhttp","static","@tinyhttp/vary","supertest-fetch", -"forwarded","headers","header","proxy-addr","net","network","@tinyhttp/accepts","@tinyhttp/content-disposition", -"@tinyhttp/content-type","params","particles.js","particlesjs","particles","particle","jsparticles","xparticles", -"particles-js","particles-bg","particles-bg-vue","particles-ts","particles.ts","react-particles-js","react-particles.js", -"react-particles","vue-particles","ngx-particles","angular-particles","particleground","vuejs","preactjs","angularjs", -"animation","html5","web-design","webdesign","css3","animated","background","confetti", -"fireworks","fireworks-js","confetti-js","confettijs","fireworksjs","canvas-confetti","@d-fischer/shared-utils", -"@twurple/api-call","@twurple/common","jose","twitch","extension","service","ebs","ts-api-utils","natural-compare", -"@eslint-community/regexpp","@typescript-eslint/type-utils","@typescript-eslint/visitor-keys","title-case", -"mdast-util-mdx","micromark-extension-mdxjs","@typescript-eslint/rule-tester", -"@typescript-eslint/rule-schema-to-typescript-types","eslintplugin","@typescript-eslint/typescript-estree","estree", -"@ucloud-fe/calendar","component-classes","create-react-context","emotion-theming","file-bytes-formatter","mini-store", -"rc-animate","rc-form","z-use-drag","@types/hoist-non-react-statics","@types/raf","@ucloud-fe/recodo-gen","ast-types", -"babel-plugin-emotion","babel-plugin-typescript-to-proptypes","babel-plugin-webpack-alias","css-hot-loader", -"jest-emotion","jsdom-screenshot","stylelint-config-styled-components","stylelint-processor-styled-components", -"tsc-alias","ucloud","jotai-x","is-hotkey","optics-ts","zustand-x","slate-react","jotai-optics","@udecode/slate", -"@udecode/utils","use-deep-compare","slate-hyperscript","@udecode/react-utils","@udecode/react-hotkeys","plate","slate", -"button","react-button","uiw-react","react.js","uikit","react-ui","@uiw/icons","react-icon","react-input", -"@uiw/react-overlay","overlay-trigger","react-overlay-trigger","utils","react-utils","prom-client","openapi-types", -"unleash-client","json-schema-to-ts","ts-node-dev","@types/type-is","Unleash","native","ios","android","flags","lit", -"keyux","nanostores","@lit/context","@uploadcare/cname-prefix","@uploadcare/image-shrink","@uploadcare/upload-client", -"@uploadcare/quality-insights","shipjs","render-jsx","lit-analyzer","ts-lit-plugin","@biomejs/js-api","@vitest/browser", -"eslint-plugin-wc","@types/svg-sprite","eslint-plugin-lit","vitest-browser-lit","@biomejs/wasm-nodejs", -"@size-limit/esbuild-why","esbuild-minify-templates","@total-typescript/ts-reset","@size-limit/preset-small-lib", -"@happy-dom/global-registrator","@csstools/postcss-cascade-layers","uploadcare","lighter","file uploader", -"adaptive image","image optimization","image editing","image size","cloud image editor","upload api client", -"building blocks","blocks","lr-blocks","uc-blocks","integrations", -"smart cdn","cloud file platform","transformation api","webp","avif","css context properties","meta applications", -"browserslist-to-esbuild","@babel/plugin-transform-react-jsx-self","@babel/plugin-transform-react-jsx-source", -"@rolldown/pluginutils","babel-plugin-react-compiler","fast refresh","@tsconfig/node20","pkgroll","create-vue", -"create-eslint-config","ajv-keywords","merge-deep","swagger-parser","@ant-design/icons-svg","@makotot/ghostui", -"@types/hast","@umijs/bundler-utils","@umijs/core","@umijs/utils","animated-scroll-to","codesandbox","comlink", -"dumi-afx-deps","estree-util-to-js","estree-util-visit","file-system-cache","heti","html2sketch", -"mdast-util-find-and-replace","mdast-util-to-string","prism-themes","react-loading-skeleton","react-simple-code-editor", -"rehype-remove-comments","remark-directive","sucrase","umi","unist-util-visit-parents","v8-compile-cache","vfile", -"dumi-assets-types","@types/highlight-words-core","@types/hosted-git-info","@types/lodash.throttle","@types/pluralize", -"@umijs/lint","@umijs/plugins","codesandbox-import-utils","git-repo-info","highlight-words-core","zx", -"dumi-theme-mobile","static site generator","jamstack","aleo","cryptography","blockchain", -"decentralized","zero-knowledge","oracle","event-target-shim","@mysticatea/eslint-plugin","@mysticatea/spy", -"dts-bundle-generator","karma-growl-reporter","rollup-plugin-babel-minify","rollup-watch","type-tester","w3c","whatwg", -"event","abort","cancel","abortcontroller","abortsignal","controller","signal","shim","negotiator","content", -"negotiation","accept","middleware","progress-estimator","@types/figlet","@types/git-clone", -"rollup-plugin-node-externals","nestjs","fullstack","zip","archive","flowcontrol","flow","control","arch","cron-parser", -"date.js","human-interval","@types/human-interval","job","jobs","delayed","blockchain-bend4","blockchain-meat7", -"bow-swam-troops-care","cent-matter-to","closer-composed-particularly-shout","coach-organized-notice", -"correct-home-silent7","course-whenever-merely","crop-birthday-web3-children","exchange-known-bend", -"face-eventually-bound","grass-dollar-crew-floating","information-fruit-web3-perfect","lay-rest-hour", -"material-balance-trade-solar","meat-think-stove8","office-deal-mostly1","product-slight-adult-settlers", -"recently-done-should-moon", -"scientific-exist-event2","sentence-won-little-western","speed-wing-eat","stay-including","supper-term-including-snake", -"truck-hospital-equator-hurt","trunk-darkness-believed-corner","typical-recall-industry-exchange","warn-clothing-whose0", -"weigh-flew-web3-farm","@airtap/browserify-istanbul","airtap-default","airtap-multi","bruce-millis-option","engine.io", -"engine.io-client","find-nearest-file","globs-to-files","humanize-duration","load-script","make-promises-safe", -"maybe-combine-errors","nanoresource","nanoresource-collection","on-stream-close","run-parallel-settled","tap-completed", -"thunky-with-args","transient-error","abstract-browser","simple-get","saucelabs","fast-uri","json-schema-traverse", -"require-from-string","@ajv-validator/config","@types/require-from-string","dayjs-plugin-utc","if-node-version", -"json-schema-test","module-from-string","re2","tsify","uri-js","json-schema-validator","json-schema-validation","Ajv", -"longjohn","buffer-more-ints","claire","AMQP","AMQP 0-9-1","RabbitMQ","simple","ux bootstrap","client-side", -"@angular-cli/ast-tools","@angular-cli/base-href-webpack","@ngtools/json-schema","@ngtools/webpack","denodeify", -"ember-cli-normalize-entity-name","ember-cli-string-utils","exists-sync", -"findup","get-caller-file","isbinaryfile","node-modules-path","script-loader","silent-error", -"sourcemap-istanbul-instrumenter-loader","component library","justified","256","ansi","bgblack","bgBlack","bgblue", -"bgBlue","bgcyan","bgCyan","bggreen","bgGreen","bgmagenta","bgMagenta","bgred","bgRed","bgwhite","bgWhite","bgyellow", -"bgYellow","black","blue","bold","clorox","colour","cyan","dim","formatting","gray","green","grey","hidden","inverse", -"italic","logging","magenta","red","reset","rgb","shell","str","strikethrough","style","text","underline","white", -"yellow","environment","escape","escapes","vt100","sequence","codes","cursor","iterm2","screen","erase", -"scrollback","regex","regexp","re","match","find","pattern","svg-term-cli","@ant-design/icons-vue","@emotion/unitless", -"@simonwep/pickr","array-tree-filter","dom-align","dom-scroll-into-view","shallow-equal","vue-types", -"@babel/plugin-proposal-optional-chaining","@babel/plugin-transform-object-assign","@types/koa","@types/lru-cache", -"@types/postcss-load-config","@vitejs/plugin-vue-jsx","@vue/babel-plugin-jsx","@vue/cli-plugin-eslint", -"@vue/eslint-config-prettier","@vue/vue3-jest","@webpack-cli/serve","ali-oss","babel-plugin-inline-import-data-uri", -"babel-plugin-transform-require-context","colorful","compare-versions","cz-git","diacritics","docsearch.js","enquire-js", -"eslint-plugin-no-explicit-type-exports","gulp-strip-code","ignore-emit-webpack-plugin","is-windows", -"jest-serializer-vue","jest-transform-stub","json-templater","less-plugin-npm-import","less-vars-to-js","majo", -"markdown-it-table-of-contents","merge2","remark-stringify","remark-yaml-config","reqwest","rucksack-css", -"selenium-server","string-replace-loader","umi-request","vue-clipboard2","vue-drag-resize","vue-infinite-scroll", -"vue-request","vue-tsc","webpackbar","vueComponent","@rc-component/form","@rc-component/menu", -"@rc-component/rate","@rc-component/tabs","@rc-component/tree","@rc-component/util","@rc-component/image", -"@rc-component/input","@rc-component/steps","@rc-component/table","@rc-component/dialog","@rc-component/drawer", -"@rc-component/motion","@rc-component/picker","@rc-component/qrcode","@rc-component/select","@rc-component/slider", -"@rc-component/switch","@rc-component/upload","@rc-component/tooltip","@rc-component/trigger","@ant-design/fast-color", -"@rc-component/cascader","@rc-component/checkbox","@rc-component/collapse","@rc-component/dropdown", -"@rc-component/mentions","@rc-component/progress","@rc-component/textarea","@rc-component/segmented", -"@rc-component/pagination","@ant-design/cssinjs-utils","@rc-component/tree-select","@rc-component/color-picker", -"@rc-component/input-number","@rc-component/notification","@rc-component/mutate-observer", -"@rc-component/resize-observer","p-all","runes2","mermaid","spinnies","env-paths","@types/tar","antd-style", -"@types/pngjs","cli-progress","domparser-rs","vanilla-tilt","@ant-design/x","react-countup","@prettier/sync", -"@types/adm-zip","@types/ali-oss","@blazediff/core","@types/css-tree","@types/minimist","@types/spinnies", -"@types/nprogress","lunar-typescript","@ant-design/x-sdk","csstree-validator","@types/http-server","@types/cli-progress", -"@antfu/eslint-config","@ant-design/compatible", -"@codecov/webpack-plugin","@types/isomorphic-fetch","dumi-plugin-color-chunk","@microflash/rehype-figure", -"@rc-component/virtual-list","circular-dependency-plugin","@codesandbox/sandpack-react","@eslint-react/eslint-plugin", -"@ant-design/happy-work-theme","cypress-image-diff-html-report","@ianvs/prettier-plugin-sort-imports", -"remark-lint-no-undefined-references","@madccc/duplicate-package-checker-webpack-plugin", -"@api-components/api-console-ext-comm","@api-components/api-documentation","@api-components/api-summary", -"@polymer/app-layout","@polymer/iron-media-query","@polymer/paper-toast","@anypoint-web-components/anypoint-menu-mixin", -"@open-wc/building-rollup","@polymer/iron-test-helpers","@web/test-runner-visual-regression","amf-client-js", -"rollup-plugin-cpy","unzipper","raml","amf","diff-match-patch","expose-loader","klaw-sync","eslint-config-recommended", -"restful","apidoc-light","portable","programmatic","cli-app","api-documentation","markdown-documentation","http2", -"apple","push","push notifications","iOS","apns","notifications","apollo-cache","apollo-utilities","ts-invariant", -"@types/zen-observable","symbol-observable","zen-observable","jsnext","relay","zen-observable-ts","@types/graphql", -"apollo-link-http-common","apollo-fetch","object-to-querystring","cracks","root","node_modules","@colors/colors", -"appium-adb", -"appium-chromedriver","asyncbox","io.appium.settings","portscanner","teen_process","@appium/eslint-config-appium-ts", -"@appium/tsconfig","@types/bluebird","@types/portscanner","appium","mobile testing","@azure/identity","@azure/core-auth", -"@azure/functions","diagnostic-channel","@opentelemetry/core","@azure/functions-old","@opentelemetry/api-logs", -"@opentelemetry/sdk-logs","@opentelemetry/resources","@opentelemetry/sdk-metrics","@azure/monitor-opentelemetry", -"@opentelemetry/sdk-trace-base","@opentelemetry/sdk-trace-node","diagnostic-channel-publishers", -"@opentelemetry/otlp-exporter-base","@opentelemetry/semantic-conventions","@azure/monitor-opentelemetry-exporter", -"@opentelemetry/exporter-logs-otlp-http","@opentelemetry/exporter-trace-otlp-http", -"@opentelemetry/exporter-metrics-otlp-http","@opentelemetry/exporter-metrics-otlp-proto", -"@azure/opentelemetry-instrumentation-azure-sdk","@types/long","@types/microsoft__typescript-etw","exception monitoring", -"request monitoring","performance monitoring","application insights","microsoft","azure","cloud","tracing","telemetry", -"analytics","apm","@aws-sdk/credential-provider-node","@aws-sdk/hash-node","@aws-sdk/protocol-http", -"@aws-sdk/signature-v4","@aws-sdk/types","aws-xray-sdk-core","@aws-amplify/amplify-appsync-simulator","constructs", -"prettier-plugin-organize-attributes","projen","appsync","aws","gql","lambda","xray","archiver-utils","buffer-crc32", -"readdir-glob", -"zip-stream","archiver-jsdoc-theme","stream-bench","stream","@babel/plugin-syntax-class-properties","option", -"define-properties","es-abstract","es-shim-unscopables","@es-shims/api","@ljharb/eslint-config","encoding", -"has-strict-mode","Array.prototype.flatMap","flatMap","array","ESnext","flatten","Array.prototype.flatten","es-shim API", -"arrayify","convert","value","ensure","is-nan","object-is","array-fill","fn.name","is-buffer","propget","pruddy-error", -"assertion","asserts","shouldjs","unit testing","babel-minify","rollup-plugin-npm","babel-preset-es2017", -"native-promise-only","eslint-plugin-prefer-arrow","babel-plugin-syntax-async-generators","callback","@types/tap", -"await","listen","then-sleep","@babel/node","@pika/pack","pika-plugin-build-web-babel","pika-plugin-ts-types","validate", -"libnpx","node-cleanup","npm-lockfile","find-package-json","audit","lockfile","shrinkwrap","import-cwd", -"parse-github-url","babel-plugin-rewire","auto","automatic","changelog", -"change","git","commit","commits","detective","detective-es6","is-builtin-module","package-json","sync-exec","package", -"fraction.js","prefix","@vercel/nft","arrgv","callsites","cbor","chunkd","ci-parallel-vars","code-excerpt", -"common-path-prefix","concordance","currently-unhandled","emittery","ignore-by-default","matcher","memoize", -"package-config","resolve-cwd","supertap","temp-dir","@sindresorhus/tsconfig","🦄","concurrent","parallel","fast", -"promises","function","generators","yield","observable","observables","webpack-log","empty-module","ps-node","loader", -"ieee754","jmespath","hash-test-vectors","insert-module-globals","amazon","ec2","simpledb","s3","sqs","ses","sns", -"route53","rds","elasticache","cloudfront","fps","cloudformation","cloudwatch","dynamodb", -"iam","swf","autoscaling","cloudsearch","elb","loadbalancing","emr","mapreduce","importexport","storagegateway", -"workflow","vpc","beanstalk","glacier","kinesis","cloudtrail","waf","memoizee","@deque/dot","colorjs.io","typedarray", -"emoji-regex","grunt-babel","revalidator","sri-toolbox","serve-handler","grunt-bytesize","weakmap-polyfill", -"clean-jsdoc-theme","css-selector-parser","@axe-core/webdriverjs","conventional-commits-parser", -"eslint-plugin-mocha-no-only","Accessibility","axe","proxy-from-env","dev-null","formdata-node","stream-throttle", -"karma-jasmine-ajax","string-replace-async","abortcontroller-polyfill","rollup-plugin-bundle-size", -"@rollup/plugin-multi-entry","rollup-plugin-auto-external","istanbul-instrumenter-loader","ajax","browserify-mime", -"json-edm-parser","md5.js","batchflow","factor-bundle","karma-env-preprocessor","storage","output-file-sync","v8flags", -"babel-code-frame","babel-helpers","babel-messages","private","babel-helper-transform-fixture-test-runner", -"eslint-config-babel","trim-right","try-resolve", -"babel-preset-jest","babel-plugin-transform-export-extensions","babel-preset-power-assert", -"conventional-github-releaser","module.exports","airbnb-js-shims","babel-plugin-transform-replace-object-assign", -"dynamic","import","@umijs/test","babel-preset-umi","react-toolbox","@istanbuljs/load-nyc-config", -"istanbul-lib-instrument","test-exclude","pmock","instrumentation","require-package-name", -"@babel/plugin-proposal-function-bind","@babel/preset-stage-0","lodash-bound","lodash-compat","cherry-pick", -"find-babel-config","prettier-eslint-cli","resolver","alias","rewrite","rename","mapping","babel-plugin-tester", -"babel-helper-remap-async-to-generator","babel-plugin-syntax-async-functions","babel-helper-function-name", -"babel-plugin-syntax-class-properties","babel-plugin-syntax-decorators","es7","babel-plugin-transform-strict-mode", -"babel-plugin-syntax-object-rest-spread","babel-helper-builder-react-jsx","@babel/preset-flow", -"babel-plugin-flow-react-proptypes","pkgfiles","minification","propTypes","regenerator-transform", -"@babel/plugin-proposal-numeric-separator","@babel/plugin-transform-property-mutators", -"@babel/plugin-proposal-optional-catch-binding","@babel/plugin-proposal-nullish-coalescing-operator", -"babel-plugin-check-es2015-constants","babel-plugin-syntax-trailing-function-commas", -"babel-plugin-transform-es2015-arrow-functions","babel-plugin-transform-es2015-block-scoped-functions", -"babel-plugin-transform-es2015-classes","babel-plugin-transform-es2015-computed-properties", -"babel-plugin-transform-es2015-destructuring","babel-plugin-transform-es2015-duplicate-keys", -"babel-plugin-transform-es2015-for-of","babel-plugin-transform-es2015-function-name", -"babel-plugin-transform-es2015-literals","babel-plugin-transform-es2015-modules-amd", -"babel-plugin-transform-es2015-modules-systemjs","babel-plugin-transform-es2015-modules-umd", -"babel-plugin-transform-es2015-object-super","babel-plugin-transform-es2015-parameters", -"babel-plugin-transform-es2015-shorthand-properties","babel-plugin-transform-es2015-spread", -"babel-plugin-transform-es2015-sticky-regex","babel-plugin-transform-es2015-typeof-symbol", -"babel-plugin-transform-es2015-unicode-regex","babel-plugin-transform-exponentiation-operator","electron-to-chromium", -"babel-preset-flow","babel-plugin-transform-react-display-name","babel-plugin-transform-react-jsx-source", -"babel-plugin-transform-react-jsx-self","@babel/plugin-proposal-private-methods","babel-plugin-transform-do-expressions", -"babel-plugin-transform-function-bind","babel-plugin-transform-class-constructor-call", -"babel-plugin-transform-decorators","babel-plugin-transform-async-generator-functions","home-or-tmp","esutils", -"to-fast-properties","lodash.zipobject","babel-plugin-transform-node-env-inline", -"babel-plugin-transform-flow-strip-types","unicode-9.0.0","model","view","@purtuga/esm-webpack-plugin", -"@types/validator","@web/test-runner-browserstack","@web/test-runner-junit-reporter","otpauth","backend-as-a-service", -"grunt-template","codec","decoder","encoder","base64","basic","auth","authorization","basicauth","sorted-object", -"ministructure","sinatra","orange sms","node-gyp-build","prebuildify","encryption","crypt","hash","esm2umd", -"pomelo-logger","di","IoC","AOP","dependency","injection","consistent","hot reload","front-backend","sharable codes", -"dependency injection", -"asynchronous script loading","magic, self-described javaScript objects","beautify","art-near-room-catch","blanket-line", -"born-greatly-explain3","bring-water-silence","brush-bigger-afternoon0","column-wore-meet-war","compare-breeze-mad2", -"did-straight-sister-sail","excitement-tonight-dead","gain-pleasant-prepare","industrial-public-immediately-until", -"is-straight-web3-attack","known-wet-thirty-gave","listen-private-thee6","mainly-cent","mountain-quarter-sit8", -"mouse-bat-web3-present","needs-supper-anything","percent-impossible-score","rocket-location-calm-valley", -"seldom-fire-web3-running","shade-swim-shells1","spider-melted-chemical","stretch-onto-driver7","tiny-dream-supply5", -"tool-invented-girl-jungle","we-hunt-process","web3-automobile7","whether-dangerous","ansicolors","ignorepatterns", -"response-stream","script-injector","find-global-packages","jsl","dotpathlookup","simplehttpserver","platform","docdown", -"qunit-extras","performance","speed","@beyond-js/specifier-parser","@beyond-js/fs","@beyond-js/bee","ansi-to-html", -"concat-with-sourcemaps","json-format","resolve-package-path","uimport","global-modules","universal", -"universal javascript","universal typescript","isomorphic","isomorphic javascript","isomorphic typescript","sigle page", -"spa","modular development","microfrontend", -"micro frontend","microservices","micro services","hmr","hot module replacement","ssr","server side rendering", -"typescript packager","JAMStack","real time","react framework","ssr react framework","vue framework","ssr vue framework", -"svelte framework","ssr svelte framework","websockets","check-types","hoopy","tryer","please-release-me","spooks", -"streamify","stringify","serialise","serialize","write","asynchronous","arbitrary","precision","arithmetic","big", -"number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum","file-uri-to-path","addon","gyp","c", -"c++","@noble/hashes","@antv/component","@antv/g2","@antv/g2plot","@antv/util","d3-color","react-reconciler", -"@antv/data-set","@babel/preset-es2015","@storybook/addon-info","@storybook/addon-knobs","@storybook/addon-options", -"@umijs/fabric","@welldone-software/why-did-you-render","aphrodite","babel-plugin-inline-react-svg", -"babel-plugin-inline-svg","bx-jest-electron","declaration-bundler-webpack-plugin", -"git-directory-deploy","imports-loader","moment-jalaali","react-with-styles-interface-aphrodite", -"react-with-styles-interface-css-compiler","snapshot-diff","g2","@types/readable-stream","buffers","awesomesauce", -"falafel","foreach","coffee-react","uglify-save-license","curses","tui","tput","terminfo","termcap","ansi-term", -"drawille-canvas-blessed-contrib","map-canvas","marked-terminal","memory-streams","picture-tuber","sparkline", -"term-canvas","x256","@types/blessed","block","loop","kefir","baconjs","promises-a","promises-aplus","deferred", -"deferreds","future","flow control","dsl","fluent interface","standardx","BN","Big number","BigNum","Modulo", -"Montgomery","create-error","bookshelf-jsdoc-theme","postgresql","datamapper","active record","error","@types/mime", -"@astrojs/mdx","@astrojs/check","@astrojs/prism","@astrojs/sitemap","astro-auto-import","prettier-plugin-astro", -"@astrojs/markdown-remark","mincer","eyeglass-module","box", -"boxes","border","quote-stream","static-module","browserify-transform","readFileSync","asset","heimdalljs","array-equal", -"fs-tree-diff","broccoli-plugin","mocha-eslint","release-it-lerna-changelog","merge-trees","broccoli-fixture","copy", -"broccoli-fixturify","multidep","ts-docs-gen","tslint-plugin-prettier","browser-sync-client","browser-sync-ui", -"bs-recipes","dev-ip","easy-extender","eazy-logger","resp-modifier","bs-snippet-injector","generate-changelog", -"browser sync","live reload","sync","subarg","defined","parents","deps-sort","duplexer2","htmlescape","module-deps", -"stream-http","browser-pack","syntax-error","os-browserify","shasum-object","vm-browserify","domain-browser", -"mkdirp-classic","string_decoder","tty-browserify","browser-resolve","browserify-zlib","querystring-es3", -"https-browserify","read-only-stream","stream-browserify","timers-browserify","console-browserify", -"cached-path-relative","constants-browserify","labeled-stream-splicer","seq","isstream","coffeeify","browser-unpack", -"has-object-spread","has-template-literals","make-generator-function","commonj-esque","exposify","mothership", -"rename-function-calls","test-peer-range","transform","window","baseline-browser-mapping","node-releases", -"update-browserslist-db","browsers","target","base-x","ts-standard","base58","bitcoin","crytography","decode","decoding", -"encode","litecoin","typescript-cached-transpile","acorn-dynamic-import","acorn-jsx","regexpu-core","console-group", -"@rollup/plugin-buble","test262-stream","transpilation","compilation","esnext","es2017","arraybuffer","compatible", -"dataview","uint8array","equal","builtin","built-in","builtins","bundled","names","flexbox","@asyncapi/specs", -"@clack/prompts","@oclif/plugin-warn-if-update-available","@stoplight/yaml","jsonpathly","mergician","@types/jsonpath", -"bump","compress","mv","dtrace-provider","safe-json-stringify","ben","log4j","streamsearch","@mscdex/eslint-config", -"uploads","multipart", -"closurecompiler","lxiv","metascript","pretty-hrtime","testjs","utfx","typed array","webrtc","byte","converter", -"@bcoe/v8-coverage","foreground-child","v8-to-istanbul","chai-jest-snapshot","v8","profiler","inspector","@types/mri", -"eslint-config-rem","rollup-plugin-esbuild","@babel/plugin-syntax-typescript","@cacheable/utils","@faker-js/faker", -"@keyv/redis","@vitest/spy","cache-manager-redis-yet","cacheable","caching","cache manager","in-memory cache", -"multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper", -"call-bind-apply-helpers","es-define-property","get-intrinsic","set-function-length","es","callbind","callbound","call", -"bind","bound","call-bound","camel-case","camel","case","dash","hyphen","separator","pascalcase","pascal-case","support", -"prebuild-install","assert-rejects","graphic","graphics","pixman","cairo","image", -"pdf","case sensitive","slimerjs","scraping","loupe","pathval","check-error","assertion-error","@web/dev-server-rollup", -"chai-plugin","assertions","strategy","@debitoor/eslint-config-debitoor","objects","subset","contains","containSubset", -"deep","like","similar","includes","superset","yoctodelay","docpress","git-update-ghpages","gulp-ava","gulp-uglify-es", -"random","mersenne","name","address","dice","param-case","kebab-case","header-case","c12","confbox","convert-gitmoji", -"node-fetch-native","ofetch","pkg-types","scule","std-env","@kurkle/color","@rollup/plugin-inject", -"@types/offscreencanvas","chartjs-adapter-luxon","chartjs-adapter-moment","chartjs-test-utils","eslint-config-chartjs", -"eslint-plugin-es","karma-safari-private-launcher","rollup-plugin-swc3","charts","data","graphs","domutils","domhandler", -"cheerio-select","whatwg-mimetype","encoding-sniffer","parse5-parser-stream","parse5-htmlparser2-tree-adapter", -"@imgix/js-core", -"@octokit/graphql","@vitest/eslint-plugin","@types/whatwg-mimetype","htmlparser","scraper","xml","node-version","child", -"@better-scroll/core","add-dom-event-listener","choerodon-ui-font","css-animation","css-unit-converter","dom-closest", -"dom-lib","element-resize-event","htmlhint","insert-css","jsbarcode","jsonlint","jsonlint-mod","mutationobserver-shim", -"querystringify","quill-delta-to-html","react-beautiful-dnd","react-codemirror2","react-easy-crop", -"react-image-lightbox","react-lazy-load","react-quill","rmc-feedback","smooth-scroll-into-view-if-needed", -"@babel/plugin-transform-proto-to-assign","@types/codemirror","@types/element-resize-event","@types/faker", -"@types/insert-css","@types/jsbarcode","@types/prettier","@types/qrcode.react","@types/react-beautiful-dnd", -"@types/react-is","@types/react-slick","bisheng-plugin-choerodon-ui","bisheng-plugin-description","bisheng-plugin-react", -"bisheng-plugin-toc","eslint-tinker","intersection-observer","mark-twain","rc-queue-anim","rc-scroll-anim", -"react-infinite-scroller","react-sublime-video","scrollama","values.js","vfile-message","webpack-filter-warnings-plugin", -"choerodon","readdirp","@paulmillr/jsbt","watchFile","watcher","watching", -"file","ci","continuous","detect","@ckeditor/ckeditor5-emoji","@ckeditor/ckeditor5-style","@ckeditor/ckeditor5-mention", -"@ckeditor/ckeditor5-minimap","@ckeditor/ckeditor5-autosave","@ckeditor/ckeditor5-bookmark", -"@ckeditor/ckeditor5-language","@ckeditor/ckeditor5-highlight","@ckeditor/ckeditor5-code-block", -"@ckeditor/ckeditor5-fullscreen","@ckeditor/ckeditor5-html-embed","@ckeditor/ckeditor5-page-break", -"@ckeditor/ckeditor5-theme-lark","@ckeditor/ckeditor5-word-count","@ckeditor/ckeditor5-show-blocks", -"@ckeditor/ckeditor5-html-support","@ckeditor/ckeditor5-markdown-gfm","@ckeditor/ckeditor5-remove-format", -"@ckeditor/ckeditor5-source-editing","@ckeditor/ckeditor5-horizontal-line","@ckeditor/ckeditor5-find-and-replace", -"@ckeditor/ckeditor5-restricted-editing","@ckeditor/ckeditor5-special-characters","classname","minifier", -"@chrisblossom/eslint-config","@types/read-pkg-up","temp-sandbox","clean","parent-module","uncache","uncached", -"unrequire","delete","remove","rm","opts","parseopt","opt","argsparse","optparse","autocomplete","autocompletion","d", -"es6-iterator","timers-ext","eslint-config-medikoo","git-list-updated","github-release-from-cc-changelog", -"prettier-elastic","tad","toggle","display","show","hide","string-length","spinner","spinners","expresso", -"ansi-256-colors", -"git-rev","growl","line","tables","tabular","jest-runner-eslint","lerna-changelog","truncate","ellipsis","limit","width", -"cardinal","hyperlinker","@oclif/screen","extract-stack","object-treeify","@oclif/linewrap","natural-orderby", -"password-prompt","@types/strip-ansi","@types/ansi-styles","@types/extract-stack","@types/rollup","@yarnpkg/core", -"@yarnpkg/fslib","eslint-plugin-arca","rollup-plugin-multi-input","parsing","argument","good-listener","select", -"tiny-emitter","cut","clipboard-image","is-wayland","is64bit","powershell-utils","paste","copy-paste","pasteboard", -"pbcopy","clip","xclip","xsel","command line interface","progress bar","istanbul-harmony","coro","coroutine","mask", -"ignore-walk","teeny-request","urlgrey","code-coverage","codecov.io","@codemirror/lint","@codemirror/view", -"@codemirror/state","@codemirror/search","@codemirror/commands","@codemirror/language","@codemirror/autocomplete", -"@codemirror/buildhelper","google-closure-compiler-js", -"language","jison","wcwidth","column","exists","array-back","find-replace","typical","options","chalk-template", -"table-layout","usage","is-utf8","cachedir","find-node-modules","mocha-multi-reporters","@istanbuljs/nyc-config-babel", -"cz-conventional-changelog-default-export","conventional changelog","es2015-tag","es6-tag","heredoc","indent","indents", -"literal","multi","multiline","normalize","one","oneline","single","singleline","strings","strip","tag","tagged", -"emitter","emit","listener","observe","compressible","on-headers","gzip","deflate","brotli","buffer-from", -"ctrlc-wrapper","coveralls-next","@types/shell-quote","@hirez_io/observer-spy","eslint-plugin-import-lite", -"eslint-config-flat-gitignore","bash","sh","cson","faceoff","hjson","x2js","conf","node-config","config-node","env", -"atomically","is-safe-filename", -"xdg-basedir","settings","preferences","persist","persistent","save","rack","flash","kruptein","mongo","session", -"vite-plugin-dts","defu","is-unicode-supported","sentencer","reporter","elegant","clack","stacktrace","eco","ect","eta", -"slm","dust","jazz","just","mote","qejs","twig","vash","jqtpl","twing","hamlet","hamljs","liquor","plates","teacup", -"toffee","walrus","htmling","ractive","whiskers","tinyliquid","velocityjs","haml-coffee","liquid-node","arc-templates", -"dustjs-helpers","swig-templates","dustjs-linkedin","bracket-template","engine","rfc6266","rfc7231", -"@types/normalize-package-data","fd-package-json","normalize-package-data","@conventional-changelog/git-client", -"conventional-changelog-writer","conventional-changelog-preset-loader","conventional","tempfile","add-stream", -"compare-func", -"conventionalcommits.org","preset","inline-source-map","sourcemap","source","map","@borderless/ts-scripts","top-sites", -"cookies","sign","unsign","toggle-selection","@brettz9/node-static","selenium-server-standalone-jar","is-gzip", -"@types/glob-parent","@types/normalize-path","eslint-config-webpack","@types/serialize-javascript","transfer","move", -"noms","qr","qrcode","simple qr","npm qr JavaScript","js qr code","corcojs-qrcode-sample","logo","simple qrcode", -"cordova-common","cordova-create","cordova-lib","@cordova/eslint-config","ES3","ES5","ES6","ES7","ES2015","ES2016", -"ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6", -"ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019", -"ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set", -"WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams", -"queueMicrotask","setImmediate","structuredClone","ponyfill","parse-json","@types/parse-json", -"eslint-config-davidtheclark-node","remark-preset-davidtheclark","load","lcov-parse","log-driver","cpy","cp","files", -"file-system","quick","contents","tslog","hpagent","seenreq","http2-wrapper","@types/got","spider","crc16ccitt", -"crc16kermit","crc16modbus","crc16","crc16xmodem","crc1","crc24","crc32","crc81wire","crc8","crc8dvbs2","crcjam", -"cipher-base","ripemd160","sha.js","async-traverse-tree","css-url-parser","data-uri-to-buffer","group-args", -"inline-critical","oust","penthouse","postcss-discard","postcss-image-inliner","postcss-url","normalize-newline", -"stream-array","optimization","@fast-check/jest","@insurgent/commitlint-config", -"@insurgent/conventional-changelog-preset", -"@semantic-release/commit-analyzer","@semantic-release/npm","@semantic-release/release-notes-generator","@swc/jest", -"node cron","node-cron","schedule","cronjob","cron job","timer","crontab","@prantlf/jsonlint","@prettier/plugin-xml", -"@secretlint/secretlint-rule-github","@secretlint/secretlint-rule-npm","@stryker-mutator/core", -"@stryker-mutator/tap-runner","@types/bun","eslint-plugin-array-func","eslint-plugin-no-unsanitized","jsr","metalint", -"secretlint","yaml-lint","@cropper/elements","@cropper/utils","crop","zoom","rotate","scale","cropper","cropper.js", -"image-cropping","image-viewing","image-processing","cropper-element","custom-element","web-component", -"@epic-web/invariant","@epic-web/config","@types/cross-spawn","zshy","cross-environment","environment variable", -"windows","cross-platform","rollup-plugin-esbuild-minify","path-key","shebang-command","babel-preset-moxy", -"eslint-config-moxy","spawn","spawnSync","path-ext","shebang","cmd","execute","browserify-cipher","browserify-sign", -"create-ecdh","create-hmac","diffie-hellman","hash-base","pbkdf2", -"public-encrypt","randomfill","pseudorandombytes","security","Hash","MD5","SHA1","SHA-1","SHA256","SHA-256","RC4", -"Rabbit","AES","DES","PBKDF2","HMAC","OFB","CFB","CTR","CBC","Base64","Base64url","eslint-config-groupon","nlm", -"@cspell/cspell-json-reporter","@cspell/cspell-performance-monitor","@cspell/cspell-pipe","@cspell/cspell-types", -"@cspell/cspell-worker","@cspell/dynamic-import","@cspell/url","cspell-config-lib","cspell-dictionary", -"cspell-gitignore","cspell-glob","cspell-io","cspell-lib","fast-json-stable-stringify","flatted","spell","checker", -"spelling","spell checker","spelling checker","lint","source-map-resolve","@mdn/browser-compat-data", -"@rollup/plugin-dynamic-import-vars","sorter","property","order","@swc-node/register","changelog-verify", -"eslint-config-nitpick","github-release-from-changelog","isomorphic-unfetch","rolldown-plugin-dts","version-changelog", -"write-json-file","functions","postcss-modules-extract-imports","postcss-modules-scope", -"@webpack-contrib/eslint-config-webpack","@swc/css", -"@parcel/css","@types/csso","@types/clean-css","cssnano-preset-simple","webpack-plugin","minimize","minimizer", -"optimize","optimizer","boolbase","@types/boolbase","cheerio-soupselect","sizzle","clap","json-to-ast","walker","lexer", -"web-features","features","stages","identifier","cssnano-preset-default","cssnano-preset-advanced","cssnano-preset-lite", -"optimise","optimisation","@asamuzakjp/css-color","@csstools/css-syntax-patches-for-csstree","@domenic/eslint-config", -"@webref/css","CSS","CSSStyleDeclaration","StyleSheet","@tsconfig/node24","@types/chokidar","@types/turndown","csrf", -"tokens","tsv","generation","object","csv-spectrum","pad","@types/lodash.set","csv parser","parse csv","csv to json", -"csv convert","tojson","convert csv to json","csv-json","duration","stack-chain","is-generator","stacktrace-js", -"serialize-error","cucumber-expressions","cucumber-tag-expressions","ansi-html","eslint-plugin-testcafe","riteway", -"updtr","guid","id", -"uid","unique id","hasha","ospath","blob-util","executable","@cypress/xvfb","@types/sizzle","@cypress/request", -"request-progress","cypress.io","mocks","spies","stubs","longest","conventional-commit-types","d3-dsv","d3-geo", -"d3-axis","d3-drag","d3-ease","d3-path","d3-time","d3-zoom","d3-brush","d3-chord","d3-fetch","d3-force","d3-timer", -"d3-format","d3-random","d3-contour","d3-polygon","d3-delaunay","d3-dispatch","d3-quadtree","d3-hierarchy", -"d3-transition","d3-interpolate","d3-time-format","d3-scale-chromatic","topojson-client","@observablehq/runtime", -"visualization","internmap","d3-module","histogram","bisect","shuffle","statistics","search","sort","selection", -"data-join","dable","tailwind css","tailwind react","tailwind vue","tailwind plugin","tailwind component", -"tailwind next","tailwind nuxt","tailwind svelte","tailwind css plugin", -"tailwind astro","tailwind laravel","tailwind rails","laravel","nuxt","css library","reverse","arguments","binary", -"opposite","invert","switch","construct","@captemulation/get-parameter-names","json-schema-faker-bb","request-debug", -"rss-parser","swagger-express-middleware","bun","cloc","js-fns","jscodeshift","@date-fns/tz","@date-fns/utc", -"@date-fns/docs","@size-limit/esbuild","typedoc-plugin-missing-exports","babel-plugin-replace-import-extension", -"gzip-size-cli","require-directory","sleep","async wrapper","debouncing","throttle","invoke","limited","interval","rate", -"batch","rate-limit","debugger","decamelcase","lowercase","decompress-tar","decompress-tarbz2","decompress-targz", -"decompress-unzip","strip-dirs","is-jpg","bz2","bzip2","extract","tar.bz","tar.gz","@types/babel-plugin-macros", -"console-fail-test","eslint-plugin-deprecation","eslint-plugin-no-only-tests","eslint-plugin-perfectionist", -"eslint-plugin-yml","jsonc-eslint-parser","npm-package-json-lint-config-default","prettier-plugin-curly", -"should-semantic-release", -"yaml-eslint-parser","multi-line string","duplicates","dupes","remove duplicates","distinct","deduplicate", -"deduplication","is-obj","obj","assign","recursive","key","keys","values","prop","json-ptr","difference","compare", -"change-tracking","kewlr","simple-assert","lcov-result-merger","eslint-config-strict","@js-temporal/polyfill", -"eslint-plugin-filenames","chai util","deep equal","object equal","array-buffer-byte-length","es-get-iterator", -"is-arguments","is-array-buffer","is-date-object","is-regex","is-shared-array-buffer","regexp.prototype.flags", -"side-channel","which-boxed-primitive","which-collection","which-typed-array","available-typed-arrays","has-proto", -"has-typed-arrays","equality","is-mergeable-object","jsmd","is-path-cwd","is-path-inside","presentable-error","folders", -"directories","destroy","trash","unlink","cleaning","cleanup","rmrf","rmdir","gulpfriendly","folder","directory", -"filesystem","temp-write", -"random-int","unlimited-timeout","in-range","time-span","defer","stall","timeout","settimeout","tick","threshold", -"range","callsite","deps-regex","is-core-module","@vue/compiler-sfc","patch-version","check","unused","packages", -"deprecate","deprecated","is-relative","read-package-json","detective-cjs","indentation","infer","identify","space", -"tab","@eggjs/tsconfig","egg-bin","eslint-config-egg","mm","tshy-after","port","jsdiff","patch","@profoundlogic/hogan", -"@eslint/json","@types/hogan.js","@types/nopt","all-contributors-cli","handlebars-loader","image-webpack-loader", -"is-ci-cli","side","side-by-side","line-by-line","character","difftohtml","colorized","data-structure-typed", -"eslint-import-resolver-alias","Directed Graph","directed graph","directedgraph","directed-graph","directed","Directed", -"digraph","java script","JavaScript","type script","vertex", -"Vertex","edge","Edge","graph theory","Graph Theory","graph structure","weighted","Weighted","unweighted","Unweighted", -"adjacency","Adjacency","connectivity","cycle","acyclic","traversal","depth","Depth","breadth","Breadth","first", -"depth first search","dfs","DFS","breadth first search","breadth-first search","bfs","BFS","graph algorithms", -"graph representation","connectivity matrix","adjacency list","adjacency matrix","matrix","node degree","sparse graph", -"dense graph","directed cycle","directed acyclic graph","DAG","topologic","topological","sorting", -"strongly connected components","weighted digraph","directed weighted edge","structure","structures","data structure", -"datastructure","data-structure","data structures","datastructures","data-structures","in data structures", -"in data structure","DataStructure","DataStructures","iterative","Node.js","CommonJS","UMD","esmodule","java.util", -"c++ stl","c++ std","Python collections","System.Collections.Generic","STL","stl","collection","Collection", -"Collections","insertion","deletion","OOP","@discordjs/voice","backend-manager","productivity","@discordjs/ws", -"lodash.snakecase","@discordjs/builders","@discordjs/formatters","@discordjs/docgen","bot","cache-point", -"common-sequence","file-set","walk-back","dmd-plugin-example","jsdoc2md","agnostic","dnd","drag","drop","dnode-protocol", -"jsonify","weak","rpc","callbacks","doc-detective-common","doc-detective-resolver","@ffmpeg-installer/ffmpeg", -"@puppeteer/browsers","appium-chromium-driver","appium-geckodriver","appium-safari-driver","geckodriver","jq-web", -"json-schema-faker","posthog-node","literate","mecano","parameters","@balena/dockerignore","@grpc/grpc-js", -"@grpc/proto-loader","docker-modem","docker","docker.io","@bevry/pluginloader","ambi","ansistyles","bal-util", -"caterpillar","docmatter","docpad-baseplugin","eachr", -"envfile","errlop","event-emitter-grouped","extendr","extract-opts","ignorefs","istextorbinary","jschardet", -"lazy-require","progress-title","query-engine","rfc-log-levels","safefs","safeps","scandirectory","taskgroup", -"typechecker","unbounded","watchr","@bevry/update-contributors","assert-helpers","coffeelint","kava","projectz", -"valid-directory","build","build and deployment","cms","compile","content management system","dev","dms", -"document management system","language agnostic","render","templating","web development","dependency-cruiser","dpdm", -"docsify.js","tabs","@textlint/markdown-to-ast","anchor-markdown-header","update-section","bitbucket","gitlab","ghost", -"doctrine-temporary-fork","konan","mdast-util-inject","micromark-util-character","parse-filepath", -"remark-reference-links","unist-builder","vfile-reporter","vfile-sort","chdir","documentation-schema","jsdoc3", -"big-integer","binary-search-bounds","int64-buffer","priorityqueuejs","semaphore", -"tunnel","cosmosdb","cosmos db","document database","nosql","database","crowdin-cli","imagemin-svgo","tree-node-cli", -"truncate-html","imagemin-optipng","imagemin-gifsicle","imagemin-jpegtran","filepath","glob-promise","websites", -"open source","autocomplete.js","lunr-languages","to-vfile","unist-util-is","offline-search","@4c/rollout", -"@4c/tsconfig","@react-bootstrap/babel-preset","@react-bootstrap/eslint-config", -"@react-bootstrap/eslint-config-typescript","karma-html2js-preprocessor","simulant","cross-browser","height","class", -"classlist","domelementtype","raster","png","@types/trusted-types","lodash.sample","qunit-tap", -"rollup-plugin-includepaths","mathml","secure","sanitizer","sanitize","filter","purify",".env","expand","interpolation", -"substitution","ext-name","filenamify","archive-type","is-zip","random-buffer","git-clone","repo","repository","tarball", -"import-from","parse-cmd-args","simple-update-notifier","ts-jest-resolver","dox", -"spawn-please","@types/temp","alex","babel-preset-fbjs","eslint-config-fbjs","fbjs-scripts","gulp-derequire", -"stats-webpack-plugin","webpack-stream","draftjs","richtext","just-extend","@parcel/transformer-inline-string", -"@parcel/transformer-sass","cypress-file-upload","karma-sinon-chai","parcel","dragndrop","drag and drop","file upload", -"upload","tsutils","dts-critic","@definitelytyped/utils","@definitelytyped/header-parser", -"@definitelytyped/typescript-versions","@types/strip-json-comments","@types/json-stable-stringify","proper-lockfile", -"db","elementscript","dw-neit-colors","dw-neit-cssinjs","dw-neit-cssinjs-utils","dw-neit-icons", -"dw-neit-ant-design-react-slick","dw-neit-rc-component-color-picker","dw-neit-rc-component-mutate-observer", -"dw-neit-rc-component-qrcode","dw-neit-rc-component-tour","dw-neit-rc-component-trigger","dw-neit-rc-cascader", -"dw-neit-rc-checkbox","dw-neit-rc-collapse","dw-neit-rc-dialog","dw-neit-rc-drawer","dw-neit-rc-dropdown", -"dw-neit-rc-field-form","dw-neit-rc-image","dw-neit-rc-input","dw-neit-rc-input-number","dw-neit-rc-mentions", -"dw-neit-rc-menu","dw-neit-rc-motion","dw-neit-rc-notification","dw-neit-rc-pagination","dw-neit-rc-picker", -"dw-neit-rc-progress","dw-neit-rc-rate","dw-neit-rc-resize-observer","dw-neit-rc-segmented","dw-neit-rc-select", -"dw-neit-rc-slider","dw-neit-rc-steps", -"dw-neit-rc-switch","dw-neit-rc-tabs","dw-neit-rc-textarea","dw-neit-rc-tree","dw-neit-rc-util","dw-neit-rc-table", -"dw-neit-rc-tooltip","dw-neit-rc-tree-select","dw-neit-rc-upload","@antv/g6","@types/pixelmatch","eslint-plugin-lodash", -"@eslint/core","control flow","iteration","zrender","@lang/rollup-plugin-dts","data-visualization","charting-library", -"apache","data-viz","editorconfig","gulp-exclude-gitignore","gulp-reporter","gulp-tap","linez","os-locale", -"@types/get-stream","@types/through2","@types/vinyl","@types/vinyl-fs","fix","enforce","gulpplugin","agentkeepalive", -"aliasify","backport","grunt-run","null-loader","through2-map","grunt-webpack","grunt-contrib-compress","@electron/get", -"lazy-val","dmg-builder","builder-util","app-builder-lib","builder-util-runtime","installer","packager","pack","nsis", -"dmg","pkg","msi","exe","setup","Windows","OS X","MacOS","Mac","appx","snap","flatpak", -"@electron/asar","@electron/notarize","@electron/osx-sign","@electron/universal","cross-spawn-windows-exe","galactus", -"get-package-info","junk","parse-author","rcedit","bundler","electron-download","home-path","wonderful-fetch", -"batch-processor","grunt-banner","@vue/component-compiler-utils","algoliasearch","babel-plugin-transform-vue-jsx", -"babel-regenerator-runtime","cp-cli","eslint-config-elemefe","eslint-plugin-json","file-save","gulp-cssmin", -"launch-editor-middleware","markdown-it-chain","select-version-cli","transliteration","uppercamelcase", -"vue-template-es2015-compiler","eleme","brorand","hash.js","hmac-drbg","minimalistic-assert","minimalistic-crypto-utils", -"grunt-mocha-istanbul","EC","Elliptic","curve","Cryptography","@ladjs/consolidate","@ladjs/i18n","get-paths","juice", -"nodemailer-sendgrid","preview-email","email","lad","lass","mailchimp","mailgun","mandrill","moonmail","postmark", -"sendgrid","@types/mailparser","@types/smtp-server","mailparser","smtp-server","@ember-tooling/blueprint-blueprint", -"@ember-tooling/blueprint-model","@ember/app-blueprint", -"@pnpm/find-workspace-dir","babel-remove-types","broccoli-concat","broccoli-config-loader","broccoli-config-replace", -"broccoli-debug","broccoli-funnel-reducer","broccoli-slow-trees","broccoli-source","broccoli-stew", -"calculate-cache-key-for-tree","capture-exit","clean-base-url","console-ui","content-tag","core-object","dag-map", -"ember-cli-is-package-missing","ember-cli-preprocess-registry","ensure-posix-path","find-yarn-workspace-root", -"heimdalljs-fs-monitor","heimdalljs-graph","heimdalljs-logger","is-git-url","is-language-code","markdown-it-terminal", -"p-defer","promise-map-series","promise.hash.helper","quick-temp","safe-stable-stringify","sane","sort-package-json", -"symlink-or-copy","tree-sync","watch-detector","yam","@ember-tooling/classic-build-addon-blueprint", -"@ember-tooling/classic-build-app-blueprint","chai-files","ember-cli-blueprint-test-helpers", -"ember-cli-internal-test-helpers","eslint-plugin-chai-expect","fixturify-project","release-plan","tmp-promise", -"yuidoc-ember-cli-theme","yuidocjs","app-kit","ember","ember-app-kit","ember.js","amd-name-resolver", -"babel-plugin-debug-macros","babel-plugin-ember-data-packages-polyfill","babel-plugin-ember-modules-api-polyfill", -"broccoli-babel-transpiler","ember-cli-babel-plugin-helpers","ember-cli-version-checker","@ember/optional-features", -"@ember/string","@ember/test-helpers","@glimmer/component", -"@glimmer/tracking","code-equality-assertions","ember-auto-import","ember-cli-dependency-checker", -"ember-cli-inject-live-reload","ember-load-initializers","ember-qunit","ember-resolver","ember-source", -"ember-source-channel-url","eslint-plugin-ember","loader.js","ember-addon","@ember/edition-utils", -"babel-plugin-ember-template-compilation","broccoli-persistent-filter","js-string-escape","@embroider/test-setup", -"ember-cli-clean-css","ember-styleguide","ember-template-lint","ember-try","eslint-plugin-qunit","@emmetio/abbreviation", -"@emmetio/css-abbreviation","snippets","coding","streams","finish","close","end","es-errors","safe-regex-test", -"entitify","entity","enum","enumeration","datatype","type","github-release-cli","yamlify-object","info","issues", -"reporting","diagnostics","array.prototype.flat","function.prototype.name","has","html-element-map","is-boolean-object", -"is-callable","is-number-object","is-string","is-subset","lodash.escape","object.values","rst-selector-parser", -"string.prototype.trim","shallow rendering","shallowRender","test utils","assertion helpers","airbnb-prop-types", -"object.fromentries", -"codependence","oxlint","pastoralist","check for es6","check for modules","es check","es matching","es version", -"ecmascript check","ecmascript matching","ecmascript version","js version","js version check","js version matching", -"test js version","test ecmascript version","has-bigints","intl-fallback-symbol","make-arrow-function", -"make-async-function","@ljharb/tsconfig","@types/array.prototype.flatmap","@types/call-bind","@types/foreach", -"@types/has-bigints","@types/has-symbols","@types/isarray","@types/make-arrow-function","@types/make-async-function", -"@types/make-generator-function","@types/object.assign","@types/reflect.ownkeys","@types/tape","reflect.ownkeys", -"symbol.prototype.description","well-known-symbols","fixture","fixtures","es6-symbol","esniff","next-tick", -"plain-promise","ecmascript5","ecmascript6","es5","extensions","ext","addons","extras","utilities","es5 shim","json3", -"broccoli-rollup","git-repo-version","broccoli-watchify","broccoli-uglify-js","promises-aplus-tests-phantom", -"babel6-plugin-strip-class-callcheck","babel-plugin-transform-es2015-constants","futures","promisify", -"promises-es6-tests","setPrototypeOf","set", -"__proto__","regular","expression","special","characters","bower-registry-client","commonjs-everywhere", -"@eslint/config-array","@eslint/config-helpers","@eslint/plugin-kit","@humanfs/node","@humanwhocodes/module-importer", -"@humanwhocodes/retry","esquery","file-entry-cache","imurmurhash","json-stable-stringify-without-jsonify", -"@trunkio/launcher","@types/esquery","eslint-plugin-expect-type","eslint-release","eslint-rule-extender","eslump", -"fs-teardown","metascraper","metascraper-description","metascraper-image","metascraper-logo","metascraper-logo-favicon", -"metascraper-title","node-polyfill-webpack-plugin","npm-license","yorkie","babel-tape-runner","eslint-find-rules", -"eslintconfig","airbnb","es2016","es2018","confusing-browser-globals","prettier-package-json","quality","linter", -"jslint","code style","strict","verify","hint","eslint config","eslint-config-xo-space","eslint-prettier", -"@rushstack/eslint-patch","JavaScript Standard Style","code checker","code linter","code standards","policy", -"standard style","style checker","style linter","@eslint/config-inspector","automd","eslint-typegen","obuild", -"@eslint/css","xoxo","hugs","kisses","happy","happiness","cabin","rules","@typescript/native-preview", -"eslint-import-context","is-bun-module","stable-hash-x","unrs-resolver","@webpack-contrib/defaults", -"commitlint-azure-pipelines-cli","eslint-friendly-formatter","enhance-visitors","espurify","micro-spelling-correcter", -"eslint-ava-rule-tester","eslint-rule-composer","ast-metadata-inferer","@tsconfig/node16","@types/caniuse-lite", -"@types/lodash.memoize","browserslist-config-erb","kangax","@vuepress/plugin-pwa","eslint4b","vue-eslint-editor", -"comment","directive","exported","eslint-env","eslint-enable","eslint-disable","eslint-disable-line", -"eslint-disable-next-line","@eslint-community/eslint-plugin-eslint-comments","@types/eslint-scope","@types/espree", -"@types/estraverse","eslint-config-not-an-aardvark","string-natural-compare","gitdown","eslint-config-canonical", -"flowtype","@html-eslint/eslint-plugin","@html-eslint/parser","markdown-link-check","@rtsao/scc","array-includes", -"array.prototype.findlastindex","doctrine","eslint-import-resolver-node","eslint-module-utils","object.groupby", -"string.prototype.trimend","@angular-eslint/template-parser","escope","fs-copy-file-sync","linklocal","lodash.isarray", -"npm-which", -"typescript-eslint-parser","export","@schemastore/package","babel-plugin-replace-ts-export-assignment", -"eslint-remote-tester-repositories","@es-joy/jsdoccomment","@es-joy/resolve.exports","are-docs-informative", -"object-deep-merge","parse-imports-exports","spdx-expression-parse","to-valid-identifier","@es-joy/escodegen", -"@es-joy/jsdoc-eslint-parser","@hkdobrev/run-if-changed","@types/spdx-expression-parse", -"babel-plugin-transform-import-meta","jsdoc-type-pratt-parser","json-schema-to-typescript","open-editor","replace", -"@ota-meshi/ast-token-store","diff-sequences","eslint-json-compat-utils","@changesets/changelog-github", -"@ota-meshi/eslint-plugin","@ota-meshi/site-kit-eslint-editor-vue","@types/natural-compare","env-cmd", -"eslint-plugin-eslint-rule-tester","eslint-plugin-json-schema-validator","eslint-plugin-node-dependencies", -"stylelint-config-recommended-vue","stylelint-config-standard-vue","stylelint-stylus","vite-plugin-eslint4b","jsonc", -"ast-types-flow","axobject-query","damerau-levenshtein","jsx-ast-utils","language-tags","string.prototype.includes", -"to-ast","eslint-config-eslint","eslint-plugin-es-x","ts-declaration-location","@types/globrex","ts-ignore-import", -"eslint-utils","prettier-linter-helpers","array.prototype.findlast","array.prototype.tosorted","es-iterator-helpers", -"string.prototype.repeat","@babel/plugin-syntax-do-expressions","@babel/plugin-syntax-function-bind","gfm-footnotes", -"ls-engines","hermes-parser","@types/estree-jsx","@tsconfig/strictest","refa","regexp-ast-analysis", -"scslre","@types/pako","eslint-plugin-pere","eslint-snapshot-rule-tester","mocha-chai-jest-snapshot","safe-regex", -"eslint-config-nodesecurity","nodesecurity","jsx-ast-utils-x","functional-red-black-tree","sonarjs", -"svelte-eslint-parser","@types/eslint-utils","@types/esutils","@types/less","@types/postcss-safe-parser","@types/stylus", -"svelte-i18n","sveltejs","eslint-plugin-import-x","clean-regexp","find-up-simple","regexp-tree","regjsparser", -"@lubien/fixture-beta-package","nano-spawn","node-style-text","unicorn","@veritem/eslint-config","bumpp", -"vitest eslint plugin","eslint plugin","xml-name-validator","@types/xml-name-validator", -"eslint-plugin-markdown-preferences","@types/babel__code-frame","importx","ink-testing-library","eslint-test", -"@types/esrecurse","esrecurse","eslint-plugin-requirejs","escomplex-js","everything.js","json-diff", -"karma-safaritechpreview-launcher","node-tick-processor","unicode-8.0.0","gulp-tag-version","ethereumjs-common", -"@ethereumjs/config-nyc","@ethereumjs/config-prettier","@ethereumjs/config-tsc","@ethereumjs/config-tslint", -"contributor","karma-tap","typestrict","transactions","ethereum-cryptography","rlp","@types/assert","@types/secp256k1", -"karma-typescript","os-tmpdir", -"es-lookup-scope","qs-iconv","eval","evaulate","from","pause-stream","stream-combiner","asynct","it-is","stream-spec", -"ubelt","flatmap","join","eventemitter","addEventListener","addListener","pub/sub","emits","on","publish","subscribe", -"EventEmitter","EventEmitter2","EventEmitter3","Events","reactor","eventEmitter","eventDispatcher","listeners", -"@sindresorhus/merge-streams","human-signals","strip-final-newline","yoctocolors","get-node","is-in-ci","is-running", -"log-process-errors","exec","subprocess","fork","execfile","bin","binaries","local","stdio","stderr","drain","flush", -"3584","@jest/expect-utils","@jest/get-type","eslint-plugin-mmkal","pkg-pr-new","type-check","merge-descriptors", -"pbkdf2-password","array-flatten","setprototypeof","automatically","autogenerate","autogenerator","autogenerated", -"express3","partials", -"express-unless","authn","authz","token","expressjs","helpers","hoare","cjs-mock","tRPC","RPC","express.js", -"code-generation","fully-typed","type-safe","typed-api","express-api","http-api","client-server","unit-testing", -"browser-client","web-development","web-api","@docusaurus/plugin-client-redirects","@docusaurus/preset-classic", -"sanitization","openapi3-ts","@express-zod-api/zod-plugin","@types/depd","@types/http-errors","@types/node-forge", -"camelize-ts","snakify-ts","dts-plugin","handler","documentation-tool","schema-validation","endpoint", -"openapi-specification","swagger-documentation","covert","assign-symbols","is-extendable","array-slice","benchmarked", -"for-own","kind-of","props","shallow","webpack-defaults","@types/yauzl","gulp-mustache","vinyl-transform", -"color-support","parse-node-version","console.log","timestamp","pure-rand","@fast-check/expect-type", -"@fast-check/poisoning","property-based testing","end-to-end testing","quickcheck","jscheck","jsverify", -"fuzzer","fuzz","@fast-csv/parse","@fast-csv/format","writer","csv writer","CSV","@nodelib/fs.stat","@nodelib/fs.walk", -"@nodelib/fs.macchiato","@types/merge2","@types/picomatch","bencho","eslint-config-mrmlnc","hereby","snap-shot-it", -"implementation","strnum","transformer","js2xml","json2xml","click","@fastify/ajv-compiler","@fastify/error", -"@fastify/fast-json-stringify-compiler","@fastify/proxy-addr","abstract-logging","avvio","fast-json-stringify", -"find-my-way","light-my-request","process-warning","secure-json-parse","toad-cache","@jsumners/line-reporter","ajv-i18n", -"ajv-merge-patch","autocannon","branch-comparer","fast-json-body","fluent-json-schema","h2url","markdownlint-cli2", -"@umijs/babel-preset-umi","@umijs/bundler-webpack","@umijs/case-sensitive-paths-webpack-plugin","@utoo/pack", -"@vercel/ncc","babel-plugin-styled-components","babel-plugin-transform-define","loader-runner","piscina", -"typescript-transform-paths","@types/loader-runner","@types/minimatch","array.prototype.foreach","array.prototype.join", -"array.prototype.map","array.prototype.push","array.prototype.slice","string.prototype.split","tap-parser","human", -"anything", -"protocol","fbjs-css-vars","setimmediate","@skypack/package-check","babel-plugin-minify-dead-code-elimination","in web", -"in javascript","in react","Plug & Play","web component","react components","ui component","advanced component", -"advanced feature","scanner","phonebook","voice","autofillotp","share","livelocationtracking","detectmylocation", -"colorpicker","wakelock","WhatsappShare","NetworkConnection","TextToSpeech","VoiceRecognition","SnapScanner", -"NetworkMonitor","View360","functional program","data management","@types/glob-to-regexp","dequal","glob-to-regexp", -"stub","detect-libc","fiber","thread","worker","art","banner","symbol","symbols","figure","fallback","filesaver", -"saveas","blob","@tokenizer/inflate","strtok3","token-types","uint8array-extras","@tokenizer/token","commonmark", -"noop-stream","magic","pic","picture","photo","video","exif","elf","macho", -"jpg","apng","gif","flif","xcf","cr2","cr3","orf","arw","dng","nef","rw2","tif","bmp","icns","jxr","psd","indd","rar", -"gz","7z","mp4","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","epub","mobi", -"rtf","woff","woff2","eot","ttf","otf","ttc","ico","flv","ps","xz","xpi","cab","deb","ar","rpm","Z","lz","cfb","mxf", -"mts","wasm","webassembly","blend","bpg","docx", -"pptx","3gp","j2c","jp2","jpm","jpx","mj2","aif","odt","ods","odp","heic","ics","pcap","dsf","lnk","voc","ac3","3g2", -"m4b","m4p","m4v","f4a","f4b","f4p","f4v","mie","qcp","asf","ogv","ogm","oga","spx","ogx","ape","wv","cur","nes","crx", -"ktx","dcm","mpc","arrow","shp","aac","mp1","it","s3m","xm","skp","eps","lzh","pgp","asar","chm","3mf","zst","jxl","vcf", -"jls","pst","dwg","parquet","arj", -"cpio","ace","avro","icc","fbx","vsdx","vtt","apk","drc","lz4","potx","xltx","dotx","xltm","ots","odg","otg","otp","ott", -"xlsm","docm","dotm","potm","pptm","jar","jmp","sav","ppsm","ppsx","reg","dat","size","readable","file system", -"locate-path","unicorn-magic","up","look-up","look","parent","walking","detect-file","resolve-dir","homedir-polyfill", -"@firebase/ai","@firebase/app","@firebase/auth","@firebase/util","@firebase/storage","@firebase/database", -"@firebase/analytics","@firebase/app-check","@firebase/app-types","@firebase/firestore","@firebase/functions", -"@firebase/messaging","@firebase/app-compat","@firebase/auth-compat","@firebase/performance","@firebase/data-connect", -"@firebase/installations","@firebase/remote-config","@firebase/storage-compat","@firebase/database-compat", -"@firebase/analytics-compat","@firebase/app-check-compat","@firebase/firestore-compat","@firebase/functions-compat", -"@firebase/messaging-compat","@firebase/performance-compat","@firebase/installations-compat", -"@firebase/remote-config-compat","Firebase","realtime","remote-config","@fastify/busboy","@firebase/database-types", -"farmhash-modern","google-auth-library","jwks-rsa","@firebase/api-documenter","@firebase/auth-types","@types/bcrypt", -"@types/firebase-token-generator","@types/request","@types/request-promise","firebase-token-generator", -"http-message-parser","admin","@apphosting/build","@apphosting/common","@electric-sql/pglite", -"@electric-sql/pglite-tools","@google-cloud/cloud-sql-connector","@google-cloud/pubsub","@modelcontextprotocol/sdk", -"async-lock","cjson","deep-equal-in-any-order","exegesis","exegesis-express","gaxios","libsodium-wrappers","lsofi", -"pg-gateway","pglite-2","proxy-agent","sql-formatter","stream-chain","stream-json","superstatic","triple-beam", -"universal-analytics","update-notifier-cjs","zod-to-json-schema","cdn","ssl","hosting","synchronization","alce", -"detect-newline","extend-object","@types/rimraf","matcher-collection","unflatten","nested","@types/acorn", -"rollup-plugin-livereload", -"rollup-plugin-serve","lightweight","byline","util-extend","markdox","deploy","deployment","commands","devops","ssh", -"tasks","sequential","remote","fabric","inference","wrapper","flowbite-datepicker","mini-svg-data-uri", -"@tailwindcss/cli","@tailwindcss/postcss","eslint-plugin-tailwindcss","flowbite-typography", -"prettier-plugin-tailwindcss","windicss","ui components","tailwind components","tailwind elements","tailwind library", -"tailwind sections","tailwind ui","tailwind angular","tailwind django","tailwind ruby on rails","tailwind flask","cjs", -"umd","ffmpeg","fbemitter","react-addons-test-utils","dispatcher","lolex","redirect","location","@types/is-callable", -"cliff","shush","flatiron","nssocket","forever-monitor","getopts","cli-testlab","fault tolerant","sysadmin", -"node-abort-controller","jest-circus","karton","typecheck","@types/babel-code-frame","increment","asynckit", -"combined-stream","es-set-tostringtag","browserify-istanbul","fake", -"far","is-node-modern","js-randomness-predictor","obake","dezalgo","@paralleldrive/cuid2","formdata-polyfill", -"prettier-plugin-pkgjson","@tunnckocore/prettier-config","www","ulpoad","tiny-warning","just-debounce-it","tsdx", -"react hooks","render props","higher order component","hoc","conditional","friendly","errors","check-dts","front matter", -"meta data","universalify","klaw","read-dir-files","extra","mkdir","mkdirs","create","output","release-assist", -"any-promise","thenify-all","mac","ie","@monaco-editor/loader","@sapphire/stopwatch","@sapphire/utilities", -"@snippetors/vuepress-plugin-tabs","@vuepress/plugin-google-analytics","monaco-editor","vuepress-plugin-google-adsense2", -"bitap","socket","sublime","sublime text","globule","grunt-benchmark","yeoman-test","yeoman-assert","insight", -"restangular","ui-router","foundation","traceur","haml","git-config","find-git-root","@merkle-open/eslint-config", -"nitro","modular","pool", -"pooling","inject-markdown","ts2mjs","iterator","iterators","iterable","reduce","@werkzeugkiste/eslint-config", -"@werkzeugkiste/release-config","install-deps-postmerge","semantic-release-conventional-commits","@cfware/lint", -"@cfware/nyc","if-ver","libtap","finder","free","available","connection","tcp","scan","preferred","chosen","std", -"concat","@sec-ant/readable-stream","onetime","precise-now","get","consume","readablestream","resolve-pkg-maps", -"tsconfig","tsconfig.json","eslint-config-bevry","make-deno-edition","deno","deno-edition","deno-entry","denoland", -"es2022","export-default","ifconfig","ipconfig","mac-address","typed","email-addresses","dir-compare", -"eslint-config-tschaub","lodash.clone","manage-path","opt-cli","spawn-command","chai-string","eslint-config-kentcdodds", -"travis-after-all","hook","@primer/octicons","@primer/primitives","@rollup/plugin-html","minipass","path-scurry", -"dirname","wildcard", -"min-document","is-identifier","identifiers","environments","glob-stream","all","fnmatch","globbing","globs","multiple", -"paths","wildcards","gitignore","array-series","array-parallel","magick","graphicsmagick","gfsl", -"eslint-config-standard-with-typescript","msmc","mc","minecraft","launcher","java","java edition","arm","arm-support", -"forge","instances-management","instances","mod","mods","mc-mod","mc-mods","modpack","modpack-api","extendable","nbt", -"jarmods","skin fix","ky","eslint-plugin-no-floating-promise","varlock","google spreadsheets","google sheets", -"spreadsheet","spreadsheets","sheets","gdata","drive","google docs","google drive","googleapis-common","@types/execa", -"@types/mv","@types/ncp","@types/nunjucks","@types/url-template","@types/yargs-parser","js-green-licenses","jsdoc-fresh", -"jsdoc-region-tag","linkinator","pdfmake", -"google apis","client library","@sindresorhus/is","byte-counter","cacheable-lookup","cacheable-request", -"decompress-response","form-data-encoder","lowercase-keys","p-cancelable","responselike","@hapi/bourne","@types/pem", -"chunk-data","create-cert","create-test-server","pem","slow-stream","then-busboy","uri","curl","wget","zstd","zstandard", -"requests","human-friendly","sassdoc","gulp-cli","sass-color-helpers","govuk-prototype-kit","govuk","reading","retries", -"handling","EMFILE","EAGAIN","EINVAL","EPERM","EACCESS","graphql-js","test-all-versions","@graphql-tools/schema", -"section-matter","strip-bom-string","ansi-green","delimiter-regex","assemble","coffee","extracting","front", -"frontmatter","matter","site","@mapbox/node-pre-gyp","@types/bytebuffer","electron-mocha","google-protobuf", -"poisson-process","grunt-legacy-log","grunt-legacy-util","grunt-known-options","difflet","temporary", -"eslint-config-grunt", -"uglify","init","make","gruntplugin","browserify-incremental","liftup","pad-stream","grunt-nodemon","simultaneous", -"perf","faster","bin-version-check","compass","connect-livereload","file-sync-cmp","csslint","maxmin","cssmin","min", -"jpeg","hooker","less-plugin-clean-css","nodeunit-x","uri-path","grunt-coveralls","grunt-istanbul", -"grunt-github-remove-all-releases","gh","release","releases","report","vow","@commitlint/travis-cli","TDD", -"grunt-continue","grunt-env","grunt-istanbul-coverage","grunt-cafe-mocha","newer","stack-parser","grunt-release", -"grunt-templates-dylang","notify","mountain lion","mavericks","linux","notify-send","preprocess","libsass", -"requestretry","sauce-tunnel","grunt-sauce-tunnel","yui","spritesheet-templates","spritesmith","url2", -"eslint-config-twolfson","foundry","foundry-release-git","foundry-release-npm","get-pixels","gmsmith","sprite", -"spritesheet", -"grunt-mocha-cli","usemin","@npm/types","@types/json5","@types/write-file-atomic","inline-fixtures", -"@guarapi/eslint-config-guarapi","@swc/register","glob-watcher","undertaker","pipeline","series","streaming", -"gulp-footer","html2js","templatecache","gulp-symdest","atom","atom-shell","prefixes","postcss-runner","lodash.chunk", -"concurrent-transform","@azure/storage-blob","delayed-stream","streamifier","rewriting","transformation","codegen", -"desugaring","bom","mark","utf-8","add","prepend","gulp-codecov.io","bump-regex","plugin-log","version","versioning", -"gulp-version","gulp-plugin","cache-swap","object.pick","change-file-extension","changed","modified","modification", -"updated","mtime","stat","cached","passthrough","minify-css","jshint-reporter-jscs","parse-import","rework", -"rework-import","rework-plugin-url","inline","slush","dest","conflict","webserver", -"csscomb","rcloader","csslint-stylish","node-version-check","from2-string","@shinnn/eslint-config-node","warnings", -"flatnest","balanced-match","include","streamfilter","to-absolute-glob","divide","separate","relative", -"pretty-remarkable","sections","prettify","jsftp","jsftp-mkdirp","ftp-test-server","gift","wrap-promise","octonode", -"read-remove-file","@shinnn/eslint-config-node-legacy","branch","any-shell-escape","strip-bom-stream","gulpgit", -"stream-to-array","nid","gulp-declare","gulp-define-module","gulp-wrap","nsdeclare","eventstream","istanbul-coveralls", -"htm","htmlmin","gulp-spawn","gulp-svg2ttf","gulp-ttf2eot","gulp-ttf2woff","gulp-ttf2woff2","gulp-svgicons2svgfont", -"metapak","streamtest","@types/gulp","metapak-nfroidure","gulp-match","ternary-stream","stream-exhaust","if","ternary", -"exclude","gulp-gm","imagemin-webp","group-array","strip-color","@commitlint/config-angular","inject","stylesheets", -"webcomponents", -"scripts","index","inline-css","lodash.groupby","istanbul-threshold-checker","isparta","unit test", -"jasmine-terminal-reporter","gulplog","has-gulplog","array-unique","capture-stream","plugins","vinyl-bufferstream", -"stream-combiner2","kew","bufferstreams","ng-annotate","develop","restart","windows notification","mac notification", -"notify-osd","easy-transform-stream","ENV","echo","ifdef","ifndef","eslint-watch","views","precompile","src", -"replacestream","modify-filename","rev-hash","rev-path","sort-keys","vinyl-file","rev","revving","revision","expire", -"assets","each-async","md5-hex","ruby","source-maps","sourcemaps","sftp","@types/fancy-log","@types/lodash.template", -"brotli-size","measure","@gulp-sourcemaps/identity-map","@gulp-sourcemaps/map-sources","debug-fabulous","hook-std", -"mississippi","source maps","strip-debug","accord","looks-same","svg2png","stack", -"vector","rwd","retina","rendering","@types/through","incremental","@types/ansi-colors","gulp-diff", -"@types/plugin-error","incremental compilation","array-each","make-error-cause","tape-catch","source-list-map", -"eslint-plugin-no-use-extend-native","uncss","useref","async-once","mock-gulp-dest","array-differ","array-uniq","beeper", -"lodash._reescape","lodash._reevaluate","lodash._reinterpolate","lodash.templatesettings","yazl","yazul","vinyl-zip", -"anymatch","proxy-middleware","vinyl-assign","pngparse","phantomjssmith","zlib","compressed","catering","deglob", -"find-file-up","find-githost","remark-autolink-references","remark-common-changelog", -"remark-lint-blockquote-indentation","remark-lint-checkbox-character-style","remark-lint-checkbox-content-indent", -"remark-lint-code-block-style","remark-lint-definition-case","remark-lint-emphasis-marker", -"remark-lint-fenced-code-marker","remark-lint-final-newline","remark-lint-hard-break-spaces", -"remark-lint-list-item-bullet-indent","remark-lint-list-item-indent","remark-lint-no-auto-link-without-protocol", -"remark-lint-no-blockquote-without-marker","remark-lint-no-duplicate-definitions", -"remark-lint-no-heading-content-indent","remark-lint-no-inline-padding","remark-lint-no-literal-urls", -"remark-lint-no-unused-definitions","remark-lint-rule-style","remark-lint-strong-marker", -"remark-lint-table-cell-padding","remark-lint-table-pipes", -"remark-lint-unordered-list-marker-style","remark-validate-links","unified-engine","vfile-reporter-shiny", -"git-pull-or-clone","fixer","changelogplease","git-tags","grunt-contrib-qunit","grunt-string-replace","jquery-hammerjs", -"gestures","neo-async","chai-diff","grunt-contrib-requirejs","ammo","shot","topo","heavy","mimos","bounce","catbox", -"podium","somever","subtext","teamwork","statehood","catbox-memory","wreck","vision","elements","flag","getopt", -"@types/core-js","get-own-property-symbols","typeof","sham","function-bind","@types/function-bind", -"@types/mock-property","hasOwnProperty","hasOwn","has-own","own","in","@ungap/structured-clone","hast-util-from-parse5", -"unist-util-position","web-namespaces","zwitch","@types/ungap__structured-clone","remark-api","hast-util","hast","unist", -"raw","aria-attributes","html-tag-names","safe","bcp-47-match","devlop","direction","selectall", -"estree-util-attach-comments", -"estree-util-is-identifier-name","mdast-util-mdx-expression","mdast-util-mdx-jsx","mdast-util-mdxjs-esm", -"esast-util-from-js","ccount","tostring","sval","solid","unist-util-find-after","estree-util-build-jsx","svg-tag-names", -"hyperscript","vdom","virtual","regexgen","sort-object","content-security-policy","cross-origin-embedder-policy", -"cross-origin-opener-policy","cross-origin-resource-policy","origin-agent-cluster","referrer-policy", -"strict-transport-security","x-content-type-options","x-dns-prefetch-control","x-download-options","x-frame-options", -"x-permitted-cross-domain-policies","x-powered-by","x-xss-protection","@vue/compiler-dom","abbrev","fast-archy", -"fast-text-table","hexo-cli","hexo-front-matter","hexo-fs","hexo-i18n","hexo-log","hexo-util","js-yaml-js-types","moize", -"titlecase","warehouse","@types/abbrev","0x","eslint-config-hexo","hexo-renderer-marked","util-deprecate", -"grunt-gh-pages","scrawl","transducers-js","tiny-worker","wcag-contrast","css-color-names","deep-freeze-es6", -"dependency-resolver","step","hap-nodejs","@types/source-map-support","eslint-plugin-import-newlines", -"@hono/eslint-config","bun-types", -"editorconfig-checker","oxc-parser","vite-plugin-fastly-js-compute","wrangler","application","cloudflare","workers", -"fastly","compute","workshopper-adventure","workshop","adventure","tutorial","tutor","@size-limit/preset-big-lib", -"@types/jscodeshift","pojo","attribute","element","@exodus/bytes","@types/he","flowgen","html entities", -"html entities encode","html entities decode","entities encode","entities decode","ascjs","unescape","posthtml-webp", -"unescape-unicode","relateurl","compressor","packer","uglifier","alpinejs","commitlint-config-non-conventional", -"rollup-plugin-polyfill-node","tags","void","self-closing","@types/jasmine","@bubkoo/tsconfig","@bubkoo/eslint-config", -"@bubkoo/rollup-config","@bubkoo/commitlint-config","@bubkoo/semantic-release-config","screenshot","capture", -"@selderee/plugin-htmlparser2","selderee","mail","plain","@html-validate/stylish","@sidvind/better-ajv-errors", -"@types/html-minifier-terser","pug-loader","webpack-recompilation-simulator","@types/relateurl","bunchee", -"eslint-plugin-unused-imports","srcset","posthtml-plugin","postproccessor", -"rss","toidentifier","requires-port","sse","agent-base","agent","@types/is-glob","mockttp","next.js","union","corser", -"secure-compare","eol","eslint-config-populist","https-server","@types/should","@types/eslint__js","status", -"@types/markdown-table","HttpStatus","httpclient","mediation","@types/async-retry","post","put","duplex", -"eslint-config-sanity","hyphenate","singular","plural","camelize","dasherize","demodulize","ordinalize","uncountable", -"singularize","titleize","tableize","classify","foreign_key","@messageformat/core","fast-printf","make-plural", -"math-interval-parser","l10n","@arktype/attest","gh-release","i18next-browser-languagedetector","i18next-fs-backend", -"i18next-http-backend","i18next-localstorage-cache","i18next-sprintf-postprocessor","internationalization","translation", -"localization","globalization","gettext","gridly","safer-buffer","errto","iconv","unorm","bench-node","charset", -"icu","harmony-reflect","proxies","identity","eslint-config-ostai","pre-suf","spawn-sync",".gitignore","manager", -"asterisks","regular-expression","dimensions","resolution","heif","tga","tiff","ow","p-pipe","image-dimensions","is-png", -"pngquant-bin","imageminplugin","pngquant","utf7","reader","cpx2","deep-freeze","import-size","seamless-immutable", -"type-plus","mutable","copy-on-write","@types/invariant","immutability","lazy","stateless","bypass","prefer","metacom", -"metaconfiguration","metalog","metaschema","metautil","metavm","metawatch","eslint-config-metarhia","isolation", -"enterprise","scalable","soa","stateful","routing","cluster","interactive","align","every","inferno-shared", -"inferno-utils","user interfaces","renderToString","inflections","inflection-js","humanize","capitalize", -"inheritance","klass","oop","object-oriented","@alcalzone/ansi-tokenize","auto-bind","patch-console","terminal-size", -"yoga-layout","@types/react-reconciler","@types/scheduler","@types/signal-exit","@vdemedes/prettier-config", -"eslint-config-xo-react","react-devtools-core","print","inline-style","inno","innosetup","run-async","fwk","instagram", -"ig","driver","reify","exports","packaging","remark-code-import","coffee.md","litcoffee","yml", -"babel-plugin-transform-es3-member-expression-literals","babel-plugin-transform-es3-property-literals", -"babel-preset-es2015-rollup","cldr-cal-buddhist-full","cldr-cal-chinese-full","cldr-cal-coptic-full", -"cldr-cal-dangi-full","cldr-cal-ethiopic-full","cldr-cal-hebrew-full","cldr-cal-indian-full","cldr-cal-islamic-full", -"cldr-cal-japanese-full","cldr-cal-persian-full","cldr-cal-roc-full","cldr-core","cldr-dates-full","cldr-numbers-full", -"estraverse-fb","grunt-curl","grunt-zip","rollup-plugin-memory","ecma402","@vue/tsconfig","flag-icons", -"google-closure-library","grunt-replace","prettier-eslint","international","country","dial code","telephone","phone", -"@inversifyjs/common", -"@inversifyjs/container","@inversifyjs/core","dependency inversion","inversion of control container","ioc","leek", -"ssh-config","elementtree","@ionic/discover","@ionic/utils-fs","superagent-proxy","@ionic/utils-array", -"@ionic/utils-stream","@ionic/cli-framework","@ionic/utils-network","@ionic/utils-process","@ionic/utils-terminal", -"@ionic/utils-subprocess","@ionic/cli-framework-prompts","@types/diff","@types/open","@types/split2","@types/os-name", -"@types/elementtree","ionic framework","ionicframework","hybrid","@types/svgo","jest-stencil-runner","icon pack", -"custom element","@ioredis/commands","cluster-key-slot","denque","lodash.isarguments","redis-errors","redis-parser", -"standard-as-callback","@ioredis/interface-generator","@types/lodash.defaults","@types/lodash.isarguments", -"@types/redis-errors","sentinel","pipelining","irc-colors","node-icu-charset-detector","ansi-color","is-extglob", -"braces","extglob","globstar","global-directory","globally","installed","locally","vanilla","pure","is-object","kind", -"custom element name","writable","is-inside-container","esmock","wsl", -"subsystem","kindof","lintspaces-cli","code coverage","JS code coverage","JS coverage","js-calendar","v-click-outside-x", -"autoprefixer-loader","babel-plugin-transform-es5-property-mutators","compression-webpack-plugin","vue-html-loader", -"character-parser","constantinople","jstransformer","transformers","with","browserify-middleware","code-mirror", -"github-basic","handle","highlight-codemirror","inconsolata","jade-code-mirror","jade-highlighter","jstransformer-cdata", -"jstransformer-coffee-script","jstransformer-less","jstransformer-marked","jstransformer-stylus", -"jstransformer-verbatim","less-file","lsr","pull-request","stop","filelist","rake","video-worker", -"babel-plugin-annotate-pure-calls","browserslist-config-nk","eslint-config-nk","json-file","prettier-config-nk", -"parallax","youtube","vimeo","@jasminejs/reporters","eslint-plugin-jasmine","css-url-embed","walkdir", -"jasmine-reporters","jasmine-growl-reporter","cssfontparser","moo-color","babel-plugin-version","@jest/diff-sequences", -"@jest/environment","@jest/environment-jsdom-abstract","@jest/fake-timers","jest-serializer-ansi-escapes","matchers", -"extended","@types/escape-html","@types/jump.js", -"@types/randomcolor","eslint-webpack-plugin","jump.js","randomcolor","web-vitals","libxmljs2","plugnplay","pnp", -"babel-plugin-add-import-extension","@types/merge-stream","jest-leak-detector","worker-farm","@jimp/core","@jimp/diff", -"@jimp/js-bmp","@jimp/js-gif","@jimp/js-jpeg","@jimp/js-png","@jimp/js-tiff","@jimp/plugin-blit","@jimp/plugin-blur", -"@jimp/plugin-circle","@jimp/plugin-color","@jimp/plugin-contain","@jimp/plugin-cover","@jimp/plugin-crop", -"@jimp/plugin-displace","@jimp/plugin-dither","@jimp/plugin-fisheye","@jimp/plugin-flip","@jimp/plugin-hash", -"@jimp/plugin-mask","@jimp/plugin-print","@jimp/plugin-quantize","@jimp/plugin-resize","@jimp/plugin-rotate", -"@jimp/plugin-threshold","@jimp/types","@jimp/utils","@jimp/config-eslint","@jimp/config-typescript", -"@jimp/config-vitest","@jimp/test-utils","node-self","vite-plugin-node-polyfills","image processing", -"image manipulation","resize","@babel/helper-simple-access","@rspack/cli","@rspack/core", -"@types/babel__helper-plugin-utils","@types/babel__template","@types/babel__traverse","babel-plugin-parameter-decorator", -"destr","nano-jsx","preact-render-to-string","solid-js","wysiwyg editor","wysiwyg html editor","rich editor", -"rich text editor","contenteditable", -"vanillajs","wysisyg","rte","firmata","temporal","nanotimer","browser-serialport","grunt-jsbeautifier","0A02","0A21", -"16x2 LCD","20x4 LCD","2D120X","2Y0A02","2Y0A21","74HC595","ADXL335","ADXL345","ALS-PT19","ALSPT19","ANALOG","arduino", -"Ardumoto","AT42QT1070","BLINKM","BMP180","Continuous Rotation","DEFAULT","Diffused LED","DS18B20", -"Edison Arduino Block","Edison GPIO Block","Edison I2C Block","Edison PWM Block","edison","ESPLORA","EV3","galileo-io", -"galileo","GP2D120XJ00F","GP2Y0A02YK0F","GP2Y0A21YK","GP2Y0A41SK0F","GY-521","GY521","HD44780","High Torque", -"Hitec HS-35HD","Hitec HS-422","Hitec HS-425BB","Hitec HS-625MG","Hitec HS-646WP","Hitec HS-755HB","Hitec HS-805BB", -"Hitec HS-85MG","HMC5883L","HMC6352","Hobby Motor","HRLV-MaxSonar-EZ0","HT16K33","HTU21D","i2c", -"Infrared Proximity Sensor","Infrared Sensor", -"intel edison","intel galileo","ISL29125","JHD1313M1","Joystick","LCD1602","LCD2004","LCM1602","LED","LIDAR-Lite v2", -"Ludus Protoshield Wireless","Ludus Protoshield","LV-MaxSonar-EZ0","LV-MaxSonar-EZ3","MCP23008","MCP23017","MCP9808", -"Metal Gear","MJKDZ","MMA7361","MMA7660","MMA8462Q","MPL115A2","MPL3115A2","MPR121","MPR121QR2","MPU-6050","MPU6050", -"MUXSHIELD2","NXT","OA41SK","PARALLEL","PCA9685","pcduino","PCF8574","PCF8574A","PCF8574AT","PCF8574T","PCF8575", -"PCF8591","photon","PIR Motion Sensor","QTOUCH","raspberry pi","raspberrypi","raspi-io","RedBoard","RGB LED","robot", -"robotics","rpi","serial","Servo","Shift Register 8-Bit SN74HC595","Shift Register","SI7020","spark core","spark-io", -"spark","SparkFun Essential Sensor Kit","SparkFun Sensor Kit","Speed controller","Temperature","tessel 2", -"Thumb Joystick","TINKERKIT","TMP36","TSL2561","Ultrasonic Range Finder","usb","VKEY","Weather Shield Arduino", -"Weather Shield Photon","@hapi/address","@hapi/formula","@hapi/pinpoint","@hapi/tlds","recoil","grunt-html", -"commitplease","grunt-bowercopy","grunt-git-authors","grunt-compare-size","jquery-test-runner","eslint-config-jquery", -"config-chain","beautifier","code-quality","grunt-exec","gzip-js","amd","rollup-plugin-node-polyfills","pyyaml", -"knifecycle","package-directory","yerror","architecture","gitignore-to-glob","@jscpd/badge-reporter","@jscpd/core", -"@jscpd/finder","@jscpd/tokenizer","@jscpd/html-reporter","jscpd-sarif-reporter","cst","jscs-jsdoc", -"jscs-preset-wikimedia","reserved-words","to-double-quotes","to-single-quotes","vow-fs","unicode-7.0.0","unit-coverage", -"@jsdoc/salty","catharsis","js2xmlparser","requizzle","current-module-paths","object-to-spawn-args","config-master", -"@acemir/cssom","@asamuzakjp/dom-selector","@bramus/specificity","data-urls","decimal.js","saxes","symbol-tree", -"w3c-xmlserializer", -"webidl-conversions","whatwg-url","mocha-sugar-free","webidl2","webidl2js","browser-request","cssom","nwmatcher", -"selenium-standalone","unicode-13.0.0","results-interpreter","unicode-5.2.0","unicode-11.0.0","stylish","deeks", -"doc-path","to","json2csv","csv2json","csv-2-json","milliparsec","sort-on","prototyping","dummy","@types/object-keys", -"deterministic","stable","circular","unicode-10.0.0","@stryker-mutator/mocha-runner","json-metaschema","jsonparse", -"trees","jws","lodash.once","lodash.includes","lodash.isnumber","lodash.isboolean","lodash.isinteger","@jspm/generator", -"@jspm/plugin-rollup","amaro","states","lie","jszip-utils","package-json-versionify","inflate","qjobs","dom-serialize", -"timer-shim","karma-junit-reporter","karma-script-launcher","spectacular","execution","hat","os-shim","karma-plugin", -"karma-preprocessor","browserify-tool","browserstack-local","karma-launcher","browser-stack","chrome","ibrik", -"karma-coffee-preprocessor","karma-requirejs","karma-reporter","Safari","Safari Tech Preview","SafariTechPreview","IE", -"Chrome","Chrome Canary","Chrome Headless","Chromium","Firefox","Opera","edge-launcher","chai-fs","os-homedir","firefox", -"karma-adapter","karma-rollup","safari","global-agent","@types/global-agent","sauce","labs","karma-brief-reporter", -"rollup-sourcemap-path-transform","keyboard","keyboardevent","keydown","keyup","metakey","keyname","@keyv/serialize", -"lru.min","timekeeper","@keyv/compress-gzip","@keyv/sqlite","@keyv/test-suite","@keyv/mongo","@keyv/compress-brotli", -"@keyv/compress-lz4","@keyv/memcache","key-value","adapter","memory","lru","tarn","escalade","pg-connection-string", -"tedious","oracledb","better-sqlite3","pg-query-stream","chai-subset-in-order","@tsconfig/recommended", -"toxiproxy-node-client","sql","postgres","cockroachdb","querybuilder","formatly","oxc-resolver","smol-toml", -"codeclimate-types", -"analysis","analyze","dead code","duplicate","entropy","maintenance","members","missing","monorepo","namespace", -"unreferenced","unresolved","workspace","lodash.sortby","explorer","opera","samsung-internet","uc-browser", -"stream-counter","delegates","http-assert","gen-esm-wrapper","@types/co-body","co-body","@koa/router", -"@types/koa__router","urlencoded","body","copy-to","bodyParser","compose","humanize-number","passthrough-counter", -"koa-compress","koa-route","mount","mounting","@ladjs/env","route","koa-send","sendfile","reds","node-redis-warlock", -"bossy","eslint-config-hapi","eslint-plugin-hapi","find-rc","will-call","cpr","lab-event-reporter","semver-regex", -"latest","package.json","current","autodoc","deft","jasmine-async","race.js","string-table","happen","leafdoc", -"bundlemon","git-rev-sync","karma-expect", -"prosthetic-hand","eslint-config-mourner","rollup-plugin-git-version","@mapbox/eslint-plugin-script-tags","gis","left", -"padding","repeat","numbers","aproba","cmd-shim","p-reduce","byte-size","write-pkg","wide-align","has-unicode", -"p-waterfall","libnpmaccess","p-map-series","set-blocking","@lerna/create","libnpmpublish","read-cmd-shim", -"load-json-file","init-package-json","make-fetch-happen","conventional-changelog-core","validate-npm-package-license", -"conventional-recommended-bump","conventional-changelog-angular","@octokit/plugin-enterprise-rest","multi-package", -"copy-anything","benny","bootstrap-less-port","html-template-tag","jit-grunt","less-plugin-autoprefix", -"mocha-teamcity-reporter","phin","read-glob","compile less","css nesting","css variable","gradients css", -"gradients css3","less compiler","less css","less mixins","less.js","lesscss","nested css","bootstrap css", -"bootstrap less","variables in css","css less","less-plugin-glob","browser-level","classic-level","abstract-level", -"airtap-playwright","@voxpelli/tsconfig","leveldb","napi-macros", -"abstract-leveldown","du","async-each","mkfiletree","readfiletree","prebuildify-ci","prebuildify-cross", -"level-concat-iterator","level-errors","level-supports","queue-microtask","deferred-leveldown","level-iterator-stream", -"memdown","trickle","airtap-sauce","run-parallel","encoding-down","simple-concat","fast-levenshtein","ld","levdist", -"levenshtein","levenshtein-component","levenshtein-edit-distance","talisman","distance","algorithm","comparison","edit", -"matching","binary-extensions","promise-retry","just-safe-set","fund","gitfund","crlf","gmail-send","jest-codemods", -"libphonenumber-metadata-generator","renamer","libphonenumber","fined","flagged-respawn","autolink","hashtag","link", -"mention","consolemock","staged","@samverschueren/stream-to-observable","is-observable","listr-silent-renderer", -"listr-update-renderer","listr-verbose-renderer","@lit-labs/ssr-dom-shim","@lit/reactive-element", -"@lit-internal/scripts","@lit-labs/testing","@webcomponents/template","connect-logger","http-auth","faye-websocket", -"livereload-js", -"resolve-pkg","matchdep","lws-basic-auth","lws-blacklist","lws-body-parser","lws-compress","lws-conditional-get", -"lws-cors","lws-json","lws-log","lws-mime","lws-range","lws-request-monitor","lws-rewrite","lws-spa","lws-static", -"full-stack","babel-preset-es2015-loose","browserify-derequire","grunt-es3-safe-recast","grunt-rollup","grunt-ts", -"rollupify","indexeddb","localstorage","websql","openurl","lockfile-lint-api","prettier-standard","lockfile check", -"lockfile lint","lock","stdlib","lodash-modularized","clonedeep","defaults","isempty","isequal","isfunction", -"isplainobject","isstring","omit","pick","uniq","uni-global","sprintf-kit","event-emitter","ncjsm","tape-index", -"terminal.js","update","refresh","overwrite","bar","date-format","streamroller","@log4js-node/sandboxed-module", -"grunt-contrib-jasmine","grunt-open","grunt-preprocess","math","int64","uid2","isemail", -"canonical-json","loopback-phase","strong-remoting","loopback-filters","strong-globalize","loopback-connector-remote", -"nodemailer-stub-transport","loopback-datasource-juggler","nodemailer-direct-transport","is-docker","loopback-boot", -"karma-es6-shim","loopback-context","strong-task-emitter","strong-error-handler","eslint-config-loopback","sqlserver", -"StrongLoop","mBaaS","steno","express-async-handler","@commitlint/prompt-cli","@typicode/eslint-config","embed", -"embedded","localStorage","sessionStorage","mru","@lucide/build-icons","@lucide/shared","@lucide/rollup-plugins", -"Lucide","HTML","Feather","Icons","Icon","SVG","Feather Icons","Fontawesome","Font Awesome","decree","manipulate","blur", -"sharpen","flip","mirror","hue","saturation","lightness","transparency","fade","opacity","contain","cover", -"@75lb/deep-merge","ansi-escape-sequences","create-mixin","load-module","sleep-anywhere","expand-home-dir", -"hast-util-to-mdast","mdast-util-to-markdown","short-unique-id","y18n", -"@types/columnify","@types/json-diff","@types/make-fetch-happen","@types/which","wizard","task graph", -"string manipulation","@favware/rollup-type-bundler","lavalink client","audio streaming","music bot","voice chat", -"discord integration","high performance","easy-to-use","feature-rich","seamless integration","community support", -"open-source","lavalink","path-type","intermediate","recursively","dingbat-to-unicode","lop", -"browserify-prepend-licenses","duck","hamjest","office","word","@nestjs/common","@nestjs/config","@nestjs/core", -"@nestjs/platform-express","@nestjs/swagger","@nestjs/throttler","@nestjs/typeorm","@yarnpkg/lockfile","uniqid", -"@codecov/bundle-analyzer","@nestjs/cli","@nestjs/testing","@testcontainers/mysql","@types/dasherize","crud", -"admin-panel","headless-cms","backend-framework","micro-backend","rapid-development","yaml-config","file-upload", -"api-generator","low-code","no-code","prototype","mvp","startup","baas","@next/eslint-plugin-next","@tabler/icons-react", -"eslint-config-next","postcss-preset-mantine","postcss-simple-vars", -"mantine","context","context-menu","context menu","react server components","user experience","usability","mapbox-gl", -"mapbox","legend","text processing","linkify-it","mdurl","punycode.js","uc.micro","markdown-it-for-inline", -"markdown-it-ins","markdown-it-mark","markdown-it-sub","ndoc","markdown-it-plugin","anchor","emoji","emojies","emoticon", -"emoticons","stream-from-to","pdf-text","rows","bunup","theredoc","markdown parser","solidjs","diacritics-map", -"lazy-cache","list-item","markdown-link","mixin-deep","repeat-string","document","glossary","heading","links", -"remarkableplugin","table of contents","table-of-contents","toc","micromark-core-commonmark", -"micromark-extension-directive","micromark-extension-gfm-autolink-literal","micromark-extension-gfm-footnote", -"micromark-extension-gfm-table","micromark-extension-math","micromark-util-types","gemoji", -"markdownlint-rule-extended-ascii","CommonMark","jsonpointer","run-con","@markedjs/eslint-config","@markedjs/testutils", -"esbuild-plugin-umd-wrapper","marked-highlight","marked-man", -"recheck","markup","v8-argv","inline-style-prefixer","react-event-listener","simple-assign","complex.js","escape-latex", -"javascript-natural-sort","typed-function","eigen","expr-eval","jsep","ndarray","ndarray-determinant","ndarray-gemm", -"ndarray-ops","ndarray-pack","numericjs","sylvester","zeros","mathematics","numeric","algebra","complex","fraction", -"charenc","md5sum","checksum","decode-named-character-reference","micromark-util-decode-numeric-character-reference", -"micromark-util-decode-string","micromark-util-normalize-identifier","micromark-util-symbol", -"unist-util-stringify-position","commonmark.json","micromark-build","mdast-util","mdast","tree", -"micromark-util-sanitize-uri","trim-lines","mdast-util-gfm","micromark-extension-gfm","mdn","mozilla","hashring", -"jackpot","InnoDB memcached API","failover","hashing","membase","memcache","nMemcached","@jsonjoy.com/fs-core", -"@jsonjoy.com/fs-fsa","@jsonjoy.com/fs-node","@jsonjoy.com/fs-node-builtins","@jsonjoy.com/fs-node-to-fsa", -"@jsonjoy.com/fs-node-utils","@jsonjoy.com/fs-print","@jsonjoy.com/fs-snapshot","@jsonjoy.com/json-pack", -"@jsonjoy.com/util", -"glob-to-regex.js","thingies","tree-dump","isomorphic-git","tslint-config-common","fs.js","in-memory","fsa", -"file system access","native file system","webfs","crudfs","opfs","casfs","content addressable storage", -"@types/lodash.isequal","fast-memoize","mem","nanocolors","memoization","gulp-exit","ram","errno","camelcase-keys", -"decamelize-keys","delete_comments","minimist-options","trim-newlines","cat","kitten","from2","lodash.clonedeepwith", -"stat-mode","ware","@metalsmith/drafts","assert-dir-equal","7zip-bin","node-7z","node-downloader-helper", -"@babel/plugin-syntax-import-meta","@surma/rollup-plugin-off-main-thread","asyncro", -"babel-plugin-transform-async-to-promises","babel-plugin-transform-replace-expressions","tiny-glob", -"@babel/plugin-proposal-throw-expressions","directory-tree","eslint-config-developit","npm-merge-driver-install", -"micro library","micromark-factory-space","micromark-util-chunked","micromark-util-combine-extensions", -"micromark-util-resolve-all","micromark-util-subtokenize","fill-range","bracket","character-class","expansion", -"extglobs","lookahead","lookaround","lookbehind","negate", -"negation","posix","star","@types/mime-db","mime-score","release-please","runmd","mime-db","mimetypes","Min Heap", -"min heap","maxheap","min-heap","heap","Binary Heap","binary-heap","heap data structure","min heap data structure", -"complete binary tree","heapify","heap sort","heapify up","heapify down","Priority Queue","priority queue", -"priorityqueue","priority-queue","priority q","priorityQ","efficient","priority","complete binary","extract min", -"min priority queue","efficient priority","ordering property","dynamic resizing","priority-based", -"priority-based processing","element priority","queue priority","sorted","decrease key","increase key","searching", -"@putout/minify","css-b64-images","html-minifier-next","montag","readjson","try-catch","try-to-catch","escover", -"eslint-plugin-putout","madrun","supertape","brace-expansion","signed","certificate","cert","@types/brace-expansion", -"make dir","dir","ufo", -"conditional-type-checks","mobservable","reactive","frp","functional-reactive-programming","state management", -"data flow","mobx-react-lite","expose-gc","browser-stdout","yargs-unparser","uslug","pidtree","rewiremock","unexpected", -"@mocha/docdash","jsdoc-ts-utils","unexpected-map","unexpected-set","unexpected-sinon","remark-inline-links", -"unexpected-eventemitter","fail-on-errors-webpack-plugin","@11ty/eleventy-plugin-inclusive-language","headless-chrome", -"chai-xml","test-console","xmllint","junit","lcov","define-data-property","gopd","has-property-descriptors", -"@types/es-value-fixtures","@types/for-each","@types/functions-have-names","@types/get-intrinsic","@types/gopd", -"@types/has-property-descriptors","@types/object-inspect","descriptor","define","swap","unix-dgram","unittest", -"gulp-coveralls","gulp-mocha-phantomjs","mockJSON","mockAjax","ipaddr.js","recursive-watch","fastest-validator","avsc", -"nats","etcd3","cbor-x","thrift","redlock","dd-trace","gc-stats","msgpack5","fakerator","kafka-node","v8-natives", -"@types/pino","notepack.io","benchmarkify","rhea-promise","@types/bunyan","jaeger-client","@types/ioredis", -"moleculer-repl","winston-context","event-loop-stats","node-nats-streaming","@icebob/node-memwatch","microservice", -"messagebus","services","micro","distributed","ender","timezone","olson","iana","zone","tz", -"monaco-languageserver-types","monaco-marker-data-provider","monaco-types","monaco-worker-manager", -"vscode-languageserver-textdocument","vscode-languageserver-types","vscode-uri","@remcohaszing/eslint", -"remark-preset-remcohaszing","yaml-language-server","monaco","monads","either","maybe","result", -"@codemirror/lang-javascript","@codemirror/theme-one-dark","@json2csv/plainjs","@lezer/highlight","basic-auth-connect", -"bootstrap-paginator-2","free-swig","gridfs-stream","mongodb-query-parser","renderjson-2","@cypress/code-coverage", -"assets-webpack-plugin","express-openid-connect","mongodb-memory-server","administration","GUI","manage","manage-mongo", -"phpmyadmin","UI","web-based","@mongodb-js/saslprep","mongodb-connection-string-url","aws4","socks","snappy", -"mocha-sinon","gcp-metadata","@types/kerberos","@types/saslprep","v8-heapsnapshot","@mongodb-js/zstd", -"@types/whatwg-url","@types/chai-subset","mongodb-client-encryption","@aws-sdk/credential-providers","kareem","mpath", -"mquery","sift","@ark/attest","@mongodb-js/mongodb-downloader","acquit","acquit-ignore","acquit-require", -"lodash.isequalwith","mongodb-runner","odm","datastore","backbone-callbacks","node-monitor","remote control","probe", -"JMX","core-monitor","dashboard","monitoring","control panel","@types/mongodb","monk-middleware-cast-ids", -"monk-middleware-fields","monk-middleware-handle-callback","monk-middleware-options","monk-middleware-query", -"monk-middleware-wait-for-connection","gitbook-cli","gitbook-plugin-anker-enable","gitbook-plugin-custom-favicon", -"gitbook-plugin-edit-link","gitbook-plugin-github","gitbook-plugin-prism","monk-middleware-debug","commist","help-me", -"mqtt-packet","worker-timers","number-allocator","aedes-cli","leaked-handles","mqtt-connection","@esm-bundle/chai", -"mqtt-level-store","esbuild-plugin-polyfill-node","publish/subscribe","@tediousjs/connection-string","msnodesql","tds", -"node-tds","node-sqlserver","msnodesqlv8", -"node-mssql","@types/statuses","headers-polyfill","rettime","until-async","@epic-web/test-server","@fastify/websocket", -"@types/json-bigint","@types/serviceworker","json-bigint","page-with","append-field","fs-temp","testdata-w3c-json-form", -"formdata","array-union","pend","release-it-pnpm","test report","html report","json to html","karma-story-reporter", -"mezr","web-animations-js","bin-packing","sqlstring","timezone-mock","urun","utest","sql-escaper","aws-ssl-profiles", -"generate-function","named-placeholders","poku","assert-diff","eslint-plugin-async-await","thenify","then","bats", -"switcher","couchdb","fastest-stable-stringify","rtl-css-js","iconista","libreact","pico","lite","in-js","styled", -"decorator","jsxstyle","rule","gitcloud","hasbin","page-icon","@types/hasbin","@types/page-icon","desktop","proxy-lib", -"font-finder","pbxproj-dom","@foxt/js-srp","simple-plist","ios-device-lib", -"email-validator","ios-sim-portable","plist-merge-patch","@nativescript/hook","@nativescript/doctor", -"nativescript-dev-xcode","ios-mobileprovision-finder","@nstudio/trapezedev-project","@rigor789/resolve-package-path", -"@types/plist","@types/retry","@types/byline","@types/pacote","@types/tabtab","@types/tunnel","@types/xml2js", -"@types/archiver","@types/qr-image","@types/marked-terminal","@types/proper-lockfile","@types/npmcli__arborist", -"@types/universal-analytics","afinn-165","afinn-165-financialmarketnews","apparatus","memjs","stopwords-iso", -"wordnet-db","browserfs","gulp-jasmine-browser","pegjs","uubench","natural language processing","artifical intelligence", -"Porter stemmer","Lancaster stemmer","bigram","trigram","quadgram","ngram","stemmer","bayes","classifier","phonetic", -"metaphone","inflector","Wordnet","tf-idf","logistic regression","doublemetaphone","double","jaro-winkler distance", -"levenshtein distance","string distance","part-of-speech tagger","Eric Brill","Brill tagger","sentiment analysis", -"maximum entropy modelling","secure-keys","nconf-yaml","key value store","plugabble","near social", -"bridge","near","binary-search-tree","exec-time","@fig/complete-commander","@golevelup/nestjs-discovery","nest", -"@postman/tough-cookie","chardet","liquid-json","postman-collection","postman-collection-transformer","postman-request", -"postman-runtime","serialised-error","@postman/shipit","dockerfile_lint","parse-gitignore","postman","rest-client", -"@apm-js-collab/tracing-hooks","@newrelic/security-agent","@tyriar/fibonacci-heap","import-in-the-middle", -"module-details-from-path","require-in-the-middle","@aws-sdk/s3-request-presigner","@matteo.collina/tspl", -"@newrelic/eslint-config","@newrelic/newrelic-oss-cli","@newrelic/test-utilities","@slack/bolt", -"@smithy/eventstream-codec","@smithy/util-utf8","git-raw-commits","self-cert","debugging","profiling","@panva/hkdf", -"openid-client","@edge-runtime/jest-environment","@types/nodemailer","@types/oauth","babel-plugin-jsx-pragmatic", -"babel-preset-preact","oauth2","nextauth","async handler","async functions","pipe","provider","TestBed","how-to", -"@ant-design/icons-angular","localhost","tunneling","webhook","deep-defaults","enqueue","function-source","minstache", -"sliced","mocha-generators","@nightwatch/chai", -"@nightwatch/html-reporter-template","@nightwatch/nightwatch-inspector","@types/selenium-webdriver","chai-nightwatch", -"devtools-protocol","didyoumean","nightwatch-axe-verbose","stacktrace-parser","mochawesome-merge", -"mochawesome-report-generator","nightwatchjs","selenium","webdriver","automated-testing","@sinonjs/text-encoding", -"@sinonjs/referee","jsdom-global","mochify","proxyquire-universal","proxyquireify","propagate","clang-format","n-api", -"napi","coffee-coverage","grunt-contrib-coffee","grunt-include-replace","internal","check-version-modules", -"used-deps-analyzer","container","skeleton","formate","dynamic-dedupe","filewatcher","tap-xunit","reload","subdir", -"char-regex","emojilib","skin-tone","sentences-per-line","emojis","smiley","smileys","smilies","ideogram","ideograms", -"fetch-blob","chai-iterator","stream-consumers","eslint-config-digitalbazaar","karma-tap-reporter","nodejs-websocket", -"worker-loader","aes","asn","asn.1","cbc","csr","des","gcm","hmac","pkcs", -"pki","prng","rc2","rsa","sha256","sha384","sha512","tls","x.509","x509","c2dm","fcm","messaging","geocoder","geocoding", -"geo","maps","mapquest","agol","arcgis","tomtom","exponential-backoff","require-inject","high5","html-parser", -"html5parser","htmljs-parser","htmlparser-benchmark","mocha-each","neutron-html5parser","biased-opener", -"strong-data-uri","v8-debug","v8-profiler","http mock","growly","shellwords","nexe","notification center", -"mac os x 10.8","terminal-notifier","windows 8 notification","toaster","ps-list","pty","pseudoterminal","forkpty", -"openpty","@node-red/editor-api","@node-red/runtime","@node-red/util","@node-red/nodes","node-red-admin","iot", -"sass-graph","async-foreach","stdout-stream","true-case-path","unique-temp-dir","long-timeout","sorted-array-functions", -"recurrent","rfc4122","fs.watch", -"watchfile","ngn","daemon","event logging","elevate","sudo","@mgcrea/eslint-config-node","@tsconfig/node-lts","excel", -"xls","jQuery","jQuery extend","inherit","combyne","clean-for-publish","libgit2","git2","@aws-sdk/client-sesv2", -"libbase64","libmime","libqp","nodemailer-ntlm-auth","proxy-test-server","Nodemailer","pstree.remy","undefsafe", -"autoload","multimeter","node-webkit","webkit","async-redis","express-ipfilter","express-ws","json-logic-js","json-sql", -"jsonpath-plus","line-reader","mocker-data-generator","node-ipc","promise-mysql","stjs","uuid-random","nolang", -"Programming","programming language","descriptive","5GL","json schema","Mehdi Salartayefeh","option parser","absolute", -"backslash","delimiter","file-path","forward","fp","slashes","trailing","unix","urix","normalization","normalisation", -"simplify","trim", -"canonical","mouse wheel","exit-hook","github-url-from-git","is-interactive","is-scoped","issue-regex","listr-input", -"new-github-release-url","npm-name","p-memoize","map-obj","write-package","archy","is-cidr","libnpmorg","libnpmpack", -"libnpmteam","fs-minipass","npm-profile","libnpmsearch","@sigstore/tuf","libnpmversion","@npmcli/config", -"npm-audit-report","minipass-pipeline","npm-user-validate","tiny-relative-date","fastest-levenshtein", -"json-parse-even-better-errors","@npmcli/git","@npmcli/docs","@tufjs/repo-mock","@npmcli/mock-globals", -"ajv-formats-draft2019","package manager","giturl","throat","semver-diff","preferred-pm","callsite-record", -"rc-config-loader","outdated","updates","updating","updater","@trivago/prettier-plugin-sort-imports", -"@types/chai-string","@types/cli-table","@types/ini","@types/jsonlines","@types/npm-registry-fetch", -"@types/parse-github-url","@types/semver-utils","@types/update-notifier","eslint-config-raine","fp-and-or","jsonlines", -"prompts-ncu","semver-utils","typescript-json-schema","verdaccio","vite-bundle-analyzer","vite-node", -"upgrade","versions","esbuild-node-externals","eslint-config-tc","eslint-config-typescript-tc", -"npm-package-json-lint-config-tc","auditor","mutate-fs","minipass-fetch","minizlib","registry","string.prototype.padend", -"eslint-config-mysticatea","commandline","npm-scripts","run","read-package-json-fast","script","string convert", -"yarn to npm","npm upgrade","babel-preset-latest","npm-cli","are-we-there-yet","mocha-jsdom","cvss", -"nodesecurity-npm-utils","gluegun","nuke","money","percentage","a-sync-waterfall","asap","mocha-phantomjs-core", -"mocha-phantomjs-istanbul","module-alias","node-libs-browser","css4","node-machine-id","resolve.exports", -"@yarnpkg/parsers","lines-and-columns","@napi-rs/wasm-runtime","Mobile","caching-transform","istanbul-lib-hook", -"istanbul-lib-processinfo","node-preload","process-on-spawn","spawn-wrap","any-path","@readme/openapi-parser", -"remove-undefined-objects","@readme/oas-examples","@types/json-schema-merge-allof","@types/memoizee","apis", -"openapi initiative","openapi specification","openapi spec","openapi document","oai","@readme/postman-to-openapi", -"@types/swagger2openapi", -"prollyfill","gulp-exec","@pkgjs/support","error-cause","globalthis","has-tostringtag","util.inspect","indexof", -"Object.keys","@mariocasciaro/benchpress","access","bean","notation","segment","es-object-atoms","Object.assign", -"$.extend","_.extend","Underscore","Object.entries","Object.values","entries","ES8","ee-first","wrappy", -"@blakeembrey/deque","@blakeembrey/template","epoll","@types/mock-require","gpio","interrupt","raspberry","raspi","pi", -"beaglebone","beaglebone-black","default-browser","define-lazy-prop","is-in-ssh","wsl-utils","opens","launch","start", -"xdg-open","xdg","default","urls","bath-es5","dereference-json-schema","axios-mock-adapter","json-schema-deref-sync", -"open api","computer","quadrocopter","countrynames","hashish","last-call-webpack-plugin","prelude-ls","deep-is","levn", -"livescript","option parsing","stdin-discarder","transform-tty", -"sequencify","stream-consume","sql-ddl-sync","sql-query","redshift","home","tmpdir","ps1","template string", -"template literal","styleable","scrollbar","scrollbars","scroll","@vscode/vsce","yauzl-promise","@types/is-ci", -"@types/yauzl-promise","limiter","vscode","addlistener","addeventlistener","waits","resolved","race","fulfilled", -"concurrency","ratelimit","fifo","invalidate","out","plunder","metadata","@pa11y/html_codesniffer","eslint-config-pa11y", -"proclaim","aria","compliance","headless","htmlcs","standards","WCAG","sigstore","npm-registry-mock","capture-website", -"filenamify-url","unused-filename","@types/png.js","png.js","page","screenshots","screengrab","striptags","para", -"server-side","idb-keyval","react-native-crypto-js","@saithodev/semantic-release-backmerge","@types/facebook-js-sdk", -"babel-plugin-transform-inline-environment-variables","jasmine-spec-reporter","jsdoc-babel","parse-server", -"vite-plugin-commonjs", -"WHATWG","html parser","html5 parser","html serializer","htmlserializer","fast-url-parser","pause", -"chai-connect-middleware","username","passport-oauth1","base64url","exist","isabsolute","is-absolute","zeptomatch", -"@rkusa/linebreak","opentype.js","jpeg-exif","linebreak","png-js","blob-stream","brace","pdfjs-dist","pdf writer", -"pdf generator","call-delayed","chai-increasing","pg-pool","pg-protocol","pg-types","pgpass","pg-cloudflare", -"@cloudflare/vitest-pool-workers","@cloudflare/workers-types","pg-copy-streams","libpq","postgre","rdbms", -"flow-copy-source","npm-watch","connect-phonegap","phonegap-build","phonegap build","phonegap/build","pinkie-promise", -"denodify","atomic-sleep","on-exit-leak-free","pino-abstract-transport","pino-std-serializers","quick-format-unescaped", -"real-require","@pinojs/redact","sonic-boom","thread-stream","@types/flush-write-stream","bole","fastbench", -"flush-write-stream","midnight-smoker","pino-pretty","steed","postinstall","lifecycle", -"devpostinstall","entry","irregular-plurals","plurals","count","irregular","noun","nouns","@pm2/agent","@pm2/js-api", -"@pm2/io","@pm2/pm2-version-check","@pm2/blessed","cli-tableau","fclone","pidusage","pm2-axon","pm2-axon-rpc", -"pm2-deploy","pm2-multimeter","vizion","logs","kraken","load balancer","lb","load-balancer","kubernetes","k8s", -"pm2-docker","runtime","graceful","node-pm2","production","keymetrics","node.js monitoring","strong-pm","supervisord", -"pm2.io","ghost production","process manager","probes","keep process alive","process configuration","clustering", -"cluster cli","dev ops","tap-dot","PNG","js-png","node-png","png-parse","pnpm10","dependency manager","hardlinks", -"prune","rapid","symlinks","uninstall","poe","economy","ninja","poe.ninja","poe economy","path of exile", -"path of exile economy","path of exile ninja","poe economy api","path of exile api","poe.watch api","poe.ninja api", -"babel-plugin-preval","pushstate-server","tsgen","glamor","inline-styles","color manipulate","color manipulation", -"curried color manipulation","@popperjs/bundle","@popperjs/eslint-config-popper","@popperjs/test","@popperjs/test-utils", -"nuget-publish","popperjs","position","attached","ports","source map","manipulation","jison-gho","calculation","calc", -"postcss-reporter","read-cache","eslint-config-problems","@csstools/utilities","comma","hsl","hsla","hwb","rgba", -"caniuse-api","@types/caniuse-api","pixrem","pleeease-filters","postcss-apply","postcss-attribute-case-insensitive", -"postcss-color-function","postcss-color-gray","postcss-color-hex-alpha","postcss-color-hsl","postcss-color-hwb", -"postcss-color-rebeccapurple","postcss-color-rgb","postcss-color-rgba-fallback","postcss-font-family-system-ui", -"postcss-font-variant","postcss-image-set-polyfill","postcss-initial","postcss-media-minmax", -"postcss-pseudo-class-any-link","postcss-pseudoelements","postcss-replace-overflow-wrap","postcss-selector-matches", -"postcss-selector-not","cssrecipes-custom-media-queries","cssrecipes-defaults","cssrecipes-grid", -"cssrecipes-utils","cssrecipes-vertical-rhythm","eslint-config-i-am-meticulous","isogram","markdown-it-toc-and-anchor", -"metalsmith-collections","metalsmith-filenames","metalsmith-md","metalsmith-react","metalsmith-rename","metalsmith-rss", -"metalsmith-url","metalsmith-watch","nano-logger","npmpub","postcss-browser-reporter","react-svg-inline","to-slug-case", -"webpack-nano-logs","cssnext","@csstools/cascade-layer-name-parser","at-rule","atrule","csswg","media","queries", -"declarative","selectors","empty","at-rules","@keyframes","@counter-style","flexbugs","flex","postcss-less", -"postcss-styl","quickapp","PHP","sss","image-set","node modules","postcssrc","postcss.config.js","midas","postcss-short", -"postcss-dark-theme-class","cssnano-utils","font-family","font-weight","@types/cssesc","css-modules", -"@csstools/selector-resolve-nested","atrules","children","nestings","@csstools/normalize.css","postcss-browser-comments", -"sanitize.css","@csstools/postcss-tape","normalizes","fixes","@csstools/postcss-alpha-function", -"@csstools/postcss-color-function","@csstools/postcss-color-function-display-p3-linear", -"@csstools/postcss-color-mix-function","@csstools/postcss-color-mix-variadic-function-arguments", -"@csstools/postcss-content-alt-text","@csstools/postcss-contrast-color-function", -"@csstools/postcss-exponential-functions","@csstools/postcss-font-format-keywords","@csstools/postcss-gamut-mapping", -"@csstools/postcss-gradients-interpolation-method","@csstools/postcss-hwb-function","@csstools/postcss-ic-unit", -"@csstools/postcss-initial","@csstools/postcss-light-dark-function","@csstools/postcss-logical-float-and-clear", -"@csstools/postcss-logical-overflow","@csstools/postcss-logical-overscroll-behavior","@csstools/postcss-logical-resize", -"@csstools/postcss-logical-viewport-units","@csstools/postcss-media-minmax", -"@csstools/postcss-media-queries-aspect-ratio-number-values","@csstools/postcss-mixins","@csstools/postcss-nested-calc", -"@csstools/postcss-normalize-display-values","@csstools/postcss-oklab-function", -"@csstools/postcss-position-area-property","@csstools/postcss-property-rule-prelude-list", -"@csstools/postcss-random-function","@csstools/postcss-relative-color-syntax","@csstools/postcss-scope-pseudo-class", -"@csstools/postcss-sign-functions","@csstools/postcss-stepped-value-functions", -"@csstools/postcss-syntax-descriptor-syntax-production","@csstools/postcss-system-ui-font-family", -"@csstools/postcss-text-decoration-shorthand","@csstools/postcss-trigonometric-functions", -"@csstools/postcss-unset-value","css-blank-pseudo","css-has-pseudo","css-prefers-color-scheme","postcss-clamp", -"postcss-dir-pseudo-class","postcss-double-position-gradients","postcss-focus-within","postcss-gap-properties", -"postcss-lab-function","postcss-logical","postcss-overflow-shorthand","postcss-page-break","postcss-place","lists", -"postcss-syntax","@jsopen/objects","doublylinked","lightning-pool","postgres-bytea","power-tasks","putil-promisify", -"putil-varhelpers","transformations","processor","ltgt","vuvuzela","spark-md5","level-codec","fetch-cookie", -"double-ended-queue","level-write-stream","empower","power-assert-formatter","universal-deep-strict-equal","dereserve", -"licensify","package-json-filterify","precommit","@actions/github","@actions/glob", -"babel-plugin-transform-rename-properties","errorstacks","kolorist","virtual dom","dom diff","binary-searching", -"jest-light-runner","jest-specific-snapshot","@vue/language-plugin-pug","prettier-plugin","imports","organize-imports", -"glob-fs","humanized","si","locale","localized","renderkid","jitter","exception","error-handling","parse-ms", -"milliseconds","period","hrtime","@pkgr/core","mercurial","hg","vcs","@prisma/config","@prisma/engines", -"@prisma/studio-core","ohash","package-up","ts-pattern","@prisma/dmmf","line-replace","@prisma/debug","openapi-fetch", -"xdg-app-paths","@libsql/client","@prisma/client","@prisma/migrate","get-port-please","@prisma/generator", -"@prisma/internals","checkpoint-client","openapi-typescript","@prisma/fetch-engine","@prisma/get-platform", -"@types/better-sqlite3","@prisma/adapter-libsql","@prisma/credentials-store", -"@prisma/management-api-sdk","@prisma/driver-adapter-utils","@prisma/client-generator-registry", -"@opentelemetry/context-async-hooks","ORM","Prisma","Prisma CLI","prisma2","JS","TS","SQL","SQLite","Postgres", -"PostgreSQL","CockroachDB","MySQL","MariaDB","MSSQL","SQL Server","SQLServer","MongoDB","MCP","danger","docdash", -"gulp-terser","regexpp","webfont","prism","node-rest-client","URIjs","svn","customize","sisteransi","interact", -"uglifyify","uglifyjs","alpha-sort","html-event-attributes","mdast-zone","svg-element-attributes","svg-event-attributes", -"@protobufjs/aspromise","@protobufjs/base64","@protobufjs/codegen","@protobufjs/eventemitter","@protobufjs/fetch", -"@protobufjs/float","@protobufjs/inquire","@protobufjs/path","@protobufjs/pool","@protobufjs/utf8","browserify-wrap", -"git-semver-tags","protobuf","protocol-buffers","serialization","@types/q","@types/jasminewd2","gulp-clang-format", -"natives","tslint-eslint-rules","vrsource-tslint-rules","webdriverjs","basic-auth-parser", -"@types/args","squid","privoxy","mod_proxy","via","x-forwarded-for","fill-keys","module-not-found-error", -"native-hello-world","cp-sugar","elegant-status","pug-load","pug-lexer","pug-linker","pug-parser","pug-filters", -"pug-runtime","pug-code-gen","pug-strip-comments","jstransformer-uglify-js","jstransformer-markdown-it","tap-bail","idn", -"idna","dns","domain","chromium-bidi","puppeteer-core","typed-query-selector","purge","fluent","qr code", -"@browserify/envify","@browserify/uglifyify","common-shakeify","has-override-mistake","unassertify", -"decode-uri-component","filter-obj","split-on-first","param","parameter","searchparams","retape","tap-esm","synchronous", -"FIFO","lifo","LIFO","work","queue js","job queue","job scheduling","task queue","ordered","iterate","linked list", -"dequeue","shift","item","parchment","quill-delta","@types/highlight.js","transpile-webpack-plugin", -"eslint-import-resolver-webpack","fuzzysort","grunt-search","eslint-plugin-json-es","@qunitjs/browserstack-runner", -"dom-element-descriptors","@types/qunit","@release-it-plugins/lerna-changelog","qunit-plugin","exists-stat", -"js-reporters","browserstack-runner","testling","requestAnimationFrame","babel-plugin-import-export-rename","envvar", -"sanctuary","sanctuary-identity","xyz","tacit","point-free","curried","fantasy-land","words","sample","timed-out", -"exceptions","sentry","unpipe","@rc-component/father-plugin","father-build","rc-test","react-slider","slider", -"react-tooltip","@types/responselike","react-addon","@apollo/react-common","@apollo/react-components", -"@apollo/react-hoc","@apollo/react-hooks","@apollo/react-ssr","@restart/ui","@restart/hooks","uncontrollable", -"prop-types-extra","ecosystem-react","@icons/material","material-colors","reactcss","@case/eslint-config", -"@storybook/addon-centered","babel-plugin-transform-rename-import","chai-spies","jsx-loader","react-context", -"react-mark","testdom","color picker","sketch","photoshop","html-webpack-tags-plugin","copy to clipboard", -"@react-docgen/cli", -"date-fns-tz","is-root","detect-port-alt","@react-dnd/invariant","@react-dnd/shallowequal","dnd-core","@types/doctrine", -"documentation-generation","attr-accept","file-selector","@babel/plugin-proposal-do-expressions", -"@babel/plugin-proposal-logical-assignment-operators","@babel/plugin-proposal-pipeline-operator","@commitlint/prompt", -"@size-limit/webpack-why","imagemin-cli","webpack-blocks","jest-fetch-mock","settle-promise","overlay","redbox","crash", -"react-side-effect","eslint-config-nfl","karma-chai-sinon","karma-html-reporter","nfl","head","title","meta","noscript", -"jest-fixed-jsdom","form-validation","enzyme-adapter-react-15","react-mount","yarn-deduplicate","live","hot", -"use-sync-external-store","@babel/plugin-proposal-async-generator-functions","eslint-plugin-jest-dom","viewport", -"intersection","observer","lazy load","inview","useInView","useIntersectionObserver","@formatjs/ecma402-abstract", -"@formatjs/icu-messageformat-parser","@formatjs/intl","intl-messageformat","eslint-config-es5","rehype-starry-night", -"exenv","@webcomponents/custom-elements","dialog","babel-browser-transform","inject-loader","isparta-loader", -"karma-jasmine-diff-reporter","lodash.range","transitiongroup","spring", -"tween","motion","transition","nullthrows","metro-runtime","hermes-compiler","metro-source-map","flow-enums-runtime", -"@react-native/codegen","@react-native/js-polyfills","@react-native/gradle-plugin","@react-native/assets-registry", -"@react-native/normalize-colors","@jest/create-cache-key-function","@react-native/virtualized-lists", -"babel-plugin-syntax-hermes-parser","@react-native/community-cli-plugin","app-framework","mobile-development", -"@react-native-community/cli","@react-native/eslint-config","@react-native/typescript-config","react-native-builder-bob", -"react-native-component","keychain","svg2ttf","fontisto","evil-icons","feather-icons","oslllo-svg-fixer", -"svgicons2svgfont","simple-line-icons","@entypo-icons/core","css-social-buttons","osx","macos", -"@cmfcmf/docusaurus-search-local","react-transform-hmr","currency","number-format","require-hijack","onclick","outside", -"onclickoutside","@rollup/plugin-sucrase","eslint-plugin-ft-flow","hermes-eslint","@types/use-sync-external-store", -"matchmediaquery","@types/hyphenate-style-name","@types/match-media-mock","@types/matchmediaquery","match-media-mock", -"media queries","respond","matchMedia","wireit","premove","redux-devtools","redux-devtools-dock-monitor", -"redux-devtools-log-monitor","combobox","multiselect","json2mq", -"@playwright/experimental-ct-react","foundation-apps","slick-carousel","why-did-you-update","slick","carousel", -"Image slider","orbit","@tippyjs/react","@vxna/mini-html-webpack-template","clipboard-copy","common-dir", -"es6-object-assign","function.name-polyfill","glogg","javascript-stringify","jss","jss-plugin-camel-case", -"jss-plugin-compose","jss-plugin-default-unit","jss-plugin-global","jss-plugin-isolate","jss-plugin-nested","listify", -"mini-html-webpack-plugin","q-i","qss","react-docgen-annotation-resolver","react-docgen-displayname-handler", -"react-group","strip-html-comments","type-detect","@types/buble","@types/copy-webpack-plugin","@types/escodegen", -"@types/hash-sum","@types/keymirror","@types/markdown-to-jsx","@types/terser-webpack-plugin","@types/type-detect", -"@types/webpack-dev-server","deabsdeep","deepfreeze","dog-names","eslint-config-tamia","keymirror","strip-shebang", -"scalable vector graphics","svginjector","TapEventPlugin","300ms","react-testing","@4tw/cypress-drag-drop", -"vite-plugin-istanbul","toast","alert","snackbar","message","commoner","jstransform","coverify","es3ify","esprima-fb", -"grunt-jest", -"jasmine-tapreporter","populist","transition-group","transitions","react-codemirror","eslint-config-react", -"eslint-plugin-relay","@babel/preset-stage-2","jest-environment-puppeteer","@babel/plugin-transform-flow-comments", -"scrolling","infinite","virtualized","fixed","es6-module-jstransform","@storybook/addon-storysource","customize-cra", -"holderjs","react-prism","esbuild-plugin-alias","tap-mocha-reporter","line by line","repl","tiny-invariant", -"@types/esprima","flow-parser","refactoring","pretty-printing","prepare","change-emitter","higher-order", -"microcomponentization","composition","lister","@redis/bloom","@redis/client","@redis/json","@redis/search", -"@redis/time-series","@redocly/openapi-core","@cfaester/enzyme-adapter-react-18","docusaurus-theme-redoc", -"docusaurus-plugin-redoc","@docusaurus/theme-common","api-doc","docusaurus-preset","netlify-plugin-cache","predictable", -"replay","elm","just-curry-it","reduce-reducers","@vitest/coverage-c8","eslint-config-unicorn-camelcase", -"flux-standard-action","actions","insert-line","redux-immutable","lodash-webpack-plugin","@redux-saga/core","saga", -"effects","side effects","thunk", -"redux-middleware","ecmarkup","gulp-emu","gulp-live-server","gulp-sequence","reflect","regenerator","abstract", -"is-hidden","rehype-plugin","is-absolute-url","external","hast-util-properties-to-mdx-jsx-attributes", -"eslint-config-remcohaszing","snapshot-fixtures","@nodeutils/defaults-deep","@phun-ky/typeof","issue-parser", -"wildcard-match","@octokit/request-error","mentoss","mock-stdio","remark-preset-webpro","distribution","intern", -"markdown-extensions","unified-args","footnote","remark-plugin","remark-slug","mermaid-isomorphic", -"hast-util-from-html-isomorphic","mermaidjs","remark-comment-config","remark-contributors","remark-heading-gap", -"remark-license","remark-lint-definition-spacing","remark-lint-fenced-code-flag","remark-lint-file-extension", -"remark-lint-final-definition","remark-lint-first-heading-level","remark-lint-heading-style", -"remark-lint-no-consecutive-blank-lines","remark-lint-no-emphasis-as-heading","remark-lint-no-file-name-articles", -"remark-lint-no-file-name-consecutive-dashes","remark-lint-no-file-name-irregular-characters", -"remark-lint-no-file-name-mixed-case","remark-lint-no-file-name-outer-dashes","remark-lint-no-heading-indent", -"remark-lint-no-heading-punctuation","remark-lint-no-missing-blank-lines","remark-lint-no-multiple-toplevel-headings", -"remark-lint-no-shell-dollars","remark-lint-no-table-indentation","remark-lint-no-tabs", -"remark-lint-ordered-list-marker-value","remark-lint-table-pipe-alignment","remark-retext","retext-english", -"retext-preset-github","remark-lint-correct-media-syntax","remark-lint-definition-sort", -"remark-lint-link-title-style","remark-lint-maximum-heading-length","remark-lint-maximum-line-length", -"remark-lint-mdx-jsx-attribute-sort","remark-lint-mdx-jsx-no-void-children","remark-lint-mdx-jsx-quote-style", -"remark-lint-mdx-jsx-self-close","remark-lint-mdx-jsx-shorthand-attribute","remark-lint-mdx-jsx-unique-attribute-name", -"remark-lint-media-style","remark-lint-no-duplicate-defined-urls","remark-lint-no-duplicate-headings-in-section", -"remark-lint-no-empty-url","remark-lint-no-heading-like-paragraph","remark-lint-no-hidden-table-cell", -"remark-lint-no-html","remark-lint-no-paragraph-content-indent","remark-lint-no-reference-like-url", -"remark-lint-no-unneeded-full-reference-image","remark-lint-no-unneeded-full-reference-link","retext-preset-wooorm", -"wooorm","autolinker","caseless","aws-sign2","oauth-sign","tunnel-agent","forever-agent","har-validator","is-typedarray", -"http-signature","taper","karma-cli","stealthy-require","request-promise-core","thenable","index.js", -"@typescript-eslint/eslint-plugin-tslint","@typescript/analyze-trace","eslint-plugin-typescript","micro-memoize", -"ResizeObserver","path-parse","supports-preserve-symlinks-flag","copy-dir","adjust-sourcemap-loader","cls-hooked", -"myrmidon","conventional-changelog-eslint","eslint-config-incredible","eslint-plugin-censor","eslint-plugin-no-secrets", -"eslint-plugin-scanjs-rules","fatum","node-package-tester","semantic-release-telegram","vesta","documentate", -"autodocumentate","ewma","spdy","restify-errors","escape-regexp-component","watershed", -"restify-clients","autocannon-compare","DTrace","quit","shutdown","sigterm","sigint","terminate","kill","NoSQL","reql", -"query language","leak","deep-copy","fast-copy","fastest-json-copy","nano-copy","plain-object-clone","deep-clone", -"deepclone","deepcopy","performant","fastclone","fastcopy","fast-clone","fast-deep-clone","fast-deep-copy", -"package-json-from-dist","rm -rf","rm -fr","prebuild","run-script-os","targetpractice","Automation","mouse","pixel", -"recognition","autohotkey","machine","learning","@mermaid-js/mermaid-cli","@shikijs/vitepress-twoslash", -"@vue/language-server","acorn-import-assertions","date-time","flru","npm-audit-resolver","wasm-pack","bundling", -"rollup-plugin","js-cleanup","rollup-plugin-jsx","sourcemap-validator","removal","@types/d3-drag","@types","commenting", -"package-name-regex","spdx-expression-validate","spdx-satisfies","gulp-conventional-changelog","rollup-plugin-prettier", -"rollup-plugin-strip-banner","browserify-fs", -"buffer-es6","process-es6","sourceMappingURL","@types/find-cache-dir","@types/graphlib","graphlib","rollup-plugin-re", -"@types/d3-array","@types/d3-color","@types/d3-force","@types/d3-hierarchy","@types/d3-scale","@types/d3-shape", -"visualizer","treemap","sunburst","diagram","@ampproject/toolbox-optimizer","@babel/plugin-syntax-bigint", -"@capsizecss/metrics","@edge-runtime/cookies","@edge-runtime/ponyfill","@edge-runtime/primitives","@napi-rs/triples", -"@next/polyfill-module","@next/polyfill-nomodule","@next/react-refresh-utils","@next/swc","@taskr/clear","@taskr/esnext", -"@types/amphtml-validator","@types/babel__generator","@types/ci-info","@types/content-disposition", -"@types/express-serve-static-core","@types/fresh","@types/lodash.curry","@types/path-to-regexp","@types/platform", -"@types/send","@types/text-table","@types/ua-parser-js","amphtml-validator","async-sema","cli-select","comment-json", -"edge-runtime","ignore-loader","lodash.curry","native-url","server-only","string-hash","taskr","unistore","watchpack", -"ember-cli-progress","rtl","ltr","run series","LINQ","FRP","Reactive","Rx","RxJS", -"@angular-devkit/build-optimizer","@types/source-map","check-side-effects","rollup-plugin-alias","rollup-plugin-inject", -"tslint-etc","tslint-no-toplevel-property-access","tslint-no-unused-expression-chai","web-streams-polyfill","ReactiveX", -"ReactiveExtensions","Streams","Observables","Stream","buffer allocate","node security","uninitialized","mock-env", -"dist-tag","prepublish","@sailshq/lodash","@sailshq/router","captains-log","common-js-file-extensions","@sailshq/csurf", -"flaverr","i18n-2","include-all","machine-as-action","machinepack-process","machinepack-redis","merge-defaults", -"merge-dictionaries","parley","rttc","sails-generate","sails-stringfile","skipper","sort-route-addresses","whelk", -"machinepack-fs","@sailshq/request","root-require","sails-hook-orm","sails-hook-sockets","sails.io.js", -"session-file-store","mvc","web-framework","sailsjs","sails.js","truncate-utf8-bytes","mktemp","filename","parse-srcset", -"eslint-config-apostrophe","material-components-web","node-sass-glob-importer","markdown-model","bare-script", -"element-model","food","drink","helpful", -"opensourcesoftware","teaching","experimentation","applications","ec","ecdh","ecdsa","seed","@bazel/runfiles", -"@semantic-release/error","aggregate-error","env-ci","find-versions","git-log-parser","import-from-esm","p-each-series", -"file-url","mockserver-client","p-retry","stream-buffers","author","@fluentui/react-component-event-listener", -"@fluentui/react-component-ref","@semantic-ui-react/event-stack","keyboard-key","@artsy/fresnel","@babel/standalone", -"@percy/cli","@percy/cypress","anchor-js","babel-plugin-filter-imports","babel-plugin-transform-react-handled-props", -"babel-plugin-universal-import","chai-enzyme","react-ace","react-codesandboxer","react-source-render","react-static", -"react-static-routes","react-universal-component","satisfied","semantic-ui-css","ta-scripts", -"terser-webpack-plugin-legacy","eslint-config-standard-jsx","standard-engine","bikeshed","semicolon","@hapi/joi","eraro", -"fast-safe-stringify","gate-executor","gubu","jsonic","lodash.defaultsdeep","optioner","ordu","patrun","rolling-stats", -"seneca-transport","use-plugin","@seneca/test-plugin","bench","gex", -"lab-transform-typescript","seneca-entity","seneca-error-test","seneca-joi","seneca-promisify","summary","micro-service", -"micro-services","micro service","minimum","viable","product","Sentimental","nlp","wkx","dottie","sequelize-pool", -"toposort-class","retry-as-promised","ibm_db","mariadb","p-props","p-settle","node-hook","pg-hstore","chai-datetime", -"snowflake-sdk","@octokit/types","js-combinatorics","esdoc-standard-plugin","esdoc-inject-style-plugin", -"esdoc-ecmascript-proposal-plugin","semantic-release-fail-on-major-bump","db2","snowflake","object relational mapper", -"@serialport/stream","@serialport/binding-mock","@serialport/bindings-cpp","@serialport/parser-ready", -"@serialport/parser-regex","@serialport/parser-cctalk","@serialport/parser-readline","@serialport/parser-delimiter", -"@serialport/parser-byte-length","@serialport/parser-spacepacket","@serialport/parser-slip-encoder", -"@serialport/parser-packet-length","@serialport/parser-inter-byte-timeout","ccTalk","com port","COM","data logging", -"hardware","modem","nodebots","RFID","sensor","serial port","sms gateway","sms","UART","update-check","@zeit/schemas", -"is-port-reachable","@vercel/style-guide","@types/serve-handler","temp-path","favicon","@serverless/utils", -"@commitlint/cz-commitlint","@serverless/test","serverless","serverless plugins","aws lambda","amazon web services", -"serverless.com","@aws-cdk/aws-lambda-python-alpha","@aws-sdk/client-dynamodb","@aws-sdk/client-eventbridge", -"@aws-sdk/client-lambda","@aws-sdk/client-sns","@aws-sdk/client-sqs","@aws-sdk/client-sts","@aws-sdk/lib-dynamodb", -"@aws-sdk/util-dynamodb","aws-cdk-lib","aws-iot-device-sdk","caporal","json-format-highlight", -"@types/aws-iot-device-sdk","@types/aws4","esbuild-runner","jsii","jsii-diff","jsii-docgen","jsii-pacmak","eventbridge", -"flow-remove-types","isequalwith","@img/colour","emnapi","exif-reader","@cpplint/cli","@emnapi/runtime", -"@img/sharp-libvips-dev","@img/sharp-libvips-win32-x64","@img/sharp-libvips-dev-wasm32","@img/sharp-libvips-win32-ia32", -"@img/sharp-libvips-win32-arm64","dzi","thumbnail","libvips","vips","quote","shelljs-changelog","shelljs-release", -"travis-check-changes","makefile","clean-publish","short","tiny","bitly","shorten","tinyid","should-equal", -"should-format","should-type", -"should-type-adaptors","should-util","eslint-config-shouldjs","grunt-endline","quiet-grunt","semver-sort", -"shelljs-plugin-open","transforms","@kwsites/file-exists","@kwsites/promise-deferred","@kwsites/promise-result", -"@simple-git/babel-config","source control","custom-event","js-correct-lockfile","rollup-plugin-analyzer", -"eslint-config-important-stuff","@sinonjs/samsam","@sinonjs/eslint-plugin-no-prototype-methods","@studio/changes", -"esbuild-plugin-istanbul","clock","vendor","mocks-and-spies","crypt3","fs-ext","express-json5","render-readme", -"sinopia-htpasswd","browserify-handlebars","@polka/url","totalist","bytes-iec","nanospinner","budget", -"performance budget","file size","directory size","get size","qpass","amazon-cognito-identity-js","basic-node-server", -"skapi","seperator","is-fullwidth-code-point","random-item","get-folder-size","js-extend","math-sum","prettier-bytes", -"tablify","slow","github-changes","urlify","standard-json","pretty output","snazzy standard","standard pretty", -"stylish for standard","stylish formatter","stylish reporter","stylish standard","axios-ntlm","xml-crypto", -"@types/sax","base64id","socket.io-adapter","io","@socket.io/component-emitter","eventsource","sockjs","separated", -"@anvilco/apollo-server-plugin-introspection-metadata","@graphql-tools/load-files","@graphql-tools/merge", -"@graphql-tools/utils","graphql-scalars","json-stringify-pretty-compact","microfiber","bdd-lazy-var","introspection", -"introspection-query","string-to-stream","binary-split","callback-stream","gulp-benchmark","imageinfo","prettydiff", -"sprity-css","sprity-lwip","object-stream","through2-spy","sprites","coordinates","css-sprite","asn1","bcrypt-pbkdf", -"integrity","subresource integrity","sri","sri hash","sri string","sri generator","encrypt","st","firestore", -"shuruhatik","long-stack-traces","version-guard","run-parallel-limit","conventional-changelog-config-spec", -"dotgitignore","stringify-package","std-mocks","recommended","check-more-types","lazy-ass","ban-sensitive-files", -"deps-ok","dont-crack","git-issues","pre-git","simple-commit-message","winser","modern-syslog","etsy","metric", -"aggregation", -"@vitest/expect","@storybook/global","store2","exsolve","empathic","picoquery","modern-tar","fetch-retry", -"@types/npmlog","@vitest/utils","launch-editor","unique-string","@vitest/mocker","bundle-require","flush-promises", -"@yarnpkg/libzip","browser-dtector","react-inspector","@react-aria/tabs","deep-object-diff","@react-aria/utils", -"@polka/compression","@types/detect-port","@ngard/tiny-isequal","@react-aria/toolbar","@react-stately/tabs", -"@react-types/shared","@storybook/docs-mdx","get-npm-tarball-url","use-resize-observer","@radix-ui/react-slot", -"@react-aria/landmark","@react-aria/overlays","@types/pretty-hrtime","@discoveryjs/json-ext","lazy-universal-dotenv", -"react-transition-state","@react-stately/overlays","@react-aria/interactions","react-syntax-highlighter", -"@radix-ui/react-scroll-area","@devtools-ds/object-inspector","@types/react-syntax-highlighter", -"@aw-web-design/x-default-browser","@fal-works/esbuild-plugin-global-externals","design-systems","component-testing", -"@glen/jest-raw-loader","@storybook/addon-onboarding","@storybook/addon-storyshots", -"@storybook/addon-storyshots-puppeteer","@storybook/blocks","@storybook/test","eslint-config-torchbox","storybookjs", -"patternlab","django","django-pattern-library","django-templates","jinja2","findit2","inside","funsert","into-stream", -"Assert","music-metadata","livestream","livestreaming","gulp-rimraf","string.js","stringjs","S","s","codsen-utils", -"ranges-apply","ranges-push","string-left-right","ast-monkey-traverse","ranges-invert","jsp","mixed","stri","xhtml", -"get-east-asian-width","visual","columns","fullwidth","full-width","wcswidth","full","cjk","chinese","japanese","korean", -"fixed-width","east-asian-width","undici-types","payment processing","credit cards","generator-loopback", -"loopback-sdk-angular-cli","nodefly-register","strong-agent","strong-arc","strong-build","strong-deploy", -"strong-mesh-models","strong-registry","strong-start","strong-supervisor","core-util-is","strong-debugger", -"strong-swagger-ui","swagger-ui","utf-8-validate","LoopBack","Platform","alerts","event loop","heroku","master", -"metrics","nodeops","npmrc","openshift","ops","pm","response", -"slc","slowest functions","strong-cli","strong-cluster-control","strongops","upstart","@bundled-es-modules/deepmerge", -"@bundled-es-modules/glob","@bundled-es-modules/memfs","@zip.js/zip.js","path-unified","@esm-bundle/chai-as-promised", -"@rollup/browser","@shoelace-style/shoelace","@web/test-runner-commands","hanbi","jsdoc-escape-at", -"jsdoc-tsimport-plugin","starlight-links-validator","style dictionary","dictionary","Android","@types/stylis", -"css-to-react-native","@types/js-beautify","@types/react-frame-component","@types/shallowequal","react-frame-component", -"stylis-plugin-rtl","ts-toolbelt","stylis-rule-sheet","zeit","hack","hacks","globjoin","mathml-tag-names","svg-tags", -"@changesets/get-github-info","@stylelint/prettier-config","@stylelint/remark-preset","@types/balanced-match", -"@types/file-entry-cache","@types/global-modules","@types/globjoin","@types/imurmurhash","@types/postcss-less", -"@types/svg-tags","eslint-config-stylelint","jest-preset-stylelint","postcss-sass","stylelint-config","shortcss", -"css-values","babel-register-ts","stylelint-plugin","delaration-strict-value","keyword","z-index","postcss-sorting", -"eslint-config-hudochenkov","postcss-styled-syntax","prettier-config-hudochenkov","postcss-media-query-parser", -"postcss-resolve-nested-selector", -"github-contributors-list","bootstrap-styl","cookiejar","should-http","tinyify","frisbee","super","promised","supports", -"capability","truecolor","16m","esrap","zimmerframe","@types/sade","vscode-languageserver", -"vscode-languageserver-protocol","svelte2tsx","svelte-language-server","@kiwi/eslint-config","@kiwi/prettier-config", -"@types/pug","postcss-easy-import","prettysize","@resvg/resvg-js","playwright-chromium","eslint-plugin-jest-formatting", -"sw-precache","git-release-notes","precache","tape-promise","autogen","promise.any","multilang-extract-comments", -"@readme/eslint-config","readmeio","swagger-nestjs","swagger-templates","swagger UI","istanbul-badges-readme","nodelint", -"still","mocha-phantomjs","travis-cov","jinja","swipe","framework7","gallery","slideshow","http-response-object", -"sync-rpc","then-request","flowgen2","system information","sysinfo","freebsd","openbsd","netbsd","cpu","cpuload", -"physical cores","logical cores","cores","socket type", -"fsstats","diskio","block devices","netstats","network interfaces","network connections","network stats","iface", -"printer","processes","users","internet","battery","docker stats","docker processes","graphic card","graphic controller", -"gpu","smart","disk layout","audio","bluetooth","wifi","wifinetworks","virtual box","virtualbox","vm","BIOS","chassis", -"symbol-es6","@jsenv/file-size-impact","construct-style-sheets-polyfill","hase","draht","limes","lusca","partof", -"timer2","uuidv4","crypto2","nocache","datasette","json-lines","processenv","stethoskop","flaschenpost", -"commands-events","nodeenv","roboter","assertthat","json-lines-client","cqs","cqrs","@codspeed/vitest-plugin", -"className","classList","override","@tailwindcss/oxide","@tapjs/after","@tapjs/after-each","@tapjs/asserts", -"@tapjs/before","@tapjs/before-each","@tapjs/chdir", -"@tapjs/core","@tapjs/filter","@tapjs/fixture","@tapjs/intercept","@tapjs/mock","@tapjs/node-serialize","@tapjs/run", -"@tapjs/snapshot","@tapjs/spawn","@tapjs/stdin","@tapjs/test","@tapjs/typescript","@tapjs/worker","resolve-import", -"tapjs","tapjs plugin","tap-out","tapes","@ljharb/resumer","@ljharb/through","array.prototype.every","dotignore", -"has-dynamic-import","ecstatic","npm-run-posix-or-windows","harness","chownr","yallist","@isaacs/fs-minipass","chmodr", -"events-to-array","brittle","b4a","streamx","fast-fifo","actor system","DDD","actor-system","front end","back end", -"@parcel/packager-ts","@parcel/transformer-typescript-types","cz-format-extension","telegram","telegram-api", -"telegram-client-api","tdlib","tglib","node-addon","tempdir","tmpfile","unique","seventh","lazyness","tree-kit", -"chroma-js","string-kit","nextgen-events","@cronvel/get-pixels","256 colors","true color","input field","gpm", -"screenbuffer", -"textbuffer","32-bit","charm","resumer","visualwidth","80s","ibm","@jridgewell/source-map","@ls-lint/ls-lint","astring", -"es8","@types/uglify-js","@test-runner/core","@test-runner/default-view","@test-runner/live-view", -"@test-runner/oneline-view","@test-runner/tom","multiline-ts","spawn-process","only-allow","sinon-assert-stub", -"sinon-mocha-test","unlinted","example","@devexpress/bin-v8-flags-filter","@devexpress/callsite-record","bowser", -"chrome-remote-interface","device-specs","elegant-spinner","get-os-info","import-lazy","is-podman", -"log-update-async-hook","moment-duration-format-commonjs","os-family","pinkie","promisify-event","read-file-relative", -"replicator","testcafe-browser-tools","testcafe-hammerhead","testcafe-legacy-api","testcafe-reporter-json", -"testcafe-reporter-list","testcafe-reporter-minimal","testcafe-reporter-spec","testcafe-reporter-xunit", -"testcafe-selector-generator","time-limit-promise","unquote","url-to-options","@devexpress/gulp-qunit-harness", -"@ffprobe-installer/ffprobe","@testcafe/publish-please","@types/callsite","@types/dedent","@types/useragent", -"browserstack-connector","caller","dom-walk","eslint-plugin-hammerhead","express-ntlm","gulp-clone", -"gulp-ll-next","gulp-mocha-simple","gulp-step","mocha-reporter-spec-with-retries","openssl-self-signed-certificate", -"recursive-copy","testcafe-browser-provider-browserstack","automated","QA","@types/dockerode","docker-compose", -"properties-reader","ssh-remote-port-forward","@types/async-lock","@types/properties-reader","@types/tar-fs", -"stringify-object-es5","codeclimate-test-reporter","cross-conf-env","headerify","is-number","teenytest", -"teenytest-promise","test double","fireworm","printf","spawn-args","styled_string","bluebird-retry", -"chai-shallow-deep-equal","saucie","eslint-config-mdcs","jpeg-js","three.js","3d","virtual-reality","augmented-reality", -"webgl","webgl2","webaudio","webgpu","webxr","get-port-cli","node-stdlib-browser","user-streams","hundreds","polendina", -"stream-spigot","streams2","unexpand","homedir","tilde","collapse","number-is-nan","profile","stats","bee-dnd","bee-tag", -"bee-form","bee-icon","bee-rate","bee-step","bee-tabs","bee-tile", -"bee-tree","bee-affix","bee-alert","bee-badge","bee-label","bee-menus","bee-modal","bee-panel","bee-radio","bee-table", -"bee-anchor","bee-button","bee-drawer","bee-layout","bee-locale","bee-navbar","bee-select","bee-slider","bee-switch", -"bee-upload","bee-animate","bee-backtop","bee-loading","bee-message","bee-overlay","bee-popover","bee-svgicon", -"bee-tooltip","bee-calendar","bee-carousel","bee-cascader","bee-checkbox","bee-collapse","bee-dropdown","bee-timeline", -"bee-transfer","bee-clipboard","bee-breadcrumb","bee-datepicker","bee-form-group","bee-pagination","bee-popconfirm", -"bee-timepicker","bee-transition","bee-colorpicker","bee-input-group","bee-page-layout","bee-tree-select", -"bee-autocomplete","bee-button-group","bee-complex-grid","bee-form-control","bee-input-number","bee-notification", -"bee-progress-bar","bee-search-panel","bee-loading-state","bee-input-group-addon","gulp-cleancss","gulp-css-wrap", -"tinper-bee-core","less-plugin-inline-urls","tinper","bee", -"tinylibs","@deno/shim-deno-test","tinycolor","worker threads","thread pool","method","@types/react-native-vector-icons", -"pushalert","react-native toast","react-native-toastify","toastify","react-native-notification","expo","Typescript", -"node-resemble-js","processmd","of","tldts","set-cookie","RFC6265","RFC2965","tinytim","trace", -"typedarray.prototype.slice","forEach","html-select","html-tokenize","aggregate","bs-logger","make-error", -"babel-preset-es2016","typescript-loader","migrate","migration","migrations","cli-tool","@ts-morph/common", -"code-block-writer","static analysis","code refactor","create-require","@tsconfig/node10","@tsconfig/node12", -"@tsconfig/node14","v8-compile-cache-lib","@cspotcode/source-map-support","dprint","@swc/wasm","ntypescript", -"util.promisify","fast-json-patch","omit-deep","power-assign","bre","rete","rule engine","rules engine", -"javascript rule engine","js rule engine","inference system","@types/strip-bom","@tsd/typescript", -"eslint-config-xo-typescript","typedefs", -"typedefinitions","jsonc-simple-parser","polite-json","sync-content","Microsoft","codelyzer","tslint-divid", -"@types/make-dir","tslint-immutable","tslint-misc-rules","tslint-microsoft-contrib","tslint-consistent-codestyle", -"ts-lint","typescript-tslint-plugin","fix-dts-default-cjs-exports","joycon","ts-essentials","typescript runner", -"@mixmark-io/domino","turndown-attendant","grunt-mocha","grunt-markdown","grunt-component-io","grunt-push-release", -"grunt-regex-replace","jshint-path-reporter","mocha-unfunk-reporter","grunt-concat-sourcemap","tap-browser-color", -"tweetnacl-util","curve25519","ed25519","nacl","poly1305","public","salsa20","signatures","twemoji-parser","DOM", -"Twitter","type-coverage-core","tagged-tag","@typescript/vfs","generics","media-typer","checking","@gerrit0/mini-shiki", -"@material/material-color-utilities","typedoc-theme","typedoc-plugin","material-design","material-3","typedocplugin", -"JsDocs","cli-prompt","concatenate","ebook","pandoc","kindlegen","latex","@types/mongoose", -"mongodb-memory-server-global","mongoose-findorcreate","prettier-tslint", -"sql-highlight","@sqltools/formatter","gulpclass","@types/sha.js","@sap/hana-client","@types/gulp-rename", -"standard-changelog","@google-cloud/spanner","@types/gulp-sourcemaps","@dprint/formatter","@esfx/canceltoken", -"@dprint/typescript","azure-devops-node-api","monocart-coverage-reports","mocha-fivemat-progress-reporter", -"eslint-formatter-autolinkable-stylish","commandpost","@types/power-assert","intelli-espower-loader", -"@types/postcss-modules-local-by-default","@types/postcss-modules-scope","@types/icss-utils", -"@types/postcss-modules-extract-imports","@types/reserved-words","jest-environment-node-single-context", -"postcss-import-sync2","sass-svg","promise-finally","typings-core","tslint-config-standard","definition","ecma","jsmin", -"random-bytes","@uiw/formatter","@uiw/react-affix","@uiw/react-alert","@uiw/react-auto-link","@uiw/react-avatar", -"@uiw/react-back-top","@uiw/react-badge","@uiw/react-breadcrumb","@uiw/react-button-group","@uiw/react-calendar", -"@uiw/react-card","@uiw/react-carousel","@uiw/react-cascader","@uiw/react-checkbox","@uiw/react-collapse", -"@uiw/react-copy-to-clipboard","@uiw/react-date-input","@uiw/react-date-picker","@uiw/react-descriptions", -"@uiw/react-divider","@uiw/react-drawer","@uiw/react-dropdown","@uiw/react-empty","@uiw/react-file-input", -"@uiw/react-form","@uiw/react-grid","@uiw/react-layout","@uiw/react-list","@uiw/react-loader","@uiw/react-menu", -"@uiw/react-message","@uiw/react-modal","@uiw/react-month-picker","@uiw/react-notify","@uiw/react-pagination", -"@uiw/react-pin-code","@uiw/react-popover","@uiw/react-portal","@uiw/react-progress","@uiw/react-radio", -"@uiw/react-rate","@uiw/react-search-select","@uiw/react-search-tree","@uiw/react-select","@uiw/react-slider", -"@uiw/react-split","@uiw/react-steps","@uiw/react-switch","@uiw/react-table","@uiw/react-tabs","@uiw/react-tag", -"@uiw/react-textarea","@uiw/react-time-picker","@uiw/react-tooltip","@uiw/react-transfer","@uiw/react-tree", -"@uiw/react-tree-checked","media-query-fns","parsel-js","citty","hookable","mkdist","untyped","pretty-bytes-cli", -"browserify-header","@metcoder95/https-pem","dns-packet","jsondiffpatch","bail","trough","@types/extend","retext", -"unique-random","non-repeating","unist-util","xast","nlcst","visit","pullstream","match-stream","uncompress","pupa", -"is-npm","fixture-stdout","notifier","urn","uri mutation","url mutation","uri manipulation","url manipulation", -"uri template","url template","unified resource locator","unified resource identifier", -"query string","RFC 3986","RFC3986","RFC 6570","RFC6570","jquery-plugin","ecosystem:jquery","sauce-browsers", -"sauce-test","formstream","ylru","@eggjs/oxlint-config","@tsconfig/node18","@types/busboy","@types/proxy", -"@types/selfsigned","string.prototype.towellformed","urlopen","userprofile","yamlparser","browserscope","ua","ua-parse", -"ua-parser","user agent","user-agent","is-generator-function","is-typed-array","is-async-supported","rfc9562","bundt", -"diffs","find-parent-dir","githook","sanitisation","sanitise","@vue/shared","@vant/use","@vant/popperjs", -"@vue/runtime-core","diffable-html","vitest-canvas-mock","@vant/area-data","@vant/cli","@vant/eslint-config", -"@vant/icons","@vercel/go","@vercel/h3","@vercel/fun","@vercel/koa","@vercel/blob","@vercel/hono","@vercel/next", -"@vercel/node","@vercel/ruby","@vercel/rust","@vercel/elysia","@vercel/nestjs","@vercel/python","@vercel/express", -"@vercel/fastify","@vercel/redwood","@vercel/backends","@vercel/hydrogen", -"@vercel/build-utils","@vercel/detect-agent","@vercel/static-build","@vercel/remix-builder","epipebomb","promisepipe", -"@sentry/node","@types/title","jaro-winkler","@types/chance","@types/dotenv","@vercel/client","pcre-to-regexp", -"git-last-commit","@inquirer/search","@tootallnate/once","http-proxy-node16","@inquirer/checkbox","@inquirer/password", -"@vercel/frameworks","@vercel/error-utils","line-async-iterator","@vercel/fs-detectors","@types/load-json-file", -"@vercel/routing-utils","@types/npm-package-arg","@types/write-json-file","@vercel-internals/types", -"@edge-runtime/node-utils","json-parse-better-errors","@types/jest-expect-message","@vercel-internals/constants", -"@alex_neo/jest-expect-message","@types/json-parse-better-errors","@vercel-internals/get-package-json","extsprintf", -"err","create-banner","postcss-header","viewer","viewer.js","teex","remove-trailing-separator","fs-mkdirp-stream", -"is-valid-glob","lead","resolve-options","stream-composer","to-through","value-or-function","vinyl-sourcemap", -"vinyl-adapter","classic","browser-split","ev-store","x-is-array","x-is-string","run-browser","vtree","artichokie", -"periscopic","http-proxy-3","strip-literal","es-module-lexer", -"postcss-modules","@oxc-project/types","host-validation-middleware","dev-server","build-tool","dotenv-local", -"slash-path","vite-plugin-builder","api-router","api-routers","vite-plugin-api","vite-plugin-rest-api","express-router", -"file-system-based","rest-api","api-rest","Remix","Next.js","focus-trap","@shikijs/core","@shikijs/types", -"@vue/devtools-api","@vueuse/integrations","@iconify-json/simple-icons","@iconify/utils","@mdit-vue/shared", -"@mdit-vue/plugin-sfc","@mdit-vue/plugin-toc","markdown-it-mathjax3","@mdit-vue/plugin-title","@mdit-vue/plugin-headers", -"@types/markdown-it-emoji","@mdit-vue/plugin-component","@mdit-vue/plugin-frontmatter","@types/markdown-it-container", -"@types/postcss-prefix-selector","tinyrainbow","@vitest/runner","@vitest/snapshot","why-is-node-running", -"@vitest/pretty-format","birpc","local-pkg","@edge-runtime/vm","@antfu/install-pkg","node-localstorage","gulp-xo", -"vorpal-less","vorpal-repl","load-plugins","eyes","BDD","keytar","parse-semver","typed-rest-client","@types/read", -"@types/yazl","@types/cheerio","@types/url-join","@types/clone","@types/iconv-lite","vscode-oniguruma", -"@vue/runtime-dom","eslint-plugin-vue-libs", -"@babel/plugin-syntax-pipeline-operator","@intlify/shared","@intlify/core-base","@intlify/devtools-types","intlify", -"@intlify/vue-i18n-loader","@types/mini-css-extract-plugin","@types/webpack-merge","cache-loader","markdown-loader", -"pug-plain-loader","@vue-macros/common","ast-walker-scope","muggle-string","unplugin-utils","@pinia/colada", -"@types/nightwatch","@vue/language-core","chromedriver","faked-promise","nightwatch-helpers","de-indent", -"todomvc-app-css","foreachasync","sys","walkSync","exec-sh","outpipe","win-spawn","encrypted-attr", -"lodash.issafeinteger","waterline-schema","waterline-utils","active-record","vargs","bdd-with-opts","gulp-debug","mu2", -"promise-simple","sauce-connect-launcher","spawn-mocha-parallel","sv-selenium","web3-eth","web3-net","web3-core", -"web3-types","web3-utils","web3-errors","web3-eth-abi","web3-eth-ens","web3-eth-iban","web3-validator", -"web3-rpc-methods","web3-eth-accounts","web3-eth-contract","web3-eth-personal","web3-providers-ws","web3-rpc-providers", -"web3-providers-http","in3","ganache","web3-providers-ipc","eslint-config-base-web3","@truffle/hdwallet-provider", -"Ethereum","@solana/spl-token","@solana/web3.js","kva-email-service","micro-ed25519-hdkey","ssl-http-with-docker", -"tailwind-animation-extension","telegram-assistant","web3-react-task","sol","@webassemblyjs/ast", -"@webassemblyjs/wasm-edit","@webassemblyjs/wasm-parser","acorn-import-phases","chrome-trace-event","@codspeed/core", -"@types/neo-async","@types/xxhashjs","assemblyscript","bundle-loader","coffee-loader","hash-wasm","meriyah", -"rehype-sanitize","wast-loader","webassembly-feature","xxhashjs","lodash.partial","eslint-config-th0r", -"postcss-icss-values","@carrotsearch/foamtree","eslint-config-th0r-react","analyzer","chart","zoomable", -"@webpack-cli/info","@webpack-cli/configtest","@types/envinfo","@fastify/express","@types/on-finished","@types/sockjs", -"@types/bonjour","bonjour-service","@types/serve-index","@types/serve-static","ansi-html-community", -"@types/connect-history-api-fallback","klona","@types/sockjs-client","reloading","hot-reloading", -"@types/webpack-sources","eslint-config-shellscape","prettier-plugin-package","dts-cli","@types/flat","externals", -"typedarray-to-buffer","yaeti","networking","comet","RFC-6455","@silentbot1/nat-api","@thaunknown/simple-peer", -"@webtorrent/http-node","addr-to-ip-port","bitfield","bittorrent-dht","bittorrent-protocol","cache-chunk-store", -"chunk-store-iterator","cpus","create-torrent","cross-fetch-ponyfill","fs-chunk-store","fsa-chunk-store", -"immediate-chunk-store","join-async-iterator","load-ip-set","lt_donthave","memory-chunk-store","parse-torrent", -"random-iterate","speed-limiter","throughput","torrent-discovery","torrent-piece","uint8-util","unordered-array-remove", -"ut_metadata","ut_pex","@webtorrent/semantic-release-config","airtap-manual","airtap-system","bittorrent-tracker", -"chrome-net","disc","network-address","path-esm","webtorrent-fixtures","bittorrent","bittorrent client","mad science", -"p2p","peer-to-peer","peers","swarm","torrent","web torrent","webrtc data","web worker","a gogo","url-search-params", -"poly","buster","exorcist","microtime","cujo","Promises/A+","isexe","taffydb","unit.js","@dabh/diagnostics","logform", -"one-time","@dabh/eslint-config-populist","abstract-winston-transport","cross-spawn-async", -"hock","winston-compat","file-stream-rotator","@alcalzone/release-script","@alcalzone/release-script-plugin-license", -"daily-rotate-file","log-rotate","logrotate","winston3","bower-config","propprop","wiredep-cli","break","carriage", -"new-line","newline","return","soft","workbox-build","workbox","workboxjs","service worker","fetch requests","offline", -"file manifest","wordbreak","linewrap","writeFile","atomic","HyBi","Push","WebSocket","WebSockets","enstore", -"x-ray-crawler","x-ray-parse","scrape","is-function","parse-headers","ssf","wmf","crc-32","adler-32","codepage","fflate", -"exit-on-epipe","@sheetjs/uglify-js","markdown-spellcheck","xlsb","dbf","dif","sylk","cash-cat","codacy-coverage", -"globify","jsonpath","unminified-webpack-plugin","XML","cdata","CDATA","doctype","processing instruction","Javascript", -"transforming", -"convertor","converting","conversion","node-expat","dom-js","xmltest","DOMParser","XMLSerializer","find-cache-directory", -"func-xml","@babel/plugin-proposal-unicode-property-regex","@unicode/unicode-14.0.0","babel-plugin-array-includes", -"babel-plugin-transform-xregexp","unicode-property-value-aliases","regular expression","whitelist", -"@scion-scxml/test-framework","statechart","state machine","finite state machine","finite automata","scxml", -"interpreter","@types/deep-equal","@types/express-ws","@types/utf8","xterm-benchmark","terminal-emulator", -"jest-ts-webcompat-resolver","YAML","yaml2json","json2yaml","browserslist-generator","yargs-test-extends", -"babel-plugin-transform-inline-imports-commonjs","death","loud-rejection","repeating","request-capture-har","roadrunner", -"babel-preset-es2015-node4","babel-preset-node5","eslint-config-fb-strict","eslint-config-kittens", -"eslint-plugin-flow-vars","eslint-plugin-no-async-without-await","@yeoman/adapter","@yeoman/conflicter", -"@yeoman/namespace","@yeoman/transform","@yeoman/types","fly-import","grouped-queue","mem-fs","mem-fs-editor", -"which-package-manager","@yeoman/eslint","esmocha","sinon-test","github-username","yes","no","true", -"false","lenient","cli-list","fullname","parse-help","root-check","npm-keyword","yeoman-doctor","humanize-string", -"yeoman-character","registry-url","@jonahsnider/benchmark","pad-component","cowsay","say","zeromq","0mq","ømq","libzmq", -"binding","@types/cookie-parser","@types/express-useragent","@types/morgan","express-useragent","schemas", -"runtime types","DSL","@externs/nodejs","@types/systemjs","JSON2","char-split","express-state","firefox-profile", -"istanbul-middleware","shallow-copy","stack-mapper","tap-finished","zuul-localtunnel","browzers","bulk-require", -"zuul-ngrok","@phenomnomnominal/tsquery","Unit Testing","Storybook","motion-dom","motion-utils","@radix-ui/react-dialog", -"@thednp/dommatrix","react animation","pose","react pose","popmotion","framer","waapi","belalangkayu","rengginangbasi", -"tehtarik3","sort-array","compute-scroll-into-view","@docusaurus/module-type-aliases","@testing-library/preact", -"babel-plugin-no-side-effect-class-properties","babel-preset-react-native","flow-coverage-report", -"get-pkg-repo","enhanced input","autosuggest","typeahead","omnibox","WAI-ARIA","multiple selection","focus","keyboards", -"mice","pen","pointer","pseudos","ring","textarea","trackpad","@augment-vir/core","@date-vir/duration","deepcopy-esm", -"typed-event-target","@web/dev-server-esbuild","execute-in-browser","istanbul-smart-text-reporter","runstorm","augment", -"vir","augment-vir","toolchain","JSONC","JSX","TSX","GraphQL","@commercetools-frontend/application-components", -"@commercetools-frontend/application-config","@commercetools-frontend/assets", -"@commercetools-frontend/babel-preset-mc-app","@commercetools-frontend/mc-dev-authentication", -"@commercetools-frontend/mc-html-template","@commercetools/http-user-agent","@formatjs/cli-lib","@rollup/plugin-graphql", -"@svgr/babel-preset","@types/webpack-bundle-analyzer","@vitejs/plugin-react-swc","babel-plugin-formatjs", -"graphql-request","moment-locales-webpack-plugin","svg-url-loader","thread-loader", -"@commercetools/composable-commerce-test-data","@types/moment-locales-webpack-plugin","@vue/cli-plugin-babel", -"@vue/cli-plugin-typescript","@vue/cli-service","eslint-plugin-prettier-vue","rollup-plugin-vue","vue 3", -"@vue/cli-plugin-unit-mocha","symlink-dir","tokenize","dogstatsd","datadog","telegraf","adr", -"decision record","any decision record","architectural decision","architectural decision record","architecture decision", -"architecture decision record","software quality","bplist-parser","@types/katex","katex","tex","hyperlink", -"@type-challenges/utils","deserialization","deserialize","detect-europe-js","is-standalone-pwa","ua-is-frozen", -"client-hints","device","browser-detection","device-detection","os-detection","bot-detection","ai-detection", -"app-detection","crawler-detection","youch","@adonisjs/ace","@adonisjs/env","parse-imports","@adonisjs/fold", -"@adonisjs/hash","@adonisjs/repl","youch-terminal","@poppinss/utils","@adonisjs/config","@adonisjs/events", -"@adonisjs/health","@adonisjs/logger","@poppinss/colors","@poppinss/dumper","@poppinss/macroable","@adonisjs/bodyparser", -"@adonisjs/encryption","@adonisjs/application","@adonisjs/http-server","error-stack-parser-es","argon2","edge.js", -"@japa/assert","@japa/runner","@japa/snapshot","@japa/expect-type","@japa/file-system","@adonisjs/tsconfig", -"ts-node-maintained","@adonisjs/assembler","@types/test-console","@adonisjs/eslint-config","@adonisjs/prettier-config", -"adonisjs","@aneuhold/core-ts-api-lib","@aneuhold/core-ts-lib", -"@aneuhold/local-npm-registry","@aneuhold/main-scripts","@capacitor/cli","@trapezedev/project","@types/slice-ansi", -"resources","splash screen","webOS","@envelop/types","@envelop/instrumentation","@whatwg-node/promise-helpers", -"@ionic/cli-framework-output","@angular-eslint/eslint-plugin","@angular-eslint/eslint-plugin-template", -"@angular-eslint/schematics","ng-packagr","docz","docz-utils","docz-theme-default", -"@asdfgertyjhnpm/nesciunt-molestias-reprehenderit-occaecati","@drftgyhuji7npm/rem-sint-necessitatibus-possimus", -"@drftgyhuji7npm/repellendus-eum-et-itaque","typeerror","Reflect.getPrototypeOf","Int8Array","Array","configurable", -"minimal","descriptors","channel","matchAll","Uint32Array","Array.prototype.filter","setter","Uint16Array","exit-code", -"isConcatSpreadable","weakmap","syntaxerror","sharedarraybuffer","Object","Array.prototype.flat","toSorted","typesafe", -"preserve-symlinks","negative zero","[[Prototype]]","tester","ArrayBuffer.prototype.slice","byteOffset","zero", -"ArrayBuffer#slice","trimRight","getter","Array.prototype.contains","findLastIndex","last","Int16Array","Int32Array", -"rangeerror","Float32Array","take","workspace:*","byteLength", -"censor","Symbol.toStringTag","operating-system","coercible","Function.prototype.name","gdpr","ArrayBuffer", -"private data","Object.fromEntries","0","tostringtag","-0","negative","Array.prototype.findLast","enumerable","toobject", -"interrupts","groupBy","handlers","reuse","Float64Array","group","some","collection.es6","sameValueZero","positive", -"code points","regular expressions","findLast","robust","description","Uint8ClampedArray","pnpm9","length", -"defineProperty","RegExp#flags","valid","accessor","@smithy/types","aws-lambda","elapsed-time-logger","gulp-open", -"cupertino","pane","slide","@pouchlab/ui","chai-jquery","corejs-typeahead","doiuse","gulp-add-src","gulp-cache-bust", -"gulp-check-deps","gulp-sass-lint","gulp4-run-sequence","is-empty-object","motion-ui","sassy-lists", -"undertaker-forward-reference","vinyl-named","handlebars-helper-rel","handlebars-helper-slugify","tinygradient", -"@bokub/prettier-config","gradient", -"gradients","grommet-icons","@chromatic-com/storybook","@storybook/addon-a11y","@storybook/addon-toolbars", -"@storybook/addon-webpack5-compiler-babel","@storybook/manager-api","@storybook/source-loader", -"@testing-library/testcafe","babel-plugin-transform-imports","chromatic","grommet-theme-hpe","jest-styled-components", -"react-shadow","tarball-extract","testcafe-react-selectors","grommet.io","grommetux","theming","sticker sheets", -"design patterns","app templates","atomic design","WCAG 2.1","keyboard navigation","screen reader tags","interaction", -"graphical user interface","dart-sass","grunt-jekyll","zepto","lightbox","@next/font","axe-playwright", -"@storybook/test-runner","@base-ui-components/react","@storybook/addon-webpack5-compiler-swc","find-process", -"@types/pretty","chromium","launch-image","splashscreen","splash-screen","image-generation","mstile","pwa-assets", -"@apitools/openapi-parser","base64-arraybuffer","xml-but-prettier","babel-plugin-template-html-minifier","inspectpack", -"Custom Element","Web Component","swagger ui","openapi ui","openapi themes","openapi viewer","openapi renderer", -"openapi explorer","swagger themes","animatable","@react-native/babel-preset","collapsible","accordion", -"rollup-plugin-local-resolve","swipeable","customizable","touchscreen","listview","swipe-to-delete","swipe-actions", -"use-composed-ref","use-latest","@preconstruct/cli","autosize","grow","md-writer","@types/common-tags", -"decimal.js-light","victory-vendor","@recharts/devtools","@storybook/builder-vite","@storybook/react-vite", -"@stryker-mutator/typescript-checker","@stryker-mutator/vitest-runner","@types/d3-interpolate","@types/d3-time-format", -"babel-plugin-dev-expression","eslint-config-airbnb-extended","eslint-plugin-react-perf","vitest-axe", -"@riotjs/dom-bindings","@riotjs/compiler","@riotjs/prettier-config","@riotjs/register","@riotjs/util", -"@wdio/mocha-framework","@wdio/sauce-service","bianco.attr","bianco.query","cumpa","curri","eslint-config-riot", -"rollup-plugin-riot","custom tags","minimalist","data binding","riotjs","riot.js","testcafe-browser-provider-saucelabs", -"sortable","reorder","ng-sortable","@use-gesture/vanilla","tdesign-icons-vue-next","@rollup/plugin-eslint", -"@rollup/plugin-url","@soerenmartius/vue3-clipboard","@tdesign/site-components","@tdesign/theme-generator","dom-parser", -"lodash.upperfirst","qrcode.vue","rollup-plugin-ignore-import","rollup-plugin-static-import","rollup-plugin-styles", -"tdesign-publish-cli","vite-plugin-tdoc", -"tdesign","babel-plugin-html-tag","postcss-css-variables","postcss-hexrgba","postcss-prefixer", -"rollup-plugin-module-replacement","rollup-plugin-string","uploader","preview","chunk","image-edit","sockets","ready", -"win32","gulp-convert-css-var","picklog","wechat","weixin","@formatjs/intl-localematcher","@napi-rs/simple-git", -"@shikijs/twoslash","@theguild/remark-mermaid","better-react-mathjax","estree-util-value-to-estree", -"react-compiler-runtime","react-medium-image-zoom","remark-math","remark-reading-time","remark-smartypants", -"unist-util-remove","unist-util-visit-children","@types/negotiator","esbuild-plugin-svgr", -"esbuild-react-compiler-plugin","make-synchronized","make-synchronous","sync-threads","synchronize","fs-fixture", -"@ibyar/decorators","aurora","ibyar","expressions","template-syntax","template-expression","scope","evaluation", -"command-center","rich-text-editor","tiptap","@types/babel__preset-env","eslint-plugin-no-null","allure","codeceptjs", -"testops","@intlayer/chokidar","@intlayer/config","@intlayer/core","@intlayer/types","intlayer","@types/cls-hooked", -"@utils/ts-config","@utils/ts-config-types","@utils/tsdown-config", -"user-agents","unist-util-remove-position","@bugsnag/core","@bugsnag/delivery-react-native", -"@bugsnag/plugin-console-breadcrumbs","@bugsnag/plugin-network-breadcrumbs","@bugsnag/plugin-react", -"@bugsnag/plugin-react-native-client-sync","@bugsnag/plugin-react-native-event-sync", -"@bugsnag/plugin-react-native-global-error-handler","@bugsnag/plugin-react-native-hermes", -"@bugsnag/plugin-react-native-session","@bugsnag/plugin-react-native-unhandled-rejection","iserror","bugsnag", -"stability","@enact/i18n","ilib","eslint-plugin-astro","control-panel","backendless-request","backendless-rt-client", -"backendless-console-sdk","bannerize","backendless.com","ahooks","better-scroll","@zarm-design/bem","@use-gesture/react", -"@zarm-design/icons","@floating-ui/react-dom-interactions","@zarm-design/cli","zarm-ui","zarm-mobile","@enact/spotlight", -"@enact/docs-utils","@enact/ui-test-utils","eslint-config-enact-proxy","react select","react dropdown", -"accessible react select","accessible","@reporters/github","titanium-sdk","tidev","iphone","@antora/expand-path-helper", -"antora","static site","web publishing","@asyncapi/generator-components","@asyncapi/generator-helpers", -"@asyncapi/generator-hooks","@asyncapi/multi-parser","fs.extra","global-dirs","requireg","unixify","react-loadable", -"combine-promises","@docusaurus/babel","@docusaurus/logger","@docusaurus/bundler","react-router-config", -"@docusaurus/mdx-loader","@docusaurus/utils-common","@docusaurus/utils-validation","react-loadable-ssr-addon-v5-slorber", -"@total-typescript/shoehorn","@types/react-router-config","parcel-bundler","Vue","unstyled","@nestjsx/crud-request", -"@nestjsx/util","crud-generator","frameworks","@zmotivat0r/o0","p-filter","p-locate","dependency-management", -"continuous-integration","npmjs","package-manager","gatsby","hugo","netlify","core-js-pure","jest-location-mock", -"@types/module-alias","webpack-plugin-serve","hotreload","@pothos/test-utils","pothos","yalc","@strapi/core", -"@strapi/i18n","@strapi/admin","@strapi/email","@strapi/types","@strapi/utils","@strapi/logger","@strapi/upload", -"@types/nodemon","@strapi/openapi","@strapi/database","@strapi/cloud-cli","@strapi/generators","get-latest-version", -"@strapi/permissions","@strapi/data-transfer","@strapi/content-manager","@strapi/content-releases", -"@strapi/review-workflows","@strapi/typescript-utils","@strapi/content-type-builder","@strapi/ts-zen", -"eslint-config-custom","@types/webpack-hot-middleware","strapi","cmf","content management framework","admin panel", -"koajs","jam","graphqL","infrastructure","self hosted", -"lernajs","snake-case","@types/svg-parser","http-status-emojis","tsparticles-plugin","@tsparticles/interaction", -"@tsparticles/move","tsparticles-shape","@tsparticles/updater","@aws-sdk/lib-storage","@aws-sdk/s3-presigned-post", -"express-interceptor","express-prom-bundle","grant","tus-js-client","webdav","resumable uploads","tus","dropbox", -"webpack-chain","@vuepress/types","vue-server-renderer","@vue/babel-preset-app","vuepress-plugin-container", -"vuepress-html-webpack-plugin","@types/diacritics","vuepress-plugin-smooth-scroll","detect-browser", -"@walletconnect/types","@walletconnect/safe-json","@walletconnect/window-getters","@walletconnect/window-metadata", -"@ethersproject/address","@types/lodash.isnumber","wallet","walletconnect","jsonrpc","cryptocurrency","dapp", -"@walletconnect/utils","@walletconnect/crypto","@walletconnect/legacy-types","@walletconnect/legacy-utils", -"@types/qrcode","@walletconnect/legacy-client","@walletconnect/jsonrpc-provider", -"@walletconnect/jsonrpc-http-connection","ethereum-test-network","@wordpress/element","wordpress","gutenberg","center", -"jasmine-co","jasmine-ts","selenium-mock","body scroll","body scroll lock","react scroll lock","react scroll","freeze", -"disable","overflow","vanilla-js","tablet", -"bsl","broccoli-node-info","resolve-path","@types/console-ui","@types/esm","@types/findup-sync","@types/sane", -"@types/underscore.string","broccoli-node-api","mocha-jshint","babel-plugin-optimize-starts-with","replacement","html4", -"invalid","color-name","is-whitespace","verb","mediaquery","csstree","completion","apollo-link-context","decap-cms", -"aws-cognito","what-the-diff","gotrue-js","git-gateway","gateway","napa","detector","tinydate","tweezer.js", -"medium-zoom","autoprefixer-stylus","rollup-plugin-async","eslint-plugin-playwright","creator","cp-file","yargonaut", -"docsify-server-renderer","cli-prompts-test","rollup-plugin-executable","ssr-window","eslint-config-standard-react", -"prettier-check","array-hyper-unique","crlf-normalize","book","books","chapter","comic","epub-maker","epub-maker2", -"node-novel","novel","volume","escaping","interpolate","goat","🐐","color-logger","ice-cap","esdoc-importpath-plugin", -"ECMAScript6","ECMAScript2015", -"ECMAScript7","ECMAScript2016","ECMAScript8","ECMAScript2017","proposal","mdc","developer","inter-element","white-space", -"whitespace","tagname","force","graceful-shutdown","http-shutdown","http-terminate","prometheus","icss", -"inferno-hyperscript","vnode","createVNode","gulp-rtlcss","postcss-preset-infima","dark mode","bootswatch","docstrap", -"@angular-devkit/build-angular","angular-eslint","github-files-fetcher","@stitches/react","animate-sass", -"postcss-trolling","vite-plugin-svgr","preview jest","log-utils","engine-base","engine-handlebars","lo","lo-dash", -"serve-index-75lb","lws-middleware","micromark-extension","tagfilter","dangerous","grunt-jasmine-node","mobilegrade", -"sniff","nth-child","nth","is-alphanumerical","is-decimal","is-hexadecimal","cssinjs", -"@wdio/selenium-standalone-service","babelrc-rollup","queryselector","shadowdom","gulp-streamify","rc-tools","tappable", -"hammer","@actions/core","@oclif/plugin-autocomplete","toposort","@readme/better-ajv-errors", -"@readme/standards","@types/toposort","@types/unzipper","goober","jest-esm-jsx-transform","parcel-plugin-css-to-string", -"use-throttled-effect","hex","color-picker","wai-aria","smart-tv","smarttv","simple-routing","nano-equal", -"shallow-equal-fuzzy","shouldComponentUpdate","quicklook","image-gallery","image-viewer","react-native-svg", -"progressindicator","circle","pie","progressbar","indeterminate","d3-interpolate-path","@react-native-community/bob", -"@storybook/react-native","eslint-plugin-react-native","youtube-iframe","iframe","@atomico/rollup-plugin-sizes", -"git-branch-is","react-spring","@bedrock-layout/use-forwarded-ref","@codecov/vite-plugin","@types/body-scroll-lock", -"get-nonce","@theuiteam/lib-builder","@tsparticles/shape-text","@tsparticles/updater-roll","@tsparticles/updater-tilt", -"@tsparticles/updater-wobble","@tsparticles/plugin-emitters","@tsparticles/updater-destroy", -"@tsparticles/updater-twinkle","@tsparticles/plugin-absorbers","@tsparticles/interaction-external-trail", -"@tsparticles/plugin-emitters-shape-circle","@tsparticles/plugin-emitters-shape-square","useRef","createRef", -"merge refs","detect-node-es","@types/enzyme-adapter-react-16","code spliting","sidecar","mutation-observer", -"copy-text-to-clipboard","svelte-loader","scss-loader","perfect-scroll","vue-perfect-scroll","vue-scroll", -"vue-scrollbar","vue-plugin","滚动条","@types/eslint-plugin-prettier","@types/form-data","is-uuid","rewrite-imports", -"serviceworker","convict","antora-component","@applitools/test-utils","applitools","eyes-sdk","test automation", -"visual regression","@dataui/crud-request","@dataui/crud-util","blob-to-buffer","drag drop","drag & drop", -"@expo/spawn-async","@parcel/core","@parcel/fs","@parcel/package-manager","@parcel/watcher","mnemonic-id", -"node-object-hash","@plasmohq/parcel-config","@plasmohq/parcel-core","@plasmohq/init","@plasmo/config", -"@plasmo/constants","@plasmo/utils","@plasmo/framework-shared","browser-extensions","@iconify/react","@types/events", -"static-server","@storybook/cli","less-plugin-sass2less","@storybook/addon-mdx-gfm","music","player","mse","eme", -"@arethetypeswrong/core","ts-expose-internals","dlv","dset","flattie","fontace","unifont","magicast","piccolore", -"unstorage","zod-to-ts","xxhash-wasm","yocto-spinner","@oslojs/encoding","@astrojs/compiler","@astrojs/telemetry", -"@capsizecss/unpack","http-cache-semantics","@astrojs/internal-helpers", -"deterministic-object-hash","@types/dlv","rehype-toc","astro-scripts","remark-code-titles","@types/common-ancestor-path", -"@types/http-cache-semantics","strata","fuzzysearch","sander","@web/test-runner-core","testrunner","ac-colors","hsv", -"lch","color-names","cmyk","mix","harmonies","expressots","clean-architecture","typescript-framework", -"@pagefind/default-ui","bcp-47","mdast-util-directive","linkedom","withastro","astro-integration","piña","pigna", -"tabbable","@floating-ui/utils","@radix-ui/react-checkbox","@radix-ui/react-icons","vitest-browser-react", -"@internal/test-utils","code-blocks","expressive-code","syntax-highlighting","netlify-cms","@types/deep-eql", -"@amaui/ui-react","amaui","firefoxos","onesy","@react-native-macos/virtualized-lists","@tsparticles/plugin-easing-quad", -"@tsparticles/updater-stroke-color","@tsparticles/interaction-external-pause","@tsparticles/interaction-external-bubble", -"@tsparticles/interaction-external-attract","@tsparticles/interaction-external-connect","@types/react-router", -"@backstage/backend-plugin-api","@backstage/config","@backstage/integration","express-promise-router", -"@backstage/backend-test-utils","@backstage/catalog-model","@backstage/cli","@backstage/plugin-catalog-common", -"@backstage/plugin-catalog-node","backstage","ci/cd", -"immobiliare","immobiliarelabs","rgv","@asteasolutions/zod-to-openapi","@trpc/server", -"eslint-import-resolver-custom-alias","resolve-tspaths","event-driven","blaze","qs-esm","dataloader","bson-objectid", -"console-table-printer","@payloadcms/translations","graphql-http","@types/range-parser","@monaco-editor/react", -"@payloadcms/eslint-config","@hyrious/esbuild-plugin-commonjs","content management","graphQL","@cfcs/core","@egjs/axes", -"@egjs/component","@egjs/imready","@egjs/list-differ","@daybrush/jsdoc","@egjs/flicking-plugins","@egjs/release-helper", -"@types/resize-observer-browser","egjs-jsdoc-template","html-to-react","http-serve","jsdoc-to-mdx", -"karma-typescript-es6-transform","postcss-clean","print-coveralls","print-sizes","pvu","rollup-plugin-prototype-minify", -"ts-mock-imports","ttypescript","flicking","egjs","body scroll lock upgrade","@ucast/mongo2js","@casl/dx","permissions", -"abac","rbac","ibac","cancan","@humanwhocodes/gitignore-to-minimatch","peowly","list-dependents-cli","rslog", -"@rslib/core","@modern-js/rslib","@modern-js/types","@scripts/rstest-config","modern","modern.js","@scripts/build", -"@scripts/jest-config", -"import-without-cache","unconfig-core","unrun","@publint/pack","@sxzz/eslint-config","@sxzz/prettier-config", -"@sxzz/test-utils","@unocss/eslint-plugin","@vitejs/devtools","rolldown-plugin-dts-snapshot", -"rolldown-plugin-require-cjs","unocss","unplugin-ast","unplugin-lightningcss","unplugin-unused","@types/decompress", -"@ckeditor/ckeditor5-comments","@ckeditor/ckeditor5-track-changes","CKEditor","WYSIWYG","WYSIWYW","rich-text", -"fast-equals","glob2regx","ckeditor5-collaboration","@ckeditor/ckeditor5-revision-history", -"@ckeditor/ckeditor5-operations-compressor","@ckeditor/ckeditor-cloud-services-collaboration","@grammyjs/types", -"deno2node","@udecode/plate-utils","@loki/integration-react","@loki/integration-react-native","@loki/integration-vue", -"@loki/runner","@loki/target-chrome-app","@loki/target-chrome-docker","@loki/target-native-android-emulator", -"@loki/target-native-ios-simulator","storybook-addons","react-storybook","visual testing","emoji-datasource", -"@fastify/static","graphql-jit","mqemitter","single-user-cache","tiny-lru","@matteo.collina/snap", -"@types/isomorphic-form-data","graphql-ws","blue-tape","events.once","xhr2-cookies","convex","mock-spawn", -"@fastify/pre-commit","@reporters/silent","desm","gulp-better-rollup","Leaflet","Maps","Gesture","Handling", -"two","fingers","@tanstack/vue-virtual","@testing-library/vue","@fast-check/vitest","@types/eslint-config-prettier", -"prettier-plugin-pkg","prettier-plugin-sh","algo","@oxc-node/cli","eslint-plugin-redos-detector","tsm","bundle-size", -"@iconify/vue","@internationalized/date","@internationalized/number","@nuxt/fonts","@nuxt/icon","@nuxt/kit", -"@nuxt/schema","@nuxtjs/color-mode","@tanstack/vue-table","@tiptap/core","@tiptap/extension-bubble-menu", -"@tiptap/extension-code","@tiptap/extension-collaboration","@tiptap/extension-drag-handle", -"@tiptap/extension-drag-handle-vue-3","@tiptap/extension-floating-menu","@tiptap/extension-horizontal-rule", -"@tiptap/extension-image","@tiptap/extension-mention","@tiptap/extension-node-range","@tiptap/extension-placeholder", -"@tiptap/markdown","@tiptap/pm","@tiptap/starter-kit","@tiptap/suggestion","@tiptap/vue-3","@vueuse/shared", -"colortranslator","embla-carousel-auto-height","embla-carousel-auto-scroll","embla-carousel-autoplay", -"embla-carousel-class-names","embla-carousel-fade","embla-carousel-vue","embla-carousel-wheel-gestures","knitwork", -"motion-v","reka-ui","tailwind-variants","unplugin-auto-import","unplugin-vue-components","vaul-vue", -"vue-component-type-helpers","@nuxt/eslint-config","@nuxt/module-builder","@nuxt/test-utils","@tanstack/table-core","ai", -"vitest-environment-nuxt","nuxt-ui","ui-framework", -"country-code","country-codes","country-flags","country-names","country-telephone-codes","country-telephone-prefixes", -"countries","country-iso-codes","iso","iso-codes","iso-country-codes","iso-country-names","iso-country-telephone-codes", -"iso-country-telephone-prefixes","iso-countries","emoji-flags","phone-codes","phone-prefixes","telephone-codes", -"telephone-prefixes","world-countries","world-country-codes","world-country-flags","world-country-names", -"world-country-telephone-codes","world-country-telephone-prefixes","world-iso-codes","world-iso-country-codes", -"world-iso-country-names","@zoroaster/assert","@zoroaster/mask","alamode","@a-la/fixture-alamode","@a-la/fixture-babel", -"@artdeco/clean-stack","@artdeco/erte","@artdeco/scripts.json","@depack/render","@wrote/exists","@wrote/rm", -"@zoroaster/reducer","@zoroaster/types","argufy","catchment","documentary","erotic","eslint-config-artdeco", -"makepromise","promto","reloquent","snapshot-context","spawncommand","temp-context","usually","yarn-s","IDE", -"suggestions","intellisense","assistant-cloud","@assistant-ui/tap","@assistant-ui/store","@radix-ui/primitive", -"@radix-ui/react-compose-refs","@radix-ui/react-context", -"@radix-ui/react-dropdown-menu","@radix-ui/react-popover","@radix-ui/react-primitive","@radix-ui/react-use-callback-ref", -"@radix-ui/react-use-escape-keydown","assistant-stream","@assistant-ui/x-buildutils","radix-ui","ai-sdk","assistant", -"openai","chatbot","copilot","ai-chat","ai-chatbot","ai-assistant","ai-copilot","chatgpt","gpt4","gpt-4", -"conversational-ui","conversational-ai","graphiql","radash","@a2a-js/sdk","js-tiktoken","@lukeed/uuid","hono-openapi", -"@isaacs/ttlcache","@ai-sdk/provider-v5","@ai-sdk/provider-v6","@ai-sdk/ui-utils-v5","@mastra/schema-compat", -"@ai-sdk/provider-utils-v5","@ai-sdk/provider-utils-v6","@ai-sdk/azure","@ai-sdk/openai","@internal/lint", -"@internal/ai-v6","@internal/ai-sdk-v4","@internal/ai-sdk-v5","@internal/types-builder","@internal/external-types", -"@openrouter/ai-sdk-provider","llm","llms","agents","vectorstore","embeddings","rag","evals","otel","@tailwindcss/ui", -"@types/sortablejs","vue-next","draggable","drag-and-drop","vue-draggable","kanban","composition-api", -"@oxc-project/runtime","hmac256","hmac512","@ant-design/pro-components", -"@anthropic-ai/sdk","@azure-rest/ai-inference","@cfworker/json-schema","@clerk/localizations","@clerk/nextjs", -"@clerk/themes","@cyntler/react-doc-viewer","@fal-ai/client","@formkit/auto-animate","@google/genai", -"@huggingface/inference","@icons-pack/react-simple-icons","@khmyznikov/pwa-install","@langchain/community", -"@lobechat/agent-runtime","@lobechat/const","@lobechat/context-engine","@lobechat/database", -"@lobechat/electron-client-ipc","@lobechat/electron-server-ipc","@lobechat/fetch-sse","@lobechat/file-loaders", -"@lobechat/model-runtime","@lobechat/observability-otel","@lobechat/prompts","@lobechat/python-interpreter", -"@lobechat/utils","@lobechat/web-crawler","@lobehub/analytics","@lobehub/charts","@lobehub/chat-plugin-sdk", -"@lobehub/chat-plugins-gateway","@lobehub/editor","@lobehub/icons","@lobehub/market-sdk","@lobehub/tts","@lobehub/ui", -"@neondatabase/serverless","@next/third-parties","@opentelemetry/exporter-jaeger","@opentelemetry/winston-transport", -"@react-pdf/renderer","@react-spring/web","@saintno/comfyui-sdk","@serwist/next","@t3-oss/env-nextjs","@trpc/client", -"@trpc/next","@trpc/react-query","@vercel/analytics","@vercel/edge-config","@vercel/functions","@vercel/speed-insights", -"@virtuoso.dev/masonry","@xterm/xterm","brotli-wasm","countries-and-timezones","dexie","drizzle-orm","drizzle-zod", -"gpt-tokenizer","i18next-resources-to-backend","js-sha256","jsonl-parse-stringify", -"langchain","langfuse","langfuse-core","lucide-react","markdown-to-txt","model-bank","modern-screenshot", -"next-mdx-remote","nextjs-toploader","nuqs","officeparser","oidc-provider","ollama","partial-json","path-browserify-esm", -"pdf-parse","plaiceholder","posthog-js","pwa-install-handler","react-confetti","react-hotkeys-hook","react-layout-kit", -"react-pdf","react-rnd","react-scan","react-virtuoso","react-wrap-balancer","resolve-accept-language","rtl-detect", -"ssrf-safe-fetch","svix","tokenx","ts-md5","unstructured-client","use-merge-value","word-extractor","zustand-utils", -"@huggingface/tasks","@lobehub/i18n-cli","@lobehub/lint","@lobehub/market-types","@lobehub/seo-cli", -"@next/bundle-analyzer","@peculiar/webcrypto","@types/chroma-js","@types/crypto-js","@types/ip","@types/numeral", -"@types/oidc-provider","@types/pdfkit","@types/pg","@types/rtl-detect","dbdocs","dpdm-fast","drizzle-dbml-generator", -"drizzle-kit","eslint-plugin-mdx","fake-indexeddb","just-diff","mcp-hello-world","remark-mdx","serwist","vercel-ai", -"azure-openai", -"visual-model","tts","stt","modelcontextprotocol","mcp","context7","vibe-coding","developer tools", -"@types/istanbul-lib-report","@walletconnect/time","@walletconnect/events","label","better-npm-run","clamp.js", -"karma-fixture","karma-opera-launcher","minimalistic","@types/webrtc","detectrtc","install-peers-cli","prepend-file", -"camera","webcam","cam","webRTC","react-native-worklets","visionOS","tvOS","macOS","cpp","swift","jsi","@antfu/ni", -"@dotenvx/dotenvx","@types/validate-npm-package-name","stringify-object","@types/stringify-object","virtual-core", -"datagrid","2fa","hotp","topt","google authenticator","authenticator","one time password","one-time-password","2 factor", -"survey","surveyjs","survey-library","form-component","form-rendering","survey-renderer","dynamic-form", -"interactive-form","form-library","form-management","questionnaire","data-collection","data-validation", -"input-validation","ui-component","schema-form","base64-stream", -"bplist-creator","@mrleebo/prisma-ast","@electric-sql/pglite-socket","@prisma/query-plan-executor","common-stuff", -"accelerate","@aws-lite/client","@aws-lite/s3","@architect/eslint-config","mock-tmp","tap-arc","cloudfunctions", -"apigateway","api gateway","@webgpu/types","@tinymce/tinymce-react","n1ed","@headlessui/tailwindcss","@heroicons/react", -"@tailwindplus/elements","@types/sharp","react-docgen-typescript","react-lib-tools","rollup-preserve-directives", -"ts-blank-space","vitest-fail-on-console","windowed","@extend-chrome/messages","@extend-chrome/storage","@types/chrome", -"@types/jsesc","vite-plugin-inspect","chrome-extension","webext","webextension","browser-extension","isoformat", -"interval-tree-1d","htl","@types/d3","apache-arrow","d3-geo-projection","@observablehq/stdlib","string-split-by", -"cargo-cp-artifact","skia","offscreen","compositing","vulkan","metal","flmngr","imgpen","unsplash","@types/listr", -"markdown-to-pdf","pdf-generation","assignments","homework","html-to-pdf","@applitools/core","@applitools/logger", -"@applitools/req","@applitools/snippets","@applitools/image", -"@applitools/spec-driver-webdriver","@antora/user-require-helper","kapok-js","@asciidoctor/core", -"@antora/asciidoc-loader","navigation","asciidoc","pod-install","pinch-to-zoom","pinch","@farmfe/cli","@farmfe/core", -"bun-types-no-globals","eslint-plugin-format","unloader","redirects","@antora/file-publisher","publisher", -"vite-plugin-dts-bundle-generator","vite-plugin-pages","vite-plugin-typescript","vite-plugin-typescript-transform", -"box2d","game","physics","2d","replace-in-files-cli","sandboxed-module","oxc","exact-versions","turborepo", -"version-linter","@jsdevtools/ez-spawn","@napi-rs/magic-string","@pnpm/list","@pnpm/workspace.find-packages", -"@types/treeverse","@types/yarnpkg__lockfile","fast-npm-meta","@nolyfill/internal","@nolyfill/promise.any","fumadb", -"kysely","@orpc/zod","@orpc/otel","neverthrow","@c15t/logger","@orpc/server","@orpc/openapi","@orpc/contract", -"@c15t/translations","@opentelemetry/sdk-node","kysely-pglite","@c15t/vitest-config","@libsql/kysely-libsql", -"@c15t/typescript-config","consent","privacy","ccpa","lgpd","self-host","consent-management","user-privacy", -"data-protection", -"cookie-banner","consent-management-platform","cmp","consent-banner","@ampproject/rollup-plugin-closure-compiler", -"@fezvrasta/tsc-silent","@khanacademy/flow-to-ts","babel-plugin-inline-replace-variables","poster", -"rollup-plugin-flow-entry","popper","positioning engine","anime","anime.js","timeline","easings","cubic-bezier", -"splitText","WAAPI","Canvas","WebGL","decrypt","ev-emitter","fizzy-ui-utils","get-size","imagesloaded","unidragger", -"eslint-plugin-metafizzy","jquery-bridget","flick","gulp-wrap-commonjs","lex","maths","persist-schema","jugglingdb", -"panorama","rip-out","eslint-config-godaddy-react","setup-env","compatiblity","rollup-plugin-eslint", -"rollup-plugin-sass","testit","gethub","bits","iec"], -[5,293,294], -[0,-3015,-3016,-3017,-3018], -1771718400000, -1771113600000, -1770508800000, -[0], -1772323200000, -1772409600000, -1772064000000, -1771804800000, -[1,24,619], -[1,3,621], -[0,-519,-2384,-2541], -[0,-3040,-3052,-1031,-2006,-2019,-2410], -[0,-3095,-3098,-3099,-3161,-3100,-2006,-3159,-3160,-2494], -[1,3,440], -[1,3,1832], -[0,-3488,-681,-3489,-3490,-3491,-3492], -[1,3,1826], -[0,-3220], -[0,-1889], -[0,-424], -[0,-3557,-3018], -true, -[1,3,622], -[0,-1654], -[0,-2006,-2019], -[0,-4298,-4300,-2319], -[1,3,1783], -[0,-2322], -[1,24,585], -[0,-2387], -[0,-1548], -[0,-531], -[0,-7841], -[0,-2410], -[0,-932], -[0,-44], -[0,-1787], -[0,-2006], -[0,-856,-3262,-2476,-2816], -[1,3,674], -[0,-18,-19,-471,-487,-498,-504,-577,-588,-590,-591,-592,-603,-604,-605,-5421,-606,-607,-608,-609,-610,-5422,-611,-612, --613,-5423,-626,-631,-643,-660,-663,-5424,-670,-676,-5425,-5426,-5427,-5428,-5429,-804,-830,-833,-836,-998,-5430,-5431, --1019,-1020,-1095,-1121,-5432,-1280,-1282,-1307,-1308,-5433,-1378,-1511,-1512,-1513,-5434,-1516,-1584,-1596, --5435,-1615,-5436,-1648,-1679,-1684,-1695,-1720,-1799,-5437,-1803,-1822,-1869,-1886,-5438,-1994,-2067,-5439,-2158,-2169, --5440,-5441,-2196,-2201,-2203,-2209,-2217,-2237,-5442,-2238,-2252,-5443,-2256,-2290,-5444,-2296,-2298,-2309,-2348,-2366, --2370,-5445,-5446,-5447,-2426,-5448,-5449,-2527], -[0,-18,-19,-676,-1994,-2426], -[1,3,1519], -[1,3,2972], -[0,-2501], -[0,-9219], -[0,-775,-1889,-3583], -[0,-23,-3219], -[1,3,1044], -[1,3,1396], -[1,3,1875], -[0,-519,-2541], -[0,-1654,-1941], -[0,-4633,-3445,-3100,-7566], -[0,-15394,-15395,-4276,-15396,-3162,-6935,-2494,-770,-15397,-15398], -[0,-3488,-681,-3489,-3518,-3492], -[0,-1934], -[1,3,623], -[1,24,645], -[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3960,-3262,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966, --3967,-1965,-3968,-1966,-3969,-2063,-3970,-3971,-3108,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], -[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340], -[0,-2476,-3944,-3100,-4590,-3098,-4591,-4592,-4593,-4594], -[1,3,1380], -[0,-18,-19,-471,-498,-504,-577,-588,-590,-591,-592,-603,-604,-605,-606,-607,-608,-609,-5423,-626,-631,-660,-663,-670,-676, --5426,-5429,-804,-830,-833,-836,-998,-5431,-1095,-1121,-5432,-1280,-1282,-1308,-5433,-1511,-1512,-1513,-1516,-1584,-1596, --1615,-1648,-1679,-1684,-1695,-1720,-1799,-5437,-1803,-1822,-1869,-1886,-5438,-1994,-2169,-5441,-2201,-2203, --2209,-2217,-2237,-5442,-2238,-2252,-2256,-2290,-5444,-2296,-2298,-2309,-2348,-2366,-2370,-5445,-5446,-5447,-2426,-5448, --5449], -[0,-18,-19,-467,-471,-487,-498,-504,-6147,-575,-577,-588,-590,-591,-592,-6148,-603,-604,-605,-5421,-606,-607,-608,-609, --610,-5422,-611,-612,-613,-6149,-5423,-625,-626,-6150,-631,-6151,-643,-660,-663,-5424,-670,-675,-676,-5425,-5426,-6152, --6153,-5427,-5428,-5429,-804,-830,-833,-6154,-836,-842,-890,-998,-5430,-6155,-5431,-1019,-1020,-1035, --1073,-1084,-6156,-1095,-1117,-1120,-1121,-5432,-1279,-1280,-1282,-1295,-1307,-1308,-1314,-6157,-5433,-1378,-6158,-6159, --1511,-1512,-1513,-5434,-1516,-6160,-1584,-6161,-1596,-5435,-1615,-5436,-1648,-1677,-6162,-6163,-1678,-1679,-1684,-1695, --6164,-1720,-1799,-5437,-1803,-1822,-6165,-1865,-1869,-1886,-5438,-1994,-2067,-5439,-6166,-2158,-2159,-2164,-2169,-5440, --6167,-5441,-6168,-2196, --2201,-2203,-2208,-2209,-2217,-2221,-2224,-2225,-2237,-5442,-6169,-2238,-2241,-2252,-5443,-2256,-6170,-2288,-2290,-5444, --2296,-2298,-2309,-2315,-2348,-6171,-6172,-2366,-2370,-5445,-5446,-5447,-2426,-2431,-2458,-5448,-6173,-6174,-2496,-2497, --5449,-6175,-2527], -[1,3,2681], -[0,-1654,-2198], -[0,-2319], -[0,-2460], -[0,-4864,-3214,-11467,-11468,-5270,-5271,-15723,-3634], -[1,3,308], -[0,-719], -[0,-4362], -[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, --5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, --5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189], -[1,3,1342], -[1,3,1453], -[1,3,1877], -[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], -[1,3,2054], -[0,-1754], -[0,-2471], -[0,-3214,-8058,-8059,-4004,-3476,-2006,-1062,-3634,-8060,-8061,-4873,-1654], -[0,-2250], -[0,-5334], -[0,-1202,-1654], -[0,-1406], -[0,-1931], -[0,-3037], -[0,-3037,-652,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-3161,-3481,-3098,-3162,-14919], -[0,-1967], -[0,-2410,-2409,-11398,-5406,-3691,-5728,-3690,-10796,-15307,-3445,-15308], -[1,3,10143], -[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, --5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, --5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15365], -[0,-3577,-3100,-2808,-5157,-5158,-659,-5159,-5160,-5161,-5155,-5164,-5165,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775, --3264,-5180,-5181,-5182,-15367], -[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, --5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, --5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15368], -[1,3,10608], -[0,-23], -[0,-3510,-3488,-681,-3489,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161], -[1,24,583], -[0,-1599,-3670,-3671,-3672,-856,-3673,-3674,-3262], -[0,-3770,-906,-2006,-775,-3771], -[0,-2080], -[0,-519,-525,-4005,-4037,-1001,-4038,-4039,-4040,-1412,-1415,-1449,-1654,-4041,-4042,-1989,-4043,-4044,-4045,-2319,-2322, --4004,-3634,-2410,-2490], -[0,-703], -[0,-475,-856,-3262,-4258,-4259,-3690,-4260,-4261], -[0,-3158,-3095,-3098,-3099,-3161,-3100,-2006,-3159,-3160], -[0,-5014,-5015,-5016,-5017,-5018,-5019,-5020,-5021,-5022,-5023,-5024], -[0,-2469,-3664], -[0,-3262,-5355,-2501,-2006,-5371,-5372,-1599,-3098,-856], -[0,-1654,-664], -[0,-3037,-519,-2384,-2541], -[0,-567], -[0,-2267], -[0,-2541], -[0,-7475], -[0,-3136,-3037,-427,-428,-932,-940,-7476,-948,-958,-1415,-1942,-2375,-2391,-2402,-2410], -[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-427], -[0,-2320,-2322], -[0,-932,-1654], -[0,-1645], -[0,-932,-937,-1001,-1654,-1788], -[0,-1127,-1134,-1144,-1143,-1146], -[0,-1127,-1134,-1143,-1144,-1146], -[0,-664,-1654], -[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788], -[0,-756,-932,-940,-1344,-1415,-1534,-1889,-1942], -[0,-3037,-2410], -[0,-664,-1654,-2379,-2501,-21,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40,-15393,-42], -[0,-8096,-14182,-652,-725,-1942,-2094,-2100,-2125,-2322,-2399,-2410,-2541], -[0,-12449,-12613,-13616,-13615,-8897,-2363,-3214,-2410,-2006,-2476,-2299,-9608], -[0,-3951,-2410], -[1,3,313], -[0,-3183,-525,-3184,-3185,-3186,-526,-3116], -[0,-3183,-525,-3205,-3206,-3184,-3207,-3208,-3209,-3185,-3186,-3210,-527,-3116], -[0,-24], -[0,-753,-2082], -[0,-3417,-3418,-3419,-3420,-3421,-3422,-3423,-714,-1028,-1039,-1107,-1442,-1449,-3424,-1600,-3245,-1601,-3425,-3426,-1602, --3427,-3428,-3429,-3430,-1616,-1689,-3431,-3432,-1955,-1974,-1978,-3433,-3434,-2446,-3435,-2550], -[0,-2281,-3436,-2284], -[0,-687,-1599,-3437,-3438,-3328,-3439,-3440,-3441,-856,-3262], -[0,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161,-3510,-3488,-681,-3489], -[0,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161,-3488,-681,-3489,-3518,-3492], -[0,-739,-721,-687], -[0,-3499,-475,-856,-3098,-3551,-3552,-3015,-1599], -[0,-775,-2162,-3575,-3576,-3577,-3161,-3578], -[0,-3634,-3440,-793,-3635,-3636], -[0,-3812,-3813,-3814,-3815,-3816,-3817,-856,-3818], -[0,-3821,-3822,-3823,-3824,-3825,-3826,-2006,-2019], -[0,-3836], -[0,-3827,-3837,-3838,-3167,-3839,-620], -[0,-3136,-3037,-427,-428,-932,-933,-935,-940,-958,-959,-962,-967,-1415,-1424,-1942,-2375,-2376,-2379,-2402,-2410], -[0,-3161,-1334,-3690,-3578], -[0,-3037,-928,-1942,-2319,-2386,-2402], -[0,-687,-3958,-3999,-3099,-4000,-4001,-4002], -[0,-1535,-1536,-687,-4107,-4108,-4109,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], -[1,3,825], -[0,-2006,-3159,-3119,-1613], -[0,-4055,-3690,-4140,-4141,-4142,-4143,-4144,-2410,-3018,-3445,-3577], -[0,-4165,-856,-4100,-3485,-4156,-3215,-2250], -[0,-4328,-4329,-1105,-4330,-1599,-3437,-856,-4331,-3264,-1764], -[0,-4332,-4335,-4345,-4346,-4340,-4347], -[0,-4332,-4336,-4337,-4338,-4339,-4340,-4344], -[0,-234,-3044,-5011,-3738,-865,-985,-1771,-1788,-5012,-2376,-5013,-2392,-2469,-2503,-2509], -[0,-5096], -[0,-5141,-4601,-4602,-3578,-3445], -[0,-5140], -[0,-3497,-3496,-3161,-3264,-5246,-3862,-3495,-5247,-3494], -[0,-433,-436], -[0,-1788,-1654,-932,-821,-966,-958,-968,-943,-963,-974], -[0,-475,-3161,-4865,-5495], -[0,-3690,-489,-4100,-856,-3691,-5728], -[0,-1047], -[1,3,1788], -[0,-2155], -[0,-581,-5110,-6120,-3173,-6129,-6130,-770], -[1,3,1820], -[1,3,1876], -[1,3,1878], -[0,-1309], -[0,-1592,-1654,-664], -[0,-6657,-6658,-4868,-4004,-6659], -[0,-2231], -[0,-6689,-2115], -[0,-714], -[0,-3966,-3957,-6722,-687,-4002,-6723,-6724,-4112,-714,-4672], -[0,-3214,-6784,-711,-3116], -[0,-2337], -[0,-465,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], -[0,-711], -[0,-856,-1599], -[0,-865], -[0,-891], -[0,-5558,-3591,-633,-6340,-6408,-6916,-3870], -[0,-932,-8163,-727,-8164,-3214,-4900,-4795,-8165,-6434,-8166], -[0,-932,-5208,-3784], -[0,-429], -[0,-932,-5208,-3784,-3966,-3967,-3217,-7094,-6656,-1847,-6024,-4792], -[0,-932,-3784,-5208,-2006], -[0,-426], -[0,-1004,-3161,-6125,-3578,-1334,-3691,-5728,-3122,-3994,-3690], -[0,-1107,-5064,-5922,-8528], -[0,-1543,-2168], -[0,-1654,-2125,-2250], -[0,-1127,-1144], -[0,-510,-2125], -[0,-9219,-1654,-4004], -[0,-1127,-1132,-2541], -[0,-519,-1168,-1825,-2460,-2541], -[0,-2347], -[0,-1252,-1654,-2198,-2460], -[0,-2347,-1876], -[0,-1876,-2347], -[0,-519,-1825,-2460,-2541], -[0,-3037,-652,-1294,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-1696,-596], -[0,-707,-1510], -[0,-1580], -[0,-1386,-9944,-9945,-3162,-3994,-9946,-752,-5269,-1861], -[0,-519,-9982,-2384,-2541], -[0,-4004,-3634,-1412,-4873,-3440], -[0,-4034], -[0,-5092,-3264,-5388,-5387], -[0,-1452], -[0,-2518], -[0,-1646], -[0,-1523,-10558,-5827,-7685,-7773,-4634,-6005,-4055], -[0,-3326,-351,-3266,-652,-932,-943,-1600,-3668,-1654,-2127], -[0,-4792,-6137,-6138,-6134,-9405,-11114,-4004,-4215,-8611], -[0,-1127], -[0,-687,-3957,-11725,-3673,-1764,-11726,-11727,-8907,-10227,-5921,-4107], -[0,-3994,-1805,-1810,-11816,-11817,-11818,-11819,-11820,-11821,-7095,-4865,-3496,-7237,-7863,-2435,-11822,-7303,-4377, --7091,-8421,-6599,-1958,-3258,-6656], -[0,-6748,-4377,-5829,-3215,-6747,-687,-3957], -[0,-1654,-664,-666], -[0,-1841,-6120,-8449,-3173,-8450,-6121,-1791,-11437], -[0,-2541,-519,-2384], -[0,-1859,-11878,-11613], -[1,3,6920], -[0,-523], -[0,-635,-1934], -[1,3,7131], -[1,3,7300], -[0,-2006,-12452], -[0,-2006,-2034,-5271,-5270,-3162,-7085,-12561,-12562], -[1,3,7605], -[0,-2006,-3122,-10470,-9843,-1306,-10606], -[1,3,7706], -[1,3,7712], -[0,-2384,-2541], -[0,-12913], -[0,-2127,-12913,-4795,-1764,-3209], -[0,-2006,-3161,-1713,-3578,-3844,-3966,-3577,-3445,-687,-2455], -[1,3,8114], -[1,3,8321], -[1,3,8373], -[0,-9214,-2359,-2330,-13745,-6909,-11846,-13746], -[0,-2410,-856,-3262], -[0,-2444], -[0,-3100,-3161,-6211,-14339,-14340,-2466], -[0,-14357], -[0,-3113,-7646,-7641,-3673,-687,-3970,-3108,-3960,-3262,-3976,-3994], -[0,-3214,-3100,-2006,-3481], -[1,24,9789], -[0,-2662], -[1,24,10023], -[0,-1386,-3161,-2006,-3162,-3994,-9946,-3995,-752,-3997,-3998], -[0,-15309], -[1,3,10151], -[0,-856,-3262,-2476], -[0,-15415,-15416,-15417,-15418,-11853,-10655,-15419,-6711,-15420,-15421,-4126,-15071,-2006,-15422,-475,-2476,-5270,-3162, --11321,-15423,-15424], -[0,-4258,-7641,-3100,-4865,-6342,-9290], -[0,-15445,-3445], -[0,-3037,-652,-1942,-2094,-2100,-2384,-2399,-2410,-2541], -[0,-1368], -[0,-525,-2006,-1368,-3161,-4729,-9850,-9613], -[0,-15627,-14386,-15628,-15629,-15630,-4864,-3634,-3636], -[1,3,10609], -[0,-15699,-3967,-6209,-2410,-15700,-15701,-3161,-11894], -[1,3,10660], -[1,3,10677], -[1,3,10691], -[1,3,10722], -[0,-1313,-3445,-15751,-15752,-3161,-9840], -[0,-2006,-3161,-15804,-15805], -[0,-1415,-932,-2127,-2375,-1942,-2410,-3136,-940,-967,-1419,-428,-427], -[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3960,-3262,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966, --3967,-1965,-3968,-1966,-3969,-2063,-3970,-3971,-3108,-3972,-3973,-3974,-3975,-3694,-2410,-3160,-3976,-2559,-3977], -[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, --5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, --5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364], -[1,3,10858], -[0,-231,-2900], -[1,24,11236], -[0,-1,-2,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-23,-24,-25,-26,-27,-28,-29,-30,-31,-32, --33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62, --63, --64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93, --94,-95,-96,-97,-98,-99,-100,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-113,-114,-115,-116,-117,-118, --119,-120,-121,-122,-123,-124,-125,-126,-127, --128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139,-140,-141,-142,-143,-144,-145,-146,-147,-148,-149,-150,-151, --152,-153,-154,-155,-156,-157,-158,-159,-160,-161,-162,-163,-164,-165,-166,-167,-168,-169,-170,-171,-172,-173,-174,-175, --176,-177,-178,-179,-180,-181,-182,-183,-184,-185,-186,-187,-188,-189,-190,-191, --192,-193,-194,-195,-196,-197,-198,-199,-200,-201,-202,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-215, --216,-217,-218,-219,-220,-221,-222,-223,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,-235,-236,-237,-238,-239, --240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255, --256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-274,-275,-276,-277,-278,-279, --280,-281,-282,-283,-284,-285,-286,-287,-288,-289,-290,-291,-292,-293,-294,-295,-296,-297,-298,-299,-300,-301,-302,-303, --304,-305,-306,-307,-308,-309,-310,-311,-312,-313,-314,-315,-316,-317,-318,-319, --320,-321,-322,-323,-324,-325,-326,-327,-328,-329,-330,-331,-332,-333,-334,-335,-336,-337,-338,-339,-340,-341,-342,-343, --344,-345,-346,-347,-348,-349,-350,-351,-352,-353,-354,-355,-356,-357,-358,-359,-360,-361,-362,-363,-364,-365,-366,-367, --368,-369,-370,-371,-372,-373,-374,-375,-376,-377,-378,-379,-380,-381,-382,-383, --384,-385,-386,-387,-388,-389,-390,-391,-392,-393,-394,-395,-396,-397,-398,-399,-400,-401,-402,-403,-404,-405,-406,-407, --408,-409,-410,-411,-412,-413,-414,-415,-416,-417,-418,-419,-420,-421,-422,-423,-424,-425,-426,-427,-428,-429,-430,-431, --432,-433,-434,-435,-436,-437,-438,-439,-440,-441,-442,-443,-444,-445,-446,-447, --448,-449,-450,-451,-452,-453,-454,-455,-456,-457,-458,-459,-460,-461,-462,-463,-464,-465,-466,-467,-468,-469,-470,-471, --472,-473,-474,-475,-476,-477,-478,-479,-480,-481,-482,-483,-484,-485,-486,-487,-488,-489,-490,-491,-492,-493,-494,-495, --496,-497,-498,-499,-500,-501,-502,-503,-504,-505,-506,-507,-508,-509,-510,-511, --512,-513,-514,-515,-516,-517,-518,-519,-520,-521,-522,-523,-524,-525,-526,-527,-528,-529,-530,-531,-532,-533,-534,-535, --536,-537,-538,-539,-540,-541,-542,-543,-544,-545,-546,-547,-548,-549,-550,-551,-552,-553,-554,-555,-556,-557,-558,-559, --560,-561,-562,-563,-564,-565,-566,-567,-568,-569,-570,-571,-572,-573,-574,-575, --576,-577,-578,-579,-580,-581,-582,-583,-584,-585,-586,-587,-588,-589,-590,-591,-592,-593,-594,-595,-596,-597,-598,-599, --600,-601,-602,-603,-604,-605,-606,-607,-608,-609,-610,-611,-612,-613,-614,-615,-616,-617,-618,-619,-620,-621,-622,-623, --624,-625,-626,-627,-628,-629,-630,-631,-632,-633,-634,-635,-636,-637,-638,-639, --640,-641,-642,-643,-644,-645,-646,-647,-648,-649,-650,-651,-652,-653,-654,-655,-656,-657,-658,-659,-660,-661,-662,-663, --664,-665,-666,-667,-668,-669,-670,-671,-672,-673,-674,-675,-676,-677,-678,-679,-680,-681,-682,-683,-684,-685,-686,-687, --688,-689,-690,-691,-692,-693,-694,-695,-696,-697,-698,-699,-700,-701,-702,-703, --704,-705,-706,-707,-708,-709,-710,-711,-712,-713,-714,-715,-716,-717,-718,-719,-720,-721,-722,-723,-724,-725,-726,-727, --728,-729,-730,-731,-732,-733,-734,-735,-736,-737,-738,-739,-740,-741,-742,-743,-744,-745,-746,-747,-748,-749,-750,-751, --752,-753,-754,-755,-756,-757,-758,-759,-760,-761,-762,-763,-764,-765,-766,-767, --768,-769,-770,-771,-772,-773,-774,-775,-776,-777,-778,-779,-780,-781,-782,-783,-784,-785,-786,-787,-788,-789,-790,-791, --792,-793,-794,-795,-796,-797,-798,-799,-800,-801,-802,-803,-804,-805,-806,-807,-808,-809,-810,-811,-812,-813,-814,-815, --816,-817,-818,-819,-820,-821,-822,-823,-824,-825,-826,-827,-828,-829,-830,-831, --832,-833,-834,-835,-836,-837,-838,-839,-840,-841,-842,-843,-844,-845,-846,-847,-848,-849,-850,-851,-852,-853,-854,-855, --856,-857,-858,-859,-860,-861,-862,-863,-864,-865,-866,-867,-868,-869,-870,-871,-872,-873,-874,-875,-876,-877,-878,-879, --880,-881,-882,-883,-884,-885,-886,-887,-888,-889,-890,-891,-892,-893,-894,-895, --896,-897,-898,-899,-900,-901,-902,-903,-904,-905,-906,-907,-908,-909,-910,-911,-912,-913,-914,-915,-916,-917,-918,-919, --920,-921,-922,-923,-924,-925,-926,-927,-928,-929,-930,-931,-932,-933,-934,-935,-936,-937,-938,-939,-940,-941,-942,-943, --944,-945,-946,-947,-948,-949,-950,-951,-952,-953,-954,-955,-956,-957,-958,-959, --960,-961,-962,-963,-964,-965,-966,-967,-968,-969,-970,-971,-972,-973,-974,-975,-976,-977,-978,-979,-980,-981,-982,-983, --984,-985,-986,-987,-988,-989,-990,-991,-992,-993,-994,-995,-996,-997,-998,-999,-1000,-1001,-1002,-1003,-1004,-1005, --1006,-1007,-1008,-1009,-1010,-1011,-1012,-1013,-1014,-1015,-1016,-1017,-1018,-1019,-1020,-1021,-1022,-1023, --1024,-1025,-1026,-1027,-1028,-1029,-1030,-1031,-1032,-1033,-1034,-1035,-1036,-1037,-1038,-1039,-1040,-1041,-1042,-1043, --1044,-1045,-1046,-1047,-1048,-1049,-1050,-1051,-1052,-1053,-1054,-1055,-1056,-1057,-1058,-1059,-1060,-1061,-1062,-1063, --1064,-1065,-1066,-1067,-1068,-1069,-1070,-1071,-1072,-1073,-1074,-1075,-1076,-1077,-1078,-1079,-1080,-1081,-1082,-1083, --1084,-1085,-1086,-1087, --1088,-1089,-1090,-1091,-1092,-1093,-1094,-1095,-1096,-1097,-1098,-1099,-1100,-1101,-1102,-1103,-1104,-1105,-1106,-1107, --1108,-1109,-1110,-1111,-1112,-1113,-1114,-1115,-1116,-1117,-1118,-1119,-1120,-1121,-1122,-1123,-1124,-1125,-1126,-1127, --1128,-1129,-1130,-1131,-1132,-1133,-1134,-1135,-1136,-1137,-1138,-1139,-1140,-1141,-1142,-1143,-1144,-1145,-1146,-1147, --1148,-1149,-1150,-1151, --1152,-1153,-1154,-1155,-1156,-1157,-1158,-1159,-1160,-1161,-1162,-1163,-1164,-1165,-1166,-1167,-1168,-1169,-1170,-1171, --1172,-1173,-1174,-1175,-1176,-1177,-1178,-1179,-1180,-1181,-1182,-1183,-1184,-1185,-1186,-1187,-1188,-1189,-1190,-1191, --1192,-1193,-1194,-1195,-1196,-1197,-1198,-1199,-1200,-1201,-1202,-1203,-1204,-1205,-1206,-1207,-1208,-1209,-1210,-1211, --1212,-1213,-1214,-1215, --1216,-1217,-1218,-1219,-1220,-1221,-1222,-1223,-1224,-1225,-1226,-1227,-1228,-1229,-1230,-1231,-1232,-1233,-1234,-1235, --1236,-1237,-1238,-1239,-1240,-1241,-1242,-1243,-1244,-1245,-1246,-1247,-1248,-1249,-1250,-1251,-1252,-1253,-1254,-1255, --1256,-1257,-1258,-1259,-1260,-1261,-1262,-1263,-1264,-1265,-1266,-1267,-1268,-1269,-1270,-1271,-1272,-1273,-1274,-1275, --1276,-1277,-1278,-1279, --1280,-1281,-1282,-1283,-1284,-1285,-1286,-1287,-1288,-1289,-1290,-1291,-1292,-1293,-1294,-1295,-1296,-1297,-1298,-1299, --1300,-1301,-1302,-1303,-1304,-1305,-1306,-1307,-1308,-1309,-1310,-1311,-1312,-1313,-1314,-1315,-1316,-1317,-1318,-1319, --1320,-1321,-1322,-1323,-1324,-1325,-1326,-1327,-1328,-1329,-1330,-1331,-1332,-1333,-1334,-1335,-1336,-1337,-1338,-1339, --1340,-1341,-1342,-1343, --1344,-1345,-1346,-1347,-1348,-1349,-1350,-1351,-1352,-1353,-1354,-1355,-1356,-1357,-1358,-1359,-1360,-1361,-1362,-1363, --1364,-1365,-1366,-1367,-1368,-1369,-1370,-1371,-1372,-1373,-1374,-1375,-1376,-1377,-1378,-1379,-1380,-1381,-1382,-1383, --1384,-1385,-1386,-1387,-1388,-1389,-1390,-1391,-1392,-1393,-1394,-1395,-1396,-1397,-1398,-1399,-1400,-1401,-1402,-1403, --1404,-1405,-1406,-1407, --1408,-1409,-1410,-1411,-1412,-1413,-1414,-1415,-1416,-1417,-1418,-1419,-1420,-1421,-1422,-1423,-1424,-1425,-1426,-1427, --1428,-1429,-1430,-1431,-1432,-1433,-1434,-1435,-1436,-1437,-1438,-1439,-1440,-1441,-1442,-1443,-1444,-1445,-1446,-1447, --1448,-1449,-1450,-1451,-1452,-1453,-1454,-1455,-1456,-1457,-1458,-1459,-1460,-1461,-1462,-1463,-1464,-1465,-1466,-1467, --1468,-1469,-1470,-1471, --1472,-1473,-1474,-1475,-1476,-1477,-1478,-1479,-1480,-1481,-1482,-1483,-1484,-1485,-1486,-1487,-1488,-1489,-1490,-1491, --1492,-1493,-1494,-1495,-1496,-1497,-1498,-1499,-1500,-1501,-1502,-1503,-1504,-1505,-1506,-1507,-1508,-1509,-1510,-1511, --1512,-1513,-1514,-1515,-1516,-1517,-1518,-1519,-1520,-1521,-1522,-1523,-1524,-1525,-1526,-1527,-1528,-1529,-1530,-1531, --1532,-1533,-1534,-1535, --1536,-1537,-1538,-1539,-1540,-1541,-1542,-1543,-1544,-1545,-1546,-1547,-1548,-1549,-1550,-1551,-1552,-1553,-1554,-1555, --1556,-1557,-1558,-1559,-1560,-1561,-1562,-1563,-1564,-1565,-1566,-1567,-1568,-1569,-1570,-1571,-1572,-1573,-1574,-1575, --1576,-1577,-1578,-1579,-1580,-1581,-1582,-1583,-1584,-1585,-1586,-1587,-1588,-1589,-1590,-1591,-1592,-1593,-1594,-1595, --1596,-1597,-1598,-1599, --1600,-1601,-1602,-1603,-1604,-1605,-1606,-1607,-1608,-1609,-1610,-1611,-1612,-1613,-1614,-1615,-1616,-1617,-1618,-1619, --1620,-1621,-1622,-1623,-1624,-1625,-1626,-1627,-1628,-1629,-1630,-1631,-1632,-1633,-1634,-1635,-1636,-1637,-1638,-1639, --1640,-1641,-1642,-1643,-1644,-1645,-1646,-1647,-1648,-1649,-1650,-1651,-1652,-1653,-1654,-1655,-1656,-1657,-1658,-1659, --1660,-1661,-1662,-1663, --1664,-1665,-1666,-1667,-1668,-1669,-1670,-1671,-1672,-1673,-1674,-1675,-1676,-1677,-1678,-1679,-1680,-1681,-1682,-1683, --1684,-1685,-1686,-1687,-1688,-1689,-1690,-1691,-1692,-1693,-1694,-1695,-1696,-1697,-1698,-1699,-1700,-1701,-1702,-1703, --1704,-1705,-1706,-1707,-1708,-1709,-1710,-1711,-1712,-1713,-1714,-1715,-1716,-1717,-1718,-1719,-1720,-1721,-1722,-1723, --1724,-1725,-1726,-1727, --1728,-1729,-1730,-1731,-1732,-1733,-1734,-1735,-1736,-1737,-1738,-1739,-1740,-1741,-1742,-1743,-1744,-1745,-1746,-1747, --1748,-1749,-1750,-1751,-1752,-1753,-1754,-1755,-1756,-1757,-1758,-1759,-1760,-1761,-1762,-1763,-1764,-1765,-1766,-1767, --1768,-1769,-1770,-1771,-1772,-1773,-1774,-1775,-1776,-1777,-1778,-1779,-1780,-1781,-1782,-1783,-1784,-1785,-1786,-1787, --1788,-1789,-1790,-1791, --1792,-1793,-1794,-1795,-1796,-1797,-1798,-1799,-1800,-1801,-1802,-1803,-1804,-1805,-1806,-1807,-1808,-1809,-1810,-1811, --1812,-1813,-1814,-1815,-1816,-1817,-1818,-1819,-1820,-1821,-1822,-1823,-1824,-1825,-1826,-1827,-1828,-1829,-1830,-1831, --1832,-1833,-1834,-1835,-1836,-1837,-1838,-1839,-1840,-1841,-1842,-1843,-1844,-1845,-1846,-1847,-1848,-1849,-1850,-1851, --1852,-1853,-1854,-1855, --1856,-1857,-1858,-1859,-1860,-1861,-1862,-1863,-1864,-1865,-1866,-1867,-1868,-1869,-1870,-1871,-1872,-1873,-1874,-1875, --1876,-1877,-1878,-1879,-1880,-1881,-1882,-1883,-1884,-1885,-1886,-1887,-1888,-1889,-1890,-1891,-1892,-1893,-1894,-1895, --1896,-1897,-1898,-1899,-1900,-1901,-1902,-1903,-1904,-1905,-1906,-1907,-1908,-1909,-1910,-1911,-1912,-1913,-1914,-1915, --1916,-1917,-1918,-1919, --1920,-1921,-1922,-1923,-1924,-1925,-1926,-1927,-1928,-1929,-1930,-1931,-1932,-1933,-1934,-1935,-1936,-1937,-1938,-1939, --1940,-1941,-1942,-1943,-1944,-1945,-1946,-1947,-1948,-1949,-1950,-1951,-1952,-1953,-1954,-1955,-1956,-1957,-1958,-1959, --1960,-1961,-1962,-1963,-1964,-1965,-1966,-1967,-1968,-1969,-1970,-1971,-1972,-1973,-1974,-1975,-1976,-1977,-1978,-1979, --1980,-1981,-1982,-1983, --1984,-1985,-1986,-1987,-1988,-1989,-1990,-1991,-1992,-1993,-1994,-1995,-1996,-1997,-1998,-1999,-2000,-2001,-2002,-2003, --2004,-2005,-2006,-2007,-2008,-2009,-2010,-2011,-2012,-2013,-2014,-2015,-2016,-2017,-2018,-2019,-2020,-2021,-2022,-2023, --2024,-2025,-2026,-2027,-2028,-2029,-2030,-2031,-2032,-2033,-2034,-2035,-2036,-2037,-2038,-2039,-2040,-2041,-2042,-2043, --2044,-2045,-2046,-2047, --2048,-2049,-2050,-2051,-2052,-2053,-2054,-2055,-2056,-2057,-2058,-2059,-2060,-2061,-2062,-2063,-2064,-2065,-2066,-2067, --2068,-2069,-2070,-2071,-2072,-2073,-2074,-2075,-2076,-2077,-2078,-2079,-2080,-2081,-2082,-2083,-2084,-2085,-2086,-2087, --2088,-2089,-2090,-2091,-2092,-2093,-2094,-2095,-2096,-2097,-2098,-2099,-2100,-2101,-2102,-2103,-2104,-2105,-2106,-2107, --2108,-2109,-2110,-2111, --2112,-2113,-2114,-2115,-2116,-2117,-2118,-2119,-2120,-2121,-2122,-2123,-2124,-2125,-2126,-2127,-2128,-2129,-2130,-2131, --2132,-2133,-2134,-2135,-2136,-2137,-2138,-2139,-2140,-2141,-2142,-2143,-2144,-2145,-2146,-2147,-2148,-2149,-2150,-2151, --2152,-2153,-2154,-2155,-2156,-2157,-2158,-2159,-2160,-2161,-2162,-2163,-2164,-2165,-2166,-2167,-2168,-2169,-2170,-2171, --2172,-2173,-2174,-2175, --2176,-2177,-2178,-2179,-2180,-2181,-2182,-2183,-2184,-2185,-2186,-2187,-2188,-2189,-2190,-2191,-2192,-2193,-2194,-2195, --2196,-2197,-2198,-2199,-2200,-2201,-2202,-2203,-2204,-2205,-2206,-2207,-2208,-2209,-2210,-2211,-2212,-2213,-2214,-2215, --2216,-2217,-2218,-2219,-2220,-2221,-2222,-2223,-2224,-2225,-2226,-2227,-2228,-2229,-2230,-2231,-2232,-2233,-2234,-2235, --2236,-2237,-2238,-2239, --2240,-2241,-2242,-2243,-2244,-2245,-2246,-2247,-2248,-2249,-2250,-2251,-2252,-2253,-2254,-2255,-2256,-2257,-2258,-2259, --2260,-2261,-2262,-2263,-2264,-2265,-2266,-2267,-2268,-2269,-2270,-2271,-2272,-2273,-2274,-2275,-2276,-2277,-2278,-2279, --2280,-2281,-2282,-2283,-2284,-2285,-2286,-2287,-2288,-2289,-2290,-2291,-2292,-2293,-2294,-2295,-2296,-2297,-2298,-2299, --2300,-2301,-2302,-2303, --2304,-2305,-2306,-2307,-2308,-2309,-2310,-2311,-2312,-2313,-2314,-2315,-2316,-2317,-2318,-2319,-2320,-2321,-2322,-2323, --2324,-2325,-2326,-2327,-2328,-2329,-2330,-2331,-2332,-2333,-2334,-2335,-2336,-2337,-2338,-2339,-2340,-2341,-2342,-2343, --2344,-2345,-2346,-2347,-2348,-2349,-2350,-2351,-2352,-2353,-2354,-2355,-2356,-2357,-2358,-2359,-2360,-2361,-2362,-2363, --2364,-2365,-2366,-2367, --2368,-2369,-2370,-2371,-2372,-2373,-2374,-2375,-2376,-2377,-2378,-2379,-2380,-2381,-2382,-2383,-2384,-2385,-2386,-2387, --2388,-2389,-2390,-2391,-2392,-2393,-2394,-2395,-2396,-2397,-2398,-2399,-2400,-2401,-2402,-2403,-2404,-2405,-2406,-2407, --2408,-2409,-2410,-2411,-2412,-2413,-2414,-2415,-2416,-2417,-2418,-2419,-2420,-2421,-2422,-2423,-2424,-2425,-2426,-2427, --2428,-2429,-2430,-2431, --2432,-2433,-2434,-2435,-2436,-2437,-2438,-2439,-2440,-2441,-2442,-2443,-2444,-2445,-2446,-2447,-2448,-2449,-2450,-2451, --2452,-2453,-2454,-2455,-2456,-2457,-2458,-2459,-2460,-2461,-2462,-2463,-2464,-2465,-2466,-2467,-2468,-2469,-2470,-2471, --2472,-2473,-2474,-2475,-2476,-2477,-2478,-2479,-2480,-2481,-2482,-2483,-2484,-2485,-2486,-2487,-2488,-2489,-2490,-2491, --2492,-2493,-2494,-2495, --2496,-2497,-2498,-2499,-2500,-2501,-2502,-2503,-2504,-2505,-2506,-2507,-2508,-2509,-2510,-2511,-2512,-2513,-2514,-2515, --2516,-2517,-2518,-2519,-2520,-2521,-2522,-2523,-2524,-2525,-2526,-2527,-2528,-2529,-2530,-2531,-2532,-2533,-2534,-2535, --2536,-2537,-2538,-2539,-2540,-2541,-2542,-2543,-2544,-2545,-2546,-2547,-2548,-2549,-2550,-2551,-2552,-2553,-2554,-2555, --2556,-2557,-2558,-2559, --2560,-2561,-2562,-2563,-2564,-2565,-2566,-2567,-2568,-2569,-2570,-2571,-2572,-2573,-2574,-2575,-2576,-2577,-2578,-2579, --2580,-2581,-2582,-2583,-2584,-2585,-2586,-2587,-2588,-2589,-2590,-2591,-2592,-2593,-2594,-2595,-2596,-2597,-2598,-2599, --2600,-2601,-2602,-2603,-2604,-2605,-2606,-2607,-2608,-2609,-2610,-2611,-2612,-2613,-2614,-2615,-2616,-2617,-2618,-2619, --2620,-2621,-2622,-2623, --2624,-2625,-2626,-2627,-2628,-2629,-2630,-2631,-2632,-2633,-2634,-2635,-2636,-2637,-2638,-2639,-2640,-2641,-2642,-2643, --2644,-2645,-2646,-2647,-2648,-2649,-2650,-2651,-2652,-2653,-2654,-2655,-2656,-2657,-2658,-2659,-2660,-2661,-2662,-2663, --2664,-2665,-2666,-2667,-2668,-2669,-2670,-2671,-2672,-2673,-2674,-2675,-2676,-2677,-2678,-2679,-2680,-2681,-2682,-2683, --2684,-2685,-2686,-2687, --2688,-2689,-2690,-2691,-2692,-2693,-2694,-2695,-2696,-2697,-2698,-2699,-2700,-2701,-2702,-2703,-2704,-2705,-2706,-2707, --2708,-2709,-2710,-2711,-2712,-2713,-2714,-2715,-2716,-2717,-2718,-2719,-2720,-2721,-2722,-2723,-2724,-2725,-2726,-2727, --2728,-2729,-2730,-2731,-2732,-2733,-2734,-2735,-2736,-2737,-2738,-2739,-2740,-2741,-2742,-2743,-2744,-2745,-2746,-2747, --2748,-2749,-2750,-2751, --2752,-2753,-2754,-2755,-2756,-2757,-2758,-2759,-2760,-2761,-2762,-2763,-2764,-2765,-2766,-2767,-2768,-2769,-2770,-2771, --2772,-2773,-2774,-2775,-2776,-2777,-2778,-2779,-2780,-2781,-2782,-2783,-2784,-2785,-2786,-2787,-2788,-2789,-2790,-2791, --2792,-2793,-2794,-2795,-2796,-2797,-2798,-2799,-2800,-2801,-2802,-2803,-2804,-2805,-2806,-2807,-2808,-2809,-2810,-2811, --2812,-2813,-2814,-2815, --2816,-2817,-2818,-2819,-2820,-2821,-2822,-2823,-2824,-2825,-2826,-2827,-2828,-2829,-2830,-2831,-2832,-2833,-2834,-2835, --2836,-2837,-2838,-2839,-2840,-2841,-2842,-2843,-2844,-2845,-2846,-2847,-2848,-2849,-2850,-2851,-2852,-2853,-2854,-2855, --2856,-2857,-2858,-2859,-2860,-2861,-2862,-2863,-2864,-2865,-2866,-2867,-2868,-2869,-2870,-2871,-2872,-2873,-2874,-2875, --2876,-2877,-2878,-2879, --2880,-2881,-2882,-2883,-2884,-2885,-2886,-2887,-2888,-2889,-2890,-2891,-2892,-2893,-2894,-2895,-2896,-2897,-2898,-2899, --2900,-2901,-2902,-2903,-2904,-2905,-2906,-2907,-2908,-2909,-2910,-2911,-2912,-2913,-2914,-2915,-2916,-2917,-2918,-2919, --2920,-2921,-2922,-2923,-2924,-2925,-2926,-2927,-2928,-2929,-2930,-2931,-2932,-2933,-2934,-2935,-2936,-2937,-2938,-2939, --2940,-2941,-2942,-2943, --2944,-2945,-2946,-2947,-2948,-2949,-2950,-2951,-2952,-2953,-2954,-2955,-2956,-2957,-2958,-2959,-2960,-2961,-2962,-2963, --2964,-2965,-2966,-2967,-2968,-2969,-2970,-2971,-2972,-2973,-2974,-2975,-2976,-2977,-2978,-2979,-2980,-2981,-2982,-2983, --2984,-2985,-2986,-2987,-2988,-2989,-2990,-2991,-2992,-2993,-2994,-2995,-2996,-2997,-2998,-2999,-3000,-3001,-3002,-3003, --3004,-3005,-3006,-3007, --3008,-3009,-3010,-3011,-3012,-3013,-3014], -[0,295,300,304,74,309,136,136,314,74,318,74,321,324,74,326,329,333,338,343,348,353,357,361,365,367,372,375,380,384,389, -393,398,402,407,409,412,416,418,422,425,429,432,436,17,441,444,447,451,453,458,462,467,470,474,477,480,483,486,489,492, -495,498,501, -504,507,510,513,516,519,522,525,528,531,534,537,540,543,546,550,553,556,559,562,565,569,572,576,579,103,32,103,587,591, -594,597,600,604,607,610,614,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,13,13,12,17, -12,12,26,17,13,12,12,12,12,12,12,13,13,13,61,17,12,12,17,12,17,13,624,628,633,637,641,62,17,647,652,657,662,13,666,670, -12,12,12,26,12,12,12,12,12,26,12,12,12,17,43,12,12,12,26,12,12,12,26,12,13,675,679,682, -686,690,693,696,698,700,704,707,712,716,721,726,730,12,12,12,12,734,12,12,12,12,26,13,12,12,12,12,12,12,12,12,17,12,737, -742,747,751,756,761,765,770,772,776,781,785,788,793,798,12,61,802,806,26,13,811,32,814,818,822,159,827,830,834, -838,842,845,848,851,854,858,863,866,870,874,879,883,886,891,894,898,902,906,910,915,918,921,924,929,933,937,940,944,32, -948,32,62,32,951,954,957,960,964,968,971,975,979,982,985,988,992,996,1001,1006,1011,1014,1018,1021,1024,1027,1031,1035, -1039,12,12,13,12,13, -17,12,12,52,12,12,43,12,17,12,12,12,12,12,12,52,12,26,26,12,12,12,1045,1049,1053,1057,1061,1066,1070,1075,1080,1085,1090, -1095,1100,1105,1110,1115,1119,1124,1128,1131,1134,1138,1143,1148,1153,1158,17,17,13,1163,1168,1171,12,12,12,12,12,12,12, -12,12,12, -12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,1173,1178,1181,1185,1190,1195,1200,1205,1210,1214,1218,1222,1225,1228, -1232,1235,1238,1242,1246,1250,1253,1257,1261,1264,1266,52,1270,1275,1279,1283,1288,1291,1294,1298,1301,1305,1308,1313, -1318,1323,1328,1333,1338,12,12,12,78, -13,17,26,12,13,12,12,78,17,1343,1347,1352,1356,43,1360,1363,1368,1372,1375,66,1381,1386,1391,53,1397,1401,1406,1410,1412, -1415,1419,1422,1426,1430,1434,1438,1441,1446,1450,79,1454,1459,1463,1468,1473,1476,1480,1484,1488,1492,53,1497,1502,1507, -1512,1515,46,1520,1525,1528,1533,1536,1541,1545, -1549,1553,1557,1560,1565,1570,1575,1579,1584,1589,1594,1598,1603,13,1608,1612,1616,1620,1624,1627,1630,1633,1637,1641, -1645,1650,1652,1657,1662,1667,1672,1675,1677,1679,1682,1685,1690,1693,1697,1699,1702,1705,1709,1712,1714,1717,1722,1726, -1730,1733,1736,1739,1742,1745,1748,1752,1755,1758,1762,1766,1769,1773,1778,30, -1784,176,1789,1793,1797,1802,1806,1809,1812,1817,179,1821,20,1827,18,46,18,1833,1837,1842,1845,1849,1853,1858,1863,1868, -1871,46,20,20,46,53,53,54,180,80,181,80,1879,1883,1887,1891,1894,1899,1903,1906,1910,1913,17,30,20,1918,1923,1928,1933, -20,1937,1942,1947,1952,1956,1961,1965,1968, -1973,1978,1982,80,1987,1990,1994,1999,2003,2008,2013,2018,2022,2027,2030,2035,2040,2043,2046,2049,82,2055,2059,18,2062, -2066,2071,2074,2078,2082,46,2086,2089,2093,2098,30,13,2103,2108,2113,2118,2121,2125,2129,2133,2138,2141,2144,2148,2152, -2157,2162,2165,2169,2173,2177,2180,2184,2188,2193,2198,2202,2206,2208, -2212,2216,2220,2225,2229,2234,2239,2242,2245,2250,2253,2257,2262,2266,2270,2275,2279,2284,2288,2292,2295,2299,2302,2307, -2312,2316,2321,2324,2327,2332,2336,2340,2344,2348,103,2352,2356,2360,2364,2368,2372,2376,2381,2384,2389,2394,2398,2401, -2406,2411,2414,2419,2424,2429,2434,2439,2442,2447,2451,2456,2461,2464,2468,2472, -2477,2482,13,2487,2491,2494,2498,2503,2508,2512,2516,2521,2526,2531,2536,2540,2544,2549,2554,2558,2563,2568,2572,2576, -2580,2584,2588,2592,2596,2600,2605,2610,2615,2619,2624,2628,82,2631,2634,2638,2641,2644,2648,2653,2656,2661,2664,2669, -2673,2677,69,2682,2686,2690,2695,2698,2702,2707,2712,2717,2722,2726,54,2730, -2733,20,2738,2742,20,2747,2750,2754,2757,2762,30,2765,2769,2773,2776,2780,2785,2790,2794,2797,2802,2807,2811,2815,2819, -2824,2829,2834,2838,2843,2848,2852,2857,2861,2865,2869,2874,2879,2884,2889,2894,2898,2903,2908,2911,2915,2920,2925,2929, -2933,2937,2941,2944,2948,2952,2957,2962,2967,47,2973,2976,2981,2986,2990, -2993,2997,26,3002,3007,3012,3015,3020,3025,3030,3035,3037,3041,3045,3049,3054,3059,3063,3066,3070,3074,3078,3082,3086, -3090,3095,3100,3105,3109,3113,3117,3121,52,3125,3129,3132,3136,3141,3145,3149,3154,3157,3161,3166,3170,3173,3176,3180, -3184,3188,3193,3197,3202,3206,3211,3216,3221,3226,3229,3234,3238,3243,3248,3253, -3256,3261,3266,3271,3276,3280,3284,3288,3292,3297,3301,3305,3310,3315,3319,3322,3327,3332,3337,3342,3346,3351,3356,3360, -3363,3367,3370,3375,3379,3382,3385,3389,3394,3399,3404,3409,3413,3417,54,3421,3426,3430,3434,13,3438,3442,3446,3451,3456, -3461,3466,3470,3475,3479,3484,3489,3493,3498,3502,79,79,3507,3510,3515, -3520,3524,3528,3532,3535,3540,3543,3548,3552,3557,3561,47,3565,3569,3573,3577,3581,3585,3588,3592,3597,3601,3604,3609, -3614,12,3619,3624,3629,3633,3637,3641,3644,3648,3652,3657,3660,3665,3670,3675,3679,3682,3686,3691,3696,3701,3705,3710, -3715,30,3719,3724,13,3729,3734,3738,3743,3747,3751,3755,47,3759,3763,3767, -3770,3775,3778,3783,3788,3793,3797,18,3801,3804,3807,3810,3814,3819,3823,3827,3832,43,3837,3841,3845,3849,3852,3856,3861, -3866,3871,3876,3881,66,3886,3890,66,20,3894,3897,3900,3903,3908,3912,3917,3922,3925,3930,3934,3937,3942,3946,3951,3954, -3959,3963,3967,3971,3975,3980,3983,3987,3991,3996,4000,4003,4008,4013, -4018,4023,4028,4033,4037,4041,4045,4050,4053,4057,4062,4066,4069,4074,4079,4084,4088,4093,4097,4102,4107,4112,4116,4121, -4125,4130,4135,4139,4143,4147,4151,4156,4160,4165,4168,4173,4177,4181,4185,4190,4194,4199,4204,4209,4214,4219,4224,4229, -4234,4237,4241,4245,4250,4255,4260,4265,4270,4275,4280,4285,4290,4295,4300,4304, -4309,4313,4318,4323,4328,4333,4338,4343,4348,4352,4357,4362,4367,4372,4376,4381,4385,4390,4394,4399,4404,4409,4413,4418, -4423,4428,4433,4438,4441,4446,4451,4455,4460,4465,4469,4474,4478,4483,4487,4491,4496,4501,4506,4511,4516,4521,4526,4530, -4534,4539,4544,4548,4553,4558,4562,4567,4572,4577,4582,4587,4591,4596,4600,47, -18,4605,18,4608,4612,4615,4620,4625,4630,4635,4640,4644,4649,4652,4656,30,4661,4665,4669,4673,4676,4679,4682,4687,4691, -4695,4697,180,18,4700,4703,4708,4712,4716,30,4720,4724,4728,4733,4737,4742,4746,4750,4755,4760,4765,4770,4775,4779,4783, -4787,4791,4796,4801,13,4806,4810,4814,4819,4824,4829,4833,4837,4840, -4845,4848,4852,4856,4859,4864,4868,4872,4877,4882,4886,43,4890,4895,4900,4904,4908,4912,4915,4919,4924,13,4929,4932,4937, -4942,4946,4949,26,4951,4956,4960,4963,4967,80,4972,4976,4980,4984,4988,4992,4996,5001,5005,5010,5015,5018,5022,5026,5030, -5034,5039,5042,5046,17,5050,17,5054,5058,5061,5065,5069,5074,5077, -5082,5086,5090,5095,5100,5104,5107,5111,5114,5119,5123,5126,5129,5133,5137,5142,5147,5151,5154,5158,5162,5166,5170,5175, -5178,5181,5186,5191,5196,5199,5202,5206,5210,5215,5219,5224,5229,5233,5238,5243,5247,5251,5255,5259,5263,5267,5271,5276, -5279,5282,5287,5292,5295,5299,5302,5306,5310,5315,5320,5324,5328,5333,5337,5341, -5346,5351,5356,5359,5363,5368,5372,5377,5382,5386,5391,5395,5400,5405,5409,5414,5418,5423,5426,5431,5435,5439,5442,5445, -5450,5454,5459,5464,5468,5472,5477,5482,5487,5491,5496,5501,5506,5511,5516,46,20,54,5521,5526,20,5530,5534,5538,5542, -5546,5551,5555,5559,5564,5568,5572,5576,5581,5585,5589,5594,5598,5601,5606, -5611,5615,5619,5624,5629,5633,5638,5643,5646,5651,5656,5659,5664,5667,5670,5673,5676,5679,5682,5685,5688,5691,5694,5697, -5700,5703,5706,5709,5712,5715,5718,5721,5724,5727,5730,5734,5737,5740,5745,5750,5755,5760,5764,5768,5773,5777,5782,5786, -18,5790,5795,5800,5805,5810,5815,5820,5824,5827,5832,5837,20,5841,5844,5848, -5852,5857,5861,5864,5867,5872,5876,5880,5884,5889,5894,5898,5902,5905,5908,18,5913,5917,5921,5926,5931,13,5935,5939,5944, -5948,5952,5957,5961,5964,5966,5970,5974,5977,5982,5985,5989,5993,5998,6002,6007,6011,6015,6018,6023,6028,6032,69,20,6036, -6041,6045,6049,6053,6058,6063,6068,6073,6076,6080,6085,6089,6092,6096, -6100,6104,6109,6113,6118,6123,6127,6132,6137,6142,6146,6150,6155,47,6160,20,6162,6167,6170,6175,82,6180,6185,6189,6194, -6199,6203,6207,6211,6216,6221,53,6225,6228,6232,6237,26,6240,6245,6250,6255,6260,6264,6268,6273,6278,6282,6287,6292,6297, -6300,6303,6307,6312,6315,6320,82,6325,6330,6334,6338,6343,6347,6352, -6355,6360,6365,6369,6374,6379,6384,6389,6394,6399,6404,6409,6411,6416,6421,6425,6430,6435,6439,6443,6447,6451,6456,6461, -6466,6470,6475,6478,6483,6487,6491,6494,6498,6501,61,6504,6509,6514,6519,6523,6526,6531,6535,6540,6544,6548,6552,6556, -6561,6566,6571,6575,6578,6583,6588,6592,6597,6600,6604,6607,6611,6616,6621,6626, -6628,6632,6636,6640,6644,6648,6653,18,6658,6662,6666,18,6671,6676,6679,6684,6689,6694,6699,6701,6705,6708,6712,6717,6722, -6727,6732,6737,6740,6744,20,6748,6751,6756,6761,6765,6770,6774,6779,6784,6789,6794,6798,6802,6806,6811,6815,6820,6824, -6827,6832,6837,6841,6844,6848,6851,6855,6858,6861,6864,6868,6871,6875,6880, -6885,6888,6893,6898,6902,6906,6911,6913,6916,240,6921,6925,6930,18,6934,6939,6944,6947,6950,6953,6958,6963,6967,6971, -6975,6979,6984,78,6987,6991,18,6995,6999,7004,7008,7013,7018,7022,7027,7030,7035,7039,7043,7047,7051,7054,7057,7061,7065, -7070,7074,7079,7083,7088,7092,7097,7100,7103,7107,7112,7116,7119,7123,7128, -243,7132,7134,7136,243,7139,7142,7146,7150,7154,7157,7160,7164,7169,7171,7175,7179,7184,7188,7193,7198,7202,52,7205,7210, -7214,7219,7223,7227,7230,7235,7239,7243,7247,7252,7257,7261,7266,7268,7272,7276,7280,7284,7288,7292,7295,244,7304,7308, -7312,7317,7322,7327,7331,7336,7341,7344,7348,7352,7356,7360,7364,7367,7370, -7375,7380,7384,7388,7391,7396,7401,7406,7411,7416,7420,7424,7428,7431,7434,7439,7443,7446,7450,7455,7460,12,7465,7467, -7470,7474,7479,7482,7486,7491,7496,7501,7505,7509,7513,7517,7520,7525,7529,7534,7538,7543,13,7548,7552,7556,7558,7561, -7566,7571,7576,7579,7583,7588,7592,7596,7600,247,7606,7611,7615,7619,7623,7626, -7631,7636,7641,7646,7650,7654,7658,7663,7667,7672,7677,7682,7686,7690,7694,7699,7703,249,7707,250,7713,7717,7721,7724, -7728,7732,7737,7741,7746,7751,7756,7761,7765,7769,7773,7776,7780,7785,7790,7795,7799,7804,7809,7813,7818,7823,7827,7831, -7836,7841,7846,7850,7855,7860,7865,7870,7873,7878,7883,7888,17,7893,7896,17, -7900,7904,7908,7913,7916,7920,7925,7930,7933,7937,7941,7944,7949,7953,7958,7963,7967,7972,7976,7981,7985,7990,7994,7999, -8003,8007,8011,8015,8020,8025,8030,8035,8040,8045,8050,8053,8057,8061,8066,8071,8075,8078,61,8082,8085,8090,181,47,8095, -8100,8105,8109,255,8115,247,8118,8123,18,8127,8132,8136,8139,8144,8149, -8153,8158,8161,8165,8170,8174,8179,8183,8187,8192,8197,8201,13,8204,8209,8214,8217,8221,8226,8230,250,8235,8240,8245, -8249,18,8254,18,8258,8263,244,8268,240,20,8272,8277,8281,8286,8289,8293,8296,20,8301,8304,8309,30,8313,8317,256,47,8322, -8326,8331,8335,8339,8344,8347,8350,8354,8358,8361,20,18,8366, -8370,30,257,8374,8377,8382,8387,8392,8397,8401,8404,8409,46,8414,8419,8424,18,8428,8433,8438,8441,8443,8447,8451,8455, -8458,8462,8467,8471,8476,8480,8483,8487,8491,8496,8501,8504,8509,8514,8519,8524,8528,8533,8538,8542,8547,8552,8556,30, -8561,20,8564,8569,8573,8578,257,54,8583,18,8587,8592,8597,8601,8606, -8611,8616,8621,8626,8629,54,8634,8639,8642,8647,8650,255,8653,8658,8662,8665,8669,8674,8677,8682,8686,8691,8695,8699, -8703,8707,8712,8715,8720,8724,8728,8733,249,8738,8743,8748,8753,8758,8763,8768,8772,8776,8780,8784,176,8789,8792,8795, -8799,8804,8808,8811,8815,8818,8822,8825,8828,8833,8837,8841,8844,8849,18,69, -8854,8859,53,8862,8865,8870,8875,8878,8883,8888,8893,8898,8903,8908,8911,8916,8920,8925,8929,8934,8937,8942,8946,8950, -8954,8958,8963,8967,8971,8976,8981,8986,8989,8994,8998,9002,9007,9010,9013,9018,9023,9026,9030,9034,9038,9043,9048,9053, -9058,9062,9067,9072,9076,9080,9083,9087,9091,9095,9100,9104,9109,9113,9118,30, -9121,9125,9130,9133,9138,9142,9146,9151,43,9156,9161,9166,9170,9174,9176,9180,9185,9189,9194,9198,9202,9207,9211,9215, -9219,9223,66,9226,9230,9235,9240,9245,9250,9253,9258,9262,9267,9272,9277,9282,9286,9291,9293,9297,9300,9304,9308,9312, -9316,9321,9325,9329,9333,9337,9341,9344,9348,9352,9356,9360,9365,9369,9374,69, -66,256,9379,179,69,9383,9387,9392,9397,9402,9406,9411,9415,9420,9424,9428,9432,9437,9442,9447,9451,9454,9458,9461,9465, -9470,9475,9480,9485,9488,9491,79,9496,17,9501,9505,9509,9514,9519,9524,9529,9534,9537,9540,9544,9547,9552,9556,9561,9566, -9570,9573,9577,9581,9586,9590,52,9594,9598,9601,9606,9610,9614,9617, -9622,9626,9630,9635,9639,9642,9647,9652,9655,9660,9664,9667,9671,9676,9681,9686,9690,9694,9698,9703,9706,9711,9714,9718, -9722,9726,9730,9735,9739,9742,9747,9751,9756,9761,9765,9770,9774,9779,9784,32,32,32,62,32,265,265,9791,9794,9798,9802, -9806,62,62,32,9811,13,17,13,26,9815,13,61,9818,9823, -9827,9831,9836,9840,9843,9848,9852,9857,9862,9865,9869,9873,9877,9882,9887,9891,9895,9899,9904,9909,9914,9919,9923,9928, -9933,9938,9942,9945,9948,9952,9956,9960,9963,9967,9970,9973,9977,9980,159,9983,9986,9991,9996,10000,10005,10010,10013, -10016,10020,267,10025,10028,10032,10037,10041,10046,10050,10054,10059,10064,10068,10073,10078,10082, -10086,10090,10094,10098,10101,10103,10108,10112,10117,43,10121,10126,10131,10136,10139,96,10144,10147,10149,270,10152, -10154,10159,10162,10166,10169,10172,10175,10178,10181,10184,10188,10191,10195,10198,10202,10206,10209,10213,10215,10218, -10222,10226,10229,10234,10238,10242,10247,10251,10254,10257,10260,10264,10266,10270,10273,10277,10281,10285,10290,10295, -10299,10303,10307, -10311,10315,10319,10321,10324,10328,10333,10338,10342,10347,10351,10354,10359,10362,10366,10369,10372,10377,10380,10385, -10389,10393,10396,10399,10402,10405,10409,10414,10418,10423,10428,10433,10438,10443,10446,10449,10453,10458,10462,10465, -10469,10473,10478,10483,10487,10492,10496,10500,10503,10507,10511,10516,10521,10526,10531,10536,10540,10543,10546,10549, -10553,10558,10563,10567, -10571,10574,10578,10583,10588,10591,10595,10599,10602,10605,100,279,270,10610,10615,10620,10625,267,10629,10633,10636, -10641,10645,10648,10653,10657,281,10661,10666,10670,96,10675,282,282,100,10678,10682,100,10686,283,10693,10698,10703, -10707,10711,10714,10716,279,10719,284,284,10723,96,10726,10729,10733,10738,10740,10744,10749,10753,10757,10761,10765, -10770,10773,10778,10782,10787,10791,10794,10798,10801,10804,10809,10813,10818,10822,10827,10831,10835,10837,10842,10845, -10849,10851,10856,290,10859,10862,10866,10870,10874,10879,10883,10888,10892,10895,10898,10901,10906,10910,10914,10917, -10921,10925,10929,10933,10938,283,10942,10945,10950,10954,10958,10962,10967,10969,10974,10977,10982,10987,10992,10996, -290,11000,11003,11007, -11010,11012,11017,11019,11023,11028,11033,11037,11042,11046,11050,11053,11058,11061,11065,11068,11071,11076,11081,11086, -11090,11095,11099,11104,11108,11113,11118,11123,11128,11132,11136,96,100,11141,11146,11150,11154,11159,11163,11166,11170, -11173,11177,11181,11185,11188,11191,11194,11196,11199,11204,11209,281,11213,11217,78,11221,11224,11229,11233,292,11237, -11240,11244, -11248,11251,11254,292,11259,11262,11265], -[1,3,296], -[0,297,298,299,10], -[0,-809,-2387,-3019,-682,-1967,-3020,-567,-3021,-3022,-1552,-2055,-3023,-1311,-2030,-2113,-3024], -[0,-705,-888,-1616,-664,-1107,-1521,-2162,-2466,-668,-1344,-3025,-1471,-1654,-2006,-2074,-2210,-2550,-915,-932,-1548, --1666,-2093,-2177,-2388,-2439,-674,-795,-928,-1889,-2379,-2501,-522,-679,-923,-1077,-1376,-1646,-1783,-1942,-3026,-2378, --3027,-3028,-1003,-3029,-1978,-3030,-2016,-2019,-3031,-2281,-2376,-3032,-527,-778,-3033,-3034,-2410,-23,-3035,-3036, --3037,-1482, --1534,-1600,-3038,-2040,-3039,-3040,-3041,-518,-528,-534,-1543,-1588,-1890,-1938,-2043,-2275,-2516,-305,-3042,-3043, --3044,-1492,-3045,-3046,-556,-1906,-1908,-3047,-2285,-86,-3048,-3049,-3050,-2015,-3051,-263,-3052,-3053,-558,-3054,-3055, --1962,-2044,-3056,-3057,-3058,-3059,-3060,-3061,-3062,-560,-1601,-2505,-3063,-3064,-969,-977,-1491,-2052,-3065,-3066, --440,-3067,-562, --3068,-958,-3069,-3070,-539,-3071,-1475,-739,-3072,-940,-962,-963,-1490,-3073,-3074,-3075,-916,-2013,-2017,-3076,-3077, --3078,-3079,-1899,-3080,-428,-1897,-3081,-3082,-1017,-3083,-3084,-3085,-3086,-3087,-555,-535,-3088,-3089,-427,-661,-3090, --3091,-26,-547,-741,-3092], -[0,-3093,-3094,-2634,-3095,-3096,-2006,-3097,-3098,-3099,-3100], -[1,3,301], -[0,302,0,303,11], -[0,-469,-2153,-1864,-2231,-470,-1461], -[0,-3101,-3102,-475,-3103,-3104,-3105], -[1,3,305], -[0,306,0,307,9], -[0,-1816,-2153,-1461,-1588,-2], -[0,-3101,-3102,-475,-3106,-3107,-3104,-3108,-3109,-3105,-3110,-3111], -[0,33,0,7,5], -[1,3,310], -[0,311,0,312,4], -[0,-2387,-1839], -[0,-475,-3112,-3095,-3113,-3114], -[0,33,0,7,4], -[1,3,315], -[0,316,37,317,4], -[0,-2387,-2550,-2177,-679,-23,-2080,-742,-3115], -[0,-475,-3116], -[1,3,319], -[0,320,0,7,11], -[0,-2387,-3117], -[1,3,322], -[0,33,0,323,9], -[0,-475,-3118,-3119,-3098], -[1,3,325], -[0,33,0,7,6], -[1,3,327], -[0,328,0,7,4], -[0,-3120,-2387], -[1,3,330], -[0,33,331,332,10], -[0,-3121], -[0,-475,-3122], -[1,3,334], -[0,335,336,337,5], -[0,-809,-2004,-682,-567,-3123,-3124,-3125,-3126,-3127,-3128,-2639,-3129,-3130,-3131,-3132], -[0,-485,-1107,-1415,-2006,-932,-2388,-3133,-2375,-1662,-767,-3134,-2019,-533,-3135,-1939,-2028,-2410,-23,-3136,-1534, --3137,-3040,-528,-726,-2034,-44,-3138,-3139,-3140,-3141,-3142,-3143,-3144,-2052,-3145,-3146,-3147,-3148,-3149,-2013, --3150,-3151,-428,-408,-3152,-3153,-3154,-3155,-3156,-3157], -[0,-3158,-3099,-2006,-3159,-3095,-3098,-3160,-3161,-3100,-3162,-3163], -[1,3,339], -[0,340,341,342,4], -[0,-1549], -[0,-485,-2006,-1031,-2019,-2410,-3040,-3164,-3052], -[0,-3158,-3099,-2494,-485,-3095,-3098,-3161,-3100,-2006,-3159,-3160], -[1,3,344], -[0,345,346,347,5], -[0,-682,-3165,-3166], -[0,-485,-1107,-2006,-1031,-2019,-2410,-3040,-3052], -[0,-3158,-3099,-2494,-485,-3095,-3098,-3161,-3100,-2006,-3159,-3160,-3167], -[1,3,349], -[0,350,351,352,4], -[0,-3168,-3169], -[0,-2387,-2299,-2402,-2300,-364,-3170,-3171,-2405,-3172,-365], -[0,-3173,-3174,-3175,-3176,-1791,-3177,-3178,-2299], -[1,3,354], -[0,355,356,137,4], -[0,-1107,-2218,-1591,-719,-742,-3179,-3180], -[0,-2177,-23,-3036,-3181,-3182], -[1,3,358], -[0,359,360,7,4], -[0,-3187,-1863,-3188], -[0,-3189,-2269,-3190], -[1,3,362], -[0,363,364,138,4], -[0,-812,-1460,-2177,-3191,-47,-25,-3192,-3193,-46,-3194,-22,-742,-3195,-3196,-3197], -[0,-2392,-2125,-2379,-3198,-3199,-3200,-40,-42,-3201,-3180,-3202,-3203,-3204,-3182], -[1,3,366], -[0,0,101,7,5], -[1,3,368], -[0,369,370,371,5], -[0,-47], -[0,-3189,-22,-3211,-3212,-3188,-3213], -[0,-525,-3214,-3215,-3216,-3217,-25], -[1,3,373], -[0,374,51,21,4], -[0,-3218,-24], -[1,3,376], -[0,377,378,379,5], -[0,-3221,-812,-1496,-3222,-2177,-1442,-2223,-679,-3223,-1044,-3224,-1646,-1783,-1936,-3225,-1864,-2654,-1125,-1600,-3226, --3227,-3228,-3229,-3230,-3231,-3232,-3233,-3234,-3235,-3236,-3237,-3238,-3239], -[0,-652,-519,-2392,-2476,-2564,-2162,-2006,-932,-1610,-3240,-2125,-1110,-1942,-2019,-190,-2410,-3241,-3037,-3242,-3243, --3244,-3245,-3246,-3247,-1603,-3248,-3249,-3250,-3251,-940,-3252,-3253,-3254], -[0,-3255,-3256,-3257,-856,-3258,-3259,-3260,-3261,-3262,-3161,-898,-3263,-3264,-1599,-3265,-1783], -[1,3,381], -[0,0,382,383,4], -[0,-2832,-2581,-350,-351,-3266,-3267,-3268,-3269,-3136,-3037,-589,-651,-1415,-2127,-2132,-2375,-2387,-2410], -[0,-775,-3215,-3270,-3271,-3272,-2410,-3273,-3274,-3275,-1644,-3276,-3277], -[1,3,385], -[0,386,387,388,4], -[0,-3278,-3279,-3280,-3281,-3282,-3283,-3284,-3285,-3286,-3287,-3288,-3289,-3290,-3291,-3292,-3293,-3294,-3295,-3296, --1537,-3297], -[0,-3298,-3299,-3300,-3301,-3302,-3303,-3304,-3305,-3306,-86,-3307,-3308,-3309,-3310,-3311,-3312,-932,-940,-1344,-1534, --2210,-2410,-3313], -[0,-3314,-488,-856,-3315], -[1,3,390], -[0,391,0,392,9], -[0,-3316,-3317,-3318,-3319,-1123,-3320,-2387], -[0,-3321,-1122,-2006,-3322,-3323,-3324], -[1,3,394], -[0,395,396,397,6], -[0,-2006,-2127,-1967,-23,-3325,-40,-2234,-41,-3326,-3327], -[0,-1415,-932,-2375,-767,-2410,-3136,-3040,-1448,-969,-973,-972], -[0,-3328,-856,-3262,-2006,-3105,-3110], -[1,3,399], -[0,400,401,7,10], -[0,-2177,-983,-3329], -[0,-815,-932,-23,-3330,-426,-2411,-3211,-3331], -[1,3,403], -[0,404,405,406,5], -[0,-24,-3332,-3218], -[0,-23,-46,-3333,-3334,-3219,-3335], -[0,-525,-3220,-3336], -[1,3,408], -[0,139,51,21,10], -[1,3,410], -[0,411,51,21,11], -[0,-24,-3337], -[1,3,413], -[0,414,415,21,4], -[0,-3338,-3197,-24,-3339,-3340], -[0,-23,-3219,-25], -[1,3,417], -[0,139,101,21,5], -[1,3,419], -[0,420,421,21,10], -[0,-2177,-24,-3341,-3342,-3343,-3344], -[0,-1591,-23,-3192,-44,-40,-3345,-3343,-3219], -[1,3,423], -[0,140,424,7,8], -[0,-633,-647,-3346,-2416], -[1,3,426], -[0,427,428,7,4], -[0,-2177,-3347,-3338,-3348,-24,-3342,-3343,-3349,-3350,-3351,-3352,-3353,-3197,-3344,-3354,-3340,-3355,-3356,-3357,-3358, --3359,-3360,-3361,-3362,-3363,-3364,-3365,-3366,-3367,-3368,-3369,-3370,-3371,-3372,-3373,-3374,-3375,-3376,-3204,-3377, --3378,-3379,-3380,-3381,-3382,-3383,-3384,-3385,-3386,-3387,-3388,-3389,-3390,-3391,-3392,-3393,-3394,-3395,-3396,-3397, --3398,-3399,-3400, --3401,-3402,-3403,-3404,-3405,-3406,-3407], -[0,-23,-46,-3219], -[1,3,430], -[0,431,51,7,4], -[0,-24,-3349,-3408,-3409,-3410,-3411], -[1,3,433], -[0,434,51,435,8], -[0,-3077,-24,-3349,-3412,-3204], -[0,-3413,-2410], -[1,3,437], -[0,438,439,7,4], -[0,-3414,-1591,-3415,-1046,-2234], -[0,-633,-23,-3373,-3204], -[0,0,0,7,5], -[1,3,442], -[0,443,0,7,5], -[0,-753], -[1,3,445], -[0,446,51,7,4], -[0,-812,-47,-25,-3193,-3194,-22,-3416], -[1,3,448], -[0,449,450,7,6], -[0,-3212,-3188], -[0,-25,-3194,-3211], -[1,3,452], -[0,141,142,143,8], -[1,3,454], -[0,455,456,457,4], -[0,-3442,-1116,-1666,-1969,-2522], -[0,-756,-932,-940,-943,-958,-966,-967,-968,-974,-2250], -[0,-2520,-2905,-3443,-3444,-3445], -[1,3,459], -[0,460,461,7,4], -[0,-3446,-2177,-680,-3447,-910,-1077,-3448,-1863,-479,-3449,-2115,-3450,-3451,-3452,-3453,-3454,-3455,-3456,-3457,-3458, --3459,-3460,-3461,-3462,-3463,-3464,-3465,-3466], -[0,-1821,-3467,-2269,-3199], -[1,3,463], -[0,464,465,466,4], -[0,-3468,-3469,-195,-196,-197,-682,-1967], -[0,-21,-23,-26,-40,-41,-86,-3307,-3326,-350,-351,-3470,-3471,-3472,-427,-428,-528,-553,-3473,-932,-962,-969,-970,-1344, --1534,-1942,-2006,-2019,-2127,-3474,-2140,-2174,-2410], -[0,-3475,-2006,-3476,-3160,-3477,-3098,-3478,-3479,-3480,-3481,-3482,-3100,-3483,-3484,-3485,-3486,-3487], -[1,3,468], -[0,469,0,19,4], -[0,-681,-66,-82], -[1,3,471], -[0,472,0,473,6], -[0,-3493,-2387], -[0,-3494,-3495,-3496,-3264,-3497,-3498,-475,-3499,-3500,-3501,-3095,-3488,-681,-3489], -[1,3,475], -[0,476,0,19,5], -[0,-681,-66,-83,-68,-80,-70], -[1,3,478], -[0,479,0,19,5], -[0,-681,-81,-66,-3502,-83,-68,-80], -[1,3,481], -[0,482,0,19,4], -[0,-681,-81,-66,-3503,-3502,-83,-80], -[1,3,484], -[0,485,0,144,5], -[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3504,-52,-77], -[1,3,487], -[0,488,0,144,4], -[0,-81,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3504,-52,-77], -[1,3,490], -[0,491,0,102,4], -[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3511,-52,-77], -[1,3,493], -[0,494,0,102,8], -[0,-3512,-73,-74,-62,-71,-79,-72,-80,-70,-63,-3513,-76,-54,-67,-69,-56,-75,-55,-65,-52,-3514,-77], -[1,3,496], -[0,497,0,102,8], -[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-3515,-65,-52,-77], -[1,3,499], -[0,500,0,19,6], -[0,-3516,-681,-3517,-81,-66,-3502,-71,-83,-68,-82,-65], -[1,3,502], -[0,503,0,19,4], -[0,-681,-81,-66,-3502,-71,-83], -[1,3,505], -[0,506,0,19,8], -[0,-3517,-81,-66,-83,-68,-85], -[1,3,508], -[0,509,0,59,6], -[0,-681,-66,-83], -[1,3,511], -[0,512,0,145,11], -[0,-3517,-81,-83,-68,-3519], -[1,3,514], -[0,515,0,19,8], -[0,-681,-66,-83,-82,-65], -[1,3,517], -[0,518,0,145,10], -[0,-3517,-83], -[1,3,520], -[0,521,0,19,4], -[0,-681,-81,-66,-3520,-3503,-80,-64,-3521], -[1,3,523], -[0,524,0,19,10], -[0,-681,-81,-66,-3502,-83,-68,-76], -[1,3,526], -[0,527,0,19,5], -[0,-681,-3517,-81,-66,-3520,-3502,-83,-68,-80,-82,-85,-64], -[1,3,529], -[0,530,0,19,8], -[0,-681,-81,-66,-74,-3502,-83,-68,-70], -[1,3,532], -[0,533,0,19,11], -[0,-681,-3517,-81,-66,-3502,-71,-83,-68,-80,-85,-64], -[1,3,535], -[0,536,0,19,4], -[0,-681,-81,-66,-3512,-3503,-3502,-83,-68,-80,-64], -[1,3,538], -[0,539,0,19,4], -[0,-681,-81,-66,-3520,-3502,-83,-68,-80,-85,-64], -[1,3,541], -[0,542,0,19,4], -[0,-81,-66,-3502,-83,-68], -[1,3,544], -[0,545,0,19,6], -[0,-681,-66,-68,-64], -[1,3,547], -[0,548,0,549,8], -[0,-3493], -[0,-3494,-3495,-3496,-3264,-3497,-3498,-2006,-3159,-3488,-681,-3489], -[1,3,551], -[0,552,0,19,6], -[0,-681,-3517,-81,-66,-3502,-83,-68,-85,-64], -[1,3,554], -[0,555,0,19,11], -[0,-3517,-66,-83,-68], -[1,3,557], -[0,558,0,59,11], -[0,-3517,-3522,-3523,-3524,-3525,-66,-3502,-83,-68,-3526], -[1,3,560], -[0,561,0,59,11], -[0,-66,-83], -[1,3,563], -[0,564,0,59,4], -[0,-3517,-81], -[1,3,566], -[0,567,0,568,4], -[0,-3493,-1549], -[0,-3494,-3495,-3496,-3264,-3497,-3498,-2476,-3527,-3528,-3529,-3488,-681,-3489], -[1,3,570], -[0,571,0,59,4], -[0,-3517,-81,-66,-3503,-3502,-83,-68,-80], -[1,3,573], -[0,574,575,146,5], -[0,-3530,-3531,-3532,-3533,-3534,-3535,-2550], -[0,-3536,-3537,-3149,-3037,-3041,-1077,-3125], -[1,3,577], -[0,578,0,147,5], -[0,-3,-23,-3374,-40,-3538,-3539,-3540,-617,-3541,-674,-679,-714,-719,-755,-3542,-927,-1022,-1026,-1077,-1107,-1276,-1320, --1349,-1460,-1548,-1577,-3543,-3544,-1610,-1646,-3545,-3546,-3547,-1863,-3548,-1955,-2177,-2213,-3433,-3549,-2378,-2446, --3550], -[1,3,580], -[0,581,0,582,4], -[0,-3553,-1361], -[0,-3554,-3555,-3161,-997,-3556], -[0,25,584], -1732406400000, -[0,25,586], -1733011200000, -[1,3,588], -[0,589,590,148,9], -[0,-1320], -[0,-21,-23,-40,-3558,-3559,-3560,-2997,-3326,-350,-351,-3561,-3562,-518,-620,-3563,-3564,-699,-767,-932,-945,-957,-958, --978,-3565,-1110,-1111,-3566,-1320,-3567,-1389,-1412,-1437,-1471,-1473,-1475,-3568,-1477,-1479,-1481,-3569,-1486,-1547, --1753,-1771,-1889,-1891,-3570,-2125,-2127,-3571,-3572,-3031,-2195,-2281,-3573,-2334,-3574], -[1,3,592], -[0,0,0,593,4], -[0,-775,-3215], -[1,3,595], -[0,0,0,596,6], -[0,-775,-3579], -[1,3,598], -[0,0,0,599,4], -[0,-775,-3580,-3215], -[1,3,601], -[0,602,0,603,4], -[0,-98,-1931], -[0,-775,-1391,-3581,-3582,-1889,-3583,-3584,-3585], -[1,3,605], -[0,60,0,606,9], -[0,-775,-3586,-3587,-1889,-3583,-3588,-3589,-3590,-3591,-3592], -[1,3,608], -[0,0,0,609,4], -[0,-775,-1931,-3593], -[1,3,611], -[0,612,613,149,5], -[0,-3594,-3595,-3596,-3419,-3597,-3598,-3599,-3600,-3601,-3602,-3603,-3604,-3605,-668,-695,-719,-812,-3606,-1040,-1107, --3607,-1366,-1394,-1399,-3608,-1566,-3125,-3222,-1640,-1650,-1693,-1959,-3609,-2177,-3610,-2297,-2400,-3611,-2548,-3612], -[0,-3613,-3614,-3615,-3244,-190,-262,-357,-3035,-3198,-3616,-3617,-3048,-3618,-3619,-3149,-3620,-3621,-3622,-3623,-3037, --3624,-3199,-3625,-3626,-3627,-3628,-427,-428,-664,-3629,-711,-3630,-838,-932,-958,-965,-978,-1004,-1077,-3631,-1654, --1689,-1788,-1942,-3632,-2200,-2210,-2211,-3633,-2359,-2379,-2384,-2402,-2410], -[1,3,615], -[0,616,617,618,4], -[0,-653,-668,-685,-695,-1077,-2375], -[0,-86,-3307,-3048,-3049,-3136,-3637,-3638,-3639,-427,-428,-481,-693,-910,-932,-940,-967,-1344,-1415,-3640,-1637,-1658, --1847,-1942,-3641,-3642,-2410], -[0,-3643,-856], -[0,25,620], -1730419200000, -[0,0,0,7,4], -[0,0,0,7,6], -[0,0,0,7,11], -[1,3,625], -[0,626,627,104,8], -[0,-3644,-3645,-3646,-3647,-668,-674,-775,-2858,-3648,-3649,-1442,-1548,-1600,-3425,-3650,-3651,-1608,-3652,-3653,-2161, --2223,-2303,-3654], -[0,-3655,-3656,-3657,-3658,-3659,-3660,-3044,-3661,-3662,-3037,-3663,-3664,-3665,-518,-928,-3666,-1304,-3667,-3668,-1771, --1889,-1927,-2162,-3669,-2410,-2469], -[1,3,629], -[0,630,631,632,9], -[0,-2387,-2426,-3675,-3676,-3677,-3678,-3679,-3680,-3681], -[0,-2391,-3682,-932,-2469,-1942,-767,-2410,-3037,-3683,-3684,-3664,-3685,-3686,-3687,-3688], -[0,-3689,-3690,-3691,-3692,-3693], -[1,3,634], -[0,75,635,636,4], -[0,-1654,-1942], -[0,-3694,-2414,-1446,-3695,-2402,-3671,-856,-3696], -[1,3,638], -[0,639,640,104,5], -[0,-3697,-3698,-3699,-3700,-3701,-3702,-154,-3703,-3704,-3036,-3705,-3706,-469,-510,-521,-3707,-668,-865,-1028,-1107, --1304,-1321,-1341,-1442,-1459,-1641,-1645,-1734,-2195,-2205,-2223,-2325,-3708,-3709,-2488,-2550], -[0,-3710,-3711,-3712,-3660,-3044,-3713,-3037,-3714,-3715,-3041,-427,-428,-528,-928,-932,-972,-1344,-1534,-1548,-2375, --2379,-2410], -[1,3,642], -[0,643,644,104,6], -[0,-3646,-668,-3648,-3649,-1442,-1548,-1600,-3425,-3650,-3716,-3651,-1608,-3652,-2161,-2223], -[0,-23,-3204,-40,-3659,-3136,-3660,-3044,-3661,-3662,-3717,-3037,-3663,-3718,-3719,-3720,-518,-528,-928,-3666,-932,-972, --1304,-1415,-3668,-1889,-1927,-1942,-2082,-2375,-2410], -[0,25,646], -1734825600000, -[1,3,648], -[0,649,650,651,4], -[0,-3234,-367,-411,-3721,-617,-668,-686,-724,-3722,-1010,-1028,-1070,-3723,-3724,-1304,-1460,-1600,-3245,-1601,-3425, --3725,-3726,-1734,-1966,-2162,-3727,-3728,-2231,-2232,-2234,-3729,-2299,-2446,-3730], -[0,-86,-3307,-3470,-3471,-3731,-3732,-3733,-3734,-3048,-3661,-3662,-3037,-3735,-3736,-3737,-3738,-3739,-427,-428,-652, --3740,-1077,-1344,-1978,-2080,-2174,-2410], -[0,-3122,-3445,-1334,-3161,-3741,-3742,-3743], -[1,3,653], -[0,654,655,656,10], -[0,-3744,-3745,-3746,-3747,-3748,-3749,-367,-3750,-518,-635,-778,-779,-932,-940,-967,-969,-970,-1110,-1344,-3751,-1643, --1889,-1908,-1930,-2162,-2163,-2275,-2281,-2282,-3436,-3752,-2335,-2501,-2503,-2507,-2508], -[0,-3753,-1534], -[0,-3100,-3754,-3755,-3756,-3590,-3551,-3757], -[1,3,658], -[0,659,660,661,9], -[0,-3661,-664,-668,-1551,-1600,-1816,-1951], -[0,-3758,-3035,-3759,-3037,-3760,-1344,-1534,-1942,-2410,-2469], -[0,-891,-3671,-856,-3690,-2410,-3761,-3762], -[1,3,663], -[0,664,665,105,5], -[0,-3341,-44,-3763,-3764,-3765,-3766,-742,-930,-3767,-2231,-3768], -[0,-23,-3769], -[1,3,667], -[0,668,669,105,4], -[0,-160,-3772,-3765,-3773,-3774], -[0,-3775,-2410], -[1,3,671], -[0,672,673,7,5], -[0,-44,-160,-3776,-3765,-3777,-3774], -[0,-3775,-3778,-2006,-2410], -[0,0,0,7,8], -[1,3,676], -[0,677,678,38,5], -[0,-983], -[0,-652,-1498,-1654,-3779,-932,-1810,-2125,-2127,-2177,-3780,-1942,-2468,-2410,-1772,-3330,-426,-3781,-2132,-3782,-2139, --428,-3783], -[1,3,680], -[0,0,0,681,5], -[0,-3214,-3784,-932], -[1,3,683], -[0,684,685,150,4], -[0,-3785,-682,-3786,-863,-996,-3787,-3544,-3788,-1610,-1653,-3789,-1848,-2680,-1885,-1955,-1967,-3790,-2223,-3791,-3792, --3793], -[0,-3794,-3795,-3796,-3035,-3797,-3043,-3798,-3136,-3799,-3800,-3801,-3802,-3037,-3803,-3140,-3040,-3052,-3804,-3805, --3046,-3806,-3041,-427,-428,-3807,-585,-740,-748,-753,-756,-778,-795,-915,-2760,-3808,-932,-958,-969,-970,-1067,-1331, --1344,-1415,-1442,-3809,-3810,-1652,-1821,-1942,-1952,-1992,-2006,-2019,-2024,-2125,-2195,-2214,-2275,-2278,-2375,-2379, --2387,-2410, --3811,-2435,-2501,-2503,-2505,-2509], -[1,3,687], -[0,688,689,151,4], -[0,-3819], -[0,-41,-409,-3040,-3052,-440,-2006,-2019,-3820,-727], -[1,3,691], -[0,0,0,692,4], -[0,-2651,-3827,-3828,-3829,-3830,-3831,-775,-2162,-3577,-3578,-3832,-3833], -[1,3,694], -[0,0,0,695,9], -[0,-2651,-3827,-3828,-3829,-3834,-3835,-775,-2162,-3577,-3578,-3832,-3833], -[1,3,697], -[0,152,0,153,8], -[1,3,699], -[0,152,0,153,4], -[1,3,701], -[0,0,702,703,6], -[0,-23,-3840,-40,-41,-42,-86,-3307,-190,-195,-3841,-196,-3470,-3842,-3471,-406,-407,-409,-3136,-3040,-3052,-635,-658,-741, --767,-932,-940,-958,-959,-962,-967,-969,-970,-976,-978,-1110,-1344,-1415,-1419,-1942,-1952,-2006,-2019,-2125,-2174,-2375, --2379,-2391,-2410,-2411], -[0,-3838,-1064,-2006,-3214,-3839,-3843], -[1,3,705], -[0,106,154,706,9], -[0,-2410,-3161,-3844,-3445,-1818], -[1,3,708], -[0,709,710,711,8], -[0,-3845,-198,-891,-3846], -[0,-3847,-3037,-427,-428,-767,-891,-3848,-932,-933,-935,-940,-958,-962,-967,-1942,-2376,-2379,-2402,-2410], -[0,-2410,-3161,-891,-3844,-3445], -[1,3,713], -[0,714,154,715,9], -[0,-198,-3849,-3850,-3851,-617,-1465,-2080], -[0,-2410,-3161,-1004,-1818,-3844,-3445], -[1,3,717], -[0,718,719,720,6], -[0,-3852,-3853,-3854,-3855], -[0,-3856], -[0,-1122,-3857,-856,-1599,-3858], -[1,3,722], -[0,723,724,725,5], -[0,-3859,-3860,-3855,-3854], -[0,-3861,-3856], -[0,-858,-1122,-3857,-856,-3862,-1599,-3858], -[1,3,727], -[0,728,0,729,4], -[0,-23,-40,-3863,-3864,-3865,-518,-534,-3866,-753,-767,-778,-779,-1041,-3867,-1643,-1889,-1908,-3868,-2162,-3869,-2163, --2318,-2437,-2501,-2503], -[0,-2501,-3870,-3871,-3100], -[1,3,731], -[0,732,733,155,6], -[0,-3872,-3873,-3874,-3875,-3876,-3877,-3878,-3879,-3880,-3881,-3882,-3883,-3884,-3885,-3886,-3887,-3888,-3889], -[0,-3890,-3891,-3892,-3893,-3894,-3895,-3037,-1276,-1435,-2410], -[1,24,735], -[0,25,736], -1724872768784, -[1,3,738], -[0,739,740,741,5], -[0,-3896,-1993], -[0,-86,-3307,-3897,-3898,-3470,-3471,-3899,-932,-1344,-1392,-3900,-1534,-1942,-2174,-2469], -[0,-1446,-1942,-3485,-856,-3214], -[1,3,743], -[0,744,745,746,4], -[0,-3901], -[0,-2581,-3902,-3117,-406,-407,-409,-410,-3037,-3040,-3903,-3904,-3905,-3906,-440,-469,-3907,-470,-3908,-3909,-3910,-3911, --3912,-767,-3913,-3914,-3915,-3916,-3917,-1435,-1449,-2926,-1637,-3918,-3919,-3920,-1771,-2006,-2019,-2023,-2080,-3921, --3922,-2410,-2924,-3923,-2466,-3924,-2469,-3612,-2564], -[0,-3925,-3926,-3927,-3928,-2023,-3612,-1435,-3921,-2410,-2564,-3923,-3911,-3916,-3929,-3930,-3912,-3922,-469,-3931,-3908, --3932,-3933,-3914,-3934], -[1,3,748], -[0,749,38,750,4], -[0,-2426], -[0,-3935,-3936,-3937,-3938,-3939,-3940,-3690], -[1,3,752], -[0,753,754,755,5], -[0,-3941,-3942,-3943,-3819,-1549], -[0,-2125,-2476,-2483], -[0,-2476,-3944,-3945,-3100,-3161,-3160,-3112,-3095,-3098,-3113,-3114], -[1,3,757], -[0,758,759,760,4], -[0,-3763,-229,-807,-1549], -[0,-3946,-2125,-2476,-2483], -[0,-2476,-3944,-3945,-3100,-3161,-3160,-3095,-3098], -[1,3,762], -[0,763,764,63,4], -[0,-3947,-2944,-2900,-3948,-3949,-3950,-2202], -[0,-3951,-3952,-3037,-2410], -[1,3,766], -[0,767,768,769,10], -[0,-2387,-1387,-3978], -[0,-1415,-2162,-668,-999,-2184,-3979,-932,-2127,-1077,-1417,-1942,-2281,-3136,-3037,-3980,-3564,-3981,-3982,-2284,-3983, --3984,-3985,-2891,-3986,-3987,-3988,-3989,-940,-428,-3990,-351,-3991,-3992,-427], -[0,-1386,-3161,-3993,-3162,-3994,-3995,-3996,-752,-891,-3997,-3998], -[1,3,771], -[0,0,156,157,4], -[1,3,773], -[0,774,0,775,4], -[0,-4003], -[0,-2410,-727,-1788,-4004,-4005], -[1,3,777], -[0,778,779,780,4], -[0,-2852,-4006,-4007,-4008,-682,-4009], -[0,-4010,-367,-407,-409,-410,-3664,-932,-940,-4011,-1449,-2006,-2019,-2410,-2466,-2469], -[0,-3095,-3098,-4012,-3099,-3161,-3100,-4013,-4014,-3159,-2006,-3160,-4015], -[1,3,782], -[0,783,784,107,4], -[0,-4016,-4017,-4018,-4019,-4020,-237,-3037,-480,-668,-680,-4021,-1119,-4022,-4023,-4024,-4025,-4026,-1426,-4027,-4028, --4029,-4030,-1427,-4031,-4032,-1639,-1950,-2218], -[0,-4033,-4034,-4035,-4036], -[1,3,786], -[0,787,0,7,4], -[0,-4017,-4046,-4047,-4048,-3037,-3041,-668], -[1,3,789], -[0,790,791,792,6], -[0,-4049,-469,-470,-1548], -[0,-234,-4050,-427,-428,-519,-4051,-932,-940,-958,-967,-1449,-1788,-1942,-2074,-4052,-2125,-2127,-2130,-2142,-2144,-2234, --2379,-2387,-2402,-2410], -[0,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-3926,-4057,-1463,-4058,-4059,-3999,-4060], -[1,3,794], -[0,795,796,797,5], -[0,-4061,-809,-1548], -[0,-3778,-163,-270,-272,-274,-350,-4062,-351,-3561,-3043,-3136,-3040,-3052,-427,-428,-3807,-748,-915,-932,-940,-958,-967, --969,-1415,-1419,-1449,-1788,-1942,-2006,-2019,-2125,-2127,-2130,-4063,-4064,-2142,-2144,-2233,-2375,-2376,-2387,-2402, --2410,-2501,-2503,-2505,-238,-240], -[0,-3118,-4065,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], -[1,3,799], -[0,34,800,801,6], -[0,-4066,-3043,-3136,-4067,-3040,-3062,-427,-428,-3807,-767,-915,-932,-940,-958,-967,-969,-1415,-1449,-1788,-1942,-2006, --2019,-2040,-2074,-4052,-2125,-2127,-2130,-2142,-2144,-2375,-2387,-2402,-2410,-238], -[0,-2006,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], -[1,3,803], -[0,804,805,7,4], -[0,-3469,-4068,-4069,-4070,-4071,-4072,-4073,-4074,-4075,-4076,-4077,-4078,-4079,-4080,-4081,-4082,-4083,-4084,-4085, --4086], -[0,-4087,-3136,-1415,-2125,-2410], -[1,3,807], -[0,808,809,810,9], -[0,-482,-567,-668,-725,-4088,-1107,-4089,-1442,-4090,-1572,-1645,-1650,-4091,-2125,-4092,-4093,-4094,-4095,-4096,-2347, --2433,-2462,-2463,-4097], -[0,-526,-4098,-555,-558,-756,-808,-1451,-1654,-1788,-4099,-2155,-2210,-2250,-2460], -[0,-2162,-3754,-775,-4100,-856,-3485,-4101], -[1,3,812], -[0,0,0,813,10], -[0,-4102,-4103,-4104], -[1,3,815], -[0,816,817,158,5], -[0,-2900], -[0,-231,-4105,-4106,-1536], -[1,3,819], -[0,820,28,821,6], -[0,-2852,-703,-2037,-4118,-2641,-2400], -[0,-3098,-3099,-3100,-3482,-2634,-1713,-2006,-3160,-4119], -[1,3,823], -[0,108,28,824,8], -[0,-4120,-3098,-4121,-3100,-3482,-2634,-1713,-4122,-2006,-4123,-3160,-4119], -[0,0,0,826,5], -[0,-3100,-3322,-3482,-2634,-1713,-2006,-4124,-4125], -[1,3,828], -[0,0,28,829,6], -[0,-3098,-3959,-3100,-3482,-4126,-2634,-1713,-2006,-3160,-4119], -[1,3,831], -[0,832,28,833,6], -[0,-2662,-2055], -[0,-3098,-3100,-3482,-2634,-1713,-4127,-4128,-4129,-2006,-3160,-4119], -[1,3,835], -[0,836,0,837,4], -[0,-4130,-257], -[0,-2006,-2634,-1713,-3160,-3098,-4119,-3482,-3100,-707,-4131,-4132,-4133], -[1,3,839], -[0,840,0,841,10], -[0,-703,-786], -[0,-2006,-2634,-1713,-3160,-3482,-3100,-906,-3771,-4134], -[1,3,843], -[0,0,0,844,5], -[0,-2006,-2634,-1713,-3482,-3100,-4124,-3322,-4125], -[1,3,846], -[0,847,0,160,4], -[0,-703,-2029,-1887,-1967,-44,-4135,-4136,-4137,-4138,-2055,-1311,-3024], -[1,3,849], -[0,39,0,850,4], -[0,-2006,-3159,-3119,-1613,-3843], -[1,3,852], -[0,0,853,161,4], -[0,-1415,-2446,-1344,-932,-1548,-753,-2379,-2402,-1942,-589,-21,-533,-2410,-23,-3136,-3738,-1771,-3044,-50,-86,-3268,-40, --977,-2082,-940,-967,-2405,-42,-262,-4139,-428,-3307,-427,-26,-36,-35], -[1,3,855], -[0,856,0,857,5], -[0,-4145], -[0,-4146,-1599,-4147,-2006,-2093], -[1,3,859], -[0,860,861,862,10], -[0,-264,-263,-834,-1548,-1645,-2114,-2177,-2231,-2410,-4148,-4149,-4150,-4151,-4152], -[0,-4153,-3044,-3200,-3199,-932,-4154,-4155], -[0,-2410,-3816,-4156,-4157,-4158,-3960,-856,-4159,-4160,-3761,-2127,-4161,-3116,-4162,-4163], -[1,3,864], -[0,0,865,162,4], -[0,-932,-4153,-4164], -[1,3,867], -[0,868,869,162,4], -[0,-469,-4166,-2114,-263], -[0,-932,-4167,-3200,-4153,-4164], -[1,3,871], -[0,0,872,873,5], -[0,-4168,-4169,-4170,-4171,-3037], -[0,-4172,-4173,-4174,-4175,-4176,-4177,-4178,-4179], -[1,3,875], -[0,876,877,878,8], -[0,-267], -[0,-265,-4171,-2400], -[0,-4172,-4173,-4174,-4175,-4176,-4177,-4180,-4181,-3816,-4182,-4183,-4184], -[1,3,880], -[0,0,881,882,4], -[0,-4185,-265,-4171,-3037,-4186], -[0,-4172,-4173,-4174,-4175,-4176,-4177,-4187,-2444], -[1,3,884], -[0,0,0,885,5], -[0,-4188,-3100,-4189,-3110], -[1,3,887], -[0,888,889,890,4], -[0,-4190,-4191,-4192,-4193,-4194,-4195], -[0,-86,-3307,-4196,-4197,-3983,-4198,-3617,-4199,-4200,-3037,-4201,-4202,-4203,-4204,-523,-617,-720,-754,-767,-796,-4205, --1004,-4206,-4207,-1063,-1116,-1278,-1449,-1729,-3246,-2228,-2229,-4208,-2291,-2293,-2892,-2410,-2426,-2469,-4209,-2817, --4210,-2501,-4211,-2531], -[0,-2105,-4212,-1334,-1342,-2540,-2533,-4213,-4214,-4215,-4216,-3634], -[1,3,892], -[0,39,0,893,4], -[0,-2006,-3159,-4217,-1613,-3119,-3843], -[1,3,895], -[0,896,0,897,6], -[0,-703,-2825,-2690,-1967,-273,-44], -[0,-2006,-3159,-4217,-1613,-3119,-1510], -[1,3,899], -[0,900,0,901,4], -[0,-703,-786,-2029,-2825,-2690,-1967,-273,-44,-2997,-2055,-4218,-3024], -[0,-2006,-3159,-4217,-1613,-3119], -[1,3,903], -[0,904,0,905,9], -[0,-703,-786,-2825,-2690,-1967,-44,-2575,-2689], -[0,-2006,-3159,-4217,-4219], -[1,3,907], -[0,908,0,909,4], -[0,-44,-2690,-3024,-703,-1967,-2055,-4220], -[0,-2006,-3159,-4217,-4221,-1613,-3119,-4222,-4223,-4224], -[1,3,911], -[0,912,913,914,5], -[0,-4225,-4226,-4227,-4228,-4229,-4230,-4231,-4232,-4233,-682,-712,-4234,-4235,-4236,-1107,-1125,-4237,-4238,-4239,-4240, --4241,-4242,-2095,-4243,-4244,-4245,-4246,-2400,-2427,-2429,-2501,-4247,-2650], -[0,-4248,-4249,-4250,-4251,-3040,-3046,-518,-726,-2634,-1906,-2006,-2019,-2083,-2318,-2391,-2410,-4252,-4253,-4254], -[0,-4147,-856,-1713,-1599], -[1,3,916], -[0,917,0,109,9], -[0,-4255,-4256,-2888,-4257], -[1,3,919], -[0,920,0,109,11], -[0,-2387,-276], -[1,3,922], -[0,923,0,109,5], -[0,-2083,-4262,-2087,-2090,-3649,-4263,-4264,-1292,-2429,-4265,-4266,-4267,-668,-4245,-2427,-2268], -[1,3,925], -[0,926,927,928,5], -[0,-4268,-820,-665,-4269], -[0,-664,-616,-1654,-932,-4270,-2125,-4271,-2379,-1098,-1942,-2410,-3035,-3037,-4272,-595,-964,-958,-940,-967,-428,-4273, --427,-279,-4274,-4275], -[0,-4276,-4277,-4271,-3634], -[1,3,930], -[0,931,932,7,5], -[0,-4278,-4279,-4280,-281,-4281,-4282,-282,-4283,-4284,-4285,-283,-4286,-4287,-4288,-1315,-4289,-1582,-1645,-1758,-4290, --1767,-4291,-1770,-1831,-4292,-1957,-4293,-4294,-4295,-2177,-2247,-4296,-4297], -[0,-4298,-4299,-4300,-589,-4301,-1722,-2319,-2325,-4302], -[1,3,934], -[0,935,29,936,5], -[0,-4282,-4283,-1107,-1645], -[0,-1764,-1776,-4303,-687,-4304,-4305], -[1,3,938], -[0,0,29,939,10], -[0,-1764,-687,-1733], -[1,3,941], -[0,942,943,7,6], -[0,-282,-4283,-4306,-1733,-1957,-2518], -[0,-4298,-4300,-4307,-2319], -[1,3,945], -[0,946,947,163,5], -[0,-4308,-4309,-4310,-1600,-1395,-4311,-4312,-4313,-4314,-4315,-4316,-1550,-4317,-2161,-3649,-4318,-4319,-1554,-4320, --1603,-4321,-4322,-4323,-3430,-4324,-4325], -[0,-1107,-1654,-674,-2250,-4326,-633,-4327,-2251], -[1,24,949], -[0,25,950], -1734998400000, -[1,3,952], -[0,953,0,64,4], -[0,-293], -[1,3,955], -[0,956,0,64,10], -[0,-1787,-2387], -[1,3,958], -[0,959,0,64,4], -[0,-300], -[1,3,961], -[0,962,963,64,5], -[0,-4341,-888,-2387,-2177,-2551,-1645,-910], -[0,-1415,-1787], -[1,3,965], -[0,966,40,967,4], -[0,-2387,-297,-293,-1863,-2654,-2383], -[0,-4332,-4342,-4335,-4340,-4343,-4344], -[1,3,969], -[0,970,40,164,4], -[0,-2387,-297,-2177,-293,-2410], -[1,3,972], -[0,973,0,974,9], -[0,-2387,-297,-299,-293], -[0,-4332,-4336,-4348,-4338,-4339,-4340,-4344], -[1,3,976], -[0,977,40,978,11], -[0,-668,-2387,-1353,-2177,-715,-3187,-1864,-293,-1863,-2654,-23,-832,-1461,-1773,-300,-44,-4341,-40,-2234,-3766,-4349,-42, --38,-33,-3376,-4350], -[0,-4332,-4335,-4336,-4351,-4352,-4340,-4343,-4344], -[1,3,980], -[0,981,0,165,4], -[0,-2387,-297,-299,-293,-295,-4353], -[1,3,983], -[0,984,40,165,8], -[0,-2387,-297,-2571,-4354,-293,-4355,-295,-4356], -[1,3,986], -[0,987,40,64,9], -[0,-1787,-668,-2387,-2177,-910,-1864,-293,-2551,-4341], -[1,3,989], -[0,990,991,76,4], -[0,-302,-4357,-4358,-4359,-812,-2177], -[0,-4360,-3035,-3621,-3037,-3199,-664,-697,-740,-932,-938,-939,-4361,-1111,-1654,-2210,-2379,-2410], -[1,3,993], -[0,994,995,76,5], -[0,-4357,-4358,-812,-1111,-1401,-2387], -[0,-3035,-4363,-3044,-3621,-3037,-4364,-4365,-664,-740,-932,-938,-939,-4361,-1548,-1654,-1972,-2379,-2410], -[1,3,997], -[0,998,999,1000,4], -[0,-480,-483,-4366,-692,-812,-888,-1097,-1366,-1401,-1532,-1645,-2177,-2267,-2297,-2654,-2820,-2525,-2528], -[0,-3307,-3615,-304,-4360,-4367,-4368,-3268,-3035,-4269,-4369,-3198,-4370,-4363,-3621,-3037,-4371,-4372,-4373,-4374,-4365, --589,-664,-665,-721,-767,-932,-938,-940,-1344,-1534,-4375,-1654,-1788,-1942,-2200,-2210,-2379,-2384,-2410], -[0,-4362,-687,-3957,-4376,-3215,-4377,-4378], -[1,3,1002], -[0,1003,1004,1005,6], -[0,-303], -[0,-3307,-3615,-4367,-4368,-3035,-3621,-3037,-664,-721,-932,-938,-940,-1344,-1534,-1654,-4362,-1942,-2200,-2379,-2410], -[0,-4379], -[1,3,1007], -[0,1008,1009,1010,4], -[0,-3704,-4380,-4381,-4382], -[0,-4383,-4384,-4385,-4386,-4387,-3037,-3664,-928,-1037,-1107,-1722,-1942,-4388,-2410,-2426,-2469], -[0,-4389,-1105,-3691,-4390], -[1,3,1012], -[0,1013,0,65,4], -[0,-4391,-4392,-4393,-4394,-4395,-4396,-4397,-4398,-4399,-4400,-4401,-4402,-4403,-4404,-4405,-4406,-4407,-4408,-4409, --4410,-4411,-4412,-4413,-4414,-4415,-4416,-4417,-4418,-4419,-4420,-4421,-4422,-4423,-4424,-4425,-4426,-4427,-4428,-4429, --4430,-4431,-4432,-4433,-4434,-4435,-4436,-4437,-4438,-4439,-4440,-4441,-4442,-4443,-4444,-4445,-4446,-4447,-4448,-4449, --4450,-4451,-4452,-4453, --4454,-4455,-4456,-4457,-4458,-4459,-4460,-4461,-4462,-4463,-4464,-4465,-4466,-4467,-4468,-4469,-4470,-4471,-4472,-4473, --4474,-4475,-4476,-4477,-4478,-4479,-4480,-4481,-4482,-4483,-4484,-4485,-4486,-4487,-4488,-4489,-4490,-4491,-4492,-4493, --4494,-4495,-4496,-4497,-4498,-4499,-4500,-4501,-4502,-4503,-4504,-4505,-4506,-4507,-4508,-4509,-4510,-4511,-4512,-4513, --4514,-4515,-4516,-4517, --4518,-4519,-4520,-4521,-4522,-4523,-4524,-4525,-4526,-4527,-4528,-4529,-4530,-4531,-4532,-4533,-4534,-4535,-4536,-4537, --4538,-4539,-4540,-4541,-4542,-4543,-4544,-4545,-4546,-4547,-4548,-4549,-4550,-4551,-4552,-4553,-4554,-4555,-4556,-4557, --4558,-4559,-4560,-4561,-4562,-4563,-4564,-4565,-4566,-4567,-4568,-4569,-4570,-4571,-4572,-4573,-4574,-4575,-4576,-4577, --4578,-4579,-4580,-4581, --4582,-4583,-4584,-4585,-4586,-4587,-4588,-4589], -[1,3,1015], -[0,1016,1017,65,5], -[0,-4595,-4596,-712], -[0,-4597,-2391], -[1,3,1019], -[0,0,1020,65,8], -[0,-21,-23,-40,-1026,-1168,-1171,-1184,-1187,-1226,-4598,-4599,-2125,-2281,-2282,-2303], -[1,3,1022], -[0,0,1023,65,8], -[0,-21,-23,-40,-1168,-1171,-1184,-1226,-2125,-2281,-2282], -[1,3,1025], -[0,0,0,1026,4], -[0,-4600,-4601,-4602,-3578,-3445,-743], -[1,3,1028], -[0,1029,0,1030,4], -[0,-4603,-4604,-310,-4605,-4606,-4607,-4608,-4609], -[0,-4600,-4601,-4602,-3578,-3445,-4610,-2105], -[1,3,1032], -[0,1033,0,1034,5], -[0,-4611,-1640,-4612,-4605,-310,-4613,-4614,-311,-313,-4615], -[0,-4600,-4601,-4602,-3578,-3445,-4616], -[1,3,1036], -[0,1037,0,1038,4], -[0,-1640,-4617,-4614], -[0,-4600,-4601,-4602,-3578,-3445,-4616,-2178,-4618], -[1,3,1040], -[0,1041,1042,1043,4], -[0,-4619,-523,-617,-668,-1004,-1122,-1123,-1336,-1343,-1439,-1548,-1993,-4620,-3122,-4621], -[0,-21,-23,-40,-4622,-3035,-4269,-3617,-4623,-3044,-3621,-4624,-3037,-4625,-4372,-3625,-4626,-427,-428,-664,-665,-4627, --749,-932,-934,-935,-940,-948,-4628,-958,-964,-1654,-1722,-1788,-1942,-1972,-2125,-2210,-2211,-2234,-2392,-2410], -[0,-4629,-4630,-3214,-4631,-3634,-4632], -[0,0,0,7,10], -[1,3,1046], -[0,1047,0,1048,6], -[0,-1851], -[0,-4125,-4633,-2006,-2476,-2299,-4634,-2410,-3214,-3100,-3445,-1109,-3160,-1062,-3122], -[1,3,1050], -[0,1051,1052,7,4], -[0,-4635,-4636,-4637,-4638,-4639,-4640,-4641,-4642,-4643,-4644,-4645], -[0,-3035,-3621,-664,-778,-925,-1471,-1475,-1479,-1480,-1482,-1483,-1654,-2125,-3047,-2275,-2402,-2410,-2501], -[1,3,1054], -[0,0,1055,1056,4], -[0,-3983,-4646,-351,-3266,-406,-407,-4647,-3037,-4648,-784,-932,-4649,-4650,-4651,-4652,-1110,-1449,-1889,-1891,-1942, --4653,-4654,-2091,-4655,-4656,-2127,-2132,-2142,-2286,-2379,-2387,-2392,-2402,-4657,-2405,-4658,-4659,-4660,-4661,-4662, --2410,-4663,-2468,-4664], -[0,-4665,-4666,-4667,-4668,-4669,-775,-3099,-4189,-4670,-4671,-856,-4672,-4673,-3264,-4674,-4675,-4676,-3214,-4677,-4678, --4679,-4680,-4681,-4682,-4683,-2410,-4684,-2257,-4685,-2006,-3322], -[1,3,1058], -[0,1059,1060,7,4], -[0,-4686], -[0,-4687,-4688,-4689,-4690,-528,-4691,-824,-4692,-957,-1077,-4693,-1168,-1174,-1197,-1212,-1244,-1251,-4694,-4695,-1632, --1839,-4696,-4697,-2347,-2410,-4698], -[1,3,1062], -[0,1063,1064,1065,8], -[0,-469,-864,-2359,-4699,-1107,-2162,-510,-4700,-4701,-2550,-932,-2125,-2177,-2334,-2536,-1004,-4702,-4703,-571,-679,-867, --1376,-1942,-2199,-715,-4704,-4705,-633,-4706,-1354,-1633,-1729,-23,-1793,-4707,-47,-4708,-25,-305,-2232,-4709,-46,-4710, --2104,-2433,-3194,-4711,-40,-4712,-4713,-41,-4714,-960,-2082,-32,-4715,-1458,-4716,-3077,-42,-4717,-4718,-4719, --3408,-4720,-3362,-4721,-3398], -[0,-2322,-4722,-2234], -[0,-4723,-3116,-687,-3161,-3577,-4724,-3162,-4725,-3445,-4726,-4727,-4728,-3205,-4729,-4730,-3186], -[1,3,1067], -[0,0,1068,1069,9], -[0,-932,-3469,-4731,-4732,-4733,-4734,-4735,-768,-769,-4736,-1077,-1387,-4737,-2654,-4738], -[0,-4739,-3161,-4740,-3843,-4741], -[1,3,1071], -[0,1072,1073,1074,9], -[0,-1983,-1436,-4742,-4743,-1416], -[0,-1344,-2006,-2344,-932,-2127,-795,-2501,-1942,-4744,-2019,-2257,-2410,-3136,-3037,-3040,-4745,-4746,-2046,-4747,-4748, --86,-4749,-3052,-2044,-4750,-2132,-4751,-1352,-969,-933,-958,-2140,-4752,-4753,-4754,-4755,-409,-940,-962,-967,-350, --4756,-4757,-2113,-3267,-4758,-407,-428,-970,-4759,-4760,-4761,-351,-4762,-410,-4763,-2413,-3307,-935,-4764,-427,-3474, --4765, --3394], -[0,-2006,-2344,-4766,-4767,-4768,-4769,-4770,-4771,-3100], -[1,3,1076], -[0,1077,1078,1079,5], -[0,-3117,-3901,-1359,-2074,-2079,-2112], -[0,-2832,-23,-3341,-262,-4772,-4773,-4774,-406,-409,-4775,-410,-4776,-4777,-3705,-4778,-3037,-4779,-3040,-3052,-3041,-427, --428,-523,-928,-4780,-932,-940,-941,-956,-958,-962,-967,-969,-970,-1077,-1384,-1449,-1459,-1683,-1729,-1942,-1984,-2006, --2019,-2125,-2214,-2387,-2391,-2392,-2410,-2924,-3924,-2469,-2550], -[0,-2074,-2006,-4781,-3481,-4782,-4783,-1359,-1361,-4784], -[1,3,1081], -[0,1082,1083,1084,4], -[0,-4785,-4786,-989,-4787,-4788,-1588,-1864], -[0,-4062,-351,-4789,-4790,-2127,-2231,-2234,-2410], -[0,-2127,-3862,-1764,-3209,-4791,-4792], -[1,3,1086], -[0,1087,1088,1089,10], -[0,-4785,-3200,-823,-4793,-2114], -[0,-23,-3412,-3326,-350,-4062,-922,-2127,-2231,-4794], -[0,-2127,-3862,-4795,-1764,-3209], -[1,3,1091], -[0,1092,1093,1094,4], -[0,-653,-2359,-754,-2466,-668,-1111,-1650,-1872,-928,-1004,-4796,-1306,-2223,-679,-4797,-4798,-4799,-4800,-1461,-4801, --4802,-4803,-4804,-263,-4805,-4806,-4807,-440,-4808,-264,-262,-4149], -[0,-4809,-2446,-2006,-932,-2125,-4810,-2469,-1942,-2019,-3628,-2410,-4198,-3037,-3738,-1534,-3040,-3041,-1772,-4811,-3617, --3052,-2174,-2278,-4812,-969,-940,-962,-967,-428,-970,-1945,-4813,-427,-4814], -[0,-4810,-4158,-4165,-3816,-4815,-3960,-856], -[1,3,1096], -[0,1097,1098,1099,5], -[0,-2921,-4816,-4817,-1085,-3649,-4818,-1699,-2476,-4819,-4820,-4821,-4822,-4823,-4824,-4825,-4826,-4827,-4828,-4829, --4830,-4831,-4832,-4833,-4834], -[0,-4835,-3983,-4836,-4837,-3250,-4838,-1313,-1449,-2006,-4839,-2318,-2466,-4840,-4841,-2469,-4842,-4843,-4844,-4845], -[0,-3095,-856,-3438,-4846,-4679,-4847,-2476,-3944], -[1,3,1101], -[0,1102,1103,1104,4], -[0,-4848,-3649,-4825,-4827,-4843], -[0,-4849,-4850,-4851,-1030,-2466,-2469,-2548,-353,-4842], -[0,-3690,-856,-1030,-3438,-4847], -[1,3,1106], -[0,1107,1108,1109,4], -[0,-4852,-4853,-4854,-823,-2792,-4855], -[0,-4856,-4857,-4858,-4859,-4860,-4861,-3035,-3617,-4862,-3621,-523,-617,-652,-767,-1004,-1323,-1654,-4863,-1970,-2253, --2379,-2410], -[0,-4864,-4865,-4866,-4867,-4868,-4869,-4870,-4871,-4872,-4043,-3160,-3100,-475,-2006,-2476,-3440,-4873,-4004,-3634], -[1,3,1111], -[0,1112,1113,1114,10], -[0,-4852,-4853,-4854,-4874,-823,-4855], -[0,-4856,-3621,-4875,-4876,-4877,-4878,-4879,-523,-652,-767,-1654,-4863,-4880,-2253,-4881], -[0,-4864,-4865,-4866,-4867,-4868,-4869,-4870,-4871,-4872,-4043,-3160,-3100,-3440,-4873,-4004,-3634,-4881,-4882,-4883], -[1,3,1116], -[0,1117,1118,7,4], -[0,-4884], -[0,-4885,-4886,-4887,-4888,-4889,-928,-1344,-1449,-1534,-1654,-1788,-1942], -[1,3,1120], -[0,1121,1122,1123,4], -[0,-2006,-2019,-3654,-261,-4890,-4891,-4892], -[0,-2466,-2006,-2361,-1885,-4893,-2019,-3517,-2410,-4228,-2089,-3040,-4894,-3523,-3649,-2795,-1606,-4785,-3525,-2085], -[0,-3671,-856,-2257,-4895,-4896,-4897,-4898,-1599,-4899,-4900,-4901,-3095,-3098,-2006,-2476,-475,-2299,-4902], -[1,3,1125], -[0,1126,1127,110,6], -[0,-4903,-4904,-3165,-4905,-44,-3946,-195,-4906,-196,-197,-4907,-4908,-4909,-4910,-4911,-4912,-595,-4913,-682,-747,-809, --4914,-4915,-4916,-4917,-4918,-4919,-4920,-4921,-4922,-4923,-4924,-3123,-4925,-4926,-4927,-4928,-4929,-4930,-4931,-4932, --4933,-4934,-4935,-4936,-4937,-4938,-2002,-4939,-4940,-4941,-4942,-4943,-2003,-4944,-4945,-4946,-4947,-2004,-2013,-4948, --4949,-4950, --2053,-4951,-2344,-2345], -[0,-3139,-23,-4952,-4953,-162,-3778,-4954,-4955,-4773,-3562,-4757,-4762,-4763,-4754,-4956,-4957,-4958,-4749,-4760,-4959, --406,-407,-409,-410,-4960,-3136,-4961,-4962,-4963,-4964,-3044,-3803,-4965,-4966,-3040,-4967,-3087,-3052,-4968,-4969, --4970,-4971,-4972,-427,-428,-4973,-4974,-4975,-534,-4976,-668,-674,-767,-4977,-881,-4978,-3808,-932,-933,-940,-948,-952, --958, --959,-962,-963,-969,-970,-4756,-978,-1026,-4979,-1077,-1103,-1107,-1339,-1344,-1352,-1359,-1360,-1376,-1404,-1415,-4980, --1416,-1419,-1421,-4981,-4982,-1437,-1449,-4983,-3134,-1534,-1548,-4984,-1662,-1805,-1942,-1943,-1950,-1955,-1959,-1983, --4985,-4986,-4987,-2006,-2012,-2016,-2017,-2019,-3051,-4988,-4989,-4990,-4991,-2044,-4992,-4993,-2093,-2094,-4994,-4995, --4996,-2177,-2205, --2214,-2281,-4997,-4998,-2282,-4999,-5000,-2334,-2379,-2402,-2410,-5001,-2502,-5002,-5003], -[1,3,1129], -[0,1130,166,111,4], -[0,-5004,-5005,-5006,-5007,-2741,-5008,-1085,-1548,-5009,-5010,-2355,-2446], -[1,3,1132], -[0,1133,166,111,5], -[0,-5004,-5005], -[1,3,1135], -[0,1136,1137,111,4], -[0,-5006,-5007,-2741,-5008,-5025,-1085,-1343,-1548,-5026,-1729,-5009,-5027,-5010,-2355,-2446], -[0,-5028,-3044,-3037,-5011,-3738,-519,-865,-1771,-1942,-5012,-2376,-2379,-5013,-2388,-2389,-2410,-2501,-2503,-2509], -[1,3,1139], -[0,1140,1141,1142,6], -[0,-1110], -[0,-50,-5029,-5030,-932,-940,-965,-975,-2299,-2410,-2411], -[0,-932,-727,-5031,-2299], -[1,3,1144], -[0,1145,1146,1147,5], -[0,-3117,-5032,-5033,-461,-743,-5034,-5035,-1496,-1588,-5036,-5037,-3169,-2213], -[0,-5038,-3983,-365,-5039,-3037,-3172,-5040,-2127,-2299,-2301,-2410,-2466,-2469], -[0,-3161,-5041,-2299,-3176,-2466], -[1,3,1149], -[0,1150,1151,1152,5], -[0,-5042,-2814,-823,-1588,-5043], -[0,-2162,-2466,-2299,-3198], -[0,-5044,-5045,-2466,-2299], -[1,3,1154], -[0,1155,1156,1157,5], -[0,-23,-5046,-40,-41,-42,-2699,-5047,-5048], -[0,-534,-1626,-2437,-2501], -[0,-5049,-3839,-2006,-2501,-5050], -[1,3,1159], -[0,1160,1161,1162,5], -[0,-5051,-5052], -[0,-5053,-5054,-767,-2410], -[0,-5055,-5056,-525,-2410,-5057,-2501,-5058], -[1,3,1164], -[0,1165,1166,1167,5], -[0,-620,-2997], -[0,-1107,-1168,-1415,-2162,-2125,-1889,-1942,-749,-1248,-2281,-1232,-2410,-3037,-518,-1238,-1930,-2285,-5059,-5060,-5061, --5062], -[0,-3754,-3098,-4902,-5063,-5064,-3482,-4012,-3160,-3100], -[1,3,1169], -[0,0,37,1170,10], -[0,-5065,-5066,-5067,-5068,-5069,-5070,-5071,-3100,-2410,-3214,-5072,-5073,-5074,-5075,-5076,-5077,-5078,-5079,-5080, --5081,-5082,-5083,-5084], -[1,3,1172], -[0,141,142,143,4], -[1,3,1174], -[0,1175,1176,1177,9], -[0,-44,-737,-2387], -[0,-23,-38,-40,-42,-3244,-190,-3983,-3326,-350,-351,-3561,-3266,-5085,-3037,-427,-428,-539,-932,-940,-5086,-5087,-5088, --5089,-1772,-1942,-2127,-5090,-2200,-5091,-2410], -[0,-5092,-3264,-5093,-5094,-3214,-5095,-3839,-2410], -[1,3,1179], -[0,167,1180,7,4], -[0,-409,-4775,-3040,-3052,-440,-757,-1772,-2006,-2019,-2965,-5097,-5098], -[1,3,1182], -[0,167,1183,1184,5], -[0,-2299,-2300,-3170,-975,-5099,-428,-5098,-365], -[0,-5100,-5101,-2299], -[1,3,1186], -[0,1187,1188,1189,4], -[0,-5102], -[0,-5103,-3136,-427,-5104,-932,-936,-5105,-940,-967,-968,-1415,-1419,-1441,-1446,-1637,-2375,-2376,-2410], -[0,-5106,-5107,-5108,-5109,-5110,-3100,-3323,-3105], -[1,3,1191], -[0,1192,1193,1194,5], -[0,-44,-406], -[0,-795,-2410,-5111,-1771], -[0,-3634,-795,-3160,-5092,-4868,-5112,-4867,-4866], -[1,3,1196], -[0,1197,1198,1199,4], -[0,-4984,-5113,-1863,-1950,-44,-22,-5114,-5115], -[0,-1449,-2410,-5111,-635,-658,-5116,-407,-5117,-5118], -[0,-3634,-3160,-5092,-1449,-5119,-4868,-5112,-4867,-4866], -[1,3,1201], -[0,1202,1203,1204,4], -[0,-5120,-5113,-2745,-1863,-28,-5115], -[0,-1449,-1001,-2127,-2469,-2410,-5111,-5121,-1950,-5122,-350,-5117,-5123], -[0,-3634,-5092,-1415,-1449], -[1,3,1206], -[0,1207,1208,1209,10], -[0,-668,-5120,-1418,-1950,-5124], -[0,-1415,-1344,-2006,-932,-1942,-21,-720,-2410,-23,-3136,-3040,-1952,-2034,-44,-2174,-3141,-2052,-5125,-796,-3081,-3153, --3156,-5126], -[0,-3634,-5127,-1415,-2034], -[1,3,1211], -[0,39,1212,1213,5], -[0,-406,-407,-3040,-3052,-668,-5128,-1418,-5111,-1772,-2006,-2019,-2125,-2410], -[0,-3634,-2006,-3160,-5092,-1449,-5119,-4868,-5112,-4867,-4866], -[1,3,1215], -[0,0,1216,1217,4], -[0,-1392,-1449,-2006,-1001,-928,-2379,-5129,-2019,-2745,-2410,-5111,-3040,-5116,-5130,-5089,-5131,-5087,-5132,-406,-5133, --5086,-409,-5134,-5088,-407,-5135,-5136,-3626,-948,-5137], -[0,-5138,-5139,-2006,-3634], -[1,3,1219], -[0,1220,0,1221,6], -[0,-4603,-5140,-412,-417,-418,-419,-420], -[0,-5141,-3122,-3445,-1334,-3161,-3690], -[1,3,1223], -[0,0,0,1224,9], -[0,-5141,-4601,-4602,-3578,-3445,-743], -[1,3,1226], -[0,0,0,1227,11], -[0,-5141,-4601,-4602,-3578,-3445,-5142,-743], -[1,3,1229], -[0,1230,1231,168,4], -[0,-5143], -[0,-652,-2392,-1344,-2410,-3037,-411,-2581,-86,-5144,-3307], -[1,3,1233], -[0,0,0,1234,6], -[0,-5141,-4601,-4602,-3578,-3445,-990], -[1,3,1236], -[0,0,0,1237,9], -[0,-5141,-4601,-4602,-3578,-3445,-5145,-5146,-5147], -[1,3,1239], -[0,1240,0,1241,4], -[0,-416], -[0,-5141,-4601,-4602,-3578,-3445,-5148,-1389,-5149,-5150], -[1,3,1243], -[0,1244,0,1245,6], -[0,-4603,-5151,-422,-423], -[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105], -[1,3,1247], -[0,1248,0,1249,4], -[0,-5143,-1640,-5152,-412,-413,-2701,-418,-421], -[0,-5141,-4601,-4602,-3578,-3445,-4616], -[1,3,1251], -[0,169,0,1252,8], -[0,-5141,-4601,-4602,-3578,-3445,-3122], -[1,3,1254], -[0,1255,0,1256,5], -[0,-1640,-415,-5153], -[0,-5141,-4601,-4602,-3578,-3445,-4616,-2178,-4618], -[1,3,1258], -[0,1259,0,1260,9], -[0,-1640,-5153], -[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105,-2401,-3214], -[1,3,1262], -[0,0,0,1263,6], -[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105,-2435,-5154,-5101], -[1,3,1265], -[0,0,0,77,5], -[1,3,1267], -[0,1268,0,1269,9], -[0,-5190,-5191,-5192,-5193,-2387], -[0,-5194,-5195,-3445,-5196,-5197,-3690], -[1,3,1271], -[0,1272,1273,1274,11], -[0,-1353,-5198,-5199,-429,-5200,-5201,-5202,-3331], -[0,-469,-1610,-2469,-1942,-5203,-4251,-3040,-1605,-5204,-2429,-4049,-3664,-1618,-5205,-5206,-5207], -[0,-932,-5208,-3784,-2410], -[1,3,1276], -[0,1277,112,1278,6], -[0,-812,-3782,-5202,-3331,-5209], -[0,-3272,-3217,-3214,-2410,-3215,-4132,-932], -[1,3,1280], -[0,1281,112,1282,5], -[0,-3782,-189,-3331,-5209], -[0,-932,-2410,-5210], -[1,3,1284], -[0,1285,1286,1287,8], -[0,-161,-163,-5211,-682,-5212,-5213,-906,-5214,-5215,-1311,-1548,-5216,-1666,-1967,-5217,-4922,-5218,-4929,-4934,-2002, --2004,-2030,-4991,-2055,-2113,-2192,-2489,-5219], -[0,-21,-23,-26,-33,-38,-39,-40,-41,-42,-86,-3307,-407,-409,-3059,-5220,-3044,-5221,-3040,-3052,-427,-428,-5222,-5223,-523, --528,-533,-534,-5224,-540,-5225,-5226,-720,-5227,-778,-796,-915,-916,-2760,-932,-969,-970,-1041,-1077,-1331,-1344,-1415, --5228,-4981,-5229,-1534,-1643,-1667,-1814,-1942,-2000,-2006,-2019,-2049,-2052,-2251,-2275,-2281,-3085, --5230,-5231,-5232,-2410,-2417,-2437,-2501,-2502,-2503], -[0,-2006,-3159,-3095,-3098,-3100,-5233], -[1,3,1289], -[0,1290,0,170,5], -[0,-703,-1436,-1548,-1699,-5234,-2650,-5235,-5236,-5237,-5238,-5239,-1320,-5240,-5241,-5242,-5243,-5244,-5245], -[1,3,1292], -[0,171,0,1293,5], -[0,-5248,-5249,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], -[1,3,1295], -[0,1296,0,1297,4], -[0,-5254], -[0,-3167,-5255,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], -[1,3,1299], -[0,171,0,1300,4], -[0,-3962,-5256,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], -[1,3,1302], -[0,1303,0,1304,8], -[0,-5257,-436], -[0,-5258,-5259,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], -[1,3,1306], -[0,0,0,1307,6], -[0,-5260,-5261,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], -[1,3,1309], -[0,1310,1311,1312,5], -[0,-1983,-754,-1004,-2401,-724,-5262,-5263,-5264,-5265,-442], -[0,-1415,-2177,-2375,-2293,-533,-2410,-23,-4198,-3136,-3037,-5266,-2581,-3617,-5267,-4203,-3732,-3697], -[0,-5268,-3100,-5269,-5270,-5271,-3441,-5272], -[1,3,1314], -[0,1315,1316,1317,4], -[0,-5273,-5274,-5275,-5276,-5277,-5278,-5279,-5280], -[0,-2384,-2392,-2391,-2466,-1344,-932,-2125,-5281,-2469,-928,-1889,-2910,-2281,-1747,-1874,-5282,-2214,-2302,-2410,-3037, --1534,-1771,-3040,-5283,-5284,-2581,-5285,-5286,-2284,-5287,-5288,-5289,-2411,-5290,-3664,-5291,-2832,-5292,-5293,-2282, --5294,-2970,-5295,-5296,-5297,-4999], -[0,-5065,-5298,-5299,-5300,-5301,-5302,-5303,-5304,-5305,-5067,-5306,-5307,-5308,-5309,-5310,-5069,-5311,-3100,-2410, --5312,-5313,-5314,-5315,-5316,-5072,-5073,-5074,-5317,-5318,-5083], -[1,3,1319], -[0,1320,1321,1322,5], -[0,-753,-2314,-23,-635,-1588,-40,-2082,-5319,-3343,-3344,-3370,-3377], -[0,-4787,-2466,-461,-2892,-1863], -[0,-3100,-2466,-5044,-439], -[1,3,1324], -[0,1325,1326,1327,6], -[0,-23,-5320,-5321,-5322,-4776,-2041], -[0,-5323,-2006,-2019,-2923,-2892], -[0,-525,-5324,-2006,-2041,-2466,-5044], -[1,3,1329], -[0,1330,1331,1332,5], -[0,-429,-1026,-2411,-2478], -[0,-5325,-3037,-932,-980,-999,-5326,-1942,-2392,-2410,-2469,-2476], -[0,-2476,-5327,-5328,-932,-2410], -[1,3,1334], -[0,1335,1336,1337,10], -[0,-469,-470,-5329,-1335,-5330,-1851,-3122,-2187,-5331,-3434,-2548], -[0,-1004,-1654,-2250,-2293], -[0,-1004,-3438,-4847,-856], -[1,3,1339], -[0,1340,1341,113,5], -[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5339,-5340,-747,-823,-5341,-909,-5342,-5343,-5344, --3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, --4942,-2003,-4944,-2004,-2013,-2965,-2028,-5350,-5351,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5354, --5355,-2427,-2429, --5356,-2435,-5357,-5358,-5359], -[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3803,-3040,-3087,-3052,-5364,-5365,-5366,-932,-4597,-1026,-1031, --5367,-5368,-1344,-1534,-1942,-1944,-1945,-2006,-2019,-2281,-2379,-2410,-2469,-5369,-5370], -[0,0,0,7,9], -[1,3,1344], -[0,0,1345,1346,4], -[0,-3037,-427,-428,-932,-934,-958,-2125,-2127,-2142,-2410], -[0,-3445,-5373,-5374,-5375,-5376,-5377,-5378], -[1,3,1348], -[0,1349,1350,1351,4], -[0,-5379], -[0,-23,-3204,-40,-43,-5380,-5381,-3621,-3037,-507,-708,-5382,-932,-1471,-1475,-1476,-1479,-5383,-1480,-1482,-1486,-1654, --1771,-1788,-1810,-2125,-2127,-2128,-5384,-2131,-2137,-2139,-2141,-5385,-2379,-5386,-2410], -[0,-5387,-5388,-5389,-997,-5390,-5391,-5392,-5393,-5394,-5395,-5396], -[1,3,1353], -[0,1354,172,1355,5], -[0,-1641,-5397], -[0,-5398,-5399,-5400,-459], -[1,3,1357], -[0,1358,114,1359,5], -[0,-510,-615,-1548,-1671,-2071], -[0,-5401,-460,-3578], -[1,3,1361], -[0,1362,0,7,10], -[0,-461], -[1,3,1364], -[0,1365,1366,1367,8], -[0,-523,-668,-719,-1039,-1077,-1376,-1816,-5402,-2205], -[0,-350,-4062,-351,-3266,-5403,-3048,-5404,-3049,-3037,-2125,-2127,-4063,-5405,-2142,-5232,-2387,-2388,-2410], -[0,-687,-463,-2476,-2006,-5406,-5407,-2410,-3967], -[1,3,1369], -[0,0,1370,1371,4], -[0,-664,-1351,-1654,-1942,-2125], -[0,-5408,-1636,-5409,-2432], -[1,3,1373], -[0,0,27,1374,5], -[0,-5410,-465,-5411,-5412,-5413], -[1,3,1376], -[0,1377,1378,1379,8], -[0,-5414,-5415,-812,-5416,-3222], -[0,-3198,-5417,-3620,-3037,-3664,-2210,-2379,-2392,-2469], -[0,-5418,-5419,-763,-5420,-2166,-4043], -[0,44,15,16,6], -[1,3,1382], -[0,1383,1384,1385,4], -[0,-5450,-5451,-5452,-633,-5453,-724,-812,-5454,-5455,-1004,-5456,-5457,-1336,-5458,-1442,-5459,-5460,-5461,-1646,-5462, --5463,-5464,-2062,-5465,-2188,-2194,-5466,-5467,-5468,-2446,-2491], -[0,-5469,-767,-1274,-1788,-5470,-2250,-2322,-2331], -[0,-468,-4865,-5471,-2319,-2322,-3634], -[1,3,1387], -[0,1388,1389,1390,5], -[0,-1025,-5472,-5473,-5474], -[0,-5475,-350,-4062,-351,-3267,-3035,-3621,-3037,-5476,-427,-428,-470,-633,-664,-767,-809,-5477,-932,-940,-1107,-1344, --5478,-1430,-1440,-5479,-1471,-1475,-1482,-1534,-1654,-5480,-1729,-1788,-1942,-5481,-2127,-2140,-2379,-5482,-2410,-5483], -[0,-4182,-4058,-2451,-3926,-1463,-1456,-5484,-5485], -[1,3,1392], -[0,1393,1394,1395,4], -[0,-469], -[0,-5475,-3136,-3037,-427,-428,-469,-932,-940,-1344,-1415,-5479,-1534,-1942,-2375,-2410], -[0,-5486,-3815,-3276,-3926], -[0,45,15,16,10], -[1,3,1398], -[0,34,1399,1400,6], -[0,-1813,-5487], -[0,-472], -[1,3,1402], -[0,1403,1404,1405,4], -[0,-5488,-2438], -[0,-5489,-1654,-1788,-2416], -[0,-5490,-5491,-5492], -[1,3,1407], -[0,0,1408,1409,6], -[0,-2162], -[0,-775,-2162,-3160,-3576,-3577,-5493,-5494], -[1,3,1411], -[0,0,0,173,5], -[1,3,1413], -[0,0,0,1414,5], -[0,-475,-3161,-4865,-5176,-5495], -[1,3,1416], -[0,1417,0,1418,5], -[0,-5496,-5497,-7,-8,-9,-5498,-5499,-510,-518,-668,-722,-778,-784,-812,-5500,-834,-5501,-5502,-5503,-1017,-1041,-5504, --1077,-5505,-1107,-1331,-1369,-1376,-5506,-1455,-1490,-1492,-1521,-1522,-1548,-1645,-5507,-1743,-1758,-1812,-1816,-1888, --1908,-2000,-2092,-2114,-2125,-2148,-2163,-5508,-2177,-5509,-2233,-5510,-2275,-2286,-2287,-2330,-2346,-2410,-2437,-2488, --2501, --2505,-2508,-2510,-2567], -[0,-475,-477], -[1,3,1420], -[0,0,0,1421,4], -[0,-5175,-3118,-4865,-5495,-3119,-5511,-3098], -[1,3,1423], -[0,0,1424,1425,9], -[0,-3542,-1202,-5512,-1654,-2343], -[0,-5513,-5514,-5515,-5516,-5517,-5518,-5519,-5520,-5521,-5522,-5523,-5524,-5525,-5526,-5527,-5528,-5529,-5530,-5531, --5532,-5533,-687,-5534,-712,-714,-5535,-4376,-3958,-4000,-5536,-5537,-5538,-5539,-5540,-5541,-5542,-5543,-5544,-1496, --1573,-5545,-5546,-5547,-5548,-5549,-5550,-5551,-5552,-2265,-5553,-3770,-3974,-5554,-3975,-5555,-5556,-2547,-5557], -[1,3,1427], -[0,1428,115,1429,6], -[0,-5558], -[0,-5514,-3974,-4000,-687,-2265,-3975,-5559,-5560,-5538,-5550,-2547,-1573,-5545,-3958,-5554,-5561,-5562,-5412,-707,-5563, --5564,-3965,-5565,-685,-5566,-5567,-5568], -[1,3,1431], -[0,0,1432,1433,10], -[0,-2541,-519,-2384,-480], -[0,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-3958,-5554,-5569,-5570, --5571,-5572,-4004,-5573,-5574], -[1,3,1435], -[0,0,1436,1437,5], -[0,-2541,-519,-2384,-5575], -[0,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958,-5554], -[1,3,1439], -[0,0,0,1440,6], -[0,-5514,-714,-687], -[1,3,1442], -[0,1443,1444,1445,11], -[0,-4903,-5576,-44,-3946,-3763,-5577,-5578,-5579,-513,-786,-809,-5580,-5581,-1548,-1549,-2113,-4951,-5582,-3768,-2345, --5583,-2489], -[0,-21,-23,-26,-34,-35,-36,-5584,-37,-3396,-5585,-3381,-38,-3382,-3412,-39,-40,-42,-86,-3307,-305,-3326,-3732,-3048,-3136, --5586,-3164,-5587,-3661,-3037,-5588,-427,-428,-439,-4837,-5589,-5590,-5591,-5592,-441,-4838,-5593,-4817,-5594,-461,-5595, --518,-523,-528,-533,-534,-538,-5596,-539,-5597,-661,-668,-674,-708,-5339,-5598,-719,-5599,-767, --778,-779,-5600,-807,-5601,-5602,-4978,-5603,-928,-3808,-929,-932,-940,-957,-958,-959,-963,-5604,-967,-980,-1026,-4979, --1077,-1107,-1111,-1125,-1168,-1174,-5605,-1261,-1331,-1344,-5606,-5607,-1415,-1419,-1421,-5608,-5609,-1439,-5610,-3025, --1521,-1522,-5611,-5612,-1534,-5613,-1600,-1601,-1602,-1603,-5614,-1610,-5615,-1643,-1646,-1650,-1662,-1666,-1779,-1889, --1908,-1942, --1952,-1955,-1959,-2000,-4242,-2098,-5616,-5617,-3868,-5618,-2125,-5619,-5620,-2177,-2218,-5621,-2275,-2281,-4997,-4998, --2282,-4999,-2284,-2335,-2347,-2355,-2375,-2376,-2392,-2402,-2410,-5622,-2427,-2437,-5001,-2466,-2476,-5623,-5624,-2478, --2480,-5625,-2481,-5626,-2483,-2484,-5627,-2486,-2501,-2502,-2503,-2505,-2508,-5628,-5002], -[0,-2476,-3944,-3158,-3099,-485,-5629,-3095,-3098,-3160,-3161,-3100], -[1,3,1447], -[0,1448,1449,110,4], -[0,-703,-809,-44,-3165,-2345,-4903,-5630,-5631,-5632,-5633,-4910,-5634,-5635,-4904,-5636,-5637,-5638,-5639,-5640,-5641, --5642,-5643,-5644,-5645,-5646,-5647,-5648,-5649,-5650,-5651,-5652,-5653,-5654,-5655,-5656,-5657,-5658,-4905,-5659,-5660, --5661,-5662,-5663,-5664,-5665,-4951,-5666,-5667], -[0,-469,-1816,-2592,-2323,-2392,-881,-1107,-1415,-1805,-523,-668,-4977,-1344,-1359,-1392,-1449,-5668,-1880,-2006,-2193, --865,-932,-1031,-1437,-1548,-2093,-2125,-5669,-2177,-464,-5595,-5670,-1955,-2402,-2501,-781,-1077,-1103,-4980,-1646, --1662,-1942,-5671,-5002,-767,-5672,-1026,-3134,-4984,-1978,-4985,-2019,-5673,-5674,-1729,-1888,-2094,-2095,-2205,-2214, --2410,-3136,-3037, --5346,-1339,-1534,-2026,-4994,-162,-4647,-5675,-3040,-5676,-5677,-4986,-5678,-5679,-3744,-305,-4964,-3044,-3199,-4973, --1737,-1950,-5680,-2101,-2581,-3778,-5681,-5682,-5683,-4960,-3803,-4972,-3649,-4982,-5684,-4954,-3562,-5685,-3048,-4961, --5686,-3624,-5687,-3051,-4773,-5688,-3052,-1404,-1416,-5689,-2044,-4992,-2090,-3139,-5690,-3746,-4106,-5691,-3745,-3747, --283,-5692,-959,-1352, --4988,-5001,-5693,-1292,-4981,-5694,-406,-4974,-952,-1421,-4989,-5695,-409,-962,-1419,-5696,-5697,-5698,-4983,-2502, --4971,-3459,-5699,-407,-970,-5700,-4963,-5701,-5702,-5703,-410,-2914,-5704,-4968,-5705,-4995,-4990,-4962,-5706,-4955, --5707,-5708], -[1,3,1451], -[0,1452,0,7,5], -[0,-1805], -[0,67,15,16,4], -[1,3,1455], -[0,1456,1457,1458,9], -[0,-3278,-3279,-3299,-3283,-3288,-5709,-5710,-3304,-3305,-5711,-5712,-5713,-5714,-1537,-3297], -[0,-3285,-3286,-3287,-5715,-3302,-3303,-86,-3307,-5716,-3308,-3309,-5717,-3310,-3311,-3312,-5718,-5719,-617,-823,-932, --940,-985,-1004,-1077,-1344,-1442,-1534,-1685,-1724,-1889,-2125,-2127,-5720,-4753,-2210,-2359,-2410,-3313,-2416,-5721, --2446], -[0,-4902,-5722,-3690,-488,-856,-5723,-1789], -[1,3,1460], -[0,1461,1462,174,4], -[0,-620,-719,-5724,-3808,-5725,-1077,-1107,-1276,-1351,-1437,-5726,-1548,-1600,-1753,-1955,-2177,-2275,-2501,-2503,-2520], -[0,-3044,-3621,-3037,-932,-5727,-943,-958,-966,-968,-1654], -[1,3,1464], -[0,1465,1466,1467,4], -[0,-5729,-888,-2177,-2433,-2550], -[0,-4370,-3037,-3199,-3041,-519,-1077,-2410], -[0,-489,-1599,-5730,-3690,-4100,-856,-3262,-5731,-687,-5732,-3958,-3691,-5728,-5733,-5734], -[1,3,1469], -[0,1470,1471,1472,5], -[0,-812,-5735,-1730,-1465,-2456], -[0,-664,-665,-1654,-2210,-2211], -[0,-5736,-5737,-5738,-5739,-5740,-5741], -[1,3,1474], -[0,1475,0,7,4], -[0,-5742,-5743,-3320,-5744,-2387], -[1,3,1477], -[0,1478,0,1479,8], -[0,-5745,-5742,-494,-5743,-5746,-5744,-2387,-5747], -[0,-3217,-4795,-5748,-3214,-5749,-1764,-2006], -[1,3,1481], -[0,1482,1483,7,6], -[0,-5743,-5744,-2387,-5750], -[0,-5751,-3136,-3037,-1122,-1123,-1415,-2125,-2127,-2375,-2388,-2410], -[1,3,1485], -[0,1486,1487,7,6], -[0,-494,-5752,-2387], -[0,-5751,-3136,-5753,-1037,-1122,-1123,-1415,-5754,-2125,-2127,-2375,-2388,-2410], -[1,3,1489], -[0,0,1490,1491,5], -[0,-708,-756,-5755,-796,-1104,-1405,-1654,-1657,-1663,-1788,-2174,-2449], -[0,-5756,-1847,-3590,-2444,-3966,-3551,-3209,-5757,-4792,-3994], -[1,3,1493], -[0,1494,1495,1496,4], -[0,-2959,-5758,-5759,-5760,-5761,-523,-615,-5762,-1548,-1582,-1666,-1667,-5763,-2177,-5764,-2531], -[0,-5765,-5766,-2860,-3470,-3471,-5767,-3044,-3621,-3037,-5768,-3199,-4204,-4733,-664,-665,-741,-1654,-1942,-2174,-2210, --2379,-2410,-2542], -[0,-5769,-5271,-3634,-4864,-3162,-5770], -[1,3,1498], -[0,1499,1500,1501,10], -[0,-5771,-5772,-5773,-5038,-5774,-5775,-5776,-5777,-5778,-5779,-5780,-5781,-5782,-5783,-5784,-5785,-5786,-5787,-5788, --5789,-5790,-5791,-5792], -[0,-1788,-1722,-1654,-2210,-932,-1942,-2410,-5793,-3037,-3621,-4372,-3199,-966,-428,-5794,-427], -[0,-5795,-5796,-5797,-5798,-5799,-5800,-5801,-5802,-5803,-5804,-5805], -[1,3,1503], -[0,1504,1505,1506,5], -[0,-5806,-5807,-5808,-5809,-5810,-5811], -[0,-5812,-3136,-3037,-427,-428,-5813,-932,-940,-948,-958,-967,-1122,-1415,-1942,-5814,-1944,-5815,-2251,-2375,-2379,-2410], -[0,-5816,-5817,-3445,-5818,-1122,-5819,-3967,-2410,-5820], -[1,3,1508], -[0,1509,1510,1511,4], -[0,-5821,-510,-5822,-2062,-5823,-2325,-5824], -[0,-5825,-664,-1446,-1650,-1654,-2125,-5826,-2323,-2555], -[0,-5409,-501,-5827,-5408,-2323], -[1,3,1513], -[0,0,1514,7,8], -[0,-664,-1415,-1942], -[1,3,1516], -[0,0,1517,1518,10], -[0,-32,-5828,-932,-1654,-1788], -[0,-687,-3215,-503,-5829,-4377], -[0,45,15,16,6], -[1,3,1521], -[0,1522,1523,1524,6], -[0,-655,-5830,-5831,-5832], -[0,-5833,-5834,-516,-5835,-932,-993,-1065,-5836,-1365,-1777,-1788,-1794,-2156,-2322], -[0,-5837,-5838,-5839,-5840,-5396,-3582,-5841,-5842,-5843], -[1,3,1526], -[0,0,14,1527,6], -[0,-5839,-506,-5844,-5845,-5846,-5847], -[1,3,1529], -[0,1530,1531,1532,5], -[0,-2444,-5848,-655,-5849,-1797], -[0,-2322,-468,-753,-767,-21,-5850,-23,-1798,-40,-3335], -[0,-507,-4865], -[1,3,1534], -[0,0,1535,7,4], -[0,-2322,-1032], -[1,3,1537], -[0,1538,1539,1540,4], -[0,-820,-5851,-5852,-1794,-5853,-5854], -[0,-633,-1405,-1654,-1939], -[0,-507,-5855,-5856,-509,-3440,-1001,-1003,-2198,-5857,-4679,-4873,-4004,-3634,-3636,-5858,-5119], -[1,3,1542], -[0,0,1543,1544,4], -[0,-1788,-664,-2148,-1446,-1471,-1654,-2550,-932,-2127,-2177,-674,-571,-615,-1077,-589,-633,-23,-925,-1482,-5859,-566, --1472,-5860,-559,-5861,-5862,-32,-1483,-539,-1487,-1479,-5863,-2137,-535,-5864,-549], -[0,-510,-5865,-3551,-3590], -[1,3,1546], -[0,0,1547,1548,9], -[0,-3037,-5866,-2319,-2379,-2410], -[0,-510,-5867,-3184,-1334,-5868,-5149,-1961,-3844], -[1,3,1550], -[0,1551,1552,7,4], -[0,-2122], -[0,-519,-932,-1942,-1729,-1939,-5869,-1534,-969,-933,-958,-940,-962], -[1,3,1554], -[0,0,1555,1556,4], -[0,-23,-5870,-40,-42,-5871,-3136,-533,-756,-1415,-1534,-1763,-5872,-5873,-1939,-1942,-2379,-2410], -[0,-2451,-5874,-510], -[1,3,1558], -[0,0,0,1559,5], -[0,-514,-4865], -[1,3,1561], -[0,1562,1563,1564,6], -[0,-2359,-714,-5875,-2177,-5876,-5877,-5878], -[0,-1788,-2322,-932,-1777,-516,-2156,-5834], -[0,-5879,-5880,-5881,-1764,-5879], -[1,3,1566], -[0,1567,1568,1569,6], -[0,-719,-1276,-5882,-1729,-5883,-2177], -[0,-23,-43,-539,-5884,-664,-708,-767,-1609,-1654,-1788,-2226,-2250], -[0,-5885,-5886,-5887,-5888,-1573,-3262,-5889,-5890,-5891,-1306], -[1,3,1571], -[0,1572,1573,1574,5], -[0,-679,-714,-5892,-5893,-1107,-5894,-1574,-1816,-5895,-2105,-5896,-2550], -[0,-526,-559,-664,-932,-933,-958,-962,-969,-1654], -[0,-5885,-3015,-1380,-5897,-2490], -[1,3,1576], -[0,1577,0,1578,10], -[0,-635,-658,-5898,-1863,-1934], -[0,-518,-775,-5899,-1889,-3583], -[1,3,1580], -[0,1581,1582,1583,8], -[0,-5900,-461,-462,-482,-5901,-506,-5902,-5903,-668,-5904,-680,-5905,-696,-5906,-5907,-5908,-5909,-812,-5910,-1040,-1111, --5911,-1366,-1396,-1398,-5912,-5913,-1681,-1826,-5914,-1864,-1877,-1951,-5915,-4621,-5916,-5917,-2530,-2550], -[0,-5028,-5918,-3037,-480,-652,-999,-1001,-2210,-2319,-2331,-2384,-2410,-2541,-5747], -[0,-5919,-4004,-4043,-3634,-519,-5920,-5921,-5922,-4873,-5732,-687,-1415,-1654,-2322,-2319,-1989,-1412,-507,-5855,-1961, --5923,-510,-5924,-5867,-3262,-5925,-5926,-5927,-5928,-5119,-4045,-1001,-2410], -[1,3,1585], -[0,1586,1587,1588,4], -[0,-668,-909,-1543,-1548,-1639,-1650,-2234,-5929], -[0,-3035,-3044,-4036,-3621,-3037,-3714,-4372,-3046,-615,-664,-5930,-1077,-1344,-1534,-1654,-1942,-5931,-2125,-2195,-2251, --2330,-2388,-2410,-2501,-2503], -[0,-2501,-5932,-5050,-2410], -[1,3,1590], -[0,1591,1592,1593,5], -[0,-2165,-2435,-2444,-2446,-640,-997,-2536,-5933,-5934,-1985], -[0,-664,-1471,-1654,-932,-708,-1412,-2501,-793,-2416,-633,-2410,-3037,-1455,-711,-1413,-1481,-5935,-5936,-1475], -[0,-3690,-5937,-5817,-5938,-5939,-5940,-5941,-5942,-5943,-5944,-5945,-5946,-5947,-5948,-5949,-5950,-5951,-5952,-5953, --5954,-5955,-5956,-5957,-5958,-5959,-5960,-5961,-5962,-5197,-5963,-5964,-5965,-5966,-5967,-5968], -[1,3,1595], -[0,0,1596,1597,4], -[0,-664,-1107,-668,-702,-999,-1127,-1344,-1446,-1449,-1471,-1654,-2210,-932,-1437,-753,-928,-1110,-1821,-1376,-5969,-1942, --2416,-5970,-5113,-5971,-1474,-5972,-2410,-23,-3037,-5973,-925,-5974,-1339,-1482,-1489,-1534,-1771,-5975,-5976,-1320, --1737,-4916,-5977,-5978,-2251,-5979,-40,-5980,-1480,-2173,-5981,-1134,-1149,-1491,-1136,-1148,-5982,-1475,-2253,-3345, --940,-1479, --5983,-5984,-36], -[0,-5985,-4665,-3634,-5119,-4873,-3440,-5986], -[1,3,1599], -[0,1600,1601,1602,4], -[0,-1069,-5987,-1063], -[0,-652,-1168,-668,-1344,-1471,-1654,-2210,-932,-1685,-1831,-2127,-1004,-5988,-1077,-5969,-1646,-756,-767,-1070,-1100, --1276,-3727,-2325,-2410,-23,-617,-925,-1489,-1413,-1948,-5989,-1481,-516,-86,-5990,-40,-5991,-4062,-4066,-3326,-1488, --2140,-5992,-1475,-1487,-1479,-1490,-350,-5993,-1486,-5994,-5995,-351,-5996,-5997,-3307], -[0,-2533,-1334,-5998,-1961,-3966,-4865,-4213,-3691,-3690,-3323], -[1,3,1604], -[0,1605,1606,1607,4], -[0,-5999,-1015,-6000,-6001,-2062,-2105,-2424,-2446,-2451,-2536,-2538,-1456], -[0,-6002,-633,-756,-6003,-1127,-1154,-2778,-1405,-1471,-1475,-1478,-6004,-1479,-1480,-1482,-1483,-1654,-1657,-1722,-2198, --2416,-2491], -[0,-3966,-5800,-6005], -[1,3,1609], -[0,1610,1611,137,4], -[0,-527,-556,-566,-567,-719,-742,-3179,-1107,-1548,-6006,-1850,-2218,-2231,-6007,-679], -[0,-530], -[1,3,1613], -[0,1614,1615,138,9], -[0,-6008,-529,-6009,-6010,-566,-567,-568,-569,-570,-572,-742,-812,-1460,-1548,-1645,-1850,-6011,-2218,-2231], -[0,-530,-6012,-556], -[1,3,1617], -[0,1618,1619,7,5], -[0,-2114,-47,-25,-46,-22,-983], -[0,-1344,-1654,-815,-932,-986,-1942,-1534,-528,-6013,-958,-956,-967], -[1,3,1621], -[0,1622,1623,7,5], -[0,-6010,-567,-570,-831,-1451,-1548,-2231,-6014], -[0,-530,-572], -[1,3,1625], -[0,1626,0,7,4], -[0,-567,-1548,-6015,-2177], -[1,3,1628], -[0,1629,0,7,5], -[0,-567,-6012], -[1,3,1631], -[0,0,0,1632,6], -[0,-525,-2476,-4146], -[1,3,1634], -[0,1635,1636,7,4], -[0,-4020,-4776,-539,-6016,-668,-1119,-2218], -[0,-23,-4034,-4035], -[1,3,1638], -[0,175,1639,1640,8], -[0,-21,-23,-32,-40,-652,-932,-940,-967,-1110,-1344,-1534,-1942,-2501], -[0,-2501,-5932,-525,-3184,-3186,-3551], -[1,3,1642], -[0,0,1643,1644,8], -[0,-23,-34,-40,-526,-527,-528,-5884,-6017,-558,-6018,-560,-568,-570,-6019,-932,-940,-943,-958,-966,-967,-968,-974,-1654, --1938,-1942,-2125,-2156], -[0,-3220,-6020], -[1,3,1646], -[0,1647,1648,1649,4], -[0,-1797], -[0,-2322,-932,-2125,-526,-527,-1365,-23,-528,-566,-6021,-40,-557,-559,-2156,-958,-934,-537,-3840,-535,-3382,-6022,-550], -[0,-525,-3862,-6023,-6024,-3966], -[1,3,1651], -[0,116,35,21,5], -[1,3,1653], -[0,1654,1655,1656,10], -[0,-3341], -[0,-23,-41,-6025,-527,-6026,-756,-932,-933,-940,-958,-967,-1031,-1344,-1534,-1613,-1763,-1942,-6027], -[0,-3220,-485], -[1,3,1658], -[0,1659,1660,1661,4], -[0,-24,-6028,-4003,-6029,-6030], -[0,-21,-23,-3362,-3204,-43,-664,-756,-767,-1654,-1788,-6031,-2250], -[0,-1405,-525,-3862,-6032], -[1,3,1663], -[0,1664,1665,1666,4], -[0,-3341,-47,-1107,-1548,-6033], -[0,-21,-23,-6034,-36,-3201,-3077,-38,-40,-41,-6035,-43,-4754,-510,-535,-540,-664,-6036,-6037,-1549,-1654,-1993,-2011], -[0,-3220,-6038,-1548,-3209], -[1,3,1668], -[0,1669,1670,1671,6], -[0,-6039,-1107,-1872,-2112,-2114], -[0,-21,-23,-37,-3204,-40,-527,-533,-722,-932,-934,-940,-958,-1344,-1415,-1534,-6040,-2251], -[0,-525,-3220,-3551,-6041,-6042,-6043,-2114,-6044,-6045,-4792,-6024], -[1,3,1673], -[0,0,1674,7,5], -[0,-1415,-6046], -[1,3,1676], -[0,0,0,21,5], -[1,3,1678], -[0,0,0,21,4], -[1,3,1680], -[0,1681,35,21,5], -[0,-6047,-6048,-567], -[1,3,1683], -[0,1684,35,21,5], -[0,-6049,-6050,-567,-568], -[1,3,1686], -[0,1687,1688,1689,6], -[0,-6051,-567,-568], -[0,-526,-546,-555,-559,-664,-1654], -[0,-525,-3220,-6052,-3336], -[1,3,1691], -[0,1692,35,21,5], -[0,-567,-568,-569,-570,-1548], -[1,3,1694], -[0,1695,1696,21,6], -[0,-6053,-567,-568,-570], -[0,-531,-6054], -[1,3,1698], -[0,116,35,21,10], -[1,3,1700], -[0,1701,35,21,4], -[0,-6054,-567], -[1,3,1703], -[0,1704,35,21,5], -[0,-567,-6055,-544], -[1,3,1706], -[0,0,1707,1708,4], -[0,-21,-23,-3194,-3840,-26,-3203,-40,-6056,-41,-43,-528,-6057,-664,-932,-933,-951,-956,-958,-962,-964,-967,-969,-1111, --1654,-6058,-1942], -[0,-525,-3220,-2006,-6059,-6060], -[1,3,1710], -[0,1711,35,7,4], -[0,-6061], -[1,3,1713], -[0,116,35,21,4], -[1,3,1715], -[0,1716,0,7,6], -[0,-567,-753,-2082], -[1,3,1718], -[0,1719,1720,1721,6], -[0,-40,-41,-24,-3352,-38,-6062,-5584,-36,-3381,-6063,-3382,-6064,-553,-3393,-6065,-3396], -[0,-932,-23,-44,-2156,-958,-934], -[0,-525,-3184,-4795,-3214], -[1,3,1723], -[0,1724,1725,7,5], -[0,-6066,-6067,-545,-6068,-6069,-548,-6070,-6071,-6072,-6073,-6074,-6075,-6076,-6077,-549,-6078,-6079,-6080,-6081,-6082, --6083,-6084,-550,-6085,-6086,-6087,-554,-635,-1384,-2177], -[0,-526,-528,-530,-531,-539,-558,-566,-664,-708,-932,-6013,-956,-1077,-1548,-1654,-1788,-6088,-2125], -[1,3,1727], -[0,1728,1729,7,6], -[0,-6066,-6068,-6069,-548,-6070,-6071,-6072,-6073,-6074,-6075,-6076,-6077,-549,-6078,-6079,-6080,-6081,-6082,-6083,-6084, --550,-6085,-6086,-554], -[0,-6012,-531], -[1,3,1731], -[0,1732,0,7,8], -[0,-6089,-544,-6090,-552,-6091,-6092], -[1,3,1734], -[0,1735,0,7,4], -[0,-23,-26,-33,-6065,-6062,-5584,-6093,-3394,-3203,-3409,-38,-40,-41,-42,-44,-3766,-553], -[1,3,1737], -[0,1738,0,7,9], -[0,-6094,-6095,-563], -[1,3,1740], -[0,1741,0,7,5], -[0,-6096,-6017,-564], -[1,3,1743], -[0,1744,0,7,4], -[0,-565,-6097,-543,-546], -[1,3,1746], -[0,1747,0,7,5], -[0,-6067,-6098,-545,-6087,-551], -[1,3,1749], -[0,1750,1751,7,4], -[0,-527,-567,-753,-6099,-1548,-1650,-2234], -[0,-3542], -[1,3,1753], -[0,140,1754,7,8], -[0,-6009,-555], -[1,3,1756], -[0,1757,0,7,4], -[0,-567,-569,-570,-572,-1548], -[1,3,1759], -[0,1760,1761,7,5], -[0,-6008,-6010,-567,-570,-572,-812,-1110,-1384,-1548], -[0,-529], -[1,3,1763], -[0,1764,1765,7,6], -[0,-567,-6100,-1548,-6101], -[0,-529,-572], -[1,3,1767], -[0,0,1768,7,5], -[0,-2319,-633,-23,-6102,-40,-6056,-742,-41,-6103,-3381,-3409], -[1,3,1770], -[0,0,1771,1772,6], -[0,-519,-526,-528,-530,-537,-539,-6104,-559,-562,-668,-708,-767,-932,-6013,-956,-1059,-1788,-2125,-2127,-2128,-2137,-5385, --6105], -[0,-525,-3214,-3215,-572], -[1,3,1774], -[0,1775,1776,1777,4], -[0,-2424], -[0,-711,-757,-849,-932,-958,-1471,-1485,-1989,-2104,-2127,-2416], -[0,-6106,-6107,-5394,-3122,-3844,-3323,-4865], -[1,3,1779], -[0,1780,1781,1782,11], -[0,-719,-1107,-1376,-1805,-2125,-2387,-2446,-2451], -[0,-6108,-3036,-3049,-3037,-3738,-6109,-3046,-427,-428,-3311,-6110,-6111,-3312,-664,-932,-958,-966,-1654,-1656,-6112, --2195,-2200,-2335,-2376,-2379,-2402,-2410,-5260,-2501,-2503], -[0,-3445,-574,-1671,-3105,-6113], -[0,44,15,16,4], -[1,3,1785], -[0,0,1786,1787,5], -[0,-756,-1127,-1132,-1162,-6114,-1405,-1654,-2081], -[0,-6115,-6116,-6117,-6118,-514,-638], -[0,45,15,16,11], -[1,3,1790], -[0,0,1791,1792,8], -[0,-5859,-589,-633,-2322], -[0,-6118], -[1,3,1794], -[0,177,1795,1796,5], -[0,-1654,-932,-1405,-966,-958,-968,-943,-963,-974], -[0,-6119,-6120,-6121,-6122], -[1,3,1798], -[0,1799,1800,1801,4], -[0,-888,-1645,-1646,-1650,-6123], -[0,-932,-943,-958,-966,-968,-974,-1654,-2125,-2293,-2369,-2418,-2450], -[0,-1004,-3161,-6124,-6125,-6126,-1752,-3578,-3691,-5728,-3122,-3994,-1954,-3445,-3690], -[1,3,1803], -[0,1804,1805,178,4], -[0,-1723,-6127], -[0,-1415,-6128], -[1,3,1807], -[0,0,0,1808,4], -[0,-581,-3214,-3756,-6131,-5110,-6120,-3173,-6129,-6130,-770], -[1,3,1810], -[0,0,1811,178,8], -[0,-581,-6132,-1942,-2410], -[1,3,1813], -[0,1814,1815,1816,9], -[0,-6133,-719,-679], -[0,-1003,-1127,-600,-1130,-1156,-1134,-1148], -[0,-6134,-6135,-6136,-6137,-6138,-6139,-3870,-6140,-6141,-6142,-6143,-6144,-6145], -[1,3,1818], -[0,0,0,1819,5], -[0,-589,-6146], -[0,68,15,16,8], -[1,3,1822], -[0,1823,1824,1825,8], -[0,-1640,-1805,-2518,-2546,-1519,-2114,-2346,-679,-1646,-6176,-1888,-1948,-725,-6177,-2062,-6178,-6179,-6180], -[0,-6181,-4215,-2322,-2363,-1405,-2491,-633,-6182], -[0,-6183,-633], -[0,45,15,16,4], -[1,3,1828], -[0,1829,1830,1831,11], -[0,-1548,-6184], -[0,-756,-6185,-1405,-6186,-1991,-2111], -[0,-589,-6187,-6188], -[0,45,15,16,5], -[1,3,1834], -[0,1835,0,1836,9], -[0,-6189,-6190,-6191,-23,-3194,-25,-26,-6093,-5828,-3355,-3204,-3408,-40,-42,-46,-4228,-4145,-3037,-469,-6192,-501,-510, --674,-679,-683,-714,-6193,-742,-1070,-1323,-6194,-1729,-1847,-1942,-6195,-2162,-2228,-2231,-2245,-2299,-2410,-2416,-6196, --2476,-2550,-1376,-6197], -[0,-6198,-6199,-6200,-6201,-6202,-6203,-3161,-2410,-3214,-3018,-5065,-4726,-3445,-6204,-6205,-6206,-6207,-6208,-6209, --6210,-6211,-6212,-6213,-6214,-6215,-4160,-6216,-6217,-2006,-6218,-6219,-2476,-6220,-6221,-4726,-2299,-6222,-6223,-2228, --6224], -[1,3,1838], -[0,1839,1840,1841,10], -[0,-6225,-6226,-6227], -[0,-523,-664,-932,-1654,-6228,-1972,-6229], -[0,-4055,-6230,-6231,-2487,-1838,-3215,-6232,-6233,-2059,-6234,-510,-6235], -[1,3,1843], -[0,0,0,1844,5], -[0,-6236,-6237,-6238,-6239,-6240,-6241,-6242,-6243,-6244,-6245,-6246,-6247], -[1,3,1846], -[0,1847,0,1848,8], -[0,-6248], -[0,-5269,-6249,-596,-6250,-5968,-6251,-6252], -[1,3,1850], -[0,1851,1852,7,4], -[0,-6253], -[0,-1788,-2322,-2388,-1942,-1729,-1972,-2410,-3037], -[1,3,1854], -[0,1855,1856,1857,9], -[0,-6254,-6255,-6256,-6257,-3204,-38,-2687,-6022,-6258,-2965,-6259,-2489], -[0,-6260,-21,-23,-3204,-40,-6261,-43,-44,-4757,-2697,-358,-6262,-6263,-4754,-6264,-4956,-4749,-4959,-409,-3136,-3052, --6265,-6266,-6021,-6267,-533,-534,-6268,-6269,-539,-557,-560,-6026,-567,-6270,-683,-756,-767,-799,-6271,-932,-6272,-1168, --1261,-1266,-6273,-1365,-1415,-1422,-1440,-1666,-6274,-1743,-1763,-1771,-1782,-1788,-1939,-1942,-2000,-2006,-2019,-6275, --6276,-2125,-2156,-2163,-6277,-2275,-2375,-2376,-2410,-2501,-2502,-2503], -[0,-598,-6278], -[1,3,1859], -[0,1860,1861,1862,8], -[0,-6279,-640,-1370,-2062], -[0,-1032,-2250,-2322,-2410], -[0,-640,-6280,-5827,-6281], -[1,3,1864], -[0,1865,1866,1867,5], -[0,-461,-6282,-6283,-1402,-1795,-2546], -[0,-510,-6284,-710,-1127,-1132,-1134,-1136,-1144,-1148,-1542,-1654,-1859,-2111,-2006,-6285], -[0,-4005], -[1,3,1869], -[0,0,0,1870,5], -[0,-6286,-6287,-6288,-6289,-6290], -[1,3,1872], -[0,1873,1874,7,6], -[0,-6291,-668,-6292,-1548,-6293,-1610,-6294,-6295,-1627,-6296,-6297,-2269,-6298,-6299], -[0,-6300,-601,-714,-932,-943,-958,-966,-968,-974], -[0,45,15,16,8], -[0,67,15,16,10], -[0,67,15,16,5], -[0,67,15,16,6], -[1,3,1880], -[0,0,1881,1882,5], -[0,-1405], -[0,-6301,-5389,-6302,-6187], -[1,3,1884], -[0,0,1885,1886,5], -[0,-705,-2152,-1107,-1805,-461,-6303,-1654,-2210,-1452,-1650,-2125,-6304,-615,-1303,-1405,-1813,-693,-2416,-462,-633,-617, --769,-2187,-1453,-1161], -[0,-1961,-6187,-5923,-6305,-6306,-510,-5867,-6307,-6308,-6309,-6310,-6311,-6312], -[1,3,1888], -[0,0,1889,1890,6], -[0,-1654,-6313,-953], -[0,-6314,-6315,-6316,-6317,-6318], -[1,3,1892], -[0,1893,81,7,6], -[0,-651,-737,-812,-1335,-1351,-1800,-1983,-1999,-2401], -[1,3,1895], -[0,1896,1897,1898,4], -[0,-615,-6319,-1369,-1548], -[0,-6320,-664,-932,-940,-967,-1344,-1446,-1497,-1534,-1654,-1691,-1788,-1857,-1942,-2210,-2211,-2245,-2446], -[0,-1818,-1691,-6321,-3742,-6322,-6323], -[1,3,1900], -[0,182,1901,1902,4], -[0,-707,-1510,-1607], -[0,-6324,-1334], -[1,3,1904], -[0,0,1905,148,4], -[0,-1389,-2564,-1640,-2162,-2834,-1471,-932,-1111,-1437,-2093,-2127,-2149,-2334,-1412,-1442,-1753,-1889,-2195,-3574,-1942, --699,-767,-3031,-2281,-21,-1354,-23,-6325,-3563,-1333,-1891,-2096,-6326,-518,-1772,-3559,-3564,-1481,-1547,-6327,-6328, --2997,-3660,-3803,-3649,-3562,-6329,-945,-3566,-2429,-40,-6330,-957,-3326,-958,-978,-1475,-1477,-6331,-3561,-963,-1479, --3571, --350,-6332,-2084,-1486,-3565,-351,-1473,-3569,-3573,-3568], -[1,3,1907], -[0,0,1908,1909,4], -[0,-2162,-6333,-888], -[0,-620,-2162,-775,-6334], -[1,3,1911], -[0,0,0,1912,4], -[0,-622], -[1,3,1914], -[0,1915,1916,1917,8], -[0,-2728,-656,-668,-688,-2267,-2400,-2820,-2528], -[0,-519,-1788,-2384,-2541], -[0,-687,-6335,-6336,-3974,-4110,-4000,-4111,-4112,-6337,-5554], -[1,3,1919], -[0,1920,1921,1922,4], -[0,-6338,-2114,-6339,-2347], -[0,-633,-725,-2319,-2346], -[0,-633,-6340,-1076,-6341,-3862,-5142,-6342,-4161,-6118], -[1,3,1924], -[0,1925,1926,1927,4], -[0,-812,-1645,-2488,-6343,-6344,-6345,-6346], -[0,-664,-1654,-2125,-1077,-2091,-6347,-964,-630,-6348], -[0,-6346,-3214], -[1,3,1929], -[0,1930,1931,1932,4], -[0,-6346,-6349], -[0,-6350,-630,-664,-1654,-6347], -[0,-6346,-1631,-6351], -[1,3,1934], -[0,1935,1936,7,6], -[0,-3628,-2731,-1054,-6345,-2359,-2488], -[0,-3035,-3621,-3037,-6352,-664,-726,-1654,-6353,-1788,-1942,-6354,-2388,-2389,-6355,-2410], -[1,3,1938], -[0,1939,1940,1941,6], -[0,-6356,-6357,-6358,-668,-679,-729,-731,-6359,-6360,-6361,-990,-1072,-1077,-1336,-1361,-1639,-1812,-5763,-1999,-6362, --2152,-2178,-2186,-2187,-2188,-2228,-2594,-2550], -[0,-3037,-6363,-664,-6364,-1119,-5735,-1654,-1942,-1980,-2105,-2111,-2125,-2210,-2229,-2234,-2269,-2293,-2410,-2460], -[0,-6365,-775,-6366,-6367], -[1,3,1943], -[0,1944,1945,1946,5], -[0,-2435,-1107,-2444,-2546,-507,-640,-997,-1285,-6368,-6369,-6370,-1958,-2114,-1370,-1977,-2347,-6371,-6372,-1464,-6373, --6374,-2194,-6375,-6376,-6377,-725,-6378,-6379,-6380,-6381,-6382,-6383,-6384,-6385,-6386,-1848,-6387,-2062,-6388,-6389, --771,-6390,-6391,-6392,-6393,-6394,-5936,-6395], -[0,-6396,-2319,-2330,-2177,-2346,-573,-6397,-6398,-710,-6399,-6400,-6401,-6402], -[0,-4865,-4792,-4791,-6403,-4161,-1764,-3214], -[1,3,1948], -[0,1949,1950,1951,9], -[0,-6404,-6405,-6406,-2114,-2346], -[0,-1449,-1705,-1972,-2105,-2125,-2319,-6407], -[0,-633,-6340,-5396,-1109,-1110,-6408,-6409,-4791], -[1,3,1953], -[0,1954,0,1955,9], -[0,-6410,-658,-6088,-6411,-6412], -[0,-657,-6413,-6414], -[1,3,1957], -[0,1958,1959,1960,11], -[0,-6415], -[0,-2322,-2125,-2410,-3037,-6416], -[0,-6417,-6418,-770,-6419,-6420,-6421,-6422,-5835,-6423], -[1,3,1962], -[0,0,1963,1964,10], -[0,-1788,-2323,-2384,-664,-2446,-668,-1654,-2210,-932,-2127,-2379,-1942,-589,-1729,-2211,-2410,-3035,-3037,-3621,-4372, --1588,-3625,-2234,-977,-940,-967,-262,-3267,-428,-351,-6424,-427,-234], -[0,-1671,-637,-3215], -[1,3,1966], -[0,0,0,1967,6], -[0,-638,-4865], -[1,3,1969], -[0,1970,1971,1972,8], -[0,-461,-6425,-6426,-668,-1588,-1646,-6427], -[0,-6428,-932,-1107,-1654,-2125,-2127,-6429,-350,-4062,-351,-2231,-2234,-6430], -[0,-3214,-6431,-6432,-6433,-4795,-6434,-3184,-6052], -[1,3,1974], -[0,1975,1976,1977,11], -[0,-578,-5933], -[0,-468,-589,-633,-725,-1345,-5852,-5848,-2239,-2322,-2347,-2416], -[0,-6435,-4865,-633,-640,-6436,-6437,-6438], -[1,3,1979], -[0,0,1980,1981,4], -[0,-5834,-515,-516,-932,-1365,-1777,-2156,-2322], -[0,-640,-6439], -[1,3,1983], -[0,1984,1985,1986,4], -[0,-6127], -[0,-1654,-1733,-6128], -[0,-642], -[1,3,1988], -[0,0,14,1989,5], -[0,-6440,-6441,-6442,-3966,-3209,-3103,-6443,-4108,-5839,-6444], -[1,3,1991], -[0,0,1992,1993,5], -[0,-784,-1891,-1942,-2125,-2162], -[0,-775,-2162,-3754,-6445,-4672,-3576,-3161], -[1,3,1995], -[0,1996,1997,1998,5], -[0,-3417,-6446,-6447,-303,-304,-6448,-6449,-5007,-523,-668,-812,-6450,-6451,-1805], -[0,-4367,-4368,-3035,-3198,-6452,-3621,-3037,-4372,-427,-664,-932,-938,-939,-940,-967,-1654,-1661,-1722,-1763,-1788,-4362, --2200,-2210,-2379,-2410], -[0,-3690,-856,-3438,-3328,-6453,-687], -[1,3,2000], -[0,2001,31,2002,5], -[0,-6376,-6399,-725,-6282,-1646,-2347], -[0,-633,-4161,-6454,-1644,-4792], -[1,3,2004], -[0,2005,2006,2007,6], -[0,-6455,-1666,-6456,-6457], -[0,-6458,-2319,-2454,-2456,-1607], -[0,-1573,-5545,-6459,-4055,-648], -[1,3,2009], -[0,2010,2011,2012,6], -[0,-6460], -[0,-6461,-932], -[0,-6462,-4054,-6463,-1069], -[1,3,2014], -[0,2015,2016,2017,4], -[0,-1578], -[0,-6464,-6465,-6466,-6467,-6468,-6469], -[0,-5149,-5839,-640,-6435,-6470,-650,-4055,-2512,-6471], -[1,3,2019], -[0,0,2020,2021,4], -[0,-932,-963,-1654,-1788], -[0,-6472,-651,-3590,-1838,-3215,-5845,-6473], -[1,3,2023], -[0,2024,2025,2026,4], -[0,-6474,-4003,-1047,-6475,-5086,-5087,-5089,-6030,-6476,-2550,-2551], -[0,-3037,-664,-6477,-767,-1654,-2250,-2379,-2410], -[0,-4005,-6478,-4004,-1405,-6479,-6480,-3966], -[1,3,2028], -[0,0,2029,7,5], -[0,-3446,-1415,-999,-1344,-1111,-2127,-928,-5354,-2375,-2379,-2402,-1077,-1942,-6481,-2410,-23,-3136,-1534,-1607,-3048, --2174,-6482,-2132,-6483,-350,-796,-351,-6484], -[1,3,2031], -[0,2032,2033,2034,11], -[0,-1495,-6485], -[0,-2581,-6486,-6487,-3037,-3664,-6488,-6489,-2125,-2391,-2410,-2469,-6490], -[0,-3324,-6491,-6492,-3966,-4601,-6493,-2071,-1622,-6494,-6495,-6496,-6497,-6498,-6499,-6500], -[1,3,2036], -[0,2037,2038,2039,4], -[0,-6501,-6502,-6503,-6504], -[0,-5834,-516,-5835,-921,-932,-993,-1065,-5836,-1365,-1777,-1788,-1794,-2156,-2322], -[0,-3214,-3217,-6505,-3756,-6506,-6507,-6508,-6509,-6510,-655,-6511,-5924,-5831], -[1,3,2041], -[0,0,14,2042,4], -[0,-656,-6512,-6513,-6514,-6515,-6516,-864,-2424,-6517,-2265,-5554,-5845,-6518,-6519], -[1,3,2044], -[0,0,0,2045,4], -[0,-5180,-5177,-3839,-4865], -[1,3,2047], -[0,0,0,2048,5], -[0,-6520], -[1,3,2050], -[0,2051,2052,2053,9], -[0,-1723,-6521], -[0,-3037,-6522,-1004,-1442,-1654,-1870,-2250,-2384,-2410], -[0,-659,-6523,-6524,-6525,-6526,-6527,-5093,-6528], -[0,45,15,16,9], -[1,3,2056], -[0,0,2057,2058,4], -[0,-516,-932,-934,-958,-1077,-1654,-2501], -[0,-2501,-3862,-6529,-6024,-4792], -[1,3,2060], -[0,0,0,2061,5], -[0,-1859,-6530,-4004,-3634,-6531], -[1,3,2063], -[0,0,2064,2065,5], -[0,-652,-6532,-1654,-932,-928,-1110,-6533,-820,-1942,-190,-2410,-6534,-6535,-3311,-960,-6536,-350,-3312], -[0,-4004,-5855,-507,-3634,-664], -[1,3,2067], -[0,2068,2069,2070,5], -[0,-6534], -[0,-652,-664,-1654,-932,-1110,-1942,-190], -[0,-664,-6537,-4865,-510,-3634,-6538,-5923,-6306], -[1,3,2072], -[0,0,183,2073,9], -[0,-664,-1841,-6539], -[1,3,2075], -[0,0,2076,2077,9], -[0,-664,-1654,-1405,-756,-6347,-6540], -[0,-664,-6537,-6541,-6542,-6543,-3862,-6544,-6545,-6546,-5572,-6547,-6548,-6549], -[1,3,2079], -[0,0,2080,2081,8], -[0,-652,-2541,-519,-2384,-999,-1612,-1575,-6550,-3037,-3523], -[0,-712,-5535,-714,-3974,-4000,-687,-2265,-5514,-5553,-3770,-3975,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958,-5554], -[1,3,2083], -[0,0,2084,2085,10], -[0,-519,-528,-756,-6551,-932,-6552,-1168,-6553,-1197,-1243,-1252,-6554,-1548,-1788,-1976], -[0,-669,-6555,-3262,-4004,-6556,-6557,-6558,-6559], -[1,3,2087], -[0,0,0,2088,5], -[0,-5888,-6514,-5845,-6408,-6512,-6519,-6560,-6561,-6562], -[1,3,2090], -[0,2091,2092,7,4], -[0,-6563,-6564,-734,-6565,-3446,-6566,-6567,-1805,-1852,-6568,-6569,-2177,-6570], -[0,-3037,-3199,-3664,-932,-944,-1431,-1942,-2251,-2410,-2423,-2469], -[1,3,2094], -[0,2095,2096,2097,4], -[0,-6571], -[0,-350,-6572,-4062,-351,-367,-426,-6573,-427,-428,-6574,-6575,-6576,-726,-756,-767,-932,-6577,-6578,-957,-963,-985,-1107, --1412,-1413,-1471,-1475,-1476,-1478,-1479,-1481,-3569,-1486,-6579,-1491,-3222,-1666,-1667,-1870,-2127,-2130,-3571,-6580, --2140,-2410,-2550], -[0,-659,-6581,-6582,-6583,-5177,-3576], -[1,3,2099], -[0,2100,2101,2102,11], -[0,-1839,-2426,-6584,-6585,-1333,-6586,-861,-6587,-6588,-6589,-6590], -[0,-2392,-2386,-1344,-1449,-932,-1437,-2469,-1110,-1942,-2354,-190,-2410,-3037,-1534,-4647,-3615,-6591,-965,-6592,-2411, --3664,-960,-6593,-978,-1943,-6594,-940], -[0,-6595,-1437,-3585,-6596,-3215,-5092,-6597,-3264], -[1,3,2104], -[0,2105,2106,2107,5], -[0,-769,-6598,-1962], -[0,-526,-6066,-548,-559,-664,-932,-1452,-1654], -[0,-6599,-1958,-5923], -[1,3,2109], -[0,2110,2111,2112,4], -[0,-44,-6600,-3946,-6601,-5579,-513,-595,-6602,-682,-709,-5212,-747,-753,-761,-6603,-6604,-6605,-6606,-5581,-6607,-3135, --6608,-6609,-1398,-1442,-6610,-1452,-6611,-6612,-5216,-1666,-6613,-1942,-4918,-6614,-6615,-1992,-4930,-4987,-6616,-6617, --6618,-6619,-2027,-2029,-6620,-6621,-2040,-2048,-2056,-2113,-6622,-4951,-2192,-6623,-2387,-2424,-2489,-2446], -[0,-23,-26,-33,-34,-35,-36,-3396,-5585,-3381,-6624,-38,-3351,-3382,-40,-41,-3744,-3746,-3747,-3562,-3059,-6625,-6626, --3043,-6627,-6628,-3136,-6629,-3044,-6630,-6631,-5221,-3040,-6632,-3052,-6633,-6634,-4972,-427,-428,-482,-518,-523,-527, --528,-533,-534,-538,-5596,-3133,-6635,-6636,-6637,-6638,-661,-668,-5598,-719,-767,-778,-3078,-786,-4977,-5603, --915,-916,-2760,-932,-933,-940,-951,-958,-959,-962,-963,-969,-6639,-1017,-1021,-4979,-1041,-1074,-1103,-1107,-1168,-1174, --1252,-5605,-1261,-1344,-1352,-1360,-6640,-1415,-1449,-3134,-1521,-5611,-1534,-1548,-4984,-5613,-6641,-5615,-1643,-1646, --1650,-1652,-1653,-1662,-1664,-1667,-1792,-1814,-1889,-1908,-1952,-4923,-6642,-6643,-4986,-2006,-2012,-2013,-2016,-2017, --3145,-3143, --6644,-2028,-6645,-4242,-2098,-5616,-5617,-3868,-5618,-2125,-5619,-6646,-2281,-4997,-4998,-2282,-4999,-2284,-2335,-2347, --2376,-2410,-2427,-2437,-6647,-6648,-2501,-6649,-2508,-5628,-5002,-3120,-2534], -[0,-6650,-3099,-2006,-3159,-3095,-3098,-3160,-3161,-3100], -[1,3,2114], -[0,2115,2116,2117,4], -[0,-6651], -[0,-6652,-3037,-1942,-2358,-2410,-4701], -[0,-1076,-2490,-6653,-6654,-6655,-6656,-1080], -[1,3,2119], -[0,0,2120,184,5], -[0,-686,-1344,-2910,-2250,-2322], -[1,3,2122], -[0,2123,0,2124,5], -[0,-81,-66,-3512,-73,-74,-3520,-62,-6660,-3503,-3502,-71,-6661,-79,-83,-68,-72,-80,-82,-85,-70,-6662,-6663,-6664,-6665, --63,-6666,-3519,-3513,-64,-6667,-76,-54,-6668,-67,-69,-6669,-6670,-6671,-3521,-6672,-6673,-56,-75,-6674,-55,-6675,-6676, --3515,-6677,-65,-3504,-3511,-6678,-6679,-52,-3514,-6680,-3526,-77,-6681,-6682], -[0,-3488,-681,-3489,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161], -[1,3,2126], -[0,0,2127,2128,5], -[0,-2384,-2127,-2354,-1339,-1605,-4062,-350,-351], -[0,-2006,-775,-3205,-6683,-682,-2444,-3590], -[1,3,2130], -[0,185,2131,2132,5], -[0,-633,-932,-934,-1336,-1722,-2188,-2471], -[0,-775,-6684], -[1,3,2134], -[0,2135,2136,2137,10], -[0,-824], -[0,-21,-23,-40,-42,-6685,-3136,-3037,-6686,-533,-708,-767,-825,-932,-999,-1344,-1415,-1534,-1535,-1763,-1942,-2061,-2177, --6687,-2410,-2501], -[0,-2501,-3862,-6688,-3966], -[1,3,2139], -[0,0,0,2140,5], -[0,-5514,-685,-3974], -[1,3,2142], -[0,186,14,2143,8], -[0,-685,-3551,-4792,-6024,-3324,-6690,-6691,-6692,-3346,-6693,-6694,-6695,-1072], -[1,3,2145], -[0,2146,0,2147,5], -[0,-1107,-1000], -[0,-687,-4376,-6696,-6697,-6698,-4377,-4000,-6699,-6700,-6701,-3957,-6702], -[1,3,2149], -[0,0,2150,2151,8], -[0,-519,-2410,-2541], -[0,-687,-6335,-6336,-3974,-4110,-4000,-4111,-4112,-6337,-5554,-4055], -[1,3,2153], -[0,2154,2155,2156,4], -[0,-6703,-922,-6704,-5969,-6705], -[0,-932,-6706,-6707,-6708,-1344,-1534,-1788,-6709,-6710], -[0,-5514,-712,-4000,-3974,-687,-5550,-1573,-5545,-2547], -[1,3,2158], -[0,2159,2160,2161,11], -[0,-2120], -[0,-3037,-519,-2410,-2541], -[0,-687,-5564,-5514,-6711,-6712,-6713,-6714,-4110,-3974,-4000,-3975,-5550,-3958], -[1,3,2163], -[0,0,0,2164,9], -[0,-687], -[1,3,2166], -[0,0,2167,2168,4], -[0,-519,-1575,-6715,-2410,-2541], -[0,-687,-6716,-6717,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117,-4055], -[1,3,2170], -[0,187,2171,2172,10], -[0,-2198,-6718], -[0,-687,-714,-4002], -[1,3,2174], -[0,2175,2176,188,5], -[0,-1548,-2267,-714], -[0,-6719,-664,-693,-756,-6720,-6721,-1168,-1220,-1231,-1266,-2210,-2211], -[1,3,2178], -[0,117,2179,188,10], -[0,-693,-932,-940,-967,-1415,-6725,-6726,-1942], -[1,3,2181], -[0,2182,14,2183,10], -[0,-2219,-2267], -[0,-6727,-6728,-5554,-6729,-4783,-687,-3974,-4110,-5550,-6730,-5514,-2265], -[1,3,2185], -[0,2186,2187,76,4], -[0,-668,-2387,-1401,-1548,-2177,-1442,-6731,-1077,-2269,-303,-482,-4366,-6732,-480,-5676,-2267,-6733,-6734,-1366,-6735, --2297,-6736,-6737,-6738,-2591], -[0,-664,-523,-1654,-932,-2379,-4361,-2410,-3035,-3037,-3621,-3044,-3199,-3660,-3048,-665,-6739,-6740,-4369,-938,-6741, --4373,-4269,-939], -[1,3,2189], -[0,2190,2191,2192,5], -[0,-3922], -[0,-351,-3267,-3136,-3044,-3037,-6742,-427,-428,-6743,-6744,-932,-6745,-969,-1100,-1415,-1548,-2127,-6746,-2375,-2379, --2410], -[0,-687,-2410,-3215,-6747,-6748,-4377,-5829,-3957], -[1,3,2194], -[0,2195,2196,2197,5], -[0,-6749,-6750,-6751], -[0,-23,-40,-534,-664,-767,-932,-934,-940,-958,-967,-1344,-1471,-1474,-1475,-1482,-1489,-1492,-1534,-1654,-1942,-2210, --2384,-2417,-2501,-2503], -[0,-699,-6351,-6752], -[1,3,2199], -[0,2200,55,2201,4], -[0,-6753,-999,-6754,-1401,-6755,-6756], -[0,-699,-6351,-6757,-6758,-6759,-2059,-6234,-6760,-6761,-6762,-6763], -[1,3,2203], -[0,2204,2205,157,4], -[0,-2267,-2269,-2528], -[0,-3037,-427,-428,-652,-664,-668,-767,-932,-958,-965,-1166,-1654,-2125,-6313,-2410], -[1,3,2207], -[0,0,83,7,6], -[1,3,2209], -[0,0,2210,2211,10], -[0,-985,-2447,-2334], -[0,-3205,-6683,-682], -[1,3,2213], -[0,2214,0,2215,5], -[0,-689], -[0,-6764,-4340,-6297,-6765,-6716,-4700,-6722,-4000,-640], -[1,3,2217], -[0,0,2218,2219,6], -[0,-633,-6766,-1654,-1693], -[0,-510,-5411,-3262,-6767,-6768], -[1,3,2221], -[0,2222,2223,2224,4], -[0,-1494], -[0,-2198,-1654,-705], -[0,-3974,-4000,-1965,-3959,-5110,-6769,-705], -[1,3,2226], -[0,182,2227,2228,5], -[0,-1510,-1607], -[0,-4004,-1001,-5855], -[1,3,2230], -[0,2231,2232,2233,11], -[0,-4378,-6770,-1442,-6771,-6772], -[0,-932,-940,-1344,-1415,-1534,-1658,-1942], -[0,-4005,-6773,-6774,-708], -[1,3,2235], -[0,2236,2237,2238,6], -[0,-6775,-6776,-6777,-6778,-6779,-6780,-6781], -[0,-6782], -[0,-3496,-707], -[1,3,2240], -[0,0,2241,189,10], -[0,-849,-6783,-1304,-1600,-2424], -[1,3,2243], -[0,0,2244,189,4], -[0,-23,-40,-4691,-709,-849,-1304,-6785,-1600,-1978,-2424,-2501], -[1,3,2246], -[0,2247,2248,2249,4], -[0,-3523,-2741], -[0,-1654,-2384,-2541], -[0,-712,-5535,-775], -[1,3,2251], -[0,0,0,2252,5], -[0,-3974,-3770,-712,-5514], -[1,3,2254], -[0,0,2255,2256,5], -[0,-932,-936], -[0,-5514,-3974,-714], -[1,3,2258], -[0,2259,2260,2261,11], -[0,-2269,-6786], -[0,-526,-559,-668,-2320,-2322], -[0,-6787,-5554,-5514,-4000,-3974,-4001,-4002], -[1,3,2263], -[0,0,2264,2265,6], -[0,-1003,-1452,-1654], -[0,-687,-3957,-6788], -[1,3,2267], -[0,2268,190,2269,11], -[0,-6789,-6790,-1551,-6791], -[0,-4378,-1838,-6748,-4377,-5829,-6792,-3215,-6747,-687,-3957,-6722], -[1,3,2271], -[0,2272,2273,2274,4], -[0,-6789,-6793,-6794,-6791], -[0,-350,-351,-1448,-2127,-2337], -[0,-3974,-4376,-6795,-3262], -[1,3,2276], -[0,0,2277,2278,4], -[0,-2384,-1415,-932,-1110,-2375,-1942,-190,-2410,-3136,-3037,-2411,-959,-940], -[0,-719,-3957,-5829,-3215,-687,-6748,-4377,-4378], -[1,3,2280], -[0,2281,2282,2283,5], -[0,-1107,-815,-1548,-6796,-6797,-1077,-1376,-1646,-3767,-2270,-831,-6798,-2271,-796], -[0,-1788,-664,-2446,-1654,-2210,-1104,-2177,-708,-1753,-21,-1365,-1972,-23,-43,-2174,-40,-1656,-539,-6799,-6800,-6801,-36, --741], -[0,-5890,-3240,-3276,-6802,-720], -[1,3,2285], -[0,2286,2287,146,4], -[0,-86,-3534], -[0,-3536,-3537,-3535], -[1,3,2289], -[0,0,2290,2291,6], -[0,-526,-528,-535,-546,-6017,-558,-566,-708,-767,-855,-932,-940,-967,-1415,-1639,-1942,-2125,-2127,-2128,-2137,-2143, --2517], -[0,-5839,-525,-4795,-6803,-3184,-6804,-6805,-3264,-6806,-6807,-6722,-6808,-6809,-6810,-6811,-6812,-6813,-6814,-6815,-2265, --6816,-6817,-6818,-6819,-3110], -[1,3,2293], -[0,0,55,2294,6], -[0,-5389,-6820,-997,-6821,-6822,-5078,-6823], -[1,3,2296], -[0,2297,191,2298,5], -[0,-651,-6824,-812,-5397,-6825,-2155,-2453], -[0,-724,-6826,-6827,-5401,-1004,-6828,-1334,-5827], -[1,3,2300], -[0,2301,31,7,4], -[0,-6829,-1370,-2062,-5972], -[1,3,2303], -[0,2304,2305,2306,4], -[0,-2153,-668,-2550,-2369,-2194,-2297], -[0,-1344,-932,-2469,-928,-1110,-1942,-190,-2410,-3037,-1534,-3610,-3041,-6830,-6831,-2411,-6832,-3664,-2156,-4373,-6593, --6833,-940,-967,-6834,-6835,-4814], -[0,-6836,-5920,-5921,-726,-3957,-6837], -[1,3,2308], -[0,2309,2310,2311,4], -[0,-1460], -[0,-3037,-652,-711,-6838,-6839,-6840,-3589,-2105,-2177,-2362,-2379,-2410,-2424,-6841,-2548], -[0,-6842,-727,-3870,-6843,-6844,-6845,-5558], -[1,3,2313], -[0,2314,55,2315,4], -[0,-6846,-3780,-1119,-6847,-6848], -[0,-727,-4634,-6005,-3870,-6849,-6850,-4055,-6582,-6851,-6852,-6853], -[1,3,2317], -[0,2318,2319,2320,4], -[0,-812,-1045,-1840,-2445], -[0,-932,-1654,-1788,-2293], -[0,-3161,-3578,-5401,-729,-6854], -[1,3,2322], -[0,0,84,2323,11], -[0,-729,-1004,-6855,-3556], -[1,3,2325], -[0,0,2326,7,4], -[0,-932,-1415,-2210], -[1,3,2328], -[0,2329,2330,2331,4], -[0,-812,-6856], -[0,-5028,-86,-3307,-3244,-190,-3198,-3617,-3733,-3037,-4203,-427,-428,-519,-652,-708,-932,-940,-954,-967,-1004,-1010, --1103,-1344,-1534,-1671,-1771,-1806,-1942,-2251,-2293,-2892,-2402,-2410], -[0,-729,-6857,-1671,-6858,-1004], -[1,3,2333], -[0,0,2334,2335,5], -[0,-2581,-3733,-3037,-3664,-1010,-2379,-2410,-2466,-6859,-2469], -[0,-729,-2071,-6858,-1004], -[1,3,2337], -[0,0,2338,2339,8], -[0,-6447,-3037,-3664,-672,-6860,-932,-944,-6861,-1942,-6862,-6570,-2267,-2410,-2423,-2469], -[0,-4000,-3444,-6863,-6864,-687,-6198,-2427,-1965,-6865,-3276,-6324,-6866], -[1,3,2341], -[0,0,2342,2343,5], -[0,-2541,-519,-864,-6867,-6868,-888,-6869,-1974,-6870,-6871,-6872,-6873,-6874,-6875,-2310,-6876,-6877,-1344,-6878,-2006, --6879,-932,-6880,-6881,-6882,-1548,-6883,-2177,-6884,-6885,-6886,-1053,-6887,-6888,-1310,-1689,-1783,-6889,-2019,-1276, --2094,-6890,-2424,-6891,-23,-6892,-1534,-6893,-6894,-710,-6895,-6896,-6897,-6898,-41,-2099,-946], -[0,-6899,-3110,-6107], -[1,3,2345], -[0,0,2346,2347,6], -[0,-652,-932,-943,-958,-963,-966,-968,-974], -[0,-736,-1334,-6900,-4616], -[1,3,2349], -[0,0,2350,2351,5], -[0,-1788,-1654,-932,-821,-966,-958,-968,-943,-974], -[0,-737,-1334,-4610,-4616,-6901], -[1,3,2353], -[0,2354,0,2355,4], -[0,-6902,-6903,-1630,-6904,-6905,-5983,-6906,-6907], -[0,-739,-6908,-5887,-1573,-687], -[1,3,2357], -[0,2358,0,2359,9], -[0,-1630,-6909,-6910,-739], -[0,-687,-5732,-739,-6908,-5887,-1573], -[1,3,2361], -[0,2362,0,2363,11], -[0,-6911], -[0,-739,-6912,-6913], -[1,3,2365], -[0,0,2366,2367,4], -[0,-6914,-2319], -[0,-5845,-6915,-6916,-6917,-4865,-812], -[1,3,2369], -[0,0,2370,2371,5], -[0,-6918,-3664,-6919,-2410,-2469], -[0,-743,-6920], -[1,3,2373], -[0,2374,81,2375,4], -[0,-743,-746], -[0,-743,-5401], -[1,3,2377], -[0,2378,2379,2380,10], -[0,-6920,-812,-6825,-2155], -[0,-729,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], -[0,-729,-1004,-5401,-6858], -[1,3,2382], -[0,0,0,2383,4], -[0,-743,-6921,-6922], -[1,3,2385], -[0,2386,2387,2388,4], -[0,-6923], -[0,-633,-1646,-1719,-6924,-1813,-6925,-2416], -[0,-699,-6351,-4865], -[1,3,2390], -[0,2391,2392,2393,4], -[0,-2654,-1108,-2168,-1759,-2182], -[0,-824,-1415,-1344,-1623,-774,-932,-825,-1110,-6926,-2501,-1942,-767,-21,-190,-533,-2410,-23,-3037,-1041,-1534,-1771,-86, --965,-3560,-2251,-40,-2411,-6927,-959,-960,-32,-958,-6928,-6929,-978,-940,-967,-3748,-6930,-3307], -[0,-2501,-3862,-6931,-6932,-6351], -[1,3,2395], -[0,2396,2397,7,4], -[0,-1107,-1645,-1650,-6933,-2347,-2430,-2550], -[0,-2125,-2322,-2320], -[1,3,2399], -[0,0,27,2400,4], -[0,-6934,-6935,-3262,-6936,-6937,-6938], -[1,3,2402], -[0,2403,2404,2405,4], -[0,-1559,-750,-6939], -[0,-3040,-3052,-2410,-2006,-2019], -[0,-2006,-2410,-6935,-6940,-6941], -[1,3,2407], -[0,2408,2409,2410,4], -[0,-728,-6942,-6943,-6944,-3496,-999,-1758,-2177,-2313], -[0,-6945,-652,-1412,-2123], -[0,-752,-3323,-687], -[1,3,2412], -[0,0,0,2413,5], -[0,-6946,-6947,-6948,-6949,-6950,-6951,-6952,-6953,-6954,-6955,-6956,-6957,-6958,-6959,-6960,-6961,-6962,-6963,-6964, --6965,-6966,-6967,-6968,-6969,-6970,-6971,-6972,-6973,-6974,-6975,-6976,-6977,-6978,-6979,-6980,-6981,-6982,-6983,-6984, --6985,-6986,-6987,-6988,-3582,-6989,-5396], -[1,3,2415], -[0,2416,2417,2418,4], -[0,-1792,-2453], -[0,-465,-932,-1004,-1654,-1788,-2293], -[0,-754,-1004,-729,-5401], -[1,3,2420], -[0,2421,2422,2423,6], -[0,-5672,-1362,-1442,-6990], -[0,-3660,-3037,-6991,-427,-428,-3899,-767,-932,-6992,-940,-948,-958,-966,-979,-1344,-1534,-6689,-1942,-6993,-2410,-2469], -[0,-6994,-3870,-727], -[1,3,2425], -[0,2426,2427,2428,4], -[0,-1442,-6995,-6996,-1646,-2105], -[0,-1654,-1788,-2198,-2200,-2210,-2541], -[0,-4005,-756], -[1,3,2430], -[0,2431,2432,2433,4], -[0,-6997,-1111,-1630], -[0,-519,-999,-1849,-6909,-2541], -[0,-5732,-687,-6351,-6998,-6997,-6656,-6999,-702,-1076,-5827,-1107,-7000,-1705,-5922,-7001,-6582,-5398,-7002], -[1,3,2435], -[0,2436,2437,2438,4], -[0,-1116,-7003,-674,-7004,-7005,-1351,-7006], -[0,-652,-519,-2392,-1722,-2210,-932,-1110,-190,-7007,-2410,-3037,-2364,-2411], -[0,-3214,-758,-7008,-6596,-6531,-1437,-3967,-1334,-1342,-5735,-1116,-2105,-2435,-5150,-6826], -[1,3,2440], -[0,0,0,2441,11], -[0,-759,-7009,-7010,-7011,-7012,-7013,-7014,-7015,-7016,-7017,-7018,-7019,-7020], -[1,3,2443], -[0,2444,2445,2446,5], -[0,-7021,-1370,-6001,-7022,-7023], -[0,-5935,-2155,-2250,-2320,-2322], -[0,-770], -[1,3,2448], -[0,2449,2450,41,5], -[0,-1580,-1792], -[0,-1415,-1967,-2006,-2019,-2501], -[1,3,2452], -[0,2453,2454,2455,10], -[0,-28,-7024,-683,-722,-7025,-7026,-812,-1047,-1099,-1111,-1116,-7027,-1366,-7028,-1393,-1435,-1548,-1549,-1591,-1630, --7029,-5668,-7030,-1863,-1876,-1889,-7031,-7032,-7033,-2103,-2218,-2331,-2347,-2460], -[0,-510,-767,-1045,-1098,-1415,-1722,-7034,-2187,-7035,-2261,-2463,-2541], -[0,-762,-1847,-775,-7036], -[1,3,2457], -[0,2458,2459,2460,8], -[0,-3620,-3222], -[0,-86,-190,-7037,-7038,-7039,-3470,-7040,-3471,-3472,-7041,-7042,-367,-7043,-3136,-3037,-4372,-767,-932,-940,-959,-967, --1344,-1415,-1534,-1942,-2174,-2210,-2410,-2411], -[0,-763,-7044,-7045,-7046,-2166,-7047,-7048], -[1,3,2462], -[0,0,0,2463,4], -[0,-763,-3577,-3445,-3215,-764,-7046,-2166,-7049,-4107,-5418,-6201,-7050], -[1,3,2465], -[0,0,2466,2467,4], -[0,-5285,-5291,-7051,-7052,-7053,-7054,-7055,-7056,-7057,-3037,-932,-7058,-954,-958,-960,-964,-965,-7059,-968,-971,-978, --1110,-7060,-1608,-7061,-1768,-1942,-2910,-7062,-2402,-2410,-7063], -[0,-763,-7050,-2166,-765,-3577,-3445], -[1,3,2469], -[0,2470,0,2471,4], -[0,-7064,-7065], -[0,-6527,-7066,-6932,-7067,-7068,-7069,-7070,-7071,-7072,-7073,-7074,-7075,-7076,-7077,-3264,-775,-3214,-3577,-3578], -[1,3,2473], -[0,2474,2475,2476,5], -[0,-7078,-769], -[0,-7079,-7080,-3037,-3664,-3665,-932,-1942,-2410,-2469,-7081], -[0,-7082,-7083,-7084,-7085], -[1,3,2478], -[0,2479,2480,2481,5], -[0,-1729], -[0,-1788,-664,-1722,-1344,-1654,-2550,-2125,-2127,-2177,-708,-1004,-2501,-2250,-720,-2410,-3035,-3037,-617,-1534,-2186, --2503,-3621,-2516,-86,-2251,-4063,-1655,-6483,-796,-7086,-3307], -[0,-4213,-1334,-2435,-1961,-510,-5867,-6201,-6198,-3966,-2006,-5269,-4865,-6989,-5388,-2533,-5998], -[1,3,2483], -[0,2484,2485,2486,6], -[0,-2518,-7087,-7088], -[0,-1415,-1344,-932,-1650,-2125,-527,-533,-1534,-86,-2251,-7089,-7090,-3307], -[0,-7091,-7092,-7084,-7085,-7093,-7094,-7095,-7096], -[1,3,2488], -[0,2489,2490,7,5], -[0,-7097,-7098,-7099,-760,-7100,-7101,-7102,-1370,-7103,-7104,-1995,-7105], -[0,-5834,-932,-5935,-1788,-1798,-7106,-2155,-2177,-2322], -[1,3,2492], -[0,0,0,2493,5], -[0,-7107,-770,-7108,-7109,-7110,-7111,-7112,-7113,-7114,-7115,-7116,-7117,-7118,-7119,-7120,-7121,-7122,-7123,-7124,-7125], -[1,3,2495], -[0,192,2496,2497,4], -[0,-652,-932,-7126,-958,-964,-966,-967,-1654,-7127,-1771,-1942], -[0,-6838,-3215], -[1,3,2499], -[0,2500,2501,2502,4], -[0,-7128,-7129,-7130,-7131,-7132,-7133,-7134,-481,-668,-6793,-719,-7135,-7136,-7137,-7138,-7139,-7140,-7141,-7142,-2177, --2654], -[0,-4036,-3199,-1639,-1645], -[0,-7143,-7144,-707,-6513,-6514,-7145,-7146,-7147,-7148], -[1,3,2504], -[0,2505,2506,2507,4], -[0,-1370,-2231,-7149], -[0,-1654,-2198,-1612,-651], -[0,-775,-3215,-3270,-3271], -[1,3,2509], -[0,0,2510,2511,9], -[0,-190,-7150,-7151,-932,-1889,-2127,-2447], -[0,-1889,-3583,-775,-4159,-7152,-7153,-7154], -[1,3,2513], -[0,0,2514,2515,5], -[0,-7155,-4647,-3621,-3037,-4201,-7156,-932,-7157,-940,-967,-7158,-1344,-7159,-1449,-1534,-1654,-1763,-1942,-2923,-7160, --2410,-7161,-7162], -[0,-775,-7163,-4108], -[1,3,2517], -[0,2518,2519,2520,4], -[0,-2773,-1889,-7164,-1915,-7165,-2791,-1934,-2177], -[0,-21,-23,-40,-86,-3307,-7166,-533,-767,-774,-825,-920,-932,-940,-958,-1041,-1344,-1415,-1419,-1521,-1522,-1534,-1623, --1643,-1771,-1908,-1927,-1942,-2162,-2163,-2251,-2269,-2275,-2286,-2287,-2437,-2501], -[0,-2501,-775,-5932,-2435,-6024], -[1,3,2522], -[0,2523,2524,2525,5], -[0,-784,-1889,-1429,-2168,-2182,-3180], -[0,-824,-2746,-1415,-2162,-1344,-1623,-774,-932,-825,-928,-1110,-2289,-2501,-7167,-1942,-683,-767,-21,-190,-533,-778, --2410,-23,-7168,-7169,-3037,-1534,-1771,-2163,-3751,-86,-965,-3560,-7170,-2251,-40,-959,-748,-960,-958,-7171,-6929,-978, --940,-967,-1643,-3748,-6930,-3307], -[0,-784,-775,-2746,-683,-5055,-928,-2501,-7172,-7173,-7174,-1644,-6684,-7175,-7176], -[1,3,2527], -[0,2528,2529,2530,4], -[0,-7177,-2888,-6584,-2788,-6585], -[0,-2386,-2469,-2410,-3037,-1333,-2581,-7178,-7179,-3664], -[0,-775,-3585,-7180], -[1,3,2532], -[0,2533,2534,2535,4], -[0,-1620,-2232], -[0,-652,-7181,-928,-932,-7182,-1654,-2127], -[0,-775,-3272,-3579,-3215,-7183,-7184,-3262,-5260,-4132,-3926], -[1,3,2537], -[0,0,2538,2539,4], -[0,-7150,-635,-1107,-1889,-1891,-1927,-2177,-2281,-2282,-7185], -[0,-775,-7186,-4682,-7187], -[1,3,2541], -[0,0,2542,2543,4], -[0,-526,-558,-708,-1127,-6114,-1405,-1654,-2081,-2111], -[0,-775,-5559,-7188,-2265,-3673], -[1,3,2545], -[0,2546,2547,2548,4], -[0,-1532,-7189], -[0,-518,-1889,-7190,-7191], -[0,-775,-6454,-1644,-7192,-7193,-1889,-3583], -[1,3,2550], -[0,2551,2552,2553,11], -[0,-7194,-7195,-781,-1582], -[0,-7196,-7197,-932,-940,-967,-1110,-1942], -[0,-7198,-7199,-7200], -[1,3,2555], -[0,0,2556,2557,4], -[0,-23,-40,-42,-190,-7150,-7201,-7202,-5685,-3136,-4647,-3037,-6630,-7203,-533,-668,-679,-781,-940,-967,-1059,-1415,-1449, --1620,-1942,-2091,-2392,-2393,-2410,-2411], -[0,-775,-5553,-2410,-5411,-2414,-3694,-3762], -[1,3,2559], -[0,2560,2561,2562,5], -[0,-7204,-743,-1335,-746], -[0,-1788,-1654,-932,-729,-2293,-617,-744,-745,-966,-958,-968,-943,-963,-974], -[0,-7204,-7205,-5401,-1004], -[1,3,2564], -[0,2565,2566,2567,4], -[0,-789,-790,-791,-2262], -[0,-351,-3621,-3037,-885,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], -[0,-3966,-788,-7206,-3215,-1838,-3270,-6231,-6408,-5827,-3960,-7207,-3445,-3100], -[1,3,2569], -[0,0,2570,2571,5], -[0,-351,-3621,-3037,-815,-885,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], -[0,-5827,-3960,-788,-7208,-3445,-3100], -[1,3,2573], -[0,0,2574,2575,5], -[0,-351,-3621,-3037,-789,-7209,-815,-885,-1654,-7210,-1942,-2127,-2135,-2136,-2198,-2262,-2379,-2410], -[0,-788,-1838,-3215,-5845,-7206,-5827,-3445,-3100], -[1,3,2577], -[0,0,2578,2579,9], -[0,-351,-3621,-3037,-789,-815,-885,-1004,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], -[0,-788,-6231,-3270,-3445,-3100], -[1,3,2581], -[0,34,2582,2583,4], -[0,-7211,-3621,-3037,-543,-756,-1646,-1654,-1788,-2210,-2375,-2379,-2410,-2417,-2501,-2503], -[0,-788,-7212,-7213,-792,-4055,-7214,-7215,-7216,-7217,-7218], -[1,3,2585], -[0,2586,2587,149,8], -[0,-1693,-1107,-714,-1548,-2456,-1040,-3635,-2114,-615,-7219,-1959,-719,-1399,-695,-5203,-3611,-7220,-3610,-7221,-1366, --7222,-7223,-7224,-930,-3608,-7225,-3604], -[0,-1788,-2359,-664,-1654,-2210,-932,-729,-753,-571,-1077,-1689,-1942,-7226,-756,-21,-633,-2211,-23,-528,-711,-2187,-43, --3630,-3633,-40,-966,-951,-2082,-958,-539,-968,-940,-943,-967,-974,-6034], -[1,3,2589], -[0,0,2590,2591,4], -[0,-556,-558,-566,-633,-932,-7227,-1339,-1650,-7228,-2322,-2339,-2416,-7229,-2491], -[0,-7230,-7231,-7232,-7233,-2446], -[1,3,2593], -[0,2594,0,2595,4], -[0,-2359,-5413,-668,-809,-812,-999,-7234,-2555,-640,-1536,-1548,-7235,-680,-1040,-1958,-615,-6797,-910,-1077,-1646,-7236, --719,-2369,-2430,-3628,-690,-695,-7237,-722,-1018,-1574,-1948,-7238,-7239,-995,-5987,-2297,-7240,-7241,-2313,-1394,-3626], -[0,-4864,-4865,-795,-7242,-4866,-4867,-4868,-3095,-7243,-4043,-7244,-7245,-4004,-3634], -[1,3,2597], -[0,2598,2599,7,5], -[0,-668,-7246,-2524,-720,-1564,-3532,-7247], -[0,-664,-1654,-2177,-1942,-3035,-755,-3621,-1660,-2174], -[1,3,2601], -[0,2602,2603,2604,5], -[0,-7248,-7249,-7250,-7251,-7252,-7253,-7254,-7255,-798,-7256,-7257,-6258,-7258,-7259,-799,-801,-7260,-7261,-7262,-7263, --7264,-7265,-7266,-7267,-7268,-800,-7269,-7270,-7271,-7272], -[0,-1654,-932,-2127,-2468,-7273,-2967,-4062,-7274,-3266,-351], -[0,-797,-5092,-7275,-3839,-5176,-659], -[1,3,2606], -[0,2607,2608,2609,8], -[0,-7276], -[0,-351,-7248,-7262,-932,-1449,-1654,-2127,-2140], -[0,-797,-7277,-7278,-7279,-7280,-7281,-7282,-7283,-5839], -[1,3,2611], -[0,2612,2613,2614,10], -[0,-798,-7261,-7270,-7254,-7271], -[0,-6258,-932,-1654,-2127,-2140], -[0,-797,-7277,-7069,-7275], -[1,3,2616], -[0,0,2617,2618,5], -[0,-932,-1449,-1654,-2127,-2140], -[0,-797,-7277,-5092,-7284,-7285], -[1,3,2620], -[0,2621,2622,2623,6], -[0,-7253], -[0,-7264,-932,-1654,-2127,-2140], -[0,-797,-7277,-6524,-7275,-659,-3839], -[1,3,2625], -[0,2626,0,2627,5], -[0,-1049], -[0,-3577,-7286,-5176,-3913], -[1,3,2629], -[0,0,0,2630,4], -[0,-803,-2316,-2318,-7287,-7288,-7289,-7290,-7291,-7292,-7293,-7294,-7295,-7296,-7297,-7298,-2006,-775,-3160,-2476,-3095, --3161,-1713,-3577,-7299,-4101,-7300,-2299,-2834,-5511,-7301], -[1,3,2632], -[0,0,14,2633,9], -[0,-7302,-1646,-6792,-7303,-4377,-5272,-687,-1758,-719,-7304,-3957,-5543,-7305,-7306,-7307,-7308,-1838,-3215,-4378], -[1,3,2635], -[0,2636,2637,7,4], -[0,-7309,-469,-510,-668,-715,-754,-763,-1004,-1376,-7310,-1625,-1666,-1953,-2105,-7311,-7312,-7313,-2549,-2550], -[0,-526,-556,-559,-664,-1654,-2106,-5331], -[1,3,2639], -[0,0,2640,7,10], -[0,-7314,-2392,-7315,-3915,-2210,-932,-7316,-1548,-2469,-2402,-1050,-1942,-756,-21,-7057,-1874,-2205,-2214,-2410,-23, --3037,-7317,-7318,-4372,-7319,-3704,-3044,-7320,-5286,-4773,-40,-7321,-3664,-2832,-42,-428,-7322,-427,-7323], -[1,3,2642], -[0,0,2643,7,5], -[0,-1654,-2416,-21,-23,-40], -[1,3,2645], -[0,0,2646,2647,5], -[0,-21,-23,-5870,-40,-3472,-527,-533,-537,-767,-932,-934,-958,-959,-7324,-1413,-1415,-1471,-1481,-1488,-1662,-1666,-1667, --1705,-1939,-1942,-2127,-2128,-2140,-2214,-2410], -[0,-809,-4121,-4123,-1361,-1666], -[1,3,2649], -[0,2650,2651,2652,4], -[0,-596,-1723], -[0,-7325], -[0,-510,-6367,-7326,-7327], -[1,3,2654], -[0,0,118,2655,5], -[0,-811,-7328,-5924,-7329,-7330,-6729,-7331,-7332,-7333,-7334,-7335], -[1,3,2657], -[0,2658,2659,2660,4], -[0,-1681], -[0,-627,-633,-756,-1471,-1472,-1475,-1482,-1654,-1657,-2210,-2541], -[0,-812,-1573,-7336], -[1,3,2662], -[0,0,14,2663,4], -[0,-813,-7337,-656,-7338,-6514,-6515,-6516,-2265,-5554,-5845], -[1,3,2665], -[0,2666,2667,2668,10], -[0,-7339,-7340,-7341,-7342,-1119,-1591,-1866,-7343], -[0,-985,-7344,-1849,-1866,-2125], -[0,-7345,-7346,-814,-7347,-2323,-7348,-7349,-5408,-2432], -[1,3,2670], -[0,0,2671,2672,8], -[0,-21,-40,-42,-4646,-7350,-7057,-3330,-3136,-427,-428,-535,-6046,-7351,-774,-932,-7352,-954,-959,-960,-961,-963,-965, --7353,-7354,-971,-7355,-1344,-1415,-7356,-1498,-1534,-1608,-1609,-1768,-7357,-1942,-7358,-1945,-2091,-7359,-2391,-2410, --7360], -[0,-815,-6818,-7361,-3184], -[1,3,2674], -[0,0,2675,2676,5], -[0,-3136,-1637,-2375], -[0,-7362,-7363,-5839,-7364,-7365,-7366,-7367], -[1,3,2678], -[0,2679,0,2680,8], -[0,-7368], -[0,-7208,-7369,-7370,-1015,-3589,-1631,-702,-6351,-3755,-6545,-7371,-7372,-7373,-7374,-7375,-3589], -[0,68,15,16,4], -[1,3,2683], -[0,0,2684,2685,5], -[0,-4055,-1654,-932,-1548,-2125,-1753,-615,-7376,-1003,-2416,-821,-964,-1656], -[0,-834,-7377,-7378,-7379], -[1,3,2687], -[0,0,2688,2689,5], -[0,-7380,-1654,-932,-1405,-589,-756,-7381,-1559,-3311,-7382,-7383,-7384,-350,-7385], -[0,-7386,-7387,-7388,-3634], -[1,3,2691], -[0,2692,2693,2694,10], -[0,-7389,-655,-7390,-6503,-7391,-7392,-7393,-7394,-7395,-1402,-5849,-1795,-1797,-7396,-7397,-7398,-7399,-7400], -[0,-5834,-515,-516,-7401,-932,-1065,-7402,-1283,-7403,-1365,-1777,-1788,-3335,-2156,-2177,-2322], -[0,-7404,-6439,-7378], -[1,3,2696], -[0,0,70,2697,4], -[0,-822,-1015,-6545,-7371,-2546,-702,-1631,-4055], -[1,3,2699], -[0,0,2700,2701,9], -[0,-3037,-7405,-1396,-7406,-2127,-2131,-2137,-2322,-2379,-2410,-2416], -[0,-1631,-6545,-1015,-6351,-702,-7371], -[1,3,2703], -[0,2704,2705,2706,5], -[0,-1111,-1393,-7407,-7408,-1826,-7409,-2218], -[0,-519,-589,-2331,-2384,-2541], -[0,-6693,-6999,-7410,-7411,-6694,-7412,-7413,-7414,-6688,-7415,-7416,-6695,-7417,-2125,-7418,-1107,-7419,-6656,-7420, --7421,-1076,-7422], -[1,3,2708], -[0,2709,2710,2711,10], -[0,-824,-1630,-7409], -[0,-519,-999,-7423,-2541], -[0,-5732,-687,-6693,-824,-6694,-7412,-7413,-7414,-6688,-7415,-7416,-6695,-7417,-2125,-7418,-1107,-6656,-6999,-7420,-7421, --1076,-7422,-7085], -[1,3,2713], -[0,2714,2715,2716,6], -[0,-7424,-7425], -[0,-7426,-7427,-2384,-2541], -[0,-1961,-2114,-826,-7428,-4116,-7429,-7430,-7431,-5389,-6302,-2634,-7432,-826,-510,-5867,-5923,-615,-7433,-7434,-6555], -[1,3,2718], -[0,2719,2720,2721,10], -[0,-812,-1460,-2550,-1353,-1548,-2177,-1442,-2114,-7435,-6651,-656,-1645,-7436,-1686,-755,-1048,-2115,-25,-7437,-46,-7438, --3230,-6033], -[0,-1788,-1654,-932,-2198,-2299,-1077,-1942,-767,-21,-1972,-2410,-23,-528,-7439,-39,-43,-40,-964,-969,-933,-958,-539,-940, --962,-967,-535,-5585], -[0,-7440,-7441,-5897,-7442,-827,-6137,-3015,-3016], -[1,3,2723], -[0,0,2724,2725,6], -[0,-589,-585,-932,-943,-958,-963,-966,-968,-974,-1405,-1654,-2155,-2418], -[0,-7443,-7444], -[1,3,2727], -[0,2728,2729,7,4], -[0,-812,-5892,-1111,-7445,-1639,-1646,-1872,-7446,-2114], -[0,-7447,-1344,-3781,-1771,-2250], -[1,3,2731], -[0,0,14,2732,10], -[0,-6806,-7448,-6659,-7449,-7450,-707,-2265,-5554,-6916,-7451,-7452], -[1,3,2734], -[0,2735,2736,2737,5], -[0,-6558], -[0,-7453,-3621,-3037,-7454,-932,-7455,-999,-7456,-2269,-2386,-7457,-2410], -[0,-6659,-7458], -[1,3,2739], -[0,0,2740,2741,6], -[0,-1788,-2384,-664,-1471,-1654,-932,-2127,-1110,-2501,-767,-2416,-190,-2410,-23,-1482,-534,-1492,-5758,-43,-40,-2411, --2505,-1483,-2832,-539,-1490], -[0,-834,-7459,-7378,-7460,-5554,-4055,-775,-3214], -[1,3,2743], -[0,2744,2745,2746,8], -[0,-834,-7461], -[0,-190,-7462,-7463,-3136,-3037,-7464,-7465,-518,-645,-699,-748,-778,-784,-932,-959,-968,-1041,-1110,-1276,-7466,-1331, --1344,-7467,-7468,-1415,-1534,-1607,-1643,-1650,-1758,-1889,-1891,-1906,-1908,-1927,-1942,-2375,-2376,-2379,-2410,-2411, --2437,-2501,-2503,-2505,-2516], -[0,-5889,-834,-3240,-7469,-6722,-7470,-7471,-7472,-4131,-3240,-712,-3264,-835,-7473,-7474], -[1,3,2748], -[0,119,120,2749,4], -[0,-7477,-7478,-7479,-7480,-7481,-7482,-7483,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-7487,-7488,-3966,-4336, --7489,-7490,-7491,-7492,-7493,-7494,-7495,-7496,-7497,-3552,-7498,-7499,-7500,-1847,-7501,-7502,-7503,-7504,-7505,-7506, --7507,-7508,-7282,-7509,-7510,-7511,-7512,-7513,-7514,-7515,-7516,-7517,-7518,-7519,-7520,-7521,-5150,-7522,-7523,-7524, --7525,-7526,-7527,-7528, --7529,-7530,-7531,-7532,-7533,-6582,-7534,-7535,-7536,-7537,-7538,-7539,-7540,-7541,-7542,-7543,-7544,-7545,-7546,-7547, --7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558,-7559,-5063,-7560,-7561,-7562,-6187,-7563, --856,-7275], -[1,3,2751], -[0,0,2752,2753,6], -[0,-664,-665,-1127,-1144,-1149,-1156,-1452,-1453,-1542,-1654], -[0,-664,-6537,-4865,-3634], -[1,3,2755], -[0,2756,56,57,4], -[0,-7564,-7565,-840,-1406,-1744], -[1,3,2758], -[0,2759,2760,2761,6], -[0,-2387,-2426,-7567,-3675,-151,-3676,-1025,-7568,-3677,-7569,-3678,-3679,-7570], -[0,-2384,-1415,-3682,-932,-2388,-879,-1942,-767,-2410,-3037,-7571,-3683,-3685,-3686,-3687,-428,-427], -[0,-3689,-3690,-7572,-3323,-3966,-3692], -[1,3,2763], -[0,2764,0,7,4], -[0,-2416,-1044,-1813], -[1,3,2766], -[0,2767,2768,193,8], -[0,-6789,-7573,-7574,-7575,-1276,-1610,-7576], -[0,-7577], -[1,3,2770], -[0,2771,0,2772,6], -[0,-1448], -[0,-843,-856,-1446,-7578,-1599,-3862], -[1,3,2774], -[0,0,0,2775,9], -[0,-7579,-7580,-7581,-7582,-3445,-6809], -[1,3,2777], -[0,2778,31,2779,10], -[0,-7583,-7584,-7585], -[0,-7586,-7587], -[1,3,2781], -[0,2782,2783,2784,8], -[0,-523,-2550,-848,-7588,-7589,-7590], -[0,-664,-1654,-1004,-617], -[0,-856,-5119,-4004,-4100,-3671], -[1,3,2786], -[0,2787,2788,2789,10], -[0,-3417,-7590,-7591,-469,-5769,-7592,-7593,-7594,-523,-7588,-7589,-865,-7595,-7596,-7597,-1870,-1880,-7598,-2369,-4881], -[0,-827,-1004,-1654,-2177], -[0,-856,-4004,-4100,-3671], -[1,3,2791], -[0,2792,0,2793,9], -[0,-719,-1610,-1077,-2424,-1304], -[0,-856,-3671,-3262,-7599,-711], -[1,3,2795], -[0,2796,0,193,4], -[0,-885,-7600,-7601], -[1,3,2798], -[0,2799,2800,2801,10], -[0,-7602,-7603,-7604,-7605,-1969,-2324,-2446], -[0,-615,-664,-1627,-1654], -[0,-7606,-7607], -[1,3,2803], -[0,2804,2805,2806,4], -[0,-7608,-7609,-7610,-573,-7611,-653,-7612,-6838,-7613,-7614,-7615,-5835,-7616,-7617,-7618,-7619,-7620,-7621,-1376,-7622, --7623,-7624,-1640,-1729,-7625,-7626,-7627,-2125,-7628,-7629,-7630,-2177,-7631,-7632,-7633,-2424,-7634,-2549], -[0,-7635,-7636,-7637,-711,-7638,-1666,-7639,-7640], -[0,-3260,-7641,-7642,-4258,-687,-7643,-711,-7644,-3116,-7645,-7646,-3113,-7647,-7648,-6433,-3161,-3262,-7649,-3966,-1838, --3215,-7650,-4065,-3970,-5371,-3261,-7651,-3673,-3590,-3578,-7652,-4602], -[1,3,2808], -[0,0,2809,2810,5], -[0,-3268,-3037,-3664,-6593,-589,-7653,-7654,-932,-958,-960,-2410,-2469], -[0,-3100,-3445,-4058,-3926,-1446], -[1,3,2812], -[0,0,2813,2814,6], -[0,-23,-40,-190,-3326,-350,-4062,-351,-3266,-518,-632,-724,-920,-932,-940,-1110,-1609,-6451,-1771,-1889,-1897,-1903,-1906, --1942,-2125,-2127,-4753,-2162], -[0,-3671,-2757,-7655,-856,-3262,-3214,-3756,-1599,-3437,-3862,-7452,-7656], -[1,3,2816], -[0,2817,71,2818,8], -[0,-7657,-7658,-1333,-1646,-2424,-7659], -[0,-1105,-1599,-856,-4328,-3215,-7660,-7661,-7662], -[1,3,2820], -[0,2821,2822,2823,8], -[0,-23,-3194,-25,-46,-47,-668,-679,-834,-7663,-4236,-3649,-1107,-2765,-1304,-1371,-1442,-7664,-1548,-5347,-7665,-7666, --7667,-1866,-2061,-2093,-2095,-2096,-7668,-4656,-2114,-2271,-7669,-2429,-5358,-7670,-7671,-2550], -[0,-7672,-796,-7673,-932,-940,-1077,-1344,-1415,-1456,-1534,-1658,-1942,-2251,-2359], -[0,-856,-4144,-1446,-7674,-3215,-3258], -[1,3,2825], -[0,2826,2827,2828,5], -[0,-7675,-7676,-812,-7677,-7678,-7679,-7680,-2424], -[0,-3037,-1127,-1152,-1156,-1542,-1656,-6799,-2210,-2351], -[0,-7681,-7682,-857,-7683,-5800,-7684,-7685,-5801], -[1,3,2830], -[0,2831,2832,2833,4], -[0,-3484,-1088,-1107,-668,-2006,-915,-1548,-1650,-572,-784,-1004,-1889,-1955,-2105,-2195,-3728,-2353,-1077,-1356,-719, --2019,-682,-1888,-2102,-23,-7686,-47,-518,-1304,-1607,-7687,-4356,-7688,-7689,-3649,-39,-43,-46,-2015,-7690,-40,-7691, --7692,-41,-930,-916,-26,-36], -[0,-2125,-7693,-1075,-7694], -[0,-856,-7695,-7696,-858], -[1,3,2835], -[0,2836,27,2837,5], -[0,-7697,-703,-4700,-1288,-1293,-1310,-3544,-7698,-3788,-1645,-2087,-7699,-2427,-7700], -[0,-858,-3544,-7701,-856], -[1,3,2839], -[0,2840,2841,2842,6], -[0,-44,-786], -[0,-7702,-7703,-21,-23,-42,-7704,-7705,-7706,-427,-428,-528,-534,-932,-958,-962,-964,-969,-1003,-1107,-1437,-1471,-1475, --1479,-7707,-1482,-1483,-1489,-1490,-1492,-1654,-2125,-7708,-2210,-2410,-2501], -[0,-860,-3159,-5092,-3690,-7709,-5553,-5389,-7710,-6730,-860,-7711,-7712,-775], -[1,3,2844], -[0,2845,2846,2847,4], -[0,-3223,-6585,-7713], -[0,-1415,-932,-674,-2375,-1942,-2410,-3136,-3037,-1333,-940,-428,-427], -[0,-3264,-6597,-7650], -[1,3,2849], -[0,0,2850,2851,8], -[0,-664,-932,-1127,-1132,-1144,-1148,-1149,-1155,-1442,-1471,-1474,-1475,-1479,-1482,-1483,-1654,-1942,-2177], -[0,-5092,-6527,-7714,-7650,-3264,-659,-3839,-7715], -[1,3,2853], -[0,2854,2855,2856,6], -[0,-7716], -[0,-23,-40,-3326,-351,-3561,-3266,-426,-3037,-767,-940,-967,-1437,-1449,-1471,-1473,-1475,-1479,-1485,-1486,-7717,-1646, --1771,-1939,-1942,-1989,-7718,-2125,-2127,-2132,-7719,-2142,-2387,-2410,-2541], -[0,-5092,-2544,-3264,-3839,-7720,-7107,-7721,-7722,-7723,-7724,-7725], -[1,3,2858], -[0,0,2859,2860,10], -[0,-1788,-932,-756,-1939,-5478], -[0,-3110,-5922,-5493,-7651], -[1,3,2862], -[0,0,2863,2864,4], -[0,-3037,-3542,-2210,-2250,-2251,-2319,-2410], -[0,-865,-6845,-7726,-5558,-3591,-727,-6849], -[1,3,2866], -[0,194,2867,2868,5], -[0,-3037,-2250,-2251,-2319,-2410], -[0,-865,-7727,-3591,-7728,-7729,-6845,-7726], -[1,3,2870], -[0,2871,2872,2873,4], -[0,-1116,-1866,-1825,-7730,-1591,-1043,-814,-7731,-1100,-7732,-736], -[0,-2541,-519,-1722,-7733,-2125,-1849,-7734], -[0,-867,-7347,-1334,-2105,-2435], -[1,3,2875], -[0,2876,2877,2878,9], -[0,-867,-7735,-2125], -[0,-3179,-1344,-1654,-2226,-2250], -[0,-867,-1105,-7661,-7660,-7736,-7737,-2323,-7347,-7738], -[1,3,2880], -[0,2881,2882,2883,4], -[0,-870,-871,-873,-875,-876,-874], -[0,-932,-2125,-190,-2410,-3037,-2411,-428,-427], -[0,-869,-856,-687,-1446,-620,-1599,-4055], -[1,3,2885], -[0,2886,2887,2888,8], -[0,-1111,-871,-7739,-7740,-873,-875,-7741,-876,-874], -[0,-1415,-932,-2125,-1753,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-427], -[0,-869,-856,-687], -[1,3,2890], -[0,2891,2892,2893,4], -[0,-6904], -[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-6902,-427], -[0,-869,-856], -[1,3,2895], -[0,2896,121,2897,4], -[0,-7743], -[0,-869,-856,-3110], -[1,3,2899], -[0,2900,2901,2902,4], -[0,-2330,-1446,-7744], -[0,-1415,-932,-2125,-2375,-749,-190,-2410,-3136,-3037,-7745,-7742,-2411,-428,-427], -[0,-869,-856,-1446], -[1,3,2904], -[0,2905,2906,2907,4], -[0,-1600,-1304,-1605], -[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-3661,-428,-427], -[0,-869,-856,-620], -[1,3,2909], -[0,0,121,2910,8], -[0,-869,-856,-4055], -[1,3,2912], -[0,2913,121,2914,5], -[0,-1605], -[0,-869,-856,-1599], -[1,3,2916], -[0,2917,2918,2919,4], -[0,-1033,-1361,-1792], -[0,-23,-6065,-5584,-7746,-528,-7747,-767,-824,-927,-932,-7748,-940,-951,-956,-962,-967,-969,-7749,-1059,-1168,-1174,-1184, --1188,-7750,-1201,-1208,-1212,-1243,-1266,-1415,-1942,-2006,-2019,-2052,-7751,-2347,-2417,-7752], -[0,-7753,-3496,-2006,-7754], -[1,3,2921], -[0,2922,2923,2924,5], -[0,-4007,-7755], -[0,-7756,-7757,-664,-795,-7758,-1471,-1475,-1482,-7759,-1491,-1654,-1655,-1745,-7760,-2162,-2210,-2211], -[0,-7761,-7762,-7763,-7764], -[1,3,2926], -[0,2927,2928,7,5], -[0,-2550,-2388,-7765,-1077,-7766,-2271,-1458,-7767,-7768,-7769], -[0,-932,-3037,-3041,-3048,-428,-7770,-7771,-427], -[1,3,2930], -[0,2931,0,2932,4], -[0,-7772], -[0,-7773,-880,-6582,-7685,-3445,-687,-7774,-5401], -[1,3,2934], -[0,2935,2936,113,4], -[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5366,-5340,-747,-823,-5341,-909,-5342,-5343,-5344, --3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, --4942,-2003,-4944,-2004,-2013,-2965,-2028,-5350,-5351,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5354, --5355,-2427,-2429, --5356,-2435,-5357,-5358,-5359], -[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3803,-3040,-3087,-3052,-5364,-5365,-932,-4597,-1026,-1031,-5367, --5368,-1344,-1534,-1942,-1944,-1945,-2006,-2019,-2281,-2379,-2410,-2469,-5369,-5370], -[1,3,2938], -[0,2939,2940,113,6], -[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5339,-747,-823,-5341,-5359,-909,-5342,-5343,-5344, --3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, --4942,-4944,-2013,-2965,-2028,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5355,-2427,-2429,-5356,-2435, --5357,-5358], -[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3040,-3087,-5364,-5365,-932,-1026,-1031,-5368,-1344,-1534,-1942, --1944,-1945,-2006,-2281,-2379,-2410,-2469], -[1,3,2942], -[0,0,2943,7,5], -[0,-2322,-2346], -[1,3,2945], -[0,2946,2947,110,8], -[0,-7775,-7776,-7777,-7778,-7779,-44,-3946,-7780,-7781,-7782,-7783,-7784,-682,-747,-809,-7785,-7786,-7787,-7788,-7789, --7790,-7791,-7792,-7793,-7794,-7795,-7796,-7797,-7798,-7799,-7800,-7801,-7802,-7803,-7804,-7805,-7806,-7807,-7808,-7809, --7810,-7811,-7812,-7813,-7814,-7815,-7816,-4951,-2345], -[0,-5695,-5704,-3139,-7817,-4952,-2581,-5702,-3744,-3745,-3746,-3747,-162,-3778,-4954,-5706,-4106,-5708,-5699,-283,-305, --4955,-4773,-3562,-406,-407,-409,-410,-5682,-5683,-5693,-3048,-4960,-5692,-5697,-3136,-4961,-4962,-4963,-4964,-4647, --3044,-5686,-3037,-5688,-7818,-5675,-3803,-3624,-4966,-3040,-3087,-3052,-4968,-4969,-3199,-5687,-5673,-4971,-4972,-427, --428,-464,-5595, --4973,-5674,-4974,-523,-668,-674,-5701,-5676,-767,-768,-4977,-865,-881,-5698,-3808,-932,-933,-940,-948,-952,-958,-959, --962,-7819,-963,-969,-970,-978,-1026,-4979,-1077,-1103,-1107,-5346,-1339,-1352,-1359,-1392,-1404,-1415,-4980,-1416,-1419, --1421,-4981,-4982,-1437,-1449,-4983,-3134,-1534,-1548,-5689,-4984,-1646,-1662,-1729,-1737,-1779,-1805,-1816,-5668,-1870, --1880, --1942,-1943,-1950,-1955,-1978,-1983,-4985,-4986,-4987,-2006,-2013,-5680,-2019,-3051,-4988,-4989,-4990,-2027,-4991,-2044, --4992,-2082,-2090,-2093,-2094,-2095,-4994,-5707,-4995,-2101,-2125,-5669,-2177,-2193,-2205,-2214,-5671,-5000,-2323,-2324, --2334,-2392,-2402,-2410,-5001,-5678,-2501,-2502,-5002], -[1,3,2949], -[0,0,2950,2951,10], -[0,-86,-3307,-7820,-190,-932,-940,-964,-967,-1344,-1534,-1654,-1942,-2127,-2198,-2251], -[0,-5839,-510,-6235,-7821,-885,-7208,-1961,-7822,-6302,-3445,-3100], -[1,3,2953], -[0,2954,2955,2956,11], -[0,-2387,-7823], -[0,-22,-23,-47,-7769,-7767,-7824,-262,-350,-351,-3561,-3136,-427,-428,-668,-719,-879,-928,-932,-1077,-1111,-1344,-1415, --1416,-1452,-1588,-1805,-2127,-2140,-2172,-2177,-2334,-2375,-2410], -[0,-886,-7825,-6581,-7826,-7275,-7827,-7828,-659,-3839], -[1,3,2958], -[0,2959,2960,2961,4], -[0,-7829,-1043,-7830,-1199,-7831,-7832,-7833,-1548,-1645,-7834,-1876,-2347,-2460,-2462,-2550], -[0,-3035,-3048,-7835,-3044,-3621,-3037,-4364,-4372,-3625,-7836,-7837,-7838,-3041,-664,-994,-1077,-1100,-1654,-1788,-1972, --2125,-2210,-2211,-2379,-2388,-2410], -[0,-7829,-3674,-5874,-7839,-7840,-7449,-7841], -[1,3,2963], -[0,2964,2965,2966,4], -[0,-1410], -[0,-2410,-32,-633,-932,-6272,-1446,-1582,-1654,-2416], -[0,-3110,-7651,-6899,-888], -[1,3,2968], -[0,2969,2970,2971,4], -[0,-668,-1548,-7842], -[0,-1722,-461,-510,-1127,-1654,-2210,-2239,-932,-1437,-1666,-2177,-521,-600,-2501,-7843,-7844,-615,-1813,-1942,-2347, --1003,-1026,-3767,-1132,-7845,-633,-23,-7846,-528,-534,-7847,-7848,-40,-966,-1138,-1134,-958,-1136,-1148,-968,-940,-943, --967,-974,-7849], -[0,-889,-6045,-3817], -[0,44,15,16,5], -[1,3,2974], -[0,2975,0,195,6], -[0,-3037,-1018,-7850], -[1,3,2977], -[0,2978,2979,2980,4], -[0,-668,-2550,-680,-1077,-7851,-7852,-7853,-7854,-7855,-7741], -[0,-3041,-3048], -[0,-891,-4258,-7641,-7856,-1380,-7857,-7858,-7859,-3994,-7860,-7861,-7862,-7863,-7864,-7865,-7866,-7867,-7868,-7869,-7870, --7871,-5730], -[1,3,2982], -[0,2983,2984,2985,4], -[0,-7872,-7850,-7873,-7874,-7875,-7876,-812,-1018,-7731,-1077,-7877,-7878,-7879,-7880,-1875,-7881,-2114,-2177,-2551], -[0,-427,-428,-519,-641,-708,-932,-943,-950,-958,-966,-968,-1788,-1872,-2210,-2384,-2402,-2410], -[0,-891,-7857,-7882,-3994], -[1,3,2987], -[0,2988,2989,195,10], -[0,-1018,-7883], -[0,-2322,-2250,-7884,-1849], -[1,3,2991], -[0,2992,56,57,6], -[0,-668,-1078,-1406,-7885], -[1,3,2994], -[0,2995,2996,7,8], -[0,-7886], -[0,-1127,-7887,-1130,-1144,-1148,-1155,-1413,-1437,-1471,-1475,-1479,-1481,-1487,-1542,-1548], -[1,3,2998], -[0,2999,3000,3001,5], -[0,-513,-532,-823,-1761,-2113,-2345], -[0,-7888,-7889,-526,-527,-534,-535,-539,-541,-544,-7890,-558,-564,-7891,-664,-679,-748,-756,-7892,-767,-778,-925,-932, --7893,-949,-957,-7894,-1041,-7895,-1168,-1171,-7896,-1248,-1304,-1331,-1455,-5610,-1471,-1475,-1476,-1482,-7759,-1490, --1491,-1492,-7897,-1600,-1601,-7898,-1602,-1643,-1654,-1743,-1814,-1889,-1960,-2125,-2163,-7899,-2210,-2211,-2275,-7900, --2417, --7901,-2437,-2476,-2481,-2483,-2485,-7902,-2501,-2503,-2505,-2509], -[0,-7903,-2476,-3098], -[1,3,3003], -[0,3004,3005,3006,4], -[0,-616,-7904,-7905,-7906,-1370,-7907,-7908], -[0,-627,-756,-932,-1127,-1130,-1132,-1137,-1138,-1148,-7909,-1161,-1405,-1654], -[0,-7910,-7911,-7912,-7913], -[1,3,3008], -[0,3009,3010,3011,4], -[0,-7914,-7915,-7916,-1329,-7917,-1548,-1752], -[0,-86,-3307,-519,-674,-767,-888,-932,-946,-1053,-1344,-1534,-7918,-1788,-7919,-1974,-2094,-2099,-2541], -[0,-735,-7920,-6899,-1501,-7921,-7922,-7923,-7924,-7925,-7926,-1752,-7927,-1974,-7928,-3110,-3261,-3443], -[1,3,3013], -[0,0,3014,7,5], -[0,-190,-7929,-3037,-7930,-3664,-932,-940,-967,-7931,-1942,-7932,-2379,-2410,-2411,-2469], -[1,3,3016], -[0,3017,3018,3019,10], -[0,-7933,-7934,-7935,-7936,-7937,-2731,-7938,-7939,-7940,-7941,-628,-7942,-629,-2733,-7943,-7944,-7945,-7946,-7947,-668, --680,-7948,-724,-728,-7949,-7950,-7951,-7952,-834,-7953,-5501,-7954,-5502,-7955,-999,-1000,-1004,-1044,-1047,-7956,-1077, --6345,-5505,-5367,-1107,-6343,-7957,-7958,-7959,-1336,-1369,-1376,-7960,-7961,-1548,-1600,-7962,-1645,-1676,-1758,-1767, --7834,-7963, --1888,-7964,-7965,-7966,-2114,-6195,-7967,-7968,-2177,-5509,-7969,-7970,-2330,-2342,-2353,-7971,-2488,-7972,-3730,-7973, --7974,-7975], -[0,-6346,-630,-664,-665,-7976,-6477,-726,-7977,-7978,-932,-940,-7979,-964,-965,-1054,-7980,-1449,-1514,-1654,-1722,-1788, --1942,-7981,-2269,-2293,-2341,-2359,-7982,-2512,-2518,-7983,-7984], -[0,-3994,-7985,-5375,-687,-7986,-7987,-7988,-3114], -[1,3,3021], -[0,3022,3023,3024,4], -[0,-3197,-33,-3376,-3384,-3355,-3374,-3397,-38,-3412,-40,-44,-7989,-7990,-7991,-7992,-541,-7993,-7941,-628,-7944,-7946, --702,-7994,-7995,-7955,-6195,-2177], -[0,-23,-7996,-7997,-7998,-7999,-8000,-528,-630,-664,-705,-8001,-722,-7949,-753,-7951,-8002,-902,-8003,-904,-8004,-8005, --8006,-8007,-8008,-8009,-932,-8010,-966,-7980,-8011,-1654,-1989,-2082,-7981,-2114,-2125,-2501], -[0,-525,-7986,-8012,-902,-3185,-3186], -[1,3,3026], -[0,3027,3028,3029,6], -[0,-8013,-8014,-7941,-8015,-6346,-6345,-7959,-8016,-5509,-2488], -[0,-23,-32,-33,-3376,-38,-3412,-44,-7996,-7998,-8017,-7990,-629,-630,-664,-8001,-726,-8002,-902,-903,-8018,-8003,-8004, --8005,-8006,-8007,-8008,-8009,-8019,-8020,-8021,-932,-940,-8010,-964,-965,-967,-8022,-1054,-8011,-1654,-1942,-1989,-1990, --2091,-6348,-2281,-2282,-5059,-2501], -[0,-8012,-902], -[1,3,3031], -[0,3032,3033,3034,8], -[0,-8023,-8024], -[0,-351,-3267,-3037,-1520,-2125,-2127,-2392,-2410], -[0,-905,-3264,-775,-8025,-8026], -[1,3,3036], -[0,0,0,105,8], -[1,3,3038], -[0,0,3039,3040,8], -[0,-1654,-932,-1405,-966,-958,-968,-943,-974], -[0,-6422,-907,-2435], -[1,3,3042], -[0,3043,31,3044,4], -[0,-1801], -[0,-5827,-8027,-5865,-8028,-8029,-8030,-4116], -[1,3,3046], -[0,3047,3048,7,4], -[0,-1119,-2321], -[0,-4035,-3136,-3037,-774,-932,-6929,-1344,-1415,-1534,-1623,-1942,-2410], -[1,3,3050], -[0,3051,3052,3053,4], -[0,-479,-2269], -[0,-3037,-1202,-1376,-1654,-1788,-1966,-2410], -[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3262,-3960,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3966,-3967, --1965,-1966,-3968,-3969,-2063,-3970,-3108,-3971,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], -[1,3,3055], -[0,3056,3057,3058,8], -[0,-6511,-8031,-1977,-8032], -[0,-5834,-516,-5835,-932,-993,-1365,-1777,-1788,-2156,-2322], -[0,-3223,-8033,-8034,-3264,-6422,-6420], -[1,3,3060], -[0,0,3061,3062,9], -[0,-664,-1344,-1654,-2176], -[0,-8035,-8036,-8037,-8038,-7534], -[1,3,3064], -[0,3065,122,196,5], -[0,-987,-2346], -[1,3,3067], -[0,0,3068,3069,4], -[0,-23,-5584,-39,-40,-86,-3307,-7465,-527,-528,-533,-534,-932,-934,-940,-958,-967,-8039,-1107,-1344,-1415,-1646,-3547, --7861,-1942,-6040,-2501,-2503,-2518,-8040], -[0,-3113,-6845,-5558,-8041,-8042,-8043,-8044], -[1,3,3071], -[0,3072,3073,85,4], -[0,-8045,-674,-918,-8046,-8047,-8048,-8049,-8050,-8051,-7394,-8052,-8053,-8054,-1559,-1794,-5849,-1797,-1798,-8055,-1992, --8056,-8057], -[0,-526,-6022,-557,-932,-933,-958,-962,-969,-1365,-1449,-2125,-2156], -[1,3,3075], -[0,3076,3077,85,11], -[0,-1285,-2177,-2029,-1967,-1797,-8055,-2052,-917,-918], -[0,-915,-932,-2125,-1777,-21,-1365,-23,-557,-969,-2156,-32,-933,-958,-962,-970,-535,-6022], -[1,3,3079], -[0,3080,3081,85,4], -[0,-1285,-2177,-1967,-1797,-8062,-8063,-8046], -[0,-932,-2125,-1777,-21,-1365,-23,-557,-969,-2156,-32,-933,-958,-962,-970,-535,-6022], -[1,3,3083], -[0,3084,3085,85,6], -[0,-1285,-5849], -[0,-932,-2125,-1777,-21,-1365,-23,-557,-2156,-32,-958,-934,-535,-6022], -[1,3,3087], -[0,3088,3089,7,9], -[0,-459,-929], -[0,-465,-932,-943,-958,-963,-966,-968,-1654,-1788,-2293], -[1,3,3091], -[0,3092,3093,3094,4], -[0,-461,-1026], -[0,-7150,-635,-8064,-3347,-8065,-8066,-1942,-2091], -[0,-8067,-8068,-6505,-8069,-8070,-8071,-3217,-8072,-8073,-8074,-3756,-8075,-8076,-8077,-8078,-8079], -[1,3,3096], -[0,3097,3098,3099,4], -[0,-8080,-1283,-8081,-8082,-8083,-6402,-1797], -[0,-2832,-5834,-8084,-8085,-8086,-8087,-8088,-8089,-8090,-8091,-8092,-8093,-8094,-8095,-8096,-505,-516,-5835,-932,-6283, --6503,-1402,-1777,-1788,-8097,-2156,-8098,-2322,-8099], -[0,-3214,-3217,-6505,-3756,-7374,-5846,-8100,-8101,-5831], -[1,3,3101], -[0,3102,3103,3104,11], -[0,-6704,-8102,-8103,-8104], -[0,-932,-6706,-6707,-6708,-1344,-1534,-1788,-8105,-6709,-6710], -[0,-3217,-8106,-8107,-8108,-3184,-8109,-8110,-8111,-8112,-3207,-3214,-3582,-5396,-2444,-5260,-8113], -[1,3,3106], -[0,0,3107,3108,4], -[0,-5834,-515,-932,-1365,-1414,-1788,-2156,-2416], -[0,-5396,-8108,-8114,-3214,-3217,-3582], -[1,3,3110], -[0,0,3111,3112,5], -[0,-526,-527,-535,-4098,-558,-664,-767,-1654,-2125], -[0,-3184,-6324,-525], -[1,3,3114], -[0,0,3115,3116,9], -[0,-8115,-1654,-902,-7945,-7938,-8116,-8117,-8118,-8119,-629,-7993,-8003,-8120,-8121,-6083,-6070,-8122,-6081,-548,-6072, --6068,-550,-6071,-6082], -[0,-8123,-3582,-1961,-5923], -[1,3,3118], -[0,0,3119,3120,4], -[0,-21,-23,-40,-4691,-925,-932,-940,-943,-958,-966,-968,-1344,-1788,-1942,-2210,-2322], -[0,-1961,-5923,-3184,-8124,-926], -[1,3,3122], -[0,0,3123,3124,8], -[0,-5834,-515,-664,-923,-932,-993,-1127,-1137,-1149,-1161,-1365,-1654,-1788,-1963,-8125,-2156,-2322,-2416], -[0,-3217,-3207,-3184,-5396,-1961,-5923,-8126,-6917,-8127,-8128], -[1,3,3126], -[0,0,3127,3128,5], -[0,-589,-585], -[0,-5559,-3264,-3590], -[1,3,3130], -[0,0,14,3131,10], -[0,-5559,-5569,-5570,-8129,-8130,-2265,-8131,-8132], -[1,3,3133], -[0,3134,3135,7,4], -[0,-988,-6100,-987,-2231], -[0,-461,-615,-8133,-664,-3629,-8134,-1168,-1197,-1231,-1646,-1815,-2177], -[1,3,3137], -[0,3138,3139,3140,5], -[0,-189,-5200,-8135,-8136,-7820,-8137,-8138,-8139,-8140,-426,-469,-769,-812,-930,-982,-983,-986,-8141,-6100,-1025,-8142, --1047,-1108,-1353,-8143,-1393,-8144,-1645,-5199,-1815], -[0,-2832,-23,-40,-3794,-7462,-3244,-8145,-8146,-3037,-428,-534,-652,-664,-674,-722,-753,-795,-888,-955,-8147,-7355,-8148, --8149,-8150,-987,-8151,-1107,-1110,-1116,-1125,-1431,-1498,-1534,-1600,-1602,-1610,-8152,-8153,-8154,-8155,-8156,-8157, --1654,-8158,-8159,-1942,-1959,-1972,-2066,-2082,-2177,-2195,-2210,-2410,-2501,-2503,-8160], -[0,-3272,-7148,-3214,-3217,-986], -[1,3,3142], -[0,3143,3144,197,5], -[0,-1797,-1798,-934], -[0,-2322,-887,-932,-1365,-44,-8161,-8162,-557,-969,-2156,-958,-962,-970], -[1,3,3146], -[0,3147,3148,197,4], -[0,-2177,-1797,-1798,-8167], -[0,-2322,-887,-932,-1365,-44,-8161,-8162,-557,-2156,-958], -[1,3,3150], -[0,3151,3152,3153,10], -[0,-934], -[0,-427,-428,-855,-932,-940,-958,-1344,-1534,-1771,-1942,-8168,-2410], -[0,-8164,-727,-4795,-8165,-6434,-8166,-932,-8163,-3214,-4900,-2410], -[1,3,3155], -[0,0,38,3156,8], -[0,-3939,-707,-8169,-5553,-7148,-8170,-1445,-1452,-8171,-932,-5874,-8172,-8173,-7440,-7144,-8174,-7840,-8175], -[1,3,3158], -[0,3159,38,3160,4], -[0,-190,-1110], -[0,-932,-5031,-8176], -[1,3,3162], -[0,3163,3164,3165,4], -[0,-3615,-3244,-190,-3748,-427,-428,-938,-945,-8177,-948,-958,-960,-964,-965,-7354,-978,-2411], -[0,-4367,-932,-2410], -[0,-4362,-932,-5031,-8176], -[1,3,3167], -[0,3168,3169,76,11], -[0,-965,-964,-958,-8177,-428,-7354,-427,-948], -[0,-932,-2410,-4367], -[1,3,3171], -[0,0,0,3172,6], -[0,-932,-8163,-5031,-8178,-1942], -[1,3,3174], -[0,3175,0,7,5], -[0,-23,-959,-969,-32,-958,-561,-956,-962,-8179,-428,-8167,-970,-976,-427], -[1,3,3177], -[0,0,3178,3179,5], -[0,-932,-943,-958,-965,-968,-2322], -[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8163,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2176,-2250, --8185,-5553,-8186,-8187,-8174], -[1,3,3181], -[0,0,3182,3183,4], -[0,-3330,-8096,-932,-958,-965,-968,-2322], -[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8163,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2250,-8185, --5553,-8186,-8187,-8174], -[1,3,3185], -[0,3186,3187,7,9], -[0,-190,-3560,-978,-1110,-2411], -[0,-8188,-3330,-3037,-8189,-672,-932,-8190,-8191,-1942,-2410], -[1,3,3189], -[0,3190,3191,3192,4], -[0,-8192,-7462,-3748,-8167,-1110], -[0,-519,-932], -[0,-8163,-2541,-8193,-8194,-8195,-8196,-8197,-707,-8169,-5553,-7148,-8170,-1445,-1452,-8171,-932,-5874,-8172,-2250,-8173, --7440,-7144,-8174,-7840,-8175,-5493], -[1,3,3194], -[0,0,3195,3196,10], -[0,-86,-3307,-767,-1344,-1534,-2094,-2099,-2541], -[0,-8198,-727,-932,-7921,-7922,-8199,-2541], -[1,3,3198], -[0,3199,3200,3201,4], -[0,-429,-469,-671,-719,-755,-823,-3780,-7829,-1418,-1456,-5473,-1605,-2400], -[0,-190,-3037,-4372,-8200,-3899,-6593,-932,-940,-958,-965,-967,-978,-1609,-1768,-1771,-1821,-1942,-2210,-7969,-2410,-2411, --2469], -[0,-4100,-3671,-856,-932,-3262,-3862], -[1,3,3203], -[0,3204,0,3205,8], -[0,-812,-8201,-1101,-8202,-8203,-2654,-8204], -[0,-2410,-932,-6024,-6041,-3862], -[1,3,3207], -[0,3208,3209,3210,5], -[0,-1046,-1077,-1543,-1793,-2168], -[0,-21,-23,-40,-86,-3307,-8205,-7166,-528,-533,-679,-8206,-767,-824,-825,-932,-940,-8207,-958,-1344,-1415,-1424,-1534, --1771,-1942,-2251,-2501], -[0,-932,-7148,-8170,-5932,-2501], -[1,3,3212], -[0,3213,3214,3215,4], -[0,-189,-7462,-8208,-986,-8209,-8210,-2115], -[0,-428,-519,-652,-668,-932,-8211,-947,-955,-999,-1771,-1821,-1866,-2410,-2541], -[0,-932,-5208,-3784,-519,-4004,-4043,-507,-5856,-5855,-1654], -[1,3,3217], -[0,3218,3219,3220,9], -[0,-8212], -[0,-1654,-932,-528,-1552], -[0,-525,-932,-5208,-3784,-528], -[1,3,3222], -[0,3223,3224,3225,5], -[0,-7150,-8213,-635,-658,-1047,-1110,-1565,-2177], -[0,-23,-32,-86,-3307,-3615,-190,-3470,-3471,-8214,-3268,-8215,-3330,-3136,-8216,-3199,-589,-8217,-891,-932,-940,-955,-967, --1002,-1344,-1415,-1942,-2174,-2205,-2375,-2379,-2410,-2411], -[0,-932,-4865,-6520,-3690,-7148,-657,-8218], -[1,3,3227], -[0,0,123,3228,5], -[0,-932,-5208,-8108,-4795], -[1,3,3230], -[0,3231,3232,3233,4], -[0,-930,-1353], -[0,-5380,-3037,-8219,-528,-708,-769,-932,-8220,-1077,-1654,-1788,-1810,-2125,-2177,-5621,-8221,-2816], -[0,-932,-5208,-3784,-3862,-8222,-3485,-8223,-1109,-1110,-8224,-8225,-8226,-8227,-8228,-8229], -[1,3,3235], -[0,3236,3237,198,11], -[0,-189,-988], -[0,-86,-3307,-3534,-8230,-3244,-190,-3560,-8231,-8232,-8233,-426,-3044,-3037,-428,-429,-3899,-932,-8234,-940,-947,-965, --978,-981,-982,-986,-1344,-1431,-1534,-1548,-1609,-1768,-1772,-1942,-2892,-2410,-2411,-2469], -[1,3,3239], -[0,3240,3241,3242,4], -[0,-1548,-8235], -[0,-469,-1107,-1344,-1654,-932,-2125,-8236,-6611,-21,-23,-5870,-43,-2174,-40,-32,-8237,-3201,-955,-535,-3408,-36], -[0,-932,-3862,-8238], -[1,3,3244], -[0,3245,3246,3247,8], -[0,-1333], -[0,-8239,-8240,-932,-940,-8241,-1942,-2177], -[0,-3784,-5208,-932,-3264], -[1,3,3249], -[0,3250,3251,3252,9], -[0,-8242,-8243,-8244,-8045,-505,-812,-8245,-8246,-8247,-1285,-7437,-1393,-1645,-8063,-8248,-8055,-2177,-8249,-2383], -[0,-8250,-3330,-428,-526,-527,-528,-539,-541,-557,-6089,-566,-572,-664,-767,-8251,-932,-947,-948,-955,-958,-7894,-6039, --8252,-1107,-1365,-1408,-1461,-8253,-8254,-1609,-1654,-8255,-1788,-2074,-2125,-2156,-2210,-2359,-2410,-8256], -[0,-932,-5208,-3784,-3184,-5748,-3209,-6024,-8257], -[1,3,3254], -[0,199,3255,198,6], -[0,-21,-23,-40,-42,-86,-3307,-8230,-8258,-3470,-3471,-5325,-3330,-3136,-3037,-3199,-427,-428,-429,-533,-8259,-815,-932, --940,-947,-955,-958,-965,-967,-981,-8260,-1344,-1392,-1415,-6725,-1534,-8241,-1868,-1942,-2125,-2174,-2177,-2379,-2410], -[1,3,3257], -[0,3258,3259,3260,4], -[0,-8261,-8262,-8263,-3896,-812,-930,-986,-8141,-1320,-8264,-8265,-2177,-8266,-8267], -[0,-2832,-21,-23,-32,-3203,-40,-8268,-8269,-7820,-8270,-351,-7040,-3472,-7041,-3035,-3198,-8232,-8146,-426,-4049,-3621, --3037,-3199,-8271,-3782,-535,-539,-8272,-652,-656,-664,-813,-932,-8237,-8236,-1107,-1110,-1344,-8273,-1456,-8274,-1534, --1654,-8275,-1874,-8276,-2125,-2127,-2174,-2210,-5198,-2410,-2411], -[0,-932,-3862,-1446], -[1,3,3262], -[0,3263,3264,3265,9], -[0,-189,-7820,-8137,-8277,-8278,-8279,-7356,-5199,-2653], -[0,-32,-8280,-50,-8230,-7462,-8281,-8282,-3748,-7155,-3621,-8283,-3037,-3199,-427,-428,-652,-8284,-928,-932,-940,-955, --8285,-960,-8286,-961,-963,-965,-8287,-967,-971,-980,-7355,-982,-997,-1110,-1654,-1834,-1942,-2177,-2281,-8288,-2282, --8289,-8290,-2892,-2392,-2410,-2411,-8291,-2468,-2478], -[0,-932,-5208,-3784,-7148,-8292,-1460,-4055], -[1,3,3267], -[0,3268,3269,3270,4], -[0,-5113,-8243,-505,-8293,-522,-8294,-8295,-5973,-1285,-8296,-8297,-1645,-8063,-8032,-8298], -[0,-21,-23,-32,-3203,-43,-516,-535,-557,-932,-934,-947,-955,-956,-958,-988,-1059,-1365,-1408,-7317,-1646,-1777,-1797, --1798,-2125,-2156,-2177,-2322,-8299], -[0,-932,-5208,-3784,-4665,-4666,-4146], -[1,3,3272], -[0,3273,3274,3275,4], -[0,-1618], -[0,-1788,-664,-1654,-932,-1110,-190,-8148,-8300], -[0,-932,-5208,-1599,-7148,-8170], -[1,3,3277], -[0,3278,0,3279,10], -[0,-1110,-189], -[0,-932,-5208,-3784,-1654], -[1,3,3281], -[0,3282,3283,200,9], -[0,-189,-909,-8301,-1101,-1110,-2898,-1353,-2177,-8302], -[0,-190,-3330,-426,-8303,-3037,-428,-5209,-932,-940,-947,-955,-1026,-1344,-1534,-1609,-1654,-1772,-1788,-1810,-1942,-1977, --2091,-2125,-8304,-2400,-2410], -[1,3,3285], -[0,3286,3287,200,6], -[0,-6578,-8305,-1353,-1645,-2114,-2177], -[0,-5380,-708,-932,-1026,-1110,-1654,-1788,-1810,-1977,-2125], -[1,3,3289], -[0,3290,0,3291,10], -[0,-8306,-2653], -[0,-932,-5208,-3784,-1942], -[1,3,3293], -[0,3294,3295,3296,4], -[0,-189], -[0,-428,-855,-932,-940,-947,-955,-959,-965,-967,-1110,-1344,-1415,-1534,-1772,-1942,-2410], -[0,-932,-5208,-3784,-1961,-5923], -[1,3,3298], -[0,3299,3300,201,5], -[0,-8243,-8307,-505,-8308,-8245,-8309,-988,-1285,-8296,-1645,-1798,-8063,-8055,-1967,-2114,-2177,-5010,-8310], -[0,-23,-32,-3332,-8311,-8312,-41,-3330,-426,-3037,-428,-528,-932,-934,-947,-955,-958,-981,-8260,-982,-986,-8313,-1107, --1405,-1408,-8314,-1609,-1654,-1777,-2210,-2410,-8256], -[1,3,3302], -[0,3303,3304,201,5], -[0,-2564,-23,-25,-8315,-3251], -[0,-1415,-2410,-3037,-47,-528,-3330,-426,-8316,-8317,-32,-42], -[1,3,3306], -[0,3307,3308,3309,6], -[0,-189,-5200,-3896,-8273,-8318,-8319,-8320], -[0,-50,-3462,-8230,-3244,-190,-8281,-8282,-5030,-3035,-3330,-8231,-426,-3621,-3037,-8321,-427,-428,-507,-664,-8284,-932, --940,-947,-948,-955,-958,-960,-8286,-961,-963,-965,-8322,-967,-971,-978,-980,-7355,-8323,-1609,-1654,-8324,-1588,-1772, --1788,-1834,-1942,-2177,-2281,-3085,-8288,-2892,-2392,-2410,-2411,-8291,-2468,-2478], -[0,-932,-5208,-3784,-5570,-5569], -[1,3,3311], -[0,3312,3313,3314,5], -[0,-8325], -[0,-190,-5887,-932,-8326,-940,-947,-955,-1534,-1609,-1654,-1771,-1942,-2174,-8160], -[0,-932,-7107,-8327], -[1,3,3316], -[0,3317,0,3318,9], -[0,-2410,-2177,-8328,-1566,-8329,-5200,-1645,-5198,-8320,-651,-644,-1110], -[0,-8330,-932,-5208], -[1,3,3320], -[0,0,123,3321,11], -[0,-932,-5208], -[1,3,3323], -[0,3324,3325,3326,9], -[0,-189,-3115,-6100,-1110,-1499,-1889,-1907,-1929,-2177,-8331], -[0,-23,-32,-6034,-8230,-4776,-8332,-8333,-4049,-8334,-3621,-3037,-8335,-3199,-8336,-3331,-3782,-461,-507,-928,-982,-8190, --983,-986,-1431,-1521,-1654,-1916,-1931,-2162,-2232,-2286,-2299,-8337,-2392,-2399,-2548], -[0,-932,-3784,-5208,-2299,-8338], -[1,3,3328], -[0,3329,3330,3331,5], -[0,-3331,-429], -[0,-86,-3307,-3244,-190,-3037,-5206,-3664,-6593,-3665,-932,-940,-947,-948,-8339,-965,-968,-981,-8260,-1110,-1344,-1431, --1534,-1942,-2910,-2174,-2892,-2410,-2411,-2469], -[0,-932,-5208,-3784,-7148,-5127,-3634], -[1,3,3333], -[0,3334,3335,3336,4], -[0,-429,-264,-263], -[0,-4153,-3330,-426,-932,-4164], -[0,-4165,-856,-4100,-3485,-4156,-4158,-4346,-3862], -[1,3,3338], -[0,3339,3340,3341,9], -[0,-3188,-189,-671,-680,-8340,-3347,-8341,-1110,-1366,-5894,-1451,-1878,-8342,-8343,-2177,-4096], -[0,-22,-23,-32,-3244,-8344,-428,-3782,-519,-652,-910,-932,-8211,-945,-947,-955,-960,-978,-981,-8260,-982,-986,-1536,-1609, --8345,-8346,-1768,-1772,-8275,-1821,-1951,-2410,-2478,-2548], -[0,-932,-5208,-3784,-8347,-8170,-7148,-5553,-2541], -[1,3,3343], -[0,199,3344,3345,4], -[0,-3748,-3330,-3621,-3037,-427,-428,-5206,-8348,-8349,-726,-932,-947,-955,-979,-981,-8260,-2379,-2392,-2410,-2423,-2469], -[0,-932,-5208,-3784,-8350,-2469,-8351], -[1,3,3347], -[0,3348,3349,3350,5], -[0,-189,-5199,-2788,-1931,-2177,-8352], -[0,-50,-3560,-8282,-3748,-5030,-3330,-8283,-3037,-3199,-8353,-427,-428,-3782,-3664,-507,-8284,-928,-932,-6835,-940,-955, --958,-961,-8354,-8287,-967,-978,-8190,-983,-986,-997,-1110,-1449,-1609,-1852,-1942,-2892,-2410,-8291,-2468,-2469,-2478], -[0,-932,-3784,-5031,-2476,-5173,-8199], -[1,3,3352], -[0,3353,3354,3355,6], -[0,-22,-1464,-668,-1373,-1793,-2006,-2205], -[0,-3244,-8355,-3330,-3037,-4067,-3040,-740,-932,-5135,-8356,-8357,-1431,-1741,-2269,-2410,-2469], -[0,-932,-8358], -[1,3,3357], -[0,3358,3359,38,9], -[0,-8359,-426,-8360,-988], -[0,-428,-664,-983,-986,-8159,-2195], -[1,3,3361], -[0,0,3362,38,5], -[0,-1810,-2127,-2132,-2384,-2410], -[1,3,3364], -[0,3365,0,3366,4], -[0,-941,-8361], -[0,-984], -[1,3,3368], -[0,0,0,3369,9], -[0,-4791,-3217,-8257,-6024,-3209,-3966,-4792], -[1,3,3371], -[0,3372,3373,3374,5], -[0,-461,-6426,-983], -[0,-2832,-2127,-2195,-2384,-2410], -[0,-3272,-3217,-3214,-3215,-4132,-461], -[1,3,3376], -[0,0,3377,3378,5], -[0,-6774,-8362,-8363,-1107,-1405,-8364,-1471,-1475,-1477,-1478,-1479,-1480,-1482,-1487,-8365,-1488,-1548,-1654,-8366, --2081,-2330,-2388,-2410,-2412,-8367,-2501], -[0,-3272,-3217,-987,-3214,-3215,-4132], -[1,3,3380], -[0,0,3381,7,5], -[0,-558,-566,-664,-986,-1168,-1179,-1199,-1205,-8368,-1452,-1654], -[1,3,3383], -[0,202,3384,7,6], -[0,-2410,-2447], -[1,3,3386], -[0,0,3387,3388,6], -[0,-1654,-932,-1405,-589,-2172,-2155,-585,-966,-958,-968,-943,-963,-974], -[0,-990,-1334,-4616], -[1,3,3390], -[0,3391,3392,3393,8], -[0,-8369,-992], -[0,-8370,-8371,-8372,-8373,-4272,-5686,-3037,-8096,-633,-8374,-756,-1344,-1405,-1471,-1472,-1477,-1479,-8375,-1646,-1788, --1942,-2322,-2379,-2388,-2402,-2405,-2410,-8376], -[0,-4276,-8377], -[1,3,3395], -[0,3396,3397,3398,5], -[0,-4272,-616,-760,-8378,-8379], -[0,-8380,-3037,-8381,-8096,-932,-1471,-1475,-1479,-8375,-8382,-1788,-1942,-2322,-2379,-2410], -[0,-4276,-8113,-5260], -[1,3,3400], -[0,3401,3402,3403,5], -[0,-461,-668,-2550,-1548,-615,-1077,-8383,-988,-1600,-8384,-2425], -[0,-1983,-8385,-2410,-3037], -[0,-8386,-8387,-3214,-1599,-4004], -[1,3,3405], -[0,3406,3407,3408,5], -[0,-883,-8388,-1597,-8389,-2239,-8390,-2346], -[0,-8391,-8392,-8393,-2322,-8394], -[0,-5827,-6917,-8395,-7724,-2239,-8396,-1631,-8276], -[1,3,3410], -[0,0,3411,3412,9], -[0,-589,-615,-756,-1654,-1788], -[0,-5389,-997,-6820,-8397,-8398,-8399,-8400,-6821,-8401,-8402,-1801,-8403,-8404], -[1,3,3414], -[0,0,3415,3416,4], -[0,-350,-3266,-509,-652,-1654,-2127], -[0,-8405,-8406,-8407,-8408,-8398,-8399,-6821,-8401,-6820,-5389,-1801,-8400,-8403,-8409,-8404], -[1,3,3418], -[0,0,3419,3420,5], -[0,-468,-1083,-8047,-1283,-1402,-2322], -[0,-997,-8410,-8411,-8412], -[1,3,3422], -[0,3423,3424,3425,4], -[0,-8413,-769,-1040,-1100,-8414,-1395,-1399,-1773,-1951,-2202,-8415,-8416], -[0,-3037,-519,-652,-8417,-8418,-8419,-8420,-1849,-7087,-6909,-2384,-2410,-2518,-2541], -[0,-8421,-6599,-1958,-8422,-7096,-8423,-8424,-7091,-6656,-5550,-8425,-7304,-8426,-1764,-1847,-8427,-5369], -[1,3,3427], -[0,0,3428,3429,6], -[0,-1144,-1146,-1149,-1127,-2518], -[0,-1000,-1958,-8428,-3973,-8429,-8430,-8431,-8432], -[1,3,3431], -[0,3432,3433,7,4], -[0,-8433,-8434,-5124,-4025,-5129,-1427], -[0,-7037,-4034,-668,-1361], -[1,3,3435], -[0,0,3436,3437,4], -[0,-2832,-3037,-8200,-3665,-932,-8435,-1763,-8436,-2269,-2378,-2410,-2469], -[0,-2410,-8437,-507,-3694,-2414,-4004,-3634], -[1,3,3439], -[0,3440,3441,203,4], -[0,-1983,-828,-990,-1801,-2178,-2453,-812,-1072,-743,-3122,-459,-2401,-1840,-2255,-907,-1641,-5148,-617,-929,-1335,-1800, --737,-1045,-1997,-2187,-746,-8438,-736], -[0,-888,-1296,-1788,-465,-1654,-2457,-932,-1610,-1676,-2293,-733,-744,-745,-1010,-1635,-8439], -[1,3,3443], -[0,3444,3445,203,4], -[0,-459,-8440,-617,-736,-737,-743,-746,-812,-828,-907,-929,-990,-1045,-1072,-1335,-8438,-1636,-1800,-1840,-1851,-5148, --1983,-1997,-2155,-2178,-2187,-8441,-2255,-2401,-2445,-2453], -[0,-465,-733,-744,-745,-888,-932,-1010,-1296,-1610,-1635,-1654,-1676,-1788,-8439,-2293,-2457], -[1,3,3447], -[0,3448,3449,3450,6], -[0,-23,-25,-46,-8245,-1851], -[0,-3136,-932,-1415], -[0,-4847,-1004,-1446,-4100,-3696,-8442,-856,-2305,-5886,-3262,-3960,-8443,-8444,-8445], -[1,3,3452], -[0,3453,3454,3455,4], -[0,-888,-1650,-719,-1645,-6123], -[0,-1654,-932,-2125,-2418,-2293,-2369,-966,-958,-968,-943,-974,-2450], -[0,-1004,-3161,-6125,-3578,-3691,-5728,-3122,-3994,-3690], -[1,3,3457], -[0,3458,3459,3460,5], -[0,-1107,-1119,-1276], -[0,-190,-3470,-7040,-3471,-3472,-7041,-7042,-3136,-3037,-932,-1110,-1417,-2174,-2375,-2410,-2411], -[0,-1004,-8446,-1276,-6107,-3999,-8447,-3261], -[1,3,3462], -[0,3463,3464,3465,5], -[0,-1465,-8448,-3850], -[0,-1654,-932,-1004,-2379,-1942,-2410,-3621,-3617,-739,-428,-427], -[0,-6120,-8449,-3173,-8450,-6121,-1334,-3175,-8451,-1791,-1004], -[1,3,3467], -[0,3468,3469,7,5], -[0,-743,-746,-812,-828,-6825,-1840,-2155,-2418], -[0,-465,-744,-932,-963,-1004,-1654,-1788,-2293], -[1,3,3471], -[0,3472,3473,3474,5], -[0,-469,-668,-719,-724,-754,-865,-1004,-1435,-2127,-2132,-2410,-2564], -[0,-190,-3732,-4198,-3617,-3037,-427,-428,-932,-966,-1110,-1753,-1942,-2125,-2379,-2383,-2411], -[0,-3690,-3445,-6491,-3113,-6129,-1004,-8452,-3161,-8453,-5545,-3844,-3926], -[1,3,3476], -[0,0,3477,3478,5], -[0,-652,-8454,-2210,-932,-1004,-2379,-8455,-2410,-3037,-4372,-3617,-428,-427], -[0,-8456,-8457,-4055,-2410,-3690,-1334,-1004,-8458,-8459,-2410,-5401,-8038,-8460,-8461,-8462,-8463,-8464,-4140,-4601, --3445,-8465,-8466,-2006,-8467,-8468,-8469], -[1,3,3480], -[0,3481,3482,3483,4], -[0,-1548,-2451], -[0,-2685,-8470,-8471,-3136,-3044,-427,-428,-932,-940,-958,-967,-1415,-1942,-2375,-2410], -[0,-1004,-2451,-3926,-5874,-7723,-8472,-2544], -[1,3,3485], -[0,3486,3487,3488,5], -[0,-483,-1736,-8473,-1993,-8474], -[0,-3732,-4198,-8475,-3617,-4199,-8476,-8477,-4625,-8478,-724,-754,-828,-1004,-4206,-1335,-1730,-8479,-2410,-2426,-2564, --8480], -[0,-3967,-3690,-1334,-5401,-856,-4055,-1004,-2410,-4058,-3844,-8481,-4847,-8482,-3438,-8483,-8484,-8485,-8486,-2564,-3926], -[1,3,3490], -[0,0,3491,3492,8], -[0,-5834,-8487,-932,-1445,-2322], -[0,-1015,-702,-1631], -[1,3,3494], -[0,3495,3496,3497,8], -[0,-8488,-8489], -[0,-8490,-8491,-8492,-1202,-1396,-8493,-1646,-1654,-1792], -[0,-7370,-702,-1015,-1631,-7369,-7208,-1792,-1797,-7375,-3589,-7153,-8494,-8495,-2444,-3590,-5260,-5846], -[1,3,3499], -[0,3500,3501,7,5], -[0,-510,-1543,-2168,-2510], -[0,-526,-533,-551,-556,-558,-767,-778,-825,-932,-6929,-958,-1041,-1415,-1534,-1780,-1939,-2000,-2251,-2275,-2501,-8496], -[1,3,3503], -[0,3504,3505,3506,10], -[0,-812,-1100,-2555,-8497], -[0,-427,-428,-519,-932,-943,-950,-958,-966,-968,-974,-1077,-1344,-1534,-1788,-2384,-2410], -[0,-2432,-5408,-7347], -[1,3,3508], -[0,0,3509,7,9], -[0,-1788,-1168,-1446,-1654,-2210,-932,-1548,-1813,-2347,-756,-633,-2915,-1243,-1262,-1534,-2778,-2461,-1204,-8498,-8499, --2463], -[1,3,3511], -[0,3512,3513,3514,4], -[0,-8500], -[0,-932,-937,-966,-1001,-1654,-1788,-8501,-2210], -[0,-8502,-1573,-3444,-5545,-3240,-8503], -[1,3,3516], -[0,3517,3518,3519,4], -[0,-8504], -[0,-262,-3037,-767,-1107,-8342,-2104,-2402,-2410,-2469,-8505,-8506,-1023], -[0,-8507,-8508,-5858,-3634,-8509,-8510,-8511,-1021,-8512,-8513,-1415], -[1,3,3521], -[0,3522,0,3523,8], -[0,-8514,-8515], -[0,-788,-3215,-5922,-8516,-8517,-8518], -[1,3,3525], -[0,0,3526,3527,4], -[0,-756,-864,-932,-1654,-1788,-1939,-2006,-2052,-2210,-2410], -[0,-5922,-6439,-821], -[1,3,3529], -[0,3530,3531,204,4], -[0,-8519,-8520,-1108,-5615,-1639], -[0,-8521,-6927,-8522,-4036,-3621,-3037,-8523,-4372,-8524,-932,-8525,-999,-1026,-4787,-1107,-8526,-1654,-2125,-2210,-8527, --2410], -[1,3,3533], -[0,0,3534,7,5], -[0,-3621,-3037,-1654,-2165,-2410], -[1,3,3536], -[0,3537,3538,3539,11], -[0,-8529], -[0,-23,-38,-40,-43,-3037,-534,-652,-932,-1297,-1412,-1942,-1973,-2410,-2501,-2503], -[0,-5922,-6597,-4055,-3215,-2536,-6841,-2537,-3756,-2451,-5874,-8530,-507,-8531,-8532,-3264], -[1,3,3541], -[0,0,0,3542,10], -[0,-1029,-3162,-2363,-2319,-8533,-826], -[1,3,3544], -[0,3545,3546,3547,4], -[0,-8534,-8535,-8536,-8537,-8538,-8539,-8540,-8541,-8542,-1867,-8543,-2124,-8544,-2177,-8545], -[0,-8546,-3902,-357,-3748,-5029,-3037,-469,-3907,-470,-8547,-8548,-8549,-2917,-8550,-726,-767,-932,-8551,-4848,-8552, --8553,-1335,-1435,-5265,-1464,-8554,-2884,-1730,-1972,-2240,-2384,-2410,-2426,-2453,-3612], -[0,-3578,-3161,-4055,-4058,-1805,-3690], -[1,3,3549], -[0,3550,3551,7,5], -[0,-262,-8555,-5335,-8556,-8557,-5336,-5337,-8558,-8559,-536,-541,-8560,-8561,-909,-928,-1026,-5344,-8562,-1645,-8563, --2383,-2410,-8564], -[0,-86,-3307,-367,-3136,-8565,-8566,-3037,-6025,-5367,-1344,-1415,-3640,-1534,-1942,-1944,-1945,-2125,-2379,-2392,-5369], -[1,3,3553], -[0,3554,3555,3556,10], -[0,-8567,-8568,-8569,-8570,-8571,-6369,-883,-1646,-8255,-2062,-8032,-2243,-8572,-8057,-8573,-2322,-2347], -[0,-5834,-515,-516,-932,-1365,-1777,-2156], -[0,-2319,-8574,-4004,-8575,-8576,-3240], -[1,3,3558], -[0,3559,3560,7,5], -[0,-768,-8577,-1580,-1792,-1961,-8578,-2594], -[0,-23,-824,-1059,-1168,-1174,-1201,-1243,-1361,-1417,-1632], -[1,3,3562], -[0,28,3563,3564,9], -[0,-21,-23,-40,-41,-3470,-3471,-8579,-5859,-8580,-553,-796,-932,-933,-1534,-1650,-2174], -[0,-8581,-8582,-8583,-8584,-3098,-8585,-3100,-3482,-2006,-8586,-8587,-5066,-3578,-8588,-8589,-8590,-8591,-8592,-8593, --8594,-8595,-8596,-8597,-8598,-8599,-8600,-8601,-8602,-8603,-8604,-8605], -[1,3,3566], -[0,39,3567,3568,4], -[0,-21,-23,-38,-40,-41,-42,-3326,-350,-351,-3267,-407,-409,-2622,-3136,-3040,-3052,-427,-428,-708,-726,-767,-932,-934, --940,-7476,-958,-959,-969,-970,-1415,-2006,-2019,-2082,-2127,-2140,-2375,-2387,-2410], -[0,-8606,-3100,-8607,-2074], -[1,3,3570], -[0,3571,0,3572,8], -[0,-8608,-8609,-8610,-5140], -[0,-4213,-1334,-4215,-3634,-4216,-8611], -[1,3,3574], -[0,3575,0,3576,10], -[0,-8612], -[0,-8613,-1038,-6768,-8614,-510,-5921,-8615,-6309,-1961], -[1,3,3578], -[0,75,3579,3580,4], -[0,-3037,-3665,-510,-1344,-1534,-2410,-2466,-6859,-2469], -[0,-1039,-4111,-8616,-8617,-5514], -[1,3,3582], -[0,3583,14,3584,9], -[0,-6861], -[0,-4112,-687,-7095,-3958,-8132,-8618,-8619,-8620,-1040,-8621], -[1,3,3586], -[0,205,3587,48,4], -[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-1344,-1415,-1534,-1623,-1771,-1942,-2251,-2437, --2501], -[1,3,3589], -[0,0,3590,3591,8], -[0,-21,-23,-4691,-3356], -[0,-8622,-8623,-8624], -[1,3,3593], -[0,3594,3595,3596,4], -[0,-8625,-8626,-8627,-8628], -[0,-8629,-3037,-519,-8630,-1100,-8631,-2384,-2541], -[0,-1640,-6656,-8038,-8632,-5409,-6527,-5094,-8633,-8634,-6855,-8635,-8636,-6659,-7440,-1391,-8637,-8638,-8639,-7863, --7304,-640,-6438,-8640,-7715,-8641,-8642,-5315,-8643,-8644,-8645,-8646,-8647,-8648,-8649,-8650,-8651,-1992,-8652,-8653, --8654,-8655,-8656,-8657,-5408,-2323,-8658,-8659,-7345,-8660,-7860,-8661,-8662,-8663,-8664,-8665,-8666,-8667,-8668,-8669, --8670,-8671,-8672,-8673, --8674,-8675,-6528,-8676,-8677,-5953,-8678,-8679,-8680,-8681,-8682,-8683,-8684,-8685,-8686,-8687,-8688,-3742,-8689,-8690, --8691,-8692,-8693,-8694,-8695,-8696,-8697,-8698,-8699,-8700,-8701,-8702,-8703,-8704,-2534,-8705,-8706,-8707,-8708,-8709, --8710,-8711,-8712,-8713,-8714,-6597,-8715,-8716,-4771,-8717,-8718,-8719,-6042,-8720,-8721,-8722,-8723,-8724,-8725,-8726, --8727,-8728,-8729,-8730, --8731,-8732,-8733,-8734,-8735,-8736,-8737,-8738,-8739,-8740,-8741,-8742,-8743,-8744,-8745,-8746,-8747,-8748,-8749,-8750, --8751,-8752,-8753,-5316,-8754,-8755,-8756,-8757,-7557,-8758,-8759,-8760,-8761,-8762,-8763,-8764,-8765,-8766,-7711,-8767, --8768,-8769,-8770,-8771,-8772,-8773,-8774,-8775,-8776,-8777,-8778,-8779,-8780,-8781,-8782,-8783,-8784,-8785,-8786,-8787, --8788,-8789,-8790,-8791, --8792,-8793,-6695,-8794,-8795,-8796,-7349,-8797,-8798], -[1,3,3598], -[0,0,3599,3600,9], -[0,-3266,-516,-652,-932,-1344,-1654,-2127], -[0,-6656,-1044,-8799,-8800,-8801,-651,-834], -[1,3,3602], -[0,3603,81,7,6], -[0,-812,-907,-929,-1800,-1840,-2255], -[1,3,3605], -[0,3606,3607,3608,5], -[0,-1871,-5907], -[0,-2541,-519,-824,-2384,-2331], -[0,-3324,-7421,-6491,-5573,-7282], -[1,3,3610], -[0,3611,3612,3613,4], -[0,-8802,-8803], -[0,-519,-7408,-2331,-2384,-2541], -[0,-5573,-8804,-1047,-5504,-8805,-8806,-6656,-7282,-5572,-5897,-2114,-8807,-6370,-7420,-7421,-2487,-8808,-1847], -[1,3,3615], -[0,3616,3617,3618,4], -[0,-8809,-1393,-1639,-8810], -[0,-932,-937,-966,-1001,-8811,-1654,-1759,-1788,-2114], -[0,-6656,-5573,-1047,-5504,-1107,-5572,-5574,-2114,-7282], -[1,3,3620], -[0,3621,3622,3623,4], -[0,-8812,-8813,-8814,-8815,-8816,-8817,-8818,-8819,-8820,-8821,-8822,-8823,-8824,-8825,-8826,-8827,-8828,-8829,-8830, --8831,-8832,-8833,-8834,-8835,-8836,-8837,-8838,-8839], -[0,-1168,-2127,-2410,-1244,-1252,-2143,-3266,-2134,-350,-2139,-2142,-351], -[0,-3173,-7685,-8840,-1050,-8841,-6005,-6187,-8842], -[1,3,3625], -[0,3626,3627,3628,10], -[0,-8843,-8831,-8844,-3037,-8845,-1025,-8846,-1465,-8847,-1730,-2446], -[0,-8848,-8824,-8825,-8849,-262,-8850,-3035,-4269,-8851,-3850,-3044,-5686,-3621,-4624,-8852,-8853,-4372,-3625,-3738,-427, --428,-581,-664,-665,-3629,-668,-677,-824,-932,-8854,-1168,-1199,-1208,-1261,-8855,-1548,-1646,-1654,-1693,-1722,-1771, --1788,-2105,-2106,-2150,-2210,-2211,-2379,-2410,-2550], -[0,-8856,-7685,-8840,-8841,-3173], -[1,3,3630], -[0,3631,0,3632,10], -[0,-8857,-8858,-8859,-8860,-8861,-8862,-4106,-8863,-458,-469,-470,-501,-8864,-617,-679,-8865,-695,-713,-719,-728,-754, --767,-769,-790,-8866,-8867,-8868,-1004,-1044,-1069,-1077,-1087,-8869,-1107,-8846,-1353,-1442,-1465,-1526,-8870,-1548, --8871,-1610,-6294,-1640,-1645,-1676,-1729,-1805,-1816,-3447,-1857,-8872,-8873,-1888,-1959,-8874,-2122,-2177,-8875,-8876, --8877,-8878, --4356,-2359,-8879,-8880,-8881,-2446,-2520,-2522,-2531,-2548,-2564,-8882], -[0,-8883,-687,-8884,-5801,-8885,-1050,-8841,-6224,-8886], -[1,3,3634], -[0,3635,86,3636,9], -[0,-8887,-668,-831,-8888,-8889,-2001], -[0,-7416,-5897], -[1,3,3638], -[0,3639,3640,7,5], -[0,-3048,-8566,-8890,-1077,-8891,-2488], -[0,-3037,-2125,-2319,-2410], -[1,3,3642], -[0,0,86,3643,5], -[0,-1055,-4055,-5841,-8892,-2239,-7208,-8893], -[1,3,3645], -[0,3646,206,3647,5], -[0,-812,-926,-1077,-1548,-2359], -[0,-7871], -[1,3,3649], -[0,0,3650,3651,4], -[0,-23,-36,-6064,-40,-8894,-3048,-3036,-3136,-4964,-3037,-8336,-551,-679,-756,-1077,-1107,-1415,-1942,-2125,-2127,-2128, --8895,-8896,-2141,-2334,-2375,-2379,-2387,-2410], -[0,-3214,-4224,-4120,-4121,-4123,-4122,-8897], -[1,3,3653], -[0,3654,3655,3656,9], -[0,-8898,-668,-1038,-1381,-1531,-1758,-6467,-1965,-2177,-2246,-8899,-6007], -[0,-664,-756,-932,-1405,-8900,-1654,-1939,-1972,-2210], -[0,-8901,-8902,-8903,-8904,-8421,-5550,-6836,-8905,-8906,-5921,-8907,-8908,-8427,-5801,-8909], -[1,3,3658], -[0,0,0,3659,4], -[0,-5732,-687,-8425,-7304,-5411,-4038,-8038,-8910,-7440,-7144,-3214,-3756,-8911], -[1,3,3661], -[0,3662,3663,3664,11], -[0,-2997,-8912,-8913,-1889,-2318], -[0,-23,-40,-3559,-8914,-8915,-427,-428,-518,-534,-749,-753,-767,-778,-779,-784,-932,-940,-967,-8916,-1041,-8917,-1643, --1771,-1942,-8918,-4245,-2200,-2233,-2275,-2335,-2376,-2410,-2501,-2503,-2505,-8919,-2552], -[0,-1060,-2410,-3214,-2501,-3264,-775,-5511,-8920,-2316,-7287,-8921,-8922,-8923,-8924,-7287,-8925,-7288,-7289,-8926,-7294, --8927,-8928,-7297,-7293,-7292,-7296,-8929,-932,-1942,-8930,-985,-8931], -[1,3,3666], -[0,3667,3668,3669,4], -[0,-510,-2518], -[0,-1788,-1446,-1654,-2198], -[0,-8932], -[1,3,3671], -[0,3672,3673,3674,4], -[0,-8933,-1033], -[0,-23,-534,-7747,-824,-1168,-1174,-1201,-1208,-1243,-1266,-1361,-1415,-1419,-1792,-2006,-8934,-2019,-2463,-2501,-7752], -[0,-1062,-2006,-4038,-8935], -[1,3,3676], -[0,0,3677,3678,4], -[0,-725,-932,-1004,-8936,-1654,-1788], -[0,-1334,-1342,-2435,-8937,-3323,-8938,-3590], -[1,3,3680], -[0,0,0,3681,9], -[0,-3827,-3837,-3838,-3167,-3827,-620], -[1,3,3683], -[0,3684,3685,7,11], -[0,-8050], -[0,-2832,-5834,-8084,-8939,-8096,-516,-932,-1777,-1788,-2322], -[1,3,3687], -[0,3688,3689,3690,11], -[0,-510,-8940,-702,-8941,-714,-1650,-2520,-8942,-8943,-1953,-728,-995,-1792,-8944], -[0,-664,-2471,-1654,-932,-1666,-8945,-2105,-1942,-8946,-940,-967], -[0,-687,-8947,-8948,-3674], -[1,3,3692], -[0,3693,3694,3695,8], -[0,-22,-668,-679,-755,-823,-1077,-1623,-1645,-8949,-2168,-2177,-2321], -[0,-3307,-7040,-3842,-3472,-7041,-7042,-8355,-7080,-3048,-3136,-4049,-8566,-3637,-3037,-8890,-3199,-427,-428,-721,-767, --932,-958,-966,-967,-4650,-1344,-1415,-8950,-1421,-1456,-8951,-1534,-1658,-1942,-2125,-2174,-2269,-2375,-2410,-2501], -[0,-2501,-3862,-2410,-8952,-2376,-2501,-8423,-5922], -[1,3,3697], -[0,3698,3699,3700,5], -[0,-6008,-668,-679,-1548,-1639,-1645,-2114,-2321], -[0,-8953,-7202,-3044,-4036,-8566,-3037,-3200,-3046,-664,-778,-932,-1344,-1405,-1534,-1654,-1658,-1660,-1942,-2125,-2210, --2376,-2388,-2389,-2410,-2476,-2477,-2481,-2485,-2501], -[0,-2501,-3862,-2410,-8038,-7144,-8170,-8423,-5922,-6188,-2376,-520,-8954,-7172], -[1,3,3702], -[0,3703,3704,7,6], -[0,-8955,-8956,-8957,-1285,-1641], -[0,-5834,-516,-633,-8958,-756,-769,-932,-8959,-8960,-1070,-1365,-8961,-1405,-8962,-8963,-6058,-1939,-1978,-2105,-2125, --2177,-2322], -[1,3,3706], -[0,3707,3708,3709,4], -[0,-1801,-8964,-8965], -[0,-1501,-1788,-1415,-932,-2127,-1004,-1942,-2293,-8966,-958,-3234,-940,-967,-350,-8967,-934,-351,-8968], -[0,-6463,-4053,-6582,-1985,-8969,-4055,-8970,-6656], -[1,3,3711], -[0,3712,3713,3714,9], -[0,-5220,-823,-1311,-1548,-1549,-2798,-8971,-2387], -[0,-409,-3044,-3040,-3052,-4972,-8972,-2006,-2019,-8973,-2410,-3612], -[0,-1071,-4053,-4054,-2006,-2019,-3322,-8974,-3926,-8975,-3926,-8976,-8977], -[1,3,3716], -[0,0,3717,3718,6], -[0,-1654,-932,-1405,-589,-585,-966,-958,-968,-943,-963,-974], -[0,-1072,-1334,-8978,-3324], -[1,3,3720], -[0,3721,3722,3723,4], -[0,-668,-3606,-2267], -[0,-527,-528,-534,-545,-560,-932,-949,-1001,-1415,-1626,-2501], -[0,-8979,-8980,-2501,-3862], -[1,3,3725], -[0,3726,3727,3728,4], -[0,-1442], -[0,-627,-8981,-756,-1405,-2250,-2322,-2568], -[0,-2548,-8982,-8983], -[1,3,3730], -[0,3731,3732,3733,8], -[0,-1119,-1462,-8984], -[0,-8985,-5726,-1646,-1654,-1788,-1972,-8986,-2250], -[0,-1076,-6656,-8801,-6351,-7421,-8987,-1650,-8988,-8989,-7371,-4055,-2059,-6234,-8987,-6693,-6694,-2363,-8990,-5554, --8991,-6932,-1961], -[1,3,3735], -[0,124,3736,3737,4], -[0,-3035,-3048,-3621,-3037,-664,-1077,-1405,-1654,-1788,-1942,-1948,-8992,-2379,-2410], -[0,-1076,-8801], -[1,3,3739], -[0,3740,3741,3742,4], -[0,-8993,-1077,-1693,-8994], -[0,-3048,-3623,-1654,-925,-2148,-615,-2517,-1980], -[0,-1961,-1076,-6656,-8801], -[1,3,3744], -[0,0,3745,3746,5], -[0,-1733], -[0,-1080,-8995], -[1,3,3748], -[0,3749,3750,7,11], -[0,-1650,-2125,-1370,-1119], -[0,-2319,-2250], -[1,3,3752], -[0,3753,0,3754,8], -[0,-2543,-2062], -[0,-1082,-3323,-6931], -[1,3,3756], -[0,0,3757,3758,5], -[0,-5834,-515,-516,-932,-1788,-2156,-2322], -[0,-5924,-6557,-8108,-6444,-7163,-8996], -[1,3,3760], -[0,0,3761,3762,4], -[0,-21,-23,-32,-36,-3367,-40,-42,-86,-3307,-8997,-3326,-351,-3561,-8998,-8999,-9000,-9001,-8219,-2716,-2717,-534,-932, --940,-1344,-9002,-1942,-2104,-2127,-2132,-2251,-2334,-2410,-2469,-2816,-9003], -[0,-1087,-7282,-9004], -[1,3,3764], -[0,0,3765,3766,11], -[0,-3748,-3268,-427,-428,-367,-589,-932,-943,-948,-958,-965,-968,-1344,-2391], -[0,-7314,-3578,-1334,-3844,-9005,-3445,-3161], -[1,3,3768], -[0,0,0,3769,8], -[0,-1087,-7282,-7724,-9006,-9007], -[1,3,3771], -[0,3772,3773,3774,6], -[0,-9008], -[0,-510,-1127,-9009,-1132,-1144,-1146,-2125,-2176], -[0,-2490,-1107], -[1,3,3776], -[0,0,3777,7,6], -[0,-2410,-3037], -[1,3,3779], -[0,3780,3781,3782,5], -[0,-668,-2562,-2523,-2557], -[0,-1127,-1131,-9010,-9011,-1542,-2425,-1144,-1151], -[0,-2557,-3970,-3161,-3095,-3577,-3994,-475], -[1,3,3784], -[0,3785,3786,3787,5], -[0,-668,-2218,-2562,-1548,-9012,-2557,-2425], -[0,-1693,-888,-664,-622,-1654,-2210,-932,-1650,-615,-1405,-719,-2211,-769,-1440,-665,-2070,-1657], -[0,-2557,-475,-1168,-9013,-9014,-620,-478,-9015,-2162,-1521,-3184,-525,-9016,-2410,-711,-1409,-9017,-2501,-932], -[1,3,3789], -[0,3790,3791,3792,4], -[0,-1116,-1107,-2562,-727,-1548,-689,-9018,-9019,-2557], -[0,-888,-932,-1412,-1077,-9010,-9011,-958,-9020], -[0,-2557,-3970,-3100,-3994,-9021,-3095,-5574,-9022], -[1,3,3794], -[0,0,3795,3796,5], -[0,-3037,-932,-940,-967,-968,-1942,-2319,-2410], -[0,-9023,-9024,-7329], -[1,3,3798], -[0,0,3799,3800,10], -[0,-5325,-3037,-3899,-9025,-1942,-2200,-9026,-2410,-2469], -[0,-5925,-3262,-9027,-9028,-9029,-5112,-6917,-9030], -[1,3,3802], -[0,0,3803,7,11], -[0,-21,-23,-40,-42,-3470,-3471,-7041,-3136,-3037,-427,-428,-9031,-9032,-528,-533,-534,-8167,-932,-940,-948,-951,-958,-967, --969,-970,-972,-978,-1344,-9033,-1415,-1534,-1942,-2125,-2174,-9034,-2410,-2501,-2503], -[1,3,3805], -[0,0,3806,7,4], -[0,-9035,-9036,-9037,-9038,-1788], -[1,3,3808], -[0,0,115,3809,5], -[0,-7458,-5573,-9039,-1888,-9040,-9041,-9042,-729,-1805,-5149,-9043,-9044,-6555,-9045,-9046], -[1,3,3811], -[0,0,3812,3813,4], -[0,-3037,-826,-2541], -[0,-9047,-3972,-8428,-9048,-640,-5827,-1958,-2059], -[1,3,3815], -[0,3816,3817,3818,9], -[0,-9049,-1399], -[0,-3037,-519,-9050,-9051,-8877,-2384,-2541], -[0,-9052,-5827,-1961,-9048,-2265,-5554,-640,-2059,-6582,-9053,-8800,-9054,-7208,-9048], -[1,3,3820], -[0,3821,0,3822,4], -[0,-9055], -[0,-1101,-9052,-2410,-9056,-9057], -[1,3,3824], -[0,0,3825,3826,5], -[0,-3037,-427,-428,-7636,-932,-9058,-940,-967,-7638,-9059,-1942,-7639,-2402,-2410,-7640], -[0,-9060,-9061,-9062,-9063,-9064,-9065,-1102,-9066,-9067,-8995,-9068,-3966,-9069,-3694,-2410], -[1,3,3828], -[0,3829,3830,3831,8], -[0,-510,-1111,-1077,-719,-7731,-1046,-9070], -[0,-2359,-664,-1654,-2210,-932,-9071,-9072], -[0,-5889,-1103,-1105], -[1,3,3833], -[0,3834,3835,3836,5], -[0,-5504,-9073,-9074,-9075,-1849,-9076], -[0,-528,-664,-9077,-708,-720,-796,-932,-9078,-951,-958,-964,-1654,-1658,-1788,-1972,-2174,-2210,-2211,-9079,-2449], -[0,-5889,-3322,-9080], -[1,3,3838], -[0,0,3839,3840,8], -[0,-5870,-40,-9081,-9082,-9083,-4062,-351,-3561,-3266,-4785,-664,-932,-943,-958,-966,-968,-1471,-1474,-1475,-1476,-1479, --1482,-1483,-1486,-1487,-1489,-7759,-1654,-2127,-3571,-2162,-2210,-2211], -[0,-1105,-5248,-3100,-3095], -[1,3,3842], -[0,3843,3844,7,4], -[0,-1645,-9084,-9085], -[0,-3037,-928,-1623,-1650,-1942,-2125,-2319,-2386,-2402], -[1,3,3846], -[0,3847,125,3848,9], -[0,-1393], -[0,-1107,-8807,-6817,-1847,-9086,-7421,-3956,-9087], -[1,3,3850], -[0,3851,31,7,8], -[0,-9088,-1958], -[1,3,3853], -[0,0,3854,3855,4], -[0,-6593,-519,-674,-959,-1098,-9089,-8345,-1772,-1821,-1978,-2195,-2384,-2400,-2541], -[0,-1110,-1109,-9090,-3591,-3592,-1452,-932,-9091], -[1,3,3857], -[0,3858,3859,3860,8], -[0,-8413,-1026,-1353,-7408,-2218,-8803], -[0,-3037,-519,-589,-9092,-2331,-2384,-2541], -[0,-9093,-5839,-7411,-7727,-6999,-7422,-7724,-5573,-9094,-7410,-1076,-1107,-9095,-9096,-7419,-5572,-5912,-1645,-6809, --9097,-9098,-5574,-5064,-2368,-2444,-3590,-9087,-9099,-1961,-9100,-5889], -[1,3,3862], -[0,3863,3864,3865,11], -[0,-812,-769,-9101,-9102], -[0,-510], -[0,-6524,-9103,-6527,-9104,-1355,-1112,-5845,-7450,-7378], -[1,3,3867], -[0,3868,3869,3870,4], -[0,-1729,-9105,-2387], -[0,-3037,-4201,-427,-428,-932,-9106,-958,-965,-968,-1942,-2402,-2410], -[0,-9107,-9108,-9109,-9110,-9111,-9112,-3184,-4791,-1113,-9113,-9114,-8909,-9115,-4633,-9116,-9117,-9118,-9119,-9120, --9121,-9122,-9123,-3445,-9124,-9125,-9126,-9127], -[1,3,3872], -[0,3873,3874,3875,9], -[0,-3517,-9128], -[0,-50,-3037,-427,-428,-2758,-932,-934,-935,-958,-9129,-8846,-1722,-2892,-2410,-9130,-2469], -[0,-9131,-9132,-3939,-9133,-9134,-9135,-9136,-3690,-1115,-9137,-9138,-9139], -[1,3,3877], -[0,3878,3879,3880,8], -[0,-8846,-9140], -[0,-9141,-3621,-9142,-9143,-3037,-9144,-6630,-4364,-4966,-4372,-3628,-9145,-9146,-652,-708,-767,-999,-8869,-1166,-9147, --1446,-9148,-9149,-9150,-1654,-6455,-1705,-1722,-1783,-1805,-1827,-9151,-1942,-1972,-2125,-2188,-2210,-2359,-2410,-2551], -[0,-3939,-3690,-9152,-3323,-9153], -[1,3,3882], -[0,3883,3884,3885,5], -[0,-9154,-9155,-9156,-9157,-9158,-9159,-7006,-1495,-9160,-9161,-9162,-2400], -[0,-9163,-5918,-357,-3268,-3617,-3037,-9164,-6279,-8852,-4372,-3626,-519,-523,-589,-615,-617,-652,-9165,-9166,-9167,-825, --826,-1002,-1004,-1069,-5989,-1100,-1722,-1729,-1763,-1825,-9168,-1866,-3653,-2062,-2105,-2210,-9169,-2331,-9170,-2364, --2392,-2410,-2541], -[0,-1334,-1342,-5735,-9052,-1116,-2435,-9171,-2105,-5493,-9172,-9173,-4213,-5149,-5150,-6826,-6828,-9174,-9175,-9176, --9177,-523,-2291,-1729,-9128], -[1,3,3887], -[0,0,3888,3889,4], -[0,-1168,-2218,-2127,-784,-1821,-1889,-9178,-9179,-1783,-1978,-2281,-23,-518,-1930,-1330,-3572,-40,-9180,-9181,-3326, --3266,-3561,-7189], -[0,-9182,-3100,-4189,-3110], -[1,3,3891], -[0,0,3892,3893,4], -[0,-1362,-1650,-2125,-2319], -[0,-1076,-3551,-9183,-2122,-9184,-1986,-6324,-8980,-9185,-9186,-9187,-9188,-9189,-9190], -[1,3,3895], -[0,0,0,3896,8], -[0,-1122,-9191], -[1,3,3898], -[0,33,3899,7,5], -[0,-3035,-3621,-3037,-664,-1122,-1654,-2125,-2127,-2139,-2234,-9192,-2410], -[1,3,3901], -[0,3902,0,7,9], -[0,-9193,-2387], -[1,3,3904], -[0,3905,3906,3907,8], -[0,-1442,-8493,-9194,-9195], -[0,-9196,-8491,-711,-9197,-1016,-1075,-1202,-1646,-1654,-2362,-2460,-6234], -[0,-9198,-9199,-710,-6582,-3671,-856,-7347,-9200,-9201,-1075,-9202,-3960,-3262,-1103,-5539,-3214,-3259,-3756,-4182,-1599, --9203,-1838,-3215,-6747,-9204,-5142,-3110,-2362,-2548,-3672], -[1,3,3909], -[0,3910,3911,7,9], -[0,-9205,-9206,-1551,-9073,-1696,-1969], -[0,-617,-9207,-1004,-9208,-1405,-1548,-1646,-1730,-9209], -[1,3,3913], -[0,3914,3915,3916,11], -[0,-1000,-1107,-1758,-1442,-1132,-1645,-808,-1351,-1048,-995,-9210,-9211,-9212], -[0,-9213,-2347,-9214,-1152,-9215,-1149,-1146], -[0,-4107,-510,-687,-1644,-9216,-7641,-1548,-5119,-4004,-1989,-1754,-3844,-9217,-3970,-9218,-1410,-3673], -[1,3,3918], -[0,3919,3920,3921,5], -[0,-1323], -[0,-1127,-1132,-1140,-1134,-1136,-1144,-1146,-1148,-1165,-1138], -[0,-9219,-475,-3110,-3261,-9048], -[1,3,3923], -[0,0,3924,49,4], -[0,-1127,-1159,-1131,-1163,-664], -[1,3,3926], -[0,3927,3928,3929,9], -[0,-510,-633,-9220,-1107,-1548,-2114,-2491], -[0,-1127,-1132,-1134,-1144,-1654,-2210], -[0,-9219,-633,-1127], -[1,3,3931], -[0,3932,3933,49,6], -[0,-2177], -[0,-1127,-1129,-1134,-1144,-1146,-1150,-1159,-1542], -[1,3,3935], -[0,3936,207,7,4], -[0,-1758,-9221,-6007,-1381,-9212], -[1,3,3938], -[0,3939,3940,3941,5], -[0,-510,-506,-9222,-1366], -[0,-2541,-1127,-1753,-1132,-769,-1849,-9223,-2297,-1163,-1134,-1149], -[0,-9219,-5920,-5921,-9224,-7175,-6188,-9225,-6187,-5922,-9226], -[1,3,3943], -[0,208,3944,3945,10], -[0,-1127,-9071,-1144,-1143,-1146], -[0,-9219,-6688,-7416,-6694,-6693,-824,-6695,-7417,-2125], -[1,3,3947], -[0,3948,3949,3950,8], -[0,-510,-9227,-805,-9050,-2359,-2518], -[0,-1127,-1132,-1134,-1143,-1144,-1146,-1162], -[0,-9219,-9228,-3754,-2162,-775,-7644,-3277,-5553], -[1,3,3952], -[0,3953,126,49,4], -[0,-668,-2231], -[1,3,3955], -[0,3956,3957,3958,4], -[0,-1805,-510,-1676,-729,-5763,-2186,-2187,-7006,-9229], -[0,-1127,-1144,-1143,-1146], -[0,-9219,-3844,-729,-1334], -[1,3,3960], -[0,3961,3962,49,4], -[0,-668,-9230], -[0,-1127,-1132,-1134,-1143,-1144,-1146], -[1,3,3964], -[0,3965,127,3966,5], -[0,-668,-9231,-1548,-2271], -[0,-9219,-775,-7148,-9231], -[1,3,3968], -[0,3969,127,3970,8], -[0,-668,-683,-9232], -[0,-9219,-9233,-775,-5553,-3770,-3271,-1644,-6454], -[1,3,3972], -[0,3973,126,3974,4], -[0,-668,-1948,-1323], -[0,-9219,-3264,-9234,-1644,-6454,-7175], -[1,3,3976], -[0,3977,3978,3979,8], -[0,-668,-1356,-1826,-1877,-1948,-7691,-7692,-7690,-7687], -[0,-519,-825,-1127,-2541], -[0,-9219,-6454,-8642,-6527,-5094,-9235,-8640,-1644,-7715,-3839], -[1,3,3981], -[0,3982,207,7,5], -[0,-7446], -[1,3,3984], -[0,3985,3986,49,8], -[0,-668,-9236,-1452], -[0,-1127,-1143,-1146], -[1,3,3988], -[0,3989,3990,49,6], -[0,-1521,-510,-668,-1548], -[0,-1127,-1134,-1144,-9237,-1143,-1146], -[1,3,3992], -[0,3993,3994,3995,6], -[0,-9238], -[0,-1127,-1134,-1143,-1144,-2319], -[0,-9219,-1754,-4004,-4043], -[1,3,3997], -[0,3998,127,3999,8], -[0,-510,-668,-769,-805,-2518], -[0,-9219,-3754,-2162,-775,-7644,-3277,-5553], -[1,3,4001], -[0,4002,126,49,4], -[0,-668,-9232,-9239,-2416], -[1,3,4004], -[0,4005,4006,4007,6], -[0,-1088,-510,-1548,-2353], -[0,-1127,-1132,-1153,-2425,-1144,-1143,-1146], -[0,-9219,-2490,-1540], -[1,3,4009], -[0,4010,4011,4012,4], -[0,-668,-725,-739,-1877,-1980], -[0,-1127,-1131,-1132,-1134,-1138,-1144,-1146,-1151,-9240,-9241,-1153,-1159,-1542], -[0,-1127,-9219,-739,-6908,-5887,-1573], -[1,3,4014], -[0,4015,4016,4017,10], -[0,-668,-6019,-1877], -[0,-1127,-1131,-1132,-1134,-1144,-1146,-9240,-9242,-9241,-1153,-1159,-1542], -[0,-1127,-9219,-6019,-1105,-9243,-9244,-9245,-739,-6908,-5887,-1573], -[1,3,4019], -[0,4020,4021,4022,5], -[0,-668,-932], -[0,-190,-1127,-1132,-1162], -[0,-9219,-932,-7148,-5874,-9246], -[1,3,4024], -[0,4025,4026,4027,4], -[0,-9236,-1445,-1548,-9247], -[0,-1127,-1144,-1146,-1542,-2351], -[0,-9219,-1445,-8172,-7144], -[1,3,4029], -[0,4030,4031,4032,8], -[0,-769,-1446], -[0,-1127,-1134,-1146,-1152,-2778,-1542], -[0,-9219,-1127,-856,-4100,-1446,-7674], -[1,3,4034], -[0,34,4035,4036,11], -[0,-86,-9248,-3307,-3470,-3471,-7041,-932,-943,-958,-966,-968,-974,-1003,-1127,-1131,-1149,-1150,-1151,-1152,-1159,-1344, --1471,-1475,-1479,-1482,-1542,-1654,-2174], -[0,-9219,-1471,-1127,-4004,-5119,-4043,-9249], -[1,3,4038], -[0,4039,4040,209,10], -[0,-9236,-1650], -[0,-664,-710,-1127,-1132,-9250,-1134,-1138,-1144,-9240,-9251,-9241,-9252,-1654,-2125], -[1,3,4042], -[0,208,4043,4044,10], -[0,-664,-1127,-9253,-1132,-1134,-1144,-1149,-1658,-2359,-2529], -[0,-6999,-1127,-9219,-9254], -[1,3,4046], -[0,4047,4048,4049,11], -[0,-2177,-9255,-2518], -[0,-664,-1132,-1144,-1149,-1156,-9256,-9257,-1542,-1654,-1972,-2351], -[0,-9219,-4127,-9258,-6721,-9259,-9260,-9261,-9262,-6324,-2489,-5886], -[1,3,4051], -[0,0,4052,7,10], -[0,-1127,-1131], -[1,3,4054], -[0,0,4055,4056,5], -[0,-1127,-1132,-1134,-1146,-2162,-2541], -[0,-9219,-775,-2162,-3754,-5553,-7644,-9263,-9264], -[1,3,4058], -[0,4059,4060,4061,4], -[0,-714,-1548,-1980,-9265,-9266,-5471], -[0,-1127,-1137,-1144,-1149,-1153,-9267,-1541,-1631,-8403], -[0,-9219,-1127,-5471,-4004,-1412,-1654,-1989,-9268], -[1,3,4063], -[0,4064,210,4065,11], -[0,-668,-1773,-2269], -[0,-9219,-5550,-3957,-7095,-8421,-7091,-6599,-1958,-687], -[1,3,4067], -[0,27,4068,209,9], -[0,-1127,-1144,-1654], -[1,3,4070], -[0,4071,4072,4073,11], -[0,-510,-9269,-9270,-2424,-9271], -[0,-932,-9272,-9273,-9274,-9275,-9276,-9277,-1127,-1132,-1157,-1654,-2125,-2194], -[0,-1127,-9219,-9278,-6527,-9279,-775,-9270,-7085], -[1,3,4075], -[0,4076,4077,4078,4], -[0,-668,-812,-1548,-1849], -[0,-1127,-1650,-2125,-1132,-1153,-9280,-1144], -[0,-9219,-9281,-3976,-3264,-775,-7175], -[1,3,4080], -[0,4081,4082,4083,5], -[0,-190,-427,-428,-668,-932,-940,-965,-967,-999,-1376,-1460,-1630,-1705,-1942,-2411,-2530], -[0,-9282,-7080,-3330,-3048,-3049,-9283,-3621,-9143,-3037,-4372,-3628,-9284,-652,-769,-1077,-9285,-9147,-1654,-2210,-2359, --2410], -[0,-2410,-8170,-4144,-3939], -[1,3,4085], -[0,0,4086,4087,5], -[0,-9286,-4010,-367,-7043,-9287,-3136,-3037,-8477,-4203,-932,-1415,-1730,-1942,-2125,-2293,-2410], -[0,-1167,-3578,-3161,-3967,-1334,-3690,-3445], -[1,3,4089], -[0,4090,4091,4092,6], -[0,-9288,-9179,-9289,-2462], -[0,-932,-937,-966,-1001,-1650,-1654,-1788,-2125], -[0,-7641,-5827,-4219,-9218,-3673,-6342,-9290,-9291,-5921,-9292], -[1,3,4094], -[0,4095,72,4096,4], -[0,-1187,-9293,-1208,-1451,-1570,-1597,-8390,-2347], -[0,-7841,-1168,-475,-5175,-3501,-9294,-9295], -[1,3,4098], -[0,4099,4100,4101,4], -[0,-7850,-305,-994,-1199,-1243,-9296,-1267,-1650,-1875,-1959,-7881,-2125,-2177,-2330,-2460,-2462], -[0,-1178,-1654], -[0,-7841,-9297,-5550,-9298,-891,-1105], -[1,3,4103], -[0,4104,4105,4106,4], -[0,-518,-1236,-1889,-2464], -[0,-519,-1252,-1825,-2460,-2541], -[0,-7841,-518,-1889,-775,-5899,-9299,-3271,-9263,-9300], -[1,3,4108], -[0,4109,4110,4111,4], -[0,-3698,-479,-671,-1022,-9301,-1641,-1876,-2460], -[0,-664,-9302,-932,-1168,-1243,-1654,-1942], -[0,-7841,-5817,-5940,-8403], -[1,3,4113], -[0,4114,0,4115,4], -[0,-9303,-9304,-994,-1640,-1959,-1986,-9305,-2460,-2462,-2550], -[0,-7841,-5800,-8624,-6005], -[1,3,4117], -[0,4118,4119,4120,6], -[0,-2347,-2103,-1876,-2464], -[0,-2541,-1654,-2460,-1939,-23,-1252,-3352,-3362,-3373], -[0,-7841,-525,-3186,-4795,-8165,-6434,-9306,-9307,-4132,-9308,-9309,-3214,-3116], -[1,3,4122], -[0,4123,211,4124,5], -[0,-1236], -[0,-7841,-9310,-6472,-7154,-9311,-2443,-9312,-9313,-9314], -[1,3,4126], -[0,4127,4128,4129,4], -[0,-479,-622,-1022,-1376,-1876,-2347,-2460,-2487], -[0,-664,-994,-9315,-1220,-1231,-1452,-1654,-2125,-2210,-2211,-2261], -[0,-7841,-622], -[1,3,4131], -[0,4132,4133,4134,5], -[0,-633,-1266,-634,-2062,-2347], -[0,-1654,-664,-6398], -[0,-7841,-7419,-633], -[1,3,4136], -[0,212,4137,4138,4], -[0,-1654,-2460], -[0,-1168,-7841], -[1,3,4140], -[0,4141,72,4142,10], -[0,-9316,-1876,-9317,-2177,-2347], -[0,-1168,-6453,-2177,-7841,-9318,-9319,-9320,-9321], -[1,3,4144], -[0,4145,0,4146,8], -[0,-44,-9322,-753,-9323,-1876,-2347,-2460], -[0,-7841,-1168,-3324], -[1,3,4148], -[0,4149,4150,36,4], -[0,-2347,-1554], -[0,-1654,-2460,-2198], -[1,3,4152], -[0,4153,4154,4155,9], -[0,-9324,-1236,-2363], -[0,-519,-668,-824,-1040,-1100,-1168,-2460,-2541], -[0,-7841,-6656,-6999,-9325,-9254,-9326,-9327,-9328,-4123,-9329,-9330,-3324,-9331,-9332], -[1,3,4157], -[0,4158,114,4159,6], -[0,-1022,-1876,-2125,-2347,-2460], -[0,-7841,-6688,-6694,-6693], -[1,3,4161], -[0,4162,4163,4164,6], -[0,-683,-1876,-2347,-2464], -[0,-664,-9077,-756,-1004,-1022,-1168,-1187,-1243,-1248,-1252,-1654,-1788,-2460], -[0,-775,-6688,-1644,-9216,-683,-9333,-1229,-1184,-7841,-7419], -[1,3,4166], -[0,4167,213,36,10], -[0,-711,-1876,-2103,-2347,-2464], -[1,3,4169], -[0,4170,4171,4172,8], -[0,-1266,-2347,-2518], -[0,-756,-824,-1168,-1220,-1223,-1224,-1228,-1231,-1351,-9334,-1597,-1654,-2198], -[0,-1168,-7841,-9228,-3754,-2162,-775,-7644,-3277,-5553], -[1,3,4174], -[0,4175,4176,36,4], -[0,-2460,-2347,-6193], -[0,-1168,-1654,-2198,-1405,-7035,-2261,-1252,-1657], -[1,3,4178], -[0,4179,128,4180,4], -[0,-1554,-9335,-1876,-9336,-9337,-9338,-2347,-2460], -[0,-7841,-9048,-775,-6024,-1631,-9339], -[1,3,4182], -[0,4183,128,4184,9], -[0,-2347,-1266,-1376,-834], -[0,-7841,-3976,-9340,-9341,-3959,-3955,-9342], -[1,3,4186], -[0,4187,4188,4189,4], -[0,-2178,-729,-2353,-1022,-1597,-479,-2186,-2187,-9229], -[0,-1168,-1654,-2293,-1254,-710], -[0,-7419,-729,-1540,-9343,-3844], -[1,3,4191], -[0,214,4192,4193,4], -[0,-1168,-1415,-1942,-9078], -[0,-7841,-6351,-1168], -[1,3,4195], -[0,4196,4197,4198,4], -[0,-479,-9344,-1022,-1876,-2347], -[0,-1452,-1654,-2460], -[0,-7841,-775,-9344,-7148,-8170,-3277], -[1,3,4200], -[0,4201,4202,4203,4], -[0,-2460,-9231,-9345,-2347,-1022,-1876], -[0,-1788,-1654,-2210,-932,-2125,-2198,-756,-9346,-9347,-968,-943,-974,-942], -[0,-9231,-7841], -[1,3,4205], -[0,4206,4207,4208,4], -[0,-784,-6829,-1876,-1792,-2464], -[0,-2322,-2460,-2320,-1252], -[0,-784,-1644,-6059,-7192,-7193,-775,-7841,-1889], -[1,3,4210], -[0,4211,4212,4213,4], -[0,-2746,-1876,-2464], -[0,-2322,-2460,-2320], -[0,-7841,-1644,-775], -[1,3,4215], -[0,4216,4217,4218,5], -[0,-1876,-2347,-8899], -[0,-1452,-1980,-2198,-2460], -[0,-7841,-6582,-4055,-1168], -[1,3,4220], -[0,4221,4222,4223,9], -[0,-932,-1022,-1876], -[0,-1168,-1654,-2460,-2198,-1405,-528,-9348,-9349], -[0,-7841,-932,-1168,-8980,-9350,-7440,-6916,-707,-4144,-3756,-3214,-4107,-7148,-3862], -[1,3,4225], -[0,4226,4227,4228,8], -[0,-1460,-2460,-1015,-9351,-2347,-1876,-725,-9352], -[0,-1168,-1654,-2198,-1405,-1599], -[0,-7841,-6656,-9353,-8276,-1168,-3862], -[1,3,4230], -[0,4231,4232,4233,6], -[0,-2218,-1686,-1876,-9354,-9355], -[0,-2541,-519,-1168,-2460,-1825], -[0,-7841,-7724,-1353,-6656,-6999,-5572,-1645,-1107,-9095,-2460], -[1,3,4235], -[0,215,72,4236,5], -[0,-7841,-8395,-2239,-8423,-9356,-9357,-6917,-1168], -[1,3,4238], -[0,214,4239,4240,4], -[0,-1168,-1654,-2460,-2198,-1939,-933], -[0,-7841,-1168,-5841,-9358,-1847], -[1,3,4242], -[0,4243,27,4244,4], -[0,-9359,-2102,-9360,-2347], -[0,-6146,-3276,-4144,-1168,-7841,-1599,-3437,-3862,-9361,-3240,-2102], -[1,3,4246], -[0,4247,4248,4249,8], -[0,-668,-1266,-9362,-9363,-1792,-6370,-1877,-2347], -[0,-9364,-1849], -[0,-7841,-1082,-9362,-6656,-6999,-6931,-8576,-3844,-3323,-7764,-8901,-8902], -[1,3,4251], -[0,4252,4253,4254,4], -[0,-9365,-2125,-2462,-1266,-9366,-2062], -[0,-1654,-2460,-932,-1405,-9367,-1746,-1119,-1574,-9368,-9369], -[0,-5889,-5737,-5890,-9370,-8901,-8902,-8403,-9204,-3258,-1168,-7841,-1103,-841,-1105], -[1,3,4256], -[0,4257,4258,4259,5], -[0,-9371,-1022,-1548,-1876,-2109,-9372,-2460], -[0,-932,-1654,-1660,-2125,-2198], -[0,-1168,-5889,-9373,-7841,-9321], -[1,3,4261], -[0,4262,4263,4264,9], -[0,-479,-651,-1022,-1876,-9374,-2347], -[0,-1168,-1183,-1199,-1224,-1231,-1243,-7832,-1268,-1453,-1654,-9375,-2198], -[0,-6454,-7841,-6826], -[1,3,4266], -[0,4267,4268,4269,5], -[0,-1276,-1876,-2103,-2347], -[0,-2460,-1168,-1187,-9376,-9377,-9378,-1654,-9379,-2198], -[0,-7841,-1276], -[1,3,4271], -[0,4272,4273,4274,4], -[0,-6193,-1548,-1597,-2347], -[0,-664,-1168], -[0,-5147,-7841,-9380], -[1,3,4276], -[0,4277,4278,4279,10], -[0,-702,-2218,-615,-2461,-1792,-2062], -[0,-1654,-2460,-1405,-1266,-9348,-725,-9381,-2463], -[0,-7841,-3264,-8276], -[1,3,4281], -[0,4282,4283,4284,8], -[0,-2347,-1876,-1323], -[0,-1168,-1654,-2460,-1202], -[0,-3276,-1168,-7841,-9382,-3264,-9383,-6059,-6684,-1644], -[1,3,4286], -[0,4287,4288,4289,5], -[0,-4091,-9384,-7837,-9385,-9386,-9354,-9387,-9388,-9389], -[0,-1168,-1415,-932,-2125,-9390,-4010,-1942,-367,-7043,-190,-720,-9391,-2410,-9392,-4007,-9393,-2411,-959,-940,-967,-796, --740], -[0,-7841,-1168,-3167,-3827], -[1,3,4291], -[0,4292,4293,4294,9], -[0,-2347,-9394,-9395], -[0,-1654,-1452,-1650,-2125,-2198,-2462,-1119,-908,-9396], -[0,-7841,-8978,-9397,-9398], -[1,3,4296], -[0,4297,4298,4299,11], -[0,-2347,-9394], -[0,-1452,-1654,-2198], -[0,-7841,-7724,-1645,-9353,-9399,-1199], -[1,3,4301], -[0,4302,4303,36,4], -[0,-510,-1548,-9400,-2347], -[0,-1112,-1168,-1183,-1231,-1224,-2150,-1453], -[1,3,4305], -[0,4306,4307,4308,4], -[0,-668,-1236,-1356,-1877,-1948], -[0,-519,-1357,-9401,-2460,-2541], -[0,-7841,-1356,-6527,-5094,-8634,-8635,-1644,-6684,-6454,-7715,-8640,-9235,-8642,-3839], -[1,3,4310], -[0,4311,4312,36,8], -[0,-479,-994,-1107,-1876,-2231,-2270,-2460,-2464], -[0,-1168,-1252,-1654,-2198,-2261], -[1,3,4314], -[0,4315,4316,4317,4], -[0,-506,-2347,-1022,-479,-9402,-1876,-9374,-930], -[0,-2541,-1344,-1654,-2460,-2198,-9403,-994,-86,-2174,-9404], -[0,-7841,-9405,-9406,-9407,-9408,-9409], -[1,3,4319], -[0,4320,4321,4322,4], -[0,-9410,-1876,-2347], -[0,-528,-756,-994,-1168,-1197,-1231,-1654,-1788,-2460], -[0,-7841,-9339,-775,-3264,-7920], -[1,3,4324], -[0,4325,4326,4327,9], -[0,-805,-1266,-9411,-1827,-2347,-2518], -[0,-664,-1654,-2251,-2541], -[0,-7841,-622,-1764,-1380], -[1,3,4329], -[0,4330,4331,4332,9], -[0,-1405,-9412,-1548,-1876,-2347,-2464], -[0,-1168,-1231,-1252,-9413,-1452,-1654,-2125,-2460], -[0,-7841,-4005,-1405,-9414], -[1,3,4334], -[0,4335,4336,4337,10], -[0,-1266,-1409,-2347], -[0,-1168,-2319,-1224], -[0,-1409,-7841,-5827,-7644], -[1,3,4339], -[0,4340,4341,4342,10], -[0,-506,-1412,-9415,-1876,-2347], -[0,-1168,-2460], -[0,-3440,-3161,-7841,-1412,-1989,-4043,-4679,-2319,-4873,-4004,-3634,-5119], -[1,3,4344], -[0,4345,4346,4347,4], -[0,-1445,-1876,-2347,-2350], -[0,-2261,-7423,-2460], -[0,-7841,-1445,-3214,-3217,-3756,-707,-5553,-5874,-7148,-3272,-7440,-7144], -[1,3,4349], -[0,4350,4351,36,8], -[0,-1548,-1645,-1876,-9345,-2347], -[0,-1168,-1452,-1654,-2198,-2460], -[1,3,4353], -[0,4354,4355,4356,5], -[0,-823,-831,-1440,-1876,-2347], -[0,-932,-937,-1168,-1654,-2198,-2460], -[0,-7841,-1168,-4055], -[1,3,4358], -[0,4359,4360,4361,5], -[0,-1521,-1792,-1876,-2103,-2347,-2464], -[0,-1452,-1654,-2198,-2460], -[0,-7841,-1168,-1521], -[1,3,4363], -[0,4364,4365,4366,8], -[0,-668,-812,-2460,-2353,-1022,-1550,-2062], -[0,-1654,-2210], -[0,-7841,-1540], -[1,3,4368], -[0,4369,4370,4371,5], -[0,-9416,-2114,-1022,-1639,-1048,-9417,-9418], -[0,-1654,-2210,-932,-1972,-9419,-965,-966,-958,-968,-943,-974], -[0,-7419,-1168,-4792,-6994,-9420], -[1,3,4373], -[0,4374,4375,7,10], -[0,-683,-1266,-1792,-2062,-9421,-2464], -[0,-664,-1654,-2460,-932,-1405,-1254,-9348,-1252,-9422,-9381,-9369], -[1,3,4377], -[0,4378,4379,4380,4], -[0,-7173,-2347,-1266], -[0,-664,-1168,-1654], -[0,-7841,-1644,-7175,-7192,-6454,-3264,-7173], -[1,3,4382], -[0,4383,211,4384,5], -[0,-805,-999,-1236,-1654,-2297], -[0,-7841,-1654,-4004,-3634,-5119,-3161,-4043,-4873,-3440,-1989,-4679,-2319], -[1,3,4386], -[0,4387,4388,4389,10], -[0,-9423,-1107,-1876], -[0,-664,-1168,-1654,-2460,-932,-1658,-9072], -[0,-1168,-7841,-9254,-9329], -[1,3,4391], -[0,4392,72,4393,5], -[0,-9424,-1631,-9425,-1876,-2347,-2464], -[0,-7841,-475,-5175,-4668,-9425], -[1,3,4395], -[0,4396,4397,4398,11], -[0,-714,-1168,-1753], -[0,-710,-1224,-1231,-8419,-1452,-2198], -[0,-1168,-1753,-9426,-3844,-9427,-8442,-2490,-7419,-7841], -[1,3,4400], -[0,4401,4402,4403,10], -[0,-1548,-2347,-1022,-479,-1750,-1876,-1737], -[0,-1168,-1654,-2460,-2198,-1237], -[0,-7841,-9258,-1168,-4127,-6863,-9428,-9429,-9262,-9430,-6721], -[1,3,4405], -[0,4406,4407,4408,4], -[0,-7837,-668,-9431], -[0,-519,-1825,-2410,-2460,-2541], -[0,-1168,-3862,-8112,-8113], -[1,3,4410], -[0,4411,4412,36,9], -[0,-668,-2347,-1022,-1876], -[0,-2541,-1168,-1654,-2198,-2346,-1405,-756,-994,-1657], -[1,3,4414], -[0,4415,4416,4417,9], -[0,-1022,-1876,-1907,-2464], -[0,-1788,-1654,-2210,-2460,-932,-1889,-1972,-1252], -[0,-7841,-1889,-9300,-775], -[1,3,4419], -[0,4420,4421,4422,4], -[0,-9263], -[0,-1654,-2987,-8065,-2460], -[0,-9432,-711,-8978,-812,-9433,-5558,-9399,-9321,-7841,-3264,-9434,-9435,-9353,-3214,-3277], -[1,3,4424], -[0,4425,4426,4427,5], -[0,-994,-1376,-1570], -[0,-507,-932,-9436,-1376,-1654,-1972,-2463], -[0,-7841,-1965], -[1,3,4429], -[0,4430,4431,4432,10], -[0,-1266,-1792,-2054,-2347,-2464], -[0,-1252], -[0,-7841,-2006,-4146,-6408,-8530,-3110,-3261,-6107,-9437,-9438,-7644], -[1,3,4434], -[0,4435,4436,4437,11], -[0,-994,-1750,-2105,-2347,-2460], -[0,-1168,-1262,-1183], -[0,-7841,-8908,-9439], -[1,3,4439], -[0,0,4440,36,10], -[0,-1168,-1252,-1597,-1654,-1942,-2198,-2460], -[1,3,4442], -[0,4443,4444,4445,9], -[0,-3037,-7837,-2551,-9440,-7622], -[0,-1654,-2460,-2198,-2379,-8255,-2410,-725], -[0,-7841,-8276], -[1,3,4447], -[0,4448,4449,4450,8], -[0,-1236,-9441,-9442,-9443,-9444,-2460,-9445], -[0,-519,-1825,-2541], -[0,-7841,-9446,-9447,-9448,-6131,-7175,-9318,-9319,-3324,-9449,-5142,-6342,-9450], -[1,3,4452], -[0,215,4453,4454,4], -[0,-994,-1199,-1245,-1654,-2460], -[0,-7841,-9446,-9448,-9318,-8276,-6342], -[1,3,4456], -[0,4457,4458,4459,5], -[0,-668,-742,-769,-805,-9451,-930,-1022,-1107,-4089,-9452,-1849,-1876,-2103,-2125,-2460], -[0,-1168,-1252,-9445], -[0,-7841,-3754,-2162,-775,-7644,-3277,-5553,-9453,-2231,-9454,-6915,-9455], -[1,3,4461], -[0,4462,4463,4464,6], -[0,-1863,-2269,-2103,-1876,-1552,-2464], -[0,-1168,-2162,-1654,-2460,-932,-2125,-9008,-1889,-7832,-1743,-518,-1238,-3572,-1252,-958,-934], -[0,-7841,-2162,-1168], -[1,3,4466], -[0,4467,0,4468,5], -[0,-510,-1266,-1792,-6370,-2246,-2347], -[0,-7841,-9456,-6656,-6999,-6931,-8576,-3844,-3323,-7764,-8901,-8902], -[1,3,4470], -[0,4471,4472,4473,5], -[0,-668,-1022,-1570,-1876,-2347,-2387], -[0,-9457,-9392,-3136,-9458,-3037,-7836,-427,-428,-756,-932,-940,-959,-1168,-1415,-1942,-2375,-2379,-2410,-2460], -[0,-7841,-1168,-5550,-3957], -[1,3,4475], -[0,4476,216,4477,10], -[0,-9459,-668,-1022,-1236,-1273,-1948], -[0,-7841,-1044,-6656,-8799,-1573,-9460,-4676,-812,-6826,-6828], -[1,3,4479], -[0,4480,4481,4482,4], -[0,-9461,-9462,-461,-742,-775,-9463,-8888,-1119,-2231,-9195,-2347], -[0,-620,-932,-937,-1001,-1168,-1187,-1212,-1226,-1228,-9464,-1405,-9381,-9465,-1654,-1792,-2125,-2460], -[0,-7841,-1168,-9466,-9455], -[1,3,4484], -[0,4485,216,4486,4], -[0,-23,-1236,-9467], -[0,-7841,-6817,-6694,-6693,-6688,-812,-7336,-4000,-1573,-5545,-3756,-3214,-3217,-3272,-987], -[1,3,4488], -[0,4489,213,4490,4], -[0,-9468,-1550,-1876,-2103,-2286,-2347,-2464], -[0,-1168,-2286,-775,-3277,-7841,-9321], -[1,3,4492], -[0,4493,4494,4495,4], -[0,-1876,-2302], -[0,-1107,-1168,-9469,-1654,-9470,-2460,-2541], -[0,-7841,-3167,-3843,-3839,-7715,-9278,-9279,-9471,-3262,-775,-2162,-1521,-2286,-3271,-9339,-3264,-9472,-9473,-9474,-1689], -[1,3,4497], -[0,4498,4499,4500,5], -[0,-1552,-1876,-2303], -[0,-21,-23,-40,-43,-519,-756,-767,-825,-1788,-1942,-2460,-2541], -[0,-7841,-1644,-3839,-2303], -[1,3,4502], -[0,4503,4504,4505,4], -[0,-674,-1022,-1876,-2460], -[0,-1045,-1168,-1217,-1654,-1978,-2187,-2210], -[0,-7841,-3839,-3167,-9278], -[1,3,4507], -[0,4508,4509,4510,9], -[0,-1236,-1548], -[0,-519,-1196,-2460,-2541], -[0,-7841,-1548,-2424,-3110,-7644,-3264,-7650,-9475,-9438], -[1,3,4512], -[0,4513,4514,4515,4], -[0,-479,-1022,-2346,-2460], -[0,-9392,-3037,-9476,-7837,-8890,-9457,-2125,-1168,-1231,-2410], -[0,-7841,-2410,-3214,-9477], -[1,3,4517], -[0,4518,4519,4520,9], -[0,-9457,-479,-1022,-1597,-1876,-2346], -[0,-9478,-3037,-9476,-1168,-1187,-1261,-2388,-2410], -[0,-1168,-2410,-3862,-3018,-7841,-7419,-2388,-8170,-7148], -[1,3,4522], -[0,4523,4524,4525,4], -[0,-2460,-2347,-2462,-2231,-479,-1876], -[0,-1168,-2125,-9479,-2410,-3037,-1187,-1208,-7837,-1237,-1632,-7836,-7838,-1252,-9480], -[0,-2410,-7841,-9481,-3018,-5058,-7644,-3116,-3185], -[1,3,4527], -[0,4528,4529,36,9], -[0,-9416,-1403,-2347,-2416,-9482,-9417,-2155,-1016,-9483,-2464], -[0,-2322,-2460,-932,-1942,-9484,-2341,-1938,-9485,-945,-978,-940,-967,-9486], -[1,3,4531], -[0,4532,122,4533,5], -[0,-1266,-1792,-9487], -[0,-7441,-775,-7841], -[1,3,4535], -[0,4536,4537,4538,5], -[0,-1107,-1187,-1876,-2347,-2460], -[0,-994,-2462,-1168,-1224,-1231,-1262,-1210,-1184,-1245,-1226,-1452], -[0,-7841,-9281,-1264], -[1,3,4540], -[0,4541,4542,4543,4], -[0,-1107,-1015,-9488,-1212,-2347,-2462,-1187,-994,-1876], -[0,-1788,-1168,-1654,-2460,-756,-9489,-1231,-1197,-1243,-528,-9490], -[0,-7841,-3264,-9408,-775,-7175,-9048], -[1,3,4545], -[0,4546,4547,7,6], -[0,-9491,-9492,-9493,-668,-808,-1022,-9416,-9417,-9494,-9495,-9496,-1570,-1646,-4091,-1792,-2103,-2347,-2460], -[0,-641,-756,-994,-1405,-9381,-1452,-9497,-1654,-2125,-2198], -[1,3,4549], -[0,4550,4551,4552,8], -[0,-1986,-2346,-2347,-2460,-2462,-2555,-9498], -[0,-1654,-2250,-2330], -[0,-1168,-7841,-9498,-9499,-5408,-8027,-2460,-9500], -[1,3,4554], -[0,4555,4556,4557,4], -[0,-479,-9501,-679,-1022,-1108,-1792,-1850,-1876,-2062,-2218,-2460,-9445], -[0,-756,-1405,-1654,-1657,-1972,-2125,-2198,-2210,-2261,-2269,-2541], -[0,-1168,-2490,-7841], -[1,3,4559], -[0,4560,0,4561,4], -[0,-1626,-2460,-2346,-2501,-1266], -[0,-7841,-2501], -[1,3,4563], -[0,4564,4565,4566,8], -[0,-729,-9229,-1266,-1402,-1750,-1805,-9502,-2186,-2187,-2347,-2353,-2490], -[0,-1654,-2293], -[0,-7841,-9343,-729,-1540], -[1,3,4568], -[0,4569,4570,4571,5], -[0,-1100,-1236,-2460,-9498], -[0,-519,-7342,-9431,-1168,-1825,-9503,-9445,-2541], -[0,-7841,-5408,-5409,-501,-6454,-724,-6656], -[1,3,4573], -[0,4574,4575,4576,5], -[0,-9271,-510,-2460,-2347,-1645,-2424,-9270,-9269], -[0,-1168,-1654,-932,-2125,-9273,-9504,-1195,-1632,-2461,-1215,-9505,-9274,-9275,-9272], -[0,-7841,-9270,-9278,-9279], -[1,3,4578], -[0,4579,4580,4581,11], -[0,-883], -[0,-519,-1825,-2384,-2541], -[0,-3994,-3673,-9506,-6826,-9507,-8799,-2265,-640], -[1,3,4583], -[0,4584,4585,4586,4], -[0,-9508,-9509,-9510,-9511,-2093,-9512,-9513,-2095,-4655,-4994,-9514,-9515,-9516,-9517,-9518,-9519,-9520,-9521,-9522, --9523,-9524,-9525,-9526,-9527,-9528,-9529,-9530,-5707,-9531,-9532,-9533,-9534,-9535,-9536,-9537,-6368,-2297,-9538,-9539], -[0,-350,-4062,-351,-3266,-827,-9540,-2127,-2250,-2322,-2331], -[0,-1599,-856,-3671,-4328,-5887,-7440,-9541,-8170,-7148,-8169,-1274,-2093,-2427], -[1,3,4588], -[0,0,4589,4590,10], -[0,-9542,-9543,-1127,-7887,-1136,-1137,-1144,-9544,-1148,-1149,-1153,-9545,-9546], -[0,-2363,-9547], -[1,3,4592], -[0,4593,4594,4595,8], -[0,-1646,-9548,-2231,-2525,-2416], -[0,-3983,-521,-534,-567,-589,-664,-9549,-726,-838,-879,-6897,-6867,-932,-940,-952,-953,-1077,-1127,-5974,-1132,-1134, --1136,-1137,-1138,-9550,-1148,-1149,-1162,-7848,-1344,-6785,-1534,-1654,-1661,-1689,-1788,-1942,-2177,-2210,-2410,-2424, --2501,-2505], -[0,-1276,-1689,-3110,-3264], -[1,3,4597], -[0,4598,4599,155,5], -[0,-1435,-9551,-619,-6508,-1309,-9552,-9553,-9554,-9555,-5400,-9556,-9557,-9558,-9559,-9560,-9561,-9562,-9563], -[0,-1510,-707,-1367,-9564,-9565,-1276], -[1,3,4601], -[0,4602,4603,4604,6], -[0,-6594,-3037,-4204,-3223,-6587,-2531], -[0,-3665,-7197,-2410,-2469,-4375], -[0,-1449,-5092,-4865,-3586,-9566,-3578,-3098,-3264,-5388,-5387], -[1,3,4606], -[0,0,14,4607,4], -[0,-8047,-7440,-6659,-6543,-5573,-9567,-687,-3958,-4378,-1958,-502,-4377,-6748,-7303,-9568,-1646,-1813], -[1,3,4609], -[0,0,4610,4611,4], -[0,-2832,-5834,-8084,-9569,-8096,-516,-753,-5835,-932,-9570,-1365,-1777,-1788,-2156,-2322], -[0,-6981,-8619,-9571,-9572,-3582,-5269,-753,-6948], -[1,3,4613], -[0,0,4614,7,5], -[0,-1452,-1453,-1548,-2322], -[1,3,4616], -[0,4617,4618,4619,10], -[0,-9573], -[0,-2832,-5834,-8084,-9574,-9575,-8096,-515,-516,-932,-993,-1365,-1659,-1777,-1788,-2156,-2322], -[0,-8047,-9576,-9577,-9578,-9579,-8047,-7153,-9580,-3214,-3217], -[1,3,4621], -[0,4622,4623,4624,8], -[0,-5334,-4231,-9581,-9582,-2768,-2771,-1619,-1839,-9583,-2429,-5358,-9584,-9585], -[0,-3037,-9586,-652,-1290,-1294,-1618,-1942,-9587,-2094,-2100,-2399,-2410,-7669,-2541], -[0,-9588,-9589,-3264,-9590,-3590,-2444,-1838,-9591], -[1,3,4626], -[0,4627,4628,4629,4], -[0,-5334,-9581,-9583], -[0,-3037,-9586,-9592,-652,-823,-2586,-1290,-1294,-1318,-9593,-1942,-2094,-2100,-2399,-2410,-7669,-2429,-2541], -[0,-6688,-9588,-9589,-3264,-9594,-7723,-3590,-2444,-9590,-2544], -[1,3,4631], -[0,4632,4633,4634,9], -[0,-5334,-4231,-9595,-2742,-5981,-9596,-9597,-4263,-1292,-2769,-2788,-1968,-2235,-2429,-9585], -[0,-3037,-652,-1294,-1942,-2094,-2100,-2399,-2410,-7669,-2541], -[0,-775,-9588,-9589,-3264,-5572,-3581,-5101,-9598,-3585,-6750,-9590,-3590,-2444], -[1,3,4636], -[0,4637,4638,4639,5], -[0,-426,-8316,-5334,-2742,-9596,-9599,-9600,-2769,-9601,-9602,-9603,-1968,-2235,-2276,-9583,-9585], -[0,-3037,-6426,-652,-9604,-5342,-989,-1294,-1618,-5204,-1619,-5205,-1942,-2094,-2100,-2399,-2410,-2429,-2541], -[0,-5888,-3217,-5210,-9588,-9589,-3264,-3214,-4146,-4147,-2083,-6408,-9590,-3590,-2444], -[1,3,4641], -[0,4642,217,4643,6], -[0,-5334,-4231,-9605,-2742,-2769,-2771,-1619,-1968,-2235,-2268,-9585], -[0,-9588,-9589,-3264,-6233,-6231,-9606,-9590,-3590,-2444], -[1,3,4645], -[0,4646,4647,4648,4], -[0,-426,-5334,-4231,-2742,-9596,-9600,-2769,-9601,-9602,-9603,-1968,-2235,-2276,-9583,-6648], -[0,-3037,-3040,-3052,-652,-928,-5343,-1294,-1942,-2006,-2019,-2094,-2100,-9607,-2399,-2410,-2541], -[0,-9588,-9589,-3264,-1940,-2006,-9608,-2299,-9590,-3590,-2444,-2476], -[1,3,4650], -[0,87,0,4651,4], -[0,-5398,-9589,-9588,-3264,-6233,-2265,-6231,-5554,-9590,-2444,-3590], -[1,3,4653], -[0,4654,217,4655,4], -[0,-5334,-4231,-2766,-9609], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-2265,-5398,-5554,-4308], -[1,3,4657], -[0,4658,4659,4660,4], -[0,-5334,-2742,-2767,-1968,-2235], -[0,-3037,-6426,-652,-9604,-9610,-5342,-1942,-2094,-2100,-9611,-2384,-2399,-2410,-2541], -[0,-5092,-6311,-9588,-9589,-3264,-9612,-2083,-9590,-3590,-2444,-9613,-9614], -[1,3,4662], -[0,4663,4664,7,8], -[0,-2487,-1276], -[0,-1788,-1654,-932,-2125,-2293,-963], -[1,3,4666], -[0,0,4667,4668,5], -[0,-6774,-1127,-1132,-1162,-6114,-1405,-1451,-1548,-6186,-1991,-2081,-9615,-2111,-9616], -[0,-2265,-3223,-8034,-3264,-6422,-6420,-4112], -[1,3,4670], -[0,4671,4672,7,4], -[0,-1696], -[0,-2195,-2319], -[1,3,4674], -[0,0,0,4675,4], -[0,-1004,-7107,-5146,-3445,-9617,-9618,-9619,-9620,-9621,-9622,-9623,-9624,-9625,-9626,-9627,-9628,-9629,-9630], -[1,3,4677], -[0,0,4678,7,9], -[0,-2303,-2125,-1942,-656,-2699,-23,-9631,-3408], -[1,3,4680], -[0,0,4681,7,11], -[0,-43,-40,-6056,-6035,-527,-21,-23,-528,-533,-856,-932,-956,-958,-959,-1415,-1417], -[1,3,4683], -[0,4684,4685,4686,5], -[0,-9632,-615,-9633,-9634,-9635,-9636,-9637,-9638,-9639,-9640,-1442,-9641,-1639,-9642,-1666,-1667,-1783,-1863,-6467,-2269, --2350,-9643,-9644], -[0,-9645,-5767,-3035,-4035,-3660,-4036,-3621,-3037,-9144,-4372,-9646,-652,-664,-674,-3542,-932,-9647,-9648,-1344,-1534, --1654,-2210,-2379,-2410], -[0,-3258,-3260,-7643,-3161,-1302], -[1,3,4688], -[0,4689,4690,7,8], -[0,-9649], -[0,-615,-633,-634,-725,-932,-1127,-1130,-1131,-1146,-1148,-1149,-1152,-9650,-1159,-1276,-1754,-2148,-9651,-2199,-2210, --7035,-9652,-2416], -[1,3,4692], -[0,0,4693,4694,4], -[0,-775,-824,-1107,-8318,-1449,-1654,-932,-1548,-2127,-2198,-2334,-683,-693,-719,-1276,-2410,-1339,-9653,-3621,-7694, --9654,-5758,-9655,-9656,-966,-4062,-9657,-958,-968,-943,-350,-428,-351,-427], -[0,-4131,-4132], -[1,3,4696], -[0,218,0,7,4], -[1,3,4698], -[0,39,0,4699,5], -[0,-1306,-8938], -[1,3,4701], -[0,0,219,4702,4], -[0,-8113], -[1,3,4704], -[0,4705,4706,4707,5], -[0,-1758,-1650], -[0,-2416,-1449,-9658,-2125], -[0,-1689,-3110], -[1,3,4709], -[0,4710,4711,41,10], -[0,-2029], -[0,-23,-26,-40,-41,-43,-664,-756,-761,-932,-1654,-1788,-1939,-1967,-2006,-2125,-2127,-2128,-2131,-2137,-2140], -[1,3,4713], -[0,4714,4715,7,8], -[0,-668,-2177,-1077,-719,-9659,-1982,-2234], -[0,-1415,-932,-2125,-1753,-2375,-2379,-2402,-2410,-3136,-3037,-3198,-3199,-3048,-959,-958,-9660,-428,-9661,-427], -[1,3,4717], -[0,0,4718,4719,5], -[0,-9662,-4835,-3036,-4647,-3037,-8200,-3664,-502,-9663,-9664,-928,-932,-1107,-1449,-1683,-1763,-9665,-8436,-1942,-2910, --2410,-2426,-9666,-2469,-9667,-2531,-2564], -[0,-1313,-3578,-3994,-1334,-9668,-3161,-3122,-9669,-9670,-9671,-9672,-9060,-7314,-5819,-3967], -[1,3,4721], -[0,4722,29,4723,6], -[0,-1582], -[0,-5889,-1105,-7660,-7661], -[1,3,4725], -[0,4726,86,4727,6], -[0,-725,-1650,-2125,-2177,-2433,-2518,-9673], -[0,-9674,-9675,-9676,-9677,-1764], -[1,3,4729], -[0,4730,4731,4732,6], -[0,-6585,-1333], -[0,-86,-3307,-3615,-190,-4066,-350,-351,-3266,-3267,-9678,-4862,-9679,-3037,-5286,-2970,-3664,-932,-967,-4814,-977,-1110, --1323,-1344,-7317,-1449,-1534,-1772,-1874,-1942,-2910,-2127,-2214,-2379,-2410,-2411,-2469], -[0,-1317,-3264,-5092,-3215,-1333,-9680], -[1,3,4734], -[0,0,4735,4736,9], -[0,-3037,-652,-2586,-1288,-1292,-1942,-2094,-2100,-2399,-2410,-2426,-2541], -[0,-9681,-9682,-3264,-6557,-7153,-6818,-5387,-5388], -[1,3,4738], -[0,4739,4740,4741,4], -[0,-9683], -[0,-7196,-932,-1110], -[0,-5835,-3264], -[1,3,4743], -[0,0,4744,4745,5], -[0,-86,-3307,-3268,-9684,-3136,-3037,-589,-3223,-932,-940,-958,-9685,-1297,-1344,-1942,-2251,-2375,-2386,-2392,-2410, --2411], -[0,-3264,-9686,-9687,-9688,-3223,-9689,-9690], -[1,3,4747], -[0,0,4748,4749,11], -[0,-9691,-652,-756,-2127,-2415], -[0,-3264,-5559,-6422,-9692,-6420,-3223], -[1,3,4751], -[0,4752,4753,4754,5], -[0,-1839,-1324], -[0,-824,-1415,-1344,-1623,-774,-932,-825,-2501,-920,-1936,-1942,-767,-21,-533,-1276,-23,-1534,-1771,-9693,-86,-2251,-9694, --40,-1331,-958,-940,-3307,-7166], -[0,-2501,-3264,-5932], -[1,3,4756], -[0,4757,4758,4759,5], -[0,-6512,-683,-719,-1297,-6560,-9695,-2416], -[0,-1127,-1130,-1148,-1152,-1860,-1989], -[0,-687,-6454,-9696,-775,-3264,-9383,-3214,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838,-3215,-9698,-9216], -[1,3,4761], -[0,4762,4763,4764,4], -[0,-6512,-683,-719,-3223,-6560,-9695,-2334], -[0,-86,-5121,-350,-4062,-351,-3266,-9699,-9700,-932,-943,-1344,-1392,-1415,-1419,-1534,-2127,-9701,-2466], -[0,-687,-6454,-9696,-775,-3264,-9383,-3214,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838,-3215,-2334,-9698,-9216], -[1,3,4766], -[0,4767,4768,4769,9], -[0,-1860], -[0,-2322,-2250,-2320,-1860], -[0,-3264,-6528,-1858,-1859,-3967], -[1,3,4771], -[0,4772,4773,4774,4], -[0,-6585,-1317,-2039,-2276], -[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3267,-9678,-3268,-3037,-3040,-3052,-5286,-2970,-3664,-589,-932,-967,-4814, --977,-1110,-1344,-1534,-1874,-1940,-2910,-2006,-2019,-2127,-2214,-2379,-2410,-2411,-2469], -[0,-1326,-3264,-2006,-3215,-5092], -[1,3,4776], -[0,0,4777,4778,5], -[0,-519,-674,-2541], -[0,-3264,-5177,-9702,-9566,-4108,-5388,-5387,-9703,-9704], -[1,3,4780], -[0,0,4781,4782,10], -[0,-1344,-1392,-1471,-2387,-932,-2125,-2127,-1942,-756,-1870,-2410,-1771,-1413,-1952,-1481,-9705,-1476,-9706,-8382,-7818, --1491,-9707,-9708,-1475,-9709,-3469,-9710], -[0,-9711,-9712,-659,-3264,-5092,-6527,-9472,-3839], -[1,3,4784], -[0,4785,0,4786,5], -[0,-9713,-823,-861,-1333,-9714], -[0,-3264,-3966,-5554,-9715,-9716,-6473], -[1,3,4788], -[0,4789,0,4790,5], -[0,-9717,-9718,-469,-1107,-1496,-1646,-1966,-2177], -[0,-3264,-7148,-2451,-1330], -[1,3,4792], -[0,4793,4794,4795,9], -[0,-9719,-1324,-1548,-1949,-2321], -[0,-86,-3307,-3037,-767,-774,-778,-796,-9071,-932,-7466,-1322,-1344,-1415,-1534,-1643,-1771,-1942,-1974,-9720,-2000,-2125, --2251,-2275,-2410,-2501,-2503,-9721], -[0,-2501,-3862,-3264,-1331], -[1,3,4797], -[0,4798,4799,4800,4], -[0,-9722,-719,-755,-1936], -[0,-190,-3748,-7155,-3621,-3037,-9723,-652,-784,-932,-6835,-958,-8339,-9724,-1001,-1110,-1654,-1889,-1979,-9695,-2125, --9725,-2303,-2334,-2410,-2411,-9487], -[0,-1936,-9726,-3264,-9727,-6684], -[1,3,4802], -[0,4803,4804,4805,5], -[0,-7713,-6585,-6584,-3223], -[0,-190,-3037,-3664,-932,-940,-965,-978,-1110,-1942,-2386,-2410,-2411,-2469], -[0,-3264,-3215,-8027,-6597,-5092,-9728,-3484,-9297], -[1,3,4807], -[0,4808,129,4809,6], -[0,-828,-1370,-8441,-2255,-9729], -[0,-1334,-6324], -[1,3,4811], -[0,4812,4813,7,10], -[0,-996,-9730,-1063], -[0,-2531,-1788,-9731,-510,-1654,-2177,-1003,-2228,-725,-516,-2229], -[1,3,4815], -[0,4816,4817,4818,5], -[0,-9732,-812], -[0,-3198,-3136,-3037,-511,-1415,-2375,-2410,-1971,-9056], -[0,-1334,-1971,-8484,-9733], -[1,3,4820], -[0,4821,4822,4823,4], -[0,-4623,-812,-1336,-1393,-1396,-1639], -[0,-86,-3307,-190,-3198,-3330,-3617,-9734,-3136,-4036,-3037,-4203,-4204,-617,-932,-940,-967,-1004,-1098,-1110,-1344,-1415, --1534,-9735,-1805,-4916,-8436,-1942,-2293,-2375,-2410,-2411,-2531], -[0,-7302,-1971,-5401,-1334,-1342,-729,-1004,-1030,-3548,-9736,-632,-1168,-1137,-2512,-2531,-754], -[1,3,4825], -[0,4826,4827,4828,4], -[0,-1297,-1640,-668,-9737,-9738,-1810,-1646,-2436,-579,-1336,-1888,-9739,-1319], -[0,-9740,-2319,-932,-1004,-2105,-9741], -[0,-687,-3957,-5142,-1334,-1342,-1339,-9742,-3844], -[1,3,4830], -[0,0,4831,4832,4], -[0,-2391,-1344,-1654,-932,-2198,-2379,-1942,-190,-721,-2410,-3037,-1534,-7820,-3621,-9743,-86,-2251,-9744,-2411,-964,-940, --967,-3307], -[0,-1334,-729,-3100,-9745,-1004], -[1,3,4834], -[0,0,4835,4836,8], -[0,-3048,-3136,-9746,-427,-428,-932,-935,-958,-1077,-1415,-1605,-2375,-2378,-2379,-2410], -[0,-3966,-1334,-7827,-9747,-9748,-9745,-5563], -[1,3,4838], -[0,0,0,4839,4], -[0,-1342,-9749], -[1,3,4841], -[0,4842,4843,4844,4], -[0,-812,-9732], -[0,-1415,-1971,-2375,-9056,-2410,-3136,-3037,-512,-3198,-511,-9750], -[0,-1342,-1971,-8484,-9733], -[1,3,4846], -[0,0,0,4847,10], -[0,-5889,-3322,-1939], -[1,3,4849], -[0,4850,31,4851,11], -[0,-6829,-6372,-2347], -[0,-5827,-1334,-3443,-2105,-9052,-9751,-9752,-6693,-9753,-9024], -[1,3,4853], -[0,0,4854,4855,5], -[0,-3470,-3842,-3471,-741,-932,-940,-9754,-1942,-2127,-2174,-2322], -[0,-9755,-5553,-775,-656], -[1,3,4857], -[0,0,84,4858,5], -[0,-9756,-9757,-9758,-2424,-9759,-9760,-9761,-9762,-1878,-9763,-9764,-9765,-9766,-9767], -[1,3,4860], -[0,4861,4862,4863,4], -[0,-9768,-812,-9769,-9770,-9771,-1689], -[0,-510,-744,-932,-940,-943,-958,-966,-967,-968,-974,-1004,-1344,-1534,-1654,-1788,-1942,-2198,-2210,-2548,-2293], -[0,-3110,-1348,-9772], -[1,3,4865], -[0,39,4866,4867,5], -[0,-9773,-23,-3395,-3204,-38,-39,-40,-41,-43,-3326,-350,-351,-3266,-3037,-427,-428,-3664,-571,-756,-757,-932,-934,-940, --948,-958,-9774,-1344,-9775,-9776,-9777,-9778,-9779,-1534,-1942,-2125,-2127,-2210,-2410,-2469], -[0,-1349,-9780,-1348,-9781,-9782,-9772,-9783,-9784], -[1,3,4869], -[0,0,4870,4871,4], -[0,-190,-3267,-3470,-3471,-427,-428,-932,-940,-967,-1110,-1942,-2127,-2132,-2174,-2410], -[0,-1349,-9785,-3445,-3862], -[1,3,4873], -[0,4874,4875,4876,4], -[0,-9786], -[0,-1788,-510,-9787,-9788,-1654,-9789,-932,-2177,-2105,-9790,-2410,-3037,-1002,-2884,-2832,-3748,-5029], -[0,-9788,-5845,-9791,-9792], -[1,3,4878], -[0,4879,4880,4881,5], -[0,-9793], -[0,-527,-533,-559,-562,-756,-932,-934,-958,-1417], -[0,-1971,-9794,-9795,-1415,-4215], -[1,3,4883], -[0,0,4884,4885,4], -[0,-21,-23,-40,-427,-812,-932,-9796,-958,-1650,-9797,-2125,-9798,-2319,-2359,-2379,-2410], -[0,-1353,-9799,-9100,-1777,-8199,-9800,-7724,-5570,-5569,-9094,-1107,-9801,-9802], -[1,3,4887], -[0,0,4888,4889,6], -[0,-652,-1107,-2391,-2379,-2402,-2410,-3036,-3037,-2581], -[0,-6527,-8799,-9803,-9804,-6730,-7710,-5316,-8653,-8740,-8642,-8715,-9805,-8654,-8685,-9235,-8761,-7715,-8656,-3839, --9806,-9807,-5315], -[1,3,4891], -[0,4892,4893,4894,5], -[0,-9808,-7879,-2218,-1111,-9809,-1043,-5558,-9810,-8628,-9324], -[0,-2541,-519,-824,-2331,-7687,-9401,-7692], -[0,-1644,-6454,-6527,-5093,-9235,-8640,-7715,-8642,-3839], -[1,3,4896], -[0,4897,4898,4899,5], -[0,-9808,-999,-9811,-5558,-9812,-8628], -[0,-652,-2541,-519,-2410,-3037], -[0,-6454,-6527,-9813,-1644,-7175,-7715,-9814], -[1,3,4901], -[0,4902,0,4903,10], -[0,-9815,-2062], -[0,-1358,-9715,-7920,-9816,-3323], -[1,3,4905], -[0,0,4906,4907,9], -[0,-23,-3037,-3664,-756,-9817,-9818,-1059,-1344,-1361,-9819,-1548,-1552,-1942,-1952,-2074,-2125,-9820,-2174,-2391,-9821, --2410,-2466,-2469], -[0,-1361,-9822,-9823], -[1,3,4909], -[0,0,4910,4911,8], -[0,-9824,-3136,-756,-1415,-2125,-2375,-2388,-2410], -[0,-9825], -[1,3,4913], -[0,0,0,4914,4], -[0,-1361,-6852,-9826,-6582,-7537,-5112,-7558,-9827,-5562,-7822], -[1,3,4916], -[0,186,4917,4918,5], -[0,-519,-1298,-2384,-2541], -[0,-4792,-3324,-6690,-6691,-3551,-1072,-9828], -[1,3,4920], -[0,4921,4922,4923,6], -[0,-1871,-5915], -[0,-519,-6997,-824,-999,-2541], -[0,-6024,-8427,-4792,-2114,-1109,-9318,-9829,-687], -[1,3,4925], -[0,4926,4927,4928,5], -[0,-9830,-9831,-9832,-9833,-9834,-9835,-9836], -[0,-3037,-4204,-932,-9837,-1942,-2410], -[0,-9668,-3844,-9838,-9839,-7107,-8897,-9840,-3690,-7586,-9841,-5196,-9842,-3691,-5728,-3578,-3161,-3122,-9843,-9844, --6011,-5801,-1334,-1342,-2512,-6224,-9845,-3994,-3445,-5407], -[1,3,4930], -[0,0,14,4931,10], -[0,-6806,-2265,-7210,-9846,-6722,-5554,-885,-9847], -[1,3,4933], -[0,4934,4935,4936,8], -[0,-9551,-619,-9556,-1309,-1435,-1582], -[0,-707,-1277,-1510], -[0,-6656,-7421,-8481,-1277,-3862], -[1,3,4938], -[0,4939,4940,4941,6], -[0,-786,-2776,-3546], -[0,-9848,-9849], -[0,-1368,-6187,-3161,-4729,-9850,-3264,-9851,-3844,-5092,-4865,-2127,-9613], -[1,3,4943], -[0,0,4944,4945,4], -[0,-2410,-2469], -[0,-1369,-9852,-9853,-1878,-9763,-9758,-2424,-9854,-9855,-9759,-9764,-9760,-9765,-9766,-9767,-9761], -[1,3,4947], -[0,0,71,4948,10], -[0,-9856,-7711,-9857,-9858,-9859,-1370,-4865,-633], -[1,3,4950], -[0,0,29,7,5], -[1,3,4952], -[0,4953,4954,4955,5], -[0,-9860,-480,-482,-9861,-668,-688,-690,-696,-5906,-3517,-1366,-8418,-9862,-6259,-2166,-2202,-2219,-4621,-2267,-9863, --2400,-2820,-2528,-2531,-9864], -[0,-6486,-5918,-357,-3851,-3037,-3040,-9865,-9866,-9867,-4372,-4626,-4204,-9868,-519,-623,-826,-9869,-969,-970,-1681, --1741,-1827,-1942,-2006,-9870,-2210,-2269,-2379,-2410,-2541], -[0,-2006,-687,-4146,-3973,-3098,-3958,-1940,-2074,-9871,-7650,-714,-5554], -[1,3,4957], -[0,0,4958,4959,11], -[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-775,-932,-967,-4814,-1110,-1344,-1415,-1534,-1771,-1942,-2910,-2127], -[0,-1374,-9872,-5553,-3215,-775], -[1,3,4961], -[0,0,0,4962,6], -[0,-9873,-9874,-7864,-7084,-7856,-9219,-3966,-687], -[1,3,4964], -[0,4965,4966,63,4], -[0,-3947,-231,-4106,-2900,-3950,-9875,-2153], -[0,-3952,-2410], -[1,3,4968], -[0,4969,4970,4971,11], -[0,-480,-1040,-1863,-9875,-2153], -[0,-1059,-1087,-1376], -[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-910,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966,-3967,-1965,-3968,-1966, --3969,-2063,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], -[1,3,4973], -[0,4974,0,4975,8], -[0,-9876,-714], -[0,-9877,-3966,-9878,-9879], -[1,3,4977], -[0,0,4978,4979,6], -[0,-849,-1654,-9880,-2334], -[0,-3209,-4792,-4791,-9881,-4865,-9882,-7857,-1380], -[1,3,4981], -[0,0,4982,4983,8], -[0,-932,-937,-966,-1001,-1442,-1654,-1788,-8501,-2068,-2094,-9883,-2195], -[0,-9199,-9884,-711,-6505,-3184,-3756,-4055,-1460,-4146,-2006,-9885,-2362,-3018,-2410,-6597,-2548,-9886], -[1,3,4985], -[0,0,4986,4987,8], -[0,-510,-526,-528,-549,-9887,-9888,-551,-556,-559,-9889,-566,-9890,-9891,-9892,-9893,-9894,-9895,-9896,-9897,-9898,-9899, --9900,-9901,-9902,-9903,-689,-704,-932,-9904,-1045,-1107,-1127,-1132,-1134,-1138,-9905,-9906,-1452,-1650,-1797,-2125, --2127,-2128,-2131,-9907,-5860,-2138,-2143,-9266,-2187,-2493], -[0,-1382,-1348,-9780,-9908,-3582], -[1,3,4989], -[0,0,4990,4991,4], -[0,-7,-8,-9,-10,-13,-3204,-42,-3983,-365,-407,-410,-3037,-3040,-3052,-427,-428,-4837,-9909,-535,-774,-928,-932,-948,-958, --959,-969,-970,-1028,-9910,-4693,-9911,-1127,-1131,-1132,-1134,-1137,-1140,-1149,-9912,-1160,-1162,-1339,-1415,-1419, --1437,-1541,-1874,-1942,-9913,-2006,-2019,-2162,-2193,-2299,-2351,-2379,-2410,-2466,-6859,-2476,-5627,-2567], -[0,-9914,-9915,-9916,-9917,-9918,-3162,-3962,-9567,-3823,-3214,-3862,-775,-3264,-3926,-5538,-2006,-2476,-475,-2299,-3095, --2410], -[1,3,4993], -[0,220,4994,4995,5], -[0,-633,-1059,-2319], -[0,-4004,-1384], -[1,3,4997], -[0,4998,4999,5000,6], -[0,-9919,-9920,-9921], -[0,-3037,-3664,-932,-1942,-2080,-2125,-2127,-2376,-2387,-2410,-2469], -[0,-6143,-9922,-6134,-9923,-9924,-3214,-3966,-2410], -[1,3,5002], -[0,5003,5004,221,5], -[0,-2323,-834,-9925,-1805,-2446,-668,-812,-2387,-1548,-2177,-2240,-3547,-2347,-9926,-2291,-9927,-9928,-9929,-9422,-9930, --9931,-9932,-9933,-9934,-9935,-9936,-9937,-9938], -[0,-1415,-2125,-2388,-2375,-1417,-5673,-2231,-2410,-9939,-3136,-3037,-9940,-3738,-1534,-3198,-3044,-3199,-9941,-9942, --7836,-4202,-9943], -[1,3,5006], -[0,5007,5008,5009,5], -[0,-3978], -[0,-3983,-3048,-3136,-3037,-9947,-1077,-1415,-1417,-9948,-1772,-1942,-1978,-2125,-2177,-2184,-2303,-2392,-2410], -[0,-9949,-1386,-3167,-3839,-3162,-8585,-3095,-9950,-3119,-5270], -[1,3,5011], -[0,5012,5013,5014,4], -[0,-9951,-9952,-812,-9953,-1554,-9954,-9955,-9956,-9957], -[0,-9958,-3470,-7040,-3471,-3035,-4269,-3198,-9959,-9960,-3621,-3037,-9961,-4372,-427,-428,-664,-665,-932,-940,-1654, --1788,-1942,-2174,-2188,-2210,-2379,-2384,-2402,-2410,-2446], -[0,-2071,-9844,-9962,-9963], -[1,3,5016], -[0,0,5017,7,8], -[0,-1654,-932], -[1,3,5019], -[0,5020,5021,7,5], -[0,-9964,-9788,-9965], -[0,-9966,-1032,-1445,-2322], -[1,3,5023], -[0,0,5024,5025,4], -[0,-515,-1788,-2322,-932,-6283,-1365,-2156,-5834,-6402], -[0,-2444,-8038,-4004], -[1,3,5027], -[0,5028,5029,184,9], -[0,-680], -[0,-686,-2250], -[1,3,5031], -[0,5032,88,5033,4], -[0,-9967], -[0,-6836,-9968,-7440,-8421,-8130,-9969,-1107,-9095,-9970,-1391,-5572,-3581,-5574,-5569,-8129,-2265,-4004], -[1,3,5035], -[0,5036,5037,5038,11], -[0,-9971,-7408], -[0,-519,-6997,-824,-999,-1591,-2384,-2541], -[0,-1109,-5897,-9972,-3551,-1380,-9973,-1764,-2552,-1391,-7440,-6659,-8427,-9974,-687,-8425,-7304], -[1,3,5040], -[0,0,14,5041,6], -[0,-7208,-1391,-7440,-4004,-8038,-9716,-9975,-9976,-5493], -[1,3,5043], -[0,0,5044,5045,9], -[0,-664,-985,-1202,-1654,-1655,-2127], -[0,-7440,-1391,-9977,-1403,-3214,-9978,-8493,-7208,-9716,-8038,-9571,-5846], -[1,3,5047], -[0,0,5048,5049,5], -[0,-1654,-2081], -[0,-3264,-9950,-9979,-5065], -[1,3,5051], -[0,0,5052,5053,5], -[0,-3037,-519,-2331,-2384,-2541], -[0,-5827,-8038,-8027,-9980,-8800,-9753,-6408,-7440,-6659,-1391], -[1,3,5055], -[0,5056,222,5057,5], -[0,-9981], -[0,-7440,-9983,-7084,-9984,-9261,-6659,-6836,-1958,-4000,-3974,-1391], -[1,3,5059], -[0,0,31,5060,11], -[0,-4865,-1402,-5839], -[1,3,5062], -[0,0,5063,5064,11], -[0,-985,-1202,-1654,-2127], -[0,-7440,-1391,-9977,-1403,-9978,-8493,-9985,-5269,-7208,-8038,-9571,-5846], -[1,3,5066], -[0,5067,5068,7,5], -[0,-1729,-2516], -[0,-664,-1452,-9986,-1654,-1722], -[1,3,5070], -[0,5071,5072,5073,4], -[0,-1107,-1758,-1801,-510,-2518,-9632,-1650,-987,-1442,-2114,-2525,-931,-1276,-2297], -[0,-1452,-2125,-1754,-756,-2111], -[0,-4005,-9987,-9988,-9989], -[1,3,5075], -[0,5076,56,89,4], -[0,-1078,-2446,-7885], -[1,3,5078], -[0,5079,5080,5081,5], -[0,-513,-823,-896,-9990,-1571,-1887,-2355,-9991], -[0,-9992,-526,-527,-532,-534,-536,-544,-546,-9993,-551,-555,-7890,-558,-565,-567,-664,-9994,-748,-767,-778,-932,-980, --1017,-1041,-1074,-1168,-1171,-1184,-1226,-1243,-1322,-1331,-1471,-1475,-1476,-1482,-7759,-1490,-1491,-1492,-1521,-1522, --8936,-1654,-2210,-2211,-2275,-2388,-2410,-2417,-2437,-2476,-2479,-9995,-2481,-2483,-2484,-2485,-2501,-2505,-2508], -[0,-1407,-2476,-3527,-3095,-3098,-3160,-3161], -[1,3,5083], -[0,5084,156,5085,4], -[0,-233], -[0,-6748,-3215,-4377,-5829,-9567,-687,-3957,-6722,-1838,-6747], -[1,3,5087], -[0,5088,5089,7,4], -[0,-9996,-683,-719,-9997,-9998,-1650,-9999,-2416,-2595,-10000], -[0,-10001,-10002,-756,-1004,-10003,-10004,-10005,-10006,-10007,-10008,-10009,-10010,-10011,-10012,-10013,-10014,-10015, --10016,-1610,-1810,-10017,-2125,-10018,-3013], -[1,3,5091], -[0,5092,5093,5094,5], -[0,-510,-10019,-1863], -[0,-190,-932,-4719,-1110,-1654,-1980], -[0,-7641,-687,-9218,-10020], -[1,3,5096], -[0,5097,5098,5099,4], -[0,-10021], -[0,-3326,-351,-3561,-3266,-4964,-10022,-10023,-683,-767,-10024,-1344,-1437,-10025,-1534,-1639,-10026,-2127,-4063,-8896], -[0,-10027,-6527,-5182,-10028,-10029,-8636], -[1,3,5101], -[0,5102,5103,223,6], -[0,-1107,-1413,-10030], -[0,-932,-10031], -[1,3,5105], -[0,0,5106,223,5], -[0,-3244,-190,-501,-10032,-888,-932,-952,-1107,-1110,-1449,-1942,-2162], -[1,3,5108], -[0,5109,0,5110,5], -[0,-1088,-1650,-10033,-2111,-2424,-711,-10034,-10035], -[0,-3634,-3440], -[1,3,5112], -[0,5113,0,107,4], -[0,-236,-237,-1363,-1417], -[1,3,5115], -[0,5116,5117,5118,6], -[0,-10036,-10037], -[0,-6256,-21,-23,-26,-40,-86,-9404,-533,-10038,-756,-1344,-1415,-1942], -[0,-4215,-1415,-5129,-886,-659,-4004,-5119], -[1,3,5120], -[0,5121,5122,107,6], -[0,-236,-4019,-237,-668,-4021,-1363,-4023,-1427,-4031,-2550], -[0,-3041], -[1,3,5124], -[0,5125,224,7,6], -[0,-10039,-8434,-668,-1950], -[1,3,5127], -[0,5128,224,7,5], -[0,-10040,-10041,-4647,-3037,-1449], -[1,3,5130], -[0,5131,5132,7,4], -[0,-10040,-10042,-237,-5129,-1427,-1449], -[0,-3136,-4647,-3037,-1344,-1415,-1650,-1942,-1952,-2125,-2375,-2410], -[1,3,5134], -[0,5135,5136,7,9], -[0,-10040,-10042,-237,-3037,-5129,-1427,-4031], -[0,-4034,-703], -[1,3,5138], -[0,5139,5140,5141,5], -[0,-1418], -[0,-50,-3615,-3244,-190,-8433,-3136,-427,-428,-932,-940,-948,-958,-959,-967,-1110,-1344,-1415,-10043,-1428,-1534,-1942, --2375,-5232,-2410], -[0,-1415,-10044,-1015,-10045,-4004,-3634,-6538], -[1,3,5143], -[0,5144,5145,5146,4], -[0,-1077,-1805], -[0,-23,-2695,-366,-407,-409,-410,-10046,-3136,-10047,-3037,-10048,-3040,-3052,-6192,-485,-533,-534,-542,-561,-594,-635, --656,-661,-747,-778,-779,-796,-865,-866,-929,-932,-941,-10049,-1017,-1041,-1077,-1331,-1352,-1415,-1426,-1428,-10050, --1643,-1762,-1889,-1903,-1908,-1918,-1927,-1966,-10051,-2006,-2010,-2015,-2019,-2041,-2643,-2114,-2116,-2162,-2163,-2177, --2233, --2275,-2318,-2335,-2410,-2437,-10052,-2501,-2502,-2505,-2507,-2526], -[0,-1415,-3264,-6863,-9246,-3862], -[1,3,5148], -[0,5149,5150,7,4], -[0,-1650,-2269,-2446,-6597], -[0,-1415,-10053,-2218], -[1,3,5152], -[0,0,0,5153,5], -[0,-1415,-2552,-10054,-10055], -[1,3,5155], -[0,5156,5157,7,6], -[0,-668,-1119,-4024,-1425,-1427,-4031,-2218,-8204], -[0,-4035,-2435], -[1,3,5159], -[0,5160,5161,7,8], -[0,-237,-3037,-668,-680,-1119,-1864], -[0,-4035,-8523,-1548], -[1,3,5163], -[0,5164,5165,7,5], -[0,-480,-668,-4026,-4032,-2218,-6715,-2269], -[0,-21,-23,-40,-42,-190,-5121,-237,-3470,-3471,-3037,-533,-10056,-767,-932,-940,-948,-8339,-959,-967,-1110,-1415,-10043, --1942,-2125,-2174,-2177,-2410,-2411], -[1,3,5167], -[0,5168,5169,7,6], -[0,-3037,-9581,-1427,-1632,-2297], -[0,-23,-10057,-4373,-9586,-1100,-10058,-10059], -[1,3,5171], -[0,5172,5173,5174,4], -[0,-10060,-10061,-10062,-10063,-10064,-10065,-10066,-10067,-10068,-10069,-10070,-10071,-10072,-10073,-10074,-10075,-10076, --10077,-10078,-10079,-10080,-10081,-10082,-10083,-10084,-10085,-10086], -[0,-10087,-10088,-10089,-10090,-4066,-350,-6572,-351,-3266,-5286,-932,-10091,-1848,-2127,-2132,-6483,-9701,-2386,-2410, --10092,-2469], -[0,-6527,-10093,-10094,-7715,-8640,-9235,-8653,-10095,-7069,-7066], -[1,3,5176], -[0,0,5177,7,6], -[0,-23,-3341,-3196,-24,-10096,-33,-5828,-3367,-3077,-3389,-3408,-3412,-42,-3193,-46,-47,-10097,-10098,-4776,-4777,-10099, --10100,-10101,-3037,-3664,-461,-10102,-672,-727,-734,-6860,-10103,-930,-932,-944,-989,-990,-1026,-1394,-1640,-1651,-1667, --10104,-1852,-6568,-1940,-10105,-1942,-2006,-2019,-2080,-10106,-6570,-2335,-3535,-2376,-2410,-2469,-2476,-8416,-2564], -[1,3,5179], -[0,0,0,5180,6], -[0,-3494,-10107,-10108,-3495,-10109,-10110,-3264,-5554,-3496,-10111,-3214,-2410,-10112,-1432], -[1,3,5182], -[0,5183,5184,5185,4], -[0,-1432], -[0,-3615,-7155,-367,-406,-409,-410,-3040,-3052,-427,-428,-767,-778,-932,-940,-967,-969,-970,-979,-1331,-1449,-1942,-2006, --2019,-8276,-2275,-3752,-2379,-2391,-2410,-2469,-2501,-2503,-2505], -[0,-2006,-1432,-3264,-5554,-3496,-10113,-10109,-10110,-10114], -[1,3,5187], -[0,5188,5189,5190,4], -[0,-668,-10115,-10116,-10117,-2183,-3523,-1553,-1552,-10118], -[0,-1788,-510,-1127,-2210,-1813,-756,-1132,-6758,-1153,-722,-10119,-1149,-1144,-1146], -[0,-10120,-10121,-10122,-10123,-10124,-10125,-10126,-10127,-10128,-10129,-10130,-10131,-10132,-10133,-10134,-10135,-10136, --10137,-10138,-10139,-10140,-10141,-10142,-10143,-10144,-10145,-10146,-10147,-10148,-10115,-10149,-10150,-10151,-10152, --10153,-10154,-10155,-10156,-10157,-10158,-10159,-10160,-10161,-10162,-10163,-10164,-10165,-10166,-10167,-10168,-10169, --10170,-10171,-10172,-10173,-10174,-10175,-10176,-10177,-10178,-10179,-10180,-10180, --10181,-10182,-10183,-10184,-10185,-10186,-10187,-10188,-10189,-10190,-10191,-10192,-10193,-10194,-10195,-10196,-10197, --10198,-10199,-10200,-10201,-10202,-10203,-10204,-10205,-10206,-10207,-5158,-10208,-10209,-10210,-10211,-10212,-10213, --10214,-10215,-10216,-10217,-10218,-10219,-10219,-10220,-10221,-10222,-10223,-10224,-10225,-10226,-10227,-2183,-10228, --10229,-10230,-10231,-10232,-10233,-10234,-10235,-10236,-10237,-10238,-10239,-10240,-10241, --10242,-10243,-10244,-10245,-10246,-10247,-10248], -[1,3,5192], -[0,5193,5194,5195,4], -[0,-10249,-10250,-3880,-10251,-10252,-3888,-3117], -[0,-9163,-3890,-3891,-3893,-3037,-2410], -[0,-4058,-3926], -[1,3,5197], -[0,0,0,5198,5], -[0,-2006,-4125,-9800,-4633,-10253,-4634], -[1,3,5200], -[0,0,0,5201,10], -[0,-1437,-3214,-4865,-3482], -[1,3,5203], -[0,5204,5205,7,4], -[0,-1437], -[0,-1127,-2125,-1110,-367,-10254,-10255,-1152,-10256,-1542,-10257,-10258,-10259,-10260,-1136,-1139,-9550], -[1,3,5207], -[0,0,5208,5209,11], -[0,-3037,-1654,-2410], -[0,-6118,-7304], -[1,3,5211], -[0,5212,5213,5214,4], -[0,-10261,-7829,-1107,-1441,-1758], -[0,-481,-589,-709,-1437,-1452,-1646,-1654,-1689,-2111,-2184,-2269,-2501,-2503], -[0,-6146,-10262,-10263], -[1,3,5216], -[0,0,5217,5218,4], -[0,-3266,-932,-943,-957,-963,-1127,-10258,-1137,-1146,-9544,-1149,-10264,-10265,-1942,-1989,-2091,-2127,-5090,-2134,-2250], -[0,-743,-6920,-4865,-10266,-4791,-3323,-1441,-633], -[1,3,5220], -[0,5221,5222,5223,8], -[0,-503], -[0,-1788,-5514,-1654,-932,-2127,-2195,-1103,-589,-709,-1023,-2140,-350,-351,-10267], -[0,-2548,-3215,-4142,-10268], -[1,3,5225], -[0,5226,5227,5228,10], -[0,-25,-5223,-719,-812,-822,-1107,-10269,-10270,-2001,-10271], -[0,-190,-4010,-367,-4007,-7043,-3037,-720,-740,-796,-932,-940,-959,-967,-1415,-1448,-9390,-9393,-1942,-2125,-2410,-2411], -[0,-10272,-856], -[1,3,5230], -[0,5231,5232,7,4], -[0,-714,-719,-1077,-10273,-10274,-10275,-10276,-10277,-10278,-10279], -[0,-5325,-3048,-3037,-3664,-1753,-2379,-2391,-2410,-2469], -[1,3,5234], -[0,5235,5236,5237,6], -[0,-668,-693,-719,-10280,-988,-1000,-1107,-1333,-1442,-10281,-10282,-6611,-1548,-1645,-5199,-6533,-1965,-10283,-2114, --2270,-2271,-10284,-10285,-9247,-10286,-2538], -[0,-664,-756,-3607,-1452,-1654,-2081,-2123,-2210,-2211,-10287,-10288,-2536], -[0,-8172,-4144,-7148,-8170,-4901,-5874], -[1,3,5239], -[0,5240,5241,5242,4], -[0,-25,-10289,-3661,-615,-10290,-930,-10291,-8985,-1600,-1601,-1610,-1650,-10292,-2271,-2424], -[0,-469,-1168,-1197,-1225,-1788], -[0,-856,-3214], -[1,3,5244], -[0,5245,0,5246,4], -[0,-6789,-7573,-10293,-7575,-1446,-10294,-7576], -[0,-1446,-3690,-5731,-3964,-3214,-856], -[1,3,5248], -[0,5249,0,5250,5], -[0,-6789,-717,-718,-10295,-843,-1447,-2576,-7576], -[0,-1446,-1599,-3690,-3262,-3214,-3756,-856], -[1,3,5252], -[0,5253,5254,225,5], -[0,-10296,-10297,-10298,-9683,-785,-10299,-10300,-1319,-1337,-1343,-1397,-1839,-10301,-10302,-2364,-2426,-10303,-10304, --6587,-10305,-8352], -[0,-7196,-932,-957,-965,-1110,-1442,-1645,-1654,-10306,-1772,-1810,-1880,-2177,-2188,-2354,-10307,-10308], -[1,3,5256], -[0,5257,5258,225,5], -[0,-10309,-10310,-785,-1333,-10311,-1839,-2105,-8352,-2540], -[0,-633,-714,-1339,-1452,-6810,-1754,-1888,-1980,-10312,-2493], -[1,3,5260], -[0,0,5261,5262,4], -[0,-756,-1127,-1132,-6114,-1405,-1654,-2081,-2111,-10313], -[0,-640,-5559,-3214,-4055,-6917,-8127,-2265,-6231,-3673], -[1,3,5264], -[0,5265,5266,7,8], -[0,-687,-6392,-1000,-1333,-1548,-1645,-2271], -[0,-510,-633,-739,-6019,-756,-1405,-1445,-1661,-1754,-1978,-2081,-10314,-2210,-6430,-10315,-10316], -[1,3,5268], -[0,5269,226,5270,5], -[0,-668,-1574,-1877,-6715,-2343,-9493], -[0,-1452,-6863,-4144,-3276,-7148,-5874,-10317,-6864,-3240], -[1,3,5272], -[0,5273,5274,5275,4], -[0,-10318,-10319], -[0,-3621,-3037,-427,-428,-932,-936,-958,-1654,-1788,-2379,-2410], -[0,-4055,-10320,-788,-6473,-8257,-10321,-10322,-1838,-3215,-1454,-10323,-687], -[1,3,5277], -[0,0,5278,7,8], -[0,-2251], -[1,3,5280], -[0,0,0,5281,9], -[0,-4055,-4058], -[1,3,5283], -[0,5284,5285,5286,4], -[0,-411,-414,-2702,-668,-679,-3780,-6869,-1369,-1460,-1581,-10324,-2213,-10325], -[0,-3037,-726,-1098,-1344,-2987,-8065,-2331,-2400,-2410], -[0,-4182,-3844,-8959,-3817,-3816,-10326,-4215,-4041,-4004,-3634,-3691,-6582,-10327], -[1,3,5288], -[0,5289,5290,5291,10], -[0,-655,-6511,-1402,-7584,-1795], -[0,-2832,-5834,-8084,-8086,-8090,-10328,-8096,-516,-5835,-932,-1365,-1777,-2156,-2322], -[0,-4055,-6231,-10329,-6131,-7283,-10330], -[1,3,5293], -[0,0,0,5294,5], -[0,-4055,-6231,-10331,-9594], -[1,3,5296], -[0,0,5297,5298,11], -[0,-753,-932,-943,-958,-966,-968,-974,-1771,-2081,-2127,-2129,-2131,-2137,-2140,-2210,-2319,-10332], -[0,-4055,-1460,-8108,-4795,-3217], -[1,3,5300], -[0,0,5301,7,4], -[0,-1654,-932,-2125,-2410,-3037,-3621,-428,-427], -[1,3,5303], -[0,5304,206,5305,4], -[0,-8984], -[0,-2059,-6234,-6656,-4055,-1076,-1077], -[1,3,5307], -[0,0,5308,5309,5], -[0,-7055,-10333,-664,-932,-10334,-1654], -[0,-4055,-4058,-1463,-2451,-3926], -[1,3,5311], -[0,5312,5313,5314,5], -[0,-2346,-10335], -[0,-2322,-8392,-10336,-7650,-6538,-994], -[0,-4055,-5827,-9292,-3215,-510,-6747], -[1,3,5316], -[0,5317,5318,5319,8], -[0,-1681,-10337,-2177,-10338,-10339,-10340,-1563,-10341,-10342,-1562], -[0,-1780,-1788,-514,-664,-1654,-2210,-932,-739], -[0,-3175], -[1,3,5321], -[0,5322,5323,7,5], -[0,-23,-10343,-10344,-1816,-1863], -[0,-5694,-3037,-10345,-653,-928,-932,-940,-1640,-1645,-1805,-1942,-2127,-2358,-2410], -[1,3,5325], -[0,0,5326,5327,4], -[0,-3037,-3664,-8436,-2391,-2410,-2469], -[0,-4125,-3967,-3445,-10346,-2006,-5269,-3578,-2034,-3138], -[1,3,5329], -[0,5330,5331,5332,6], -[0,-10347,-1834,-8578,-2062], -[0,-2359,-1127,-1989,-932,-589,-1132,-633,-1874,-2410,-1339,-10348,-1130,-1148,-10349], -[0,-5408,-6827,-10350], -[1,3,5334], -[0,0,5335,5336,6], -[0,-2200,-1415,-1344,-932,-2910,-2375,-2379,-1942,-2410,-23,-1534,-632,-726,-958,-940,-967,-1419,-428,-427,-948], -[0,-3175,-4865], -[1,3,5338], -[0,0,5339,5340,4], -[0,-1003,-1405,-1654], -[0,-3175,-6422,-6420], -[1,3,5342], -[0,5343,5344,5345,6], -[0,-6134,-2359,-1107,-1640,-10351,-2550,-9968,-1548,-1576,-1650,-2125,-729,-679,-1645,-2228,-1336,-2231,-617,-1119,-5506, --1997,-2594,-10352,-5758], -[0,-664,-5735,-1654,-7243,-2210,-2518,-932,-793,-2491,-1978,-2293,-633,-1474,-1972,-2211,-10353,-667,-1482,-1413,-1481, --86,-665,-1472,-2174,-966,-958,-10354,-1483,-3471,-968,-1475,-10355,-943,-974,-1479,-9404,-3470,-1473], -[0,-1471,-10356,-4043,-1471,-3756,-3214,-3634,-4004,-8908,-10357], -[1,3,5347], -[0,5348,5349,5350,6], -[0,-10358,-1548,-10359,-1645,-8016,-742], -[0,-1763,-627,-664,-1471,-1654,-2210,-2363,-5482,-932,-2114,-2491,-633,-2211,-2410,-1771,-1413,-1481,-6399,-964,-1475], -[0,-10360,-10361,-10362,-633], -[1,3,5352], -[0,5353,5354,5355,4], -[0,-1980,-2734,-10363], -[0,-1127,-932,-1159,-1131,-1152,-1542,-966,-1129,-958,-968,-943,-974,-1150,-1151], -[0,-10360,-10364,-2734,-10365], -[1,3,5357], -[0,0,0,5358,4], -[0,-1471,-10360,-664,-1654,-2198], -[1,3,5360], -[0,227,5361,5362,9], -[0,-664,-1471,-1654,-2210,-2250,-1482,-86,-2174,-3471,-9404,-3470], -[0,-10360,-10364,-10366], -[1,3,5364], -[0,5365,5366,5367,5], -[0,-5086,-6029,-5087,-5088,-5089,-1645], -[0,-86,-3307,-9248,-3470,-3471,-7041,-664,-711,-932,-943,-958,-966,-968,-974,-1127,-1132,-1155,-1159,-1344,-10367,-1471, --10368,-1479,-1482,-10369,-1654,-7243,-2111,-2174,-2210,-2211], -[0,-10360,-10361,-10370,-4005,-1405], -[1,3,5369], -[0,227,5370,5371,4], -[0,-1127,-1138,-1144,-1155,-1413,-1471,-1481,-1860], -[0,-10360,-10364,-4865,-6413,-10371,-10372,-10373,-10374,-7490,-10375,-10376,-10377,-10378,-10379,-10380], -[1,3,5373], -[0,5374,5375,5376,5], -[0,-10381], -[0,-664,-10382,-6134,-932,-943,-968,-974,-1127,-1131,-1132,-1152,-1159,-1163,-1471,-1542,-10383,-1972], -[0,-10360,-10364,-5799,-7489], -[1,3,5378], -[0,5379,5380,5381,4], -[0,-1401,-2518], -[0,-86,-3307,-3470,-3471,-7041,-1344,-1471,-1482,-1654,-1868,-2174,-2250], -[0,-1471,-3634,-10360,-10364,-10384], -[1,3,5383], -[0,34,5384,5385,5], -[0,-664,-6134,-932,-943,-968,-969,-974,-1127,-1129,-1131,-1149,-1150,-1151,-1152,-1159,-1163,-1471,-1542,-7243,-2210, --2211], -[0,-10360,-10364,-8996], -[1,3,5387], -[0,5388,5389,5390,5], -[0,-1413], -[0,-1127,-1344,-1471,-932,-1412,-86,-2174,-966,-958,-3471,-7041,-968,-943,-974,-1479,-3472,-9404,-3470], -[0,-10360,-10385,-1412], -[1,3,5392], -[0,228,5393,5394,6], -[0,-664,-932,-943,-968,-969,-974,-1127,-1129,-1131,-1150,-1152,-1155,-1159,-1471,-1474,-1475,-1479,-1489,-1542,-1654, --1658,-2210,-3470,-3471,-2174,-86,-3307,-1344], -[0,-10360,-10385,-1654], -[1,3,5396], -[0,5397,5398,5399,4], -[0,-668,-1574,-2269], -[0,-664,-1127,-1131,-1138,-1144,-1150,-1155,-1162,-1413,-1474,-1477,-1542,-1654,-1860], -[0,-10360,-10370,-1654,-664,-834,-8619], -[1,3,5401], -[0,5402,5403,5404,4], -[0,-1548,-1860], -[0,-932,-943,-969,-974,-1127,-1129,-1131,-1150,-1152,-1155,-1159,-1413,-1471,-1481,-1542], -[0,-10360,-10364,-1859], -[1,3,5406], -[0,0,5407,5408,10], -[0,-664,-1127,-1471,-1654,-1989,-932,-1159,-1131,-1481,-966,-958,-968,-943,-974,-1479], -[0,-1471,-10360,-10385,-1989], -[1,3,5410], -[0,5411,5412,5413,6], -[0,-679,-811], -[0,-23,-3412,-40,-932,-1413,-1471,-1475,-1481,-1483,-2127,-2128,-2129,-2131,-2137], -[0,-6505,-4795,-1471,-3209,-6024,-8257,-3862,-3277,-10361,-10360,-10386,-2127], -[1,3,5415], -[0,0,5416,5417,8], -[0,-1159,-1127,-1131,-1129], -[0,-10360,-10364,-10387], -[1,3,5419], -[0,5420,5421,5422,4], -[0,-10388,-5471,-4881], -[0,-86,-3307,-3470,-3471,-7041,-3048,-10389,-3037,-1344,-1412,-1471,-1481,-2174,-2410], -[0,-10360,-10364,-10390,-10391,-5471], -[1,3,5424], -[0,0,0,5425,4], -[0,-1471,-10360,-2210,-4215], -[1,3,5427], -[0,5428,5429,5430,5], -[0,-1119], -[0,-4035,-652,-932,-1413,-1471,-10392,-1475,-1481,-1942,-2127,-10393], -[0,-10360,-10361,-9454,-3214], -[1,3,5432], -[0,187,5433,5434,11], -[0,-664,-756,-1654,-1771,-1788,-2210,-2211], -[0,-10360,-6863], -[1,3,5436], -[0,5437,5438,48,8], -[0,-1107,-1645,-2508], -[0,-21,-23,-39,-40,-86,-3307,-7166,-533,-664,-665,-767,-932,-958,-967,-1344,-1405,-1412,-1415,-1471,-1474,-1475,-1482, --1491,-1534,-1626,-1654,-1939,-1942,-1978,-2251,-2501], -[1,3,5440], -[0,0,27,5441,8], -[0,-10394,-1493,-10395,-4111,-10396,-10397,-10398,-10399,-1494], -[1,3,5443], -[0,0,0,5444,6], -[0,-1494,-2063,-3103], -[1,3,5446], -[0,5447,5448,5449,6], -[0,-10400], -[0,-10401,-3653,-2581,-6486,-3664,-2125,-10402,-2384,-2469,-10403,-10404,-10405,-10406,-10407,-10408,-10409], -[0,-7372,-5846,-4634,-3324,-6495,-10410,-6005,-3445,-10411,-2071,-1671,-3742,-1691,-6321,-10412,-1724,-1582,-10413,-654], -[1,3,5451], -[0,0,5452,5453,4], -[0,-985,-2447], -[0,-5514,-687,-712,-714,-4000,-3974], -[1,3,5455], -[0,5456,5457,5458,5], -[0,-985,-10414,-812,-1548,-8945,-2068,-2350,-10415,-713,-719,-1381,-2115,-1097,-10416], -[0,-1857,-1788,-2384,-664,-1410,-2322,-1344,-1654,-1691,-2210,-932,-1692,-2125,-879,-1658,-2245,-10417,-2379,-10418,-1942, --2320,-756,-767,-1464,-2211,-2410,-3037,-8946,-1534,-10419,-10420,-665,-2234,-10421,-958,-10422,-10423,-940,-967,-5984], -[0,-10424,-5101,-6321,-10425,-1691,-10426,-2245,-5378,-1682,-4258,-10427,-7641,-7773,-7685], -[1,3,5460], -[0,5461,5462,5463,4], -[0,-8520,-1026,-10428,-1431,-1442,-1646,-10429,-1863,-1864,-10430,-2271,-2564], -[0,-237,-7057,-3660,-5686,-8523,-3046,-4879,-10431,-4651,-2392,-2410], -[0,-10432,-10433,-7711,-687,-10434,-3015,-6659,-3016,-10435,-10436,-8035,-8257,-6999,-5573,-3214,-7148,-10437,-10438, --10439,-10440,-10441,-5897,-9044,-3694,-2410,-10442,-10443,-7441,-10444], -[1,3,5465], -[0,0,5466,5467,6], -[0,-932,-1111,-10445,-1572], -[0,-775,-3589,-5387,-10366,-10384,-10446,-7489,-10387,-10447,-10448,-10449], -[1,3,5469], -[0,5470,0,5471,4], -[0,-1640,-2536,-812,-10450,-1801], -[0,-5817,-5937,-5940], -[1,3,5473], -[0,5474,5475,5476,4], -[0,-459,-736,-737,-6920,-10451,-7412,-907,-929,-1072,-10452,-1335,-1504,-1641,-1800,-1840,-2255,-2401,-2453], -[0,-652,-10453,-2226,-2250,-2293], -[0,-3578,-3994,-1334,-9668,-3161,-5401,-6854], -[1,3,5478], -[0,5479,5480,5481,5], -[0,-10454,-3734,-5586,-10455,-1070,-2400,-2564], -[0,-2832,-2581,-50,-8280,-10456,-3758,-8317,-10457,-4203,-1501,-2293,-2386,-7457,-2392,-2410], -[0,-1501,-10458,-6463,-4055,-10459,-3215,-4053], -[1,3,5483], -[0,5484,5485,5486,11], -[0,-10455,-10460,-2401], -[0,-946,-1344,-1501,-1654,-1788,-2198,-2293,-2541], -[0,-10461,-4055,-10458,-1501,-10459], -[1,3,5488], -[0,0,5489,5490,5], -[0,-708,-1415,-1612,-2250], -[0,-1501,-5401,-10462], -[1,3,5492], -[0,5493,5494,5495,6], -[0,-651,-668,-10463,-1800,-10464], -[0,-619,-652,-946,-1501,-10465,-10466,-2210,-2293,-2541], -[0,-1501,-5401,-3444,-1573], -[1,3,5497], -[0,5498,5499,5500,4], -[0,-812,-1504], -[0,-932,-943,-968,-974,-1405,-1501,-1508,-1654,-2198,-2293], -[0,-1501,-5401,-10467,-10468], -[1,3,5502], -[0,5503,5504,5505,10], -[0,-812,-1335,-1504,-1851], -[0,-1501,-1788,-668,-1344,-1654,-932,-1053,-2293,-10469,-2094,-1534,-86,-1448,-2099,-978,-3307], -[0,-1501,-5401,-10470,-3122], -[1,3,5507], -[0,5508,5509,5510,11], -[0,-812,-10471], -[0,-932,-943,-958,-966,-968,-974,-1405,-1501,-1654,-2293], -[0,-1501,-5401,-6656,-5142,-10472], -[1,3,5512], -[0,5513,5514,5515,4], -[0,-1717,-1974,-10473,-2071,-2550,-1548,-2286,-1004,-617,-10474], -[0,-664,-510,-1654,-2210,-2198,-2293,-710], -[0,-5418,-1986,-8615,-2071], -[1,3,5517], -[0,5518,5519,5520,4], -[0,-10475,-834,-932,-10476,-10477,-986,-10478,-1276,-1309,-1458,-1459,-1650,-2172,-2231,-2234,-2297,-10479], -[0,-707,-10480,-963,-10481,-2125,-2177], -[0,-4004], -[1,3,5522], -[0,5523,5524,5525,5], -[0,-5895], -[0,-519,-2177,-10482,-2384,-2541], -[0,-10483,-9318,-1764,-7861,-5897,-10484,-10485,-3551], -[1,3,5527], -[0,0,5528,5529,4], -[0,-1464,-10486,-589,-10487,-10488,-1414,-1446,-1548,-1627,-1963,-10489,-2111,-10490,-2424], -[0,-9826,-5112,-6187,-6188,-2444], -[1,3,5531], -[0,0,5532,5533,9], -[0,-2247,-1344,-1471,-1654,-2210,-932,-10491,-2127,-10492,-10493,-2416,-1482,-1489,-1534,-10494,-10495,-10496,-1480,-4062, --1478,-10497,-1475,-1487,-1479,-1486,-10498,-10499], -[0,-10500,-6917], -[1,3,5535], -[0,0,5536,5537,10], -[0,-589,-1023], -[0,-1519,-10501,-7210,-10502,-2265,-10503], -[1,3,5539], -[0,0,5540,5541,6], -[0,-8511], -[0,-7210,-10504,-5538,-3276], -[1,3,5543], -[0,5544,0,5545,8], -[0,-1787,-1371,-2323,-1866,-2247,-2446,-668,-999,-1392,-1826,-2218,-4701,-2550,-10505,-815,-9809,-1831,-2125,-2177,-914, --1442,-1827,-2346,-10506,-1077,-1098,-1376,-1591,-10507,-5917,-10508,-715,-1399,-1418,-1645,-10509,-293,-1100,-1686, --2654,-2410,-10510,-755,-1108,-10511,-10512,-2202,-1363,-10513,-1769,-10514,-2115,-10515,-2267,-2551,-10516,-305,-8500, --4236,-10517,-10518,-10519,-1767, --280,-10520,-10521,-2530,-283,-1770,-4283,-4716,-2450,-10522,-10523,-10524,-10525,-10526], -[0,-1520,-10440,-10527], -[1,3,5547], -[0,5548,5549,5550,6], -[0,-10528,-8501,-2387], -[0,-350,-4062,-351,-427,-428,-10529,-10530,-664,-652,-668,-755,-767,-932,-1077,-6720,-1107,-1111,-1127,-1132,-1134,-1137, --1152,-1161,-1162,-10531,-1418,-10532,-10533,-9237,-1646,-1654,-10534,-1771,-1856,-10535,-1874,-1961,-10536,-2114,-2127, --2140,-2142,-2177,-2200,-2351,-2379,-2410,-5252], -[0,-10537,-10538,-10539,-775,-10540,-10541,-10542,-10543,-10544,-1521,-10545,-10546,-4730,-10547,-3215,-3277,-10548, --10549,-5553,-3770,-3271,-10550,-10551], -[1,3,5552], -[0,0,5553,5554,4], -[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-533,-767,-774,-824,-825,-932,-940,-6929,-958,-959,-965,-967,-978,-1110,-1344, --1415,-1521,-10552,-1534,-1623,-1771,-1942,-2251,-2269,-2411,-2501], -[0,-2501,-5932,-1521,-10546,-10545,-775,-3277], -[1,3,5556], -[0,5557,5558,229,4], -[0,-10553,-10554,-10555], -[0,-1788,-2322,-2446,-468,-571,-1274,-2250,-2410,-3037,-40,-10556,-10557], -[1,3,5560], -[0,5561,5562,5563,8], -[0,-10559,-6127,-10560], -[0,-10561,-1788,-1107,-2322,-2331,-1032,-2125,-5420,-891,-1274,-1733,-2250,-767,-10562,-10563,-6128,-10564,-10565,-829, --10566,-10567], -[0,-10558,-1523], -[1,3,5565], -[0,5566,5567,229,11], -[0,-9508,-10568,-10569,-10570,-10571,-10572], -[0,-1788,-2322,-465,-2210,-468,-1032,-5420,-10573,-10574,-1274,-2250,-10562,-633,-2151,-10575,-10576,-725,-10577,-10578, --829,-10556,-10567], -[1,3,5569], -[0,0,5570,5571,11], -[0,-519,-10579,-10580,-10581,-10582,-10583,-10584,-1703,-10585,-2354,-2541], -[0,-1526,-10582,-10586,-10587,-2265,-7377,-834,-5922,-1087,-6547,-4310,-7378,-10588,-10589,-5554,-5572,-10590], -[1,3,5573], -[0,5574,29,5575,10], -[0,-280,-4280,-10591,-834,-1645,-1767,-1831,-2323], -[0,-1764,-1776,-4303,-687,-834], -[1,3,5577], -[0,5578,5579,5580,5], -[0,-280,-4283,-283,-680,-1767,-1831,-1957,-10592,-2059,-2177,-2202,-4297], -[0,-4298,-4299,-4300,-4286,-668,-7755,-10593,-2319], -[0,-1764,-1776,-4303,-687,-4304,-1528], -[1,3,5582], -[0,5583,29,5584,5], -[0,-280], -[0,-1764,-1776,-4303,-687,-5889,-10594,-10595], -[1,3,5586], -[0,0,5587,5588,4], -[0,-21,-23,-3367,-3350,-40,-43,-4062,-3266,-539,-664,-757,-10596,-767,-10597,-1405,-1415,-10598,-10599,-1646,-1654,-1771, --1788,-10600,-2104,-2125,-2127,-2387], -[0,-9917,-9918,-6240,-3962,-3162,-10601], -[1,3,5590], -[0,5591,5592,5593,6], -[0,-1015,-1048,-10602,-10603,-1396,-2068,-2114], -[0,-711,-932,-937,-940,-966,-1001,-1654,-1788,-2210], -[0,-4376], -[1,3,5595], -[0,0,5596,5597,4], -[0,-2581,-3136,-3037,-3806,-755,-1415,-2410,-2447], -[0,-755,-727,-3870,-7282], -[1,3,5599], -[0,0,0,5600,6], -[0,-10604,-7920,-10605,-3264,-1437,-10606,-10607,-2006,-2398,-2435], -[1,3,5602], -[0,5603,5604,5605,8], -[0,-719,-1536,-1639,-3610,-3535,-2548], -[0,-8280,-50,-86,-3307,-190,-3664,-6593,-10608,-767,-932,-940,-965,-967,-4814,-1344,-1661,-1942,-2177,-2410,-2469], -[0,-7148,-5889,-10609,-932,-1942,-2281,-707,-8169,-7440,-3276,-5874], -[1,3,5607], -[0,5608,5609,5610,4], -[0,-10610,-10611,-1398,-1399,-10612,-10613,-10614,-1826,-2153], -[0,-708,-826,-9464,-1534,-1574,-1788,-1939,-2239,-5747], -[0,-687,-4107,-4108,-4109,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], -[1,3,5612], -[0,5613,5614,158,6], -[0,-696,-713,-996,-1575,-2124,-2528], -[0,-5745,-2153,-5747], -[1,3,5616], -[0,5617,5618,7,8], -[0,-10615,-10616,-3297], -[0,-10617,-10618,-4686,-10619,-4690,-2387], -[1,3,5620], -[0,5621,5622,5623,5], -[0,-1548,-1646,-632,-10620,-731], -[0,-1654,-2210,-932,-1663,-1405], -[0,-475,-6205,-5142,-3844,-3113], -[1,3,5625], -[0,5626,5627,5628,6], -[0,-1812,-754,-2178,-714,-1676,-729,-679,-10621,-2186,-994,-1792,-10622,-9502], -[0,-1654,-932,-1452,-2293], -[0,-3577,-3113,-3673,-3844,-1334,-687], -[1,3,5630], -[0,5631,5632,7,4], -[0,-679,-10623,-6696,-2531], -[0,-711,-1654,-2198,-2210], -[1,3,5634], -[0,5635,5636,5637,4], -[0,-6838,-1107,-10532,-1442,-9641,-1542,-1548], -[0,-1127,-1144,-1149,-9650,-9280,-1158,-1972,-2210], -[0,-9219,-2548,-6838,-1127,-727], -[1,3,5639], -[0,5640,5641,5642,4], -[0,-506,-1686,-1872,-10624], -[0,-1127,-1132,-2889,-2541], -[0,-3015,-1107,-1127,-6994,-5572,-10625,-5574,-4792,-8906], -[1,3,5644], -[0,0,5645,7,6], -[0,-756,-932,-966,-1415,-1942,-2251], -[1,3,5647], -[0,5648,5649,5650,4], -[0,-10293,-1586,-10626,-10627,-10628,-10629,-10630,-10631,-2783,-10632,-10633,-10634,-10635,-10636,-10637,-10638,-10639], -[0,-1729,-2337], -[0,-7646,-3844,-3578,-3673,-3577,-3113,-754,-1640,-3691,-4215,-3690,-1971,-1586,-3445,-3100,-10640,-1339,-1334,-5735, --1342], -[1,3,5652], -[0,5653,5654,5655,4], -[0,-10347], -[0,-527,-528,-534,-535,-6079,-559,-10641,-571,-10642,-647,-754,-940,-1127,-5974,-1130,-1136,-1137,-1148,-1149,-10643, --1152,-1655,-10644,-7845,-1161,-10645,-7848,-1344,-1534,-1542,-1654,-1942,-10646,-5508,-2410,-2416,-2501,-2505], -[0,-10647,-10648,-6005,-10649], -[1,3,5657], -[0,5658,27,7,11], -[0,-523,-812,-10650,-2550], -[1,3,5660], -[0,5661,5662,5663,4], -[0,-755,-812,-1026,-10651,-2550], -[0,-528,-6048,-554,-558,-559,-849,-869,-932,-943,-958,-959,-966,-968,-972,-974,-1415,-1806,-10652,-2177], -[0,-10653,-10654,-5880,-10655,-7148,-2552,-1764,-8170,-7107,-1838], -[1,3,5665], -[0,0,0,5666,4], -[0,-3209,-10656,-2444], -[1,3,5668], -[0,0,0,5669,4], -[0,-3184,-3209,-10656,-2444], -[1,3,5671], -[0,0,0,5672,10], -[0,-10657,-7370], -[1,3,5674], -[0,0,0,5675,4], -[0,-10657,-656], -[1,3,5677], -[0,0,0,5678,5], -[0,-10657,-10658], -[1,3,5680], -[0,0,0,5681,4], -[0,-10657,-811], -[1,3,5683], -[0,0,0,5684,5], -[0,-10657,-10659], -[1,3,5686], -[0,0,0,5687,5], -[0,-10657,-5841], -[1,3,5689], -[0,0,0,5690,5], -[0,-10657,-6283], -[1,3,5692], -[0,0,0,5693,9], -[0,-10657,-9052], -[1,3,5695], -[0,0,0,5696,9], -[0,-10657,-10660], -[1,3,5698], -[0,0,0,5699,4], -[0,-10657,-10661], -[1,3,5701], -[0,0,0,5702,4], -[0,-10657,-10662], -[1,3,5704], -[0,0,0,5705,4], -[0,-1548,-10657,-10656,-2444], -[1,3,5707], -[0,0,0,5708,5], -[0,-10657,-10663], -[1,3,5710], -[0,0,0,5711,4], -[0,-10657,-10664], -[1,3,5713], -[0,0,0,5714,4], -[0,-10657,-6917], -[1,3,5716], -[0,0,0,5717,10], -[0,-10657,-5913], -[1,3,5719], -[0,0,0,5720,4], -[0,-10657,-1631], -[1,3,5722], -[0,0,0,5723,4], -[0,-10657,-10665], -[1,3,5725], -[0,0,0,5726,5], -[0,-10657,-10666], -[1,3,5728], -[0,0,0,5729,5], -[0,-10657,-8127], -[1,3,5731], -[0,5732,0,5733,4], -[0,-9496,-9497], -[0,-10657,-3110], -[1,3,5735], -[0,0,0,5736,5], -[0,-10657,-7329], -[1,3,5738], -[0,0,0,5739,4], -[0,-10657,-10667], -[1,3,5741], -[0,5742,5743,5744,5], -[0,-6703,-8038,-922,-7219,-10668,-10669,-10670], -[0,-1788,-2322,-1344,-10671,-932,-4896,-10672,-1534,-6707,-6709,-6706,-6708], -[0,-1573,-3444,-812,-648,-2520], -[1,3,5746], -[0,5747,5748,5749,5], -[0,-8416,-6861], -[0,-2541,-519,-2384,-2269], -[0,-4112,-687,-7095,-3958,-8132,-8618,-8619,-8620,-1040,-8621,-7084,-1573,-5545,-3974,-3973], -[1,3,5751], -[0,5752,5753,5754,4], -[0,-480,-690,-2219,-2269,-2528], -[0,-3037,-2267,-10673,-2384,-6786,-2541], -[0,-1573,-3444,-5545,-687,-3974,-4110,-4000,-5550,-10674,-10675,-10676,-8991,-3973,-1959,-10677,-5176], -[1,3,5756], -[0,5757,5758,5759,5], -[0,-10678,-812,-7142,-2124,-10679], -[0,-86,-3307,-10680,-5902,-9818,-932,-934,-940,-8246,-958,-967,-1077,-1344,-1392,-1788,-1942,-1972,-2319,-2410], -[0,-5545,-1573,-6459,-3966], -[1,3,5761], -[0,0,5762,5763,5], -[0,-9569,-3037,-1127,-1132,-1134,-1136,-1137,-10681,-1144,-1148,-1149,-10682,-10683,-1412,-2379,-2410], -[0,-1573,-3444,-5545,-4865], -[1,3,5765], -[0,0,5766,5767,10], -[0,-6132,-1942,-2410], -[0,-10684,-1578,-10685], -[1,3,5769], -[0,5770,5771,5772,6], -[0,-888,-828,-10686,-510,-812,-10330,-1004,-10687,-583,-615,-1369,-1752,-617,-2185,-10688,-10689,-10690,-10691,-10692, --2425,-10693,-10694,-10695,-10696], -[0,-1788,-664,-1127,-1471,-1654,-2210,-2518,-932,-756,-1132,-10697,-2293,-633,-838,-2211,-1155,-1482,-1152,-744,-10698, --10699,-1010,-1130,-1156,-1472,-10700,-1149,-10701,-1148,-10354,-10702,-1475,-10355,-10703,-1479,-7707], -[0,-3578,-5728,-3691,-3690,-1004,-2118,-1501,-6120,-7107,-5378,-1691,-7684,-6857,-1671,-10704,-1682,-10425,-6321,-2227, --10705,-3161,-3162,-10706], -[1,3,5774], -[0,5775,5776,196,5], -[0,-3187], -[0,-633,-913,-2319], -[1,3,5778], -[0,5779,5780,5781,9], -[0,-10707], -[0,-2392,-1344,-2331,-932,-1548,-825,-2379,-2410,-3037,-3044,-3617,-86,-10708,-10709,-5918,-10710,-3307], -[0,-7685,-7773,-891,-10711,-10712,-1055,-4182,-8427,-10713,-10714,-4865,-985], -[1,3,5783], -[0,0,5784,5785,5], -[0,-3037,-589,-928,-1610,-1650,-1942,-2319,-2386,-2402], -[0,-10715,-10413,-3324], -[1,3,5787], -[0,0,5788,5789,10], -[0,-3561,-407,-3667,-2127,-2132,-2410,-2466,-2469,-10716,-10717,-10718], -[0,-10719,-10720,-10721,-10722,-10723,-10724,-10725,-10726,-10727], -[1,3,5791], -[0,5792,5793,5794,9], -[0,-510,-596,-10728,-1696], -[0,-756,-1405,-1650,-1654,-1657,-2198], -[0,-6527,-640,-10729,-1958,-10095,-7069,-7068,-9235,-8640,-7715,-8642,-7066,-10730,-10731,-7334,-10732,-10733,-6337, --10502,-10734,-10735,-10736,-4162,-10737,-10738,-10739,-10740,-10741], -[1,3,5796], -[0,5797,5798,5799,5], -[0,-10742,-10743,-6789,-10508,-717,-718,-10744,-10293,-1501,-10745,-1805,-1982,-6791,-7576], -[0,-1448,-10639,-1729,-10746,-2337], -[0,-1586,-3844,-1334,-5735,-1342,-3445,-1339,-7646,-3578], -[1,3,5801], -[0,5802,5803,5804,8], -[0,-668,-715,-812,-910,-5672,-10415,-10747,-1040,-1075,-1286,-10748,-1292,-1380,-1442,-10521,-10749,-1650,-1816,-1951, --5353,-4242,-2098,-2101,-10750,-3669,-2359,-7699,-2427,-7669,-2429,-5356,-2446,-5358,-2518,-2530,-10751,-2550], -[0,-10752,-3198,-5334,-3660,-10753,-10754,-3037,-3628,-4231,-3738,-10755,-9284,-3041,-767,-8364,-2218,-2269,-2410,-2447], -[0,-1599,-10756,-10757,-3634,-856], -[1,3,5806], -[0,5807,5808,5809,8], -[0,-3115], -[0,-190,-351,-3561,-589,-8349,-740,-932,-1942,-2910,-2127,-2232,-2234,-2469], -[0,-2265,-10758,-6915,-7651,-6431], -[1,3,5811], -[0,5812,5813,5814,6], -[0,-2531,-523,-1449,-2387,-997,-1548,-1388,-3679,-7967], -[0,-932,-2402,-4204,-2410,-3037,-1771,-4647,-3044,-428,-4659,-10759,-427], -[0,-10760,-8911,-2410,-840,-4601,-9111,-3214,-10761,-10762,-10763,-10764,-10765,-9840,-10766,-10767,-7085,-10768,-10769, --856,-10770,-10771,-1589], -[1,3,5816], -[0,5817,5818,5819,4], -[0,-668,-1015,-1111,-2462,-1686,-1849,-2271], -[0,-1127,-1654,-2198,-1132], -[0,-622,-1168,-7419,-9219], -[1,3,5821], -[0,0,5822,5823,4], -[0,-4035,-3037,-519,-1119,-10772,-2331,-2384,-2541], -[0,-8988,-1650,-9218,-7411,-7410,-7421,-7420,-1847,-8807,-6370,-10773,-10774,-7371,-8990,-1076,-7422,-7000], -[1,3,5825], -[0,0,0,5826,5], -[0,-9218], -[1,3,5828], -[0,5829,5830,5831,4], -[0,-4733,-503,-578,-615,-10775,-1468,-10776,-1850,-2424,-2538], -[0,-3037,-633,-10777,-10778,-932,-10779,-1654,-2330,-2410,-2416], -[0,-8703,-3264,-10780,-10781,-1599,-3437], -[1,3,5833], -[0,5834,5835,5836,6], -[0,-3698,-6486,-10782,-10783,-10784,-10785,-10786,-10787,-10788,-10789,-469,-583,-668,-3910,-3911,-693,-9229,-9759,-1442, --1465,-1540,-1658,-1692,-1729,-1753,-1851,-1857,-1878,-2080,-2153,-2193,-2223,-2245,-2409,-10790,-2435], -[0,-10791,-10792,-4353,-10793,-10794,-2980,-8850,-10795,-3617,-3660,-4201,-5363,-4203,-427,-428,-932,-940,-967,-1076, --1415,-1847,-1942,-2234,-2293,-2375,-2376,-2383,-2410], -[0,-3445,-3690,-3691,-3967,-2410,-7685,-10796,-10797,-7643,-10798,-10799,-10800,-10801,-10802,-3742,-10425,-1691,-2409, --5406,-6120,-3173,-10803,-6005,-5940,-10804,-10805,-10806,-10807,-10808,-10809,-6113,-10810,-1594], -[1,3,5838], -[0,0,5839,5840,5], -[0,-3244,-2658,-250,-252,-254,-10811,-10812,-3044,-3037,-3040,-3052,-427,-428,-703,-784,-932,-10813,-970,-1548,-2634, --1889,-1891,-1906,-10814,-10815,-1942,-2006,-2019,-2193,-4245,-2592,-2391,-2410], -[0,-3160,-10816,-10817,-3824,-10818,-10819,-2006,-10820,-2410,-3214,-3577,-3100,-3477,-3160,-10821,-4015,-7566,-10822, --3095], -[1,3,5842], -[0,0,5843,7,5], -[0,-8392,-8394,-8393,-994,-8388], -[1,3,5845], -[0,0,5846,5847,6], -[0,-3037,-427,-428,-3664,-518,-652,-932,-935,-948,-1449,-10823,-2162,-2281,-3436,-2410,-2466,-6859,-2469], -[0,-10824,-3004,-3862,-10825,-5553], -[1,3,5849], -[0,5850,71,5851,4], -[0,-1758], -[0,-1599,-10826,-3272], -[1,3,5853], -[0,5854,5855,5856,5], -[0,-503,-3223,-10827,-10828,-10829,-10830], -[0,-3326,-350,-351,-3266,-5514,-589,-652,-664,-932,-943,-1004,-1103,-1304,-1429,-3245,-1602,-3650,-1603,-3427,-10831, --10832,-10833,-10834,-3651,-3668,-1654,-10835,-1708,-2127,-2195,-2293], -[0,-1599,-3215,-8630,-1600,-10836], -[1,3,5858], -[0,0,5859,5860,8], -[0,-3234,-519,-3425,-1637,-2234,-2250], -[0,-1599,-1600,-10836,-5147,-10837], -[1,3,5862], -[0,0,230,5863,5], -[0,-10836,-1600,-1599], -[1,3,5865], -[0,0,230,5866,8], -[0,-10836,-1600,-1599,-10838,-10839,-10840,-10841], -[1,3,5868], -[0,5869,5870,5871,4], -[0,-719,-883,-1015,-1304,-1860,-2102,-10842,-2347,-2359], -[0,-756,-1405,-10843,-2250,-2322], -[0,-1599,-6528,-5845,-3110], -[1,3,5873], -[0,0,5874,5875,4], -[0,-3037,-652,-668,-1942,-2094,-2100,-2269,-2399,-2410,-2541], -[0,-9846,-1599,-10844,-4002,-6724,-5554], -[1,3,5877], -[0,0,5878,5879,11], -[0,-7057,-3037,-3040,-3052,-10845,-928,-2006,-2019,-2034,-10106,-10846,-2410,-2476], -[0,-1599,-10847,-2006,-1940,-4146,-2476,-5173,-3944,-9608,-10848,-2034,-3264], -[1,3,5881], -[0,5882,88,5883,4], -[0,-725,-10849,-1125,-10850,-10851,-10852,-1646,-10853,-9323,-2102,-10854,-9403], -[0,-10837,-8630,-3671,-10855,-856,-10856,-10857,-9409,-10858,-1599,-3437,-3862,-4328,-4846,-2102,-10859,-7650,-4065,-4002, --10860,-10861,-10862,-6234], -[1,3,5885], -[0,5886,5887,5888,5], -[0,-1638,-10863,-10864,-10865,-10866,-10867,-10868,-10869,-2267], -[0,-190,-3748,-469,-519,-652,-2736,-932,-960,-965,-971,-978,-10870,-1111,-1442,-8274,-1461,-1600,-10831,-10834,-3651, --10871,-8345,-1771,-2335,-2362,-2410,-2501,-2503], -[0,-1599,-7148,-3437,-10872,-1608], -[1,3,5890], -[0,5891,5892,5893,10], -[0,-719,-822,-1353,-1442,-1461,-10873,-1608,-1600,-1645,-10874,-10430,-2654], -[0,-519,-8345,-2541], -[0,-1599,-1608,-687,-5732], -[1,3,5895], -[0,0,5896,5897,4], -[0,-2832,-10875,-10876,-7040,-3471,-3472,-7041,-7042,-674,-8630,-767,-5382,-928,-10877,-932,-1304,-1600,-10878,-10879, --10880,-2125,-2174,-9764,-2387,-2410], -[0,-1599,-10881,-3264], -[1,3,5899], -[0,5900,5901,163,4], -[0,-4321,-4322,-3649,-4323,-4309,-4320,-4308,-1395,-4313,-4318,-4314,-4315,-4311,-4316,-4319,-1550,-1554,-4317,-1600, --1603,-4324,-4325,-3430,-4312,-2161,-4310], -[0,-633,-674,-1107,-4327,-1654,-4326,-2250,-2251], -[1,3,5903], -[0,5904,0,7,4], -[0,-891,-10882], -[1,3,5906], -[0,5907,0,160,10], -[0,-567,-10883,-1493,-1566,-1571,-1967,-10884,-2055,-2069,-10885,-2489], -[1,3,5909], -[0,5910,5911,5912,8], -[0,-44,-10886,-10300,-10887,-5898,-10888,-2172,-6751,-10889], -[0,-23,-5585,-3391,-38,-40,-43,-8380,-3621,-427,-428,-507,-534,-652,-708,-824,-10890,-920,-932,-940,-943,-958,-964,-965, --967,-968,-1002,-10891,-1022,-1107,-1168,-1174,-1276,-10892,-1471,-1479,-1482,-1483,-1491,-3079,-1492,-1650,-1654,-1656, --10893,-10894,-10895,-10896,-10897,-10898,-1942,-1958,-2210,-10899,-2354,-2379,-2410,-2501,-10900], -[0,-10684,-10901,-7163,-10902,-10903,-3215,-8130,-6240,-6245,-10904,-10905,-7521,-5119], -[1,3,5914], -[0,5915,5916,7,10], -[0,-6130,-10906,-5852], -[0,-1654,-2501], -[1,3,5918], -[0,0,5919,5920,9], -[0,-1654,-2250], -[0,-1616,-10907,-10908], -[1,3,5922], -[0,5923,5924,5925,4], -[0,-4251,-4231,-10909,-9596,-5348,-1638,-10910,-10911,-10912,-10913,-10869,-10914], -[0,-3037,-652,-10915,-928,-7324,-2586,-1290,-1619,-10916,-1942,-2094,-2100,-2334,-2399,-2410,-2541], -[0,-3272,-1599,-10881,-10917,-10918,-1838,-4132,-10919,-9590,-3590,-2444], -[1,3,5927], -[0,5928,5929,5930,5], -[0,-5334,-4251,-9581,-9596,-10920,-10921,-9583,-2429,-5358], -[0,-3037,-9586,-652,-1290,-1294,-1618,-10922,-10923,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-9590,-10918,-10917,-9589,-9588,-2444,-3590,-1599,-3264], -[1,3,5932], -[0,0,5933,5934,6], -[0,-469,-4712], -[0,-6582,-10924,-10925,-775], -[1,3,5936], -[0,5937,0,5938,5], -[0,-10926,-10927], -[0,-10928,-3324,-3323,-9844,-10929,-10930,-10931,-10932,-1622,-10933,-7684], -[1,3,5940], -[0,5941,5942,5943,4], -[0,-10934,-10935,-10936,-10937,-10938,-10939,-10940,-10941,-10942,-10943,-10944,-10945,-10946,-2387], -[0,-3136,-6325,-3037,-496,-507,-640,-1331,-1344,-10947,-1415,-1848,-1942,-1958,-2062,-2125,-2325,-2375,-2376,-2379,-2388, --10948,-2410,-2435,-2444,-2501,-2503,-2505], -[0,-1076,-7422,-10949,-1626,-1623,-6656,-8801,-10467,-10412,-10950,-9614,-4004,-3634,-4215,-10951,-10952,-10953,-10954, --10955,-10956,-10957,-10958], -[1,3,5945], -[0,0,5946,5947,5], -[0,-5295,-3268,-3136,-10959,-8216,-3037,-427,-428,-589,-767,-932,-940,-959,-967,-1002,-10960,-1415,-1559,-1565,-1605, --10961,-5969,-9642,-10962,-1816,-1942,-2125,-2127,-2138,-2140,-2141,-2214,-2375,-2379,-2387,-2410], -[0,-5913,-10963,-3324,-6187], -[1,3,5949], -[0,0,5950,5951,5], -[0,-664,-1168,-2210,-10964,-1231,-2211,-1224,-1220,-1453], -[0,-3324,-10965,-5493,-6005], -[1,3,5953], -[0,5954,5955,5956,8], -[0,-10966,-2062], -[0,-599,-6774,-756,-932,-1405,-1654,-2198], -[0,-1076,-10412], -[1,3,5958], -[0,0,5959,5960,5], -[0,-1003,-1654,-1127,-1132,-1156,-1144,-1980], -[0,-10412,-4004,-5827,-3674,-8027,-640], -[1,3,5962], -[0,0,5963,7,4], -[0,-1654,-2198,-1733], -[1,3,5965], -[0,68,15,16,6], -[1,3,5967], -[0,0,5968,5969,5], -[0,-350,-4062,-351,-5918,-5686,-519,-10967,-722,-813,-10968,-10969,-999,-1111,-1366,-10970,-6904,-3609,-2060,-5120,-2127, --2132,-2134,-4621,-10971,-2384,-2400,-2410,-2541,-2551], -[0,-687,-8425,-2444,-3590,-4187,-4378,-3957,-6722,-1630,-10972,-10973,-3215,-5829,-5272,-3962,-7095,-4000], -[1,3,5971], -[0,0,5972,5973,4], -[0,-3035,-3621,-3037,-664,-726,-1654,-2410,-2501,-2503], -[0,-1631,-7371,-1015,-702,-7208,-4865], -[1,3,5975], -[0,0,5976,7,4], -[0,-10974,-1405], -[1,3,5978], -[0,5979,5980,5981,4], -[0,-679,-719,-812,-1125,-6796,-10975,-1639,-10976,-10977], -[0,-3244,-190,-10978,-4715,-3198,-4036,-3037,-10979,-652,-932,-958,-965,-1110,-1654,-1942,-2091,-2362,-2410], -[0,-5142,-5372,-6656,-9204,-3258,-3260,-3262,-1599,-3259,-1633,-2548], -[1,3,5983], -[0,5984,0,7,10], -[0,-10980,-5676,-1343,-10981,-10982,-2125,-2177,-2323,-2359], -[1,3,5986], -[0,5987,5988,7,8], -[0,-2453,-812,-1636,-1840], -[0,-1654,-932,-1405,-2293,-966,-958,-968,-943,-963,-974], -[1,3,5990], -[0,0,5991,5992,5], -[0,-1654,-1405], -[0,-1334,-1636], -[1,3,5994], -[0,5995,5996,5997,11], -[0,-23,-26,-10983,-3077,-3203,-3408,-3357,-40,-6056,-41,-4066,-3326,-350,-4062,-351,-10984,-10985,-518,-3766,-10986, --10987,-9459,-644,-656,-930,-1044,-1273,-1496,-1566,-1889,-1948,-2127,-5994,-4753,-2140,-2142,-2144,-5037,-2334,-10988, --2387,-2410], -[0,-21,-5870,-10989,-8280,-50,-533,-767,-10990,-932,-10991,-940,-967,-985,-1077,-1344,-1415,-1534,-10992,-1942,-2082, --2125,-2194,-2269], -[0,-4161,-2127,-10993], -[1,3,5999], -[0,6000,0,6001,4], -[0,-3198,-812,-10909,-9596,-10863,-10994,-7666,-10995,-10996,-10910,-2785,-10912,-10997,-10920,-10998,-10913,-10869], -[0,-8630,-3116,-4329,-3264,-7184,-1599,-10881,-3437,-2427,-1838,-3215,-3862,-1958,-2093,-7650,-4065,-8451,-3579], -[1,3,6003], -[0,6004,6005,6006,5], -[0,-9968,-1864], -[0,-1654,-1645,-10999,-1202], -[0,-6836,-11000,-11001,-7727,-11002,-8130,-9969,-11003,-6656,-6999,-7724,-5573,-1107,-9095,-9096,-9970,-11004,-11005, --11006,-5572,-5912,-3581,-10590,-1639,-1645,-1686,-11007,-11008,-1847,-5574,-5064,-11009,-5569,-5570,-8129,-5550,-11010, --9087], -[1,3,6008], -[0,0,6009,6010,4], -[0,-11011,-3713,-3037,-427,-428,-668,-11012,-1641,-1942,-11013,-11014,-2410], -[0,-5195,-6656,-1640,-11015,-11016,-2444], -[1,3,6012], -[0,6013,129,6014,10], -[0,-11015], -[0,-1640,-3694], -[1,3,6016], -[0,119,120,6017,4], -[0,-11017,-11018,-11019,-11020,-11021,-11022,-11023,-11024,-11025,-11018,-11026,-11027,-11028,-11029,-11030,-11031,-11032, --11033,-11034,-11035,-11036,-9234,-11037,-11038,-11039,-11040,-11041,-11042,-11043,-11044,-11045,-11046,-7530,-11047, --11048,-7561,-7562,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-11049,-7283,-6582,-7534,-7535,-7536,-7537,-7538, --7539,-7540,-7541,-7542,-7543,-7544,-7545,-8807,-6599,-5756, --11050,-11051,-7503,-7371,-7546,-7547,-7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558, --7559,-5063,-7560,-11052,-6187,-7563,-856,-7275], -[1,3,6019], -[0,6020,6021,6022,11], -[0,-2168,-2321], -[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-3037,-620,-767,-774,-778,-824,-825,-920,-932,-940,-6929,-958,-959,-960,-965, --967,-978,-1041,-1110,-1344,-1415,-1419,-1449,-1534,-1623,-1771,-1942,-2162,-2163,-2251,-2410,-2411,-2501,-2503,-2505], -[0,-2501,-775,-7347,-6211], -[1,3,6024], -[0,6025,6026,6027,5], -[0,-11053,-367,-683,-11054,-812,-928,-1047,-11055,-3751,-11056,-11057,-2334,-11058,-11059], -[0,-11060,-932,-11061,-11062,-4653,-11063], -[0,-1644,-7173,-3756,-775,-5094,-3264,-6118], -[1,3,6029], -[0,6030,6031,7,11], -[0,-11064], -[0,-2319,-2386,-1650,-2402,-1942,-3037], -[1,3,6033], -[0,0,6034,6035,4], -[0,-515,-1788,-2322,-932,-1777,-1365,-516,-2156,-5834], -[0,-4378,-9568,-3215,-1813], -[1,3,6037], -[0,6038,6039,6040,4], -[0,-719,-1730], -[0,-8477,-1415,-1942,-2375,-2410], -[0,-11065,-11066,-11067], -[1,3,6042], -[0,0,6043,6044,9], -[0,-11068,-3037,-5866,-652,-940,-1942,-2319,-2379,-2402,-2410], -[0,-8988,-7421,-11069,-9218,-11070,-7371,-5269], -[1,3,6046], -[0,6047,6048,7,5], -[0,-461,-1852,-6568,-11071], -[0,-3037,-3664,-672,-932,-944,-3190,-1431,-1942,-6570,-2410,-2423,-2469], -[1,3,6050], -[0,0,6051,6052,4], -[0,-23,-26,-33,-38,-40,-42,-44,-11072,-1059], -[0,-1652,-11073,-5927,-3159,-2006,-3476,-11074,-6106,-11075,-11076,-11077,-11078], -[1,3,6054], -[0,6055,6056,6057,5], -[0,-11079], -[0,-1652,-11079,-11080], -[0,-1652,-11073,-3159,-2006,-3476,-11074], -[1,3,6059], -[0,6060,6061,6062,4], -[0,-1297,-1681,-834,-1107,-812,-2550,-1047,-1442,-679,-1645,-1863,-3730,-1574,-2551,-11081,-7408,-2297,-11082,-2271,-930, --2182], -[0,-1788,-664,-1498,-1446,-1471,-2210,-11083,-932,-1708,-2093,-2125,-2127,-2177,-1110,-11084,-2501,-1942,-767,-190,-11085, --2410,-11086,-3037,-1339,-1482,-1600,-2503,-3041,-711,-1607,-1772,-4655,-27,-11087,-11088,-11089,-11090,-965,-3781,-1609, --11091,-3425,-1603,-3060,-1601,-4062,-11092,-4066,-1483,-1488,-1475,-350,-11093,-2144,-5995,-2136,-351,-9701,-11094, --11095], -[0,-1654,-4004,-3440,-4873,-2319,-3634,-664,-5855,-519,-1415,-2322,-1412,-1471], -[1,3,6064], -[0,6065,6066,6067,6], -[0,-4377,-1978], -[0,-664,-1654,-10534,-2410], -[0,-1654,-3636,-1978,-11096], -[1,3,6069], -[0,6070,6071,6072,5], -[0,-812,-1616,-1650,-2269,-6597], -[0,-357,-664,-11097,-932,-1654,-2125,-11098,-11099], -[0,-1654,-11100,-6863], -[1,3,6074], -[0,0,0,6075,11], -[0,-1654,-6863,-11101,-4005], -[1,3,6077], -[0,0,6078,6079,5], -[0,-664,-932,-9072,-1654,-2125,-2177], -[0,-4215,-1076,-4004,-8101,-8801,-10412], -[1,3,6081], -[0,6082,6083,6084,8], -[0,-11102,-1083,-11103,-11104,-1285,-1402,-1794], -[0,-2832,-5834,-8084,-11105,-11106,-11107,-11108,-11109,-8088,-11110,-8089,-8939,-8090,-8091,-8092,-8093,-3037,-11111, --8094,-8096,-516,-5835,-921,-932,-993,-1065,-1283,-1365,-1777,-1788,-2156,-2322], -[0,-3634,-4215,-7208,-7153,-5846,-11112,-4004,-6693,-11113], -[1,3,6086], -[0,6087,6088,231,4], -[0,-5505,-1759], -[0,-767,-932,-1654], -[1,3,6090], -[0,0,27,6091,6], -[0,-4004,-4215,-3966,-1076,-3972], -[1,3,6093], -[0,0,6094,6095,5], -[0,-1654,-2127,-2142,-2198,-2410], -[0,-4121,-4215,-4004], -[1,3,6097], -[0,0,6098,6099,6], -[0,-1405,-1452,-2210,-11115,-2471], -[0,-4215,-8611,-4792,-3551,-3324,-5119,-4004,-11116,-3634,-4873], -[1,3,6101], -[0,75,6102,6103,5], -[0,-1168,-1190,-11117,-1220,-1224,-1231,-11118,-1452,-1453,-2501], -[0,-4215,-11119,-11120], -[1,3,6105], -[0,6106,6107,6108,4], -[0,-4377,-1107,-1496,-1548,-11121,-1582,-1729,-995,-11122,-11123], -[0,-1435,-2384,-11124,-1415,-1680,-11125,-1867,-812,-11126,-648,-11127,-865,-932,-1576,-11128,-473,-1388,-1753,-11129, --2379,-2520,-11130,-11131,-1417,-11132,-1942,-756,-11133,-1418,-1765,-2293,-11134,-1969,-2410,-11135,-3037,-11136,-11137, --11138,-11139,-11140,-11141,-11142,-11143,-10453,-11144,-11145,-966,-11146,-357,-11147,-968,-940,-967,-972], -[0,-11148,-6209,-3161,-3445,-11149,-7586,-11150,-11151,-5078,-9840,-11152], -[1,3,6110], -[0,0,6111,6112,5], -[0,-1989,-2127,-767,-2410,-3037,-1488], -[0,-1666,-4121,-4123,-1838,-3276,-5874,-1348,-9772,-11153], -[1,3,6114], -[0,6115,6116,6117,4], -[0,-1666], -[0,-1127,-1134,-1144,-1146,-1148,-10264,-2410], -[0,-1666,-4121,-4123,-11154,-11155,-11156,-11157,-11158], -[1,3,6119], -[0,6120,6121,6122,5], -[0,-1461,-11159,-11160,-11161,-11162,-1848,-1942,-11163,-11164,-11165,-2548], -[0,-11166,-2970,-3664,-928,-9002,-1874,-2094,-11167,-2410,-2469,-11168], -[0,-3496,-3100,-3577,-11169,-9002,-2548], -[1,3,6124], -[0,0,6125,6126,10], -[0,-190,-3037,-3664,-932,-940,-972,-978,-1942,-2125,-2402,-2405,-7322,-2410,-2411,-2466,-6859,-2469], -[0,-11170,-11171,-11172,-5829,-11173,-3577,-3445], -[1,3,6128], -[0,6129,6130,6131,8], -[0,-6779,-11174,-6780,-6777,-11175,-6776,-8843,-11176,-11177,-2997,-11178,-617,-620,-11179,-637,-709,-719,-744,-767,-787, --865,-919,-1004,-4206,-1010,-1055,-11180,-11181,-1320,-1437,-3725,-1635,-1671,-11182,-1676,-1863,-11183,-2185], -[0,-23,-32,-40,-11184,-11185,-534,-664,-684,-726,-748,-778,-795,-932,-934,-958,-978,-11186,-1041,-1344,-1654,-11187,-1734, --1753,-2275,-2293,-2501,-2503], -[0,-8856,-11188,-7558,-7685,-11189,-3964,-11190,-11191,-6857,-1671,-11192,-11193,-11194], -[1,3,6133], -[0,6134,6135,6136,8], -[0,-637,-11195,-11196], -[0,-1788,-2384,-11197,-664,-668,-1654,-2210,-11198,-2550,-932,-2177,-11199,-1004,-1442,-2379,-1942,-2211,-2410,-3241, --3035,-3037,-667,-11200,-3621,-4372,-11201,-3199,-3617,-11202,-11203,-11204,-11205,-3625,-11206,-11207,-2234,-964,-977, --940,-967,-264,-262,-428,-11208,-6424,-9724,-11209,-427,-4814,-234], -[0,-1671,-9879,-5041], -[1,3,6138], -[0,6139,6140,6141,10], -[0,-11210,-1671,-11211,-11212,-1681,-11213], -[0,-11214,-11215,-3037,-11216,-11217,-11218,-469,-652,-674,-7743,-932,-5984,-1004,-1077,-1304,-9150,-1559,-11219,-8554, --1610,-1650,-1654,-1666,-11208,-11187,-11220,-1705,-1974,-2210,-2655,-2410,-2411,-2446], -[0,-1671,-10855,-6106,-4058,-7685,-11221,-6582,-11222,-5101,-7684,-1818,-7773], -[1,3,6143], -[0,6144,232,6145,5], -[0,-763,-727,-573,-2228,-2424,-2229,-11223], -[0,-1673,-11224,-11225,-8841,-11226,-11227], -[1,3,6147], -[0,6148,232,6149,5], -[0,-727,-729,-1673,-11228,-11223], -[0,-1673,-11229,-11224,-11225,-11230,-5412,-8841,-11231], -[1,3,6151], -[0,6152,6153,6154,8], -[0,-11232,-812,-1671,-11233,-11234,-11235,-11236,-11237,-11238,-1792], -[0,-519,-708,-932,-943,-950,-958,-966,-968,-974,-11239,-11240,-11241,-11242,-11243,-11244,-11245,-1788], -[0,-1675,-1671,-6857,-9879], -[1,3,6156], -[0,6157,6158,6159,5], -[0,-579,-812,-828,-1800,-6825], -[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2239,-2293], -[0,-1004,-1334,-3444,-5401], -[1,3,6161], -[0,44,15,16,10], -[1,3,6163], -[0,6164,6165,6166,10], -[0,-2531,-2124,-812,-11198,-2240,-11246,-11247,-1646,-4204,-1582,-11248,-725,-11249,-2062,-11250,-6279], -[0,-1788,-664,-2322,-2210,-932,-1109,-1650,-2125,-2198,-2226,-928,-1110,-2379,-679,-1942,-11251,-190,-1939,-2091,-2410, --3035,-3037,-8096,-4372,-908,-11252,-11253,-3244,-11254,-5325,-3311,-4805,-11255,-958,-940,-967,-428,-740,-3312,-11256, --427,-4646], -[0,-1680,-11257,-8403,-8404], -[1,3,6168], -[0,0,6169,7,8], -[0,-1344,-1654,-932,-1942,-1003,-1534], -[1,3,6171], -[0,6172,6173,6174,10], -[0,-11258,-719,-812,-10414,-10417], -[0,-86,-3307,-7040,-3472,-7041,-7042,-1654,-2174,-2250], -[0,-7685,-1682,-10424,-3844,-11259,-10704,-11260,-11261,-10417,-11262,-10704,-11263,-5800,-11264], -[1,3,6176], -[0,6177,6178,6179,11], -[0,-2946,-269,-4190,-11265,-743,-1122,-11266,-4193,-4194,-1851,-1863,-11267,-2255,-4195,-2364,-2400,-11268,-2550], -[0,-86,-3307,-11269,-3244,-190,-11270,-3316,-4196,-4197,-3983,-3617,-11271,-3037,-11272,-427,-428,-3310,-523,-5859,-720, --767,-768,-796,-928,-3808,-932,-940,-967,-1004,-1030,-8151,-1107,-1449,-11273,-1498,-1534,-11274,-1942,-2910,-2082,-2125, --3246,-2391,-2410,-2411,-2426,-2437,-2469,-4209,-2501,-4211,-1683], -[0,-3690,-4215,-4041,-8615,-10807,-3844,-5196,-8481,-3634,-3577,-4725], -[1,3,6181], -[0,6182,6183,6184,4], -[0,-11275,-649,-725,-1650,-1792,-2401,-2546], -[0,-821,-1004,-1069,-11276,-1654,-1788,-2125,-2250,-11277], -[0,-4053,-9751,-6463,-1069,-11278,-1004,-5401], -[1,3,6186], -[0,6187,14,6188,4], -[0,-9491,-11279,-1645], -[0,-7727,-5573,-1107,-9095,-9096,-5572,-5912,-1645,-5574,-5064,-9087], -[1,3,6190], -[0,6191,6192,6193,5], -[0,-2418,-1335,-2155], -[0,-1788,-11280,-1654,-932,-1650,-2125,-2291,-2108,-963], -[0,-6656,-7764,-1070,-5827,-5940], -[1,3,6195], -[0,6196,6197,6198,4], -[0,-5573,-1077,-1462,-1548,-3222,-1805,-2446], -[0,-1412,-1788,-11281,-2091], -[0,-793,-3264,-11282,-1688,-11283,-11284], -[1,3,6200], -[0,0,6201,6202,4], -[0,-985,-664,-2568,-1654,-932,-1452,-2127,-1978,-2416], -[0,-1689,-3110,-3261,-888], -[1,3,6204], -[0,0,6205,6206,10], -[0,-865,-1168,-1197,-1251,-1344,-1471,-1475,-1485,-1488,-11285,-11286,-1942,-10496,-1989,-2125,-2127,-2334,-11287], -[0,-4672,-3999,-11288,-7724,-7283,-7581], -[1,3,6208], -[0,6209,6210,7,11], -[0,-595,-2062,-2155,-11289], -[0,-465,-932,-2172,-11290,-11291,-11292], -[1,3,6212], -[0,6213,6214,6215,4], -[0,-1578,-9953,-10401,-1351,-11293,-11294,-11295,-11296], -[0,-652,-2392,-11297,-1110,-1942,-589,-767,-190,-1888,-2410,-3037,-11298,-3244,-3560,-3606,-940,-967,-428,-11299,-427, --5706], -[0,-1691,-3323,-3844], -[1,3,6217], -[0,6218,6219,6220,11], -[0,-8993,-1792,-8994], -[0,-1405,-615,-1654], -[0,-8124,-1961,-11300,-11301,-3184], -[1,3,6222], -[0,0,6223,6224,4], -[0,-11302], -[0,-1784,-3966,-9318,-9800,-11303,-3966,-7304,-6845], -[1,3,6226], -[0,0,6227,7,4], -[0,-596,-719,-1107,-2105,-2062,-2319,-2546], -[1,3,6229], -[0,0,6230,6231,4], -[0,-2426,-3037,-2410], -[0,-11304,-6582,-2105,-4055,-7684,-11151,-1697,-7685], -[1,3,6233], -[0,6234,6235,6236,5], -[0,-3115,-781,-786,-11305,-10883,-11306,-7222,-3768], -[0,-4757,-4754,-4749,-3136,-3037,-3140,-3040,-932,-4650,-1344,-11307,-1415,-1520,-11308,-1534,-1942,-1967,-2006,-2019, --2052,-2125,-2234,-2376,-2387,-2410,-2501,-2502,-2505,-2552], -[0,-775,-5553,-3770,-11309,-1697,-11310,-2006,-3756,-11311,-3771,-11312,-11313,-3095,-2278,-11314,-11315,-3271], -[1,3,6238], -[0,0,0,6239,8], -[0,-2446,-6555,-7231,-2435], -[1,3,6241], -[0,6242,6243,6244,4], -[0,-7872,-523,-893,-1077,-11316,-11317,-1577,-1705,-11318,-2160,-2234,-2359,-2550], -[0,-3198,-3048,-11319,-3136,-9143,-3037,-11320,-3628,-3041,-427,-428,-891,-932,-940,-967,-1415,-1874,-1942,-2125,-2376, --2410,-2501,-2503], -[0,-11321,-891,-3994,-5269,-8911], -[1,3,6246], -[0,6247,6248,6249,6], -[0,-2531,-1816,-2323,-1430,-1805,-2446,-523,-712,-1875,-2550,-8898,-1548,-1576,-1610,-1650,-1831,-2177,-7680,-2519,-2536, --987,-1966,-2195,-501,-679,-1942,-1981,-2378,-1645,-11322,-695,-2205,-2231,-2410,-11323,-3950,-11324,-11325,-11326,-8888, --11327,-11328,-6294,-7772,-1982,-280,-11329,-11330,-11331,-742,-8880,-11332,-11333,-11334,-11335,-11336], -[0,-664,-1127,-1344,-1654,-2210,-10645,-1405,-4204,-5673,-3035,-3037,-3738,-1162,-1534,-4248,-11337,-11338,-4372,-3041, --11339,-3044,-11340,-3199,-11341,-11342,-11343,-3735,-3714,-6114,-11344,-11345,-665,-1138,-2234,-1134,-1149,-11346, --11347,-4269,-11348,-3202,-11349,-740], -[0,-1702,-2410,-3214], -[1,3,6251], -[0,6252,6253,6254,6], -[0,-11350,-11351,-11352,-865,-1339,-11353,-1672,-1857,-2071,-7967,-11354,-10899,-2424,-2446,-11355], -[0,-350,-4062,-351,-9705,-3037,-427,-11356,-767,-932,-9106,-958,-965,-968,-1168,-1222,-11357,-1412,-1413,-7148,-1705, --1788,-11358,-1972,-2125,-2127,-2210,-2234,-2250,-2379,-6416,-2410,-11359,-2501,-7752], -[0,-11360,-11361,-7281,-11362,-11363,-3579,-11364,-11365,-11366,-11367,-11368,-11369,-11370,-11371,-11372,-11373,-11374, --11375,-11376,-11377,-11378,-11379,-11380,-11381,-11382,-11383,-11384,-11385,-11386], -[1,3,6256], -[0,6257,6258,6259,9], -[0,-1371,-510,-2550,-11387], -[0,-1788,-2471,-932,-756,-11388,-2091,-4646], -[0,-3870,-11389,-11390], -[1,3,6261], -[0,0,6262,6263,5], -[0,-1654,-2125,-8986], -[0,-687,-6351], -[1,3,6265], -[0,0,6266,6267,5], -[0,-3037,-3040,-427,-428,-749,-932,-940,-967,-969,-970,-1380,-1942,-2387,-2410], -[0,-11391,-3486,-2006,-3994,-11392,-11393,-5069,-3445], -[1,3,6269], -[0,6270,6271,6272,4], -[0,-510,-1650,-2424,-1545,-11394], -[0,-664,-1654,-2210,-2105,-719,-11395], -[0,-7685,-11222,-10712], -[1,3,6274], -[0,6275,6276,6277,5], -[0,-1351,-2165], -[0,-1464,-7623,-1654,-1976,-1980,-2198,-2210,-2536], -[0,-1334,-1342,-5493,-2105,-3323,-6463,-7764,-1971,-6827,-7430,-9791,-9788,-743,-8937], -[1,3,6279], -[0,6280,0,6281,5], -[0,-11396,-11397,-719,-755,-1376], -[0,-687,-5406,-9668,-3957,-3958,-11398,-11313], -[1,3,6283], -[0,6284,6285,6286,8], -[0,-11399,-510,-11400,-5676,-695,-714,-719,-790,-1044,-11401,-1548,-1650,-11402,-11403,-11404,-11405,-1951,-2177,-11406, --2524,-2538], -[0,-11407,-664,-829,-11408,-7829,-932,-960,-7819,-964,-972,-1442,-1654,-1722,-1788,-11409,-2070,-2188,-2195,-2210,-2536], -[0,-1710,-11410,-3690,-3634,-6657,-11411,-3691], -[1,3,6288], -[0,6289,6290,6291,4], -[0,-11412,-7603,-7604,-11413,-5038,-5777,-5775,-5791,-5779,-5778,-5780,-5782,-11414,-725,-1343,-11415,-11273,-1459,-11416, --2062,-11417,-2177,-2522], -[0,-3698,-11418,-11419,-11420,-11421,-11422,-305,-11423,-11424,-11425,-469,-510,-521,-2917,-652,-5980,-719,-741,-6906, --5983,-932,-960,-11426,-1107,-1116,-1344,-1446,-1534,-1547,-1722,-1969,-1972,-2125,-11427,-2210,-2291], -[0,-5805,-6187,-11230,-6032,-11428,-11429], -[1,3,6293], -[0,6294,6295,6296,5], -[0,-44,-11430,-743,-5193,-1791,-11431,-1940,-10105,-2446], -[0,-3168,-21,-23,-6064,-38,-40,-41,-42,-11432,-367,-7043,-406,-407,-409,-2622,-410,-3136,-3037,-11433,-11434,-3040,-3052, --518,-11435,-11436,-726,-784,-1415,-1419,-1428,-1683,-2634,-1889,-1891,-1916,-2006,-2019,-2516], -[0,-2006,-3967,-1791,-3175,-11437,-3173,-1713,-7204,-3177,-11438], -[1,3,6298], -[0,0,0,6299,5], -[0,-2634,-510,-11439,-11440], -[1,3,6301], -[0,0,0,6302,10], -[0,-475,-4004,-3634,-4215,-4041,-3095,-8223,-11441,-11442,-5196,-11443,-11444,-3100,-3577,-1415,-1412,-915,-8611,-6137], -[1,3,6304], -[0,6305,0,6306,4], -[0,-5,-11445,-3946,-807,-2387], -[0,-3158,-3099,-475,-3160,-3161,-3100], -[1,3,6308], -[0,6309,6310,6311,4], -[0,-1116,-2446,-2548,-7004,-1018,-1552], -[0,-664,-668,-1654,-2210,-3037], -[0,-1716,-11446,-11447,-1546,-11448], -[1,3,6313], -[0,0,6314,7,10], -[0,-664,-729,-1654,-1974,-2187,-2286], -[1,3,6316], -[0,6317,6318,6319,6], -[0,-812,-11449,-10659,-891,-11450,-11451,-1451,-11452,-1650,-6810,-1801,-2125,-11453,-2240], -[0,-510,-579,-11178,-615,-664,-665,-932,-940,-967,-1004,-1344,-1654,-11454,-1685,-1880,-1942,-2187,-2239], -[0,-1718,-891], -[1,3,6321], -[0,6322,6323,6324,6], -[0,-11455,-11456,-11457,-3035,-11458,-6192,-5113,-6535,-623,-11459,-668,-680,-695,-11460,-11461,-865,-888,-914,-1107, --1449,-1548,-1645,-1646,-1654,-11462,-1805,-1816,-8563,-2173,-2177,-11463,-2269,-2430,-2446], -[0,-99,-367,-3037,-427,-428,-749,-767,-932,-1344,-1392,-1442,-1534,-1656,-3038,-11464,-11465,-1663,-1722,-1788,-2006, --2019,-2125,-2184,-2379,-2384,-2648], -[0,-1719,-11466,-11467,-3634,-11468,-2734,-4867,-11469,-4866,-3095,-4868,-4004,-4865,-3162,-4043,-5769,-793,-1654,-4864], -[1,3,6326], -[0,6327,6328,6329,8], -[0,-4884,-357,-11470,-7755,-1851], -[0,-4888,-11471,-633,-1344,-1449,-11472,-1534,-1654,-11473,-1788,-1942,-1972,-11474,-11475], -[0,-4004,-3634,-8959,-4215,-2533,-3844], -[1,3,6331], -[0,6332,6333,7,4], -[0,-11476,-269,-1459], -[0,-1116,-1788,-664,-1415,-1654,-2210,-932,-2125,-1942,-1069,-838,-1972,-2211,-2410,-1771,-6522,-2174,-966,-964,-357,-958, --968,-940,-943,-3775], -[1,3,6335], -[0,0,6336,6337,11], -[0,-589,-596,-11477,-932,-1077,-2884,-1939,-2177], -[0,-11478,-11479,-6249,-5269,-596,-6251,-6252,-1696,-1723], -[1,3,6339], -[0,6340,6341,6342,4], -[0,-702], -[0,-1788,-1127,-1654,-2198,-756,-1132,-7845,-2410,-3037,-7887,-710,-11480,-9280,-1134,-1149,-11481,-11482], -[0,-3324,-6491,-8427,-3833,-6809,-10412,-11483,-3966,-1622,-7208], -[1,3,6344], -[0,0,6345,6346,4], -[0,-3037,-11484,-1077,-1344,-1654,-1788,-2125,-2410,-11485], -[0,-3966,-11486,-5574,-7534,-11487,-7371,-6974,-6582,-5847,-11488,-856], -[1,3,6348], -[0,6349,6350,6351,6], -[0,-808,-11489,-11490,-1097,-1646,-1737,-2114,-2177], -[0,-3037,-932,-958,-1344,-1534,-1942,-2319,-11491,-2363,-2379,-2410], -[0,-9427,-11492,-2295,-1673,-2490], -[1,3,6353], -[0,124,70,6354,11], -[0,-1727,-7421,-11070,-11493,-6656,-6235,-7547,-1076], -[1,3,6356], -[0,6357,6358,6359,4], -[0,-9154,-11494,-11495,-11496], -[0,-4646,-367,-3330,-427,-428,-3664,-7351,-774,-932,-7352,-954,-960,-961,-963,-965,-7353,-7354,-971,-979,-7355,-1344, --7356,-1498,-1534,-1608,-1609,-1768,-7357,-1942,-7358,-1945,-2091,-11497,-7359,-2391,-2410,-2469,-7360], -[0,-10838,-5493,-10841,-10840,-11498,-11499,-11500,-11501,-11502,-11503], -[1,3,6361], -[0,6362,6363,6364,4], -[0,-7026,-11504,-8966], -[0,-458,-5993,-649,-652,-664,-665,-11505,-9077,-756,-1069,-5989,-1654,-1828,-11506,-2384,-2541], -[0,-4213,-1334,-1961,-2105,-9172,-9173,-2533,-5388], -[1,3,6366], -[0,0,6367,6368,6], -[0,-633,-719,-767,-932,-11507,-1004,-1471,-1472,-1475,-1478,-1479,-1480,-1482,-1483,-1487,-1488,-1490,-11508,-1492,-1654, --1657,-11509,-1788,-6696,-2501,-2503,-11510], -[0,-11511,-11512,-11513,-11514,-770,-5374,-11515,-11516,-11517,-11518,-1334,-1342,-1616,-5150,-11519,-11520,-11521,-11522, --11523,-2191,-11524,-11525,-11526,-8905,-11527,-11528,-11529], -[1,3,6370], -[0,6371,6372,6373,9], -[0,-523,-812,-1548], -[0,-664,-1654,-1972,-2210], -[0,-3939,-5801,-5737,-5741,-5271,-11530,-11517,-11531,-1050,-5270,-491,-11532], -[1,3,6375], -[0,6376,6377,6378,9], -[0,-615,-1729], -[0,-664,-932,-1415,-2210], -[0,-11533,-11534,-11535,-3939,-11536,-11537,-11538,-11539,-11540], -[1,3,6380], -[0,6381,6382,6383,4], -[0,-5672,-11541,-1119,-10521,-1758,-1957,-2177,-2323,-2654,-2518], -[0,-596,-767,-932,-1654,-1696,-2884,-11542], -[0,-5269,-6249,-3551,-6251,-6252,-596,-6250], -[1,3,6385], -[0,6386,6387,6388,5], -[0,-780,-1297], -[0,-7177,-674,-767,-932,-11543,-1317,-11544,-11545,-11546,-6595,-11547,-1333,-11548,-11549,-1839,-2125,-10301,-2251,-2379, --2552], -[0,-3264,-3215,-3967,-2410], -[1,3,6390], -[0,6391,6392,6393,5], -[0,-510,-11550,-812,-1004,-1107,-1850,-2001,-2177,-2185,-11551,-11552,-11553,-2518,-2531,-2550], -[0,-664,-1077,-1380,-1452,-1654,-1764,-1961,-2125], -[0,-812,-7336,-6480,-6479], -[1,3,6395], -[0,6396,6397,6398,11], -[0,-459,-736,-828,-1072,-8438,-1636,-1640,-1840,-1997,-2401], -[0,-3035,-3621,-427,-428,-664,-932,-934,-940,-958,-1344,-1654,-1788,-1942,-2210,-2211,-2379,-2384,-2410], -[0,-4215,-8611,-10327,-3967,-3756,-3634,-4004,-1334,-11554], -[1,3,6400], -[0,6401,6402,6403,10], -[0,-11555,-1401,-2177,-11556,-2446,-2518], -[0,-749,-767,-932,-942,-943,-958,-966,-968,-1344,-1415,-1534,-11557,-1942,-2125], -[0,-11558,-11559,-9258,-11560,-9262,-6721,-11561,-11562,-4127], -[1,3,6405], -[0,6406,6407,6408,5], -[0,-579], -[0,-617,-1004,-1654,-2198,-2293], -[0,-1791,-11437], -[1,3,6410], -[0,89,56,57,8], -[1,3,6412], -[0,6413,6414,6415,8], -[0,-8612,-1650,-1708,-1758,-1769,-1778,-2001,-2125,-2177,-2323], -[0,-521,-1452,-1722,-2322], -[0,-5269,-6249,-3551,-6251,-6252,-596,-7304], -[1,3,6417], -[0,6418,6419,6420,4], -[0,-1723], -[0,-1654,-932,-11563,-1733,-767,-2410,-3037,-3621,-428,-427], -[0,-11564,-3975,-3974,-11565,-11566,-11567], -[1,3,6422], -[0,6423,0,6424,8], -[0,-11568,-11569,-11570,-11571,-579,-583,-754,-1004,-1077,-11572,-1758,-2177], -[0,-3496,-11532,-11573,-5411], -[1,3,6426], -[0,6427,6428,6429,10], -[0,-1696,-1088,-1107,-1630,-668,-1548,-1733,-1099,-11574,-769,-11575,-11576,-11577,-10521], -[0,-1788,-1654,-932,-2125,-1077,-11578], -[0,-775,-9264,-3277,-2162,-3754,-5553], -[1,3,6431], -[0,6432,6433,6434,4], -[0,-5414,-11579,-11580], -[0,-1788,-2322,-2210,-468,-932], -[0,-7046,-4107,-5418,-763,-11581,-10950], -[1,3,6436], -[0,6437,0,6438,4], -[0,-1813,-714,-1640], -[0,-1334,-5142,-6656,-3844], -[1,3,6440], -[0,0,6441,6442,5], -[0,-1788], -[0,-7230,-11582,-2446], -[1,3,6444], -[0,0,6445,6446,10], -[0,-1077,-1654], -[0,-11583,-2490,-11584], -[1,3,6448], -[0,6449,0,6450,8], -[0,-6597,-2550], -[0,-11585,-7084,-5196,-11586,-5545,-5389,-11587,-11588,-11589,-4107], -[1,3,6452], -[0,6453,6454,6455,4], -[0,-2534], -[0,-11590,-11591,-3037,-932,-1942,-1944,-2391,-2410,-3924,-2469], -[0,-11592,-3215,-4258,-2534,-11593], -[1,3,6457], -[0,6458,6459,6460,11], -[0,-1285,-1391], -[0,-5834,-515,-932,-1365,-7393,-1777,-1788,-1797,-2156,-2322], -[0,-1015,-11594,-11595,-702,-6351,-11596], -[1,3,6462], -[0,6463,6464,6465,5], -[0,-1116,-1696,-1460,-1993,-1548,-2324,-1077,-1733,-1740], -[0,-2487,-1654,-1452,-521,-674,-11597,-1405,-526,-756,-1440,-11598,-7382,-559], -[0,-11599,-11600,-5889,-5269], -[1,3,6467], -[0,0,6468,6469,6], -[0,-11601,-648,-652,-932,-940,-1110,-11602,-11603,-11604,-11605,-1942,-1971,-11606,-7932], -[0,-11607], -[1,3,6471], -[0,6472,6473,6474,5], -[0,-679,-812,-5911,-1645,-11608,-2177,-7741,-2297,-2363,-11609], -[0,-86,-3307,-510,-710,-932,-1344,-1654,-1788,-1972,-2174,-2198], -[0,-687,-1673,-1673,-3113,-9427,-11610,-11492,-3974], -[1,3,6476], -[0,6477,0,7,5], -[0,-888,-2319], -[1,3,6479], -[0,6480,6481,6482,4], -[0,-2125,-867,-11611,-2550,-2177], -[0,-2105,-2322], -[0,-11612,-11613,-7856,-11321,-9668], -[1,3,6484], -[0,6485,0,6486,5], -[0,-7603,-469,-470,-8547,-5329,-473,-11614,-523,-617,-679,-744,-754,-792,-1004,-4206,-11615,-11616,-1107,-1299,-11617, --11618,-1460,-11619,-1465,-11620,-1581,-5460,-11621,-1671,-1680,-1707,-7045,-11622,-1752,-1805,-1857,-11623,-2071,-11492, --2107,-11624,-11625,-2520,-3730,-2548,-2550], -[0,-11626,-1756,-3214,-3967,-3161,-3445,-3100,-5407,-11627,-11628,-11629,-11630,-4055,-11631,-4058,-1460,-2548,-3994, --11632], -[1,3,6488], -[0,6489,83,6490,4], -[0,-2424,-668], -[0,-7303,-11633,-4376,-6792,-3215], -[1,3,6492], -[0,6493,29,7,5], -[0,-9632], -[1,3,6495], -[0,0,6496,6497,8], -[0,-1202,-1646,-1654], -[0,-11634,-11635,-11636,-6656,-11637,-7693,-7839,-11638,-11639,-1076,-6811,-1847,-9358,-6517,-2218,-11640,-11641,-11642, --11643], -[1,3,6499], -[0,0,14,6500,4], -[0,-6811,-2435,-9171,-6558,-2265,-11644,-11645,-5101,-1985,-11646,-6817,-11647,-11648], -[1,3,6502], -[0,0,0,6503,5], -[0,-11649,-11644,-4865], -[1,3,6505], -[0,6506,6507,6508,4], -[0,-668,-6793,-700,-755,-824,-2762,-930,-999,-11650,-11651,-1315,-6770,-1363,-1376,-1394,-11652,-11653,-11654,-1535, --11655,-1574,-1630,-11656,-11657,-9050,-1805,-11658,-10270,-1849,-3609,-2060,-2153,-2177,-5746,-3669,-2433], -[0,-9154,-3199,-519,-722,-9982,-1077,-11659,-2210,-2269,-2331,-11660,-2541], -[0,-5732,-687,-1764,-8403,-5889,-5737,-9318,-6453,-5890], -[1,3,6510], -[0,6511,6512,6513,4], -[0,-1681,-1371,-2323,-1107,-1758,-2059,-2247,-11661,-668,-1826,-2518,-9632,-1831,-2177,-4287,-680,-11662,-9084,-1733, --1957,-11663,-1645,-4296,-4279,-1527,-1528,-1529,-11664,-11665,-2343,-11666,-1119,-11667,-10513,-11668,-11669,-10517, --11670,-11671,-4285,-2297,-1315,-1767,-1982,-280,-11672,-10520,-10521,-11673,-4291,-11674,-283,-4290,-1770,-11675,-11676, --4292,-4283,-4306,-8266,-281,-2450,-4281, --4278,-11677], -[0,-469,-2319,-834,-1722,-4307,-2093,-2125,-695,-2095,-11678,-470,-11679,-1769,-4655,-11680,-11681,-4300,-4298,-4299, --11682], -[0,-1380,-3209,-11683,-10484], -[1,3,6515], -[0,6516,6517,6518,4], -[0,-705,-1816,-1630,-668,-999,-1392,-2546,-11684,-1111,-1548,-2177,-11685,-1871,-827,-1376,-1645,-1728,-2269,-2343,-1849, --11686,-5895,-11687,-6197,-11688,-2433,-11689], -[0,-2541,-526,-567,-559,-555,-551], -[0,-1764,-11690,-3015,-7441,-5887,-7440,-11691,-3690,-9845,-687,-9594,-11692,-11693,-7856,-3016], -[1,3,6520], -[0,0,6521,6522,4], -[0,-11694,-7057,-3035,-4269,-11695,-11696,-5361,-11697,-3660,-11698,-3044,-3621,-3037,-11699,-11700,-8523,-3624,-3735, --3199,-11701,-4372,-11702,-427,-428,-656,-664,-665,-9077,-668,-695,-719,-767,-8609,-932,-940,-11703,-943,-958,-960,-965, --968,-1026,-10960,-1047,-11704,-1315,-1371,-1442,-1461,-11705,-1547,-1548,-1609,-1654,-1770,-1771,-1826,-5883,-1864, --1942,-1959,-11706,-11689, --2124,-2125,-5405,-2177,-11707,-2198,-2210,-2234,-7744,-2269,-2379,-2410,-11708,-2430,-2433,-11709,-2466,-11710,-11711, --6859,-2552], -[0,-3015,-1764,-10484,-10674,-11712,-11713], -[1,3,6524], -[0,6525,29,7,5], -[0,-1315,-1957,-2177,-2450], -[1,3,6527], -[0,6528,6529,6530,6], -[0,-469,-3907,-668,-755,-812,-1111,-1353,-1395,-1461,-1574,-1630,-1877,-2177,-2218,-2271,-2400,-2450], -[0,-3136,-3037,-427,-428,-928,-11714,-932,-11715,-11716,-954,-958,-959,-967,-978,-1040,-1415,-7357,-11717,-1942,-2375, --2410], -[0,-7148,-8170,-10484,-5879,-11718,-1768], -[1,3,6532], -[0,6533,6534,7,8], -[0,-6770,-1957], -[0,-280,-4298,-4300,-11719,-2319], -[1,3,6536], -[0,6537,6538,6539,10], -[0,-4285,-10335,-10521,-9084,-11720,-11721,-1767,-1957], -[0,-4298,-4300,-4287,-1722,-11542,-2247,-2319], -[0,-1764,-11722,-4213], -[1,3,6541], -[0,6542,6543,233,4], -[0,-668,-11084,-2060,-1645,-482,-769,-2194,-1627,-11723], -[0,-1788,-2552,-1654,-932,-2125,-708,-1827,-1077,-3037,-1938,-566,-11724,-6018,-545], -[1,3,6545], -[0,6546,6547,233,11], -[0,-2518,-11084,-1864,-482,-769,-2194,-1627,-11728], -[0,-652,-1498,-2552,-1446,-1654,-932,-9774,-2884,-516,-3781], -[1,3,6549], -[0,6550,14,6551,5], -[0,-7087,-8803], -[0,-1764,-11727,-1847,-5897,-8425,-7304,-8426,-11729,-687,-3958,-7096,-7237], -[1,3,6553], -[0,0,6554,6555,5], -[0,-3136,-3037,-427,-428,-3267,-932,-940,-1415,-1534,-10652,-2125,-2127,-2375,-2410], -[0,-11730,-856,-11731], -[1,3,6557], -[0,6558,6559,6560,4], -[0,-668,-691,-719,-812,-1376,-1965], -[0,-664,-1654,-1663,-2250], -[0,-7865,-1764,-11732], -[1,3,6562], -[0,6563,6564,6565,6], -[0,-1376,-1993], -[0,-526,-541,-551,-11733,-566,-1771], -[0,-1764,-687,-7095,-3957,-9408,-4043,-9845,-1776,-11734], -[1,3,6567], -[0,6568,6569,6570,6], -[0,-1285,-1646], -[0,-5834,-516,-5835,-932,-1365,-1431,-1788,-2156,-2322], -[0,-1777,-9100], -[1,3,6572], -[0,6573,6574,7,6], -[0,-4700,-10515,-11735,-4716], -[0,-2319,-4300,-4298], -[1,3,6576], -[0,0,6577,7,4], -[0,-664,-1437,-1449,-1654,-11736], -[1,3,6579], -[0,6580,6581,6582,4], -[0,-668,-694,-11737,-1343,-1376,-11738,-2177,-9564,-2550], -[0,-619,-707,-8326,-1277,-1510,-1658], -[0,-7107,-1780,-8327], -[1,3,6584], -[0,6585,6586,6587,5], -[0,-11739], -[0,-3136,-3037,-427,-428,-749,-932,-940,-967,-1344,-1415,-1942,-1952,-2125,-2375,-2379,-2410], -[0,-1781,-11740,-687,-3578,-3871,-7864,-2006,-3966,-2410,-3214,-2501,-1415,-3100,-3445,-5407], -[1,3,6589], -[0,0,6590,6591,6], -[0,-664,-1138,-1146,-1155,-1156,-9545,-1471,-1474,-1475,-1479,-1482,-1483,-1488,-1542,-1654], -[0,-1782,-6240,-3276,-4123,-11741,-11742], -[1,3,6593], -[0,6594,6595,6596,5], -[0,-11743,-11744,-719], -[0,-21,-23,-40,-43,-534,-539,-541,-729,-753,-767,-932,-934,-958,-1004,-1077,-1098,-11745,-11746,-11747,-11748,-1788,-1860, --2187,-2416,-2417,-2501], -[0,-3110,-7651], -[1,3,6598], -[0,0,0,6599,5], -[0,-8427,-3966], -[1,3,6601], -[0,0,6602,6603,10], -[0,-2832,-5834,-8084,-8096,-516,-652,-5835,-932,-1431,-1365,-1777,-2156,-2322], -[0,-1784,-1785,-5874], -[1,3,6605], -[0,0,0,6606,10], -[0,-775,-5180,-11749,-5912,-3585], -[1,3,6608], -[0,6609,0,6610,4], -[0,-888,-1816,-2359,-1055,-1805,-2548,-523,-701,-2387,-2550,-865,-1353,-2177,-1040,-910,-1418,-1645,-2369,-690,-1863, --2325,-692,-1075,-1461,-1773,-2267,-2551,-866,-2383,-11750,-11751,-11752,-4341,-10789,-11753,-11754], -[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340,-4347,-4343,-4344,-11755], -[1,3,6612], -[0,6613,6614,6615,4], -[0,-6028,-4003,-11756,-742,-813,-1046,-1047,-6475,-1097,-1107,-5086,-11757,-6029,-11758,-5087,-5088,-5089,-1591,-11759, --1826,-11760,-2115,-2125,-2202,-11761,-6030,-2550], -[0,-11762,-5607,-2111,-2234,-2250,-2251,-2319,-2446,-2518], -[0,-4005,-6863,-8422,-3634], -[1,3,6617], -[0,6618,6619,6620,5], -[0,-11763,-4049,-3424,-11619,-10873,-5969,-5263,-1851,-11764], -[0,-11765,-11766,-11767,-3037,-2391,-2410,-2469], -[0,-3690,-11768,-3438,-11769,-11770,-11771,-11772,-11773,-1789,-489,-11148,-856], -[1,3,6622], -[0,6623,6624,6625,4], -[0,-11763,-11774,-1442,-5263,-3792], -[0,-11765,-3660,-11775,-1722,-2391,-2410,-2469], -[0,-3690,-489,-11768,-856,-11148,-11773,-1789,-3438,-11772,-11769,-11771,-11770,-11410,-4847], -[1,3,6627], -[0,0,84,7,8], -[1,3,6629], -[0,0,6630,6631,5], -[0,-2541,-519,-1548,-1612], -[0,-7208,-7370,-1015,-3589,-4795,-3217,-3207,-6989,-11776,-3582,-5396,-4865], -[1,3,6633], -[0,0,6634,6635,4], -[0,-633,-1168,-1177,-11117,-11777,-1220,-1224,-1231,-1243,-1244,-1262,-1452,-1453,-1471,-1475,-1482,-1654], -[0,-7208,-6131,-2191,-1616], -[1,3,6637], -[0,0,6638,6639,6], -[0,-5834,-11778,-516,-753,-11779,-921,-932,-1065,-1083,-1107,-11780,-1283,-11781,-1365,-1408,-8082,-1659,-1777,-1788, --2156,-9786,-2177,-8310,-2322], -[0,-4676,-11782,-7208,-6231,-3240], -[1,3,6641], -[0,0,6642,6643,4], -[0,-5834,-8487,-932,-6283,-11783,-1391,-2322], -[0,-11784,-7373,-6947,-5396], -[1,3,6645], -[0,0,6646,6647,8], -[0,-1788,-664,-1654,-756,-1657,-11785], -[0,-6545,-1847,-11786,-11787,-9052,-7153,-864,-7375,-7208,-7369,-11788,-11789,-5846,-8893,-7372], -[1,3,6649], -[0,6650,6651,6652,6], -[0,-655,-6511,-5830,-11790,-1283,-1795], -[0,-5833,-5834,-633,-932,-1065,-1083,-5836,-1285,-1659,-1777,-1788,-2156,-5942,-2322], -[0,-11791,-7370,-6948,-1015,-11792,-11594,-11793,-11794,-5843,-3582,-5396], -[1,3,6654], -[0,6655,6656,6657,6], -[0,-655,-6511,-5830,-11790], -[0,-5833,-5834,-8569,-516,-5835,-932,-1083,-5836,-1365,-1777,-1788,-2156,-2322], -[0,-11795,-11796,-11784,-11797,-7374,-6949,-11798,-6952,-5396,-7208,-7373,-3582,-5843], -[1,3,6659], -[0,6660,6661,7,9], -[0,-11799], -[0,-1788,-1654,-932,-966,-958,-968,-943,-963,-974], -[1,3,6663], -[0,6664,71,6665,4], -[0,-11800], -[0,-1801,-5924,-6812,-6814], -[1,3,6667], -[0,6668,6669,6670,4], -[0,-11801,-11802,-502,-679,-769,-1353,-2369], -[0,-7080,-3037,-1344,-1534,-1942,-2125,-2410], -[0,-1107,-2490,-5888], -[1,3,6672], -[0,6673,6674,6675,5], -[0,-11803,-1553], -[0,-3621,-11804,-708,-1452,-1654,-1658,-1660,-1788,-2379,-2410], -[0,-11805,-11573,-11806,-11807,-11808,-10226,-11809,-11810,-11811,-9261], -[1,3,6677], -[0,6678,115,234,5], -[0,-11812,-11813,-11814,-9981,-6756,-11815], -[1,3,6680], -[0,6681,6682,6683,5], -[0,-1043,-1099,-1630,-1805,-2331], -[0,-519,-999,-2541], -[0,-5732,-687,-3994,-1805,-1810,-11816,-11817,-11818,-11819,-11820,-11821,-7095,-4865,-3496,-7237,-7863,-2435,-11822, --7303,-7091,-8421,-6599,-1958,-3258,-6656], -[1,3,6685], -[0,6686,6687,6688,6], -[0,-11823,-11824,-5263], -[0,-3136,-3660,-4049,-523,-11825,-1415,-1456,-11826,-1683,-1942,-2234,-2375,-2379,-2410], -[0,-3438,-4847,-3323,-523,-3100,-4865,-4215,-2410], -[1,3,6690], -[0,6691,6692,6693,5], -[0,-813,-1326,-1459,-1600,-1967,-2006,-2019,-2451], -[0,-32,-204,-526,-552,-9968,-756,-932,-933,-934,-958,-962,-968,-969,-1108,-1320,-1415,-1753,-1771,-2105,-2106,-5331], -[0,-4847,-3438,-11827,-3264,-856,-3262], -[1,3,6695], -[0,6696,6697,6698,11], -[0,-6280,-1696], -[0,-1107,-2105,-2322], -[0,-1809,-11828,-9565,-11829], -[1,3,6700], -[0,0,38,7,6], -[1,3,6702], -[0,6703,6704,7,8], -[0,-11830,-2105], -[0,-526,-559,-932,-933,-958,-962,-969], -[1,3,6706], -[0,6707,55,234,9], -[0,-1401], -[1,3,6709], -[0,6710,6711,235,4], -[0,-2525,-1646], -[0,-11831,-2319], -[1,3,6713], -[0,6714,6715,6716,8], -[0,-784,-11832,-1889], -[0,-527,-533,-551,-556,-558,-778,-1415,-2275,-2501], -[0,-7198,-10435,-1017,-7173,-7175,-6694,-2501], -[1,3,6718], -[0,6719,6720,6721,11], -[0,-11833,-11834,-2524,-8437,-11835,-10579], -[0,-11836,-1654], -[0,-6792,-5272,-11837,-687], -[1,3,6723], -[0,6724,6725,6726,8], -[0,-668,-690,-692,-11652,-6861,-1574,-11838,-2267], -[0,-3037,-519,-1100,-11839,-2384,-2541], -[0,-687,-6716,-6717,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], -[1,3,6728], -[0,6729,6730,6731,10], -[0,-908,-11840,-11841], -[0,-994,-1262,-1452,-1597,-1632,-1654,-1980,-2198,-2462], -[0,-510,-4107,-5921,-10462], -[1,3,6733], -[0,6734,6735,6736,11], -[0,-510,-615,-7840,-10358,-1548,-1850,-11842,-11843], -[0,-652,-668,-1107,-1654,-1671,-1691,-1857,-2177,-2198,-2210,-2245], -[0,-1818,-11221,-7685,-1691,-10425,-11844,-3742,-1671], -[1,3,6738], -[0,0,0,6739,4], -[0,-3966,-1819,-3103,-3551], -[1,3,6741], -[0,6742,71,6743,6], -[0,-8383,-10383], -[0,-5558,-3833,-11845,-11846,-1847,-1965,-11847], -[1,3,6745], -[0,0,6746,6747,4], -[0,-3035,-3048,-3621,-3037,-3046,-10755,-664,-999,-1077,-1654,-1763,-2379,-2501,-2518], -[0,-3184,-4795,-11848,-11849,-7728,-2265,-3110,-6806], -[1,3,6749], -[0,0,0,6750,5], -[0,-1823,-3586,-11850,-11851,-11852,-11853,-3100,-4865], -[1,3,6752], -[0,6753,6754,6755,5], -[0,-11854,-719,-1063,-1392,-1526,-2177,-2359,-11855], -[0,-3244,-190,-3748,-4200,-11856,-3037,-3199,-3628,-11857,-427,-428,-932,-11858,-2125,-2410], -[0,-687,-11859,-8109,-8403], -[1,3,6757], -[0,6758,6759,6760,5], -[0,-1828], -[0,-3037,-519,-826,-2384,-2541], -[0,-1961,-997,-5389,-6820,-8397,-10670,-6821,-8401,-6822,-8124,-11860,-11861,-4116,-11862,-8402,-4865,-5092,-510,-5867, --5923,-615], -[1,3,6762], -[0,0,6763,6764,5], -[0,-519,-668,-826,-7426,-7424,-7427,-2384,-2541], -[0,-1961,-6917,-11863,-4116,-7558,-9029,-9027,-11864,-11865,-510,-5867,-5923,-726,-11866,-5921,-615], -[1,3,6766], -[0,6767,6768,6769,4], -[0,-996,-1828], -[0,-5918,-3268,-3037,-589,-825,-826,-7426,-7963,-7424,-7427,-2384,-2392,-2410,-2541], -[0,-1961,-1986,-11450,-6729,-7331,-11866,-7329,-11685,-7333,-7334,-11867,-11038,-11033,-11868,-5418,-4107,-510,-5867, --5923,-615], -[1,3,6771], -[0,0,6772,6773,11], -[0,-519,-826,-7426,-9161,-2210,-7427,-2384,-2541], -[0,-1961,-7430,-6324,-11869,-510,-5867,-5923,-4123,-11870,-5391,-615], -[1,3,6775], -[0,6776,6777,6778,4], -[0,-1107], -[0,-1415,-1942,-4701], -[0,-856,-2299,-11871,-11872], -[1,3,6780], -[0,6781,6782,6783,5], -[0,-11873,-522,-594,-719,-914,-1496,-1689,-1750,-1978,-2177], -[0,-652,-932,-11874,-1654,-11875,-4654,-2210], -[0,-4665,-4666,-10432,-11876,-5879,-4864,-5986,-522,-7144,-687,-11877,-11878,-11879,-10770,-1830,-1978,-9246,-11880,-3634, --2451,-11881], -[1,3,6785], -[0,6786,6787,6788,4], -[0,-11678,-4280,-4283,-4306,-283,-4287,-11666,-9084,-1767,-1769,-4291,-1770,-1957,-10592,-11882,-2247,-2323], -[0,-280,-4298,-4300,-1315,-11719,-1722,-11883,-2125,-2319], -[0,-7442,-1764,-5889], -[1,3,6790], -[0,6791,6792,6793,8], -[0,-9491,-9492,-11884,-807,-7731,-11885,-1548,-1574,-1591,-1826,-1877,-2400,-11886], -[0,-5918,-5033,-3044,-3037,-11887,-743,-825,-1043,-1098,-9810,-1849,-11888,-2392,-2410,-2541], -[0,-11889,-3258,-9204,-3578,-2435,-9804,-8799,-9711,-11890,-11891,-5566,-4045,-9552,-3576,-7419,-1978,-10366,-6527,-3839, --7650,-3264,-11878,-9712,-8633,-8634,-7715,-8640,-9235], -[1,3,6795], -[0,0,6796,6797,4], -[0,-3037,-3664,-6593,-7653,-7654,-932,-958,-960,-1449,-2410,-2466,-2469], -[0,-3100,-3445,-3261,-3098,-3160,-6107,-9975,-9612,-11074], -[1,3,6799], -[0,0,6800,6801,11], -[0,-40,-3326,-350,-351,-932,-1103,-1654,-1687,-10835,-1788,-2127,-2140,-2195], -[0,-9506,-6827,-10350,-6826], -[1,3,6803], -[0,6804,38,6805,6], -[0,-11064,-668,-6842,-1000,-1039,-1099,-1111,-1333,-1465,-1630,-1641,-1836,-2114,-11892,-2433,-2551], -[0,-11893,-3445,-687,-10810,-3690], -[1,3,6807], -[0,6808,6809,6810,5], -[0,-11197,-1582,-2291], -[0,-190,-865,-932,-940,-958,-965,-967,-968,-1110,-1548,-1654,-1942,-2340,-2892,-2410], -[0,-11893,-3323,-4725,-11894,-3844,-3445,-3690,-3691,-4055], -[1,3,6812], -[0,0,6813,6814,6], -[0,-615,-664,-710,-1654], -[0,-5921,-5550], -[1,3,6816], -[0,6817,6818,6819,9], -[0,-44,-3345,-772,-11895,-11896,-2531], -[0,-23,-26,-38,-40,-41,-42,-190,-3266,-11897,-3470,-7040,-3471,-3472,-7041,-7042,-11898,-533,-8580,-11899,-708,-753,-767, --932,-8147,-960,-1004,-1168,-1174,-1268,-1412,-10034,-11900,-1415,-1419,-1446,-11901,-1534,-4375,-3156,-11220,-11902, --1978,-2082,-2174,-2411,-2466,-11903,-10092], -[0,-5801,-3162,-3690], -[1,3,6821], -[0,6822,0,6823,5], -[0,-3223], -[0,-3264,-3215,-5177,-11904,-4681,-5922,-11905,-11906,-6595,-1839,-4142,-11907,-11908,-1838,-6233], -[1,3,6825], -[0,0,6826,7,6], -[0,-1654,-932,-1405,-589,-11909,-585,-966,-958,-968,-943,-974], -[1,3,6828], -[0,6829,6830,6831,10], -[0,-11910,-2445,-1846], -[0,-664,-1654,-1592,-1972,-666,-11911], -[0,-1004,-729,-6120,-8449,-3173], -[1,3,6833], -[0,6834,6835,6836,8], -[0,-1845], -[0,-1592,-1654,-664,-666], -[0,-1841,-4038,-6120,-8449,-3173,-9795], -[1,3,6838], -[0,6839,236,6840,4], -[0,-1846], -[0,-1841,-8427,-6120,-8449,-3173,-11912,-5110], -[1,3,6842], -[0,6843,236,237,8], -[0,-11913,-1845], -[1,3,6845], -[0,6846,6847,237,5], -[0,-11914,-1791,-1846,-10686,-2445], -[0,-1592,-1654,-664,-1972,-666], -[1,3,6849], -[0,0,114,6850,4], -[0,-1841,-6539], -[1,3,6852], -[0,6853,0,6854,5], -[0,-1958,-2444], -[0,-11153,-1847], -[1,3,6856], -[0,0,31,6857,8], -[0,-4865,-633,-1847], -[1,3,6859], -[0,0,238,6860,5], -[0,-1847,-6788,-11915,-6656,-7693,-1076,-7422,-7000,-11786,-9330], -[1,3,6862], -[0,0,118,6863,4], -[0,-1847,-9098,-6656,-11070,-11634,-11916,-11917,-6441,-2444,-5260,-3103,-6989,-3582,-5396,-1391,-6659,-7440], -[1,3,6865], -[0,0,6866,6867,8], -[0,-6918,-5295,-3037,-3199,-3664,-10880,-2214,-2410,-2469], -[0,-1004,-5570,-10470,-9843], -[1,3,6869], -[0,0,6870,7,5], -[0,-3037,-3664,-672,-928,-932,-944,-1431,-1942,-2410,-2423,-2469,-11918], -[1,3,6872], -[0,6873,6874,57,4], -[0,-1406,-1460,-7885], -[0,-1078,-1654,-1941], -[1,3,6876], -[0,6877,6878,6879,4], -[0,-11919,-11920,-1834,-2062,-9789,-2446], -[0,-3037,-640,-997,-1942,-2322,-2410], -[0,-6528,-3262], -[1,3,6881], -[0,6882,6883,6884,10], -[0,-772,-4702,-11921,-11922,-11923], -[0,-23,-3840,-40,-190,-3326,-533,-11924,-11925,-627,-633,-659,-709,-932,-1103,-1110,-1415,-1419,-4981,-1599,-11926,-1942, --1974,-2127,-4063], -[0,-6528,-11927,-11928,-6524,-10855,-9472], -[1,3,6886], -[0,0,6887,7,4], -[0,-615,-11929,-664,-11930,-710,-1654,-1939], -[1,3,6889], -[0,6890,6891,6892,4], -[0,-10416,-11931,-11932,-11933,-11934,-11935], -[0,-11936,-11937,-510,-615,-705,-11938,-2410,-2469,-9667], -[0,-7685,-11939,-1857,-11940,-10425,-6321,-11941], -[1,3,6894], -[0,6895,6896,6897,5], -[0,-1860,-2239,-2520], -[0,-526,-527,-528,-556,-558,-559,-6089,-932,-934,-956,-958,-1059,-11942,-1415,-1417,-11943,-9913,-2125], -[0,-1858,-1859,-9879], -[1,3,6899], -[0,6900,6901,239,11], -[0,-1018,-1077,-7234,-9423,-1959,-2105,-7241,-2518], -[0,-932,-1754], -[1,3,6903], -[0,6904,6905,239,5], -[0,-925,-1018,-1077,-7234,-9423,-1959,-2105,-7241,-2518], -[0,-932,-1754,-4881], -[1,3,6907], -[0,6908,6909,6910,5], -[0,-501,-714,-728,-11944,-752,-9012,-1412,-1646,-1810,-1812,-3547,-11945,-1878,-1965,-1982,-2105,-2195,-2433], -[0,-7672,-932,-942,-943,-958,-966,-968,-974,-1405], -[0,-687,-752,-1861,-11946,-11947], -[1,3,6912], -[0,0,70,7,11], -[1,3,6914], -[0,0,0,6915,8], -[0,-3974,-714,-5538,-687,-4000], -[1,3,6917], -[0,0,6918,6919,5], -[0,-932,-10999,-1202,-1654,-1788], -[0,-1107,-5572,-1864], -[0,44,15,16,8], -[1,3,6922], -[0,0,6923,6924,9], -[0,-519,-11948,-2384,-11135,-2541], -[0,-8124,-5865,-1961,-5923,-11949,-5500,-3966,-11301,-11300,-5845,-6408,-4001,-8911,-6509,-510,-5867,-4795,-615], -[1,3,6926], -[0,6927,6928,6929,10], -[0,-11950,-11951,-11952,-11953,-8543,-11954,-11955,-7967,-11956,-11957,-11958], -[0,-2832,-11419,-11959,-3037,-468,-11960,-2917,-648,-812,-2758,-932,-958,-965,-966,-968,-999,-11961,-11962,-1362,-1415, --1573,-1577,-11963,-2884,-11964,-1939,-1972,-1976,-2125,-2177,-2240,-11965,-2269,-2322,-2347,-2379,-2384,-2410,-2520], -[0,-5922,-3444,-5827,-4055], -[1,3,6931], -[0,0,6932,6933,4], -[0,-932,-940,-8177,-966,-967,-1344,-1415,-1942,-2331], -[0,-1764,-11966,-11967,-7646,-11968], -[1,3,6935], -[0,6936,6937,6938,5], -[0,-1880], -[0,-932,-10497,-2410], -[0,-6527,-10588,-834], -[1,3,6940], -[0,6941,6942,6943,6], -[0,-8341], -[0,-2541,-519,-2384,-2331], -[0,-5897,-4055,-5756,-1764,-11969,-5573,-8804,-1047,-5504,-8805,-8806,-6656,-7282,-5572,-2114,-8807,-6370,-7420,-7421, --2487,-8808,-1847], -[1,3,6945], -[0,175,14,6946,5], -[0,-7861,-5897,-6656,-5573,-8804,-1047,-5504,-8805,-8806,-7282,-5572,-2114,-8807,-6370,-7420,-7421,-2487,-8808,-1847], -[1,3,6948], -[0,0,84,6949,5], -[0,-8041,-3674,-10484], -[1,3,6951], -[0,6952,0,7,5], -[0,-3982], -[1,3,6954], -[0,6955,6956,6957,11], -[0,-4733,-578,-2538], -[0,-633,-1654,-6810,-2568], -[0,-5736,-4865,-8995,-1875,-3215,-6597], -[1,3,6959], -[0,6960,6961,6962,4], -[0,-479], -[0,-932,-937,-966,-1001,-1654,-1788,-2410], -[0,-6324,-3862,-1266], -[1,3,6964], -[0,6965,14,6966,8], -[0,-11970], -[0,-9757,-11971,-1878,-9756,-11972,-10781,-2265,-11973,-11974,-11975], -[1,3,6968], -[0,0,6969,6970,9], -[0,-664,-1405,-1654,-2176], -[0,-9757,-11971,-1878,-9756,-9763,-1369], -[1,3,6972], -[0,6973,70,6974,8], -[0,-11976,-11977,-11978,-11979,-483,-510,-11980,-679,-11981,-719,-764,-809,-812,-910,-995,-11982,-1650,-1708,-11983, --11984,-11985,-11986,-11987,-3968,-2177,-2234,-2243,-11988,-1442], -[0,-687,-8947,-8948,-3674,-1879,-11989,-1573,-4055,-1004,-1277,-11990,-11492,-11991,-11992,-11993,-11994,-11995,-11996, --11997,-9466,-11998,-11148,-5731,-3207,-11999,-12000,-12001,-12002,-12003,-8901,-8902,-11586,-2295,-12004,-1753,-12005, --7662,-12006,-11230,-12001,-12007,-1066,-11429,-12008,-5805,-11486,-8944,-12009,-12010,-12011,-12012,-9844,-7606,-763, --8904,-12013], -[1,3,6976], -[0,0,6977,6978,4], -[0,-633,-641,-729,-932,-940,-1788,-1942,-1978,-2187,-12014,-2322], -[0,-12015,-6116,-6117,-12016,-12017,-3215,-7715,-11923,-12018,-1880], -[1,3,6980], -[0,6981,6982,6983,9], -[0,-2381], -[0,-909,-1415,-1421,-1425,-2231], -[0,-2501,-2552,-10054,-10055], -[1,3,6985], -[0,0,0,6986,4], -[0,-1882,-12019,-3015,-12020,-11037,-5922,-12021,-1380,-7856,-10606,-5880,-3209,-10440,-10527,-1764,-11683,-10484,-7442, --12022,-12023,-6694,-5881,-12024,-12025,-10444], -[1,3,6988], -[0,241,6989,6990,5], -[0,-2334,-2379,-2410], -[0,-12026,-12027,-12028,-12029,-12030,-12031,-12032,-12033,-3690,-12034,-12035,-12036,-12037,-3445,-3100,-2410], -[1,3,6992], -[0,39,6993,6994,4], -[0,-21,-23,-32,-38,-39,-40,-6056,-3326,-351,-3561,-528,-533,-535,-12038,-767,-796,-856,-932,-934,-958,-1059,-11942,-1344, --1415,-1534,-11943,-1942,-12039,-1993,-2127,-2139,-2140,-2174,-2200,-12040,-2410,-2449], -[0,-2278,-1885,-906,-12041,-3771,-12042,-2006,-5411,-2410,-12043,-12044,-12045,-712,-5535], -[1,3,6996], -[0,0,6997,6998,5], -[0,-12046,-12047,-12048,-12049,-932,-12050,-2410], -[0,-12051,-3095,-7582,-3821,-3822,-12052,-12053], -[1,3,7000], -[0,7001,7002,7003,6], -[0,-510,-812], -[0,-1415], -[0,-1334,-12054,-8113], -[1,3,7005], -[0,7006,0,7007,8], -[0,-1699,-1863,-2232], -[0,-775,-1889,-9336,-3277,-3215,-12055,-6408,-12056,-3186], -[1,3,7009], -[0,7010,7011,7012,8], -[0,-1931,-1934], -[0,-3037,-932,-940,-12057,-1889,-1942,-2410], -[0,-775,-1889,-3583,-12058,-12059], -[1,3,7014], -[0,7015,7016,7017,4], -[0,-679,-3227,-1077,-1863,-1907,-12060,-6467,-12061,-2218,-2654,-2550], -[0,-519,-652,-756,-932,-12062,-1110,-1889,-1906,-1942,-2289,-2446], -[0,-687,-1889,-9300], -[1,3,7019], -[0,7020,0,7021,6], -[0,-2953,-93,-94,-97,-12063], -[0,-712,-12064,-775,-3099,-5112,-12065,-12066,-12067,-11788,-1889,-3583,-5549,-12068,-7451,-4132], -[1,3,7023], -[0,7024,7025,7026,6], -[0,-635,-12069,-2840,-1934], -[0,-12070,-1889], -[0,-712,-714,-724,-775,-1644,-1889,-3583], -[1,3,7028], -[0,242,22,7029,9], -[0,-775,-7193,-1889,-3583], -[1,3,7031], -[0,7032,7033,7034,5], -[0,-518,-12069,-668,-12071,-12072,-1889,-12073,-12074,-1890,-12075,-12076,-12077,-12078,-12079,-12080,-12081,-12082,-1896, --1897,-1898,-12083,-12084,-12085,-12086,-12087,-1917,-12088,-12089,-12090,-12091,-12092], -[0,-526,-527,-534,-558,-560,-565,-8161,-682,-778,-12093,-12094,-12095,-12096,-12097,-932,-12098,-949,-969,-1017,-1041, --1304,-12099,-1442,-1455,-1600,-12100,-1633,-12101,-12102,-12103,-12104,-12105,-12106,-12107,-12108,-12109,-11748,-1762, --12110,-1792,-1812,-12111,-1906,-1908,-12060,-7033,-1967,-2006,-2019,-12112,-2125,-2269,-2275,-2322,-12113,-2501,-2505, --12114], -[0,-1889,-3583,-775,-5387,-12115], -[1,3,7036], -[0,7037,0,7038,5], -[0,-12116,-93,-94,-95], -[0,-12117,-12118,-775,-12119,-3586,-12120,-1889,-3583,-12121,-5101,-4681,-5387], -[1,3,7040], -[0,7041,0,7042,4], -[0,-12116,-93,-94,-12063,-1934], -[0,-775,-12119,-3586,-3587,-1889,-3583,-3589,-4681,-3591,-3592,-5387], -[1,3,7044], -[0,7045,0,7046,4], -[0,-12116,-93,-94,-1931], -[0,-12117,-12118,-775,-12119,-3586,-12122,-8109,-1889,-3583,-11315,-12123,-4681,-5387], -[1,3,7048], -[0,90,7049,7050,6], -[0,-1889,-1930,-10815], -[0,-775,-3485,-1889,-3583], -[1,3,7052], -[0,0,22,7053,9], -[0,-775,-816,-7192,-1889,-3583], -[1,3,7055], -[0,0,22,7056,4], -[0,-6454,-775,-12124,-1644,-7193,-1889,-3583], -[1,3,7058], -[0,0,7059,7060,6], -[0,-834,-1863,-1889], -[0,-1889,-775,-3583,-12125,-12126,-12127], -[1,3,7062], -[0,0,7063,7064,8], -[0,-664,-1168,-1197,-1231], -[0,-1889,-775,-3583,-12128,-6445,-12129], -[1,3,7066], -[0,7067,7068,7069,9], -[0,-1333,-3187,-1889,-1929], -[0,-8281,-518,-664,-708,-932,-940,-954,-8286,-961,-965,-8287,-967,-971,-980,-7355,-1654,-8324,-1788,-12130,-1930,-12131, --1942,-2281,-2282,-2289], -[0,-1889,-4132,-3264,-2476,-12132,-12133,-775,-1521,-2162,-3754,-12134,-2289], -[1,3,7071], -[0,7072,0,7073,10], -[0,-12063,-1934], -[0,-5182,-775,-6527,-12135,-5399,-7036,-1889,-3583,-9804,-3576], -[1,3,7075], -[0,7076,7077,7078,10], -[0,-1934,-12061,-2114], -[0,-519,-652,-932,-12062,-967,-1110,-1889,-1930,-1942,-2289], -[0,-775,-1889,-3583,-6024,-12136,-1764], -[1,3,7080], -[0,7081,0,7082,4], -[0,-1532], -[0,-1889,-12137,-12138], -[1,3,7084], -[0,7085,7086,7087,5], -[0,-1431,-2177,-755], -[0,-824,-1415,-1521,-2162,-1344,-1623,-12139,-774,-932,-784,-825,-1110,-1889,-2289,-2375,-2379,-2501,-1942,-767,-21,-190, --533,-2790,-2269,-23,-1522,-1534,-1771,-2163,-12140,-1906,-1916,-86,-965,-3560,-2251,-40,-2411,-959,-1907,-958,-6929, --978,-940,-967,-3748,-12141,-3307], -[0,-775,-1889,-9300,-2501,-5050], -[1,3,7089], -[0,7090,22,7091,6], -[0,-1934,-2280], -[0,-775,-1644,-7192,-1889,-3583], -[1,3,7093], -[0,7094,7095,7096,8], -[0,-635,-12069,-1931,-12142], -[0,-12070,-1889,-10815,-1899], -[0,-775,-7192,-1889,-3583], -[1,3,7098], -[0,60,22,7099,5], -[0,-775,-3827,-12143,-12144,-7192,-3583], -[1,3,7101], -[0,7102,22,50,10], -[0,-2840,-1934,-12142], -[1,3,7104], -[0,7105,22,7106,10], -[0,-635,-1934,-12142], -[0,-1889,-775,-3583,-1644,-7192,-5154], -[1,3,7108], -[0,7109,7110,7111,4], -[0,-783,-1931], -[0,-12145,-1889], -[0,-775,-1644,-7192,-1889,-3583,-12123], -[1,3,7113], -[0,7114,130,7115,10], -[0,-2773,-1931,-1934], -[0,-12146,-1889,-775,-3583], -[1,3,7117], -[0,90,0,7118,11], -[0,-1889,-775,-3583,-2162,-8893], -[1,3,7120], -[0,7121,0,7122,11], -[0,-12147,-98,-1931], -[0,-12148,-6599,-12149,-775,-12115,-12119,-8893,-12150,-1889,-3583,-8199,-12123,-4682,-4683,-4132,-5387], -[1,3,7124], -[0,7125,7126,7127,5], -[0,-12151,-12152,-12153], -[0,-12154,-635,-1889,-1906,-2127], -[0,-1889,-775,-3583,-12155,-6413,-12156], -[1,3,7129], -[0,0,22,7130,6], -[0,-1889,-775,-3583,-9791], -[0,60,22,50,4], -[1,3,7133], -[0,60,22,50,11], -[1,3,7135], -[0,242,22,50,8], -[1,3,7137], -[0,60,22,7138,4], -[0,-775,-6811,-7192,-7193,-1889,-3583,-2435], -[1,3,7140], -[0,7141,22,50,5], -[0,-1934,-12142], -[1,3,7143], -[0,0,7144,7145,4], -[0,-1344,-1654,-1889,-1405,-1942,-1534,-1916], -[0,-1889,-5899,-12123,-3583,-775,-3585,-3862], -[1,3,7147], -[0,7148,0,7149,5], -[0,-12157,-5297,-12158,-12159,-12160,-12161,-12162,-12163,-12164,-12165,-12166,-12167,-12168,-12169,-12170,-96,-12171, --12172,-12173,-12174,-12175,-12176,-12177,-12178,-12179,-12180,-12181,-12182,-12183,-97,-12184,-12185,-12186,-12187, --12188,-12189,-12190,-12191,-12192,-12193,-12194,-518,-635,-12195,-12196,-12197,-782,-12074,-12198,-1892,-12077,-12080, --1896,-1897,-1898,-12199,-12200,-2579,-12201,-12084,-12202,-1905,-12203, --12204,-1917,-2635,-12205,-12206,-12207,-12088,-12090,-12092], -[0,-775,-12119,-7186,-6309,-12208,-2634,-1889,-3583,-4682,-4683,-7187,-5387], -[1,3,7151], -[0,7152,7153,50,8], -[0,-635,-12069], -[0,-12070,-1329,-1889], -[1,3,7155], -[0,0,0,7156,4], -[0,-775,-1889,-12209,-3215,-8947], -[1,3,7158], -[0,0,0,7159,4], -[0,-775,-1889,-12209,-3215,-3754,-2162], -[1,3,7161], -[0,7162,7163,7,11], -[0,-783,-9649], -[0,-21,-23,-32,-4952,-26,-40,-43,-519,-535,-6831,-825,-932,-958,-1107,-1646,-1788,-1889,-2177,-2410], -[1,3,7165], -[0,7166,7167,7168,8], -[0,-1934,-2303], -[0,-12072,-1889], -[0,-775,-1644,-7192,-1889,-3583,-3839,-2303], -[1,3,7170], -[0,90,22,50,4], -[1,3,7172], -[0,0,7173,7174,4], -[0,-932,-1344,-1534,-1942,-2320,-2322], -[0,-1889,-5846,-3215], -[1,3,7176], -[0,7177,0,7178,4], -[0,-12210,-12211,-12212,-12213,-12214,-12215,-12216,-2387], -[0,-6321,-10425,-11940,-1857,-7685,-7773,-9879,-3323,-3445,-11941,-10424,-2410,-3018,-985], -[1,3,7180], -[0,7181,7182,7183,4], -[0,-4256,-4255], -[0,-86,-9404,-652,-664,-665,-667,-740,-1344,-1448,-1534,-1654,-2250], -[0,-3264,-6597,-9727,-3215,-6408,-12217,-12056,-3277,-12218], -[1,3,7185], -[0,7186,0,7187,5], -[0,-12219,-2446,-1523,-1525,-2347,-12220,-1524,-12221,-1729,-12222,-12223,-2062,-12224,-12225], -[0,-7773,-11304,-1937], -[1,3,7189], -[0,7190,7191,7192,4], -[0,-5830,-12226,-12227,-12228,-2546], -[0,-526,-566,-3067,-551,-558,-633,-3346,-12229,-1003,-1471,-1475,-10495,-1479,-1482,-12230,-1654,-12231,-7718,-1991,-2111, --2177], -[0,-1938,-507,-5855,-4004,-3634,-3217,-3272], -[1,3,7194], -[0,7195,7196,7197,6], -[0,-769,-9798,-2518], -[0,-509,-1405,-1654], -[0,-5889,-3322,-1764,-1939,-12232,-11727,-4004,-3113], -[1,3,7199], -[0,0,7200,7201,11], -[0,-12233,-12234,-23,-3408,-5321,-40,-43,-2581,-3035,-3621,-3037,-4372,-5286,-3899,-12235,-664,-756,-767,-12236,-928, --1344,-12237,-1637,-1654,-1772,-8065,-10105,-1967,-5037,-2210,-2211,-2334,-2410,-2426,-2466,-2469,-4881], -[0,-1940,-2006,-3160,-3477,-12238,-9613,-3098,-12239,-3577,-3161], -[1,3,7203], -[0,7204,27,57,5], -[0,-668,-679,-1078,-7885], -[1,3,7206], -[0,7207,7208,7209,4], -[0,-12240,-3896,-1618], -[0,-8918,-3307,-350,-4062,-351,-3136,-4251,-427,-428,-721,-932,-940,-967,-1344,-1415,-12241,-12242,-1942,-2127,-2251, --2334,-2379,-2410], -[0,-1942,-3862,-1446,-8222], -[1,3,7211], -[0,0,7212,7213,6], -[0,-3037,-12243,-519,-1942,-2410,-5627], -[0,-1942,-12244,-2410,-12245,-12246], -[1,3,7215], -[0,7216,7217,7218,8], -[0,-7969], -[0,-1772,-1942], -[0,-10484,-3862,-1942], -[1,3,7220], -[0,0,7221,7222,6], -[0,-4066,-350,-351,-3037,-519,-1942,-2127,-2141,-2299,-2379,-2387,-2410], -[0,-1942,-2299], -[1,3,7224], -[0,7225,0,7226,6], -[0,-12247,-1548,-2001], -[0,-1942,-727], -[1,3,7228], -[0,0,14,7229,4], -[0,-3240,-651,-6472,-1044,-8799,-6656,-8574,-12248,-8800,-12249,-6582,-12250,-9782,-12251], -[1,3,7231], -[0,7232,7233,7234,8], -[0,-1548,-12252], -[0,-664,-710,-711,-12253,-1654], -[0,-3240,-6324,-12254,-812,-12255,-8800,-5598,-9361,-3276,-8574], -[1,3,7236], -[0,7237,7238,7,5], -[0,-4046,-482,-2029], -[0,-3040,-6633,-3081,-1361,-1427,-2006,-2019,-2052], -[1,3,7240], -[0,7241,14,7242,6], -[0,-12256], -[0,-3240,-9361,-8574,-9854,-12248,-8800,-4123,-1681,-12257,-7219,-12258,-7434,-5554,-2265,-6240,-12259], -[1,3,7244], -[0,7245,0,7246,6], -[0,-3446,-2387,-1353,-3535,-1864,-12260,-1863], -[0,-5889,-12261,-12262,-1942,-1952,-5538,-707,-12263,-12232], -[1,3,7248], -[0,7249,7250,7251,5], -[0,-714,-1646], -[0,-1654,-1452,-2198,-1405,-756,-1657], -[0,-4055,-687,-5538,-714], -[1,3,7253], -[0,7254,7255,7256,5], -[0,-1692,-10425,-2961,-12264,-12265,-12266], -[0,-1816,-2564,-1313,-1415,-1805,-999,-1496,-12267,-1852,-865,-3913,-6570,-679,-1077,-367,-7043,-5672,-1424,-1575,-1729, --12268,-2269,-12269,-2410,-3136,-3037,-10624,-12270,-511,-1101,-12271,-1769,-12272,-12273,-12274,-12275,-12276,-10419, --12277,-3048,-12278,-4835,-4106,-12279,-12280,-12281,-5038,-12282,-12283,-12284,-12285,-12286,-8863,-12287,-12288,-12289, --5782,-12290,-12291], -[0,-4340,-12292,-12293,-12294,-12295,-7685,-7773,-7485,-12296,-4165,-12297,-12298,-12299,-1857,-12300,-12301,-12302, --12303,-12304,-12305,-12306,-12307,-12308,-12309], -[1,3,7258], -[0,0,7259,7260,4], -[0,-4201,-589,-664,-12310,-824,-12311,-932,-960,-971,-1168,-1184,-1187,-1208,-2915,-1243,-1244,-12312,-1273,-1333,-1339, --1449,-1654,-1729,-1771,-1942,-1976,-8318,-8319,-12313,-2091,-8320,-2205,-12314,-2550], -[0,-12315,-4131], -[1,3,7262], -[0,7263,7264,7265,8], -[0,-615,-617,-714,-1004,-1576,-1650,-1666,-12316,-1813,-1850,-12317], -[0,-664,-1168,-1231,-1663,-2150,-2210,-2211,-2291], -[0,-622,-6011,-11722,-7737,-7736,-3324,-5889,-12318,-5897], -[1,3,7267], -[0,0,29,7,4], -[1,3,7269], -[0,0,7270,7271,6], -[0,-2568,-1654], -[0,-1958], -[1,3,7273], -[0,0,0,7274,7275], -[0,-687,-1959], -1769904000000, -[1,3,7277], -[0,7278,0,7279,4], -[0,-668,-1959], -[0,-2501,-3862,-1959,-10677], -[1,3,7281], -[0,7282,7283,7,8], -[0,-11744], -[0,-461,-2125,-1405], -[1,3,7285], -[0,0,7286,7287,6], -[0,-633,-767,-932,-4693,-1344,-1471,-1472,-1475,-1482,-1534,-1654,-1771,-1942,-2125,-2127,-2143,-2210,-2491,-2410], -[0,-1961,-1962,-6948,-6306], -[1,3,7289], -[0,7290,226,7291,4], -[0,-1654,-2210,-2424], -[0,-5923,-6306], -[1,3,7293], -[0,89,7294,57,6], -[0,-891,-1050,-1654,-1941], -[1,3,7296], -[0,7297,7298,7299,6], -[0,-5758,-510,-2059,-5975,-2520], -[0,-932,-2471], -[0,-1965,-3958,-12319,-3926], -[0,7301,7302,7303,6], -[0,-1496,-12320], -[0,-21,-23,-36,-40,-2320,-2322], -[0,-3160,-1966,-687,-1965,-3964,-3958,-3962,-3957,-3972,-3824,-3955,-12321], -[1,3,7305], -[0,7306,7307,41,5], -[0,-1580,-1792,-2029], -[0,-533,-560,-633,-647,-932,-1365,-1415,-2006,-12322,-12323], -[1,3,7309], -[0,0,7310,7311,11], -[0,-4251,-3037,-12324,-652,-1318,-12325,-12326,-1942,-2094,-2100,-12327,-12328,-2399,-2410,-7669,-2541], -[0,-11876,-9681,-3264,-4675,-8041,-7153,-3839], -[1,3,7313], -[0,7314,7315,7316,5], -[0,-12329,-12330,-12331,-12332,-12333,-12334,-12335,-12336,-12337,-12338,-3037,-1578], -[0,-589,-633,-12339,-647,-668,-931,-932,-986,-988,-1103,-11426,-12340,-9208,-1168,-1208,-1212,-1252,-1262,-1446,-1646, --1788,-2080,-2322,-2388,-2410,-2416,-2461,-2462,-2463], -[0,-12341,-12342,-12343,-2410], -[1,3,7318], -[0,7319,7320,7321,5], -[0,-12344,-11458,-2729,-2734,-668,-1107,-1412,-2779,-1980,-5471,-2173,-2234,-2818,-2819,-2550], -[0,-3711,-3036,-9705,-12345,-8566,-3037,-617,-664,-665,-11477,-1003,-1004,-1168,-12346,-1260,-1452,-1548,-1610,-1654, --12347,-2125,-2150,-2177,-2388,-12348,-2410,-12349], -[0,-475,-4004,-3634,-11468,-12350,-11467], -[1,3,7323], -[0,7324,7325,7326,4], -[0,-4377,-12351,-812], -[0,-12352,-3198,-3136,-3037,-511,-1415,-2375,-2410,-9056], -[0,-1334,-1342,-1971,-729,-7680,-12353,-12354,-7827,-12355,-12356,-12357], -[1,3,7328], -[0,7329,7330,231,4], -[0,-12358,-12359,-2114], -[0,-1654,-12360,-2198,-2210,-2250], -[1,3,7332], -[0,7333,7334,7335,5], -[0,-668,-12361,-12362,-1376,-1392,-1548,-1639,-1728,-1820,-2177], -[0,-526,-555,-558,-824,-932,-940,-1362,-1405,-1650,-1654,-1661,-1942,-2125,-2198], -[0,-1168,-1764,-8403,-5897,-3551], -[1,3,7337], -[0,7338,7339,7340,10], -[0,-12363,-12364,-12365,-12366,-12367,-12368,-12369,-12370], -[0,-1650,-2125,-10011,-10009,-10013,-10014,-12371,-12372,-10010], -[0,-3264,-1409,-1974,-3110], -[1,3,7342], -[0,0,7343,7,4], -[0,-589,-11080,-1021,-1948,-12373,-2320,-2322], -[1,3,7345], -[0,7346,0,7347,4], -[0,-908,-1801], -[0,-8027,-11441,-7412,-5865], -[1,3,7349], -[0,0,7350,7351,4], -[0,-708,-1788,-1654], -[0,-1977,-4112,-12374,-12375,-12376,-2435,-12377], -[1,3,7353], -[0,7354,91,7355,5], -[0,-7591,-12378,-755,-11460,-12379,-12380], -[0,-1978,-10366,-11878,-4864], -[1,3,7357], -[0,7358,0,7359,8], -[0,-719,-1026,-1889,-1931], -[0,-7175,-7036,-6694,-7441,-775,-3264,-8199,-12381,-9487,-7725], -[1,3,7361], -[0,0,7362,7363,9], -[0,-1127,-1452,-1612,-1132,-1414,-1148,-1963], -[0,-1980,-1961,-5923,-6305,-6306,-6307,-6309,-510,-6310,-12382,-4865,-3966], -[1,3,7365], -[0,0,0,7366,10], -[0,-6935,-12383,-6934,-7715,-3839,-6527], -[1,3,7368], -[0,0,0,7369,4], -[0,-5514,-4111,-6935,-4000], -[1,3,7371], -[0,7372,7373,7374,4], -[0,-7397], -[0,-12384,-12385,-5834,-633,-647,-12386,-887,-921,-932,-993,-1065,-1107,-8080,-12387,-11104,-7402,-1283,-1351,-1365,-1408, --1431,-1650,-1659,-6374,-1777,-1788,-1794,-8385,-2156,-9786,-2322,-12388], -[0,-1985,-1983,-5101,-2435,-1838,-6231], -[1,3,7376], -[0,7377,7378,7379,4], -[0,-12389,-12390,-12391], -[0,-519,-589,-821,-1023,-2384,-2541], -[0,-4865,-1985,-5101,-2265,-1983,-12392,-12393,-2435,-1838,-6231,-6422,-6420,-12394,-7724], -[1,3,7381], -[0,0,7382,7383,4], -[0,-4004,-12395,-2322], -[0,-4791,-5101,-1985], -[1,3,7385], -[0,0,7386,7387,4], -[0,-652,-1339,-12396], -[0,-1986,-510,-6235,-12397,-5418,-4107,-11866,-5920], -[1,3,7389], -[0,119,120,7390,4], -[0,-1986,-11868,-12398,-12399,-12400,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-5418,-12401,-1986,-12402,-12403, --12404,-10587,-11866,-12405,-11049,-7530,-7283,-12406,-6582,-7534,-7535,-7536,-7537,-7538,-7539,-7540,-7541,-7542,-7543, --7544,-7545,-7503,-12407,-7547,-7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558,-7559,-5063, --7560,-1980,-12408,-5839,-11450,-12409, --5737,-12410,-2634,-3966,-12411,-11052,-6187,-7563,-856,-7275], -[1,3,7392], -[0,7393,7394,7395,4], -[0,-1549,-12412,-12413,-996], -[0,-1107,-2303,-1449,-932,-2286,-2469,-2379,-2501,-1942,-2376,-21,-778,-2410,-23,-3037,-1322,-2503,-534,-1304,-2275,-2287, --2508,-3046,-5286,-3983,-3164,-40,-2233,-2505,-12414,-1331,-958,-2335,-940,-962,-967,-1643,-42,-12415,-428,-8561,-12416, --427,-4011,-948], -[0,-1988,-3496,-3495,-3494,-3505,-3506,-3161], -[1,3,7397], -[0,7398,7399,7400,11], -[0,-719,-10988,-1747], -[0,-1788,-1127,-1496,-932,-2125,-2127,-2177,-589,-1054,-12417,-2111,-1972,-8573,-23,-12418,-40,-957,-966,-1138,-8022, --9544,-3326,-952,-958,-12419,-968,-1137,-3561,-943,-963,-350,-942,-351,-12420,-3840], -[0,-3634,-5119,-507,-5855,-2319,-2322,-1471,-1437], -[1,3,7402], -[0,7403,7404,7405,8], -[0,-12421], -[0,-2832,-12422,-427,-428,-3664,-549,-558,-726,-932,-940,-967,-6726,-8011,-1942,-2910,-1989,-2091,-12423,-2127,-4063, --2142,-2410,-2469,-2501], -[0,-4865,-5092,-3264,-1989,-12424,-3634], -[1,3,7407], -[0,7408,7409,7410,4], -[0,-679,-719,-12425,-1048,-12426,-2114,-2488], -[0,-510,-537,-559,-12427,-705,-10255,-10260,-957,-8022,-999,-1054,-1077,-1127,-1132,-1133,-1137,-1138,-9544,-1149,-9240, --1152,-10257,-9241,-10644,-12418,-1542,-1972,-2111,-2128,-2177], -[0,-3634,-5119,-1437], -[1,3,7412], -[0,7413,7414,7415,9], -[0,-1856], -[0,-12428,-633,-2322], -[0,-12429,-3582], -[1,3,7417], -[0,0,7418,7419,5], -[0,-21,-23,-40,-43,-47,-3326,-10022,-12430,-571,-589,-693,-767,-12431,-932,-958,-1023,-1276,-1442,-1654,-1771,-1788,-2125, --2127,-2143,-12432,-12433,-2210,-2342,-12434], -[0,-1993,-5112,-5260,-8113,-3481,-11639,-12435,-12436,-12437,-9976,-12438], -[1,3,7421], -[0,7422,27,7423,6], -[0,-2172], -[0,-6555,-12439,-12439,-10781,-3262,-12440,-5554], -[1,3,7425], -[0,177,7426,7427,5], -[0,-1859,-2250,-2320,-2322,-2568], -[0,-770,-6555], -[1,3,7429], -[0,7430,27,7,10], -[0,-1995], -[1,3,7432], -[0,0,172,7433,9], -[0,-7434,-3215,-1334], -[1,3,7435], -[0,7436,7437,7438,6], -[0,-1616,-2446,-743,-12441,-2249], -[0,-1107,-1722,-1654,-2210,-932,-2198,-1405,-1942,-710,-940], -[0,-11428,-8980,-12442,-5545,-1998,-12443], -[1,3,7440], -[0,7441,7442,7,5], -[0,-651,-12444,-1351,-1335], -[0,-1788,-1654,-932,-615,-2884,-2155,-2062,-3748,-5029], -[1,3,7444], -[0,205,7445,48,5], -[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-967,-1344,-1415,-1534,-1623,-1771,-1942,-2251, --2501], -[1,3,7447], -[0,7448,0,7449,4], -[0,-1371,-1646,-822,-2271], -[0,-727,-2001,-11642,-10659], -[1,3,7451], -[0,7452,7453,7454,5], -[0,-44,-682,-2004], -[0,-12445,-407,-409,-3059,-3136,-3037,-3040,-3052,-6265,-767,-881,-932,-959,-978,-1031,-12446,-1103,-1107,-1521,-1763, --12447,-2003,-4946,-2006,-2019,-2082,-2410], -[0,-2006,-3159,-12448,-12449,-3962,-7434], -[1,3,7456], -[0,7457,7458,7459,5], -[0,-44,-5650,-682,-2004], -[0,-12445,-409,-3136,-3040,-3052,-4972,-767,-881,-932,-978,-1031,-1103,-1521,-1763,-12447,-2006,-2019,-2410], -[0,-2006,-3159,-12450,-3821], -[1,3,7461], -[0,7462,7463,7464,5], -[0,-44,-2029], -[0,-12445,-409,-3136,-3037,-3040,-3052,-6633,-12451,-4972,-6265,-761,-767,-881,-932,-959,-978,-1031,-1107,-1344,-1534, --1763,-1942,-12447,-2006,-2019,-2410], -[0,-2006,-2444], -[1,3,7466], -[0,0,0,41,10], -[1,3,7468], -[0,7469,0,245,10], -[0,-2055], -[1,3,7471], -[0,7472,7473,245,5], -[0,-1792], -[0,-1415,-2006,-2019,-2501], -[1,3,7475], -[0,7476,7477,7478,5], -[0,-12453,-12454,-12455,-12456,-12457], -[0,-2127,-2410], -[0,-3321,-1122,-2006,-3322,-8977,-3098], -[1,3,7480], -[0,7481,0,7,11], -[0,-1992,-753,-1961,-2516,-1792,-2082], -[1,3,7483], -[0,7484,0,7485,4], -[0,-2489,-1384,-682,-1967,-12458,-860,-44,-12459,-12460,-12461,-3140,-2055,-3024], -[0,-620,-2006,-3095,-3098,-12462,-3159], -[1,3,7487], -[0,7488,7489,7490,5], -[0,-12463,-1548,-1549,-12464,-1967,-12465,-2355], -[0,-12466,-12467,-6263,-6264,-4749,-526,-527,-533,-534,-12468,-559,-560,-562,-566,-664,-12469,-778,-915,-994,-1033,-1304, --1322,-1331,-1347,-1415,-1417,-12470,-1654,-1762,-1764,-1792,-2006,-8934,-12471,-2019,-2024,-12472,-2052,-2102,-2109, --2125,-2275,-12473,-2501,-2505], -[0,-2006,-12474,-3159,-8597,-4122,-12475,-10366,-12476,-3119,-3825], -[1,3,7492], -[0,7493,7494,7495,9], -[0,-747,-1967], -[0,-21,-23,-32,-26,-36,-40,-41,-43,-534,-553,-778,-827,-932,-933,-958,-962,-969,-970,-1103,-1331,-12477,-1643,-2006,-2019, --2275,-2322,-2501,-2503,-2505], -[0,-3095,-3159,-2006,-12478,-699], -[1,3,7497], -[0,7498,7499,7500,9], -[0,-2852,-703,-807], -[0,-23,-32,-3192,-3840,-26,-40,-41,-42,-190,-12479,-3326,-350,-351,-3266,-3267,-406,-409,-410,-3330,-3136,-4961,-3037, --3040,-3052,-427,-428,-522,-533,-553,-753,-12480,-932,-940,-958,-959,-969,-970,-9724,-1344,-1415,-4980,-1416,-1419,-1534, --1548,-1942,-2006,-2019,-2127,-5090,-2162,-2223,-2281,-2282,-3436,-2285,-2375,-2387,-2410,-2411], -[0,-2006,-4222,-4120,-4121,-3159], -[1,3,7502], -[0,7503,7504,7,5], -[0,-1805,-668,-1359,-1111,-1872,-6558,-1047,-12481,-1966,-1044,-1273,-2269,-2343,-769,-2194,-635,-1543,-6197,-12482,-22, --2070,-2021,-930,-1067], -[0,-1415,-767], -[1,3,7506], -[0,7507,7508,7,6], -[0,-12483,-12484,-12485,-1025,-1311], -[0,-4010,-367,-409,-5220,-3136,-3037,-3040,-3052,-1415,-5129,-1771,-2006,-2019,-2200,-2410], -[1,3,7510], -[0,7511,7512,7,8], -[0,-12485], -[0,-4010,-367,-3136,-1771,-2200,-2410], -[1,3,7514], -[0,7515,0,7516,4], -[0,-2114,-8245,-23,-47,-4096,-3200,-46,-12486,-4776,-10101], -[0,-2006,-856,-12487], -[1,3,7518], -[0,7519,0,41,4], -[0,-2166], -[1,3,7521], -[0,7522,7523,7524,4], -[0,-12488,-12489,-1967], -[0,-21,-23,-32,-3840,-12490,-34,-12491,-6065,-5584,-12492,-38,-40,-41,-43,-86,-9404,-12493,-10709,-3326,-350,-351,-3470, --7040,-3472,-7041,-7042,-5295,-4774,-12494,-406,-407,-409,-2622,-3040,-3052,-427,-428,-533,-535,-536,-720,-767,-932,-940, --958,-962,-966,-967,-969,-970,-1344,-12495,-1357,-1415,-1534,-1609,-1868,-1942,-2006,-2019,-2049,-2052,-2125, --2127,-2140,-2174,-2214,-2275,-2278,-2410,-2501,-12496], -[0,-3159,-2006,-7581,-7582,-7764], -[1,3,7526], -[0,0,7527,7528,4], -[0,-22,-23,-2624,-533,-534,-561,-668,-679,-767,-1059,-1320,-1415,-12497,-1792,-1961,-2000,-2006,-2010,-2019,-2125,-12498, --2231,-2501], -[0,-12499,-4132,-6324,-5547,-6335,-12500,-12501,-2489], -[1,3,7530], -[0,7531,7532,7533,4], -[0,-1792,-1967,-2798,-12502], -[0,-527,-528,-537,-539,-546,-551,-558,-560,-664,-708,-740,-796,-932,-12503,-940,-958,-962,-964,-967,-969,-1405,-1471, --1474,-12504,-1475,-1476,-1479,-12505,-1482,-1486,-1490,-1491,-11508,-1654,-1942,-2006,-2019,-2125,-2127,-2128,-2131, --2137,-2138,-2210,-2211], -[0,-2022,-12506,-2006,-10855,-12507,-12508,-12509,-10606,-11729,-3956,-12510,-5553], -[1,3,7535], -[0,0,7536,7537,4], -[0,-3615,-262,-350,-351,-3266,-367,-7043,-407,-409,-3136,-3037,-3040,-3052,-3563,-795,-932,-940,-3071,-967,-969,-970, --4814,-1344,-1415,-1419,-12511,-2781,-1534,-1942,-2006,-2019,-2125,-2127,-2142,-2384,-2410,-2411,-2516,-2564], -[0,-2006,-3322,-4053,-4054,-12512,-3926,-2410,-4124], -[1,3,7539], -[0,7540,7541,7542,6], -[0,-10579,-1109,-1311,-1543,-1967,-2030,-2192,-2231], -[0,-3795,-3040,-3807,-526,-527,-528,-533,-536,-537,-546,-551,-556,-558,-560,-708,-6019,-761,-767,-915,-12513,-916,-932, --933,-940,-958,-962,-969,-1344,-1415,-1534,-1942,-2006,-2019,-12514,-2052,-2069,-2125,-2127,-2128,-2131,-2133,-2137, --2138,-2143,-2251,-12515], -[0,-2006,-3214,-2501,-6211,-1540,-12516,-10589,-12517,-5932,-11492], -[1,3,7544], -[0,7545,7546,7547,6], -[0,-44,-2770,-12518], -[0,-21,-23,-32,-12519,-36,-3204,-38,-39,-40,-41,-43,-3326,-350,-351,-3561,-3266,-406,-407,-409,-3136,-3040,-3664,-7465, --527,-3766,-6046,-756,-757,-767,-932,-933,-940,-958,-12520,-962,-969,-976,-1278,-1344,-1349,-1534,-1650,-1942,-2006, --2019,-2052,-2125,-2127,-2410,-2469,-2550], -[0,-1349,-9780,-1348,-9781,-9782,-9772,-9783,-2006,-3476], -[1,3,7549], -[0,0,7550,7551,10], -[0,-2832,-2581,-5295,-407,-409,-3037,-3040,-3052,-440,-2970,-3899,-8349,-1534,-1637,-1771,-1874,-2910,-2006,-2019,-3246, --2214,-2391,-2410,-2469], -[0,-2006,-3095,-3322,-12521,-12522,-12523,-12524,-12525,-12526,-12527], -[1,3,7553], -[0,7554,0,7555,4], -[0,-5220,-1311,-2387,-12528,-12529,-12530,-12531], -[0,-3276,-5538,-9783,-1348,-9780,-1382,-12250,-9782,-2006,-3476,-3940,-9781], -[1,3,7557], -[0,0,0,41,6], -[1,3,7559], -[0,0,7560,7,5], -[0,-656,-668,-932,-12532,-1415,-1417,-1942,-2127,-2138,-2143], -[1,3,7562], -[0,7563,7564,7565,6], -[0,-5334,-4251,-9596,-1291,-2632,-1619,-2098,-2101,-2427,-2429,-5358], -[0,-409,-3037,-3040,-3052,-652,-725,-928,-969,-4652,-1942,-2006,-2019,-2088,-12533,-2094,-2095,-2100,-4656,-2399,-2410, --2541], -[0,-3272,-8630,-3095,-4329,-1599,-2006,-3159,-2093,-2427], -[1,3,7567], -[0,7568,7569,7570,5], -[0,-12534,-1967,-2030,-2489], -[0,-12535,-526,-527,-528,-534,-535,-558,-560,-564,-756,-767,-932,-940,-12416,-958,-962,-967,-969,-5997,-1471,-1475,-1476, --1479,-1482,-1483,-1490,-1492,-1654,-1771,-1942,-2006,-2019,-2043,-2044,-2198,-2416,-2501,-2503,-2505], -[0,-2006,-3159,-4126,-12536], -[1,3,7572], -[0,7573,7574,7575,5], -[0,-1856,-1967,-1992], -[0,-525,-12537,-527,-528,-534,-709,-778,-932,-933,-949,-958,-962,-969,-1059,-11942,-12538,-12539,-1413,-1471,-1476,-1481, --12540,-1484,-1492,-12541,-1859,-2024,-2275,-2501,-2505], -[0,-2006,-3095,-3159,-12542,-12543,-12544,-12545,-5176,-12546,-3160], -[1,3,7577], -[0,7578,0,246,4], -[0,-2531,-2624,-2550,-2177,-1961,-578,-719,-1384,-2166,-481,-533,-12547,-2654,-1624,-2516,-12548,-1950,-2041,-12549,-458, --12550,-11463,-12551,-9870,-2082,-12552,-1421,-12553,-12554,-12555,-12556,-12557,-12558,-12559,-12560], -[1,3,7580], -[0,0,7581,7582,4], -[0,-12563,-12564,-12565,-932,-967,-1942,-2006,-2034,-12566,-2410], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-12568], -[1,3,7584], -[0,7585,7586,7587,6], -[0,-2550,-1967], -[0,-2006,-932,-12569,-12570,-1387,-1942,-4731,-21,-12571,-23,-528,-1064,-12572,-9081,-12573,-12574,-12575,-12576,-12577, --969,-933,-958,-940,-962,-967,-970,-3156], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-12578,-7084,-12579,-3160,-3167,-3843,-9472,-9474,-3827], -[1,3,7589], -[0,0,7590,7591,9], -[0,-21,-23,-26,-36,-3203,-40,-41,-43,-12580,-2685,-8471,-261,-6429,-3267,-407,-409,-410,-3040,-428,-528,-534,-535,-3090, --682,-703,-767,-932,-940,-949,-958,-969,-1103,-1449,-1613,-6519,-1942,-4130,-2006,-2019,-12581,-2127,-2128,-2131,-5090, --2134,-2137,-2138,-2143,-2376,-2410,-2469,-2501,-2503,-2505], -[0,-3159,-2006,-12582,-3962,-6240,-12583,-6769], -[1,3,7593], -[0,0,7594,7595,4], -[0,-23,-26,-36,-40,-6035,-3326,-528,-534,-664,-932,-1344,-1534,-1654,-1771,-1942,-2006,-2019,-2052,-12584,-2125,-2127, --2501], -[0,-2006,-12585,-12586,-12587], -[1,3,7597], -[0,0,7598,7599,4], -[0,-4066,-12588,-932,-12589,-967,-12590,-1415,-1942,-2127,-2410], -[0,-2039,-3264,-3839,-5092,-7153,-9681,-727,-2006,-2019], -[1,3,7601], -[0,7602,7603,7604,5], -[0,-12591,-12518], -[0,-262,-349,-406,-407,-409,-3037,-3140,-3040,-3052,-708,-767,-932,-940,-948,-958,-967,-969,-1449,-1942,-2006,-2019,-2074, --2125,-2391,-2410,-2411,-2469], -[0,-2006,-3476,-2074], -[0,0,0,41,4], -[1,3,7607], -[0,7608,7609,7610,4], -[0,-1346,-12592,-1967,-5582], -[0,-3267,-3035,-12593,-4647,-12594,-12595,-3621,-3040,-3052,-4372,-427,-428,-664,-767,-932,-952,-1103,-1449,-12596,-1654, --1942,-2006,-2019,-2125,-2127,-5405,-2198,-2210,-2387,-2392,-2402,-2410], -[0,-775,-3159,-12521,-2006,-3162,-12597,-12598,-3580,-12599,-3576,-3095], -[1,3,7612], -[0,7613,7614,248,6], -[0,-743,-3169], -[0,-2391,-2006,-2426,-12600,-12601,-2019,-2410,-2052,-409,-1419,-3172,-407,-410], -[1,3,7616], -[0,7617,7618,248,10], -[0,-2043], -[0,-2391,-2006,-12600,-2019,-2410], -[1,3,7620], -[0,0,7621,7622,4], -[0,-526,-527,-528,-534,-9887,-9888,-556,-559,-560,-563,-566,-932,-941,-956,-958,-962,-969,-1001,-1306,-9413,-12539,-1471, --1476,-1479,-1482,-1483,-1490,-1492,-1654,-2006,-2019,-2040,-2043,-2074,-12602,-12603,-12604,-2501], -[0,-2006,-2074,-3122], -[1,3,7624], -[0,7625,28,7,4], -[0,-594,-1415,-865,-932,-2177,-1889,-1966,-2114,-2501,-1077,-1080,-656,-533,-778,-23,-1041,-2163,-2318,-534,-635,-1426, --2275,-366,-866,-2041,-1908,-2015,-1918,-2233,-1352,-1927,-2010,-2116,-2505,-1331,-1428,-10049,-2335,-561,-1903,-2526, --941,-1643,-2507,-779,-542,-661,-2695], -[1,3,7627], -[0,7628,7629,7630,11], -[0,-44,-3772,-3778,-3819,-3024,-1624,-1967,-2055,-3820], -[0,-5131,-915,-2760,-5116,-2006,-2019], -[0,-12605,-4053,-3962,-12606,-2006,-3159,-6750,-3160], -[1,3,7632], -[0,7633,7634,7635,5], -[0,-682,-12607,-1553,-2113], -[0,-21,-23,-32,-26,-39,-40,-41,-12608,-407,-409,-410,-3037,-518,-527,-533,-534,-557,-778,-823,-824,-923,-932,-958,-969, --1004,-12609,-1168,-1243,-1344,-1415,-1419,-1440,-1455,-1534,-1812,-1908,-1942,-1992,-2006,-2019,-2082,-2210,-12610, --2275,-2417,-2501,-2503,-2505,-12611], -[0,-12612,-12613,-12614,-12615,-12449,-3159], -[1,3,7637], -[0,7638,7639,7640,5], -[0,-12616,-3081,-12617,-461,-6426,-507,-5223,-639,-684,-12618,-703,-12619,-748,-753,-8245,-12620,-925,-930,-931,-989, --11676,-5504,-12621,-3649,-1107,-12622,-1284,-1395,-12623,-12624,-12625,-12626,-12627,-12628,-12629,-12630,-1496,-12631, --1548,-9160,-1606,-12632,-3446,-1816,-1955,-1967,-12633,-12634,-2015,-2018,-12635,-12636,-12637,-2026,-5351,-2066,-2093, --12638,-2335,-8299,-12639,-2429,-2505, --2508], -[0,-21,-23,-26,-40,-6056,-41,-42,-407,-409,-12640,-12641,-12486,-12642,-426,-12643,-3136,-12644,-3044,-12645,-3037,-3803, --3040,-3052,-12646,-12647,-3046,-12648,-3806,-427,-428,-527,-528,-533,-534,-778,-12310,-12649,-12650,-12651,-932,-12652, --948,-952,-958,-962,-969,-1041,-1077,-1344,-1415,-12653,-1534,-1623,-1942,-1992,-2006,-2019,-2052,-12654,-2275,-2410, --2437,-2501, --2503], -[0,-2006,-4146,-4900,-4901,-856,-3671,-3262,-3095,-3098], -[1,3,7642], -[0,7643,7644,7645,4], -[0,-44,-401,-3140,-1967], -[0,-23,-38,-40,-41,-190,-6486,-3326,-350,-351,-3561,-3266,-409,-3136,-4647,-3037,-3040,-3052,-3714,-553,-2745,-932,-940, --969,-970,-4814,-1110,-1415,-1419,-1722,-1772,-1942,-2006,-2019,-2127,-2195,-2200,-5091,-2375,-2379,-2410,-2411], -[0,-5092,-3264,-5093,-5094,-3214,-2006,-12655,-3839,-12656,-2410], -[1,3,7647], -[0,7648,0,7649,6], -[0,-1033], -[0,-12657,-2006,-2363,-826,-12658,-2051], -[1,3,7651], -[0,7652,0,7653,8], -[0,-2029,-2166], -[0,-2006,-2034,-12659], -[1,3,7655], -[0,108,7656,7657,5], -[0,-12660,-11184,-234,-405,-3037,-3040,-3052,-440,-756,-795,-2926,-1534,-1889,-1942,-2006,-2019,-2391,-2410,-2466,-12661], -[0,-2006,-4127,-12662,-3159,-2053,-5737,-12663,-12664,-12665], -[1,3,7659], -[0,7660,7661,7662,5], -[0,-12666,-12667], -[0,-589,-633,-647,-710,-12668,-3346,-913,-12669,-923,-932,-12670,-1127,-1132,-10258,-1134,-7849,-1137,-1144,-12671,-10265, --12672,-1417,-1813,-1859,-6184,-12673,-2066,-9266,-2359,-2410,-2416,-12322,-2493], -[0,-2006,-4146,-8530,-6107], -[1,3,7664], -[0,7665,0,7666,10], -[0,-44,-860,-1580,-1967], -[0,-2006,-12546,-8111,-12674,-5176,-775,-12675], -[1,3,7668], -[0,7669,7670,7671,6], -[0,-703,-1967,-860,-1580,-44,-2030], -[0,-1415,-1344,-2006,-2490,-932,-2125,-2127,-708,-1889,-2501,-1059,-1103,-1942,-767,-1361,-1978,-2019,-21,-533,-709,-778, --23,-1041,-1534,-1891,-2503,-518,-528,-534,-1952,-2043,-2275,-1908,-39,-11942,-12676,-2044,-40,-6056,-7748,-2505,-41, --12677,-951,-969,-12678,-1331,-2052,-2128,-2143,-12679,-2138,-940,-956,-962,-967,-2131,-12680,-2137,-1017,-3840,-38, --6057, --12681,-26,-3204,-553], -[0,-2006,-3476,-3159,-9614,-4108,-12682,-12683,-12684,-4002,-12685,-5147,-12129,-6445,-4672,-9133], -[1,3,7673], -[0,7674,7675,7676,10], -[0,-2346,-2054], -[0,-1654,-1452,-2177,-6398,-633,-725,-12686], -[0,-2006,-633,-6340,-4146,-3756,-3862,-6408], -[1,3,7678], -[0,7679,7680,7681,5], -[0,-44,-2997,-682,-1967,-2804,-2055], -[0,-21,-23,-32,-34,-35,-36,-3204,-40,-41,-4757,-4762,-4754,-12687,-4749,-407,-409,-410,-3040,-528,-533,-534,-561,-620, --726,-740,-10524,-767,-12688,-879,-888,-932,-933,-940,-956,-958,-962,-969,-4756,-12689,-1415,-1419,-1449,-1455,-1637, --1942,-2006,-2019,-2022,-12690,-2043,-2052,-2410,-2501], -[0,-2058,-620,-2006,-3095,-3098,-3159,-3160], -[1,3,7683], -[0,7684,7685,7,4], -[0,-3950], -[0,-4298,-4300,-3952,-5866,-428,-652,-948,-2319,-2379,-2386,-2410], -[1,3,7687], -[0,7688,118,7689,8], -[0,-6902,-6904,-6990,-2400,-8803], -[0,-4055,-2059,-1838,-6656,-1076,-11998,-6994,-5897,-6811], -[1,3,7691], -[0,7692,14,7693,4], -[0,-8341,-2060,-2400], -[0,-4055,-2059,-1838,-6656,-1076,-11998,-6994,-5897,-5573,-8804,-1047,-5504,-8805,-8806,-7282,-5572,-2114,-8807,-6370, --7420,-7421,-2487,-8808,-1847], -[1,3,7695], -[0,7696,7697,7698,9], -[0,-458,-640,-997,-1958,-6383], -[0,-23,-6065,-5584,-3244,-350,-6572,-351,-357,-633,-652,-928,-12691,-932,-943,-958,-965,-968,-1874,-1942,-2127,-9701, --2319,-12692,-2322,-2323,-2426,-2501,-2503], -[0,-8800,-5827,-11441], -[1,3,7700], -[0,0,7701,7702,8], -[0,-2319,-1351], -[0,-2063,-12693,-6656], -[1,3,7704], -[0,0,0,7705,9], -[0,-2063,-12397,-9845,-1965,-3969,-5110,-687,-3975,-3957,-12694,-10394,-4116,-6301], -[0,68,15,16,5], -[1,3,7708], -[0,7709,7710,7711,5], -[0,-5223,-987,-2231,-12695,-2387], -[0,-23,-25,-40,-12696,-3036,-3621,-3037,-428,-932,-12670,-12697,-1107,-1534,-1654,-1942,-9880,-2410], -[0,-3272,-9306,-12698,-9308,-4132,-9307,-6747,-12699], -[0,67,15,16,8], -[1,3,7714], -[0,7715,125,7716,4], -[0,-2114], -[0,-4792,-5932,-5195,-8109,-12700], -[1,3,7718], -[0,7719,0,7720,4], -[0,-44,-12701,-1033,-1311,-2030,-5746], -[0,-2006,-12702,-3098,-12703,-3481,-8113,-12704], -[1,3,7722], -[0,124,27,7723,8], -[0,-7421,-12705], -[1,3,7725], -[0,7726,0,7727,6], -[0,-12706,-12707,-12708,-12709,-12710], -[0,-2071], -[1,3,7729], -[0,7730,7731,150,10], -[0,-3544,-3786,-1610,-3788,-1955,-2223,-1885,-863,-682,-1653,-1967,-3790,-3791,-3787,-3793,-996,-3789,-1848,-3792,-2680, --12711], -[0,-1992,-2435,-1415,-1652,-1344,-2006,-2387,-915,-932,-2125,-753,-795,-1442,-1821,-2195,-2375,-2379,-3811,-2501,-1942, --2019,-778,-2214,-2410,-3035,-3136,-3800,-3037,-3810,-2503,-3040,-3041,-1952,-2275,-3043,-3802,-3801,-3803,-3805,-3046, --2760,-3808,-3809,-4773,-3797,-3052,-3140,-2278,-3806,-585,-2505,-3799,-748,-969,-1331,-958,-3798,-1419,-2509,-3804,-428, --970,-740, --3794,-1067,-427,-12712], -[1,3,7733], -[0,7734,7735,7736,4], -[0,-12713,-12714], -[0,-2006,-2501,-2019,-2410,-3040,-3052,-3859,-12715], -[0,-2072,-3438,-3690,-4847,-856,-12716,-858,-12717], -[1,3,7738], -[0,0,7739,7740,5], -[0,-23,-3037,-427,-428,-767,-4780,-932,-941,-948,-958,-969,-970,-1107,-12718,-1942,-2125,-2153,-2391,-2410,-2469], -[0,-2074,-4782,-4125,-12719,-5112,-1361,-12517,-12516,-12720,-1062,-12721], -[1,3,7742], -[0,7743,7744,7745,5], -[0,-12722,-12723], -[0,-12724,-12725,-12726,-1344,-1534,-1771,-1942,-2466,-2469,-2541], -[0,-1062,-2074,-10951,-12727], -[1,3,7747], -[0,7748,7749,7750,5], -[0,-1548,-2029,-924,-1384,-1398,-1967,-44,-1311], -[0,-2359,-1415,-1344,-2006,-2074,-932,-2125,-708,-2501,-1059,-1942,-767,-1361,-2019,-21,-821,-2214,-23,-12728,-1534,-2040, --2503,-528,-534,-12729,-40,-41,-540,-951,-969,-6040,-2052,-958,-12726,-12730,-956,-962,-941,-2502,-970,-5295,-12416,-38, --26,-3203], -[0,-2006,-3476,-1062,-2074,-2040,-2076,-4053,-11313], -[1,3,7752], -[0,7753,7754,7755,6], -[0,-819], -[0,-527,-537,-11899,-559,-664,-708,-932,-933,-958,-962,-969,-1339,-1344,-1654,-1788,-2074,-2125,-2127,-2128,-2131,-2137, --2143,-2210], -[0,-2074,-3444,-2077,-5401], -[1,3,7757], -[0,7758,7759,7760,10], -[0,-12731], -[0,-23,-38,-39,-40], -[0,-3214,-2074,-5401,-12732,-12733,-12734], -[1,3,7762], -[0,0,7763,7764,5], -[0,-427,-428,-767,-932,-940,-1942,-2074,-2125,-2391,-2410,-2469], -[0,-2074,-12735,-5401,-12736,-1062], -[1,3,7766], -[0,0,7767,7768,4], -[0,-3035,-3621,-3037,-664,-824,-12737,-1168,-12738,-12739,-1231,-1243,-12740,-1259,-1654,-2410], -[0,-11313,-11872,-3214,-12741], -[1,3,7770], -[0,0,7771,7772,8], -[0,-708,-1127,-1162,-1405,-6186,-1991,-2111], -[0,-5569,-5570,-3214,-4112,-3262,-3673], -[1,3,7774], -[0,0,0,7775,4], -[0,-12742,-11997,-3262,-510], -[1,3,7777], -[0,7778,0,7779,6], -[0,-5334,-2087,-2090,-2427], -[0,-12743,-3272,-3264,-1838,-1958,-2083,-6233,-6231,-4132,-10919,-2427], -[1,3,7781], -[0,7782,7783,7784,5], -[0,-5334,-9581,-4264,-2766,-2427,-2429], -[0,-3037,-9586,-652,-12744,-1942,-2083,-2094,-2100,-2399,-2410,-2541], -[0,-2427,-2083,-12745,-3862,-10857,-10606,-3264], -[1,3,7786], -[0,7787,7788,7789,4], -[0,-5334,-9581,-2766,-12746,-2235,-2429], -[0,-3037,-9586,-652,-1942,-2083,-2094,-2100,-2399,-2410,-2541], -[0,-2427,-2083,-12745,-3862,-9589,-3264,-1599,-12747,-10606,-2435], -[1,3,7791], -[0,7792,7793,7794,11], -[0,-5334,-12748,-1618,-5204,-5205,-2427,-5356], -[0,-4228,-3037,-3040,-652,-932,-12749,-962,-969,-9602,-1942,-2094,-11167,-12750,-2410], -[0,-9589,-3264,-1599,-4147,-2083,-12745,-2427], -[1,3,7796], -[0,7797,0,7798,5], -[0,-5334,-2586,-2427], -[0,-12743,-3272,-3264,-1838,-3862,-2083,-12745,-4132,-10919,-2427], -[1,3,7800], -[0,7801,7802,7803,8], -[0,-5334,-1286,-5358], -[0,-3037,-652,-1942,-2090,-2094,-2098,-2100,-2101,-2399,-2410,-2427,-2429,-2541], -[0,-3264,-3862,-9591,-2083,-12745,-2427], -[1,3,7805], -[0,7806,7807,7808,4], -[0,-5334,-3649,-4264,-1292,-2429], -[0,-3037,-652,-1942,-2083,-2094,-2100,-2399,-2410,-2541], -[0,-10857,-3264,-7231,-3862,-2083,-12745,-2222,-2427], -[1,3,7810], -[0,7811,0,7812,6], -[0,-5334,-1290,-2427], -[0,-12743,-3272,-7644,-3264,-3862,-2083,-12745,-6233,-6231,-4132,-10919,-2427], -[1,3,7814], -[0,7815,7816,7817,5], -[0,-12751,-305,-12752,-512,-6563,-680,-6869,-4236,-1376,-12753,-1566,-1641,-11656,-1805,-1816,-3547,-8874,-2177,-2654, --2426,-2436,-12754,-2551], -[0,-190,-12755,-3037,-932,-8339,-1110,-3781,-1498,-12756,-12757,-1942,-2094,-12758,-2323,-2410], -[0,-7641,-5887,-5890,-12759,-5889,-1105,-7661,-9845,-6657,-1764,-8403,-5737,-9244,-2091,-7737,-11729,-5550,-6818,-3673, --9318,-2177,-3862], -[1,3,7819], -[0,7820,7821,7822,4], -[0,-1405,-1645,-1876,-2231,-2347], -[0,-932,-934,-958,-1127,-1168,-12760,-2125], -[0,-7841,-9219,-2231,-1405,-4005], -[1,3,7824], -[0,7825,0,7826,4], -[0,-2427,-4251,-2098,-5616], -[0,-12743,-3272,-7644,-1599,-10918,-1838,-1958,-2093,-6233,-6231,-4132,-10919,-2427], -[1,3,7828], -[0,7829,0,7830,11], -[0,-3190,-12761,-2093,-12762], -[0,-8425,-687,-1599,-10918,-2093,-2427], -[1,3,7832], -[0,7833,7834,7835,10], -[0,-4251,-10922,-10923,-2098,-5616,-2427], -[0,-3037,-652,-12744,-1942,-2093,-2094,-2100,-2267,-7699,-2399,-2410,-2541], -[0,-10604,-12763,-4329,-1105,-1599,-10918,-3862,-2093,-12764,-5552,-4002,-4109,-2427], -[1,3,7837], -[0,7838,7839,7840,4], -[0,-4251,-1287,-1619,-1290,-2427], -[0,-5334,-3037,-652,-10915,-2586,-1942,-2094,-4242,-2095,-4655,-2098,-2100,-12765,-4656,-2399,-2410,-5358,-2541], -[0,-7644,-3264,-1599,-10918,-3862,-2093,-12764,-6231,-2427], -[1,3,7842], -[0,7843,7844,7845,9], -[0,-5358,-2427,-4251,-12766,-5356,-12767], -[0,-652,-932,-2093,-1942,-1874,-2094,-2410,-5334,-2101,-2090,-12750,-12749,-11167], -[0,-856,-5670,-12768,-3862,-2093,-12764,-2427], -[1,3,7847], -[0,7848,0,7849,5], -[0,-4251,-1618,-10869,-2427], -[0,-12743,-3272,-1599,-10918,-1838,-3862,-2093,-12764,-4132,-10919,-2427], -[1,3,7851], -[0,7852,7853,7854,9], -[0,-12769,-12770,-2095,-12771,-12772,-9514,-9515,-9516,-9517,-9518,-12773,-9519,-12774,-9520,-12775,-12776,-12777,-12778, --9524,-12779,-9527,-12780,-12781,-12782,-12783,-12784,-12785,-9528,-12786,-12787,-12788,-12789,-12790,-12791,-12792, --12793,-9532,-9533,-9534,-12794,-9535,-9536,-4995,-12795,-4656,-12796,-12797,-2427], -[0,-86,-3307,-932,-946,-1053,-1344,-1534,-1942,-2094,-2541], -[0,-1105,-6913,-2093], -[1,3,7856], -[0,7857,7858,7859,4], -[0,-12769,-2095,-4655,-9514,-9515,-9516,-9517,-12798,-9518,-12799,-12773,-9519,-12774,-9520,-12775,-12776,-12777,-9522, --12778,-12800,-12801,-12802,-12803,-12804,-12805,-12806,-12807,-12808,-12809,-12779,-12810,-9527,-12811,-12780,-12812, --12781,-12782,-12783,-12784,-12785,-9528,-12786,-12813,-12814,-12815,-12788,-12789,-12816,-12817,-12790,-12791,-12792, --12818,-12819,-12793,-9532,-9533,-9534,-12794,-9535,-9536,-4995,-12795, --5616,-4656,-9537,-12796,-12820,-2267,-2427], -[0,-1942,-2094,-2399,-2410,-2541], -[0,-6913,-2093,-12821], -[1,3,7861], -[0,7862,7863,7864,8], -[0,-5334,-4251,-1619,-2427,-5358], -[0,-3037,-652,-1942,-2089,-2090,-2094,-2098,-2100,-5616,-2399,-2410,-2541], -[0,-9589,-3264,-1599,-10918,-3862,-12745,-2083,-12764,-2093,-2427], -[1,3,7866], -[0,7867,7868,7869,6], -[0,-503,-12822], -[0,-5514,-589,-8630,-932,-953,-985,-1202,-1304,-1610,-1654,-1788,-2127,-2133,-2137,-2140,-2184], -[0,-8630,-1599,-3437,-1838,-3215,-1958,-2102,-7650,-4065,-5554], -[1,3,7871], -[0,0,125,7872,5], -[0,-1168,-8109,-7693,-3866], -[1,3,7874], -[0,7875,7876,7877,4], -[0,-668,-1107,-2550], -[0,-190,-652,-664,-665,-932,-1654], -[0,-8276,-5554,-7002,-6656], -[1,3,7879], -[0,7880,7881,7882,10], -[0,-1983,-11197,-2446,-1015,-12823,-6397,-12824,-1069,-1641,-12825,-2155,-2364,-12826,-12827,-12828,-12829,-12830,-8956, --1856,-1459], -[0,-1788,-2322,-1471,-12831,-2125,-708,-615,-2250,-756,-12832,-8375,-633,-641,-9573,-1476,-2188,-1472,-1860,-8958,-1484], -[0,-1334,-5493,-2444,-3590], -[1,3,7884], -[0,7885,7886,7887,4], -[0,-615,-2364,-12833,-12834], -[0,-664,-1168,-668,-1548,-2125,-2105,-1231,-617,-1197,-2150,-1220,-11117,-1973], -[0,-2533,-1334,-1342,-1961,-2105,-11301,-12835,-615], -[1,3,7889], -[0,7890,7891,7892,9], -[0,-12834,-12833,-2364], -[0,-617,-664,-668,-1168,-11117,-1197,-1220,-1231,-1548,-1973,-2105,-2125,-2150], -[0,-2533,-1334,-1342,-1961,-2105,-11301,-12835,-5269], -[1,3,7894], -[0,0,7895,7,10], -[0,-2379,-2410,-710], -[1,3,7897], -[0,0,7898,7899,4], -[0,-5856], -[0,-4792,-9409,-12836], -[1,3,7901], -[0,0,7902,7903,5], -[0,-349,-409,-3044,-3040,-3052,-3714,-427,-12837,-428,-12838,-932,-969,-12839,-1449,-1548,-1565,-1624,-12840,-12718,-1942, --2006,-2019,-2040,-2125,-2195,-2391,-2410,-2469], -[0,-2006,-2074], -[1,3,7905], -[0,0,7906,7907,4], -[0,-528,-757,-932,-1412,-1413,-1471,-1475,-1479,-1481,-3569,-1486,-1488,-1490,-1491,-1962,-2127,-2141,-2410], -[0,-12841,-10095,-12523,-2444,-3323,-4865,-3582,-6989], -[1,3,7909], -[0,7910,7911,7912,10], -[0,-12842,-7437,-12843], -[0,-6455,-2319,-2359,-2322,-887,-932,-1650,-2125,-2177,-12844,-1777,-1365,-1795,-8569,-2156,-5834], -[0,-2114,-4792,-3966,-3551], -[1,3,7914], -[0,0,14,7915,5], -[0,-4792,-2114,-1847,-3551,-8388,-6546,-6024], -[1,3,7917], -[0,7918,0,7919,10], -[0,-12845,-742,-1543,-1889,-2231], -[0,-2501,-5932,-775,-6811,-6043,-2114,-2435,-2162,-9358,-6656], -[1,3,7921], -[0,7922,7923,7924,5], -[0,-12846,-3780,-1077,-1276,-1442,-12847,-2446], -[0,-21,-23,-5870,-26,-33,-36,-5584,-39,-40,-44,-86,-3531,-3470,-3471,-519,-523,-528,-539,-541,-617,-664,-12848,-756, --12310,-834,-4088,-932,-12849,-12850,-958,-963,-964,-12851,-966,-968,-971,-12852,-972,-973,-978,-1004,-12853,-1344,-1444, --1457,-1547,-1654,-1656,-12854,-1788,-2174,-12855,-2293,-12856], -[0,-3960,-489,-3262,-856,-12857,-3636,-12858,-3691,-3690,-1334], -[1,3,7926], -[0,7927,7928,7929,4], -[0,-1983,-788,-12859,-1640,-1801,-1867,-2178,-12860,-2446,-1548,-2177,-2454,-11983,-1582,-1070,-5397,-508,-8541,-12830, --12861,-6456,-12862], -[0,-1788,-1816,-664,-1107,-1654,-2210,-932,-1650,-2125,-1376,-1754,-1942,-756,-2451,-12863,-8549,-1939,-1972,-856,-12864, --12865,-960,-940,-967], -[0,-3817,-3161,-1004,-12866], -[1,3,7931], -[0,7932,83,7,4], -[0,-1983,-2536,-2548,-1351], -[1,3,7934], -[0,7935,251,7936,8], -[0,-9050,-2202], -[0,-1000,-12867,-1958,-11998,-12868,-12869,-12870,-12871,-12872,-10018,-687,-5564,-5514,-6713,-4110,-3974,-4000,-3975, --5550,-3958], -[1,3,7938], -[0,7939,0,7940,8], -[0,-615], -[0,-7685,-12873,-12874,-12875], -[1,3,7942], -[0,0,7943,7,5], -[0,-8959,-1405,-2322], -[1,3,7945], -[0,7946,7947,7948,5], -[0,-932,-3414], -[0,-3037,-1003,-1654,-1788,-2379,-2410], -[0,-6137,-6138,-4215,-5396,-3551,-5119,-4004,-12876,-4676,-8959,-4792], -[1,3,7950], -[0,0,7951,7952,4], -[0,-3415,-708,-12877,-12878,-11961,-12879,-1552,-12880,-12881,-1993,-2250,-2319,-2384], -[0,-7208,-7369,-3589,-702,-6351,-6545,-7371,-7372,-7373,-7374,-7375,-12882,-12883,-12877,-12884,-5922,-6187,-12885,-12886, --12887,-12888,-12889,-12878,-12890], -[1,3,7954], -[0,7955,7956,7957,4], -[0,-1107,-12891], -[0,-3037,-1650,-1942,-2319,-2386,-2402], -[0,-6695,-12892,-12893,-6694,-7421,-687,-7418,-7371], -[1,3,7959], -[0,7960,7961,7962,4], -[0,-1696,-3846,-6521], -[0,-1412,-12894,-12895,-12896], -[0,-12897,-11189,-12898,-10394,-9711,-6527,-12899,-11321,-2126,-5566,-12900,-12901,-12902,-12903,-712], -[1,3,7964], -[0,202,7965,7966,4], -[0,-6779,-11174,-6780,-6778,-6777,-6776,-190,-4106,-3115,-12904,-5053,-4066,-6429,-350,-4062,-351,-3561,-3266,-3267,-4785, --12905,-3621,-3037,-8523,-3199,-9146,-12906,-461,-12907,-6426,-639,-644,-679,-726,-753,-767,-12908,-923,-927,-932,-940, --967,-978,-980,-1054,-12909,-1077,-4706,-1110,-1344,-4788,-1534,-4789,-1588,-1623,-1654,-1753,-12910,-1788,-4916,-1863, --1864,-2851, --1942,-1944,-1948,-1951,-2111,-2127,-2134,-2177,-2200,-2202,-2231,-2234,-2314,-2334,-2387,-2410,-2411,-2466,-2468,-2476, --2478,-5627,-12911,-2551], -[0,-3209,-7882,-12912,-3184,-7176], -[1,3,7968], -[0,7969,7970,7971,4], -[0,-3341,-2145], -[0,-23,-3840,-33,-38,-40,-639,-932,-940,-967,-1344,-1534,-1654,-1942,-2127,-2129,-2133,-2231,-2234], -[0,-12913,-525,-4795,-3184], -[1,3,7973], -[0,7974,7975,7,11], -[0,-639,-2145], -[0,-932,-1654,-2127], -[1,3,7977], -[0,7978,7979,7980,5], -[0,-12914,-2145], -[0,-6429,-932,-1001,-1654,-1788,-2125,-2127,-12915,-12916], -[0,-2127,-12913,-3214,-3184,-3209,-3485,-12917,-7416], -[1,3,7982], -[0,7983,7984,7,4], -[0,-989,-4788,-1588,-2114,-2145], -[0,-23,-40,-43,-461,-932,-958,-1344,-1534,-4789,-1654,-1942,-4790,-2127,-2128,-2133,-2137,-2200,-2231,-2234,-2410], -[1,3,7986], -[0,7987,7988,7989,4], -[0,-1588], -[0,-22,-8355,-12918,-426,-3037,-3040,-652,-2127,-2410], -[0,-12913,-2410,-4160,-12919], -[1,3,7991], -[0,7992,7993,7,11], -[0,-2145], -[0,-932,-958,-1344,-1534,-1654,-1942,-2127,-2129,-2137,-2234], -[1,3,7995], -[0,7996,7997,7998,5], -[0,-12920,-4787,-1548,-1588,-1666,-12921,-12922,-12923], -[0,-23,-40,-43,-3326,-350,-351,-3989,-427,-428,-479,-535,-932,-934,-958,-1022,-1077,-11780,-1168,-12924,-1222,-1412,-1413, --1942,-2125,-2127,-12925,-12926,-2359,-2410], -[0,-2127,-12913], -[1,3,8000], -[0,8001,8002,252,6], -[0,-12927,-12928,-771,-12929], -[0,-9889,-812,-1654,-2127,-2128,-2136,-2184], -[1,3,8004], -[0,8005,8006,252,6], -[0,-461,-12928,-989,-1588,-12929,-2145], -[0,-527,-558,-633,-1415,-1650,-1654,-2125,-2127,-2128,-2137], -[1,3,8008], -[0,8009,8010,253,5], -[0,-3200,-644,-4793,-2114,-2145], -[0,-23,-40,-43,-922,-932,-1654,-2127,-2128,-2131,-2133,-4794,-2410], -[1,3,8012], -[0,8013,8014,253,9], -[0,-1588,-2145], -[0,-932,-958,-1344,-1534,-4789,-1654,-1942,-2127,-2129,-2200,-2231,-2410], -[1,3,8016], -[0,8017,8018,8019,10], -[0,-4785,-7149], -[0,-3267,-3037,-427,-428,-932,-940,-967,-1415,-1942,-2125,-2127,-2375,-2410], -[0,-2127,-12913,-6915,-2231,-12930], -[1,3,8021], -[0,8022,8023,8024,6], -[0,-22,-1429,-2182,-2334], -[0,-23,-1415,-1942,-2127], -[0,-2127,-12913,-2334,-1644], -[1,3,8026], -[0,8027,8028,8029,5], -[0,-2114,-2145], -[0,-639,-932,-1654,-2125,-2127,-2129,-2131,-2387,-2410], -[0,-12913,-2410,-4795], -[1,3,8031], -[0,8032,8033,8034,4], -[0,-4785,-1046,-1077,-2177,-2387], -[0,-5121,-350,-351,-12931,-3048,-12932,-3136,-3044,-3037,-4067,-3199,-427,-428,-714,-932,-12933,-1415,-1548,-1793,-2125, --2127,-12934,-2142,-2375,-2410], -[0,-2142,-2141,-12913,-2410,-4795,-2127,-1764], -[1,3,8036], -[0,8037,8038,8039,6], -[0,-22,-1429,-2182,-2416], -[0,-23,-40,-533,-1415,-1942,-2127], -[0,-2127,-12913,-9216,-1644], -[1,3,8041], -[0,8042,8043,8044,4], -[0,-1805,-1864,-2231,-2550], -[0,-350,-351,-3266,-3267,-3269,-12935,-12936,-12937,-12938,-12939,-12940,-3037,-8523,-3041,-651,-798,-6258,-7259,-7268, --799,-801,-825,-1771,-8065,-1889,-7033,-1940,-1942,-2923,-2127,-4753,-2162,-2387,-2410,-2466,-2469], -[0,-12913,-12941,-5150,-12942,-12943,-12944], -[1,3,8046], -[0,8047,8048,8049,5], -[0,-989], -[0,-426,-3136,-4036,-3037,-1344,-1415,-1534,-1639,-1942,-2127,-2131,-2137,-2141,-2200,-2375,-2388,-2410,-8256], -[0,-2127,-5260], -[1,3,8051], -[0,0,8052,7,5], -[0,-633], -[1,3,8054], -[0,8055,8056,254,10], -[0,-2694,-4007,-649,-658,-1119,-1889,-2234,-2279,-10098,-909,-2193], -[0,-12945,-22,-23,-32,-3194,-26,-35,-6062,-36,-12946,-37,-3368,-3077,-3204,-38,-40,-41,-42,-44,-46,-47,-12947,-12948, --12949,-12950,-3872,-4020,-237,-269,-12951,-12952,-12953,-12954,-12955,-5038,-3983,-367,-5052,-12956,-12957,-12958,-8355, --4776,-12959,-10100,-10101,-3269,-12960,-3732,-12961,-5085,-5033,-7080,-3198,-12962,-12963,-3036,-4035,-3850,-3044, --12964,-5587,-12965, --8523,-12966,-3040,-3052,-6633,-3199,-12967,-6832,-5673,-12968,-12969,-4204,-8559,-5900,-461,-12970,-2624,-502,-507,-512, --12971,-8561,-553,-6386,-635,-640,-651,-12972,-2740,-719,-12973,-724,-6842,-6394,-736,-737,-743,-769,-771,-2745,-7189, --7026,-812,-5034,-6381,-12974,-997,-1047,-1072,-1107,-1273,-1336,-1337,-6388,-1343,-2773,-12975,-1354,-10697,-1401,-1429, --1460,-1465,-8562, --12976,-1582,-1643,-1683,-1699,-12977,-9548,-1734,-1816,-6378,-3447,-1827,-1848,-1851,-1864,-6184,-1903,-7164,-1915, --7165,-2791,-1927,-1929,-1930,-1934,-1958,-1977,-6387,-1999,-2041,-2082,-2163,-2177,-2178,-12978,-8578,-2194,-2231,-2233, --11463,-6390,-6375,-4195,-12979,-6383,-2269,-3921,-2323,-12980,-2334,-2335,-2343,-6391,-6384,-2594,-12981,-2444,-6380, --12982,-10052,-2501,-2531,-2564], -[1,3,8058], -[0,0,8059,8060,9], -[0,-6068,-548,-6070,-6071,-8122,-6072,-6081,-6082,-6083,-550,-558,-8121,-7993,-7938,-628,-629,-8116,-7945,-8119,-8118, --902,-8003,-8004,-12983,-8117,-1654,-1963], -[0,-8123,-5923], -[1,3,8062], -[0,8063,8064,8065,5], -[0,-10415,-1863,-1889,-2271], -[0,-652,-1654,-2250], -[0,-12984,-775,-12985,-2149,-3161,-5553,-10733,-10732,-5845,-6408], -[1,3,8067], -[0,8068,8069,8070,8], -[0,-668,-1022,-1876], -[0,-1168,-1654,-2198], -[0,-7419,-11441,-5562,-1168,-1817], -[1,3,8072], -[0,0,8073,8074,5], -[0,-468,-2322], -[0,-9291,-510,-5924,-5865,-6235,-11727,-5839,-12986], -[1,3,8076], -[0,0,0,8077,4], -[0,-12987,-12988,-12989,-8408,-12990,-12991], -[1,3,8079], -[0,33,8080,8081,9], -[0,-12992,-3,-367,-4007,-3035,-3044,-3621,-3037,-3714,-4372,-3625,-12993,-427,-428,-556,-664,-12994,-712,-714,-767,-796, --7653,-930,-932,-10031,-1069,-1077,-1107,-6783,-1344,-5726,-1534,-1548,-1646,-1654,-1753,-1771,-4099,-6184,-1942,-1961, --2127,-12995,-12996,-2137,-2195,-2200,-2210,-2211,-2234,-2314,-2379,-2388,-2389,-12997,-12998,-12999,-2410,-2449,-13000, --2501], -[0,-12990,-12991,-13001,-13002,-13003,-13004,-6980,-13005,-6948,-6950], -[1,3,8083], -[0,0,31,8084,9], -[0,-640,-13006,-13007,-9594,-2155,-7107,-13008], -[1,3,8086], -[0,8087,8088,8089,4], -[0,-1365,-2177,-2550], -[0,-5834,-515,-516,-887,-932,-13009,-1788,-2322], -[0,-8403,-10483,-1764,-13010,-6818,-9594,-13011], -[1,3,8091], -[0,8092,8093,8094,4], -[0,-13012,-13013,-510,-13014,-668,-719,-13015,-724,-729,-743,-744,-746,-13016,-888,-1004,-1010,-13017,-1107,-13018,-13019, --12902,-13020,-13021,-13022,-13023,-13024,-1646,-13025,-1840,-1851,-1878,-1965,-13026,-13027,-13028,-2177,-2185,-2187, --13029,-13030,-2418,-2453,-13031], -[0,-589,-733,-932,-1003,-1077,-13032,-1654,-1783,-1888,-13033,-13034,-13035,-13036,-13037,-13038,-2198,-2229,-2293,-2359], -[0,-13039,-13040,-1004,-13041,-13042,-3817,-3816,-1818,-2228], -[1,3,8096], -[0,8097,8098,8099,5], -[0,-13043], -[0,-2322,-468,-13044,-633,-725], -[0,-6656,-6557,-13045,-7723,-5874,-5559], -[1,3,8101], -[0,8102,8103,8104,8], -[0,-823,-930,-1333,-1396,-13046,-1889], -[0,-932,-1654,-2210,-13047], -[0,-3264,-3215,-7722,-7723], -[1,3,8106], -[0,8107,0,8108,5], -[0,-679,-1361,-2232], -[0,-5553,-3754,-2162,-3277,-775], -[1,3,8110], -[0,8111,8112,8113,5], -[0,-9548], -[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-621,-767,-774,-778,-824,-825,-909,-932,-940,-6929,-958,-959,-960,-965,-967, --978,-1041,-2629,-1110,-1344,-1415,-1534,-13048,-1623,-1743,-13049,-1771,-1942,-2162,-3572,-2177,-2251,-2275,-2410,-2411, --2501,-2503,-2505], -[0,-2162,-9264,-2501,-5932], -[0,44,15,16,9], -[1,3,8116], -[0,0,8117,7,8], -[0,-1942,-2319], -[1,3,8119], -[0,8120,8121,8122,9], -[0,-13050], -[0,-13051,-652,-13052,-932,-1446], -[0,-4058,-856], -[1,3,8124], -[0,8125,8126,48,4], -[0,-469,-470,-5329,-4049], -[0,-824,-1415,-1344,-932,-825,-1110,-2501,-1942,-21,-190,-533,-2410,-23,-3037,-1534,-1771,-86,-965,-3560,-2251,-40,-959, --960,-958,-6929,-978,-940,-967,-3748,-3307], -[1,3,8128], -[0,8129,8130,8131,5], -[0,-2006,-2019,-2634], -[0,-2410,-3037,-3040,-3052,-518,-1889,-2318,-932,-10813], -[0,-13053,-13054,-1072,-5375,-770,-13055,-5375,-3634,-8576,-13056,-3551,-13057,-13058,-5376,-13059,-11152,-5150], -[1,3,8133], -[0,8134,0,8135,5], -[0,-899,-1723,-6127], -[0,-13060,-13061,-13062,-2171], -[1,3,8137], -[0,0,0,8138,4], -[0,-13063,-6555,-770], -[1,3,8140], -[0,8141,8142,8143,8], -[0,-13064,-1468,-2359,-2531], -[0,-190,-5980,-932,-940,-964,-965,-7353,-967,-1004,-1110,-1281,-1446,-1654,-1656,-1685,-1942,-2186,-2210,-2297], -[0,-4864,-11467,-3634,-11468,-12350], -[1,3,8145], -[0,8146,8147,8148,5], -[0,-7040,-13065,-3472,-7041,-7042,-13066,-755,-812,-13067,-999,-1040,-13068,-1100,-13069,-9464,-1315,-13070,-1549,-1610, --6294,-1639,-13071,-10507,-3609,-2115,-2177,-3642,-2550], -[0,-3037,-3639,-519,-652,-686,-796,-851,-13072,-1077,-1116,-1442,-1547,-8314,-13073,-1722,-1772,-13074,-1942,-2910,-2210, --13075,-2331,-2341], -[0,-13076,-4864,-5887,-3551,-5897,-8403,-9244,-2177,-9318], -[1,3,8150], -[0,8151,8152,7,4], -[0,-44,-13077,-13078,-2997,-13079,-703,-13080,-1548,-1549,-1967,-2029,-2804,-2192], -[0,-13081,-21,-23,-26,-34,-35,-37,-38,-40,-41,-43,-13082,-4227,-13083,-13084,-4773,-3040,-427,-428,-3807,-13085,-528,-534, --13086,-539,-540,-13087,-553,-12468,-13088,-664,-13089,-747,-767,-795,-812,-838,-855,-8245,-915,-932,-933,-940,-3071, --958,-962,-964,-969,-970,-1021,-1103,-1168,-1228,-1266,-1344,-6273,-1471,-1475,-12832,-1476,-1482,-1483,-1492, --1526,-1534,-1654,-1942,-1955,-1978,-2000,-2006,-13090,-13091,-2018,-2019,-2024,-2027,-2043,-2044,-13092,-13093,-13094, --2052,-13095,-2125,-13096,-13097,-7708,-2210,-2211,-2214,-2253,-13098,-2335,-13099,-2347,-2410,-2460,-2501,-2502,-2503, --2504], -[1,3,8154], -[0,8155,8156,8157,4], -[0,-932,-942,-943,-13100,-958,-965,-968,-969,-13101], -[0,-3781,-1631,-1650,-2125,-2151,-2322], -[0,-8180,-13102,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8175,-1445,-1452,-7148,-8184,-8169,-13103,-5493, --2250,-8185,-5553,-8186,-8187,-8174], -[1,3,8159], -[0,0,8160,7,5], -[0,-4298,-4300,-589,-2319], -[1,3,8162], -[0,8163,191,8164,4], -[0,-812,-907,-929,-990,-1072,-1335,-1641,-1681,-1800,-1997,-2255], -[0,-5142,-6656,-3844], -[1,3,8166], -[0,8167,8168,8169,5], -[0,-13104,-3895,-13105,-13106,-13107,-13108,-13109,-13110,-1555,-1572,-1646,-9375,-13111,-13112,-13113,-1983,-13114, --13115,-13116], -[0,-3890,-3893,-13117,-3037,-510,-13118,-756,-13119,-1276,-13120,-8936,-1942,-13121,-13122,-13123,-13124,-13125,-2410], -[0,-11151,-5196,-11148,-13126,-6209,-13127,-11150,-6210,-13128,-3161,-13129,-13130,-13131,-3481,-10809], -[1,3,8171], -[0,0,8172,8173,11], -[0,-13132,-510,-589,-932,-1660,-2319], -[0,-2180,-10432,-13133,-11385], -[1,3,8175], -[0,8176,8177,8178,5], -[0,-13134,-2446,-812,-13135,-1548,-1666,-2177,-2451,-1369,-3198,-13136,-13137,-1667,-6109,-13138,-10416], -[0,-1857,-1788,-664,-461,-826,-2763,-1344,-1654,-1826,-2210,-932,-13139,-1692,-2125,-674,-928,-13140,-13141,-2245,-10417, --10418,-13142,-749,-767,-1026,-13143,-1828,-13144,-12846,-1078,-2211,-2410,-3035,-3037,-1002,-1534,-3621,-4372,-11747, --305,-3044,-13145,-13146,-13147,-86,-665,-13148,-1609,-2174,-7382,-2234,-960,-964,-13149,-428,-13150,-9404,-427,-13151, --13152], -[0,-1691,-13140,-3742,-6321,-10425,-1857,-1682,-13153,-13139,-10424,-10418,-10704,-13154,-1818,-3967,-13155,-7685,-7773], -[1,3,8180], -[0,0,8181,8182,4], -[0,-589], -[0,-6233,-12343,-3214,-3756,-4055], -[1,3,8184], -[0,8185,37,8186,6], -[0,-812,-13156,-13157,-13158,-13159,-13160,-13161,-13162,-13163,-13164,-13165,-13166,-13167,-13168], -[0,-13169,-13170,-13171,-13172,-13173,-11573,-1434,-13174,-13175,-13176,-10225,-13177,-13178,-10227,-2183,-13179,-13180, --5827,-3975,-13181], -[1,3,8188], -[0,8189,8190,8191,4], -[0,-469,-502,-623,-668,-700,-724,-13182,-13183,-5977,-6793,-13184], -[0,-1116,-2392,-2391,-1344,-932,-2469,-1942,-2410,-1534,-50,-3732,-13185,-3664,-13186], -[0,-2455,-2184,-11151,-1339], -[1,3,8193], -[0,8194,8195,8196,6], -[0,-990,-1072,-1681,-1840,-2155], -[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293,-13187], -[0,-1004,-13188,-5401], -[1,3,8198], -[0,8199,8200,7,11], -[0,-459,-7334,-812,-929,-1335,-1641,-1840], -[0,-465,-932,-963,-1654,-1788,-2293], -[1,3,8202], -[0,8203,81,7,5], -[0,-907,-929,-1840,-2178], -[1,3,8205], -[0,8206,8207,8208,4], -[0,-13189,-1640,-1645], -[0,-86,-3307,-13190,-13191,-521,-664,-665,-720,-932,-940,-1077,-1344,-1534,-1573,-5969,-1654,-1729,-1788,-1942,-1972, --13192,-2210,-2211,-2323], -[0,-13192,-13193,-5819,-5817,-13194,-5937,-13195,-5940,-3258,-3100,-13196], -[1,3,8210], -[0,8211,8212,8213,5], -[0,-13197,-13198,-13199,-13200,-3698,-13201,-13202,-13203,-11209,-13204,-5810,-13205,-13206,-13207,-11197,-620,-4735, --13208,-5813,-13209,-1805,-7223,-2531], -[0,-13210,-4171,-13211,-3136,-3037,-3738,-4204,-427,-428,-13206,-5813,-928,-13212,-932,-940,-8246,-948,-958,-967,-1344, --1415,-13213,-13214,-13215,-13216,-1456,-1766,-1942,-5815,-2251,-2375,-2379,-2892,-2410,-2446], -[0,-3112,-5817,-3634,-1415,-13192,-4216,-2469,-5819,-5941,-5943,-5951,-13217], -[1,3,8215], -[0,8216,0,7,4], -[0,-10906,-6130], -[1,3,8218], -[0,0,8219,8220,11], -[0,-528,-558,-566,-664,-932,-1059,-13218,-1344,-1534,-1654,-1942], -[0,-2192,-8495,-6439,-10661,-7378,-13219], -[1,3,8222], -[0,8223,8224,8225,4], -[0,-2177,-13220,-8612], -[0,-8771,-2384,-13221,-2324,-1733,-13222,-1018,-13223,-2581,-1723,-13224,-1448,-13225,-13226,-13227,-13228,-13229], -[0,-9235,-7715,-5315,-5316,-9807,-8642,-3839,-8707,-13230,-6527,-10095,-13231,-7066,-10711,-13232,-13233], -[1,3,8227], -[0,0,8228,8229,5], -[0,-5834,-516,-5835,-932,-993,-1365,-1408,-1777,-1788,-2156,-2322], -[0,-3957,-1838,-13234,-5550], -[1,3,8231], -[0,8232,8233,8234,4], -[0,-999,-1026], -[0,-519,-668,-710,-932,-934,-958,-1442,-1788,-13235,-13236,-2200,-13237], -[0,-2195,-6836,-11642,-5550,-13238,-9218,-1410,-12397], -[1,3,8236], -[0,8237,8238,8239,8], -[0,-1699], -[0,-664,-1127,-1654,-913,-1132,-10682,-2351,-1158,-13239,-9256,-1130,-1156,-1542,-1136,-1144,-1148,-5295], -[0,-13240,-13241,-7231,-2446,-13242,-13243,-3005,-2197,-13244], -[1,3,8241], -[0,8242,8243,8244,4], -[0,-13245,-13246,-13247,-13248,-13249], -[0,-615,-932,-13250,-1654,-1942,-2127,-2137,-2388,-2410], -[0,-4004,-3440,-507,-2198], -[1,3,8246], -[0,75,8247,8248,4], -[0,-1127,-1134,-1136,-1144,-1148,-1150,-1151,-13251,-1152,-1163,-1449,-1542,-1856,-13252,-2177,-13253,-2234], -[0,-1599,-6473], -[1,3,8250], -[0,8251,8252,8253,8], -[0,-1646,-2195], -[0,-526,-558,-566,-932,-934,-8246,-958,-1442,-1654,-1788,-2125,-13235,-13254,-13236,-2198], -[0,-2195,-5550,-11642,-6836,-6837,-8421,-687,-3977], -[1,3,8255], -[0,0,8256,8257,9], -[0,-7080,-3037,-9867,-5866,-652,-1942,-2319,-2379,-2402,-2410], -[0,-5395,-1000], -[1,3,8259], -[0,8260,8261,8262,5], -[0,-474], -[0,-1273,-1948,-2127,-2129,-2416], -[0,-5176,-13255,-10724,-659], -[1,3,8264], -[0,8265,8266,8267,8], -[0,-13256,-13257,-812], -[0,-13258,-13259,-3198,-3136,-3037,-928,-11714,-1415,-2379,-2410], -[0,-5889,-13260,-12263], -[1,3,8269], -[0,0,8270,8271,5], -[0,-2384,-1415,-1344,-1868,-932,-2125,-2127,-1942,-767,-533,-23,-3136,-726,-13261,-1952,-44,-50,-40,-953,-13262,-32,-3326, --2140,-3561,-13263,-350,-351,-8280,-13264,-536,-37], -[0,-5070,-6814,-11889,-9668,-3161,-2006,-475,-2476,-3122,-6209,-3100], -[1,3,8273], -[0,8274,8275,8276,4], -[0,-4884,-357,-13265,-834,-2297], -[0,-23,-4885,-4886,-4887,-4888,-13266,-11471,-13267,-539,-812,-829,-928,-13268,-10877,-1099,-1534,-1654,-1788,-1942,-1978, --2125,-2177,-2195], -[0,-2210,-4004,-3634,-5119,-8611,-4216,-8959,-4123,-13269,-4215,-2533,-507], -[1,3,8278], -[0,0,8279,8280,9], -[0,-190,-652,-664,-932,-1654,-1942,-2210], -[0,-664,-6537,-4865,-13270,-13271,-2210,-3634,-7244,-7245,-7243], -[1,3,8282], -[0,8283,8284,8285,5], -[0,-4166,-3544,-510,-648,-13272,-13273,-1650,-2177,-6920,-1004,-1442,-2105,-927,-719,-1645,-1464,-1276,-617,-724,-1335, --1304,-13274,-13275,-2062,-13276], -[0,-1654,-615,-633,-13277], -[0,-6011,-5897,-7737,-11722,-3209,-1971,-3844], -[1,3,8287], -[0,8288,0,7,6], -[0,-13278,-5036,-13279], -[1,3,8290], -[0,8291,0,8292,11], -[0,-13280,-1532,-13281,-1863,-2654], -[0,-2214,-687,-985,-6187,-13282,-13283], -[1,3,8294], -[0,89,56,8295,5], -[0,-13284,-13285,-13286,-3445,-3100,-7566], -[1,3,8297], -[0,8298,8299,8300,10], -[0,-13287,-13288], -[0,-2501,-2376,-2410,-2503,-13289,-2502], -[0,-3445,-13290,-3690,-13192,-7685], -[1,3,8302], -[0,0,14,8303,5], -[0,-1847,-13291,-2218,-11635,-7084,-5845], -[1,3,8305], -[0,8306,8307,8308,4], -[0,-482,-13292], -[0,-519,-668,-13293,-2269,-2541], -[0,-4783,-2265,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958, --5554], -[1,3,8310], -[0,8311,86,8312,4], -[0,-9371,-677,-5500,-13294,-13295,-10347,-13296,-1705,-1856,-13297,-1951,-1959,-13298,-2330,-2550], -[0,-13299,-3015,-9460,-1764,-1380], -[1,3,8314], -[0,0,8315,8316,5], -[0,-11254,-3470,-3471,-3311,-652,-1654,-2174,-2250], -[0,-2223,-2222,-2265,-2443,-9312,-4112,-2435], -[1,3,8318], -[0,0,8319,8320,4], -[0,-756,-13300,-1654,-1788], -[0,-2223,-2222,-2435,-13301], -[0,44,15,16,11], -[1,3,8323], -[0,8324,0,8325,4], -[0,-668,-1370,-1646,-2062,-13302,-2269,-2343], -[0,-3240,-13303,-13304,-2250,-13305,-10317,-13306,-13307,-13308,-13309], -[1,3,8327], -[0,8328,8329,8330,5], -[0,-523,-13310,-812,-1063,-1070,-1100,-1548,-2165,-2270,-6587,-13311], -[0,-190,-3198,-3734,-3044,-3037,-13312,-6594,-617,-714,-834,-855,-883,-932,-1004,-1045,-1107,-1654,-1788,-1942,-2062, --2177,-2187,-2198,-2210,-2234,-10402,-2402,-2410,-2411], -[0,-2227], -[1,3,8332], -[0,8333,0,8334,4], -[0,-459,-13313,-754,-812,-5454,-13314,-4208], -[0,-8841,-3161,-2512,-9043,-997,-9005,-13315], -[1,3,8336], -[0,8337,0,8338,4], -[0,-13316,-812,-5455,-4208], -[0,-8841,-3161,-2512,-9043,-997,-3323], -[1,3,8340], -[0,8341,8342,8343,4], -[0,-812,-13317,-10622,-1370,-2438], -[0,-633,-913,-932,-1003,-1168,-1208,-1243,-1244,-1252,-1262,-1471,-1472,-1473,-1475,-1482,-1654,-1972,-1976,-2187,-13318, --2461,-2463], -[0,-6224,-2512], -[1,3,8345], -[0,0,8346,7,8], -[0,-652,-855,-932,-1942,-940], -[1,3,8348], -[0,0,8349,7,6], -[0,-13239,-855,-2501], -[1,3,8351], -[0,8352,8353,48,6], -[0,-1351,-2232], -[0,-21,-23,-40,-86,-3307,-7166,-533,-767,-774,-824,-825,-932,-940,-958,-1344,-1415,-1534,-1623,-1771,-1942,-2251,-2501], -[1,3,8355], -[0,8356,8357,7,4], -[0,-6829,-2231], -[0,-633,-711,-1339,-1654,-2501], -[1,3,8359], -[0,0,92,8360,5], -[0,-5092,-3264,-7451,-13319,-7205,-1838,-6231], -[1,3,8362], -[0,8363,8364,8365,8], -[0,-13320,-13321,-13322,-9193,-13323,-674,-711,-719,-1026,-1119,-1122,-13324,-1127,-1134,-1136,-1137,-1138,-1140,-1148, --1149,-1160,-1276,-1304,-1333,-1440,-1442,-13325,-1460,-1548,-1610,-13326,-1889,-2162,-2312,-2359], -[0,-21,-23,-40,-43,-4710,-13327,-664,-665,-3629,-932,-964,-966,-974,-1654,-1753,-1942,-2123,-2125,-2210,-2211], -[0,-1122,-3671,-856,-13328,-13329,-3690,-4258,-3262], -[1,3,8367], -[0,8368,8369,7,8], -[0,-2346], -[0,-994,-8392,-8393,-8394,-13330], -[1,3,8371], -[0,0,8372,7,5], -[0,-13331,-13332,-11961,-1788,-1939,-2250,-2322], -[0,0,83,7,5], -[1,3,8375], -[0,0,8376,7,4], -[0,-1168,-1654,-932,-589,-1231,-1197,-1208,-1243,-1262,-13333,-1252], -[1,3,8378], -[0,8379,8380,8381,5], -[0,-615,-712,-714,-783,-1077,-1276,-13334,-3999,-1548,-1757,-7667,-13335,-9395,-2347,-2460,-2462,-13336,-13337], -[0,-664,-756,-1405,-1654,-1657,-13338,-13339], -[0,-13340,-9278,-13341,-775,-3754,-1521,-2162,-2244,-13342,-7419], -[1,3,8383], -[0,8384,8385,8386,4], -[0,-596,-1723,-6521,-2323], -[0,-932,-1654,-12894], -[0,-10424,-3742,-2245,-7685], -[1,3,8388], -[0,8389,8390,8391,5], -[0,-13343,-13344], -[0,-932,-6461], -[0,-8905,-2246,-9456,-7721,-5550,-8421,-8908,-3323], -[1,3,8393], -[0,8394,8395,8396,10], -[0,-9084], -[0,-4298,-4300,-589], -[0,-5387,-3578,-7107,-13345,-10908,-10930,-13346,-13347,-13348,-13349,-13350,-3264], -[1,3,8398], -[0,8399,91,8400,9], -[0,-2548], -[0,-2248,-4055,-2548,-9886,-10410,-7773,-6129,-13351,-13352,-3689,-7685,-856,-3445,-6857,-1671,-1050,-1691,-2245,-6597, --13353,-10425,-4055,-6917,-13354], -[1,3,8402], -[0,0,8403,7,11], -[0,-40,-533,-1415,-13355], -[1,3,8405], -[0,8406,8407,8408,6], -[0,-932,-943,-13100,-958,-965,-968,-969,-13101,-13356], -[0,-769,-1274,-1646,-13357,-2151,-5470,-2322], -[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2250,-8185,-5553, --8186,-8187,-8174], -[1,3,8410], -[0,8411,8412,8413,5], -[0,-668,-739,-13358,-741,-10524,-831,-8888,-13359,-1040,-1047,-12340,-2177,-13360,-2550], -[0,-664,-932,-943,-958,-966,-968,-1654,-1658,-1663,-1788,-2195,-13361], -[0,-739,-13362,-5887,-5886,-5962,-9318,-475,-2250], -[1,3,8415], -[0,8416,8417,8418,4], -[0,-502,-615,-13363,-812,-999,-13364,-4703,-2648], -[0,-3037,-13365,-664,-767,-829,-13366,-13367,-13368,-1116,-1457,-3809,-1646,-1654,-13369,-10652,-2174,-13370,-2210,-2211, --8527,-2250], -[0,-6657,-5921,-3844,-11818,-4004,-3590,-4116], -[1,3,8420], -[0,8421,8422,8423,5], -[0,-13371,-10926,-1093,-13372], -[0,-2330,-1754,-2424], -[0,-2254,-13373,-13374,-13375,-8841], -[1,3,8425], -[0,0,8426,8427,5], -[0,-790,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-1999,-9374], -[0,-1334,-9745,-707], -[1,3,8429], -[0,8430,8431,8432,4], -[0,-2531,-1805,-2066,-2177,-928,-6488,-13376,-4890,-13377,-12518,-407,-410], -[0,-888,-2564,-664,-834,-1107,-1431,-2213,-999,-1526,-1623,-3548,-2006,-2218,-8609,-1111,-1699,-1778,-13378,-928,-13379, --1085,-1442,-3447,-2114,-2358,-13380,-1885,-1942,-4893,-4204,-656,-719,-2578,-1864,-13381,-2019,-3654,-2400,-12982,-2528, --4370,-3517,-13382,-1863,-2231,-2269,-2410,-23,-9939,-3037,-769,-832,-13383,-47,-6192,-4894,-4918,-25,-13384,-3199, --13385,-831,-13386, --6467,-13387,-6447,-3772,-3778,-3660,-3735,-13388,-6744,-13389,-3896,-13390,-12695,-2383,-46,-163,-6630,-13391,-13392, --13393,-11751,-3194,-13394,-8523,-13395,-2044,-13396,-747,-13397,-7080,-13398,-4239,-13399,-13400,-13401,-13402,-13403, --13404,-5474,-2271,-13405,-13406,-13407,-13408,-406,-13409,-13410,-5322,-13411,-3776,-409,-13412,-13413,-4008,-8273, --2641,-13414,-3459,-13415,-13416,-13417,-5296,-13418,-13419, --13420], -[0,-2257,-3095,-3098,-13421,-13422,-2006,-2634,-9736,-2034,-3138,-2476,-475,-2299,-3176,-4902], -[1,3,8434], -[0,8435,8436,8437,8], -[0,-1338], -[0,-13423,-4762,-4763,-4754,-13424,-13425,-13426,-13427,-4749,-4758,-13428,-407,-409,-3136,-4961,-3040,-932,-13429,-1415, --4980,-1419,-1942,-1967,-1978,-2006,-2019,-2162,-2163,-2257,-2375,-2410,-2516,-2548], -[0,-4900,-2257,-13430,-3098,-856,-3100,-13431,-13432,-13433,-13434,-13435,-1783], -[1,3,8439], -[0,8440,0,147,5], -[0,-3,-23,-40,-3538,-3539,-668,-674,-679,-714,-719,-755,-3542,-1022,-13436,-1077,-1107,-1276,-1320,-1349,-13437,-1460, --1548,-1577,-3543,-3544,-1610,-1646,-3546,-3547,-11926,-9151,-2177,-2368,-2378,-2446], -[1,3,8442], -[0,68,15,16,11], -[1,3,8444], -[0,212,8445,8446,5], -[0,-13438,-13439,-1654,-2198], -[0,-13440,-5827], -[1,3,8448], -[0,0,8449,8450,4], -[0,-351,-3621,-3037,-789,-885,-1654,-7210,-1942,-2127,-2135,-2136,-2198,-2379,-2392,-2410], -[0,-5827,-6408,-788,-7208,-3445,-3100], -[1,3,8452], -[0,8453,56,8454,5], -[0,-7590,-305,-7565,-1061,-1406,-13441,-5721], -[0,-13442,-13443,-3445], -[1,3,8456], -[0,0,0,8457,9], -[0,-2264,-3276,-2265,-4123,-4121], -[1,3,8459], -[0,0,8460,8461,4], -[0,-1168,-1177,-1231,-1243,-13444,-1262,-11473,-2416], -[0,-2265,-6816,-13445,-13446,-13447,-13448,-788,-3264,-3223,-1838,-3264,-9702,-6817,-11647,-6422,-6420,-5559,-9692], -[1,3,8463], -[0,8464,8465,8466,4], -[0,-3164,-13449,-1320,-1549,-13450,-13451,-13452], -[0,-13453,-13454,-12508], -[0,-707,-7347,-8388,-3264,-13455,-13456,-6694,-9357,-13457,-2265,-6817,-9702,-7651,-5554,-13458], -[1,3,8468], -[0,8469,14,8470,4], -[0,-13459,-2269], -[0,-2265,-7472,-4112,-6730,-13460,-6787,-13461,-13462,-13463,-6786,-13464,-13465,-5514,-5559,-5563,-687,-3958,-3974,-4000, --13466,-13467,-13468,-13469,-13470,-13471], -[1,3,8472], -[0,8473,8474,8475,5], -[0,-2737,-2738], -[0,-3037,-652,-2736,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-6231,-6422,-5559,-3264,-7472,-4846,-8034,-3223], -[1,3,8477], -[0,8478,238,8479,4], -[0,-481], -[0,-6817,-11647,-6694,-5514,-3770,-712,-5535,-714,-3974,-4000,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545, --3958,-5554], -[1,3,8481], -[0,0,14,8482,4], -[0,-6817,-9310,-6472,-7154,-9311,-4112,-2443,-9312,-6694,-6693,-11647,-5554,-2265], -[1,3,8484], -[0,0,8485,8486,4], -[0,-519,-1612,-2384,-2541], -[0,-4055,-6817,-3485,-6694,-6693,-11647,-6810,-1838,-727,-3870,-6849,-2444,-6845,-5558,-8292], -[1,3,8488], -[0,0,8489,8490,4], -[0,-1788,-664,-1722,-1654,-932,-2379,-1942,-1729,-2410,-3035,-3037,-3621,-13472,-665,-958,-1656,-940,-967,-4269,-428, --4628,-427], -[0,-2272,-13473,-13474,-3690], -[1,3,8492], -[0,8493,8494,8495,5], -[0,-510,-812,-13475,-13476,-1735,-13477,-1758,-1813,-2059,-13478,-13479,-13480,-13481,-13482,-12003,-13483,-13484,-13485, --2518,-1464,-642,-13486,-797,-1298,-1370,-1521,-1548,-1579,-10695,-11015,-13372,-1666,-2062,-9798,-2245,-13487,-10690, --13488,-13489,-13490,-11800,-2531], -[0,-932,-1445,-2319], -[0,-4344,-13491,-11755,-13492,-10705,-13493,-5804,-9733,-5805,-7641,-4161,-9844,-727,-3015,-8901,-8904,-13494,-1066,-5889, --11021,-13495,-5545,-10706,-9800,-13496,-10412,-13497,-11230,-13498,-1764,-13499,-13500,-13501,-6187,-13502,-1958,-6479, --11429,-11722,-13503,-4043,-5196,-13504,-13505,-8027,-13478,-13506,-13507,-12003,-13485,-2273,-13508,-2295,-7307,-4123, --13509], -[1,3,8497], -[0,8498,8499,8500,4], -[0,-13510,-13511,-13512,-13513,-668,-671,-5971,-719,-1395,-1460,-13514,-1942,-2355], -[0,-6327,-2843,-50,-86,-3307,-13515,-13516,-3989,-13517,-3035,-3037,-5011,-3738,-428,-3311,-13518,-3312,-461,-2834,-664, --932,-964,-969,-989,-1077,-13519,-1344,-13520,-1448,-13521,-1521,-1534,-5273,-10918,-5670,-1654,-9002,-1771,-4916,-2162, --2177,-2193,-13522,-2286,-2410,-2429,-2446,-2548], -[0,-13523,-5553,-13524,-775,-3099,-7205,-2162,-3754,-5739,-13525,-2006,-3163,-4901], -[1,3,8502], -[0,0,8503,48,4], -[0,-1415,-2162,-1344,-1449,-1623,-774,-932,-2177,-825,-2501,-920,-1942,-767,-21,-533,-778,-23,-1041,-1534,-1771,-2163, --2503,-86,-2251,-40,-2505,-958,-940,-1419,-3307,-7166], -[1,3,8505], -[0,8506,8507,8508,5], -[0,-2277], -[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3136,-427,-428,-932,-967,-4814,-1110,-1344,-1415,-1534,-1942,-2127,-2375, --2379,-2410], -[0,-2276,-775,-5553,-3214,-7208,-9680], -[1,3,8510], -[0,8511,8512,8513,6], -[0,-1374], -[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3267,-3136,-3037,-427,-428,-932,-967,-4814,-1110,-1344,-1415,-1534,-1771, --1942,-2910,-2127,-2375,-2379,-2387,-2410], -[0,-2277,-9339,-5553,-3215,-775,-7208,-9680], -[1,3,8515], -[0,8516,8517,8518,11], -[0,-3776,-5577,-13526,-13527,-786,-1889,-2192,-3768,-2387], -[0,-23,-3341,-3840,-26,-36,-3203,-40,-41,-42,-3267,-406,-407,-409,-410,-3043,-3136,-13528,-3037,-3040,-3052,-13529,-3141, --3081,-13530,-533,-535,-8560,-6046,-3563,-1415,-1419,-3667,-1428,-1440,-1942,-1967,-2006,-2019,-13531,-2034,-2052,-2127, --2131,-2133,-2137,-2138,-2139,-2140,-13532,-13533,-2410], -[0,-2006,-775,-3771,-2278,-4134], -[1,3,8520], -[0,8521,8522,8523,11], -[0,-2740], -[0,-21,-23,-36,-3077,-3373,-3204,-38,-40,-41,-43,-44,-47,-3040,-519,-3766,-9723,-742,-932,-940,-1344,-1543,-1942,-1952, --2006,-2019,-2174,-2231,-12979,-3768,-13534,-2410], -[0,-3766,-2455,-13535,-3771,-775], -[1,3,8525], -[0,8526,22,8527,10], -[0,-635,-1931], -[0,-6413,-775,-13536,-13537,-7192,-1889,-3583,-2280], -[1,3,8529], -[0,8530,8531,8532,6], -[0,-93,-7195,-94,-95,-12147,-98,-9352,-2840,-755,-777,-781,-812,-1026,-11676,-8142,-6197,-1111,-13538,-1327,-1353,-3190, --8143,-1396,-1499,-13539,-1630,-1639,-1759,-1863,-1889,-1929,-1931,-1934,-2267,-2591,-13540,-4002,-2530], -[0,-50,-13541,-5121,-13542,-13543,-13544,-5685,-3198,-13545,-13546,-13547,-13548,-4036,-6928,-13549,-8335,-13550,-9284, --589,-722,-823,-932,-13551,-958,-959,-1344,-1415,-13552,-1428,-1534,-4984,-1771,-4916,-1904,-1906,-12130,-13553,-1930, --1942,-2094,-2289,-2410], -[0,-3771,-775,-1521,-7148,-8170,-1599,-2162,-3754,-2281,-2289], -[1,3,8534], -[0,8535,8536,8537,9], -[0,-3085], -[0,-13542,-13543,-932,-13551,-1344,-1534,-1771,-1942,-2094,-2281], -[0,-2281,-13554,-2250], -[1,3,8539], -[0,0,8540,8541,5], -[0,-1788,-1415,-1344,-1868,-855,-932,-708,-2402,-1942,-13555,-767,-2281,-21,-533,-13556,-5128,-2410,-23,-5870,-1534,-1637, --43,-86,-2174,-40,-13557,-959,-977,-958,-3471,-13552,-3842,-940,-967,-2405,-42,-428,-3470,-3307,-935,-427,-3363,-5585, --26,-36], -[0,-13558,-2281,-775,-3754,-1521,-7148,-13559,-3833,-5924,-13560,-712,-13561], -[1,3,8543], -[0,8544,8545,8546,4], -[0,-1889,-13562], -[0,-932,-13563,-940,-1110,-1344,-1415,-12241,-13552,-1428,-1534,-1904,-12130,-13564,-1942,-13565,-2281], -[0,-13558,-2281,-775,-7148,-7154], -[1,3,8548], -[0,8549,8550,8551,4], -[0,-781,-1396,-1499,-1620,-13566,-13567,-1931,-1934], -[0,-722,-767,-932,-13568,-1344,-1415,-13552,-1534,-1763,-1889,-12130,-1930,-1942,-2281], -[0,-775,-9231,-7148,-8170,-3754,-2281,-13558], -[1,3,8553], -[0,8554,128,8555,6], -[0,-28,-812,-1107,-2165,-2231], -[0,-775,-3215,-5553,-9406,-1409,-6784], -[1,3,8557], -[0,8558,8559,8560,6], -[0,-1026,-1759], -[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-589,-13569,-767,-774,-778,-824,-825,-932,-940,-6929,-958,-959,-960,-965,-967, --978,-1110,-1344,-1415,-1534,-1623,-1717,-1771,-1942,-2000,-2251,-2275,-2286,-2411,-2501], -[0,-2501,-5932,-2286], -[1,3,8562], -[0,0,0,8563,11], -[0,-775,-1889,-12209,-4132,-6806,-3215], -[1,3,8565], -[0,8566,8567,8568,5], -[0,-723,-13570,-812,-13106,-1069,-1070,-1636,-1640,-1983], -[0,-21,-23,-38,-40,-44,-86,-3307,-571,-7124,-11178,-617,-633,-744,-767,-932,-946,-952,-966,-1004,-1010,-1053,-1098,-1344, --1534,-1610,-1654,-1685,-1788,-2094,-2099,-2125,-2198,-13571,-13572,-2541,-2568], -[0,-9733,-5998,-5998,-3690,-510,-5867,-523,-5391,-3323,-13573,-1116,-1334,-1334,-1342,-9128,-1961,-1961,-5923,-2105,-2105, --9176,-13503,-3691,-2122,-13574,-2291,-7430,-6408,-2533,-2540], -[1,3,8570], -[0,8571,8572,7,6], -[0,-10528], -[0,-3198,-11232,-3037,-589,-10300,-1671,-8973,-2410,-2469], -[1,3,8574], -[0,8575,8576,8577,5], -[0,-1636,-2291,-746], -[0,-1788,-1722,-1654,-2210,-932,-2198,-1004,-1972,-617,-744,-86,-958,-934,-3307], -[0,-3440,-1334,-2105,-2291,-4873,-4004,-3634], -[1,3,8579], -[0,8580,8581,8582,4], -[0,-615,-1636], -[0,-664,-665,-2123,-2517,-617,-744,-1004,-1654,-2198], -[0,-2293,-2291,-2105,-4873,-3440,-1334,-4004,-3634,-1961,-13575], -[1,3,8584], -[0,0,8585,8586,5], -[0,-2541,-519,-2384,-3037], -[0,-712,-5535,-714,-3974,-4000,-687,-5514,-3770,-3975,-5549,-5513,-5550,-2547,-3958,-6520,-13576,-13577,-6659,-13578, --13579], -[1,3,8588], -[0,8589,8590,8591,6], -[0,-3195,-3115,-5032,-426,-461,-5113,-8294,-703,-5034,-5035,-13580,-4788,-4789,-1588,-13581], -[0,-3180,-3983,-350,-351,-3266,-3989,-5114,-3037,-5040,-928,-2127,-2231,-2654,-2410,-2469], -[0,-2299,-11193,-3161,-3261,-7651], -[1,3,8593], -[0,8594,8595,8596,4], -[0,-3180,-679,-4787,-1863,-5037], -[0,-350,-4062,-351,-3561,-3267,-13582,-644,-2127,-2130,-4063,-2299,-2410,-13583,-13584,-11164,-11165,-13585,-13586], -[0,-2299,-687], -[1,3,8598], -[0,0,8599,8600,4], -[0,-23,-40,-86,-3307,-13587,-13588,-4776,-3037,-13589,-8336,-518,-5859,-711,-740,-932,-1521,-1889,-13590,-1907,-1942, --1974,-2162,-2286,-2289,-2299,-2410,-2469], -[0,-2299,-9263,-2410,-1521,-2286,-2162,-3754,-1974,-711], -[1,3,8602], -[0,8603,8604,8605,4], -[0,-2746,-1107,-2303,-510,-10310,-2460,-2542,-2550,-1442,-2520,-1689,-13591,-1566,-8054,-4733,-13592,-5981], -[0,-2541,-1415,-1521,-2162,-1880,-2286,-1870,-959,-960,-13593,-13594], -[0,-3167,-3843,-3839,-7715,-9278,-9279,-9471,-3262,-775,-2162,-1521,-2286,-3271,-9339,-3264,-9472,-9473,-9474,-1689,-7419], -[1,3,8607], -[0,8608,8609,8610,4], -[0,-719,-780,-781,-2888,-2746,-1863,-2165], -[0,-190,-5121,-350,-351,-3266,-5685,-7169,-3136,-3037,-13312,-3715,-767,-932,-1110,-1415,-1870,-1874,-1880,-1942,-2125, --2127,-2325,-2384,-2410], -[0,-2303,-3839,-7175,-1644], -[1,3,8612], -[0,8613,8614,8615,4], -[0,-824,-1570,-13595,-2415], -[0,-519,-526,-528,-556,-11733,-562,-566,-615,-932,-13596,-1626,-1650,-2210,-2501], -[0,-2501,-3862,-13597,-13595,-5196,-8615], -[1,3,8617], -[0,8618,8619,8620,8], -[0,-461,-823,-1107,-1460], -[0,-932,-1942,-2322,-13598], -[0,-4847,-13599,-3696,-8442,-856,-2305,-5885,-5886,-3262,-3960,-8443,-8444,-8445,-3438], -[1,3,8622], -[0,8623,8624,8625,4], -[0,-1111,-1442,-719,-13600,-13601], -[0,-932,-2469,-1942,-3664,-13602], -[0,-4847,-3671,-13603,-856,-3690,-9339,-3485], -[1,3,8627], -[0,0,131,8628,4], -[0,-3812,-4847,-3160,-2308,-1004,-856,-3671,-13604,-5406,-2307,-4101,-13605,-13606], -[1,3,8630], -[0,8631,8632,8633,4], -[0,-3434], -[0,-927,-1004,-13607,-1654,-1788,-1978], -[0,-4847,-1004,-3160,-4055,-856], -[1,3,8635], -[0,8636,8637,8638,6], -[0,-2416,-1813], -[0,-1548,-1004,-13608,-1654,-1003,-13609,-1521,-13610,-600,-13611,-1859,-633,-6656,-1446], -[0,-3110,-7651,-3264,-13432,-13612,-6876,-1004,-6301], -[1,3,8640], -[0,0,0,8641,9], -[0,-2311,-13613,-12449,-2363,-5270,-3162,-752,-1861,-3994,-3161,-13614,-12613,-13615,-3862,-2006,-2476,-13616], -[1,3,8643], -[0,8644,8645,8646,4], -[0,-13617,-13618,-13619], -[0,-617,-767,-1004,-13620,-1415,-1676,-2125,-2410], -[0,-2105,-1334,-1342,-3324,-633,-12397,-6367], -[1,3,8648], -[0,0,0,8649,9], -[0,-13621,-13622,-1673,-11230,-1819,-9261,-12578,-7084,-13623,-13624,-13625,-13626,-13627,-13628,-13629,-12218,-13630, --3708,-13631,-10412,-8801,-13632,-13633,-13634,-13635,-5150,-13636,-13637,-13638,-13639,-13640,-13641,-13642,-13643, --13644,-7606,-13645,-13646,-6524,-13647,-13648,-13649,-6712,-13650,-13651,-10245,-13652,-13653,-13654,-13655,-13656, --13657,-13658,-3445,-13173,-13659,-13660], -[1,3,8651], -[0,0,8652,7,4], -[0,-1805,-1496,-1654,-1650,-2125,-2127,-2334,-615,-1729,-13661,-8559,-2516,-2234,-4062,-2140,-3561,-13662,-351,-13663], -[1,3,8654], -[0,8655,8656,8657,4], -[0,-2531,-469,-754,-13664,-13665,-13666,-13667,-1548,-1676,-13668,-13669,-13670,-13671,-1004,-13672,-13673,-13674,-13675, --13676,-512,-617,-724,-737,-13677,-496,-44,-13678], -[0,-1708,-473,-13679,-13680,-2195,-13681,-722,-13682], -[0,-13683,-13684], -[1,3,8659], -[0,0,8660,8661,9], -[0,-5369,-2387,-932,-1111,-2127,-2469,-1942,-2410,-23,-3037,-40,-2132,-2411,-3664,-3326,-958,-5122,-6593,-13685,-3267, --351,-10022,-3344], -[0,-2318,-2316,-775,-3205,-13686,-13687,-1631,-9342,-13688], -[1,3,8663], -[0,0,8664,7,4], -[0,-815,-3037,-3751,-1588,-2232,-13689,-3195], -[1,3,8666], -[0,8667,0,8668,10], -[0,-13690,-13691,-13692,-13693,-13694,-13695,-13696,-13697,-13698,-13699,-13700,-13701,-13702,-13703,-13704,-13705,-13706, --13707,-13708,-13709], -[0,-507,-2319,-4004,-3634,-3161,-687,-13710,-13711], -[1,3,8670], -[0,8671,8672,8673,9], -[0,-668,-883,-1040,-1548,-1951,-10854,-13712,-2347], -[0,-13713], -[0,-2322,-2319,-1654,-4679,-6863], -[1,3,8675], -[0,0,8676,7,6], -[0,-1415,-932,-1110,-1942,-190,-533,-23,-965,-3560,-40,-959,-958,-6929,-978,-940,-967,-3748], -[1,3,8678], -[0,8679,8680,8681,9], -[0,-13714,-13715,-13716,-655,-821,-6369,-13717,-1065,-1097,-1107,-13718,-1285,-1370,-7394,-1646,-1659,-1794,-5849,-1795, --1797,-2114,-8057], -[0,-5834,-505,-516,-725,-767,-887,-13719,-5835,-921,-932,-6282,-1408,-1442,-13720,-1777,-1788,-2156,-2177,-2319,-8573], -[0,-2319,-4004,-13721,-507,-4865], -[1,3,8683], -[0,8684,8685,7,5], -[0,-13722,-13723,-9084,-11721,-13724], -[0,-2319,-1722,-2386,-13725,-2125,-2402,-1942,-11719,-3037,-908,-13726], -[1,3,8687], -[0,8688,8689,8690,5], -[0,-1976,-2325], -[0,-2125,-13727,-2250], -[0,-2323,-1076,-6656,-7738,-7421,-5827], -[1,3,8692], -[0,8693,8694,7,6], -[0,-13728,-13729,-13730], -[0,-13727,-2250,-725], -[1,3,8696], -[0,33,8697,8698,6], -[0,-6486,-6627,-3136,-3037,-427,-428,-756,-928,-932,-943,-958,-966,-968,-1415,-1942,-2375,-2410], -[0,-13731,-3555,-13732,-13733,-3100,-13734,-3445,-13735,-11074,-6235], -[1,3,8700], -[0,0,8701,8702,4], -[0,-6486,-13736,-13737,-3617,-6627,-3136,-3037,-4203,-427,-428,-617,-720,-796,-13738,-932,-943,-958,-966,-968,-1344,-1415, --1534,-1753,-7760,-1942,-2293,-2375,-2410], -[0,-13731,-3555,-13732,-13733,-3445,-13735,-6367,-1004], -[1,3,8704], -[0,8705,0,8706,8], -[0,-812,-1723,-6127], -[0,-13739,-13740,-13741,-13742,-13743,-596,-13744,-3445], -[1,3,8708], -[0,8709,8710,8711,8], -[0,-812,-1723], -[0,-190,-3561,-3198,-3037,-8612,-865,-932,-940,-972,-978,-1733,-1942,-2402,-2405,-2410,-2411,-2466,-6859,-2469], -[0,-13739,-13742,-2328,-3966,-3445], -[1,3,8713], -[0,8714,27,258,5], -[0,-2125,-1650], -[1,3,8716], -[0,8717,8718,8719,4], -[0,-1399,-5917,-2400,-13387], -[0,-3037,-519,-1849,-2363,-2384,-2541], -[0,-2330,-9214,-1847,-6656,-7421,-7420,-6909,-13745,-11846,-13746,-6555,-13747], -[1,3,8721], -[0,8722,0,8723,9], -[0,-10893,-13748,-13749,-13750,-13751,-13752,-13753,-13754], -[0,-3974,-4000,-5514,-687,-2547,-712,-13755,-13756,-5553,-3962,-13757,-12898,-13758,-5564,-3824,-6716,-6765,-13759,-13760, --13761,-12704,-6527,-7715,-9235,-8642], -[1,3,8725], -[0,8726,0,8727,11], -[0,-13762,-6372,-1370,-13763,-2347,-13764], -[0,-3824,-3974,-5514,-13765,-13766], -[1,3,8729], -[0,8730,8731,8732,6], -[0,-13767,-461,-719,-2234], -[0,-13768,-13769,-932,-8150,-985,-1654,-1939,-2127,-2177,-2231], -[0,-9216,-2334,-2415,-2416,-1644,-6684,-3214,-3217,-8108,-3184,-6052,-13770,-4795,-8165,-6434,-510,-5867], -[1,3,8734], -[0,8735,8736,8737,5], -[0,-2334,-1429,-2168,-2182,-3180], -[0,-824,-1415,-1344,-1623,-774,-932,-825,-928,-2501,-1942,-367,-767,-2416,-21,-190,-2410,-23,-3037,-1041,-1534,-1771, --2503,-11510,-86,-965,-3560,-13771,-2251,-40,-2411,-959,-748,-960,-958,-6929,-978,-940,-967,-3748,-6930,-3307], -[0,-9216,-2416,-2415,-2334,-2501,-7172,-6059,-6454,-9696,-9234,-6059,-6684,-1644,-7175,-7176], -[1,3,8739], -[0,8740,8741,8742,4], -[0,-13772,-13773,-13774,-13775,-13776,-717,-718,-10293,-1026,-10745,-7576], -[0,-1448,-1729], -[0,-2337,-4004,-4043,-687,-5119,-3634,-3673,-2322,-2319,-519,-1654], -[1,3,8744], -[0,8745,8746,8747,11], -[0,-615,-668,-1107,-1548,-1610,-1650,-13777,-13778], -[0,-3244,-190,-5294,-5767,-3036,-3044,-3037,-4372,-427,-428,-3664,-827,-932,-6611,-13779,-2210,-13780,-13781,-2391,-2392, --2410,-13782,-2469], -[0,-1599,-4004,-5119,-13783,-856,-3671], -[1,3,8749], -[0,8750,8751,8752,4], -[0,-23,-33,-37,-10983,-3395,-3383,-3376,-3384,-3393,-3350,-3385,-3374,-38,-40,-6056,-41,-44,-13784,-13785,-3037,-6558, --3442,-541,-6067,-13786,-7435,-664,-668,-13787,-711,-719,-812,-815,-824,-13788,-11460,-834,-13789,-11328,-5910,-3606, --999,-13790,-1111,-1119,-12933,-1341,-5458,-13791,-1366,-1392,-10697,-1393,-13792,-1399,-1460,-1548,-13793,-1591,-11015, --1666,-13794,-1689, --1699,-13795,-1839,-1866,-13796,-1880,-6467,-13797,-1966,-1982,-13798,-13799,-5915,-2115,-2160,-2177,-3169,-2234,-2270, --13800,-13801,-13802,-13803,-13804,-13805,-13806,-13807,-13808,-13809,-2359,-2369,-2410,-13810,-13811], -[0,-13812,-7590,-13813,-4066,-350,-6572,-351,-13814,-13815,-3035,-3198,-13816,-9939,-9283,-11011,-3622,-3735,-3199,-3172, --9660,-13817,-427,-428,-535,-579,-617,-13818,-13819,-665,-9077,-3050,-729,-754,-767,-13820,-930,-932,-13821,-7353,-1004, --13822,-1168,-1174,-13823,-1196,-1197,-1226,-13824,-13825,-8498,-1243,-13826,-1262,-3809,-1608,-1632,-1646,-13827,-1685, --13828,-1972,-2006,-13829, --2127,-2142,-2187,-2210,-7220,-2269,-13830,-2387,-2416], -[0,-13831,-5112,-4865,-6413,-3258,-3995,-3634,-4864,-4004,-4043,-4873,-507,-5855,-13832,-6948,-6950,-510,-5867], -[1,3,8754], -[0,8755,8756,8757,6], -[0,-7602,-13833,-501,-8864,-8898,-812,-13834,-851,-1098,-7772,-13835,-13836,-2324,-2359,-2426], -[0,-11344,-13837,-11339,-3198,-11347,-13838,-13839,-3628], -[0,-2340,-7606,-3634], -[1,3,8759], -[0,8760,8761,8762,5], -[0,-1548,-4654,-13840,-10846], -[0,-3037,-427,-428,-633,-13841,-13842,-767,-815,-13843,-13844,-1398,-1650,-1771,-1788,-2125,-2250,-13845,-13846,-2341, --2379,-5482,-2410], -[0,-4873,-3440,-4215,-8611,-4216,-13847,-11378], -[1,3,8764], -[0,8765,8766,8767,4], -[0,-4733,-573,-615,-13762,-719,-724,-735,-999,-1004,-13848,-1107,-1336,-1442,-1548,-1650,-1689,-1737,-1778,-13849,-2125, --2228,-13850,-13851,-8573,-2359], -[0,-13852,-633,-664,-7976,-13853,-674,-838,-932,-7979,-964,-1654,-2105,-13854,-2195,-2210,-2211,-2229,-2322], -[0,-3214,-3634,-11116,-4865], -[1,3,8769], -[0,0,8770,8771,4], -[0,-2319,-2322,-689], -[0,-5554,-4002,-9846,-4111,-10844,-6724], -[1,3,8773], -[0,0,8774,8775,4], -[0,-190,-351,-3266,-932,-13855,-952,-957,-960,-1110,-13856,-1446,-1588,-1880,-1978,-1989,-2127,-2393], -[0,-2344,-13857,-3214,-13858,-13859,-13860,-13861,-13862,-13863,-13864,-13865,-659,-3839,-5177], -[1,3,8777], -[0,0,8778,8779,4], -[0,-21,-23,-38,-40,-44,-3326,-534,-7156,-753,-932,-7157,-940,-967,-985,-1098,-13866,-7158,-1344,-1471,-1473,-1475,-1479, --1483,-1485,-1490,-1492,-1534,-1646,-13867,-1763,-1942,-1991,-2127,-7161,-2501], -[0,-811,-7329], -[1,3,8781], -[0,0,8782,8783,9], -[0,-8388,-2322,-8393], -[0,-5827,-8027,-13868,-11441], -[1,3,8785], -[0,8786,8787,8788,4], -[0,-2062], -[0,-599,-640,-664,-13869,-1654,-13870,-2250,-13871], -[0,-5827,-13872,-2346,-6408], -[1,3,8790], -[0,0,0,8791,11], -[0,-12735,-705,-3262,-5925,-1961], -[1,3,8793], -[0,0,14,8794,6], -[0,-13873,-13874,-13875,-2350,-13876,-1847,-11845,-7421,-2440,-7727,-5845], -[1,3,8796], -[0,8797,210,8798,4], -[0,-668,-12908,-1040,-9236,-13877,-1951,-2343], -[0,-1127,-8906,-9460,-4123,-13878,-9330,-13879,-9225,-6187,-8906], -[1,3,8800], -[0,8801,8802,8803,4], -[0,-13880,-13881,-13882,-13883,-13884,-13885,-13886,-13887,-13888,-13889,-13890,-13891,-13892,-13893,-13894,-13895,-13896, --13897,-13898,-13899,-13900,-13901,-13902,-13903,-13904,-13905,-13906,-13907,-13908,-13909,-13910,-13911,-13912,-13913, --13914,-13915,-13916,-13917,-13918,-13919,-13920,-13921,-13922,-13923,-13924,-13925,-13926,-13927,-13928,-13929,-13930, --13931,-13932,-13933,-13934,-13935,-13936,-13937,-13938,-13939,-13940,-13941,-13942, --13943,-13944,-13945], -[0,-1076,-1107,-1168,-1847,-2162,-1654,-2006,-932,-1548,-2125,-784,-1889,-2501,-923,-1077,-1405,-767,-1003,-1248,-1743, --2019,-778,-1183,-1967,-1187,-2163,-518,-1238,-1244,-2275,-13946,-13947,-1792,-2508,-1184,-1514,-1908,-13948,-3054,-969, --933,-958,-962,-10533,-13949,-796,-1017], -[0,-2006,-3159,-3095,-3098,-3160,-3161,-3100,-13950,-2352,-13951], -[1,3,8805], -[0,8806,8807,7,6], -[0,-10459,-812,-10622,-10623,-1792,-1983], -[0,-526,-535,-554,-559,-932,-943,-968,-974,-1004,-1088,-1654,-11943,-2251,-2293], -[1,3,8809], -[0,0,0,8810,5], -[0,-589,-13952,-13241], -[1,3,8812], -[0,0,8813,8814,5], -[0,-13953], -[0,-712,-3215,-13954], -[1,3,8816], -[0,0,0,8817,11], -[0,-3494,-2356,-7754,-3214,-3264,-5554,-10109,-10110,-10114,-3495,-10111,-3498], -[1,3,8819], -[0,0,8820,8821,4], -[0,-3037,-13239,-932,-940,-967,-978,-1942,-2892,-2410,-2411,-2466,-2469], -[0,-5922,-13955,-13956], -[1,3,8823], -[0,0,0,8824,8], -[0,-4216,-4215,-2410,-13957], -[1,3,8826], -[0,0,8827,258,4], -[0,-1654,-932,-1405,-6726,-964], -[1,3,8829], -[0,8830,8831,8832,4], -[0,-2036], -[0,-23,-13958,-3156,-1942,-2410], -[0,-2006,-3159,-13959,-12662,-3825,-13960,-13961,-2034,-2053,-13962,-13963,-2360,-4127,-4122,-13964,-687,-3162,-5270, --5271,-3578,-13965], -[1,3,8834], -[0,0,8835,8836,10], -[0,-21,-23,-37,-40,-41,-2581,-11254,-3311,-534,-664,-932,-1004,-1077,-1103,-1111,-1442,-1449,-1610,-1650,-1654,-2634, --13966,-1771,-13967,-2006,-2019,-2162,-2250,-2501,-2503], -[0,-2361,-3214,-4002,-13968,-7002,-3960,-3264,-7534,-9975], -[1,3,8838], -[0,0,8839,8840,6], -[0,-1754,-11358], -[0,-2362,-3215], -[1,3,8842], -[0,0,8843,7,6], -[0,-11719,-2319], -[1,3,8845], -[0,8846,8847,8848,6], -[0,-13969], -[0,-2832,-190,-4139,-262,-3037,-6593,-932,-940,-948,-958,-967,-3631,-1110,-1942,-2391,-2410,-2411,-2469], -[0,-4181,-743,-6920,-13970,-13570,-8792,-13971,-13972], -[1,3,8850], -[0,8851,8852,8853,4], -[0,-714,-808,-1650,-13973], -[0,-3035,-3621,-664,-689,-879,-932,-1654,-1788,-2379,-2388,-2410], -[0,-1573,-3444,-13974,-812], -[1,3,8855], -[0,8856,8857,8858,5], -[0,-11103,-13975,-7400], -[0,-5834,-516,-5835,-921,-932,-1365,-1777,-2156,-2322], -[0,-2368,-2487,-7371,-6917,-13976,-6545,-702], -[1,3,8860], -[0,0,27,8861,5], -[0,-10919,-10336,-1958,-13641,-12872,-5395], -[1,3,8863], -[0,241,8864,7,5], -[0,-3732,-4198,-3617,-3136,-724,-754,-1004,-1415,-1753,-1942,-2375,-2410,-2564], -[1,3,8866], -[0,8867,8868,8869,4], -[0,-1370,-2347,-6372,-13977,-13978,-2062], -[0,-2322,-2346,-725], -[0,-3264,-9292,-3215,-6408,-12123,-775], -[1,3,8871], -[0,8872,8873,8874,4], -[0,-3851,-3199,-1388,-1681,-2177,-9444], -[0,-2581,-3037,-3664,-637,-11187,-1672,-1806,-5326,-3246,-2410,-2469], -[0,-3445,-6857,-1671,-1672,-3862,-4058,-7773,-7684,-3018,-2410,-3324,-2071,-4634,-10412,-6495,-5101,-13979], -[1,3,8876], -[0,0,8877,161,11], -[0,-21,-23,-26,-35,-36,-40,-42,-50,-86,-3307,-4139,-262,-3268,-3136,-3044,-3738,-427,-428,-533,-589,-753,-932,-940,-967, --977,-1344,-1415,-1548,-1771,-1942,-2082,-2379,-2402,-2405,-2410,-2446], -[1,3,8879], -[0,8880,8881,8882,5], -[0,-13980,-7141,-1276,-1460,-1565,-13981,-2177,-2400,-2551], -[0,-86,-9404,-3615,-3244,-190,-5121,-4020,-237,-4776,-3048,-3136,-3660,-3759,-8216,-7211,-4036,-3037,-3199,-3041,-9146, --427,-428,-533,-10525,-739,-928,-932,-940,-958,-959,-960,-967,-999,-1026,-1077,-1110,-1344,-1415,-1442,-1534,-1623,-1942, --2125,-2379,-2410,-2411], -[0,-1415,-2410,-6915,-2006,-3634], -[1,3,8884], -[0,8885,8886,8887,5], -[0,-668,-909,-1639,-2177,-2231], -[0,-4036,-3199,-427,-428,-525,-527,-534,-556,-559,-13982,-560,-930,-932,-940,-966,-967,-1077,-1107,-1344,-1413,-1471, --1475,-1481,-1483,-1490,-1492,-1534,-1607,-1650,-1654,-1942,-2125,-2410,-2501,-2503], -[0,-2376,-13983,-2501,-5932,-2410,-3018], -[1,3,8889], -[0,8890,8891,8892,9], -[0,-4106,-719,-865,-1672,-2392], -[0,-2581,-3037,-3664,-11187,-1763,-1806,-5326,-3246,-2410,-2469], -[0,-3445,-13984,-13985,-13986,-1672,-1671,-6857,-4058,-7773,-7684,-3018,-2410,-687,-5732,-13987,-5731], -[1,3,8894], -[0,8895,8896,8897,6], -[0,-13988,-13989], -[0,-3267,-3035,-9939,-3621,-3037,-664,-11072,-767,-834,-1654,-2125,-2127,-2379,-2410], -[0,-2410,-3272,-13990,-3107,-13991], -[1,3,8899], -[0,8900,8901,8902,5], -[0,-2558,-502,-834,-461,-462,-13981,-13992,-13993,-13994,-13995,-8214,-13996,-13997], -[0,-519,-1788,-523,-2006,-13998,-1001,-1548,-2125,-2177,-11685,-1821,-2402,-367,-13999,-1100,-1972,-2410,-9939,-3037, --14000,-3040,-3044,-8890,-3199,-6744,-14001,-7772,-4364,-11347,-11708,-262], -[0,-2410,-3966,-11997,-5558,-3018,-3116], -[1,3,8904], -[0,8905,8906,8907,5], -[0,-3044,-3851,-3199,-14002,-1548,-1681,-14003,-14004,-2177], -[0,-2581,-3037,-3664,-11187,-1672,-1806,-5326,-3246,-2410,-2469], -[0,-3445,-1672,-3862,-6857,-4058,-7773,-7684,-3018,-2410,-7460,-1306,-5389,-6821,-8990,-10674,-6693,-5879,-1573], -[1,3,8909], -[0,0,37,8910,8], -[0,-2410,-2552,-10054,-10055], -[1,3,8912], -[0,8913,8914,8915,5], -[0,-1548,-3044], -[0,-2581,-3037,-3664,-1806,-5326,-3246,-2410,-2469], -[0,-3445,-3018,-2410,-14005,-14006,-11315,-8199,-6899,-14007,-14008,-14009,-14010,-14011], -[1,3,8917], -[0,8918,8919,7,9], -[0,-1460,-1646,-2270], -[0,-1415,-1344,-932,-2125,-2375,-2379,-1942,-2410,-3136,-3037,-1534,-5686,-14012,-960,-958,-940,-428,-7770,-427], -[1,3,8921], -[0,8922,8923,8924,5], -[0,-14013,-3686,-1111,-1418,-1630,-1849,-2061], -[0,-5028,-3037,-3040,-427,-428,-519,-757,-825,-932,-945,-14014,-999,-2006,-2115,-2153,-2410], -[0,-2410,-2384,-7440,-2414,-3694,-14015,-14016], -[1,3,8926], -[0,0,8927,8928,4], -[0,-23,-40,-42,-5121,-8214,-14013,-3037,-427,-428,-533,-774,-932,-940,-1415,-1942,-2410], -[0,-2410,-2384,-4037,-7440,-7144,-4004,-2414,-3694], -[1,3,8930], -[0,8931,8932,8933,10], -[0,-8200,-668,-679,-6475,-14017,-1645,-1650,-14018,-13709,-2125,-14019,-2410,-4297], -[0,-3037,-928,-1942,-2319,-2402], -[0,-2410,-5058,-9946,-985,-4791,-7641], -[1,3,8935], -[0,0,0,8936,6], -[0,-4165,-14020,-3116,-6784,-3214,-2387,-11997], -[1,3,8938], -[0,8939,8940,8941,8], -[0,-22,-644,-668,-719,-834,-1107,-1442,-1645,-1650,-2114,-2177,-2387,-7765], -[0,-305,-8355,-3035,-9939,-3036,-3660,-8566,-4811,-3621,-3037,-3200,-8890,-3199,-664,-1344,-13325,-1654,-1771,-1788,-1942, --2125,-2379,-2388,-2389,-6355,-2410,-12515], -[0,-687,-2410,-8170], -[1,3,8943], -[0,0,8944,8945,5], -[0,-1415,-1344,-1548,-2125,-2388,-2375,-1591,-1942,-14021,-720,-2410,-3136,-3037,-14022,-2390,-14023,-6630,-2174,-14024, --14025,-12348,-2449,-12349,-14026,-796,-14027], -[0,-7148,-2388,-14028,-1942,-727,-2410], -[1,3,8947], -[0,8948,8949,7,6], -[0,-7765], -[0,-3036,-3037,-714,-1107,-1771,-1847,-2388,-14029,-2410], -[1,3,8951], -[0,8952,8953,7,4], -[0,-13389,-653,-679,-734,-812,-928,-14030,-14031,-1863,-1907,-2115,-2127,-2231,-5354,-3535,-2654,-2369], -[0,-262,-4062,-367,-3198,-3037,-3200,-8349,-1055,-1889,-10815,-1942,-2114,-2132,-2162,-2271,-2299,-2301,-2334,-14032, --2391,-2410,-2469,-2817], -[1,3,8955], -[0,8956,0,8957,4], -[0,-928,-1101], -[0,-687,-11997,-3966,-8930,-4791,-985,-2410,-14033], -[1,3,8959], -[0,8960,8961,8962,6], -[0,-14034], -[0,-350,-351,-3561,-633,-2123,-2127,-2250,-14035], -[0,-6473,-3264,-1599], -[1,3,8964], -[0,0,8965,8966,10], -[0,-1127,-1654,-11875,-1132,-2111,-14036,-14037,-1156,-14038,-1138,-14039,-2234,-1134,-14040,-1144,-1148,-14041,-14042, --14043], -[0,-1456,-4058,-2451,-2394], -[1,3,8968], -[0,0,8969,8970,5], -[0,-633,-932,-1032,-14044,-2322,-14045,-2416], -[0,-770,-5374,-14046,-14047,-13351,-6131,-7372,-14048,-14049,-14050,-14051,-14052], -[1,3,8972], -[0,8973,8974,8975,5], -[0,-1077,-1462,-14053,-8984], -[0,-1771,-1860,-2416], -[0,-10838,-14054,-3215,-5093,-9474,-14055,-4112], -[1,3,8977], -[0,8978,8979,8980,9], -[0,-615,-1640,-2105], -[0,-510,-714,-719,-1654,-2123,-2210], -[0,-2398,-3690,-3691,-5827,-9292,-1791], -[1,3,8982], -[0,8983,8984,8985,11], -[0,-2105,-822], -[0,-1722,-1654,-932], -[0,-2398,-9292,-1791], -[1,3,8987], -[0,8988,0,7,4], -[0,-1646,-14056,-668], -[1,3,8990], -[0,8991,8992,8993,9], -[0,-14057], -[0,-5918,-428,-932,-14058,-815,-1002,-1772,-2384,-2410,-2411,-2541], -[0,-2410,-3018,-3694,-3590,-2444,-8113,-10665,-1631,-4055,-14059], -[1,3,8995], -[0,8996,129,8997,4], -[0,-737,-14060,-1641], -[0,-5398,-8038,-14061], -[1,3,8999], -[0,9000,9001,259,4], -[0,-14062,-3544,-1600,-1645,-2548], -[0,-190,-3800,-3661,-3621,-3037,-652,-13998,-928,-932,-1654,-1978,-2177,-2392,-2410,-2411], -[1,3,9003], -[0,9004,9005,9006,11], -[0,-14063], -[0,-3037,-2402,-2410], -[0,-14064,-14065,-3118,-14066,-14067,-14068,-2410,-856], -[1,3,9008], -[0,0,131,9009,6], -[0,-4121,-4123,-13188,-2410,-856,-14068,-2402], -[1,3,9011], -[0,0,0,9012,4], -[0,-3690,-856,-1599,-2402,-2410,-14065], -[1,3,9014], -[0,9015,9016,9017,4], -[0,-1610,-2410], -[0,-3802,-3621,-3037,-3628,-756,-1405,-1654,-1657,-2359], -[0,-4165,-856,-14069,-3214], -[1,3,9019], -[0,9020,9021,9022,4], -[0,-719,-2536,-1705,-6455,-14070,-510,-714,-1666,-1650,-7418,-14071], -[0,-664], -[0,-14072,-1599,-14073,-14074,-14075,-8676,-3110,-6473,-3262], -[1,3,9024], -[0,106,9025,7,5], -[0,-234,-3035,-4269,-3621,-14076,-3037,-664,-665,-756,-1654,-14077,-1672,-14078,-1942,-14079,-2234,-2379,-2389,-12348], -[1,3,9027], -[0,9028,9029,7,10], -[0,-1107,-2446,-483,-809,-812,-2387,-2550,-640,-815,-865,-7023,-496,-14080,-2080,-14081], -[0,-652,-1857,-664,-1168,-1344,-1392,-1654,-1682,-1691,-2071,-2210,-932,-1692,-2125,-3729,-1110,-1671,-2245,-2379,-10418, --1942,-14082,-190,-1250,-8436,-2211,-2410,-3035,-3037,-1243,-1534,-3198,-3621,-4372,-3041,-1244,-14083,-10419,-1252, --1261,-10420,-14084,-8214,-665,-3625,-3910,-7969,-2411,-14085,-2234,-14086,-960,-14087,-14088,-4269,-9660], -[1,3,9031], -[0,0,9032,9033,5], -[0,-652,-1681,-664,-834,-1107,-1498,-1654,-2387,-2518,-13998,-932,-8526,-928,-1110,-679,-1646,-3851,-190,-1863,-1874, --2410,-3035,-9939,-3621,-10755,-1461,-305,-5686,-1028,-14089,-14090,-2411,-14091,-2234,-971,-14092,-429,-9660,-14093, --5201,-5206,-14094,-14095], -[0,-4165,-14020,-3116,-6784,-3214], -[1,3,9035], -[0,9036,112,9037,4], -[0,-429,-428,-427,-5209], -[0,-3272,-3217,-3214,-2410,-3215,-4132,-932,-5208,-3784], -[1,3,9039], -[0,9040,9041,9042,10], -[0,-14096,-7829], -[0,-4811,-3621,-3037,-14097,-740,-14098,-1650,-1654,-1938,-2388,-2410,-2412], -[0,-4165], -[1,3,9044], -[0,9045,9046,9047,6], -[0,-14099,-14100,-865,-2773,-1521,-1551,-1889,-1907,-7164,-1915,-7165,-10283,-2162,-2232,-2383,-2286], -[0,-14101,-3136,-8334,-3759,-3037,-14102,-14103,-8336,-427,-428,-620,-932,-940,-1344,-1415,-14104,-1534,-14105,-1916, --1927,-1942,-14106,-2375,-2410], -[0,-775,-3754,-2162,-1521,-2286,-3209,-3862,-1889,-2410], -[1,3,9049], -[0,9050,9051,9052,8], -[0,-11661,-615,-668,-696,-715,-13789,-10511,-12631,-1575,-1646,-14107,-14108,-2433,-2525,-2546], -[0,-829,-1722,-2125,-2379,-2388,-14109,-2410], -[0,-2414,-2410,-14110,-4159,-5897,-9800,-9069], -[1,3,9054], -[0,9055,9056,9057,8], -[0,-719,-2231], -[0,-461,-1654,-2177], -[0,-9216,-2415,-2416,-1644,-6684,-3214,-3217,-8108,-3184,-6052,-13770,-4795,-8165,-6434,-510,-5867], -[1,3,9059], -[0,0,9060,9061,11], -[0,-461,-2177], -[0,-687,-6454,-9696,-14111,-3217,-6505,-8108,-3214,-3756,-14112,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838, --3215,-9698,-9216], -[1,3,9063], -[0,9064,9065,9066,9], -[0,-4287,-1046,-1401,-2168,-2182,-2231,-2416,-2510,-10059], -[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-8206,-767,-824,-825,-932,-940,-958,-1344,-1415,-1424,-1534,-1626,-1771,-1942, --2251,-2334,-2501], -[0,-9216,-2416,-2415,-2501,-7172], -[1,3,9068], -[0,9069,9070,9071,5], -[0,-14113], -[0,-1654,-932,-615,-1405,-966,-958,-968,-943,-974], -[0,-6555,-3262,-7232,-9594], -[1,3,9073], -[0,9074,0,9075,4], -[0,-44,-3040,-3052,-14114,-14115,-14116,-14117,-14118,-14119,-14120,-14121,-432,-14122,-14123,-14124,-14125,-14126,-14127, --14128,-14129,-14130,-14131,-14132,-14133,-14134,-14135,-14136,-14137,-14138,-14139,-433,-434,-14140,-14141,-14142, --14143,-14144,-14145,-14146,-14147,-5257,-435,-14148,-14149,-14150,-14151,-14152,-14153,-14154,-14155,-14156,-14157, --14158,-14159,-14160,-14161,-14162,-14163,-14164,-14165,-14166,-14167,-14168, --14169,-14170], -[0,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], -[1,3,9077], -[0,9078,9079,174,10], -[0,-1107,-1351,-1548,-2177,-2529], -[0,-1452,-1600,-1654,-1766,-2198], -[1,3,9081], -[0,0,9082,7,10], -[0,-4066,-350,-351,-3267,-3037,-589,-1942,-2127,-2387,-2410,-2469], -[1,3,9084], -[0,0,9085,9086,5], -[0,-2581,-50,-13526,-668,-5382,-928,-1111,-1273,-1600,-14171,-1771,-14172,-1948,-3768,-2469], -[0,-3264,-3110,-7723], -[1,3,9088], -[0,9089,9090,7,5], -[0,-4066,-350,-4062,-351,-3561,-4785,-14173,-734,-6860,-928,-14030,-14174,-1431,-1588,-14175,-1651,-1852,-6568,-1948, --2127,-2132,-6569,-2654,-14176], -[0,-3376,-3037,-3664,-8189,-672,-932,-944,-1942,-2410,-2469], -[1,3,9092], -[0,0,9093,9094,4], -[0,-1788,-1107,-849,-1344,-1471,-1989,-932,-2127,-2334,-757,-756,-1485,-7324,-4916,-14177,-958,-1488], -[0,-2444,-5112,-3844,-3323,-4865], -[1,3,9096], -[0,9097,9098,9099,4], -[0,-2243,-9649], -[0,-633,-14178,-932,-1405,-1654,-1657,-8276,-12323,-2424], -[0,-2424,-2265], -[1,3,9101], -[0,0,9102,9103,5], -[0,-8843,-11419,-14179,-357,-3037,-458,-2917,-652,-767,-14180,-928,-932,-1023,-1344,-1415,-14181,-2884,-1730,-1971,-2384, --2410,-2531], -[0,-4213,-1334,-1342,-1961,-2105,-9172,-9173,-2533,-5388], -[1,3,9105], -[0,9106,9107,9108,4], -[0,-4231,-14182,-9596,-1015,-1395,-14183,-5358], -[0,-14184,-5334,-4251,-3037,-652,-1942,-2094,-2100,-2384,-2399,-2410,-2541], -[0,-3272,-7644,-5398,-10280,-1838,-1958,-2083,-2093,-14185,-6233,-6231,-4132,-6408,-10919,-2427], -[1,3,9110], -[0,9111,14,9112,4], -[0,-14186], -[0,-13747,-6555,-6240,-6814,-3960,-14187,-5839,-12411,-9682], -[1,3,9114], -[0,9115,9116,9117,5], -[0,-4231,-7700,-5356], -[0,-4251,-3037,-652,-1618,-10922,-10923,-1942,-2094,-2100,-2384,-2399,-2410,-2541], -[0,-9590,-14188,-2444,-3590,-2093,-14185,-2083,-10918,-9589,-14189,-14190,-1703,-6784,-1599,-3264,-6597,-10919,-3272, --3966,-14191,-2487], -[1,3,9119], -[0,0,222,9120,5], -[0,-13875,-11002,-7727,-2430,-1847,-11845,-7421,-2440,-5550,-6836], -[1,3,9122], -[0,9123,0,9124,8], -[0,-7304,-1081,-14192,-14193,-8578,-2062], -[0,-5408,-2432,-9506,-14194,-5409,-5827,-7347], -[1,3,9126], -[0,9127,9128,9129,6], -[0,-14195,-623,-668,-14196,-2177,-8418,-728,-6848,-1514,-1394], -[0,-2541,-519,-9982,-2269,-686,-14197], -[0,-1764,-10674,-11693,-9258,-14198,-7440,-7144,-687,-3551,-5897,-9318], -[1,3,9131], -[0,0,0,9132,4], -[0,-9171,-2435,-14199,-14200,-14201,-14202,-14203,-14204,-14205,-14206,-14207,-14208,-14209,-14210,-14211,-14212,-14213, --14214], -[1,3,9134], -[0,9135,9136,9137,10], -[0,-1983,-1977], -[0,-515,-1788,-2568,-461,-1654,-932,-5834], -[0,-6747,-2435,-10433], -[1,3,9139], -[0,0,9140,9141,5], -[0,-739,-1654,-2198], -[0,-2435,-8396], -[1,3,9143], -[0,9144,9145,48,10], -[0,-1543,-1641,-2168], -[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-1041,-1344,-1415,-1534,-1623,-8913,-1771,-1942, --2251,-2501], -[1,3,9147], -[0,9148,9149,9150,5], -[0,-6614,-9730], -[0,-509,-633,-652,-1654,-1939,-14215,-14216,-2416], -[0,-6984,-3215,-9171,-2435,-1838,-5101,-2265,-1985,-6231], -[1,3,9152], -[0,9153,9154,9155,9], -[0,-1069,-14217,-1641,-1983,-2400,-2426,-14218], -[0,-2832,-14219,-7453,-14220,-8317,-14221,-3713,-3037,-14222,-4966,-14223,-3715,-8200,-9581,-3664,-649,-767,-1351,-2987, --8065,-1971,-3727,-14224,-2325,-2386,-7457,-2410,-2469], -[0,-2439,-1334,-14225,-9172,-9173,-2105,-1342,-2426,-4213], -[1,3,9157], -[0,9158,9159,9160,4], -[0,-10383], -[0,-1849], -[0,-2440,-11845,-13874,-10383,-11070,-7421,-7420,-1847,-6845,-3592,-5558,-3591,-14226], -[1,3,9162], -[0,9163,9164,9165,6], -[0,-1582,-2359], -[0,-509,-1654,-1939,-2105,-2177,-14227], -[0,-9733,-4865,-14228,-1819,-1838,-3215,-14229,-14230,-14231,-14232,-2440,-14233,-2442,-9318], -[1,3,9167], -[0,0,9168,9169,4], -[0,-756,-1405,-6186,-1991], -[0,-9791,-5835,-4112,-2443], -[1,3,9171], -[0,9172,9173,260,5], -[0,-1370,-7391,-14234,-14235,-7400], -[0,-468,-753,-14236,-1797,-1798,-2151,-2155,-2322], -[1,3,9175], -[0,0,183,260,8], -[1,3,9177], -[0,0,9178,9179,4], -[0,-32,-86,-3307,-190,-3563,-719,-932,-940,-967,-1110,-1344,-1415,-1534,-2884,-1771,-1942,-11013,-11014,-2251,-2410,-2411], -[0,-2446,-7230,-11582,-14237], -[1,3,9181], -[0,9182,9183,9184,10], -[0,-8609,-834,-1496,-5037], -[0,-14238,-985,-11747,-13279], -[0,-507,-14239,-4043,-4045,-4004], -[1,3,9186], -[0,0,9187,9188,5], -[0,-2319,-1452], -[0,-2435,-3926,-7440,-7144,-5574], -[1,3,9190], -[0,9191,9192,9193,5], -[0,-7247,-14240,-5504,-10482], -[0,-7465,-664,-6774,-720,-796,-1344,-1405,-1650,-1654,-9075,-2125,-2174,-2210], -[0,-14241,-5890,-12665,-5889,-6908,-5887], -[1,3,9195], -[0,0,9196,9197,8], -[0,-4298,-4300], -[0,-1764,-5897,-6444,-3926], -[1,3,9199], -[0,0,9200,9201,4], -[0,-21,-23,-40,-43,-528,-535,-932,-934,-958,-1654,-1771,-1788,-2125,-2127,-2128,-11290,-2416], -[0,-2451,-3926,-5874,-8472,-7723,-14242,-14243,-507], -[1,3,9203], -[0,9204,9205,9206,11], -[0,-14244,-14245,-14246], -[0,-3037,-4837,-5589,-3899,-14247,-4838,-786,-14248,-1449,-2410,-2466,-2469,-14249,-2476,-2483,-14250,-14251,-14252, --14253], -[0,-3160,-2476,-3944,-3162,-3100,-3095,-3098], -[1,3,9208], -[0,0,9209,9210,5], -[0,-1654,-932,-1405,-589,-2293,-585,-966,-958,-968,-943,-963,-974], -[0,-1334,-4616,-2453], -[1,3,9212], -[0,9213,9214,7,4], -[0,-2456], -[0,-2319,-1754], -[1,3,9216], -[0,9217,9218,7,6], -[0,-5193,-928,-679,-1069,-14254,-14255,-14256,-14257,-14258,-14259,-14260,-14261,-14262,-14263,-14264,-14265,-14266, --14267,-14268,-14269,-14270,-14271,-14272,-14273,-14274,-14275], -[0,-1681,-469,-502,-864,-985,-1371,-1816,-1805,-2466,-651,-668,-812,-999,-1623,-1971,-12508,-13969,-2518,-669,-865,-1001, --1400,-2125,-2177,-2240,-2324,-2469,-680,-708,-1004,-1047,-1658,-2379,-807,-1077,-1098,-1981,-1999,-2694,-367,-3851, --4966,-14276,-10697,-11705,-1645,-1878,-2369,-11697,-12324,-481,-12971,-695,-1424,-1641,-1729,-2269,-2410,-3136,-3037, --512,-929,-14277, --8874,-7982,-14278,-3269,-3198,-14279,-10755,-480,-511,-14280,-14281,-14282,-3199,-9941,-13839,-5977,-3124,-12274,-11855, --3637,-14283,-13376,-10519,-14284,-4105,-3048,-11328,-1025,-14285,-1767,-7162,-2991,-14286,-2992,-8566,-5363,-2946, --14287,-3713,-4201,-14288,-13184,-14289,-14290,-9750,-10046,-14291,-5124,-14292,-14293,-2591,-11857,-14294,-3234,-14295, --14296,-14297,-11702,-14298,-14299,-14300,-14301,-14302,-14303, --14304,-14305,-14306], -[1,3,9220], -[0,9221,0,9222,4], -[0,-14307,-508,-13486], -[0,-6324,-8980,-14308,-12254,-12442,-3586], -[1,3,9224], -[0,0,9225,7,4], -[0,-1654,-1405,-2293], -[1,3,9227], -[0,0,9228,9229,4], -[0,-23,-40,-86,-3307,-3326,-539,-664,-671,-708,-757,-14309,-784,-825,-932,-934,-958,-1344,-1471,-1474,-1475,-3568,-1482, --1483,-1486,-1534,-1654,-1771,-1889,-1891,-14310,-1906,-1927,-7033,-1978,-2127,-2281,-2282,-2284,-2416], -[0,-6527,-14311,-2459,-14312,-3264,-775,-3214,-3577,-3578], -[1,3,9231], -[0,9232,9233,9234,5], -[0,-14313,-702,-2103,-14314], -[0,-1788,-1654,-932,-1001,-13729,-2062,-937,-966], -[0,-9614,-7422,-6656,-7421,-9330,-1847], -[1,3,9236], -[0,9237,9238,9239,4], -[0,-599,-2347], -[0,-2322,-2463], -[0,-2460,-7419,-5845,-640,-5827], -[1,3,9241], -[0,9242,9243,9244,11], -[0,-14315,-9092,-1119,-1351,-14316,-14317,-1759,-14318,-14319,-13729,-14320,-14321,-2460,-14322], -[0,-932,-937,-1001,-1654,-1788,-2062,-2125,-2210], -[0,-1168,-14323,-2460,-6656,-8801,-1076,-8027], -[1,3,9246], -[0,9247,9248,9249,9], -[0,-2460,-2347], -[0,-1243,-2322,-2462], -[0,-2460,-1168,-7419,-9975,-5827,-2265,-5554,-14324], -[1,3,9251], -[0,185,0,9252,4], -[0,-2460,-9455,-9466,-1168], -[1,3,9254], -[0,9255,9256,9257,5], -[0,-14325,-6324,-14326,-1109,-9977,-8104,-14327,-14328], -[0,-633,-1405,-9088,-1812,-14329,-12014,-2320,-2322,-2568], -[0,-9614,-5092,-9613,-14330,-834,-7460,-4865], -[1,3,9259], -[0,9260,9261,261,6], -[0,-4787,-2127,-928,-1889,-1864,-2654], -[0,-2531,-653,-11071,-754,-990,-1651,-5042,-1805,-2162,-2213,-1852,-865,-5036,-1699,-1839,-2334,-729,-12601,-679,-2923, --3027,-14331,-14332,-1863,-769,-929,-14333,-3751,-1588,-25,-4371,-866,-989,-3572,-14334,-1906,-14335,-14336,-11751, --14337,-13397,-10046,-742,-4785,-1907,-7160,-4066,-3195,-5322,-2134,-350,-6410,-7897,-3180,-14338,-7151], -[1,3,9263], -[0,9264,9265,9266,4], -[0,-14341,-1026,-1077,-14342,-14343], -[0,-3617,-3048,-3037,-1004,-2391,-2410,-2466], -[0,-2466,-3690,-14344,-14345,-14346,-14347,-1004,-14348,-3844,-14349,-9843,-14350,-14351,-3862,-3816,-2146,-3445,-14352, --14353], -[1,3,9268], -[0,9269,9270,9271,4], -[0,-2476,-2466,-4245,-3788,-14354,-3726,-14244,-4817,-3559,-14355,-3558,-14356,-14357,-3661,-4837,-14358,-4229,-14359], -[0,-1816,-2213,-812,-999,-1826,-3548,-1699,-2125,-2127,-2177,-2469,-928,-1871,-1966,-3728,-2653,-5627,-2648,-679,-1077, --1098,-1646,-1942,-1977,-1582,-1639,-1863,-2654,-2410,-3037,-769,-1125,-1534,-1600,-3198,-6447,-14360,-3801,-3735,-1851, --3048,-5686,-1570,-14361,-3246,-4036,-3425,-1603,-2132,-13397,-7080,-1601,-4062,-13593,-14362,-14363,-4066,-14364,-1602, --6483,-14365,-3561,-9458, --350,-1926,-14366,-3662,-14367,-14368,-740,-351,-14369,-14370,-14371], -[0,-2466,-2476,-2468], -[1,3,9273], -[0,9274,9275,9276,8], -[0,-5042,-2466,-1852,-6570,-3535,-1864,-2354,-2654,-6488,-1002,-14372,-1588,-13385,-13376,-13388,-14373,-14335,-14374, --14375,-14376], -[0,-2531,-653,-1640,-14377,-1449,-7142,-1966,-13380,-1278,-14378,-462,-3037,-4647,-426,-14334,-3735,-14379,-8523,-14380, --5038,-357,-4048,-3180,-3626,-4047], -[0,-2466,-2469,-4004,-1415], -[1,3,9278], -[0,9279,9280,9281,5], -[0,-668,-1548,-1376,-1646,-2528,-1365,-1575,-2269,-556,-14381], -[0,-2541,-1168,-525,-1654,-1666,-2198,-14382,-2105,-615,-527,-1174,-1197,-14383,-14384,-1182,-14385,-559], -[0,-3690,-687,-12694,-5550,-4039,-3161,-3994,-9668,-3957,-719,-13831,-1965,-1376], -[1,3,9283], -[0,9284,0,9285,4], -[0,-834,-14386,-1107], -[0,-3634,-4679,-4004,-14387], -[1,3,9287], -[0,9288,9289,9290,6], -[0,-2359,-1107,-1640,-2059,-9498,-668,-1526,-2555,-14388,-2177,-2536,-674,-2436,-719,-1645,-1600,-14389,-1315,-14390, --14092], -[0,-1344,-1654,-2379,-1942,-3628,-2410,-3036,-6325,-3037,-14391,-14392,-1771,-3621,-8497,-1952,-3199,-11343,-14393,-86, --14394,-8566,-2174,-3661,-2234,-5361,-3307], -[0,-11859,-2472,-5195], -[1,3,9292], -[0,0,37,7,4], -[1,3,9294], -[0,9295,9296,7,4], -[0,-479,-702,-994,-1022,-1107,-1351,-1391,-2231,-2410,-2460,-2536,-2550], -[0,-9478,-14395,-9457,-3036,-14396,-8566,-3621,-3037,-12993,-9476,-7837,-3046,-11343,-3041,-427,-428,-932,-1654,-2125], -[1,3,9298], -[0,0,9299,7,9], -[0,-1654,-1650,-2501,-2410,-3037,-2503,-3621,-14397,-748,-262], -[1,3,9301], -[0,9302,0,9303,6], -[0,-14244,-14398,-9631,-7438,-3250], -[0,-2476], -[1,3,9305], -[0,0,9306,9307,5], -[0,-23,-26,-33,-3077,-40,-3035,-3621,-3037,-428,-532,-534,-7890,-664,-778,-932,-14399,-1654,-2080,-2125,-2127,-2128,-2138, --2341,-2376,-2410,-2415,-2476,-2481,-2485,-2816,-2486,-2501,-2503], -[0,-2476,-7711,-525,-2410], -[1,3,9309], -[0,9310,9311,7,9], -[0,-812,-982,-983,-986,-8141,-2177], -[0,-23,-32,-3332,-14400,-6484,-3244,-190,-3198,-426,-3037,-3199,-427,-428,-3664,-3665,-932,-8230,-961,-965,-8287,-967, --978,-7356,-1942,-2379,-2892,-2410,-2466,-2469], -[1,3,9313], -[0,0,9314,9315,5], -[0,-639,-1415,-2476], -[0,-2476,-12517,-11492], -[1,3,9317], -[0,9318,9319,9320,6], -[0,-14401,-14357,-14402], -[0,-14403], -[0,-1348,-9780,-14404,-3862,-2476,-3527], -[1,3,9322], -[0,9323,9324,7,4], -[0,-668,-1284,-12982], -[0,-23,-40,-14405,-426,-12643,-3136,-4647,-14406,-14407,-534,-14408,-740,-778,-1041,-1331,-1415,-1449,-1534,-14409,-1623, --1643,-7034,-7846,-1908,-1942,-1974,-14410,-2231,-2275,-2286,-2287,-2289,-2375,-2376,-2410,-2437,-2476,-2480,-2501,-2503, --2505,-2508,-8160], -[1,3,9326], -[0,0,9327,9328,4], -[0,-3136,-3037,-1415,-2080,-2127,-2375,-2410,-2476,-2477], -[0,-2476,-2410,-11313], -[1,3,9330], -[0,9331,9332,7,5], -[0,-3194,-14411,-14357,-14412,-679,-1460,-14378,-1588,-1651,-14413,-1852,-1864,-6569,-2654,-2981,-14414,-2548], -[0,-47,-14415,-3983,-350,-351,-3561,-3266,-12959,-14416,-8523,-8200,-4837,-7438,-14417,-3250,-4838,-10363,-14418,-731, --865,-14419,-7595,-1278,-1719,-14420,-2851,-2125,-2127,-2142,-2892,-2391,-2466,-2476], -[1,3,9334], -[0,9335,9336,7,9], -[0,-1284,-1543], -[0,-527,-533,-549,-740,-1415], -[1,3,9338], -[0,9339,0,9340,4], -[0,-14421,-1297], -[0,-2476,-3116], -[1,3,9342], -[0,262,9343,7,8], -[0,-2476,-1415,-668,-999,-6828,-932,-2127,-2177,-1004,-2501,-910,-1077,-767,-1978,-2468,-533,-778,-2410,-2481,-23,-3037, --534,-14422,-2484,-40,-7438,-2082,-6429,-2140,-2253,-3561,-14399,-2504,-2506,-350,-740,-351], -[1,3,9345], -[0,9346,0,9347,5], -[0,-14423], -[0,-2444,-1819,-14424,-1076,-2487,-14425], -[1,3,9349], -[0,9350,9351,7,4], -[0,-8566,-7955,-8891,-1645], -[0,-3136,-3037,-1107,-1415,-1623,-2125,-2375,-2410], -[1,3,9353], -[0,220,9354,9355,4], -[0,-86,-3307,-633,-720,-796,-1344,-1415,-2416], -[0,-2489,-4038,-2006,-1384], -[1,3,9357], -[0,9358,0,9359,8], -[0,-14426,-1646], -[0,-2444,-3590,-1076,-6999], -[1,3,9361], -[0,9362,9363,9364,6], -[0,-9501,-633,-679,-6369,-14427,-2347,-2546], -[0,-627,-1650,-2239,-2322,-2416,-14428], -[0,-633,-10362,-2490,-4161,-7641,-4865], -[1,3,9366], -[0,9367,123,9368,4], -[0,-13012,-10837,-510,-14429,-13017,-14430,-13025,-13026,-14431,-14432], -[0,-13039,-1818,-1691,-6321,-2071,-1671,-14433,-2492,-2157,-13042], -[1,3,9370], -[0,9371,9372,9373,8], -[0,-501,-510,-1548,-1650,-1980,-2105,-14434], -[0,-14435,-664,-665,-714,-7743,-1004,-1022,-1168,-14436,-1197,-1212,-1231,-1296,-1336,-13334,-1405,-1654,-14437,-1722, --14438,-2150,-14439,-14440,-14441,-2425,-2446,-2550], -[0,-3634,-4864,-11468,-12350,-11467], -[1,3,9375], -[0,9376,9377,9378,4], -[0,-14442,-14443,-14444,-14445,-14446,-14447,-14448,-14449,-14450,-14451,-14452,-14453,-14454,-14455,-14456,-14457,-14458], -[0,-14459,-1415,-932,-14460,-4271,-2375,-1942,-589,-2410,-3136,-1422,-3268,-14461,-958,-8378,-940,-14462,-428,-14463,-427], -[0,-14464,-7485,-3816], -[1,3,9380], -[0,9381,194,9382,8], -[0,-14465,-14466,-597,-636,-14467,-14468,-14469,-14470,-14471,-14472,-2550], -[0,-2494,-3673,-687,-14473,-4270], -[1,3,9384], -[0,9385,9386,7,11], -[0,-8231,-426,-4049,-14474,-14475,-14476,-461,-14477,-635,-14478,-909,-14335,-982,-997,-8610,-1119,-11677,-8562,-1641, --9548,-2168,-2321,-2335,-12982,-2510], -[0,-23,-41,-50,-13541,-14479,-8608,-4035,-3136,-3713,-14480,-3037,-14481,-14482,-534,-14483,-14484,-711,-753,-774,-778, --807,-922,-3068,-932,-6929,-1041,-1067,-1110,-14485,-1322,-1344,-1405,-1415,-8950,-1417,-1418,-1421,-1424,-1455,-1460, --1521,-1522,-1534,-1548,-1549,-1623,-14486,-1643,-8913,-1733,-1788,-1806,-8436,-1942,-1950,-1974,-9720,-2000,-2006,-2019, --14487,-2090,-4242, --2095,-2098,-2101,-2125,-5508,-2205,-2269,-2275,-2334,-2344,-2354,-2362,-2376,-2410,-2427,-2437,-14488,-14489,-2503, --14490,-2549], -[1,3,9388], -[0,9389,9390,9391,10], -[0,-2531,-2213,-461,-1810,-811,-719,-462,-1863,-1321,-930,-13410], -[0,-824,-664,-1168,-1415,-1652,-932,-1111,-1940,-753,-784,-1889,-2501,-1044,-1978,-682,-778,-1174,-1653,-2437,-23,-667, --2503,-518,-528,-534,-1566,-2275,-44,-1565,-14491,-1908,-9422,-40,-14492,-2505,-41,-540,-969,-14493,-2335,-14494,-14495, --38,-33,-3376], -[0,-2501,-4161,-14496,-3209,-8799,-9845,-14497,-12942,-14498,-7067], -[1,3,9393], -[0,9394,9395,9396,10], -[0,-914,-2068,-713,-719,-1381,-769,-1363,-2508,-14499,-5594,-11676,-13410,-14500], -[0,-14501], -[0,-2501,-687,-3108,-3551,-7882,-3578], -[1,3,9398], -[0,9399,9400,9401,9], -[0,-1623,-713,-1641,-1800,-1997,-2168], -[0,-1501,-1313,-1415,-999,-1344,-774,-932,-3122,-729,-825,-1004,-1030,-1110,-2501,-1942,-767,-823,-2293,-21,-190,-204, --533,-2410,-23,-3037,-1041,-1534,-1771,-1045,-5039,-3617,-86,-965,-3560,-14502,-2251,-40,-4835,-3713,-14503,-959,-960, --958,-6929,-978,-940,-967,-3748,-3307], -[0,-2501,-5401,-3113], -[1,3,9403], -[0,9404,9405,7,9], -[0,-2531,-1805,-12860,-13318,-1004,-13074,-679,-4204,-713,-11121,-3727,-724,-1119,-2186,-2168,-14504,-13386,-14505,-3617, --14506,-14507,-14508,-14509,-1338,-2504,-731,-12962,-14510], -[0,-1313,-1415,-1521,-461,-999,-1344,-14511,-1623,-774,-932,-1610,-2125,-729,-753,-2501,-1942,-1978,-2293,-21,-533,-778, --1336,-2410,-23,-3037,-1522,-1534,-1771,-2503,-534,-2275,-2230,-4356,-2508,-44,-86,-965,-2062,-2817,-3560,-2251,-40, --4835,-8477,-2411,-3732,-4035,-959,-960,-1331,-5474,-32,-14512,-7716,-958,-6929,-940,-1419,-38,-3307,-5585], -[1,3,9407], -[0,9408,9409,9410,5], -[0,-2269,-1320,-14509], -[0,-1788,-1654,-2210,-932,-1004,-2501,-1942,-2293,-967,-2504], -[0,-2501,-6211,-12517,-3551,-14513,-14514,-5401,-1004], -[1,3,9412], -[0,9413,9414,7,5], -[0,-2321,-2510], -[0,-366,-3037,-3046,-14515,-3750,-748,-824,-932,-14516,-948,-1041,-1344,-1534,-1626,-1939,-1942,-14517,-2006,-2275,-2387, --2410,-2469,-2501,-2508], -[1,3,9416], -[0,9417,9418,9419,5], -[0,-1055,-9087,-3415], -[0,-1344,-2387,-14518,-2501,-1942,-2410,-14519,-426], -[0,-2501,-1631], -[1,3,9421], -[0,0,9422,9423,5], -[0,-664,-932,-958,-1654,-1658,-1705,-2501], -[0,-2501,-5757,-3966,-4161,-14520], -[1,3,9425], -[0,0,9426,9427,5], -[0,-1415,-932,-1110,-2501,-1405,-1942,-756,-190,-2231,-2410,-3136,-965,-3560,-959,-960,-12916,-958,-6929,-978,-940,-967, --3748], -[0,-2501,-2231], -[1,3,9429], -[0,9430,0,9431,4], -[0,-1119,-769,-2359,-1860], -[0,-9711,-11891], -[1,3,9433], -[0,9434,9435,9436,8], -[0,-642,-812,-922,-14521,-13490,-14522], -[0,-641,-1168,-1224,-1453,-1452,-2322], -[0,-2512,-6224,-9005,-14523,-14524,-5737,-14525,-8841,-3844,-3323], -[1,3,9438], -[0,9439,9440,9441,5], -[0,-14526,-14527,-14528,-14529,-14530,-14531,-14532,-14533,-14534,-14535,-14536,-14537,-812,-929,-14538,-14539,-14540, --14541,-14542,-14543,-14544,-1640,-1801,-14545,-1976,-10570,-14546,-1997,-10576,-13357,-14547,-13729,-14548,-14549, --14550,-14551,-14552,-14553,-14554], -[0,-23,-32,-3367,-40,-14555,-468,-14556,-10575,-14557,-571,-14558,-640,-14559,-771,-14560,-932,-943,-958,-965,-968,-1045, --14561,-1834,-14562,-1985,-2151,-2174,-2187,-6390,-8573,-2320,-2322,-2335,-6391,-2501,-2503,-14563], -[0,-14564,-14565,-867,-14566,-14567,-14568,-14569,-9292,-14570,-14571,-14572,-6471,-14573,-2513], -[1,3,9443], -[0,9444,9445,9446,10], -[0,-596,-1696], -[0,-11836,-2319], -[0,-3708,-14574,-14575], -[1,3,9448], -[0,9449,9450,7,5], -[0,-1004,-1758,-2424], -[0,-710], -[1,3,9452], -[0,0,9453,7,4], -[0,-664,-1471,-1654,-932,-2127,-1942,-1474,-1482,-516,-1962,-14576,-1475,-1477,-1487,-1479,-5993,-8365], -[1,3,9455], -[0,0,9456,9457,6], -[0,-2493,-1107,-14577,-3691,-1460,-14578,-1452,-1650,-14579,-1813,-589,-14580,-2416,-633,-1963,-14439], -[0,-14581,-14582,-6306,-1961,-5923,-6307,-6308,-2517,-510,-6235,-11153], -[1,3,9459], -[0,9460,29,7,5], -[0,-14583], -[1,3,9462], -[0,0,9463,9464,10], -[0,-2778,-1446,-1654,-1666,-14584,-14585], -[0,-7084,-11722], -[1,3,9466], -[0,9467,9468,9469,8], -[0,-14586,-5758,-510,-1399,-14587,-14588,-2062,-7967,-2249,-8879,-2522], -[0,-21,-23,-40,-14589,-3037,-14590,-509,-14591,-932,-14592,-1415,-2125,-2240,-13361,-2347,-14593], -[0,-2520,-3444,-5545,-11989,-8948,-648,-1867,-1577,-3674,-4055,-5827], -[1,3,9471], -[0,9472,9473,9474,6], -[0,-14594,-1793,-8879,-2522], -[0,-14595,-14596,-664,-932,-966,-1654,-2125,-3708], -[0,-2520,-14597,-14598,-14599], -[1,3,9476], -[0,9477,9478,9479,4], -[0,-14587,-2062,-8879], -[0,-3037,-509,-526,-558,-821,-932,-14589,-1654,-1788,-2125,-14593], -[0,-2520,-3443,-14600], -[1,3,9481], -[0,9482,9483,9484,4], -[0,-14601,-1107,-1548,-14602,-2347,-14603], -[0,-664,-1077,-1405], -[0,-622,-5897,-4633,-9405,-11729,-3015], -[1,3,9486], -[0,0,88,9487,11], -[0,-14604,-14605,-6722,-14606,-14607,-14608,-14609,-5554,-10781,-2524,-12439,-4001], -[1,3,9489], -[0,0,31,9490,8], -[0,-10781,-4001,-11315,-3276,-6787], -[1,3,9492], -[0,9493,9494,9495,9], -[0,-7141,-1948,-4701,-2510,-14610], -[0,-3037,-3046], -[0,-14611,-14612,-2501,-14613,-6491,-14614,-14615,-14616], -[1,3,9497], -[0,9498,9499,9500,4], -[0,-482,-2267,-2269], -[0,-519,-668,-756,-3607,-1788,-2384,-2541], -[0,-4001,-14604,-2525,-14617,-14618,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513, --5550,-2547,-1573,-5545,-3958,-5554], -[1,3,9502], -[0,9503,29,9504,6], -[0,-8143,-2202], -[0,-14619,-14620], -[1,3,9506], -[0,0,9507,9508,4], -[0,-589,-642,-932,-940,-967,-1110,-1654,-1788,-1942,-13490], -[0,-14621,-14622,-14525,-14623,-14624,-3509], -[1,3,9510], -[0,9511,9512,9513,9], -[0,-7334,-615,-668,-674,-812,-14625,-1400,-1403,-1792,-3633,-14626,-14627], -[0,-756,-1405,-1654,-1657,-6810,-2125,-2210,-2250], -[0,-3690,-674,-14628,-6596,-7534,-3578], -[1,3,9515], -[0,9516,9517,9518,8], -[0,-1109,-14629,-14630,-2546], -[0,-1065,-1939,-2320,-2322], -[0,-2533,-1334,-2540,-3120,-633], -[1,3,9520], -[0,9521,9522,9523,6], -[0,-8696,-14631,-14632,-10781,-14633,-14634,-14635], -[0,-7746,-461,-1449,-1654,-2210,-932,-14636,-600,-879,-719,-2410,-3037,-14637,-14638,-957,-7894,-14639], -[0,-11592,-11593,-2534,-14640,-8787,-8713,-788,-14641,-14642,-14643,-10780,-9133], -[1,3,9525], -[0,9526,9527,9528,4], -[0,-2165], -[0,-527,-534,-558,-11550,-632,-14644,-14645,-13841,-708,-756,-767,-932,-14646,-1405,-1412,-1415,-1417,-14647,-1753,-1771, --1955,-2410,-14648,-2490,-2501], -[0,-14649,-6597,-3756,-4182,-4055,-14650,-14651,-14652,-14653,-14654,-8531,-8532,-2536,-2537,-6408,-8530,-14655,-9307, --5845,-14656,-14657,-14658,-1838,-3215,-6747], -[1,3,9530], -[0,9531,9532,9533,8], -[0,-2165,-2538], -[0,-756], -[0,-6597,-4055], -[1,3,9535], -[0,9536,219,7,4], -[0,-1309,-1435,-14659], -[1,3,9538], -[0,0,192,9539,4], -[0,-6597,-2538], -[1,3,9541], -[0,0,9542,9543,4], -[0,-1415,-2555,-14660,-932,-1753,-14661,-1942,-1100,-1771,-953,-7055,-940,-967], -[0,-5387,-5092,-6597,-3215,-3214,-14662,-14663], -[1,3,9545], -[0,0,0,9546,4], -[0,-2533,-5998], -[1,3,9548], -[0,9549,9550,9551,4], -[0,-1630,-506,-932,-1111,-1110,-1942,-1099,-2400,-1639,-755,-8275,-1849,-1101,-965,-11813,-950,-2411,-14664,-968,-978, --5918,-940,-9869,-8339,-967,-3686,-3748,-428,-14014,-9486,-8230], -[0,-1763,-519,-999,-1344,-815,-5917,-1534,-3330,-86,-6630,-4036,-1768,-1945,-3307,-7357], -[0,-5732,-687,-2541,-8193,-8196,-8197,-707,-8169,-5553,-7148,-8170,-1452,-8171,-932,-5874,-8172,-2250,-8173,-7440,-7144, --8174,-7840,-8175,-5493,-3214,-2410], -[1,3,9553], -[0,0,9554,9555,4], -[0,-4733,-920,-14665,-1654], -[0,-2542,-6597], -[1,3,9557], -[0,9558,9559,9560,10], -[0,-3345], -[0,-21,-23,-14666,-38,-40,-14667,-535,-14668,-14669,-633,-932,-1412,-1451,-1788,-14670], -[0,-5569,-5570,-14671,-4112], -[1,3,9562], -[0,9563,9564,9565,4], -[0,-719,-2858], -[0,-1788,-812,-1654,-932,-756,-2416,-633], -[0,-8472,-2544,-7723,-14242,-3962,-7107,-5559,-6422,-7724,-2451,-3264,-6138,-14672], -[1,3,9567], -[0,0,9568,9569,4], -[0,-14673,-469,-1872,-2153,-2535], -[0,-14674,-14675,-14676,-14677,-14678,-4125,-14679,-3552], -[1,3,9571], -[0,0,31,9572,10], -[0,-1015,-1631,-6792,-6696,-7208,-5839], -[1,3,9574], -[0,0,9575,9576,5], -[0,-3983,-3035,-3198,-14680,-3617,-14681,-3036,-4647,-3621,-3037,-14682,-3046,-4204,-427,-428,-664,-767,-821,-932,-960, --1004,-11616,-1107,-1449,-1654,-1689,-1741,-1788,-2233,-2234,-2376,-2410,-2443,-2501,-2503,-2531,-14683], -[0,-687,-3958,-4000,-11564,-5550,-8905,-3770,-14684,-3974,-3975,-5561,-13861,-2547], -[1,3,9578], -[0,0,9579,9580,8], -[0,-1415,-2387,-932,-2127,-1942,-190,-533,-1023,-2410,-23,-3136,-3037,-1426,-40,-2411,-3326,-3561,-940,-3267,-14685,-3412], -[0,-14686,-3215,-3270], -[1,3,9582], -[0,9583,9584,9585,10], -[0,-1107,-503], -[0,-589,-6398,-1414], -[0,-2548,-4055,-14687,-14688], -[1,3,9587], -[0,9588,9589,235,5], -[0,-701,-10415,-5505,-2267,-10751,-2551], -[0,-32,-42,-3035,-3621,-3037,-427,-14689,-652,-664,-668,-10480,-767,-769,-932,-967,-1166,-11831,-1654,-2125,-2410,-2518, --14690], -[1,3,9591], -[0,0,9592,9593,4], -[0,-32,-42,-3035,-3621,-3037,-427,-428,-652,-664,-767,-932,-1166,-1654,-1978,-2125,-2184,-2253,-2410], -[0,-6748,-3215,-2550,-3957,-687,-6747,-5829,-4377,-6748], -[1,3,9595], -[0,9596,9597,7,4], -[0,-14691,-567,-651,-656,-668,-10506,-719,-14692,-812,-10659,-834,-1105,-1371,-1384,-5894,-1526,-14693,-1645,-1650,-1728, --1733,-1796,-7772,-2059,-14694,-2105,-14695,-2125,-14696,-2177,-2270,-2323,-2325,-2441,-10523], -[0,-527,-528,-533,-534,-6085,-555,-559,-14697,-14698,-560,-562,-572,-932,-14699,-7748,-14700,-951,-14701,-956,-14702,-969, --1059,-1168,-1174,-1232,-1237,-1266,-1268,-1415,-1455,-1661,-2330,-2501], -[1,3,9599], -[0,0,0,9600,8], -[0,-2552,-2554,-3590,-5550,-1764,-13499], -[1,3,9602], -[0,9603,9604,9605,11], -[0,-5822,-11280], -[0,-599], -[0,-2432,-5408,-5827,-5409,-6656], -[1,3,9607], -[0,9608,9609,263,5], -[0,-14703,-14704,-14705,-14706,-14707,-506,-668,-719,-812,-999,-14708,-1111,-14709,-8802,-1549,-14710,-14711,-2177,-2218, --2430,-14712], -[0,-3198,-3164,-3037,-3199,-14713,-652,-757,-932,-14714,-1077,-1446,-1942,-1945,-2125,-2210,-14715,-2269,-2410,-9011, --9010], -[1,3,9611], -[0,9612,9613,263,6], -[0,-668,-812,-999,-2177,-1646,-1549,-9444,-2205,-2343,-1456,-14711,-1514,-14716,-3609,-3164,-14705], -[0,-888,-1446,-2210,-2469,-757,-1376,-1942,-2400,-4370,-2410,-9010,-3198,-4372,-3199,-9011,-14713,-5686,-14703,-12968, --14706,-4049,-2556,-3664,-1945], -[1,3,9615], -[0,0,14,9616,4], -[0,-2558,-14717,-14718,-687,-1965,-5874,-3962,-3953,-14719,-14720,-1838,-14721], -[1,3,9618], -[0,9619,9620,9621,11], -[0,-1630,-1805,-668,-2562,-1548,-1040,-10325,-14722,-14723,-9764,-14724,-14725,-728,-769,-14726,-10388,-5895,-14707,-6715, --14727,-14703,-14728,-3609,-2433,-14729,-2556], -[0,-652,-2541,-1722,-2210,-14714,-1110,-756,-14730], -[0,-5732,-687,-3577,-3113,-7646,-7641,-3578,-3673,-3970,-9471,-3976,-3262,-3960,-3994,-3871], -[1,3,9623], -[0,0,9624,9625,4], -[0,-14731,-479,-519,-668,-689,-713,-1496,-10962,-1863,-2384,-2541], -[0,-712,-5535,-714,-3974,-4000,-687,-2265,-5514,-5553,-3770,-3975,-5538,-5550,-2547,-1573,-5545,-3958,-5554], -[1,3,9627], -[0,9628,101,9629,6], -[0,-719,-1376], -[0,-2561,-3690,-3844,-3445], -[1,3,9631], -[0,9632,9633,9634,4], -[0,-1630,-668,-688,-2528,-481,-2269,-482,-2267,-14732], -[0,-2541,-1654], -[0,-5732,-687,-3976,-2559,-14733,-14734,-6335,-12665,-5514], -[1,3,9636], -[0,218,9637,9638,5], -[0,-2198,-2177,-1654], -[0,-14735,-2563,-14736,-14737,-14738,-5269,-14739,-6249], -[1,3,9640], -[0,0,0,9641,11], -[0,-2410,-4058,-3926,-8038,-8910], -[1,3,9643], -[0,9644,9645,9646,6], -[0,-523,-1004,-1851,-2564], -[0,-3731,-3035,-4269,-3732,-14740,-3617,-14741,-3621,-14742,-617,-664,-665,-720,-724,-744,-796,-932,-14743,-1380,-1654, --1676,-1764,-1942,-2251,-2379,-2410], -[0,-2564,-1004,-3690,-14744,-14745,-3445], -[1,3,9648], -[0,9649,9650,9651,10], -[0,-567,-615,-812,-13317,-1351,-1449,-1548,-1640,-1681,-2105,-2364,-2531], -[0,-526,-528,-555,-558,-617,-744,-824,-932,-1004,-1168,-1174,-1197,-11777,-1235,-1252,-1266,-1654,-1676,-1687,-12720, --2111], -[0,-4004,-3636,-3634,-9249,-4679,-4683,-14387,-11878,-4865,-3264,-5177,-5092,-775,-3214,-4868,-5998,-10640,-14746], -[1,3,9653], -[0,0,9654,7,4], -[0,-2934,-2953,-14747,-9705,-3037,-14748,-615,-10877,-1419,-1421,-1415,-1654,-1660,-1412,-2234,-1413,-10034,-2153,-2314, --2387,-2469], -[1,3,9656], -[0,9657,9658,9659,8], -[0,-14749,-7334,-633,-8958,-14750,-714,-719,-724,-742,-812,-1004,-14751,-5456,-14752,-5457,-1296,-1304,-1336,-5458,-14753, --5459,-1548,-1810,-1820,-14754,-2194,-14755,-7222,-2291,-14756,-8573,-2491,-2493,-2546,-2549,-14757], -[0,-465,-14758,-14759,-1654,-1860,-2322,-2347,-14760], -[0,-2568,-3634,-4865,-1989,-1654,-5471], -[1,3,9661], -[0,9662,40,9663,5], -[0,-293,-295,-297,-14761,-832,-2177,-2369,-2387], -[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340,-4343,-4347], -[1,3,9665], -[0,9666,40,164,6], -[0,-668,-2387,-297,-2177,-1110,-293,-7356,-429,-14761,-8167,-5201], -[1,3,9668], -[0,9669,40,9670,4], -[0,-2387,-297,-2177,-1427,-1645,-293,-1863,-4023,-1426,-2551,-4018,-11751,-4019,-1352,-14761], -[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-14762,-4340,-4347], -[1,3,9672], -[0,9673,9674,9675,9], -[0,-2387,-297,-2177,-293,-295,-2569,-14761], -[0,-1787,-2257], -[0,-4333,-4334,-4335,-14763,-4339,-4340,-4343,-4347], -[1,3,9677], -[0,9678,9679,9680,11], -[0,-14764,-14765,-2387], -[0,-14766,-14767,-4745,-2344], -[0,-14768,-2006,-14769,-14770,-5176,-9547,-7581,-12543,-14771,-14772,-14773], -[1,3,9682], -[0,9683,9684,9685,11], -[0,-14774,-2634,-2006,-2019,-14775,-2170,-14776], -[0,-3037,-3040,-3052,-932,-10813,-1889,-2318,-2410], -[0,-5375,-770,-13055,-5375,-3634,-8576,-13056,-3551,-13057,-13058,-5376,-13059,-11152,-5150], -[1,3,9687], -[0,9688,0,9689,4], -[0,-786,-1967,-44,-3772,-3773,-3765], -[0,-2006,-3159,-4217,-906], -[1,3,9691], -[0,9692,190,9693,11], -[0,-6789,-6790,-14777], -[0,-3214,-1446,-1838,-10855,-856], -[1,3,9695], -[0,9696,9697,264,4], -[0,-44,-3345], -[0,-3136,-1415], -[1,3,9699], -[0,9700,9701,9702,4], -[0,-44,-14778,-1967,-2029,-2387], -[0,-3192,-6093,-3394,-3794,-2685,-14779,-8471,-261,-3326,-350,-405,-406,-407,-14780,-409,-410,-3136,-3140,-3040,-427,-428, --3766,-14781,-14782,-639,-757,-767,-795,-932,-3071,-969,-1059,-14783,-14784,-5111,-8158,-1771,-1940,-4130,-2006,-2019, --2029,-2034,-2052,-2184,-2253,-2410], -[0,-14785,-2006,-6701,-14786,-14787,-3823,-6750,-12605,-14788,-4666,-14789,-12606,-14790], -[1,3,9704], -[0,90,0,9705,9], -[0,-4665,-4666,-5248,-10111,-775,-5564,-14791,-3962,-3214,-3756,-14792,-14793,-12898,-14794,-14795,-1889,-3583,-14796, --14797,-6750,-12123,-14798,-2363,-14799], -[1,3,9707], -[0,9708,9709,9710,9], -[0,-2857,-14800,-14801,-482,-14802,-1460,-2400,-14803], -[0,-14804,-3311,-3312,-14805,-14806,-14807,-2410], -[0,-14808,-4187,-2444,-3966,-4865,-3445,-3100,-14809,-14810], -[1,3,9712], -[0,0,0,9713,8], -[0,-3276,-7148,-14811,-7485,-4165,-4182,-14812,-14813,-14814,-7198,-14815], -[1,3,9715], -[0,9716,9717,264,5], -[0,-23,-12490,-44,-3345,-14816,-14817,-14818,-14819,-2577,-14820,-14821,-14822,-160,-14823,-2695,-14824,-4785,-14825, --2699,-366,-3735,-9947,-14826,-440,-14827,-518,-534,-14828,-5323,-635,-668,-719,-753,-778,-779,-865,-866,-1077,-1107, --1122,-14829,-1123,-1331,-1455,-1469,-1548,-1643,-1666,-14830,-1729,-1805,-1889,-1896,-1897,-1906,-1908,-12060,-1942, --1966,-6387,-2015,-2041,-2144, --5977,-2193,-2195,-2275,-14831,-2335,-14832,-2435,-2466,-11710,-2501,-2502,-2505,-5628], -[0,-14833,-3758,-3048,-3044,-14834,-4201,-6630,-13186,-5129,-1623,-1683,-1978,-2125], -[1,3,9719], -[0,34,9720,9721,5], -[0,-234,-350,-4062,-351,-3561,-3043,-3136,-3040,-427,-428,-3807,-748,-915,-932,-940,-958,-967,-969,-1415,-1419,-1449, --1788,-1942,-2006,-2019,-2125,-2127,-2130,-4063,-4064,-2142,-2144,-2233,-2375,-2376,-2379,-2387,-2402,-2501,-2503,-2505, --238,-240], -[0,-9975,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], -[1,3,9723], -[0,34,9724,9725,4], -[0,-23,-40,-42,-4066,-3136,-3037,-427,-428,-14835,-14836,-14837,-441,-4838,-5593,-753,-767,-932,-940,-958,-14838,-980, --1415,-1419,-1942,-2125,-2127,-2128,-2130,-2142,-2144,-14839,-2375,-2387,-2402,-2410,-2476,-238], -[0,-2476,-3944,-14840,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], -[1,3,9727], -[0,34,9728,9729,8], -[0,-23,-40,-42,-3035,-3136,-3621,-3037,-427,-428,-14835,-14836,-14841,-14837,-441,-4838,-5593,-664,-767,-932,-940,-958, --14838,-980,-1771,-1942,-2125,-2127,-2128,-2130,-2142,-2144,-14839,-14842,-2387,-2402,-2410,-2476,-238,-2584], -[0,-2476,-3944,-14840,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060,-5177,-775,-2316], -[1,3,9731], -[0,9732,9733,9734,5], -[0,-5334,-9596,-9582,-1839,-5358,-6648], -[0,-4251,-3037,-652,-12326,-1942,-2094,-2100,-7699,-2399,-2400,-2410,-7669,-2541], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-1838,-14843], -[1,3,9736], -[0,0,9737,9738,4], -[0,-932,-1654,-1788,-2210], -[0,-2254,-14844,-14845,-13497,-14846,-3445], -[1,3,9740], -[0,0,0,9741,4], -[0,-14847,-14848,-14849,-14850,-14851,-14852,-14853,-14854,-856,-1599], -[1,3,9743], -[0,9744,9745,9746,6], -[0,-9929,-9936,-14855,-812,-9927,-1371,-1875,-2240,-2347,-2387,-2555], -[0,-3986,-3988,-3470,-3471,-3198,-9943,-11697,-3136,-3037,-11337,-9941,-7836,-8497,-932,-1415,-1942,-2174,-2375,-2410], -[0,-5271,-5270,-687,-3162,-3994,-9946,-5269], -[1,3,9748], -[0,9749,0,9750,5], -[0,-5334,-14856,-12767,-1293,-14857,-5356,-5358], -[0,-9589,-3264,-14857,-14075,-1599,-10684,-10918,-3862,-2083,-12745,-2093,-14858,-2427], -[1,3,9752], -[0,9753,9754,9755,5], -[0,-1281,-2297], -[0,-519,-708,-2410,-2541], -[0,-10606,-3974,-14859,-687,-6659,-7440,-5514,-5560,-4000], -[1,3,9757], -[0,9758,9759,9760,11], -[0,-8609,-12518], -[0,-2832,-11432,-3615,-3244,-190,-3983,-367,-7043,-406,-407,-409,-14860,-3136,-3037,-3040,-12591,-427,-428,-9723,-932, --940,-12520,-969,-970,-976,-1110,-1344,-1415,-1419,-1534,-2634,-1942,-2006,-2019,-2965,-2125,-2177,-2410,-2411], -[0,-2592,-2006,-3322,-2105,-3324,-4213], -[1,3,9762], -[0,0,9763,9764,5], -[0,-3037,-2228,-2229,-2391,-2410], -[0,-2410,-8038,-3694,-9069,-7304,-8425,-6582,-7534,-4058,-3445,-3577,-4055,-6435,-640,-5835,-6421,-10227,-6233,-12343, --14861,-14862], -[1,3,9766], -[0,9767,9768,9769,4], -[0,-14863,-14864,-14865], -[0,-25,-46,-3983,-932,-1452,-1547,-1654,-2111,-8325,-2384,-2416], -[0,-14233,-14866,-4865,-6899,-1819,-14867,-13626,-2594,-14868,-14869,-14870,-14871,-14872,-14873,-14874], -[1,3,9771], -[0,0,9772,9773,4], -[0,-1449,-2105,-2106], -[0,-3264,-9703,-9566], -[1,3,9775], -[0,9776,9777,9778,4], -[0,-1297,-14875,-9684,-2267,-14876,-14877,-14878,-6467,-14879,-14880,-14881,-14882,-14883,-14884,-14885,-14886,-14887, --14888,-14889,-9154,-14380,-14890,-14891,-14892,-8965,-14893,-14894,-14895], -[0,-652,-999,-2210,-14896,-581,-932,-825,-14897,-1098,-1942,-367,-749,-767,-2293,-2091,-10402,-2410,-3037,-14898,-14899, --4372,-3906,-11098,-14900,-4203,-14901,-14902,-14903,-14904,-14905,-14906,-13409,-14907,-14908,-4646], -[0,-14909,-3161,-13039], -[1,3,9780], -[0,9781,9782,9783,4], -[0,-14910,-14911,-865,-1461,-1729,-4389], -[0,-14912,-14913,-3037,-4201,-932,-7060,-1942,-2125,-2392,-2410,-2469], -[0,-4344,-7547,-4165], -[1,3,9785], -[0,9786,9787,9788,8], -[0,-812,-2193,-2387,-2550,-1077,-719,-1729,-14914,-9929,-1734,-9931,-14915], -[0,-1763,-1415,-1344,-2331,-932,-2125,-2375,-1942,-2410,-3136,-3037,-3198,-11337,-8890,-50,-3048,-4201,-14916,-3986,-3988, --427], -[0,-1386,-3996,-14917,-3162,-5269,-3167,-14918], -[0,25,9790], -1753574400000, -[1,3,9792], -[0,9793,0,93,4], -[0,-682,-1384,-1967,-1993,-2006,-2019,-2029,-2489], -[1,3,9795], -[0,9796,0,9797,10], -[0,-2387,-14920,-14921,-14922], -[0,-5818,-1122,-3844,-3161,-3966,-3967,-2410], -[1,3,9799], -[0,9800,9801,221,5], -[0,-9933,-14923,-9938,-9931,-9929,-9934,-9935,-9932,-9937,-9936,-668,-812,-834,-9927,-9925,-1548,-1805,-3547,-8874,-2177, --2240,-9926,-9422,-2291,-2323,-2387], -[0,-3198,-9939,-9943,-3136,-3044,-3037,-3199,-9941,-4202,-5673,-1415,-1417,-1534,-2125,-2231,-2375,-2410], -[1,3,9803], -[0,34,9804,9805,5], -[0,-14924,-14925,-14926,-8250,-7,-8,-9,-10,-427,-428,-519,-748,-932,-940,-958,-967,-14927,-1788,-1942,-2125,-2153,-2234, --2387,-2402,-2410,-238], -[0,-475,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], -[1,3,9807], -[0,9808,9809,9810,4], -[0,-8547,-1548], -[0,-3037,-427,-428,-932,-940,-958,-967,-1942,-2125,-2127,-2130,-2142,-2144,-2387,-2402,-2410,-238], -[0,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], -[1,3,9812], -[0,9813,9814,65,5], -[0,-712,-2544], -[0,-4597,-2391,-2423], -[1,24,9816], -[0,25,9817], -1738454400000, -[1,3,9819], -[0,9820,9821,9822,4], -[0,-44,-2965], -[0,-14928,-2006,-932,-708,-2379,-1942,-767,-2019,-14929,-2410,-5111,-3040,-14784,-3052,-14930,-2052,-7465,-428,-3081,-427], -[0,-3634,-2006,-3322,-5119,-4868], -[1,3,9824], -[0,9825,0,9826,8], -[0,-14931,-14932,-14933], -[0,-10543,-9745,-11796,-9753,-6955,-9030,-2322,-14934,-4132,-14935,-3277,-14647,-11069,-6129,-11037,-5880,-7375,-14936, --14937,-6656,-14938,-14939,-10545,-3018,-3210,-14940,-1015,-3756,-3116,-14770,-6960,-11113,-12877,-4058,-14941,-14942, --6695,-14769,-12869,-6324,-4213,-2564,-6052,-9772,-6821,-5998,-8988,-14943,-11582,-14944,-6511,-5837,-1985,-3103,-14945, --14946,-5550,-1631,-1000,-8808,-8127,-3590,-1959, --7333,-2487,-7420,-5856,-9571,-6011,-3921,-10838,-14947,-2265,-11784,-6953,-4111,-14948,-10366,-9054,-6510,-3612,-11685, --6787,-11798,-12255,-14949,-7863,-14950,-12343,-5176,-719,-3272,-5831,-7373,-14773,-8411,-9027,-11822,-6849,-6962,-7199, --3690,-5846,-687,-14604,-14951,-7856,-7581,-14952,-5827,-14953,-3215,-5195,-3911,-14954,-2387,-3015,-9980,-6281,-4784, --14955,-6548,-10547,-6951,-6964,-6599,-13466, --10527,-11866,-5924,-1435,-13003,-1463,-8038,-3578,-5514,-4782,-7558,-5572,-8410,-4110,-6120,-6968,-503,-14956,-14957, --6434,-6958,-6917,-3258,-6107,-1640,-3994,-1471,-13469,-12991,-14958,-3186,-5272,-14959,-14960,-6233,-12342,-8910,-10537, --581,-6187,-3206,-5112,-2368,-6932,-7283,-14961,-11872,-11791,-3931,-6970,-6845,-510,-5874,-14962,-3771,-4113,-11792, --14963,-3815,-11112,-6717,-7331,-8027,-3634, --8163,-6977,-6280,-14964,-3322,-12020,-10549,-14965,-5210,-2547,-10544,-8108,-14966,-11153,-5092,-8989,-7822,-1361,-1415, --1412,-3481,-6370,-655,-3207,-2344,-6972,-8166,-11782,-7459,-1764,-770,-2059,-7091,-4053,-4792,-6946,-8412,-3582,-6508, --14967,-14968,-4795,-14969,-12893,-6506,-8164,-5554,-635,-6956,-682,-6557,-14970,-14622,-14971,-11070,-14972,-3930, --13770,-6987,-7334,-5842,-13468,-14525,-14973, --1080,-10539,-2518,-6947,-10440,-12892,-8132,-8421,-7404,-2451,-13467,-14974,-1961,-4142,-1122,-6966,-13234,-4679,-12883, --5549,-5395,-9918,-6971,-14975,-8996,-12543,-5829,-11797,-1810,-6655,-14976,-14977,-14978,-14979,-12888,-7370,-8616, --7237,-2319,-6748,-14980,-6439,-1076,-2074,-5569,-3173,-7230,-1983,-14981,-3770,-1993,-11793,-4107,-13465,-1039,-10413, --12437,-7303,-9173,-6989,-12990,-14982,-6978,-5553, --3270,-3185,-10330,-3217,-14983,-1030,-9172,-9917,-4055,-4665,-11821,-3324,-5563,-6784,-6965,-7421,-1359,-1654,-4676, --2105,-14984,-6545,-3175,-10541,-6130,-6957,-3276,-14985,-12025,-7200,-14986,-2489,-1666,-9261,-775,-6543,-7442,-12912, --13471,-14987,-4781,-13005,-615,-3966,-1449,-4115,-12889,-3925,-14988,-6654,-14989,-8388,-8472,-6948,-9048,-14624,-14772, --12512,-8806,-3975,-3209,-14990,-4783,-6975, --14991,-6509,-6444,-9847,-11867,-6985,-14992,-11639,-14993,-3926,-6188,-3162,-6555,-11049,-753,-3184,-14994,-664,-6986, --8128,-14995,-6131,-6852,-12435,-7372,-14996,-1573,-12021,-14997,-14998,-1456,-14999,-3923,-15000,-4134,-5562,-5101, --8047,-9826,-15001,-2525,-15002,-15003,-9577,-15004,-15005,-5396,-5208,-15006,-10548,-2114,-13872,-12438,-729,-7369, --5484,-6351,-8618,-714,-4117,-9572,-12885,-13858,-6983, --11820,-15007,-15008,-1047,-11997,-1342,-727,-15009,-5260,-15010,-8990,-4182,-8130,-6952,-518,-12878,-1986,-15011,-11817, --891,-1801,-6976,-5841,-11483,-7440,-15012,-15013,-6980], -[1,3,9828], -[0,0,9829,9830,4], -[0,-1452,-8171,-1654], -[0,-5514,-3264], -[1,3,9832], -[0,9833,9834,9835,5], -[0,-4372,-2210,-2387], -[0,-13198,-3698,-13201,-13202,-13204,-13205,-15014,-2402], -[0,-5817,-521,-3634,-4215,-8466,-15015], -[1,3,9837], -[0,0,9838,9839,8], -[0,-3561,-668,-15016,-1077,-1107,-1168,-1190,-15017,-2125,-2127,-2132,-2142,-2334,-2387,-2388,-2410], -[0,-3994,-4126,-15018,-15019,-3578,-5270,-11536,-3214,-2363,-15020,-3162,-752,-3862,-2494,-3588], -[1,3,9841], -[0,0,0,9842,5], -[0,-4000,-3162,-812], -[1,3,9844], -[0,9845,9846,9847,8], -[0,-617,-724,-812,-832,-5035,-996,-1496,-2213,-2564], -[0,-3983,-15021,-3171,-364,-3170,-365,-3865,-3330,-518,-803,-932,-940,-975,-1110,-1889,-1942,-1946,-2910,-2299,-2300, --2318,-2410,-2466,-2469], -[0,-3690,-3445,-1334,-2512,-2531,-3691,-3967], -[1,3,9849], -[0,0,9850,9851,6], -[0,-23,-40,-86,-3307,-518,-534,-632,-12427,-664,-15022,-699,-15023,-796,-15024,-1168,-15025,-1174,-15026,-15027,-1184, --1187,-1197,-1199,-1212,-1228,-1232,-1237,-1238,-1243,-1244,-1248,-15028,-1252,-1262,-1271,-15029,-1344,-15030,-1442, --1496,-1654,-1655,-15031,-4916,-1889,-1953,-2109,-2111,-2127,-2128,-3572,-3031,-15032,-2210,-4096,-15033,-2460,-15034, --2501,-7752], -[0,-775,-3754,-2162,-3756,-3576,-3575,-3161,-6334,-15035,-15036], -[1,3,9853], -[0,9854,9855,9856,9], -[0,-668,-15037], -[0,-15038,-3664,-1344,-1534,-1942,-2410,-2469], -[0,-687,-712,-714,-5535,-3958,-4000,-5538,-15039,-15040,-1573,-5545,-5550,-2265,-5553,-3770,-3974], -[1,3,9858], -[0,9859,9860,9861,8], -[0,-3776,-15041,-1606,-1967], -[0,-21,-23,-32,-5870,-26,-12490,-34,-12492,-3376,-3400,-3398,-3380,-40,-41,-15042,-3615,-3244,-190,-15043,-12687,-15044, --15045,-15046,-4749,-4758,-15047,-406,-407,-409,-15048,-410,-3136,-4961,-3037,-3040,-3052,-3804,-527,-533,-534,-8560, --15049,-4976,-15050,-684,-748,-749,-753,-767,-824,-932,-933,-940,-951,-958,-962,-967,-969,-970,-976,-1077,-1110,-15051, --1415,-4980,-1417,-1419,-15052,-1449,-1889,-1939,-1942,-1952,-2006,-2015,-2019,-2029,-15053,-2082,-2205,-2257,-2278, --15054,-2339,-15055,-13807,-2375,-2376,-2410,-2501,-2503,-2505], -[0,-2631,-15056,-15057,-3095,-3482,-4189,-3161,-2006,-4101,-15058,-3261,-15059,-15060,-15061,-15062,-4666,-15063,-15064, --15065,-712,-8038,-3999,-4684,-15066,-3160,-3477,-4727,-15067,-2278], -[1,3,9863], -[0,0,0,9864,4], -[0,-9681,-9681,-3264,-7153,-2435], -[1,3,9866], -[0,0,9867,9868,4], -[0,-15068,-1127,-1134,-1136,-1138,-1140,-1144,-1148,-1149,-15069,-1160], -[0,-14214,-14213,-15070,-15071,-3825,-4126,-6409,-12536,-13615,-1437,-8635,-3576,-3162], -[1,3,9870], -[0,9871,9872,254,11], -[0,-1889,-2694,-2279,-4007,-658,-6410], -[0,-2531,-502,-1683,-1816,-2323,-2564,-6842,-1107,-2178,-2444,-461,-2624,-651,-812,-1072,-1460,-12980,-507,-640,-649,-743, --997,-1401,-1699,-2066,-2177,-2334,-5034,-1047,-3447,-1827,-1958,-2501,-1977,-1999,-12981,-12955,-367,-4204,-719,-767, --1273,-11121,-10697,-9548,-1864,-2257,-12982,-15072,-5052,-5673,-12971,-12972,-778,-2745,-1336,-2773,-1354,-12977,-2231, --2269,-2343,-2410, --10052,-23,-237,-3036,-12967,-8559,-5900,-512,-2740,-724,-769,-1429,-2163,-12978,-2194,-6375,-12979,-3921,-47,-3872, --10098,-12956,-3269,-3198,-12963,-3040,-534,-635,-12973,-737,-12974,-1465,-12976,-1930,-8578,-2275,-2594,-12957,-5033, --3044,-3199,-12975,-8562,-6378,-2041,-5977,-6380,-44,-12960,-15073,-6381,-1851,-6383,-6384,-46,-4020,-13428,-12966,-6633, --6386,-1848,-6387,-3194,-12951, --3983,-4749,-8523,-3052,-1337,-6388,-1734,-22,-40,-13427,-12968,-771,-1343,-2233,-11463,-6390,-6391,-5038,-4776,-3732, --7080,-6832,-7026,-1927,-41,-12947,-269,-5085,-3850,-12964,-12969,-736,-1929,-2082,-32,-13186,-6394,-1934,-4195,-3251, --12948,-12952,-15043,-12965,-14296,-7165,-7967,-2335,-12949,-15074,-10100,-10101,-7189,-1903,-2791,-12953,-12959,-1643, --3077,-42,-12950,-8355,-15075,-8863, --12954,-4758,-12961,-12946,-4762,-5323,-4763,-8561,-6484,-38,-7164,-12962,-1915,-37,-3368,-15076,-3376,-3204,-3379,-3385, --3389,-553], -[1,3,9874], -[0,0,9875,9876,10], -[0,-652,-13239,-1344,-1534,-1889,-2541], -[0,-1889,-775,-3583,-10739], -[1,3,9878], -[0,9879,9880,9881,9], -[0,-674,-3050,-15077,-1630,-1641,-1863,-3240,-12379,-2218], -[0,-86,-3307,-190,-3470,-7040,-3471,-3472,-7041,-7042,-3713,-3037,-5675,-15078,-427,-428,-767,-932,-965,-999,-1110,-1344, --13856,-1534,-1870,-1942,-2125,-2174,-2410,-2469], -[0,-3998,-1978,-15079,-3167,-15080,-5270,-5271,-15081,-15082,-15083,-6527,-1594,-3162,-13188,-15084,-15085], -[1,3,9883], -[0,9884,9885,9886,9], -[0,-15086,-15087,-640,-5273,-1610,-1955,-4620,-15088], -[0,-23,-32,-40,-534,-15089,-684,-9994,-778,-932,-933,-12416,-958,-10049,-1041,-3867,-1331,-15090,-2275,-2335,-14648,-2501, --2502,-2503,-2505], -[0,-3812,-3813,-3814,-3815,-3816,-3817,-856,-15091,-15092,-2637,-4847,-15093,-15094,-15095,-15096,-15097,-15098,-15099], -[1,3,9888], -[0,94,9889,9890,5], -[0,-23,-32,-44,-932,-933,-940,-958,-962,-967,-969,-970,-1415,-3156,-1942,-2006,-2034], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-10738,-9556,-15020,-15100,-12546,-5176], -[1,3,9892], -[0,0,9893,9894,5], -[0,-23,-40,-44,-15101,-12564,-932,-1344,-1534,-2006,-2034,-2410], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-13876,-15102,-6711,-15103], -[1,3,9896], -[0,0,9897,9898,11], -[0,-23,-32,-26,-3204,-38,-40,-41,-3326,-350,-351,-407,-409,-518,-703,-796,-932,-940,-12520,-967,-969,-970,-976,-1344, --1352,-1415,-1534,-1889,-1942,-1967,-2006,-2019,-2127,-4063,-15104,-3474,-4753,-2281,-2282], -[0,-2006,-13613,-15105,-4108,-2006,-3095,-15106,-3162,-5270,-5271,-15107,-15108,-15109,-15110], -[1,3,9900], -[0,9901,9902,9903,9], -[0,-44,-15111,-15112], -[0,-23,-36,-38,-40,-41,-42,-8280,-50,-15113,-407,-409,-3040,-3052,-427,-428,-440,-528,-651,-767,-932,-940,-967,-969,-1344, --1415,-1419,-1534,-1942,-2006,-2019,-2125,-2410,-2466], -[0,-15114,-15115,-2006,-3159,-14798], -[1,3,9905], -[0,9906,9907,9908,6], -[0,-656,-15116,-2400], -[0,-2832,-3615,-190,-15117,-9705,-652,-668,-716,-722,-928,-932,-940,-967,-999,-1110,-1344,-1412,-1534,-1574,-1942,-2125, --7969,-2410,-2411], -[0,-8630,-3671,-856,-3262,-1599,-3437,-4328], -[1,3,9910], -[0,9911,9912,9913,11], -[0,-349,-703,-15118,-3517,-996,-1359,-2040,-2112,-12695,-12518,-15119], -[0,-21,-23,-40,-41,-42,-44,-15042,-10791,-8230,-3615,-190,-12608,-15120,-349,-3562,-15043,-358,-4754,-13424,-2948,-15121, --4890,-15122,-15123,-15124,-407,-409,-410,-15125,-12940,-15126,-3037,-3040,-3052,-6633,-440,-5286,-3664,-534,-15127, --8561,-635,-15050,-767,-7272,-7254,-7271,-834,-932,-15128,-940,-948,-958,-960,-962,-967,-969,-970,-15129,-4756,-1107, --1110,-1344, --1449,-1534,-1610,-1874,-1942,-2006,-2019,-2029,-2040,-2125,-2257,-2335,-2376,-2378,-2410,-2411,-6412,-2469,-15130,-2501, --2502,-2503], -[0,-2006,-3476,-14497,-3159], -[1,3,9915], -[0,9916,9917,9918,4], -[0,-15131], -[0,-15132,-15133,-15134,-15135,-350,-351,-410,-4875,-4877,-15136,-15137,-4878,-15138,-15139,-652,-664,-15140,-15141,-932, --15142,-958,-1449,-11472,-1654,-1942,-2127,-15143,-2184,-2210,-2211,-2253,-2334,-2410], -[0,-15144,-5072,-5065,-12238,-5073,-14939,-15145,-5495,-3161,-12122,-7651,-3110,-15146,-13039,-6106,-6107,-5394,-15147, --15148], -[1,3,9920], -[0,0,9921,9922,6], -[0,-23,-5585,-40,-2127,-2128,-2133,-2137,-2339,-15149,-13807,-2416], -[0,-15150,-15151,-7581,-1634,-475,-15152,-2006,-2476,-3755], -[1,3,9924], -[0,9925,9926,9927,4], -[0,-44,-15153,-4817,-809,-1549,-15154,-2355,-2451], -[0,-3341,-26,-38,-40,-42,-86,-3307,-2997,-3326,-350,-15155,-4062,-351,-3561,-15156,-15157,-15158,-15159,-3164,-3037,-3803, --5011,-6109,-427,-428,-4837,-5589,-3664,-3665,-5590,-441,-14247,-14244,-4838,-518,-523,-656,-5339,-720,-726,-767,-795, --796,-812,-15160,-928,-932,-934,-940,-958,-967,-980,-1125,-1344,-1449,-1521,-1534,-1551,-15161,-1662,-1889,-1942,-1955, --15162,-2082,-2125,-2127,-13263,-4063,-5122,-6483,-15163,-6746,-4753,-15164,-15165,-2140,-14839,-2145,-15166,-2387,-2410, --2466,-15167,-2469,-2476,-2478,-2483,-5627], -[0,-2476,-3162,-15168], -[1,3,9929], -[0,9930,9931,9932,5], -[0,-5277,-929,-1437], -[0,-23,-40,-9678,-4964,-518,-521,-15169,-757,-767,-784,-795,-7758,-865,-932,-940,-943,-958,-966,-967,-968,-974,-1753, --1889,-1890,-1891,-15170,-1896,-1903,-15171,-1906,-1916,-15172,-12060,-1942,-2125,-2127,-2128,-2131,-2133,-8895,-15173, --2137,-8896,-15174,-2140,-5281,-2214,-2281,-3085,-2302], -[0,-5298,-6656,-15175,-15176,-15177,-7581,-7582,-6527,-15178,-5069,-3162,-12536,-7764,-4634,-12217,-8883,-1437], -[1,3,9934], -[0,9935,9936,9937,5], -[0,-523,-1435,-1548,-1646,-2153], -[0,-664,-932,-4628,-1650,-1654,-2330], -[0,-4116,-826,-687,-6999,-9043,-12054,-15179,-1334,-11915,-15180,-9041,-5730,-7085,-11642,-9261,-7084,-15181,-12578], -[1,3,9939], -[0,0,9940,9941,4], -[0,-518,-632,-1168,-15182,-1194,-1208,-1226,-1238,-1243,-1244,-1252,-7832,-15183,-1899,-2281,-2282,-2550], -[0,-2649,-15184,-15185,-775,-1521,-3162], -[1,3,9943], -[0,0,0,9944,6], -[0,-2006,-4125,-9800,-4633,-2074,-4634], -[1,24,9946], -[0,25,9947], -1731196800000, -[1,3,9949], -[0,9950,9951,7,8], -[0,-15186,-4225,-4228,-15187,-15188,-15189,-4230,-15190,-703,-5342,-15191,-1026,-3649,-1289,-14857,-1618,-10922,-1619, --5397,-15192,-15193,-2590,-4241,-2088,-4242,-2095,-15194,-15195,-15196,-12978,-4245,-2218,-12508,-2378,-15197,-2429, --15198,-2548,-2564], -[0,-5048,-409,-426,-5334,-4251,-15199,-3040,-3046,-440,-15200,-9602,-9603,-2634,-2006,-2019,-2427,-2469,-15201], -[1,3,9953], -[0,9954,0,9955,4], -[0,-12260], -[0,-810,-15202,-15203,-6367,-5896,-13618,-15204,-15205,-2653], -[1,3,9957], -[0,9958,9959,204,4], -[0,-4787,-1864], -[0,-2581,-3037,-8523,-1026,-15206,-1107,-2354,-2892,-2410], -[1,3,9961], -[0,0,0,9962,8], -[0,-2410,-3694,-4004,-4043,-1001], -[1,3,9964], -[0,9965,37,9966,4], -[0,-15207,-2387], -[0,-15208,-15209,-15210,-15211,-15212,-2410,-5210,-3215,-6478,-9471,-15213,-8130,-3756,-8386,-15214,-3445,-3577], -[1,3,9968], -[0,0,28,9969,10], -[0,-12613,-3098,-3100,-3482,-2634,-1713,-2006,-12612,-12449,-3160,-4119], -[1,3,9971], -[0,108,28,9972,8], -[0,-707,-3098,-3100,-4131,-3482,-2634,-1713,-2006,-4132,-4133,-3160,-4119], -[1,3,9974], -[0,9975,28,9976,5], -[0,-2020], -[0,-3098,-7761,-878,-3100,-3482,-2634,-1713,-2006,-3160,-4119,-7764], -[1,3,9978], -[0,266,28,9979,8], -[0,-3098,-3100,-3482,-2634,-1713,-1779,-1959,-2006,-3160,-4119], -[1,3,9981], -[0,266,28,9982,4], -[0,-15215,-3098,-3100,-3482,-2634,-1713,-2006,-7282,-3160,-4119], -[1,3,9984], -[0,0,28,9985,4], -[0,-3098,-3100,-3482,-2634,-1713,-2006,-15216,-10114,-15217,-3160,-4119], -[1,3,9987], -[0,9988,9989,9990,4], -[0,-1616], -[0,-21,-23,-3204,-40,-42,-3748,-4776,-15218,-3330,-3032,-3037,-427,-428,-932,-940,-958,-960,-965,-15219,-5863,-1772,-2125, --2410,-2469], -[0,-15220,-1874,-795,-1654,-2469,-1415,-1412,-1710,-11410,-15221,-11100,-4004,-9246,-6863,-3634,-15222], -[1,3,9992], -[0,9993,9994,9995,6], -[0,-15223,-15224,-15225,-15226,-12846,-15227], -[0,-15228,-3617,-3037,-15229,-15230,-15231,-1004,-2125,-2892,-2410,-2469], -[0,-15227,-1004,-3445,-6324,-3690,-9668,-2410,-3214,-5401], -[1,3,9997], -[0,0,9998,9999,11], -[0,-1763,-10652,-2250,-4004,-15232], -[0,-3162,-11321,-7440,-4865], -[1,3,10001], -[0,10002,10003,10004,5], -[0,-5358,-2427,-5334,-1293,-8913,-12766,-2235,-5356,-12767], -[0,-652,-932,-2083,-1942,-1874,-2094,-2410,-3037,-6648,-12750,-12749,-11167,-15233], -[0,-856,-4147,-5670,-3862,-2083,-12745,-2093,-2427], -[1,3,10006], -[0,10007,10008,10009,5], -[0,-15234,-15235,-15236,-15237,-15238,-15239,-15240,-15241,-15242,-15243,-15244,-15245], -[0,-21,-2388,-2410], -[0,-15246,-3163,-12254,-6324,-3214,-11230,-8043,-15247,-3162], -[1,3,10011], -[0,10012,0,93,11], -[0,-2606,-15248,-682,-15249,-1384,-1967,-1993,-2006,-2019,-2029,-2489], -[1,3,10014], -[0,10015,0,93,10], -[0,-2006,-2019,-1967,-2606], -[1,3,10017], -[0,10018,0,10019,8], -[0,-2387,-1387,-232,-1461], -[0,-1386,-3161,-475,-3162,-3994,-3995,-3996,-752,-3997,-3998], -[1,24,10021], -[0,25,10022], -1733616000000, -[0,25,10024], -1733961600000, -[1,24,10026], -[0,25,10027], -1734220800000, -[1,3,10029], -[0,0,10030,10031,4], -[0,-2200,-2162,-2834,-2387,-932,-2125,-2127,-2149,-2334,-1753,-1889,-1077,-1942,-620,-767,-2281,-2410,-3563,-1771,-1891, --6326,-518,-726,-3564,-1547,-6327,-945,-15250,-958,-978,-6331,-3267,-428,-14014,-3573,-427], -[0,-775,-2162,-3576,-8856,-3110,-4101,-3161,-15251,-11229], -[1,3,10033], -[0,10034,10035,10036,4], -[0,-44,-15252,-15253], -[0,-21,-23,-26,-33,-5585,-38,-39,-40,-43,-3035,-3621,-3037,-528,-534,-539,-571,-15254,-15255,-633,-664,-665,-12469,-767, --932,-1004,-4652,-1449,-1654,-1788,-2105,-2125,-2228,-2335,-2410,-2490,-2491,-2501,-2503], -[0,-5801,-3162,-3690,-10810,-15256], -[1,3,10038], -[0,0,10039,10040,11], -[0,-652,-664,-726,-756,-928,-932,-1449,-1544,-1654,-2162], -[0,-3214,-3162,-5270,-5271,-8617], -[1,3,10042], -[0,10043,10044,10045,6], -[0,-1992,-712,-809,-15257,-1548,-682,-15258,-1762,-15259,-15260,-15261,-6640,-2055,-15262], -[0,-4977,-2006,-2019,-3040,-3044,-44,-3052,-15263,-409,-407,-410,-2622,-3024], -[0,-2006,-5253,-3159,-2678,-15264,-15265,-3095,-3098,-3160,-3161,-3100,-3162], -[1,3,10047], -[0,10048,10049,93,4], -[0,-2606,-15248,-15266,-2669,-2670,-682,-1384,-1967,-1993,-2006,-2019,-2489,-15249], -[0,-15267,-15268,-15269], -[1,3,10051], -[0,0,10052,10053,4], -[0,-3473,-1942,-2127,-2128,-5384,-2129], -[0,-3100,-11853,-11851], -[1,3,10055], -[0,10056,10057,10058,4], -[0,-6815], -[0,-409,-3040,-3052,-778,-1071,-1344,-2006,-2019,-2049,-2275,-2376,-8973,-2387,-2410,-2501,-3612], -[0,-6750,-15270,-15271,-15272,-3095,-3576,-3162,-2363,-6750,-3823,-15273,-12606], -[1,3,10060], -[0,10061,10062,10063,10], -[0,-4733,-668,-719,-999,-1077,-1948,-1966,-2177,-2426,-2518,-2528,-2542,-2555], -[0,-15274,-3899,-652,-1107,-1110,-6295,-8065,-1971], -[0,-2682,-15275,-15276,-3162,-5270,-15277,-5271], -[1,3,10065], -[0,10066,0,10067,4], -[0,-1867,-11957,-11964,-15278], -[0,-15279,-3444,-5545,-3262,-856,-15280,-15281], -[1,3,10069], -[0,10070,10071,10072,9], -[0,-15282,-15283,-15284,-31,-15285,-3325,-280,-11671,-469,-719,-7731,-15286,-15287,-5934,-1442,-10584,-1577,-1645,-1729, --15288,-2115,-10624,-2177,-2205,-2379,-2410], -[0,-932,-959,-969,-973,-1077,-1415,-1448,-1607,-2125,-15289], -[0,-3328,-856,-3262,-1599,-9308], -[1,3,10074], -[0,10075,10076,10077,5], -[0,-6869,-8386,-1805,-623,-668,-999,-1526,-1826,-2387,-1548,-2177,-753,-1966,-2501,-679,-1077,-2357,-719,-1327,-695,-832, --929,-2043,-5977,-2508,-15290,-2433,-15291,-2044,-15292,-3859,-15293,-4239,-2505,-15294,-1331,-15295,-15296,-2502,-15297, --15298,-15299], -[0,-7982,-7688,-3052,-3861,-13398,-2052,-13186,-11702,-15300,-15301,-14826,-14779], -[0,-2006,-5371,-2501,-856,-7695,-7696,-858], -[1,3,10079], -[0,10080,10081,268,11], -[0,-2387,-1387,-232], -[0,-1763,-1415,-2006,-932,-2125,-2127,-2375,-1077,-1942,-2019,-2410,-3136,-3037,-3040,-3052,-3986,-3988,-409,-1419,-3267, --407,-428,-2622,-427], -[1,3,10083], -[0,0,10084,10085,4], -[0,-3136,-427,-428,-753,-756,-784,-932,-1415,-1417,-1424,-1449,-15302,-2127,-2375,-2410], -[0,-12841,-3582,-6989,-5389,-10095,-12523,-2410,-3214,-9682,-3095,-11486,-12121,-5065,-3577,-3264,-4333,-4334,-15303], -[1,3,10087], -[0,10088,0,10089,4], -[0,-703,-2825,-2690,-1967,-44,-2997,-192], -[0,-2006,-3159,-4217,-15304,-4665], -[1,3,10091], -[0,10092,0,10093,6], -[0,-2690,-1967,-44], -[0,-2006,-3159,-4217,-4101], -[1,3,10095], -[0,10096,0,10097,8], -[0,-703,-2029,-2825,-1967,-44,-3140], -[0,-2006,-3159,-4217,-5260], -[1,3,10099], -[0,10100,0,95,5], -[0,-15305,-15306,-823,-1878], -[1,3,10102], -[0,269,0,95,5], -[1,3,10104], -[0,10105,10106,10107,4], -[0,-469,-2177,-1047,-15310,-15311,-12390,-8802,-1395,-3609], -[0,-6997,-2466,-2469,-757,-1026,-2410,-7982,-1772,-10267], -[0,-15312,-15313,-8902,-3184,-3161,-1168,-3214,-3264,-3482,-1599,-3967,-15314,-15315,-3995,-5372,-3255,-3256,-15316, --15317,-15318], -[1,3,10109], -[0,0,10110,10111,5], -[0,-865,-8559,-866], -[0,-2006,-2634,-9736,-865], -[1,3,10113], -[0,10114,10115,10116,4], -[0,-2624,-2231,-15319,-2168,-1320,-3606], -[0,-2558,-1415,-1623,-932,-1699,-825,-2501,-1077,-1098,-1942,-767,-1978,-2400,-1424,-2410,-23,-3136,-3037,-769,-2503,-534, --11747,-1772,-2041,-3046,-3048,-7080,-4049,-15320,-2505,-15321,-12916,-15322,-1421,-2335,-940,-967,-1419,-2506,-3204], -[0,-2006,-3214,-2501,-10675,-6211,-15323,-1540,-12516,-10589,-12517,-11492], -[1,3,10118], -[0,0,10119,10120,11], -[0,-13324,-1123,-15324], -[0,-15325,-1122,-4058,-3694,-2410,-4258,-3161,-3862], -[1,3,10122], -[0,10123,10124,10125,5], -[0,-1816,-3612,-2466,-15326,-623,-668,-999,-865,-1548,-1872,-2177,-680,-1753,-1821,-2501,-679,-1077,-1376,-1942,-719,-749, --695,-778,-2410,-2061,-15327,-15328,-635,-5676,-726,-2115,-2275,-15329,-15330,-15331,-15332,-4236,-2041,-15333,-15334, --15335,-3808,-15336,-15337,-4805,-15338,-15339,-15340,-15341,-1331,-15342,-2504,-2506,-15343,-5319,-1643,-2502,-15344, --15345,-15346,-14827,-15347,-1067, --2695], -[0,-1415,-2006,-9056,-2019,-3136,-3037,-3044,-15348,-3048,-15349,-15350,-14826], -[0,-15351,-7643,-15352,-7645,-15353,-15354,-11229,-3690,-6120,-3161,-1334,-4055,-1501,-15355,-13039,-1791,-11437,-1818, --3691,-5728,-7107,-15356,-5372,-3214,-11878,-12303,-12304,-12301,-12299,-15357,-15358,-3445,-7696,-15359,-1520,-15360, --2006,-3476], -[1,3,10127], -[0,10128,10129,10130,4], -[0,-23,-14825,-656,-755,-15361], -[0,-2303], -[0,-5049,-3839,-2006,-3103,-3690], -[1,3,10132], -[0,10133,10134,10135,4], -[0,-47,-3223], -[0,-15362], -[0,-3264,-9589,-525,-9588,-14188,-9590], -[1,3,10137], -[0,0,0,10138,4], -[0,-5141,-4601,-4602,-3578,-3445,-754], -[1,3,10140], -[0,10141,10142,168,5], -[0,-809,-713,-15363], -[0,-1344,-2469,-2410,-3037,-411,-2581,-86,-5144,-3664,-3307], -[0,23,0,97,5], -[1,3,10145], -[0,23,0,10146,9], -[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, --5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, --5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15366], -[1,3,10148], -[0,23,0,98,9], -[1,3,10150], -[0,23,0,99,4], -[0,23,0,99,5], -[1,3,10153], -[0,23,0,99,11], -[1,3,10155], -[0,10156,10157,10158,6], -[0,-3698,-13203,-15369,-15370,-11418,-617,-722,-733,-736,-744,-754,-2762,-930,-1004,-15371,-15372,-1010,-13106,-5989, --1116,-15373,-1299,-1388,-11121,-1465,-1548,-1641,-1666,-1667,-1676,-1681,-1744,-1826,-5262,-7223,-2182,-2297,-15374, --2451,-15375,-2531], -[0,-3732,-14740,-4198,-3330,-3733,-4623,-3850,-3044,-14742,-3851,-3037,-8852,-3046,-4204,-999,-1336,-1722,-2293,-2410, --2469], -[0,-5300,-1959,-15176,-15376,-15377,-5940,-9139,-15378,-6335,-3445,-2512,-1004,-8841], -[1,3,10160], -[0,10161,0,271,9], -[0,-2476,-2362,-753,-928,-1442,-2501,-679,-1582,-778,-1888,-2437,-2481,-2483,-5628,-23,-769,-1041,-518,-534,-14408,-15379, --2508,-13389,-1908,-15380,-2711,-2505,-748,-1929,-15381,-15382,-2485,-2718,-1643,-2712,-15383,-731,-15384,-2714,-1814, --2716], -[1,3,10163], -[0,10164,0,10165,6], -[0,-1955,-1600,-7898,-1603,-1601,-2718,-5614], -[0,-856,-3262,-1599,-2476,-2816], -[1,3,10167], -[0,10168,0,42,5], -[0,-2711,-1543,-1582], -[1,3,10170], -[0,10171,0,42,9], -[0,-15380,-1553], -[1,3,10173], -[0,10174,0,42,9], -[0,-15380,-769], -[1,3,10176], -[0,10177,0,42,8], -[0,-1779,-15380], -[1,3,10179], -[0,10180,0,42,5], -[0,-15380,-2718], -[1,3,10182], -[0,10183,0,42,4], -[0,-15380], -[1,3,10185], -[0,10186,10187,42,5], -[0,-668,-929,-1077,-1111,-1125,-1284,-2177,-2362,-4701], -[0,-15385], -[1,3,10189], -[0,10190,0,42,4], -[0,-1548,-2286,-5602,-2287,-15380,-2717,-15383,-2715,-15386,-2713], -[1,3,10192], -[0,10193,10194,58,4], -[0,-15387,-15388,-15389,-15390,-15391], -[0,-664,-1654,-2379,-2501,-21,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40,-15392,-15393,-42], -[1,3,10196], -[0,10197,132,58,8], -[0,-15388,-15399,-15400], -[1,3,10199], -[0,10200,10201,58,9], -[0,-1940,-6935,-747,-15401,-15402], -[0,-664,-1654,-932,-753,-2379,-2501,-2376,-21,-778,-2410,-23,-5870,-3035,-3136,-3037,-1637,-1771,-2503,-3621,-3040,-2275, --15403,-14831,-39,-43,-40,-966,-969,-958,-968,-940,-943,-967,-974,-42], -[1,3,10203], -[0,10204,10205,58,11], -[0,-2722,-15401,-15402,-15404,-15405,-15406], -[0,-664,-2494,-1654,-932,-4270,-753,-2379,-2501,-1942,-21,-2410,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40, --966,-969,-958,-968,-15407,-940,-943,-967,-974,-42], -[1,3,10207], -[0,10208,132,58,11], -[0,-2531,-15388,-15399], -[1,3,10210], -[0,10211,0,10212,6], -[0,-703,-15408], -[0,-15409,-15410,-3162,-6184], -[1,3,10214], -[0,0,0,173,4], -[1,3,10216], -[0,0,0,10217,5], -[0,-475,-3161,-4865,-7243,-3634,-5495], -[1,3,10219], -[0,117,10220,10221,4], -[0,-519,-668,-756,-1788,-2250,-2251], -[0,-5514,-9846,-687,-15411,-7210], -[1,3,10223], -[0,228,10224,10225,5], -[0,-9705,-5686,-4624,-3037,-8890,-11458,-617,-11477,-1168,-12346,-1260,-1412,-15412,-15413,-1452,-1722,-2125,-2150,-15414, --2173,-2379,-2388,-12348,-2410,-12349,-2819], -[0,-4004,-3634,-11468,-12350,-11467], -[1,3,10227], -[0,0,10228,272,5], -[0,-526,-528,-6104,-558,-6089,-562,-932,-934,-6013,-940,-956,-958,-1059,-1344,-1415,-1534,-1942,-2125,-2416], -[1,3,10230], -[0,10231,10232,10233,8], -[0,-7226,-15425,-7944,-719,-729,-7949,-1048,-1276,-6343,-7959,-1641,-15426,-2125,-7968,-2359,-7971,-2425,-7972], -[0,-190,-3035,-4269,-15427,-15428,-3617,-15429,-3713,-3037,-15430,-3628,-15431,-427,-428,-15432,-664,-665,-749,-932,-940, --964,-966,-967,-999,-1054,-1116,-5487,-1654,-1888,-1942,-7981,-2148,-2177,-2210,-2211,-7970,-2379,-2410], -[0,-6342,-4865,-7641,-4258,-3100,-9290], -[1,3,10235], -[0,10236,10237,273,4], -[0,-15425,-6343,-7964,-7966,-2125,-2148,-5509], -[0,-664,-665,-1654,-15433], -[1,3,10239], -[0,10240,10241,273,4], -[0,-7226,-1276,-3607,-1641], -[0,-664,-7979,-1004,-1452,-1654,-6347,-2106,-2148], -[1,3,10243], -[0,10244,10245,10246,4], -[0,-1343], -[0,-1445,-1452,-1654,-2198], -[0,-4864,-4865,-2734,-9711,-3634], -[1,3,10248], -[0,0,10249,10250,4], -[0,-526,-527,-15434,-558,-664,-1654], -[0,-656,-6514,-775,-5092], -[1,3,10252], -[0,0,133,10253,4], -[0,-3264,-8034,-3223,-7472,-4846,-6557,-15435], -[1,3,10255], -[0,0,133,10256,5], -[0,-3264,-15436,-8034,-3223,-7472,-4846,-6557,-15435], -[1,3,10258], -[0,0,133,10259,4], -[0,-3264,-8034,-3223,-7472,-4846,-6557], -[1,3,10261], -[0,0,10262,10263,4], -[0,-8096,-14182,-652,-725,-1288,-1292,-1942,-2087,-2094,-2100,-2125,-2322,-2399,-2410,-2427,-2541], -[0,-3264,-8034,-10902,-7472,-4846,-15435,-15437,-6557], -[1,3,10265], -[0,0,0,41,9], -[1,3,10267], -[0,10268,251,10269,4], -[0,-15438], -[0,-712,-5535,-5549,-775], -[1,3,10271], -[0,0,92,10272,5], -[0,-5092,-3264,-12064,-13319,-7205,-1838,-6231], -[1,3,10274], -[0,10275,88,10276,4], -[0,-1016,-15439,-8493], -[0,-3671,-856,-3960,-3262,-1599,-3261,-15440], -[1,3,10278], -[0,0,10279,10280,5], -[0,-1654,-664,-1405], -[0,-775,-12120,-5101,-15441,-3162,-1838,-5572], -[1,3,10282], -[0,0,10283,10284,6], -[0,-756,-1405], -[0,-2265,-4112,-7188,-775,-10310,-3582], -[1,3,10286], -[0,10287,10288,10289,4], -[0,-781], -[0,-652,-928,-932,-1654,-2127,-2232], -[0,-775,-6454,-6684,-1644,-7192,-7193,-15442], -[1,3,10291], -[0,10292,10293,10294,4], -[0,-508], -[0,-932,-940,-967,-1942,-2319], -[0,-5829,-3215,-6747,-687,-3957,-4377,-6836,-15443], -[1,3,10296], -[0,10297,0,10298,8], -[0,-492,-493,-15444,-495,-722,-1122,-1123,-1439,-7679], -[0,-15445,-3445,-1105,-15446], -[1,3,10300], -[0,10301,0,10302,4], -[0,-1439,-1848,-7679], -[0,-15445,-3445,-5800,-8904], -[1,3,10304], -[0,10305,0,10306,4], -[0,-722,-1439,-1645,-1848,-7679,-15447], -[0,-15445,-3445,-7660], -[1,3,10308], -[0,10309,0,10310,4], -[0,-15448,-1371,-1469,-1645], -[0,-15445,-3445,-15449,-15450], -[1,3,10312], -[0,10313,0,10314,5], -[0,-492,-493,-15444,-495,-722,-1122,-1123,-1439,-1848,-7679], -[0,-15445,-3445,-1105], -[1,3,10316], -[0,10317,0,10318,4], -[0,-492,-493,-15444,-495,-1439,-1848,-7679], -[0,-15445,-3445,-7661], -[1,3,10320], -[0,0,0,274,4], -[1,3,10322], -[0,10323,0,274,10], -[0,-1848], -[1,3,10325], -[0,0,10326,10327,9], -[0,-3136,-3037,-756,-1107,-1415,-1442,-15451,-2375,-2388,-2389,-12348,-2410], -[0,-14233,-6747,-3215,-14867,-3162,-15423,-9918,-11321,-1819,-7572,-4865,-15452], -[1,3,10329], -[0,10330,10331,10332,6], -[0,-1610,-1955,-15453,-15454,-15455,-4096,-3546], -[0,-1415,-523,-1344,-1520,-932,-1650,-2125,-2127,-2286,-784,-679,-12844,-1942,-5002,-767,-533,-23,-722,-1534,-1539,-1771, --632,-5977,-3983,-40,-959,-15456,-15457,-2129,-32,-958,-2143,-2138,-940,-967,-2131,-15458,-740,-2137], -[0,-4100,-3671,-856,-15459,-3262], -[1,3,10334], -[0,10335,10336,10337,10], -[0,-1805,-668,-2550,-729,-15460,-2757,-910,-1077,-1098,-1582,-15461,-1540,-2187,-2433,-9229,-15462,-731], -[0,-519,-754,-999,-1344,-932,-2125,-2127,-1534,-15463,-2251,-8177,-15464], -[0,-2757,-4100,-3671,-856,-15459,-3262,-687], -[1,3,10339], -[0,10340,0,10341,5], -[0,-15465], -[0,-5092,-2759,-1437,-3162,-13614], -[1,3,10343], -[0,10344,10345,10346,4], -[0,-14393,-1548,-2029], -[0,-21,-23,-40,-41,-533,-708,-915,-916,-932,-940,-943,-15466,-958,-966,-968,-969,-974,-1415,-1942,-15467,-1967,-1992, --2006,-2019,-2052], -[0,-915,-1415,-4045,-8911,-1950,-674,-5845,-3634,-5119,-4004], -[1,3,10348], -[0,10349,0,10350,5], -[0,-464,-15468,-615,-15469,-2387,-2536], -[0,-5409,-510,-15470,-15471,-15472,-15473,-8676,-15474,-15475,-7347,-6656,-6527,-1594,-11872,-3162,-15476,-15477,-1838, --1961,-9591,-15478,-5408], -[1,3,10352], -[0,0,14,10353,9], -[0,-5559,-9692,-3264,-8034,-3223,-15479,-7723,-8472,-3590,-3110,-9681,-5846,-15480,-2544,-15481,-15482], -[1,3,10355], -[0,10356,10357,10358,5], -[0,-674,-15483,-929,-572,-529,-569,-1077,-15484,-1610,-1646,-14584], -[0,-526,-539,-549,-566,-708,-15485,-932,-1654,-1788], -[0,-1446,-3690,-10855,-856,-6948,-15486,-6950,-15487,-6949,-15488,-6951,-15489,-11798,-15490,-6952,-15491,-15492], -[1,3,10360], -[0,0,55,10361,4], -[0,-932,-5208,-3784,-3862,-9420,-11315,-8199,-4100,-856], -[1,3,10363], -[0,0,10364,10365,4], -[0,-1116,-2251,-2322], -[0,-856,-10858,-15493,-10925,-15494,-15411,-3966], -[1,3,10367], -[0,87,275,10368,4], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-1391,-9682], -[1,3,10370], -[0,87,275,10371,6], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-775,-3585,-1838], -[1,3,10373], -[0,10374,10375,10376,4], -[0,-5334,-2742,-9596,-1968,-2235,-9584,-9585], -[0,-3705,-3037,-652,-1459,-1839,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-1839,-3272,-10919], -[1,3,10378], -[0,87,92,10379,5], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-3830,-9682,-15495,-15496,-15497], -[1,3,10381], -[0,10382,10383,10384,8], -[0,-2595], -[0,-985,-1637,-1942,-2320,-2322], -[0,-3272,-3264,-1838,-6231], -[1,3,10386], -[0,0,10387,10388,5], -[0,-3037,-652,-2586,-1288,-1292,-1729,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-3264,-9703,-6818,-6557,-9682,-15498,-5387,-5388], -[1,3,10390], -[0,10391,0,10392,5], -[0,-812], -[0,-1334,-1342,-1501,-1004,-1030,-12868,-11998,-15499,-15500,-15501,-15502,-12868,-11994,-15503,-3445], -[1,3,10394], -[0,0,130,10395,4], -[0,-775,-3209,-15504,-1889], -[1,3,10397], -[0,276,10398,277,4], -[0,-9848,-2776], -[1,3,10400], -[0,276,10401,277,6], -[0,-2774,-15505,-9848,-2776], -[1,3,10403], -[0,0,0,10404,4], -[0,-525,-2006,-1368,-3161,-4729,-9850,-3264,-9851,-3844,-5092,-4865,-2127,-15506,-15507,-5272], -[1,3,10406], -[0,0,10407,10408,4], -[0,-824,-1168,-784,-1889,-1243,-15508,-1238,-1270,-15509], -[0,-775,-3576,-3577,-3161,-3578,-15510], -[1,3,10410], -[0,10411,10412,10413,4], -[0,-1666,-2161], -[0,-510,-1127,-1138,-1145,-1148,-1162,-1446,-1548,-2105], -[0,-620,-15511,-15512,-856,-1446,-7674,-4101], -[1,3,10415], -[0,0,10416,10417,6], -[0,-9705,-3037,-11458,-1412,-1452,-2173,-2388,-12348,-2410,-12349], -[0,-4004,-3634,-11468,-12350,-11467,-1412], -[1,3,10419], -[0,10420,10421,10422,5], -[0,-10041,-13980,-3740,-1427,-1950,-2375], -[0,-15513,-4,-5,-6,-7,-8,-9,-10,-12,-13,-14,-23,-40,-86,-9404,-3244,-190,-10041,-4020,-237,-3048,-3136,-3037,-3199,-427, --428,-15514,-533,-668,-10525,-740,-767,-4805,-932,-940,-958,-959,-960,-967,-999,-1077,-15515,-1107,-1110,-1344,-1415, --1419,-1449,-1868,-1942,-2125,-2153,-2177,-2387,-2392,-2400,-2410,-2411,-2567], -[0,-1415,-2410,-475,-3634], -[1,3,10424], -[0,10425,10426,10427,5], -[0,-2699,-656,-668,-679,-719,-729,-6798,-1805,-1906,-1907,-2213,-2218,-12979,-2433,-2531], -[0,-23,-162,-3778,-163,-237,-350,-351,-15516,-367,-7043,-406,-407,-409,-410,-5039,-3136,-8334,-3037,-3040,-3052,-9947, --4764,-4204,-427,-428,-440,-15517,-4734,-518,-767,-932,-940,-943,-958,-965,-968,-969,-1415,-1428,-1521,-1753,-1771,-1889, --14336,-15518,-1942,-2006,-2019,-2029,-2125,-2127,-4063,-2132,-6483,-2162,-2278,-2318,-2410,-2466,-15519], -[0,-3634,-1415,-3100,-7566,-812,-15520], -[1,3,10429], -[0,10430,10431,10432,8], -[0,-1403,-15521], -[0,-15522,-15523,-1202,-1276,-1654,-3261], -[0,-9198,-6515,-812,-3671,-856,-6899,-3960,-3262,-1276,-4187,-8453,-4676,-15524,-15525,-1548,-5545,-1599,-3110,-3261, --15440], -[1,3,10434], -[0,10435,10436,10437,10], -[0,-15526], -[0,-1586,-1729,-2337], -[0,-1586,-15527,-9409,-3844,-3445], -[1,3,10439], -[0,10440,10441,10442,8], -[0,-10869], -[0,-3037,-652,-1638,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-1638,-15528,-15529,-6818,-7724,-15530,-3264,-4329,-1599,-2427], -[1,3,10444], -[0,0,0,10445,4], -[0,-1638,-2444,-3590,-3264,-6422], -[1,3,10447], -[0,0,0,10448,10], -[0,-1638,-2444,-3590,-3264,-6818,-6557], -[1,3,10450], -[0,0,10451,10452,4], -[0,-6874,-1127,-1452,-1666,-2525,-2416,-10264,-1154,-15531,-1149,-1136,-1144,-1148], -[0,-2442,-3162,-9918,-15423,-6659,-14867,-4865,-9318,-15532,-15533], -[1,3,10454], -[0,10455,10456,10457,4], -[0,-7177], -[0,-1415,-932,-2375,-1942,-2410,-3136,-3037,-7178,-940,-428,-427], -[0,-15534,-15535,-775], -[1,3,10459], -[0,10460,92,10461,6], -[0,-4231,-2738,-2739,-10909,-15536,-15537,-15538], -[0,-1838,-3264,-7472,-4846,-8034,-3223], -[1,3,10463], -[0,0,0,10464,4], -[0,-1889,-9300,-3756,-9339,-2006,-775,-15539], -[1,3,10466], -[0,10467,130,10468,5], -[0,-2773], -[0,-775,-3209,-1889], -[1,3,10470], -[0,0,10471,10472,9], -[0,-23,-40,-15540,-4690,-15541,-932,-1412,-1471,-1475,-1476,-1479,-1481,-1486,-1491,-11943,-1970,-1978,-2127,-2128,-3571, --2139,-2140,-10312,-4881], -[0,-9407,-1978,-1874,-4864,-15542,-15543,-4902,-3634,-11468,-1970,-11467,-4881,-15221], -[1,3,10474], -[0,10475,10476,10477,9], -[0,-567,-1275,-1967], -[0,-633,-634,-668,-824,-1168,-1179,-1205,-1243,-15544,-1262,-1266,-1632,-15545,-2006,-2019,-2463], -[0,-2006,-3159,-2319,-15546,-2363,-15547,-1275,-3162], -[1,3,10479], -[0,10480,10481,10482,8], -[0,-15548,-303,-15549,-304,-4360,-6448,-469,-470,-668,-680,-728,-812,-1125,-1353,-1442,-5265,-1641,-1789,-1790,-1816, --1966,-2177,-2205,-2223,-3610,-4002,-7982,-15550,-2426,-5721], -[0,-2581,-86,-3307,-4368,-15551,-11765,-15552,-350,-4062,-351,-3561,-3198,-3660,-3713,-3735,-3199,-15553,-15554,-3664, --13376,-1344,-1498,-1722,-4362,-5263,-1942,-2127,-6483,-2392,-2400,-2410,-2469], -[0,-3690,-489,-11768,-856,-11148,-11773,-1789,-3438,-11772,-11769,-11771,-11770,-11410,-4328,-4847], -[1,3,10484], -[0,0,10485,10486,11], -[0,-5295,-409,-3136,-3040,-3052,-13529,-427,-428,-757,-825,-932,-940,-967,-969,-970,-1103,-15555,-1415,-15556,-1637, --15302,-15557,-1942,-2006,-2019,-13531,-2214,-2375,-2410,-15558], -[0,-2006,-12474,-3159,-8597,-13241,-15559,-712,-3577,-15560,-15273,-2012,-4666,-11876,-4665,-15561], -[1,3,10488], -[0,10489,10490,10491,4], -[0,-2594], -[0,-40,-41,-3040,-915,-916,-1415,-1992,-2052,-2127,-2128,-2131,-2137], -[0,-2442,-3162,-9918,-15423,-6659,-14867,-4865,-15562,-15563,-9318,-6106,-4000], -[1,3,10493], -[0,0,10494,10495,4], -[0,-86,-3037,-3040,-3052,-3075,-427,-9700,-932,-940,-9106,-958,-965,-967,-968,-969,-1344,-1415,-1534,-1637,-1942,-1952, --2006,-2019,-2044,-2046], -[0,-2006,-9843,-3122,-2043,-2044,-15564,-2634], -[1,3,10497], -[0,0,10498,10499,4], -[0,-1788,-1449,-1471,-1654,-2006,-2074,-2210,-507,-932,-1548,-1940,-2334,-4258,-708,-753,-1958,-2501,-589,-2019,-15565, --2410,-23,-3037,-1482,-2040,-3040,-534,-11472,-1492,-50,-1025,-3052,-40,-3062,-969,-2052,-15566,-406,-1483,-1475,-1487, --1479,-14780,-428,-5030], -[0,-5922,-6439,-2006,-7378,-15567,-821], -[1,3,10501], -[0,0,0,10502,4], -[0,-2034,-3162,-5270,-5271,-7084,-6656,-14311,-15176,-15568,-6528,-4100], -[1,3,10504], -[0,0,10505,10506,4], -[0,-44,-3040,-3141,-2006,-2034,-2410], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-15071,-13615,-15569,-6527,-15570], -[1,3,10508], -[0,94,10509,10510,5], -[0,-528,-932,-933,-940,-958,-962,-967,-969,-1942,-15571], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-3160,-1959,-15572,-15573,-15574,-10677,-15575,-15576,-6716,-5176], -[1,3,10512], -[0,10513,10514,10515,4], -[0,-798,-15577,-799,-801,-1967], -[0,-15578,-4757,-6263,-4754,-15579,-528,-533,-14782,-807,-932,-943,-958,-966,-968,-969,-15580,-974,-1344,-1415,-1534, --1942,-1952,-2006,-2034,-15571,-2052], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-9472,-6581,-14497,-797], -[1,3,10517], -[0,10518,10519,10520,6], -[0,-997], -[0,-3157,-932,-12566], -[0,-2034,-3159,-12567,-2006,-3163,-3162,-5270,-5271,-3160,-10028,-15581,-15582], -[1,3,10522], -[0,10523,10524,10525,8], -[0,-2798,-2489], -[0,-15583,-21,-23,-3204,-39,-40,-6056,-41,-161,-163,-2997,-350,-351,-3561,-409,-2622,-3040,-528,-533,-767,-932,-940,-956, --959,-968,-969,-970,-1059,-11942,-1103,-15584,-1415,-15302,-1942,-1952,-2006,-2019,-15585,-2052,-2125,-2127,-2128,-2140, --2410], -[0,-2006,-2804,-12051,-3095,-7582,-3821,-3822], -[1,3,10527], -[0,10528,10529,10530,8], -[0,-15586,-2730,-682], -[0,-15587,-5295,-406,-407,-409,-15588,-3059,-3037,-3040,-3052,-440,-3899,-795,-1449,-2910,-2006,-2019,-2214,-2892,-2387, --2410,-2469], -[0,-2006,-3576,-4126,-3162,-12129], -[1,3,10532], -[0,10533,10534,10535,10], -[0,-2387,-15589], -[0,-15590,-5295,-2214,-2006,-2019], -[0,-2006,-5553,-775], -[1,3,10537], -[0,0,10538,10539,4], -[0,-509,-1654,-1939], -[0,-775,-712,-15559,-5554], -[1,3,10541], -[0,10542,0,77,5], -[0,-2869,-424,-15591,-15592,-15593,-15594,-15595,-15596,-15597,-15598,-15599,-15600,-15601], -[1,3,10544], -[0,0,10545,272,5], -[0,-23,-40,-42,-86,-3307,-3326,-15155,-3561,-3266,-3136,-3037,-427,-428,-441,-7465,-528,-533,-8349,-726,-767,-932,-943, --958,-966,-968,-980,-1103,-1344,-1392,-1415,-1419,-1534,-2125,-2127,-2142,-2410,-2478], -[1,3,10547], -[0,0,10548,259,8], -[0,-3800,-684,-748,-778,-1041,-3544,-1643,-1942,-2116,-2162,-2163,-2376,-2410,-2437,-2501,-2503,-2508], -[1,3,10550], -[0,33,10551,10552,4], -[0,-5295,-2214,-407,-409,-15590,-1419], -[0,-2006,-9080,-15602,-15603,-15604], -[1,3,10554], -[0,10555,10556,10557,6], -[0,-15605,-2387], -[0,-5295,-2214,-15590,-15606,-916,-2006,-2019], -[0,-15607,-2006,-15608], -[1,3,10559], -[0,10560,10561,10562,5], -[0,-753,-44,-15609,-15610], -[0,-1521,-2299,-2501,-778,-2410,-23,-1522,-2503,-534,-2275,-15611,-2508,-40,-2301,-2505,-42,-38,-535,-3362,-26,-36,-35], -[0,-4000,-812,-3162], -[1,3,10564], -[0,0,10565,10566,10], -[0,-3037,-4371,-2447,-2466], -[0,-2466,-3161,-8113], -[1,3,10568], -[0,0,10569,10570,5], -[0,-527,-534,-559,-767,-778,-1041,-1743,-2680,-2163,-15612,-2275,-2476,-2481,-2483,-2484,-2485,-2501,-2505], -[0,-11853,-11851,-15613,-15614,-15615,-15616,-15617,-3100,-15618], -[1,3,10572], -[0,10573,0,271,8], -[0,-653,-914,-2710,-15380,-2433,-2719,-3546], -[1,3,10575], -[0,0,10576,10577,5], -[0,-21,-23,-26,-36,-40,-42,-3330,-15619,-3136,-3037,-6630,-427,-428,-527,-533,-535,-932,-934,-940,-958,-967,-1415,-5133, --1942,-2174,-2410], -[0,-1415,-1001,-4116,-510,-5867,-1961,-4868,-3634,-5119], -[1,3,10579], -[0,10580,10581,10582,5], -[0,-11458,-2173], -[0,-9705,-11477,-1168,-12346,-1412,-1888,-15414,-2410], -[0,-3634,-11468,-12350,-11467,-5769], -[1,3,10584], -[0,10585,10586,10587,4], -[0,-464,-668,-824,-1107,-1371,-1646,-1980,-2105,-2125,-2177,-2536], -[0,-5682,-3711,-15620,-3036,-11697,-9705,-8566,-5686,-3037,-12344,-8852,-8890,-11458,-3199,-11343,-11477,-1168,-12346, --1412,-2150,-2173,-2410], -[0,-475,-4004,-3634,-1970,-11468,-12350,-11467,-2173], -[1,3,10589], -[0,117,55,10590,4], -[0,-2265,-7472,-4112,-6730,-13460,-6787,-13461,-13462,-13463,-13465,-5514,-5559,-5563,-687,-3958,-3974,-4000,-13466, --13467,-13468,-13469,-13470], -[1,3,10592], -[0,169,10593,10594,5], -[0,-3037,-928,-15621,-1496,-15622,-2410,-2447], -[0,-15623,-9669,-3161,-9670,-8615,-1334,-3690], -[1,3,10596], -[0,10597,0,10598,8], -[0,-1460,-15624,-1442,-3241], -[0,-15279,-15625,-727,-856,-15280,-15281], -[1,3,10600], -[0,0,10601,278,6], -[0,-664,-3035,-3037,-15626], -[1,3,10603], -[0,10604,0,95,10], -[0,-15631,-15632,-823,-1878], -[1,3,10606], -[0,39,0,10607,5], -[0,-2006,-3159,-4217,-3694], -[0,23,0,98,4], -[0,23,0,99,6], -[1,3,10611], -[0,10612,10613,10614,4], -[0,-15633,-10576], -[0,-5859,-633,-13719,-2322], -[0,-7581,-7582,-7580,-7762,-15634,-5177,-15635,-3100,-633], -[1,3,10616], -[0,10617,10618,10619,4], -[0,-15636,-15637,-15638,-15639,-15640,-640,-668,-671,-865,-866,-997,-1026,-14636,-1098,-1116,-1353,-1376,-7408,-1460, --15641,-15642,-5895,-1958,-2177,-2193,-2331,-2410,-15643,-15644,-15645], -[0,-2476,-15646,-15647,-15648,-15649], -[0,-2830,-15650,-3161], -[1,3,10621], -[0,10622,10623,10624,9], -[0,-44,-15651], -[0,-1415,-2162,-1344,-2006,-915,-932,-2501,-1942,-767,-2019,-21,-778,-2095,-2410,-23,-1534,-1771,-2163,-2503,-3040,-534, --2275,-15652,-15653,-4227,-15654,-4749,-40,-13427,-41,-969,-358,-15655,-940,-962,-967,-1419,-42,-4757,-15656,-4758,-428, --4762,-38,-427,-12712,-15045], -[0,-2006,-3095,-15657,-13652,-15658,-3162,-15106,-2410,-15659,-15660], -[1,3,10626], -[0,10627,10628,7,4], -[0,-668,-695,-719,-1610,-6294,-2177,-15661], -[0,-3802,-11346,-3037,-3199,-15662], -[1,3,10630], -[0,10631,10632,7,4], -[0,-15663,-2564,-703,-834,-15664,-2303,-2466,-461,-623,-812,-4245,-5358,-743,-783,-5036,-2083,-2177,-2814,-680,-5034,-928, --15665,-15666,-1442,-3447,-1827,-1966,-15667,-15668,-3535,-3027,-15669,-1864,-10430,-2422,-15670,-15671,-5113,-2654, --3545,-15672,-1321,-1588,-2551,-989,-15673,-8294,-3649,-14335,-15674,-2429,-15675,-15676,-15677,-8882,-4785,-3190,-4288, --15678,-6332,-3459,-15679,-15680], -[0,-9740,-2162,-2127,-2426,-2469,-674,-2427,-15681,-15206,-15682,-2410,-5334,-1002,-2089,-3198,-13046,-12145,-3199,-15683, --6327,-3660,-3735,-5204,-1736,-3983,-8523,-5114,-9602,-15684,-3712,-9146,-2084,-15685,-15686], -[1,3,10634], -[0,10635,0,7,5], -[0,-710,-15687,-1813,-2416], -[1,3,10637], -[0,10638,10639,10640,10], -[0,-714,-1077,-1376], -[0,-932,-959,-1415], -[0,-3871,-3262,-3976,-687,-11487], -[1,3,10642], -[0,0,10643,10644,10], -[0,-350,-351,-668,-910,-932,-940,-958,-15688,-6099,-1343,-1344,-1534,-1654,-3446,-1942,-2125,-2127,-2131,-15689,-2234, --2323,-10988], -[0,-3108,-3110,-5889], -[1,3,10646], -[0,0,10647,7,8], -[0,-427,-428,-932,-935,-940,-948,-958,-962,-967,-969,-970,-1344,-1534,-1942,-2006,-2410], -[1,3,10649], -[0,10650,10651,10652,4], -[0,-15690], -[0,-3621,-823,-1654], -[0,-3578,-4004,-4043,-15691,-1654,-3161], -[1,3,10654], -[0,0,10655,10656,4], -[0,-5295,-3136,-427,-428,-15692,-10529,-13751,-712,-932,-940,-967,-1107,-1415,-1942,-2127,-2140,-2142,-2214,-2355,-2375, --2379,-2387,-2410], -[0,-712,-3215,-5845,-13241,-15559,-5549,-12065,-15693,-12067,-1510,-15694,-12434,-775,-15695,-4665,-15696,-15697,-1644, --15698], -[1,3,10658], -[0,106,10659,280,6], -[0,-15587,-86,-3307,-2845,-4646,-3617,-3136,-3037,-427,-428,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], -[0,23,0,97,8], -[1,3,10662], -[0,10663,10664,10665,8], -[0,-6332,-6326,-6329,-15702,-5334,-3660,-4251,-2854,-15703,-2586,-1288,-1292,-1294,-1349,-1442,-14511,-1588,-15704,-10749, --5348,-2918,-2083,-4262,-5353,-2422,-2427,-2429,-5358], -[0,-3983,-3037,-3664,-2834,-15705,-2469], -[0,-3671,-856,-2834,-15706,-15707], -[1,3,10667], -[0,10668,10669,280,4], -[0,-1004,-2080], -[0,-15587,-86,-3307,-2841,-2845,-4646,-3617,-3136,-3037,-427,-428,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], -[1,3,10671], -[0,10672,10673,10674,4], -[0,-2080,-2379], -[0,-86,-3307,-4646,-3617,-3136,-3037,-427,-428,-668,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], -[0,-15699,-3967,-2410,-15700,-15701,-3161,-11894,-3445,-3482], -[1,3,10676], -[0,23,0,97,4], -[0,23,0,98,11], -[1,3,10679], -[0,262,10680,10681,4], -[0,-262,-4838], -[0,-2476,-2486,-4634,-2851,-15708,-15709,-12704,-3690,-7864,-9069,-2410,-3018,-8038,-9594], -[1,3,10683], -[0,10684,10685,151,5], -[0,-15710,-192,-15711], -[0,-41,-15712,-15713,-407,-409,-410,-3040,-3052,-440,-703,-2006,-2019,-2042,-2044,-2113,-3820,-15714,-727], -[1,3,10687], -[0,10688,10689,10690,8], -[0,-2856], -[0,-2834,-999,-15715], -[0,-15707,-15716,-856,-15717,-4245,-15718,-15706], -[0,0,0,10692,5], -[0,-15318,-15719,-3445], -[1,3,10694], -[0,10695,10696,10697,9], -[0,-15717], -[0,-4251,-4231,-9602,-2090,-2098,-2101,-4245,-2427,-5358,-15715], -[0,-15716,-856,-15717,-4245,-15718], -[1,3,10699], -[0,10700,10701,10702,8], -[0,-14800,-14801,-820,-1002,-2400], -[0,-15720,-14804,-3311,-3312,-652,-14806,-2410], -[0,-14808,-4187,-2444,-3966,-4865,-3445,-3100,-507,-4004,-664,-14809,-14810], -[1,3,10704], -[0,0,10705,10706,5], -[0,-600,-633,-756,-1405,-1654,-2198,-2416], -[0,-8472,-2544,-7723,-14242,-3962,-7107,-5559,-6422,-7724,-2451,-3264,-775,-6138,-14672], -[1,3,10708], -[0,10709,0,10710,5], -[0,-15721], -[0,-3843,-3118,-14066,-2006,-3100,-3577,-3445,-4725,-3578,-4865,-3214,-3756,-2410,-3966,-3967,-3482,-15722,-5260], -[1,3,10712], -[0,10713,0,73,9], -[0,-2984,-2885,-5766,-2400], -[1,3,10715], -[0,269,0,95,10], -[1,3,10717], -[0,10718,0,77,4], -[0,-424,-2704,-2826,-2863,-2706,-2707,-2902,-2903,-2940,-2708], -[1,3,10720], -[0,0,0,10721,4], -[0,-3843,-3118,-14066,-2006,-3100,-3577,-3445,-4725,-3578,-4865,-3214,-3756,-2410,-3966,-3967,-3482,-15724,-5260], -[0,23,0,97,6], -[1,3,10724], -[0,10725,0,246,4], -[0,-2531,-1107,-2624,-2550,-2177,-1961,-578,-719,-1384,-2166,-481,-533,-12547,-1624,-2516,-12548,-1950,-2041,-458,-12550, --11463,-12551,-9870,-2082,-12552,-1421,-12553,-12554,-12555,-12556,-12557,-12559,-12560,-15725], -[1,3,10727], -[0,10728,0,77,10], -[0,-2862,-424,-2976,-2872,-2705,-2853,-2850,-2827,-2848,-2849,-2828,-15726,-15727,-2865,-2703,-2975,-15728,-2846,-15729, --2847,-2842,-15730,-15731,-2868,-2996,-2866], -[1,3,10730], -[0,10731,10732,268,5], -[0,-2387,-2686], -[0,-2006,-932,-2125,-2127,-1942,-2019,-2410,-3037,-3040,-2043,-3052,-2044,-15732,-3986,-3988,-3075,-3267,-428,-427], -[1,3,10734], -[0,10735,10736,10737,9], -[0,-15733,-15734,-15735,-617,-1004,-15736,-1338,-2520,-2558], -[0,-15737,-15738,-15739,-15740,-15741,-3617,-4203,-1683,-2293], -[0,-15742,-7661,-15743,-15744,-15745,-3445], -[1,3,10739], -[0,23,0,98,5], -[1,3,10741], -[0,0,10742,10743,4], -[0,-509,-1654], -[0,-2873,-5514,-712,-5535,-668,-775,-15559,-5549,-15746], -[1,3,10745], -[0,10746,10747,10748,10], -[0,-4843], -[0,-3037,-3040,-3052,-440,-2634,-2006,-2019,-2466,-6859,-2469,-4842], -[0,-3690,-856,-9736,-1713,-3438,-4847], -[1,3,10750], -[0,10751,0,10752,5], -[0,-1439,-7679,-722,-15447], -[0,-15318,-15719,-3445,-7660], -[1,3,10754], -[0,0,10755,10756,4], -[0,-8096,-652,-1942,-2094,-2100,-2125,-2322,-2399,-2410,-2541], -[0,-775,-3264,-5092,-3578,-6184,-13270,-5899,-9299], -[1,3,10758], -[0,10759,10760,285,10], -[0,-1313,-2564], -[0,-15747,-86,-3307,-4835,-15748,-3036,-3037,-427,-428,-4627,-928,-932,-934,-940,-15749,-948,-958,-967,-1107,-1344,-1534, --1942,-15750,-2125,-2383,-2392,-2410], -[1,3,10762], -[0,10763,10764,285,4], -[0,-679,-2877], -[0,-502,-2392,-1107,-1344,-932,-2125,-928,-1942,-2410,-3036,-3037,-1534,-15748,-2383,-86,-15750,-958,-4627,-940,-967,-428, --934,-3307,-427,-948,-15749], -[1,3,10766], -[0,10767,10768,10769,6], -[0,-2531,-469,-2392,-5193,-1867,-2446,-649,-764,-15753,-2426,-680,-1646,-2694,-823,-1043,-11121,-1878,-15754,-1354,-1340, --11964,-1101,-1997,-14221,-15755,-14032,-1851,-2160,-15756,-15757,-8274], -[0,-2193,-2125,-2127,-928,-4204,-749,-767,-3738,-15758,-5686,-5363,-2014,-11433,-2132,-4049,-15759,-15760,-15761,-15762], -[0,-15354,-3690,-7643,-15763,-11229,-3161,-15764,-11878,-3214,-9736,-3966,-2879,-2006,-15359,-2410], -[1,24,10771], -[0,25,10772], -1743292800000, -[1,3,10774], -[0,10775,10776,10777,9], -[0,-15765,-15766,-15767,-15768,-15769], -[0,-40,-15770,-15771,-15772,-3326,-350,-351,-3561,-3048,-3037,-15773,-427,-12837,-428,-518,-534,-558,-726,-753,-756,-4809, --15774,-932,-958,-960,-5863,-1077,-1103,-3566,-15775,-15776,-1344,-15777,-15778,-1771,-15779,-1891,-15780,-15781,-15782, --2127,-8895,-4753,-15783,-8896,-2140,-2142,-2144,-2162,-5896,-15784,-5013,-2387,-2388,-15785,-2410,-8564], -[0,-12613,-15786,-12449,-12898,-2363,-11321,-3162,-2006,-2476,-475,-1940,-13615,-13616,-13613,-15787], -[1,3,10779], -[0,0,10780,10781,4], -[0,-50,-2410,-2466,-4840,-6859], -[0,-15415,-15416,-15788,-15417,-15418,-11853,-10655,-15419,-6711,-15420,-15421,-4126,-15071,-2006,-15422,-475,-2476,-5270, --3162,-11321,-15423,-15424], -[1,3,10783], -[0,10784,10785,10786,5], -[0,-15789], -[0,-15790,-3136,-3037,-664,-12469,-1002], -[0,-15791,-6121,-460,-15792,-15793,-15794,-15795], -[1,3,10788], -[0,10789,10790,7,4], -[0,-15796,-3748,-948,-8339,-965,-968,-969,-1047,-1110,-15797,-2411], -[0,-3037,-10557,-932,-1344,-3781,-1498,-15798,-1772,-2399,-2410], -[1,3,10792], -[0,10793,0,73,4], -[0,-1456], -[1,3,10795], -[0,10796,10797,286,4], -[0,-4007,-658,-3190,-1548,-1549,-15799], -[0,-15800,-3037,-1278,-2410,-15801,-15802,-15803], -[1,3,10799], -[0,10800,0,7,6], -[0,-4231], -[1,3,10802], -[0,0,10803,7,8], -[0,-2386,-932,-2469,-1942,-2410,-3037,-965,-3664,-978,-940,-428,-427], -[1,3,10805], -[0,10806,10807,10808,9], -[0,-668,-1574,-1948,-2303], -[0,-1127,-1132,-1134,-1163,-2541], -[0,-9219,-3839,-9472,-6523,-6527,-7175,-1644], -[1,3,10810], -[0,10811,10812,286,5], -[0,-928,-4007,-2886], -[0,-1415,-2410,-3136,-3037,-15806,-15807], -[1,3,10814], -[0,10815,10816,10817,5], -[0,-522], -[0,-1788,-664,-2391,-1654,-2125,-1004,-2379,-2410,-3035,-3037,-3621,-511,-3617,-3983], -[0,-4665,-5119,-3634,-4873,-3440,-4666,-5986,-1874,-522], -[1,3,10819], -[0,10820,10821,7,5], -[0,-483,-653,-6860,-13380,-14174,-15808,-5042,-1864,-2923,-7160,-2177,-3535,-2654,-2369,-15809,-15810], -[0,-15661,-15811,-15812,-15813,-15814,-3037,-8523,-3199,-8200,-15815,-15816,-3664,-3665,-4817,-8349,-815,-932,-8418,-3751, --1623,-3459,-6568,-1942,-2910,-15817,-15818,-2410,-15819,-15820,-15821,-15822,-2466,-2469], -[1,3,10823], -[0,10824,10825,10826,4], -[0,-812,-814,-1077,-1116,-7408,-2331], -[0,-3198,-15823,-3048,-664,-932,-1654], -[0,-867,-7347,-10908,-6131,-6656,-1334,-2435,-7107,-3445], -[1,3,10828], -[0,0,10829,10830,4], -[0,-3983,-3037,-3040,-9723,-1942,-2006,-2019,-3682,-2410], -[0,-2006,-5741,-12662,-12664,-12665], -[1,3,10832], -[0,10833,0,10834,5], -[0,-834,-3222,-681,-3620,-81,-66,-73,-74,-3502,-83,-68,-85,-15824,-6672,-15825], -[0,-15826,-681,-3489,-15827,-15828,-5554,-15829,-7754,-3496,-3498,-3264,-3505,-3506,-3507,-3508,-3509,-8841,-6217,-3161], -[1,3,10836], -[0,0,287,134,4], -[1,3,10838], -[0,10839,10840,10841,11], -[0,-15830,-1967,-2055], -[0,-21,-23,-32,-26,-33,-34,-35,-6034,-36,-38,-40,-41,-44,-406,-407,-409,-534,-753,-767,-932,-933,-940,-958,-962,-967,-969, --1415,-1419,-1455,-1939,-1942,-2006,-2019,-2501,-2502,-2503,-2505], -[0,-2006,-3476,-5176,-3159], -[1,3,10843], -[0,0,122,10844,5], -[0,-1107,-5569,-5570,-3215,-15831,-3116], -[1,3,10846], -[0,10847,0,10848,5], -[0,-681,-3517,-81,-15832,-66,-83,-68,-15824,-6672,-15825,-65,-15833,-3526,-15834,-15835], -[0,-15826,-681,-3489,-15827,-15828,-5554,-15829,-7754,-3496,-3498,-3264,-3505,-3506,-3507,-3508,-3509,-8841,-3161], -[1,3,10850], -[0,0,37,288,8], -[1,3,10852], -[0,10853,10854,10855,4], -[0,-15836,-458,-812,-1729], -[0,-3198,-3037,-4201,-15837], -[0,-13739,-7572,-3690,-3323,-3161,-3482,-2901], -[1,3,10857], -[0,23,0,289,4], -[0,23,0,289,5], -[1,3,10860], -[0,10861,0,170,5], -[0,-5240,-5241,-431,-15838,-5244,-5245], -[1,3,10863], -[0,10864,0,10865,9], -[0,-15839,-15840,-15841,-15842,-15843,-15844,-15845,-15846], -[0,-15847,-2257,-15848,-3634,-4004,-15849,-15849,-2034,-2006,-3162,-5270,-5271,-3578], -[1,3,10867], -[0,10868,0,10869,6], -[0,-1439,-7679,-493,-495,-15444,-492], -[0,-15318,-15719,-3445,-7661], -[1,3,10871], -[0,0,10872,10873,5], -[0,-633,-1339,-2491], -[0,-2319,-8533,-3162,-2363,-5389,-6822], -[1,3,10875], -[0,10876,10877,10878,9], -[0,-15850,-2324], -[0,-1413,-1471,-1475,-1476,-1481,-11285,-1645,-1978,-2416], -[0,-10838,-10840,-3162,-4865], -[1,3,10880], -[0,10881,10882,7,4], -[0,-8535,-15851,-11270,-4848,-15852,-15853,-1826,-3653,-2062,-7967,-8544,-15854,-15855,-2531], -[0,-13322,-9193,-13323,-15856,-357,-15857,-3037,-4204,-8549,-2917,-726,-2758,-932,-1030,-1122,-1123,-15858,-2884,-1939, --1972,-2177,-2210,-2240,-2384,-2410,-2426,-2648], -[1,3,10884], -[0,10885,10886,10887,11], -[0,-3459,-1863,-5037,-15811], -[0,-3735,-15206,-1966,-2469], -[0,-8403,-7148], -[1,3,10889], -[0,10890,10891,7,4], -[0,-25,-668,-2066,-2114,-2550], -[0,-528,-15859,-15860,-10445,-1978,-2070,-2226,-2250,-2322,-2359], -[1,3,10893], -[0,10894,132,58,5], -[0,-15861,-996,-15388,-15399], -[1,3,10896], -[0,0,0,10897,4], -[0,-15862,-3445,-13986,-11867,-7685,-2006], -[1,3,10899], -[0,0,0,10900,6], -[0,-932,-3784,-2006,-2041,-5324], -[1,3,10902], -[0,10903,10904,10905,8], -[0,-479,-9493,-812,-1022,-2778,-1446,-1597,-2359], -[0,-23,-40,-43,-528,-664,-756,-932,-951,-1168,-1174,-1197,-1212,-1220,-1231,-1252,-1654,-15863,-1788,-1939], -[0,-1168,-1446,-7674,-3214,-7841,-856], -[1,3,10907], -[0,10908,0,10909,4], -[0,-1371,-15448,-1645,-1469], -[0,-15318,-15719,-3445,-15449,-15450], -[1,3,10911], -[0,10912,10913,7,4], -[0,-15274,-652,-999,-1047,-1107,-2548], -[0,-15864,-11419,-15865,-357,-3037,-15866,-2177,-932,-2884,-2410], -[1,3,10915], -[0,0,91,10916,10], -[0,-5372,-5142,-7282,-2918,-11889,-5573], -[1,3,10918], -[0,0,10919,10920,10], -[0,-2391,-2851], -[0,-2476,-2486,-4634,-2851,-3636,-4215,-3634], -[1,3,10922], -[0,0,10923,10924,4], -[0,-527,-1168,-1171,-15867,-1187,-1229,-1243,-1248,-1252,-1262,-1942,-2128], -[0,-15868,-15869,-15870,-15871,-15872,-15873,-3162,-11853], -[1,3,10926], -[0,10927,10928,7,4], -[0,-15874], -[0,-2476,-4838,-15875], -[1,3,10930], -[0,0,10931,10932,6], -[0,-15661,-190,-15876,-15877,-3037,-3664,-6593,-932,-940,-960,-978,-1431,-7060,-1534,-8436,-1942,-15878,-15879,-2910, --2174,-2892,-2400,-2410,-2411,-2469], -[0,-15880,-10587,-12437,-11639,-5112,-14059,-1548,-1993,-10656,-3481,-3018,-3694,-2410,-2424,-2444,-8113,-3590,-5260], -[1,3,10934], -[0,10935,10936,10937,6], -[0,-14337,-5322], -[0,-5053,-11754,-15881,-4062,-639,-734,-999,-1107,-9665,-1852,-2922,-7160,-2127,-2202,-2231,-2410,-2924,-2923], -[0,-7882,-928,-7760,-2923,-2127,-2501], -[1,3,10939], -[0,0,10940,10941,5], -[0,-190,-3664,-932,-958,-960,-15882,-971,-972,-1449,-2892,-15883,-2410,-2411,-2466,-2469], -[0,-9022,-2410,-4058,-3926,-6747,-15884,-8461,-11997], -[1,3,10943], -[0,0,0,10944,6], -[0,-5889,-9080,-9800], -[1,3,10946], -[0,10947,10948,10949,10], -[0,-3819,-15885,-15886,-15887,-15888,-15889,-15890,-15891,-15892,-3117,-8915,-4836,-15893,-15874,-15894,-15895,-15896, --15897,-15898,-15899,-15900,-15901,-15902,-15903,-15904,-15905,-15906,-15907,-15908,-15909,-15910,-4816,-4817,-14358, --15911,-15912,-734,-6860,-15913,-15914,-15915,-15916,-15917,-15918,-15919,-1085,-14174,-15920,-1588,-1651,-15921,-12267, --1852,-15922,-6569,-2317,-15923,-2318,-2654,-11071,-2981,-15924,-15925, --15926,-15927], -[0,-15928,-15929,-15930,-4646,-15931,-4837,-4838,-15932,-2932,-932,-1278,-7300,-2091,-2423,-2469,-15130,-15933,-2476, --5627], -[0,-15934,-7300,-3944,-2318,-5511,-2476,-5173,-3527,-2410,-4591,-3160,-2316,-3161,-15935], -[1,3,10951], -[0,0,10952,10953,11], -[0,-3136,-1415,-2375,-2379,-2391,-2410], -[0,-3445,-4791,-9915,-15936,-15937,-15938,-15939,-15940,-15941,-15942,-15943,-775,-5272,-3100,-15944,-15945,-15946,-15947, --15948,-15949,-15950,-15951,-15952,-15953,-15954,-15955,-2410,-15956,-15957,-15958,-15959,-15960,-15961,-15962,-15963, --15964], -[1,3,10955], -[0,10956,10957,134,6], -[0,-2932,-2896], -[0,-1415,-932,-2127,-2375,-1942,-2410,-3136,-3040,-940,-967,-1419,-428,-427], -[1,3,10959], -[0,0,10960,10961,5], -[0,-3040,-3052,-2006,-2019,-2410], -[0,-2006,-8785,-3962,-15273], -[1,3,10963], -[0,10964,10965,10966,5], -[0,-15965,-15966,-15967], -[0,-15968,-15969,-15970,-15971,-15972,-15973,-15974,-15975,-15976,-15977,-15978,-15979,-15980,-15981,-15982,-15983,-15984, --15985,-15986,-15987,-15988,-15989,-15990], -[0,-2931,-4004,-3634,-10817,-4873,-664,-507,-856,-15991,-15992,-15993,-1446,-6024,-8257], -[1,3,10968], -[0,0,287,134,5], -[1,3,10970], -[0,10971,10972,10973,5], -[0,-15994,-15995,-15996,-15997,-15998,-15999,-16000,-16001,-16002,-13406,-16003,-16004,-16005,-1699,-2641,-2564,-2650], -[0,-4049,-3037,-3040,-3052,-2006,-2019,-2469,-16006], -[0,-16007,-1713,-2455,-16008,-2006,-3098,-3160,-3100,-2316,-2955,-16009,-16010,-15932,-3475,-16011,-16012,-16013,-16014, --16015,-16016,-16017,-16018,-16019,-16020,-16021], -[1,3,10975], -[0,0,0,10976,4], -[0,-12059,-775], -[1,3,10978], -[0,10979,10980,10981,4], -[0,-10782,-10784,-10786,-10793,-10788,-1691], -[0,-3136,-3037,-756,-1415,-1942,-2080,-2091,-2153,-2375,-2379,-2892,-2409,-2410], -[0,-5406,-4847,-856], -[1,3,10983], -[0,10984,10985,10986,5], -[0,-2650,-4225], -[0,-2466,-2006,-1122,-2019,-6859,-406,-440,-409,-407,-5323], -[0,-2006,-1122,-16022,-3862,-856,-10446], -[1,3,10988], -[0,10989,10990,10991,5], -[0,-1313,-1826,-865,-16023,-13074,-1582,-16024,-1125,-16025,-1456,-15672,-16026,-16027,-16028,-16029,-16030,-16031,-16032, --3234,-16033,-16034,-8863], -[0,-2564,-2391,-932,-1111,-2127,-2469,-2378,-3665,-2410,-23,-3037,-16035,-16036,-16037,-16038,-1025,-4776,-4049,-16039, --16040,-3664,-16041,-16042,-16043], -[0,-15932,-16044,-16045,-9733,-16046,-16047,-16048,-16049,-16050,-10412,-3674,-2410,-16051,-3161], -[1,3,10993], -[0,0,10994,10995,5], -[0,-50,-409,-3136,-855,-1415,-2634,-1942,-2006,-2019,-2052,-2125,-2375,-2410], -[0,-2006,-2634,-9736,-1713,-3122,-4215,-4004,-3634], -[1,3,10997], -[0,0,10998,10999,6], -[0,-262,-4066,-350,-351,-3561,-5295,-16052,-3136,-4647,-16053,-4837,-7438,-4838,-5593,-708,-740,-767,-1415,-1419,-1449, --1534,-6518,-1942,-2127,-2140,-2142,-2214,-2645,-2318,-2375,-2410,-2466,-2476,-2483,-2486,-8160], -[0,-2476,-3944,-16054,-16055,-16056,-15150,-2645,-16057,-2939,-7580,-15151,-16058,-2410,-16059,-2363,-3162,-3214,-3095, --3160], -[1,3,11001], -[0,94,0,11002,4], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-15071,-13615,-6527], -[1,3,11004], -[0,11005,11006,261,6], -[0,-16060,-4787,-3751,-1864,-1889,-2923,-2654], -[0,-25,-3195,-3180,-14337,-13397,-5322,-4066,-350,-7151,-4785,-10046,-4371,-14331,-6410,-653,-679,-729,-742,-754,-769, --5042,-865,-866,-14335,-928,-929,-989,-990,-14338,-14333,-7897,-1588,-1651,-5036,-1699,-1805,-1839,-1852,-14332,-1863, --1906,-1907,-14336,-12601,-11751,-7160,-2127,-2134,-2162,-3572,-2213,-14334,-2334,-3027,-11071,-2531], -[1,3,11008], -[0,0,0,11009,4], -[0,-2034,-3159,-5270,-5271,-11511,-770,-3162,-510,-2191,-11524,-11526,-7103,-16061,-16062,-2446], -[1,3,11011], -[0,0,37,288,9], -[1,3,11013], -[0,11014,11015,11016,9], -[0,-3165,-16063,-16064,-3168,-3698,-11418,-16065,-5772,-16066,-16067,-16068,-16069,-5702,-16070,-8859,-3778,-16071,-16072, --16073,-16074,-16075,-16076,-16077,-16078,-16079,-16080,-16081,-16082,-16083,-16084,-16085,-16086,-16087,-16088,-16089, --16090,-16091,-16092,-16093,-16094,-16095,-16096,-16097,-16098,-16099,-16100,-8863,-16101,-16102,-16103,-16104,-16105, --16106,-16107,-16108,-16109,-402,-16110,-16111,-16112,-15748,-16113,-16114, --16115,-16116,-16117,-16118,-15257,-485,-5674,-16119,-13751,-743,-16120,-809,-812,-16121,-834,-16122,-16123,-2761,-1025, --14636,-1043,-2573,-16124,-1125,-1329,-1349,-9775,-16125,-11895,-1359,-5193,-16126,-16127,-1495,-16128,-16129,-16130, --1549,-16131,-1593,-16132,-1610,-10749,-16133,-16134,-1699,-2634,-1712,-16135,-16136,-11750,-1782,-16137,-16138,-16139, --16140,-16010,-12273,-16141,-16142,-16143,-11926,-1855,-1857, --1867,-16144,-1885,-16145,-8504,-16146,-1984,-1994,-2006,-16147,-2019,-4988,-16148,-2025,-16149,-6620,-16150,-2042, --16151,-2044,-16152,-16153,-16154,-2093,-2095,-2096,-16155,-16156,-2177,-2193,-4245,-16157,-2272,-2292,-16158,-2592, --2314,-16159,-16160,-2594,-16161,-2436,-16162,-2446,-16163,-2531,-2548,-2564,-2650,-16164], -[0,-86,-14379,-16165,-16166,-16167,-16168,-16169,-16170,-10811,-16171,-3983,-5681,-3842,-407,-409,-410,-16172,-16173, --3198,-3048,-16174,-4049,-3044,-3164,-3037,-16175,-16176,-16177,-16178,-3040,-3052,-16179,-3199,-14748,-12969,-4231, --4204,-8200,-3664,-5329,-721,-734,-767,-772,-16180,-865,-866,-16181,-16182,-16183,-932,-16184,-16185,-1077,-1107,-1278, --1344,-11415,-16186,-1534,-1548,-1605,-16187, --1640,-1729,-1733,-12282,-1826,-1942,-2094,-4242,-16188,-2098,-11417,-2174,-16189,-2281,-2392,-2400,-2410,-2427,-2429, --2466,-2469], -[0,-3161,-16011,-16017,-1713,-16190,-16010,-16191,-16192,-16193,-16194], -[1,3,11018], -[0,291,135,63,5], -[1,3,11020], -[0,11021,131,11022,5], -[0,-8863,-3617,-719,-1004,-5193,-2426,-2564], -[0,-16195,-16196,-16197,-16198,-16199,-856,-10817], -[1,3,11024], -[0,11025,11026,11027,4], -[0,-4890,-13377], -[0,-2213,-1852,-2006,-2218,-2177,-2469,-13380,-2019,-2369,-3654,-3517,-1639,-1863,-2654,-2410,-3037,-3199,-14373,-4036, --5087,-16200,-2970], -[0,-2257,-4895,-2469,-3634,-4004,-3095,-3098,-13422,-2006,-2476,-2299,-4902], -[1,3,11029], -[0,11030,11031,11032,5], -[0,-997,-16201,-16202], -[0,-2501,-3136,-3037,-2503], -[0,-4123,-8503,-4004,-3634,-16203,-5858], -[1,3,11034], -[0,0,11035,11036,4], -[0,-526,-527,-534,-559,-562,-566,-567,-16204,-664,-16205,-13261,-796,-812,-829,-932,-943,-968,-974,-1017,-1041,-1077, --1322,-1331,-1471,-1474,-1475,-1479,-16206,-7707,-1480,-1482,-1483,-16207,-1484,-1487,-1488,-1492,-1654,-1753,-1860, --2125,-14439,-5471,-2174,-2416,-14648,-2437,-2501,-2505], -[0,-3576,-8897,-16208,-12613,-12449,-2363,-13616,-11594,-3162], -[1,3,11038], -[0,11039,11040,11041,5], -[0,-16209,-16210], -[0,-3040,-3052,-3804,-427,-428,-726,-932,-940,-967,-969,-16211,-16212,-1942,-2127,-2142,-2379,-2387,-2410], -[0,-16213,-16214,-16215,-2006,-5270,-5271,-3162,-16216], -[1,3,11043], -[0,0,11044,11045,6], -[0,-2006,-2034,-12566,-16217], -[0,-2034,-9021,-5270,-5271,-16218,-16219,-16220,-16221,-3161,-2006,-16222,-5269,-3209,-5922,-16223,-3682,-3970,-3110, --9437], -[1,3,11047], -[0,11048,0,11049,6], -[0,-2954,-2934], -[0,-712,-775,-3215], -[1,3,11051], -[0,0,0,11052,9], -[0,-714,-775], -[1,3,11054], -[0,11055,11056,11057,6], -[0,-16224,-23,-25,-3412,-42,-16225,-8863,-16226,-635,-719,-755,-815,-823,-834,-999,-1026,-1077,-12417,-1343,-1496,-1683, --1729,-1805,-1816,-1889,-1931,-1966,-2066,-16227,-2317,-2378,-2383,-2450,-2564,-8882], -[0,-4776,-3048,-3735,-16228,-2125,-2391,-2400,-2410], -[0,-3098,-3160,-2316,-16007,-2955], -[1,3,11059], -[0,0,0,11060,6], -[0,-2006,-2476,-9608,-9614,-16229,-16230], -[1,3,11062], -[0,0,11063,11064,6], -[0,-3136,-3037,-427,-428,-932,-936,-940,-958,-967,-968,-972,-978,-1107,-1415,-1942,-2125,-2127,-2130,-12925,-2142,-2375, --2379,-2402,-2405,-7322,-2410], -[0,-16231,-8785,-16232,-16233,-16234,-16235,-16236,-16237,-3173,-16238,-3966,-4865,-3100,-3445], -[1,3,11066], -[0,0,0,11067,6], -[0,-16239,-4053,-16240,-16241,-16242,-16243,-16244,-16245,-16246,-16247,-16248,-16249,-16250,-16251,-12512,-16252,-16253, --4055,-1456,-16254,-16244,-5495,-3100,-3214,-2410], -[1,3,11069], -[0,11070,0,73,4], -[0,-2984,-5766,-2860,-5758,-501,-523,-16255,-615,-16256,-14855,-1069,-1100,-1107,-9362,-8985,-5880,-1548,-1574,-1666, --1705,-10270,-1875,-1878,-2060,-2115,-2160,-2177,-2194,-2297,-5764,-2400,-2446,-2518,-2555], -[1,3,11072], -[0,11073,11074,11075,4], -[0,-15224,-15226], -[0,-3037,-15229,-15230,-15231,-2125,-2892,-2410,-2469], -[0,-15227,-9668,-3690,-3445,-1348,-9780], -[1,3,11077], -[0,11078,11079,11080,4], -[0,-1313,-1852,-2922,-6570,-2924,-11918,-12278,-7772,-6475,-4835,-1341,-16257,-8859,-12284,-8860,-16258,-16259], -[0,-2391,-2469,-5672,-6568,-2410,-3037,-8321,-16260,-2832,-11347], -[0,-1954,-10425,-16261,-8427,-3113,-7646,-3634], -[1,3,11082], -[0,11083,11084,11085,6], -[0,-16262,-16263], -[0,-16264,-767,-932,-1641,-16265,-1788,-1972,-16266,-2322], -[0,-5817,-5819,-5937,-13192,-5801,-16267,-16268,-5951,-5940,-5943,-16269,-3161], -[1,3,11087], -[0,11088,11089,7,4], -[0,-16270], -[0,-879,-2410,-7768], -[1,3,11091], -[0,11092,11093,11094,10], -[0,-2006,-2019,-16271], -[0,-1992,-2125,-2388,-2376,-1967,-2410,-23,-3037,-3040,-534,-3052,-3140,-520], -[0,-2356,-3488,-16272,-2006,-3496,-3264,-3494,-13460,-11889,-4258], -[1,3,11096], -[0,0,11097,11098,5], -[0,-12182,-190,-4225,-16273,-16274,-4836,-16275,-407,-409,-410,-3269,-3732,-3661,-3037,-3040,-3052,-16276,-14827,-651, --703,-724,-786,-932,-970,-2914,-1110,-1344,-1449,-1534,-1600,-1610,-1889,-1942,-8918,-2006,-16277,-2019,-2965,-16278, --2044,-2140,-2144,-16279,-2193,-2213,-2317,-2318,-2334,-16280,-2379,-2392,-2410,-2411,-11708,-2466,-6859,-15519,-2469, --16281,-2650], -[0,-2006,-3476,-9614,-6409,-16282,-4108,-12682,-12683,-12684,-4002,-4672,-9133], -[1,3,11100], -[0,11101,11102,11103,5], -[0,-4785,-12535,-462,-674,-742,-812,-14335,-1026,-1077,-1451,-1588,-1852,-1863,-2041,-2127,-2153], -[0,-16283,-16284,-4066,-350,-4062,-351,-365,-8894,-16285,-3202,-3198,-3048,-4963,-16286,-3037,-3040,-3052,-427,-428,-440, --4837,-679,-928,-13212,-932,-969,-4981,-1771,-13593,-2006,-2019,-2125,-2132,-6483,-2299,-2400,-2410,-2466,-16287,-2469, --2476], -[0,-12913,-5044,-10366,-16288,-5195,-16289,-16290,-4865,-16291], -[1,3,11105], -[0,11106,11107,7,5], -[0,-797,-16292,-16293], -[0,-652,-16294,-2392,-2466,-1449,-1654,-659,-932,-2127,-1110,-1942,-2378,-16295,-2468,-190,-2410,-3037,-1440,-3621,-16296, --7273,-3244,-16297,-4062,-16298,-7274,-3266,-1602,-940,-350,-428,-351,-427], -[1,3,11109], -[0,11110,11111,11112,6], -[0,-8612,-1063,-1343,-16299], -[0,-4835,-3037,-16300,-1313,-1722,-2359], -[0,-659,-13649,-16301,-16302,-11878,-6523,-6524,-6527,-5093,-16303,-7650,-16304,-16305,-6528,-3839,-5057], -[1,3,11114], -[0,11115,11116,11117,8], -[0,-16306], -[0,-2376,-2410,-2501,-2503,-2006,-2019,-3040,-3052], -[0,-2006,-16306,-6656,-6999,-9800,-16307,-6527,-3496,-7764,-16308,-5937,-5940,-5800,-8624], -[1,3,11119], -[0,11120,11121,11122,5], -[0,-14372,-13388,-5286], -[0,-2469,-1874], -[0,-4865,-1874,-3095,-7243,-4004,-3634], -[1,3,11124], -[0,11125,11126,11127,4], -[0,-502,-668,-679,-1098,-1099,-1125,-1304,-1351,-1535,-1610,-1978,-2177,-5977], -[0,-16309,-3802,-3199,-13186,-519,-659,-1788,-11926,-1942,-1944,-11491,-2379,-2384,-2410,-2541], -[0,-16310,-687,-16311,-856,-16312,-16313,-1599,-6528,-1978,-11096,-16314], -[1,3,11129], -[0,11130,11131,278,5], -[0,-668,-2550,-16315,-2823,-16316], -[0,-3037,-16317], -[1,3,11133], -[0,11134,91,11135,5], -[0,-2177,-2823,-16316,-16318], -[0,-15627,-15629,-15630,-4864,-3634,-3636], -[1,3,11137], -[0,11138,11139,11140,4], -[0,-16319,-16316,-16318,-2823], -[0,-2973,-16320,-15626,-5769,-1870,-11468], -[0,-15627,-15629,-15630,-4864,-3634,-3636,-11890], -[1,3,11142], -[0,11143,11144,11145,4], -[0,-719,-2683,-2822,-16321], -[0,-15624,-16322,-16323,-2983], -[0,-15279,-687,-3262,-856,-15280,-15281], -[1,3,11147], -[0,11148,0,11149,4], -[0,-16324], -[0,-15279,-15625,-16325,-16326,-856,-15280,-15281], -[1,3,11151], -[0,94,11152,11153,8], -[0,-3307,-12564,-4646,-3136,-3044,-3040,-3141,-427,-428,-721,-932,-940,-967,-1344,-1415,-16327,-1942,-2006,-2034,-12566, --2091,-2410], -[0,-2034,-3159,-5270,-5271,-16328,-16329,-3162,-5269,-3095,-6107,-7067,-14498,-11378,-2319], -[1,3,11155], -[0,11156,11157,11158,10], -[0,-2340], -[0,-16178,-1857], -[0,-10425,-6321,-3634,-7606,-2340], -[1,3,11160], -[0,11161,11162,7,6], -[0,-3195,-1864,-4247], -[0,-5694,-16224,-16330,-16331,-10097,-10098,-3037,-8523,-8200,-483,-8349,-16332,-928,-932,-16333,-1431,-1534,-1588,-2923, --2127,-3246,-2892,-2410,-16334,-15822,-2466,-2469,-2501,-2503,-2981], -[1,3,11164], -[0,72,0,11165,6], -[0,-15279,-15625,-16335,-856,-15280,-15281], -[1,3,11167], -[0,11168,0,11169,10], -[0,-16336], -[0,-15279,-15625,-16337,-6999,-856,-15280,-15281], -[1,3,11171], -[0,11172,0,73,5], -[0,-4716,-1548,-1582,-10515], -[1,3,11174], -[0,0,11175,11176,5], -[0,-50,-190,-3035,-3664,-469,-932,-940,-1942,-2125,-2134,-2210,-2334,-2384,-2387,-2402,-2405,-2411,-2466,-16338,-16339, --16340,-16341,-2468,-2469], -[0,-16342,-5177,-3214,-2410,-16343,-16344,-6899,-16345,-3162], -[1,3,11178], -[0,0,11179,11180,5], -[0,-50,-3037,-427,-428,-7438,-932,-940,-1003,-1654,-1942,-16346,-2134,-16347,-2210,-2402,-2405,-2410,-2466,-16338,-16339, --16340], -[0,-5177,-16343,-9475,-3999,-6899,-16345,-659,-7085,-3578,-3162], -[1,3,11182], -[0,11183,0,11184,4], -[0,-2357], -[0,-4144,-3214,-16348,-2987,-1942,-2410], -[1,3,11186], -[0,0,0,11187,4], -[0,-3015,-16349,-1520,-15360,-10440,-1764,-1787,-5895,-7442,-1882,-2177,-7969,-3682,-16350,-16351,-11713,-4304,-2552], -[1,3,11189], -[0,0,11190,7,4], -[0,-16352,-16353,-280,-16354,-16355,-350,-4062,-351,-7155,-4007,-11348,-16356,-16357,-11752,-719,-831,-16358,-3459,-1863, --2144,-16359,-16360], -[1,3,11192], -[0,11193,0,73,11], -[0,-2959,-2860,-5758,-8864,-5761,-523,-615,-617,-1004,-11676,-1341,-1548,-1582,-1635,-1676,-1851,-2185,-2400], -[1,3,11195], -[0,291,135,63,11], -[1,3,11197], -[0,11198,135,63,11], -[0,-3947,-231,-2944,-2900], -[1,3,11200], -[0,11201,11202,11203,10], -[0,-2564,-6860,-6415,-16361,-16362,-16363,-2292,-16364,-16365,-16122,-16366,-16367,-16368,-16369,-16370,-5038,-16371, --5779,-5782], -[0,-1683,-16178,-3631,-2410,-3037,-16372,-3617,-16373,-8859,-16374,-12285,-16375], -[0,-16376,-16377,-14981,-16378,-16379,-3445,-16380,-16381,-16382,-11877,-16383,-16384,-16385,-16386,-16387], -[1,3,11205], -[0,11206,11207,11208,10], -[0,-1047,-1863,-1875], -[0,-11337,-3040,-825,-1802,-12566,-2410], -[0,-2034,-5270,-5271,-12578,-7084,-12579,-3159,-12567,-2006,-3162,-3160,-3167,-3843,-9472,-9474,-3827], -[1,3,11210], -[0,11211,0,11212,8], -[0,-2460,-1641,-2683,-16324], -[0,-15279,-15625,-5398,-856,-15280,-15281], -[1,3,11214], -[0,0,11215,11216,9], -[0,-16388,-15583,-21,-23,-3203,-38,-40,-16389,-16390,-3326,-3561,-528,-533,-10056,-10022,-15127,-16391,-11899,-726,-865, --932,-956,-958,-9724,-1059,-11942,-13866,-1344,-1415,-5123,-12680,-4981,-4982,-1868,-16392,-1942,-1952,-1978,-16346, --2127,-16393,-2134,-2140,-2144,-2184,-2410], -[0,-3821,-3822,-3823,-3825,-16394,-16395], -[1,3,11218], -[0,0,11219,11220,9], -[0,-3266,-3621,-3037,-632,-664,-1654,-1753,-2127,-2344,-2410], -[0,-16396,-2998,-16397,-7049,-5176,-16398,-15100,-16055,-15213,-6899,-11853,-16399,-16400,-12543,-16401,-7198,-10724, --16402,-16403,-16404], -[1,3,11222], -[0,0,70,11223,9], -[0,-13351,-16405], -[1,3,11225], -[0,11226,11227,11228,9], -[0,-16406,-16407,-16408,-16409,-16410], -[0,-683,-932,-16411,-16412,-1989,-2281,-2282,-2334], -[0,-2363,-3576,-16413,-12449,-12613,-13615,-14054,-4865], -[1,3,11230], -[0,0,11231,11232,9], -[0,-664,-824,-1168,-1187,-9293,-1208,-1224,-1243,-1262,-16414,-1654], -[0,-4123,-11154,-11158,-1666,-1667,-4121], -[1,3,11234], -[0,0,0,11235,9], -[0,-3003,-7184,-5493,-11151,-16415,-8451,-3579,-8590,-3215], -[0,25,9], -[1,3,11238], -[0,11239,0,7,9], -[0,-637], -[1,3,11241], -[0,0,11242,11243,9], -[0,-1032,-2322], -[0,-3006,-10504,-10684,-16416,-11972], -[1,3,11245], -[0,0,11246,11247,9], -[0,-1654,-1003,-6851,-16417,-16418,-1818,-510], -[0,-6106,-1818,-16418,-6851], -[1,3,11249], -[0,0,0,11250,9], -[0,-16419,-14311], -[1,3,11252], -[0,11253,0,7,9], -[0,-1980,-10802,-2550,-2520,-1691,-2424,-693,-7109,-714,-2525], -[1,3,11255], -[0,11256,11257,11258,9], -[0,-1967,-16420], -[0,-21,-23,-36,-40,-41,-43,-509,-756,-915,-916,-932,-16421,-7894,-964,-969,-1449,-1654,-1788,-2006,-2019,-15571,-16422], -[0,-3839,-2034,-3010,-16423,-9682,-2006], -[1,3,11260], -[0,0,11261,7,9], -[0,-23,-40,-350,-5995,-351,-535,-571,-633,-1413,-1471,-1472,-1475,-1476,-1481,-3569,-1491,-1978,-2127,-2128,-16424,-8895, --16425,-8896,-2140,-2491], -[1,3,11263], -[0,0,11264,7,9], -[0,-2125,-1650,-16426,-16427], -[1,3,11266], -[0,0,11267,11268,9], -[0,-21,-23,-40,-528,-557,-932,-934,-940,-958,-967,-1415,-1942], -[0,-5845,-8799,-651,-16428,-3215,-16429,-7304,-6241,-8574,-12248,-6582,-1044,-6656,-8800,-3590,-5845,-6473,-3240] + "Flatpack JSON v2", + [ + 128, + "@alifd/next", + "@angular-devkit/core", + "@angular-devkit/schematics", + "@angular/animations", + "@angular/cdk", + "@angular/common", + "@angular/compiler", + "@angular/compiler-cli", + "@angular/core", + "@angular/forms", + "@angular/http", + "@angular/material", + "@angular/platform-browser", + "@angular/platform-browser-dynamic", + "@angular/platform-server", + "@angular/router", + "@ant-design/react-native", + "@ant-design/web3-common", + "@ant-design/web3-icons", + "@auth/sveltekit", + "@babel/cli", + "@babel/code-frame", + "@babel/core", + "@babel/helper-plugin-utils", + "@babel/parser", + "@babel/plugin-proposal-class-properties", + "@11ty/eleventy", + "@adobe/css-tools", + "@api-components/api-method-documentation", + "@apollo/client", + "@asyncapi/generator-react-sdk", + "@babel/eslint-parser", + "@babel/plugin-proposal-decorators", + "@babel/plugin-proposal-export-default-from", + "@babel/plugin-proposal-export-namespace-from", + "@babel/plugin-proposal-object-rest-spread", + "@babel/plugin-syntax-dynamic-import", + "@babel/plugin-transform-runtime", + "@babel/polyfill", + "@babel/preset-env", + "@babel/preset-react", + "@babel/preset-typescript", + "@babel/register", + "@babel/runtime", + "@babel/runtime-corejs2", + "@babel/traverse", + "@babel/types", + "@biz-dev-ops/md-docs", + "@bwcr_/winston-loki", + "@changesets/cli", + "@chatscope/chat-ui-kit-react", + "@ckeditor/ckeditor5-adapter-ckfinder", + "@ckeditor/ckeditor5-angular", + "@ckeditor/ckeditor5-autoformat", + "@ckeditor/ckeditor5-basic-styles", + "@ckeditor/ckeditor5-block-quote", + "@ckeditor/ckeditor5-build-balloon", + "@ckeditor/ckeditor5-build-balloon-block", + "@ckeditor/ckeditor5-build-classic", + "@ckeditor/ckeditor5-build-decoupled-document", + "@ckeditor/ckeditor5-build-inline", + "@ckeditor/ckeditor5-ckbox", + "@ckeditor/ckeditor5-ckfinder", + "@ckeditor/ckeditor5-clipboard", + "@ckeditor/ckeditor5-cloud-services", + "@ckeditor/ckeditor5-core", + "@ckeditor/ckeditor5-easy-image", + "@ckeditor/ckeditor5-engine", + "@ckeditor/ckeditor5-essentials", + "@ckeditor/ckeditor5-heading", + "@ckeditor/ckeditor5-image", + "@ckeditor/ckeditor5-indent", + "@ckeditor/ckeditor5-link", + "@ckeditor/ckeditor5-list", + "@ckeditor/ckeditor5-media-embed", + "@ckeditor/ckeditor5-paragraph", + "@ckeditor/ckeditor5-paste-from-office", + "@ckeditor/ckeditor5-react", + "@ckeditor/ckeditor5-table", + "@ckeditor/ckeditor5-typing", + "@ckeditor/ckeditor5-ui", + "@ckeditor/ckeditor5-upload", + "@ckeditor/ckeditor5-utils", + "@ckeditor/ckeditor5-vue", + "@ckeditor/ckeditor5-widget", + "@commitlint/cli", + "@compodoc/compodoc", + "@comunica/core", + "@contenthook/browser", + "@contenthook/cli", + "@contenthook/node", + "@coreui/coreui", + "@csstools/css-parser-algorithms", + "@csstools/css-tokenizer", + "@csstools/media-query-list-parser", + "@csstools/postcss-is-pseudo-class", + "@csstools/postcss-progressive-custom-properties", + "@csstools/selector-specificity", + "@cucumber/cucumber", + "@deven-org/documentation-skeleton", + "@devtea2026/aspernatur-ea-non-porro", + "@devtea2026/consectetur-ab-unde-quisquam", + "@devtea2026/cupiditate-dolorem-excepturi-impedit", + "@devtea2026/distinctio-soluta-illo-eaque", + "@devtea2026/eum-ullam-est-distinctio", + "@devtea2026/explicabo-alias-architecto-sed", + "@devtea2026/improved-journey", + "@devtea2026/inventore-facilis-corporis-cum", + "@devtea2026/ipsa-omnis-in-molestiae", + "@devtea2026/literate-computing-machine", + "@devtea2026/maxime-sequi-est-rem", + "@devtea2026/necessitatibus-dolorem-esse-atque", + "@devtea2026/odit-enim-reiciendis-pariatur", + "@devtea2026/odit-maxime-porro-asperiores", + "@devtea2026/possimus-ipsa-sint-consequuntur", + "@devtea2026/qui-quos-laborum-amet", + "@devtea2026/quia-ducimus-placeat-minima", + "@devtea2026/quidem-voluptate-repudiandae-necessitatibus", + "@devtea2026/rerum-quaerat-porro-animi", + "@devtea2026/ubiquitous-octo-memory", + "@diotoborg/adipisci-placeat-iure", + "@diotoborg/amet-architecto-est", + "@diotoborg/at-totam-perspiciatis", + "@diotoborg/commodi-voluptatum-libero", + "@diotoborg/delectus-necessitatibus-voluptatum", + "@diotoborg/deserunt-illo-tempora", + "@diotoborg/dicta-recusandae-veniam", + "@diotoborg/dolor-earum-quia", + "@diotoborg/dolor-tempora-fuga", + "@diotoborg/dolores-praesentium-assumenda", + "@diotoborg/eligendi-est-unde", + "@diotoborg/esse-accusantium-ratione", + "@diotoborg/illo-amet-architecto", + "@diotoborg/laudantium-itaque-esse", + "@diotoborg/libero-asperiores-at", + "@diotoborg/neque-inventore-corporis", + "@diotoborg/nostrum-eveniet-officiis", + "@diotoborg/odio-dolores-officia", + "@diotoborg/porro-modi-accusamus", + "@diotoborg/psychic-bassoon", + "@diotoborg/quasi-repellat-odit", + "@diotoborg/qui-ullam-ipsum", + "@diotoborg/quo-dolorem-ducimus", + "@diotoborg/ratione-error-odio", + "@diotoborg/repellat-blanditiis-quis", + "@diotoborg/tempora-voluptas-distinctio", + "@diotoborg/ullam-dignissimos-repudiandae", + "@diotoborg/velit-reiciendis-velit", + "@diotoborg/verbose-robot", + "@diplodoc/transform", + "@discordjs/rest", + "@disqada/workspace", + "@doc-tools/docs", + "@doc-tools/transform", + "@dramaorg/esse-praesentium-eligendi", + "@dramaorg/quae-dolore-nostrum", + "@eas-framework/server", + "@eightshift/frontend-libs", + "@electron/docs-parser", + "@emotion/babel-plugin", + "@emotion/core", + "@emotion/css", + "@emotion/styled", + "@erboladaiorg/ad-exercitationem-ducimus", + "@erboladaiorg/asperiores-earum-quaerat", + "@erboladaiorg/asperiores-fuga-sint", + "@erboladaiorg/asperiores-nam-adipisci", + "@erboladaiorg/autem-dolores-ipsam", + "@erboladaiorg/cupiditate-consectetur-porro", + "@erboladaiorg/cupiditate-pariatur-optio", + "@erboladaiorg/distinctio-tempora-quis", + "@erboladaiorg/error-atque-ea", + "@erboladaiorg/esse-ipsa-numquam", + "@erboladaiorg/ex-hic-molestias", + "@erboladaiorg/explicabo-eius-adipisci", + "@erboladaiorg/molestiae-voluptatibus-perferendis", + "@erboladaiorg/molestias-nulla-dolor", + "@erboladaiorg/nisi-culpa-cum", + "@erboladaiorg/officia-illum-aperiam", + "@erboladaiorg/perspiciatis-magni-ut", + "@erboladaiorg/quae-in-veniam", + "@erboladaiorg/quaerat-mollitia-adipisci", + "@erboladaiorg/quibusdam-itaque-tempora", + "@erboladaiorg/sint-deleniti-dolorem", + "@erboladaiorg/sit-nesciunt-amet", + "@erboladaiorg/tenetur-architecto-dolore", + "@erboladaiorg/ut-dignissimos-laborum", + "@erboladaiorg/velit-fugit-harum", + "@eslint-community/eslint-utils", + "@eslint/js", + "@fakeyanss/redoc", + "@floating-ui/react-dom", + "@fontsource/inter", + "@fontsource/roboto", + "@fortawesome/fontawesome-svg-core", + "@fortawesome/free-solid-svg-icons", + "@fortawesome/react-fontawesome", + "@grandlinex/core", + "@grandlinex/e-kernel", + "@grandlinex/kernel", + "@graphql-markdown/core", + "@graphql-markdown/docusaurus", + "@hajtech/webpack-config", + "@hapi/hapi", + "@hishprorg/aliquid-ad-vero", + "@hishprorg/autem-sint-quas", + "@hishprorg/cum-rem-consequuntur", + "@hishprorg/earum-sint-veritatis", + "@hishprorg/eius-vero-dicta", + "@hishprorg/est-dicta-quis", + "@hishprorg/incidunt-quibusdam-tempore", + "@hishprorg/itaque-esse-accusamus", + "@hishprorg/iure-optio-nihil", + "@hishprorg/magni-amet-id", + "@hishprorg/magni-nisi-aperiam", + "@hishprorg/maxime-voluptates-enim", + "@hishprorg/nihil-ad-ratione", + "@hishprorg/perspiciatis-ratione-unde", + "@hishprorg/quis-perferendis-culpa", + "@hishprorg/reprehenderit-excepturi-sed", + "@hishprorg/sint-nam-consequuntur", + "@hishprorg/sunt-officia-eligendi", + "@hishprorg/sunt-voluptatem-nobis", + "@hishprorg/unde-vitae-reprehenderit", + "@hishprorg/wafflejs", + "@homer0/prettier-plugin-jsdoc", + "@hookform/resolvers", + "@iamtraction/google-translate", + "@idux/cdk", + "@idux/components", + "@inquirer/core", + "@ionic/core", + "@isaacs/cliui", + "@istanbuljs/nyc-config-typescript", + "@itwin/itwinui-react", + "@jest/core", + "@jest/types", + "@jsonforms/core", + "@jsonforms/material-renderers", + "@jsonforms/react", + "@juigorg/nisi-molestiae-ut", + "@juigorg/sit-nam-neque", + "@jupyterlab/application", + "@kobedevi/sassdoc", + "@kollorg/dicta-itaque-nemo", + "@kollorg/nihil-veniam-deserunt", + "@libphamton/chatfanpage", + "@libphamton/fb-group", + "@listr2/prompt-adapter-inquirer", + "@mantine/core", + "@mantine/dates", + "@mantine/hooks", + "@mantine/modals", + "@mantine/notifications", + "@mantine/prism", + "@mantine/styles", + "@mantine/utils", + "@material-ui/core", + "@material-ui/icons", + "@mathematikoi/jsonapi", + "@mdx-js/react", + "@microsoft/api-extractor", + "@microsoft/tsdoc", + "@microsoft/tsdoc-config", + "@middy/core", + "@middy/http-json-body-parser", + "@middy/util", + "@ministryofjustice/frontend", + "@mswjs/interceptors", + "@mui/icons-material", + "@mui/lab", + "@mui/material", + "@mui/system", + "@mui/x-date-pickers", + "@neato/guider", + "@ng-doc/core", + "@ng-doc/ui-kit", + "@ng-doc/utils", + "@nomicfoundation/hardhat-chai-matchers", + "@npmcli/arborist", + "@npmcli/map-workspaces", + "@npmcli/node-gyp", + "@npmcli/run-script", + "@npmcorp/marky-markdown", + "@npmtuanmap/ex-vel-expedita-impedit", + "@npmtuanmap/psychic-guide", + "@npmtuanmap/recusandae-recusandae-nam-et", + "@npmtuanmap/sed-quo-nemo-rerum", + "@npmtuanmap/velit-esse-velit-magnam", + "@nrwl/devkit", + "@nrwl/tao", + "@nrwl/workspace", + "@nx/devkit", + "@nx/esbuild", + "@nx/eslint", + "@nx/express", + "@nx/js", + "@nx/nest", + "@nx/node", + "@nx/workspace", + "@oclif/command", + "@oclif/config", + "@oclif/core", + "@oclif/plugin-help", + "@octokit/rest", + "@opentiny/vue", + "@opentiny/vue-renderless", + "@opentiny/vue-theme", + "@opentiny/vue-theme-mobile", + "@otterhttp/cookie", + "@otterhttp/request", + "@otterhttp/response", + "@otterhttp/send", + "@pact-foundation/pact", + "@patrtorg/a-ad-expedita", + "@patrtorg/a-ut-amet", + "@patrtorg/asperiores-vel-accusantium", + "@patrtorg/aspernatur-dolorum-ducimus", + "@patrtorg/autem-et-hic", + "@patrtorg/consectetur-culpa-non", + "@patrtorg/consectetur-repudiandae-consequuntur", + "@patrtorg/consequatur-voluptatum-officiis", + "@patrtorg/ducimus-magni-quibusdam", + "@patrtorg/enim-magni-hic", + "@patrtorg/est-corrupti-deleniti", + "@patrtorg/eveniet-tempore-maiores", + "@patrtorg/illum-sapiente-quos", + "@patrtorg/laborum-doloribus-voluptate", + "@patrtorg/libero-doloribus-omnis", + "@patrtorg/libero-voluptas-sequi", + "@patrtorg/magnam-aut-adipisci", + "@patrtorg/maiores-quidem-quo", + "@patrtorg/molestias-molestias-ut", + "@patrtorg/nam-eius-unde", + "@patrtorg/pariatur-deleniti-quaerat", + "@patrtorg/porro-labore-eos", + "@patrtorg/quae-earum-eius", + "@patrtorg/quos-quasi-ipsa", + "@patrtorg/sapiente-eos-magnam", + "@patrtorg/sapiente-exercitationem-sit", + "@patrtorg/tenetur-animi-reprehenderit", + "@perseid/store", + "@phosphor/widgets", + "@phun-ky/speccer", + "@polymer/polymer", + "@qooxdoo/framework", + "@quasar/extras", + "@readyplayerme/visage", + "@reduxjs/toolkit", + "@rollup/plugin-commonjs", + "@rollup/plugin-node-resolve", + "@sanity/tsdoc", + "@scalar/api-reference", + "@scalar/fastify-api-reference", + "@serenity-js/protractor", + "@serenity-js/webdriverio", + "@sinonjs/fake-timers", + "@storybook/addon-docs", + "@subwallet/react-ui", + "@supernovaio/sdk", + "@supernovaio/sdk-exporters", + "@supernovaio/supernova-sdk", + "@sveltejs/eslint-config", + "@sveltejs/kit", + "@sveltejs/vite-plugin-svelte", + "@svgr/webpack", + "@swc/core", + "@swenkerorg/maiores-voluptatibus-nemo", + "@swenkerorg/modi-dolorum-provident", + "@swenkerorg/nulla-voluptates-voluptates", + "@swisspost/design-system-styles", + "@symbiotejs/symbiote", + "@synion/md-docs", + "@taktikorg/aut-distinctio-repellat", + "@taktikorg/consectetur-quo-quos", + "@taktikorg/corporis-nihil-odit", + "@taktikorg/deleniti-qui-dolorem", + "@taktikorg/dolor-ratione-quibusdam", + "@taktikorg/harum-reprehenderit-perferendis", + "@taktikorg/illum-accusamus-possimus", + "@taktikorg/ipsa-totam-aperiam", + "@taktikorg/iste-ex-tempore", + "@taktikorg/itaque-nam-eos", + "@taktikorg/itaque-tempore-exercitationem", + "@taktikorg/maiores-dolores-aut", + "@taktikorg/molestias-fuga-possimus", + "@taktikorg/nam-esse-animi", + "@taktikorg/necessitatibus-repudiandae-officia", + "@taktikorg/nisi-reprehenderit-amet", + "@taktikorg/placeat-voluptates-dolorum", + "@taktikorg/praesentium-dolorum-quis", + "@taktikorg/praesentium-neque-ipsam", + "@taktikorg/quo-reiciendis-quibusdam", + "@taktikorg/recusandae-ratione-veniam", + "@taktikorg/similique-natus-officia", + "@taktikorg/suscipit-modi-ratione", + "@taktikorg/tempore-veniam-in", + "@taktikorg/unde-animi-omnis", + "@taktikorg/velit-nobis-blanditiis", + "@taktikorg/voluptatem-pariatur-tenetur", + "@tanem/svg-injector", + "@tanstack/react-query", + "@tanstack/svelte-query", + "@teamhanko/hanko-frontend-sdk", + "@testing-library/cypress", + "@testing-library/dom", + "@testing-library/jest-dom", + "@testing-library/jest-native", + "@testing-library/react", + "@testing-library/user-event", + "@tinyhttp/app", + "@tinyhttp/cookie", + "@tinyhttp/cookie-signature", + "@tinyhttp/cors", + "@tinyhttp/etag", + "@tinyhttp/forwarded", + "@tinyhttp/proxy-addr", + "@tinyhttp/req", + "@tinyhttp/res", + "@tinyhttp/router", + "@tinyhttp/send", + "@tinyhttp/type-is", + "@tinyhttp/url", + "@tsparticles/engine", + "@twurple/ebs-helper", + "@types/estree", + "@typescript-eslint/eslint-plugin", + "@typescript-eslint/parser", + "@typescript-eslint/utils", + "@ucloud-fe/react-components", + "@udecode/plate-core", + "@uiw/react-button", + "@uiw/react-icon", + "@uiw/react-input", + "@uiw/react-overlay-trigger", + "@uiw/utils", + "@unleash/proxy", + "@uploadcare/file-uploader", + "@vitejs/plugin-legacy", + "@vitejs/plugin-react", + "@vue/eslint-config-typescript", + "@wesleytodd/openapi", + "@wuxh/dumi", + "@zitterorg/adipisci-quae-eius", + "@zitterorg/aspernatur-pariatur-occaecati", + "@zitterorg/at-esse-odit", + "@zitterorg/cum-ipsum-beatae", + "@zitterorg/doloremque-ut-omnis", + "@zitterorg/est-sunt-quos", + "@zitterorg/eum-veritatis-placeat", + "@zitterorg/fluffy-waddle", + "@zitterorg/glowing-barnacle", + "@zitterorg/illum-perferendis-consectetur", + "@zitterorg/itaque-nisi-veritatis", + "@zitterorg/probable-octo", + "@zitterorg/upgraded-fishstick", + "@zkportal/aleo-oracle-sdk", + "abort-controller", + "accepts", + "acl", + "acorn", + "acorn-walk", + "action-cli", + "adm-zip", + "after", + "agenda", + "aid-guard1", + "airtap", + "ajv", + "ajv-formats", + "although-line-wall-corn", + "amqp", + "amqplib", + "analsorhost-simple-bs", + "angular", + "angular-animate", + "angular-cli", + "angular-material", + "ansi-colors", + "ansi-escapes", + "ansi-regex", + "ansi-styles", + "ansis", + "ant-design-vue", + "antd", + "antfu", + "anyway-south-boy-pilot", + "api-console", + "apidoc", + "apidoc-markdown", + "apn", + "apollo-cache-inmemory", + "apollo-client", + "apollo-link", + "apollo-link-http", + "app-root-path", + "appium-android-driver", + "apple-transportation-web3-locate", + "applicationinsights", + "appsync-client-node", + "archiver", + "arg", + "argparse", + "arrangement-tell-arrange", + "array.prototype.flatmap", + "arrify", + "assert", + "assert-plus", + "assume", + "async", + "async-listen", + "async-retry", + "async-validator", + "atob", + "aud", + "auto-changelog", + "auto-install", + "autoprefixer", + "ava", + "awesome-typescript-loader", + "aws-sdk", + "axe-core", + "axios", + "azure-storage", + "babel", + "babel-cli", + "babel-core", + "babel-eslint", + "babel-generator", + "babel-helper-fixtures", + "babel-helper-plugin-test-runner", + "babel-helper-vue-jsx-merge-props", + "babel-jest", + "babel-loader", + "babel-plugin-add-module-exports", + "babel-plugin-dynamic-import-node", + "babel-plugin-external-helpers", + "babel-plugin-import", + "babel-plugin-istanbul", + "babel-plugin-lodash", + "babel-plugin-module-resolver", + "babel-plugin-named-asset-import", + "babel-plugin-syntax-dynamic-import", + "babel-plugin-syntax-jsx", + "babel-plugin-transform-async-to-generator", + "babel-plugin-transform-class-properties", + "babel-plugin-transform-decorators-legacy", + "babel-plugin-transform-es2015-block-scoping", + "babel-plugin-transform-es2015-modules-commonjs", + "babel-plugin-transform-es2015-template-literals", + "babel-plugin-transform-object-rest-spread", + "babel-plugin-transform-react-jsx", + "babel-plugin-transform-react-remove-prop-types", + "babel-plugin-transform-regenerator", + "babel-plugin-transform-runtime", + "babel-polyfill", + "babel-preset-airbnb", + "babel-preset-env", + "babel-preset-es2015", + "babel-preset-react", + "babel-preset-react-app", + "babel-preset-stage-0", + "babel-preset-stage-1", + "babel-preset-stage-2", + "babel-preset-stage-3", + "babel-register", + "babel-runtime", + "babel-template", + "babel-traverse", + "babel-types", + "babelify", + "babylon", + "backbone", + "baqend", + "bark-needs-visit4", + "base-64", + "base-individual-comfortable-crop", + "base64-js", + "basic-auth", + "batuta", + "bcrypt", + "bcrypt-nodejs", + "bcryptjs", + "bearcat", + "beautify-benchmark", + "beauty-foot-compass5", + "beefy", + "believed-usually-greater-passage", + "benchmark", + "best-lips-shoulder", + "best-valley2", + "between-cry-additional", + "beyond", + "bfj", + "bignumber.js", + "bindings", + "bip39", + "bizcharts", + "bl", + "blanket", + "blessed", + "blessed-contrib", + "blockchain-am5", + "blockchain-baby", + "blockchain-back1", + "blockchain-closely", + "blockchain-directly", + "blockchain-egg", + "blockchain-happily", + "blockchain-language", + "blockchain-own8", + "blockchain-record", + "blockchain-scientist", + "blocked", + "bluebird", + "bn.js", + "body-parser", + "bookshelf", + "boom", + "bootstrap", + "bootstrap-sass", + "bower", + "boxen", + "brain", + "branch-body-web3-feel", + "branch-camera-web3-organization", + "brfs", + "broccoli-funnel", + "broccoli-merge-trees", + "broccoli-test-helper", + "brought-tried-whether8", + "browser-sync", + "browserify", + "browserify-shim", + "browserslist", + "bs58", + "bson", + "btoa", + "buble", + "buffer", + "buffer-equal", + "bufferutil", + "built-who-entire", + "builtin-modules", + "bulma", + "bump-cli", + "bundle-collapser", + "bunyan", + "busboy", + "bytebuffer", + "bytes", + "c8", + "cac", + "cache-manager", + "call-bind", + "camelcase", + "caniuse", + "caniuse-lite", + "canvas", + "careful-faster-dirty-matter", + "case-sensitive-paths-webpack-plugin", + "casperjs", + "caught-brain-service0", + "chai", + "chai-as-promised", + "chai-passport-strategy", + "chai-subset", + "chalk", + "chance", + "chance-able-necessary-bell", + "change-case", + "changelogen", + "chart.js", + "cheerio", + "chicken-fell-spread", + "child_process", + "child-process-promise", + "choerodon-ui", + "chokidar", + "ci-info", + "ckeditor5", + "classnames", + "clean-css", + "clean-webpack-plugin", + "clear", + "clear-module", + "cli", + "cli-boxes", + "cli-color", + "cli-cursor", + "cli-spinner", + "cli-spinners", + "cli-table", + "cli-table2", + "cli-table3", + "cli-truncate", + "cli-ux", + "clipanion", + "clipboard", + "clipboardy", + "cliui", + "clone", + "clsx", + "clui", + "co", + "co-prompt", + "code", + "codecov", + "codemirror", + "coffee-script", + "coffeescript", + "color", + "colorette", + "colors", + "columnify", + "command-exists", + "command-line-args", + "command-line-usage", + "commander", + "commitizen", + "commitlint", + "common-tags", + "component-emitter", + "compression", + "concat-stream", + "concurrently", + "config", + "configstore", + "connect", + "connect-flash", + "connect-history-api-fallback", + "connect-mongo", + "connect-redis", + "consola", + "consolidate", + "content-disposition", + "content-type", + "contenthook", + "conventional-changelog", + "conventional-changelog-cli", + "conventional-changelog-conventionalcommits", + "convert-source-map", + "cookie", + "cookie-parser", + "cookie-session", + "cookie-signature", + "copy-to-clipboard", + "copy-webpack-plugin", + "copyfiles", + "corcojs-qrcode", + "corcojs-qrcode-logo", + "cordova", + "core-js", + "cors", + "cosmiconfig", + "coveralls", + "cpy-cli", + "crawler", + "crc", + "create-hash", + "create-react-class", + "critical", + "cron", + "croner", + "cronnor", + "cropperjs", + "cross-env", + "cross-fetch", + "cross-spawn", + "crypto", + "crypto-browserify", + "crypto-js", + "cson-parser", + "cspell", + "css", + "css-declaration-sorter", + "css-functions-list", + "css-loader", + "css-minimizer-webpack-plugin", + "css-select", + "css-tree", + "cssdb", + "cssesc", + "cssnano", + "cssstyle", + "csstype", + "csurf", + "csv", + "csv-generate", + "csv-parse", + "csv-stringify", + "csvtojson", + "cucumber", + "cuid", + "cypress", + "cz-conventional-changelog", + "d3", + "d3-array", + "d3-scale", + "d3-selection", + "d3-shape", + "dable-effect", + "daisyui", + "dance-you-thou", + "dargs", + "datafire", + "date-fns", + "dateformat", + "dayjs", + "deasync", + "debounce", + "debug", + "decamelize", + "decompress", + "dedent", + "dedupe", + "deep-assign", + "deep-consist-ability3", + "deep-diff", + "deep-eql", + "deep-equal", + "deep-extend", + "deepmerge", + "del", + "del-cli", + "delay", + "depcheck", + "depd", + "dependency-check", + "depth-clay-tax7", + "detect-indent", + "detect-port", + "did-enter-lay", + "diff", + "diff2html", + "difference-mile-pocket5", + "directed-graph-typed", + "dirty-chai", + "discord-backend-manager", + "discord.js", + "dist", + "distance-its-clear-rate", + "dmd", + "dmd-grunt-jsdoc2md", + "dnd-multi-backend", + "dnode", + "doc-detective", + "doc-detective-core", + "docco", + "docgen", + "dockerode", + "docpad", + "docschema", + "docsify-tabs", + "doctoc", + "documentation", + "documentdb", + "docusaurus", + "docusaurus-lunr-search", + "dom-helpers", + "dom-serializer", + "dom-to-image-more", + "dompurify", + "dot", + "dotenv", + "dotenv-expand", + "download", + "download-git-repo", + "doxdox", + "doxdox-cli", + "doxdox-core", + "doxdox-parser-dox", + "doxdox-parser-jsdoc", + "doxdox-renderer-bootstrap", + "doxdox-renderer-json", + "doxdox-renderer-markdown", + "draft-js", + "dropzone", + "dtslint", + "dubnium", + "dumi", + "dumi-cm", + "duplexer", + "dw-neit-antd", + "each", + "echarts", + "eclint", + "ejs", + "elasticsearch", + "electricity-death-web3-story", + "electron", + "electron-builder", + "electron-packager", + "electron-prebuilt", + "electron-rebuilder", + "element-resize-detector", + "element-ui", + "eleventy", + "elliptic", + "email-templates", + "emailjs", + "ember-cli", + "ember-cli-babel", + "ember-cli-htmlbars", + "emmet", + "emotion", + "encodeurl", + "end-of-stream", + "enhanced-resolve", + "enquirer", + "ent", + "enumtype", + "envify", + "envinfo", + "enzyme", + "enzyme-adapter-react-16", + "enzyme-adapter-utils", + "enzyme-shallow-equal", + "errorhandler", + "es-check", + "es-value-fixtures", + "es5-ext", + "es5-shim", + "es6-error", + "es6-promise", + "es6-promisify", + "es6-shim", + "esbuild", + "escape-html", + "escape-string-regexp", + "escodegen", + "eslint", + "eslint-config-airbnb", + "eslint-config-airbnb-base", + "eslint-config-airbnb-typescript", + "eslint-config-google", + "eslint-config-gulp", + "eslint-config-oclif", + "eslint-config-oclif-typescript", + "eslint-config-prettier", + "eslint-config-react-app", + "eslint-config-semistandard", + "eslint-config-standard", + "eslint-config-unjs", + "eslint-config-xo", + "eslint-config-xo-lass", + "eslint-doc-generator", + "eslint-import-resolver-typescript", + "eslint-loader", + "eslint-plugin-ava", + "eslint-plugin-babel", + "eslint-plugin-compat", + "eslint-plugin-es5", + "eslint-plugin-eslint-comments", + "eslint-plugin-eslint-plugin", + "eslint-plugin-flowtype", + "eslint-plugin-html", + "eslint-plugin-import", + "eslint-plugin-jest", + "eslint-plugin-jsdoc", + "eslint-plugin-jsonc", + "eslint-plugin-jsx-a11y", + "eslint-plugin-markdown", + "eslint-plugin-mocha", + "eslint-plugin-n", + "eslint-plugin-node", + "eslint-plugin-prettier", + "eslint-plugin-promise", + "eslint-plugin-react", + "eslint-plugin-react-hooks", + "eslint-plugin-regexp", + "eslint-plugin-security", + "eslint-plugin-sonarjs", + "eslint-plugin-standard", + "eslint-plugin-svelte", + "eslint-plugin-testing-library", + "eslint-plugin-tsdoc", + "eslint-plugin-unicorn", + "eslint-plugin-vitest", + "eslint-plugin-vue", + "eslint-remote-tester", + "eslint-scope", + "eslint-visitor-keys", + "eslintrc", + "esm", + "espree", + "esprima", + "estraverse", + "estree-walker", + "etag", + "ethereumjs-tx", + "ethereumjs-util", + "evalmd", + "event-stream", + "eventemitter2", + "eventemitter3", + "events", + "excellent-difficult-good", + "execa", + "exit", + "expect", + "expect-type", + "expect.js", + "express", + "express-adexe", + "express-autodoc", + "express-generator", + "express-handlebars", + "express-jwt", + "express-session", + "express-tools", + "express-typed-rpc", + "express-validator", + "express-zod-api", + "extend", + "extend-shallow", + "extract-text-webpack-plugin", + "extract-zip", + "facing-cook", + "fair-tower-web3-store", + "faker", + "fancy-log", + "fast-check", + "fast-csv", + "fast-deep-equal", + "fast-glob", + "fast-plist", + "fast-xml-parser", + "fastclick", + "fastify", + "father", + "faucet", + "fbjs", + "fe-pilot", + "feature-rising-small7", + "femo", + "fetch-mock", + "fibers", + "figlet", + "figures", + "file-loader", + "file-saver", + "file-type", + "filesize", + "finalhandler", + "find-cache-dir", + "find-up", + "findup-sync", + "firan-logging", + "firebase", + "firebase-admin", + "firebase-tools", + "fixpack", + "fixturify", + "flat", + "flatpak-bundler", + "flatpickr", + "flightplan", + "flow-bin", + "flowbite", + "fluent-ffmpeg", + "flux", + "follow-redirects", + "font-awesome", + "for-each", + "forever", + "fork-ts-checker-webpack-plugin", + "fork-ts-checker-webpack-plugin-alt", + "form-data", + "formidable", + "formik", + "fresh", + "fresh-dangerous", + "friendly-errors-webpack-plugin", + "front-matter", + "fs", + "fs-extra", + "fs-jetpack", + "fs-promise", + "fsevents", + "fstream", + "ftp", + "functions-have-names", + "fur-race-web3-pale", + "fuse.js", + "futen", + "fuzzy", + "gaze", + "gc-signals", + "generator-angular", + "generator-gulp-angular", + "generator-nitro", + "generic-pool", + "gensequence", + "gentle-party-other", + "geolib", + "get-package-type", + "get-port", + "get-stdin", + "get-stream", + "get-tsconfig", + "getmac", + "gh-pages", + "ghooks", + "github", + "github-buttons", + "glob", + "glob-parent", + "global", + "globals", + "globby", + "gm", + "gmll", + "google-spreadsheet", + "googleapis", + "got", + "government-letter-web3-till", + "govuk-frontend", + "graceful-fs", + "gradually-current-chief", + "graph-these", + "graphql", + "graphql-tag", + "graphql-tools", + "gray-matter", + "grpc", + "grunt", + "grunt-angular-templates", + "grunt-auto-release", + "grunt-browserify", + "grunt-bump", + "grunt-cli", + "grunt-concurrent", + "grunt-contrib-clean", + "grunt-contrib-compass", + "grunt-contrib-concat", + "grunt-contrib-connect", + "grunt-contrib-copy", + "grunt-contrib-csslint", + "grunt-contrib-cssmin", + "grunt-contrib-htmlmin", + "grunt-contrib-imagemin", + "grunt-contrib-internal", + "grunt-contrib-jshint", + "grunt-contrib-less", + "grunt-contrib-nodeunit", + "grunt-contrib-sass", + "grunt-contrib-uglify", + "grunt-contrib-watch", + "grunt-conventional-changelog", + "grunt-conventional-github-releaser", + "grunt-eslint", + "grunt-jscs", + "grunt-jsdoc", + "grunt-karma", + "grunt-mocha-test", + "grunt-newer", + "grunt-notify", + "grunt-npm", + "grunt-sass", + "grunt-saucelabs", + "grunt-shell", + "grunt-simple-mocha", + "grunt-spritesmith", + "grunt-usemin", + "gts", + "guarapi", + "gulp", + "gulp-angular-templatecache", + "gulp-atom-electron", + "gulp-autoprefixer", + "gulp-awspublish", + "gulp-azure-storage", + "gulp-babel", + "gulp-bom", + "gulp-bower", + "gulp-browserify", + "gulp-buffer", + "gulp-bump", + "gulp-cache", + "gulp-cached", + "gulp-changed", + "gulp-clean", + "gulp-clean-css", + "gulp-coffee", + "gulp-compass", + "gulp-concat", + "gulp-concat-css", + "gulp-conflict", + "gulp-connect", + "gulp-copy", + "gulp-csscomb", + "gulp-csslint", + "gulp-cssnano", + "gulp-csso", + "gulp-data", + "gulp-eslint", + "gulp-file-include", + "gulp-filter", + "gulp-flatmap", + "gulp-flatten", + "gulp-format-md", + "gulp-ftp", + "gulp-gh-pages", + "gulp-git", + "gulp-gzip", + "gulp-handlebars", + "gulp-header", + "gulp-html-replace", + "gulp-htmlmin", + "gulp-iconfont", + "gulp-if", + "gulp-ignore", + "gulp-image-resize", + "gulp-imagemin", + "gulp-include", + "gulp-inject", + "gulp-inline-css", + "gulp-install", + "gulp-istanbul", + "gulp-jade", + "gulp-jasmine", + "gulp-jscs", + "gulp-jshint", + "gulp-json-editor", + "gulp-less", + "gulp-livereload", + "gulp-load-plugins", + "gulp-minify-css", + "gulp-minify-html", + "gulp-mocha", + "gulp-newer", + "gulp-ng-annotate", + "gulp-nodemon", + "gulp-notify", + "gulp-plugin-extras", + "gulp-plumber", + "gulp-postcss", + "gulp-preprocess", + "gulp-prompt", + "gulp-react", + "gulp-remote-src", + "gulp-rename", + "gulp-replace", + "gulp-rev", + "gulp-rev-replace", + "gulp-ruby-sass", + "gulp-sass", + "gulp-sftp", + "gulp-shell", + "gulp-size", + "gulp-sourcemaps", + "gulp-strip-debug", + "gulp-stylus", + "gulp-svg-sprite", + "gulp-svgmin", + "gulp-svgstore", + "gulp-template", + "gulp-tsb", + "gulp-tslint", + "gulp-typescript", + "gulp-uglify", + "gulp-uncss", + "gulp-usemin", + "gulp-useref", + "gulp-util", + "gulp-vinyl-zip", + "gulp-watch", + "gulp-webpack", + "gulp-webserver", + "gulp-zip", + "gulp.spritesmith", + "gzip-size", + "hallmark", + "hammerjs", + "handlebars", + "hapi", + "happy-dom", + "happy-meant", + "hard-cool-rhythm-continued", + "has-flag", + "has-parts-ice-fact", + "has-symbols", + "hash-sum", + "hasown", + "hast-util-raw", + "hast-util-sanitize", + "hast-util-select", + "hast-util-to-estree", + "hast-util-to-html", + "hast-util-to-jsx-runtime", + "hast-util-to-string", + "hast-util-to-text", + "hastscript", + "hay-against-any-hurry", + "hbs", + "he", + "heapdump", + "helmet", + "heroicons", + "hexlet-pairs", + "hexo", + "highland", + "highlight.js", + "hiredis", + "history", + "history-brass-sound", + "hit-running-special8", + "hoek", + "hogan.js", + "hoist-non-react-statics", + "homebridge", + "hono", + "hope-slight-walk1", + "hosted-git-info", + "how-to-npm", + "html-dom-parser", + "html-element-attributes", + "html-encoding-sniffer", + "html-entities", + "html-escaper", + "html-loader", + "html-minifier", + "html-minifier-terser", + "html-pdf", + "html-react-parser", + "html-tags", + "html-to-image", + "html-to-text", + "html-validate", + "html-webpack-plugin", + "htmlnano", + "htmlparser2", + "http", + "http-errors", + "http-proxy", + "http-proxy-agent", + "http-proxy-middleware", + "http-server", + "http-status", + "http-status-codes", + "https", + "https-proxy-agent", + "husky", + "hyperquest", + "hyphenate-style-name", + "i", + "i18n", + "i18next", + "i18next-gridly-backend", + "iconv-lite", + "identity-obj-proxy", + "ignore", + "image-size", + "imagemagick", + "imagemin", + "imagemin-pngquant", + "imap", + "immer", + "immutability-helper", + "immutable", + "import-fresh", + "import-local", + "impress", + "in-publish", + "indent-string", + "inert", + "inferno", + "inflection", + "inherits", + "ini", + "iniparser", + "ink", + "inline-style-parser", + "innosetup-compiler", + "inquirer", + "inquirer-autocomplete-prompt", + "inside-throw", + "instagram-node", + "install", + "interpret", + "intl", + "intl-tel-input", + "invariant", + "inversify", + "ionic", + "ionicons", + "ioredis", + "ip", + "irc", + "is", + "is-ci", + "is-glob", + "is-installed-globally", + "is-plain-obj", + "is-plain-object", + "is-potential-custom-element-name", + "is-promise", + "is-stream", + "is-url", + "is-wsl", + "isarray", + "isobject", + "isomorphic-fetch", + "istanbul", + "itwcw-package-analytics", + "iview", + "jackspeak", + "jade", + "jake", + "jarallax", + "jasmine", + "jasmine-core", + "jasmine-node", + "jest", + "jest-canvas-mock", + "jest-cli", + "jest-diff", + "jest-environment-jsdom", + "jest-environment-jsdom-fourteen", + "jest-environment-node", + "jest-extended", + "jest-html-reporters", + "jest-junit", + "jest-pnp-resolver", + "jest-resolve", + "jest-util", + "jest-watch-typeahead", + "jest-worker", + "jimp", + "jiti", + "jodit", + "jodit-react", + "johnny-five", + "joi", + "jotai", + "jquery", + "jquery-ui", + "js-base64", + "js-beautify", + "js-cookie", + "js-yaml", + "jsarch", + "jscpd", + "jscs", + "jsdoc", + "jsdoc-api", + "jsdoc-to-markdown", + "jsdom", + "jsdom-no-contextify", + "jsesc", + "jshint", + "jshint-stylish", + "json-2-csv", + "json-loader", + "json-schema", + "json-server", + "json-stable-stringify", + "json-stringify-safe", + "json5", + "jsonc-parser", + "jsonfile", + "jsonschema", + "JSONStream", + "jsonwebtoken", + "jspm", + "jstates", + "jszip", + "jwt-decode", + "jwt-simple", + "karma", + "karma-browserify", + "karma-browserstack-launcher", + "karma-chai", + "karma-chrome-launcher", + "karma-coverage", + "karma-detect-browsers", + "karma-edge-launcher", + "karma-firefox-launcher", + "karma-ie-launcher", + "karma-jasmine", + "karma-mocha", + "karma-mocha-reporter", + "karma-phantomjs-launcher", + "karma-qunit", + "karma-rollup-preprocessor", + "karma-safari-launcher", + "karma-sauce-launcher", + "karma-sinon", + "karma-sourcemap-loader", + "karma-spec-reporter", + "karma-webpack", + "keycode", + "keypress", + "keyv", + "kleur", + "knex", + "knip", + "known-css-properties", + "knox", + "koa", + "koa-body", + "koa-bodyparser", + "koa-compose", + "koa-logger", + "koa-mount", + "koa-router", + "koa-static", + "kue", + "lab", + "label-lungs-court4", + "language-perfectly-blow-series", + "late-dress-mail5", + "latest-version", + "lazy.js", + "lead-alike-web3-applied", + "leaflet", + "left-pad", + "leftpad", + "lerna", + "less", + "less-loader", + "level", + "leveldown", + "levelup", + "leven", + "libnpmdiff", + "libnpmexec", + "libnpmfund", + "libphonenumber-js", + "liftoff", + "lilconfig", + "linkifyjs", + "lint-staged", + "listr", + "listr2", + "lit-element", + "lite-server", + "live-server", + "livereload", + "load-grunt-config", + "load-grunt-tasks", + "loader-utils", + "local-web-server", + "localforage", + "localtunnel", + "lockfile-lint", + "lodash", + "lodash-es", + "lodash.assign", + "lodash.camelcase", + "lodash.clonedeep", + "lodash.debounce", + "lodash.defaults", + "lodash.flatten", + "lodash.foreach", + "lodash.get", + "lodash.isempty", + "lodash.isequal", + "lodash.isfunction", + "lodash.isobject", + "lodash.isplainobject", + "lodash.isstring", + "lodash.map", + "lodash.memoize", + "lodash.merge", + "lodash.omit", + "lodash.pick", + "lodash.set", + "lodash.template", + "lodash.throttle", + "lodash.uniq", + "log", + "log-symbols", + "log-update", + "log4js", + "loglevel", + "long", + "loopback", + "loose-envify", + "lowdb", + "lru-cache", + "lucide", + "luck-rubber-do", + "lwip", + "lws", + "madwizard", + "magic-string", + "magmastream", + "main-bower-files", + "make-dir", + "make-node", + "mammoth", + "manifest", + "mantine-contextmenu", + "many-favorite6", + "map-stream", + "mapboxgl-legend", + "markdown", + "markdown-it", + "markdown-it-anchor", + "markdown-it-container", + "markdown-it-emoji", + "markdown-pdf", + "markdown-table", + "markdown-to-jsx", + "markdown-toc", + "markdownlint", + "markdownlint-cli", + "marked", + "marky-markdown", + "matcha", + "material-ui", + "mathjs", + "matter-view-web3-fence", + "md5", + "md5-file", + "mdast-util-from-markdown", + "mdast-util-to-hast", + "mdn-data", + "mdxts", + "memcached", + "memfs", + "memoize-one", + "memory-cache", + "memory-fs", + "memorystream", + "memwatch", + "mental-oxygen-dozen", + "meow", + "merge", + "merge-stream", + "metalsmith", + "meteor", + "method-override", + "methods", + "microbundle", + "micromark", + "micromatch", + "mime", + "mime-types", + "min-heap-typed", + "mini-css-extract-plugin", + "minify", + "minimatch", + "minimist", + "mirror-jet-printed-supper", + "missing-sport-living", + "mkcert", + "mkdirp", + "mlly", + "mobx", + "mobx-react", + "mocha", + "mocha-headless-chrome", + "mocha-junit-reporter", + "mocha-lcov-reporter", + "mock-fs", + "mock-property", + "mock-require", + "mock-stdin", + "mockdate", + "mockery", + "mockjs", + "moleculer", + "moment", + "moment-timezone", + "monaco-yaml", + "monads-io", + "mongo-express", + "mongodb", + "mongoose", + "monitor", + "monitor-dashboard", + "monk", + "morgan", + "motor-positive-spirit", + "move-wolf-throughout", + "movie-obtain-tail-prepare", + "mqtt", + "ms", + "mssql", + "msw", + "mud-slowly-five3", + "multer", + "multimatch", + "multiparty", + "multiple-cucumber-html-reporter", + "mustache", + "muuri", + "mysql", + "mysql2", + "mz", + "n", + "nails-wild-interest-garden", + "nan", + "nano", + "nano-css", + "nanoid", + "native-keymap", + "nativefier", + "nativescript", + "natural", + "nconf", + "ncp", + "near-social-bridge", + "nedb", + "needle", + "nest-commander", + "newman", + "newrelic", + "next-auth", + "nextjs", + "ng-mocks", + "ng-zorro-antd", + "ngrok", + "nib", + "nightmare", + "nightwatch", + "nine-yes-merely6", + "nise", + "nock", + "node-addon-api", + "node-cache", + "node-containerpattern", + "node-dev", + "node-dir", + "node-emoji", + "node-fetch", + "node-forge", + "node-gcm", + "node-geocoder", + "node-gyp", + "node-html-parser", + "node-inspector", + "node-mocks-http", + "node-notifier", + "node-oauth2-server", + "node-powertools", + "node-pre-gyp", + "node-pty", + "node-red", + "node-sass", + "node-schedule", + "node-static", + "node-uuid", + "node-watch", + "node-windows", + "node-xlsx", + "node.extend", + "nodegit", + "nodemailer", + "nodemon", + "nodeunit", + "nodewebkit", + "nolangjs", + "nomnom", + "nopt", + "normalize-path", + "normalize-url", + "normalize-wheel", + "normalize.css", + "np", + "npm", + "npm-check", + "npm-check-updates", + "npm-package-arg", + "npm-package-json-lint", + "npm-packlist", + "npm-registry-fetch", + "npm-run-all", + "npm-run-all2", + "npm-run-path", + "npm-to-yarn", + "npm-windows-upgrade", + "npmcli", + "npmignore", + "npmlog", + "nprogress", + "nsp", + "nuke-cli", + "numeral", + "nunjucks", + "nvm", + "nvmrc", + "nwsapi", + "nx", + "nyc", + "oas", + "oas-normalize", + "oauth", + "object-assign", + "object-hash", + "object-inspect", + "object-keys", + "object-path", + "object.assign", + "object.entries", + "observe-food-motion-hidden", + "on-finished", + "once", + "onchange", + "one-how-hand", + "onoff", + "open", + "open-cli", + "openapi-client-axios", + "openapi2html", + "opencv", + "opener", + "openweather", + "opn", + "optimist", + "optimize-css-assets-webpack-plugin", + "optionator", + "ora", + "orchestrator", + "orm", + "os", + "osenv", + "outdent", + "outline-slowly", + "overlayscrollbars", + "ovsx", + "p-event", + "p-map", + "p-queue", + "p-timeout", + "p23", + "pa11y", + "pacote", + "pageres", + "paintor", + "pako", + "para-cli", + "para-client-js", + "parallelshell", + "parse", + "parse5", + "parseurl", + "passport", + "passport-facebook", + "passport-local", + "passport-oauth", + "passport-oauth2", + "passport-strategy", + "path", + "path-browserify", + "path-exists", + "path-is-absolute", + "path-to-regexp", + "pathe", + "paypal-server-api", + "pdfjs", + "pdfkit", + "performance-now", + "pg", + "phantom", + "phantomjs", + "phantomjs-prebuilt", + "phonegap", + "pi-gpio", + "picocolors", + "picomatch", + "pie-case-nor-great", + "pify", + "pino", + "pinst", + "pitch-somehow-earth-brave", + "pixelmatch", + "pkg-dir", + "pkg-up", + "pkginfo", + "playwright", + "plist", + "plugin-error", + "plur", + "pluralize", + "pm2", + "pngjs", + "pnp-webpack-plugin", + "pnpm", + "pnpx", + "poe-api-manager", + "polished", + "political-plan-careful", + "popper.js", + "portfinder", + "postcss", + "postcss-calc", + "postcss-cli", + "postcss-color-functional-notation", + "postcss-colormin", + "postcss-convert-values", + "postcss-cssnext", + "postcss-custom-media", + "postcss-custom-properties", + "postcss-custom-selectors", + "postcss-discard-comments", + "postcss-discard-duplicates", + "postcss-discard-empty", + "postcss-discard-overridden", + "postcss-flexbugs-fixes", + "postcss-html", + "postcss-image-set-function", + "postcss-import", + "postcss-load-config", + "postcss-loader", + "postcss-merge-longhand", + "postcss-merge-rules", + "postcss-minify-font-values", + "postcss-minify-gradients", + "postcss-minify-params", + "postcss-minify-selectors", + "postcss-modules-local-by-default", + "postcss-nested", + "postcss-nesting", + "postcss-normalize", + "postcss-normalize-charset", + "postcss-normalize-positions", + "postcss-normalize-string", + "postcss-normalize-unicode", + "postcss-normalize-url", + "postcss-normalize-whitespace", + "postcss-ordered-values", + "postcss-prefix-selector", + "postcss-preset-env", + "postcss-reduce-initial", + "postcss-safe-parser", + "postcss-scss", + "postcss-selector-parser", + "postcss-svgo", + "postcss-unique-selectors", + "postcss-value-parser", + "postgrejs", + "posthtml", + "pouchdb", + "power-assert", + "pre-commit", + "preact", + "prepare-package", + "prettier", + "prettier-plugin-jsdoc", + "prettier-plugin-organize-imports", + "prettier-plugin-packagejson", + "prettier-plugin-svelte", + "prettierrc", + "pretty-bytes", + "pretty-error", + "pretty-format", + "pretty-ms", + "pretty-quick", + "prettyjson", + "prisma", + "prismjs", + "private-bower", + "proc-log", + "process", + "progress", + "progress-bar-webpack-plugin", + "promise", + "promise-polyfill", + "promises-aplus-tests", + "promo-server", + "prompt", + "prompts", + "prop-types", + "property-information", + "protobufjs", + "protractor", + "proxy", + "proxyquire", + "publish-please", + "pug", + "pull-stream", + "pump", + "punycode", + "puppeteer", + "purgecss", + "q", + "qr-image", + "qrcode-terminal", + "qs", + "query-string", + "querystring", + "queue", + "queue-typed", + "quill", + "qunit", + "qunit-dom", + "qunitjs", + "raf", + "ramda", + "random-words", + "randombytes", + "randomstring", + "range-parser", + "raven", + "raw-body", + "raw-loader", + "rc", + "rc-slider", + "rc-tooltip", + "rc-util", + "rcw-plugin", + "react", + "react-addons-css-transition-group", + "react-addons-shallow-compare", + "react-apollo", + "react-app-polyfill", + "react-bootstrap", + "react-color", + "react-copy-to-clipboard", + "react-datepicker", + "react-dev-utils", + "react-dnd", + "react-dnd-html5-backend", + "react-docgen", + "react-dom", + "react-dropzone", + "react-error-overlay", + "react-helmet", + "react-hook-form", + "react-hot-loader", + "react-i18next", + "react-icons", + "react-intersection-observer", + "react-intl", + "react-is", + "react-lifecycles-compat", + "react-markdown", + "react-modal", + "react-motion", + "react-native", + "react-native-keychain", + "react-native-vector-icons", + "react-number-format", + "react-onclickoutside", + "react-property", + "react-redux", + "react-refresh", + "react-responsive", + "react-router", + "react-router-dom", + "react-router-redux", + "react-scripts", + "react-select", + "react-slick", + "react-styleguidist", + "react-svg", + "react-tap-event-plugin", + "react-test-renderer", + "react-toastify", + "react-tools", + "react-transition-group", + "react-virtualized", + "reactify", + "reactstrap", + "read", + "read-pkg", + "read-pkg-up", + "readable-stream", + "readline", + "readline-sync", + "recall-shut-say", + "recast", + "recently-building-save", + "rechoir", + "recompose", + "recursive-readdir", + "redis", + "redoc", + "redocusaurus", + "redux", + "redux-actions", + "redux-form", + "redux-logger", + "redux-saga", + "redux-thunk", + "reflect-metadata", + "regenerate", + "regenerator-runtime", + "rehype", + "rehype-autolink-headings", + "rehype-external-links", + "rehype-mdx-code-props", + "rehype-parse", + "rehype-raw", + "rehype-slug", + "rehype-stringify", + "release-it", + "remap-istanbul", + "remark", + "remark-cli", + "remark-gfm", + "remark-html", + "remark-mermaidjs", + "remark-parse", + "remark-preset-github", + "remark-preset-wooorm", + "remark-rehype", + "remarkable", + "replace-ext", + "replace-in-file", + "request", + "request-promise", + "request-promise-native", + "require-all", + "require-dir", + "requireindex", + "requirejs", + "reselect", + "resize-observer-polyfill", + "resolve", + "resolve-from", + "resolve-url-loader", + "rest-chronicle", + "restify", + "restler", + "restore-cursor", + "rethinkdb", + "retry", + "rewire", + "rfdc", + "rimraf", + "robotjs", + "rollup", + "rollup-plugin-babel", + "rollup-plugin-buble", + "rollup-plugin-cleanup", + "rollup-plugin-commonjs", + "rollup-plugin-dts", + "rollup-plugin-json", + "rollup-plugin-license", + "rollup-plugin-node-builtins", + "rollup-plugin-node-globals", + "rollup-plugin-node-resolve", + "rollup-plugin-replace", + "rollup-plugin-sourcemaps", + "rollup-plugin-terser", + "rollup-plugin-typescript", + "rollup-plugin-typescript2", + "rollup-plugin-uglify", + "rollup-plugin-visualizer", + "rollup-pluginutils", + "routes", + "rsnext", + "rsvp", + "rtlcss", + "run-sequence", + "run-series", + "rx", + "rxjs", + "rxjs-compat", + "safe-buffer", + "safe-publish-latest", + "sails", + "salt-type-oldest-faster", + "sand-have-metal6", + "sanitize-filename", + "sanitize-html", + "sass", + "sass-loader", + "sat-local", + "sax", + "scheduler", + "schema-markdown-doc", + "schema-utils", + "science-knowledge-truth", + "seblakhotspicy", + "secp256k1", + "seedrandom", + "selenium-webdriver", + "semantic-release", + "semantic-ui-react", + "semistandard", + "semver", + "send", + "seneca", + "sentiment", + "sequelize", + "serialize-javascript", + "serialport", + "serve", + "serve-favicon", + "serve-index", + "serve-static", + "server-destroy", + "serverless-finch", + "serverless-spy", + "sha1", + "shallowequal", + "sharp", + "shell-quote", + "shelljs", + "shinning-continued-becoming", + "shortid", + "should", + "showdown", + "shx", + "sick-typical-court7", + "signal-exit", + "similar-cheese-loss", + "simple-assi-animation", + "simple-git", + "simple-prompts-web3", + "single-spa", + "sink-mighty-orbit0", + "sink-rod-lamp", + "sinon", + "sinon-chai", + "sinopia", + "sirv", + "size-limit", + "sizeitup", + "skapi-js", + "sky-buy-web3-rock", + "slash", + "slice-ansi", + "slow-deps", + "slow-voice-spell-pass", + "slug", + "slugify", + "small-grow-mix4", + "snake-seven-recall-interior", + "snazzy", + "soap", + "socket.io", + "socket.io-client", + "sockjs-client", + "source-map", + "source-map-js", + "source-map-loader", + "source-map-support", + "space-separated-tokens", + "spectaql", + "speech-section-part-frozen", + "spirit-labor-cheese", + "split", + "split2", + "spring-dust-wall-size", + "sprintf", + "sprintf-js", + "sprity", + "sqlite3", + "ssh2", + "ssri", + "st.db", + "stack-trace", + "standard", + "standard-version", + "star-location", + "start-server-and-test", + "statsd", + "statuses", + "stock-independent-balloon", + "storybook", + "storybook-django", + "straiforos-compodoc", + "strange-lady-riding9", + "stream-assert", + "stream-transform", + "streamii", + "strftime", + "string", + "string-strip-html", + "string-width", + "stringify-entities", + "strip-ansi", + "strip-bom", + "strip-json-comments", + "stripe", + "strongloop", + "style-dictionary", + "style-loader", + "style-to-js", + "style-to-object", + "styled-components", + "styled-jsx", + "stylehacks", + "stylelint", + "stylelint-config-standard", + "stylelint-declaration-strict-value", + "stylelint-order", + "stylelint-scss", + "stylus", + "stylus-loader", + "sugar-policeman-entire", + "sugarss", + "sun-grass-circle0", + "superagent", + "superjson", + "supertest", + "supertest-as-promised", + "supervisor", + "support-vessels-web3-vessels", + "supports-color", + "surrounded-characteristic-or-rain", + "svelte", + "svelte-check", + "svelte-preprocess", + "svg-sprite", + "svgo", + "sw-precache-webpack-plugin", + "swagger-autogen", + "swagger-inline", + "swagger-themes", + "swagger-ui-express", + "swam-darkness-weak", + "swig", + "swiper", + "sync-request", + "systeminformation", + "systemjs", + "tail-iron-became5", + "tailwind", + "tailwind-merge", + "tailwindcss", + "tap", + "tap-spec", + "tapable", + "tape", + "tar", + "tar-fs", + "tar-stream", + "tarant", + "tarant-sync-router-express", + "tdl", + "tdlib-native", + "temp", + "tempy", + "terminal-kit", + "terminal-menu", + "terser", + "terser-webpack-plugin", + "test-cutting", + "test-runner", + "test-snippets", + "testcafe", + "testcontainers", + "testdouble", + "testem", + "text-table", + "three", + "throttle-debounce", + "through", + "through2", + "throw-did-darkness4", + "thunkify", + "tildify", + "time-grunt", + "tinper-bee", + "tiny-lr", + "tinybench", + "tinycolor2", + "tinymce", + "tinypool", + "tinyspy", + "tmp", + "toastify-react-native", + "tocbot", + "toml", + "touch", + "tough-cookie", + "tracer", + "traffic-carry-opinion", + "train-stick-swept7", + "traverse", + "tree-kill", + "tribe-leaving-basket", + "trpc", + "trumpet", + "ts-cache-mongoose", + "ts-japi", + "ts-jest", + "ts-loader", + "ts-migrate-mongoose", + "ts-morph", + "ts-node", + "ts-patch-mongoose", + "ts-pnp", + "ts-rule-engine", + "tsconfig-paths", + "tsd", + "tsd-lite", + "tshy", + "tslib", + "tslint", + "tslint-config-prettier", + "tslint-react", + "tsup", + "tsx", + "turndown", + "tv4", + "tweetnacl", + "twemoji", + "twit", + "twitter", + "type-coverage", + "type-fest", + "type-is", + "typedoc", + "typedoc-material-theme", + "typedoc-plugin-extras", + "typedoc-plugin-markdown", + "typedocs", + "typegen", + "typegoose", + "typeorm", + "typescript", + "typescript-eslint", + "typescript-formatter", + "typescript-plugin-css-modules", + "typings", + "uglify-es", + "uglify-js", + "uglifyjs-webpack-plugin", + "uid-safe", + "uiw", + "uj-apidoc-core", + "ulid", + "ultrahtml", + "unbuild", + "underscore", + "underscore.string", + "undici", + "unified", + "unique-random-array", + "unist-util-visit", + "untildify", + "unusual-rope", + "unzip", + "update-notifier", + "urijs", + "url", + "url-join", + "url-loader", + "url-parse", + "urllib", + "user", + "user-home", + "useragent", + "utf8", + "util", + "utils-merge", + "uuid", + "uvu", + "valid-url", + "validate-commit-msg", + "validate-npm-package-name", + "validator", + "vant", + "vary", + "vasync", + "vercel", + "verror", + "vhost", + "victory-mouth", + "viewerjs", + "vinyl", + "vinyl-buffer", + "vinyl-fs", + "vinyl-source-stream", + "vinyl-sourcemaps-apply", + "virtual-dom", + "vite", + "vite-plugin-api-routes", + "vitepress", + "vitest", + "vorpal", + "vows", + "vsce", + "vscode-debugprotocol", + "vscode-nls-dev", + "vscode-textmate", + "vue", + "vue-class-component", + "vue-eslint-parser", + "vue-hot-reload-api", + "vue-i18n", + "vue-loader", + "vue-property-decorator", + "vue-router", + "vue-style-loader", + "vue-template-compiler", + "vuex", + "walk", + "walk-sync", + "warning", + "watch", + "watchify", + "waterline", + "wd", + "web3", + "web3-be", + "web3-capital", + "web3-compass", + "web3-eve-cli", + "web3-exactly6", + "web3-fruit", + "webpack", + "webpack-bundle-analyzer", + "webpack-cli", + "webpack-dev-middleware", + "webpack-dev-server", + "webpack-hot-middleware", + "webpack-manifest-plugin", + "webpack-merge", + "webpack-node-externals", + "webpack-sources", + "webshot", + "websocket", + "webtorrent", + "webworker-threads", + "weinre", + "whatwg-fetch", + "when", + "which", + "winreg", + "winston", + "winston-daily-rotate-file", + "winston-transport", + "wiredep", + "word-wrap", + "wordwrap", + "workbox-webpack-plugin", + "world-toy-kill", + "wrap-ansi", + "wrench", + "write-file-atomic", + "ws", + "x-ray", + "xhr", + "xlsx", + "xml-js", + "xml2js", + "xml2json", + "xmlbuilder", + "xmldom", + "xmlhttprequest", + "xo", + "xpath", + "xregexp", + "xss", + "xstate", + "xtend", + "xterm", + "yaml", + "yamljs", + "yargs", + "yargs-parser", + "yarn", + "yarnpkg", + "yarnrc", + "yauzl", + "yeoman-environment", + "yeoman-generator", + "yn", + "yo", + "yoctocolors-cjs", + "yonode", + "yosay", + "zmq", + "zod", + "zod-http-schemas", + "zombie", + "zone.js", + "zuul", + "@nx/cypress", + "@nx/eslint-plugin", + "@nx/jest", + "@nx/storybook", + "framer-motion", + "teajusgula", + "@mui/styled-engine", + "jsdoc-parse", + "@commercetools-frontend/constants", + "downshift", + "postcss-focus-visible", + "@augment-vir/common", + "@biomejs/biome", + "@commercetools-frontend/mc-scripts", + "@jsonforms/vanilla-renderers", + "@jsonforms/vue", + "@jsonforms/vue-vanilla", + "hast-util-from-html", + "hot-shots", + "madr", + "native-run", + "rehype-katex", + "supports-hyperlinks", + "swr", + "typed-binary", + "ua-parser-js", + "void-elements", + "@adonisjs/core", + "@aneuhold/be-ts-lib", + "@capacitor/assets", + "@devtea2025/blanditiis-numquam-expedita-neque", + "@devtea2025/doloremque-voluptas-facere-nemo", + "@devtea2025/quisquam-quod-ab-aut", + "@devtea2025/suscipit-assumenda-a-assumenda", + "@devtea2025/voluptatibus-vero-magni-rerum", + "@diahkomalasarinpm/odio-facilis-beatae", + "@diahkomalasarinpm/praesentium-sint-dolorem", + "@enact/core", + "@envelop/core", + "@ionic/cli", + "@jsonforms/angular", + "@jsonforms/examples", + "@npmtea2024/quasi-nisi-doloremque-fugit", + "@ptkhanh94npm/iusto-libero-aperiam", + "@ptkhanh94npm/quis-saepe-velit", + "@renyii/vue-renderless", + "@teamteanpm2024/aperiam-fugit-error", + "@teamteanpm2024/architecto-alias-quod", + "@teamteanpm2024/aut-voluptatum-vero", + "@teamteanpm2024/beatae-aliquid-id", + "@teamteanpm2024/expedita-labore-ipsum", + "@teamteanpm2024/odio-fugiat-in", + "@teamteanpm2024/voluptatibus-reprehenderit-odit", + "@testing-library/react-hooks", + "@zibuthe7j11/deserunt-quasi-impedit", + "anser", + "aws-sdk-client-mock", + "cupertino-pane", + "eruda", + "fasteejs", + "foundation-sites", + "gradient-string", + "grommet", + "html-url-attributes", + "magnific-popup", + "next", + "postcss-opacity-percentage", + "pwa-asset-generator", + "rapidoc", + "react-native-animatable", + "react-native-collapsible", + "react-swipeable-list", + "react-textarea-autosize", + "readme-md", + "recharts", + "riot", + "sortablejs", + "tdesign-mobile-vue", + "uploadcare-widget", + "wait-on", + "weui", + "zustand", + "fontsource", + "nextra", + "synckit", + "tinyglobby", + "tstyche", + "@ibyar/expressions", + "@mantine/carousel", + "@mantine/code-highlight", + "@mantine/dropzone", + "@mantine/nprogress", + "@mantine/spotlight", + "@mantine/store", + "@mantine/tiptap", + "allure-js-commons", + "express-intlayer", + "is-mobile", + "rehype-mermaid", + "@bugsnag/react-native", + "@enact/ui", + "@enact/webos", + "@ionic/angular", + "@npmtuanmap/velit-nobis-nostrum-nam", + "@skylernpm/hic-inventore-dolores", + "@skylernpm/reiciendis-non-corrupti", + "admin-lte", + "backendless", + "smartbanner.js", + "zarm", + "@enact/sandstone", + "perfect-scrollbar", + "react-responsive-select", + "titanium", + "@antora/logger", + "@asyncapi/generator", + "@docusaurus/core", + "@ionic/react", + "@juggle/resize-observer", + "@mui/base", + "@mui/private-theming", + "@mui/utils", + "@nestjsx/crud", + "@nestjsx/crud-typeorm", + "@netlify/framework-info", + "@next/env", + "@pmmmwh/react-refresh-webpack-plugin", + "@pothos/core", + "@storybook/addon-backgrounds", + "@strapi/strapi", + "@svgr/core", + "@svgr/hast-util-to-babel-ast", + "@tinyhttp/encode-url", + "@tinyhttp/logger", + "@tsparticles/interaction-external-push", + "@tsparticles/move-base", + "@tsparticles/shape-emoji", + "@tsparticles/updater-color", + "@tsparticles/updater-opacity", + "@tsparticles/updater-out-modes", + "@uppy/companion", + "@vuepress/core", + "@vuepress/markdown", + "@vuepress/markdown-loader", + "@vuepress/plugin-active-header-links", + "@vuepress/plugin-last-updated", + "@vuepress/plugin-nprogress", + "@vuepress/plugin-register-components", + "@vuepress/plugin-search", + "@vuepress/shared-utils", + "@vuepress/theme-default", + "@walletconnect/browser-utils", + "@walletconnect/iso-crypto", + "@walletconnect/legacy-modal", + "@walletconnect/legacy-provider", + "@walletconnect/socket-transport", + "@wordpress/primitives", + "angular-messages", + "angular-mocks", + "ansi-align", + "blocking-proxy", + "body-scroll-lock", + "broccoli", + "broccoli-builder", + "broccoli-middleware", + "browserstack", + "camelcase-css", + "character-entities", + "character-entities-html4", + "character-entities-legacy", + "character-reference-invalid", + "client-only", + "color-string", + "comma-separated-tokens", + "condense-newlines", + "css-mediaquery", + "css.escape", + "csso", + "dashdash", + "decap-cms-backend-aws-cognito-github-proxy", + "decap-cms-backend-azure", + "decap-cms-backend-bitbucket", + "decap-cms-backend-git-gateway", + "decap-cms-backend-github", + "decap-cms-backend-gitlab", + "decap-cms-backend-proxy", + "decap-cms-backend-test", + "device-detector-js", + "docsify", + "docsify-cli", + "dom7", + "enzyme-to-json", + "epub2", + "escape-goat", + "esdoc", + "eslint-rule-documentation", + "globals-docs", + "hast-util-is-element", + "hast-util-parse-selector", + "hast-util-to-parse5", + "hast-util-whitespace", + "html-parse-stringify", + "html-void-elements", + "http-graceful-shutdown", + "icss-utils", + "inferno-create-element", + "inferno-hydrate", + "inferno-vnode-flags", + "infima", + "ink-docstrap", + "jasminewd2", + "jest-preset-angular", + "jest-preview", + "logging-helpers", + "lws-index", + "micromark-extension-gfm-tagfilter", + "micromark-util-encode", + "micromark-util-html-tag-name", + "mobile-detect", + "nth-check", + "parse-entities", + "postcss-js", + "postcss-modules-values", + "query-selector-shadow-dom", + "rc-hammerjs", + "rdme", + "react-colorful", + "react-device-detect", + "react-easy-router", + "react-fast-compare", + "react-native-file-viewer", + "react-native-lightbox-v2", + "react-native-progress", + "react-native-svg-charts", + "react-native-youtube-iframe", + "react-popper", + "react-responsive-modal", + "react-style-singleton", + "text-hex", + "tsparticles", + "tua-body-scroll-lock", + "typedoc-default-themes", + "use-callback-ref", + "use-sidecar", + "vconsole", + "vitefu", + "vue-perfect-scrollbar", + "vuepress", + "wait-for-expect", + "webdriver-js-extender", + "webdriver-manager", + "widest-line", + "worktop", + "@antora/playbook-builder", + "@applitools/utils", + "@dataui/crud", + "@mui/types", + "@tsparticles/shape-circle", + "@tsparticles/updater-life", + "@tsparticles/updater-rotate", + "drag-drop", + "plasmo", + "react-h5-audio-player", + "@arethetypeswrong/cli", + "arethetypeswrong", + "astro", + "astrojs", + "cookiecutter", + "degit", + "tseslint", + "@web/test-runner-mocha", + "colord", + "@expressots/core", + "@tsparticles/interaction-particles-links", + "@astrojs/starlight", + "@expressots/adapter-express", + "@expressots/shared", + "@tsparticles/interaction-external-bounce", + "@tsparticles/interaction-external-remove", + "@tsparticles/move-parallax", + "@tsparticles/shape-polygon", + "@tsparticles/shape-square", + "pinia", + "@floating-ui/react", + "@tsparticles/shape-image", + "astro-expressive-code", + "netlify-cms-backend-test", + "rehype-expressive-code", + "@augment-vir/assert", + "cssfilter", + "@amaui/icons-material-rounded-react", + "@appium/types", + "@dataui/crud-typeorm", + "@tsparticles/basic", + "@tsparticles/updater-size", + "@onesy/icons-material-rounded-react", + "@tsparticles/interaction-external-grab", + "@tsparticles/interaction-particles-collisions", + "react-native-macos", + "@tsparticles/interaction-external-repulse", + "@tsparticles/slim", + "@ionic/react-router", + "@immobiliarelabs/backstage-plugin-gitlab-backend", + "@tsparticles/shape-star", + "kuler", + "@scalar/nextjs-api-reference", + "netlify-cms-backend-bitbucket", + "vendors", + "@busy-hour/blaze", + "@busy-hour/blaze-types", + "payload", + "attw", + "@egjs/flicking", + "body-scroll-lock-upgrade", + "@casl/ability", + "neostandard", + "@appium/schema", + "@modern-js/utils", + "@types/xast", + "css-what", + "grunt-svgmin", + "@modern-js/node-bundle-require", + "@axe-core/playwright", + "tsdown", + "careful-downloader", + "sonner", + "@ckeditor/ckeditor5-collaboration-core", + "embla-carousel-reactive-utils", + "react-smooth", + "globrex", + "@ckeditor/ckeditor5-real-time-collaboration", + "@inquirer/type", + "grammy", + "@tsparticles/plugin-hex-color", + "@tsparticles/plugin-hsl-color", + "@udecode/plate", + "loki", + "netlify-cms-backend-gitlab", + "teeny-tap", + "emoji-js", + "mercurius", + "publint", + "unbundle", + "@walletconnect/http-connection", + "convex-helpers", + "eslint-plugin-react-refresh", + "gulp-jsdoc3", + "netlify-cms-backend-git-gateway", + "borp", + "pagefind", + "@pinia/testing", + "leaflet-gesture-handling", + "@headlessui/vue", + "remeda", + "rolldown", + "valibot", + "netlify-cms-backend-proxy", + "lefthook", + "@nuxt/ui", + "country-codes-flags-phone-codes", + "embla-carousel-react", + "input-otp", + "zoroaster", + "embla-carousel", + "@assistant-ui/react", + "@csstools/css-calc", + "@globalart/nestjs-swagger", + "@graphiql/plugin-doc-explorer", + "@mastra/core", + "next-router-mock", + "vue-draggable-next", + "@tsparticles/plugin-rgb-color", + "react-native-lightbox", + "rolldown-vite", + "react-native-aes-crypto", + "@inquirer/figures", + "@lobehub/chat", + "@inquirer/confirm", + "@upstash/context7-mcp", + "@storybook/addon-vitest", + "@walletconnect/heartbeat", + "lory.js", + "react-camera-pro", + "react-native-nitro-modules", + "@csstools/css-color-parser", + "@csstools/color-helpers", + "shadcn", + "@tanstack/virtual-core", + "otp-io", + "survey-core", + "@appium/support", + "@intlayer/api", + "@prisma/dev", + "@architect/asap", + "canvaskit-wasm", + "@edsdk/n1ed-react", + "react-error-boundary", + "@crxjs/vite-plugin", + "@observablehq/plot", + "skia-canvas", + "@flmngr/flmngr-react", + "@vitest/browser-playwright", + "md-to-pdf", + "@applitools/eyes", + "@applitools/driver", + "@applitools/screenshoter", + "@tsparticles/interaction-external-slow", + "@tsparticles/shape-line", + "@antora/cli", + "@antora/navigation-builder", + "@openspacelabs/react-native-zoomable-view", + "@testcontainers/postgresql", + "unplugin", + "@antora/redirect-producer", + "@antora/site-publisher", + "@appium/logger", + "planck", + "stage-js", + "oxfmt", + "syncpack", + "nolyfill", + "@appium/base-driver", + "@inquirer/expand", + "@inquirer/select", + "@c15t/backend", + "@react-native-vector-icons/common", + "@antora/content-classifier", + "@tsparticles/interaction-particles-attract", + "@popperjs/core", + "animejs", + "blurup", + "encryptor", + "flickity", + "jstz", + "lexxy", + "mapboxgl", + "mongoid", + "nums", + "orms", + "pannellum", + "psql", + "svgs", + "swiperjs", + "tributejs", + "twbs", + "xbytes", + "dependencies", + "devDependencies", + "keywords", + "ts", + "big.js", + "@alifd/field", + "@alifd/overlay", + "@alifd/validate", + "shallow-element-equals", + "@types/react-transition-group", + "jsonp", + "ts-mocha", + "tsconfck", + "@types/co", + "html5shiv", + "react-axe", + "sass-true", + "@types/md5", + "react-live", + "solarlunar", + "@types/chai", + "@types/glob", + "@types/node", + "mochawesome", + "@types/jsonp", + "@types/react", + "@types/yargs", + "@types/big.js", + "@types/enzyme", + "@types/lodash", + "react-cropper", + "@types/webpack", + "simulate-event", + "@types/fs-extra", + "@types/inquirer", + "chrome-launcher", + "react-draggable", + "@types/react-dom", + "@types/stylelint", + "console-polyfill", + "fast-sass-loader", + "@alifd/doc-parser", + "@alifd/meet-react", + "@types/babel-core", + "@types/classnames", + "markdown-it-prism", + "@alifd/sass-mapper", + "@types/react-redux", + "@alifd/sass-tracker", + "@types/postcss-calc", + "@alifd/api-extractor", + "@alifd/dts-generator", + "babel-plugin-espower", + "es6-promise-polyfill", + "@alifd/adaptor-helper", + "@alifd/sassdoc-parser", + "eslint-plugin-cypress", + "cypress-image-snapshot", + "@alifd/adaptor-generate", + "@types/lodash.clonedeep", + "@types/react-router-dom", + "@alifd/babel-preset-next", + "@babel/plugin-syntax-jsx", + "css-split-webpack-plugin", + "karma-webdriver-launcher", + "@alifd/eslint-config-next", + "@types/react-test-renderer", + "node-sass-package-importer", + "stylelint-csstree-validator", + "@alifd/stylelint-config-next", + "stylelint-config-recommended", + "@types/cypress-image-snapshot", + "@types/react-copy-to-clipboard", + "babel-plugin-generator-prettier", + "@types/postcss-custom-properties", + "babel-plugin-transform-object-assign", + "babel-plugin-transform-proto-to-assign", + "babel-plugin-transform-react-es6-displayname", + "fusion", + "fusion design", + "component", + "ui toolkit", + "react-components", + "components", + "design", + "frontend", + "Angular CLI", + "Angular DevKit", + "core", + "devkit", + "sdk", + "blueprints", + "code generation", + "scaffolding", + "schematics", + "template", + "tooling", + "cdk", + "development", + "kit", + "@jridgewell/sourcemap-codec", + "compiler", + "@standard-schema/spec", + "material", + "material design", + "xhr2", + "@types/dom-navigation", + "router", + "rc-field-form", + "utility-types", + "lodash.mergewith", + "lodash.assignwith", + "normalize-css-color", + "react-native-codegen", + "@floating-ui/react-native", + "@rc-component/mini-decimal", + "react-native-modal-popover", + "@bang88/react-native-ultimate-listview", + "bisheng", + "jsonml.js", + "enquire.js", + "@types/jest", + "shell-utils", + "react-native-web", + "@ant-design/tools", + "@types/prop-types", + "@types/react-native", + "ant-design-palettes", + "react-github-button", + "react-native-mocker", + "react-document-title", + "react-native-screens", + "antd-mobile-demo-data", + "@react-navigation/stack", + "@types/lodash.mergewith", + "react-native-reanimated", + "@react-navigation/native", + "react-native-gesture-handler", + "@testing-library/react-native", + "@ant-design/icons-react-native", + "react-native-safe-area-context", + "metro-react-native-babel-preset", + "@react-native-community/eslint-config", + "ant", + "react-component", + "ui", + "framework", + "mobile", + "react native", + "@types/lodash-es", + "@ant-design/icons", + "@inline-svg-unique-id/react", + "icon", + "@auth/core", + "set-cookie-parser", + "@sveltejs/package", + "@sveltejs/adapter-auto", + "@types/set-cookie-parser", + "authentication", + "authjs", + "jwt", + "sveltekit", + "oidc", + "passwordless", + "fs-readdir-recursive", + "@jridgewell/trace-mapping", + "@types/fs-readdir-recursive", + "@babel/helper-transform-fixture-test-runner", + "6to5", + "es6", + "transpile", + "transpiler", + "js-tokens", + "@babel/helper-validator-identifier", + "charcodes", + "import-meta-resolve", + "gensync", + "@babel/helpers", + "@babel/template", + "@babel/generator", + "@jridgewell/remapping", + "@babel/helper-module-transforms", + "@babel/helper-compilation-targets", + "@types/debug", + "@types/semver", + "@types/resolve", + "@babel/plugin-syntax-flow", + "@types/convert-source-map", + "@babel/plugin-transform-flow-strip-types", + "@babel/plugin-transform-modules-commonjs", + "classes", + "const", + "harmony", + "let", + "modules", + "var", + "@babel/helper-fixtures", + "@babel/helper-string-parser", + "@babel/helper-check-duplicate-nodes", + "javascript", + "parser", + "tc39", + "ecmascript", + "@babel/helper-create-class-features-plugin", + "@babel/helper-plugin-test-runner", + "babel-plugin", + "moo", + "luxon", + "entities", + "liquidjs", + "iso-639-1", + "bcp-47-normalize", + "dependency-graph", + "@11ty/lodash-custom", + "@11ty/posthtml-urls", + "please-upgrade-node", + "@11ty/eleventy-utils", + "@11ty/recursive-copy", + "@11ty/dependency-tree", + "@sindresorhus/slugify", + "node-retrieve-globals", + "posthtml-match-helper", + "@11ty/dependency-tree-esm", + "@11ty/eleventy-dev-server", + "@11ty/eleventy-plugin-bundle", + "pretty", + "@iarna/toml", + "nano-staged", + "@zachleat/noop", + "@eslint/eslintrc", + "markdown-it-abbr", + "simple-git-hooks", + "jsx-async-runtime", + "@11ty/eleventy-img", + "@mdx-js/node-loader", + "@vue/server-renderer", + "zod-validation-error", + "@11ty/eleventy-plugin-rss", + "@11ty/eleventy-plugin-webc", + "@11ty/eleventy-plugin-syntaxhighlight", + "static-site-generator", + "static-site", + "ssg", + "website", + "jekyll", + "blog", + "templates", + "generator", + "11ty", + "html", + "liquid", + "@rollup/plugin-terser", + "@rollup/plugin-typescript", + "@types/benchmark", + "@types/bytes", + "stringifier", + "stylesheet", + "ast", + "css-parser", + "css-ast", + "css-tools", + "format", + "preprocessor", + "@advanced-rest-client/arc-icons", + "@advanced-rest-client/arc-marked", + "@advanced-rest-client/clipboard-copy", + "@advanced-rest-client/http-code-snippets", + "@advanced-rest-client/markdown-styles", + "@anypoint-web-components/anypoint-button", + "@anypoint-web-components/anypoint-collapse", + "@anypoint-web-components/anypoint-dropdown", + "@anypoint-web-components/anypoint-item", + "@anypoint-web-components/anypoint-listbox", + "@api-components/amf-helper-mixin", + "@api-components/api-annotation-document", + "@api-components/api-body-document", + "@api-components/api-example-generator", + "@api-components/api-headers-document", + "@api-components/api-parameters-document", + "@api-components/api-responses-document", + "@api-components/api-security-documentation", + "@api-components/http-method-label", + "lit-html", + "@advanced-rest-client/arc-demo-helper", + "@advanced-rest-client/oauth-authorization", + "@anypoint-web-components/anypoint-checkbox", + "@anypoint-web-components/anypoint-input", + "@anypoint-web-components/anypoint-styles", + "@api-components/api-model-generator", + "@api-components/api-navigation", + "@api-components/api-request", + "@api-components/api-server-selector", + "@commitlint/config-conventional", + "@open-wc/eslint-config", + "@open-wc/testing", + "@web/dev-server", + "@web/test-runner", + "@web/test-runner-playwright", + "typescript-lit-html-plugin", + "api-components", + "method-documentation", + "@graphql-typed-document-node/core", + "@wry/caches", + "@wry/equality", + "@wry/trie", + "optimism", + "apollo", + "hooks", + "client", + "cache", + "@asyncapi/parser", + "@rollup/plugin-babel", + "babel-plugin-source-map-support", + "asyncapi", + "@nicolo-ribaudo/eslint-scope-5-internals", + "@types/eslint", + "@typescript-eslint/scope-manager", + "@babel/plugin-syntax-decorators", + "array.prototype.concat", + "babel-plugin-polyfill-es-shims", + "object.getownpropertydescriptors", + "decorators", + "@babel/plugin-syntax-export-namespace-from", + "@babel/compat-data", + "@babel/plugin-syntax-object-rest-spread", + "@babel/plugin-transform-parameters", + "@babel/helper-module-imports", + "babel-plugin-polyfill-corejs2", + "babel-plugin-polyfill-corejs3", + "babel-plugin-polyfill-regenerator", + "@babel/runtime-corejs3", + "derequire", + "core-js-compat", + "@babel/preset-modules", + "@babel/helper-validator-option", + "@babel/plugin-transform-for-of", + "@babel/plugin-transform-spread", + "@babel/plugin-transform-classes", + "@babel/plugin-transform-literals", + "@babel/plugin-transform-new-target", + "@babel/plugin-transform-modules-amd", + "@babel/plugin-transform-modules-umd", + "@babel/plugin-transform-regenerator", + "@babel/plugin-transform-dotall-regex", + "@babel/plugin-transform-json-strings", + "@babel/plugin-transform-object-super", + "@babel/plugin-transform-sticky-regex", + "@babel/plugin-transform-block-scoping", + "@babel/plugin-transform-destructuring", + "@babel/plugin-transform-function-name", + "@babel/plugin-transform-typeof-symbol", + "@babel/plugin-transform-unicode-regex", + "@babel/plugin-syntax-import-assertions", + "@babel/plugin-syntax-import-attributes", + "@babel/plugin-transform-duplicate-keys", + "@babel/plugin-transform-dynamic-import", + "@babel/plugin-transform-reserved-words", + "@babel/plugin-syntax-unicode-sets-regex", + "@babel/plugin-transform-arrow-functions", + "@babel/plugin-transform-private-methods", + "@babel/plugin-transform-unicode-escapes", + "@babel/plugin-transform-class-properties", + "@babel/plugin-transform-modules-systemjs", + "@babel/plugin-transform-regexp-modifiers", + "@babel/plugin-transform-numeric-separator", + "@babel/plugin-transform-optional-chaining", + "@babel/plugin-transform-property-literals", + "@babel/plugin-transform-template-literals", + "@babel/plugin-transform-async-to-generator", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-object-rest-spread", + "@babel/plugin-transform-unicode-sets-regex", + "@babel/plugin-transform-computed-properties", + "@babel/plugin-transform-shorthand-properties", + "@babel/plugin-transform-export-namespace-from", + "@babel/plugin-transform-block-scoped-functions", + "@babel/plugin-transform-optional-catch-binding", + "@babel/plugin-transform-unicode-property-regex", + "@babel/plugin-transform-exponentiation-operator", + "@babel/plugin-proposal-private-property-in-object", + "@babel/plugin-transform-async-generator-functions", + "@babel/plugin-transform-member-expression-literals", + "@babel/plugin-transform-private-property-in-object", + "@babel/plugin-transform-nullish-coalescing-operator", + "@babel/plugin-transform-explicit-resource-management", + "@babel/plugin-transform-logical-assignment-operators", + "@babel/plugin-transform-named-capturing-groups-regex", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key", + "@babel/plugin-bugfix-safari-class-field-initializer-scope", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "@babel/plugin-transform-react-jsx", + "@babel/plugin-transform-react-display-name", + "@babel/plugin-transform-react-jsx-development", + "@babel/plugin-transform-react-pure-annotations", + "@babel/plugin-transform-typescript", + "babel-preset", + "pirates", + "clone-deep", + "@babel/helper-globals", + "@apidevtools/json-schema-ref-parser", + "@biz-dev-ops/web-components", + "@cucumber/gherkin-streams", + "@iframe-resizer/child", + "@iframe-resizer/parent", + "awilix", + "bpmn-js", + "json-schema-merge-allof", + "markdown-it-attrs", + "markdown-it-codetabs", + "markdown-it-footnote", + "markdown-it-multimd-table", + "markdown-it-plantuml-ex", + "markdown-it-task-lists", + "pdfjs-viewer-element", + "prince", + "svg-pan-zoom", + "swagger-ui-dist", + "web-resource-inliner", + "stylelint-config-standard-scss", + "md", + "openapi", + "bpmn", + "bdd", + "feature", + "async-exit-hook", + "transport", + "logger", + "backend", + "mri", + "p-limit", + "term-size", + "spawndamnit", + "@changesets/git", + "@changesets/pre", + "@changesets/read", + "@changesets/types", + "@changesets/write", + "@changesets/config", + "@changesets/errors", + "@changesets/logger", + "@manypkg/get-packages", + "package-manager-detector", + "@changesets/changelog-git", + "@inquirer/external-editor", + "@changesets/get-release-plan", + "@changesets/apply-release-plan", + "@changesets/should-skip-package", + "@changesets/get-dependents-graph", + "@changesets/assemble-release-plan", + "human-id", + "@chatscope/chat-ui-kit-styles", + "@fortawesome/fontawesome-free", + "@semantic-release/changelog", + "@semantic-release/git", + "@semantic-release/github", + "chokidar-cli", + "rollup-plugin-peer-deps-external", + "chat", + "reactjs", + "user interface", + "ui kit", + "communication", + "conversation", + "toolkit", + "library", + "reusable", + "feed", + "comments", + "social", + "talk", + "ckeditor", + "ckeditor 5", + "ckeditor5-feature", + "ckeditor5-plugin", + "ckeditor5-dll", + "@ckeditor/ckeditor5-integrations-common", + "wysiwyg", + "rich text", + "editor", + "contentEditable", + "editing", + "angular2", + "angular 5", + "ng", + "@ckeditor/ckeditor5-icons", + "@ckeditor/ckeditor5-enter", + "@ckeditor/ckeditor5-editor-balloon", + "operational transformation", + "ot", + "collaboration", + "collaborative", + "real-time", + "ckeditor5-build", + "@ckeditor/ckeditor5-editor-classic", + "@ckeditor/ckeditor5-font", + "@ckeditor/ckeditor5-alignment", + "@ckeditor/ckeditor5-editor-decoupled", + "@ckeditor/ckeditor5-editor-inline", + "blurhash", + "es-toolkit", + "ckeditor5-lib", + "@ckeditor/ckeditor5-watchdog", + "@ckeditor/ckeditor5-undo", + "@ckeditor/ckeditor5-select-all", + "color-parse", + "color-convert", + "vanilla-colorful", + "@types/color-convert", + "@ckeditor/ckeditor5-editor-multi-root", + "vue.js", + "vue component", + "vue.js component", + "@commitlint/format", + "@commitlint/lint", + "@commitlint/load", + "@commitlint/read", + "@commitlint/types", + "tinyexec", + "@commitlint/test", + "@commitlint/utils", + "@compodoc/live-server", + "@compodoc/ngd-transformer", + "@polka/send-type", + "bootstrap.native", + "decache", + "loglevel-plugin-prefix", + "lunr", + "neotraverse", + "opencollective-postinstall", + "os-name", + "polka", + "tablesort", + "vis-network", + "module", + "graph", + "@comunica/types", + "semantic", + "actor", + "messages", + "nf", + "@docsearch/css", + "@docsearch/js", + "@eslint/markdown", + "@rollup/plugin-replace", + "@stackblitz/sdk", + "bundlewatch", + "clean-css-cli", + "find-unused-sass-variables", + "hammer-simulator", + "hugo-bin", + "karma-coverage-istanbul-reporter", + "karma-jasmine-html-reporter", + "postcss-combine-duplicated-selectors", + "rollup-plugin-istanbul", + "sass-embedded", + "stylelint-config-twbs-bootstrap", + "vnu-jar", + "mobile-first", + "responsive", + "front-end", + "web", + "tokenizer", + "media query", + "matches", + "polyfill", + "postcss-plugin", + "pseudo", + "selector", + "custom", + "declarations", + "progressive", + "properties", + "utility", + "variables", + "vars", + "specificity", + "@cucumber/ci-environment", + "@cucumber/cucumber-expressions", + "@cucumber/gherkin", + "@cucumber/gherkin-utils", + "@cucumber/html-formatter", + "@cucumber/junit-xml-formatter", + "@cucumber/message-streams", + "@cucumber/messages", + "@cucumber/pretty-formatter", + "@cucumber/tag-expressions", + "assertion-error-formatter", + "capital-case", + "error-stack-parser", + "has-ansi", + "knuth-shuffle-seeded", + "read-package-up", + "string-argv", + "util-arity", + "yup", + "@cucumber/compatibility-kit", + "@cucumber/query", + "@eslint/compat", + "@types/dirty-chai", + "@types/express", + "@types/has-ansi", + "@types/lodash.merge", + "@types/luxon", + "@types/mocha", + "@types/mustache", + "@types/mz", + "@types/progress", + "@types/sinon-chai", + "@types/sinonjs__fake-timers", + "@types/stream-buffers", + "@types/tmp", + "chai-exclude", + "dependency-lint", + "genversion", + "reindent-template-literals", + "stream-to-string", + "testing", + "gherkin", + "tests", + "@types/mock-fs", + "@types/semver-compare", + "@types/signale", + "jest-mock-process", + "semver-compare", + "signale", + "deven", + "@diplodoc/cut-extension", + "@diplodoc/file-extension", + "@diplodoc/tabs-extension", + "@diplodoc/utils", + "get-root-node-polyfill", + "github-slugger", + "markdown-it-deflist", + "markdown-it-sup", + "markdownlint-rule-helpers", + "quick-lru", + "ts-dedent", + "@diplodoc/babel-preset", + "@diplodoc/lint", + "@diplodoc/tsconfig", + "@types/css", + "@types/github-slugger", + "@types/js-yaml", + "@types/markdown-it", + "@types/markdown-it-attrs", + "@types/sanitize-html", + "@vitest/coverage-v8", + "@vitest/ui", + "esbuild-sass-plugin", + "jest-serializer-html", + "markdown-it-testgen", + "terminal-link", + "yandex", + "docs", + "yfm", + "tool", + "tools", + "magic-bytes.js", + "@discordjs/util", + "discord-api-types", + "@sapphire/snowflake", + "@discordjs/collection", + "@sapphire/async-queue", + "@vladfrangu/async_event_emitter", + "turbo", + "@discordjs/scripts", + "eslint-config-neon", + "@favware/cliff-jumper", + "eslint-formatter-pretty", + "@discordjs/api-extractor", + "esbuild-plugin-version-injector", + "discord", + "api", + "rest", + "discordapp", + "discordjs", + "types", + "tsdoc", + "generated", + "@apidevtools/swagger-parser", + "@aws-sdk/client-s3", + "@diplodoc/client", + "@diplodoc/markdown-translation", + "@diplodoc/mermaid-extension", + "@diplodoc/openapi-extension", + "@doc-tools/yfm2xliff", + "@octokit/core", + "@types/json-stringify-safe", + "@yandex-cloud/nodejs-sdk", + "bem-cn-lite", + "threads", + "threads-plugin", + "@types/async", + "@types/chalk", + "@types/html-escaper", + "@types/mime-types", + "@types/shelljs", + "@types/tar-stream", + "markdown-it-meta", + "@types/markdownlint", + "@yandex-cloud/eslint-config", + "@yandex-cloud/prettier-config", + "@yandex-cloud/tsconfig", + "@tinyhttp/cookie-parser", + "cookie-encrypter", + "github-markdown-css", + "greenlock-express", + "memorystore", + "minisearch", + "selfsigned", + "sitemap", + "sql.js", + "workerpool", + "@types/body-parser", + "@types/compression", + "@types/express-session", + "@types/formidable", + "@types/prompts", + "@types/sass", + "@types/sql.js", + "@types/uuid", + "@types/workerpool", + "esbuild-wasm", + "razor", + "sqlite", + "aspx", + "@dnd-kit/core", + "@dnd-kit/modifiers", + "@dnd-kit/sortable", + "@dnd-kit/utilities", + "@stylistic/eslint-plugin", + "@stylistic/stylelint-plugin", + "@wordpress/dependency-extraction-webpack-plugin", + "lightningcss", + "swc-loader", + "@wordpress/api-fetch", + "scss", + "mixin", + "js", + "WordPress", + "@tsconfig/node22", + "@types/lodash.camelcase", + "@types/pretty-ms", + ".d.ts", + "definitions", + "@emotion/hash", + "@emotion/memoize", + "@emotion/serialize", + "babel-plugin-macros", + "find-root", + "stylis", + "babel-check-duplicated-nodes", + "styles", + "css-in-js", + "@emotion/cache", + "@emotion/sheet", + "@emotion/utils", + "@definitelytyped/dtslint", + "@emotion/is-prop-valid", + "@emotion/use-insertion-effect-with-fallbacks", + "@emotion/react", + "warun", + "dot-prop", + "installed-check", + "@typescript-eslint/types", + "@eslint-community/eslint-plugin-mysticatea", + "eslint-plugin", + "@fakeyanss/redocly-openapi-core", + "decko", + "json-pointer", + "mark.js", + "openapi-sampler", + "react-tabs", + "stickyfill", + "swagger2openapi", + "url-template", + "@cypress/webpack-preprocessor", + "@hot-loader/react-dom", + "@size-limit/preset-app", + "@types/dompurify", + "@types/enzyme-to-json", + "@types/json-pointer", + "@types/lunr", + "@types/mark.js", + "@types/marked", + "@types/prismjs", + "@types/styled-components", + "@types/tapable", + "@types/webpack-env", + "@wojtekmaj/enzyme-adapter-react-17", + "esbuild-loader", + "license-checker", + "lodash.noop", + "unfetch", + "OpenAPI", + "OpenAPI Specification", + "Swagger", + "JSON-Schema", + "API", + "REST", + "React.js", + "@floating-ui/dom", + "use-isomorphic-layout-effect", + "tooltip", + "popover", + "dropdown", + "menu", + "popup", + "positioning", + "font", + "font family", + "google fonts", + "inter", + "Inter", + "typeface", + "variable", + "roboto", + "Roboto", + "@fortawesome/fontawesome-common-types", + "awesome", + "fontawesome", + "svg", + "@babel/plugin-external-helpers", + "@fortawesome/free-brands-svg-icons", + "@semantic-release/exec", + "icons", + "server", + "@electron/rebuild", + "node-abi", + "@electron-forge/cli", + "electron-devtools-installer", + "@grandlinex/swagger-mate", + "@types/jsonwebtoken", + "@types/ms", + "@fastify/deepmerge", + "@graphql-markdown/graphql", + "@graphql-markdown/logger", + "@graphql-markdown/utils", + "@graphql-markdown/types", + "graphql-schema", + "graphql-markdown", + "@docusaurus/utils", + "@graphql-markdown/cli", + "@docusaurus/types", + "plugin", + "@tailwindcss/aspect-ratio", + "@tailwindcss/forms", + "@tailwindcss/typography", + "basename", + "filemanager-webpack-plugin", + "remove-files-webpack-plugin", + "sass-lint", + "configuration", + "boilerplate", + "@hapi/accept", + "@hapi/ammo", + "@hapi/boom", + "@hapi/bounce", + "@hapi/call", + "@hapi/catbox", + "@hapi/catbox-memory", + "@hapi/heavy", + "@hapi/hoek", + "@hapi/mimos", + "@hapi/podium", + "@hapi/shot", + "@hapi/somever", + "@hapi/statehood", + "@hapi/subtext", + "@hapi/teamwork", + "@hapi/topo", + "@hapi/validate", + "@hapi/code", + "@hapi/eslint-plugin", + "@hapi/inert", + "@hapi/lab", + "@hapi/vision", + "@hapi/wreck", + "comment-parser", + "@homer0/eslint-plugin", + "@homer0/prettier-config", + "@vitest/coverage-istanbul", + "leasot", + "@standard-schema/utils", + "@sinclair/typebox", + "@typeschema/core", + "@typeschema/main", + "@typeschema/zod", + "@vinejs/vine", + "ajv-errors", + "arktype", + "check-export-map", + "class-transformer", + "class-validator", + "computed-types", + "effect", + "fluentvalidation-ts", + "fp-ts", + "io-ts", + "io-ts-types", + "monocle-ts", + "newtype-ts", + "nope-validator", + "superstruct", + "typanion", + "vest", + "vite-tsconfig-paths", + "scheme", + "validation", + "scheme-validation", + "hookform", + "effect-ts", + "nope", + "TypeBox", + "typeschema", + "vine", + "standard-schema", + "google translate api", + "google translate", + "google api", + "translate api", + "google", + "translate", + "@atlaskit/pragmatic-drag-and-drop", + "@atlaskit/pragmatic-drag-and-drop-auto-scroll", + "@atlaskit/pragmatic-drag-and-drop-hitbox", + "vue3", + "vue 3.x", + "@ctrl/tinycolor", + "@inquirer/ansi", + "cli-width", + "fast-wrap-ansi", + "mute-stream", + "@inquirer/testing", + "@types/mute-stream", + "answer", + "answers", + "ask", + "base", + "command", + "command-line", + "confirm", + "generate", + "hyper", + "input", + "inquire", + "interface", + "iterm", + "node", + "nodejs", + "promptly", + "question", + "scaffold", + "scaffolder", + "stdin", + "stdout", + "terminal", + "tty", + "yeoman", + "zsh", + "@stencil/core", + "domino", + "@stencil/sass", + "@capacitor/core", + "playwright-core", + "@playwright/test", + "@capacitor/haptics", + "@capacitor/keyboard", + "@ionic/eslint-config", + "@capacitor/status-bar", + "@ionic/prettier-config", + "@rollup/plugin-virtual", + "@stencil/vue-output-target", + "@stencil/react-output-target", + "@stencil/angular-output-target", + "stencil", + "app", + "webapp", + "capacitor", + "progressive web app", + "pwa", + "layout", + "console", + "wrap", + "table", + "@istanbuljs/schema", + "test", + "coverage", + "@itwin/itwinui-illustrations-react", + "@swc/helpers", + "@tanstack/react-virtual", + "react-table", + "@swc/cli", + "eslint-plugin-require-extensions", + "design-system", + "itwin", + "itwinui", + "ux", + "@jest/console", + "@jest/pattern", + "@jest/reporters", + "@jest/test-result", + "@jest/transform", + "exit-x", + "jest-changed-files", + "jest-config", + "jest-haste-map", + "jest-message-util", + "jest-regex-util", + "jest-resolve-dependencies", + "jest-runner", + "jest-runtime", + "jest-snapshot", + "jest-validate", + "jest-watcher", + "@jest/test-sequencer", + "@jest/test-utils", + "@types/graceful-fs", + "@types/micromatch", + "easy", + "facebook", + "immersive", + "instant", + "mocking", + "painless", + "runner", + "sandboxed", + "snapshot", + "@jest/schemas", + "@types/istanbul-lib-coverage", + "@types/istanbul-reports", + "@types/json-schema", + "@types/redux-mock-store", + "document-register-element", + "redux-mock-store", + "form", + "forms", + "json", + "jsonforms", + "renderengine", + "schema", + "uischema", + "customization", + "@date-io/dayjs", + "@rollup/plugin-json", + "rollup-plugin-copy", + "rollup-plugin-import-css", + "renderer", + "@rollup/plugin-alias", + "@types/object-hash", + "@jupyterlab/apputils", + "@jupyterlab/coreutils", + "@jupyterlab/docregistry", + "@jupyterlab/rendermime", + "@jupyterlab/rendermime-interfaces", + "@jupyterlab/services", + "@jupyterlab/statedb", + "@jupyterlab/translation", + "@jupyterlab/ui-components", + "@lumino/algorithm", + "@lumino/application", + "@lumino/commands", + "@lumino/coreutils", + "@lumino/disposable", + "@lumino/messaging", + "@lumino/polling", + "@lumino/properties", + "@lumino/signaling", + "@lumino/widgets", + "@jupyterlab/testing", + "docopt", + "glob2base", + "lodash.difference", + "multipipe", + "safe-wipe", + "sass-convert", + "@kobedevi/sassdoc-theme-default", + "scss-comment-parser", + "strip-indent", + "vinyl-string", + "babel-plugin-transform-builtin-extend", + "opn-cli", + "doc", + "theme", + "chatfanpage", + "api-connect-x", + "api-connect-tiwtter", + "@inquirer/input", + "@inquirer/prompts", + "task", + "list", + "tasklist", + "term", + "ascii", + "unicode", + "loading", + "indicator", + "busy", + "wait", + "idle", + "react-remove-scroll", + "ui-kit", + "calendar", + "date", + "picker", + "time", + "react-hooks", + "state", + "modal", + "notification", + "notification-manager", + "notification-system", + "prism-react-renderer", + "highlight", + "syntax", + "syntax-highlight", + "styling", + "@material-ui/types", + "@material-ui/utils", + "@material-ui/styles", + "@material-ui/system", + "@microsoft/api-documenter", + "json-api", + "json:api", + "serializer", + "normalizer", + "formatter", + "@types/mdx", + "jsx", + "mdx", + "@rushstack/node-core-library", + "@microsoft/api-extractor-model", + "@rushstack/terminal", + "@rushstack/ts-command-line", + "@rushstack/rig-package", + "@rushstack/heft", + "decoupled-local-node-rig", + "local-eslint-config", + "JSDoc", + "AEDoc", + "TSDoc", + "declaration", + "dts", + "bundle", + "alpha", + "beta", + "tsdoc-build-rig", + "TypeScript", + "jju", + "@types/jju", + "@aws/durable-execution-sdk-js", + "@aws/durable-execution-sdk-js-testing", + "@datastream/core", + "@types/aws-lambda", + "Lambda", + "Middleware", + "Serverless", + "Framework", + "AWS", + "AWS Lambda", + "Function URL", + "Durable function", + "Middy", + "HTTP", + "JSON", + "Body Parser", + "JSON Body Parser", + "@aws-sdk/client-ssm", + "aws-xray-sdk", + "helper", + "moj", + "design system", + "@open-draft/deferred-promise", + "@open-draft/logger", + "@open-draft/until", + "is-node-process", + "outvariant", + "strict-event-emitter", + "@open-draft/test-server", + "@ossjs/release", + "@types/cors", + "@types/express-fileupload", + "@types/follow-redirects", + "@types/node-fetch", + "@types/superagent", + "@types/supertest", + "@types/ws", + "engine.io-parser", + "express-fileupload", + "express-rate-limit", + "socket.io-parser", + "vitest-environment-miniflare", + "web-encoding", + "webpack-http-server", + "intercept", + "fetch", + "low-level", + "mock", + "spy", + "mui", + "@mui/core-downloads-tracker", + "system", + "@mui/x-internals", + "mui-x", + "datepicker", + "timepicker", + "datetimepicker", + "@headlessui/react", + "@iconify-icon/react", + "@mdx-js/loader", + "@mdx-js/mdx", + "@shikijs/transformers", + "@theguild/remark-npm2yarn", + "@types/unist", + "@vcarl/remark-headings", + "approximate-number", + "extra-watch-webpack-plugin", + "flexsearch", + "git-url-parse", + "mdast-util-phrasing", + "next-seo", + "react-helmet-async", + "rehype-extract-excerpt", + "rehype-pretty-code", + "remark-frontmatter", + "remark-heading-id", + "remark-link-rewrite", + "shiki", + "tailwindcss-themer", + "webpack-virtual-modules", + "@types/color", + "@types/extra-watch-webpack-plugin", + "@types/git-url-parse", + "@types/mdast", + "@repo/eslint-config", + "@repo/typescript-config", + "@repo/prettier-config", + "posthtml-render", + "posthtml-parser", + "esthetic", + "builder", + "guides", + "demo", + "ng-doc", + "rehype-format", + "hast-util-has-property", + "hast-util-heading-rank", + "rehype-minify-whitespace", + "unist-util-filter", + "@shikijs/rehype", + "ordinal", + "@types/chai-as-promised", + "ethers", + "hardhat", + "@types/bn.js", + "@nomicfoundation/hardhat-ethers", + "@nomicfoundation/eslint-plugin-slow-imports", + "@nomicfoundation/eslint-plugin-hardhat-internal-rules", + "ethereum", + "smart-contracts", + "@isaacs/string-locale-compare", + "@npmcli/fs", + "@npmcli/installed-package-contents", + "@npmcli/metavuln-calculator", + "@npmcli/name-from-folder", + "@npmcli/package-json", + "@npmcli/query", + "@npmcli/redact", + "bin-links", + "cacache", + "common-ancestor-path", + "json-stringify-nice", + "npm-install-checks", + "npm-pick-manifest", + "parse-conflict-json", + "proggy", + "promise-all-reject-late", + "promise-call-limit", + "treeverse", + "walk-up-path", + "@npmcli/eslint-config", + "@npmcli/mock-registry", + "@npmcli/template-oss", + "minify-registry-metadata", + "tcompare", + "libnpm", + "workspaces", + "map-workspaces", + "@npmcli/promise-spawn", + "spawk", + "innertext", + "highlights", + "similarity", + "language-ini", + "property-ttl", + "language-dart", + "language-glsl", + "language-haxe", + "language-rust", + "lodash.pickby", + "language-erlang", + "language-stylus", + "highlights-tokens", + "atom-language-diff", + "atom-language-nginx", + "github-url-to-object", + "markdown-it-expand-tabs", + "markdown-it-lazy-headers", + "oniguruma", + "intercept-stdout", + "readme", + "gfm", + "formatted", + "syntax highlighting", + "Monorepo", + "Angular", + "React", + "Web", + "Node", + "Nest", + "Jest", + "Cypress", + "CLI", + "@zkochan/js-yaml", + "EsBuild", + "Front-end", + "Backend", + "Lint", + "ESLint", + "Testing", + "Express", + "babel-plugin-const-enum", + "babel-plugin-transform-typescript-metadata", + "Swc", + "Tsc", + "@nestjs/schematics", + "kill-port", + "@nx/docker", + "tcp-port-used", + "@oclif/errors", + "@oclif/parser", + "@oclif/help", + "@oclif/plugin-plugins", + "fancy-test", + "oclif", + "@types/indent-string", + "@types/proxyquire", + "@types/wrap-ansi", + "clean-stack", + "@oclif/prettier-config", + "@oclif/test", + "@types/clean-stack", + "@types/ejs", + "@types/pnpapi", + "@types/sinon", + "@types/supports-color", + "@types/wordwrap", + "madge", + "command line", + "args", + "argv", + "oclif-plugin", + "@octokit/plugin-paginate-rest", + "@octokit/plugin-request-log", + "@octokit/plugin-rest-endpoint-methods", + "@octokit/auth-action", + "@octokit/auth-app", + "@octokit/fixtures-server", + "@octokit/request", + "@octokit/tsconfig", + "semantic-release-plugin-update-version-in-files", + "octokit", + "api-client", + "@opentiny/vue-action-menu", + "@opentiny/vue-action-sheet", + "@opentiny/vue-alert", + "@opentiny/vue-amount", + "@opentiny/vue-anchor", + "@opentiny/vue-area", + "@opentiny/vue-async-flowchart", + "@opentiny/vue-autocomplete", + "@opentiny/vue-badge", + "@opentiny/vue-base-select", + "@opentiny/vue-breadcrumb", + "@opentiny/vue-breadcrumb-item", + "@opentiny/vue-bulletin-board", + "@opentiny/vue-button", + "@opentiny/vue-button-group", + "@opentiny/vue-calendar", + "@opentiny/vue-calendar-bar", + "@opentiny/vue-calendar-view", + "@opentiny/vue-card", + "@opentiny/vue-card-group", + "@opentiny/vue-card-template", + "@opentiny/vue-carousel", + "@opentiny/vue-carousel-item", + "@opentiny/vue-cascader", + "@opentiny/vue-cascader-menu", + "@opentiny/vue-cascader-mobile", + "@opentiny/vue-cascader-node", + "@opentiny/vue-cascader-panel", + "@opentiny/vue-cascader-select", + "@opentiny/vue-cascader-view", + "@opentiny/vue-cell", + "@opentiny/vue-checkbox", + "@opentiny/vue-checkbox-button", + "@opentiny/vue-checkbox-group", + "@opentiny/vue-col", + "@opentiny/vue-collapse", + "@opentiny/vue-collapse-item", + "@opentiny/vue-collapse-transition", + "@opentiny/vue-color-picker", + "@opentiny/vue-color-select-panel", + "@opentiny/vue-column-list-group", + "@opentiny/vue-column-list-item", + "@opentiny/vue-company", + "@opentiny/vue-config-provider", + "@opentiny/vue-container", + "@opentiny/vue-country", + "@opentiny/vue-crop", + "@opentiny/vue-currency", + "@opentiny/vue-date-panel", + "@opentiny/vue-date-picker", + "@opentiny/vue-date-picker-mobile-first", + "@opentiny/vue-date-range", + "@opentiny/vue-date-table", + "@opentiny/vue-dept", + "@opentiny/vue-dialog-box", + "@opentiny/vue-dialog-select", + "@opentiny/vue-divider", + "@opentiny/vue-drawer", + "@opentiny/vue-drop-roles", + "@opentiny/vue-drop-times", + "@opentiny/vue-dropdown", + "@opentiny/vue-dropdown-item", + "@opentiny/vue-dropdown-menu", + "@opentiny/vue-dynamic-scroller", + "@opentiny/vue-dynamic-scroller-item", + "@opentiny/vue-espace", + "@opentiny/vue-exception", + "@opentiny/vue-fall-menu", + "@opentiny/vue-file-upload", + "@opentiny/vue-filter", + "@opentiny/vue-filter-bar", + "@opentiny/vue-filter-box", + "@opentiny/vue-filter-panel", + "@opentiny/vue-float-button", + "@opentiny/vue-floatbar", + "@opentiny/vue-floating-button", + "@opentiny/vue-flowchart", + "@opentiny/vue-fluent-editor", + "@opentiny/vue-form", + "@opentiny/vue-form-item", + "@opentiny/vue-fullscreen", + "@opentiny/vue-grid", + "@opentiny/vue-grid-column", + "@opentiny/vue-grid-manager", + "@opentiny/vue-grid-select", + "@opentiny/vue-grid-toolbar", + "@opentiny/vue-guide", + "@opentiny/vue-hrapprover", + "@opentiny/vue-image", + "@opentiny/vue-image-viewer", + "@opentiny/vue-input", + "@opentiny/vue-ip-address", + "@opentiny/vue-layout", + "@opentiny/vue-link", + "@opentiny/vue-link-menu", + "@opentiny/vue-load-list", + "@opentiny/vue-loading", + "@opentiny/vue-locales", + "@opentiny/vue-logon-user", + "@opentiny/vue-logout", + "@opentiny/vue-menu", + "@opentiny/vue-message", + "@opentiny/vue-milestone", + "@opentiny/vue-mind-map", + "@opentiny/vue-modal", + "@opentiny/vue-month-range", + "@opentiny/vue-month-table", + "@opentiny/vue-nav-menu", + "@opentiny/vue-notify", + "@opentiny/vue-number-animation", + "@opentiny/vue-numeric", + "@opentiny/vue-option", + "@opentiny/vue-option-group", + "@opentiny/vue-pager", + "@opentiny/vue-pager-item", + "@opentiny/vue-panel", + "@opentiny/vue-picker", + "@opentiny/vue-pop-upload", + "@opentiny/vue-popconfirm", + "@opentiny/vue-popeditor", + "@opentiny/vue-popover", + "@opentiny/vue-popup", + "@opentiny/vue-progress", + "@opentiny/vue-pull-refresh", + "@opentiny/vue-qr-code", + "@opentiny/vue-quarter-panel", + "@opentiny/vue-query-builder", + "@opentiny/vue-radio", + "@opentiny/vue-radio-button", + "@opentiny/vue-radio-group", + "@opentiny/vue-rate", + "@opentiny/vue-record", + "@opentiny/vue-recycle-scroller", + "@opentiny/vue-river", + "@opentiny/vue-roles", + "@opentiny/vue-row", + "@opentiny/vue-scroll-text", + "@opentiny/vue-scrollbar", + "@opentiny/vue-search", + "@opentiny/vue-select", + "@opentiny/vue-select-dropdown", + "@opentiny/vue-select-mobile", + "@opentiny/vue-select-view", + "@opentiny/vue-select-wrapper", + "@opentiny/vue-selected-box", + "@opentiny/vue-signature", + "@opentiny/vue-skeleton", + "@opentiny/vue-skeleton-item", + "@opentiny/vue-slider", + "@opentiny/vue-slider-button", + "@opentiny/vue-slider-button-group", + "@opentiny/vue-space", + "@opentiny/vue-split", + "@opentiny/vue-standard-list-item", + "@opentiny/vue-statistic", + "@opentiny/vue-steps", + "@opentiny/vue-sticky", + "@opentiny/vue-switch", + "@opentiny/vue-tab-item", + "@opentiny/vue-tabbar", + "@opentiny/vue-tabbar-item", + "@opentiny/vue-table", + "@opentiny/vue-tabs", + "@opentiny/vue-tag", + "@opentiny/vue-tag-group", + "@opentiny/vue-tag-input", + "@opentiny/vue-text-popup", + "@opentiny/vue-time", + "@opentiny/vue-time-line", + "@opentiny/vue-time-panel", + "@opentiny/vue-time-picker", + "@opentiny/vue-time-picker-mobile", + "@opentiny/vue-time-range", + "@opentiny/vue-time-select", + "@opentiny/vue-time-spinner", + "@opentiny/vue-timeline-item", + "@opentiny/vue-toggle-menu", + "@opentiny/vue-tooltip", + "@opentiny/vue-top-box", + "@opentiny/vue-transfer", + "@opentiny/vue-transfer-panel", + "@opentiny/vue-tree", + "@opentiny/vue-tree-menu", + "@opentiny/vue-tree-select", + "@opentiny/vue-upload", + "@opentiny/vue-upload-dragger", + "@opentiny/vue-upload-list", + "@opentiny/vue-user", + "@opentiny/vue-user-account", + "@opentiny/vue-user-contact", + "@opentiny/vue-user-head", + "@opentiny/vue-user-head-group", + "@opentiny/vue-user-link", + "@opentiny/vue-virtual-scroll-box", + "@opentiny/vue-virtual-tree", + "@opentiny/vue-watermark", + "@opentiny/vue-wizard", + "@opentiny/vue-year-range", + "@opentiny/vue-year-table", + "component-library", + "vue-components", + "opentiny", + "renderless-components", + "headless-components", + "@opentiny/utils", + "@opentiny/vue-hooks", + "esno", + "gulp-svg-inline", + "gulp-transform", + "otterhttp", + "node.js", + "web framework", + "header-range-parser", + "@otterhttp/accepts", + "@otterhttp/content-type", + "@otterhttp/proxy-address", + "@otterhttp/type-is", + "@otterhttp/url", + "@otterhttp/router", + "req", + "es-escape-html", + "@otterhttp/content-disposition", + "@otterhttp/encode-url", + "@otterhttp/errors", + "@otterhttp/vary", + "res", + "@otterhttp/etag", + "send-file", + "@pact-foundation/pact-core", + "randexp", + "stack-utils", + "@pact-foundation/pact-js-prettier-config", + "@types/http-proxy", + "@types/nock", + "@types/ramda", + "@types/stack-utils", + "commit-and-tag-version", + "eslint-plugin-chai-friendly", + "pact", + "pact-js", + "contract testing", + "consumer driven testing", + "management", + "store", + "@phosphor/algorithm", + "@phosphor/commands", + "@phosphor/coreutils", + "@phosphor/disposable", + "@phosphor/domutils", + "@phosphor/dragdrop", + "@phosphor/keyboard", + "@phosphor/messaging", + "@phosphor/properties", + "@phosphor/signaling", + "@phosphor/virtualdom", + "@release-it/conventional-changelog", + "@types/jsdom", + "cobertura", + "eslint-config-phun-ky", + "git-cz", + "glob-bin", + "global-jsdom", + "putout", + "quibble", + "remark-github", + "remark-toc", + "typedoc-plugin-frontmatter", + "typedoc-plugin-mdn-links", + "typedoc-plugin-no-inherit", + "typedoc-plugin-remark", + "typedoc-plugin-rename-defaults", + "typedoc-vitepress-theme", + "unified-prettier", + "vitepress-plugin-group-icons", + "a11y", + "accessibility", + "anatomy", + "annotate", + "annotation", + "dissect", + "dissection", + "grid", + "grid-layout", + "html-elements", + "information", + "inspect", + "pin", + "spacing", + "spec", + "speccer", + "specification", + "specifications", + "specs", + "typography", + "stories", + "@webcomponents/shadycss", + "@polymer/gen-closure-declarations", + "@polymer/iron-component-page", + "@polymer/test-fixture", + "@webcomponents/webcomponentsjs", + "babel-preset-minify", + "dom5", + "google-closure-compiler", + "gulp-vulcanize", + "lazypipe", + "polymer-build", + "polymer-cli", + "wct-browser-legacy", + "cldr", + "gauge", + "upath", + "fontkit", + "ps-tree", + "get-value", + "set-value", + "github-api", + "unset-value", + "tap-colorize", + "core-js-bundle", + "app-module-path", + "es6-promise-pool", + "better-ajv-errors", + "jstransformer-dot", + "@metalsmith/layouts", + "@metalsmith/markdown", + "console-control-strings", + "@qooxdoo/eslint-config-qx", + "@qooxdoo/eslint-plugin-qx", + "eslint-formatter-codeframe", + "@qooxdoo/eslint-config-jsdoc-disable", + "@babel/plugin-proposal-optional-chaining-assign", + "dirsum", + "qooxdoo", + "fontend", + "back-end", + "widgets", + "gui", + "databinding", + "interfaces", + "mixins", + "@mdi/font", + "@mdi/svg", + "@xmldom/xmldom", + "animate.css", + "bootstrap-icons", + "eva-icons", + "line-awesome", + "eslint-config-quasar", + "quasar", + "fonts", + "animations", + "gltfpack", + "detect-gpu", + "r3f-perf", + "@types/three", + "three-stdlib", + "suspend-react", + "postprocessing", + "@storybook/react", + "@react-three/drei", + "@react-three/fiber", + "cypress-image-diff-js", + "rollup-plugin-postcss", + "@storybook/addon-links", + "@storybook/node-logger", + "eslint-plugin-storybook", + "@storybook/addon-actions", + "@storybook/react-webpack5", + "@react-three/test-renderer", + "@storybook/testing-library", + "@react-three/postprocessing", + "@storybook/addon-essentials", + "@storybook/addon-interactions", + "@types/testing-library__jest-dom", + "@storybook/preset-create-react-app", + "threejs", + "react-three-fiber", + "ready-player-me", + "3D", + "avatars", + "glb", + "@phryneas/ts-version", + "@size-limit/file", + "@size-limit/webpack", + "@testing-library/react-render-stream", + "@types/babel__core", + "@types/babel__helper-module-imports", + "@types/nanoid", + "@types/query-string", + "esbuild-extra", + "starter", + "reducer", + "slice", + "redux-toolkit", + "@rollup/pluginutils", + "commondir", + "fdir", + "is-reference", + "locate-character", + "require-relative", + "commonjs", + "require", + "is-module", + "string-capitalize", + "es2015", + "groq-js", + "refractor", + "@sanity/ui", + "@types/cpx", + "dotenv-flow", + "@sanity/color", + "@sanity/icons", + "@sanity/client", + "react-refractor", + "esbuild-register", + "@sanity/pkg-utils", + "@portabletext/react", + "@portabletext/toolkit", + "cpx", + "sanity", + "@types/mkdirp", + "@sanity/ui-workshop", + "@sanity/semantic-release-preset", + "eslint-plugin-simple-import-sort", + "API reference", + "@unhead/vue", + "@vueuse/core", + "microdiff", + "@scalar/agent-chat", + "@scalar/code-highlight", + "@scalar/api-client", + "@scalar/icons", + "@scalar/components", + "@scalar/helpers", + "@scalar/openapi-parser", + "@scalar/oas-utils", + "@scalar/openapi-types", + "@scalar/sidebar", + "@scalar/types", + "@scalar/snippetz", + "@scalar/use-hooks", + "@scalar/themes", + "@scalar/use-toasts", + "@scalar/workspace-store", + "@hono/node-server", + "@tailwindcss/vite", + "@vitejs/plugin-vue", + "@vue/test-utils", + "rollup-plugin-webpack-stats", + "vite-plugin-banner", + "vite-plugin-css-injected-by-js", + "@scalar/build-tooling", + "@scalar/core", + "@scalar/galaxy", + "@scalar/react-renderer", + "reference", + "swagger", + "fastify-plugin", + "@fastify/basic-auth", + "@fastify/http-proxy", + "@fastify/swagger", + "@serenity-js/core", + "@serenity-js/rest", + "@serenity-js/web", + "tiny-types", + "@integration/testing-tools", + "@serenity-js/assertions", + "@serenity-js/cucumber", + "@serenity-js/jasmine", + "@serenity-js/local-server", + "@serenity-js/mocha", + "@types/html-minifier", + "mocha-multi", + "automation", + "browser", + "e2e", + "end-to-end", + "integration", + "serenity", + "serenity-js", + "screenplay", + "screenplay-pattern", + "tdd", + "@wdio/reporter", + "@wdio/cli", + "@wdio/dot-reporter", + "@wdio/local-runner", + "@wdio/spec-reporter", + "@wdio/types", + "mocha-testdata", + "webdriverio", + "wdio", + "wdio-reporter", + "@sinonjs/commons", + "@mochify/cli", + "@mochify/driver-puppeteer", + "@mochify/driver-webdriver", + "@sinonjs/eslint-config", + "@sinonjs/referee-sinon", + "@storybook/icons", + "@storybook/csf-plugin", + "@storybook/react-dom-shim", + "telejson", + "memoizerific", + "storybook-addon", + "essentials", + "organize", + "MDX", + "autodocs", + "styleguide", + "style guide", + "web-components", + "@ant-design/colors", + "@ant-design/cssinjs", + "@ant-design/react-slick", + "@fortawesome/free-regular-svg-icons", + "@polkadot/react-identicon", + "@polkadot/util-crypto", + "@polkadot/wasm-crypto", + "@rc-component/tour", + "@zxing/browser", + "@zxing/library", + "boring-avatars", + "flatlist-react", + "jsqr", + "patch-package", + "phosphor-react", + "qrcode.react", + "rc-cascader", + "rc-checkbox", + "rc-collapse", + "rc-dialog", + "rc-drawer", + "rc-dropdown", + "rc-image", + "rc-input", + "rc-input-number", + "rc-mentions", + "rc-menu", + "rc-motion", + "rc-notification", + "rc-pagination", + "rc-picker", + "rc-progress", + "rc-rate", + "rc-resize-observer", + "rc-segmented", + "rc-select", + "rc-steps", + "rc-switch", + "rc-table", + "rc-tabs", + "rc-textarea", + "rc-tree", + "rc-tree-select", + "rc-trigger", + "rc-upload", + "react-pin-input", + "react-qrcode-logo", + "react-superellipse", + "scroll-into-view-if-needed", + "@babel/eslint-plugin", + "@emotion/babel-preset-css-prop", + "@emotion/server", + "@qixian.cs/github-contributors-list", + "@storybook/addons", + "@storybook/builder-webpack5", + "@storybook/manager-webpack5", + "@storybook/theming", + "@types/gtag.js", + "@types/jest-axe", + "@types/jest-environment-puppeteer", + "@types/jest-image-snapshot", + "@types/jquery", + "@types/puppeteer", + "@types/qs", + "@types/react-color", + "@types/react-highlight-words", + "@types/react-resizable", + "@types/react-window", + "@types/throttle-debounce", + "@types/warning", + "antd-img-crop", + "antd-token-previewer", + "array-move", + "bundlesize2", + "dekko", + "duplicate-package-checker-webpack-plugin", + "fetch-jsonp", + "jest-axe", + "jest-image-snapshot", + "jest-puppeteer", + "jsonml-to-react-element", + "lz-string", + "rc-footer", + "rc-tween-one", + "rc-virtual-list", + "react-fast-marquee", + "react-highlight-words", + "react-infinite-scroll-component", + "react-resizable", + "react-sticky-box", + "react-window", + "remark-lint", + "remark-preset-lint-recommended", + "rome", + "stylelint-config-prettier", + "stylelint-config-rational-order", + "stylelint-declaration-block-no-ignored-properties", + "sylvanas", + "vanilla-jsoneditor", + "xhr-mock", + "yaml-front-matter", + "@supernova-studio/client", + "@supernova-studio/model", + "abab", + "async-mutex", + "color2k", + "parse-color", + "string.prototype.matchall", + "@types/tinycolor2", + "trash-cli", + "tsconfig-paths-webpack-plugin", + "Supernova", + "Design Systems", + "Supernovaio", + "SDK", + "Design Tokens", + "Tokens", + "Assets", + "Components", + "Documentation", + "Markdown", + "CMS", + "expr-eval-fork", + "ml-matrix", + "postcss-calc-ast-parser", + "@ava/typescript", + "@stylistic/eslint-plugin-js", + "@svitejs/changesets-changelog-github-compact", + "eslint-config", + "@sveltejs/acorn-typescript", + "@types/cookie", + "devalue", + "esm-env", + "mrmime", + "sade", + "@opentelemetry/api", + "@types/connect", + "dts-buddy", + "official", + "obug", + "@sveltejs/vite-plugin-svelte-inspector", + "vite-plugin", + "vite plugin", + "@babel/plugin-transform-react-constant-elements", + "@svgr/plugin-jsx", + "@svgr/plugin-svgo", + "svgr", + "webpack-loader", + "@swc/counter", + "@swc/types", + "@napi-rs/cli", + "@rstest/core", + "swc", + "swcpack", + "rust", + "tsc", + "stylelint-prettier", + "@swisspost/design-system-icons", + "@swisspost/design-system-tokens", + "stylelint-config-sass-guidelines", + "collections", + "patterns", + "web components", + "ui library", + "symbiote.js", + "symbiote", + "widget", + "microfrontends", + "meta application", + "custom elements", + "shadow dom", + "shadow root", + "constructable stylesheets", + "adopted stylesheets", + "css custom properties", + "pubsub", + "import maps", + "cdn imports", + "https imports", + "reactive html attributes", + "MIT", + "JSDA", + "@types/content-type", + "istanbul-lib-coverage", + "istanbul-lib-report", + "istanbul-lib-source-maps", + "istanbul-reports", + "rollup-plugin-filesize", + "tanem-scripts", + "dom", + "images", + "img", + "scalable-vector-graphics", + "@tanstack/query-core", + "@tanstack/query-persist-client-core", + "@tanstack/query-test-utils", + "@testing-library/svelte", + "tanstack", + "query", + "@types/js-cookie", + "@github/webauthn-json", + "better-docs", + "eslint-config-preact", + "hanko", + "passkey", + "webauthn", + "passcode", + "password", + "kcd-scripts", + "functional", + "aria-query", + "@types/aria-query", + "dom-accessibility-api", + "jest-in-case", + "jest-watch-select-projects", + "jest-snapshot-serializer-ansi", + "unit", + "redent", + "@jest/globals", + "rollup-plugin-delete", + "jest-environment-jsdom-sixteen", + "jest-matcher-utils", + "@callstack/eslint-config", + "@relmify/jest-serializer-strip-ansi", + "testing-library", + "dotenv-cli", + "jest-mock", + "shared-scripts", + "@types/jest-in-case", + "@ph.fritsche/toolbox", + "jest-serializer-ansi", + "esbuild-plugin-globals", + "eslint-plugin-local-rules", + "@ph.fritsche/scripts-config", + "@esbuild-plugins/node-modules-polyfill", + "react-testing-library", + "dom-testing-library", + "regexparam", + "tinyhttp", + "static", + "@tinyhttp/vary", + "supertest-fetch", + "forwarded", + "headers", + "header", + "proxy-addr", + "net", + "network", + "@tinyhttp/accepts", + "@tinyhttp/content-disposition", + "@tinyhttp/content-type", + "params", + "particles.js", + "particlesjs", + "particles", + "particle", + "jsparticles", + "xparticles", + "particles-js", + "particles-bg", + "particles-bg-vue", + "particles-ts", + "particles.ts", + "react-particles-js", + "react-particles.js", + "react-particles", + "vue-particles", + "ngx-particles", + "angular-particles", + "particleground", + "vuejs", + "preactjs", + "angularjs", + "animation", + "html5", + "web-design", + "webdesign", + "css3", + "animated", + "background", + "confetti", + "fireworks", + "fireworks-js", + "confetti-js", + "confettijs", + "fireworksjs", + "canvas-confetti", + "@d-fischer/shared-utils", + "@twurple/api-call", + "@twurple/common", + "jose", + "twitch", + "extension", + "service", + "ebs", + "ts-api-utils", + "natural-compare", + "@eslint-community/regexpp", + "@typescript-eslint/type-utils", + "@typescript-eslint/visitor-keys", + "title-case", + "mdast-util-mdx", + "micromark-extension-mdxjs", + "@typescript-eslint/rule-tester", + "@typescript-eslint/rule-schema-to-typescript-types", + "eslintplugin", + "@typescript-eslint/typescript-estree", + "estree", + "@ucloud-fe/calendar", + "component-classes", + "create-react-context", + "emotion-theming", + "file-bytes-formatter", + "mini-store", + "rc-animate", + "rc-form", + "z-use-drag", + "@types/hoist-non-react-statics", + "@types/raf", + "@ucloud-fe/recodo-gen", + "ast-types", + "babel-plugin-emotion", + "babel-plugin-typescript-to-proptypes", + "babel-plugin-webpack-alias", + "css-hot-loader", + "jest-emotion", + "jsdom-screenshot", + "stylelint-config-styled-components", + "stylelint-processor-styled-components", + "tsc-alias", + "ucloud", + "jotai-x", + "is-hotkey", + "optics-ts", + "zustand-x", + "slate-react", + "jotai-optics", + "@udecode/slate", + "@udecode/utils", + "use-deep-compare", + "slate-hyperscript", + "@udecode/react-utils", + "@udecode/react-hotkeys", + "plate", + "slate", + "button", + "react-button", + "uiw-react", + "react.js", + "uikit", + "react-ui", + "@uiw/icons", + "react-icon", + "react-input", + "@uiw/react-overlay", + "overlay-trigger", + "react-overlay-trigger", + "utils", + "react-utils", + "prom-client", + "openapi-types", + "unleash-client", + "json-schema-to-ts", + "ts-node-dev", + "@types/type-is", + "Unleash", + "native", + "ios", + "android", + "flags", + "lit", + "keyux", + "nanostores", + "@lit/context", + "@uploadcare/cname-prefix", + "@uploadcare/image-shrink", + "@uploadcare/upload-client", + "@uploadcare/quality-insights", + "shipjs", + "render-jsx", + "lit-analyzer", + "ts-lit-plugin", + "@biomejs/js-api", + "@vitest/browser", + "eslint-plugin-wc", + "@types/svg-sprite", + "eslint-plugin-lit", + "vitest-browser-lit", + "@biomejs/wasm-nodejs", + "@size-limit/esbuild-why", + "esbuild-minify-templates", + "@total-typescript/ts-reset", + "@size-limit/preset-small-lib", + "@happy-dom/global-registrator", + "@csstools/postcss-cascade-layers", + "uploadcare", + "lighter", + "file uploader", + "adaptive image", + "image optimization", + "image editing", + "image size", + "cloud image editor", + "upload api client", + "building blocks", + "blocks", + "lr-blocks", + "uc-blocks", + "integrations", + "smart cdn", + "cloud file platform", + "transformation api", + "webp", + "avif", + "css context properties", + "meta applications", + "browserslist-to-esbuild", + "@babel/plugin-transform-react-jsx-self", + "@babel/plugin-transform-react-jsx-source", + "@rolldown/pluginutils", + "babel-plugin-react-compiler", + "fast refresh", + "@tsconfig/node20", + "pkgroll", + "create-vue", + "create-eslint-config", + "ajv-keywords", + "merge-deep", + "swagger-parser", + "@ant-design/icons-svg", + "@makotot/ghostui", + "@types/hast", + "@umijs/bundler-utils", + "@umijs/core", + "@umijs/utils", + "animated-scroll-to", + "codesandbox", + "comlink", + "dumi-afx-deps", + "estree-util-to-js", + "estree-util-visit", + "file-system-cache", + "heti", + "html2sketch", + "mdast-util-find-and-replace", + "mdast-util-to-string", + "prism-themes", + "react-loading-skeleton", + "react-simple-code-editor", + "rehype-remove-comments", + "remark-directive", + "sucrase", + "umi", + "unist-util-visit-parents", + "v8-compile-cache", + "vfile", + "dumi-assets-types", + "@types/highlight-words-core", + "@types/hosted-git-info", + "@types/lodash.throttle", + "@types/pluralize", + "@umijs/lint", + "@umijs/plugins", + "codesandbox-import-utils", + "git-repo-info", + "highlight-words-core", + "zx", + "dumi-theme-mobile", + "static site generator", + "jamstack", + "aleo", + "cryptography", + "blockchain", + "decentralized", + "zero-knowledge", + "oracle", + "event-target-shim", + "@mysticatea/eslint-plugin", + "@mysticatea/spy", + "dts-bundle-generator", + "karma-growl-reporter", + "rollup-plugin-babel-minify", + "rollup-watch", + "type-tester", + "w3c", + "whatwg", + "event", + "abort", + "cancel", + "abortcontroller", + "abortsignal", + "controller", + "signal", + "shim", + "negotiator", + "content", + "negotiation", + "accept", + "middleware", + "progress-estimator", + "@types/figlet", + "@types/git-clone", + "rollup-plugin-node-externals", + "nestjs", + "fullstack", + "zip", + "archive", + "flowcontrol", + "flow", + "control", + "arch", + "cron-parser", + "date.js", + "human-interval", + "@types/human-interval", + "job", + "jobs", + "delayed", + "blockchain-bend4", + "blockchain-meat7", + "bow-swam-troops-care", + "cent-matter-to", + "closer-composed-particularly-shout", + "coach-organized-notice", + "correct-home-silent7", + "course-whenever-merely", + "crop-birthday-web3-children", + "exchange-known-bend", + "face-eventually-bound", + "grass-dollar-crew-floating", + "information-fruit-web3-perfect", + "lay-rest-hour", + "material-balance-trade-solar", + "meat-think-stove8", + "office-deal-mostly1", + "product-slight-adult-settlers", + "recently-done-should-moon", + "scientific-exist-event2", + "sentence-won-little-western", + "speed-wing-eat", + "stay-including", + "supper-term-including-snake", + "truck-hospital-equator-hurt", + "trunk-darkness-believed-corner", + "typical-recall-industry-exchange", + "warn-clothing-whose0", + "weigh-flew-web3-farm", + "@airtap/browserify-istanbul", + "airtap-default", + "airtap-multi", + "bruce-millis-option", + "engine.io", + "engine.io-client", + "find-nearest-file", + "globs-to-files", + "humanize-duration", + "load-script", + "make-promises-safe", + "maybe-combine-errors", + "nanoresource", + "nanoresource-collection", + "on-stream-close", + "run-parallel-settled", + "tap-completed", + "thunky-with-args", + "transient-error", + "abstract-browser", + "simple-get", + "saucelabs", + "fast-uri", + "json-schema-traverse", + "require-from-string", + "@ajv-validator/config", + "@types/require-from-string", + "dayjs-plugin-utc", + "if-node-version", + "json-schema-test", + "module-from-string", + "re2", + "tsify", + "uri-js", + "json-schema-validator", + "json-schema-validation", + "Ajv", + "longjohn", + "buffer-more-ints", + "claire", + "AMQP", + "AMQP 0-9-1", + "RabbitMQ", + "simple", + "ux bootstrap", + "client-side", + "@angular-cli/ast-tools", + "@angular-cli/base-href-webpack", + "@ngtools/json-schema", + "@ngtools/webpack", + "denodeify", + "ember-cli-normalize-entity-name", + "ember-cli-string-utils", + "exists-sync", + "findup", + "get-caller-file", + "isbinaryfile", + "node-modules-path", + "script-loader", + "silent-error", + "sourcemap-istanbul-instrumenter-loader", + "component library", + "justified", + "256", + "ansi", + "bgblack", + "bgBlack", + "bgblue", + "bgBlue", + "bgcyan", + "bgCyan", + "bggreen", + "bgGreen", + "bgmagenta", + "bgMagenta", + "bgred", + "bgRed", + "bgwhite", + "bgWhite", + "bgyellow", + "bgYellow", + "black", + "blue", + "bold", + "clorox", + "colour", + "cyan", + "dim", + "formatting", + "gray", + "green", + "grey", + "hidden", + "inverse", + "italic", + "logging", + "magenta", + "red", + "reset", + "rgb", + "shell", + "str", + "strikethrough", + "style", + "text", + "underline", + "white", + "yellow", + "environment", + "escape", + "escapes", + "vt100", + "sequence", + "codes", + "cursor", + "iterm2", + "screen", + "erase", + "scrollback", + "regex", + "regexp", + "re", + "match", + "find", + "pattern", + "svg-term-cli", + "@ant-design/icons-vue", + "@emotion/unitless", + "@simonwep/pickr", + "array-tree-filter", + "dom-align", + "dom-scroll-into-view", + "shallow-equal", + "vue-types", + "@babel/plugin-proposal-optional-chaining", + "@babel/plugin-transform-object-assign", + "@types/koa", + "@types/lru-cache", + "@types/postcss-load-config", + "@vitejs/plugin-vue-jsx", + "@vue/babel-plugin-jsx", + "@vue/cli-plugin-eslint", + "@vue/eslint-config-prettier", + "@vue/vue3-jest", + "@webpack-cli/serve", + "ali-oss", + "babel-plugin-inline-import-data-uri", + "babel-plugin-transform-require-context", + "colorful", + "compare-versions", + "cz-git", + "diacritics", + "docsearch.js", + "enquire-js", + "eslint-plugin-no-explicit-type-exports", + "gulp-strip-code", + "ignore-emit-webpack-plugin", + "is-windows", + "jest-serializer-vue", + "jest-transform-stub", + "json-templater", + "less-plugin-npm-import", + "less-vars-to-js", + "majo", + "markdown-it-table-of-contents", + "merge2", + "remark-stringify", + "remark-yaml-config", + "reqwest", + "rucksack-css", + "selenium-server", + "string-replace-loader", + "umi-request", + "vue-clipboard2", + "vue-drag-resize", + "vue-infinite-scroll", + "vue-request", + "vue-tsc", + "webpackbar", + "vueComponent", + "@rc-component/form", + "@rc-component/menu", + "@rc-component/rate", + "@rc-component/tabs", + "@rc-component/tree", + "@rc-component/util", + "@rc-component/image", + "@rc-component/input", + "@rc-component/steps", + "@rc-component/table", + "@rc-component/dialog", + "@rc-component/drawer", + "@rc-component/motion", + "@rc-component/picker", + "@rc-component/qrcode", + "@rc-component/select", + "@rc-component/slider", + "@rc-component/switch", + "@rc-component/upload", + "@rc-component/tooltip", + "@rc-component/trigger", + "@ant-design/fast-color", + "@rc-component/cascader", + "@rc-component/checkbox", + "@rc-component/collapse", + "@rc-component/dropdown", + "@rc-component/mentions", + "@rc-component/progress", + "@rc-component/textarea", + "@rc-component/segmented", + "@rc-component/pagination", + "@ant-design/cssinjs-utils", + "@rc-component/tree-select", + "@rc-component/color-picker", + "@rc-component/input-number", + "@rc-component/notification", + "@rc-component/mutate-observer", + "@rc-component/resize-observer", + "p-all", + "runes2", + "mermaid", + "spinnies", + "env-paths", + "@types/tar", + "antd-style", + "@types/pngjs", + "cli-progress", + "domparser-rs", + "vanilla-tilt", + "@ant-design/x", + "react-countup", + "@prettier/sync", + "@types/adm-zip", + "@types/ali-oss", + "@blazediff/core", + "@types/css-tree", + "@types/minimist", + "@types/spinnies", + "@types/nprogress", + "lunar-typescript", + "@ant-design/x-sdk", + "csstree-validator", + "@types/http-server", + "@types/cli-progress", + "@antfu/eslint-config", + "@ant-design/compatible", + "@codecov/webpack-plugin", + "@types/isomorphic-fetch", + "dumi-plugin-color-chunk", + "@microflash/rehype-figure", + "@rc-component/virtual-list", + "circular-dependency-plugin", + "@codesandbox/sandpack-react", + "@eslint-react/eslint-plugin", + "@ant-design/happy-work-theme", + "cypress-image-diff-html-report", + "@ianvs/prettier-plugin-sort-imports", + "remark-lint-no-undefined-references", + "@madccc/duplicate-package-checker-webpack-plugin", + "@api-components/api-console-ext-comm", + "@api-components/api-documentation", + "@api-components/api-summary", + "@polymer/app-layout", + "@polymer/iron-media-query", + "@polymer/paper-toast", + "@anypoint-web-components/anypoint-menu-mixin", + "@open-wc/building-rollup", + "@polymer/iron-test-helpers", + "@web/test-runner-visual-regression", + "amf-client-js", + "rollup-plugin-cpy", + "unzipper", + "raml", + "amf", + "diff-match-patch", + "expose-loader", + "klaw-sync", + "eslint-config-recommended", + "restful", + "apidoc-light", + "portable", + "programmatic", + "cli-app", + "api-documentation", + "markdown-documentation", + "http2", + "apple", + "push", + "push notifications", + "iOS", + "apns", + "notifications", + "apollo-cache", + "apollo-utilities", + "ts-invariant", + "@types/zen-observable", + "symbol-observable", + "zen-observable", + "jsnext", + "relay", + "zen-observable-ts", + "@types/graphql", + "apollo-link-http-common", + "apollo-fetch", + "object-to-querystring", + "cracks", + "root", + "node_modules", + "@colors/colors", + "appium-adb", + "appium-chromedriver", + "asyncbox", + "io.appium.settings", + "portscanner", + "teen_process", + "@appium/eslint-config-appium-ts", + "@appium/tsconfig", + "@types/bluebird", + "@types/portscanner", + "appium", + "mobile testing", + "@azure/identity", + "@azure/core-auth", + "@azure/functions", + "diagnostic-channel", + "@opentelemetry/core", + "@azure/functions-old", + "@opentelemetry/api-logs", + "@opentelemetry/sdk-logs", + "@opentelemetry/resources", + "@opentelemetry/sdk-metrics", + "@azure/monitor-opentelemetry", + "@opentelemetry/sdk-trace-base", + "@opentelemetry/sdk-trace-node", + "diagnostic-channel-publishers", + "@opentelemetry/otlp-exporter-base", + "@opentelemetry/semantic-conventions", + "@azure/monitor-opentelemetry-exporter", + "@opentelemetry/exporter-logs-otlp-http", + "@opentelemetry/exporter-trace-otlp-http", + "@opentelemetry/exporter-metrics-otlp-http", + "@opentelemetry/exporter-metrics-otlp-proto", + "@azure/opentelemetry-instrumentation-azure-sdk", + "@types/long", + "@types/microsoft__typescript-etw", + "exception monitoring", + "request monitoring", + "performance monitoring", + "application insights", + "microsoft", + "azure", + "cloud", + "tracing", + "telemetry", + "analytics", + "apm", + "@aws-sdk/credential-provider-node", + "@aws-sdk/hash-node", + "@aws-sdk/protocol-http", + "@aws-sdk/signature-v4", + "@aws-sdk/types", + "aws-xray-sdk-core", + "@aws-amplify/amplify-appsync-simulator", + "constructs", + "prettier-plugin-organize-attributes", + "projen", + "appsync", + "aws", + "gql", + "lambda", + "xray", + "archiver-utils", + "buffer-crc32", + "readdir-glob", + "zip-stream", + "archiver-jsdoc-theme", + "stream-bench", + "stream", + "@babel/plugin-syntax-class-properties", + "option", + "define-properties", + "es-abstract", + "es-shim-unscopables", + "@es-shims/api", + "@ljharb/eslint-config", + "encoding", + "has-strict-mode", + "Array.prototype.flatMap", + "flatMap", + "array", + "ESnext", + "flatten", + "Array.prototype.flatten", + "es-shim API", + "arrayify", + "convert", + "value", + "ensure", + "is-nan", + "object-is", + "array-fill", + "fn.name", + "is-buffer", + "propget", + "pruddy-error", + "assertion", + "asserts", + "shouldjs", + "unit testing", + "babel-minify", + "rollup-plugin-npm", + "babel-preset-es2017", + "native-promise-only", + "eslint-plugin-prefer-arrow", + "babel-plugin-syntax-async-generators", + "callback", + "@types/tap", + "await", + "listen", + "then-sleep", + "@babel/node", + "@pika/pack", + "pika-plugin-build-web-babel", + "pika-plugin-ts-types", + "validate", + "libnpx", + "node-cleanup", + "npm-lockfile", + "find-package-json", + "audit", + "lockfile", + "shrinkwrap", + "import-cwd", + "parse-github-url", + "babel-plugin-rewire", + "auto", + "automatic", + "changelog", + "change", + "git", + "commit", + "commits", + "detective", + "detective-es6", + "is-builtin-module", + "package-json", + "sync-exec", + "package", + "fraction.js", + "prefix", + "@vercel/nft", + "arrgv", + "callsites", + "cbor", + "chunkd", + "ci-parallel-vars", + "code-excerpt", + "common-path-prefix", + "concordance", + "currently-unhandled", + "emittery", + "ignore-by-default", + "matcher", + "memoize", + "package-config", + "resolve-cwd", + "supertap", + "temp-dir", + "@sindresorhus/tsconfig", + "🦄", + "concurrent", + "parallel", + "fast", + "promises", + "function", + "generators", + "yield", + "observable", + "observables", + "webpack-log", + "empty-module", + "ps-node", + "loader", + "ieee754", + "jmespath", + "hash-test-vectors", + "insert-module-globals", + "amazon", + "ec2", + "simpledb", + "s3", + "sqs", + "ses", + "sns", + "route53", + "rds", + "elasticache", + "cloudfront", + "fps", + "cloudformation", + "cloudwatch", + "dynamodb", + "iam", + "swf", + "autoscaling", + "cloudsearch", + "elb", + "loadbalancing", + "emr", + "mapreduce", + "importexport", + "storagegateway", + "workflow", + "vpc", + "beanstalk", + "glacier", + "kinesis", + "cloudtrail", + "waf", + "memoizee", + "@deque/dot", + "colorjs.io", + "typedarray", + "emoji-regex", + "grunt-babel", + "revalidator", + "sri-toolbox", + "serve-handler", + "grunt-bytesize", + "weakmap-polyfill", + "clean-jsdoc-theme", + "css-selector-parser", + "@axe-core/webdriverjs", + "conventional-commits-parser", + "eslint-plugin-mocha-no-only", + "Accessibility", + "axe", + "proxy-from-env", + "dev-null", + "formdata-node", + "stream-throttle", + "karma-jasmine-ajax", + "string-replace-async", + "abortcontroller-polyfill", + "rollup-plugin-bundle-size", + "@rollup/plugin-multi-entry", + "rollup-plugin-auto-external", + "istanbul-instrumenter-loader", + "ajax", + "browserify-mime", + "json-edm-parser", + "md5.js", + "batchflow", + "factor-bundle", + "karma-env-preprocessor", + "storage", + "output-file-sync", + "v8flags", + "babel-code-frame", + "babel-helpers", + "babel-messages", + "private", + "babel-helper-transform-fixture-test-runner", + "eslint-config-babel", + "trim-right", + "try-resolve", + "babel-preset-jest", + "babel-plugin-transform-export-extensions", + "babel-preset-power-assert", + "conventional-github-releaser", + "module.exports", + "airbnb-js-shims", + "babel-plugin-transform-replace-object-assign", + "dynamic", + "import", + "@umijs/test", + "babel-preset-umi", + "react-toolbox", + "@istanbuljs/load-nyc-config", + "istanbul-lib-instrument", + "test-exclude", + "pmock", + "instrumentation", + "require-package-name", + "@babel/plugin-proposal-function-bind", + "@babel/preset-stage-0", + "lodash-bound", + "lodash-compat", + "cherry-pick", + "find-babel-config", + "prettier-eslint-cli", + "resolver", + "alias", + "rewrite", + "rename", + "mapping", + "babel-plugin-tester", + "babel-helper-remap-async-to-generator", + "babel-plugin-syntax-async-functions", + "babel-helper-function-name", + "babel-plugin-syntax-class-properties", + "babel-plugin-syntax-decorators", + "es7", + "babel-plugin-transform-strict-mode", + "babel-plugin-syntax-object-rest-spread", + "babel-helper-builder-react-jsx", + "@babel/preset-flow", + "babel-plugin-flow-react-proptypes", + "pkgfiles", + "minification", + "propTypes", + "regenerator-transform", + "@babel/plugin-proposal-numeric-separator", + "@babel/plugin-transform-property-mutators", + "@babel/plugin-proposal-optional-catch-binding", + "@babel/plugin-proposal-nullish-coalescing-operator", + "babel-plugin-check-es2015-constants", + "babel-plugin-syntax-trailing-function-commas", + "babel-plugin-transform-es2015-arrow-functions", + "babel-plugin-transform-es2015-block-scoped-functions", + "babel-plugin-transform-es2015-classes", + "babel-plugin-transform-es2015-computed-properties", + "babel-plugin-transform-es2015-destructuring", + "babel-plugin-transform-es2015-duplicate-keys", + "babel-plugin-transform-es2015-for-of", + "babel-plugin-transform-es2015-function-name", + "babel-plugin-transform-es2015-literals", + "babel-plugin-transform-es2015-modules-amd", + "babel-plugin-transform-es2015-modules-systemjs", + "babel-plugin-transform-es2015-modules-umd", + "babel-plugin-transform-es2015-object-super", + "babel-plugin-transform-es2015-parameters", + "babel-plugin-transform-es2015-shorthand-properties", + "babel-plugin-transform-es2015-spread", + "babel-plugin-transform-es2015-sticky-regex", + "babel-plugin-transform-es2015-typeof-symbol", + "babel-plugin-transform-es2015-unicode-regex", + "babel-plugin-transform-exponentiation-operator", + "electron-to-chromium", + "babel-preset-flow", + "babel-plugin-transform-react-display-name", + "babel-plugin-transform-react-jsx-source", + "babel-plugin-transform-react-jsx-self", + "@babel/plugin-proposal-private-methods", + "babel-plugin-transform-do-expressions", + "babel-plugin-transform-function-bind", + "babel-plugin-transform-class-constructor-call", + "babel-plugin-transform-decorators", + "babel-plugin-transform-async-generator-functions", + "home-or-tmp", + "esutils", + "to-fast-properties", + "lodash.zipobject", + "babel-plugin-transform-node-env-inline", + "babel-plugin-transform-flow-strip-types", + "unicode-9.0.0", + "model", + "view", + "@purtuga/esm-webpack-plugin", + "@types/validator", + "@web/test-runner-browserstack", + "@web/test-runner-junit-reporter", + "otpauth", + "backend-as-a-service", + "grunt-template", + "codec", + "decoder", + "encoder", + "base64", + "basic", + "auth", + "authorization", + "basicauth", + "sorted-object", + "ministructure", + "sinatra", + "orange sms", + "node-gyp-build", + "prebuildify", + "encryption", + "crypt", + "hash", + "esm2umd", + "pomelo-logger", + "di", + "IoC", + "AOP", + "dependency", + "injection", + "consistent", + "hot reload", + "front-backend", + "sharable codes", + "dependency injection", + "asynchronous script loading", + "magic, self-described javaScript objects", + "beautify", + "art-near-room-catch", + "blanket-line", + "born-greatly-explain3", + "bring-water-silence", + "brush-bigger-afternoon0", + "column-wore-meet-war", + "compare-breeze-mad2", + "did-straight-sister-sail", + "excitement-tonight-dead", + "gain-pleasant-prepare", + "industrial-public-immediately-until", + "is-straight-web3-attack", + "known-wet-thirty-gave", + "listen-private-thee6", + "mainly-cent", + "mountain-quarter-sit8", + "mouse-bat-web3-present", + "needs-supper-anything", + "percent-impossible-score", + "rocket-location-calm-valley", + "seldom-fire-web3-running", + "shade-swim-shells1", + "spider-melted-chemical", + "stretch-onto-driver7", + "tiny-dream-supply5", + "tool-invented-girl-jungle", + "we-hunt-process", + "web3-automobile7", + "whether-dangerous", + "ansicolors", + "ignorepatterns", + "response-stream", + "script-injector", + "find-global-packages", + "jsl", + "dotpathlookup", + "simplehttpserver", + "platform", + "docdown", + "qunit-extras", + "performance", + "speed", + "@beyond-js/specifier-parser", + "@beyond-js/fs", + "@beyond-js/bee", + "ansi-to-html", + "concat-with-sourcemaps", + "json-format", + "resolve-package-path", + "uimport", + "global-modules", + "universal", + "universal javascript", + "universal typescript", + "isomorphic", + "isomorphic javascript", + "isomorphic typescript", + "sigle page", + "spa", + "modular development", + "microfrontend", + "micro frontend", + "microservices", + "micro services", + "hmr", + "hot module replacement", + "ssr", + "server side rendering", + "typescript packager", + "JAMStack", + "real time", + "react framework", + "ssr react framework", + "vue framework", + "ssr vue framework", + "svelte framework", + "ssr svelte framework", + "websockets", + "check-types", + "hoopy", + "tryer", + "please-release-me", + "spooks", + "streamify", + "stringify", + "serialise", + "serialize", + "write", + "asynchronous", + "arbitrary", + "precision", + "arithmetic", + "big", + "number", + "decimal", + "float", + "biginteger", + "bigdecimal", + "bignumber", + "bigint", + "bignum", + "file-uri-to-path", + "addon", + "gyp", + "c", + "c++", + "@noble/hashes", + "@antv/component", + "@antv/g2", + "@antv/g2plot", + "@antv/util", + "d3-color", + "react-reconciler", + "@antv/data-set", + "@babel/preset-es2015", + "@storybook/addon-info", + "@storybook/addon-knobs", + "@storybook/addon-options", + "@umijs/fabric", + "@welldone-software/why-did-you-render", + "aphrodite", + "babel-plugin-inline-react-svg", + "babel-plugin-inline-svg", + "bx-jest-electron", + "declaration-bundler-webpack-plugin", + "git-directory-deploy", + "imports-loader", + "moment-jalaali", + "react-with-styles-interface-aphrodite", + "react-with-styles-interface-css-compiler", + "snapshot-diff", + "g2", + "@types/readable-stream", + "buffers", + "awesomesauce", + "falafel", + "foreach", + "coffee-react", + "uglify-save-license", + "curses", + "tui", + "tput", + "terminfo", + "termcap", + "ansi-term", + "drawille-canvas-blessed-contrib", + "map-canvas", + "marked-terminal", + "memory-streams", + "picture-tuber", + "sparkline", + "term-canvas", + "x256", + "@types/blessed", + "block", + "loop", + "kefir", + "baconjs", + "promises-a", + "promises-aplus", + "deferred", + "deferreds", + "future", + "flow control", + "dsl", + "fluent interface", + "standardx", + "BN", + "Big number", + "BigNum", + "Modulo", + "Montgomery", + "create-error", + "bookshelf-jsdoc-theme", + "postgresql", + "datamapper", + "active record", + "error", + "@types/mime", + "@astrojs/mdx", + "@astrojs/check", + "@astrojs/prism", + "@astrojs/sitemap", + "astro-auto-import", + "prettier-plugin-astro", + "@astrojs/markdown-remark", + "mincer", + "eyeglass-module", + "box", + "boxes", + "border", + "quote-stream", + "static-module", + "browserify-transform", + "readFileSync", + "asset", + "heimdalljs", + "array-equal", + "fs-tree-diff", + "broccoli-plugin", + "mocha-eslint", + "release-it-lerna-changelog", + "merge-trees", + "broccoli-fixture", + "copy", + "broccoli-fixturify", + "multidep", + "ts-docs-gen", + "tslint-plugin-prettier", + "browser-sync-client", + "browser-sync-ui", + "bs-recipes", + "dev-ip", + "easy-extender", + "eazy-logger", + "resp-modifier", + "bs-snippet-injector", + "generate-changelog", + "browser sync", + "live reload", + "sync", + "subarg", + "defined", + "parents", + "deps-sort", + "duplexer2", + "htmlescape", + "module-deps", + "stream-http", + "browser-pack", + "syntax-error", + "os-browserify", + "shasum-object", + "vm-browserify", + "domain-browser", + "mkdirp-classic", + "string_decoder", + "tty-browserify", + "browser-resolve", + "browserify-zlib", + "querystring-es3", + "https-browserify", + "read-only-stream", + "stream-browserify", + "timers-browserify", + "console-browserify", + "cached-path-relative", + "constants-browserify", + "labeled-stream-splicer", + "seq", + "isstream", + "coffeeify", + "browser-unpack", + "has-object-spread", + "has-template-literals", + "make-generator-function", + "commonj-esque", + "exposify", + "mothership", + "rename-function-calls", + "test-peer-range", + "transform", + "window", + "baseline-browser-mapping", + "node-releases", + "update-browserslist-db", + "browsers", + "target", + "base-x", + "ts-standard", + "base58", + "bitcoin", + "crytography", + "decode", + "decoding", + "encode", + "litecoin", + "typescript-cached-transpile", + "acorn-dynamic-import", + "acorn-jsx", + "regexpu-core", + "console-group", + "@rollup/plugin-buble", + "test262-stream", + "transpilation", + "compilation", + "esnext", + "es2017", + "arraybuffer", + "compatible", + "dataview", + "uint8array", + "equal", + "builtin", + "built-in", + "builtins", + "bundled", + "names", + "flexbox", + "@asyncapi/specs", + "@clack/prompts", + "@oclif/plugin-warn-if-update-available", + "@stoplight/yaml", + "jsonpathly", + "mergician", + "@types/jsonpath", + "bump", + "compress", + "mv", + "dtrace-provider", + "safe-json-stringify", + "ben", + "log4j", + "streamsearch", + "@mscdex/eslint-config", + "uploads", + "multipart", + "closurecompiler", + "lxiv", + "metascript", + "pretty-hrtime", + "testjs", + "utfx", + "typed array", + "webrtc", + "byte", + "converter", + "@bcoe/v8-coverage", + "foreground-child", + "v8-to-istanbul", + "chai-jest-snapshot", + "v8", + "profiler", + "inspector", + "@types/mri", + "eslint-config-rem", + "rollup-plugin-esbuild", + "@babel/plugin-syntax-typescript", + "@cacheable/utils", + "@faker-js/faker", + "@keyv/redis", + "@vitest/spy", + "cache-manager-redis-yet", + "cacheable", + "caching", + "cache manager", + "in-memory cache", + "multi-store cache", + "ttl", + "caching layer", + "cache abstraction", + "cache middleware", + "cache strategies", + "cache wrapper", + "call-bind-apply-helpers", + "es-define-property", + "get-intrinsic", + "set-function-length", + "es", + "callbind", + "callbound", + "call", + "bind", + "bound", + "call-bound", + "camel-case", + "camel", + "case", + "dash", + "hyphen", + "separator", + "pascalcase", + "pascal-case", + "support", + "prebuild-install", + "assert-rejects", + "graphic", + "graphics", + "pixman", + "cairo", + "image", + "pdf", + "case sensitive", + "slimerjs", + "scraping", + "loupe", + "pathval", + "check-error", + "assertion-error", + "@web/dev-server-rollup", + "chai-plugin", + "assertions", + "strategy", + "@debitoor/eslint-config-debitoor", + "objects", + "subset", + "contains", + "containSubset", + "deep", + "like", + "similar", + "includes", + "superset", + "yoctodelay", + "docpress", + "git-update-ghpages", + "gulp-ava", + "gulp-uglify-es", + "random", + "mersenne", + "name", + "address", + "dice", + "param-case", + "kebab-case", + "header-case", + "c12", + "confbox", + "convert-gitmoji", + "node-fetch-native", + "ofetch", + "pkg-types", + "scule", + "std-env", + "@kurkle/color", + "@rollup/plugin-inject", + "@types/offscreencanvas", + "chartjs-adapter-luxon", + "chartjs-adapter-moment", + "chartjs-test-utils", + "eslint-config-chartjs", + "eslint-plugin-es", + "karma-safari-private-launcher", + "rollup-plugin-swc3", + "charts", + "data", + "graphs", + "domutils", + "domhandler", + "cheerio-select", + "whatwg-mimetype", + "encoding-sniffer", + "parse5-parser-stream", + "parse5-htmlparser2-tree-adapter", + "@imgix/js-core", + "@octokit/graphql", + "@vitest/eslint-plugin", + "@types/whatwg-mimetype", + "htmlparser", + "scraper", + "xml", + "node-version", + "child", + "@better-scroll/core", + "add-dom-event-listener", + "choerodon-ui-font", + "css-animation", + "css-unit-converter", + "dom-closest", + "dom-lib", + "element-resize-event", + "htmlhint", + "insert-css", + "jsbarcode", + "jsonlint", + "jsonlint-mod", + "mutationobserver-shim", + "querystringify", + "quill-delta-to-html", + "react-beautiful-dnd", + "react-codemirror2", + "react-easy-crop", + "react-image-lightbox", + "react-lazy-load", + "react-quill", + "rmc-feedback", + "smooth-scroll-into-view-if-needed", + "@babel/plugin-transform-proto-to-assign", + "@types/codemirror", + "@types/element-resize-event", + "@types/faker", + "@types/insert-css", + "@types/jsbarcode", + "@types/prettier", + "@types/qrcode.react", + "@types/react-beautiful-dnd", + "@types/react-is", + "@types/react-slick", + "bisheng-plugin-choerodon-ui", + "bisheng-plugin-description", + "bisheng-plugin-react", + "bisheng-plugin-toc", + "eslint-tinker", + "intersection-observer", + "mark-twain", + "rc-queue-anim", + "rc-scroll-anim", + "react-infinite-scroller", + "react-sublime-video", + "scrollama", + "values.js", + "vfile-message", + "webpack-filter-warnings-plugin", + "choerodon", + "readdirp", + "@paulmillr/jsbt", + "watchFile", + "watcher", + "watching", + "file", + "ci", + "continuous", + "detect", + "@ckeditor/ckeditor5-emoji", + "@ckeditor/ckeditor5-style", + "@ckeditor/ckeditor5-mention", + "@ckeditor/ckeditor5-minimap", + "@ckeditor/ckeditor5-autosave", + "@ckeditor/ckeditor5-bookmark", + "@ckeditor/ckeditor5-language", + "@ckeditor/ckeditor5-highlight", + "@ckeditor/ckeditor5-code-block", + "@ckeditor/ckeditor5-fullscreen", + "@ckeditor/ckeditor5-html-embed", + "@ckeditor/ckeditor5-page-break", + "@ckeditor/ckeditor5-theme-lark", + "@ckeditor/ckeditor5-word-count", + "@ckeditor/ckeditor5-show-blocks", + "@ckeditor/ckeditor5-html-support", + "@ckeditor/ckeditor5-markdown-gfm", + "@ckeditor/ckeditor5-remove-format", + "@ckeditor/ckeditor5-source-editing", + "@ckeditor/ckeditor5-horizontal-line", + "@ckeditor/ckeditor5-find-and-replace", + "@ckeditor/ckeditor5-restricted-editing", + "@ckeditor/ckeditor5-special-characters", + "classname", + "minifier", + "@chrisblossom/eslint-config", + "@types/read-pkg-up", + "temp-sandbox", + "clean", + "parent-module", + "uncache", + "uncached", + "unrequire", + "delete", + "remove", + "rm", + "opts", + "parseopt", + "opt", + "argsparse", + "optparse", + "autocomplete", + "autocompletion", + "d", + "es6-iterator", + "timers-ext", + "eslint-config-medikoo", + "git-list-updated", + "github-release-from-cc-changelog", + "prettier-elastic", + "tad", + "toggle", + "display", + "show", + "hide", + "string-length", + "spinner", + "spinners", + "expresso", + "ansi-256-colors", + "git-rev", + "growl", + "line", + "tables", + "tabular", + "jest-runner-eslint", + "lerna-changelog", + "truncate", + "ellipsis", + "limit", + "width", + "cardinal", + "hyperlinker", + "@oclif/screen", + "extract-stack", + "object-treeify", + "@oclif/linewrap", + "natural-orderby", + "password-prompt", + "@types/strip-ansi", + "@types/ansi-styles", + "@types/extract-stack", + "@types/rollup", + "@yarnpkg/core", + "@yarnpkg/fslib", + "eslint-plugin-arca", + "rollup-plugin-multi-input", + "parsing", + "argument", + "good-listener", + "select", + "tiny-emitter", + "cut", + "clipboard-image", + "is-wayland", + "is64bit", + "powershell-utils", + "paste", + "copy-paste", + "pasteboard", + "pbcopy", + "clip", + "xclip", + "xsel", + "command line interface", + "progress bar", + "istanbul-harmony", + "coro", + "coroutine", + "mask", + "ignore-walk", + "teeny-request", + "urlgrey", + "code-coverage", + "codecov.io", + "@codemirror/lint", + "@codemirror/view", + "@codemirror/state", + "@codemirror/search", + "@codemirror/commands", + "@codemirror/language", + "@codemirror/autocomplete", + "@codemirror/buildhelper", + "google-closure-compiler-js", + "language", + "jison", + "wcwidth", + "column", + "exists", + "array-back", + "find-replace", + "typical", + "options", + "chalk-template", + "table-layout", + "usage", + "is-utf8", + "cachedir", + "find-node-modules", + "mocha-multi-reporters", + "@istanbuljs/nyc-config-babel", + "cz-conventional-changelog-default-export", + "conventional changelog", + "es2015-tag", + "es6-tag", + "heredoc", + "indent", + "indents", + "literal", + "multi", + "multiline", + "normalize", + "one", + "oneline", + "single", + "singleline", + "strings", + "strip", + "tag", + "tagged", + "emitter", + "emit", + "listener", + "observe", + "compressible", + "on-headers", + "gzip", + "deflate", + "brotli", + "buffer-from", + "ctrlc-wrapper", + "coveralls-next", + "@types/shell-quote", + "@hirez_io/observer-spy", + "eslint-plugin-import-lite", + "eslint-config-flat-gitignore", + "bash", + "sh", + "cson", + "faceoff", + "hjson", + "x2js", + "conf", + "node-config", + "config-node", + "env", + "atomically", + "is-safe-filename", + "xdg-basedir", + "settings", + "preferences", + "persist", + "persistent", + "save", + "rack", + "flash", + "kruptein", + "mongo", + "session", + "vite-plugin-dts", + "defu", + "is-unicode-supported", + "sentencer", + "reporter", + "elegant", + "clack", + "stacktrace", + "eco", + "ect", + "eta", + "slm", + "dust", + "jazz", + "just", + "mote", + "qejs", + "twig", + "vash", + "jqtpl", + "twing", + "hamlet", + "hamljs", + "liquor", + "plates", + "teacup", + "toffee", + "walrus", + "htmling", + "ractive", + "whiskers", + "tinyliquid", + "velocityjs", + "haml-coffee", + "liquid-node", + "arc-templates", + "dustjs-helpers", + "swig-templates", + "dustjs-linkedin", + "bracket-template", + "engine", + "rfc6266", + "rfc7231", + "@types/normalize-package-data", + "fd-package-json", + "normalize-package-data", + "@conventional-changelog/git-client", + "conventional-changelog-writer", + "conventional-changelog-preset-loader", + "conventional", + "tempfile", + "add-stream", + "compare-func", + "conventionalcommits.org", + "preset", + "inline-source-map", + "sourcemap", + "source", + "map", + "@borderless/ts-scripts", + "top-sites", + "cookies", + "sign", + "unsign", + "toggle-selection", + "@brettz9/node-static", + "selenium-server-standalone-jar", + "is-gzip", + "@types/glob-parent", + "@types/normalize-path", + "eslint-config-webpack", + "@types/serialize-javascript", + "transfer", + "move", + "noms", + "qr", + "qrcode", + "simple qr", + "npm qr JavaScript", + "js qr code", + "corcojs-qrcode-sample", + "logo", + "simple qrcode", + "cordova-common", + "cordova-create", + "cordova-lib", + "@cordova/eslint-config", + "ES3", + "ES5", + "ES6", + "ES7", + "ES2015", + "ES2016", + "ES2017", + "ES2018", + "ES2019", + "ES2020", + "ES2021", + "ES2022", + "ES2023", + "ES2024", + "ECMAScript 3", + "ECMAScript 5", + "ECMAScript 6", + "ECMAScript 7", + "ECMAScript 2015", + "ECMAScript 2016", + "ECMAScript 2017", + "ECMAScript 2018", + "ECMAScript 2019", + "ECMAScript 2020", + "ECMAScript 2021", + "ECMAScript 2022", + "ECMAScript 2023", + "ECMAScript 2024", + "Map", + "Set", + "WeakMap", + "WeakSet", + "TypedArray", + "Promise", + "Observable", + "Symbol", + "Iterator", + "AsyncIterator", + "URL", + "URLSearchParams", + "queueMicrotask", + "setImmediate", + "structuredClone", + "ponyfill", + "parse-json", + "@types/parse-json", + "eslint-config-davidtheclark-node", + "remark-preset-davidtheclark", + "load", + "lcov-parse", + "log-driver", + "cpy", + "cp", + "files", + "file-system", + "quick", + "contents", + "tslog", + "hpagent", + "seenreq", + "http2-wrapper", + "@types/got", + "spider", + "crc16ccitt", + "crc16kermit", + "crc16modbus", + "crc16", + "crc16xmodem", + "crc1", + "crc24", + "crc32", + "crc81wire", + "crc8", + "crc8dvbs2", + "crcjam", + "cipher-base", + "ripemd160", + "sha.js", + "async-traverse-tree", + "css-url-parser", + "data-uri-to-buffer", + "group-args", + "inline-critical", + "oust", + "penthouse", + "postcss-discard", + "postcss-image-inliner", + "postcss-url", + "normalize-newline", + "stream-array", + "optimization", + "@fast-check/jest", + "@insurgent/commitlint-config", + "@insurgent/conventional-changelog-preset", + "@semantic-release/commit-analyzer", + "@semantic-release/npm", + "@semantic-release/release-notes-generator", + "@swc/jest", + "node cron", + "node-cron", + "schedule", + "cronjob", + "cron job", + "timer", + "crontab", + "@prantlf/jsonlint", + "@prettier/plugin-xml", + "@secretlint/secretlint-rule-github", + "@secretlint/secretlint-rule-npm", + "@stryker-mutator/core", + "@stryker-mutator/tap-runner", + "@types/bun", + "eslint-plugin-array-func", + "eslint-plugin-no-unsanitized", + "jsr", + "metalint", + "secretlint", + "yaml-lint", + "@cropper/elements", + "@cropper/utils", + "crop", + "zoom", + "rotate", + "scale", + "cropper", + "cropper.js", + "image-cropping", + "image-viewing", + "image-processing", + "cropper-element", + "custom-element", + "web-component", + "@epic-web/invariant", + "@epic-web/config", + "@types/cross-spawn", + "zshy", + "cross-environment", + "environment variable", + "windows", + "cross-platform", + "rollup-plugin-esbuild-minify", + "path-key", + "shebang-command", + "babel-preset-moxy", + "eslint-config-moxy", + "spawn", + "spawnSync", + "path-ext", + "shebang", + "cmd", + "execute", + "browserify-cipher", + "browserify-sign", + "create-ecdh", + "create-hmac", + "diffie-hellman", + "hash-base", + "pbkdf2", + "public-encrypt", + "randomfill", + "pseudorandombytes", + "security", + "Hash", + "MD5", + "SHA1", + "SHA-1", + "SHA256", + "SHA-256", + "RC4", + "Rabbit", + "AES", + "DES", + "PBKDF2", + "HMAC", + "OFB", + "CFB", + "CTR", + "CBC", + "Base64", + "Base64url", + "eslint-config-groupon", + "nlm", + "@cspell/cspell-json-reporter", + "@cspell/cspell-performance-monitor", + "@cspell/cspell-pipe", + "@cspell/cspell-types", + "@cspell/cspell-worker", + "@cspell/dynamic-import", + "@cspell/url", + "cspell-config-lib", + "cspell-dictionary", + "cspell-gitignore", + "cspell-glob", + "cspell-io", + "cspell-lib", + "fast-json-stable-stringify", + "flatted", + "spell", + "checker", + "spelling", + "spell checker", + "spelling checker", + "lint", + "source-map-resolve", + "@mdn/browser-compat-data", + "@rollup/plugin-dynamic-import-vars", + "sorter", + "property", + "order", + "@swc-node/register", + "changelog-verify", + "eslint-config-nitpick", + "github-release-from-changelog", + "isomorphic-unfetch", + "rolldown-plugin-dts", + "version-changelog", + "write-json-file", + "functions", + "postcss-modules-extract-imports", + "postcss-modules-scope", + "@webpack-contrib/eslint-config-webpack", + "@swc/css", + "@parcel/css", + "@types/csso", + "@types/clean-css", + "cssnano-preset-simple", + "webpack-plugin", + "minimize", + "minimizer", + "optimize", + "optimizer", + "boolbase", + "@types/boolbase", + "cheerio-soupselect", + "sizzle", + "clap", + "json-to-ast", + "walker", + "lexer", + "web-features", + "features", + "stages", + "identifier", + "cssnano-preset-default", + "cssnano-preset-advanced", + "cssnano-preset-lite", + "optimise", + "optimisation", + "@asamuzakjp/css-color", + "@csstools/css-syntax-patches-for-csstree", + "@domenic/eslint-config", + "@webref/css", + "CSS", + "CSSStyleDeclaration", + "StyleSheet", + "@tsconfig/node24", + "@types/chokidar", + "@types/turndown", + "csrf", + "tokens", + "tsv", + "generation", + "object", + "csv-spectrum", + "pad", + "@types/lodash.set", + "csv parser", + "parse csv", + "csv to json", + "csv convert", + "tojson", + "convert csv to json", + "csv-json", + "duration", + "stack-chain", + "is-generator", + "stacktrace-js", + "serialize-error", + "cucumber-expressions", + "cucumber-tag-expressions", + "ansi-html", + "eslint-plugin-testcafe", + "riteway", + "updtr", + "guid", + "id", + "uid", + "unique id", + "hasha", + "ospath", + "blob-util", + "executable", + "@cypress/xvfb", + "@types/sizzle", + "@cypress/request", + "request-progress", + "cypress.io", + "mocks", + "spies", + "stubs", + "longest", + "conventional-commit-types", + "d3-dsv", + "d3-geo", + "d3-axis", + "d3-drag", + "d3-ease", + "d3-path", + "d3-time", + "d3-zoom", + "d3-brush", + "d3-chord", + "d3-fetch", + "d3-force", + "d3-timer", + "d3-format", + "d3-random", + "d3-contour", + "d3-polygon", + "d3-delaunay", + "d3-dispatch", + "d3-quadtree", + "d3-hierarchy", + "d3-transition", + "d3-interpolate", + "d3-time-format", + "d3-scale-chromatic", + "topojson-client", + "@observablehq/runtime", + "visualization", + "internmap", + "d3-module", + "histogram", + "bisect", + "shuffle", + "statistics", + "search", + "sort", + "selection", + "data-join", + "dable", + "tailwind css", + "tailwind react", + "tailwind vue", + "tailwind plugin", + "tailwind component", + "tailwind next", + "tailwind nuxt", + "tailwind svelte", + "tailwind css plugin", + "tailwind astro", + "tailwind laravel", + "tailwind rails", + "laravel", + "nuxt", + "css library", + "reverse", + "arguments", + "binary", + "opposite", + "invert", + "switch", + "construct", + "@captemulation/get-parameter-names", + "json-schema-faker-bb", + "request-debug", + "rss-parser", + "swagger-express-middleware", + "bun", + "cloc", + "js-fns", + "jscodeshift", + "@date-fns/tz", + "@date-fns/utc", + "@date-fns/docs", + "@size-limit/esbuild", + "typedoc-plugin-missing-exports", + "babel-plugin-replace-import-extension", + "gzip-size-cli", + "require-directory", + "sleep", + "async wrapper", + "debouncing", + "throttle", + "invoke", + "limited", + "interval", + "rate", + "batch", + "rate-limit", + "debugger", + "decamelcase", + "lowercase", + "decompress-tar", + "decompress-tarbz2", + "decompress-targz", + "decompress-unzip", + "strip-dirs", + "is-jpg", + "bz2", + "bzip2", + "extract", + "tar.bz", + "tar.gz", + "@types/babel-plugin-macros", + "console-fail-test", + "eslint-plugin-deprecation", + "eslint-plugin-no-only-tests", + "eslint-plugin-perfectionist", + "eslint-plugin-yml", + "jsonc-eslint-parser", + "npm-package-json-lint-config-default", + "prettier-plugin-curly", + "should-semantic-release", + "yaml-eslint-parser", + "multi-line string", + "duplicates", + "dupes", + "remove duplicates", + "distinct", + "deduplicate", + "deduplication", + "is-obj", + "obj", + "assign", + "recursive", + "key", + "keys", + "values", + "prop", + "json-ptr", + "difference", + "compare", + "change-tracking", + "kewlr", + "simple-assert", + "lcov-result-merger", + "eslint-config-strict", + "@js-temporal/polyfill", + "eslint-plugin-filenames", + "chai util", + "deep equal", + "object equal", + "array-buffer-byte-length", + "es-get-iterator", + "is-arguments", + "is-array-buffer", + "is-date-object", + "is-regex", + "is-shared-array-buffer", + "regexp.prototype.flags", + "side-channel", + "which-boxed-primitive", + "which-collection", + "which-typed-array", + "available-typed-arrays", + "has-proto", + "has-typed-arrays", + "equality", + "is-mergeable-object", + "jsmd", + "is-path-cwd", + "is-path-inside", + "presentable-error", + "folders", + "directories", + "destroy", + "trash", + "unlink", + "cleaning", + "cleanup", + "rmrf", + "rmdir", + "gulpfriendly", + "folder", + "directory", + "filesystem", + "temp-write", + "random-int", + "unlimited-timeout", + "in-range", + "time-span", + "defer", + "stall", + "timeout", + "settimeout", + "tick", + "threshold", + "range", + "callsite", + "deps-regex", + "is-core-module", + "@vue/compiler-sfc", + "patch-version", + "check", + "unused", + "packages", + "deprecate", + "deprecated", + "is-relative", + "read-package-json", + "detective-cjs", + "indentation", + "infer", + "identify", + "space", + "tab", + "@eggjs/tsconfig", + "egg-bin", + "eslint-config-egg", + "mm", + "tshy-after", + "port", + "jsdiff", + "patch", + "@profoundlogic/hogan", + "@eslint/json", + "@types/hogan.js", + "@types/nopt", + "all-contributors-cli", + "handlebars-loader", + "image-webpack-loader", + "is-ci-cli", + "side", + "side-by-side", + "line-by-line", + "character", + "difftohtml", + "colorized", + "data-structure-typed", + "eslint-import-resolver-alias", + "Directed Graph", + "directed graph", + "directedgraph", + "directed-graph", + "directed", + "Directed", + "digraph", + "java script", + "JavaScript", + "type script", + "vertex", + "Vertex", + "edge", + "Edge", + "graph theory", + "Graph Theory", + "graph structure", + "weighted", + "Weighted", + "unweighted", + "Unweighted", + "adjacency", + "Adjacency", + "connectivity", + "cycle", + "acyclic", + "traversal", + "depth", + "Depth", + "breadth", + "Breadth", + "first", + "depth first search", + "dfs", + "DFS", + "breadth first search", + "breadth-first search", + "bfs", + "BFS", + "graph algorithms", + "graph representation", + "connectivity matrix", + "adjacency list", + "adjacency matrix", + "matrix", + "node degree", + "sparse graph", + "dense graph", + "directed cycle", + "directed acyclic graph", + "DAG", + "topologic", + "topological", + "sorting", + "strongly connected components", + "weighted digraph", + "directed weighted edge", + "structure", + "structures", + "data structure", + "datastructure", + "data-structure", + "data structures", + "datastructures", + "data-structures", + "in data structures", + "in data structure", + "DataStructure", + "DataStructures", + "iterative", + "Node.js", + "CommonJS", + "UMD", + "esmodule", + "java.util", + "c++ stl", + "c++ std", + "Python collections", + "System.Collections.Generic", + "STL", + "stl", + "collection", + "Collection", + "Collections", + "insertion", + "deletion", + "OOP", + "@discordjs/voice", + "backend-manager", + "productivity", + "@discordjs/ws", + "lodash.snakecase", + "@discordjs/builders", + "@discordjs/formatters", + "@discordjs/docgen", + "bot", + "cache-point", + "common-sequence", + "file-set", + "walk-back", + "dmd-plugin-example", + "jsdoc2md", + "agnostic", + "dnd", + "drag", + "drop", + "dnode-protocol", + "jsonify", + "weak", + "rpc", + "callbacks", + "doc-detective-common", + "doc-detective-resolver", + "@ffmpeg-installer/ffmpeg", + "@puppeteer/browsers", + "appium-chromium-driver", + "appium-geckodriver", + "appium-safari-driver", + "geckodriver", + "jq-web", + "json-schema-faker", + "posthog-node", + "literate", + "mecano", + "parameters", + "@balena/dockerignore", + "@grpc/grpc-js", + "@grpc/proto-loader", + "docker-modem", + "docker", + "docker.io", + "@bevry/pluginloader", + "ambi", + "ansistyles", + "bal-util", + "caterpillar", + "docmatter", + "docpad-baseplugin", + "eachr", + "envfile", + "errlop", + "event-emitter-grouped", + "extendr", + "extract-opts", + "ignorefs", + "istextorbinary", + "jschardet", + "lazy-require", + "progress-title", + "query-engine", + "rfc-log-levels", + "safefs", + "safeps", + "scandirectory", + "taskgroup", + "typechecker", + "unbounded", + "watchr", + "@bevry/update-contributors", + "assert-helpers", + "coffeelint", + "kava", + "projectz", + "valid-directory", + "build", + "build and deployment", + "cms", + "compile", + "content management system", + "dev", + "dms", + "document management system", + "language agnostic", + "render", + "templating", + "web development", + "dependency-cruiser", + "dpdm", + "docsify.js", + "tabs", + "@textlint/markdown-to-ast", + "anchor-markdown-header", + "update-section", + "bitbucket", + "gitlab", + "ghost", + "doctrine-temporary-fork", + "konan", + "mdast-util-inject", + "micromark-util-character", + "parse-filepath", + "remark-reference-links", + "unist-builder", + "vfile-reporter", + "vfile-sort", + "chdir", + "documentation-schema", + "jsdoc3", + "big-integer", + "binary-search-bounds", + "int64-buffer", + "priorityqueuejs", + "semaphore", + "tunnel", + "cosmosdb", + "cosmos db", + "document database", + "nosql", + "database", + "crowdin-cli", + "imagemin-svgo", + "tree-node-cli", + "truncate-html", + "imagemin-optipng", + "imagemin-gifsicle", + "imagemin-jpegtran", + "filepath", + "glob-promise", + "websites", + "open source", + "autocomplete.js", + "lunr-languages", + "to-vfile", + "unist-util-is", + "offline-search", + "@4c/rollout", + "@4c/tsconfig", + "@react-bootstrap/babel-preset", + "@react-bootstrap/eslint-config", + "@react-bootstrap/eslint-config-typescript", + "karma-html2js-preprocessor", + "simulant", + "cross-browser", + "height", + "class", + "classlist", + "domelementtype", + "raster", + "png", + "@types/trusted-types", + "lodash.sample", + "qunit-tap", + "rollup-plugin-includepaths", + "mathml", + "secure", + "sanitizer", + "sanitize", + "filter", + "purify", + ".env", + "expand", + "interpolation", + "substitution", + "ext-name", + "filenamify", + "archive-type", + "is-zip", + "random-buffer", + "git-clone", + "repo", + "repository", + "tarball", + "import-from", + "parse-cmd-args", + "simple-update-notifier", + "ts-jest-resolver", + "dox", + "spawn-please", + "@types/temp", + "alex", + "babel-preset-fbjs", + "eslint-config-fbjs", + "fbjs-scripts", + "gulp-derequire", + "stats-webpack-plugin", + "webpack-stream", + "draftjs", + "richtext", + "just-extend", + "@parcel/transformer-inline-string", + "@parcel/transformer-sass", + "cypress-file-upload", + "karma-sinon-chai", + "parcel", + "dragndrop", + "drag and drop", + "file upload", + "upload", + "tsutils", + "dts-critic", + "@definitelytyped/utils", + "@definitelytyped/header-parser", + "@definitelytyped/typescript-versions", + "@types/strip-json-comments", + "@types/json-stable-stringify", + "proper-lockfile", + "db", + "elementscript", + "dw-neit-colors", + "dw-neit-cssinjs", + "dw-neit-cssinjs-utils", + "dw-neit-icons", + "dw-neit-ant-design-react-slick", + "dw-neit-rc-component-color-picker", + "dw-neit-rc-component-mutate-observer", + "dw-neit-rc-component-qrcode", + "dw-neit-rc-component-tour", + "dw-neit-rc-component-trigger", + "dw-neit-rc-cascader", + "dw-neit-rc-checkbox", + "dw-neit-rc-collapse", + "dw-neit-rc-dialog", + "dw-neit-rc-drawer", + "dw-neit-rc-dropdown", + "dw-neit-rc-field-form", + "dw-neit-rc-image", + "dw-neit-rc-input", + "dw-neit-rc-input-number", + "dw-neit-rc-mentions", + "dw-neit-rc-menu", + "dw-neit-rc-motion", + "dw-neit-rc-notification", + "dw-neit-rc-pagination", + "dw-neit-rc-picker", + "dw-neit-rc-progress", + "dw-neit-rc-rate", + "dw-neit-rc-resize-observer", + "dw-neit-rc-segmented", + "dw-neit-rc-select", + "dw-neit-rc-slider", + "dw-neit-rc-steps", + "dw-neit-rc-switch", + "dw-neit-rc-tabs", + "dw-neit-rc-textarea", + "dw-neit-rc-tree", + "dw-neit-rc-util", + "dw-neit-rc-table", + "dw-neit-rc-tooltip", + "dw-neit-rc-tree-select", + "dw-neit-rc-upload", + "@antv/g6", + "@types/pixelmatch", + "eslint-plugin-lodash", + "@eslint/core", + "control flow", + "iteration", + "zrender", + "@lang/rollup-plugin-dts", + "data-visualization", + "charting-library", + "apache", + "data-viz", + "editorconfig", + "gulp-exclude-gitignore", + "gulp-reporter", + "gulp-tap", + "linez", + "os-locale", + "@types/get-stream", + "@types/through2", + "@types/vinyl", + "@types/vinyl-fs", + "fix", + "enforce", + "gulpplugin", + "agentkeepalive", + "aliasify", + "backport", + "grunt-run", + "null-loader", + "through2-map", + "grunt-webpack", + "grunt-contrib-compress", + "@electron/get", + "lazy-val", + "dmg-builder", + "builder-util", + "app-builder-lib", + "builder-util-runtime", + "installer", + "packager", + "pack", + "nsis", + "dmg", + "pkg", + "msi", + "exe", + "setup", + "Windows", + "OS X", + "MacOS", + "Mac", + "appx", + "snap", + "flatpak", + "@electron/asar", + "@electron/notarize", + "@electron/osx-sign", + "@electron/universal", + "cross-spawn-windows-exe", + "galactus", + "get-package-info", + "junk", + "parse-author", + "rcedit", + "bundler", + "electron-download", + "home-path", + "wonderful-fetch", + "batch-processor", + "grunt-banner", + "@vue/component-compiler-utils", + "algoliasearch", + "babel-plugin-transform-vue-jsx", + "babel-regenerator-runtime", + "cp-cli", + "eslint-config-elemefe", + "eslint-plugin-json", + "file-save", + "gulp-cssmin", + "launch-editor-middleware", + "markdown-it-chain", + "select-version-cli", + "transliteration", + "uppercamelcase", + "vue-template-es2015-compiler", + "eleme", + "brorand", + "hash.js", + "hmac-drbg", + "minimalistic-assert", + "minimalistic-crypto-utils", + "grunt-mocha-istanbul", + "EC", + "Elliptic", + "curve", + "Cryptography", + "@ladjs/consolidate", + "@ladjs/i18n", + "get-paths", + "juice", + "nodemailer-sendgrid", + "preview-email", + "email", + "lad", + "lass", + "mailchimp", + "mailgun", + "mandrill", + "moonmail", + "postmark", + "sendgrid", + "@types/mailparser", + "@types/smtp-server", + "mailparser", + "smtp-server", + "@ember-tooling/blueprint-blueprint", + "@ember-tooling/blueprint-model", + "@ember/app-blueprint", + "@pnpm/find-workspace-dir", + "babel-remove-types", + "broccoli-concat", + "broccoli-config-loader", + "broccoli-config-replace", + "broccoli-debug", + "broccoli-funnel-reducer", + "broccoli-slow-trees", + "broccoli-source", + "broccoli-stew", + "calculate-cache-key-for-tree", + "capture-exit", + "clean-base-url", + "console-ui", + "content-tag", + "core-object", + "dag-map", + "ember-cli-is-package-missing", + "ember-cli-preprocess-registry", + "ensure-posix-path", + "find-yarn-workspace-root", + "heimdalljs-fs-monitor", + "heimdalljs-graph", + "heimdalljs-logger", + "is-git-url", + "is-language-code", + "markdown-it-terminal", + "p-defer", + "promise-map-series", + "promise.hash.helper", + "quick-temp", + "safe-stable-stringify", + "sane", + "sort-package-json", + "symlink-or-copy", + "tree-sync", + "watch-detector", + "yam", + "@ember-tooling/classic-build-addon-blueprint", + "@ember-tooling/classic-build-app-blueprint", + "chai-files", + "ember-cli-blueprint-test-helpers", + "ember-cli-internal-test-helpers", + "eslint-plugin-chai-expect", + "fixturify-project", + "release-plan", + "tmp-promise", + "yuidoc-ember-cli-theme", + "yuidocjs", + "app-kit", + "ember", + "ember-app-kit", + "ember.js", + "amd-name-resolver", + "babel-plugin-debug-macros", + "babel-plugin-ember-data-packages-polyfill", + "babel-plugin-ember-modules-api-polyfill", + "broccoli-babel-transpiler", + "ember-cli-babel-plugin-helpers", + "ember-cli-version-checker", + "@ember/optional-features", + "@ember/string", + "@ember/test-helpers", + "@glimmer/component", + "@glimmer/tracking", + "code-equality-assertions", + "ember-auto-import", + "ember-cli-dependency-checker", + "ember-cli-inject-live-reload", + "ember-load-initializers", + "ember-qunit", + "ember-resolver", + "ember-source", + "ember-source-channel-url", + "eslint-plugin-ember", + "loader.js", + "ember-addon", + "@ember/edition-utils", + "babel-plugin-ember-template-compilation", + "broccoli-persistent-filter", + "js-string-escape", + "@embroider/test-setup", + "ember-cli-clean-css", + "ember-styleguide", + "ember-template-lint", + "ember-try", + "eslint-plugin-qunit", + "@emmetio/abbreviation", + "@emmetio/css-abbreviation", + "snippets", + "coding", + "streams", + "finish", + "close", + "end", + "es-errors", + "safe-regex-test", + "entitify", + "entity", + "enum", + "enumeration", + "datatype", + "type", + "github-release-cli", + "yamlify-object", + "info", + "issues", + "reporting", + "diagnostics", + "array.prototype.flat", + "function.prototype.name", + "has", + "html-element-map", + "is-boolean-object", + "is-callable", + "is-number-object", + "is-string", + "is-subset", + "lodash.escape", + "object.values", + "rst-selector-parser", + "string.prototype.trim", + "shallow rendering", + "shallowRender", + "test utils", + "assertion helpers", + "airbnb-prop-types", + "object.fromentries", + "codependence", + "oxlint", + "pastoralist", + "check for es6", + "check for modules", + "es check", + "es matching", + "es version", + "ecmascript check", + "ecmascript matching", + "ecmascript version", + "js version", + "js version check", + "js version matching", + "test js version", + "test ecmascript version", + "has-bigints", + "intl-fallback-symbol", + "make-arrow-function", + "make-async-function", + "@ljharb/tsconfig", + "@types/array.prototype.flatmap", + "@types/call-bind", + "@types/foreach", + "@types/has-bigints", + "@types/has-symbols", + "@types/isarray", + "@types/make-arrow-function", + "@types/make-async-function", + "@types/make-generator-function", + "@types/object.assign", + "@types/reflect.ownkeys", + "@types/tape", + "reflect.ownkeys", + "symbol.prototype.description", + "well-known-symbols", + "fixture", + "fixtures", + "es6-symbol", + "esniff", + "next-tick", + "plain-promise", + "ecmascript5", + "ecmascript6", + "es5", + "extensions", + "ext", + "addons", + "extras", + "utilities", + "es5 shim", + "json3", + "broccoli-rollup", + "git-repo-version", + "broccoli-watchify", + "broccoli-uglify-js", + "promises-aplus-tests-phantom", + "babel6-plugin-strip-class-callcheck", + "babel-plugin-transform-es2015-constants", + "futures", + "promisify", + "promises-es6-tests", + "setPrototypeOf", + "set", + "__proto__", + "regular", + "expression", + "special", + "characters", + "bower-registry-client", + "commonjs-everywhere", + "@eslint/config-array", + "@eslint/config-helpers", + "@eslint/plugin-kit", + "@humanfs/node", + "@humanwhocodes/module-importer", + "@humanwhocodes/retry", + "esquery", + "file-entry-cache", + "imurmurhash", + "json-stable-stringify-without-jsonify", + "@trunkio/launcher", + "@types/esquery", + "eslint-plugin-expect-type", + "eslint-release", + "eslint-rule-extender", + "eslump", + "fs-teardown", + "metascraper", + "metascraper-description", + "metascraper-image", + "metascraper-logo", + "metascraper-logo-favicon", + "metascraper-title", + "node-polyfill-webpack-plugin", + "npm-license", + "yorkie", + "babel-tape-runner", + "eslint-find-rules", + "eslintconfig", + "airbnb", + "es2016", + "es2018", + "confusing-browser-globals", + "prettier-package-json", + "quality", + "linter", + "jslint", + "code style", + "strict", + "verify", + "hint", + "eslint config", + "eslint-config-xo-space", + "eslint-prettier", + "@rushstack/eslint-patch", + "JavaScript Standard Style", + "code checker", + "code linter", + "code standards", + "policy", + "standard style", + "style checker", + "style linter", + "@eslint/config-inspector", + "automd", + "eslint-typegen", + "obuild", + "@eslint/css", + "xoxo", + "hugs", + "kisses", + "happy", + "happiness", + "cabin", + "rules", + "@typescript/native-preview", + "eslint-import-context", + "is-bun-module", + "stable-hash-x", + "unrs-resolver", + "@webpack-contrib/defaults", + "commitlint-azure-pipelines-cli", + "eslint-friendly-formatter", + "enhance-visitors", + "espurify", + "micro-spelling-correcter", + "eslint-ava-rule-tester", + "eslint-rule-composer", + "ast-metadata-inferer", + "@tsconfig/node16", + "@types/caniuse-lite", + "@types/lodash.memoize", + "browserslist-config-erb", + "kangax", + "@vuepress/plugin-pwa", + "eslint4b", + "vue-eslint-editor", + "comment", + "directive", + "exported", + "eslint-env", + "eslint-enable", + "eslint-disable", + "eslint-disable-line", + "eslint-disable-next-line", + "@eslint-community/eslint-plugin-eslint-comments", + "@types/eslint-scope", + "@types/espree", + "@types/estraverse", + "eslint-config-not-an-aardvark", + "string-natural-compare", + "gitdown", + "eslint-config-canonical", + "flowtype", + "@html-eslint/eslint-plugin", + "@html-eslint/parser", + "markdown-link-check", + "@rtsao/scc", + "array-includes", + "array.prototype.findlastindex", + "doctrine", + "eslint-import-resolver-node", + "eslint-module-utils", + "object.groupby", + "string.prototype.trimend", + "@angular-eslint/template-parser", + "escope", + "fs-copy-file-sync", + "linklocal", + "lodash.isarray", + "npm-which", + "typescript-eslint-parser", + "export", + "@schemastore/package", + "babel-plugin-replace-ts-export-assignment", + "eslint-remote-tester-repositories", + "@es-joy/jsdoccomment", + "@es-joy/resolve.exports", + "are-docs-informative", + "object-deep-merge", + "parse-imports-exports", + "spdx-expression-parse", + "to-valid-identifier", + "@es-joy/escodegen", + "@es-joy/jsdoc-eslint-parser", + "@hkdobrev/run-if-changed", + "@types/spdx-expression-parse", + "babel-plugin-transform-import-meta", + "jsdoc-type-pratt-parser", + "json-schema-to-typescript", + "open-editor", + "replace", + "@ota-meshi/ast-token-store", + "diff-sequences", + "eslint-json-compat-utils", + "@changesets/changelog-github", + "@ota-meshi/eslint-plugin", + "@ota-meshi/site-kit-eslint-editor-vue", + "@types/natural-compare", + "env-cmd", + "eslint-plugin-eslint-rule-tester", + "eslint-plugin-json-schema-validator", + "eslint-plugin-node-dependencies", + "stylelint-config-recommended-vue", + "stylelint-config-standard-vue", + "stylelint-stylus", + "vite-plugin-eslint4b", + "jsonc", + "ast-types-flow", + "axobject-query", + "damerau-levenshtein", + "jsx-ast-utils", + "language-tags", + "string.prototype.includes", + "to-ast", + "eslint-config-eslint", + "eslint-plugin-es-x", + "ts-declaration-location", + "@types/globrex", + "ts-ignore-import", + "eslint-utils", + "prettier-linter-helpers", + "array.prototype.findlast", + "array.prototype.tosorted", + "es-iterator-helpers", + "string.prototype.repeat", + "@babel/plugin-syntax-do-expressions", + "@babel/plugin-syntax-function-bind", + "gfm-footnotes", + "ls-engines", + "hermes-parser", + "@types/estree-jsx", + "@tsconfig/strictest", + "refa", + "regexp-ast-analysis", + "scslre", + "@types/pako", + "eslint-plugin-pere", + "eslint-snapshot-rule-tester", + "mocha-chai-jest-snapshot", + "safe-regex", + "eslint-config-nodesecurity", + "nodesecurity", + "jsx-ast-utils-x", + "functional-red-black-tree", + "sonarjs", + "svelte-eslint-parser", + "@types/eslint-utils", + "@types/esutils", + "@types/less", + "@types/postcss-safe-parser", + "@types/stylus", + "svelte-i18n", + "sveltejs", + "eslint-plugin-import-x", + "clean-regexp", + "find-up-simple", + "regexp-tree", + "regjsparser", + "@lubien/fixture-beta-package", + "nano-spawn", + "node-style-text", + "unicorn", + "@veritem/eslint-config", + "bumpp", + "vitest eslint plugin", + "eslint plugin", + "xml-name-validator", + "@types/xml-name-validator", + "eslint-plugin-markdown-preferences", + "@types/babel__code-frame", + "importx", + "ink-testing-library", + "eslint-test", + "@types/esrecurse", + "esrecurse", + "eslint-plugin-requirejs", + "escomplex-js", + "everything.js", + "json-diff", + "karma-safaritechpreview-launcher", + "node-tick-processor", + "unicode-8.0.0", + "gulp-tag-version", + "ethereumjs-common", + "@ethereumjs/config-nyc", + "@ethereumjs/config-prettier", + "@ethereumjs/config-tsc", + "@ethereumjs/config-tslint", + "contributor", + "karma-tap", + "typestrict", + "transactions", + "ethereum-cryptography", + "rlp", + "@types/assert", + "@types/secp256k1", + "karma-typescript", + "os-tmpdir", + "es-lookup-scope", + "qs-iconv", + "eval", + "evaulate", + "from", + "pause-stream", + "stream-combiner", + "asynct", + "it-is", + "stream-spec", + "ubelt", + "flatmap", + "join", + "eventemitter", + "addEventListener", + "addListener", + "pub/sub", + "emits", + "on", + "publish", + "subscribe", + "EventEmitter", + "EventEmitter2", + "EventEmitter3", + "Events", + "reactor", + "eventEmitter", + "eventDispatcher", + "listeners", + "@sindresorhus/merge-streams", + "human-signals", + "strip-final-newline", + "yoctocolors", + "get-node", + "is-in-ci", + "is-running", + "log-process-errors", + "exec", + "subprocess", + "fork", + "execfile", + "bin", + "binaries", + "local", + "stdio", + "stderr", + "drain", + "flush", + "3584", + "@jest/expect-utils", + "@jest/get-type", + "eslint-plugin-mmkal", + "pkg-pr-new", + "type-check", + "merge-descriptors", + "pbkdf2-password", + "array-flatten", + "setprototypeof", + "automatically", + "autogenerate", + "autogenerator", + "autogenerated", + "express3", + "partials", + "express-unless", + "authn", + "authz", + "token", + "expressjs", + "helpers", + "hoare", + "cjs-mock", + "tRPC", + "RPC", + "express.js", + "code-generation", + "fully-typed", + "type-safe", + "typed-api", + "express-api", + "http-api", + "client-server", + "unit-testing", + "browser-client", + "web-development", + "web-api", + "@docusaurus/plugin-client-redirects", + "@docusaurus/preset-classic", + "sanitization", + "openapi3-ts", + "@express-zod-api/zod-plugin", + "@types/depd", + "@types/http-errors", + "@types/node-forge", + "camelize-ts", + "snakify-ts", + "dts-plugin", + "handler", + "documentation-tool", + "schema-validation", + "endpoint", + "openapi-specification", + "swagger-documentation", + "covert", + "assign-symbols", + "is-extendable", + "array-slice", + "benchmarked", + "for-own", + "kind-of", + "props", + "shallow", + "webpack-defaults", + "@types/yauzl", + "gulp-mustache", + "vinyl-transform", + "color-support", + "parse-node-version", + "console.log", + "timestamp", + "pure-rand", + "@fast-check/expect-type", + "@fast-check/poisoning", + "property-based testing", + "end-to-end testing", + "quickcheck", + "jscheck", + "jsverify", + "fuzzer", + "fuzz", + "@fast-csv/parse", + "@fast-csv/format", + "writer", + "csv writer", + "CSV", + "@nodelib/fs.stat", + "@nodelib/fs.walk", + "@nodelib/fs.macchiato", + "@types/merge2", + "@types/picomatch", + "bencho", + "eslint-config-mrmlnc", + "hereby", + "snap-shot-it", + "implementation", + "strnum", + "transformer", + "js2xml", + "json2xml", + "click", + "@fastify/ajv-compiler", + "@fastify/error", + "@fastify/fast-json-stringify-compiler", + "@fastify/proxy-addr", + "abstract-logging", + "avvio", + "fast-json-stringify", + "find-my-way", + "light-my-request", + "process-warning", + "secure-json-parse", + "toad-cache", + "@jsumners/line-reporter", + "ajv-i18n", + "ajv-merge-patch", + "autocannon", + "branch-comparer", + "fast-json-body", + "fluent-json-schema", + "h2url", + "markdownlint-cli2", + "@umijs/babel-preset-umi", + "@umijs/bundler-webpack", + "@umijs/case-sensitive-paths-webpack-plugin", + "@utoo/pack", + "@vercel/ncc", + "babel-plugin-styled-components", + "babel-plugin-transform-define", + "loader-runner", + "piscina", + "typescript-transform-paths", + "@types/loader-runner", + "@types/minimatch", + "array.prototype.foreach", + "array.prototype.join", + "array.prototype.map", + "array.prototype.push", + "array.prototype.slice", + "string.prototype.split", + "tap-parser", + "human", + "anything", + "protocol", + "fbjs-css-vars", + "setimmediate", + "@skypack/package-check", + "babel-plugin-minify-dead-code-elimination", + "in web", + "in javascript", + "in react", + "Plug & Play", + "web component", + "react components", + "ui component", + "advanced component", + "advanced feature", + "scanner", + "phonebook", + "voice", + "autofillotp", + "share", + "livelocationtracking", + "detectmylocation", + "colorpicker", + "wakelock", + "WhatsappShare", + "NetworkConnection", + "TextToSpeech", + "VoiceRecognition", + "SnapScanner", + "NetworkMonitor", + "View360", + "functional program", + "data management", + "@types/glob-to-regexp", + "dequal", + "glob-to-regexp", + "stub", + "detect-libc", + "fiber", + "thread", + "worker", + "art", + "banner", + "symbol", + "symbols", + "figure", + "fallback", + "filesaver", + "saveas", + "blob", + "@tokenizer/inflate", + "strtok3", + "token-types", + "uint8array-extras", + "@tokenizer/token", + "commonmark", + "noop-stream", + "magic", + "pic", + "picture", + "photo", + "video", + "exif", + "elf", + "macho", + "jpg", + "apng", + "gif", + "flif", + "xcf", + "cr2", + "cr3", + "orf", + "arw", + "dng", + "nef", + "rw2", + "tif", + "bmp", + "icns", + "jxr", + "psd", + "indd", + "rar", + "gz", + "7z", + "mp4", + "mid", + "mkv", + "webm", + "mov", + "avi", + "mpg", + "mp2", + "mp3", + "m4a", + "ogg", + "opus", + "flac", + "wav", + "amr", + "epub", + "mobi", + "rtf", + "woff", + "woff2", + "eot", + "ttf", + "otf", + "ttc", + "ico", + "flv", + "ps", + "xz", + "xpi", + "cab", + "deb", + "ar", + "rpm", + "Z", + "lz", + "cfb", + "mxf", + "mts", + "wasm", + "webassembly", + "blend", + "bpg", + "docx", + "pptx", + "3gp", + "j2c", + "jp2", + "jpm", + "jpx", + "mj2", + "aif", + "odt", + "ods", + "odp", + "heic", + "ics", + "pcap", + "dsf", + "lnk", + "voc", + "ac3", + "3g2", + "m4b", + "m4p", + "m4v", + "f4a", + "f4b", + "f4p", + "f4v", + "mie", + "qcp", + "asf", + "ogv", + "ogm", + "oga", + "spx", + "ogx", + "ape", + "wv", + "cur", + "nes", + "crx", + "ktx", + "dcm", + "mpc", + "arrow", + "shp", + "aac", + "mp1", + "it", + "s3m", + "xm", + "skp", + "eps", + "lzh", + "pgp", + "asar", + "chm", + "3mf", + "zst", + "jxl", + "vcf", + "jls", + "pst", + "dwg", + "parquet", + "arj", + "cpio", + "ace", + "avro", + "icc", + "fbx", + "vsdx", + "vtt", + "apk", + "drc", + "lz4", + "potx", + "xltx", + "dotx", + "xltm", + "ots", + "odg", + "otg", + "otp", + "ott", + "xlsm", + "docm", + "dotm", + "potm", + "pptm", + "jar", + "jmp", + "sav", + "ppsm", + "ppsx", + "reg", + "dat", + "size", + "readable", + "file system", + "locate-path", + "unicorn-magic", + "up", + "look-up", + "look", + "parent", + "walking", + "detect-file", + "resolve-dir", + "homedir-polyfill", + "@firebase/ai", + "@firebase/app", + "@firebase/auth", + "@firebase/util", + "@firebase/storage", + "@firebase/database", + "@firebase/analytics", + "@firebase/app-check", + "@firebase/app-types", + "@firebase/firestore", + "@firebase/functions", + "@firebase/messaging", + "@firebase/app-compat", + "@firebase/auth-compat", + "@firebase/performance", + "@firebase/data-connect", + "@firebase/installations", + "@firebase/remote-config", + "@firebase/storage-compat", + "@firebase/database-compat", + "@firebase/analytics-compat", + "@firebase/app-check-compat", + "@firebase/firestore-compat", + "@firebase/functions-compat", + "@firebase/messaging-compat", + "@firebase/performance-compat", + "@firebase/installations-compat", + "@firebase/remote-config-compat", + "Firebase", + "realtime", + "remote-config", + "@fastify/busboy", + "@firebase/database-types", + "farmhash-modern", + "google-auth-library", + "jwks-rsa", + "@firebase/api-documenter", + "@firebase/auth-types", + "@types/bcrypt", + "@types/firebase-token-generator", + "@types/request", + "@types/request-promise", + "firebase-token-generator", + "http-message-parser", + "admin", + "@apphosting/build", + "@apphosting/common", + "@electric-sql/pglite", + "@electric-sql/pglite-tools", + "@google-cloud/cloud-sql-connector", + "@google-cloud/pubsub", + "@modelcontextprotocol/sdk", + "async-lock", + "cjson", + "deep-equal-in-any-order", + "exegesis", + "exegesis-express", + "gaxios", + "libsodium-wrappers", + "lsofi", + "pg-gateway", + "pglite-2", + "proxy-agent", + "sql-formatter", + "stream-chain", + "stream-json", + "superstatic", + "triple-beam", + "universal-analytics", + "update-notifier-cjs", + "zod-to-json-schema", + "cdn", + "ssl", + "hosting", + "synchronization", + "alce", + "detect-newline", + "extend-object", + "@types/rimraf", + "matcher-collection", + "unflatten", + "nested", + "@types/acorn", + "rollup-plugin-livereload", + "rollup-plugin-serve", + "lightweight", + "byline", + "util-extend", + "markdox", + "deploy", + "deployment", + "commands", + "devops", + "ssh", + "tasks", + "sequential", + "remote", + "fabric", + "inference", + "wrapper", + "flowbite-datepicker", + "mini-svg-data-uri", + "@tailwindcss/cli", + "@tailwindcss/postcss", + "eslint-plugin-tailwindcss", + "flowbite-typography", + "prettier-plugin-tailwindcss", + "windicss", + "ui components", + "tailwind components", + "tailwind elements", + "tailwind library", + "tailwind sections", + "tailwind ui", + "tailwind angular", + "tailwind django", + "tailwind ruby on rails", + "tailwind flask", + "cjs", + "umd", + "ffmpeg", + "fbemitter", + "react-addons-test-utils", + "dispatcher", + "lolex", + "redirect", + "location", + "@types/is-callable", + "cliff", + "shush", + "flatiron", + "nssocket", + "forever-monitor", + "getopts", + "cli-testlab", + "fault tolerant", + "sysadmin", + "node-abort-controller", + "jest-circus", + "karton", + "typecheck", + "@types/babel-code-frame", + "increment", + "asynckit", + "combined-stream", + "es-set-tostringtag", + "browserify-istanbul", + "fake", + "far", + "is-node-modern", + "js-randomness-predictor", + "obake", + "dezalgo", + "@paralleldrive/cuid2", + "formdata-polyfill", + "prettier-plugin-pkgjson", + "@tunnckocore/prettier-config", + "www", + "ulpoad", + "tiny-warning", + "just-debounce-it", + "tsdx", + "react hooks", + "render props", + "higher order component", + "hoc", + "conditional", + "friendly", + "errors", + "check-dts", + "front matter", + "meta data", + "universalify", + "klaw", + "read-dir-files", + "extra", + "mkdir", + "mkdirs", + "create", + "output", + "release-assist", + "any-promise", + "thenify-all", + "mac", + "ie", + "@monaco-editor/loader", + "@sapphire/stopwatch", + "@sapphire/utilities", + "@snippetors/vuepress-plugin-tabs", + "@vuepress/plugin-google-analytics", + "monaco-editor", + "vuepress-plugin-google-adsense2", + "bitap", + "socket", + "sublime", + "sublime text", + "globule", + "grunt-benchmark", + "yeoman-test", + "yeoman-assert", + "insight", + "restangular", + "ui-router", + "foundation", + "traceur", + "haml", + "git-config", + "find-git-root", + "@merkle-open/eslint-config", + "nitro", + "modular", + "pool", + "pooling", + "inject-markdown", + "ts2mjs", + "iterator", + "iterators", + "iterable", + "reduce", + "@werkzeugkiste/eslint-config", + "@werkzeugkiste/release-config", + "install-deps-postmerge", + "semantic-release-conventional-commits", + "@cfware/lint", + "@cfware/nyc", + "if-ver", + "libtap", + "finder", + "free", + "available", + "connection", + "tcp", + "scan", + "preferred", + "chosen", + "std", + "concat", + "@sec-ant/readable-stream", + "onetime", + "precise-now", + "get", + "consume", + "readablestream", + "resolve-pkg-maps", + "tsconfig", + "tsconfig.json", + "eslint-config-bevry", + "make-deno-edition", + "deno", + "deno-edition", + "deno-entry", + "denoland", + "es2022", + "export-default", + "ifconfig", + "ipconfig", + "mac-address", + "typed", + "email-addresses", + "dir-compare", + "eslint-config-tschaub", + "lodash.clone", + "manage-path", + "opt-cli", + "spawn-command", + "chai-string", + "eslint-config-kentcdodds", + "travis-after-all", + "hook", + "@primer/octicons", + "@primer/primitives", + "@rollup/plugin-html", + "minipass", + "path-scurry", + "dirname", + "wildcard", + "min-document", + "is-identifier", + "identifiers", + "environments", + "glob-stream", + "all", + "fnmatch", + "globbing", + "globs", + "multiple", + "paths", + "wildcards", + "gitignore", + "array-series", + "array-parallel", + "magick", + "graphicsmagick", + "gfsl", + "eslint-config-standard-with-typescript", + "msmc", + "mc", + "minecraft", + "launcher", + "java", + "java edition", + "arm", + "arm-support", + "forge", + "instances-management", + "instances", + "mod", + "mods", + "mc-mod", + "mc-mods", + "modpack", + "modpack-api", + "extendable", + "nbt", + "jarmods", + "skin fix", + "ky", + "eslint-plugin-no-floating-promise", + "varlock", + "google spreadsheets", + "google sheets", + "spreadsheet", + "spreadsheets", + "sheets", + "gdata", + "drive", + "google docs", + "google drive", + "googleapis-common", + "@types/execa", + "@types/mv", + "@types/ncp", + "@types/nunjucks", + "@types/url-template", + "@types/yargs-parser", + "js-green-licenses", + "jsdoc-fresh", + "jsdoc-region-tag", + "linkinator", + "pdfmake", + "google apis", + "client library", + "@sindresorhus/is", + "byte-counter", + "cacheable-lookup", + "cacheable-request", + "decompress-response", + "form-data-encoder", + "lowercase-keys", + "p-cancelable", + "responselike", + "@hapi/bourne", + "@types/pem", + "chunk-data", + "create-cert", + "create-test-server", + "pem", + "slow-stream", + "then-busboy", + "uri", + "curl", + "wget", + "zstd", + "zstandard", + "requests", + "human-friendly", + "sassdoc", + "gulp-cli", + "sass-color-helpers", + "govuk-prototype-kit", + "govuk", + "reading", + "retries", + "handling", + "EMFILE", + "EAGAIN", + "EINVAL", + "EPERM", + "EACCESS", + "graphql-js", + "test-all-versions", + "@graphql-tools/schema", + "section-matter", + "strip-bom-string", + "ansi-green", + "delimiter-regex", + "assemble", + "coffee", + "extracting", + "front", + "frontmatter", + "matter", + "site", + "@mapbox/node-pre-gyp", + "@types/bytebuffer", + "electron-mocha", + "google-protobuf", + "poisson-process", + "grunt-legacy-log", + "grunt-legacy-util", + "grunt-known-options", + "difflet", + "temporary", + "eslint-config-grunt", + "uglify", + "init", + "make", + "gruntplugin", + "browserify-incremental", + "liftup", + "pad-stream", + "grunt-nodemon", + "simultaneous", + "perf", + "faster", + "bin-version-check", + "compass", + "connect-livereload", + "file-sync-cmp", + "csslint", + "maxmin", + "cssmin", + "min", + "jpeg", + "hooker", + "less-plugin-clean-css", + "nodeunit-x", + "uri-path", + "grunt-coveralls", + "grunt-istanbul", + "grunt-github-remove-all-releases", + "gh", + "release", + "releases", + "report", + "vow", + "@commitlint/travis-cli", + "TDD", + "grunt-continue", + "grunt-env", + "grunt-istanbul-coverage", + "grunt-cafe-mocha", + "newer", + "stack-parser", + "grunt-release", + "grunt-templates-dylang", + "notify", + "mountain lion", + "mavericks", + "linux", + "notify-send", + "preprocess", + "libsass", + "requestretry", + "sauce-tunnel", + "grunt-sauce-tunnel", + "yui", + "spritesheet-templates", + "spritesmith", + "url2", + "eslint-config-twolfson", + "foundry", + "foundry-release-git", + "foundry-release-npm", + "get-pixels", + "gmsmith", + "sprite", + "spritesheet", + "grunt-mocha-cli", + "usemin", + "@npm/types", + "@types/json5", + "@types/write-file-atomic", + "inline-fixtures", + "@guarapi/eslint-config-guarapi", + "@swc/register", + "glob-watcher", + "undertaker", + "pipeline", + "series", + "streaming", + "gulp-footer", + "html2js", + "templatecache", + "gulp-symdest", + "atom", + "atom-shell", + "prefixes", + "postcss-runner", + "lodash.chunk", + "concurrent-transform", + "@azure/storage-blob", + "delayed-stream", + "streamifier", + "rewriting", + "transformation", + "codegen", + "desugaring", + "bom", + "mark", + "utf-8", + "add", + "prepend", + "gulp-codecov.io", + "bump-regex", + "plugin-log", + "version", + "versioning", + "gulp-version", + "gulp-plugin", + "cache-swap", + "object.pick", + "change-file-extension", + "changed", + "modified", + "modification", + "updated", + "mtime", + "stat", + "cached", + "passthrough", + "minify-css", + "jshint-reporter-jscs", + "parse-import", + "rework", + "rework-import", + "rework-plugin-url", + "inline", + "slush", + "dest", + "conflict", + "webserver", + "csscomb", + "rcloader", + "csslint-stylish", + "node-version-check", + "from2-string", + "@shinnn/eslint-config-node", + "warnings", + "flatnest", + "balanced-match", + "include", + "streamfilter", + "to-absolute-glob", + "divide", + "separate", + "relative", + "pretty-remarkable", + "sections", + "prettify", + "jsftp", + "jsftp-mkdirp", + "ftp-test-server", + "gift", + "wrap-promise", + "octonode", + "read-remove-file", + "@shinnn/eslint-config-node-legacy", + "branch", + "any-shell-escape", + "strip-bom-stream", + "gulpgit", + "stream-to-array", + "nid", + "gulp-declare", + "gulp-define-module", + "gulp-wrap", + "nsdeclare", + "eventstream", + "istanbul-coveralls", + "htm", + "htmlmin", + "gulp-spawn", + "gulp-svg2ttf", + "gulp-ttf2eot", + "gulp-ttf2woff", + "gulp-ttf2woff2", + "gulp-svgicons2svgfont", + "metapak", + "streamtest", + "@types/gulp", + "metapak-nfroidure", + "gulp-match", + "ternary-stream", + "stream-exhaust", + "if", + "ternary", + "exclude", + "gulp-gm", + "imagemin-webp", + "group-array", + "strip-color", + "@commitlint/config-angular", + "inject", + "stylesheets", + "webcomponents", + "scripts", + "index", + "inline-css", + "lodash.groupby", + "istanbul-threshold-checker", + "isparta", + "unit test", + "jasmine-terminal-reporter", + "gulplog", + "has-gulplog", + "array-unique", + "capture-stream", + "plugins", + "vinyl-bufferstream", + "stream-combiner2", + "kew", + "bufferstreams", + "ng-annotate", + "develop", + "restart", + "windows notification", + "mac notification", + "notify-osd", + "easy-transform-stream", + "ENV", + "echo", + "ifdef", + "ifndef", + "eslint-watch", + "views", + "precompile", + "src", + "replacestream", + "modify-filename", + "rev-hash", + "rev-path", + "sort-keys", + "vinyl-file", + "rev", + "revving", + "revision", + "expire", + "assets", + "each-async", + "md5-hex", + "ruby", + "source-maps", + "sourcemaps", + "sftp", + "@types/fancy-log", + "@types/lodash.template", + "brotli-size", + "measure", + "@gulp-sourcemaps/identity-map", + "@gulp-sourcemaps/map-sources", + "debug-fabulous", + "hook-std", + "mississippi", + "source maps", + "strip-debug", + "accord", + "looks-same", + "svg2png", + "stack", + "vector", + "rwd", + "retina", + "rendering", + "@types/through", + "incremental", + "@types/ansi-colors", + "gulp-diff", + "@types/plugin-error", + "incremental compilation", + "array-each", + "make-error-cause", + "tape-catch", + "source-list-map", + "eslint-plugin-no-use-extend-native", + "uncss", + "useref", + "async-once", + "mock-gulp-dest", + "array-differ", + "array-uniq", + "beeper", + "lodash._reescape", + "lodash._reevaluate", + "lodash._reinterpolate", + "lodash.templatesettings", + "yazl", + "yazul", + "vinyl-zip", + "anymatch", + "proxy-middleware", + "vinyl-assign", + "pngparse", + "phantomjssmith", + "zlib", + "compressed", + "catering", + "deglob", + "find-file-up", + "find-githost", + "remark-autolink-references", + "remark-common-changelog", + "remark-lint-blockquote-indentation", + "remark-lint-checkbox-character-style", + "remark-lint-checkbox-content-indent", + "remark-lint-code-block-style", + "remark-lint-definition-case", + "remark-lint-emphasis-marker", + "remark-lint-fenced-code-marker", + "remark-lint-final-newline", + "remark-lint-hard-break-spaces", + "remark-lint-list-item-bullet-indent", + "remark-lint-list-item-indent", + "remark-lint-no-auto-link-without-protocol", + "remark-lint-no-blockquote-without-marker", + "remark-lint-no-duplicate-definitions", + "remark-lint-no-heading-content-indent", + "remark-lint-no-inline-padding", + "remark-lint-no-literal-urls", + "remark-lint-no-unused-definitions", + "remark-lint-rule-style", + "remark-lint-strong-marker", + "remark-lint-table-cell-padding", + "remark-lint-table-pipes", + "remark-lint-unordered-list-marker-style", + "remark-validate-links", + "unified-engine", + "vfile-reporter-shiny", + "git-pull-or-clone", + "fixer", + "changelogplease", + "git-tags", + "grunt-contrib-qunit", + "grunt-string-replace", + "jquery-hammerjs", + "gestures", + "neo-async", + "chai-diff", + "grunt-contrib-requirejs", + "ammo", + "shot", + "topo", + "heavy", + "mimos", + "bounce", + "catbox", + "podium", + "somever", + "subtext", + "teamwork", + "statehood", + "catbox-memory", + "wreck", + "vision", + "elements", + "flag", + "getopt", + "@types/core-js", + "get-own-property-symbols", + "typeof", + "sham", + "function-bind", + "@types/function-bind", + "@types/mock-property", + "hasOwnProperty", + "hasOwn", + "has-own", + "own", + "in", + "@ungap/structured-clone", + "hast-util-from-parse5", + "unist-util-position", + "web-namespaces", + "zwitch", + "@types/ungap__structured-clone", + "remark-api", + "hast-util", + "hast", + "unist", + "raw", + "aria-attributes", + "html-tag-names", + "safe", + "bcp-47-match", + "devlop", + "direction", + "selectall", + "estree-util-attach-comments", + "estree-util-is-identifier-name", + "mdast-util-mdx-expression", + "mdast-util-mdx-jsx", + "mdast-util-mdxjs-esm", + "esast-util-from-js", + "ccount", + "tostring", + "sval", + "solid", + "unist-util-find-after", + "estree-util-build-jsx", + "svg-tag-names", + "hyperscript", + "vdom", + "virtual", + "regexgen", + "sort-object", + "content-security-policy", + "cross-origin-embedder-policy", + "cross-origin-opener-policy", + "cross-origin-resource-policy", + "origin-agent-cluster", + "referrer-policy", + "strict-transport-security", + "x-content-type-options", + "x-dns-prefetch-control", + "x-download-options", + "x-frame-options", + "x-permitted-cross-domain-policies", + "x-powered-by", + "x-xss-protection", + "@vue/compiler-dom", + "abbrev", + "fast-archy", + "fast-text-table", + "hexo-cli", + "hexo-front-matter", + "hexo-fs", + "hexo-i18n", + "hexo-log", + "hexo-util", + "js-yaml-js-types", + "moize", + "titlecase", + "warehouse", + "@types/abbrev", + "0x", + "eslint-config-hexo", + "hexo-renderer-marked", + "util-deprecate", + "grunt-gh-pages", + "scrawl", + "transducers-js", + "tiny-worker", + "wcag-contrast", + "css-color-names", + "deep-freeze-es6", + "dependency-resolver", + "step", + "hap-nodejs", + "@types/source-map-support", + "eslint-plugin-import-newlines", + "@hono/eslint-config", + "bun-types", + "editorconfig-checker", + "oxc-parser", + "vite-plugin-fastly-js-compute", + "wrangler", + "application", + "cloudflare", + "workers", + "fastly", + "compute", + "workshopper-adventure", + "workshop", + "adventure", + "tutorial", + "tutor", + "@size-limit/preset-big-lib", + "@types/jscodeshift", + "pojo", + "attribute", + "element", + "@exodus/bytes", + "@types/he", + "flowgen", + "html entities", + "html entities encode", + "html entities decode", + "entities encode", + "entities decode", + "ascjs", + "unescape", + "posthtml-webp", + "unescape-unicode", + "relateurl", + "compressor", + "packer", + "uglifier", + "alpinejs", + "commitlint-config-non-conventional", + "rollup-plugin-polyfill-node", + "tags", + "void", + "self-closing", + "@types/jasmine", + "@bubkoo/tsconfig", + "@bubkoo/eslint-config", + "@bubkoo/rollup-config", + "@bubkoo/commitlint-config", + "@bubkoo/semantic-release-config", + "screenshot", + "capture", + "@selderee/plugin-htmlparser2", + "selderee", + "mail", + "plain", + "@html-validate/stylish", + "@sidvind/better-ajv-errors", + "@types/html-minifier-terser", + "pug-loader", + "webpack-recompilation-simulator", + "@types/relateurl", + "bunchee", + "eslint-plugin-unused-imports", + "srcset", + "posthtml-plugin", + "postproccessor", + "rss", + "toidentifier", + "requires-port", + "sse", + "agent-base", + "agent", + "@types/is-glob", + "mockttp", + "next.js", + "union", + "corser", + "secure-compare", + "eol", + "eslint-config-populist", + "https-server", + "@types/should", + "@types/eslint__js", + "status", + "@types/markdown-table", + "HttpStatus", + "httpclient", + "mediation", + "@types/async-retry", + "post", + "put", + "duplex", + "eslint-config-sanity", + "hyphenate", + "singular", + "plural", + "camelize", + "dasherize", + "demodulize", + "ordinalize", + "uncountable", + "singularize", + "titleize", + "tableize", + "classify", + "foreign_key", + "@messageformat/core", + "fast-printf", + "make-plural", + "math-interval-parser", + "l10n", + "@arktype/attest", + "gh-release", + "i18next-browser-languagedetector", + "i18next-fs-backend", + "i18next-http-backend", + "i18next-localstorage-cache", + "i18next-sprintf-postprocessor", + "internationalization", + "translation", + "localization", + "globalization", + "gettext", + "gridly", + "safer-buffer", + "errto", + "iconv", + "unorm", + "bench-node", + "charset", + "icu", + "harmony-reflect", + "proxies", + "identity", + "eslint-config-ostai", + "pre-suf", + "spawn-sync", + ".gitignore", + "manager", + "asterisks", + "regular-expression", + "dimensions", + "resolution", + "heif", + "tga", + "tiff", + "ow", + "p-pipe", + "image-dimensions", + "is-png", + "pngquant-bin", + "imageminplugin", + "pngquant", + "utf7", + "reader", + "cpx2", + "deep-freeze", + "import-size", + "seamless-immutable", + "type-plus", + "mutable", + "copy-on-write", + "@types/invariant", + "immutability", + "lazy", + "stateless", + "bypass", + "prefer", + "metacom", + "metaconfiguration", + "metalog", + "metaschema", + "metautil", + "metavm", + "metawatch", + "eslint-config-metarhia", + "isolation", + "enterprise", + "scalable", + "soa", + "stateful", + "routing", + "cluster", + "interactive", + "align", + "every", + "inferno-shared", + "inferno-utils", + "user interfaces", + "renderToString", + "inflections", + "inflection-js", + "humanize", + "capitalize", + "inheritance", + "klass", + "oop", + "object-oriented", + "@alcalzone/ansi-tokenize", + "auto-bind", + "patch-console", + "terminal-size", + "yoga-layout", + "@types/react-reconciler", + "@types/scheduler", + "@types/signal-exit", + "@vdemedes/prettier-config", + "eslint-config-xo-react", + "react-devtools-core", + "print", + "inline-style", + "inno", + "innosetup", + "run-async", + "fwk", + "instagram", + "ig", + "driver", + "reify", + "exports", + "packaging", + "remark-code-import", + "coffee.md", + "litcoffee", + "yml", + "babel-plugin-transform-es3-member-expression-literals", + "babel-plugin-transform-es3-property-literals", + "babel-preset-es2015-rollup", + "cldr-cal-buddhist-full", + "cldr-cal-chinese-full", + "cldr-cal-coptic-full", + "cldr-cal-dangi-full", + "cldr-cal-ethiopic-full", + "cldr-cal-hebrew-full", + "cldr-cal-indian-full", + "cldr-cal-islamic-full", + "cldr-cal-japanese-full", + "cldr-cal-persian-full", + "cldr-cal-roc-full", + "cldr-core", + "cldr-dates-full", + "cldr-numbers-full", + "estraverse-fb", + "grunt-curl", + "grunt-zip", + "rollup-plugin-memory", + "ecma402", + "@vue/tsconfig", + "flag-icons", + "google-closure-library", + "grunt-replace", + "prettier-eslint", + "international", + "country", + "dial code", + "telephone", + "phone", + "@inversifyjs/common", + "@inversifyjs/container", + "@inversifyjs/core", + "dependency inversion", + "inversion of control container", + "ioc", + "leek", + "ssh-config", + "elementtree", + "@ionic/discover", + "@ionic/utils-fs", + "superagent-proxy", + "@ionic/utils-array", + "@ionic/utils-stream", + "@ionic/cli-framework", + "@ionic/utils-network", + "@ionic/utils-process", + "@ionic/utils-terminal", + "@ionic/utils-subprocess", + "@ionic/cli-framework-prompts", + "@types/diff", + "@types/open", + "@types/split2", + "@types/os-name", + "@types/elementtree", + "ionic framework", + "ionicframework", + "hybrid", + "@types/svgo", + "jest-stencil-runner", + "icon pack", + "custom element", + "@ioredis/commands", + "cluster-key-slot", + "denque", + "lodash.isarguments", + "redis-errors", + "redis-parser", + "standard-as-callback", + "@ioredis/interface-generator", + "@types/lodash.defaults", + "@types/lodash.isarguments", + "@types/redis-errors", + "sentinel", + "pipelining", + "irc-colors", + "node-icu-charset-detector", + "ansi-color", + "is-extglob", + "braces", + "extglob", + "globstar", + "global-directory", + "globally", + "installed", + "locally", + "vanilla", + "pure", + "is-object", + "kind", + "custom element name", + "writable", + "is-inside-container", + "esmock", + "wsl", + "subsystem", + "kindof", + "lintspaces-cli", + "code coverage", + "JS code coverage", + "JS coverage", + "js-calendar", + "v-click-outside-x", + "autoprefixer-loader", + "babel-plugin-transform-es5-property-mutators", + "compression-webpack-plugin", + "vue-html-loader", + "character-parser", + "constantinople", + "jstransformer", + "transformers", + "with", + "browserify-middleware", + "code-mirror", + "github-basic", + "handle", + "highlight-codemirror", + "inconsolata", + "jade-code-mirror", + "jade-highlighter", + "jstransformer-cdata", + "jstransformer-coffee-script", + "jstransformer-less", + "jstransformer-marked", + "jstransformer-stylus", + "jstransformer-verbatim", + "less-file", + "lsr", + "pull-request", + "stop", + "filelist", + "rake", + "video-worker", + "babel-plugin-annotate-pure-calls", + "browserslist-config-nk", + "eslint-config-nk", + "json-file", + "prettier-config-nk", + "parallax", + "youtube", + "vimeo", + "@jasminejs/reporters", + "eslint-plugin-jasmine", + "css-url-embed", + "walkdir", + "jasmine-reporters", + "jasmine-growl-reporter", + "cssfontparser", + "moo-color", + "babel-plugin-version", + "@jest/diff-sequences", + "@jest/environment", + "@jest/environment-jsdom-abstract", + "@jest/fake-timers", + "jest-serializer-ansi-escapes", + "matchers", + "extended", + "@types/escape-html", + "@types/jump.js", + "@types/randomcolor", + "eslint-webpack-plugin", + "jump.js", + "randomcolor", + "web-vitals", + "libxmljs2", + "plugnplay", + "pnp", + "babel-plugin-add-import-extension", + "@types/merge-stream", + "jest-leak-detector", + "worker-farm", + "@jimp/core", + "@jimp/diff", + "@jimp/js-bmp", + "@jimp/js-gif", + "@jimp/js-jpeg", + "@jimp/js-png", + "@jimp/js-tiff", + "@jimp/plugin-blit", + "@jimp/plugin-blur", + "@jimp/plugin-circle", + "@jimp/plugin-color", + "@jimp/plugin-contain", + "@jimp/plugin-cover", + "@jimp/plugin-crop", + "@jimp/plugin-displace", + "@jimp/plugin-dither", + "@jimp/plugin-fisheye", + "@jimp/plugin-flip", + "@jimp/plugin-hash", + "@jimp/plugin-mask", + "@jimp/plugin-print", + "@jimp/plugin-quantize", + "@jimp/plugin-resize", + "@jimp/plugin-rotate", + "@jimp/plugin-threshold", + "@jimp/types", + "@jimp/utils", + "@jimp/config-eslint", + "@jimp/config-typescript", + "@jimp/config-vitest", + "@jimp/test-utils", + "node-self", + "vite-plugin-node-polyfills", + "image processing", + "image manipulation", + "resize", + "@babel/helper-simple-access", + "@rspack/cli", + "@rspack/core", + "@types/babel__helper-plugin-utils", + "@types/babel__template", + "@types/babel__traverse", + "babel-plugin-parameter-decorator", + "destr", + "nano-jsx", + "preact-render-to-string", + "solid-js", + "wysiwyg editor", + "wysiwyg html editor", + "rich editor", + "rich text editor", + "contenteditable", + "vanillajs", + "wysisyg", + "rte", + "firmata", + "temporal", + "nanotimer", + "browser-serialport", + "grunt-jsbeautifier", + "0A02", + "0A21", + "16x2 LCD", + "20x4 LCD", + "2D120X", + "2Y0A02", + "2Y0A21", + "74HC595", + "ADXL335", + "ADXL345", + "ALS-PT19", + "ALSPT19", + "ANALOG", + "arduino", + "Ardumoto", + "AT42QT1070", + "BLINKM", + "BMP180", + "Continuous Rotation", + "DEFAULT", + "Diffused LED", + "DS18B20", + "Edison Arduino Block", + "Edison GPIO Block", + "Edison I2C Block", + "Edison PWM Block", + "edison", + "ESPLORA", + "EV3", + "galileo-io", + "galileo", + "GP2D120XJ00F", + "GP2Y0A02YK0F", + "GP2Y0A21YK", + "GP2Y0A41SK0F", + "GY-521", + "GY521", + "HD44780", + "High Torque", + "Hitec HS-35HD", + "Hitec HS-422", + "Hitec HS-425BB", + "Hitec HS-625MG", + "Hitec HS-646WP", + "Hitec HS-755HB", + "Hitec HS-805BB", + "Hitec HS-85MG", + "HMC5883L", + "HMC6352", + "Hobby Motor", + "HRLV-MaxSonar-EZ0", + "HT16K33", + "HTU21D", + "i2c", + "Infrared Proximity Sensor", + "Infrared Sensor", + "intel edison", + "intel galileo", + "ISL29125", + "JHD1313M1", + "Joystick", + "LCD1602", + "LCD2004", + "LCM1602", + "LED", + "LIDAR-Lite v2", + "Ludus Protoshield Wireless", + "Ludus Protoshield", + "LV-MaxSonar-EZ0", + "LV-MaxSonar-EZ3", + "MCP23008", + "MCP23017", + "MCP9808", + "Metal Gear", + "MJKDZ", + "MMA7361", + "MMA7660", + "MMA8462Q", + "MPL115A2", + "MPL3115A2", + "MPR121", + "MPR121QR2", + "MPU-6050", + "MPU6050", + "MUXSHIELD2", + "NXT", + "OA41SK", + "PARALLEL", + "PCA9685", + "pcduino", + "PCF8574", + "PCF8574A", + "PCF8574AT", + "PCF8574T", + "PCF8575", + "PCF8591", + "photon", + "PIR Motion Sensor", + "QTOUCH", + "raspberry pi", + "raspberrypi", + "raspi-io", + "RedBoard", + "RGB LED", + "robot", + "robotics", + "rpi", + "serial", + "Servo", + "Shift Register 8-Bit SN74HC595", + "Shift Register", + "SI7020", + "spark core", + "spark-io", + "spark", + "SparkFun Essential Sensor Kit", + "SparkFun Sensor Kit", + "Speed controller", + "Temperature", + "tessel 2", + "Thumb Joystick", + "TINKERKIT", + "TMP36", + "TSL2561", + "Ultrasonic Range Finder", + "usb", + "VKEY", + "Weather Shield Arduino", + "Weather Shield Photon", + "@hapi/address", + "@hapi/formula", + "@hapi/pinpoint", + "@hapi/tlds", + "recoil", + "grunt-html", + "commitplease", + "grunt-bowercopy", + "grunt-git-authors", + "grunt-compare-size", + "jquery-test-runner", + "eslint-config-jquery", + "config-chain", + "beautifier", + "code-quality", + "grunt-exec", + "gzip-js", + "amd", + "rollup-plugin-node-polyfills", + "pyyaml", + "knifecycle", + "package-directory", + "yerror", + "architecture", + "gitignore-to-glob", + "@jscpd/badge-reporter", + "@jscpd/core", + "@jscpd/finder", + "@jscpd/tokenizer", + "@jscpd/html-reporter", + "jscpd-sarif-reporter", + "cst", + "jscs-jsdoc", + "jscs-preset-wikimedia", + "reserved-words", + "to-double-quotes", + "to-single-quotes", + "vow-fs", + "unicode-7.0.0", + "unit-coverage", + "@jsdoc/salty", + "catharsis", + "js2xmlparser", + "requizzle", + "current-module-paths", + "object-to-spawn-args", + "config-master", + "@acemir/cssom", + "@asamuzakjp/dom-selector", + "@bramus/specificity", + "data-urls", + "decimal.js", + "saxes", + "symbol-tree", + "w3c-xmlserializer", + "webidl-conversions", + "whatwg-url", + "mocha-sugar-free", + "webidl2", + "webidl2js", + "browser-request", + "cssom", + "nwmatcher", + "selenium-standalone", + "unicode-13.0.0", + "results-interpreter", + "unicode-5.2.0", + "unicode-11.0.0", + "stylish", + "deeks", + "doc-path", + "to", + "json2csv", + "csv2json", + "csv-2-json", + "milliparsec", + "sort-on", + "prototyping", + "dummy", + "@types/object-keys", + "deterministic", + "stable", + "circular", + "unicode-10.0.0", + "@stryker-mutator/mocha-runner", + "json-metaschema", + "jsonparse", + "trees", + "jws", + "lodash.once", + "lodash.includes", + "lodash.isnumber", + "lodash.isboolean", + "lodash.isinteger", + "@jspm/generator", + "@jspm/plugin-rollup", + "amaro", + "states", + "lie", + "jszip-utils", + "package-json-versionify", + "inflate", + "qjobs", + "dom-serialize", + "timer-shim", + "karma-junit-reporter", + "karma-script-launcher", + "spectacular", + "execution", + "hat", + "os-shim", + "karma-plugin", + "karma-preprocessor", + "browserify-tool", + "browserstack-local", + "karma-launcher", + "browser-stack", + "chrome", + "ibrik", + "karma-coffee-preprocessor", + "karma-requirejs", + "karma-reporter", + "Safari", + "Safari Tech Preview", + "SafariTechPreview", + "IE", + "Chrome", + "Chrome Canary", + "Chrome Headless", + "Chromium", + "Firefox", + "Opera", + "edge-launcher", + "chai-fs", + "os-homedir", + "firefox", + "karma-adapter", + "karma-rollup", + "safari", + "global-agent", + "@types/global-agent", + "sauce", + "labs", + "karma-brief-reporter", + "rollup-sourcemap-path-transform", + "keyboard", + "keyboardevent", + "keydown", + "keyup", + "metakey", + "keyname", + "@keyv/serialize", + "lru.min", + "timekeeper", + "@keyv/compress-gzip", + "@keyv/sqlite", + "@keyv/test-suite", + "@keyv/mongo", + "@keyv/compress-brotli", + "@keyv/compress-lz4", + "@keyv/memcache", + "key-value", + "adapter", + "memory", + "lru", + "tarn", + "escalade", + "pg-connection-string", + "tedious", + "oracledb", + "better-sqlite3", + "pg-query-stream", + "chai-subset-in-order", + "@tsconfig/recommended", + "toxiproxy-node-client", + "sql", + "postgres", + "cockroachdb", + "querybuilder", + "formatly", + "oxc-resolver", + "smol-toml", + "codeclimate-types", + "analysis", + "analyze", + "dead code", + "duplicate", + "entropy", + "maintenance", + "members", + "missing", + "monorepo", + "namespace", + "unreferenced", + "unresolved", + "workspace", + "lodash.sortby", + "explorer", + "opera", + "samsung-internet", + "uc-browser", + "stream-counter", + "delegates", + "http-assert", + "gen-esm-wrapper", + "@types/co-body", + "co-body", + "@koa/router", + "@types/koa__router", + "urlencoded", + "body", + "copy-to", + "bodyParser", + "compose", + "humanize-number", + "passthrough-counter", + "koa-compress", + "koa-route", + "mount", + "mounting", + "@ladjs/env", + "route", + "koa-send", + "sendfile", + "reds", + "node-redis-warlock", + "bossy", + "eslint-config-hapi", + "eslint-plugin-hapi", + "find-rc", + "will-call", + "cpr", + "lab-event-reporter", + "semver-regex", + "latest", + "package.json", + "current", + "autodoc", + "deft", + "jasmine-async", + "race.js", + "string-table", + "happen", + "leafdoc", + "bundlemon", + "git-rev-sync", + "karma-expect", + "prosthetic-hand", + "eslint-config-mourner", + "rollup-plugin-git-version", + "@mapbox/eslint-plugin-script-tags", + "gis", + "left", + "padding", + "repeat", + "numbers", + "aproba", + "cmd-shim", + "p-reduce", + "byte-size", + "write-pkg", + "wide-align", + "has-unicode", + "p-waterfall", + "libnpmaccess", + "p-map-series", + "set-blocking", + "@lerna/create", + "libnpmpublish", + "read-cmd-shim", + "load-json-file", + "init-package-json", + "make-fetch-happen", + "conventional-changelog-core", + "validate-npm-package-license", + "conventional-recommended-bump", + "conventional-changelog-angular", + "@octokit/plugin-enterprise-rest", + "multi-package", + "copy-anything", + "benny", + "bootstrap-less-port", + "html-template-tag", + "jit-grunt", + "less-plugin-autoprefix", + "mocha-teamcity-reporter", + "phin", + "read-glob", + "compile less", + "css nesting", + "css variable", + "gradients css", + "gradients css3", + "less compiler", + "less css", + "less mixins", + "less.js", + "lesscss", + "nested css", + "bootstrap css", + "bootstrap less", + "variables in css", + "css less", + "less-plugin-glob", + "browser-level", + "classic-level", + "abstract-level", + "airtap-playwright", + "@voxpelli/tsconfig", + "leveldb", + "napi-macros", + "abstract-leveldown", + "du", + "async-each", + "mkfiletree", + "readfiletree", + "prebuildify-ci", + "prebuildify-cross", + "level-concat-iterator", + "level-errors", + "level-supports", + "queue-microtask", + "deferred-leveldown", + "level-iterator-stream", + "memdown", + "trickle", + "airtap-sauce", + "run-parallel", + "encoding-down", + "simple-concat", + "fast-levenshtein", + "ld", + "levdist", + "levenshtein", + "levenshtein-component", + "levenshtein-edit-distance", + "talisman", + "distance", + "algorithm", + "comparison", + "edit", + "matching", + "binary-extensions", + "promise-retry", + "just-safe-set", + "fund", + "gitfund", + "crlf", + "gmail-send", + "jest-codemods", + "libphonenumber-metadata-generator", + "renamer", + "libphonenumber", + "fined", + "flagged-respawn", + "autolink", + "hashtag", + "link", + "mention", + "consolemock", + "staged", + "@samverschueren/stream-to-observable", + "is-observable", + "listr-silent-renderer", + "listr-update-renderer", + "listr-verbose-renderer", + "@lit-labs/ssr-dom-shim", + "@lit/reactive-element", + "@lit-internal/scripts", + "@lit-labs/testing", + "@webcomponents/template", + "connect-logger", + "http-auth", + "faye-websocket", + "livereload-js", + "resolve-pkg", + "matchdep", + "lws-basic-auth", + "lws-blacklist", + "lws-body-parser", + "lws-compress", + "lws-conditional-get", + "lws-cors", + "lws-json", + "lws-log", + "lws-mime", + "lws-range", + "lws-request-monitor", + "lws-rewrite", + "lws-spa", + "lws-static", + "full-stack", + "babel-preset-es2015-loose", + "browserify-derequire", + "grunt-es3-safe-recast", + "grunt-rollup", + "grunt-ts", + "rollupify", + "indexeddb", + "localstorage", + "websql", + "openurl", + "lockfile-lint-api", + "prettier-standard", + "lockfile check", + "lockfile lint", + "lock", + "stdlib", + "lodash-modularized", + "clonedeep", + "defaults", + "isempty", + "isequal", + "isfunction", + "isplainobject", + "isstring", + "omit", + "pick", + "uniq", + "uni-global", + "sprintf-kit", + "event-emitter", + "ncjsm", + "tape-index", + "terminal.js", + "update", + "refresh", + "overwrite", + "bar", + "date-format", + "streamroller", + "@log4js-node/sandboxed-module", + "grunt-contrib-jasmine", + "grunt-open", + "grunt-preprocess", + "math", + "int64", + "uid2", + "isemail", + "canonical-json", + "loopback-phase", + "strong-remoting", + "loopback-filters", + "strong-globalize", + "loopback-connector-remote", + "nodemailer-stub-transport", + "loopback-datasource-juggler", + "nodemailer-direct-transport", + "is-docker", + "loopback-boot", + "karma-es6-shim", + "loopback-context", + "strong-task-emitter", + "strong-error-handler", + "eslint-config-loopback", + "sqlserver", + "StrongLoop", + "mBaaS", + "steno", + "express-async-handler", + "@commitlint/prompt-cli", + "@typicode/eslint-config", + "embed", + "embedded", + "localStorage", + "sessionStorage", + "mru", + "@lucide/build-icons", + "@lucide/shared", + "@lucide/rollup-plugins", + "Lucide", + "HTML", + "Feather", + "Icons", + "Icon", + "SVG", + "Feather Icons", + "Fontawesome", + "Font Awesome", + "decree", + "manipulate", + "blur", + "sharpen", + "flip", + "mirror", + "hue", + "saturation", + "lightness", + "transparency", + "fade", + "opacity", + "contain", + "cover", + "@75lb/deep-merge", + "ansi-escape-sequences", + "create-mixin", + "load-module", + "sleep-anywhere", + "expand-home-dir", + "hast-util-to-mdast", + "mdast-util-to-markdown", + "short-unique-id", + "y18n", + "@types/columnify", + "@types/json-diff", + "@types/make-fetch-happen", + "@types/which", + "wizard", + "task graph", + "string manipulation", + "@favware/rollup-type-bundler", + "lavalink client", + "audio streaming", + "music bot", + "voice chat", + "discord integration", + "high performance", + "easy-to-use", + "feature-rich", + "seamless integration", + "community support", + "open-source", + "lavalink", + "path-type", + "intermediate", + "recursively", + "dingbat-to-unicode", + "lop", + "browserify-prepend-licenses", + "duck", + "hamjest", + "office", + "word", + "@nestjs/common", + "@nestjs/config", + "@nestjs/core", + "@nestjs/platform-express", + "@nestjs/swagger", + "@nestjs/throttler", + "@nestjs/typeorm", + "@yarnpkg/lockfile", + "uniqid", + "@codecov/bundle-analyzer", + "@nestjs/cli", + "@nestjs/testing", + "@testcontainers/mysql", + "@types/dasherize", + "crud", + "admin-panel", + "headless-cms", + "backend-framework", + "micro-backend", + "rapid-development", + "yaml-config", + "file-upload", + "api-generator", + "low-code", + "no-code", + "prototype", + "mvp", + "startup", + "baas", + "@next/eslint-plugin-next", + "@tabler/icons-react", + "eslint-config-next", + "postcss-preset-mantine", + "postcss-simple-vars", + "mantine", + "context", + "context-menu", + "context menu", + "react server components", + "user experience", + "usability", + "mapbox-gl", + "mapbox", + "legend", + "text processing", + "linkify-it", + "mdurl", + "punycode.js", + "uc.micro", + "markdown-it-for-inline", + "markdown-it-ins", + "markdown-it-mark", + "markdown-it-sub", + "ndoc", + "markdown-it-plugin", + "anchor", + "emoji", + "emojies", + "emoticon", + "emoticons", + "stream-from-to", + "pdf-text", + "rows", + "bunup", + "theredoc", + "markdown parser", + "solidjs", + "diacritics-map", + "lazy-cache", + "list-item", + "markdown-link", + "mixin-deep", + "repeat-string", + "document", + "glossary", + "heading", + "links", + "remarkableplugin", + "table of contents", + "table-of-contents", + "toc", + "micromark-core-commonmark", + "micromark-extension-directive", + "micromark-extension-gfm-autolink-literal", + "micromark-extension-gfm-footnote", + "micromark-extension-gfm-table", + "micromark-extension-math", + "micromark-util-types", + "gemoji", + "markdownlint-rule-extended-ascii", + "CommonMark", + "jsonpointer", + "run-con", + "@markedjs/eslint-config", + "@markedjs/testutils", + "esbuild-plugin-umd-wrapper", + "marked-highlight", + "marked-man", + "recheck", + "markup", + "v8-argv", + "inline-style-prefixer", + "react-event-listener", + "simple-assign", + "complex.js", + "escape-latex", + "javascript-natural-sort", + "typed-function", + "eigen", + "expr-eval", + "jsep", + "ndarray", + "ndarray-determinant", + "ndarray-gemm", + "ndarray-ops", + "ndarray-pack", + "numericjs", + "sylvester", + "zeros", + "mathematics", + "numeric", + "algebra", + "complex", + "fraction", + "charenc", + "md5sum", + "checksum", + "decode-named-character-reference", + "micromark-util-decode-numeric-character-reference", + "micromark-util-decode-string", + "micromark-util-normalize-identifier", + "micromark-util-symbol", + "unist-util-stringify-position", + "commonmark.json", + "micromark-build", + "mdast-util", + "mdast", + "tree", + "micromark-util-sanitize-uri", + "trim-lines", + "mdast-util-gfm", + "micromark-extension-gfm", + "mdn", + "mozilla", + "hashring", + "jackpot", + "InnoDB memcached API", + "failover", + "hashing", + "membase", + "memcache", + "nMemcached", + "@jsonjoy.com/fs-core", + "@jsonjoy.com/fs-fsa", + "@jsonjoy.com/fs-node", + "@jsonjoy.com/fs-node-builtins", + "@jsonjoy.com/fs-node-to-fsa", + "@jsonjoy.com/fs-node-utils", + "@jsonjoy.com/fs-print", + "@jsonjoy.com/fs-snapshot", + "@jsonjoy.com/json-pack", + "@jsonjoy.com/util", + "glob-to-regex.js", + "thingies", + "tree-dump", + "isomorphic-git", + "tslint-config-common", + "fs.js", + "in-memory", + "fsa", + "file system access", + "native file system", + "webfs", + "crudfs", + "opfs", + "casfs", + "content addressable storage", + "@types/lodash.isequal", + "fast-memoize", + "mem", + "nanocolors", + "memoization", + "gulp-exit", + "ram", + "errno", + "camelcase-keys", + "decamelize-keys", + "delete_comments", + "minimist-options", + "trim-newlines", + "cat", + "kitten", + "from2", + "lodash.clonedeepwith", + "stat-mode", + "ware", + "@metalsmith/drafts", + "assert-dir-equal", + "7zip-bin", + "node-7z", + "node-downloader-helper", + "@babel/plugin-syntax-import-meta", + "@surma/rollup-plugin-off-main-thread", + "asyncro", + "babel-plugin-transform-async-to-promises", + "babel-plugin-transform-replace-expressions", + "tiny-glob", + "@babel/plugin-proposal-throw-expressions", + "directory-tree", + "eslint-config-developit", + "npm-merge-driver-install", + "micro library", + "micromark-factory-space", + "micromark-util-chunked", + "micromark-util-combine-extensions", + "micromark-util-resolve-all", + "micromark-util-subtokenize", + "fill-range", + "bracket", + "character-class", + "expansion", + "extglobs", + "lookahead", + "lookaround", + "lookbehind", + "negate", + "negation", + "posix", + "star", + "@types/mime-db", + "mime-score", + "release-please", + "runmd", + "mime-db", + "mimetypes", + "Min Heap", + "min heap", + "maxheap", + "min-heap", + "heap", + "Binary Heap", + "binary-heap", + "heap data structure", + "min heap data structure", + "complete binary tree", + "heapify", + "heap sort", + "heapify up", + "heapify down", + "Priority Queue", + "priority queue", + "priorityqueue", + "priority-queue", + "priority q", + "priorityQ", + "efficient", + "priority", + "complete binary", + "extract min", + "min priority queue", + "efficient priority", + "ordering property", + "dynamic resizing", + "priority-based", + "priority-based processing", + "element priority", + "queue priority", + "sorted", + "decrease key", + "increase key", + "searching", + "@putout/minify", + "css-b64-images", + "html-minifier-next", + "montag", + "readjson", + "try-catch", + "try-to-catch", + "escover", + "eslint-plugin-putout", + "madrun", + "supertape", + "brace-expansion", + "signed", + "certificate", + "cert", + "@types/brace-expansion", + "make dir", + "dir", + "ufo", + "conditional-type-checks", + "mobservable", + "reactive", + "frp", + "functional-reactive-programming", + "state management", + "data flow", + "mobx-react-lite", + "expose-gc", + "browser-stdout", + "yargs-unparser", + "uslug", + "pidtree", + "rewiremock", + "unexpected", + "@mocha/docdash", + "jsdoc-ts-utils", + "unexpected-map", + "unexpected-set", + "unexpected-sinon", + "remark-inline-links", + "unexpected-eventemitter", + "fail-on-errors-webpack-plugin", + "@11ty/eleventy-plugin-inclusive-language", + "headless-chrome", + "chai-xml", + "test-console", + "xmllint", + "junit", + "lcov", + "define-data-property", + "gopd", + "has-property-descriptors", + "@types/es-value-fixtures", + "@types/for-each", + "@types/functions-have-names", + "@types/get-intrinsic", + "@types/gopd", + "@types/has-property-descriptors", + "@types/object-inspect", + "descriptor", + "define", + "swap", + "unix-dgram", + "unittest", + "gulp-coveralls", + "gulp-mocha-phantomjs", + "mockJSON", + "mockAjax", + "ipaddr.js", + "recursive-watch", + "fastest-validator", + "avsc", + "nats", + "etcd3", + "cbor-x", + "thrift", + "redlock", + "dd-trace", + "gc-stats", + "msgpack5", + "fakerator", + "kafka-node", + "v8-natives", + "@types/pino", + "notepack.io", + "benchmarkify", + "rhea-promise", + "@types/bunyan", + "jaeger-client", + "@types/ioredis", + "moleculer-repl", + "winston-context", + "event-loop-stats", + "node-nats-streaming", + "@icebob/node-memwatch", + "microservice", + "messagebus", + "services", + "micro", + "distributed", + "ender", + "timezone", + "olson", + "iana", + "zone", + "tz", + "monaco-languageserver-types", + "monaco-marker-data-provider", + "monaco-types", + "monaco-worker-manager", + "vscode-languageserver-textdocument", + "vscode-languageserver-types", + "vscode-uri", + "@remcohaszing/eslint", + "remark-preset-remcohaszing", + "yaml-language-server", + "monaco", + "monads", + "either", + "maybe", + "result", + "@codemirror/lang-javascript", + "@codemirror/theme-one-dark", + "@json2csv/plainjs", + "@lezer/highlight", + "basic-auth-connect", + "bootstrap-paginator-2", + "free-swig", + "gridfs-stream", + "mongodb-query-parser", + "renderjson-2", + "@cypress/code-coverage", + "assets-webpack-plugin", + "express-openid-connect", + "mongodb-memory-server", + "administration", + "GUI", + "manage", + "manage-mongo", + "phpmyadmin", + "UI", + "web-based", + "@mongodb-js/saslprep", + "mongodb-connection-string-url", + "aws4", + "socks", + "snappy", + "mocha-sinon", + "gcp-metadata", + "@types/kerberos", + "@types/saslprep", + "v8-heapsnapshot", + "@mongodb-js/zstd", + "@types/whatwg-url", + "@types/chai-subset", + "mongodb-client-encryption", + "@aws-sdk/credential-providers", + "kareem", + "mpath", + "mquery", + "sift", + "@ark/attest", + "@mongodb-js/mongodb-downloader", + "acquit", + "acquit-ignore", + "acquit-require", + "lodash.isequalwith", + "mongodb-runner", + "odm", + "datastore", + "backbone-callbacks", + "node-monitor", + "remote control", + "probe", + "JMX", + "core-monitor", + "dashboard", + "monitoring", + "control panel", + "@types/mongodb", + "monk-middleware-cast-ids", + "monk-middleware-fields", + "monk-middleware-handle-callback", + "monk-middleware-options", + "monk-middleware-query", + "monk-middleware-wait-for-connection", + "gitbook-cli", + "gitbook-plugin-anker-enable", + "gitbook-plugin-custom-favicon", + "gitbook-plugin-edit-link", + "gitbook-plugin-github", + "gitbook-plugin-prism", + "monk-middleware-debug", + "commist", + "help-me", + "mqtt-packet", + "worker-timers", + "number-allocator", + "aedes-cli", + "leaked-handles", + "mqtt-connection", + "@esm-bundle/chai", + "mqtt-level-store", + "esbuild-plugin-polyfill-node", + "publish/subscribe", + "@tediousjs/connection-string", + "msnodesql", + "tds", + "node-tds", + "node-sqlserver", + "msnodesqlv8", + "node-mssql", + "@types/statuses", + "headers-polyfill", + "rettime", + "until-async", + "@epic-web/test-server", + "@fastify/websocket", + "@types/json-bigint", + "@types/serviceworker", + "json-bigint", + "page-with", + "append-field", + "fs-temp", + "testdata-w3c-json-form", + "formdata", + "array-union", + "pend", + "release-it-pnpm", + "test report", + "html report", + "json to html", + "karma-story-reporter", + "mezr", + "web-animations-js", + "bin-packing", + "sqlstring", + "timezone-mock", + "urun", + "utest", + "sql-escaper", + "aws-ssl-profiles", + "generate-function", + "named-placeholders", + "poku", + "assert-diff", + "eslint-plugin-async-await", + "thenify", + "then", + "bats", + "switcher", + "couchdb", + "fastest-stable-stringify", + "rtl-css-js", + "iconista", + "libreact", + "pico", + "lite", + "in-js", + "styled", + "decorator", + "jsxstyle", + "rule", + "gitcloud", + "hasbin", + "page-icon", + "@types/hasbin", + "@types/page-icon", + "desktop", + "proxy-lib", + "font-finder", + "pbxproj-dom", + "@foxt/js-srp", + "simple-plist", + "ios-device-lib", + "email-validator", + "ios-sim-portable", + "plist-merge-patch", + "@nativescript/hook", + "@nativescript/doctor", + "nativescript-dev-xcode", + "ios-mobileprovision-finder", + "@nstudio/trapezedev-project", + "@rigor789/resolve-package-path", + "@types/plist", + "@types/retry", + "@types/byline", + "@types/pacote", + "@types/tabtab", + "@types/tunnel", + "@types/xml2js", + "@types/archiver", + "@types/qr-image", + "@types/marked-terminal", + "@types/proper-lockfile", + "@types/npmcli__arborist", + "@types/universal-analytics", + "afinn-165", + "afinn-165-financialmarketnews", + "apparatus", + "memjs", + "stopwords-iso", + "wordnet-db", + "browserfs", + "gulp-jasmine-browser", + "pegjs", + "uubench", + "natural language processing", + "artifical intelligence", + "Porter stemmer", + "Lancaster stemmer", + "bigram", + "trigram", + "quadgram", + "ngram", + "stemmer", + "bayes", + "classifier", + "phonetic", + "metaphone", + "inflector", + "Wordnet", + "tf-idf", + "logistic regression", + "doublemetaphone", + "double", + "jaro-winkler distance", + "levenshtein distance", + "string distance", + "part-of-speech tagger", + "Eric Brill", + "Brill tagger", + "sentiment analysis", + "maximum entropy modelling", + "secure-keys", + "nconf-yaml", + "key value store", + "plugabble", + "near social", + "bridge", + "near", + "binary-search-tree", + "exec-time", + "@fig/complete-commander", + "@golevelup/nestjs-discovery", + "nest", + "@postman/tough-cookie", + "chardet", + "liquid-json", + "postman-collection", + "postman-collection-transformer", + "postman-request", + "postman-runtime", + "serialised-error", + "@postman/shipit", + "dockerfile_lint", + "parse-gitignore", + "postman", + "rest-client", + "@apm-js-collab/tracing-hooks", + "@newrelic/security-agent", + "@tyriar/fibonacci-heap", + "import-in-the-middle", + "module-details-from-path", + "require-in-the-middle", + "@aws-sdk/s3-request-presigner", + "@matteo.collina/tspl", + "@newrelic/eslint-config", + "@newrelic/newrelic-oss-cli", + "@newrelic/test-utilities", + "@slack/bolt", + "@smithy/eventstream-codec", + "@smithy/util-utf8", + "git-raw-commits", + "self-cert", + "debugging", + "profiling", + "@panva/hkdf", + "openid-client", + "@edge-runtime/jest-environment", + "@types/nodemailer", + "@types/oauth", + "babel-plugin-jsx-pragmatic", + "babel-preset-preact", + "oauth2", + "nextauth", + "async handler", + "async functions", + "pipe", + "provider", + "TestBed", + "how-to", + "@ant-design/icons-angular", + "localhost", + "tunneling", + "webhook", + "deep-defaults", + "enqueue", + "function-source", + "minstache", + "sliced", + "mocha-generators", + "@nightwatch/chai", + "@nightwatch/html-reporter-template", + "@nightwatch/nightwatch-inspector", + "@types/selenium-webdriver", + "chai-nightwatch", + "devtools-protocol", + "didyoumean", + "nightwatch-axe-verbose", + "stacktrace-parser", + "mochawesome-merge", + "mochawesome-report-generator", + "nightwatchjs", + "selenium", + "webdriver", + "automated-testing", + "@sinonjs/text-encoding", + "@sinonjs/referee", + "jsdom-global", + "mochify", + "proxyquire-universal", + "proxyquireify", + "propagate", + "clang-format", + "n-api", + "napi", + "coffee-coverage", + "grunt-contrib-coffee", + "grunt-include-replace", + "internal", + "check-version-modules", + "used-deps-analyzer", + "container", + "skeleton", + "formate", + "dynamic-dedupe", + "filewatcher", + "tap-xunit", + "reload", + "subdir", + "char-regex", + "emojilib", + "skin-tone", + "sentences-per-line", + "emojis", + "smiley", + "smileys", + "smilies", + "ideogram", + "ideograms", + "fetch-blob", + "chai-iterator", + "stream-consumers", + "eslint-config-digitalbazaar", + "karma-tap-reporter", + "nodejs-websocket", + "worker-loader", + "aes", + "asn", + "asn.1", + "cbc", + "csr", + "des", + "gcm", + "hmac", + "pkcs", + "pki", + "prng", + "rc2", + "rsa", + "sha256", + "sha384", + "sha512", + "tls", + "x.509", + "x509", + "c2dm", + "fcm", + "messaging", + "geocoder", + "geocoding", + "geo", + "maps", + "mapquest", + "agol", + "arcgis", + "tomtom", + "exponential-backoff", + "require-inject", + "high5", + "html-parser", + "html5parser", + "htmljs-parser", + "htmlparser-benchmark", + "mocha-each", + "neutron-html5parser", + "biased-opener", + "strong-data-uri", + "v8-debug", + "v8-profiler", + "http mock", + "growly", + "shellwords", + "nexe", + "notification center", + "mac os x 10.8", + "terminal-notifier", + "windows 8 notification", + "toaster", + "ps-list", + "pty", + "pseudoterminal", + "forkpty", + "openpty", + "@node-red/editor-api", + "@node-red/runtime", + "@node-red/util", + "@node-red/nodes", + "node-red-admin", + "iot", + "sass-graph", + "async-foreach", + "stdout-stream", + "true-case-path", + "unique-temp-dir", + "long-timeout", + "sorted-array-functions", + "recurrent", + "rfc4122", + "fs.watch", + "watchfile", + "ngn", + "daemon", + "event logging", + "elevate", + "sudo", + "@mgcrea/eslint-config-node", + "@tsconfig/node-lts", + "excel", + "xls", + "jQuery", + "jQuery extend", + "inherit", + "combyne", + "clean-for-publish", + "libgit2", + "git2", + "@aws-sdk/client-sesv2", + "libbase64", + "libmime", + "libqp", + "nodemailer-ntlm-auth", + "proxy-test-server", + "Nodemailer", + "pstree.remy", + "undefsafe", + "autoload", + "multimeter", + "node-webkit", + "webkit", + "async-redis", + "express-ipfilter", + "express-ws", + "json-logic-js", + "json-sql", + "jsonpath-plus", + "line-reader", + "mocker-data-generator", + "node-ipc", + "promise-mysql", + "stjs", + "uuid-random", + "nolang", + "Programming", + "programming language", + "descriptive", + "5GL", + "json schema", + "Mehdi Salartayefeh", + "option parser", + "absolute", + "backslash", + "delimiter", + "file-path", + "forward", + "fp", + "slashes", + "trailing", + "unix", + "urix", + "normalization", + "normalisation", + "simplify", + "trim", + "canonical", + "mouse wheel", + "exit-hook", + "github-url-from-git", + "is-interactive", + "is-scoped", + "issue-regex", + "listr-input", + "new-github-release-url", + "npm-name", + "p-memoize", + "map-obj", + "write-package", + "archy", + "is-cidr", + "libnpmorg", + "libnpmpack", + "libnpmteam", + "fs-minipass", + "npm-profile", + "libnpmsearch", + "@sigstore/tuf", + "libnpmversion", + "@npmcli/config", + "npm-audit-report", + "minipass-pipeline", + "npm-user-validate", + "tiny-relative-date", + "fastest-levenshtein", + "json-parse-even-better-errors", + "@npmcli/git", + "@npmcli/docs", + "@tufjs/repo-mock", + "@npmcli/mock-globals", + "ajv-formats-draft2019", + "package manager", + "giturl", + "throat", + "semver-diff", + "preferred-pm", + "callsite-record", + "rc-config-loader", + "outdated", + "updates", + "updating", + "updater", + "@trivago/prettier-plugin-sort-imports", + "@types/chai-string", + "@types/cli-table", + "@types/ini", + "@types/jsonlines", + "@types/npm-registry-fetch", + "@types/parse-github-url", + "@types/semver-utils", + "@types/update-notifier", + "eslint-config-raine", + "fp-and-or", + "jsonlines", + "prompts-ncu", + "semver-utils", + "typescript-json-schema", + "verdaccio", + "vite-bundle-analyzer", + "vite-node", + "upgrade", + "versions", + "esbuild-node-externals", + "eslint-config-tc", + "eslint-config-typescript-tc", + "npm-package-json-lint-config-tc", + "auditor", + "mutate-fs", + "minipass-fetch", + "minizlib", + "registry", + "string.prototype.padend", + "eslint-config-mysticatea", + "commandline", + "npm-scripts", + "run", + "read-package-json-fast", + "script", + "string convert", + "yarn to npm", + "npm upgrade", + "babel-preset-latest", + "npm-cli", + "are-we-there-yet", + "mocha-jsdom", + "cvss", + "nodesecurity-npm-utils", + "gluegun", + "nuke", + "money", + "percentage", + "a-sync-waterfall", + "asap", + "mocha-phantomjs-core", + "mocha-phantomjs-istanbul", + "module-alias", + "node-libs-browser", + "css4", + "node-machine-id", + "resolve.exports", + "@yarnpkg/parsers", + "lines-and-columns", + "@napi-rs/wasm-runtime", + "Mobile", + "caching-transform", + "istanbul-lib-hook", + "istanbul-lib-processinfo", + "node-preload", + "process-on-spawn", + "spawn-wrap", + "any-path", + "@readme/openapi-parser", + "remove-undefined-objects", + "@readme/oas-examples", + "@types/json-schema-merge-allof", + "@types/memoizee", + "apis", + "openapi initiative", + "openapi specification", + "openapi spec", + "openapi document", + "oai", + "@readme/postman-to-openapi", + "@types/swagger2openapi", + "prollyfill", + "gulp-exec", + "@pkgjs/support", + "error-cause", + "globalthis", + "has-tostringtag", + "util.inspect", + "indexof", + "Object.keys", + "@mariocasciaro/benchpress", + "access", + "bean", + "notation", + "segment", + "es-object-atoms", + "Object.assign", + "$.extend", + "_.extend", + "Underscore", + "Object.entries", + "Object.values", + "entries", + "ES8", + "ee-first", + "wrappy", + "@blakeembrey/deque", + "@blakeembrey/template", + "epoll", + "@types/mock-require", + "gpio", + "interrupt", + "raspberry", + "raspi", + "pi", + "beaglebone", + "beaglebone-black", + "default-browser", + "define-lazy-prop", + "is-in-ssh", + "wsl-utils", + "opens", + "launch", + "start", + "xdg-open", + "xdg", + "default", + "urls", + "bath-es5", + "dereference-json-schema", + "axios-mock-adapter", + "json-schema-deref-sync", + "open api", + "computer", + "quadrocopter", + "countrynames", + "hashish", + "last-call-webpack-plugin", + "prelude-ls", + "deep-is", + "levn", + "livescript", + "option parsing", + "stdin-discarder", + "transform-tty", + "sequencify", + "stream-consume", + "sql-ddl-sync", + "sql-query", + "redshift", + "home", + "tmpdir", + "ps1", + "template string", + "template literal", + "styleable", + "scrollbar", + "scrollbars", + "scroll", + "@vscode/vsce", + "yauzl-promise", + "@types/is-ci", + "@types/yauzl-promise", + "limiter", + "vscode", + "addlistener", + "addeventlistener", + "waits", + "resolved", + "race", + "fulfilled", + "concurrency", + "ratelimit", + "fifo", + "invalidate", + "out", + "plunder", + "metadata", + "@pa11y/html_codesniffer", + "eslint-config-pa11y", + "proclaim", + "aria", + "compliance", + "headless", + "htmlcs", + "standards", + "WCAG", + "sigstore", + "npm-registry-mock", + "capture-website", + "filenamify-url", + "unused-filename", + "@types/png.js", + "png.js", + "page", + "screenshots", + "screengrab", + "striptags", + "para", + "server-side", + "idb-keyval", + "react-native-crypto-js", + "@saithodev/semantic-release-backmerge", + "@types/facebook-js-sdk", + "babel-plugin-transform-inline-environment-variables", + "jasmine-spec-reporter", + "jsdoc-babel", + "parse-server", + "vite-plugin-commonjs", + "WHATWG", + "html parser", + "html5 parser", + "html serializer", + "htmlserializer", + "fast-url-parser", + "pause", + "chai-connect-middleware", + "username", + "passport-oauth1", + "base64url", + "exist", + "isabsolute", + "is-absolute", + "zeptomatch", + "@rkusa/linebreak", + "opentype.js", + "jpeg-exif", + "linebreak", + "png-js", + "blob-stream", + "brace", + "pdfjs-dist", + "pdf writer", + "pdf generator", + "call-delayed", + "chai-increasing", + "pg-pool", + "pg-protocol", + "pg-types", + "pgpass", + "pg-cloudflare", + "@cloudflare/vitest-pool-workers", + "@cloudflare/workers-types", + "pg-copy-streams", + "libpq", + "postgre", + "rdbms", + "flow-copy-source", + "npm-watch", + "connect-phonegap", + "phonegap-build", + "phonegap build", + "phonegap/build", + "pinkie-promise", + "denodify", + "atomic-sleep", + "on-exit-leak-free", + "pino-abstract-transport", + "pino-std-serializers", + "quick-format-unescaped", + "real-require", + "@pinojs/redact", + "sonic-boom", + "thread-stream", + "@types/flush-write-stream", + "bole", + "fastbench", + "flush-write-stream", + "midnight-smoker", + "pino-pretty", + "steed", + "postinstall", + "lifecycle", + "devpostinstall", + "entry", + "irregular-plurals", + "plurals", + "count", + "irregular", + "noun", + "nouns", + "@pm2/agent", + "@pm2/js-api", + "@pm2/io", + "@pm2/pm2-version-check", + "@pm2/blessed", + "cli-tableau", + "fclone", + "pidusage", + "pm2-axon", + "pm2-axon-rpc", + "pm2-deploy", + "pm2-multimeter", + "vizion", + "logs", + "kraken", + "load balancer", + "lb", + "load-balancer", + "kubernetes", + "k8s", + "pm2-docker", + "runtime", + "graceful", + "node-pm2", + "production", + "keymetrics", + "node.js monitoring", + "strong-pm", + "supervisord", + "pm2.io", + "ghost production", + "process manager", + "probes", + "keep process alive", + "process configuration", + "clustering", + "cluster cli", + "dev ops", + "tap-dot", + "PNG", + "js-png", + "node-png", + "png-parse", + "pnpm10", + "dependency manager", + "hardlinks", + "prune", + "rapid", + "symlinks", + "uninstall", + "poe", + "economy", + "ninja", + "poe.ninja", + "poe economy", + "path of exile", + "path of exile economy", + "path of exile ninja", + "poe economy api", + "path of exile api", + "poe.watch api", + "poe.ninja api", + "babel-plugin-preval", + "pushstate-server", + "tsgen", + "glamor", + "inline-styles", + "color manipulate", + "color manipulation", + "curried color manipulation", + "@popperjs/bundle", + "@popperjs/eslint-config-popper", + "@popperjs/test", + "@popperjs/test-utils", + "nuget-publish", + "popperjs", + "position", + "attached", + "ports", + "source map", + "manipulation", + "jison-gho", + "calculation", + "calc", + "postcss-reporter", + "read-cache", + "eslint-config-problems", + "@csstools/utilities", + "comma", + "hsl", + "hsla", + "hwb", + "rgba", + "caniuse-api", + "@types/caniuse-api", + "pixrem", + "pleeease-filters", + "postcss-apply", + "postcss-attribute-case-insensitive", + "postcss-color-function", + "postcss-color-gray", + "postcss-color-hex-alpha", + "postcss-color-hsl", + "postcss-color-hwb", + "postcss-color-rebeccapurple", + "postcss-color-rgb", + "postcss-color-rgba-fallback", + "postcss-font-family-system-ui", + "postcss-font-variant", + "postcss-image-set-polyfill", + "postcss-initial", + "postcss-media-minmax", + "postcss-pseudo-class-any-link", + "postcss-pseudoelements", + "postcss-replace-overflow-wrap", + "postcss-selector-matches", + "postcss-selector-not", + "cssrecipes-custom-media-queries", + "cssrecipes-defaults", + "cssrecipes-grid", + "cssrecipes-utils", + "cssrecipes-vertical-rhythm", + "eslint-config-i-am-meticulous", + "isogram", + "markdown-it-toc-and-anchor", + "metalsmith-collections", + "metalsmith-filenames", + "metalsmith-md", + "metalsmith-react", + "metalsmith-rename", + "metalsmith-rss", + "metalsmith-url", + "metalsmith-watch", + "nano-logger", + "npmpub", + "postcss-browser-reporter", + "react-svg-inline", + "to-slug-case", + "webpack-nano-logs", + "cssnext", + "@csstools/cascade-layer-name-parser", + "at-rule", + "atrule", + "csswg", + "media", + "queries", + "declarative", + "selectors", + "empty", + "at-rules", + "@keyframes", + "@counter-style", + "flexbugs", + "flex", + "postcss-less", + "postcss-styl", + "quickapp", + "PHP", + "sss", + "image-set", + "node modules", + "postcssrc", + "postcss.config.js", + "midas", + "postcss-short", + "postcss-dark-theme-class", + "cssnano-utils", + "font-family", + "font-weight", + "@types/cssesc", + "css-modules", + "@csstools/selector-resolve-nested", + "atrules", + "children", + "nestings", + "@csstools/normalize.css", + "postcss-browser-comments", + "sanitize.css", + "@csstools/postcss-tape", + "normalizes", + "fixes", + "@csstools/postcss-alpha-function", + "@csstools/postcss-color-function", + "@csstools/postcss-color-function-display-p3-linear", + "@csstools/postcss-color-mix-function", + "@csstools/postcss-color-mix-variadic-function-arguments", + "@csstools/postcss-content-alt-text", + "@csstools/postcss-contrast-color-function", + "@csstools/postcss-exponential-functions", + "@csstools/postcss-font-format-keywords", + "@csstools/postcss-gamut-mapping", + "@csstools/postcss-gradients-interpolation-method", + "@csstools/postcss-hwb-function", + "@csstools/postcss-ic-unit", + "@csstools/postcss-initial", + "@csstools/postcss-light-dark-function", + "@csstools/postcss-logical-float-and-clear", + "@csstools/postcss-logical-overflow", + "@csstools/postcss-logical-overscroll-behavior", + "@csstools/postcss-logical-resize", + "@csstools/postcss-logical-viewport-units", + "@csstools/postcss-media-minmax", + "@csstools/postcss-media-queries-aspect-ratio-number-values", + "@csstools/postcss-mixins", + "@csstools/postcss-nested-calc", + "@csstools/postcss-normalize-display-values", + "@csstools/postcss-oklab-function", + "@csstools/postcss-position-area-property", + "@csstools/postcss-property-rule-prelude-list", + "@csstools/postcss-random-function", + "@csstools/postcss-relative-color-syntax", + "@csstools/postcss-scope-pseudo-class", + "@csstools/postcss-sign-functions", + "@csstools/postcss-stepped-value-functions", + "@csstools/postcss-syntax-descriptor-syntax-production", + "@csstools/postcss-system-ui-font-family", + "@csstools/postcss-text-decoration-shorthand", + "@csstools/postcss-trigonometric-functions", + "@csstools/postcss-unset-value", + "css-blank-pseudo", + "css-has-pseudo", + "css-prefers-color-scheme", + "postcss-clamp", + "postcss-dir-pseudo-class", + "postcss-double-position-gradients", + "postcss-focus-within", + "postcss-gap-properties", + "postcss-lab-function", + "postcss-logical", + "postcss-overflow-shorthand", + "postcss-page-break", + "postcss-place", + "lists", + "postcss-syntax", + "@jsopen/objects", + "doublylinked", + "lightning-pool", + "postgres-bytea", + "power-tasks", + "putil-promisify", + "putil-varhelpers", + "transformations", + "processor", + "ltgt", + "vuvuzela", + "spark-md5", + "level-codec", + "fetch-cookie", + "double-ended-queue", + "level-write-stream", + "empower", + "power-assert-formatter", + "universal-deep-strict-equal", + "dereserve", + "licensify", + "package-json-filterify", + "precommit", + "@actions/github", + "@actions/glob", + "babel-plugin-transform-rename-properties", + "errorstacks", + "kolorist", + "virtual dom", + "dom diff", + "binary-searching", + "jest-light-runner", + "jest-specific-snapshot", + "@vue/language-plugin-pug", + "prettier-plugin", + "imports", + "organize-imports", + "glob-fs", + "humanized", + "si", + "locale", + "localized", + "renderkid", + "jitter", + "exception", + "error-handling", + "parse-ms", + "milliseconds", + "period", + "hrtime", + "@pkgr/core", + "mercurial", + "hg", + "vcs", + "@prisma/config", + "@prisma/engines", + "@prisma/studio-core", + "ohash", + "package-up", + "ts-pattern", + "@prisma/dmmf", + "line-replace", + "@prisma/debug", + "openapi-fetch", + "xdg-app-paths", + "@libsql/client", + "@prisma/client", + "@prisma/migrate", + "get-port-please", + "@prisma/generator", + "@prisma/internals", + "checkpoint-client", + "openapi-typescript", + "@prisma/fetch-engine", + "@prisma/get-platform", + "@types/better-sqlite3", + "@prisma/adapter-libsql", + "@prisma/credentials-store", + "@prisma/management-api-sdk", + "@prisma/driver-adapter-utils", + "@prisma/client-generator-registry", + "@opentelemetry/context-async-hooks", + "ORM", + "Prisma", + "Prisma CLI", + "prisma2", + "JS", + "TS", + "SQL", + "SQLite", + "Postgres", + "PostgreSQL", + "CockroachDB", + "MySQL", + "MariaDB", + "MSSQL", + "SQL Server", + "SQLServer", + "MongoDB", + "MCP", + "danger", + "docdash", + "gulp-terser", + "regexpp", + "webfont", + "prism", + "node-rest-client", + "URIjs", + "svn", + "customize", + "sisteransi", + "interact", + "uglifyify", + "uglifyjs", + "alpha-sort", + "html-event-attributes", + "mdast-zone", + "svg-element-attributes", + "svg-event-attributes", + "@protobufjs/aspromise", + "@protobufjs/base64", + "@protobufjs/codegen", + "@protobufjs/eventemitter", + "@protobufjs/fetch", + "@protobufjs/float", + "@protobufjs/inquire", + "@protobufjs/path", + "@protobufjs/pool", + "@protobufjs/utf8", + "browserify-wrap", + "git-semver-tags", + "protobuf", + "protocol-buffers", + "serialization", + "@types/q", + "@types/jasminewd2", + "gulp-clang-format", + "natives", + "tslint-eslint-rules", + "vrsource-tslint-rules", + "webdriverjs", + "basic-auth-parser", + "@types/args", + "squid", + "privoxy", + "mod_proxy", + "via", + "x-forwarded-for", + "fill-keys", + "module-not-found-error", + "native-hello-world", + "cp-sugar", + "elegant-status", + "pug-load", + "pug-lexer", + "pug-linker", + "pug-parser", + "pug-filters", + "pug-runtime", + "pug-code-gen", + "pug-strip-comments", + "jstransformer-uglify-js", + "jstransformer-markdown-it", + "tap-bail", + "idn", + "idna", + "dns", + "domain", + "chromium-bidi", + "puppeteer-core", + "typed-query-selector", + "purge", + "fluent", + "qr code", + "@browserify/envify", + "@browserify/uglifyify", + "common-shakeify", + "has-override-mistake", + "unassertify", + "decode-uri-component", + "filter-obj", + "split-on-first", + "param", + "parameter", + "searchparams", + "retape", + "tap-esm", + "synchronous", + "FIFO", + "lifo", + "LIFO", + "work", + "queue js", + "job queue", + "job scheduling", + "task queue", + "ordered", + "iterate", + "linked list", + "dequeue", + "shift", + "item", + "parchment", + "quill-delta", + "@types/highlight.js", + "transpile-webpack-plugin", + "eslint-import-resolver-webpack", + "fuzzysort", + "grunt-search", + "eslint-plugin-json-es", + "@qunitjs/browserstack-runner", + "dom-element-descriptors", + "@types/qunit", + "@release-it-plugins/lerna-changelog", + "qunit-plugin", + "exists-stat", + "js-reporters", + "browserstack-runner", + "testling", + "requestAnimationFrame", + "babel-plugin-import-export-rename", + "envvar", + "sanctuary", + "sanctuary-identity", + "xyz", + "tacit", + "point-free", + "curried", + "fantasy-land", + "words", + "sample", + "timed-out", + "exceptions", + "sentry", + "unpipe", + "@rc-component/father-plugin", + "father-build", + "rc-test", + "react-slider", + "slider", + "react-tooltip", + "@types/responselike", + "react-addon", + "@apollo/react-common", + "@apollo/react-components", + "@apollo/react-hoc", + "@apollo/react-hooks", + "@apollo/react-ssr", + "@restart/ui", + "@restart/hooks", + "uncontrollable", + "prop-types-extra", + "ecosystem-react", + "@icons/material", + "material-colors", + "reactcss", + "@case/eslint-config", + "@storybook/addon-centered", + "babel-plugin-transform-rename-import", + "chai-spies", + "jsx-loader", + "react-context", + "react-mark", + "testdom", + "color picker", + "sketch", + "photoshop", + "html-webpack-tags-plugin", + "copy to clipboard", + "@react-docgen/cli", + "date-fns-tz", + "is-root", + "detect-port-alt", + "@react-dnd/invariant", + "@react-dnd/shallowequal", + "dnd-core", + "@types/doctrine", + "documentation-generation", + "attr-accept", + "file-selector", + "@babel/plugin-proposal-do-expressions", + "@babel/plugin-proposal-logical-assignment-operators", + "@babel/plugin-proposal-pipeline-operator", + "@commitlint/prompt", + "@size-limit/webpack-why", + "imagemin-cli", + "webpack-blocks", + "jest-fetch-mock", + "settle-promise", + "overlay", + "redbox", + "crash", + "react-side-effect", + "eslint-config-nfl", + "karma-chai-sinon", + "karma-html-reporter", + "nfl", + "head", + "title", + "meta", + "noscript", + "jest-fixed-jsdom", + "form-validation", + "enzyme-adapter-react-15", + "react-mount", + "yarn-deduplicate", + "live", + "hot", + "use-sync-external-store", + "@babel/plugin-proposal-async-generator-functions", + "eslint-plugin-jest-dom", + "viewport", + "intersection", + "observer", + "lazy load", + "inview", + "useInView", + "useIntersectionObserver", + "@formatjs/ecma402-abstract", + "@formatjs/icu-messageformat-parser", + "@formatjs/intl", + "intl-messageformat", + "eslint-config-es5", + "rehype-starry-night", + "exenv", + "@webcomponents/custom-elements", + "dialog", + "babel-browser-transform", + "inject-loader", + "isparta-loader", + "karma-jasmine-diff-reporter", + "lodash.range", + "transitiongroup", + "spring", + "tween", + "motion", + "transition", + "nullthrows", + "metro-runtime", + "hermes-compiler", + "metro-source-map", + "flow-enums-runtime", + "@react-native/codegen", + "@react-native/js-polyfills", + "@react-native/gradle-plugin", + "@react-native/assets-registry", + "@react-native/normalize-colors", + "@jest/create-cache-key-function", + "@react-native/virtualized-lists", + "babel-plugin-syntax-hermes-parser", + "@react-native/community-cli-plugin", + "app-framework", + "mobile-development", + "@react-native-community/cli", + "@react-native/eslint-config", + "@react-native/typescript-config", + "react-native-builder-bob", + "react-native-component", + "keychain", + "svg2ttf", + "fontisto", + "evil-icons", + "feather-icons", + "oslllo-svg-fixer", + "svgicons2svgfont", + "simple-line-icons", + "@entypo-icons/core", + "css-social-buttons", + "osx", + "macos", + "@cmfcmf/docusaurus-search-local", + "react-transform-hmr", + "currency", + "number-format", + "require-hijack", + "onclick", + "outside", + "onclickoutside", + "@rollup/plugin-sucrase", + "eslint-plugin-ft-flow", + "hermes-eslint", + "@types/use-sync-external-store", + "matchmediaquery", + "@types/hyphenate-style-name", + "@types/match-media-mock", + "@types/matchmediaquery", + "match-media-mock", + "media queries", + "respond", + "matchMedia", + "wireit", + "premove", + "redux-devtools", + "redux-devtools-dock-monitor", + "redux-devtools-log-monitor", + "combobox", + "multiselect", + "json2mq", + "@playwright/experimental-ct-react", + "foundation-apps", + "slick-carousel", + "why-did-you-update", + "slick", + "carousel", + "Image slider", + "orbit", + "@tippyjs/react", + "@vxna/mini-html-webpack-template", + "clipboard-copy", + "common-dir", + "es6-object-assign", + "function.name-polyfill", + "glogg", + "javascript-stringify", + "jss", + "jss-plugin-camel-case", + "jss-plugin-compose", + "jss-plugin-default-unit", + "jss-plugin-global", + "jss-plugin-isolate", + "jss-plugin-nested", + "listify", + "mini-html-webpack-plugin", + "q-i", + "qss", + "react-docgen-annotation-resolver", + "react-docgen-displayname-handler", + "react-group", + "strip-html-comments", + "type-detect", + "@types/buble", + "@types/copy-webpack-plugin", + "@types/escodegen", + "@types/hash-sum", + "@types/keymirror", + "@types/markdown-to-jsx", + "@types/terser-webpack-plugin", + "@types/type-detect", + "@types/webpack-dev-server", + "deabsdeep", + "deepfreeze", + "dog-names", + "eslint-config-tamia", + "keymirror", + "strip-shebang", + "scalable vector graphics", + "svginjector", + "TapEventPlugin", + "300ms", + "react-testing", + "@4tw/cypress-drag-drop", + "vite-plugin-istanbul", + "toast", + "alert", + "snackbar", + "message", + "commoner", + "jstransform", + "coverify", + "es3ify", + "esprima-fb", + "grunt-jest", + "jasmine-tapreporter", + "populist", + "transition-group", + "transitions", + "react-codemirror", + "eslint-config-react", + "eslint-plugin-relay", + "@babel/preset-stage-2", + "jest-environment-puppeteer", + "@babel/plugin-transform-flow-comments", + "scrolling", + "infinite", + "virtualized", + "fixed", + "es6-module-jstransform", + "@storybook/addon-storysource", + "customize-cra", + "holderjs", + "react-prism", + "esbuild-plugin-alias", + "tap-mocha-reporter", + "line by line", + "repl", + "tiny-invariant", + "@types/esprima", + "flow-parser", + "refactoring", + "pretty-printing", + "prepare", + "change-emitter", + "higher-order", + "microcomponentization", + "composition", + "lister", + "@redis/bloom", + "@redis/client", + "@redis/json", + "@redis/search", + "@redis/time-series", + "@redocly/openapi-core", + "@cfaester/enzyme-adapter-react-18", + "docusaurus-theme-redoc", + "docusaurus-plugin-redoc", + "@docusaurus/theme-common", + "api-doc", + "docusaurus-preset", + "netlify-plugin-cache", + "predictable", + "replay", + "elm", + "just-curry-it", + "reduce-reducers", + "@vitest/coverage-c8", + "eslint-config-unicorn-camelcase", + "flux-standard-action", + "actions", + "insert-line", + "redux-immutable", + "lodash-webpack-plugin", + "@redux-saga/core", + "saga", + "effects", + "side effects", + "thunk", + "redux-middleware", + "ecmarkup", + "gulp-emu", + "gulp-live-server", + "gulp-sequence", + "reflect", + "regenerator", + "abstract", + "is-hidden", + "rehype-plugin", + "is-absolute-url", + "external", + "hast-util-properties-to-mdx-jsx-attributes", + "eslint-config-remcohaszing", + "snapshot-fixtures", + "@nodeutils/defaults-deep", + "@phun-ky/typeof", + "issue-parser", + "wildcard-match", + "@octokit/request-error", + "mentoss", + "mock-stdio", + "remark-preset-webpro", + "distribution", + "intern", + "markdown-extensions", + "unified-args", + "footnote", + "remark-plugin", + "remark-slug", + "mermaid-isomorphic", + "hast-util-from-html-isomorphic", + "mermaidjs", + "remark-comment-config", + "remark-contributors", + "remark-heading-gap", + "remark-license", + "remark-lint-definition-spacing", + "remark-lint-fenced-code-flag", + "remark-lint-file-extension", + "remark-lint-final-definition", + "remark-lint-first-heading-level", + "remark-lint-heading-style", + "remark-lint-no-consecutive-blank-lines", + "remark-lint-no-emphasis-as-heading", + "remark-lint-no-file-name-articles", + "remark-lint-no-file-name-consecutive-dashes", + "remark-lint-no-file-name-irregular-characters", + "remark-lint-no-file-name-mixed-case", + "remark-lint-no-file-name-outer-dashes", + "remark-lint-no-heading-indent", + "remark-lint-no-heading-punctuation", + "remark-lint-no-missing-blank-lines", + "remark-lint-no-multiple-toplevel-headings", + "remark-lint-no-shell-dollars", + "remark-lint-no-table-indentation", + "remark-lint-no-tabs", + "remark-lint-ordered-list-marker-value", + "remark-lint-table-pipe-alignment", + "remark-retext", + "retext-english", + "retext-preset-github", + "remark-lint-correct-media-syntax", + "remark-lint-definition-sort", + "remark-lint-link-title-style", + "remark-lint-maximum-heading-length", + "remark-lint-maximum-line-length", + "remark-lint-mdx-jsx-attribute-sort", + "remark-lint-mdx-jsx-no-void-children", + "remark-lint-mdx-jsx-quote-style", + "remark-lint-mdx-jsx-self-close", + "remark-lint-mdx-jsx-shorthand-attribute", + "remark-lint-mdx-jsx-unique-attribute-name", + "remark-lint-media-style", + "remark-lint-no-duplicate-defined-urls", + "remark-lint-no-duplicate-headings-in-section", + "remark-lint-no-empty-url", + "remark-lint-no-heading-like-paragraph", + "remark-lint-no-hidden-table-cell", + "remark-lint-no-html", + "remark-lint-no-paragraph-content-indent", + "remark-lint-no-reference-like-url", + "remark-lint-no-unneeded-full-reference-image", + "remark-lint-no-unneeded-full-reference-link", + "retext-preset-wooorm", + "wooorm", + "autolinker", + "caseless", + "aws-sign2", + "oauth-sign", + "tunnel-agent", + "forever-agent", + "har-validator", + "is-typedarray", + "http-signature", + "taper", + "karma-cli", + "stealthy-require", + "request-promise-core", + "thenable", + "index.js", + "@typescript-eslint/eslint-plugin-tslint", + "@typescript/analyze-trace", + "eslint-plugin-typescript", + "micro-memoize", + "ResizeObserver", + "path-parse", + "supports-preserve-symlinks-flag", + "copy-dir", + "adjust-sourcemap-loader", + "cls-hooked", + "myrmidon", + "conventional-changelog-eslint", + "eslint-config-incredible", + "eslint-plugin-censor", + "eslint-plugin-no-secrets", + "eslint-plugin-scanjs-rules", + "fatum", + "node-package-tester", + "semantic-release-telegram", + "vesta", + "documentate", + "autodocumentate", + "ewma", + "spdy", + "restify-errors", + "escape-regexp-component", + "watershed", + "restify-clients", + "autocannon-compare", + "DTrace", + "quit", + "shutdown", + "sigterm", + "sigint", + "terminate", + "kill", + "NoSQL", + "reql", + "query language", + "leak", + "deep-copy", + "fast-copy", + "fastest-json-copy", + "nano-copy", + "plain-object-clone", + "deep-clone", + "deepclone", + "deepcopy", + "performant", + "fastclone", + "fastcopy", + "fast-clone", + "fast-deep-clone", + "fast-deep-copy", + "package-json-from-dist", + "rm -rf", + "rm -fr", + "prebuild", + "run-script-os", + "targetpractice", + "Automation", + "mouse", + "pixel", + "recognition", + "autohotkey", + "machine", + "learning", + "@mermaid-js/mermaid-cli", + "@shikijs/vitepress-twoslash", + "@vue/language-server", + "acorn-import-assertions", + "date-time", + "flru", + "npm-audit-resolver", + "wasm-pack", + "bundling", + "rollup-plugin", + "js-cleanup", + "rollup-plugin-jsx", + "sourcemap-validator", + "removal", + "@types/d3-drag", + "@types", + "commenting", + "package-name-regex", + "spdx-expression-validate", + "spdx-satisfies", + "gulp-conventional-changelog", + "rollup-plugin-prettier", + "rollup-plugin-strip-banner", + "browserify-fs", + "buffer-es6", + "process-es6", + "sourceMappingURL", + "@types/find-cache-dir", + "@types/graphlib", + "graphlib", + "rollup-plugin-re", + "@types/d3-array", + "@types/d3-color", + "@types/d3-force", + "@types/d3-hierarchy", + "@types/d3-scale", + "@types/d3-shape", + "visualizer", + "treemap", + "sunburst", + "diagram", + "@ampproject/toolbox-optimizer", + "@babel/plugin-syntax-bigint", + "@capsizecss/metrics", + "@edge-runtime/cookies", + "@edge-runtime/ponyfill", + "@edge-runtime/primitives", + "@napi-rs/triples", + "@next/polyfill-module", + "@next/polyfill-nomodule", + "@next/react-refresh-utils", + "@next/swc", + "@taskr/clear", + "@taskr/esnext", + "@types/amphtml-validator", + "@types/babel__generator", + "@types/ci-info", + "@types/content-disposition", + "@types/express-serve-static-core", + "@types/fresh", + "@types/lodash.curry", + "@types/path-to-regexp", + "@types/platform", + "@types/send", + "@types/text-table", + "@types/ua-parser-js", + "amphtml-validator", + "async-sema", + "cli-select", + "comment-json", + "edge-runtime", + "ignore-loader", + "lodash.curry", + "native-url", + "server-only", + "string-hash", + "taskr", + "unistore", + "watchpack", + "ember-cli-progress", + "rtl", + "ltr", + "run series", + "LINQ", + "FRP", + "Reactive", + "Rx", + "RxJS", + "@angular-devkit/build-optimizer", + "@types/source-map", + "check-side-effects", + "rollup-plugin-alias", + "rollup-plugin-inject", + "tslint-etc", + "tslint-no-toplevel-property-access", + "tslint-no-unused-expression-chai", + "web-streams-polyfill", + "ReactiveX", + "ReactiveExtensions", + "Streams", + "Observables", + "Stream", + "buffer allocate", + "node security", + "uninitialized", + "mock-env", + "dist-tag", + "prepublish", + "@sailshq/lodash", + "@sailshq/router", + "captains-log", + "common-js-file-extensions", + "@sailshq/csurf", + "flaverr", + "i18n-2", + "include-all", + "machine-as-action", + "machinepack-process", + "machinepack-redis", + "merge-defaults", + "merge-dictionaries", + "parley", + "rttc", + "sails-generate", + "sails-stringfile", + "skipper", + "sort-route-addresses", + "whelk", + "machinepack-fs", + "@sailshq/request", + "root-require", + "sails-hook-orm", + "sails-hook-sockets", + "sails.io.js", + "session-file-store", + "mvc", + "web-framework", + "sailsjs", + "sails.js", + "truncate-utf8-bytes", + "mktemp", + "filename", + "parse-srcset", + "eslint-config-apostrophe", + "material-components-web", + "node-sass-glob-importer", + "markdown-model", + "bare-script", + "element-model", + "food", + "drink", + "helpful", + "opensourcesoftware", + "teaching", + "experimentation", + "applications", + "ec", + "ecdh", + "ecdsa", + "seed", + "@bazel/runfiles", + "@semantic-release/error", + "aggregate-error", + "env-ci", + "find-versions", + "git-log-parser", + "import-from-esm", + "p-each-series", + "file-url", + "mockserver-client", + "p-retry", + "stream-buffers", + "author", + "@fluentui/react-component-event-listener", + "@fluentui/react-component-ref", + "@semantic-ui-react/event-stack", + "keyboard-key", + "@artsy/fresnel", + "@babel/standalone", + "@percy/cli", + "@percy/cypress", + "anchor-js", + "babel-plugin-filter-imports", + "babel-plugin-transform-react-handled-props", + "babel-plugin-universal-import", + "chai-enzyme", + "react-ace", + "react-codesandboxer", + "react-source-render", + "react-static", + "react-static-routes", + "react-universal-component", + "satisfied", + "semantic-ui-css", + "ta-scripts", + "terser-webpack-plugin-legacy", + "eslint-config-standard-jsx", + "standard-engine", + "bikeshed", + "semicolon", + "@hapi/joi", + "eraro", + "fast-safe-stringify", + "gate-executor", + "gubu", + "jsonic", + "lodash.defaultsdeep", + "optioner", + "ordu", + "patrun", + "rolling-stats", + "seneca-transport", + "use-plugin", + "@seneca/test-plugin", + "bench", + "gex", + "lab-transform-typescript", + "seneca-entity", + "seneca-error-test", + "seneca-joi", + "seneca-promisify", + "summary", + "micro-service", + "micro-services", + "micro service", + "minimum", + "viable", + "product", + "Sentimental", + "nlp", + "wkx", + "dottie", + "sequelize-pool", + "toposort-class", + "retry-as-promised", + "ibm_db", + "mariadb", + "p-props", + "p-settle", + "node-hook", + "pg-hstore", + "chai-datetime", + "snowflake-sdk", + "@octokit/types", + "js-combinatorics", + "esdoc-standard-plugin", + "esdoc-inject-style-plugin", + "esdoc-ecmascript-proposal-plugin", + "semantic-release-fail-on-major-bump", + "db2", + "snowflake", + "object relational mapper", + "@serialport/stream", + "@serialport/binding-mock", + "@serialport/bindings-cpp", + "@serialport/parser-ready", + "@serialport/parser-regex", + "@serialport/parser-cctalk", + "@serialport/parser-readline", + "@serialport/parser-delimiter", + "@serialport/parser-byte-length", + "@serialport/parser-spacepacket", + "@serialport/parser-slip-encoder", + "@serialport/parser-packet-length", + "@serialport/parser-inter-byte-timeout", + "ccTalk", + "com port", + "COM", + "data logging", + "hardware", + "modem", + "nodebots", + "RFID", + "sensor", + "serial port", + "sms gateway", + "sms", + "UART", + "update-check", + "@zeit/schemas", + "is-port-reachable", + "@vercel/style-guide", + "@types/serve-handler", + "temp-path", + "favicon", + "@serverless/utils", + "@commitlint/cz-commitlint", + "@serverless/test", + "serverless", + "serverless plugins", + "aws lambda", + "amazon web services", + "serverless.com", + "@aws-cdk/aws-lambda-python-alpha", + "@aws-sdk/client-dynamodb", + "@aws-sdk/client-eventbridge", + "@aws-sdk/client-lambda", + "@aws-sdk/client-sns", + "@aws-sdk/client-sqs", + "@aws-sdk/client-sts", + "@aws-sdk/lib-dynamodb", + "@aws-sdk/util-dynamodb", + "aws-cdk-lib", + "aws-iot-device-sdk", + "caporal", + "json-format-highlight", + "@types/aws-iot-device-sdk", + "@types/aws4", + "esbuild-runner", + "jsii", + "jsii-diff", + "jsii-docgen", + "jsii-pacmak", + "eventbridge", + "flow-remove-types", + "isequalwith", + "@img/colour", + "emnapi", + "exif-reader", + "@cpplint/cli", + "@emnapi/runtime", + "@img/sharp-libvips-dev", + "@img/sharp-libvips-win32-x64", + "@img/sharp-libvips-dev-wasm32", + "@img/sharp-libvips-win32-ia32", + "@img/sharp-libvips-win32-arm64", + "dzi", + "thumbnail", + "libvips", + "vips", + "quote", + "shelljs-changelog", + "shelljs-release", + "travis-check-changes", + "makefile", + "clean-publish", + "short", + "tiny", + "bitly", + "shorten", + "tinyid", + "should-equal", + "should-format", + "should-type", + "should-type-adaptors", + "should-util", + "eslint-config-shouldjs", + "grunt-endline", + "quiet-grunt", + "semver-sort", + "shelljs-plugin-open", + "transforms", + "@kwsites/file-exists", + "@kwsites/promise-deferred", + "@kwsites/promise-result", + "@simple-git/babel-config", + "source control", + "custom-event", + "js-correct-lockfile", + "rollup-plugin-analyzer", + "eslint-config-important-stuff", + "@sinonjs/samsam", + "@sinonjs/eslint-plugin-no-prototype-methods", + "@studio/changes", + "esbuild-plugin-istanbul", + "clock", + "vendor", + "mocks-and-spies", + "crypt3", + "fs-ext", + "express-json5", + "render-readme", + "sinopia-htpasswd", + "browserify-handlebars", + "@polka/url", + "totalist", + "bytes-iec", + "nanospinner", + "budget", + "performance budget", + "file size", + "directory size", + "get size", + "qpass", + "amazon-cognito-identity-js", + "basic-node-server", + "skapi", + "seperator", + "is-fullwidth-code-point", + "random-item", + "get-folder-size", + "js-extend", + "math-sum", + "prettier-bytes", + "tablify", + "slow", + "github-changes", + "urlify", + "standard-json", + "pretty output", + "snazzy standard", + "standard pretty", + "stylish for standard", + "stylish formatter", + "stylish reporter", + "stylish standard", + "axios-ntlm", + "xml-crypto", + "@types/sax", + "base64id", + "socket.io-adapter", + "io", + "@socket.io/component-emitter", + "eventsource", + "sockjs", + "separated", + "@anvilco/apollo-server-plugin-introspection-metadata", + "@graphql-tools/load-files", + "@graphql-tools/merge", + "@graphql-tools/utils", + "graphql-scalars", + "json-stringify-pretty-compact", + "microfiber", + "bdd-lazy-var", + "introspection", + "introspection-query", + "string-to-stream", + "binary-split", + "callback-stream", + "gulp-benchmark", + "imageinfo", + "prettydiff", + "sprity-css", + "sprity-lwip", + "object-stream", + "through2-spy", + "sprites", + "coordinates", + "css-sprite", + "asn1", + "bcrypt-pbkdf", + "integrity", + "subresource integrity", + "sri", + "sri hash", + "sri string", + "sri generator", + "encrypt", + "st", + "firestore", + "shuruhatik", + "long-stack-traces", + "version-guard", + "run-parallel-limit", + "conventional-changelog-config-spec", + "dotgitignore", + "stringify-package", + "std-mocks", + "recommended", + "check-more-types", + "lazy-ass", + "ban-sensitive-files", + "deps-ok", + "dont-crack", + "git-issues", + "pre-git", + "simple-commit-message", + "winser", + "modern-syslog", + "etsy", + "metric", + "aggregation", + "@vitest/expect", + "@storybook/global", + "store2", + "exsolve", + "empathic", + "picoquery", + "modern-tar", + "fetch-retry", + "@types/npmlog", + "@vitest/utils", + "launch-editor", + "unique-string", + "@vitest/mocker", + "bundle-require", + "flush-promises", + "@yarnpkg/libzip", + "browser-dtector", + "react-inspector", + "@react-aria/tabs", + "deep-object-diff", + "@react-aria/utils", + "@polka/compression", + "@types/detect-port", + "@ngard/tiny-isequal", + "@react-aria/toolbar", + "@react-stately/tabs", + "@react-types/shared", + "@storybook/docs-mdx", + "get-npm-tarball-url", + "use-resize-observer", + "@radix-ui/react-slot", + "@react-aria/landmark", + "@react-aria/overlays", + "@types/pretty-hrtime", + "@discoveryjs/json-ext", + "lazy-universal-dotenv", + "react-transition-state", + "@react-stately/overlays", + "@react-aria/interactions", + "react-syntax-highlighter", + "@radix-ui/react-scroll-area", + "@devtools-ds/object-inspector", + "@types/react-syntax-highlighter", + "@aw-web-design/x-default-browser", + "@fal-works/esbuild-plugin-global-externals", + "design-systems", + "component-testing", + "@glen/jest-raw-loader", + "@storybook/addon-onboarding", + "@storybook/addon-storyshots", + "@storybook/addon-storyshots-puppeteer", + "@storybook/blocks", + "@storybook/test", + "eslint-config-torchbox", + "storybookjs", + "patternlab", + "django", + "django-pattern-library", + "django-templates", + "jinja2", + "findit2", + "inside", + "funsert", + "into-stream", + "Assert", + "music-metadata", + "livestream", + "livestreaming", + "gulp-rimraf", + "string.js", + "stringjs", + "S", + "s", + "codsen-utils", + "ranges-apply", + "ranges-push", + "string-left-right", + "ast-monkey-traverse", + "ranges-invert", + "jsp", + "mixed", + "stri", + "xhtml", + "get-east-asian-width", + "visual", + "columns", + "fullwidth", + "full-width", + "wcswidth", + "full", + "cjk", + "chinese", + "japanese", + "korean", + "fixed-width", + "east-asian-width", + "undici-types", + "payment processing", + "credit cards", + "generator-loopback", + "loopback-sdk-angular-cli", + "nodefly-register", + "strong-agent", + "strong-arc", + "strong-build", + "strong-deploy", + "strong-mesh-models", + "strong-registry", + "strong-start", + "strong-supervisor", + "core-util-is", + "strong-debugger", + "strong-swagger-ui", + "swagger-ui", + "utf-8-validate", + "LoopBack", + "Platform", + "alerts", + "event loop", + "heroku", + "master", + "metrics", + "nodeops", + "npmrc", + "openshift", + "ops", + "pm", + "response", + "slc", + "slowest functions", + "strong-cli", + "strong-cluster-control", + "strongops", + "upstart", + "@bundled-es-modules/deepmerge", + "@bundled-es-modules/glob", + "@bundled-es-modules/memfs", + "@zip.js/zip.js", + "path-unified", + "@esm-bundle/chai-as-promised", + "@rollup/browser", + "@shoelace-style/shoelace", + "@web/test-runner-commands", + "hanbi", + "jsdoc-escape-at", + "jsdoc-tsimport-plugin", + "starlight-links-validator", + "style dictionary", + "dictionary", + "Android", + "@types/stylis", + "css-to-react-native", + "@types/js-beautify", + "@types/react-frame-component", + "@types/shallowequal", + "react-frame-component", + "stylis-plugin-rtl", + "ts-toolbelt", + "stylis-rule-sheet", + "zeit", + "hack", + "hacks", + "globjoin", + "mathml-tag-names", + "svg-tags", + "@changesets/get-github-info", + "@stylelint/prettier-config", + "@stylelint/remark-preset", + "@types/balanced-match", + "@types/file-entry-cache", + "@types/global-modules", + "@types/globjoin", + "@types/imurmurhash", + "@types/postcss-less", + "@types/svg-tags", + "eslint-config-stylelint", + "jest-preset-stylelint", + "postcss-sass", + "stylelint-config", + "shortcss", + "css-values", + "babel-register-ts", + "stylelint-plugin", + "delaration-strict-value", + "keyword", + "z-index", + "postcss-sorting", + "eslint-config-hudochenkov", + "postcss-styled-syntax", + "prettier-config-hudochenkov", + "postcss-media-query-parser", + "postcss-resolve-nested-selector", + "github-contributors-list", + "bootstrap-styl", + "cookiejar", + "should-http", + "tinyify", + "frisbee", + "super", + "promised", + "supports", + "capability", + "truecolor", + "16m", + "esrap", + "zimmerframe", + "@types/sade", + "vscode-languageserver", + "vscode-languageserver-protocol", + "svelte2tsx", + "svelte-language-server", + "@kiwi/eslint-config", + "@kiwi/prettier-config", + "@types/pug", + "postcss-easy-import", + "prettysize", + "@resvg/resvg-js", + "playwright-chromium", + "eslint-plugin-jest-formatting", + "sw-precache", + "git-release-notes", + "precache", + "tape-promise", + "autogen", + "promise.any", + "multilang-extract-comments", + "@readme/eslint-config", + "readmeio", + "swagger-nestjs", + "swagger-templates", + "swagger UI", + "istanbul-badges-readme", + "nodelint", + "still", + "mocha-phantomjs", + "travis-cov", + "jinja", + "swipe", + "framework7", + "gallery", + "slideshow", + "http-response-object", + "sync-rpc", + "then-request", + "flowgen2", + "system information", + "sysinfo", + "freebsd", + "openbsd", + "netbsd", + "cpu", + "cpuload", + "physical cores", + "logical cores", + "cores", + "socket type", + "fsstats", + "diskio", + "block devices", + "netstats", + "network interfaces", + "network connections", + "network stats", + "iface", + "printer", + "processes", + "users", + "internet", + "battery", + "docker stats", + "docker processes", + "graphic card", + "graphic controller", + "gpu", + "smart", + "disk layout", + "audio", + "bluetooth", + "wifi", + "wifinetworks", + "virtual box", + "virtualbox", + "vm", + "BIOS", + "chassis", + "symbol-es6", + "@jsenv/file-size-impact", + "construct-style-sheets-polyfill", + "hase", + "draht", + "limes", + "lusca", + "partof", + "timer2", + "uuidv4", + "crypto2", + "nocache", + "datasette", + "json-lines", + "processenv", + "stethoskop", + "flaschenpost", + "commands-events", + "nodeenv", + "roboter", + "assertthat", + "json-lines-client", + "cqs", + "cqrs", + "@codspeed/vitest-plugin", + "className", + "classList", + "override", + "@tailwindcss/oxide", + "@tapjs/after", + "@tapjs/after-each", + "@tapjs/asserts", + "@tapjs/before", + "@tapjs/before-each", + "@tapjs/chdir", + "@tapjs/core", + "@tapjs/filter", + "@tapjs/fixture", + "@tapjs/intercept", + "@tapjs/mock", + "@tapjs/node-serialize", + "@tapjs/run", + "@tapjs/snapshot", + "@tapjs/spawn", + "@tapjs/stdin", + "@tapjs/test", + "@tapjs/typescript", + "@tapjs/worker", + "resolve-import", + "tapjs", + "tapjs plugin", + "tap-out", + "tapes", + "@ljharb/resumer", + "@ljharb/through", + "array.prototype.every", + "dotignore", + "has-dynamic-import", + "ecstatic", + "npm-run-posix-or-windows", + "harness", + "chownr", + "yallist", + "@isaacs/fs-minipass", + "chmodr", + "events-to-array", + "brittle", + "b4a", + "streamx", + "fast-fifo", + "actor system", + "DDD", + "actor-system", + "front end", + "back end", + "@parcel/packager-ts", + "@parcel/transformer-typescript-types", + "cz-format-extension", + "telegram", + "telegram-api", + "telegram-client-api", + "tdlib", + "tglib", + "node-addon", + "tempdir", + "tmpfile", + "unique", + "seventh", + "lazyness", + "tree-kit", + "chroma-js", + "string-kit", + "nextgen-events", + "@cronvel/get-pixels", + "256 colors", + "true color", + "input field", + "gpm", + "screenbuffer", + "textbuffer", + "32-bit", + "charm", + "resumer", + "visualwidth", + "80s", + "ibm", + "@jridgewell/source-map", + "@ls-lint/ls-lint", + "astring", + "es8", + "@types/uglify-js", + "@test-runner/core", + "@test-runner/default-view", + "@test-runner/live-view", + "@test-runner/oneline-view", + "@test-runner/tom", + "multiline-ts", + "spawn-process", + "only-allow", + "sinon-assert-stub", + "sinon-mocha-test", + "unlinted", + "example", + "@devexpress/bin-v8-flags-filter", + "@devexpress/callsite-record", + "bowser", + "chrome-remote-interface", + "device-specs", + "elegant-spinner", + "get-os-info", + "import-lazy", + "is-podman", + "log-update-async-hook", + "moment-duration-format-commonjs", + "os-family", + "pinkie", + "promisify-event", + "read-file-relative", + "replicator", + "testcafe-browser-tools", + "testcafe-hammerhead", + "testcafe-legacy-api", + "testcafe-reporter-json", + "testcafe-reporter-list", + "testcafe-reporter-minimal", + "testcafe-reporter-spec", + "testcafe-reporter-xunit", + "testcafe-selector-generator", + "time-limit-promise", + "unquote", + "url-to-options", + "@devexpress/gulp-qunit-harness", + "@ffprobe-installer/ffprobe", + "@testcafe/publish-please", + "@types/callsite", + "@types/dedent", + "@types/useragent", + "browserstack-connector", + "caller", + "dom-walk", + "eslint-plugin-hammerhead", + "express-ntlm", + "gulp-clone", + "gulp-ll-next", + "gulp-mocha-simple", + "gulp-step", + "mocha-reporter-spec-with-retries", + "openssl-self-signed-certificate", + "recursive-copy", + "testcafe-browser-provider-browserstack", + "automated", + "QA", + "@types/dockerode", + "docker-compose", + "properties-reader", + "ssh-remote-port-forward", + "@types/async-lock", + "@types/properties-reader", + "@types/tar-fs", + "stringify-object-es5", + "codeclimate-test-reporter", + "cross-conf-env", + "headerify", + "is-number", + "teenytest", + "teenytest-promise", + "test double", + "fireworm", + "printf", + "spawn-args", + "styled_string", + "bluebird-retry", + "chai-shallow-deep-equal", + "saucie", + "eslint-config-mdcs", + "jpeg-js", + "three.js", + "3d", + "virtual-reality", + "augmented-reality", + "webgl", + "webgl2", + "webaudio", + "webgpu", + "webxr", + "get-port-cli", + "node-stdlib-browser", + "user-streams", + "hundreds", + "polendina", + "stream-spigot", + "streams2", + "unexpand", + "homedir", + "tilde", + "collapse", + "number-is-nan", + "profile", + "stats", + "bee-dnd", + "bee-tag", + "bee-form", + "bee-icon", + "bee-rate", + "bee-step", + "bee-tabs", + "bee-tile", + "bee-tree", + "bee-affix", + "bee-alert", + "bee-badge", + "bee-label", + "bee-menus", + "bee-modal", + "bee-panel", + "bee-radio", + "bee-table", + "bee-anchor", + "bee-button", + "bee-drawer", + "bee-layout", + "bee-locale", + "bee-navbar", + "bee-select", + "bee-slider", + "bee-switch", + "bee-upload", + "bee-animate", + "bee-backtop", + "bee-loading", + "bee-message", + "bee-overlay", + "bee-popover", + "bee-svgicon", + "bee-tooltip", + "bee-calendar", + "bee-carousel", + "bee-cascader", + "bee-checkbox", + "bee-collapse", + "bee-dropdown", + "bee-timeline", + "bee-transfer", + "bee-clipboard", + "bee-breadcrumb", + "bee-datepicker", + "bee-form-group", + "bee-pagination", + "bee-popconfirm", + "bee-timepicker", + "bee-transition", + "bee-colorpicker", + "bee-input-group", + "bee-page-layout", + "bee-tree-select", + "bee-autocomplete", + "bee-button-group", + "bee-complex-grid", + "bee-form-control", + "bee-input-number", + "bee-notification", + "bee-progress-bar", + "bee-search-panel", + "bee-loading-state", + "bee-input-group-addon", + "gulp-cleancss", + "gulp-css-wrap", + "tinper-bee-core", + "less-plugin-inline-urls", + "tinper", + "bee", + "tinylibs", + "@deno/shim-deno-test", + "tinycolor", + "worker threads", + "thread pool", + "method", + "@types/react-native-vector-icons", + "pushalert", + "react-native toast", + "react-native-toastify", + "toastify", + "react-native-notification", + "expo", + "Typescript", + "node-resemble-js", + "processmd", + "of", + "tldts", + "set-cookie", + "RFC6265", + "RFC2965", + "tinytim", + "trace", + "typedarray.prototype.slice", + "forEach", + "html-select", + "html-tokenize", + "aggregate", + "bs-logger", + "make-error", + "babel-preset-es2016", + "typescript-loader", + "migrate", + "migration", + "migrations", + "cli-tool", + "@ts-morph/common", + "code-block-writer", + "static analysis", + "code refactor", + "create-require", + "@tsconfig/node10", + "@tsconfig/node12", + "@tsconfig/node14", + "v8-compile-cache-lib", + "@cspotcode/source-map-support", + "dprint", + "@swc/wasm", + "ntypescript", + "util.promisify", + "fast-json-patch", + "omit-deep", + "power-assign", + "bre", + "rete", + "rule engine", + "rules engine", + "javascript rule engine", + "js rule engine", + "inference system", + "@types/strip-bom", + "@tsd/typescript", + "eslint-config-xo-typescript", + "typedefs", + "typedefinitions", + "jsonc-simple-parser", + "polite-json", + "sync-content", + "Microsoft", + "codelyzer", + "tslint-divid", + "@types/make-dir", + "tslint-immutable", + "tslint-misc-rules", + "tslint-microsoft-contrib", + "tslint-consistent-codestyle", + "ts-lint", + "typescript-tslint-plugin", + "fix-dts-default-cjs-exports", + "joycon", + "ts-essentials", + "typescript runner", + "@mixmark-io/domino", + "turndown-attendant", + "grunt-mocha", + "grunt-markdown", + "grunt-component-io", + "grunt-push-release", + "grunt-regex-replace", + "jshint-path-reporter", + "mocha-unfunk-reporter", + "grunt-concat-sourcemap", + "tap-browser-color", + "tweetnacl-util", + "curve25519", + "ed25519", + "nacl", + "poly1305", + "public", + "salsa20", + "signatures", + "twemoji-parser", + "DOM", + "Twitter", + "type-coverage-core", + "tagged-tag", + "@typescript/vfs", + "generics", + "media-typer", + "checking", + "@gerrit0/mini-shiki", + "@material/material-color-utilities", + "typedoc-theme", + "typedoc-plugin", + "material-design", + "material-3", + "typedocplugin", + "JsDocs", + "cli-prompt", + "concatenate", + "ebook", + "pandoc", + "kindlegen", + "latex", + "@types/mongoose", + "mongodb-memory-server-global", + "mongoose-findorcreate", + "prettier-tslint", + "sql-highlight", + "@sqltools/formatter", + "gulpclass", + "@types/sha.js", + "@sap/hana-client", + "@types/gulp-rename", + "standard-changelog", + "@google-cloud/spanner", + "@types/gulp-sourcemaps", + "@dprint/formatter", + "@esfx/canceltoken", + "@dprint/typescript", + "azure-devops-node-api", + "monocart-coverage-reports", + "mocha-fivemat-progress-reporter", + "eslint-formatter-autolinkable-stylish", + "commandpost", + "@types/power-assert", + "intelli-espower-loader", + "@types/postcss-modules-local-by-default", + "@types/postcss-modules-scope", + "@types/icss-utils", + "@types/postcss-modules-extract-imports", + "@types/reserved-words", + "jest-environment-node-single-context", + "postcss-import-sync2", + "sass-svg", + "promise-finally", + "typings-core", + "tslint-config-standard", + "definition", + "ecma", + "jsmin", + "random-bytes", + "@uiw/formatter", + "@uiw/react-affix", + "@uiw/react-alert", + "@uiw/react-auto-link", + "@uiw/react-avatar", + "@uiw/react-back-top", + "@uiw/react-badge", + "@uiw/react-breadcrumb", + "@uiw/react-button-group", + "@uiw/react-calendar", + "@uiw/react-card", + "@uiw/react-carousel", + "@uiw/react-cascader", + "@uiw/react-checkbox", + "@uiw/react-collapse", + "@uiw/react-copy-to-clipboard", + "@uiw/react-date-input", + "@uiw/react-date-picker", + "@uiw/react-descriptions", + "@uiw/react-divider", + "@uiw/react-drawer", + "@uiw/react-dropdown", + "@uiw/react-empty", + "@uiw/react-file-input", + "@uiw/react-form", + "@uiw/react-grid", + "@uiw/react-layout", + "@uiw/react-list", + "@uiw/react-loader", + "@uiw/react-menu", + "@uiw/react-message", + "@uiw/react-modal", + "@uiw/react-month-picker", + "@uiw/react-notify", + "@uiw/react-pagination", + "@uiw/react-pin-code", + "@uiw/react-popover", + "@uiw/react-portal", + "@uiw/react-progress", + "@uiw/react-radio", + "@uiw/react-rate", + "@uiw/react-search-select", + "@uiw/react-search-tree", + "@uiw/react-select", + "@uiw/react-slider", + "@uiw/react-split", + "@uiw/react-steps", + "@uiw/react-switch", + "@uiw/react-table", + "@uiw/react-tabs", + "@uiw/react-tag", + "@uiw/react-textarea", + "@uiw/react-time-picker", + "@uiw/react-tooltip", + "@uiw/react-transfer", + "@uiw/react-tree", + "@uiw/react-tree-checked", + "media-query-fns", + "parsel-js", + "citty", + "hookable", + "mkdist", + "untyped", + "pretty-bytes-cli", + "browserify-header", + "@metcoder95/https-pem", + "dns-packet", + "jsondiffpatch", + "bail", + "trough", + "@types/extend", + "retext", + "unique-random", + "non-repeating", + "unist-util", + "xast", + "nlcst", + "visit", + "pullstream", + "match-stream", + "uncompress", + "pupa", + "is-npm", + "fixture-stdout", + "notifier", + "urn", + "uri mutation", + "url mutation", + "uri manipulation", + "url manipulation", + "uri template", + "url template", + "unified resource locator", + "unified resource identifier", + "query string", + "RFC 3986", + "RFC3986", + "RFC 6570", + "RFC6570", + "jquery-plugin", + "ecosystem:jquery", + "sauce-browsers", + "sauce-test", + "formstream", + "ylru", + "@eggjs/oxlint-config", + "@tsconfig/node18", + "@types/busboy", + "@types/proxy", + "@types/selfsigned", + "string.prototype.towellformed", + "urlopen", + "userprofile", + "yamlparser", + "browserscope", + "ua", + "ua-parse", + "ua-parser", + "user agent", + "user-agent", + "is-generator-function", + "is-typed-array", + "is-async-supported", + "rfc9562", + "bundt", + "diffs", + "find-parent-dir", + "githook", + "sanitisation", + "sanitise", + "@vue/shared", + "@vant/use", + "@vant/popperjs", + "@vue/runtime-core", + "diffable-html", + "vitest-canvas-mock", + "@vant/area-data", + "@vant/cli", + "@vant/eslint-config", + "@vant/icons", + "@vercel/go", + "@vercel/h3", + "@vercel/fun", + "@vercel/koa", + "@vercel/blob", + "@vercel/hono", + "@vercel/next", + "@vercel/node", + "@vercel/ruby", + "@vercel/rust", + "@vercel/elysia", + "@vercel/nestjs", + "@vercel/python", + "@vercel/express", + "@vercel/fastify", + "@vercel/redwood", + "@vercel/backends", + "@vercel/hydrogen", + "@vercel/build-utils", + "@vercel/detect-agent", + "@vercel/static-build", + "@vercel/remix-builder", + "epipebomb", + "promisepipe", + "@sentry/node", + "@types/title", + "jaro-winkler", + "@types/chance", + "@types/dotenv", + "@vercel/client", + "pcre-to-regexp", + "git-last-commit", + "@inquirer/search", + "@tootallnate/once", + "http-proxy-node16", + "@inquirer/checkbox", + "@inquirer/password", + "@vercel/frameworks", + "@vercel/error-utils", + "line-async-iterator", + "@vercel/fs-detectors", + "@types/load-json-file", + "@vercel/routing-utils", + "@types/npm-package-arg", + "@types/write-json-file", + "@vercel-internals/types", + "@edge-runtime/node-utils", + "json-parse-better-errors", + "@types/jest-expect-message", + "@vercel-internals/constants", + "@alex_neo/jest-expect-message", + "@types/json-parse-better-errors", + "@vercel-internals/get-package-json", + "extsprintf", + "err", + "create-banner", + "postcss-header", + "viewer", + "viewer.js", + "teex", + "remove-trailing-separator", + "fs-mkdirp-stream", + "is-valid-glob", + "lead", + "resolve-options", + "stream-composer", + "to-through", + "value-or-function", + "vinyl-sourcemap", + "vinyl-adapter", + "classic", + "browser-split", + "ev-store", + "x-is-array", + "x-is-string", + "run-browser", + "vtree", + "artichokie", + "periscopic", + "http-proxy-3", + "strip-literal", + "es-module-lexer", + "postcss-modules", + "@oxc-project/types", + "host-validation-middleware", + "dev-server", + "build-tool", + "dotenv-local", + "slash-path", + "vite-plugin-builder", + "api-router", + "api-routers", + "vite-plugin-api", + "vite-plugin-rest-api", + "express-router", + "file-system-based", + "rest-api", + "api-rest", + "Remix", + "Next.js", + "focus-trap", + "@shikijs/core", + "@shikijs/types", + "@vue/devtools-api", + "@vueuse/integrations", + "@iconify-json/simple-icons", + "@iconify/utils", + "@mdit-vue/shared", + "@mdit-vue/plugin-sfc", + "@mdit-vue/plugin-toc", + "markdown-it-mathjax3", + "@mdit-vue/plugin-title", + "@mdit-vue/plugin-headers", + "@types/markdown-it-emoji", + "@mdit-vue/plugin-component", + "@mdit-vue/plugin-frontmatter", + "@types/markdown-it-container", + "@types/postcss-prefix-selector", + "tinyrainbow", + "@vitest/runner", + "@vitest/snapshot", + "why-is-node-running", + "@vitest/pretty-format", + "birpc", + "local-pkg", + "@edge-runtime/vm", + "@antfu/install-pkg", + "node-localstorage", + "gulp-xo", + "vorpal-less", + "vorpal-repl", + "load-plugins", + "eyes", + "BDD", + "keytar", + "parse-semver", + "typed-rest-client", + "@types/read", + "@types/yazl", + "@types/cheerio", + "@types/url-join", + "@types/clone", + "@types/iconv-lite", + "vscode-oniguruma", + "@vue/runtime-dom", + "eslint-plugin-vue-libs", + "@babel/plugin-syntax-pipeline-operator", + "@intlify/shared", + "@intlify/core-base", + "@intlify/devtools-types", + "intlify", + "@intlify/vue-i18n-loader", + "@types/mini-css-extract-plugin", + "@types/webpack-merge", + "cache-loader", + "markdown-loader", + "pug-plain-loader", + "@vue-macros/common", + "ast-walker-scope", + "muggle-string", + "unplugin-utils", + "@pinia/colada", + "@types/nightwatch", + "@vue/language-core", + "chromedriver", + "faked-promise", + "nightwatch-helpers", + "de-indent", + "todomvc-app-css", + "foreachasync", + "sys", + "walkSync", + "exec-sh", + "outpipe", + "win-spawn", + "encrypted-attr", + "lodash.issafeinteger", + "waterline-schema", + "waterline-utils", + "active-record", + "vargs", + "bdd-with-opts", + "gulp-debug", + "mu2", + "promise-simple", + "sauce-connect-launcher", + "spawn-mocha-parallel", + "sv-selenium", + "web3-eth", + "web3-net", + "web3-core", + "web3-types", + "web3-utils", + "web3-errors", + "web3-eth-abi", + "web3-eth-ens", + "web3-eth-iban", + "web3-validator", + "web3-rpc-methods", + "web3-eth-accounts", + "web3-eth-contract", + "web3-eth-personal", + "web3-providers-ws", + "web3-rpc-providers", + "web3-providers-http", + "in3", + "ganache", + "web3-providers-ipc", + "eslint-config-base-web3", + "@truffle/hdwallet-provider", + "Ethereum", + "@solana/spl-token", + "@solana/web3.js", + "kva-email-service", + "micro-ed25519-hdkey", + "ssl-http-with-docker", + "tailwind-animation-extension", + "telegram-assistant", + "web3-react-task", + "sol", + "@webassemblyjs/ast", + "@webassemblyjs/wasm-edit", + "@webassemblyjs/wasm-parser", + "acorn-import-phases", + "chrome-trace-event", + "@codspeed/core", + "@types/neo-async", + "@types/xxhashjs", + "assemblyscript", + "bundle-loader", + "coffee-loader", + "hash-wasm", + "meriyah", + "rehype-sanitize", + "wast-loader", + "webassembly-feature", + "xxhashjs", + "lodash.partial", + "eslint-config-th0r", + "postcss-icss-values", + "@carrotsearch/foamtree", + "eslint-config-th0r-react", + "analyzer", + "chart", + "zoomable", + "@webpack-cli/info", + "@webpack-cli/configtest", + "@types/envinfo", + "@fastify/express", + "@types/on-finished", + "@types/sockjs", + "@types/bonjour", + "bonjour-service", + "@types/serve-index", + "@types/serve-static", + "ansi-html-community", + "@types/connect-history-api-fallback", + "klona", + "@types/sockjs-client", + "reloading", + "hot-reloading", + "@types/webpack-sources", + "eslint-config-shellscape", + "prettier-plugin-package", + "dts-cli", + "@types/flat", + "externals", + "typedarray-to-buffer", + "yaeti", + "networking", + "comet", + "RFC-6455", + "@silentbot1/nat-api", + "@thaunknown/simple-peer", + "@webtorrent/http-node", + "addr-to-ip-port", + "bitfield", + "bittorrent-dht", + "bittorrent-protocol", + "cache-chunk-store", + "chunk-store-iterator", + "cpus", + "create-torrent", + "cross-fetch-ponyfill", + "fs-chunk-store", + "fsa-chunk-store", + "immediate-chunk-store", + "join-async-iterator", + "load-ip-set", + "lt_donthave", + "memory-chunk-store", + "parse-torrent", + "random-iterate", + "speed-limiter", + "throughput", + "torrent-discovery", + "torrent-piece", + "uint8-util", + "unordered-array-remove", + "ut_metadata", + "ut_pex", + "@webtorrent/semantic-release-config", + "airtap-manual", + "airtap-system", + "bittorrent-tracker", + "chrome-net", + "disc", + "network-address", + "path-esm", + "webtorrent-fixtures", + "bittorrent", + "bittorrent client", + "mad science", + "p2p", + "peer-to-peer", + "peers", + "swarm", + "torrent", + "web torrent", + "webrtc data", + "web worker", + "a gogo", + "url-search-params", + "poly", + "buster", + "exorcist", + "microtime", + "cujo", + "Promises/A+", + "isexe", + "taffydb", + "unit.js", + "@dabh/diagnostics", + "logform", + "one-time", + "@dabh/eslint-config-populist", + "abstract-winston-transport", + "cross-spawn-async", + "hock", + "winston-compat", + "file-stream-rotator", + "@alcalzone/release-script", + "@alcalzone/release-script-plugin-license", + "daily-rotate-file", + "log-rotate", + "logrotate", + "winston3", + "bower-config", + "propprop", + "wiredep-cli", + "break", + "carriage", + "new-line", + "newline", + "return", + "soft", + "workbox-build", + "workbox", + "workboxjs", + "service worker", + "fetch requests", + "offline", + "file manifest", + "wordbreak", + "linewrap", + "writeFile", + "atomic", + "HyBi", + "Push", + "WebSocket", + "WebSockets", + "enstore", + "x-ray-crawler", + "x-ray-parse", + "scrape", + "is-function", + "parse-headers", + "ssf", + "wmf", + "crc-32", + "adler-32", + "codepage", + "fflate", + "exit-on-epipe", + "@sheetjs/uglify-js", + "markdown-spellcheck", + "xlsb", + "dbf", + "dif", + "sylk", + "cash-cat", + "codacy-coverage", + "globify", + "jsonpath", + "unminified-webpack-plugin", + "XML", + "cdata", + "CDATA", + "doctype", + "processing instruction", + "Javascript", + "transforming", + "convertor", + "converting", + "conversion", + "node-expat", + "dom-js", + "xmltest", + "DOMParser", + "XMLSerializer", + "find-cache-directory", + "func-xml", + "@babel/plugin-proposal-unicode-property-regex", + "@unicode/unicode-14.0.0", + "babel-plugin-array-includes", + "babel-plugin-transform-xregexp", + "unicode-property-value-aliases", + "regular expression", + "whitelist", + "@scion-scxml/test-framework", + "statechart", + "state machine", + "finite state machine", + "finite automata", + "scxml", + "interpreter", + "@types/deep-equal", + "@types/express-ws", + "@types/utf8", + "xterm-benchmark", + "terminal-emulator", + "jest-ts-webcompat-resolver", + "YAML", + "yaml2json", + "json2yaml", + "browserslist-generator", + "yargs-test-extends", + "babel-plugin-transform-inline-imports-commonjs", + "death", + "loud-rejection", + "repeating", + "request-capture-har", + "roadrunner", + "babel-preset-es2015-node4", + "babel-preset-node5", + "eslint-config-fb-strict", + "eslint-config-kittens", + "eslint-plugin-flow-vars", + "eslint-plugin-no-async-without-await", + "@yeoman/adapter", + "@yeoman/conflicter", + "@yeoman/namespace", + "@yeoman/transform", + "@yeoman/types", + "fly-import", + "grouped-queue", + "mem-fs", + "mem-fs-editor", + "which-package-manager", + "@yeoman/eslint", + "esmocha", + "sinon-test", + "github-username", + "yes", + "no", + "true", + "false", + "lenient", + "cli-list", + "fullname", + "parse-help", + "root-check", + "npm-keyword", + "yeoman-doctor", + "humanize-string", + "yeoman-character", + "registry-url", + "@jonahsnider/benchmark", + "pad-component", + "cowsay", + "say", + "zeromq", + "0mq", + "ømq", + "libzmq", + "binding", + "@types/cookie-parser", + "@types/express-useragent", + "@types/morgan", + "express-useragent", + "schemas", + "runtime types", + "DSL", + "@externs/nodejs", + "@types/systemjs", + "JSON2", + "char-split", + "express-state", + "firefox-profile", + "istanbul-middleware", + "shallow-copy", + "stack-mapper", + "tap-finished", + "zuul-localtunnel", + "browzers", + "bulk-require", + "zuul-ngrok", + "@phenomnomnominal/tsquery", + "Unit Testing", + "Storybook", + "motion-dom", + "motion-utils", + "@radix-ui/react-dialog", + "@thednp/dommatrix", + "react animation", + "pose", + "react pose", + "popmotion", + "framer", + "waapi", + "belalangkayu", + "rengginangbasi", + "tehtarik3", + "sort-array", + "compute-scroll-into-view", + "@docusaurus/module-type-aliases", + "@testing-library/preact", + "babel-plugin-no-side-effect-class-properties", + "babel-preset-react-native", + "flow-coverage-report", + "get-pkg-repo", + "enhanced input", + "autosuggest", + "typeahead", + "omnibox", + "WAI-ARIA", + "multiple selection", + "focus", + "keyboards", + "mice", + "pen", + "pointer", + "pseudos", + "ring", + "textarea", + "trackpad", + "@augment-vir/core", + "@date-vir/duration", + "deepcopy-esm", + "typed-event-target", + "@web/dev-server-esbuild", + "execute-in-browser", + "istanbul-smart-text-reporter", + "runstorm", + "augment", + "vir", + "augment-vir", + "toolchain", + "JSONC", + "JSX", + "TSX", + "GraphQL", + "@commercetools-frontend/application-components", + "@commercetools-frontend/application-config", + "@commercetools-frontend/assets", + "@commercetools-frontend/babel-preset-mc-app", + "@commercetools-frontend/mc-dev-authentication", + "@commercetools-frontend/mc-html-template", + "@commercetools/http-user-agent", + "@formatjs/cli-lib", + "@rollup/plugin-graphql", + "@svgr/babel-preset", + "@types/webpack-bundle-analyzer", + "@vitejs/plugin-react-swc", + "babel-plugin-formatjs", + "graphql-request", + "moment-locales-webpack-plugin", + "svg-url-loader", + "thread-loader", + "@commercetools/composable-commerce-test-data", + "@types/moment-locales-webpack-plugin", + "@vue/cli-plugin-babel", + "@vue/cli-plugin-typescript", + "@vue/cli-service", + "eslint-plugin-prettier-vue", + "rollup-plugin-vue", + "vue 3", + "@vue/cli-plugin-unit-mocha", + "symlink-dir", + "tokenize", + "dogstatsd", + "datadog", + "telegraf", + "adr", + "decision record", + "any decision record", + "architectural decision", + "architectural decision record", + "architecture decision", + "architecture decision record", + "software quality", + "bplist-parser", + "@types/katex", + "katex", + "tex", + "hyperlink", + "@type-challenges/utils", + "deserialization", + "deserialize", + "detect-europe-js", + "is-standalone-pwa", + "ua-is-frozen", + "client-hints", + "device", + "browser-detection", + "device-detection", + "os-detection", + "bot-detection", + "ai-detection", + "app-detection", + "crawler-detection", + "youch", + "@adonisjs/ace", + "@adonisjs/env", + "parse-imports", + "@adonisjs/fold", + "@adonisjs/hash", + "@adonisjs/repl", + "youch-terminal", + "@poppinss/utils", + "@adonisjs/config", + "@adonisjs/events", + "@adonisjs/health", + "@adonisjs/logger", + "@poppinss/colors", + "@poppinss/dumper", + "@poppinss/macroable", + "@adonisjs/bodyparser", + "@adonisjs/encryption", + "@adonisjs/application", + "@adonisjs/http-server", + "error-stack-parser-es", + "argon2", + "edge.js", + "@japa/assert", + "@japa/runner", + "@japa/snapshot", + "@japa/expect-type", + "@japa/file-system", + "@adonisjs/tsconfig", + "ts-node-maintained", + "@adonisjs/assembler", + "@types/test-console", + "@adonisjs/eslint-config", + "@adonisjs/prettier-config", + "adonisjs", + "@aneuhold/core-ts-api-lib", + "@aneuhold/core-ts-lib", + "@aneuhold/local-npm-registry", + "@aneuhold/main-scripts", + "@capacitor/cli", + "@trapezedev/project", + "@types/slice-ansi", + "resources", + "splash screen", + "webOS", + "@envelop/types", + "@envelop/instrumentation", + "@whatwg-node/promise-helpers", + "@ionic/cli-framework-output", + "@angular-eslint/eslint-plugin", + "@angular-eslint/eslint-plugin-template", + "@angular-eslint/schematics", + "ng-packagr", + "docz", + "docz-utils", + "docz-theme-default", + "@asdfgertyjhnpm/nesciunt-molestias-reprehenderit-occaecati", + "@drftgyhuji7npm/rem-sint-necessitatibus-possimus", + "@drftgyhuji7npm/repellendus-eum-et-itaque", + "typeerror", + "Reflect.getPrototypeOf", + "Int8Array", + "Array", + "configurable", + "minimal", + "descriptors", + "channel", + "matchAll", + "Uint32Array", + "Array.prototype.filter", + "setter", + "Uint16Array", + "exit-code", + "isConcatSpreadable", + "weakmap", + "syntaxerror", + "sharedarraybuffer", + "Object", + "Array.prototype.flat", + "toSorted", + "typesafe", + "preserve-symlinks", + "negative zero", + "[[Prototype]]", + "tester", + "ArrayBuffer.prototype.slice", + "byteOffset", + "zero", + "ArrayBuffer#slice", + "trimRight", + "getter", + "Array.prototype.contains", + "findLastIndex", + "last", + "Int16Array", + "Int32Array", + "rangeerror", + "Float32Array", + "take", + "workspace:*", + "byteLength", + "censor", + "Symbol.toStringTag", + "operating-system", + "coercible", + "Function.prototype.name", + "gdpr", + "ArrayBuffer", + "private data", + "Object.fromEntries", + "0", + "tostringtag", + "-0", + "negative", + "Array.prototype.findLast", + "enumerable", + "toobject", + "interrupts", + "groupBy", + "handlers", + "reuse", + "Float64Array", + "group", + "some", + "collection.es6", + "sameValueZero", + "positive", + "code points", + "regular expressions", + "findLast", + "robust", + "description", + "Uint8ClampedArray", + "pnpm9", + "length", + "defineProperty", + "RegExp#flags", + "valid", + "accessor", + "@smithy/types", + "aws-lambda", + "elapsed-time-logger", + "gulp-open", + "cupertino", + "pane", + "slide", + "@pouchlab/ui", + "chai-jquery", + "corejs-typeahead", + "doiuse", + "gulp-add-src", + "gulp-cache-bust", + "gulp-check-deps", + "gulp-sass-lint", + "gulp4-run-sequence", + "is-empty-object", + "motion-ui", + "sassy-lists", + "undertaker-forward-reference", + "vinyl-named", + "handlebars-helper-rel", + "handlebars-helper-slugify", + "tinygradient", + "@bokub/prettier-config", + "gradient", + "gradients", + "grommet-icons", + "@chromatic-com/storybook", + "@storybook/addon-a11y", + "@storybook/addon-toolbars", + "@storybook/addon-webpack5-compiler-babel", + "@storybook/manager-api", + "@storybook/source-loader", + "@testing-library/testcafe", + "babel-plugin-transform-imports", + "chromatic", + "grommet-theme-hpe", + "jest-styled-components", + "react-shadow", + "tarball-extract", + "testcafe-react-selectors", + "grommet.io", + "grommetux", + "theming", + "sticker sheets", + "design patterns", + "app templates", + "atomic design", + "WCAG 2.1", + "keyboard navigation", + "screen reader tags", + "interaction", + "graphical user interface", + "dart-sass", + "grunt-jekyll", + "zepto", + "lightbox", + "@next/font", + "axe-playwright", + "@storybook/test-runner", + "@base-ui-components/react", + "@storybook/addon-webpack5-compiler-swc", + "find-process", + "@types/pretty", + "chromium", + "launch-image", + "splashscreen", + "splash-screen", + "image-generation", + "mstile", + "pwa-assets", + "@apitools/openapi-parser", + "base64-arraybuffer", + "xml-but-prettier", + "babel-plugin-template-html-minifier", + "inspectpack", + "Custom Element", + "Web Component", + "swagger ui", + "openapi ui", + "openapi themes", + "openapi viewer", + "openapi renderer", + "openapi explorer", + "swagger themes", + "animatable", + "@react-native/babel-preset", + "collapsible", + "accordion", + "rollup-plugin-local-resolve", + "swipeable", + "customizable", + "touchscreen", + "listview", + "swipe-to-delete", + "swipe-actions", + "use-composed-ref", + "use-latest", + "@preconstruct/cli", + "autosize", + "grow", + "md-writer", + "@types/common-tags", + "decimal.js-light", + "victory-vendor", + "@recharts/devtools", + "@storybook/builder-vite", + "@storybook/react-vite", + "@stryker-mutator/typescript-checker", + "@stryker-mutator/vitest-runner", + "@types/d3-interpolate", + "@types/d3-time-format", + "babel-plugin-dev-expression", + "eslint-config-airbnb-extended", + "eslint-plugin-react-perf", + "vitest-axe", + "@riotjs/dom-bindings", + "@riotjs/compiler", + "@riotjs/prettier-config", + "@riotjs/register", + "@riotjs/util", + "@wdio/mocha-framework", + "@wdio/sauce-service", + "bianco.attr", + "bianco.query", + "cumpa", + "curri", + "eslint-config-riot", + "rollup-plugin-riot", + "custom tags", + "minimalist", + "data binding", + "riotjs", + "riot.js", + "testcafe-browser-provider-saucelabs", + "sortable", + "reorder", + "ng-sortable", + "@use-gesture/vanilla", + "tdesign-icons-vue-next", + "@rollup/plugin-eslint", + "@rollup/plugin-url", + "@soerenmartius/vue3-clipboard", + "@tdesign/site-components", + "@tdesign/theme-generator", + "dom-parser", + "lodash.upperfirst", + "qrcode.vue", + "rollup-plugin-ignore-import", + "rollup-plugin-static-import", + "rollup-plugin-styles", + "tdesign-publish-cli", + "vite-plugin-tdoc", + "tdesign", + "babel-plugin-html-tag", + "postcss-css-variables", + "postcss-hexrgba", + "postcss-prefixer", + "rollup-plugin-module-replacement", + "rollup-plugin-string", + "uploader", + "preview", + "chunk", + "image-edit", + "sockets", + "ready", + "win32", + "gulp-convert-css-var", + "picklog", + "wechat", + "weixin", + "@formatjs/intl-localematcher", + "@napi-rs/simple-git", + "@shikijs/twoslash", + "@theguild/remark-mermaid", + "better-react-mathjax", + "estree-util-value-to-estree", + "react-compiler-runtime", + "react-medium-image-zoom", + "remark-math", + "remark-reading-time", + "remark-smartypants", + "unist-util-remove", + "unist-util-visit-children", + "@types/negotiator", + "esbuild-plugin-svgr", + "esbuild-react-compiler-plugin", + "make-synchronized", + "make-synchronous", + "sync-threads", + "synchronize", + "fs-fixture", + "@ibyar/decorators", + "aurora", + "ibyar", + "expressions", + "template-syntax", + "template-expression", + "scope", + "evaluation", + "command-center", + "rich-text-editor", + "tiptap", + "@types/babel__preset-env", + "eslint-plugin-no-null", + "allure", + "codeceptjs", + "testops", + "@intlayer/chokidar", + "@intlayer/config", + "@intlayer/core", + "@intlayer/types", + "intlayer", + "@types/cls-hooked", + "@utils/ts-config", + "@utils/ts-config-types", + "@utils/tsdown-config", + "user-agents", + "unist-util-remove-position", + "@bugsnag/core", + "@bugsnag/delivery-react-native", + "@bugsnag/plugin-console-breadcrumbs", + "@bugsnag/plugin-network-breadcrumbs", + "@bugsnag/plugin-react", + "@bugsnag/plugin-react-native-client-sync", + "@bugsnag/plugin-react-native-event-sync", + "@bugsnag/plugin-react-native-global-error-handler", + "@bugsnag/plugin-react-native-hermes", + "@bugsnag/plugin-react-native-session", + "@bugsnag/plugin-react-native-unhandled-rejection", + "iserror", + "bugsnag", + "stability", + "@enact/i18n", + "ilib", + "eslint-plugin-astro", + "control-panel", + "backendless-request", + "backendless-rt-client", + "backendless-console-sdk", + "bannerize", + "backendless.com", + "ahooks", + "better-scroll", + "@zarm-design/bem", + "@use-gesture/react", + "@zarm-design/icons", + "@floating-ui/react-dom-interactions", + "@zarm-design/cli", + "zarm-ui", + "zarm-mobile", + "@enact/spotlight", + "@enact/docs-utils", + "@enact/ui-test-utils", + "eslint-config-enact-proxy", + "react select", + "react dropdown", + "accessible react select", + "accessible", + "@reporters/github", + "titanium-sdk", + "tidev", + "iphone", + "@antora/expand-path-helper", + "antora", + "static site", + "web publishing", + "@asyncapi/generator-components", + "@asyncapi/generator-helpers", + "@asyncapi/generator-hooks", + "@asyncapi/multi-parser", + "fs.extra", + "global-dirs", + "requireg", + "unixify", + "react-loadable", + "combine-promises", + "@docusaurus/babel", + "@docusaurus/logger", + "@docusaurus/bundler", + "react-router-config", + "@docusaurus/mdx-loader", + "@docusaurus/utils-common", + "@docusaurus/utils-validation", + "react-loadable-ssr-addon-v5-slorber", + "@total-typescript/shoehorn", + "@types/react-router-config", + "parcel-bundler", + "Vue", + "unstyled", + "@nestjsx/crud-request", + "@nestjsx/util", + "crud-generator", + "frameworks", + "@zmotivat0r/o0", + "p-filter", + "p-locate", + "dependency-management", + "continuous-integration", + "npmjs", + "package-manager", + "gatsby", + "hugo", + "netlify", + "core-js-pure", + "jest-location-mock", + "@types/module-alias", + "webpack-plugin-serve", + "hotreload", + "@pothos/test-utils", + "pothos", + "yalc", + "@strapi/core", + "@strapi/i18n", + "@strapi/admin", + "@strapi/email", + "@strapi/types", + "@strapi/utils", + "@strapi/logger", + "@strapi/upload", + "@types/nodemon", + "@strapi/openapi", + "@strapi/database", + "@strapi/cloud-cli", + "@strapi/generators", + "get-latest-version", + "@strapi/permissions", + "@strapi/data-transfer", + "@strapi/content-manager", + "@strapi/content-releases", + "@strapi/review-workflows", + "@strapi/typescript-utils", + "@strapi/content-type-builder", + "@strapi/ts-zen", + "eslint-config-custom", + "@types/webpack-hot-middleware", + "strapi", + "cmf", + "content management framework", + "admin panel", + "koajs", + "jam", + "graphqL", + "infrastructure", + "self hosted", + "lernajs", + "snake-case", + "@types/svg-parser", + "http-status-emojis", + "tsparticles-plugin", + "@tsparticles/interaction", + "@tsparticles/move", + "tsparticles-shape", + "@tsparticles/updater", + "@aws-sdk/lib-storage", + "@aws-sdk/s3-presigned-post", + "express-interceptor", + "express-prom-bundle", + "grant", + "tus-js-client", + "webdav", + "resumable uploads", + "tus", + "dropbox", + "webpack-chain", + "@vuepress/types", + "vue-server-renderer", + "@vue/babel-preset-app", + "vuepress-plugin-container", + "vuepress-html-webpack-plugin", + "@types/diacritics", + "vuepress-plugin-smooth-scroll", + "detect-browser", + "@walletconnect/types", + "@walletconnect/safe-json", + "@walletconnect/window-getters", + "@walletconnect/window-metadata", + "@ethersproject/address", + "@types/lodash.isnumber", + "wallet", + "walletconnect", + "jsonrpc", + "cryptocurrency", + "dapp", + "@walletconnect/utils", + "@walletconnect/crypto", + "@walletconnect/legacy-types", + "@walletconnect/legacy-utils", + "@types/qrcode", + "@walletconnect/legacy-client", + "@walletconnect/jsonrpc-provider", + "@walletconnect/jsonrpc-http-connection", + "ethereum-test-network", + "@wordpress/element", + "wordpress", + "gutenberg", + "center", + "jasmine-co", + "jasmine-ts", + "selenium-mock", + "body scroll", + "body scroll lock", + "react scroll lock", + "react scroll", + "freeze", + "disable", + "overflow", + "vanilla-js", + "tablet", + "bsl", + "broccoli-node-info", + "resolve-path", + "@types/console-ui", + "@types/esm", + "@types/findup-sync", + "@types/sane", + "@types/underscore.string", + "broccoli-node-api", + "mocha-jshint", + "babel-plugin-optimize-starts-with", + "replacement", + "html4", + "invalid", + "color-name", + "is-whitespace", + "verb", + "mediaquery", + "csstree", + "completion", + "apollo-link-context", + "decap-cms", + "aws-cognito", + "what-the-diff", + "gotrue-js", + "git-gateway", + "gateway", + "napa", + "detector", + "tinydate", + "tweezer.js", + "medium-zoom", + "autoprefixer-stylus", + "rollup-plugin-async", + "eslint-plugin-playwright", + "creator", + "cp-file", + "yargonaut", + "docsify-server-renderer", + "cli-prompts-test", + "rollup-plugin-executable", + "ssr-window", + "eslint-config-standard-react", + "prettier-check", + "array-hyper-unique", + "crlf-normalize", + "book", + "books", + "chapter", + "comic", + "epub-maker", + "epub-maker2", + "node-novel", + "novel", + "volume", + "escaping", + "interpolate", + "goat", + "🐐", + "color-logger", + "ice-cap", + "esdoc-importpath-plugin", + "ECMAScript6", + "ECMAScript2015", + "ECMAScript7", + "ECMAScript2016", + "ECMAScript8", + "ECMAScript2017", + "proposal", + "mdc", + "developer", + "inter-element", + "white-space", + "whitespace", + "tagname", + "force", + "graceful-shutdown", + "http-shutdown", + "http-terminate", + "prometheus", + "icss", + "inferno-hyperscript", + "vnode", + "createVNode", + "gulp-rtlcss", + "postcss-preset-infima", + "dark mode", + "bootswatch", + "docstrap", + "@angular-devkit/build-angular", + "angular-eslint", + "github-files-fetcher", + "@stitches/react", + "animate-sass", + "postcss-trolling", + "vite-plugin-svgr", + "preview jest", + "log-utils", + "engine-base", + "engine-handlebars", + "lo", + "lo-dash", + "serve-index-75lb", + "lws-middleware", + "micromark-extension", + "tagfilter", + "dangerous", + "grunt-jasmine-node", + "mobilegrade", + "sniff", + "nth-child", + "nth", + "is-alphanumerical", + "is-decimal", + "is-hexadecimal", + "cssinjs", + "@wdio/selenium-standalone-service", + "babelrc-rollup", + "queryselector", + "shadowdom", + "gulp-streamify", + "rc-tools", + "tappable", + "hammer", + "@actions/core", + "@oclif/plugin-autocomplete", + "toposort", + "@readme/better-ajv-errors", + "@readme/standards", + "@types/toposort", + "@types/unzipper", + "goober", + "jest-esm-jsx-transform", + "parcel-plugin-css-to-string", + "use-throttled-effect", + "hex", + "color-picker", + "wai-aria", + "smart-tv", + "smarttv", + "simple-routing", + "nano-equal", + "shallow-equal-fuzzy", + "shouldComponentUpdate", + "quicklook", + "image-gallery", + "image-viewer", + "react-native-svg", + "progressindicator", + "circle", + "pie", + "progressbar", + "indeterminate", + "d3-interpolate-path", + "@react-native-community/bob", + "@storybook/react-native", + "eslint-plugin-react-native", + "youtube-iframe", + "iframe", + "@atomico/rollup-plugin-sizes", + "git-branch-is", + "react-spring", + "@bedrock-layout/use-forwarded-ref", + "@codecov/vite-plugin", + "@types/body-scroll-lock", + "get-nonce", + "@theuiteam/lib-builder", + "@tsparticles/shape-text", + "@tsparticles/updater-roll", + "@tsparticles/updater-tilt", + "@tsparticles/updater-wobble", + "@tsparticles/plugin-emitters", + "@tsparticles/updater-destroy", + "@tsparticles/updater-twinkle", + "@tsparticles/plugin-absorbers", + "@tsparticles/interaction-external-trail", + "@tsparticles/plugin-emitters-shape-circle", + "@tsparticles/plugin-emitters-shape-square", + "useRef", + "createRef", + "merge refs", + "detect-node-es", + "@types/enzyme-adapter-react-16", + "code spliting", + "sidecar", + "mutation-observer", + "copy-text-to-clipboard", + "svelte-loader", + "scss-loader", + "perfect-scroll", + "vue-perfect-scroll", + "vue-scroll", + "vue-scrollbar", + "vue-plugin", + "滚动条", + "@types/eslint-plugin-prettier", + "@types/form-data", + "is-uuid", + "rewrite-imports", + "serviceworker", + "convict", + "antora-component", + "@applitools/test-utils", + "applitools", + "eyes-sdk", + "test automation", + "visual regression", + "@dataui/crud-request", + "@dataui/crud-util", + "blob-to-buffer", + "drag drop", + "drag & drop", + "@expo/spawn-async", + "@parcel/core", + "@parcel/fs", + "@parcel/package-manager", + "@parcel/watcher", + "mnemonic-id", + "node-object-hash", + "@plasmohq/parcel-config", + "@plasmohq/parcel-core", + "@plasmohq/init", + "@plasmo/config", + "@plasmo/constants", + "@plasmo/utils", + "@plasmo/framework-shared", + "browser-extensions", + "@iconify/react", + "@types/events", + "static-server", + "@storybook/cli", + "less-plugin-sass2less", + "@storybook/addon-mdx-gfm", + "music", + "player", + "mse", + "eme", + "@arethetypeswrong/core", + "ts-expose-internals", + "dlv", + "dset", + "flattie", + "fontace", + "unifont", + "magicast", + "piccolore", + "unstorage", + "zod-to-ts", + "xxhash-wasm", + "yocto-spinner", + "@oslojs/encoding", + "@astrojs/compiler", + "@astrojs/telemetry", + "@capsizecss/unpack", + "http-cache-semantics", + "@astrojs/internal-helpers", + "deterministic-object-hash", + "@types/dlv", + "rehype-toc", + "astro-scripts", + "remark-code-titles", + "@types/common-ancestor-path", + "@types/http-cache-semantics", + "strata", + "fuzzysearch", + "sander", + "@web/test-runner-core", + "testrunner", + "ac-colors", + "hsv", + "lch", + "color-names", + "cmyk", + "mix", + "harmonies", + "expressots", + "clean-architecture", + "typescript-framework", + "@pagefind/default-ui", + "bcp-47", + "mdast-util-directive", + "linkedom", + "withastro", + "astro-integration", + "piña", + "pigna", + "tabbable", + "@floating-ui/utils", + "@radix-ui/react-checkbox", + "@radix-ui/react-icons", + "vitest-browser-react", + "@internal/test-utils", + "code-blocks", + "expressive-code", + "syntax-highlighting", + "netlify-cms", + "@types/deep-eql", + "@amaui/ui-react", + "amaui", + "firefoxos", + "onesy", + "@react-native-macos/virtualized-lists", + "@tsparticles/plugin-easing-quad", + "@tsparticles/updater-stroke-color", + "@tsparticles/interaction-external-pause", + "@tsparticles/interaction-external-bubble", + "@tsparticles/interaction-external-attract", + "@tsparticles/interaction-external-connect", + "@types/react-router", + "@backstage/backend-plugin-api", + "@backstage/config", + "@backstage/integration", + "express-promise-router", + "@backstage/backend-test-utils", + "@backstage/catalog-model", + "@backstage/cli", + "@backstage/plugin-catalog-common", + "@backstage/plugin-catalog-node", + "backstage", + "ci/cd", + "immobiliare", + "immobiliarelabs", + "rgv", + "@asteasolutions/zod-to-openapi", + "@trpc/server", + "eslint-import-resolver-custom-alias", + "resolve-tspaths", + "event-driven", + "blaze", + "qs-esm", + "dataloader", + "bson-objectid", + "console-table-printer", + "@payloadcms/translations", + "graphql-http", + "@types/range-parser", + "@monaco-editor/react", + "@payloadcms/eslint-config", + "@hyrious/esbuild-plugin-commonjs", + "content management", + "graphQL", + "@cfcs/core", + "@egjs/axes", + "@egjs/component", + "@egjs/imready", + "@egjs/list-differ", + "@daybrush/jsdoc", + "@egjs/flicking-plugins", + "@egjs/release-helper", + "@types/resize-observer-browser", + "egjs-jsdoc-template", + "html-to-react", + "http-serve", + "jsdoc-to-mdx", + "karma-typescript-es6-transform", + "postcss-clean", + "print-coveralls", + "print-sizes", + "pvu", + "rollup-plugin-prototype-minify", + "ts-mock-imports", + "ttypescript", + "flicking", + "egjs", + "body scroll lock upgrade", + "@ucast/mongo2js", + "@casl/dx", + "permissions", + "abac", + "rbac", + "ibac", + "cancan", + "@humanwhocodes/gitignore-to-minimatch", + "peowly", + "list-dependents-cli", + "rslog", + "@rslib/core", + "@modern-js/rslib", + "@modern-js/types", + "@scripts/rstest-config", + "modern", + "modern.js", + "@scripts/build", + "@scripts/jest-config", + "import-without-cache", + "unconfig-core", + "unrun", + "@publint/pack", + "@sxzz/eslint-config", + "@sxzz/prettier-config", + "@sxzz/test-utils", + "@unocss/eslint-plugin", + "@vitejs/devtools", + "rolldown-plugin-dts-snapshot", + "rolldown-plugin-require-cjs", + "unocss", + "unplugin-ast", + "unplugin-lightningcss", + "unplugin-unused", + "@types/decompress", + "@ckeditor/ckeditor5-comments", + "@ckeditor/ckeditor5-track-changes", + "CKEditor", + "WYSIWYG", + "WYSIWYW", + "rich-text", + "fast-equals", + "glob2regx", + "ckeditor5-collaboration", + "@ckeditor/ckeditor5-revision-history", + "@ckeditor/ckeditor5-operations-compressor", + "@ckeditor/ckeditor-cloud-services-collaboration", + "@grammyjs/types", + "deno2node", + "@udecode/plate-utils", + "@loki/integration-react", + "@loki/integration-react-native", + "@loki/integration-vue", + "@loki/runner", + "@loki/target-chrome-app", + "@loki/target-chrome-docker", + "@loki/target-native-android-emulator", + "@loki/target-native-ios-simulator", + "storybook-addons", + "react-storybook", + "visual testing", + "emoji-datasource", + "@fastify/static", + "graphql-jit", + "mqemitter", + "single-user-cache", + "tiny-lru", + "@matteo.collina/snap", + "@types/isomorphic-form-data", + "graphql-ws", + "blue-tape", + "events.once", + "xhr2-cookies", + "convex", + "mock-spawn", + "@fastify/pre-commit", + "@reporters/silent", + "desm", + "gulp-better-rollup", + "Leaflet", + "Maps", + "Gesture", + "Handling", + "two", + "fingers", + "@tanstack/vue-virtual", + "@testing-library/vue", + "@fast-check/vitest", + "@types/eslint-config-prettier", + "prettier-plugin-pkg", + "prettier-plugin-sh", + "algo", + "@oxc-node/cli", + "eslint-plugin-redos-detector", + "tsm", + "bundle-size", + "@iconify/vue", + "@internationalized/date", + "@internationalized/number", + "@nuxt/fonts", + "@nuxt/icon", + "@nuxt/kit", + "@nuxt/schema", + "@nuxtjs/color-mode", + "@tanstack/vue-table", + "@tiptap/core", + "@tiptap/extension-bubble-menu", + "@tiptap/extension-code", + "@tiptap/extension-collaboration", + "@tiptap/extension-drag-handle", + "@tiptap/extension-drag-handle-vue-3", + "@tiptap/extension-floating-menu", + "@tiptap/extension-horizontal-rule", + "@tiptap/extension-image", + "@tiptap/extension-mention", + "@tiptap/extension-node-range", + "@tiptap/extension-placeholder", + "@tiptap/markdown", + "@tiptap/pm", + "@tiptap/starter-kit", + "@tiptap/suggestion", + "@tiptap/vue-3", + "@vueuse/shared", + "colortranslator", + "embla-carousel-auto-height", + "embla-carousel-auto-scroll", + "embla-carousel-autoplay", + "embla-carousel-class-names", + "embla-carousel-fade", + "embla-carousel-vue", + "embla-carousel-wheel-gestures", + "knitwork", + "motion-v", + "reka-ui", + "tailwind-variants", + "unplugin-auto-import", + "unplugin-vue-components", + "vaul-vue", + "vue-component-type-helpers", + "@nuxt/eslint-config", + "@nuxt/module-builder", + "@nuxt/test-utils", + "@tanstack/table-core", + "ai", + "vitest-environment-nuxt", + "nuxt-ui", + "ui-framework", + "country-code", + "country-codes", + "country-flags", + "country-names", + "country-telephone-codes", + "country-telephone-prefixes", + "countries", + "country-iso-codes", + "iso", + "iso-codes", + "iso-country-codes", + "iso-country-names", + "iso-country-telephone-codes", + "iso-country-telephone-prefixes", + "iso-countries", + "emoji-flags", + "phone-codes", + "phone-prefixes", + "telephone-codes", + "telephone-prefixes", + "world-countries", + "world-country-codes", + "world-country-flags", + "world-country-names", + "world-country-telephone-codes", + "world-country-telephone-prefixes", + "world-iso-codes", + "world-iso-country-codes", + "world-iso-country-names", + "@zoroaster/assert", + "@zoroaster/mask", + "alamode", + "@a-la/fixture-alamode", + "@a-la/fixture-babel", + "@artdeco/clean-stack", + "@artdeco/erte", + "@artdeco/scripts.json", + "@depack/render", + "@wrote/exists", + "@wrote/rm", + "@zoroaster/reducer", + "@zoroaster/types", + "argufy", + "catchment", + "documentary", + "erotic", + "eslint-config-artdeco", + "makepromise", + "promto", + "reloquent", + "snapshot-context", + "spawncommand", + "temp-context", + "usually", + "yarn-s", + "IDE", + "suggestions", + "intellisense", + "assistant-cloud", + "@assistant-ui/tap", + "@assistant-ui/store", + "@radix-ui/primitive", + "@radix-ui/react-compose-refs", + "@radix-ui/react-context", + "@radix-ui/react-dropdown-menu", + "@radix-ui/react-popover", + "@radix-ui/react-primitive", + "@radix-ui/react-use-callback-ref", + "@radix-ui/react-use-escape-keydown", + "assistant-stream", + "@assistant-ui/x-buildutils", + "radix-ui", + "ai-sdk", + "assistant", + "openai", + "chatbot", + "copilot", + "ai-chat", + "ai-chatbot", + "ai-assistant", + "ai-copilot", + "chatgpt", + "gpt4", + "gpt-4", + "conversational-ui", + "conversational-ai", + "graphiql", + "radash", + "@a2a-js/sdk", + "js-tiktoken", + "@lukeed/uuid", + "hono-openapi", + "@isaacs/ttlcache", + "@ai-sdk/provider-v5", + "@ai-sdk/provider-v6", + "@ai-sdk/ui-utils-v5", + "@mastra/schema-compat", + "@ai-sdk/provider-utils-v5", + "@ai-sdk/provider-utils-v6", + "@ai-sdk/azure", + "@ai-sdk/openai", + "@internal/lint", + "@internal/ai-v6", + "@internal/ai-sdk-v4", + "@internal/ai-sdk-v5", + "@internal/types-builder", + "@internal/external-types", + "@openrouter/ai-sdk-provider", + "llm", + "llms", + "agents", + "vectorstore", + "embeddings", + "rag", + "evals", + "otel", + "@tailwindcss/ui", + "@types/sortablejs", + "vue-next", + "draggable", + "drag-and-drop", + "vue-draggable", + "kanban", + "composition-api", + "@oxc-project/runtime", + "hmac256", + "hmac512", + "@ant-design/pro-components", + "@anthropic-ai/sdk", + "@azure-rest/ai-inference", + "@cfworker/json-schema", + "@clerk/localizations", + "@clerk/nextjs", + "@clerk/themes", + "@cyntler/react-doc-viewer", + "@fal-ai/client", + "@formkit/auto-animate", + "@google/genai", + "@huggingface/inference", + "@icons-pack/react-simple-icons", + "@khmyznikov/pwa-install", + "@langchain/community", + "@lobechat/agent-runtime", + "@lobechat/const", + "@lobechat/context-engine", + "@lobechat/database", + "@lobechat/electron-client-ipc", + "@lobechat/electron-server-ipc", + "@lobechat/fetch-sse", + "@lobechat/file-loaders", + "@lobechat/model-runtime", + "@lobechat/observability-otel", + "@lobechat/prompts", + "@lobechat/python-interpreter", + "@lobechat/utils", + "@lobechat/web-crawler", + "@lobehub/analytics", + "@lobehub/charts", + "@lobehub/chat-plugin-sdk", + "@lobehub/chat-plugins-gateway", + "@lobehub/editor", + "@lobehub/icons", + "@lobehub/market-sdk", + "@lobehub/tts", + "@lobehub/ui", + "@neondatabase/serverless", + "@next/third-parties", + "@opentelemetry/exporter-jaeger", + "@opentelemetry/winston-transport", + "@react-pdf/renderer", + "@react-spring/web", + "@saintno/comfyui-sdk", + "@serwist/next", + "@t3-oss/env-nextjs", + "@trpc/client", + "@trpc/next", + "@trpc/react-query", + "@vercel/analytics", + "@vercel/edge-config", + "@vercel/functions", + "@vercel/speed-insights", + "@virtuoso.dev/masonry", + "@xterm/xterm", + "brotli-wasm", + "countries-and-timezones", + "dexie", + "drizzle-orm", + "drizzle-zod", + "gpt-tokenizer", + "i18next-resources-to-backend", + "js-sha256", + "jsonl-parse-stringify", + "langchain", + "langfuse", + "langfuse-core", + "lucide-react", + "markdown-to-txt", + "model-bank", + "modern-screenshot", + "next-mdx-remote", + "nextjs-toploader", + "nuqs", + "officeparser", + "oidc-provider", + "ollama", + "partial-json", + "path-browserify-esm", + "pdf-parse", + "plaiceholder", + "posthog-js", + "pwa-install-handler", + "react-confetti", + "react-hotkeys-hook", + "react-layout-kit", + "react-pdf", + "react-rnd", + "react-scan", + "react-virtuoso", + "react-wrap-balancer", + "resolve-accept-language", + "rtl-detect", + "ssrf-safe-fetch", + "svix", + "tokenx", + "ts-md5", + "unstructured-client", + "use-merge-value", + "word-extractor", + "zustand-utils", + "@huggingface/tasks", + "@lobehub/i18n-cli", + "@lobehub/lint", + "@lobehub/market-types", + "@lobehub/seo-cli", + "@next/bundle-analyzer", + "@peculiar/webcrypto", + "@types/chroma-js", + "@types/crypto-js", + "@types/ip", + "@types/numeral", + "@types/oidc-provider", + "@types/pdfkit", + "@types/pg", + "@types/rtl-detect", + "dbdocs", + "dpdm-fast", + "drizzle-dbml-generator", + "drizzle-kit", + "eslint-plugin-mdx", + "fake-indexeddb", + "just-diff", + "mcp-hello-world", + "remark-mdx", + "serwist", + "vercel-ai", + "azure-openai", + "visual-model", + "tts", + "stt", + "modelcontextprotocol", + "mcp", + "context7", + "vibe-coding", + "developer tools", + "@types/istanbul-lib-report", + "@walletconnect/time", + "@walletconnect/events", + "label", + "better-npm-run", + "clamp.js", + "karma-fixture", + "karma-opera-launcher", + "minimalistic", + "@types/webrtc", + "detectrtc", + "install-peers-cli", + "prepend-file", + "camera", + "webcam", + "cam", + "webRTC", + "react-native-worklets", + "visionOS", + "tvOS", + "macOS", + "cpp", + "swift", + "jsi", + "@antfu/ni", + "@dotenvx/dotenvx", + "@types/validate-npm-package-name", + "stringify-object", + "@types/stringify-object", + "virtual-core", + "datagrid", + "2fa", + "hotp", + "topt", + "google authenticator", + "authenticator", + "one time password", + "one-time-password", + "2 factor", + "survey", + "surveyjs", + "survey-library", + "form-component", + "form-rendering", + "survey-renderer", + "dynamic-form", + "interactive-form", + "form-library", + "form-management", + "questionnaire", + "data-collection", + "data-validation", + "input-validation", + "ui-component", + "schema-form", + "base64-stream", + "bplist-creator", + "@mrleebo/prisma-ast", + "@electric-sql/pglite-socket", + "@prisma/query-plan-executor", + "common-stuff", + "accelerate", + "@aws-lite/client", + "@aws-lite/s3", + "@architect/eslint-config", + "mock-tmp", + "tap-arc", + "cloudfunctions", + "apigateway", + "api gateway", + "@webgpu/types", + "@tinymce/tinymce-react", + "n1ed", + "@headlessui/tailwindcss", + "@heroicons/react", + "@tailwindplus/elements", + "@types/sharp", + "react-docgen-typescript", + "react-lib-tools", + "rollup-preserve-directives", + "ts-blank-space", + "vitest-fail-on-console", + "windowed", + "@extend-chrome/messages", + "@extend-chrome/storage", + "@types/chrome", + "@types/jsesc", + "vite-plugin-inspect", + "chrome-extension", + "webext", + "webextension", + "browser-extension", + "isoformat", + "interval-tree-1d", + "htl", + "@types/d3", + "apache-arrow", + "d3-geo-projection", + "@observablehq/stdlib", + "string-split-by", + "cargo-cp-artifact", + "skia", + "offscreen", + "compositing", + "vulkan", + "metal", + "flmngr", + "imgpen", + "unsplash", + "@types/listr", + "markdown-to-pdf", + "pdf-generation", + "assignments", + "homework", + "html-to-pdf", + "@applitools/core", + "@applitools/logger", + "@applitools/req", + "@applitools/snippets", + "@applitools/image", + "@applitools/spec-driver-webdriver", + "@antora/user-require-helper", + "kapok-js", + "@asciidoctor/core", + "@antora/asciidoc-loader", + "navigation", + "asciidoc", + "pod-install", + "pinch-to-zoom", + "pinch", + "@farmfe/cli", + "@farmfe/core", + "bun-types-no-globals", + "eslint-plugin-format", + "unloader", + "redirects", + "@antora/file-publisher", + "publisher", + "vite-plugin-dts-bundle-generator", + "vite-plugin-pages", + "vite-plugin-typescript", + "vite-plugin-typescript-transform", + "box2d", + "game", + "physics", + "2d", + "replace-in-files-cli", + "sandboxed-module", + "oxc", + "exact-versions", + "turborepo", + "version-linter", + "@jsdevtools/ez-spawn", + "@napi-rs/magic-string", + "@pnpm/list", + "@pnpm/workspace.find-packages", + "@types/treeverse", + "@types/yarnpkg__lockfile", + "fast-npm-meta", + "@nolyfill/internal", + "@nolyfill/promise.any", + "fumadb", + "kysely", + "@orpc/zod", + "@orpc/otel", + "neverthrow", + "@c15t/logger", + "@orpc/server", + "@orpc/openapi", + "@orpc/contract", + "@c15t/translations", + "@opentelemetry/sdk-node", + "kysely-pglite", + "@c15t/vitest-config", + "@libsql/kysely-libsql", + "@c15t/typescript-config", + "consent", + "privacy", + "ccpa", + "lgpd", + "self-host", + "consent-management", + "user-privacy", + "data-protection", + "cookie-banner", + "consent-management-platform", + "cmp", + "consent-banner", + "@ampproject/rollup-plugin-closure-compiler", + "@fezvrasta/tsc-silent", + "@khanacademy/flow-to-ts", + "babel-plugin-inline-replace-variables", + "poster", + "rollup-plugin-flow-entry", + "popper", + "positioning engine", + "anime", + "anime.js", + "timeline", + "easings", + "cubic-bezier", + "splitText", + "WAAPI", + "Canvas", + "WebGL", + "decrypt", + "ev-emitter", + "fizzy-ui-utils", + "get-size", + "imagesloaded", + "unidragger", + "eslint-plugin-metafizzy", + "jquery-bridget", + "flick", + "gulp-wrap-commonjs", + "lex", + "maths", + "persist-schema", + "jugglingdb", + "panorama", + "rip-out", + "eslint-config-godaddy-react", + "setup-env", + "compatiblity", + "rollup-plugin-eslint", + "rollup-plugin-sass", + "testit", + "gethub", + "bits", + "iec" + ], + [5, 293, 294], + [0, -3015, -3016, -3017, -3018], + 1771718400000, + 1771113600000, + 1770508800000, + [0], + 1772323200000, + 1772409600000, + 1772064000000, + 1771804800000, + [1, 24, 619], + [1, 3, 621], + [0, -519, -2384, -2541], + [0, -3040, -3052, -1031, -2006, -2019, -2410], + [0, -3095, -3098, -3099, -3161, -3100, -2006, -3159, -3160, -2494], + [1, 3, 440], + [1, 3, 1832], + [0, -3488, -681, -3489, -3490, -3491, -3492], + [1, 3, 1826], + [0, -3220], + [0, -1889], + [0, -424], + [0, -3557, -3018], + true, + [1, 3, 622], + [0, -1654], + [0, -2006, -2019], + [0, -4298, -4300, -2319], + [1, 3, 1783], + [0, -2322], + [1, 24, 585], + [0, -2387], + [0, -1548], + [0, -531], + [0, -7841], + [0, -2410], + [0, -932], + [0, -44], + [0, -1787], + [0, -2006], + [0, -856, -3262, -2476, -2816], + [1, 3, 674], + [ + 0, -18, -19, -471, -487, -498, -504, -577, -588, -590, -591, -592, -603, -604, -605, -5421, -606, -607, -608, + -609, -610, -5422, -611, -612, -613, -5423, -626, -631, -643, -660, -663, -5424, -670, -676, -5425, -5426, + -5427, -5428, -5429, -804, -830, -833, -836, -998, -5430, -5431, -1019, -1020, -1095, -1121, -5432, -1280, + -1282, -1307, -1308, -5433, -1378, -1511, -1512, -1513, -5434, -1516, -1584, -1596, -5435, -1615, -5436, -1648, + -1679, -1684, -1695, -1720, -1799, -5437, -1803, -1822, -1869, -1886, -5438, -1994, -2067, -5439, -2158, -2169, + -5440, -5441, -2196, -2201, -2203, -2209, -2217, -2237, -5442, -2238, -2252, -5443, -2256, -2290, -5444, -2296, + -2298, -2309, -2348, -2366, -2370, -5445, -5446, -5447, -2426, -5448, -5449, -2527 + ], + [0, -18, -19, -676, -1994, -2426], + [1, 3, 1519], + [1, 3, 2972], + [0, -2501], + [0, -9219], + [0, -775, -1889, -3583], + [0, -23, -3219], + [1, 3, 1044], + [1, 3, 1396], + [1, 3, 1875], + [0, -519, -2541], + [0, -1654, -1941], + [0, -4633, -3445, -3100, -7566], + [0, -15394, -15395, -4276, -15396, -3162, -6935, -2494, -770, -15397, -15398], + [0, -3488, -681, -3489, -3518, -3492], + [0, -1934], + [1, 3, 623], + [1, 24, 645], + [ + 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -3959, -910, -3960, -3262, -3961, -3962, -3963, -1376, -3964, + -3965, -3214, -3824, -3966, -3967, -1965, -3968, -1966, -3969, -2063, -3970, -3971, -3108, -3972, -3973, -3974, + -3975, -3160, -3976, -2559, -3977 + ], + [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -4339, -4340], + [0, -2476, -3944, -3100, -4590, -3098, -4591, -4592, -4593, -4594], + [1, 3, 1380], + [ + 0, -18, -19, -471, -498, -504, -577, -588, -590, -591, -592, -603, -604, -605, -606, -607, -608, -609, -5423, + -626, -631, -660, -663, -670, -676, -5426, -5429, -804, -830, -833, -836, -998, -5431, -1095, -1121, -5432, + -1280, -1282, -1308, -5433, -1511, -1512, -1513, -1516, -1584, -1596, -1615, -1648, -1679, -1684, -1695, -1720, + -1799, -5437, -1803, -1822, -1869, -1886, -5438, -1994, -2169, -5441, -2201, -2203, -2209, -2217, -2237, -5442, + -2238, -2252, -2256, -2290, -5444, -2296, -2298, -2309, -2348, -2366, -2370, -5445, -5446, -5447, -2426, -5448, + -5449 + ], + [ + 0, -18, -19, -467, -471, -487, -498, -504, -6147, -575, -577, -588, -590, -591, -592, -6148, -603, -604, -605, + -5421, -606, -607, -608, -609, -610, -5422, -611, -612, -613, -6149, -5423, -625, -626, -6150, -631, -6151, + -643, -660, -663, -5424, -670, -675, -676, -5425, -5426, -6152, -6153, -5427, -5428, -5429, -804, -830, -833, + -6154, -836, -842, -890, -998, -5430, -6155, -5431, -1019, -1020, -1035, -1073, -1084, -6156, -1095, -1117, + -1120, -1121, -5432, -1279, -1280, -1282, -1295, -1307, -1308, -1314, -6157, -5433, -1378, -6158, -6159, -1511, + -1512, -1513, -5434, -1516, -6160, -1584, -6161, -1596, -5435, -1615, -5436, -1648, -1677, -6162, -6163, -1678, + -1679, -1684, -1695, -6164, -1720, -1799, -5437, -1803, -1822, -6165, -1865, -1869, -1886, -5438, -1994, -2067, + -5439, -6166, -2158, -2159, -2164, -2169, -5440, -6167, -5441, -6168, -2196, -2201, -2203, -2208, -2209, -2217, + -2221, -2224, -2225, -2237, -5442, -6169, -2238, -2241, -2252, -5443, -2256, -6170, -2288, -2290, -5444, -2296, + -2298, -2309, -2315, -2348, -6171, -6172, -2366, -2370, -5445, -5446, -5447, -2426, -2431, -2458, -5448, -6173, + -6174, -2496, -2497, -5449, -6175, -2527 + ], + [1, 3, 2681], + [0, -1654, -2198], + [0, -2319], + [0, -2460], + [0, -4864, -3214, -11467, -11468, -5270, -5271, -15723, -3634], + [1, 3, 308], + [0, -719], + [0, -4362], + [ + 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, + -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, + -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, + -5186, -5187, -5188, -5189 + ], + [1, 3, 1342], + [1, 3, 1453], + [1, 3, 1877], + [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293], + [1, 3, 2054], + [0, -1754], + [0, -2471], + [0, -3214, -8058, -8059, -4004, -3476, -2006, -1062, -3634, -8060, -8061, -4873, -1654], + [0, -2250], + [0, -5334], + [0, -1202, -1654], + [0, -1406], + [0, -1931], + [0, -3037], + [0, -3037, -652, -1942, -2094, -2100, -2399, -2410, -2541], + [0, -3161, -3481, -3098, -3162, -14919], + [0, -1967], + [0, -2410, -2409, -11398, -5406, -3691, -5728, -3690, -10796, -15307, -3445, -15308], + [1, 3, 10143], + [ + 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, + -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, + -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, + -5186, -5187, -5188, -5189, -15364, -15365 + ], + [ + 0, -3577, -3100, -2808, -5157, -5158, -659, -5159, -5160, -5161, -5155, -5164, -5165, -2410, -3214, -5176, + -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -15367 + ], + [ + 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, + -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, + -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, + -5186, -5187, -5188, -5189, -15364, -15368 + ], + [1, 3, 10608], + [0, -23], + [0, -3510, -3488, -681, -3489, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161], + [1, 24, 583], + [0, -1599, -3670, -3671, -3672, -856, -3673, -3674, -3262], + [0, -3770, -906, -2006, -775, -3771], + [0, -2080], + [ + 0, -519, -525, -4005, -4037, -1001, -4038, -4039, -4040, -1412, -1415, -1449, -1654, -4041, -4042, -1989, -4043, + -4044, -4045, -2319, -2322, -4004, -3634, -2410, -2490 + ], + [0, -703], + [0, -475, -856, -3262, -4258, -4259, -3690, -4260, -4261], + [0, -3158, -3095, -3098, -3099, -3161, -3100, -2006, -3159, -3160], + [0, -5014, -5015, -5016, -5017, -5018, -5019, -5020, -5021, -5022, -5023, -5024], + [0, -2469, -3664], + [0, -3262, -5355, -2501, -2006, -5371, -5372, -1599, -3098, -856], + [0, -1654, -664], + [0, -3037, -519, -2384, -2541], + [0, -567], + [0, -2267], + [0, -2541], + [0, -7475], + [0, -3136, -3037, -427, -428, -932, -940, -7476, -948, -958, -1415, -1942, -2375, -2391, -2402, -2410], + [0, -1415, -932, -2125, -2375, -190, -2410, -3136, -3037, -7742, -2411, -428, -427], + [0, -2320, -2322], + [0, -932, -1654], + [0, -1645], + [0, -932, -937, -1001, -1654, -1788], + [0, -1127, -1134, -1144, -1143, -1146], + [0, -1127, -1134, -1143, -1144, -1146], + [0, -664, -1654], + [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788], + [0, -756, -932, -940, -1344, -1415, -1534, -1889, -1942], + [0, -3037, -2410], + [ + 0, -664, -1654, -2379, -2501, -21, -23, -5870, -3035, -3136, -3037, -1771, -2503, -3621, -39, -43, -40, -15393, + -42 + ], + [0, -8096, -14182, -652, -725, -1942, -2094, -2100, -2125, -2322, -2399, -2410, -2541], + [0, -12449, -12613, -13616, -13615, -8897, -2363, -3214, -2410, -2006, -2476, -2299, -9608], + [0, -3951, -2410], + [1, 3, 313], + [0, -3183, -525, -3184, -3185, -3186, -526, -3116], + [0, -3183, -525, -3205, -3206, -3184, -3207, -3208, -3209, -3185, -3186, -3210, -527, -3116], + [0, -24], + [0, -753, -2082], + [ + 0, -3417, -3418, -3419, -3420, -3421, -3422, -3423, -714, -1028, -1039, -1107, -1442, -1449, -3424, -1600, + -3245, -1601, -3425, -3426, -1602, -3427, -3428, -3429, -3430, -1616, -1689, -3431, -3432, -1955, -1974, -1978, + -3433, -3434, -2446, -3435, -2550 + ], + [0, -2281, -3436, -2284], + [0, -687, -1599, -3437, -3438, -3328, -3439, -3440, -3441, -856, -3262], + [0, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161, -3510, -3488, -681, -3489], + [ + 0, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161, -3488, -681, -3489, + -3518, -3492 + ], + [0, -739, -721, -687], + [0, -3499, -475, -856, -3098, -3551, -3552, -3015, -1599], + [0, -775, -2162, -3575, -3576, -3577, -3161, -3578], + [0, -3634, -3440, -793, -3635, -3636], + [0, -3812, -3813, -3814, -3815, -3816, -3817, -856, -3818], + [0, -3821, -3822, -3823, -3824, -3825, -3826, -2006, -2019], + [0, -3836], + [0, -3827, -3837, -3838, -3167, -3839, -620], + [ + 0, -3136, -3037, -427, -428, -932, -933, -935, -940, -958, -959, -962, -967, -1415, -1424, -1942, -2375, -2376, + -2379, -2402, -2410 + ], + [0, -3161, -1334, -3690, -3578], + [0, -3037, -928, -1942, -2319, -2386, -2402], + [0, -687, -3958, -3999, -3099, -4000, -4001, -4002], + [ + 0, -1535, -1536, -687, -4107, -4108, -4109, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, + -4116, -4117 + ], + [1, 3, 825], + [0, -2006, -3159, -3119, -1613], + [0, -4055, -3690, -4140, -4141, -4142, -4143, -4144, -2410, -3018, -3445, -3577], + [0, -4165, -856, -4100, -3485, -4156, -3215, -2250], + [0, -4328, -4329, -1105, -4330, -1599, -3437, -856, -4331, -3264, -1764], + [0, -4332, -4335, -4345, -4346, -4340, -4347], + [0, -4332, -4336, -4337, -4338, -4339, -4340, -4344], + [0, -234, -3044, -5011, -3738, -865, -985, -1771, -1788, -5012, -2376, -5013, -2392, -2469, -2503, -2509], + [0, -5096], + [0, -5141, -4601, -4602, -3578, -3445], + [0, -5140], + [0, -3497, -3496, -3161, -3264, -5246, -3862, -3495, -5247, -3494], + [0, -433, -436], + [0, -1788, -1654, -932, -821, -966, -958, -968, -943, -963, -974], + [0, -475, -3161, -4865, -5495], + [0, -3690, -489, -4100, -856, -3691, -5728], + [0, -1047], + [1, 3, 1788], + [0, -2155], + [0, -581, -5110, -6120, -3173, -6129, -6130, -770], + [1, 3, 1820], + [1, 3, 1876], + [1, 3, 1878], + [0, -1309], + [0, -1592, -1654, -664], + [0, -6657, -6658, -4868, -4004, -6659], + [0, -2231], + [0, -6689, -2115], + [0, -714], + [0, -3966, -3957, -6722, -687, -4002, -6723, -6724, -4112, -714, -4672], + [0, -3214, -6784, -711, -3116], + [0, -2337], + [0, -465, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293], + [0, -711], + [0, -856, -1599], + [0, -865], + [0, -891], + [0, -5558, -3591, -633, -6340, -6408, -6916, -3870], + [0, -932, -8163, -727, -8164, -3214, -4900, -4795, -8165, -6434, -8166], + [0, -932, -5208, -3784], + [0, -429], + [0, -932, -5208, -3784, -3966, -3967, -3217, -7094, -6656, -1847, -6024, -4792], + [0, -932, -3784, -5208, -2006], + [0, -426], + [0, -1004, -3161, -6125, -3578, -1334, -3691, -5728, -3122, -3994, -3690], + [0, -1107, -5064, -5922, -8528], + [0, -1543, -2168], + [0, -1654, -2125, -2250], + [0, -1127, -1144], + [0, -510, -2125], + [0, -9219, -1654, -4004], + [0, -1127, -1132, -2541], + [0, -519, -1168, -1825, -2460, -2541], + [0, -2347], + [0, -1252, -1654, -2198, -2460], + [0, -2347, -1876], + [0, -1876, -2347], + [0, -519, -1825, -2460, -2541], + [0, -3037, -652, -1294, -1942, -2094, -2100, -2399, -2410, -2541], + [0, -1696, -596], + [0, -707, -1510], + [0, -1580], + [0, -1386, -9944, -9945, -3162, -3994, -9946, -752, -5269, -1861], + [0, -519, -9982, -2384, -2541], + [0, -4004, -3634, -1412, -4873, -3440], + [0, -4034], + [0, -5092, -3264, -5388, -5387], + [0, -1452], + [0, -2518], + [0, -1646], + [0, -1523, -10558, -5827, -7685, -7773, -4634, -6005, -4055], + [0, -3326, -351, -3266, -652, -932, -943, -1600, -3668, -1654, -2127], + [0, -4792, -6137, -6138, -6134, -9405, -11114, -4004, -4215, -8611], + [0, -1127], + [0, -687, -3957, -11725, -3673, -1764, -11726, -11727, -8907, -10227, -5921, -4107], + [ + 0, -3994, -1805, -1810, -11816, -11817, -11818, -11819, -11820, -11821, -7095, -4865, -3496, -7237, -7863, + -2435, -11822, -7303, -4377, -7091, -8421, -6599, -1958, -3258, -6656 + ], + [0, -6748, -4377, -5829, -3215, -6747, -687, -3957], + [0, -1654, -664, -666], + [0, -1841, -6120, -8449, -3173, -8450, -6121, -1791, -11437], + [0, -2541, -519, -2384], + [0, -1859, -11878, -11613], + [1, 3, 6920], + [0, -523], + [0, -635, -1934], + [1, 3, 7131], + [1, 3, 7300], + [0, -2006, -12452], + [0, -2006, -2034, -5271, -5270, -3162, -7085, -12561, -12562], + [1, 3, 7605], + [0, -2006, -3122, -10470, -9843, -1306, -10606], + [1, 3, 7706], + [1, 3, 7712], + [0, -2384, -2541], + [0, -12913], + [0, -2127, -12913, -4795, -1764, -3209], + [0, -2006, -3161, -1713, -3578, -3844, -3966, -3577, -3445, -687, -2455], + [1, 3, 8114], + [1, 3, 8321], + [1, 3, 8373], + [0, -9214, -2359, -2330, -13745, -6909, -11846, -13746], + [0, -2410, -856, -3262], + [0, -2444], + [0, -3100, -3161, -6211, -14339, -14340, -2466], + [0, -14357], + [0, -3113, -7646, -7641, -3673, -687, -3970, -3108, -3960, -3262, -3976, -3994], + [0, -3214, -3100, -2006, -3481], + [1, 24, 9789], + [0, -2662], + [1, 24, 10023], + [0, -1386, -3161, -2006, -3162, -3994, -9946, -3995, -752, -3997, -3998], + [0, -15309], + [1, 3, 10151], + [0, -856, -3262, -2476], + [ + 0, -15415, -15416, -15417, -15418, -11853, -10655, -15419, -6711, -15420, -15421, -4126, -15071, -2006, -15422, + -475, -2476, -5270, -3162, -11321, -15423, -15424 + ], + [0, -4258, -7641, -3100, -4865, -6342, -9290], + [0, -15445, -3445], + [0, -3037, -652, -1942, -2094, -2100, -2384, -2399, -2410, -2541], + [0, -1368], + [0, -525, -2006, -1368, -3161, -4729, -9850, -9613], + [0, -15627, -14386, -15628, -15629, -15630, -4864, -3634, -3636], + [1, 3, 10609], + [0, -15699, -3967, -6209, -2410, -15700, -15701, -3161, -11894], + [1, 3, 10660], + [1, 3, 10677], + [1, 3, 10691], + [1, 3, 10722], + [0, -1313, -3445, -15751, -15752, -3161, -9840], + [0, -2006, -3161, -15804, -15805], + [0, -1415, -932, -2127, -2375, -1942, -2410, -3136, -940, -967, -1419, -428, -427], + [ + 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -3959, -910, -3960, -3262, -3961, -3962, -3963, -1376, -3964, + -3965, -3214, -3824, -3966, -3967, -1965, -3968, -1966, -3969, -2063, -3970, -3971, -3108, -3972, -3973, -3974, + -3975, -3694, -2410, -3160, -3976, -2559, -3977 + ], + [ + 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, + -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, + -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, + -5186, -5187, -5188, -5189, -15364 + ], + [1, 3, 10858], + [0, -231, -2900], + [1, 24, 11236], + [ + 0, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, + -24, -25, -26, -27, -28, -29, -30, -31, -32, -33, -34, -35, -36, -37, -38, -39, -40, -41, -42, -43, -44, -45, + -46, -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -61, -62, -63, -64, -65, -66, -67, + -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -81, -82, -83, -84, -85, -86, -87, -88, -89, + -90, -91, -92, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -103, -104, -105, -106, -107, -108, -109, + -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, + -128, -129, -130, -131, -132, -133, -134, -135, -136, -137, -138, -139, -140, -141, -142, -143, -144, -145, + -146, -147, -148, -149, -150, -151, -152, -153, -154, -155, -156, -157, -158, -159, -160, -161, -162, -163, + -164, -165, -166, -167, -168, -169, -170, -171, -172, -173, -174, -175, -176, -177, -178, -179, -180, -181, + -182, -183, -184, -185, -186, -187, -188, -189, -190, -191, -192, -193, -194, -195, -196, -197, -198, -199, + -200, -201, -202, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -215, -216, -217, + -218, -219, -220, -221, -222, -223, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, -235, + -236, -237, -238, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, -253, + -254, -255, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, -270, -271, + -272, -273, -274, -275, -276, -277, -278, -279, -280, -281, -282, -283, -284, -285, -286, -287, -288, -289, + -290, -291, -292, -293, -294, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -305, -306, -307, + -308, -309, -310, -311, -312, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, + -326, -327, -328, -329, -330, -331, -332, -333, -334, -335, -336, -337, -338, -339, -340, -341, -342, -343, + -344, -345, -346, -347, -348, -349, -350, -351, -352, -353, -354, -355, -356, -357, -358, -359, -360, -361, + -362, -363, -364, -365, -366, -367, -368, -369, -370, -371, -372, -373, -374, -375, -376, -377, -378, -379, + -380, -381, -382, -383, -384, -385, -386, -387, -388, -389, -390, -391, -392, -393, -394, -395, -396, -397, + -398, -399, -400, -401, -402, -403, -404, -405, -406, -407, -408, -409, -410, -411, -412, -413, -414, -415, + -416, -417, -418, -419, -420, -421, -422, -423, -424, -425, -426, -427, -428, -429, -430, -431, -432, -433, + -434, -435, -436, -437, -438, -439, -440, -441, -442, -443, -444, -445, -446, -447, -448, -449, -450, -451, + -452, -453, -454, -455, -456, -457, -458, -459, -460, -461, -462, -463, -464, -465, -466, -467, -468, -469, + -470, -471, -472, -473, -474, -475, -476, -477, -478, -479, -480, -481, -482, -483, -484, -485, -486, -487, + -488, -489, -490, -491, -492, -493, -494, -495, -496, -497, -498, -499, -500, -501, -502, -503, -504, -505, + -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -517, -518, -519, -520, -521, -522, -523, + -524, -525, -526, -527, -528, -529, -530, -531, -532, -533, -534, -535, -536, -537, -538, -539, -540, -541, + -542, -543, -544, -545, -546, -547, -548, -549, -550, -551, -552, -553, -554, -555, -556, -557, -558, -559, + -560, -561, -562, -563, -564, -565, -566, -567, -568, -569, -570, -571, -572, -573, -574, -575, -576, -577, + -578, -579, -580, -581, -582, -583, -584, -585, -586, -587, -588, -589, -590, -591, -592, -593, -594, -595, + -596, -597, -598, -599, -600, -601, -602, -603, -604, -605, -606, -607, -608, -609, -610, -611, -612, -613, + -614, -615, -616, -617, -618, -619, -620, -621, -622, -623, -624, -625, -626, -627, -628, -629, -630, -631, + -632, -633, -634, -635, -636, -637, -638, -639, -640, -641, -642, -643, -644, -645, -646, -647, -648, -649, + -650, -651, -652, -653, -654, -655, -656, -657, -658, -659, -660, -661, -662, -663, -664, -665, -666, -667, + -668, -669, -670, -671, -672, -673, -674, -675, -676, -677, -678, -679, -680, -681, -682, -683, -684, -685, + -686, -687, -688, -689, -690, -691, -692, -693, -694, -695, -696, -697, -698, -699, -700, -701, -702, -703, + -704, -705, -706, -707, -708, -709, -710, -711, -712, -713, -714, -715, -716, -717, -718, -719, -720, -721, + -722, -723, -724, -725, -726, -727, -728, -729, -730, -731, -732, -733, -734, -735, -736, -737, -738, -739, + -740, -741, -742, -743, -744, -745, -746, -747, -748, -749, -750, -751, -752, -753, -754, -755, -756, -757, + -758, -759, -760, -761, -762, -763, -764, -765, -766, -767, -768, -769, -770, -771, -772, -773, -774, -775, + -776, -777, -778, -779, -780, -781, -782, -783, -784, -785, -786, -787, -788, -789, -790, -791, -792, -793, + -794, -795, -796, -797, -798, -799, -800, -801, -802, -803, -804, -805, -806, -807, -808, -809, -810, -811, + -812, -813, -814, -815, -816, -817, -818, -819, -820, -821, -822, -823, -824, -825, -826, -827, -828, -829, + -830, -831, -832, -833, -834, -835, -836, -837, -838, -839, -840, -841, -842, -843, -844, -845, -846, -847, + -848, -849, -850, -851, -852, -853, -854, -855, -856, -857, -858, -859, -860, -861, -862, -863, -864, -865, + -866, -867, -868, -869, -870, -871, -872, -873, -874, -875, -876, -877, -878, -879, -880, -881, -882, -883, + -884, -885, -886, -887, -888, -889, -890, -891, -892, -893, -894, -895, -896, -897, -898, -899, -900, -901, + -902, -903, -904, -905, -906, -907, -908, -909, -910, -911, -912, -913, -914, -915, -916, -917, -918, -919, + -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -932, -933, -934, -935, -936, -937, + -938, -939, -940, -941, -942, -943, -944, -945, -946, -947, -948, -949, -950, -951, -952, -953, -954, -955, + -956, -957, -958, -959, -960, -961, -962, -963, -964, -965, -966, -967, -968, -969, -970, -971, -972, -973, + -974, -975, -976, -977, -978, -979, -980, -981, -982, -983, -984, -985, -986, -987, -988, -989, -990, -991, + -992, -993, -994, -995, -996, -997, -998, -999, -1000, -1001, -1002, -1003, -1004, -1005, -1006, -1007, -1008, + -1009, -1010, -1011, -1012, -1013, -1014, -1015, -1016, -1017, -1018, -1019, -1020, -1021, -1022, -1023, -1024, + -1025, -1026, -1027, -1028, -1029, -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, + -1041, -1042, -1043, -1044, -1045, -1046, -1047, -1048, -1049, -1050, -1051, -1052, -1053, -1054, -1055, -1056, + -1057, -1058, -1059, -1060, -1061, -1062, -1063, -1064, -1065, -1066, -1067, -1068, -1069, -1070, -1071, -1072, + -1073, -1074, -1075, -1076, -1077, -1078, -1079, -1080, -1081, -1082, -1083, -1084, -1085, -1086, -1087, -1088, + -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -1103, -1104, + -1105, -1106, -1107, -1108, -1109, -1110, -1111, -1112, -1113, -1114, -1115, -1116, -1117, -1118, -1119, -1120, + -1121, -1122, -1123, -1124, -1125, -1126, -1127, -1128, -1129, -1130, -1131, -1132, -1133, -1134, -1135, -1136, + -1137, -1138, -1139, -1140, -1141, -1142, -1143, -1144, -1145, -1146, -1147, -1148, -1149, -1150, -1151, -1152, + -1153, -1154, -1155, -1156, -1157, -1158, -1159, -1160, -1161, -1162, -1163, -1164, -1165, -1166, -1167, -1168, + -1169, -1170, -1171, -1172, -1173, -1174, -1175, -1176, -1177, -1178, -1179, -1180, -1181, -1182, -1183, -1184, + -1185, -1186, -1187, -1188, -1189, -1190, -1191, -1192, -1193, -1194, -1195, -1196, -1197, -1198, -1199, -1200, + -1201, -1202, -1203, -1204, -1205, -1206, -1207, -1208, -1209, -1210, -1211, -1212, -1213, -1214, -1215, -1216, + -1217, -1218, -1219, -1220, -1221, -1222, -1223, -1224, -1225, -1226, -1227, -1228, -1229, -1230, -1231, -1232, + -1233, -1234, -1235, -1236, -1237, -1238, -1239, -1240, -1241, -1242, -1243, -1244, -1245, -1246, -1247, -1248, + -1249, -1250, -1251, -1252, -1253, -1254, -1255, -1256, -1257, -1258, -1259, -1260, -1261, -1262, -1263, -1264, + -1265, -1266, -1267, -1268, -1269, -1270, -1271, -1272, -1273, -1274, -1275, -1276, -1277, -1278, -1279, -1280, + -1281, -1282, -1283, -1284, -1285, -1286, -1287, -1288, -1289, -1290, -1291, -1292, -1293, -1294, -1295, -1296, + -1297, -1298, -1299, -1300, -1301, -1302, -1303, -1304, -1305, -1306, -1307, -1308, -1309, -1310, -1311, -1312, + -1313, -1314, -1315, -1316, -1317, -1318, -1319, -1320, -1321, -1322, -1323, -1324, -1325, -1326, -1327, -1328, + -1329, -1330, -1331, -1332, -1333, -1334, -1335, -1336, -1337, -1338, -1339, -1340, -1341, -1342, -1343, -1344, + -1345, -1346, -1347, -1348, -1349, -1350, -1351, -1352, -1353, -1354, -1355, -1356, -1357, -1358, -1359, -1360, + -1361, -1362, -1363, -1364, -1365, -1366, -1367, -1368, -1369, -1370, -1371, -1372, -1373, -1374, -1375, -1376, + -1377, -1378, -1379, -1380, -1381, -1382, -1383, -1384, -1385, -1386, -1387, -1388, -1389, -1390, -1391, -1392, + -1393, -1394, -1395, -1396, -1397, -1398, -1399, -1400, -1401, -1402, -1403, -1404, -1405, -1406, -1407, -1408, + -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1419, -1420, -1421, -1422, -1423, -1424, + -1425, -1426, -1427, -1428, -1429, -1430, -1431, -1432, -1433, -1434, -1435, -1436, -1437, -1438, -1439, -1440, + -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -1452, -1453, -1454, -1455, -1456, + -1457, -1458, -1459, -1460, -1461, -1462, -1463, -1464, -1465, -1466, -1467, -1468, -1469, -1470, -1471, -1472, + -1473, -1474, -1475, -1476, -1477, -1478, -1479, -1480, -1481, -1482, -1483, -1484, -1485, -1486, -1487, -1488, + -1489, -1490, -1491, -1492, -1493, -1494, -1495, -1496, -1497, -1498, -1499, -1500, -1501, -1502, -1503, -1504, + -1505, -1506, -1507, -1508, -1509, -1510, -1511, -1512, -1513, -1514, -1515, -1516, -1517, -1518, -1519, -1520, + -1521, -1522, -1523, -1524, -1525, -1526, -1527, -1528, -1529, -1530, -1531, -1532, -1533, -1534, -1535, -1536, + -1537, -1538, -1539, -1540, -1541, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -1549, -1550, -1551, -1552, + -1553, -1554, -1555, -1556, -1557, -1558, -1559, -1560, -1561, -1562, -1563, -1564, -1565, -1566, -1567, -1568, + -1569, -1570, -1571, -1572, -1573, -1574, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -1583, -1584, + -1585, -1586, -1587, -1588, -1589, -1590, -1591, -1592, -1593, -1594, -1595, -1596, -1597, -1598, -1599, -1600, + -1601, -1602, -1603, -1604, -1605, -1606, -1607, -1608, -1609, -1610, -1611, -1612, -1613, -1614, -1615, -1616, + -1617, -1618, -1619, -1620, -1621, -1622, -1623, -1624, -1625, -1626, -1627, -1628, -1629, -1630, -1631, -1632, + -1633, -1634, -1635, -1636, -1637, -1638, -1639, -1640, -1641, -1642, -1643, -1644, -1645, -1646, -1647, -1648, + -1649, -1650, -1651, -1652, -1653, -1654, -1655, -1656, -1657, -1658, -1659, -1660, -1661, -1662, -1663, -1664, + -1665, -1666, -1667, -1668, -1669, -1670, -1671, -1672, -1673, -1674, -1675, -1676, -1677, -1678, -1679, -1680, + -1681, -1682, -1683, -1684, -1685, -1686, -1687, -1688, -1689, -1690, -1691, -1692, -1693, -1694, -1695, -1696, + -1697, -1698, -1699, -1700, -1701, -1702, -1703, -1704, -1705, -1706, -1707, -1708, -1709, -1710, -1711, -1712, + -1713, -1714, -1715, -1716, -1717, -1718, -1719, -1720, -1721, -1722, -1723, -1724, -1725, -1726, -1727, -1728, + -1729, -1730, -1731, -1732, -1733, -1734, -1735, -1736, -1737, -1738, -1739, -1740, -1741, -1742, -1743, -1744, + -1745, -1746, -1747, -1748, -1749, -1750, -1751, -1752, -1753, -1754, -1755, -1756, -1757, -1758, -1759, -1760, + -1761, -1762, -1763, -1764, -1765, -1766, -1767, -1768, -1769, -1770, -1771, -1772, -1773, -1774, -1775, -1776, + -1777, -1778, -1779, -1780, -1781, -1782, -1783, -1784, -1785, -1786, -1787, -1788, -1789, -1790, -1791, -1792, + -1793, -1794, -1795, -1796, -1797, -1798, -1799, -1800, -1801, -1802, -1803, -1804, -1805, -1806, -1807, -1808, + -1809, -1810, -1811, -1812, -1813, -1814, -1815, -1816, -1817, -1818, -1819, -1820, -1821, -1822, -1823, -1824, + -1825, -1826, -1827, -1828, -1829, -1830, -1831, -1832, -1833, -1834, -1835, -1836, -1837, -1838, -1839, -1840, + -1841, -1842, -1843, -1844, -1845, -1846, -1847, -1848, -1849, -1850, -1851, -1852, -1853, -1854, -1855, -1856, + -1857, -1858, -1859, -1860, -1861, -1862, -1863, -1864, -1865, -1866, -1867, -1868, -1869, -1870, -1871, -1872, + -1873, -1874, -1875, -1876, -1877, -1878, -1879, -1880, -1881, -1882, -1883, -1884, -1885, -1886, -1887, -1888, + -1889, -1890, -1891, -1892, -1893, -1894, -1895, -1896, -1897, -1898, -1899, -1900, -1901, -1902, -1903, -1904, + -1905, -1906, -1907, -1908, -1909, -1910, -1911, -1912, -1913, -1914, -1915, -1916, -1917, -1918, -1919, -1920, + -1921, -1922, -1923, -1924, -1925, -1926, -1927, -1928, -1929, -1930, -1931, -1932, -1933, -1934, -1935, -1936, + -1937, -1938, -1939, -1940, -1941, -1942, -1943, -1944, -1945, -1946, -1947, -1948, -1949, -1950, -1951, -1952, + -1953, -1954, -1955, -1956, -1957, -1958, -1959, -1960, -1961, -1962, -1963, -1964, -1965, -1966, -1967, -1968, + -1969, -1970, -1971, -1972, -1973, -1974, -1975, -1976, -1977, -1978, -1979, -1980, -1981, -1982, -1983, -1984, + -1985, -1986, -1987, -1988, -1989, -1990, -1991, -1992, -1993, -1994, -1995, -1996, -1997, -1998, -1999, -2000, + -2001, -2002, -2003, -2004, -2005, -2006, -2007, -2008, -2009, -2010, -2011, -2012, -2013, -2014, -2015, -2016, + -2017, -2018, -2019, -2020, -2021, -2022, -2023, -2024, -2025, -2026, -2027, -2028, -2029, -2030, -2031, -2032, + -2033, -2034, -2035, -2036, -2037, -2038, -2039, -2040, -2041, -2042, -2043, -2044, -2045, -2046, -2047, -2048, + -2049, -2050, -2051, -2052, -2053, -2054, -2055, -2056, -2057, -2058, -2059, -2060, -2061, -2062, -2063, -2064, + -2065, -2066, -2067, -2068, -2069, -2070, -2071, -2072, -2073, -2074, -2075, -2076, -2077, -2078, -2079, -2080, + -2081, -2082, -2083, -2084, -2085, -2086, -2087, -2088, -2089, -2090, -2091, -2092, -2093, -2094, -2095, -2096, + -2097, -2098, -2099, -2100, -2101, -2102, -2103, -2104, -2105, -2106, -2107, -2108, -2109, -2110, -2111, -2112, + -2113, -2114, -2115, -2116, -2117, -2118, -2119, -2120, -2121, -2122, -2123, -2124, -2125, -2126, -2127, -2128, + -2129, -2130, -2131, -2132, -2133, -2134, -2135, -2136, -2137, -2138, -2139, -2140, -2141, -2142, -2143, -2144, + -2145, -2146, -2147, -2148, -2149, -2150, -2151, -2152, -2153, -2154, -2155, -2156, -2157, -2158, -2159, -2160, + -2161, -2162, -2163, -2164, -2165, -2166, -2167, -2168, -2169, -2170, -2171, -2172, -2173, -2174, -2175, -2176, + -2177, -2178, -2179, -2180, -2181, -2182, -2183, -2184, -2185, -2186, -2187, -2188, -2189, -2190, -2191, -2192, + -2193, -2194, -2195, -2196, -2197, -2198, -2199, -2200, -2201, -2202, -2203, -2204, -2205, -2206, -2207, -2208, + -2209, -2210, -2211, -2212, -2213, -2214, -2215, -2216, -2217, -2218, -2219, -2220, -2221, -2222, -2223, -2224, + -2225, -2226, -2227, -2228, -2229, -2230, -2231, -2232, -2233, -2234, -2235, -2236, -2237, -2238, -2239, -2240, + -2241, -2242, -2243, -2244, -2245, -2246, -2247, -2248, -2249, -2250, -2251, -2252, -2253, -2254, -2255, -2256, + -2257, -2258, -2259, -2260, -2261, -2262, -2263, -2264, -2265, -2266, -2267, -2268, -2269, -2270, -2271, -2272, + -2273, -2274, -2275, -2276, -2277, -2278, -2279, -2280, -2281, -2282, -2283, -2284, -2285, -2286, -2287, -2288, + -2289, -2290, -2291, -2292, -2293, -2294, -2295, -2296, -2297, -2298, -2299, -2300, -2301, -2302, -2303, -2304, + -2305, -2306, -2307, -2308, -2309, -2310, -2311, -2312, -2313, -2314, -2315, -2316, -2317, -2318, -2319, -2320, + -2321, -2322, -2323, -2324, -2325, -2326, -2327, -2328, -2329, -2330, -2331, -2332, -2333, -2334, -2335, -2336, + -2337, -2338, -2339, -2340, -2341, -2342, -2343, -2344, -2345, -2346, -2347, -2348, -2349, -2350, -2351, -2352, + -2353, -2354, -2355, -2356, -2357, -2358, -2359, -2360, -2361, -2362, -2363, -2364, -2365, -2366, -2367, -2368, + -2369, -2370, -2371, -2372, -2373, -2374, -2375, -2376, -2377, -2378, -2379, -2380, -2381, -2382, -2383, -2384, + -2385, -2386, -2387, -2388, -2389, -2390, -2391, -2392, -2393, -2394, -2395, -2396, -2397, -2398, -2399, -2400, + -2401, -2402, -2403, -2404, -2405, -2406, -2407, -2408, -2409, -2410, -2411, -2412, -2413, -2414, -2415, -2416, + -2417, -2418, -2419, -2420, -2421, -2422, -2423, -2424, -2425, -2426, -2427, -2428, -2429, -2430, -2431, -2432, + -2433, -2434, -2435, -2436, -2437, -2438, -2439, -2440, -2441, -2442, -2443, -2444, -2445, -2446, -2447, -2448, + -2449, -2450, -2451, -2452, -2453, -2454, -2455, -2456, -2457, -2458, -2459, -2460, -2461, -2462, -2463, -2464, + -2465, -2466, -2467, -2468, -2469, -2470, -2471, -2472, -2473, -2474, -2475, -2476, -2477, -2478, -2479, -2480, + -2481, -2482, -2483, -2484, -2485, -2486, -2487, -2488, -2489, -2490, -2491, -2492, -2493, -2494, -2495, -2496, + -2497, -2498, -2499, -2500, -2501, -2502, -2503, -2504, -2505, -2506, -2507, -2508, -2509, -2510, -2511, -2512, + -2513, -2514, -2515, -2516, -2517, -2518, -2519, -2520, -2521, -2522, -2523, -2524, -2525, -2526, -2527, -2528, + -2529, -2530, -2531, -2532, -2533, -2534, -2535, -2536, -2537, -2538, -2539, -2540, -2541, -2542, -2543, -2544, + -2545, -2546, -2547, -2548, -2549, -2550, -2551, -2552, -2553, -2554, -2555, -2556, -2557, -2558, -2559, -2560, + -2561, -2562, -2563, -2564, -2565, -2566, -2567, -2568, -2569, -2570, -2571, -2572, -2573, -2574, -2575, -2576, + -2577, -2578, -2579, -2580, -2581, -2582, -2583, -2584, -2585, -2586, -2587, -2588, -2589, -2590, -2591, -2592, + -2593, -2594, -2595, -2596, -2597, -2598, -2599, -2600, -2601, -2602, -2603, -2604, -2605, -2606, -2607, -2608, + -2609, -2610, -2611, -2612, -2613, -2614, -2615, -2616, -2617, -2618, -2619, -2620, -2621, -2622, -2623, -2624, + -2625, -2626, -2627, -2628, -2629, -2630, -2631, -2632, -2633, -2634, -2635, -2636, -2637, -2638, -2639, -2640, + -2641, -2642, -2643, -2644, -2645, -2646, -2647, -2648, -2649, -2650, -2651, -2652, -2653, -2654, -2655, -2656, + -2657, -2658, -2659, -2660, -2661, -2662, -2663, -2664, -2665, -2666, -2667, -2668, -2669, -2670, -2671, -2672, + -2673, -2674, -2675, -2676, -2677, -2678, -2679, -2680, -2681, -2682, -2683, -2684, -2685, -2686, -2687, -2688, + -2689, -2690, -2691, -2692, -2693, -2694, -2695, -2696, -2697, -2698, -2699, -2700, -2701, -2702, -2703, -2704, + -2705, -2706, -2707, -2708, -2709, -2710, -2711, -2712, -2713, -2714, -2715, -2716, -2717, -2718, -2719, -2720, + -2721, -2722, -2723, -2724, -2725, -2726, -2727, -2728, -2729, -2730, -2731, -2732, -2733, -2734, -2735, -2736, + -2737, -2738, -2739, -2740, -2741, -2742, -2743, -2744, -2745, -2746, -2747, -2748, -2749, -2750, -2751, -2752, + -2753, -2754, -2755, -2756, -2757, -2758, -2759, -2760, -2761, -2762, -2763, -2764, -2765, -2766, -2767, -2768, + -2769, -2770, -2771, -2772, -2773, -2774, -2775, -2776, -2777, -2778, -2779, -2780, -2781, -2782, -2783, -2784, + -2785, -2786, -2787, -2788, -2789, -2790, -2791, -2792, -2793, -2794, -2795, -2796, -2797, -2798, -2799, -2800, + -2801, -2802, -2803, -2804, -2805, -2806, -2807, -2808, -2809, -2810, -2811, -2812, -2813, -2814, -2815, -2816, + -2817, -2818, -2819, -2820, -2821, -2822, -2823, -2824, -2825, -2826, -2827, -2828, -2829, -2830, -2831, -2832, + -2833, -2834, -2835, -2836, -2837, -2838, -2839, -2840, -2841, -2842, -2843, -2844, -2845, -2846, -2847, -2848, + -2849, -2850, -2851, -2852, -2853, -2854, -2855, -2856, -2857, -2858, -2859, -2860, -2861, -2862, -2863, -2864, + -2865, -2866, -2867, -2868, -2869, -2870, -2871, -2872, -2873, -2874, -2875, -2876, -2877, -2878, -2879, -2880, + -2881, -2882, -2883, -2884, -2885, -2886, -2887, -2888, -2889, -2890, -2891, -2892, -2893, -2894, -2895, -2896, + -2897, -2898, -2899, -2900, -2901, -2902, -2903, -2904, -2905, -2906, -2907, -2908, -2909, -2910, -2911, -2912, + -2913, -2914, -2915, -2916, -2917, -2918, -2919, -2920, -2921, -2922, -2923, -2924, -2925, -2926, -2927, -2928, + -2929, -2930, -2931, -2932, -2933, -2934, -2935, -2936, -2937, -2938, -2939, -2940, -2941, -2942, -2943, -2944, + -2945, -2946, -2947, -2948, -2949, -2950, -2951, -2952, -2953, -2954, -2955, -2956, -2957, -2958, -2959, -2960, + -2961, -2962, -2963, -2964, -2965, -2966, -2967, -2968, -2969, -2970, -2971, -2972, -2973, -2974, -2975, -2976, + -2977, -2978, -2979, -2980, -2981, -2982, -2983, -2984, -2985, -2986, -2987, -2988, -2989, -2990, -2991, -2992, + -2993, -2994, -2995, -2996, -2997, -2998, -2999, -3000, -3001, -3002, -3003, -3004, -3005, -3006, -3007, -3008, + -3009, -3010, -3011, -3012, -3013, -3014 + ], + [ + 0, 295, 300, 304, 74, 309, 136, 136, 314, 74, 318, 74, 321, 324, 74, 326, 329, 333, 338, 343, 348, 353, 357, + 361, 365, 367, 372, 375, 380, 384, 389, 393, 398, 402, 407, 409, 412, 416, 418, 422, 425, 429, 432, 436, 17, + 441, 444, 447, 451, 453, 458, 462, 467, 470, 474, 477, 480, 483, 486, 489, 492, 495, 498, 501, 504, 507, 510, + 513, 516, 519, 522, 525, 528, 531, 534, 537, 540, 543, 546, 550, 553, 556, 559, 562, 565, 569, 572, 576, 579, + 103, 32, 103, 587, 591, 594, 597, 600, 604, 607, 610, 614, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, + 13, 12, 13, 12, 12, 12, 12, 12, 12, 12, 13, 13, 12, 17, 12, 12, 26, 17, 13, 12, 12, 12, 12, 12, 12, 13, 13, 13, + 61, 17, 12, 12, 17, 12, 17, 13, 624, 628, 633, 637, 641, 62, 17, 647, 652, 657, 662, 13, 666, 670, 12, 12, 12, + 26, 12, 12, 12, 12, 12, 26, 12, 12, 12, 17, 43, 12, 12, 12, 26, 12, 12, 12, 26, 12, 13, 675, 679, 682, 686, 690, + 693, 696, 698, 700, 704, 707, 712, 716, 721, 726, 730, 12, 12, 12, 12, 734, 12, 12, 12, 12, 26, 13, 12, 12, 12, + 12, 12, 12, 12, 12, 17, 12, 737, 742, 747, 751, 756, 761, 765, 770, 772, 776, 781, 785, 788, 793, 798, 12, 61, + 802, 806, 26, 13, 811, 32, 814, 818, 822, 159, 827, 830, 834, 838, 842, 845, 848, 851, 854, 858, 863, 866, 870, + 874, 879, 883, 886, 891, 894, 898, 902, 906, 910, 915, 918, 921, 924, 929, 933, 937, 940, 944, 32, 948, 32, 62, + 32, 951, 954, 957, 960, 964, 968, 971, 975, 979, 982, 985, 988, 992, 996, 1001, 1006, 1011, 1014, 1018, 1021, + 1024, 1027, 1031, 1035, 1039, 12, 12, 13, 12, 13, 17, 12, 12, 52, 12, 12, 43, 12, 17, 12, 12, 12, 12, 12, 12, + 52, 12, 26, 26, 12, 12, 12, 1045, 1049, 1053, 1057, 1061, 1066, 1070, 1075, 1080, 1085, 1090, 1095, 1100, 1105, + 1110, 1115, 1119, 1124, 1128, 1131, 1134, 1138, 1143, 1148, 1153, 1158, 17, 17, 13, 1163, 1168, 1171, 12, 12, + 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 12, 13, 12, 12, 12, 12, 1173, 1178, + 1181, 1185, 1190, 1195, 1200, 1205, 1210, 1214, 1218, 1222, 1225, 1228, 1232, 1235, 1238, 1242, 1246, 1250, + 1253, 1257, 1261, 1264, 1266, 52, 1270, 1275, 1279, 1283, 1288, 1291, 1294, 1298, 1301, 1305, 1308, 1313, 1318, + 1323, 1328, 1333, 1338, 12, 12, 12, 78, 13, 17, 26, 12, 13, 12, 12, 78, 17, 1343, 1347, 1352, 1356, 43, 1360, + 1363, 1368, 1372, 1375, 66, 1381, 1386, 1391, 53, 1397, 1401, 1406, 1410, 1412, 1415, 1419, 1422, 1426, 1430, + 1434, 1438, 1441, 1446, 1450, 79, 1454, 1459, 1463, 1468, 1473, 1476, 1480, 1484, 1488, 1492, 53, 1497, 1502, + 1507, 1512, 1515, 46, 1520, 1525, 1528, 1533, 1536, 1541, 1545, 1549, 1553, 1557, 1560, 1565, 1570, 1575, 1579, + 1584, 1589, 1594, 1598, 1603, 13, 1608, 1612, 1616, 1620, 1624, 1627, 1630, 1633, 1637, 1641, 1645, 1650, 1652, + 1657, 1662, 1667, 1672, 1675, 1677, 1679, 1682, 1685, 1690, 1693, 1697, 1699, 1702, 1705, 1709, 1712, 1714, + 1717, 1722, 1726, 1730, 1733, 1736, 1739, 1742, 1745, 1748, 1752, 1755, 1758, 1762, 1766, 1769, 1773, 1778, 30, + 1784, 176, 1789, 1793, 1797, 1802, 1806, 1809, 1812, 1817, 179, 1821, 20, 1827, 18, 46, 18, 1833, 1837, 1842, + 1845, 1849, 1853, 1858, 1863, 1868, 1871, 46, 20, 20, 46, 53, 53, 54, 180, 80, 181, 80, 1879, 1883, 1887, 1891, + 1894, 1899, 1903, 1906, 1910, 1913, 17, 30, 20, 1918, 1923, 1928, 1933, 20, 1937, 1942, 1947, 1952, 1956, 1961, + 1965, 1968, 1973, 1978, 1982, 80, 1987, 1990, 1994, 1999, 2003, 2008, 2013, 2018, 2022, 2027, 2030, 2035, 2040, + 2043, 2046, 2049, 82, 2055, 2059, 18, 2062, 2066, 2071, 2074, 2078, 2082, 46, 2086, 2089, 2093, 2098, 30, 13, + 2103, 2108, 2113, 2118, 2121, 2125, 2129, 2133, 2138, 2141, 2144, 2148, 2152, 2157, 2162, 2165, 2169, 2173, + 2177, 2180, 2184, 2188, 2193, 2198, 2202, 2206, 2208, 2212, 2216, 2220, 2225, 2229, 2234, 2239, 2242, 2245, + 2250, 2253, 2257, 2262, 2266, 2270, 2275, 2279, 2284, 2288, 2292, 2295, 2299, 2302, 2307, 2312, 2316, 2321, + 2324, 2327, 2332, 2336, 2340, 2344, 2348, 103, 2352, 2356, 2360, 2364, 2368, 2372, 2376, 2381, 2384, 2389, 2394, + 2398, 2401, 2406, 2411, 2414, 2419, 2424, 2429, 2434, 2439, 2442, 2447, 2451, 2456, 2461, 2464, 2468, 2472, + 2477, 2482, 13, 2487, 2491, 2494, 2498, 2503, 2508, 2512, 2516, 2521, 2526, 2531, 2536, 2540, 2544, 2549, 2554, + 2558, 2563, 2568, 2572, 2576, 2580, 2584, 2588, 2592, 2596, 2600, 2605, 2610, 2615, 2619, 2624, 2628, 82, 2631, + 2634, 2638, 2641, 2644, 2648, 2653, 2656, 2661, 2664, 2669, 2673, 2677, 69, 2682, 2686, 2690, 2695, 2698, 2702, + 2707, 2712, 2717, 2722, 2726, 54, 2730, 2733, 20, 2738, 2742, 20, 2747, 2750, 2754, 2757, 2762, 30, 2765, 2769, + 2773, 2776, 2780, 2785, 2790, 2794, 2797, 2802, 2807, 2811, 2815, 2819, 2824, 2829, 2834, 2838, 2843, 2848, + 2852, 2857, 2861, 2865, 2869, 2874, 2879, 2884, 2889, 2894, 2898, 2903, 2908, 2911, 2915, 2920, 2925, 2929, + 2933, 2937, 2941, 2944, 2948, 2952, 2957, 2962, 2967, 47, 2973, 2976, 2981, 2986, 2990, 2993, 2997, 26, 3002, + 3007, 3012, 3015, 3020, 3025, 3030, 3035, 3037, 3041, 3045, 3049, 3054, 3059, 3063, 3066, 3070, 3074, 3078, + 3082, 3086, 3090, 3095, 3100, 3105, 3109, 3113, 3117, 3121, 52, 3125, 3129, 3132, 3136, 3141, 3145, 3149, 3154, + 3157, 3161, 3166, 3170, 3173, 3176, 3180, 3184, 3188, 3193, 3197, 3202, 3206, 3211, 3216, 3221, 3226, 3229, + 3234, 3238, 3243, 3248, 3253, 3256, 3261, 3266, 3271, 3276, 3280, 3284, 3288, 3292, 3297, 3301, 3305, 3310, + 3315, 3319, 3322, 3327, 3332, 3337, 3342, 3346, 3351, 3356, 3360, 3363, 3367, 3370, 3375, 3379, 3382, 3385, + 3389, 3394, 3399, 3404, 3409, 3413, 3417, 54, 3421, 3426, 3430, 3434, 13, 3438, 3442, 3446, 3451, 3456, 3461, + 3466, 3470, 3475, 3479, 3484, 3489, 3493, 3498, 3502, 79, 79, 3507, 3510, 3515, 3520, 3524, 3528, 3532, 3535, + 3540, 3543, 3548, 3552, 3557, 3561, 47, 3565, 3569, 3573, 3577, 3581, 3585, 3588, 3592, 3597, 3601, 3604, 3609, + 3614, 12, 3619, 3624, 3629, 3633, 3637, 3641, 3644, 3648, 3652, 3657, 3660, 3665, 3670, 3675, 3679, 3682, 3686, + 3691, 3696, 3701, 3705, 3710, 3715, 30, 3719, 3724, 13, 3729, 3734, 3738, 3743, 3747, 3751, 3755, 47, 3759, + 3763, 3767, 3770, 3775, 3778, 3783, 3788, 3793, 3797, 18, 3801, 3804, 3807, 3810, 3814, 3819, 3823, 3827, 3832, + 43, 3837, 3841, 3845, 3849, 3852, 3856, 3861, 3866, 3871, 3876, 3881, 66, 3886, 3890, 66, 20, 3894, 3897, 3900, + 3903, 3908, 3912, 3917, 3922, 3925, 3930, 3934, 3937, 3942, 3946, 3951, 3954, 3959, 3963, 3967, 3971, 3975, + 3980, 3983, 3987, 3991, 3996, 4000, 4003, 4008, 4013, 4018, 4023, 4028, 4033, 4037, 4041, 4045, 4050, 4053, + 4057, 4062, 4066, 4069, 4074, 4079, 4084, 4088, 4093, 4097, 4102, 4107, 4112, 4116, 4121, 4125, 4130, 4135, + 4139, 4143, 4147, 4151, 4156, 4160, 4165, 4168, 4173, 4177, 4181, 4185, 4190, 4194, 4199, 4204, 4209, 4214, + 4219, 4224, 4229, 4234, 4237, 4241, 4245, 4250, 4255, 4260, 4265, 4270, 4275, 4280, 4285, 4290, 4295, 4300, + 4304, 4309, 4313, 4318, 4323, 4328, 4333, 4338, 4343, 4348, 4352, 4357, 4362, 4367, 4372, 4376, 4381, 4385, + 4390, 4394, 4399, 4404, 4409, 4413, 4418, 4423, 4428, 4433, 4438, 4441, 4446, 4451, 4455, 4460, 4465, 4469, + 4474, 4478, 4483, 4487, 4491, 4496, 4501, 4506, 4511, 4516, 4521, 4526, 4530, 4534, 4539, 4544, 4548, 4553, + 4558, 4562, 4567, 4572, 4577, 4582, 4587, 4591, 4596, 4600, 47, 18, 4605, 18, 4608, 4612, 4615, 4620, 4625, + 4630, 4635, 4640, 4644, 4649, 4652, 4656, 30, 4661, 4665, 4669, 4673, 4676, 4679, 4682, 4687, 4691, 4695, 4697, + 180, 18, 4700, 4703, 4708, 4712, 4716, 30, 4720, 4724, 4728, 4733, 4737, 4742, 4746, 4750, 4755, 4760, 4765, + 4770, 4775, 4779, 4783, 4787, 4791, 4796, 4801, 13, 4806, 4810, 4814, 4819, 4824, 4829, 4833, 4837, 4840, 4845, + 4848, 4852, 4856, 4859, 4864, 4868, 4872, 4877, 4882, 4886, 43, 4890, 4895, 4900, 4904, 4908, 4912, 4915, 4919, + 4924, 13, 4929, 4932, 4937, 4942, 4946, 4949, 26, 4951, 4956, 4960, 4963, 4967, 80, 4972, 4976, 4980, 4984, + 4988, 4992, 4996, 5001, 5005, 5010, 5015, 5018, 5022, 5026, 5030, 5034, 5039, 5042, 5046, 17, 5050, 17, 5054, + 5058, 5061, 5065, 5069, 5074, 5077, 5082, 5086, 5090, 5095, 5100, 5104, 5107, 5111, 5114, 5119, 5123, 5126, + 5129, 5133, 5137, 5142, 5147, 5151, 5154, 5158, 5162, 5166, 5170, 5175, 5178, 5181, 5186, 5191, 5196, 5199, + 5202, 5206, 5210, 5215, 5219, 5224, 5229, 5233, 5238, 5243, 5247, 5251, 5255, 5259, 5263, 5267, 5271, 5276, + 5279, 5282, 5287, 5292, 5295, 5299, 5302, 5306, 5310, 5315, 5320, 5324, 5328, 5333, 5337, 5341, 5346, 5351, + 5356, 5359, 5363, 5368, 5372, 5377, 5382, 5386, 5391, 5395, 5400, 5405, 5409, 5414, 5418, 5423, 5426, 5431, + 5435, 5439, 5442, 5445, 5450, 5454, 5459, 5464, 5468, 5472, 5477, 5482, 5487, 5491, 5496, 5501, 5506, 5511, + 5516, 46, 20, 54, 5521, 5526, 20, 5530, 5534, 5538, 5542, 5546, 5551, 5555, 5559, 5564, 5568, 5572, 5576, 5581, + 5585, 5589, 5594, 5598, 5601, 5606, 5611, 5615, 5619, 5624, 5629, 5633, 5638, 5643, 5646, 5651, 5656, 5659, + 5664, 5667, 5670, 5673, 5676, 5679, 5682, 5685, 5688, 5691, 5694, 5697, 5700, 5703, 5706, 5709, 5712, 5715, + 5718, 5721, 5724, 5727, 5730, 5734, 5737, 5740, 5745, 5750, 5755, 5760, 5764, 5768, 5773, 5777, 5782, 5786, 18, + 5790, 5795, 5800, 5805, 5810, 5815, 5820, 5824, 5827, 5832, 5837, 20, 5841, 5844, 5848, 5852, 5857, 5861, 5864, + 5867, 5872, 5876, 5880, 5884, 5889, 5894, 5898, 5902, 5905, 5908, 18, 5913, 5917, 5921, 5926, 5931, 13, 5935, + 5939, 5944, 5948, 5952, 5957, 5961, 5964, 5966, 5970, 5974, 5977, 5982, 5985, 5989, 5993, 5998, 6002, 6007, + 6011, 6015, 6018, 6023, 6028, 6032, 69, 20, 6036, 6041, 6045, 6049, 6053, 6058, 6063, 6068, 6073, 6076, 6080, + 6085, 6089, 6092, 6096, 6100, 6104, 6109, 6113, 6118, 6123, 6127, 6132, 6137, 6142, 6146, 6150, 6155, 47, 6160, + 20, 6162, 6167, 6170, 6175, 82, 6180, 6185, 6189, 6194, 6199, 6203, 6207, 6211, 6216, 6221, 53, 6225, 6228, + 6232, 6237, 26, 6240, 6245, 6250, 6255, 6260, 6264, 6268, 6273, 6278, 6282, 6287, 6292, 6297, 6300, 6303, 6307, + 6312, 6315, 6320, 82, 6325, 6330, 6334, 6338, 6343, 6347, 6352, 6355, 6360, 6365, 6369, 6374, 6379, 6384, 6389, + 6394, 6399, 6404, 6409, 6411, 6416, 6421, 6425, 6430, 6435, 6439, 6443, 6447, 6451, 6456, 6461, 6466, 6470, + 6475, 6478, 6483, 6487, 6491, 6494, 6498, 6501, 61, 6504, 6509, 6514, 6519, 6523, 6526, 6531, 6535, 6540, 6544, + 6548, 6552, 6556, 6561, 6566, 6571, 6575, 6578, 6583, 6588, 6592, 6597, 6600, 6604, 6607, 6611, 6616, 6621, + 6626, 6628, 6632, 6636, 6640, 6644, 6648, 6653, 18, 6658, 6662, 6666, 18, 6671, 6676, 6679, 6684, 6689, 6694, + 6699, 6701, 6705, 6708, 6712, 6717, 6722, 6727, 6732, 6737, 6740, 6744, 20, 6748, 6751, 6756, 6761, 6765, 6770, + 6774, 6779, 6784, 6789, 6794, 6798, 6802, 6806, 6811, 6815, 6820, 6824, 6827, 6832, 6837, 6841, 6844, 6848, + 6851, 6855, 6858, 6861, 6864, 6868, 6871, 6875, 6880, 6885, 6888, 6893, 6898, 6902, 6906, 6911, 6913, 6916, 240, + 6921, 6925, 6930, 18, 6934, 6939, 6944, 6947, 6950, 6953, 6958, 6963, 6967, 6971, 6975, 6979, 6984, 78, 6987, + 6991, 18, 6995, 6999, 7004, 7008, 7013, 7018, 7022, 7027, 7030, 7035, 7039, 7043, 7047, 7051, 7054, 7057, 7061, + 7065, 7070, 7074, 7079, 7083, 7088, 7092, 7097, 7100, 7103, 7107, 7112, 7116, 7119, 7123, 7128, 243, 7132, 7134, + 7136, 243, 7139, 7142, 7146, 7150, 7154, 7157, 7160, 7164, 7169, 7171, 7175, 7179, 7184, 7188, 7193, 7198, 7202, + 52, 7205, 7210, 7214, 7219, 7223, 7227, 7230, 7235, 7239, 7243, 7247, 7252, 7257, 7261, 7266, 7268, 7272, 7276, + 7280, 7284, 7288, 7292, 7295, 244, 7304, 7308, 7312, 7317, 7322, 7327, 7331, 7336, 7341, 7344, 7348, 7352, 7356, + 7360, 7364, 7367, 7370, 7375, 7380, 7384, 7388, 7391, 7396, 7401, 7406, 7411, 7416, 7420, 7424, 7428, 7431, + 7434, 7439, 7443, 7446, 7450, 7455, 7460, 12, 7465, 7467, 7470, 7474, 7479, 7482, 7486, 7491, 7496, 7501, 7505, + 7509, 7513, 7517, 7520, 7525, 7529, 7534, 7538, 7543, 13, 7548, 7552, 7556, 7558, 7561, 7566, 7571, 7576, 7579, + 7583, 7588, 7592, 7596, 7600, 247, 7606, 7611, 7615, 7619, 7623, 7626, 7631, 7636, 7641, 7646, 7650, 7654, 7658, + 7663, 7667, 7672, 7677, 7682, 7686, 7690, 7694, 7699, 7703, 249, 7707, 250, 7713, 7717, 7721, 7724, 7728, 7732, + 7737, 7741, 7746, 7751, 7756, 7761, 7765, 7769, 7773, 7776, 7780, 7785, 7790, 7795, 7799, 7804, 7809, 7813, + 7818, 7823, 7827, 7831, 7836, 7841, 7846, 7850, 7855, 7860, 7865, 7870, 7873, 7878, 7883, 7888, 17, 7893, 7896, + 17, 7900, 7904, 7908, 7913, 7916, 7920, 7925, 7930, 7933, 7937, 7941, 7944, 7949, 7953, 7958, 7963, 7967, 7972, + 7976, 7981, 7985, 7990, 7994, 7999, 8003, 8007, 8011, 8015, 8020, 8025, 8030, 8035, 8040, 8045, 8050, 8053, + 8057, 8061, 8066, 8071, 8075, 8078, 61, 8082, 8085, 8090, 181, 47, 8095, 8100, 8105, 8109, 255, 8115, 247, 8118, + 8123, 18, 8127, 8132, 8136, 8139, 8144, 8149, 8153, 8158, 8161, 8165, 8170, 8174, 8179, 8183, 8187, 8192, 8197, + 8201, 13, 8204, 8209, 8214, 8217, 8221, 8226, 8230, 250, 8235, 8240, 8245, 8249, 18, 8254, 18, 8258, 8263, 244, + 8268, 240, 20, 8272, 8277, 8281, 8286, 8289, 8293, 8296, 20, 8301, 8304, 8309, 30, 8313, 8317, 256, 47, 8322, + 8326, 8331, 8335, 8339, 8344, 8347, 8350, 8354, 8358, 8361, 20, 18, 8366, 8370, 30, 257, 8374, 8377, 8382, 8387, + 8392, 8397, 8401, 8404, 8409, 46, 8414, 8419, 8424, 18, 8428, 8433, 8438, 8441, 8443, 8447, 8451, 8455, 8458, + 8462, 8467, 8471, 8476, 8480, 8483, 8487, 8491, 8496, 8501, 8504, 8509, 8514, 8519, 8524, 8528, 8533, 8538, + 8542, 8547, 8552, 8556, 30, 8561, 20, 8564, 8569, 8573, 8578, 257, 54, 8583, 18, 8587, 8592, 8597, 8601, 8606, + 8611, 8616, 8621, 8626, 8629, 54, 8634, 8639, 8642, 8647, 8650, 255, 8653, 8658, 8662, 8665, 8669, 8674, 8677, + 8682, 8686, 8691, 8695, 8699, 8703, 8707, 8712, 8715, 8720, 8724, 8728, 8733, 249, 8738, 8743, 8748, 8753, 8758, + 8763, 8768, 8772, 8776, 8780, 8784, 176, 8789, 8792, 8795, 8799, 8804, 8808, 8811, 8815, 8818, 8822, 8825, 8828, + 8833, 8837, 8841, 8844, 8849, 18, 69, 8854, 8859, 53, 8862, 8865, 8870, 8875, 8878, 8883, 8888, 8893, 8898, + 8903, 8908, 8911, 8916, 8920, 8925, 8929, 8934, 8937, 8942, 8946, 8950, 8954, 8958, 8963, 8967, 8971, 8976, + 8981, 8986, 8989, 8994, 8998, 9002, 9007, 9010, 9013, 9018, 9023, 9026, 9030, 9034, 9038, 9043, 9048, 9053, + 9058, 9062, 9067, 9072, 9076, 9080, 9083, 9087, 9091, 9095, 9100, 9104, 9109, 9113, 9118, 30, 9121, 9125, 9130, + 9133, 9138, 9142, 9146, 9151, 43, 9156, 9161, 9166, 9170, 9174, 9176, 9180, 9185, 9189, 9194, 9198, 9202, 9207, + 9211, 9215, 9219, 9223, 66, 9226, 9230, 9235, 9240, 9245, 9250, 9253, 9258, 9262, 9267, 9272, 9277, 9282, 9286, + 9291, 9293, 9297, 9300, 9304, 9308, 9312, 9316, 9321, 9325, 9329, 9333, 9337, 9341, 9344, 9348, 9352, 9356, + 9360, 9365, 9369, 9374, 69, 66, 256, 9379, 179, 69, 9383, 9387, 9392, 9397, 9402, 9406, 9411, 9415, 9420, 9424, + 9428, 9432, 9437, 9442, 9447, 9451, 9454, 9458, 9461, 9465, 9470, 9475, 9480, 9485, 9488, 9491, 79, 9496, 17, + 9501, 9505, 9509, 9514, 9519, 9524, 9529, 9534, 9537, 9540, 9544, 9547, 9552, 9556, 9561, 9566, 9570, 9573, + 9577, 9581, 9586, 9590, 52, 9594, 9598, 9601, 9606, 9610, 9614, 9617, 9622, 9626, 9630, 9635, 9639, 9642, 9647, + 9652, 9655, 9660, 9664, 9667, 9671, 9676, 9681, 9686, 9690, 9694, 9698, 9703, 9706, 9711, 9714, 9718, 9722, + 9726, 9730, 9735, 9739, 9742, 9747, 9751, 9756, 9761, 9765, 9770, 9774, 9779, 9784, 32, 32, 32, 62, 32, 265, + 265, 9791, 9794, 9798, 9802, 9806, 62, 62, 32, 9811, 13, 17, 13, 26, 9815, 13, 61, 9818, 9823, 9827, 9831, 9836, + 9840, 9843, 9848, 9852, 9857, 9862, 9865, 9869, 9873, 9877, 9882, 9887, 9891, 9895, 9899, 9904, 9909, 9914, + 9919, 9923, 9928, 9933, 9938, 9942, 9945, 9948, 9952, 9956, 9960, 9963, 9967, 9970, 9973, 9977, 9980, 159, 9983, + 9986, 9991, 9996, 10000, 10005, 10010, 10013, 10016, 10020, 267, 10025, 10028, 10032, 10037, 10041, 10046, + 10050, 10054, 10059, 10064, 10068, 10073, 10078, 10082, 10086, 10090, 10094, 10098, 10101, 10103, 10108, 10112, + 10117, 43, 10121, 10126, 10131, 10136, 10139, 96, 10144, 10147, 10149, 270, 10152, 10154, 10159, 10162, 10166, + 10169, 10172, 10175, 10178, 10181, 10184, 10188, 10191, 10195, 10198, 10202, 10206, 10209, 10213, 10215, 10218, + 10222, 10226, 10229, 10234, 10238, 10242, 10247, 10251, 10254, 10257, 10260, 10264, 10266, 10270, 10273, 10277, + 10281, 10285, 10290, 10295, 10299, 10303, 10307, 10311, 10315, 10319, 10321, 10324, 10328, 10333, 10338, 10342, + 10347, 10351, 10354, 10359, 10362, 10366, 10369, 10372, 10377, 10380, 10385, 10389, 10393, 10396, 10399, 10402, + 10405, 10409, 10414, 10418, 10423, 10428, 10433, 10438, 10443, 10446, 10449, 10453, 10458, 10462, 10465, 10469, + 10473, 10478, 10483, 10487, 10492, 10496, 10500, 10503, 10507, 10511, 10516, 10521, 10526, 10531, 10536, 10540, + 10543, 10546, 10549, 10553, 10558, 10563, 10567, 10571, 10574, 10578, 10583, 10588, 10591, 10595, 10599, 10602, + 10605, 100, 279, 270, 10610, 10615, 10620, 10625, 267, 10629, 10633, 10636, 10641, 10645, 10648, 10653, 10657, + 281, 10661, 10666, 10670, 96, 10675, 282, 282, 100, 10678, 10682, 100, 10686, 283, 10693, 10698, 10703, 10707, + 10711, 10714, 10716, 279, 10719, 284, 284, 10723, 96, 10726, 10729, 10733, 10738, 10740, 10744, 10749, 10753, + 10757, 10761, 10765, 10770, 10773, 10778, 10782, 10787, 10791, 10794, 10798, 10801, 10804, 10809, 10813, 10818, + 10822, 10827, 10831, 10835, 10837, 10842, 10845, 10849, 10851, 10856, 290, 10859, 10862, 10866, 10870, 10874, + 10879, 10883, 10888, 10892, 10895, 10898, 10901, 10906, 10910, 10914, 10917, 10921, 10925, 10929, 10933, 10938, + 283, 10942, 10945, 10950, 10954, 10958, 10962, 10967, 10969, 10974, 10977, 10982, 10987, 10992, 10996, 290, + 11000, 11003, 11007, 11010, 11012, 11017, 11019, 11023, 11028, 11033, 11037, 11042, 11046, 11050, 11053, 11058, + 11061, 11065, 11068, 11071, 11076, 11081, 11086, 11090, 11095, 11099, 11104, 11108, 11113, 11118, 11123, 11128, + 11132, 11136, 96, 100, 11141, 11146, 11150, 11154, 11159, 11163, 11166, 11170, 11173, 11177, 11181, 11185, + 11188, 11191, 11194, 11196, 11199, 11204, 11209, 281, 11213, 11217, 78, 11221, 11224, 11229, 11233, 292, 11237, + 11240, 11244, 11248, 11251, 11254, 292, 11259, 11262, 11265 + ], + [1, 3, 296], + [0, 297, 298, 299, 10], + [0, -809, -2387, -3019, -682, -1967, -3020, -567, -3021, -3022, -1552, -2055, -3023, -1311, -2030, -2113, -3024], + [ + 0, -705, -888, -1616, -664, -1107, -1521, -2162, -2466, -668, -1344, -3025, -1471, -1654, -2006, -2074, -2210, + -2550, -915, -932, -1548, -1666, -2093, -2177, -2388, -2439, -674, -795, -928, -1889, -2379, -2501, -522, -679, + -923, -1077, -1376, -1646, -1783, -1942, -3026, -2378, -3027, -3028, -1003, -3029, -1978, -3030, -2016, -2019, + -3031, -2281, -2376, -3032, -527, -778, -3033, -3034, -2410, -23, -3035, -3036, -3037, -1482, -1534, -1600, + -3038, -2040, -3039, -3040, -3041, -518, -528, -534, -1543, -1588, -1890, -1938, -2043, -2275, -2516, -305, + -3042, -3043, -3044, -1492, -3045, -3046, -556, -1906, -1908, -3047, -2285, -86, -3048, -3049, -3050, -2015, + -3051, -263, -3052, -3053, -558, -3054, -3055, -1962, -2044, -3056, -3057, -3058, -3059, -3060, -3061, -3062, + -560, -1601, -2505, -3063, -3064, -969, -977, -1491, -2052, -3065, -3066, -440, -3067, -562, -3068, -958, -3069, + -3070, -539, -3071, -1475, -739, -3072, -940, -962, -963, -1490, -3073, -3074, -3075, -916, -2013, -2017, -3076, + -3077, -3078, -3079, -1899, -3080, -428, -1897, -3081, -3082, -1017, -3083, -3084, -3085, -3086, -3087, -555, + -535, -3088, -3089, -427, -661, -3090, -3091, -26, -547, -741, -3092 + ], + [0, -3093, -3094, -2634, -3095, -3096, -2006, -3097, -3098, -3099, -3100], + [1, 3, 301], + [0, 302, 0, 303, 11], + [0, -469, -2153, -1864, -2231, -470, -1461], + [0, -3101, -3102, -475, -3103, -3104, -3105], + [1, 3, 305], + [0, 306, 0, 307, 9], + [0, -1816, -2153, -1461, -1588, -2], + [0, -3101, -3102, -475, -3106, -3107, -3104, -3108, -3109, -3105, -3110, -3111], + [0, 33, 0, 7, 5], + [1, 3, 310], + [0, 311, 0, 312, 4], + [0, -2387, -1839], + [0, -475, -3112, -3095, -3113, -3114], + [0, 33, 0, 7, 4], + [1, 3, 315], + [0, 316, 37, 317, 4], + [0, -2387, -2550, -2177, -679, -23, -2080, -742, -3115], + [0, -475, -3116], + [1, 3, 319], + [0, 320, 0, 7, 11], + [0, -2387, -3117], + [1, 3, 322], + [0, 33, 0, 323, 9], + [0, -475, -3118, -3119, -3098], + [1, 3, 325], + [0, 33, 0, 7, 6], + [1, 3, 327], + [0, 328, 0, 7, 4], + [0, -3120, -2387], + [1, 3, 330], + [0, 33, 331, 332, 10], + [0, -3121], + [0, -475, -3122], + [1, 3, 334], + [0, 335, 336, 337, 5], + [0, -809, -2004, -682, -567, -3123, -3124, -3125, -3126, -3127, -3128, -2639, -3129, -3130, -3131, -3132], + [ + 0, -485, -1107, -1415, -2006, -932, -2388, -3133, -2375, -1662, -767, -3134, -2019, -533, -3135, -1939, -2028, + -2410, -23, -3136, -1534, -3137, -3040, -528, -726, -2034, -44, -3138, -3139, -3140, -3141, -3142, -3143, -3144, + -2052, -3145, -3146, -3147, -3148, -3149, -2013, -3150, -3151, -428, -408, -3152, -3153, -3154, -3155, -3156, + -3157 + ], + [0, -3158, -3099, -2006, -3159, -3095, -3098, -3160, -3161, -3100, -3162, -3163], + [1, 3, 339], + [0, 340, 341, 342, 4], + [0, -1549], + [0, -485, -2006, -1031, -2019, -2410, -3040, -3164, -3052], + [0, -3158, -3099, -2494, -485, -3095, -3098, -3161, -3100, -2006, -3159, -3160], + [1, 3, 344], + [0, 345, 346, 347, 5], + [0, -682, -3165, -3166], + [0, -485, -1107, -2006, -1031, -2019, -2410, -3040, -3052], + [0, -3158, -3099, -2494, -485, -3095, -3098, -3161, -3100, -2006, -3159, -3160, -3167], + [1, 3, 349], + [0, 350, 351, 352, 4], + [0, -3168, -3169], + [0, -2387, -2299, -2402, -2300, -364, -3170, -3171, -2405, -3172, -365], + [0, -3173, -3174, -3175, -3176, -1791, -3177, -3178, -2299], + [1, 3, 354], + [0, 355, 356, 137, 4], + [0, -1107, -2218, -1591, -719, -742, -3179, -3180], + [0, -2177, -23, -3036, -3181, -3182], + [1, 3, 358], + [0, 359, 360, 7, 4], + [0, -3187, -1863, -3188], + [0, -3189, -2269, -3190], + [1, 3, 362], + [0, 363, 364, 138, 4], + [0, -812, -1460, -2177, -3191, -47, -25, -3192, -3193, -46, -3194, -22, -742, -3195, -3196, -3197], + [0, -2392, -2125, -2379, -3198, -3199, -3200, -40, -42, -3201, -3180, -3202, -3203, -3204, -3182], + [1, 3, 366], + [0, 0, 101, 7, 5], + [1, 3, 368], + [0, 369, 370, 371, 5], + [0, -47], + [0, -3189, -22, -3211, -3212, -3188, -3213], + [0, -525, -3214, -3215, -3216, -3217, -25], + [1, 3, 373], + [0, 374, 51, 21, 4], + [0, -3218, -24], + [1, 3, 376], + [0, 377, 378, 379, 5], + [ + 0, -3221, -812, -1496, -3222, -2177, -1442, -2223, -679, -3223, -1044, -3224, -1646, -1783, -1936, -3225, -1864, + -2654, -1125, -1600, -3226, -3227, -3228, -3229, -3230, -3231, -3232, -3233, -3234, -3235, -3236, -3237, -3238, + -3239 + ], + [ + 0, -652, -519, -2392, -2476, -2564, -2162, -2006, -932, -1610, -3240, -2125, -1110, -1942, -2019, -190, -2410, + -3241, -3037, -3242, -3243, -3244, -3245, -3246, -3247, -1603, -3248, -3249, -3250, -3251, -940, -3252, -3253, + -3254 + ], + [0, -3255, -3256, -3257, -856, -3258, -3259, -3260, -3261, -3262, -3161, -898, -3263, -3264, -1599, -3265, -1783], + [1, 3, 381], + [0, 0, 382, 383, 4], + [ + 0, -2832, -2581, -350, -351, -3266, -3267, -3268, -3269, -3136, -3037, -589, -651, -1415, -2127, -2132, -2375, + -2387, -2410 + ], + [0, -775, -3215, -3270, -3271, -3272, -2410, -3273, -3274, -3275, -1644, -3276, -3277], + [1, 3, 385], + [0, 386, 387, 388, 4], + [ + 0, -3278, -3279, -3280, -3281, -3282, -3283, -3284, -3285, -3286, -3287, -3288, -3289, -3290, -3291, -3292, + -3293, -3294, -3295, -3296, -1537, -3297 + ], + [ + 0, -3298, -3299, -3300, -3301, -3302, -3303, -3304, -3305, -3306, -86, -3307, -3308, -3309, -3310, -3311, -3312, + -932, -940, -1344, -1534, -2210, -2410, -3313 + ], + [0, -3314, -488, -856, -3315], + [1, 3, 390], + [0, 391, 0, 392, 9], + [0, -3316, -3317, -3318, -3319, -1123, -3320, -2387], + [0, -3321, -1122, -2006, -3322, -3323, -3324], + [1, 3, 394], + [0, 395, 396, 397, 6], + [0, -2006, -2127, -1967, -23, -3325, -40, -2234, -41, -3326, -3327], + [0, -1415, -932, -2375, -767, -2410, -3136, -3040, -1448, -969, -973, -972], + [0, -3328, -856, -3262, -2006, -3105, -3110], + [1, 3, 399], + [0, 400, 401, 7, 10], + [0, -2177, -983, -3329], + [0, -815, -932, -23, -3330, -426, -2411, -3211, -3331], + [1, 3, 403], + [0, 404, 405, 406, 5], + [0, -24, -3332, -3218], + [0, -23, -46, -3333, -3334, -3219, -3335], + [0, -525, -3220, -3336], + [1, 3, 408], + [0, 139, 51, 21, 10], + [1, 3, 410], + [0, 411, 51, 21, 11], + [0, -24, -3337], + [1, 3, 413], + [0, 414, 415, 21, 4], + [0, -3338, -3197, -24, -3339, -3340], + [0, -23, -3219, -25], + [1, 3, 417], + [0, 139, 101, 21, 5], + [1, 3, 419], + [0, 420, 421, 21, 10], + [0, -2177, -24, -3341, -3342, -3343, -3344], + [0, -1591, -23, -3192, -44, -40, -3345, -3343, -3219], + [1, 3, 423], + [0, 140, 424, 7, 8], + [0, -633, -647, -3346, -2416], + [1, 3, 426], + [0, 427, 428, 7, 4], + [ + 0, -2177, -3347, -3338, -3348, -24, -3342, -3343, -3349, -3350, -3351, -3352, -3353, -3197, -3344, -3354, -3340, + -3355, -3356, -3357, -3358, -3359, -3360, -3361, -3362, -3363, -3364, -3365, -3366, -3367, -3368, -3369, -3370, + -3371, -3372, -3373, -3374, -3375, -3376, -3204, -3377, -3378, -3379, -3380, -3381, -3382, -3383, -3384, -3385, + -3386, -3387, -3388, -3389, -3390, -3391, -3392, -3393, -3394, -3395, -3396, -3397, -3398, -3399, -3400, -3401, + -3402, -3403, -3404, -3405, -3406, -3407 + ], + [0, -23, -46, -3219], + [1, 3, 430], + [0, 431, 51, 7, 4], + [0, -24, -3349, -3408, -3409, -3410, -3411], + [1, 3, 433], + [0, 434, 51, 435, 8], + [0, -3077, -24, -3349, -3412, -3204], + [0, -3413, -2410], + [1, 3, 437], + [0, 438, 439, 7, 4], + [0, -3414, -1591, -3415, -1046, -2234], + [0, -633, -23, -3373, -3204], + [0, 0, 0, 7, 5], + [1, 3, 442], + [0, 443, 0, 7, 5], + [0, -753], + [1, 3, 445], + [0, 446, 51, 7, 4], + [0, -812, -47, -25, -3193, -3194, -22, -3416], + [1, 3, 448], + [0, 449, 450, 7, 6], + [0, -3212, -3188], + [0, -25, -3194, -3211], + [1, 3, 452], + [0, 141, 142, 143, 8], + [1, 3, 454], + [0, 455, 456, 457, 4], + [0, -3442, -1116, -1666, -1969, -2522], + [0, -756, -932, -940, -943, -958, -966, -967, -968, -974, -2250], + [0, -2520, -2905, -3443, -3444, -3445], + [1, 3, 459], + [0, 460, 461, 7, 4], + [ + 0, -3446, -2177, -680, -3447, -910, -1077, -3448, -1863, -479, -3449, -2115, -3450, -3451, -3452, -3453, -3454, + -3455, -3456, -3457, -3458, -3459, -3460, -3461, -3462, -3463, -3464, -3465, -3466 + ], + [0, -1821, -3467, -2269, -3199], + [1, 3, 463], + [0, 464, 465, 466, 4], + [0, -3468, -3469, -195, -196, -197, -682, -1967], + [ + 0, -21, -23, -26, -40, -41, -86, -3307, -3326, -350, -351, -3470, -3471, -3472, -427, -428, -528, -553, -3473, + -932, -962, -969, -970, -1344, -1534, -1942, -2006, -2019, -2127, -3474, -2140, -2174, -2410 + ], + [ + 0, -3475, -2006, -3476, -3160, -3477, -3098, -3478, -3479, -3480, -3481, -3482, -3100, -3483, -3484, -3485, + -3486, -3487 + ], + [1, 3, 468], + [0, 469, 0, 19, 4], + [0, -681, -66, -82], + [1, 3, 471], + [0, 472, 0, 473, 6], + [0, -3493, -2387], + [0, -3494, -3495, -3496, -3264, -3497, -3498, -475, -3499, -3500, -3501, -3095, -3488, -681, -3489], + [1, 3, 475], + [0, 476, 0, 19, 5], + [0, -681, -66, -83, -68, -80, -70], + [1, 3, 478], + [0, 479, 0, 19, 5], + [0, -681, -81, -66, -3502, -83, -68, -80], + [1, 3, 481], + [0, 482, 0, 19, 4], + [0, -681, -81, -66, -3503, -3502, -83, -80], + [1, 3, 484], + [0, 485, 0, 144, 5], + [0, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -65, -3504, -52, -77], + [1, 3, 487], + [0, 488, 0, 144, 4], + [0, -81, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -65, -3504, -52, -77], + [1, 3, 490], + [0, 491, 0, 102, 4], + [0, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -65, -3511, -52, -77], + [1, 3, 493], + [0, 494, 0, 102, 8], + [ + 0, -3512, -73, -74, -62, -71, -79, -72, -80, -70, -63, -3513, -76, -54, -67, -69, -56, -75, -55, -65, -52, + -3514, -77 + ], + [1, 3, 496], + [0, 497, 0, 102, 8], + [0, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -3515, -65, -52, -77], + [1, 3, 499], + [0, 500, 0, 19, 6], + [0, -3516, -681, -3517, -81, -66, -3502, -71, -83, -68, -82, -65], + [1, 3, 502], + [0, 503, 0, 19, 4], + [0, -681, -81, -66, -3502, -71, -83], + [1, 3, 505], + [0, 506, 0, 19, 8], + [0, -3517, -81, -66, -83, -68, -85], + [1, 3, 508], + [0, 509, 0, 59, 6], + [0, -681, -66, -83], + [1, 3, 511], + [0, 512, 0, 145, 11], + [0, -3517, -81, -83, -68, -3519], + [1, 3, 514], + [0, 515, 0, 19, 8], + [0, -681, -66, -83, -82, -65], + [1, 3, 517], + [0, 518, 0, 145, 10], + [0, -3517, -83], + [1, 3, 520], + [0, 521, 0, 19, 4], + [0, -681, -81, -66, -3520, -3503, -80, -64, -3521], + [1, 3, 523], + [0, 524, 0, 19, 10], + [0, -681, -81, -66, -3502, -83, -68, -76], + [1, 3, 526], + [0, 527, 0, 19, 5], + [0, -681, -3517, -81, -66, -3520, -3502, -83, -68, -80, -82, -85, -64], + [1, 3, 529], + [0, 530, 0, 19, 8], + [0, -681, -81, -66, -74, -3502, -83, -68, -70], + [1, 3, 532], + [0, 533, 0, 19, 11], + [0, -681, -3517, -81, -66, -3502, -71, -83, -68, -80, -85, -64], + [1, 3, 535], + [0, 536, 0, 19, 4], + [0, -681, -81, -66, -3512, -3503, -3502, -83, -68, -80, -64], + [1, 3, 538], + [0, 539, 0, 19, 4], + [0, -681, -81, -66, -3520, -3502, -83, -68, -80, -85, -64], + [1, 3, 541], + [0, 542, 0, 19, 4], + [0, -81, -66, -3502, -83, -68], + [1, 3, 544], + [0, 545, 0, 19, 6], + [0, -681, -66, -68, -64], + [1, 3, 547], + [0, 548, 0, 549, 8], + [0, -3493], + [0, -3494, -3495, -3496, -3264, -3497, -3498, -2006, -3159, -3488, -681, -3489], + [1, 3, 551], + [0, 552, 0, 19, 6], + [0, -681, -3517, -81, -66, -3502, -83, -68, -85, -64], + [1, 3, 554], + [0, 555, 0, 19, 11], + [0, -3517, -66, -83, -68], + [1, 3, 557], + [0, 558, 0, 59, 11], + [0, -3517, -3522, -3523, -3524, -3525, -66, -3502, -83, -68, -3526], + [1, 3, 560], + [0, 561, 0, 59, 11], + [0, -66, -83], + [1, 3, 563], + [0, 564, 0, 59, 4], + [0, -3517, -81], + [1, 3, 566], + [0, 567, 0, 568, 4], + [0, -3493, -1549], + [0, -3494, -3495, -3496, -3264, -3497, -3498, -2476, -3527, -3528, -3529, -3488, -681, -3489], + [1, 3, 570], + [0, 571, 0, 59, 4], + [0, -3517, -81, -66, -3503, -3502, -83, -68, -80], + [1, 3, 573], + [0, 574, 575, 146, 5], + [0, -3530, -3531, -3532, -3533, -3534, -3535, -2550], + [0, -3536, -3537, -3149, -3037, -3041, -1077, -3125], + [1, 3, 577], + [0, 578, 0, 147, 5], + [ + 0, -3, -23, -3374, -40, -3538, -3539, -3540, -617, -3541, -674, -679, -714, -719, -755, -3542, -927, -1022, + -1026, -1077, -1107, -1276, -1320, -1349, -1460, -1548, -1577, -3543, -3544, -1610, -1646, -3545, -3546, -3547, + -1863, -3548, -1955, -2177, -2213, -3433, -3549, -2378, -2446, -3550 + ], + [1, 3, 580], + [0, 581, 0, 582, 4], + [0, -3553, -1361], + [0, -3554, -3555, -3161, -997, -3556], + [0, 25, 584], + 1732406400000, + [0, 25, 586], + 1733011200000, + [1, 3, 588], + [0, 589, 590, 148, 9], + [0, -1320], + [ + 0, -21, -23, -40, -3558, -3559, -3560, -2997, -3326, -350, -351, -3561, -3562, -518, -620, -3563, -3564, -699, + -767, -932, -945, -957, -958, -978, -3565, -1110, -1111, -3566, -1320, -3567, -1389, -1412, -1437, -1471, -1473, + -1475, -3568, -1477, -1479, -1481, -3569, -1486, -1547, -1753, -1771, -1889, -1891, -3570, -2125, -2127, -3571, + -3572, -3031, -2195, -2281, -3573, -2334, -3574 + ], + [1, 3, 592], + [0, 0, 0, 593, 4], + [0, -775, -3215], + [1, 3, 595], + [0, 0, 0, 596, 6], + [0, -775, -3579], + [1, 3, 598], + [0, 0, 0, 599, 4], + [0, -775, -3580, -3215], + [1, 3, 601], + [0, 602, 0, 603, 4], + [0, -98, -1931], + [0, -775, -1391, -3581, -3582, -1889, -3583, -3584, -3585], + [1, 3, 605], + [0, 60, 0, 606, 9], + [0, -775, -3586, -3587, -1889, -3583, -3588, -3589, -3590, -3591, -3592], + [1, 3, 608], + [0, 0, 0, 609, 4], + [0, -775, -1931, -3593], + [1, 3, 611], + [0, 612, 613, 149, 5], + [ + 0, -3594, -3595, -3596, -3419, -3597, -3598, -3599, -3600, -3601, -3602, -3603, -3604, -3605, -668, -695, -719, + -812, -3606, -1040, -1107, -3607, -1366, -1394, -1399, -3608, -1566, -3125, -3222, -1640, -1650, -1693, -1959, + -3609, -2177, -3610, -2297, -2400, -3611, -2548, -3612 + ], + [ + 0, -3613, -3614, -3615, -3244, -190, -262, -357, -3035, -3198, -3616, -3617, -3048, -3618, -3619, -3149, -3620, + -3621, -3622, -3623, -3037, -3624, -3199, -3625, -3626, -3627, -3628, -427, -428, -664, -3629, -711, -3630, + -838, -932, -958, -965, -978, -1004, -1077, -3631, -1654, -1689, -1788, -1942, -3632, -2200, -2210, -2211, + -3633, -2359, -2379, -2384, -2402, -2410 + ], + [1, 3, 615], + [0, 616, 617, 618, 4], + [0, -653, -668, -685, -695, -1077, -2375], + [ + 0, -86, -3307, -3048, -3049, -3136, -3637, -3638, -3639, -427, -428, -481, -693, -910, -932, -940, -967, -1344, + -1415, -3640, -1637, -1658, -1847, -1942, -3641, -3642, -2410 + ], + [0, -3643, -856], + [0, 25, 620], + 1730419200000, + [0, 0, 0, 7, 4], + [0, 0, 0, 7, 6], + [0, 0, 0, 7, 11], + [1, 3, 625], + [0, 626, 627, 104, 8], + [ + 0, -3644, -3645, -3646, -3647, -668, -674, -775, -2858, -3648, -3649, -1442, -1548, -1600, -3425, -3650, -3651, + -1608, -3652, -3653, -2161, -2223, -2303, -3654 + ], + [ + 0, -3655, -3656, -3657, -3658, -3659, -3660, -3044, -3661, -3662, -3037, -3663, -3664, -3665, -518, -928, -3666, + -1304, -3667, -3668, -1771, -1889, -1927, -2162, -3669, -2410, -2469 + ], + [1, 3, 629], + [0, 630, 631, 632, 9], + [0, -2387, -2426, -3675, -3676, -3677, -3678, -3679, -3680, -3681], + [0, -2391, -3682, -932, -2469, -1942, -767, -2410, -3037, -3683, -3684, -3664, -3685, -3686, -3687, -3688], + [0, -3689, -3690, -3691, -3692, -3693], + [1, 3, 634], + [0, 75, 635, 636, 4], + [0, -1654, -1942], + [0, -3694, -2414, -1446, -3695, -2402, -3671, -856, -3696], + [1, 3, 638], + [0, 639, 640, 104, 5], + [ + 0, -3697, -3698, -3699, -3700, -3701, -3702, -154, -3703, -3704, -3036, -3705, -3706, -469, -510, -521, -3707, + -668, -865, -1028, -1107, -1304, -1321, -1341, -1442, -1459, -1641, -1645, -1734, -2195, -2205, -2223, -2325, + -3708, -3709, -2488, -2550 + ], + [ + 0, -3710, -3711, -3712, -3660, -3044, -3713, -3037, -3714, -3715, -3041, -427, -428, -528, -928, -932, -972, + -1344, -1534, -1548, -2375, -2379, -2410 + ], + [1, 3, 642], + [0, 643, 644, 104, 6], + [0, -3646, -668, -3648, -3649, -1442, -1548, -1600, -3425, -3650, -3716, -3651, -1608, -3652, -2161, -2223], + [ + 0, -23, -3204, -40, -3659, -3136, -3660, -3044, -3661, -3662, -3717, -3037, -3663, -3718, -3719, -3720, -518, + -528, -928, -3666, -932, -972, -1304, -1415, -3668, -1889, -1927, -1942, -2082, -2375, -2410 + ], + [0, 25, 646], + 1734825600000, + [1, 3, 648], + [0, 649, 650, 651, 4], + [ + 0, -3234, -367, -411, -3721, -617, -668, -686, -724, -3722, -1010, -1028, -1070, -3723, -3724, -1304, -1460, + -1600, -3245, -1601, -3425, -3725, -3726, -1734, -1966, -2162, -3727, -3728, -2231, -2232, -2234, -3729, -2299, + -2446, -3730 + ], + [ + 0, -86, -3307, -3470, -3471, -3731, -3732, -3733, -3734, -3048, -3661, -3662, -3037, -3735, -3736, -3737, -3738, + -3739, -427, -428, -652, -3740, -1077, -1344, -1978, -2080, -2174, -2410 + ], + [0, -3122, -3445, -1334, -3161, -3741, -3742, -3743], + [1, 3, 653], + [0, 654, 655, 656, 10], + [ + 0, -3744, -3745, -3746, -3747, -3748, -3749, -367, -3750, -518, -635, -778, -779, -932, -940, -967, -969, -970, + -1110, -1344, -3751, -1643, -1889, -1908, -1930, -2162, -2163, -2275, -2281, -2282, -3436, -3752, -2335, -2501, + -2503, -2507, -2508 + ], + [0, -3753, -1534], + [0, -3100, -3754, -3755, -3756, -3590, -3551, -3757], + [1, 3, 658], + [0, 659, 660, 661, 9], + [0, -3661, -664, -668, -1551, -1600, -1816, -1951], + [0, -3758, -3035, -3759, -3037, -3760, -1344, -1534, -1942, -2410, -2469], + [0, -891, -3671, -856, -3690, -2410, -3761, -3762], + [1, 3, 663], + [0, 664, 665, 105, 5], + [0, -3341, -44, -3763, -3764, -3765, -3766, -742, -930, -3767, -2231, -3768], + [0, -23, -3769], + [1, 3, 667], + [0, 668, 669, 105, 4], + [0, -160, -3772, -3765, -3773, -3774], + [0, -3775, -2410], + [1, 3, 671], + [0, 672, 673, 7, 5], + [0, -44, -160, -3776, -3765, -3777, -3774], + [0, -3775, -3778, -2006, -2410], + [0, 0, 0, 7, 8], + [1, 3, 676], + [0, 677, 678, 38, 5], + [0, -983], + [ + 0, -652, -1498, -1654, -3779, -932, -1810, -2125, -2127, -2177, -3780, -1942, -2468, -2410, -1772, -3330, -426, + -3781, -2132, -3782, -2139, -428, -3783 + ], + [1, 3, 680], + [0, 0, 0, 681, 5], + [0, -3214, -3784, -932], + [1, 3, 683], + [0, 684, 685, 150, 4], + [ + 0, -3785, -682, -3786, -863, -996, -3787, -3544, -3788, -1610, -1653, -3789, -1848, -2680, -1885, -1955, -1967, + -3790, -2223, -3791, -3792, -3793 + ], + [ + 0, -3794, -3795, -3796, -3035, -3797, -3043, -3798, -3136, -3799, -3800, -3801, -3802, -3037, -3803, -3140, + -3040, -3052, -3804, -3805, -3046, -3806, -3041, -427, -428, -3807, -585, -740, -748, -753, -756, -778, -795, + -915, -2760, -3808, -932, -958, -969, -970, -1067, -1331, -1344, -1415, -1442, -3809, -3810, -1652, -1821, + -1942, -1952, -1992, -2006, -2019, -2024, -2125, -2195, -2214, -2275, -2278, -2375, -2379, -2387, -2410, -3811, + -2435, -2501, -2503, -2505, -2509 + ], + [1, 3, 687], + [0, 688, 689, 151, 4], + [0, -3819], + [0, -41, -409, -3040, -3052, -440, -2006, -2019, -3820, -727], + [1, 3, 691], + [0, 0, 0, 692, 4], + [0, -2651, -3827, -3828, -3829, -3830, -3831, -775, -2162, -3577, -3578, -3832, -3833], + [1, 3, 694], + [0, 0, 0, 695, 9], + [0, -2651, -3827, -3828, -3829, -3834, -3835, -775, -2162, -3577, -3578, -3832, -3833], + [1, 3, 697], + [0, 152, 0, 153, 8], + [1, 3, 699], + [0, 152, 0, 153, 4], + [1, 3, 701], + [0, 0, 702, 703, 6], + [ + 0, -23, -3840, -40, -41, -42, -86, -3307, -190, -195, -3841, -196, -3470, -3842, -3471, -406, -407, -409, -3136, + -3040, -3052, -635, -658, -741, -767, -932, -940, -958, -959, -962, -967, -969, -970, -976, -978, -1110, -1344, + -1415, -1419, -1942, -1952, -2006, -2019, -2125, -2174, -2375, -2379, -2391, -2410, -2411 + ], + [0, -3838, -1064, -2006, -3214, -3839, -3843], + [1, 3, 705], + [0, 106, 154, 706, 9], + [0, -2410, -3161, -3844, -3445, -1818], + [1, 3, 708], + [0, 709, 710, 711, 8], + [0, -3845, -198, -891, -3846], + [ + 0, -3847, -3037, -427, -428, -767, -891, -3848, -932, -933, -935, -940, -958, -962, -967, -1942, -2376, -2379, + -2402, -2410 + ], + [0, -2410, -3161, -891, -3844, -3445], + [1, 3, 713], + [0, 714, 154, 715, 9], + [0, -198, -3849, -3850, -3851, -617, -1465, -2080], + [0, -2410, -3161, -1004, -1818, -3844, -3445], + [1, 3, 717], + [0, 718, 719, 720, 6], + [0, -3852, -3853, -3854, -3855], + [0, -3856], + [0, -1122, -3857, -856, -1599, -3858], + [1, 3, 722], + [0, 723, 724, 725, 5], + [0, -3859, -3860, -3855, -3854], + [0, -3861, -3856], + [0, -858, -1122, -3857, -856, -3862, -1599, -3858], + [1, 3, 727], + [0, 728, 0, 729, 4], + [ + 0, -23, -40, -3863, -3864, -3865, -518, -534, -3866, -753, -767, -778, -779, -1041, -3867, -1643, -1889, -1908, + -3868, -2162, -3869, -2163, -2318, -2437, -2501, -2503 + ], + [0, -2501, -3870, -3871, -3100], + [1, 3, 731], + [0, 732, 733, 155, 6], + [ + 0, -3872, -3873, -3874, -3875, -3876, -3877, -3878, -3879, -3880, -3881, -3882, -3883, -3884, -3885, -3886, + -3887, -3888, -3889 + ], + [0, -3890, -3891, -3892, -3893, -3894, -3895, -3037, -1276, -1435, -2410], + [1, 24, 735], + [0, 25, 736], + 1724872768784, + [1, 3, 738], + [0, 739, 740, 741, 5], + [0, -3896, -1993], + [0, -86, -3307, -3897, -3898, -3470, -3471, -3899, -932, -1344, -1392, -3900, -1534, -1942, -2174, -2469], + [0, -1446, -1942, -3485, -856, -3214], + [1, 3, 743], + [0, 744, 745, 746, 4], + [0, -3901], + [ + 0, -2581, -3902, -3117, -406, -407, -409, -410, -3037, -3040, -3903, -3904, -3905, -3906, -440, -469, -3907, + -470, -3908, -3909, -3910, -3911, -3912, -767, -3913, -3914, -3915, -3916, -3917, -1435, -1449, -2926, -1637, + -3918, -3919, -3920, -1771, -2006, -2019, -2023, -2080, -3921, -3922, -2410, -2924, -3923, -2466, -3924, -2469, + -3612, -2564 + ], + [ + 0, -3925, -3926, -3927, -3928, -2023, -3612, -1435, -3921, -2410, -2564, -3923, -3911, -3916, -3929, -3930, + -3912, -3922, -469, -3931, -3908, -3932, -3933, -3914, -3934 + ], + [1, 3, 748], + [0, 749, 38, 750, 4], + [0, -2426], + [0, -3935, -3936, -3937, -3938, -3939, -3940, -3690], + [1, 3, 752], + [0, 753, 754, 755, 5], + [0, -3941, -3942, -3943, -3819, -1549], + [0, -2125, -2476, -2483], + [0, -2476, -3944, -3945, -3100, -3161, -3160, -3112, -3095, -3098, -3113, -3114], + [1, 3, 757], + [0, 758, 759, 760, 4], + [0, -3763, -229, -807, -1549], + [0, -3946, -2125, -2476, -2483], + [0, -2476, -3944, -3945, -3100, -3161, -3160, -3095, -3098], + [1, 3, 762], + [0, 763, 764, 63, 4], + [0, -3947, -2944, -2900, -3948, -3949, -3950, -2202], + [0, -3951, -3952, -3037, -2410], + [1, 3, 766], + [0, 767, 768, 769, 10], + [0, -2387, -1387, -3978], + [ + 0, -1415, -2162, -668, -999, -2184, -3979, -932, -2127, -1077, -1417, -1942, -2281, -3136, -3037, -3980, -3564, + -3981, -3982, -2284, -3983, -3984, -3985, -2891, -3986, -3987, -3988, -3989, -940, -428, -3990, -351, -3991, + -3992, -427 + ], + [0, -1386, -3161, -3993, -3162, -3994, -3995, -3996, -752, -891, -3997, -3998], + [1, 3, 771], + [0, 0, 156, 157, 4], + [1, 3, 773], + [0, 774, 0, 775, 4], + [0, -4003], + [0, -2410, -727, -1788, -4004, -4005], + [1, 3, 777], + [0, 778, 779, 780, 4], + [0, -2852, -4006, -4007, -4008, -682, -4009], + [0, -4010, -367, -407, -409, -410, -3664, -932, -940, -4011, -1449, -2006, -2019, -2410, -2466, -2469], + [0, -3095, -3098, -4012, -3099, -3161, -3100, -4013, -4014, -3159, -2006, -3160, -4015], + [1, 3, 782], + [0, 783, 784, 107, 4], + [ + 0, -4016, -4017, -4018, -4019, -4020, -237, -3037, -480, -668, -680, -4021, -1119, -4022, -4023, -4024, -4025, + -4026, -1426, -4027, -4028, -4029, -4030, -1427, -4031, -4032, -1639, -1950, -2218 + ], + [0, -4033, -4034, -4035, -4036], + [1, 3, 786], + [0, 787, 0, 7, 4], + [0, -4017, -4046, -4047, -4048, -3037, -3041, -668], + [1, 3, 789], + [0, 790, 791, 792, 6], + [0, -4049, -469, -470, -1548], + [ + 0, -234, -4050, -427, -428, -519, -4051, -932, -940, -958, -967, -1449, -1788, -1942, -2074, -4052, -2125, + -2127, -2130, -2142, -2144, -2234, -2379, -2387, -2402, -2410 + ], + [0, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -3926, -4057, -1463, -4058, -4059, -3999, -4060], + [1, 3, 794], + [0, 795, 796, 797, 5], + [0, -4061, -809, -1548], + [ + 0, -3778, -163, -270, -272, -274, -350, -4062, -351, -3561, -3043, -3136, -3040, -3052, -427, -428, -3807, -748, + -915, -932, -940, -958, -967, -969, -1415, -1419, -1449, -1788, -1942, -2006, -2019, -2125, -2127, -2130, -4063, + -4064, -2142, -2144, -2233, -2375, -2376, -2387, -2402, -2410, -2501, -2503, -2505, -238, -240 + ], + [0, -3118, -4065, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], + [1, 3, 799], + [0, 34, 800, 801, 6], + [ + 0, -4066, -3043, -3136, -4067, -3040, -3062, -427, -428, -3807, -767, -915, -932, -940, -958, -967, -969, -1415, + -1449, -1788, -1942, -2006, -2019, -2040, -2074, -4052, -2125, -2127, -2130, -2142, -2144, -2375, -2387, -2402, + -2410, -238 + ], + [0, -2006, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], + [1, 3, 803], + [0, 804, 805, 7, 4], + [ + 0, -3469, -4068, -4069, -4070, -4071, -4072, -4073, -4074, -4075, -4076, -4077, -4078, -4079, -4080, -4081, + -4082, -4083, -4084, -4085, -4086 + ], + [0, -4087, -3136, -1415, -2125, -2410], + [1, 3, 807], + [0, 808, 809, 810, 9], + [ + 0, -482, -567, -668, -725, -4088, -1107, -4089, -1442, -4090, -1572, -1645, -1650, -4091, -2125, -4092, -4093, + -4094, -4095, -4096, -2347, -2433, -2462, -2463, -4097 + ], + [0, -526, -4098, -555, -558, -756, -808, -1451, -1654, -1788, -4099, -2155, -2210, -2250, -2460], + [0, -2162, -3754, -775, -4100, -856, -3485, -4101], + [1, 3, 812], + [0, 0, 0, 813, 10], + [0, -4102, -4103, -4104], + [1, 3, 815], + [0, 816, 817, 158, 5], + [0, -2900], + [0, -231, -4105, -4106, -1536], + [1, 3, 819], + [0, 820, 28, 821, 6], + [0, -2852, -703, -2037, -4118, -2641, -2400], + [0, -3098, -3099, -3100, -3482, -2634, -1713, -2006, -3160, -4119], + [1, 3, 823], + [0, 108, 28, 824, 8], + [0, -4120, -3098, -4121, -3100, -3482, -2634, -1713, -4122, -2006, -4123, -3160, -4119], + [0, 0, 0, 826, 5], + [0, -3100, -3322, -3482, -2634, -1713, -2006, -4124, -4125], + [1, 3, 828], + [0, 0, 28, 829, 6], + [0, -3098, -3959, -3100, -3482, -4126, -2634, -1713, -2006, -3160, -4119], + [1, 3, 831], + [0, 832, 28, 833, 6], + [0, -2662, -2055], + [0, -3098, -3100, -3482, -2634, -1713, -4127, -4128, -4129, -2006, -3160, -4119], + [1, 3, 835], + [0, 836, 0, 837, 4], + [0, -4130, -257], + [0, -2006, -2634, -1713, -3160, -3098, -4119, -3482, -3100, -707, -4131, -4132, -4133], + [1, 3, 839], + [0, 840, 0, 841, 10], + [0, -703, -786], + [0, -2006, -2634, -1713, -3160, -3482, -3100, -906, -3771, -4134], + [1, 3, 843], + [0, 0, 0, 844, 5], + [0, -2006, -2634, -1713, -3482, -3100, -4124, -3322, -4125], + [1, 3, 846], + [0, 847, 0, 160, 4], + [0, -703, -2029, -1887, -1967, -44, -4135, -4136, -4137, -4138, -2055, -1311, -3024], + [1, 3, 849], + [0, 39, 0, 850, 4], + [0, -2006, -3159, -3119, -1613, -3843], + [1, 3, 852], + [0, 0, 853, 161, 4], + [ + 0, -1415, -2446, -1344, -932, -1548, -753, -2379, -2402, -1942, -589, -21, -533, -2410, -23, -3136, -3738, + -1771, -3044, -50, -86, -3268, -40, -977, -2082, -940, -967, -2405, -42, -262, -4139, -428, -3307, -427, -26, + -36, -35 + ], + [1, 3, 855], + [0, 856, 0, 857, 5], + [0, -4145], + [0, -4146, -1599, -4147, -2006, -2093], + [1, 3, 859], + [0, 860, 861, 862, 10], + [0, -264, -263, -834, -1548, -1645, -2114, -2177, -2231, -2410, -4148, -4149, -4150, -4151, -4152], + [0, -4153, -3044, -3200, -3199, -932, -4154, -4155], + [0, -2410, -3816, -4156, -4157, -4158, -3960, -856, -4159, -4160, -3761, -2127, -4161, -3116, -4162, -4163], + [1, 3, 864], + [0, 0, 865, 162, 4], + [0, -932, -4153, -4164], + [1, 3, 867], + [0, 868, 869, 162, 4], + [0, -469, -4166, -2114, -263], + [0, -932, -4167, -3200, -4153, -4164], + [1, 3, 871], + [0, 0, 872, 873, 5], + [0, -4168, -4169, -4170, -4171, -3037], + [0, -4172, -4173, -4174, -4175, -4176, -4177, -4178, -4179], + [1, 3, 875], + [0, 876, 877, 878, 8], + [0, -267], + [0, -265, -4171, -2400], + [0, -4172, -4173, -4174, -4175, -4176, -4177, -4180, -4181, -3816, -4182, -4183, -4184], + [1, 3, 880], + [0, 0, 881, 882, 4], + [0, -4185, -265, -4171, -3037, -4186], + [0, -4172, -4173, -4174, -4175, -4176, -4177, -4187, -2444], + [1, 3, 884], + [0, 0, 0, 885, 5], + [0, -4188, -3100, -4189, -3110], + [1, 3, 887], + [0, 888, 889, 890, 4], + [0, -4190, -4191, -4192, -4193, -4194, -4195], + [ + 0, -86, -3307, -4196, -4197, -3983, -4198, -3617, -4199, -4200, -3037, -4201, -4202, -4203, -4204, -523, -617, + -720, -754, -767, -796, -4205, -1004, -4206, -4207, -1063, -1116, -1278, -1449, -1729, -3246, -2228, -2229, + -4208, -2291, -2293, -2892, -2410, -2426, -2469, -4209, -2817, -4210, -2501, -4211, -2531 + ], + [0, -2105, -4212, -1334, -1342, -2540, -2533, -4213, -4214, -4215, -4216, -3634], + [1, 3, 892], + [0, 39, 0, 893, 4], + [0, -2006, -3159, -4217, -1613, -3119, -3843], + [1, 3, 895], + [0, 896, 0, 897, 6], + [0, -703, -2825, -2690, -1967, -273, -44], + [0, -2006, -3159, -4217, -1613, -3119, -1510], + [1, 3, 899], + [0, 900, 0, 901, 4], + [0, -703, -786, -2029, -2825, -2690, -1967, -273, -44, -2997, -2055, -4218, -3024], + [0, -2006, -3159, -4217, -1613, -3119], + [1, 3, 903], + [0, 904, 0, 905, 9], + [0, -703, -786, -2825, -2690, -1967, -44, -2575, -2689], + [0, -2006, -3159, -4217, -4219], + [1, 3, 907], + [0, 908, 0, 909, 4], + [0, -44, -2690, -3024, -703, -1967, -2055, -4220], + [0, -2006, -3159, -4217, -4221, -1613, -3119, -4222, -4223, -4224], + [1, 3, 911], + [0, 912, 913, 914, 5], + [ + 0, -4225, -4226, -4227, -4228, -4229, -4230, -4231, -4232, -4233, -682, -712, -4234, -4235, -4236, -1107, -1125, + -4237, -4238, -4239, -4240, -4241, -4242, -2095, -4243, -4244, -4245, -4246, -2400, -2427, -2429, -2501, -4247, + -2650 + ], + [ + 0, -4248, -4249, -4250, -4251, -3040, -3046, -518, -726, -2634, -1906, -2006, -2019, -2083, -2318, -2391, -2410, + -4252, -4253, -4254 + ], + [0, -4147, -856, -1713, -1599], + [1, 3, 916], + [0, 917, 0, 109, 9], + [0, -4255, -4256, -2888, -4257], + [1, 3, 919], + [0, 920, 0, 109, 11], + [0, -2387, -276], + [1, 3, 922], + [0, 923, 0, 109, 5], + [0, -2083, -4262, -2087, -2090, -3649, -4263, -4264, -1292, -2429, -4265, -4266, -4267, -668, -4245, -2427, -2268], + [1, 3, 925], + [0, 926, 927, 928, 5], + [0, -4268, -820, -665, -4269], + [ + 0, -664, -616, -1654, -932, -4270, -2125, -4271, -2379, -1098, -1942, -2410, -3035, -3037, -4272, -595, -964, + -958, -940, -967, -428, -4273, -427, -279, -4274, -4275 + ], + [0, -4276, -4277, -4271, -3634], + [1, 3, 930], + [0, 931, 932, 7, 5], + [ + 0, -4278, -4279, -4280, -281, -4281, -4282, -282, -4283, -4284, -4285, -283, -4286, -4287, -4288, -1315, -4289, + -1582, -1645, -1758, -4290, -1767, -4291, -1770, -1831, -4292, -1957, -4293, -4294, -4295, -2177, -2247, -4296, + -4297 + ], + [0, -4298, -4299, -4300, -589, -4301, -1722, -2319, -2325, -4302], + [1, 3, 934], + [0, 935, 29, 936, 5], + [0, -4282, -4283, -1107, -1645], + [0, -1764, -1776, -4303, -687, -4304, -4305], + [1, 3, 938], + [0, 0, 29, 939, 10], + [0, -1764, -687, -1733], + [1, 3, 941], + [0, 942, 943, 7, 6], + [0, -282, -4283, -4306, -1733, -1957, -2518], + [0, -4298, -4300, -4307, -2319], + [1, 3, 945], + [0, 946, 947, 163, 5], + [ + 0, -4308, -4309, -4310, -1600, -1395, -4311, -4312, -4313, -4314, -4315, -4316, -1550, -4317, -2161, -3649, + -4318, -4319, -1554, -4320, -1603, -4321, -4322, -4323, -3430, -4324, -4325 + ], + [0, -1107, -1654, -674, -2250, -4326, -633, -4327, -2251], + [1, 24, 949], + [0, 25, 950], + 1734998400000, + [1, 3, 952], + [0, 953, 0, 64, 4], + [0, -293], + [1, 3, 955], + [0, 956, 0, 64, 10], + [0, -1787, -2387], + [1, 3, 958], + [0, 959, 0, 64, 4], + [0, -300], + [1, 3, 961], + [0, 962, 963, 64, 5], + [0, -4341, -888, -2387, -2177, -2551, -1645, -910], + [0, -1415, -1787], + [1, 3, 965], + [0, 966, 40, 967, 4], + [0, -2387, -297, -293, -1863, -2654, -2383], + [0, -4332, -4342, -4335, -4340, -4343, -4344], + [1, 3, 969], + [0, 970, 40, 164, 4], + [0, -2387, -297, -2177, -293, -2410], + [1, 3, 972], + [0, 973, 0, 974, 9], + [0, -2387, -297, -299, -293], + [0, -4332, -4336, -4348, -4338, -4339, -4340, -4344], + [1, 3, 976], + [0, 977, 40, 978, 11], + [ + 0, -668, -2387, -1353, -2177, -715, -3187, -1864, -293, -1863, -2654, -23, -832, -1461, -1773, -300, -44, -4341, + -40, -2234, -3766, -4349, -42, -38, -33, -3376, -4350 + ], + [0, -4332, -4335, -4336, -4351, -4352, -4340, -4343, -4344], + [1, 3, 980], + [0, 981, 0, 165, 4], + [0, -2387, -297, -299, -293, -295, -4353], + [1, 3, 983], + [0, 984, 40, 165, 8], + [0, -2387, -297, -2571, -4354, -293, -4355, -295, -4356], + [1, 3, 986], + [0, 987, 40, 64, 9], + [0, -1787, -668, -2387, -2177, -910, -1864, -293, -2551, -4341], + [1, 3, 989], + [0, 990, 991, 76, 4], + [0, -302, -4357, -4358, -4359, -812, -2177], + [ + 0, -4360, -3035, -3621, -3037, -3199, -664, -697, -740, -932, -938, -939, -4361, -1111, -1654, -2210, -2379, + -2410 + ], + [1, 3, 993], + [0, 994, 995, 76, 5], + [0, -4357, -4358, -812, -1111, -1401, -2387], + [ + 0, -3035, -4363, -3044, -3621, -3037, -4364, -4365, -664, -740, -932, -938, -939, -4361, -1548, -1654, -1972, + -2379, -2410 + ], + [1, 3, 997], + [0, 998, 999, 1000, 4], + [ + 0, -480, -483, -4366, -692, -812, -888, -1097, -1366, -1401, -1532, -1645, -2177, -2267, -2297, -2654, -2820, + -2525, -2528 + ], + [ + 0, -3307, -3615, -304, -4360, -4367, -4368, -3268, -3035, -4269, -4369, -3198, -4370, -4363, -3621, -3037, + -4371, -4372, -4373, -4374, -4365, -589, -664, -665, -721, -767, -932, -938, -940, -1344, -1534, -4375, -1654, + -1788, -1942, -2200, -2210, -2379, -2384, -2410 + ], + [0, -4362, -687, -3957, -4376, -3215, -4377, -4378], + [1, 3, 1002], + [0, 1003, 1004, 1005, 6], + [0, -303], + [ + 0, -3307, -3615, -4367, -4368, -3035, -3621, -3037, -664, -721, -932, -938, -940, -1344, -1534, -1654, -4362, + -1942, -2200, -2379, -2410 + ], + [0, -4379], + [1, 3, 1007], + [0, 1008, 1009, 1010, 4], + [0, -3704, -4380, -4381, -4382], + [0, -4383, -4384, -4385, -4386, -4387, -3037, -3664, -928, -1037, -1107, -1722, -1942, -4388, -2410, -2426, -2469], + [0, -4389, -1105, -3691, -4390], + [1, 3, 1012], + [0, 1013, 0, 65, 4], + [ + 0, -4391, -4392, -4393, -4394, -4395, -4396, -4397, -4398, -4399, -4400, -4401, -4402, -4403, -4404, -4405, + -4406, -4407, -4408, -4409, -4410, -4411, -4412, -4413, -4414, -4415, -4416, -4417, -4418, -4419, -4420, -4421, + -4422, -4423, -4424, -4425, -4426, -4427, -4428, -4429, -4430, -4431, -4432, -4433, -4434, -4435, -4436, -4437, + -4438, -4439, -4440, -4441, -4442, -4443, -4444, -4445, -4446, -4447, -4448, -4449, -4450, -4451, -4452, -4453, + -4454, -4455, -4456, -4457, -4458, -4459, -4460, -4461, -4462, -4463, -4464, -4465, -4466, -4467, -4468, -4469, + -4470, -4471, -4472, -4473, -4474, -4475, -4476, -4477, -4478, -4479, -4480, -4481, -4482, -4483, -4484, -4485, + -4486, -4487, -4488, -4489, -4490, -4491, -4492, -4493, -4494, -4495, -4496, -4497, -4498, -4499, -4500, -4501, + -4502, -4503, -4504, -4505, -4506, -4507, -4508, -4509, -4510, -4511, -4512, -4513, -4514, -4515, -4516, -4517, + -4518, -4519, -4520, -4521, -4522, -4523, -4524, -4525, -4526, -4527, -4528, -4529, -4530, -4531, -4532, -4533, + -4534, -4535, -4536, -4537, -4538, -4539, -4540, -4541, -4542, -4543, -4544, -4545, -4546, -4547, -4548, -4549, + -4550, -4551, -4552, -4553, -4554, -4555, -4556, -4557, -4558, -4559, -4560, -4561, -4562, -4563, -4564, -4565, + -4566, -4567, -4568, -4569, -4570, -4571, -4572, -4573, -4574, -4575, -4576, -4577, -4578, -4579, -4580, -4581, + -4582, -4583, -4584, -4585, -4586, -4587, -4588, -4589 + ], + [1, 3, 1015], + [0, 1016, 1017, 65, 5], + [0, -4595, -4596, -712], + [0, -4597, -2391], + [1, 3, 1019], + [0, 0, 1020, 65, 8], + [0, -21, -23, -40, -1026, -1168, -1171, -1184, -1187, -1226, -4598, -4599, -2125, -2281, -2282, -2303], + [1, 3, 1022], + [0, 0, 1023, 65, 8], + [0, -21, -23, -40, -1168, -1171, -1184, -1226, -2125, -2281, -2282], + [1, 3, 1025], + [0, 0, 0, 1026, 4], + [0, -4600, -4601, -4602, -3578, -3445, -743], + [1, 3, 1028], + [0, 1029, 0, 1030, 4], + [0, -4603, -4604, -310, -4605, -4606, -4607, -4608, -4609], + [0, -4600, -4601, -4602, -3578, -3445, -4610, -2105], + [1, 3, 1032], + [0, 1033, 0, 1034, 5], + [0, -4611, -1640, -4612, -4605, -310, -4613, -4614, -311, -313, -4615], + [0, -4600, -4601, -4602, -3578, -3445, -4616], + [1, 3, 1036], + [0, 1037, 0, 1038, 4], + [0, -1640, -4617, -4614], + [0, -4600, -4601, -4602, -3578, -3445, -4616, -2178, -4618], + [1, 3, 1040], + [0, 1041, 1042, 1043, 4], + [0, -4619, -523, -617, -668, -1004, -1122, -1123, -1336, -1343, -1439, -1548, -1993, -4620, -3122, -4621], + [ + 0, -21, -23, -40, -4622, -3035, -4269, -3617, -4623, -3044, -3621, -4624, -3037, -4625, -4372, -3625, -4626, + -427, -428, -664, -665, -4627, -749, -932, -934, -935, -940, -948, -4628, -958, -964, -1654, -1722, -1788, + -1942, -1972, -2125, -2210, -2211, -2234, -2392, -2410 + ], + [0, -4629, -4630, -3214, -4631, -3634, -4632], + [0, 0, 0, 7, 10], + [1, 3, 1046], + [0, 1047, 0, 1048, 6], + [0, -1851], + [0, -4125, -4633, -2006, -2476, -2299, -4634, -2410, -3214, -3100, -3445, -1109, -3160, -1062, -3122], + [1, 3, 1050], + [0, 1051, 1052, 7, 4], + [0, -4635, -4636, -4637, -4638, -4639, -4640, -4641, -4642, -4643, -4644, -4645], + [ + 0, -3035, -3621, -664, -778, -925, -1471, -1475, -1479, -1480, -1482, -1483, -1654, -2125, -3047, -2275, -2402, + -2410, -2501 + ], + [1, 3, 1054], + [0, 0, 1055, 1056, 4], + [ + 0, -3983, -4646, -351, -3266, -406, -407, -4647, -3037, -4648, -784, -932, -4649, -4650, -4651, -4652, -1110, + -1449, -1889, -1891, -1942, -4653, -4654, -2091, -4655, -4656, -2127, -2132, -2142, -2286, -2379, -2387, -2392, + -2402, -4657, -2405, -4658, -4659, -4660, -4661, -4662, -2410, -4663, -2468, -4664 + ], + [ + 0, -4665, -4666, -4667, -4668, -4669, -775, -3099, -4189, -4670, -4671, -856, -4672, -4673, -3264, -4674, -4675, + -4676, -3214, -4677, -4678, -4679, -4680, -4681, -4682, -4683, -2410, -4684, -2257, -4685, -2006, -3322 + ], + [1, 3, 1058], + [0, 1059, 1060, 7, 4], + [0, -4686], + [ + 0, -4687, -4688, -4689, -4690, -528, -4691, -824, -4692, -957, -1077, -4693, -1168, -1174, -1197, -1212, -1244, + -1251, -4694, -4695, -1632, -1839, -4696, -4697, -2347, -2410, -4698 + ], + [1, 3, 1062], + [0, 1063, 1064, 1065, 8], + [ + 0, -469, -864, -2359, -4699, -1107, -2162, -510, -4700, -4701, -2550, -932, -2125, -2177, -2334, -2536, -1004, + -4702, -4703, -571, -679, -867, -1376, -1942, -2199, -715, -4704, -4705, -633, -4706, -1354, -1633, -1729, -23, + -1793, -4707, -47, -4708, -25, -305, -2232, -4709, -46, -4710, -2104, -2433, -3194, -4711, -40, -4712, -4713, + -41, -4714, -960, -2082, -32, -4715, -1458, -4716, -3077, -42, -4717, -4718, -4719, -3408, -4720, -3362, -4721, + -3398 + ], + [0, -2322, -4722, -2234], + [0, -4723, -3116, -687, -3161, -3577, -4724, -3162, -4725, -3445, -4726, -4727, -4728, -3205, -4729, -4730, -3186], + [1, 3, 1067], + [0, 0, 1068, 1069, 9], + [0, -932, -3469, -4731, -4732, -4733, -4734, -4735, -768, -769, -4736, -1077, -1387, -4737, -2654, -4738], + [0, -4739, -3161, -4740, -3843, -4741], + [1, 3, 1071], + [0, 1072, 1073, 1074, 9], + [0, -1983, -1436, -4742, -4743, -1416], + [ + 0, -1344, -2006, -2344, -932, -2127, -795, -2501, -1942, -4744, -2019, -2257, -2410, -3136, -3037, -3040, -4745, + -4746, -2046, -4747, -4748, -86, -4749, -3052, -2044, -4750, -2132, -4751, -1352, -969, -933, -958, -2140, + -4752, -4753, -4754, -4755, -409, -940, -962, -967, -350, -4756, -4757, -2113, -3267, -4758, -407, -428, -970, + -4759, -4760, -4761, -351, -4762, -410, -4763, -2413, -3307, -935, -4764, -427, -3474, -4765, -3394 + ], + [0, -2006, -2344, -4766, -4767, -4768, -4769, -4770, -4771, -3100], + [1, 3, 1076], + [0, 1077, 1078, 1079, 5], + [0, -3117, -3901, -1359, -2074, -2079, -2112], + [ + 0, -2832, -23, -3341, -262, -4772, -4773, -4774, -406, -409, -4775, -410, -4776, -4777, -3705, -4778, -3037, + -4779, -3040, -3052, -3041, -427, -428, -523, -928, -4780, -932, -940, -941, -956, -958, -962, -967, -969, -970, + -1077, -1384, -1449, -1459, -1683, -1729, -1942, -1984, -2006, -2019, -2125, -2214, -2387, -2391, -2392, -2410, + -2924, -3924, -2469, -2550 + ], + [0, -2074, -2006, -4781, -3481, -4782, -4783, -1359, -1361, -4784], + [1, 3, 1081], + [0, 1082, 1083, 1084, 4], + [0, -4785, -4786, -989, -4787, -4788, -1588, -1864], + [0, -4062, -351, -4789, -4790, -2127, -2231, -2234, -2410], + [0, -2127, -3862, -1764, -3209, -4791, -4792], + [1, 3, 1086], + [0, 1087, 1088, 1089, 10], + [0, -4785, -3200, -823, -4793, -2114], + [0, -23, -3412, -3326, -350, -4062, -922, -2127, -2231, -4794], + [0, -2127, -3862, -4795, -1764, -3209], + [1, 3, 1091], + [0, 1092, 1093, 1094, 4], + [ + 0, -653, -2359, -754, -2466, -668, -1111, -1650, -1872, -928, -1004, -4796, -1306, -2223, -679, -4797, -4798, + -4799, -4800, -1461, -4801, -4802, -4803, -4804, -263, -4805, -4806, -4807, -440, -4808, -264, -262, -4149 + ], + [ + 0, -4809, -2446, -2006, -932, -2125, -4810, -2469, -1942, -2019, -3628, -2410, -4198, -3037, -3738, -1534, + -3040, -3041, -1772, -4811, -3617, -3052, -2174, -2278, -4812, -969, -940, -962, -967, -428, -970, -1945, -4813, + -427, -4814 + ], + [0, -4810, -4158, -4165, -3816, -4815, -3960, -856], + [1, 3, 1096], + [0, 1097, 1098, 1099, 5], + [ + 0, -2921, -4816, -4817, -1085, -3649, -4818, -1699, -2476, -4819, -4820, -4821, -4822, -4823, -4824, -4825, + -4826, -4827, -4828, -4829, -4830, -4831, -4832, -4833, -4834 + ], + [ + 0, -4835, -3983, -4836, -4837, -3250, -4838, -1313, -1449, -2006, -4839, -2318, -2466, -4840, -4841, -2469, + -4842, -4843, -4844, -4845 + ], + [0, -3095, -856, -3438, -4846, -4679, -4847, -2476, -3944], + [1, 3, 1101], + [0, 1102, 1103, 1104, 4], + [0, -4848, -3649, -4825, -4827, -4843], + [0, -4849, -4850, -4851, -1030, -2466, -2469, -2548, -353, -4842], + [0, -3690, -856, -1030, -3438, -4847], + [1, 3, 1106], + [0, 1107, 1108, 1109, 4], + [0, -4852, -4853, -4854, -823, -2792, -4855], + [ + 0, -4856, -4857, -4858, -4859, -4860, -4861, -3035, -3617, -4862, -3621, -523, -617, -652, -767, -1004, -1323, + -1654, -4863, -1970, -2253, -2379, -2410 + ], + [ + 0, -4864, -4865, -4866, -4867, -4868, -4869, -4870, -4871, -4872, -4043, -3160, -3100, -475, -2006, -2476, + -3440, -4873, -4004, -3634 + ], + [1, 3, 1111], + [0, 1112, 1113, 1114, 10], + [0, -4852, -4853, -4854, -4874, -823, -4855], + [0, -4856, -3621, -4875, -4876, -4877, -4878, -4879, -523, -652, -767, -1654, -4863, -4880, -2253, -4881], + [ + 0, -4864, -4865, -4866, -4867, -4868, -4869, -4870, -4871, -4872, -4043, -3160, -3100, -3440, -4873, -4004, + -3634, -4881, -4882, -4883 + ], + [1, 3, 1116], + [0, 1117, 1118, 7, 4], + [0, -4884], + [0, -4885, -4886, -4887, -4888, -4889, -928, -1344, -1449, -1534, -1654, -1788, -1942], + [1, 3, 1120], + [0, 1121, 1122, 1123, 4], + [0, -2006, -2019, -3654, -261, -4890, -4891, -4892], + [ + 0, -2466, -2006, -2361, -1885, -4893, -2019, -3517, -2410, -4228, -2089, -3040, -4894, -3523, -3649, -2795, + -1606, -4785, -3525, -2085 + ], + [ + 0, -3671, -856, -2257, -4895, -4896, -4897, -4898, -1599, -4899, -4900, -4901, -3095, -3098, -2006, -2476, -475, + -2299, -4902 + ], + [1, 3, 1125], + [0, 1126, 1127, 110, 6], + [ + 0, -4903, -4904, -3165, -4905, -44, -3946, -195, -4906, -196, -197, -4907, -4908, -4909, -4910, -4911, -4912, + -595, -4913, -682, -747, -809, -4914, -4915, -4916, -4917, -4918, -4919, -4920, -4921, -4922, -4923, -4924, + -3123, -4925, -4926, -4927, -4928, -4929, -4930, -4931, -4932, -4933, -4934, -4935, -4936, -4937, -4938, -2002, + -4939, -4940, -4941, -4942, -4943, -2003, -4944, -4945, -4946, -4947, -2004, -2013, -4948, -4949, -4950, -2053, + -4951, -2344, -2345 + ], + [ + 0, -3139, -23, -4952, -4953, -162, -3778, -4954, -4955, -4773, -3562, -4757, -4762, -4763, -4754, -4956, -4957, + -4958, -4749, -4760, -4959, -406, -407, -409, -410, -4960, -3136, -4961, -4962, -4963, -4964, -3044, -3803, + -4965, -4966, -3040, -4967, -3087, -3052, -4968, -4969, -4970, -4971, -4972, -427, -428, -4973, -4974, -4975, + -534, -4976, -668, -674, -767, -4977, -881, -4978, -3808, -932, -933, -940, -948, -952, -958, -959, -962, -963, + -969, -970, -4756, -978, -1026, -4979, -1077, -1103, -1107, -1339, -1344, -1352, -1359, -1360, -1376, -1404, + -1415, -4980, -1416, -1419, -1421, -4981, -4982, -1437, -1449, -4983, -3134, -1534, -1548, -4984, -1662, -1805, + -1942, -1943, -1950, -1955, -1959, -1983, -4985, -4986, -4987, -2006, -2012, -2016, -2017, -2019, -3051, -4988, + -4989, -4990, -4991, -2044, -4992, -4993, -2093, -2094, -4994, -4995, -4996, -2177, -2205, -2214, -2281, -4997, + -4998, -2282, -4999, -5000, -2334, -2379, -2402, -2410, -5001, -2502, -5002, -5003 + ], + [1, 3, 1129], + [0, 1130, 166, 111, 4], + [0, -5004, -5005, -5006, -5007, -2741, -5008, -1085, -1548, -5009, -5010, -2355, -2446], + [1, 3, 1132], + [0, 1133, 166, 111, 5], + [0, -5004, -5005], + [1, 3, 1135], + [0, 1136, 1137, 111, 4], + [0, -5006, -5007, -2741, -5008, -5025, -1085, -1343, -1548, -5026, -1729, -5009, -5027, -5010, -2355, -2446], + [ + 0, -5028, -3044, -3037, -5011, -3738, -519, -865, -1771, -1942, -5012, -2376, -2379, -5013, -2388, -2389, -2410, + -2501, -2503, -2509 + ], + [1, 3, 1139], + [0, 1140, 1141, 1142, 6], + [0, -1110], + [0, -50, -5029, -5030, -932, -940, -965, -975, -2299, -2410, -2411], + [0, -932, -727, -5031, -2299], + [1, 3, 1144], + [0, 1145, 1146, 1147, 5], + [0, -3117, -5032, -5033, -461, -743, -5034, -5035, -1496, -1588, -5036, -5037, -3169, -2213], + [0, -5038, -3983, -365, -5039, -3037, -3172, -5040, -2127, -2299, -2301, -2410, -2466, -2469], + [0, -3161, -5041, -2299, -3176, -2466], + [1, 3, 1149], + [0, 1150, 1151, 1152, 5], + [0, -5042, -2814, -823, -1588, -5043], + [0, -2162, -2466, -2299, -3198], + [0, -5044, -5045, -2466, -2299], + [1, 3, 1154], + [0, 1155, 1156, 1157, 5], + [0, -23, -5046, -40, -41, -42, -2699, -5047, -5048], + [0, -534, -1626, -2437, -2501], + [0, -5049, -3839, -2006, -2501, -5050], + [1, 3, 1159], + [0, 1160, 1161, 1162, 5], + [0, -5051, -5052], + [0, -5053, -5054, -767, -2410], + [0, -5055, -5056, -525, -2410, -5057, -2501, -5058], + [1, 3, 1164], + [0, 1165, 1166, 1167, 5], + [0, -620, -2997], + [ + 0, -1107, -1168, -1415, -2162, -2125, -1889, -1942, -749, -1248, -2281, -1232, -2410, -3037, -518, -1238, -1930, + -2285, -5059, -5060, -5061, -5062 + ], + [0, -3754, -3098, -4902, -5063, -5064, -3482, -4012, -3160, -3100], + [1, 3, 1169], + [0, 0, 37, 1170, 10], + [ + 0, -5065, -5066, -5067, -5068, -5069, -5070, -5071, -3100, -2410, -3214, -5072, -5073, -5074, -5075, -5076, + -5077, -5078, -5079, -5080, -5081, -5082, -5083, -5084 + ], + [1, 3, 1172], + [0, 141, 142, 143, 4], + [1, 3, 1174], + [0, 1175, 1176, 1177, 9], + [0, -44, -737, -2387], + [ + 0, -23, -38, -40, -42, -3244, -190, -3983, -3326, -350, -351, -3561, -3266, -5085, -3037, -427, -428, -539, + -932, -940, -5086, -5087, -5088, -5089, -1772, -1942, -2127, -5090, -2200, -5091, -2410 + ], + [0, -5092, -3264, -5093, -5094, -3214, -5095, -3839, -2410], + [1, 3, 1179], + [0, 167, 1180, 7, 4], + [0, -409, -4775, -3040, -3052, -440, -757, -1772, -2006, -2019, -2965, -5097, -5098], + [1, 3, 1182], + [0, 167, 1183, 1184, 5], + [0, -2299, -2300, -3170, -975, -5099, -428, -5098, -365], + [0, -5100, -5101, -2299], + [1, 3, 1186], + [0, 1187, 1188, 1189, 4], + [0, -5102], + [ + 0, -5103, -3136, -427, -5104, -932, -936, -5105, -940, -967, -968, -1415, -1419, -1441, -1446, -1637, -2375, + -2376, -2410 + ], + [0, -5106, -5107, -5108, -5109, -5110, -3100, -3323, -3105], + [1, 3, 1191], + [0, 1192, 1193, 1194, 5], + [0, -44, -406], + [0, -795, -2410, -5111, -1771], + [0, -3634, -795, -3160, -5092, -4868, -5112, -4867, -4866], + [1, 3, 1196], + [0, 1197, 1198, 1199, 4], + [0, -4984, -5113, -1863, -1950, -44, -22, -5114, -5115], + [0, -1449, -2410, -5111, -635, -658, -5116, -407, -5117, -5118], + [0, -3634, -3160, -5092, -1449, -5119, -4868, -5112, -4867, -4866], + [1, 3, 1201], + [0, 1202, 1203, 1204, 4], + [0, -5120, -5113, -2745, -1863, -28, -5115], + [0, -1449, -1001, -2127, -2469, -2410, -5111, -5121, -1950, -5122, -350, -5117, -5123], + [0, -3634, -5092, -1415, -1449], + [1, 3, 1206], + [0, 1207, 1208, 1209, 10], + [0, -668, -5120, -1418, -1950, -5124], + [ + 0, -1415, -1344, -2006, -932, -1942, -21, -720, -2410, -23, -3136, -3040, -1952, -2034, -44, -2174, -3141, + -2052, -5125, -796, -3081, -3153, -3156, -5126 + ], + [0, -3634, -5127, -1415, -2034], + [1, 3, 1211], + [0, 39, 1212, 1213, 5], + [0, -406, -407, -3040, -3052, -668, -5128, -1418, -5111, -1772, -2006, -2019, -2125, -2410], + [0, -3634, -2006, -3160, -5092, -1449, -5119, -4868, -5112, -4867, -4866], + [1, 3, 1215], + [0, 0, 1216, 1217, 4], + [ + 0, -1392, -1449, -2006, -1001, -928, -2379, -5129, -2019, -2745, -2410, -5111, -3040, -5116, -5130, -5089, + -5131, -5087, -5132, -406, -5133, -5086, -409, -5134, -5088, -407, -5135, -5136, -3626, -948, -5137 + ], + [0, -5138, -5139, -2006, -3634], + [1, 3, 1219], + [0, 1220, 0, 1221, 6], + [0, -4603, -5140, -412, -417, -418, -419, -420], + [0, -5141, -3122, -3445, -1334, -3161, -3690], + [1, 3, 1223], + [0, 0, 0, 1224, 9], + [0, -5141, -4601, -4602, -3578, -3445, -743], + [1, 3, 1226], + [0, 0, 0, 1227, 11], + [0, -5141, -4601, -4602, -3578, -3445, -5142, -743], + [1, 3, 1229], + [0, 1230, 1231, 168, 4], + [0, -5143], + [0, -652, -2392, -1344, -2410, -3037, -411, -2581, -86, -5144, -3307], + [1, 3, 1233], + [0, 0, 0, 1234, 6], + [0, -5141, -4601, -4602, -3578, -3445, -990], + [1, 3, 1236], + [0, 0, 0, 1237, 9], + [0, -5141, -4601, -4602, -3578, -3445, -5145, -5146, -5147], + [1, 3, 1239], + [0, 1240, 0, 1241, 4], + [0, -416], + [0, -5141, -4601, -4602, -3578, -3445, -5148, -1389, -5149, -5150], + [1, 3, 1243], + [0, 1244, 0, 1245, 6], + [0, -4603, -5151, -422, -423], + [0, -5141, -4601, -4602, -3578, -3445, -4610, -2105], + [1, 3, 1247], + [0, 1248, 0, 1249, 4], + [0, -5143, -1640, -5152, -412, -413, -2701, -418, -421], + [0, -5141, -4601, -4602, -3578, -3445, -4616], + [1, 3, 1251], + [0, 169, 0, 1252, 8], + [0, -5141, -4601, -4602, -3578, -3445, -3122], + [1, 3, 1254], + [0, 1255, 0, 1256, 5], + [0, -1640, -415, -5153], + [0, -5141, -4601, -4602, -3578, -3445, -4616, -2178, -4618], + [1, 3, 1258], + [0, 1259, 0, 1260, 9], + [0, -1640, -5153], + [0, -5141, -4601, -4602, -3578, -3445, -4610, -2105, -2401, -3214], + [1, 3, 1262], + [0, 0, 0, 1263, 6], + [0, -5141, -4601, -4602, -3578, -3445, -4610, -2105, -2435, -5154, -5101], + [1, 3, 1265], + [0, 0, 0, 77, 5], + [1, 3, 1267], + [0, 1268, 0, 1269, 9], + [0, -5190, -5191, -5192, -5193, -2387], + [0, -5194, -5195, -3445, -5196, -5197, -3690], + [1, 3, 1271], + [0, 1272, 1273, 1274, 11], + [0, -1353, -5198, -5199, -429, -5200, -5201, -5202, -3331], + [0, -469, -1610, -2469, -1942, -5203, -4251, -3040, -1605, -5204, -2429, -4049, -3664, -1618, -5205, -5206, -5207], + [0, -932, -5208, -3784, -2410], + [1, 3, 1276], + [0, 1277, 112, 1278, 6], + [0, -812, -3782, -5202, -3331, -5209], + [0, -3272, -3217, -3214, -2410, -3215, -4132, -932], + [1, 3, 1280], + [0, 1281, 112, 1282, 5], + [0, -3782, -189, -3331, -5209], + [0, -932, -2410, -5210], + [1, 3, 1284], + [0, 1285, 1286, 1287, 8], + [ + 0, -161, -163, -5211, -682, -5212, -5213, -906, -5214, -5215, -1311, -1548, -5216, -1666, -1967, -5217, -4922, + -5218, -4929, -4934, -2002, -2004, -2030, -4991, -2055, -2113, -2192, -2489, -5219 + ], + [ + 0, -21, -23, -26, -33, -38, -39, -40, -41, -42, -86, -3307, -407, -409, -3059, -5220, -3044, -5221, -3040, + -3052, -427, -428, -5222, -5223, -523, -528, -533, -534, -5224, -540, -5225, -5226, -720, -5227, -778, -796, + -915, -916, -2760, -932, -969, -970, -1041, -1077, -1331, -1344, -1415, -5228, -4981, -5229, -1534, -1643, + -1667, -1814, -1942, -2000, -2006, -2019, -2049, -2052, -2251, -2275, -2281, -3085, -5230, -5231, -5232, -2410, + -2417, -2437, -2501, -2502, -2503 + ], + [0, -2006, -3159, -3095, -3098, -3100, -5233], + [1, 3, 1289], + [0, 1290, 0, 170, 5], + [ + 0, -703, -1436, -1548, -1699, -5234, -2650, -5235, -5236, -5237, -5238, -5239, -1320, -5240, -5241, -5242, + -5243, -5244, -5245 + ], + [1, 3, 1292], + [0, 171, 0, 1293, 5], + [ + 0, -5248, -5249, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, + -3577, -3100 + ], + [1, 3, 1295], + [0, 1296, 0, 1297, 4], + [0, -5254], + [ + 0, -3167, -5255, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, + -3577, -3100 + ], + [1, 3, 1299], + [0, 171, 0, 1300, 4], + [ + 0, -3962, -5256, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, + -3577, -3100 + ], + [1, 3, 1302], + [0, 1303, 0, 1304, 8], + [0, -5257, -436], + [ + 0, -5258, -5259, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, + -3577, -3100 + ], + [1, 3, 1306], + [0, 0, 0, 1307, 6], + [ + 0, -5260, -5261, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, + -3577, -3100 + ], + [1, 3, 1309], + [0, 1310, 1311, 1312, 5], + [0, -1983, -754, -1004, -2401, -724, -5262, -5263, -5264, -5265, -442], + [ + 0, -1415, -2177, -2375, -2293, -533, -2410, -23, -4198, -3136, -3037, -5266, -2581, -3617, -5267, -4203, -3732, + -3697 + ], + [0, -5268, -3100, -5269, -5270, -5271, -3441, -5272], + [1, 3, 1314], + [0, 1315, 1316, 1317, 4], + [0, -5273, -5274, -5275, -5276, -5277, -5278, -5279, -5280], + [ + 0, -2384, -2392, -2391, -2466, -1344, -932, -2125, -5281, -2469, -928, -1889, -2910, -2281, -1747, -1874, -5282, + -2214, -2302, -2410, -3037, -1534, -1771, -3040, -5283, -5284, -2581, -5285, -5286, -2284, -5287, -5288, -5289, + -2411, -5290, -3664, -5291, -2832, -5292, -5293, -2282, -5294, -2970, -5295, -5296, -5297, -4999 + ], + [ + 0, -5065, -5298, -5299, -5300, -5301, -5302, -5303, -5304, -5305, -5067, -5306, -5307, -5308, -5309, -5310, + -5069, -5311, -3100, -2410, -5312, -5313, -5314, -5315, -5316, -5072, -5073, -5074, -5317, -5318, -5083 + ], + [1, 3, 1319], + [0, 1320, 1321, 1322, 5], + [0, -753, -2314, -23, -635, -1588, -40, -2082, -5319, -3343, -3344, -3370, -3377], + [0, -4787, -2466, -461, -2892, -1863], + [0, -3100, -2466, -5044, -439], + [1, 3, 1324], + [0, 1325, 1326, 1327, 6], + [0, -23, -5320, -5321, -5322, -4776, -2041], + [0, -5323, -2006, -2019, -2923, -2892], + [0, -525, -5324, -2006, -2041, -2466, -5044], + [1, 3, 1329], + [0, 1330, 1331, 1332, 5], + [0, -429, -1026, -2411, -2478], + [0, -5325, -3037, -932, -980, -999, -5326, -1942, -2392, -2410, -2469, -2476], + [0, -2476, -5327, -5328, -932, -2410], + [1, 3, 1334], + [0, 1335, 1336, 1337, 10], + [0, -469, -470, -5329, -1335, -5330, -1851, -3122, -2187, -5331, -3434, -2548], + [0, -1004, -1654, -2250, -2293], + [0, -1004, -3438, -4847, -856], + [1, 3, 1339], + [0, 1340, 1341, 113, 5], + [ + 0, -5332, -5333, -3562, -367, -5334, -4251, -5335, -5336, -5337, -5338, -682, -5339, -5340, -747, -823, -5341, + -909, -5342, -5343, -5344, -3649, -2766, -1286, -1289, -1292, -5345, -1315, -1329, -5346, -1442, -1571, -5347, + -5348, -1779, -1878, -4130, -5349, -1955, -2000, -4930, -4942, -2003, -4944, -2004, -2013, -2965, -2028, -5350, + -5351, -2084, -5352, -2090, -5353, -4242, -2095, -2098, -2101, -2162, -3728, -5354, -5355, -2427, -2429, -5356, + -2435, -5357, -5358, -5359 + ], + [ + 0, -86, -3307, -3659, -5360, -5361, -3660, -5362, -3037, -5363, -3803, -3040, -3087, -3052, -5364, -5365, -5366, + -932, -4597, -1026, -1031, -5367, -5368, -1344, -1534, -1942, -1944, -1945, -2006, -2019, -2281, -2379, -2410, + -2469, -5369, -5370 + ], + [0, 0, 0, 7, 9], + [1, 3, 1344], + [0, 0, 1345, 1346, 4], + [0, -3037, -427, -428, -932, -934, -958, -2125, -2127, -2142, -2410], + [0, -3445, -5373, -5374, -5375, -5376, -5377, -5378], + [1, 3, 1348], + [0, 1349, 1350, 1351, 4], + [0, -5379], + [ + 0, -23, -3204, -40, -43, -5380, -5381, -3621, -3037, -507, -708, -5382, -932, -1471, -1475, -1476, -1479, -5383, + -1480, -1482, -1486, -1654, -1771, -1788, -1810, -2125, -2127, -2128, -5384, -2131, -2137, -2139, -2141, -5385, + -2379, -5386, -2410 + ], + [0, -5387, -5388, -5389, -997, -5390, -5391, -5392, -5393, -5394, -5395, -5396], + [1, 3, 1353], + [0, 1354, 172, 1355, 5], + [0, -1641, -5397], + [0, -5398, -5399, -5400, -459], + [1, 3, 1357], + [0, 1358, 114, 1359, 5], + [0, -510, -615, -1548, -1671, -2071], + [0, -5401, -460, -3578], + [1, 3, 1361], + [0, 1362, 0, 7, 10], + [0, -461], + [1, 3, 1364], + [0, 1365, 1366, 1367, 8], + [0, -523, -668, -719, -1039, -1077, -1376, -1816, -5402, -2205], + [ + 0, -350, -4062, -351, -3266, -5403, -3048, -5404, -3049, -3037, -2125, -2127, -4063, -5405, -2142, -5232, -2387, + -2388, -2410 + ], + [0, -687, -463, -2476, -2006, -5406, -5407, -2410, -3967], + [1, 3, 1369], + [0, 0, 1370, 1371, 4], + [0, -664, -1351, -1654, -1942, -2125], + [0, -5408, -1636, -5409, -2432], + [1, 3, 1373], + [0, 0, 27, 1374, 5], + [0, -5410, -465, -5411, -5412, -5413], + [1, 3, 1376], + [0, 1377, 1378, 1379, 8], + [0, -5414, -5415, -812, -5416, -3222], + [0, -3198, -5417, -3620, -3037, -3664, -2210, -2379, -2392, -2469], + [0, -5418, -5419, -763, -5420, -2166, -4043], + [0, 44, 15, 16, 6], + [1, 3, 1382], + [0, 1383, 1384, 1385, 4], + [ + 0, -5450, -5451, -5452, -633, -5453, -724, -812, -5454, -5455, -1004, -5456, -5457, -1336, -5458, -1442, -5459, + -5460, -5461, -1646, -5462, -5463, -5464, -2062, -5465, -2188, -2194, -5466, -5467, -5468, -2446, -2491 + ], + [0, -5469, -767, -1274, -1788, -5470, -2250, -2322, -2331], + [0, -468, -4865, -5471, -2319, -2322, -3634], + [1, 3, 1387], + [0, 1388, 1389, 1390, 5], + [0, -1025, -5472, -5473, -5474], + [ + 0, -5475, -350, -4062, -351, -3267, -3035, -3621, -3037, -5476, -427, -428, -470, -633, -664, -767, -809, -5477, + -932, -940, -1107, -1344, -5478, -1430, -1440, -5479, -1471, -1475, -1482, -1534, -1654, -5480, -1729, -1788, + -1942, -5481, -2127, -2140, -2379, -5482, -2410, -5483 + ], + [0, -4182, -4058, -2451, -3926, -1463, -1456, -5484, -5485], + [1, 3, 1392], + [0, 1393, 1394, 1395, 4], + [0, -469], + [0, -5475, -3136, -3037, -427, -428, -469, -932, -940, -1344, -1415, -5479, -1534, -1942, -2375, -2410], + [0, -5486, -3815, -3276, -3926], + [0, 45, 15, 16, 10], + [1, 3, 1398], + [0, 34, 1399, 1400, 6], + [0, -1813, -5487], + [0, -472], + [1, 3, 1402], + [0, 1403, 1404, 1405, 4], + [0, -5488, -2438], + [0, -5489, -1654, -1788, -2416], + [0, -5490, -5491, -5492], + [1, 3, 1407], + [0, 0, 1408, 1409, 6], + [0, -2162], + [0, -775, -2162, -3160, -3576, -3577, -5493, -5494], + [1, 3, 1411], + [0, 0, 0, 173, 5], + [1, 3, 1413], + [0, 0, 0, 1414, 5], + [0, -475, -3161, -4865, -5176, -5495], + [1, 3, 1416], + [0, 1417, 0, 1418, 5], + [ + 0, -5496, -5497, -7, -8, -9, -5498, -5499, -510, -518, -668, -722, -778, -784, -812, -5500, -834, -5501, -5502, + -5503, -1017, -1041, -5504, -1077, -5505, -1107, -1331, -1369, -1376, -5506, -1455, -1490, -1492, -1521, -1522, + -1548, -1645, -5507, -1743, -1758, -1812, -1816, -1888, -1908, -2000, -2092, -2114, -2125, -2148, -2163, -5508, + -2177, -5509, -2233, -5510, -2275, -2286, -2287, -2330, -2346, -2410, -2437, -2488, -2501, -2505, -2508, -2510, + -2567 + ], + [0, -475, -477], + [1, 3, 1420], + [0, 0, 0, 1421, 4], + [0, -5175, -3118, -4865, -5495, -3119, -5511, -3098], + [1, 3, 1423], + [0, 0, 1424, 1425, 9], + [0, -3542, -1202, -5512, -1654, -2343], + [ + 0, -5513, -5514, -5515, -5516, -5517, -5518, -5519, -5520, -5521, -5522, -5523, -5524, -5525, -5526, -5527, + -5528, -5529, -5530, -5531, -5532, -5533, -687, -5534, -712, -714, -5535, -4376, -3958, -4000, -5536, -5537, + -5538, -5539, -5540, -5541, -5542, -5543, -5544, -1496, -1573, -5545, -5546, -5547, -5548, -5549, -5550, -5551, + -5552, -2265, -5553, -3770, -3974, -5554, -3975, -5555, -5556, -2547, -5557 + ], + [1, 3, 1427], + [0, 1428, 115, 1429, 6], + [0, -5558], + [ + 0, -5514, -3974, -4000, -687, -2265, -3975, -5559, -5560, -5538, -5550, -2547, -1573, -5545, -3958, -5554, + -5561, -5562, -5412, -707, -5563, -5564, -3965, -5565, -685, -5566, -5567, -5568 + ], + [1, 3, 1431], + [0, 0, 1432, 1433, 10], + [0, -2541, -519, -2384, -480], + [ + 0, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -2265, -3975, -5559, -5538, -5549, -5513, -5550, -2547, + -3958, -5554, -5569, -5570, -5571, -5572, -4004, -5573, -5574 + ], + [1, 3, 1435], + [0, 0, 1436, 1437, 5], + [0, -2541, -519, -2384, -5575], + [ + 0, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -2265, -3975, -5559, -5538, -5549, -5513, -5550, -2547, + -1573, -5545, -3958, -5554 + ], + [1, 3, 1439], + [0, 0, 0, 1440, 6], + [0, -5514, -714, -687], + [1, 3, 1442], + [0, 1443, 1444, 1445, 11], + [ + 0, -4903, -5576, -44, -3946, -3763, -5577, -5578, -5579, -513, -786, -809, -5580, -5581, -1548, -1549, -2113, + -4951, -5582, -3768, -2345, -5583, -2489 + ], + [ + 0, -21, -23, -26, -34, -35, -36, -5584, -37, -3396, -5585, -3381, -38, -3382, -3412, -39, -40, -42, -86, -3307, + -305, -3326, -3732, -3048, -3136, -5586, -3164, -5587, -3661, -3037, -5588, -427, -428, -439, -4837, -5589, + -5590, -5591, -5592, -441, -4838, -5593, -4817, -5594, -461, -5595, -518, -523, -528, -533, -534, -538, -5596, + -539, -5597, -661, -668, -674, -708, -5339, -5598, -719, -5599, -767, -778, -779, -5600, -807, -5601, -5602, + -4978, -5603, -928, -3808, -929, -932, -940, -957, -958, -959, -963, -5604, -967, -980, -1026, -4979, -1077, + -1107, -1111, -1125, -1168, -1174, -5605, -1261, -1331, -1344, -5606, -5607, -1415, -1419, -1421, -5608, -5609, + -1439, -5610, -3025, -1521, -1522, -5611, -5612, -1534, -5613, -1600, -1601, -1602, -1603, -5614, -1610, -5615, + -1643, -1646, -1650, -1662, -1666, -1779, -1889, -1908, -1942, -1952, -1955, -1959, -2000, -4242, -2098, -5616, + -5617, -3868, -5618, -2125, -5619, -5620, -2177, -2218, -5621, -2275, -2281, -4997, -4998, -2282, -4999, -2284, + -2335, -2347, -2355, -2375, -2376, -2392, -2402, -2410, -5622, -2427, -2437, -5001, -2466, -2476, -5623, -5624, + -2478, -2480, -5625, -2481, -5626, -2483, -2484, -5627, -2486, -2501, -2502, -2503, -2505, -2508, -5628, -5002 + ], + [0, -2476, -3944, -3158, -3099, -485, -5629, -3095, -3098, -3160, -3161, -3100], + [1, 3, 1447], + [0, 1448, 1449, 110, 4], + [ + 0, -703, -809, -44, -3165, -2345, -4903, -5630, -5631, -5632, -5633, -4910, -5634, -5635, -4904, -5636, -5637, + -5638, -5639, -5640, -5641, -5642, -5643, -5644, -5645, -5646, -5647, -5648, -5649, -5650, -5651, -5652, -5653, + -5654, -5655, -5656, -5657, -5658, -4905, -5659, -5660, -5661, -5662, -5663, -5664, -5665, -4951, -5666, -5667 + ], + [ + 0, -469, -1816, -2592, -2323, -2392, -881, -1107, -1415, -1805, -523, -668, -4977, -1344, -1359, -1392, -1449, + -5668, -1880, -2006, -2193, -865, -932, -1031, -1437, -1548, -2093, -2125, -5669, -2177, -464, -5595, -5670, + -1955, -2402, -2501, -781, -1077, -1103, -4980, -1646, -1662, -1942, -5671, -5002, -767, -5672, -1026, -3134, + -4984, -1978, -4985, -2019, -5673, -5674, -1729, -1888, -2094, -2095, -2205, -2214, -2410, -3136, -3037, -5346, + -1339, -1534, -2026, -4994, -162, -4647, -5675, -3040, -5676, -5677, -4986, -5678, -5679, -3744, -305, -4964, + -3044, -3199, -4973, -1737, -1950, -5680, -2101, -2581, -3778, -5681, -5682, -5683, -4960, -3803, -4972, -3649, + -4982, -5684, -4954, -3562, -5685, -3048, -4961, -5686, -3624, -5687, -3051, -4773, -5688, -3052, -1404, -1416, + -5689, -2044, -4992, -2090, -3139, -5690, -3746, -4106, -5691, -3745, -3747, -283, -5692, -959, -1352, -4988, + -5001, -5693, -1292, -4981, -5694, -406, -4974, -952, -1421, -4989, -5695, -409, -962, -1419, -5696, -5697, + -5698, -4983, -2502, -4971, -3459, -5699, -407, -970, -5700, -4963, -5701, -5702, -5703, -410, -2914, -5704, + -4968, -5705, -4995, -4990, -4962, -5706, -4955, -5707, -5708 + ], + [1, 3, 1451], + [0, 1452, 0, 7, 5], + [0, -1805], + [0, 67, 15, 16, 4], + [1, 3, 1455], + [0, 1456, 1457, 1458, 9], + [0, -3278, -3279, -3299, -3283, -3288, -5709, -5710, -3304, -3305, -5711, -5712, -5713, -5714, -1537, -3297], + [ + 0, -3285, -3286, -3287, -5715, -3302, -3303, -86, -3307, -5716, -3308, -3309, -5717, -3310, -3311, -3312, -5718, + -5719, -617, -823, -932, -940, -985, -1004, -1077, -1344, -1442, -1534, -1685, -1724, -1889, -2125, -2127, + -5720, -4753, -2210, -2359, -2410, -3313, -2416, -5721, -2446 + ], + [0, -4902, -5722, -3690, -488, -856, -5723, -1789], + [1, 3, 1460], + [0, 1461, 1462, 174, 4], + [ + 0, -620, -719, -5724, -3808, -5725, -1077, -1107, -1276, -1351, -1437, -5726, -1548, -1600, -1753, -1955, -2177, + -2275, -2501, -2503, -2520 + ], + [0, -3044, -3621, -3037, -932, -5727, -943, -958, -966, -968, -1654], + [1, 3, 1464], + [0, 1465, 1466, 1467, 4], + [0, -5729, -888, -2177, -2433, -2550], + [0, -4370, -3037, -3199, -3041, -519, -1077, -2410], + [0, -489, -1599, -5730, -3690, -4100, -856, -3262, -5731, -687, -5732, -3958, -3691, -5728, -5733, -5734], + [1, 3, 1469], + [0, 1470, 1471, 1472, 5], + [0, -812, -5735, -1730, -1465, -2456], + [0, -664, -665, -1654, -2210, -2211], + [0, -5736, -5737, -5738, -5739, -5740, -5741], + [1, 3, 1474], + [0, 1475, 0, 7, 4], + [0, -5742, -5743, -3320, -5744, -2387], + [1, 3, 1477], + [0, 1478, 0, 1479, 8], + [0, -5745, -5742, -494, -5743, -5746, -5744, -2387, -5747], + [0, -3217, -4795, -5748, -3214, -5749, -1764, -2006], + [1, 3, 1481], + [0, 1482, 1483, 7, 6], + [0, -5743, -5744, -2387, -5750], + [0, -5751, -3136, -3037, -1122, -1123, -1415, -2125, -2127, -2375, -2388, -2410], + [1, 3, 1485], + [0, 1486, 1487, 7, 6], + [0, -494, -5752, -2387], + [0, -5751, -3136, -5753, -1037, -1122, -1123, -1415, -5754, -2125, -2127, -2375, -2388, -2410], + [1, 3, 1489], + [0, 0, 1490, 1491, 5], + [0, -708, -756, -5755, -796, -1104, -1405, -1654, -1657, -1663, -1788, -2174, -2449], + [0, -5756, -1847, -3590, -2444, -3966, -3551, -3209, -5757, -4792, -3994], + [1, 3, 1493], + [0, 1494, 1495, 1496, 4], + [0, -2959, -5758, -5759, -5760, -5761, -523, -615, -5762, -1548, -1582, -1666, -1667, -5763, -2177, -5764, -2531], + [ + 0, -5765, -5766, -2860, -3470, -3471, -5767, -3044, -3621, -3037, -5768, -3199, -4204, -4733, -664, -665, -741, + -1654, -1942, -2174, -2210, -2379, -2410, -2542 + ], + [0, -5769, -5271, -3634, -4864, -3162, -5770], + [1, 3, 1498], + [0, 1499, 1500, 1501, 10], + [ + 0, -5771, -5772, -5773, -5038, -5774, -5775, -5776, -5777, -5778, -5779, -5780, -5781, -5782, -5783, -5784, + -5785, -5786, -5787, -5788, -5789, -5790, -5791, -5792 + ], + [0, -1788, -1722, -1654, -2210, -932, -1942, -2410, -5793, -3037, -3621, -4372, -3199, -966, -428, -5794, -427], + [0, -5795, -5796, -5797, -5798, -5799, -5800, -5801, -5802, -5803, -5804, -5805], + [1, 3, 1503], + [0, 1504, 1505, 1506, 5], + [0, -5806, -5807, -5808, -5809, -5810, -5811], + [ + 0, -5812, -3136, -3037, -427, -428, -5813, -932, -940, -948, -958, -967, -1122, -1415, -1942, -5814, -1944, + -5815, -2251, -2375, -2379, -2410 + ], + [0, -5816, -5817, -3445, -5818, -1122, -5819, -3967, -2410, -5820], + [1, 3, 1508], + [0, 1509, 1510, 1511, 4], + [0, -5821, -510, -5822, -2062, -5823, -2325, -5824], + [0, -5825, -664, -1446, -1650, -1654, -2125, -5826, -2323, -2555], + [0, -5409, -501, -5827, -5408, -2323], + [1, 3, 1513], + [0, 0, 1514, 7, 8], + [0, -664, -1415, -1942], + [1, 3, 1516], + [0, 0, 1517, 1518, 10], + [0, -32, -5828, -932, -1654, -1788], + [0, -687, -3215, -503, -5829, -4377], + [0, 45, 15, 16, 6], + [1, 3, 1521], + [0, 1522, 1523, 1524, 6], + [0, -655, -5830, -5831, -5832], + [0, -5833, -5834, -516, -5835, -932, -993, -1065, -5836, -1365, -1777, -1788, -1794, -2156, -2322], + [0, -5837, -5838, -5839, -5840, -5396, -3582, -5841, -5842, -5843], + [1, 3, 1526], + [0, 0, 14, 1527, 6], + [0, -5839, -506, -5844, -5845, -5846, -5847], + [1, 3, 1529], + [0, 1530, 1531, 1532, 5], + [0, -2444, -5848, -655, -5849, -1797], + [0, -2322, -468, -753, -767, -21, -5850, -23, -1798, -40, -3335], + [0, -507, -4865], + [1, 3, 1534], + [0, 0, 1535, 7, 4], + [0, -2322, -1032], + [1, 3, 1537], + [0, 1538, 1539, 1540, 4], + [0, -820, -5851, -5852, -1794, -5853, -5854], + [0, -633, -1405, -1654, -1939], + [0, -507, -5855, -5856, -509, -3440, -1001, -1003, -2198, -5857, -4679, -4873, -4004, -3634, -3636, -5858, -5119], + [1, 3, 1542], + [0, 0, 1543, 1544, 4], + [ + 0, -1788, -664, -2148, -1446, -1471, -1654, -2550, -932, -2127, -2177, -674, -571, -615, -1077, -589, -633, -23, + -925, -1482, -5859, -566, -1472, -5860, -559, -5861, -5862, -32, -1483, -539, -1487, -1479, -5863, -2137, -535, + -5864, -549 + ], + [0, -510, -5865, -3551, -3590], + [1, 3, 1546], + [0, 0, 1547, 1548, 9], + [0, -3037, -5866, -2319, -2379, -2410], + [0, -510, -5867, -3184, -1334, -5868, -5149, -1961, -3844], + [1, 3, 1550], + [0, 1551, 1552, 7, 4], + [0, -2122], + [0, -519, -932, -1942, -1729, -1939, -5869, -1534, -969, -933, -958, -940, -962], + [1, 3, 1554], + [0, 0, 1555, 1556, 4], + [0, -23, -5870, -40, -42, -5871, -3136, -533, -756, -1415, -1534, -1763, -5872, -5873, -1939, -1942, -2379, -2410], + [0, -2451, -5874, -510], + [1, 3, 1558], + [0, 0, 0, 1559, 5], + [0, -514, -4865], + [1, 3, 1561], + [0, 1562, 1563, 1564, 6], + [0, -2359, -714, -5875, -2177, -5876, -5877, -5878], + [0, -1788, -2322, -932, -1777, -516, -2156, -5834], + [0, -5879, -5880, -5881, -1764, -5879], + [1, 3, 1566], + [0, 1567, 1568, 1569, 6], + [0, -719, -1276, -5882, -1729, -5883, -2177], + [0, -23, -43, -539, -5884, -664, -708, -767, -1609, -1654, -1788, -2226, -2250], + [0, -5885, -5886, -5887, -5888, -1573, -3262, -5889, -5890, -5891, -1306], + [1, 3, 1571], + [0, 1572, 1573, 1574, 5], + [0, -679, -714, -5892, -5893, -1107, -5894, -1574, -1816, -5895, -2105, -5896, -2550], + [0, -526, -559, -664, -932, -933, -958, -962, -969, -1654], + [0, -5885, -3015, -1380, -5897, -2490], + [1, 3, 1576], + [0, 1577, 0, 1578, 10], + [0, -635, -658, -5898, -1863, -1934], + [0, -518, -775, -5899, -1889, -3583], + [1, 3, 1580], + [0, 1581, 1582, 1583, 8], + [ + 0, -5900, -461, -462, -482, -5901, -506, -5902, -5903, -668, -5904, -680, -5905, -696, -5906, -5907, -5908, + -5909, -812, -5910, -1040, -1111, -5911, -1366, -1396, -1398, -5912, -5913, -1681, -1826, -5914, -1864, -1877, + -1951, -5915, -4621, -5916, -5917, -2530, -2550 + ], + [0, -5028, -5918, -3037, -480, -652, -999, -1001, -2210, -2319, -2331, -2384, -2410, -2541, -5747], + [ + 0, -5919, -4004, -4043, -3634, -519, -5920, -5921, -5922, -4873, -5732, -687, -1415, -1654, -2322, -2319, -1989, + -1412, -507, -5855, -1961, -5923, -510, -5924, -5867, -3262, -5925, -5926, -5927, -5928, -5119, -4045, -1001, + -2410 + ], + [1, 3, 1585], + [0, 1586, 1587, 1588, 4], + [0, -668, -909, -1543, -1548, -1639, -1650, -2234, -5929], + [ + 0, -3035, -3044, -4036, -3621, -3037, -3714, -4372, -3046, -615, -664, -5930, -1077, -1344, -1534, -1654, -1942, + -5931, -2125, -2195, -2251, -2330, -2388, -2410, -2501, -2503 + ], + [0, -2501, -5932, -5050, -2410], + [1, 3, 1590], + [0, 1591, 1592, 1593, 5], + [0, -2165, -2435, -2444, -2446, -640, -997, -2536, -5933, -5934, -1985], + [ + 0, -664, -1471, -1654, -932, -708, -1412, -2501, -793, -2416, -633, -2410, -3037, -1455, -711, -1413, -1481, + -5935, -5936, -1475 + ], + [ + 0, -3690, -5937, -5817, -5938, -5939, -5940, -5941, -5942, -5943, -5944, -5945, -5946, -5947, -5948, -5949, + -5950, -5951, -5952, -5953, -5954, -5955, -5956, -5957, -5958, -5959, -5960, -5961, -5962, -5197, -5963, -5964, + -5965, -5966, -5967, -5968 + ], + [1, 3, 1595], + [0, 0, 1596, 1597, 4], + [ + 0, -664, -1107, -668, -702, -999, -1127, -1344, -1446, -1449, -1471, -1654, -2210, -932, -1437, -753, -928, + -1110, -1821, -1376, -5969, -1942, -2416, -5970, -5113, -5971, -1474, -5972, -2410, -23, -3037, -5973, -925, + -5974, -1339, -1482, -1489, -1534, -1771, -5975, -5976, -1320, -1737, -4916, -5977, -5978, -2251, -5979, -40, + -5980, -1480, -2173, -5981, -1134, -1149, -1491, -1136, -1148, -5982, -1475, -2253, -3345, -940, -1479, -5983, + -5984, -36 + ], + [0, -5985, -4665, -3634, -5119, -4873, -3440, -5986], + [1, 3, 1599], + [0, 1600, 1601, 1602, 4], + [0, -1069, -5987, -1063], + [ + 0, -652, -1168, -668, -1344, -1471, -1654, -2210, -932, -1685, -1831, -2127, -1004, -5988, -1077, -5969, -1646, + -756, -767, -1070, -1100, -1276, -3727, -2325, -2410, -23, -617, -925, -1489, -1413, -1948, -5989, -1481, -516, + -86, -5990, -40, -5991, -4062, -4066, -3326, -1488, -2140, -5992, -1475, -1487, -1479, -1490, -350, -5993, + -1486, -5994, -5995, -351, -5996, -5997, -3307 + ], + [0, -2533, -1334, -5998, -1961, -3966, -4865, -4213, -3691, -3690, -3323], + [1, 3, 1604], + [0, 1605, 1606, 1607, 4], + [0, -5999, -1015, -6000, -6001, -2062, -2105, -2424, -2446, -2451, -2536, -2538, -1456], + [ + 0, -6002, -633, -756, -6003, -1127, -1154, -2778, -1405, -1471, -1475, -1478, -6004, -1479, -1480, -1482, -1483, + -1654, -1657, -1722, -2198, -2416, -2491 + ], + [0, -3966, -5800, -6005], + [1, 3, 1609], + [0, 1610, 1611, 137, 4], + [0, -527, -556, -566, -567, -719, -742, -3179, -1107, -1548, -6006, -1850, -2218, -2231, -6007, -679], + [0, -530], + [1, 3, 1613], + [0, 1614, 1615, 138, 9], + [ + 0, -6008, -529, -6009, -6010, -566, -567, -568, -569, -570, -572, -742, -812, -1460, -1548, -1645, -1850, -6011, + -2218, -2231 + ], + [0, -530, -6012, -556], + [1, 3, 1617], + [0, 1618, 1619, 7, 5], + [0, -2114, -47, -25, -46, -22, -983], + [0, -1344, -1654, -815, -932, -986, -1942, -1534, -528, -6013, -958, -956, -967], + [1, 3, 1621], + [0, 1622, 1623, 7, 5], + [0, -6010, -567, -570, -831, -1451, -1548, -2231, -6014], + [0, -530, -572], + [1, 3, 1625], + [0, 1626, 0, 7, 4], + [0, -567, -1548, -6015, -2177], + [1, 3, 1628], + [0, 1629, 0, 7, 5], + [0, -567, -6012], + [1, 3, 1631], + [0, 0, 0, 1632, 6], + [0, -525, -2476, -4146], + [1, 3, 1634], + [0, 1635, 1636, 7, 4], + [0, -4020, -4776, -539, -6016, -668, -1119, -2218], + [0, -23, -4034, -4035], + [1, 3, 1638], + [0, 175, 1639, 1640, 8], + [0, -21, -23, -32, -40, -652, -932, -940, -967, -1110, -1344, -1534, -1942, -2501], + [0, -2501, -5932, -525, -3184, -3186, -3551], + [1, 3, 1642], + [0, 0, 1643, 1644, 8], + [ + 0, -23, -34, -40, -526, -527, -528, -5884, -6017, -558, -6018, -560, -568, -570, -6019, -932, -940, -943, -958, + -966, -967, -968, -974, -1654, -1938, -1942, -2125, -2156 + ], + [0, -3220, -6020], + [1, 3, 1646], + [0, 1647, 1648, 1649, 4], + [0, -1797], + [ + 0, -2322, -932, -2125, -526, -527, -1365, -23, -528, -566, -6021, -40, -557, -559, -2156, -958, -934, -537, + -3840, -535, -3382, -6022, -550 + ], + [0, -525, -3862, -6023, -6024, -3966], + [1, 3, 1651], + [0, 116, 35, 21, 5], + [1, 3, 1653], + [0, 1654, 1655, 1656, 10], + [0, -3341], + [ + 0, -23, -41, -6025, -527, -6026, -756, -932, -933, -940, -958, -967, -1031, -1344, -1534, -1613, -1763, -1942, + -6027 + ], + [0, -3220, -485], + [1, 3, 1658], + [0, 1659, 1660, 1661, 4], + [0, -24, -6028, -4003, -6029, -6030], + [0, -21, -23, -3362, -3204, -43, -664, -756, -767, -1654, -1788, -6031, -2250], + [0, -1405, -525, -3862, -6032], + [1, 3, 1663], + [0, 1664, 1665, 1666, 4], + [0, -3341, -47, -1107, -1548, -6033], + [ + 0, -21, -23, -6034, -36, -3201, -3077, -38, -40, -41, -6035, -43, -4754, -510, -535, -540, -664, -6036, -6037, + -1549, -1654, -1993, -2011 + ], + [0, -3220, -6038, -1548, -3209], + [1, 3, 1668], + [0, 1669, 1670, 1671, 6], + [0, -6039, -1107, -1872, -2112, -2114], + [0, -21, -23, -37, -3204, -40, -527, -533, -722, -932, -934, -940, -958, -1344, -1415, -1534, -6040, -2251], + [0, -525, -3220, -3551, -6041, -6042, -6043, -2114, -6044, -6045, -4792, -6024], + [1, 3, 1673], + [0, 0, 1674, 7, 5], + [0, -1415, -6046], + [1, 3, 1676], + [0, 0, 0, 21, 5], + [1, 3, 1678], + [0, 0, 0, 21, 4], + [1, 3, 1680], + [0, 1681, 35, 21, 5], + [0, -6047, -6048, -567], + [1, 3, 1683], + [0, 1684, 35, 21, 5], + [0, -6049, -6050, -567, -568], + [1, 3, 1686], + [0, 1687, 1688, 1689, 6], + [0, -6051, -567, -568], + [0, -526, -546, -555, -559, -664, -1654], + [0, -525, -3220, -6052, -3336], + [1, 3, 1691], + [0, 1692, 35, 21, 5], + [0, -567, -568, -569, -570, -1548], + [1, 3, 1694], + [0, 1695, 1696, 21, 6], + [0, -6053, -567, -568, -570], + [0, -531, -6054], + [1, 3, 1698], + [0, 116, 35, 21, 10], + [1, 3, 1700], + [0, 1701, 35, 21, 4], + [0, -6054, -567], + [1, 3, 1703], + [0, 1704, 35, 21, 5], + [0, -567, -6055, -544], + [1, 3, 1706], + [0, 0, 1707, 1708, 4], + [ + 0, -21, -23, -3194, -3840, -26, -3203, -40, -6056, -41, -43, -528, -6057, -664, -932, -933, -951, -956, -958, + -962, -964, -967, -969, -1111, -1654, -6058, -1942 + ], + [0, -525, -3220, -2006, -6059, -6060], + [1, 3, 1710], + [0, 1711, 35, 7, 4], + [0, -6061], + [1, 3, 1713], + [0, 116, 35, 21, 4], + [1, 3, 1715], + [0, 1716, 0, 7, 6], + [0, -567, -753, -2082], + [1, 3, 1718], + [0, 1719, 1720, 1721, 6], + [0, -40, -41, -24, -3352, -38, -6062, -5584, -36, -3381, -6063, -3382, -6064, -553, -3393, -6065, -3396], + [0, -932, -23, -44, -2156, -958, -934], + [0, -525, -3184, -4795, -3214], + [1, 3, 1723], + [0, 1724, 1725, 7, 5], + [ + 0, -6066, -6067, -545, -6068, -6069, -548, -6070, -6071, -6072, -6073, -6074, -6075, -6076, -6077, -549, -6078, + -6079, -6080, -6081, -6082, -6083, -6084, -550, -6085, -6086, -6087, -554, -635, -1384, -2177 + ], + [ + 0, -526, -528, -530, -531, -539, -558, -566, -664, -708, -932, -6013, -956, -1077, -1548, -1654, -1788, -6088, + -2125 + ], + [1, 3, 1727], + [0, 1728, 1729, 7, 6], + [ + 0, -6066, -6068, -6069, -548, -6070, -6071, -6072, -6073, -6074, -6075, -6076, -6077, -549, -6078, -6079, -6080, + -6081, -6082, -6083, -6084, -550, -6085, -6086, -554 + ], + [0, -6012, -531], + [1, 3, 1731], + [0, 1732, 0, 7, 8], + [0, -6089, -544, -6090, -552, -6091, -6092], + [1, 3, 1734], + [0, 1735, 0, 7, 4], + [0, -23, -26, -33, -6065, -6062, -5584, -6093, -3394, -3203, -3409, -38, -40, -41, -42, -44, -3766, -553], + [1, 3, 1737], + [0, 1738, 0, 7, 9], + [0, -6094, -6095, -563], + [1, 3, 1740], + [0, 1741, 0, 7, 5], + [0, -6096, -6017, -564], + [1, 3, 1743], + [0, 1744, 0, 7, 4], + [0, -565, -6097, -543, -546], + [1, 3, 1746], + [0, 1747, 0, 7, 5], + [0, -6067, -6098, -545, -6087, -551], + [1, 3, 1749], + [0, 1750, 1751, 7, 4], + [0, -527, -567, -753, -6099, -1548, -1650, -2234], + [0, -3542], + [1, 3, 1753], + [0, 140, 1754, 7, 8], + [0, -6009, -555], + [1, 3, 1756], + [0, 1757, 0, 7, 4], + [0, -567, -569, -570, -572, -1548], + [1, 3, 1759], + [0, 1760, 1761, 7, 5], + [0, -6008, -6010, -567, -570, -572, -812, -1110, -1384, -1548], + [0, -529], + [1, 3, 1763], + [0, 1764, 1765, 7, 6], + [0, -567, -6100, -1548, -6101], + [0, -529, -572], + [1, 3, 1767], + [0, 0, 1768, 7, 5], + [0, -2319, -633, -23, -6102, -40, -6056, -742, -41, -6103, -3381, -3409], + [1, 3, 1770], + [0, 0, 1771, 1772, 6], + [ + 0, -519, -526, -528, -530, -537, -539, -6104, -559, -562, -668, -708, -767, -932, -6013, -956, -1059, -1788, + -2125, -2127, -2128, -2137, -5385, -6105 + ], + [0, -525, -3214, -3215, -572], + [1, 3, 1774], + [0, 1775, 1776, 1777, 4], + [0, -2424], + [0, -711, -757, -849, -932, -958, -1471, -1485, -1989, -2104, -2127, -2416], + [0, -6106, -6107, -5394, -3122, -3844, -3323, -4865], + [1, 3, 1779], + [0, 1780, 1781, 1782, 11], + [0, -719, -1107, -1376, -1805, -2125, -2387, -2446, -2451], + [ + 0, -6108, -3036, -3049, -3037, -3738, -6109, -3046, -427, -428, -3311, -6110, -6111, -3312, -664, -932, -958, + -966, -1654, -1656, -6112, -2195, -2200, -2335, -2376, -2379, -2402, -2410, -5260, -2501, -2503 + ], + [0, -3445, -574, -1671, -3105, -6113], + [0, 44, 15, 16, 4], + [1, 3, 1785], + [0, 0, 1786, 1787, 5], + [0, -756, -1127, -1132, -1162, -6114, -1405, -1654, -2081], + [0, -6115, -6116, -6117, -6118, -514, -638], + [0, 45, 15, 16, 11], + [1, 3, 1790], + [0, 0, 1791, 1792, 8], + [0, -5859, -589, -633, -2322], + [0, -6118], + [1, 3, 1794], + [0, 177, 1795, 1796, 5], + [0, -1654, -932, -1405, -966, -958, -968, -943, -963, -974], + [0, -6119, -6120, -6121, -6122], + [1, 3, 1798], + [0, 1799, 1800, 1801, 4], + [0, -888, -1645, -1646, -1650, -6123], + [0, -932, -943, -958, -966, -968, -974, -1654, -2125, -2293, -2369, -2418, -2450], + [0, -1004, -3161, -6124, -6125, -6126, -1752, -3578, -3691, -5728, -3122, -3994, -1954, -3445, -3690], + [1, 3, 1803], + [0, 1804, 1805, 178, 4], + [0, -1723, -6127], + [0, -1415, -6128], + [1, 3, 1807], + [0, 0, 0, 1808, 4], + [0, -581, -3214, -3756, -6131, -5110, -6120, -3173, -6129, -6130, -770], + [1, 3, 1810], + [0, 0, 1811, 178, 8], + [0, -581, -6132, -1942, -2410], + [1, 3, 1813], + [0, 1814, 1815, 1816, 9], + [0, -6133, -719, -679], + [0, -1003, -1127, -600, -1130, -1156, -1134, -1148], + [0, -6134, -6135, -6136, -6137, -6138, -6139, -3870, -6140, -6141, -6142, -6143, -6144, -6145], + [1, 3, 1818], + [0, 0, 0, 1819, 5], + [0, -589, -6146], + [0, 68, 15, 16, 8], + [1, 3, 1822], + [0, 1823, 1824, 1825, 8], + [ + 0, -1640, -1805, -2518, -2546, -1519, -2114, -2346, -679, -1646, -6176, -1888, -1948, -725, -6177, -2062, -6178, + -6179, -6180 + ], + [0, -6181, -4215, -2322, -2363, -1405, -2491, -633, -6182], + [0, -6183, -633], + [0, 45, 15, 16, 4], + [1, 3, 1828], + [0, 1829, 1830, 1831, 11], + [0, -1548, -6184], + [0, -756, -6185, -1405, -6186, -1991, -2111], + [0, -589, -6187, -6188], + [0, 45, 15, 16, 5], + [1, 3, 1834], + [0, 1835, 0, 1836, 9], + [ + 0, -6189, -6190, -6191, -23, -3194, -25, -26, -6093, -5828, -3355, -3204, -3408, -40, -42, -46, -4228, -4145, + -3037, -469, -6192, -501, -510, -674, -679, -683, -714, -6193, -742, -1070, -1323, -6194, -1729, -1847, -1942, + -6195, -2162, -2228, -2231, -2245, -2299, -2410, -2416, -6196, -2476, -2550, -1376, -6197 + ], + [ + 0, -6198, -6199, -6200, -6201, -6202, -6203, -3161, -2410, -3214, -3018, -5065, -4726, -3445, -6204, -6205, + -6206, -6207, -6208, -6209, -6210, -6211, -6212, -6213, -6214, -6215, -4160, -6216, -6217, -2006, -6218, -6219, + -2476, -6220, -6221, -4726, -2299, -6222, -6223, -2228, -6224 + ], + [1, 3, 1838], + [0, 1839, 1840, 1841, 10], + [0, -6225, -6226, -6227], + [0, -523, -664, -932, -1654, -6228, -1972, -6229], + [0, -4055, -6230, -6231, -2487, -1838, -3215, -6232, -6233, -2059, -6234, -510, -6235], + [1, 3, 1843], + [0, 0, 0, 1844, 5], + [0, -6236, -6237, -6238, -6239, -6240, -6241, -6242, -6243, -6244, -6245, -6246, -6247], + [1, 3, 1846], + [0, 1847, 0, 1848, 8], + [0, -6248], + [0, -5269, -6249, -596, -6250, -5968, -6251, -6252], + [1, 3, 1850], + [0, 1851, 1852, 7, 4], + [0, -6253], + [0, -1788, -2322, -2388, -1942, -1729, -1972, -2410, -3037], + [1, 3, 1854], + [0, 1855, 1856, 1857, 9], + [0, -6254, -6255, -6256, -6257, -3204, -38, -2687, -6022, -6258, -2965, -6259, -2489], + [ + 0, -6260, -21, -23, -3204, -40, -6261, -43, -44, -4757, -2697, -358, -6262, -6263, -4754, -6264, -4956, -4749, + -4959, -409, -3136, -3052, -6265, -6266, -6021, -6267, -533, -534, -6268, -6269, -539, -557, -560, -6026, -567, + -6270, -683, -756, -767, -799, -6271, -932, -6272, -1168, -1261, -1266, -6273, -1365, -1415, -1422, -1440, + -1666, -6274, -1743, -1763, -1771, -1782, -1788, -1939, -1942, -2000, -2006, -2019, -6275, -6276, -2125, -2156, + -2163, -6277, -2275, -2375, -2376, -2410, -2501, -2502, -2503 + ], + [0, -598, -6278], + [1, 3, 1859], + [0, 1860, 1861, 1862, 8], + [0, -6279, -640, -1370, -2062], + [0, -1032, -2250, -2322, -2410], + [0, -640, -6280, -5827, -6281], + [1, 3, 1864], + [0, 1865, 1866, 1867, 5], + [0, -461, -6282, -6283, -1402, -1795, -2546], + [0, -510, -6284, -710, -1127, -1132, -1134, -1136, -1144, -1148, -1542, -1654, -1859, -2111, -2006, -6285], + [0, -4005], + [1, 3, 1869], + [0, 0, 0, 1870, 5], + [0, -6286, -6287, -6288, -6289, -6290], + [1, 3, 1872], + [0, 1873, 1874, 7, 6], + [0, -6291, -668, -6292, -1548, -6293, -1610, -6294, -6295, -1627, -6296, -6297, -2269, -6298, -6299], + [0, -6300, -601, -714, -932, -943, -958, -966, -968, -974], + [0, 45, 15, 16, 8], + [0, 67, 15, 16, 10], + [0, 67, 15, 16, 5], + [0, 67, 15, 16, 6], + [1, 3, 1880], + [0, 0, 1881, 1882, 5], + [0, -1405], + [0, -6301, -5389, -6302, -6187], + [1, 3, 1884], + [0, 0, 1885, 1886, 5], + [ + 0, -705, -2152, -1107, -1805, -461, -6303, -1654, -2210, -1452, -1650, -2125, -6304, -615, -1303, -1405, -1813, + -693, -2416, -462, -633, -617, -769, -2187, -1453, -1161 + ], + [0, -1961, -6187, -5923, -6305, -6306, -510, -5867, -6307, -6308, -6309, -6310, -6311, -6312], + [1, 3, 1888], + [0, 0, 1889, 1890, 6], + [0, -1654, -6313, -953], + [0, -6314, -6315, -6316, -6317, -6318], + [1, 3, 1892], + [0, 1893, 81, 7, 6], + [0, -651, -737, -812, -1335, -1351, -1800, -1983, -1999, -2401], + [1, 3, 1895], + [0, 1896, 1897, 1898, 4], + [0, -615, -6319, -1369, -1548], + [ + 0, -6320, -664, -932, -940, -967, -1344, -1446, -1497, -1534, -1654, -1691, -1788, -1857, -1942, -2210, -2211, + -2245, -2446 + ], + [0, -1818, -1691, -6321, -3742, -6322, -6323], + [1, 3, 1900], + [0, 182, 1901, 1902, 4], + [0, -707, -1510, -1607], + [0, -6324, -1334], + [1, 3, 1904], + [0, 0, 1905, 148, 4], + [ + 0, -1389, -2564, -1640, -2162, -2834, -1471, -932, -1111, -1437, -2093, -2127, -2149, -2334, -1412, -1442, + -1753, -1889, -2195, -3574, -1942, -699, -767, -3031, -2281, -21, -1354, -23, -6325, -3563, -1333, -1891, -2096, + -6326, -518, -1772, -3559, -3564, -1481, -1547, -6327, -6328, -2997, -3660, -3803, -3649, -3562, -6329, -945, + -3566, -2429, -40, -6330, -957, -3326, -958, -978, -1475, -1477, -6331, -3561, -963, -1479, -3571, -350, -6332, + -2084, -1486, -3565, -351, -1473, -3569, -3573, -3568 + ], + [1, 3, 1907], + [0, 0, 1908, 1909, 4], + [0, -2162, -6333, -888], + [0, -620, -2162, -775, -6334], + [1, 3, 1911], + [0, 0, 0, 1912, 4], + [0, -622], + [1, 3, 1914], + [0, 1915, 1916, 1917, 8], + [0, -2728, -656, -668, -688, -2267, -2400, -2820, -2528], + [0, -519, -1788, -2384, -2541], + [0, -687, -6335, -6336, -3974, -4110, -4000, -4111, -4112, -6337, -5554], + [1, 3, 1919], + [0, 1920, 1921, 1922, 4], + [0, -6338, -2114, -6339, -2347], + [0, -633, -725, -2319, -2346], + [0, -633, -6340, -1076, -6341, -3862, -5142, -6342, -4161, -6118], + [1, 3, 1924], + [0, 1925, 1926, 1927, 4], + [0, -812, -1645, -2488, -6343, -6344, -6345, -6346], + [0, -664, -1654, -2125, -1077, -2091, -6347, -964, -630, -6348], + [0, -6346, -3214], + [1, 3, 1929], + [0, 1930, 1931, 1932, 4], + [0, -6346, -6349], + [0, -6350, -630, -664, -1654, -6347], + [0, -6346, -1631, -6351], + [1, 3, 1934], + [0, 1935, 1936, 7, 6], + [0, -3628, -2731, -1054, -6345, -2359, -2488], + [0, -3035, -3621, -3037, -6352, -664, -726, -1654, -6353, -1788, -1942, -6354, -2388, -2389, -6355, -2410], + [1, 3, 1938], + [0, 1939, 1940, 1941, 6], + [ + 0, -6356, -6357, -6358, -668, -679, -729, -731, -6359, -6360, -6361, -990, -1072, -1077, -1336, -1361, -1639, + -1812, -5763, -1999, -6362, -2152, -2178, -2186, -2187, -2188, -2228, -2594, -2550 + ], + [ + 0, -3037, -6363, -664, -6364, -1119, -5735, -1654, -1942, -1980, -2105, -2111, -2125, -2210, -2229, -2234, + -2269, -2293, -2410, -2460 + ], + [0, -6365, -775, -6366, -6367], + [1, 3, 1943], + [0, 1944, 1945, 1946, 5], + [ + 0, -2435, -1107, -2444, -2546, -507, -640, -997, -1285, -6368, -6369, -6370, -1958, -2114, -1370, -1977, -2347, + -6371, -6372, -1464, -6373, -6374, -2194, -6375, -6376, -6377, -725, -6378, -6379, -6380, -6381, -6382, -6383, + -6384, -6385, -6386, -1848, -6387, -2062, -6388, -6389, -771, -6390, -6391, -6392, -6393, -6394, -5936, -6395 + ], + [0, -6396, -2319, -2330, -2177, -2346, -573, -6397, -6398, -710, -6399, -6400, -6401, -6402], + [0, -4865, -4792, -4791, -6403, -4161, -1764, -3214], + [1, 3, 1948], + [0, 1949, 1950, 1951, 9], + [0, -6404, -6405, -6406, -2114, -2346], + [0, -1449, -1705, -1972, -2105, -2125, -2319, -6407], + [0, -633, -6340, -5396, -1109, -1110, -6408, -6409, -4791], + [1, 3, 1953], + [0, 1954, 0, 1955, 9], + [0, -6410, -658, -6088, -6411, -6412], + [0, -657, -6413, -6414], + [1, 3, 1957], + [0, 1958, 1959, 1960, 11], + [0, -6415], + [0, -2322, -2125, -2410, -3037, -6416], + [0, -6417, -6418, -770, -6419, -6420, -6421, -6422, -5835, -6423], + [1, 3, 1962], + [0, 0, 1963, 1964, 10], + [ + 0, -1788, -2323, -2384, -664, -2446, -668, -1654, -2210, -932, -2127, -2379, -1942, -589, -1729, -2211, -2410, + -3035, -3037, -3621, -4372, -1588, -3625, -2234, -977, -940, -967, -262, -3267, -428, -351, -6424, -427, -234 + ], + [0, -1671, -637, -3215], + [1, 3, 1966], + [0, 0, 0, 1967, 6], + [0, -638, -4865], + [1, 3, 1969], + [0, 1970, 1971, 1972, 8], + [0, -461, -6425, -6426, -668, -1588, -1646, -6427], + [0, -6428, -932, -1107, -1654, -2125, -2127, -6429, -350, -4062, -351, -2231, -2234, -6430], + [0, -3214, -6431, -6432, -6433, -4795, -6434, -3184, -6052], + [1, 3, 1974], + [0, 1975, 1976, 1977, 11], + [0, -578, -5933], + [0, -468, -589, -633, -725, -1345, -5852, -5848, -2239, -2322, -2347, -2416], + [0, -6435, -4865, -633, -640, -6436, -6437, -6438], + [1, 3, 1979], + [0, 0, 1980, 1981, 4], + [0, -5834, -515, -516, -932, -1365, -1777, -2156, -2322], + [0, -640, -6439], + [1, 3, 1983], + [0, 1984, 1985, 1986, 4], + [0, -6127], + [0, -1654, -1733, -6128], + [0, -642], + [1, 3, 1988], + [0, 0, 14, 1989, 5], + [0, -6440, -6441, -6442, -3966, -3209, -3103, -6443, -4108, -5839, -6444], + [1, 3, 1991], + [0, 0, 1992, 1993, 5], + [0, -784, -1891, -1942, -2125, -2162], + [0, -775, -2162, -3754, -6445, -4672, -3576, -3161], + [1, 3, 1995], + [0, 1996, 1997, 1998, 5], + [0, -3417, -6446, -6447, -303, -304, -6448, -6449, -5007, -523, -668, -812, -6450, -6451, -1805], + [ + 0, -4367, -4368, -3035, -3198, -6452, -3621, -3037, -4372, -427, -664, -932, -938, -939, -940, -967, -1654, + -1661, -1722, -1763, -1788, -4362, -2200, -2210, -2379, -2410 + ], + [0, -3690, -856, -3438, -3328, -6453, -687], + [1, 3, 2000], + [0, 2001, 31, 2002, 5], + [0, -6376, -6399, -725, -6282, -1646, -2347], + [0, -633, -4161, -6454, -1644, -4792], + [1, 3, 2004], + [0, 2005, 2006, 2007, 6], + [0, -6455, -1666, -6456, -6457], + [0, -6458, -2319, -2454, -2456, -1607], + [0, -1573, -5545, -6459, -4055, -648], + [1, 3, 2009], + [0, 2010, 2011, 2012, 6], + [0, -6460], + [0, -6461, -932], + [0, -6462, -4054, -6463, -1069], + [1, 3, 2014], + [0, 2015, 2016, 2017, 4], + [0, -1578], + [0, -6464, -6465, -6466, -6467, -6468, -6469], + [0, -5149, -5839, -640, -6435, -6470, -650, -4055, -2512, -6471], + [1, 3, 2019], + [0, 0, 2020, 2021, 4], + [0, -932, -963, -1654, -1788], + [0, -6472, -651, -3590, -1838, -3215, -5845, -6473], + [1, 3, 2023], + [0, 2024, 2025, 2026, 4], + [0, -6474, -4003, -1047, -6475, -5086, -5087, -5089, -6030, -6476, -2550, -2551], + [0, -3037, -664, -6477, -767, -1654, -2250, -2379, -2410], + [0, -4005, -6478, -4004, -1405, -6479, -6480, -3966], + [1, 3, 2028], + [0, 0, 2029, 7, 5], + [ + 0, -3446, -1415, -999, -1344, -1111, -2127, -928, -5354, -2375, -2379, -2402, -1077, -1942, -6481, -2410, -23, + -3136, -1534, -1607, -3048, -2174, -6482, -2132, -6483, -350, -796, -351, -6484 + ], + [1, 3, 2031], + [0, 2032, 2033, 2034, 11], + [0, -1495, -6485], + [0, -2581, -6486, -6487, -3037, -3664, -6488, -6489, -2125, -2391, -2410, -2469, -6490], + [0, -3324, -6491, -6492, -3966, -4601, -6493, -2071, -1622, -6494, -6495, -6496, -6497, -6498, -6499, -6500], + [1, 3, 2036], + [0, 2037, 2038, 2039, 4], + [0, -6501, -6502, -6503, -6504], + [0, -5834, -516, -5835, -921, -932, -993, -1065, -5836, -1365, -1777, -1788, -1794, -2156, -2322], + [0, -3214, -3217, -6505, -3756, -6506, -6507, -6508, -6509, -6510, -655, -6511, -5924, -5831], + [1, 3, 2041], + [0, 0, 14, 2042, 4], + [0, -656, -6512, -6513, -6514, -6515, -6516, -864, -2424, -6517, -2265, -5554, -5845, -6518, -6519], + [1, 3, 2044], + [0, 0, 0, 2045, 4], + [0, -5180, -5177, -3839, -4865], + [1, 3, 2047], + [0, 0, 0, 2048, 5], + [0, -6520], + [1, 3, 2050], + [0, 2051, 2052, 2053, 9], + [0, -1723, -6521], + [0, -3037, -6522, -1004, -1442, -1654, -1870, -2250, -2384, -2410], + [0, -659, -6523, -6524, -6525, -6526, -6527, -5093, -6528], + [0, 45, 15, 16, 9], + [1, 3, 2056], + [0, 0, 2057, 2058, 4], + [0, -516, -932, -934, -958, -1077, -1654, -2501], + [0, -2501, -3862, -6529, -6024, -4792], + [1, 3, 2060], + [0, 0, 0, 2061, 5], + [0, -1859, -6530, -4004, -3634, -6531], + [1, 3, 2063], + [0, 0, 2064, 2065, 5], + [ + 0, -652, -6532, -1654, -932, -928, -1110, -6533, -820, -1942, -190, -2410, -6534, -6535, -3311, -960, -6536, + -350, -3312 + ], + [0, -4004, -5855, -507, -3634, -664], + [1, 3, 2067], + [0, 2068, 2069, 2070, 5], + [0, -6534], + [0, -652, -664, -1654, -932, -1110, -1942, -190], + [0, -664, -6537, -4865, -510, -3634, -6538, -5923, -6306], + [1, 3, 2072], + [0, 0, 183, 2073, 9], + [0, -664, -1841, -6539], + [1, 3, 2075], + [0, 0, 2076, 2077, 9], + [0, -664, -1654, -1405, -756, -6347, -6540], + [0, -664, -6537, -6541, -6542, -6543, -3862, -6544, -6545, -6546, -5572, -6547, -6548, -6549], + [1, 3, 2079], + [0, 0, 2080, 2081, 8], + [0, -652, -2541, -519, -2384, -999, -1612, -1575, -6550, -3037, -3523], + [ + 0, -712, -5535, -714, -3974, -4000, -687, -2265, -5514, -5553, -3770, -3975, -5538, -5549, -5513, -5550, -2547, + -1573, -5545, -3958, -5554 + ], + [1, 3, 2083], + [0, 0, 2084, 2085, 10], + [0, -519, -528, -756, -6551, -932, -6552, -1168, -6553, -1197, -1243, -1252, -6554, -1548, -1788, -1976], + [0, -669, -6555, -3262, -4004, -6556, -6557, -6558, -6559], + [1, 3, 2087], + [0, 0, 0, 2088, 5], + [0, -5888, -6514, -5845, -6408, -6512, -6519, -6560, -6561, -6562], + [1, 3, 2090], + [0, 2091, 2092, 7, 4], + [0, -6563, -6564, -734, -6565, -3446, -6566, -6567, -1805, -1852, -6568, -6569, -2177, -6570], + [0, -3037, -3199, -3664, -932, -944, -1431, -1942, -2251, -2410, -2423, -2469], + [1, 3, 2094], + [0, 2095, 2096, 2097, 4], + [0, -6571], + [ + 0, -350, -6572, -4062, -351, -367, -426, -6573, -427, -428, -6574, -6575, -6576, -726, -756, -767, -932, -6577, + -6578, -957, -963, -985, -1107, -1412, -1413, -1471, -1475, -1476, -1478, -1479, -1481, -3569, -1486, -6579, + -1491, -3222, -1666, -1667, -1870, -2127, -2130, -3571, -6580, -2140, -2410, -2550 + ], + [0, -659, -6581, -6582, -6583, -5177, -3576], + [1, 3, 2099], + [0, 2100, 2101, 2102, 11], + [0, -1839, -2426, -6584, -6585, -1333, -6586, -861, -6587, -6588, -6589, -6590], + [ + 0, -2392, -2386, -1344, -1449, -932, -1437, -2469, -1110, -1942, -2354, -190, -2410, -3037, -1534, -4647, -3615, + -6591, -965, -6592, -2411, -3664, -960, -6593, -978, -1943, -6594, -940 + ], + [0, -6595, -1437, -3585, -6596, -3215, -5092, -6597, -3264], + [1, 3, 2104], + [0, 2105, 2106, 2107, 5], + [0, -769, -6598, -1962], + [0, -526, -6066, -548, -559, -664, -932, -1452, -1654], + [0, -6599, -1958, -5923], + [1, 3, 2109], + [0, 2110, 2111, 2112, 4], + [ + 0, -44, -6600, -3946, -6601, -5579, -513, -595, -6602, -682, -709, -5212, -747, -753, -761, -6603, -6604, -6605, + -6606, -5581, -6607, -3135, -6608, -6609, -1398, -1442, -6610, -1452, -6611, -6612, -5216, -1666, -6613, -1942, + -4918, -6614, -6615, -1992, -4930, -4987, -6616, -6617, -6618, -6619, -2027, -2029, -6620, -6621, -2040, -2048, + -2056, -2113, -6622, -4951, -2192, -6623, -2387, -2424, -2489, -2446 + ], + [ + 0, -23, -26, -33, -34, -35, -36, -3396, -5585, -3381, -6624, -38, -3351, -3382, -40, -41, -3744, -3746, -3747, + -3562, -3059, -6625, -6626, -3043, -6627, -6628, -3136, -6629, -3044, -6630, -6631, -5221, -3040, -6632, -3052, + -6633, -6634, -4972, -427, -428, -482, -518, -523, -527, -528, -533, -534, -538, -5596, -3133, -6635, -6636, + -6637, -6638, -661, -668, -5598, -719, -767, -778, -3078, -786, -4977, -5603, -915, -916, -2760, -932, -933, + -940, -951, -958, -959, -962, -963, -969, -6639, -1017, -1021, -4979, -1041, -1074, -1103, -1107, -1168, -1174, + -1252, -5605, -1261, -1344, -1352, -1360, -6640, -1415, -1449, -3134, -1521, -5611, -1534, -1548, -4984, -5613, + -6641, -5615, -1643, -1646, -1650, -1652, -1653, -1662, -1664, -1667, -1792, -1814, -1889, -1908, -1952, -4923, + -6642, -6643, -4986, -2006, -2012, -2013, -2016, -2017, -3145, -3143, -6644, -2028, -6645, -4242, -2098, -5616, + -5617, -3868, -5618, -2125, -5619, -6646, -2281, -4997, -4998, -2282, -4999, -2284, -2335, -2347, -2376, -2410, + -2427, -2437, -6647, -6648, -2501, -6649, -2508, -5628, -5002, -3120, -2534 + ], + [0, -6650, -3099, -2006, -3159, -3095, -3098, -3160, -3161, -3100], + [1, 3, 2114], + [0, 2115, 2116, 2117, 4], + [0, -6651], + [0, -6652, -3037, -1942, -2358, -2410, -4701], + [0, -1076, -2490, -6653, -6654, -6655, -6656, -1080], + [1, 3, 2119], + [0, 0, 2120, 184, 5], + [0, -686, -1344, -2910, -2250, -2322], + [1, 3, 2122], + [0, 2123, 0, 2124, 5], + [ + 0, -81, -66, -3512, -73, -74, -3520, -62, -6660, -3503, -3502, -71, -6661, -79, -83, -68, -72, -80, -82, -85, + -70, -6662, -6663, -6664, -6665, -63, -6666, -3519, -3513, -64, -6667, -76, -54, -6668, -67, -69, -6669, -6670, + -6671, -3521, -6672, -6673, -56, -75, -6674, -55, -6675, -6676, -3515, -6677, -65, -3504, -3511, -6678, -6679, + -52, -3514, -6680, -3526, -77, -6681, -6682 + ], + [0, -3488, -681, -3489, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161], + [1, 3, 2126], + [0, 0, 2127, 2128, 5], + [0, -2384, -2127, -2354, -1339, -1605, -4062, -350, -351], + [0, -2006, -775, -3205, -6683, -682, -2444, -3590], + [1, 3, 2130], + [0, 185, 2131, 2132, 5], + [0, -633, -932, -934, -1336, -1722, -2188, -2471], + [0, -775, -6684], + [1, 3, 2134], + [0, 2135, 2136, 2137, 10], + [0, -824], + [ + 0, -21, -23, -40, -42, -6685, -3136, -3037, -6686, -533, -708, -767, -825, -932, -999, -1344, -1415, -1534, + -1535, -1763, -1942, -2061, -2177, -6687, -2410, -2501 + ], + [0, -2501, -3862, -6688, -3966], + [1, 3, 2139], + [0, 0, 0, 2140, 5], + [0, -5514, -685, -3974], + [1, 3, 2142], + [0, 186, 14, 2143, 8], + [0, -685, -3551, -4792, -6024, -3324, -6690, -6691, -6692, -3346, -6693, -6694, -6695, -1072], + [1, 3, 2145], + [0, 2146, 0, 2147, 5], + [0, -1107, -1000], + [0, -687, -4376, -6696, -6697, -6698, -4377, -4000, -6699, -6700, -6701, -3957, -6702], + [1, 3, 2149], + [0, 0, 2150, 2151, 8], + [0, -519, -2410, -2541], + [0, -687, -6335, -6336, -3974, -4110, -4000, -4111, -4112, -6337, -5554, -4055], + [1, 3, 2153], + [0, 2154, 2155, 2156, 4], + [0, -6703, -922, -6704, -5969, -6705], + [0, -932, -6706, -6707, -6708, -1344, -1534, -1788, -6709, -6710], + [0, -5514, -712, -4000, -3974, -687, -5550, -1573, -5545, -2547], + [1, 3, 2158], + [0, 2159, 2160, 2161, 11], + [0, -2120], + [0, -3037, -519, -2410, -2541], + [0, -687, -5564, -5514, -6711, -6712, -6713, -6714, -4110, -3974, -4000, -3975, -5550, -3958], + [1, 3, 2163], + [0, 0, 0, 2164, 9], + [0, -687], + [1, 3, 2166], + [0, 0, 2167, 2168, 4], + [0, -519, -1575, -6715, -2410, -2541], + [0, -687, -6716, -6717, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, -4116, -4117, -4055], + [1, 3, 2170], + [0, 187, 2171, 2172, 10], + [0, -2198, -6718], + [0, -687, -714, -4002], + [1, 3, 2174], + [0, 2175, 2176, 188, 5], + [0, -1548, -2267, -714], + [0, -6719, -664, -693, -756, -6720, -6721, -1168, -1220, -1231, -1266, -2210, -2211], + [1, 3, 2178], + [0, 117, 2179, 188, 10], + [0, -693, -932, -940, -967, -1415, -6725, -6726, -1942], + [1, 3, 2181], + [0, 2182, 14, 2183, 10], + [0, -2219, -2267], + [0, -6727, -6728, -5554, -6729, -4783, -687, -3974, -4110, -5550, -6730, -5514, -2265], + [1, 3, 2185], + [0, 2186, 2187, 76, 4], + [ + 0, -668, -2387, -1401, -1548, -2177, -1442, -6731, -1077, -2269, -303, -482, -4366, -6732, -480, -5676, -2267, + -6733, -6734, -1366, -6735, -2297, -6736, -6737, -6738, -2591 + ], + [ + 0, -664, -523, -1654, -932, -2379, -4361, -2410, -3035, -3037, -3621, -3044, -3199, -3660, -3048, -665, -6739, + -6740, -4369, -938, -6741, -4373, -4269, -939 + ], + [1, 3, 2189], + [0, 2190, 2191, 2192, 5], + [0, -3922], + [ + 0, -351, -3267, -3136, -3044, -3037, -6742, -427, -428, -6743, -6744, -932, -6745, -969, -1100, -1415, -1548, + -2127, -6746, -2375, -2379, -2410 + ], + [0, -687, -2410, -3215, -6747, -6748, -4377, -5829, -3957], + [1, 3, 2194], + [0, 2195, 2196, 2197, 5], + [0, -6749, -6750, -6751], + [ + 0, -23, -40, -534, -664, -767, -932, -934, -940, -958, -967, -1344, -1471, -1474, -1475, -1482, -1489, -1492, + -1534, -1654, -1942, -2210, -2384, -2417, -2501, -2503 + ], + [0, -699, -6351, -6752], + [1, 3, 2199], + [0, 2200, 55, 2201, 4], + [0, -6753, -999, -6754, -1401, -6755, -6756], + [0, -699, -6351, -6757, -6758, -6759, -2059, -6234, -6760, -6761, -6762, -6763], + [1, 3, 2203], + [0, 2204, 2205, 157, 4], + [0, -2267, -2269, -2528], + [0, -3037, -427, -428, -652, -664, -668, -767, -932, -958, -965, -1166, -1654, -2125, -6313, -2410], + [1, 3, 2207], + [0, 0, 83, 7, 6], + [1, 3, 2209], + [0, 0, 2210, 2211, 10], + [0, -985, -2447, -2334], + [0, -3205, -6683, -682], + [1, 3, 2213], + [0, 2214, 0, 2215, 5], + [0, -689], + [0, -6764, -4340, -6297, -6765, -6716, -4700, -6722, -4000, -640], + [1, 3, 2217], + [0, 0, 2218, 2219, 6], + [0, -633, -6766, -1654, -1693], + [0, -510, -5411, -3262, -6767, -6768], + [1, 3, 2221], + [0, 2222, 2223, 2224, 4], + [0, -1494], + [0, -2198, -1654, -705], + [0, -3974, -4000, -1965, -3959, -5110, -6769, -705], + [1, 3, 2226], + [0, 182, 2227, 2228, 5], + [0, -1510, -1607], + [0, -4004, -1001, -5855], + [1, 3, 2230], + [0, 2231, 2232, 2233, 11], + [0, -4378, -6770, -1442, -6771, -6772], + [0, -932, -940, -1344, -1415, -1534, -1658, -1942], + [0, -4005, -6773, -6774, -708], + [1, 3, 2235], + [0, 2236, 2237, 2238, 6], + [0, -6775, -6776, -6777, -6778, -6779, -6780, -6781], + [0, -6782], + [0, -3496, -707], + [1, 3, 2240], + [0, 0, 2241, 189, 10], + [0, -849, -6783, -1304, -1600, -2424], + [1, 3, 2243], + [0, 0, 2244, 189, 4], + [0, -23, -40, -4691, -709, -849, -1304, -6785, -1600, -1978, -2424, -2501], + [1, 3, 2246], + [0, 2247, 2248, 2249, 4], + [0, -3523, -2741], + [0, -1654, -2384, -2541], + [0, -712, -5535, -775], + [1, 3, 2251], + [0, 0, 0, 2252, 5], + [0, -3974, -3770, -712, -5514], + [1, 3, 2254], + [0, 0, 2255, 2256, 5], + [0, -932, -936], + [0, -5514, -3974, -714], + [1, 3, 2258], + [0, 2259, 2260, 2261, 11], + [0, -2269, -6786], + [0, -526, -559, -668, -2320, -2322], + [0, -6787, -5554, -5514, -4000, -3974, -4001, -4002], + [1, 3, 2263], + [0, 0, 2264, 2265, 6], + [0, -1003, -1452, -1654], + [0, -687, -3957, -6788], + [1, 3, 2267], + [0, 2268, 190, 2269, 11], + [0, -6789, -6790, -1551, -6791], + [0, -4378, -1838, -6748, -4377, -5829, -6792, -3215, -6747, -687, -3957, -6722], + [1, 3, 2271], + [0, 2272, 2273, 2274, 4], + [0, -6789, -6793, -6794, -6791], + [0, -350, -351, -1448, -2127, -2337], + [0, -3974, -4376, -6795, -3262], + [1, 3, 2276], + [0, 0, 2277, 2278, 4], + [0, -2384, -1415, -932, -1110, -2375, -1942, -190, -2410, -3136, -3037, -2411, -959, -940], + [0, -719, -3957, -5829, -3215, -687, -6748, -4377, -4378], + [1, 3, 2280], + [0, 2281, 2282, 2283, 5], + [0, -1107, -815, -1548, -6796, -6797, -1077, -1376, -1646, -3767, -2270, -831, -6798, -2271, -796], + [ + 0, -1788, -664, -2446, -1654, -2210, -1104, -2177, -708, -1753, -21, -1365, -1972, -23, -43, -2174, -40, -1656, + -539, -6799, -6800, -6801, -36, -741 + ], + [0, -5890, -3240, -3276, -6802, -720], + [1, 3, 2285], + [0, 2286, 2287, 146, 4], + [0, -86, -3534], + [0, -3536, -3537, -3535], + [1, 3, 2289], + [0, 0, 2290, 2291, 6], + [ + 0, -526, -528, -535, -546, -6017, -558, -566, -708, -767, -855, -932, -940, -967, -1415, -1639, -1942, -2125, + -2127, -2128, -2137, -2143, -2517 + ], + [ + 0, -5839, -525, -4795, -6803, -3184, -6804, -6805, -3264, -6806, -6807, -6722, -6808, -6809, -6810, -6811, + -6812, -6813, -6814, -6815, -2265, -6816, -6817, -6818, -6819, -3110 + ], + [1, 3, 2293], + [0, 0, 55, 2294, 6], + [0, -5389, -6820, -997, -6821, -6822, -5078, -6823], + [1, 3, 2296], + [0, 2297, 191, 2298, 5], + [0, -651, -6824, -812, -5397, -6825, -2155, -2453], + [0, -724, -6826, -6827, -5401, -1004, -6828, -1334, -5827], + [1, 3, 2300], + [0, 2301, 31, 7, 4], + [0, -6829, -1370, -2062, -5972], + [1, 3, 2303], + [0, 2304, 2305, 2306, 4], + [0, -2153, -668, -2550, -2369, -2194, -2297], + [ + 0, -1344, -932, -2469, -928, -1110, -1942, -190, -2410, -3037, -1534, -3610, -3041, -6830, -6831, -2411, -6832, + -3664, -2156, -4373, -6593, -6833, -940, -967, -6834, -6835, -4814 + ], + [0, -6836, -5920, -5921, -726, -3957, -6837], + [1, 3, 2308], + [0, 2309, 2310, 2311, 4], + [0, -1460], + [0, -3037, -652, -711, -6838, -6839, -6840, -3589, -2105, -2177, -2362, -2379, -2410, -2424, -6841, -2548], + [0, -6842, -727, -3870, -6843, -6844, -6845, -5558], + [1, 3, 2313], + [0, 2314, 55, 2315, 4], + [0, -6846, -3780, -1119, -6847, -6848], + [0, -727, -4634, -6005, -3870, -6849, -6850, -4055, -6582, -6851, -6852, -6853], + [1, 3, 2317], + [0, 2318, 2319, 2320, 4], + [0, -812, -1045, -1840, -2445], + [0, -932, -1654, -1788, -2293], + [0, -3161, -3578, -5401, -729, -6854], + [1, 3, 2322], + [0, 0, 84, 2323, 11], + [0, -729, -1004, -6855, -3556], + [1, 3, 2325], + [0, 0, 2326, 7, 4], + [0, -932, -1415, -2210], + [1, 3, 2328], + [0, 2329, 2330, 2331, 4], + [0, -812, -6856], + [ + 0, -5028, -86, -3307, -3244, -190, -3198, -3617, -3733, -3037, -4203, -427, -428, -519, -652, -708, -932, -940, + -954, -967, -1004, -1010, -1103, -1344, -1534, -1671, -1771, -1806, -1942, -2251, -2293, -2892, -2402, -2410 + ], + [0, -729, -6857, -1671, -6858, -1004], + [1, 3, 2333], + [0, 0, 2334, 2335, 5], + [0, -2581, -3733, -3037, -3664, -1010, -2379, -2410, -2466, -6859, -2469], + [0, -729, -2071, -6858, -1004], + [1, 3, 2337], + [0, 0, 2338, 2339, 8], + [0, -6447, -3037, -3664, -672, -6860, -932, -944, -6861, -1942, -6862, -6570, -2267, -2410, -2423, -2469], + [0, -4000, -3444, -6863, -6864, -687, -6198, -2427, -1965, -6865, -3276, -6324, -6866], + [1, 3, 2341], + [0, 0, 2342, 2343, 5], + [ + 0, -2541, -519, -864, -6867, -6868, -888, -6869, -1974, -6870, -6871, -6872, -6873, -6874, -6875, -2310, -6876, + -6877, -1344, -6878, -2006, -6879, -932, -6880, -6881, -6882, -1548, -6883, -2177, -6884, -6885, -6886, -1053, + -6887, -6888, -1310, -1689, -1783, -6889, -2019, -1276, -2094, -6890, -2424, -6891, -23, -6892, -1534, -6893, + -6894, -710, -6895, -6896, -6897, -6898, -41, -2099, -946 + ], + [0, -6899, -3110, -6107], + [1, 3, 2345], + [0, 0, 2346, 2347, 6], + [0, -652, -932, -943, -958, -963, -966, -968, -974], + [0, -736, -1334, -6900, -4616], + [1, 3, 2349], + [0, 0, 2350, 2351, 5], + [0, -1788, -1654, -932, -821, -966, -958, -968, -943, -974], + [0, -737, -1334, -4610, -4616, -6901], + [1, 3, 2353], + [0, 2354, 0, 2355, 4], + [0, -6902, -6903, -1630, -6904, -6905, -5983, -6906, -6907], + [0, -739, -6908, -5887, -1573, -687], + [1, 3, 2357], + [0, 2358, 0, 2359, 9], + [0, -1630, -6909, -6910, -739], + [0, -687, -5732, -739, -6908, -5887, -1573], + [1, 3, 2361], + [0, 2362, 0, 2363, 11], + [0, -6911], + [0, -739, -6912, -6913], + [1, 3, 2365], + [0, 0, 2366, 2367, 4], + [0, -6914, -2319], + [0, -5845, -6915, -6916, -6917, -4865, -812], + [1, 3, 2369], + [0, 0, 2370, 2371, 5], + [0, -6918, -3664, -6919, -2410, -2469], + [0, -743, -6920], + [1, 3, 2373], + [0, 2374, 81, 2375, 4], + [0, -743, -746], + [0, -743, -5401], + [1, 3, 2377], + [0, 2378, 2379, 2380, 10], + [0, -6920, -812, -6825, -2155], + [0, -729, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293], + [0, -729, -1004, -5401, -6858], + [1, 3, 2382], + [0, 0, 0, 2383, 4], + [0, -743, -6921, -6922], + [1, 3, 2385], + [0, 2386, 2387, 2388, 4], + [0, -6923], + [0, -633, -1646, -1719, -6924, -1813, -6925, -2416], + [0, -699, -6351, -4865], + [1, 3, 2390], + [0, 2391, 2392, 2393, 4], + [0, -2654, -1108, -2168, -1759, -2182], + [ + 0, -824, -1415, -1344, -1623, -774, -932, -825, -1110, -6926, -2501, -1942, -767, -21, -190, -533, -2410, -23, + -3037, -1041, -1534, -1771, -86, -965, -3560, -2251, -40, -2411, -6927, -959, -960, -32, -958, -6928, -6929, + -978, -940, -967, -3748, -6930, -3307 + ], + [0, -2501, -3862, -6931, -6932, -6351], + [1, 3, 2395], + [0, 2396, 2397, 7, 4], + [0, -1107, -1645, -1650, -6933, -2347, -2430, -2550], + [0, -2125, -2322, -2320], + [1, 3, 2399], + [0, 0, 27, 2400, 4], + [0, -6934, -6935, -3262, -6936, -6937, -6938], + [1, 3, 2402], + [0, 2403, 2404, 2405, 4], + [0, -1559, -750, -6939], + [0, -3040, -3052, -2410, -2006, -2019], + [0, -2006, -2410, -6935, -6940, -6941], + [1, 3, 2407], + [0, 2408, 2409, 2410, 4], + [0, -728, -6942, -6943, -6944, -3496, -999, -1758, -2177, -2313], + [0, -6945, -652, -1412, -2123], + [0, -752, -3323, -687], + [1, 3, 2412], + [0, 0, 0, 2413, 5], + [ + 0, -6946, -6947, -6948, -6949, -6950, -6951, -6952, -6953, -6954, -6955, -6956, -6957, -6958, -6959, -6960, + -6961, -6962, -6963, -6964, -6965, -6966, -6967, -6968, -6969, -6970, -6971, -6972, -6973, -6974, -6975, -6976, + -6977, -6978, -6979, -6980, -6981, -6982, -6983, -6984, -6985, -6986, -6987, -6988, -3582, -6989, -5396 + ], + [1, 3, 2415], + [0, 2416, 2417, 2418, 4], + [0, -1792, -2453], + [0, -465, -932, -1004, -1654, -1788, -2293], + [0, -754, -1004, -729, -5401], + [1, 3, 2420], + [0, 2421, 2422, 2423, 6], + [0, -5672, -1362, -1442, -6990], + [ + 0, -3660, -3037, -6991, -427, -428, -3899, -767, -932, -6992, -940, -948, -958, -966, -979, -1344, -1534, -6689, + -1942, -6993, -2410, -2469 + ], + [0, -6994, -3870, -727], + [1, 3, 2425], + [0, 2426, 2427, 2428, 4], + [0, -1442, -6995, -6996, -1646, -2105], + [0, -1654, -1788, -2198, -2200, -2210, -2541], + [0, -4005, -756], + [1, 3, 2430], + [0, 2431, 2432, 2433, 4], + [0, -6997, -1111, -1630], + [0, -519, -999, -1849, -6909, -2541], + [ + 0, -5732, -687, -6351, -6998, -6997, -6656, -6999, -702, -1076, -5827, -1107, -7000, -1705, -5922, -7001, -6582, + -5398, -7002 + ], + [1, 3, 2435], + [0, 2436, 2437, 2438, 4], + [0, -1116, -7003, -674, -7004, -7005, -1351, -7006], + [0, -652, -519, -2392, -1722, -2210, -932, -1110, -190, -7007, -2410, -3037, -2364, -2411], + [0, -3214, -758, -7008, -6596, -6531, -1437, -3967, -1334, -1342, -5735, -1116, -2105, -2435, -5150, -6826], + [1, 3, 2440], + [0, 0, 0, 2441, 11], + [0, -759, -7009, -7010, -7011, -7012, -7013, -7014, -7015, -7016, -7017, -7018, -7019, -7020], + [1, 3, 2443], + [0, 2444, 2445, 2446, 5], + [0, -7021, -1370, -6001, -7022, -7023], + [0, -5935, -2155, -2250, -2320, -2322], + [0, -770], + [1, 3, 2448], + [0, 2449, 2450, 41, 5], + [0, -1580, -1792], + [0, -1415, -1967, -2006, -2019, -2501], + [1, 3, 2452], + [0, 2453, 2454, 2455, 10], + [ + 0, -28, -7024, -683, -722, -7025, -7026, -812, -1047, -1099, -1111, -1116, -7027, -1366, -7028, -1393, -1435, + -1548, -1549, -1591, -1630, -7029, -5668, -7030, -1863, -1876, -1889, -7031, -7032, -7033, -2103, -2218, -2331, + -2347, -2460 + ], + [0, -510, -767, -1045, -1098, -1415, -1722, -7034, -2187, -7035, -2261, -2463, -2541], + [0, -762, -1847, -775, -7036], + [1, 3, 2457], + [0, 2458, 2459, 2460, 8], + [0, -3620, -3222], + [ + 0, -86, -190, -7037, -7038, -7039, -3470, -7040, -3471, -3472, -7041, -7042, -367, -7043, -3136, -3037, -4372, + -767, -932, -940, -959, -967, -1344, -1415, -1534, -1942, -2174, -2210, -2410, -2411 + ], + [0, -763, -7044, -7045, -7046, -2166, -7047, -7048], + [1, 3, 2462], + [0, 0, 0, 2463, 4], + [0, -763, -3577, -3445, -3215, -764, -7046, -2166, -7049, -4107, -5418, -6201, -7050], + [1, 3, 2465], + [0, 0, 2466, 2467, 4], + [ + 0, -5285, -5291, -7051, -7052, -7053, -7054, -7055, -7056, -7057, -3037, -932, -7058, -954, -958, -960, -964, + -965, -7059, -968, -971, -978, -1110, -7060, -1608, -7061, -1768, -1942, -2910, -7062, -2402, -2410, -7063 + ], + [0, -763, -7050, -2166, -765, -3577, -3445], + [1, 3, 2469], + [0, 2470, 0, 2471, 4], + [0, -7064, -7065], + [ + 0, -6527, -7066, -6932, -7067, -7068, -7069, -7070, -7071, -7072, -7073, -7074, -7075, -7076, -7077, -3264, + -775, -3214, -3577, -3578 + ], + [1, 3, 2473], + [0, 2474, 2475, 2476, 5], + [0, -7078, -769], + [0, -7079, -7080, -3037, -3664, -3665, -932, -1942, -2410, -2469, -7081], + [0, -7082, -7083, -7084, -7085], + [1, 3, 2478], + [0, 2479, 2480, 2481, 5], + [0, -1729], + [ + 0, -1788, -664, -1722, -1344, -1654, -2550, -2125, -2127, -2177, -708, -1004, -2501, -2250, -720, -2410, -3035, + -3037, -617, -1534, -2186, -2503, -3621, -2516, -86, -2251, -4063, -1655, -6483, -796, -7086, -3307 + ], + [0, -4213, -1334, -2435, -1961, -510, -5867, -6201, -6198, -3966, -2006, -5269, -4865, -6989, -5388, -2533, -5998], + [1, 3, 2483], + [0, 2484, 2485, 2486, 6], + [0, -2518, -7087, -7088], + [0, -1415, -1344, -932, -1650, -2125, -527, -533, -1534, -86, -2251, -7089, -7090, -3307], + [0, -7091, -7092, -7084, -7085, -7093, -7094, -7095, -7096], + [1, 3, 2488], + [0, 2489, 2490, 7, 5], + [0, -7097, -7098, -7099, -760, -7100, -7101, -7102, -1370, -7103, -7104, -1995, -7105], + [0, -5834, -932, -5935, -1788, -1798, -7106, -2155, -2177, -2322], + [1, 3, 2492], + [0, 0, 0, 2493, 5], + [ + 0, -7107, -770, -7108, -7109, -7110, -7111, -7112, -7113, -7114, -7115, -7116, -7117, -7118, -7119, -7120, + -7121, -7122, -7123, -7124, -7125 + ], + [1, 3, 2495], + [0, 192, 2496, 2497, 4], + [0, -652, -932, -7126, -958, -964, -966, -967, -1654, -7127, -1771, -1942], + [0, -6838, -3215], + [1, 3, 2499], + [0, 2500, 2501, 2502, 4], + [ + 0, -7128, -7129, -7130, -7131, -7132, -7133, -7134, -481, -668, -6793, -719, -7135, -7136, -7137, -7138, -7139, + -7140, -7141, -7142, -2177, -2654 + ], + [0, -4036, -3199, -1639, -1645], + [0, -7143, -7144, -707, -6513, -6514, -7145, -7146, -7147, -7148], + [1, 3, 2504], + [0, 2505, 2506, 2507, 4], + [0, -1370, -2231, -7149], + [0, -1654, -2198, -1612, -651], + [0, -775, -3215, -3270, -3271], + [1, 3, 2509], + [0, 0, 2510, 2511, 9], + [0, -190, -7150, -7151, -932, -1889, -2127, -2447], + [0, -1889, -3583, -775, -4159, -7152, -7153, -7154], + [1, 3, 2513], + [0, 0, 2514, 2515, 5], + [ + 0, -7155, -4647, -3621, -3037, -4201, -7156, -932, -7157, -940, -967, -7158, -1344, -7159, -1449, -1534, -1654, + -1763, -1942, -2923, -7160, -2410, -7161, -7162 + ], + [0, -775, -7163, -4108], + [1, 3, 2517], + [0, 2518, 2519, 2520, 4], + [0, -2773, -1889, -7164, -1915, -7165, -2791, -1934, -2177], + [ + 0, -21, -23, -40, -86, -3307, -7166, -533, -767, -774, -825, -920, -932, -940, -958, -1041, -1344, -1415, -1419, + -1521, -1522, -1534, -1623, -1643, -1771, -1908, -1927, -1942, -2162, -2163, -2251, -2269, -2275, -2286, -2287, + -2437, -2501 + ], + [0, -2501, -775, -5932, -2435, -6024], + [1, 3, 2522], + [0, 2523, 2524, 2525, 5], + [0, -784, -1889, -1429, -2168, -2182, -3180], + [ + 0, -824, -2746, -1415, -2162, -1344, -1623, -774, -932, -825, -928, -1110, -2289, -2501, -7167, -1942, -683, + -767, -21, -190, -533, -778, -2410, -23, -7168, -7169, -3037, -1534, -1771, -2163, -3751, -86, -965, -3560, + -7170, -2251, -40, -959, -748, -960, -958, -7171, -6929, -978, -940, -967, -1643, -3748, -6930, -3307 + ], + [0, -784, -775, -2746, -683, -5055, -928, -2501, -7172, -7173, -7174, -1644, -6684, -7175, -7176], + [1, 3, 2527], + [0, 2528, 2529, 2530, 4], + [0, -7177, -2888, -6584, -2788, -6585], + [0, -2386, -2469, -2410, -3037, -1333, -2581, -7178, -7179, -3664], + [0, -775, -3585, -7180], + [1, 3, 2532], + [0, 2533, 2534, 2535, 4], + [0, -1620, -2232], + [0, -652, -7181, -928, -932, -7182, -1654, -2127], + [0, -775, -3272, -3579, -3215, -7183, -7184, -3262, -5260, -4132, -3926], + [1, 3, 2537], + [0, 0, 2538, 2539, 4], + [0, -7150, -635, -1107, -1889, -1891, -1927, -2177, -2281, -2282, -7185], + [0, -775, -7186, -4682, -7187], + [1, 3, 2541], + [0, 0, 2542, 2543, 4], + [0, -526, -558, -708, -1127, -6114, -1405, -1654, -2081, -2111], + [0, -775, -5559, -7188, -2265, -3673], + [1, 3, 2545], + [0, 2546, 2547, 2548, 4], + [0, -1532, -7189], + [0, -518, -1889, -7190, -7191], + [0, -775, -6454, -1644, -7192, -7193, -1889, -3583], + [1, 3, 2550], + [0, 2551, 2552, 2553, 11], + [0, -7194, -7195, -781, -1582], + [0, -7196, -7197, -932, -940, -967, -1110, -1942], + [0, -7198, -7199, -7200], + [1, 3, 2555], + [0, 0, 2556, 2557, 4], + [ + 0, -23, -40, -42, -190, -7150, -7201, -7202, -5685, -3136, -4647, -3037, -6630, -7203, -533, -668, -679, -781, + -940, -967, -1059, -1415, -1449, -1620, -1942, -2091, -2392, -2393, -2410, -2411 + ], + [0, -775, -5553, -2410, -5411, -2414, -3694, -3762], + [1, 3, 2559], + [0, 2560, 2561, 2562, 5], + [0, -7204, -743, -1335, -746], + [0, -1788, -1654, -932, -729, -2293, -617, -744, -745, -966, -958, -968, -943, -963, -974], + [0, -7204, -7205, -5401, -1004], + [1, 3, 2564], + [0, 2565, 2566, 2567, 4], + [0, -789, -790, -791, -2262], + [0, -351, -3621, -3037, -885, -1654, -1942, -2127, -2135, -2136, -2198, -2379, -2410], + [0, -3966, -788, -7206, -3215, -1838, -3270, -6231, -6408, -5827, -3960, -7207, -3445, -3100], + [1, 3, 2569], + [0, 0, 2570, 2571, 5], + [0, -351, -3621, -3037, -815, -885, -1654, -1942, -2127, -2135, -2136, -2198, -2379, -2410], + [0, -5827, -3960, -788, -7208, -3445, -3100], + [1, 3, 2573], + [0, 0, 2574, 2575, 5], + [ + 0, -351, -3621, -3037, -789, -7209, -815, -885, -1654, -7210, -1942, -2127, -2135, -2136, -2198, -2262, -2379, + -2410 + ], + [0, -788, -1838, -3215, -5845, -7206, -5827, -3445, -3100], + [1, 3, 2577], + [0, 0, 2578, 2579, 9], + [0, -351, -3621, -3037, -789, -815, -885, -1004, -1654, -1942, -2127, -2135, -2136, -2198, -2379, -2410], + [0, -788, -6231, -3270, -3445, -3100], + [1, 3, 2581], + [0, 34, 2582, 2583, 4], + [0, -7211, -3621, -3037, -543, -756, -1646, -1654, -1788, -2210, -2375, -2379, -2410, -2417, -2501, -2503], + [0, -788, -7212, -7213, -792, -4055, -7214, -7215, -7216, -7217, -7218], + [1, 3, 2585], + [0, 2586, 2587, 149, 8], + [ + 0, -1693, -1107, -714, -1548, -2456, -1040, -3635, -2114, -615, -7219, -1959, -719, -1399, -695, -5203, -3611, + -7220, -3610, -7221, -1366, -7222, -7223, -7224, -930, -3608, -7225, -3604 + ], + [ + 0, -1788, -2359, -664, -1654, -2210, -932, -729, -753, -571, -1077, -1689, -1942, -7226, -756, -21, -633, -2211, + -23, -528, -711, -2187, -43, -3630, -3633, -40, -966, -951, -2082, -958, -539, -968, -940, -943, -967, -974, + -6034 + ], + [1, 3, 2589], + [0, 0, 2590, 2591, 4], + [0, -556, -558, -566, -633, -932, -7227, -1339, -1650, -7228, -2322, -2339, -2416, -7229, -2491], + [0, -7230, -7231, -7232, -7233, -2446], + [1, 3, 2593], + [0, 2594, 0, 2595, 4], + [ + 0, -2359, -5413, -668, -809, -812, -999, -7234, -2555, -640, -1536, -1548, -7235, -680, -1040, -1958, -615, + -6797, -910, -1077, -1646, -7236, -719, -2369, -2430, -3628, -690, -695, -7237, -722, -1018, -1574, -1948, + -7238, -7239, -995, -5987, -2297, -7240, -7241, -2313, -1394, -3626 + ], + [0, -4864, -4865, -795, -7242, -4866, -4867, -4868, -3095, -7243, -4043, -7244, -7245, -4004, -3634], + [1, 3, 2597], + [0, 2598, 2599, 7, 5], + [0, -668, -7246, -2524, -720, -1564, -3532, -7247], + [0, -664, -1654, -2177, -1942, -3035, -755, -3621, -1660, -2174], + [1, 3, 2601], + [0, 2602, 2603, 2604, 5], + [ + 0, -7248, -7249, -7250, -7251, -7252, -7253, -7254, -7255, -798, -7256, -7257, -6258, -7258, -7259, -799, -801, + -7260, -7261, -7262, -7263, -7264, -7265, -7266, -7267, -7268, -800, -7269, -7270, -7271, -7272 + ], + [0, -1654, -932, -2127, -2468, -7273, -2967, -4062, -7274, -3266, -351], + [0, -797, -5092, -7275, -3839, -5176, -659], + [1, 3, 2606], + [0, 2607, 2608, 2609, 8], + [0, -7276], + [0, -351, -7248, -7262, -932, -1449, -1654, -2127, -2140], + [0, -797, -7277, -7278, -7279, -7280, -7281, -7282, -7283, -5839], + [1, 3, 2611], + [0, 2612, 2613, 2614, 10], + [0, -798, -7261, -7270, -7254, -7271], + [0, -6258, -932, -1654, -2127, -2140], + [0, -797, -7277, -7069, -7275], + [1, 3, 2616], + [0, 0, 2617, 2618, 5], + [0, -932, -1449, -1654, -2127, -2140], + [0, -797, -7277, -5092, -7284, -7285], + [1, 3, 2620], + [0, 2621, 2622, 2623, 6], + [0, -7253], + [0, -7264, -932, -1654, -2127, -2140], + [0, -797, -7277, -6524, -7275, -659, -3839], + [1, 3, 2625], + [0, 2626, 0, 2627, 5], + [0, -1049], + [0, -3577, -7286, -5176, -3913], + [1, 3, 2629], + [0, 0, 0, 2630, 4], + [ + 0, -803, -2316, -2318, -7287, -7288, -7289, -7290, -7291, -7292, -7293, -7294, -7295, -7296, -7297, -7298, + -2006, -775, -3160, -2476, -3095, -3161, -1713, -3577, -7299, -4101, -7300, -2299, -2834, -5511, -7301 + ], + [1, 3, 2632], + [0, 0, 14, 2633, 9], + [ + 0, -7302, -1646, -6792, -7303, -4377, -5272, -687, -1758, -719, -7304, -3957, -5543, -7305, -7306, -7307, -7308, + -1838, -3215, -4378 + ], + [1, 3, 2635], + [0, 2636, 2637, 7, 4], + [ + 0, -7309, -469, -510, -668, -715, -754, -763, -1004, -1376, -7310, -1625, -1666, -1953, -2105, -7311, -7312, + -7313, -2549, -2550 + ], + [0, -526, -556, -559, -664, -1654, -2106, -5331], + [1, 3, 2639], + [0, 0, 2640, 7, 10], + [ + 0, -7314, -2392, -7315, -3915, -2210, -932, -7316, -1548, -2469, -2402, -1050, -1942, -756, -21, -7057, -1874, + -2205, -2214, -2410, -23, -3037, -7317, -7318, -4372, -7319, -3704, -3044, -7320, -5286, -4773, -40, -7321, + -3664, -2832, -42, -428, -7322, -427, -7323 + ], + [1, 3, 2642], + [0, 0, 2643, 7, 5], + [0, -1654, -2416, -21, -23, -40], + [1, 3, 2645], + [0, 0, 2646, 2647, 5], + [ + 0, -21, -23, -5870, -40, -3472, -527, -533, -537, -767, -932, -934, -958, -959, -7324, -1413, -1415, -1471, + -1481, -1488, -1662, -1666, -1667, -1705, -1939, -1942, -2127, -2128, -2140, -2214, -2410 + ], + [0, -809, -4121, -4123, -1361, -1666], + [1, 3, 2649], + [0, 2650, 2651, 2652, 4], + [0, -596, -1723], + [0, -7325], + [0, -510, -6367, -7326, -7327], + [1, 3, 2654], + [0, 0, 118, 2655, 5], + [0, -811, -7328, -5924, -7329, -7330, -6729, -7331, -7332, -7333, -7334, -7335], + [1, 3, 2657], + [0, 2658, 2659, 2660, 4], + [0, -1681], + [0, -627, -633, -756, -1471, -1472, -1475, -1482, -1654, -1657, -2210, -2541], + [0, -812, -1573, -7336], + [1, 3, 2662], + [0, 0, 14, 2663, 4], + [0, -813, -7337, -656, -7338, -6514, -6515, -6516, -2265, -5554, -5845], + [1, 3, 2665], + [0, 2666, 2667, 2668, 10], + [0, -7339, -7340, -7341, -7342, -1119, -1591, -1866, -7343], + [0, -985, -7344, -1849, -1866, -2125], + [0, -7345, -7346, -814, -7347, -2323, -7348, -7349, -5408, -2432], + [1, 3, 2670], + [0, 0, 2671, 2672, 8], + [ + 0, -21, -40, -42, -4646, -7350, -7057, -3330, -3136, -427, -428, -535, -6046, -7351, -774, -932, -7352, -954, + -959, -960, -961, -963, -965, -7353, -7354, -971, -7355, -1344, -1415, -7356, -1498, -1534, -1608, -1609, -1768, + -7357, -1942, -7358, -1945, -2091, -7359, -2391, -2410, -7360 + ], + [0, -815, -6818, -7361, -3184], + [1, 3, 2674], + [0, 0, 2675, 2676, 5], + [0, -3136, -1637, -2375], + [0, -7362, -7363, -5839, -7364, -7365, -7366, -7367], + [1, 3, 2678], + [0, 2679, 0, 2680, 8], + [0, -7368], + [0, -7208, -7369, -7370, -1015, -3589, -1631, -702, -6351, -3755, -6545, -7371, -7372, -7373, -7374, -7375, -3589], + [0, 68, 15, 16, 4], + [1, 3, 2683], + [0, 0, 2684, 2685, 5], + [0, -4055, -1654, -932, -1548, -2125, -1753, -615, -7376, -1003, -2416, -821, -964, -1656], + [0, -834, -7377, -7378, -7379], + [1, 3, 2687], + [0, 0, 2688, 2689, 5], + [0, -7380, -1654, -932, -1405, -589, -756, -7381, -1559, -3311, -7382, -7383, -7384, -350, -7385], + [0, -7386, -7387, -7388, -3634], + [1, 3, 2691], + [0, 2692, 2693, 2694, 10], + [ + 0, -7389, -655, -7390, -6503, -7391, -7392, -7393, -7394, -7395, -1402, -5849, -1795, -1797, -7396, -7397, + -7398, -7399, -7400 + ], + [0, -5834, -515, -516, -7401, -932, -1065, -7402, -1283, -7403, -1365, -1777, -1788, -3335, -2156, -2177, -2322], + [0, -7404, -6439, -7378], + [1, 3, 2696], + [0, 0, 70, 2697, 4], + [0, -822, -1015, -6545, -7371, -2546, -702, -1631, -4055], + [1, 3, 2699], + [0, 0, 2700, 2701, 9], + [0, -3037, -7405, -1396, -7406, -2127, -2131, -2137, -2322, -2379, -2410, -2416], + [0, -1631, -6545, -1015, -6351, -702, -7371], + [1, 3, 2703], + [0, 2704, 2705, 2706, 5], + [0, -1111, -1393, -7407, -7408, -1826, -7409, -2218], + [0, -519, -589, -2331, -2384, -2541], + [ + 0, -6693, -6999, -7410, -7411, -6694, -7412, -7413, -7414, -6688, -7415, -7416, -6695, -7417, -2125, -7418, + -1107, -7419, -6656, -7420, -7421, -1076, -7422 + ], + [1, 3, 2708], + [0, 2709, 2710, 2711, 10], + [0, -824, -1630, -7409], + [0, -519, -999, -7423, -2541], + [ + 0, -5732, -687, -6693, -824, -6694, -7412, -7413, -7414, -6688, -7415, -7416, -6695, -7417, -2125, -7418, -1107, + -6656, -6999, -7420, -7421, -1076, -7422, -7085 + ], + [1, 3, 2713], + [0, 2714, 2715, 2716, 6], + [0, -7424, -7425], + [0, -7426, -7427, -2384, -2541], + [ + 0, -1961, -2114, -826, -7428, -4116, -7429, -7430, -7431, -5389, -6302, -2634, -7432, -826, -510, -5867, -5923, + -615, -7433, -7434, -6555 + ], + [1, 3, 2718], + [0, 2719, 2720, 2721, 10], + [ + 0, -812, -1460, -2550, -1353, -1548, -2177, -1442, -2114, -7435, -6651, -656, -1645, -7436, -1686, -755, -1048, + -2115, -25, -7437, -46, -7438, -3230, -6033 + ], + [ + 0, -1788, -1654, -932, -2198, -2299, -1077, -1942, -767, -21, -1972, -2410, -23, -528, -7439, -39, -43, -40, + -964, -969, -933, -958, -539, -940, -962, -967, -535, -5585 + ], + [0, -7440, -7441, -5897, -7442, -827, -6137, -3015, -3016], + [1, 3, 2723], + [0, 0, 2724, 2725, 6], + [0, -589, -585, -932, -943, -958, -963, -966, -968, -974, -1405, -1654, -2155, -2418], + [0, -7443, -7444], + [1, 3, 2727], + [0, 2728, 2729, 7, 4], + [0, -812, -5892, -1111, -7445, -1639, -1646, -1872, -7446, -2114], + [0, -7447, -1344, -3781, -1771, -2250], + [1, 3, 2731], + [0, 0, 14, 2732, 10], + [0, -6806, -7448, -6659, -7449, -7450, -707, -2265, -5554, -6916, -7451, -7452], + [1, 3, 2734], + [0, 2735, 2736, 2737, 5], + [0, -6558], + [0, -7453, -3621, -3037, -7454, -932, -7455, -999, -7456, -2269, -2386, -7457, -2410], + [0, -6659, -7458], + [1, 3, 2739], + [0, 0, 2740, 2741, 6], + [ + 0, -1788, -2384, -664, -1471, -1654, -932, -2127, -1110, -2501, -767, -2416, -190, -2410, -23, -1482, -534, + -1492, -5758, -43, -40, -2411, -2505, -1483, -2832, -539, -1490 + ], + [0, -834, -7459, -7378, -7460, -5554, -4055, -775, -3214], + [1, 3, 2743], + [0, 2744, 2745, 2746, 8], + [0, -834, -7461], + [ + 0, -190, -7462, -7463, -3136, -3037, -7464, -7465, -518, -645, -699, -748, -778, -784, -932, -959, -968, -1041, + -1110, -1276, -7466, -1331, -1344, -7467, -7468, -1415, -1534, -1607, -1643, -1650, -1758, -1889, -1891, -1906, + -1908, -1927, -1942, -2375, -2376, -2379, -2410, -2411, -2437, -2501, -2503, -2505, -2516 + ], + [0, -5889, -834, -3240, -7469, -6722, -7470, -7471, -7472, -4131, -3240, -712, -3264, -835, -7473, -7474], + [1, 3, 2748], + [0, 119, 120, 2749, 4], + [ + 0, -7477, -7478, -7479, -7480, -7481, -7482, -7483, -3214, -7484, -7485, -3756, -2410, -7486, -4165, -3018, + -7487, -7488, -3966, -4336, -7489, -7490, -7491, -7492, -7493, -7494, -7495, -7496, -7497, -3552, -7498, -7499, + -7500, -1847, -7501, -7502, -7503, -7504, -7505, -7506, -7507, -7508, -7282, -7509, -7510, -7511, -7512, -7513, + -7514, -7515, -7516, -7517, -7518, -7519, -7520, -7521, -5150, -7522, -7523, -7524, -7525, -7526, -7527, -7528, + -7529, -7530, -7531, -7532, -7533, -6582, -7534, -7535, -7536, -7537, -7538, -7539, -7540, -7541, -7542, -7543, + -7544, -7545, -7546, -7547, -7548, -6948, -7549, -7550, -7551, -7552, -7553, -7554, -7555, -7556, -7557, -2444, + -7558, -7559, -5063, -7560, -7561, -7562, -6187, -7563, -856, -7275 + ], + [1, 3, 2751], + [0, 0, 2752, 2753, 6], + [0, -664, -665, -1127, -1144, -1149, -1156, -1452, -1453, -1542, -1654], + [0, -664, -6537, -4865, -3634], + [1, 3, 2755], + [0, 2756, 56, 57, 4], + [0, -7564, -7565, -840, -1406, -1744], + [1, 3, 2758], + [0, 2759, 2760, 2761, 6], + [0, -2387, -2426, -7567, -3675, -151, -3676, -1025, -7568, -3677, -7569, -3678, -3679, -7570], + [ + 0, -2384, -1415, -3682, -932, -2388, -879, -1942, -767, -2410, -3037, -7571, -3683, -3685, -3686, -3687, -428, + -427 + ], + [0, -3689, -3690, -7572, -3323, -3966, -3692], + [1, 3, 2763], + [0, 2764, 0, 7, 4], + [0, -2416, -1044, -1813], + [1, 3, 2766], + [0, 2767, 2768, 193, 8], + [0, -6789, -7573, -7574, -7575, -1276, -1610, -7576], + [0, -7577], + [1, 3, 2770], + [0, 2771, 0, 2772, 6], + [0, -1448], + [0, -843, -856, -1446, -7578, -1599, -3862], + [1, 3, 2774], + [0, 0, 0, 2775, 9], + [0, -7579, -7580, -7581, -7582, -3445, -6809], + [1, 3, 2777], + [0, 2778, 31, 2779, 10], + [0, -7583, -7584, -7585], + [0, -7586, -7587], + [1, 3, 2781], + [0, 2782, 2783, 2784, 8], + [0, -523, -2550, -848, -7588, -7589, -7590], + [0, -664, -1654, -1004, -617], + [0, -856, -5119, -4004, -4100, -3671], + [1, 3, 2786], + [0, 2787, 2788, 2789, 10], + [ + 0, -3417, -7590, -7591, -469, -5769, -7592, -7593, -7594, -523, -7588, -7589, -865, -7595, -7596, -7597, -1870, + -1880, -7598, -2369, -4881 + ], + [0, -827, -1004, -1654, -2177], + [0, -856, -4004, -4100, -3671], + [1, 3, 2791], + [0, 2792, 0, 2793, 9], + [0, -719, -1610, -1077, -2424, -1304], + [0, -856, -3671, -3262, -7599, -711], + [1, 3, 2795], + [0, 2796, 0, 193, 4], + [0, -885, -7600, -7601], + [1, 3, 2798], + [0, 2799, 2800, 2801, 10], + [0, -7602, -7603, -7604, -7605, -1969, -2324, -2446], + [0, -615, -664, -1627, -1654], + [0, -7606, -7607], + [1, 3, 2803], + [0, 2804, 2805, 2806, 4], + [ + 0, -7608, -7609, -7610, -573, -7611, -653, -7612, -6838, -7613, -7614, -7615, -5835, -7616, -7617, -7618, -7619, + -7620, -7621, -1376, -7622, -7623, -7624, -1640, -1729, -7625, -7626, -7627, -2125, -7628, -7629, -7630, -2177, + -7631, -7632, -7633, -2424, -7634, -2549 + ], + [0, -7635, -7636, -7637, -711, -7638, -1666, -7639, -7640], + [ + 0, -3260, -7641, -7642, -4258, -687, -7643, -711, -7644, -3116, -7645, -7646, -3113, -7647, -7648, -6433, -3161, + -3262, -7649, -3966, -1838, -3215, -7650, -4065, -3970, -5371, -3261, -7651, -3673, -3590, -3578, -7652, -4602 + ], + [1, 3, 2808], + [0, 0, 2809, 2810, 5], + [0, -3268, -3037, -3664, -6593, -589, -7653, -7654, -932, -958, -960, -2410, -2469], + [0, -3100, -3445, -4058, -3926, -1446], + [1, 3, 2812], + [0, 0, 2813, 2814, 6], + [ + 0, -23, -40, -190, -3326, -350, -4062, -351, -3266, -518, -632, -724, -920, -932, -940, -1110, -1609, -6451, + -1771, -1889, -1897, -1903, -1906, -1942, -2125, -2127, -4753, -2162 + ], + [0, -3671, -2757, -7655, -856, -3262, -3214, -3756, -1599, -3437, -3862, -7452, -7656], + [1, 3, 2816], + [0, 2817, 71, 2818, 8], + [0, -7657, -7658, -1333, -1646, -2424, -7659], + [0, -1105, -1599, -856, -4328, -3215, -7660, -7661, -7662], + [1, 3, 2820], + [0, 2821, 2822, 2823, 8], + [ + 0, -23, -3194, -25, -46, -47, -668, -679, -834, -7663, -4236, -3649, -1107, -2765, -1304, -1371, -1442, -7664, + -1548, -5347, -7665, -7666, -7667, -1866, -2061, -2093, -2095, -2096, -7668, -4656, -2114, -2271, -7669, -2429, + -5358, -7670, -7671, -2550 + ], + [0, -7672, -796, -7673, -932, -940, -1077, -1344, -1415, -1456, -1534, -1658, -1942, -2251, -2359], + [0, -856, -4144, -1446, -7674, -3215, -3258], + [1, 3, 2825], + [0, 2826, 2827, 2828, 5], + [0, -7675, -7676, -812, -7677, -7678, -7679, -7680, -2424], + [0, -3037, -1127, -1152, -1156, -1542, -1656, -6799, -2210, -2351], + [0, -7681, -7682, -857, -7683, -5800, -7684, -7685, -5801], + [1, 3, 2830], + [0, 2831, 2832, 2833, 4], + [ + 0, -3484, -1088, -1107, -668, -2006, -915, -1548, -1650, -572, -784, -1004, -1889, -1955, -2105, -2195, -3728, + -2353, -1077, -1356, -719, -2019, -682, -1888, -2102, -23, -7686, -47, -518, -1304, -1607, -7687, -4356, -7688, + -7689, -3649, -39, -43, -46, -2015, -7690, -40, -7691, -7692, -41, -930, -916, -26, -36 + ], + [0, -2125, -7693, -1075, -7694], + [0, -856, -7695, -7696, -858], + [1, 3, 2835], + [0, 2836, 27, 2837, 5], + [0, -7697, -703, -4700, -1288, -1293, -1310, -3544, -7698, -3788, -1645, -2087, -7699, -2427, -7700], + [0, -858, -3544, -7701, -856], + [1, 3, 2839], + [0, 2840, 2841, 2842, 6], + [0, -44, -786], + [ + 0, -7702, -7703, -21, -23, -42, -7704, -7705, -7706, -427, -428, -528, -534, -932, -958, -962, -964, -969, + -1003, -1107, -1437, -1471, -1475, -1479, -7707, -1482, -1483, -1489, -1490, -1492, -1654, -2125, -7708, -2210, + -2410, -2501 + ], + [0, -860, -3159, -5092, -3690, -7709, -5553, -5389, -7710, -6730, -860, -7711, -7712, -775], + [1, 3, 2844], + [0, 2845, 2846, 2847, 4], + [0, -3223, -6585, -7713], + [0, -1415, -932, -674, -2375, -1942, -2410, -3136, -3037, -1333, -940, -428, -427], + [0, -3264, -6597, -7650], + [1, 3, 2849], + [0, 0, 2850, 2851, 8], + [ + 0, -664, -932, -1127, -1132, -1144, -1148, -1149, -1155, -1442, -1471, -1474, -1475, -1479, -1482, -1483, -1654, + -1942, -2177 + ], + [0, -5092, -6527, -7714, -7650, -3264, -659, -3839, -7715], + [1, 3, 2853], + [0, 2854, 2855, 2856, 6], + [0, -7716], + [ + 0, -23, -40, -3326, -351, -3561, -3266, -426, -3037, -767, -940, -967, -1437, -1449, -1471, -1473, -1475, -1479, + -1485, -1486, -7717, -1646, -1771, -1939, -1942, -1989, -7718, -2125, -2127, -2132, -7719, -2142, -2387, -2410, + -2541 + ], + [0, -5092, -2544, -3264, -3839, -7720, -7107, -7721, -7722, -7723, -7724, -7725], + [1, 3, 2858], + [0, 0, 2859, 2860, 10], + [0, -1788, -932, -756, -1939, -5478], + [0, -3110, -5922, -5493, -7651], + [1, 3, 2862], + [0, 0, 2863, 2864, 4], + [0, -3037, -3542, -2210, -2250, -2251, -2319, -2410], + [0, -865, -6845, -7726, -5558, -3591, -727, -6849], + [1, 3, 2866], + [0, 194, 2867, 2868, 5], + [0, -3037, -2250, -2251, -2319, -2410], + [0, -865, -7727, -3591, -7728, -7729, -6845, -7726], + [1, 3, 2870], + [0, 2871, 2872, 2873, 4], + [0, -1116, -1866, -1825, -7730, -1591, -1043, -814, -7731, -1100, -7732, -736], + [0, -2541, -519, -1722, -7733, -2125, -1849, -7734], + [0, -867, -7347, -1334, -2105, -2435], + [1, 3, 2875], + [0, 2876, 2877, 2878, 9], + [0, -867, -7735, -2125], + [0, -3179, -1344, -1654, -2226, -2250], + [0, -867, -1105, -7661, -7660, -7736, -7737, -2323, -7347, -7738], + [1, 3, 2880], + [0, 2881, 2882, 2883, 4], + [0, -870, -871, -873, -875, -876, -874], + [0, -932, -2125, -190, -2410, -3037, -2411, -428, -427], + [0, -869, -856, -687, -1446, -620, -1599, -4055], + [1, 3, 2885], + [0, 2886, 2887, 2888, 8], + [0, -1111, -871, -7739, -7740, -873, -875, -7741, -876, -874], + [0, -1415, -932, -2125, -1753, -2375, -190, -2410, -3136, -3037, -7742, -2411, -428, -427], + [0, -869, -856, -687], + [1, 3, 2890], + [0, 2891, 2892, 2893, 4], + [0, -6904], + [0, -1415, -932, -2125, -2375, -190, -2410, -3136, -3037, -7742, -2411, -428, -6902, -427], + [0, -869, -856], + [1, 3, 2895], + [0, 2896, 121, 2897, 4], + [0, -7743], + [0, -869, -856, -3110], + [1, 3, 2899], + [0, 2900, 2901, 2902, 4], + [0, -2330, -1446, -7744], + [0, -1415, -932, -2125, -2375, -749, -190, -2410, -3136, -3037, -7745, -7742, -2411, -428, -427], + [0, -869, -856, -1446], + [1, 3, 2904], + [0, 2905, 2906, 2907, 4], + [0, -1600, -1304, -1605], + [0, -1415, -932, -2125, -2375, -190, -2410, -3136, -3037, -7742, -2411, -3661, -428, -427], + [0, -869, -856, -620], + [1, 3, 2909], + [0, 0, 121, 2910, 8], + [0, -869, -856, -4055], + [1, 3, 2912], + [0, 2913, 121, 2914, 5], + [0, -1605], + [0, -869, -856, -1599], + [1, 3, 2916], + [0, 2917, 2918, 2919, 4], + [0, -1033, -1361, -1792], + [ + 0, -23, -6065, -5584, -7746, -528, -7747, -767, -824, -927, -932, -7748, -940, -951, -956, -962, -967, -969, + -7749, -1059, -1168, -1174, -1184, -1188, -7750, -1201, -1208, -1212, -1243, -1266, -1415, -1942, -2006, -2019, + -2052, -7751, -2347, -2417, -7752 + ], + [0, -7753, -3496, -2006, -7754], + [1, 3, 2921], + [0, 2922, 2923, 2924, 5], + [0, -4007, -7755], + [ + 0, -7756, -7757, -664, -795, -7758, -1471, -1475, -1482, -7759, -1491, -1654, -1655, -1745, -7760, -2162, -2210, + -2211 + ], + [0, -7761, -7762, -7763, -7764], + [1, 3, 2926], + [0, 2927, 2928, 7, 5], + [0, -2550, -2388, -7765, -1077, -7766, -2271, -1458, -7767, -7768, -7769], + [0, -932, -3037, -3041, -3048, -428, -7770, -7771, -427], + [1, 3, 2930], + [0, 2931, 0, 2932, 4], + [0, -7772], + [0, -7773, -880, -6582, -7685, -3445, -687, -7774, -5401], + [1, 3, 2934], + [0, 2935, 2936, 113, 4], + [ + 0, -5332, -5333, -3562, -367, -5334, -4251, -5335, -5336, -5337, -5338, -682, -5366, -5340, -747, -823, -5341, + -909, -5342, -5343, -5344, -3649, -2766, -1286, -1289, -1292, -5345, -1315, -1329, -5346, -1442, -1571, -5347, + -5348, -1779, -1878, -4130, -5349, -1955, -2000, -4930, -4942, -2003, -4944, -2004, -2013, -2965, -2028, -5350, + -5351, -2084, -5352, -2090, -5353, -4242, -2095, -2098, -2101, -2162, -3728, -5354, -5355, -2427, -2429, -5356, + -2435, -5357, -5358, -5359 + ], + [ + 0, -86, -3307, -3659, -5360, -5361, -3660, -5362, -3037, -5363, -3803, -3040, -3087, -3052, -5364, -5365, -932, + -4597, -1026, -1031, -5367, -5368, -1344, -1534, -1942, -1944, -1945, -2006, -2019, -2281, -2379, -2410, -2469, + -5369, -5370 + ], + [1, 3, 2938], + [0, 2939, 2940, 113, 6], + [ + 0, -5332, -5333, -3562, -367, -5334, -4251, -5335, -5336, -5337, -5338, -682, -5339, -747, -823, -5341, -5359, + -909, -5342, -5343, -5344, -3649, -2766, -1286, -1289, -1292, -5345, -1315, -1329, -5346, -1442, -1571, -5347, + -5348, -1779, -1878, -4130, -5349, -1955, -2000, -4930, -4942, -4944, -2013, -2965, -2028, -2084, -5352, -2090, + -5353, -4242, -2095, -2098, -2101, -2162, -3728, -5355, -2427, -2429, -5356, -2435, -5357, -5358 + ], + [ + 0, -86, -3307, -3659, -5360, -5361, -3660, -5362, -3037, -5363, -3040, -3087, -5364, -5365, -932, -1026, -1031, + -5368, -1344, -1534, -1942, -1944, -1945, -2006, -2281, -2379, -2410, -2469 + ], + [1, 3, 2942], + [0, 0, 2943, 7, 5], + [0, -2322, -2346], + [1, 3, 2945], + [0, 2946, 2947, 110, 8], + [ + 0, -7775, -7776, -7777, -7778, -7779, -44, -3946, -7780, -7781, -7782, -7783, -7784, -682, -747, -809, -7785, + -7786, -7787, -7788, -7789, -7790, -7791, -7792, -7793, -7794, -7795, -7796, -7797, -7798, -7799, -7800, -7801, + -7802, -7803, -7804, -7805, -7806, -7807, -7808, -7809, -7810, -7811, -7812, -7813, -7814, -7815, -7816, -4951, + -2345 + ], + [ + 0, -5695, -5704, -3139, -7817, -4952, -2581, -5702, -3744, -3745, -3746, -3747, -162, -3778, -4954, -5706, + -4106, -5708, -5699, -283, -305, -4955, -4773, -3562, -406, -407, -409, -410, -5682, -5683, -5693, -3048, -4960, + -5692, -5697, -3136, -4961, -4962, -4963, -4964, -4647, -3044, -5686, -3037, -5688, -7818, -5675, -3803, -3624, + -4966, -3040, -3087, -3052, -4968, -4969, -3199, -5687, -5673, -4971, -4972, -427, -428, -464, -5595, -4973, + -5674, -4974, -523, -668, -674, -5701, -5676, -767, -768, -4977, -865, -881, -5698, -3808, -932, -933, -940, + -948, -952, -958, -959, -962, -7819, -963, -969, -970, -978, -1026, -4979, -1077, -1103, -1107, -5346, -1339, + -1352, -1359, -1392, -1404, -1415, -4980, -1416, -1419, -1421, -4981, -4982, -1437, -1449, -4983, -3134, -1534, + -1548, -5689, -4984, -1646, -1662, -1729, -1737, -1779, -1805, -1816, -5668, -1870, -1880, -1942, -1943, -1950, + -1955, -1978, -1983, -4985, -4986, -4987, -2006, -2013, -5680, -2019, -3051, -4988, -4989, -4990, -2027, -4991, + -2044, -4992, -2082, -2090, -2093, -2094, -2095, -4994, -5707, -4995, -2101, -2125, -5669, -2177, -2193, -2205, + -2214, -5671, -5000, -2323, -2324, -2334, -2392, -2402, -2410, -5001, -5678, -2501, -2502, -5002 + ], + [1, 3, 2949], + [0, 0, 2950, 2951, 10], + [0, -86, -3307, -7820, -190, -932, -940, -964, -967, -1344, -1534, -1654, -1942, -2127, -2198, -2251], + [0, -5839, -510, -6235, -7821, -885, -7208, -1961, -7822, -6302, -3445, -3100], + [1, 3, 2953], + [0, 2954, 2955, 2956, 11], + [0, -2387, -7823], + [ + 0, -22, -23, -47, -7769, -7767, -7824, -262, -350, -351, -3561, -3136, -427, -428, -668, -719, -879, -928, -932, + -1077, -1111, -1344, -1415, -1416, -1452, -1588, -1805, -2127, -2140, -2172, -2177, -2334, -2375, -2410 + ], + [0, -886, -7825, -6581, -7826, -7275, -7827, -7828, -659, -3839], + [1, 3, 2958], + [0, 2959, 2960, 2961, 4], + [0, -7829, -1043, -7830, -1199, -7831, -7832, -7833, -1548, -1645, -7834, -1876, -2347, -2460, -2462, -2550], + [ + 0, -3035, -3048, -7835, -3044, -3621, -3037, -4364, -4372, -3625, -7836, -7837, -7838, -3041, -664, -994, -1077, + -1100, -1654, -1788, -1972, -2125, -2210, -2211, -2379, -2388, -2410 + ], + [0, -7829, -3674, -5874, -7839, -7840, -7449, -7841], + [1, 3, 2963], + [0, 2964, 2965, 2966, 4], + [0, -1410], + [0, -2410, -32, -633, -932, -6272, -1446, -1582, -1654, -2416], + [0, -3110, -7651, -6899, -888], + [1, 3, 2968], + [0, 2969, 2970, 2971, 4], + [0, -668, -1548, -7842], + [ + 0, -1722, -461, -510, -1127, -1654, -2210, -2239, -932, -1437, -1666, -2177, -521, -600, -2501, -7843, -7844, + -615, -1813, -1942, -2347, -1003, -1026, -3767, -1132, -7845, -633, -23, -7846, -528, -534, -7847, -7848, -40, + -966, -1138, -1134, -958, -1136, -1148, -968, -940, -943, -967, -974, -7849 + ], + [0, -889, -6045, -3817], + [0, 44, 15, 16, 5], + [1, 3, 2974], + [0, 2975, 0, 195, 6], + [0, -3037, -1018, -7850], + [1, 3, 2977], + [0, 2978, 2979, 2980, 4], + [0, -668, -2550, -680, -1077, -7851, -7852, -7853, -7854, -7855, -7741], + [0, -3041, -3048], + [ + 0, -891, -4258, -7641, -7856, -1380, -7857, -7858, -7859, -3994, -7860, -7861, -7862, -7863, -7864, -7865, + -7866, -7867, -7868, -7869, -7870, -7871, -5730 + ], + [1, 3, 2982], + [0, 2983, 2984, 2985, 4], + [ + 0, -7872, -7850, -7873, -7874, -7875, -7876, -812, -1018, -7731, -1077, -7877, -7878, -7879, -7880, -1875, + -7881, -2114, -2177, -2551 + ], + [0, -427, -428, -519, -641, -708, -932, -943, -950, -958, -966, -968, -1788, -1872, -2210, -2384, -2402, -2410], + [0, -891, -7857, -7882, -3994], + [1, 3, 2987], + [0, 2988, 2989, 195, 10], + [0, -1018, -7883], + [0, -2322, -2250, -7884, -1849], + [1, 3, 2991], + [0, 2992, 56, 57, 6], + [0, -668, -1078, -1406, -7885], + [1, 3, 2994], + [0, 2995, 2996, 7, 8], + [0, -7886], + [0, -1127, -7887, -1130, -1144, -1148, -1155, -1413, -1437, -1471, -1475, -1479, -1481, -1487, -1542, -1548], + [1, 3, 2998], + [0, 2999, 3000, 3001, 5], + [0, -513, -532, -823, -1761, -2113, -2345], + [ + 0, -7888, -7889, -526, -527, -534, -535, -539, -541, -544, -7890, -558, -564, -7891, -664, -679, -748, -756, + -7892, -767, -778, -925, -932, -7893, -949, -957, -7894, -1041, -7895, -1168, -1171, -7896, -1248, -1304, -1331, + -1455, -5610, -1471, -1475, -1476, -1482, -7759, -1490, -1491, -1492, -7897, -1600, -1601, -7898, -1602, -1643, + -1654, -1743, -1814, -1889, -1960, -2125, -2163, -7899, -2210, -2211, -2275, -7900, -2417, -7901, -2437, -2476, + -2481, -2483, -2485, -7902, -2501, -2503, -2505, -2509 + ], + [0, -7903, -2476, -3098], + [1, 3, 3003], + [0, 3004, 3005, 3006, 4], + [0, -616, -7904, -7905, -7906, -1370, -7907, -7908], + [0, -627, -756, -932, -1127, -1130, -1132, -1137, -1138, -1148, -7909, -1161, -1405, -1654], + [0, -7910, -7911, -7912, -7913], + [1, 3, 3008], + [0, 3009, 3010, 3011, 4], + [0, -7914, -7915, -7916, -1329, -7917, -1548, -1752], + [ + 0, -86, -3307, -519, -674, -767, -888, -932, -946, -1053, -1344, -1534, -7918, -1788, -7919, -1974, -2094, + -2099, -2541 + ], + [ + 0, -735, -7920, -6899, -1501, -7921, -7922, -7923, -7924, -7925, -7926, -1752, -7927, -1974, -7928, -3110, + -3261, -3443 + ], + [1, 3, 3013], + [0, 0, 3014, 7, 5], + [0, -190, -7929, -3037, -7930, -3664, -932, -940, -967, -7931, -1942, -7932, -2379, -2410, -2411, -2469], + [1, 3, 3016], + [0, 3017, 3018, 3019, 10], + [ + 0, -7933, -7934, -7935, -7936, -7937, -2731, -7938, -7939, -7940, -7941, -628, -7942, -629, -2733, -7943, -7944, + -7945, -7946, -7947, -668, -680, -7948, -724, -728, -7949, -7950, -7951, -7952, -834, -7953, -5501, -7954, + -5502, -7955, -999, -1000, -1004, -1044, -1047, -7956, -1077, -6345, -5505, -5367, -1107, -6343, -7957, -7958, + -7959, -1336, -1369, -1376, -7960, -7961, -1548, -1600, -7962, -1645, -1676, -1758, -1767, -7834, -7963, -1888, + -7964, -7965, -7966, -2114, -6195, -7967, -7968, -2177, -5509, -7969, -7970, -2330, -2342, -2353, -7971, -2488, + -7972, -3730, -7973, -7974, -7975 + ], + [ + 0, -6346, -630, -664, -665, -7976, -6477, -726, -7977, -7978, -932, -940, -7979, -964, -965, -1054, -7980, + -1449, -1514, -1654, -1722, -1788, -1942, -7981, -2269, -2293, -2341, -2359, -7982, -2512, -2518, -7983, -7984 + ], + [0, -3994, -7985, -5375, -687, -7986, -7987, -7988, -3114], + [1, 3, 3021], + [0, 3022, 3023, 3024, 4], + [ + 0, -3197, -33, -3376, -3384, -3355, -3374, -3397, -38, -3412, -40, -44, -7989, -7990, -7991, -7992, -541, -7993, + -7941, -628, -7944, -7946, -702, -7994, -7995, -7955, -6195, -2177 + ], + [ + 0, -23, -7996, -7997, -7998, -7999, -8000, -528, -630, -664, -705, -8001, -722, -7949, -753, -7951, -8002, -902, + -8003, -904, -8004, -8005, -8006, -8007, -8008, -8009, -932, -8010, -966, -7980, -8011, -1654, -1989, -2082, + -7981, -2114, -2125, -2501 + ], + [0, -525, -7986, -8012, -902, -3185, -3186], + [1, 3, 3026], + [0, 3027, 3028, 3029, 6], + [0, -8013, -8014, -7941, -8015, -6346, -6345, -7959, -8016, -5509, -2488], + [ + 0, -23, -32, -33, -3376, -38, -3412, -44, -7996, -7998, -8017, -7990, -629, -630, -664, -8001, -726, -8002, + -902, -903, -8018, -8003, -8004, -8005, -8006, -8007, -8008, -8009, -8019, -8020, -8021, -932, -940, -8010, + -964, -965, -967, -8022, -1054, -8011, -1654, -1942, -1989, -1990, -2091, -6348, -2281, -2282, -5059, -2501 + ], + [0, -8012, -902], + [1, 3, 3031], + [0, 3032, 3033, 3034, 8], + [0, -8023, -8024], + [0, -351, -3267, -3037, -1520, -2125, -2127, -2392, -2410], + [0, -905, -3264, -775, -8025, -8026], + [1, 3, 3036], + [0, 0, 0, 105, 8], + [1, 3, 3038], + [0, 0, 3039, 3040, 8], + [0, -1654, -932, -1405, -966, -958, -968, -943, -974], + [0, -6422, -907, -2435], + [1, 3, 3042], + [0, 3043, 31, 3044, 4], + [0, -1801], + [0, -5827, -8027, -5865, -8028, -8029, -8030, -4116], + [1, 3, 3046], + [0, 3047, 3048, 7, 4], + [0, -1119, -2321], + [0, -4035, -3136, -3037, -774, -932, -6929, -1344, -1415, -1534, -1623, -1942, -2410], + [1, 3, 3050], + [0, 3051, 3052, 3053, 4], + [0, -479, -2269], + [0, -3037, -1202, -1376, -1654, -1788, -1966, -2410], + [ + 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -3959, -910, -3262, -3960, -3961, -3962, -3963, -1376, -3964, + -3965, -3214, -3966, -3967, -1965, -1966, -3968, -3969, -2063, -3970, -3108, -3971, -3972, -3973, -3974, -3975, + -3160, -3976, -2559, -3977 + ], + [1, 3, 3055], + [0, 3056, 3057, 3058, 8], + [0, -6511, -8031, -1977, -8032], + [0, -5834, -516, -5835, -932, -993, -1365, -1777, -1788, -2156, -2322], + [0, -3223, -8033, -8034, -3264, -6422, -6420], + [1, 3, 3060], + [0, 0, 3061, 3062, 9], + [0, -664, -1344, -1654, -2176], + [0, -8035, -8036, -8037, -8038, -7534], + [1, 3, 3064], + [0, 3065, 122, 196, 5], + [0, -987, -2346], + [1, 3, 3067], + [0, 0, 3068, 3069, 4], + [ + 0, -23, -5584, -39, -40, -86, -3307, -7465, -527, -528, -533, -534, -932, -934, -940, -958, -967, -8039, -1107, + -1344, -1415, -1646, -3547, -7861, -1942, -6040, -2501, -2503, -2518, -8040 + ], + [0, -3113, -6845, -5558, -8041, -8042, -8043, -8044], + [1, 3, 3071], + [0, 3072, 3073, 85, 4], + [ + 0, -8045, -674, -918, -8046, -8047, -8048, -8049, -8050, -8051, -7394, -8052, -8053, -8054, -1559, -1794, -5849, + -1797, -1798, -8055, -1992, -8056, -8057 + ], + [0, -526, -6022, -557, -932, -933, -958, -962, -969, -1365, -1449, -2125, -2156], + [1, 3, 3075], + [0, 3076, 3077, 85, 11], + [0, -1285, -2177, -2029, -1967, -1797, -8055, -2052, -917, -918], + [0, -915, -932, -2125, -1777, -21, -1365, -23, -557, -969, -2156, -32, -933, -958, -962, -970, -535, -6022], + [1, 3, 3079], + [0, 3080, 3081, 85, 4], + [0, -1285, -2177, -1967, -1797, -8062, -8063, -8046], + [0, -932, -2125, -1777, -21, -1365, -23, -557, -969, -2156, -32, -933, -958, -962, -970, -535, -6022], + [1, 3, 3083], + [0, 3084, 3085, 85, 6], + [0, -1285, -5849], + [0, -932, -2125, -1777, -21, -1365, -23, -557, -2156, -32, -958, -934, -535, -6022], + [1, 3, 3087], + [0, 3088, 3089, 7, 9], + [0, -459, -929], + [0, -465, -932, -943, -958, -963, -966, -968, -1654, -1788, -2293], + [1, 3, 3091], + [0, 3092, 3093, 3094, 4], + [0, -461, -1026], + [0, -7150, -635, -8064, -3347, -8065, -8066, -1942, -2091], + [0, -8067, -8068, -6505, -8069, -8070, -8071, -3217, -8072, -8073, -8074, -3756, -8075, -8076, -8077, -8078, -8079], + [1, 3, 3096], + [0, 3097, 3098, 3099, 4], + [0, -8080, -1283, -8081, -8082, -8083, -6402, -1797], + [ + 0, -2832, -5834, -8084, -8085, -8086, -8087, -8088, -8089, -8090, -8091, -8092, -8093, -8094, -8095, -8096, + -505, -516, -5835, -932, -6283, -6503, -1402, -1777, -1788, -8097, -2156, -8098, -2322, -8099 + ], + [0, -3214, -3217, -6505, -3756, -7374, -5846, -8100, -8101, -5831], + [1, 3, 3101], + [0, 3102, 3103, 3104, 11], + [0, -6704, -8102, -8103, -8104], + [0, -932, -6706, -6707, -6708, -1344, -1534, -1788, -8105, -6709, -6710], + [0, -3217, -8106, -8107, -8108, -3184, -8109, -8110, -8111, -8112, -3207, -3214, -3582, -5396, -2444, -5260, -8113], + [1, 3, 3106], + [0, 0, 3107, 3108, 4], + [0, -5834, -515, -932, -1365, -1414, -1788, -2156, -2416], + [0, -5396, -8108, -8114, -3214, -3217, -3582], + [1, 3, 3110], + [0, 0, 3111, 3112, 5], + [0, -526, -527, -535, -4098, -558, -664, -767, -1654, -2125], + [0, -3184, -6324, -525], + [1, 3, 3114], + [0, 0, 3115, 3116, 9], + [ + 0, -8115, -1654, -902, -7945, -7938, -8116, -8117, -8118, -8119, -629, -7993, -8003, -8120, -8121, -6083, -6070, + -8122, -6081, -548, -6072, -6068, -550, -6071, -6082 + ], + [0, -8123, -3582, -1961, -5923], + [1, 3, 3118], + [0, 0, 3119, 3120, 4], + [0, -21, -23, -40, -4691, -925, -932, -940, -943, -958, -966, -968, -1344, -1788, -1942, -2210, -2322], + [0, -1961, -5923, -3184, -8124, -926], + [1, 3, 3122], + [0, 0, 3123, 3124, 8], + [ + 0, -5834, -515, -664, -923, -932, -993, -1127, -1137, -1149, -1161, -1365, -1654, -1788, -1963, -8125, -2156, + -2322, -2416 + ], + [0, -3217, -3207, -3184, -5396, -1961, -5923, -8126, -6917, -8127, -8128], + [1, 3, 3126], + [0, 0, 3127, 3128, 5], + [0, -589, -585], + [0, -5559, -3264, -3590], + [1, 3, 3130], + [0, 0, 14, 3131, 10], + [0, -5559, -5569, -5570, -8129, -8130, -2265, -8131, -8132], + [1, 3, 3133], + [0, 3134, 3135, 7, 4], + [0, -988, -6100, -987, -2231], + [0, -461, -615, -8133, -664, -3629, -8134, -1168, -1197, -1231, -1646, -1815, -2177], + [1, 3, 3137], + [0, 3138, 3139, 3140, 5], + [ + 0, -189, -5200, -8135, -8136, -7820, -8137, -8138, -8139, -8140, -426, -469, -769, -812, -930, -982, -983, -986, + -8141, -6100, -1025, -8142, -1047, -1108, -1353, -8143, -1393, -8144, -1645, -5199, -1815 + ], + [ + 0, -2832, -23, -40, -3794, -7462, -3244, -8145, -8146, -3037, -428, -534, -652, -664, -674, -722, -753, -795, + -888, -955, -8147, -7355, -8148, -8149, -8150, -987, -8151, -1107, -1110, -1116, -1125, -1431, -1498, -1534, + -1600, -1602, -1610, -8152, -8153, -8154, -8155, -8156, -8157, -1654, -8158, -8159, -1942, -1959, -1972, -2066, + -2082, -2177, -2195, -2210, -2410, -2501, -2503, -8160 + ], + [0, -3272, -7148, -3214, -3217, -986], + [1, 3, 3142], + [0, 3143, 3144, 197, 5], + [0, -1797, -1798, -934], + [0, -2322, -887, -932, -1365, -44, -8161, -8162, -557, -969, -2156, -958, -962, -970], + [1, 3, 3146], + [0, 3147, 3148, 197, 4], + [0, -2177, -1797, -1798, -8167], + [0, -2322, -887, -932, -1365, -44, -8161, -8162, -557, -2156, -958], + [1, 3, 3150], + [0, 3151, 3152, 3153, 10], + [0, -934], + [0, -427, -428, -855, -932, -940, -958, -1344, -1534, -1771, -1942, -8168, -2410], + [0, -8164, -727, -4795, -8165, -6434, -8166, -932, -8163, -3214, -4900, -2410], + [1, 3, 3155], + [0, 0, 38, 3156, 8], + [ + 0, -3939, -707, -8169, -5553, -7148, -8170, -1445, -1452, -8171, -932, -5874, -8172, -8173, -7440, -7144, -8174, + -7840, -8175 + ], + [1, 3, 3158], + [0, 3159, 38, 3160, 4], + [0, -190, -1110], + [0, -932, -5031, -8176], + [1, 3, 3162], + [0, 3163, 3164, 3165, 4], + [0, -3615, -3244, -190, -3748, -427, -428, -938, -945, -8177, -948, -958, -960, -964, -965, -7354, -978, -2411], + [0, -4367, -932, -2410], + [0, -4362, -932, -5031, -8176], + [1, 3, 3167], + [0, 3168, 3169, 76, 11], + [0, -965, -964, -958, -8177, -428, -7354, -427, -948], + [0, -932, -2410, -4367], + [1, 3, 3171], + [0, 0, 0, 3172, 6], + [0, -932, -8163, -5031, -8178, -1942], + [1, 3, 3174], + [0, 3175, 0, 7, 5], + [0, -23, -959, -969, -32, -958, -561, -956, -962, -8179, -428, -8167, -970, -976, -427], + [1, 3, 3177], + [0, 0, 3178, 3179, 5], + [0, -932, -943, -958, -965, -968, -2322], + [ + 0, -8180, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8163, -8175, -1445, -1452, -7148, -8184, + -8169, -5493, -2176, -2250, -8185, -5553, -8186, -8187, -8174 + ], + [1, 3, 3181], + [0, 0, 3182, 3183, 4], + [0, -3330, -8096, -932, -958, -965, -968, -2322], + [ + 0, -8180, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8163, -8175, -1445, -1452, -7148, -8184, + -8169, -5493, -2250, -8185, -5553, -8186, -8187, -8174 + ], + [1, 3, 3185], + [0, 3186, 3187, 7, 9], + [0, -190, -3560, -978, -1110, -2411], + [0, -8188, -3330, -3037, -8189, -672, -932, -8190, -8191, -1942, -2410], + [1, 3, 3189], + [0, 3190, 3191, 3192, 4], + [0, -8192, -7462, -3748, -8167, -1110], + [0, -519, -932], + [ + 0, -8163, -2541, -8193, -8194, -8195, -8196, -8197, -707, -8169, -5553, -7148, -8170, -1445, -1452, -8171, -932, + -5874, -8172, -2250, -8173, -7440, -7144, -8174, -7840, -8175, -5493 + ], + [1, 3, 3194], + [0, 0, 3195, 3196, 10], + [0, -86, -3307, -767, -1344, -1534, -2094, -2099, -2541], + [0, -8198, -727, -932, -7921, -7922, -8199, -2541], + [1, 3, 3198], + [0, 3199, 3200, 3201, 4], + [0, -429, -469, -671, -719, -755, -823, -3780, -7829, -1418, -1456, -5473, -1605, -2400], + [ + 0, -190, -3037, -4372, -8200, -3899, -6593, -932, -940, -958, -965, -967, -978, -1609, -1768, -1771, -1821, + -1942, -2210, -7969, -2410, -2411, -2469 + ], + [0, -4100, -3671, -856, -932, -3262, -3862], + [1, 3, 3203], + [0, 3204, 0, 3205, 8], + [0, -812, -8201, -1101, -8202, -8203, -2654, -8204], + [0, -2410, -932, -6024, -6041, -3862], + [1, 3, 3207], + [0, 3208, 3209, 3210, 5], + [0, -1046, -1077, -1543, -1793, -2168], + [ + 0, -21, -23, -40, -86, -3307, -8205, -7166, -528, -533, -679, -8206, -767, -824, -825, -932, -940, -8207, -958, + -1344, -1415, -1424, -1534, -1771, -1942, -2251, -2501 + ], + [0, -932, -7148, -8170, -5932, -2501], + [1, 3, 3212], + [0, 3213, 3214, 3215, 4], + [0, -189, -7462, -8208, -986, -8209, -8210, -2115], + [0, -428, -519, -652, -668, -932, -8211, -947, -955, -999, -1771, -1821, -1866, -2410, -2541], + [0, -932, -5208, -3784, -519, -4004, -4043, -507, -5856, -5855, -1654], + [1, 3, 3217], + [0, 3218, 3219, 3220, 9], + [0, -8212], + [0, -1654, -932, -528, -1552], + [0, -525, -932, -5208, -3784, -528], + [1, 3, 3222], + [0, 3223, 3224, 3225, 5], + [0, -7150, -8213, -635, -658, -1047, -1110, -1565, -2177], + [ + 0, -23, -32, -86, -3307, -3615, -190, -3470, -3471, -8214, -3268, -8215, -3330, -3136, -8216, -3199, -589, + -8217, -891, -932, -940, -955, -967, -1002, -1344, -1415, -1942, -2174, -2205, -2375, -2379, -2410, -2411 + ], + [0, -932, -4865, -6520, -3690, -7148, -657, -8218], + [1, 3, 3227], + [0, 0, 123, 3228, 5], + [0, -932, -5208, -8108, -4795], + [1, 3, 3230], + [0, 3231, 3232, 3233, 4], + [0, -930, -1353], + [ + 0, -5380, -3037, -8219, -528, -708, -769, -932, -8220, -1077, -1654, -1788, -1810, -2125, -2177, -5621, -8221, + -2816 + ], + [0, -932, -5208, -3784, -3862, -8222, -3485, -8223, -1109, -1110, -8224, -8225, -8226, -8227, -8228, -8229], + [1, 3, 3235], + [0, 3236, 3237, 198, 11], + [0, -189, -988], + [ + 0, -86, -3307, -3534, -8230, -3244, -190, -3560, -8231, -8232, -8233, -426, -3044, -3037, -428, -429, -3899, + -932, -8234, -940, -947, -965, -978, -981, -982, -986, -1344, -1431, -1534, -1548, -1609, -1768, -1772, -1942, + -2892, -2410, -2411, -2469 + ], + [1, 3, 3239], + [0, 3240, 3241, 3242, 4], + [0, -1548, -8235], + [ + 0, -469, -1107, -1344, -1654, -932, -2125, -8236, -6611, -21, -23, -5870, -43, -2174, -40, -32, -8237, -3201, + -955, -535, -3408, -36 + ], + [0, -932, -3862, -8238], + [1, 3, 3244], + [0, 3245, 3246, 3247, 8], + [0, -1333], + [0, -8239, -8240, -932, -940, -8241, -1942, -2177], + [0, -3784, -5208, -932, -3264], + [1, 3, 3249], + [0, 3250, 3251, 3252, 9], + [ + 0, -8242, -8243, -8244, -8045, -505, -812, -8245, -8246, -8247, -1285, -7437, -1393, -1645, -8063, -8248, -8055, + -2177, -8249, -2383 + ], + [ + 0, -8250, -3330, -428, -526, -527, -528, -539, -541, -557, -6089, -566, -572, -664, -767, -8251, -932, -947, + -948, -955, -958, -7894, -6039, -8252, -1107, -1365, -1408, -1461, -8253, -8254, -1609, -1654, -8255, -1788, + -2074, -2125, -2156, -2210, -2359, -2410, -8256 + ], + [0, -932, -5208, -3784, -3184, -5748, -3209, -6024, -8257], + [1, 3, 3254], + [0, 199, 3255, 198, 6], + [ + 0, -21, -23, -40, -42, -86, -3307, -8230, -8258, -3470, -3471, -5325, -3330, -3136, -3037, -3199, -427, -428, + -429, -533, -8259, -815, -932, -940, -947, -955, -958, -965, -967, -981, -8260, -1344, -1392, -1415, -6725, + -1534, -8241, -1868, -1942, -2125, -2174, -2177, -2379, -2410 + ], + [1, 3, 3257], + [0, 3258, 3259, 3260, 4], + [0, -8261, -8262, -8263, -3896, -812, -930, -986, -8141, -1320, -8264, -8265, -2177, -8266, -8267], + [ + 0, -2832, -21, -23, -32, -3203, -40, -8268, -8269, -7820, -8270, -351, -7040, -3472, -7041, -3035, -3198, -8232, + -8146, -426, -4049, -3621, -3037, -3199, -8271, -3782, -535, -539, -8272, -652, -656, -664, -813, -932, -8237, + -8236, -1107, -1110, -1344, -8273, -1456, -8274, -1534, -1654, -8275, -1874, -8276, -2125, -2127, -2174, -2210, + -5198, -2410, -2411 + ], + [0, -932, -3862, -1446], + [1, 3, 3262], + [0, 3263, 3264, 3265, 9], + [0, -189, -7820, -8137, -8277, -8278, -8279, -7356, -5199, -2653], + [ + 0, -32, -8280, -50, -8230, -7462, -8281, -8282, -3748, -7155, -3621, -8283, -3037, -3199, -427, -428, -652, + -8284, -928, -932, -940, -955, -8285, -960, -8286, -961, -963, -965, -8287, -967, -971, -980, -7355, -982, -997, + -1110, -1654, -1834, -1942, -2177, -2281, -8288, -2282, -8289, -8290, -2892, -2392, -2410, -2411, -8291, -2468, + -2478 + ], + [0, -932, -5208, -3784, -7148, -8292, -1460, -4055], + [1, 3, 3267], + [0, 3268, 3269, 3270, 4], + [0, -5113, -8243, -505, -8293, -522, -8294, -8295, -5973, -1285, -8296, -8297, -1645, -8063, -8032, -8298], + [ + 0, -21, -23, -32, -3203, -43, -516, -535, -557, -932, -934, -947, -955, -956, -958, -988, -1059, -1365, -1408, + -7317, -1646, -1777, -1797, -1798, -2125, -2156, -2177, -2322, -8299 + ], + [0, -932, -5208, -3784, -4665, -4666, -4146], + [1, 3, 3272], + [0, 3273, 3274, 3275, 4], + [0, -1618], + [0, -1788, -664, -1654, -932, -1110, -190, -8148, -8300], + [0, -932, -5208, -1599, -7148, -8170], + [1, 3, 3277], + [0, 3278, 0, 3279, 10], + [0, -1110, -189], + [0, -932, -5208, -3784, -1654], + [1, 3, 3281], + [0, 3282, 3283, 200, 9], + [0, -189, -909, -8301, -1101, -1110, -2898, -1353, -2177, -8302], + [ + 0, -190, -3330, -426, -8303, -3037, -428, -5209, -932, -940, -947, -955, -1026, -1344, -1534, -1609, -1654, + -1772, -1788, -1810, -1942, -1977, -2091, -2125, -8304, -2400, -2410 + ], + [1, 3, 3285], + [0, 3286, 3287, 200, 6], + [0, -6578, -8305, -1353, -1645, -2114, -2177], + [0, -5380, -708, -932, -1026, -1110, -1654, -1788, -1810, -1977, -2125], + [1, 3, 3289], + [0, 3290, 0, 3291, 10], + [0, -8306, -2653], + [0, -932, -5208, -3784, -1942], + [1, 3, 3293], + [0, 3294, 3295, 3296, 4], + [0, -189], + [0, -428, -855, -932, -940, -947, -955, -959, -965, -967, -1110, -1344, -1415, -1534, -1772, -1942, -2410], + [0, -932, -5208, -3784, -1961, -5923], + [1, 3, 3298], + [0, 3299, 3300, 201, 5], + [ + 0, -8243, -8307, -505, -8308, -8245, -8309, -988, -1285, -8296, -1645, -1798, -8063, -8055, -1967, -2114, -2177, + -5010, -8310 + ], + [ + 0, -23, -32, -3332, -8311, -8312, -41, -3330, -426, -3037, -428, -528, -932, -934, -947, -955, -958, -981, + -8260, -982, -986, -8313, -1107, -1405, -1408, -8314, -1609, -1654, -1777, -2210, -2410, -8256 + ], + [1, 3, 3302], + [0, 3303, 3304, 201, 5], + [0, -2564, -23, -25, -8315, -3251], + [0, -1415, -2410, -3037, -47, -528, -3330, -426, -8316, -8317, -32, -42], + [1, 3, 3306], + [0, 3307, 3308, 3309, 6], + [0, -189, -5200, -3896, -8273, -8318, -8319, -8320], + [ + 0, -50, -3462, -8230, -3244, -190, -8281, -8282, -5030, -3035, -3330, -8231, -426, -3621, -3037, -8321, -427, + -428, -507, -664, -8284, -932, -940, -947, -948, -955, -958, -960, -8286, -961, -963, -965, -8322, -967, -971, + -978, -980, -7355, -8323, -1609, -1654, -8324, -1588, -1772, -1788, -1834, -1942, -2177, -2281, -3085, -8288, + -2892, -2392, -2410, -2411, -8291, -2468, -2478 + ], + [0, -932, -5208, -3784, -5570, -5569], + [1, 3, 3311], + [0, 3312, 3313, 3314, 5], + [0, -8325], + [0, -190, -5887, -932, -8326, -940, -947, -955, -1534, -1609, -1654, -1771, -1942, -2174, -8160], + [0, -932, -7107, -8327], + [1, 3, 3316], + [0, 3317, 0, 3318, 9], + [0, -2410, -2177, -8328, -1566, -8329, -5200, -1645, -5198, -8320, -651, -644, -1110], + [0, -8330, -932, -5208], + [1, 3, 3320], + [0, 0, 123, 3321, 11], + [0, -932, -5208], + [1, 3, 3323], + [0, 3324, 3325, 3326, 9], + [0, -189, -3115, -6100, -1110, -1499, -1889, -1907, -1929, -2177, -8331], + [ + 0, -23, -32, -6034, -8230, -4776, -8332, -8333, -4049, -8334, -3621, -3037, -8335, -3199, -8336, -3331, -3782, + -461, -507, -928, -982, -8190, -983, -986, -1431, -1521, -1654, -1916, -1931, -2162, -2232, -2286, -2299, -8337, + -2392, -2399, -2548 + ], + [0, -932, -3784, -5208, -2299, -8338], + [1, 3, 3328], + [0, 3329, 3330, 3331, 5], + [0, -3331, -429], + [ + 0, -86, -3307, -3244, -190, -3037, -5206, -3664, -6593, -3665, -932, -940, -947, -948, -8339, -965, -968, -981, + -8260, -1110, -1344, -1431, -1534, -1942, -2910, -2174, -2892, -2410, -2411, -2469 + ], + [0, -932, -5208, -3784, -7148, -5127, -3634], + [1, 3, 3333], + [0, 3334, 3335, 3336, 4], + [0, -429, -264, -263], + [0, -4153, -3330, -426, -932, -4164], + [0, -4165, -856, -4100, -3485, -4156, -4158, -4346, -3862], + [1, 3, 3338], + [0, 3339, 3340, 3341, 9], + [0, -3188, -189, -671, -680, -8340, -3347, -8341, -1110, -1366, -5894, -1451, -1878, -8342, -8343, -2177, -4096], + [ + 0, -22, -23, -32, -3244, -8344, -428, -3782, -519, -652, -910, -932, -8211, -945, -947, -955, -960, -978, -981, + -8260, -982, -986, -1536, -1609, -8345, -8346, -1768, -1772, -8275, -1821, -1951, -2410, -2478, -2548 + ], + [0, -932, -5208, -3784, -8347, -8170, -7148, -5553, -2541], + [1, 3, 3343], + [0, 199, 3344, 3345, 4], + [ + 0, -3748, -3330, -3621, -3037, -427, -428, -5206, -8348, -8349, -726, -932, -947, -955, -979, -981, -8260, + -2379, -2392, -2410, -2423, -2469 + ], + [0, -932, -5208, -3784, -8350, -2469, -8351], + [1, 3, 3347], + [0, 3348, 3349, 3350, 5], + [0, -189, -5199, -2788, -1931, -2177, -8352], + [ + 0, -50, -3560, -8282, -3748, -5030, -3330, -8283, -3037, -3199, -8353, -427, -428, -3782, -3664, -507, -8284, + -928, -932, -6835, -940, -955, -958, -961, -8354, -8287, -967, -978, -8190, -983, -986, -997, -1110, -1449, + -1609, -1852, -1942, -2892, -2410, -8291, -2468, -2469, -2478 + ], + [0, -932, -3784, -5031, -2476, -5173, -8199], + [1, 3, 3352], + [0, 3353, 3354, 3355, 6], + [0, -22, -1464, -668, -1373, -1793, -2006, -2205], + [0, -3244, -8355, -3330, -3037, -4067, -3040, -740, -932, -5135, -8356, -8357, -1431, -1741, -2269, -2410, -2469], + [0, -932, -8358], + [1, 3, 3357], + [0, 3358, 3359, 38, 9], + [0, -8359, -426, -8360, -988], + [0, -428, -664, -983, -986, -8159, -2195], + [1, 3, 3361], + [0, 0, 3362, 38, 5], + [0, -1810, -2127, -2132, -2384, -2410], + [1, 3, 3364], + [0, 3365, 0, 3366, 4], + [0, -941, -8361], + [0, -984], + [1, 3, 3368], + [0, 0, 0, 3369, 9], + [0, -4791, -3217, -8257, -6024, -3209, -3966, -4792], + [1, 3, 3371], + [0, 3372, 3373, 3374, 5], + [0, -461, -6426, -983], + [0, -2832, -2127, -2195, -2384, -2410], + [0, -3272, -3217, -3214, -3215, -4132, -461], + [1, 3, 3376], + [0, 0, 3377, 3378, 5], + [ + 0, -6774, -8362, -8363, -1107, -1405, -8364, -1471, -1475, -1477, -1478, -1479, -1480, -1482, -1487, -8365, + -1488, -1548, -1654, -8366, -2081, -2330, -2388, -2410, -2412, -8367, -2501 + ], + [0, -3272, -3217, -987, -3214, -3215, -4132], + [1, 3, 3380], + [0, 0, 3381, 7, 5], + [0, -558, -566, -664, -986, -1168, -1179, -1199, -1205, -8368, -1452, -1654], + [1, 3, 3383], + [0, 202, 3384, 7, 6], + [0, -2410, -2447], + [1, 3, 3386], + [0, 0, 3387, 3388, 6], + [0, -1654, -932, -1405, -589, -2172, -2155, -585, -966, -958, -968, -943, -963, -974], + [0, -990, -1334, -4616], + [1, 3, 3390], + [0, 3391, 3392, 3393, 8], + [0, -8369, -992], + [ + 0, -8370, -8371, -8372, -8373, -4272, -5686, -3037, -8096, -633, -8374, -756, -1344, -1405, -1471, -1472, -1477, + -1479, -8375, -1646, -1788, -1942, -2322, -2379, -2388, -2402, -2405, -2410, -8376 + ], + [0, -4276, -8377], + [1, 3, 3395], + [0, 3396, 3397, 3398, 5], + [0, -4272, -616, -760, -8378, -8379], + [0, -8380, -3037, -8381, -8096, -932, -1471, -1475, -1479, -8375, -8382, -1788, -1942, -2322, -2379, -2410], + [0, -4276, -8113, -5260], + [1, 3, 3400], + [0, 3401, 3402, 3403, 5], + [0, -461, -668, -2550, -1548, -615, -1077, -8383, -988, -1600, -8384, -2425], + [0, -1983, -8385, -2410, -3037], + [0, -8386, -8387, -3214, -1599, -4004], + [1, 3, 3405], + [0, 3406, 3407, 3408, 5], + [0, -883, -8388, -1597, -8389, -2239, -8390, -2346], + [0, -8391, -8392, -8393, -2322, -8394], + [0, -5827, -6917, -8395, -7724, -2239, -8396, -1631, -8276], + [1, 3, 3410], + [0, 0, 3411, 3412, 9], + [0, -589, -615, -756, -1654, -1788], + [0, -5389, -997, -6820, -8397, -8398, -8399, -8400, -6821, -8401, -8402, -1801, -8403, -8404], + [1, 3, 3414], + [0, 0, 3415, 3416, 4], + [0, -350, -3266, -509, -652, -1654, -2127], + [0, -8405, -8406, -8407, -8408, -8398, -8399, -6821, -8401, -6820, -5389, -1801, -8400, -8403, -8409, -8404], + [1, 3, 3418], + [0, 0, 3419, 3420, 5], + [0, -468, -1083, -8047, -1283, -1402, -2322], + [0, -997, -8410, -8411, -8412], + [1, 3, 3422], + [0, 3423, 3424, 3425, 4], + [0, -8413, -769, -1040, -1100, -8414, -1395, -1399, -1773, -1951, -2202, -8415, -8416], + [0, -3037, -519, -652, -8417, -8418, -8419, -8420, -1849, -7087, -6909, -2384, -2410, -2518, -2541], + [ + 0, -8421, -6599, -1958, -8422, -7096, -8423, -8424, -7091, -6656, -5550, -8425, -7304, -8426, -1764, -1847, + -8427, -5369 + ], + [1, 3, 3427], + [0, 0, 3428, 3429, 6], + [0, -1144, -1146, -1149, -1127, -2518], + [0, -1000, -1958, -8428, -3973, -8429, -8430, -8431, -8432], + [1, 3, 3431], + [0, 3432, 3433, 7, 4], + [0, -8433, -8434, -5124, -4025, -5129, -1427], + [0, -7037, -4034, -668, -1361], + [1, 3, 3435], + [0, 0, 3436, 3437, 4], + [0, -2832, -3037, -8200, -3665, -932, -8435, -1763, -8436, -2269, -2378, -2410, -2469], + [0, -2410, -8437, -507, -3694, -2414, -4004, -3634], + [1, 3, 3439], + [0, 3440, 3441, 203, 4], + [ + 0, -1983, -828, -990, -1801, -2178, -2453, -812, -1072, -743, -3122, -459, -2401, -1840, -2255, -907, -1641, + -5148, -617, -929, -1335, -1800, -737, -1045, -1997, -2187, -746, -8438, -736 + ], + [0, -888, -1296, -1788, -465, -1654, -2457, -932, -1610, -1676, -2293, -733, -744, -745, -1010, -1635, -8439], + [1, 3, 3443], + [0, 3444, 3445, 203, 4], + [ + 0, -459, -8440, -617, -736, -737, -743, -746, -812, -828, -907, -929, -990, -1045, -1072, -1335, -8438, -1636, + -1800, -1840, -1851, -5148, -1983, -1997, -2155, -2178, -2187, -8441, -2255, -2401, -2445, -2453 + ], + [0, -465, -733, -744, -745, -888, -932, -1010, -1296, -1610, -1635, -1654, -1676, -1788, -8439, -2293, -2457], + [1, 3, 3447], + [0, 3448, 3449, 3450, 6], + [0, -23, -25, -46, -8245, -1851], + [0, -3136, -932, -1415], + [0, -4847, -1004, -1446, -4100, -3696, -8442, -856, -2305, -5886, -3262, -3960, -8443, -8444, -8445], + [1, 3, 3452], + [0, 3453, 3454, 3455, 4], + [0, -888, -1650, -719, -1645, -6123], + [0, -1654, -932, -2125, -2418, -2293, -2369, -966, -958, -968, -943, -974, -2450], + [0, -1004, -3161, -6125, -3578, -3691, -5728, -3122, -3994, -3690], + [1, 3, 3457], + [0, 3458, 3459, 3460, 5], + [0, -1107, -1119, -1276], + [0, -190, -3470, -7040, -3471, -3472, -7041, -7042, -3136, -3037, -932, -1110, -1417, -2174, -2375, -2410, -2411], + [0, -1004, -8446, -1276, -6107, -3999, -8447, -3261], + [1, 3, 3462], + [0, 3463, 3464, 3465, 5], + [0, -1465, -8448, -3850], + [0, -1654, -932, -1004, -2379, -1942, -2410, -3621, -3617, -739, -428, -427], + [0, -6120, -8449, -3173, -8450, -6121, -1334, -3175, -8451, -1791, -1004], + [1, 3, 3467], + [0, 3468, 3469, 7, 5], + [0, -743, -746, -812, -828, -6825, -1840, -2155, -2418], + [0, -465, -744, -932, -963, -1004, -1654, -1788, -2293], + [1, 3, 3471], + [0, 3472, 3473, 3474, 5], + [0, -469, -668, -719, -724, -754, -865, -1004, -1435, -2127, -2132, -2410, -2564], + [0, -190, -3732, -4198, -3617, -3037, -427, -428, -932, -966, -1110, -1753, -1942, -2125, -2379, -2383, -2411], + [0, -3690, -3445, -6491, -3113, -6129, -1004, -8452, -3161, -8453, -5545, -3844, -3926], + [1, 3, 3476], + [0, 0, 3477, 3478, 5], + [0, -652, -8454, -2210, -932, -1004, -2379, -8455, -2410, -3037, -4372, -3617, -428, -427], + [ + 0, -8456, -8457, -4055, -2410, -3690, -1334, -1004, -8458, -8459, -2410, -5401, -8038, -8460, -8461, -8462, + -8463, -8464, -4140, -4601, -3445, -8465, -8466, -2006, -8467, -8468, -8469 + ], + [1, 3, 3480], + [0, 3481, 3482, 3483, 4], + [0, -1548, -2451], + [0, -2685, -8470, -8471, -3136, -3044, -427, -428, -932, -940, -958, -967, -1415, -1942, -2375, -2410], + [0, -1004, -2451, -3926, -5874, -7723, -8472, -2544], + [1, 3, 3485], + [0, 3486, 3487, 3488, 5], + [0, -483, -1736, -8473, -1993, -8474], + [ + 0, -3732, -4198, -8475, -3617, -4199, -8476, -8477, -4625, -8478, -724, -754, -828, -1004, -4206, -1335, -1730, + -8479, -2410, -2426, -2564, -8480 + ], + [ + 0, -3967, -3690, -1334, -5401, -856, -4055, -1004, -2410, -4058, -3844, -8481, -4847, -8482, -3438, -8483, + -8484, -8485, -8486, -2564, -3926 + ], + [1, 3, 3490], + [0, 0, 3491, 3492, 8], + [0, -5834, -8487, -932, -1445, -2322], + [0, -1015, -702, -1631], + [1, 3, 3494], + [0, 3495, 3496, 3497, 8], + [0, -8488, -8489], + [0, -8490, -8491, -8492, -1202, -1396, -8493, -1646, -1654, -1792], + [ + 0, -7370, -702, -1015, -1631, -7369, -7208, -1792, -1797, -7375, -3589, -7153, -8494, -8495, -2444, -3590, + -5260, -5846 + ], + [1, 3, 3499], + [0, 3500, 3501, 7, 5], + [0, -510, -1543, -2168, -2510], + [ + 0, -526, -533, -551, -556, -558, -767, -778, -825, -932, -6929, -958, -1041, -1415, -1534, -1780, -1939, -2000, + -2251, -2275, -2501, -8496 + ], + [1, 3, 3503], + [0, 3504, 3505, 3506, 10], + [0, -812, -1100, -2555, -8497], + [0, -427, -428, -519, -932, -943, -950, -958, -966, -968, -974, -1077, -1344, -1534, -1788, -2384, -2410], + [0, -2432, -5408, -7347], + [1, 3, 3508], + [0, 0, 3509, 7, 9], + [ + 0, -1788, -1168, -1446, -1654, -2210, -932, -1548, -1813, -2347, -756, -633, -2915, -1243, -1262, -1534, -2778, + -2461, -1204, -8498, -8499, -2463 + ], + [1, 3, 3511], + [0, 3512, 3513, 3514, 4], + [0, -8500], + [0, -932, -937, -966, -1001, -1654, -1788, -8501, -2210], + [0, -8502, -1573, -3444, -5545, -3240, -8503], + [1, 3, 3516], + [0, 3517, 3518, 3519, 4], + [0, -8504], + [0, -262, -3037, -767, -1107, -8342, -2104, -2402, -2410, -2469, -8505, -8506, -1023], + [0, -8507, -8508, -5858, -3634, -8509, -8510, -8511, -1021, -8512, -8513, -1415], + [1, 3, 3521], + [0, 3522, 0, 3523, 8], + [0, -8514, -8515], + [0, -788, -3215, -5922, -8516, -8517, -8518], + [1, 3, 3525], + [0, 0, 3526, 3527, 4], + [0, -756, -864, -932, -1654, -1788, -1939, -2006, -2052, -2210, -2410], + [0, -5922, -6439, -821], + [1, 3, 3529], + [0, 3530, 3531, 204, 4], + [0, -8519, -8520, -1108, -5615, -1639], + [ + 0, -8521, -6927, -8522, -4036, -3621, -3037, -8523, -4372, -8524, -932, -8525, -999, -1026, -4787, -1107, -8526, + -1654, -2125, -2210, -8527, -2410 + ], + [1, 3, 3533], + [0, 0, 3534, 7, 5], + [0, -3621, -3037, -1654, -2165, -2410], + [1, 3, 3536], + [0, 3537, 3538, 3539, 11], + [0, -8529], + [0, -23, -38, -40, -43, -3037, -534, -652, -932, -1297, -1412, -1942, -1973, -2410, -2501, -2503], + [0, -5922, -6597, -4055, -3215, -2536, -6841, -2537, -3756, -2451, -5874, -8530, -507, -8531, -8532, -3264], + [1, 3, 3541], + [0, 0, 0, 3542, 10], + [0, -1029, -3162, -2363, -2319, -8533, -826], + [1, 3, 3544], + [0, 3545, 3546, 3547, 4], + [0, -8534, -8535, -8536, -8537, -8538, -8539, -8540, -8541, -8542, -1867, -8543, -2124, -8544, -2177, -8545], + [ + 0, -8546, -3902, -357, -3748, -5029, -3037, -469, -3907, -470, -8547, -8548, -8549, -2917, -8550, -726, -767, + -932, -8551, -4848, -8552, -8553, -1335, -1435, -5265, -1464, -8554, -2884, -1730, -1972, -2240, -2384, -2410, + -2426, -2453, -3612 + ], + [0, -3578, -3161, -4055, -4058, -1805, -3690], + [1, 3, 3549], + [0, 3550, 3551, 7, 5], + [ + 0, -262, -8555, -5335, -8556, -8557, -5336, -5337, -8558, -8559, -536, -541, -8560, -8561, -909, -928, -1026, + -5344, -8562, -1645, -8563, -2383, -2410, -8564 + ], + [ + 0, -86, -3307, -367, -3136, -8565, -8566, -3037, -6025, -5367, -1344, -1415, -3640, -1534, -1942, -1944, -1945, + -2125, -2379, -2392, -5369 + ], + [1, 3, 3553], + [0, 3554, 3555, 3556, 10], + [ + 0, -8567, -8568, -8569, -8570, -8571, -6369, -883, -1646, -8255, -2062, -8032, -2243, -8572, -8057, -8573, + -2322, -2347 + ], + [0, -5834, -515, -516, -932, -1365, -1777, -2156], + [0, -2319, -8574, -4004, -8575, -8576, -3240], + [1, 3, 3558], + [0, 3559, 3560, 7, 5], + [0, -768, -8577, -1580, -1792, -1961, -8578, -2594], + [0, -23, -824, -1059, -1168, -1174, -1201, -1243, -1361, -1417, -1632], + [1, 3, 3562], + [0, 28, 3563, 3564, 9], + [0, -21, -23, -40, -41, -3470, -3471, -8579, -5859, -8580, -553, -796, -932, -933, -1534, -1650, -2174], + [ + 0, -8581, -8582, -8583, -8584, -3098, -8585, -3100, -3482, -2006, -8586, -8587, -5066, -3578, -8588, -8589, + -8590, -8591, -8592, -8593, -8594, -8595, -8596, -8597, -8598, -8599, -8600, -8601, -8602, -8603, -8604, -8605 + ], + [1, 3, 3566], + [0, 39, 3567, 3568, 4], + [ + 0, -21, -23, -38, -40, -41, -42, -3326, -350, -351, -3267, -407, -409, -2622, -3136, -3040, -3052, -427, -428, + -708, -726, -767, -932, -934, -940, -7476, -958, -959, -969, -970, -1415, -2006, -2019, -2082, -2127, -2140, + -2375, -2387, -2410 + ], + [0, -8606, -3100, -8607, -2074], + [1, 3, 3570], + [0, 3571, 0, 3572, 8], + [0, -8608, -8609, -8610, -5140], + [0, -4213, -1334, -4215, -3634, -4216, -8611], + [1, 3, 3574], + [0, 3575, 0, 3576, 10], + [0, -8612], + [0, -8613, -1038, -6768, -8614, -510, -5921, -8615, -6309, -1961], + [1, 3, 3578], + [0, 75, 3579, 3580, 4], + [0, -3037, -3665, -510, -1344, -1534, -2410, -2466, -6859, -2469], + [0, -1039, -4111, -8616, -8617, -5514], + [1, 3, 3582], + [0, 3583, 14, 3584, 9], + [0, -6861], + [0, -4112, -687, -7095, -3958, -8132, -8618, -8619, -8620, -1040, -8621], + [1, 3, 3586], + [0, 205, 3587, 48, 4], + [ + 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -767, -824, -825, -932, -940, -958, -1344, -1415, -1534, + -1623, -1771, -1942, -2251, -2437, -2501 + ], + [1, 3, 3589], + [0, 0, 3590, 3591, 8], + [0, -21, -23, -4691, -3356], + [0, -8622, -8623, -8624], + [1, 3, 3593], + [0, 3594, 3595, 3596, 4], + [0, -8625, -8626, -8627, -8628], + [0, -8629, -3037, -519, -8630, -1100, -8631, -2384, -2541], + [ + 0, -1640, -6656, -8038, -8632, -5409, -6527, -5094, -8633, -8634, -6855, -8635, -8636, -6659, -7440, -1391, + -8637, -8638, -8639, -7863, -7304, -640, -6438, -8640, -7715, -8641, -8642, -5315, -8643, -8644, -8645, -8646, + -8647, -8648, -8649, -8650, -8651, -1992, -8652, -8653, -8654, -8655, -8656, -8657, -5408, -2323, -8658, -8659, + -7345, -8660, -7860, -8661, -8662, -8663, -8664, -8665, -8666, -8667, -8668, -8669, -8670, -8671, -8672, -8673, + -8674, -8675, -6528, -8676, -8677, -5953, -8678, -8679, -8680, -8681, -8682, -8683, -8684, -8685, -8686, -8687, + -8688, -3742, -8689, -8690, -8691, -8692, -8693, -8694, -8695, -8696, -8697, -8698, -8699, -8700, -8701, -8702, + -8703, -8704, -2534, -8705, -8706, -8707, -8708, -8709, -8710, -8711, -8712, -8713, -8714, -6597, -8715, -8716, + -4771, -8717, -8718, -8719, -6042, -8720, -8721, -8722, -8723, -8724, -8725, -8726, -8727, -8728, -8729, -8730, + -8731, -8732, -8733, -8734, -8735, -8736, -8737, -8738, -8739, -8740, -8741, -8742, -8743, -8744, -8745, -8746, + -8747, -8748, -8749, -8750, -8751, -8752, -8753, -5316, -8754, -8755, -8756, -8757, -7557, -8758, -8759, -8760, + -8761, -8762, -8763, -8764, -8765, -8766, -7711, -8767, -8768, -8769, -8770, -8771, -8772, -8773, -8774, -8775, + -8776, -8777, -8778, -8779, -8780, -8781, -8782, -8783, -8784, -8785, -8786, -8787, -8788, -8789, -8790, -8791, + -8792, -8793, -6695, -8794, -8795, -8796, -7349, -8797, -8798 + ], + [1, 3, 3598], + [0, 0, 3599, 3600, 9], + [0, -3266, -516, -652, -932, -1344, -1654, -2127], + [0, -6656, -1044, -8799, -8800, -8801, -651, -834], + [1, 3, 3602], + [0, 3603, 81, 7, 6], + [0, -812, -907, -929, -1800, -1840, -2255], + [1, 3, 3605], + [0, 3606, 3607, 3608, 5], + [0, -1871, -5907], + [0, -2541, -519, -824, -2384, -2331], + [0, -3324, -7421, -6491, -5573, -7282], + [1, 3, 3610], + [0, 3611, 3612, 3613, 4], + [0, -8802, -8803], + [0, -519, -7408, -2331, -2384, -2541], + [ + 0, -5573, -8804, -1047, -5504, -8805, -8806, -6656, -7282, -5572, -5897, -2114, -8807, -6370, -7420, -7421, + -2487, -8808, -1847 + ], + [1, 3, 3615], + [0, 3616, 3617, 3618, 4], + [0, -8809, -1393, -1639, -8810], + [0, -932, -937, -966, -1001, -8811, -1654, -1759, -1788, -2114], + [0, -6656, -5573, -1047, -5504, -1107, -5572, -5574, -2114, -7282], + [1, 3, 3620], + [0, 3621, 3622, 3623, 4], + [ + 0, -8812, -8813, -8814, -8815, -8816, -8817, -8818, -8819, -8820, -8821, -8822, -8823, -8824, -8825, -8826, + -8827, -8828, -8829, -8830, -8831, -8832, -8833, -8834, -8835, -8836, -8837, -8838, -8839 + ], + [0, -1168, -2127, -2410, -1244, -1252, -2143, -3266, -2134, -350, -2139, -2142, -351], + [0, -3173, -7685, -8840, -1050, -8841, -6005, -6187, -8842], + [1, 3, 3625], + [0, 3626, 3627, 3628, 10], + [0, -8843, -8831, -8844, -3037, -8845, -1025, -8846, -1465, -8847, -1730, -2446], + [ + 0, -8848, -8824, -8825, -8849, -262, -8850, -3035, -4269, -8851, -3850, -3044, -5686, -3621, -4624, -8852, + -8853, -4372, -3625, -3738, -427, -428, -581, -664, -665, -3629, -668, -677, -824, -932, -8854, -1168, -1199, + -1208, -1261, -8855, -1548, -1646, -1654, -1693, -1722, -1771, -1788, -2105, -2106, -2150, -2210, -2211, -2379, + -2410, -2550 + ], + [0, -8856, -7685, -8840, -8841, -3173], + [1, 3, 3630], + [0, 3631, 0, 3632, 10], + [ + 0, -8857, -8858, -8859, -8860, -8861, -8862, -4106, -8863, -458, -469, -470, -501, -8864, -617, -679, -8865, + -695, -713, -719, -728, -754, -767, -769, -790, -8866, -8867, -8868, -1004, -1044, -1069, -1077, -1087, -8869, + -1107, -8846, -1353, -1442, -1465, -1526, -8870, -1548, -8871, -1610, -6294, -1640, -1645, -1676, -1729, -1805, + -1816, -3447, -1857, -8872, -8873, -1888, -1959, -8874, -2122, -2177, -8875, -8876, -8877, -8878, -4356, -2359, + -8879, -8880, -8881, -2446, -2520, -2522, -2531, -2548, -2564, -8882 + ], + [0, -8883, -687, -8884, -5801, -8885, -1050, -8841, -6224, -8886], + [1, 3, 3634], + [0, 3635, 86, 3636, 9], + [0, -8887, -668, -831, -8888, -8889, -2001], + [0, -7416, -5897], + [1, 3, 3638], + [0, 3639, 3640, 7, 5], + [0, -3048, -8566, -8890, -1077, -8891, -2488], + [0, -3037, -2125, -2319, -2410], + [1, 3, 3642], + [0, 0, 86, 3643, 5], + [0, -1055, -4055, -5841, -8892, -2239, -7208, -8893], + [1, 3, 3645], + [0, 3646, 206, 3647, 5], + [0, -812, -926, -1077, -1548, -2359], + [0, -7871], + [1, 3, 3649], + [0, 0, 3650, 3651, 4], + [ + 0, -23, -36, -6064, -40, -8894, -3048, -3036, -3136, -4964, -3037, -8336, -551, -679, -756, -1077, -1107, -1415, + -1942, -2125, -2127, -2128, -8895, -8896, -2141, -2334, -2375, -2379, -2387, -2410 + ], + [0, -3214, -4224, -4120, -4121, -4123, -4122, -8897], + [1, 3, 3653], + [0, 3654, 3655, 3656, 9], + [0, -8898, -668, -1038, -1381, -1531, -1758, -6467, -1965, -2177, -2246, -8899, -6007], + [0, -664, -756, -932, -1405, -8900, -1654, -1939, -1972, -2210], + [0, -8901, -8902, -8903, -8904, -8421, -5550, -6836, -8905, -8906, -5921, -8907, -8908, -8427, -5801, -8909], + [1, 3, 3658], + [0, 0, 0, 3659, 4], + [0, -5732, -687, -8425, -7304, -5411, -4038, -8038, -8910, -7440, -7144, -3214, -3756, -8911], + [1, 3, 3661], + [0, 3662, 3663, 3664, 11], + [0, -2997, -8912, -8913, -1889, -2318], + [ + 0, -23, -40, -3559, -8914, -8915, -427, -428, -518, -534, -749, -753, -767, -778, -779, -784, -932, -940, -967, + -8916, -1041, -8917, -1643, -1771, -1942, -8918, -4245, -2200, -2233, -2275, -2335, -2376, -2410, -2501, -2503, + -2505, -8919, -2552 + ], + [ + 0, -1060, -2410, -3214, -2501, -3264, -775, -5511, -8920, -2316, -7287, -8921, -8922, -8923, -8924, -7287, + -8925, -7288, -7289, -8926, -7294, -8927, -8928, -7297, -7293, -7292, -7296, -8929, -932, -1942, -8930, -985, + -8931 + ], + [1, 3, 3666], + [0, 3667, 3668, 3669, 4], + [0, -510, -2518], + [0, -1788, -1446, -1654, -2198], + [0, -8932], + [1, 3, 3671], + [0, 3672, 3673, 3674, 4], + [0, -8933, -1033], + [ + 0, -23, -534, -7747, -824, -1168, -1174, -1201, -1208, -1243, -1266, -1361, -1415, -1419, -1792, -2006, -8934, + -2019, -2463, -2501, -7752 + ], + [0, -1062, -2006, -4038, -8935], + [1, 3, 3676], + [0, 0, 3677, 3678, 4], + [0, -725, -932, -1004, -8936, -1654, -1788], + [0, -1334, -1342, -2435, -8937, -3323, -8938, -3590], + [1, 3, 3680], + [0, 0, 0, 3681, 9], + [0, -3827, -3837, -3838, -3167, -3827, -620], + [1, 3, 3683], + [0, 3684, 3685, 7, 11], + [0, -8050], + [0, -2832, -5834, -8084, -8939, -8096, -516, -932, -1777, -1788, -2322], + [1, 3, 3687], + [0, 3688, 3689, 3690, 11], + [0, -510, -8940, -702, -8941, -714, -1650, -2520, -8942, -8943, -1953, -728, -995, -1792, -8944], + [0, -664, -2471, -1654, -932, -1666, -8945, -2105, -1942, -8946, -940, -967], + [0, -687, -8947, -8948, -3674], + [1, 3, 3692], + [0, 3693, 3694, 3695, 8], + [0, -22, -668, -679, -755, -823, -1077, -1623, -1645, -8949, -2168, -2177, -2321], + [ + 0, -3307, -7040, -3842, -3472, -7041, -7042, -8355, -7080, -3048, -3136, -4049, -8566, -3637, -3037, -8890, + -3199, -427, -428, -721, -767, -932, -958, -966, -967, -4650, -1344, -1415, -8950, -1421, -1456, -8951, -1534, + -1658, -1942, -2125, -2174, -2269, -2375, -2410, -2501 + ], + [0, -2501, -3862, -2410, -8952, -2376, -2501, -8423, -5922], + [1, 3, 3697], + [0, 3698, 3699, 3700, 5], + [0, -6008, -668, -679, -1548, -1639, -1645, -2114, -2321], + [ + 0, -8953, -7202, -3044, -4036, -8566, -3037, -3200, -3046, -664, -778, -932, -1344, -1405, -1534, -1654, -1658, + -1660, -1942, -2125, -2210, -2376, -2388, -2389, -2410, -2476, -2477, -2481, -2485, -2501 + ], + [0, -2501, -3862, -2410, -8038, -7144, -8170, -8423, -5922, -6188, -2376, -520, -8954, -7172], + [1, 3, 3702], + [0, 3703, 3704, 7, 6], + [0, -8955, -8956, -8957, -1285, -1641], + [ + 0, -5834, -516, -633, -8958, -756, -769, -932, -8959, -8960, -1070, -1365, -8961, -1405, -8962, -8963, -6058, + -1939, -1978, -2105, -2125, -2177, -2322 + ], + [1, 3, 3706], + [0, 3707, 3708, 3709, 4], + [0, -1801, -8964, -8965], + [ + 0, -1501, -1788, -1415, -932, -2127, -1004, -1942, -2293, -8966, -958, -3234, -940, -967, -350, -8967, -934, + -351, -8968 + ], + [0, -6463, -4053, -6582, -1985, -8969, -4055, -8970, -6656], + [1, 3, 3711], + [0, 3712, 3713, 3714, 9], + [0, -5220, -823, -1311, -1548, -1549, -2798, -8971, -2387], + [0, -409, -3044, -3040, -3052, -4972, -8972, -2006, -2019, -8973, -2410, -3612], + [0, -1071, -4053, -4054, -2006, -2019, -3322, -8974, -3926, -8975, -3926, -8976, -8977], + [1, 3, 3716], + [0, 0, 3717, 3718, 6], + [0, -1654, -932, -1405, -589, -585, -966, -958, -968, -943, -963, -974], + [0, -1072, -1334, -8978, -3324], + [1, 3, 3720], + [0, 3721, 3722, 3723, 4], + [0, -668, -3606, -2267], + [0, -527, -528, -534, -545, -560, -932, -949, -1001, -1415, -1626, -2501], + [0, -8979, -8980, -2501, -3862], + [1, 3, 3725], + [0, 3726, 3727, 3728, 4], + [0, -1442], + [0, -627, -8981, -756, -1405, -2250, -2322, -2568], + [0, -2548, -8982, -8983], + [1, 3, 3730], + [0, 3731, 3732, 3733, 8], + [0, -1119, -1462, -8984], + [0, -8985, -5726, -1646, -1654, -1788, -1972, -8986, -2250], + [ + 0, -1076, -6656, -8801, -6351, -7421, -8987, -1650, -8988, -8989, -7371, -4055, -2059, -6234, -8987, -6693, + -6694, -2363, -8990, -5554, -8991, -6932, -1961 + ], + [1, 3, 3735], + [0, 124, 3736, 3737, 4], + [0, -3035, -3048, -3621, -3037, -664, -1077, -1405, -1654, -1788, -1942, -1948, -8992, -2379, -2410], + [0, -1076, -8801], + [1, 3, 3739], + [0, 3740, 3741, 3742, 4], + [0, -8993, -1077, -1693, -8994], + [0, -3048, -3623, -1654, -925, -2148, -615, -2517, -1980], + [0, -1961, -1076, -6656, -8801], + [1, 3, 3744], + [0, 0, 3745, 3746, 5], + [0, -1733], + [0, -1080, -8995], + [1, 3, 3748], + [0, 3749, 3750, 7, 11], + [0, -1650, -2125, -1370, -1119], + [0, -2319, -2250], + [1, 3, 3752], + [0, 3753, 0, 3754, 8], + [0, -2543, -2062], + [0, -1082, -3323, -6931], + [1, 3, 3756], + [0, 0, 3757, 3758, 5], + [0, -5834, -515, -516, -932, -1788, -2156, -2322], + [0, -5924, -6557, -8108, -6444, -7163, -8996], + [1, 3, 3760], + [0, 0, 3761, 3762, 4], + [ + 0, -21, -23, -32, -36, -3367, -40, -42, -86, -3307, -8997, -3326, -351, -3561, -8998, -8999, -9000, -9001, + -8219, -2716, -2717, -534, -932, -940, -1344, -9002, -1942, -2104, -2127, -2132, -2251, -2334, -2410, -2469, + -2816, -9003 + ], + [0, -1087, -7282, -9004], + [1, 3, 3764], + [0, 0, 3765, 3766, 11], + [0, -3748, -3268, -427, -428, -367, -589, -932, -943, -948, -958, -965, -968, -1344, -2391], + [0, -7314, -3578, -1334, -3844, -9005, -3445, -3161], + [1, 3, 3768], + [0, 0, 0, 3769, 8], + [0, -1087, -7282, -7724, -9006, -9007], + [1, 3, 3771], + [0, 3772, 3773, 3774, 6], + [0, -9008], + [0, -510, -1127, -9009, -1132, -1144, -1146, -2125, -2176], + [0, -2490, -1107], + [1, 3, 3776], + [0, 0, 3777, 7, 6], + [0, -2410, -3037], + [1, 3, 3779], + [0, 3780, 3781, 3782, 5], + [0, -668, -2562, -2523, -2557], + [0, -1127, -1131, -9010, -9011, -1542, -2425, -1144, -1151], + [0, -2557, -3970, -3161, -3095, -3577, -3994, -475], + [1, 3, 3784], + [0, 3785, 3786, 3787, 5], + [0, -668, -2218, -2562, -1548, -9012, -2557, -2425], + [0, -1693, -888, -664, -622, -1654, -2210, -932, -1650, -615, -1405, -719, -2211, -769, -1440, -665, -2070, -1657], + [ + 0, -2557, -475, -1168, -9013, -9014, -620, -478, -9015, -2162, -1521, -3184, -525, -9016, -2410, -711, -1409, + -9017, -2501, -932 + ], + [1, 3, 3789], + [0, 3790, 3791, 3792, 4], + [0, -1116, -1107, -2562, -727, -1548, -689, -9018, -9019, -2557], + [0, -888, -932, -1412, -1077, -9010, -9011, -958, -9020], + [0, -2557, -3970, -3100, -3994, -9021, -3095, -5574, -9022], + [1, 3, 3794], + [0, 0, 3795, 3796, 5], + [0, -3037, -932, -940, -967, -968, -1942, -2319, -2410], + [0, -9023, -9024, -7329], + [1, 3, 3798], + [0, 0, 3799, 3800, 10], + [0, -5325, -3037, -3899, -9025, -1942, -2200, -9026, -2410, -2469], + [0, -5925, -3262, -9027, -9028, -9029, -5112, -6917, -9030], + [1, 3, 3802], + [0, 0, 3803, 7, 11], + [ + 0, -21, -23, -40, -42, -3470, -3471, -7041, -3136, -3037, -427, -428, -9031, -9032, -528, -533, -534, -8167, + -932, -940, -948, -951, -958, -967, -969, -970, -972, -978, -1344, -9033, -1415, -1534, -1942, -2125, -2174, + -9034, -2410, -2501, -2503 + ], + [1, 3, 3805], + [0, 0, 3806, 7, 4], + [0, -9035, -9036, -9037, -9038, -1788], + [1, 3, 3808], + [0, 0, 115, 3809, 5], + [0, -7458, -5573, -9039, -1888, -9040, -9041, -9042, -729, -1805, -5149, -9043, -9044, -6555, -9045, -9046], + [1, 3, 3811], + [0, 0, 3812, 3813, 4], + [0, -3037, -826, -2541], + [0, -9047, -3972, -8428, -9048, -640, -5827, -1958, -2059], + [1, 3, 3815], + [0, 3816, 3817, 3818, 9], + [0, -9049, -1399], + [0, -3037, -519, -9050, -9051, -8877, -2384, -2541], + [0, -9052, -5827, -1961, -9048, -2265, -5554, -640, -2059, -6582, -9053, -8800, -9054, -7208, -9048], + [1, 3, 3820], + [0, 3821, 0, 3822, 4], + [0, -9055], + [0, -1101, -9052, -2410, -9056, -9057], + [1, 3, 3824], + [0, 0, 3825, 3826, 5], + [0, -3037, -427, -428, -7636, -932, -9058, -940, -967, -7638, -9059, -1942, -7639, -2402, -2410, -7640], + [0, -9060, -9061, -9062, -9063, -9064, -9065, -1102, -9066, -9067, -8995, -9068, -3966, -9069, -3694, -2410], + [1, 3, 3828], + [0, 3829, 3830, 3831, 8], + [0, -510, -1111, -1077, -719, -7731, -1046, -9070], + [0, -2359, -664, -1654, -2210, -932, -9071, -9072], + [0, -5889, -1103, -1105], + [1, 3, 3833], + [0, 3834, 3835, 3836, 5], + [0, -5504, -9073, -9074, -9075, -1849, -9076], + [ + 0, -528, -664, -9077, -708, -720, -796, -932, -9078, -951, -958, -964, -1654, -1658, -1788, -1972, -2174, -2210, + -2211, -9079, -2449 + ], + [0, -5889, -3322, -9080], + [1, 3, 3838], + [0, 0, 3839, 3840, 8], + [ + 0, -5870, -40, -9081, -9082, -9083, -4062, -351, -3561, -3266, -4785, -664, -932, -943, -958, -966, -968, -1471, + -1474, -1475, -1476, -1479, -1482, -1483, -1486, -1487, -1489, -7759, -1654, -2127, -3571, -2162, -2210, -2211 + ], + [0, -1105, -5248, -3100, -3095], + [1, 3, 3842], + [0, 3843, 3844, 7, 4], + [0, -1645, -9084, -9085], + [0, -3037, -928, -1623, -1650, -1942, -2125, -2319, -2386, -2402], + [1, 3, 3846], + [0, 3847, 125, 3848, 9], + [0, -1393], + [0, -1107, -8807, -6817, -1847, -9086, -7421, -3956, -9087], + [1, 3, 3850], + [0, 3851, 31, 7, 8], + [0, -9088, -1958], + [1, 3, 3853], + [0, 0, 3854, 3855, 4], + [0, -6593, -519, -674, -959, -1098, -9089, -8345, -1772, -1821, -1978, -2195, -2384, -2400, -2541], + [0, -1110, -1109, -9090, -3591, -3592, -1452, -932, -9091], + [1, 3, 3857], + [0, 3858, 3859, 3860, 8], + [0, -8413, -1026, -1353, -7408, -2218, -8803], + [0, -3037, -519, -589, -9092, -2331, -2384, -2541], + [ + 0, -9093, -5839, -7411, -7727, -6999, -7422, -7724, -5573, -9094, -7410, -1076, -1107, -9095, -9096, -7419, + -5572, -5912, -1645, -6809, -9097, -9098, -5574, -5064, -2368, -2444, -3590, -9087, -9099, -1961, -9100, -5889 + ], + [1, 3, 3862], + [0, 3863, 3864, 3865, 11], + [0, -812, -769, -9101, -9102], + [0, -510], + [0, -6524, -9103, -6527, -9104, -1355, -1112, -5845, -7450, -7378], + [1, 3, 3867], + [0, 3868, 3869, 3870, 4], + [0, -1729, -9105, -2387], + [0, -3037, -4201, -427, -428, -932, -9106, -958, -965, -968, -1942, -2402, -2410], + [ + 0, -9107, -9108, -9109, -9110, -9111, -9112, -3184, -4791, -1113, -9113, -9114, -8909, -9115, -4633, -9116, + -9117, -9118, -9119, -9120, -9121, -9122, -9123, -3445, -9124, -9125, -9126, -9127 + ], + [1, 3, 3872], + [0, 3873, 3874, 3875, 9], + [0, -3517, -9128], + [0, -50, -3037, -427, -428, -2758, -932, -934, -935, -958, -9129, -8846, -1722, -2892, -2410, -9130, -2469], + [0, -9131, -9132, -3939, -9133, -9134, -9135, -9136, -3690, -1115, -9137, -9138, -9139], + [1, 3, 3877], + [0, 3878, 3879, 3880, 8], + [0, -8846, -9140], + [ + 0, -9141, -3621, -9142, -9143, -3037, -9144, -6630, -4364, -4966, -4372, -3628, -9145, -9146, -652, -708, -767, + -999, -8869, -1166, -9147, -1446, -9148, -9149, -9150, -1654, -6455, -1705, -1722, -1783, -1805, -1827, -9151, + -1942, -1972, -2125, -2188, -2210, -2359, -2410, -2551 + ], + [0, -3939, -3690, -9152, -3323, -9153], + [1, 3, 3882], + [0, 3883, 3884, 3885, 5], + [0, -9154, -9155, -9156, -9157, -9158, -9159, -7006, -1495, -9160, -9161, -9162, -2400], + [ + 0, -9163, -5918, -357, -3268, -3617, -3037, -9164, -6279, -8852, -4372, -3626, -519, -523, -589, -615, -617, + -652, -9165, -9166, -9167, -825, -826, -1002, -1004, -1069, -5989, -1100, -1722, -1729, -1763, -1825, -9168, + -1866, -3653, -2062, -2105, -2210, -9169, -2331, -9170, -2364, -2392, -2410, -2541 + ], + [ + 0, -1334, -1342, -5735, -9052, -1116, -2435, -9171, -2105, -5493, -9172, -9173, -4213, -5149, -5150, -6826, + -6828, -9174, -9175, -9176, -9177, -523, -2291, -1729, -9128 + ], + [1, 3, 3887], + [0, 0, 3888, 3889, 4], + [ + 0, -1168, -2218, -2127, -784, -1821, -1889, -9178, -9179, -1783, -1978, -2281, -23, -518, -1930, -1330, -3572, + -40, -9180, -9181, -3326, -3266, -3561, -7189 + ], + [0, -9182, -3100, -4189, -3110], + [1, 3, 3891], + [0, 0, 3892, 3893, 4], + [0, -1362, -1650, -2125, -2319], + [0, -1076, -3551, -9183, -2122, -9184, -1986, -6324, -8980, -9185, -9186, -9187, -9188, -9189, -9190], + [1, 3, 3895], + [0, 0, 0, 3896, 8], + [0, -1122, -9191], + [1, 3, 3898], + [0, 33, 3899, 7, 5], + [0, -3035, -3621, -3037, -664, -1122, -1654, -2125, -2127, -2139, -2234, -9192, -2410], + [1, 3, 3901], + [0, 3902, 0, 7, 9], + [0, -9193, -2387], + [1, 3, 3904], + [0, 3905, 3906, 3907, 8], + [0, -1442, -8493, -9194, -9195], + [0, -9196, -8491, -711, -9197, -1016, -1075, -1202, -1646, -1654, -2362, -2460, -6234], + [ + 0, -9198, -9199, -710, -6582, -3671, -856, -7347, -9200, -9201, -1075, -9202, -3960, -3262, -1103, -5539, -3214, + -3259, -3756, -4182, -1599, -9203, -1838, -3215, -6747, -9204, -5142, -3110, -2362, -2548, -3672 + ], + [1, 3, 3909], + [0, 3910, 3911, 7, 9], + [0, -9205, -9206, -1551, -9073, -1696, -1969], + [0, -617, -9207, -1004, -9208, -1405, -1548, -1646, -1730, -9209], + [1, 3, 3913], + [0, 3914, 3915, 3916, 11], + [0, -1000, -1107, -1758, -1442, -1132, -1645, -808, -1351, -1048, -995, -9210, -9211, -9212], + [0, -9213, -2347, -9214, -1152, -9215, -1149, -1146], + [ + 0, -4107, -510, -687, -1644, -9216, -7641, -1548, -5119, -4004, -1989, -1754, -3844, -9217, -3970, -9218, -1410, + -3673 + ], + [1, 3, 3918], + [0, 3919, 3920, 3921, 5], + [0, -1323], + [0, -1127, -1132, -1140, -1134, -1136, -1144, -1146, -1148, -1165, -1138], + [0, -9219, -475, -3110, -3261, -9048], + [1, 3, 3923], + [0, 0, 3924, 49, 4], + [0, -1127, -1159, -1131, -1163, -664], + [1, 3, 3926], + [0, 3927, 3928, 3929, 9], + [0, -510, -633, -9220, -1107, -1548, -2114, -2491], + [0, -1127, -1132, -1134, -1144, -1654, -2210], + [0, -9219, -633, -1127], + [1, 3, 3931], + [0, 3932, 3933, 49, 6], + [0, -2177], + [0, -1127, -1129, -1134, -1144, -1146, -1150, -1159, -1542], + [1, 3, 3935], + [0, 3936, 207, 7, 4], + [0, -1758, -9221, -6007, -1381, -9212], + [1, 3, 3938], + [0, 3939, 3940, 3941, 5], + [0, -510, -506, -9222, -1366], + [0, -2541, -1127, -1753, -1132, -769, -1849, -9223, -2297, -1163, -1134, -1149], + [0, -9219, -5920, -5921, -9224, -7175, -6188, -9225, -6187, -5922, -9226], + [1, 3, 3943], + [0, 208, 3944, 3945, 10], + [0, -1127, -9071, -1144, -1143, -1146], + [0, -9219, -6688, -7416, -6694, -6693, -824, -6695, -7417, -2125], + [1, 3, 3947], + [0, 3948, 3949, 3950, 8], + [0, -510, -9227, -805, -9050, -2359, -2518], + [0, -1127, -1132, -1134, -1143, -1144, -1146, -1162], + [0, -9219, -9228, -3754, -2162, -775, -7644, -3277, -5553], + [1, 3, 3952], + [0, 3953, 126, 49, 4], + [0, -668, -2231], + [1, 3, 3955], + [0, 3956, 3957, 3958, 4], + [0, -1805, -510, -1676, -729, -5763, -2186, -2187, -7006, -9229], + [0, -1127, -1144, -1143, -1146], + [0, -9219, -3844, -729, -1334], + [1, 3, 3960], + [0, 3961, 3962, 49, 4], + [0, -668, -9230], + [0, -1127, -1132, -1134, -1143, -1144, -1146], + [1, 3, 3964], + [0, 3965, 127, 3966, 5], + [0, -668, -9231, -1548, -2271], + [0, -9219, -775, -7148, -9231], + [1, 3, 3968], + [0, 3969, 127, 3970, 8], + [0, -668, -683, -9232], + [0, -9219, -9233, -775, -5553, -3770, -3271, -1644, -6454], + [1, 3, 3972], + [0, 3973, 126, 3974, 4], + [0, -668, -1948, -1323], + [0, -9219, -3264, -9234, -1644, -6454, -7175], + [1, 3, 3976], + [0, 3977, 3978, 3979, 8], + [0, -668, -1356, -1826, -1877, -1948, -7691, -7692, -7690, -7687], + [0, -519, -825, -1127, -2541], + [0, -9219, -6454, -8642, -6527, -5094, -9235, -8640, -1644, -7715, -3839], + [1, 3, 3981], + [0, 3982, 207, 7, 5], + [0, -7446], + [1, 3, 3984], + [0, 3985, 3986, 49, 8], + [0, -668, -9236, -1452], + [0, -1127, -1143, -1146], + [1, 3, 3988], + [0, 3989, 3990, 49, 6], + [0, -1521, -510, -668, -1548], + [0, -1127, -1134, -1144, -9237, -1143, -1146], + [1, 3, 3992], + [0, 3993, 3994, 3995, 6], + [0, -9238], + [0, -1127, -1134, -1143, -1144, -2319], + [0, -9219, -1754, -4004, -4043], + [1, 3, 3997], + [0, 3998, 127, 3999, 8], + [0, -510, -668, -769, -805, -2518], + [0, -9219, -3754, -2162, -775, -7644, -3277, -5553], + [1, 3, 4001], + [0, 4002, 126, 49, 4], + [0, -668, -9232, -9239, -2416], + [1, 3, 4004], + [0, 4005, 4006, 4007, 6], + [0, -1088, -510, -1548, -2353], + [0, -1127, -1132, -1153, -2425, -1144, -1143, -1146], + [0, -9219, -2490, -1540], + [1, 3, 4009], + [0, 4010, 4011, 4012, 4], + [0, -668, -725, -739, -1877, -1980], + [0, -1127, -1131, -1132, -1134, -1138, -1144, -1146, -1151, -9240, -9241, -1153, -1159, -1542], + [0, -1127, -9219, -739, -6908, -5887, -1573], + [1, 3, 4014], + [0, 4015, 4016, 4017, 10], + [0, -668, -6019, -1877], + [0, -1127, -1131, -1132, -1134, -1144, -1146, -9240, -9242, -9241, -1153, -1159, -1542], + [0, -1127, -9219, -6019, -1105, -9243, -9244, -9245, -739, -6908, -5887, -1573], + [1, 3, 4019], + [0, 4020, 4021, 4022, 5], + [0, -668, -932], + [0, -190, -1127, -1132, -1162], + [0, -9219, -932, -7148, -5874, -9246], + [1, 3, 4024], + [0, 4025, 4026, 4027, 4], + [0, -9236, -1445, -1548, -9247], + [0, -1127, -1144, -1146, -1542, -2351], + [0, -9219, -1445, -8172, -7144], + [1, 3, 4029], + [0, 4030, 4031, 4032, 8], + [0, -769, -1446], + [0, -1127, -1134, -1146, -1152, -2778, -1542], + [0, -9219, -1127, -856, -4100, -1446, -7674], + [1, 3, 4034], + [0, 34, 4035, 4036, 11], + [ + 0, -86, -9248, -3307, -3470, -3471, -7041, -932, -943, -958, -966, -968, -974, -1003, -1127, -1131, -1149, + -1150, -1151, -1152, -1159, -1344, -1471, -1475, -1479, -1482, -1542, -1654, -2174 + ], + [0, -9219, -1471, -1127, -4004, -5119, -4043, -9249], + [1, 3, 4038], + [0, 4039, 4040, 209, 10], + [0, -9236, -1650], + [0, -664, -710, -1127, -1132, -9250, -1134, -1138, -1144, -9240, -9251, -9241, -9252, -1654, -2125], + [1, 3, 4042], + [0, 208, 4043, 4044, 10], + [0, -664, -1127, -9253, -1132, -1134, -1144, -1149, -1658, -2359, -2529], + [0, -6999, -1127, -9219, -9254], + [1, 3, 4046], + [0, 4047, 4048, 4049, 11], + [0, -2177, -9255, -2518], + [0, -664, -1132, -1144, -1149, -1156, -9256, -9257, -1542, -1654, -1972, -2351], + [0, -9219, -4127, -9258, -6721, -9259, -9260, -9261, -9262, -6324, -2489, -5886], + [1, 3, 4051], + [0, 0, 4052, 7, 10], + [0, -1127, -1131], + [1, 3, 4054], + [0, 0, 4055, 4056, 5], + [0, -1127, -1132, -1134, -1146, -2162, -2541], + [0, -9219, -775, -2162, -3754, -5553, -7644, -9263, -9264], + [1, 3, 4058], + [0, 4059, 4060, 4061, 4], + [0, -714, -1548, -1980, -9265, -9266, -5471], + [0, -1127, -1137, -1144, -1149, -1153, -9267, -1541, -1631, -8403], + [0, -9219, -1127, -5471, -4004, -1412, -1654, -1989, -9268], + [1, 3, 4063], + [0, 4064, 210, 4065, 11], + [0, -668, -1773, -2269], + [0, -9219, -5550, -3957, -7095, -8421, -7091, -6599, -1958, -687], + [1, 3, 4067], + [0, 27, 4068, 209, 9], + [0, -1127, -1144, -1654], + [1, 3, 4070], + [0, 4071, 4072, 4073, 11], + [0, -510, -9269, -9270, -2424, -9271], + [0, -932, -9272, -9273, -9274, -9275, -9276, -9277, -1127, -1132, -1157, -1654, -2125, -2194], + [0, -1127, -9219, -9278, -6527, -9279, -775, -9270, -7085], + [1, 3, 4075], + [0, 4076, 4077, 4078, 4], + [0, -668, -812, -1548, -1849], + [0, -1127, -1650, -2125, -1132, -1153, -9280, -1144], + [0, -9219, -9281, -3976, -3264, -775, -7175], + [1, 3, 4080], + [0, 4081, 4082, 4083, 5], + [0, -190, -427, -428, -668, -932, -940, -965, -967, -999, -1376, -1460, -1630, -1705, -1942, -2411, -2530], + [ + 0, -9282, -7080, -3330, -3048, -3049, -9283, -3621, -9143, -3037, -4372, -3628, -9284, -652, -769, -1077, -9285, + -9147, -1654, -2210, -2359, -2410 + ], + [0, -2410, -8170, -4144, -3939], + [1, 3, 4085], + [0, 0, 4086, 4087, 5], + [0, -9286, -4010, -367, -7043, -9287, -3136, -3037, -8477, -4203, -932, -1415, -1730, -1942, -2125, -2293, -2410], + [0, -1167, -3578, -3161, -3967, -1334, -3690, -3445], + [1, 3, 4089], + [0, 4090, 4091, 4092, 6], + [0, -9288, -9179, -9289, -2462], + [0, -932, -937, -966, -1001, -1650, -1654, -1788, -2125], + [0, -7641, -5827, -4219, -9218, -3673, -6342, -9290, -9291, -5921, -9292], + [1, 3, 4094], + [0, 4095, 72, 4096, 4], + [0, -1187, -9293, -1208, -1451, -1570, -1597, -8390, -2347], + [0, -7841, -1168, -475, -5175, -3501, -9294, -9295], + [1, 3, 4098], + [0, 4099, 4100, 4101, 4], + [0, -7850, -305, -994, -1199, -1243, -9296, -1267, -1650, -1875, -1959, -7881, -2125, -2177, -2330, -2460, -2462], + [0, -1178, -1654], + [0, -7841, -9297, -5550, -9298, -891, -1105], + [1, 3, 4103], + [0, 4104, 4105, 4106, 4], + [0, -518, -1236, -1889, -2464], + [0, -519, -1252, -1825, -2460, -2541], + [0, -7841, -518, -1889, -775, -5899, -9299, -3271, -9263, -9300], + [1, 3, 4108], + [0, 4109, 4110, 4111, 4], + [0, -3698, -479, -671, -1022, -9301, -1641, -1876, -2460], + [0, -664, -9302, -932, -1168, -1243, -1654, -1942], + [0, -7841, -5817, -5940, -8403], + [1, 3, 4113], + [0, 4114, 0, 4115, 4], + [0, -9303, -9304, -994, -1640, -1959, -1986, -9305, -2460, -2462, -2550], + [0, -7841, -5800, -8624, -6005], + [1, 3, 4117], + [0, 4118, 4119, 4120, 6], + [0, -2347, -2103, -1876, -2464], + [0, -2541, -1654, -2460, -1939, -23, -1252, -3352, -3362, -3373], + [0, -7841, -525, -3186, -4795, -8165, -6434, -9306, -9307, -4132, -9308, -9309, -3214, -3116], + [1, 3, 4122], + [0, 4123, 211, 4124, 5], + [0, -1236], + [0, -7841, -9310, -6472, -7154, -9311, -2443, -9312, -9313, -9314], + [1, 3, 4126], + [0, 4127, 4128, 4129, 4], + [0, -479, -622, -1022, -1376, -1876, -2347, -2460, -2487], + [0, -664, -994, -9315, -1220, -1231, -1452, -1654, -2125, -2210, -2211, -2261], + [0, -7841, -622], + [1, 3, 4131], + [0, 4132, 4133, 4134, 5], + [0, -633, -1266, -634, -2062, -2347], + [0, -1654, -664, -6398], + [0, -7841, -7419, -633], + [1, 3, 4136], + [0, 212, 4137, 4138, 4], + [0, -1654, -2460], + [0, -1168, -7841], + [1, 3, 4140], + [0, 4141, 72, 4142, 10], + [0, -9316, -1876, -9317, -2177, -2347], + [0, -1168, -6453, -2177, -7841, -9318, -9319, -9320, -9321], + [1, 3, 4144], + [0, 4145, 0, 4146, 8], + [0, -44, -9322, -753, -9323, -1876, -2347, -2460], + [0, -7841, -1168, -3324], + [1, 3, 4148], + [0, 4149, 4150, 36, 4], + [0, -2347, -1554], + [0, -1654, -2460, -2198], + [1, 3, 4152], + [0, 4153, 4154, 4155, 9], + [0, -9324, -1236, -2363], + [0, -519, -668, -824, -1040, -1100, -1168, -2460, -2541], + [0, -7841, -6656, -6999, -9325, -9254, -9326, -9327, -9328, -4123, -9329, -9330, -3324, -9331, -9332], + [1, 3, 4157], + [0, 4158, 114, 4159, 6], + [0, -1022, -1876, -2125, -2347, -2460], + [0, -7841, -6688, -6694, -6693], + [1, 3, 4161], + [0, 4162, 4163, 4164, 6], + [0, -683, -1876, -2347, -2464], + [0, -664, -9077, -756, -1004, -1022, -1168, -1187, -1243, -1248, -1252, -1654, -1788, -2460], + [0, -775, -6688, -1644, -9216, -683, -9333, -1229, -1184, -7841, -7419], + [1, 3, 4166], + [0, 4167, 213, 36, 10], + [0, -711, -1876, -2103, -2347, -2464], + [1, 3, 4169], + [0, 4170, 4171, 4172, 8], + [0, -1266, -2347, -2518], + [0, -756, -824, -1168, -1220, -1223, -1224, -1228, -1231, -1351, -9334, -1597, -1654, -2198], + [0, -1168, -7841, -9228, -3754, -2162, -775, -7644, -3277, -5553], + [1, 3, 4174], + [0, 4175, 4176, 36, 4], + [0, -2460, -2347, -6193], + [0, -1168, -1654, -2198, -1405, -7035, -2261, -1252, -1657], + [1, 3, 4178], + [0, 4179, 128, 4180, 4], + [0, -1554, -9335, -1876, -9336, -9337, -9338, -2347, -2460], + [0, -7841, -9048, -775, -6024, -1631, -9339], + [1, 3, 4182], + [0, 4183, 128, 4184, 9], + [0, -2347, -1266, -1376, -834], + [0, -7841, -3976, -9340, -9341, -3959, -3955, -9342], + [1, 3, 4186], + [0, 4187, 4188, 4189, 4], + [0, -2178, -729, -2353, -1022, -1597, -479, -2186, -2187, -9229], + [0, -1168, -1654, -2293, -1254, -710], + [0, -7419, -729, -1540, -9343, -3844], + [1, 3, 4191], + [0, 214, 4192, 4193, 4], + [0, -1168, -1415, -1942, -9078], + [0, -7841, -6351, -1168], + [1, 3, 4195], + [0, 4196, 4197, 4198, 4], + [0, -479, -9344, -1022, -1876, -2347], + [0, -1452, -1654, -2460], + [0, -7841, -775, -9344, -7148, -8170, -3277], + [1, 3, 4200], + [0, 4201, 4202, 4203, 4], + [0, -2460, -9231, -9345, -2347, -1022, -1876], + [0, -1788, -1654, -2210, -932, -2125, -2198, -756, -9346, -9347, -968, -943, -974, -942], + [0, -9231, -7841], + [1, 3, 4205], + [0, 4206, 4207, 4208, 4], + [0, -784, -6829, -1876, -1792, -2464], + [0, -2322, -2460, -2320, -1252], + [0, -784, -1644, -6059, -7192, -7193, -775, -7841, -1889], + [1, 3, 4210], + [0, 4211, 4212, 4213, 4], + [0, -2746, -1876, -2464], + [0, -2322, -2460, -2320], + [0, -7841, -1644, -775], + [1, 3, 4215], + [0, 4216, 4217, 4218, 5], + [0, -1876, -2347, -8899], + [0, -1452, -1980, -2198, -2460], + [0, -7841, -6582, -4055, -1168], + [1, 3, 4220], + [0, 4221, 4222, 4223, 9], + [0, -932, -1022, -1876], + [0, -1168, -1654, -2460, -2198, -1405, -528, -9348, -9349], + [0, -7841, -932, -1168, -8980, -9350, -7440, -6916, -707, -4144, -3756, -3214, -4107, -7148, -3862], + [1, 3, 4225], + [0, 4226, 4227, 4228, 8], + [0, -1460, -2460, -1015, -9351, -2347, -1876, -725, -9352], + [0, -1168, -1654, -2198, -1405, -1599], + [0, -7841, -6656, -9353, -8276, -1168, -3862], + [1, 3, 4230], + [0, 4231, 4232, 4233, 6], + [0, -2218, -1686, -1876, -9354, -9355], + [0, -2541, -519, -1168, -2460, -1825], + [0, -7841, -7724, -1353, -6656, -6999, -5572, -1645, -1107, -9095, -2460], + [1, 3, 4235], + [0, 215, 72, 4236, 5], + [0, -7841, -8395, -2239, -8423, -9356, -9357, -6917, -1168], + [1, 3, 4238], + [0, 214, 4239, 4240, 4], + [0, -1168, -1654, -2460, -2198, -1939, -933], + [0, -7841, -1168, -5841, -9358, -1847], + [1, 3, 4242], + [0, 4243, 27, 4244, 4], + [0, -9359, -2102, -9360, -2347], + [0, -6146, -3276, -4144, -1168, -7841, -1599, -3437, -3862, -9361, -3240, -2102], + [1, 3, 4246], + [0, 4247, 4248, 4249, 8], + [0, -668, -1266, -9362, -9363, -1792, -6370, -1877, -2347], + [0, -9364, -1849], + [0, -7841, -1082, -9362, -6656, -6999, -6931, -8576, -3844, -3323, -7764, -8901, -8902], + [1, 3, 4251], + [0, 4252, 4253, 4254, 4], + [0, -9365, -2125, -2462, -1266, -9366, -2062], + [0, -1654, -2460, -932, -1405, -9367, -1746, -1119, -1574, -9368, -9369], + [0, -5889, -5737, -5890, -9370, -8901, -8902, -8403, -9204, -3258, -1168, -7841, -1103, -841, -1105], + [1, 3, 4256], + [0, 4257, 4258, 4259, 5], + [0, -9371, -1022, -1548, -1876, -2109, -9372, -2460], + [0, -932, -1654, -1660, -2125, -2198], + [0, -1168, -5889, -9373, -7841, -9321], + [1, 3, 4261], + [0, 4262, 4263, 4264, 9], + [0, -479, -651, -1022, -1876, -9374, -2347], + [0, -1168, -1183, -1199, -1224, -1231, -1243, -7832, -1268, -1453, -1654, -9375, -2198], + [0, -6454, -7841, -6826], + [1, 3, 4266], + [0, 4267, 4268, 4269, 5], + [0, -1276, -1876, -2103, -2347], + [0, -2460, -1168, -1187, -9376, -9377, -9378, -1654, -9379, -2198], + [0, -7841, -1276], + [1, 3, 4271], + [0, 4272, 4273, 4274, 4], + [0, -6193, -1548, -1597, -2347], + [0, -664, -1168], + [0, -5147, -7841, -9380], + [1, 3, 4276], + [0, 4277, 4278, 4279, 10], + [0, -702, -2218, -615, -2461, -1792, -2062], + [0, -1654, -2460, -1405, -1266, -9348, -725, -9381, -2463], + [0, -7841, -3264, -8276], + [1, 3, 4281], + [0, 4282, 4283, 4284, 8], + [0, -2347, -1876, -1323], + [0, -1168, -1654, -2460, -1202], + [0, -3276, -1168, -7841, -9382, -3264, -9383, -6059, -6684, -1644], + [1, 3, 4286], + [0, 4287, 4288, 4289, 5], + [0, -4091, -9384, -7837, -9385, -9386, -9354, -9387, -9388, -9389], + [ + 0, -1168, -1415, -932, -2125, -9390, -4010, -1942, -367, -7043, -190, -720, -9391, -2410, -9392, -4007, -9393, + -2411, -959, -940, -967, -796, -740 + ], + [0, -7841, -1168, -3167, -3827], + [1, 3, 4291], + [0, 4292, 4293, 4294, 9], + [0, -2347, -9394, -9395], + [0, -1654, -1452, -1650, -2125, -2198, -2462, -1119, -908, -9396], + [0, -7841, -8978, -9397, -9398], + [1, 3, 4296], + [0, 4297, 4298, 4299, 11], + [0, -2347, -9394], + [0, -1452, -1654, -2198], + [0, -7841, -7724, -1645, -9353, -9399, -1199], + [1, 3, 4301], + [0, 4302, 4303, 36, 4], + [0, -510, -1548, -9400, -2347], + [0, -1112, -1168, -1183, -1231, -1224, -2150, -1453], + [1, 3, 4305], + [0, 4306, 4307, 4308, 4], + [0, -668, -1236, -1356, -1877, -1948], + [0, -519, -1357, -9401, -2460, -2541], + [0, -7841, -1356, -6527, -5094, -8634, -8635, -1644, -6684, -6454, -7715, -8640, -9235, -8642, -3839], + [1, 3, 4310], + [0, 4311, 4312, 36, 8], + [0, -479, -994, -1107, -1876, -2231, -2270, -2460, -2464], + [0, -1168, -1252, -1654, -2198, -2261], + [1, 3, 4314], + [0, 4315, 4316, 4317, 4], + [0, -506, -2347, -1022, -479, -9402, -1876, -9374, -930], + [0, -2541, -1344, -1654, -2460, -2198, -9403, -994, -86, -2174, -9404], + [0, -7841, -9405, -9406, -9407, -9408, -9409], + [1, 3, 4319], + [0, 4320, 4321, 4322, 4], + [0, -9410, -1876, -2347], + [0, -528, -756, -994, -1168, -1197, -1231, -1654, -1788, -2460], + [0, -7841, -9339, -775, -3264, -7920], + [1, 3, 4324], + [0, 4325, 4326, 4327, 9], + [0, -805, -1266, -9411, -1827, -2347, -2518], + [0, -664, -1654, -2251, -2541], + [0, -7841, -622, -1764, -1380], + [1, 3, 4329], + [0, 4330, 4331, 4332, 9], + [0, -1405, -9412, -1548, -1876, -2347, -2464], + [0, -1168, -1231, -1252, -9413, -1452, -1654, -2125, -2460], + [0, -7841, -4005, -1405, -9414], + [1, 3, 4334], + [0, 4335, 4336, 4337, 10], + [0, -1266, -1409, -2347], + [0, -1168, -2319, -1224], + [0, -1409, -7841, -5827, -7644], + [1, 3, 4339], + [0, 4340, 4341, 4342, 10], + [0, -506, -1412, -9415, -1876, -2347], + [0, -1168, -2460], + [0, -3440, -3161, -7841, -1412, -1989, -4043, -4679, -2319, -4873, -4004, -3634, -5119], + [1, 3, 4344], + [0, 4345, 4346, 4347, 4], + [0, -1445, -1876, -2347, -2350], + [0, -2261, -7423, -2460], + [0, -7841, -1445, -3214, -3217, -3756, -707, -5553, -5874, -7148, -3272, -7440, -7144], + [1, 3, 4349], + [0, 4350, 4351, 36, 8], + [0, -1548, -1645, -1876, -9345, -2347], + [0, -1168, -1452, -1654, -2198, -2460], + [1, 3, 4353], + [0, 4354, 4355, 4356, 5], + [0, -823, -831, -1440, -1876, -2347], + [0, -932, -937, -1168, -1654, -2198, -2460], + [0, -7841, -1168, -4055], + [1, 3, 4358], + [0, 4359, 4360, 4361, 5], + [0, -1521, -1792, -1876, -2103, -2347, -2464], + [0, -1452, -1654, -2198, -2460], + [0, -7841, -1168, -1521], + [1, 3, 4363], + [0, 4364, 4365, 4366, 8], + [0, -668, -812, -2460, -2353, -1022, -1550, -2062], + [0, -1654, -2210], + [0, -7841, -1540], + [1, 3, 4368], + [0, 4369, 4370, 4371, 5], + [0, -9416, -2114, -1022, -1639, -1048, -9417, -9418], + [0, -1654, -2210, -932, -1972, -9419, -965, -966, -958, -968, -943, -974], + [0, -7419, -1168, -4792, -6994, -9420], + [1, 3, 4373], + [0, 4374, 4375, 7, 10], + [0, -683, -1266, -1792, -2062, -9421, -2464], + [0, -664, -1654, -2460, -932, -1405, -1254, -9348, -1252, -9422, -9381, -9369], + [1, 3, 4377], + [0, 4378, 4379, 4380, 4], + [0, -7173, -2347, -1266], + [0, -664, -1168, -1654], + [0, -7841, -1644, -7175, -7192, -6454, -3264, -7173], + [1, 3, 4382], + [0, 4383, 211, 4384, 5], + [0, -805, -999, -1236, -1654, -2297], + [0, -7841, -1654, -4004, -3634, -5119, -3161, -4043, -4873, -3440, -1989, -4679, -2319], + [1, 3, 4386], + [0, 4387, 4388, 4389, 10], + [0, -9423, -1107, -1876], + [0, -664, -1168, -1654, -2460, -932, -1658, -9072], + [0, -1168, -7841, -9254, -9329], + [1, 3, 4391], + [0, 4392, 72, 4393, 5], + [0, -9424, -1631, -9425, -1876, -2347, -2464], + [0, -7841, -475, -5175, -4668, -9425], + [1, 3, 4395], + [0, 4396, 4397, 4398, 11], + [0, -714, -1168, -1753], + [0, -710, -1224, -1231, -8419, -1452, -2198], + [0, -1168, -1753, -9426, -3844, -9427, -8442, -2490, -7419, -7841], + [1, 3, 4400], + [0, 4401, 4402, 4403, 10], + [0, -1548, -2347, -1022, -479, -1750, -1876, -1737], + [0, -1168, -1654, -2460, -2198, -1237], + [0, -7841, -9258, -1168, -4127, -6863, -9428, -9429, -9262, -9430, -6721], + [1, 3, 4405], + [0, 4406, 4407, 4408, 4], + [0, -7837, -668, -9431], + [0, -519, -1825, -2410, -2460, -2541], + [0, -1168, -3862, -8112, -8113], + [1, 3, 4410], + [0, 4411, 4412, 36, 9], + [0, -668, -2347, -1022, -1876], + [0, -2541, -1168, -1654, -2198, -2346, -1405, -756, -994, -1657], + [1, 3, 4414], + [0, 4415, 4416, 4417, 9], + [0, -1022, -1876, -1907, -2464], + [0, -1788, -1654, -2210, -2460, -932, -1889, -1972, -1252], + [0, -7841, -1889, -9300, -775], + [1, 3, 4419], + [0, 4420, 4421, 4422, 4], + [0, -9263], + [0, -1654, -2987, -8065, -2460], + [0, -9432, -711, -8978, -812, -9433, -5558, -9399, -9321, -7841, -3264, -9434, -9435, -9353, -3214, -3277], + [1, 3, 4424], + [0, 4425, 4426, 4427, 5], + [0, -994, -1376, -1570], + [0, -507, -932, -9436, -1376, -1654, -1972, -2463], + [0, -7841, -1965], + [1, 3, 4429], + [0, 4430, 4431, 4432, 10], + [0, -1266, -1792, -2054, -2347, -2464], + [0, -1252], + [0, -7841, -2006, -4146, -6408, -8530, -3110, -3261, -6107, -9437, -9438, -7644], + [1, 3, 4434], + [0, 4435, 4436, 4437, 11], + [0, -994, -1750, -2105, -2347, -2460], + [0, -1168, -1262, -1183], + [0, -7841, -8908, -9439], + [1, 3, 4439], + [0, 0, 4440, 36, 10], + [0, -1168, -1252, -1597, -1654, -1942, -2198, -2460], + [1, 3, 4442], + [0, 4443, 4444, 4445, 9], + [0, -3037, -7837, -2551, -9440, -7622], + [0, -1654, -2460, -2198, -2379, -8255, -2410, -725], + [0, -7841, -8276], + [1, 3, 4447], + [0, 4448, 4449, 4450, 8], + [0, -1236, -9441, -9442, -9443, -9444, -2460, -9445], + [0, -519, -1825, -2541], + [0, -7841, -9446, -9447, -9448, -6131, -7175, -9318, -9319, -3324, -9449, -5142, -6342, -9450], + [1, 3, 4452], + [0, 215, 4453, 4454, 4], + [0, -994, -1199, -1245, -1654, -2460], + [0, -7841, -9446, -9448, -9318, -8276, -6342], + [1, 3, 4456], + [0, 4457, 4458, 4459, 5], + [0, -668, -742, -769, -805, -9451, -930, -1022, -1107, -4089, -9452, -1849, -1876, -2103, -2125, -2460], + [0, -1168, -1252, -9445], + [0, -7841, -3754, -2162, -775, -7644, -3277, -5553, -9453, -2231, -9454, -6915, -9455], + [1, 3, 4461], + [0, 4462, 4463, 4464, 6], + [0, -1863, -2269, -2103, -1876, -1552, -2464], + [0, -1168, -2162, -1654, -2460, -932, -2125, -9008, -1889, -7832, -1743, -518, -1238, -3572, -1252, -958, -934], + [0, -7841, -2162, -1168], + [1, 3, 4466], + [0, 4467, 0, 4468, 5], + [0, -510, -1266, -1792, -6370, -2246, -2347], + [0, -7841, -9456, -6656, -6999, -6931, -8576, -3844, -3323, -7764, -8901, -8902], + [1, 3, 4470], + [0, 4471, 4472, 4473, 5], + [0, -668, -1022, -1570, -1876, -2347, -2387], + [ + 0, -9457, -9392, -3136, -9458, -3037, -7836, -427, -428, -756, -932, -940, -959, -1168, -1415, -1942, -2375, + -2379, -2410, -2460 + ], + [0, -7841, -1168, -5550, -3957], + [1, 3, 4475], + [0, 4476, 216, 4477, 10], + [0, -9459, -668, -1022, -1236, -1273, -1948], + [0, -7841, -1044, -6656, -8799, -1573, -9460, -4676, -812, -6826, -6828], + [1, 3, 4479], + [0, 4480, 4481, 4482, 4], + [0, -9461, -9462, -461, -742, -775, -9463, -8888, -1119, -2231, -9195, -2347], + [ + 0, -620, -932, -937, -1001, -1168, -1187, -1212, -1226, -1228, -9464, -1405, -9381, -9465, -1654, -1792, -2125, + -2460 + ], + [0, -7841, -1168, -9466, -9455], + [1, 3, 4484], + [0, 4485, 216, 4486, 4], + [0, -23, -1236, -9467], + [0, -7841, -6817, -6694, -6693, -6688, -812, -7336, -4000, -1573, -5545, -3756, -3214, -3217, -3272, -987], + [1, 3, 4488], + [0, 4489, 213, 4490, 4], + [0, -9468, -1550, -1876, -2103, -2286, -2347, -2464], + [0, -1168, -2286, -775, -3277, -7841, -9321], + [1, 3, 4492], + [0, 4493, 4494, 4495, 4], + [0, -1876, -2302], + [0, -1107, -1168, -9469, -1654, -9470, -2460, -2541], + [ + 0, -7841, -3167, -3843, -3839, -7715, -9278, -9279, -9471, -3262, -775, -2162, -1521, -2286, -3271, -9339, + -3264, -9472, -9473, -9474, -1689 + ], + [1, 3, 4497], + [0, 4498, 4499, 4500, 5], + [0, -1552, -1876, -2303], + [0, -21, -23, -40, -43, -519, -756, -767, -825, -1788, -1942, -2460, -2541], + [0, -7841, -1644, -3839, -2303], + [1, 3, 4502], + [0, 4503, 4504, 4505, 4], + [0, -674, -1022, -1876, -2460], + [0, -1045, -1168, -1217, -1654, -1978, -2187, -2210], + [0, -7841, -3839, -3167, -9278], + [1, 3, 4507], + [0, 4508, 4509, 4510, 9], + [0, -1236, -1548], + [0, -519, -1196, -2460, -2541], + [0, -7841, -1548, -2424, -3110, -7644, -3264, -7650, -9475, -9438], + [1, 3, 4512], + [0, 4513, 4514, 4515, 4], + [0, -479, -1022, -2346, -2460], + [0, -9392, -3037, -9476, -7837, -8890, -9457, -2125, -1168, -1231, -2410], + [0, -7841, -2410, -3214, -9477], + [1, 3, 4517], + [0, 4518, 4519, 4520, 9], + [0, -9457, -479, -1022, -1597, -1876, -2346], + [0, -9478, -3037, -9476, -1168, -1187, -1261, -2388, -2410], + [0, -1168, -2410, -3862, -3018, -7841, -7419, -2388, -8170, -7148], + [1, 3, 4522], + [0, 4523, 4524, 4525, 4], + [0, -2460, -2347, -2462, -2231, -479, -1876], + [0, -1168, -2125, -9479, -2410, -3037, -1187, -1208, -7837, -1237, -1632, -7836, -7838, -1252, -9480], + [0, -2410, -7841, -9481, -3018, -5058, -7644, -3116, -3185], + [1, 3, 4527], + [0, 4528, 4529, 36, 9], + [0, -9416, -1403, -2347, -2416, -9482, -9417, -2155, -1016, -9483, -2464], + [0, -2322, -2460, -932, -1942, -9484, -2341, -1938, -9485, -945, -978, -940, -967, -9486], + [1, 3, 4531], + [0, 4532, 122, 4533, 5], + [0, -1266, -1792, -9487], + [0, -7441, -775, -7841], + [1, 3, 4535], + [0, 4536, 4537, 4538, 5], + [0, -1107, -1187, -1876, -2347, -2460], + [0, -994, -2462, -1168, -1224, -1231, -1262, -1210, -1184, -1245, -1226, -1452], + [0, -7841, -9281, -1264], + [1, 3, 4540], + [0, 4541, 4542, 4543, 4], + [0, -1107, -1015, -9488, -1212, -2347, -2462, -1187, -994, -1876], + [0, -1788, -1168, -1654, -2460, -756, -9489, -1231, -1197, -1243, -528, -9490], + [0, -7841, -3264, -9408, -775, -7175, -9048], + [1, 3, 4545], + [0, 4546, 4547, 7, 6], + [ + 0, -9491, -9492, -9493, -668, -808, -1022, -9416, -9417, -9494, -9495, -9496, -1570, -1646, -4091, -1792, -2103, + -2347, -2460 + ], + [0, -641, -756, -994, -1405, -9381, -1452, -9497, -1654, -2125, -2198], + [1, 3, 4549], + [0, 4550, 4551, 4552, 8], + [0, -1986, -2346, -2347, -2460, -2462, -2555, -9498], + [0, -1654, -2250, -2330], + [0, -1168, -7841, -9498, -9499, -5408, -8027, -2460, -9500], + [1, 3, 4554], + [0, 4555, 4556, 4557, 4], + [0, -479, -9501, -679, -1022, -1108, -1792, -1850, -1876, -2062, -2218, -2460, -9445], + [0, -756, -1405, -1654, -1657, -1972, -2125, -2198, -2210, -2261, -2269, -2541], + [0, -1168, -2490, -7841], + [1, 3, 4559], + [0, 4560, 0, 4561, 4], + [0, -1626, -2460, -2346, -2501, -1266], + [0, -7841, -2501], + [1, 3, 4563], + [0, 4564, 4565, 4566, 8], + [0, -729, -9229, -1266, -1402, -1750, -1805, -9502, -2186, -2187, -2347, -2353, -2490], + [0, -1654, -2293], + [0, -7841, -9343, -729, -1540], + [1, 3, 4568], + [0, 4569, 4570, 4571, 5], + [0, -1100, -1236, -2460, -9498], + [0, -519, -7342, -9431, -1168, -1825, -9503, -9445, -2541], + [0, -7841, -5408, -5409, -501, -6454, -724, -6656], + [1, 3, 4573], + [0, 4574, 4575, 4576, 5], + [0, -9271, -510, -2460, -2347, -1645, -2424, -9270, -9269], + [0, -1168, -1654, -932, -2125, -9273, -9504, -1195, -1632, -2461, -1215, -9505, -9274, -9275, -9272], + [0, -7841, -9270, -9278, -9279], + [1, 3, 4578], + [0, 4579, 4580, 4581, 11], + [0, -883], + [0, -519, -1825, -2384, -2541], + [0, -3994, -3673, -9506, -6826, -9507, -8799, -2265, -640], + [1, 3, 4583], + [0, 4584, 4585, 4586, 4], + [ + 0, -9508, -9509, -9510, -9511, -2093, -9512, -9513, -2095, -4655, -4994, -9514, -9515, -9516, -9517, -9518, + -9519, -9520, -9521, -9522, -9523, -9524, -9525, -9526, -9527, -9528, -9529, -9530, -5707, -9531, -9532, -9533, + -9534, -9535, -9536, -9537, -6368, -2297, -9538, -9539 + ], + [0, -350, -4062, -351, -3266, -827, -9540, -2127, -2250, -2322, -2331], + [0, -1599, -856, -3671, -4328, -5887, -7440, -9541, -8170, -7148, -8169, -1274, -2093, -2427], + [1, 3, 4588], + [0, 0, 4589, 4590, 10], + [0, -9542, -9543, -1127, -7887, -1136, -1137, -1144, -9544, -1148, -1149, -1153, -9545, -9546], + [0, -2363, -9547], + [1, 3, 4592], + [0, 4593, 4594, 4595, 8], + [0, -1646, -9548, -2231, -2525, -2416], + [ + 0, -3983, -521, -534, -567, -589, -664, -9549, -726, -838, -879, -6897, -6867, -932, -940, -952, -953, -1077, + -1127, -5974, -1132, -1134, -1136, -1137, -1138, -9550, -1148, -1149, -1162, -7848, -1344, -6785, -1534, -1654, + -1661, -1689, -1788, -1942, -2177, -2210, -2410, -2424, -2501, -2505 + ], + [0, -1276, -1689, -3110, -3264], + [1, 3, 4597], + [0, 4598, 4599, 155, 5], + [ + 0, -1435, -9551, -619, -6508, -1309, -9552, -9553, -9554, -9555, -5400, -9556, -9557, -9558, -9559, -9560, + -9561, -9562, -9563 + ], + [0, -1510, -707, -1367, -9564, -9565, -1276], + [1, 3, 4601], + [0, 4602, 4603, 4604, 6], + [0, -6594, -3037, -4204, -3223, -6587, -2531], + [0, -3665, -7197, -2410, -2469, -4375], + [0, -1449, -5092, -4865, -3586, -9566, -3578, -3098, -3264, -5388, -5387], + [1, 3, 4606], + [0, 0, 14, 4607, 4], + [ + 0, -8047, -7440, -6659, -6543, -5573, -9567, -687, -3958, -4378, -1958, -502, -4377, -6748, -7303, -9568, -1646, + -1813 + ], + [1, 3, 4609], + [0, 0, 4610, 4611, 4], + [0, -2832, -5834, -8084, -9569, -8096, -516, -753, -5835, -932, -9570, -1365, -1777, -1788, -2156, -2322], + [0, -6981, -8619, -9571, -9572, -3582, -5269, -753, -6948], + [1, 3, 4613], + [0, 0, 4614, 7, 5], + [0, -1452, -1453, -1548, -2322], + [1, 3, 4616], + [0, 4617, 4618, 4619, 10], + [0, -9573], + [0, -2832, -5834, -8084, -9574, -9575, -8096, -515, -516, -932, -993, -1365, -1659, -1777, -1788, -2156, -2322], + [0, -8047, -9576, -9577, -9578, -9579, -8047, -7153, -9580, -3214, -3217], + [1, 3, 4621], + [0, 4622, 4623, 4624, 8], + [0, -5334, -4231, -9581, -9582, -2768, -2771, -1619, -1839, -9583, -2429, -5358, -9584, -9585], + [0, -3037, -9586, -652, -1290, -1294, -1618, -1942, -9587, -2094, -2100, -2399, -2410, -7669, -2541], + [0, -9588, -9589, -3264, -9590, -3590, -2444, -1838, -9591], + [1, 3, 4626], + [0, 4627, 4628, 4629, 4], + [0, -5334, -9581, -9583], + [ + 0, -3037, -9586, -9592, -652, -823, -2586, -1290, -1294, -1318, -9593, -1942, -2094, -2100, -2399, -2410, -7669, + -2429, -2541 + ], + [0, -6688, -9588, -9589, -3264, -9594, -7723, -3590, -2444, -9590, -2544], + [1, 3, 4631], + [0, 4632, 4633, 4634, 9], + [0, -5334, -4231, -9595, -2742, -5981, -9596, -9597, -4263, -1292, -2769, -2788, -1968, -2235, -2429, -9585], + [0, -3037, -652, -1294, -1942, -2094, -2100, -2399, -2410, -7669, -2541], + [0, -775, -9588, -9589, -3264, -5572, -3581, -5101, -9598, -3585, -6750, -9590, -3590, -2444], + [1, 3, 4636], + [0, 4637, 4638, 4639, 5], + [0, -426, -8316, -5334, -2742, -9596, -9599, -9600, -2769, -9601, -9602, -9603, -1968, -2235, -2276, -9583, -9585], + [ + 0, -3037, -6426, -652, -9604, -5342, -989, -1294, -1618, -5204, -1619, -5205, -1942, -2094, -2100, -2399, -2410, + -2429, -2541 + ], + [0, -5888, -3217, -5210, -9588, -9589, -3264, -3214, -4146, -4147, -2083, -6408, -9590, -3590, -2444], + [1, 3, 4641], + [0, 4642, 217, 4643, 6], + [0, -5334, -4231, -9605, -2742, -2769, -2771, -1619, -1968, -2235, -2268, -9585], + [0, -9588, -9589, -3264, -6233, -6231, -9606, -9590, -3590, -2444], + [1, 3, 4645], + [0, 4646, 4647, 4648, 4], + [0, -426, -5334, -4231, -2742, -9596, -9600, -2769, -9601, -9602, -9603, -1968, -2235, -2276, -9583, -6648], + [0, -3037, -3040, -3052, -652, -928, -5343, -1294, -1942, -2006, -2019, -2094, -2100, -9607, -2399, -2410, -2541], + [0, -9588, -9589, -3264, -1940, -2006, -9608, -2299, -9590, -3590, -2444, -2476], + [1, 3, 4650], + [0, 87, 0, 4651, 4], + [0, -5398, -9589, -9588, -3264, -6233, -2265, -6231, -5554, -9590, -2444, -3590], + [1, 3, 4653], + [0, 4654, 217, 4655, 4], + [0, -5334, -4231, -2766, -9609], + [0, -9590, -9589, -9588, -2444, -3590, -3264, -2265, -5398, -5554, -4308], + [1, 3, 4657], + [0, 4658, 4659, 4660, 4], + [0, -5334, -2742, -2767, -1968, -2235], + [0, -3037, -6426, -652, -9604, -9610, -5342, -1942, -2094, -2100, -9611, -2384, -2399, -2410, -2541], + [0, -5092, -6311, -9588, -9589, -3264, -9612, -2083, -9590, -3590, -2444, -9613, -9614], + [1, 3, 4662], + [0, 4663, 4664, 7, 8], + [0, -2487, -1276], + [0, -1788, -1654, -932, -2125, -2293, -963], + [1, 3, 4666], + [0, 0, 4667, 4668, 5], + [0, -6774, -1127, -1132, -1162, -6114, -1405, -1451, -1548, -6186, -1991, -2081, -9615, -2111, -9616], + [0, -2265, -3223, -8034, -3264, -6422, -6420, -4112], + [1, 3, 4670], + [0, 4671, 4672, 7, 4], + [0, -1696], + [0, -2195, -2319], + [1, 3, 4674], + [0, 0, 0, 4675, 4], + [ + 0, -1004, -7107, -5146, -3445, -9617, -9618, -9619, -9620, -9621, -9622, -9623, -9624, -9625, -9626, -9627, + -9628, -9629, -9630 + ], + [1, 3, 4677], + [0, 0, 4678, 7, 9], + [0, -2303, -2125, -1942, -656, -2699, -23, -9631, -3408], + [1, 3, 4680], + [0, 0, 4681, 7, 11], + [0, -43, -40, -6056, -6035, -527, -21, -23, -528, -533, -856, -932, -956, -958, -959, -1415, -1417], + [1, 3, 4683], + [0, 4684, 4685, 4686, 5], + [ + 0, -9632, -615, -9633, -9634, -9635, -9636, -9637, -9638, -9639, -9640, -1442, -9641, -1639, -9642, -1666, + -1667, -1783, -1863, -6467, -2269, -2350, -9643, -9644 + ], + [ + 0, -9645, -5767, -3035, -4035, -3660, -4036, -3621, -3037, -9144, -4372, -9646, -652, -664, -674, -3542, -932, + -9647, -9648, -1344, -1534, -1654, -2210, -2379, -2410 + ], + [0, -3258, -3260, -7643, -3161, -1302], + [1, 3, 4688], + [0, 4689, 4690, 7, 8], + [0, -9649], + [ + 0, -615, -633, -634, -725, -932, -1127, -1130, -1131, -1146, -1148, -1149, -1152, -9650, -1159, -1276, -1754, + -2148, -9651, -2199, -2210, -7035, -9652, -2416 + ], + [1, 3, 4692], + [0, 0, 4693, 4694, 4], + [ + 0, -775, -824, -1107, -8318, -1449, -1654, -932, -1548, -2127, -2198, -2334, -683, -693, -719, -1276, -2410, + -1339, -9653, -3621, -7694, -9654, -5758, -9655, -9656, -966, -4062, -9657, -958, -968, -943, -350, -428, -351, + -427 + ], + [0, -4131, -4132], + [1, 3, 4696], + [0, 218, 0, 7, 4], + [1, 3, 4698], + [0, 39, 0, 4699, 5], + [0, -1306, -8938], + [1, 3, 4701], + [0, 0, 219, 4702, 4], + [0, -8113], + [1, 3, 4704], + [0, 4705, 4706, 4707, 5], + [0, -1758, -1650], + [0, -2416, -1449, -9658, -2125], + [0, -1689, -3110], + [1, 3, 4709], + [0, 4710, 4711, 41, 10], + [0, -2029], + [ + 0, -23, -26, -40, -41, -43, -664, -756, -761, -932, -1654, -1788, -1939, -1967, -2006, -2125, -2127, -2128, + -2131, -2137, -2140 + ], + [1, 3, 4713], + [0, 4714, 4715, 7, 8], + [0, -668, -2177, -1077, -719, -9659, -1982, -2234], + [ + 0, -1415, -932, -2125, -1753, -2375, -2379, -2402, -2410, -3136, -3037, -3198, -3199, -3048, -959, -958, -9660, + -428, -9661, -427 + ], + [1, 3, 4717], + [0, 0, 4718, 4719, 5], + [ + 0, -9662, -4835, -3036, -4647, -3037, -8200, -3664, -502, -9663, -9664, -928, -932, -1107, -1449, -1683, -1763, + -9665, -8436, -1942, -2910, -2410, -2426, -9666, -2469, -9667, -2531, -2564 + ], + [0, -1313, -3578, -3994, -1334, -9668, -3161, -3122, -9669, -9670, -9671, -9672, -9060, -7314, -5819, -3967], + [1, 3, 4721], + [0, 4722, 29, 4723, 6], + [0, -1582], + [0, -5889, -1105, -7660, -7661], + [1, 3, 4725], + [0, 4726, 86, 4727, 6], + [0, -725, -1650, -2125, -2177, -2433, -2518, -9673], + [0, -9674, -9675, -9676, -9677, -1764], + [1, 3, 4729], + [0, 4730, 4731, 4732, 6], + [0, -6585, -1333], + [ + 0, -86, -3307, -3615, -190, -4066, -350, -351, -3266, -3267, -9678, -4862, -9679, -3037, -5286, -2970, -3664, + -932, -967, -4814, -977, -1110, -1323, -1344, -7317, -1449, -1534, -1772, -1874, -1942, -2910, -2127, -2214, + -2379, -2410, -2411, -2469 + ], + [0, -1317, -3264, -5092, -3215, -1333, -9680], + [1, 3, 4734], + [0, 0, 4735, 4736, 9], + [0, -3037, -652, -2586, -1288, -1292, -1942, -2094, -2100, -2399, -2410, -2426, -2541], + [0, -9681, -9682, -3264, -6557, -7153, -6818, -5387, -5388], + [1, 3, 4738], + [0, 4739, 4740, 4741, 4], + [0, -9683], + [0, -7196, -932, -1110], + [0, -5835, -3264], + [1, 3, 4743], + [0, 0, 4744, 4745, 5], + [ + 0, -86, -3307, -3268, -9684, -3136, -3037, -589, -3223, -932, -940, -958, -9685, -1297, -1344, -1942, -2251, + -2375, -2386, -2392, -2410, -2411 + ], + [0, -3264, -9686, -9687, -9688, -3223, -9689, -9690], + [1, 3, 4747], + [0, 0, 4748, 4749, 11], + [0, -9691, -652, -756, -2127, -2415], + [0, -3264, -5559, -6422, -9692, -6420, -3223], + [1, 3, 4751], + [0, 4752, 4753, 4754, 5], + [0, -1839, -1324], + [ + 0, -824, -1415, -1344, -1623, -774, -932, -825, -2501, -920, -1936, -1942, -767, -21, -533, -1276, -23, -1534, + -1771, -9693, -86, -2251, -9694, -40, -1331, -958, -940, -3307, -7166 + ], + [0, -2501, -3264, -5932], + [1, 3, 4756], + [0, 4757, 4758, 4759, 5], + [0, -6512, -683, -719, -1297, -6560, -9695, -2416], + [0, -1127, -1130, -1148, -1152, -1860, -1989], + [ + 0, -687, -6454, -9696, -775, -3264, -9383, -3214, -9234, -6059, -6684, -1644, -7175, -7176, -7858, -9697, -1838, + -3215, -9698, -9216 + ], + [1, 3, 4761], + [0, 4762, 4763, 4764, 4], + [0, -6512, -683, -719, -3223, -6560, -9695, -2334], + [ + 0, -86, -5121, -350, -4062, -351, -3266, -9699, -9700, -932, -943, -1344, -1392, -1415, -1419, -1534, -2127, + -9701, -2466 + ], + [ + 0, -687, -6454, -9696, -775, -3264, -9383, -3214, -9234, -6059, -6684, -1644, -7175, -7176, -7858, -9697, -1838, + -3215, -2334, -9698, -9216 + ], + [1, 3, 4766], + [0, 4767, 4768, 4769, 9], + [0, -1860], + [0, -2322, -2250, -2320, -1860], + [0, -3264, -6528, -1858, -1859, -3967], + [1, 3, 4771], + [0, 4772, 4773, 4774, 4], + [0, -6585, -1317, -2039, -2276], + [ + 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -3267, -9678, -3268, -3037, -3040, -3052, -5286, -2970, + -3664, -589, -932, -967, -4814, -977, -1110, -1344, -1534, -1874, -1940, -2910, -2006, -2019, -2127, -2214, + -2379, -2410, -2411, -2469 + ], + [0, -1326, -3264, -2006, -3215, -5092], + [1, 3, 4776], + [0, 0, 4777, 4778, 5], + [0, -519, -674, -2541], + [0, -3264, -5177, -9702, -9566, -4108, -5388, -5387, -9703, -9704], + [1, 3, 4780], + [0, 0, 4781, 4782, 10], + [ + 0, -1344, -1392, -1471, -2387, -932, -2125, -2127, -1942, -756, -1870, -2410, -1771, -1413, -1952, -1481, -9705, + -1476, -9706, -8382, -7818, -1491, -9707, -9708, -1475, -9709, -3469, -9710 + ], + [0, -9711, -9712, -659, -3264, -5092, -6527, -9472, -3839], + [1, 3, 4784], + [0, 4785, 0, 4786, 5], + [0, -9713, -823, -861, -1333, -9714], + [0, -3264, -3966, -5554, -9715, -9716, -6473], + [1, 3, 4788], + [0, 4789, 0, 4790, 5], + [0, -9717, -9718, -469, -1107, -1496, -1646, -1966, -2177], + [0, -3264, -7148, -2451, -1330], + [1, 3, 4792], + [0, 4793, 4794, 4795, 9], + [0, -9719, -1324, -1548, -1949, -2321], + [ + 0, -86, -3307, -3037, -767, -774, -778, -796, -9071, -932, -7466, -1322, -1344, -1415, -1534, -1643, -1771, + -1942, -1974, -9720, -2000, -2125, -2251, -2275, -2410, -2501, -2503, -9721 + ], + [0, -2501, -3862, -3264, -1331], + [1, 3, 4797], + [0, 4798, 4799, 4800, 4], + [0, -9722, -719, -755, -1936], + [ + 0, -190, -3748, -7155, -3621, -3037, -9723, -652, -784, -932, -6835, -958, -8339, -9724, -1001, -1110, -1654, + -1889, -1979, -9695, -2125, -9725, -2303, -2334, -2410, -2411, -9487 + ], + [0, -1936, -9726, -3264, -9727, -6684], + [1, 3, 4802], + [0, 4803, 4804, 4805, 5], + [0, -7713, -6585, -6584, -3223], + [0, -190, -3037, -3664, -932, -940, -965, -978, -1110, -1942, -2386, -2410, -2411, -2469], + [0, -3264, -3215, -8027, -6597, -5092, -9728, -3484, -9297], + [1, 3, 4807], + [0, 4808, 129, 4809, 6], + [0, -828, -1370, -8441, -2255, -9729], + [0, -1334, -6324], + [1, 3, 4811], + [0, 4812, 4813, 7, 10], + [0, -996, -9730, -1063], + [0, -2531, -1788, -9731, -510, -1654, -2177, -1003, -2228, -725, -516, -2229], + [1, 3, 4815], + [0, 4816, 4817, 4818, 5], + [0, -9732, -812], + [0, -3198, -3136, -3037, -511, -1415, -2375, -2410, -1971, -9056], + [0, -1334, -1971, -8484, -9733], + [1, 3, 4820], + [0, 4821, 4822, 4823, 4], + [0, -4623, -812, -1336, -1393, -1396, -1639], + [ + 0, -86, -3307, -190, -3198, -3330, -3617, -9734, -3136, -4036, -3037, -4203, -4204, -617, -932, -940, -967, + -1004, -1098, -1110, -1344, -1415, -1534, -9735, -1805, -4916, -8436, -1942, -2293, -2375, -2410, -2411, -2531 + ], + [0, -7302, -1971, -5401, -1334, -1342, -729, -1004, -1030, -3548, -9736, -632, -1168, -1137, -2512, -2531, -754], + [1, 3, 4825], + [0, 4826, 4827, 4828, 4], + [0, -1297, -1640, -668, -9737, -9738, -1810, -1646, -2436, -579, -1336, -1888, -9739, -1319], + [0, -9740, -2319, -932, -1004, -2105, -9741], + [0, -687, -3957, -5142, -1334, -1342, -1339, -9742, -3844], + [1, 3, 4830], + [0, 0, 4831, 4832, 4], + [ + 0, -2391, -1344, -1654, -932, -2198, -2379, -1942, -190, -721, -2410, -3037, -1534, -7820, -3621, -9743, -86, + -2251, -9744, -2411, -964, -940, -967, -3307 + ], + [0, -1334, -729, -3100, -9745, -1004], + [1, 3, 4834], + [0, 0, 4835, 4836, 8], + [0, -3048, -3136, -9746, -427, -428, -932, -935, -958, -1077, -1415, -1605, -2375, -2378, -2379, -2410], + [0, -3966, -1334, -7827, -9747, -9748, -9745, -5563], + [1, 3, 4838], + [0, 0, 0, 4839, 4], + [0, -1342, -9749], + [1, 3, 4841], + [0, 4842, 4843, 4844, 4], + [0, -812, -9732], + [0, -1415, -1971, -2375, -9056, -2410, -3136, -3037, -512, -3198, -511, -9750], + [0, -1342, -1971, -8484, -9733], + [1, 3, 4846], + [0, 0, 0, 4847, 10], + [0, -5889, -3322, -1939], + [1, 3, 4849], + [0, 4850, 31, 4851, 11], + [0, -6829, -6372, -2347], + [0, -5827, -1334, -3443, -2105, -9052, -9751, -9752, -6693, -9753, -9024], + [1, 3, 4853], + [0, 0, 4854, 4855, 5], + [0, -3470, -3842, -3471, -741, -932, -940, -9754, -1942, -2127, -2174, -2322], + [0, -9755, -5553, -775, -656], + [1, 3, 4857], + [0, 0, 84, 4858, 5], + [0, -9756, -9757, -9758, -2424, -9759, -9760, -9761, -9762, -1878, -9763, -9764, -9765, -9766, -9767], + [1, 3, 4860], + [0, 4861, 4862, 4863, 4], + [0, -9768, -812, -9769, -9770, -9771, -1689], + [ + 0, -510, -744, -932, -940, -943, -958, -966, -967, -968, -974, -1004, -1344, -1534, -1654, -1788, -1942, -2198, + -2210, -2548, -2293 + ], + [0, -3110, -1348, -9772], + [1, 3, 4865], + [0, 39, 4866, 4867, 5], + [ + 0, -9773, -23, -3395, -3204, -38, -39, -40, -41, -43, -3326, -350, -351, -3266, -3037, -427, -428, -3664, -571, + -756, -757, -932, -934, -940, -948, -958, -9774, -1344, -9775, -9776, -9777, -9778, -9779, -1534, -1942, -2125, + -2127, -2210, -2410, -2469 + ], + [0, -1349, -9780, -1348, -9781, -9782, -9772, -9783, -9784], + [1, 3, 4869], + [0, 0, 4870, 4871, 4], + [0, -190, -3267, -3470, -3471, -427, -428, -932, -940, -967, -1110, -1942, -2127, -2132, -2174, -2410], + [0, -1349, -9785, -3445, -3862], + [1, 3, 4873], + [0, 4874, 4875, 4876, 4], + [0, -9786], + [ + 0, -1788, -510, -9787, -9788, -1654, -9789, -932, -2177, -2105, -9790, -2410, -3037, -1002, -2884, -2832, -3748, + -5029 + ], + [0, -9788, -5845, -9791, -9792], + [1, 3, 4878], + [0, 4879, 4880, 4881, 5], + [0, -9793], + [0, -527, -533, -559, -562, -756, -932, -934, -958, -1417], + [0, -1971, -9794, -9795, -1415, -4215], + [1, 3, 4883], + [0, 0, 4884, 4885, 4], + [0, -21, -23, -40, -427, -812, -932, -9796, -958, -1650, -9797, -2125, -9798, -2319, -2359, -2379, -2410], + [0, -1353, -9799, -9100, -1777, -8199, -9800, -7724, -5570, -5569, -9094, -1107, -9801, -9802], + [1, 3, 4887], + [0, 0, 4888, 4889, 6], + [0, -652, -1107, -2391, -2379, -2402, -2410, -3036, -3037, -2581], + [ + 0, -6527, -8799, -9803, -9804, -6730, -7710, -5316, -8653, -8740, -8642, -8715, -9805, -8654, -8685, -9235, + -8761, -7715, -8656, -3839, -9806, -9807, -5315 + ], + [1, 3, 4891], + [0, 4892, 4893, 4894, 5], + [0, -9808, -7879, -2218, -1111, -9809, -1043, -5558, -9810, -8628, -9324], + [0, -2541, -519, -824, -2331, -7687, -9401, -7692], + [0, -1644, -6454, -6527, -5093, -9235, -8640, -7715, -8642, -3839], + [1, 3, 4896], + [0, 4897, 4898, 4899, 5], + [0, -9808, -999, -9811, -5558, -9812, -8628], + [0, -652, -2541, -519, -2410, -3037], + [0, -6454, -6527, -9813, -1644, -7175, -7715, -9814], + [1, 3, 4901], + [0, 4902, 0, 4903, 10], + [0, -9815, -2062], + [0, -1358, -9715, -7920, -9816, -3323], + [1, 3, 4905], + [0, 0, 4906, 4907, 9], + [ + 0, -23, -3037, -3664, -756, -9817, -9818, -1059, -1344, -1361, -9819, -1548, -1552, -1942, -1952, -2074, -2125, + -9820, -2174, -2391, -9821, -2410, -2466, -2469 + ], + [0, -1361, -9822, -9823], + [1, 3, 4909], + [0, 0, 4910, 4911, 8], + [0, -9824, -3136, -756, -1415, -2125, -2375, -2388, -2410], + [0, -9825], + [1, 3, 4913], + [0, 0, 0, 4914, 4], + [0, -1361, -6852, -9826, -6582, -7537, -5112, -7558, -9827, -5562, -7822], + [1, 3, 4916], + [0, 186, 4917, 4918, 5], + [0, -519, -1298, -2384, -2541], + [0, -4792, -3324, -6690, -6691, -3551, -1072, -9828], + [1, 3, 4920], + [0, 4921, 4922, 4923, 6], + [0, -1871, -5915], + [0, -519, -6997, -824, -999, -2541], + [0, -6024, -8427, -4792, -2114, -1109, -9318, -9829, -687], + [1, 3, 4925], + [0, 4926, 4927, 4928, 5], + [0, -9830, -9831, -9832, -9833, -9834, -9835, -9836], + [0, -3037, -4204, -932, -9837, -1942, -2410], + [ + 0, -9668, -3844, -9838, -9839, -7107, -8897, -9840, -3690, -7586, -9841, -5196, -9842, -3691, -5728, -3578, + -3161, -3122, -9843, -9844, -6011, -5801, -1334, -1342, -2512, -6224, -9845, -3994, -3445, -5407 + ], + [1, 3, 4930], + [0, 0, 14, 4931, 10], + [0, -6806, -2265, -7210, -9846, -6722, -5554, -885, -9847], + [1, 3, 4933], + [0, 4934, 4935, 4936, 8], + [0, -9551, -619, -9556, -1309, -1435, -1582], + [0, -707, -1277, -1510], + [0, -6656, -7421, -8481, -1277, -3862], + [1, 3, 4938], + [0, 4939, 4940, 4941, 6], + [0, -786, -2776, -3546], + [0, -9848, -9849], + [0, -1368, -6187, -3161, -4729, -9850, -3264, -9851, -3844, -5092, -4865, -2127, -9613], + [1, 3, 4943], + [0, 0, 4944, 4945, 4], + [0, -2410, -2469], + [0, -1369, -9852, -9853, -1878, -9763, -9758, -2424, -9854, -9855, -9759, -9764, -9760, -9765, -9766, -9767, -9761], + [1, 3, 4947], + [0, 0, 71, 4948, 10], + [0, -9856, -7711, -9857, -9858, -9859, -1370, -4865, -633], + [1, 3, 4950], + [0, 0, 29, 7, 5], + [1, 3, 4952], + [0, 4953, 4954, 4955, 5], + [ + 0, -9860, -480, -482, -9861, -668, -688, -690, -696, -5906, -3517, -1366, -8418, -9862, -6259, -2166, -2202, + -2219, -4621, -2267, -9863, -2400, -2820, -2528, -2531, -9864 + ], + [ + 0, -6486, -5918, -357, -3851, -3037, -3040, -9865, -9866, -9867, -4372, -4626, -4204, -9868, -519, -623, -826, + -9869, -969, -970, -1681, -1741, -1827, -1942, -2006, -9870, -2210, -2269, -2379, -2410, -2541 + ], + [0, -2006, -687, -4146, -3973, -3098, -3958, -1940, -2074, -9871, -7650, -714, -5554], + [1, 3, 4957], + [0, 0, 4958, 4959, 11], + [ + 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -775, -932, -967, -4814, -1110, -1344, -1415, -1534, + -1771, -1942, -2910, -2127 + ], + [0, -1374, -9872, -5553, -3215, -775], + [1, 3, 4961], + [0, 0, 0, 4962, 6], + [0, -9873, -9874, -7864, -7084, -7856, -9219, -3966, -687], + [1, 3, 4964], + [0, 4965, 4966, 63, 4], + [0, -3947, -231, -4106, -2900, -3950, -9875, -2153], + [0, -3952, -2410], + [1, 3, 4968], + [0, 4969, 4970, 4971, 11], + [0, -480, -1040, -1863, -9875, -2153], + [0, -1059, -1087, -1376], + [ + 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -910, -3962, -3963, -1376, -3964, -3965, -3214, -3824, -3966, + -3967, -1965, -3968, -1966, -3969, -2063, -3972, -3973, -3974, -3975, -3160, -3976, -2559, -3977 + ], + [1, 3, 4973], + [0, 4974, 0, 4975, 8], + [0, -9876, -714], + [0, -9877, -3966, -9878, -9879], + [1, 3, 4977], + [0, 0, 4978, 4979, 6], + [0, -849, -1654, -9880, -2334], + [0, -3209, -4792, -4791, -9881, -4865, -9882, -7857, -1380], + [1, 3, 4981], + [0, 0, 4982, 4983, 8], + [0, -932, -937, -966, -1001, -1442, -1654, -1788, -8501, -2068, -2094, -9883, -2195], + [ + 0, -9199, -9884, -711, -6505, -3184, -3756, -4055, -1460, -4146, -2006, -9885, -2362, -3018, -2410, -6597, + -2548, -9886 + ], + [1, 3, 4985], + [0, 0, 4986, 4987, 8], + [ + 0, -510, -526, -528, -549, -9887, -9888, -551, -556, -559, -9889, -566, -9890, -9891, -9892, -9893, -9894, + -9895, -9896, -9897, -9898, -9899, -9900, -9901, -9902, -9903, -689, -704, -932, -9904, -1045, -1107, -1127, + -1132, -1134, -1138, -9905, -9906, -1452, -1650, -1797, -2125, -2127, -2128, -2131, -9907, -5860, -2138, -2143, + -9266, -2187, -2493 + ], + [0, -1382, -1348, -9780, -9908, -3582], + [1, 3, 4989], + [0, 0, 4990, 4991, 4], + [ + 0, -7, -8, -9, -10, -13, -3204, -42, -3983, -365, -407, -410, -3037, -3040, -3052, -427, -428, -4837, -9909, + -535, -774, -928, -932, -948, -958, -959, -969, -970, -1028, -9910, -4693, -9911, -1127, -1131, -1132, -1134, + -1137, -1140, -1149, -9912, -1160, -1162, -1339, -1415, -1419, -1437, -1541, -1874, -1942, -9913, -2006, -2019, + -2162, -2193, -2299, -2351, -2379, -2410, -2466, -6859, -2476, -5627, -2567 + ], + [ + 0, -9914, -9915, -9916, -9917, -9918, -3162, -3962, -9567, -3823, -3214, -3862, -775, -3264, -3926, -5538, + -2006, -2476, -475, -2299, -3095, -2410 + ], + [1, 3, 4993], + [0, 220, 4994, 4995, 5], + [0, -633, -1059, -2319], + [0, -4004, -1384], + [1, 3, 4997], + [0, 4998, 4999, 5000, 6], + [0, -9919, -9920, -9921], + [0, -3037, -3664, -932, -1942, -2080, -2125, -2127, -2376, -2387, -2410, -2469], + [0, -6143, -9922, -6134, -9923, -9924, -3214, -3966, -2410], + [1, 3, 5002], + [0, 5003, 5004, 221, 5], + [ + 0, -2323, -834, -9925, -1805, -2446, -668, -812, -2387, -1548, -2177, -2240, -3547, -2347, -9926, -2291, -9927, + -9928, -9929, -9422, -9930, -9931, -9932, -9933, -9934, -9935, -9936, -9937, -9938 + ], + [ + 0, -1415, -2125, -2388, -2375, -1417, -5673, -2231, -2410, -9939, -3136, -3037, -9940, -3738, -1534, -3198, + -3044, -3199, -9941, -9942, -7836, -4202, -9943 + ], + [1, 3, 5006], + [0, 5007, 5008, 5009, 5], + [0, -3978], + [ + 0, -3983, -3048, -3136, -3037, -9947, -1077, -1415, -1417, -9948, -1772, -1942, -1978, -2125, -2177, -2184, + -2303, -2392, -2410 + ], + [0, -9949, -1386, -3167, -3839, -3162, -8585, -3095, -9950, -3119, -5270], + [1, 3, 5011], + [0, 5012, 5013, 5014, 4], + [0, -9951, -9952, -812, -9953, -1554, -9954, -9955, -9956, -9957], + [ + 0, -9958, -3470, -7040, -3471, -3035, -4269, -3198, -9959, -9960, -3621, -3037, -9961, -4372, -427, -428, -664, + -665, -932, -940, -1654, -1788, -1942, -2174, -2188, -2210, -2379, -2384, -2402, -2410, -2446 + ], + [0, -2071, -9844, -9962, -9963], + [1, 3, 5016], + [0, 0, 5017, 7, 8], + [0, -1654, -932], + [1, 3, 5019], + [0, 5020, 5021, 7, 5], + [0, -9964, -9788, -9965], + [0, -9966, -1032, -1445, -2322], + [1, 3, 5023], + [0, 0, 5024, 5025, 4], + [0, -515, -1788, -2322, -932, -6283, -1365, -2156, -5834, -6402], + [0, -2444, -8038, -4004], + [1, 3, 5027], + [0, 5028, 5029, 184, 9], + [0, -680], + [0, -686, -2250], + [1, 3, 5031], + [0, 5032, 88, 5033, 4], + [0, -9967], + [ + 0, -6836, -9968, -7440, -8421, -8130, -9969, -1107, -9095, -9970, -1391, -5572, -3581, -5574, -5569, -8129, + -2265, -4004 + ], + [1, 3, 5035], + [0, 5036, 5037, 5038, 11], + [0, -9971, -7408], + [0, -519, -6997, -824, -999, -1591, -2384, -2541], + [0, -1109, -5897, -9972, -3551, -1380, -9973, -1764, -2552, -1391, -7440, -6659, -8427, -9974, -687, -8425, -7304], + [1, 3, 5040], + [0, 0, 14, 5041, 6], + [0, -7208, -1391, -7440, -4004, -8038, -9716, -9975, -9976, -5493], + [1, 3, 5043], + [0, 0, 5044, 5045, 9], + [0, -664, -985, -1202, -1654, -1655, -2127], + [0, -7440, -1391, -9977, -1403, -3214, -9978, -8493, -7208, -9716, -8038, -9571, -5846], + [1, 3, 5047], + [0, 0, 5048, 5049, 5], + [0, -1654, -2081], + [0, -3264, -9950, -9979, -5065], + [1, 3, 5051], + [0, 0, 5052, 5053, 5], + [0, -3037, -519, -2331, -2384, -2541], + [0, -5827, -8038, -8027, -9980, -8800, -9753, -6408, -7440, -6659, -1391], + [1, 3, 5055], + [0, 5056, 222, 5057, 5], + [0, -9981], + [0, -7440, -9983, -7084, -9984, -9261, -6659, -6836, -1958, -4000, -3974, -1391], + [1, 3, 5059], + [0, 0, 31, 5060, 11], + [0, -4865, -1402, -5839], + [1, 3, 5062], + [0, 0, 5063, 5064, 11], + [0, -985, -1202, -1654, -2127], + [0, -7440, -1391, -9977, -1403, -9978, -8493, -9985, -5269, -7208, -8038, -9571, -5846], + [1, 3, 5066], + [0, 5067, 5068, 7, 5], + [0, -1729, -2516], + [0, -664, -1452, -9986, -1654, -1722], + [1, 3, 5070], + [0, 5071, 5072, 5073, 4], + [0, -1107, -1758, -1801, -510, -2518, -9632, -1650, -987, -1442, -2114, -2525, -931, -1276, -2297], + [0, -1452, -2125, -1754, -756, -2111], + [0, -4005, -9987, -9988, -9989], + [1, 3, 5075], + [0, 5076, 56, 89, 4], + [0, -1078, -2446, -7885], + [1, 3, 5078], + [0, 5079, 5080, 5081, 5], + [0, -513, -823, -896, -9990, -1571, -1887, -2355, -9991], + [ + 0, -9992, -526, -527, -532, -534, -536, -544, -546, -9993, -551, -555, -7890, -558, -565, -567, -664, -9994, + -748, -767, -778, -932, -980, -1017, -1041, -1074, -1168, -1171, -1184, -1226, -1243, -1322, -1331, -1471, + -1475, -1476, -1482, -7759, -1490, -1491, -1492, -1521, -1522, -8936, -1654, -2210, -2211, -2275, -2388, -2410, + -2417, -2437, -2476, -2479, -9995, -2481, -2483, -2484, -2485, -2501, -2505, -2508 + ], + [0, -1407, -2476, -3527, -3095, -3098, -3160, -3161], + [1, 3, 5083], + [0, 5084, 156, 5085, 4], + [0, -233], + [0, -6748, -3215, -4377, -5829, -9567, -687, -3957, -6722, -1838, -6747], + [1, 3, 5087], + [0, 5088, 5089, 7, 4], + [0, -9996, -683, -719, -9997, -9998, -1650, -9999, -2416, -2595, -10000], + [ + 0, -10001, -10002, -756, -1004, -10003, -10004, -10005, -10006, -10007, -10008, -10009, -10010, -10011, -10012, + -10013, -10014, -10015, -10016, -1610, -1810, -10017, -2125, -10018, -3013 + ], + [1, 3, 5091], + [0, 5092, 5093, 5094, 5], + [0, -510, -10019, -1863], + [0, -190, -932, -4719, -1110, -1654, -1980], + [0, -7641, -687, -9218, -10020], + [1, 3, 5096], + [0, 5097, 5098, 5099, 4], + [0, -10021], + [ + 0, -3326, -351, -3561, -3266, -4964, -10022, -10023, -683, -767, -10024, -1344, -1437, -10025, -1534, -1639, + -10026, -2127, -4063, -8896 + ], + [0, -10027, -6527, -5182, -10028, -10029, -8636], + [1, 3, 5101], + [0, 5102, 5103, 223, 6], + [0, -1107, -1413, -10030], + [0, -932, -10031], + [1, 3, 5105], + [0, 0, 5106, 223, 5], + [0, -3244, -190, -501, -10032, -888, -932, -952, -1107, -1110, -1449, -1942, -2162], + [1, 3, 5108], + [0, 5109, 0, 5110, 5], + [0, -1088, -1650, -10033, -2111, -2424, -711, -10034, -10035], + [0, -3634, -3440], + [1, 3, 5112], + [0, 5113, 0, 107, 4], + [0, -236, -237, -1363, -1417], + [1, 3, 5115], + [0, 5116, 5117, 5118, 6], + [0, -10036, -10037], + [0, -6256, -21, -23, -26, -40, -86, -9404, -533, -10038, -756, -1344, -1415, -1942], + [0, -4215, -1415, -5129, -886, -659, -4004, -5119], + [1, 3, 5120], + [0, 5121, 5122, 107, 6], + [0, -236, -4019, -237, -668, -4021, -1363, -4023, -1427, -4031, -2550], + [0, -3041], + [1, 3, 5124], + [0, 5125, 224, 7, 6], + [0, -10039, -8434, -668, -1950], + [1, 3, 5127], + [0, 5128, 224, 7, 5], + [0, -10040, -10041, -4647, -3037, -1449], + [1, 3, 5130], + [0, 5131, 5132, 7, 4], + [0, -10040, -10042, -237, -5129, -1427, -1449], + [0, -3136, -4647, -3037, -1344, -1415, -1650, -1942, -1952, -2125, -2375, -2410], + [1, 3, 5134], + [0, 5135, 5136, 7, 9], + [0, -10040, -10042, -237, -3037, -5129, -1427, -4031], + [0, -4034, -703], + [1, 3, 5138], + [0, 5139, 5140, 5141, 5], + [0, -1418], + [ + 0, -50, -3615, -3244, -190, -8433, -3136, -427, -428, -932, -940, -948, -958, -959, -967, -1110, -1344, -1415, + -10043, -1428, -1534, -1942, -2375, -5232, -2410 + ], + [0, -1415, -10044, -1015, -10045, -4004, -3634, -6538], + [1, 3, 5143], + [0, 5144, 5145, 5146, 4], + [0, -1077, -1805], + [ + 0, -23, -2695, -366, -407, -409, -410, -10046, -3136, -10047, -3037, -10048, -3040, -3052, -6192, -485, -533, + -534, -542, -561, -594, -635, -656, -661, -747, -778, -779, -796, -865, -866, -929, -932, -941, -10049, -1017, + -1041, -1077, -1331, -1352, -1415, -1426, -1428, -10050, -1643, -1762, -1889, -1903, -1908, -1918, -1927, -1966, + -10051, -2006, -2010, -2015, -2019, -2041, -2643, -2114, -2116, -2162, -2163, -2177, -2233, -2275, -2318, -2335, + -2410, -2437, -10052, -2501, -2502, -2505, -2507, -2526 + ], + [0, -1415, -3264, -6863, -9246, -3862], + [1, 3, 5148], + [0, 5149, 5150, 7, 4], + [0, -1650, -2269, -2446, -6597], + [0, -1415, -10053, -2218], + [1, 3, 5152], + [0, 0, 0, 5153, 5], + [0, -1415, -2552, -10054, -10055], + [1, 3, 5155], + [0, 5156, 5157, 7, 6], + [0, -668, -1119, -4024, -1425, -1427, -4031, -2218, -8204], + [0, -4035, -2435], + [1, 3, 5159], + [0, 5160, 5161, 7, 8], + [0, -237, -3037, -668, -680, -1119, -1864], + [0, -4035, -8523, -1548], + [1, 3, 5163], + [0, 5164, 5165, 7, 5], + [0, -480, -668, -4026, -4032, -2218, -6715, -2269], + [ + 0, -21, -23, -40, -42, -190, -5121, -237, -3470, -3471, -3037, -533, -10056, -767, -932, -940, -948, -8339, + -959, -967, -1110, -1415, -10043, -1942, -2125, -2174, -2177, -2410, -2411 + ], + [1, 3, 5167], + [0, 5168, 5169, 7, 6], + [0, -3037, -9581, -1427, -1632, -2297], + [0, -23, -10057, -4373, -9586, -1100, -10058, -10059], + [1, 3, 5171], + [0, 5172, 5173, 5174, 4], + [ + 0, -10060, -10061, -10062, -10063, -10064, -10065, -10066, -10067, -10068, -10069, -10070, -10071, -10072, + -10073, -10074, -10075, -10076, -10077, -10078, -10079, -10080, -10081, -10082, -10083, -10084, -10085, -10086 + ], + [ + 0, -10087, -10088, -10089, -10090, -4066, -350, -6572, -351, -3266, -5286, -932, -10091, -1848, -2127, -2132, + -6483, -9701, -2386, -2410, -10092, -2469 + ], + [0, -6527, -10093, -10094, -7715, -8640, -9235, -8653, -10095, -7069, -7066], + [1, 3, 5176], + [0, 0, 5177, 7, 6], + [ + 0, -23, -3341, -3196, -24, -10096, -33, -5828, -3367, -3077, -3389, -3408, -3412, -42, -3193, -46, -47, -10097, + -10098, -4776, -4777, -10099, -10100, -10101, -3037, -3664, -461, -10102, -672, -727, -734, -6860, -10103, -930, + -932, -944, -989, -990, -1026, -1394, -1640, -1651, -1667, -10104, -1852, -6568, -1940, -10105, -1942, -2006, + -2019, -2080, -10106, -6570, -2335, -3535, -2376, -2410, -2469, -2476, -8416, -2564 + ], + [1, 3, 5179], + [0, 0, 0, 5180, 6], + [0, -3494, -10107, -10108, -3495, -10109, -10110, -3264, -5554, -3496, -10111, -3214, -2410, -10112, -1432], + [1, 3, 5182], + [0, 5183, 5184, 5185, 4], + [0, -1432], + [ + 0, -3615, -7155, -367, -406, -409, -410, -3040, -3052, -427, -428, -767, -778, -932, -940, -967, -969, -970, + -979, -1331, -1449, -1942, -2006, -2019, -8276, -2275, -3752, -2379, -2391, -2410, -2469, -2501, -2503, -2505 + ], + [0, -2006, -1432, -3264, -5554, -3496, -10113, -10109, -10110, -10114], + [1, 3, 5187], + [0, 5188, 5189, 5190, 4], + [0, -668, -10115, -10116, -10117, -2183, -3523, -1553, -1552, -10118], + [0, -1788, -510, -1127, -2210, -1813, -756, -1132, -6758, -1153, -722, -10119, -1149, -1144, -1146], + [ + 0, -10120, -10121, -10122, -10123, -10124, -10125, -10126, -10127, -10128, -10129, -10130, -10131, -10132, + -10133, -10134, -10135, -10136, -10137, -10138, -10139, -10140, -10141, -10142, -10143, -10144, -10145, -10146, + -10147, -10148, -10115, -10149, -10150, -10151, -10152, -10153, -10154, -10155, -10156, -10157, -10158, -10159, + -10160, -10161, -10162, -10163, -10164, -10165, -10166, -10167, -10168, -10169, -10170, -10171, -10172, -10173, + -10174, -10175, -10176, -10177, -10178, -10179, -10180, -10180, -10181, -10182, -10183, -10184, -10185, -10186, + -10187, -10188, -10189, -10190, -10191, -10192, -10193, -10194, -10195, -10196, -10197, -10198, -10199, -10200, + -10201, -10202, -10203, -10204, -10205, -10206, -10207, -5158, -10208, -10209, -10210, -10211, -10212, -10213, + -10214, -10215, -10216, -10217, -10218, -10219, -10219, -10220, -10221, -10222, -10223, -10224, -10225, -10226, + -10227, -2183, -10228, -10229, -10230, -10231, -10232, -10233, -10234, -10235, -10236, -10237, -10238, -10239, + -10240, -10241, -10242, -10243, -10244, -10245, -10246, -10247, -10248 + ], + [1, 3, 5192], + [0, 5193, 5194, 5195, 4], + [0, -10249, -10250, -3880, -10251, -10252, -3888, -3117], + [0, -9163, -3890, -3891, -3893, -3037, -2410], + [0, -4058, -3926], + [1, 3, 5197], + [0, 0, 0, 5198, 5], + [0, -2006, -4125, -9800, -4633, -10253, -4634], + [1, 3, 5200], + [0, 0, 0, 5201, 10], + [0, -1437, -3214, -4865, -3482], + [1, 3, 5203], + [0, 5204, 5205, 7, 4], + [0, -1437], + [ + 0, -1127, -2125, -1110, -367, -10254, -10255, -1152, -10256, -1542, -10257, -10258, -10259, -10260, -1136, + -1139, -9550 + ], + [1, 3, 5207], + [0, 0, 5208, 5209, 11], + [0, -3037, -1654, -2410], + [0, -6118, -7304], + [1, 3, 5211], + [0, 5212, 5213, 5214, 4], + [0, -10261, -7829, -1107, -1441, -1758], + [0, -481, -589, -709, -1437, -1452, -1646, -1654, -1689, -2111, -2184, -2269, -2501, -2503], + [0, -6146, -10262, -10263], + [1, 3, 5216], + [0, 0, 5217, 5218, 4], + [ + 0, -3266, -932, -943, -957, -963, -1127, -10258, -1137, -1146, -9544, -1149, -10264, -10265, -1942, -1989, + -2091, -2127, -5090, -2134, -2250 + ], + [0, -743, -6920, -4865, -10266, -4791, -3323, -1441, -633], + [1, 3, 5220], + [0, 5221, 5222, 5223, 8], + [0, -503], + [0, -1788, -5514, -1654, -932, -2127, -2195, -1103, -589, -709, -1023, -2140, -350, -351, -10267], + [0, -2548, -3215, -4142, -10268], + [1, 3, 5225], + [0, 5226, 5227, 5228, 10], + [0, -25, -5223, -719, -812, -822, -1107, -10269, -10270, -2001, -10271], + [ + 0, -190, -4010, -367, -4007, -7043, -3037, -720, -740, -796, -932, -940, -959, -967, -1415, -1448, -9390, -9393, + -1942, -2125, -2410, -2411 + ], + [0, -10272, -856], + [1, 3, 5230], + [0, 5231, 5232, 7, 4], + [0, -714, -719, -1077, -10273, -10274, -10275, -10276, -10277, -10278, -10279], + [0, -5325, -3048, -3037, -3664, -1753, -2379, -2391, -2410, -2469], + [1, 3, 5234], + [0, 5235, 5236, 5237, 6], + [ + 0, -668, -693, -719, -10280, -988, -1000, -1107, -1333, -1442, -10281, -10282, -6611, -1548, -1645, -5199, + -6533, -1965, -10283, -2114, -2270, -2271, -10284, -10285, -9247, -10286, -2538 + ], + [0, -664, -756, -3607, -1452, -1654, -2081, -2123, -2210, -2211, -10287, -10288, -2536], + [0, -8172, -4144, -7148, -8170, -4901, -5874], + [1, 3, 5239], + [0, 5240, 5241, 5242, 4], + [0, -25, -10289, -3661, -615, -10290, -930, -10291, -8985, -1600, -1601, -1610, -1650, -10292, -2271, -2424], + [0, -469, -1168, -1197, -1225, -1788], + [0, -856, -3214], + [1, 3, 5244], + [0, 5245, 0, 5246, 4], + [0, -6789, -7573, -10293, -7575, -1446, -10294, -7576], + [0, -1446, -3690, -5731, -3964, -3214, -856], + [1, 3, 5248], + [0, 5249, 0, 5250, 5], + [0, -6789, -717, -718, -10295, -843, -1447, -2576, -7576], + [0, -1446, -1599, -3690, -3262, -3214, -3756, -856], + [1, 3, 5252], + [0, 5253, 5254, 225, 5], + [ + 0, -10296, -10297, -10298, -9683, -785, -10299, -10300, -1319, -1337, -1343, -1397, -1839, -10301, -10302, + -2364, -2426, -10303, -10304, -6587, -10305, -8352 + ], + [ + 0, -7196, -932, -957, -965, -1110, -1442, -1645, -1654, -10306, -1772, -1810, -1880, -2177, -2188, -2354, + -10307, -10308 + ], + [1, 3, 5256], + [0, 5257, 5258, 225, 5], + [0, -10309, -10310, -785, -1333, -10311, -1839, -2105, -8352, -2540], + [0, -633, -714, -1339, -1452, -6810, -1754, -1888, -1980, -10312, -2493], + [1, 3, 5260], + [0, 0, 5261, 5262, 4], + [0, -756, -1127, -1132, -6114, -1405, -1654, -2081, -2111, -10313], + [0, -640, -5559, -3214, -4055, -6917, -8127, -2265, -6231, -3673], + [1, 3, 5264], + [0, 5265, 5266, 7, 8], + [0, -687, -6392, -1000, -1333, -1548, -1645, -2271], + [0, -510, -633, -739, -6019, -756, -1405, -1445, -1661, -1754, -1978, -2081, -10314, -2210, -6430, -10315, -10316], + [1, 3, 5268], + [0, 5269, 226, 5270, 5], + [0, -668, -1574, -1877, -6715, -2343, -9493], + [0, -1452, -6863, -4144, -3276, -7148, -5874, -10317, -6864, -3240], + [1, 3, 5272], + [0, 5273, 5274, 5275, 4], + [0, -10318, -10319], + [0, -3621, -3037, -427, -428, -932, -936, -958, -1654, -1788, -2379, -2410], + [0, -4055, -10320, -788, -6473, -8257, -10321, -10322, -1838, -3215, -1454, -10323, -687], + [1, 3, 5277], + [0, 0, 5278, 7, 8], + [0, -2251], + [1, 3, 5280], + [0, 0, 0, 5281, 9], + [0, -4055, -4058], + [1, 3, 5283], + [0, 5284, 5285, 5286, 4], + [0, -411, -414, -2702, -668, -679, -3780, -6869, -1369, -1460, -1581, -10324, -2213, -10325], + [0, -3037, -726, -1098, -1344, -2987, -8065, -2331, -2400, -2410], + [0, -4182, -3844, -8959, -3817, -3816, -10326, -4215, -4041, -4004, -3634, -3691, -6582, -10327], + [1, 3, 5288], + [0, 5289, 5290, 5291, 10], + [0, -655, -6511, -1402, -7584, -1795], + [0, -2832, -5834, -8084, -8086, -8090, -10328, -8096, -516, -5835, -932, -1365, -1777, -2156, -2322], + [0, -4055, -6231, -10329, -6131, -7283, -10330], + [1, 3, 5293], + [0, 0, 0, 5294, 5], + [0, -4055, -6231, -10331, -9594], + [1, 3, 5296], + [0, 0, 5297, 5298, 11], + [ + 0, -753, -932, -943, -958, -966, -968, -974, -1771, -2081, -2127, -2129, -2131, -2137, -2140, -2210, -2319, + -10332 + ], + [0, -4055, -1460, -8108, -4795, -3217], + [1, 3, 5300], + [0, 0, 5301, 7, 4], + [0, -1654, -932, -2125, -2410, -3037, -3621, -428, -427], + [1, 3, 5303], + [0, 5304, 206, 5305, 4], + [0, -8984], + [0, -2059, -6234, -6656, -4055, -1076, -1077], + [1, 3, 5307], + [0, 0, 5308, 5309, 5], + [0, -7055, -10333, -664, -932, -10334, -1654], + [0, -4055, -4058, -1463, -2451, -3926], + [1, 3, 5311], + [0, 5312, 5313, 5314, 5], + [0, -2346, -10335], + [0, -2322, -8392, -10336, -7650, -6538, -994], + [0, -4055, -5827, -9292, -3215, -510, -6747], + [1, 3, 5316], + [0, 5317, 5318, 5319, 8], + [0, -1681, -10337, -2177, -10338, -10339, -10340, -1563, -10341, -10342, -1562], + [0, -1780, -1788, -514, -664, -1654, -2210, -932, -739], + [0, -3175], + [1, 3, 5321], + [0, 5322, 5323, 7, 5], + [0, -23, -10343, -10344, -1816, -1863], + [0, -5694, -3037, -10345, -653, -928, -932, -940, -1640, -1645, -1805, -1942, -2127, -2358, -2410], + [1, 3, 5325], + [0, 0, 5326, 5327, 4], + [0, -3037, -3664, -8436, -2391, -2410, -2469], + [0, -4125, -3967, -3445, -10346, -2006, -5269, -3578, -2034, -3138], + [1, 3, 5329], + [0, 5330, 5331, 5332, 6], + [0, -10347, -1834, -8578, -2062], + [0, -2359, -1127, -1989, -932, -589, -1132, -633, -1874, -2410, -1339, -10348, -1130, -1148, -10349], + [0, -5408, -6827, -10350], + [1, 3, 5334], + [0, 0, 5335, 5336, 6], + [ + 0, -2200, -1415, -1344, -932, -2910, -2375, -2379, -1942, -2410, -23, -1534, -632, -726, -958, -940, -967, + -1419, -428, -427, -948 + ], + [0, -3175, -4865], + [1, 3, 5338], + [0, 0, 5339, 5340, 4], + [0, -1003, -1405, -1654], + [0, -3175, -6422, -6420], + [1, 3, 5342], + [0, 5343, 5344, 5345, 6], + [ + 0, -6134, -2359, -1107, -1640, -10351, -2550, -9968, -1548, -1576, -1650, -2125, -729, -679, -1645, -2228, + -1336, -2231, -617, -1119, -5506, -1997, -2594, -10352, -5758 + ], + [ + 0, -664, -5735, -1654, -7243, -2210, -2518, -932, -793, -2491, -1978, -2293, -633, -1474, -1972, -2211, -10353, + -667, -1482, -1413, -1481, -86, -665, -1472, -2174, -966, -958, -10354, -1483, -3471, -968, -1475, -10355, -943, + -974, -1479, -9404, -3470, -1473 + ], + [0, -1471, -10356, -4043, -1471, -3756, -3214, -3634, -4004, -8908, -10357], + [1, 3, 5347], + [0, 5348, 5349, 5350, 6], + [0, -10358, -1548, -10359, -1645, -8016, -742], + [ + 0, -1763, -627, -664, -1471, -1654, -2210, -2363, -5482, -932, -2114, -2491, -633, -2211, -2410, -1771, -1413, + -1481, -6399, -964, -1475 + ], + [0, -10360, -10361, -10362, -633], + [1, 3, 5352], + [0, 5353, 5354, 5355, 4], + [0, -1980, -2734, -10363], + [0, -1127, -932, -1159, -1131, -1152, -1542, -966, -1129, -958, -968, -943, -974, -1150, -1151], + [0, -10360, -10364, -2734, -10365], + [1, 3, 5357], + [0, 0, 0, 5358, 4], + [0, -1471, -10360, -664, -1654, -2198], + [1, 3, 5360], + [0, 227, 5361, 5362, 9], + [0, -664, -1471, -1654, -2210, -2250, -1482, -86, -2174, -3471, -9404, -3470], + [0, -10360, -10364, -10366], + [1, 3, 5364], + [0, 5365, 5366, 5367, 5], + [0, -5086, -6029, -5087, -5088, -5089, -1645], + [ + 0, -86, -3307, -9248, -3470, -3471, -7041, -664, -711, -932, -943, -958, -966, -968, -974, -1127, -1132, -1155, + -1159, -1344, -10367, -1471, -10368, -1479, -1482, -10369, -1654, -7243, -2111, -2174, -2210, -2211 + ], + [0, -10360, -10361, -10370, -4005, -1405], + [1, 3, 5369], + [0, 227, 5370, 5371, 4], + [0, -1127, -1138, -1144, -1155, -1413, -1471, -1481, -1860], + [ + 0, -10360, -10364, -4865, -6413, -10371, -10372, -10373, -10374, -7490, -10375, -10376, -10377, -10378, -10379, + -10380 + ], + [1, 3, 5373], + [0, 5374, 5375, 5376, 5], + [0, -10381], + [ + 0, -664, -10382, -6134, -932, -943, -968, -974, -1127, -1131, -1132, -1152, -1159, -1163, -1471, -1542, -10383, + -1972 + ], + [0, -10360, -10364, -5799, -7489], + [1, 3, 5378], + [0, 5379, 5380, 5381, 4], + [0, -1401, -2518], + [0, -86, -3307, -3470, -3471, -7041, -1344, -1471, -1482, -1654, -1868, -2174, -2250], + [0, -1471, -3634, -10360, -10364, -10384], + [1, 3, 5383], + [0, 34, 5384, 5385, 5], + [ + 0, -664, -6134, -932, -943, -968, -969, -974, -1127, -1129, -1131, -1149, -1150, -1151, -1152, -1159, -1163, + -1471, -1542, -7243, -2210, -2211 + ], + [0, -10360, -10364, -8996], + [1, 3, 5387], + [0, 5388, 5389, 5390, 5], + [0, -1413], + [ + 0, -1127, -1344, -1471, -932, -1412, -86, -2174, -966, -958, -3471, -7041, -968, -943, -974, -1479, -3472, + -9404, -3470 + ], + [0, -10360, -10385, -1412], + [1, 3, 5392], + [0, 228, 5393, 5394, 6], + [ + 0, -664, -932, -943, -968, -969, -974, -1127, -1129, -1131, -1150, -1152, -1155, -1159, -1471, -1474, -1475, + -1479, -1489, -1542, -1654, -1658, -2210, -3470, -3471, -2174, -86, -3307, -1344 + ], + [0, -10360, -10385, -1654], + [1, 3, 5396], + [0, 5397, 5398, 5399, 4], + [0, -668, -1574, -2269], + [0, -664, -1127, -1131, -1138, -1144, -1150, -1155, -1162, -1413, -1474, -1477, -1542, -1654, -1860], + [0, -10360, -10370, -1654, -664, -834, -8619], + [1, 3, 5401], + [0, 5402, 5403, 5404, 4], + [0, -1548, -1860], + [0, -932, -943, -969, -974, -1127, -1129, -1131, -1150, -1152, -1155, -1159, -1413, -1471, -1481, -1542], + [0, -10360, -10364, -1859], + [1, 3, 5406], + [0, 0, 5407, 5408, 10], + [0, -664, -1127, -1471, -1654, -1989, -932, -1159, -1131, -1481, -966, -958, -968, -943, -974, -1479], + [0, -1471, -10360, -10385, -1989], + [1, 3, 5410], + [0, 5411, 5412, 5413, 6], + [0, -679, -811], + [0, -23, -3412, -40, -932, -1413, -1471, -1475, -1481, -1483, -2127, -2128, -2129, -2131, -2137], + [0, -6505, -4795, -1471, -3209, -6024, -8257, -3862, -3277, -10361, -10360, -10386, -2127], + [1, 3, 5415], + [0, 0, 5416, 5417, 8], + [0, -1159, -1127, -1131, -1129], + [0, -10360, -10364, -10387], + [1, 3, 5419], + [0, 5420, 5421, 5422, 4], + [0, -10388, -5471, -4881], + [0, -86, -3307, -3470, -3471, -7041, -3048, -10389, -3037, -1344, -1412, -1471, -1481, -2174, -2410], + [0, -10360, -10364, -10390, -10391, -5471], + [1, 3, 5424], + [0, 0, 0, 5425, 4], + [0, -1471, -10360, -2210, -4215], + [1, 3, 5427], + [0, 5428, 5429, 5430, 5], + [0, -1119], + [0, -4035, -652, -932, -1413, -1471, -10392, -1475, -1481, -1942, -2127, -10393], + [0, -10360, -10361, -9454, -3214], + [1, 3, 5432], + [0, 187, 5433, 5434, 11], + [0, -664, -756, -1654, -1771, -1788, -2210, -2211], + [0, -10360, -6863], + [1, 3, 5436], + [0, 5437, 5438, 48, 8], + [0, -1107, -1645, -2508], + [ + 0, -21, -23, -39, -40, -86, -3307, -7166, -533, -664, -665, -767, -932, -958, -967, -1344, -1405, -1412, -1415, + -1471, -1474, -1475, -1482, -1491, -1534, -1626, -1654, -1939, -1942, -1978, -2251, -2501 + ], + [1, 3, 5440], + [0, 0, 27, 5441, 8], + [0, -10394, -1493, -10395, -4111, -10396, -10397, -10398, -10399, -1494], + [1, 3, 5443], + [0, 0, 0, 5444, 6], + [0, -1494, -2063, -3103], + [1, 3, 5446], + [0, 5447, 5448, 5449, 6], + [0, -10400], + [ + 0, -10401, -3653, -2581, -6486, -3664, -2125, -10402, -2384, -2469, -10403, -10404, -10405, -10406, -10407, + -10408, -10409 + ], + [ + 0, -7372, -5846, -4634, -3324, -6495, -10410, -6005, -3445, -10411, -2071, -1671, -3742, -1691, -6321, -10412, + -1724, -1582, -10413, -654 + ], + [1, 3, 5451], + [0, 0, 5452, 5453, 4], + [0, -985, -2447], + [0, -5514, -687, -712, -714, -4000, -3974], + [1, 3, 5455], + [0, 5456, 5457, 5458, 5], + [0, -985, -10414, -812, -1548, -8945, -2068, -2350, -10415, -713, -719, -1381, -2115, -1097, -10416], + [ + 0, -1857, -1788, -2384, -664, -1410, -2322, -1344, -1654, -1691, -2210, -932, -1692, -2125, -879, -1658, -2245, + -10417, -2379, -10418, -1942, -2320, -756, -767, -1464, -2211, -2410, -3037, -8946, -1534, -10419, -10420, -665, + -2234, -10421, -958, -10422, -10423, -940, -967, -5984 + ], + [0, -10424, -5101, -6321, -10425, -1691, -10426, -2245, -5378, -1682, -4258, -10427, -7641, -7773, -7685], + [1, 3, 5460], + [0, 5461, 5462, 5463, 4], + [0, -8520, -1026, -10428, -1431, -1442, -1646, -10429, -1863, -1864, -10430, -2271, -2564], + [0, -237, -7057, -3660, -5686, -8523, -3046, -4879, -10431, -4651, -2392, -2410], + [ + 0, -10432, -10433, -7711, -687, -10434, -3015, -6659, -3016, -10435, -10436, -8035, -8257, -6999, -5573, -3214, + -7148, -10437, -10438, -10439, -10440, -10441, -5897, -9044, -3694, -2410, -10442, -10443, -7441, -10444 + ], + [1, 3, 5465], + [0, 0, 5466, 5467, 6], + [0, -932, -1111, -10445, -1572], + [0, -775, -3589, -5387, -10366, -10384, -10446, -7489, -10387, -10447, -10448, -10449], + [1, 3, 5469], + [0, 5470, 0, 5471, 4], + [0, -1640, -2536, -812, -10450, -1801], + [0, -5817, -5937, -5940], + [1, 3, 5473], + [0, 5474, 5475, 5476, 4], + [ + 0, -459, -736, -737, -6920, -10451, -7412, -907, -929, -1072, -10452, -1335, -1504, -1641, -1800, -1840, -2255, + -2401, -2453 + ], + [0, -652, -10453, -2226, -2250, -2293], + [0, -3578, -3994, -1334, -9668, -3161, -5401, -6854], + [1, 3, 5478], + [0, 5479, 5480, 5481, 5], + [0, -10454, -3734, -5586, -10455, -1070, -2400, -2564], + [0, -2832, -2581, -50, -8280, -10456, -3758, -8317, -10457, -4203, -1501, -2293, -2386, -7457, -2392, -2410], + [0, -1501, -10458, -6463, -4055, -10459, -3215, -4053], + [1, 3, 5483], + [0, 5484, 5485, 5486, 11], + [0, -10455, -10460, -2401], + [0, -946, -1344, -1501, -1654, -1788, -2198, -2293, -2541], + [0, -10461, -4055, -10458, -1501, -10459], + [1, 3, 5488], + [0, 0, 5489, 5490, 5], + [0, -708, -1415, -1612, -2250], + [0, -1501, -5401, -10462], + [1, 3, 5492], + [0, 5493, 5494, 5495, 6], + [0, -651, -668, -10463, -1800, -10464], + [0, -619, -652, -946, -1501, -10465, -10466, -2210, -2293, -2541], + [0, -1501, -5401, -3444, -1573], + [1, 3, 5497], + [0, 5498, 5499, 5500, 4], + [0, -812, -1504], + [0, -932, -943, -968, -974, -1405, -1501, -1508, -1654, -2198, -2293], + [0, -1501, -5401, -10467, -10468], + [1, 3, 5502], + [0, 5503, 5504, 5505, 10], + [0, -812, -1335, -1504, -1851], + [0, -1501, -1788, -668, -1344, -1654, -932, -1053, -2293, -10469, -2094, -1534, -86, -1448, -2099, -978, -3307], + [0, -1501, -5401, -10470, -3122], + [1, 3, 5507], + [0, 5508, 5509, 5510, 11], + [0, -812, -10471], + [0, -932, -943, -958, -966, -968, -974, -1405, -1501, -1654, -2293], + [0, -1501, -5401, -6656, -5142, -10472], + [1, 3, 5512], + [0, 5513, 5514, 5515, 4], + [0, -1717, -1974, -10473, -2071, -2550, -1548, -2286, -1004, -617, -10474], + [0, -664, -510, -1654, -2210, -2198, -2293, -710], + [0, -5418, -1986, -8615, -2071], + [1, 3, 5517], + [0, 5518, 5519, 5520, 4], + [ + 0, -10475, -834, -932, -10476, -10477, -986, -10478, -1276, -1309, -1458, -1459, -1650, -2172, -2231, -2234, + -2297, -10479 + ], + [0, -707, -10480, -963, -10481, -2125, -2177], + [0, -4004], + [1, 3, 5522], + [0, 5523, 5524, 5525, 5], + [0, -5895], + [0, -519, -2177, -10482, -2384, -2541], + [0, -10483, -9318, -1764, -7861, -5897, -10484, -10485, -3551], + [1, 3, 5527], + [0, 0, 5528, 5529, 4], + [0, -1464, -10486, -589, -10487, -10488, -1414, -1446, -1548, -1627, -1963, -10489, -2111, -10490, -2424], + [0, -9826, -5112, -6187, -6188, -2444], + [1, 3, 5531], + [0, 0, 5532, 5533, 9], + [ + 0, -2247, -1344, -1471, -1654, -2210, -932, -10491, -2127, -10492, -10493, -2416, -1482, -1489, -1534, -10494, + -10495, -10496, -1480, -4062, -1478, -10497, -1475, -1487, -1479, -1486, -10498, -10499 + ], + [0, -10500, -6917], + [1, 3, 5535], + [0, 0, 5536, 5537, 10], + [0, -589, -1023], + [0, -1519, -10501, -7210, -10502, -2265, -10503], + [1, 3, 5539], + [0, 0, 5540, 5541, 6], + [0, -8511], + [0, -7210, -10504, -5538, -3276], + [1, 3, 5543], + [0, 5544, 0, 5545, 8], + [ + 0, -1787, -1371, -2323, -1866, -2247, -2446, -668, -999, -1392, -1826, -2218, -4701, -2550, -10505, -815, -9809, + -1831, -2125, -2177, -914, -1442, -1827, -2346, -10506, -1077, -1098, -1376, -1591, -10507, -5917, -10508, -715, + -1399, -1418, -1645, -10509, -293, -1100, -1686, -2654, -2410, -10510, -755, -1108, -10511, -10512, -2202, + -1363, -10513, -1769, -10514, -2115, -10515, -2267, -2551, -10516, -305, -8500, -4236, -10517, -10518, -10519, + -1767, -280, -10520, -10521, -2530, -283, -1770, -4283, -4716, -2450, -10522, -10523, -10524, -10525, -10526 + ], + [0, -1520, -10440, -10527], + [1, 3, 5547], + [0, 5548, 5549, 5550, 6], + [0, -10528, -8501, -2387], + [ + 0, -350, -4062, -351, -427, -428, -10529, -10530, -664, -652, -668, -755, -767, -932, -1077, -6720, -1107, + -1111, -1127, -1132, -1134, -1137, -1152, -1161, -1162, -10531, -1418, -10532, -10533, -9237, -1646, -1654, + -10534, -1771, -1856, -10535, -1874, -1961, -10536, -2114, -2127, -2140, -2142, -2177, -2200, -2351, -2379, + -2410, -5252 + ], + [ + 0, -10537, -10538, -10539, -775, -10540, -10541, -10542, -10543, -10544, -1521, -10545, -10546, -4730, -10547, + -3215, -3277, -10548, -10549, -5553, -3770, -3271, -10550, -10551 + ], + [1, 3, 5552], + [0, 0, 5553, 5554, 4], + [ + 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -533, -767, -774, -824, -825, -932, -940, -6929, -958, -959, + -965, -967, -978, -1110, -1344, -1415, -1521, -10552, -1534, -1623, -1771, -1942, -2251, -2269, -2411, -2501 + ], + [0, -2501, -5932, -1521, -10546, -10545, -775, -3277], + [1, 3, 5556], + [0, 5557, 5558, 229, 4], + [0, -10553, -10554, -10555], + [0, -1788, -2322, -2446, -468, -571, -1274, -2250, -2410, -3037, -40, -10556, -10557], + [1, 3, 5560], + [0, 5561, 5562, 5563, 8], + [0, -10559, -6127, -10560], + [ + 0, -10561, -1788, -1107, -2322, -2331, -1032, -2125, -5420, -891, -1274, -1733, -2250, -767, -10562, -10563, + -6128, -10564, -10565, -829, -10566, -10567 + ], + [0, -10558, -1523], + [1, 3, 5565], + [0, 5566, 5567, 229, 11], + [0, -9508, -10568, -10569, -10570, -10571, -10572], + [ + 0, -1788, -2322, -465, -2210, -468, -1032, -5420, -10573, -10574, -1274, -2250, -10562, -633, -2151, -10575, + -10576, -725, -10577, -10578, -829, -10556, -10567 + ], + [1, 3, 5569], + [0, 0, 5570, 5571, 11], + [0, -519, -10579, -10580, -10581, -10582, -10583, -10584, -1703, -10585, -2354, -2541], + [ + 0, -1526, -10582, -10586, -10587, -2265, -7377, -834, -5922, -1087, -6547, -4310, -7378, -10588, -10589, -5554, + -5572, -10590 + ], + [1, 3, 5573], + [0, 5574, 29, 5575, 10], + [0, -280, -4280, -10591, -834, -1645, -1767, -1831, -2323], + [0, -1764, -1776, -4303, -687, -834], + [1, 3, 5577], + [0, 5578, 5579, 5580, 5], + [0, -280, -4283, -283, -680, -1767, -1831, -1957, -10592, -2059, -2177, -2202, -4297], + [0, -4298, -4299, -4300, -4286, -668, -7755, -10593, -2319], + [0, -1764, -1776, -4303, -687, -4304, -1528], + [1, 3, 5582], + [0, 5583, 29, 5584, 5], + [0, -280], + [0, -1764, -1776, -4303, -687, -5889, -10594, -10595], + [1, 3, 5586], + [0, 0, 5587, 5588, 4], + [ + 0, -21, -23, -3367, -3350, -40, -43, -4062, -3266, -539, -664, -757, -10596, -767, -10597, -1405, -1415, -10598, + -10599, -1646, -1654, -1771, -1788, -10600, -2104, -2125, -2127, -2387 + ], + [0, -9917, -9918, -6240, -3962, -3162, -10601], + [1, 3, 5590], + [0, 5591, 5592, 5593, 6], + [0, -1015, -1048, -10602, -10603, -1396, -2068, -2114], + [0, -711, -932, -937, -940, -966, -1001, -1654, -1788, -2210], + [0, -4376], + [1, 3, 5595], + [0, 0, 5596, 5597, 4], + [0, -2581, -3136, -3037, -3806, -755, -1415, -2410, -2447], + [0, -755, -727, -3870, -7282], + [1, 3, 5599], + [0, 0, 0, 5600, 6], + [0, -10604, -7920, -10605, -3264, -1437, -10606, -10607, -2006, -2398, -2435], + [1, 3, 5602], + [0, 5603, 5604, 5605, 8], + [0, -719, -1536, -1639, -3610, -3535, -2548], + [ + 0, -8280, -50, -86, -3307, -190, -3664, -6593, -10608, -767, -932, -940, -965, -967, -4814, -1344, -1661, -1942, + -2177, -2410, -2469 + ], + [0, -7148, -5889, -10609, -932, -1942, -2281, -707, -8169, -7440, -3276, -5874], + [1, 3, 5607], + [0, 5608, 5609, 5610, 4], + [0, -10610, -10611, -1398, -1399, -10612, -10613, -10614, -1826, -2153], + [0, -708, -826, -9464, -1534, -1574, -1788, -1939, -2239, -5747], + [0, -687, -4107, -4108, -4109, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, -4116, -4117], + [1, 3, 5612], + [0, 5613, 5614, 158, 6], + [0, -696, -713, -996, -1575, -2124, -2528], + [0, -5745, -2153, -5747], + [1, 3, 5616], + [0, 5617, 5618, 7, 8], + [0, -10615, -10616, -3297], + [0, -10617, -10618, -4686, -10619, -4690, -2387], + [1, 3, 5620], + [0, 5621, 5622, 5623, 5], + [0, -1548, -1646, -632, -10620, -731], + [0, -1654, -2210, -932, -1663, -1405], + [0, -475, -6205, -5142, -3844, -3113], + [1, 3, 5625], + [0, 5626, 5627, 5628, 6], + [0, -1812, -754, -2178, -714, -1676, -729, -679, -10621, -2186, -994, -1792, -10622, -9502], + [0, -1654, -932, -1452, -2293], + [0, -3577, -3113, -3673, -3844, -1334, -687], + [1, 3, 5630], + [0, 5631, 5632, 7, 4], + [0, -679, -10623, -6696, -2531], + [0, -711, -1654, -2198, -2210], + [1, 3, 5634], + [0, 5635, 5636, 5637, 4], + [0, -6838, -1107, -10532, -1442, -9641, -1542, -1548], + [0, -1127, -1144, -1149, -9650, -9280, -1158, -1972, -2210], + [0, -9219, -2548, -6838, -1127, -727], + [1, 3, 5639], + [0, 5640, 5641, 5642, 4], + [0, -506, -1686, -1872, -10624], + [0, -1127, -1132, -2889, -2541], + [0, -3015, -1107, -1127, -6994, -5572, -10625, -5574, -4792, -8906], + [1, 3, 5644], + [0, 0, 5645, 7, 6], + [0, -756, -932, -966, -1415, -1942, -2251], + [1, 3, 5647], + [0, 5648, 5649, 5650, 4], + [ + 0, -10293, -1586, -10626, -10627, -10628, -10629, -10630, -10631, -2783, -10632, -10633, -10634, -10635, -10636, + -10637, -10638, -10639 + ], + [0, -1729, -2337], + [ + 0, -7646, -3844, -3578, -3673, -3577, -3113, -754, -1640, -3691, -4215, -3690, -1971, -1586, -3445, -3100, + -10640, -1339, -1334, -5735, -1342 + ], + [1, 3, 5652], + [0, 5653, 5654, 5655, 4], + [0, -10347], + [ + 0, -527, -528, -534, -535, -6079, -559, -10641, -571, -10642, -647, -754, -940, -1127, -5974, -1130, -1136, + -1137, -1148, -1149, -10643, -1152, -1655, -10644, -7845, -1161, -10645, -7848, -1344, -1534, -1542, -1654, + -1942, -10646, -5508, -2410, -2416, -2501, -2505 + ], + [0, -10647, -10648, -6005, -10649], + [1, 3, 5657], + [0, 5658, 27, 7, 11], + [0, -523, -812, -10650, -2550], + [1, 3, 5660], + [0, 5661, 5662, 5663, 4], + [0, -755, -812, -1026, -10651, -2550], + [ + 0, -528, -6048, -554, -558, -559, -849, -869, -932, -943, -958, -959, -966, -968, -972, -974, -1415, -1806, + -10652, -2177 + ], + [0, -10653, -10654, -5880, -10655, -7148, -2552, -1764, -8170, -7107, -1838], + [1, 3, 5665], + [0, 0, 0, 5666, 4], + [0, -3209, -10656, -2444], + [1, 3, 5668], + [0, 0, 0, 5669, 4], + [0, -3184, -3209, -10656, -2444], + [1, 3, 5671], + [0, 0, 0, 5672, 10], + [0, -10657, -7370], + [1, 3, 5674], + [0, 0, 0, 5675, 4], + [0, -10657, -656], + [1, 3, 5677], + [0, 0, 0, 5678, 5], + [0, -10657, -10658], + [1, 3, 5680], + [0, 0, 0, 5681, 4], + [0, -10657, -811], + [1, 3, 5683], + [0, 0, 0, 5684, 5], + [0, -10657, -10659], + [1, 3, 5686], + [0, 0, 0, 5687, 5], + [0, -10657, -5841], + [1, 3, 5689], + [0, 0, 0, 5690, 5], + [0, -10657, -6283], + [1, 3, 5692], + [0, 0, 0, 5693, 9], + [0, -10657, -9052], + [1, 3, 5695], + [0, 0, 0, 5696, 9], + [0, -10657, -10660], + [1, 3, 5698], + [0, 0, 0, 5699, 4], + [0, -10657, -10661], + [1, 3, 5701], + [0, 0, 0, 5702, 4], + [0, -10657, -10662], + [1, 3, 5704], + [0, 0, 0, 5705, 4], + [0, -1548, -10657, -10656, -2444], + [1, 3, 5707], + [0, 0, 0, 5708, 5], + [0, -10657, -10663], + [1, 3, 5710], + [0, 0, 0, 5711, 4], + [0, -10657, -10664], + [1, 3, 5713], + [0, 0, 0, 5714, 4], + [0, -10657, -6917], + [1, 3, 5716], + [0, 0, 0, 5717, 10], + [0, -10657, -5913], + [1, 3, 5719], + [0, 0, 0, 5720, 4], + [0, -10657, -1631], + [1, 3, 5722], + [0, 0, 0, 5723, 4], + [0, -10657, -10665], + [1, 3, 5725], + [0, 0, 0, 5726, 5], + [0, -10657, -10666], + [1, 3, 5728], + [0, 0, 0, 5729, 5], + [0, -10657, -8127], + [1, 3, 5731], + [0, 5732, 0, 5733, 4], + [0, -9496, -9497], + [0, -10657, -3110], + [1, 3, 5735], + [0, 0, 0, 5736, 5], + [0, -10657, -7329], + [1, 3, 5738], + [0, 0, 0, 5739, 4], + [0, -10657, -10667], + [1, 3, 5741], + [0, 5742, 5743, 5744, 5], + [0, -6703, -8038, -922, -7219, -10668, -10669, -10670], + [0, -1788, -2322, -1344, -10671, -932, -4896, -10672, -1534, -6707, -6709, -6706, -6708], + [0, -1573, -3444, -812, -648, -2520], + [1, 3, 5746], + [0, 5747, 5748, 5749, 5], + [0, -8416, -6861], + [0, -2541, -519, -2384, -2269], + [0, -4112, -687, -7095, -3958, -8132, -8618, -8619, -8620, -1040, -8621, -7084, -1573, -5545, -3974, -3973], + [1, 3, 5751], + [0, 5752, 5753, 5754, 4], + [0, -480, -690, -2219, -2269, -2528], + [0, -3037, -2267, -10673, -2384, -6786, -2541], + [ + 0, -1573, -3444, -5545, -687, -3974, -4110, -4000, -5550, -10674, -10675, -10676, -8991, -3973, -1959, -10677, + -5176 + ], + [1, 3, 5756], + [0, 5757, 5758, 5759, 5], + [0, -10678, -812, -7142, -2124, -10679], + [ + 0, -86, -3307, -10680, -5902, -9818, -932, -934, -940, -8246, -958, -967, -1077, -1344, -1392, -1788, -1942, + -1972, -2319, -2410 + ], + [0, -5545, -1573, -6459, -3966], + [1, 3, 5761], + [0, 0, 5762, 5763, 5], + [ + 0, -9569, -3037, -1127, -1132, -1134, -1136, -1137, -10681, -1144, -1148, -1149, -10682, -10683, -1412, -2379, + -2410 + ], + [0, -1573, -3444, -5545, -4865], + [1, 3, 5765], + [0, 0, 5766, 5767, 10], + [0, -6132, -1942, -2410], + [0, -10684, -1578, -10685], + [1, 3, 5769], + [0, 5770, 5771, 5772, 6], + [ + 0, -888, -828, -10686, -510, -812, -10330, -1004, -10687, -583, -615, -1369, -1752, -617, -2185, -10688, -10689, + -10690, -10691, -10692, -2425, -10693, -10694, -10695, -10696 + ], + [ + 0, -1788, -664, -1127, -1471, -1654, -2210, -2518, -932, -756, -1132, -10697, -2293, -633, -838, -2211, -1155, + -1482, -1152, -744, -10698, -10699, -1010, -1130, -1156, -1472, -10700, -1149, -10701, -1148, -10354, -10702, + -1475, -10355, -10703, -1479, -7707 + ], + [ + 0, -3578, -5728, -3691, -3690, -1004, -2118, -1501, -6120, -7107, -5378, -1691, -7684, -6857, -1671, -10704, + -1682, -10425, -6321, -2227, -10705, -3161, -3162, -10706 + ], + [1, 3, 5774], + [0, 5775, 5776, 196, 5], + [0, -3187], + [0, -633, -913, -2319], + [1, 3, 5778], + [0, 5779, 5780, 5781, 9], + [0, -10707], + [ + 0, -2392, -1344, -2331, -932, -1548, -825, -2379, -2410, -3037, -3044, -3617, -86, -10708, -10709, -5918, + -10710, -3307 + ], + [0, -7685, -7773, -891, -10711, -10712, -1055, -4182, -8427, -10713, -10714, -4865, -985], + [1, 3, 5783], + [0, 0, 5784, 5785, 5], + [0, -3037, -589, -928, -1610, -1650, -1942, -2319, -2386, -2402], + [0, -10715, -10413, -3324], + [1, 3, 5787], + [0, 0, 5788, 5789, 10], + [0, -3561, -407, -3667, -2127, -2132, -2410, -2466, -2469, -10716, -10717, -10718], + [0, -10719, -10720, -10721, -10722, -10723, -10724, -10725, -10726, -10727], + [1, 3, 5791], + [0, 5792, 5793, 5794, 9], + [0, -510, -596, -10728, -1696], + [0, -756, -1405, -1650, -1654, -1657, -2198], + [ + 0, -6527, -640, -10729, -1958, -10095, -7069, -7068, -9235, -8640, -7715, -8642, -7066, -10730, -10731, -7334, + -10732, -10733, -6337, -10502, -10734, -10735, -10736, -4162, -10737, -10738, -10739, -10740, -10741 + ], + [1, 3, 5796], + [0, 5797, 5798, 5799, 5], + [0, -10742, -10743, -6789, -10508, -717, -718, -10744, -10293, -1501, -10745, -1805, -1982, -6791, -7576], + [0, -1448, -10639, -1729, -10746, -2337], + [0, -1586, -3844, -1334, -5735, -1342, -3445, -1339, -7646, -3578], + [1, 3, 5801], + [0, 5802, 5803, 5804, 8], + [ + 0, -668, -715, -812, -910, -5672, -10415, -10747, -1040, -1075, -1286, -10748, -1292, -1380, -1442, -10521, + -10749, -1650, -1816, -1951, -5353, -4242, -2098, -2101, -10750, -3669, -2359, -7699, -2427, -7669, -2429, + -5356, -2446, -5358, -2518, -2530, -10751, -2550 + ], + [ + 0, -10752, -3198, -5334, -3660, -10753, -10754, -3037, -3628, -4231, -3738, -10755, -9284, -3041, -767, -8364, + -2218, -2269, -2410, -2447 + ], + [0, -1599, -10756, -10757, -3634, -856], + [1, 3, 5806], + [0, 5807, 5808, 5809, 8], + [0, -3115], + [0, -190, -351, -3561, -589, -8349, -740, -932, -1942, -2910, -2127, -2232, -2234, -2469], + [0, -2265, -10758, -6915, -7651, -6431], + [1, 3, 5811], + [0, 5812, 5813, 5814, 6], + [0, -2531, -523, -1449, -2387, -997, -1548, -1388, -3679, -7967], + [0, -932, -2402, -4204, -2410, -3037, -1771, -4647, -3044, -428, -4659, -10759, -427], + [ + 0, -10760, -8911, -2410, -840, -4601, -9111, -3214, -10761, -10762, -10763, -10764, -10765, -9840, -10766, + -10767, -7085, -10768, -10769, -856, -10770, -10771, -1589 + ], + [1, 3, 5816], + [0, 5817, 5818, 5819, 4], + [0, -668, -1015, -1111, -2462, -1686, -1849, -2271], + [0, -1127, -1654, -2198, -1132], + [0, -622, -1168, -7419, -9219], + [1, 3, 5821], + [0, 0, 5822, 5823, 4], + [0, -4035, -3037, -519, -1119, -10772, -2331, -2384, -2541], + [ + 0, -8988, -1650, -9218, -7411, -7410, -7421, -7420, -1847, -8807, -6370, -10773, -10774, -7371, -8990, -1076, + -7422, -7000 + ], + [1, 3, 5825], + [0, 0, 0, 5826, 5], + [0, -9218], + [1, 3, 5828], + [0, 5829, 5830, 5831, 4], + [0, -4733, -503, -578, -615, -10775, -1468, -10776, -1850, -2424, -2538], + [0, -3037, -633, -10777, -10778, -932, -10779, -1654, -2330, -2410, -2416], + [0, -8703, -3264, -10780, -10781, -1599, -3437], + [1, 3, 5833], + [0, 5834, 5835, 5836, 6], + [ + 0, -3698, -6486, -10782, -10783, -10784, -10785, -10786, -10787, -10788, -10789, -469, -583, -668, -3910, -3911, + -693, -9229, -9759, -1442, -1465, -1540, -1658, -1692, -1729, -1753, -1851, -1857, -1878, -2080, -2153, -2193, + -2223, -2245, -2409, -10790, -2435 + ], + [ + 0, -10791, -10792, -4353, -10793, -10794, -2980, -8850, -10795, -3617, -3660, -4201, -5363, -4203, -427, -428, + -932, -940, -967, -1076, -1415, -1847, -1942, -2234, -2293, -2375, -2376, -2383, -2410 + ], + [ + 0, -3445, -3690, -3691, -3967, -2410, -7685, -10796, -10797, -7643, -10798, -10799, -10800, -10801, -10802, + -3742, -10425, -1691, -2409, -5406, -6120, -3173, -10803, -6005, -5940, -10804, -10805, -10806, -10807, -10808, + -10809, -6113, -10810, -1594 + ], + [1, 3, 5838], + [0, 0, 5839, 5840, 5], + [ + 0, -3244, -2658, -250, -252, -254, -10811, -10812, -3044, -3037, -3040, -3052, -427, -428, -703, -784, -932, + -10813, -970, -1548, -2634, -1889, -1891, -1906, -10814, -10815, -1942, -2006, -2019, -2193, -4245, -2592, + -2391, -2410 + ], + [ + 0, -3160, -10816, -10817, -3824, -10818, -10819, -2006, -10820, -2410, -3214, -3577, -3100, -3477, -3160, + -10821, -4015, -7566, -10822, -3095 + ], + [1, 3, 5842], + [0, 0, 5843, 7, 5], + [0, -8392, -8394, -8393, -994, -8388], + [1, 3, 5845], + [0, 0, 5846, 5847, 6], + [ + 0, -3037, -427, -428, -3664, -518, -652, -932, -935, -948, -1449, -10823, -2162, -2281, -3436, -2410, -2466, + -6859, -2469 + ], + [0, -10824, -3004, -3862, -10825, -5553], + [1, 3, 5849], + [0, 5850, 71, 5851, 4], + [0, -1758], + [0, -1599, -10826, -3272], + [1, 3, 5853], + [0, 5854, 5855, 5856, 5], + [0, -503, -3223, -10827, -10828, -10829, -10830], + [ + 0, -3326, -350, -351, -3266, -5514, -589, -652, -664, -932, -943, -1004, -1103, -1304, -1429, -3245, -1602, + -3650, -1603, -3427, -10831, -10832, -10833, -10834, -3651, -3668, -1654, -10835, -1708, -2127, -2195, -2293 + ], + [0, -1599, -3215, -8630, -1600, -10836], + [1, 3, 5858], + [0, 0, 5859, 5860, 8], + [0, -3234, -519, -3425, -1637, -2234, -2250], + [0, -1599, -1600, -10836, -5147, -10837], + [1, 3, 5862], + [0, 0, 230, 5863, 5], + [0, -10836, -1600, -1599], + [1, 3, 5865], + [0, 0, 230, 5866, 8], + [0, -10836, -1600, -1599, -10838, -10839, -10840, -10841], + [1, 3, 5868], + [0, 5869, 5870, 5871, 4], + [0, -719, -883, -1015, -1304, -1860, -2102, -10842, -2347, -2359], + [0, -756, -1405, -10843, -2250, -2322], + [0, -1599, -6528, -5845, -3110], + [1, 3, 5873], + [0, 0, 5874, 5875, 4], + [0, -3037, -652, -668, -1942, -2094, -2100, -2269, -2399, -2410, -2541], + [0, -9846, -1599, -10844, -4002, -6724, -5554], + [1, 3, 5877], + [0, 0, 5878, 5879, 11], + [0, -7057, -3037, -3040, -3052, -10845, -928, -2006, -2019, -2034, -10106, -10846, -2410, -2476], + [0, -1599, -10847, -2006, -1940, -4146, -2476, -5173, -3944, -9608, -10848, -2034, -3264], + [1, 3, 5881], + [0, 5882, 88, 5883, 4], + [0, -725, -10849, -1125, -10850, -10851, -10852, -1646, -10853, -9323, -2102, -10854, -9403], + [ + 0, -10837, -8630, -3671, -10855, -856, -10856, -10857, -9409, -10858, -1599, -3437, -3862, -4328, -4846, -2102, + -10859, -7650, -4065, -4002, -10860, -10861, -10862, -6234 + ], + [1, 3, 5885], + [0, 5886, 5887, 5888, 5], + [0, -1638, -10863, -10864, -10865, -10866, -10867, -10868, -10869, -2267], + [ + 0, -190, -3748, -469, -519, -652, -2736, -932, -960, -965, -971, -978, -10870, -1111, -1442, -8274, -1461, + -1600, -10831, -10834, -3651, -10871, -8345, -1771, -2335, -2362, -2410, -2501, -2503 + ], + [0, -1599, -7148, -3437, -10872, -1608], + [1, 3, 5890], + [0, 5891, 5892, 5893, 10], + [0, -719, -822, -1353, -1442, -1461, -10873, -1608, -1600, -1645, -10874, -10430, -2654], + [0, -519, -8345, -2541], + [0, -1599, -1608, -687, -5732], + [1, 3, 5895], + [0, 0, 5896, 5897, 4], + [ + 0, -2832, -10875, -10876, -7040, -3471, -3472, -7041, -7042, -674, -8630, -767, -5382, -928, -10877, -932, + -1304, -1600, -10878, -10879, -10880, -2125, -2174, -9764, -2387, -2410 + ], + [0, -1599, -10881, -3264], + [1, 3, 5899], + [0, 5900, 5901, 163, 4], + [ + 0, -4321, -4322, -3649, -4323, -4309, -4320, -4308, -1395, -4313, -4318, -4314, -4315, -4311, -4316, -4319, + -1550, -1554, -4317, -1600, -1603, -4324, -4325, -3430, -4312, -2161, -4310 + ], + [0, -633, -674, -1107, -4327, -1654, -4326, -2250, -2251], + [1, 3, 5903], + [0, 5904, 0, 7, 4], + [0, -891, -10882], + [1, 3, 5906], + [0, 5907, 0, 160, 10], + [0, -567, -10883, -1493, -1566, -1571, -1967, -10884, -2055, -2069, -10885, -2489], + [1, 3, 5909], + [0, 5910, 5911, 5912, 8], + [0, -44, -10886, -10300, -10887, -5898, -10888, -2172, -6751, -10889], + [ + 0, -23, -5585, -3391, -38, -40, -43, -8380, -3621, -427, -428, -507, -534, -652, -708, -824, -10890, -920, -932, + -940, -943, -958, -964, -965, -967, -968, -1002, -10891, -1022, -1107, -1168, -1174, -1276, -10892, -1471, + -1479, -1482, -1483, -1491, -3079, -1492, -1650, -1654, -1656, -10893, -10894, -10895, -10896, -10897, -10898, + -1942, -1958, -2210, -10899, -2354, -2379, -2410, -2501, -10900 + ], + [0, -10684, -10901, -7163, -10902, -10903, -3215, -8130, -6240, -6245, -10904, -10905, -7521, -5119], + [1, 3, 5914], + [0, 5915, 5916, 7, 10], + [0, -6130, -10906, -5852], + [0, -1654, -2501], + [1, 3, 5918], + [0, 0, 5919, 5920, 9], + [0, -1654, -2250], + [0, -1616, -10907, -10908], + [1, 3, 5922], + [0, 5923, 5924, 5925, 4], + [0, -4251, -4231, -10909, -9596, -5348, -1638, -10910, -10911, -10912, -10913, -10869, -10914], + [0, -3037, -652, -10915, -928, -7324, -2586, -1290, -1619, -10916, -1942, -2094, -2100, -2334, -2399, -2410, -2541], + [0, -3272, -1599, -10881, -10917, -10918, -1838, -4132, -10919, -9590, -3590, -2444], + [1, 3, 5927], + [0, 5928, 5929, 5930, 5], + [0, -5334, -4251, -9581, -9596, -10920, -10921, -9583, -2429, -5358], + [0, -3037, -9586, -652, -1290, -1294, -1618, -10922, -10923, -1942, -2094, -2100, -2399, -2410, -2541], + [0, -9590, -10918, -10917, -9589, -9588, -2444, -3590, -1599, -3264], + [1, 3, 5932], + [0, 0, 5933, 5934, 6], + [0, -469, -4712], + [0, -6582, -10924, -10925, -775], + [1, 3, 5936], + [0, 5937, 0, 5938, 5], + [0, -10926, -10927], + [0, -10928, -3324, -3323, -9844, -10929, -10930, -10931, -10932, -1622, -10933, -7684], + [1, 3, 5940], + [0, 5941, 5942, 5943, 4], + [0, -10934, -10935, -10936, -10937, -10938, -10939, -10940, -10941, -10942, -10943, -10944, -10945, -10946, -2387], + [ + 0, -3136, -6325, -3037, -496, -507, -640, -1331, -1344, -10947, -1415, -1848, -1942, -1958, -2062, -2125, -2325, + -2375, -2376, -2379, -2388, -10948, -2410, -2435, -2444, -2501, -2503, -2505 + ], + [ + 0, -1076, -7422, -10949, -1626, -1623, -6656, -8801, -10467, -10412, -10950, -9614, -4004, -3634, -4215, -10951, + -10952, -10953, -10954, -10955, -10956, -10957, -10958 + ], + [1, 3, 5945], + [0, 0, 5946, 5947, 5], + [ + 0, -5295, -3268, -3136, -10959, -8216, -3037, -427, -428, -589, -767, -932, -940, -959, -967, -1002, -10960, + -1415, -1559, -1565, -1605, -10961, -5969, -9642, -10962, -1816, -1942, -2125, -2127, -2138, -2140, -2141, + -2214, -2375, -2379, -2387, -2410 + ], + [0, -5913, -10963, -3324, -6187], + [1, 3, 5949], + [0, 0, 5950, 5951, 5], + [0, -664, -1168, -2210, -10964, -1231, -2211, -1224, -1220, -1453], + [0, -3324, -10965, -5493, -6005], + [1, 3, 5953], + [0, 5954, 5955, 5956, 8], + [0, -10966, -2062], + [0, -599, -6774, -756, -932, -1405, -1654, -2198], + [0, -1076, -10412], + [1, 3, 5958], + [0, 0, 5959, 5960, 5], + [0, -1003, -1654, -1127, -1132, -1156, -1144, -1980], + [0, -10412, -4004, -5827, -3674, -8027, -640], + [1, 3, 5962], + [0, 0, 5963, 7, 4], + [0, -1654, -2198, -1733], + [1, 3, 5965], + [0, 68, 15, 16, 6], + [1, 3, 5967], + [0, 0, 5968, 5969, 5], + [ + 0, -350, -4062, -351, -5918, -5686, -519, -10967, -722, -813, -10968, -10969, -999, -1111, -1366, -10970, -6904, + -3609, -2060, -5120, -2127, -2132, -2134, -4621, -10971, -2384, -2400, -2410, -2541, -2551 + ], + [ + 0, -687, -8425, -2444, -3590, -4187, -4378, -3957, -6722, -1630, -10972, -10973, -3215, -5829, -5272, -3962, + -7095, -4000 + ], + [1, 3, 5971], + [0, 0, 5972, 5973, 4], + [0, -3035, -3621, -3037, -664, -726, -1654, -2410, -2501, -2503], + [0, -1631, -7371, -1015, -702, -7208, -4865], + [1, 3, 5975], + [0, 0, 5976, 7, 4], + [0, -10974, -1405], + [1, 3, 5978], + [0, 5979, 5980, 5981, 4], + [0, -679, -719, -812, -1125, -6796, -10975, -1639, -10976, -10977], + [ + 0, -3244, -190, -10978, -4715, -3198, -4036, -3037, -10979, -652, -932, -958, -965, -1110, -1654, -1942, -2091, + -2362, -2410 + ], + [0, -5142, -5372, -6656, -9204, -3258, -3260, -3262, -1599, -3259, -1633, -2548], + [1, 3, 5983], + [0, 5984, 0, 7, 10], + [0, -10980, -5676, -1343, -10981, -10982, -2125, -2177, -2323, -2359], + [1, 3, 5986], + [0, 5987, 5988, 7, 8], + [0, -2453, -812, -1636, -1840], + [0, -1654, -932, -1405, -2293, -966, -958, -968, -943, -963, -974], + [1, 3, 5990], + [0, 0, 5991, 5992, 5], + [0, -1654, -1405], + [0, -1334, -1636], + [1, 3, 5994], + [0, 5995, 5996, 5997, 11], + [ + 0, -23, -26, -10983, -3077, -3203, -3408, -3357, -40, -6056, -41, -4066, -3326, -350, -4062, -351, -10984, + -10985, -518, -3766, -10986, -10987, -9459, -644, -656, -930, -1044, -1273, -1496, -1566, -1889, -1948, -2127, + -5994, -4753, -2140, -2142, -2144, -5037, -2334, -10988, -2387, -2410 + ], + [ + 0, -21, -5870, -10989, -8280, -50, -533, -767, -10990, -932, -10991, -940, -967, -985, -1077, -1344, -1415, + -1534, -10992, -1942, -2082, -2125, -2194, -2269 + ], + [0, -4161, -2127, -10993], + [1, 3, 5999], + [0, 6000, 0, 6001, 4], + [ + 0, -3198, -812, -10909, -9596, -10863, -10994, -7666, -10995, -10996, -10910, -2785, -10912, -10997, -10920, + -10998, -10913, -10869 + ], + [ + 0, -8630, -3116, -4329, -3264, -7184, -1599, -10881, -3437, -2427, -1838, -3215, -3862, -1958, -2093, -7650, + -4065, -8451, -3579 + ], + [1, 3, 6003], + [0, 6004, 6005, 6006, 5], + [0, -9968, -1864], + [0, -1654, -1645, -10999, -1202], + [ + 0, -6836, -11000, -11001, -7727, -11002, -8130, -9969, -11003, -6656, -6999, -7724, -5573, -1107, -9095, -9096, + -9970, -11004, -11005, -11006, -5572, -5912, -3581, -10590, -1639, -1645, -1686, -11007, -11008, -1847, -5574, + -5064, -11009, -5569, -5570, -8129, -5550, -11010, -9087 + ], + [1, 3, 6008], + [0, 0, 6009, 6010, 4], + [0, -11011, -3713, -3037, -427, -428, -668, -11012, -1641, -1942, -11013, -11014, -2410], + [0, -5195, -6656, -1640, -11015, -11016, -2444], + [1, 3, 6012], + [0, 6013, 129, 6014, 10], + [0, -11015], + [0, -1640, -3694], + [1, 3, 6016], + [0, 119, 120, 6017, 4], + [ + 0, -11017, -11018, -11019, -11020, -11021, -11022, -11023, -11024, -11025, -11018, -11026, -11027, -11028, + -11029, -11030, -11031, -11032, -11033, -11034, -11035, -11036, -9234, -11037, -11038, -11039, -11040, -11041, + -11042, -11043, -11044, -11045, -11046, -7530, -11047, -11048, -7561, -7562, -3214, -7484, -7485, -3756, -2410, + -7486, -4165, -3018, -11049, -7283, -6582, -7534, -7535, -7536, -7537, -7538, -7539, -7540, -7541, -7542, -7543, + -7544, -7545, -8807, -6599, -5756, -11050, -11051, -7503, -7371, -7546, -7547, -7548, -6948, -7549, -7550, + -7551, -7552, -7553, -7554, -7555, -7556, -7557, -2444, -7558, -7559, -5063, -7560, -11052, -6187, -7563, -856, + -7275 + ], + [1, 3, 6019], + [0, 6020, 6021, 6022, 11], + [0, -2168, -2321], + [ + 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -3037, -620, -767, -774, -778, -824, -825, -920, -932, -940, + -6929, -958, -959, -960, -965, -967, -978, -1041, -1110, -1344, -1415, -1419, -1449, -1534, -1623, -1771, -1942, + -2162, -2163, -2251, -2410, -2411, -2501, -2503, -2505 + ], + [0, -2501, -775, -7347, -6211], + [1, 3, 6024], + [0, 6025, 6026, 6027, 5], + [0, -11053, -367, -683, -11054, -812, -928, -1047, -11055, -3751, -11056, -11057, -2334, -11058, -11059], + [0, -11060, -932, -11061, -11062, -4653, -11063], + [0, -1644, -7173, -3756, -775, -5094, -3264, -6118], + [1, 3, 6029], + [0, 6030, 6031, 7, 11], + [0, -11064], + [0, -2319, -2386, -1650, -2402, -1942, -3037], + [1, 3, 6033], + [0, 0, 6034, 6035, 4], + [0, -515, -1788, -2322, -932, -1777, -1365, -516, -2156, -5834], + [0, -4378, -9568, -3215, -1813], + [1, 3, 6037], + [0, 6038, 6039, 6040, 4], + [0, -719, -1730], + [0, -8477, -1415, -1942, -2375, -2410], + [0, -11065, -11066, -11067], + [1, 3, 6042], + [0, 0, 6043, 6044, 9], + [0, -11068, -3037, -5866, -652, -940, -1942, -2319, -2379, -2402, -2410], + [0, -8988, -7421, -11069, -9218, -11070, -7371, -5269], + [1, 3, 6046], + [0, 6047, 6048, 7, 5], + [0, -461, -1852, -6568, -11071], + [0, -3037, -3664, -672, -932, -944, -3190, -1431, -1942, -6570, -2410, -2423, -2469], + [1, 3, 6050], + [0, 0, 6051, 6052, 4], + [0, -23, -26, -33, -38, -40, -42, -44, -11072, -1059], + [0, -1652, -11073, -5927, -3159, -2006, -3476, -11074, -6106, -11075, -11076, -11077, -11078], + [1, 3, 6054], + [0, 6055, 6056, 6057, 5], + [0, -11079], + [0, -1652, -11079, -11080], + [0, -1652, -11073, -3159, -2006, -3476, -11074], + [1, 3, 6059], + [0, 6060, 6061, 6062, 4], + [ + 0, -1297, -1681, -834, -1107, -812, -2550, -1047, -1442, -679, -1645, -1863, -3730, -1574, -2551, -11081, -7408, + -2297, -11082, -2271, -930, -2182 + ], + [ + 0, -1788, -664, -1498, -1446, -1471, -2210, -11083, -932, -1708, -2093, -2125, -2127, -2177, -1110, -11084, + -2501, -1942, -767, -190, -11085, -2410, -11086, -3037, -1339, -1482, -1600, -2503, -3041, -711, -1607, -1772, + -4655, -27, -11087, -11088, -11089, -11090, -965, -3781, -1609, -11091, -3425, -1603, -3060, -1601, -4062, + -11092, -4066, -1483, -1488, -1475, -350, -11093, -2144, -5995, -2136, -351, -9701, -11094, -11095 + ], + [0, -1654, -4004, -3440, -4873, -2319, -3634, -664, -5855, -519, -1415, -2322, -1412, -1471], + [1, 3, 6064], + [0, 6065, 6066, 6067, 6], + [0, -4377, -1978], + [0, -664, -1654, -10534, -2410], + [0, -1654, -3636, -1978, -11096], + [1, 3, 6069], + [0, 6070, 6071, 6072, 5], + [0, -812, -1616, -1650, -2269, -6597], + [0, -357, -664, -11097, -932, -1654, -2125, -11098, -11099], + [0, -1654, -11100, -6863], + [1, 3, 6074], + [0, 0, 0, 6075, 11], + [0, -1654, -6863, -11101, -4005], + [1, 3, 6077], + [0, 0, 6078, 6079, 5], + [0, -664, -932, -9072, -1654, -2125, -2177], + [0, -4215, -1076, -4004, -8101, -8801, -10412], + [1, 3, 6081], + [0, 6082, 6083, 6084, 8], + [0, -11102, -1083, -11103, -11104, -1285, -1402, -1794], + [ + 0, -2832, -5834, -8084, -11105, -11106, -11107, -11108, -11109, -8088, -11110, -8089, -8939, -8090, -8091, + -8092, -8093, -3037, -11111, -8094, -8096, -516, -5835, -921, -932, -993, -1065, -1283, -1365, -1777, -1788, + -2156, -2322 + ], + [0, -3634, -4215, -7208, -7153, -5846, -11112, -4004, -6693, -11113], + [1, 3, 6086], + [0, 6087, 6088, 231, 4], + [0, -5505, -1759], + [0, -767, -932, -1654], + [1, 3, 6090], + [0, 0, 27, 6091, 6], + [0, -4004, -4215, -3966, -1076, -3972], + [1, 3, 6093], + [0, 0, 6094, 6095, 5], + [0, -1654, -2127, -2142, -2198, -2410], + [0, -4121, -4215, -4004], + [1, 3, 6097], + [0, 0, 6098, 6099, 6], + [0, -1405, -1452, -2210, -11115, -2471], + [0, -4215, -8611, -4792, -3551, -3324, -5119, -4004, -11116, -3634, -4873], + [1, 3, 6101], + [0, 75, 6102, 6103, 5], + [0, -1168, -1190, -11117, -1220, -1224, -1231, -11118, -1452, -1453, -2501], + [0, -4215, -11119, -11120], + [1, 3, 6105], + [0, 6106, 6107, 6108, 4], + [0, -4377, -1107, -1496, -1548, -11121, -1582, -1729, -995, -11122, -11123], + [ + 0, -1435, -2384, -11124, -1415, -1680, -11125, -1867, -812, -11126, -648, -11127, -865, -932, -1576, -11128, + -473, -1388, -1753, -11129, -2379, -2520, -11130, -11131, -1417, -11132, -1942, -756, -11133, -1418, -1765, + -2293, -11134, -1969, -2410, -11135, -3037, -11136, -11137, -11138, -11139, -11140, -11141, -11142, -11143, + -10453, -11144, -11145, -966, -11146, -357, -11147, -968, -940, -967, -972 + ], + [0, -11148, -6209, -3161, -3445, -11149, -7586, -11150, -11151, -5078, -9840, -11152], + [1, 3, 6110], + [0, 0, 6111, 6112, 5], + [0, -1989, -2127, -767, -2410, -3037, -1488], + [0, -1666, -4121, -4123, -1838, -3276, -5874, -1348, -9772, -11153], + [1, 3, 6114], + [0, 6115, 6116, 6117, 4], + [0, -1666], + [0, -1127, -1134, -1144, -1146, -1148, -10264, -2410], + [0, -1666, -4121, -4123, -11154, -11155, -11156, -11157, -11158], + [1, 3, 6119], + [0, 6120, 6121, 6122, 5], + [0, -1461, -11159, -11160, -11161, -11162, -1848, -1942, -11163, -11164, -11165, -2548], + [0, -11166, -2970, -3664, -928, -9002, -1874, -2094, -11167, -2410, -2469, -11168], + [0, -3496, -3100, -3577, -11169, -9002, -2548], + [1, 3, 6124], + [0, 0, 6125, 6126, 10], + [ + 0, -190, -3037, -3664, -932, -940, -972, -978, -1942, -2125, -2402, -2405, -7322, -2410, -2411, -2466, -6859, + -2469 + ], + [0, -11170, -11171, -11172, -5829, -11173, -3577, -3445], + [1, 3, 6128], + [0, 6129, 6130, 6131, 8], + [ + 0, -6779, -11174, -6780, -6777, -11175, -6776, -8843, -11176, -11177, -2997, -11178, -617, -620, -11179, -637, + -709, -719, -744, -767, -787, -865, -919, -1004, -4206, -1010, -1055, -11180, -11181, -1320, -1437, -3725, + -1635, -1671, -11182, -1676, -1863, -11183, -2185 + ], + [ + 0, -23, -32, -40, -11184, -11185, -534, -664, -684, -726, -748, -778, -795, -932, -934, -958, -978, -11186, + -1041, -1344, -1654, -11187, -1734, -1753, -2275, -2293, -2501, -2503 + ], + [0, -8856, -11188, -7558, -7685, -11189, -3964, -11190, -11191, -6857, -1671, -11192, -11193, -11194], + [1, 3, 6133], + [0, 6134, 6135, 6136, 8], + [0, -637, -11195, -11196], + [ + 0, -1788, -2384, -11197, -664, -668, -1654, -2210, -11198, -2550, -932, -2177, -11199, -1004, -1442, -2379, + -1942, -2211, -2410, -3241, -3035, -3037, -667, -11200, -3621, -4372, -11201, -3199, -3617, -11202, -11203, + -11204, -11205, -3625, -11206, -11207, -2234, -964, -977, -940, -967, -264, -262, -428, -11208, -6424, -9724, + -11209, -427, -4814, -234 + ], + [0, -1671, -9879, -5041], + [1, 3, 6138], + [0, 6139, 6140, 6141, 10], + [0, -11210, -1671, -11211, -11212, -1681, -11213], + [ + 0, -11214, -11215, -3037, -11216, -11217, -11218, -469, -652, -674, -7743, -932, -5984, -1004, -1077, -1304, + -9150, -1559, -11219, -8554, -1610, -1650, -1654, -1666, -11208, -11187, -11220, -1705, -1974, -2210, -2655, + -2410, -2411, -2446 + ], + [0, -1671, -10855, -6106, -4058, -7685, -11221, -6582, -11222, -5101, -7684, -1818, -7773], + [1, 3, 6143], + [0, 6144, 232, 6145, 5], + [0, -763, -727, -573, -2228, -2424, -2229, -11223], + [0, -1673, -11224, -11225, -8841, -11226, -11227], + [1, 3, 6147], + [0, 6148, 232, 6149, 5], + [0, -727, -729, -1673, -11228, -11223], + [0, -1673, -11229, -11224, -11225, -11230, -5412, -8841, -11231], + [1, 3, 6151], + [0, 6152, 6153, 6154, 8], + [0, -11232, -812, -1671, -11233, -11234, -11235, -11236, -11237, -11238, -1792], + [ + 0, -519, -708, -932, -943, -950, -958, -966, -968, -974, -11239, -11240, -11241, -11242, -11243, -11244, -11245, + -1788 + ], + [0, -1675, -1671, -6857, -9879], + [1, 3, 6156], + [0, 6157, 6158, 6159, 5], + [0, -579, -812, -828, -1800, -6825], + [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2239, -2293], + [0, -1004, -1334, -3444, -5401], + [1, 3, 6161], + [0, 44, 15, 16, 10], + [1, 3, 6163], + [0, 6164, 6165, 6166, 10], + [ + 0, -2531, -2124, -812, -11198, -2240, -11246, -11247, -1646, -4204, -1582, -11248, -725, -11249, -2062, -11250, + -6279 + ], + [ + 0, -1788, -664, -2322, -2210, -932, -1109, -1650, -2125, -2198, -2226, -928, -1110, -2379, -679, -1942, -11251, + -190, -1939, -2091, -2410, -3035, -3037, -8096, -4372, -908, -11252, -11253, -3244, -11254, -5325, -3311, -4805, + -11255, -958, -940, -967, -428, -740, -3312, -11256, -427, -4646 + ], + [0, -1680, -11257, -8403, -8404], + [1, 3, 6168], + [0, 0, 6169, 7, 8], + [0, -1344, -1654, -932, -1942, -1003, -1534], + [1, 3, 6171], + [0, 6172, 6173, 6174, 10], + [0, -11258, -719, -812, -10414, -10417], + [0, -86, -3307, -7040, -3472, -7041, -7042, -1654, -2174, -2250], + [0, -7685, -1682, -10424, -3844, -11259, -10704, -11260, -11261, -10417, -11262, -10704, -11263, -5800, -11264], + [1, 3, 6176], + [0, 6177, 6178, 6179, 11], + [ + 0, -2946, -269, -4190, -11265, -743, -1122, -11266, -4193, -4194, -1851, -1863, -11267, -2255, -4195, -2364, + -2400, -11268, -2550 + ], + [ + 0, -86, -3307, -11269, -3244, -190, -11270, -3316, -4196, -4197, -3983, -3617, -11271, -3037, -11272, -427, + -428, -3310, -523, -5859, -720, -767, -768, -796, -928, -3808, -932, -940, -967, -1004, -1030, -8151, -1107, + -1449, -11273, -1498, -1534, -11274, -1942, -2910, -2082, -2125, -3246, -2391, -2410, -2411, -2426, -2437, + -2469, -4209, -2501, -4211, -1683 + ], + [0, -3690, -4215, -4041, -8615, -10807, -3844, -5196, -8481, -3634, -3577, -4725], + [1, 3, 6181], + [0, 6182, 6183, 6184, 4], + [0, -11275, -649, -725, -1650, -1792, -2401, -2546], + [0, -821, -1004, -1069, -11276, -1654, -1788, -2125, -2250, -11277], + [0, -4053, -9751, -6463, -1069, -11278, -1004, -5401], + [1, 3, 6186], + [0, 6187, 14, 6188, 4], + [0, -9491, -11279, -1645], + [0, -7727, -5573, -1107, -9095, -9096, -5572, -5912, -1645, -5574, -5064, -9087], + [1, 3, 6190], + [0, 6191, 6192, 6193, 5], + [0, -2418, -1335, -2155], + [0, -1788, -11280, -1654, -932, -1650, -2125, -2291, -2108, -963], + [0, -6656, -7764, -1070, -5827, -5940], + [1, 3, 6195], + [0, 6196, 6197, 6198, 4], + [0, -5573, -1077, -1462, -1548, -3222, -1805, -2446], + [0, -1412, -1788, -11281, -2091], + [0, -793, -3264, -11282, -1688, -11283, -11284], + [1, 3, 6200], + [0, 0, 6201, 6202, 4], + [0, -985, -664, -2568, -1654, -932, -1452, -2127, -1978, -2416], + [0, -1689, -3110, -3261, -888], + [1, 3, 6204], + [0, 0, 6205, 6206, 10], + [ + 0, -865, -1168, -1197, -1251, -1344, -1471, -1475, -1485, -1488, -11285, -11286, -1942, -10496, -1989, -2125, + -2127, -2334, -11287 + ], + [0, -4672, -3999, -11288, -7724, -7283, -7581], + [1, 3, 6208], + [0, 6209, 6210, 7, 11], + [0, -595, -2062, -2155, -11289], + [0, -465, -932, -2172, -11290, -11291, -11292], + [1, 3, 6212], + [0, 6213, 6214, 6215, 4], + [0, -1578, -9953, -10401, -1351, -11293, -11294, -11295, -11296], + [ + 0, -652, -2392, -11297, -1110, -1942, -589, -767, -190, -1888, -2410, -3037, -11298, -3244, -3560, -3606, -940, + -967, -428, -11299, -427, -5706 + ], + [0, -1691, -3323, -3844], + [1, 3, 6217], + [0, 6218, 6219, 6220, 11], + [0, -8993, -1792, -8994], + [0, -1405, -615, -1654], + [0, -8124, -1961, -11300, -11301, -3184], + [1, 3, 6222], + [0, 0, 6223, 6224, 4], + [0, -11302], + [0, -1784, -3966, -9318, -9800, -11303, -3966, -7304, -6845], + [1, 3, 6226], + [0, 0, 6227, 7, 4], + [0, -596, -719, -1107, -2105, -2062, -2319, -2546], + [1, 3, 6229], + [0, 0, 6230, 6231, 4], + [0, -2426, -3037, -2410], + [0, -11304, -6582, -2105, -4055, -7684, -11151, -1697, -7685], + [1, 3, 6233], + [0, 6234, 6235, 6236, 5], + [0, -3115, -781, -786, -11305, -10883, -11306, -7222, -3768], + [ + 0, -4757, -4754, -4749, -3136, -3037, -3140, -3040, -932, -4650, -1344, -11307, -1415, -1520, -11308, -1534, + -1942, -1967, -2006, -2019, -2052, -2125, -2234, -2376, -2387, -2410, -2501, -2502, -2505, -2552 + ], + [ + 0, -775, -5553, -3770, -11309, -1697, -11310, -2006, -3756, -11311, -3771, -11312, -11313, -3095, -2278, -11314, + -11315, -3271 + ], + [1, 3, 6238], + [0, 0, 0, 6239, 8], + [0, -2446, -6555, -7231, -2435], + [1, 3, 6241], + [0, 6242, 6243, 6244, 4], + [0, -7872, -523, -893, -1077, -11316, -11317, -1577, -1705, -11318, -2160, -2234, -2359, -2550], + [ + 0, -3198, -3048, -11319, -3136, -9143, -3037, -11320, -3628, -3041, -427, -428, -891, -932, -940, -967, -1415, + -1874, -1942, -2125, -2376, -2410, -2501, -2503 + ], + [0, -11321, -891, -3994, -5269, -8911], + [1, 3, 6246], + [0, 6247, 6248, 6249, 6], + [ + 0, -2531, -1816, -2323, -1430, -1805, -2446, -523, -712, -1875, -2550, -8898, -1548, -1576, -1610, -1650, -1831, + -2177, -7680, -2519, -2536, -987, -1966, -2195, -501, -679, -1942, -1981, -2378, -1645, -11322, -695, -2205, + -2231, -2410, -11323, -3950, -11324, -11325, -11326, -8888, -11327, -11328, -6294, -7772, -1982, -280, -11329, + -11330, -11331, -742, -8880, -11332, -11333, -11334, -11335, -11336 + ], + [ + 0, -664, -1127, -1344, -1654, -2210, -10645, -1405, -4204, -5673, -3035, -3037, -3738, -1162, -1534, -4248, + -11337, -11338, -4372, -3041, -11339, -3044, -11340, -3199, -11341, -11342, -11343, -3735, -3714, -6114, -11344, + -11345, -665, -1138, -2234, -1134, -1149, -11346, -11347, -4269, -11348, -3202, -11349, -740 + ], + [0, -1702, -2410, -3214], + [1, 3, 6251], + [0, 6252, 6253, 6254, 6], + [0, -11350, -11351, -11352, -865, -1339, -11353, -1672, -1857, -2071, -7967, -11354, -10899, -2424, -2446, -11355], + [ + 0, -350, -4062, -351, -9705, -3037, -427, -11356, -767, -932, -9106, -958, -965, -968, -1168, -1222, -11357, + -1412, -1413, -7148, -1705, -1788, -11358, -1972, -2125, -2127, -2210, -2234, -2250, -2379, -6416, -2410, + -11359, -2501, -7752 + ], + [ + 0, -11360, -11361, -7281, -11362, -11363, -3579, -11364, -11365, -11366, -11367, -11368, -11369, -11370, -11371, + -11372, -11373, -11374, -11375, -11376, -11377, -11378, -11379, -11380, -11381, -11382, -11383, -11384, -11385, + -11386 + ], + [1, 3, 6256], + [0, 6257, 6258, 6259, 9], + [0, -1371, -510, -2550, -11387], + [0, -1788, -2471, -932, -756, -11388, -2091, -4646], + [0, -3870, -11389, -11390], + [1, 3, 6261], + [0, 0, 6262, 6263, 5], + [0, -1654, -2125, -8986], + [0, -687, -6351], + [1, 3, 6265], + [0, 0, 6266, 6267, 5], + [0, -3037, -3040, -427, -428, -749, -932, -940, -967, -969, -970, -1380, -1942, -2387, -2410], + [0, -11391, -3486, -2006, -3994, -11392, -11393, -5069, -3445], + [1, 3, 6269], + [0, 6270, 6271, 6272, 4], + [0, -510, -1650, -2424, -1545, -11394], + [0, -664, -1654, -2210, -2105, -719, -11395], + [0, -7685, -11222, -10712], + [1, 3, 6274], + [0, 6275, 6276, 6277, 5], + [0, -1351, -2165], + [0, -1464, -7623, -1654, -1976, -1980, -2198, -2210, -2536], + [0, -1334, -1342, -5493, -2105, -3323, -6463, -7764, -1971, -6827, -7430, -9791, -9788, -743, -8937], + [1, 3, 6279], + [0, 6280, 0, 6281, 5], + [0, -11396, -11397, -719, -755, -1376], + [0, -687, -5406, -9668, -3957, -3958, -11398, -11313], + [1, 3, 6283], + [0, 6284, 6285, 6286, 8], + [ + 0, -11399, -510, -11400, -5676, -695, -714, -719, -790, -1044, -11401, -1548, -1650, -11402, -11403, -11404, + -11405, -1951, -2177, -11406, -2524, -2538 + ], + [ + 0, -11407, -664, -829, -11408, -7829, -932, -960, -7819, -964, -972, -1442, -1654, -1722, -1788, -11409, -2070, + -2188, -2195, -2210, -2536 + ], + [0, -1710, -11410, -3690, -3634, -6657, -11411, -3691], + [1, 3, 6288], + [0, 6289, 6290, 6291, 4], + [ + 0, -11412, -7603, -7604, -11413, -5038, -5777, -5775, -5791, -5779, -5778, -5780, -5782, -11414, -725, -1343, + -11415, -11273, -1459, -11416, -2062, -11417, -2177, -2522 + ], + [ + 0, -3698, -11418, -11419, -11420, -11421, -11422, -305, -11423, -11424, -11425, -469, -510, -521, -2917, -652, + -5980, -719, -741, -6906, -5983, -932, -960, -11426, -1107, -1116, -1344, -1446, -1534, -1547, -1722, -1969, + -1972, -2125, -11427, -2210, -2291 + ], + [0, -5805, -6187, -11230, -6032, -11428, -11429], + [1, 3, 6293], + [0, 6294, 6295, 6296, 5], + [0, -44, -11430, -743, -5193, -1791, -11431, -1940, -10105, -2446], + [ + 0, -3168, -21, -23, -6064, -38, -40, -41, -42, -11432, -367, -7043, -406, -407, -409, -2622, -410, -3136, -3037, + -11433, -11434, -3040, -3052, -518, -11435, -11436, -726, -784, -1415, -1419, -1428, -1683, -2634, -1889, -1891, + -1916, -2006, -2019, -2516 + ], + [0, -2006, -3967, -1791, -3175, -11437, -3173, -1713, -7204, -3177, -11438], + [1, 3, 6298], + [0, 0, 0, 6299, 5], + [0, -2634, -510, -11439, -11440], + [1, 3, 6301], + [0, 0, 0, 6302, 10], + [ + 0, -475, -4004, -3634, -4215, -4041, -3095, -8223, -11441, -11442, -5196, -11443, -11444, -3100, -3577, -1415, + -1412, -915, -8611, -6137 + ], + [1, 3, 6304], + [0, 6305, 0, 6306, 4], + [0, -5, -11445, -3946, -807, -2387], + [0, -3158, -3099, -475, -3160, -3161, -3100], + [1, 3, 6308], + [0, 6309, 6310, 6311, 4], + [0, -1116, -2446, -2548, -7004, -1018, -1552], + [0, -664, -668, -1654, -2210, -3037], + [0, -1716, -11446, -11447, -1546, -11448], + [1, 3, 6313], + [0, 0, 6314, 7, 10], + [0, -664, -729, -1654, -1974, -2187, -2286], + [1, 3, 6316], + [0, 6317, 6318, 6319, 6], + [0, -812, -11449, -10659, -891, -11450, -11451, -1451, -11452, -1650, -6810, -1801, -2125, -11453, -2240], + [ + 0, -510, -579, -11178, -615, -664, -665, -932, -940, -967, -1004, -1344, -1654, -11454, -1685, -1880, -1942, + -2187, -2239 + ], + [0, -1718, -891], + [1, 3, 6321], + [0, 6322, 6323, 6324, 6], + [ + 0, -11455, -11456, -11457, -3035, -11458, -6192, -5113, -6535, -623, -11459, -668, -680, -695, -11460, -11461, + -865, -888, -914, -1107, -1449, -1548, -1645, -1646, -1654, -11462, -1805, -1816, -8563, -2173, -2177, -11463, + -2269, -2430, -2446 + ], + [ + 0, -99, -367, -3037, -427, -428, -749, -767, -932, -1344, -1392, -1442, -1534, -1656, -3038, -11464, -11465, + -1663, -1722, -1788, -2006, -2019, -2125, -2184, -2379, -2384, -2648 + ], + [ + 0, -1719, -11466, -11467, -3634, -11468, -2734, -4867, -11469, -4866, -3095, -4868, -4004, -4865, -3162, -4043, + -5769, -793, -1654, -4864 + ], + [1, 3, 6326], + [0, 6327, 6328, 6329, 8], + [0, -4884, -357, -11470, -7755, -1851], + [0, -4888, -11471, -633, -1344, -1449, -11472, -1534, -1654, -11473, -1788, -1942, -1972, -11474, -11475], + [0, -4004, -3634, -8959, -4215, -2533, -3844], + [1, 3, 6331], + [0, 6332, 6333, 7, 4], + [0, -11476, -269, -1459], + [ + 0, -1116, -1788, -664, -1415, -1654, -2210, -932, -2125, -1942, -1069, -838, -1972, -2211, -2410, -1771, -6522, + -2174, -966, -964, -357, -958, -968, -940, -943, -3775 + ], + [1, 3, 6335], + [0, 0, 6336, 6337, 11], + [0, -589, -596, -11477, -932, -1077, -2884, -1939, -2177], + [0, -11478, -11479, -6249, -5269, -596, -6251, -6252, -1696, -1723], + [1, 3, 6339], + [0, 6340, 6341, 6342, 4], + [0, -702], + [ + 0, -1788, -1127, -1654, -2198, -756, -1132, -7845, -2410, -3037, -7887, -710, -11480, -9280, -1134, -1149, + -11481, -11482 + ], + [0, -3324, -6491, -8427, -3833, -6809, -10412, -11483, -3966, -1622, -7208], + [1, 3, 6344], + [0, 0, 6345, 6346, 4], + [0, -3037, -11484, -1077, -1344, -1654, -1788, -2125, -2410, -11485], + [0, -3966, -11486, -5574, -7534, -11487, -7371, -6974, -6582, -5847, -11488, -856], + [1, 3, 6348], + [0, 6349, 6350, 6351, 6], + [0, -808, -11489, -11490, -1097, -1646, -1737, -2114, -2177], + [0, -3037, -932, -958, -1344, -1534, -1942, -2319, -11491, -2363, -2379, -2410], + [0, -9427, -11492, -2295, -1673, -2490], + [1, 3, 6353], + [0, 124, 70, 6354, 11], + [0, -1727, -7421, -11070, -11493, -6656, -6235, -7547, -1076], + [1, 3, 6356], + [0, 6357, 6358, 6359, 4], + [0, -9154, -11494, -11495, -11496], + [ + 0, -4646, -367, -3330, -427, -428, -3664, -7351, -774, -932, -7352, -954, -960, -961, -963, -965, -7353, -7354, + -971, -979, -7355, -1344, -7356, -1498, -1534, -1608, -1609, -1768, -7357, -1942, -7358, -1945, -2091, -11497, + -7359, -2391, -2410, -2469, -7360 + ], + [0, -10838, -5493, -10841, -10840, -11498, -11499, -11500, -11501, -11502, -11503], + [1, 3, 6361], + [0, 6362, 6363, 6364, 4], + [0, -7026, -11504, -8966], + [0, -458, -5993, -649, -652, -664, -665, -11505, -9077, -756, -1069, -5989, -1654, -1828, -11506, -2384, -2541], + [0, -4213, -1334, -1961, -2105, -9172, -9173, -2533, -5388], + [1, 3, 6366], + [0, 0, 6367, 6368, 6], + [ + 0, -633, -719, -767, -932, -11507, -1004, -1471, -1472, -1475, -1478, -1479, -1480, -1482, -1483, -1487, -1488, + -1490, -11508, -1492, -1654, -1657, -11509, -1788, -6696, -2501, -2503, -11510 + ], + [ + 0, -11511, -11512, -11513, -11514, -770, -5374, -11515, -11516, -11517, -11518, -1334, -1342, -1616, -5150, + -11519, -11520, -11521, -11522, -11523, -2191, -11524, -11525, -11526, -8905, -11527, -11528, -11529 + ], + [1, 3, 6370], + [0, 6371, 6372, 6373, 9], + [0, -523, -812, -1548], + [0, -664, -1654, -1972, -2210], + [0, -3939, -5801, -5737, -5741, -5271, -11530, -11517, -11531, -1050, -5270, -491, -11532], + [1, 3, 6375], + [0, 6376, 6377, 6378, 9], + [0, -615, -1729], + [0, -664, -932, -1415, -2210], + [0, -11533, -11534, -11535, -3939, -11536, -11537, -11538, -11539, -11540], + [1, 3, 6380], + [0, 6381, 6382, 6383, 4], + [0, -5672, -11541, -1119, -10521, -1758, -1957, -2177, -2323, -2654, -2518], + [0, -596, -767, -932, -1654, -1696, -2884, -11542], + [0, -5269, -6249, -3551, -6251, -6252, -596, -6250], + [1, 3, 6385], + [0, 6386, 6387, 6388, 5], + [0, -780, -1297], + [ + 0, -7177, -674, -767, -932, -11543, -1317, -11544, -11545, -11546, -6595, -11547, -1333, -11548, -11549, -1839, + -2125, -10301, -2251, -2379, -2552 + ], + [0, -3264, -3215, -3967, -2410], + [1, 3, 6390], + [0, 6391, 6392, 6393, 5], + [0, -510, -11550, -812, -1004, -1107, -1850, -2001, -2177, -2185, -11551, -11552, -11553, -2518, -2531, -2550], + [0, -664, -1077, -1380, -1452, -1654, -1764, -1961, -2125], + [0, -812, -7336, -6480, -6479], + [1, 3, 6395], + [0, 6396, 6397, 6398, 11], + [0, -459, -736, -828, -1072, -8438, -1636, -1640, -1840, -1997, -2401], + [ + 0, -3035, -3621, -427, -428, -664, -932, -934, -940, -958, -1344, -1654, -1788, -1942, -2210, -2211, -2379, + -2384, -2410 + ], + [0, -4215, -8611, -10327, -3967, -3756, -3634, -4004, -1334, -11554], + [1, 3, 6400], + [0, 6401, 6402, 6403, 10], + [0, -11555, -1401, -2177, -11556, -2446, -2518], + [0, -749, -767, -932, -942, -943, -958, -966, -968, -1344, -1415, -1534, -11557, -1942, -2125], + [0, -11558, -11559, -9258, -11560, -9262, -6721, -11561, -11562, -4127], + [1, 3, 6405], + [0, 6406, 6407, 6408, 5], + [0, -579], + [0, -617, -1004, -1654, -2198, -2293], + [0, -1791, -11437], + [1, 3, 6410], + [0, 89, 56, 57, 8], + [1, 3, 6412], + [0, 6413, 6414, 6415, 8], + [0, -8612, -1650, -1708, -1758, -1769, -1778, -2001, -2125, -2177, -2323], + [0, -521, -1452, -1722, -2322], + [0, -5269, -6249, -3551, -6251, -6252, -596, -7304], + [1, 3, 6417], + [0, 6418, 6419, 6420, 4], + [0, -1723], + [0, -1654, -932, -11563, -1733, -767, -2410, -3037, -3621, -428, -427], + [0, -11564, -3975, -3974, -11565, -11566, -11567], + [1, 3, 6422], + [0, 6423, 0, 6424, 8], + [0, -11568, -11569, -11570, -11571, -579, -583, -754, -1004, -1077, -11572, -1758, -2177], + [0, -3496, -11532, -11573, -5411], + [1, 3, 6426], + [0, 6427, 6428, 6429, 10], + [0, -1696, -1088, -1107, -1630, -668, -1548, -1733, -1099, -11574, -769, -11575, -11576, -11577, -10521], + [0, -1788, -1654, -932, -2125, -1077, -11578], + [0, -775, -9264, -3277, -2162, -3754, -5553], + [1, 3, 6431], + [0, 6432, 6433, 6434, 4], + [0, -5414, -11579, -11580], + [0, -1788, -2322, -2210, -468, -932], + [0, -7046, -4107, -5418, -763, -11581, -10950], + [1, 3, 6436], + [0, 6437, 0, 6438, 4], + [0, -1813, -714, -1640], + [0, -1334, -5142, -6656, -3844], + [1, 3, 6440], + [0, 0, 6441, 6442, 5], + [0, -1788], + [0, -7230, -11582, -2446], + [1, 3, 6444], + [0, 0, 6445, 6446, 10], + [0, -1077, -1654], + [0, -11583, -2490, -11584], + [1, 3, 6448], + [0, 6449, 0, 6450, 8], + [0, -6597, -2550], + [0, -11585, -7084, -5196, -11586, -5545, -5389, -11587, -11588, -11589, -4107], + [1, 3, 6452], + [0, 6453, 6454, 6455, 4], + [0, -2534], + [0, -11590, -11591, -3037, -932, -1942, -1944, -2391, -2410, -3924, -2469], + [0, -11592, -3215, -4258, -2534, -11593], + [1, 3, 6457], + [0, 6458, 6459, 6460, 11], + [0, -1285, -1391], + [0, -5834, -515, -932, -1365, -7393, -1777, -1788, -1797, -2156, -2322], + [0, -1015, -11594, -11595, -702, -6351, -11596], + [1, 3, 6462], + [0, 6463, 6464, 6465, 5], + [0, -1116, -1696, -1460, -1993, -1548, -2324, -1077, -1733, -1740], + [0, -2487, -1654, -1452, -521, -674, -11597, -1405, -526, -756, -1440, -11598, -7382, -559], + [0, -11599, -11600, -5889, -5269], + [1, 3, 6467], + [0, 0, 6468, 6469, 6], + [0, -11601, -648, -652, -932, -940, -1110, -11602, -11603, -11604, -11605, -1942, -1971, -11606, -7932], + [0, -11607], + [1, 3, 6471], + [0, 6472, 6473, 6474, 5], + [0, -679, -812, -5911, -1645, -11608, -2177, -7741, -2297, -2363, -11609], + [0, -86, -3307, -510, -710, -932, -1344, -1654, -1788, -1972, -2174, -2198], + [0, -687, -1673, -1673, -3113, -9427, -11610, -11492, -3974], + [1, 3, 6476], + [0, 6477, 0, 7, 5], + [0, -888, -2319], + [1, 3, 6479], + [0, 6480, 6481, 6482, 4], + [0, -2125, -867, -11611, -2550, -2177], + [0, -2105, -2322], + [0, -11612, -11613, -7856, -11321, -9668], + [1, 3, 6484], + [0, 6485, 0, 6486, 5], + [ + 0, -7603, -469, -470, -8547, -5329, -473, -11614, -523, -617, -679, -744, -754, -792, -1004, -4206, -11615, + -11616, -1107, -1299, -11617, -11618, -1460, -11619, -1465, -11620, -1581, -5460, -11621, -1671, -1680, -1707, + -7045, -11622, -1752, -1805, -1857, -11623, -2071, -11492, -2107, -11624, -11625, -2520, -3730, -2548, -2550 + ], + [ + 0, -11626, -1756, -3214, -3967, -3161, -3445, -3100, -5407, -11627, -11628, -11629, -11630, -4055, -11631, + -4058, -1460, -2548, -3994, -11632 + ], + [1, 3, 6488], + [0, 6489, 83, 6490, 4], + [0, -2424, -668], + [0, -7303, -11633, -4376, -6792, -3215], + [1, 3, 6492], + [0, 6493, 29, 7, 5], + [0, -9632], + [1, 3, 6495], + [0, 0, 6496, 6497, 8], + [0, -1202, -1646, -1654], + [ + 0, -11634, -11635, -11636, -6656, -11637, -7693, -7839, -11638, -11639, -1076, -6811, -1847, -9358, -6517, + -2218, -11640, -11641, -11642, -11643 + ], + [1, 3, 6499], + [0, 0, 14, 6500, 4], + [0, -6811, -2435, -9171, -6558, -2265, -11644, -11645, -5101, -1985, -11646, -6817, -11647, -11648], + [1, 3, 6502], + [0, 0, 0, 6503, 5], + [0, -11649, -11644, -4865], + [1, 3, 6505], + [0, 6506, 6507, 6508, 4], + [ + 0, -668, -6793, -700, -755, -824, -2762, -930, -999, -11650, -11651, -1315, -6770, -1363, -1376, -1394, -11652, + -11653, -11654, -1535, -11655, -1574, -1630, -11656, -11657, -9050, -1805, -11658, -10270, -1849, -3609, -2060, + -2153, -2177, -5746, -3669, -2433 + ], + [0, -9154, -3199, -519, -722, -9982, -1077, -11659, -2210, -2269, -2331, -11660, -2541], + [0, -5732, -687, -1764, -8403, -5889, -5737, -9318, -6453, -5890], + [1, 3, 6510], + [0, 6511, 6512, 6513, 4], + [ + 0, -1681, -1371, -2323, -1107, -1758, -2059, -2247, -11661, -668, -1826, -2518, -9632, -1831, -2177, -4287, + -680, -11662, -9084, -1733, -1957, -11663, -1645, -4296, -4279, -1527, -1528, -1529, -11664, -11665, -2343, + -11666, -1119, -11667, -10513, -11668, -11669, -10517, -11670, -11671, -4285, -2297, -1315, -1767, -1982, -280, + -11672, -10520, -10521, -11673, -4291, -11674, -283, -4290, -1770, -11675, -11676, -4292, -4283, -4306, -8266, + -281, -2450, -4281, -4278, -11677 + ], + [ + 0, -469, -2319, -834, -1722, -4307, -2093, -2125, -695, -2095, -11678, -470, -11679, -1769, -4655, -11680, + -11681, -4300, -4298, -4299, -11682 + ], + [0, -1380, -3209, -11683, -10484], + [1, 3, 6515], + [0, 6516, 6517, 6518, 4], + [ + 0, -705, -1816, -1630, -668, -999, -1392, -2546, -11684, -1111, -1548, -2177, -11685, -1871, -827, -1376, -1645, + -1728, -2269, -2343, -1849, -11686, -5895, -11687, -6197, -11688, -2433, -11689 + ], + [0, -2541, -526, -567, -559, -555, -551], + [0, -1764, -11690, -3015, -7441, -5887, -7440, -11691, -3690, -9845, -687, -9594, -11692, -11693, -7856, -3016], + [1, 3, 6520], + [0, 0, 6521, 6522, 4], + [ + 0, -11694, -7057, -3035, -4269, -11695, -11696, -5361, -11697, -3660, -11698, -3044, -3621, -3037, -11699, + -11700, -8523, -3624, -3735, -3199, -11701, -4372, -11702, -427, -428, -656, -664, -665, -9077, -668, -695, + -719, -767, -8609, -932, -940, -11703, -943, -958, -960, -965, -968, -1026, -10960, -1047, -11704, -1315, -1371, + -1442, -1461, -11705, -1547, -1548, -1609, -1654, -1770, -1771, -1826, -5883, -1864, -1942, -1959, -11706, + -11689, -2124, -2125, -5405, -2177, -11707, -2198, -2210, -2234, -7744, -2269, -2379, -2410, -11708, -2430, + -2433, -11709, -2466, -11710, -11711, -6859, -2552 + ], + [0, -3015, -1764, -10484, -10674, -11712, -11713], + [1, 3, 6524], + [0, 6525, 29, 7, 5], + [0, -1315, -1957, -2177, -2450], + [1, 3, 6527], + [0, 6528, 6529, 6530, 6], + [ + 0, -469, -3907, -668, -755, -812, -1111, -1353, -1395, -1461, -1574, -1630, -1877, -2177, -2218, -2271, -2400, + -2450 + ], + [ + 0, -3136, -3037, -427, -428, -928, -11714, -932, -11715, -11716, -954, -958, -959, -967, -978, -1040, -1415, + -7357, -11717, -1942, -2375, -2410 + ], + [0, -7148, -8170, -10484, -5879, -11718, -1768], + [1, 3, 6532], + [0, 6533, 6534, 7, 8], + [0, -6770, -1957], + [0, -280, -4298, -4300, -11719, -2319], + [1, 3, 6536], + [0, 6537, 6538, 6539, 10], + [0, -4285, -10335, -10521, -9084, -11720, -11721, -1767, -1957], + [0, -4298, -4300, -4287, -1722, -11542, -2247, -2319], + [0, -1764, -11722, -4213], + [1, 3, 6541], + [0, 6542, 6543, 233, 4], + [0, -668, -11084, -2060, -1645, -482, -769, -2194, -1627, -11723], + [0, -1788, -2552, -1654, -932, -2125, -708, -1827, -1077, -3037, -1938, -566, -11724, -6018, -545], + [1, 3, 6545], + [0, 6546, 6547, 233, 11], + [0, -2518, -11084, -1864, -482, -769, -2194, -1627, -11728], + [0, -652, -1498, -2552, -1446, -1654, -932, -9774, -2884, -516, -3781], + [1, 3, 6549], + [0, 6550, 14, 6551, 5], + [0, -7087, -8803], + [0, -1764, -11727, -1847, -5897, -8425, -7304, -8426, -11729, -687, -3958, -7096, -7237], + [1, 3, 6553], + [0, 0, 6554, 6555, 5], + [0, -3136, -3037, -427, -428, -3267, -932, -940, -1415, -1534, -10652, -2125, -2127, -2375, -2410], + [0, -11730, -856, -11731], + [1, 3, 6557], + [0, 6558, 6559, 6560, 4], + [0, -668, -691, -719, -812, -1376, -1965], + [0, -664, -1654, -1663, -2250], + [0, -7865, -1764, -11732], + [1, 3, 6562], + [0, 6563, 6564, 6565, 6], + [0, -1376, -1993], + [0, -526, -541, -551, -11733, -566, -1771], + [0, -1764, -687, -7095, -3957, -9408, -4043, -9845, -1776, -11734], + [1, 3, 6567], + [0, 6568, 6569, 6570, 6], + [0, -1285, -1646], + [0, -5834, -516, -5835, -932, -1365, -1431, -1788, -2156, -2322], + [0, -1777, -9100], + [1, 3, 6572], + [0, 6573, 6574, 7, 6], + [0, -4700, -10515, -11735, -4716], + [0, -2319, -4300, -4298], + [1, 3, 6576], + [0, 0, 6577, 7, 4], + [0, -664, -1437, -1449, -1654, -11736], + [1, 3, 6579], + [0, 6580, 6581, 6582, 4], + [0, -668, -694, -11737, -1343, -1376, -11738, -2177, -9564, -2550], + [0, -619, -707, -8326, -1277, -1510, -1658], + [0, -7107, -1780, -8327], + [1, 3, 6584], + [0, 6585, 6586, 6587, 5], + [0, -11739], + [0, -3136, -3037, -427, -428, -749, -932, -940, -967, -1344, -1415, -1942, -1952, -2125, -2375, -2379, -2410], + [0, -1781, -11740, -687, -3578, -3871, -7864, -2006, -3966, -2410, -3214, -2501, -1415, -3100, -3445, -5407], + [1, 3, 6589], + [0, 0, 6590, 6591, 6], + [0, -664, -1138, -1146, -1155, -1156, -9545, -1471, -1474, -1475, -1479, -1482, -1483, -1488, -1542, -1654], + [0, -1782, -6240, -3276, -4123, -11741, -11742], + [1, 3, 6593], + [0, 6594, 6595, 6596, 5], + [0, -11743, -11744, -719], + [ + 0, -21, -23, -40, -43, -534, -539, -541, -729, -753, -767, -932, -934, -958, -1004, -1077, -1098, -11745, + -11746, -11747, -11748, -1788, -1860, -2187, -2416, -2417, -2501 + ], + [0, -3110, -7651], + [1, 3, 6598], + [0, 0, 0, 6599, 5], + [0, -8427, -3966], + [1, 3, 6601], + [0, 0, 6602, 6603, 10], + [0, -2832, -5834, -8084, -8096, -516, -652, -5835, -932, -1431, -1365, -1777, -2156, -2322], + [0, -1784, -1785, -5874], + [1, 3, 6605], + [0, 0, 0, 6606, 10], + [0, -775, -5180, -11749, -5912, -3585], + [1, 3, 6608], + [0, 6609, 0, 6610, 4], + [ + 0, -888, -1816, -2359, -1055, -1805, -2548, -523, -701, -2387, -2550, -865, -1353, -2177, -1040, -910, -1418, + -1645, -2369, -690, -1863, -2325, -692, -1075, -1461, -1773, -2267, -2551, -866, -2383, -11750, -11751, -11752, + -4341, -10789, -11753, -11754 + ], + [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -4339, -4340, -4347, -4343, -4344, -11755], + [1, 3, 6612], + [0, 6613, 6614, 6615, 4], + [ + 0, -6028, -4003, -11756, -742, -813, -1046, -1047, -6475, -1097, -1107, -5086, -11757, -6029, -11758, -5087, + -5088, -5089, -1591, -11759, -1826, -11760, -2115, -2125, -2202, -11761, -6030, -2550 + ], + [0, -11762, -5607, -2111, -2234, -2250, -2251, -2319, -2446, -2518], + [0, -4005, -6863, -8422, -3634], + [1, 3, 6617], + [0, 6618, 6619, 6620, 5], + [0, -11763, -4049, -3424, -11619, -10873, -5969, -5263, -1851, -11764], + [0, -11765, -11766, -11767, -3037, -2391, -2410, -2469], + [0, -3690, -11768, -3438, -11769, -11770, -11771, -11772, -11773, -1789, -489, -11148, -856], + [1, 3, 6622], + [0, 6623, 6624, 6625, 4], + [0, -11763, -11774, -1442, -5263, -3792], + [0, -11765, -3660, -11775, -1722, -2391, -2410, -2469], + [0, -3690, -489, -11768, -856, -11148, -11773, -1789, -3438, -11772, -11769, -11771, -11770, -11410, -4847], + [1, 3, 6627], + [0, 0, 84, 7, 8], + [1, 3, 6629], + [0, 0, 6630, 6631, 5], + [0, -2541, -519, -1548, -1612], + [0, -7208, -7370, -1015, -3589, -4795, -3217, -3207, -6989, -11776, -3582, -5396, -4865], + [1, 3, 6633], + [0, 0, 6634, 6635, 4], + [ + 0, -633, -1168, -1177, -11117, -11777, -1220, -1224, -1231, -1243, -1244, -1262, -1452, -1453, -1471, -1475, + -1482, -1654 + ], + [0, -7208, -6131, -2191, -1616], + [1, 3, 6637], + [0, 0, 6638, 6639, 6], + [ + 0, -5834, -11778, -516, -753, -11779, -921, -932, -1065, -1083, -1107, -11780, -1283, -11781, -1365, -1408, + -8082, -1659, -1777, -1788, -2156, -9786, -2177, -8310, -2322 + ], + [0, -4676, -11782, -7208, -6231, -3240], + [1, 3, 6641], + [0, 0, 6642, 6643, 4], + [0, -5834, -8487, -932, -6283, -11783, -1391, -2322], + [0, -11784, -7373, -6947, -5396], + [1, 3, 6645], + [0, 0, 6646, 6647, 8], + [0, -1788, -664, -1654, -756, -1657, -11785], + [0, -6545, -1847, -11786, -11787, -9052, -7153, -864, -7375, -7208, -7369, -11788, -11789, -5846, -8893, -7372], + [1, 3, 6649], + [0, 6650, 6651, 6652, 6], + [0, -655, -6511, -5830, -11790, -1283, -1795], + [0, -5833, -5834, -633, -932, -1065, -1083, -5836, -1285, -1659, -1777, -1788, -2156, -5942, -2322], + [0, -11791, -7370, -6948, -1015, -11792, -11594, -11793, -11794, -5843, -3582, -5396], + [1, 3, 6654], + [0, 6655, 6656, 6657, 6], + [0, -655, -6511, -5830, -11790], + [0, -5833, -5834, -8569, -516, -5835, -932, -1083, -5836, -1365, -1777, -1788, -2156, -2322], + [0, -11795, -11796, -11784, -11797, -7374, -6949, -11798, -6952, -5396, -7208, -7373, -3582, -5843], + [1, 3, 6659], + [0, 6660, 6661, 7, 9], + [0, -11799], + [0, -1788, -1654, -932, -966, -958, -968, -943, -963, -974], + [1, 3, 6663], + [0, 6664, 71, 6665, 4], + [0, -11800], + [0, -1801, -5924, -6812, -6814], + [1, 3, 6667], + [0, 6668, 6669, 6670, 4], + [0, -11801, -11802, -502, -679, -769, -1353, -2369], + [0, -7080, -3037, -1344, -1534, -1942, -2125, -2410], + [0, -1107, -2490, -5888], + [1, 3, 6672], + [0, 6673, 6674, 6675, 5], + [0, -11803, -1553], + [0, -3621, -11804, -708, -1452, -1654, -1658, -1660, -1788, -2379, -2410], + [0, -11805, -11573, -11806, -11807, -11808, -10226, -11809, -11810, -11811, -9261], + [1, 3, 6677], + [0, 6678, 115, 234, 5], + [0, -11812, -11813, -11814, -9981, -6756, -11815], + [1, 3, 6680], + [0, 6681, 6682, 6683, 5], + [0, -1043, -1099, -1630, -1805, -2331], + [0, -519, -999, -2541], + [ + 0, -5732, -687, -3994, -1805, -1810, -11816, -11817, -11818, -11819, -11820, -11821, -7095, -4865, -3496, -7237, + -7863, -2435, -11822, -7303, -7091, -8421, -6599, -1958, -3258, -6656 + ], + [1, 3, 6685], + [0, 6686, 6687, 6688, 6], + [0, -11823, -11824, -5263], + [0, -3136, -3660, -4049, -523, -11825, -1415, -1456, -11826, -1683, -1942, -2234, -2375, -2379, -2410], + [0, -3438, -4847, -3323, -523, -3100, -4865, -4215, -2410], + [1, 3, 6690], + [0, 6691, 6692, 6693, 5], + [0, -813, -1326, -1459, -1600, -1967, -2006, -2019, -2451], + [ + 0, -32, -204, -526, -552, -9968, -756, -932, -933, -934, -958, -962, -968, -969, -1108, -1320, -1415, -1753, + -1771, -2105, -2106, -5331 + ], + [0, -4847, -3438, -11827, -3264, -856, -3262], + [1, 3, 6695], + [0, 6696, 6697, 6698, 11], + [0, -6280, -1696], + [0, -1107, -2105, -2322], + [0, -1809, -11828, -9565, -11829], + [1, 3, 6700], + [0, 0, 38, 7, 6], + [1, 3, 6702], + [0, 6703, 6704, 7, 8], + [0, -11830, -2105], + [0, -526, -559, -932, -933, -958, -962, -969], + [1, 3, 6706], + [0, 6707, 55, 234, 9], + [0, -1401], + [1, 3, 6709], + [0, 6710, 6711, 235, 4], + [0, -2525, -1646], + [0, -11831, -2319], + [1, 3, 6713], + [0, 6714, 6715, 6716, 8], + [0, -784, -11832, -1889], + [0, -527, -533, -551, -556, -558, -778, -1415, -2275, -2501], + [0, -7198, -10435, -1017, -7173, -7175, -6694, -2501], + [1, 3, 6718], + [0, 6719, 6720, 6721, 11], + [0, -11833, -11834, -2524, -8437, -11835, -10579], + [0, -11836, -1654], + [0, -6792, -5272, -11837, -687], + [1, 3, 6723], + [0, 6724, 6725, 6726, 8], + [0, -668, -690, -692, -11652, -6861, -1574, -11838, -2267], + [0, -3037, -519, -1100, -11839, -2384, -2541], + [0, -687, -6716, -6717, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, -4116, -4117], + [1, 3, 6728], + [0, 6729, 6730, 6731, 10], + [0, -908, -11840, -11841], + [0, -994, -1262, -1452, -1597, -1632, -1654, -1980, -2198, -2462], + [0, -510, -4107, -5921, -10462], + [1, 3, 6733], + [0, 6734, 6735, 6736, 11], + [0, -510, -615, -7840, -10358, -1548, -1850, -11842, -11843], + [0, -652, -668, -1107, -1654, -1671, -1691, -1857, -2177, -2198, -2210, -2245], + [0, -1818, -11221, -7685, -1691, -10425, -11844, -3742, -1671], + [1, 3, 6738], + [0, 0, 0, 6739, 4], + [0, -3966, -1819, -3103, -3551], + [1, 3, 6741], + [0, 6742, 71, 6743, 6], + [0, -8383, -10383], + [0, -5558, -3833, -11845, -11846, -1847, -1965, -11847], + [1, 3, 6745], + [0, 0, 6746, 6747, 4], + [0, -3035, -3048, -3621, -3037, -3046, -10755, -664, -999, -1077, -1654, -1763, -2379, -2501, -2518], + [0, -3184, -4795, -11848, -11849, -7728, -2265, -3110, -6806], + [1, 3, 6749], + [0, 0, 0, 6750, 5], + [0, -1823, -3586, -11850, -11851, -11852, -11853, -3100, -4865], + [1, 3, 6752], + [0, 6753, 6754, 6755, 5], + [0, -11854, -719, -1063, -1392, -1526, -2177, -2359, -11855], + [0, -3244, -190, -3748, -4200, -11856, -3037, -3199, -3628, -11857, -427, -428, -932, -11858, -2125, -2410], + [0, -687, -11859, -8109, -8403], + [1, 3, 6757], + [0, 6758, 6759, 6760, 5], + [0, -1828], + [0, -3037, -519, -826, -2384, -2541], + [ + 0, -1961, -997, -5389, -6820, -8397, -10670, -6821, -8401, -6822, -8124, -11860, -11861, -4116, -11862, -8402, + -4865, -5092, -510, -5867, -5923, -615 + ], + [1, 3, 6762], + [0, 0, 6763, 6764, 5], + [0, -519, -668, -826, -7426, -7424, -7427, -2384, -2541], + [ + 0, -1961, -6917, -11863, -4116, -7558, -9029, -9027, -11864, -11865, -510, -5867, -5923, -726, -11866, -5921, + -615 + ], + [1, 3, 6766], + [0, 6767, 6768, 6769, 4], + [0, -996, -1828], + [0, -5918, -3268, -3037, -589, -825, -826, -7426, -7963, -7424, -7427, -2384, -2392, -2410, -2541], + [ + 0, -1961, -1986, -11450, -6729, -7331, -11866, -7329, -11685, -7333, -7334, -11867, -11038, -11033, -11868, + -5418, -4107, -510, -5867, -5923, -615 + ], + [1, 3, 6771], + [0, 0, 6772, 6773, 11], + [0, -519, -826, -7426, -9161, -2210, -7427, -2384, -2541], + [0, -1961, -7430, -6324, -11869, -510, -5867, -5923, -4123, -11870, -5391, -615], + [1, 3, 6775], + [0, 6776, 6777, 6778, 4], + [0, -1107], + [0, -1415, -1942, -4701], + [0, -856, -2299, -11871, -11872], + [1, 3, 6780], + [0, 6781, 6782, 6783, 5], + [0, -11873, -522, -594, -719, -914, -1496, -1689, -1750, -1978, -2177], + [0, -652, -932, -11874, -1654, -11875, -4654, -2210], + [ + 0, -4665, -4666, -10432, -11876, -5879, -4864, -5986, -522, -7144, -687, -11877, -11878, -11879, -10770, -1830, + -1978, -9246, -11880, -3634, -2451, -11881 + ], + [1, 3, 6785], + [0, 6786, 6787, 6788, 4], + [ + 0, -11678, -4280, -4283, -4306, -283, -4287, -11666, -9084, -1767, -1769, -4291, -1770, -1957, -10592, -11882, + -2247, -2323 + ], + [0, -280, -4298, -4300, -1315, -11719, -1722, -11883, -2125, -2319], + [0, -7442, -1764, -5889], + [1, 3, 6790], + [0, 6791, 6792, 6793, 8], + [0, -9491, -9492, -11884, -807, -7731, -11885, -1548, -1574, -1591, -1826, -1877, -2400, -11886], + [0, -5918, -5033, -3044, -3037, -11887, -743, -825, -1043, -1098, -9810, -1849, -11888, -2392, -2410, -2541], + [ + 0, -11889, -3258, -9204, -3578, -2435, -9804, -8799, -9711, -11890, -11891, -5566, -4045, -9552, -3576, -7419, + -1978, -10366, -6527, -3839, -7650, -3264, -11878, -9712, -8633, -8634, -7715, -8640, -9235 + ], + [1, 3, 6795], + [0, 0, 6796, 6797, 4], + [0, -3037, -3664, -6593, -7653, -7654, -932, -958, -960, -1449, -2410, -2466, -2469], + [0, -3100, -3445, -3261, -3098, -3160, -6107, -9975, -9612, -11074], + [1, 3, 6799], + [0, 0, 6800, 6801, 11], + [0, -40, -3326, -350, -351, -932, -1103, -1654, -1687, -10835, -1788, -2127, -2140, -2195], + [0, -9506, -6827, -10350, -6826], + [1, 3, 6803], + [0, 6804, 38, 6805, 6], + [ + 0, -11064, -668, -6842, -1000, -1039, -1099, -1111, -1333, -1465, -1630, -1641, -1836, -2114, -11892, -2433, + -2551 + ], + [0, -11893, -3445, -687, -10810, -3690], + [1, 3, 6807], + [0, 6808, 6809, 6810, 5], + [0, -11197, -1582, -2291], + [0, -190, -865, -932, -940, -958, -965, -967, -968, -1110, -1548, -1654, -1942, -2340, -2892, -2410], + [0, -11893, -3323, -4725, -11894, -3844, -3445, -3690, -3691, -4055], + [1, 3, 6812], + [0, 0, 6813, 6814, 6], + [0, -615, -664, -710, -1654], + [0, -5921, -5550], + [1, 3, 6816], + [0, 6817, 6818, 6819, 9], + [0, -44, -3345, -772, -11895, -11896, -2531], + [ + 0, -23, -26, -38, -40, -41, -42, -190, -3266, -11897, -3470, -7040, -3471, -3472, -7041, -7042, -11898, -533, + -8580, -11899, -708, -753, -767, -932, -8147, -960, -1004, -1168, -1174, -1268, -1412, -10034, -11900, -1415, + -1419, -1446, -11901, -1534, -4375, -3156, -11220, -11902, -1978, -2082, -2174, -2411, -2466, -11903, -10092 + ], + [0, -5801, -3162, -3690], + [1, 3, 6821], + [0, 6822, 0, 6823, 5], + [0, -3223], + [0, -3264, -3215, -5177, -11904, -4681, -5922, -11905, -11906, -6595, -1839, -4142, -11907, -11908, -1838, -6233], + [1, 3, 6825], + [0, 0, 6826, 7, 6], + [0, -1654, -932, -1405, -589, -11909, -585, -966, -958, -968, -943, -974], + [1, 3, 6828], + [0, 6829, 6830, 6831, 10], + [0, -11910, -2445, -1846], + [0, -664, -1654, -1592, -1972, -666, -11911], + [0, -1004, -729, -6120, -8449, -3173], + [1, 3, 6833], + [0, 6834, 6835, 6836, 8], + [0, -1845], + [0, -1592, -1654, -664, -666], + [0, -1841, -4038, -6120, -8449, -3173, -9795], + [1, 3, 6838], + [0, 6839, 236, 6840, 4], + [0, -1846], + [0, -1841, -8427, -6120, -8449, -3173, -11912, -5110], + [1, 3, 6842], + [0, 6843, 236, 237, 8], + [0, -11913, -1845], + [1, 3, 6845], + [0, 6846, 6847, 237, 5], + [0, -11914, -1791, -1846, -10686, -2445], + [0, -1592, -1654, -664, -1972, -666], + [1, 3, 6849], + [0, 0, 114, 6850, 4], + [0, -1841, -6539], + [1, 3, 6852], + [0, 6853, 0, 6854, 5], + [0, -1958, -2444], + [0, -11153, -1847], + [1, 3, 6856], + [0, 0, 31, 6857, 8], + [0, -4865, -633, -1847], + [1, 3, 6859], + [0, 0, 238, 6860, 5], + [0, -1847, -6788, -11915, -6656, -7693, -1076, -7422, -7000, -11786, -9330], + [1, 3, 6862], + [0, 0, 118, 6863, 4], + [ + 0, -1847, -9098, -6656, -11070, -11634, -11916, -11917, -6441, -2444, -5260, -3103, -6989, -3582, -5396, -1391, + -6659, -7440 + ], + [1, 3, 6865], + [0, 0, 6866, 6867, 8], + [0, -6918, -5295, -3037, -3199, -3664, -10880, -2214, -2410, -2469], + [0, -1004, -5570, -10470, -9843], + [1, 3, 6869], + [0, 0, 6870, 7, 5], + [0, -3037, -3664, -672, -928, -932, -944, -1431, -1942, -2410, -2423, -2469, -11918], + [1, 3, 6872], + [0, 6873, 6874, 57, 4], + [0, -1406, -1460, -7885], + [0, -1078, -1654, -1941], + [1, 3, 6876], + [0, 6877, 6878, 6879, 4], + [0, -11919, -11920, -1834, -2062, -9789, -2446], + [0, -3037, -640, -997, -1942, -2322, -2410], + [0, -6528, -3262], + [1, 3, 6881], + [0, 6882, 6883, 6884, 10], + [0, -772, -4702, -11921, -11922, -11923], + [ + 0, -23, -3840, -40, -190, -3326, -533, -11924, -11925, -627, -633, -659, -709, -932, -1103, -1110, -1415, -1419, + -4981, -1599, -11926, -1942, -1974, -2127, -4063 + ], + [0, -6528, -11927, -11928, -6524, -10855, -9472], + [1, 3, 6886], + [0, 0, 6887, 7, 4], + [0, -615, -11929, -664, -11930, -710, -1654, -1939], + [1, 3, 6889], + [0, 6890, 6891, 6892, 4], + [0, -10416, -11931, -11932, -11933, -11934, -11935], + [0, -11936, -11937, -510, -615, -705, -11938, -2410, -2469, -9667], + [0, -7685, -11939, -1857, -11940, -10425, -6321, -11941], + [1, 3, 6894], + [0, 6895, 6896, 6897, 5], + [0, -1860, -2239, -2520], + [ + 0, -526, -527, -528, -556, -558, -559, -6089, -932, -934, -956, -958, -1059, -11942, -1415, -1417, -11943, + -9913, -2125 + ], + [0, -1858, -1859, -9879], + [1, 3, 6899], + [0, 6900, 6901, 239, 11], + [0, -1018, -1077, -7234, -9423, -1959, -2105, -7241, -2518], + [0, -932, -1754], + [1, 3, 6903], + [0, 6904, 6905, 239, 5], + [0, -925, -1018, -1077, -7234, -9423, -1959, -2105, -7241, -2518], + [0, -932, -1754, -4881], + [1, 3, 6907], + [0, 6908, 6909, 6910, 5], + [ + 0, -501, -714, -728, -11944, -752, -9012, -1412, -1646, -1810, -1812, -3547, -11945, -1878, -1965, -1982, -2105, + -2195, -2433 + ], + [0, -7672, -932, -942, -943, -958, -966, -968, -974, -1405], + [0, -687, -752, -1861, -11946, -11947], + [1, 3, 6912], + [0, 0, 70, 7, 11], + [1, 3, 6914], + [0, 0, 0, 6915, 8], + [0, -3974, -714, -5538, -687, -4000], + [1, 3, 6917], + [0, 0, 6918, 6919, 5], + [0, -932, -10999, -1202, -1654, -1788], + [0, -1107, -5572, -1864], + [0, 44, 15, 16, 8], + [1, 3, 6922], + [0, 0, 6923, 6924, 9], + [0, -519, -11948, -2384, -11135, -2541], + [ + 0, -8124, -5865, -1961, -5923, -11949, -5500, -3966, -11301, -11300, -5845, -6408, -4001, -8911, -6509, -510, + -5867, -4795, -615 + ], + [1, 3, 6926], + [0, 6927, 6928, 6929, 10], + [0, -11950, -11951, -11952, -11953, -8543, -11954, -11955, -7967, -11956, -11957, -11958], + [ + 0, -2832, -11419, -11959, -3037, -468, -11960, -2917, -648, -812, -2758, -932, -958, -965, -966, -968, -999, + -11961, -11962, -1362, -1415, -1573, -1577, -11963, -2884, -11964, -1939, -1972, -1976, -2125, -2177, -2240, + -11965, -2269, -2322, -2347, -2379, -2384, -2410, -2520 + ], + [0, -5922, -3444, -5827, -4055], + [1, 3, 6931], + [0, 0, 6932, 6933, 4], + [0, -932, -940, -8177, -966, -967, -1344, -1415, -1942, -2331], + [0, -1764, -11966, -11967, -7646, -11968], + [1, 3, 6935], + [0, 6936, 6937, 6938, 5], + [0, -1880], + [0, -932, -10497, -2410], + [0, -6527, -10588, -834], + [1, 3, 6940], + [0, 6941, 6942, 6943, 6], + [0, -8341], + [0, -2541, -519, -2384, -2331], + [ + 0, -5897, -4055, -5756, -1764, -11969, -5573, -8804, -1047, -5504, -8805, -8806, -6656, -7282, -5572, -2114, + -8807, -6370, -7420, -7421, -2487, -8808, -1847 + ], + [1, 3, 6945], + [0, 175, 14, 6946, 5], + [ + 0, -7861, -5897, -6656, -5573, -8804, -1047, -5504, -8805, -8806, -7282, -5572, -2114, -8807, -6370, -7420, + -7421, -2487, -8808, -1847 + ], + [1, 3, 6948], + [0, 0, 84, 6949, 5], + [0, -8041, -3674, -10484], + [1, 3, 6951], + [0, 6952, 0, 7, 5], + [0, -3982], + [1, 3, 6954], + [0, 6955, 6956, 6957, 11], + [0, -4733, -578, -2538], + [0, -633, -1654, -6810, -2568], + [0, -5736, -4865, -8995, -1875, -3215, -6597], + [1, 3, 6959], + [0, 6960, 6961, 6962, 4], + [0, -479], + [0, -932, -937, -966, -1001, -1654, -1788, -2410], + [0, -6324, -3862, -1266], + [1, 3, 6964], + [0, 6965, 14, 6966, 8], + [0, -11970], + [0, -9757, -11971, -1878, -9756, -11972, -10781, -2265, -11973, -11974, -11975], + [1, 3, 6968], + [0, 0, 6969, 6970, 9], + [0, -664, -1405, -1654, -2176], + [0, -9757, -11971, -1878, -9756, -9763, -1369], + [1, 3, 6972], + [0, 6973, 70, 6974, 8], + [ + 0, -11976, -11977, -11978, -11979, -483, -510, -11980, -679, -11981, -719, -764, -809, -812, -910, -995, -11982, + -1650, -1708, -11983, -11984, -11985, -11986, -11987, -3968, -2177, -2234, -2243, -11988, -1442 + ], + [ + 0, -687, -8947, -8948, -3674, -1879, -11989, -1573, -4055, -1004, -1277, -11990, -11492, -11991, -11992, -11993, + -11994, -11995, -11996, -11997, -9466, -11998, -11148, -5731, -3207, -11999, -12000, -12001, -12002, -12003, + -8901, -8902, -11586, -2295, -12004, -1753, -12005, -7662, -12006, -11230, -12001, -12007, -1066, -11429, + -12008, -5805, -11486, -8944, -12009, -12010, -12011, -12012, -9844, -7606, -763, -8904, -12013 + ], + [1, 3, 6976], + [0, 0, 6977, 6978, 4], + [0, -633, -641, -729, -932, -940, -1788, -1942, -1978, -2187, -12014, -2322], + [0, -12015, -6116, -6117, -12016, -12017, -3215, -7715, -11923, -12018, -1880], + [1, 3, 6980], + [0, 6981, 6982, 6983, 9], + [0, -2381], + [0, -909, -1415, -1421, -1425, -2231], + [0, -2501, -2552, -10054, -10055], + [1, 3, 6985], + [0, 0, 0, 6986, 4], + [ + 0, -1882, -12019, -3015, -12020, -11037, -5922, -12021, -1380, -7856, -10606, -5880, -3209, -10440, -10527, + -1764, -11683, -10484, -7442, -12022, -12023, -6694, -5881, -12024, -12025, -10444 + ], + [1, 3, 6988], + [0, 241, 6989, 6990, 5], + [0, -2334, -2379, -2410], + [ + 0, -12026, -12027, -12028, -12029, -12030, -12031, -12032, -12033, -3690, -12034, -12035, -12036, -12037, -3445, + -3100, -2410 + ], + [1, 3, 6992], + [0, 39, 6993, 6994, 4], + [ + 0, -21, -23, -32, -38, -39, -40, -6056, -3326, -351, -3561, -528, -533, -535, -12038, -767, -796, -856, -932, + -934, -958, -1059, -11942, -1344, -1415, -1534, -11943, -1942, -12039, -1993, -2127, -2139, -2140, -2174, -2200, + -12040, -2410, -2449 + ], + [0, -2278, -1885, -906, -12041, -3771, -12042, -2006, -5411, -2410, -12043, -12044, -12045, -712, -5535], + [1, 3, 6996], + [0, 0, 6997, 6998, 5], + [0, -12046, -12047, -12048, -12049, -932, -12050, -2410], + [0, -12051, -3095, -7582, -3821, -3822, -12052, -12053], + [1, 3, 7000], + [0, 7001, 7002, 7003, 6], + [0, -510, -812], + [0, -1415], + [0, -1334, -12054, -8113], + [1, 3, 7005], + [0, 7006, 0, 7007, 8], + [0, -1699, -1863, -2232], + [0, -775, -1889, -9336, -3277, -3215, -12055, -6408, -12056, -3186], + [1, 3, 7009], + [0, 7010, 7011, 7012, 8], + [0, -1931, -1934], + [0, -3037, -932, -940, -12057, -1889, -1942, -2410], + [0, -775, -1889, -3583, -12058, -12059], + [1, 3, 7014], + [0, 7015, 7016, 7017, 4], + [0, -679, -3227, -1077, -1863, -1907, -12060, -6467, -12061, -2218, -2654, -2550], + [0, -519, -652, -756, -932, -12062, -1110, -1889, -1906, -1942, -2289, -2446], + [0, -687, -1889, -9300], + [1, 3, 7019], + [0, 7020, 0, 7021, 6], + [0, -2953, -93, -94, -97, -12063], + [0, -712, -12064, -775, -3099, -5112, -12065, -12066, -12067, -11788, -1889, -3583, -5549, -12068, -7451, -4132], + [1, 3, 7023], + [0, 7024, 7025, 7026, 6], + [0, -635, -12069, -2840, -1934], + [0, -12070, -1889], + [0, -712, -714, -724, -775, -1644, -1889, -3583], + [1, 3, 7028], + [0, 242, 22, 7029, 9], + [0, -775, -7193, -1889, -3583], + [1, 3, 7031], + [0, 7032, 7033, 7034, 5], + [ + 0, -518, -12069, -668, -12071, -12072, -1889, -12073, -12074, -1890, -12075, -12076, -12077, -12078, -12079, + -12080, -12081, -12082, -1896, -1897, -1898, -12083, -12084, -12085, -12086, -12087, -1917, -12088, -12089, + -12090, -12091, -12092 + ], + [ + 0, -526, -527, -534, -558, -560, -565, -8161, -682, -778, -12093, -12094, -12095, -12096, -12097, -932, -12098, + -949, -969, -1017, -1041, -1304, -12099, -1442, -1455, -1600, -12100, -1633, -12101, -12102, -12103, -12104, + -12105, -12106, -12107, -12108, -12109, -11748, -1762, -12110, -1792, -1812, -12111, -1906, -1908, -12060, + -7033, -1967, -2006, -2019, -12112, -2125, -2269, -2275, -2322, -12113, -2501, -2505, -12114 + ], + [0, -1889, -3583, -775, -5387, -12115], + [1, 3, 7036], + [0, 7037, 0, 7038, 5], + [0, -12116, -93, -94, -95], + [0, -12117, -12118, -775, -12119, -3586, -12120, -1889, -3583, -12121, -5101, -4681, -5387], + [1, 3, 7040], + [0, 7041, 0, 7042, 4], + [0, -12116, -93, -94, -12063, -1934], + [0, -775, -12119, -3586, -3587, -1889, -3583, -3589, -4681, -3591, -3592, -5387], + [1, 3, 7044], + [0, 7045, 0, 7046, 4], + [0, -12116, -93, -94, -1931], + [0, -12117, -12118, -775, -12119, -3586, -12122, -8109, -1889, -3583, -11315, -12123, -4681, -5387], + [1, 3, 7048], + [0, 90, 7049, 7050, 6], + [0, -1889, -1930, -10815], + [0, -775, -3485, -1889, -3583], + [1, 3, 7052], + [0, 0, 22, 7053, 9], + [0, -775, -816, -7192, -1889, -3583], + [1, 3, 7055], + [0, 0, 22, 7056, 4], + [0, -6454, -775, -12124, -1644, -7193, -1889, -3583], + [1, 3, 7058], + [0, 0, 7059, 7060, 6], + [0, -834, -1863, -1889], + [0, -1889, -775, -3583, -12125, -12126, -12127], + [1, 3, 7062], + [0, 0, 7063, 7064, 8], + [0, -664, -1168, -1197, -1231], + [0, -1889, -775, -3583, -12128, -6445, -12129], + [1, 3, 7066], + [0, 7067, 7068, 7069, 9], + [0, -1333, -3187, -1889, -1929], + [ + 0, -8281, -518, -664, -708, -932, -940, -954, -8286, -961, -965, -8287, -967, -971, -980, -7355, -1654, -8324, + -1788, -12130, -1930, -12131, -1942, -2281, -2282, -2289 + ], + [0, -1889, -4132, -3264, -2476, -12132, -12133, -775, -1521, -2162, -3754, -12134, -2289], + [1, 3, 7071], + [0, 7072, 0, 7073, 10], + [0, -12063, -1934], + [0, -5182, -775, -6527, -12135, -5399, -7036, -1889, -3583, -9804, -3576], + [1, 3, 7075], + [0, 7076, 7077, 7078, 10], + [0, -1934, -12061, -2114], + [0, -519, -652, -932, -12062, -967, -1110, -1889, -1930, -1942, -2289], + [0, -775, -1889, -3583, -6024, -12136, -1764], + [1, 3, 7080], + [0, 7081, 0, 7082, 4], + [0, -1532], + [0, -1889, -12137, -12138], + [1, 3, 7084], + [0, 7085, 7086, 7087, 5], + [0, -1431, -2177, -755], + [ + 0, -824, -1415, -1521, -2162, -1344, -1623, -12139, -774, -932, -784, -825, -1110, -1889, -2289, -2375, -2379, + -2501, -1942, -767, -21, -190, -533, -2790, -2269, -23, -1522, -1534, -1771, -2163, -12140, -1906, -1916, -86, + -965, -3560, -2251, -40, -2411, -959, -1907, -958, -6929, -978, -940, -967, -3748, -12141, -3307 + ], + [0, -775, -1889, -9300, -2501, -5050], + [1, 3, 7089], + [0, 7090, 22, 7091, 6], + [0, -1934, -2280], + [0, -775, -1644, -7192, -1889, -3583], + [1, 3, 7093], + [0, 7094, 7095, 7096, 8], + [0, -635, -12069, -1931, -12142], + [0, -12070, -1889, -10815, -1899], + [0, -775, -7192, -1889, -3583], + [1, 3, 7098], + [0, 60, 22, 7099, 5], + [0, -775, -3827, -12143, -12144, -7192, -3583], + [1, 3, 7101], + [0, 7102, 22, 50, 10], + [0, -2840, -1934, -12142], + [1, 3, 7104], + [0, 7105, 22, 7106, 10], + [0, -635, -1934, -12142], + [0, -1889, -775, -3583, -1644, -7192, -5154], + [1, 3, 7108], + [0, 7109, 7110, 7111, 4], + [0, -783, -1931], + [0, -12145, -1889], + [0, -775, -1644, -7192, -1889, -3583, -12123], + [1, 3, 7113], + [0, 7114, 130, 7115, 10], + [0, -2773, -1931, -1934], + [0, -12146, -1889, -775, -3583], + [1, 3, 7117], + [0, 90, 0, 7118, 11], + [0, -1889, -775, -3583, -2162, -8893], + [1, 3, 7120], + [0, 7121, 0, 7122, 11], + [0, -12147, -98, -1931], + [ + 0, -12148, -6599, -12149, -775, -12115, -12119, -8893, -12150, -1889, -3583, -8199, -12123, -4682, -4683, -4132, + -5387 + ], + [1, 3, 7124], + [0, 7125, 7126, 7127, 5], + [0, -12151, -12152, -12153], + [0, -12154, -635, -1889, -1906, -2127], + [0, -1889, -775, -3583, -12155, -6413, -12156], + [1, 3, 7129], + [0, 0, 22, 7130, 6], + [0, -1889, -775, -3583, -9791], + [0, 60, 22, 50, 4], + [1, 3, 7133], + [0, 60, 22, 50, 11], + [1, 3, 7135], + [0, 242, 22, 50, 8], + [1, 3, 7137], + [0, 60, 22, 7138, 4], + [0, -775, -6811, -7192, -7193, -1889, -3583, -2435], + [1, 3, 7140], + [0, 7141, 22, 50, 5], + [0, -1934, -12142], + [1, 3, 7143], + [0, 0, 7144, 7145, 4], + [0, -1344, -1654, -1889, -1405, -1942, -1534, -1916], + [0, -1889, -5899, -12123, -3583, -775, -3585, -3862], + [1, 3, 7147], + [0, 7148, 0, 7149, 5], + [ + 0, -12157, -5297, -12158, -12159, -12160, -12161, -12162, -12163, -12164, -12165, -12166, -12167, -12168, + -12169, -12170, -96, -12171, -12172, -12173, -12174, -12175, -12176, -12177, -12178, -12179, -12180, -12181, + -12182, -12183, -97, -12184, -12185, -12186, -12187, -12188, -12189, -12190, -12191, -12192, -12193, -12194, + -518, -635, -12195, -12196, -12197, -782, -12074, -12198, -1892, -12077, -12080, -1896, -1897, -1898, -12199, + -12200, -2579, -12201, -12084, -12202, -1905, -12203, -12204, -1917, -2635, -12205, -12206, -12207, -12088, + -12090, -12092 + ], + [0, -775, -12119, -7186, -6309, -12208, -2634, -1889, -3583, -4682, -4683, -7187, -5387], + [1, 3, 7151], + [0, 7152, 7153, 50, 8], + [0, -635, -12069], + [0, -12070, -1329, -1889], + [1, 3, 7155], + [0, 0, 0, 7156, 4], + [0, -775, -1889, -12209, -3215, -8947], + [1, 3, 7158], + [0, 0, 0, 7159, 4], + [0, -775, -1889, -12209, -3215, -3754, -2162], + [1, 3, 7161], + [0, 7162, 7163, 7, 11], + [0, -783, -9649], + [ + 0, -21, -23, -32, -4952, -26, -40, -43, -519, -535, -6831, -825, -932, -958, -1107, -1646, -1788, -1889, -2177, + -2410 + ], + [1, 3, 7165], + [0, 7166, 7167, 7168, 8], + [0, -1934, -2303], + [0, -12072, -1889], + [0, -775, -1644, -7192, -1889, -3583, -3839, -2303], + [1, 3, 7170], + [0, 90, 22, 50, 4], + [1, 3, 7172], + [0, 0, 7173, 7174, 4], + [0, -932, -1344, -1534, -1942, -2320, -2322], + [0, -1889, -5846, -3215], + [1, 3, 7176], + [0, 7177, 0, 7178, 4], + [0, -12210, -12211, -12212, -12213, -12214, -12215, -12216, -2387], + [0, -6321, -10425, -11940, -1857, -7685, -7773, -9879, -3323, -3445, -11941, -10424, -2410, -3018, -985], + [1, 3, 7180], + [0, 7181, 7182, 7183, 4], + [0, -4256, -4255], + [0, -86, -9404, -652, -664, -665, -667, -740, -1344, -1448, -1534, -1654, -2250], + [0, -3264, -6597, -9727, -3215, -6408, -12217, -12056, -3277, -12218], + [1, 3, 7185], + [0, 7186, 0, 7187, 5], + [0, -12219, -2446, -1523, -1525, -2347, -12220, -1524, -12221, -1729, -12222, -12223, -2062, -12224, -12225], + [0, -7773, -11304, -1937], + [1, 3, 7189], + [0, 7190, 7191, 7192, 4], + [0, -5830, -12226, -12227, -12228, -2546], + [ + 0, -526, -566, -3067, -551, -558, -633, -3346, -12229, -1003, -1471, -1475, -10495, -1479, -1482, -12230, -1654, + -12231, -7718, -1991, -2111, -2177 + ], + [0, -1938, -507, -5855, -4004, -3634, -3217, -3272], + [1, 3, 7194], + [0, 7195, 7196, 7197, 6], + [0, -769, -9798, -2518], + [0, -509, -1405, -1654], + [0, -5889, -3322, -1764, -1939, -12232, -11727, -4004, -3113], + [1, 3, 7199], + [0, 0, 7200, 7201, 11], + [ + 0, -12233, -12234, -23, -3408, -5321, -40, -43, -2581, -3035, -3621, -3037, -4372, -5286, -3899, -12235, -664, + -756, -767, -12236, -928, -1344, -12237, -1637, -1654, -1772, -8065, -10105, -1967, -5037, -2210, -2211, -2334, + -2410, -2426, -2466, -2469, -4881 + ], + [0, -1940, -2006, -3160, -3477, -12238, -9613, -3098, -12239, -3577, -3161], + [1, 3, 7203], + [0, 7204, 27, 57, 5], + [0, -668, -679, -1078, -7885], + [1, 3, 7206], + [0, 7207, 7208, 7209, 4], + [0, -12240, -3896, -1618], + [ + 0, -8918, -3307, -350, -4062, -351, -3136, -4251, -427, -428, -721, -932, -940, -967, -1344, -1415, -12241, + -12242, -1942, -2127, -2251, -2334, -2379, -2410 + ], + [0, -1942, -3862, -1446, -8222], + [1, 3, 7211], + [0, 0, 7212, 7213, 6], + [0, -3037, -12243, -519, -1942, -2410, -5627], + [0, -1942, -12244, -2410, -12245, -12246], + [1, 3, 7215], + [0, 7216, 7217, 7218, 8], + [0, -7969], + [0, -1772, -1942], + [0, -10484, -3862, -1942], + [1, 3, 7220], + [0, 0, 7221, 7222, 6], + [0, -4066, -350, -351, -3037, -519, -1942, -2127, -2141, -2299, -2379, -2387, -2410], + [0, -1942, -2299], + [1, 3, 7224], + [0, 7225, 0, 7226, 6], + [0, -12247, -1548, -2001], + [0, -1942, -727], + [1, 3, 7228], + [0, 0, 14, 7229, 4], + [0, -3240, -651, -6472, -1044, -8799, -6656, -8574, -12248, -8800, -12249, -6582, -12250, -9782, -12251], + [1, 3, 7231], + [0, 7232, 7233, 7234, 8], + [0, -1548, -12252], + [0, -664, -710, -711, -12253, -1654], + [0, -3240, -6324, -12254, -812, -12255, -8800, -5598, -9361, -3276, -8574], + [1, 3, 7236], + [0, 7237, 7238, 7, 5], + [0, -4046, -482, -2029], + [0, -3040, -6633, -3081, -1361, -1427, -2006, -2019, -2052], + [1, 3, 7240], + [0, 7241, 14, 7242, 6], + [0, -12256], + [ + 0, -3240, -9361, -8574, -9854, -12248, -8800, -4123, -1681, -12257, -7219, -12258, -7434, -5554, -2265, -6240, + -12259 + ], + [1, 3, 7244], + [0, 7245, 0, 7246, 6], + [0, -3446, -2387, -1353, -3535, -1864, -12260, -1863], + [0, -5889, -12261, -12262, -1942, -1952, -5538, -707, -12263, -12232], + [1, 3, 7248], + [0, 7249, 7250, 7251, 5], + [0, -714, -1646], + [0, -1654, -1452, -2198, -1405, -756, -1657], + [0, -4055, -687, -5538, -714], + [1, 3, 7253], + [0, 7254, 7255, 7256, 5], + [0, -1692, -10425, -2961, -12264, -12265, -12266], + [ + 0, -1816, -2564, -1313, -1415, -1805, -999, -1496, -12267, -1852, -865, -3913, -6570, -679, -1077, -367, -7043, + -5672, -1424, -1575, -1729, -12268, -2269, -12269, -2410, -3136, -3037, -10624, -12270, -511, -1101, -12271, + -1769, -12272, -12273, -12274, -12275, -12276, -10419, -12277, -3048, -12278, -4835, -4106, -12279, -12280, + -12281, -5038, -12282, -12283, -12284, -12285, -12286, -8863, -12287, -12288, -12289, -5782, -12290, -12291 + ], + [ + 0, -4340, -12292, -12293, -12294, -12295, -7685, -7773, -7485, -12296, -4165, -12297, -12298, -12299, -1857, + -12300, -12301, -12302, -12303, -12304, -12305, -12306, -12307, -12308, -12309 + ], + [1, 3, 7258], + [0, 0, 7259, 7260, 4], + [ + 0, -4201, -589, -664, -12310, -824, -12311, -932, -960, -971, -1168, -1184, -1187, -1208, -2915, -1243, -1244, + -12312, -1273, -1333, -1339, -1449, -1654, -1729, -1771, -1942, -1976, -8318, -8319, -12313, -2091, -8320, + -2205, -12314, -2550 + ], + [0, -12315, -4131], + [1, 3, 7262], + [0, 7263, 7264, 7265, 8], + [0, -615, -617, -714, -1004, -1576, -1650, -1666, -12316, -1813, -1850, -12317], + [0, -664, -1168, -1231, -1663, -2150, -2210, -2211, -2291], + [0, -622, -6011, -11722, -7737, -7736, -3324, -5889, -12318, -5897], + [1, 3, 7267], + [0, 0, 29, 7, 4], + [1, 3, 7269], + [0, 0, 7270, 7271, 6], + [0, -2568, -1654], + [0, -1958], + [1, 3, 7273], + [0, 0, 0, 7274, 7275], + [0, -687, -1959], + 1769904000000, + [1, 3, 7277], + [0, 7278, 0, 7279, 4], + [0, -668, -1959], + [0, -2501, -3862, -1959, -10677], + [1, 3, 7281], + [0, 7282, 7283, 7, 8], + [0, -11744], + [0, -461, -2125, -1405], + [1, 3, 7285], + [0, 0, 7286, 7287, 6], + [ + 0, -633, -767, -932, -4693, -1344, -1471, -1472, -1475, -1482, -1534, -1654, -1771, -1942, -2125, -2127, -2143, + -2210, -2491, -2410 + ], + [0, -1961, -1962, -6948, -6306], + [1, 3, 7289], + [0, 7290, 226, 7291, 4], + [0, -1654, -2210, -2424], + [0, -5923, -6306], + [1, 3, 7293], + [0, 89, 7294, 57, 6], + [0, -891, -1050, -1654, -1941], + [1, 3, 7296], + [0, 7297, 7298, 7299, 6], + [0, -5758, -510, -2059, -5975, -2520], + [0, -932, -2471], + [0, -1965, -3958, -12319, -3926], + [0, 7301, 7302, 7303, 6], + [0, -1496, -12320], + [0, -21, -23, -36, -40, -2320, -2322], + [0, -3160, -1966, -687, -1965, -3964, -3958, -3962, -3957, -3972, -3824, -3955, -12321], + [1, 3, 7305], + [0, 7306, 7307, 41, 5], + [0, -1580, -1792, -2029], + [0, -533, -560, -633, -647, -932, -1365, -1415, -2006, -12322, -12323], + [1, 3, 7309], + [0, 0, 7310, 7311, 11], + [ + 0, -4251, -3037, -12324, -652, -1318, -12325, -12326, -1942, -2094, -2100, -12327, -12328, -2399, -2410, -7669, + -2541 + ], + [0, -11876, -9681, -3264, -4675, -8041, -7153, -3839], + [1, 3, 7313], + [0, 7314, 7315, 7316, 5], + [0, -12329, -12330, -12331, -12332, -12333, -12334, -12335, -12336, -12337, -12338, -3037, -1578], + [ + 0, -589, -633, -12339, -647, -668, -931, -932, -986, -988, -1103, -11426, -12340, -9208, -1168, -1208, -1212, + -1252, -1262, -1446, -1646, -1788, -2080, -2322, -2388, -2410, -2416, -2461, -2462, -2463 + ], + [0, -12341, -12342, -12343, -2410], + [1, 3, 7318], + [0, 7319, 7320, 7321, 5], + [0, -12344, -11458, -2729, -2734, -668, -1107, -1412, -2779, -1980, -5471, -2173, -2234, -2818, -2819, -2550], + [ + 0, -3711, -3036, -9705, -12345, -8566, -3037, -617, -664, -665, -11477, -1003, -1004, -1168, -12346, -1260, + -1452, -1548, -1610, -1654, -12347, -2125, -2150, -2177, -2388, -12348, -2410, -12349 + ], + [0, -475, -4004, -3634, -11468, -12350, -11467], + [1, 3, 7323], + [0, 7324, 7325, 7326, 4], + [0, -4377, -12351, -812], + [0, -12352, -3198, -3136, -3037, -511, -1415, -2375, -2410, -9056], + [0, -1334, -1342, -1971, -729, -7680, -12353, -12354, -7827, -12355, -12356, -12357], + [1, 3, 7328], + [0, 7329, 7330, 231, 4], + [0, -12358, -12359, -2114], + [0, -1654, -12360, -2198, -2210, -2250], + [1, 3, 7332], + [0, 7333, 7334, 7335, 5], + [0, -668, -12361, -12362, -1376, -1392, -1548, -1639, -1728, -1820, -2177], + [0, -526, -555, -558, -824, -932, -940, -1362, -1405, -1650, -1654, -1661, -1942, -2125, -2198], + [0, -1168, -1764, -8403, -5897, -3551], + [1, 3, 7337], + [0, 7338, 7339, 7340, 10], + [0, -12363, -12364, -12365, -12366, -12367, -12368, -12369, -12370], + [0, -1650, -2125, -10011, -10009, -10013, -10014, -12371, -12372, -10010], + [0, -3264, -1409, -1974, -3110], + [1, 3, 7342], + [0, 0, 7343, 7, 4], + [0, -589, -11080, -1021, -1948, -12373, -2320, -2322], + [1, 3, 7345], + [0, 7346, 0, 7347, 4], + [0, -908, -1801], + [0, -8027, -11441, -7412, -5865], + [1, 3, 7349], + [0, 0, 7350, 7351, 4], + [0, -708, -1788, -1654], + [0, -1977, -4112, -12374, -12375, -12376, -2435, -12377], + [1, 3, 7353], + [0, 7354, 91, 7355, 5], + [0, -7591, -12378, -755, -11460, -12379, -12380], + [0, -1978, -10366, -11878, -4864], + [1, 3, 7357], + [0, 7358, 0, 7359, 8], + [0, -719, -1026, -1889, -1931], + [0, -7175, -7036, -6694, -7441, -775, -3264, -8199, -12381, -9487, -7725], + [1, 3, 7361], + [0, 0, 7362, 7363, 9], + [0, -1127, -1452, -1612, -1132, -1414, -1148, -1963], + [0, -1980, -1961, -5923, -6305, -6306, -6307, -6309, -510, -6310, -12382, -4865, -3966], + [1, 3, 7365], + [0, 0, 0, 7366, 10], + [0, -6935, -12383, -6934, -7715, -3839, -6527], + [1, 3, 7368], + [0, 0, 0, 7369, 4], + [0, -5514, -4111, -6935, -4000], + [1, 3, 7371], + [0, 7372, 7373, 7374, 4], + [0, -7397], + [ + 0, -12384, -12385, -5834, -633, -647, -12386, -887, -921, -932, -993, -1065, -1107, -8080, -12387, -11104, + -7402, -1283, -1351, -1365, -1408, -1431, -1650, -1659, -6374, -1777, -1788, -1794, -8385, -2156, -9786, -2322, + -12388 + ], + [0, -1985, -1983, -5101, -2435, -1838, -6231], + [1, 3, 7376], + [0, 7377, 7378, 7379, 4], + [0, -12389, -12390, -12391], + [0, -519, -589, -821, -1023, -2384, -2541], + [0, -4865, -1985, -5101, -2265, -1983, -12392, -12393, -2435, -1838, -6231, -6422, -6420, -12394, -7724], + [1, 3, 7381], + [0, 0, 7382, 7383, 4], + [0, -4004, -12395, -2322], + [0, -4791, -5101, -1985], + [1, 3, 7385], + [0, 0, 7386, 7387, 4], + [0, -652, -1339, -12396], + [0, -1986, -510, -6235, -12397, -5418, -4107, -11866, -5920], + [1, 3, 7389], + [0, 119, 120, 7390, 4], + [ + 0, -1986, -11868, -12398, -12399, -12400, -3214, -7484, -7485, -3756, -2410, -7486, -4165, -3018, -5418, -12401, + -1986, -12402, -12403, -12404, -10587, -11866, -12405, -11049, -7530, -7283, -12406, -6582, -7534, -7535, -7536, + -7537, -7538, -7539, -7540, -7541, -7542, -7543, -7544, -7545, -7503, -12407, -7547, -7548, -6948, -7549, -7550, + -7551, -7552, -7553, -7554, -7555, -7556, -7557, -2444, -7558, -7559, -5063, -7560, -1980, -12408, -5839, + -11450, -12409, -5737, -12410, -2634, -3966, -12411, -11052, -6187, -7563, -856, -7275 + ], + [1, 3, 7392], + [0, 7393, 7394, 7395, 4], + [0, -1549, -12412, -12413, -996], + [ + 0, -1107, -2303, -1449, -932, -2286, -2469, -2379, -2501, -1942, -2376, -21, -778, -2410, -23, -3037, -1322, + -2503, -534, -1304, -2275, -2287, -2508, -3046, -5286, -3983, -3164, -40, -2233, -2505, -12414, -1331, -958, + -2335, -940, -962, -967, -1643, -42, -12415, -428, -8561, -12416, -427, -4011, -948 + ], + [0, -1988, -3496, -3495, -3494, -3505, -3506, -3161], + [1, 3, 7397], + [0, 7398, 7399, 7400, 11], + [0, -719, -10988, -1747], + [ + 0, -1788, -1127, -1496, -932, -2125, -2127, -2177, -589, -1054, -12417, -2111, -1972, -8573, -23, -12418, -40, + -957, -966, -1138, -8022, -9544, -3326, -952, -958, -12419, -968, -1137, -3561, -943, -963, -350, -942, -351, + -12420, -3840 + ], + [0, -3634, -5119, -507, -5855, -2319, -2322, -1471, -1437], + [1, 3, 7402], + [0, 7403, 7404, 7405, 8], + [0, -12421], + [ + 0, -2832, -12422, -427, -428, -3664, -549, -558, -726, -932, -940, -967, -6726, -8011, -1942, -2910, -1989, + -2091, -12423, -2127, -4063, -2142, -2410, -2469, -2501 + ], + [0, -4865, -5092, -3264, -1989, -12424, -3634], + [1, 3, 7407], + [0, 7408, 7409, 7410, 4], + [0, -679, -719, -12425, -1048, -12426, -2114, -2488], + [ + 0, -510, -537, -559, -12427, -705, -10255, -10260, -957, -8022, -999, -1054, -1077, -1127, -1132, -1133, -1137, + -1138, -9544, -1149, -9240, -1152, -10257, -9241, -10644, -12418, -1542, -1972, -2111, -2128, -2177 + ], + [0, -3634, -5119, -1437], + [1, 3, 7412], + [0, 7413, 7414, 7415, 9], + [0, -1856], + [0, -12428, -633, -2322], + [0, -12429, -3582], + [1, 3, 7417], + [0, 0, 7418, 7419, 5], + [ + 0, -21, -23, -40, -43, -47, -3326, -10022, -12430, -571, -589, -693, -767, -12431, -932, -958, -1023, -1276, + -1442, -1654, -1771, -1788, -2125, -2127, -2143, -12432, -12433, -2210, -2342, -12434 + ], + [0, -1993, -5112, -5260, -8113, -3481, -11639, -12435, -12436, -12437, -9976, -12438], + [1, 3, 7421], + [0, 7422, 27, 7423, 6], + [0, -2172], + [0, -6555, -12439, -12439, -10781, -3262, -12440, -5554], + [1, 3, 7425], + [0, 177, 7426, 7427, 5], + [0, -1859, -2250, -2320, -2322, -2568], + [0, -770, -6555], + [1, 3, 7429], + [0, 7430, 27, 7, 10], + [0, -1995], + [1, 3, 7432], + [0, 0, 172, 7433, 9], + [0, -7434, -3215, -1334], + [1, 3, 7435], + [0, 7436, 7437, 7438, 6], + [0, -1616, -2446, -743, -12441, -2249], + [0, -1107, -1722, -1654, -2210, -932, -2198, -1405, -1942, -710, -940], + [0, -11428, -8980, -12442, -5545, -1998, -12443], + [1, 3, 7440], + [0, 7441, 7442, 7, 5], + [0, -651, -12444, -1351, -1335], + [0, -1788, -1654, -932, -615, -2884, -2155, -2062, -3748, -5029], + [1, 3, 7444], + [0, 205, 7445, 48, 5], + [ + 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -767, -824, -825, -932, -940, -958, -967, -1344, -1415, -1534, + -1623, -1771, -1942, -2251, -2501 + ], + [1, 3, 7447], + [0, 7448, 0, 7449, 4], + [0, -1371, -1646, -822, -2271], + [0, -727, -2001, -11642, -10659], + [1, 3, 7451], + [0, 7452, 7453, 7454, 5], + [0, -44, -682, -2004], + [ + 0, -12445, -407, -409, -3059, -3136, -3037, -3040, -3052, -6265, -767, -881, -932, -959, -978, -1031, -12446, + -1103, -1107, -1521, -1763, -12447, -2003, -4946, -2006, -2019, -2082, -2410 + ], + [0, -2006, -3159, -12448, -12449, -3962, -7434], + [1, 3, 7456], + [0, 7457, 7458, 7459, 5], + [0, -44, -5650, -682, -2004], + [ + 0, -12445, -409, -3136, -3040, -3052, -4972, -767, -881, -932, -978, -1031, -1103, -1521, -1763, -12447, -2006, + -2019, -2410 + ], + [0, -2006, -3159, -12450, -3821], + [1, 3, 7461], + [0, 7462, 7463, 7464, 5], + [0, -44, -2029], + [ + 0, -12445, -409, -3136, -3037, -3040, -3052, -6633, -12451, -4972, -6265, -761, -767, -881, -932, -959, -978, + -1031, -1107, -1344, -1534, -1763, -1942, -12447, -2006, -2019, -2410 + ], + [0, -2006, -2444], + [1, 3, 7466], + [0, 0, 0, 41, 10], + [1, 3, 7468], + [0, 7469, 0, 245, 10], + [0, -2055], + [1, 3, 7471], + [0, 7472, 7473, 245, 5], + [0, -1792], + [0, -1415, -2006, -2019, -2501], + [1, 3, 7475], + [0, 7476, 7477, 7478, 5], + [0, -12453, -12454, -12455, -12456, -12457], + [0, -2127, -2410], + [0, -3321, -1122, -2006, -3322, -8977, -3098], + [1, 3, 7480], + [0, 7481, 0, 7, 11], + [0, -1992, -753, -1961, -2516, -1792, -2082], + [1, 3, 7483], + [0, 7484, 0, 7485, 4], + [0, -2489, -1384, -682, -1967, -12458, -860, -44, -12459, -12460, -12461, -3140, -2055, -3024], + [0, -620, -2006, -3095, -3098, -12462, -3159], + [1, 3, 7487], + [0, 7488, 7489, 7490, 5], + [0, -12463, -1548, -1549, -12464, -1967, -12465, -2355], + [ + 0, -12466, -12467, -6263, -6264, -4749, -526, -527, -533, -534, -12468, -559, -560, -562, -566, -664, -12469, + -778, -915, -994, -1033, -1304, -1322, -1331, -1347, -1415, -1417, -12470, -1654, -1762, -1764, -1792, -2006, + -8934, -12471, -2019, -2024, -12472, -2052, -2102, -2109, -2125, -2275, -12473, -2501, -2505 + ], + [0, -2006, -12474, -3159, -8597, -4122, -12475, -10366, -12476, -3119, -3825], + [1, 3, 7492], + [0, 7493, 7494, 7495, 9], + [0, -747, -1967], + [ + 0, -21, -23, -32, -26, -36, -40, -41, -43, -534, -553, -778, -827, -932, -933, -958, -962, -969, -970, -1103, + -1331, -12477, -1643, -2006, -2019, -2275, -2322, -2501, -2503, -2505 + ], + [0, -3095, -3159, -2006, -12478, -699], + [1, 3, 7497], + [0, 7498, 7499, 7500, 9], + [0, -2852, -703, -807], + [ + 0, -23, -32, -3192, -3840, -26, -40, -41, -42, -190, -12479, -3326, -350, -351, -3266, -3267, -406, -409, -410, + -3330, -3136, -4961, -3037, -3040, -3052, -427, -428, -522, -533, -553, -753, -12480, -932, -940, -958, -959, + -969, -970, -9724, -1344, -1415, -4980, -1416, -1419, -1534, -1548, -1942, -2006, -2019, -2127, -5090, -2162, + -2223, -2281, -2282, -3436, -2285, -2375, -2387, -2410, -2411 + ], + [0, -2006, -4222, -4120, -4121, -3159], + [1, 3, 7502], + [0, 7503, 7504, 7, 5], + [ + 0, -1805, -668, -1359, -1111, -1872, -6558, -1047, -12481, -1966, -1044, -1273, -2269, -2343, -769, -2194, -635, + -1543, -6197, -12482, -22, -2070, -2021, -930, -1067 + ], + [0, -1415, -767], + [1, 3, 7506], + [0, 7507, 7508, 7, 6], + [0, -12483, -12484, -12485, -1025, -1311], + [0, -4010, -367, -409, -5220, -3136, -3037, -3040, -3052, -1415, -5129, -1771, -2006, -2019, -2200, -2410], + [1, 3, 7510], + [0, 7511, 7512, 7, 8], + [0, -12485], + [0, -4010, -367, -3136, -1771, -2200, -2410], + [1, 3, 7514], + [0, 7515, 0, 7516, 4], + [0, -2114, -8245, -23, -47, -4096, -3200, -46, -12486, -4776, -10101], + [0, -2006, -856, -12487], + [1, 3, 7518], + [0, 7519, 0, 41, 4], + [0, -2166], + [1, 3, 7521], + [0, 7522, 7523, 7524, 4], + [0, -12488, -12489, -1967], + [ + 0, -21, -23, -32, -3840, -12490, -34, -12491, -6065, -5584, -12492, -38, -40, -41, -43, -86, -9404, -12493, + -10709, -3326, -350, -351, -3470, -7040, -3472, -7041, -7042, -5295, -4774, -12494, -406, -407, -409, -2622, + -3040, -3052, -427, -428, -533, -535, -536, -720, -767, -932, -940, -958, -962, -966, -967, -969, -970, -1344, + -12495, -1357, -1415, -1534, -1609, -1868, -1942, -2006, -2019, -2049, -2052, -2125, -2127, -2140, -2174, -2214, + -2275, -2278, -2410, -2501, -12496 + ], + [0, -3159, -2006, -7581, -7582, -7764], + [1, 3, 7526], + [0, 0, 7527, 7528, 4], + [ + 0, -22, -23, -2624, -533, -534, -561, -668, -679, -767, -1059, -1320, -1415, -12497, -1792, -1961, -2000, -2006, + -2010, -2019, -2125, -12498, -2231, -2501 + ], + [0, -12499, -4132, -6324, -5547, -6335, -12500, -12501, -2489], + [1, 3, 7530], + [0, 7531, 7532, 7533, 4], + [0, -1792, -1967, -2798, -12502], + [ + 0, -527, -528, -537, -539, -546, -551, -558, -560, -664, -708, -740, -796, -932, -12503, -940, -958, -962, -964, + -967, -969, -1405, -1471, -1474, -12504, -1475, -1476, -1479, -12505, -1482, -1486, -1490, -1491, -11508, -1654, + -1942, -2006, -2019, -2125, -2127, -2128, -2131, -2137, -2138, -2210, -2211 + ], + [0, -2022, -12506, -2006, -10855, -12507, -12508, -12509, -10606, -11729, -3956, -12510, -5553], + [1, 3, 7535], + [0, 0, 7536, 7537, 4], + [ + 0, -3615, -262, -350, -351, -3266, -367, -7043, -407, -409, -3136, -3037, -3040, -3052, -3563, -795, -932, -940, + -3071, -967, -969, -970, -4814, -1344, -1415, -1419, -12511, -2781, -1534, -1942, -2006, -2019, -2125, -2127, + -2142, -2384, -2410, -2411, -2516, -2564 + ], + [0, -2006, -3322, -4053, -4054, -12512, -3926, -2410, -4124], + [1, 3, 7539], + [0, 7540, 7541, 7542, 6], + [0, -10579, -1109, -1311, -1543, -1967, -2030, -2192, -2231], + [ + 0, -3795, -3040, -3807, -526, -527, -528, -533, -536, -537, -546, -551, -556, -558, -560, -708, -6019, -761, + -767, -915, -12513, -916, -932, -933, -940, -958, -962, -969, -1344, -1415, -1534, -1942, -2006, -2019, -12514, + -2052, -2069, -2125, -2127, -2128, -2131, -2133, -2137, -2138, -2143, -2251, -12515 + ], + [0, -2006, -3214, -2501, -6211, -1540, -12516, -10589, -12517, -5932, -11492], + [1, 3, 7544], + [0, 7545, 7546, 7547, 6], + [0, -44, -2770, -12518], + [ + 0, -21, -23, -32, -12519, -36, -3204, -38, -39, -40, -41, -43, -3326, -350, -351, -3561, -3266, -406, -407, + -409, -3136, -3040, -3664, -7465, -527, -3766, -6046, -756, -757, -767, -932, -933, -940, -958, -12520, -962, + -969, -976, -1278, -1344, -1349, -1534, -1650, -1942, -2006, -2019, -2052, -2125, -2127, -2410, -2469, -2550 + ], + [0, -1349, -9780, -1348, -9781, -9782, -9772, -9783, -2006, -3476], + [1, 3, 7549], + [0, 0, 7550, 7551, 10], + [ + 0, -2832, -2581, -5295, -407, -409, -3037, -3040, -3052, -440, -2970, -3899, -8349, -1534, -1637, -1771, -1874, + -2910, -2006, -2019, -3246, -2214, -2391, -2410, -2469 + ], + [0, -2006, -3095, -3322, -12521, -12522, -12523, -12524, -12525, -12526, -12527], + [1, 3, 7553], + [0, 7554, 0, 7555, 4], + [0, -5220, -1311, -2387, -12528, -12529, -12530, -12531], + [0, -3276, -5538, -9783, -1348, -9780, -1382, -12250, -9782, -2006, -3476, -3940, -9781], + [1, 3, 7557], + [0, 0, 0, 41, 6], + [1, 3, 7559], + [0, 0, 7560, 7, 5], + [0, -656, -668, -932, -12532, -1415, -1417, -1942, -2127, -2138, -2143], + [1, 3, 7562], + [0, 7563, 7564, 7565, 6], + [0, -5334, -4251, -9596, -1291, -2632, -1619, -2098, -2101, -2427, -2429, -5358], + [ + 0, -409, -3037, -3040, -3052, -652, -725, -928, -969, -4652, -1942, -2006, -2019, -2088, -12533, -2094, -2095, + -2100, -4656, -2399, -2410, -2541 + ], + [0, -3272, -8630, -3095, -4329, -1599, -2006, -3159, -2093, -2427], + [1, 3, 7567], + [0, 7568, 7569, 7570, 5], + [0, -12534, -1967, -2030, -2489], + [ + 0, -12535, -526, -527, -528, -534, -535, -558, -560, -564, -756, -767, -932, -940, -12416, -958, -962, -967, + -969, -5997, -1471, -1475, -1476, -1479, -1482, -1483, -1490, -1492, -1654, -1771, -1942, -2006, -2019, -2043, + -2044, -2198, -2416, -2501, -2503, -2505 + ], + [0, -2006, -3159, -4126, -12536], + [1, 3, 7572], + [0, 7573, 7574, 7575, 5], + [0, -1856, -1967, -1992], + [ + 0, -525, -12537, -527, -528, -534, -709, -778, -932, -933, -949, -958, -962, -969, -1059, -11942, -12538, + -12539, -1413, -1471, -1476, -1481, -12540, -1484, -1492, -12541, -1859, -2024, -2275, -2501, -2505 + ], + [0, -2006, -3095, -3159, -12542, -12543, -12544, -12545, -5176, -12546, -3160], + [1, 3, 7577], + [0, 7578, 0, 246, 4], + [ + 0, -2531, -2624, -2550, -2177, -1961, -578, -719, -1384, -2166, -481, -533, -12547, -2654, -1624, -2516, -12548, + -1950, -2041, -12549, -458, -12550, -11463, -12551, -9870, -2082, -12552, -1421, -12553, -12554, -12555, -12556, + -12557, -12558, -12559, -12560 + ], + [1, 3, 7580], + [0, 0, 7581, 7582, 4], + [0, -12563, -12564, -12565, -932, -967, -1942, -2006, -2034, -12566, -2410], + [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -12568], + [1, 3, 7584], + [0, 7585, 7586, 7587, 6], + [0, -2550, -1967], + [ + 0, -2006, -932, -12569, -12570, -1387, -1942, -4731, -21, -12571, -23, -528, -1064, -12572, -9081, -12573, + -12574, -12575, -12576, -12577, -969, -933, -958, -940, -962, -967, -970, -3156 + ], + [ + 0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -12578, -7084, -12579, -3160, -3167, -3843, -9472, -9474, + -3827 + ], + [1, 3, 7589], + [0, 0, 7590, 7591, 9], + [ + 0, -21, -23, -26, -36, -3203, -40, -41, -43, -12580, -2685, -8471, -261, -6429, -3267, -407, -409, -410, -3040, + -428, -528, -534, -535, -3090, -682, -703, -767, -932, -940, -949, -958, -969, -1103, -1449, -1613, -6519, + -1942, -4130, -2006, -2019, -12581, -2127, -2128, -2131, -5090, -2134, -2137, -2138, -2143, -2376, -2410, -2469, + -2501, -2503, -2505 + ], + [0, -3159, -2006, -12582, -3962, -6240, -12583, -6769], + [1, 3, 7593], + [0, 0, 7594, 7595, 4], + [ + 0, -23, -26, -36, -40, -6035, -3326, -528, -534, -664, -932, -1344, -1534, -1654, -1771, -1942, -2006, -2019, + -2052, -12584, -2125, -2127, -2501 + ], + [0, -2006, -12585, -12586, -12587], + [1, 3, 7597], + [0, 0, 7598, 7599, 4], + [0, -4066, -12588, -932, -12589, -967, -12590, -1415, -1942, -2127, -2410], + [0, -2039, -3264, -3839, -5092, -7153, -9681, -727, -2006, -2019], + [1, 3, 7601], + [0, 7602, 7603, 7604, 5], + [0, -12591, -12518], + [ + 0, -262, -349, -406, -407, -409, -3037, -3140, -3040, -3052, -708, -767, -932, -940, -948, -958, -967, -969, + -1449, -1942, -2006, -2019, -2074, -2125, -2391, -2410, -2411, -2469 + ], + [0, -2006, -3476, -2074], + [0, 0, 0, 41, 4], + [1, 3, 7607], + [0, 7608, 7609, 7610, 4], + [0, -1346, -12592, -1967, -5582], + [ + 0, -3267, -3035, -12593, -4647, -12594, -12595, -3621, -3040, -3052, -4372, -427, -428, -664, -767, -932, -952, + -1103, -1449, -12596, -1654, -1942, -2006, -2019, -2125, -2127, -5405, -2198, -2210, -2387, -2392, -2402, -2410 + ], + [0, -775, -3159, -12521, -2006, -3162, -12597, -12598, -3580, -12599, -3576, -3095], + [1, 3, 7612], + [0, 7613, 7614, 248, 6], + [0, -743, -3169], + [0, -2391, -2006, -2426, -12600, -12601, -2019, -2410, -2052, -409, -1419, -3172, -407, -410], + [1, 3, 7616], + [0, 7617, 7618, 248, 10], + [0, -2043], + [0, -2391, -2006, -12600, -2019, -2410], + [1, 3, 7620], + [0, 0, 7621, 7622, 4], + [ + 0, -526, -527, -528, -534, -9887, -9888, -556, -559, -560, -563, -566, -932, -941, -956, -958, -962, -969, + -1001, -1306, -9413, -12539, -1471, -1476, -1479, -1482, -1483, -1490, -1492, -1654, -2006, -2019, -2040, -2043, + -2074, -12602, -12603, -12604, -2501 + ], + [0, -2006, -2074, -3122], + [1, 3, 7624], + [0, 7625, 28, 7, 4], + [ + 0, -594, -1415, -865, -932, -2177, -1889, -1966, -2114, -2501, -1077, -1080, -656, -533, -778, -23, -1041, + -2163, -2318, -534, -635, -1426, -2275, -366, -866, -2041, -1908, -2015, -1918, -2233, -1352, -1927, -2010, + -2116, -2505, -1331, -1428, -10049, -2335, -561, -1903, -2526, -941, -1643, -2507, -779, -542, -661, -2695 + ], + [1, 3, 7627], + [0, 7628, 7629, 7630, 11], + [0, -44, -3772, -3778, -3819, -3024, -1624, -1967, -2055, -3820], + [0, -5131, -915, -2760, -5116, -2006, -2019], + [0, -12605, -4053, -3962, -12606, -2006, -3159, -6750, -3160], + [1, 3, 7632], + [0, 7633, 7634, 7635, 5], + [0, -682, -12607, -1553, -2113], + [ + 0, -21, -23, -32, -26, -39, -40, -41, -12608, -407, -409, -410, -3037, -518, -527, -533, -534, -557, -778, -823, + -824, -923, -932, -958, -969, -1004, -12609, -1168, -1243, -1344, -1415, -1419, -1440, -1455, -1534, -1812, + -1908, -1942, -1992, -2006, -2019, -2082, -2210, -12610, -2275, -2417, -2501, -2503, -2505, -12611 + ], + [0, -12612, -12613, -12614, -12615, -12449, -3159], + [1, 3, 7637], + [0, 7638, 7639, 7640, 5], + [ + 0, -12616, -3081, -12617, -461, -6426, -507, -5223, -639, -684, -12618, -703, -12619, -748, -753, -8245, -12620, + -925, -930, -931, -989, -11676, -5504, -12621, -3649, -1107, -12622, -1284, -1395, -12623, -12624, -12625, + -12626, -12627, -12628, -12629, -12630, -1496, -12631, -1548, -9160, -1606, -12632, -3446, -1816, -1955, -1967, + -12633, -12634, -2015, -2018, -12635, -12636, -12637, -2026, -5351, -2066, -2093, -12638, -2335, -8299, -12639, + -2429, -2505, -2508 + ], + [ + 0, -21, -23, -26, -40, -6056, -41, -42, -407, -409, -12640, -12641, -12486, -12642, -426, -12643, -3136, -12644, + -3044, -12645, -3037, -3803, -3040, -3052, -12646, -12647, -3046, -12648, -3806, -427, -428, -527, -528, -533, + -534, -778, -12310, -12649, -12650, -12651, -932, -12652, -948, -952, -958, -962, -969, -1041, -1077, -1344, + -1415, -12653, -1534, -1623, -1942, -1992, -2006, -2019, -2052, -12654, -2275, -2410, -2437, -2501, -2503 + ], + [0, -2006, -4146, -4900, -4901, -856, -3671, -3262, -3095, -3098], + [1, 3, 7642], + [0, 7643, 7644, 7645, 4], + [0, -44, -401, -3140, -1967], + [ + 0, -23, -38, -40, -41, -190, -6486, -3326, -350, -351, -3561, -3266, -409, -3136, -4647, -3037, -3040, -3052, + -3714, -553, -2745, -932, -940, -969, -970, -4814, -1110, -1415, -1419, -1722, -1772, -1942, -2006, -2019, + -2127, -2195, -2200, -5091, -2375, -2379, -2410, -2411 + ], + [0, -5092, -3264, -5093, -5094, -3214, -2006, -12655, -3839, -12656, -2410], + [1, 3, 7647], + [0, 7648, 0, 7649, 6], + [0, -1033], + [0, -12657, -2006, -2363, -826, -12658, -2051], + [1, 3, 7651], + [0, 7652, 0, 7653, 8], + [0, -2029, -2166], + [0, -2006, -2034, -12659], + [1, 3, 7655], + [0, 108, 7656, 7657, 5], + [ + 0, -12660, -11184, -234, -405, -3037, -3040, -3052, -440, -756, -795, -2926, -1534, -1889, -1942, -2006, -2019, + -2391, -2410, -2466, -12661 + ], + [0, -2006, -4127, -12662, -3159, -2053, -5737, -12663, -12664, -12665], + [1, 3, 7659], + [0, 7660, 7661, 7662, 5], + [0, -12666, -12667], + [ + 0, -589, -633, -647, -710, -12668, -3346, -913, -12669, -923, -932, -12670, -1127, -1132, -10258, -1134, -7849, + -1137, -1144, -12671, -10265, -12672, -1417, -1813, -1859, -6184, -12673, -2066, -9266, -2359, -2410, -2416, + -12322, -2493 + ], + [0, -2006, -4146, -8530, -6107], + [1, 3, 7664], + [0, 7665, 0, 7666, 10], + [0, -44, -860, -1580, -1967], + [0, -2006, -12546, -8111, -12674, -5176, -775, -12675], + [1, 3, 7668], + [0, 7669, 7670, 7671, 6], + [0, -703, -1967, -860, -1580, -44, -2030], + [ + 0, -1415, -1344, -2006, -2490, -932, -2125, -2127, -708, -1889, -2501, -1059, -1103, -1942, -767, -1361, -1978, + -2019, -21, -533, -709, -778, -23, -1041, -1534, -1891, -2503, -518, -528, -534, -1952, -2043, -2275, -1908, + -39, -11942, -12676, -2044, -40, -6056, -7748, -2505, -41, -12677, -951, -969, -12678, -1331, -2052, -2128, + -2143, -12679, -2138, -940, -956, -962, -967, -2131, -12680, -2137, -1017, -3840, -38, -6057, -12681, -26, + -3204, -553 + ], + [0, -2006, -3476, -3159, -9614, -4108, -12682, -12683, -12684, -4002, -12685, -5147, -12129, -6445, -4672, -9133], + [1, 3, 7673], + [0, 7674, 7675, 7676, 10], + [0, -2346, -2054], + [0, -1654, -1452, -2177, -6398, -633, -725, -12686], + [0, -2006, -633, -6340, -4146, -3756, -3862, -6408], + [1, 3, 7678], + [0, 7679, 7680, 7681, 5], + [0, -44, -2997, -682, -1967, -2804, -2055], + [ + 0, -21, -23, -32, -34, -35, -36, -3204, -40, -41, -4757, -4762, -4754, -12687, -4749, -407, -409, -410, -3040, + -528, -533, -534, -561, -620, -726, -740, -10524, -767, -12688, -879, -888, -932, -933, -940, -956, -958, -962, + -969, -4756, -12689, -1415, -1419, -1449, -1455, -1637, -1942, -2006, -2019, -2022, -12690, -2043, -2052, -2410, + -2501 + ], + [0, -2058, -620, -2006, -3095, -3098, -3159, -3160], + [1, 3, 7683], + [0, 7684, 7685, 7, 4], + [0, -3950], + [0, -4298, -4300, -3952, -5866, -428, -652, -948, -2319, -2379, -2386, -2410], + [1, 3, 7687], + [0, 7688, 118, 7689, 8], + [0, -6902, -6904, -6990, -2400, -8803], + [0, -4055, -2059, -1838, -6656, -1076, -11998, -6994, -5897, -6811], + [1, 3, 7691], + [0, 7692, 14, 7693, 4], + [0, -8341, -2060, -2400], + [ + 0, -4055, -2059, -1838, -6656, -1076, -11998, -6994, -5897, -5573, -8804, -1047, -5504, -8805, -8806, -7282, + -5572, -2114, -8807, -6370, -7420, -7421, -2487, -8808, -1847 + ], + [1, 3, 7695], + [0, 7696, 7697, 7698, 9], + [0, -458, -640, -997, -1958, -6383], + [ + 0, -23, -6065, -5584, -3244, -350, -6572, -351, -357, -633, -652, -928, -12691, -932, -943, -958, -965, -968, + -1874, -1942, -2127, -9701, -2319, -12692, -2322, -2323, -2426, -2501, -2503 + ], + [0, -8800, -5827, -11441], + [1, 3, 7700], + [0, 0, 7701, 7702, 8], + [0, -2319, -1351], + [0, -2063, -12693, -6656], + [1, 3, 7704], + [0, 0, 0, 7705, 9], + [0, -2063, -12397, -9845, -1965, -3969, -5110, -687, -3975, -3957, -12694, -10394, -4116, -6301], + [0, 68, 15, 16, 5], + [1, 3, 7708], + [0, 7709, 7710, 7711, 5], + [0, -5223, -987, -2231, -12695, -2387], + [ + 0, -23, -25, -40, -12696, -3036, -3621, -3037, -428, -932, -12670, -12697, -1107, -1534, -1654, -1942, -9880, + -2410 + ], + [0, -3272, -9306, -12698, -9308, -4132, -9307, -6747, -12699], + [0, 67, 15, 16, 8], + [1, 3, 7714], + [0, 7715, 125, 7716, 4], + [0, -2114], + [0, -4792, -5932, -5195, -8109, -12700], + [1, 3, 7718], + [0, 7719, 0, 7720, 4], + [0, -44, -12701, -1033, -1311, -2030, -5746], + [0, -2006, -12702, -3098, -12703, -3481, -8113, -12704], + [1, 3, 7722], + [0, 124, 27, 7723, 8], + [0, -7421, -12705], + [1, 3, 7725], + [0, 7726, 0, 7727, 6], + [0, -12706, -12707, -12708, -12709, -12710], + [0, -2071], + [1, 3, 7729], + [0, 7730, 7731, 150, 10], + [ + 0, -3544, -3786, -1610, -3788, -1955, -2223, -1885, -863, -682, -1653, -1967, -3790, -3791, -3787, -3793, -996, + -3789, -1848, -3792, -2680, -12711 + ], + [ + 0, -1992, -2435, -1415, -1652, -1344, -2006, -2387, -915, -932, -2125, -753, -795, -1442, -1821, -2195, -2375, + -2379, -3811, -2501, -1942, -2019, -778, -2214, -2410, -3035, -3136, -3800, -3037, -3810, -2503, -3040, -3041, + -1952, -2275, -3043, -3802, -3801, -3803, -3805, -3046, -2760, -3808, -3809, -4773, -3797, -3052, -3140, -2278, + -3806, -585, -2505, -3799, -748, -969, -1331, -958, -3798, -1419, -2509, -3804, -428, -970, -740, -3794, -1067, + -427, -12712 + ], + [1, 3, 7733], + [0, 7734, 7735, 7736, 4], + [0, -12713, -12714], + [0, -2006, -2501, -2019, -2410, -3040, -3052, -3859, -12715], + [0, -2072, -3438, -3690, -4847, -856, -12716, -858, -12717], + [1, 3, 7738], + [0, 0, 7739, 7740, 5], + [ + 0, -23, -3037, -427, -428, -767, -4780, -932, -941, -948, -958, -969, -970, -1107, -12718, -1942, -2125, -2153, + -2391, -2410, -2469 + ], + [0, -2074, -4782, -4125, -12719, -5112, -1361, -12517, -12516, -12720, -1062, -12721], + [1, 3, 7742], + [0, 7743, 7744, 7745, 5], + [0, -12722, -12723], + [0, -12724, -12725, -12726, -1344, -1534, -1771, -1942, -2466, -2469, -2541], + [0, -1062, -2074, -10951, -12727], + [1, 3, 7747], + [0, 7748, 7749, 7750, 5], + [0, -1548, -2029, -924, -1384, -1398, -1967, -44, -1311], + [ + 0, -2359, -1415, -1344, -2006, -2074, -932, -2125, -708, -2501, -1059, -1942, -767, -1361, -2019, -21, -821, + -2214, -23, -12728, -1534, -2040, -2503, -528, -534, -12729, -40, -41, -540, -951, -969, -6040, -2052, -958, + -12726, -12730, -956, -962, -941, -2502, -970, -5295, -12416, -38, -26, -3203 + ], + [0, -2006, -3476, -1062, -2074, -2040, -2076, -4053, -11313], + [1, 3, 7752], + [0, 7753, 7754, 7755, 6], + [0, -819], + [ + 0, -527, -537, -11899, -559, -664, -708, -932, -933, -958, -962, -969, -1339, -1344, -1654, -1788, -2074, -2125, + -2127, -2128, -2131, -2137, -2143, -2210 + ], + [0, -2074, -3444, -2077, -5401], + [1, 3, 7757], + [0, 7758, 7759, 7760, 10], + [0, -12731], + [0, -23, -38, -39, -40], + [0, -3214, -2074, -5401, -12732, -12733, -12734], + [1, 3, 7762], + [0, 0, 7763, 7764, 5], + [0, -427, -428, -767, -932, -940, -1942, -2074, -2125, -2391, -2410, -2469], + [0, -2074, -12735, -5401, -12736, -1062], + [1, 3, 7766], + [0, 0, 7767, 7768, 4], + [0, -3035, -3621, -3037, -664, -824, -12737, -1168, -12738, -12739, -1231, -1243, -12740, -1259, -1654, -2410], + [0, -11313, -11872, -3214, -12741], + [1, 3, 7770], + [0, 0, 7771, 7772, 8], + [0, -708, -1127, -1162, -1405, -6186, -1991, -2111], + [0, -5569, -5570, -3214, -4112, -3262, -3673], + [1, 3, 7774], + [0, 0, 0, 7775, 4], + [0, -12742, -11997, -3262, -510], + [1, 3, 7777], + [0, 7778, 0, 7779, 6], + [0, -5334, -2087, -2090, -2427], + [0, -12743, -3272, -3264, -1838, -1958, -2083, -6233, -6231, -4132, -10919, -2427], + [1, 3, 7781], + [0, 7782, 7783, 7784, 5], + [0, -5334, -9581, -4264, -2766, -2427, -2429], + [0, -3037, -9586, -652, -12744, -1942, -2083, -2094, -2100, -2399, -2410, -2541], + [0, -2427, -2083, -12745, -3862, -10857, -10606, -3264], + [1, 3, 7786], + [0, 7787, 7788, 7789, 4], + [0, -5334, -9581, -2766, -12746, -2235, -2429], + [0, -3037, -9586, -652, -1942, -2083, -2094, -2100, -2399, -2410, -2541], + [0, -2427, -2083, -12745, -3862, -9589, -3264, -1599, -12747, -10606, -2435], + [1, 3, 7791], + [0, 7792, 7793, 7794, 11], + [0, -5334, -12748, -1618, -5204, -5205, -2427, -5356], + [0, -4228, -3037, -3040, -652, -932, -12749, -962, -969, -9602, -1942, -2094, -11167, -12750, -2410], + [0, -9589, -3264, -1599, -4147, -2083, -12745, -2427], + [1, 3, 7796], + [0, 7797, 0, 7798, 5], + [0, -5334, -2586, -2427], + [0, -12743, -3272, -3264, -1838, -3862, -2083, -12745, -4132, -10919, -2427], + [1, 3, 7800], + [0, 7801, 7802, 7803, 8], + [0, -5334, -1286, -5358], + [0, -3037, -652, -1942, -2090, -2094, -2098, -2100, -2101, -2399, -2410, -2427, -2429, -2541], + [0, -3264, -3862, -9591, -2083, -12745, -2427], + [1, 3, 7805], + [0, 7806, 7807, 7808, 4], + [0, -5334, -3649, -4264, -1292, -2429], + [0, -3037, -652, -1942, -2083, -2094, -2100, -2399, -2410, -2541], + [0, -10857, -3264, -7231, -3862, -2083, -12745, -2222, -2427], + [1, 3, 7810], + [0, 7811, 0, 7812, 6], + [0, -5334, -1290, -2427], + [0, -12743, -3272, -7644, -3264, -3862, -2083, -12745, -6233, -6231, -4132, -10919, -2427], + [1, 3, 7814], + [0, 7815, 7816, 7817, 5], + [ + 0, -12751, -305, -12752, -512, -6563, -680, -6869, -4236, -1376, -12753, -1566, -1641, -11656, -1805, -1816, + -3547, -8874, -2177, -2654, -2426, -2436, -12754, -2551 + ], + [0, -190, -12755, -3037, -932, -8339, -1110, -3781, -1498, -12756, -12757, -1942, -2094, -12758, -2323, -2410], + [ + 0, -7641, -5887, -5890, -12759, -5889, -1105, -7661, -9845, -6657, -1764, -8403, -5737, -9244, -2091, -7737, + -11729, -5550, -6818, -3673, -9318, -2177, -3862 + ], + [1, 3, 7819], + [0, 7820, 7821, 7822, 4], + [0, -1405, -1645, -1876, -2231, -2347], + [0, -932, -934, -958, -1127, -1168, -12760, -2125], + [0, -7841, -9219, -2231, -1405, -4005], + [1, 3, 7824], + [0, 7825, 0, 7826, 4], + [0, -2427, -4251, -2098, -5616], + [0, -12743, -3272, -7644, -1599, -10918, -1838, -1958, -2093, -6233, -6231, -4132, -10919, -2427], + [1, 3, 7828], + [0, 7829, 0, 7830, 11], + [0, -3190, -12761, -2093, -12762], + [0, -8425, -687, -1599, -10918, -2093, -2427], + [1, 3, 7832], + [0, 7833, 7834, 7835, 10], + [0, -4251, -10922, -10923, -2098, -5616, -2427], + [0, -3037, -652, -12744, -1942, -2093, -2094, -2100, -2267, -7699, -2399, -2410, -2541], + [0, -10604, -12763, -4329, -1105, -1599, -10918, -3862, -2093, -12764, -5552, -4002, -4109, -2427], + [1, 3, 7837], + [0, 7838, 7839, 7840, 4], + [0, -4251, -1287, -1619, -1290, -2427], + [ + 0, -5334, -3037, -652, -10915, -2586, -1942, -2094, -4242, -2095, -4655, -2098, -2100, -12765, -4656, -2399, + -2410, -5358, -2541 + ], + [0, -7644, -3264, -1599, -10918, -3862, -2093, -12764, -6231, -2427], + [1, 3, 7842], + [0, 7843, 7844, 7845, 9], + [0, -5358, -2427, -4251, -12766, -5356, -12767], + [0, -652, -932, -2093, -1942, -1874, -2094, -2410, -5334, -2101, -2090, -12750, -12749, -11167], + [0, -856, -5670, -12768, -3862, -2093, -12764, -2427], + [1, 3, 7847], + [0, 7848, 0, 7849, 5], + [0, -4251, -1618, -10869, -2427], + [0, -12743, -3272, -1599, -10918, -1838, -3862, -2093, -12764, -4132, -10919, -2427], + [1, 3, 7851], + [0, 7852, 7853, 7854, 9], + [ + 0, -12769, -12770, -2095, -12771, -12772, -9514, -9515, -9516, -9517, -9518, -12773, -9519, -12774, -9520, + -12775, -12776, -12777, -12778, -9524, -12779, -9527, -12780, -12781, -12782, -12783, -12784, -12785, -9528, + -12786, -12787, -12788, -12789, -12790, -12791, -12792, -12793, -9532, -9533, -9534, -12794, -9535, -9536, + -4995, -12795, -4656, -12796, -12797, -2427 + ], + [0, -86, -3307, -932, -946, -1053, -1344, -1534, -1942, -2094, -2541], + [0, -1105, -6913, -2093], + [1, 3, 7856], + [0, 7857, 7858, 7859, 4], + [ + 0, -12769, -2095, -4655, -9514, -9515, -9516, -9517, -12798, -9518, -12799, -12773, -9519, -12774, -9520, + -12775, -12776, -12777, -9522, -12778, -12800, -12801, -12802, -12803, -12804, -12805, -12806, -12807, -12808, + -12809, -12779, -12810, -9527, -12811, -12780, -12812, -12781, -12782, -12783, -12784, -12785, -9528, -12786, + -12813, -12814, -12815, -12788, -12789, -12816, -12817, -12790, -12791, -12792, -12818, -12819, -12793, -9532, + -9533, -9534, -12794, -9535, -9536, -4995, -12795, -5616, -4656, -9537, -12796, -12820, -2267, -2427 + ], + [0, -1942, -2094, -2399, -2410, -2541], + [0, -6913, -2093, -12821], + [1, 3, 7861], + [0, 7862, 7863, 7864, 8], + [0, -5334, -4251, -1619, -2427, -5358], + [0, -3037, -652, -1942, -2089, -2090, -2094, -2098, -2100, -5616, -2399, -2410, -2541], + [0, -9589, -3264, -1599, -10918, -3862, -12745, -2083, -12764, -2093, -2427], + [1, 3, 7866], + [0, 7867, 7868, 7869, 6], + [0, -503, -12822], + [0, -5514, -589, -8630, -932, -953, -985, -1202, -1304, -1610, -1654, -1788, -2127, -2133, -2137, -2140, -2184], + [0, -8630, -1599, -3437, -1838, -3215, -1958, -2102, -7650, -4065, -5554], + [1, 3, 7871], + [0, 0, 125, 7872, 5], + [0, -1168, -8109, -7693, -3866], + [1, 3, 7874], + [0, 7875, 7876, 7877, 4], + [0, -668, -1107, -2550], + [0, -190, -652, -664, -665, -932, -1654], + [0, -8276, -5554, -7002, -6656], + [1, 3, 7879], + [0, 7880, 7881, 7882, 10], + [ + 0, -1983, -11197, -2446, -1015, -12823, -6397, -12824, -1069, -1641, -12825, -2155, -2364, -12826, -12827, + -12828, -12829, -12830, -8956, -1856, -1459 + ], + [ + 0, -1788, -2322, -1471, -12831, -2125, -708, -615, -2250, -756, -12832, -8375, -633, -641, -9573, -1476, -2188, + -1472, -1860, -8958, -1484 + ], + [0, -1334, -5493, -2444, -3590], + [1, 3, 7884], + [0, 7885, 7886, 7887, 4], + [0, -615, -2364, -12833, -12834], + [0, -664, -1168, -668, -1548, -2125, -2105, -1231, -617, -1197, -2150, -1220, -11117, -1973], + [0, -2533, -1334, -1342, -1961, -2105, -11301, -12835, -615], + [1, 3, 7889], + [0, 7890, 7891, 7892, 9], + [0, -12834, -12833, -2364], + [0, -617, -664, -668, -1168, -11117, -1197, -1220, -1231, -1548, -1973, -2105, -2125, -2150], + [0, -2533, -1334, -1342, -1961, -2105, -11301, -12835, -5269], + [1, 3, 7894], + [0, 0, 7895, 7, 10], + [0, -2379, -2410, -710], + [1, 3, 7897], + [0, 0, 7898, 7899, 4], + [0, -5856], + [0, -4792, -9409, -12836], + [1, 3, 7901], + [0, 0, 7902, 7903, 5], + [ + 0, -349, -409, -3044, -3040, -3052, -3714, -427, -12837, -428, -12838, -932, -969, -12839, -1449, -1548, -1565, + -1624, -12840, -12718, -1942, -2006, -2019, -2040, -2125, -2195, -2391, -2410, -2469 + ], + [0, -2006, -2074], + [1, 3, 7905], + [0, 0, 7906, 7907, 4], + [ + 0, -528, -757, -932, -1412, -1413, -1471, -1475, -1479, -1481, -3569, -1486, -1488, -1490, -1491, -1962, -2127, + -2141, -2410 + ], + [0, -12841, -10095, -12523, -2444, -3323, -4865, -3582, -6989], + [1, 3, 7909], + [0, 7910, 7911, 7912, 10], + [0, -12842, -7437, -12843], + [0, -6455, -2319, -2359, -2322, -887, -932, -1650, -2125, -2177, -12844, -1777, -1365, -1795, -8569, -2156, -5834], + [0, -2114, -4792, -3966, -3551], + [1, 3, 7914], + [0, 0, 14, 7915, 5], + [0, -4792, -2114, -1847, -3551, -8388, -6546, -6024], + [1, 3, 7917], + [0, 7918, 0, 7919, 10], + [0, -12845, -742, -1543, -1889, -2231], + [0, -2501, -5932, -775, -6811, -6043, -2114, -2435, -2162, -9358, -6656], + [1, 3, 7921], + [0, 7922, 7923, 7924, 5], + [0, -12846, -3780, -1077, -1276, -1442, -12847, -2446], + [ + 0, -21, -23, -5870, -26, -33, -36, -5584, -39, -40, -44, -86, -3531, -3470, -3471, -519, -523, -528, -539, -541, + -617, -664, -12848, -756, -12310, -834, -4088, -932, -12849, -12850, -958, -963, -964, -12851, -966, -968, -971, + -12852, -972, -973, -978, -1004, -12853, -1344, -1444, -1457, -1547, -1654, -1656, -12854, -1788, -2174, -12855, + -2293, -12856 + ], + [0, -3960, -489, -3262, -856, -12857, -3636, -12858, -3691, -3690, -1334], + [1, 3, 7926], + [0, 7927, 7928, 7929, 4], + [ + 0, -1983, -788, -12859, -1640, -1801, -1867, -2178, -12860, -2446, -1548, -2177, -2454, -11983, -1582, -1070, + -5397, -508, -8541, -12830, -12861, -6456, -12862 + ], + [ + 0, -1788, -1816, -664, -1107, -1654, -2210, -932, -1650, -2125, -1376, -1754, -1942, -756, -2451, -12863, -8549, + -1939, -1972, -856, -12864, -12865, -960, -940, -967 + ], + [0, -3817, -3161, -1004, -12866], + [1, 3, 7931], + [0, 7932, 83, 7, 4], + [0, -1983, -2536, -2548, -1351], + [1, 3, 7934], + [0, 7935, 251, 7936, 8], + [0, -9050, -2202], + [ + 0, -1000, -12867, -1958, -11998, -12868, -12869, -12870, -12871, -12872, -10018, -687, -5564, -5514, -6713, + -4110, -3974, -4000, -3975, -5550, -3958 + ], + [1, 3, 7938], + [0, 7939, 0, 7940, 8], + [0, -615], + [0, -7685, -12873, -12874, -12875], + [1, 3, 7942], + [0, 0, 7943, 7, 5], + [0, -8959, -1405, -2322], + [1, 3, 7945], + [0, 7946, 7947, 7948, 5], + [0, -932, -3414], + [0, -3037, -1003, -1654, -1788, -2379, -2410], + [0, -6137, -6138, -4215, -5396, -3551, -5119, -4004, -12876, -4676, -8959, -4792], + [1, 3, 7950], + [0, 0, 7951, 7952, 4], + [0, -3415, -708, -12877, -12878, -11961, -12879, -1552, -12880, -12881, -1993, -2250, -2319, -2384], + [ + 0, -7208, -7369, -3589, -702, -6351, -6545, -7371, -7372, -7373, -7374, -7375, -12882, -12883, -12877, -12884, + -5922, -6187, -12885, -12886, -12887, -12888, -12889, -12878, -12890 + ], + [1, 3, 7954], + [0, 7955, 7956, 7957, 4], + [0, -1107, -12891], + [0, -3037, -1650, -1942, -2319, -2386, -2402], + [0, -6695, -12892, -12893, -6694, -7421, -687, -7418, -7371], + [1, 3, 7959], + [0, 7960, 7961, 7962, 4], + [0, -1696, -3846, -6521], + [0, -1412, -12894, -12895, -12896], + [ + 0, -12897, -11189, -12898, -10394, -9711, -6527, -12899, -11321, -2126, -5566, -12900, -12901, -12902, -12903, + -712 + ], + [1, 3, 7964], + [0, 202, 7965, 7966, 4], + [ + 0, -6779, -11174, -6780, -6778, -6777, -6776, -190, -4106, -3115, -12904, -5053, -4066, -6429, -350, -4062, + -351, -3561, -3266, -3267, -4785, -12905, -3621, -3037, -8523, -3199, -9146, -12906, -461, -12907, -6426, -639, + -644, -679, -726, -753, -767, -12908, -923, -927, -932, -940, -967, -978, -980, -1054, -12909, -1077, -4706, + -1110, -1344, -4788, -1534, -4789, -1588, -1623, -1654, -1753, -12910, -1788, -4916, -1863, -1864, -2851, -1942, + -1944, -1948, -1951, -2111, -2127, -2134, -2177, -2200, -2202, -2231, -2234, -2314, -2334, -2387, -2410, -2411, + -2466, -2468, -2476, -2478, -5627, -12911, -2551 + ], + [0, -3209, -7882, -12912, -3184, -7176], + [1, 3, 7968], + [0, 7969, 7970, 7971, 4], + [0, -3341, -2145], + [ + 0, -23, -3840, -33, -38, -40, -639, -932, -940, -967, -1344, -1534, -1654, -1942, -2127, -2129, -2133, -2231, + -2234 + ], + [0, -12913, -525, -4795, -3184], + [1, 3, 7973], + [0, 7974, 7975, 7, 11], + [0, -639, -2145], + [0, -932, -1654, -2127], + [1, 3, 7977], + [0, 7978, 7979, 7980, 5], + [0, -12914, -2145], + [0, -6429, -932, -1001, -1654, -1788, -2125, -2127, -12915, -12916], + [0, -2127, -12913, -3214, -3184, -3209, -3485, -12917, -7416], + [1, 3, 7982], + [0, 7983, 7984, 7, 4], + [0, -989, -4788, -1588, -2114, -2145], + [ + 0, -23, -40, -43, -461, -932, -958, -1344, -1534, -4789, -1654, -1942, -4790, -2127, -2128, -2133, -2137, -2200, + -2231, -2234, -2410 + ], + [1, 3, 7986], + [0, 7987, 7988, 7989, 4], + [0, -1588], + [0, -22, -8355, -12918, -426, -3037, -3040, -652, -2127, -2410], + [0, -12913, -2410, -4160, -12919], + [1, 3, 7991], + [0, 7992, 7993, 7, 11], + [0, -2145], + [0, -932, -958, -1344, -1534, -1654, -1942, -2127, -2129, -2137, -2234], + [1, 3, 7995], + [0, 7996, 7997, 7998, 5], + [0, -12920, -4787, -1548, -1588, -1666, -12921, -12922, -12923], + [ + 0, -23, -40, -43, -3326, -350, -351, -3989, -427, -428, -479, -535, -932, -934, -958, -1022, -1077, -11780, + -1168, -12924, -1222, -1412, -1413, -1942, -2125, -2127, -12925, -12926, -2359, -2410 + ], + [0, -2127, -12913], + [1, 3, 8000], + [0, 8001, 8002, 252, 6], + [0, -12927, -12928, -771, -12929], + [0, -9889, -812, -1654, -2127, -2128, -2136, -2184], + [1, 3, 8004], + [0, 8005, 8006, 252, 6], + [0, -461, -12928, -989, -1588, -12929, -2145], + [0, -527, -558, -633, -1415, -1650, -1654, -2125, -2127, -2128, -2137], + [1, 3, 8008], + [0, 8009, 8010, 253, 5], + [0, -3200, -644, -4793, -2114, -2145], + [0, -23, -40, -43, -922, -932, -1654, -2127, -2128, -2131, -2133, -4794, -2410], + [1, 3, 8012], + [0, 8013, 8014, 253, 9], + [0, -1588, -2145], + [0, -932, -958, -1344, -1534, -4789, -1654, -1942, -2127, -2129, -2200, -2231, -2410], + [1, 3, 8016], + [0, 8017, 8018, 8019, 10], + [0, -4785, -7149], + [0, -3267, -3037, -427, -428, -932, -940, -967, -1415, -1942, -2125, -2127, -2375, -2410], + [0, -2127, -12913, -6915, -2231, -12930], + [1, 3, 8021], + [0, 8022, 8023, 8024, 6], + [0, -22, -1429, -2182, -2334], + [0, -23, -1415, -1942, -2127], + [0, -2127, -12913, -2334, -1644], + [1, 3, 8026], + [0, 8027, 8028, 8029, 5], + [0, -2114, -2145], + [0, -639, -932, -1654, -2125, -2127, -2129, -2131, -2387, -2410], + [0, -12913, -2410, -4795], + [1, 3, 8031], + [0, 8032, 8033, 8034, 4], + [0, -4785, -1046, -1077, -2177, -2387], + [ + 0, -5121, -350, -351, -12931, -3048, -12932, -3136, -3044, -3037, -4067, -3199, -427, -428, -714, -932, -12933, + -1415, -1548, -1793, -2125, -2127, -12934, -2142, -2375, -2410 + ], + [0, -2142, -2141, -12913, -2410, -4795, -2127, -1764], + [1, 3, 8036], + [0, 8037, 8038, 8039, 6], + [0, -22, -1429, -2182, -2416], + [0, -23, -40, -533, -1415, -1942, -2127], + [0, -2127, -12913, -9216, -1644], + [1, 3, 8041], + [0, 8042, 8043, 8044, 4], + [0, -1805, -1864, -2231, -2550], + [ + 0, -350, -351, -3266, -3267, -3269, -12935, -12936, -12937, -12938, -12939, -12940, -3037, -8523, -3041, -651, + -798, -6258, -7259, -7268, -799, -801, -825, -1771, -8065, -1889, -7033, -1940, -1942, -2923, -2127, -4753, + -2162, -2387, -2410, -2466, -2469 + ], + [0, -12913, -12941, -5150, -12942, -12943, -12944], + [1, 3, 8046], + [0, 8047, 8048, 8049, 5], + [0, -989], + [ + 0, -426, -3136, -4036, -3037, -1344, -1415, -1534, -1639, -1942, -2127, -2131, -2137, -2141, -2200, -2375, + -2388, -2410, -8256 + ], + [0, -2127, -5260], + [1, 3, 8051], + [0, 0, 8052, 7, 5], + [0, -633], + [1, 3, 8054], + [0, 8055, 8056, 254, 10], + [0, -2694, -4007, -649, -658, -1119, -1889, -2234, -2279, -10098, -909, -2193], + [ + 0, -12945, -22, -23, -32, -3194, -26, -35, -6062, -36, -12946, -37, -3368, -3077, -3204, -38, -40, -41, -42, + -44, -46, -47, -12947, -12948, -12949, -12950, -3872, -4020, -237, -269, -12951, -12952, -12953, -12954, -12955, + -5038, -3983, -367, -5052, -12956, -12957, -12958, -8355, -4776, -12959, -10100, -10101, -3269, -12960, -3732, + -12961, -5085, -5033, -7080, -3198, -12962, -12963, -3036, -4035, -3850, -3044, -12964, -5587, -12965, -8523, + -12966, -3040, -3052, -6633, -3199, -12967, -6832, -5673, -12968, -12969, -4204, -8559, -5900, -461, -12970, + -2624, -502, -507, -512, -12971, -8561, -553, -6386, -635, -640, -651, -12972, -2740, -719, -12973, -724, -6842, + -6394, -736, -737, -743, -769, -771, -2745, -7189, -7026, -812, -5034, -6381, -12974, -997, -1047, -1072, -1107, + -1273, -1336, -1337, -6388, -1343, -2773, -12975, -1354, -10697, -1401, -1429, -1460, -1465, -8562, -12976, + -1582, -1643, -1683, -1699, -12977, -9548, -1734, -1816, -6378, -3447, -1827, -1848, -1851, -1864, -6184, -1903, + -7164, -1915, -7165, -2791, -1927, -1929, -1930, -1934, -1958, -1977, -6387, -1999, -2041, -2082, -2163, -2177, + -2178, -12978, -8578, -2194, -2231, -2233, -11463, -6390, -6375, -4195, -12979, -6383, -2269, -3921, -2323, + -12980, -2334, -2335, -2343, -6391, -6384, -2594, -12981, -2444, -6380, -12982, -10052, -2501, -2531, -2564 + ], + [1, 3, 8058], + [0, 0, 8059, 8060, 9], + [ + 0, -6068, -548, -6070, -6071, -8122, -6072, -6081, -6082, -6083, -550, -558, -8121, -7993, -7938, -628, -629, + -8116, -7945, -8119, -8118, -902, -8003, -8004, -12983, -8117, -1654, -1963 + ], + [0, -8123, -5923], + [1, 3, 8062], + [0, 8063, 8064, 8065, 5], + [0, -10415, -1863, -1889, -2271], + [0, -652, -1654, -2250], + [0, -12984, -775, -12985, -2149, -3161, -5553, -10733, -10732, -5845, -6408], + [1, 3, 8067], + [0, 8068, 8069, 8070, 8], + [0, -668, -1022, -1876], + [0, -1168, -1654, -2198], + [0, -7419, -11441, -5562, -1168, -1817], + [1, 3, 8072], + [0, 0, 8073, 8074, 5], + [0, -468, -2322], + [0, -9291, -510, -5924, -5865, -6235, -11727, -5839, -12986], + [1, 3, 8076], + [0, 0, 0, 8077, 4], + [0, -12987, -12988, -12989, -8408, -12990, -12991], + [1, 3, 8079], + [0, 33, 8080, 8081, 9], + [ + 0, -12992, -3, -367, -4007, -3035, -3044, -3621, -3037, -3714, -4372, -3625, -12993, -427, -428, -556, -664, + -12994, -712, -714, -767, -796, -7653, -930, -932, -10031, -1069, -1077, -1107, -6783, -1344, -5726, -1534, + -1548, -1646, -1654, -1753, -1771, -4099, -6184, -1942, -1961, -2127, -12995, -12996, -2137, -2195, -2200, + -2210, -2211, -2234, -2314, -2379, -2388, -2389, -12997, -12998, -12999, -2410, -2449, -13000, -2501 + ], + [0, -12990, -12991, -13001, -13002, -13003, -13004, -6980, -13005, -6948, -6950], + [1, 3, 8083], + [0, 0, 31, 8084, 9], + [0, -640, -13006, -13007, -9594, -2155, -7107, -13008], + [1, 3, 8086], + [0, 8087, 8088, 8089, 4], + [0, -1365, -2177, -2550], + [0, -5834, -515, -516, -887, -932, -13009, -1788, -2322], + [0, -8403, -10483, -1764, -13010, -6818, -9594, -13011], + [1, 3, 8091], + [0, 8092, 8093, 8094, 4], + [ + 0, -13012, -13013, -510, -13014, -668, -719, -13015, -724, -729, -743, -744, -746, -13016, -888, -1004, -1010, + -13017, -1107, -13018, -13019, -12902, -13020, -13021, -13022, -13023, -13024, -1646, -13025, -1840, -1851, + -1878, -1965, -13026, -13027, -13028, -2177, -2185, -2187, -13029, -13030, -2418, -2453, -13031 + ], + [ + 0, -589, -733, -932, -1003, -1077, -13032, -1654, -1783, -1888, -13033, -13034, -13035, -13036, -13037, -13038, + -2198, -2229, -2293, -2359 + ], + [0, -13039, -13040, -1004, -13041, -13042, -3817, -3816, -1818, -2228], + [1, 3, 8096], + [0, 8097, 8098, 8099, 5], + [0, -13043], + [0, -2322, -468, -13044, -633, -725], + [0, -6656, -6557, -13045, -7723, -5874, -5559], + [1, 3, 8101], + [0, 8102, 8103, 8104, 8], + [0, -823, -930, -1333, -1396, -13046, -1889], + [0, -932, -1654, -2210, -13047], + [0, -3264, -3215, -7722, -7723], + [1, 3, 8106], + [0, 8107, 0, 8108, 5], + [0, -679, -1361, -2232], + [0, -5553, -3754, -2162, -3277, -775], + [1, 3, 8110], + [0, 8111, 8112, 8113, 5], + [0, -9548], + [ + 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -621, -767, -774, -778, -824, -825, -909, -932, -940, -6929, + -958, -959, -960, -965, -967, -978, -1041, -2629, -1110, -1344, -1415, -1534, -13048, -1623, -1743, -13049, + -1771, -1942, -2162, -3572, -2177, -2251, -2275, -2410, -2411, -2501, -2503, -2505 + ], + [0, -2162, -9264, -2501, -5932], + [0, 44, 15, 16, 9], + [1, 3, 8116], + [0, 0, 8117, 7, 8], + [0, -1942, -2319], + [1, 3, 8119], + [0, 8120, 8121, 8122, 9], + [0, -13050], + [0, -13051, -652, -13052, -932, -1446], + [0, -4058, -856], + [1, 3, 8124], + [0, 8125, 8126, 48, 4], + [0, -469, -470, -5329, -4049], + [ + 0, -824, -1415, -1344, -932, -825, -1110, -2501, -1942, -21, -190, -533, -2410, -23, -3037, -1534, -1771, -86, + -965, -3560, -2251, -40, -959, -960, -958, -6929, -978, -940, -967, -3748, -3307 + ], + [1, 3, 8128], + [0, 8129, 8130, 8131, 5], + [0, -2006, -2019, -2634], + [0, -2410, -3037, -3040, -3052, -518, -1889, -2318, -932, -10813], + [ + 0, -13053, -13054, -1072, -5375, -770, -13055, -5375, -3634, -8576, -13056, -3551, -13057, -13058, -5376, + -13059, -11152, -5150 + ], + [1, 3, 8133], + [0, 8134, 0, 8135, 5], + [0, -899, -1723, -6127], + [0, -13060, -13061, -13062, -2171], + [1, 3, 8137], + [0, 0, 0, 8138, 4], + [0, -13063, -6555, -770], + [1, 3, 8140], + [0, 8141, 8142, 8143, 8], + [0, -13064, -1468, -2359, -2531], + [ + 0, -190, -5980, -932, -940, -964, -965, -7353, -967, -1004, -1110, -1281, -1446, -1654, -1656, -1685, -1942, + -2186, -2210, -2297 + ], + [0, -4864, -11467, -3634, -11468, -12350], + [1, 3, 8145], + [0, 8146, 8147, 8148, 5], + [ + 0, -7040, -13065, -3472, -7041, -7042, -13066, -755, -812, -13067, -999, -1040, -13068, -1100, -13069, -9464, + -1315, -13070, -1549, -1610, -6294, -1639, -13071, -10507, -3609, -2115, -2177, -3642, -2550 + ], + [ + 0, -3037, -3639, -519, -652, -686, -796, -851, -13072, -1077, -1116, -1442, -1547, -8314, -13073, -1722, -1772, + -13074, -1942, -2910, -2210, -13075, -2331, -2341 + ], + [0, -13076, -4864, -5887, -3551, -5897, -8403, -9244, -2177, -9318], + [1, 3, 8150], + [0, 8151, 8152, 7, 4], + [0, -44, -13077, -13078, -2997, -13079, -703, -13080, -1548, -1549, -1967, -2029, -2804, -2192], + [ + 0, -13081, -21, -23, -26, -34, -35, -37, -38, -40, -41, -43, -13082, -4227, -13083, -13084, -4773, -3040, -427, + -428, -3807, -13085, -528, -534, -13086, -539, -540, -13087, -553, -12468, -13088, -664, -13089, -747, -767, + -795, -812, -838, -855, -8245, -915, -932, -933, -940, -3071, -958, -962, -964, -969, -970, -1021, -1103, -1168, + -1228, -1266, -1344, -6273, -1471, -1475, -12832, -1476, -1482, -1483, -1492, -1526, -1534, -1654, -1942, -1955, + -1978, -2000, -2006, -13090, -13091, -2018, -2019, -2024, -2027, -2043, -2044, -13092, -13093, -13094, -2052, + -13095, -2125, -13096, -13097, -7708, -2210, -2211, -2214, -2253, -13098, -2335, -13099, -2347, -2410, -2460, + -2501, -2502, -2503, -2504 + ], + [1, 3, 8154], + [0, 8155, 8156, 8157, 4], + [0, -932, -942, -943, -13100, -958, -965, -968, -969, -13101], + [0, -3781, -1631, -1650, -2125, -2151, -2322], + [ + 0, -8180, -13102, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8175, -1445, -1452, -7148, + -8184, -8169, -13103, -5493, -2250, -8185, -5553, -8186, -8187, -8174 + ], + [1, 3, 8159], + [0, 0, 8160, 7, 5], + [0, -4298, -4300, -589, -2319], + [1, 3, 8162], + [0, 8163, 191, 8164, 4], + [0, -812, -907, -929, -990, -1072, -1335, -1641, -1681, -1800, -1997, -2255], + [0, -5142, -6656, -3844], + [1, 3, 8166], + [0, 8167, 8168, 8169, 5], + [ + 0, -13104, -3895, -13105, -13106, -13107, -13108, -13109, -13110, -1555, -1572, -1646, -9375, -13111, -13112, + -13113, -1983, -13114, -13115, -13116 + ], + [ + 0, -3890, -3893, -13117, -3037, -510, -13118, -756, -13119, -1276, -13120, -8936, -1942, -13121, -13122, -13123, + -13124, -13125, -2410 + ], + [ + 0, -11151, -5196, -11148, -13126, -6209, -13127, -11150, -6210, -13128, -3161, -13129, -13130, -13131, -3481, + -10809 + ], + [1, 3, 8171], + [0, 0, 8172, 8173, 11], + [0, -13132, -510, -589, -932, -1660, -2319], + [0, -2180, -10432, -13133, -11385], + [1, 3, 8175], + [0, 8176, 8177, 8178, 5], + [ + 0, -13134, -2446, -812, -13135, -1548, -1666, -2177, -2451, -1369, -3198, -13136, -13137, -1667, -6109, -13138, + -10416 + ], + [ + 0, -1857, -1788, -664, -461, -826, -2763, -1344, -1654, -1826, -2210, -932, -13139, -1692, -2125, -674, -928, + -13140, -13141, -2245, -10417, -10418, -13142, -749, -767, -1026, -13143, -1828, -13144, -12846, -1078, -2211, + -2410, -3035, -3037, -1002, -1534, -3621, -4372, -11747, -305, -3044, -13145, -13146, -13147, -86, -665, -13148, + -1609, -2174, -7382, -2234, -960, -964, -13149, -428, -13150, -9404, -427, -13151, -13152 + ], + [ + 0, -1691, -13140, -3742, -6321, -10425, -1857, -1682, -13153, -13139, -10424, -10418, -10704, -13154, -1818, + -3967, -13155, -7685, -7773 + ], + [1, 3, 8180], + [0, 0, 8181, 8182, 4], + [0, -589], + [0, -6233, -12343, -3214, -3756, -4055], + [1, 3, 8184], + [0, 8185, 37, 8186, 6], + [0, -812, -13156, -13157, -13158, -13159, -13160, -13161, -13162, -13163, -13164, -13165, -13166, -13167, -13168], + [ + 0, -13169, -13170, -13171, -13172, -13173, -11573, -1434, -13174, -13175, -13176, -10225, -13177, -13178, + -10227, -2183, -13179, -13180, -5827, -3975, -13181 + ], + [1, 3, 8188], + [0, 8189, 8190, 8191, 4], + [0, -469, -502, -623, -668, -700, -724, -13182, -13183, -5977, -6793, -13184], + [0, -1116, -2392, -2391, -1344, -932, -2469, -1942, -2410, -1534, -50, -3732, -13185, -3664, -13186], + [0, -2455, -2184, -11151, -1339], + [1, 3, 8193], + [0, 8194, 8195, 8196, 6], + [0, -990, -1072, -1681, -1840, -2155], + [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293, -13187], + [0, -1004, -13188, -5401], + [1, 3, 8198], + [0, 8199, 8200, 7, 11], + [0, -459, -7334, -812, -929, -1335, -1641, -1840], + [0, -465, -932, -963, -1654, -1788, -2293], + [1, 3, 8202], + [0, 8203, 81, 7, 5], + [0, -907, -929, -1840, -2178], + [1, 3, 8205], + [0, 8206, 8207, 8208, 4], + [0, -13189, -1640, -1645], + [ + 0, -86, -3307, -13190, -13191, -521, -664, -665, -720, -932, -940, -1077, -1344, -1534, -1573, -5969, -1654, + -1729, -1788, -1942, -1972, -13192, -2210, -2211, -2323 + ], + [0, -13192, -13193, -5819, -5817, -13194, -5937, -13195, -5940, -3258, -3100, -13196], + [1, 3, 8210], + [0, 8211, 8212, 8213, 5], + [ + 0, -13197, -13198, -13199, -13200, -3698, -13201, -13202, -13203, -11209, -13204, -5810, -13205, -13206, -13207, + -11197, -620, -4735, -13208, -5813, -13209, -1805, -7223, -2531 + ], + [ + 0, -13210, -4171, -13211, -3136, -3037, -3738, -4204, -427, -428, -13206, -5813, -928, -13212, -932, -940, + -8246, -948, -958, -967, -1344, -1415, -13213, -13214, -13215, -13216, -1456, -1766, -1942, -5815, -2251, -2375, + -2379, -2892, -2410, -2446 + ], + [0, -3112, -5817, -3634, -1415, -13192, -4216, -2469, -5819, -5941, -5943, -5951, -13217], + [1, 3, 8215], + [0, 8216, 0, 7, 4], + [0, -10906, -6130], + [1, 3, 8218], + [0, 0, 8219, 8220, 11], + [0, -528, -558, -566, -664, -932, -1059, -13218, -1344, -1534, -1654, -1942], + [0, -2192, -8495, -6439, -10661, -7378, -13219], + [1, 3, 8222], + [0, 8223, 8224, 8225, 4], + [0, -2177, -13220, -8612], + [ + 0, -8771, -2384, -13221, -2324, -1733, -13222, -1018, -13223, -2581, -1723, -13224, -1448, -13225, -13226, + -13227, -13228, -13229 + ], + [ + 0, -9235, -7715, -5315, -5316, -9807, -8642, -3839, -8707, -13230, -6527, -10095, -13231, -7066, -10711, -13232, + -13233 + ], + [1, 3, 8227], + [0, 0, 8228, 8229, 5], + [0, -5834, -516, -5835, -932, -993, -1365, -1408, -1777, -1788, -2156, -2322], + [0, -3957, -1838, -13234, -5550], + [1, 3, 8231], + [0, 8232, 8233, 8234, 4], + [0, -999, -1026], + [0, -519, -668, -710, -932, -934, -958, -1442, -1788, -13235, -13236, -2200, -13237], + [0, -2195, -6836, -11642, -5550, -13238, -9218, -1410, -12397], + [1, 3, 8236], + [0, 8237, 8238, 8239, 8], + [0, -1699], + [ + 0, -664, -1127, -1654, -913, -1132, -10682, -2351, -1158, -13239, -9256, -1130, -1156, -1542, -1136, -1144, + -1148, -5295 + ], + [0, -13240, -13241, -7231, -2446, -13242, -13243, -3005, -2197, -13244], + [1, 3, 8241], + [0, 8242, 8243, 8244, 4], + [0, -13245, -13246, -13247, -13248, -13249], + [0, -615, -932, -13250, -1654, -1942, -2127, -2137, -2388, -2410], + [0, -4004, -3440, -507, -2198], + [1, 3, 8246], + [0, 75, 8247, 8248, 4], + [ + 0, -1127, -1134, -1136, -1144, -1148, -1150, -1151, -13251, -1152, -1163, -1449, -1542, -1856, -13252, -2177, + -13253, -2234 + ], + [0, -1599, -6473], + [1, 3, 8250], + [0, 8251, 8252, 8253, 8], + [0, -1646, -2195], + [0, -526, -558, -566, -932, -934, -8246, -958, -1442, -1654, -1788, -2125, -13235, -13254, -13236, -2198], + [0, -2195, -5550, -11642, -6836, -6837, -8421, -687, -3977], + [1, 3, 8255], + [0, 0, 8256, 8257, 9], + [0, -7080, -3037, -9867, -5866, -652, -1942, -2319, -2379, -2402, -2410], + [0, -5395, -1000], + [1, 3, 8259], + [0, 8260, 8261, 8262, 5], + [0, -474], + [0, -1273, -1948, -2127, -2129, -2416], + [0, -5176, -13255, -10724, -659], + [1, 3, 8264], + [0, 8265, 8266, 8267, 8], + [0, -13256, -13257, -812], + [0, -13258, -13259, -3198, -3136, -3037, -928, -11714, -1415, -2379, -2410], + [0, -5889, -13260, -12263], + [1, 3, 8269], + [0, 0, 8270, 8271, 5], + [ + 0, -2384, -1415, -1344, -1868, -932, -2125, -2127, -1942, -767, -533, -23, -3136, -726, -13261, -1952, -44, -50, + -40, -953, -13262, -32, -3326, -2140, -3561, -13263, -350, -351, -8280, -13264, -536, -37 + ], + [0, -5070, -6814, -11889, -9668, -3161, -2006, -475, -2476, -3122, -6209, -3100], + [1, 3, 8273], + [0, 8274, 8275, 8276, 4], + [0, -4884, -357, -13265, -834, -2297], + [ + 0, -23, -4885, -4886, -4887, -4888, -13266, -11471, -13267, -539, -812, -829, -928, -13268, -10877, -1099, + -1534, -1654, -1788, -1942, -1978, -2125, -2177, -2195 + ], + [0, -2210, -4004, -3634, -5119, -8611, -4216, -8959, -4123, -13269, -4215, -2533, -507], + [1, 3, 8278], + [0, 0, 8279, 8280, 9], + [0, -190, -652, -664, -932, -1654, -1942, -2210], + [0, -664, -6537, -4865, -13270, -13271, -2210, -3634, -7244, -7245, -7243], + [1, 3, 8282], + [0, 8283, 8284, 8285, 5], + [ + 0, -4166, -3544, -510, -648, -13272, -13273, -1650, -2177, -6920, -1004, -1442, -2105, -927, -719, -1645, -1464, + -1276, -617, -724, -1335, -1304, -13274, -13275, -2062, -13276 + ], + [0, -1654, -615, -633, -13277], + [0, -6011, -5897, -7737, -11722, -3209, -1971, -3844], + [1, 3, 8287], + [0, 8288, 0, 7, 6], + [0, -13278, -5036, -13279], + [1, 3, 8290], + [0, 8291, 0, 8292, 11], + [0, -13280, -1532, -13281, -1863, -2654], + [0, -2214, -687, -985, -6187, -13282, -13283], + [1, 3, 8294], + [0, 89, 56, 8295, 5], + [0, -13284, -13285, -13286, -3445, -3100, -7566], + [1, 3, 8297], + [0, 8298, 8299, 8300, 10], + [0, -13287, -13288], + [0, -2501, -2376, -2410, -2503, -13289, -2502], + [0, -3445, -13290, -3690, -13192, -7685], + [1, 3, 8302], + [0, 0, 14, 8303, 5], + [0, -1847, -13291, -2218, -11635, -7084, -5845], + [1, 3, 8305], + [0, 8306, 8307, 8308, 4], + [0, -482, -13292], + [0, -519, -668, -13293, -2269, -2541], + [ + 0, -4783, -2265, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -3975, -5559, -5538, -5549, -5513, -5550, + -2547, -1573, -5545, -3958, -5554 + ], + [1, 3, 8310], + [0, 8311, 86, 8312, 4], + [0, -9371, -677, -5500, -13294, -13295, -10347, -13296, -1705, -1856, -13297, -1951, -1959, -13298, -2330, -2550], + [0, -13299, -3015, -9460, -1764, -1380], + [1, 3, 8314], + [0, 0, 8315, 8316, 5], + [0, -11254, -3470, -3471, -3311, -652, -1654, -2174, -2250], + [0, -2223, -2222, -2265, -2443, -9312, -4112, -2435], + [1, 3, 8318], + [0, 0, 8319, 8320, 4], + [0, -756, -13300, -1654, -1788], + [0, -2223, -2222, -2435, -13301], + [0, 44, 15, 16, 11], + [1, 3, 8323], + [0, 8324, 0, 8325, 4], + [0, -668, -1370, -1646, -2062, -13302, -2269, -2343], + [0, -3240, -13303, -13304, -2250, -13305, -10317, -13306, -13307, -13308, -13309], + [1, 3, 8327], + [0, 8328, 8329, 8330, 5], + [0, -523, -13310, -812, -1063, -1070, -1100, -1548, -2165, -2270, -6587, -13311], + [ + 0, -190, -3198, -3734, -3044, -3037, -13312, -6594, -617, -714, -834, -855, -883, -932, -1004, -1045, -1107, + -1654, -1788, -1942, -2062, -2177, -2187, -2198, -2210, -2234, -10402, -2402, -2410, -2411 + ], + [0, -2227], + [1, 3, 8332], + [0, 8333, 0, 8334, 4], + [0, -459, -13313, -754, -812, -5454, -13314, -4208], + [0, -8841, -3161, -2512, -9043, -997, -9005, -13315], + [1, 3, 8336], + [0, 8337, 0, 8338, 4], + [0, -13316, -812, -5455, -4208], + [0, -8841, -3161, -2512, -9043, -997, -3323], + [1, 3, 8340], + [0, 8341, 8342, 8343, 4], + [0, -812, -13317, -10622, -1370, -2438], + [ + 0, -633, -913, -932, -1003, -1168, -1208, -1243, -1244, -1252, -1262, -1471, -1472, -1473, -1475, -1482, -1654, + -1972, -1976, -2187, -13318, -2461, -2463 + ], + [0, -6224, -2512], + [1, 3, 8345], + [0, 0, 8346, 7, 8], + [0, -652, -855, -932, -1942, -940], + [1, 3, 8348], + [0, 0, 8349, 7, 6], + [0, -13239, -855, -2501], + [1, 3, 8351], + [0, 8352, 8353, 48, 6], + [0, -1351, -2232], + [ + 0, -21, -23, -40, -86, -3307, -7166, -533, -767, -774, -824, -825, -932, -940, -958, -1344, -1415, -1534, -1623, + -1771, -1942, -2251, -2501 + ], + [1, 3, 8355], + [0, 8356, 8357, 7, 4], + [0, -6829, -2231], + [0, -633, -711, -1339, -1654, -2501], + [1, 3, 8359], + [0, 0, 92, 8360, 5], + [0, -5092, -3264, -7451, -13319, -7205, -1838, -6231], + [1, 3, 8362], + [0, 8363, 8364, 8365, 8], + [ + 0, -13320, -13321, -13322, -9193, -13323, -674, -711, -719, -1026, -1119, -1122, -13324, -1127, -1134, -1136, + -1137, -1138, -1140, -1148, -1149, -1160, -1276, -1304, -1333, -1440, -1442, -13325, -1460, -1548, -1610, + -13326, -1889, -2162, -2312, -2359 + ], + [ + 0, -21, -23, -40, -43, -4710, -13327, -664, -665, -3629, -932, -964, -966, -974, -1654, -1753, -1942, -2123, + -2125, -2210, -2211 + ], + [0, -1122, -3671, -856, -13328, -13329, -3690, -4258, -3262], + [1, 3, 8367], + [0, 8368, 8369, 7, 8], + [0, -2346], + [0, -994, -8392, -8393, -8394, -13330], + [1, 3, 8371], + [0, 0, 8372, 7, 5], + [0, -13331, -13332, -11961, -1788, -1939, -2250, -2322], + [0, 0, 83, 7, 5], + [1, 3, 8375], + [0, 0, 8376, 7, 4], + [0, -1168, -1654, -932, -589, -1231, -1197, -1208, -1243, -1262, -13333, -1252], + [1, 3, 8378], + [0, 8379, 8380, 8381, 5], + [ + 0, -615, -712, -714, -783, -1077, -1276, -13334, -3999, -1548, -1757, -7667, -13335, -9395, -2347, -2460, -2462, + -13336, -13337 + ], + [0, -664, -756, -1405, -1654, -1657, -13338, -13339], + [0, -13340, -9278, -13341, -775, -3754, -1521, -2162, -2244, -13342, -7419], + [1, 3, 8383], + [0, 8384, 8385, 8386, 4], + [0, -596, -1723, -6521, -2323], + [0, -932, -1654, -12894], + [0, -10424, -3742, -2245, -7685], + [1, 3, 8388], + [0, 8389, 8390, 8391, 5], + [0, -13343, -13344], + [0, -932, -6461], + [0, -8905, -2246, -9456, -7721, -5550, -8421, -8908, -3323], + [1, 3, 8393], + [0, 8394, 8395, 8396, 10], + [0, -9084], + [0, -4298, -4300, -589], + [0, -5387, -3578, -7107, -13345, -10908, -10930, -13346, -13347, -13348, -13349, -13350, -3264], + [1, 3, 8398], + [0, 8399, 91, 8400, 9], + [0, -2548], + [ + 0, -2248, -4055, -2548, -9886, -10410, -7773, -6129, -13351, -13352, -3689, -7685, -856, -3445, -6857, -1671, + -1050, -1691, -2245, -6597, -13353, -10425, -4055, -6917, -13354 + ], + [1, 3, 8402], + [0, 0, 8403, 7, 11], + [0, -40, -533, -1415, -13355], + [1, 3, 8405], + [0, 8406, 8407, 8408, 6], + [0, -932, -943, -13100, -958, -965, -968, -969, -13101, -13356], + [0, -769, -1274, -1646, -13357, -2151, -5470, -2322], + [ + 0, -8180, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8175, -1445, -1452, -7148, -8184, -8169, + -5493, -2250, -8185, -5553, -8186, -8187, -8174 + ], + [1, 3, 8410], + [0, 8411, 8412, 8413, 5], + [0, -668, -739, -13358, -741, -10524, -831, -8888, -13359, -1040, -1047, -12340, -2177, -13360, -2550], + [0, -664, -932, -943, -958, -966, -968, -1654, -1658, -1663, -1788, -2195, -13361], + [0, -739, -13362, -5887, -5886, -5962, -9318, -475, -2250], + [1, 3, 8415], + [0, 8416, 8417, 8418, 4], + [0, -502, -615, -13363, -812, -999, -13364, -4703, -2648], + [ + 0, -3037, -13365, -664, -767, -829, -13366, -13367, -13368, -1116, -1457, -3809, -1646, -1654, -13369, -10652, + -2174, -13370, -2210, -2211, -8527, -2250 + ], + [0, -6657, -5921, -3844, -11818, -4004, -3590, -4116], + [1, 3, 8420], + [0, 8421, 8422, 8423, 5], + [0, -13371, -10926, -1093, -13372], + [0, -2330, -1754, -2424], + [0, -2254, -13373, -13374, -13375, -8841], + [1, 3, 8425], + [0, 0, 8426, 8427, 5], + [0, -790, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -1999, -9374], + [0, -1334, -9745, -707], + [1, 3, 8429], + [0, 8430, 8431, 8432, 4], + [0, -2531, -1805, -2066, -2177, -928, -6488, -13376, -4890, -13377, -12518, -407, -410], + [ + 0, -888, -2564, -664, -834, -1107, -1431, -2213, -999, -1526, -1623, -3548, -2006, -2218, -8609, -1111, -1699, + -1778, -13378, -928, -13379, -1085, -1442, -3447, -2114, -2358, -13380, -1885, -1942, -4893, -4204, -656, -719, + -2578, -1864, -13381, -2019, -3654, -2400, -12982, -2528, -4370, -3517, -13382, -1863, -2231, -2269, -2410, -23, + -9939, -3037, -769, -832, -13383, -47, -6192, -4894, -4918, -25, -13384, -3199, -13385, -831, -13386, -6467, + -13387, -6447, -3772, -3778, -3660, -3735, -13388, -6744, -13389, -3896, -13390, -12695, -2383, -46, -163, + -6630, -13391, -13392, -13393, -11751, -3194, -13394, -8523, -13395, -2044, -13396, -747, -13397, -7080, -13398, + -4239, -13399, -13400, -13401, -13402, -13403, -13404, -5474, -2271, -13405, -13406, -13407, -13408, -406, + -13409, -13410, -5322, -13411, -3776, -409, -13412, -13413, -4008, -8273, -2641, -13414, -3459, -13415, -13416, + -13417, -5296, -13418, -13419, -13420 + ], + [0, -2257, -3095, -3098, -13421, -13422, -2006, -2634, -9736, -2034, -3138, -2476, -475, -2299, -3176, -4902], + [1, 3, 8434], + [0, 8435, 8436, 8437, 8], + [0, -1338], + [ + 0, -13423, -4762, -4763, -4754, -13424, -13425, -13426, -13427, -4749, -4758, -13428, -407, -409, -3136, -4961, + -3040, -932, -13429, -1415, -4980, -1419, -1942, -1967, -1978, -2006, -2019, -2162, -2163, -2257, -2375, -2410, + -2516, -2548 + ], + [0, -4900, -2257, -13430, -3098, -856, -3100, -13431, -13432, -13433, -13434, -13435, -1783], + [1, 3, 8439], + [0, 8440, 0, 147, 5], + [ + 0, -3, -23, -40, -3538, -3539, -668, -674, -679, -714, -719, -755, -3542, -1022, -13436, -1077, -1107, -1276, + -1320, -1349, -13437, -1460, -1548, -1577, -3543, -3544, -1610, -1646, -3546, -3547, -11926, -9151, -2177, + -2368, -2378, -2446 + ], + [1, 3, 8442], + [0, 68, 15, 16, 11], + [1, 3, 8444], + [0, 212, 8445, 8446, 5], + [0, -13438, -13439, -1654, -2198], + [0, -13440, -5827], + [1, 3, 8448], + [0, 0, 8449, 8450, 4], + [0, -351, -3621, -3037, -789, -885, -1654, -7210, -1942, -2127, -2135, -2136, -2198, -2379, -2392, -2410], + [0, -5827, -6408, -788, -7208, -3445, -3100], + [1, 3, 8452], + [0, 8453, 56, 8454, 5], + [0, -7590, -305, -7565, -1061, -1406, -13441, -5721], + [0, -13442, -13443, -3445], + [1, 3, 8456], + [0, 0, 0, 8457, 9], + [0, -2264, -3276, -2265, -4123, -4121], + [1, 3, 8459], + [0, 0, 8460, 8461, 4], + [0, -1168, -1177, -1231, -1243, -13444, -1262, -11473, -2416], + [ + 0, -2265, -6816, -13445, -13446, -13447, -13448, -788, -3264, -3223, -1838, -3264, -9702, -6817, -11647, -6422, + -6420, -5559, -9692 + ], + [1, 3, 8463], + [0, 8464, 8465, 8466, 4], + [0, -3164, -13449, -1320, -1549, -13450, -13451, -13452], + [0, -13453, -13454, -12508], + [0, -707, -7347, -8388, -3264, -13455, -13456, -6694, -9357, -13457, -2265, -6817, -9702, -7651, -5554, -13458], + [1, 3, 8468], + [0, 8469, 14, 8470, 4], + [0, -13459, -2269], + [ + 0, -2265, -7472, -4112, -6730, -13460, -6787, -13461, -13462, -13463, -6786, -13464, -13465, -5514, -5559, + -5563, -687, -3958, -3974, -4000, -13466, -13467, -13468, -13469, -13470, -13471 + ], + [1, 3, 8472], + [0, 8473, 8474, 8475, 5], + [0, -2737, -2738], + [0, -3037, -652, -2736, -1942, -2094, -2100, -2399, -2410, -2541], + [0, -6231, -6422, -5559, -3264, -7472, -4846, -8034, -3223], + [1, 3, 8477], + [0, 8478, 238, 8479, 4], + [0, -481], + [ + 0, -6817, -11647, -6694, -5514, -3770, -712, -5535, -714, -3974, -4000, -2265, -3975, -5559, -5538, -5549, + -5513, -5550, -2547, -1573, -5545, -3958, -5554 + ], + [1, 3, 8481], + [0, 0, 14, 8482, 4], + [0, -6817, -9310, -6472, -7154, -9311, -4112, -2443, -9312, -6694, -6693, -11647, -5554, -2265], + [1, 3, 8484], + [0, 0, 8485, 8486, 4], + [0, -519, -1612, -2384, -2541], + [0, -4055, -6817, -3485, -6694, -6693, -11647, -6810, -1838, -727, -3870, -6849, -2444, -6845, -5558, -8292], + [1, 3, 8488], + [0, 0, 8489, 8490, 4], + [ + 0, -1788, -664, -1722, -1654, -932, -2379, -1942, -1729, -2410, -3035, -3037, -3621, -13472, -665, -958, -1656, + -940, -967, -4269, -428, -4628, -427 + ], + [0, -2272, -13473, -13474, -3690], + [1, 3, 8492], + [0, 8493, 8494, 8495, 5], + [ + 0, -510, -812, -13475, -13476, -1735, -13477, -1758, -1813, -2059, -13478, -13479, -13480, -13481, -13482, + -12003, -13483, -13484, -13485, -2518, -1464, -642, -13486, -797, -1298, -1370, -1521, -1548, -1579, -10695, + -11015, -13372, -1666, -2062, -9798, -2245, -13487, -10690, -13488, -13489, -13490, -11800, -2531 + ], + [0, -932, -1445, -2319], + [ + 0, -4344, -13491, -11755, -13492, -10705, -13493, -5804, -9733, -5805, -7641, -4161, -9844, -727, -3015, -8901, + -8904, -13494, -1066, -5889, -11021, -13495, -5545, -10706, -9800, -13496, -10412, -13497, -11230, -13498, + -1764, -13499, -13500, -13501, -6187, -13502, -1958, -6479, -11429, -11722, -13503, -4043, -5196, -13504, + -13505, -8027, -13478, -13506, -13507, -12003, -13485, -2273, -13508, -2295, -7307, -4123, -13509 + ], + [1, 3, 8497], + [0, 8498, 8499, 8500, 4], + [0, -13510, -13511, -13512, -13513, -668, -671, -5971, -719, -1395, -1460, -13514, -1942, -2355], + [ + 0, -6327, -2843, -50, -86, -3307, -13515, -13516, -3989, -13517, -3035, -3037, -5011, -3738, -428, -3311, + -13518, -3312, -461, -2834, -664, -932, -964, -969, -989, -1077, -13519, -1344, -13520, -1448, -13521, -1521, + -1534, -5273, -10918, -5670, -1654, -9002, -1771, -4916, -2162, -2177, -2193, -13522, -2286, -2410, -2429, + -2446, -2548 + ], + [0, -13523, -5553, -13524, -775, -3099, -7205, -2162, -3754, -5739, -13525, -2006, -3163, -4901], + [1, 3, 8502], + [0, 0, 8503, 48, 4], + [ + 0, -1415, -2162, -1344, -1449, -1623, -774, -932, -2177, -825, -2501, -920, -1942, -767, -21, -533, -778, -23, + -1041, -1534, -1771, -2163, -2503, -86, -2251, -40, -2505, -958, -940, -1419, -3307, -7166 + ], + [1, 3, 8505], + [0, 8506, 8507, 8508, 5], + [0, -2277], + [ + 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -3136, -427, -428, -932, -967, -4814, -1110, -1344, -1415, + -1534, -1942, -2127, -2375, -2379, -2410 + ], + [0, -2276, -775, -5553, -3214, -7208, -9680], + [1, 3, 8510], + [0, 8511, 8512, 8513, 6], + [0, -1374], + [ + 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -3267, -3136, -3037, -427, -428, -932, -967, -4814, -1110, + -1344, -1415, -1534, -1771, -1942, -2910, -2127, -2375, -2379, -2387, -2410 + ], + [0, -2277, -9339, -5553, -3215, -775, -7208, -9680], + [1, 3, 8515], + [0, 8516, 8517, 8518, 11], + [0, -3776, -5577, -13526, -13527, -786, -1889, -2192, -3768, -2387], + [ + 0, -23, -3341, -3840, -26, -36, -3203, -40, -41, -42, -3267, -406, -407, -409, -410, -3043, -3136, -13528, + -3037, -3040, -3052, -13529, -3141, -3081, -13530, -533, -535, -8560, -6046, -3563, -1415, -1419, -3667, -1428, + -1440, -1942, -1967, -2006, -2019, -13531, -2034, -2052, -2127, -2131, -2133, -2137, -2138, -2139, -2140, + -13532, -13533, -2410 + ], + [0, -2006, -775, -3771, -2278, -4134], + [1, 3, 8520], + [0, 8521, 8522, 8523, 11], + [0, -2740], + [ + 0, -21, -23, -36, -3077, -3373, -3204, -38, -40, -41, -43, -44, -47, -3040, -519, -3766, -9723, -742, -932, + -940, -1344, -1543, -1942, -1952, -2006, -2019, -2174, -2231, -12979, -3768, -13534, -2410 + ], + [0, -3766, -2455, -13535, -3771, -775], + [1, 3, 8525], + [0, 8526, 22, 8527, 10], + [0, -635, -1931], + [0, -6413, -775, -13536, -13537, -7192, -1889, -3583, -2280], + [1, 3, 8529], + [0, 8530, 8531, 8532, 6], + [ + 0, -93, -7195, -94, -95, -12147, -98, -9352, -2840, -755, -777, -781, -812, -1026, -11676, -8142, -6197, -1111, + -13538, -1327, -1353, -3190, -8143, -1396, -1499, -13539, -1630, -1639, -1759, -1863, -1889, -1929, -1931, + -1934, -2267, -2591, -13540, -4002, -2530 + ], + [ + 0, -50, -13541, -5121, -13542, -13543, -13544, -5685, -3198, -13545, -13546, -13547, -13548, -4036, -6928, + -13549, -8335, -13550, -9284, -589, -722, -823, -932, -13551, -958, -959, -1344, -1415, -13552, -1428, -1534, + -4984, -1771, -4916, -1904, -1906, -12130, -13553, -1930, -1942, -2094, -2289, -2410 + ], + [0, -3771, -775, -1521, -7148, -8170, -1599, -2162, -3754, -2281, -2289], + [1, 3, 8534], + [0, 8535, 8536, 8537, 9], + [0, -3085], + [0, -13542, -13543, -932, -13551, -1344, -1534, -1771, -1942, -2094, -2281], + [0, -2281, -13554, -2250], + [1, 3, 8539], + [0, 0, 8540, 8541, 5], + [ + 0, -1788, -1415, -1344, -1868, -855, -932, -708, -2402, -1942, -13555, -767, -2281, -21, -533, -13556, -5128, + -2410, -23, -5870, -1534, -1637, -43, -86, -2174, -40, -13557, -959, -977, -958, -3471, -13552, -3842, -940, + -967, -2405, -42, -428, -3470, -3307, -935, -427, -3363, -5585, -26, -36 + ], + [0, -13558, -2281, -775, -3754, -1521, -7148, -13559, -3833, -5924, -13560, -712, -13561], + [1, 3, 8543], + [0, 8544, 8545, 8546, 4], + [0, -1889, -13562], + [ + 0, -932, -13563, -940, -1110, -1344, -1415, -12241, -13552, -1428, -1534, -1904, -12130, -13564, -1942, -13565, + -2281 + ], + [0, -13558, -2281, -775, -7148, -7154], + [1, 3, 8548], + [0, 8549, 8550, 8551, 4], + [0, -781, -1396, -1499, -1620, -13566, -13567, -1931, -1934], + [0, -722, -767, -932, -13568, -1344, -1415, -13552, -1534, -1763, -1889, -12130, -1930, -1942, -2281], + [0, -775, -9231, -7148, -8170, -3754, -2281, -13558], + [1, 3, 8553], + [0, 8554, 128, 8555, 6], + [0, -28, -812, -1107, -2165, -2231], + [0, -775, -3215, -5553, -9406, -1409, -6784], + [1, 3, 8557], + [0, 8558, 8559, 8560, 6], + [0, -1026, -1759], + [ + 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -589, -13569, -767, -774, -778, -824, -825, -932, -940, -6929, + -958, -959, -960, -965, -967, -978, -1110, -1344, -1415, -1534, -1623, -1717, -1771, -1942, -2000, -2251, -2275, + -2286, -2411, -2501 + ], + [0, -2501, -5932, -2286], + [1, 3, 8562], + [0, 0, 0, 8563, 11], + [0, -775, -1889, -12209, -4132, -6806, -3215], + [1, 3, 8565], + [0, 8566, 8567, 8568, 5], + [0, -723, -13570, -812, -13106, -1069, -1070, -1636, -1640, -1983], + [ + 0, -21, -23, -38, -40, -44, -86, -3307, -571, -7124, -11178, -617, -633, -744, -767, -932, -946, -952, -966, + -1004, -1010, -1053, -1098, -1344, -1534, -1610, -1654, -1685, -1788, -2094, -2099, -2125, -2198, -13571, + -13572, -2541, -2568 + ], + [ + 0, -9733, -5998, -5998, -3690, -510, -5867, -523, -5391, -3323, -13573, -1116, -1334, -1334, -1342, -9128, + -1961, -1961, -5923, -2105, -2105, -9176, -13503, -3691, -2122, -13574, -2291, -7430, -6408, -2533, -2540 + ], + [1, 3, 8570], + [0, 8571, 8572, 7, 6], + [0, -10528], + [0, -3198, -11232, -3037, -589, -10300, -1671, -8973, -2410, -2469], + [1, 3, 8574], + [0, 8575, 8576, 8577, 5], + [0, -1636, -2291, -746], + [0, -1788, -1722, -1654, -2210, -932, -2198, -1004, -1972, -617, -744, -86, -958, -934, -3307], + [0, -3440, -1334, -2105, -2291, -4873, -4004, -3634], + [1, 3, 8579], + [0, 8580, 8581, 8582, 4], + [0, -615, -1636], + [0, -664, -665, -2123, -2517, -617, -744, -1004, -1654, -2198], + [0, -2293, -2291, -2105, -4873, -3440, -1334, -4004, -3634, -1961, -13575], + [1, 3, 8584], + [0, 0, 8585, 8586, 5], + [0, -2541, -519, -2384, -3037], + [ + 0, -712, -5535, -714, -3974, -4000, -687, -5514, -3770, -3975, -5549, -5513, -5550, -2547, -3958, -6520, -13576, + -13577, -6659, -13578, -13579 + ], + [1, 3, 8588], + [0, 8589, 8590, 8591, 6], + [0, -3195, -3115, -5032, -426, -461, -5113, -8294, -703, -5034, -5035, -13580, -4788, -4789, -1588, -13581], + [0, -3180, -3983, -350, -351, -3266, -3989, -5114, -3037, -5040, -928, -2127, -2231, -2654, -2410, -2469], + [0, -2299, -11193, -3161, -3261, -7651], + [1, 3, 8593], + [0, 8594, 8595, 8596, 4], + [0, -3180, -679, -4787, -1863, -5037], + [ + 0, -350, -4062, -351, -3561, -3267, -13582, -644, -2127, -2130, -4063, -2299, -2410, -13583, -13584, -11164, + -11165, -13585, -13586 + ], + [0, -2299, -687], + [1, 3, 8598], + [0, 0, 8599, 8600, 4], + [ + 0, -23, -40, -86, -3307, -13587, -13588, -4776, -3037, -13589, -8336, -518, -5859, -711, -740, -932, -1521, + -1889, -13590, -1907, -1942, -1974, -2162, -2286, -2289, -2299, -2410, -2469 + ], + [0, -2299, -9263, -2410, -1521, -2286, -2162, -3754, -1974, -711], + [1, 3, 8602], + [0, 8603, 8604, 8605, 4], + [ + 0, -2746, -1107, -2303, -510, -10310, -2460, -2542, -2550, -1442, -2520, -1689, -13591, -1566, -8054, -4733, + -13592, -5981 + ], + [0, -2541, -1415, -1521, -2162, -1880, -2286, -1870, -959, -960, -13593, -13594], + [ + 0, -3167, -3843, -3839, -7715, -9278, -9279, -9471, -3262, -775, -2162, -1521, -2286, -3271, -9339, -3264, + -9472, -9473, -9474, -1689, -7419 + ], + [1, 3, 8607], + [0, 8608, 8609, 8610, 4], + [0, -719, -780, -781, -2888, -2746, -1863, -2165], + [ + 0, -190, -5121, -350, -351, -3266, -5685, -7169, -3136, -3037, -13312, -3715, -767, -932, -1110, -1415, -1870, + -1874, -1880, -1942, -2125, -2127, -2325, -2384, -2410 + ], + [0, -2303, -3839, -7175, -1644], + [1, 3, 8612], + [0, 8613, 8614, 8615, 4], + [0, -824, -1570, -13595, -2415], + [0, -519, -526, -528, -556, -11733, -562, -566, -615, -932, -13596, -1626, -1650, -2210, -2501], + [0, -2501, -3862, -13597, -13595, -5196, -8615], + [1, 3, 8617], + [0, 8618, 8619, 8620, 8], + [0, -461, -823, -1107, -1460], + [0, -932, -1942, -2322, -13598], + [0, -4847, -13599, -3696, -8442, -856, -2305, -5885, -5886, -3262, -3960, -8443, -8444, -8445, -3438], + [1, 3, 8622], + [0, 8623, 8624, 8625, 4], + [0, -1111, -1442, -719, -13600, -13601], + [0, -932, -2469, -1942, -3664, -13602], + [0, -4847, -3671, -13603, -856, -3690, -9339, -3485], + [1, 3, 8627], + [0, 0, 131, 8628, 4], + [0, -3812, -4847, -3160, -2308, -1004, -856, -3671, -13604, -5406, -2307, -4101, -13605, -13606], + [1, 3, 8630], + [0, 8631, 8632, 8633, 4], + [0, -3434], + [0, -927, -1004, -13607, -1654, -1788, -1978], + [0, -4847, -1004, -3160, -4055, -856], + [1, 3, 8635], + [0, 8636, 8637, 8638, 6], + [0, -2416, -1813], + [0, -1548, -1004, -13608, -1654, -1003, -13609, -1521, -13610, -600, -13611, -1859, -633, -6656, -1446], + [0, -3110, -7651, -3264, -13432, -13612, -6876, -1004, -6301], + [1, 3, 8640], + [0, 0, 0, 8641, 9], + [ + 0, -2311, -13613, -12449, -2363, -5270, -3162, -752, -1861, -3994, -3161, -13614, -12613, -13615, -3862, -2006, + -2476, -13616 + ], + [1, 3, 8643], + [0, 8644, 8645, 8646, 4], + [0, -13617, -13618, -13619], + [0, -617, -767, -1004, -13620, -1415, -1676, -2125, -2410], + [0, -2105, -1334, -1342, -3324, -633, -12397, -6367], + [1, 3, 8648], + [0, 0, 0, 8649, 9], + [ + 0, -13621, -13622, -1673, -11230, -1819, -9261, -12578, -7084, -13623, -13624, -13625, -13626, -13627, -13628, + -13629, -12218, -13630, -3708, -13631, -10412, -8801, -13632, -13633, -13634, -13635, -5150, -13636, -13637, + -13638, -13639, -13640, -13641, -13642, -13643, -13644, -7606, -13645, -13646, -6524, -13647, -13648, -13649, + -6712, -13650, -13651, -10245, -13652, -13653, -13654, -13655, -13656, -13657, -13658, -3445, -13173, -13659, + -13660 + ], + [1, 3, 8651], + [0, 0, 8652, 7, 4], + [ + 0, -1805, -1496, -1654, -1650, -2125, -2127, -2334, -615, -1729, -13661, -8559, -2516, -2234, -4062, -2140, + -3561, -13662, -351, -13663 + ], + [1, 3, 8654], + [0, 8655, 8656, 8657, 4], + [ + 0, -2531, -469, -754, -13664, -13665, -13666, -13667, -1548, -1676, -13668, -13669, -13670, -13671, -1004, + -13672, -13673, -13674, -13675, -13676, -512, -617, -724, -737, -13677, -496, -44, -13678 + ], + [0, -1708, -473, -13679, -13680, -2195, -13681, -722, -13682], + [0, -13683, -13684], + [1, 3, 8659], + [0, 0, 8660, 8661, 9], + [ + 0, -5369, -2387, -932, -1111, -2127, -2469, -1942, -2410, -23, -3037, -40, -2132, -2411, -3664, -3326, -958, + -5122, -6593, -13685, -3267, -351, -10022, -3344 + ], + [0, -2318, -2316, -775, -3205, -13686, -13687, -1631, -9342, -13688], + [1, 3, 8663], + [0, 0, 8664, 7, 4], + [0, -815, -3037, -3751, -1588, -2232, -13689, -3195], + [1, 3, 8666], + [0, 8667, 0, 8668, 10], + [ + 0, -13690, -13691, -13692, -13693, -13694, -13695, -13696, -13697, -13698, -13699, -13700, -13701, -13702, + -13703, -13704, -13705, -13706, -13707, -13708, -13709 + ], + [0, -507, -2319, -4004, -3634, -3161, -687, -13710, -13711], + [1, 3, 8670], + [0, 8671, 8672, 8673, 9], + [0, -668, -883, -1040, -1548, -1951, -10854, -13712, -2347], + [0, -13713], + [0, -2322, -2319, -1654, -4679, -6863], + [1, 3, 8675], + [0, 0, 8676, 7, 6], + [0, -1415, -932, -1110, -1942, -190, -533, -23, -965, -3560, -40, -959, -958, -6929, -978, -940, -967, -3748], + [1, 3, 8678], + [0, 8679, 8680, 8681, 9], + [ + 0, -13714, -13715, -13716, -655, -821, -6369, -13717, -1065, -1097, -1107, -13718, -1285, -1370, -7394, -1646, + -1659, -1794, -5849, -1795, -1797, -2114, -8057 + ], + [ + 0, -5834, -505, -516, -725, -767, -887, -13719, -5835, -921, -932, -6282, -1408, -1442, -13720, -1777, -1788, + -2156, -2177, -2319, -8573 + ], + [0, -2319, -4004, -13721, -507, -4865], + [1, 3, 8683], + [0, 8684, 8685, 7, 5], + [0, -13722, -13723, -9084, -11721, -13724], + [0, -2319, -1722, -2386, -13725, -2125, -2402, -1942, -11719, -3037, -908, -13726], + [1, 3, 8687], + [0, 8688, 8689, 8690, 5], + [0, -1976, -2325], + [0, -2125, -13727, -2250], + [0, -2323, -1076, -6656, -7738, -7421, -5827], + [1, 3, 8692], + [0, 8693, 8694, 7, 6], + [0, -13728, -13729, -13730], + [0, -13727, -2250, -725], + [1, 3, 8696], + [0, 33, 8697, 8698, 6], + [0, -6486, -6627, -3136, -3037, -427, -428, -756, -928, -932, -943, -958, -966, -968, -1415, -1942, -2375, -2410], + [0, -13731, -3555, -13732, -13733, -3100, -13734, -3445, -13735, -11074, -6235], + [1, 3, 8700], + [0, 0, 8701, 8702, 4], + [ + 0, -6486, -13736, -13737, -3617, -6627, -3136, -3037, -4203, -427, -428, -617, -720, -796, -13738, -932, -943, + -958, -966, -968, -1344, -1415, -1534, -1753, -7760, -1942, -2293, -2375, -2410 + ], + [0, -13731, -3555, -13732, -13733, -3445, -13735, -6367, -1004], + [1, 3, 8704], + [0, 8705, 0, 8706, 8], + [0, -812, -1723, -6127], + [0, -13739, -13740, -13741, -13742, -13743, -596, -13744, -3445], + [1, 3, 8708], + [0, 8709, 8710, 8711, 8], + [0, -812, -1723], + [ + 0, -190, -3561, -3198, -3037, -8612, -865, -932, -940, -972, -978, -1733, -1942, -2402, -2405, -2410, -2411, + -2466, -6859, -2469 + ], + [0, -13739, -13742, -2328, -3966, -3445], + [1, 3, 8713], + [0, 8714, 27, 258, 5], + [0, -2125, -1650], + [1, 3, 8716], + [0, 8717, 8718, 8719, 4], + [0, -1399, -5917, -2400, -13387], + [0, -3037, -519, -1849, -2363, -2384, -2541], + [0, -2330, -9214, -1847, -6656, -7421, -7420, -6909, -13745, -11846, -13746, -6555, -13747], + [1, 3, 8721], + [0, 8722, 0, 8723, 9], + [0, -10893, -13748, -13749, -13750, -13751, -13752, -13753, -13754], + [ + 0, -3974, -4000, -5514, -687, -2547, -712, -13755, -13756, -5553, -3962, -13757, -12898, -13758, -5564, -3824, + -6716, -6765, -13759, -13760, -13761, -12704, -6527, -7715, -9235, -8642 + ], + [1, 3, 8725], + [0, 8726, 0, 8727, 11], + [0, -13762, -6372, -1370, -13763, -2347, -13764], + [0, -3824, -3974, -5514, -13765, -13766], + [1, 3, 8729], + [0, 8730, 8731, 8732, 6], + [0, -13767, -461, -719, -2234], + [0, -13768, -13769, -932, -8150, -985, -1654, -1939, -2127, -2177, -2231], + [ + 0, -9216, -2334, -2415, -2416, -1644, -6684, -3214, -3217, -8108, -3184, -6052, -13770, -4795, -8165, -6434, + -510, -5867 + ], + [1, 3, 8734], + [0, 8735, 8736, 8737, 5], + [0, -2334, -1429, -2168, -2182, -3180], + [ + 0, -824, -1415, -1344, -1623, -774, -932, -825, -928, -2501, -1942, -367, -767, -2416, -21, -190, -2410, -23, + -3037, -1041, -1534, -1771, -2503, -11510, -86, -965, -3560, -13771, -2251, -40, -2411, -959, -748, -960, -958, + -6929, -978, -940, -967, -3748, -6930, -3307 + ], + [0, -9216, -2416, -2415, -2334, -2501, -7172, -6059, -6454, -9696, -9234, -6059, -6684, -1644, -7175, -7176], + [1, 3, 8739], + [0, 8740, 8741, 8742, 4], + [0, -13772, -13773, -13774, -13775, -13776, -717, -718, -10293, -1026, -10745, -7576], + [0, -1448, -1729], + [0, -2337, -4004, -4043, -687, -5119, -3634, -3673, -2322, -2319, -519, -1654], + [1, 3, 8744], + [0, 8745, 8746, 8747, 11], + [0, -615, -668, -1107, -1548, -1610, -1650, -13777, -13778], + [ + 0, -3244, -190, -5294, -5767, -3036, -3044, -3037, -4372, -427, -428, -3664, -827, -932, -6611, -13779, -2210, + -13780, -13781, -2391, -2392, -2410, -13782, -2469 + ], + [0, -1599, -4004, -5119, -13783, -856, -3671], + [1, 3, 8749], + [0, 8750, 8751, 8752, 4], + [ + 0, -23, -33, -37, -10983, -3395, -3383, -3376, -3384, -3393, -3350, -3385, -3374, -38, -40, -6056, -41, -44, + -13784, -13785, -3037, -6558, -3442, -541, -6067, -13786, -7435, -664, -668, -13787, -711, -719, -812, -815, + -824, -13788, -11460, -834, -13789, -11328, -5910, -3606, -999, -13790, -1111, -1119, -12933, -1341, -5458, + -13791, -1366, -1392, -10697, -1393, -13792, -1399, -1460, -1548, -13793, -1591, -11015, -1666, -13794, -1689, + -1699, -13795, -1839, -1866, -13796, -1880, -6467, -13797, -1966, -1982, -13798, -13799, -5915, -2115, -2160, + -2177, -3169, -2234, -2270, -13800, -13801, -13802, -13803, -13804, -13805, -13806, -13807, -13808, -13809, + -2359, -2369, -2410, -13810, -13811 + ], + [ + 0, -13812, -7590, -13813, -4066, -350, -6572, -351, -13814, -13815, -3035, -3198, -13816, -9939, -9283, -11011, + -3622, -3735, -3199, -3172, -9660, -13817, -427, -428, -535, -579, -617, -13818, -13819, -665, -9077, -3050, + -729, -754, -767, -13820, -930, -932, -13821, -7353, -1004, -13822, -1168, -1174, -13823, -1196, -1197, -1226, + -13824, -13825, -8498, -1243, -13826, -1262, -3809, -1608, -1632, -1646, -13827, -1685, -13828, -1972, -2006, + -13829, -2127, -2142, -2187, -2210, -7220, -2269, -13830, -2387, -2416 + ], + [ + 0, -13831, -5112, -4865, -6413, -3258, -3995, -3634, -4864, -4004, -4043, -4873, -507, -5855, -13832, -6948, + -6950, -510, -5867 + ], + [1, 3, 8754], + [0, 8755, 8756, 8757, 6], + [0, -7602, -13833, -501, -8864, -8898, -812, -13834, -851, -1098, -7772, -13835, -13836, -2324, -2359, -2426], + [0, -11344, -13837, -11339, -3198, -11347, -13838, -13839, -3628], + [0, -2340, -7606, -3634], + [1, 3, 8759], + [0, 8760, 8761, 8762, 5], + [0, -1548, -4654, -13840, -10846], + [ + 0, -3037, -427, -428, -633, -13841, -13842, -767, -815, -13843, -13844, -1398, -1650, -1771, -1788, -2125, + -2250, -13845, -13846, -2341, -2379, -5482, -2410 + ], + [0, -4873, -3440, -4215, -8611, -4216, -13847, -11378], + [1, 3, 8764], + [0, 8765, 8766, 8767, 4], + [ + 0, -4733, -573, -615, -13762, -719, -724, -735, -999, -1004, -13848, -1107, -1336, -1442, -1548, -1650, -1689, + -1737, -1778, -13849, -2125, -2228, -13850, -13851, -8573, -2359 + ], + [ + 0, -13852, -633, -664, -7976, -13853, -674, -838, -932, -7979, -964, -1654, -2105, -13854, -2195, -2210, -2211, + -2229, -2322 + ], + [0, -3214, -3634, -11116, -4865], + [1, 3, 8769], + [0, 0, 8770, 8771, 4], + [0, -2319, -2322, -689], + [0, -5554, -4002, -9846, -4111, -10844, -6724], + [1, 3, 8773], + [0, 0, 8774, 8775, 4], + [ + 0, -190, -351, -3266, -932, -13855, -952, -957, -960, -1110, -13856, -1446, -1588, -1880, -1978, -1989, -2127, + -2393 + ], + [0, -2344, -13857, -3214, -13858, -13859, -13860, -13861, -13862, -13863, -13864, -13865, -659, -3839, -5177], + [1, 3, 8777], + [0, 0, 8778, 8779, 4], + [ + 0, -21, -23, -38, -40, -44, -3326, -534, -7156, -753, -932, -7157, -940, -967, -985, -1098, -13866, -7158, + -1344, -1471, -1473, -1475, -1479, -1483, -1485, -1490, -1492, -1534, -1646, -13867, -1763, -1942, -1991, -2127, + -7161, -2501 + ], + [0, -811, -7329], + [1, 3, 8781], + [0, 0, 8782, 8783, 9], + [0, -8388, -2322, -8393], + [0, -5827, -8027, -13868, -11441], + [1, 3, 8785], + [0, 8786, 8787, 8788, 4], + [0, -2062], + [0, -599, -640, -664, -13869, -1654, -13870, -2250, -13871], + [0, -5827, -13872, -2346, -6408], + [1, 3, 8790], + [0, 0, 0, 8791, 11], + [0, -12735, -705, -3262, -5925, -1961], + [1, 3, 8793], + [0, 0, 14, 8794, 6], + [0, -13873, -13874, -13875, -2350, -13876, -1847, -11845, -7421, -2440, -7727, -5845], + [1, 3, 8796], + [0, 8797, 210, 8798, 4], + [0, -668, -12908, -1040, -9236, -13877, -1951, -2343], + [0, -1127, -8906, -9460, -4123, -13878, -9330, -13879, -9225, -6187, -8906], + [1, 3, 8800], + [0, 8801, 8802, 8803, 4], + [ + 0, -13880, -13881, -13882, -13883, -13884, -13885, -13886, -13887, -13888, -13889, -13890, -13891, -13892, + -13893, -13894, -13895, -13896, -13897, -13898, -13899, -13900, -13901, -13902, -13903, -13904, -13905, -13906, + -13907, -13908, -13909, -13910, -13911, -13912, -13913, -13914, -13915, -13916, -13917, -13918, -13919, -13920, + -13921, -13922, -13923, -13924, -13925, -13926, -13927, -13928, -13929, -13930, -13931, -13932, -13933, -13934, + -13935, -13936, -13937, -13938, -13939, -13940, -13941, -13942, -13943, -13944, -13945 + ], + [ + 0, -1076, -1107, -1168, -1847, -2162, -1654, -2006, -932, -1548, -2125, -784, -1889, -2501, -923, -1077, -1405, + -767, -1003, -1248, -1743, -2019, -778, -1183, -1967, -1187, -2163, -518, -1238, -1244, -2275, -13946, -13947, + -1792, -2508, -1184, -1514, -1908, -13948, -3054, -969, -933, -958, -962, -10533, -13949, -796, -1017 + ], + [0, -2006, -3159, -3095, -3098, -3160, -3161, -3100, -13950, -2352, -13951], + [1, 3, 8805], + [0, 8806, 8807, 7, 6], + [0, -10459, -812, -10622, -10623, -1792, -1983], + [0, -526, -535, -554, -559, -932, -943, -968, -974, -1004, -1088, -1654, -11943, -2251, -2293], + [1, 3, 8809], + [0, 0, 0, 8810, 5], + [0, -589, -13952, -13241], + [1, 3, 8812], + [0, 0, 8813, 8814, 5], + [0, -13953], + [0, -712, -3215, -13954], + [1, 3, 8816], + [0, 0, 0, 8817, 11], + [0, -3494, -2356, -7754, -3214, -3264, -5554, -10109, -10110, -10114, -3495, -10111, -3498], + [1, 3, 8819], + [0, 0, 8820, 8821, 4], + [0, -3037, -13239, -932, -940, -967, -978, -1942, -2892, -2410, -2411, -2466, -2469], + [0, -5922, -13955, -13956], + [1, 3, 8823], + [0, 0, 0, 8824, 8], + [0, -4216, -4215, -2410, -13957], + [1, 3, 8826], + [0, 0, 8827, 258, 4], + [0, -1654, -932, -1405, -6726, -964], + [1, 3, 8829], + [0, 8830, 8831, 8832, 4], + [0, -2036], + [0, -23, -13958, -3156, -1942, -2410], + [ + 0, -2006, -3159, -13959, -12662, -3825, -13960, -13961, -2034, -2053, -13962, -13963, -2360, -4127, -4122, + -13964, -687, -3162, -5270, -5271, -3578, -13965 + ], + [1, 3, 8834], + [0, 0, 8835, 8836, 10], + [ + 0, -21, -23, -37, -40, -41, -2581, -11254, -3311, -534, -664, -932, -1004, -1077, -1103, -1111, -1442, -1449, + -1610, -1650, -1654, -2634, -13966, -1771, -13967, -2006, -2019, -2162, -2250, -2501, -2503 + ], + [0, -2361, -3214, -4002, -13968, -7002, -3960, -3264, -7534, -9975], + [1, 3, 8838], + [0, 0, 8839, 8840, 6], + [0, -1754, -11358], + [0, -2362, -3215], + [1, 3, 8842], + [0, 0, 8843, 7, 6], + [0, -11719, -2319], + [1, 3, 8845], + [0, 8846, 8847, 8848, 6], + [0, -13969], + [ + 0, -2832, -190, -4139, -262, -3037, -6593, -932, -940, -948, -958, -967, -3631, -1110, -1942, -2391, -2410, + -2411, -2469 + ], + [0, -4181, -743, -6920, -13970, -13570, -8792, -13971, -13972], + [1, 3, 8850], + [0, 8851, 8852, 8853, 4], + [0, -714, -808, -1650, -13973], + [0, -3035, -3621, -664, -689, -879, -932, -1654, -1788, -2379, -2388, -2410], + [0, -1573, -3444, -13974, -812], + [1, 3, 8855], + [0, 8856, 8857, 8858, 5], + [0, -11103, -13975, -7400], + [0, -5834, -516, -5835, -921, -932, -1365, -1777, -2156, -2322], + [0, -2368, -2487, -7371, -6917, -13976, -6545, -702], + [1, 3, 8860], + [0, 0, 27, 8861, 5], + [0, -10919, -10336, -1958, -13641, -12872, -5395], + [1, 3, 8863], + [0, 241, 8864, 7, 5], + [0, -3732, -4198, -3617, -3136, -724, -754, -1004, -1415, -1753, -1942, -2375, -2410, -2564], + [1, 3, 8866], + [0, 8867, 8868, 8869, 4], + [0, -1370, -2347, -6372, -13977, -13978, -2062], + [0, -2322, -2346, -725], + [0, -3264, -9292, -3215, -6408, -12123, -775], + [1, 3, 8871], + [0, 8872, 8873, 8874, 4], + [0, -3851, -3199, -1388, -1681, -2177, -9444], + [0, -2581, -3037, -3664, -637, -11187, -1672, -1806, -5326, -3246, -2410, -2469], + [ + 0, -3445, -6857, -1671, -1672, -3862, -4058, -7773, -7684, -3018, -2410, -3324, -2071, -4634, -10412, -6495, + -5101, -13979 + ], + [1, 3, 8876], + [0, 0, 8877, 161, 11], + [ + 0, -21, -23, -26, -35, -36, -40, -42, -50, -86, -3307, -4139, -262, -3268, -3136, -3044, -3738, -427, -428, + -533, -589, -753, -932, -940, -967, -977, -1344, -1415, -1548, -1771, -1942, -2082, -2379, -2402, -2405, -2410, + -2446 + ], + [1, 3, 8879], + [0, 8880, 8881, 8882, 5], + [0, -13980, -7141, -1276, -1460, -1565, -13981, -2177, -2400, -2551], + [ + 0, -86, -9404, -3615, -3244, -190, -5121, -4020, -237, -4776, -3048, -3136, -3660, -3759, -8216, -7211, -4036, + -3037, -3199, -3041, -9146, -427, -428, -533, -10525, -739, -928, -932, -940, -958, -959, -960, -967, -999, + -1026, -1077, -1110, -1344, -1415, -1442, -1534, -1623, -1942, -2125, -2379, -2410, -2411 + ], + [0, -1415, -2410, -6915, -2006, -3634], + [1, 3, 8884], + [0, 8885, 8886, 8887, 5], + [0, -668, -909, -1639, -2177, -2231], + [ + 0, -4036, -3199, -427, -428, -525, -527, -534, -556, -559, -13982, -560, -930, -932, -940, -966, -967, -1077, + -1107, -1344, -1413, -1471, -1475, -1481, -1483, -1490, -1492, -1534, -1607, -1650, -1654, -1942, -2125, -2410, + -2501, -2503 + ], + [0, -2376, -13983, -2501, -5932, -2410, -3018], + [1, 3, 8889], + [0, 8890, 8891, 8892, 9], + [0, -4106, -719, -865, -1672, -2392], + [0, -2581, -3037, -3664, -11187, -1763, -1806, -5326, -3246, -2410, -2469], + [ + 0, -3445, -13984, -13985, -13986, -1672, -1671, -6857, -4058, -7773, -7684, -3018, -2410, -687, -5732, -13987, + -5731 + ], + [1, 3, 8894], + [0, 8895, 8896, 8897, 6], + [0, -13988, -13989], + [0, -3267, -3035, -9939, -3621, -3037, -664, -11072, -767, -834, -1654, -2125, -2127, -2379, -2410], + [0, -2410, -3272, -13990, -3107, -13991], + [1, 3, 8899], + [0, 8900, 8901, 8902, 5], + [0, -2558, -502, -834, -461, -462, -13981, -13992, -13993, -13994, -13995, -8214, -13996, -13997], + [ + 0, -519, -1788, -523, -2006, -13998, -1001, -1548, -2125, -2177, -11685, -1821, -2402, -367, -13999, -1100, + -1972, -2410, -9939, -3037, -14000, -3040, -3044, -8890, -3199, -6744, -14001, -7772, -4364, -11347, -11708, + -262 + ], + [0, -2410, -3966, -11997, -5558, -3018, -3116], + [1, 3, 8904], + [0, 8905, 8906, 8907, 5], + [0, -3044, -3851, -3199, -14002, -1548, -1681, -14003, -14004, -2177], + [0, -2581, -3037, -3664, -11187, -1672, -1806, -5326, -3246, -2410, -2469], + [ + 0, -3445, -1672, -3862, -6857, -4058, -7773, -7684, -3018, -2410, -7460, -1306, -5389, -6821, -8990, -10674, + -6693, -5879, -1573 + ], + [1, 3, 8909], + [0, 0, 37, 8910, 8], + [0, -2410, -2552, -10054, -10055], + [1, 3, 8912], + [0, 8913, 8914, 8915, 5], + [0, -1548, -3044], + [0, -2581, -3037, -3664, -1806, -5326, -3246, -2410, -2469], + [0, -3445, -3018, -2410, -14005, -14006, -11315, -8199, -6899, -14007, -14008, -14009, -14010, -14011], + [1, 3, 8917], + [0, 8918, 8919, 7, 9], + [0, -1460, -1646, -2270], + [ + 0, -1415, -1344, -932, -2125, -2375, -2379, -1942, -2410, -3136, -3037, -1534, -5686, -14012, -960, -958, -940, + -428, -7770, -427 + ], + [1, 3, 8921], + [0, 8922, 8923, 8924, 5], + [0, -14013, -3686, -1111, -1418, -1630, -1849, -2061], + [0, -5028, -3037, -3040, -427, -428, -519, -757, -825, -932, -945, -14014, -999, -2006, -2115, -2153, -2410], + [0, -2410, -2384, -7440, -2414, -3694, -14015, -14016], + [1, 3, 8926], + [0, 0, 8927, 8928, 4], + [0, -23, -40, -42, -5121, -8214, -14013, -3037, -427, -428, -533, -774, -932, -940, -1415, -1942, -2410], + [0, -2410, -2384, -4037, -7440, -7144, -4004, -2414, -3694], + [1, 3, 8930], + [0, 8931, 8932, 8933, 10], + [0, -8200, -668, -679, -6475, -14017, -1645, -1650, -14018, -13709, -2125, -14019, -2410, -4297], + [0, -3037, -928, -1942, -2319, -2402], + [0, -2410, -5058, -9946, -985, -4791, -7641], + [1, 3, 8935], + [0, 0, 0, 8936, 6], + [0, -4165, -14020, -3116, -6784, -3214, -2387, -11997], + [1, 3, 8938], + [0, 8939, 8940, 8941, 8], + [0, -22, -644, -668, -719, -834, -1107, -1442, -1645, -1650, -2114, -2177, -2387, -7765], + [ + 0, -305, -8355, -3035, -9939, -3036, -3660, -8566, -4811, -3621, -3037, -3200, -8890, -3199, -664, -1344, + -13325, -1654, -1771, -1788, -1942, -2125, -2379, -2388, -2389, -6355, -2410, -12515 + ], + [0, -687, -2410, -8170], + [1, 3, 8943], + [0, 0, 8944, 8945, 5], + [ + 0, -1415, -1344, -1548, -2125, -2388, -2375, -1591, -1942, -14021, -720, -2410, -3136, -3037, -14022, -2390, + -14023, -6630, -2174, -14024, -14025, -12348, -2449, -12349, -14026, -796, -14027 + ], + [0, -7148, -2388, -14028, -1942, -727, -2410], + [1, 3, 8947], + [0, 8948, 8949, 7, 6], + [0, -7765], + [0, -3036, -3037, -714, -1107, -1771, -1847, -2388, -14029, -2410], + [1, 3, 8951], + [0, 8952, 8953, 7, 4], + [ + 0, -13389, -653, -679, -734, -812, -928, -14030, -14031, -1863, -1907, -2115, -2127, -2231, -5354, -3535, -2654, + -2369 + ], + [ + 0, -262, -4062, -367, -3198, -3037, -3200, -8349, -1055, -1889, -10815, -1942, -2114, -2132, -2162, -2271, + -2299, -2301, -2334, -14032, -2391, -2410, -2469, -2817 + ], + [1, 3, 8955], + [0, 8956, 0, 8957, 4], + [0, -928, -1101], + [0, -687, -11997, -3966, -8930, -4791, -985, -2410, -14033], + [1, 3, 8959], + [0, 8960, 8961, 8962, 6], + [0, -14034], + [0, -350, -351, -3561, -633, -2123, -2127, -2250, -14035], + [0, -6473, -3264, -1599], + [1, 3, 8964], + [0, 0, 8965, 8966, 10], + [ + 0, -1127, -1654, -11875, -1132, -2111, -14036, -14037, -1156, -14038, -1138, -14039, -2234, -1134, -14040, + -1144, -1148, -14041, -14042, -14043 + ], + [0, -1456, -4058, -2451, -2394], + [1, 3, 8968], + [0, 0, 8969, 8970, 5], + [0, -633, -932, -1032, -14044, -2322, -14045, -2416], + [0, -770, -5374, -14046, -14047, -13351, -6131, -7372, -14048, -14049, -14050, -14051, -14052], + [1, 3, 8972], + [0, 8973, 8974, 8975, 5], + [0, -1077, -1462, -14053, -8984], + [0, -1771, -1860, -2416], + [0, -10838, -14054, -3215, -5093, -9474, -14055, -4112], + [1, 3, 8977], + [0, 8978, 8979, 8980, 9], + [0, -615, -1640, -2105], + [0, -510, -714, -719, -1654, -2123, -2210], + [0, -2398, -3690, -3691, -5827, -9292, -1791], + [1, 3, 8982], + [0, 8983, 8984, 8985, 11], + [0, -2105, -822], + [0, -1722, -1654, -932], + [0, -2398, -9292, -1791], + [1, 3, 8987], + [0, 8988, 0, 7, 4], + [0, -1646, -14056, -668], + [1, 3, 8990], + [0, 8991, 8992, 8993, 9], + [0, -14057], + [0, -5918, -428, -932, -14058, -815, -1002, -1772, -2384, -2410, -2411, -2541], + [0, -2410, -3018, -3694, -3590, -2444, -8113, -10665, -1631, -4055, -14059], + [1, 3, 8995], + [0, 8996, 129, 8997, 4], + [0, -737, -14060, -1641], + [0, -5398, -8038, -14061], + [1, 3, 8999], + [0, 9000, 9001, 259, 4], + [0, -14062, -3544, -1600, -1645, -2548], + [0, -190, -3800, -3661, -3621, -3037, -652, -13998, -928, -932, -1654, -1978, -2177, -2392, -2410, -2411], + [1, 3, 9003], + [0, 9004, 9005, 9006, 11], + [0, -14063], + [0, -3037, -2402, -2410], + [0, -14064, -14065, -3118, -14066, -14067, -14068, -2410, -856], + [1, 3, 9008], + [0, 0, 131, 9009, 6], + [0, -4121, -4123, -13188, -2410, -856, -14068, -2402], + [1, 3, 9011], + [0, 0, 0, 9012, 4], + [0, -3690, -856, -1599, -2402, -2410, -14065], + [1, 3, 9014], + [0, 9015, 9016, 9017, 4], + [0, -1610, -2410], + [0, -3802, -3621, -3037, -3628, -756, -1405, -1654, -1657, -2359], + [0, -4165, -856, -14069, -3214], + [1, 3, 9019], + [0, 9020, 9021, 9022, 4], + [0, -719, -2536, -1705, -6455, -14070, -510, -714, -1666, -1650, -7418, -14071], + [0, -664], + [0, -14072, -1599, -14073, -14074, -14075, -8676, -3110, -6473, -3262], + [1, 3, 9024], + [0, 106, 9025, 7, 5], + [ + 0, -234, -3035, -4269, -3621, -14076, -3037, -664, -665, -756, -1654, -14077, -1672, -14078, -1942, -14079, + -2234, -2379, -2389, -12348 + ], + [1, 3, 9027], + [0, 9028, 9029, 7, 10], + [0, -1107, -2446, -483, -809, -812, -2387, -2550, -640, -815, -865, -7023, -496, -14080, -2080, -14081], + [ + 0, -652, -1857, -664, -1168, -1344, -1392, -1654, -1682, -1691, -2071, -2210, -932, -1692, -2125, -3729, -1110, + -1671, -2245, -2379, -10418, -1942, -14082, -190, -1250, -8436, -2211, -2410, -3035, -3037, -1243, -1534, -3198, + -3621, -4372, -3041, -1244, -14083, -10419, -1252, -1261, -10420, -14084, -8214, -665, -3625, -3910, -7969, + -2411, -14085, -2234, -14086, -960, -14087, -14088, -4269, -9660 + ], + [1, 3, 9031], + [0, 0, 9032, 9033, 5], + [ + 0, -652, -1681, -664, -834, -1107, -1498, -1654, -2387, -2518, -13998, -932, -8526, -928, -1110, -679, -1646, + -3851, -190, -1863, -1874, -2410, -3035, -9939, -3621, -10755, -1461, -305, -5686, -1028, -14089, -14090, -2411, + -14091, -2234, -971, -14092, -429, -9660, -14093, -5201, -5206, -14094, -14095 + ], + [0, -4165, -14020, -3116, -6784, -3214], + [1, 3, 9035], + [0, 9036, 112, 9037, 4], + [0, -429, -428, -427, -5209], + [0, -3272, -3217, -3214, -2410, -3215, -4132, -932, -5208, -3784], + [1, 3, 9039], + [0, 9040, 9041, 9042, 10], + [0, -14096, -7829], + [0, -4811, -3621, -3037, -14097, -740, -14098, -1650, -1654, -1938, -2388, -2410, -2412], + [0, -4165], + [1, 3, 9044], + [0, 9045, 9046, 9047, 6], + [ + 0, -14099, -14100, -865, -2773, -1521, -1551, -1889, -1907, -7164, -1915, -7165, -10283, -2162, -2232, -2383, + -2286 + ], + [ + 0, -14101, -3136, -8334, -3759, -3037, -14102, -14103, -8336, -427, -428, -620, -932, -940, -1344, -1415, + -14104, -1534, -14105, -1916, -1927, -1942, -14106, -2375, -2410 + ], + [0, -775, -3754, -2162, -1521, -2286, -3209, -3862, -1889, -2410], + [1, 3, 9049], + [0, 9050, 9051, 9052, 8], + [0, -11661, -615, -668, -696, -715, -13789, -10511, -12631, -1575, -1646, -14107, -14108, -2433, -2525, -2546], + [0, -829, -1722, -2125, -2379, -2388, -14109, -2410], + [0, -2414, -2410, -14110, -4159, -5897, -9800, -9069], + [1, 3, 9054], + [0, 9055, 9056, 9057, 8], + [0, -719, -2231], + [0, -461, -1654, -2177], + [0, -9216, -2415, -2416, -1644, -6684, -3214, -3217, -8108, -3184, -6052, -13770, -4795, -8165, -6434, -510, -5867], + [1, 3, 9059], + [0, 0, 9060, 9061, 11], + [0, -461, -2177], + [ + 0, -687, -6454, -9696, -14111, -3217, -6505, -8108, -3214, -3756, -14112, -9234, -6059, -6684, -1644, -7175, + -7176, -7858, -9697, -1838, -3215, -9698, -9216 + ], + [1, 3, 9063], + [0, 9064, 9065, 9066, 9], + [0, -4287, -1046, -1401, -2168, -2182, -2231, -2416, -2510, -10059], + [ + 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -8206, -767, -824, -825, -932, -940, -958, -1344, -1415, + -1424, -1534, -1626, -1771, -1942, -2251, -2334, -2501 + ], + [0, -9216, -2416, -2415, -2501, -7172], + [1, 3, 9068], + [0, 9069, 9070, 9071, 5], + [0, -14113], + [0, -1654, -932, -615, -1405, -966, -958, -968, -943, -974], + [0, -6555, -3262, -7232, -9594], + [1, 3, 9073], + [0, 9074, 0, 9075, 4], + [ + 0, -44, -3040, -3052, -14114, -14115, -14116, -14117, -14118, -14119, -14120, -14121, -432, -14122, -14123, + -14124, -14125, -14126, -14127, -14128, -14129, -14130, -14131, -14132, -14133, -14134, -14135, -14136, -14137, + -14138, -14139, -433, -434, -14140, -14141, -14142, -14143, -14144, -14145, -14146, -14147, -5257, -435, -14148, + -14149, -14150, -14151, -14152, -14153, -14154, -14155, -14156, -14157, -14158, -14159, -14160, -14161, -14162, + -14163, -14164, -14165, -14166, -14167, -14168, -14169, -14170 + ], + [0, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, -3577, -3100], + [1, 3, 9077], + [0, 9078, 9079, 174, 10], + [0, -1107, -1351, -1548, -2177, -2529], + [0, -1452, -1600, -1654, -1766, -2198], + [1, 3, 9081], + [0, 0, 9082, 7, 10], + [0, -4066, -350, -351, -3267, -3037, -589, -1942, -2127, -2387, -2410, -2469], + [1, 3, 9084], + [0, 0, 9085, 9086, 5], + [0, -2581, -50, -13526, -668, -5382, -928, -1111, -1273, -1600, -14171, -1771, -14172, -1948, -3768, -2469], + [0, -3264, -3110, -7723], + [1, 3, 9088], + [0, 9089, 9090, 7, 5], + [ + 0, -4066, -350, -4062, -351, -3561, -4785, -14173, -734, -6860, -928, -14030, -14174, -1431, -1588, -14175, + -1651, -1852, -6568, -1948, -2127, -2132, -6569, -2654, -14176 + ], + [0, -3376, -3037, -3664, -8189, -672, -932, -944, -1942, -2410, -2469], + [1, 3, 9092], + [0, 0, 9093, 9094, 4], + [ + 0, -1788, -1107, -849, -1344, -1471, -1989, -932, -2127, -2334, -757, -756, -1485, -7324, -4916, -14177, -958, + -1488 + ], + [0, -2444, -5112, -3844, -3323, -4865], + [1, 3, 9096], + [0, 9097, 9098, 9099, 4], + [0, -2243, -9649], + [0, -633, -14178, -932, -1405, -1654, -1657, -8276, -12323, -2424], + [0, -2424, -2265], + [1, 3, 9101], + [0, 0, 9102, 9103, 5], + [ + 0, -8843, -11419, -14179, -357, -3037, -458, -2917, -652, -767, -14180, -928, -932, -1023, -1344, -1415, -14181, + -2884, -1730, -1971, -2384, -2410, -2531 + ], + [0, -4213, -1334, -1342, -1961, -2105, -9172, -9173, -2533, -5388], + [1, 3, 9105], + [0, 9106, 9107, 9108, 4], + [0, -4231, -14182, -9596, -1015, -1395, -14183, -5358], + [0, -14184, -5334, -4251, -3037, -652, -1942, -2094, -2100, -2384, -2399, -2410, -2541], + [0, -3272, -7644, -5398, -10280, -1838, -1958, -2083, -2093, -14185, -6233, -6231, -4132, -6408, -10919, -2427], + [1, 3, 9110], + [0, 9111, 14, 9112, 4], + [0, -14186], + [0, -13747, -6555, -6240, -6814, -3960, -14187, -5839, -12411, -9682], + [1, 3, 9114], + [0, 9115, 9116, 9117, 5], + [0, -4231, -7700, -5356], + [0, -4251, -3037, -652, -1618, -10922, -10923, -1942, -2094, -2100, -2384, -2399, -2410, -2541], + [ + 0, -9590, -14188, -2444, -3590, -2093, -14185, -2083, -10918, -9589, -14189, -14190, -1703, -6784, -1599, -3264, + -6597, -10919, -3272, -3966, -14191, -2487 + ], + [1, 3, 9119], + [0, 0, 222, 9120, 5], + [0, -13875, -11002, -7727, -2430, -1847, -11845, -7421, -2440, -5550, -6836], + [1, 3, 9122], + [0, 9123, 0, 9124, 8], + [0, -7304, -1081, -14192, -14193, -8578, -2062], + [0, -5408, -2432, -9506, -14194, -5409, -5827, -7347], + [1, 3, 9126], + [0, 9127, 9128, 9129, 6], + [0, -14195, -623, -668, -14196, -2177, -8418, -728, -6848, -1514, -1394], + [0, -2541, -519, -9982, -2269, -686, -14197], + [0, -1764, -10674, -11693, -9258, -14198, -7440, -7144, -687, -3551, -5897, -9318], + [1, 3, 9131], + [0, 0, 0, 9132, 4], + [ + 0, -9171, -2435, -14199, -14200, -14201, -14202, -14203, -14204, -14205, -14206, -14207, -14208, -14209, -14210, + -14211, -14212, -14213, -14214 + ], + [1, 3, 9134], + [0, 9135, 9136, 9137, 10], + [0, -1983, -1977], + [0, -515, -1788, -2568, -461, -1654, -932, -5834], + [0, -6747, -2435, -10433], + [1, 3, 9139], + [0, 0, 9140, 9141, 5], + [0, -739, -1654, -2198], + [0, -2435, -8396], + [1, 3, 9143], + [0, 9144, 9145, 48, 10], + [0, -1543, -1641, -2168], + [ + 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -767, -824, -825, -932, -940, -958, -1041, -1344, -1415, + -1534, -1623, -8913, -1771, -1942, -2251, -2501 + ], + [1, 3, 9147], + [0, 9148, 9149, 9150, 5], + [0, -6614, -9730], + [0, -509, -633, -652, -1654, -1939, -14215, -14216, -2416], + [0, -6984, -3215, -9171, -2435, -1838, -5101, -2265, -1985, -6231], + [1, 3, 9152], + [0, 9153, 9154, 9155, 9], + [0, -1069, -14217, -1641, -1983, -2400, -2426, -14218], + [ + 0, -2832, -14219, -7453, -14220, -8317, -14221, -3713, -3037, -14222, -4966, -14223, -3715, -8200, -9581, -3664, + -649, -767, -1351, -2987, -8065, -1971, -3727, -14224, -2325, -2386, -7457, -2410, -2469 + ], + [0, -2439, -1334, -14225, -9172, -9173, -2105, -1342, -2426, -4213], + [1, 3, 9157], + [0, 9158, 9159, 9160, 4], + [0, -10383], + [0, -1849], + [0, -2440, -11845, -13874, -10383, -11070, -7421, -7420, -1847, -6845, -3592, -5558, -3591, -14226], + [1, 3, 9162], + [0, 9163, 9164, 9165, 6], + [0, -1582, -2359], + [0, -509, -1654, -1939, -2105, -2177, -14227], + [0, -9733, -4865, -14228, -1819, -1838, -3215, -14229, -14230, -14231, -14232, -2440, -14233, -2442, -9318], + [1, 3, 9167], + [0, 0, 9168, 9169, 4], + [0, -756, -1405, -6186, -1991], + [0, -9791, -5835, -4112, -2443], + [1, 3, 9171], + [0, 9172, 9173, 260, 5], + [0, -1370, -7391, -14234, -14235, -7400], + [0, -468, -753, -14236, -1797, -1798, -2151, -2155, -2322], + [1, 3, 9175], + [0, 0, 183, 260, 8], + [1, 3, 9177], + [0, 0, 9178, 9179, 4], + [ + 0, -32, -86, -3307, -190, -3563, -719, -932, -940, -967, -1110, -1344, -1415, -1534, -2884, -1771, -1942, + -11013, -11014, -2251, -2410, -2411 + ], + [0, -2446, -7230, -11582, -14237], + [1, 3, 9181], + [0, 9182, 9183, 9184, 10], + [0, -8609, -834, -1496, -5037], + [0, -14238, -985, -11747, -13279], + [0, -507, -14239, -4043, -4045, -4004], + [1, 3, 9186], + [0, 0, 9187, 9188, 5], + [0, -2319, -1452], + [0, -2435, -3926, -7440, -7144, -5574], + [1, 3, 9190], + [0, 9191, 9192, 9193, 5], + [0, -7247, -14240, -5504, -10482], + [0, -7465, -664, -6774, -720, -796, -1344, -1405, -1650, -1654, -9075, -2125, -2174, -2210], + [0, -14241, -5890, -12665, -5889, -6908, -5887], + [1, 3, 9195], + [0, 0, 9196, 9197, 8], + [0, -4298, -4300], + [0, -1764, -5897, -6444, -3926], + [1, 3, 9199], + [0, 0, 9200, 9201, 4], + [0, -21, -23, -40, -43, -528, -535, -932, -934, -958, -1654, -1771, -1788, -2125, -2127, -2128, -11290, -2416], + [0, -2451, -3926, -5874, -8472, -7723, -14242, -14243, -507], + [1, 3, 9203], + [0, 9204, 9205, 9206, 11], + [0, -14244, -14245, -14246], + [ + 0, -3037, -4837, -5589, -3899, -14247, -4838, -786, -14248, -1449, -2410, -2466, -2469, -14249, -2476, -2483, + -14250, -14251, -14252, -14253 + ], + [0, -3160, -2476, -3944, -3162, -3100, -3095, -3098], + [1, 3, 9208], + [0, 0, 9209, 9210, 5], + [0, -1654, -932, -1405, -589, -2293, -585, -966, -958, -968, -943, -963, -974], + [0, -1334, -4616, -2453], + [1, 3, 9212], + [0, 9213, 9214, 7, 4], + [0, -2456], + [0, -2319, -1754], + [1, 3, 9216], + [0, 9217, 9218, 7, 6], + [ + 0, -5193, -928, -679, -1069, -14254, -14255, -14256, -14257, -14258, -14259, -14260, -14261, -14262, -14263, + -14264, -14265, -14266, -14267, -14268, -14269, -14270, -14271, -14272, -14273, -14274, -14275 + ], + [ + 0, -1681, -469, -502, -864, -985, -1371, -1816, -1805, -2466, -651, -668, -812, -999, -1623, -1971, -12508, + -13969, -2518, -669, -865, -1001, -1400, -2125, -2177, -2240, -2324, -2469, -680, -708, -1004, -1047, -1658, + -2379, -807, -1077, -1098, -1981, -1999, -2694, -367, -3851, -4966, -14276, -10697, -11705, -1645, -1878, -2369, + -11697, -12324, -481, -12971, -695, -1424, -1641, -1729, -2269, -2410, -3136, -3037, -512, -929, -14277, -8874, + -7982, -14278, -3269, -3198, -14279, -10755, -480, -511, -14280, -14281, -14282, -3199, -9941, -13839, -5977, + -3124, -12274, -11855, -3637, -14283, -13376, -10519, -14284, -4105, -3048, -11328, -1025, -14285, -1767, -7162, + -2991, -14286, -2992, -8566, -5363, -2946, -14287, -3713, -4201, -14288, -13184, -14289, -14290, -9750, -10046, + -14291, -5124, -14292, -14293, -2591, -11857, -14294, -3234, -14295, -14296, -14297, -11702, -14298, -14299, + -14300, -14301, -14302, -14303, -14304, -14305, -14306 + ], + [1, 3, 9220], + [0, 9221, 0, 9222, 4], + [0, -14307, -508, -13486], + [0, -6324, -8980, -14308, -12254, -12442, -3586], + [1, 3, 9224], + [0, 0, 9225, 7, 4], + [0, -1654, -1405, -2293], + [1, 3, 9227], + [0, 0, 9228, 9229, 4], + [ + 0, -23, -40, -86, -3307, -3326, -539, -664, -671, -708, -757, -14309, -784, -825, -932, -934, -958, -1344, + -1471, -1474, -1475, -3568, -1482, -1483, -1486, -1534, -1654, -1771, -1889, -1891, -14310, -1906, -1927, -7033, + -1978, -2127, -2281, -2282, -2284, -2416 + ], + [0, -6527, -14311, -2459, -14312, -3264, -775, -3214, -3577, -3578], + [1, 3, 9231], + [0, 9232, 9233, 9234, 5], + [0, -14313, -702, -2103, -14314], + [0, -1788, -1654, -932, -1001, -13729, -2062, -937, -966], + [0, -9614, -7422, -6656, -7421, -9330, -1847], + [1, 3, 9236], + [0, 9237, 9238, 9239, 4], + [0, -599, -2347], + [0, -2322, -2463], + [0, -2460, -7419, -5845, -640, -5827], + [1, 3, 9241], + [0, 9242, 9243, 9244, 11], + [0, -14315, -9092, -1119, -1351, -14316, -14317, -1759, -14318, -14319, -13729, -14320, -14321, -2460, -14322], + [0, -932, -937, -1001, -1654, -1788, -2062, -2125, -2210], + [0, -1168, -14323, -2460, -6656, -8801, -1076, -8027], + [1, 3, 9246], + [0, 9247, 9248, 9249, 9], + [0, -2460, -2347], + [0, -1243, -2322, -2462], + [0, -2460, -1168, -7419, -9975, -5827, -2265, -5554, -14324], + [1, 3, 9251], + [0, 185, 0, 9252, 4], + [0, -2460, -9455, -9466, -1168], + [1, 3, 9254], + [0, 9255, 9256, 9257, 5], + [0, -14325, -6324, -14326, -1109, -9977, -8104, -14327, -14328], + [0, -633, -1405, -9088, -1812, -14329, -12014, -2320, -2322, -2568], + [0, -9614, -5092, -9613, -14330, -834, -7460, -4865], + [1, 3, 9259], + [0, 9260, 9261, 261, 6], + [0, -4787, -2127, -928, -1889, -1864, -2654], + [ + 0, -2531, -653, -11071, -754, -990, -1651, -5042, -1805, -2162, -2213, -1852, -865, -5036, -1699, -1839, -2334, + -729, -12601, -679, -2923, -3027, -14331, -14332, -1863, -769, -929, -14333, -3751, -1588, -25, -4371, -866, + -989, -3572, -14334, -1906, -14335, -14336, -11751, -14337, -13397, -10046, -742, -4785, -1907, -7160, -4066, + -3195, -5322, -2134, -350, -6410, -7897, -3180, -14338, -7151 + ], + [1, 3, 9263], + [0, 9264, 9265, 9266, 4], + [0, -14341, -1026, -1077, -14342, -14343], + [0, -3617, -3048, -3037, -1004, -2391, -2410, -2466], + [ + 0, -2466, -3690, -14344, -14345, -14346, -14347, -1004, -14348, -3844, -14349, -9843, -14350, -14351, -3862, + -3816, -2146, -3445, -14352, -14353 + ], + [1, 3, 9268], + [0, 9269, 9270, 9271, 4], + [ + 0, -2476, -2466, -4245, -3788, -14354, -3726, -14244, -4817, -3559, -14355, -3558, -14356, -14357, -3661, -4837, + -14358, -4229, -14359 + ], + [ + 0, -1816, -2213, -812, -999, -1826, -3548, -1699, -2125, -2127, -2177, -2469, -928, -1871, -1966, -3728, -2653, + -5627, -2648, -679, -1077, -1098, -1646, -1942, -1977, -1582, -1639, -1863, -2654, -2410, -3037, -769, -1125, + -1534, -1600, -3198, -6447, -14360, -3801, -3735, -1851, -3048, -5686, -1570, -14361, -3246, -4036, -3425, + -1603, -2132, -13397, -7080, -1601, -4062, -13593, -14362, -14363, -4066, -14364, -1602, -6483, -14365, -3561, + -9458, -350, -1926, -14366, -3662, -14367, -14368, -740, -351, -14369, -14370, -14371 + ], + [0, -2466, -2476, -2468], + [1, 3, 9273], + [0, 9274, 9275, 9276, 8], + [ + 0, -5042, -2466, -1852, -6570, -3535, -1864, -2354, -2654, -6488, -1002, -14372, -1588, -13385, -13376, -13388, + -14373, -14335, -14374, -14375, -14376 + ], + [ + 0, -2531, -653, -1640, -14377, -1449, -7142, -1966, -13380, -1278, -14378, -462, -3037, -4647, -426, -14334, + -3735, -14379, -8523, -14380, -5038, -357, -4048, -3180, -3626, -4047 + ], + [0, -2466, -2469, -4004, -1415], + [1, 3, 9278], + [0, 9279, 9280, 9281, 5], + [0, -668, -1548, -1376, -1646, -2528, -1365, -1575, -2269, -556, -14381], + [ + 0, -2541, -1168, -525, -1654, -1666, -2198, -14382, -2105, -615, -527, -1174, -1197, -14383, -14384, -1182, + -14385, -559 + ], + [0, -3690, -687, -12694, -5550, -4039, -3161, -3994, -9668, -3957, -719, -13831, -1965, -1376], + [1, 3, 9283], + [0, 9284, 0, 9285, 4], + [0, -834, -14386, -1107], + [0, -3634, -4679, -4004, -14387], + [1, 3, 9287], + [0, 9288, 9289, 9290, 6], + [ + 0, -2359, -1107, -1640, -2059, -9498, -668, -1526, -2555, -14388, -2177, -2536, -674, -2436, -719, -1645, -1600, + -14389, -1315, -14390, -14092 + ], + [ + 0, -1344, -1654, -2379, -1942, -3628, -2410, -3036, -6325, -3037, -14391, -14392, -1771, -3621, -8497, -1952, + -3199, -11343, -14393, -86, -14394, -8566, -2174, -3661, -2234, -5361, -3307 + ], + [0, -11859, -2472, -5195], + [1, 3, 9292], + [0, 0, 37, 7, 4], + [1, 3, 9294], + [0, 9295, 9296, 7, 4], + [0, -479, -702, -994, -1022, -1107, -1351, -1391, -2231, -2410, -2460, -2536, -2550], + [ + 0, -9478, -14395, -9457, -3036, -14396, -8566, -3621, -3037, -12993, -9476, -7837, -3046, -11343, -3041, -427, + -428, -932, -1654, -2125 + ], + [1, 3, 9298], + [0, 0, 9299, 7, 9], + [0, -1654, -1650, -2501, -2410, -3037, -2503, -3621, -14397, -748, -262], + [1, 3, 9301], + [0, 9302, 0, 9303, 6], + [0, -14244, -14398, -9631, -7438, -3250], + [0, -2476], + [1, 3, 9305], + [0, 0, 9306, 9307, 5], + [ + 0, -23, -26, -33, -3077, -40, -3035, -3621, -3037, -428, -532, -534, -7890, -664, -778, -932, -14399, -1654, + -2080, -2125, -2127, -2128, -2138, -2341, -2376, -2410, -2415, -2476, -2481, -2485, -2816, -2486, -2501, -2503 + ], + [0, -2476, -7711, -525, -2410], + [1, 3, 9309], + [0, 9310, 9311, 7, 9], + [0, -812, -982, -983, -986, -8141, -2177], + [ + 0, -23, -32, -3332, -14400, -6484, -3244, -190, -3198, -426, -3037, -3199, -427, -428, -3664, -3665, -932, + -8230, -961, -965, -8287, -967, -978, -7356, -1942, -2379, -2892, -2410, -2466, -2469 + ], + [1, 3, 9313], + [0, 0, 9314, 9315, 5], + [0, -639, -1415, -2476], + [0, -2476, -12517, -11492], + [1, 3, 9317], + [0, 9318, 9319, 9320, 6], + [0, -14401, -14357, -14402], + [0, -14403], + [0, -1348, -9780, -14404, -3862, -2476, -3527], + [1, 3, 9322], + [0, 9323, 9324, 7, 4], + [0, -668, -1284, -12982], + [ + 0, -23, -40, -14405, -426, -12643, -3136, -4647, -14406, -14407, -534, -14408, -740, -778, -1041, -1331, -1415, + -1449, -1534, -14409, -1623, -1643, -7034, -7846, -1908, -1942, -1974, -14410, -2231, -2275, -2286, -2287, + -2289, -2375, -2376, -2410, -2437, -2476, -2480, -2501, -2503, -2505, -2508, -8160 + ], + [1, 3, 9326], + [0, 0, 9327, 9328, 4], + [0, -3136, -3037, -1415, -2080, -2127, -2375, -2410, -2476, -2477], + [0, -2476, -2410, -11313], + [1, 3, 9330], + [0, 9331, 9332, 7, 5], + [ + 0, -3194, -14411, -14357, -14412, -679, -1460, -14378, -1588, -1651, -14413, -1852, -1864, -6569, -2654, -2981, + -14414, -2548 + ], + [ + 0, -47, -14415, -3983, -350, -351, -3561, -3266, -12959, -14416, -8523, -8200, -4837, -7438, -14417, -3250, + -4838, -10363, -14418, -731, -865, -14419, -7595, -1278, -1719, -14420, -2851, -2125, -2127, -2142, -2892, + -2391, -2466, -2476 + ], + [1, 3, 9334], + [0, 9335, 9336, 7, 9], + [0, -1284, -1543], + [0, -527, -533, -549, -740, -1415], + [1, 3, 9338], + [0, 9339, 0, 9340, 4], + [0, -14421, -1297], + [0, -2476, -3116], + [1, 3, 9342], + [0, 262, 9343, 7, 8], + [ + 0, -2476, -1415, -668, -999, -6828, -932, -2127, -2177, -1004, -2501, -910, -1077, -767, -1978, -2468, -533, + -778, -2410, -2481, -23, -3037, -534, -14422, -2484, -40, -7438, -2082, -6429, -2140, -2253, -3561, -14399, + -2504, -2506, -350, -740, -351 + ], + [1, 3, 9345], + [0, 9346, 0, 9347, 5], + [0, -14423], + [0, -2444, -1819, -14424, -1076, -2487, -14425], + [1, 3, 9349], + [0, 9350, 9351, 7, 4], + [0, -8566, -7955, -8891, -1645], + [0, -3136, -3037, -1107, -1415, -1623, -2125, -2375, -2410], + [1, 3, 9353], + [0, 220, 9354, 9355, 4], + [0, -86, -3307, -633, -720, -796, -1344, -1415, -2416], + [0, -2489, -4038, -2006, -1384], + [1, 3, 9357], + [0, 9358, 0, 9359, 8], + [0, -14426, -1646], + [0, -2444, -3590, -1076, -6999], + [1, 3, 9361], + [0, 9362, 9363, 9364, 6], + [0, -9501, -633, -679, -6369, -14427, -2347, -2546], + [0, -627, -1650, -2239, -2322, -2416, -14428], + [0, -633, -10362, -2490, -4161, -7641, -4865], + [1, 3, 9366], + [0, 9367, 123, 9368, 4], + [0, -13012, -10837, -510, -14429, -13017, -14430, -13025, -13026, -14431, -14432], + [0, -13039, -1818, -1691, -6321, -2071, -1671, -14433, -2492, -2157, -13042], + [1, 3, 9370], + [0, 9371, 9372, 9373, 8], + [0, -501, -510, -1548, -1650, -1980, -2105, -14434], + [ + 0, -14435, -664, -665, -714, -7743, -1004, -1022, -1168, -14436, -1197, -1212, -1231, -1296, -1336, -13334, + -1405, -1654, -14437, -1722, -14438, -2150, -14439, -14440, -14441, -2425, -2446, -2550 + ], + [0, -3634, -4864, -11468, -12350, -11467], + [1, 3, 9375], + [0, 9376, 9377, 9378, 4], + [ + 0, -14442, -14443, -14444, -14445, -14446, -14447, -14448, -14449, -14450, -14451, -14452, -14453, -14454, + -14455, -14456, -14457, -14458 + ], + [ + 0, -14459, -1415, -932, -14460, -4271, -2375, -1942, -589, -2410, -3136, -1422, -3268, -14461, -958, -8378, + -940, -14462, -428, -14463, -427 + ], + [0, -14464, -7485, -3816], + [1, 3, 9380], + [0, 9381, 194, 9382, 8], + [0, -14465, -14466, -597, -636, -14467, -14468, -14469, -14470, -14471, -14472, -2550], + [0, -2494, -3673, -687, -14473, -4270], + [1, 3, 9384], + [0, 9385, 9386, 7, 11], + [ + 0, -8231, -426, -4049, -14474, -14475, -14476, -461, -14477, -635, -14478, -909, -14335, -982, -997, -8610, + -1119, -11677, -8562, -1641, -9548, -2168, -2321, -2335, -12982, -2510 + ], + [ + 0, -23, -41, -50, -13541, -14479, -8608, -4035, -3136, -3713, -14480, -3037, -14481, -14482, -534, -14483, + -14484, -711, -753, -774, -778, -807, -922, -3068, -932, -6929, -1041, -1067, -1110, -14485, -1322, -1344, + -1405, -1415, -8950, -1417, -1418, -1421, -1424, -1455, -1460, -1521, -1522, -1534, -1548, -1549, -1623, -14486, + -1643, -8913, -1733, -1788, -1806, -8436, -1942, -1950, -1974, -9720, -2000, -2006, -2019, -14487, -2090, -4242, + -2095, -2098, -2101, -2125, -5508, -2205, -2269, -2275, -2334, -2344, -2354, -2362, -2376, -2410, -2427, -2437, + -14488, -14489, -2503, -14490, -2549 + ], + [1, 3, 9388], + [0, 9389, 9390, 9391, 10], + [0, -2531, -2213, -461, -1810, -811, -719, -462, -1863, -1321, -930, -13410], + [ + 0, -824, -664, -1168, -1415, -1652, -932, -1111, -1940, -753, -784, -1889, -2501, -1044, -1978, -682, -778, + -1174, -1653, -2437, -23, -667, -2503, -518, -528, -534, -1566, -2275, -44, -1565, -14491, -1908, -9422, -40, + -14492, -2505, -41, -540, -969, -14493, -2335, -14494, -14495, -38, -33, -3376 + ], + [0, -2501, -4161, -14496, -3209, -8799, -9845, -14497, -12942, -14498, -7067], + [1, 3, 9393], + [0, 9394, 9395, 9396, 10], + [0, -914, -2068, -713, -719, -1381, -769, -1363, -2508, -14499, -5594, -11676, -13410, -14500], + [0, -14501], + [0, -2501, -687, -3108, -3551, -7882, -3578], + [1, 3, 9398], + [0, 9399, 9400, 9401, 9], + [0, -1623, -713, -1641, -1800, -1997, -2168], + [ + 0, -1501, -1313, -1415, -999, -1344, -774, -932, -3122, -729, -825, -1004, -1030, -1110, -2501, -1942, -767, + -823, -2293, -21, -190, -204, -533, -2410, -23, -3037, -1041, -1534, -1771, -1045, -5039, -3617, -86, -965, + -3560, -14502, -2251, -40, -4835, -3713, -14503, -959, -960, -958, -6929, -978, -940, -967, -3748, -3307 + ], + [0, -2501, -5401, -3113], + [1, 3, 9403], + [0, 9404, 9405, 7, 9], + [ + 0, -2531, -1805, -12860, -13318, -1004, -13074, -679, -4204, -713, -11121, -3727, -724, -1119, -2186, -2168, + -14504, -13386, -14505, -3617, -14506, -14507, -14508, -14509, -1338, -2504, -731, -12962, -14510 + ], + [ + 0, -1313, -1415, -1521, -461, -999, -1344, -14511, -1623, -774, -932, -1610, -2125, -729, -753, -2501, -1942, + -1978, -2293, -21, -533, -778, -1336, -2410, -23, -3037, -1522, -1534, -1771, -2503, -534, -2275, -2230, -4356, + -2508, -44, -86, -965, -2062, -2817, -3560, -2251, -40, -4835, -8477, -2411, -3732, -4035, -959, -960, -1331, + -5474, -32, -14512, -7716, -958, -6929, -940, -1419, -38, -3307, -5585 + ], + [1, 3, 9407], + [0, 9408, 9409, 9410, 5], + [0, -2269, -1320, -14509], + [0, -1788, -1654, -2210, -932, -1004, -2501, -1942, -2293, -967, -2504], + [0, -2501, -6211, -12517, -3551, -14513, -14514, -5401, -1004], + [1, 3, 9412], + [0, 9413, 9414, 7, 5], + [0, -2321, -2510], + [ + 0, -366, -3037, -3046, -14515, -3750, -748, -824, -932, -14516, -948, -1041, -1344, -1534, -1626, -1939, -1942, + -14517, -2006, -2275, -2387, -2410, -2469, -2501, -2508 + ], + [1, 3, 9416], + [0, 9417, 9418, 9419, 5], + [0, -1055, -9087, -3415], + [0, -1344, -2387, -14518, -2501, -1942, -2410, -14519, -426], + [0, -2501, -1631], + [1, 3, 9421], + [0, 0, 9422, 9423, 5], + [0, -664, -932, -958, -1654, -1658, -1705, -2501], + [0, -2501, -5757, -3966, -4161, -14520], + [1, 3, 9425], + [0, 0, 9426, 9427, 5], + [ + 0, -1415, -932, -1110, -2501, -1405, -1942, -756, -190, -2231, -2410, -3136, -965, -3560, -959, -960, -12916, + -958, -6929, -978, -940, -967, -3748 + ], + [0, -2501, -2231], + [1, 3, 9429], + [0, 9430, 0, 9431, 4], + [0, -1119, -769, -2359, -1860], + [0, -9711, -11891], + [1, 3, 9433], + [0, 9434, 9435, 9436, 8], + [0, -642, -812, -922, -14521, -13490, -14522], + [0, -641, -1168, -1224, -1453, -1452, -2322], + [0, -2512, -6224, -9005, -14523, -14524, -5737, -14525, -8841, -3844, -3323], + [1, 3, 9438], + [0, 9439, 9440, 9441, 5], + [ + 0, -14526, -14527, -14528, -14529, -14530, -14531, -14532, -14533, -14534, -14535, -14536, -14537, -812, -929, + -14538, -14539, -14540, -14541, -14542, -14543, -14544, -1640, -1801, -14545, -1976, -10570, -14546, -1997, + -10576, -13357, -14547, -13729, -14548, -14549, -14550, -14551, -14552, -14553, -14554 + ], + [ + 0, -23, -32, -3367, -40, -14555, -468, -14556, -10575, -14557, -571, -14558, -640, -14559, -771, -14560, -932, + -943, -958, -965, -968, -1045, -14561, -1834, -14562, -1985, -2151, -2174, -2187, -6390, -8573, -2320, -2322, + -2335, -6391, -2501, -2503, -14563 + ], + [0, -14564, -14565, -867, -14566, -14567, -14568, -14569, -9292, -14570, -14571, -14572, -6471, -14573, -2513], + [1, 3, 9443], + [0, 9444, 9445, 9446, 10], + [0, -596, -1696], + [0, -11836, -2319], + [0, -3708, -14574, -14575], + [1, 3, 9448], + [0, 9449, 9450, 7, 5], + [0, -1004, -1758, -2424], + [0, -710], + [1, 3, 9452], + [0, 0, 9453, 7, 4], + [ + 0, -664, -1471, -1654, -932, -2127, -1942, -1474, -1482, -516, -1962, -14576, -1475, -1477, -1487, -1479, -5993, + -8365 + ], + [1, 3, 9455], + [0, 0, 9456, 9457, 6], + [ + 0, -2493, -1107, -14577, -3691, -1460, -14578, -1452, -1650, -14579, -1813, -589, -14580, -2416, -633, -1963, + -14439 + ], + [0, -14581, -14582, -6306, -1961, -5923, -6307, -6308, -2517, -510, -6235, -11153], + [1, 3, 9459], + [0, 9460, 29, 7, 5], + [0, -14583], + [1, 3, 9462], + [0, 0, 9463, 9464, 10], + [0, -2778, -1446, -1654, -1666, -14584, -14585], + [0, -7084, -11722], + [1, 3, 9466], + [0, 9467, 9468, 9469, 8], + [0, -14586, -5758, -510, -1399, -14587, -14588, -2062, -7967, -2249, -8879, -2522], + [0, -21, -23, -40, -14589, -3037, -14590, -509, -14591, -932, -14592, -1415, -2125, -2240, -13361, -2347, -14593], + [0, -2520, -3444, -5545, -11989, -8948, -648, -1867, -1577, -3674, -4055, -5827], + [1, 3, 9471], + [0, 9472, 9473, 9474, 6], + [0, -14594, -1793, -8879, -2522], + [0, -14595, -14596, -664, -932, -966, -1654, -2125, -3708], + [0, -2520, -14597, -14598, -14599], + [1, 3, 9476], + [0, 9477, 9478, 9479, 4], + [0, -14587, -2062, -8879], + [0, -3037, -509, -526, -558, -821, -932, -14589, -1654, -1788, -2125, -14593], + [0, -2520, -3443, -14600], + [1, 3, 9481], + [0, 9482, 9483, 9484, 4], + [0, -14601, -1107, -1548, -14602, -2347, -14603], + [0, -664, -1077, -1405], + [0, -622, -5897, -4633, -9405, -11729, -3015], + [1, 3, 9486], + [0, 0, 88, 9487, 11], + [0, -14604, -14605, -6722, -14606, -14607, -14608, -14609, -5554, -10781, -2524, -12439, -4001], + [1, 3, 9489], + [0, 0, 31, 9490, 8], + [0, -10781, -4001, -11315, -3276, -6787], + [1, 3, 9492], + [0, 9493, 9494, 9495, 9], + [0, -7141, -1948, -4701, -2510, -14610], + [0, -3037, -3046], + [0, -14611, -14612, -2501, -14613, -6491, -14614, -14615, -14616], + [1, 3, 9497], + [0, 9498, 9499, 9500, 4], + [0, -482, -2267, -2269], + [0, -519, -668, -756, -3607, -1788, -2384, -2541], + [ + 0, -4001, -14604, -2525, -14617, -14618, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -2265, -3975, + -5559, -5538, -5549, -5513, -5550, -2547, -1573, -5545, -3958, -5554 + ], + [1, 3, 9502], + [0, 9503, 29, 9504, 6], + [0, -8143, -2202], + [0, -14619, -14620], + [1, 3, 9506], + [0, 0, 9507, 9508, 4], + [0, -589, -642, -932, -940, -967, -1110, -1654, -1788, -1942, -13490], + [0, -14621, -14622, -14525, -14623, -14624, -3509], + [1, 3, 9510], + [0, 9511, 9512, 9513, 9], + [0, -7334, -615, -668, -674, -812, -14625, -1400, -1403, -1792, -3633, -14626, -14627], + [0, -756, -1405, -1654, -1657, -6810, -2125, -2210, -2250], + [0, -3690, -674, -14628, -6596, -7534, -3578], + [1, 3, 9515], + [0, 9516, 9517, 9518, 8], + [0, -1109, -14629, -14630, -2546], + [0, -1065, -1939, -2320, -2322], + [0, -2533, -1334, -2540, -3120, -633], + [1, 3, 9520], + [0, 9521, 9522, 9523, 6], + [0, -8696, -14631, -14632, -10781, -14633, -14634, -14635], + [ + 0, -7746, -461, -1449, -1654, -2210, -932, -14636, -600, -879, -719, -2410, -3037, -14637, -14638, -957, -7894, + -14639 + ], + [0, -11592, -11593, -2534, -14640, -8787, -8713, -788, -14641, -14642, -14643, -10780, -9133], + [1, 3, 9525], + [0, 9526, 9527, 9528, 4], + [0, -2165], + [ + 0, -527, -534, -558, -11550, -632, -14644, -14645, -13841, -708, -756, -767, -932, -14646, -1405, -1412, -1415, + -1417, -14647, -1753, -1771, -1955, -2410, -14648, -2490, -2501 + ], + [ + 0, -14649, -6597, -3756, -4182, -4055, -14650, -14651, -14652, -14653, -14654, -8531, -8532, -2536, -2537, + -6408, -8530, -14655, -9307, -5845, -14656, -14657, -14658, -1838, -3215, -6747 + ], + [1, 3, 9530], + [0, 9531, 9532, 9533, 8], + [0, -2165, -2538], + [0, -756], + [0, -6597, -4055], + [1, 3, 9535], + [0, 9536, 219, 7, 4], + [0, -1309, -1435, -14659], + [1, 3, 9538], + [0, 0, 192, 9539, 4], + [0, -6597, -2538], + [1, 3, 9541], + [0, 0, 9542, 9543, 4], + [0, -1415, -2555, -14660, -932, -1753, -14661, -1942, -1100, -1771, -953, -7055, -940, -967], + [0, -5387, -5092, -6597, -3215, -3214, -14662, -14663], + [1, 3, 9545], + [0, 0, 0, 9546, 4], + [0, -2533, -5998], + [1, 3, 9548], + [0, 9549, 9550, 9551, 4], + [ + 0, -1630, -506, -932, -1111, -1110, -1942, -1099, -2400, -1639, -755, -8275, -1849, -1101, -965, -11813, -950, + -2411, -14664, -968, -978, -5918, -940, -9869, -8339, -967, -3686, -3748, -428, -14014, -9486, -8230 + ], + [0, -1763, -519, -999, -1344, -815, -5917, -1534, -3330, -86, -6630, -4036, -1768, -1945, -3307, -7357], + [ + 0, -5732, -687, -2541, -8193, -8196, -8197, -707, -8169, -5553, -7148, -8170, -1452, -8171, -932, -5874, -8172, + -2250, -8173, -7440, -7144, -8174, -7840, -8175, -5493, -3214, -2410 + ], + [1, 3, 9553], + [0, 0, 9554, 9555, 4], + [0, -4733, -920, -14665, -1654], + [0, -2542, -6597], + [1, 3, 9557], + [0, 9558, 9559, 9560, 10], + [0, -3345], + [0, -21, -23, -14666, -38, -40, -14667, -535, -14668, -14669, -633, -932, -1412, -1451, -1788, -14670], + [0, -5569, -5570, -14671, -4112], + [1, 3, 9562], + [0, 9563, 9564, 9565, 4], + [0, -719, -2858], + [0, -1788, -812, -1654, -932, -756, -2416, -633], + [0, -8472, -2544, -7723, -14242, -3962, -7107, -5559, -6422, -7724, -2451, -3264, -6138, -14672], + [1, 3, 9567], + [0, 0, 9568, 9569, 4], + [0, -14673, -469, -1872, -2153, -2535], + [0, -14674, -14675, -14676, -14677, -14678, -4125, -14679, -3552], + [1, 3, 9571], + [0, 0, 31, 9572, 10], + [0, -1015, -1631, -6792, -6696, -7208, -5839], + [1, 3, 9574], + [0, 0, 9575, 9576, 5], + [ + 0, -3983, -3035, -3198, -14680, -3617, -14681, -3036, -4647, -3621, -3037, -14682, -3046, -4204, -427, -428, + -664, -767, -821, -932, -960, -1004, -11616, -1107, -1449, -1654, -1689, -1741, -1788, -2233, -2234, -2376, + -2410, -2443, -2501, -2503, -2531, -14683 + ], + [0, -687, -3958, -4000, -11564, -5550, -8905, -3770, -14684, -3974, -3975, -5561, -13861, -2547], + [1, 3, 9578], + [0, 0, 9579, 9580, 8], + [ + 0, -1415, -2387, -932, -2127, -1942, -190, -533, -1023, -2410, -23, -3136, -3037, -1426, -40, -2411, -3326, + -3561, -940, -3267, -14685, -3412 + ], + [0, -14686, -3215, -3270], + [1, 3, 9582], + [0, 9583, 9584, 9585, 10], + [0, -1107, -503], + [0, -589, -6398, -1414], + [0, -2548, -4055, -14687, -14688], + [1, 3, 9587], + [0, 9588, 9589, 235, 5], + [0, -701, -10415, -5505, -2267, -10751, -2551], + [ + 0, -32, -42, -3035, -3621, -3037, -427, -14689, -652, -664, -668, -10480, -767, -769, -932, -967, -1166, -11831, + -1654, -2125, -2410, -2518, -14690 + ], + [1, 3, 9591], + [0, 0, 9592, 9593, 4], + [ + 0, -32, -42, -3035, -3621, -3037, -427, -428, -652, -664, -767, -932, -1166, -1654, -1978, -2125, -2184, -2253, + -2410 + ], + [0, -6748, -3215, -2550, -3957, -687, -6747, -5829, -4377, -6748], + [1, 3, 9595], + [0, 9596, 9597, 7, 4], + [ + 0, -14691, -567, -651, -656, -668, -10506, -719, -14692, -812, -10659, -834, -1105, -1371, -1384, -5894, -1526, + -14693, -1645, -1650, -1728, -1733, -1796, -7772, -2059, -14694, -2105, -14695, -2125, -14696, -2177, -2270, + -2323, -2325, -2441, -10523 + ], + [ + 0, -527, -528, -533, -534, -6085, -555, -559, -14697, -14698, -560, -562, -572, -932, -14699, -7748, -14700, + -951, -14701, -956, -14702, -969, -1059, -1168, -1174, -1232, -1237, -1266, -1268, -1415, -1455, -1661, -2330, + -2501 + ], + [1, 3, 9599], + [0, 0, 0, 9600, 8], + [0, -2552, -2554, -3590, -5550, -1764, -13499], + [1, 3, 9602], + [0, 9603, 9604, 9605, 11], + [0, -5822, -11280], + [0, -599], + [0, -2432, -5408, -5827, -5409, -6656], + [1, 3, 9607], + [0, 9608, 9609, 263, 5], + [ + 0, -14703, -14704, -14705, -14706, -14707, -506, -668, -719, -812, -999, -14708, -1111, -14709, -8802, -1549, + -14710, -14711, -2177, -2218, -2430, -14712 + ], + [ + 0, -3198, -3164, -3037, -3199, -14713, -652, -757, -932, -14714, -1077, -1446, -1942, -1945, -2125, -2210, + -14715, -2269, -2410, -9011, -9010 + ], + [1, 3, 9611], + [0, 9612, 9613, 263, 6], + [0, -668, -812, -999, -2177, -1646, -1549, -9444, -2205, -2343, -1456, -14711, -1514, -14716, -3609, -3164, -14705], + [ + 0, -888, -1446, -2210, -2469, -757, -1376, -1942, -2400, -4370, -2410, -9010, -3198, -4372, -3199, -9011, + -14713, -5686, -14703, -12968, -14706, -4049, -2556, -3664, -1945 + ], + [1, 3, 9615], + [0, 0, 14, 9616, 4], + [0, -2558, -14717, -14718, -687, -1965, -5874, -3962, -3953, -14719, -14720, -1838, -14721], + [1, 3, 9618], + [0, 9619, 9620, 9621, 11], + [ + 0, -1630, -1805, -668, -2562, -1548, -1040, -10325, -14722, -14723, -9764, -14724, -14725, -728, -769, -14726, + -10388, -5895, -14707, -6715, -14727, -14703, -14728, -3609, -2433, -14729, -2556 + ], + [0, -652, -2541, -1722, -2210, -14714, -1110, -756, -14730], + [0, -5732, -687, -3577, -3113, -7646, -7641, -3578, -3673, -3970, -9471, -3976, -3262, -3960, -3994, -3871], + [1, 3, 9623], + [0, 0, 9624, 9625, 4], + [0, -14731, -479, -519, -668, -689, -713, -1496, -10962, -1863, -2384, -2541], + [ + 0, -712, -5535, -714, -3974, -4000, -687, -2265, -5514, -5553, -3770, -3975, -5538, -5550, -2547, -1573, -5545, + -3958, -5554 + ], + [1, 3, 9627], + [0, 9628, 101, 9629, 6], + [0, -719, -1376], + [0, -2561, -3690, -3844, -3445], + [1, 3, 9631], + [0, 9632, 9633, 9634, 4], + [0, -1630, -668, -688, -2528, -481, -2269, -482, -2267, -14732], + [0, -2541, -1654], + [0, -5732, -687, -3976, -2559, -14733, -14734, -6335, -12665, -5514], + [1, 3, 9636], + [0, 218, 9637, 9638, 5], + [0, -2198, -2177, -1654], + [0, -14735, -2563, -14736, -14737, -14738, -5269, -14739, -6249], + [1, 3, 9640], + [0, 0, 0, 9641, 11], + [0, -2410, -4058, -3926, -8038, -8910], + [1, 3, 9643], + [0, 9644, 9645, 9646, 6], + [0, -523, -1004, -1851, -2564], + [ + 0, -3731, -3035, -4269, -3732, -14740, -3617, -14741, -3621, -14742, -617, -664, -665, -720, -724, -744, -796, + -932, -14743, -1380, -1654, -1676, -1764, -1942, -2251, -2379, -2410 + ], + [0, -2564, -1004, -3690, -14744, -14745, -3445], + [1, 3, 9648], + [0, 9649, 9650, 9651, 10], + [0, -567, -615, -812, -13317, -1351, -1449, -1548, -1640, -1681, -2105, -2364, -2531], + [ + 0, -526, -528, -555, -558, -617, -744, -824, -932, -1004, -1168, -1174, -1197, -11777, -1235, -1252, -1266, + -1654, -1676, -1687, -12720, -2111 + ], + [ + 0, -4004, -3636, -3634, -9249, -4679, -4683, -14387, -11878, -4865, -3264, -5177, -5092, -775, -3214, -4868, + -5998, -10640, -14746 + ], + [1, 3, 9653], + [0, 0, 9654, 7, 4], + [ + 0, -2934, -2953, -14747, -9705, -3037, -14748, -615, -10877, -1419, -1421, -1415, -1654, -1660, -1412, -2234, + -1413, -10034, -2153, -2314, -2387, -2469 + ], + [1, 3, 9656], + [0, 9657, 9658, 9659, 8], + [ + 0, -14749, -7334, -633, -8958, -14750, -714, -719, -724, -742, -812, -1004, -14751, -5456, -14752, -5457, -1296, + -1304, -1336, -5458, -14753, -5459, -1548, -1810, -1820, -14754, -2194, -14755, -7222, -2291, -14756, -8573, + -2491, -2493, -2546, -2549, -14757 + ], + [0, -465, -14758, -14759, -1654, -1860, -2322, -2347, -14760], + [0, -2568, -3634, -4865, -1989, -1654, -5471], + [1, 3, 9661], + [0, 9662, 40, 9663, 5], + [0, -293, -295, -297, -14761, -832, -2177, -2369, -2387], + [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -4339, -4340, -4343, -4347], + [1, 3, 9665], + [0, 9666, 40, 164, 6], + [0, -668, -2387, -297, -2177, -1110, -293, -7356, -429, -14761, -8167, -5201], + [1, 3, 9668], + [0, 9669, 40, 9670, 4], + [0, -2387, -297, -2177, -1427, -1645, -293, -1863, -4023, -1426, -2551, -4018, -11751, -4019, -1352, -14761], + [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -14762, -4340, -4347], + [1, 3, 9672], + [0, 9673, 9674, 9675, 9], + [0, -2387, -297, -2177, -293, -295, -2569, -14761], + [0, -1787, -2257], + [0, -4333, -4334, -4335, -14763, -4339, -4340, -4343, -4347], + [1, 3, 9677], + [0, 9678, 9679, 9680, 11], + [0, -14764, -14765, -2387], + [0, -14766, -14767, -4745, -2344], + [0, -14768, -2006, -14769, -14770, -5176, -9547, -7581, -12543, -14771, -14772, -14773], + [1, 3, 9682], + [0, 9683, 9684, 9685, 11], + [0, -14774, -2634, -2006, -2019, -14775, -2170, -14776], + [0, -3037, -3040, -3052, -932, -10813, -1889, -2318, -2410], + [0, -5375, -770, -13055, -5375, -3634, -8576, -13056, -3551, -13057, -13058, -5376, -13059, -11152, -5150], + [1, 3, 9687], + [0, 9688, 0, 9689, 4], + [0, -786, -1967, -44, -3772, -3773, -3765], + [0, -2006, -3159, -4217, -906], + [1, 3, 9691], + [0, 9692, 190, 9693, 11], + [0, -6789, -6790, -14777], + [0, -3214, -1446, -1838, -10855, -856], + [1, 3, 9695], + [0, 9696, 9697, 264, 4], + [0, -44, -3345], + [0, -3136, -1415], + [1, 3, 9699], + [0, 9700, 9701, 9702, 4], + [0, -44, -14778, -1967, -2029, -2387], + [ + 0, -3192, -6093, -3394, -3794, -2685, -14779, -8471, -261, -3326, -350, -405, -406, -407, -14780, -409, -410, + -3136, -3140, -3040, -427, -428, -3766, -14781, -14782, -639, -757, -767, -795, -932, -3071, -969, -1059, + -14783, -14784, -5111, -8158, -1771, -1940, -4130, -2006, -2019, -2029, -2034, -2052, -2184, -2253, -2410 + ], + [0, -14785, -2006, -6701, -14786, -14787, -3823, -6750, -12605, -14788, -4666, -14789, -12606, -14790], + [1, 3, 9704], + [0, 90, 0, 9705, 9], + [ + 0, -4665, -4666, -5248, -10111, -775, -5564, -14791, -3962, -3214, -3756, -14792, -14793, -12898, -14794, + -14795, -1889, -3583, -14796, -14797, -6750, -12123, -14798, -2363, -14799 + ], + [1, 3, 9707], + [0, 9708, 9709, 9710, 9], + [0, -2857, -14800, -14801, -482, -14802, -1460, -2400, -14803], + [0, -14804, -3311, -3312, -14805, -14806, -14807, -2410], + [0, -14808, -4187, -2444, -3966, -4865, -3445, -3100, -14809, -14810], + [1, 3, 9712], + [0, 0, 0, 9713, 8], + [0, -3276, -7148, -14811, -7485, -4165, -4182, -14812, -14813, -14814, -7198, -14815], + [1, 3, 9715], + [0, 9716, 9717, 264, 5], + [ + 0, -23, -12490, -44, -3345, -14816, -14817, -14818, -14819, -2577, -14820, -14821, -14822, -160, -14823, -2695, + -14824, -4785, -14825, -2699, -366, -3735, -9947, -14826, -440, -14827, -518, -534, -14828, -5323, -635, -668, + -719, -753, -778, -779, -865, -866, -1077, -1107, -1122, -14829, -1123, -1331, -1455, -1469, -1548, -1643, + -1666, -14830, -1729, -1805, -1889, -1896, -1897, -1906, -1908, -12060, -1942, -1966, -6387, -2015, -2041, + -2144, -5977, -2193, -2195, -2275, -14831, -2335, -14832, -2435, -2466, -11710, -2501, -2502, -2505, -5628 + ], + [0, -14833, -3758, -3048, -3044, -14834, -4201, -6630, -13186, -5129, -1623, -1683, -1978, -2125], + [1, 3, 9719], + [0, 34, 9720, 9721, 5], + [ + 0, -234, -350, -4062, -351, -3561, -3043, -3136, -3040, -427, -428, -3807, -748, -915, -932, -940, -958, -967, + -969, -1415, -1419, -1449, -1788, -1942, -2006, -2019, -2125, -2127, -2130, -4063, -4064, -2142, -2144, -2233, + -2375, -2376, -2379, -2387, -2402, -2501, -2503, -2505, -238, -240 + ], + [0, -9975, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], + [1, 3, 9723], + [0, 34, 9724, 9725, 4], + [ + 0, -23, -40, -42, -4066, -3136, -3037, -427, -428, -14835, -14836, -14837, -441, -4838, -5593, -753, -767, -932, + -940, -958, -14838, -980, -1415, -1419, -1942, -2125, -2127, -2128, -2130, -2142, -2144, -14839, -2375, -2387, + -2402, -2410, -2476, -238 + ], + [ + 0, -2476, -3944, -14840, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, + -4060 + ], + [1, 3, 9727], + [0, 34, 9728, 9729, 8], + [ + 0, -23, -40, -42, -3035, -3136, -3621, -3037, -427, -428, -14835, -14836, -14841, -14837, -441, -4838, -5593, + -664, -767, -932, -940, -958, -14838, -980, -1771, -1942, -2125, -2127, -2128, -2130, -2142, -2144, -14839, + -14842, -2387, -2402, -2410, -2476, -238, -2584 + ], + [ + 0, -2476, -3944, -14840, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, + -4060, -5177, -775, -2316 + ], + [1, 3, 9731], + [0, 9732, 9733, 9734, 5], + [0, -5334, -9596, -9582, -1839, -5358, -6648], + [0, -4251, -3037, -652, -12326, -1942, -2094, -2100, -7699, -2399, -2400, -2410, -7669, -2541], + [0, -9590, -9589, -9588, -2444, -3590, -3264, -1838, -14843], + [1, 3, 9736], + [0, 0, 9737, 9738, 4], + [0, -932, -1654, -1788, -2210], + [0, -2254, -14844, -14845, -13497, -14846, -3445], + [1, 3, 9740], + [0, 0, 0, 9741, 4], + [0, -14847, -14848, -14849, -14850, -14851, -14852, -14853, -14854, -856, -1599], + [1, 3, 9743], + [0, 9744, 9745, 9746, 6], + [0, -9929, -9936, -14855, -812, -9927, -1371, -1875, -2240, -2347, -2387, -2555], + [ + 0, -3986, -3988, -3470, -3471, -3198, -9943, -11697, -3136, -3037, -11337, -9941, -7836, -8497, -932, -1415, + -1942, -2174, -2375, -2410 + ], + [0, -5271, -5270, -687, -3162, -3994, -9946, -5269], + [1, 3, 9748], + [0, 9749, 0, 9750, 5], + [0, -5334, -14856, -12767, -1293, -14857, -5356, -5358], + [0, -9589, -3264, -14857, -14075, -1599, -10684, -10918, -3862, -2083, -12745, -2093, -14858, -2427], + [1, 3, 9752], + [0, 9753, 9754, 9755, 5], + [0, -1281, -2297], + [0, -519, -708, -2410, -2541], + [0, -10606, -3974, -14859, -687, -6659, -7440, -5514, -5560, -4000], + [1, 3, 9757], + [0, 9758, 9759, 9760, 11], + [0, -8609, -12518], + [ + 0, -2832, -11432, -3615, -3244, -190, -3983, -367, -7043, -406, -407, -409, -14860, -3136, -3037, -3040, -12591, + -427, -428, -9723, -932, -940, -12520, -969, -970, -976, -1110, -1344, -1415, -1419, -1534, -2634, -1942, -2006, + -2019, -2965, -2125, -2177, -2410, -2411 + ], + [0, -2592, -2006, -3322, -2105, -3324, -4213], + [1, 3, 9762], + [0, 0, 9763, 9764, 5], + [0, -3037, -2228, -2229, -2391, -2410], + [ + 0, -2410, -8038, -3694, -9069, -7304, -8425, -6582, -7534, -4058, -3445, -3577, -4055, -6435, -640, -5835, + -6421, -10227, -6233, -12343, -14861, -14862 + ], + [1, 3, 9766], + [0, 9767, 9768, 9769, 4], + [0, -14863, -14864, -14865], + [0, -25, -46, -3983, -932, -1452, -1547, -1654, -2111, -8325, -2384, -2416], + [ + 0, -14233, -14866, -4865, -6899, -1819, -14867, -13626, -2594, -14868, -14869, -14870, -14871, -14872, -14873, + -14874 + ], + [1, 3, 9771], + [0, 0, 9772, 9773, 4], + [0, -1449, -2105, -2106], + [0, -3264, -9703, -9566], + [1, 3, 9775], + [0, 9776, 9777, 9778, 4], + [ + 0, -1297, -14875, -9684, -2267, -14876, -14877, -14878, -6467, -14879, -14880, -14881, -14882, -14883, -14884, + -14885, -14886, -14887, -14888, -14889, -9154, -14380, -14890, -14891, -14892, -8965, -14893, -14894, -14895 + ], + [ + 0, -652, -999, -2210, -14896, -581, -932, -825, -14897, -1098, -1942, -367, -749, -767, -2293, -2091, -10402, + -2410, -3037, -14898, -14899, -4372, -3906, -11098, -14900, -4203, -14901, -14902, -14903, -14904, -14905, + -14906, -13409, -14907, -14908, -4646 + ], + [0, -14909, -3161, -13039], + [1, 3, 9780], + [0, 9781, 9782, 9783, 4], + [0, -14910, -14911, -865, -1461, -1729, -4389], + [0, -14912, -14913, -3037, -4201, -932, -7060, -1942, -2125, -2392, -2410, -2469], + [0, -4344, -7547, -4165], + [1, 3, 9785], + [0, 9786, 9787, 9788, 8], + [0, -812, -2193, -2387, -2550, -1077, -719, -1729, -14914, -9929, -1734, -9931, -14915], + [ + 0, -1763, -1415, -1344, -2331, -932, -2125, -2375, -1942, -2410, -3136, -3037, -3198, -11337, -8890, -50, -3048, + -4201, -14916, -3986, -3988, -427 + ], + [0, -1386, -3996, -14917, -3162, -5269, -3167, -14918], + [0, 25, 9790], + 1753574400000, + [1, 3, 9792], + [0, 9793, 0, 93, 4], + [0, -682, -1384, -1967, -1993, -2006, -2019, -2029, -2489], + [1, 3, 9795], + [0, 9796, 0, 9797, 10], + [0, -2387, -14920, -14921, -14922], + [0, -5818, -1122, -3844, -3161, -3966, -3967, -2410], + [1, 3, 9799], + [0, 9800, 9801, 221, 5], + [ + 0, -9933, -14923, -9938, -9931, -9929, -9934, -9935, -9932, -9937, -9936, -668, -812, -834, -9927, -9925, -1548, + -1805, -3547, -8874, -2177, -2240, -9926, -9422, -2291, -2323, -2387 + ], + [ + 0, -3198, -9939, -9943, -3136, -3044, -3037, -3199, -9941, -4202, -5673, -1415, -1417, -1534, -2125, -2231, + -2375, -2410 + ], + [1, 3, 9803], + [0, 34, 9804, 9805, 5], + [ + 0, -14924, -14925, -14926, -8250, -7, -8, -9, -10, -427, -428, -519, -748, -932, -940, -958, -967, -14927, + -1788, -1942, -2125, -2153, -2234, -2387, -2402, -2410, -238 + ], + [0, -475, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], + [1, 3, 9807], + [0, 9808, 9809, 9810, 4], + [0, -8547, -1548], + [0, -3037, -427, -428, -932, -940, -958, -967, -1942, -2125, -2127, -2130, -2142, -2144, -2387, -2402, -2410, -238], + [0, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], + [1, 3, 9812], + [0, 9813, 9814, 65, 5], + [0, -712, -2544], + [0, -4597, -2391, -2423], + [1, 24, 9816], + [0, 25, 9817], + 1738454400000, + [1, 3, 9819], + [0, 9820, 9821, 9822, 4], + [0, -44, -2965], + [ + 0, -14928, -2006, -932, -708, -2379, -1942, -767, -2019, -14929, -2410, -5111, -3040, -14784, -3052, -14930, + -2052, -7465, -428, -3081, -427 + ], + [0, -3634, -2006, -3322, -5119, -4868], + [1, 3, 9824], + [0, 9825, 0, 9826, 8], + [0, -14931, -14932, -14933], + [ + 0, -10543, -9745, -11796, -9753, -6955, -9030, -2322, -14934, -4132, -14935, -3277, -14647, -11069, -6129, + -11037, -5880, -7375, -14936, -14937, -6656, -14938, -14939, -10545, -3018, -3210, -14940, -1015, -3756, -3116, + -14770, -6960, -11113, -12877, -4058, -14941, -14942, -6695, -14769, -12869, -6324, -4213, -2564, -6052, -9772, + -6821, -5998, -8988, -14943, -11582, -14944, -6511, -5837, -1985, -3103, -14945, -14946, -5550, -1631, -1000, + -8808, -8127, -3590, -1959, -7333, -2487, -7420, -5856, -9571, -6011, -3921, -10838, -14947, -2265, -11784, + -6953, -4111, -14948, -10366, -9054, -6510, -3612, -11685, -6787, -11798, -12255, -14949, -7863, -14950, -12343, + -5176, -719, -3272, -5831, -7373, -14773, -8411, -9027, -11822, -6849, -6962, -7199, -3690, -5846, -687, -14604, + -14951, -7856, -7581, -14952, -5827, -14953, -3215, -5195, -3911, -14954, -2387, -3015, -9980, -6281, -4784, + -14955, -6548, -10547, -6951, -6964, -6599, -13466, -10527, -11866, -5924, -1435, -13003, -1463, -8038, -3578, + -5514, -4782, -7558, -5572, -8410, -4110, -6120, -6968, -503, -14956, -14957, -6434, -6958, -6917, -3258, -6107, + -1640, -3994, -1471, -13469, -12991, -14958, -3186, -5272, -14959, -14960, -6233, -12342, -8910, -10537, -581, + -6187, -3206, -5112, -2368, -6932, -7283, -14961, -11872, -11791, -3931, -6970, -6845, -510, -5874, -14962, + -3771, -4113, -11792, -14963, -3815, -11112, -6717, -7331, -8027, -3634, -8163, -6977, -6280, -14964, -3322, + -12020, -10549, -14965, -5210, -2547, -10544, -8108, -14966, -11153, -5092, -8989, -7822, -1361, -1415, -1412, + -3481, -6370, -655, -3207, -2344, -6972, -8166, -11782, -7459, -1764, -770, -2059, -7091, -4053, -4792, -6946, + -8412, -3582, -6508, -14967, -14968, -4795, -14969, -12893, -6506, -8164, -5554, -635, -6956, -682, -6557, + -14970, -14622, -14971, -11070, -14972, -3930, -13770, -6987, -7334, -5842, -13468, -14525, -14973, -1080, + -10539, -2518, -6947, -10440, -12892, -8132, -8421, -7404, -2451, -13467, -14974, -1961, -4142, -1122, -6966, + -13234, -4679, -12883, -5549, -5395, -9918, -6971, -14975, -8996, -12543, -5829, -11797, -1810, -6655, -14976, + -14977, -14978, -14979, -12888, -7370, -8616, -7237, -2319, -6748, -14980, -6439, -1076, -2074, -5569, -3173, + -7230, -1983, -14981, -3770, -1993, -11793, -4107, -13465, -1039, -10413, -12437, -7303, -9173, -6989, -12990, + -14982, -6978, -5553, -3270, -3185, -10330, -3217, -14983, -1030, -9172, -9917, -4055, -4665, -11821, -3324, + -5563, -6784, -6965, -7421, -1359, -1654, -4676, -2105, -14984, -6545, -3175, -10541, -6130, -6957, -3276, + -14985, -12025, -7200, -14986, -2489, -1666, -9261, -775, -6543, -7442, -12912, -13471, -14987, -4781, -13005, + -615, -3966, -1449, -4115, -12889, -3925, -14988, -6654, -14989, -8388, -8472, -6948, -9048, -14624, -14772, + -12512, -8806, -3975, -3209, -14990, -4783, -6975, -14991, -6509, -6444, -9847, -11867, -6985, -14992, -11639, + -14993, -3926, -6188, -3162, -6555, -11049, -753, -3184, -14994, -664, -6986, -8128, -14995, -6131, -6852, + -12435, -7372, -14996, -1573, -12021, -14997, -14998, -1456, -14999, -3923, -15000, -4134, -5562, -5101, -8047, + -9826, -15001, -2525, -15002, -15003, -9577, -15004, -15005, -5396, -5208, -15006, -10548, -2114, -13872, + -12438, -729, -7369, -5484, -6351, -8618, -714, -4117, -9572, -12885, -13858, -6983, -11820, -15007, -15008, + -1047, -11997, -1342, -727, -15009, -5260, -15010, -8990, -4182, -8130, -6952, -518, -12878, -1986, -15011, + -11817, -891, -1801, -6976, -5841, -11483, -7440, -15012, -15013, -6980 + ], + [1, 3, 9828], + [0, 0, 9829, 9830, 4], + [0, -1452, -8171, -1654], + [0, -5514, -3264], + [1, 3, 9832], + [0, 9833, 9834, 9835, 5], + [0, -4372, -2210, -2387], + [0, -13198, -3698, -13201, -13202, -13204, -13205, -15014, -2402], + [0, -5817, -521, -3634, -4215, -8466, -15015], + [1, 3, 9837], + [0, 0, 9838, 9839, 8], + [ + 0, -3561, -668, -15016, -1077, -1107, -1168, -1190, -15017, -2125, -2127, -2132, -2142, -2334, -2387, -2388, + -2410 + ], + [0, -3994, -4126, -15018, -15019, -3578, -5270, -11536, -3214, -2363, -15020, -3162, -752, -3862, -2494, -3588], + [1, 3, 9841], + [0, 0, 0, 9842, 5], + [0, -4000, -3162, -812], + [1, 3, 9844], + [0, 9845, 9846, 9847, 8], + [0, -617, -724, -812, -832, -5035, -996, -1496, -2213, -2564], + [ + 0, -3983, -15021, -3171, -364, -3170, -365, -3865, -3330, -518, -803, -932, -940, -975, -1110, -1889, -1942, + -1946, -2910, -2299, -2300, -2318, -2410, -2466, -2469 + ], + [0, -3690, -3445, -1334, -2512, -2531, -3691, -3967], + [1, 3, 9849], + [0, 0, 9850, 9851, 6], + [ + 0, -23, -40, -86, -3307, -518, -534, -632, -12427, -664, -15022, -699, -15023, -796, -15024, -1168, -15025, + -1174, -15026, -15027, -1184, -1187, -1197, -1199, -1212, -1228, -1232, -1237, -1238, -1243, -1244, -1248, + -15028, -1252, -1262, -1271, -15029, -1344, -15030, -1442, -1496, -1654, -1655, -15031, -4916, -1889, -1953, + -2109, -2111, -2127, -2128, -3572, -3031, -15032, -2210, -4096, -15033, -2460, -15034, -2501, -7752 + ], + [0, -775, -3754, -2162, -3756, -3576, -3575, -3161, -6334, -15035, -15036], + [1, 3, 9853], + [0, 9854, 9855, 9856, 9], + [0, -668, -15037], + [0, -15038, -3664, -1344, -1534, -1942, -2410, -2469], + [0, -687, -712, -714, -5535, -3958, -4000, -5538, -15039, -15040, -1573, -5545, -5550, -2265, -5553, -3770, -3974], + [1, 3, 9858], + [0, 9859, 9860, 9861, 8], + [0, -3776, -15041, -1606, -1967], + [ + 0, -21, -23, -32, -5870, -26, -12490, -34, -12492, -3376, -3400, -3398, -3380, -40, -41, -15042, -3615, -3244, + -190, -15043, -12687, -15044, -15045, -15046, -4749, -4758, -15047, -406, -407, -409, -15048, -410, -3136, + -4961, -3037, -3040, -3052, -3804, -527, -533, -534, -8560, -15049, -4976, -15050, -684, -748, -749, -753, -767, + -824, -932, -933, -940, -951, -958, -962, -967, -969, -970, -976, -1077, -1110, -15051, -1415, -4980, -1417, + -1419, -15052, -1449, -1889, -1939, -1942, -1952, -2006, -2015, -2019, -2029, -15053, -2082, -2205, -2257, + -2278, -15054, -2339, -15055, -13807, -2375, -2376, -2410, -2501, -2503, -2505 + ], + [ + 0, -2631, -15056, -15057, -3095, -3482, -4189, -3161, -2006, -4101, -15058, -3261, -15059, -15060, -15061, + -15062, -4666, -15063, -15064, -15065, -712, -8038, -3999, -4684, -15066, -3160, -3477, -4727, -15067, -2278 + ], + [1, 3, 9863], + [0, 0, 0, 9864, 4], + [0, -9681, -9681, -3264, -7153, -2435], + [1, 3, 9866], + [0, 0, 9867, 9868, 4], + [0, -15068, -1127, -1134, -1136, -1138, -1140, -1144, -1148, -1149, -15069, -1160], + [0, -14214, -14213, -15070, -15071, -3825, -4126, -6409, -12536, -13615, -1437, -8635, -3576, -3162], + [1, 3, 9870], + [0, 9871, 9872, 254, 11], + [0, -1889, -2694, -2279, -4007, -658, -6410], + [ + 0, -2531, -502, -1683, -1816, -2323, -2564, -6842, -1107, -2178, -2444, -461, -2624, -651, -812, -1072, -1460, + -12980, -507, -640, -649, -743, -997, -1401, -1699, -2066, -2177, -2334, -5034, -1047, -3447, -1827, -1958, + -2501, -1977, -1999, -12981, -12955, -367, -4204, -719, -767, -1273, -11121, -10697, -9548, -1864, -2257, + -12982, -15072, -5052, -5673, -12971, -12972, -778, -2745, -1336, -2773, -1354, -12977, -2231, -2269, -2343, + -2410, -10052, -23, -237, -3036, -12967, -8559, -5900, -512, -2740, -724, -769, -1429, -2163, -12978, -2194, + -6375, -12979, -3921, -47, -3872, -10098, -12956, -3269, -3198, -12963, -3040, -534, -635, -12973, -737, -12974, + -1465, -12976, -1930, -8578, -2275, -2594, -12957, -5033, -3044, -3199, -12975, -8562, -6378, -2041, -5977, + -6380, -44, -12960, -15073, -6381, -1851, -6383, -6384, -46, -4020, -13428, -12966, -6633, -6386, -1848, -6387, + -3194, -12951, -3983, -4749, -8523, -3052, -1337, -6388, -1734, -22, -40, -13427, -12968, -771, -1343, -2233, + -11463, -6390, -6391, -5038, -4776, -3732, -7080, -6832, -7026, -1927, -41, -12947, -269, -5085, -3850, -12964, + -12969, -736, -1929, -2082, -32, -13186, -6394, -1934, -4195, -3251, -12948, -12952, -15043, -12965, -14296, + -7165, -7967, -2335, -12949, -15074, -10100, -10101, -7189, -1903, -2791, -12953, -12959, -1643, -3077, -42, + -12950, -8355, -15075, -8863, -12954, -4758, -12961, -12946, -4762, -5323, -4763, -8561, -6484, -38, -7164, + -12962, -1915, -37, -3368, -15076, -3376, -3204, -3379, -3385, -3389, -553 + ], + [1, 3, 9874], + [0, 0, 9875, 9876, 10], + [0, -652, -13239, -1344, -1534, -1889, -2541], + [0, -1889, -775, -3583, -10739], + [1, 3, 9878], + [0, 9879, 9880, 9881, 9], + [0, -674, -3050, -15077, -1630, -1641, -1863, -3240, -12379, -2218], + [ + 0, -86, -3307, -190, -3470, -7040, -3471, -3472, -7041, -7042, -3713, -3037, -5675, -15078, -427, -428, -767, + -932, -965, -999, -1110, -1344, -13856, -1534, -1870, -1942, -2125, -2174, -2410, -2469 + ], + [ + 0, -3998, -1978, -15079, -3167, -15080, -5270, -5271, -15081, -15082, -15083, -6527, -1594, -3162, -13188, + -15084, -15085 + ], + [1, 3, 9883], + [0, 9884, 9885, 9886, 9], + [0, -15086, -15087, -640, -5273, -1610, -1955, -4620, -15088], + [ + 0, -23, -32, -40, -534, -15089, -684, -9994, -778, -932, -933, -12416, -958, -10049, -1041, -3867, -1331, + -15090, -2275, -2335, -14648, -2501, -2502, -2503, -2505 + ], + [ + 0, -3812, -3813, -3814, -3815, -3816, -3817, -856, -15091, -15092, -2637, -4847, -15093, -15094, -15095, -15096, + -15097, -15098, -15099 + ], + [1, 3, 9888], + [0, 94, 9889, 9890, 5], + [0, -23, -32, -44, -932, -933, -940, -958, -962, -967, -969, -970, -1415, -3156, -1942, -2006, -2034], + [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -10738, -9556, -15020, -15100, -12546, -5176], + [1, 3, 9892], + [0, 0, 9893, 9894, 5], + [0, -23, -40, -44, -15101, -12564, -932, -1344, -1534, -2006, -2034, -2410], + [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -13876, -15102, -6711, -15103], + [1, 3, 9896], + [0, 0, 9897, 9898, 11], + [ + 0, -23, -32, -26, -3204, -38, -40, -41, -3326, -350, -351, -407, -409, -518, -703, -796, -932, -940, -12520, + -967, -969, -970, -976, -1344, -1352, -1415, -1534, -1889, -1942, -1967, -2006, -2019, -2127, -4063, -15104, + -3474, -4753, -2281, -2282 + ], + [0, -2006, -13613, -15105, -4108, -2006, -3095, -15106, -3162, -5270, -5271, -15107, -15108, -15109, -15110], + [1, 3, 9900], + [0, 9901, 9902, 9903, 9], + [0, -44, -15111, -15112], + [ + 0, -23, -36, -38, -40, -41, -42, -8280, -50, -15113, -407, -409, -3040, -3052, -427, -428, -440, -528, -651, + -767, -932, -940, -967, -969, -1344, -1415, -1419, -1534, -1942, -2006, -2019, -2125, -2410, -2466 + ], + [0, -15114, -15115, -2006, -3159, -14798], + [1, 3, 9905], + [0, 9906, 9907, 9908, 6], + [0, -656, -15116, -2400], + [ + 0, -2832, -3615, -190, -15117, -9705, -652, -668, -716, -722, -928, -932, -940, -967, -999, -1110, -1344, -1412, + -1534, -1574, -1942, -2125, -7969, -2410, -2411 + ], + [0, -8630, -3671, -856, -3262, -1599, -3437, -4328], + [1, 3, 9910], + [0, 9911, 9912, 9913, 11], + [0, -349, -703, -15118, -3517, -996, -1359, -2040, -2112, -12695, -12518, -15119], + [ + 0, -21, -23, -40, -41, -42, -44, -15042, -10791, -8230, -3615, -190, -12608, -15120, -349, -3562, -15043, -358, + -4754, -13424, -2948, -15121, -4890, -15122, -15123, -15124, -407, -409, -410, -15125, -12940, -15126, -3037, + -3040, -3052, -6633, -440, -5286, -3664, -534, -15127, -8561, -635, -15050, -767, -7272, -7254, -7271, -834, + -932, -15128, -940, -948, -958, -960, -962, -967, -969, -970, -15129, -4756, -1107, -1110, -1344, -1449, -1534, + -1610, -1874, -1942, -2006, -2019, -2029, -2040, -2125, -2257, -2335, -2376, -2378, -2410, -2411, -6412, -2469, + -15130, -2501, -2502, -2503 + ], + [0, -2006, -3476, -14497, -3159], + [1, 3, 9915], + [0, 9916, 9917, 9918, 4], + [0, -15131], + [ + 0, -15132, -15133, -15134, -15135, -350, -351, -410, -4875, -4877, -15136, -15137, -4878, -15138, -15139, -652, + -664, -15140, -15141, -932, -15142, -958, -1449, -11472, -1654, -1942, -2127, -15143, -2184, -2210, -2211, + -2253, -2334, -2410 + ], + [ + 0, -15144, -5072, -5065, -12238, -5073, -14939, -15145, -5495, -3161, -12122, -7651, -3110, -15146, -13039, + -6106, -6107, -5394, -15147, -15148 + ], + [1, 3, 9920], + [0, 0, 9921, 9922, 6], + [0, -23, -5585, -40, -2127, -2128, -2133, -2137, -2339, -15149, -13807, -2416], + [0, -15150, -15151, -7581, -1634, -475, -15152, -2006, -2476, -3755], + [1, 3, 9924], + [0, 9925, 9926, 9927, 4], + [0, -44, -15153, -4817, -809, -1549, -15154, -2355, -2451], + [ + 0, -3341, -26, -38, -40, -42, -86, -3307, -2997, -3326, -350, -15155, -4062, -351, -3561, -15156, -15157, + -15158, -15159, -3164, -3037, -3803, -5011, -6109, -427, -428, -4837, -5589, -3664, -3665, -5590, -441, -14247, + -14244, -4838, -518, -523, -656, -5339, -720, -726, -767, -795, -796, -812, -15160, -928, -932, -934, -940, + -958, -967, -980, -1125, -1344, -1449, -1521, -1534, -1551, -15161, -1662, -1889, -1942, -1955, -15162, -2082, + -2125, -2127, -13263, -4063, -5122, -6483, -15163, -6746, -4753, -15164, -15165, -2140, -14839, -2145, -15166, + -2387, -2410, -2466, -15167, -2469, -2476, -2478, -2483, -5627 + ], + [0, -2476, -3162, -15168], + [1, 3, 9929], + [0, 9930, 9931, 9932, 5], + [0, -5277, -929, -1437], + [ + 0, -23, -40, -9678, -4964, -518, -521, -15169, -757, -767, -784, -795, -7758, -865, -932, -940, -943, -958, + -966, -967, -968, -974, -1753, -1889, -1890, -1891, -15170, -1896, -1903, -15171, -1906, -1916, -15172, -12060, + -1942, -2125, -2127, -2128, -2131, -2133, -8895, -15173, -2137, -8896, -15174, -2140, -5281, -2214, -2281, + -3085, -2302 + ], + [ + 0, -5298, -6656, -15175, -15176, -15177, -7581, -7582, -6527, -15178, -5069, -3162, -12536, -7764, -4634, + -12217, -8883, -1437 + ], + [1, 3, 9934], + [0, 9935, 9936, 9937, 5], + [0, -523, -1435, -1548, -1646, -2153], + [0, -664, -932, -4628, -1650, -1654, -2330], + [ + 0, -4116, -826, -687, -6999, -9043, -12054, -15179, -1334, -11915, -15180, -9041, -5730, -7085, -11642, -9261, + -7084, -15181, -12578 + ], + [1, 3, 9939], + [0, 0, 9940, 9941, 4], + [ + 0, -518, -632, -1168, -15182, -1194, -1208, -1226, -1238, -1243, -1244, -1252, -7832, -15183, -1899, -2281, + -2282, -2550 + ], + [0, -2649, -15184, -15185, -775, -1521, -3162], + [1, 3, 9943], + [0, 0, 0, 9944, 6], + [0, -2006, -4125, -9800, -4633, -2074, -4634], + [1, 24, 9946], + [0, 25, 9947], + 1731196800000, + [1, 3, 9949], + [0, 9950, 9951, 7, 8], + [ + 0, -15186, -4225, -4228, -15187, -15188, -15189, -4230, -15190, -703, -5342, -15191, -1026, -3649, -1289, + -14857, -1618, -10922, -1619, -5397, -15192, -15193, -2590, -4241, -2088, -4242, -2095, -15194, -15195, -15196, + -12978, -4245, -2218, -12508, -2378, -15197, -2429, -15198, -2548, -2564 + ], + [ + 0, -5048, -409, -426, -5334, -4251, -15199, -3040, -3046, -440, -15200, -9602, -9603, -2634, -2006, -2019, + -2427, -2469, -15201 + ], + [1, 3, 9953], + [0, 9954, 0, 9955, 4], + [0, -12260], + [0, -810, -15202, -15203, -6367, -5896, -13618, -15204, -15205, -2653], + [1, 3, 9957], + [0, 9958, 9959, 204, 4], + [0, -4787, -1864], + [0, -2581, -3037, -8523, -1026, -15206, -1107, -2354, -2892, -2410], + [1, 3, 9961], + [0, 0, 0, 9962, 8], + [0, -2410, -3694, -4004, -4043, -1001], + [1, 3, 9964], + [0, 9965, 37, 9966, 4], + [0, -15207, -2387], + [ + 0, -15208, -15209, -15210, -15211, -15212, -2410, -5210, -3215, -6478, -9471, -15213, -8130, -3756, -8386, + -15214, -3445, -3577 + ], + [1, 3, 9968], + [0, 0, 28, 9969, 10], + [0, -12613, -3098, -3100, -3482, -2634, -1713, -2006, -12612, -12449, -3160, -4119], + [1, 3, 9971], + [0, 108, 28, 9972, 8], + [0, -707, -3098, -3100, -4131, -3482, -2634, -1713, -2006, -4132, -4133, -3160, -4119], + [1, 3, 9974], + [0, 9975, 28, 9976, 5], + [0, -2020], + [0, -3098, -7761, -878, -3100, -3482, -2634, -1713, -2006, -3160, -4119, -7764], + [1, 3, 9978], + [0, 266, 28, 9979, 8], + [0, -3098, -3100, -3482, -2634, -1713, -1779, -1959, -2006, -3160, -4119], + [1, 3, 9981], + [0, 266, 28, 9982, 4], + [0, -15215, -3098, -3100, -3482, -2634, -1713, -2006, -7282, -3160, -4119], + [1, 3, 9984], + [0, 0, 28, 9985, 4], + [0, -3098, -3100, -3482, -2634, -1713, -2006, -15216, -10114, -15217, -3160, -4119], + [1, 3, 9987], + [0, 9988, 9989, 9990, 4], + [0, -1616], + [ + 0, -21, -23, -3204, -40, -42, -3748, -4776, -15218, -3330, -3032, -3037, -427, -428, -932, -940, -958, -960, + -965, -15219, -5863, -1772, -2125, -2410, -2469 + ], + [ + 0, -15220, -1874, -795, -1654, -2469, -1415, -1412, -1710, -11410, -15221, -11100, -4004, -9246, -6863, -3634, + -15222 + ], + [1, 3, 9992], + [0, 9993, 9994, 9995, 6], + [0, -15223, -15224, -15225, -15226, -12846, -15227], + [0, -15228, -3617, -3037, -15229, -15230, -15231, -1004, -2125, -2892, -2410, -2469], + [0, -15227, -1004, -3445, -6324, -3690, -9668, -2410, -3214, -5401], + [1, 3, 9997], + [0, 0, 9998, 9999, 11], + [0, -1763, -10652, -2250, -4004, -15232], + [0, -3162, -11321, -7440, -4865], + [1, 3, 10001], + [0, 10002, 10003, 10004, 5], + [0, -5358, -2427, -5334, -1293, -8913, -12766, -2235, -5356, -12767], + [0, -652, -932, -2083, -1942, -1874, -2094, -2410, -3037, -6648, -12750, -12749, -11167, -15233], + [0, -856, -4147, -5670, -3862, -2083, -12745, -2093, -2427], + [1, 3, 10006], + [0, 10007, 10008, 10009, 5], + [0, -15234, -15235, -15236, -15237, -15238, -15239, -15240, -15241, -15242, -15243, -15244, -15245], + [0, -21, -2388, -2410], + [0, -15246, -3163, -12254, -6324, -3214, -11230, -8043, -15247, -3162], + [1, 3, 10011], + [0, 10012, 0, 93, 11], + [0, -2606, -15248, -682, -15249, -1384, -1967, -1993, -2006, -2019, -2029, -2489], + [1, 3, 10014], + [0, 10015, 0, 93, 10], + [0, -2006, -2019, -1967, -2606], + [1, 3, 10017], + [0, 10018, 0, 10019, 8], + [0, -2387, -1387, -232, -1461], + [0, -1386, -3161, -475, -3162, -3994, -3995, -3996, -752, -3997, -3998], + [1, 24, 10021], + [0, 25, 10022], + 1733616000000, + [0, 25, 10024], + 1733961600000, + [1, 24, 10026], + [0, 25, 10027], + 1734220800000, + [1, 3, 10029], + [0, 0, 10030, 10031, 4], + [ + 0, -2200, -2162, -2834, -2387, -932, -2125, -2127, -2149, -2334, -1753, -1889, -1077, -1942, -620, -767, -2281, + -2410, -3563, -1771, -1891, -6326, -518, -726, -3564, -1547, -6327, -945, -15250, -958, -978, -6331, -3267, + -428, -14014, -3573, -427 + ], + [0, -775, -2162, -3576, -8856, -3110, -4101, -3161, -15251, -11229], + [1, 3, 10033], + [0, 10034, 10035, 10036, 4], + [0, -44, -15252, -15253], + [ + 0, -21, -23, -26, -33, -5585, -38, -39, -40, -43, -3035, -3621, -3037, -528, -534, -539, -571, -15254, -15255, + -633, -664, -665, -12469, -767, -932, -1004, -4652, -1449, -1654, -1788, -2105, -2125, -2228, -2335, -2410, + -2490, -2491, -2501, -2503 + ], + [0, -5801, -3162, -3690, -10810, -15256], + [1, 3, 10038], + [0, 0, 10039, 10040, 11], + [0, -652, -664, -726, -756, -928, -932, -1449, -1544, -1654, -2162], + [0, -3214, -3162, -5270, -5271, -8617], + [1, 3, 10042], + [0, 10043, 10044, 10045, 6], + [0, -1992, -712, -809, -15257, -1548, -682, -15258, -1762, -15259, -15260, -15261, -6640, -2055, -15262], + [0, -4977, -2006, -2019, -3040, -3044, -44, -3052, -15263, -409, -407, -410, -2622, -3024], + [0, -2006, -5253, -3159, -2678, -15264, -15265, -3095, -3098, -3160, -3161, -3100, -3162], + [1, 3, 10047], + [0, 10048, 10049, 93, 4], + [0, -2606, -15248, -15266, -2669, -2670, -682, -1384, -1967, -1993, -2006, -2019, -2489, -15249], + [0, -15267, -15268, -15269], + [1, 3, 10051], + [0, 0, 10052, 10053, 4], + [0, -3473, -1942, -2127, -2128, -5384, -2129], + [0, -3100, -11853, -11851], + [1, 3, 10055], + [0, 10056, 10057, 10058, 4], + [0, -6815], + [0, -409, -3040, -3052, -778, -1071, -1344, -2006, -2019, -2049, -2275, -2376, -8973, -2387, -2410, -2501, -3612], + [0, -6750, -15270, -15271, -15272, -3095, -3576, -3162, -2363, -6750, -3823, -15273, -12606], + [1, 3, 10060], + [0, 10061, 10062, 10063, 10], + [0, -4733, -668, -719, -999, -1077, -1948, -1966, -2177, -2426, -2518, -2528, -2542, -2555], + [0, -15274, -3899, -652, -1107, -1110, -6295, -8065, -1971], + [0, -2682, -15275, -15276, -3162, -5270, -15277, -5271], + [1, 3, 10065], + [0, 10066, 0, 10067, 4], + [0, -1867, -11957, -11964, -15278], + [0, -15279, -3444, -5545, -3262, -856, -15280, -15281], + [1, 3, 10069], + [0, 10070, 10071, 10072, 9], + [ + 0, -15282, -15283, -15284, -31, -15285, -3325, -280, -11671, -469, -719, -7731, -15286, -15287, -5934, -1442, + -10584, -1577, -1645, -1729, -15288, -2115, -10624, -2177, -2205, -2379, -2410 + ], + [0, -932, -959, -969, -973, -1077, -1415, -1448, -1607, -2125, -15289], + [0, -3328, -856, -3262, -1599, -9308], + [1, 3, 10074], + [0, 10075, 10076, 10077, 5], + [ + 0, -6869, -8386, -1805, -623, -668, -999, -1526, -1826, -2387, -1548, -2177, -753, -1966, -2501, -679, -1077, + -2357, -719, -1327, -695, -832, -929, -2043, -5977, -2508, -15290, -2433, -15291, -2044, -15292, -3859, -15293, + -4239, -2505, -15294, -1331, -15295, -15296, -2502, -15297, -15298, -15299 + ], + [0, -7982, -7688, -3052, -3861, -13398, -2052, -13186, -11702, -15300, -15301, -14826, -14779], + [0, -2006, -5371, -2501, -856, -7695, -7696, -858], + [1, 3, 10079], + [0, 10080, 10081, 268, 11], + [0, -2387, -1387, -232], + [ + 0, -1763, -1415, -2006, -932, -2125, -2127, -2375, -1077, -1942, -2019, -2410, -3136, -3037, -3040, -3052, + -3986, -3988, -409, -1419, -3267, -407, -428, -2622, -427 + ], + [1, 3, 10083], + [0, 0, 10084, 10085, 4], + [0, -3136, -427, -428, -753, -756, -784, -932, -1415, -1417, -1424, -1449, -15302, -2127, -2375, -2410], + [ + 0, -12841, -3582, -6989, -5389, -10095, -12523, -2410, -3214, -9682, -3095, -11486, -12121, -5065, -3577, -3264, + -4333, -4334, -15303 + ], + [1, 3, 10087], + [0, 10088, 0, 10089, 4], + [0, -703, -2825, -2690, -1967, -44, -2997, -192], + [0, -2006, -3159, -4217, -15304, -4665], + [1, 3, 10091], + [0, 10092, 0, 10093, 6], + [0, -2690, -1967, -44], + [0, -2006, -3159, -4217, -4101], + [1, 3, 10095], + [0, 10096, 0, 10097, 8], + [0, -703, -2029, -2825, -1967, -44, -3140], + [0, -2006, -3159, -4217, -5260], + [1, 3, 10099], + [0, 10100, 0, 95, 5], + [0, -15305, -15306, -823, -1878], + [1, 3, 10102], + [0, 269, 0, 95, 5], + [1, 3, 10104], + [0, 10105, 10106, 10107, 4], + [0, -469, -2177, -1047, -15310, -15311, -12390, -8802, -1395, -3609], + [0, -6997, -2466, -2469, -757, -1026, -2410, -7982, -1772, -10267], + [ + 0, -15312, -15313, -8902, -3184, -3161, -1168, -3214, -3264, -3482, -1599, -3967, -15314, -15315, -3995, -5372, + -3255, -3256, -15316, -15317, -15318 + ], + [1, 3, 10109], + [0, 0, 10110, 10111, 5], + [0, -865, -8559, -866], + [0, -2006, -2634, -9736, -865], + [1, 3, 10113], + [0, 10114, 10115, 10116, 4], + [0, -2624, -2231, -15319, -2168, -1320, -3606], + [ + 0, -2558, -1415, -1623, -932, -1699, -825, -2501, -1077, -1098, -1942, -767, -1978, -2400, -1424, -2410, -23, + -3136, -3037, -769, -2503, -534, -11747, -1772, -2041, -3046, -3048, -7080, -4049, -15320, -2505, -15321, + -12916, -15322, -1421, -2335, -940, -967, -1419, -2506, -3204 + ], + [0, -2006, -3214, -2501, -10675, -6211, -15323, -1540, -12516, -10589, -12517, -11492], + [1, 3, 10118], + [0, 0, 10119, 10120, 11], + [0, -13324, -1123, -15324], + [0, -15325, -1122, -4058, -3694, -2410, -4258, -3161, -3862], + [1, 3, 10122], + [0, 10123, 10124, 10125, 5], + [ + 0, -1816, -3612, -2466, -15326, -623, -668, -999, -865, -1548, -1872, -2177, -680, -1753, -1821, -2501, -679, + -1077, -1376, -1942, -719, -749, -695, -778, -2410, -2061, -15327, -15328, -635, -5676, -726, -2115, -2275, + -15329, -15330, -15331, -15332, -4236, -2041, -15333, -15334, -15335, -3808, -15336, -15337, -4805, -15338, + -15339, -15340, -15341, -1331, -15342, -2504, -2506, -15343, -5319, -1643, -2502, -15344, -15345, -15346, + -14827, -15347, -1067, -2695 + ], + [0, -1415, -2006, -9056, -2019, -3136, -3037, -3044, -15348, -3048, -15349, -15350, -14826], + [ + 0, -15351, -7643, -15352, -7645, -15353, -15354, -11229, -3690, -6120, -3161, -1334, -4055, -1501, -15355, + -13039, -1791, -11437, -1818, -3691, -5728, -7107, -15356, -5372, -3214, -11878, -12303, -12304, -12301, -12299, + -15357, -15358, -3445, -7696, -15359, -1520, -15360, -2006, -3476 + ], + [1, 3, 10127], + [0, 10128, 10129, 10130, 4], + [0, -23, -14825, -656, -755, -15361], + [0, -2303], + [0, -5049, -3839, -2006, -3103, -3690], + [1, 3, 10132], + [0, 10133, 10134, 10135, 4], + [0, -47, -3223], + [0, -15362], + [0, -3264, -9589, -525, -9588, -14188, -9590], + [1, 3, 10137], + [0, 0, 0, 10138, 4], + [0, -5141, -4601, -4602, -3578, -3445, -754], + [1, 3, 10140], + [0, 10141, 10142, 168, 5], + [0, -809, -713, -15363], + [0, -1344, -2469, -2410, -3037, -411, -2581, -86, -5144, -3664, -3307], + [0, 23, 0, 97, 5], + [1, 3, 10145], + [0, 23, 0, 10146, 9], + [ + 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, + -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, + -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, + -5186, -5187, -5188, -5189, -15364, -15366 + ], + [1, 3, 10148], + [0, 23, 0, 98, 9], + [1, 3, 10150], + [0, 23, 0, 99, 4], + [0, 23, 0, 99, 5], + [1, 3, 10153], + [0, 23, 0, 99, 11], + [1, 3, 10155], + [0, 10156, 10157, 10158, 6], + [ + 0, -3698, -13203, -15369, -15370, -11418, -617, -722, -733, -736, -744, -754, -2762, -930, -1004, -15371, + -15372, -1010, -13106, -5989, -1116, -15373, -1299, -1388, -11121, -1465, -1548, -1641, -1666, -1667, -1676, + -1681, -1744, -1826, -5262, -7223, -2182, -2297, -15374, -2451, -15375, -2531 + ], + [ + 0, -3732, -14740, -4198, -3330, -3733, -4623, -3850, -3044, -14742, -3851, -3037, -8852, -3046, -4204, -999, + -1336, -1722, -2293, -2410, -2469 + ], + [0, -5300, -1959, -15176, -15376, -15377, -5940, -9139, -15378, -6335, -3445, -2512, -1004, -8841], + [1, 3, 10160], + [0, 10161, 0, 271, 9], + [ + 0, -2476, -2362, -753, -928, -1442, -2501, -679, -1582, -778, -1888, -2437, -2481, -2483, -5628, -23, -769, + -1041, -518, -534, -14408, -15379, -2508, -13389, -1908, -15380, -2711, -2505, -748, -1929, -15381, -15382, + -2485, -2718, -1643, -2712, -15383, -731, -15384, -2714, -1814, -2716 + ], + [1, 3, 10163], + [0, 10164, 0, 10165, 6], + [0, -1955, -1600, -7898, -1603, -1601, -2718, -5614], + [0, -856, -3262, -1599, -2476, -2816], + [1, 3, 10167], + [0, 10168, 0, 42, 5], + [0, -2711, -1543, -1582], + [1, 3, 10170], + [0, 10171, 0, 42, 9], + [0, -15380, -1553], + [1, 3, 10173], + [0, 10174, 0, 42, 9], + [0, -15380, -769], + [1, 3, 10176], + [0, 10177, 0, 42, 8], + [0, -1779, -15380], + [1, 3, 10179], + [0, 10180, 0, 42, 5], + [0, -15380, -2718], + [1, 3, 10182], + [0, 10183, 0, 42, 4], + [0, -15380], + [1, 3, 10185], + [0, 10186, 10187, 42, 5], + [0, -668, -929, -1077, -1111, -1125, -1284, -2177, -2362, -4701], + [0, -15385], + [1, 3, 10189], + [0, 10190, 0, 42, 4], + [0, -1548, -2286, -5602, -2287, -15380, -2717, -15383, -2715, -15386, -2713], + [1, 3, 10192], + [0, 10193, 10194, 58, 4], + [0, -15387, -15388, -15389, -15390, -15391], + [ + 0, -664, -1654, -2379, -2501, -21, -23, -5870, -3035, -3136, -3037, -1771, -2503, -3621, -39, -43, -40, -15392, + -15393, -42 + ], + [1, 3, 10196], + [0, 10197, 132, 58, 8], + [0, -15388, -15399, -15400], + [1, 3, 10199], + [0, 10200, 10201, 58, 9], + [0, -1940, -6935, -747, -15401, -15402], + [ + 0, -664, -1654, -932, -753, -2379, -2501, -2376, -21, -778, -2410, -23, -5870, -3035, -3136, -3037, -1637, + -1771, -2503, -3621, -3040, -2275, -15403, -14831, -39, -43, -40, -966, -969, -958, -968, -940, -943, -967, + -974, -42 + ], + [1, 3, 10203], + [0, 10204, 10205, 58, 11], + [0, -2722, -15401, -15402, -15404, -15405, -15406], + [ + 0, -664, -2494, -1654, -932, -4270, -753, -2379, -2501, -1942, -21, -2410, -23, -5870, -3035, -3136, -3037, + -1771, -2503, -3621, -39, -43, -40, -966, -969, -958, -968, -15407, -940, -943, -967, -974, -42 + ], + [1, 3, 10207], + [0, 10208, 132, 58, 11], + [0, -2531, -15388, -15399], + [1, 3, 10210], + [0, 10211, 0, 10212, 6], + [0, -703, -15408], + [0, -15409, -15410, -3162, -6184], + [1, 3, 10214], + [0, 0, 0, 173, 4], + [1, 3, 10216], + [0, 0, 0, 10217, 5], + [0, -475, -3161, -4865, -7243, -3634, -5495], + [1, 3, 10219], + [0, 117, 10220, 10221, 4], + [0, -519, -668, -756, -1788, -2250, -2251], + [0, -5514, -9846, -687, -15411, -7210], + [1, 3, 10223], + [0, 228, 10224, 10225, 5], + [ + 0, -9705, -5686, -4624, -3037, -8890, -11458, -617, -11477, -1168, -12346, -1260, -1412, -15412, -15413, -1452, + -1722, -2125, -2150, -15414, -2173, -2379, -2388, -12348, -2410, -12349, -2819 + ], + [0, -4004, -3634, -11468, -12350, -11467], + [1, 3, 10227], + [0, 0, 10228, 272, 5], + [ + 0, -526, -528, -6104, -558, -6089, -562, -932, -934, -6013, -940, -956, -958, -1059, -1344, -1415, -1534, -1942, + -2125, -2416 + ], + [1, 3, 10230], + [0, 10231, 10232, 10233, 8], + [ + 0, -7226, -15425, -7944, -719, -729, -7949, -1048, -1276, -6343, -7959, -1641, -15426, -2125, -7968, -2359, + -7971, -2425, -7972 + ], + [ + 0, -190, -3035, -4269, -15427, -15428, -3617, -15429, -3713, -3037, -15430, -3628, -15431, -427, -428, -15432, + -664, -665, -749, -932, -940, -964, -966, -967, -999, -1054, -1116, -5487, -1654, -1888, -1942, -7981, -2148, + -2177, -2210, -2211, -7970, -2379, -2410 + ], + [0, -6342, -4865, -7641, -4258, -3100, -9290], + [1, 3, 10235], + [0, 10236, 10237, 273, 4], + [0, -15425, -6343, -7964, -7966, -2125, -2148, -5509], + [0, -664, -665, -1654, -15433], + [1, 3, 10239], + [0, 10240, 10241, 273, 4], + [0, -7226, -1276, -3607, -1641], + [0, -664, -7979, -1004, -1452, -1654, -6347, -2106, -2148], + [1, 3, 10243], + [0, 10244, 10245, 10246, 4], + [0, -1343], + [0, -1445, -1452, -1654, -2198], + [0, -4864, -4865, -2734, -9711, -3634], + [1, 3, 10248], + [0, 0, 10249, 10250, 4], + [0, -526, -527, -15434, -558, -664, -1654], + [0, -656, -6514, -775, -5092], + [1, 3, 10252], + [0, 0, 133, 10253, 4], + [0, -3264, -8034, -3223, -7472, -4846, -6557, -15435], + [1, 3, 10255], + [0, 0, 133, 10256, 5], + [0, -3264, -15436, -8034, -3223, -7472, -4846, -6557, -15435], + [1, 3, 10258], + [0, 0, 133, 10259, 4], + [0, -3264, -8034, -3223, -7472, -4846, -6557], + [1, 3, 10261], + [0, 0, 10262, 10263, 4], + [0, -8096, -14182, -652, -725, -1288, -1292, -1942, -2087, -2094, -2100, -2125, -2322, -2399, -2410, -2427, -2541], + [0, -3264, -8034, -10902, -7472, -4846, -15435, -15437, -6557], + [1, 3, 10265], + [0, 0, 0, 41, 9], + [1, 3, 10267], + [0, 10268, 251, 10269, 4], + [0, -15438], + [0, -712, -5535, -5549, -775], + [1, 3, 10271], + [0, 0, 92, 10272, 5], + [0, -5092, -3264, -12064, -13319, -7205, -1838, -6231], + [1, 3, 10274], + [0, 10275, 88, 10276, 4], + [0, -1016, -15439, -8493], + [0, -3671, -856, -3960, -3262, -1599, -3261, -15440], + [1, 3, 10278], + [0, 0, 10279, 10280, 5], + [0, -1654, -664, -1405], + [0, -775, -12120, -5101, -15441, -3162, -1838, -5572], + [1, 3, 10282], + [0, 0, 10283, 10284, 6], + [0, -756, -1405], + [0, -2265, -4112, -7188, -775, -10310, -3582], + [1, 3, 10286], + [0, 10287, 10288, 10289, 4], + [0, -781], + [0, -652, -928, -932, -1654, -2127, -2232], + [0, -775, -6454, -6684, -1644, -7192, -7193, -15442], + [1, 3, 10291], + [0, 10292, 10293, 10294, 4], + [0, -508], + [0, -932, -940, -967, -1942, -2319], + [0, -5829, -3215, -6747, -687, -3957, -4377, -6836, -15443], + [1, 3, 10296], + [0, 10297, 0, 10298, 8], + [0, -492, -493, -15444, -495, -722, -1122, -1123, -1439, -7679], + [0, -15445, -3445, -1105, -15446], + [1, 3, 10300], + [0, 10301, 0, 10302, 4], + [0, -1439, -1848, -7679], + [0, -15445, -3445, -5800, -8904], + [1, 3, 10304], + [0, 10305, 0, 10306, 4], + [0, -722, -1439, -1645, -1848, -7679, -15447], + [0, -15445, -3445, -7660], + [1, 3, 10308], + [0, 10309, 0, 10310, 4], + [0, -15448, -1371, -1469, -1645], + [0, -15445, -3445, -15449, -15450], + [1, 3, 10312], + [0, 10313, 0, 10314, 5], + [0, -492, -493, -15444, -495, -722, -1122, -1123, -1439, -1848, -7679], + [0, -15445, -3445, -1105], + [1, 3, 10316], + [0, 10317, 0, 10318, 4], + [0, -492, -493, -15444, -495, -1439, -1848, -7679], + [0, -15445, -3445, -7661], + [1, 3, 10320], + [0, 0, 0, 274, 4], + [1, 3, 10322], + [0, 10323, 0, 274, 10], + [0, -1848], + [1, 3, 10325], + [0, 0, 10326, 10327, 9], + [0, -3136, -3037, -756, -1107, -1415, -1442, -15451, -2375, -2388, -2389, -12348, -2410], + [0, -14233, -6747, -3215, -14867, -3162, -15423, -9918, -11321, -1819, -7572, -4865, -15452], + [1, 3, 10329], + [0, 10330, 10331, 10332, 6], + [0, -1610, -1955, -15453, -15454, -15455, -4096, -3546], + [ + 0, -1415, -523, -1344, -1520, -932, -1650, -2125, -2127, -2286, -784, -679, -12844, -1942, -5002, -767, -533, + -23, -722, -1534, -1539, -1771, -632, -5977, -3983, -40, -959, -15456, -15457, -2129, -32, -958, -2143, -2138, + -940, -967, -2131, -15458, -740, -2137 + ], + [0, -4100, -3671, -856, -15459, -3262], + [1, 3, 10334], + [0, 10335, 10336, 10337, 10], + [ + 0, -1805, -668, -2550, -729, -15460, -2757, -910, -1077, -1098, -1582, -15461, -1540, -2187, -2433, -9229, + -15462, -731 + ], + [0, -519, -754, -999, -1344, -932, -2125, -2127, -1534, -15463, -2251, -8177, -15464], + [0, -2757, -4100, -3671, -856, -15459, -3262, -687], + [1, 3, 10339], + [0, 10340, 0, 10341, 5], + [0, -15465], + [0, -5092, -2759, -1437, -3162, -13614], + [1, 3, 10343], + [0, 10344, 10345, 10346, 4], + [0, -14393, -1548, -2029], + [ + 0, -21, -23, -40, -41, -533, -708, -915, -916, -932, -940, -943, -15466, -958, -966, -968, -969, -974, -1415, + -1942, -15467, -1967, -1992, -2006, -2019, -2052 + ], + [0, -915, -1415, -4045, -8911, -1950, -674, -5845, -3634, -5119, -4004], + [1, 3, 10348], + [0, 10349, 0, 10350, 5], + [0, -464, -15468, -615, -15469, -2387, -2536], + [ + 0, -5409, -510, -15470, -15471, -15472, -15473, -8676, -15474, -15475, -7347, -6656, -6527, -1594, -11872, + -3162, -15476, -15477, -1838, -1961, -9591, -15478, -5408 + ], + [1, 3, 10352], + [0, 0, 14, 10353, 9], + [ + 0, -5559, -9692, -3264, -8034, -3223, -15479, -7723, -8472, -3590, -3110, -9681, -5846, -15480, -2544, -15481, + -15482 + ], + [1, 3, 10355], + [0, 10356, 10357, 10358, 5], + [0, -674, -15483, -929, -572, -529, -569, -1077, -15484, -1610, -1646, -14584], + [0, -526, -539, -549, -566, -708, -15485, -932, -1654, -1788], + [ + 0, -1446, -3690, -10855, -856, -6948, -15486, -6950, -15487, -6949, -15488, -6951, -15489, -11798, -15490, + -6952, -15491, -15492 + ], + [1, 3, 10360], + [0, 0, 55, 10361, 4], + [0, -932, -5208, -3784, -3862, -9420, -11315, -8199, -4100, -856], + [1, 3, 10363], + [0, 0, 10364, 10365, 4], + [0, -1116, -2251, -2322], + [0, -856, -10858, -15493, -10925, -15494, -15411, -3966], + [1, 3, 10367], + [0, 87, 275, 10368, 4], + [0, -9590, -9589, -9588, -2444, -3590, -3264, -1391, -9682], + [1, 3, 10370], + [0, 87, 275, 10371, 6], + [0, -9590, -9589, -9588, -2444, -3590, -3264, -775, -3585, -1838], + [1, 3, 10373], + [0, 10374, 10375, 10376, 4], + [0, -5334, -2742, -9596, -1968, -2235, -9584, -9585], + [0, -3705, -3037, -652, -1459, -1839, -1942, -2094, -2100, -2399, -2410, -2541], + [0, -9590, -9589, -9588, -2444, -3590, -3264, -1839, -3272, -10919], + [1, 3, 10378], + [0, 87, 92, 10379, 5], + [0, -9590, -9589, -9588, -2444, -3590, -3264, -3830, -9682, -15495, -15496, -15497], + [1, 3, 10381], + [0, 10382, 10383, 10384, 8], + [0, -2595], + [0, -985, -1637, -1942, -2320, -2322], + [0, -3272, -3264, -1838, -6231], + [1, 3, 10386], + [0, 0, 10387, 10388, 5], + [0, -3037, -652, -2586, -1288, -1292, -1729, -1942, -2094, -2100, -2399, -2410, -2541], + [0, -3264, -9703, -6818, -6557, -9682, -15498, -5387, -5388], + [1, 3, 10390], + [0, 10391, 0, 10392, 5], + [0, -812], + [ + 0, -1334, -1342, -1501, -1004, -1030, -12868, -11998, -15499, -15500, -15501, -15502, -12868, -11994, -15503, + -3445 + ], + [1, 3, 10394], + [0, 0, 130, 10395, 4], + [0, -775, -3209, -15504, -1889], + [1, 3, 10397], + [0, 276, 10398, 277, 4], + [0, -9848, -2776], + [1, 3, 10400], + [0, 276, 10401, 277, 6], + [0, -2774, -15505, -9848, -2776], + [1, 3, 10403], + [0, 0, 0, 10404, 4], + [0, -525, -2006, -1368, -3161, -4729, -9850, -3264, -9851, -3844, -5092, -4865, -2127, -15506, -15507, -5272], + [1, 3, 10406], + [0, 0, 10407, 10408, 4], + [0, -824, -1168, -784, -1889, -1243, -15508, -1238, -1270, -15509], + [0, -775, -3576, -3577, -3161, -3578, -15510], + [1, 3, 10410], + [0, 10411, 10412, 10413, 4], + [0, -1666, -2161], + [0, -510, -1127, -1138, -1145, -1148, -1162, -1446, -1548, -2105], + [0, -620, -15511, -15512, -856, -1446, -7674, -4101], + [1, 3, 10415], + [0, 0, 10416, 10417, 6], + [0, -9705, -3037, -11458, -1412, -1452, -2173, -2388, -12348, -2410, -12349], + [0, -4004, -3634, -11468, -12350, -11467, -1412], + [1, 3, 10419], + [0, 10420, 10421, 10422, 5], + [0, -10041, -13980, -3740, -1427, -1950, -2375], + [ + 0, -15513, -4, -5, -6, -7, -8, -9, -10, -12, -13, -14, -23, -40, -86, -9404, -3244, -190, -10041, -4020, -237, + -3048, -3136, -3037, -3199, -427, -428, -15514, -533, -668, -10525, -740, -767, -4805, -932, -940, -958, -959, + -960, -967, -999, -1077, -15515, -1107, -1110, -1344, -1415, -1419, -1449, -1868, -1942, -2125, -2153, -2177, + -2387, -2392, -2400, -2410, -2411, -2567 + ], + [0, -1415, -2410, -475, -3634], + [1, 3, 10424], + [0, 10425, 10426, 10427, 5], + [0, -2699, -656, -668, -679, -719, -729, -6798, -1805, -1906, -1907, -2213, -2218, -12979, -2433, -2531], + [ + 0, -23, -162, -3778, -163, -237, -350, -351, -15516, -367, -7043, -406, -407, -409, -410, -5039, -3136, -8334, + -3037, -3040, -3052, -9947, -4764, -4204, -427, -428, -440, -15517, -4734, -518, -767, -932, -940, -943, -958, + -965, -968, -969, -1415, -1428, -1521, -1753, -1771, -1889, -14336, -15518, -1942, -2006, -2019, -2029, -2125, + -2127, -4063, -2132, -6483, -2162, -2278, -2318, -2410, -2466, -15519 + ], + [0, -3634, -1415, -3100, -7566, -812, -15520], + [1, 3, 10429], + [0, 10430, 10431, 10432, 8], + [0, -1403, -15521], + [0, -15522, -15523, -1202, -1276, -1654, -3261], + [ + 0, -9198, -6515, -812, -3671, -856, -6899, -3960, -3262, -1276, -4187, -8453, -4676, -15524, -15525, -1548, + -5545, -1599, -3110, -3261, -15440 + ], + [1, 3, 10434], + [0, 10435, 10436, 10437, 10], + [0, -15526], + [0, -1586, -1729, -2337], + [0, -1586, -15527, -9409, -3844, -3445], + [1, 3, 10439], + [0, 10440, 10441, 10442, 8], + [0, -10869], + [0, -3037, -652, -1638, -1942, -2094, -2100, -2399, -2410, -2541], + [0, -1638, -15528, -15529, -6818, -7724, -15530, -3264, -4329, -1599, -2427], + [1, 3, 10444], + [0, 0, 0, 10445, 4], + [0, -1638, -2444, -3590, -3264, -6422], + [1, 3, 10447], + [0, 0, 0, 10448, 10], + [0, -1638, -2444, -3590, -3264, -6818, -6557], + [1, 3, 10450], + [0, 0, 10451, 10452, 4], + [0, -6874, -1127, -1452, -1666, -2525, -2416, -10264, -1154, -15531, -1149, -1136, -1144, -1148], + [0, -2442, -3162, -9918, -15423, -6659, -14867, -4865, -9318, -15532, -15533], + [1, 3, 10454], + [0, 10455, 10456, 10457, 4], + [0, -7177], + [0, -1415, -932, -2375, -1942, -2410, -3136, -3037, -7178, -940, -428, -427], + [0, -15534, -15535, -775], + [1, 3, 10459], + [0, 10460, 92, 10461, 6], + [0, -4231, -2738, -2739, -10909, -15536, -15537, -15538], + [0, -1838, -3264, -7472, -4846, -8034, -3223], + [1, 3, 10463], + [0, 0, 0, 10464, 4], + [0, -1889, -9300, -3756, -9339, -2006, -775, -15539], + [1, 3, 10466], + [0, 10467, 130, 10468, 5], + [0, -2773], + [0, -775, -3209, -1889], + [1, 3, 10470], + [0, 0, 10471, 10472, 9], + [ + 0, -23, -40, -15540, -4690, -15541, -932, -1412, -1471, -1475, -1476, -1479, -1481, -1486, -1491, -11943, -1970, + -1978, -2127, -2128, -3571, -2139, -2140, -10312, -4881 + ], + [0, -9407, -1978, -1874, -4864, -15542, -15543, -4902, -3634, -11468, -1970, -11467, -4881, -15221], + [1, 3, 10474], + [0, 10475, 10476, 10477, 9], + [0, -567, -1275, -1967], + [0, -633, -634, -668, -824, -1168, -1179, -1205, -1243, -15544, -1262, -1266, -1632, -15545, -2006, -2019, -2463], + [0, -2006, -3159, -2319, -15546, -2363, -15547, -1275, -3162], + [1, 3, 10479], + [0, 10480, 10481, 10482, 8], + [ + 0, -15548, -303, -15549, -304, -4360, -6448, -469, -470, -668, -680, -728, -812, -1125, -1353, -1442, -5265, + -1641, -1789, -1790, -1816, -1966, -2177, -2205, -2223, -3610, -4002, -7982, -15550, -2426, -5721 + ], + [ + 0, -2581, -86, -3307, -4368, -15551, -11765, -15552, -350, -4062, -351, -3561, -3198, -3660, -3713, -3735, + -3199, -15553, -15554, -3664, -13376, -1344, -1498, -1722, -4362, -5263, -1942, -2127, -6483, -2392, -2400, + -2410, -2469 + ], + [0, -3690, -489, -11768, -856, -11148, -11773, -1789, -3438, -11772, -11769, -11771, -11770, -11410, -4328, -4847], + [1, 3, 10484], + [0, 0, 10485, 10486, 11], + [ + 0, -5295, -409, -3136, -3040, -3052, -13529, -427, -428, -757, -825, -932, -940, -967, -969, -970, -1103, + -15555, -1415, -15556, -1637, -15302, -15557, -1942, -2006, -2019, -13531, -2214, -2375, -2410, -15558 + ], + [0, -2006, -12474, -3159, -8597, -13241, -15559, -712, -3577, -15560, -15273, -2012, -4666, -11876, -4665, -15561], + [1, 3, 10488], + [0, 10489, 10490, 10491, 4], + [0, -2594], + [0, -40, -41, -3040, -915, -916, -1415, -1992, -2052, -2127, -2128, -2131, -2137], + [0, -2442, -3162, -9918, -15423, -6659, -14867, -4865, -15562, -15563, -9318, -6106, -4000], + [1, 3, 10493], + [0, 0, 10494, 10495, 4], + [ + 0, -86, -3037, -3040, -3052, -3075, -427, -9700, -932, -940, -9106, -958, -965, -967, -968, -969, -1344, -1415, + -1534, -1637, -1942, -1952, -2006, -2019, -2044, -2046 + ], + [0, -2006, -9843, -3122, -2043, -2044, -15564, -2634], + [1, 3, 10497], + [0, 0, 10498, 10499, 4], + [ + 0, -1788, -1449, -1471, -1654, -2006, -2074, -2210, -507, -932, -1548, -1940, -2334, -4258, -708, -753, -1958, + -2501, -589, -2019, -15565, -2410, -23, -3037, -1482, -2040, -3040, -534, -11472, -1492, -50, -1025, -3052, -40, + -3062, -969, -2052, -15566, -406, -1483, -1475, -1487, -1479, -14780, -428, -5030 + ], + [0, -5922, -6439, -2006, -7378, -15567, -821], + [1, 3, 10501], + [0, 0, 0, 10502, 4], + [0, -2034, -3162, -5270, -5271, -7084, -6656, -14311, -15176, -15568, -6528, -4100], + [1, 3, 10504], + [0, 0, 10505, 10506, 4], + [0, -44, -3040, -3141, -2006, -2034, -2410], + [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -15071, -13615, -15569, -6527, -15570], + [1, 3, 10508], + [0, 94, 10509, 10510, 5], + [0, -528, -932, -933, -940, -958, -962, -967, -969, -1942, -15571], + [ + 0, -2034, -3159, -12567, -2006, -3162, -5270, -3160, -1959, -15572, -15573, -15574, -10677, -15575, -15576, + -6716, -5176 + ], + [1, 3, 10512], + [0, 10513, 10514, 10515, 4], + [0, -798, -15577, -799, -801, -1967], + [ + 0, -15578, -4757, -6263, -4754, -15579, -528, -533, -14782, -807, -932, -943, -958, -966, -968, -969, -15580, + -974, -1344, -1415, -1534, -1942, -1952, -2006, -2034, -15571, -2052 + ], + [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -9472, -6581, -14497, -797], + [1, 3, 10517], + [0, 10518, 10519, 10520, 6], + [0, -997], + [0, -3157, -932, -12566], + [0, -2034, -3159, -12567, -2006, -3163, -3162, -5270, -5271, -3160, -10028, -15581, -15582], + [1, 3, 10522], + [0, 10523, 10524, 10525, 8], + [0, -2798, -2489], + [ + 0, -15583, -21, -23, -3204, -39, -40, -6056, -41, -161, -163, -2997, -350, -351, -3561, -409, -2622, -3040, + -528, -533, -767, -932, -940, -956, -959, -968, -969, -970, -1059, -11942, -1103, -15584, -1415, -15302, -1942, + -1952, -2006, -2019, -15585, -2052, -2125, -2127, -2128, -2140, -2410 + ], + [0, -2006, -2804, -12051, -3095, -7582, -3821, -3822], + [1, 3, 10527], + [0, 10528, 10529, 10530, 8], + [0, -15586, -2730, -682], + [ + 0, -15587, -5295, -406, -407, -409, -15588, -3059, -3037, -3040, -3052, -440, -3899, -795, -1449, -2910, -2006, + -2019, -2214, -2892, -2387, -2410, -2469 + ], + [0, -2006, -3576, -4126, -3162, -12129], + [1, 3, 10532], + [0, 10533, 10534, 10535, 10], + [0, -2387, -15589], + [0, -15590, -5295, -2214, -2006, -2019], + [0, -2006, -5553, -775], + [1, 3, 10537], + [0, 0, 10538, 10539, 4], + [0, -509, -1654, -1939], + [0, -775, -712, -15559, -5554], + [1, 3, 10541], + [0, 10542, 0, 77, 5], + [0, -2869, -424, -15591, -15592, -15593, -15594, -15595, -15596, -15597, -15598, -15599, -15600, -15601], + [1, 3, 10544], + [0, 0, 10545, 272, 5], + [ + 0, -23, -40, -42, -86, -3307, -3326, -15155, -3561, -3266, -3136, -3037, -427, -428, -441, -7465, -528, -533, + -8349, -726, -767, -932, -943, -958, -966, -968, -980, -1103, -1344, -1392, -1415, -1419, -1534, -2125, -2127, + -2142, -2410, -2478 + ], + [1, 3, 10547], + [0, 0, 10548, 259, 8], + [ + 0, -3800, -684, -748, -778, -1041, -3544, -1643, -1942, -2116, -2162, -2163, -2376, -2410, -2437, -2501, -2503, + -2508 + ], + [1, 3, 10550], + [0, 33, 10551, 10552, 4], + [0, -5295, -2214, -407, -409, -15590, -1419], + [0, -2006, -9080, -15602, -15603, -15604], + [1, 3, 10554], + [0, 10555, 10556, 10557, 6], + [0, -15605, -2387], + [0, -5295, -2214, -15590, -15606, -916, -2006, -2019], + [0, -15607, -2006, -15608], + [1, 3, 10559], + [0, 10560, 10561, 10562, 5], + [0, -753, -44, -15609, -15610], + [ + 0, -1521, -2299, -2501, -778, -2410, -23, -1522, -2503, -534, -2275, -15611, -2508, -40, -2301, -2505, -42, -38, + -535, -3362, -26, -36, -35 + ], + [0, -4000, -812, -3162], + [1, 3, 10564], + [0, 0, 10565, 10566, 10], + [0, -3037, -4371, -2447, -2466], + [0, -2466, -3161, -8113], + [1, 3, 10568], + [0, 0, 10569, 10570, 5], + [ + 0, -527, -534, -559, -767, -778, -1041, -1743, -2680, -2163, -15612, -2275, -2476, -2481, -2483, -2484, -2485, + -2501, -2505 + ], + [0, -11853, -11851, -15613, -15614, -15615, -15616, -15617, -3100, -15618], + [1, 3, 10572], + [0, 10573, 0, 271, 8], + [0, -653, -914, -2710, -15380, -2433, -2719, -3546], + [1, 3, 10575], + [0, 0, 10576, 10577, 5], + [ + 0, -21, -23, -26, -36, -40, -42, -3330, -15619, -3136, -3037, -6630, -427, -428, -527, -533, -535, -932, -934, + -940, -958, -967, -1415, -5133, -1942, -2174, -2410 + ], + [0, -1415, -1001, -4116, -510, -5867, -1961, -4868, -3634, -5119], + [1, 3, 10579], + [0, 10580, 10581, 10582, 5], + [0, -11458, -2173], + [0, -9705, -11477, -1168, -12346, -1412, -1888, -15414, -2410], + [0, -3634, -11468, -12350, -11467, -5769], + [1, 3, 10584], + [0, 10585, 10586, 10587, 4], + [0, -464, -668, -824, -1107, -1371, -1646, -1980, -2105, -2125, -2177, -2536], + [ + 0, -5682, -3711, -15620, -3036, -11697, -9705, -8566, -5686, -3037, -12344, -8852, -8890, -11458, -3199, -11343, + -11477, -1168, -12346, -1412, -2150, -2173, -2410 + ], + [0, -475, -4004, -3634, -1970, -11468, -12350, -11467, -2173], + [1, 3, 10589], + [0, 117, 55, 10590, 4], + [ + 0, -2265, -7472, -4112, -6730, -13460, -6787, -13461, -13462, -13463, -13465, -5514, -5559, -5563, -687, -3958, + -3974, -4000, -13466, -13467, -13468, -13469, -13470 + ], + [1, 3, 10592], + [0, 169, 10593, 10594, 5], + [0, -3037, -928, -15621, -1496, -15622, -2410, -2447], + [0, -15623, -9669, -3161, -9670, -8615, -1334, -3690], + [1, 3, 10596], + [0, 10597, 0, 10598, 8], + [0, -1460, -15624, -1442, -3241], + [0, -15279, -15625, -727, -856, -15280, -15281], + [1, 3, 10600], + [0, 0, 10601, 278, 6], + [0, -664, -3035, -3037, -15626], + [1, 3, 10603], + [0, 10604, 0, 95, 10], + [0, -15631, -15632, -823, -1878], + [1, 3, 10606], + [0, 39, 0, 10607, 5], + [0, -2006, -3159, -4217, -3694], + [0, 23, 0, 98, 4], + [0, 23, 0, 99, 6], + [1, 3, 10611], + [0, 10612, 10613, 10614, 4], + [0, -15633, -10576], + [0, -5859, -633, -13719, -2322], + [0, -7581, -7582, -7580, -7762, -15634, -5177, -15635, -3100, -633], + [1, 3, 10616], + [0, 10617, 10618, 10619, 4], + [ + 0, -15636, -15637, -15638, -15639, -15640, -640, -668, -671, -865, -866, -997, -1026, -14636, -1098, -1116, + -1353, -1376, -7408, -1460, -15641, -15642, -5895, -1958, -2177, -2193, -2331, -2410, -15643, -15644, -15645 + ], + [0, -2476, -15646, -15647, -15648, -15649], + [0, -2830, -15650, -3161], + [1, 3, 10621], + [0, 10622, 10623, 10624, 9], + [0, -44, -15651], + [ + 0, -1415, -2162, -1344, -2006, -915, -932, -2501, -1942, -767, -2019, -21, -778, -2095, -2410, -23, -1534, + -1771, -2163, -2503, -3040, -534, -2275, -15652, -15653, -4227, -15654, -4749, -40, -13427, -41, -969, -358, + -15655, -940, -962, -967, -1419, -42, -4757, -15656, -4758, -428, -4762, -38, -427, -12712, -15045 + ], + [0, -2006, -3095, -15657, -13652, -15658, -3162, -15106, -2410, -15659, -15660], + [1, 3, 10626], + [0, 10627, 10628, 7, 4], + [0, -668, -695, -719, -1610, -6294, -2177, -15661], + [0, -3802, -11346, -3037, -3199, -15662], + [1, 3, 10630], + [0, 10631, 10632, 7, 4], + [ + 0, -15663, -2564, -703, -834, -15664, -2303, -2466, -461, -623, -812, -4245, -5358, -743, -783, -5036, -2083, + -2177, -2814, -680, -5034, -928, -15665, -15666, -1442, -3447, -1827, -1966, -15667, -15668, -3535, -3027, + -15669, -1864, -10430, -2422, -15670, -15671, -5113, -2654, -3545, -15672, -1321, -1588, -2551, -989, -15673, + -8294, -3649, -14335, -15674, -2429, -15675, -15676, -15677, -8882, -4785, -3190, -4288, -15678, -6332, -3459, + -15679, -15680 + ], + [ + 0, -9740, -2162, -2127, -2426, -2469, -674, -2427, -15681, -15206, -15682, -2410, -5334, -1002, -2089, -3198, + -13046, -12145, -3199, -15683, -6327, -3660, -3735, -5204, -1736, -3983, -8523, -5114, -9602, -15684, -3712, + -9146, -2084, -15685, -15686 + ], + [1, 3, 10634], + [0, 10635, 0, 7, 5], + [0, -710, -15687, -1813, -2416], + [1, 3, 10637], + [0, 10638, 10639, 10640, 10], + [0, -714, -1077, -1376], + [0, -932, -959, -1415], + [0, -3871, -3262, -3976, -687, -11487], + [1, 3, 10642], + [0, 0, 10643, 10644, 10], + [ + 0, -350, -351, -668, -910, -932, -940, -958, -15688, -6099, -1343, -1344, -1534, -1654, -3446, -1942, -2125, + -2127, -2131, -15689, -2234, -2323, -10988 + ], + [0, -3108, -3110, -5889], + [1, 3, 10646], + [0, 0, 10647, 7, 8], + [0, -427, -428, -932, -935, -940, -948, -958, -962, -967, -969, -970, -1344, -1534, -1942, -2006, -2410], + [1, 3, 10649], + [0, 10650, 10651, 10652, 4], + [0, -15690], + [0, -3621, -823, -1654], + [0, -3578, -4004, -4043, -15691, -1654, -3161], + [1, 3, 10654], + [0, 0, 10655, 10656, 4], + [ + 0, -5295, -3136, -427, -428, -15692, -10529, -13751, -712, -932, -940, -967, -1107, -1415, -1942, -2127, -2140, + -2142, -2214, -2355, -2375, -2379, -2387, -2410 + ], + [ + 0, -712, -3215, -5845, -13241, -15559, -5549, -12065, -15693, -12067, -1510, -15694, -12434, -775, -15695, + -4665, -15696, -15697, -1644, -15698 + ], + [1, 3, 10658], + [0, 106, 10659, 280, 6], + [ + 0, -15587, -86, -3307, -2845, -4646, -3617, -3136, -3037, -427, -428, -932, -940, -1344, -1415, -1942, -2091, + -2375, -2410 + ], + [0, 23, 0, 97, 8], + [1, 3, 10662], + [0, 10663, 10664, 10665, 8], + [ + 0, -6332, -6326, -6329, -15702, -5334, -3660, -4251, -2854, -15703, -2586, -1288, -1292, -1294, -1349, -1442, + -14511, -1588, -15704, -10749, -5348, -2918, -2083, -4262, -5353, -2422, -2427, -2429, -5358 + ], + [0, -3983, -3037, -3664, -2834, -15705, -2469], + [0, -3671, -856, -2834, -15706, -15707], + [1, 3, 10667], + [0, 10668, 10669, 280, 4], + [0, -1004, -2080], + [ + 0, -15587, -86, -3307, -2841, -2845, -4646, -3617, -3136, -3037, -427, -428, -932, -940, -1344, -1415, -1942, + -2091, -2375, -2410 + ], + [1, 3, 10671], + [0, 10672, 10673, 10674, 4], + [0, -2080, -2379], + [0, -86, -3307, -4646, -3617, -3136, -3037, -427, -428, -668, -932, -940, -1344, -1415, -1942, -2091, -2375, -2410], + [0, -15699, -3967, -2410, -15700, -15701, -3161, -11894, -3445, -3482], + [1, 3, 10676], + [0, 23, 0, 97, 4], + [0, 23, 0, 98, 11], + [1, 3, 10679], + [0, 262, 10680, 10681, 4], + [0, -262, -4838], + [0, -2476, -2486, -4634, -2851, -15708, -15709, -12704, -3690, -7864, -9069, -2410, -3018, -8038, -9594], + [1, 3, 10683], + [0, 10684, 10685, 151, 5], + [0, -15710, -192, -15711], + [ + 0, -41, -15712, -15713, -407, -409, -410, -3040, -3052, -440, -703, -2006, -2019, -2042, -2044, -2113, -3820, + -15714, -727 + ], + [1, 3, 10687], + [0, 10688, 10689, 10690, 8], + [0, -2856], + [0, -2834, -999, -15715], + [0, -15707, -15716, -856, -15717, -4245, -15718, -15706], + [0, 0, 0, 10692, 5], + [0, -15318, -15719, -3445], + [1, 3, 10694], + [0, 10695, 10696, 10697, 9], + [0, -15717], + [0, -4251, -4231, -9602, -2090, -2098, -2101, -4245, -2427, -5358, -15715], + [0, -15716, -856, -15717, -4245, -15718], + [1, 3, 10699], + [0, 10700, 10701, 10702, 8], + [0, -14800, -14801, -820, -1002, -2400], + [0, -15720, -14804, -3311, -3312, -652, -14806, -2410], + [0, -14808, -4187, -2444, -3966, -4865, -3445, -3100, -507, -4004, -664, -14809, -14810], + [1, 3, 10704], + [0, 0, 10705, 10706, 5], + [0, -600, -633, -756, -1405, -1654, -2198, -2416], + [0, -8472, -2544, -7723, -14242, -3962, -7107, -5559, -6422, -7724, -2451, -3264, -775, -6138, -14672], + [1, 3, 10708], + [0, 10709, 0, 10710, 5], + [0, -15721], + [ + 0, -3843, -3118, -14066, -2006, -3100, -3577, -3445, -4725, -3578, -4865, -3214, -3756, -2410, -3966, -3967, + -3482, -15722, -5260 + ], + [1, 3, 10712], + [0, 10713, 0, 73, 9], + [0, -2984, -2885, -5766, -2400], + [1, 3, 10715], + [0, 269, 0, 95, 10], + [1, 3, 10717], + [0, 10718, 0, 77, 4], + [0, -424, -2704, -2826, -2863, -2706, -2707, -2902, -2903, -2940, -2708], + [1, 3, 10720], + [0, 0, 0, 10721, 4], + [ + 0, -3843, -3118, -14066, -2006, -3100, -3577, -3445, -4725, -3578, -4865, -3214, -3756, -2410, -3966, -3967, + -3482, -15724, -5260 + ], + [0, 23, 0, 97, 6], + [1, 3, 10724], + [0, 10725, 0, 246, 4], + [ + 0, -2531, -1107, -2624, -2550, -2177, -1961, -578, -719, -1384, -2166, -481, -533, -12547, -1624, -2516, -12548, + -1950, -2041, -458, -12550, -11463, -12551, -9870, -2082, -12552, -1421, -12553, -12554, -12555, -12556, -12557, + -12559, -12560, -15725 + ], + [1, 3, 10727], + [0, 10728, 0, 77, 10], + [ + 0, -2862, -424, -2976, -2872, -2705, -2853, -2850, -2827, -2848, -2849, -2828, -15726, -15727, -2865, -2703, + -2975, -15728, -2846, -15729, -2847, -2842, -15730, -15731, -2868, -2996, -2866 + ], + [1, 3, 10730], + [0, 10731, 10732, 268, 5], + [0, -2387, -2686], + [ + 0, -2006, -932, -2125, -2127, -1942, -2019, -2410, -3037, -3040, -2043, -3052, -2044, -15732, -3986, -3988, + -3075, -3267, -428, -427 + ], + [1, 3, 10734], + [0, 10735, 10736, 10737, 9], + [0, -15733, -15734, -15735, -617, -1004, -15736, -1338, -2520, -2558], + [0, -15737, -15738, -15739, -15740, -15741, -3617, -4203, -1683, -2293], + [0, -15742, -7661, -15743, -15744, -15745, -3445], + [1, 3, 10739], + [0, 23, 0, 98, 5], + [1, 3, 10741], + [0, 0, 10742, 10743, 4], + [0, -509, -1654], + [0, -2873, -5514, -712, -5535, -668, -775, -15559, -5549, -15746], + [1, 3, 10745], + [0, 10746, 10747, 10748, 10], + [0, -4843], + [0, -3037, -3040, -3052, -440, -2634, -2006, -2019, -2466, -6859, -2469, -4842], + [0, -3690, -856, -9736, -1713, -3438, -4847], + [1, 3, 10750], + [0, 10751, 0, 10752, 5], + [0, -1439, -7679, -722, -15447], + [0, -15318, -15719, -3445, -7660], + [1, 3, 10754], + [0, 0, 10755, 10756, 4], + [0, -8096, -652, -1942, -2094, -2100, -2125, -2322, -2399, -2410, -2541], + [0, -775, -3264, -5092, -3578, -6184, -13270, -5899, -9299], + [1, 3, 10758], + [0, 10759, 10760, 285, 10], + [0, -1313, -2564], + [ + 0, -15747, -86, -3307, -4835, -15748, -3036, -3037, -427, -428, -4627, -928, -932, -934, -940, -15749, -948, + -958, -967, -1107, -1344, -1534, -1942, -15750, -2125, -2383, -2392, -2410 + ], + [1, 3, 10762], + [0, 10763, 10764, 285, 4], + [0, -679, -2877], + [ + 0, -502, -2392, -1107, -1344, -932, -2125, -928, -1942, -2410, -3036, -3037, -1534, -15748, -2383, -86, -15750, + -958, -4627, -940, -967, -428, -934, -3307, -427, -948, -15749 + ], + [1, 3, 10766], + [0, 10767, 10768, 10769, 6], + [ + 0, -2531, -469, -2392, -5193, -1867, -2446, -649, -764, -15753, -2426, -680, -1646, -2694, -823, -1043, -11121, + -1878, -15754, -1354, -1340, -11964, -1101, -1997, -14221, -15755, -14032, -1851, -2160, -15756, -15757, -8274 + ], + [ + 0, -2193, -2125, -2127, -928, -4204, -749, -767, -3738, -15758, -5686, -5363, -2014, -11433, -2132, -4049, + -15759, -15760, -15761, -15762 + ], + [0, -15354, -3690, -7643, -15763, -11229, -3161, -15764, -11878, -3214, -9736, -3966, -2879, -2006, -15359, -2410], + [1, 24, 10771], + [0, 25, 10772], + 1743292800000, + [1, 3, 10774], + [0, 10775, 10776, 10777, 9], + [0, -15765, -15766, -15767, -15768, -15769], + [ + 0, -40, -15770, -15771, -15772, -3326, -350, -351, -3561, -3048, -3037, -15773, -427, -12837, -428, -518, -534, + -558, -726, -753, -756, -4809, -15774, -932, -958, -960, -5863, -1077, -1103, -3566, -15775, -15776, -1344, + -15777, -15778, -1771, -15779, -1891, -15780, -15781, -15782, -2127, -8895, -4753, -15783, -8896, -2140, -2142, + -2144, -2162, -5896, -15784, -5013, -2387, -2388, -15785, -2410, -8564 + ], + [ + 0, -12613, -15786, -12449, -12898, -2363, -11321, -3162, -2006, -2476, -475, -1940, -13615, -13616, -13613, + -15787 + ], + [1, 3, 10779], + [0, 0, 10780, 10781, 4], + [0, -50, -2410, -2466, -4840, -6859], + [ + 0, -15415, -15416, -15788, -15417, -15418, -11853, -10655, -15419, -6711, -15420, -15421, -4126, -15071, -2006, + -15422, -475, -2476, -5270, -3162, -11321, -15423, -15424 + ], + [1, 3, 10783], + [0, 10784, 10785, 10786, 5], + [0, -15789], + [0, -15790, -3136, -3037, -664, -12469, -1002], + [0, -15791, -6121, -460, -15792, -15793, -15794, -15795], + [1, 3, 10788], + [0, 10789, 10790, 7, 4], + [0, -15796, -3748, -948, -8339, -965, -968, -969, -1047, -1110, -15797, -2411], + [0, -3037, -10557, -932, -1344, -3781, -1498, -15798, -1772, -2399, -2410], + [1, 3, 10792], + [0, 10793, 0, 73, 4], + [0, -1456], + [1, 3, 10795], + [0, 10796, 10797, 286, 4], + [0, -4007, -658, -3190, -1548, -1549, -15799], + [0, -15800, -3037, -1278, -2410, -15801, -15802, -15803], + [1, 3, 10799], + [0, 10800, 0, 7, 6], + [0, -4231], + [1, 3, 10802], + [0, 0, 10803, 7, 8], + [0, -2386, -932, -2469, -1942, -2410, -3037, -965, -3664, -978, -940, -428, -427], + [1, 3, 10805], + [0, 10806, 10807, 10808, 9], + [0, -668, -1574, -1948, -2303], + [0, -1127, -1132, -1134, -1163, -2541], + [0, -9219, -3839, -9472, -6523, -6527, -7175, -1644], + [1, 3, 10810], + [0, 10811, 10812, 286, 5], + [0, -928, -4007, -2886], + [0, -1415, -2410, -3136, -3037, -15806, -15807], + [1, 3, 10814], + [0, 10815, 10816, 10817, 5], + [0, -522], + [0, -1788, -664, -2391, -1654, -2125, -1004, -2379, -2410, -3035, -3037, -3621, -511, -3617, -3983], + [0, -4665, -5119, -3634, -4873, -3440, -4666, -5986, -1874, -522], + [1, 3, 10819], + [0, 10820, 10821, 7, 5], + [ + 0, -483, -653, -6860, -13380, -14174, -15808, -5042, -1864, -2923, -7160, -2177, -3535, -2654, -2369, -15809, + -15810 + ], + [ + 0, -15661, -15811, -15812, -15813, -15814, -3037, -8523, -3199, -8200, -15815, -15816, -3664, -3665, -4817, + -8349, -815, -932, -8418, -3751, -1623, -3459, -6568, -1942, -2910, -15817, -15818, -2410, -15819, -15820, + -15821, -15822, -2466, -2469 + ], + [1, 3, 10823], + [0, 10824, 10825, 10826, 4], + [0, -812, -814, -1077, -1116, -7408, -2331], + [0, -3198, -15823, -3048, -664, -932, -1654], + [0, -867, -7347, -10908, -6131, -6656, -1334, -2435, -7107, -3445], + [1, 3, 10828], + [0, 0, 10829, 10830, 4], + [0, -3983, -3037, -3040, -9723, -1942, -2006, -2019, -3682, -2410], + [0, -2006, -5741, -12662, -12664, -12665], + [1, 3, 10832], + [0, 10833, 0, 10834, 5], + [0, -834, -3222, -681, -3620, -81, -66, -73, -74, -3502, -83, -68, -85, -15824, -6672, -15825], + [ + 0, -15826, -681, -3489, -15827, -15828, -5554, -15829, -7754, -3496, -3498, -3264, -3505, -3506, -3507, -3508, + -3509, -8841, -6217, -3161 + ], + [1, 3, 10836], + [0, 0, 287, 134, 4], + [1, 3, 10838], + [0, 10839, 10840, 10841, 11], + [0, -15830, -1967, -2055], + [ + 0, -21, -23, -32, -26, -33, -34, -35, -6034, -36, -38, -40, -41, -44, -406, -407, -409, -534, -753, -767, -932, + -933, -940, -958, -962, -967, -969, -1415, -1419, -1455, -1939, -1942, -2006, -2019, -2501, -2502, -2503, -2505 + ], + [0, -2006, -3476, -5176, -3159], + [1, 3, 10843], + [0, 0, 122, 10844, 5], + [0, -1107, -5569, -5570, -3215, -15831, -3116], + [1, 3, 10846], + [0, 10847, 0, 10848, 5], + [0, -681, -3517, -81, -15832, -66, -83, -68, -15824, -6672, -15825, -65, -15833, -3526, -15834, -15835], + [ + 0, -15826, -681, -3489, -15827, -15828, -5554, -15829, -7754, -3496, -3498, -3264, -3505, -3506, -3507, -3508, + -3509, -8841, -3161 + ], + [1, 3, 10850], + [0, 0, 37, 288, 8], + [1, 3, 10852], + [0, 10853, 10854, 10855, 4], + [0, -15836, -458, -812, -1729], + [0, -3198, -3037, -4201, -15837], + [0, -13739, -7572, -3690, -3323, -3161, -3482, -2901], + [1, 3, 10857], + [0, 23, 0, 289, 4], + [0, 23, 0, 289, 5], + [1, 3, 10860], + [0, 10861, 0, 170, 5], + [0, -5240, -5241, -431, -15838, -5244, -5245], + [1, 3, 10863], + [0, 10864, 0, 10865, 9], + [0, -15839, -15840, -15841, -15842, -15843, -15844, -15845, -15846], + [0, -15847, -2257, -15848, -3634, -4004, -15849, -15849, -2034, -2006, -3162, -5270, -5271, -3578], + [1, 3, 10867], + [0, 10868, 0, 10869, 6], + [0, -1439, -7679, -493, -495, -15444, -492], + [0, -15318, -15719, -3445, -7661], + [1, 3, 10871], + [0, 0, 10872, 10873, 5], + [0, -633, -1339, -2491], + [0, -2319, -8533, -3162, -2363, -5389, -6822], + [1, 3, 10875], + [0, 10876, 10877, 10878, 9], + [0, -15850, -2324], + [0, -1413, -1471, -1475, -1476, -1481, -11285, -1645, -1978, -2416], + [0, -10838, -10840, -3162, -4865], + [1, 3, 10880], + [0, 10881, 10882, 7, 4], + [0, -8535, -15851, -11270, -4848, -15852, -15853, -1826, -3653, -2062, -7967, -8544, -15854, -15855, -2531], + [ + 0, -13322, -9193, -13323, -15856, -357, -15857, -3037, -4204, -8549, -2917, -726, -2758, -932, -1030, -1122, + -1123, -15858, -2884, -1939, -1972, -2177, -2210, -2240, -2384, -2410, -2426, -2648 + ], + [1, 3, 10884], + [0, 10885, 10886, 10887, 11], + [0, -3459, -1863, -5037, -15811], + [0, -3735, -15206, -1966, -2469], + [0, -8403, -7148], + [1, 3, 10889], + [0, 10890, 10891, 7, 4], + [0, -25, -668, -2066, -2114, -2550], + [0, -528, -15859, -15860, -10445, -1978, -2070, -2226, -2250, -2322, -2359], + [1, 3, 10893], + [0, 10894, 132, 58, 5], + [0, -15861, -996, -15388, -15399], + [1, 3, 10896], + [0, 0, 0, 10897, 4], + [0, -15862, -3445, -13986, -11867, -7685, -2006], + [1, 3, 10899], + [0, 0, 0, 10900, 6], + [0, -932, -3784, -2006, -2041, -5324], + [1, 3, 10902], + [0, 10903, 10904, 10905, 8], + [0, -479, -9493, -812, -1022, -2778, -1446, -1597, -2359], + [ + 0, -23, -40, -43, -528, -664, -756, -932, -951, -1168, -1174, -1197, -1212, -1220, -1231, -1252, -1654, -15863, + -1788, -1939 + ], + [0, -1168, -1446, -7674, -3214, -7841, -856], + [1, 3, 10907], + [0, 10908, 0, 10909, 4], + [0, -1371, -15448, -1645, -1469], + [0, -15318, -15719, -3445, -15449, -15450], + [1, 3, 10911], + [0, 10912, 10913, 7, 4], + [0, -15274, -652, -999, -1047, -1107, -2548], + [0, -15864, -11419, -15865, -357, -3037, -15866, -2177, -932, -2884, -2410], + [1, 3, 10915], + [0, 0, 91, 10916, 10], + [0, -5372, -5142, -7282, -2918, -11889, -5573], + [1, 3, 10918], + [0, 0, 10919, 10920, 10], + [0, -2391, -2851], + [0, -2476, -2486, -4634, -2851, -3636, -4215, -3634], + [1, 3, 10922], + [0, 0, 10923, 10924, 4], + [0, -527, -1168, -1171, -15867, -1187, -1229, -1243, -1248, -1252, -1262, -1942, -2128], + [0, -15868, -15869, -15870, -15871, -15872, -15873, -3162, -11853], + [1, 3, 10926], + [0, 10927, 10928, 7, 4], + [0, -15874], + [0, -2476, -4838, -15875], + [1, 3, 10930], + [0, 0, 10931, 10932, 6], + [ + 0, -15661, -190, -15876, -15877, -3037, -3664, -6593, -932, -940, -960, -978, -1431, -7060, -1534, -8436, -1942, + -15878, -15879, -2910, -2174, -2892, -2400, -2410, -2411, -2469 + ], + [ + 0, -15880, -10587, -12437, -11639, -5112, -14059, -1548, -1993, -10656, -3481, -3018, -3694, -2410, -2424, + -2444, -8113, -3590, -5260 + ], + [1, 3, 10934], + [0, 10935, 10936, 10937, 6], + [0, -14337, -5322], + [ + 0, -5053, -11754, -15881, -4062, -639, -734, -999, -1107, -9665, -1852, -2922, -7160, -2127, -2202, -2231, + -2410, -2924, -2923 + ], + [0, -7882, -928, -7760, -2923, -2127, -2501], + [1, 3, 10939], + [0, 0, 10940, 10941, 5], + [0, -190, -3664, -932, -958, -960, -15882, -971, -972, -1449, -2892, -15883, -2410, -2411, -2466, -2469], + [0, -9022, -2410, -4058, -3926, -6747, -15884, -8461, -11997], + [1, 3, 10943], + [0, 0, 0, 10944, 6], + [0, -5889, -9080, -9800], + [1, 3, 10946], + [0, 10947, 10948, 10949, 10], + [ + 0, -3819, -15885, -15886, -15887, -15888, -15889, -15890, -15891, -15892, -3117, -8915, -4836, -15893, -15874, + -15894, -15895, -15896, -15897, -15898, -15899, -15900, -15901, -15902, -15903, -15904, -15905, -15906, -15907, + -15908, -15909, -15910, -4816, -4817, -14358, -15911, -15912, -734, -6860, -15913, -15914, -15915, -15916, + -15917, -15918, -15919, -1085, -14174, -15920, -1588, -1651, -15921, -12267, -1852, -15922, -6569, -2317, + -15923, -2318, -2654, -11071, -2981, -15924, -15925, -15926, -15927 + ], + [ + 0, -15928, -15929, -15930, -4646, -15931, -4837, -4838, -15932, -2932, -932, -1278, -7300, -2091, -2423, -2469, + -15130, -15933, -2476, -5627 + ], + [0, -15934, -7300, -3944, -2318, -5511, -2476, -5173, -3527, -2410, -4591, -3160, -2316, -3161, -15935], + [1, 3, 10951], + [0, 0, 10952, 10953, 11], + [0, -3136, -1415, -2375, -2379, -2391, -2410], + [ + 0, -3445, -4791, -9915, -15936, -15937, -15938, -15939, -15940, -15941, -15942, -15943, -775, -5272, -3100, + -15944, -15945, -15946, -15947, -15948, -15949, -15950, -15951, -15952, -15953, -15954, -15955, -2410, -15956, + -15957, -15958, -15959, -15960, -15961, -15962, -15963, -15964 + ], + [1, 3, 10955], + [0, 10956, 10957, 134, 6], + [0, -2932, -2896], + [0, -1415, -932, -2127, -2375, -1942, -2410, -3136, -3040, -940, -967, -1419, -428, -427], + [1, 3, 10959], + [0, 0, 10960, 10961, 5], + [0, -3040, -3052, -2006, -2019, -2410], + [0, -2006, -8785, -3962, -15273], + [1, 3, 10963], + [0, 10964, 10965, 10966, 5], + [0, -15965, -15966, -15967], + [ + 0, -15968, -15969, -15970, -15971, -15972, -15973, -15974, -15975, -15976, -15977, -15978, -15979, -15980, + -15981, -15982, -15983, -15984, -15985, -15986, -15987, -15988, -15989, -15990 + ], + [0, -2931, -4004, -3634, -10817, -4873, -664, -507, -856, -15991, -15992, -15993, -1446, -6024, -8257], + [1, 3, 10968], + [0, 0, 287, 134, 5], + [1, 3, 10970], + [0, 10971, 10972, 10973, 5], + [ + 0, -15994, -15995, -15996, -15997, -15998, -15999, -16000, -16001, -16002, -13406, -16003, -16004, -16005, + -1699, -2641, -2564, -2650 + ], + [0, -4049, -3037, -3040, -3052, -2006, -2019, -2469, -16006], + [ + 0, -16007, -1713, -2455, -16008, -2006, -3098, -3160, -3100, -2316, -2955, -16009, -16010, -15932, -3475, + -16011, -16012, -16013, -16014, -16015, -16016, -16017, -16018, -16019, -16020, -16021 + ], + [1, 3, 10975], + [0, 0, 0, 10976, 4], + [0, -12059, -775], + [1, 3, 10978], + [0, 10979, 10980, 10981, 4], + [0, -10782, -10784, -10786, -10793, -10788, -1691], + [0, -3136, -3037, -756, -1415, -1942, -2080, -2091, -2153, -2375, -2379, -2892, -2409, -2410], + [0, -5406, -4847, -856], + [1, 3, 10983], + [0, 10984, 10985, 10986, 5], + [0, -2650, -4225], + [0, -2466, -2006, -1122, -2019, -6859, -406, -440, -409, -407, -5323], + [0, -2006, -1122, -16022, -3862, -856, -10446], + [1, 3, 10988], + [0, 10989, 10990, 10991, 5], + [ + 0, -1313, -1826, -865, -16023, -13074, -1582, -16024, -1125, -16025, -1456, -15672, -16026, -16027, -16028, + -16029, -16030, -16031, -16032, -3234, -16033, -16034, -8863 + ], + [ + 0, -2564, -2391, -932, -1111, -2127, -2469, -2378, -3665, -2410, -23, -3037, -16035, -16036, -16037, -16038, + -1025, -4776, -4049, -16039, -16040, -3664, -16041, -16042, -16043 + ], + [0, -15932, -16044, -16045, -9733, -16046, -16047, -16048, -16049, -16050, -10412, -3674, -2410, -16051, -3161], + [1, 3, 10993], + [0, 0, 10994, 10995, 5], + [0, -50, -409, -3136, -855, -1415, -2634, -1942, -2006, -2019, -2052, -2125, -2375, -2410], + [0, -2006, -2634, -9736, -1713, -3122, -4215, -4004, -3634], + [1, 3, 10997], + [0, 0, 10998, 10999, 6], + [ + 0, -262, -4066, -350, -351, -3561, -5295, -16052, -3136, -4647, -16053, -4837, -7438, -4838, -5593, -708, -740, + -767, -1415, -1419, -1449, -1534, -6518, -1942, -2127, -2140, -2142, -2214, -2645, -2318, -2375, -2410, -2466, + -2476, -2483, -2486, -8160 + ], + [ + 0, -2476, -3944, -16054, -16055, -16056, -15150, -2645, -16057, -2939, -7580, -15151, -16058, -2410, -16059, + -2363, -3162, -3214, -3095, -3160 + ], + [1, 3, 11001], + [0, 94, 0, 11002, 4], + [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -15071, -13615, -6527], + [1, 3, 11004], + [0, 11005, 11006, 261, 6], + [0, -16060, -4787, -3751, -1864, -1889, -2923, -2654], + [ + 0, -25, -3195, -3180, -14337, -13397, -5322, -4066, -350, -7151, -4785, -10046, -4371, -14331, -6410, -653, + -679, -729, -742, -754, -769, -5042, -865, -866, -14335, -928, -929, -989, -990, -14338, -14333, -7897, -1588, + -1651, -5036, -1699, -1805, -1839, -1852, -14332, -1863, -1906, -1907, -14336, -12601, -11751, -7160, -2127, + -2134, -2162, -3572, -2213, -14334, -2334, -3027, -11071, -2531 + ], + [1, 3, 11008], + [0, 0, 0, 11009, 4], + [0, -2034, -3159, -5270, -5271, -11511, -770, -3162, -510, -2191, -11524, -11526, -7103, -16061, -16062, -2446], + [1, 3, 11011], + [0, 0, 37, 288, 9], + [1, 3, 11013], + [0, 11014, 11015, 11016, 9], + [ + 0, -3165, -16063, -16064, -3168, -3698, -11418, -16065, -5772, -16066, -16067, -16068, -16069, -5702, -16070, + -8859, -3778, -16071, -16072, -16073, -16074, -16075, -16076, -16077, -16078, -16079, -16080, -16081, -16082, + -16083, -16084, -16085, -16086, -16087, -16088, -16089, -16090, -16091, -16092, -16093, -16094, -16095, -16096, + -16097, -16098, -16099, -16100, -8863, -16101, -16102, -16103, -16104, -16105, -16106, -16107, -16108, -16109, + -402, -16110, -16111, -16112, -15748, -16113, -16114, -16115, -16116, -16117, -16118, -15257, -485, -5674, + -16119, -13751, -743, -16120, -809, -812, -16121, -834, -16122, -16123, -2761, -1025, -14636, -1043, -2573, + -16124, -1125, -1329, -1349, -9775, -16125, -11895, -1359, -5193, -16126, -16127, -1495, -16128, -16129, -16130, + -1549, -16131, -1593, -16132, -1610, -10749, -16133, -16134, -1699, -2634, -1712, -16135, -16136, -11750, -1782, + -16137, -16138, -16139, -16140, -16010, -12273, -16141, -16142, -16143, -11926, -1855, -1857, -1867, -16144, + -1885, -16145, -8504, -16146, -1984, -1994, -2006, -16147, -2019, -4988, -16148, -2025, -16149, -6620, -16150, + -2042, -16151, -2044, -16152, -16153, -16154, -2093, -2095, -2096, -16155, -16156, -2177, -2193, -4245, -16157, + -2272, -2292, -16158, -2592, -2314, -16159, -16160, -2594, -16161, -2436, -16162, -2446, -16163, -2531, -2548, + -2564, -2650, -16164 + ], + [ + 0, -86, -14379, -16165, -16166, -16167, -16168, -16169, -16170, -10811, -16171, -3983, -5681, -3842, -407, -409, + -410, -16172, -16173, -3198, -3048, -16174, -4049, -3044, -3164, -3037, -16175, -16176, -16177, -16178, -3040, + -3052, -16179, -3199, -14748, -12969, -4231, -4204, -8200, -3664, -5329, -721, -734, -767, -772, -16180, -865, + -866, -16181, -16182, -16183, -932, -16184, -16185, -1077, -1107, -1278, -1344, -11415, -16186, -1534, -1548, + -1605, -16187, -1640, -1729, -1733, -12282, -1826, -1942, -2094, -4242, -16188, -2098, -11417, -2174, -16189, + -2281, -2392, -2400, -2410, -2427, -2429, -2466, -2469 + ], + [0, -3161, -16011, -16017, -1713, -16190, -16010, -16191, -16192, -16193, -16194], + [1, 3, 11018], + [0, 291, 135, 63, 5], + [1, 3, 11020], + [0, 11021, 131, 11022, 5], + [0, -8863, -3617, -719, -1004, -5193, -2426, -2564], + [0, -16195, -16196, -16197, -16198, -16199, -856, -10817], + [1, 3, 11024], + [0, 11025, 11026, 11027, 4], + [0, -4890, -13377], + [ + 0, -2213, -1852, -2006, -2218, -2177, -2469, -13380, -2019, -2369, -3654, -3517, -1639, -1863, -2654, -2410, + -3037, -3199, -14373, -4036, -5087, -16200, -2970 + ], + [0, -2257, -4895, -2469, -3634, -4004, -3095, -3098, -13422, -2006, -2476, -2299, -4902], + [1, 3, 11029], + [0, 11030, 11031, 11032, 5], + [0, -997, -16201, -16202], + [0, -2501, -3136, -3037, -2503], + [0, -4123, -8503, -4004, -3634, -16203, -5858], + [1, 3, 11034], + [0, 0, 11035, 11036, 4], + [ + 0, -526, -527, -534, -559, -562, -566, -567, -16204, -664, -16205, -13261, -796, -812, -829, -932, -943, -968, + -974, -1017, -1041, -1077, -1322, -1331, -1471, -1474, -1475, -1479, -16206, -7707, -1480, -1482, -1483, -16207, + -1484, -1487, -1488, -1492, -1654, -1753, -1860, -2125, -14439, -5471, -2174, -2416, -14648, -2437, -2501, -2505 + ], + [0, -3576, -8897, -16208, -12613, -12449, -2363, -13616, -11594, -3162], + [1, 3, 11038], + [0, 11039, 11040, 11041, 5], + [0, -16209, -16210], + [ + 0, -3040, -3052, -3804, -427, -428, -726, -932, -940, -967, -969, -16211, -16212, -1942, -2127, -2142, -2379, + -2387, -2410 + ], + [0, -16213, -16214, -16215, -2006, -5270, -5271, -3162, -16216], + [1, 3, 11043], + [0, 0, 11044, 11045, 6], + [0, -2006, -2034, -12566, -16217], + [ + 0, -2034, -9021, -5270, -5271, -16218, -16219, -16220, -16221, -3161, -2006, -16222, -5269, -3209, -5922, + -16223, -3682, -3970, -3110, -9437 + ], + [1, 3, 11047], + [0, 11048, 0, 11049, 6], + [0, -2954, -2934], + [0, -712, -775, -3215], + [1, 3, 11051], + [0, 0, 0, 11052, 9], + [0, -714, -775], + [1, 3, 11054], + [0, 11055, 11056, 11057, 6], + [ + 0, -16224, -23, -25, -3412, -42, -16225, -8863, -16226, -635, -719, -755, -815, -823, -834, -999, -1026, -1077, + -12417, -1343, -1496, -1683, -1729, -1805, -1816, -1889, -1931, -1966, -2066, -16227, -2317, -2378, -2383, + -2450, -2564, -8882 + ], + [0, -4776, -3048, -3735, -16228, -2125, -2391, -2400, -2410], + [0, -3098, -3160, -2316, -16007, -2955], + [1, 3, 11059], + [0, 0, 0, 11060, 6], + [0, -2006, -2476, -9608, -9614, -16229, -16230], + [1, 3, 11062], + [0, 0, 11063, 11064, 6], + [ + 0, -3136, -3037, -427, -428, -932, -936, -940, -958, -967, -968, -972, -978, -1107, -1415, -1942, -2125, -2127, + -2130, -12925, -2142, -2375, -2379, -2402, -2405, -7322, -2410 + ], + [0, -16231, -8785, -16232, -16233, -16234, -16235, -16236, -16237, -3173, -16238, -3966, -4865, -3100, -3445], + [1, 3, 11066], + [0, 0, 0, 11067, 6], + [ + 0, -16239, -4053, -16240, -16241, -16242, -16243, -16244, -16245, -16246, -16247, -16248, -16249, -16250, + -16251, -12512, -16252, -16253, -4055, -1456, -16254, -16244, -5495, -3100, -3214, -2410 + ], + [1, 3, 11069], + [0, 11070, 0, 73, 4], + [ + 0, -2984, -5766, -2860, -5758, -501, -523, -16255, -615, -16256, -14855, -1069, -1100, -1107, -9362, -8985, + -5880, -1548, -1574, -1666, -1705, -10270, -1875, -1878, -2060, -2115, -2160, -2177, -2194, -2297, -5764, -2400, + -2446, -2518, -2555 + ], + [1, 3, 11072], + [0, 11073, 11074, 11075, 4], + [0, -15224, -15226], + [0, -3037, -15229, -15230, -15231, -2125, -2892, -2410, -2469], + [0, -15227, -9668, -3690, -3445, -1348, -9780], + [1, 3, 11077], + [0, 11078, 11079, 11080, 4], + [ + 0, -1313, -1852, -2922, -6570, -2924, -11918, -12278, -7772, -6475, -4835, -1341, -16257, -8859, -12284, -8860, + -16258, -16259 + ], + [0, -2391, -2469, -5672, -6568, -2410, -3037, -8321, -16260, -2832, -11347], + [0, -1954, -10425, -16261, -8427, -3113, -7646, -3634], + [1, 3, 11082], + [0, 11083, 11084, 11085, 6], + [0, -16262, -16263], + [0, -16264, -767, -932, -1641, -16265, -1788, -1972, -16266, -2322], + [0, -5817, -5819, -5937, -13192, -5801, -16267, -16268, -5951, -5940, -5943, -16269, -3161], + [1, 3, 11087], + [0, 11088, 11089, 7, 4], + [0, -16270], + [0, -879, -2410, -7768], + [1, 3, 11091], + [0, 11092, 11093, 11094, 10], + [0, -2006, -2019, -16271], + [0, -1992, -2125, -2388, -2376, -1967, -2410, -23, -3037, -3040, -534, -3052, -3140, -520], + [0, -2356, -3488, -16272, -2006, -3496, -3264, -3494, -13460, -11889, -4258], + [1, 3, 11096], + [0, 0, 11097, 11098, 5], + [ + 0, -12182, -190, -4225, -16273, -16274, -4836, -16275, -407, -409, -410, -3269, -3732, -3661, -3037, -3040, + -3052, -16276, -14827, -651, -703, -724, -786, -932, -970, -2914, -1110, -1344, -1449, -1534, -1600, -1610, + -1889, -1942, -8918, -2006, -16277, -2019, -2965, -16278, -2044, -2140, -2144, -16279, -2193, -2213, -2317, + -2318, -2334, -16280, -2379, -2392, -2410, -2411, -11708, -2466, -6859, -15519, -2469, -16281, -2650 + ], + [0, -2006, -3476, -9614, -6409, -16282, -4108, -12682, -12683, -12684, -4002, -4672, -9133], + [1, 3, 11100], + [0, 11101, 11102, 11103, 5], + [0, -4785, -12535, -462, -674, -742, -812, -14335, -1026, -1077, -1451, -1588, -1852, -1863, -2041, -2127, -2153], + [ + 0, -16283, -16284, -4066, -350, -4062, -351, -365, -8894, -16285, -3202, -3198, -3048, -4963, -16286, -3037, + -3040, -3052, -427, -428, -440, -4837, -679, -928, -13212, -932, -969, -4981, -1771, -13593, -2006, -2019, + -2125, -2132, -6483, -2299, -2400, -2410, -2466, -16287, -2469, -2476 + ], + [0, -12913, -5044, -10366, -16288, -5195, -16289, -16290, -4865, -16291], + [1, 3, 11105], + [0, 11106, 11107, 7, 5], + [0, -797, -16292, -16293], + [ + 0, -652, -16294, -2392, -2466, -1449, -1654, -659, -932, -2127, -1110, -1942, -2378, -16295, -2468, -190, -2410, + -3037, -1440, -3621, -16296, -7273, -3244, -16297, -4062, -16298, -7274, -3266, -1602, -940, -350, -428, -351, + -427 + ], + [1, 3, 11109], + [0, 11110, 11111, 11112, 6], + [0, -8612, -1063, -1343, -16299], + [0, -4835, -3037, -16300, -1313, -1722, -2359], + [ + 0, -659, -13649, -16301, -16302, -11878, -6523, -6524, -6527, -5093, -16303, -7650, -16304, -16305, -6528, + -3839, -5057 + ], + [1, 3, 11114], + [0, 11115, 11116, 11117, 8], + [0, -16306], + [0, -2376, -2410, -2501, -2503, -2006, -2019, -3040, -3052], + [0, -2006, -16306, -6656, -6999, -9800, -16307, -6527, -3496, -7764, -16308, -5937, -5940, -5800, -8624], + [1, 3, 11119], + [0, 11120, 11121, 11122, 5], + [0, -14372, -13388, -5286], + [0, -2469, -1874], + [0, -4865, -1874, -3095, -7243, -4004, -3634], + [1, 3, 11124], + [0, 11125, 11126, 11127, 4], + [0, -502, -668, -679, -1098, -1099, -1125, -1304, -1351, -1535, -1610, -1978, -2177, -5977], + [0, -16309, -3802, -3199, -13186, -519, -659, -1788, -11926, -1942, -1944, -11491, -2379, -2384, -2410, -2541], + [0, -16310, -687, -16311, -856, -16312, -16313, -1599, -6528, -1978, -11096, -16314], + [1, 3, 11129], + [0, 11130, 11131, 278, 5], + [0, -668, -2550, -16315, -2823, -16316], + [0, -3037, -16317], + [1, 3, 11133], + [0, 11134, 91, 11135, 5], + [0, -2177, -2823, -16316, -16318], + [0, -15627, -15629, -15630, -4864, -3634, -3636], + [1, 3, 11137], + [0, 11138, 11139, 11140, 4], + [0, -16319, -16316, -16318, -2823], + [0, -2973, -16320, -15626, -5769, -1870, -11468], + [0, -15627, -15629, -15630, -4864, -3634, -3636, -11890], + [1, 3, 11142], + [0, 11143, 11144, 11145, 4], + [0, -719, -2683, -2822, -16321], + [0, -15624, -16322, -16323, -2983], + [0, -15279, -687, -3262, -856, -15280, -15281], + [1, 3, 11147], + [0, 11148, 0, 11149, 4], + [0, -16324], + [0, -15279, -15625, -16325, -16326, -856, -15280, -15281], + [1, 3, 11151], + [0, 94, 11152, 11153, 8], + [ + 0, -3307, -12564, -4646, -3136, -3044, -3040, -3141, -427, -428, -721, -932, -940, -967, -1344, -1415, -16327, + -1942, -2006, -2034, -12566, -2091, -2410 + ], + [0, -2034, -3159, -5270, -5271, -16328, -16329, -3162, -5269, -3095, -6107, -7067, -14498, -11378, -2319], + [1, 3, 11155], + [0, 11156, 11157, 11158, 10], + [0, -2340], + [0, -16178, -1857], + [0, -10425, -6321, -3634, -7606, -2340], + [1, 3, 11160], + [0, 11161, 11162, 7, 6], + [0, -3195, -1864, -4247], + [ + 0, -5694, -16224, -16330, -16331, -10097, -10098, -3037, -8523, -8200, -483, -8349, -16332, -928, -932, -16333, + -1431, -1534, -1588, -2923, -2127, -3246, -2892, -2410, -16334, -15822, -2466, -2469, -2501, -2503, -2981 + ], + [1, 3, 11164], + [0, 72, 0, 11165, 6], + [0, -15279, -15625, -16335, -856, -15280, -15281], + [1, 3, 11167], + [0, 11168, 0, 11169, 10], + [0, -16336], + [0, -15279, -15625, -16337, -6999, -856, -15280, -15281], + [1, 3, 11171], + [0, 11172, 0, 73, 5], + [0, -4716, -1548, -1582, -10515], + [1, 3, 11174], + [0, 0, 11175, 11176, 5], + [ + 0, -50, -190, -3035, -3664, -469, -932, -940, -1942, -2125, -2134, -2210, -2334, -2384, -2387, -2402, -2405, + -2411, -2466, -16338, -16339, -16340, -16341, -2468, -2469 + ], + [0, -16342, -5177, -3214, -2410, -16343, -16344, -6899, -16345, -3162], + [1, 3, 11178], + [0, 0, 11179, 11180, 5], + [ + 0, -50, -3037, -427, -428, -7438, -932, -940, -1003, -1654, -1942, -16346, -2134, -16347, -2210, -2402, -2405, + -2410, -2466, -16338, -16339, -16340 + ], + [0, -5177, -16343, -9475, -3999, -6899, -16345, -659, -7085, -3578, -3162], + [1, 3, 11182], + [0, 11183, 0, 11184, 4], + [0, -2357], + [0, -4144, -3214, -16348, -2987, -1942, -2410], + [1, 3, 11186], + [0, 0, 0, 11187, 4], + [ + 0, -3015, -16349, -1520, -15360, -10440, -1764, -1787, -5895, -7442, -1882, -2177, -7969, -3682, -16350, -16351, + -11713, -4304, -2552 + ], + [1, 3, 11189], + [0, 0, 11190, 7, 4], + [ + 0, -16352, -16353, -280, -16354, -16355, -350, -4062, -351, -7155, -4007, -11348, -16356, -16357, -11752, -719, + -831, -16358, -3459, -1863, -2144, -16359, -16360 + ], + [1, 3, 11192], + [0, 11193, 0, 73, 11], + [ + 0, -2959, -2860, -5758, -8864, -5761, -523, -615, -617, -1004, -11676, -1341, -1548, -1582, -1635, -1676, -1851, + -2185, -2400 + ], + [1, 3, 11195], + [0, 291, 135, 63, 11], + [1, 3, 11197], + [0, 11198, 135, 63, 11], + [0, -3947, -231, -2944, -2900], + [1, 3, 11200], + [0, 11201, 11202, 11203, 10], + [ + 0, -2564, -6860, -6415, -16361, -16362, -16363, -2292, -16364, -16365, -16122, -16366, -16367, -16368, -16369, + -16370, -5038, -16371, -5779, -5782 + ], + [0, -1683, -16178, -3631, -2410, -3037, -16372, -3617, -16373, -8859, -16374, -12285, -16375], + [ + 0, -16376, -16377, -14981, -16378, -16379, -3445, -16380, -16381, -16382, -11877, -16383, -16384, -16385, + -16386, -16387 + ], + [1, 3, 11205], + [0, 11206, 11207, 11208, 10], + [0, -1047, -1863, -1875], + [0, -11337, -3040, -825, -1802, -12566, -2410], + [ + 0, -2034, -5270, -5271, -12578, -7084, -12579, -3159, -12567, -2006, -3162, -3160, -3167, -3843, -9472, -9474, + -3827 + ], + [1, 3, 11210], + [0, 11211, 0, 11212, 8], + [0, -2460, -1641, -2683, -16324], + [0, -15279, -15625, -5398, -856, -15280, -15281], + [1, 3, 11214], + [0, 0, 11215, 11216, 9], + [ + 0, -16388, -15583, -21, -23, -3203, -38, -40, -16389, -16390, -3326, -3561, -528, -533, -10056, -10022, -15127, + -16391, -11899, -726, -865, -932, -956, -958, -9724, -1059, -11942, -13866, -1344, -1415, -5123, -12680, -4981, + -4982, -1868, -16392, -1942, -1952, -1978, -16346, -2127, -16393, -2134, -2140, -2144, -2184, -2410 + ], + [0, -3821, -3822, -3823, -3825, -16394, -16395], + [1, 3, 11218], + [0, 0, 11219, 11220, 9], + [0, -3266, -3621, -3037, -632, -664, -1654, -1753, -2127, -2344, -2410], + [ + 0, -16396, -2998, -16397, -7049, -5176, -16398, -15100, -16055, -15213, -6899, -11853, -16399, -16400, -12543, + -16401, -7198, -10724, -16402, -16403, -16404 + ], + [1, 3, 11222], + [0, 0, 70, 11223, 9], + [0, -13351, -16405], + [1, 3, 11225], + [0, 11226, 11227, 11228, 9], + [0, -16406, -16407, -16408, -16409, -16410], + [0, -683, -932, -16411, -16412, -1989, -2281, -2282, -2334], + [0, -2363, -3576, -16413, -12449, -12613, -13615, -14054, -4865], + [1, 3, 11230], + [0, 0, 11231, 11232, 9], + [0, -664, -824, -1168, -1187, -9293, -1208, -1224, -1243, -1262, -16414, -1654], + [0, -4123, -11154, -11158, -1666, -1667, -4121], + [1, 3, 11234], + [0, 0, 0, 11235, 9], + [0, -3003, -7184, -5493, -11151, -16415, -8451, -3579, -8590, -3215], + [0, 25, 9], + [1, 3, 11238], + [0, 11239, 0, 7, 9], + [0, -637], + [1, 3, 11241], + [0, 0, 11242, 11243, 9], + [0, -1032, -2322], + [0, -3006, -10504, -10684, -16416, -11972], + [1, 3, 11245], + [0, 0, 11246, 11247, 9], + [0, -1654, -1003, -6851, -16417, -16418, -1818, -510], + [0, -6106, -1818, -16418, -6851], + [1, 3, 11249], + [0, 0, 0, 11250, 9], + [0, -16419, -14311], + [1, 3, 11252], + [0, 11253, 0, 7, 9], + [0, -1980, -10802, -2550, -2520, -1691, -2424, -693, -7109, -714, -2525], + [1, 3, 11255], + [0, 11256, 11257, 11258, 9], + [0, -1967, -16420], + [ + 0, -21, -23, -36, -40, -41, -43, -509, -756, -915, -916, -932, -16421, -7894, -964, -969, -1449, -1654, -1788, + -2006, -2019, -15571, -16422 + ], + [0, -3839, -2034, -3010, -16423, -9682, -2006], + [1, 3, 11260], + [0, 0, 11261, 7, 9], + [ + 0, -23, -40, -350, -5995, -351, -535, -571, -633, -1413, -1471, -1472, -1475, -1476, -1481, -3569, -1491, -1978, + -2127, -2128, -16424, -8895, -16425, -8896, -2140, -2491 + ], + [1, 3, 11263], + [0, 0, 11264, 7, 9], + [0, -2125, -1650, -16426, -16427], + [1, 3, 11266], + [0, 0, 11267, 11268, 9], + [0, -21, -23, -40, -528, -557, -932, -934, -940, -958, -967, -1415, -1942], + [ + 0, -5845, -8799, -651, -16428, -3215, -16429, -7304, -6241, -8574, -12248, -6582, -1044, -6656, -8800, -3590, + -5845, -6473, -3240 + ] ] From f020665a6b8faf2a60043c65b05138d55478b7be Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Fri, 6 Mar 2026 07:16:37 +0100 Subject: [PATCH 11/26] Update .prettierignore --- .prettierignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.prettierignore b/.prettierignore index 3b4e0233aae9..d6b138dfe045 100644 --- a/.prettierignore +++ b/.prettierignore @@ -14,6 +14,7 @@ CHANGELOG.md examples/release-notes.md **/cspell-cache-flatpack.json **/cspell-cache-flatted.json +**/.npm*.json coverage **/*.schema.json integration-tests/config/config.json From d6277cf4bf7c00ce39ce3fcda81c6a4681eab553 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Fri, 6 Mar 2026 07:18:36 +0100 Subject: [PATCH 12/26] do not format --- .../fixtures/.npm-packages-info-v1.json | 78516 ++++++++-------- .../flatpack-json/fixtures/.prettierignore | 1 - 2 files changed, 36871 insertions(+), 41646 deletions(-) delete mode 100644 packages/flatpack-json/fixtures/.prettierignore diff --git a/packages/flatpack-json/fixtures/.npm-packages-info-v1.json b/packages/flatpack-json/fixtures/.npm-packages-info-v1.json index 6f619003bef9..1fe72091b400 100644 --- a/packages/flatpack-json/fixtures/.npm-packages-info-v1.json +++ b/packages/flatpack-json/fixtures/.npm-packages-info-v1.json @@ -1,41647 +1,36873 @@ [ - "Flatpack JSON v1", - [5, 2, 25598], - [ - 0, 3, 4, 7, 10, 13, 16, 19, 21, 24, 26, 28, 30, 32, 34, 37, 39, 40, 43, 46, 47, 48, 51, 53, 56, 58, 61, 62, 63, - 64, 65, 66, 68, 71, 73, 76, 78, 81, 83, 85, 87, 90, 92, 94, 97, 99, 101, 104, 105, 106, 107, 110, 111, 114, 116, - 119, 122, 124, 126, 129, 133, 135, 137, 140, 143, 146, 148, 150, 153, 155, 157, 159, 162, 164, 167, 169, 171, - 174, 175, 177, 180, 182, 185, 187, 189, 191, 192, 195, 197, 198, 201, 203, 204, 205, 208, 213, 215, 218, 220, - 221, 222, 225, 228, 231, 233, 235, 238, 240, 243, 245, 247, 249, 251, 253, 258, 260, 262, 265, 267, 269, 271, - 272, 275, 277, 280, 282, 285, 288, 290, 293, 296, 298, 301, 303, 305, 308, 310, 313, 315, 319, 322, 324, 327, - 329, 331, 334, 338, 340, 342, 345, 346, 347, 350, 351, 354, 355, 358, 359, 360, 361, 362, 365, 368, 370, 371, - 374, 377, 379, 381, 384, 387, 392, 394, 399, 401, 404, 406, 409, 411, 413, 415, 419, 422, 425, 427, 430, 432, - 434, 438, 439, 442, 443, 444, 445, 448, 449, 452, 456, 457, 460, 462, 465, 468, 469, 470, 471, 478, 481, 483, - 486, 488, 490, 493, 495, 497, 502, 505, 507, 513, 516, 518, 525, 528, 533, 536, 538, 539, 540, 541, 542, 545, - 546, 547, 548, 549, 550, 551, 554, 555, 559, 560, 561, 564, 565, 566, 567, 572, 573, 576, 577, 578, 581, 583, - 585, 587, 589, 593, 595, 596, 598, 601, 602, 603, 606, 608, 609, 613, 615, 616, 617, 618, 621, 622, 624, 626, - 627, 628, 631, 633, 634, 635, 638, 641, 643, 646, 649, 652, 654, 656, 659, 660, 663, 665, 666, 669, 672, 675, - 677, 679, 682, 683, 684, 687, 688, 691, 692, 693, 697, 700, 702, 703, 706, 709, 711, 712, 713, 716, 721, 724, - 727, 732, 735, 738, 740, 742, 745, 749, 751, 753, 758, 763, 767, 770, 773, 776, 782, 785, 790, 793, 795, 798, - 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 816, 817, 818, 821, 822, 825, 826, 827, 828, 829, 831, 834, - 835, 838, 840, 841, 842, 843, 846, 849, 850, 851, 852, 853, 857, 860, 864, 870, 872, 876, 881, 885, 891, 896, - 898, 905, 910, 913, 915, 917, 920, 925, 929, 933, 935, 938, 944, 948, 951, 954, 955, 958, 961, 962, 963, 966, - 968, 971, 972, 974, 975, 978, 980, 983, 985, 987, 989, 991, 993, 996, 997, 1001, 1003, 1004, 1005, 1006, 1009, - 1011, 1012, 1013, 1014, 1015, 1018, 1021, 1023, 1025, 1026, 1027, 1028, 1030, 1031, 1032, 1033, 1034, 1043, - 1045, 1050, 1054, 1056, 1059, 1061, 1063, 1066, 1073, 1075, 1077, 1078, 1079, 1080, 1081, 1082, 1084, 1085, - 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1098, 1100, 1102, 1103, 1104, 1107, 1109, - 1110, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1120, 1121, 1122, 1125, 1127, 1129, 1130, 1131, 1132, 1135, - 1136, 1137, 1138, 1139, 1140, 1143, 1144, 1145, 1147, 1148, 1149, 1151, 1154, 1156, 1157, 1158, 1159, 1162, - 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1175, 1178, 1180, 1184, 1189, 1191, 1193, 1195, 1198, - 1201, 1203, 1205, 1208, 1210, 1212, 1216, 1217, 1220, 1225, 1230, 1233, 1235, 1240, 1244, 1245, 1248, 1251, - 1253, 1255, 1257, 1261, 1264, 1267, 1268, 1270, 1272, 1275, 1277, 1279, 1280, 1282, 1284, 1287, 1288, 1290, - 1291, 1292, 1293, 1294, 1295, 1298, 1301, 1304, 1305, 1306, 1308, 1309, 1310, 1311, 1314, 1315, 1316, 1317, - 1318, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1335, 1336, 1339, 1342, 1344, 1346, - 1348, 1350, 1352, 1354, 1356, 1358, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1369, 1370, 1371, 1372, 1373, - 1376, 1377, 1378, 1381, 1385, 1386, 1387, 1389, 1391, 1393, 1394, 1395, 1396, 1397, 1398, 1400, 1401, 1402, - 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1413, 1414, 1415, 1416, 1417, 1420, 1421, 1423, 1424, 1425, 1426, - 1427, 1428, 1429, 1431, 1434, 1436, 1437, 1438, 1440, 1443, 1446, 1447, 1448, 1449, 1450, 1455, 1456, 1457, - 1458, 1459, 1461, 1462, 1465, 1468, 1470, 200, 1471, 1474, 1477, 1479, 1480, 1481, 1482, 1483, 1486, 1488, 1489, - 1492, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1503, 1505, 1506, 1509, 1473, 1511, 1512, 1513, 1516, - 1519, 1522, 1525, 1527, 1529, 1532, 1533, 1536, 1537, 1540, 1541, 1543, 1544, 1546, 1549, 1551, 1553, 1556, - 1559, 1560, 1562, 1565, 1566, 1567, 1570, 1573, 977, 1575, 1578, 1581, 1582, 1584, 1587, 1588, 1590, 1591, 1593, - 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1603, 1604, 1605, 1606, 1608, 1609, 1610, 1613, 1615, 1616, 1618, - 1620, 1621, 1622, 1623, 1624, 1627, 1628, 1630, 1632, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, - 1645, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1658, 1660, 1661, 1662, 1663, 1664, 1665, 1668, - 1672, 1673, 1674, 1675, 1676, 1677, 1679, 1680, 1681, 1682, 1686, 1688, 1690, 1693, 1696, 1699, 1700, 1701, - 1702, 1703, 1704, 1705, 1706, 1707, 1710, 1711, 1687, 1713, 1715, 1718, 1719, 1720, 1723, 1724, 1726, 1727, - 1728, 1729, 1730, 1731, 1733, 1734, 1735, 1736, 1737, 1738, 1741, 1742, 1745, 1748, 467, 1750, 1751, 1754, 1756, - 1757, 1758, 1759, 1763, 1764, 1766, 1767, 1768, 1770, 1774, 1777, 1779, 1782, 1784, 1785, 1786, 1787, 1788, - 1789, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1801, 1804, 1806, 1809, 1812, 1816, 1817, 1819, 1820, - 1821, 1822, 1824, 1825, 1827, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1842, 1843, 1845, - 1847, 1850, 1853, 1854, 1855, 1856, 1859, 1860, 1863, 1865, 1866, 668, 1869, 1874, 1875, 1177, 1879, 1881, 1883, - 1886, 1889, 1891, 1893, 1895, 1898, 1900, 1903, 1905, 1907, 1909, 1912, 1915, 1916, 1920, 1922, 1924, 1926, - 1930, 1933, 1935, 1937, 1938, 1939, 1942, 1945, 1947, 1948, 1951, 1953, 1954, 1955, 1958, 1959, 1961, 1964, - 1966, 1969, 1970, 1972, 1976, 1978, 1982, 1985, 1988, 1992, 1994, 1996, 1998, 1999, 2000, 2003, 2004, 2007, 984, - 2008, 2010, 2011, 2012, 2015, 2017, 2018, 2019, 2020, 2021, 2022, 2024, 2025, 2026, 2028, 2031, 2033, 2037, - 2039, 2040, 2042, 2045, 2046, 2048, 2051, 2053, 2054, 2057, 2058, 2059, 2060, 2061, 2064, 2067, 2069, 2071, - 2073, 2075, 2077, 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2086, 2087, 2088, 2089, 2092, 2095, 2096, 2098, - 2099, 2102, 2105, 2107, 2108, 2109, 2111, 2113, 2114, 2116, 2117, 2119, 2122, 2123, 2126, 2128, 2129, 2130, - 2131, 2132, 2133, 2134, 2135, 2137, 2139, 2141, 2144, 2145, 2147, 2148, 2149, 2150, 2151, 2152, 2153, 2154, - 2155, 2156, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2167, 2170, 2172, 2175, 2176, 2177, 2178, 2179, 2182, - 2185, 2188, 2191, 2192, 2193, 2194, 2195, 2197, 2070, 2200, 2202, 2203, 2205, 2206, 2207, 2209, 2211, 2212, - 2213, 2214, 2215, 2216, 2217, 2220, 2222, 2225, 2226, 2227, 2228, 2231, 2234, 2236, 2239, 2240, 2243, 2247, - 2250, 2253, 2256, 2258, 2260, 2263, 2266, 2268, 2271, 2273, 2274, 2277, 2279, 2281, 2283, 2285, 2290, 2291, - 2293, 2296, 2298, 2300, 2302, 2305, 2307, 2308, 2311, 2314, 2316, 2318, 2320, 2321, 2322, 2323, 2327, 2330, - 2332, 2334, 2336, 2338, 2341, 2344, 2346, 2348, 2351, 2352, 2354, 2357, 2359, 2361, 2363, 2366, 2367, 2368, - 2371, 2372, 2373, 2375, 2377, 2379, 2381, 2383, 2384, 2387, 2390, 2393, 2396, 2398, 2400, 2401, 2404, 2405, - 2406, 2409, 2411, 2413, 2416, 2419, 2421, 2423, 2425, 2427, 2430, 2433, 2435, 2436, 2438, 2441, 2444, 2447, - 2449, 2450, 2453, 2455, 2459, 2461, 2463, 2464, 2467, 2469, 2472, 2476, 2479, 2482, 2486, 2489, 2490, 2493, - 2494, 2496, 2498, 2500, 2503, 2504, 2506, 2507, 2508, 2510, 2512, 2515, 2517, 2519, 2520, 2521, 2524, 2526, - 2529, 2530, 2533, 2536, 2539, 2541, 2543, 2544, 2547, 2549, 2550, 2552, 2553, 2554, 2555, 2036, 2556, 2559, - 2562, 2563, 2564, 2567, 2569, 2570, 2571, 2572, 2575, 2577, 2579, 2581, 2583, 2584, 2586, 2588, 2589, 2590, - 2591, 2592, 2593, 2594, 2595, 2596, 2597, 2600, 2601, 2602, 2605, 2606, 2607, 2608, 2609, 2610, 2611, 2612, - 2613, 2614, 2616, 2620, 2623, 2626, 2628, 2629, 2633, 2635, 2637, 2639, 2641, 2644, 2646, 2650, 2651, 2652, - 2654, 27, 2657, 2659, 2661, 2664, 2665, 2668, 2670, 2671, 2674, 2675, 2676, 2677, 2678, 2679, 2681, 2683, 2685, - 2686, 2687, 2689, 2692, 2267, 2694, 2695, 2696, 2697, 2700, 2702, 2704, 2707, 2708, 2709, 2710, 2711, 2712, - 2713, 2714, 2715, 2716, 2718, 2719, 2720, 2722, 2723, 2726, 1161, 2727, 2728, 2730, 2731, 2732, 2733, 2735, - 2738, 2739, 2740, 2741, 2742, 2743, 2744, 2745, 2747, 2750, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2759, - 2760, 2761, 2762, 2437, 2763, 2764, 2765, 2766, 2768, 1192, 2771, 2774, 2777, 2780, 2782, 2784, 2787, 2792, - 2794, 2796, 2797, 2798, 2802, 2805, 2806, 2807, 2808, 2810, 2811, 2812, 2813, 2814, 2816, 2817, 2820, 2821, - 2822, 2823, 2824, 2292, 1776, 2826, 2829, 2832, 2834, 2835, 2272, 2839, 2841, 2843, 2845, 2848, 2851, 2854, - 2856, 2858, 2859, 2860, 2861, 2863, 2864, 2865, 2866, 2867, 2870, 2297, 2871, 2876, 2878, 2881, 2886, 2889, - 2891, 2895, 2897, 2898, 2900, 2904, 2906, 2908, 2910, 2912, 2915, 2918, 2921, 2923, 2925, 2926, 2927, 2928, - 2929, 2930, 2931, 2932, 2933, 2934, 2935, 2936, 2941, 2943, 2945, 2946, 2948, 2949, 620, 2950, 2954, 2957, 2960, - 2961, 2962, 2963, 2964, 2967, 2968, 695, 2969, 2970, 2972, 2973, 2975, 2976, 2979, 2981, 2982, 2983, 2984, 2986, - 2990, 2991, 2992, 2993, 2996, 2997, 3000, 3003, 3006, 3008, 3010, 3012, 3014, 3019, 1209, 3021, 3023, 3025, - 3028, 3029, 3032, 3034, 3037, 3039, 3041, 3044, 3047, 3049, 3051, 3052, 3054, 3057, 3060, 3062, 3064, 3066, - 3067, 3070, 3072, 3073, 3074, 3077, 3078, 3079, 3080, 3081, 3082, 3083, 3084, 3085, 3086, 3087, 3088, 3089, - 3090, 3091, 3092, 3093, 3095, 3096, 3097, 3098, 3099, 3102, 3103, 1783, 3105, 3107, 3112, 3114, 3116, 3117, - 3120, 3123, 3124, 3125, 3127, 3129, 3130, 3132, 3133, 3134, 3135, 3136, 3137, 3140, 3141, 3142, 3143, 3144, - 3145, 3148, 3150, 3152, 3153, 3156, 3157, 1698, 3159, 3160, 3161, 3162, 3164, 3165, 3167, 3170, 3171, 3173, - 3174, 3177, 3178, 3181, 3183, 3185, 3186, 3187, 3188, 3189, 3190, 3191, 2899, 3198, 3200, 3202, 3203, 3206, - 3210, 3211, 3213, 3215, 3216, 3219, 3220, 3222, 3223, 3226, 3229, 3230, 3232, 3233, 3235, 3236, 3237, 3238, - 3239, 3240, 3241, 3242, 3243, 3244, 3245, 3246, 3249, 3253, 3256, 3257, 3258, 3259, 3260, 3261, 1952, 3262, - 3263, 2378, 3264, 3266, 3268, 3270, 3271, 3273, 3274, 3275, 3276, 3277, 3278, 3282, 3283, 3284, 3285, 3287, - 3288, 3289, 3290, 3291, 3292, 3294, 3295, 3296, 3297, 3299, 3300, 3303, 3305, 3308, 3309, 3310, 3313, 3316, - 3318, 640, 3322, 3324, 3327, 3330, 3332, 3334, 3337, 3339, 3341, 3342, 3345, 3347, 3349, 3350, 3353, 3355, 3357, - 3359, 3361, 3363, 2276, 3365, 3366, 3367, 3368, 3369, 3371, 3373, 3376, 3377, 3378, 3379, 3381, 3386, 3390, - 3393, 3397, 3400, 3401, 3404, 3406, 3408, 3409, 3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, - 3420, 3421, 3422, 3423, 3424, 3427, 3429, 3431, 3433, 3434, 3435, 3438, 3439, 3440, 3441, 3442, 3443, 3444, - 3445, 3446, 3451, 3453, 3455, 3456, 3458, 3459, 3460, 3463, 3466, 3467, 3468, 3469, 888, 3470, 3471, 3472, 3475, - 3476, 3477, 3478, 3479, 3480, 3481, 3482, 3483, 3484, 3485, 3486, 3488, 3490, 3492, 1644, 3493, 3494, 3495, - 3498, 3499, 3500, 3501, 1433, 3403, 3502, 3505, 3507, 3509, 3510, 3511, 3512, 3513, 3518, 3519, 3520, 3521, - 3524, 3525, 3526, 3527, 3530, 3531, 3532, 3533, 3534, 3535, 3536, 3537, 3539, 3540, 3541, 2072, 3544, 3545, - 3547, 3548, 3549, 3551, 3552, 3553, 3554, 3555, 3558, 3559, 3560, 3561, 3564, 3566, 3570, 3572, 3575, 3577, - 3579, 3584, 3587, 3591, 3598, 3600, 3603, 3605, 3606, 3611, 3613, 3616, 3618, 3622, 3625, 3628, 3633, 3635, - 3636, 3638, 3640, 3643, 3647, 3649, 3652, 3653, 3657, 3660, 3662, 3664, 3668, 3672, 3674, 3676, 3678, 3681, - 3683, 3686, 3688, 3691, 3692, 3693, 3696, 3697, 3698, 3699, 1894, 3703, 3706, 3708, 3710, 3711, 3714, 3716, - 3717, 3718, 3720, 3722, 3724, 3725, 3726, 3727, 3729, 3730, 3732, 1862, 3734, 3736, 3739, 3741, 3742, 3744, - 3746, 3747, 3750, 2658, 3752, 3753, 3754, 3755, 3756, 3757, 3758, 3759, 3760, 3761, 3762, 3763, 3765, 3767, - 3768, 3770, 3771, 2907, 3773, 3774, 3775, 3776, 3777, 3779, 3780, 3781, 3783, 3784, 3786, 1997, 3787, 3788, - 3789, 3790, 89, 3793, 3799, 3802, 3803, 3804, 3807, 3810, 3813, 3816, 3817, 3820, 3822, 3824, 3826, 3829, 3830, - 3833, 3836, 3837, 3839, 3843, 3846, 3847, 3849, 3850, 3853, 3856, 3857, 3861, 3864, 3867, 3869, 3872, 3876, - 3878, 3882, 3884, 3885, 3887, 3889, 3891, 3893, 3895, 3897, 3899, 3904, 3906, 3909, 3911, 3913, 3914, 3916, - 3917, 3919, 3921, 3923, 3925, 3927, 3928, 3930, 3931, 3932, 3935, 3938, 1552, 3939, 3941, 3875, 3943, 3945, - 3946, 3948, 3950, 3951, 3954, 3957, 3958, 3963, 3968, 3970, 3971, 3973, 3975, 3978, 3980, 3981, 3984, 3985, - 3988, 3989, 3991, 3992, 3995, 3998, 3999, 4001, 4002, 4005, 705, 4008, 4010, 4012, 4015, 4018, 4019, 4022, 4023, - 814, 4025, 4028, 4029, 4031, 4033, 4035, 4036, 1153, 4037, 4038, 4039, 4041, 4042, 4045, 4048, 4052, 4055, 4057, - 4058, 4060, 4064, 4066, 4067, 4069, 4071, 4073, 4075, 4076, 4077, 4079, 4081, 4083, 4084, 4085, 4086, 4089, - 4092, 4093, 4094, 4098, 4100, 4103, 4104, 4105, 4106, 4108, 4110, 2278, 4111, 4112, 4113, 4116, 4119, 4121, - 4124, 4125, 4126, 4127, 4130, 4131, 4134, 1899, 4135, 710, 4136, 4137, 4140, 4143, 4145, 4146, 4148, 4150, 4151, - 4153, 4156, 4159, 4160, 4163, 4164, 4165, 4167, 4168, 4169, 4170, 4171, 4172, 4173, 4174, 4177, 4181, 4183, - 4187, 4188, 4189, 4192, 4193, 4196, 4199, 4200, 4201, 4204, 4205, 4206, 4207, 4208, 4209, 4212, 3974, 4213, - 4214, 4215, 4216, 4217, 4218, 4220, 4224, 4227, 4228, 4230, 4232, 4233, 4234, 4235, 4236, 4237, 4238, 4239, - 4242, 4243, 4245, 4246, 4247, 4248, 4249, 4252, 4255, 4257, 4258, 4261, 4264, 4266, 4267, 4270, 4272, 4275, - 4277, 4278, 4280, 4282, 4283, 1871, 4288, 4290, 4292, 4294, 4296, 4300, 4302, 4303, 4305, 4307, 4309, 4311, - 4315, 4317, 4319, 4320, 4323, 4326, 4328, 4330, 4333, 4334, 4335, 4337, 4338, 4339, 4341, 4342, 4343, 4345, - 4347, 4351, 4352, 3709, 4355, 4359, 4360, 4361, 4362, 4363, 4365, 4367, 4369, 4370, 4371, 4372, 4373, 4375, - 4376, 4377, 4380, 4382, 4383, 4384, 4387, 4388, 4389, 4390, 4391, 4393, 4394, 4397, 4398, 4399, 1241, 4400, - 4401, 4404, 4072, 4409, 4411, 1187, 4413, 4415, 4419, 4421, 4423, 4425, 4426, 4427, 4430, 4431, 4433, 4434, - 4435, 4436, 4437, 4438, 4441, 4443, 4445, 4447, 4448, 4449, 4450, 4451, 4452, 4453, 4454, 4455, 4456, 4457, 100, - 4459, 4461, 4462, 4463, 4464, 4465, 4468, 4469, 4470, 4473, 4474, 4475, 4477, 4478, 4480, 4481, 4482, 4483, - 4484, 4487, 4490, 4492, 4493, 4494, 4495, 4496, 4497, 4498, 4499, 4500, 4505, 4507, 1000, 4508, 4510, 4512, - 4514, 4515, 4517, 4520, 4521, 91, 4523, 4526, 4531, 4532, 4533, 4535, 4537, 4538, 4539, 4540, 4541, 4542, 4543, - 4545, 4547, 4548, 4549, 4554, 4555, 4558, 4559, 4560, 4562, 4563, 1002, 4566, 4027, 4567, 4568, 4569, 4572, - 4576, 4577, 614, 4578, 3348, 4579, 4582, 4585, 4588, 1155, 4589, 4590, 4591, 4592, 4593, 4594, 4595, 4596, 4597, - 4599, 4600, 4603, 4606, 4608, 1983, 4612, 4614, 1984, 4615, 4616, 4617, 4618, 4621, 4624, 188, 4629, 4630, 4632, - 4633, 4634, 4638, 4639, 4640, 4645, 4646, 4647, 4648, 4649, 2282, 4650, 4651, 4652, 4653, 4656, 4659, 4662, - 4664, 4667, 4669, 2924, 4676, 4677, 4679, 4681, 4684, 4686, 4689, 4693, 4695, 4696, 4699, 4702, 4703, 4704, - 4705, 4706, 4707, 4708, 4709, 4711, 4715, 4716, 4717, 4720, 4723, 4724, 4726, 4727, 4728, 4729, 4730, 4731, - 3354, 4733, 4734, 4735, 4736, 4737, 4738, 1906, 4739, 4740, 4741, 4742, 1695, 4744, 4745, 4746, 4747, 4748, - 4749, 4751, 4752, 4753, 4754, 4756, 4757, 4758, 4759, 4760, 4761, 4762, 4763, 4767, 4768, 4769, 4770, 4771, - 4772, 4774, 4775, 4776, 4777, 4782, 4783, 4786, 4788, 4791, 639, 11976, 662, 3405, 5010, 6781, 23276, 6974, - 15279, 15484, 17429, 15887, 26713, 18240, 11804, 24566, 475, 24782, 25169, 25219, 25266, 25307, 25432, 25443, - 25395, 25490, 25766, 25775, 25798, 25809, 25833, 25882, 25931, 29350, 29385, 29389, 29407, 29414, 29394, 29435, - 29448, 29460, 20562, 29477, 31705, 29524, 29537, 29546, 29560, 33408, 29564, 29610, 31821, 29626, 3286, 30757, - 29683, 29729, 29754, 5065, 29805, 9011, 29821, 24737, 29850, 29889, 29942, 29955, 28519, 29993, 9355, 8199, 680, - 19571, 27921, 29998, 30145, 30165, 26706, 30182, 30196, 30218, 9041, 30233, 30252, 30257, 30281, 30312, 906, - 30405, 30458, 30463, 30469, 30477, 30488, 30607, 30612, 30624, 30731, 907, 8119, 30798, 30829, 940, 26636, - 20202, 29755, 14673, 9274, 9293, 9273, 30926, 30957, 30972, 33145, 24723, 30979, 14684, 31064, 11518, 31086, - 12016, 15951, 31198, 31231, 31244, 31262, 31272, 31282, 31289, 31290, 31332, 31347, 31314, 31353, 31375, 21287, - 21288, 31343, 31386, 31421, 31430, 31465, 31473, 31485, 31501, 31509, 31521, 14904, 31180, 31528, 14959, 18699, - 18717, 14336, 31544, 26854, 34576, 34578, 31644, 33204, 11421, 23288, 31677, 31713, 11890, 16858, 31728, 31749, - 31760, 31782, 31793, 31805, 31816, 31822, 31827, 31835, 17964, 21594, 31838, 8160, 31930, 29013, 33653, 31961, - 17988, 12421, 23352, 23250, 23292, 31752, 23253, 32029, 16837, 32144, 32166, 24114, 32182, 13896, 31182, 32201, - 31734, 32238, 26180, 32265, 27263, 32294, 32311, 16870, 32319, 17167, 16842, 11071, 32347, 32397, 32415, 32443, - 32456, 21174, 32468, 32493, 32499, 32506, 32531, 32225, 32546, 32564, 32577, 12042, 32634, 32747, 32760, 32766, - 32778, 11501, 32790, 19469, 9252, 31184, 31186, 9731, 32816, 999, 32884, 32892, 9272, 32914, 32926, 32934, - 32939, 32940, 32962, 5517, 1083, 34683, 33053, 8392, 10572, 11960, 24509, 30299, 1300, 30527, 34676, 1302, - 30535, 26450, 26482, 26483, 26489, 26495, 32977, 8703, 1418, 26414, 1419, 28763, 2115, 7606, 1441, 13412, 26273, - 28880, 28909, 1442, 28458, 28479, 28493, 1445, 32733, 1466, 1475, 29032, 26257, 1476, 28595, 28885, 1491, 1502, - 28323, 1510, 5290, 26241, 1526, 29197, 28873, 4090, 1530, 9378, 26158, 3845, 8654, 1531, 1761, 26082, 1535, - 26699, 29865, 1555, 2245, 8605, 28450, 28899, 28901, 1558, 5993, 28354, 29834, 1607, 1667, 23535, 1670, 1790, - 26644, 7585, 20304, 28327, 28400, 26421, 1678, 2221, 10973, 1689, 28865, 8550, 22378, 8540, 1691, 26032, 29417, - 1692, 26591, 29304, 1694, 28069, 31474, 31486, 31507, 31524, 1802, 28906, 1813, 29853, 1814, 8604, 1841, 27959, - 1857, 28466, 1918, 32834, 32863, 32890, 30286, 31680, 31400, 1979, 31833, 33277, 13387, 1980, 21374, 2001, 2035, - 5666, 5564, 2049, 17110, 5287, 2362, 32818, 25810, 2050, 2065, 25762, 29012, 29031, 2066, 25802, 34043, 28092, - 29161, 2094, 34032, 28872, 2097, 34161, 33479, 2106, 2140, 2142, 36878, 36879, 2186, 28117, 2219, 29019, 6372, - 2238, 7995, 9107, 12097, 13676, 17199, 26746, 33929, 18012, 20093, 34468, 20362, 21610, 23755, 23769, 24602, - 19617 - ], - "@alifd/next", - "@angular-devkit/core", - [3, 4, 16], - "schematics", - [2, 5, 6], - [3, 4, 8], - "/animations", - [2, 8, 9], - [3, 10, 9], - "cdk", - [2, 11, 12], - [3, 13, 10], - "ommon", - [2, 14, 15], - [3, 16, 12], - "piler", - [2, 17, 18], - "-cli", - [2, 19, 20], - [3, 16, 11], - "re", - [2, 22, 23], - "forms", - [2, 11, 25], - "http", - [2, 11, 27], - "material", - [2, 11, 29], - "platform-browser", - [2, 11, 31], - "-dynamic", - [2, 32, 33], - [3, 32, 18], - "server", - [2, 35, 36], - "router", - [2, 11, 38], - "@ant-design/react-native", - [3, 40, 12], - "web3-common", - [2, 41, 42], - [3, 43, 17], - "icons", - [2, 44, 45], - "@auth/sveltekit", - "@babel/cli", - [3, 48, 8], - "ode-frame", - [2, 49, 50], - [3, 51, 9], - [2, 52, 23], - [3, 48, 7], - "helper-plugin-utils", - [2, 54, 55], - "parser", - [2, 54, 57], - [3, 58, 8], - "lugin-proposal-class-properties", - [2, 59, 60], - "@11ty/eleventy", - "@adobe/css-tools", - "@api-components/api-method-documentation", - "@apollo/client", - "@asyncapi/generator-react-sdk", - "eslint-parser", - [2, 54, 67], - [3, 61, 23], - "decorators", - [2, 69, 70], - "export-default-from", - [2, 69, 72], - [3, 73, 30], - "namespace-from", - [2, 74, 75], - "object-rest-spread", - [2, 69, 77], - [3, 61, 14], - "syntax-dynamic-import", - [2, 79, 80], - "transform-runtime", - [2, 79, 82], - "olyfill", - [2, 59, 84], - "reset-env", - [2, 59, 86], - [3, 87, 14], - "react", - [2, 88, 89], - "typescript", - [2, 88, 91], - "register", - [2, 54, 93], - [3, 94, 8], - "untime", - [2, 95, 96], - "-corejs2", - [2, 97, 98], - "traverse", - [2, 54, 100], - [3, 101, 8], - "ypes", - [2, 102, 103], - "@biz-dev-ops/md-docs", - "@bwcr_/winston-loki", - "@changesets/cli", - "@cha", - "tscope/chat-ui-kit-react", - [2, 108, 109], - "@ckeditor/ckeditor5-adapter-ckfinder", - [3, 111, 21], - "ngular", - [2, 112, 113], - "utoformat", - [2, 112, 115], - [3, 111, 20], - "basic-styles", - [2, 117, 118], - [3, 119, 21], - "lock-quote", - [2, 120, 121], - "uild-balloon", - [2, 120, 123], - "-block", - [2, 124, 125], - [3, 124, 26], - "classic", - [2, 127, 128], - "deco", - "upled-document", - [2, 130, 131], - [2, 127, 132], - "inline", - [2, 127, 134], - "ckbox", - [2, 117, 136], - [3, 137, 22], - "finder", - [2, 138, 139], - [3, 137, 21], - "lipboard", - [2, 141, 142], - [3, 143, 22], - "oud-services", - [2, 144, 145], - "ore", - [2, 141, 147], - "easy-image", - [2, 117, 149], - [3, 150, 21], - "ngine", - [2, 151, 152], - "ssentials", - [2, 151, 154], - "heading", - [2, 117, 156], - "image", - [2, 117, 158], - [3, 159, 21], - "ndent", - [2, 160, 161], - "link", - [2, 117, 163], - [3, 164, 22], - "st", - [2, 165, 166], - "media-embed", - [2, 117, 168], - "paragraph", - [2, 117, 170], - [3, 171, 22], - "ste-from-office", - [2, 172, 173], - [2, 117, 89], - "table", - [2, 117, 176], - [3, 177, 21], - "yping", - [2, 178, 179], - "ui", - [2, 117, 181], - [3, 182, 21], - "pload", - [2, 183, 184], - "tils", - [2, 183, 186], - "vue", - [2, 117, 188], - "widget", - [2, 117, 190], - "@commitlint/cli", - "@com", - "podoc/compodoc", - [2, 193, 194], - "unica/core", - [2, 193, 196], - "@contenthook/browser", - [3, 198, 13], - "cli", - [2, 199, 200], - "node", - [2, 199, 202], - "@coreui/coreui", - "@csstools/css-parser-algorithms", - [3, 205, 14], - "tokenizer", - [2, 206, 207], - [3, 205, 10], - "media-", - "query-list-parser", - [2, 210, 211], - [2, 209, 212], - "postcss-is-pseudo-class", - [2, 209, 214], - [3, 215, 18], - "progressive-custom-properties", - [2, 216, 217], - "selector-specificity", - [2, 209, 219], - "@cucumber/cucumber", - "@deven-org/documentation-skeleton", - "@dev", - "tea2026/aspernatur-ea-non-porro", - [2, 223, 224], - [3, 225, 12], - "consectetur-ab-unde-quisquam", - [2, 226, 227], - [3, 228, 13], - "upiditate-dolorem-excepturi-impedit", - [2, 229, 230], - "distinctio-soluta-illo-eaque", - [2, 226, 232], - "eum-ullam-est-distinctio", - [2, 226, 234], - [3, 235, 13], - "xplicabo-alias-architecto-sed", - [2, 236, 237], - "improved-journey", - [2, 226, 239], - [3, 240, 13], - "nventore-facilis-corporis-cum", - [2, 241, 242], - "psa-omnis-in-molestiae", - [2, 241, 244], - "literate-computing-machine", - [2, 226, 246], - "maxime-sequi-est-rem", - [2, 226, 248], - "necessitatibus-dolorem-esse-atque", - [2, 226, 250], - "odit-enim-reiciendis-pariatur", - [2, 226, 252], - [3, 253, 17], - "maxime-", - "porro-asperiores", - [2, 255, 256], - [2, 254, 257], - "possimus-ipsa-sint-consequuntur", - [2, 226, 259], - "qui-quos-laborum-amet", - [2, 226, 261], - [3, 262, 15], - "a-ducimus-placeat-minima", - [2, 263, 264], - "dem-voluptate-repudiandae-necessitatibus", - [2, 263, 266], - "rerum-quaerat-porro-animi", - [2, 226, 268], - "ubiquitous-octo-memory", - [2, 226, 270], - "@diotoborg/adipisci-placeat-iure", - [3, 272, 12], - "met-architecto-est", - [2, 273, 274], - "t-totam-perspiciatis", - [2, 273, 276], - [3, 272, 11], - "commodi-voluptatum-libero", - [2, 278, 279], - "delectus-necessitatibus-voluptatum", - [2, 278, 281], - [3, 282, 13], - "serunt-illo-tempora", - [2, 283, 284], - [3, 282, 12], - "icta-recusandae-veniam", - [2, 286, 287], - "olor-earum-quia", - [2, 286, 289], - [3, 290, 17], - "tempora-fuga", - [2, 291, 292], - [3, 290, 16], - "es-praesentium-assumenda", - [2, 294, 295], - "eligendi-est-unde", - [2, 278, 297], - [3, 298, 12], - "sse-accusantium-ratione", - [2, 299, 300], - "illo-amet-architecto", - [2, 278, 302], - "laudantium-itaque-esse", - [2, 278, 304], - [3, 305, 12], - "ibero-asperiores-at", - [2, 306, 307], - "neque-inventore-corporis", - [2, 278, 309], - [3, 310, 12], - "ostrum-eveniet-officiis", - [2, 311, 312], - "odio-dolores-officia", - [2, 278, 314], - "porro-", - "modi-accusamus", - [2, 316, 317], - [2, 278, 318], - [3, 319, 12], - "sychic-bassoon", - [2, 320, 321], - "quasi-repellat-odit", - [2, 278, 323], - [3, 324, 13], - "i-ullam-ipsum", - [2, 325, 326], - "o-dolorem-ducimus", - [2, 325, 328], - "ratione-error-odio", - [2, 278, 330], - [3, 331, 12], - "epellat-blanditiis-quis", - [2, 332, 333], - [3, 292, 8], - "voluptas-distinctio", - [2, 335, 336], - [2, 278, 337], - "ullam-dignissimos-repudiandae", - [2, 278, 339], - "velit-reiciendis-velit", - [2, 278, 341], - [3, 342, 13], - "rbose-robot", - [2, 343, 344], - "@diplodoc/transform", - "@discordjs/rest", - "@dis", - "qada/workspace", - [2, 348, 349], - "@doc-tools/docs", - [3, 351, 11], - [3, 82, 9], - [2, 352, 353], - "@dramaorg/esse-praesentium-eligendi", - [3, 355, 10], - "quae-dolore-nostrum", - [2, 356, 357], - "@eas-framework/server", - "@eightshift/frontend-libs", - "@electron/docs-parser", - "@emotion/babel-plugin", - [3, 362, 9], - "core", - [2, 363, 364], - [3, 365, 10], - "ss", - [2, 366, 367], - "styled", - [2, 363, 369], - "@erboladaiorg/ad-exercitationem-ducimus", - [3, 371, 15], - "speriores-earum-quaerat", - [2, 372, 373], - [3, 374, 25], - "fuga-sint", - [2, 375, 376], - "nam-adipisci", - [2, 375, 378], - "utem-dolores-ipsam", - [2, 372, 380], - [3, 371, 14], - "cupiditate-consectetur-porro", - [2, 382, 383], - [3, 384, 25], - "pariatur-optio", - [2, 385, 386], - [3, 232, 11], - "quis", - [2, 335, 389], - [2, 388, 390], - [2, 382, 391], - "error-atque-ea", - [2, 382, 393], - [3, 394, 15], - "sse-", - "ipsa-numquam", - [2, 396, 397], - [2, 395, 398], - "x-hic-molestias", - [2, 395, 400], - [3, 401, 16], - "plicabo-eius-adipisci", - [2, 402, 403], - "molestiae-voluptatibus-perferendis", - [2, 382, 405], - [3, 406, 22], - "s-nulla-dolor", - [2, 407, 408], - "nisi-culpa-cum", - [2, 382, 410], - "officia-illum-aperiam", - [2, 382, 412], - "perspiciatis-magni-ut", - [2, 382, 414], - "quae-", - "in-veniam", - [2, 416, 417], - [2, 382, 418], - [3, 419, 18], - "rat-mollitia-adipisci", - [2, 420, 421], - [3, 419, 16], - "ibusdam-itaque-tempora", - [2, 423, 424], - "sint-deleniti-dolorem", - [2, 382, 426], - [3, 427, 16], - "t-nesciunt-amet", - [2, 428, 429], - "tenetur-architecto-dolore", - [2, 382, 431], - "ut-dignissimos-laborum", - [2, 382, 433], - "velit-", - "fugit-harum", - [2, 435, 436], - [2, 382, 437], - "@eslint-community/eslint-utils", - "@eslint", - "/js", - [2, 440, 441], - "@fakeyanss/redoc", - "@floating-ui/react-dom", - "@fontsource/inter", - [3, 445, 12], - "roboto", - [2, 446, 447], - "@fortawesome/fontawesome-svg-core", - [3, 449, 14], - "ree-solid-svg-icons", - [2, 450, 451], - [3, 449, 13], - "-fontawesome", - [2, 89, 454], - [2, 453, 455], - "@grandlinex/core", - [3, 457, 12], - "e-kernel", - [2, 458, 459], - "kernel", - [2, 458, 461], - "@gra", - "phql-markdown/core", - [2, 463, 464], - [3, 465, 18], - "docusaurus", - [2, 466, 467], - "@hajtech/webpack-config", - "@hapi/hapi", - "@hishprorg/aliquid-ad-vero", - [3, 471, 12], - "utem-", - "sint-", - "@adonisjs/core", - "sint-quas", - [2, 473, 476], - [2, 472, 477], - [3, 471, 11], - "cum-rem-consequuntur", - [2, 479, 480], - "earum-sint-veritatis", - [2, 479, 482], - [3, 483, 12], - "ius-vero-dicta", - [2, 484, 485], - "st-dicta-quis", - [2, 484, 487], - "incidunt-quibusdam-tempore", - [2, 479, 489], - [3, 490, 12], - "taque-esse-accusamus", - [2, 491, 492], - "ure-optio-nihil", - [2, 491, 494], - "magni-amet-id", - [2, 479, 496], - [3, 497, 17], - "nisi-", - "aperiam", - [2, 499, 500], - [2, 498, 501], - [3, 497, 13], - "xime-voluptates-enim", - [2, 503, 504], - "nihil-ad-ratione", - [2, 479, 506], - [3, 414, 13], - [3, 330, 8], - "unde", - [2, 509, 510], - [2, 508, 511], - [2, 479, 512], - "-perferendis-culpa", - [2, 389, 514], - [2, 479, 515], - "reprehenderit-excepturi-sed", - [2, 479, 517], - "nam-", - "conse", - "quuntur", - [2, 520, 521], - [2, 519, 522], - [2, 474, 523], - [2, 479, 524], - [3, 525, 12], - "unt-officia-eligendi", - [2, 526, 527], - [3, 528, 16], - "volupta", - "tem-nobis", - [2, 530, 531], - [2, 529, 532], - "-vitae-reprehenderit", - [2, 510, 534], - [2, 479, 535], - "wafflejs", - [2, 479, 537], - "@homer0/prettier-plugin-jsdoc", - "@hookform/resolvers", - "@iamtraction/google-translate", - "@idux/cdk", - "@idux/c", - "omponents", - [2, 543, 544], - "@inquirer/core", - "@ionic/core", - "@isaacs/cliui", - "@istanbuljs/nyc-config-typescript", - "@itwin/itwinui-react", - "@jest/core", - "@jest/", - "types", - [2, 552, 553], - "@jsonforms/core", - [3, 555, 11], - "-renderers", - [2, 29, 557], - [2, 556, 558], - [2, 556, 89], - "@juigorg/nisi-molestiae-ut", - [3, 561, 9], - "sit-nam-neque", - [2, 562, 563], - "@jupyterlab/application", - "@kobedevi/sassdoc", - "@kollorg/dicta-itaque-nemo", - [3, 567, 9], - "nihil-", - "veniam-deserunt", - [2, 569, 570], - [2, 568, 571], - "@libphamton/chatfanpage", - [3, 573, 12], - "fb-group", - [2, 574, 575], - "@listr2/prompt-adapter-inquirer", - "@mantine/core", - [3, 578, 9], - "dates", - [2, 579, 580], - "hooks", - [2, 579, 582], - "modals", - [2, 579, 584], - "notifications", - [2, 579, 586], - "prism", - [2, 579, 588], - "style", - "s", - "styles", - [2, 579, 592], - "utils", - [2, 579, 594], - "@material-ui/core", - [3, 596, 13], - [2, 597, 45], - "@mat", - "hematikoi/jsonapi", - [2, 599, 600], - "@mdx-js/react", - "@microsoft/api-extractor", - [3, 603, 11], - "tsdoc", - [2, 604, 605], - "-config", - [2, 606, 607], - "@middy/core", - "@middy/", - "-json-body-parser", - [2, 27, 611], - [2, 610, 612], - "util", - [2, 610, 614], - "@ministryofjustice/frontend", - "@mswjs/interceptors", - "@mui/icons-material", - "@mui/", - "lab", - "@mui/lab", - [2, 619, 29], - "system", - [2, 619, 623], - "x-date-pickers", - [2, 619, 625], - "@neato/guider", - "@ng-doc/core", - [3, 628, 8], - "ui-kit", - [2, 629, 630], - [3, 631, 9], - [2, 632, 186], - "@nomicfoundation/hardhat-chai-matchers", - "@npmcli/arborist", - [3, 635, 8], - "map-workspaces", - [2, 636, 637], - "@augment-vir/common", - "node-gyp", - [2, 636, 640], - "run-script", - [2, 636, 642], - "@npmc", - "orp/marky-markdown", - [2, 644, 645], - "@npm", - "tuanmap/ex-vel-expedita-impedit", - [2, 647, 648], - [3, 649, 12], - "psychic-guide", - [2, 650, 651], - "recusandae-recusandae-nam-et", - [2, 650, 653], - "sed-quo-nemo-rerum", - [2, 650, 655], - "esse-velit-magnam", - [2, 435, 657], - [2, 650, 658], - "@nrwl/devkit", - "@nrwl/", - [2, 3388, 3399], - "@nrwl/tao", - "workspace", - [2, 661, 664], - "@nx/devkit", - "@nx/", - "esbuild", - [2, 667, 668], - "@nx/es", - "lint", - [2, 670, 671], - "@nx/e", - "xpress", - [2, 673, 674], - "js", - "@nx/js", - "nest", - "@nx/nest", - "nextra", - "ode", - "@nx/node", - [2, 667, 664], - "@oclif/command", - [3, 684, 9], - "nfig", - [2, 685, 686], - [2, 685, 23], - "@oclif/", - "plugin-help", - [2, 689, 690], - "@octokit/rest", - "@opentiny/vue", - "-render", - "less", - [2, 694, 695], - [2, 693, 696], - [3, 697, 14], - "theme", - [2, 698, 699], - "-mobile", - [2, 700, 701], - "@otterhttp/cookie", - [3, 703, 11], - "request", - [2, 704, 705], - [3, 706, 13], - "sponse", - [2, 707, 708], - "send", - [2, 704, 710], - "@pact-foundation/pact", - "@patrtorg/a-ad-expedita", - [3, 713, 12], - "ut-amet", - [2, 714, 715], - [3, 713, 11], - [3, 373, 10], - "vel-accusantium", - [2, 718, 719], - [2, 717, 720], - [3, 721, 15], - "natur-dolorum-ducimus", - [2, 722, 723], - "et-hic", - [2, 473, 725], - [2, 717, 726], - [3, 713, 10], - [3, 227, 12], - "culpa-non", - [2, 729, 730], - [2, 728, 731], - [3, 732, 22], - "repudiandae-consequuntur", - [2, 733, 734], - [3, 732, 15], - "quatur-voluptatum-officiis", - [2, 736, 737], - "ducimus-magni-quibusdam", - [2, 728, 739], - "enim-magni-hic", - [2, 728, 741], - [3, 742, 11], - "st-corrupti-deleniti", - [2, 743, 744], - "veni", - "et-tempore-maiores", - [2, 746, 747], - [2, 743, 748], - "illum-sapiente-quos", - [2, 728, 750], - "laborum-doloribus-voluptate", - [2, 728, 752], - [3, 753, 11], - "ibero-", - "doloribus-omnis", - [2, 755, 756], - [2, 754, 757], - [3, 758, 17], - [3, 336, 9], - "sequi", - [2, 760, 761], - [2, 759, 762], - "magn", - "am-aut-adipisci", - [2, 764, 765], - [2, 728, 766], - [3, 767, 12], - "iores-quidem-quo", - [2, 768, 769], - [3, 767, 11], - "olestias-molestias-ut", - [2, 771, 772], - "eius-unde", - [2, 519, 774], - [2, 728, 775], - [3, 386, 9], - "dele", - "niti-quaerat", - [2, 778, 779], - [2, 777, 780], - [2, 728, 781], - [3, 782, 11], - "orro-labore-eos", - [2, 783, 784], - "earum-", - "eius", - [2, 786, 787], - [2, 416, 788], - [2, 728, 789], - [3, 790, 12], - "os-quasi-ipsa", - [2, 791, 792], - "sapiente-eos-magnam", - [2, 728, 794], - [3, 795, 20], - "xercitationem-sit", - [2, 796, 797], - [3, 431, 9], - "nimi-reprehenderit", - [2, 799, 800], - [2, 728, 801], - "@perseid/store", - "@phosphor/widgets", - "@phun-ky/speccer", - "@polymer/polymer", - "@qooxdoo/framework", - "@quasar/extras", - "@readyplayerme/visage", - "@reduxjs/toolkit", - "@rollup/plugin-commonjs", - [3, 811, 15], - "node-", - "resolve", - [2, 813, 814], - [2, 812, 815], - "@sanity/tsdoc", - "@scalar/api-reference", - [3, 818, 8], - "fastify-api-reference", - [2, 819, 820], - "@serenity-js/protractor", - [3, 822, 13], - "webdriverio", - [2, 823, 824], - "@sinonjs/fake-timers", - "@storybook/addon-docs", - "@subwallet/react-ui", - "@supernovaio/sdk", - "-exporters", - [2, 829, 830], - [3, 829, 14], - "upernova-sdk", - [2, 832, 833], - "@sveltejs/eslint-config", - [3, 835, 10], - "kit", - [2, 836, 837], - "vite-plugin-svelte", - [2, 836, 839], - "@svgr/webpack", - "@swc/core", - "@swenkerorg/maiores-voluptatibus-nemo", - [3, 843, 13], - "odi-dolorum-provident", - [2, 844, 845], - [3, 843, 12], - "nulla-voluptates-voluptates", - [2, 847, 848], - "@swisspost/design-system-styles", - "@symbiotejs/symbiote", - "@synion/md-docs", - "@taktikorg/aut-distinctio-repellat", - [3, 853, 11], - "quo-quos", - [2, 729, 855], - [2, 854, 856], - [3, 857, 13], - "rporis-nihil-odit", - [2, 858, 859], - [3, 780, 11], - "i-dolorem", - [2, 861, 862], - [2, 854, 863], - [3, 864, 12], - "olor-", - "quibusdam", - [2, 509, 867], - [2, 866, 868], - [2, 865, 869], - "harum-reprehenderit-perferendis", - [2, 854, 871], - "illum-", - "accusamus-possimus", - [2, 873, 874], - [2, 854, 875], - [3, 876, 12], - "psa-", - "totam-aperiam", - [2, 878, 879], - [2, 877, 880], - "ste-", - "ex-tempore", - [2, 882, 883], - [2, 877, 884], - "taque-", - "nam-e", - "os", - "nam-eos", - [2, 886, 889], - [2, 877, 890], - [3, 891, 18], - "tempor", - "e-exercitationem", - [2, 893, 894], - [2, 892, 895], - "maiores-dolores-aut", - [2, 854, 897], - [3, 898, 12], - [3, 772, 9], - "fuga-", - [3, 259, 8], - [2, 901, 902], - [2, 900, 903], - [2, 899, 904], - "@bugsnag/react-native", - "@enact/sandstone", - "sse-animi", - [2, 887, 908], - [2, 854, 909], - [3, 910, 12], - "ecessitatibus-repudiandae-officia", - [2, 911, 912], - "isi-reprehenderit-amet", - [2, 911, 914], - "placeat-voluptates-dolorum", - [2, 854, 916], - [3, 917, 12], - "raesentium-dolorum-quis", - [2, 918, 919], - [3, 920, 23], - "neque-i", - "psam", - [2, 922, 923], - [2, 921, 924], - "quo-", - "reiciendis-quibusdam", - [2, 926, 927], - [2, 854, 928], - [3, 653, 12], - "atione-veniam", - [2, 930, 931], - [2, 854, 932], - "similique-natus-officia", - [2, 854, 934], - [3, 935, 12], - "uscipit-modi-ratione", - [2, 936, 937], - [3, 895, 8], - "@antora/logger", - "in", - "veniam-in", - [2, 939, 942], - [2, 854, 943], - "unde-", - "animi-omnis", - [2, 945, 946], - [2, 854, 947], - "nobis-blanditiis", - [2, 435, 949], - [2, 854, 950], - [3, 951, 12], - "oluptatem-pariatur-tenetur", - [2, 952, 953], - "@tanem/svg-injector", - "@tan", - "stack/react-query", - [2, 956, 957], - [3, 958, 10], - "svelte-query", - [2, 959, 960], - "@teamhanko/hanko-frontend-sdk", - "@testing-library/cypress", - [3, 963, 17], - "dom", - [2, 964, 965], - "jest-dom", - [2, 964, 967], - [3, 968, 22], - "native", - [2, 969, 970], - [2, 964, 89], - "user-event", - [2, 964, 973], - "@tinyhttp/app", - [3, 975, 10], - "cookie", - [2, 976, 977], - "-signature", - [2, 978, 979], - [3, 978, 12], - "rs", - [2, 981, 982], - "etag", - [2, 976, 984], - "forwarded", - [2, 976, 986], - "proxy-addr", - [2, 976, 988], - "req", - [2, 976, 990], - [3, 991, 12], - [2, 992, 591], - [3, 991, 11], - "outer", - [2, 994, 995], - [2, 976, 710], - "type", - [2, 29611, 30768], - "type-is", - [2, 976, 1000], - "url", - [2, 976, 1002], - "@tsparticles/engine", - "@twurple/ebs-helper", - "@types/estree", - "@types", - "cript-eslint/eslint-plugin", - [2, 1007, 1008], - [3, 1009, 19], - [2, 1010, 57], - [2, 1010, 594], - "@ucloud-fe/react-components", - "@udecode/plate-core", - "@uiw/react-button", - [3, 1015, 11], - "icon", - [2, 1016, 1017], - [3, 1018, 12], - "nput", - [2, 1019, 1020], - "overlay-trigger", - [2, 1016, 1022], - "@uiw/", - "@uiw/utils", - "@unleash/proxy", - "@uploadcare/file-uploader", - "@vitejs/plugin-legacy", - [3, 1028, 15], - [2, 1029, 89], - "@vue/eslint-config-typescript", - "@wesleytodd/openapi", - "@wuxh/dumi", - "@zitterorg/adipisci-quae-eius", - [3, 1034, 12], - "sper", - "natur-", - [3, 386, 10], - "ccaecati", - [2, 1038, 1039], - [2, 1037, 1040], - [2, 1036, 1041], - [2, 1035, 1042], - "t-esse-odit", - [2, 1035, 1044], - [3, 1034, 11], - "cum-", - "ipsum-beatae", - [2, 1047, 1048], - [2, 1046, 1049], - "dolor", - "emque-ut-omnis", - [2, 1051, 1052], - [2, 1046, 1053], - "est-sunt-quos", - [2, 1046, 1055], - [3, 1056, 12], - "um-veritatis-placeat", - [2, 1057, 1058], - "fluffy-waddle", - [2, 1046, 1060], - "glowing-barnacle", - [2, 1046, 1062], - "perferendis-consectetur", - [2, 873, 1064], - [2, 1046, 1065], - [3, 1066, 12], - "taque-n", - "isi-", - "veritatis", - [2, 1069, 1070], - [2, 1068, 1071], - [2, 1067, 1072], - "probable-octo", - [2, 1046, 1074], - "upgraded-fishstick", - [2, 1046, 1076], - "@zkportal/aleo-oracle-sdk", - "abort-controller", - "accepts", - "acl", - "acorn", - "arethetypeswrong", - "acorn-walk", - "action-cli", - "adm-zip", - "after", - "agenda", - "aid-guard1", - "airtap", - "ajv", - "ajv-formats", - "although-line-wall-corn", - "amqp", - "lib", - "amqplib", - "analsorhost-simple-bs", - "angular", - "-animate", - [2, 1098, 1099], - "angular-", - [2, 1101, 200], - [2, 1101, 29], - "ansi-colors", - "ansi-", - "escapes", - [2, 1105, 1106], - "regex", - "ansi-regex", - [2, 1105, 592], - "ansi", - "ansis", - "ant-design-vue", - "antd", - "antfu", - "anyway-south-boy-pilot", - "api-console", - "apidoc", - "-markdown", - [2, 1118, 1119], - "apn", - "apollo-cache-inmemory", - "apollo-c", - "lient", - [2, 1123, 1124], - "apollo-", - [2, 1126, 163], - "-http", - [2, 1127, 1128], - "app-root-path", - "appium-android-driver", - "apple-transportation-web3-locate", - "appl", - "icationinsights", - [2, 1133, 1134], - "appsync-client-node", - "archiver", - "arg", - "argparse", - "arrangement-tell-arrange", - "arra", - "y.prototype.flatmap", - [2, 1141, 1142], - "arrify", - "assert", - "-plus", - "assert-plus", - "assume", - "async", - "-listen", - [2, 1149, 1150], - "async-", - "retry", - "async-retry", - "validator", - [2, 1152, 1155], - "atob", - "aud", - "auto-changelog", - "auto-", - "install", - [2, 1160, 1161], - "auto", - "prefixer", - [2, 1163, 1164], - "ava", - "awesome-typescript-loader", - "aws-sdk", - "axe-core", - "axios", - "azure-storage", - "babel", - "babel-cli", - "babel-c", - "babel-core", - "babel-", - "eslint", - [2, 1176, 1177], - "generator", - [2, 1176, 1179], - [3, 55, 7], - "fixtures", - [2, 1181, 1182], - [2, 1176, 1183], - [3, 1184, 13], - "plugin-", - "test-runner", - [2, 1186, 1187], - [2, 1185, 1188], - "vue-jsx-merge-props", - [2, 1185, 1190], - "jest", - "babel-jest", - "loader", - [2, 1176, 1194], - "add-module-exports", - [2, 1186, 1196], - [2, 1176, 1197], - [3, 1198, 13], - "dynamic-import-node", - [2, 1199, 1200], - "external-helpers", - [2, 1199, 1202], - "import", - [2, 1199, 1204], - [3, 1205, 14], - "stanbul", - [2, 1206, 1207], - "lodash", - [2, 1199, 1209], - "module-resolver", - [2, 1199, 1211], - "name", - "d-asset-import", - [2, 1213, 1214], - [2, 1199, 1215], - [2, 1199, 80], - [3, 1217, 20], - "jsx", - [2, 1218, 1219], - [3, 82, 10], - "to-generator", - [2, 1152, 1222], - [2, 1221, 1223], - [2, 1199, 1224], - [3, 1225, 23], - "class", - "-properties", - [2, 1227, 1228], - [2, 1226, 1229], - "-legacy", - [2, 70, 1231], - [2, 1226, 1232], - "es2015-block-scoping", - [2, 1226, 1234], - [3, 1235, 30], - "module", - "s-commonjs", - [2, 1237, 1238], - [2, 1236, 1239], - "temp", - "late-literals", - [2, 1241, 1242], - [2, 1236, 1243], - [2, 1226, 77], - "react-", - "react-jsx", - [2, 1226, 1247], - [3, 1248, 29], - "remove-prop-types", - [2, 1249, 1250], - [3, 1248, 25], - [2, 1252, 1179], - [3, 1248, 24], - [2, 1254, 96], - "babel-p", - [2, 1256, 84], - "reset-", - "airbnb", - [2, 1258, 1259], - [2, 1256, 1260], - [3, 1261, 13], - "env", - [2, 1262, 1263], - [3, 1264, 14], - "s2015", - [2, 1265, 1266], - [2, 1262, 89], - "-app", - [2, 1268, 1269], - "stage-0", - [2, 1262, 1271], - [3, 1272, 19], - "1", - [2, 1273, 1274], - "2", - [2, 1273, 1276], - "3", - [2, 1273, 1278], - [2, 1176, 93], - "babel-r", - [2, 1281, 96], - "template", - [2, 1176, 1283], - "babel-t", - "raverse", - [2, 1285, 1286], - [2, 1285, 103], - "ify", - "babelify", - "babylon", - "backbone", - "baqend", - "bark-needs-visit4", - "base-64", - "base-", - "individual-comfortable-crop", - [2, 1296, 1297], - "base", - "@expressots/core", - "base64-js", - [2, 30536, 26449, 2026], - "auth", - "basic-auth", - "batuta", - "bcrypt", - "-nodejs", - [2, 1306, 1307], - "bcryptjs", - "bearcat", - "beautify-benchmark", - "beaut", - "y-foot-compass5", - [2, 1312, 1313], - "beefy", - "believed-usually-greater-passage", - "benchmark", - "best-lips-shoulder", - "best-", - "valley2", - [2, 1319, 1320], - "between-cry-additional", - "beyond", - "bfj", - "bignumber.js", - "bindings", - "bip39", - "bizcharts", - "bl", - "blanket", - "blessed", - "-con", - "trib", - "-contrib", - [2, 1331, 1334], - "blockchain-am5", - [3, 1336, 11], - "baby", - [2, 1337, 1338], - [3, 1339, 13], - "ck1", - [2, 1340, 1341], - "closely", - [2, 1337, 1343], - "directly", - [2, 1337, 1345], - "egg", - [2, 1337, 1347], - "happily", - [2, 1337, 1349], - "language", - [2, 1337, 1351], - "own8", - [2, 1337, 1353], - "record", - [2, 1337, 1355], - "scientist", - [2, 1337, 1357], - "block", - "ed", - "blocked", - "bluebird", - "bn.js", - "body-parser", - "bookshelf", - "boom", - "bootstrap", - "-sass", - [2, 1367, 1368], - "bower", - "boxen", - "brain", - "branch-body-web3-feel", - "branch-", - "camera-web3-organization", - [2, 1374, 1375], - "brfs", - "broccoli-funnel", - [3, 1378, 9], - "merge-trees", - [2, 1379, 1380], - "test-", - "helper", - "test-helper", - [2, 1379, 1384], - "brought-tried-whether8", - "browser-sync", - "browser", - "browserify", - "-shim", - [2, 1389, 1390], - "slist", - [2, 1388, 1392], - "bs58", - "bson", - "btoa", - "buble", - "buffer", - "-equal", - [2, 1398, 1399], - "bufferutil", - "built-who-entire", - "built", - "in-modules", - [2, 1403, 1404], - "bulma", - "bump-cli", - "bundle-collapser", - "bunyan", - "busboy", - "bytebuffer", - "byte", - "bytes", - "c8", - "cac", - "cache-manager", - "call-bind", - [2, 32731, 158], - [2, 30999, 28513], - "camelcase", - "caniuse", - "-lite", - [2, 1421, 1422], - "canvas", - "careful-faster-dirty-matter", - "case-sensitive-paths-webpack-plugin", - "casperjs", - "caught-brain-service0", - "chai", - "-as-promised", - [2, 1429, 1430], - "chai-", - "passport-strategy", - [2, 1432, 1433], - "subset", - "chai-subset", - "chalk", - "chance", - "-able-necessary-bell", - [2, 1438, 1439], - "@amaui/icons-material-rounded-react", - [2, 26909, 26910], - "change-case", - "change", - [2, 27056, 28675], - "changelogen", - "chart.js", - "cheerio", - "chicken-fell-spread", - "child_process", - "child", - "-pro", - "cess-promise", - [2, 1452, 1453], - [2, 1451, 1454], - "choerodon-ui", - "chokidar", - "ci-info", - "ckeditor5", - "names", - "classnames", - "clean-css", - "clean-", - "webpack-plugin", - [2, 1463, 1464], - [2, 29755, 25720], - "r", - "clear", - "-module", - [2, 1468, 1469], - "cli-boxes", - "cli-", - "color", - "cli-color", - "@immobiliarelabs/backstage-plugin-gitlab-backend", - [2, 819, 28594], - "cli-cursor", - "spinner", - "cli-spinner", - [2, 1479, 591], - "cli-table", - "cli-table2", - "cli-table3", - "cli-t", - "runcate", - [2, 1484, 1485], - "ux", - "cli-ux", - "clipanion", - "clip", - "@busy-hour/blaze", - "clipboard", - "y", - "clipboardy", - "cliui", - "clone", - "clsx", - "clui", - "co", - "co-prompt", - "code", - [2, 1491, 3172], - "codecov", - "mirror", - "codemirror", - "coffee-script", - "coffee", - "script", - [2, 1507, 1508], - "attw", - "colorette", - "colors", - "columnify", - "comm", - "and-exists", - [2, 1514, 1515], - "command-", - "line-args", - [2, 1517, 1518], - [3, 1519, 13], - "usage", - [2, 1520, 1521], - "command", - "er", - "commander", - "@casl/ability", - "commitizen", - "commit", - "commitlint", - "@types/xast", - "tsdown", - "common-tags", - "component-emitter", - "comp", - [2, 15679, 26697], - "compression", - "concat-stream", - "conc", - "urrently", - [2, 1538, 1539], - "config", - "store", - "configstore", - "connect", - "-flash", - [2, 1544, 1545], - "connect-", - "history-api-fallback", - [2, 1547, 1548], - "mongo", - [2, 1547, 1550], - "redis", - [2, 1547, 1552], - "cons", - "globrex", - "consola", - "consol", - [3, 1014, 14], - "consolidate", - "content-disposition", - "content-", - [2, 1561, 998], - "content", - "hook", - "contenthook", - "conventional-changelog", - [2, 1566, 20], - [3, 1567, 24], - "onventionalcommits", - [2, 1568, 1569], - "conve", - "rt-source-map", - [2, 1571, 1572], - "-parser", - [2, 977, 1574], - "cookie-", - "session", - [2, 1576, 1577], - "cookie-s", - "ignature", - [2, 1579, 1580], - "copy-to-clipboard", - "copy-", - [2, 1583, 1464], - "copy", - "files", - "copyfiles", - "corcojs-qrcode", - "-logo", - [2, 1588, 1589], - "cordova", - "-js", - "core-js", - "cors", - "cosmiconfig", - "coveralls", - "cpy-cli", - "crawler", - "crc", - "create-hash", - "create-", - "react-class", - [2, 1601, 1602], - "critical", - "cron", - "croner", - "emoji-js", - "cronnor", - "cropperjs", - "cross-env", - "cross-", - "fetch", - "cross-fetch", - "spawn", - "cross-spawn", - "crypto", - "-browserify", - [2, 1616, 1617], - "crypto-", - "crypto-js", - "cson-parser", - "cspell", - "css", - "css-declaration-sorter", - "css-", - "functions-list", - [2, 1625, 1626], - "css-loader", - "minimizer-webpack-plugin", - [2, 1625, 1629], - "select", - "css-select", - "tree", - "css-tree", - "cssdb", - "cssesc", - "cssnano", - "cssstyle", - "csstype", - "csurf", - "csv", - "csv-generate", - "csv-", - "parse", - "csv-parse", - "stringify", - [2, 1643, 1646], - "csvtojson", - "cucumber", - "cuid", - "cypress", - "cz-conventional-changelog", - "d3", - "d3-array", - "d3-scale", - "d3-s", - "election", - [2, 1656, 1657], - "hape", - "d3-shape", - "dable-effect", - "daisyui", - "dance-you-thou", - "dargs", - "datafire", - "date", - "mercurius", - "date-fns", - "form", - "unbundle", - "format", - "dateformat", - "dayjs", - "deasync", - "debounce", - "debug", - "decamelize", - "@pinia/testing", - "decompress", - "dedent", - "dedupe", - "deep-assign", - "deep-", - "ist-ability3", - [2, 1554, 1684], - [2, 1683, 1685], - "diff", - "deep-diff", - "remeda", - "deep-eql", - "@nuxt/ui", - "input-otp", - "deep-equal", - "@assistant-ui/react", - "xtend", - "deep-extend", - "deep", - "merge", - "deepmerge", - "del", - "del-cli", - "delay", - "depcheck", - "depd", - "dependency-check", - "depth-clay-tax7", - "detect-indent", - "detect-", - "port", - "detect-port", - "did-enter-lay", - "2html", - "diff2html", - "erence-mile-pocket5", - [2, 1687, 1714], - "direct", - "ed-graph-typed", - [2, 1716, 1717], - "dirty-chai", - "discord-backend-manager", - "discord", - ".js", - "discord.js", - "dist", - "ance-its-clear-rate", - [2, 1724, 1725], - "dmd", - "dmd-grunt-jsdoc2md", - "dnd-multi-backend", - "dnode", - "doc-detective", - "-core", - [2, 1731, 1732], - "docco", - "docgen", - "dockerode", - "docpad", - "docschema", - "docs", - "ify-tabs", - [2, 1739, 1740], - "doctoc", - "docu", - "mentation", - [2, 1743, 1744], - "document", - "db", - "documentdb", - "-lunr-search", - [2, 467, 1749], - "dom-helpers", - "dom-", - "serializer", - [2, 1752, 1753], - "to-image-more", - [2, 1752, 1755], - "dompurify", - "dot", - "dotenv", - "-exp", - [2, 26024, 1764, 1524], - "-expand", - [2, 1759, 1762], - "download", - "-git-repo", - [2, 1764, 1765], - "doxdox", - [2, 1767, 20], - "doxdox-c", - [2, 1769, 147], - "doxdox-", - "-dox", - [2, 57, 1772], - [2, 1771, 1773], - [3, 1774, 14], - "jsdoc", - [2, 1775, 1776], - "renderer-bootstrap", - [2, 1771, 1778], - [3, 1779, 16], - "json", - [2, 1780, 1781], - "markdown", - [2, 1780, 1783], - "draft-js", - "dropzone", - "dtslint", - "dubnium", - "dumi", - [2, 31436, 31494], - "dumi-cm", - "duplexer", - "dw-neit-antd", - "each", - "echarts", - "eclint", - "ejs", - "elasticsearch", - "elect", - "ricity-death-web3-story", - [2, 1799, 1800], - [2, 28004, 28078], - "on", - "electron", - "-builder", - [2, 1804, 1805], - [3, 1806, 9], - "packager", - [2, 1807, 1808], - [3, 1809, 10], - "rebuilt", - [2, 1810, 1811], - [3, 32493, 21], - [2, 28080, 31811], - "rebuilder", - [2, 1807, 1815], - "element-resize-detector", - "element-", - "element-ui", - "eleventy", - "elliptic", - "email-templates", - "email", - "emailjs", - "ember-cli", - "-babel", - [2, 1825, 1826], - [3, 1827, 10], - "htmlbars", - [2, 1828, 1829], - "emmet", - "emotion", - "encodeurl", - "end-of-stream", - "enhanced-resolve", - "enquirer", - "ent", - "enumtype", - "envify", - "envi", - "@lobehub/chat", - "envinfo", - "enzyme", - "-adapter-react-16", - [2, 1843, 1844], - [3, 1845, 15], - [2, 1846, 594], - "enzyme-", - "shallow-equal", - [2, 1848, 1849], - "error", - "handler", - [2, 1851, 1852], - "es-check", - "es-value-fixtures", - "es5-ext", - "@upstash/context7-mcp", - "shim", - "es5-shim", - "es6-error", - "es6-", - "promise", - "es6-promise", - [3, 1863, 10], - [2, 1864, 1289], - "es6-shim", - "escape", - "-html", - "escape-html", - "escape-", - "string", - "-regexp", - [2, 1871, 1872], - [2, 1870, 1873], - "escodegen", - [3, 67, 7], - "-airbnb", - [2, 1541, 1877], - [2, 1876, 1878], - "-base", - [2, 1879, 1880], - [3, 1881, 21], - [2, 1882, 91], - [3, 1879, 14], - "google", - [2, 1884, 1885], - [3, 1886, 15], - "ulp", - [2, 1887, 1888], - "oclif", - [2, 1884, 1890], - "-typescript", - [2, 1891, 1892], - "prettier", - [2, 1884, 1894], - "app", - "react-app", - [2, 1884, 1897], - "semistandard", - [2, 1884, 1899], - [3, 1900, 15], - "tandard", - [2, 1901, 1902], - "unjs", - [2, 1884, 1904], - "xo", - [2, 1884, 1906], - "-lass", - [2, 1907, 1908], - "doc-", - [2, 1910, 1179], - [2, 1876, 1911], - "-resolver-typescript", - [2, 1204, 1913], - [2, 1876, 1914], - [2, 1876, 1194], - [3, 67, 8], - [2, 32825, 32833], - "lugin-ava", - [2, 1917, 1919], - [3, 1920, 14], - [2, 1921, 1172], - "compat", - [2, 1921, 1923], - "es5", - [2, 1921, 1925], - [3, 1926, 16], - "-comments", - [2, 671, 1928], - [2, 1927, 1929], - [3, 1930, 21], - "plugin", - [2, 1931, 1932], - "flowtype", - [2, 1921, 1934], - "html", - [2, 1921, 1936], - [2, 1921, 1204], - [2, 1921, 1192], - [3, 1939, 15], - "sdoc", - [2, 1940, 1941], - [3, 1942, 16], - "onc", - [2, 1943, 1944], - "x-a11y", - [2, 1943, 1946], - [2, 1921, 1783], - [3, 1948, 15], - "ocha", - [2, 1949, 1950], - "n", - [2, 1921, 1952], - [2, 1953, 681], - [2, 1921, 1894], - [3, 1955, 16], - "omise", - [2, 1956, 1957], - [2, 1921, 89], - "-hooks", - [2, 1959, 1960], - [3, 1959, 16], - "gexp", - [2, 1962, 1963], - "security", - [2, 1921, 1965], - [3, 1966, 15], - "onarjs", - [2, 1967, 1968], - [2, 1967, 1902], - "velte", - [2, 1967, 1971], - "test", - "ing-library", - [2, 1973, 1974], - [2, 1921, 1975], - [3, 1976, 15], - [2, 1977, 1941], - [2, 26374, 26377], - [2, 30307, 5592], - "unicorn", - [2, 1921, 1981], - "vite", - "vitest", - [2, 1921, 1984], - [3, 1985, 15], - "ue", - [2, 1986, 1987], - "remo", - "te-tester", - [2, 1989, 1990], - [2, 1876, 1991], - "scope", - [2, 1876, 1993], - "visitor-keys", - [2, 1876, 1995], - "rc", - "eslintrc", - "esm", - "espree", - "@architect/asap", - "ima", - "esprima", - "estraverse", - "estr", - "ee-walker", - [2, 2005, 2006], - "ethereumjs-tx", - [3, 2008, 11], - [2, 2009, 614], - "evalmd", - "event-stream", - "event", - "emitter2", - [2, 2013, 2014], - [3, 2015, 12], - [2, 2016, 1278], - "events", - "excellent-difficult-good", - "execa", - "exit", - "expect", - "-type", - "expect-type", - "expect.js", - "express", - "-adexe", - [2, 2026, 2027], - [3, 2028, 9], - "utodoc", - [2, 2029, 2030], - "express-", - [2, 2032, 1179], - "handle", - "canvaskit-wasm", - "handlebars", - [2, 2032, 2036], - "jwt", - "express-jwt", - [2, 2032, 1577], - "tools", - [2, 2032, 2041], - [3, 2042, 9], - "yped-rpc", - [2, 2043, 2044], - [2, 2032, 1155], - "zod-api", - [2, 2032, 2047], - "@crxjs/vite-plugin", - [2, 32904, 37123], - "extend", - "-shallow", - [2, 2051, 2052], - "extract-text-webpack-plugin", - "extract-", - "zip", - "extract-zip", - "facing-cook", - "fair-tower-web3-store", - "faker", - "fancy-log", - "fast", - "-check", - "fast-check", - [2, 32904, 13392], - "@antora/cli", - "fast-csv", - "fast-", - [2, 2068, 1693], - "glob", - "fast-glob", - "plist", - "fast-plist", - "xml-parser", - [2, 2068, 2074], - "click", - "fastclick", - "fastify", - "father", - "faucet", - "fbjs", - "fe-pilot", - "feature-rising-small7", - "femo", - "-mock", - "fetch-mock", - "fibers", - "figlet", - "figures", - "file", - "-loader", - "file-loader", - "file-", - [2, 29611, 7436, 26391], - "file-saver", - "file-type", - "planck", - "filesize", - "finalhandler", - "find", - "-cache-dir", - [2, 2100, 2101], - "find-", - "up", - "find-up", - "syncpack", - "findup-sync", - "firan-logging", - "firebase", - "-admin", - [2, 2109, 2110], - [3, 2111, 9], - [2, 2112, 2041], - "fixpack", - [2, 2120, 1145], - "fixturify", - "flat", - "pak-bundler", - [2, 2117, 2118], - [3, 639, 13], - [2, 2125, 23], - "flatpickr", - "flightplan", - "flow", - [3, 639, 15], - "flow-bin", - "@date-vir/duration", - "flowbite", - "fluent-ffmpeg", - "flux", - "follow-redirects", - "font-awesome", - "for-each", - "forever", - "fork-ts-checker-webpack-plugin", - "-alt", - [2, 2135, 2136], - "-data", - "form-data", - "nolyfill", - "formidable", - [2, 13402, 31197], - "k", - "formik", - "fresh", - "-dangerous", - [2, 2145, 2146], - "friendly-errors-webpack-plugin", - "front-matter", - "fs", - "fs-extra", - "fs-jetpack", - "fs-promise", - "fsevents", - "fstream", - "ftp", - [3, 1626, 10], - "have-names", - [2, 2157, 2158], - "fur-race-web3-pale", - "fuse.js", - "futen", - "fuzzy", - "gaze", - "gc-signals", - "-angular", - [2, 1179, 2166], - [3, 2167, 10], - "gulp-angular", - [2, 2168, 2169], - "nitro", - [2, 2168, 2171], - "gener", - "ic-pool", - [2, 2173, 2174], - "gensequence", - "gentle-party-other", - "geolib", - "get-package-type", - [2, 2181, 668], - [3, 15376, 16], - "get-port", - "get-", - "stdin", - "get-stdin", - "@c15t/backend", - "ream", - "get-stream", - "execute-in-browser", - "tsconfig", - [2, 2183, 2190], - "getmac", - "gh-pages", - "ghooks", - "github", - "-buttons", - [2, 2195, 2196], - [2, 11941, 2201], - "-parent", - "glob-parent", - "smart-text-reporter", - "global", - "globals", - "by", - "globby", - "gm", - "gmll", - "-spreadsheet", - [2, 1885, 2208], - "apis", - "googleapis", - "got", - "government-letter-web3-till", - "govuk-frontend", - "graceful-fs", - "gradually-current-chief", - "graph-these", - "graph", - [2, 25849, 25854], - "graphql", - "leaflet-gesture-handling", - "graphql-tag", - [3, 2222, 9], - "ools", - [2, 2223, 2224], - "gray-matter", - "grpc", - "grunt", - "-templates", - [2, 2166, 2229], - [2, 2228, 2230], - "grunt-a", - "uto-release", - [2, 2232, 2233], - "grunt-", - [2, 2235, 1389], - "grunt-b", - "animejs", - "grunt-bump", - "grunt-cli", - "grunt-c", - "oncurrent", - [2, 2241, 2242], - [3, 2243, 9], - [2, 26107, 26938], - "trib-clean", - [2, 2244, 2246], - [3, 2247, 15], - "ompass", - [2, 2248, 2249], - [3, 2250, 16], - "ncat", - [2, 2251, 2252], - [3, 2253, 17], - "nect", - [2, 2254, 2255], - "py", - [2, 2251, 2257], - "sslint", - [2, 2248, 2259], - [3, 2260, 17], - "min", - [2, 2261, 2262], - [3, 2247, 14], - "htmlmin", - [2, 2264, 2265], - "imagemin", - [2, 2264, 2267], - [3, 2268, 15], - "nternal", - [2, 2269, 2270], - "jshint", - [2, 2264, 2272], - [2, 2264, 695], - "unit", - "nodeunit", - [2, 2264, 2276], - "sass", - [2, 2264, 2278], - "uglify", - [2, 2264, 2280], - "watch", - [2, 2264, 2282], - "ventional-changelog", - [2, 2244, 2284], - [3, 2285, 19], - "github-", - "releaser", - [2, 2287, 2288], - [2, 2286, 2289], - [2, 2235, 1177], - "jscs", - "grunt-jscs", - "grunt-js", - "doc", - "grunt-jsdoc", - "karma", - "grunt-karma", - "mocha-test", - [2, 2235, 2299], - "newer", - "grunt-newer", - "grunt-n", - "otify", - [2, 2303, 2304], - "pm", - "grunt-npm", - "grunt-sass", - "grunt-sa", - "ucelabs", - [2, 2309, 2310], - "grunt-s", - "augment", - "grunt-shell", - "imple-mocha", - [2, 2312, 2315], - "pritesmith", - [2, 2312, 2317], - "usemin", - [2, 2235, 2319], - "gts", - "guarapi", - "gulp", - [3, 2229, 9], - "cache", - [2, 2324, 2325], - [2, 2169, 2326], - "gulp-a", - "tom-electron", - [2, 2328, 2329], - "utoprefixer", - [2, 2328, 2331], - "wspublish", - [2, 2328, 2333], - "zure-storage", - [2, 2328, 2335], - "gulp-", - "gulp-babel", - "gulp-b", - "vir", - "gulp-bom", - [1, 2343, 2349], - [0, 4796, 4797, 4798, 4799], - "gulp-bower", - "rowserify", - [2, 2339, 2345], - "uffer", - "gulp-buffer", - [0, 2358, 2380, 2388, 2399], - "augment-vir", - "gulp-bump", - "gulp-cache", - "d", - "gulp-cached", - "gulp-c", - "hanged", - [2, 2355, 2356], - [0, 1673, 4484, 4809, 1461, 3744, 4804, 1282, 4805, 4806, 3028, 3911, 4812, 2609, 3849, 4023, 4808], - "gulp-clean", - "-css", - [2, 2359, 2360], - "@flmngr/flmngr-react", - "gulp-coffee", - "gulp-co", - "mpass", - [2, 2364, 2365], - "gulp-concat", - [2, 2367, 2360], - "gulp-con", - "flict", - [2, 2369, 2370], - [2, 2369, 2255], - "gulp-copy", - "sscomb", - [2, 2355, 2374], - "gulp-css", - [2, 2376, 671], - "nano", - [2, 2376, 2378], - [ - 0, 1499, 1797, 3135, 1429, 2070, 695, 2278, 1983, 1437, 2675, 4868, 2297, 2899, 89, 3875, 4193, 4747, 1843, - 1177, 1209, 3220, 3984, 4135, 4487, 4568, 1448, 1651, 668, 3561, 4474, 2924, 1169, 1457, 1859, 2151, 2720, 3183, - 3416, 1894, 4952, 4473, 4955, 4860, 2025, 4919, 3758, 4929, 3817, 3824, 4939, 4320, 4469, 4873, 1175, 1628, - 4937, 4941, 91, 53, 4856, 4865, 4874, 2900, 2990, 3105, 4925, 3876, 4869, 4880, 4892, 1165, 1178, 1195, 3008, - 3090, 3564, 3696, 3884, 4307, 4705, 692, 4855, 4863, 4870, 2925, 4931, 4891, 1257, 3613, 3618, 4940, 4330, 192, - 4864, 4866, 4907, 3816, 4934, 606, 4883, 4890, 1264, 4909, 4917, 3734, 3885, 4824, 4831, 4852, 4859, 4923, 4835, - 4884, 1268, 3107, 4681, 4840, 4875, 1959, 1978, 2923, 3904, 4820, 4827, 1030, 4895, 1272, 4913, 1938, 4817, - 4842, 1208, 4916, 2881, 1566, 32965, 1895, 1947, 1948, 2921, 4815, 4872, 4887, 1845, 3810, 3820, 4822, 4851, - 4912, 4922, 3591, 4829, 1011, 3584, 4889, 4927, 2054, 4949, 4849, 4946, 33009, 4882, 1255, 1198, 4897, 4879, - 1009, 1426, 4899, 4903, 61, 1233, 1570, 4906 - ], - "gulp-csso", - "data", - "gulp-data", - "gulp-eslint", - "include", - [2, 2093, 2385], - [2, 2337, 2386], - [0, 4957, 4959, 3286, 4627, 4960, 89, 4962, 4963, 4964, 4967], - "ter", - "gulp-filter", - "gulp-f", - "latmap", - [2, 2391, 2392], - [3, 2393, 9], - "ten", - [2, 2394, 2395], - "ormat-md", - [2, 2391, 2397], - 1772064000000, - "gulp-ftp", - [2, 2337, 2193], - [1, 2343, 2418], - "it", - "gulp-git", - "gulp-gzip", - [2, 2337, 2036], - "gulp-h", - "eader", - "gulp-header", - "tml-replace", - [2, 2407, 2410], - [3, 2411, 9], - [2, 2412, 2262], - "font", - "iconfont", - [2, 2337, 2415], - "gulp-i", - [0, 2431, 0, 2442, 2443], - "gulp-if", - "gnore", - "gulp-ignore", - "mage-resize", - [2, 2417, 2422], - [3, 2423, 10], - [2, 2424, 2262], - "nclude", - [2, 2417, 2426], - "gulp-in", - "ject", - "gulp-inject", - [0, 1091, 4094, 3530, 4227, 1092, 2858], - "line-css", - [2, 2428, 2432], - "stall", - [2, 2428, 2434], - [2, 2417, 1207], - "jade", - "gulp-jade", - "gulp-ja", - "smine", - [2, 2439, 2440], - [0, 4973, 4976, 1098, 364, 4977, 4978], - 1771804800000, - "gulp-jscs", - "gulp-js", - "hint", - "gulp-jshint", - "on-editor", - [2, 2445, 2448], - "gulp-less", - "gulp-l", - "ivereload", - [2, 2451, 2452], - "oad-plugins", - [2, 2451, 2454], - "mini", - [1, 2343, 2470], - "minify-css", - [2, 2337, 2458], - [3, 2459, 12], - [2, 2460, 1936], - "gulp-m", - "gulp-mocha", - "gulp-newer", - "gulp-n", - "g-annotate", - [2, 2465, 2466], - "odemon", - [2, 2465, 2468], - [0, 2471, 0, 2483, 34352], - [0, 3467, 4094, 2858, 3090, 4], - "gulp-notify", - "extra", - "extras", - [2, 1186, 2474], - [2, 2337, 2475], - "gulp-plu", - "mber", - [2, 2477, 2478], - "gulp-p", - "ostcss", - [2, 2480, 2481], - [0, 4973, 4976, 1098, 4986, 4988, 4977, 4989, 6, 4978, 1283, 4991], - "ocess", - "reprocess", - [2, 2480, 2485], - 1770508800000, - [1, 2343, 2497], - "gulp-prompt", - [2, 2337, 89], - "gulp-re", - "mote-src", - [2, 2491, 2492], - "gulp-rename", - "place", - [2, 2491, 2495], - [0, 2513, 0, 2514, 2523], - "gulp-rev", - "-replace", - [2, 2498, 2499], - "gulp-r", - "uby-sass", - [2, 2501, 2502], - "gulp-sass", - "gulp-s", - "gulp-sftp", - "gulp-shell", - "gulp-size", - "ourcemaps", - [2, 2505, 2509], - "trip-debug", - [2, 2505, 2511], - [0, 4484], - [0], - "gulp-stylus", - "vg-sprite", - [2, 2505, 2516], - "gulp-svg", - "gulp-svgmin", - [2, 2518, 1542], - [2, 2337, 1283], - "gulp-t", - 1771113600000, - "gulp-tsb", - "gulp-ts", - [2, 2525, 671], - "cript", - "ypescript", - [2, 2522, 2528], - "gulp-uglify", - [1, 2343, 2532], - [0, 2534, 0, 2535, 2537], - "gulp-uncss", - [0, 4484, 3493], - [0, 1098, 12, 4627, 5001, 837], - "gulp-usemin", - 1771718400000, - "ref", - "gulp-useref", - [1, 2343, 2561], - "gulp-util", - "vinyl-zip", - [2, 2337, 2542], - "gulp-watch", - "gulp-w", - "ebpack", - [2, 2545, 2546], - "gulp-web", - [2, 2548, 36], - "gulp-zip", - ".spritesmith", - [2, 2323, 2551], - "gzip-size", - "hallmark", - "hammerjs", - "hapi", - [2, 5323, 33498], - [2, 5340, 6374], - "happy-dom", - "happy-", - [0, 2513, 0, 2514, 2537], - "happy-meant", - "hard-cool-rhythm-continued", - "has-flag", - "has-", - "parts-ice-fact", - [2, 2565, 2566], - "symbols", - "has-symbols", - "hash-sum", - "hasown", - "hast-util-raw", - [3, 2572, 10], - "sanitize", - [2, 2573, 2574], - [3, 2575, 11], - [2, 2576, 1799], - "to-estree", - [2, 2573, 2578], - [3, 2579, 13], - [2, 2580, 1936], - "jsx-runtime", - [2, 2580, 2582], - [2, 2580, 1871], - "text", - [2, 2580, 2585], - "hast", - "hastscript", - "hay-against-any-hurry", - "hbs", - "he", - "heapdump", - "helmet", - "heroicons", - "hexlet-pairs", - "hexo", - "highland", - "highl", - "ight.js", - [2, 2598, 2599], - "hiredis", - "history", - "history-", - "brass-sound", - [2, 2603, 2604], - "hit-running-special8", - "hoek", - "hogan.js", - "hoist-non-react-statics", - "homebridge", - "hono", - "hope-slight-walk1", - "hosted-git-info", - "how-to-npm", - "-dom-parser", - [2, 1936, 2615], - "html-", - "attributes", - [2, 1818, 2618], - [2, 2617, 2619], - "html-e", - "ncoding-sniffer", - [2, 2621, 2622], - "html-en", - "tities", - [2, 2624, 2625], - "scaper", - [2, 2621, 2627], - "html-loader", - [1, 2343, 2647], - "ier", - "minifier", - [2, 2617, 2632], - "-terser", - [2, 2633, 2634], - "pdf", - "html-pdf", - [2, 1246, 57], - [2, 2617, 2638], - "tags", - "html-tags", - "html-t", - "o-image", - [2, 2642, 2643], - "html-to-", - [2, 2645, 2585], - [0, 2648, 2667, 2684, 2537], - [0, 4484, 4747, 4135, 1457, 53, 3951, 1573, 5012], - "validate", - [2, 2617, 2649], - [2, 2617, 1464], - "htmlnano", - "parser2", - "htmlparser2", - "http-", - "errors", - "http-errors", - "proxy", - "http-proxy", - "-agent", - [2, 2659, 2660], - [3, 2661, 11], - "middleware", - [2, 2662, 2663], - [2, 2655, 36], - "http-s", - [0, 91], - "http-status", - "-codes", - [2, 2668, 2669], - "https", - "xy-agent", - [2, 1452, 2672], - [2, 2671, 2673], - "husky", - "hyperquest", - "hyphenate-style-name", - "i", - "i18n", - "ext", - "i18next", - "-gridly-backend", - [2, 2681, 2682], - [0, 1098, 4643], - "iconv-lite", - "identity-obj-proxy", - "ignore", - [1, 2343, 2690], - "image-size", - [0, 2691, 0, 2514, 2443], - [0, 4484, 26364], - "imagemagick", - "-pngquant", - [2, 2267, 2693], - "imap", - "immer", - "immutability-helper", - [1, 2343, 2705], - "le", - "immutable", - "import-", - [2, 2701, 2145], - "local", - [2, 2701, 2703], - [0, 2513, 0, 2736, 34352], - "ess", - "impress", - "in-publish", - "indent-string", - "inert", - "inferno", - "inflection", - "inherits", - "ini", - "iniparser", - "ink", - "-style-parser", - [2, 134, 2717], - "innosetup-compiler", - "inquirer", - "-autocomplete-prompt", - [2, 2720, 2721], - "inside-throw", - "insta", - "gram-node", - [2, 2724, 2725], - "interpret", - "intl", - "-tel-input", - [2, 2728, 2729], - "invariant", - "inversify", - "ionic", - [2, 34017, 34020], - "ionicons", - [0, 1098, 29, 5027, 4963], - [1, 2343, 2773], - "ioredis", - "ip", - "irc", - "is", - "is-ci", - "is-glob", - "is-installed-globally", - "is-plain-obj", - "ect", - [2, 2745, 2746], - "is-p", - "otential-custom-element-name", - [2, 2748, 2749], - "romise", - "is-promise", - "is-stream", - "is-url", - "is-wsl", - "isarray", - "isobject", - "isomorphic-fetch", - "istanbul", - "itwcw-package-analytics", - "iview", - "jackspeak", - "jake", - "jarallax", - "jasmine", - [2, 2765, 1732], - "jasmine-", - [2, 2767, 202], - "jest-", - "canvas-mock", - [2, 2769, 2770], - "jest-c", - [0, 2513, 0, 2514, 2487], - "jest-cli", - [1, 2343, 2776], - [0, 2789, 0, 2514, 2537], - "jest-diff", - "ronment-jsdom", - [2, 1840, 2778], - [2, 2769, 2779], - "-fourteen", - [2, 2780, 2781], - [3, 2780, 17], - [2, 2783, 202], - "jest-e", - "xtended", - [2, 2785, 2786], - "html-re", - [0, 5038, 4484], - "porters", - [2, 2788, 2790], - [2, 2769, 2791], - "junit", - "jest-junit", - "pnp-resolver", - [2, 2769, 2795], - [2, 2769, 814], - "jest-util", - [1, 2343, 2803], - "-typeahead", - [2, 2282, 2800], - [2, 2769, 2801], - [0, 2513, 2804, 2815, 2399], - [0, 2734], - "jest-worker", - "jimp", - "jiti", - "jodit", - "-react", - "jodit-react", - "johnny-five", - "joi", - "jotai", - "jquery", - [0, 1098, 38], - "jquery-ui", - "js-base64", - [1, 2343, 2819], - [0, 2830, 2836, 2837, 2523], - "js-beautify", - "js-cookie", - "js-yaml", - "jsarch", - "jscpd", - "-api", - "jsdoc-api", - "jsdoc-", - "to-markdown", - [2, 2827, 2828], - [0, 1673, 3789, 1461, 1282, 5060, 5071, 6476, 5057, 5059, 5062, 5065, 5049, 5050, 5069, 5047], - "m", - "jsdom", - "-no-contextify", - [2, 2832, 2833], - "jsesc", - [ - 0, 1114, 2070, 1192, 89, 1177, 4487, 5098, 4468, 3213, 1610, 5102, 3824, 1193, 5100, 3697, 3846, 91, 53, 5087, - 2990, 5125, 4880, 1178, 1540, 3857, 97, 5123, 5076, 5090, 5091, 5094, 5108, 5113, 3904, 5106, 5121, 5097, 5084, - 6498, 3810, 5115, 5082, 1011, 971, 5110, 5085, 5075, 5118, 5103, 5079 - ], - [0, 5127, 4964, 89, 5128, 4627, 4963, 181, 5130, 4967, 5131, 5133], - "-stylish", - [2, 2272, 2838], - [1, 2343, 2868], - "json-2-csv", - "json-", - "json-loader", - [3, 6, 6], - "json-schema", - "json-s", - "erver", - "json-server", - "-stringify", - [2, 176, 2849], - [2, 2846, 2850], - "json-st", - "ringify-safe", - [2, 2852, 2853], - "5", - "json5", - "c-parser", - [2, 1781, 2857], - "jsonfile", - "jsonschema", - "JSONStream", - "webtoken", - [2, 1781, 2862], - "jspm", - "jstates", - "jszip", - "jwt-decode", - [0, 2884, 2901, 2938, 2537], - "simple", - "jwt-simple", - [2, 2297, 1617], - [3, 2871, 13], - "stack", - "-launcher", - [2, 2873, 2874], - [2, 2872, 2875], - "karma-", - "karma-chai", - "karma-ch", - "rome-launcher", - [2, 2879, 2880], - "karma-c", - "over", - [0, 3021], - "overage", - [2, 2882, 2885], - "browsers", - [2, 1708, 2887], - [2, 2877, 2888], - "edge-launcher", - [2, 2877, 2890], - "fire", - "fox-launcher", - [2, 2892, 2893], - [2, 2877, 2894], - "ie-launcher", - [2, 2877, 2896], - [2, 2877, 2765], - "mocha", - "karma-mocha", - [0, 1114, 89, 2079, 3824, 91, 4880, 5139, 4883], - "orter", - "-reporter", - [2, 2900, 2903], - "phantomjs-launcher", - [2, 2877, 2905], - "qunit", - "karma-qunit", - "rollup-preprocessor", - [2, 2877, 2909], - "safari-launcher", - [2, 2877, 2911], - "karma-sa", - "uce-launcher", - [2, 2913, 2914], - "karma-s", - "inon", - "karma-sinon", - "ourcemap", - [2, 2919, 2091], - [2, 2916, 2920], - "pec-reporter", - [2, 2916, 2922], - "webpack", - [2, 2877, 2924], - "keycode", - "keypress", - "keyv", - "kleur", - "knex", - "knip", - "known-css-properties", - "knox", - "koa", - "koa-body", - [2, 2935, 57], - "koa-", - [0, 5127, 4964, 4653, 1114, 4627, 4963, 5130, 4967, 89, 5128, 181], - [1, 2343, 2974], - "compose", - "koa-compose", - "logger", - "koa-logger", - "mount", - "koa-mount", - [2, 2937, 38], - "static", - "koa-static", - "kue", - "label-lungs-court4", - "-perfe", - "ctly-blow-series", - [2, 2951, 2952], - [2, 1351, 2953], - "late-", - "dress-mail5", - [2, 2955, 2956], - "late", - "st-version", - [2, 2958, 2959], - "lazy.js", - "lead-alike-web3-applied", - "leaflet", - "left-pad", - "left", - "pad", - "leftpad", - "lerna", - [2, 695, 2091], - "level", - "down", - "leveldown", - "levelup", - [0, 2985, 2988, 3011, 2523], - "leven", - "libnpmdiff", - "libnpm", - "exec", - "libnpmexec", - "fund", - "libnpmfund", - "libphonenumber-js", - "liftoff", - "lilconfig", - [0, 1461, 5145, 5146], - "linkifyjs", - "lint-", - [0, 1114, 2070, 89, 2079, 3824, 91, 4880, 4883], - "staged", - "lint-staged", - "listr", - "listr2", - "lit-element", - "lite", - "-server", - "lite-server", - "live-server", - "live", - "reload", - "livereload", - "load", - "-grunt-config", - [2, 3001, 3002], - [3, 3003, 11], - "tasks", - [2, 3004, 3005], - "-utils", - [2, 1194, 3007], - "-web-server", - [2, 2703, 3009], - [0, 5127, 4964, 4653, 1114, 4627, 4963, 5130, 4967, 89, 5128, 181, 1017], - "localforage", - "tunnel", - "localtunnel", - "lock", - [1, 2343, 3017], - [0, 3075, 3100, 3104, 2537], - "file-lint", - [2, 3015, 3018], - "-es", - "lodash-es", - ".assign", - [2, 1209, 3022], - "lodash.", - [2, 3024, 1420], - "lodash.c", - "lonedeep", - [2, 3026, 3027], - [2, 3024, 1675], - [3, 3029, 9], - "faults", - [2, 3030, 3031], - "flatten", - [2, 3024, 3033], - "lodash.f", - "oreach", - [2, 3035, 3036], - "get", - "lodash.get", - "isempty", - [2, 3024, 3040], - [3, 3041, 10], - "qual", - [2, 3042, 3043], - [3, 3041, 9], - "function", - [2, 3045, 3046], - "object", - [2, 3045, 3048], - "plainobject", - [2, 3045, 3050], - [2, 3045, 1871], - "map", - "lodash.map", - "lodash.m", - "emoize", - [2, 3055, 3056], - [3, 3057, 9], - "rge", - [2, 3058, 3059], - "omit", - "lodash.omit", - "pick", - "lodash.pick", - "set", - "lodash.set", - [2, 3024, 1283], - "lodash.t", - "hrottle", - [2, 3068, 3069], - "uniq", - "lodash.uniq", - "log", - "log-symbols", - [0, 5154, 5152], - "update", - "log-update", - "log4js", - "loglevel", - "long", - "loopback", - "loose-envify", - "lowdb", - "lru-cache", - "lucide", - "luck-rubber-do", - "lwip", - "lws", - "madwizard", - "magic-string", - "magmastream", - "main-bower-files", - "make-dir", - "make-", - "make-node", - "mammoth", - "manifest", - "mantine-contextmenu", - "many-favorite6", - [0, 4484, 3709, 4508, 4355, 838, 5160, 5159, 4514, 5162, 840], - "stream", - "map-stream", - "mapboxgl-legend", - [0, 5165, 5166, 2038, 5167, 3424, 5168, 5170, 3709], - "markdown-it", - "-anchor", - [2, 3105, 3106], - [3, 3107, 12], - "cont", - [1, 2343, 3168], - "container", - [2, 3108, 3111], - "emoji", - [2, 3108, 3113], - [3, 3105, 9], - [2, 3115, 2636], - [2, 3115, 176], - [3, 3117, 10], - "o-jsx", - [2, 3118, 3119], - [3, 3120, 11], - "c", - [2, 3121, 3122], - [2, 1783, 671], - [2, 3124, 20], - "mark", - "marked", - "y-markdown", - [2, 3126, 3128], - "matcha", - [3, 558, 9], - [2, 3131, 181], - "mathjs", - "matter-view-web3-fence", - "md5", - "md5-file", - "mdast-util-from-markdown", - [3, 3137, 11], - "to-hast", - [2, 3138, 3139], - "mdn-data", - "mdxts", - "memcached", - "memfs", - "memoize-one", - "memo", - "ry-cache", - [2, 3146, 3147], - "memory-", - "memory-fs", - "memory", - [2, 3151, 3101], - "memwatch", - "menta", - "l-oxygen-dozen", - [2, 3154, 3155], - "meow", - "merge-", - [2, 3158, 3101], - "metalsmith", - "meteor", - "method-override", - "method", - "methods", - "microbundle", - "micro", - "micromark", - [0, 3169, 3179, 3182, 2537], - [0, 2070, 4207, 3093, 1525, 1573, 5175, 5180], - "micromatch", - "mime", - "-types", - "mime-types", - "min-heap-typed", - "-extract-plugin", - [2, 2360, 3175], - [2, 2456, 3176], - "minify", - [0, 4135, 53, 4865, 5185, 5191], - "atch", - "minimatch", - [0, 5193, 1172, 5194, 5197, 5198, 1173, 4643], - "minimist", - "-jet-printed-supper", - [2, 1504, 3184], - "missing-sport-living", - "mkcert", - "mkdirp", - "mlly", - "mobx", - "mobx-react", - "mocha-", - "head", - "less-", - "chrome", - "less-chrome", - [2, 3193, 3196], - [2, 3192, 3197], - [2, 2793, 2903], - [2, 3192, 3199], - "lcov-reporter", - [2, 3192, 3201], - "mock-fs", - "mock-", - "property", - [2, 3204, 3205], - [1, 2343, 3208], - [0, 3214, 3217, 2514, 2537], - "require", - [2, 3204, 3209], - "mock-stdin", - "mock", - "mockdate", - [0, 9673, 3527, 5279], - "mockery", - "mockjs", - [0, 5282, 4294, 5210], - [2, 3224, 3225], - "moleculer", - "moment", - "-timezone", - [2, 3220, 3221], - "monaco-yaml", - [3, 5838, 28], - "xp-modifiers", - "monads-io", - "ress", - "-express", - [2, 1550, 3228], - "mongodb", - "ose", - "mongoose", - "monitor", - "-dashboard", - [2, 3233, 3234], - "monk", - "morgan", - "motor-positive-spirit", - "move-wolf-throughout", - "movie-obtain-tail-prepare", - "mqtt", - "ms", - "mssql", - "msw", - "mud-slowly-five3", - "multer", - [1, 2343, 3248], - [0, 3252, 3269, 3272, 2537], - "multimatch", - "multi", - "part", - [0, 1676, 2856, 4135, 5233, 104, 58, 5228, 5230, 101, 5216, 51, 1573, 31292, 5226, 5222], - "multiparty", - "multip", - "le-cucumber-html-reporter", - [2, 3254, 3255], - "mustache", - "muuri", - "mysql", - "mysql2", - "mz", - "nails-wild-interest-garden", - "nan", - "nano-css", - "id", - "nanoid", - "-keymap", - [2, 970, 3267], - [0, 4494, 4039, 4474, 5245, 5254, 5251, 87, 92, 5235, 5180, 5244, 5240, 5241, 5191], - "nativefier", - [2, 970, 1508], - [0, 5193, 1172, 5256, 5257, 5194, 5258, 5259, 5260, 5197, 5198, 5261, 1175, 4643], - "natural", - "nconf", - "ncp", - "near-social-bridge", - "nedb", - "needle", - [1, 2343, 3280], - [0, 0, 3293, 2514, 2523], - "-commander", - [2, 678, 3281], - "newman", - "newrelic", - "next-auth", - "next", - "nextjs", - "ng-mocks", - "ng-zorro-antd", - "ngrok", - "nib", - "nightmare", - [0, 53], - "nightwatch", - "nine-yes-merely6", - "nise", - "nock", - "addon-api", - [2, 813, 3298], - "node-cache", - "node-c", - "ontainerpattern", - [2, 3301, 3302], - "dev", - "node-dev", - "node-d", - [1, 2343, 3311], - "node-dir", - "node-emoji", - "node-fetch", - [0, 3328, 3338, 3398, 2523], - "orge", - "node-forge", - "node-g", - "toolchain", - "node-gcm", - "eocoder", - [2, 3314, 3317], - "JSONC", - "arser", - "html-parser", - [2, 813, 3321], - "inspector", - [2, 813, 3323], - "JSX", - "mocks-http", - [2, 813, 3326], - [0, 104], - "notifier", - [2, 813, 3329], - "oauth2-server", - [2, 813, 3331], - "powertools", - [2, 813, 3333], - "node-p", - "re-gyp", - [2, 3335, 3336], - [0, 5282, 51, 5274, 5276, 5279, 5273], - "node-pty", - "node-re", - "node-red", - "node-sass", - "node-s", - "chedule", - [2, 3343, 3344], - "tatic", - "node-static", - "uuid", - "node-uuid", - "node-watch", - "node-w", - "indows", - [2, 3351, 3352], - "xlsx", - "node-xlsx", - ".extend", - [2, 202, 3356], - "git", - "nodegit", - "mailer", - "nodemailer", - "TSX", - "nodemon", - "webkit", - "nodewebkit", - "nolangjs", - "nomnom", - "nopt", - "normalize-path", - [3, 3369, 10], - [2, 3370, 1002], - "wheel", - [2, 3370, 3372], - [3, 3369, 9], - ".css", - [2, 3374, 3375], - "np", - "npm", - "npm-check", - "-updates", - [2, 3379, 3380], - "npm-", - "package", - "GraphQL", - "package-arg", - [2, 3382, 3385], - [3, 3386, 12], - [3, 4786, 24], - "json-lint", - [2, 3387, 3389], - "npm-pack", - "list", - [2, 3391, 3392], - "regist", - "ry-fetch", - [2, 3394, 3395], - [2, 3382, 3396], - [0, 1172, 5284, 57, 5285, 5286, 58], - "mc-scripts", - "npm-run-all", - [2, 3400, 1276], - "npm-run-", - "path", - [2, 3402, 3403], - [2, 556, 11398, 3902, 591], - "npm-to-yarn", - "windows-upgrade", - [2, 3382, 3407], - "npmcli", - "npmignore", - "npmlog", - "nprogress", - "nsp", - "nuke-cli", - "numeral", - "nunjucks", - "nvm", - "nvmrc", - "nwsapi", - "nx", - "nyc", - "oas", - "oas-normalize", - "oauth", - [3, 77, 7], - "assign", - [2, 3425, 3426], - "hash", - "object-hash", - "inspect", - [2, 3425, 3430], - "keys", - "object-keys", - "object-path", - [2, 3048, 3022], - "object.", - "entries", - [2, 3436, 3437], - "observe-food-motion-hidden", - "on-finished", - "once", - "onchange", - "one-how-hand", - "onoff", - "open", - "open-cli", - "api-c", - [1, 2343, 3454], - "lient-axios", - [2, 3447, 3449], - [2, 3445, 3450], - "openapi", - [2, 3452, 1712], - [0, 3457, 3464, 3465, 2537], - "opencv", - "opener", - [0, 5292, 56], - "openweather", - "opn", - "optimist", - "optimi", - "ze-css-assets-webpack-plugin", - [2, 3461, 3462], - [0, 53, 5295], - [0, 5297], - "optionator", - "ora", - "orchestrator", - "orm", - "osenv", - "outdent", - "outline-slowly", - "overlay", - "scrollbars", - [2, 3473, 3474], - "ovsx", - "p-event", - "p-map", - "p-queue", - "p-timeout", - "p23", - "pa11y", - "pacote", - "pageres", - "paintor", - "pako", - "para", - "para-cli", - "ent-js", - [2, 3488, 3489], - "llelshell", - [2, 3487, 3491], - "parse5", - "parseurl", - "passport", - [3, 1433, 9], - "facebook", - [2, 3496, 3497], - [2, 3496, 2703], - [2, 3496, 3424], - [2, 3500, 1276], - [2, 3403, 1617], - "path-", - "exists", - "path-exists", - "is-absolute", - [2, 3503, 3506], - "to-regexp", - [2, 3503, 3508], - "pathe", - "paypal-server-api", - "pdfjs", - "pdfkit", - "perf", - [1, 2343, 3516], - [0, 3538, 3546, 3581, 2523], - "ormance-now", - [2, 3514, 3517], - "pg", - "phantom", - [3, 2905, 9], - [3, 2905, 10], - "prebuilt", - [2, 3522, 3523], - "phonegap", - "pi-gpio", - "picocolors", - "pico", - "match", - "picomatch", - "pie-case-nor-great", - "pify", - "pino", - "pinst", - "pitch-somehow-earth-brave", - "pixelmatch", - "pkg-dir", - [ - 0, 5302, 1676, 2929, 5303, 4135, 2822, 4213, 1457, 18089, 2098, 5305, 3183, 3416, 3692, 5306, 3530, 27921, 2226, - 3105, 5312, 5314, 5319, 27482, 5320, 5321, 27512, 5323, 5328, 27513, 27514, 2557, 5332, 2558 - ], - "pkg-up", - "pkginfo", - "playwright", - "plugin-e", - "rror", - [2, 3542, 3543], - "plur", - [ - 0, 1414, 1166, 4494, 188, 4763, 2278, 89, 1177, 3127, 3721, 4039, 2203, 1894, 3824, 442, 91, 5307, 4874, 29549, - 27521, 19181, 5944, 9245, 30864, 3114, 27517, 27519, 5337, 25652, 1895, 27518, 30114, 5344 - ], - "pluralize", - "pm2", - "pngjs", - "pnp-", - [2, 3550, 1464], - "pnpm", - "pnpx", - "poe-api-manager", - "polished", - "poli", - "tical-plan-careful", - [2, 3556, 3557], - "popper.js", - "portfinder", - "postcss", - [3, 214, 8], - "calc", - [2, 3562, 3563], - [3, 3564, 9], - "postcss-cli", - "al-notation", - [2, 3046, 3567], - [2, 866, 3568], - [2, 3565, 3569], - [3, 3570, 13], - [2, 3571, 2262], - [3, 3570, 10], - "nvert-values", - [2, 3573, 3574], - "ssnext", - [2, 3565, 3576], - "ustom-media", - [2, 3565, 3578], - [3, 3579, 15], - [0, 5347, 5348, 5349, 1745, 5351, 5352, 5353, 5354, 1179, 5130, 1820, 5355, 1936, 1783, 5356, 3416], - "ies", - "properties", - [2, 3580, 3583], - [3, 219, 8], - "selectors", - [2, 3580, 3586], - "disc", - "ard-comments", - [2, 3588, 3589], - [2, 3562, 3590], - [3, 3591, 16], - [1, 2343, 3594], - [0, 0, 3596, 3601, 2537], - "es", - [0, 5517, 11976, 811, 816, 10615, 10817, 5366, 5364, 5087, 4874, 1317, 1413, 1192, 4042, 4057, 4468, 4484, 91], - "duplicates", - [2, 3592, 3597], - "empty", - [2, 3592, 3599], - [0, 1623, 57, 5374, 5376, 6892, 91, 31130, 31139, 31177, 3178, 1671, 7121], - "overridden", - [2, 3592, 3602], - "flexbugs-fixes", - [2, 3562, 3604], - [2, 3562, 1936], - [3, 214, 9], - "mage-", - "set-function", - [2, 3608, 3609], - [2, 3607, 3610], - [3, 3611, 10], - [2, 3612, 1709], - "load-", - "load-config", - [2, 3562, 3615], - [3, 3616, 12], - [2, 3617, 1524], - "hand", - "longhand", - [2, 3158, 3620], - [2, 3562, 3621], - [3, 3622, 14], - "rules", - [2, 3623, 3624], - [3, 3622, 9], - "inify-font-values", - [2, 3626, 3627], - [3, 3628, 15], - "grad", - [1, 2343, 3645], - "gradients", - [2, 3629, 3632], - "params", - [2, 3629, 3634], - [2, 3629, 3586], - "odules-local-by-default", - [2, 3626, 3637], - "nested", - [2, 3562, 3639], - [3, 3640, 12], - "ing", - [2, 3641, 3642], - [3, 3640, 9], - [0, 3654, 3655, 3690, 2537], - "ormalize", - [2, 3644, 3646], - "-charset", - [2, 3647, 3648], - [3, 3649, 18], - "positions", - [2, 3650, 3651], - [2, 3650, 1871], - [ - 0, 5381, 5383, 5387, 5391, 5393, 5394, 5397, 5400, 5402, 5405, 5408, 5411, 5414, 5416, 5419, 5423, 5425, 5430, - 5436, 2993, 5438 - ], - [ - 0, 5441, 5446, 5450, 5452, 5453, 5456, 5458, 5461, 5464, 192, 5467, 5470, 5473, 5474, 5476, 5478, 1177, 1895, - 2675, 2990, 4193, 91, 5480 - ], - "unicode", - [2, 3650, 3656], - [3, 3657, 19], - "rl", - [2, 3658, 3659], - "whitespace", - [2, 3650, 3661], - "ordered-values", - [2, 3562, 3663], - "prefix", - "-selector", - [2, 3665, 3666], - [2, 3562, 3667], - [3, 3668, 11], - "set-", - "set-env", - [2, 3669, 3671], - "reduce-initial", - [2, 3562, 3673], - "safe-parser", - [2, 3562, 3675], - [3, 3676, 9], - [2, 3677, 1623], - "or-parser", - [2, 1799, 3679], - [2, 3677, 3680], - "vgo", - [2, 3677, 3682], - "ue-selectors", - [2, 3071, 3684], - [2, 3562, 3685], - "value-parser", - [2, 3562, 3687], - "post", - [0, 5483, 1117, 1745, 5484], - "postgrejs", - "posthtml", - "pouchdb", - "power", - "-assert", - [2, 3694, 3695], - "pre-commit", - "preact", - "prepare-package", - "-plu", - "gin-jsdoc", - [2, 3700, 3701], - [2, 1894, 3702], - [3, 3703, 16], - "organize-imports", - [2, 3704, 3705], - "packagejson", - [2, 3704, 3707], - "svelte", - [2, 3704, 3709], - "prettierrc", - "prett", - "y-bytes", - [2, 3712, 3713], - "pretty-", - [2, 3715, 1851], - [2, 3715, 1671], - "pretty-ms", - "quick", - [2, 3715, 3719], - "pretty", - "prettyjson", - [1, 2343, 3728], - "prisma", - "prismjs", - "private-bower", - "proc-log", - [0, 3740, 0, 3748, 34352], - "process", - [3, 217, 8], - "-bar-webpack-plugin", - [2, 3730, 3731], - "-polyfill", - [2, 1862, 3733], - "s-aplus-tests", - [2, 1862, 3735], - "prom", - "o-server", - [2, 3737, 3738], - [0, 5497, 5498, 5502, 5504, 2222, 5506, 4484], - "prompt", - "prompts", - "prop", - "prop-types", - "-information", - [2, 3205, 3745], - "protobufjs", - [0, 5575, 2220, 89, 582, 5576, 2325], - [2, 38087, 27470], - "protractor", - "quire", - "proxyquire", - "publish-please", - "pug", - "pull-stream", - "pump", - "punycode", - "puppeteer", - "purgecss", - "q", - "qr-image", - "qrcode-terminal", - "qs", - "query-", - [2, 3764, 1871], - "query", - "querystring", - "queue", - "-typed", - "queue-typed", - "quill", - "-dom", - "qunit-dom", - "qunitjs", - "raf", - "ramda", - "random-words", - "random", - "randombytes", - [2, 3778, 1871], - "range-parser", - [1, 2343, 3785], - "raven", - "raw-body", - [0, 3796, 3806, 3823, 2487], - "raw-loader", - "rc-slider", - "rc-tooltip", - "rc-util", - "rcw-plugin", - "react-a", - "ddons-css-transition-group", - [2, 3791, 3792], - [3, 3793, 13], - "shallow-", - [0, 89, 4042, 3744, 53, 5582, 87, 4232, 90, 5583, 5589], - "compare", - [2, 3795, 3797], - [2, 3794, 3798], - "react-ap", - "ollo", - [2, 3800, 3801], - [2, 1897, 3733], - [2, 1246, 1367], - "react-c", - [0, 1192, 1177, 4468, 1610, 91, 5087, 4880, 2829, 1959, 1969, 1966], - "react-color", - "react-co", - "py-to-clipboard", - [2, 3808, 3809], - "picker", - "datepicker", - [2, 1246, 3812], - "react-d", - "ev-utils", - [2, 3814, 3815], - "react-dnd", - "5-backend", - [2, 1868, 3818], - [2, 3817, 3819], - "ocgen", - [2, 3814, 3821], - [0, 5593, 1745, 1179, 89, 4978, 1283], - "react-dom", - "ropzone", - [2, 3814, 3825], - "error-", - [2, 3827, 3473], - [2, 1246, 3828], - [2, 1246, 2593], - "react-h", - "ook-form", - [2, 3831, 3832], - "react-ho", - "t-loader", - [2, 3834, 3835], - [2, 1246, 2681], - "react-i", - "react-icons", - "nter", - "section-observer", - [2, 3840, 3841], - [2, 3838, 3842], - [1, 2343, 3851], - [2, 28573, 26849], - "react-intl", - "react-is", - "lifecycles-compat", - [2, 1246, 3848], - [2, 1246, 1783], - [0, 3859, 3873, 2514, 2399], - "odal", - "react-modal", - "react-mo", - "tion", - [2, 3854, 3855], - [2, 1246, 970], - "-key", - [0, 4135, 1996, 5598], - "-keychain", - [2, 3857, 3860], - [3, 3861, 13], - "vector-icons", - [2, 3862, 3863], - "react-n", - "umber-format", - [2, 3865, 3866], - "onclickoutside", - [2, 1246, 3868], - "react-p", - "roperty", - [2, 3870, 3871], - [0, 1680, 1177, 53, 5601, 1006, 4523, 5274, 5604], - "x", - "redux", - "react-redux", - "react-re", - [2, 3877, 2145], - [1, 2343, 3880], - [0, 3892, 3896, 3907, 2523], - "sponsive", - [2, 3877, 3881], - "react-r", - [2, 3883, 995], - [2, 3884, 3772], - [3, 3885, 13], - [2, 3886, 3875], - "scripts", - [2, 1246, 3888], - "react-s", - [2, 3890, 1799], - [0, 56, 5611, 5292], - "react-slick", - "tyleguidist", - [2, 3890, 3894], - [0, 53, 101, 5615, 5617, 5295, 5619], - "react-svg", - "tap-event-plugin", - [2, 1246, 3898], - "react-t", - "est-", - "renderer", - [2, 3901, 3902], - [2, 3900, 3903], - "oastify", - [2, 3900, 3905], - [0, 1172, 5297, 70], - [1, 2343, 3918], - "react-tools", - "ransition-group", - [2, 3900, 3910], - "virtualized", - [2, 1246, 3912], - "reactify", - "strap", - [2, 89, 3915], - "read", - [0, 3920, 3464, 3465, 2399], - "read-pkg", - [0, 56], - "read-pkg-up", - "able-stream", - [2, 3917, 3922], - "line", - "readline", - "-sync", - [2, 3925, 3926], - "recall-shut-say", - [1, 2343, 3933], - "recast", - "recently-building-save", - "rechoir", - [0, 3934, 3464, 3465, 2443], - [0, 56, 5631], - "recompose", - "recu", - "rsive-readdir", - [2, 3936, 3937], - "redoc", - "usaurus", - [2, 3939, 3940], - "-actions", - [2, 3875, 3942], - "redux-", - "redux-form", - [2, 3944, 2942], - "saga", - "redux-saga", - "thunk", - "redux-thunk", - "reflect-metadata", - [1, 2343, 3953], - [0, 3982, 3983, 3465, 2537], - "regenerate", - [3, 3954, 9], - "or-runtime", - [2, 3955, 3956], - "rehype", - "-auto", - "-headings", - [2, 163, 3960], - [2, 3959, 3961], - [2, 3958, 3962], - "rehype-", - [3, 1202, 9], - "links", - [2, 3965, 3966], - [2, 3964, 3967], - "mdx-code-props", - [2, 3964, 3969], - [2, 3964, 1644], - "raw", - "rehype-raw", - "slug", - "rehype-slug", - "rehype-s", - "tringify", - [2, 3976, 3977], - "release", - "release-it", - "remap-istanbul", - [0, 5637, 5222, 56, 5638, 5640], - [0, 53, 5295, 58], - "remark", - [2, 3984, 20], - "remark-", - "gfm", - "remark-gfm", - "remark-html", - "mermaidjs", - [2, 3986, 3990], - [2, 3986, 1644], - "remark-p", - [2, 1258, 2195], - [2, 3993, 3994], - [3, 3995, 14], - "wooorm", - [2, 3996, 3997], - [2, 3986, 3958], - "able", - "remarkable", - "replace-ext", - "replace-", - "in-file", - [2, 4003, 4004], - [1, 2343, 4011], - "-promise", - [2, 705, 4007], - "-native", - [2, 4008, 4009], - [0, 3920, 3293, 3465, 2523], - "require-all", - "require-", - "dir", - "require-dir", - [1, 2343, 4032], - "index", - [2, 3209, 4017], - "requirejs", - "rese", - "lect", - "reselect", - "resize-observer-polyfill", - "-from", - [2, 814, 4024], - "resolve-", - "url-loader", - [2, 4026, 4027], - "rest-chronicle", - "rest", - "restify", - [0, 4091, 4095, 3465, 2399], - "restler", - "ore-cursor", - [2, 4030, 4034], - "rethinkdb", - "rewire", - "rfdc", - "rimraf", - "robot", - "robotjs", - "rollup", - "rollup-p", - "lugin-babel", - [2, 4043, 4044], - [3, 4045, 15], - "uble", - [2, 4046, 4047], - [3, 4045, 14], - "clean", - "cleanup", - [2, 4049, 4051], - [3, 4052, 15], - "ommonjs", - [2, 4053, 4054], - "dts", - [2, 4049, 4056], - [2, 4049, 1781], - "license", - [2, 4049, 4059], - "builtin", - "builtins", - [2, 813, 4062], - [2, 4049, 4063], - [3, 4064, 19], - [2, 4065, 2203], - [2, 4065, 814], - "replace", - [2, 4049, 4068], - "sourcemaps", - [2, 4049, 4070], - "terser", - [2, 4049, 4072], - [3, 4073, 15], - [2, 4074, 2528], - [2, 4075, 1276], - [2, 4049, 2280], - "visualizer", - [2, 4049, 4078], - [3, 4045, 13], - [2, 4080, 594], - "route", - "routes", - "rsnext", - "rsvp", - "rtlcss", - "run-s", - "equence", - [2, 4087, 4088], - "@modern-js/utils", - [0, 4135, 56, 5652, 5656, 5658, 5660], - "run-series", - "rx", - "rxjs", - [0, 3093, 53, 5228, 97, 87, 5663, 5658, 5295], - [1, 2343, 4114], - "-compat", - "rxjs-compat", - "safe-", - "safe-buffer", - "safe-p", - "ublish-latest", - [2, 4101, 4102], - "sails", - "salt-type-oldest-faster", - "sand-have-metal6", - "-filename", - [2, 2574, 4107], - [3, 4108, 9], - [2, 4109, 1936], - "sass-loader", - "sat-local", - "sax", - [0, 4115, 4138, 2514, 4139], - [0, 1593, 3957], - "scheduler", - "-doc", - [2, 1119, 4117], - [2, 2844, 4118], - "schema-", - [2, 4120, 594], - "scien", - "ce-knowledge-truth", - [2, 4122, 4123], - "seblakhotspicy", - "secp256k1", - "seedrandom", - "sele", - "nium-webdriver", - [2, 4128, 4129], - "semantic-release", - [3, 4131, 9], - "ui-react", - [2, 4132, 4133], - "semver", - "seneca", - "sentiment", - [0, 1389, 1408, 5669, 4535], - 1772323200000, - "sequelize", - [3, 1753, 9], - "-javascript", - [2, 4141, 4142], - "serial", - "serialport", - "serve", - "-favicon", - [2, 4146, 4147], - "serve-", - "serve-index", - [2, 4149, 2947], - "-destroy", - [2, 36, 4152], - [1, 2343, 4194], - "less-finch", - [2, 36, 4155], - [3, 4156, 11], - "spy", - [2, 4157, 4158], - "sha1", - "shallow", - "equal", - [2, 4161, 4162], - "sharp", - "shell-quote", - "shell", - "shelljs", - "shinning-continued-becoming", - "shortid", - "should", - "showdown", - "shx", - "sick-typical-court7", - "signal-exit", - "simil", - "ar-cheese-loss", - [2, 4175, 4176], - "-ass", - "i-animation", - [2, 4178, 4179], - [2, 2869, 4180], - "simple-", - "simple-git", - "-web", - "-web3", - [2, 3742, 4185], - [2, 4182, 4186], - "single-spa", - "sink-mighty-orbit0", - "sink-", - "rod-lamp", - [2, 4190, 4191], - "sinon", - [0, 4197, 4198, 2514, 2537], - "-chai", - "sinon-chai", - [ - 0, 4135, 5867, 5637, 5866, 56, 5656, 5658, 5676, 5788, 5850, 5761, 5797, 5222, 5660, 5816, 5640, 5809, 5812, - 5838, 5769, 5793, 5823, 5852, 5756, 5766, 5790, 5856, 5863, 5712, 5715, 5771, 5778, 5842, 5741, 5743, 5830, - 5859, 5757, 5241, 5810, 3218, 5820, 5827, 5835, 5853, 5751, 5759, 5821, 5865, 5764, 5846, 5785, 5754, 5825, - 5862, 5782, 5700, 5749, 5806, 5832, 5818, 29299, 5800, 5813, 5678, 5685, 5694, 5690, 5776, 5688 - ], - [0, 53, 101, 5295], - "sinopia", - "sirv", - "size-limit", - "size", - [1, 2343, 4222], - "sizeitup", - "skapi-js", - "sky-buy-web3-rock", - "slash", - "slice-ansi", - "slow-deps", - "slow-", - "voice-spell-pass", - [2, 4210, 4211], - "slugify", - "small-grow-mix4", - "snake-seven-recall-interior", - "snazzy", - "soap", - "socket.io", - "-client", - [2, 4218, 4219], - "sock", - [0, 4240, 3464, 2514, 2537], - "js-client", - [2, 4221, 4223], - "source", - "-map", - "source-map", - [2, 4227, 1592], - [3, 4228, 11], - [2, 4229, 1194], - "support", - [2, 4229, 4231], - "space-separated-tokens", - "spectaql", - "speech-section-part-frozen", - "spirit-labor-cheese", - "split", - "split2", - "spring-dust-wall-size", - [0, 56, 5676, 5874, 5879, 5881, 5883], - [1, 2343, 4244], - "sprintf", - "sprintf-js", - [0, 4253, 3464, 4254, 4139], - "sprity", - "sqlite3", - "ssh2", - "ssri", - "st.db", - "stack-", - "trace", - "stack-trace", - [0, 4851, 56, 5676, 5889, 5241], - [0, 5891, 91], - "standard", - "-version", - [2, 4255, 4256], - "star-location", - "star", - "t-server-and-test", - [2, 4259, 4260], - "stat", - [1, 2343, 4265], - "statsd", - [0, 4269, 4281, 2514, 2537], - "statuses", - "stock-independent-balloon", - "stor", - [0, 5896, 3093, 5898, 2102, 4232], - "storybook", - "-django", - [2, 4270, 4271], - "stra", - "iforos-compodoc", - [2, 4273, 4274], - "nge-lady-riding9", - [2, 4273, 4276], - [2, 3101, 3695], - "stream-", - [2, 4279, 353], - [0, 1389, 53, 5743, 5241], - "streamii", - "strftime", - "string-", - "stri", - [1, 2343, 4297], - "strip-html", - [2, 4284, 4287], - "width", - [2, 4284, 4289], - "-entities", - [2, 1646, 4291], - "strip-", - "strip-ansi", - "bom", - "strip-bom", - [0, 0, 0, 2514, 2523], - "comments", - [2, 2842, 4298], - [2, 4293, 4299], - "strip", - "stripe", - "strongloop", - "-dictionary", - [2, 590, 4304], - "style-", - [2, 4306, 1194], - [1, 2343, 4313], - "style-to-js", - [3, 4309, 9], - [2, 4310, 3048], - "-comp", - [0, 4316, 0, 2514, 2523], - "-components", - [2, 369, 4314], - [0, 1593], - "styled-jsx", - "hacks", - "stylehacks", - "stylelint", - "-standard", - [2, 607, 4321], - [2, 4320, 4322], - [3, 4323, 10], - "declaration-strict-value", - [2, 4324, 4325], - "order", - [2, 4324, 4327], - "scss", - [2, 4324, 4329], - [1, 2343, 4336], - "us", - "stylus", - [2, 4333, 2091], - "sugar-policeman-entire", - [0, 4344, 3464, 2514, 2537], - "sugarss", - "sun-grass-circle0", - "superagent", - "super", - "superjson", - "supertest", - [2, 4342, 1430], - [0, 1676, 104, 58, 5230, 5216, 51, 30873], - "supervisor", - "-vessels-web3-vessels", - [2, 4231, 4346], - [1, 2343, 4356], - "lor", - "s-color", - [2, 4231, 4350], - "surrounded-characteristic-or-rain", - "svelte-", - "check", - [2, 4353, 4354], - [0, 4379, 4392, 2514, 2487], - "rocess", - "preprocess", - [2, 4353, 4358], - "svg-sprite", - "svgo", - "sw-precache-webpack-plugin", - "swagger-autogen", - "swagger-", - [2, 4364, 134], - "themes", - [2, 4364, 4366], - "ui-express", - [2, 4364, 4368], - "swam-darkness-weak", - "swig", - "swiper", - "sync-request", - "information", - [2, 623, 4374], - "systemjs", - "tail-iron-became5", - "tail", - [0, 5276, 5279], - "tailwind", - "-merge", - [2, 4380, 4381], - "tailwindcss", - "tap", - "tap-", - "spec", - "tap-spec", - "tapable", - "tape", - "tar", - "tar-fs", - [0, 58, 5216, 5274], - "tar-stream", - "tarant", - "-router-express", - [2, 3926, 4395], - [2, 4394, 4396], - "tdl", - "tdlib-native", - "tempy", - "terminal-kit", - [3, 4401, 9], - "menu", - [2, 4402, 4403], - "pack", - "-plugin", - "pack-plugin", - [2, 4184, 4407], - [2, 4072, 4408], - "cutting", - [2, 1382, 4410], - "snippets", - [2, 1382, 4412], - "cafe", - "testcafe", - "testc", - [1, 2343, 4422], - "ontainers", - [2, 4416, 4418], - "double", - "testdouble", - [0, 4424, 4429, 4442, 4139], - "testem", - [ - 0, 5923, 5927, 5930, 5931, 5934, 5935, 5936, 1512, 2075, 2088, 2070, 2822, 2832, 5941, 3105, 5944, 3107, 5946, - 5949, 3112, 26767, 5953, 5956, 5961, 3135, 3257, 5963, 5966, 3725, 3754, 3758, 5969, 5971, 3348, 5975, 4747 - ], - "text-table", - "three", - "throttle-debounce", - "thro", - [0, 4320, 5978, 4328], - "through", - "through2", - "w-did-darkness4", - [2, 4428, 4432], - "thunkify", - "tildify", - "time-grunt", - "tinper-bee", - "tiny-lr", - "tiny", - "bench", - "tinybench", - [0, 200, 1783, 5980, 3452, 5593, 5981, 5982, 5983, 1745, 1179], - "tinycolor2", - [1, 2343, 4458], - "tinymce", - "pool", - "tinypool", - "tinyspy", - "tmp", - "toastify-react-native", - "tocbot", - "toml", - "touch", - "tough-cookie", - "tracer", - "traffic-carry-opinion", - "train-stick-swept7", - [0, 4466, 4471, 4472, 2537], - "tree-kill", - "e-leaving-basket", - [2, 1333, 4460], - "trpc", - "trumpet", - "ts-cache-mongoose", - "ts-japi", - [0, 5990, 2212, 3220, 3747, 4715], - "est", - "ts-jest", - "ts-loader", - "ts-migrate-mongoose", - [0, 1596, 1177, 1895, 1903, 1938, 1954, 1955, 1958, 1970, 4255], - [0, 4709, 5993, 4714, 2942, 5995], - "ts-morph", - "ts-node", - "ts-patch-mongoose", - [1, 2343, 4485], - "ts-pnp", - "ts-rule-engine", - "-paths", - [2, 2190, 4479], - "tsd", - "tsd-lite", - "tshy", - "tslib", - [0, 4502, 4503, 2514, 2537], - "nt", - "tslint", - "-config-", - [2, 4488, 1894], - [2, 4487, 4489], - "tslint-", - [2, 4491, 89], - "tsup", - "tsx", - "turndown", - "tv4", - "tweetnacl", - "twemoji", - "twit", - "twitter", - "type-", - [ - 0, 6041, 4135, 1458, 6042, 1836, 2151, 6049, 3527, 1104, 6047, 4025, 6024, 6027, 6028, 6032, 6034, 6009, 6010, - 6025, 6037, 3749, 6007, 6039, 6022, 6003, 6031, 6017, 6006 - ], - [0, 3471, 6040, 4294, 5254], - "coverage", - [2, 4501, 4504], - [1, 2343, 4516], - "type-fest", - "typedoc", - "-material-theme", - [2, 4508, 4509], - "typedoc-", - [2, 4511, 2475], - [3, 4512, 15], - [2, 4513, 1783], - "typedocs", - [0, 4518, 4519, 4527, 2537], - "typegen", - [0, 6056, 6059, 449, 452, 456, 1461, 3744], - [ - 0, 48, 53, 61, 87, 90, 192, 5467, 5583, 811, 816, 6061, 6063, 6065, 1009, 1011, 1178, 1251, 6066, 1177, 1947, - 1959, 1961, 2675, 2990, 1894, 89, 3824, 4042, 6068, 4073, 4131, 91 - ], - "typegoose", - "typeorm", - "-eslint", - [2, 91, 4522], - [3, 4523, 11], - "formatter", - [2, 4524, 4525], - [0, 6070, 89, 6071, 181, 6073, 4963, 6074, 6077, 6080, 6081, 6082, 4967, 6083, 6084, 4298, 6085, 6086], - [1, 2343, 4544], - "css-modules", - [2, 1186, 4529], - [2, 4524, 4530], - "typings", - "uglify-es", - "uglify-", - "uglify-js", - "js-webpack-plugin", - [2, 2280, 4536], - "uid-safe", - "uiw", - "uj-apidoc-core", - "ulid", - "ultrahtml", - "unbuild", - [0, 4556, 0, 4557, 2537], - "underscore", - ".string", - [2, 4545, 4546], - "undici", - "unified", - "unique-", - "random-", - "array", - [2, 4551, 4552], - [2, 4550, 4553], - "unist-util-visit", - [0, 1459, 148, 185], - [0, 6092, 1459, 6094, 6096, 6098, 6100], - "untildify", - "unusual-rope", - "unzip", - "-notifier", - [2, 3076, 4561], - "urijs", - "url-", - "join", - "url-join", - "url-parse", - "urllib", - "user", - "user-", - "home", - "user-home", - [1, 2343, 4574], - [0, 4583, 0, 4642, 2487], - "agent", - "useragent", - "utf8", - [2, 594, 4381], - "uvu", - "valid", - "-url", - "valid-url", - [0, 27715, 4484], - "-commit-msg", - [2, 2649, 4584], - [3, 4585, 9], - [2, 3387, 1213], - [2, 4586, 4587], - "vant", - "vary", - "vasync", - "vercel", - "verror", - "vhost", - "victory-mouth", - "viewerjs", - "vinyl", - "vinyl-", - [2, 4598, 1398], - "vinyl-fs", - "source-", - [2, 4601, 3101], - [2, 4598, 4602], - [3, 4603, 12], - "maps-apply", - [2, 4604, 4605], - "virtual", - "virtual-dom", - [3, 839, 12], - "api-", - "api-routes", - [2, 4609, 4611], - "press", - "vitepress", - "vorpal", - "vows", - "vsce", - "vscode-debugprotocol", - "vscode-", - "nls-dev", - [2, 4619, 4620], - "mate", - "textmate", - [2, 4619, 4623], - "vue-", - "class-", - [3, 1533, 9], - [2, 4626, 4627], - [2, 4625, 4628], - [2, 4625, 67], - "hot-reload-api", - [2, 4625, 4631], - "vue-i18n", - "vue-loader", - [3, 3746, 9], - [3, 70, 9], - [2, 4635, 4636], - [2, 4625, 4637], - [2, 4625, 38], - [2, 4625, 4307], - [3, 1243, 9], - [0, 6105, 6106, 6038, 1936, 6108, 6110, 1098, 6111, 6112, 6113, 4627, 6092, 1459, 6094], - "compiler", - [2, 4641, 4643], - [2, 4625, 4644], - "vuex", - "walk", - "walk-sync", - "warning", - "watchify", - "waterline", - "wd", - "web3", - "web3-", - [1, 2343, 4668], - "web3-be", - "web3-c", - "apital", - [2, 4657, 4658], - [3, 42, 8], - "pass", - [2, 4660, 4661], - "eve-cli", - [2, 4654, 4663], - "web3-e", - "xactly6", - [2, 4665, 4666], - [0, 4672, 0, 4557, 2523], - "web3-fruit", - "webpack-", - "bundle-", - [0, 1459, 148, 187, 153, 180, 157], - [1, 2343, 4697], - "analyzer", - [2, 4671, 4674], - [2, 4670, 4675], - [2, 4670, 200], - "dev-middleware", - [2, 4670, 4678], - [3, 4679, 12], - [2, 4680, 36], - "hot-", - [2, 4682, 2663], - [2, 4670, 4683], - [2, 3097, 4406], - [2, 4670, 4685], - [3, 4686, 9], - "erge", - [2, 4687, 4688], - "node-e", - "xternals", - [2, 4690, 4691], - [2, 4670, 4692], - "sources", - [2, 4670, 4694], - "webshot", - [0, 4698, 0, 4557, 2523], - [0, 1459, 182, 148, 29468, 187, 153, 180], - "websocket", - [1, 2343, 4701], - [0, 4725, 0, 4557, 2537], - "webtorrent", - "webworker-threads", - "weinre", - "whatwg-fetch", - "when", - "which", - "winreg", - "winston", - "-daily-rotate-file", - [2, 4709, 4710], - "winston-", - "trans", - "transport", - [2, 4712, 4714], - "wiredep", - "word-wrap", - "word", - "wrap", - "wordwrap", - "work", - "box-webpack-plugin", - [2, 4721, 4722], - "world-toy-kill", - [0, 1459, 182, 148, 6127, 29468, 187, 180], - "wrap-ansi", - "wrench", - "write-file-atomic", - "ws", - "x-ray", - "xhr", - "xml-", - "xml-js", - "xml2js", - "xml2json", - "xmlbuilder", - "xmldom", - "xmlhttprequest", - "xpath", - "xregexp", - "xss", - "xstate", - [1, 2343, 4773], - "xterm", - "yaml", - "yamljs", - "yargs", - [2, 4747, 1574], - "yarn", - "pkg", - "yarnpkg", - "yarnrc", - "yauzl", - "yeoman-environment", - "yeoman-", - [2, 4755, 1179], - "yn", - "yo", - "yoctocolors-cjs", - "yonode", - "yosay", - "zmq", - "zod", - "zod-", - "chemas", - [2, 2666, 4765], - [2, 4764, 4766], - "zombie", - "zone.js", - "zuul", - [2, 667, 1651], - [2, 672, 4406], - [0, 4792, 0, 4801, 2523], - "@nx/jest", - [2, 667, 4270], - "framer-motion", - "teajusgula", - "@mui/s", - "tyle", - "d-engine", - [2, 4779, 4780], - [2, 4778, 4781], - "jsdoc-parse", - "@comm", - "ercetools-frontend/constants", - [2, 4784, 4785], - "shift", - "downshift", - [3, 3605, 9], - "ocus-visible", - [2, 4789, 4790], - [0, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 146, 6133, 111, 174], - [2, 3388, 4794, 4963], - [3, 18878, 12], - [3, 1705, 9], - [2, 4795, 3582], - "devDependencies", - "keywords", - "ts", - [2, 4837, 686], - [0, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130, 6148, 6092, 1459, 6094], - [3, 3, 7], - "field", - [2, 4802, 4803], - [2, 4802, 3473], - [2, 4802, 2649], - "@types/", - [2, 4807, 3911], - "big.js", - [3, 1849, 9], - "lement-equals", - [2, 4810, 4811], - [1, 2343, 4918], - "adaptor-generate", - [2, 4802, 4814], - [3, 4815, 15], - [2, 4816, 1383], - "@alifd/a", - "pi-extractor", - [2, 4818, 4819], - [2, 1262, 3286], - [2, 4802, 4821], - [2, 1910, 57], - [2, 4802, 4823], - "@alifd/d", - "ts-generator", - [2, 4825, 4826], - [2, 1884, 3286], - [2, 4802, 4828], - "meet-react", - [2, 4802, 4830], - "sass-", - "mapper", - "sass-mapper", - [2, 4802, 4834], - [3, 4835, 12], - [3, 4793, 38], - [2, 4867, 4924], - "tracker", - [2, 4836, 4839], - [3, 4835, 11], - [2, 4841, 4823], - "@alifd/s", - "lint-co", - "-next", - "nfig-next", - [2, 4844, 4846], - [2, 4779, 4847], - [2, 4843, 4848], - [3, 81, 21], - [2, 4850, 1219], - [2, 4807, 1175], - "@types/b", - "ig.js", - [2, 4853, 4854], - "@types/chai", - "@types/c", - "lassnames", - [2, 4857, 4858], - "@types/co", - "@types/e", - "nzyme", - [2, 4861, 4862], - [2, 4807, 2151], - "@types/glob", - [2, 4807, 2720], - [3, 4793, 25], - "jsonp", - [2, 4807, 4868], - [2, 4807, 1209], - ".clonedeep", - [2, 4870, 4871], - "@types/md5", - [2, 4807, 202], - [2, 4807, 3564], - [3, 4875, 16], - "ustom-", - [2, 4877, 3583], - [2, 4876, 4878], - [3, 4808, 12], - [3, 4808, 13], - [2, 4881, 1582], - [2, 4881, 965], - [2, 4881, 3875], - [3, 4884, 14], - "outer-dom", - [2, 4885, 4886], - [3, 4808, 14], - [2, 4888, 3903], - [2, 4807, 4320], - [2, 4807, 2924], - [2, 4807, 4747], - [3, 1203, 14], - "spower", - [2, 4893, 4894], - [2, 2168, 1894], - [2, 1199, 4896], - [3, 1245, 30], - [2, 4898, 3426], - "proto", - "-to-assign", - [2, 4900, 4901], - [2, 1226, 4902], - "displayname", - [2, 1861, 4904], - [2, 1249, 4905], - [2, 3195, 2874], - "e-polyfill", - [2, 1557, 4908], - "css-s", - "plit-webpack-plugin", - [2, 4910, 4911], - [2, 1863, 3733], - [3, 1924, 15], - "ypress", - [2, 4914, 4915], - [2, 2068, 4111], - [0, 4943, 0, 4801, 2537], - "html5shiv", - [3, 2925, 9], - "driver-launcher", - [2, 4920, 4921], - [2, 3108, 588], - "ssets", - "mochawesome", - "-package-importer", - [2, 3342, 4926], - [2, 3388, 16690, 4935], - "react-axe", - "ropper", - [2, 3805, 4930], - "react-dr", - "aggable", - [2, 4932, 4933], - "c-app", - "ve", - "react-live", - "true", - "sass-true", - "simulate-event", - "solarlunar", - [3, 4323, 17], - [0, 182, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 146, 6133, 111, 174], - [2, 4950, 4951], - "recommended", - [2, 4942, 4945], - [3, 4323, 11], - "sstree-validator", - [2, 4947, 4948], - [3, 662, 27], - "dev-authentication", - "ts-mocha", - [1, 2343, 4969], - [2, 4950, 4956], - "tsconfck", - [3, 25922, 13], - "fusion", - " design", - [2, 4957, 4958], - "ui toolkit", - "mponents", - [2, 3808, 4961], - "components", - "design", - "front", - "end", - "frontend", - [2, 4970, 4971], - [0, 4979, 0, 4983, 2537], - [3, 4786, 14], - "/http-user-agent", - [2, 31787, 4980], - "Angular CLI", - "Angular ", - "DevKit", - [2, 4974, 4975], - "devkit", - "sdk", - [0, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 146, 6158, 111, 174], - "cli-lib", - [2, 812, 2220], - "@svgr/babel-preset", - [0, 6148, 6092, 1459, 6094, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130], - "blue", - [2, 4807, 4676], - "blueprints", - " generation", - [2, 1501, 4987], - "scaffolding", - "tool", - "tooling", - [2, 1030, 4993], - "-swc", - [1, 2343, 4998], - [2, 5559, 705], - [2, 4997, 4999], - "moment-loca", - [0, 5003, 0, 4983, 4139], - [3, 8303, 18, 2], - "svg-url-loader", - "development", - "thread-loader", - [ - 0, 6164, 164, 167, 137, 159, 177, 162, 180, 157, 140, 6166, 171, 116, 150, 155, 122, 169, 119, 146, 111, 6168, - 174 - ], - [1, 2343, 5005], - [0, 5006, 0, 4983, 4139], - [0, 164, 167, 137, 159, 177, 162, 180, 157, 140, 171, 116, 150, 155, 122, 169, 119, 6173, 146, 111, 174], - [1, 2343, 5008], - [0, 5011, 0, 4557, 2487], - [2, 4807, 4996], - [2, 6776, 1987], - [0, 6178, 1459, 16485, 182, 148, 29468, 159, 187, 153, 185, 146], - "@jridgewell/sourcemap-codec", - [1, 2343, 5014], - [0, 5015, 0, 4557, 2537], - [0, 1459, 182, 148, 29468, 159, 187], - [1, 2343, 5017], - [0, 5018, 0, 4557, 4139], - [0, 16485, 182, 148, 187, 153, 191], - [1, 2343, 5020], - [0, 5021, 0, 5022, 2487], - [0, 1459, 148, 187], - [0, 6092, 1459, 6094, 6192, 6100], - [1, 2343, 5024], - [0, 5025, 0, 5026, 2443], - [0, 16485, 182, 187, 153, 6200], - [0, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130, 6092, 1459, 6094, 6192, 6100], - [2, 29, 4958], - [1, 2343, 5029], - [0, 5030, 0, 4557, 4139], - [0, 1459, 148, 187, 185, 146], - [1, 2343, 5032], - [0, 5033, 0, 5026, 2399], - [0, 16485, 187], - [1, 2343, 5035], - [0, 5036, 0, 4557, 2537], - [0, 1459, 182, 148, 6215, 6127, 180, 143, 6217], - [1, 2343, 5039], - "xhr2", - [0, 5040, 0, 4557, 2399], - [0, 1459, 182, 148, 29468, 187, 153, 171], - [1, 2343, 5042], - [0, 5043, 0, 4557, 2523], - [0, 1459, 16485, 182, 148, 6215, 29468, 187, 153, 180, 185, 191, 143], - [1, 2343, 5045], - [0, 5046, 0, 4557, 4139], - [0, 1459, 182, 148, 167, 29468, 187, 153, 157], - "@bang88/react-native-ultimate-listview", - [3, 444, 19], - [2, 5048, 970], - "@rc-component/mini-decimal", - "@types/s", - [1, 2343, 5053], - [0, 5072, 0, 4557, 2443], - "hallowequal", - [2, 5051, 5054], - "with", - [2, 3023, 5056], - "css-color", - [2, 3370, 5058], - "rc-field-form", - "codegen", - [2, 3862, 5061], - [3, 5062, 15], - "llapsible", - [2, 5063, 5064], - "modal", - "-popover", - [2, 5066, 5067], - [2, 3862, 5068], - "ity-types", - [2, 614, 5070], - [0, 1459, 16485, 182, 148, 29468, 159, 187, 153, 180, 191, 143], - [2, 2809, 4009], - [2, 45, 5073], - [2, 41, 5074], - [2, 41, 2041], - "@rea", - "ct-native-community/eslint-config", - [2, 5077, 5078], - [3, 5079, 9], - "vigation/native", - [2, 5080, 5081], - [3, 5082, 18], - [2, 5083, 2873], - [2, 972, 4009], - "@types/j", - "@types/jest", - "@types/p", - "rop-types", - [2, 5088, 5089], - [2, 4881, 970], - [3, 1113, 11], - "palettes", - [2, 5092, 5093], - "-demo-data", - [2, 701, 5095], - [2, 1114, 5096], - "bisheng", - [1, 2343, 5101], - "enquire.js", - [0, 5126, 0, 4557, 2537], - "jsonml.js", - "metro-react-native-babel-preset", - [3, 3822, 9], - "ument-title", - [2, 5104, 5105], - [3, 2197, 13], - [2, 1246, 5107], - "gesture-handler", - [2, 3862, 5109], - [3, 5069, 15], - "cker", - [2, 5111, 5112], - "reanimated", - [2, 3862, 5114], - "area-context", - [2, 4099, 5116], - [2, 3862, 5117], - [3, 5118, 14], - "creens", - [2, 5119, 5120], - "web", - [2, 3862, 5122], - "shell-", - [2, 5124, 594], - [0, 1459, 182, 148, 6164, 6127, 29468, 187, 153, 180, 143], - "ant", - [3, 4962, 15], - "frame", - "framework", - "mobile", - " native", - [2, 89, 5132], - [1, 2343, 5135], - [0, 5136, 0, 4557, 2537], - [0, 1459, 182, 148, 6215, 29468, 187, 153, 180, 191, 143], - [1, 2343, 5138], - [0, 5140, 0, 4557, 2537], - [2, 4870, 3020], - [0, 182, 148, 29468, 187, 153], - [1, 2343, 5142], - [0, 5143, 0, 4557, 2487], - [0, 1459, 148, 153, 143], - [1, 2343, 5147], - [3, 5075, 17], - "@inline-svg-unique-id/react", - [0, 5148, 0, 5149, 4139], - [0, 27715], - [0, 6105, 6106, 6038, 1936, 6108, 6110, 89, 5128, 6092, 1459, 6094], - [1, 2343, 5151], - [0, 5163, 0, 4557, 2487], - [2, 3670, 1575], - [2, 5928, 5155], - "@auth/core", - "junit-xml-formatter", - "adapt", - "er-auto", - [2, 5156, 5157], - [2, 836, 5158], - [2, 836, 3383], - "et-cookie-parser", - [2, 5051, 5161], - [0, 1459, 16485, 182, 148, 29468, 187, 153, 191, 143], - "entication", - [2, 1303, 5164], - "authjs", - "sveltekit", - "oidc", - "wordless", - [2, 4661, 5169], - [1, 2343, 5172], - [0, 5173, 0, 4557, 2443], - [0, 16485, 148, 187, 153], - [1, 2343, 5177], - "fs-readdir-recursive", - [3, 5012, 12], - [0, 5181, 0, 5022, 2443], - "-mapping", - [2, 4251, 5178], - [2, 5176, 5179], - [0, 16485, 6268, 6271, 6272, 28829, 148, 29468, 187, 153, 15716], - [3, 4864, 10], - "dir-recursive", - [2, 3917, 5183], - [2, 5182, 5184], - [3, 56, 14], - "fixture", - "-test-runner", - [2, 5187, 5188], - [2, 1221, 5189], - [2, 5186, 5190], - [2, 5195, 5196], - "6to5", - "es6", - [3, 7710, 11], - "ut-extension", - "transpile", - "transpiler", - [1, 2343, 5201], - [2, 7623, 671], - [0, 5202, 0, 5022, 2443], - [0, 148, 187], - [1, 2343, 5205], - "ighlight", - [0, 5206, 0, 5022, 2537], - [0, 16485, 182], - "meta", - "-resolve", - [2, 5207, 5208], - [2, 2701, 5209], - [1, 2343, 5212], - [0, 5213, 0, 5214, 2537], - [0, 27715, 3021], - [0, 6105, 6106, 6038, 1936, 6108, 6110, 188, 6284, 6285, 6287, 6092, 1459, 6094], - "@ampproject/remapping", - [2, 54, 1179], - "compil", - "ation", - "-targets", - [2, 5218, 5219], - [2, 5217, 5220], - [2, 5186, 5221], - "module-", - [2, 353, 591], - [2, 5223, 5224], - [2, 5186, 5225], - [3, 56, 13], - [2, 5227, 591], - "emplate", - [2, 102, 5229], - [1, 2343, 5232], - [0, 5234, 0, 5022, 2537], - "gensync", - [0, 16485, 182, 148, 6127, 29468, 187, 153, 180], - [2, 4850, 2124], - [3, 83, 24], - "flow-", - [2, 4293, 553], - [2, 5237, 5238], - [2, 5236, 5239], - [2, 5236, 1239], - "nvert-", - [2, 5242, 4227], - [2, 4860, 5243], - [2, 4807, 1676], - "@types/g", - "ensync", - [2, 5246, 5247], - [3, 4808, 9], - "solve", - [2, 5249, 5250], - [3, 5162, 9], - "mver", - [2, 5252, 5253], - [1, 2343, 5262], - "classes", - "const", - "harmony", - "let", - "modules", - "var", - [0, 5263, 5264, 5265, 2523], - [0, 6297, 6298, 6301, 6302, 6303, 26379, 4747], - [0, 6306, 6307, 6498, 4874, 4892, 2151, 6476], - [0, 1566, 1529, 200], - [1, 2343, 5267], - [0, 5268, 0, 5269, 2523], - [ - 0, 7, 53, 5830, 87, 6316, 6318, 31736, 1364, 6320, 1448, 1457, 1512, 1525, 1595, 6323, 1866, 2061, 2071, 2151, - 2070, 2036, 2626, 2681, 2856, 1209, 3079, 6326, 6327, 3127, 3183, 5732, 6330, 6331, 3527, 23802, 3725, 4135, - 4200, 5969, 6334, 4473, 3348, 6335 - ], - [0, 6111, 1098, 1745, 4963, 1237, 2218, 4796, 1783], - [1, 2343, 5280], - [3, 5222, 15], - "heck-duplicate-nodes", - [2, 5271, 5272], - [2, 5186, 1182], - [2, 4284, 57], - [2, 5186, 5275], - "-identifier", - [2, 1155, 5277], - [2, 5186, 5278], - [0, 5283, 0, 5288, 2537], - "codes", - "charcodes", - [0, 6343, 2700], - "javascript", - "tc39", - "ecmascript", - "skia-canvas", - [0, 6345, 6346, 5130, 2018, 6347], - [1, 5293, 5296], - "@egjs/flicking", - "reate-class-features-plugin", - [2, 5271, 5291], - [0, 8389, 4799], - [3, 56, 21], - [2, 5294, 1187], - [0, 8391, 5298], - [3, 1198, 12], - 1732406400000, - [1, 5293, 5300], - [0, 8391, 5301], - 1733011200000, - "moo", - "luxon", - "hamljs", - "liquidjs", - "iso-639-1", - "@iarna/toml", - "-urls", - [2, 3692, 5308], - [3, 3938, 10], - [2, 5310, 1585], - "bcp-47-normalize", - [3, 1705, 11], - [2, 5313, 2218], - "@11ty/", - "lodash-", - "custom", - [2, 5316, 5317], - [2, 5315, 5318], - "please-upgrade-node", - [2, 62, 3007], - [2, 5313, 1633], - [2, 5315, 5322], - "@sin", - "dres", - "orhus/slugify", - [2, 5325, 5326], - [2, 5324, 5327], - [3, 5321, 15], - "dev-", - [2, 5330, 36], - [2, 5329, 5331], - [1, 2343, 5345], - "@vue/", - "server-", - [2, 5335, 3902], - [2, 5334, 5336], - "plugin-vue", - [2, 5329, 5338], - [3, 5339, 22], - "syntax", - [3, 2600, 9], - [2, 5341, 5342], - [2, 5340, 5343], - [0, 5350, 5358, 5359, 34352], - "-site-generator", - [2, 2947, 5346], - [3, 5347, 11], - "ssg", - [0, 2626], - "website", - "jekyll", - "blog", - "templates", - "11ty", - "liquid", - "haml", - [ - 0, 48, 53, 87, 37046, 6371, 27928, 6372, 5583, 811, 816, 6373, 11275, 1165, 1367, 6375, 6376, 1492, 1610, 1177, - 1907, 1937, 1938, 1982, 6379, 2203, 2205, 6382, 2626, 6383, 2739, 2765, 2814, 2297, 2876, 2881, 6385, 2889, - 2895, 2898, 6387, 2910, 3019, 3363, 3400, 3561, 3566, 6389, 4039, 4042, 6390, 21688, 4939, 4167, 4320, 6392, - 4072, 6393 - ], - [0, 1623, 2278, 6396, 6398, 6400, 5130, 5122], - [1, 2343, 5361], - [0, 0, 0, 5372, 2537], - "parcel", - "ytes", - [2, 4853, 5363], - "enchmark", - [2, 4853, 5365], - "@parcel/packager-ts", - "@parcel/", - "er-typescript-types", - [2, 353, 5369], - [2, 5368, 5370], - [0, 1623, 57], - [1, 2343, 5377], - "stringifier", - "heet", - "stylesheet", - [0, 0, 0, 5378, 2487], - [0, 1623, 207], - [1, 2343, 5380], - [0, 0, 0, 5426, 2537], - "@advanced-rest-client/arc-icons", - [3, 5381, 26], - [2, 5382, 3127], - [3, 5381, 22], - "-copy", - [2, 1492, 5385], - [2, 5384, 5386], - "-snippets", - [2, 1501, 5388], - [2, 2655, 5389], - [2, 5384, 5390], - [2, 3115, 592], - [2, 5384, 5392], - "@anypoint-web-components/anypoint-button", - [3, 5394, 34], - "collapse", - [2, 5395, 5396], - "drop", - "dropdown", - [2, 5395, 5399], - "item", - [2, 5395, 5401], - "box", - "listbox", - [2, 5395, 5404], - [3, 64, 17], - "mf-helper-mixin", - [2, 5406, 5407], - [3, 64, 20], - "annotation-document", - [2, 5409, 5410], - "body-", - [2, 5412, 1746], - [2, 5409, 5413], - "example-generator", - [2, 5409, 5415], - "ers-document", - [2, 3193, 5417], - [2, 5409, 5418], - "param", - "eters-document", - [2, 5420, 5421], - [2, 5409, 5422], - "responses-document", - [2, 5409, 5424], - [0, 1623, 6415, 57], - "umentation", - [2, 4117, 5427], - [2, 1965, 5428], - [2, 5409, 5429], - [3, 64, 16], - "method-", - "label", - [2, 5432, 5433], - [2, 2655, 5434], - [2, 5431, 5435], - [1, 2343, 5448], - "lit-html", - [2, 7623, 594], - "demo-helper", - [2, 5382, 5440], - "-aut", - "horization", - [2, 5442, 5443], - [2, 3424, 5444], - [2, 5384, 5445], - [3, 5397, 35], - [0, 5481, 0, 5485, 2537], - "heckbox", - [2, 5447, 5449], - [3, 5402, 35], - [2, 5451, 1020], - [2, 5395, 592], - [3, 64, 21], - "odel-generator", - [2, 5454, 5455], - "navigation", - [2, 5409, 5457], - [3, 5425, 22], - "quest", - [2, 5459, 5460], - [3, 5430, 22], - "rver-selector", - [2, 5462, 5463], - [3, 192, 13], - "onfig-conventional", - [2, 5465, 5466], - "@open", - "-wc/eslint-config", - [2, 5468, 5469], - [3, 5470, 9], - "testing", - [2, 5471, 5472], - "@web/dev-server", - "@web/", - [2, 5475, 1187], - "-playwright", - [2, 5476, 5477], - [2, 5438, 4406], - [2, 4524, 5479], - [0, 220, 3681], - "api-co", - [2, 5482, 4961], - [2, 5432, 1745], - [0, 1623, 2741, 6421, 6422, 3561, 6425, 6426, 3585], - [1, 2343, 5487], - [0, 5488, 0, 5492, 34352], - [0, 3688], - [3, 465, 9], - "typed", - [3, 5428, 9], - [0, 1623, 5317, 6433, 3561, 6425, 6434, 3583, 6435, 6436, 6437], - [1, 2343, 5503], - "-node/core", - [2, 5491, 5494], - [2, 5490, 5495], - [2, 5489, 5496], - "@wry/caches", - "@wry/", - "@hapi/eslint-plugin", - "equality", - [2, 5499, 5501], - [0, 0, 0, 5507, 2537], - "@wry/trie", - "optimis", - "optimism", - [0, 1623, 3681, 6443], - "response", - "-iterator", - [2, 5508, 5509], - "symbol", - "-observable", - [2, 5511, 5512], - "ts-invariant", - "zen-observable-ts", - [1, 2343, 5524], - "@arethetypeswrong/cli", - [3, 107, 13], - "hange", - "log-github", - [2, 5519, 5520], - [2, 5518, 5521], - [3, 5497, 10], - [0, 5538, 5539, 5543, 2523], - "ools/merge", - [2, 5523, 5525], - [3, 5526, 15], - [2, 5527, 2844], - [2, 5527, 594], - "@size-limit/esbuild-why", - [3, 5530, 12], - "pres", - "et-small-lib", - [2, 5532, 5533], - [2, 5531, 5534], - "@tsconfig/node20", - "@types/f", - [ - 0, 6450, 6452, 6453, 5930, 6455, 6457, 5153, 6463, 6465, 30874, 6467, 6470, 6471, 1437, 1483, 1525, 1676, 6473, - 2089, 2070, 6474, 2709, 2744, 2753, 6475, 3060, 6476, 5303, 3171, 3188, 3261, 3730, 27168, 4135, 6479, 4351, - 4507, 6481, 4745, 6482 - ], - [ - 0, 6487, 6488, 19438, 19181, 442, 603, 826, 4856, 5245, 6493, 6494, 4864, 6497, 6309, 6498, 6501, 6503, 6505, - 6507, 4874, 6510, 5254, 6512, 6515, 6519, 6520, 1009, 1011, 1429, 6522, 1509, 6525, 1719, 1177, 1938, 1953, - 1982, 2026, 2151, 6526, 2899, 3257, 3421, 1894, 6527, 4172, 4193, 4196, 6530, 4449, 4474, 4481, 4508, 91 - ], - [2, 4807, 2609], - "-fetch", - [2, 4874, 5541], - [0, 5472, 5982, 1649, 6532, 6533], - [1, 2343, 5548], - "use-sync-external-store", - [2, 4807, 5545], - "rule", - [0, 5549, 5553, 5565, 2537], - [0, 1415, 1437, 1468, 1483, 2151, 4468], - "rule-tester", - [2, 1010, 5550], - [2, 1010, 553], - [ - 0, 192, 5467, 4864, 4866, 5087, 6541, 6544, 6547, 1009, 1011, 1109, 1481, 1836, 1177, 1895, 1955, 2675, 1192, - 6551, 3165, 3203, 3403, 1894, 6552, 6554, 91 - ], - "local-", - "local-rules", - [2, 1921, 5555], - [3, 1961, 20], - [2, 5557, 4643], - "graphql-", - "graphql-ws", - "patch-package", - [3, 3829, 12], - "boundary", - [2, 5562, 5563], - [0, 6557, 1745], - [1, 5293, 5567], - [0, 8391, 5568], - 1730419200000, - "ts-api-utils", - [3, 1913, 9], - [2, 4468, 5570], - "wait-for-observables", - "web-streams-polyfill", - [1, 2343, 5577], - "apollo", - "client", - [0, 0, 0, 2514, 2537], - [1, 2343, 5579], - [0, 0, 0, 2514, 2487], - [1, 2343, 5590], - [3, 66, 10], - [2, 5581, 57], - [2, 812, 1172], - [3, 1217, 14], - "ource", - "-support", - [2, 4226, 5586], - [2, 5585, 5587], - [2, 5584, 5588], - [0, 0, 0, 2514, 2443], - [1, 2343, 5594], - "api", - "asyncapi", - [0, 5595, 5596, 5597, 4139], - [ - 0, 5192, 27292, 7605, 5439, 1437, 1448, 1623, 7606, 7608, 7610, 2822, 1209, 3105, 5946, 7612, 7617, 3124, 7621, - 29457, 4110, 4213, 4361, 11143 - ], - [ - 0, 7624, 5200, 7631, 7632, 7634, 7637, 4870, 7639, 7641, 4874, 7643, 7677, 23203, 1165, 668, 7645, 2600, 26503, - 7648, 3400, 3561, 3672, 2278, 26573, 91, 1984 - ], - [0, 1783, 7650, 1739, 7651, 1745, 4990, 2041, 1179], - "@nicolo-ribaudo/eslint-scope-5-internals", - [1, 2343, 5605], - [3, 1006, 9], - [2, 5600, 671], - "-manager", - [2, 1993, 5602], - [2, 1010, 5603], - [0, 5606, 5607, 5608, 34352], - [0, 4484, 4548, 7658, 7660, 7663, 7664, 7665, 7668, 7669], - [0, 4493, 7671, 1177, 1984, 1894, 1610, 91, 4874, 7672, 7674, 7677, 7678, 7681, 7685, 7690], - [0, 1721, 5592, 4030, 7692, 7693], - [3, 81, 22], - "ecorators", - [2, 5609, 5610], - [1, 2343, 5620], - [3, 1143, 16], - "concat", - [2, 5613, 5614], - "polyfill-es-shims", - [2, 1199, 5616], - "getownpropertydescriptors", - [2, 3436, 5618], - [0, 5621, 5622, 5623, 2537], - [0, 1525], - [0, 2899, 1894], - [0, 553, 4532, 1776, 605, 4508, 1739, 1745, 7701], - [1, 2343, 5626], - [2, 4850, 72], - [0, 5627, 5628, 5597, 2523], - [ - 0, 7708, 7709, 7710, 7715, 7718, 7721, 354, 7723, 7725, 4865, 7729, 7730, 1091, 1149, 1168, 7731, 1437, 1759, - 2075, 2070, 2600, 2628, 2670, 2822, 2854, 3173, 3181, 3322, 4167, 4183, 4213, 4393, 7734, 7735, 4648, 4747 - ], - [ - 0, 7737, 7740, 7744, 7637, 4870, 7746, 4874, 7749, 7752, 4892, 1009, 1011, 1178, 668, 1177, 1966, 2675, 2990, - 1209, 4468, 4474, 91 - ], - [1, 2343, 5632], - [3, 5625, 28], - [2, 5630, 75], - [0, 5633, 5634, 5597, 2487], - [0, 7605, 1437, 7608, 7610, 2822, 1209, 3105, 5946, 7612, 7615, 7617, 3124, 7621, 4110, 4213], - [ - 0, 53, 5241, 87, 7634, 5087, 7637, 4870, 7639, 7641, 7759, 4874, 7643, 7761, 7762, 7763, 1165, 1178, 668, 7645, - 1177, 1966, 2600, 1192, 7648, 3561, 3672, 1894, 3957, 4468, 91 - ], - [1, 5293, 5641], - "mpat-data", - [2, 52, 5636], - [2, 4850, 77], - [3, 5422, 10], - [2, 5236, 5639], - [0, 8391, 5642], - 1734825600000, - [1, 2343, 5644], - [0, 5645, 5646, 5647, 2537], - [ - 0, 5328, 842, 975, 7788, 1364, 1437, 1470, 1536, 7791, 2040, 2075, 2141, 7793, 7794, 2600, 2856, 3105, 5944, - 3107, 5946, 7796, 7797, 3322, 3742, 2278, 7798, 7799, 4227, 4228, 4232, 7800, 3709, 3348, 7801 - ], - [ - 0, 192, 5467, 6061, 6063, 7804, 7806, 7808, 7810, 4864, 7639, 7641, 4874, 7812, 7814, 7816, 7819, 7822, 1009, - 1011, 1414, 7824, 2151, 2675, 3758, 3951, 4131, 91 - ], - [0, 38, 5995, 27, 5130, 7826, 7827, 7828], - [1, 2343, 5649], - [0, 5654, 5661, 5664, 2399], - [3, 5226, 21], - "imports", - [2, 5650, 5651], - [3, 5617, 22], - [ - 0, 7833, 7837, 7839, 7840, 19344, 7847, 842, 7858, 1165, 1393, 1628, 1630, 1177, 1895, 1955, 1959, 1961, 2203, - 2675, 16860, 3177, 3561, 3618, 3678, 2278, 4111, 4307, 4320, 4323, 5978, 7873, 4409, 2924, 4677, 4686, 4689 - ], - "corejs2", - [2, 5653, 5655], - [3, 5656, 28], - [2, 5657, 1278], - [3, 3957, 11], - [2, 5653, 5659], - [0, 7849, 2990], - [3, 99, 21], - [2, 5662, 1278], - [0, 4967, 4329, 7880, 676, 6435, 1237, 7881], - [1, 2343, 5667], - "@edsdk/n1ed-react", - [0, 5668, 5670, 5671, 34352], - [0, 7639, 1429, 1437, 3025, 3105, 3467, 3718], - "derequire", - [0, 27134, 4856, 7889, 4874, 7895, 2675, 2990, 1894, 91, 1984], - [0, 1804, 1739, 1745, 5592, 91, 7897, 7900], - [1, 2343, 5673], - [0, 5703, 5705, 5708, 2523], - [3, 5279, 24], - "option", - [2, 5674, 5675], - "bugfix-firefox-class-in-computed-class-key", - [2, 79, 5677], - [3, 5678, 21], - "safari-", - "-initializer-scope", - [2, 4803, 5681], - [2, 4626, 5682], - [2, 5680, 5683], - [2, 5679, 5684], - [3, 5685, 28], - "id-destructuring-collision-in-function-expression", - [2, 5686, 5687], - "v8-spread-parameters-in-optional-chaining", - [2, 5679, 5689], - [3, 5690, 25], - "-class-fields-redefine-readonly", - [2, 3346, 5692], - [2, 5691, 5693], - "private-", - [3, 3746, 11], - "-object", - [2, 5696, 5697], - [2, 5695, 5698], - [2, 69, 5699], - "generators", - [2, 1152, 5701], - [0, 5652, 97, 7905, 7907, 7910, 7913, 1573, 1874, 7915, 4227, 7917], - [2, 4850, 1229], - [0, 53, 7922], - "static-", - [2, 5706, 1359], - [0, 592, 1832, 89, 1623, 7165], - "ions", - "assertions", - [2, 2701, 5710], - [2, 4850, 5711], - [3, 5712, 29], - "ttributes", - [2, 5713, 5714], - [3, 5712, 28], - [2, 5716, 5207], - [1, 2343, 5719], - [0, 5720, 5722, 5708, 2537], - [0, 362, 7931, 7910, 7932, 7933], - "logical-assignment-operators", - [0, 7935, 91], - [1, 2343, 5724], - [0, 5725, 5726, 2514, 2523], - [0, 97, 362, 7943, 7910, 7946, 7933], - [0, 7935, 7948, 89, 91], - [1, 2343, 5729], - "meric-separator", - [0, 0, 0, 2514, 4139], - [1, 2343, 5733], - "ptional-catch-binding", - "neotraverse", - [0, 5735, 5794, 5795, 2523], - "haining", - [0, 1996], - [2, 4850, 5699], - "top-level-await", - [2, 4850, 5737], - "-sets-regex", - [2, 3656, 5739], - [2, 4850, 5740], - "arrow-functions", - [2, 5236, 5742], - [3, 5743, 25], - "sync-", - [3, 1626, 9], - [2, 2168, 5746], - [2, 5745, 5747], - [2, 5744, 5748], - [3, 5749, 30], - [2, 5750, 1222], - "-scoped-functions", - [2, 1359, 5752], - [2, 5236, 5753], - [3, 5754, 34], - [2, 5755, 3642], - [2, 5236, 1229], - [3, 5757, 30], - [2, 5758, 5707], - [3, 5757, 29], - [2, 5760, 3595], - [3, 5757, 25], - "omputed-properties", - [2, 5762, 5763], - "destructuring", - [2, 5236, 5765], - [3, 5766, 25], - "otall-regex", - [2, 5767, 5768], - "uplicate-keys", - [2, 5767, 5770], - [3, 5771, 34], - "named-", - "capturing-groups-regex", - [2, 5773, 5774], - [2, 5772, 5775], - "ynamic-import", - [2, 5767, 5777], - "expo", - "nentiation-operator", - [2, 5779, 5780], - [2, 5236, 5781], - [3, 5782, 28], - "rt-namespace-from", - [2, 5783, 5784], - [3, 5240, 25], - "or-of", - [2, 5786, 5787], - "unction-name", - [2, 5786, 5789], - [3, 2854, 11], - [2, 5791, 591], - [2, 5236, 5792], - [ - 0, 1414, 2931, 2899, 8099, 1177, 3456, 4039, 4042, 4135, 8098, 1894, 4614, 91, 3401, 5601, 1006, 17529, 4057, - 5552, 4071, 1011, 8097 - ], - [0, 1177], - "literals", - [2, 5236, 5796], - [3, 5797, 25], - "ogical-assignment-operators", - [2, 5798, 5799], - [3, 5241, 25], - "ember-", - "ion-literals", - [2, 2026, 5803], - [2, 5802, 5804], - [2, 5801, 5805], - [3, 5241, 32], - "amd", - [2, 5807, 5808], - [2, 5807, 4376], - "umd", - [2, 5807, 5811], - [2, 5236, 5775], - [3, 5813, 25], - "ew-target", - [2, 5814, 5815], - "ullish-coalescing-operator", - [2, 5814, 5817], - [3, 5818, 26], - [2, 5819, 5728], - [2, 5236, 77], - [3, 5821, 31], - [2, 5822, 4340], - [3, 5821, 25], - [2, 5824, 5731], - [3, 5825, 34], - [2, 5826, 5734], - [3, 5640, 25], - "rivate-methods", - [2, 5828, 5829], - [3, 5830, 32], - [2, 5831, 5698], - [3, 5830, 26], - "operty-literals", - [2, 5833, 5834], - [3, 83, 25], - "egenerator", - [2, 5836, 5837], - [3, 5838, 26], - "d-words", - [2, 4146, 5840], - [2, 5839, 5841], - "short", - [2, 3619, 1228], - [2, 5843, 5844], - [2, 5236, 5845], - [3, 5846, 25], - [1, 2343, 5868], - "pread", - [2, 5847, 5849], - "ticky-regex", - [2, 5847, 5851], - [2, 5236, 1243], - [3, 5853, 25], - "ypeof-symbol", - [2, 5854, 5855], - "unicode-", - [2, 5857, 1106], - [2, 5236, 5858], - [3, 5859, 32], - [2, 4635, 1108], - [2, 5860, 5861], - [2, 5860, 1108], - "sets-regex", - [2, 5860, 5864], - [2, 88, 5260], - [2, 1593, 4097], - [0, 0, 0, 5869, 2523], - [0, 5284, 6939, 1177], - [1, 2343, 5871], - [0, 5872, 5884, 5885, 2537], - [ - 0, 8110, 1461, 8111, 1757, 2017, 8113, 6327, 8114, 3127, 3191, 8116, 3502, 8119, 3555, 3725, 3744, 8122, 4213, - 8123, 8126, 8127 - ], - "act-jsx", - [2, 5839, 5873], - [3, 5874, 30], - "display", - "-name", - [2, 5876, 5877], - [2, 5875, 5878], - "-development", - [2, 5874, 5880], - "pure-annotations", - [2, 5875, 5882], - [ - 0, 8129, 8130, 8132, 4856, 8136, 4863, 8139, 5087, 8141, 8144, 8146, 8147, 4874, 8149, 5090, 4880, 4883, 8152, - 8155, 4891, 8157, 4892, 1009, 1011, 8158, 1311, 1567, 1584, 1593, 1596, 1628, 1651, 1843, 8160, 8161, 1177, - 1938, 1959, 1961, 2135, 2651, 2675, 1192, 2822, 8163, 8165, 3190, 3471, 1894, 3720, 3775, 89, 3824, 3836, 4039, - 4167, 4201, 4307, 4315, 4468, 4474, 4484, 91, 8166, 1002, 2924, 4677, 4681, 4693 - ], - [0, 8168, 8170, 8171, 6975, 8172, 8173, 1745, 8175], - [1, 2343, 5887], - [0, 5890, 5892, 5893, 2537], - [3, 5856, 28], - [2, 5888, 1508], - [0, 8181], - [3, 1261, 12], - [0, 90, 972, 4880, 4883, 1030, 89, 3824, 8187, 1541], - [0, 8190, 8191, 5399, 4403, 8192, 8194, 89, 3824], - [1, 2343, 5895], - [0, 0, 0, 5897, 2537], - "pirates", - [0, 8199, 2414, 8201, 8203, 6941, 8204, 1623, 2278, 6400, 5122, 8206, 6884], - "clone-deep", - [1, 2343, 5900], - [0, 0, 0, 5901, 34352], - [0, 8199, 2414, 8201, 8203, 447, 8211, 1623, 2278, 6400, 5122, 8206, 6884], - [1, 2343, 5903], - [0, 5904, 0, 5905, 4139], - [0, 8218], - [0, 2414, 7176, 8220, 1017, 8221, 1367], - [1, 2343, 5907], - [0, 5904, 0, 5905, 2537], - [1, 2343, 5909], - [0, 0, 5910, 5911, 2487], - [ - 0, 53, 8229, 87, 90, 92, 192, 5467, 442, 449, 7008, 452, 6061, 21120, 6063, 966, 968, 972, 5087, 4880, 4883, - 1393, 1423, 1570, 1610, 1177, 1895, 1938, 1939, 1947, 1955, 1959, 1961, 1976, 1982, 2203, 2675, 1192, 2780, - 1894, 3720, 89, 3824, 4039, 4131, 4468, 4474, 4493, 91, 4523 - ], - [0, 8220, 2132, 89, 5284, 8221, 45], - [1, 2343, 5913], - [0, 5914, 5916, 5918, 34352], - [0, 3951], - "to-fast-properties", - [ - 0, 5087, 4874, 1009, 1011, 1177, 1879, 1883, 1895, 1938, 1939, 1947, 1955, 1192, 2794, 1894, 4468, 4469, 4474, - 4508, 91 - ], - [2, 29288, 594], - [0, 91, 5130, 36, 5995, 3469], - [1, 2343, 5920], - [0, 5937, 5958, 5964, 4139], - "@api", - "devtools/json-schema-ref-parser", - [2, 5921, 5922], - [3, 105, 13], - "web-", - [2, 5925, 4963], - [2, 5924, 5926], - [3, 221, 10], - "gherkin-streams", - [2, 5928, 5929], - "@iframe-resizer/child", - [3, 5931, 16], - "parent", - [2, 5932, 5933], - "awilix", - "bpmn-js", - [0, 8245, 457, 1804, 8248], - "of", - "-allof", - [2, 4381, 5939], - [2, 2845, 5940], - [3, 3107, 13], - "bbr", - [2, 5942, 5943], - "ttrs", - [2, 5942, 5945], - [3, 3112, 14], - "detabs", - [2, 5947, 5948], - "multim", - "d-table", - [2, 5950, 5951], - [2, 3108, 5952], - [3, 4923, 13], - "lantuml-ex", - [2, 5954, 5955], - "task", - [0, 8252, 4874, 1009, 1011, 1610, 1804, 8256, 1177, 1879, 1883, 1895, 1938, 1947, 1955, 1894, 4469, 4474, 4508, 91], - "-lists", - "task-lists", - [2, 3108, 5960], - "-viewer-element", - [2, 3512, 5962], - [0, 91, 5130, 1804, 36, 5995], - [1, 2343, 5976], - "prince", - "svg-", - "pan-zoom", - [2, 5967, 5968], - [3, 4369, 11], - [2, 5970, 1724], - "reso", - "urce-inliner", - [2, 5972, 5973], - [2, 5925, 5974], - [0, 5979, 5916, 5984, 34352], - "-scss", - [2, 4323, 5977], - [0, 457, 8263, 8264, 24156, 1364, 2863, 3951], - "md", - "bpmn", - "bdd", - "feature", - [0, 91, 5130, 2026, 3469, 36, 5995], - [1, 2343, 5986], - [0, 5987, 5988, 5991, 2487], - [0, 31740, 8271, 8272, 8273], - [0, 8275], - "exit-hook", - [2, 1152, 5989], - [0, 2220, 8277, 1745, 1783, 8278], - [1, 2343, 5994], - "loki", - [0, 5996, 5997, 5998, 2523], - "backend", - [0, 32359, 6446, 8273, 8272], - [0, 8286, 8275], - [0, 467, 2220, 8277, 1745, 1932, 1783, 8278], - [1, 2343, 6012], - [3, 107, 12], - "y-release-plan", - [2, 1133, 6001], - [2, 6000, 6002], - [3, 6003, 13], - "ssemble-release-plan", - [2, 6004, 6005], - [3, 5522, 25], - "onfig", - [2, 5518, 6008], - [2, 6000, 2656], - "dependen", - [0, 6013, 0, 6046, 2537], - [ - 0, 53, 87, 8292, 8294, 8296, 1165, 1195, 8297, 1593, 1610, 1628, 1630, 2092, 8301, 3177, 3561, 3618, 8304, 2278, - 8306, 4111, 4383, 4027, 2924, 4677 - ], - "ts-graph", - [2, 6011, 6014], - [2, 2183, 6015], - [2, 6000, 6016], - [3, 6017, 16], - "release-", - "plan", - [2, 6019, 6020], - [2, 6018, 6021], - [3, 6017, 13], - [2, 6023, 2403], - [2, 6000, 2942], - "pre", - [2, 6000, 6026], - [2, 6000, 3917], - "-skip-package", - [2, 4170, 6029], - [2, 6000, 6030], - [2, 6000, 553], - "write", - [2, 6000, 6033], - "@man", - "ypkg/get-packages", - [2, 6035, 6036], - "editor", - [2, 26670, 26671], - "human-id", - "mri", - "p-limit", - "pref", - "erred-pm", - [2, 6043, 6044], - [0, 2924, 8309, 8310, 4967], - "spawndamnit", - "term", - "term-size", - [1, 2343, 6051], - [0, 6053, 6054, 6060, 2487], - "@mui/x-internals", - [0, 8317, 8320, 8321, 8324, 8325, 8328, 8330, 8333, 8335, 8337, 8339, 8341, 8344, 8346, 8348, 8350, 8353, 8354], - [0, 8357, 5500, 8358, 8359, 8362, 8364, 4874, 2036, 2812, 91], - [3, 110, 23], - [2, 6055, 592], - [3, 449, 25], - "free", - [2, 6057, 6058], - [0, 5130, 27, 5592, 5122], - "@semantic-release/changelog", - [3, 6061, 18], - [2, 6062, 3358], - "hub", - [2, 6063, 6064], - [2, 1457, 20], - "peer-deps-external", - [2, 4049, 6067], - [1, 5293, 6075], - "chat", - "reactjs", - " interface", - [2, 4569, 6072], - "ui kit", - [0, 8391, 6087], - "unication", - [2, 1514, 6076], - "conver", - "sation", - [2, 6078, 6079], - "toolkit", - "library", - "reusable", - "feed", - "social", - "talk", - 1724872768784, - [1, 2343, 6089], - [0, 6090, 6091, 6093, 2523], - [0, 8506, 3776], - [0, 192, 5467, 8509, 8511, 6061, 6063, 16480, 1177, 2675, 2742, 8512, 2990, 1894, 4131, 1984], - "ckeditor", - [0, 1776, 1894, 4298, 1745, 5284], - "ckeditor 5", - "-feature", - [2, 1459, 6095], - [3, 6096, 10], - [2, 6097, 1932], - "dll", - [2, 6097, 6099], - [1, 2343, 6102], - [0, 6103, 6104, 6114, 2537], - [0, 5917], - [ - 0, 11976, 8520, 26364, 966, 968, 972, 974, 4874, 4880, 8524, 8527, 8528, 8529, 1030, 1091, 8531, 1092, 6685, - 8534, 8536, 6809, 7250, 1610, 8537, 8556, 8538, 7091, 8539, 2812, 2832, 8540, 3165, 8543, 8544, 8547, 3400, 89, - 3824, 3833, 3951, 7080, 7103, 91, 8550, 7114, 1983, 8552, 1984, 6482, 4763 - ], - "wysiwyg", - "rich text", - "Editable", - [2, 1563, 6107], - "edit", - "editing", - "angular2", - "angular 5", - "ng", - [ - 0, 6659, 7020, 7130, 6663, 3833, 6482, 2812, 7080, 91, 4763, 7114, 6809, 7091, 8558, 7209, 7250, 7103, 1091, - 7196, 6685, 8560, 8561, 8556, 29291 - ], - [1, 2343, 6116], - [0, 6117, 5795, 6118, 2537], - [0, 4548], - [0, 8571, 8572, 8573, 8570, 1885, 8574, 5592], - [1, 2343, 6120], - [0, 6121, 6122, 6123, 2523], - [0, 8579, 8582, 8585, 8181, 3021], - [0, 4039, 188, 4639], - [0, 188, 8588, 8591, 4967, 5130, 181, 12, 4627, 4963, 5001, 837], - [1, 2343, 6125], - [0, 6128, 6129, 6130, 2537], - [3, 153, 22], - [2, 6126, 2389], - [0, 7905, 542, 1668, 3021], - [0, 8597, 4039, 188, 4639], - [0, 188, 8588, 8591, 4967, 5130, 181, 4627, 4963], - [1, 2343, 6146], - "ditor-balloon", - [2, 151, 6132], - "@jest/pattern", - "oper", - "al transformation", - [2, 5218, 6136], - [2, 6135, 6137], - "ot", - "colla", - "boration", - [2, 6140, 6141], - [3, 6142, 11], - [2, 6143, 4936], - "real-time", - [0, 6149, 6150, 6151, 2537], - "build", - [2, 6097, 6147], - [0, 31874, 8604, 8605, 8611, 34224, 8612, 4174], - [0, 8616, 8608, 4874, 91], - [ - 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 8622, 1836, 8623, 1179, 8624, 6847, 8625, 2720, 8626, 8628, 5284, - 4403, 202, 6710, 3741, 8630, 3742, 8631, 3925, 8632, 8633, 4989, 2184, 8634, 7009, 6621, 181, 8635, 4758, 8636 - ], - [1, 2343, 6153], - [0, 6154, 6155, 6156, 2399], - [0, 4484, 2735, 8641], - [ - 0, 1192, 2278, 1437, 2020, 4146, 8643, 1177, 4042, 2151, 2774, 1894, 4320, 5087, 4874, 8645, 6376, 8647, 30071, - 4328, 8648, 8651, 8653, 8654, 8656, 8659, 8660, 8661, 1895, 1011, 8665, 816, 8669, 8671, 1009 - ], - [0, 2733, 5130, 8673, 5131, 1896, 8674, 8675, 1591, 1804, 8677, 8678], - [3, 6133, 27], - [2, 6157, 128], - [1, 2343, 6160], - [0, 0, 6161, 6162, 2537], - [0, 4874, 668, 1894, 4384, 4483, 4508], - [0, 200, 6876, 8691, 4964, 7201, 4719, 176], - [1, 2343, 6169], - [2, 117, 2414], - "lignment", - [2, 112, 6165], - [3, 132, 9], - [2, 6157, 6167], - [0, 6170, 0, 6171, 2537], - [0, 8697], - [0, 91, 1541, 3421, 1973, 4504], - [1, 2343, 6174], - [2, 6157, 134], - [0, 6175, 6176, 6177, 2537], - [0, 8703, 8710, 8712, 8714, 1461, 8716], - [0, 8719, 842, 968, 972, 974, 7677, 1177, 1895, 8724, 2832, 89, 3824, 91, 1983, 1984], - [0, 4627, 4963, 8727, 4964, 5130, 4967, 8728, 8729, 5128, 89, 181, 1487], - "blurhash", - [1, 2343, 6180], - [0, 6181, 6182, 6183, 2537], - [ - 0, 8744, 6134, 8752, 8762, 8755, 554, 4874, 1107, 1437, 1458, 29680, 2215, 8769, 8734, 8750, 8765, 8758, 2797, - 8771, 8737, 8739, 8746, 2798, 8747, 8741, 3170, 3717, 4207 - ], - [0, 8782, 8776, 8780, 8778], - [ - 0, 1166, 1172, 4504, 8784, 2022, 3497, 8786, 8787, 2765, 1192, 2832, 2899, 8788, 8790, 2907, 8791, 8795, 8745, - 4384, 4389, 1973, 5472, 91, 2282 - ], - [1, 2343, 6185], - [0, 6186, 0, 2514, 2537], - [0, 6134, 8801, 8809, 8806, 4874, 4892, 1437], - [1, 2343, 6188], - [0, 6189, 6190, 6191, 2487], - [0, 8818, 1091, 1092, 1209], - [ - 0, 549, 8826, 1009, 1011, 1166, 8832, 1177, 1895, 1938, 1955, 2832, 3421, 1894, 3875, 8824, 4039, 4042, 4052, - 4076, 4079, 4232, 4474, 4484, 4508, 91 - ], - [0, 1669, 25, 1781, 8836, 4967, 1179, 6847, 7020, 8838, 2860, 2844, 8839, 8691, 8841], - [2, 6097, 1095], - [1, 2343, 6194], - [0, 6195, 6196, 6198, 2523], - [0, 8846, 1673, 1209], - [ - 0, 7948, 370, 618, 622, 626, 811, 8850, 816, 6373, 4863, 5087, 4880, 4883, 1009, 1011, 8158, 1584, 1843, 1177, - 1895, 1938, 1955, 1959, 1192, 2780, 2832, 3421, 1894, 89, 3824, 4039, 4042, 4052, 8849, 8853, 4076, 4079, 4230, - 4468, 4469, 4484, 4508, 91, 2924, 4677, 4681, 555, 560 - ], - [3, 191, 21], - [0, 29, 3902, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], - "atchdog", - [2, 6197, 6199], - [1, 2343, 6202], - [0, 6203, 6204, 6205, 2487], - [0, 1209], - [ - 0, 8862, 4863, 5087, 8860, 4880, 4884, 1009, 1011, 8158, 1610, 1843, 1177, 1895, 1938, 1955, 1959, 1192, 2832, - 3421, 1894, 89, 3824, 3876, 3875, 8824, 4039, 4042, 4052, 4076, 4079, 4468, 4484, 4508, 91, 555 - ], - [0, 89, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], - [1, 2343, 6207], - [0, 6208, 6209, 2514, 2537], - [ - 0, 6059, 8918, 8923, 8928, 8926, 8934, 8921, 8913, 8931, 8932, 8894, 8916, 8892, 8897, 8906, 8900, 8887, 8910, - 8902, 8890 - ], - [0, 8937, 5087, 1192, 4039, 91], - [1, 2343, 6211], - [0, 6212, 6213, 6218, 34352], - [ - 0, 1110, 1282, 1437, 1537, 8942, 2070, 8944, 2822, 8947, 3072, 3181, 3188, 8949, 4039, 8951, 8952, 8954, 8957, - 8959, 4431, 4562, 4600, 4603, 8962 - ], - [0, 1173, 8966, 1255, 1264, 1596, 1672, 2835, 2899, 3421, 8967, 4100, 4193, 4255, 4597], - "ndo", - [2, 183, 6214], - "select-all", - [2, 117, 6216], - [0, 2278, 4329, 1623, 2295, 1745, 4298, 699], - [1, 2343, 6220], - [0, 0, 0, 6221, 2399], - [0, 8980, 8984, 8987], - [1, 2343, 6223], - [0, 6224, 6225, 6226, 2523], - [0, 8605], - [0, 546, 8997, 8998, 2992], - [0, 2991, 2992, 200, 5957, 3392, 9000, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921], - [1, 2343, 6228], - [0, 6229, 6230, 6231, 2487], - [0, 8703, 1497, 3867, 9008, 9011, 4507], - [0, 89, 3824], - [0, 4963, 4964, 4967, 6082, 3286, 3287, 89, 181, 630], - [1, 2343, 6233], - [0, 6234, 6230, 6235, 4139], - [0, 1497], - [0, 9026, 4963, 1666, 4967, 6082, 3286, 3287, 3811, 89, 6901, 181, 630], - [1, 2343, 6237], - [0, 0, 0, 6238, 2523], - [0, 4967, 582, 6082, 3286, 3287, 89, 6687, 6649], - [1, 2343, 6240], - [0, 0, 6230, 6241, 2487], - [0, 4963, 8622, 4967, 6082, 5066, 3286, 3287, 89, 181, 630], - [1, 2343, 6243], - [0, 6244, 6230, 6245, 2487], - [0, 9041, 3911], - [0, 4963, 4967, 6082, 3286, 3287, 9044, 9045, 9047, 89, 181, 630], - [1, 2343, 6247], - [0, 6248, 0, 6249, 2537], - [0, 9054, 595], - [0, 89, 3286, 3287, 181, 4963, 630, 6082, 4967, 1501, 5342, 5341, 9057], - [1, 2343, 6251], - [0, 6252, 0, 6253, 2399], - [0, 1497, 1639], - [0, 89, 3286, 3287, 181, 6082, 4967, 1832, 7165, 7297], - [1, 2343, 6255], - [0, 0, 0, 6256, 2523], - [0, 89, 3286, 3287, 6082, 4967, 6687, 582, 6649], - [1, 2343, 6258], - [0, 6259, 0, 6260, 2537], - [0, 1497, 3847, 3559, 3744, 97, 9075, 9076, 9071, 9074, 3911, 2609, 4808], - [0, 89, 5128, 5027, 3132], - [1, 2343, 6262], - [0, 6263, 0, 6264, 2537], - [0, 97], - [0, 89, 5128, 5027, 3132, 45], - [1, 2343, 6266], - [0, 0, 6267, 6273, 2537], - [ - 0, 1192, 3348, 2675, 1177, 1209, 1593, 4474, 4508, 1894, 1317, 48, 1193, 91, 53, 5087, 7819, 3400, 4870, 107, - 192, 5366, 87, 1978, 3957, 1895, 1955, 4514, 92, 603, 9089, 1011, 5467, 1009, 61, 78, 76 - ], - "color-parse", - "color-", - "convert", - [2, 6269, 6270], - "vanilla-colorful", - [0, 1781, 5592, 9091, 9093, 1753, 9094, 4525, 91, 4799, 5995, 6400], - [1, 2343, 6275], - [0, 6276, 0, 6277, 2523], - [0, 9100], - [0, 1219, 1783, 9102, 89, 3984], - [1, 2343, 6279], - [0, 6280, 6281, 6282, 2399], - [0, 608, 606, 1687, 1209, 3181, 814, 4135, 4227, 91, 9111, 9110, 9113, 9119, 9121], - [0, 9125, 4870, 5251, 5254, 1177, 29339, 9130], - [0, 91, 8172, 9132, 9133, 9134, 8623, 1745, 6432, 4056, 7897, 4042, 6374, 4643, 9135, 9136], - "@aws/durable-execution-sdk-js", - "vue.js", - "vue component", - " component", - [2, 6284, 6286], - [1, 2343, 6289], - [0, 0, 6290, 6291, 2537], - [0, 1177, 9125, 9141], - [0, 6869, 1745, 2295, 4298, 9132, 57, 4255], - [1, 2343, 6293], - [0, 6294, 6295, 6291, 2537], - [0, 1091, 9153, 814, 606], - [0, 1177, 9156, 5251, 9125, 9141], - [3, 192, 12], - [2, 6296, 1671], - [2, 6296, 671], - [3, 6298, 13], - "oad", - [2, 6299, 6300], - [2, 6296, 3917], - [2, 6296, 553], - [1, 2343, 6310], - [3, 6303, 13], - [2, 6305, 4467], - [2, 6296, 594], - [3, 4872, 14], - [2, 6308, 1698], - [0, 0, 6311, 6312, 2523], - [0, 6283, 33639, 9163, 9167, 4874], - [0, 9169, 9170, 9171, 9172, 9173, 9174, 33959, 33964], - [1, 2343, 6314], - [0, 6321, 6322, 6340, 4139], - [3, 195, 10], - [2, 6315, 2997], - "ngd-transformer", - [2, 6315, 6317], - ".native", - [2, 1367, 6319], - [0, 615], - [0, 609, 9167, 4507], - "decache", - "-plugin-", - [2, 6324, 3665], - [2, 3079, 6325], - "lunr", - "openc", - "ollective-postinstall", - [2, 6328, 6329], - "os-name", - "pdfmake", - "sort", - "tablesort", - "vis-network", - [2, 6337, 6338], - [3, 10088, 18], - "-list", - [2, 10217, 6341], - [0, 9169, 9170, 9171, 9172, 9173, 9174, 9182, 9183, 8172, 6671, 9184, 9186], - "icky", - [3, 197, 10], - [2, 6342, 553], - [1, 2343, 6350], - "semantic", - "actor", - "messages", - [2, 698, 9352, 6349, 10029], - "scroll-b", - [0, 0, 6353, 6356, 2537], - [2, 6352, 1633], - [3, 6348, 22], - [0, 9193, 609, 9167, 4874, 9196], - "cms", - "management", - [0, 9169, 9170, 9171, 9172, 9173, 9174, 1383, 614], - [1, 2343, 6358], - [0, 0, 0, 6359, 2523], - [0, 9203, 4967, 9204, 1283], - [1, 2343, 6361], - [0, 6362, 6363, 6364, 2537], - [0, 9213, 9215, 9217, 9218, 9219, 9221], - [ - 0, 192, 5467, 9225, 9226, 8648, 9227, 6494, 9231, 9237, 4874, 5542, 24360, 9240, 9241, 1170, 1364, 1527, 1594, - 1610, 1652, 9242, 2026, 9243, 9244, 2131, 2212, 2559, 2832, 3310, 9245, 4218, 4220, 9247, 4339, 4342, 1531, 91, - 4548, 1984, 9250, 9252, 9255, 2924, 9258, 4729 - ], - [0, 705, 9261, 27, 2671, 4738, 4731, 1612, 9262, 3212, 4158, 5472], - [1, 2343, 6366], - [0, 6263, 0, 6367, 2537], - [0, 89, 5128, 9267, 3132, 5027, 45], - [1, 2343, 6394], - "@doc", - "search/js", - [2, 6369, 6370], - "@popperjs/core", - [2, 812, 4068], - "bundle", - "bundlewatch", - [2, 1462, 20], - "find-u", - "nused-sass-variables", - [2, 6377, 6378], - "hammer", - "-simulator", - [2, 6380, 6381], - "hugo-bin", - "-istanbul-reporter", - [2, 2886, 6384], - [2, 1868, 2903], - [2, 2898, 6386], - "mbine-duplicated-selectors", - [2, 3573, 6388], - [2, 4049, 2759], - "twbs-bootstrap", - [2, 4942, 6391], - "vnu-jar", - [0, 6397, 0, 6401, 2487], - "-first", - [2, 5131, 6395], - [0, 1497, 9272, 9273, 3744, 624, 97], - "responsive", - "front-", - "front-end", - [0, 89, 5128, 9267, 3132, 5027, 620], - [1, 2343, 6403], - [0, 6404, 0, 6405, 2537], - [0, 1497, 1639, 3847, 9272, 9273, 3744, 624, 97, 6372, 3911, 9284, 4808], - [0, 89, 5128, 9267, 3132, 5027], - [1, 2343, 6407], - [0, 6408, 0, 6409, 34352], - [0, 1497, 1639, 9272, 9273, 3744, 97, 4782, 9293], - [0, 89, 5128, 9267, 623], - [1, 2343, 6411], - [0, 6412, 0, 6414, 2537], - [0, 97, 9273, 4808, 1497, 3744, 3911, 6052], - "media", - [0, 89, 5128, 9267, 9300, 3132, 5027, 3812, 9301, 9302], - "media query", - [1, 2343, 6417], - [0, 6418, 6419, 6420, 2523], - [ - 0, 9307, 9308, 9310, 9311, 9312, 9313, 9315, 9316, 9317, 1461, 1473, 9319, 9321, 9322, 2070, 2226, 9324, 9327, - 9329, 9334, 9337, 9340, 3988, 9343, 9347, 9348, 9351, 4507, 4549, 4555, 2924, 9354, 9355 - ], - [0, 9357, 9359, 9362, 9363, 4880, 4891, 1165, 1540, 3286, 3613, 89, 3824, 3958, 4383, 4493, 91, 9364, 9367, 9368], - [0, 9102, 1745, 3287, 1783], - "matches", - "polyfill", - [3, 3668, 9], - "lugin", - [2, 6423, 6424], - "pseudo", - [1, 2343, 6428], - [0, 6429, 0, 6430, 34352], - [0, 9375, 9376, 9378, 9379], - [0, 1098, 1745, 1179, 9381, 9382, 5592, 9383, 9384], - [1, 2343, 6438], - [3, 4325, 11], - [2, 6432, 591], - [3, 217, 11], - "utility", - "variables", - "vars", - [0, 6439, 0, 6430, 2443], - [0, 4484, 628], - [1, 2343, 6441], - [0, 6442, 0, 6430, 2523], - [0, 3958, 9393, 3971, 3978, 7610, 9396, 9401, 2584, 4555, 9405, 9407, 9409, 1437, 9348, 4549, 4292], - "specificity", - [1, 2343, 6445], - [0, 6459, 6460, 6480, 2523], - [2, 6447, 25240], - [3, 465, 19], - [3, 221, 11], - "i-environment", - [2, 6448, 6449], - [2, 3228, 5709], - [2, 221, 6451], - [3, 5930, 17], - [3, 5930, 18], - [2, 6454, 594], - [2, 2617, 4525], - [2, 5928, 6456], - "message", - [0, 9414, 1690, 1431, 9417], - [ - 0, 1429, 1363, 2899, 1177, 9420, 4039, 9422, 4474, 2182, 1894, 91, 4856, 4874, 9424, 1325, 1951, 1938, 1895, - 1955, 1011, 9426, 1009, 634, 9431, 9437 - ], - "-streams", - [2, 6458, 6461], - [2, 5928, 6462], - [3, 6463, 17], - [2, 6464, 591], - "tag-expressions", - [2, 5928, 6466], - [3, 5710, 9], - "-error-formatter", - [2, 6468, 6469], - "capital-case", - [2, 4250, 57], - [2, 3827, 6472], - "has-ansi", - "knuth-shuffle-seeded", - [2, 3060, 5056], - "resolve-pkg", - "argv", - "string-argv", - [0, 9439, 9440, 9422, 5472], - "util-arity", - "yup", - [1, 2343, 6506], - "ompa", - "tibility-kit", - [2, 6484, 6485], - [2, 6448, 6486], - [2, 5928, 3766], - "-xml", - [2, 4856, 6489], - "@types/d", - "irty-chai", - [2, 6491, 6492], - [2, 4861, 674], - "@types/h", - "as-ansi", - [2, 6495, 6496], - [2, 6309, 5056], - "@types/l", - "uxon", - [2, 6499, 6500], - "@types/m", - [2, 6502, 1950], - "ustache", - [2, 6502, 6504], - [0, 6531, 6534, 2514, 2523], - "@types/mz", - [3, 5090, 10], - "gress", - [2, 6508, 6509], - "inon-chai", - [2, 5051, 6511], - [3, 6512, 12], - "js__fake-timers", - [2, 6513, 6514], - [3, 4890, 9], - "-buffers", - [2, 2187, 6517], - [2, 6516, 6518], - "@types/tmp", - "exclude", - [2, 1432, 6521], - "xml", - "chai-xml", - [2, 5313, 671], - "genversion", - "reindent-template-literals", - "stream-t", - "o-string", - [2, 6528, 6529], - [ - 0, 9501, 9452, 9510, 638, 9496, 9493, 641, 9479, 9456, 9459, 643, 9449, 9448, 9485, 2613, 9472, 3084, 3181, - 3368, 9465, 3386, 9462, 3397, 3483, 9476, 3727, 9447, 9490, 9469, 4135, 4248, 9451, 9455 - ], - "gherkin", - "tests", - [0, 9516, 26037, 9515, 1317, 9520, 3297, 4384, 4393, 9512], - [1, 2343, 6536], - [0, 6537, 6538, 6542, 2523], - [0, 9493, 9479, 2070, 3181], - [0, 9516, 9515, 4384], - [3, 6503, 10], - "k-fs", - [2, 6539, 6540], - [0, 3378, 3409, 2977, 200, 9527, 637], - "-compare", - [2, 5254, 6543], - [3, 6512, 9], - "gnale", - [2, 6545, 6546], - "mock-pro", - "cess", - [2, 6548, 6549], - [2, 2769, 6550], - [2, 4135, 6543], - "signal", - "signale", - [1, 2343, 6556], - [0, 0, 6538, 6558, 2399], - "deven", - [0, 3378, 200, 640], - [1, 2343, 6560], - [0, 6561, 6562, 2514, 2487], - [0, 641, 9479, 9539, 640, 3727, 4707], - [0, 9516, 9515, 9542, 4384], - "toobject", - [3, 3568, 10], - "urable", - [2, 1541, 6565], - "promises", - "ReactiveX", - "WeakSet", - "ES3", - [1, 2343, 6576], - "cloudsearch", - "uninstall", - "windows", - "cjk", - [0, 6595, 6603, 6604, 2523], - "negative", - "shar", - "shared", - "Symbol.toStringTag", - "full-width", - "Object", - "Array.prototype.flatMap", - "Uint8", - "ClampedArray", - [2, 6584, 6585], - "start", - "starter", - "infer", - "ence", - "inference", - [3, 6583, 17], - "indLast", - [2, 6592, 6593], - [ - 0, 9547, 9548, 9550, 3105, 2745, 9552, 9554, 9556, 9558, 9560, 9562, 3023, 9563, 4110, 7610, 9565, 9566, 3032, - 9568, 3114, 9569, 9573, 9577, 5961, 9580, 9584 - ], - "replay", - "[[Prototype]]", - "es7", - "cloud", - "ion", - "formation", - [2, 6599, 6601], - [0, 2070, 2899, 1448, 4255, 9586, 1389, 9588, 4257], - [0, 9591, 3987, 2195, 9593, 1783, 5980, 1745, 9595, 1936, 3378], - "look", - "last", - "regular expression", - "ECMAScript 2023", - "hot", - "rm -fr", - "chinese", - [1, 5293, 6617], - "consume", - "look-up", - "ES8", - "rgb", - [0, 8391, 6628], - "deep-copy", - "iam", - "ES2022", - "tty", - "status", - "length", - "view", - "dom-t", - "esting-library", - [2, 6625, 6626], - 1734998400000, - "elb", - [1, 2343, 6655], - "getter", - [3, 6608, 13], - "19", - [2, 6632, 6633], - "macos", - "__proto__", - "asserts", - "deepclone", - [3, 2779, 11], - [2, 6639, 591], - "crypt", - [3, 6634, 14], - "8", - [2, 6642, 6643], - "push", - "monorepo", - "lone", - "fast-clone", - "state", - "lru", - [2, 1177, 1541], - "endpoint", - "a11y", - "weakmap", - [0, 6656, 0, 6658, 2537], - [0, 666], - "streams2", - [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 9627, 9628], - "scheme", - ".json", - [2, 3383, 6660], - "ajax", - "hookform", - [1, 2343, 6672], - "autoscaling", - "packages", - "linux", - "rfc4122", - [3, 2069, 10], - [2, 6669, 1585], - "JSON", - [0, 6675, 0, 6658, 2399], - "matchAll", - "iterate", - [0, 3420, 4484], - [1, 2343, 6679], - "structuredClone", - "trim", - [0, 6682, 0, 6658, 2537], - "@cfcs/core", - [3, 3518, 11], - [0, 683], - "findLast", - [1, 2343, 6699], - "arktype", - [3, 3833, 10], - [2, 6686, 591], - "prototype", - "sigint", - "sinatra", - "Object.", - "value", - "values", - [2, 6691, 6693], - "reduce", - "reducer", - "Function.prototype.name", - "lockfile", - [0, 6712, 6717, 6658, 2523], - "full", - "fullwidth", - "groupBy", - "wait", - "duplex", - "css less", - "helpers", - "optimize", - "optimizer", - "emr", - "nodejs", - "defineProperty", - [0, 29309, 1797, 4484, 4135, 4748, 3181, 1836], - "pyyaml", - "call", - "bind", - "callbind", - [0, 1192, 3420], - "styleguide", - [1, 2343, 6722], - "watchFile", - "code ", - [0, 6730, 6736, 6744, 2537], - "code points", - "Index", - [2, 6683, 6724], - "Map", - "flatMap", - "l10n", - "WebSocket", - [0, 4484, 677, 666, 3527, 27921, 4480], - "utilities", - "high", - "er-order", - [2, 6732, 6733], - "dataview", - [0, 3420], - "handling", - [2, 3827, 6737], - "define", - "ebs", - [2, 1177, 1932], - "estree", - [2, 6642, 2855], - [0, 9621, 9647, 9623, 9628, 9648, 9649], - [1, 2343, 6756], - "ES2015", - [3, 6608, 11], - [2, 6747, 1278], - "operati", - "ng-system", - [2, 6749, 6750], - "RegExp#flags", - "loading", - "range", - "rangeerror", - [0, 6757, 6736, 6767, 2537], - [0, 4484, 677, 4135, 666, 91], - "accessor", - "ESnext", - "limited", - "RFC-6455", - "URLSearchParams", - "es-shim API", - "col-buffers", - [2, 4900, 6764], - "lesscss", - [0, 9621, 9623, 9657, 9658, 9628, 9659], - "nce", - "sequence", - " system", - "file system", - [1, 2343, 6785], - "pnpm9", - "metadata", - "YAML", - [3, 3405, 12], - "ES2023", - "es2015", - "simpledb", - "hasOwn", - [2, 5010, 6972], - "debugger", - " zero", - [2, 6577, 6783], - [0, 6815, 0, 6819, 34352], - "fast-copy", - "spinners", - "predictable", - "ES6", - "rm", - [3, 6583, 16], - "contain", - "contains", - [2, 6791, 6793], - "japanese", - [3, 6608, 14], - [2, 6796, 1274], - [2, 20413, 2659], - "byteOffset", - "setter", - "Object.keys", - "flags", - "key", - "ender", - "ponyfill", - [2, 20413, 8124], - "logging", - "sns", - [2, 4626, 1155], - "ses", - "output", - "worker", - "export", - [2, 1204, 6813], - [0, 4484, 677, 682, 666], - "tester", - "waf", - "setImmediate", - [0, 9621, 9624, 9667, 9626, 9627, 9628, 9649], - "typedarrays", - "walking", - "descriptor", - [1, 2343, 6826], - "hardlinks", - "buffers", - [0, 6833, 6736, 6851, 2443], - "typesafe", - "Set", - "CSS", - "es-abstract", - "agegateway", - [2, 4268, 6831], - [ - 0, 1437, 4484, 2687, 4135, 1513, 9673, 3530, 666, 3527, 27921, 53, 1710, 2858, 3404, 683, 97, 29309, 87, 4232, - 7913, 9676, 92, 83, 71, 5757, 9678 - ], - [2, 6838, 1172], - "cloudfront", - "7", - [2, 6642, 6836], - [3, 13067, 16], - "ES2019", - [2, 6855, 6872], - "reuse", - "acter", - "character", - "prese", - "rve-symlinks", - [2, 6844, 6845], - "input", - [3, 1461, 9], - "Underscore", - "ec2", - [0, 9621, 9623, 9624, 9680, 9681, 9628, 9648, 9649], - [1, 2343, 6861], - "indicator", - "AsyncIterator", - "@vue/cli", - "performant", - "folder", - "Stream", - "0", - "ES2020", - [0, 6862, 0, 6880, 2537], - [0, 4484, 677, 682, 666, 672, 9687], - [2, 6822, 591], - "te", - "delete", - "arraybuffer", - [2, 6579, 6866], - "emit", - "TypeScript", - "batch", - "rds", - [3, 4075, 18, 6], - [2, 6896, 11100], - "Uint16Array", - "password", - [3, 1519, 12], - " manager", - [2, 3383, 6877], - "mru", - [0, 9621, 9624, 9625, 9626, 9627, 9628, 9649], - "byteLength", - "rate", - "css ", - "variable", - [2, 6883, 6884], - [1, 2343, 6895], - "speed", - "own", - "has-own", - ".env", - "elm", - "ast", - "6", - [2, 6747, 6893], - [0, 6900, 6736, 6880, 4139], - "@vue/cli-", - " compiler", - [2, 695, 6897], - [3, 3938, 9], - [0, 4484, 677, 4774, 29540, 666, 26784, 672, 18052], - "time", - [2, 1955, 12054], - "bundling", - [2, 6916, 1987], - "Uint32Array", - [1, 2343, 6908], - "minimal", - [0, 6909, 6736, 6658, 34352], - [0, 3420, 1437, 4484, 4135, 1836, 3530, 666, 4748, 29309], - "collection", - " css", - "nested css", - "slice", - "has", - "sorted", - [3, 4079, 15], - "iteration", - "ES2021", - "Float32Array", - "regular", - "idle", - "column", - "Iterator", - [1, 2343, 6927], - "throttle", - "guid", - [0, 6928, 6934, 6936, 2537], - [0, 687, 9704, 9706, 9708, 1676, 4135], - "watching", - "sqs", - "vue 3", - "less css", - "glacier", - [0, 9712, 4856, 6503, 4874, 5254, 1429, 1488, 1567, 1177, 1891, 1893, 9714, 2205, 2899, 4193, 4474, 91], - "sett", - [0, 1890], - "settings", - "ascii", - [3, 1920, 13], - "break", - "inter", - [1, 2343, 6978], - "internal", - [2, 6691, 3437], - [2, 6747, 6836], - "Array", - "Buffer#slice", - [2, 6946, 6947], - "s3", - "shrinkwrap", - "sham", - "art", - "safe", - ":*", - [2, 664, 6954], - [3, 6677, 9], - [2, 2382, 6956], - "Property", - [2, 6780, 6958], - "korean", - "regexp", - [2, 1367, 6911], - "beanstalk", - "ES5", - [2, 3632, 6911], - "take", - [3, 6962, 10], - [2, 6967, 695], - "tdd", - "jQuery", - "enum", - "-vanilla", - "enumerable", - "hot-shots", - "JSON-Schema", - "workflow", - "CSSStyleDeclaration", - [0, 6982, 6984, 6936, 2523], - "route53", - "wordbreak", - "columns", - [0, 9704, 9706, 1676, 2205, 2755, 4484], - "formatting", - [0, 4856, 9723, 4870, 6503, 4874, 9725, 8610, 1429, 1567, 1177, 1891, 1893, 9714, 1209, 2899, 3752, 4474, 91], - "one", - "fastclone", - "shebang", - "number", - [1, 2343, 6992], - "ache", - "elasticache", - [0, 6995, 6999, 7000, 2537], - [2, 6838, 7005], - "concurrency", - [0, 1107, 1112, 9730, 1480, 1676, 1797, 2179, 2709, 2755, 2984, 3181, 4135, 4290, 4351, 27921, 9731, 4720, 4726], - "bundler", - "amazon", - "toSorted", - [ - 0, 5467, 19438, 691, 9712, 9736, 9737, 5366, 4856, 9417, 9740, 5245, 9741, 9723, 6503, 4874, 9743, 6513, 9746, - 9749, 8610, 1317, 1429, 1431, 1529, 1610, 1177, 1891, 1895, 2675, 2990, 9750, 2899, 3421, 1894, 4172, 4193, - 4474, 4481, 91 - ], - [0, 1890, 200, 1523, 9753, 57, 7058, 6478], - "chromium", - "obj", - "await", - "move", - "unit-mocha", - "symlink-dir", - "persistent", - [2, 11169, 7036], - "terminal", - "coercible", - "ES2016", - [1, 2343, 7013], - [0, 7030, 7032, 7034, 2487], - "identifiers", - "includes", - "swf", - "readable", - "protobuf", - "form-", - "validation", - [2, 7019, 7020], - "RxJS", - "busy", - "fps", - [2, 6965, 1278], - "-0", - "Observable", - "mixins", - "parents", - [0, 688], - "typeof", - [ - 0, 5467, 19438, 9736, 9737, 4856, 6503, 4874, 1429, 1529, 1177, 1891, 1895, 2675, 2990, 2899, 1890, 1894, 4172, - 4474, 91 - ], - "interrupts", - [0, 9760], - "fastcopy", - "brands-svg-icons", - "prune", - [3, 6583, 20], - [2, 7038, 2395], - [2, 7027, 591], - "Microtask", - [2, 3768, 7041], - [1, 2343, 7063], - "es2018", - "circular", - "streams", - "runtime", - "make", - "serializ", - [2, 7049, 5218], - "limit", - "Dispatcher", - [2, 2013, 7052], - "balancing", - [2, 3001, 7054], - "es2016", - "WebSockets", - "args", - "ath", - "jsonpath", - [2, 6796, 1276], - "visual", - [0, 7066, 7068, 7079, 2537], - "positive", - "es-shim", - [0, 7725, 9767, 9771, 9774], - "every", - [0, 9778, 9781, 9783, 9785, 9786, 4874, 7677, 668, 2086, 2070, 3297, 1894, 9794, 91, 4548, 1984], - "trimRight", - "mimetypes", - "handlers", - "ratelimit", - "signals", - "rmdir", - "es8", - "findup", - "stable", - "robust", - [0, 9796, 2195, 4030, 9797], - "superstruct", - ".es6", - [2, 6910, 7081], - "intrinsic", - [3, 6948, 11], - "curl", - "symlinks", - "ES2018", - [1, 2343, 7093], - "writable", - "rapid", - "io-ts", - "weak", - [0, 7095, 0, 7097, 2537], - "throat", - [ - 0, 9804, 9807, 9810, 9811, 9813, 9815, 9819, 9821, 9829, 9834, 9838, 9841, 9843, 9846, 9848, 9849, 9850, 9852, - 9855, 9856, 9858, 9861, 9862, 9864, 9866, 9869, 9871, 9873, 9874, 9875, 9878, 9933, 9935, 9937, 9938, 9940, - 9941, 9945, 9949, 9953, 9955, 9957, 9960, 9964, 9967, 9969, 9971, 9974, 9977, 9979, 9983, 9985, 9986, 9989, - 9991, 9993, 9996, 9998, 10001, 10004, 10006, 10007, 10009, 10013, 10014, 10016, 10019, 10021, 10024, 10026, - 10027, 10030, 10032, 10034, 10037, 10041, 10044, 10047, 10048, 10049, 10051, 10053, 10055, 10058, 7127, 10060, - 10063, 10065, 10066, 10068, 10075, 10077, 10081, 10083, 10084, 6336, 10088, 10092, 10094, 10097, 10102, 10105, - 10107, 10110, 10114, 10117, 10119, 10126, 10128, 28711, 10130, 10131, 10132, 10134, 10135, 10137, 10139, 10142, - 10144, 10145, 10146, 10147, 10149, 10151, 10153, 10156, 10159, 10162, 10163, 10165, 10167, 10170, 10173, 10178, - 10180, 10183, 10186, 10188, 10191, 10193, 10195, 10197, 10198, 33633, 10200, 10201, 10203, 10204, 10206, 10207, - 10208, 33138, 10210, 10213, 10216, 10219, 6339, 10223, 10226, 10228, 10229, 10230, 10231, 10234, 10235, 34233, - 10237, 10239, 10241, 10245, 10247, 10248, 10249, 10250, 10253, 10255, 10260, 10262, 10264, 10267, 10269, 10272, - 10273, 10275, 10276, 10278, 10280, 10283, 10285, 10290, 10291, 10292, 10293, 6348, 6351, 10295, 10300, 10302, - 10304 - ], - "restful", - [0, 188, 8588, 4967, 10307, 4963, 10309, 10310, 10313, 10315], - "deep-clone", - "Rx", - "symlink", - "vpc", - "whatwg", - "typanion", - "Float", - "64Array", - [2, 7104, 7105], - "$.extend", - "Promise", - "Reactive", - "Extensions", - [2, 7109, 7110], - [1, 2343, 7113], - [0, 7118, 7124, 7097, 2523], - "vest", - "from", - "-package", - [2, 3250, 7116], - [0, 28591, 29506, 1473], - "parsing", - "or", - [2, 4358, 7120], - ".inspect", - [2, 614, 7122], - [0, 10321, 4493], - "fromEntries", - [2, 6691, 7125], - [2, 10056, 1631], - "getopt", - "-validation", - [2, 6659, 7129], - "filter", - "Emitter", - [2, 2013, 7132], - "URL", - "fixed-width", - [1, 2343, 7137], - [0, 0, 7138, 7097, 4139], - [0, 48, 53, 87, 2071, 2323, 2332, 2361, 2367, 2450, 10327, 10328, 4039, 4320, 4323, 4361], - [1, 2343, 7140], - [0, 0, 7142, 7097, 4139], - "encryption", - [0, 48, 53, 87, 2323, 2332, 2361, 2450, 4039, 4320, 4323], - [1, 2343, 7154], - "TypedArray", - "isConcatSpreadable", - "StyleSheet", - "create", - "mkdir", - "mkdirs", - "zero", - "sameValueZero", - "linewrap", - "side", - [0, 0, 0, 7156, 2537], - "listeners", - [0, 10337, 10339, 10340, 5122, 5995, 977], - "censor", - "watcher", - "typeerror", - [1, 2343, 7166], - "make dir", - "bound", - "patch", - "in-js", - "css-in-js", - [0, 7173, 0, 7186, 2537], - "deepcopy", - "setPrototypeOf", - "characters", - "pipe", - [2, 6747, 2855], - "Push", - [0, 10347, 10348, 703, 10351, 10353, 10354, 10355, 10357], - "trail", - "cloudtrail", - "awesome", - "sauce", - [2, 7176, 7177], - "banner", - "redux-t", - "oolkit", - [2, 7180, 7181], - "dete", - "rministic", - [2, 7183, 7184], - [0, 10337, 10339, 10340, 5122, 5995, 990, 705], - [1, 2343, 7195], - "extension", - "lazy", - [3, 1705, 10], - [2, 7190, 6877], - "es2017", - "search", - "ES2017", - [0, 7203, 0, 7206, 2523], - "TypeBox", - " in css", - [2, 6436, 7197], - "Streams", - "aws", - "console", - "Reflect.getPrototypeOf", - [0, 10363, 3171, 10367, 10351, 703, 10370, 10373, 706, 711, 10374], - "directory", - [2, 6607, 591], - [0, 10337, 10339, 10340, 5122, 5995, 10376], - [1, 2343, 7216], - "colour", - "nope", - "flag", - [3, 2982, 14], - "syntaxerror", - [3, 3904, 10], - [2, 7213, 1974], - "kinesis", - [0, 7217, 0, 7225, 2537], - [0, 3171, 10382, 10373], - "rm -rf", - "exit-", - "exit-code", - "ES7", - "jsdiff", - "private", - "slot", - [0, 10337, 10339, 10340, 5122, 5995, 10376, 710, 10384], - "sigterm", - "group", - "less.js", - "gdpr", - "east-asian-width", - [3, 6820, 10], - "Int32Array", - "argument", - "compile", - " less", - [2, 7234, 7235], - [1, 2343, 7238], - [0, 7240, 7243, 7246, 2537], - "callbound", - [0, 10389, 1170, 1364, 1437, 2026, 2220, 2222, 2659, 2674, 2817, 1209, 3776, 10397, 38, 13781], - "callback", - "installer", - [ - 0, 48, 53, 87, 10401, 4856, 9417, 6494, 10406, 4870, 6503, 10410, 4874, 10413, 6513, 6512, 24164, 1009, 1011, - 1429, 1431, 10417, 1587, 1177, 1881, 1883, 1895, 1915, 10419, 1938, 1951, 2899, 3297, 3421, 1894, 3752, 4039, - 4193, 4196, 4232, 4494, 91 - ], - "256", - "tostringtag", - [0, 10426, 10427, 5284, 10430, 5472, 10432], - " data", - [2, 7223, 7247], - "uted-types", - [2, 1534, 7249], - "nel", - "channel", - "iterator", - "mapreduce", - [2, 7017, 3101], - [3, 5804, 10], - [1, 2343, 7261], - "less mixins", - [2, 6796, 6859], - "forEach", - [0, 0, 0, 2514, 2399], - "description", - "Symbol", - [1, 2343, 7266], - "generics", - [0, 7267, 0, 7269, 2487], - [0, 3509], - "stdlib", - [0, 6649, 6355, 89, 188, 3709, 1542, 91, 5284, 4967, 5995, 2202, 181, 2130, 38], - "typed array", - [1, 2343, 7273], - "call-bound", - [0, 7274, 7277, 2514, 2537], - [0, 10593, 10594, 10596, 10597, 10600, 10602, 10603, 10604, 10605, 10606, 10608], - "WeakMap", - [2, 6691, 3426], - [0, 4856, 6503, 1429, 1628, 1863, 2297, 2881, 2895, 2897, 2900, 2904, 2899, 4039, 4940, 4307, 4508, 91, 2924], - [1, 2343, 7279], - [0, 0, 7280, 7281, 2537], - [ - 0, 8648, 10614, 816, 10615, 966, 968, 13204, 4874, 10616, 1637, 1177, 28727, 10619, 32765, 10621, 2203, 2832, - 3561, 3566, 1894, 10624, 10627, 3980, 10630, 10632, 4042, 4057, 4076, 4333, 4474, 4484, 4494, 4508, 10633, 4514, - 10636, 10638, 10639, 10643, 30098, 91, 10646, 4614, 32507 - ], - [ - 0, 6653, 7320, 10655, 10650, 10648, 1623, 4964, 9204, 10657, 10656, 1745, 10052, 10667, 1936, 10661, 4374, 3430, - 5284, 10651, 10663, 4386, 10665, 10658, 10654, 10659, 91, 8295, 4270, 28842, 89, 582 - ], - "stateless", - [3, 6670, 11], - [2, 7283, 6647], - "telephone", - "some", - "efficient", - "_.extend", - "wget", - [3, 6594, 18], - "lter", - [2, 7290, 7291], - "remove", - [1, 2343, 7302], - "soft", - "Microsoft", - "styling", - "ie", - "HyBi", - "Int16Array", - "cloudwatch", - [0, 7304, 7306, 2514, 2537], - "css nesting", - [0, 10675], - "mime-db", - [ - 0, 10708, 10703, 10691, 10706, 1178, 10688, 1700, 10677, 1937, 2151, 10697, 2323, 2338, 2384, 2419, 2496, 2508, - 10686, 10678, 3159, 3493, 10683, 10681, 4431, 91, 10687 - ], - [1, 2343, 7312], - "dynamodb", - [2, 6642, 6893], - "phone", - "Int8Array", - [0, 7314, 7321, 7322, 4139], - ".prototype.flags", - [ - 0, 1091, 1758, 4449, 10739, 2070, 2278, 1149, 9892, 10761, 4747, 1177, 4039, 4135, 4072, 4734, 2026, 10752, - 10756, 1290, 1457, 1764, 2720, 1894, 4171, 1513, 10753, 10757, 1389, 10754, 2689, 3160, 3310, 53, 3429, 10760, - 104, 10759, 58, 692, 4228, 10746, 101, 10737, 4005, 4562, 5216, 10748, 87, 10738, 10755, 90, 10721, 1942, 3957, - 68, 10723, 2851, 10744, 4851, 92, 10731, 10734, 10751, 5874, 10728, 5756, 10720, 5818 - ], - [3, 7313, 11], - [2, 7315, 6913], - [2, 7084, 7316], - "access", - "ibility", - [2, 7318, 7319], - [0, 4389, 10763, 4232], - [0, 10765, 4643, 200, 5130, 6400, 10766, 5131, 10768, 5995, 8889, 10769, 10771, 5256, 10772, 7028, 5198], - [1, 2343, 7324], - [0, 0, 7325, 7326, 34352], - [0, 1177, 6059, 10777, 10779, 10780, 10783, 10785, 1613, 1615, 10786, 2151, 2735, 10788, 27921, 33050], - [0, 10791, 5130, 10792, 45, 10793], - [1, 2343, 7328], - [0, 7329, 7330, 7331, 34352], - [0, 3763, 2813, 10800, 10799, 2771], - [ - 0, 2675, 89, 4426, 1177, 4042, 1651, 2924, 1894, 10852, 3824, 4270, 91, 5087, 4874, 4880, 10846, 10858, 3889, - 10855, 10810, 192, 10837, 4883, 3885, 10805, 4057, 10808, 2686, 1959, 1879, 1938, 4073, 10848, 10854, 10828, - 10831, 972, 1895, 1947, 1955, 811, 10851, 10821, 4023, 10817, 10840, 968, 1011, 1961, 10815, 10841, 10811, 816, - 10825, 974, 10827, 4531, 5467, 1883, 10844, 1009, 6068, 10836, 5700 - ], - [0, 89, 4426, 10860, 10863, 10865, 10866, 10867, 10868, 4967], - [1, 2343, 7333], - [0, 7334, 7335, 7337, 2523], - [0, 26364, 5917, 2696, 3875, 3950, 4022], - [ - 0, 5517, 53, 5652, 603, 10874, 10875, 10876, 966, 972, 30788, 974, 10879, 10883, 7729, 10886, 4874, 10887, 4880, - 4883, 4892, 1009, 1011, 1170, 668, 10888, 1177, 1895, 1898, 1935, 1938, 1947, 1955, 1959, 1961, 2151, 2731, - 2832, 2854, 3244, 3310, 1894, 3765, 89, 3824, 4039, 4201, 4484, 4493, 4494, 91, 8550, 8552, 1984, 4747 - ], - "quote", - [0, 3875, 89, 6588, 6081, 6696, 6913, 2696, 2700, 7182], - [1, 2343, 7339], - [0, 7340, 7341, 7342, 2537], - [0, 10895, 10897, 2007, 20378, 10898, 3090, 3530], - [0, 8850, 816, 10902, 10904, 4042, 4227, 4232, 91], - [0, 4042, 1932, 3378, 5260, 10906, 3209], - [1, 2343, 7344], - [0, 7345, 7346, 7347, 2399], - [0, 10895, 5251, 1699, 10912, 814], - [0, 53, 5889, 5583, 811, 8850, 1856, 4042, 4227, 10916], - [0, 4042, 1932, 6778, 3378, 5260], - [1, 2343, 7352], - [2, 7350, 7351], - [3, 818, 9], - "gent-chat", - [0, 7354, 7355, 7356, 2537], - "microdiff", - [ - 0, 1415, 4449, 1594, 1983, 1437, 2205, 3188, 3539, 668, 2026, 10923, 2602, 4213, 1457, 10947, 10925, 10927, - 10929, 2858, 10930, 10931, 10933, 10935, 606, 10936, 10939, 10940, 1030, 10942, 608, 603, 9110 - ], - [ - 0, 10944, 3348, 89, 1177, 4039, 10946, 1984, 1894, 3824, 6520, 91, 9227, 4874, 7819, 2990, 4880, 4892, 3401, - 10949, 6494, 4883, 4131, 4315, 10951, 1959, 1895, 1947, 1955, 1011, 1961, 3708, 10960, 1009, 10964 - ], - [0, 10946, 9134, 6869, 8172, 10966, 8623, 1745], - [1, 2343, 7359], - [2, 819, 6706], - [0, 7360, 7361, 7362, 2523], - [ - 0, 10973, 10981, 10984, 2161, 7610, 7353, 3266, 188, 7349, 10990, 10992, 28910, 11005, 7358, 10975, 10995, 8079, - 29841, 10996, 10978, 7374, 10999, 11003, 28843 - ], - [ - 0, 23531, 8648, 29273, 11016, 5337, 11018, 2611, 2832, 89, 11022, 4383, 1983, 11026, 11033, 1984, 11039, 7387, - 11041, 28988 - ], - [0, 4627, 1745, 3452, 11043, 4386, 8124, 188, 8588], - [1, 2343, 7364], - [0, 7365, 7366, 7367, 2537], - [0, 11049, 7610, 10975, 8079, 7387], - [0, 11051, 6798, 6806, 2078, 1983, 1984, 4745, 818, 11039], - [0, 5592, 1745, 2078, 3452, 8124], - [1, 2343, 7369], - [0, 7370, 7371, 7372, 2537], - [0, 11064, 11065, 11066, 1699, 11071, 11073], - [ - 0, 11075, 11076, 11079, 11080, 11082, 11083, 4856, 6494, 11085, 6503, 1170, 1364, 1414, 1610, 2026, 2633, 2899, - 11086, 3750, 4261, 4474, 91 - ], - [ - 0, 13428, 1388, 11862, 11861, 11857, 8210, 11088, 8214, 27718, 8791, 181, 4967, 1098, 89, 188, 5982, 6969, 1973, - 5472 - ], - [1, 2343, 7376], - [2, 7375, 582], - [3, 11003, 12], - [0, 7377, 7378, 7379, 2399], - [0, 11064, 11065, 11066, 11093, 1699, 11073], - [0, 11075, 6503, 11096, 11105, 11109, 11111, 11112, 1170, 1414, 1610, 2899, 11086, 11113, 4261, 824], - [ - 0, 13428, 1388, 11862, 11861, 11857, 8210, 11088, 8214, 27718, 8791, 181, 4967, 5982, 6969, 1973, 5472, 824, - 11116, 11117 - ], - [1, 2343, 7381], - [0, 7382, 7383, 2514, 2537], - [0, 11124], - [0, 11126, 11130, 11133, 11134, 11138, 668, 2675, 2832, 2990, 2899, 3421, 1894], - [2, 10829, 45], - [1, 2343, 7386], - [0, 7388, 7389, 7390, 2537], - [2, 11004, 23], - [0, 89, 3824, 11143, 602, 7384, 11146, 11151], - [ - 0, 1983, 89, 4451, 3555, 29318, 3824, 16485, 91, 9311, 3975, 4880, 30157, 6271, 7610, 32415, 3120, 10895, 28829, - 3968 - ], - [0, 1739, 1745, 4270, 29043, 10824, 11156, 29045, 1783, 29181, 6718, 25172, 4627, 4963, 89, 188, 1098, 3709, 5926], - [1, 2343, 7392], - [0, 7393, 7394, 7395, 2487], - [ - 0, 11161, 11164, 5145, 11168, 97, 8597, 449, 11172, 452, 456, 11175, 11179, 11182, 11185, 11186, 11188, 1325, - 11189, 1461, 1582, 1673, 11191, 11192, 5561, 11193, 11196, 11197, 11199, 11201, 11202, 11204, 11207, 5060, - 11208, 11210, 11212, 11213, 11216, 11219, 11220, 11221, 11223, 11224, 11225, 11228, 11231, 11233, 3787, 11235, - 11236, 11238, 11240, 11242, 3788, 11244, 11246, 11249, 11251, 3789, 3810, 11253, 11257, 11261, 3906, 11264, - 4426, 4427 - ], - [ - 0, 5076, 53, 11267, 11271, 368, 7948, 11273, 11274, 10875, 11275, 10821, 10825, 10827, 10828, 11277, 11282, - 11285, 10837, 10841, 11288, 966, 968, 972, 974, 11290, 5087, 11292, 11296, 11300, 11301, 4870, 8149, 11303, - 11305, 4880, 11307, 4882, 4883, 11312, 11315, 11317, 11320, 11322, 1009, 1011, 11325, 11331, 11333, 1195, 11335, - 1437, 1448, 1610, 11336, 1789, 11343, 8161, 1177, 1879, 1895, 1915, 1924, 1938, 1939, 1947, 1948, 1959, 1961, - 10851, 1982, 2071, 11345, 2151, 2193, 2070, 2665, 2675, 2686, 2696, 2697, 2720, 2758, 1192, 11347, 2771, 2780, - 2784, 11348, 11350, 2814, 2832, 11356, 5102, 2990, 1209, 11357, 3213, 3445, 1894, 3703, 3717, 3725, 3730, 3763, - 11360, 11362, 11363, 89, 3807, 3817, 3820, 3824, 4934, 11366, 11368, 11371, 11374, 3885, 11377, 11378, 3984, - 3985, 11380, 11382, 11383, 4135, 4183, 4201, 4320, 11384, 11389, 4323, 11396, 11397, 4072, 4474, 4508, 91, - 11400, 4676, 11401, 11405 - ], - [0, 5127, 4627, 4963, 4964, 5130, 4967, 89, 5128, 181], - [1, 2343, 7397], - [0, 7398, 7399, 7400, 2537], - [0, 11413, 11416, 11417, 11420, 11421, 11422, 2161, 1209, 11428, 11434, 4443, 3348], - [0, 549, 4870, 11438, 7819, 1759, 1999, 3400, 3421, 11439, 4469, 11440, 4494, 1984, 4677, 4693], - [0, 11442, 11443, 11445, 11446, 11449, 11448, 11450, 11451, 11452, 11453, 11454], - [2, 11425, 7402], - "-fork", - [2, 12213, 7404], - [3, 12229, 13], - [1, 2343, 7407], - [2, 7408, 594], - [0, 7409, 7399, 7400, 2523], - [3, 7403, 15], - [0, 11413, 11416], - [1, 2343, 7411], - [0, 7412, 7413, 7400, 2537], - [0, 11417, 11420, 11421, 11422, 7401, 2161, 2674, 1209, 11426, 3310, 11428, 11430, 11434, 4443, 3348], - [ - 0, 11436, 4870, 4874, 11438, 7819, 1166, 1759, 3400, 1894, 11439, 4469, 4474, 11440, 4487, 4490, 91, 2924, 4677, - 4693 - ], - [1, 2343, 7415], - [0, 7416, 7417, 7418, 2487], - [0, 2203], - [0, 107, 7844, 11470, 1177, 1895, 1953, 1972, 3709, 91, 4523], - [0, 1177, 1541, 7625, 3709], - [1, 2343, 7420], - [0, 7421, 7422, 7423, 2523], - [0, 26364, 23826, 11477, 1082, 977, 11478, 11479, 2929, 3090, 11480, 11481, 5152, 4200], - [0, 13471, 8648, 840, 11485, 4874, 5162, 11486, 4042, 3709, 4359, 91, 1983, 1984], - [0, 5130, 11489, 3709, 5167, 1983], - [1, 2343, 7425], - [0, 7427, 7428, 7429, 2523], - "location", - [0, 30023, 11501, 1699, 3090, 11497], - [0, 2278, 1983, 3709, 5245], - [0, 11504, 11506, 1983, 3709], - [1, 2343, 7431], - [0, 7432, 7434, 7435, 2523], - [0, 53, 11516, 87, 90, 92, 11518, 11520, 11522], - "routing", - [0, 1195, 3150, 4027, 2924], - [0, 11525, 8221, 89, 2924, 11526], - "redirect", - [1, 2343, 7438], - [0, 7439, 7440, 7441, 2523], - [0, 11533, 11534], - [0, 11536, 28491, 1610, 91], - [0, 11538, 11539, 1172, 91, 9561, 2924, 11540], - [1, 2343, 7443], - [0, 7444, 7445, 7446, 2523], - [0, 1367, 6372], - [ - 0, 2070, 2323, 1192, 2278, 4039, 3561, 1894, 1587, 2504, 4320, 2464, 91, 4874, 1165, 2482, 3678, 4330, 11598, - 11592, 11591, 11595 - ], - [0, 4329, 4963, 5926, 11600, 11601, 6082, 8727, 181, 4967], - [1, 2343, 7448], - [0, 0, 2667, 7449, 2399], - [ - 0, 11608, 11609, 11612, 11613, 190, 11615, 11617, 4967, 91, 5284, 11619, 11622, 11624, 11626, 11627, 11630, - 11631, 11633, 11634, 11636, 11639, 11640, 32767 - ], - [1, 2343, 7451], - [0, 4424, 4429, 4442, 2537], - [1, 2343, 7453], - [0, 7454, 7455, 7456, 34352], - [0, 97, 1562, 4484], - [ - 0, 53, 83, 87, 92, 19181, 442, 8648, 5583, 811, 816, 6373, 10615, 11796, 4874, 1009, 1011, 1208, 1177, 1895, - 11935, 11938, 11940, 11943, 3401, 1894, 4042, 11802, 4172, 11803, 91 - ], - [0, 965, 1936, 11806, 11807, 5284, 11815, 8221, 91], - [1, 2343, 7458], - [0, 7459, 7460, 2514, 2537], - [0, 11821], - [0, 972, 30788, 4880, 4883, 1030, 1597, 3401, 89, 3824, 5564, 7464, 27122], - "pkgroll", - [1, 2343, 7468], - "create-vue", - [2, 7467, 7472], - [2, 7466, 7469], - "create-e", - [3, 11821, 16], - [0, 7459, 7470, 7471, 2523], - "slint-config", - [0, 3709, 4355, 5160, 1972, 11827, 1011, 27122, 840], - [0, 32401, 3766, 3709], - "persist-client-core", - [1, 2343, 7474], - [0, 7475, 7476, 7477, 2537], - [0, 11833], - [0, 11835, 5087, 1009, 11837, 1177, 1886, 11840, 1895, 1955, 1958, 1192, 2780, 2821, 1776, 3165, 4468, 4469, 91], - [0, 11842, 11843, 11846, 11847, 6875, 4967, 5576, 4978], - [1, 2343, 7479], - [0, 7480, 7481, 7482, 2523], - [0, 97, 966], - [0, 1651, 91, 11853, 3400], - [0, 5472, 1651, 181, 965, 11857, 6564, 11861, 11862], - [1, 2343, 7484], - [0, 7485, 7486, 7487, 2537], - [0, 11357, 11869, 3527, 3717, 97, 51, 11868, 11871], - [0, 2832, 91, 11853, 1393, 1423, 11875, 968, 11884, 11879], - [0, 5472, 181, 965, 2832, 2275, 11857, 6564, 11861, 11862], - [1, 2343, 7489], - [0, 7490, 7491, 7492, 2537], - [0, 11891, 11869, 11890, 3527, 63, 11871], - [0, 2832, 2022, 4042, 1984, 91, 11853, 11893, 3717, 11899, 811, 11884, 11896], - [0, 5472, 965, 1192, 2832], - [1, 2343, 7494], - [0, 7495, 7496, 7497, 2399], - [0, 1437, 11891, 2777, 3717, 11907], - [ - 0, 1192, 2675, 89, 1177, 1894, 48, 1527, 91, 53, 5087, 4880, 3720, 3857, 97, 4131, 5091, 3904, 11909, 1652, - 4889, 5085, 5103, 11912 - ], - [0, 5472, 1975, 1192, 3857], - [1, 2343, 7499], - [0, 6263, 7500, 7501, 2523], - [0, 966, 968, 4880, 4883, 1437, 11918, 2777, 11853, 3401, 89, 3824, 4039, 91], - [0, 5472, 89, 181, 965, 2832, 2275, 11857, 6564, 11861, 11862], - [1, 2343, 7503], - [0, 0, 7504, 7505, 2537], - [ - 0, 2742, 2832, 89, 2022, 668, 4474, 11944, 3824, 11890, 91, 11853, 4880, 11875, 11952, 11943, 11931, 11938, - 11929, 966, 11948, 11935, 972, 11933, 11940, 968, 5556, 11925, 6515, 1915, 11924 - ], - [0, 7214, 6627, 89, 5472], - [1, 2343, 7507], - [0, 7508, 0, 7509, 2487], - [0, 10347, 11959, 978, 989, 991, 993, 996], - [0, 11961, 38, 5995, 27, 5130, 5592], - [1, 2343, 7511], - [0, 0, 0, 7512, 34352], - [0, 11961, 10339, 10340, 5122, 5995, 977], - [1, 2343, 7514], - [0, 0, 0, 7515, 2443], - [0, 11961, 10339, 10340, 5122, 5995, 2947, 977], - [1, 2343, 7520], - "fp", - "drag", - "react ", - [0, 7533, 7536, 7537, 2537], - "animation", - [2, 7519, 7521], - "pure", - "fantasy-land", - [2, 4570, 7046], - [3, 5941, 12], - [2, 7526, 1155], - "framer", - [3, 7527, 19], - [2, 7529, 6600], - "pose", - "tacit", - [0, 11974], - "balanced", - "react pose", - [0, 1414, 4494, 2675, 91, 4874, 975, 11976, 192, 11978, 5467], - [0, 11961, 10339, 10340, 5122, 5995], - [1, 2343, 7539], - [0, 0, 0, 7540, 2487], - [0, 11961, 10339, 10340, 5122, 5995, 984], - [1, 2343, 7542], - [0, 0, 0, 7543, 34352], - [0, 11961, 10339, 10340, 5122, 5995, 986, 11988, 10345], - [1, 2343, 7545], - [0, 7546, 0, 7547, 2537], - [0, 987], - [0, 11961, 10339, 10340, 5122, 5995, 988, 2739, 11995, 11996], - [1, 2343, 7549], - [0, 7550, 0, 7551, 2487], - [0, 10347, 12003, 1001, 1003], - [0, 11961, 10339, 10340, 5122, 5995, 990, 705], - [1, 2343, 7553], - [0, 7554, 0, 7555, 2537], - [0, 11974, 3171, 12011, 978, 980, 12016, 991, 997], - [0, 11961, 10339, 10340, 5122, 5995, 10376], - [1, 2343, 7557], - [0, 7558, 0, 7559, 4139], - [0, 11959], - [0, 11961, 10339, 10340, 5122, 5995, 38], - [1, 2343, 7561], - [0, 7562, 0, 7563, 2523], - [0, 3171, 985, 12027], - [0, 11961, 10339, 10340, 5122, 5995, 10376, 710, 10384], - [1, 2343, 7565], - [0, 7566, 0, 7567, 34352], - [0, 3171, 12027], - [0, 11961, 10339, 10340, 5122, 5995, 990, 705, 1000, 5284], - [1, 2343, 7569], - [0, 0, 0, 7570, 2487], - [0, 11961, 10339, 10340, 5122, 5995, 990, 705, 1002, 3634, 3766], - [1, 2343, 7572], - [0, 0, 0, 7573, 2523], - [ - 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, - 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, - 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, - 12094 - ], - [1, 2343, 7575], - [0, 7576, 0, 7577, 34352], - [0, 12099, 12103, 12104, 12105, 4484], - [0, 12108, 7188, 5995, 11100, 6740, 5592], - [1, 2343, 7579], - [0, 7580, 7581, 7586, 2443], - [0, 2687, 5569, 12118, 1012, 12121, 12123, 12124, 5604], - [0, 1091, 3127, 1984, 1894, 12126, 9363, 4880, 3117, 12127, 4555, 8818, 7677, 3137, 12133, 5551, 12137], - [2, 7583, 7584], - [3, 439, 8], - "react/eslint-plugin", - [2, 5557, 26375], - [0, 1177, 6741, 6939, 91], - [1, 2343, 7588], - [0, 7589, 7590, 7591, 2487], - [0, 1676, 5552, 12124, 5604, 12145], - [0, 1984, 7677], - [0, 6892, 5286, 5284, 91, 57, 5341, 1177], - [1, 2343, 7593], - [0, 7596, 7590, 7599, 2523], - "point-free", - "curried", - [0, 5552, 439, 5604, 12145], - "gestures", - "3d", - [0, 1177, 91, 6742], - [1, 2343, 7601], - [0, 7602, 7622, 7626, 4139], - [ - 0, 365, 370, 12159, 1461, 12160, 12163, 1832, 12166, 12170, 2609, 1209, 12172, 3220, 3744, 12173, 11202, 12175, - 11216, 11224, 3787, 3789, 3849, 11374, 3911, 4023, 4163, 4649, 12176 - ], - [3, 346, 11], - "abs-extension", - [2, 7603, 7604], - "cssfilter", - "root-node-polyfill", - [2, 2183, 7607], - "slugger", - [2, 2287, 7609], - "deflist", - [2, 3108, 7611], - [3, 5953, 13], - "eta", - [2, 7613, 7614], - "sup", - [2, 3108, 7616], - [3, 3125, 13], - "rule-", - [2, 7619, 6706], - [2, 7618, 7620], - [ - 0, 48, 53, 61, 71, 83, 85, 87, 90, 92, 192, 5467, 968, 972, 4859, 5540, 4870, 12179, 4880, 4883, 1009, 1011, - 12182, 12184, 1170, 1178, 1193, 1195, 12186, 1210, 12191, 12193, 1527, 12195, 1628, 1652, 1843, 1845, 8160, - 1177, 1959, 1961, 2092, 2151, 2651, 2675, 1192, 12196, 11348, 12198, 2990, 3177, 3222, 3463, 1894, 3786, 89, - 3824, 3895, 3904, 4257, 4307, 4320, 4946, 12201, 12205, 12206, 91, 4537, 4027, 2924, 4676, 4677 - ], - [3, 346, 10], - [2, 7623, 5891], - [3, 1879, 13], - [0, 89, 5128, 4627, 4963, 4967, 12208], - [3, 3703, 9], - [2, 7627, 1541], - [1, 2343, 7649], - "sconfig", - [2, 7603, 7630], - "@types/css", - "ithub-slugger", - [2, 5246, 7633], - [3, 4869, 9], - "-yaml", - [2, 7635, 7636], - "arkdown-it", - [2, 6502, 7638], - "-attrs", - [2, 7639, 7640], - "anitize-html", - [2, 5051, 7642], - [2, 1368, 4406], - [2, 668, 7644], - [3, 5961, 13], - "estgen", - [2, 7646, 7647], - [0, 7652, 0, 7653, 2523], - "yandex", - "yfm", - [ - 0, 1497, 2813, 1209, 3266, 12224, 9355, 12220, 12226, 12233, 12217, 12222, 2626, 12215, 12219, 12232, 12216, - 7406, 7403 - ], - [0, 6108, 6038, 5130, 1936, 12236, 1932, 6106, 12214, 6105], - [1, 2343, 7655], - [0, 7670, 0, 7691, 2523], - "magic-", - "bytes.js", - [2, 7656, 7657], - [3, 347, 11], - [2, 7659, 614], - "discord-", - "api-types", - [2, 7661, 7662], - "@sapphire/snowflake", - [2, 7659, 6910], - [3, 7664, 10], - "async-queue", - [2, 7666, 7667], - "@vladfrangu/async_event_emitter", - [0, 1018, 1025], - "turbo", - [2, 7659, 3888], - [3, 4828, 16], - [2, 7673, 1803], - "@vite", - "st/coverage-v8", - [2, 7675, 7676], - "@favware/cliff-jumper", - "-pretty", - [2, 4525, 7679], - [2, 1876, 7680], - "extract", - "extractor", - [2, 4610, 7683], - [2, 7659, 7684], - "esbuild-", - "plugin-v", - "ersion-injector", - [2, 7687, 7688], - [2, 7686, 7689], - [0, 10039, 12244, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], - "discordapp", - "discordjs", - [1, 2343, 7695], - [0, 7696, 0, 7697, 2537], - [0, 12253], - [0, 1017, 12255, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], - [1, 2343, 7699], - [0, 7670, 0, 7700, 2537], - [0, 6847, 12260, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], - "generated", - [1, 2343, 7703], - [0, 7704, 0, 7705, 4139], - [0, 12265, 1025], - [0, 1022, 12268, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], - [3, 5923, 13], - [2, 4364, 57], - [2, 7706, 7707], - "@aws-sdk/client-s3", - [2, 7623, 5576], - [1, 2343, 7712], - [0, 0, 0, 7732, 2487], - "ranslation", - [2, 3118, 7713], - [2, 7623, 7714], - [3, 7715, 11], - "ermaid-extension", - [2, 7716, 7717], - "openapi-", - [2, 7719, 7188], - [2, 7623, 7720], - "yfm2xliff", - [2, 352, 7722], - [3, 692, 9], - [2, 7724, 364], - [3, 4869, 11], - "-safe", - [2, 2849, 7727], - [2, 7726, 7728], - "@yandex-cloud/nodejs-sdk", - "bem-cn-lite", - [0, 594, 12274, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], - "nanostores", - "threads", - [2, 7734, 4406], - [1, 2343, 7741], - [2, 4807, 1149], - [3, 4856, 10], - "lk", - [2, 7738, 7739], - [0, 7742, 7753, 7754, 2523], - [0, 3763, 1594, 2026, 1000, 1536, 12286, 12285, 12287, 12284, 1032], - "tml-escaper", - [2, 6495, 7743], - "ime-types", - [2, 6502, 7745], - [3, 5055, 9], - "elljs", - [2, 7747, 7748], - "@types/t", - "ar-stream", - [2, 7750, 7751], - [0, 1192, 4135, 4468, 4342, 1193, 91, 53, 9227, 5087, 4874, 12292, 11976, 6494, 12290, 9240, 7806, 7708], - [0, 12294, 4967, 970, 12295, 12296, 5983, 6802], - [2, 12302, 26070], - [1, 2343, 7757], - [0, 7764, 7765, 7766, 2537], - [3, 7639, 15], - [2, 7758, 671], - [3, 7730, 14], - [2, 7760, 7625], - [2, 7760, 7628], - [2, 7760, 2190], - [0, 34690, 12301, 7733, 28314, 7755, 12305, 12307, 28554], - [ - 0, 4481, 4494, 4493, 1983, 2675, 1177, 4039, 12309, 1984, 668, 3561, 23535, 4320, 3350, 3541, 28464, 4201, 4360, - 91, 4874, 2990, 3400, 4880, 29000, 29038, 11976, 30684, 17214, 4328, 33264, 33385, 34203, 4523, 34205, 7677, - 33382, 5517, 5530, 34207, 4323, 12312, 32818, 5535, 12315, 30630, 11396 - ], - [ - 0, 11608, 12318, 12319, 12322, 12324, 12326, 12328, 12329, 12331, 11612, 12334, 12336, 11010, 12337, 12338, 190, - 12339, 4967, 91, 12342, 12346, 12348, 12349, 12350, 11619, 11622, 11624, 12354, 12355, 11640 - ], - [1, 2343, 7768], - [0, 7769, 7770, 7771, 2523], - [0, 1593, 4376, 53, 1393, 3090, 87, 3957, 12361, 5658, 5660, 5778, 5810], - [0, 20378, 1983, 1082, 1531, 3527], - [0, 4967, 1983, 11504, 1028], - [1, 2343, 7773], - [0, 7774, 7775, 7776, 2487], - [0, 53, 12370, 12372, 28465, 10879, 3878], - [0, 30521, 89, 3824, 28865, 1531], - [0, 1172, 27158, 89, 3878, 1983, 11504], - [1, 2343, 7778], - [0, 7779, 7780, 7781, 2523], - [0, 1012, 2071, 4523, 4630], - [0, 5536, 4874, 1177, 1988, 2020, 7461, 1894, 4494, 91, 1984, 188], - [0, 188, 7463, 7465, 1177, 91], - [1, 2343, 7783], - [0, 7784, 7785, 7786, 2399], - [0, 1091, 1092, 12384, 2657, 12385, 3509, 38, 4151, 7707, 5971, 4745], - [0, 2026, 2899, 4255, 4342], - [0, 2026, 3452, 8124, 1745], - [3, 980, 17], - [2, 7787, 57], - "encrypt", - "encrypter", - [2, 1576, 7790], - [2, 3115, 1623], - [2, 2287, 7792], - "greenlock-express", - "memoryst", - [2, 7795, 147], - "minisearch", - "selfsigned", - "sitemap", - "sql.js", - "workerpool", - [1, 2343, 7825], - "ody-parser", - [2, 4853, 7803], - "mpression", - [2, 4860, 7805], - "-session", - [2, 6494, 7807], - "ormidable", - [2, 5537, 7809], - "mpts", - [2, 6508, 7811], - [3, 7643, 9], - [2, 7813, 367], - "ql.js", - [2, 5051, 7815], - "@types/u", - "uid", - "@types/uuid", - "@types/w", - "orkerpool", - [2, 7820, 7821], - "wasm", - [2, 7686, 7823], - [0, 7829, 7830, 7831, 2523], - "razor", - "sqlite", - "aspx", - [ - 0, 12393, 12394, 11275, 842, 12396, 9363, 12397, 12399, 12400, 12403, 1461, 12405, 12406, 1582, 1699, 12409, - 1835, 12412, 12415, 12419, 7610, 12421, 2572, 2579, 2584, 12422, 2613, 2646, 12424, 2822, 3070, 12427, 12429, - 3412, 3547, 9054, 12431, 3725, 3786, 11219, 11240, 3788, 11244, 3789, 3810, 5564, 3846, 12435, 12438, 3963, - 12441, 3978, 12443, 9340, 3988, 3992, 3999, 2278, 7799, 12444, 12445, 4549, 4555, 12447, 1002, 12448, 12449, - 12452 - ], - [ - 0, 192, 5467, 7634, 12455, 12458, 7637, 12459, 4874, 12461, 8149, 4880, 4882, 4883, 12462, 12463, 12467, 1177, - 10321, 2071, 2079, 12471, 12472, 2675, 2990, 1894, 3706, 3708, 89, 3824, 4320, 4474, 91, 1984, 12473, 12475 - ], - [0, 1179, 12445, 2924, 89, 12478, 12479, 1783, 4963, 1745], - [1, 2343, 7835], - "@dnd-kit/core", - [3, 7833, 9], - [0, 0, 7841, 7843, 2537], - "modifiers", - [2, 7834, 7836], - "sortable", - [2, 7834, 7838], - [2, 7834, 6731], - [0, 4874, 1009, 1011, 1177, 1881, 1938, 4039, 4042, 4076, 91], - "ui-components", - [0, 5995, 12586, 12588, 12589, 12590, 12592, 12593], - "@stylistic/eslint-plugin-js", - [3, 7844, 11], - [2, 4324, 1932], - [2, 7845, 7846], - [1, 2343, 7852], - "@wordpress/api-fetch", - [3, 7849, 11], - "block-", - [0, 7853, 7859, 7860, 2537], - [0, 12600], - "ion-", - [2, 7854, 1464], - [2, 7682, 7855], - [2, 5313, 7856], - [2, 7850, 7857], - [ - 0, 53, 5241, 87, 94, 12602, 12604, 6503, 4874, 1145, 1503, 12607, 1177, 2297, 2881, 2886, 2895, 12609, 2897, - 2900, 2910, 2899, 3400, 3421, 3456, 4039, 4042, 4045, 12611, 4055, 4067, 4071, 4075, 12613, 4474, 12614, 91 - ], - [0, 12616, 7102, 2013, 2018, 12617, 12618, 12621, 12622, 12620, 6553, 1858], - [1, 2343, 7864], - [2, 7153, 694], - [2, 5335, 7862], - [0, 7865, 7866, 7867, 2523], - [0, 3173, 12627], - [0, 3421, 2899, 1177, 1693, 1954, 1938, 1958, 1903, 1948, 1970], - [0, 1563, 12631, 8316, 1080], - "promis", - "ify-", - [3, 1455, 13], - [2, 7869, 7870], - [2, 7868, 7871], - "swc-loader", - [1, 2343, 7875], - [0, 7876, 7878, 7879, 2523], - [0, 1149, 1362, 1209, 3230, 1552], - "ol", - [0, 2899, 1429], - [0, 2663, 1081, 5122], - "mixin", - "WordPress", - [1, 2343, 7883], - [0, 7884, 0, 2514, 2399], - [0, 1082], - [1, 2343, 7886], - [0, 7896, 7898, 7899, 4139], - [3, 4872, 15], - "amelcase", - [2, 7887, 7888], - [3, 7746, 9], - "nimist", - [2, 7890, 7891], - [3, 5090, 9], - "etty-ms", - [2, 7893, 7894], - [0, 1170, 1437, 1525, 2088, 2151, 2720, 3467, 7956, 4183], - ".d.ts", - [0, 811, 8850, 816, 10615, 12654, 4864, 12656, 4866, 4874, 4039, 4042, 8849, 11054, 4076, 12206, 4484, 4487, 91], - [0, 200, 1085, 188, 89, 12659, 12660, 91, 6710], - "definitions", - [1, 2343, 7902], - [0, 0, 7903, 7904, 2537], - [0, 1429, 2685, 2899, 1894, 4039], - [0, 2056, 3164, 12666, 4560], - [2, 363, 3428], - "memoize", - [2, 363, 7906], - [3, 370, 10], - "erialize", - [2, 7908, 7909], - [3, 1212, 14], - "acros", - [2, 7911, 7912], - "root", - "find-root", - [1, 2343, 7918], - "stylis", - [0, 0, 7923, 7924, 2523], - [3, 5272, 14], - "d-nodes", - [2, 7919, 7920], - [2, 1174, 7921], - [0, 2899], - [0, 12674, 1087, 2124, 12619, 12675], - [1, 2343, 7926], - [0, 7927, 7928, 7929, 4139], - [0, 12680, 12681, 1676, 12685, 5303], - [0, 5245, 12688, 6501, 4874, 7677, 4193, 4474, 4494, 1984], - [0, 12692, 12693, 1605, 12694, 4116, 8791], - [1, 2343, 7934], - [2, 366, 6990], - [2, 7908, 5375], - [2, 363, 594], - [0, 7936, 7938, 7939, 2487], - "@definitelytyped/dtslint", - [ - 0, 43, 46, 1093, 1116, 1132, 1140, 1298, 1316, 1318, 1321, 1322, 1336, 1339, 1342, 12701, 1344, 1346, 1348, - 1350, 1352, 12703, 1354, 1356, 1358, 12704, 1376, 1386, 1402, 1425, 1428, 12705, 1440, 1450, 12708, 12709, - 12710, 12711, 12714, 1663, 1706, 1711, 1715, 2019, 12715, 12719, 2058, 2059, 2177, 2217, 12720, 2563, 2567, - 2605, 2606, 12722, 2723, 2950, 2954, 2957, 12726, 2962, 3086, 3099, 12730, 3134, 12733, 3186, 3240, 3245, 3262, - 3295, 3439, 12736, 3443, 3472, 3535, 3558, 12737, 3777, 3931, 12740, 4105, 4124, 12743, 12747, 4168, 4173, 4177, - 4192, 4206, 4235, 12749, 4236, 4258, 12750, 4267, 4338, 12755, 4347, 4352, 4370, 4433, 4456, 4461, 12756, 12757, - 12760, 4548, 12763, 12764, 4724 - ], - "import-cwd", - [0, 4880, 4883, 2079, 89, 3824, 91], - [0, 4627, 4963, 4964, 5130, 4967, 89, 5128, 181, 4653], - "is-pro", - "p-valid", - [2, 7940, 7941], - [2, 363, 7942], - [3, 7933, 10], - "se-insertion-effect-with-fallbacks", - [2, 7944, 7945], - [1, 2343, 7949], - [2, 363, 89], - [0, 7950, 7951, 7952, 2537], - [ - 0, 12771, 12773, 12775, 1389, 12776, 1536, 1676, 12777, 12779, 2026, 12783, 12785, 2659, 12788, 2822, 12789, - 12792, 12793, 3183, 12795, 12799, 12802, 3923, 12809, 4153, 4165, 12812, 12814, 12818, 3348, 4650 - ], - [0, 12820, 1610, 2554, 3421, 12823, 4255, 4389, 4400], - [0, 1090, 1388, 12826, 4384, 4389, 5472], - [1, 2343, 7954], - [0, 7955, 7958, 7959, 2523], - [0, 2069, 12832, 12834, 12837], - [2, 17912, 7957], - "estimator", - [ - 0, 12839, 811, 8850, 816, 10817, 4856, 6503, 4874, 12842, 1009, 1011, 1092, 1389, 1429, 1610, 1673, 12846, 1177, - 1895, 2070, 2675, 12847, 2806, 2820, 12848, 2297, 2881, 2900, 2990, 2899, 12849, 3310, 3421, 1894, 12850, 4042, - 4073, 4474, 12851, 91, 12852 - ], - [0, 6671, 2844, 1155, 7020, 2860, 2845, 7527, 7530], - [1, 2343, 7961], - [0, 7962, 7963, 7964, 2537], - [0, 1091], - [0, 12839, 5087, 4874, 1009, 1011, 1091, 1177, 1895, 2675, 1192, 12848, 2990, 1894, 4468, 91], - [0, 12860, 6975, 1671, 7020], - [1, 2343, 7966], - [0, 7967, 7938, 7939, 2399], - [0, 43, 46, 1450, 3777, 4548], - [1, 2343, 7969], - [0, 6203, 7970, 7971, 2487], - [0, 3460, 12870], - [0, 1094], - [1, 2343, 7973], - [0, 7974, 7975, 7976, 2537], - [0, 12879, 4567], - [0, 12882, 2899, 3421, 4535], - [0, 12884, 12886, 12887], - [1, 2343, 7978], - [0, 0, 7979, 7980, 2487], - [0, 2278], - [0, 1623, 2278, 181, 6398, 6400, 2869, 12893], - [1, 2343, 7982], - [0, 0, 0, 7983, 2523], - [0, 1098, 5130, 1388, 12899], - [1, 2343, 7985], - [0, 0, 0, 7986, 2523], - [0, 1098, 5130, 1388, 7521, 12899], - [1, 2343, 7988], - [0, 7989, 0, 7990, 2523], - [ - 0, 12910, 12914, 19, 21, 24, 12915, 12917, 1149, 1165, 1437, 1532, 1628, 1637, 1676, 12918, 1687, 12923, 12925, - 12926, 2054, 2092, 7076, 2151, 12929, 2070, 2651, 2712, 2720, 12930, 2843, 2921, 2925, 695, 2969, 1209, 3181, - 12935, 3342, 3368, 3459, 3467, 3560, 3618, 3786, 3981, 814, 4039, 4085, 4111, 12936, 4135, 12937, 4230, 12944, - 4307, 4333, 4334, 1241, 4430, 91, 4027, 4648, 2924, 4681, 4689, 4695, 4769 - ], - [0, 1098, 1102], - [1, 2343, 7993], - [2, 27465, 3469], - [0, 0, 0, 7994, 2537], - [0, 12074, 29, 1388, 12899, 5027, 12951, 4963], - "blurup", - [1, 2343, 34387], - [0, 6323, 2398, 12956, 2899, 4425], - [ - 0, 7244, 1111, 12958, 12959, 12961, 12963, 12964, 12965, 12966, 12967, 12968, 12969, 12970, 12971, 12972, 12973, - 12974, 12975, 12976, 4984, 12977, 200, 12978, 1473, 1512, 7208, 9753, 6876, 7201, 12979, 12980, 6983, 12981, - 12982, 12983, 12984, 12986, 12987, 2929, 3073, 6807, 12990, 12991, 10958, 6616, 4166, 12992, 12994, 1871, 590, - 592, 7009, 2585, 6621, 12996, 12997, 4744, 12998 - ], - [1, 2343, 8000], - [0, 8001, 8002, 8003, 2487], - [0, 6639], - [0, 4874, 1166, 4481, 1906], - [ - 0, 1111, 7009, 7201, 200, 1871, 6621, 1867, 1106, 6983, 4166, 4744, 3073, 6807, 6876, 2585, 13005, 6769, 12619, - 1501, 5281, 13006, 8628, 13007, 1468, 13008, 13009, 13011 - ], - [1, 2343, 8005], - [0, 0, 8006, 8007, 2399], - [0, 1906, 1166, 4481, 1107], - [ - 0, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 1871, 6621, 1867, 6983, 6616, 7244, 4166, 4744, 6876, 2585, - 1108, 6961, 23, 3529, 1973, 2100, 13017 - ], - [1, 2343, 8009], - [0, 0, 8010, 8011, 2523], - [0, 1906, 1166, 4481, 13024], - [ - 0, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 1871, 6621, 1867, 6983, 6616, 7244, 4166, 4744, 3073, 6807, - 6876, 2585 - ], - [1, 2343, 8013], - [0, 0, 0, 8014, 2487], - [0, 1111, 1512, 200], - [1, 2343, 8016], - [0, 8017, 8018, 8019, 2443], - [ - 0, 11161, 13035, 97, 8597, 7905, 13037, 13038, 13042, 1156, 1639, 1673, 13045, 13047, 1209, 3021, 4023, 11264, - 1849, 7917, 4427, 13049, 4649 - ], - [ - 0, 48, 53, 61, 73, 76, 78, 13051, 81, 5806, 13052, 5835, 83, 5853, 5889, 85, 87, 92, 192, 5467, 692, 5583, 7806, - 4864, 5087, 13055, 5139, 13057, 7639, 4874, 13059, 1009, 1011, 1028, 11016, 13061, 13063, 13067, 13069, 1031, - 11018, 13072, 10984, 13077, 1082, 13078, 1165, 1170, 1178, 1193, 1195, 1205, 13080, 1208, 13085, 1426, 1437, - 1448, 1503, 12405, 13086, 1525, 13088, 1610, 1628, 1630, 13089, 1668, 13090, 13092, 11343, 13093, 668, 8161, - 1869, 1177, 1895, 1937, 1938, 1939, 1948, 13097, 1955, 1988, 2071, 11345, 2151, 2070, 2205, 2226, 2323, 2338, - 13099, 2529, 2651, 2675, 13101, 13103, 1192, 2780, 2784, 13105, 13108, 2817, 13110, 4868, 695, 2969, 13115, - 13118, 2990, 13119, 3105, 3107, 3112, 3114, 13122, 3127, 13123, 3177, 3183, 3188, 3213, 3220, 3412, 3561, 3618, - 1894, 3720, 3725, 3730, 3786, 9340, 3992, 13124, 13127, 8304, 13128, 4039, 13129, 13131, 4135, 4207, 13134, - 4307, 4320, 11384, 11389, 4323, 11396, 4328, 4409, 4431, 4443, 4468, 4469, 4494, 4508, 91, 13135, 4549, 4027, - 11400, 1983, 188, 13138, 13142, 4630, 4633, 13145, 4634, 13149, 4639, 4640, 13151, 4646, 2924, 4676, 4677, 4681, - 4689, 13152, 11401 - ], - [0, 188, 8588, 5127, 4964, 1114, 13154, 4627, 4963, 181, 5130, 4967], - [1, 2343, 8021], - [0, 8022, 8023, 7395, 2537], - [ - 0, 1497, 1673, 97, 5145, 4427, 11161, 7992, 27467, 33386, 33387, 11185, 33389, 33393, 11164, 33396, 33397, - 33399, 33401, 33403, 33404, 33406, 33417, 13166, 33418, 33422, 33423, 33424, 33426, 13169, 8048, 33428, 33430, - 33431, 33433, 33436, 33441, 33443, 11168, 33444, 33447, 13159, 33449, 13162, 33450, 33451, 11264, 13165, 33452 - ], - [ - 0, 1091, 3467, 26713, 4390, 4494, 1789, 2070, 1192, 3445, 1170, 1437, 11336, 2675, 2696, 2742, 2832, 13233, - 3549, 89, 4164, 1759, 1177, 2079, 2814, 1209, 3984, 4039, 13241, 4135, 1086, 13078, 25131, 3725, 4508, 2924, - 1634, 2151, 2193, 11347, 3183, 3213, 1894, 13243, 11401, 1610, 16473, 2071, 5102, 11357, 3758, 11360, 3824, - 13214, 13215, 3310, 3560, 3985, 3988, 4183, 4201, 91, 5087, 4874, 12424, 2665, 2990, 3839, 11380, 368, 13204, - 13210, 4880, 13223, 33230, 11362, 13245, 33461, 7833, 692, 11301, 4870, 5254, 11325, 3330, 3717, 13235, 3999, - 11976, 7948, 27424, 13194, 13196, 11290, 8149, 11322, 7610, 11350, 27047, 11273, 11275, 16934, 4864, 11292, - 7892, 6510, 13213, 4934, 10875, 13205, 4883, 2758, 2771, 13232, 3885, 11377, 3978, 5076, 33233, 7839, 8998, - 29467, 7837, 7840, 643, 13200, 1939, 2686, 11366, 11400, 13198, 2584, 11348, 25366, 966, 11331, 1924, 2784, - 11368, 13175, 972, 1947, 2780, 13182, 13203, 13228, 11356, 4676, 11320, 3749, 13192, 968, 1961, 33635, 11300, - 13221, 13187, 7582, 974, 7585, 13178, 11312, 26969, 11382, 11371, 11296, 13188, 11274, 13240, 13189 - ], - [1, 2343, 8025], - [0, 8026, 0, 2514, 2523], - [0, 3445], - [1, 2343, 8028], - [0, 8029, 7938, 7939, 2537], - [ - 0, 43, 46, 1093, 1132, 1140, 1298, 1316, 1318, 1321, 1322, 1336, 1339, 1342, 1344, 1346, 1348, 1350, 12704, - 1376, 1386, 1425, 1428, 1440, 1450, 12709, 12714, 1663, 1706, 1711, 1715, 2019, 12719, 2177, 2217, 12720, 2563, - 2567, 2606, 12722, 2950, 2954, 2957, 2962, 3086, 3099, 3134, 3186, 3240, 3245, 3262, 3295, 3439, 12736, 3443, - 3472, 3535, 3558, 12737, 3777, 4124, 12747, 4173, 4177, 4192, 4206, 4235, 12749, 4236, 4258, 4267, 4338, 12755, - 4347, 4352, 4370, 4433, 4456, 4461, 12756, 12757, 12760, 4548, 12763, 12764 - ], - [1, 2343, 8031], - [0, 8032, 8033, 8034, 34352], - [0, 5381, 5383, 5446, 5394, 5408, 13261, 13262, 5458, 5461, 32772, 13264, 13267, 13272, 2993, 5438], - [ - 0, 5400, 5402, 5405, 13276, 5453, 5456, 192, 5467, 13280, 5470, 5473, 13282, 5474, 5476, 5478, 13286, 13287, - 1364, 1699, 1177, 1895, 1999, 2026, 2151, 2675, 2822, 2990, 3246, 3300, 3561, 4039, 4042, 13289, 10854, 4193, - 4449, 91, 5480, 4535, 13291, 3348 - ], - [0, 5926, 13293, 5592, 1117, 1745, 13294, 3422], - [1, 2343, 8036], - [0, 8037, 8038, 8039, 2537], - [ - 0, 1367, 1525, 13302, 8161, 13304, 2151, 2070, 2036, 2685, 2814, 13305, 1209, 3105, 3363, 3725, 4135, 4307, - 2924, 4677, 4709 - ], - [0, 4870, 6503, 4874, 1177, 13311, 1903, 1938, 1954, 1958, 2899], - [0, 5592, 1118, 2295, 1745, 4030, 7096], - [1, 2343, 8041], - [0, 8042, 8043, 8044, 2537], - [0, 13319, 1797, 4135, 4562, 4747], - [0, 9741, 4874, 5254, 4892, 1166, 2151, 91], - [0, 1118, 1783, 13322, 5592, 2295, 1745, 1179, 13325, 200, 13326, 6876, 4030, 7096, 13327, 13328], - [1, 2343, 8046], - [0, 8047, 8049, 8050, 2523], - [0, 1676, 13333, 3313, 2863, 4593], - [2, 41, 27443], - [0, 1429, 1431, 2899, 4193, 4196], - [0, 13336, 6645, 13338, 13339, 13340, 586], - [1, 2343, 8052], - [0, 8053, 0, 2514, 2537], - [0, 13345, 13346, 5506, 5514, 4484], - [1, 2343, 8055], - [0, 8056, 0, 8057, 4139], - [0, 13352, 13345, 1127, 13346, 5513, 5514, 4484, 13351], - [0, 5286, 6778, 13354, 5284, 13356, 3378, 89], - [1, 2343, 8059], - [0, 8060, 8061, 2514, 2487], - [0, 13346, 5514, 4484, 5515], - [0, 13364, 5087, 4874, 2220, 2222, 1192, 4039, 4042, 4468, 4487, 91], - [1, 2343, 8063], - [0, 8064, 8065, 2514, 2487], - [0, 1127, 13370, 4484], - [0, 13364, 5087, 13372, 2086, 2220, 2222, 1192, 13374, 4039, 4042, 4468, 4487, 91], - [1, 2343, 8067], - [0, 0, 8068, 8069, 2523], - [0, 1503, 1596, 13379, 1652, 2194, 2759, 2899, 3202, 3215, 3421, 4131, 4585], - [0, 7914, 3403, 6435, 614, 202, 1237, 5260, 13382, 3209, 1896], - [1, 2343, 8071], - [0, 8072, 8073, 8074, 2537], - [0, 13387, 13388, 13390, 13394, 13395, 1170, 1362, 13396, 1209, 3084, 3220, 3222, 13399, 4135, 13400, 4729], - [ - 0, 13406, 13411, 13412, 6061, 6063, 13414, 4870, 6503, 4874, 13417, 5254, 9241, 10780, 1429, 1431, 1570, 2899, - 1894, 4131, 4193, 4474, 91, 4739 - ], - [0, 13426, 12296, 5472, 13428, 5131, 13429], - [1, 2343, 8076], - [0, 8077, 8078, 8080, 2399], - [ - 0, 13446, 13437, 13512, 13471, 13508, 13476, 9637, 13474, 13497, 13495, 13500, 13454, 13502, 13504, 13510, - 13493, 13507, 13456, 13479, 13488, 13484, 30243, 13467 - ], - [0, 3421, 3297, 2899, 4193, 1177, 1894, 91, 13514, 4874, 6503, 6513, 5254, 1954, 1011, 13518, 1009], - [2, 8182, 553], - [0, 13524, 13525, 13526, 13529, 13530, 13531, 6599, 13532, 13535, 13538, 13539], - [1, 2343, 8082], - [0, 8083, 8084, 8085, 2523], - [0, 13547, 13551, 13554, 13558, 13559, 13560], - [ - 0, 13564, 5087, 4874, 1009, 1011, 13566, 1177, 1895, 1915, 1938, 1955, 2220, 1192, 1894, 13568, 3706, 13569, - 4257, 4468, 4474, 91 - ], - [0, 13571, 7200, 5995, 13572, 2220, 13573, 6710, 91, 13574], - [1, 2343, 8087], - [0, 8088, 8089, 8090, 2537], - [0, 13579, 1149, 13581, 3923, 13583, 4393, 13584], - [0, 13590, 1429, 1776, 3188, 2899, 4039, 13591, 4390, 4753], - [0, 12666, 1137, 3101, 2056, 4390], - [1, 2343, 8092], - [0, 0, 8093, 2514, 4139], - [0, 1429, 1192, 1894], - [3, 439, 25], - "mysticatea", - [2, 1186, 8095], - [2, 8094, 8096], - "dot-prop", - "warun", - [1, 2343, 8101], - [0, 0, 8102, 8103, 2399], - [0, 68, 5704, 1177, 2899, 3421], - [0, 200, 57, 1139, 5675, 7058], - [1, 2343, 8105], - [0, 7967, 7938, 7939, 2487], - [1, 2343, 8107], - [0, 8108, 8120, 8121, 2487], - [0, 1417, 13609, 6830, 13611], - "ly-openapi-core", - [2, 443, 8109], - "decko", - "pointer", - [2, 2842, 8112], - "mark.js", - "sampler", - [2, 7719, 8115], - "perfe", - "ct-scrollbar", - [2, 8117, 8118], - [0, 13613, 13614, 1159, 9254, 1177, 2011, 2133, 13619, 2708, 3410, 3421, 3431, 4103, 4389], - [0, 6583, 6727, 4552, 6759, 1858, 6422, 3033, 7039, 6763], - "react-tabs", - "stickyfill", - "swagger", - "2openapi", - [2, 8124, 8125], - [2, 4564, 1283], - [1, 2343, 8133], - "@cypress/webpack-preprocessor", - "@hot-loader/react-dom", - [3, 5535, 19], - [2, 8131, 1896], - [0, 0, 8134, 8142, 2487], - [0, 1166, 4481, 1906], - "ompurify", - [2, 6491, 8135], - "-to-", - "-to-json", - [2, 4863, 8138], - [3, 7729, 12], - [2, 8140, 8112], - [0, 4552, 1144, 13625, 6270, 6692, 13626], - [1, 2343, 8164], - "@types/lunr", - [3, 7639, 11], - [2, 8145, 1722], - [2, 8145, 1360], - "ismjs", - [2, 7893, 8148], - [3, 4890, 12], - "d-components", - [2, 8150, 8151], - [3, 7752, 9], - "pable", - [2, 8153, 8154], - "-env", - [2, 4891, 8156], - "@wojtekmaj/enzyme-adapter-react-17", - "to-json", - [2, 1848, 8159], - [2, 7686, 1194], - "-checker", - [2, 4059, 8162], - [0, 8167, 8176, 8177, 2523], - "lodash.noop", - "unfetch", - [0, 614, 13633, 1417, 13635, 3435], - "OpenAPI", - " Specification", - [2, 8168, 8169], - "Swagger", - "API", - "REST", - "React", - "React.js", - [0, 4389, 1090, 1593, 1610, 48, 13638, 53, 3438, 87, 5619], - [0, 1145, 1388], - [1, 2343, 8179], - [0, 0, 8188, 2514, 2537], - [3, 444, 13], - [2, 8180, 965], - [3, 10975, 16], - "use-", - [3, 2758, 11], - "layout-effect", - [2, 8184, 8185], - [2, 8183, 8186], - [0, 4389, 2080], - "tip", - "tooltip", - "popover", - "popup", - "position", - "positioning", - [1, 2343, 8196], - [0, 8197, 8198, 8200, 2537], - [0, 1690, 13648, 13651, 3431, 13652, 13653], - [0, 1389, 2759, 2899, 3697], - "fontsource", - [0, 1145, 6468, 6637, 1148, 5982, 2022, 2025, 4170, 13656, 4386, 6969, 1973, 5472, 6533, 13657, 2275], - "font family", - " fonts", - [2, 1885, 8202], - "Inter", - "face", - "typeface", - [1, 2343, 8208], - [0, 0, 8209, 8212, 2537], - [ - 0, 3421, 1429, 4085, 1776, 2297, 2899, 4747, 1177, 4042, 4135, 1448, 1290, 1362, 2151, 1317, 1389, 53, 1863, - 2900, 13662, 1280, 2871, 13674, 1267, 13665, 13672, 68, 2904, 1208, 2912, 2895, 13668, 4067, 1198, 13663, 1240 - ], - "serenity", - "Roboto", - [0, 1149, 7241, 1237, 6435], - [1, 2343, 8215], - "screenplay", - [0, 0, 8219, 8222, 34352], - "common-t", - [2, 8216, 103], - [2, 6057, 8217], - [0, 4874, 13680, 4384, 4474, 91], - "fontawesome", - "svg", - [0, 1149, 7003, 5194, 27, 13682, 11995, 1862, 36], - [1, 2343, 8224], - [0, 8225, 8226, 2514, 2537], - [0, 1153], - [0, 1166, 1177, 1894, 3310, 3697, 13688, 2990, 1959, 1879, 1938, 1895, 1947], - [1, 2343, 8228], - [0, 0, 8230, 8233, 2537], - [2, 79, 1202], - [0, 53, 13693, 87, 92, 13694, 5087, 1193, 1596, 1192, 2990, 3377, 13695, 13698, 3697, 1894, 4474, 91], - "stage-3", - [2, 88, 8231], - [0, 1155, 2649, 1149], - [1, 2343, 8235], - [0, 0, 0, 8236, 2523], - [0, 1157, 1388], - [1, 2343, 8238], - [0, 8239, 8240, 8241, 2487], - [0, 4449, 1512, 13709, 4135, 13711, 13712, 13713], - [0, 3421, 4389, 1177, 3410, 1159, 4103, 13614], - [0, 13716, 6698, 6950, 3378, 13716], - [1, 2343, 8246], - [3, 361, 10], - "rebuild", - [2, 8243, 8244], - [0, 8247, 8249, 8257, 2487], - [0, 1525, 2036, 7937, 3310, 13723, 4135], - "node-abi", - [0, 53, 94, 1208, 13725, 1429, 1503, 1610, 3125, 2899, 3421, 4216, 4255], - [3, 361, 9], - "-forge/cli", - [2, 8250, 8251], - "devtools", - "-installer", - [2, 8253, 8254], - [2, 1807, 8255], - [0, 1163, 13728, 13729, 1444, 3073, 1179, 3358, 1528, 13730, 2602], - [1, 2343, 8259], - [0, 8260, 8261, 8265, 2523], - [0, 1457, 1512, 13736, 13738, 2070, 10911, 3074, 3467, 9478, 705, 13739, 4747], - [0, 1173, 1267, 1429, 1177, 1879, 1938, 1947, 1959, 2899], - [2, 4364, 4622], - [2, 458, 8262], - [2, 7726, 2862], - [0, 1163, 4796, 1161, 3383, 2282], - [1, 2343, 8267], - [0, 8268, 0, 8269, 2399], - [0, 1393, 1423, 13746, 3527, 3688], - [0, 1165, 1623, 3665, 3561, 6425], - [1, 2343, 8274], - [2, 466, 2220], - [2, 466, 2942], - [2, 466, 594], - [0, 8276, 8279, 8280, 4139], - [2, 466, 553], - [ - 0, 13753, 1082, 1084, 1110, 13754, 1144, 13757, 13758, 1437, 13759, 1458, 13760, 1486, 13763, 13765, 13767, - 13770, 1676, 13772, 2089, 2205, 13775, 2709, 2747, 2752, 13777, 7906, 3242, 3478, 13778, 3530, 3545, 3718, - 13780, 13781, 13784, 13786, 4728, 4747 - ], - [2, 5559, 2844], - [2, 5559, 1783], - [0, 11436, 13789, 4874, 1107, 1414, 2020, 2022, 4193, 4384, 4400, 4481, 91, 1906, 13351], - [ - 0, 13791, 1973, 8791, 5472, 1166, 13792, 12804, 2062, 6969, 13326, 200, 1192, 2899, 4389, 4384, 2907, 2765, - 1145, 6468, 1862, 6567, 1149, 3046, 7003, 1179, 5701, 13793, 13795, 13796, 2275, 8745, 2022, 91 - ], - [1, 2343, 8282], - [0, 8283, 8287, 8288, 2537], - [0, 1437, 1835, 3008, 1209, 3170, 3188, 4232, 13802], - "/types", - [2, 3940, 8284], - [2, 6369, 8285], - [ - 0, 4856, 4870, 8778, 6503, 4874, 7749, 6513, 4891, 1362, 1429, 13804, 2151, 2675, 2990, 2899, 1894, 13805, 4039, - 4167, 4257, 1241, 4487, 91, 2924, 4677 - ], - [0, 2924, 1194, 11526, 91], - [1, 2343, 8290], - [0, 8291, 8305, 8307, 2523], - [0, 4113, 1002, 614, 3348, 1398, 2018, 4734, 13811, 13812, 3767], - "@tailwindcss/aspect-ratio", - [3, 8292, 13], - [2, 8293, 25], - "typography", - [2, 8293, 8295], - "basename", - "manage", - "r-webpack-plugin", - [2, 8298, 8299], - [2, 2090, 8300], - "remove-", - [2, 1586, 4408], - [2, 8302, 8303], - [ - 0, 1429, 2297, 2899, 1177, 1503, 2765, 2924, 1649, 4535, 1389, 91, 4874, 2843, 1509, 2766, 2898, 13817, 13818, - 2881 - ], - "sass-lint", - [ - 0, 5592, 6997, 7200, 6850, 6779, 6949, 6930, 6810, 6808, 6979, 6871, 6991, 6835, 7024, 6602, 7301, 7308, 6619, - 7016, 6665, 6572, 6629, 7055, 6709, 7254, 6814, 6832, 6976, 6740, 7101, 6963, 6933, 7215, 7175, 6817 - ], - [3, 6566, 9], - [2, 8308, 3855], - "boilerplate", - [1, 2343, 8312], - [0, 0, 8313, 8314, 2537], - [ - 0, 1429, 2070, 1437, 1496, 2020, 2228, 2675, 1776, 2832, 2297, 2899, 4193, 1177, 2814, 1593, 668, 2203, 3471, - 2720, 13824, 1894, 4535, 13825, 11869, 13827, 2878, 7231, 91, 53, 4874, 13829, 1863, 13831, 2665, 2900, 2918, - 2990, 3400, 13832, 13833, 2626, 3330, 5561, 13834, 13836, 4257, 13837, 87, 13838, 2897, 4130, 13839, 2247, 2283, - 2923, 2253, 2281, 13842, 2881, 4261, 5663, 1895, 2895, 13848, 13850, 78 - ], - [0, 13852, 6653, 5472, 2275, 6969, 5982, 11346], - "@hapi/", - "accept", - [2, 8315, 8316], - [1, 2343, 8319], - [0, 8331, 8332, 8334, 2537], - "@hapi/ammo", - "@hapi/boom", - "@hapi/bo", - "unce", - [2, 8322, 8323], - "@hapi/call", - "@hapi/ca", - "tbox", - [2, 8326, 8327], - "-memory", - [2, 8328, 8329], - [0, 2139, 13860, 2131], - [ - 0, 1414, 2323, 1437, 2675, 2297, 2899, 4193, 1177, 3246, 3483, 4042, 2026, 13868, 2151, 13824, 3183, 1596, 1610, - 2141, 2188, 2036, 7798, 4393, 91, 53, 1364, 1863, 2918, 2766, 3714, 13870, 2898, 1159, 192, 13880, 87, 13873, - 8850, 8862, 5583, 2915, 4073, 13882, 2881, 2912, 2895, 2921, 811, 13867, 2910, 13879, 13866, 816, 13875, 13871, - 5467 - ], - "@hapi/heavy", - [0, 4731, 27, 6662, 1862, 202, 1388, 1612, 4030, 5592, 5576], - "@hapi/hoek", - "mimos", - "@hapi/mimos", - "podium", - [2, 8315, 8338], - "shot", - "@hapi/shot", - "@hapi/s", - "omever", - [2, 8342, 8343], - "tatehood", - [2, 8342, 8345], - "ubtext", - [2, 8342, 8347], - "teamwork", - [2, 8315, 8349], - [1, 2343, 8352], - [0, 8355, 8356, 8365, 2537], - "@hapi/topo", - [2, 8315, 2649], - [0, 13889, 2051, 13891, 13892, 3923, 705, 4545, 3348, 1155, 4734, 4736, 2845], - [ - 0, 13894, 1389, 1596, 13895, 2228, 2296, 13896, 2759, 2297, 2881, 2891, 13899, 2895, 2897, 2900, 2904, 2899, - 3202, 3297, 4170, 4535, 4650 - ], - "@hapi/code", - "@hapi/inert", - "@hapi/lab", - "@hapi/v", - "ision", - [2, 8360, 8361], - "wreck", - "@hapi/wreck", - [0, 202, 13531, 13901], - [1, 2343, 8367], - [0, 8368, 8369, 3182, 2537], - [0, 1175, 1257, 1280, 1282, 1525, 1573, 5175, 2070, 1209, 13913, 3507, 4207, 4227, 13914, 1457], - [0, 1184], - [1, 2343, 8371], - [0, 8372, 8373, 3272, 34352], - [ - 0, 13922, 1180, 13924, 13928, 1280, 1282, 1284, 1287, 1288, 1291, 1573, 1676, 2856, 1209, 3181, 3507, 7223, - 4207, 4227 - ], - [0, 1184, 13930, 1257], - [1, 2343, 8375], - [0, 8376, 8377, 2514, 2523], - [0, 814, 104, 58, 101, 51, 1996], - [0, 2675, 2899, 1680, 1177, 2000, 1894, 2990, 1178, 13936, 1938, 1935, 1955], - [1, 2343, 8379], - [0, 8380, 8381, 2514, 2523], - [0, 13928, 1282, 1288, 1707, 2835, 1209, 4227, 13942], - [0, 1184, 1291], - [1, 2343, 8383], - [0, 8384, 0, 2514, 2537], - [0, 1282, 1209, 13948, 4135], - [1, 2343, 8386], - [0, 8387, 0, 2514, 2523], - [0, 1282, 13930], - [1, 2343, 8390], - "nf", - [0, 0, 0, 8393, 2487], - true, - "cookiecutter", - [0, 1172, 188, 1219], - [1, 2343, 8395], - [0, 8396, 8397, 2514, 2537], - [0, 8755, 10879, 1208, 13961, 1437, 2215, 4207], - [0, 53, 8776, 8780], - [1, 2343, 8399], - [0, 8400, 8401, 8402, 4139], - [0, 2105], - [0, 48, 53, 68, 87, 1414, 1177, 1895, 1955, 2203, 2675, 2990, 1894, 2924], - [0, 2924, 1194, 1172, 5194, 5198, 1237], - [1, 2343, 8404], - [0, 0, 8405, 8406, 4139], - [ - 0, 53, 73, 87, 1173, 1175, 1178, 13725, 13982, 1264, 13983, 1268, 1284, 1288, 13985, 1177, 1895, 1903, 1938, - 1954, 1955, 1958, 1970, 2899, 3696, 1894, 4039, 4103 - ], - [0, 5297, 13988], - [1, 2343, 8408], - [0, 8409, 8410, 8411, 2537], - [0, 3435], - [ - 0, 4389, 1177, 4039, 1173, 1175, 2708, 53, 1178, 1280, 13995, 87, 1261, 1267, 4103, 1938, 1881, 1203, 8229, - 1198, 5853, 13998, 1244 - ], - [0, 1172, 1932, 14000, 1204, 202], - [1, 2343, 8413], - [0, 8414, 8415, 3465, 2523], - [0, 1282], - [0, 1189], - [1, 2343, 8417], - [0, 8418, 8434, 8444, 2399], - [0, 5652], - "@keyv/redis", - [2, 1416, 8421], - "-redis-yet", - "cacheable", - "opens", - "spring", - "icu", - "charset", - "launch", - "xdg", - "cmd", - "xdg-open", - "iconv", - "popmotion", - "exe", - [0, 53, 90, 14011, 1175, 14012, 1596, 1177, 1879, 1895, 1938, 1955, 2079, 2675, 2990, 3132, 3377, 1894, 14014], - "executable", - "cache manager", - [2, 27105, 15292], - "multi-store cache", - "caching layer", - "cache abstraction", - "cache middleware", - "cache strategies", - "cache wrapper", - [0, 5297, 1114], - [1, 2343, 8446], - [0, 8447, 8448, 8449, 2537], - [0, 56, 14022, 8697, 14024, 14025], - [0, 48, 53, 5756, 5241, 94, 1429, 1596, 1610, 2899, 3421, 14027, 4255], - [0, 2759, 1172, 1932, 14029], - [1, 2343, 8451], - [0, 8452, 8453, 8454, 2537], - [0, 5652, 104, 2070, 1209, 14035], - [ - 0, 48, 53, 14039, 78, 5235, 4851, 83, 87, 90, 14041, 94, 10828, 1149, 1198, 1210, 1429, 14042, 14045, 3021, - 2899, 3776, 3804 - ], - [0, 5297, 14047, 1209, 5260], - [1, 2343, 8456], - [0, 8457, 8458, 8459, 2487], - [0, 14053, 2070, 3539, 4022, 814], - [0, 48, 53, 81, 5241, 87, 1175, 1193, 1532, 1177, 1881, 1895, 1938, 2675, 1192, 2990, 10623, 4257], - [0, 1172, 5297, 1237, 14056, 8861, 9345, 814, 14057, 14059, 3209, 1204], - [1, 2343, 8461], - [0, 0, 8462, 2514, 2523], - [0, 1192, 14065], - [1, 2343, 8464], - [0, 0, 0, 3465, 2523], - [1, 2343, 8466], - [0, 0, 0, 3465, 2537], - [1, 2343, 8468], - [0, 8469, 8415, 3465, 2523], - [0, 14078, 14080, 1282], - [1, 2343, 8471], - [0, 8472, 8415, 3465, 2523], - [0, 14086, 14087, 1282, 1284], - [1, 2343, 8474], - [0, 8475, 8476, 8477, 2487], - [0, 14093, 1282, 1284], - [0, 1173, 1230, 1255, 1267, 1429, 2899], - [0, 1172, 5297, 6598, 70], - [1, 2343, 8479], - [0, 8480, 8415, 3465, 2523], - [0, 1282, 1284, 1287, 1288, 1209], - [1, 2343, 8482], - [0, 8483, 8484, 3465, 2487], - [0, 14107, 1282, 1284, 1288], - [0, 1189, 14109], - [1, 2343, 8486], - [0, 8414, 8415, 3465, 2399], - [1, 2343, 8488], - [0, 8489, 8415, 3465, 2537], - [0, 14109, 1282], - [1, 2343, 8491], - [0, 8492, 8415, 3465, 2523], - [0, 1282, 14123, 1220], - [1, 2343, 8494], - [0, 0, 8495, 8496, 2537], - [ - 0, 48, 53, 5216, 8229, 61, 5240, 87, 14128, 90, 94, 1178, 14132, 1429, 1177, 1879, 1922, 1935, 1938, 1947, 1951, - 1955, 1959, 2205, 2899, 14133, 1894 - ], - [0, 1172, 5297, 89, 14137, 14139], - [1, 2343, 8498], - [0, 8499, 8415, 2514, 2537], - [0, 14145], - [1, 2343, 8501], - [0, 8414, 8415, 3465, 2537], - [1, 2343, 8503], - [0, 8504, 0, 2514, 2487], - [0, 1282, 1593, 3957], - "comment", - [2, 8505, 1574], - [1, 2343, 8513], - [3, 539, 8], - [2, 8508, 6939], - [3, 539, 17], - [2, 8510, 1541], - "leasot", - [0, 8514, 8515, 8516, 2487], - [0, 87, 90, 56, 5761, 83, 14160, 13051, 78, 5835, 14163, 5853, 14167, 1251, 5782, 14170, 5806], - [0, 1177, 53, 97, 4103, 1938, 1881], - [0, 1172, 5194, 6778, 5284], - [1, 2343, 8518], - [0, 8522, 8541, 2514, 2523], - "clair/typebox", - [2, 5324, 8519], - "@typesc", - [ - 0, 14184, 14191, 1225, 14192, 14195, 1235, 14196, 14198, 14199, 14201, 14204, 14206, 14207, 14209, 1240, 14210, - 14211, 14213, 14214, 14215, 14217, 14218, 1244, 14220, 14222, 14224, 1253, 1393, 2731, 4135 - ], - "hema/core", - [2, 8521, 8523], - [3, 8524, 12], - "main", - [2, 8525, 8526], - [2, 8525, 4763], - "@vinejs/vine", - "ajv-", - "ajv-errors", - "-export", - "-export-map", - [2, 4354, 8533], - [3, 5370, 11], - [2, 4626, 8535], - "effect", - "fp-ts", - "io-ts-types", - "lefthook", - [0, 1173, 1178, 1184, 1189, 1208, 1264, 1280, 1429, 1503, 1177, 13936, 1935, 2151, 1209, 2899, 3421, 14227, 4039], - [1, 2343, 8545], - "monocle-ts", - "newtype-ts", - [0, 8548, 8557, 2514, 2487], - "-validator", - [2, 7209, 8546], - [ - 0, 14184, 14192, 14195, 1235, 14196, 14198, 14199, 14201, 14204, 14206, 14207, 14209, 1240, 14210, 14211, 14213, - 14214, 14215, 14217, 14218, 1244, 14220, 14222, 1253 - ], - "bot", - "valibot", - "vite-", - [2, 8551, 4480], - "fluent", - "-ts", - [2, 7020, 8554], - [2, 8553, 8555], - [0, 13930, 1189], - "effect-ts", - [1, 2343, 8562], - "typeschema", - "vine", - [0, 8563, 0, 2514, 4139], - [0, 14237, 1220, 14238, 1248, 14240, 14243], - [1, 2343, 8565], - [0, 8566, 0, 2514, 2537], - [0, 53, 61, 71, 14170, 14160, 13051, 14249, 5700, 5240, 5879, 83, 87, 90, 92, 97, 7913, 1251], - "google ", - " api", - "late api", - [2, 4713, 8569], - [2, 8567, 8570], - [3, 8571, 16], - "google api", - [3, 8570, 9], - [1, 2343, 8576], - [0, 8577, 0, 2514, 34352], - [0, 14256, 14257, 1275], - [1, 2343, 8586], - "@atlaskit/pragmatic-drag-and-drop", - "-scroll", - [2, 3959, 8580], - [2, 8579, 8581], - [3, 8582, 34], - "hitbox", - [2, 8583, 8584], - [0, 8587, 0, 2514, 2523], - [0, 14265, 13982, 1277], - "vue3", - "vue ", - [1, 2343, 8592], - "vue 3.x", - [0, 8593, 0, 2514, 2537], - [0, 1279, 14270, 1217, 1230], - [1, 2343, 8595], - [0, 8596, 0, 2514, 2523], - [0, 14191, 14276, 1225, 14224, 1245], - "@ctrl/tinycolor", - [1, 2343, 8599], - [0, 8600, 8601, 2514, 2537], - [0, 1175, 1282, 1593, 14282, 1209, 3188, 4232], - [0, 6323], - [1, 2343, 8613], - [3, 546, 10], - [2, 8603, 2089], - [2, 8603, 998], - [3, 6505, 9], - "te-stream", - [2, 8606, 8607], - "rap-ansi", - [2, 7820, 8609], - "cli-width", - "mute-stream", - [0, 4115, 8617, 2514, 4139], - [3, 8605, 11], - "esting", - [2, 8614, 8615], - [0, 13924, 1255], - "answer", - "answers", - "ask", - [1, 2343, 8627], - "confirm", - "generate", - "hyper", - "inquire", - "interface", - [0, 8629, 0, 2514, 2537], - "iterm", - [0, 1282, 1287, 1288, 1291, 1209], - "promptly", - "question", - "scaffold", - "scaffolder", - "stdout", - "yeoman", - "zsh", - [1, 2343, 8638], - [0, 8639, 8640, 2514, 2523], - [0, 13922, 13928, 1282, 1288, 1291, 1676, 2203, 2731, 1209], - [0, 1180], - "@stencil/core", - [1, 2343, 8672], - "domino", - [3, 8641, 9], - [2, 8644, 2278], - "@clack/prompts", - "@capacitor/core", - "@playwright/test", - [3, 8647, 11], - "haptics", - [2, 8649, 8650], - "keyboard", - [2, 8649, 8652], - "@axe-core/playwright", - "@ionic/", - [2, 8655, 7625], - "-bar", - "status-bar", - [2, 8649, 8658], - [2, 8655, 7628], - [2, 812, 4607], - "-target", - [2, 6811, 8662], - [2, 4625, 8663], - [2, 8644, 8664], - "react-o", - "utput-target", - [2, 8666, 8667], - [2, 8644, 8668], - [2, 1101, 8663], - [2, 8644, 8670], - [0, 8679, 8680, 2514, 2487], - "stencil", - "webapp", - "capacitor", - " web app", - [2, 6434, 8676], - "pwa", - [0, 1282, 14301, 1209, 5915], - [0, 1180, 1291], - [1, 2343, 8682], - [0, 0, 8684, 2514, 2523], - "-cjs", - [0, 4384, 1389, 53, 14311, 87, 14128, 1573, 90, 14309, 5835, 5879], - [1, 2343, 8686], - [0, 0, 8687, 8688, 2487], - [ - 0, 1166, 1173, 1178, 1184, 1203, 1208, 14318, 1267, 1272, 1437, 1503, 1610, 1177, 13936, 1935, 2126, 3421, 4039, - 4042, 4045, 4067, 12613, 14320 - ], - [0, 1172, 5284, 57, 1291], - "standardx", - [1, 2343, 8692], - "layout", - [0, 8693, 8694, 8695, 2537], - [0, 4545], - [0, 1509, 1597, 1734, 1177, 1938, 2297, 2908, 2907, 4005, 4042, 4535], - [0, 11415, 6624, 12620, 38, 36, 5576, 1388], - [3, 549, 12], - [2, 8696, 2844], - [1, 2343, 8699], - [0, 8700, 8701, 8702, 2443], - [0, 1525, 2070, 2720, 3445, 4039, 4484, 3348, 1155], - [ - 0, 14333, 4865, 4866, 4874, 7819, 14334, 4891, 1009, 1011, 5476, 14337, 14338, 5478, 1429, 1177, 1938, 1954, - 2899, 3200, 14339, 4167, 4172, 4409, 4469, 4474, 4508, 91, 594, 2924, 4677 - ], - [0, 5995, 1293, 3230, 4978, 14344], - [3, 444, 18], - [3, 550, 15], - "illu", - [1, 2343, 8715], - "tions-react", - [2, 4273, 8707], - [2, 8705, 8708], - [2, 8704, 8709], - "@swc/", - [2, 8711, 6706], - [3, 958, 16], - [2, 8713, 4607], - [0, 7936, 7938, 7939, 2537], - "react-table", - [1, 2343, 8718], - [0, 0, 8720, 8721, 2523], - "@swc/cli", - [0, 1596, 2228, 2240, 2314, 14352, 2759, 2899, 3954], - [0, 14354, 14355, 14356, 14357, 1157, 1396], - "-extensions", - [2, 3751, 8722], - [2, 1962, 8723], - [1, 2343, 8730], - "-system", - [2, 4964, 8726], - "itwin", - "itwinui", - [0, 7967, 7938, 7939, 2443], - [1, 2343, 8732], - [0, 0, 8733, 8735, 4139], - [0, 13662, 1317, 1389, 4389], - "jest-config", - [0, 14357], - "unner", - "jest-runner", - "jest-run", - [2, 8738, 6901], - [3, 2802, 10], - [2, 8740, 1524], - [3, 551, 8], - "nsole", - [2, 8742, 8743], - "snapshot", - [2, 2769, 8745], - [2, 2769, 2649], - "jest-h", - "aste-map", - [2, 8748, 8749], - "reporters", - [2, 552, 8751], - "@jest/t", - "ransform", - [2, 8753, 8754], - "jest-re", - "gex-util", - [2, 8756, 8757], - [1, 2343, 8760], - [0, 8766, 8772, 8774, 2523], - "est-result", - [2, 8753, 8761], - "jest-m", - "essage-util", - [2, 8763, 8764], - [0, 4100], - "-files", - [2, 2356, 8767], - [2, 2772, 8768], - "-dependencies", - [2, 2797, 8770], - [0, 2899, 1177, 2759, 1954, 1938, 1958, 1903, 1948, 1970], - [3, 6494, 9], - [0, 14372, 1303, 14374, 14375], - [3, 8762, 11], - [2, 8775, 594], - "cromatch", - [2, 7890, 8777], - "raceful-fs", - [2, 5246, 8779], - "sequencer", - [2, 8775, 8781], - [1, 2343, 8789], - "easy", - "sive", - "immersive", - "instant", - "mocking", - [0, 8792, 8793, 8794, 2537], - "painless", - "runner", - [0, 1797, 3181, 3183, 3188, 14380], - [0, 1177, 1903, 1938, 1954, 1958, 1970, 2899, 4039, 4342, 4459, 4538, 4588], - [0, 2026, 5130, 14387, 6690, 14388, 3361, 5122, 4030, 7096, 38, 1896, 3724, 5995, 5592], - "sandboxed", - [1, 2343, 8797], - [0, 8798, 8799, 8810, 2537], - [0, 3299, 15160], - [0, 1192, 15164], - "schemas", - [2, 552, 8800], - "@types/i", - "-report", - "-reports", - [2, 1207, 8804], - [2, 8802, 8805], - [3, 8806, 16], - "lib-coverage", - [2, 8807, 8808], - [0, 1306, 6875, 1303, 5165, 7141, 6641, 1616], - "@tsd/typescript", - [1, 2343, 8813], - [0, 0, 0, 8814, 2537], - [0, 1306, 5284, 676, 3428, 6875, 1303, 5165, 7141, 6641, 1616], - [1, 2343, 8819], - [3, 7729, 13], - "chema", - [2, 8816, 8817], - [0, 0, 8822, 8810, 4139], - "jsdom-", - [2, 8820, 2202], - [0, 1306, 26406, 1894, 91], - "mock-store", - [2, 3944, 8823], - "dux-mock-store", - [2, 5249, 8825], - "-reg", - "iste", - "r-element", - [2, 8828, 8829], - [2, 8827, 8830], - [2, 1746, 8831], - [1, 2343, 8834], - [0, 8835, 8842, 8843, 34352], - [0, 14413, 1525, 1457], - "jsonforms", - "rendere", - [2, 8837, 152], - "uischema", - "ization", - [2, 5317, 8840], - [0, 2025, 2228, 1330, 2236, 2300, 2247, 2281], - [0, 14416, 14417, 14418, 7190, 14419, 14421, 8309, 14422, 14423, 14426, 14428, 14430, 14433], - [1, 2343, 8845], - [0, 0, 0, 8847, 2523], - "@date-io/dayjs", - [0, 1317, 14438], - [3, 4055, 16], - [2, 8848, 2257], - [2, 812, 1781], - [3, 6390, 15], - "mport-css", - [2, 8851, 8852], - [1, 2343, 8855], - [0, 8856, 7938, 7939, 4139], - [ - 0, 43, 46, 1089, 1093, 1116, 1132, 1140, 14443, 1294, 1298, 1316, 1318, 1321, 1322, 14444, 1336, 1339, 1342, - 12701, 1344, 1346, 1348, 1350, 1352, 12703, 1354, 1356, 1358, 14445, 12704, 1373, 1376, 14446, 1386, 14447, - 1402, 1425, 1428, 12705, 1440, 1449, 1450, 12708, 12709, 14450, 14453, 12710, 12711, 12714, 1663, 1706, 1711, - 14458, 1715, 1726, 1801, 2019, 12715, 14459, 12719, 2058, 2059, 2083, 2147, 2160, 14460, 2177, 2213, 2216, 2217, - 12720, 2562, 2563, 2567, 2589, 2605, 2606, 2612, 14461, 12722, 2723, 14464, 14467, 2950, 2954, 2957, 12726, - 2962, 14469, 3086, 14471, 3099, 12730, 3134, 12733, 3186, 3238, 14473, 14474, 3239, 3240, 3245, 3262, 14477, - 3295, 3439, 12736, 3443, 3472, 14478, 3531, 3535, 3558, 12737, 3777, 3931, 12740, 14479, 4105, 4106, 4112, 4124, - 12743, 14480, 12747, 14483, 4168, 4173, 4177, 4189, 4192, 4206, 4212, 4214, 4215, 4235, 12749, 14484, 4236, - 4239, 4258, 12750, 4267, 14487, 4335, 4338, 12755, 4347, 4352, 4370, 4377, 4433, 14489, 14491, 4456, 4461, - 12756, 12757, 12760, 4548, 4559, 4595, 12763, 14492, 14496, 4659, 4662, 12764, 14497, 4724 - ], - [1, 2343, 8858], - [0, 8859, 8863, 8864, 4139], - [0, 3171, 3445, 4707, 1695, 2967, 814, 4430, 1457, 3183, 14502, 3560, 3714, 1537, 14506, 3923, 14508, 14512, 14505], - [2, 4807, 3429], - "alias", - [2, 812, 8861], - [0, 14515, 3212, 4389, 4453, 2759, 4650, 1389, 14514], - [0, 14518, 1389], - [1, 2343, 8866], - [0, 7967, 7938, 7939, 2537], - [1, 2343, 8868], - [0, 8869, 8870, 8871, 2443], - [0, 1209, 12344], - [0, 1596, 14527, 2759, 14529, 3774, 4019], - [0, 1317, 6681, 6887], - [1, 2343, 8873], - [0, 7967, 7938, 7939, 2523], - [1, 2343, 8875], - [0, 8876, 0, 8877, 34352], - [ - 0, 14544, 14546, 14548, 53, 5216, 58, 61, 14249, 5704, 5809, 5241, 5874, 87, 92, 101, 9311, 9100, 4874, 1091, - 14552, 1137, 1149, 1448, 1457, 1462, 1512, 14557, 1573, 2141, 2633, 14558, 3310, 3403, 1894, 14562, 2278, 4218, - 4227, 4246, 3709, 91, 4535, 14563, 188, 4747, 2720, 14564 - ], - [ - 0, 14566, 14568, 14570, 14571, 14572, 14574, 5130, 91, 5284, 4799, 11608, 8889, 5995, 14575, 14576, 14579, - 14580, 14582, 14584, 14587, 11498, 14591, 14592, 14594, 14596, 4056, 14597, 14600, 89, 14601, 14602, 188, 14603, - 14605, 8889, 3709, 14607, 14608, 4218, 14609 - ], - 1769904000000, - [1, 2343, 8880], - [0, 8881, 8882, 8883, 2399], - [0, 14615, 14616, 14617], - [0, 1170, 1429, 1177, 2899, 14621, 3752, 14622], - [0, 1781, 14626, 1646, 4647, 1644, 57, 14628, 4141, 3917, 6033, 1149, 14629], - [1, 2343, 8885], - [0, 0, 0, 8886, 2523], - [0, 14634, 14635, 14636, 14637, 6988, 14638, 14639, 14640, 14641, 14642, 14643, 14644], - "@lumino/polling", - "@lumino/", - "widgets", - [2, 8888, 8889], - "commands", - [2, 8888, 8891], - "algorithm", - [2, 8888, 8893], - [3, 8892, 10], - "reutils", - [2, 8895, 8896], - [1, 2343, 8903], - "messaging", - [2, 8888, 8899], - "signaling", - [2, 8888, 8901], - [0, 8904, 0, 8908, 4139], - [0, 14652], - "disposable", - [2, 8888, 8905], - [3, 8887, 9], - [0, 970, 11154, 1326, 14654, 6817, 3122, 14655], - "roperties", - [2, 8907, 8909], - [3, 565, 12], - "statedb", - [2, 8911, 8912], - [3, 8894, 9], - "pplication", - [2, 8914, 8915], - [3, 565, 15], - [2, 8917, 594], - [3, 8913, 13], - "ervices", - [2, 8919, 8920], - "coreutils", - [2, 8911, 8922], - "render", - "rendermime", - [2, 8911, 8925], - "docregistry", - [2, 8911, 8927], - [1, 2343, 8935], - "translation", - [2, 8911, 8930], - [2, 8911, 7842], - "-interfaces", - [2, 8926, 8933], - [0, 8938, 8939, 2514, 2537], - [3, 8931, 13], - [2, 8936, 8615], - [0, 14660], - [0, 3421, 4389, 4487, 1894, 3310, 3752, 91, 4874], - [1, 2343, 8941], - [0, 8943, 8948, 8950, 34352], - "docopt", - [0, 14667, 14669, 14671, 14672, 5241, 83, 14673, 13998, 14674, 5564, 14676, 4649], - "glob2base", - "lodash.d", - "ifference", - [2, 8945, 8946], - [ - 0, 14680, 48, 53, 5241, 87, 14682, 94, 97, 10821, 14684, 827, 14687, 14689, 10828, 14691, 11277, 10837, 11288, - 972, 5087, 4883, 14693, 14694, 13995, 14695, 1193, 1195, 14697, 14698, 1208, 1261, 1268, 14012, 1282, 14699, - 1462, 1596, 1610, 1655, 14702, 1177, 14707, 2323, 2529, 2541, 14708, 2708, 1192, 2787, 2820, 3220, 14711, 3342, - 3377, 3400, 3415, 3421, 3697, 1894, 3786, 89, 3824, 14714, 14719, 4039, 4103, 4111, 14721, 4307, 4468, 4469, 91, - 2924, 4676, 4677 - ], - "multipipe", - [0, 1328, 14723], - "safe-wipe", - [2, 4832, 6270], - "-theme-default", - [2, 566, 8953], - "-comment", - [2, 8955, 1574], - [2, 4329, 8956], - "indent", - [2, 4293, 8958], - "vinyl-s", - "tring", - [2, 8960, 8961], - [1, 2343, 8968], - "builtin-", - [2, 8964, 2051], - [2, 1226, 8965], - "opn-cli", - [0, 8969, 8970, 8971, 4139], - [0, 14731, 1398, 2713, 3923], - [0, 2080, 4255, 4389, 91], - [0, 1398, 6825, 3101, 7178], - [1, 2343, 8973], - [0, 8974, 8975, 8976, 2523], - [0, 1082, 14738, 14741, 2756, 3433, 1695], - [0, 1149, 14744, 1506, 2228, 2240, 2247, 2253, 2273, 2281, 3006, 2899, 3521, 4019, 89, 14748], - [0, 4504], - [1, 2343, 8978], - [0, 0, 0, 8979, 2523], - [0, 14755, 14756, 14757, 14759, 14761], - "chatfanpage", - "api-con", - "-x", - "nect-x", - [2, 8981, 8983], - [3, 8984, 12], - "tiwtter", - [2, 8985, 8986], - [1, 2343, 8989], - [0, 8990, 8991, 2514, 2487], - [0, 14768, 1437, 14769, 1209, 14770, 3127, 14774, 14775, 3152, 14776, 14777, 4294, 14780, 14781], - [0, 14785, 1331, 1512, 1177, 1903, 1938, 1954, 1958, 1970], - [1, 2343, 8993], - [0, 7967, 7938, 7939, 4139], - [1, 2343, 8995], - [0, 8029, 7938, 7939, 2399], - [1, 2343, 8999], - [2, 8603, 6847], - [2, 8603, 3742], - [0, 8029, 7938, 7939, 2523], - "tasklist", - [1, 2343, 9002], - [0, 8029, 7938, 7939, 2487], - [1, 2343, 9004], - [0, 0, 9012, 9013, 2523], - "move-", - "scroll", - "move-scroll", - [2, 3877, 9007], - "react-te", - "xtarea-autosize", - [2, 9009, 9010], - [0, 2759], - [0, 1359, 2013, 14824, 6681], - [1, 2343, 9015], - [0, 0, 9016, 9017, 2523], - [ - 0, 1499, 4093, 2070, 3445, 1082, 14830, 2899, 4193, 2272, 3188, 4039, 14829, 1362, 2597, 2759, 3460, 1481, 4535, - 1084, 1389, 1364, 1615, 4151, 2839, 2311 - ], - [0, 1862, 6681, 6567, 14832, 14833, 1149, 7003, 14834, 14835, 14836, 14838, 14839, 14840], - [1, 2343, 9019], - [0, 0, 9020, 9021, 2487], - [0, 2899, 8689, 1926], - [0, 14846, 14847, 14848, 14849, 14850], - [1, 2343, 9023], - [0, 9024, 9025, 2514, 2487], - [0, 1413, 1562, 1676, 2657, 2685, 3440, 3763, 3784, 1000], - [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342], - "calendar", - [1, 2343, 9028], - [0, 9029, 9030, 9031, 2537], - [0, 1362, 14864, 2712, 1209], - [0, 14869, 1429, 1177, 1895, 1955, 2675, 1776, 2930, 2990, 2899, 3259, 3421, 3519, 1894, 4193, 4196, 4246, 3348], - [0, 3469, 3259, 14873, 7827, 14874, 14877], - [1, 2343, 9033], - [0, 9034, 9035, 9036, 2537], - [0, 2607], - [0, 1501, 620, 3123], - [0, 1851, 27], - [1, 2343, 9038], - [0, 0, 9039, 5359, 2537], - [ - 0, 2739, 4763, 3171, 2278, 34683, 2297, 1177, 2205, 2814, 3984, 4042, 4086, 4072, 2765, 2822, 3363, 3561, 4167, - 6393, 1894, 1492, 1610, 4939, 4320, 48, 2689, 53, 27098, 6375, 2654, 3566, 3989, 30616, 1165, 3401, 6371, 6376, - 2898, 3019, 34673, 29226, 6372, 7637, 8149, 7610, 11275, 26407, 1907, 6382, 4555, 87, 29568, 1937, 5583, 1938, - 1982, 2881, 2889, 30620, 6373, 1948, 2895, 6390, 811, 33071, 3963, 2910, 6379, 816, 2876, 6387, 6392, 6385 - ], - [3, 593, 11], - [2, 9040, 147], - [1, 2343, 9043], - [0, 0, 9048, 9049, 2537], - [3, 586, 12], - [2, 9044, 5602], - [3, 9045, 13], - [2, 9046, 623], - [0, 2278, 14892, 1797], - [0, 1367, 2278, 1623, 14894], - [1, 2343, 9051], - [0, 0, 0, 9055, 2537], - "-react-", - [2, 9052, 3902], - [2, 588, 9053], - [0, 1370], - [3, 80, 7], - [2, 9056, 5342], - [1, 2343, 9059], - [0, 9060, 9061, 9062, 4139], - [0, 14904, 1420, 1437, 1471, 4290, 4507, 9731, 4726], - [0, 1166, 3421, 4481, 1906], - [0, 200, 5403, 14907, 7009, 6048, 7201, 6938, 3656, 14908, 2585], - [1, 2343, 9064], - [0, 9065, 9066, 9067, 2537], - [0, 14923, 814, 14924, 4431], - [0, 1389, 1537, 4384, 4430], - [0, 1389, 14927, 2150, 14930, 1932, 2947, 14932, 6374, 14357], - [1, 2343, 9069], - [0, 9070, 9077, 9078, 2537], - [0, 1676, 3181, 4648, 14940, 14937, 14939, 14938], - [2, 597, 592], - [3, 9071, 14], - "ystem", - [2, 9072, 9073], - [2, 597, 553], - [2, 597, 594], - [0, 1429, 2899, 4039, 2151, 3980, 14942, 1951, 1385, 14944], - [0, 14938, 5284], - [1, 2343, 9080], - [0, 9081, 9082, 9083, 2537], - [0, 14938, 1380], - [0, 14953, 1385, 1429, 2899, 14942], - [0, 14938, 1698, 1585], - [1, 2343, 9085], - [0, 9086, 9090, 2514, 2487], - [0, 6520, 14959, 2116, 14939, 4449, 4648], - [3, 603, 15], - "documenter", - [2, 9087, 9088], - [0, 4856, 6503, 4874, 14962, 1429, 1540, 2899, 14964, 3421, 1894, 14967, 4487, 4490, 14970, 91], - "json-api", - [1, 2343, 9095], - "json:api", - "normalizer", - [0, 9096, 9097, 9098, 2487], - [ - 0, 14978, 14980, 14981, 1437, 1457, 1544, 1549, 14982, 14985, 14986, 984, 2145, 2151, 2659, 2700, 3170, 3459, - 13399, 3784, 14990, 4093, 710, 4150, 4151, 4153, 4218, 11804, 4747 - ], - [ - 0, 4874, 14992, 1429, 14995, 2215, 13333, 2899, 1894, 3760, 705, 4019, 4039, 4193, 4220, 4232, 4294, 4342, 91, - 4597 - ], - [0, 14998, 1623, 15000, 15001], - [3, 4873, 9], - "@types/mdx", - [1, 2343, 9103], - "mdx", - [0, 9104, 9105, 9106, 2523], - [ - 0, 1002, 2070, 614, 1695, 1145, 1398, 2018, 2571, 15043, 15016, 7029, 3729, 814, 2713, 3757, 4431, 15017, 15019, - 2861, 15020, 15030, 4165, 15040, 15006, 15044, 1537, 15031, 15037, 15048, 15018, 15028, 15042, 15047, 15007, - 15009, 3502, 15033, 3923, 15022, 15036, 1618, 15039, 15046, 15014, 15013, 15015, 13818, 15024 - ], - [0, 15060, 4384, 1241, 4135, 4430, 1292, 15057, 15052, 1506, 15051, 15055, 15056, 15059], - [0, 1388, 3209, 10906, 15064, 6374, 3378, 5284], - "encryptor", - [1, 2343, 34414], - "-model", - [2, 603, 9109], - "@rushstack/node-core-library", - [3, 9111, 11], - [2, 9112, 7009], - [3, 9113, 12], - "s-comm", - [0, 15070, 15071, 15073, 814, 4430], - "and-line", - [2, 9115, 9117], - [2, 9114, 9118], - "rig-package", - [2, 9112, 9120], - [0, 2832, 3275, 3752, 705, 4039, 4384, 15077], - "heft-node-rig", - [2, 9112, 9123], - [3, 9124, 15], - "eft-jest", - [2, 6495, 9126], - [3, 7892, 12], - [2, 9128, 3180], - [2, 5554, 7625], - [0, 1389, 14927, 1858, 2202, 2203, 353, 11316, 10906], - "JSDoc", - "AEDoc", - "TSDoc", - "alpha", - "beta", - [1, 2343, 9138], - [0, 9139, 0, 9140, 34352], - [0, 28572, 1423, 14227, 15085, 15088], - [0, 1421, 2887, 15090], - "tsdoc-build-rig", - [1, 2343, 9144], - "ig", - [0, 9145, 9147, 9148, 2443], - [0, 15095], - [3, 1937, 15], - [0, 4389, 4039, 91, 4874, 15097], - [0, 15100, 15101, 1616, 15102, 15103, 15105, 10368, 9254, 15107], - [1, 2343, 9150], - [0, 0, 9151, 9152, 2399], - [ - 0, 3421, 4390, 4481, 1429, 3348, 1437, 2899, 4193, 1177, 4042, 4474, 1894, 1317, 3310, 4196, 91, 4856, 4874, - 6503, 6513, 3090, 6512, 4232, 1978, 1895, 1955, 603, 10817, 1011, 816, 15115, 1009, 549 - ], - [0, 3230, 1395, 57], - "jju", - [1, 2343, 9155], - [0, 0, 0, 9157, 2487], - "@types/jju", - [0, 1396, 1388], - [1, 2343, 9159], - [0, 9160, 9164, 9168, 4139], - [0, 1082, 15127, 15128, 1437, 3090, 3183, 15130], - "@dat", - "astream/core", - [2, 9161, 9162], - [0, 15132, 1177, 2070, 2899, 4039, 4042, 15134, 811, 8850, 816, 4227, 4232, 15136], - "@types/a", - "ws-lambda", - [2, 9165, 9166], - [0, 5284, 15139, 15140, 15141, 6778, 7192, 5194, 6598], - "Lambda", - "Middleware", - "Serverless", - "Framework", - "AWS", - "AWS Lambda", - [1, 2343, 9176], - [0, 9177, 9178, 9179, 2443], - [0, 1301, 13811], - [0, 1090, 1317, 1389, 1537, 2676, 13651, 13633, 4237, 4389, 4431, 4535], - [0, 6866, 1388, 1389, 1398, 15148, 6735, 15149], - [1, 2343, 9181], - [0, 0, 9187, 9188, 2537], - "Middy", - "HTTP", - "Body Parser", - " Body Parser", - [2, 6671, 9185], - [0, 13614, 1158, 1159, 1177, 2708, 3410, 4103, 4389], - [0, 1398, 4162], - [1, 2343, 9190], - [0, 9197, 9198, 9199, 2537], - [3, 7709, 17], - "sm", - [2, 9191, 9192], - "aws-", - "xray-sdk", - [2, 9194, 9195], - [0, 15160], - [0, 2899, 640, 15164], - [0, 1401], - [1, 2343, 9201], - [0, 0, 8134, 9202, 2523], - [0, 4061, 15174, 4062, 202, 5260, 364, 15175, 3392, 4552, 1460], - "moj", - [2, 4964, 6770], - [1, 2343, 9206], - [0, 0, 9208, 9222, 2523], - "hash-base", - [0, 1637, 3566, 1894, 4039, 2278], - "@open-", - "draft", - "/deferred-promise", - [2, 9210, 9211], - [2, 9209, 9212], - [3, 9213, 12], - [2, 9214, 2942], - "until", - [2, 9214, 9216], - "is-node-process", - "outvariant", - "ct-event-emitter", - [2, 4285, 9220], - [0, 1623, 2278, 4329, 15182, 10052, 6398, 5130], - [1, 2343, 9232], - "test-server", - [2, 9214, 9224], - "@ossjs/release", - [2, 4860, 982], - [3, 7808, 15], - "upload", - "fileupload", - [2, 9228, 9230], - [0, 9234, 9238, 9253, 2523], - "rate-limit", - [0, 5923, 15187, 8646, 688, 691, 9296, 15194, 11420, 1170, 1437, 1676, 29297, 15197, 3445], - [3, 7810, 9], - "llow-redirects", - [2, 9235, 9236], - [ - 0, 9736, 9737, 4856, 5245, 15203, 6503, 4874, 6513, 1009, 1429, 1177, 1891, 1893, 1895, 1955, 2899, 3211, 3297, - 3377, 3421, 1890, 4172, 4193, 4474, 91 - ], - "upertest", - [2, 5051, 9239], - "@types/ws", - "engine.io-parser", - [2, 2032, 9230], - [2, 2032, 9233], - [2, 4183, 1960], - [3, 4220, 10], - [2, 9246, 57], - "ironment-miniflare", - [2, 8156, 9248], - [2, 1984, 9249], - [3, 5572, 9], - [2, 9251, 2022], - [0, 5592, 1745, 3452, 5593, 15208, 200], - "encoding", - [2, 5925, 9254], - [3, 4684, 9], - "ttp-server", - [2, 9256, 9257], - [1, 2343, 9260], - [0, 9263, 9264, 9265, 2523], - "intercept", - "low-level", - [0, 15006, 15051, 1537, 14738, 3183, 4431], - [0, 4389], - [0, 1389, 6374, 15215, 3178, 3209], - [1, 2343, 9268], - "mui", - [0, 9269, 9270, 9271, 2487], - [0, 15221, 3220, 15220, 15223], - [0, 15225, 4384, 4591, 4593, 3123], - [0, 3073, 6807, 15227, 1781, 1409], - [2, 619, 553], - [2, 619, 594], - "@mui/base", - [1, 2343, 9276], - [0, 9277, 9278, 9279, 2487], - [0, 15232], - [0, 15234, 1177], - [0, 15236, 25, 15237, 2139], - "core-", - "s-tracker", - [2, 1764, 9281], - [2, 9280, 9282], - [2, 619, 9283], - [1, 2343, 9286], - [0, 9287, 9288, 9289, 2537], - [0, 3080], - [0, 14408, 15243, 14406, 15245, 14405, 14404], - [0, 11995, 4552, 1398, 6866, 7270, 1411, 1781, 4699, 15247], - [1, 2343, 9294], - "theming", - [2, 5695, 9291], - [2, 619, 9292], - [0, 0, 9295, 9297, 2537], - [0, 1177, 1948, 2899, 3421], - [2, 9710, 15201], - [0, 1412, 1413, 6435, 1644, 57, 6270, 15253], - [1, 2343, 9299], - [0, 9303, 9304, 9305, 2537], - "mui-x", - "timepicker", - [2, 1666, 9301], - [0, 15258, 8697, 2105, 15261, 11935, 11938, 11943, 14025, 15262, 4747, 4748], - [0, 4874, 1429, 15264, 1610, 2899, 4255, 4474, 91], - [0, 4504, 15266, 1973, 2759, 15267, 3323, 202], - [1, 2343, 9325], - "@headlessui/react", - "@iconify-icon/react", - [3, 602, 8], - [2, 9309, 1194], - "@mdx-js/mdx", - "@shikijs/transformers", - "@theguild/remark-npm2yarn", - "nist", - [2, 7817, 9314], - "@vcarl/remark-headings", - "approximate-number", - "-watch-webpack-plugin", - [2, 2473, 9318], - "flex", - "flexsearch", - "git-url-parse", - "phrasing", - [2, 3138, 9323], - [0, 0, 9326, 2514, 2523], - [ - 0, 6041, 1192, 2020, 2675, 2205, 4042, 668, 12444, 4468, 4474, 4508, 2151, 1894, 15275, 91, 53, 5087, 2990, - 3123, 4864, 4131, 15276, 4057, 15277, 811, 1652, 816, 15273 - ], - "next-seo", - "-async", - [2, 3830, 9328], - [3, 3968, 10], - "ract", - "-excerpt", - [2, 9331, 9332], - [2, 9330, 9333], - "rehype-p", - "retty-code", - [2, 9335, 9336], - "matter", - "frontmatter", - [2, 3986, 9339], - "remark-h", - "eading-id", - [2, 9341, 9342], - "link-", - "rewrite", - [2, 9344, 9345], - [2, 3986, 9346], - "shiki", - [1, 2343, 9356], - "-themer", - [2, 4383, 9350], - "virtual-", - [2, 9352, 5260], - [2, 4670, 9353], - "zustand", - [0, 9369, 9370, 9371, 2443], - [2, 4860, 4349], - "tra-watch-webpack-plugin", - [2, 8773, 9358], - [3, 7634, 10], - "-url-parse", - [2, 9360, 9361], - [2, 9099, 6892], - "@repo/eslint-config", - "@repo/", - [2, 4524, 1541], - [2, 9365, 9366], - [2, 9365, 7628], - [0, 2928, 32554], - [0, 11976, 15288, 8419, 4874, 7677, 37080, 8420, 4039, 4493, 91, 1984, 8422], - [0, 2325, 20164, 8436, 202, 10339, 8437, 1552, 3143, 8438, 9553, 8439, 8440, 8441, 8442, 8443], - [1, 2343, 9373], - [0, 9377, 9380, 9385, 2537], - [3, 5309, 9], - [2, 9374, 8924], - [2, 9374, 57], - [0, 9441, 15305, 15308, 15310], - "css-what", - "esthetic", - [0, 13614, 1159, 9254, 1855, 1177, 2011, 2133, 13619, 2708, 3410, 3421, 3431, 4103, 4389], - "builder", - "guides", - "demo", - "ng-doc", - [0, 5284, 5286, 3595, 676, 6716, 7239, 6714, 6715, 7162, 1417, 7272, 3046, 6830], - [1, 2343, 9387], - [0, 0, 8134, 9388, 2537], - [0, 1420, 15320, 15318, 15321, 13230, 15322, 1758, 4545, 15323, 1871, 2585, 6270, 15324, 15326], - [1, 2343, 9390], - [0, 0, 0, 9391, 2537], - [0, 12080, 12075, 8221, 1388], - [1, 2343, 9399], - [2, 3964, 1671], - "has-p", - [2, 9394, 3871], - [2, 2573, 9395], - [3, 9396, 11], - "eading-", - [0, 0, 0, 9410, 2523], - "eading-rank", - [2, 9397, 9400], - "rehype-m", - "inify-", - [2, 9403, 3661], - [2, 9402, 9404], - [3, 4555, 11], - [2, 9406, 7131], - [3, 9312, 9], - [2, 9408, 3958], - [0, 4231], - [1, 2343, 9412], - [0, 9413, 9418, 9419, 34352], - [0, 3299, 32944], - "ordinal", - [3, 6490, 12], - "as-promised", - [2, 9415, 9416], - [0, 4874, 15342, 2026, 2822, 2899, 3536, 4255, 4481, 91], - [0, 1424, 15344, 11812, 15345, 15346, 158, 11806, 2636], - "ethers", - "hat", - "hardhat", - "n.js", - [2, 4853, 9423], - [3, 634, 25], - [2, 9425, 9420], - [3, 634, 17], - "low-", - "low-imports", - [2, 1967, 9429], - [2, 9427, 9430], - [3, 9431, 31], - "-inter", - "nal-rules", - [2, 9433, 9434], - [2, 9422, 9435], - [2, 9432, 9436], - [1, 2343, 9442], - "ethereum", - "smart-contracts", - [2, 1417, 15307], - [0, 0, 9443, 9444, 2537], - [0, 1159, 1177, 1881, 1938, 2151, 2899, 2924], - [0, 2924, 1932, 15356, 1204, 3209], - [1, 2343, 9446], - [0, 0, 0, 9450, 2523], - "proggy", - "cacache", - "bin-links", - [0, 3521, 15361, 1973, 5472, 15362], - "treeverse", - "@npmcli/fs", - "walk-", - "up-path", - [2, 9453, 9454], - [2, 636, 3766], - [3, 643, 9], - "edact", - [2, 9457, 9458], - "npm-p", - "ick-manifest", - [2, 9460, 9461], - "-checks", - [2, 1161, 9463], - [2, 3382, 9464], - "promise-", - [1, 2343, 9482], - "call-limit", - [2, 9466, 9468], - [3, 2854, 15], - "nice", - [2, 9470, 9471], - "-conf", - "lict-json", - [2, 9473, 9474], - [2, 1644, 9475], - "package-", - [2, 9477, 1781], - [2, 636, 9478], - "common-", - "ance", - [0, 0, 9511, 9521, 2523], - "stor-path", - [2, 9481, 9483], - [2, 9480, 9484], - "read-p", - "ackage-json-fast", - [2, 9486, 9487], - "all-reject-late", - [2, 9466, 9489], - [3, 641, 9], - "ame-from-folder", - [2, 9491, 9492], - [3, 638, 9], - "etavuln-calculator", - [2, 9494, 9495], - [3, 548, 8], - "e-compare", - [2, 2703, 9498], - [2, 4284, 9499], - [2, 9497, 9500], - "json-p", - "arse", - "-even-better-errors", - [2, 9503, 9504], - [2, 9502, 9505], - "installe", - "d-package-contents", - [2, 9507, 9508], - [2, 636, 9509], - [0, 1414, 15370, 2899, 1177, 668, 2203, 15371, 1690, 1894, 442, 91, 15373, 15374, 5476, 1942, 15376, 811, 5478], - "tcompare", - "oss", - [2, 4641, 9513], - [2, 636, 9514], - [2, 636, 7625], - "minify-", - [3, 3396, 9], - [2, 9518, 6774], - [2, 9517, 9519], - [0, 1973, 6468, 1145, 5472, 1429], - [1, 2343, 9523], - [0, 9524, 9525, 9526, 2523], - [0, 15373], - [0, 1414, 1429, 2899, 1177, 2203, 1894, 442], - [0, 1429, 15385, 1388, 1149, 5472, 5710, 6567, 14833], - [2, 664, 591], - [1, 2343, 9529], - [0, 0, 9530, 9531, 34352], - [0, 3095, 2899, 1429], - [0, 1429, 3495, 15393], - [1, 2343, 9533], - [0, 0, 9534, 9535, 34352], - [0, 1429, 2899, 2759, 1596, 14942, 15398], - [0, 1429, 15385, 15400, 1435, 6793, 1932, 15402, 1697, 15403, 3529, 9549, 7015, 15405], - [3, 9479, 9], - "-spawn", - [2, 2751, 9537], - [2, 9536, 9538], - [1, 2343, 9541], - [0, 0, 9543, 9544, 4139], - "spawk", - [0, 1414, 1906, 1166, 4481, 2020, 3130, 3077, 15411, 4874, 6271], - [ - 0, 1473, 7208, 1512, 7009, 7201, 200, 1871, 1111, 590, 592, 6621, 6983, 6616, 7244, 4166, 4744, 3073, 6807, - 6876, 2585 - ], - [1, 2343, 9546], - [0, 0, 9571, 9581, 2399], - "innertext", - "highlights", - "similar", - "similarity", - [3, 2954, 9], - [2, 9551, 2714], - "ttl", - [2, 4635, 9553], - "dart", - [2, 9551, 9555], - "glsl", - [2, 9551, 9557], - "haxe", - [2, 9551, 9559], - "rust", - [2, 9551, 9561], - [2, 3064, 2204], - "erlang", - [2, 9551, 9564], - [2, 9551, 4333], - "-tokens", - [2, 9548, 9567], - "atom-language-diff", - [3, 9569, 14], - [0, 1166, 1178, 1596, 15418, 1177, 15421, 2323, 15423, 2384, 2494, 2510, 15424, 1209, 3421, 3756], - "nginx", - [2, 9570, 9572], - "url-t", - "o-object", - [2, 9574, 9575], - [2, 2287, 9576], - [3, 3114, 13], - "xpand-tabs", - [2, 9578, 9579], - [0, 1438, 3778, 1179, 1973, 15426, 1213, 15427, 15428], - "-headers", - [2, 7189, 9582], - [2, 3108, 9583], - [1, 2343, 9589], - "oniguruma", - "-stdout", - [2, 9261, 9587], - [0, 0, 0, 9590, 2523], - [0, 1444, 15321, 6270, 353, 15320, 15326, 15436, 15437, 15439], - "readme", - [1, 2343, 9596], - "formatted", - " highlighting", - [2, 5341, 9594], - [0, 9597, 9598, 2514, 2537], - [0, 15444, 9632, 1556, 15447, 6041, 15448, 15449, 3445, 3510, 15450, 15451, 4135, 15452], - [0, 4874, 5254, 7677, 1177, 1905, 2807, 1894, 4257, 91, 4543, 1984], - [1, 2343, 9600], - [0, 9601, 9602, 9603, 2537], - [0, 15458], - [ - 0, 811, 15460, 8850, 816, 842, 1006, 15463, 1009, 1011, 15465, 15467, 15469, 1540, 1596, 1610, 1177, 15471, - 1927, 1937, 1948, 1999, 2070, 2765, 2766, 2297, 2881, 2886, 2891, 2895, 2898, 6387, 2910, 15475, 2923, 5303, - 3220, 3222, 3536, 4042, 4052, 6390, 15478, 4073, 91, 4747 - ], - [0, 1424, 15480, 2382, 15481, 12075, 6398], - [1, 2343, 9605], - [0, 9606, 9607, 9608, 2443], - [0, 3493, 4548, 15488, 15487, 2654, 15486, 1754, 15502, 15491, 15499, 15495], - [ - 0, 4494, 4483, 2675, 2832, 1177, 2814, 1984, 2203, 1894, 4441, 442, 91, 4874, 2990, 13204, 19438, 15504, 1953, - 15505, 4523, 7677, 1942, 22839, 1982, 3703, 15507, 1895 - ], - [0, 15512, 2814, 3585, 15514, 57, 965, 6523, 1936], - [1, 2343, 9610], - [0, 9611, 9612, 9613, 2523], - [0, 1615, 15526, 3734], - [0, 1173, 14184, 1235, 1267, 1429, 1177, 2272, 2899], - [0, 1451, 3729, 6567], - [1, 2343, 9615], - [0, 9616, 9617, 9618, 2537], - [ - 0, 97, 15533, 8597, 15538, 13042, 1156, 1325, 15540, 1461, 1505, 12160, 1582, 1593, 1603, 15541, 15545, 15547, - 15548, 13047, 15550, 5100, 15551, 15553, 2752, 2822, 15554, 2272, 15555, 15556, 12172, 3220, 15559, 1894, 11196, - 15560, 15562, 3775, 11219, 11363, 15566, 15568, 15570, 15573, 3843, 3847, 15575, 15578, 3876, 3893, 3913, 4023, - 15579, 11264, 4163, 15580, 4484, 4545, 4649, 3348 - ], - [ - 0, 53, 61, 71, 73, 76, 78, 5806, 13052, 5835, 15585, 83, 5850, 5853, 87, 90, 7833, 7839, 7840, 11275, 4859, - 15587, 15592, 4863, 15594, 15596, 5087, 15598, 4870, 15600, 15602, 12179, 4880, 15605, 4883, 15606, 15607, - 11322, 1009, 1011, 1110, 1165, 1170, 1175, 1178, 1193, 1195, 1205, 13080, 5098, 15609, 15611, 15612, 15613, - 1426, 1437, 13086, 1525, 1610, 1628, 4912, 1639, 11336, 13093, 1843, 1845, 8160, 1177, 1879, 1895, 1922, 1938, - 1939, 1947, 1948, 1959, 15615, 2054, 2060, 11345, 2092, 2148, 2193, 2070, 2323, 2338, 2510, 13099, 2529, 2675, - 2686, 2697, 15616, 1192, 2832, 5102, 695, 13115, 2990, 1209, 11357, 13119, 15618, 13123, 3177, 3183, 3188, 3190, - 3191, 3213, 3216, 3222, 3427, 3463, 3561, 3618, 3720, 11204, 15619, 15622, 11362, 89, 3807, 3810, 3817, 3820, - 5106, 5108, 15624, 3846, 15627, 9340, 3992, 13124, 13127, 8304, 13128, 4039, 13129, 15629, 4320, 11384, 11389, - 4323, 11396, 4328, 4409, 4431, 4469, 91, 4549, 4027, 15630, 15632, 2924, 15635, 4689, 13152, 11401, 5038, 3354 - ], - [0, 15637, 4964, 89, 5128, 4627, 4963, 181, 5130, 4967], - [1, 2343, 9620], - [0, 9629, 9630, 9631, 2537], - "Monorepo", - "Angular", - "Web", - "Node", - "Nest", - "Jest", - "Cypress", - "CLI", - [0, 15648], - [0, 15645, 4874, 1894, 4448, 91, 10761], - [0, 2150, 2282, 6720, 7158, 6929, 2090, 2154], - "confbox", - [1, 2343, 9634], - [0, 0, 9635, 9636, 2523], - [0, 1470, 2675, 23535, 4255, 4389], - [0, 15656, 15658, 11857, 1973, 13735], - [2, 13512, 9638], - "-old", - [1, 2343, 9640], - [0, 9641, 0, 9642, 2523], - [ - 0, 182, 148, 6164, 164, 167, 6215, 137, 27531, 6127, 29468, 159, 15664, 177, 187, 153, 162, 180, 185, 191, 157, - 15667, 15670, 15672, 27537, 140, 15676, 6200, 6166, 143, 15678, 171, 116, 15681, 150, 155, 29542, 15685, 15687, - 6217, 15690, 15692, 122, 169, 15695, 119, 15697, 15700, 6173, 15703, 146, 6133, 6158, 15706, 15712, 111, 6168, - 15714, 15716, 174, 15720, 15724 - ], - [0, 6092, 1459, 6094, 6105, 6106, 6038, 1936, 6108, 6110, 6138, 6139, 6142, 6144, 6145, 5130], - [1, 2343, 9644], - [0, 0, 9645, 9646, 2523], - [0, 4481, 4042, 4441, 2665, 3117, 8850, 811, 816], - [0, 89, 1623, 5256, 6848, 1461, 614, 6435], - "EsBuild", - "Front-end", - "Backend", - [1, 2343, 9651], - [0, 9652, 9653, 9655, 2523], - [0, 4227], - [0, 1389, 1177, 1881, 2659, 3297, 4153, 4616], - "linter", - [0, 1623, 2632], - [1, 2343, 9660], - "Lint", - "ESLint", - "Testing", - [0, 9661, 9662, 9663, 2399], - [0, 1700], - [ - 0, 48, 53, 87, 92, 15742, 5087, 4874, 15745, 1193, 1503, 1610, 1701, 1177, 2020, 2675, 1192, 2990, 2991, 3377, - 1894, 3921, 4135, 15747, 91, 2924 - ], - [0, 2924, 1932, 4050, 202], - [1, 2343, 9665], - [0, 0, 0, 9666, 2523], - [0, 1111, 1468, 7009], - "Express", - [1, 2343, 9669], - [0, 9670, 8134, 9671, 4139], - [0, 15757, 4025], - [0, 1468, 1237, 3209, 1204, 2325, 15759, 15760, 15761, 5669, 6865, 7293, 6790, 2145], - [1, 2343, 9674], - "js-tokens", - [0, 9679, 0, 9682, 2523], - "const-enum", - [2, 1199, 9675], - [2, 4524, 6774], - [2, 1226, 9677], - [0, 2070, 2021], - "Swc", - "Tsc", - [0, 200, 9753, 15767, 15769, 15768, 7058, 7201, 15770, 15771, 15774, 1523, 15776], - [1, 2343, 9684], - [0, 0, 9685, 9686, 4139], - [0, 1166, 91, 1906], - [0, 200, 5403, 14907, 7009, 6048, 7201, 6938, 3656, 14908, 2585, 1781], - "@nestjs/schematics", - "@phenomnomnominal/tsquery", - "@date-fns/tz", - [1, 2343, 9691], - [0, 9693, 9694, 9695, 2537], - [3, 23750, 37, 8], - [0, 2353, 1856, 15786, 13824, 15788], - [0, 1177, 15793, 15797, 15801, 2675, 2990, 3421, 15804, 15805], - [0, 1111, 1473, 7201, 7009, 200, 4166, 3073, 6807, 4744], - [1, 2343, 9697], - [0, 9698, 9699, 9700, 2443], - [0, 4035], - [0, 4874, 1166, 91, 1906], - [0, 200, 13006, 1111, 15813, 5876, 15814, 15815, 6048, 7009, 7201, 6621, 4166, 6876], - [1, 2343, 9702], - [0, 0, 0, 9703, 34352], - [0, 200], - [2, 689, 2656], - [3, 691, 8], - [2, 9705, 3320], - "help", - [2, 689, 9707], - [1, 2343, 9713], - [3, 691, 14], - "plugins", - [2, 9710, 9711], - [0, 0, 9715, 9716, 2537], - "fancy-test", - [0, 1166, 3077, 15826, 91, 1906], - [0, 200, 1478, 6787, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921, 1781], - [1, 2343, 9718], - [0, 9719, 9720, 9726, 2399], - [0, 1512], - [0, 4170, 15833], - [3, 4866, 9], - "dent-string", - [2, 9721, 9722], - "xyquire", - [2, 6508, 9724], - [0, 200, 1512, 176], - [1, 2343, 9728], - [0, 9729, 9732, 9751, 2523], - [0, 1209, 4290, 1512], - "clean-stack", - "widest-line", - [0, 15841, 1429, 1481, 1596, 15843, 15844, 2323, 2436, 2463, 2541, 4193, 4196], - "rett", - "ier-config", - [2, 9733, 9734], - [2, 9705, 9735], - [2, 689, 1973], - [3, 4859, 9], - "ean-stack", - [2, 9738, 9739], - "@types/ejs", - "npapi", - [2, 5088, 9742], - [3, 9240, 10], - "ports-color", - [2, 9744, 9745], - [3, 7822, 10], - "dwrap", - [2, 9747, 9748], - "madge", - [0, 202, 1523, 3924, 200, 176, 15846, 15847, 3656, 1512, 10052], - " line", - [2, 1523, 9752], - [1, 2343, 9755], - [0, 9756, 9757, 9751, 2399], - [0, 4290], - [0, 1481, 1177, 1895, 1955, 1192, 15853, 15854, 1894], - [1, 2343, 9759], - [0, 9761, 8134, 9762, 2399], - [2, 1890, 4406], - [0, 4208, 4290], - [0, 15862, 15864, 2585, 7051, 6913, 200, 7009, 6048, 4166, 4289, 1111, 1871], - [1, 2343, 9764], - [0, 9775, 9795, 6936, 2537], - "paginate-rest", - [2, 1186, 9765], - [2, 7724, 9766], - [3, 9767, 16], - "request-", - "request-log", - [2, 9768, 9770], - [3, 9771, 18], - "st-endpoint-methods", - [2, 9772, 9773], - [ - 0, 1437, 4484, 2755, 1209, 4135, 2822, 15869, 2151, 4294, 688, 1110, 9730, 15871, 1107, 13223, 4290, 15872, - 15873, 2709, 15876, 4351, 15877, 15880, 15883, 15887 - ], - "-action", - "auth-action", - [2, 7724, 9777], - [3, 9778, 15], - "pp", - [2, 9779, 9780], - [2, 1182, 2995], - [2, 7724, 9782], - [3, 692, 11], - [2, 9784, 5460], - [2, 7724, 2190], - "update-", - "vers", - "in-files", - [2, 7854, 9789], - [2, 9788, 9790], - [2, 9787, 9791], - [2, 6324, 9792], - [2, 4131, 9793], - [ - 0, 1429, 1170, 2899, 1177, 4474, 9714, 91, 4856, 4874, 6503, 4870, 5254, 7637, 4864, 1431, 15891, 15893, 9740, - 1891, 15897, 9746, 9417, 1893 - ], - "octokit", - [3, 3450, 10], - [1, 2343, 9799], - [0, 9800, 9801, 9802, 2523], - [0, 7103], - [ - 0, 816, 10817, 5087, 4870, 4874, 27744, 1009, 1011, 15903, 15906, 1177, 15909, 1959, 2188, 1192, 1209, 4042, - 15911, 4468, 4474, 91 - ], - [0, 200, 91, 57, 7119, 7233, 7058, 5675, 1523], - "action-menu", - [2, 698, 9803], - [3, 9804, 21], - "sheet", - [2, 9805, 9806], - [3, 9804, 15], - "lert", - [2, 9808, 9809], - [2, 9808, 2944], - "nchor", - [2, 9808, 9812], - "rea", - [2, 9808, 9814], - "chart", - "flowchart", - [2, 5745, 9817], - [2, 9808, 9818], - "utocomplete", - [2, 9808, 9820], - [1, 2343, 9823], - [0, 9824, 9825, 9827, 2523], - [0, 15917, 1631, 15918], - [ - 0, 53, 87, 1195, 1429, 1610, 1177, 1881, 1895, 1938, 1955, 2675, 2297, 2878, 2881, 2900, 2918, 2925, 2990, 2899, - 1894, 4193, 4481, 4537, 2924, 4677 - ], - "vatar", - [0, 1492, 1585, 15921], - "badge", - [2, 698, 9828], - [3, 9829, 16], - [1, 2343, 9832], - [0, 9836, 9839, 9881, 2537], - "se-select", - [2, 9830, 9833], - [3, 9829, 15], - [0, 34216, 2020, 32794, 2755, 15926, 28429], - "readcrumb", - [2, 9835, 9837], - [0, 1166, 1906], - "-item", - [2, 9838, 9840], - "ulletin-board", - [2, 9835, 9842], - [3, 9843, 16], - "tton", - [2, 9844, 9845], - "-group", - [2, 9846, 9847], - [2, 698, 9026], - [2, 9849, 8657], - [3, 9850, 23], - [2, 9851, 6624], - [3, 9849, 16], - "rd", - [2, 9853, 9854], - [2, 9855, 9847], - [3, 9856, 19], - [2, 9857, 1283], - [3, 9855, 17], - "ousel", - [2, 9859, 9860], - [2, 9861, 9840], - "scader", - [2, 9853, 9863], - "-menu", - [2, 9864, 9865], - [3, 9866, 24], - "obile", - [2, 9867, 9868], - [3, 9866, 23], - [2, 9870, 202], - "panel", - [2, 9870, 9872], - [2, 9870, 1631], - [2, 9870, 6624], - [3, 9849, 15], - "ell", - [2, 9876, 9877], - "hart", - [2, 9876, 9879], - [0, 1492, 1585, 15928, 15929, 15930, 3917, 6033, 15931, 1490, 15932, 15933], - [1, 2343, 9883], - [0, 9884, 9885, 6162, 2537], - [0, 4290, 4294, 4726], - [0, 4874, 1009, 1011, 1414, 1429, 1437, 1610, 1177, 1938, 1953, 2321, 2899, 4039, 8689, 91], - [1, 2343, 9887], - [0, 0, 9888, 2514, 2487], - [0, 2276], - [1, 2343, 9890], - [0, 0, 9891, 9893, 2399], - [0, 1999, 4579, 4072], - "gauge", - [0, 5256, 6848, 1461], - [1, 2343, 9895], - [0, 9896, 0, 9897, 2523], - [0, 1474], - [0, 15953, 9628, 14777, 15955, 1478, 9892, 3924, 7201, 1398], - [1, 2343, 9899], - [0, 0, 9900, 9901, 2487], - [0, 1389, 15960, 2899, 3261], - [0, 1149, 2124, 1179, 15962, 15964], - [1, 2343, 9903], - [0, 9904, 9905, 9907, 2537], - [0, 2927], - [0, 4170, 2899, 1499], - "pie", - [0, 7009, 7201, 3741, 8622, 6875, 10098, 1499], - [1, 2343, 9909], - [0, 9034, 9910, 9911, 2523], - [0, 620, 3123], - [0, 1973, 2022, 6468], - [1, 2343, 9913], - [0, 9914, 9915, 9916, 2443], - [0, 6478, 15980, 2822, 15984, 15985], - [0, 1177, 1895, 2675, 1192, 2990, 3203, 1894], - [0, 4504, 15988, 15990, 1503], - [1, 2343, 9918], - [0, 9919, 9920, 9921, 2487], - [0, 15997, 15999, 16000, 16002, 16003, 16005, 16006], - [0, 16009], - [0, 6038, 1501], - [1, 2343, 9923], - [0, 0, 9924, 9926, 2399], - [0, 1734, 16015, 2600, 3105, 4545], - "fall", - [0, 5284, 1351, 1509, 4643], - [1, 2343, 9928], - [0, 0, 9929, 9926, 2537], - [0, 53, 87, 10688, 1505, 1734, 2600, 16021, 3105, 3758, 4545, 2924], - [1, 2343, 9946], - [3, 9880, 16], - "eckbox", - [2, 9931, 9932], - "-button", - [2, 9933, 9934], - [3, 9935, 23], - [2, 9936, 7227], - [2, 9876, 7877], - "lapse", - [2, 9938, 9939], - [2, 9940, 9840], - [3, 9941, 23], - "ition", - "transition", - [2, 9942, 9944], - [0, 9972, 9975, 10072, 2537], - "icker", - "or-picker", - [2, 9938, 9948], - [3, 9949, 20], - "select-", - [2, 9951, 9872], - [2, 9950, 9952], - "umn-list-group", - [2, 9938, 9954], - [3, 9955, 26], - [2, 9956, 5401], - [3, 9938, 16], - "mpany", - [2, 9958, 9959], - "nfig-", - "provider", - [2, 9961, 9962], - [2, 9958, 9963], - [3, 9964, 17], - "tainer", - [2, 9965, 9966], - "untry", - [2, 9958, 9968], - "rop", - [2, 9876, 9970], - [0, 6271, 11421], - "urrency", - [2, 9876, 9973], - [0, 2899, 4481, 1906], - "date-panel", - [2, 698, 9976], - [3, 9977, 20], - [2, 9978, 9947], - "-mobile-", - "first", - [2, 9980, 9981], - [2, 9979, 9982], - [3, 9977, 19], - [2, 9984, 6754], - [2, 9984, 176], - [3, 9977, 15], - "ept", - [2, 9987, 9988], - "ialog-box", - [2, 9987, 9990], - [3, 9991, 21], - [2, 9992, 1631], - [3, 9991, 16], - "vider", - [2, 9994, 9995], - "rawer", - [2, 9987, 9997], - [3, 9998, 16], - "op-roles", - [2, 9999, 10000], - [3, 10001, 19], - "times", - [2, 10002, 10003], - [3, 10001, 18], - [2, 10005, 2971], - [2, 10006, 9840], - [3, 10007, 23], - [2, 10008, 4403], - "ynamic-", - "scroller", - [2, 10010, 10011], - [2, 9987, 10012], - [2, 10013, 9840], - "espace", - [2, 698, 10015], - [3, 10016, 15], - "xception", - [2, 10017, 10018], - "fall-menu", - [2, 698, 10020], - [3, 10021, 15], - "ile-upload", - [2, 10022, 10023], - [3, 10024, 17], - [2, 10025, 2389], - [2, 10026, 8657], - [3, 10027, 22], - "ox", - [2, 10028, 10029], - [3, 10027, 21], - [2, 10031, 9872], - "loat-button", - [2, 10022, 10033], - [3, 10034, 19], - "bar", - [2, 10035, 10036], - "ing-", - "button", - "ing-button", - [2, 10035, 10040], - [3, 10034, 17], - "wchart", - [2, 10042, 10043], - [3, 10034, 16], - "uent-editor", - [2, 10045, 10046], - [2, 10022, 3469], - [2, 10048, 9840], - "ullscreen", - [2, 10022, 10050], - "grid", - [2, 698, 10052], - "-column", - [2, 10053, 10054], - [3, 10055, 19], - "manager", - [2, 10056, 10057], - "toolbar", - [2, 10056, 10059], - [3, 10053, 15], - "uide", - [2, 10061, 10062], - "hrapprover", - [2, 698, 10064], - [2, 698, 158], - "-viewer", - [2, 10066, 10067], - [3, 10066, 15], - "ndex-bar", - [2, 10069, 10070], - [0, 1473, 7208, 1623], - [3, 10071, 16], - "put", - [2, 10073, 10074], - "p-address", - [2, 10069, 10076], - [2, 698, 5433], - [3, 10078, 16], - "yout", - [2, 10079, 10080], - [3, 10078, 15], - [2, 10082, 2716], - [2, 10083, 9865], - [1, 2343, 10086], - [0, 0, 0, 10090, 2523], - "oading", - [2, 10082, 10087], - [3, 10088, 16], - [0, 7009, 592, 1473, 1111], - "cales", - [2, 10089, 10091], - "gon-user", - [2, 10089, 10093], - [3, 10094, 18], - "ut", - [2, 10095, 10096], - "mask", - [2, 698, 10098], - [3, 10099, 15], - "enu", - [2, 10100, 10101], - [3, 10102, 16], - "ssage", - [2, 10103, 10104], - "ilestone", - [2, 10100, 10106], - [3, 10107, 16], - "nd-map", - [2, 10108, 10109], - [1, 2343, 10112], - [0, 0, 10113, 10120, 2523], - [0, 1177, 1886], - [2, 10100, 3852], - [3, 10114, 16], - "nth-range", - [2, 10115, 10116], - [3, 10117, 20], - [2, 10118, 176], - [0, 1111, 7009, 1512], - [1, 2343, 10122], - [0, 10140, 10184, 10220, 2443], - "nav-bar", - [2, 698, 10123], - [3, 10124, 18], - [2, 10125, 4403], - [3, 10124, 15], - [2, 10127, 2304], - "umeric", - [2, 10127, 10129], - [2, 698, 5675], - [2, 10131, 9847], - "pager", - [2, 698, 10133], - [2, 10134, 9840], - [3, 10134, 16], - [2, 10136, 7251], - [3, 10134, 15], - [2, 10138, 9947], - [0, 4294, 16041], - "op-upload", - [2, 10138, 10141], - [3, 10142, 17], - [2, 10143, 8622], - [2, 10143, 6038], - [2, 10143, 2883], - [2, 10143, 2104], - "rogress", - [2, 10138, 10148], - "ull-refresh", - [2, 10138, 10150], - "qr-code", - [2, 698, 10152], - [3, 10153, 15], - "uarter-panel", - [2, 10154, 10155], - [3, 10156, 16], - "ery-builder", - [2, 10157, 10158], - [3, 697, 15], - "adio", - [2, 10160, 10161], - [2, 10162, 9934], - [3, 10163, 20], - [2, 10164, 7227], - [3, 10162, 16], - [2, 10166, 6864], - [3, 697, 16], - "cord", - [2, 10168, 10169], - [3, 10170, 17], - "ycle-scroller", - [2, 10171, 10172], - "ich-text-editor", - [2, 10160, 10174], - [3, 10175, 16], - "ver", - [2, 10176, 10177], - "oles", - [2, 10160, 10179], - [3, 10180, 16], - "w", - [2, 10181, 10182], - [0, 1173, 1267, 1437, 4387, 4389], - "scroll-text", - [2, 698, 10185], - [3, 10186, 20], - [2, 10187, 10036], - [3, 10186, 15], - "earch", - [2, 10189, 10190], - [3, 10191, 16], - [2, 10192, 4021], - "-dropdown", - [2, 10193, 10194], - [3, 10195, 21], - [2, 10196, 5131], - [2, 10196, 6624], - "ed-box", - [2, 10193, 10199], - [2, 10189, 1580], - "keleton", - [2, 10189, 10202], - [2, 10203, 9840], - "lider", - [2, 10189, 10205], - [2, 10206, 9934], - [2, 10207, 9847], - "plit", - [2, 10189, 10209], - "-list-item", - [2, 1902, 10211], - [2, 10189, 10212], - [3, 10213, 17], - "tistic", - [2, 10214, 10215], - [3, 10213, 16], - "eps", - [2, 10217, 10218], - [0, 6922, 2585, 1111, 7201, 7009, 4719, 176], - [1, 2343, 10242], - "witch", - [2, 10189, 10222], - [3, 700, 15], - "ab-item", - [2, 10224, 10225], - [3, 10226, 17], - [2, 10227, 10036], - [2, 10228, 9840], - [2, 10227, 2699], - [2, 10227, 591], - [3, 10226, 16], - "g", - [2, 10232, 10233], - [2, 10234, 9847], - "ext-popup", - [2, 10224, 10236], - "ime", - [2, 10224, 10238], - "-line", - [2, 10239, 10240], - [0, 0, 10243, 10265, 2487], - [0, 2025, 2272, 2899], - [3, 10241, 19], - [2, 10244, 9872], - [3, 10245, 20], - [2, 10246, 9947], - [2, 10247, 701], - [2, 10244, 6754], - [2, 10244, 1631], - [3, 10250, 20], - "pinner", - [2, 10251, 10252], - "line-item", - [2, 10239, 10254], - "oast", - [2, 10224, 10256], - [3, 10257, 16], - "ggle-menu", - [2, 10258, 10259], - "oltip", - [2, 10258, 10261], - "p-box", - [2, 10258, 10263], - [0, 200, 1523, 3504], - "ransfer", - [2, 10224, 10266], - "-panel", - [2, 10267, 10268], - [3, 10267, 16], - "ee", - [2, 10270, 10271], - [2, 10272, 9865], - [3, 10273, 19], - [2, 10274, 1631], - [2, 698, 9229], - "-dragger", - [2, 10276, 10277], - [3, 10278, 21], - [2, 10279, 3392], - [3, 10276, 15], - "ser", - [2, 10281, 10282], - "-account", - [2, 10283, 10284], - [3, 10285, 19], - [1, 2343, 10288], - [0, 10297, 10298, 10305, 2443], - "contact", - [2, 10286, 10289], - [2, 10286, 3193], - [2, 10291, 9847], - [2, 10286, 163], - "watermark", - [2, 698, 10294], - [3, 10295, 15], - [0, 16053, 16056, 3025, 16057], - [0, 1187], - "izard", - [2, 10296, 10299], - "year-range", - [2, 698, 10301], - [3, 10302, 19], - [2, 10303, 176], - [0, 6478, 1644, 7233, 7058, 5675, 14690, 57, 7119, 200, 1523, 3924], - [3, 1533, 10], - [2, 10306, 6082], - "vue-c", - [2, 10308, 544], - "opentiny", - "less-c", - [2, 10311, 544], - [2, 8924, 10312], - [3, 3197, 10], - [2, 10314, 544], - [1, 2343, 10317], - [0, 10318, 10319, 10320, 2537], - [0, 16053, 16064, 16066, 16057], - [0, 811, 816, 2829, 4042, 1187], - [0, 7009, 9753, 1521, 1179], - "esno", - [1, 2343, 10323], - [0, 0, 10324, 10325, 2537], - [0, 4481, 1192, 1177, 2203, 4468, 1894, 442, 91, 5087, 4874, 4523, 1939, 1895], - [0, 1525, 1523, 5675, 57, 200, 7233, 7058, 6478], - [3, 2517, 9], - [2, 10326, 134], - [2, 2522, 8754], - [1, 2343, 10330], - [0, 10331, 10332, 10333, 2523], - [0, 2070, 1680, 1209, 16085, 16078, 2151, 2720, 3183, 7915, 4296, 1707, 16082, 4300, 1652], - [ - 0, 3421, 1429, 3348, 2899, 4193, 2194, 4135, 1503, 3363, 48, 2708, 3752, 53, 94, 4131, 87, 3200, 1208, 16092, - 16088, 16090, 78, 1570 - ], - [0, 1528, 3721, 1671, 16096, 1527], - [1, 2343, 10335], - [0, 10336, 10338, 5265, 2537], - [0, 192, 6303], - "otterhttp", - [0, 6306, 6307, 26379], - "node.js", - "web framework", - [1, 2343, 10343], - [3, 17194, 17], - [0, 0, 10344, 10358, 2487], - [ - 0, 1173, 1178, 1198, 1230, 13982, 1264, 1280, 1503, 1610, 1742, 1177, 1895, 1955, 1192, 3170, 1894, 4039, 4042, - 4045, 4067, 4077, 4706 - ], - "header", - "-range-parser", - [2, 10345, 10346], - [2, 704, 1080], - [3, 703, 13], - "ntent-type", - [2, 10349, 10350], - [2, 988, 2706], - [2, 704, 10352], - [2, 704, 1000], - [2, 704, 1002], - [3, 706, 12], - [2, 10356, 995], - [ - 0, 4552, 1172, 6778, 16107, 5194, 16108, 16109, 1936, 8958, 16110, 3924, 16111, 3250, 16112, 3374, 6985, 16113, - 16114, 16115, 1871, 16116, 4301, 10381, 16117, 1283 - ], - [1, 2343, 10360], - [0, 0, 9839, 10361, 2487], - [0, 2013, 13771, 2018, 6868, 15535, 11631, 16123], - [1, 2343, 10365], - "es-escape-html", - [3, 10351, 19], - [0, 10375, 10377, 10378, 2523], - "disposition", - [2, 10364, 10366], - "encode", - "encode-url", - [2, 704, 10369], - [3, 10370, 12], - "rrors", - [2, 10371, 10372], - [2, 704, 4590], - [0, 1413, 16130, 1676, 12627, 16128, 4100, 4590], - "res", - [0, 1087, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342], - [0, 1536, 16518, 25386, 2663, 2026, 21665, 27, 3101], - [1, 2343, 10380], - [0, 10383, 9264, 2514, 2537], - "tag", - [2, 10371, 10381], - [0, 16136, 2713, 3923, 7231], - "send-file", - [1, 2343, 10386], - [0, 10387, 10388, 10390, 2537], - [0, 4094, 1437, 4747, 4459, 4165, 4351], - [ - 0, 2675, 1177, 1984, 668, 2203, 1894, 442, 91, 4874, 2990, 6479, 4892, 16151, 16150, 4523, 16149, 7677, 4103, - 9746, 22839, 16144, 1895, 1955, 16152, 23753, 10964 - ], - [2, 712, 1732], - [0, 16159, 13792, 12804, 1540, 1523, 16160], - [1, 2343, 10394], - "fined", - "undefined", - [0, 10395, 10396, 10398, 2537], - [0, 2856], - [0, 4874, 1414, 1509, 16166, 34218, 16167, 3583, 705, 4135, 4452, 4474, 91, 4545, 16168, 4745], - "randexp", - [0, 12084, 1541, 8309, 16172, 16174, 1263, 6639], - [3, 10389, 22], - "js-prettier-config", - [2, 10399, 10400], - "i-color", - [2, 9738, 10402], - [3, 7744, 9], - "tp-proxy", - [2, 10404, 10405], - "isnil", - [2, 6308, 10407], - [3, 4874, 9], - "@types/nock", - [1, 2343, 10412], - [0, 10414, 9839, 10415, 2537], - "@types/ramda", - [0, 16181, 8098, 2215, 34027, 16184], - [0, 1541, 1542, 13901, 8309, 6937, 16188, 1781, 2382, 16189, 7007, 14745], - "-and-tag-version", - [2, 1528, 10416], - "hai-friendly", - [2, 4914, 10418], - [3, 3028, 12], - [1, 2343, 10422], - [0, 10423, 10424, 10425, 2537], - [0, 1676, 2099, 3494, 4578], - [0, 1177, 2899, 3421, 4342], - [0, 5130, 5122, 2663, 1544, 16196], - "pact", - "pact-js", - " testing", - "ract testing", - [2, 3109, 10429], - "r driven testing", - [2, 6613, 10431], - [1, 2343, 10434], - [0, 0, 10435, 10436, 2443], - [0, 4616], - [0, 1544, 2026, 16202, 6347], - [1, 2343, 10438], - [0, 0, 10439, 2514, 2537], - [0, 1177, 1192, 4193], - [1, 2343, 10444], - "default", - "waapi", - "urls", - [0, 10445, 10447, 10448, 2537], - [0, 1676, 16211], - "arguments", - [ - 0, 11436, 192, 5467, 19181, 442, 5245, 6494, 7808, 4874, 9240, 1009, 1011, 1166, 1414, 1503, 1177, 1895, 1930, - 1955, 2026, 2040, 2193, 2675, 2990, 3230, 3400, 3446, 1894, 4257, 4342, 1531, 4508, 91 - ], - [0, 1544, 1550, 3230, 1577, 2026], - [1, 2343, 10450], - [0, 0, 10451, 10452, 2523], - [0, 11976, 7808, 4874, 7677, 2040, 4474, 91, 1983, 26744, 1984], - [0, 1544, 1552, 1577, 2026], - [1, 2343, 10454], - [0, 0, 10455, 10456, 4139], - [0, 8646, 4874, 7677, 1446, 16230, 1177, 1905, 16232, 1894, 16234, 15452, 4290, 91, 4543, 1984], - [0, 7201, 2942, 16237, 16238, 200, 14566, 4549, 3741, 16239, 1671, 1851, 16240], - [1, 2343, 10458], - [0, 0, 10459, 10460, 2523], - [ - 0, 1906, 1166, 1758, 16257, 2746, 1797, 7614, 3754, 16272, 16249, 16262, 16264, 16268, 16270, 4371, 16277, - 16279, 2675, 16263, 89, 16278, 1177, 16260, 5304, 16267, 1209, 16269, 4135, 16274, 16276, 16281, 2114, 16261, - 16271, 2608, 3257, 3416, 16282, 3824, 2036, 3985, 16275, 4545, 16280, 53, 16259, 2990, 16265, 16245, 1506, - 16251, 16273, 16256, 16248, 90, 3995, 1909 - ], - [0, 16284, 1283, 6624], - [1, 2343, 10462], - [0, 0, 10463, 10464, 2487], - [0, 1414, 1177, 1903, 1938, 1948, 1954, 1958, 1970], - [0, 1560, 27, 16290, 10376], - [1, 2343, 10467], - "fd-package-json", - [0, 0, 10468, 10469, 2523], - [0, 3421, 2899, 1177, 1693, 1954, 1938, 1958, 1903, 1970], - [0, 1562, 27, 990, 10376, 16296], - [1, 2343, 10471], - [0, 10472, 0, 10473, 2537], - [0, 18186, 10466, 3157, 18183, 16309, 13848, 28401, 16322], - [0, 1566, 16094, 13729, 3073, 200], - [1, 2343, 10475], - [0, 10476, 0, 10477, 34352], - [0, 3157, 16330, 16329, 1566], - [0, 200, 13326, 1566, 16094, 13729, 3073], - [1, 2343, 10479], - [0, 10480, 0, 10481, 2443], - [0, 16337], - [0, 1566, 16341, 16342], - [1, 2343, 10483], - [0, 0, 10484, 10485, 2537], - [0, 16349, 4384], - [0, 6270, 12938, 4225, 3053, 1388, 1676], - [1, 2343, 10487], - [0, 0, 10488, 10489, 2523], - [0, 29867, 7677, 16356, 91, 1984], - [0, 977, 16358], - [1, 2343, 10491], - [0, 10492, 9025, 10493, 2537], - [0, 977, 1581], - [0, 977, 2663], - [1, 2343, 10495], - [0, 10496, 10497, 10498, 2399], - [0, 16358, 1676, 16128, 4100], - [0, 1544, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342], - [0, 1544, 2026, 2663, 1577], - [1, 2343, 10500], - [0, 0, 0, 10501, 2537], - [0, 977, 16375, 16376], - [1, 2343, 10503], - [0, 10504, 10505, 10506, 2537], - [0, 16382], - [0, 1389, 3183, 3294, 16384, 3460, 16389, 4535], - [0, 1492, 1585, 1388], - [1, 2343, 10508], - [0, 10509, 10510, 10511, 2537], - [0, 27921, 2200, 4121, 3369, 4143], - [ - 0, 1700, 1192, 2675, 3144, 1622, 1177, 1701, 2203, 16407, 2924, 1894, 1610, 48, 442, 1193, 91, 53, 4874, 2092, - 2990, 3400, 192, 1953, 27928, 4257, 87, 4523, 16396, 1939, 1942, 68, 1938, 16398, 20281, 1982, 1895, 1955, - 19344, 16400, 5467 - ], - [0, 2924, 1932, 16410, 7004, 1585], - [1, 2343, 10513], - [0, 10514, 10515, 2514, 2537], - [0, 2070, 3181, 3188, 16415, 4431, 4558, 4747], - [0, 4039, 4389, 4387], - [1, 2343, 10517], - [0, 0, 7923, 10518, 2537], - [0, 16421, 11194, 1179, 16423, 16424, 16425], - [1, 2343, 10520], - [0, 10521, 10522, 10523, 2537], - [0, 3044, 1588, 16432], - [0, 4880, 4883, 91, 89, 3824], - [0, 89, 91, 11194, 11255, 16435], - [1, 2343, 10525], - [0, 10526, 10527, 10528, 2537], - [0, 1543, 16446, 16449, 16444, 6038, 2020, 3368, 4135, 4375], - [0, 16454, 1414, 2765, 4037], - [0, 1591, 5576, 200], - [1, 2343, 10530], - [0, 0, 0, 10531, 2523], - [ - 0, 6570, 6964, 6789, 7221, 6746, 7011, 7194, 7087, 6839, 6860, 6918, 6620, 6777, 16461, 6748, 7171, 6894, 6945, - 6743, 7309, 6837, 6644, 6634, 7259, 6797, 7061, 6608, 16462, 6726, 6828, 7275, 6569, 7144, 7108, 7027, 7263, - 6923, 6854, 7134, 6762, 7042, 6818, 6677, 6422, 6805, 1858 - ], - [1, 2343, 10533], - [0, 10534, 10535, 10536, 2537], - [0, 3427, 4590], - [0, 1087, 1177, 2026, 2899, 3421, 4342], - [0, 1594, 2026, 1544, 2663], - [1, 2343, 10538], - [0, 10539, 10540, 10541, 2487], - [0, 16473, 2702, 2822, 16474], - [ - 0, 7637, 4874, 16478, 1009, 1011, 16480, 1610, 1177, 16482, 1895, 1915, 1938, 1954, 1985, 2675, 2990, 15757, - 1894, 16484, 91, 1984 - ], - [0, 3001, 8309, 1541], - [1, 2343, 10543], - [0, 10544, 10545, 10546, 2537], - [0, 2822, 16491, 16492, 3183, 705], - [0, 2899, 3421, 4170, 4172, 4193, 1906], - [0, 4504, 1596], - [1, 2343, 10548], - [0, 10549, 10550, 10551, 2537], - [0, 16499, 2205, 3157], - [0, 1166, 2020, 3505, 16330, 1906], - [0, 13326, 200, 1585, 16502, 16499, 2090, 1586, 1496, 2150, 3101, 2070, 16503, 3275, 2062, 3719, 2382, 1563, 16504], - [1, 2343, 10553], - [0, 10554, 10555, 10556, 2537], - [0, 2212, 16513, 1448, 16509, 16512, 2685, 16511], - [0, 1414, 1166, 4494, 3297, 4193, 1177, 2203, 442, 16515, 91, 4874, 4454, 4523], - [0, 5284, 1598, 16517, 15514, 15362, 2814, 6710, 27, 2671, 13333, 2212, 705, 1002, 11996, 16518], - "@epic-web/invariant", - [1, 2343, 10559], - [0, 0, 0, 10560, 2443], - [0, 1599, 16523, 16526, 16528, 16524, 16530, 16531, 16532, 13580, 16533, 16534, 16536, 16537], - [1, 2343, 10562], - [0, 10563, 10564, 10565, 2523], - [0, 16542, 2713, 13892, 16543, 16544], - [0, 13817, 4100, 4255, 4387, 4389], - [0, 1616], - [1, 2343, 10567], - [0, 10568, 10569, 10570, 2523], - [0, 3082, 3427], - [0, 1192, 3744, 89, 3824, 2924], - [0, 89], - [1, 2343, 10573], - "degit", - [0, 10574, 10575, 10576, 2399], - [ - 0, 63, 16560, 1462, 1532, 16563, 16566, 1676, 2105, 2185, 2205, 2212, 16568, 2709, 16570, 2743, 2812, 1209, - 3021, 3093, 3157, 16571, 13233, 16572, 3527, 3544, 3561, 16573, 16576, 16578, 4002, 4207, 4400, 4431, 4597 - ], - [0, 1149, 1610, 2099, 2182, 1192, 3297, 16581, 4151, 16584, 4278, 4603, 1906], - [0, 1604, 3403, 1623, 16587], - [1, 2343, 10578], - [0, 10579, 10580, 10581, 4139], - [0, 6501, 5303], - [ - 0, 192, 442, 16596, 16597, 16602, 6061, 16607, 6063, 6065, 16608, 16612, 842, 16145, 5087, 4874, 6513, 1610, - 1177, 1895, 1939, 1955, 2675, 1192, 2990, 1894, 4131, 4193, 91, 4523 - ], - [0, 1605, 16615, 16617, 16618, 4116, 16619, 16621], - [1, 2343, 10583], - [0, 0, 0, 10584, 2537], - [0, 1605, 6400, 5995, 57, 1606, 16618, 4116, 16629, 5957, 12692, 14571, 16631], - [1, 2343, 10586], - [0, 0, 10587, 10588, 2537], - [ - 0, 30684, 33382, 16636, 16637, 33968, 33969, 16638, 33971, 17212, 4874, 1177, 16644, 1930, 1938, 1942, 1951, - 1953, 16647, 1958, 1964, 1982, 2203, 25209, 3124, 16649, 3390, 1894, 23535, 33974, 4508, 91, 16650 - ], - [0, 1605, 16631, 4116, 1608, 6400, 5995], - [1, 2343, 10590], - [0, 10591, 0, 10609, 2537], - [0, 10870, 16666], - [3, 804, 10], - [2, 10592, 8893], - [2, 10592, 8891], - [3, 10594, 12], - [2, 10595, 8896], - [2, 10592, 8905], - [3, 10597, 11], - "omutils", - [2, 10598, 10599], - "ragdrop", - [2, 10598, 10601], - [2, 10592, 8652], - [2, 10592, 8899], - [2, 10592, 3583], - [2, 10592, 8901], - "virtualdom", - [2, 10592, 10607], - [ - 0, 158, 12712, 7004, 16660, 16661, 16662, 16663, 16664, 29241, 29242, 29244, 29245, 29247, 29248, 1936, 1623, - 5284, 6400, 5122 - ], - [1, 2343, 10611], - [0, 10612, 10613, 10618, 2523], - [0, 10557, 1615], - [0, 31088, 21122, 4874, 7677, 23203, 1177, 1894, 91, 1984, 31103], - "@release-it/conventional-changelog", - [2, 812, 4072], - "cobertura", - "git-", - [0, 16674, 16676, 6574, 16697], - "git-cz", - [1, 2343, 10625], - "global-jsdom", - [2, 7627, 1177], - [2, 10622, 20], - "putout", - [0, 10626, 10628, 10629, 2523], - [0, 3310], - "quibble", - [ - 0, 3421, 1429, 3297, 2675, 2899, 4747, 4039, 4042, 4135, 1503, 2026, 2924, 4255, 1527, 91, 4856, 4874, 1364, - 2990, 4150, 4677, 6503, 4705, 192, 4257, 8849, 3198, 15277, 1652, 28710, 5467 - ], - [0, 1612, 27, 1002, 1862, 1149, 7003, 14571, 14566, 202, 89, 970, 1388, 6805, 7102, 4731, 6662], - "remark-github", - "toc", - "remark-toc", - [2, 4513, 9339], - [3, 4514, 16], - "dn-links", - [2, 10634, 10635], - "no-inherit", - [2, 4513, 10637], - [2, 4513, 3984], - [3, 10639, 17], - "-defaults", - [2, 1213, 10641], - [2, 10640, 10642], - [1, 2343, 10647], - "-prettier", - [2, 4549, 10645], - [0, 10649, 10662, 10664, 2487], - [3, 5410, 10], - [0, 4707, 16687, 16688], - "annotate", - "pin", - "specific", - "ations", - [2, 10652, 10653], - "anatomy", - "dissection", - "dissect", - [3, 10654, 13], - "specs", - [3, 2620, 12], - [2, 10660, 591], - [0, 1192, 2675, 1177, 3188, 4039, 1175, 1193, 2990, 192, 4257, 16692, 16694, 5467], - "spacing", - [0, 1614, 16696, 6574, 16697, 16699, 6987, 8429, 16701], - "speccer", - [1, 2343, 10668], - "grid-layout", - [0, 10669, 10670, 2514, 2523], - [0, 16710, 16713, 16716, 1600, 16719, 16721, 9207, 2713, 16722, 16725, 3779, 16726], - [0, 13614, 1177, 13817, 3421, 3438, 16728, 4100, 4135, 4389], - [1, 2343, 10676], - "@web", - "/shadycss", - [2, 4963, 10673], - [2, 10672, 10674], - [0, 0, 0, 10680, 2523], - "dom5", - "lazypipe", - "poly", - [ - 0, 1965, 1616, 16733, 16734, 16735, 16736, 16737, 16739, 16740, 16741, 16742, 16743, 16744, 16745, 16746, 16747, - 16748, 16749, 16750, 16751 - ], - "polymer-cli", - "polymer-", - [2, 10682, 6147], - "gulp-v", - "ulcanize", - [2, 10684, 10685], - "wct-browser-legacy", - [2, 1262, 3178], - [3, 806, 9], - [2, 1382, 5187], - [2, 10689, 10690], - "google-", - "clos", - [1, 2343, 10709], - "ure-compiler", - [2, 10693, 10695], - [2, 10692, 10696], - "iron", - [3, 4314, 10], - "-page", - [2, 10699, 10700], - [2, 10698, 10701], - [2, 10689, 10702], - [3, 10675, 15], - "webcomponentsjs", - [2, 10704, 10705], - "gen-closure-declarations", - [2, 10689, 10707], - [0, 10710, 10711, 10712, 2537], - [0, 1509], - [0, 1414, 1177, 16758, 1938, 1951, 1954, 1955, 2899, 16759, 3400, 1894], - [0, 16166, 57], - [3, 78, 24], - [3, 5731, 9], - [1, 2343, 10716], - [0, 10758, 10762, 10764, 2537], - "-assign", - [2, 5734, 10717], - [2, 10714, 10718], - [2, 10713, 10719], - "@metalsmith/layouts", - [3, 10721, 12], - [2, 10722, 1783], - [3, 807, 9], - "disable", - [2, 2827, 10725], - [2, 1884, 10726], - [2, 10724, 10727], - [3, 10728, 23], - "qx", - [2, 10729, 10730], - [3, 10728, 16], - "plugin-qx", - [2, 10732, 10733], - "app-", - "module-path", - [2, 10735, 10736], - "better-ajv-errors", - "cldr", - "console-", - "contr", - "ol-strings", - [2, 10741, 10742], - [2, 10740, 10743], - "core-js-", - [2, 10745, 6374], - [3, 4913, 14], - [2, 10747, 7877], - [3, 7681, 17], - "codeframe", - [2, 10749, 10750], - "fontkit", - "get-value", - "github-api", - "jstransformer-dot", - "ps-tree", - "set-value", - [ - 0, 16765, 34219, 16767, 16768, 34222, 16770, 16771, 1109, 1437, 16064, 1525, 28612, 16772, 16775, 16778, 16779, - 16780, 16781, 26385, 4135, 27921 - ], - "tap-colorize", - "unset-value", - "upath", - [0, 8778, 5254, 3170, 3181], - "dirsum", - [0, 16789, 16790, 1501, 15318, 15321, 16791, 16793, 16794, 671], - "qooxdoo", - "fontend", - [1, 2343, 10773], - "back-end", - "gui", - "binding", - "databinding", - "interfaces", - [0, 10774, 10775, 10776, 2537], - [0, 2713, 4227, 16799], - [0, 2899, 4170, 3130, 1413], - [0, 1623, 57, 5374, 5376], - "@mdi/font", - [1, 2343, 10781], - "@mdi/svg", - "@xmldom/xmldom", - [0, 0, 10782, 10789, 34352], - [0, 442, 16805, 16808, 1177, 3561, 4042, 4579], - "animate.css", - [3, 1369, 10], - [2, 10784, 45], - "eva-icons", - "line-a", - "line-awesome", - [0, 3561, 6425, 1623, 6432, 16811, 3205, 4327], - "ar", - "quasar", - "fonts", - "animations", - [1, 2343, 10795], - [0, 0, 10796, 10797, 2523], - [ - 0, 23339, 13204, 6503, 4874, 5542, 16818, 1177, 16821, 1895, 1955, 16824, 2675, 16825, 2832, 2990, 2899, 3377, - 1894, 28865, 29444, 91, 16827, 16831 - ], - [0, 1623, 5746, 3392], - "gpu", - "detect-gpu", - "gltfpack", - [1, 2343, 10803], - "@react-", - [0, 10812, 10813, 10819, 2537], - "three/drei", - [2, 10802, 10804], - [3, 10805, 13], - "fiber", - [2, 10806, 10807], - "processing", - [2, 3689, 10809], - [2, 10806, 10810], - [0, 16837, 3561, 16840, 3638, 16841, 16842, 3688, 4135], - [ - 0, 48, 53, 87, 192, 5467, 16405, 1193, 1610, 1622, 1701, 1854, 1177, 1895, 1938, 2092, 2675, 1192, 2780, 695, - 2969, 2990, 3144, 3177, 3400, 3618, 3672, 1894, 2278, 4111, 4257, 4294, 4307, 4333, 4334, 4027, 2924 - ], - "test-renderer", - [2, 10806, 10814], - [3, 10615, 16], - [2, 10816, 2528], - [3, 827, 17], - [0, 2924, 1623, 1194, 1002, 1204], - "actions", - [2, 10818, 10820], - [1, 2343, 10823], - [0, 10838, 10845, 10856, 2523], - "essentials", - [2, 10818, 10824], - "interactions", - [2, 10818, 10826], - [2, 10818, 3966], - [3, 827, 11], - [2, 813, 2942], - [2, 10829, 10830], - "preset-", - [3, 1603, 13], - [2, 10833, 1896], - [2, 10832, 10834], - [2, 10829, 10835], - [2, 10829, 89], - [0, 1637, 3561, 2805, 4121, 4143, 5180], - "-webpack5", - [2, 10837, 10839], - [2, 10829, 1975], - "__jest-dom", - [2, 6626, 10842], - [2, 7750, 10843], - [ - 0, 1700, 16858, 1192, 2278, 2675, 3144, 1622, 1177, 1701, 668, 2203, 4337, 2924, 16851, 1894, 1462, 1610, 48, - 442, 1193, 1628, 91, 53, 16850, 16854, 4874, 2990, 3400, 4111, 16860, 192, 1953, 27928, 16853, 4257, 87, 1939, - 1584, 1942, 1938, 16857, 20281, 1982, 1895, 1955, 3177, 19344, 16400, 5467 - ], - "@types/three", - "-image-diff-js", - [2, 1651, 10847], - [3, 1970, 16], - "orybook", - [2, 10849, 10850], - "r3f-perf", - [3, 6068, 15], - [2, 10853, 2481], - "suspend-react", - [0, 1637, 1623, 16858, 1462, 11538, 668, 2924, 1464, 16862, 16863, 3178, 2632, 6707, 6708], - [1, 2343, 10859], - "three-stdlib", - [0, 10861, 10869, 10871, 2537], - "threejs", - [0, 16868, 9378, 15488, 16870, 15487], - "hree-fiber", - [2, 3900, 10862], - "y-player-me", - [2, 3917, 10864], - "3D", - "avatars", - "glb", - [0, 4483, 1984, 91, 4874, 2654, 11976, 16874, 16877, 7677], - "@cropper/elements", - [0, 1623, 3585, 16879], - [1, 2343, 10873], - [0, 10885, 10889, 10890, 2537], - "@phryneas/ts-version", - [2, 5531, 2090], - [2, 5531, 2924], - [3, 4852, 12], - "__core", - [2, 10877, 10878], - [3, 10879, 14], - [2, 5223, 5651], - [2, 1181, 10881], - [2, 10880, 10882], - "@types/n", - [0, 3141, 4228], - "@types/nanoid", - [2, 4807, 3765], - [2, 7686, 2473], - [0, 1414, 16885, 668, 1177, 16889, 2899, 4042], - [0, 1623, 6892, 207, 57, 16891, 16892, 1179, 594, 5341, 7020], - [1, 2343, 10892], - [0, 0, 10893, 10899, 2537], - [0, 16805, 1393, 2070, 3561, 3566, 3672, 4135, 4320, 4323, 16898], - [3, 811, 14], - [2, 10894, 594], - "common", - "commondir", - "is-reference", - [0, 1623, 16897, 10654, 16900], - "locat", - "e-character", - [2, 10900, 10901], - "relative", - [2, 4013, 10903], - [1, 2343, 10907], - "commonjs", - [0, 0, 10908, 10909, 2537], - [0, 1173, 1264, 1503, 2228, 14352, 2759, 2899, 3954, 4019], - [0, 1623, 1867, 16906, 1871, 4990], - [1, 2343, 10913], - "is-builtin-module", - "is-module", - [0, 10914, 10917, 10918, 2537], - [0, 2984, 16912], - "capitalize", - [2, 4284, 10915], - [0, 1165, 3561, 16915, 16916], - [0, 1623, 15215, 3178, 16918, 16919, 3561, 6425], - [1, 2343, 10920], - [0, 10921, 10922, 10926, 2443], - [0, 28920, 30928, 1634, 3084], - [0, 23591, 23205, 1177, 1895, 1955, 2203, 1894], - "groq-js", - [3, 817, 8], - "@sanity/ui", - [0, 6829, 6977, 7146], - "@types/cpx", - [1, 2343, 10937], - "dotenv-flow", - [2, 10924, 1473], - [2, 10924, 45], - "@sanity/c", - [2, 10932, 1124], - [3, 3878, 10], - [2, 10934, 6346], - [2, 7686, 93], - [0, 0, 10943, 10945, 2537], - "pkg-utils", - [2, 10924, 10938], - "@portabletext/react", - [3, 10940, 14], - [2, 10941, 6081], - [ - 0, 53, 87, 92, 442, 16805, 33227, 16933, 16934, 5087, 13204, 4874, 15600, 16938, 1193, 1437, 1457, 1634, 1895, - 1955, 2126, 1192, 2832, 3141, 1894, 3980, 4494, 4495, 91, 4523 - ], - "cpx", - [0, 1623, 590, 91, 2124, 4532, 553, 7900], - "sanity", - "refractor", - "kdirp", - [2, 6502, 10948], - "-workshop", - [2, 10925, 10950], - "vitest-", - [1, 2343, 10954], - [0, 10955, 10956, 10965, 2523], - [0, 16944, 977, 2657, 1581], - [0, 3421, 2899, 1177, 1544, 4342, 1364, 1575, 1578, 1954, 1938, 1958, 1903, 1948, 1970], - [3, 9794, 18], - "reset", - [2, 10957, 10958], - [2, 10924, 10959], - "imple-", - "import-sort", - [2, 10961, 10962], - [2, 1967, 10963], - [0, 16944, 11590, 2663, 2026], - "API reference", - [1, 2343, 10968], - [0, 10969, 10970, 10971, 2537], - [0, 1642, 1645, 1647, 4280], - [0, 816, 6503, 4874, 1794, 2899, 1894, 4042, 4064, 4066, 4170, 4474, 91], - [0, 202, 1641, 16956, 57, 1644, 5374, 1646, 353, 3101, 8623, 16957, 5995, 4967], - [3, 9307, 12], - [2, 10972, 188], - [2, 7719, 57], - [2, 819, 10974], - [2, 4807, 1143], - "snippetz", - [2, 819, 10977], - [2, 10987, 14037], - [1, 2343, 10983], - "@unhead/vue", - "@vue", - [0, 0, 10985, 10986, 2523], - "@vueuse/core", - [0, 816, 6503, 4874, 1680, 1794, 2899, 1894, 4042, 4064, 4066, 4170, 4474, 91], - [0, 3101, 8623, 1641, 3048, 5995, 4967], - [3, 35505, 11], - "code-", - [2, 10988, 5342], - [2, 819, 10989], - [3, 818, 12], - [2, 10991, 5576], - "@scalar/o", - "as-utils", - [2, 10993, 10994], - [2, 819, 553], - "@scalar/t", - "hemes", - [2, 10997, 10998], - "toast", - [1, 2343, 11006], - "use-toasts", - [2, 819, 11002], - "@scalar/co", - [2, 11004, 4961], - [0, 0, 11007, 11009, 2523], - [0, 816, 6503, 4874, 1642, 16971, 1680, 1794, 2899, 2966, 1894, 4042, 4064, 4066, 4170, 4280, 4474, 91], - [2, 27553, 1794], - [0, 1641, 1644, 57, 6270, 16956, 3101, 5995, 4967], - "blocks", - [2, 10829, 11010], - [1, 2343, 11014], - [2, 5249, 11020], - [0, 0, 11015, 11019, 34352], - [0, 816, 6503, 4874, 1642, 1680, 1794, 2026, 2899, 1894, 4042, 4064, 4066, 4170, 4474, 91], - [2, 1029, 188], - "test-utils", - [2, 5334, 11017], - [0, 1641, 1646, 5374, 5995, 4967], - "flect.ownkeys", - "webpack-stats", - [2, 4049, 11021], - [1, 2343, 11024], - [0, 6203, 11025, 11029, 2537], - [0, 35960, 6503, 4874, 1217, 1596, 3183, 2899, 3421, 4193, 4468, 4474, 91, 4537, 2924, 4677], - [2, 4609, 7179], - "css-in", - "well-known-symbols", - [0, 1641, 16984, 16986, 1648, 1781, 16989, 16990, 16991, 16994, 16995], - [1, 2343, 11035], - "jected-by-js", - [2, 11027, 11031], - [2, 4609, 11032], - "media-mock", - [0, 11036, 11042, 5543, 4139], - [ - 0, 3261, 2070, 1512, 1209, 4593, 2089, 6532, 814, 1362, 17003, 3730, 1525, 2753, 1483, 12126, 6481, 17010, 6479, - 17007, 2709, 17011, 17009, 17000, 1874, 6475, 17002, 6470 - ], - "-tooling", - [2, 6147, 11037], - [2, 819, 11038], - "galaxy", - [2, 819, 11040], - [ - 0, 3421, 4449, 1429, 2899, 4193, 1177, 1544, 1593, 1290, 2151, 3257, 1894, 17013, 1596, 48, 1389, 4196, 53, - 1178, 1509, 4151, 94, 6525, 6530, 87, 1954, 1922, 3957, 1938, 1208, 1958, 1895, 1903, 1955, 1970, 14039 - ], - "reference", - [1, 2343, 11045], - [0, 0, 11046, 11047, 2537], - [0, 1257, 1264, 1280, 1389, 1177, 17019, 2665, 3188, 17020, 4389, 4415, 4535, 17021, 4650], - [0, 6926, 3265, 7818, 17025, 3348], - [3, 820, 8], - [2, 11048, 1932], - [1, 2343, 11055], - "@fastify/basic-auth", - "external", - "externals", - [2, 4065, 11053], - [0, 11056, 0, 11057, 2537], - [ - 0, 4449, 12675, 1437, 1673, 1676, 2020, 29952, 4753, 1398, 2992, 1209, 17031, 1458, 2089, 3729, 1362, 16078, - 1836, 2151, 3183, 17036, 1525, 4459, 4558, 6520, 1477, 1483, 8435, 1532, 2057, 3074, 3714, 17039, 17041, 2015, - 13860, 4351, 17042, 17047, 4375, 2744, 6515 - ], - [0, 13428, 1388, 1651, 17049, 11862, 11861, 11857, 4627, 17050, 8791, 17051, 17052, 1973, 5472], - [1, 2343, 11059], - [0, 11060, 11061, 2514, 2523], - [0, 1437, 17059, 4717, 1527, 3054, 6301, 17058], - [0, 1429, 2899, 4135, 1894, 4856, 1595, 6503, 3210, 4131], - [1, 2343, 11063], - [0, 11074, 11087, 11089, 2523], - [2, 823, 364], - [2, 823, 4030], - [3, 825, 16], - "query-s", - "elector-", - "shadow-dom", - [2, 11068, 11069], - [2, 11067, 11070], - "tiny-", - "tiny-types", - [ - 0, 17081, 17090, 17067, 17080, 17082, 17093, 17101, 17108, 1654, 17068, 17071, 14674, 17083, 17086, 1655, 1660, - 17104, 17089, 17098, 17074, 17096, 17075, 17078, 17097, 17091, 1658, 17107, 17092, 17103, 17100 - ], - "@integration/testing-tools", - [2, 823, 5710], - [3, 11064, 14], - "ucumber", - [2, 11077, 11078], - [2, 823, 2765], - [2, 5554, 36], - [2, 823, 11081], - [2, 823, 2899], - [3, 7744, 12], - [2, 11084, 2632], - "mocha-multi", - [0, 2899, 1177, 4042, 4614, 17113, 17110, 8850, 17112, 10615, 816], - "serenity-js", - [0, 1653, 965, 17116, 8221, 7521, 1424], - [1, 2343, 11091], - [0, 11092, 11094, 11098, 4139], - [0, 17122], - "@wdio/reporter", - [0, 816, 17081, 17098, 1177, 2832, 2899, 4042, 4073], - "@wdio/", - "@wdio/cli", - [3, 8255, 9], - [0, 1653, 17125, 17128, 17129, 17130, 17134, 7193, 6333, 4552], - [1, 2343, 11101], - "service", - [0, 11102, 11106, 11107, 2399], - [0, 1654, 17089, 17092, 17101, 17103], - "@wdio/d", - "ot-reporter", - [2, 11103, 11104], - [0, 14674, 1177, 2899, 4042, 4073], - [0, 1653, 17125, 16662, 17116], - "local-runner", - [2, 11095, 11108], - [2, 4386, 2903], - [2, 11095, 11110], - "@wdio/types", - [2, 2299, 2382], - [2, 3758, 1732], - [1, 2343, 11118], - "wdio", - [2, 11116, 2903], - [0, 0, 11119, 11120, 2523], - [0, 1177, 2832, 2899, 4042, 4073], - [0, 1653, 17125, 965, 17146, 17147], - [1, 2343, 11125], - [3, 826, 9], - "commons", - [2, 11122, 11123], - [0, 11135, 11136, 11139, 2487], - "@mochify/cli", - "@mochify/", - "driver-", - [2, 11128, 3758], - [2, 11127, 11129], - [3, 11130, 16], - [3, 824, 9], - [2, 11131, 11132], - [2, 11122, 7625], - [0, 17093], - [0, 17096, 1177, 2899, 4042, 4073], - "referee-sinon", - [2, 11122, 11137], - [0, 1653, 17125, 11812, 17116, 1424, 8221], - [1, 2343, 11141], - [0, 11142, 0, 11144, 2523], - [0, 2108], - "ts-dedent", - [0, 6400, 17159, 7521, 8537], - "csf-plugin", - [2, 10829, 11145], - [3, 10840, 17], - "dom-s", - [1, 2343, 11152], - "dom-shim", - [2, 11147, 11150], - [0, 0, 0, 11153, 2537], - [ - 0, 1662, 4380, 4383, 21029, 21038, 21039, 11483, 11487, 21054, 21052, 21042, 17164, 21057, 21050, 17166, 89, - 1623, 181, 188, 4627, 5130, 3287, 6400, 17171, 699, 29332, 3709, 34683, 12951, 29336 - ], - "addon", - "notes", - "organize", - [1, 2343, 11158], - [0, 0, 8134, 11159, 34352], - [ - 0, 17179, 3183, 14690, 10446, 7058, 6802, 200, 3368, 1525, 17180, 1523, 12986, 17181, 17183, 17184, 13565, 1644, - 57, 6478 - ], - [1, 2343, 11166], - [2, 41, 1512], - [3, 11161, 13], - "ssinjs", - [2, 11162, 11163], - [3, 40, 18], - [0, 11198, 11203, 2514, 2537], - "slick", - [2, 11165, 11167], - [3, 452, 18], - "-svg-icons", - [2, 6920, 11170], - [2, 11169, 11171], - "@pol", - "kadot/react-identicon", - [2, 11173, 11174], - "@polkadot/", - "util-", - "util-crypto", - [2, 11176, 11178], - [2, 19177, 11195], - "wasm-crypto", - [2, 11176, 11181], - [3, 5050, 14], - "tour", - [2, 11183, 11184], - "@zxing/browser", - "@zxing/", - [2, 11187, 6082], - "boring-avatars", - "list-react", - [2, 2117, 11190], - "jsqr", - "phosphor-react", - "qrcode", - "plugin-kit", - "qrcode.react", - "rc-cascader", - [ - 0, 17191, 1091, 1149, 1437, 1513, 1594, 1605, 2026, 2720, 17194, 3148, 3220, 3722, 705, 17195, 17196, 17198, - 4746, 4747 - ], - "rc-checkbox", - "ollapse", - "rc-collapse", - "rc-dialog", - [0, 1173, 1257, 1267, 1429, 2899, 4008, 7707], - "rc-drawer", - [1, 2343, 11214], - "opdown", - "rc-dropdown", - "rc-image", - "@humanfs/node", - "rc-input", - "-number", - [2, 11210, 11211], - "rc-mentions", - [0, 0, 11217, 2514, 2399], - "u", - "rc-menu", - [ - 0, 17218, 4494, 17219, 8538, 4193, 1177, 17220, 1209, 1984, 4508, 2109, 1894, 1596, 48, 17212, 3541, 4183, 4201, - 91, 53, 4874, 17221, 9689, 6513, 17209, 7725, 4870, 17206, 17214, 10875, 87, 17210, 7677, 5517, 92, 1011, 17223, - 1009, 9692 - ], - "otion", - "rc-motion", - "rc-notification", - "rc-pagination", - [1, 2343, 11230], - "rc-picker", - "rc-progress", - "rc-rate", - "rc-r", - "esize-observer", - [2, 11226, 11227], - "rc-s", - [0, 0, 11232, 2514, 2523], - "rc-segmented", - [0, 2899, 4535, 48, 53, 87], - "rc-select", - "teps", - "rc-steps", - "rc-switch", - [1, 2343, 11239], - "rc-table", - [0, 0, 11247, 11248, 2523], - "rc-tabs", - "extarea", - "rc-textarea", - "ree", - "rc-tree", - "-select", - [2, 11244, 11245], - [ - 0, 48, 53, 13693, 87, 6065, 1175, 1193, 1203, 1610, 1177, 1881, 1938, 1939, 17232, 2766, 1192, 2297, 2898, 2915, - 3213, 3220, 3222, 3275, 3697, 1894, 4042, 4045, 4073, 4201, 91 - ], - [0, 1673, 1666, 6901, 2700, 3220], - "rc-trigger", - [1, 2343, 11254], - "rc-upload", - "in-input", - [2, 3870, 11252], - [0, 11258, 11259, 11265, 2537], - "logo", - "qrcode-logo", - [2, 1246, 11256], - [0, 1326, 3299], - [0, 17240], - "uperellipse", - [2, 3890, 11260], - "scroll-", - "into-view-if-needed", - [2, 11262, 11263], - [0, 1149, 15001, 17242, 17244], - [3, 68, 15], - [2, 11266, 6424], - [3, 362, 16], - "css-prop", - [2, 1258, 11269], - [2, 11268, 11270], - [3, 7910, 12], - [2, 11272, 10177], - "@qixian.cs/github-contributors-list", - "@stackblitz/sdk", - [3, 827, 16], - [2, 11276, 591], - [3, 11011, 12], - "uild", - "er-webpack5", - [2, 11279, 11280], - [2, 11278, 11281], - [3, 8300, 15], - [2, 11283, 2855], - [2, 10829, 11284], - [3, 10841, 12], - "heming", - [2, 11286, 11287], - "tag.js", - [2, 5246, 11289], - "-axe", - [2, 5087, 11291], - [3, 11292, 12], - [3, 2779, 12], - [2, 11294, 3758], - [2, 11293, 11295], - "image-s", - "napshot", - [2, 11297, 11298], - [2, 11293, 11299], - [2, 5086, 3766], - "uppeteer", - [2, 5088, 11302], - "@types/q", - "@types/qs", - [3, 4882, 15], - [2, 11306, 4349], - "-wor", - [1, 2343, 11324], - "-words", - [2, 5342, 11310], - [2, 4881, 11311], - [3, 4884, 15], - "sizable", - [2, 11313, 11314], - "window", - [2, 4881, 11316], - "@types/thr", - "ottle-debounce", - [2, 11318, 11319], - "arning", - [2, 7820, 11321], - "antd-", - [0, 0, 11332, 11334, 2523], - "antd-img-crop", - "token", - "-pre", - "viewer", - "-previewer", - [2, 11326, 11329], - [2, 11323, 11330], - [0, 1906], - "array-move", - [0, 1675, 17251, 3046, 6925, 17252, 7051, 6760, 17253, 6882, 6870, 9233], - "bundlesize2", - "dekko", - [3, 3597, 9], - [3, 4926, 9], - "er-webpack", - [2, 11339, 4406], - [2, 4354, 11340], - [2, 11338, 11341], - [2, 11337, 11342], - "fetch-", - "fetch-jsonp", - "axe", - "jest-axe", - [2, 2769, 11299], - "jest-p", - [2, 11349, 11302], - "jsonml", - "react-e", - [1, 2343, 11358], - "react-element", - [2, 8137, 11354], - [2, 11351, 11355], - "lz-string", - [0, 11359, 11361, 11379, 2537], - [0, 3242], - "rc-footer", - [0, 1377, 1389, 1596, 2297, 2871, 2881, 2900, 2899, 3202, 4193, 1906], - "rc-tween-one", - "rc-virtual-list", - "react-f", - "ast-marquee", - [2, 11364, 11365], - [2, 5204, 11310], - [2, 3831, 11367], - "react-in", - "finite-scroll-component", - [2, 11369, 11370], - [3, 3882, 9], - "izable", - [2, 11372, 11373], - "react-st", - "icky-box", - [2, 11375, 11376], - "react-window", - [0, 1676, 3073, 6782], - "remark-lint", - [2, 2987, 4945], - [2, 3996, 11381], - "rome", - [2, 4942, 1894], - [3, 4946, 18], - [1, 2343, 11387], - [0, 0, 8134, 11402, 2537], - "ational-order", - [2, 11385, 11388], - [3, 4326, 22], - "no-i", - "d-properties", - [2, 2420, 11392], - [2, 11391, 11393], - [2, 7851, 11394], - [2, 11390, 11395], - "sylvanas", - "vanilla-", - "jsoneditor", - [2, 11398, 11399], - "xhr-mock", - [0, 1677, 17266, 1420, 17267, 15321, 13230, 15322, 1871, 2585, 6270], - [1, 2343, 11406], - "-front-matter", - [2, 4745, 11404], - [0, 11407, 11408, 11409, 2399], - [0, 17273, 17275, 17277, 17279, 2215, 3093, 3532, 17281], - [0, 1999, 17283, 3505, 3532, 4039], - [0, 17274, 17285, 1679, 7682, 4390, 17286, 17288, 2056, 4560], - [1, 2343, 11418], - [3, 829, 10], - "-studio/client", - [2, 11411, 11412], - [3, 11413, 18], - "model", - [2, 11414, 11415], - "abab", - [0, 0, 11419, 11423, 4139], - [ - 0, 48, 87, 92, 10614, 17296, 17212, 5601, 5087, 1009, 1011, 1198, 14065, 17298, 1622, 1177, 17300, 1930, 1939, - 1942, 1945, 1948, 1953, 17303, 17306, 1964, 17308, 2675, 1192, 17310, 2931, 2990, 3124, 3125, 3390, 17312, 1894, - 17314, 3708, 3980, 17318, 4493, 91, 17319 - ], - "async-mutex", - [2, 6269, 1871], - "color2k", - [0, 1680, 10381, 17323, 5194], - "presentable-error", - "expr-eval", - "ml-matrix", - [1, 2343, 11431], - "parse-color", - "-ast-parser", - [2, 3564, 11429], - [0, 0, 11435, 11441, 2523], - "matchall", - [2, 7315, 11432], - [2, 1871, 11433], - [0, 5087, 3165, 4468], - "@ava/typescript", - "inycolor2", - [2, 7750, 11437], - "trash-cli", - [2, 4480, 4408], - [0, 3597, 17329, 4552, 17331, 17332, 17335, 17337], - "Supernova", - "Design Systems", - "io", - "Supernovaio", - "SDK", - [1, 2343, 11455], - "Tokens", - "Design Tokens", - "Assets", - "Components", - "Documentation", - "Markdown", - "CMS", - [0, 11456, 0, 11457, 4139], - [0, 17342], - [0, 3048, 7002, 3426, 2051, 3583, 1698, 1496, 1585, 7880, 1697, 6899, 6803, 3432, 6693, 3743, 3583], - [1, 2343, 11459], - [0, 8856, 7938, 7939, 2537], - [1, 2343, 11461], - [0, 0, 11462, 11463, 2523], - [0, 1781, 2899, 1177, 1209, 4039, 3363, 1362, 17352, 2025, 4535, 1693, 1951, 3200], - [0, 1687, 17354, 3797, 17358], - [1, 2343, 11465], - [0, 0, 11466, 11467, 2523], - [0, 17363, 2899, 1177, 2759, 1317, 1596, 17366, 3044, 5476, 17370, 17373, 17374, 811, 17377], - [0, 17380, 17382, 17383, 5472], - [1, 2343, 11469], - [0, 11471, 11472, 11473, 2399], - "@svitejs/changesets-changelog-github-compact", - [ - 0, 17391, 1417, 17392, 15308, 17395, 17399, 17400, 17403, 17406, 2756, 13635, 3433, 3435, 17407, 17409, 17411, - 17413, 17416 - ], - [0, 13614, 1158, 1159, 17418, 1177, 2133, 17421, 2569, 17425, 2708, 3410, 3421, 5619, 4103, 4135, 4389], - [0, 5501, 4162, 3797], - [1, 2343, 11475], - [0, 0, 11488, 11490, 2537], - "okie", - [2, 4860, 11476], - "devalue", - "esm-env", - "mrmime", - "sade", - "tiny-glob", - [2, 21032, 1932], - [3, 5244, 10], - [2, 11484, 2255], - "dts-buddy", - [3, 21031, 18], - [0, 2899, 4170], - "official", - [0, 1696, 2051, 1697, 6899, 1695, 1496, 1698, 1781], - [1, 2343, 11492], - [0, 0, 11493, 11494, 34352], - [0, 4874, 17439, 2747, 17440, 4042, 4055, 4067, 4389, 4474, 91, 4535], - [0, 1698, 1697, 2051, 1585, 1496, 6899], - [1, 2343, 11499], - "-inspector", - [2, 840, 11496], - "hmr", - [0, 11500, 11502, 11503, 2523], - [0, 2205, 2743, 17447, 17450, 3478, 11424, 4207], - "vitefu", - [0, 1166, 1317, 4400, 4481, 1906], - [ - 0, 6865, 1586, 17453, 17455, 7293, 14858, 17456, 17457, 4050, 17458, 4051, 6790, 17459, 4039, 7074, 2070, 17461, - 2090, 6857, 7204, 2150, 17462 - ], - [3, 839, 11], - [1, 2343, 11507], - "vite plugin", - [0, 11508, 11509, 11510, 2399], - [0, 1700, 3157, 11424], - [0, 1166, 2020, 17468, 1906], - [ - 0, 13326, 200, 6865, 1700, 7293, 14858, 17456, 17457, 4050, 17458, 4051, 6790, 17459, 4039, 7074, 2070, 2090, - 1586, 6857, 7204, 2150, 17462, 16697 - ], - [1, 2343, 11523], - "element", - "elements", - "ant-elements", - [2, 5257, 11514], - [2, 5875, 11515], - "@svgr/", - "@svgr/core", - "plugin-jsx", - [2, 11517, 11519], - [3, 11520, 13], - [2, 11521, 4361], - [0, 11524, 11527, 11528, 2487], - [0, 29654, 28415], - "svgr", - [2, 4670, 1194], - [0, 17474, 17477, 4481, 1906], - [ - 0, 1862, 814, 1702, 17479, 6703, 2434, 17481, 17484, 2013, 14824, 3286, 17485, 1702, 1149, 7003, 6567, 1362, - 17487, 6754, 3778 - ], - [1, 2343, 11530], - [0, 11531, 11535, 11537, 2399], - [ - 0, 1676, 2856, 4747, 2687, 1209, 4135, 2822, 814, 17495, 15648, 1420, 3181, 17497, 3249, 1595, 2107, 4025, 58, - 17501, 101, 17494, 5320, 14035 - ], - "unter", - "@swc/counter", - "@swc/types", - [ - 0, 3421, 2899, 1177, 4170, 3709, 2151, 1894, 1610, 48, 3752, 91, 53, 1178, 17504, 85, 94, 87, 1951, 1959, 1879, - 1938, 1208, 1895, 1947, 1955, 1198, 13052 - ], - "@napi-rs/cli", - [0, 4354, 17507, 3383, 6666, 1703, 7190, 4796, 4797], - "swc", - "swcpack", - "tsc", - [1, 2343, 11542], - [0, 0, 11543, 11544, 2487], - [0, 1317, 1311, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2759, 2899, 4100, 4538], - [0, 17514, 17515], - [1, 2343, 11546], - [0, 11547, 11548, 2514, 2537], - [0, 1676, 13736, 2205, 17522, 3170, 3183, 3539, 17523, 814], - [0, 17527, 2675, 17529, 3400, 4255], - [1, 2343, 11550], - [0, 0, 8134, 11551, 2399], - [0, 8958, 17537, 13735, 6589, 17539, 1501, 1871, 2585, 4225, 17540, 16630], - [1, 2343, 11553], - [0, 11556, 11557, 11558, 2523], - "@rtsao/scc", - [2, 18997, 4966], - [0, 15427], - [0, 36688, 6503, 4874, 17547, 1177, 17554, 2020, 17546, 4294, 4483, 36684, 91], - [0, 13735, 1709], - [1, 2343, 11560], - [0, 0, 11561, 11562, 2487], - [ - 0, 3421, 4481, 1429, 2297, 2899, 1177, 4042, 2203, 2924, 1610, 4535, 442, 91, 53, 2900, 1195, 2925, 13388, 94, - 87, 4523, 4681, 2904, 5517, 1208, 2921 - ], - [0, 1687, 7222, 3797, 7163, 2585, 1781, 1623, 5284], - [1, 2343, 11564], - [0, 11565, 11566, 11567, 4139], - [0, 1687, 28365], - [ - 0, 442, 19194, 17579, 5087, 4874, 17580, 17584, 1165, 1406, 1492, 1584, 1628, 1637, 1177, 1939, 1958, 2092, - 2203, 2036, 17589, 2651, 2675, 17591, 17592, 1192, 2990, 3123, 3177, 3188, 3368, 3561, 3566, 3613, 3618, 3672, - 1894, 4468, 4469, 4474, 91, 4523, 4027, 2924, 4677, 4681, 4705 - ], - [0, 3358, 1687, 3721, 7153, 3924, 17595, 17597, 6843, 5342, 3721, 1473, 1936, 1713, 17599, 17600], - [1, 2343, 11569], - [0, 11570, 11571, 11572, 2537], - [0, 17610], - [0, 5087, 4874, 1009, 1011, 1177, 1895, 17613, 1915, 1938, 1192, 1894, 4468, 4493, 4508, 91], - [ - 0, 17615, 17618, 17619, 17620, 17616, 17621, 17622, 5284, 17625, 17626, 676, 91, 17627, 6869, 4799, 17629, - 17630, 202, 9624, 17631, 17632, 17634, 17635, 17637, 17640, 17641, 17642, 17643, 2218, 17644, 17645, 17647, - 3403, 17648, 17649, 17651, 17652, 17653, 17656, 17657, 9981, 7193, 17659, 17660, 17661, 17662, 17665, 17666, - 17667, 17669, 17673, 17675, 17677, 17680, 17679, 11996, 17683, 17686, 17687, 17689, 17691, 17692, 17695, 17696, - 17697, 17700, 17702, 17705, 2382, 6956, 17706, 17710, 6957, 17711, 17712, 17713, 17714, 17715, 17716, 17717, - 17718, 17720, 17721, 17722, 6789, 17723, 17724, 17726, 17727, 17729, 17730, 17731, 17732, 17733, 614, 6910, - 17734, 11600, 17735, 17737, 17739, 6681, 17740, 1745, 17116 - ], - [1, 2343, 11574], - [0, 0, 11575, 11576, 2487], - [0, 1429, 1431, 2228, 2273, 2283, 2300, 2272, 2839, 3006, 2899], - [0, 1429, 15385, 1388, 5472], - [1, 2343, 11578], - [0, 11579, 11580, 11581, 2537], - [0, 17752, 17754, 1723, 2760, 3345], - [0, 2899, 3699], - [0, 6355, 5995, 4967, 17758], - [1, 2343, 11583], - [0, 11584, 11585, 11586, 2487], - [0, 4484, 4548, 17763, 7658, 347, 7660, 2069, 17766, 7663, 17768, 7664, 7665, 17770], - [0, 4481, 1192, 7671, 1177, 4487, 1787, 1894, 1610, 91, 4874, 17772, 7672, 7678, 7681, 7685, 1011, 1009], - [0, 1721, 5592, 8549, 5576, 202, 7692], - [1, 2343, 11588], - [0, 11599, 0, 2514, 2537], - [3, 850, 25], - "tokens", - [2, 11589, 11590], - [2, 11589, 45], - [3, 4323, 18], - "ass-guidelines", - [2, 11593, 11594], - [3, 7846, 11], - "rettier", - [2, 11596, 11597], - [0, 4535, 2098, 3460], - [2, 6910, 591], - "patterns", - [1, 2343, 11603], - [0, 11604, 11606, 11610, 4139], - [0, 16053, 17786, 17787, 17788, 2036, 3127, 17798], - "gfm-footnotes", - [0, 17805], - "web ", - [2, 11607, 4963], - "ui library", - [0, 1745, 1783], - [1, 2343, 11620], - "symbiote.js", - "symbiote", - "frontends", - [2, 3166, 11614], - " application", - [2, 5207, 11616], - " elements", - [2, 5317, 11618], - [0, 11621, 0, 11623, 2487], - [0, 2829], - "shadow dom", - [0, 1727, 1745, 1776, 17813, 1783, 1932], - "shadow root", - "ructable stylesheets", - [2, 5257, 11625], - "adopted stylesheets", - "custom ", - [2, 11628, 3583], - [2, 6883, 11629], - "pubsub", - [1, 2343, 11641], - "import maps", - "cdn imports", - " imports", - [2, 2671, 11635], - "reacti", - "ve html attributes", - [2, 11637, 11638], - "MIT", - [0, 0, 0, 11642, 34352], - [0, 17818, 17819, 7518, 5398, 5995, 3250], - [1, 2343, 11644], - [0, 11645, 9264, 11646, 2399], - [0, 17826, 17827, 7092], - [0, 17829, 17830], - [1, 2343, 11648], - [0, 11649, 11650, 11651, 4139], - [0, 1170, 4747, 1733, 17838, 29861, 17835], - [0, 1429, 2899, 2026, 1364], - [0, 1745, 2275, 1973, 2295, 1739], - [1, 2343, 11653], - [0, 11654, 11655, 11656, 2399], - [ - 0, 5923, 17835, 17846, 1091, 13426, 17849, 17851, 17853, 1170, 17838, 29861, 1759, 17850, 11663, 10342, 3536, - 3549, 17859, 4459, 824 - ], - [0, 1703, 2026, 2899, 4135], - [0, 1745, 1973, 2295, 1739], - [1, 2343, 11658], - [0, 11659, 0, 11660, 34352], - [0, 1525, 3127, 2151, 4545, 2600], - [0, 1745, 1739, 1179, 17867, 1509], - [1, 2343, 11662], - [0, 11664, 0, 11610, 2537], - "jq-web", - [0, 1794, 17872, 5639], - [1, 2343, 11666], - [0, 11667, 11668, 11669, 2399], - [0, 17877, 28367, 28371, 17881, 3747, 4391, 3348], - [0, 1362, 1429, 3152, 2899], - [0, 17878, 17884], - [1, 2343, 11671], - [0, 11672, 11673, 11674, 2537], - [ - 0, 17889, 17890, 17892, 1292, 17893, 1415, 17895, 16166, 17896, 17898, 17899, 9254, 17900, 17901, 17904, 17905, - 17906, 17907, 2720, 17909, 17910, 17911, 3171, 3310, 17914, 17915, 17916, 4039, 17917, 17919, 17920, 4135, - 17921, 17922, 17923, 4545, 17924, 4746 - ], - [0, 17929, 17930, 16966, 1509, 17931, 3220, 17934, 17936], - [ - 0, 5353, 6147, 17939, 9381, 200, 6354, 1509, 7234, 4643, 17944, 3304, 5001, 17945, 17946, 15141, 5130, 1179, - 17948, 202, 1644, 57, 8924, 3902, 8632, 12478, 5354, 17950, 4990, 6435, 5122, 17951, 10340 - ], - [1, 2343, 11676], - [0, 0, 11677, 11678, 2523], - [0, 5366, 4874, 7677, 22839, 1317, 33261, 35609, 1177, 1938, 1942, 91, 1984], - [0, 4967, 5995, 2844, 7020, 1776], - [1, 2343, 11680], - [0, 0, 11681, 11682, 2487], - [ - 0, 53, 87, 442, 5583, 811, 8850, 816, 10615, 1165, 1387, 1536, 1854, 1177, 1895, 2203, 3125, 15197, 3400, 3561, - 3584, 3605, 3613, 1894, 4039, 4042, 10854, 2278 - ], - [0, 1739, 17964, 17965, 1745, 1179, 5284, 676, 1783, 5980, 1932, 16630, 17966], - [1, 2343, 11684], - [0, 11685, 11686, 11687, 4139], - [0, 17971, 17972, 2654, 3183, 4545, 17974], - [0, 4384], - [0, 2195, 1783, 1745, 9591, 57, 17977, 17978, 17979], - [1, 2343, 11689], - [0, 11690, 11691, 11692, 4139], - [ - 0, 53, 5216, 58, 101, 104, 1437, 1457, 1687, 17986, 9322, 7610, 2070, 17988, 2600, 2714, 2822, 17989, 1209, - 12427, 17990, 17995, 17997, 3532, 3921, 3984, 3988, 3989, 18000, 10632, 814, 4300, 18002, 4555, 12449, 18004, - 18005, 4747 - ], - [0, 18007, 1652, 18009, 1177, 1895, 2151, 2675, 1192, 2845, 2990, 3203, 1894, 4257, 4449], - [0, 1745, 4525, 1776, 18011, 57, 5351], - [1, 2343, 11694], - [0, 11695, 11696, 11697, 2523], - [0, 18016, 18018, 1676, 18019, 18020, 18023, 3013, 4545], - [0, 4874, 2228, 2291, 2300, 3006, 3200, 16092, 4193, 4436], - [0, 18028, 18031, 1748, 18036, 13531, 18037, 18035, 6599], - [1, 2343, 11699], - [0, 11700, 11701, 11702, 2537], - [ - 0, 6084, 2164, 2070, 1437, 89, 1843, 1209, 3188, 1291, 1637, 2026, 3561, 3725, 705, 4167, 7799, 4438, 2151, - 2267, 1525, 3824, 1461, 3560, 4001, 53, 18042, 104, 1165, 2600, 3123, 18051, 18052, 18055, 18056, 7610, 85, 94, - 101, 3816, 18050, 87, 18045, 18047, 90, 1874, 1845, 61, 78 - ], - [0, 4039, 17996, 2149, 18059], - [0, 1745, 18061, 18063, 467], - [1, 2343, 11704], - [0, 11705, 7923, 11706, 2523], - [0, 18068, 1497, 9892, 2577, 2586, 2608, 6327, 18070, 8114, 3181, 3971, 18071, 4549, 18072], - [0, 467, 6327, 18074, 1745], - [1, 2343, 11708], - [0, 11709, 11710, 11711, 2487], - [0, 97, 1639], - [ - 0, 28581, 29292, 48, 53, 92, 29293, 29294, 29492, 1009, 1011, 1178, 1195, 1177, 1938, 1947, 1951, 1959, 2025, - 2070, 2814, 2297, 2881, 2895, 26470, 2900, 2904, 2918, 2921, 2925, 2899, 4039, 33564, 4193, 91, 2924 - ], - [0, 1751, 5128, 965, 5592, 18080, 590, 2013, 18081, 4289, 1751, 1227, 18082, 1623], - [1, 2343, 11713], - [0, 11714, 11715, 11716, 2537], - [0, 18089, 15487, 18087], - [0, 1192, 1177, 1448, 4468, 1894, 91, 5087, 4874, 2654, 1895, 1011, 1009], - [0, 1936, 6523, 8924], - [1, 2343, 11718], - [0, 0, 11719, 11720, 4139], - [0, 1429, 1177, 2228, 2240, 2273, 2281, 2283, 2298, 2822, 2297, 2878, 2881, 2895, 2900, 2904, 2899, 1894, 4135], - [0, 965, 158, 18097, 8924, 1936, 1424, 8221, 18048], - [1, 2343, 11722], - [0, 11723, 11724, 11725, 2487], - [0, 37513], - [ - 0, 53, 87, 5583, 816, 6373, 10615, 1006, 4874, 1610, 1895, 1955, 2814, 2832, 2297, 2876, 2881, 2895, 2908, 2910, - 18103, 3183, 3400, 3697, 1894, 2907, 18102, 4039, 4042, 4057, 18106, 4076, 4484, 91, 1906 - ], - [0, 965, 4741, 1936, 8221, 18110, 1965, 18112, 18113, 2574, 7131, 18114], - [1, 2343, 11727], - [0, 0, 11728, 11729, 2399], - [0, 3421, 1177, 1596, 3697, 12847], - [0, 1283, 2062, 2869, 17950], - [1, 2343, 11731], - [0, 0, 11732, 11733, 2537], - [0, 4874, 6323, 4193, 4255, 4257, 4384, 91], - [0, 1759, 1263, 6890, 6639, 6436, 1541, 6937], - [1, 2343, 11735], - [0, 11736, 11737, 11738, 2523], - [0, 1759], - [0, 4874, 4255, 4257, 4384, 91], - [0, 1759, 18132, 6436, 18135, 18137, 1263, 6890], - [1, 2343, 11740], - [0, 11741, 11742, 11743, 2537], - [0, 2212, 3532, 3477, 18143, 3093, 2096, 1679, 18145, 2188, 18142, 1560], - [0, 1906, 1166, 3297, 18147, 4039, 3505, 18148], - [0, 1764, 7682, 27, 705, 1002], - [1, 2343, 11745], - [0, 11746, 11747, 11748, 34352], - [0, 1764, 12650, 4039], - [0, 5175, 2675, 2899, 4216, 4255], - [0, 1764, 2195, 17978, 17977, 12468, 18157, 4390, 7682, 18158], - [1, 2343, 11750], - [0, 11751, 11752, 11753, 2537], - [0, 1768, 1770, 1777, 1782, 1784, 1779], - [0, 1177, 4039, 442, 91, 4874, 4523, 1011, 1009], - [0, 1767, 1745, 200, 1776, 1367, 1783, 1781], - [1, 2343, 11755], - [0, 11756, 11757, 11758, 4139], - [0, 2205, 1770, 18170, 18173, 1777, 1782, 18174, 1784, 1779], - [0, 1192, 1177, 4039, 3363, 4468, 442, 91, 5087, 4874, 5571, 4523, 1011, 1009], - [0, 1767, 1745, 200], - [1, 2343, 11760], - [0, 11761, 11762, 11763, 2537], - [0, 18183], - [0, 1192, 1177, 4039, 4468, 442, 91, 5087, 4874, 5571, 4523, 1011, 18186, 1009], - [0, 1767, 1745], - [1, 2343, 11765], - [0, 11766, 11767, 11768, 2537], - [0, 18192], - [0, 1192, 1177, 4039, 4468, 442, 91, 5087, 4874, 5571, 4523, 1011, 1009], - [0, 1767, 1745, 1283], - [1, 2343, 11770], - [0, 11771, 11772, 11773, 2537], - [0, 1241, 1776, 18201], - [0, 1192, 1177, 4039, 4468, 1587, 442, 91, 5087, 4874, 18203, 5571, 4523, 1011, 1009], - [0, 1767, 1745, 1776], - [1, 2343, 11775], - [0, 11776, 11777, 11778, 2537], - [0, 3105, 2600, 3117], - [0, 1192, 1177, 4039, 4468, 442, 91, 5087, 4874, 5571, 4523, 7639, 1011, 1009], - [0, 1767, 1745, 1367], - [1, 2343, 11780], - [0, 0, 11767, 11781, 4139], - [0, 1767, 1745, 1781], - [1, 2343, 11783], - [0, 11784, 11767, 11785, 2523], - [0, 3117], - [0, 1767, 1745, 1783], - [1, 2343, 11787], - [0, 11788, 11789, 11790, 2537], - [0, 2081, 2700, 3427], - [ - 0, 53, 14170, 13051, 18225, 1178, 18228, 1610, 1700, 1866, 1177, 18229, 1895, 1922, 1935, 1947, 1955, 1959, - 18230, 2126, 2323, 2338, 2361, 2368, 18233, 2396, 2409, 2419, 2494, 2541, 1192, 1894, 89, 3824, 3904, 18235, - 4431, 4537, 18237 - ], - [0, 18239, 6038, 89, 18241], - [1, 2343, 11792], - [0, 11793, 11794, 11805, 2523], - [0, 8712, 18248], - [0, 18254, 18255, 1429, 1651, 18259, 2297, 2881, 2900, 18260, 2923, 2899, 3198, 3347, 5362, 2278, 4193, 4196], - "tent-type", - [2, 11484, 11795], - [1, 2343, 11798], - [0, 26964, 0, 26991, 34352], - "a-parser-js", - [2, 7817, 11799], - "null-loader", - [2, 4049, 2098], - "tanem-scripts", - "ua-parser-js", - [0, 18263, 18266, 18267, 9229], - "images", - "img", - "scal", - "able-", - "vector-", - "ics", - "graphics", - [2, 11810, 11812], - [2, 11809, 11813], - [2, 11808, 11814], - [1, 2343, 11817], - [0, 11818, 11819, 2514, 2523], - [0, 4747, 4487, 18272, 2151, 18275, 4300, 2851, 18277, 18279, 18282], - [0, 1177, 4874, 4892, 4864, 1011, 18285, 18290, 1009], - "query-core", - [2, 959, 11820], - [1, 2343, 11823], - [0, 11824, 0, 11825, 2537], - [0, 28142], - [0, 1747, 1788, 2382, 18035, 5995, 200, 18295, 2663], - [1, 2343, 11828], - [2, 964, 3709], - [0, 11829, 11830, 7831, 2537], - [ - 0, 12393, 12394, 11275, 842, 12396, 9363, 12397, 12399, 12400, 12403, 1461, 12467, 12406, 1582, 1699, 12409, - 1835, 12412, 12415, 12419, 7610, 12421, 2572, 2579, 2584, 12422, 2613, 2646, 12424, 2822, 3070, 12427, 12429, - 3412, 3547, 9054, 12431, 3725, 3786, 11219, 11240, 3788, 11244, 3789, 3810, 5564, 3846, 12435, 12438, 3963, - 12441, 3978, 12443, 9340, 3988, 3992, 3999, 2278, 7799, 12444, 12445, 4549, 4555, 12447, 1002, 12448, 12449, - 12452 - ], - [ - 0, 192, 5467, 7634, 12455, 12458, 7637, 12459, 4874, 12461, 8149, 4880, 4882, 4883, 12462, 12463, 1177, 10321, - 2071, 2079, 12471, 12472, 2675, 2990, 1894, 3706, 3708, 89, 3824, 4320, 4474, 91, 1984, 12473, 12475 - ], - [1, 2343, 11834], - [3, 7637, 10], - [2, 11832, 977], - [0, 11841, 11844, 7831, 2487], - "@github/webauthn-json", - "better-", - "better-docs", - [3, 1895, 17], - "act", - [2, 11838, 11839], - [ - 0, 12393, 12394, 11275, 842, 12396, 9363, 12397, 12399, 12400, 12403, 1461, 12405, 1582, 1699, 12409, 12452, - 1835, 12412, 12415, 12419, 7610, 12421, 2572, 2579, 2584, 12422, 2613, 2646, 12424, 2822, 3070, 12427, 12429, - 3412, 3547, 9054, 12431, 3725, 3786, 11219, 11240, 11244, 3810, 5564, 3846, 3963, 12441, 3978, 12443, 9340, - 3988, 3992, 3999, 2278, 7799, 12445, 4549, 4555, 12447, 1002, 12448, 12449 - ], - "hanko", - "passkey", - [ - 0, 192, 5467, 7634, 12455, 12458, 7637, 12459, 4874, 12461, 4880, 4882, 12462, 12463, 1177, 2071, 2079, 12472, - 2675, 2990, 1894, 3706, 3708, 89, 4320, 4474, 91, 1984 - ], - [1, 2343, 11848], - "webauthn", - "passcode", - [0, 0, 11849, 2514, 2523], - [0, 4389, 4430], - [1, 2343, 11851], - [0, 11852, 11854, 7395, 4139], - [ - 0, 18313, 18315, 18316, 18317, 18322, 97, 8597, 18328, 18332, 18333, 18334, 18336, 1461, 1582, 1673, 18339, - 18340, 18344, 18347, 18349, 18351, 18354, 18355, 18357, 18358, 18360, 18362, 18364, 18365, 18368, 18370, 18371, - 18372, 18374, 18376, 18378, 18380, 18381, 18382, 18383, 18385, 18386, 18387, 18389, 18391, 18392, 18394, 11264, - 4427 - ], - "kcd-scripts", - [ - 0, 13175, 13178, 5076, 13181, 11267, 11976, 13187, 7833, 7837, 7839, 7840, 368, 7948, 11273, 13188, 8998, 13189, - 13192, 643, 692, 11274, 10875, 11275, 966, 968, 972, 974, 13194, 13196, 13198, 4864, 11290, 13200, 13203, 5087, - 11292, 11296, 11300, 11301, 13204, 4870, 7892, 4874, 13205, 13207, 13210, 8149, 6510, 11305, 4880, 4882, 4883, - 11312, 11315, 5254, 13213, 13214, 11320, 11322, 1009, 1011, 1086, 13078, 11325, 13215, 11331, 1170, 1437, 1448, - 13221, 13223, 1610, 1613, 11336, 1759, 1789, 13228, 8161, 1177, 1879, 1895, 1915, 1924, 1938, 1939, 1947, 13231, - 1948, 1959, 1961, 1982, 2071, 11345, 2151, 2193, 2070, 12424, 2665, 2686, 2696, 2742, 2758, 1192, 11347, 2771, - 2780, 2784, 11348, 11350, 2814, 2832, 11356, 5102, 2990, 1209, 13232, 11357, 3183, 3213, 3310, 3330, 3412, 3445, - 3467, 13233, 3536, 3549, 1894, 3703, 3717, 3725, 3758, 3763, 11360, 11362, 11363, 89, 3810, 13235, 3824, 4934, - 11366, 11368, 11371, 3843, 11374, 3885, 11377, 3957, 3978, 3984, 3985, 3988, 11380, 13240, 11382, 3999, 4039, - 13241, 4135, 4164, 4183, 4201, 13243, 11397, 4390, 4391, 4072, 4494, 4508, 91, 11400, 13245, 2924, 4676, 11401 - ], - [1, 2343, 11856], - [0, 0, 11858, 11859, 2399], - "integration", - [0, 192, 5467, 19193, 442, 1177, 1895, 1951, 1955, 2675, 2990, 2899, 1894, 4042, 4170, 4257], - [0, 4552, 1149, 14629, 18402, 1794, 3048, 1862, 6917, 14824, 5995, 4967], - [1, 2343, 11863], - "end-to-end", - "e2e", - [0, 11864, 11865, 11866, 2443], - [0, 4484, 18407], - [ - 0, 51, 53, 104, 18282, 18277, 18409, 603, 811, 816, 6373, 5087, 1009, 1011, 1437, 1525, 1787, 668, 1177, 2151, - 2205, 2675, 1192, 2771, 2272, 3090, 3445, 4042, 4073, 4127, 4135, 4072, 4468, 91 - ], - [0, 1795, 18411, 15480, 18412, 17116, 18413, 18415, 1424, 8221], - "ria-query", - [2, 9165, 11867], - "aria-query", - [2, 7320, 2825], - [2, 1752, 11870], - [1, 2343, 11873], - [0, 11885, 11886, 11887, 2537], - "n-case", - "jest-in-case", - "-ser", - "ializer-ansi", - [2, 11876, 11877], - [2, 8746, 11878], - [3, 2802, 11], - "select-p", - "rojects", - [2, 11881, 11882], - [2, 11880, 11883], - [0, 18420, 2096, 18423, 2390, 18425, 18426, 18427, 1209, 3181, 18428, 3544, 4431, 4597, 4600, 4747], - [ - 0, 4856, 4864, 18432, 4870, 6503, 4874, 9725, 6513, 6512, 18435, 18438, 18440, 4892, 1429, 2012, 2151, 2188, - 2899, 3421, 3752, 4039, 4193, 4196, 4474, 4487, 91 - ], - [0, 18420, 2041, 2649, 18442, 18443, 6589, 18444], - [1, 2343, 11889], - [0, 11892, 11900, 11901, 2537], - "css.escape", - "redent", - [0, 2763], - [2, 552, 2203], - [3, 2782, 23], - "sixteen", - [2, 11894, 11895], - [3, 4057, 15], - "elete", - [2, 11897, 11898], - [0, 91, 68, 1389, 1177, 14707, 1776, 3084, 2899, 4535], - [0, 1283, 17950, 16284, 1797], - [1, 2343, 11903], - [0, 11904, 11905, 11908, 2537], - [0, 1437, 1209, 18456], - [ - 0, 3297, 1082, 1149, 2228, 2899, 4193, 4237, 1177, 2814, 3220, 4135, 1168, 1330, 2924, 18458, 18459, 1362, 3460, - 1894, 4431, 2025, 2071, 7915, 2240, 18463, 1389, 53, 11801, 1178, 1195, 18464, 17568, 87, 1954, 2258, 2247, - 1938, 2253, 2281, 1958, 1895, 1903, 1955, 1970, 18461 - ], - "atcher-utils", - [2, 8763, 11906], - [0, 1798, 14059, 8173], - "@callstack/eslint-config", - "@rel", - "mify/jest-serializer-strip-ansi", - [2, 11910, 11911], - [1, 2343, 11914], - [0, 7936, 7938, 7939, 2523], - [1, 2343, 11916], - [0, 11917, 0, 11919, 2487], - [0, 4874, 2057, 18473], - "dotenv-cli", - [0, 1804], - [1, 2343, 11921], - [0, 11922, 11923, 11927, 2537], - [0, 1437, 4747, 1458, 2151, 18479, 18480, 18482, 18484, 18488, 18174], - [0, 4892, 4864], - "@esbuild-plugins/node-modules-polyfill", - "@ph.fritsche/scripts-config", - [3, 11925, 13], - [ - 0, 1804, 9381, 6147, 7242, 1161, 1808, 4405, 18493, 1896, 18494, 4750, 18495, 8433, 18496, 18497, 18498, 18499, - 18500, 18501, 18502, 18503, 13322 - ], - "toolbox", - [2, 11926, 11928], - [3, 11300, 13], - [2, 11930, 11874], - [3, 7690, 15], - [2, 11932, 2203], - "-lib-coverage", - [2, 2759, 11934], - [3, 11935, 13], - "report", - [2, 11936, 11937], - [2, 4227, 591], - [2, 11936, 11939], - "istanbul-", - "reports", - [2, 11941, 11942], - [3, 6551, 9], - "jest-s", - "r-ansi", - [2, 7909, 11946], - [2, 11945, 11947], - [1, 2343, 11950], - [0, 11953, 11954, 11955, 2537], - "-scripts", - [2, 6579, 11951], - [ - 0, 18509, 18473, 18511, 18513, 18514, 18518, 1676, 2057, 18145, 2151, 18521, 18524, 18525, 18527, 2072, 18528, - 814, 4135, 4748 - ], - [0, 1009, 1011, 1166, 1400, 1503, 1177, 1903, 1920, 1938, 1954, 1958, 3421, 3539, 4193, 4481, 4508, 91], - [0, 1804, 1808, 6996, 1896], - "@ember/app-blueprint", - [1, 2343, 11962], - "aram", - "regexparam", - "tseslint", - "tinyhttp", - [0, 11963, 11964, 11919, 2399], - [0, 2057, 18537], - [0, 4389, 4255, 18540, 3505], - [1, 2343, 11966], - [0, 11967, 11580, 11581, 2487], - [0, 1437, 2152, 2760, 18545], - [1, 2343, 11969], - [0, 11970, 11971, 2514, 4139], - [0, 18552], - [0, 2228, 18555, 2236, 2273, 2281, 2298, 2766, 2814, 2297, 2881, 2895, 2898, 2912, 3006, 1209], - [1, 2343, 11973], - [0, 11975, 11979, 11980, 2523], - [2, 976, 4590], - [0, 1156, 1191, 1699, 3373, 4023, 4427], - "@biomejs/biome", - [3, 4343, 10], - [2, 11977, 1612], - [ - 0, 18566, 18569, 1173, 1175, 1195, 1198, 1208, 1212, 1220, 18571, 1264, 1277, 18574, 1429, 1457, 1584, 1596, - 18575, 1610, 1628, 1863, 1177, 18580, 1916, 1937, 17585, 2092, 18581, 2323, 2332, 18582, 2504, 2600, 2651, 2843, - 13110, 2297, 2881, 2886, 2900, 18260, 2921, 2923, 2925, 18584, 3105, 3107, 18587, 3112, 3177, 2899, 3342, 3463, - 3561, 3732, 4039, 4111, 18590, 4193, 4196, 4307, 18592, 4537, 18595, 4027, 188, 4634, 4639, 4645, 18599, 2924, - 4677, 4681, 4693 - ], - [0, 13449, 188, 4963], - [1, 2343, 11982], - [0, 11983, 11984, 11985, 2537], - [0, 1363, 18609, 18610, 18611, 2713, 18613, 18616], - [0, 1377, 1596, 1177, 2228, 2236, 2240, 2256, 2258, 2281, 17567, 2311, 2759, 2899], - [0, 18619, 18620, 18621, 18622], - [1, 2343, 11987], - [0, 11989, 11990, 11991, 2537], - "headers", - [0, 18627, 18629, 18632, 2646, 18633, 1209, 3361], - [0, 192, 5467, 1166, 1448, 1610, 1797, 1177, 1909, 2114, 2675, 2990, 18637, 3421, 18634, 3754, 3985, 3995, 1906], - [0, 1559, 1823, 16284, 2934, 18639, 18640, 18643, 18645, 18646, 18647, 3361, 18648, 3754, 18649, 1283, 5354, 4714], - [1, 2343, 11994], - "ipaddr.js", - [0, 0, 11997, 2514, 2523], - "net", - "network", - [0, 442, 18657, 4874, 18659, 7677, 1177, 1895, 1955, 18660, 1894, 18661, 4474, 91, 4523, 1984], - [1, 2343, 11999], - [0, 12000, 12004, 12005, 2399], - [ - 0, 30697, 27276, 11956, 18740, 18684, 14959, 18693, 18733, 18735, 18687, 1378, 18737, 1381, 18717, 18720, 18695, - 18686, 18747, 18683, 1437, 1458, 18689, 1536, 1543, 18671, 18678, 18679, 18668, 1687, 18753, 12923, 18758, - 12925, 18704, 2020, 2021, 2026, 2098, 2105, 18745, 2151, 14939, 12929, 12471, 2070, 14940, 18728, 18701, 18708, - 2659, 2712, 2720, 18673, 18702, 1209, 3105, 18726, 3181, 3237, 3368, 3386, 18428, 18669, 3560, 18714, 18722, - 18675, 814, 14562, 18730, 18667, 4135, 12937, 18710, 18698, 1241, 4423, 4438, 18670, 4648, 18692, 7801, 18666, - 31963, 31947 - ], - [3, 975, 11], - "ccepts", - [2, 12001, 12002], - [ - 0, 14938, 1385, 1429, 1431, 18761, 15264, 1540, 18774, 18771, 1177, 1895, 18766, 1951, 1953, 2116, 18706, 2832, - 2960, 2899, 3297, 3421, 1894, 6021, 4294, 4342, 4421, 4449, 36864, 4699, 4707, 18764, 18760 - ], - [0, 1896, 18776, 12589, 200, 18777, 18778, 18779, 837], - [1, 2343, 12007], - [0, 12008, 12013, 12014, 2537], - [ - 0, 5222, 71, 5757, 5759, 5809, 5830, 5832, 83, 5889, 87, 97, 18784, 18787, 18790, 18795, 1212, 18801, 18687, - 1378, 18695, 18747, 1496, 18803, 18807, 18704, 14562, 4135 - ], - "ntent-", - [2, 12009, 10366], - [2, 981, 12010], - [3, 985, 11], - [ - 0, 53, 18809, 18811, 18812, 18813, 18815, 1178, 1385, 1429, 1499, 18867, 1532, 18671, 1593, 18679, 18823, 1825, - 18825, 1830, 18829, 18832, 18833, 18834, 18835, 18839, 1177, 18840, 1954, 18706, 18841, 2899, 2907, 3957, 6021, - 814, 4039, 2924 - ], - [0, 1172, 18777, 18844, 1825, 5197, 5198], - "ncode-url", - [2, 12012, 12015], - [1, 2343, 12018], - [0, 12019, 12020, 12021, 2487], - [0, 18852, 18855, 18687, 18865, 14938, 14939, 18708, 18868, 12937, 4648], - [ - 0, 53, 68, 71, 5757, 83, 5889, 97, 18809, 18812, 18872, 18787, 1381, 1385, 1429, 18867, 1540, 18823, 1825, 1827, - 18873, 18825, 18829, 18832, 18833, 18834, 18835, 18839, 18889, 18892, 18894, 1177, 1895, 18840, 1951, 1953, - 1955, 18895, 2116, 18841, 2899, 1894, 2907, 3773, 3980, 14944, 4320, 4323, 11598, 2924 - ], - [0, 18844, 1825], - [1, 2343, 12023], - [0, 12024, 12025, 12028, 4139], - [0, 18901, 18906], - [0, 816, 10817, 4874, 2968, 4039, 4042, 4494, 91], - [3, 12011, 18], - [2, 12026, 998], - [0, 1831, 1936, 1623, 4412, 18909], - [1, 2343, 12030], - [0, 0, 0, 5708, 4139], - [1, 2343, 12032], - [0, 0, 12033, 12034, 4139], - [0, 2899, 1177, 2759, 1954, 1938, 1958, 1903, 1970], - [0, 10368, 1833, 1002], - [1, 2343, 12036], - [0, 12037, 9264, 12038, 2537], - [0, 3441], - [0, 3101, 7046, 7241, 18924, 12706, 4966, 6703], - [1, 2343, 12040], - [0, 12041, 12043, 2514, 2537], - [0, 2215, 4388], - "tsparticles", - [0, 8780, 5087, 4874, 1622, 1177, 20281, 2675, 1192, 2990, 3144, 1894, 91], - "particles.js", - "particles", - "particlesjs", - "particle", - "jsparticles", - "xparticles", - "particles-js", - [1, 2343, 12052], - [0, 12057, 12064, 12065, 2537], - "particles-bg", - "-vue", - [2, 12053, 12054], - "particles-ts", - [0, 1104, 4294], - "particles.ts", - [3, 2638, 9], - "ticles-js", - [2, 12059, 12060], - [3, 12061, 15], - [2, 12062, 1722], - [0, 4874, 2398, 2720, 2899, 3421, 3742, 91], - [ - 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 8622, 1836, 1179, 8623, 8624, 6847, 8625, 2720, 8626, 8628, 5284, - 202, 6710, 3741, 3742, 8630, 8631, 3925, 8632, 4989, 8633, 2184, 8634, 7009, 6621, 181, 8635, 4758, 8636 - ], - "vue-particles", - "ngx-particles", - [2, 1101, 12045], - [1, 2343, 12077], - "ground", - [2, 12047, 12070], - "vuejs", - "preactjs", - "angularjs", - "html5", - "web-design", - [0, 12078, 12085, 12095, 4139], - [0, 7272, 12240, 3757, 19647], - "webdesign", - "css3", - "vtt", - "animated", - "background", - "conf", - [0, 13614, 1159, 9254, 1177, 2011, 2708, 3410, 3421, 4103, 4389], - "confetti", - "works", - "fireworks", - "fireworks-js", - "confetti-js", - "confettijs", - "fireworksjs", - "canvas-", - [2, 12093, 12086], - [0, 18089, 18943, 18944, 1936, 10368, 15103], - "apk", - "flickity", - [1, 2343, 34419], - "@d-fischer/shared-utils", - [3, 1005, 9], - "all", - "api-call", - [2, 12100, 12102], - [2, 12100, 10896], - "jose", - [0, 1429, 2675, 2899, 1899], - [0, 6971, 18951, 18952, 998, 6956], - "twitch", - [1, 2343, 12110], - [0, 12111, 12112, 12113, 2523], - [0, 2003, 4430], - [0, 4387, 4389], - [0, 6639, 6436, 1389, 14927, 353, 4225, 8309], - [1, 2343, 12115], - [0, 0, 12116, 12125, 2537], - [ - 0, 53, 13051, 85, 87, 192, 5467, 17584, 1175, 1178, 1193, 1195, 1177, 1881, 1895, 1938, 1955, 18964, 2070, 2675, - 1192, 3183, 6331, 4750, 1894, 10623, 2924, 4677, 4707, 18966 - ], - [1, 2343, 12568], - [2, 3273, 6543], - [3, 439, 18], - "regexpp", - [2, 12119, 12120], - [3, 5552, 23], - [2, 12122, 3007], - [2, 1010, 1995], - [0, 5001, 1263, 6639, 18523, 18968, 18969, 18971], - "title-case", - [2, 3138, 9102], - "pecific-snapshot", - [2, 11945, 12128], - [3, 8722, 10], - "-mdxjs", - [2, 12130, 12131], - [2, 3167, 12132], - [3, 5551, 24], - "to-typescript-types", - [2, 4120, 12135], - [2, 12134, 12136], - [1, 2343, 12139], - [0, 12140, 12141, 12143, 2537], - [ - 0, 18976, 1448, 1850, 18980, 6914, 18982, 18984, 18986, 18989, 17403, 18990, 18992, 18993, 3044, 3431, 13635, - 3435, 3438, 18994, 3775, 18995, 18997 - ], - [0, 1173, 13998, 1261, 1177, 1879, 1938, 1947, 1959, 2708, 2832, 4039, 4103], - "pastoralist", - [0, 5284, 19001, 19003, 1973, 6071, 89, 2130, 5472, 19005, 19007, 6969, 2899], - "cript-estree", - [2, 5552, 12144], - [1, 2343, 12147], - [0, 12148, 12149, 12143, 2443], - [0, 2571, 4135, 3847, 3744, 3435, 18994, 3904, 1847, 1850], - [0, 1843, 1177, 4039, 3410, 48, 2708, 53, 1261, 1959, 4103, 68, 1879, 1938, 1947, 1961, 1198, 13998], - [1, 2343, 12151], - [0, 12152, 12154, 12143, 2537], - [0, 2571, 4135, 3744, 3435, 19018, 19020, 18980], - [2, 12155, 27730], - [0, 1177, 4039, 3410, 48, 2708, 53, 1261, 1959, 4103, 68, 1879, 1938, 1947, 1961, 1198, 13998], - [3, 20826, 14], - [1, 2343, 12157], - [0, 12164, 12167, 12143, 2487], - [3, 1013, 11], - [2, 12158, 9026], - [2, 10306, 5256], - [3, 1603, 14], - "ontext", - [2, 12161, 12162], - [0, 2571, 13635], - "-theming", - [2, 1832, 12165], - [0, 1177, 4039, 3410, 48, 2708, 53, 1261, 4103, 68, 1938, 1881, 1198, 13998], - "-formatter", - [2, 1413, 12168], - [2, 2093, 12169], - "mini-", - "mini-store", - "rc-animate", - [1, 2343, 12177], - "rc-form", - "z-use-drag", - [0, 12183, 12210, 2514, 34352], - "@types/ra", - "@types/raf", - [3, 1013, 13], - "codo-gen", - [2, 12180, 12181], - [0, 1080, 1869], - "ast-types", - "motion", - [2, 4893, 12185], - [3, 1225, 14], - "proptypes", - [2, 8137, 12188], - [2, 2528, 12189], - [2, 12187, 12190], - [2, 4670, 8861], - [2, 1199, 12192], - "hot-loader", - [2, 1625, 12194], - "jest-emotion", - "screenshot", - [2, 8820, 12197], - [3, 4323, 19], - "yled-components", - [2, 12199, 12200], - [3, 11598, 12], - "or-styled-components", - [2, 2484, 12203], - [2, 12202, 12204], - "tsc-alias", - "@electric-sql/pglite", - "ucloud", - "lsofi", - [0, 1087, 1177, 1903, 1938, 1948, 1954, 1958, 2899, 3421, 4342], - [1, 2343, 12212], - [0, 12218, 12221, 12223, 2537], - [3, 1014, 9], - "slate", - [2, 12213, 12214], - "slate-hyperscript", - "slate-react", - [0, 1082, 2071], - [2, 12213, 594], - "is-hotkey", - [0, 16805, 1393, 19038, 5867, 30889, 12142, 1894, 3980], - "jotai-optics", - [0, 19042, 19044, 3595, 19045, 19046, 19047, 5286, 19049, 19052, 19053, 676, 19054, 19055, 19057, 19059, 19060], - "jotai-x", - [1, 2343, 12230], - "optics-ts", - [3, 3836, 9], - "keys-hook", - [2, 12227, 12228], - [0, 12234, 12235, 12237, 2537], - "deep-compare", - [2, 8183, 12231], - "zustand-x", - [0, 19066, 2569, 19071, 19073, 19078, 15059, 3435], - [ - 0, 5517, 13614, 23237, 10976, 10979, 11008, 27564, 27568, 27571, 27573, 27575, 27576, 27580, 11013, 19325, 1143, - 1159, 9254, 1177, 14741, 15308, 2756, 3410, 3421, 19082, 4103, 19084, 4389, 11028 - ], - "plate", - [0, 5284, 5286, 3595, 676, 6693, 6692, 5187, 1182, 6830], - [1, 2343, 12239], - [0, 12241, 12243, 12249, 2443], - "es-errors", - [0, 15786, 19092, 19093, 19094], - "react-b", - [0, 1177, 15793, 15797, 15801, 2675, 2990, 3421, 19097, 15804, 15805], - "react-button", - "uiw-react", - "react.js", - "uikit", - "react-ui", - [0, 5286, 19099, 19100, 1925, 5194, 19101, 2680, 19102, 2474, 5258, 5284, 6422, 1858, 614, 594, 6731], - [1, 2343, 12251], - [0, 0, 12252, 12254, 2537], - [0, 13614, 1158, 1177, 2708, 2768, 3421, 4103, 4535], - [2, 1024, 45], - [0, 1858, 1925, 19108, 5284, 5286, 6422], - [3, 3839, 10], - [1, 2343, 12257], - [0, 0, 12258, 12259, 2523], - [0, 1173, 1175, 1198, 8966, 1264, 1429, 1610, 2899, 4039], - [0, 5194, 1851, 1172], - "react-input", - [1, 2343, 12262], - [0, 0, 12263, 12264, 34352], - [ - 0, 19118, 2899, 1825, 18686, 18693, 19119, 19121, 19122, 19123, 1381, 18801, 18825, 19125, 19127, 14217, 14196, - 19130, 14214, 1235, 14199, 14192, 1244, 14198, 14215 - ], - [0, 19132, 6422, 1862, 6567], - [3, 1023, 18], - [1, 2343, 12269], - "verlay-trigger", - [2, 8666, 12267], - [0, 0, 12270, 12271, 2537], - [0, 48, 53, 87, 10688, 1863, 1177, 1895, 1903, 1938, 1954, 1958, 2675, 3421, 1894, 4193, 4389], - [0, 1862, 6567, 5194, 19138, 1865], - [1, 2343, 12275], - "react-u", - "react-utils", - [0, 0, 12276, 12277, 4139], - [0, 13614, 1158, 1429, 1859, 1177, 2011, 2228, 2256, 2283, 2311, 2708, 2899, 3421, 3736, 19146, 4103, 4389, 4535], - [0, 5286, 5258, 5194, 1858, 1862, 6567, 7168, 3053, 3065, 6636], - [2, 12279, 8295], - "flowbite-", - [1, 2343, 12281], - [0, 0, 12282, 12288, 2523], - [0, 1317, 1311], - "to-ts", - [2, 7526, 12283], - [2, 7719, 553], - "prom-client", - "unleash-client", - [0, 1867, 1936, 6435], - "ype-is", - [2, 7750, 12289], - [1, 2343, 12293], - "ts-node-dev", - [0, 0, 8134, 12297, 2399], - "Unleash", - "ios", - "android", - [0, 1867, 1108, 6961, 6920, 7256, 1871, 19161, 7169], - [1, 2343, 12299], - [0, 12300, 12303, 2514, 2537], - [0, 2004, 14301, 2003, 4227], - "keyux", - [3, 1027, 12], - [0, 1082, 1362, 19168, 1429, 6522, 19172, 2323, 2384, 2463, 3183, 3466, 4135], - "image-shrink", - [2, 12302, 12304], - [2, 9229, 4219], - [2, 12302, 12306], - [1, 2343, 12311], - "shipjs", - "@esm-bundle/chai", - [0, 12316, 12317, 12321, 2523], - "@total-typescript/ts-reset", - "@hap", - "py-dom/global-registrator", - [2, 12313, 12314], - [ - 0, 439, 12121, 19180, 27907, 19193, 11180, 11209, 19182, 19184, 1006, 1091, 1615, 1676, 1874, 1994, 1996, 2000, - 19186, 14301, 2069, 16783, 2105, 2200, 2687, 19187, 2743, 19189, 3181, 12118, 3466 - ], - [ - 0, 5517, 53, 87, 8129, 19194, 19181, 19195, 19581, 4874, 1011, 1195, 1414, 1429, 1448, 1532, 1593, 1651, 1797, - 1933, 15510, 17308, 19206, 32793, 19210, 2003, 19213, 2070, 2203, 2212, 2226, 2807, 2931, 2990, 3105, 3112, - 3127, 19216, 19219, 19221, 19222, 19223, 19224, 2899, 19227, 19230, 1894, 3730, 3752, 3930, 3957, 4135, 4167, - 4193, 91, 2924, 4677, 19235 - ], - "uploadcare", - "lighter", - "file ", - [0, 6892, 671, 5284, 5286, 2000], - "file uploader", - "ive image", - [2, 5156, 12323], - " optimization", - [2, 158, 12325], - "image ", - [2, 12327, 6110], - "image size", - " image editor", - [2, 6599, 12330], - " client", - " api client", - [2, 9229, 12333], - "ing blocks", - [2, 6147, 12335], - "lr-blocks", - "uc-blocks", - [2, 11857, 591], - "smart", - [1, 2343, 12356], - "smart cdn", - "cloud ", - [3, 31, 8], - "file platform", - [2, 12343, 12345], - "ation api", - [2, 353, 12347], - "webp", - "avif", - "css c", - " properties", - [2, 12162, 12352], - [2, 12351, 12353], - [2, 11617, 591], - [0, 12357, 12358, 12359, 2523], - [0, 3435, 3438, 1881], - [0, 4389, 1796, 1177, 2708, 97, 19243, 19247, 1261, 1959, 4103, 1938, 1947, 1961], - [0, 1177, 6651, 1541, 1259, 5284, 6718, 6778, 7056, 7192, 7044], - [2, 8137, 668], - [2, 1393, 12360], - [1, 2343, 12363], - [0, 12364, 12365, 12359, 2537], - [0, 4135, 3435, 3438, 19254], - [0, 4389, 1796, 1177, 2708, 97, 19243, 19247, 1261, 4103, 1938], - [1, 2343, 12367], - [0, 12373, 12374, 12375, 2399], - [3, 5881, 34], - "self", - [2, 12368, 12369], - [3, 12370, 35], - [2, 12371, 5585], - [0, 1881], - [0, 1009, 1011, 1742, 1177, 1895, 1938, 2675, 2990, 3400, 1894, 19263, 91], - [0, 1259, 1541, 6778, 7056, 7192, 7044, 1177, 6651, 5284, 6718, 91], - [1, 2343, 12377], - [0, 0, 5795, 12378, 4139], - [ - 0, 1885, 1501, 19269, 590, 671, 9654, 2292, 2272, 19270, 1177, 2649, 19271, 15717, 4354, 16790, 19273, 18443, - 2446 - ], - [1, 2343, 12380], - [0, 12381, 5795, 12382, 2537], - [0, 442, 2203], - [0, 1177, 7625, 19281], - [1, 2343, 12386], - [2, 8530, 4798], - "merge-deep", - [0, 12387, 12388, 12389, 2537], - [0, 19438, 19181, 442, 19344, 1009, 1011, 1891, 1907, 19286, 1915, 1938, 1942, 1951, 1953, 17306, 1982, 4523], - [0, 9736, 1177, 91], - [0, 1890, 1177, 7625, 19281], - [1, 2343, 12391], - [0, 12401, 12404, 6936, 2443], - [3, 5075, 18], - [2, 12392, 8221], - "@makotot/ghostui", - [3, 6497, 10], - "@types/hast", - "@umijs/bundler-utils", - "@umijs/", - "@umijs/core", - [2, 12398, 594], - [0, 1953, 1951, 1938, 19286, 1011, 17306, 1009, 1915], - "-scroll-to", - [2, 12082, 12402], - [0, 1177, 91, 9736], - "codesandbox", - "comlink", - "dumi-", - [1, 2343, 12417], - "dumi-afx-deps", - "estree-", - "util-to-js", - [2, 12410, 12411], - [3, 12412, 12], - "visit", - [2, 12413, 12414], - "file-s", - [0, 0, 0, 12423, 2487], - "ystem-cache", - [2, 12416, 12418], - "is-element", - [2, 2573, 12420], - "heti", - [0, 1177, 6651, 7625, 28987, 1894], - "html2sketch", - [3, 3137, 12], - "ind-and-replace", - [2, 12425, 12426], - [3, 3140, 14], - [2, 12428, 1871], - [1, 2343, 12453], - "prism-themes", - "react-l", - "-skeleton", - [2, 10087, 12433], - [2, 12432, 12434], - "code-editor", - [2, 10961, 12436], - [2, 3890, 12437], - "rehype-r", - "emove-comments", - [2, 12439, 12440], - "directive", - [2, 3986, 12442], - "sucrase", - "umi", - "-parents", - [2, 4555, 12446], - "v8-compile-cache", - "vfile", - "dumi-a", - "ssets-types", - [2, 12450, 12451], - [0, 12464, 0, 2514, 2523], - [2, 11367, 1732], - [2, 6495, 12454], - [3, 5540, 9], - "sted-git-info", - [2, 12456, 12457], - [2, 6308, 6925], - "luralize", - [2, 5088, 12460], - "@umijs/lint", - [2, 12398, 9711], - [0, 53, 1939, 1959, 68, 1938, 1270, 1935, 1947, 19302, 1011, 19254, 1961, 1976, 1009], - [1, 2343, 12469], - "-import-utils", - [2, 12405, 12466], - "repo", - [0, 0, 12470, 12476, 2523], - [0, 1177, 1903, 1938, 1953, 1958, 4389], - "git-repo-info", - [2, 11311, 1732], - "zx", - [2, 699, 701], - [2, 12407, 12474], - [ - 0, 19309, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 6651, 2446, 2292, 2272, 671, 19315, 19269, - 2869, 1899, 4255, 19317, 590, 19318, 19320, 19273 - ], - " site generator", - [2, 2947, 12477], - "jamstack", - [1, 2343, 12481], - [0, 0, 12482, 12483, 2537], - [0, 5601, 19325, 1177, 1938, 1953, 1958, 4389], - [ - 0, 19309, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 6651, 2446, 2292, 2272, 671, 19315, 19269, - 2869, 4255, 19317, 590, 19318, 19320, 19273 - ], - [1, 2343, 12485], - [0, 12486, 12487, 2514, 34352], - [0, 442, 27928, 1982, 2203, 4523], - [0, 19333, 5601, 4874, 19336, 1446, 1177, 19339, 33860, 1894, 91], - [1, 2343, 12489], - [0, 12490, 12491, 12492, 2537], - [0, 29371, 19194, 19344, 19254, 2203], - [0, 1166, 1177], - [ - 0, 6651, 1906, 19347, 19348, 19349, 19350, 19353, 1501, 19269, 590, 671, 9654, 2292, 2272, 19270, 1177, 2649, - 19271, 4255, 15717, 4354, 16790, 19273, 18443, 2446, 2869 - ], - [1, 2343, 12494], - [0, 0, 12495, 12496, 2399], - [0, 192, 5467, 1610, 2675, 2990, 3985, 3995, 1906], - [0, 19359, 1541, 1177, 18639, 18640, 3624, 1906], - [1, 2343, 12498], - [0, 12499, 12500, 12501, 2537], - [0, 1012, 1091, 1443, 1525, 1595, 1699, 8098, 18420, 2777, 2845, 12834, 3117, 4507], - [ - 0, 442, 4874, 6513, 29891, 16480, 22839, 1177, 1895, 1938, 1953, 1955, 1982, 3125, 3390, 3400, 3471, 1894, 4193, - 18710, 91, 4523, 1984 - ], - [0, 2295, 1739, 1745, 1177, 1179, 1932], - [1, 2343, 12503], - [0, 12504, 0, 12505, 4139], - [0, 1676, 27418, 2191, 19380, 29856, 27921, 12578], - [0, 91, 1177, 1204, 14056, 1932], - [1, 2343, 12507], - [0, 12508, 12509, 12510, 2523], - [0, 2102, 2151, 3008, 3429, 4121], - [ - 0, 48, 53, 87, 192, 5467, 19401, 16405, 1178, 1193, 1457, 19403, 1610, 1700, 1701, 1177, 1895, 19405, 1938, - 2675, 1192, 2794, 2990, 3400, 1894, 4257, 2924 - ], - [0, 1177, 671, 9654, 1194, 2924], - [1, 2343, 12512], - [0, 12513, 12514, 12515, 2537], - [0, 439, 19194, 19413, 2000, 19415, 19419, 4025], - [0, 1011, 1166, 1414, 1437, 1177, 19422, 1912, 1933, 2020, 3400, 3471, 3532, 91, 1906], - [0, 1177, 6741, 6939, 1166, 1973, 8791, 1145, 6637, 6468, 2899], - [1, 2343, 12517], - [0, 12518, 12519, 12520, 34352], - [0, 19209], - [0, 2899, 1177, 1178, 3028], - [0, 1172, 1177, 6741, 6939, 1178], - [1, 2343, 12522], - [0, 12523, 12524, 12526, 2523], - [0, 16805, 19436, 1393, 1423, 2105, 2203, 3057, 4135], - [ - 0, 53, 68, 192, 5467, 19438, 442, 6061, 6063, 19441, 5366, 19443, 5601, 5087, 19446, 5254, 1317, 19449, 1804, - 1177, 1895, 1933, 1955, 2024, 2675, 1192, 1894, 4131, 4183, 4468, 4474, 91, 4523 - ], - "object-deep-merge", - [0, 1177, 1388, 4231, 5592, 671, 1421, 19451], - [1, 2343, 12528], - [0, 0, 12529, 12530, 2523], - [0, 1177, 2899], - [0, 1177, 6741, 1925, 6778], - [1, 2343, 12532], - [0, 12535, 12536, 12537, 2537], - [2, 19573, 24759], - "diff-sequences", - [0, 1874, 2687], - [0, 12602, 4874, 19464, 1178, 1503, 1615, 1177, 19466, 2151, 2899, 3421, 3456, 4039, 4135, 13134, 19468, 19469], - [0, 1177, 6741, 6939, 1932, 8505, 4298, 12442, 2202, 2203, 19472, 19473, 19475, 19478, 19479, 19482], - [1, 2343, 12539], - [0, 12540, 12541, 12542, 2443], - [0, 439, 2004], - [ - 0, 192, 5467, 6303, 19492, 19181, 442, 27928, 19611, 19580, 31200, 1006, 4870, 4874, 1011, 1012, 16480, 1177, - 19494, 1895, 1912, 1953, 1982, 1992, 1994, 2000, 2675, 2807, 2990, 1209, 3125, 3390, 3401, 1894, 1531, 91, 4523, - 1984 - ], - [0, 1177, 6741, 6939], - [1, 2343, 12544], - [0, 12545, 12546, 12547, 2537], - [0, 1209, 19500], - [ - 0, 1091, 2070, 2675, 2899, 1177, 4039, 19505, 15555, 48, 53, 13693, 94, 4131, 87, 68, 19504, 5235, 1933, 1198, - 5874, 78 - ], - [0, 1177, 1932, 1934], - [1, 2343, 12549], - [0, 12550, 12551, 12552, 4139], - [0, 2654], - [0, 19512, 19514, 1177, 1895, 19516, 1894, 4135], - [0, 6939, 6741, 1177, 1936], - [1, 2343, 12554], - [0, 12555, 12556, 12558, 34352], - [ - 0, 11554, 19522, 19525, 18976, 1143, 1676, 19526, 19527, 19378, 2571, 17501, 2743, 3181, 19020, 19531, 18994, - 4135, 11555, 4480 - ], - [ - 0, 19535, 5601, 1011, 1173, 1175, 1178, 1208, 1212, 1261, 14237, 1280, 1291, 1429, 1610, 19538, 1177, 1912, - 1915, 1933, 1938, 17585, 14053, 19539, 2070, 2708, 2762, 2858, 19540, 19541, 3125, 2899, 19544, 3421, 3875, - 4039, 4103, 4193, 4449, 91, 19545 - ], - "stable-hash", - [0, 1177, 6741, 6939, 5194, 13354, 5260, 1204, 6813], - [1, 2343, 12560], - [0, 12561, 12562, 12542, 2487], - [0, 1012], - [ - 0, 48, 53, 87, 92, 192, 5467, 19492, 19552, 6061, 6063, 5536, 5601, 5087, 4874, 5254, 1009, 1011, 1012, 1193, - 19555, 1680, 1177, 1895, 1912, 1933, 1938, 1953, 1955, 1992, 19560, 2675, 2742, 1192, 15853, 2990, 19516, 3534, - 1894, 4039, 4131, 4135, 4474, 91 - ], - [1, 2343, 12564], - [0, 12565, 12566, 12567, 2537], - [0, 19567, 12533, 19568, 8506, 1676, 1874, 2000, 19186, 2626, 12525, 27427, 4135, 19570, 30614], - [ - 0, 5517, 48, 53, 68, 5240, 87, 19574, 19577, 19193, 19578, 816, 16607, 6065, 16608, 4856, 5245, 19580, 19581, - 1006, 8818, 6503, 4874, 5254, 19586, 5552, 1198, 1208, 19588, 1414, 1420, 1429, 1677, 1177, 19504, 19505, 2070, - 2203, 2675, 19592, 2845, 26696, 2990, 2899, 19595, 3541, 4068, 4039, 4042, 4131, 4193, 5569, 91, 4523 - ], - [0, 1177, 1932, 1776], - [0, 12569, 19601, 12572, 34352], - [0, 439, 19193, 11180, 12570, 12534, 12668, 17310, 12118, 19571], - [2, 19606, 12571], - "ast-token-store", - [0, 1177, 6741, 6939, 671, 19632, 2856, 1781], - [1, 2343, 12574], - [0, 12575, 12576, 12577, 2537], - [0, 11869, 19522, 1143, 19638, 1169, 19639, 19640, 13829, 2571, 19644, 19645, 3181, 19020, 19647, 19648], - [ - 0, 48, 53, 68, 5240, 94, 1159, 1198, 1261, 1177, 1881, 1912, 1933, 1935, 1938, 2004, 2126, 2708, 2762, 17221, - 3183, 3410, 3435, 3438, 4039, 4103, 4135, 4389, 19650 - ], - [0, 1177, 6741, 6939, 6653, 7320, 1219], - "unrs-resolver", - [1, 2343, 12580], - [0, 12581, 12582, 12583, 2537], - [0, 3137], - [0, 3421, 1429, 2899, 1177, 2203, 442, 19206, 19657], - [0, 1177, 6741, 1783, 671, 9654], - [1, 2343, 12585], - [0, 12587, 0, 12594, 2399], - "aleo", - [0, 2203, 439], - "cryptography", - [3, 1336, 10], - "decentralized", - "-knowledge", - [2, 7150, 12591], - "oracle", - [0, 1177, 6741, 6939, 2899], - [1, 2343, 12596], - [0, 12597, 12601, 12615, 34352], - [0, 439, 1835, 19671, 2191, 2203, 1555, 2687, 4135, 29860], - "event-", - "target-shim", - [2, 12598, 12599], - [ - 0, 442, 5601, 1006, 27303, 4874, 1011, 12145, 1177, 1895, 1912, 1933, 2071, 2675, 2990, 3125, 2899, 3401, 3421, - 3456, 1894, 3757, 3980, 4039, 19676, 4507, 91 - ], - "@mysticatea/eslint-plugin", - [3, 12602, 12], - [2, 12603, 4158], - "dts-bu", - "ndle-generator", - [2, 12605, 12606], - "growl-reporter", - [2, 2877, 12608], - "-minify", - [2, 4045, 12610], - "rollup-", - "rollup-watch", - "type-tester", - [0, 1177, 6741, 6939, 202, 6710, 5286, 6987, 2090, 3403, 1204, 3209], - "w3c", - "abort", - "cancel", - "control", - "controller", - [2, 12617, 12620], - "abortsignal", - [1, 2343, 12624], - [0, 12625, 12626, 12615, 2487], - [0, 1927, 19414, 2687, 3181, 814, 4135], - [0, 12602, 1503, 1177, 2071, 2203, 2899, 3421, 3456, 3757, 4039], - "negotiator", - [1, 2343, 12629], - [0, 12630, 0, 12632, 2399], - [0, 19689, 19571], - "negotiation", - [0, 1177, 6741, 6939, 1894], - [1, 2343, 12634], - [0, 12635, 12636, 12637, 2537], - [0, 439], - [0, 1011, 1742, 1177, 1895, 1912, 1933, 1939, 1953, 1955, 2203, 2675, 1192, 2990, 3401, 1894, 91], - [0, 1177, 6741, 6939, 1862, 6567], - [1, 2343, 12639], - [0, 12640, 12641, 12642, 2523], - [ - 0, 19522, 19724, 1143, 19726, 19526, 19641, 2004, 2571, 19644, 3181, 3438, 19020, 18994, 3744, 814, 4135, 11434, - 19729 - ], - [ - 0, 53, 68, 5611, 19731, 19735, 90, 5601, 1006, 4874, 1011, 1178, 1177, 1881, 1912, 1933, 1938, 1992, 19560, - 1994, 2000, 11605, 2070, 2759, 2762, 19736, 3125, 2899, 3410, 4193, 91, 19545 - ], - [0, 1177, 6939, 6741, 89], - [1, 2343, 12644], - [0, 12645, 12646, 12642, 2523], - [0, 4763, 53, 58, 21131, 25652], - [0, 1192, 91, 4874, 104, 1178, 5601, 1006, 19877, 36694, 68, 92], - [1, 2343, 12648], - [0, 12649, 12651, 12652, 2487], - [0, 439, 12121, 8506, 19592, 19745, 19750, 19751], - "git-clone", - [ - 0, 107, 6022, 19492, 19181, 442, 19605, 19609, 11470, 4856, 5601, 19611, 1006, 6503, 4874, 19759, 1009, 1011, - 1145, 1429, 19619, 1177, 1895, 1912, 1915, 1933, 1938, 1942, 19622, 1945, 1948, 1953, 19757, 1955, 1964, 1982, - 1988, 17308, 19756, 3125, 2899, 19761, 3090, 3401, 3421, 3486, 1894, 4135, 4320, 4946, 19624, 1531, 4494, 91, - 4523, 19630, 4614, 4630 - ], - [0, 1177, 6741, 6939, 6961, 1108], - "iglet", - [2, 5537, 12653], - [3, 9362, 11], - [2, 12655, 1496], - [1, 2343, 12658], - [0, 12661, 12662, 12663, 2523], - "nestjs", - "fullstack", - [0, 19767], - [0, 442, 13729, 1177, 19771, 1895, 1912, 1933, 2990, 3125, 2899, 3400, 1894, 4131, 19235], - [0, 1177, 1965, 19773], - [1, 2343, 12665], - [0, 12667, 0, 12669, 34352], - "archive", - [0, 91, 4135, 31800, 3060, 19780, 12121, 3181, 5569, 19751, 1413, 1405, 2203], - "eslint-json-compat-utils", - [0, 19786, 1177, 6741], - [1, 2343, 12671], - [0, 0, 12529, 12672, 2443], - [0, 1177, 6741], - [1, 2343, 12676], - "flowcontrol", - "arch", - [0, 12677, 12678, 12679, 34352], - [0, 439, 5012, 14301, 2203, 2932, 3561, 3616, 3676, 4135, 19795], - [ - 0, 53, 68, 14039, 19492, 10879, 19797, 19798, 8818, 19799, 6503, 4874, 19800, 5254, 19802, 5604, 5552, 1082, - 1145, 668, 1994, 19339, 1996, 2000, 2807, 695, 2899, 3640, 3681, 2278, 4228, 4333, 3709, 19803, 4494, 4505, 4745 - ], - [0, 1177, 6939, 6741, 3709, 19805], - "cron-parser", - "date.js", - "human-i", - [1, 2343, 12686], - "nterval", - [2, 12682, 12684], - [0, 12691, 12695, 12696, 2523], - "uman-interval", - [2, 6495, 12687], - [2, 8329, 2995], - [2, 3230, 12689], - [0, 5604, 1012], - "job", - "jobs", - "delayed", - [ - 0, 192, 5467, 19181, 442, 4874, 5551, 7677, 22839, 23203, 1177, 1895, 1912, 1915, 32525, 1953, 1958, 1992, - 19560, 2203, 2675, 2807, 2990, 1894, 23535, 4131, 1531, 91, 4523, 1984 - ], - [0, 1177, 6741, 6939, 671, 1975, 5472], - [1, 2343, 12698], - [0, 12723, 12724, 12725, 2537], - [3, 1339, 12], - "end4", - [2, 12699, 12700], - "meat7", - [2, 1337, 12702], - "bow-swam-troops-care", - "cent-matter-to", - "close", - "r-composed-particularly-shout", - [2, 12706, 12707], - "coach-organized-notice", - "correct-home-silent7", - "course-whenever-merely", - "crop", - "-birthday-web3-children", - [2, 12712, 12713], - "exchange-known-bend", - "-even", - "tually-bound", - [2, 12716, 12717], - [2, 8205, 12718], - "grass-dollar-crew-floating", - "-fruit-web3-perfect", - [2, 4374, 12721], - [0, 1012, 608, 606], - [0, 9125, 5601, 1006, 1177, 9141], - [0, 6869, 1745, 2295, 4298, 9132, 9134, 9658, 1932], - "lay-rest-hour", - "balance", - "-trade-solar", - [2, 12727, 12728], - [2, 3131, 12729], - "meat", - "-think-stove8", - [2, 12731, 12732], - "offic", - "e-deal-mostly1", - [2, 12734, 12735], - "product-slight-adult-settlers", - [3, 3931, 9], - "done-should-moon", - [2, 12738, 12739], - "scienti", - "fic-exist-event2", - [2, 12741, 12742], - "sent", - "-won-little-western", - [2, 6590, 12745], - [2, 12744, 12746], - "-wing-eat", - [2, 6887, 12748], - "stay-including", - "supp", - "er-t", - "erm-including-snake", - [2, 12752, 12753], - [2, 12751, 12754], - "truck-hospital-equator-hurt", - "trunk-darkness-believed-corner", - "typi", - "cal-recall-industry-exchange", - [2, 12758, 12759], - "warn", - "-clothing-whose0", - [2, 12761, 12762], - "weigh-flew-web3-farm", - [1, 2343, 12766], - [0, 12767, 12768, 12769, 34352], - [0, 5279, 439, 1443, 1458, 19824, 5867, 30055, 2203, 2709, 10911, 2835, 3547, 19826, 19827, 4135, 8959], - [ - 0, 51, 53, 68, 19181, 19829, 1011, 5552, 1166, 1414, 1836, 1177, 19422, 1907, 1912, 1933, 1942, 1982, 1992, - 19560, 1994, 2000, 2992, 3125, 17269, 27922, 3390, 3401, 19595, 3471, 3718, 91, 4630, 4745 - ], - [0, 1177, 6741, 6939, 1981, 9654, 671, 590, 1906], - [1, 2343, 12781], - "@airtap/browserify-istanbul", - "-default", - [2, 1090, 12772], - "airtap-", - "airtap-multi", - "bruce-millis-option", - [3, 9242, 9], - [3, 9242, 10], - [2, 12778, 5576], - "near", - [0, 12561, 12794, 12797, 2537], - "nearest-file", - [2, 2103, 12782], - "s-to-files", - [2, 2070, 12784], - "human", - "ize-duration", - [2, 12786, 12787], - "load-script", - [3, 3736, 9], - [2, 12790, 6953], - [2, 3094, 12791], - "maybe-combine-errors", - [ - 0, 19344, 5601, 6503, 4874, 1009, 1011, 5551, 19838, 19839, 1540, 1177, 1912, 1933, 1985, 1992, 19560, 4474, - 4494, 91, 4543, 1984 - ], - "nanoresource", - "-col", - [0, 1177, 6741, 6939, 19842, 1984, 19844], - "-collection", - [2, 12795, 12798], - "on-str", - "eam-close", - [2, 12800, 12801], - "run-", - "parallel", - [1, 2343, 12806], - [0, 12810, 12811, 12816, 2523], - "-settled", - [2, 12804, 12807], - [2, 12803, 12808], - [0, 439, 12118, 16870, 3681, 4135, 19851], - [ - 0, 107, 27928, 19609, 19344, 11470, 5601, 19616, 4874, 5254, 19853, 1009, 1011, 5552, 7677, 1145, 19619, 668, - 1177, 23753, 1895, 1933, 1938, 1945, 29743, 19623, 1955, 1982, 19339, 1996, 2000, 2018, 2203, 2832, 3125, 3510, - 1894, 1531, 91, 19630, 4614, 1984, 4630 - ], - "tap-completed", - "y-with-args", - [2, 3949, 12813], - "transi", - [0, 1177, 6939, 7625, 188, 12072, 3624], - "ent-error", - [2, 12815, 12817], - [1, 2343, 12821], - "abstract-browser", - [0, 12822, 12824, 12827, 2487], - [0, 51, 2861, 1437, 2716, 3429, 89, 4183], - "simple-get", - [0, 19181, 19861, 5601, 4874, 8860, 4880, 1567, 1177, 5556, 19862, 19864, 2807, 3339, 4294, 91, 1984], - "labs", - "saucelabs", - [0, 1177, 19866], - [1, 2343, 12829], - [0, 12830, 12838, 5795, 34352], - [0, 34028, 1006, 19871, 2004], - "uri", - "fast-uri", - [3, 12284, 13], - [2, 12833, 1286], - "-string", - "from-string", - [2, 4013, 12836], - [0, 1011, 1429, 1996, 2000, 19230, 4167], - "@ajv-validator/config", - "quire-", - [2, 12840, 12836], - [2, 5249, 12841], - [1, 2343, 12853], - "tc", - "-plugin-utc", - [2, 1673, 12845], - "if-node-version", - [2, 12833, 4467], - [2, 5223, 12836], - "re2", - "tsify", - "uri-js", - [0, 0, 12854, 5795, 2523], - [0, 3456, 4042, 4057, 4481, 91], - [1, 2343, 12856], - [0, 12857, 0, 12858, 2537], - [0, 1898, 19884], - [0, 1998], - [1, 2343, 12861], - "Ajv", - [0, 0, 0, 12862, 34352], - [0, 10906, 5286, 6813, 1204, 5260, 202, 3209], - [1, 2343, 12864], - [0, 12865, 12866, 12867, 2523], - [0, 1082, 15128, 1996], - [0, 5517, 4042, 4167, 4481, 91], - [0, 6892, 5286, 5284, 57, 5341, 1082], - [1, 2343, 12869], - [0, 0, 12871, 12872, 2523], - "longjohn", - [ - 0, 15990, 19905, 19907, 2070, 2759, 19878, 2297, 2881, 2889, 2891, 2895, 2897, 2900, 2912, 19910, 2915, 1209, - 2899, 19912, 3954, 1241, 4487, 91, 4526, 19914, 2924 - ], - [0, 6892, 5286, 2003, 5284, 57, 5341], - [1, 2343, 12874], - [0, 0, 12875, 2514, 2523], - [0, 1264, 1280, 1429, 2000, 2323, 2351, 2390, 2404, 19922, 2272, 2899], - [1, 2343, 12880], - "buffer-", - "more-ints", - [2, 12877, 12878], - [0, 12881, 12883, 2514, 2487], - [0, 1006], - "claire", - [0, 91, 4579], - "AMQP", - [1, 2343, 12888], - "AMQP 0-9-1", - "RabbitMQ", - [0, 0, 12889, 12890, 2487], - [0, 2899, 1177, 2759, 1317, 4127, 4100, 1311, 1954, 1938, 1958, 1903, 1948, 1970], - [0, 984, 27, 10376], - [1, 2343, 12892], - [0, 12894, 12895, 12896, 4139], - "ux bootstrap", - [0, 19937, 2010], - [ - 0, 19939, 19941, 19942, 19944, 9424, 7892, 4874, 19325, 1389, 19945, 1596, 2675, 2759, 2297, 2871, 2889, 2895, - 19946, 3183, 3421, 1894, 4389, 4474, 4487, 4508, 4514, 91, 19948 - ], - [0, 9439, 19950], - [1, 2343, 12898], - [0, 12900, 12901, 12902, 2523], - "client-side", - [0, 9424, 1363, 1600, 19956, 19957], - [0, 19961, 4874, 19963, 19325, 1177, 2297, 2881, 2895, 19946, 19965, 3421, 1894, 4389, 4474, 91], - [0, 9439, 6731, 594], - [1, 2343, 12904], - [0, 12905, 12906, 12907, 2523], - [0, 1082, 1437, 4747, 1209, 1362, 2151, 19972, 2004, 3105, 19971, 4547], - [0, 3763, 19974, 91, 4874], - [0, 19976, 19977, 5284, 1783, 1973], - [3, 4, 9], - "cli/ast-tools", - [2, 12908, 12909], - [3, 12910, 13], - "href-webpack", - [2, 1296, 12912], - [2, 12911, 12913], - "@ngtools/json-schema", - "@ngtools/", - [2, 12916, 2924], - "denodeify", - [1, 2343, 12920], - [0, 12927, 12932, 12933, 2523], - "entity-name", - [2, 3370, 12921], - [2, 1828, 12922], - [2, 4284, 594], - [2, 1828, 12924], - "exists-sync", - [0, 1792, 7115, 3102, 19982, 4237, 19984, 4430], - "caller-file", - [2, 2183, 12928], - "isbinaryfile", - "node-mo", - [0, 19986, 19987, 19988, 4389, 19989], - [0, 3101, 3053, 19991, 7131, 4237, 4565, 1698, 4068], - "dules-path", - [2, 12931, 12934], - [2, 1508, 2091], - "silent-error", - [3, 4070, 9], - [3, 6384, 10], - "inst", - "rumenter-loader", - [2, 12940, 12941], - [2, 12939, 12942], - [2, 12938, 12943], - [1, 2343, 12946], - [0, 0, 12947, 12948, 34352], - [0, 1317, 1362, 1596, 2899, 3421], - [0, 2013, 2018, 13771, 2016, 19997, 19998, 19999, 6868, 20000, 1803, 3441, 20001, 20003], - [1, 2343, 12952], - " library", - [2, 4627, 12950], - [0, 0, 12953, 12954, 2537], - [0, 811, 10615, 1148, 1414, 2899, 4042], - [0, 20014, 20015, 20016, 20018, 19997, 19998, 6868, 20000, 13771, 2013, 3441, 19999, 20001, 20019, 20003], - [1, 2343, 12957], - "justified", - [0, 0, 12960, 12962, 2523], - "bgblack", - "bgBlack", - [0, 1090, 2159, 6914, 2569, 2756, 4389], - "bgblue", - [0, 2018, 7133, 7053, 7155], - "bgBlue", - "bgcyan", - "bgCyan", - "bggreen", - "bgGreen", - "bgmagenta", - "bgMagenta", - "bgred", - "bgRed", - "bgwhite", - "bgWhite", - "bgyellow", - "bgYellow", - "black", - "bold", - "clorox", - "cyan", - "dim", - "gray", - "green", - "grey", - "hidden", - [1, 2343, 12988], - "inverse", - "italic", - [0, 12989, 12995, 12999, 2537], - [0, 20033, 1615, 2089, 2188, 20035, 2745, 2753, 3404, 3718, 4174, 20039, 20040], - "magenta", - "red", - "str", - "kethrough", - [2, 4285, 12993], - [0, 4874, 1166, 1414, 20042, 20044, 20047, 29888, 3505, 16687, 16330, 4481, 91, 4707, 1906], - "underline", - "white", - "yellow", - [0, 2978, 1451, 3729, 20049, 16701, 20050, 20051, 1614, 2090, 4166, 20052, 17180, 20054, 3378, 3403, 2703, 12473], - [1, 2343, 13001], - [0, 0, 13003, 13004, 2487], - "@jest/get-type", - [0, 2273, 2277, 2283, 2228, 4707], - [0, 2021, 3729, 20061, 8634, 20062, 20063, 20064, 20065], - "vt100", - "cursor", - "iterm2", - "screen", - "erase", - [1, 2343, 13012], - "scrollback", - [0, 13013, 13014, 2514, 2537], - [0, 20076, 13002, 11907, 8765, 11944, 2798], - [0, 16596, 8776, 1437, 2700], - [1, 2343, 13016], - [0, 0, 13018, 13019, 2537], - "pattern", - [0, 5517, 4874, 29891, 23203, 1177, 20083, 3377, 20085, 4294, 4473, 91, 1984], - [0, 91, 20088, 1145, 553, 4532, 1973, 5472], - [1, 2343, 13021], - [0, 13022, 13023, 13025, 2537], - [ - 0, 3763, 1704, 984, 3441, 710, 4590, 1676, 2145, 977, 38, 1080, 1000, 3494, 4266, 1833, 3173, 988, 1364, 1869, - 2657, 3440, 1562, 2099, 3781, 4151, 1581, 20103, 1560 - ], - [0, 1797, 2590, 3421, 1087, 2899, 4594, 1177, 3127, 3237, 4342, 1553, 1575, 1578, 2040, 3162, 20106], - "svg-term-cli", - [0, 2026, 5130, 6690, 5122, 27, 4030, 7096, 38, 1896, 5592], - [1, 2343, 13027], - [0, 13028, 13029, 13025, 2537], - [ - 0, 1080, 20098, 1364, 1560, 1562, 977, 1581, 1676, 1704, 1833, 1869, 984, 2099, 2145, 2657, 20103, 3164, 3440, - 3494, 3509, 988, 3763, 3781, 4100, 710, 4151, 20099, 4266, 1000, 4578, 4590 - ], - [0, 1087, 1553, 1575, 1578, 1797, 1177, 2040, 2590, 3127, 3162, 2899, 3237, 3421, 20106, 4342, 4594], - "truecolor", - [2, 31213, 31214], - [1, 2343, 13033], - [0, 13034, 13040, 13043, 2487], - [0, 53, 58, 101, 19526, 3509], - [2, 12392, 188], - "nitless", - [2, 7944, 13036], - "@simonwep/pickr", - "array-", - [0, 5087, 1177, 1192], - "tree-filter", - [2, 13039, 13041], - [0, 8124, 2026, 1776, 2295, 7701, 20120, 1745, 4363, 13728, 1179, 8623, 20121, 20123, 20124], - [1, 2343, 13048], - "dom-align", - "croll-into-view", - [2, 11148, 13046], - [0, 13050, 13054, 13070, 2537], - "vue-types", - [0, 1797, 3188, 1525, 3181, 14380], - [3, 10720, 40], - [2, 5822, 3426], - "@types/k", - [0, 2899, 1177, 4039, 4538, 4342, 4459, 1954, 1938, 1958, 1903, 1970, 4588], - "@types/koa", - "ru-cache", - [2, 6499, 13056], - [3, 4875, 15], - [2, 13058, 3615], - "-jsx", - [2, 11016, 13060], - [2, 1199, 1219], - [2, 5334, 13062], - "slint", - [2, 3542, 13064], - [2, 1472, 13065], - [2, 5334, 13066], - [3, 1031, 19], - [2, 13068, 1894], - [0, 2026, 5130, 6690, 5122, 4030, 7096, 38, 1896, 5592], - "vue3-jest", - [2, 5334, 13071], - "pack-", - [1, 2343, 13081], - "cli/serve", - [2, 13073, 13075], - [2, 10672, 13076], - "ali-oss", - "nline-import-data-uri", - [2, 1206, 13079], - [0, 13082, 13091, 13102, 2523], - [0, 2070, 2215, 2036], - "context", - "quire-context", - [2, 1252, 13084], - "colorful", - "-versions", - [2, 3797, 13087], - "cz-git", - "diacritics", - [0, 442, 6061, 16607, 6063, 6065, 16608, 16612, 5087, 4874, 1177, 2203, 2774, 4131, 4468, 91, 4523], - "docsearch.js", - "enquire-js", - [3, 1954, 16], - "licit-type-exports", - [2, 1760, 13095], - [2, 13094, 13096], - [3, 2512, 11], - [2, 13098, 1501], - "-emit-webpack-plugin", - [2, 2687, 13100], - [0, 2026, 20137, 2036, 6624, 8691, 20140, 5354], - "is-windows", - [3, 11948, 16], - [2, 13104, 188], - "stub", - [2, 1221, 13106], - [2, 2769, 13107], - "templater", - [2, 2842, 13109], - [1, 2343, 13116], - "mport", - "npm-import", - [2, 1186, 13113], - [2, 3194, 13114], - [0, 13139, 13140, 13146, 2523], - "vars-to-js", - [2, 3194, 13117], - "majo", - [3, 5961, 14], - "ble-of-contents", - [2, 13120, 13121], - "merge2", - [2, 3986, 1646], - "yaml-", - "yaml-config", - [2, 3986, 13126], - "reqwest", - "rucksack-css", - [3, 4130, 9], - [2, 13130, 36], - [3, 1873, 9], - [2, 2495, 2091], - [2, 13132, 13133], - "umi-request", - "vue-cl", - "ipboard2", - [2, 13136, 13137], - [0, 2863, 20147, 8264], - [0, 2899, 1177, 2026, 4474, 1894, 91, 6503, 6494, 1566, 1011, 1009], - "drag-resize", - [2, 4625, 13141], - "vue-i", - "nfinite-scroll", - [2, 13143, 13144], - [0, 1303, 20150, 5165, 20151, 14374, 27, 2038, 11326, 3424, 2026], - [1, 2343, 13150], - "equest", - "vue-request", - [0, 13153, 13155, 2514, 2523], - "vue-tsc", - "webpackbar", - [0, 977, 1581, 1676, 1704, 16128, 3494, 4100, 4538], - "vueComponent", - [0, 1087, 1575, 1177, 1948, 2026, 2899, 3421, 4342], - [1, 2343, 13157], - [0, 13158, 13160, 13170, 2523], - [0, 1091, 1437, 1525, 1536, 1594, 1759, 2026, 2812, 4042, 4057, 91, 4763], - [2, 11164, 3007], - [0, 442, 7806, 9227, 6494, 4874, 1009, 1011, 1177, 1954, 2203, 3363, 1894, 4039, 4474, 4480, 4523], - "color-picker", - [2, 11183, 13161], - [3, 5050, 15], - "utate-observer", - [2, 13163, 13164], - [2, 11183, 11194], - [3, 11185, 15], - "rigger", - [2, 13167, 13168], - [0, 5592, 5995, 20164, 5001, 7141, 2026, 20165, 5130, 6706, 6807, 36, 7020], - [3, 11161, 14], - "mpat", - [1, 2343, 13180], - "mpatible", - [2, 13171, 13174], - "work-theme", - [2, 2560, 13176], - [2, 41, 13177], - "@ant", - [0, 0, 13208, 13209, 2523], - "@antv/g6", - "@codecov/webpack-plugin", - "@code", - "sandbox", - "/sandpack-react", - [2, 13184, 13185], - [2, 13183, 13186], - "@ianvs/prettier-plugin-sort-imports", - "@madccc/duplicate-package-checker-webpack-plugin", - "@micro", - "flash/rehype-figure", - [2, 13190, 13191], - "dm-zip", - [2, 9165, 13193], - "li-oss", - [2, 9165, 13195], - [3, 10403, 11], - [2, 13197, 3730], - [3, 10406, 12], - [2, 13199, 36], - [3, 8806, 9], - "omorphic-fetch", - [2, 13201, 13202], - [2, 7635, 965], - [2, 10884, 3730], - "ixelmatch", - [2, 5088, 13206], - [0, 1414, 20171, 4193, 1177, 2026, 4474, 20170, 91, 4874, 6513, 6494, 1011, 1009], - [ - 0, 20173, 20174, 1781, 91, 5592, 27, 2026, 20175, 20176, 91, 2663, 998, 20178, 20179, 20182, 20183, 20184, 9091, - 10339, 5995, 20186, 20188, 89, 20189, 20194, 20195 - ], - "@types/pngjs", - [1, 2343, 13217], - "pinnies", - [2, 5051, 13212], - [3, 7752, 10], - "antd-style", - [3, 8770, 10], - [0, 13222, 13242, 13244, 2537], - "ugin", - "y-plugin", - [2, 13216, 13219], - [2, 7045, 13220], - [0, 1209, 1155], - "cli-progress", - "plugin-c", - "chunk", - "olor-chunk", - [2, 13224, 13226], - [2, 12407, 13227], - [3, 5556, 16], - "dash", - [2, 13229, 13230], - "lunar-typescript", - "p-all", - "untup", - [2, 3808, 13234], - "-no-", - "-references", - [2, 10393, 13237], - [2, 13236, 13238], - [2, 11380, 13239], - "runes2", - [0, 20202, 20207, 20212, 5087, 4870, 1009, 1011, 1177, 1895, 1938, 1955, 1192, 1894, 4468, 91], - "spinnies", - [0, 2026, 1155, 7020, 2649, 2574, 20215, 4741], - "vanilla-tilt", - [1, 2343, 13247], - [0, 13248, 13249, 13250, 2523], - [0, 1112, 3327, 20221, 3776, 13031], - [ - 0, 7806, 9227, 27478, 6494, 9231, 27327, 22102, 10413, 20232, 1536, 1594, 1704, 2026, 9243, 2657, 3313, 20243, - 91, 4548, 4763, 34143 - ], - [ - 0, 6710, 5592, 27, 2663, 1745, 1781, 2026, 91, 2844, 36, 1852, 8124, 20246, 3452, 20247, 6652, 20251, 20252, - 4763, 7020 - ], - [1, 2343, 13252], - [0, 0, 13253, 13254, 4139], - [0, 13614, 13616, 1177, 2292, 4389], - [0, 2051, 1496, 1698], - [1, 2343, 13256], - [0, 13257, 13258, 13269, 4139], - [0, 20263, 20266], - [0, 20268, 20269, 20272, 2398, 2747, 20273, 3183, 2899, 3427], - "ext-comm", - [2, 10740, 13259], - [2, 5409, 13260], - [2, 5409, 1745], - "app-layout", - [2, 10689, 13263], - [3, 10703, 14], - [3, 212, 11], - [2, 13265, 13266], - [3, 806, 10], - [0, 3426, 1496, 2051, 1698, 7002, 3048, 3427, 3435, 3743, 3583, 3205, 20275, 4161, 614, 6435, 594, 6692], - [1, 2343, 13273], - "aper-toast", - [2, 13268, 13271], - [0, 13274, 13288, 2514, 2523], - [0, 1149, 3008, 4121, 4695], - "menu-mixin", - [2, 5395, 13275], - "building", - "-rollup", - [2, 13277, 13278], - [2, 5471, 13279], - [2, 1384, 591], - [2, 13265, 13281], - [3, 5478, 17], - "-regression", - [2, 7062, 13284], - [2, 13283, 13285], - "amf-client-js", - [ - 0, 1173, 1193, 1245, 1257, 1264, 1610, 1628, 1701, 1177, 20281, 1938, 2092, 1192, 2990, 3413, 3697, 3786, 4257, - 4307, 2924, 20283 - ], - [2, 4053, 2257], - "per", - "unzipper", - [1, 2343, 13295], - "raml", - "amf", - [0, 13296, 13297, 13298, 2399], - [0, 1676, 2188, 4753, 20290], - [0, 1009, 1011, 1166, 1177, 1903, 1920, 1938, 1954, 1958, 1970, 2151, 2675, 2990, 3421, 4481, 91], - [0, 4560, 2056, 7682], - [1, 2343, 13300], - [0, 0, 13306, 2514, 34352], - "-match-patch", - [2, 1687, 13301], - "se-loader", - [2, 5779, 13303], - "klaw-sync", - [ - 0, 3421, 2323, 1776, 2899, 4193, 1177, 1209, 3460, 4431, 1596, 1389, 20304, 2494, 2530, 2990, 13896, 4599, 2401, - 20305, 20306, 4603 - ], - [3, 1898, 16], - [1, 2343, 13309], - [0, 13312, 13313, 13314, 2537], - "commended", - [2, 13307, 13310], - [0, 20312], - [0, 1177, 1889, 1954, 2022, 2899, 3421, 20314, 4193], - [0, 20317, 3073, 2942, 6807, 3721, 20319], - [1, 2343, 13316], - [0, 13317, 13320, 13321, 2537], - [0, 20325], - "light", - "apidoc-light", - [0, 603, 4874, 1610, 2070, 19826, 4005, 4508, 91, 1984, 20328, 20330, 2064], - [0, 20334, 20335, 13657, 5472, 20336, 20339, 20340, 2060, 20342, 20341, 1192], - "portable", - [1, 2343, 13324], - [0, 13329, 0, 13330, 4139], - "programmatic", - "cli-app", - [2, 4610, 1745], - [2, 3115, 1745], - [0, 20351, 20349], - [0, 1641, 57, 2062, 20353, 20354, 20355], - [1, 2343, 13332], - [0, 0, 13334, 13335, 2537], - "http2", - [0, 1596, 1758, 1177, 2899, 3421, 3697, 89, 3904, 4193, 91], - [0, 2062, 4162, 1693], - "apple", - " notifications", - [2, 6645, 13337], - "iOS", - "apns", - [1, 2343, 13342], - [0, 13343, 13344, 13347, 2537], - [0, 20366, 19185, 2200, 13123, 3170], - [ - 0, 20369, 16396, 20371, 8778, 6503, 4874, 20374, 6513, 20375, 1177, 20377, 2020, 2071, 20378, 2070, 20380, 2899, - 4039, 4193, 20382, 91 - ], - [3, 1122, 12], - [2, 1126, 6731], - [0, 2070, 11601, 2062, 20385], - [1, 2343, 13349], - [0, 0, 13350, 2514, 2523], - [0, 6503, 4874, 2899, 4113, 91], - [3, 5515, 14], - [2, 4807, 13351], - [1, 2343, 13355], - "jsnext", - [0, 13357, 13358, 13359, 2443], - "relay", - [0, 20394], - [0, 53, 83, 87, 94, 4874, 1195, 1414, 1177, 2591, 2765, 1894, 3753, 91, 2924, 4677], - [0, 2062, 6523, 1781, 57, 4734, 16168, 4735, 676, 1155, 2649, 8535, 1145, 20398, 20400, 1936], - [1, 2343, 13361], - [0, 0, 0, 13365, 2399], - [3, 8780, 10], - "phql", - [2, 13362, 13363], - [0, 2077, 5131, 4453, 4384, 2076, 1702], - [1, 2343, 13367], - [0, 13368, 13371, 13375, 2537], - [0, 20428, 20414, 20434, 13597, 20418, 20409, 20426, 20412, 20420, 3533, 20416, 4038, 20423, 4135, 20410], - "-common", - [2, 1129, 13369], - [ - 0, 28002, 8520, 826, 19344, 7844, 4874, 1091, 8531, 1092, 20437, 20446, 20441, 28400, 20450, 1540, 1610, 1177, - 20444, 11049, 20453, 20436, 2657, 2812, 12284, 2861, 20451, 29197, 3313, 3752, 4238, 4481, 91, 4548, 4590, 6482 - ], - [2, 1126, 1612], - "to-querystring", - [2, 3425, 13373], - [0, 5122, 5130, 1781, 2844, 3445, 5592], - [1, 2343, 13377], - [0, 13378, 13380, 2514, 2523], - [ - 0, 603, 20472, 12397, 20467, 20482, 12399, 12400, 27329, 20463, 1201, 1212, 20479, 20476, 1835, 668, 2071, - 12419, 20465, 3181, 20460, 4480, 91, 20474 - ], - "cracks", - [ - 0, 192, 5467, 842, 5087, 20485, 9129, 4874, 14011, 12471, 2675, 1192, 6551, 2990, 1894, 3706, 3708, 4039, 4474, - 4494, 12473 - ], - "_modules", - [2, 202, 13381], - [1, 2343, 13384], - [0, 13385, 13386, 13389, 2399], - [ - 0, 20490, 20491, 20492, 20493, 20494, 15016, 1792, 3183, 19544, 3923, 19647, 4243, 20495, 18997, 20496, 4389, - 4431 - ], - [0, 13614, 1158, 1159, 1177, 2708, 3410, 4103], - "@appium/support", - "@colors/colors", - [0, 4384, 12786, 1973, 20499, 20500, 3721], - "appium-adb", - "appium-", - "driver", - "chromedriver", - [2, 13391, 13393], - "asyncbox", - "io.appium.settings", - "ports", - [1, 2343, 13401], - "portscanner", - "teen_process", - [0, 13407, 13408, 2514, 2523], - "@appium/", - [3, 1879, 15], - "ppium-ts", - [2, 13403, 13404], - [2, 13402, 13405], - [0, 1613, 20507, 3082, 3427, 1862, 20508, 11804], - [0, 53, 1700, 2126, 2323, 2338, 2396, 2494, 2700, 2774, 3159], - [1, 2343, 13420], - "@appium/t", - [2, 13410, 7630], - [2, 13410, 103], - "luebird", - [2, 4853, 13413], - [3, 4875, 9], - "rtscanner", - [2, 13415, 13416], - [2, 5051, 5588], - "@types/te", - [0, 6230, 13421, 13422, 34352], - [0, 48, 53, 87, 90, 6061, 6063, 20514, 13662, 20517, 1251, 1652, 1177, 1879, 2990, 3188, 4131], - [ - 0, 20519, 20520, 20521, 20522, 4963, 20523, 4967, 6082, 89, 20524, 20525, 11609, 5122, 20526, 20528, 20531, - 20533, 17751, 20536, 20537, 20539, 20541, 20542, 20543, 20544, 20545, 20546, 20547, 20548, 20551, 20553 - ], - [1, 2343, 13424], - [0, 6263, 13425, 13427, 2537], - [ - 0, 48, 53, 83, 87, 90, 92, 5583, 811, 816, 10817, 968, 972, 20562, 5087, 4880, 4883, 1009, 1011, 1503, 1540, - 1610, 1177, 1881, 1895, 17613, 1938, 1939, 1959, 1961, 1192, 89, 3824, 3957, 4042, 4073, 4468, 4484, 91 - ], - "appium", - [0, 20566, 4967, 20568, 3875], - "automation", - [2, 5131, 10428], - [1, 2343, 13431], - [0, 13432, 0, 13433, 4139], - [0, 20577, 20573, 20575, 11959], - [0, 1612, 27, 3212, 5472, 4158, 13106], - [1, 2343, 13435], - [0, 13436, 0, 13438, 2399], - [0, 20584], - "@azure/core-auth", - [0, 10807, 2087, 15964, 20586, 1149, 12804, 6812, 14836, 1862], - [1, 2343, 13440], - [0, 5621, 13443, 13448, 2537], - "pipeline", - "reg", - [0, 4874, 23203, 1149, 2675, 2990, 91, 1983, 26744, 1984], - "@azure/", - "identity", - [2, 13444, 13445], - "monitor-", - [0, 2088, 6938, 6952, 7179, 1111], - "eleme", - [1, 2343, 13451], - [0, 13460, 8134, 13461, 34352], - "opentelemetry", - [2, 13447, 13452], - [2, 13444, 13453], - [3, 830, 9], - [2, 13454, 13455], - "-inst", - "rument", - "ation-", - [0, 16232], - [0, 3656, 200, 8429, 6876, 7169, 5511, 2568, 20597, 2089, 20598], - "azure-sdk", - [2, 13459, 13462], - [2, 13458, 13463], - [2, 13457, 13464], - [2, 13452, 13465], - [2, 13444, 13466], - "@opent", - [1, 2343, 13472], - "elemetry/api", - [2, 13468, 13470], - [0, 13511, 13519, 13533, 2537], - "-logs", - [2, 13471, 13473], - [3, 13471, 15], - [2, 13475, 364], - "er-logs-otlp-http", - [2, 6813, 13477], - [2, 13475, 13478], - [3, 13479, 24], - "metr", - "ics-otlp-http", - [2, 13481, 13482], - [2, 13480, 13483], - "trace-", - "otlp-http", - [2, 13485, 13486], - [2, 13480, 13487], - "otlp-", - "exporter-", - [2, 13490, 1299], - [2, 13489, 13491], - [2, 13475, 13492], - "resources", - [2, 13475, 13494], - "sdk-logs", - [2, 13475, 13496], - [3, 13497, 19], - "metrics", - [2, 13498, 13499], - "trace-base", - [2, 13498, 13501], - [3, 13502, 25], - [2, 13503, 202], - [3, 13497, 16], - "emantic-conventions", - [2, 13505, 13506], - "diagnostic-channel", - "-publishers", - [2, 13508, 13509], - [0, 3008, 4121], - [2, 13444, 5746], - [3, 4870, 9], - "@types/long", - [3, 8778, 12], - "__typescript-etw", - [2, 7295, 13516], - [2, 13515, 13517], - [ - 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 1610, 1700, 1701, 1177, 1895, 1938, 2675, 1192, 2990, 3144, 3400, - 1894, 4257, 4027, 2924 - ], - "exce", - "ption", - " monitoring", - [2, 13521, 13522], - [2, 13520, 13523], - [2, 705, 13522], - [2, 6681, 13522], - [3, 1135, 11], - " insights", - [2, 13527, 13528], - "microsoft", - "azure", - "tracing", - [0, 2924], - [1, 2343, 13536], - "telemetry", - [0, 0, 13537, 13540, 4139], - [0, 48, 53, 10688, 5812], - "analytics", - "apm", - [0, 20611, 20613, 20614], - [1, 2343, 13542], - [0, 13543, 13555, 13556, 2537], - [0, 13687, 20619, 20621, 20624], - [3, 7709, 10], - "ial-provider-node", - [2, 11891, 13545], - [2, 13544, 13546], - [3, 7709, 9], - "hash-", - "hash-node", - [2, 13548, 13550], - [3, 6765, 9], - [2, 13552, 27], - [2, 13548, 13553], - [0, 20626, 4874, 1166, 20627, 2188, 20628, 4481, 1906], - [ - 0, 3171, 2090, 998, 14431, 12666, 158, 11807, 20630, 20631, 16202, 20632, 20634, 13735, 4354, 2741, 20635, - 14242, 20636, 8433, 17180, 1398, 15149, 20637, 18048, 20638, 20639, 12349, 20640, 20641, 20642, 20643, 20644, - 20645, 20646, 20647, 20648, 3775, 20649, 20650, 20651, 20652, 20653, 20654, 2056, 4390, 20655, 17276, 17274, - 20656, 18494, 20657, 20658, 20659, 20660, 20661, 20662, 20663, 20664, 20665, 20666, 20667, 20668, 20669, 20670, - 20671, 2636, 20672, 20673, 7016, 20674, 20675, 20676, 20677, 20678, 20679, 13705, 20680, 20681, 17918, 20682, - 7827, 20683, 20684, 20685, 10790, 20686, 20687, 20688, 20689, 20690, 20691, 7823, 20694, 20695, 20696, 20697, - 20698, 3354, 20699, 20700, 20701, 20702, 20703, 20704, 20705, 20706, 20707, 20708, 6523, 20709, 11811, 10868, - 20710, 20711, 20712, 8861, 20713, 20714, 20715, 20716, 20717, 20718, 20719, 20720, 20721, 20722, 20723, 20724, - 20725, 20726, 20727, 20728, 20729, 20730, 20731, 20732, 20733, 20734, 20735, 20736, 20737, 20738, 20739, 20740, - 20741, 20742, 2403, 20743, 20744, 20746, 12350, 10218, 20747, 20748, 18508, 17733, 20749, 20750, 20751, 20752, - 20753, 20754, 20755, 20756, 20757, 1227, 20758, 20759, 20760, 20761, 20762, 20763, 20764, 12081, 12096, 28922, - 28923, 28924, 28925, 28926, 28931, 28932, 28942, 28943, 28946, 28947, 37859, 28949, 28955, 28958, 28961, 34876, - 33671, 6790, 33677, 27669, 29579, 17288, 13442, 18883 - ], - "signature-v4", - [2, 13548, 13557], - [2, 13548, 553], - [2, 9196, 1732], - [1, 2343, 13570], - "@aws-", - "amplify/amplify-appsync-simulator", - [2, 13562, 13563], - "construct", - "constructs", - [3, 3706, 25], - [2, 13567, 2618], - "projen", - [0, 0, 13575, 13576, 34352], - "appsync", - "gql", - "lambda", - "xray", - [0, 10615, 1159, 1414, 1177, 2675, 2899, 4042], - [0, 2090, 2098, 4202, 7017, 6771, 1413, 1687], - [1, 2343, 13578], - [0, 13582, 9025, 2514, 2487], - [2, 1137, 3007], - "crc32", - "buffer-crc32", - [0, 1676, 1833, 1869, 3440, 3494, 4266], - "readdir-glob", - "zip-stream", - [1, 2343, 13588], - "archiver-", - "jsdoc-t", - [0, 13592, 13593, 13594, 2523], - "jsdoc-theme", - [2, 13586, 13589], - [2, 4279, 4440], - [0, 3537, 13765], - [0, 1906, 1166, 1700, 4481, 4400], - [0, 2325, 7204, 20164, 2100, 7193], - [1, 2343, 13596], - [0, 13598, 13599, 13600, 2537], - [2, 27994, 27995], - [0, 20786, 20789], - [0, 1166, 17450, 4400, 4481, 1906], - [0, 2100, 2104, 2105, 7076, 6614, 6605, 2090, 7193, 3529, 3383, 814, 5933, 7029, 6857, 7204, 4647, 6821, 3403], - [1, 2343, 13602], - [0, 13603, 13604, 13605, 2537], - [0, 20796, 2743, 3170, 20797], - [0, 1177, 1889, 1954, 2022, 20801, 2899, 3369, 3421, 814], - [0, 2090, 2100, 2105, 7076, 2070, 3529, 13017, 814, 7193], - [1, 2343, 13607], - [0, 13608, 13620, 13621, 2537], - [ - 0, 13612, 20819, 20822, 20824, 20825, 20826, 20828, 20829, 20831, 20833, 20836, 20837, 20839, 20840, 20841, - 12153, 20843, 20846, 20847, 20848, 20849, 20850, 20851, 20852, 20853, 20857, 20858, 20859 - ], - [2, 6739, 1228], - "-unscopables", - [2, 7065, 13610], - "@firebase/ai", - "@es-shims/api", - "@ljharb/eslint-config", - "cover", - "covert", - "has-s", - "trict-mode", - [2, 13617, 13618], - [0, 2323, 4042, 91, 2496, 2510, 4077, 10615, 4060, 811, 4071, 4076, 816], - [0, 5165, 18035, 20862, 2109, 20863, 13901, 6681, 20845], - [1, 2343, 13623], - [0, 13624, 13627, 13628, 2399], - [0, 20870, 20848, 20872, 4874, 20873, 2069, 20917, 2863, 20874, 3313, 3348], - "arrayify", - "ensure", - [ - 0, 20883, 20839, 20840, 20885, 603, 20886, 4856, 9417, 20888, 8264, 4870, 7892, 6503, 10410, 16936, 20889, 6513, - 6512, 7819, 1009, 1011, 1306, 1429, 1431, 6522, 1437, 1455, 1700, 1177, 20892, 2323, 2390, 2409, 2529, 20895, - 1209, 3183, 2899, 3261, 3297, 3400, 3421, 705, 4008, 4089, 4193, 4196, 4474, 91, 4747 - ], - [0, 20897, 18035, 20862, 20863, 5165], - [1, 2343, 13630], - [0, 13632, 0, 13634, 2399], - "is-n", - [ - 0, 32557, 32562, 12207, 20745, 20904, 20905, 8998, 29421, 1079, 1091, 1092, 1137, 20908, 1364, 1457, 20909, - 1483, 1511, 1525, 1543, 1594, 1610, 1615, 1645, 20911, 20912, 20913, 2026, 2098, 2139, 2151, 2163, 20914, 2070, - 20917, 2687, 2822, 2863, 2975, 20918, 1209, 12209, 3127, 14774, 3171, 3181, 3237, 3310, 3445, 3467, 6042, 3519, - 30172, 30174, 3560, 3730, 20921, 1153, 4135, 20922, 20924, 20925, 20928, 18052, 4449, 20931, 20934, 20935, 3348, - 4709, 4715, 4729, 4745, 4763, 33069 - ], - "is-nan", - [0, 20937, 200, 20938, 6599, 20940, 2109, 20863, 14609, 20943], - "object-is", - [1, 2343, 13637], - [0, 13639, 13640, 13641, 34352], - "array-fill", - [0, 20948, 1437, 1707, 20949, 20951, 1997], - [0, 4255], - [0, 4051, 3383], - [1, 2343, 13643], - [0, 13644, 13645, 2514, 2523], - [0, 4864, 9129, 20959, 2151, 20960, 4648], - [0, 4874, 4039, 4384, 91], - [1, 2343, 13647], - [0, 0, 13640, 13649, 2523], - "fn.name", - [0, 2117, 1781, 3033, 20966, 4237, 3048, 3639], - [1, 2343, 13654], - "is-buffer", - "propget", - "pruddy-error", - [0, 13655, 13658, 13659, 2523], - [0, 1676, 1865, 2151, 1209, 4449], - "shouldjs", - "unit testing", - [0, 2899, 4039, 4255], - [0, 18503], - [1, 2343, 13661], - [0, 0, 13670, 13675, 2537], - [2, 1176, 3178], - [2, 1218, 5702], - [3, 1267, 18], - [2, 13664, 6836], - [3, 1955, 17], - "fer-arrow", - [2, 13666, 13667], - "native-", - [ - 0, 53, 78, 14167, 87, 20978, 4864, 4865, 5087, 11301, 4874, 19802, 1245, 1457, 1596, 2151, 2070, 1192, 1894, - 4039, 4042, 4045, 20981, 20983, 4075, 4072, 4468, 4474, 4484, 91 - ], - "promise-only", - [2, 13669, 13671], - [3, 4064, 15], - [2, 13673, 2306], - [0, 5284, 9302, 9026, 1666, 6901, 3811, 20986], - "jstz", - [1, 2343, 19602], - [0, 20991, 1437, 2087, 2727, 2983, 3368, 15245, 3741, 4135, 4247, 20992, 13914], - [0, 1429, 1596, 1177, 2759, 20995, 2899, 3697, 3752, 4193], - [3, 8155, 10], - [0, 20997, 20998, 8891, 20999, 2978, 4166, 16159, 21000, 3005, 12804, 21003, 21004, 2703, 6599, 14692], - "listen", - [1, 2343, 13684], - [0, 0, 0, 13685, 2537], - [0, 13326, 200, 20052, 17180, 2124, 3497, 998, 6591, 4354, 16790, 5284, 676, 21009], - [1, 2343, 13690], - [2, 13689, 25388], - "then-sleep", - [3, 20626, 11], - [0, 13691, 13692, 13699, 2443], - [0, 6372, 21020, 21016, 3561, 4383], - [ - 0, 53, 87, 6371, 28962, 28963, 1009, 1011, 1165, 1195, 1587, 1593, 1610, 1628, 1630, 1637, 1177, 1895, 1955, - 21023, 2092, 12278, 3177, 3400, 1894, 21024, 9348, 4172, 4230, 4307, 4409, 4469, 91, 2924, 4677, 4681, 21026, - 4749 - ], - [2, 54, 202], - "@pika/pack", - "pika-plugin-build-web-babel", - [3, 13695, 12], - "ts-types", - [2, 13696, 13697], - [ - 0, 2128, 91, 5284, 2924, 1936, 1623, 12951, 21028, 4380, 21029, 21031, 21033, 21034, 21036, 21029, 21037, 21038, - 21039, 21040, 21042, 21044, 21047, 21050, 21052, 21054, 21057, 21060, 1177, 1894, 17526, 1999, 5811 - ], - [1, 2343, 13701], - [0, 13702, 13703, 13704, 2537], - [0, 1149, 4707], - [0, 3421, 1776, 2899, 4170], - [0, 21067], - "ttc", - [1, 2343, 13707], - [0, 13708, 13710, 13714, 2537], - [0, 21072, 2081], - "libnpx", - [ - 0, 53, 1195, 18228, 1700, 2323, 2338, 2396, 2409, 2494, 2541, 2700, 1192, 2780, 3427, 89, 21074, 3824, 4603, - 2924, 18237 - ], - "node-cleanup", - [2, 3382, 6698], - [2, 2103, 9478], - [0, 2130, 89, 3497, 21077], - [1, 2343, 13717], - "audit", - [0, 0, 13718, 13719, 2537], - [0, 1537, 1177, 2026, 21082, 2899, 3421], - [0, 27, 2671, 1002, 7436, 5576, 7426, 6435], - [1, 2343, 13724], - "parse-", - [3, 9577, 10], - [2, 13721, 13722], - [0, 0, 0, 13726, 34352], - [2, 1199, 4037], - [0, 2414, 7176, 8220, 1017, 2414, 1367], - [1, 2343, 13731], - "automatic", - [3, 1446, 9], - "commits", - [0, 13732, 13733, 2514, 2443], - [0, 18986], - [0, 5517, 13614, 23237, 27570, 19325, 1159, 1177, 3410, 3421, 4389], - [1, 2343, 13737], - "detect", - "detective", - [0, 13740, 13741, 13742, 2443], - "detective-es6", - "sync-exec", - [0, 1149, 21097, 1496, 21098, 1512, 3188, 4709, 21099, 21100, 3722, 1543, 2015, 3427, 21102], - [0, 1429, 4616, 2899, 1177, 3220, 21104, 705, 1894, 21106, 1895, 1955], - [0, 200, 21110, 21111, 2041], - [1, 2343, 13744], - [0, 13745, 13747, 13748, 4139], - [0, 51, 1437, 1457, 1595, 1699, 2151, 3144, 3181, 21118, 4121, 4135, 4388], - "fraction.js", - [ - 0, 5467, 16607, 21120, 6065, 16608, 16612, 19861, 21122, 4864, 5087, 8818, 9129, 6541, 4874, 20959, 5254, 1009, - 1011, 1529, 1610, 1177, 1938, 1954, 1955, 10619, 2675, 1192, 21124, 2784, 2845, 21125, 2990, 3203, 1894, 4039, - 4131, 4294, 4468, 91, 2924 - ], - [0, 2924, 1932, 91, 21127, 4469, 2924, 20050, 2062], - [1, 2343, 13750], - [0, 13751, 13752, 13761, 2523], - [0, 13922, 1437, 1457, 1209, 3170, 3181, 814, 4388], - [ - 0, 21134, 16933, 4870, 8778, 9129, 4874, 5251, 4891, 1429, 1628, 1177, 2675, 2759, 2990, 2899, 3203, 3210, 1894, - 4039, 4193, 4469, 4487, 4490, 91, 188, 4629, 4634, 4645, 2924 - ], - "@vercel/nft", - "arrgv", - "site", - "sites", - "callsites", - "cbor", - "chunkd", - "ci-parallel-vars", - [0, 2924, 1932, 91, 998, 16790, 9654, 20050, 2062, 6887, 4469, 1167, 21136, 1464], - [1, 2343, 13766], - "code-excerpt", - "path-prefix", - [2, 9480, 13764], - [0, 13776, 13779, 2514, 2487], - "concordance", - "curr", - "ently-unhandled", - [2, 13768, 13769], - "emitter", - "emittery", - "ignore-", - "by-default", - [2, 13773, 13774], - [0, 21141, 21144, 13917, 2571, 3173], - "matcher", - [2, 9477, 1541], - [ - 0, 13614, 1159, 1389, 21146, 1596, 1615, 1177, 21147, 21148, 2141, 2708, 21152, 2759, 26259, 21153, 14133, 3697, - 3758, 705, 4039, 4135, 4389 - ], - "resolve-cwd", - [2, 4250, 594], - [1, 2343, 13783], - [0, 13785, 13787, 13790, 2537], - "supertap", - [0, 3441, 21158, 24987], - "temp-dir", - [0, 2934, 3421, 1192, 1177, 4042, 2026, 1894, 4342, 21163, 1938, 5328, 1895, 1955, 811, 21165, 1881, 816, 21161], - [3, 5328, 14], - [2, 13788, 2190], - [0, 15237, 1669, 2382, 3767, 21167, 1781, 21168, 2090], - "🦄", - [3, 1540, 10], - "yield", - [1, 2343, 13797], - "observable", - "observables", - [0, 13798, 13799, 13800, 34352], - [0, 5540, 1699, 2609, 1209, 3021, 21174, 21175, 4484], - [0, 972, 4870, 4880, 4883, 11322, 21179, 89, 3824, 21180, 91, 6482], - [0, 2144, 1669, 25, 89, 3824, 582, 21182, 7020, 21185, 7020, 21188, 21189], - [1, 2343, 13803], - "webpack-log", - [0, 0, 13806, 13807, 2487], - [2, 3599, 1469], - "ps-node", - [0, 2899, 1177, 2759, 1317, 1311, 1954, 1938, 1958, 1903, 1948, 1970], - [0, 2145, 27, 21195, 2325], - [1, 2343, 13809], - [0, 13810, 13813, 13815, 2537], - [0, 1437, 6473, 4290], - "ieee754", - "jmespath", - [0, 1175, 1178, 1195, 1225, 1268, 1177, 1916, 2022, 1192, 3150, 2924], - "vector", - [0, 17460, 2656, 2924, 1932], - "test-vectors", - [2, 13549, 13816], - "insert-module-globals", - [1, 2343, 13820], - [0, 13821, 13822, 13823, 2537], - [0, 2822], - [0, 1377, 21210, 1596, 2759, 4255, 4389, 4770], - [0, 4745, 21214, 21216], - "memoizee", - "@deque/dot", - [1, 2343, 13844], - "colorjs.io", - "-regex", - "emoji-regex", - "abel", - "grunt-babel", - "revalidator", - "sri-toolbox", - [2, 4149, 1852], - "ytesize", - [2, 2237, 13835], - [2, 6654, 3733], - [2, 1463, 13589], - [2, 1632, 3679], - [3, 8654, 10], - "webdriverjs", - [2, 13840, 13841], - "browser-", - [0, 13845, 13851, 13853, 4139], - [0, 2215, 2859, 21224], - [3, 1566, 14], - "ommits-parser", - [2, 13846, 13847], - "-no-only", - [2, 1951, 13849], - [0, 21226, 13305, 3183, 2899, 3421, 3752, 21228, 4255], - "Accessibility", - [ - 0, 2150, 2090, 6771, 1585, 7204, 2473, 3188, 7148, 7149, 6899, 1781, 3917, 6033, 2473, 6865, 7293, 4453, 7147, - 2585, 6811, 7004, 1862 - ], - [1, 2343, 13855], - [0, 13856, 13858, 13861, 2537], - [0, 3181], - "proxy-", - [0, 4856, 4864, 6503, 4874, 1429, 2151, 2759, 2899, 3421, 1894, 3714, 21237, 4474, 91], - "from-env", - [2, 13857, 13859], - [0, 2150, 6771], - "multi-", - [1, 2343, 13877], - "entry", - "multi-entry", - [2, 812, 13865], - [2, 12621, 3733], - "dev-null", - "data-node", - [2, 1669, 13869], - [2, 11941, 12942], - [3, 6387, 14], - [2, 13872, 6662], - [2, 1160, 11052], - [2, 4049, 13874], - [3, 4048, 16], - [0, 13883, 13884, 13885, 2537], - "ndle-size", - [2, 13876, 13878], - [2, 6528, 3069], - [3, 13134, 15], - [2, 13881, 1149], - [0, 21243, 2151, 3261, 21246], - [0, 4864, 6507, 2899, 1863, 4085, 1362, 4706, 3760], - [0, 1862, 2150, 2090, 6771], - [1, 2343, 13887], - [0, 0, 13893, 13900, 2523], - [3, 1391, 11], - [2, 13888, 3171], - "edm-parser", - [2, 2842, 13890], - "md5.js", - [0, 640], - "batchflow", - "factor-bundle", - "ink-docstrap", - "karma-e", - "nv-preprocessor", - [2, 13897, 13898], - [0, 2154, 16718], - "storage", - [1, 2343, 13903], - [0, 13904, 13905, 2514, 2443], - [0, 3188, 4039, 2713, 2215], - [0, 4384, 4255], - [1, 2343, 13907], - [0, 13908, 0, 13910, 4139], - [0, 4740, 3923], - "output-", - [0, 2156, 5576, 16410], - [1, 2343, 13915], - "file-sync", - [2, 13909, 13912], - "v8flags", - [0, 0, 13916, 13918, 2523], - [0, 13614, 1158, 1159, 1177, 3421, 4103, 4389], - "es-set-tostringtag", - [0, 3046, 1213, 1925, 1460, 5746, 7298], - [1, 2343, 13926], - "babel-co", - "de-frame", - [2, 13920, 13921], - [3, 1184, 12], - [2, 13923, 591], - "babel-m", - [0, 0, 13929, 13931, 2537], - "essages", - [2, 13925, 13927], - [ - 0, 48, 53, 68, 78, 5712, 87, 92, 192, 5467, 21276, 5583, 816, 6373, 21279, 21280, 21281, 21285, 19464, 21287, - 21288, 1195, 1177, 1895, 2675, 21290, 1894, 4005, 4042, 4057, 4257, 4072, 91, 1984, 19469, 21294 - ], - [2, 1185, 5190], - [0, 2163, 7193, 21296], - [1, 2343, 13933], - [0, 0, 13934, 13935, 2443], - [0, 19344, 5366, 1009, 1011, 842, 1317, 1177, 1903, 1915, 1938, 1953, 1958, 2675, 4493], - [0, 17218, 5122, 27, 36, 21302, 5995, 5130], - [2, 1884, 1172], - [1, 2343, 13938], - [0, 0, 0, 13939, 4139], - [0, 2163, 7193, 7131, 21307, 21309], - [1, 2343, 13941], - [0, 13943, 13944, 13945, 2487], - "trim-right", - [0, 21315], - [0, 1149, 2228, 21317, 2240, 2273, 2277, 4039, 1899], - [0, 2282, 2070], - [1, 2343, 13947], - [0, 0, 13949, 2514, 2487], - "try-resolve", - [0, 91, 4874], - [1, 2343, 13951], - [0, 13952, 13953, 13954, 2523], - [0, 1437, 4761, 4716, 4756], - [0, 2228, 2239, 21329, 21328, 3006, 4547, 2273, 2290], - [0, 4756, 8632, 5130, 4627, 6400, 1896, 1098], - [1, 2343, 13956], - [0, 13957, 13958, 13959, 2523], - [0, 1437, 4207, 4761, 1209, 16442, 4756, 4547], - [0, 3261, 1797, 1429, 1370, 2899, 4193, 1177, 3188, 1362, 2759, 1525, 4196, 1615, 2820, 1431, 3938, 3202], - [ - 0, 4756, 1098, 2323, 21337, 21339, 1367, 1103, 21340, 2278, 695, 5194, 1172, 21341, 91, 1509, 2437, 5357, 2924, - 1177 - ], - [1, 2343, 13962], - [2, 1262, 1192], - [0, 13963, 13964, 13965, 2537], - [0, 2212, 2070, 4761, 1541, 1209, 1474, 21350, 21348, 4756], - [0, 1797, 1177, 2765, 2151, 21329, 21328, 1938, 21352], - [0, 4756, 8632, 4967, 1896, 2171, 4627, 13017, 21354], - [1, 2343, 13967], - [0, 0, 13968, 13969, 2523], - [0, 4874, 1177, 1895, 1955, 1958, 1894, 4384, 91], - [0, 4446, 21360, 6925], - [3, 13725, 15], - [1, 2343, 13972], - [0, 0, 13973, 13974, 2399], - [0, 5536, 4874, 16480, 26265, 1894, 4172, 21365, 91, 1984], - [0, 5701, 1179, 7253, 21367, 21369, 6564, 3053, 6695], - [1, 2343, 13976], - [0, 0, 13977, 2514, 2443], - [ - 0, 48, 53, 87, 92, 6061, 6063, 16608, 5087, 4874, 1009, 1011, 21377, 21380, 1178, 1193, 1195, 19254, 1177, 1895, - 1915, 1922, 1938, 1955, 1959, 1961, 1966, 1982, 2675, 21385, 1192, 2990, 1894, 4039, 4131, 21388, 91, 2924, 4677 - ], - [1, 2343, 13979], - [0, 0, 13986, 2514, 2537], - [3, 1235, 24], - "xport-extensions", - [2, 13980, 13981], - [2, 1262, 3696], - [3, 1566, 13], - [2, 13984, 2289], - [0, 21393, 21395, 21396, 21397, 3421], - ".exports", - [2, 1237, 13987], - [1, 2343, 13990], - [0, 0, 8002, 13991, 2523], - [0, 1709, 2100, 139, 3560, 6058, 21402, 21404, 1544, 3445, 11995, 21405, 20529, 3778, 21406, 21407], - [1, 2343, 13993], - [0, 0, 13999, 14001, 2537], - "-js-shims", - [2, 1259, 13994], - "place-", - [2, 13996, 3427], - [2, 1252, 13997], - [0, 4874, 1702, 1906], - "dynamic", - [0, 21413, 2184, 20061, 5614, 1398, 3101, 3729, 3917], - [1, 2343, 14003], - [0, 14004, 14005, 14006, 34352], - [0, 21418, 2753], - [0, 4874, 1166, 21420, 21423, 20925, 4481, 1906], - [0, 3038, 3101, 1862, 5614, 1871, 2585, 1398, 3917, 2382, 6613, 7017, 7255, 3048, 5614], - [1, 2343, 14008], - [0, 14009, 0, 14010, 2537], - [0, 21430], - [0, 2191, 3038, 91, 2190, 21432], - "@umijs/test", - [2, 1262, 12445], - [3, 3909, 10], - [2, 14013, 5403], - [1, 2343, 14016], - [0, 0, 14017, 14018, 2523], - [0, 4874, 1009, 1011, 17930, 1177, 21439, 1895, 1955, 17931, 21442, 1894, 17934, 4508, 91, 17936], - [0, 21444, 21447, 21450, 21452, 21455, 21456, 2192, 21457, 21458, 16718, 21459, 202, 5490, 553, 91], - [1, 2343, 14026], - "nyc-config", - [2, 3614, 14020], - [2, 8696, 14021], - "instrument", - [2, 11936, 14023], - [2, 1382, 6521], - [0, 14028, 14030, 14031, 4139], - "pmock", - [0, 1149, 2205, 2151, 1525, 18145, 2102, 21466], - [2, 14023, 5218], - [0, 4449, 1429, 2899, 4193, 1177, 21468, 21470], - [0, 3358, 2193, 2195], - [1, 2343, 14033], - [0, 14036, 14043, 14046, 2523], - [2, 9477, 1213], - [2, 4013, 14034], - [0, 7076, 10420, 21476, 21477, 3505, 16142], - "-bind", - [2, 3046, 14037], - [2, 69, 14038], - [3, 8232, 20], - [2, 14040, 6859], - [2, 5316, 7162], - [ - 0, 1178, 1429, 21480, 1503, 1527, 1652, 1177, 21482, 1922, 1938, 1951, 2899, 3203, 3421, 3752, 4131, 4193, 4196, - 21486, 4585 - ], - "ompat", - "lodash-compat", - [0, 3358, 582, 1564], - "cherry-pick", - [1, 2343, 14049], - [0, 0, 14050, 14051, 4139], - [ - 0, 13693, 87, 21495, 21498, 21499, 8850, 816, 6373, 10615, 10895, 1429, 1177, 1903, 1938, 1954, 1958, 2297, - 2878, 2881, 2886, 2895, 2900, 2904, 2910, 2912, 2918, 18260, 2899, 4042, 6390, 2278, 4193, 4196 - ], - [0, 2195, 10039, 4967, 4627], - [2, 13920, 686], - [2, 2103, 14052], - [1, 2343, 14055], - [0, 14058, 14060, 2514, 2537], - "resolver", - "rename", - [0, 3181, 21505, 21507], - "mapping", - [0, 4874, 668, 3144, 3188, 1894, 4039, 4384, 4483, 4508], - [1, 2343, 14062], - [0, 14063, 14066, 14067, 34352], - [0, 2743], - "ester", - [2, 12187, 14064], - [0, 1177, 1889, 2022, 2899, 3421], - [0, 2070, 5933, 4301, 3403, 21519, 7204, 1299, 21520], - [1, 2343, 14069], - [0, 14070, 9264, 2514, 4139], - [0, 21526, 3729], - [1, 2343, 14072], - [0, 0, 14073, 14074, 2537], - [0, 22839, 1166, 1448, 1939, 2182, 26260, 17269, 3401, 3471, 3758, 4167, 4481, 4507, 1906], - [0, 2203, 2202, 7014, 6436, 6437, 2272, 1177, 6640], - [1, 2343, 14081], - "remap-", - [2, 14076, 1223], - [2, 1185, 14077], - [3, 13663, 26], - [2, 14079, 5746], - [0, 14082, 14083, 14084, 4139], - [0, 20033, 2071, 2687, 17450, 4207, 20789], - [0, 4874, 1166, 1317, 21539, 4400, 4481, 1906], - [ - 0, 12101, 4552, 17455, 18132, 1586, 17462, 7131, 2100, 21541, 17453, 2150, 2070, 21543, 21544, 17461, 3529, - 13777, 3181, 3250, 15294, 18104, 13017, 11601, 100, 614, 6435, 21520, 21545, 1862, 16774, 3358 - ], - [3, 1184, 14], - [2, 14085, 5789], - [2, 1218, 1229], - [1, 2343, 14089], - [0, 14090, 14091, 14094, 2443], - [0, 1676, 1615, 21552, 21550], - [0, 1149], - [3, 1217, 21], - [2, 14092, 5610], - [0, 11812, 21555, 158, 21556, 2692, 2206, 6270, 17539, 3797], - [1, 2343, 14096], - [0, 14097, 14098, 14100, 2537], - [0, 3310, 14231, 4484], - [0, 4874, 5542, 1009, 1011, 1177, 21564, 1938, 1953, 1958, 1894, 4508, 91], - "chunk-data", - [ - 0, 21566, 21567, 21568, 15473, 17623, 21571, 5194, 10906, 2207, 21572, 21573, 14692, 21574, 6355, 21576, 21577, - 21578, 21579, 21580, 21581, 21582, 21583, 5995, 21584, 21585, 21586, 21587 - ], - [1, 2343, 14102], - [0, 14103, 14105, 14108, 34352], - [0, 16485, 21668], - "strict-", - [0, 107, 4874, 1009, 1011, 21594, 1177, 1881, 1883, 1938, 21597, 20917, 3297, 1531, 91, 15822, 1984], - "strict-mode", - [2, 1226, 14106], - [0, 21600, 21603, 1885, 21604, 21599, 21605, 21606, 5592, 2211, 21607, 21608, 21611], - [2, 1218, 77], - [1, 2343, 14111], - [0, 14112, 14113, 14114, 4139], - [0, 20917, 21616], - [ - 0, 21619, 6503, 21620, 21621, 4874, 21623, 15600, 9725, 11305, 6513, 6520, 21625, 21626, 1414, 1503, 1610, 2020, - 20914, 2321, 21627, 1776, 29342, 29343, 21630, 2899, 15221, 3275, 3297, 3416, 3445, 3479, 6332, 1894, 3752, - 4039, 4153, 4193, 4449, 91, 4748 - ], - [0, 1885, 5592, 21632, 5576, 21633], - [1, 2343, 14116], - [0, 14117, 14118, 14119, 2523], - [0, 21642, 21651, 21645, 21647, 21650, 21649, 16511, 2928, 21641, 21638, 21639, 4507], - [ - 0, 21662, 13789, 826, 5366, 6494, 4874, 21654, 14731, 16936, 6513, 6515, 1166, 1170, 1317, 1362, 1364, 1414, - 14099, 21656, 21663, 1701, 1702, 2024, 2026, 2139, 13870, 2188, 3297, 3310, 3377, 3477, 21653, 3532, 29457, - 3923, 705, 4193, 21657, 4400, 21659, 4454, 4494, 91, 1906 - ], - [ - 0, 27, 2671, 13333, 3038, 2212, 1002, 12831, 705, 2869, 7085, 7289, 1612, 11995, 11996, 16518, 21665, 27778, - 27408, 21666, 21667, 1170, 4339, 3310, 21668 - ], - [1, 2343, 14124], - "-react-jsx", - [2, 9381, 14121], - [2, 1185, 14122], - [0, 0, 14125, 14126, 2537], - [ - 0, 2323, 4207, 4042, 1637, 3471, 3561, 21689, 21681, 3416, 3758, 4320, 53, 1165, 3678, 2650, 21688, 87, 21684, - 21679, 5583, 10615, 6373, 16912 - ], - [0, 21691, 4967, 9204, 1283], - [1, 2343, 14134], - [2, 88, 2124], - [3, 3872, 10], - [2, 14129, 553], - [2, 5237, 14130], - [2, 1199, 14131], - "pkgfiles", - [0, 0, 14135, 14136, 2537], - [0, 2702, 3188, 4039, 4384], - [0, 2150, 1237, 21697, 1153, 21699, 3768, 1851, 2656, 6737, 21700, 21701, 21702, 21703, 21704], - "minification", - [1, 2343, 14140], - "propTypes", - [0, 0, 0, 14141, 4139], - [0, 2220, 21715], - [1, 2343, 14143], - [0, 2513, 14146, 2514, 2523], - [3, 3957, 12], - [2, 14144, 353], - [0, 4856, 6503, 4874, 1429, 2220, 2899, 4039, 4042, 4071, 4232, 21721, 91], - [1, 2343, 14148], - [0, 14149, 0, 2514, 34352], - [0, 5528, 4484], - [1, 2343, 14151], - [0, 14152, 14153, 14154, 4139], - [0, 2822, 20273, 21731, 21732], - [0, 21734, 20269, 1509, 21735, 2053, 2149, 2398, 3183, 2899, 4452, 4597, 6033], - [ - 0, 21738, 1507, 1506, 2382, 1739, 1745, 7682, 21740, 4965, 2149, 9339, 8623, 1179, 2193, 12981, 5284, 5352, 676, - 6671, 1783, 9338, 1644, 57, 7119, 13755, 2947, 1283, 4452, 4745, 7651 - ], - [1, 2343, 14156], - [0, 14165, 14171, 2514, 34352], - "numer", - "ic-separator", - [2, 14157, 14158], - [2, 69, 14159], - [3, 5835, 33], - "mutators", - [2, 14161, 14162], - [3, 10720, 33], - [0, 14393, 21746, 3025, 10420, 3263, 3747], - "atch-binding", - [2, 14164, 14166], - [3, 14160, 25], - "llish-coalescing-operator", - [2, 14168, 14169], - [0, 1364, 21748, 2026, 21749, 2759, 1209, 3183, 3313, 21752], - [1, 2343, 14173], - [0, 14174, 14175, 14176, 2443], - [0, 2021, 2070, 3368, 2822, 2240, 3181, 1672, 2685, 2107, 2015, 21761, 21763, 21759], - [0, 21765, 4431, 21770, 2291, 21768, 2283, 2277], - [0, 5957, 1149, 200, 3178, 2280, 6147, 1209, 2275, 1973, 2907, 2276, 36, 21772, 8632, 7048, 2763, 4990], - [3, 9676, 14], - "heck-", - "es2015-", - "constant", - "constants", - [2, 14179, 14181], - [2, 14178, 14182], - [2, 14177, 14183], - "function-", - "comma", - "commas", - [2, 14185, 14187], - [2, 10038, 14188], - [2, 7174, 14189], - [2, 1218, 14190], - [2, 1236, 5742], - [3, 1235, 40], - "ed-functions", - [2, 14193, 14194], - [2, 1236, 5256], - [3, 14196, 31], - [2, 14197, 5763], - [2, 1236, 5765], - [3, 14199, 31], - [2, 14200, 5770], - [1, 2343, 14225], - "for-of", - [2, 1236, 14203], - [3, 14204, 31], - [2, 14205, 5789], - [2, 1236, 5796], - [3, 1240, 38], - [2, 14208, 5808], - [2, 14208, 4376], - [2, 14208, 5811], - [2, 3425, 4340], - [2, 1236, 14212], - [2, 1236, 5639], - [2, 1236, 5845], - [3, 14215, 31], - [2, 14216, 5849], - [2, 14216, 5851], - [3, 1244, 31], - [2, 14219, 5855], - [2, 5857, 1108], - [2, 1236, 14221], - [3, 13982, 27], - [2, 14223, 5780], - [0, 14228, 14229, 14230, 2523], - "to-chromium", - [2, 1807, 14226], - [0, 2633], - [0, 2228, 2240, 2263, 2247, 2253, 2273, 2277, 2281, 2320, 2258], - [0, 21779, 1098, 1283, 5354, 5614], - "gfsl", - [1, 2343, 14233], - [0, 0, 14234, 14235, 2537], - [0, 2228, 2307, 2239, 2316, 1429], - [0, 21779], - [1, 2343, 14244], - [2, 1262, 2124], - [2, 1249, 5878], - "-source", - [2, 1248, 14239], - [3, 14240, 34], - "elf", - [2, 14241, 14242], - [0, 14245, 14246, 14247, 34352], - [0, 1149, 1389, 21791, 2070, 1209, 814, 4650], - [0, 2228, 2240, 2247, 2273, 2899, 4193], - [0, 21779, 1389, 2228], - [3, 5700, 31], - [2, 14248, 3164], - [1, 2343, 14251], - [0, 14252, 14253, 14235, 2487], - [0, 4135], - [0, 2228, 2234, 2247, 2273, 2277, 2285, 2307, 3006], - [3, 1233, 24], - "o-expressions", - [2, 14254, 14255], - [2, 1226, 14038], - [1, 2343, 14259], - [0, 14260, 14261, 2514, 2537], - [0, 3368, 21804, 13914, 2727, 21759], - [0, 2228, 2273], - [3, 1230, 29], - "or-call", - [2, 13565, 14263], - [2, 14262, 14264], - [1, 2343, 14267], - [0, 14268, 14269, 14271, 2523], - [0, 1149, 1144, 21810, 2709], - [0, 1906, 2228, 3363, 2240, 1615, 3505, 21814, 4351, 2316, 2247, 2283], - [3, 1233, 33], - [0, 21779, 13792, 12804, 21820, 6707, 6887, 3514, 6681, 2062, 21821], - [1, 2343, 14273], - [0, 14274, 14277, 14278, 2399], - [0, 1149, 4039], - [3, 1225, 29], - [2, 14275, 5747], - [0, 2228, 21468, 2273, 2271, 2277], - [0, 21779, 4050, 4051, 7293, 6865, 1700, 6790, 17459, 4039], - [1, 2343, 14280], - [0, 14281, 14283, 14284, 4139], - [0, 1149, 21834, 1664, 21420, 4449, 4707], - "home-or-tmp", - [0, 2228, 2240, 2247, 2271, 2273, 2277, 2314], - [0, 21779, 21837, 4329, 2278, 1623, 7234, 7121, 590], - [1, 2343, 14286], - [0, 14287, 14288, 14235, 2537], - [0, 1437, 4227], - [0, 2228, 2247, 2273, 2271, 2277], - [1, 2343, 14290], - [0, 14291, 14292, 14293, 2537], - [0, 3445, 1149, 3237, 1544, 13399, 4150, 4151, 16511, 21847], - [0, 2228, 2273, 2271, 2277], - [0, 21779, 36, 1544, 27], - [1, 2343, 14295], - [0, 14296, 14297, 14235, 2537], - [0, 1437, 21855], - [0, 2228, 2240, 2247, 2271, 2273, 2277], - [1, 2343, 14299], - [0, 14300, 14302, 14303, 2523], - [0, 1437, 21861, 1209, 4300], - "esutils", - [0, 2228, 2247, 2271, 2273, 2277], - [0, 21779, 1623, 671, 21861], - [1, 2343, 14305], - [0, 14306, 14302, 14312, 4139], - [0, 1437, 1462, 21867], - "nv-inline", - [2, 4690, 14307], - [2, 1226, 14308], - "zipobject", - [2, 3024, 14310], - [0, 21779, 21869, 1623, 590, 592, 5376, 3178, 15215], - [1, 2343, 14314], - [0, 14315, 14288, 14321, 2537], - [0, 1437, 3714, 2633], - [3, 14257, 24], - [2, 9428, 5238], - [2, 14316, 14317], - "9.0.0", - [2, 5857, 14319], - [0, 21779, 1936, 2262, 3178, 15215, 6707], - [1, 2343, 14323], - [0, 14324, 14325, 14326, 4139], - [0, 1437, 2267, 3478, 3545, 3714, 18045, 18047, 18050, 18051], - [0, 1166, 1701, 2228, 1906], - [0, 21779, 15215, 20639, 158, 11807, 21881, 20637, 3178, 18048, 8221], - [1, 2343, 14328], - [0, 14329, 14261, 2514, 2523], - [0, 17523], - [1, 2343, 14331], - [0, 14332, 14335, 14235, 4139], - [0, 1437, 21890, 2272], - "@purtuga/esm-webpack-plugin", - [2, 4807, 1155], - [0, 2228, 2271, 2277], - "browserstack", - [2, 13283, 14336], - [2, 13283, 3199], - "otpauth", - [1, 2343, 14341], - [0, 14342, 14345, 14235, 2487], - [0, 695, 1149, 1437, 1209], - "-as-a-service", - [2, 5995, 14343], - [0, 2228, 2247, 2273, 21898, 2271, 2277], - [1, 2343, 14347], - [0, 14348, 14349, 14350, 2487], - [0, 21903], - [0, 2228, 2247, 2271, 2273, 4384], - [0, 21779, 2276, 1973, 8791], - [1, 2343, 14353], - [2, 2235, 1283], - [0, 14358, 14302, 14359, 4139], - "codec", - "decoder", - "encoder", - "base64", - [0, 1149, 1437, 1615, 1664, 4707], - [0, 21779, 4329, 2278, 1623, 7234, 7121, 590], - [1, 2343, 14361], - [0, 14362, 14288, 14235, 2537], - [0, 1437, 21867, 21915, 4535], - [1, 2343, 14364], - [0, 14365, 14366, 14367, 2487], - [0, 2164, 1149, 1209, 4438], - [0, 2228, 2240, 2293, 4547, 2273, 2271, 2277], - [0, 21779, 2282, 3000], - [1, 2343, 14369], - [0, 14370, 14371, 14376, 2537], - [0, 1437, 1537, 1566, 3545, 3760], - [0, 2228, 2239, 2240, 2247, 2258, 2273, 2277, 2290, 21929, 21930, 2293, 2307, 3006], - "basic", - "orization", - [2, 1303, 14373], - "basicauth", - [0, 2228, 21779, 1566, 16094, 13729, 3073], - [1, 2343, 14378], - [0, 14379, 14381, 14382, 2399], - [0, 1437, 13985, 3545], - [2, 6915, 5697], - [0, 2228, 2239, 2240, 2247, 2273, 2277, 21929, 21942, 21930, 2293, 2307, 3006], - [0, 2228, 21779, 13985, 2195, 21944, 3979, 21945, 1566, 16094, 13729, 3073], - [1, 2343, 14384], - [0, 14385, 14389, 14390, 2523], - [0, 1437, 1177], - "tructure", - "ministructure", - "orange sms", - [0, 442, 2228, 2240, 2314], - [0, 21779, 1177, 671, 2649, 11937], - [1, 2343, 14392], - [0, 14394, 14395, 14396, 2537], - "@mapbox/node-pre-gyp", - [0, 21890, 2292, 1209, 21956], - [0, 2228, 2273, 2277, 3006, 4436], - [0, 21779, 2292, 19271, 16790], - [1, 2343, 14398], - [0, 14399, 14400, 14401, 4139], - [0, 1615, 1776], - [0, 2228, 2247, 2277, 2291, 13896, 3006], - [0, 21779, 2228, 1745, 2295, 1776, 18011], - [1, 2343, 14403], - [0, 6203, 14409, 14410, 2443], - "utfx", - "testjs", - "metascript", - "closure", - [2, 14407, 4643], - [ - 0, 192, 21970, 5467, 6061, 6063, 16608, 1177, 1903, 1938, 1954, 1958, 1970, 2025, 2228, 2239, 2283, 2285, 2290, - 2291, 2307, 2675, 2297, 2881, 2895, 2900, 3006, 2899, 4131 - ], - [0, 21779, 2297, 2228, 1973, 2275, 8791, 21972], - [1, 2343, 14412], - [0, 14414, 14415, 14420, 2399], - "pomelo-logger", - [0, 21890, 3188], - [0, 1429, 1506, 2228, 2240, 21980, 2247, 2258, 2273, 21929, 21982, 21930, 21984, 2899, 4039], - "di", - "IoC", - "AOP", - "injection", - [0, 21779, 2899, 1973], - "consistent", - "hot reload", - [2, 6399, 5995], - [1, 2343, 14434], - "able codes", - [2, 6578, 14425], - [3, 7191, 11], - [2, 14427, 14419], - "hronous script loading", - [2, 1149, 14429], - "magic", - ", self-described javaScript objects", - [2, 14431, 14432], - [0, 14274, 14435, 14436, 2399], - [0, 1429, 2228, 21991, 2240, 2247, 2273, 2283, 3203, 4449, 4727], - [0, 1586, 2228, 21779, 2301], - [1, 2343, 14439], - "beautify", - [0, 14440, 14441, 14442, 2443], - [0, 4135, 6472, 4707], - [0, 1429, 2240, 2273, 2283, 2300, 22000, 22002, 3006, 2899, 3752, 4436], - [0, 21779, 9044, 22005, 15844, 22008, 22009, 6667, 22011, 1851, 4649, 13728], - "art-near-room-catch", - "blanket-line", - "born-greatly-explain3", - "bring-water-silence", - "brush-bigger-afternoon0", - "e-meet-war", - [2, 11308, 14448], - [2, 6922, 14449], - "compare-", - "breeze-mad2", - [2, 14451, 14452], - "did-", - "strai", - "ght-sister-sail", - [2, 14455, 14456], - [2, 14454, 14457], - "excitement-tonight-dead", - "gain-pleasant-prepare", - "industrial-public-immediately-until", - "is-str", - "aight-web3-attack", - [2, 14462, 14463], - "known-", - "wet-thirty-gave", - [2, 14465, 14466], - "-private-thee6", - [2, 13682, 14468], - [1, 2343, 14493], - "mainly-cent", - "ain-quarter-sit8", - [2, 2944, 14472], - "mouse-bat-web3-present", - "need", - "s-supper-anything", - [2, 14475, 14476], - "percent-impossible-score", - "rocket-location-calm-valley", - "seldom-fire-web3-running", - "shad", - "e-swim-shells1", - [2, 14481, 14482], - "spider-melted-chemical", - "stre", - "tch-onto-driver7", - [2, 14485, 14486], - "dream-supply5", - [2, 11072, 14488], - "-invented-girl-jungle", - [2, 4990, 14490], - "we-hunt-process", - [0, 0, 14494, 2514, 2399], - [0, 2228, 2239], - "automobile7", - [2, 4654, 14495], - "whether-dangerous", - [1, 2343, 14499], - [0, 0, 14500, 14501, 2523], - [0, 2228, 2240, 2247, 2277, 2278, 1906], - [0, 21779, 1623, 2278, 4329, 590, 7234, 4358, 22022], - "ansicolors", - "global-", - [2, 14503, 6666], - [2, 2103, 14504], - [2, 2687, 11601], - [3, 5510, 9], - [2, 14507, 3101], - "script-", - "inject", - "injector", - [2, 14509, 14511], - [1, 2343, 14516], - "dotpathlookup", - "jsl", - [0, 14519, 14520, 14521, 2537], - "httpserver", - [2, 2869, 14517], - [0, 1512, 1209, 3760, 22027, 22031, 12826], - [0, 2228, 2256, 2273, 2283, 2293, 22035, 3003, 1698, 20001], - [0, 21779, 2228, 12826, 1973, 2765, 2899, 2907, 22037], - [1, 2343, 14523], - [0, 14524, 14525, 14526, 2443], - [0, 1437, 3404, 4294], - [0, 2228, 2240, 1906], - [0, 21779, 4166, 1523, 8429, 2978, 1614, 1451, 3729, 200], - "docdown", - [1, 2343, 14530], - "qunit-extras", - [0, 7923, 14531, 14420, 34352], - [0, 2228, 2273, 2899], - [1, 2343, 14533], - [0, 14534, 14535, 14536, 2443], - [0, 1149, 22054, 22057, 4545, 22058], - [0, 1177, 22062, 22064, 22066, 22068, 22071, 22072, 2228, 2240, 2302, 2899, 4039, 4165], - [0, 2228, 21779, 22074, 158, 22075, 1623, 22057, 16697], - [1, 2343, 14538], - [0, 14539, 14540, 14541, 2537], - [0, 1437, 1676, 1209, 3505], - [0, 2228, 3188, 4039, 2240, 2293, 22081, 2273], - [0, 21779, 2319, 8635, 1936, 1623, 6707], - [1, 2343, 14543], - [0, 14549, 14551, 14565, 2523], - "@beyond-js/specifier-parser", - [3, 14544, 11], - [2, 14545, 2150], - "bee", - [2, 14545, 14547], - [0, 442, 1009, 1011, 1437, 1177, 1895, 1953, 1955, 2020, 2720, 2856, 3157, 3275, 1894, 4523, 4728], - "tml", - [ - 0, 22088, 21122, 5601, 4864, 4866, 22089, 6503, 21621, 4874, 6513, 6520, 22092, 1414, 1615, 2151, 22093, 21627, - 2899, 4193, 4449, 91 - ], - "ansi-to-html", - "concat-", - "maps", - "-sourcemaps", - [2, 5056, 14555], - [2, 14553, 14556], - "json-format", - [3, 6477, 9], - "ackage-", - "ackage-path", - [2, 14559, 14561], - "uimport", - [2, 14503, 5260], - [0, 91, 9654, 4525, 1885], - "universal", - " javascript", - [2, 14566, 14567], - "universal ", - [2, 14569, 91], - [3, 2758, 10], - [2, 14571, 14567], - [3, 14572, 11], - [2, 14573, 91], - "sigle page", - "spa", - "modul", - "ar development", - [2, 14577, 14578], - [3, 11615, 13], - " frontend", - [2, 3166, 14581], - "micros", - [2, 14583, 8920], - "micro ", - "services", - [2, 14585, 14586], - "hot ", - " replacement", - [2, 1237, 14589], - [2, 14588, 14590], - "ssr", - " side rendering", - [2, 36, 14593], - " packager", - [2, 91, 14595], - "JAMStack", - [1, 2343, 14599], - [0, 0, 14610, 14611, 2523], - "real time", - [2, 7519, 5130], - "ssr react framework", - [2, 8589, 5130], - "ssr ", - [2, 14604, 14603], - " framework", - [2, 3709, 14606], - [2, 14604, 14607], - "websockets", - [0, 22099, 8719, 842, 16145, 22100, 5087, 4874, 22102, 9240, 1177, 1192, 3313, 1894, 4039, 4342, 91], - [0, 2322, 5122, 5130, 6710, 27, 5592, 5995], - [1, 2343, 14613], - [0, 14618, 14623, 14624, 2487], - "check-", - "check-types", - "hoopy", - "tryer", - [0, 22110, 21681, 22109, 4600], - "please-", - "release-me", - [2, 14619, 14620], - "spooks", - [0, 1177, 1889, 1954, 2022, 3188, 2899, 3421, 4039], - [0, 6147, 3101, 623, 7048, 4990, 14932, 13441, 22114, 12804, 22115], - [1, 2343, 14627], - "streamify", - [0, 14630, 14631, 14632, 2537], - "serialise", - [3, 14430, 12], - [0, 2367, 22122, 2409, 2835, 3067, 3102, 19984, 4431], - [0, 4597], - [0, 18444, 2323, 1098, 12074, 6113, 22126, 22127], - [1, 2343, 14645], - "arbitrary", - "precision", - "arithmetic", - "big", - "decimal", - "float", - "biginteger", - "bigdecimal", - [3, 1325, 9], - "bigint", - "bignum", - [0, 14646, 14647, 14648, 2537], - [0, 18473, 692, 2012, 2390, 2494, 22133, 2543, 3188, 2072, 3730, 18528, 4039, 4135, 1241, 4597, 4600], - [0, 2348, 2899], - [0, 18444, 16179, 4166, 22137, 1804, 2195], - "uri-", - [1, 2343, 14653], - "uri-to-path", - [2, 2093, 14651], - [0, 14656, 14657, 14658, 2537], - "gyp", - "c++", - [0, 1165, 2476, 3561, 4606], - [0, 1166, 2510, 3477, 4597, 1906], - [0, 18444, 1165, 3561, 1623, 3665, 22145, 5376, 4358, 22147], - [1, 2343, 14661], - "@noble/hashes", - [0, 14662, 14663, 14664, 2537], - [0, 7709, 1104, 1443, 2061, 22153, 3173, 3544, 4597], - [0, 1429, 22157, 1177, 2323, 2494, 2899, 1894], - [0, 18444, 7200, 6949, 20001], - [1, 2343, 14668], - "@antv/", - [2, 14666, 4627], - [0, 14670, 0, 14677, 2537], - "@antv/g2", - [0, 22167, 22168, 2012, 3171, 3730, 3768, 22170, 4597, 4600, 4747], - "@antv/g2plot", - "@antv/util", - "@juggle/resize-observer", - "d3-color", - "conciler", - [2, 3877, 14675], - [0, 18444, 13531, 20614, 13901], - "data-", - "data-set", - [2, 14666, 14679], - [3, 87, 15], - [2, 14681, 1266], - "backgrounds", - [2, 10818, 14683], - [3, 10827, 19], - "fo", - [2, 14685, 14686], - "knobs", - [2, 10818, 14688], - "options", - [2, 10818, 14690], - "fabric", - "@umijs/fabric", - "@welldone-software/why-did-you-render", - "aphrodite", - [3, 13080, 20], - [2, 14696, 3897], - [2, 14696, 8221], - "bx-jest-electron", - [3, 4325, 12], - [2, 6996, 4408], - [2, 14700, 14701], - [1, 2343, 14704], - [0, 14716, 14722, 14724, 2487], - "-deploy", - [2, 7204, 14705], - [2, 10617, 14706], - [2, 5651, 2091], - "moment-", - "jalaali", - [2, 14709, 14710], - "react-wi", - "th-styles-interface-aphrodite", - [2, 14712, 14713], - [3, 14714, 28], - [0, 4431, 4002, 3544, 4606], - "mpiler", - "css-compiler", - [2, 14715, 14718], - "-diff", - [2, 8745, 14720], - [0, 1906, 2899, 4597, 3697, 53, 2510, 5761, 5756, 5743], - "g2", - [0, 18444, 1172, 5198, 6778, 7056, 7192, 22179, 22180, 5341, 5061, 22181, 5284, 4643], - [1, 2343, 14726], - [0, 14727, 14729, 14732, 2523], - [0, 2476], - [3, 4808, 10], - [0, 1166, 2323, 3477, 4597, 1906], - "dable-stream", - [2, 14728, 14730], - [0, 18444, 4295, 1412, 4327, 3126, 4577, 22188, 22189, 22190], - [1, 2343, 14734], - [0, 14735, 14737, 14740, 2537], - [0, 1104, 1370, 2061, 2720, 3544, 4431, 4597, 4647], - "bun-types", - [0, 1429, 2012, 22198, 2436, 2463, 2272, 2899, 4039, 4193, 4196, 4278], - "falafel", - "fore", - [0, 18444, 1370], - "foreach", - [1, 2343, 14746], - "coffee-", - [2, 14743, 89], - "save", - [0, 14749, 14750, 14751, 2523], - "save-license", - [2, 4534, 14747], - [0, 1389, 2541, 1391, 3923, 4431], - [0, 2899, 1429, 15052], - [0, 18444, 17461, 1389], - [1, 2343, 14753], - [0, 14754, 14758, 14760, 2537], - [0, 4431], - "curses", - "tui", - "tput", - [0, 2899, 4597], - "terminfo", - [0, 2323, 18444], - "termcap", - [1, 2343, 14763], - [0, 14764, 14631, 14765, 2399], - [0, 22217, 3544, 22218, 4135, 4431], - [0, 2323, 15208, 4135, 18444, 15525, 22220, 22222, 22223], - [1, 2343, 14767], - [0, 14771, 0, 14772, 4139], - "ansi-term", - "drawille-canvas-blessed-contrib", - "map-canvas", - [0, 97, 22229, 1593, 22230, 3544, 4431, 4597], - [0, 18444, 2323, 2325], - "-terminal", - [2, 3127, 14773], - [2, 3149, 7046], - "picture-tuber", - "sparkline", - [1, 2343, 14779], - [0, 14782, 14786, 14787, 2537], - "term-canvas", - "x256", - [0, 4431, 3032], - "@types/bl", - "essed", - [2, 14783, 14784], - [0, 2899, 4597, 4170], - [0, 18444], - [1, 2343, 14789], - [0, 14790, 14791, 14792, 34352], - [0, 22246, 2476, 4453], - [0, 1166, 1437, 1700, 2089, 2188, 2323, 4597, 1906], - [0, 18444, 2090, 1586, 22249, 2301, 22251, 22253, 15795, 6901, 22254, 4262, 2325, 16077, 22255], - [1, 2343, 14794], - [0, 14795, 7878, 14796, 2487], - [0, 2061, 3544, 4039, 4431, 4597], - [0, 18444, 4050, 7293, 6865], - [1, 2343, 14798], - [0, 14799, 14800, 14801, 2487], - [0, 1462, 3544, 4431, 4606], - [0, 1429, 21480, 1596, 2026, 2061, 2323, 2367, 2494, 2504, 2510, 2899, 3421, 4597], - [0, 1623, 4050, 3178, 2280, 1462, 2458, 2459, 2361, 18444, 17461], - [1, 2343, 14803], - [0, 14804, 14805, 14787, 2399], - [0, 1509, 3544, 4002, 4431, 4606], - [0, 2510, 2899, 4170, 4597], - [1, 2343, 14807], - [0, 14808, 14809, 14810, 4139], - [0, 2541, 4431, 4707], - [0, 1596, 1700, 2323, 2436, 2444, 2447, 2455, 2463, 2685, 22280, 3102, 2899, 4170], - [0, 2323, 18444, 21837, 4329, 2278, 1623, 7234, 7121, 590], - [1, 2343, 14812], - [0, 14813, 14814, 14787, 2537], - [0, 4597, 4431, 14557], - [0, 2323, 2899, 4170, 2759, 16584, 4278, 2510, 3202], - [1, 2343, 14816], - [0, 14817, 14818, 14819, 2537], - [0, 3032, 22291, 3544, 22292, 22293, 22296, 4431, 4597], - [0, 1429, 2899], - [0, 18444, 5614, 1623, 1204, 1698, 134], - [1, 2343, 14821], - [0, 14822, 14818, 14823, 34352], - [0, 4431, 2541, 2720, 1687], - [0, 18444, 8635, 22303, 22304, 8622, 8620, 22306], - "loop", - [1, 2343, 14826], - [0, 14827, 14828, 14831, 2537], - [0, 710, 1544, 4438, 2061, 3102, 1104, 4150, 4151, 21847], - [0, 2323, 2899, 4342, 2515, 1506], - "baconjs", - "kefir", - [0, 17461, 1544, 3000, 22313, 36], - [3, 3736, 10], - [3, 3736, 14], - "deferred", - "deferreds", - "future", - " control", - "flow control", - "dsl", - [2, 8553, 6072], - [1, 2343, 14842], - [0, 14843, 14844, 14845, 2537], - [0, 4431, 3544], - [0, 2323, 1192, 1894, 21482], - [0, 18444, 1585, 2323], - "BN", - "Big number", - "BigNum", - "Modulo", - "Montgomery", - [1, 2343, 14852], - [0, 14853, 14854, 14857, 2537], - [0, 1104, 22324, 2061, 3544, 4431], - [0, 2272, 2899, 4597], - "unpipe", - "destr", - [0, 18444, 1623, 22324, 671, 9654, 7121], - "destroy", - [1, 2343, 14860], - [0, 14861, 14862, 14863, 2537], - [0, 4597, 21861, 22331, 4431, 2061, 3544], - [0, 3421, 2899, 4193, 1177, 4039, 4170, 1596, 22333, 22334, 1958, 1903, 1970, 1900], - [0, 21861, 18444], - [2, 1601, 1851], - [1, 2343, 14866], - [0, 14867, 14870, 14875, 2537], - [0, 1637, 16136, 3544, 3427, 4606], - "-jsdoc-theme", - [2, 1365, 14868], - [0, 4389, 4597, 4387, 2510], - "postgre", - "sql", - "postgresql", - "datamapper", - [0, 1637, 3178, 14137, 16918, 16919, 1623, 18444, 3561], - [1, 2343, 14878], - "active record", - [0, 14879, 14880, 14881, 2537], - [0, 16858, 3544, 4606], - [0, 4389, 4597, 4387], - [0, 18444, 3178, 1623], - [1, 2343, 14883], - [0, 14884, 14885, 14886, 2523], - [0, 3544, 4431, 20992], - [0, 2272, 3760, 4170, 4597], - [0, 18444, 2382, 1781, 2323], - [1, 2343, 14888], - [0, 14889, 14890, 14891, 34352], - [0, 1177, 2061, 3544], - [0, 2323, 2899, 4597, 4170, 2759, 1178, 22360, 22363], - [0, 18444, 1177, 2323, 2656, 22365, 4354, 4225, 1501, 4525, 676, 5284, 5957, 671, 1932], - "mincer", - [1, 2343, 14895], - "eyeglass-module", - [0, 14896, 14897, 14898, 4139], - [0, 2856, 4597, 2051, 22372, 4431, 3544, 1537, 22371], - [0, 2323, 2899, 4170, 2759, 1783], - [0, 18444, 2090, 2385, 4068, 2323, 1932], - [1, 2343, 14900], - [0, 14901, 14902, 14905, 2487], - [0, 4207, 3249, 3544, 22379, 22382], - [0, 1906, 1166, 2323, 4597, 3477], - "align", - "ansi-align", - [0, 18444, 7131, 2687, 2090, 1586, 3529, 3181, 2070, 21543, 4597], - [1, 2343, 14909], - "boxes", - "border", - [0, 14910, 14631, 14911, 2523], - [0, 3544, 4431], - [0, 18444, 19991, 4237, 20050, 22390, 22392, 3053, 2323], - [1, 2343, 14913], - [0, 14843, 14914, 14915, 2537], - [0, 2323, 2899, 4597, 4170, 3697, 1879], - [0, 18444, 2323, 3033, 10903, 3403], - [1, 2343, 14917], - [0, 14918, 7923, 14919, 2537], - [0, 22402, 4001, 21035, 4431], - [0, 14438, 1671, 4525, 2323, 18444, 1783, 5980, 1932, 22405, 3721, 4001], - [1, 2343, 14921], - [0, 14925, 14926, 14928, 4139], - "-stream", - "quote-stream", - [2, 5706, 1237], - [0, 1437, 2541, 22410, 22412, 3427, 7029, 3545, 4431], - [0, 22414, 3505], - [2, 13888, 353], - [0, 18444, 2156, 22410, 2090, 1586, 16410, 20500, 36, 5576, 9229, 20997, 20998], - [1, 2343, 14931], - "readFileSync", - [0, 14933, 14934, 14935, 2537], - "asset", - [0, 22420, 4039, 4600, 2541, 22422, 3923], - [0, 2899, 4597, 1177, 2759, 22425, 3349, 2215, 3074, 22427, 22428], - [0, 3358, 6645, 1528, 22430, 20997, 20998, 20001, 13755, 5351, 2323, 18444, 2193, 1724, 2195], - [1, 2343, 14941], - "array-equal", - [2, 1379, 1932], - "fs-tree-diff", - "heimdalljs", - [0, 14945, 14946, 14947, 2523], - [2, 3192, 1177], - "-lerna-changelog", - [2, 3980, 14943], - [0, 22437, 2061, 1209, 3544, 4015, 22440, 4597], - [0, 1177, 2899, 3210, 4039, 4170], - [0, 2323, 3358, 22443, 18444, 22223], - [1, 2343, 14949], - [0, 14950, 14954, 14955, 34352], - [0, 1104, 1413, 2061, 3544, 22449, 4431], - [3, 1378, 10], - "ixture", - [2, 14951, 14952], - [0, 2323, 2359, 2390, 2447, 2463, 2494, 18426, 2544, 2839, 2899, 22451, 4170], - [0, 15215, 18444, 16518], - [1, 2343, 14957], - [0, 14958, 14960, 14963, 2523], - [0, 2036, 3544, 4002, 4431], - "broccoli", - [0, 4597, 2323, 2367, 22460, 22463, 22465, 2899, 22466, 4170], - [3, 14953, 15], - [2, 14961, 1289], - [0, 18444, 2036], - "multidep", - [1, 2343, 14966], - [0, 14971, 14972, 14973, 2537], - "ts-docs-gen", - "plugin-p", - [2, 14968, 11597], - [2, 4491, 14969], - [0, 14557, 1209, 3102, 4431], - [0, 1429, 2323], - [0, 10345, 18444, 22475], - [1, 2343, 14975], - [0, 14976, 14977, 14984, 2399], - [0, 1496, 4207, 1362, 4599, 3427, 3923], - [0, 2899, 4597, 2759, 2541, 22360, 1537, 22481, 4603], - [2, 1387, 4219], - [3, 14978, 13], - [2, 14979, 181], - "bs-recipes", - "dev-ip", - "easy-", - [0, 18444, 1936, 4068], - "easy-extender", - "eazy-logger", - [1, 2343, 14988], - [0, 14989, 14991, 14993, 4139], - [0, 4431, 3544, 2633], - "resp-modifier", - [0, 2323, 2899, 4597, 2398], - "bs-snippet-injector", - [0, 1671, 2323, 18444, 22489, 1936, 2265, 14137, 2632, 3178], - "-changelog", - [2, 8623, 14994], - [1, 2343, 14997], - [0, 14999, 15002, 15003, 2523], - "browser sync", - [0, 8949, 22495, 18438, 22497, 22502, 22379, 22504, 22505, 22500], - "live reload", - "sync", - [ - 0, 2323, 1192, 1177, 4039, 22509, 8719, 1894, 842, 16145, 442, 1527, 22512, 91, 22507, 8712, 22511, 4523, 1939, - 1895, 1955, 1652, 1567 - ], - [0, 18444, 2323, 1017, 2414], - [1, 2343, 15005], - [0, 15025, 15026, 15029, 34352], - "browser-pack", - [2, 13843, 814], - "zlib", - [2, 13888, 15008], - "d-pa", - "th-relative", - [2, 15010, 15011], - [2, 2325, 15012], - [2, 10740, 1389], - [2, 14181, 1617], - "defined", - "deps-sort", - "domain-browser", - "duplexer2", - "htmlescape", - "https-", - [2, 15021, 1389], - "ed-stream-splicer", - [2, 5433, 15023], - [0, 4431, 22518, 22519], - [0, 2899, 2272, 3188, 4039, 4170, 4600, 2215, 1834, 22522], - "-classic", - [2, 3188, 15027], - [0, 18444, 21195, 22524, 22525], - "module-deps", - "os-browserify", - "-es3", - [2, 3767, 15032], - "read-", - "only-stream", - [2, 15034, 15035], - "shasum-object", - "stream-b", - [2, 15038, 2345], - [2, 4279, 27], - "_decoder", - [2, 1871, 15041], - "subarg", - [2, 9056, 1851], - "rs-browserify", - [2, 6901, 15045], - "tty-browserify", - "vm-browserify", - [1, 2343, 15061], - "unpack", - [2, 13843, 15050], - "coffeeify", - "has-o", - "bject-spread", - [2, 15053, 15054], - [2, 2565, 1243], - "isstream", - [3, 5747, 18], - [2, 3094, 15058], - "seq", - [0, 15062, 15063, 15065, 2443], - [0, 4431, 22518], - [0, 2272, 2899, 4170], - "commonj-esque", - [0, 18444, 7131, 3181, 2385, 6521, 2390], - [1, 2343, 15067], - [0, 15068, 15069, 14787, 2537], - [0, 1149, 1209, 22536, 4431], - [0, 2206, 2323, 2359, 2463, 2447, 4089, 2839], - "exposify", - "mothership", - "-function-calls", - [2, 14057, 15072], - [1, 2343, 15075], - [0, 15078, 15079, 15080, 2537], - "peer-range", - [2, 1382, 15076], - [0, 1437, 2476, 2267, 3545, 3714], - [0, 1166, 2694, 24006, 4597, 1906], - [0, 18444, 2267, 158, 11807, 20631, 20632, 3178, 2632, 15215, 18048, 20637, 21881, 20639, 8221], - [1, 2343, 15082], - [0, 15083, 15089, 14787, 4139], - [0, 1104, 2012, 2070, 3544, 4227, 4296, 4597, 4606], - "leases", - [2, 3340, 15084], - [3, 12361, 13], - [2, 15086, 1747], - [2, 9787, 15087], - [0, 2323, 2510, 2899, 4170, 4278], - "target", - [1, 2343, 15092], - [0, 15093, 15094, 15096, 2537], - [0, 1144, 4431, 2061, 1104, 22555, 3544, 22449, 1874], - [0, 1906, 2675, 2899, 4597, 4170, 22557, 2012, 192, 4131, 22559], - "base-x", - [0, 18444, 14510, 22561, 22562, 3888, 4017], - "ts-standard", - [1, 2343, 15099], - [0, 15104, 15106, 15108, 2537], - "base58", - "bitcoin", - "crytography", - "decode", - [0, 22568, 3544, 4431], - "decoding", - [0, 1178, 1596, 2012, 2323, 2384, 2463, 2899, 3421, 4597], - "litecoin", - [0, 18444, 134, 1623, 1936, 1823], - [1, 2343, 15110], - [0, 15111, 15116, 15117, 34352], - [0, 1664, 2541, 22576, 3479, 4431, 4707], - [3, 9366, 12], - "d-transpile", - [2, 6990, 15113], - [2, 15112, 15114], - [0, 1429, 2899, 4257, 1906], - [0, 18444, 1370, 3378, 1161], - [1, 2343, 15119], - [0, 15120, 15121, 15122, 34352], - [0, 2759, 22584, 1209, 3544, 4431, 4606], - [0, 2323, 2463, 2510, 22588, 2272, 2899, 4039, 4597], - [0, 18444, 4504, 2759, 22590], - [1, 2343, 15124], - [0, 15129, 15131, 15137, 2399], - "acorn-", - [3, 1200, 14], - [2, 15125, 15126], - "acorn-jsx", - [0, 2541, 2437, 4431], - "regexpu-core", - [0, 2323, 4384, 2447], - [2, 10740, 7227], - [3, 5583, 16], - [2, 15133, 4047], - "262-stream", - [2, 1973, 15135], - [0, 2437, 18444, 3101, 7234], - "transpil", - [2, 15138, 5218], - [3, 5221, 11], - "esnext", - [1, 2343, 15143], - [0, 15144, 15145, 15146, 2399], - [0, 1144, 2765, 22602, 3544, 4431], - [0, 2323, 4597], - [0, 5982, 5130, 18444, 2765, 2907, 8791, 4386, 4384, 6969, 1973, 5472, 2275], - [1, 2343, 15150], - "compatible", - "uint8array", - [0, 15151, 15152, 15153, 2537], - [0, 2292, 3544, 4431, 4435], - [0, 4278, 17468, 4597], - [0, 18444, 2292, 5284, 5286, 676, 1501, 590, 2649, 671, 6892, 4354, 16790], - [1, 2343, 15155], - [0, 15156, 15157, 14787, 4139], - [0, 1209, 3181, 3544, 22331, 4431], - [0, 2323, 2272, 2899, 4170, 4597], - [1, 2343, 15161], - "-build", - [2, 640, 15159], - [0, 15162, 15163, 15165, 2523], - [0, 1699, 1707, 2820, 3544, 4431], - [0, 1177, 1889, 2323, 2899, 4170, 4597], - "prebuildify", - [0, 18444, 2323, 1781], - [1, 2343, 15167], - [0, 15168, 15169, 15170, 2523], - [0, 695, 3427, 3544, 4002, 4431, 4606], - [0, 2272, 2899, 4170, 4597], - [0, 18444, 2323, 695], - [1, 2343, 15172], - [0, 15173, 15176, 15177, 4139], - [0, 1437, 1676, 4597, 4438, 2061, 3023, 3923], - "built-in", - "bundled", - [0, 2899, 4193], - [0, 18444, 3000], - [1, 2343, 15179], - [0, 15180, 15181, 15183, 2523], - [0, 22639, 814, 2061, 3170, 2107, 22640, 22638], - [0, 2899, 4193, 1177, 3752, 22643, 1953, 1954, 1938, 1958, 1903, 1970], - "flexbox", - [0, 17461, 2323, 3209, 3001, 9711], - [1, 2343, 15185], - [0, 15186, 15188, 2514, 2399], - [0, 1462, 2541, 3427, 3923, 22649, 4606], - [2, 5581, 10659], - [0, 1429, 2899, 4597, 1177, 2759, 2515, 22360, 2510, 22651, 22481, 22428], - [1, 2343, 15190], - [0, 15191, 15195, 15196, 2537], - [0, 16862, 4431, 2541], - "@sto", - "plight/yaml", - [2, 15192, 15193], - [0, 1429, 2323, 2899], - [0, 18444, 3178, 6707, 16918, 15215, 1936, 16862], - "mergician", - [1, 2343, 15199], - [0, 15200, 14729, 15202, 2523], - [0, 1664, 2020, 2476, 2899, 4351], - "warn-if-update-available", - [0, 18444, 2899, 1973, 5472, 2275, 5130, 8791, 6969, 5982, 2907, 4386, 4384], - [2, 4869, 7059], - "err", - [1, 2343, 15206], - [0, 15207, 15209, 15210, 2399], - [0, 22667, 2070, 3544], - "bump", - [0, 1429, 2323, 2899, 4597, 1177, 3203, 21470], - [0, 2323, 18444, 2301, 22254], - [1, 2343, 15212], - [0, 15213, 14631, 15214, 2523], - [0, 22675, 1698, 22676, 3544, 4431, 4606], - [0, 18444, 1098, 12074, 10650, 22676], - "compress", - [1, 2343, 15217], - [0, 15218, 15219, 15224, 2443], - [0, 1512, 2323, 3363], - [0, 1506, 2447, 2463, 20047, 2272, 4170], - "dtrace-provider", - "mv", - [3, 2854, 14], - [2, 4099, 15222], - [0, 2323, 3363, 22684, 36, 22687, 20120, 2282, 17461, 18444], - "ben", - [1, 2343, 15228], - "log4j", - [0, 15229, 15230, 15231, 2399], - [0, 1209, 4431, 2061, 1104, 3357, 3544, 3330], - [0, 2323, 2899, 4597, 4170, 2479], - [0, 18444, 22005, 2323, 9044, 16237, 22695, 22696, 22011, 22699, 15844], - "streamsearch", - [1, 2343, 15235], - "@mscdex/eslint-config", - [0, 15238, 15239, 15240, 2537], - "uploads", - [3, 3253, 9], - [0, 18438, 1437, 22706], - [0, 1166, 3477, 91, 4597, 1906], - [0, 2323, 1932, 2474, 6731], - [1, 2343, 15242], - [0, 15246, 15248, 14787, 34352], - "lxiv", - "hrtime", - [2, 3715, 15244], - [0, 1437, 4431, 2061, 3544], - "webrtc", - [0, 1906, 2323, 2899, 4170, 4430, 2759, 1596, 2012, 3202], - [1, 2343, 15250], - [0, 15251, 15252, 15254, 34352], - [0, 2061, 3544, 3616, 4606], - [0, 3421, 2899, 4193, 4597, 1177, 3561, 3752, 2510], - "converter", - [0, 18444, 3561, 22147, 1623], - [1, 2343, 15256], - [0, 15257, 15259, 15263, 2537], - [0, 4358], - "@bcoe/v8-coverage", - [0, 2899, 33479, 30889, 4597], - "ground-child", - [2, 14739, 15260], - "v8-to-istanbul", - [0, 22726, 1509, 21195, 1676, 22729, 6639, 6521, 22223, 18444, 1936, 22727, 22728, 2385, 5284, 7121], - [2, 1432, 8746], - [1, 2343, 15268], - "v8", - "profiler", - [0, 15269, 15270, 15271, 2523], - [0, 2012, 2720, 3067], - [0, 1145, 1177, 22735, 2720, 2899, 3752, 4603], - [0, 18444, 3741], - [3, 5738, 22], - [2, 15272, 2528], - [1, 2343, 15280], - "@types/mri", - [2, 13307, 2831], - [2, 4049, 668], - [3, 207, 8], - "madr", - [0, 15281, 15282, 15283, 2399], - [0, 2541, 3427, 3909, 4431, 4606], - [0, 2510], - [0, 18444, 89, 1219, 353, 8535, 1283, 5354, 6624, 22743, 22746, 7234], - [1, 2343, 15285], - [0, 15291, 15293, 15295, 2443], - "@fake", - "r-js/faker", - [2, 15286, 15287], - [3, 1909, 17], - [2, 15289, 91], - [0, 2012, 3357, 705, 4431, 4597], - " cache", - [0, 2323, 2530, 2359], - "multiple", - [0, 18444, 21004, 22753], - [1, 2343, 15297], - [0, 0, 15298, 14787, 2399], - [0, 2323, 2510, 3102, 2899, 1894, 4170, 4597], - [1, 2343, 15302], - "es-de", - "fine", - [0, 15303, 15306, 15311, 34352], - [0, 4874, 18438, 4748, 22762, 17909], - "fine-property", - [2, 15300, 15304], - [0, 2899, 4597, 4170, 4474, 19544, 91, 1537], - "-apply-helpers", - [2, 2183, 7083], - "-length", - [2, 3609, 15309], - [0, 18444, 4068], - "gopd", - [1, 2343, 15314], - [0, 15315, 15316, 15317, 4139], - [0, 2476, 22771, 22772, 22774, 22776, 4597, 22778], - [0, 1166, 3477, 1906], - [0, 18444, 22781, 22782, 22783, 3428, 6707, 15525, 22220, 2325, 22784, 2947, 14932, 22785], - "camel", - "-case", - "camel-case", - "case", - "hyphen", - "separator", - "pascalcase", - [1, 2343, 15327], - "pascal-case", - [0, 14910, 15328, 15329, 2537], - [0, 2012, 2390, 2498, 2899, 4597], - [0, 18444, 22781, 22783, 15525, 4068, 14932], - [1, 2343, 15331], - [0, 15332, 15333, 15334, 2523], - [0, 1437, 1573, 1615, 1664, 22795, 1874, 2061, 2070, 8944, 22798, 3505, 3544, 4002, 4039, 4597], - [0, 2323, 2510, 22778], - [0, 18444, 4329, 2278, 1623, 7234, 7121, 590, 22801, 4227, 11939, 12938, 4070], - [1, 2343, 15336], - [0, 15337, 15338, 15339, 2487], - [0, 3527, 4294, 4002, 3544, 3028, 4606], - [0, 2323, 2278, 2899, 4597, 1177, 4039, 21315, 3561, 18426, 3342, 1165, 2482, 21688, 2510, 1938, 1881], - [0, 18444, 2278, 2323], - "assert-", - "rejects", - [2, 15340, 15341], - [1, 2343, 15347], - "graphic", - "pixman", - "cairo", - [0, 15348, 0, 15349, 2523], - [0, 1149, 2541, 3427, 7029, 4247, 4431], - [0, 18444, 22813, 2090, 1586, 16410, 20500, 36, 5576, 9229, 20997, 20998], - [1, 2343, 15351], - [0, 15352, 15353, 15354, 2523], - [0, 1437, 2061, 3067, 3544, 4431, 4484], - [ - 0, 22821, 22507, 5087, 22823, 4874, 18435, 1009, 1011, 1596, 1177, 1895, 1939, 2323, 1192, 1894, 4468, 4474, 91, - 4597 - ], - [0, 18444, 2323, 4166, 1523], - " sensitive", - [2, 15321, 15355], - [1, 2343, 15358], - [0, 15359, 15360, 15363, 2399], - [0, 22829, 1437, 2061, 2476, 2553, 3714], - [0, 1166, 3477, 4597, 1906], - "slimerjs", - "scraping", - [0, 18444, 2098, 2090, 4202, 3073, 22832, 3430, 1676, 16518, 21665], - [1, 2343, 15365], - [0, 15366, 15367, 15368, 2537], - [0, 22837, 22841, 1082, 1573, 1623, 22843, 20949, 2215, 4227, 21732, 4431], - [0, 1367, 1177, 1889, 2022, 2323, 2367, 2419, 2450, 2455, 22845, 2759, 22481, 22848, 2899, 3427, 4039, 4597], - [0, 18444, 2323, 22850, 4070], - [1, 2343, 15372], - "loupe", - "pathval", - [0, 15375, 15360, 15377, 2537], - "check-error", - [3, 6470, 15], - [0, 53, 2476, 22857], - [2, 5474, 13278], - [0, 18444, 4301, 7293, 6865, 4050, 1676, 6782, 7201, 3073, 6807, 676, 5284, 5286, 6892, 2003], - [1, 2343, 15379], - [0, 15380, 14805, 15381, 2537], - [0, 22863, 3023, 3544, 4002, 4333, 4431, 4606], - [0, 2323, 4333, 1623, 7121, 18444, 22223], - [1, 2343, 15383], - [0, 15384, 15386, 15387, 2537], - [0, 3544, 4360], - "chai-plugin", - [0, 2070, 2323, 22871, 2899, 22872, 4597, 1906], - [ - 0, 18444, 1017, 45, 8221, 18048, 22074, 22075, 2873, 1179, 1623, 2278, 695, 4333, 5376, 134, 1936, 13814, 22874, - 22875, 3257 - ], - [1, 2343, 15389], - [0, 15390, 15391, 15392, 2523], - [0, 3028, 3544, 4361], - [0, 48, 53, 87, 94, 1166, 1596, 1610, 1701, 3421, 1894, 4597, 1906], - [0, 18444, 3178, 8221, 4361], - "strategy", - [1, 2343, 15395], - [0, 15396, 15397, 15399, 2537], - [0, 1448, 2061, 3544, 4597], - [0, 2099, 2323, 2430, 2899, 3758, 4151, 4193], - "@debitoor/eslint-config-debitoor", - [0, 18444, 8221, 1017, 22074], - "objects", - "Subset", - [2, 6792, 15401], - "like", - [1, 2343, 15406], - "superset", - [0, 15407, 15408, 15409, 34352], - [0, 2476, 1209], - [0, 1166, 2383, 4597, 1906], - [0, 18444, 1209, 4545, 1283, 7234, 1936, 8924, 22894, 22746], - [1, 2343, 15412], - "yoctodelay", - [0, 15413, 15414, 15415, 2537], - [0, 1104, 2061, 4430, 4597], - [0, 22507, 4874, 22900, 18438, 20959, 22821, 4039, 2323, 2463, 91], - [0, 18444, 91, 5284, 22902], - [1, 2343, 15417], - [0, 15422, 15425, 15429, 34352], - "docpress", - "git-u", - "pdate-ghpages", - [2, 15419, 15420], - [0, 22821, 1104, 2061, 3102, 3544, 4430], - "gulp-ava", - [2, 2530, 3020], - [0, 22909, 4874, 22900, 2323, 2367, 2529, 4487, 91], - "mersenne", - "address", - "dice", - [0, 2323, 91, 1932, 4799, 18444, 17461, 4487, 9654, 671], - [1, 2343, 15431], - [0, 15432, 15433, 15434, 2537], - [0, 4597, 4431, 4600, 4227, 1104, 3544], - [0, 2323, 4039, 22920, 91, 4874, 2367, 2409, 18438, 2479, 3159, 18435, 18440, 2510, 22919], - [0, 91, 18444, 22924, 4799, 11540, 7234, 4643, 5197], - [1, 2343, 15440], - "param-case", - "kebab-case", - "header-", - "header-case", - [0, 15441, 15442, 14787, 34352], - [0, 22639, 2757, 4431, 4535, 22930, 22640, 4100, 2053, 22933, 4606], - [0, 4389, 4597, 1177, 1894, 22941, 4421, 3696, 22939, 1907, 1982, 1895, 1955, 22937], - [1, 2343, 15453], - "c12", - "convert-", - "gitmoji", - [2, 15445, 15446], - [2, 3310, 4009], - "ofetch", - "pkg-types", - "scule", - "std-env", - [0, 15454, 12112, 15455, 2523], - [0, 2541, 3427, 22946], - [0, 17507, 1623, 18444], - [1, 2343, 15459], - "dogstatsd", - "@kurkle/color", - [0, 15479, 15485, 15489, 2523], - [2, 812, 14510], - "@types/o", - "ffscreencanvas", - [2, 15461, 15462], - "js-adapter-luxon", - [2, 9816, 15464], - [3, 15465, 16], - [2, 15466, 3220], - "chartjs-", - [2, 15468, 11017], - "chartjs", - [2, 1884, 15470], - [3, 2912, 13], - "launcher", - [2, 5695, 15473], - [2, 15472, 15474], - [3, 4071, 15], - "wc3", - [2, 15476, 15477], - [0, 2070, 2367, 3544, 4431, 4597], - "charts", - "graphs", - "datadog", - "telegraf", - "native-run", - [0, 2012, 4600, 2323, 2447, 2463, 2530, 2413, 2361, 2498, 2450, 2272], - [2, 1448, 11245], - "domhandler", - "domutils", - [0, 18444, 2319, 2536], - "-sniffer", - [2, 9254, 15490], - "-tree-adapter", - [2, 2653, 15492], - [2, 1868, 15493], - [2, 3493, 15494], - "parse5-", - "parser-", - [2, 15497, 3101], - [2, 15496, 15498], - "whatwg-", - "mimetype", - [2, 15500, 15501], - [1, 2343, 15511], - "@imgix/js-core", - [2, 7724, 2220], - "hatwg-mimetype", - [2, 7820, 15506], - [3, 1926, 15], - "xpect-type", - [2, 15508, 15509], - [0, 15513, 15515, 15516, 2537], - [3, 2654, 10], - [0, 2070, 2051, 22959, 2419, 4431, 4600, 2367, 2012, 3544], - "scraper", - [0, 3421, 2323, 2899, 4597, 1596, 22961, 2463, 2384, 2494, 1178, 22963], - [0, 18444, 1936, 3888, 1623, 6707, 5614], - [1, 2343, 15518], - [0, 15519, 15520, 2514, 2487], - [ - 0, 22970, 22971, 22972, 1437, 1672, 2061, 22639, 22640, 22974, 22979, 22983, 3067, 3183, 8949, 3427, 4002, 4431, - 4597 - ], - [0, 1400, 1596, 2012, 2759, 22481, 2272, 22985, 2899, 4039, 4170], - [1, 2343, 15522], - [0, 15523, 15524, 15527, 4139], - [0, 3768, 4430, 4431, 4597, 4600, 4753, 22990], - [0, 2899, 4255, 1241], - "version", - [2, 813, 15525], - [0, 2323, 18444, 22990, 22993, 2056, 7046, 4597, 2542], - [1, 2343, 15529], - [0, 15530, 15531, 15532, 2537], - [0, 1104, 15642, 1457, 2061, 2200, 3427, 3507, 3544, 3923, 4207, 4597, 22778], - [0, 1596, 2759, 2899, 3202, 3752, 4039, 4170, 4193, 4278, 4294, 1906], - [0, 2323, 2282, 18444], - "@better-scroll/core", - "add-", - "listener", - [2, 12598, 15535], - [2, 1752, 15536], - [2, 15534, 15537], - "-font", - [2, 1456, 15539], - [2, 1625, 7521], - [1, 2343, 15546], - "-converter", - [2, 2275, 15543], - [2, 1625, 15544], - [0, 15552, 0, 15563, 2537], - "dom-closest", - "dom-lib", - [3, 1817, 15], - [2, 15549, 2013], - "htmlhint", - [0, 3150, 4597, 4430, 2924, 2541], - "insert-css", - "jsbarcode", - "jsonlint", - "jsonlint-mod", - "mutat", - "ionobserver-shim", - [2, 15557, 15558], - [2, 3767, 1289], - "-delta-to-html", - [2, 3771, 15561], - [0, 18444, 2924], - [1, 2343, 15576], - "eautiful-dnd", - [2, 12242, 15565], - "demirror2", - [2, 3808, 15567], - "asy-crop", - [2, 11352, 15569], - "lightbox", - [2, 3608, 15571], - [2, 3838, 15572], - "azy-load", - [2, 12432, 15574], - [0, 15577, 15581, 15583, 4139], - [0, 1544, 21847, 2541, 2756, 3357, 3445, 23009, 4150, 4151, 4431, 4438, 2282], - "react-quill", - "rmc-feedback", - "smooth-scroll-into-view-if-needed", - [0, 2899, 4342], - [3, 5835, 27], - [0, 18444, 22313, 1544, 3000], - "to-to-assign", - [2, 15582, 15584], - "demirror", - [2, 4860, 15586], - "lement-", - [1, 2343, 15593], - "resize-event", - [2, 15588, 15590], - [2, 4861, 15591], - [0, 15603, 15617, 15620, 2523], - "@types/faker", - "sert-css", - [2, 9721, 15595], - "barcode", - [2, 7635, 15597], - [3, 7895, 12], - [2, 15599, 2631], - "rcode.react", - [2, 11304, 15601], - [0, 2188, 2476, 4597, 22990], - "beautiful-dnd", - [2, 4881, 15604], - [2, 4881, 2741], - [2, 4881, 11167], - [2, 6324, 1456], - [2, 5098, 15608], - [3, 15609, 15], - [2, 15610, 7262], - [2, 15610, 89], - [2, 15610, 10631], - "tinker", - [2, 1876, 15614], - [2, 6941, 3841], - [0, 1166, 17279, 22706, 2323, 3477, 23017, 22778, 1906], - "mark-twain", - "rc-queue-anim", - [0, 18444, 2056, 12666, 1137, 15215, 1536, 2090], - "croll-anim", - [2, 11229, 15621], - [3, 11371, 21], - [2, 15623, 1524], - "react-su", - "blime-video", - [2, 15625, 15626], - [1, 2343, 15631], - "scrollama", - "values.js", - [0, 15636, 15638, 15639, 2523], - "vfile-message", - "-warnings-plugin", - [2, 7131, 15633], - [2, 4670, 15634], - [0, 22058, 1149, 4597, 4431, 3181, 4545, 22057, 22054], - [3, 1456, 9], - [0, 2323, 2899, 1177, 4039, 22064, 23026, 2381, 3159, 4599, 2425, 23025, 22066, 22068, 22062], - [0, 18444, 22057, 22074, 22075], - [1, 2343, 15641], - [0, 15646, 15647, 15649, 2443], - "anymatch", - "braces", - "is-b", - "@paulmillr/jsbt", - [0, 1792], - [0, 1166, 3477, 4481, 1906], - "readdirp", - [0, 1896, 4990, 15008, 16518, 23034, 4202, 1871, 1398], - [1, 2343, 15651], - [0, 15652, 15653, 15654, 2537], - [ - 0, 23040, 23041, 23043, 23045, 3984, 23051, 23054, 3988, 10630, 11380, 23059, 23065, 23070, 23075, 23078, 23080, - 23082, 23085, 23092, 23096, 23098, 23103, 23110, 23113, 23118, 23121, 23123, 13240, 23126, 23128, 23133, 23136, - 23139, 23141, 23143, 15043, 4351, 23145, 23149 - ], - [0, 811, 8850, 816, 10615, 1703, 23155, 4042, 4255, 4389, 4400], - [0, 1783, 1745, 1739, 9591, 13729, 4354, 23158, 9654, 671, 19269, 2554, 3984, 4549], - [1, 2343, 15657], - "ci", - [0, 0, 15660, 15661, 2399], - "continuous", - [2, 15674, 15682], - [0, 23163, 23164, 2228, 18555, 2253, 2256, 2273, 23165, 2281, 2283, 2293, 23167, 23169], - [0, 4453, 7597], - [1, 2343, 15683], - [3, 6217, 21], - [2, 15663, 4779], - [3, 169, 22], - "ntion", - [2, 15665, 15666], - [3, 169, 21], - "inimap", - [2, 15668, 15669], - [3, 116, 24], - [2, 15671, 14745], - [3, 164, 21], - [3, 5276, 15], - "anguage", - [2, 15673, 15675], - [3, 157, 21], - [2, 15677, 5204], - [3, 148, 22], - "de-block", - [2, 15679, 15680], - "imple-access", - [0, 15688, 15708, 15709, 4139], - "tml-embed", - [2, 15677, 15684], - "ge-break", - [2, 172, 15686], - [0, 3183, 23175, 4227, 4720, 4535], - "heme-lark", - [2, 178, 15689], - "ord-count", - [2, 6197, 15691], - [2, 15698, 15725, 186], - "how-blocks", - [2, 15663, 15694], - [3, 15685, 25], - [2, 15696, 4231], - [3, 10883, 21], - "arkdown-gfm", - [2, 15668, 15699], - [3, 175, 22], - "move-format", - [2, 15701, 15702], - "ource-", - [2, 15704, 6110], - [2, 15663, 15705], - "oriz", - [ - 0, 8648, 1168, 1195, 1282, 1317, 1429, 23177, 1540, 1719, 1787, 16256, 16257, 1177, 1895, 1924, 1926, 2151, - 2228, 13831, 2240, 2247, 2253, 2256, 2258, 23178, 2281, 2283, 2314, 17568, 2675, 16021, 2990, 2899, 3211, 3257, - 3421, 1894, 4135, 4193, 91, 4545, 2924, 4681 - ], - [0, 2036, 3257, 1283, 1936], - "ontal-line", - [2, 15707, 15710], - [2, 15677, 15711], - [3, 6164, 21], - [2, 15713, 12426], - "multi-root", - [2, 6157, 15715], - "strict", - "ed-editing", - [2, 15717, 15718], - [2, 15701, 15719], - "peci", - "al-characters", - [2, 15721, 15722], - [2, 15663, 15723], - "plugin-u", - "nano-jsx", - [1, 2343, 15729], - "solid-js", - [0, 15730, 15731, 6060, 2523], - [ - 0, 2812, 23184, 1366, 6714, 2607, 8340, 17693, 23185, 8336, 8316, 23187, 23188, 8338, 23189, 23190, 8349, 23192, - 23193 - ], - [0, 620, 1501, 2710, 8363, 23196, 2036], - [1, 2343, 15733], - [0, 15734, 15735, 15736, 2487], - [0, 15507, 4874, 9241, 18089, 15502, 4729], - [0, 23203, 23205, 91, 1984, 9750], - [0, 2832, 965, 1388, 5317, 11513, 5122, 4963, 1936, 7102, 12616], - [1, 2343, 15738], - [0, 0, 8134, 15739, 2537], - [0, 6914, 4354, 13735, 6793, 2100, 7210, 200, 6876, 6478, 3729, 1138, 7058, 7233, 10446, 7128, 3183, 3460], - [1, 2343, 15741], - [0, 0, 15746, 15748, 2537], - "@chrisblossom/eslint-config", - [3, 14731, 11], - "-pkg-up", - [2, 15743, 15744], - [0, 5517, 13614, 23237, 26398, 19325, 1159, 1593, 9254, 1177, 23225, 2708, 3410, 3421, 4103, 4389], - "temp-sandbox", - [0, 7263, 2568, 7031, 6951, 6422, 970, 1593, 6789], - [1, 2343, 15750], - [0, 0, 15751, 2514, 2523], - [0, 2272, 2839, 1209, 4389], - [1, 2343, 15753], - [0, 15754, 15755, 15756, 2399], - [0, 14038], - [0, 5517, 13614, 23237, 23239, 23241, 19325, 1158, 1159, 1177, 2011, 2708, 3206, 3410, 3421, 4103, 4389], - [0, 6914, 6959, 6780, 6889, 6888, 6914, 3205, 941, 5284, 5286], - [2, 5933, 1469], - [1, 2343, 15762], - "uncache", - "uncached", - "unrequire", - [0, 15763, 15764, 15765, 4139], - [0, 12396, 9315, 23247, 23249, 23250, 23253, 3140, 3493, 23254, 4555, 12449, 23257, 23258], - [0, 4874, 23262, 1414, 2581, 2588, 3137, 1894, 23264, 3985, 3998, 4505, 91, 18002, 1906], - [0, 23267, 2587, 1936, 23266, 6435, 614, 1644, 3972], - [1, 2343, 15772], - "opts", - "opt", - "parseopt", - "argsparse", - "optparse", - [0, 15777, 15778, 15779, 2537], - "complete", - "autocomplete", - [3, 15774, 11], - [2, 15775, 6600], - [0, 12396, 23247, 23254], - [0, 4874, 23262, 23274, 1414, 1699, 23276, 2581, 2588, 2620, 23279, 1894, 3985, 3998, 4505, 91, 18002, 4555, 1906], - [0, 4050, 23267, 2587, 1936, 6953, 2574, 6435, 614, 23266, 4741], - [1, 2343, 15781], - [0, 15782, 15783, 15784, 34352], - [0, 12396, 9315, 23286, 23288, 13839, 23289, 23291, 9396, 2584, 23292, 16870, 3746, 4233, 4555, 23258], - [0, 4874, 1414, 2588, 1894, 3985, 3998, 4505, 91, 18002, 1906], - [0, 1623, 23267, 2587, 1936, 3529, 6421, 3766, 23296, 3585, 1631, 23266, 6435, 614], - [1, 2343, 15787], - [2, 1861, 7253], - [0, 15789, 15790, 15791, 2523], - "timers-ext", - [0, 1006, 19877, 12396, 23288, 23289, 23302, 23308, 23292, 23310, 23312, 23314, 3746, 4233, 4309, 23254, 23258], - [0, 4874, 15128, 1414, 23316, 12412, 2007, 2588, 3137, 12127, 3140, 12133, 1894, 3985, 3998, 4505, 91, 4555, 1906], - [0, 1444, 5286, 6742, 23267, 2587, 1936, 5284, 1219, 9102, 3958, 353, 23266, 6435, 614], - "medikoo", - [2, 1884, 15792], - "list-", - "updated", - "list-updated", - [2, 10617, 15796], - [3, 2289, 14], - "-cc-changelog", - [2, 4024, 15799], - [2, 15798, 15800], - "prettier-e", - "lastic", - [2, 15802, 15803], - "tad", - [1, 2343, 15807], - [0, 15808, 15809, 15810, 2487], - [0, 12396, 9315, 23322, 23288, 23292, 23253, 3140, 3746, 4233, 4292, 23258], - [0, 4874, 1414, 2588, 1894, 3985, 3998, 4505, 91, 1906], - [0, 23267, 2587, 1936, 4141, 1646, 23324, 23266, 6435, 614], - [1, 2343, 15812], - [0, 15816, 15817, 15818, 2537], - "toggle", - "show", - "hide", - [0, 1006, 12396, 9315, 23288, 23289, 23308, 23292, 23310, 23312, 23314, 3746, 4233, 4309, 23254, 15632], - [0, 4874, 4880, 4883, 1414, 668, 12415, 2588, 1894, 89, 3824, 3985, 3998, 23330, 4505, 91, 1906], - [0, 23267, 2587, 1936, 3698, 89, 23332, 3709, 23266, 6435, 614, 188], - [1, 2343, 15820], - [0, 15821, 0, 15823, 2537], - [0, 12396], - "varlock", - [0, 1563, 2587, 23267, 1936, 4141, 1871, 1646, 2585, 23266, 614, 6435], - [1, 2343, 15825], - [0, 15827, 15809, 15828, 2537], - "string-length", - [0, 12396, 9315, 12421, 23344], - [0, 23266, 2587, 23267, 614, 6435, 1936, 1871, 1563, 2585, 9547], - [1, 2343, 15830], - [0, 15831, 15832, 15834, 2537], - [0, 12396, 23288, 23352, 3746, 4233], - [0, 4874, 15128, 1414, 23316, 23356, 12412, 1894, 3985, 3998, 23359, 4481, 4505, 91, 1906], - "expresso", - [0, 965, 14839, 23267, 2587, 1936, 23362, 3958, 23266, 6435, 614, 23361, 4607], - [1, 2343, 15836], - [0, 15837, 15839, 2514, 4139], - [0, 4647, 2036], - "fast-text-table", - [0, 3421, 2899, 1177, 4039, 4342, 1948], - "256-colors", - [2, 1105, 15840], - "git-re", - "git-rev", - "growl", - [1, 2343, 15848], - "tables", - "tabular", - [0, 0, 15849, 15850, 2523], - [0, 15990, 2228, 2240, 2314, 14352, 2759, 2835, 1209, 14529, 3774, 3954, 23375, 4019, 23376], - [0, 1871, 18089, 18944, 1936, 10368, 15103, 3656], - [1, 2343, 15852], - [0, 15855, 15856, 2514, 2537], - [2, 8737, 4522], - [2, 2968, 14994], - [0, 3263], - [0, 4167, 4384], - [1, 2343, 15858], - [0, 0, 0, 15859, 2537], - [ - 0, 2026, 1965, 11988, 5995, 23389, 23391, 23397, 23400, 23404, 23407, 23410, 23411, 23412, 23413, 23414, 23415, - 23416, 23417 - ], - [1, 2343, 15861], - [0, 0, 15863, 2514, 34352], - "truncate", - [0, 4361, 4039, 1894, 1420, 11518, 53, 23423, 5874], - "ellipsis", - [1, 2343, 15866], - [0, 0, 15867, 2514, 2443], - [0, 94, 87, 14128, 14041, 1175, 48, 53, 1178, 1193, 1745, 1177, 1935, 1938, 1939, 1192, 2774], - [1, 2343, 15870], - "cardinal", - [0, 15881, 15885, 15888, 2523], - "hyperlinker", - [2, 689, 13008], - [2, 2055, 2873], - "object-t", - "reeify", - [2, 15874, 15875], - [2, 689, 7152], - "natural-", - "orderby", - [2, 15878, 15879], - [ - 0, 23432, 1362, 27433, 15838, 23434, 23436, 23438, 23439, 23440, 23441, 2822, 23444, 3170, 19445, 3220, 3222, - 3416, 3527, 15245, 4294, 4435, 23445, 23446 - ], - "-prompt", - [2, 6875, 15882], - [3, 4351, 9], - [ - 0, 23450, 13414, 4856, 8780, 7637, 8778, 6503, 4874, 21623, 6513, 23448, 1414, 1429, 1448, 6323, 1177, 23453, - 23456, 2675, 2990, 2899, 4193, 4474, 91 - ], - "hyperlinks", - [2, 15884, 15886], - [0, 5351, 5353, 6354, 5130, 2596], - [3, 6519, 10], - "ip-ansi", - [2, 15889, 15890], - "nsi-styles", - [2, 9165, 15892], - [3, 9359, 12], - [1, 2343, 15898], - "ct-stack", - [2, 15894, 15896], - [0, 15899, 15900, 2514, 4139], - [0, 23462], - [ - 0, 1362, 1389, 1391, 1537, 1177, 2228, 2236, 2239, 2277, 2281, 2283, 2291, 23466, 2307, 2036, 2276, 4085, 23469, - 4171, 4193, 16584, 23471, 4535 - ], - [1, 2343, 15902], - [0, 0, 15912, 15913, 2537], - "@yarnpkg/core", - "@yarnpkg/", - "fslib", - [2, 15904, 15905], - [3, 1920, 15], - "rca", - [2, 15907, 15908], - "multi-input", - [2, 4049, 15910], - [ - 0, 1623, 1700, 2070, 19745, 2832, 2899, 1177, 1209, 4042, 4170, 4072, 1462, 1481, 1525, 2036, 91, 2665, 23482, - 6503, 18059, 23483, 13388, 23476, 23479, 1954, 8850, 23480, 1938, 1958, 1903, 811, 1011, 816, 1009 - ], - [0, 5342, 5341], - [1, 2343, 15915], - [0, 15916, 0, 2514, 2537], - [0, 3263, 1326], - "good-listener", - "tiny-emitter", - [1, 2343, 15920], - [0, 6263, 0, 15922, 2523], - "cut", - [0, 2602, 7426], - [1, 2343, 15924], - [0, 0, 15925, 15927, 2537], - [0, 1501, 620], - "is64bit", - [0, 6731], - "paste", - "copy-paste", - "pasteboard", - "pbcopy", - "xclip", - "xsel", - [1, 2343, 15935], - [0, 15936, 15937, 15938, 2523], - [0, 3368, 3188], - [0, 4535, 2832, 23509, 4039], - [0, 3257, 1283], - [1, 2343, 15940], - [0, 15941, 15942, 10570, 2399], - [0, 3847], - [0, 53, 61, 87, 90, 94, 1429, 1596, 1603, 1177, 2899, 3421, 3697, 3744, 89, 4039, 4042, 4045, 4055, 4067, 4073], - [1, 2343, 15944], - [0, 15945, 15946, 2514, 4139], - [0, 1437, 4135, 2151, 1525, 23520, 3762, 4232], - [ - 0, 1192, 1177, 4039, 3363, 4468, 4474, 4508, 91, 5087, 4874, 5245, 5254, 4864, 1939, 1938, 13418, 1011, 23523, - 1009 - ], - [1, 2343, 15948], - [0, 0, 15949, 15950, 2523], - [ - 0, 23528, 23531, 4865, 13204, 4874, 29891, 7677, 1138, 14736, 30932, 668, 1177, 2070, 2832, 3244, 3377, 30794, - 20085, 1894, 23535, 91, 4548, 23538, 1984, 23539, 4729, 4763 - ], - [0, 2611, 5122, 1896, 27, 13527, 5130, 38, 23542, 23543, 23544, 23545, 21444, 17218, 13573, 6710], - [2, 976, 2942], - [1, 2343, 15954], - [2, 9753, 6072], - [0, 15957, 6538, 15958, 2487], - "progress bar", - "@exodus/bytes", - [0, 3084], - [0, 3358, 2195, 17977, 17978], - [1, 2343, 15961], - [2, 11941, 5258], - [0, 15963, 13640, 15965, 2487], - "coro", - [0, 1537, 3188, 4039, 4135, 4562, 4707, 23559], - "coroutine", - [0, 23561, 23562, 23563, 23564, 3378], - [1, 2343, 15967], - [0, 15968, 15969, 15970, 2487], - [0, 15487, 2654], - [ - 0, 192, 5467, 19438, 442, 8862, 811, 816, 10615, 10817, 23572, 11085, 23573, 4874, 17214, 32818, 7677, 1177, - 1955, 10964, 1978, 2203, 2633, 2675, 17221, 2832, 2990, 3401, 3541, 1894, 23535, 4042, 4201, 4474, 91, 4523, - 1984 - ], - [0, 2616, 1936, 965, 57, 2654, 23578], - [1, 2343, 15972], - [0, 0, 15973, 15974, 34352], - [0, 4874, 1414, 23276, 2577, 2584, 1894, 3985, 3998, 4505, 91, 4548, 1906], - [0, 23584, 11512, 1936, 1213, 3205, 10381, 12616, 7102], - [1, 2343, 15976], - [0, 15977, 15978, 15979, 2537], - [0, 15956], - [0, 23591, 1177, 2203], - [0, 9254, 1936], - "ignore-walk", - [1, 2343, 15982], - [0, 0, 15983, 15986, 2523], - [ - 0, 192, 5467, 5366, 23597, 5087, 4874, 1317, 18089, 1177, 1895, 1938, 23598, 2591, 2675, 1894, 4257, 4468, 4483, - 4494, 91, 4523 - ], - "teeny-request", - "urlgrey", - [0, 1936, 23601, 23603, 23605, 18089, 23606, 23608], - [1, 2343, 15989], - [2, 10988, 4504], - [0, 0, 15991, 15992, 2443], - "codecov.io", - [0, 23613, 1414, 1596, 4042, 4533], - [0, 1936, 1867, 10368, 23615, 15103, 18089], - [1, 2343, 15994], - [0, 15995, 16007, 16010, 2523], - [0, 3493, 2635], - "mirror/lint", - [2, 13183, 15996], - [3, 15997, 12], - [2, 15998, 6624], - [2, 15998, 6649], - [3, 16000, 13], - [2, 16001, 10190], - [2, 15998, 8891], - [3, 15997, 13], - [2, 16004, 15675], - [2, 15998, 15774], - [ - 0, 1700, 1192, 2675, 3144, 1622, 1177, 1701, 2924, 1854, 3692, 1894, 1610, 48, 1193, 2036, 53, 2990, 3400, - 23621, 192, 4257, 23623, 87, 2651, 1938, 1895, 5467, 16405 - ], - "buildhelper", - [2, 15998, 16008], - [0, 2924, 1936, 1194], - [1, 2343, 16012], - [0, 16013, 16014, 16016, 2523], - [0, 15320, 1462, 1525, 2591, 15436, 23631, 4535], - [0, 2228, 2236, 2281, 2291, 3524, 2907], - [2, 10697, 1592], - [ - 0, 200, 15215, 23634, 1623, 1936, 2265, 5284, 2262, 14137, 2632, 3178, 6707, 6708, 4405, 23635, 1644, 57, 23637, - 2280 - ], - [1, 2343, 16018], - [0, 16019, 16020, 16023, 2537], - [0, 15320, 1462, 1525, 18089, 15436, 23631, 4072], - [0, 192, 11893, 811, 8850, 816, 10615, 23643, 23648, 1177, 1903, 2675, 2742, 1192, 2780, 2990, 4042, 23652, 1983], - "jison", - [2, 5249, 23751], - [ - 0, 200, 15215, 23634, 1623, 1936, 2265, 5284, 2262, 14137, 2632, 3178, 6707, 6708, 4405, 23635, 1644, 57, 4072, - 23637, 2280 - ], - [1, 2343, 16025], - [0, 16026, 16027, 16028, 34352], - [0, 3524], - [0, 4389, 4255, 4387, 3524], - [0, 1936, 2636, 3520, 3521, 6710], - [1, 2343, 16030], - [0, 16031, 16032, 16033, 2537], - [0, 15487, 2616, 3872, 4309], - [ - 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 10817, 23572, 5366, 4874, 4880, 4883, 17214, 32818, 7677, - 1317, 1177, 1955, 10964, 1978, 2203, 2675, 2990, 3541, 3698, 23535, 89, 3824, 4042, 4201, 4474, 91, 4523, 1984 - ], - [0, 2639, 1936, 89, 57, 965], - [1, 2343, 16035], - [0, 0, 16036, 16037, 2523], - [0, 1166, 1448, 1906], - [0, 1936, 12075, 2640, 11513, 3392, 7102, 12616, 23670, 23674], - [1, 2343, 16039], - [0, 0, 16040, 16042, 2399], - [ - 0, 2675, 2742, 2297, 4484, 1177, 4039, 4042, 1894, 1596, 3536, 91, 3400, 2766, 3720, 2898, 23689, 2886, 23687, - 19965, 13207, 2923, 23681, 23683, 2881, 23679, 6059, 23686 - ], - "wcwidth", - [0, 12197, 23691, 1424, 1936, 965, 158, 13814, 8221], - [1, 2343, 16044], - [0, 16045, 0, 16046, 2523], - [0, 23696, 1699, 1754, 2654, 23699], - [0, 1936, 202, 2585, 18641, 19096, 15253], - [1, 2343, 16048], - [0, 16049, 0, 16050, 2523], - [0, 23708, 23709, 1091, 2070, 2929, 3183, 3742, 4135], - [0, 1936, 671, 1155, 2650], - [1, 2343, 16052], - [0, 16054, 16055, 16058, 34352], - "array-back", - [0, 23736, 2635, 1209, 3716, 4388], - [ - 0, 192, 5467, 4874, 1610, 1622, 1628, 1652, 21468, 1177, 17589, 2629, 2675, 1192, 2990, 3177, 3400, 1894, 3754, - 23738, 3786, 4039, 4257, 4307, 91, 2924, 4677, 23742 - ], - "find-replace", - "typical", - [0, 2924, 1932, 1936, 2651], - [1, 2343, 16060], - [0, 16061, 16062, 16063, 2537], - [0, 16022, 1525, 1595, 3692], - [ - 0, 442, 19344, 23339, 6503, 4874, 34737, 1414, 1637, 1177, 23753, 1938, 32525, 27790, 2022, 2203, 2899, 3561, - 3759, 23631, 4039, 23754, 4361, 4072, 91, 4523, 22946 - ], - [0, 3692, 23757, 1936, 23760, 2632], - [2, 1437, 2324], - "table-", - "table-layout", - [1, 2343, 16068], - [0, 16069, 16070, 16071, 2523], - [0, 18087, 15487, 15488, 18089], - [0, 442, 4874, 7677, 1177, 1895, 1953, 1982, 2203, 1894, 4483, 91, 4523, 1984], - [0, 1936, 57, 7046, 6523, 965, 23767, 6084, 16179], - [1, 2343, 16073], - [0, 16074, 16075, 16076, 2487], - [0, 1704, 2713, 20099, 4266, 23775], - [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421], - [0, 27, 1851], - "cached", - "cachedir", - "find-n", - "ode-", - "ode-modules", - [2, 16079, 16081], - "is-u", - [1, 2343, 16086], - "is-utf8", - [0, 16093, 16097, 2514, 2399], - [3, 549, 23], - [2, 16087, 1172], - [2, 12772, 8532], - [2, 1652, 16089], - "-reporters", - [2, 11086, 16091], - [0, 2017, 23783, 2131], - [3, 1566, 12], - " changelog", - [2, 16094, 16095], - [0, 4729, 3421, 23785, 1149, 2899, 4135, 2025, 4218, 1537, 1159, 4220], - [1, 2343, 16099], - [0, 16100, 16101, 16102, 2523], - [0, 23791, 1676], - [0, 5245, 5087, 4874, 1151, 1192, 4468, 91, 2658, 2190], - [0, 27, 2658, 6652, 4575], - [1, 2343, 16104], - [0, 16105, 16106, 16118, 2537], - [0, 10406, 1676, 2659, 2743, 2747, 3170], - [ - 0, 192, 5467, 442, 5245, 5601, 6494, 19386, 5087, 8778, 4874, 9240, 9241, 1364, 1177, 1895, 1955, 2026, 2182, - 2203, 2675, 1192, 2990, 23800, 3445, 5561, 20085, 1894, 4342, 4468, 91, 4523, 4729 - ], - "es2015-tag", - "es6-tag", - "heredoc", - "indents", - "literal", - "multiline", - "oneline", - "single", - "singleline", - "strings", - "tagged", - [0, 17179, 2658, 2663, 27, 2671, 1544, 2026, 2078, 23802, 23803, 1387, 2323, 2256, 4699, 4729, 1594], - [1, 2343, 16120], - [0, 16121, 16122, 16124, 2537], - [0, 2591, 3171, 1437, 23808, 23809, 3456, 3183, 4566, 1304, 2659, 3560, 23811, 2623], - [0, 23813, 4384, 1177, 2026, 705, 23816], - "observe", - [0, 200, 1523, 2947, 27, 2671, 2665, 23818, 36], - [1, 2343, 16126], - [0, 0, 16127, 16129, 2537], - [ - 0, 4493, 2675, 2899, 1177, 4170, 4474, 1894, 442, 1529, 91, 4874, 2990, 19193, 6503, 16954, 192, 4257, 19335, - 4523, 1951, 1895, 1955, 5467 - ], - "on-headers", - [0, 27, 1544, 4967, 6622, 2026], - "compressible", - [1, 2343, 16132], - [0, 0, 16133, 16134, 4139], - [0, 4864, 5087, 23829, 1009, 1011, 1177, 1883, 1938, 2151, 1192, 3117, 4468, 4473, 4474, 91], - [0, 202, 27, 18413, 23831, 23832, 6622, 5281], - [1, 2343, 16137], - "buffer-from", - [0, 0, 0, 16138, 2537], - [0, 2671, 23837], - [1, 2343, 16140], - [0, 16143, 16147, 16153, 2537], - "-command", - [2, 1614, 16141], - [0, 1676, 23791], - "@hirez_io/observer-spy", - "@swc/jest", - [3, 7749, 12], - [0, 1192, 2658, 4468, 2190, 91, 5087, 4874, 1154, 5245, 1151, 23843], - "-quote", - [2, 16146, 16148], - [2, 1596, 4845], - "ctrlc-wrapper", - [2, 32524, 2994], - [0, 2671, 2658, 6652, 4575], - "instance", - [1, 2343, 16156], - [0, 0, 0, 16157, 2399], - [0, 3358, 582, 3697], - [1, 2343, 16161], - "bash", - "sh", - [0, 16162, 9264, 16163, 2443], - [0, 16136, 15019, 4431], - [0, 3101, 27, 4714, 705, 3038, 3689, 10074, 6865, 6704, 21360], - [1, 2343, 16165], - [0, 0, 16169, 16170, 2523], - "cson", - "hjson", - "x2js", - [0, 6061, 21120, 6063, 1570, 1177, 1895, 23860, 1894, 4042, 4131, 4389], - [0, 23862, 590, 1623, 1420], - "fig", - "node-config", - [1, 2343, 16175], - "config-node", - [0, 0, 10435, 16176, 2523], - [0, 23868, 23869, 23870, 4545, 23872, 23874, 23875, 23876, 3547, 23877, 23878, 23879, 23881, 23883], - [1, 2343, 16178], - [0, 16180, 16182, 16183, 2537], - "atom", - [0, 23888, 1676, 23891, 23894, 23897, 3257], - "atomically", - [ - 0, 1149, 1575, 1177, 1895, 1903, 1938, 1954, 1955, 1958, 1970, 2026, 2675, 2990, 2899, 3421, 1894, 4170, 4193, - 4745, 4342 - ], - [0, 1283, 2679, 6728], - "xdg-basedir", - [1, 2343, 16187], - "prefer", - [0, 6263, 16190, 16191, 2523], - "preferences", - "persist", - [ - 0, 27386, 53, 5749, 5241, 83, 85, 87, 90, 94, 5583, 811, 816, 10615, 4874, 1009, 1011, 7677, 1290, 1596, 1597, - 1177, 1881, 1895, 1915, 1938, 23909, 2675, 23913, 23915, 23917, 23921, 23926, 2990, 1894, 4039, 4042, 4193, 91, - 1984 - ], - [0, 2681, 23932, 2679, 8930, 23933, 6728, 23934, 23936], - [1, 2343, 16193], - [0, 0, 16194, 16195, 2537], - [0, 442, 10817, 6061, 6063, 1009, 1011, 1177, 1895, 1955, 2203, 1894, 4042, 4057, 4131, 91], - [0, 2681, 23942, 5995, 1932], - "rack", - [1, 2343, 16198], - [0, 16199, 16200, 16201, 2537], - [0, 23948], - [0, 3421, 1149, 23950, 8431, 2899, 23952, 1177, 4135, 705, 27387, 91, 4874, 2024, 29197, 5517, 19344, 7844], - [0, 8431, 6270, 8426, 8425], - "flash", - [1, 2343, 16204], - [0, 16205, 16206, 16207, 2523], - [0, 23960], - [0, 1175, 1193, 1267, 1272, 1596, 1177, 1881, 1938, 2774], - [0, 2658, 23964, 13445, 1192, 3212], - [1, 2343, 16209], - [0, 0, 16210, 16212, 2537], - [0, 48, 53, 87, 1009, 1676, 1177, 23971, 1938, 3188, 23974, 4039, 23975, 4384, 4449, 4474, 91], - "kruptein", - [0, 2687, 23977, 16774, 3410, 3624, 10057, 7131, 6961, 1108, 21541, 2070, 23980, 23982], - [1, 2343, 16214], - [0, 0, 16215, 16216, 2487], - [0, 1414, 2070, 4493, 4474, 4508, 91, 4865, 4874, 11976], - [ - 0, 158, 4202, 23989, 23992, 4289, 18081, 12350, 20650, 20733, 20639, 20709, 23993, 20651, 20680, 21881, 20752, - 18048, 20653, 8221, 23994, 23995, 12349 - ], - [1, 2343, 16218], - [0, 16219, 16220, 16221, 2523], - [0, 24003, 18525, 4207, 2205, 24004, 2096, 6639, 29721, 20624, 22246], - [0, 1906, 1166, 1700, 4400, 18051, 24006, 18047], - [0, 3178, 15215, 158, 11806, 21881, 20637, 18048, 20639, 8221], - [1, 2343, 16223], - [0, 16224, 16225, 16226, 2523], - [0, 24003, 2020, 24012, 6639, 24013, 20624], - [0, 1414, 1906, 1166, 91, 4874], - [0, 15215, 158, 24016, 3178, 6707, 18048, 24017], - [1, 2343, 16228], - [0, 16229, 0, 16236, 2399], - [0, 24022, 3923], - "defu", - "nicode-supported", - [2, 16083, 16231], - "sentence", - "sentencer", - "sisteransi", - [0, 2695, 18641, 1823, 24024, 5576], - "reporter", - "elegant", - "clack", - "stacktrace", - [1, 2343, 16242], - [0, 0, 16243, 16244, 34352], - [ - 0, 53, 4874, 7677, 1596, 24029, 24030, 2126, 2675, 2700, 24032, 1209, 3028, 1894, 3720, 3875, 4039, 24033, 4131, - 4493, 33863, 91, 1983, 1984 - ], - [0, 2700, 24036, 24038], - "arc-templates", - "brac", - "ket-template", - [2, 16246, 16247], - "dust", - "js-helpers", - [2, 16249, 16250], - "dustjs-", - [1, 2343, 16254], - [0, 0, 16258, 16266, 4139], - "linkedin", - [2, 16252, 16255], - "eco", - [0, 24045, 5087, 1596, 1192, 4039, 4468, 4487, 91], - "haml-coffee", - "hamlet", - "htmling", - "jazz", - "jqtpl", - "just", - "liquid-node", - [0, 24047], - "liquor", - "mote", - "plates", - "qejs", - "ractive", - "slm", - [2, 4371, 2229], - "teacup", - "tinyliquid", - "toffee", - "twig", - "twing", - "vash", - "velocityjs", - "walrus", - "whiskers", - [1, 2343, 16285], - "engine", - [0, 0, 0, 16286, 2537], - [0, 2700, 7007, 7189, 2382, 6957, 6564, 6910, 7282, 6769, 6917], - [1, 2343, 16288], - [0, 9670, 16289, 16291, 2523], - [0, 1166, 2592, 4481, 1906], - "rfc6266", - [0, 3209, 2325, 15759, 15760, 1237, 2145, 24057], - [1, 2343, 16293], - [0, 16294, 16295, 16297, 2487], - [0, 3537, 13780], - [0, 1166, 16499, 1700, 2020, 1906], - "rfc7231", - [0, 1204, 2703, 3209, 814, 2202, 15525, 16186, 200], - [1, 2343, 16299], - [0, 16300, 16301, 16302, 2523], - [0, 24069, 24073, 24075, 24077, 24078, 24080, 24081], - [0, 4874, 9241, 1177, 24085, 1894, 91], - [ - 0, 13527, 36, 24088, 24089, 1965, 20986, 24090, 5592, 17829, 24091, 11100, 24092, 4030, 7096, 5122, 5130, 38, - 7433, 24093, 7223, 6599, 27, 2671, 4699, 14609, 24095, 1896, 5995, 12660 - ], - [1, 2343, 16304], - [0, 0, 8134, 16305, 2399], - [0, 8958, 1871, 2966, 14903, 3924, 2585, 1794, 7067], - [3, 1567, 23], - [2, 16306, 1098], - [3, 1570, 25], - "@conventional-changelog/git-client", - [2, 16308, 23], - [2, 16306, 1177], - [1, 2343, 16313], - [0, 16314, 16315, 16317, 4139], - [0, 23184, 1366, 23187, 2607, 2812, 3084], - [0, 1501, 2556, 620], - "tom", - [0, 2090, 7204, 1852, 2556, 1932], - [1, 2343, 16319], - [0, 16320, 16324, 16325, 2487], - [0, 1639, 24114, 6330], - [2, 10832, 1194], - [2, 16306, 16321], - [2, 4402, 4202], - [0, 24118, 24117], - [0, 2711, 6681, 5130, 10772, 24120, 1936, 24122, 36, 965, 1388, 4042, 23361], - [1, 2343, 16327], - [0, 0, 16328, 16331, 2537], - [0, 91, 1984], - "add-stream", - "tempfile", - [0, 2712, 24128, 24129, 3547, 23877, 23870, 4545, 24130, 10915, 23872, 23878, 23874, 23879, 23881, 23883, 23875], - [1, 2343, 16333], - [0, 0, 11686, 16334, 2399], - [0, 24136, 1227, 24137, 24138, 24140, 2713, 1388, 1389], - [1, 2343, 16336], - [0, 0, 6538, 2514, 2523], - "compare-func", - [1, 2343, 16339], - [0, 16343, 16344, 16345, 2523], - "commits.org", - [2, 16094, 16340], - "preset", - [ - 0, 24151, 1107, 1110, 24152, 1437, 1471, 1477, 1486, 13763, 16485, 2709, 20044, 24153, 14676, 4116, 4174, 4208, - 13781, 4290, 16323, 4507, 9731, 4726, 4729, 24154 - ], - [ - 0, 15288, 13789, 826, 24156, 4874, 4880, 24157, 34148, 24162, 6513, 24164, 9241, 24165, 1166, 1371, 1702, 24166, - 1959, 1961, 3242, 3339, 3479, 1894, 89, 24169, 4193, 4294, 4474, 91, 1906 - ], - [0, 89, 200, 1219, 8634, 4963, 6876, 3698, 3875, 24171, 8924, 1512, 2585], - [1, 2343, 16350], - "inline-s", - [3, 5588, 9], - [2, 16347, 16348], - [0, 0, 16351, 16352, 2443], - [ - 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 1623, 1177, 1955, 10964, 2203, 2675, 1192, 2990, 3400, 1894, - 23535, 4042 - ], - [0, 2718, 24177, 590, 57, 1623], - [1, 2343, 16354], - [0, 0, 0, 16355, 2487], - [0, 24182, 24183, 18496, 6574, 7242, 21779, 202, 200], - "top-sites", - [1, 2343, 16359], - "cookies", - [0, 16360, 16361, 6151, 2537], - [0, 31874, 546, 8998, 8605, 8612, 24188, 4094], - [0, 8608, 91], - [1, 2343, 16363], - [0, 16364, 16365, 16366, 2443], - [0, 1107, 2089, 3527, 24188, 4094], - [0, 2126, 2163, 2720], - [ - 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 1836, 6847, 8625, 2720, 8626, 8628, 5284, 4403, 202, 6710, 3741, - 8630, 3742, 8631, 3925, 2184, 8634, 7009, 6621, 181, 8635, 4758, 8636 - ], - [1, 2343, 16368], - [0, 16369, 0, 16370, 4139], - [0, 24202, 1512], - [0, 24204, 202, 9143, 13392], - [1, 2343, 16372], - [0, 0, 16373, 16374, 2487], - [0, 1734, 2899, 24209, 4072], - [0, 5260, 3209, 10906, 24211, 1388, 24213, 1808, 1161], - "sign", - "unsign", - [1, 2343, 16378], - [0, 0, 16379, 16380, 4139], - [0, 1177, 1889, 1954, 2022, 2822, 2899, 3421, 20314, 3932, 3985, 24220, 4167], - [0, 1507, 24223, 1509, 3595, 5194, 676, 1781, 2856, 1219, 89, 24224, 4452, 4799, 91, 6523, 4745, 17307], - "-selection", - [2, 15813, 16381], - [1, 2343, 16386], - "@brettz9/node-static", - "-standa", - [0, 0, 16390, 16391, 4139], - "lone-jar", - [2, 16385, 16387], - [2, 13131, 16388], - [ - 0, 1149, 1173, 1178, 1240, 24231, 24234, 1245, 1257, 1267, 24235, 1280, 24237, 24241, 24245, 24247, 24249, - 24251, 24254, 24257, 24259, 24262, 24264, 24266, 24269, 24272, 1474, 1498, 1177, 24273, 2099, 2070, 2228, 2240, - 2247, 2258, 24274, 24275, 2272, 3188, 3435, 4039, 4042, 4045, 4055, 24278, 13674, 4069, 4077, 22031, 4151, 4652 - ], - [0, 2728, 2679, 23932, 24282, 6422], - [1, 2343, 16393], - [0, 0, 16394, 16395, 2537], - [ - 0, 19, 21, 24, 26, 32, 5241, 92, 8648, 840, 968, 974, 4874, 4880, 4883, 1009, 1011, 11016, 33975, 1198, 1622, - 668, 1177, 1915, 1938, 1939, 1959, 1961, 2075, 24289, 10697, 24291, 2228, 2239, 2240, 2247, 2256, 2263, 2283, - 24295, 2308, 2314, 2665, 1192, 2780, 2814, 3003, 3541, 1894, 10622, 89, 3824, 2278, 4164, 3709, 4436, 4474, 91, - 1983, 26744, 188, 13151, 4769 - ], - [ - 0, 24298, 24299, 24302, 7285, 7310, 5131, 6847, 7210, 5399, 5284, 1932, 1623, 1936, 7020, 6983, 89, 188, 1098, - 3709, 4627, 91 - ], - [2, 4865, 2199], - "rmalize-path", - [2, 10409, 16397], - "rialize-javascript", - [2, 5252, 16399], - "@webpack-c", - "ontr", - "ib/eslint-config-webpack", - [2, 16402, 16403], - [2, 16401, 16404], - [1, 2343, 16408], - "is-gzip", - [0, 16409, 16411, 16412, 2523], - [0, 3082], - "transfer", - [0, 1389, 2126, 4384], - [0, 1973, 2731], - [1, 2343, 16414], - [0, 16416, 16417, 16418, 2487], - "noms", - [0, 16579, 16585, 23711], - [0, 4874, 7677, 1177, 1894, 3951, 4039, 4042, 4469, 4484, 91, 1984], - [0, 14428, 24316, 14416, 24319, 24320, 5284, 202, 91], - [1, 2343, 16420], - [0, 16422, 16426, 16427, 2523], - "qr", - [ - 0, 4390, 1687, 24346, 3445, 3348, 1437, 1676, 4484, 1209, 4135, 4238, 6331, 4431, 24347, 4339, 24345, 24332, - 24337, 22651, 24349, 24335, 24340, 24327, 24338, 24339, 24344, 24343, 24329 - ], - "simple qr", - "npm qr JavaScript", - "js qr code", - [ - 0, 1192, 4039, 4487, 4468, 2774, 13214, 4227, 91, 17577, 5087, 4874, 24354, 7819, 2990, 5245, 4870, 5254, 24358, - 24356, 18435, 24360, 24352 - ], - [0, 2733, 24362, 24363, 5131, 1896, 24364, 1591, 970, 3525], - [1, 2343, 16429], - [0, 16433, 16434, 16436, 2523], - [3, 1590, 15], - "sample", - [2, 16430, 16431], - [0, 8641], - [0, 8648, 4864, 5087, 4874, 24370, 2151, 1192, 2774, 27442, 3401, 1894, 3758, 4039, 4135, 4146, 4361, 4494, 91], - [2, 16423, 1501], - [0, 24373, 2733, 1017, 8221, 5131, 20523, 4627, 24374, 5027, 12295], - [1, 2343, 16438], - [0, 16439, 16440, 16441, 2537], - [0, 24379, 24382, 1676, 24383, 3032, 24386, 24389, 24391, 24393], - [ - 0, 24397, 6061, 16607, 6063, 4856, 9417, 5245, 24398, 24400, 6503, 4874, 24403, 6513, 1009, 1011, 1429, 1431, - 1177, 1895, 2899, 3421, 1894, 4131, 4153, 4193, 4474, 4481, 4508, 91, 3348 - ], - [0, 1552, 24093, 24406, 24408], - "insight", - "-lib", - "cordova-lib", - "cordova-", - [2, 16445, 10896], - "cordova-c", - "reate", - [2, 16447, 16448], - "loud-rejection", - [1, 2343, 16455], - "@cor", - "dova/eslint-config", - [2, 16452, 16453], - [0, 0, 16456, 2514, 4139], - [0, 2899, 1177], - [1, 2343, 16458], - [0, 16459, 16463, 2514, 2523], - [0, 24416, 8431, 24419], - "4", - "ES2024", - [2, 6796, 16460], - [0, 24421, 2080, 2292, 4389], - [1, 2343, 16465], - [0, 0, 16466, 16467, 2537], - [0, 1158, 3421, 4389, 1177, 14741, 2708, 4103, 13614, 15059], - [0, 614, 998, 1973], - [1, 2343, 16469], - [0, 16470, 16471, 9636, 34352], - [0, 1458], - [0, 1470, 4255], - [1, 2343, 16475], - "env-paths", - "parse-json", - [0, 16486, 16487, 16488, 2537], - "arse-", - "arse-json", - [2, 5088, 16477], - [3, 7677, 17], - [2, 16479, 2759], - "davidtheclark-node", - [2, 1884, 16481], - [3, 16481, 13], - [2, 3996, 16483], - "es-toolkit", - [0, 24437], - [0, 2398, 2899], - [0, 16159, 15643, 4354, 2978, 7256, 24440, 2070, 21543, 24441, 2741, 3529, 6421, 13017, 1108, 6920, 1871, 1973], - [1, 2343, 16490], - [0, 16493, 16494, 16495, 2443], - "lcov-parse", - "log-driver", - [0, 24446, 17450], - [0, 1166, 16499, 1700, 2020, 3093, 4481, 1906], - [0, 2202, 3383, 24449, 1237, 1161, 24450, 3378, 4749, 2741, 4354, 13735, 2703, 24451, 200, 20052, 17180], - [1, 2343, 16497], - [0, 0, 8134, 16498, 2487], - [0, 3048, 2741, 4354, 1973, 998, 19096, 24456, 7523, 2869], - "cpy", - [1, 2343, 16501], - [0, 0, 16505, 16506, 34352], - "cp", - [3, 12419, 11], - "contents", - [0, 1429, 1999, 2398, 2899, 3198, 4042], - [0, 4354, 2741, 24462, 2757, 5284, 24463, 20273, 3048, 19096, 998, 7031, 6692], - [1, 2343, 16508], - [0, 0, 16510, 16514, 2523], - "hpagent", - [0, 2899, 3954], - "http2-wrapper", - "seenreq", - "tslog", - [0, 1936, 24374, 24470, 11608], - "@types/got", - [1, 2343, 16519], - "spider", - "gzip", - [0, 0, 16520, 16521, 2523], - [0, 4874, 1166, 4400, 4481, 1906], - [0, 3101, 998, 7046, 7089, 7017, 6704, 353, 4354, 13735, 2741], - [1, 2343, 16525], - "crc16ccitt", - "crc16", - [0, 16527, 16529, 16535, 2523], - "crc16kermit", - [0, 24488], - "crc16modbus", - [0, 1166, 24491, 4481, 1906], - "crc16xmodem", - "crc1", - "crc24", - "crc81wire", - "crc8", - [0, 4354, 24493, 6574, 24494, 6667, 13735, 16159, 3729, 7201, 7009, 2741], - "crc8dvbs2", - "crcjam", - [1, 2343, 16539], - [0, 0, 9264, 16540, 2443], - [0, 1388, 2756, 4552], - [1, 2343, 16545], - "cipher-base", - "ripemd160", - "sha.js", - [0, 0, 16546, 16547, 2443], - [0, 1999, 2398, 2899, 4042], - [0, 4354, 2741, 24462, 2757, 24463, 20273, 24504, 970, 3048, 998, 7031, 6692], - [1, 2343, 16549], - [0, 16550, 16551, 2514, 2523], - [0, 3310, 4705], - [0, 1429, 2272, 24512, 2899, 3297], - [1, 2343, 16553], - [0, 16554, 16555, 16556, 2537], - [0, 2070, 3368, 3441, 1149, 4707, 23432, 3188, 2003, 2822, 814, 4720, 1875, 2036, 4351], - [0, 2272, 4039, 2276, 1596, 4019], - [0, 4504, 24520, 24521, 24525], - "async-t", - "-tree", - "raverse-tree", - [2, 16557, 16559], - "css-u", - "rl-parser", - [2, 16561, 16562], - "uri-to-", - [2, 16564, 1398], - [2, 14678, 16565], - [1, 2343, 16577], - "group-args", - "inline-", - [2, 16569, 1604], - "oust", - "penthouse", - [3, 3591, 15], - [3, 3611, 14], - "inliner", - [2, 16574, 16575], - [0, 16582, 11580, 16583, 2537], - "postcss-url", - "@inversifyjs/common", - "newline", - [2, 3370, 16580], - [0, 2152, 3348, 18545], - [0, 2760], - "stream-array", - [2, 23712, 29231], - [1, 2343, 16588], - "optimization", - [0, 16589, 16590, 16591, 2523], - [0, 1156, 1699, 1817, 24536, 3070, 3559, 4443, 24537], - [ - 0, 24539, 1173, 1175, 1191, 1195, 1201, 1220, 1230, 24541, 1245, 1255, 18571, 1264, 1279, 1282, 1429, 24542, - 1584, 1610, 1628, 1177, 1988, 2054, 2092, 2148, 2323, 2332, 2361, 2450, 2494, 2629, 2651, 2297, 2881, 2886, - 2900, 18260, 2921, 2923, 2925, 695, 2969, 21082, 2899, 4193, 4196, 4307, 4487, 91, 4537, 4027, 188, 4632, 24545, - 4634, 4639, 4640, 4645, 2924, 4681, 4689 - ], - [0, 2761, 188, 6284, 4627, 4963, 181, 5130], - [1, 2343, 16594], - "@fast", - [0, 16613, 6161, 16614, 2537], - "-check/jest", - [2, 16593, 16595], - "@insurgent/commitlint-config", - [3, 16597, 13], - "nvent", - "ional-changelog-preset", - [2, 16599, 16600], - [2, 16598, 16601], - [3, 6061, 19], - "ommit", - "-analyzer", - [2, 16604, 16605], - [2, 16603, 16606], - [2, 6062, 3378], - "-generator", - [2, 11155, 16609], - [2, 6019, 16610], - [2, 6062, 16611], - [0, 548], - [0, 7233, 57, 7058, 5675, 7210, 200, 1523, 3924, 1644, 7119], - "node cron", - [1, 2343, 16620], - "node-cron", - "schedule", - "cronjob", - [0, 16622, 16623, 2514, 2537], - "cron job", - [0, 24560, 1462, 1525, 24562, 24563, 3188, 24564, 4535, 24566, 5056], - [ - 0, 24570, 24571, 1596, 2026, 24574, 2034, 24576, 24577, 24581, 24584, 24587, 24591, 24592, 24593, 24594, 24596, - 24598, 24599, 3127, 3456, 24600, 4039, 24601, 24602 - ], - [1, 2343, 16625], - [0, 16627, 16628, 16632, 2523], - "tz", - [0, 1149, 24607, 3527], - [0, 442, 1177, 10751, 2203, 2899, 3760], - "timer", - "tab", - "crontab", - [0, 6147, 200, 7048, 24610], - [1, 2343, 16634], - [0, 16635, 16648, 16651, 2537], - [0, 24617], - "@prantlf/jsonlint", - "@prettier/plugin-xml", - "@stryker-mutator/core", - [3, 16638, 17], - [2, 3192, 8791], - [2, 16639, 16640], - [3, 15909, 16], - "ray-func", - [2, 16642, 16643], - [3, 13097, 17], - "unsanitized", - [2, 16645, 16646], - [ - 0, 5583, 816, 6373, 10615, 11301, 24621, 24624, 1462, 1610, 24625, 2675, 2814, 16830, 2990, 3170, 24627, 4042, - 8849, 20983 - ], - "metalint", - "yaml-lint", - [0, 24631, 158, 12083, 24633, 24634, 20634], - [1, 2343, 16653], - [0, 16654, 16655, 16659, 2487], - [0, 2070, 2766, 23576], - [0, 1177, 24287], - [2, 1601, 7179], - [3, 3606, 9], - [2, 16657, 2408], - [0, 1973, 5472, 2765, 6969, 5982], - "zoom", - "rotate", - "scale", - "cropper", - "cropper.js", - [1, 2343, 16667], - [2, 29236, 594], - [0, 0, 16668, 16659, 2523], - [0, 19181, 442, 1137, 24645, 1797, 1177, 1924, 2070, 2203, 2832, 1894, 2278], - [1, 2343, 16670], - [0, 16671, 0, 16672, 2523], - [0, 2164, 3188, 24653, 4019, 4545, 1509, 24652, 24651], - [0, 5472, 5982], - "ironment", - [2, 1610, 16673], - " variable", - [2, 6639, 16675], - [1, 2343, 16678], - [0, 16679, 0, 6183, 2537], - [0, 551, 554, 2704, 2774], - [1, 2343, 16681], - [0, 16682, 16683, 16684, 2487], - [0, 24665, 24666], - [0, 14671, 48, 53, 61, 87, 192, 22559, 1193, 24668, 1596, 2675, 1192, 1894], - [0, 3212, 1192, 11944, 1795, 1424, 1973, 2275], - [1, 2343, 16686], - [0, 16689, 16695, 6183, 2487], - "path-key", - [2, 6987, 16141], - [0, 551, 8762, 554, 1437, 29680, 2704, 8734, 2798, 8747, 4747], - [3, 10688, 14], - "oxy", - [2, 16690, 16691], - [3, 15793, 15], - [2, 16693, 16691], - [0, 4892], - "spawnSync", - [2, 1611, 12344], - [1, 2343, 16700], - "path-ext", - [0, 16702, 16703, 2514, 2487], - "execute", - [0, 16729, 13002, 1437, 3717], - [0, 8776], - [1, 2343, 16705], - [0, 16706, 16703, 2514, 2523], - [0, 24690, 16738, 13204, 4874, 2832], - [1, 2343, 16708], - [0, 16714, 16715, 2514, 2537], - "cipher", - [2, 13888, 16709], - [3, 1391, 12], - "ign", - [2, 16711, 16712], - [0, 24690, 24694, 554, 11944, 2798, 2832], - [0, 5087, 13204, 4874, 2675, 1192, 3188, 1894, 3720, 4039, 4468, 91], - "create-ecdh", - [1, 2343, 16727], - "mac", - "create-hmac", - "ie-hellman", - [2, 1687, 16720], - "pbkdf2", - "publi", - "c-encrypt", - [2, 16723, 16724], - "randomfill", - [0, 16730, 16731, 2514, 34352], - [2, 6426, 3779], - "@jest/diff-sequences", - [0, 24690, 24694, 554, 4874, 11944, 2798, 8747], - [0, 8776, 1497], - [1, 2343, 16752], - "Hash", - "MD5", - "SHA1", - "SHA-1", - "SHA256", - [2, 24690, 20072], - "SHA-256", - "RC4", - "Rabbit", - "AES", - "DES", - "PBKDF2", - "HMAC", - "OFB", - "CFB", - "CTR", - "CBC", - "Base64", - "Base64url", - [0, 16753, 16754, 16755, 2523], - [0, 2777], - [ - 0, 107, 19438, 19181, 442, 20076, 5087, 1009, 1011, 1177, 1895, 1915, 1938, 1939, 1955, 2203, 2675, 1192, 24713, - 2802, 2990, 1894, 4468, 12206, 91 - ], - [0, 1192, 24715, 2051, 24717, 1973, 5472, 5710], - [1, 2343, 16760], - "roupon", - [2, 1887, 16757], - "nlm", - [0, 16761, 16762, 16763, 2537], - [0, 2151, 3445], - [ - 0, 53, 24723, 841, 968, 972, 974, 24725, 5087, 24727, 4874, 24729, 4880, 4883, 14552, 1114, 1193, 1195, 1216, - 1270, 1324, 1393, 1420, 1426, 1582, 1628, 1630, 1652, 1759, 1763, 1869, 1177, 1898, 24732, 2054, 2092, 2151, - 2651, 2686, 1192, 2797, 2802, 24733, 3177, 3376, 3561, 3605, 3618, 3647, 3672, 3742, 24734, 89, 3803, 3816, - 3824, 3878, 24737, 814, 4028, 2278, 4111, 4135, 4230, 4307, 4383, 4409, 91, 4027, 24739, 2924, 4676, 4681, 4686, - 4723 - ], - [0, 1192, 1936, 16237, 11937, 1932], - [1, 2343, 16776], - "@cspell/cspell-json-reporter", - [3, 16765, 15], - [2, 16766, 7170], - [2, 16766, 553], - "@cspell/", - [2, 16769, 15126], - "@cspell/url", - [2, 1622, 4304], - "cspell-", - "gitignore", - [2, 16773, 16774], - [0, 16777, 16784, 2514, 2537], - [0, 3188, 4294, 3348, 6523], - "cspell-glob", - "cspell-io", - "cspell-lib", - [2, 2068, 2851], - "entry-cache", - [2, 2093, 16782], - [0, 1192, 24746, 4207], - "@types/fi", - "le-entry-cache", - [2, 16785, 16786], - [1, 2343, 16795], - "spell", - "checker", - "spelling", - " checker", - "spell checker", - [2, 16791, 16792], - [0, 0, 0, 16796, 2523], - [0, 1192, 4749, 24753, 24754], - [1, 2343, 16798], - [0, 16800, 16801, 2514, 2487], - [2, 4229, 814], - [0, 1437, 2215, 8750, 2796, 2798, 8747, 4207, 12578], - [0, 8780, 1002], - [1, 2343, 16803], - [0, 16809, 16810, 2514, 4139], - "@rspack/cli", - "@mdn/browser-compat-data", - [3, 1200, 15], - [2, 16806, 6437], - [2, 812, 16807], - [0, 554, 4874, 1437, 1458, 2215, 3530], - [0, 8780, 20374, 1209], - "sorter", - [1, 2343, 16813], - [0, 16814, 16815, 2514, 2523], - [0, 1107, 1437, 8758, 8741, 4207, 15826, 4294], - [ - 0, 48, 53, 87, 92, 442, 11893, 554, 6061, 6063, 4874, 1193, 17217, 1610, 1177, 1895, 1915, 32525, 1939, 1955, - 2203, 1192, 24713, 1894, 4039, 4131, 4135, 91, 4523 - ], - [1, 2343, 16829], - "-verify", - [2, 13729, 16817], - [3, 4828, 15], - "itpick", - [2, 16819, 16820], - [3, 15801, 21], - "hangelog", - [2, 16822, 16823], - [2, 8184, 8166], - "version-", - [2, 16826, 13729], - "write-", - [0, 16832, 16833, 2514, 2487], - "json-file", - [2, 16828, 16830], - [0, 4874, 23247, 2798, 3159, 4351], - [0, 53, 24781, 9746, 23262, 2188, 24779, 24777], - [1, 2343, 16835], - [0, 16836, 16844, 16845, 2537], - [ - 0, 18635, 24786, 27788, 27793, 27795, 27796, 27797, 27802, 27813, 27817, 27820, 27825, 27832, 27833, 27834, - 27841, 27844, 27870, 27878, 27879, 27880, 27881, 27883, 27884, 27887, 24789, 27888 - ], - "icss-utils", - [3, 3638, 16], - [2, 2055, 5651], - [2, 16838, 16839], - [2, 16838, 1993], - [2, 16838, 6693], - "@hapi/address", - [ - 0, 27890, 27893, 27895, 24793, 8862, 811, 15460, 816, 10615, 17214, 1177, 27898, 3502, 4042, 4057, 15277, 23652, - 4483, 91, 27900, 1984 - ], - [0, 158, 24795, 24799, 18048, 20637, 21881, 20650, 24800, 16662, 12712], - [1, 2343, 16847], - [0, 0, 16848, 2514, 2487], - [ - 0, 53, 5652, 5226, 56, 15659, 71, 5704, 5712, 4851, 5785, 5874, 5889, 92, 5230, 101, 104, 16804, 33146, 10879, - 10883, 15693, 24807, 31666, 4874, 7677, 1082, 24813, 1446, 1541, 1556, 16230, 14856, 1874, 1177, 1905, 2007, - 984, 2071, 2744, 3171, 3189, 3222, 15726, 3510, 15450, 3698, 28423, 1894, 89, 3824, 3951, 15728, 15452, 4409, - 26379, 4469, 91, 1984, 188, 20040, 4763 - ], - [1, 2343, 16859], - "@parcel/css", - "@swc/css", - [3, 9740, 13], - [2, 16852, 1623], - "@types/csso", - "set-simple", - [2, 11327, 16855], - [2, 1637, 16856], - "csso", - [0, 0, 0, 16861, 2487], - "lightningcss", - [0, 6105, 24822, 24827, 6106, 24829, 24830, 1936, 2585, 6038, 24832, 5284, 91, 24833, 2808], - "minimize", - [3, 1629, 9], - [1, 2343, 16865], - [0, 16866, 16867, 16869, 2537], - [0, 2808], - [ - 0, 19438, 23339, 842, 966, 972, 974, 4880, 4883, 1009, 1011, 1610, 1628, 1177, 1895, 1955, 1959, 1961, 1985, - 2651, 2832, 1894, 89, 3824, 4068, 4307, 7873, 4474, 4493, 91, 1984, 2924, 4677, 4681 - ], - "boolbase", - [0, 89, 2808, 1936, 2585, 6038, 24842, 24829, 24830, 24843], - "nth-check", - [1, 2343, 16878], - [3, 7804, 9], - "olbase", - [2, 16872, 16873], - "cheerio-s", - "oupselect", - [2, 16875, 16876], - [0, 16880, 16881, 16882, 2537], - "sizzle", - [0, 1437, 24854, 24849, 24848, 4145, 6271, 3029, 3028, 24853], - [0, 3421, 1149, 2228, 4193, 3460, 1596, 2240, 15929, 2293, 1532, 24857, 2283, 2273, 2277], - [ - 0, 24859, 24860, 24861, 24862, 24863, 24864, 24867, 24868, 24869, 24872, 24873, 24874, 24875, 24876, 24877, - 24878, 24879, 24880, 24881, 24882, 24883, 24884, 24885, 24888, 24890, 24892, 24893, 24894, 24895, 24854, 24896, - 24897, 24898, 24899, 24902, 24904, 24905, 24906, 24907, 24908, 24909, 24912, 24915, 24917, 24920, 24922, 24924, - 24927, 24928, 24929, 24930, 24931, 24932, 24933, 24934, 24935, 24938, 24940, 24942, 24943, 24944, 24945, 24945, - 24946, 24947, 24948, 24949, 24950, 24951, 24952, 24953, 24955, 24956, 24959, 24960, 24961, 24962, 24963, 24966, - 24967, 24968, 24969, 24970, 24972, 24973, 24974, 24975, 24976, 24977, 24978, 12047, 24979, 24980, 24981, 24983, - 24985, 24986, 24988, 24991, 24992, 24993, 24994, 24995, 24995, 24997, 25000, 25001, 25002, 4040, 25003, 25004, - 4144, 4145, 25006, 25007, 25008, 25009, 25012, 25014, 25010, 25015, 25019, 25020, 25021, 25022, 25023, 25024, - 25025, 25026, 25027, 25028, 25029, 25030, 25033 - ], - [1, 2343, 16884], - [0, 16886, 16887, 16888, 2537], - "clap", - [0, 16843, 25038, 8335, 25039, 25040, 8353, 26364], - [0, 21662, 8357, 5500, 8359, 4874, 91], - [0, 2844, 7020], - "json-to-ast", - [1, 2343, 16893], - "walker", - "lexer", - [0, 0, 0, 16895, 2523], - "jquery-test-runner", - [0, 89, 6649, 10057, 6355, 25054, 1542], - [1, 2343, 16899], - "features", - "web-features", - [0, 0, 0, 16901, 2399], - "stages", - [0, 2814, 5284, 1388, 6082], - [1, 2343, 16903], - [0, 16904, 16905, 2514, 2537], - [0, 2814], - [0, 2228, 4039, 2203, 842, 25088, 25063, 2291, 25090, 3006, 25070, 25074, 16894, 25076, 2253, 2260, 23178], - [3, 7014, 10], - [1, 2343, 16908], - [0, 0, 16909, 16910, 2443], - [0, 4874, 2899, 91], - [0, 14357, 17180], - [3, 16857, 15], - [2, 16911, 10441], - [1, 2343, 16917], - "advanced", - [2, 16911, 16914], - [2, 16911, 2994], - [0, 16920, 16921, 16922, 2537], - "optimise", - [2, 5505, 5218], - [0, 25106, 18420, 2070, 2821, 3368], - [0, 1109, 1317, 1505, 2814, 2272, 3183, 2899, 3257, 4019, 4146, 4294, 2924, 4677], - [0, 14438, 24856, 25109], - "@jscpd/badge-reporter", - [1, 2343, 16925], - [0, 0, 16926, 16927, 2537], - [ - 0, 10615, 1177, 1903, 1937, 1948, 2228, 25074, 2256, 2277, 23165, 2283, 17565, 25060, 1894, 2907, 3980, 4042, - 11802, 4060, 4255 - ], - [0, 977, 16358, 1388, 5808, 10906, 5576, 2821, 1389], - [2, 27440, 27441], - [1, 2343, 16930], - [0, 16939, 16940, 16941, 4139], - [3, 4856, 9], - "okidar", - [2, 16931, 16932], - [2, 7632, 16558], - [3, 12842, 11], - [2, 16935, 4467], - "urndown", - [2, 7750, 16937], - [0, 1139], - [0, 3421, 1111, 2899, 1177, 4042, 4167, 2193, 1317, 1505, 2064, 4073, 811, 816, 19232], - [0, 4745, 57, 1753, 6713], - [1, 2343, 16943], - [0, 16945, 16946, 16947, 2399], - "csrf", - [0, 58, 12184, 1525, 1676, 1696, 2070, 25125, 27534, 1997, 25126], - [ - 0, 442, 8719, 842, 8712, 16145, 4874, 1527, 1567, 1652, 1177, 1895, 1939, 1955, 1192, 2829, 22509, 22511, 1894, - 4039, 91, 4523 - ], - [0, 25135, 1745], - [1, 2343, 16949], - [0, 16951, 16955, 2514, 2537], - "@acemir/cssom", - [0, 1512, 1525, 2151, 25141, 16923, 25147, 25144, 25148, 25142, 25146], - [2, 812, 1177], - "ould", - [2, 7747, 16953], - [0, 5536, 4864, 4874, 7677, 3363, 4474, 4493, 91, 1984], - "tsv", - "generation", - [1, 2343, 16959], - [0, 16960, 16961, 16962, 2487], - [ - 0, 1437, 1481, 1525, 25154, 2004, 2021, 2070, 2654, 2822, 25156, 25160, 15555, 1209, 3181, 12118, 15371, 3741, - 25162, 814, 4296, 4300, 25163, 25164, 21956, 25165, 4736 - ], - [0, 1429, 1596, 6474, 2272, 2899, 3954, 4037, 4193, 4196, 25168, 25170, 4734], - [0, 19271, 4525, 671, 9654, 25172, 2649], - [1, 2343, 16965], - "@bramus/specificity", - [0, 16967, 16968, 16969, 2537], - "coffeelint", - [0, 58, 25177, 7639, 1362, 25178, 1874, 25179, 21226, 3105, 3107, 3127, 3188, 25181, 4300, 4545], - [0, 1091, 2323, 2384, 2449, 3421], - [0, 1745, 5284], - [1, 2343, 16972], - "csv-spectrum", - [0, 16973, 0, 16974, 2537], - [0, 16053, 17786, 25190, 17788, 1776, 25193, 17798], - [0, 1776, 5592, 13325, 8626, 5284, 1745], - [1, 2343, 16976], - [0, 16977, 0, 16978, 2523], - [0, 16053, 1519, 1522, 25203, 1727, 2826, 4783, 17798], - [0, 1776, 1783, 5592, 1179, 5284, 676, 1745], - [1, 2343, 16980], - [0, 16981, 16982, 16983, 2523], - [ - 0, 16950, 16928, 16964, 15956, 1638, 25211, 25212, 2623, 2661, 2674, 2750, 3493, 25213, 25215, 4454, 4548, - 25216, 23201, 15502, 25217, 19851 - ], - [0, 23591, 1177, 1937, 1953, 2203, 2822, 3181, 2899, 25221, 3401, 3456, 3549, 4135, 4153, 4441, 27602, 25224], - [0, 965, 1936, 7102, 12616], - "csv parser", - [1, 2343, 16987], - "parse csv", - [0, 16988, 16992, 16983, 2523], - [0, 25231, 25232, 1638, 2654, 25233, 3493, 705, 19851, 4738], - "csv to json", - "csv convert", - "tojson", - [0, 1389, 1512, 2665, 2272, 16112, 2276, 3560, 3760, 25238, 4652], - " csv to json", - [2, 6270, 16993], - "csv-json", - [1, 2343, 16997], - [0, 0, 16998, 16999, 2537], - [0, 1596, 2228, 2240, 14352, 2759, 2899, 3954, 4019, 25244], - [0, 1398, 1867, 5284, 1781, 3053, 3065, 1871, 1646, 4990], - [2, 1649, 6451], - "cucumber-", - [2, 17001, 6466], - "duration", - [1, 2343, 17005], - [0, 17012, 17014, 2514, 4139], - "enerator", - "is-generator", - [3, 4143, 10], - [2, 17008, 1851], - "stack-chain", - [2, 16240, 1592], - [0, 200, 15014, 2021, 2654, 1209, 3181, 4300], - "ansi-html", - [0, 1149, 1389, 1566, 13985, 1596, 2759, 2292, 3211, 2276, 3758, 3954, 25251, 4193, 15136, 25253, 25256], - [1, 2343, 17016], - [0, 17017, 17022, 17024, 2523], - [0, 1437, 3074, 3545, 15826, 4425, 22972], - [3, 1976, 18], - [2, 17018, 4414], - "riteway", - "updtr", - [0, 2272], - "unique", - [0, 2272, 16237, 4525, 1671, 671, 2649, 25264, 16238, 3721], - "unique id", - [1, 2343, 17027], - [0, 17028, 17029, 17030, 2537], - [0, 25269, 25272], - [0, 6503, 4874, 1009, 1011, 1177, 1886, 1938, 2899, 3421, 4474, 91], - [0, 1781, 17420, 1641, 15253, 6813, 25276, 25277, 1644, 57, 2841, 25279, 200], - "ospath", - [1, 2343, 17033], - [0, 0, 17035, 2514, 4139], - "lazy-ass", - [0, 4257], - "blob-util", - [3, 8129, 9], - [1, 2343, 17043], - "@cypress/xvfb", - "zzle", - [2, 6545, 17040], - [2, 17037, 705], - [0, 0, 0, 17048, 34352], - "more-types", - [2, 14614, 17044], - [3, 4008, 11], - [2, 17046, 6509], - [0, 1781, 2844], - "cypress.io", - "mocks", - "spies", - "stubs", - [1, 2343, 17054], - [0, 17055, 17056, 17060, 2537], - [0, 975, 983, 15951, 1437, 1457, 8098, 7614, 2712, 2856, 3083, 25292, 4200, 25294], - [0, 4874, 1540, 2182, 2675, 33479, 30889, 4400, 4507, 91], - [3, 13848, 19], - [2, 17057, 3172], - "longest", - [0, 6671, 36, 21147, 8173, 8172, 25094, 3212, 8788, 1973, 5472, 4030, 2382, 28726], - [1, 2343, 17062], - [0, 17063, 17064, 17065, 2399], - [0, 1417, 7272, 2756, 17827, 3433], - [0, 5517, 13614, 23237, 10979, 27571, 27016, 19325, 1159, 9254, 1177, 2708, 3410, 4103, 4389], - [0, 1781, 1646, 7185, 3428, 6333, 7077], - [1, 2343, 17069], - "d3-axis", - "d3-brush", - [0, 0, 0, 17070, 2523], - [0, 1781, 1646, 7045, 6953], - "d3-chord", - [1, 2343, 17073], - [0, 0, 17076, 17077, 2443], - "d3-contour", - "d3-delaunay", - [0, 1593, 1177, 1903, 1938, 1954, 1958, 1970, 3400, 3954, 4042, 4048, 4055, 4067, 4073, 4193, 4384, 25313], - [0, 1781, 2856, 1925, 6778, 5286], - "d3-dispatch", - [1, 2343, 17084], - "d3-drag", - "d3-dsv", - "d3-ease", - "d3-fetch", - [0, 0, 17085, 2514, 2537], - [0, 2899, 1177, 4039, 91, 4874, 6503, 1011, 1009], - "d3-force", - [1, 2343, 17088], - [0, 17094, 13658, 17095, 2537], - "d3-format", - "d3-geo", - "d3-hierarchy", - "d3-interpolate", - "d3-path", - [0, 21224], - [0, 3917, 6033, 2090, 1781, 2150, 2151], - "d3-polygon", - "d3-quadtree", - "d3-random", - "-chromatic", - [2, 1655, 17099], - "d3-time", - "-format", - [2, 17101, 17102], - "d3-timer", - [1, 2343, 17106], - [0, 0, 17109, 17114, 2523], - "d3-transition", - "d3-zoom", - [0, 16638, 16641, 1429, 1177, 25328, 2899], - "@observablehq/plot", - [3, 17110, 14], - [2, 17111, 7047], - "topojson-client", - [0, 1781, 2844, 2860, 1155, 7020], - "visualiz", - [2, 17115, 5218], - [1, 2343, 17118], - [0, 17119, 17120, 17123, 2523], - [0, 4430, 25336], - [0, 4389, 19987, 18718, 8924, 5710, 2012], - "intern", - "internmap", - [0, 1781, 3101, 22115, 57, 1149, 7119], - [1, 2343, 17126], - "d3-module", - [0, 17127, 17131, 17133, 4139], - [0, 3242, 25343, 4135, 25355, 25346, 25353, 3052, 25347, 25350, 3051], - "histogram", - "bisect", - "shuffle", - [0, 3413, 3421, 1157, 1429, 2899, 4193, 1177, 1566], - "stic", - [0, 2038], - "statistics", - [1, 2343, 17136], - [0, 17137, 17138, 2514, 2523], - [0, 53, 25363, 17144, 3467, 3527], - [0, 25366, 4874, 26142, 1415, 668, 1177, 1895, 3171, 3181, 3445, 1894, 4042, 4448, 91], - [1, 2343, 17140], - [0, 0, 17141, 17143, 2537], - [0, 4874, 7677, 20085, 4493, 91, 1984], - "uniqid", - [0, 6649, 6710, 5995, 25372, 89, 970, 5122, 3857, 5123], - "@jspm/plugin-rollup", - [1, 2343, 17148], - "selection", - "data-join", - [0, 17149, 17150, 17151, 2487], - [0, 25377, 3486, 20508, 3923], - [0, 4449, 2228, 2907, 1177, 1317, 2240, 1389, 3541, 91, 2665, 25379, 2236, 2281, 25383], - [0, 2056, 25386, 25388], - [1, 2343, 17153], - [0, 0, 17154, 17155, 2487], - [ - 0, 4172, 1192, 2675, 1177, 23535, 4468, 4474, 1894, 91, 53, 2990, 1387, 1540, 1938, 1895, 1955, 2780, 1011, - 1009, 1915 - ], - [0, 2038, 1388], - [1, 2343, 17157], - [0, 0, 17158, 17160, 2537], - [0, 2025, 2759, 2899], - "dable", - [0, 2038, 10368, 15103], - [1, 2343, 17162], - [0, 17163, 17168, 17170, 2487], - [ - 0, 14416, 4449, 2070, 3171, 25404, 4747, 15643, 1209, 3078, 3188, 4039, 1544, 1457, 3181, 4218, 2659, 4227, - 1364, 2215, 12930, 3781, 11804, 25403, 13388 - ], - [2, 21029, 17165], - " plugin", - [2, 21045, 17169], - "postcss-js", - [ - 0, 1429, 13333, 2899, 17050, 4193, 4707, 1177, 1649, 4650, 3758, 4342, 1389, 2878, 3752, 4196, 25411, 1436, - 2900, 2766, 2898, 192, 1431, 2871, 4131, 1954, 1938, 25407, 2904, 6063, 1958, 2881, 25410, 1903, 1970, 2895, - 22559, 6061, 2876 - ], - "ails", - [0, 2297, 25415, 8791, 2297, 676, 5284, 5472, 1973, 21004, 25416], - "laravel", - [1, 2343, 17173], - [0, 17174, 17175, 17176, 2487], - [0, 9421, 1209, 25421, 3181, 18868, 1573], - [ - 0, 3377, 1377, 1429, 2297, 2899, 4193, 4453, 12851, 1177, 814, 4650, 1389, 4196, 91, 3400, 2766, 2898, 15051, - 1951, 2881 - ], - [0, 25425, 25427, 25429, 1389], - [1, 2343, 17178], - [0, 17182, 17185, 17186, 2537], - "reverse", - "binary", - "opposite", - [0, 3760, 14336, 25092], - "invert", - "switch", - [0, 2228, 1177, 2307, 2239, 2291, 3006, 1954, 2234, 1938, 1958, 1903, 1970, 2285, 2290], - [0, 25425, 25436, 14336, 25437], - [1, 2343, 17188], - [0, 0, 0, 17192, 2537], - "@cap", - "temulation/get-parameter-names", - [2, 17189, 17190], - [0, 2297, 25425, 1429, 2899, 4170], - "faker-bb", - [2, 7526, 17193], - [2, 9769, 1676], - "rss-parser", - [2, 2032, 2663], - [2, 4364, 17197], - "lexxy", - [1, 2343, 34442], - [0, 4707], - [0, 1429, 2297, 2899, 4193, 4255, 2900, 192, 4131, 6063, 22559, 6061], - [0, 25425, 25436, 3195], - "@date-", - "fns/docs", - [2, 17204, 17205], - [1, 2343, 17208], - [0, 17211, 17224, 17225, 2523], - "@date-fns/utc", - [3, 5530, 19], - [0, 11935, 14024, 11938, 11940, 11943, 3181], - "@types/bun", - "@vitest/", - [2, 17213, 1388], - [3, 1198, 17], - [2, 2701, 7188], - [2, 17215, 17216], - "bun", - "cloc", - "js-fns", - "jscodeshift", - "issing-exports", - [2, 10634, 17222], - [ - 0, 192, 5467, 21970, 6061, 6063, 16608, 1429, 1509, 1177, 1903, 1938, 1954, 1958, 1970, 2228, 2240, 2298, 2307, - 2675, 25453, 2297, 25455, 2895, 2900, 25458, 2899, 17050, 4019, 4131, 4193, 4196 - ], - [0, 25425, 25427, 25462, 4504, 2759], - [1, 2343, 17227], - [0, 17201, 17228, 17229, 2537], - [0, 2228, 2258, 2273, 2298, 2766, 2297, 2898, 3524], - [0, 25425, 25436, 1388, 2887, 25468, 25470, 25472, 25473, 17632, 25474, 25476, 25479, 25481, 25484, 25485], - [1, 2343, 17231], - [0, 17233, 17234, 17235, 2523], - [2, 2553, 20], - [0, 2890], - [0, 1429, 25492, 14416, 1177, 1903, 1958, 1970, 2228, 2239, 2240, 2291, 2307, 2316, 2297, 3006, 25493, 3752], - [0, 25425, 25436, 13530, 17631], - [1, 2343, 17237], - [0, 17238, 17241, 17245, 2537], - [0, 2755, 4707], - "ectory", - [2, 4015, 17239], - [0, 192, 5467, 6061, 6063, 16608, 2675, 2297, 2900, 2899, 3534, 4131, 4255], - "sleep", - " wrapper", - [2, 1149, 17243], - [0, 2297, 5472, 25425, 25436, 25501], - [1, 2343, 17247], - [0, 6203, 17248, 17249, 2523], - [ - 0, 1429, 14416, 1177, 1903, 1958, 1959, 1970, 2228, 2234, 2239, 2283, 2285, 2290, 2291, 2307, 2316, 2297, 3006, - 17050, 4193, 4196 - ], - [0, 25425, 25436, 7298], - [2, 17257, 24717, 17258], - "debouncing", - "invoke", - "interval", - [1, 2343, 17255], - [0, 17256, 17259, 17260, 2523], - [0, 2766], - [3, 7621, 18], - "-ascii", - [0, 2228, 2675, 2297, 1177, 2765, 192, 4131, 1954, 1938, 6063, 16608, 1958, 1903, 1970, 2895, 6065, 22559, 6061], - [0, 25425, 25514, 2765], - [1, 2343, 17262], - [0, 17263, 17264, 17265, 2487], - [0, 3183], - [ - 0, 1429, 1177, 1903, 1958, 1959, 1970, 2228, 2234, 2239, 2285, 2291, 2298, 2307, 2297, 2878, 2881, 2895, 2918, - 3006, 2899, 3203, 4193, 6061, 6063, 4131, 192, 5467, 2675 - ], - [0, 25425, 25514, 2899], - "decamelcase", - "lowercase", - [1, 2343, 17270], - "nano-spawn", - [0, 17271, 17280, 17282, 2537], - [0, 1437, 3074, 4294], - "-tar", - [2, 1679, 17272], - "bz2", - [2, 17273, 17274], - "gz", - [2, 17273, 17276], - [3, 17273, 11], - [2, 17278, 4560], - [0, 1429, 2228, 2239, 2258, 2273, 2285, 2298, 2314, 2766, 2878, 2889, 3006, 2899, 3524], - "strip-dirs", - [0, 25425, 25462, 2899, 1429, 1687, 2568], - "is-jpg", - [1, 2343, 17287], - "bzip2", - "tar.bz", - [0, 17289, 17290, 17291, 2537], - "tar.gz", - [0, 1209, 3524], - [0, 1177, 1903, 1959, 1970, 2228, 2234, 2239, 2285, 2291, 2298, 2307, 2766, 2297, 2898, 3006], - [0, 25425, 25436, 3521], - [1, 2343, 17301], - [3, 4852, 13], - "plugin-m", - [2, 17294, 7912], - [2, 17293, 17295], - "fail-test", - [2, 10740, 17297], - "deprecation", - [2, 1921, 17299], - [0, 0, 17320, 17324, 2399], - "only-tests", - [2, 16645, 17302], - [3, 1955, 15], - "erfectionist", - [2, 17304, 17305], - "yml", - [2, 1921, 17307], - "jsonc-", - [2, 17309, 67], - [2, 4488, 10441], - [2, 3390, 17311], - "curly", - [2, 3704, 17313], - "should-s", - "emantic-", - [2, 17316, 3979], - [2, 17315, 17317], - [2, 13125, 67], - [0, 1429, 2228, 2297, 2899, 2907, 1177, 2307, 2239, 2898, 1954, 1938, 1958, 1903, 1970, 2895], - " string", - "line string", - [2, 13862, 17322], - [0, 2297, 25425, 25514, 2907], - [1, 2343, 17326], - [0, 17327, 17328, 17333, 2487], - [0, 1457, 1675], - [0, 53, 5889, 87, 1177, 2766, 2297, 2881, 2898, 2904, 4042, 4045, 4048, 4055, 4067], - "dupes", - " duplicates", - [2, 7293, 17330], - [3, 232, 8], - [0, 3595, 6778, 2297, 5260, 1204, 6813, 1932, 7121, 25427, 25425, 25544, 4042], - [1, 2343, 17338], - "deduplicate", - "deduplicat", - [2, 17336, 6600], - [0, 0, 17339, 17340, 4139], - [0, 2307, 2228, 2239, 2234], - [0, 25425, 25436, 25550], - [1, 2343, 17343], - "is-obj", - [0, 17344, 17345, 17346, 2537], - [0, 25555, 12826, 824], - [0, 192, 5467, 6061, 6063, 16608, 4864, 25558, 4874, 2675, 2765, 2297, 2898, 4131, 91], - [0, 25425, 25436, 7177, 12825, 12826], - [1, 2343, 17348], - [0, 0, 0, 17349, 2537], - [0, 2297, 25425, 4193, 3212], - [1, 2343, 17351], - [0, 17353, 17359, 17360, 2523], - "json-ptr", - [0, 2215], - [3, 1715, 10], - "change-", - "adr", - "tracking", - [2, 17355, 17357], - [0, 8780, 1414, 1177, 2766, 2297, 25571, 2881, 2898, 1894, 4042, 25575], - [0, 25425, 25427, 11939, 5284], - [1, 2343, 17368], - "decision record", - "kewlr", - "any decision record", - [2, 17379, 17381], - "simple-assert", - "lcov-re", - [0, 9719, 17378, 17385, 2443], - "sult-merger", - [2, 17367, 17369], - [3, 1903, 16], - "rict", - [2, 17371, 17372], - "@js-temporal/polyfill", - [3, 1935, 15], - "ilenames", - [2, 17375, 17376], - [0, 1429, 1596, 2899, 3400, 3421, 4193, 4196], - [3, 25135, 11], - "chai util", - "al decision", - "deep equal", - "object equal", - [2, 17365, 17394], - [0, 25425, 16237], - [1, 2343, 17387], - [0, 17408, 17417, 13533, 4139], - "array-b", - "-byte-length", - [2, 2347, 17389], - [2, 17388, 17390], - "es-get-iterator", - "is-a", - " record", - "is-arguments", - "is-ar", - [2, 25135, 17401], - "ray-buffer", - [2, 17396, 17398], - "is-date-object", - " decision", - "gex", - "is-regex", - "is-s", - "hared-array-buffer", - [2, 17404, 17405], - [2, 6961, 7313], - [0, 2070, 3181, 4689], - "side-channel", - "-boxed-primitive", - [2, 4707, 17410], - "which-", - [2, 17412, 6910], - "typed-", - "typed-array", - [2, 17412, 17415], - [ - 0, 48, 53, 85, 87, 192, 5467, 16405, 1193, 1429, 1431, 1610, 1177, 1938, 1955, 2675, 2759, 2765, 1192, 2297, - 2878, 2881, 2900, 2923, 2990, 3150, 2899, 3697, 1894, 3758, 4257, 2924 - ], - "available-typed-arrays", - [1, 2343, 17427], - "to", - "has-proto", - "has-t", - [2, 17397, 17394], - "yped-arrays", - [2, 17422, 17424], - "software quality", - [0, 0, 7923, 17428, 4139], - [0, 8652, 2926, 25591, 6938, 25592, 25594, 25595, 25596, 2927], - "rehype-katex", - [1, 2343, 17431], - [0, 0, 0, 17432, 2487], - [0, 2927, 3925, 364], - [1, 2343, 17434], - [0, 17435, 17441, 17442, 2487], - [0, 25605], - "is-m", - "able-object", - [2, 4688, 17437], - [2, 17436, 17438], - "jsmd", - [0, 18073, 29457, 11976, 15288, 7677, 4039, 25609, 4481, 1984, 26108, 26131, 26132, 26124, 26104, 29233, 26123], - [ - 0, 6803, 6692, 1542, 2325, 9553, 25611, 13901, 5995, 25513, 1552, 3230, 7827, 3259, 14873, 3151, 3300, 3084, - 6650, 1416 - ], - [1, 2343, 17444], - [0, 0, 17445, 17446, 2537], - [0, 1999, 4579], - [0, 1111, 200, 1473, 1512, 7201, 7009], - "is-path-cwd", - "is-path-", - "inside", - [2, 17448, 17449], - [1, 2343, 17452], - [0, 17454, 17463, 17464, 2523], - "folders", - [0, 1999, 25625, 1676, 1209, 21104, 3932, 4435, 25623, 1511, 1525, 2727, 4025, 2179, 25624], - "directories", - "trash", - "unlink", - "cleaning", - "rmrf", - "friendly", - "gulpfriendly", - "filesystem", - [ - 0, 3519, 3421, 4481, 1429, 2763, 4389, 2675, 2899, 3259, 4193, 1177, 3260, 4039, 1787, 3203, 4246, 25635, 4474, - 25633, 1894, 4387, 1596, 1610, 2861, 4196, 91, 4874, 21106, 2990, 25629, 25634, 1431, 4232, 25632, 1938, 25628, - 25636, 1895, 1955, 13850 - ], - [0, 14872, 3766, 14873, 25638, 3259, 25639, 4246, 12593, 3243, 9381, 25640, 6147, 1747, 18035], - [1, 2343, 17466], - [0, 17467, 17469, 17470, 2537], - [0, 19185, 2071, 17471, 2807, 2822, 3183, 29943, 3527, 3530, 25648, 4300, 4763], - "temp-write", - [0, 554, 17212, 7637, 7892, 20374, 4891, 11112, 19706, 32765, 4494, 91], - [ - 0, 19748, 25658, 1227, 200, 25660, 4796, 13735, 4797, 11337, 25661, 6971, 6813, 1586, 2100, 5284, 671, 25663, - 25664, 18750, 6646, 23255, 3383, 20529, 553, 91, 25667, 25669, 17507, 664 - ], - "formatly", - [1, 2343, 17473], - [0, 0, 17476, 17478, 2487], - "in-range", - "time-", - [0, 1177, 2205, 25675, 3072], - "time-span", - [0, 1623, 3583, 12616, 3195, 25501, 25677, 17631, 25550, 25678, 25679, 25682], - "defer", - "out", - "timeout", - [1, 2343, 17483], - [0, 17486, 0, 17488, 2537], - "settimeout", - "tick", - [0, 3171, 4734, 1676, 25688, 3441], - "threshold", - [0, 7200, 6997, 6949], - [1, 2343, 17490], - [0, 17491, 17499, 17502, 2537], - [0, 1080, 1560, 1562, 16358, 25696, 14858, 1833, 1869, 2145, 25699, 2657, 2941, 3173, 3440, 3494, 4266, 1000, 4590], - "@vue/c", - "ompiler-sfc", - [2, 17492, 17493], - "callsite", - "deps-", - "deps-regex", - "is-c", - [0, 1414, 25710, 4216, 4255, 4342], - "ore-module", - [2, 17498, 17500], - [0, 5122, 1896, 27, 13527, 5130, 2663, 16196], - "patch-", - "patch-version", - [1, 2343, 17506], - [0, 17508, 17509, 17510, 2523], - "unused", - [0, 25717, 7810, 13055, 25718, 2141, 4507, 4763], - [0, 5517, 11976, 107, 5522, 28385, 27134, 36694, 24819, 9240, 2934, 4342, 4483, 36684, 4494, 91], - [0, 2934, 25723, 15237, 1781, 20443, 57, 1669], - [1, 2343, 17512], - [0, 17513, 17516, 17517, 2443], - [0, 25718, 25728, 1000], - "deprecate", - "deprecated", - [0, 1909, 2675, 2934, 2899, 3421, 4170, 4342, 1906], - [0, 25732, 1781, 25723, 2934, 20443], - [1, 2343, 17519], - [0, 0, 17520, 17521, 2523], - [0, 1503, 1192, 3130, 4255], - [0, 2934, 2663, 2940], - "is-relative", - [3, 9488, 17], - [1, 2343, 17525], - [0, 17530, 17531, 17532, 2487], - "cjs", - "detective-cjs", - [3, 9509, 10], - [2, 17528, 4354], - [0, 1413, 1437, 25743, 3440, 25745], - [0, 1366, 1414, 1909, 2934, 25748, 25749, 4193, 4342, 1906], - [0, 2934, 2663, 2942, 3073], - [1, 2343, 17534], - [0, 17535, 17536, 17538, 2537], - [0, 1676, 2941], - [0, 1177, 1903, 1958, 1970, 2759, 2934, 2948, 2899, 4170, 4342], - "indentation", - [0, 2934, 2663, 2944, 25757], - "identify", - "space", - [1, 2343, 17542], - [0, 17543, 17544, 17545, 2399], - [0, 1676, 2657, 2941, 3509], - [0, 2934, 3421, 1437, 2675, 2899, 1177, 2114, 4342, 25763, 3985, 2990, 192, 2829, 3995, 1982, 5467], - [0, 2934, 2663, 4082, 38], - "mm", - "egg-bin", - [1, 2343, 17549], - [0, 17550, 17552, 17553, 2443], - [0, 1676, 25771], - "ontributor", - [0, 1177, 1903, 1938, 1954, 1958, 1970, 2759, 2934, 2899, 4342], - [0, 2934, 2663, 2090, 2947, 25774], - [2, 1884, 1347], - [1, 2343, 17556], - [0, 17557, 17558, 17559, 2537], - [0, 3291, 3754, 25782, 1552, 4747, 1209, 4333, 2026, 1364, 25781], - [0, 1429, 1149, 2899, 4193, 4170, 4342, 1506], - [0, 12692, 3768, 6812, 1552], - [1, 2343, 17561], - [0, 17562, 17563, 17564, 2537], - [0, 25789, 1687, 1177, 25791, 25792, 2000, 25793, 2036, 2607, 2851, 2854, 3188, 4127, 4227, 4232, 4351, 25794], - [0, 1501, 25796, 1948, 25797, 4039, 4135], - [0, 1973], - "grunt-exec", - [3, 2300, 12], - [2, 17566, 2759], - [2, 2235, 2924], - [1, 2343, 17570], - [0, 17571, 17572, 17573, 2523], - [0, 9478], - [0, 1166, 4135, 25814, 4481, 1906], - [0, 25816, 15525, 3378, 4750, 3383, 6661, 25188, 1237], - [1, 2343, 17575], - [0, 0, 17576, 17587, 2537], - [0, 2861, 25821, 1317, 25822, 25823, 2768, 1776, 1209, 3152, 3736, 25825, 4019, 25826, 4545], - "@types/diff", - "gan.js", - [2, 12456, 17578], - "@types/nopt", - "all-", - "ibutors-cli", - [2, 10741, 17582], - [2, 17581, 17583], - [3, 1945, 18], - [3, 3463, 9], - [0, 7189, 6564, 6681, 6887, 614], - [1, 2343, 17593], - [2, 2036, 2091], - "image-", - [2, 17590, 11526], - "is-ci-cli", - [0, 0, 17594, 17596, 34352], - [ - 0, 4248, 2675, 2297, 2899, 4193, 1177, 25846, 4042, 25850, 25840, 4535, 2900, 2918, 2990, 25844, 25848, 25851, - 2897, 8850, 2891, 25843, 2881, 2912, 2895, 2910, 25853, 25838 - ], - "side-by-side", - [0, 25855, 3053], - "line-by-line", - [1, 2343, 17601], - "difftohtml", - "colorized", - [0, 0, 17602, 17603, 2399], - [0, 1317, 2064], - [0, 2967, 2965, 2966, 23119, 1871, 19728], - [1, 2343, 17605], - [0, 0, 17606, 17607, 2487], - [0, 20340], - [0, 2966, 25866, 6983, 1671], - "data-s", - [2, 14386, 3769], - [2, 17608, 17609], - [1, 2343, 17614], - [3, 1915, 23], - [2, 17612, 8861], - [0, 17624, 0, 17628, 4139], - "Directed Graph", - "directed", - " graph", - [2, 17616, 17617], - [2, 17616, 2218], - [3, 1718, 14], - "Directed", - "digraph", - "java", - [ - 0, 3420, 2714, 4390, 3532, 4248, 3348, 1437, 2020, 2742, 3478, 4207, 10761, 4747, 25871, 1680, 24004, 3483, - 4039, 4135, 1842, 2822, 3479, 4430, 25872, 2151, 2182, 2720, 3093, 25873, 13786, 25874, 1513, 2753, 2777, 3181, - 25875, 666, 2188, 3249, 27921, 91, 25878, 1595, 2200, 25879, 25880, 4174, 2704, 25881, 3393, 25884, 4025, 25886, - 4290, 4748, 25887, 692, 20312, 9322, 25888, 25891, 25892, 3386, 635, 25893, 26567, 4728, 643, 3397, 9479, 10744, - 4588, 16310, 25898, 25901, 16307, 25904 - ], - "java script", - "JavaScript", - "type script", - [0, 2968, 6646, 7117], - "vertex", - "Vertex", - "edge", - "Edge", - [1, 2343, 17638], - "graph theory", - "Graph Theory", - "graph ", - [2, 17636, 6956], - [0, 17639, 17646, 17650, 2487], - [0, 25910, 20314, 4484], - "weighted", - "Weighted", - "unweighted", - "Unweighted", - "adjacency", - "Adjacency", - [ - 0, 811, 8850, 816, 1009, 1011, 25917, 25920, 1429, 1414, 1437, 1595, 1610, 1177, 2151, 15843, 2070, 2205, 2228, - 2240, 2247, 2256, 2291, 2311, 2314, 25922, 2777, 25923, 25925, 21898, 3183, 2899, 25928, 3400, 3518, 25929, - 3541, 1862, 25930, 814, 4042, 4073, 4076, 4135, 4172, 4436, 4474, 91, 12247 - ], - "connectivity", - "cycle", - "acyclic", - [ - 0, 7236, 7303, 6885, 1623, 6965, 7025, 6898, 6932, 7258, 695, 7228, 6766, 7028, 6912, 57, 7121, 6962, 6968, 590, - 592, 5376, 7198, 6705 - ], - "traversal", - "depth", - "Depth", - [1, 2343, 17655], - [0, 0, 17682, 17684, 2537], - "breadth", - "Breadth", - " first search", - [2, 17652, 17658], - "dfs", - "DFS", - [2, 17656, 17658], - " search", - [2, 6395, 17663], - [2, 17656, 17664], - "bfs", - "BFS", - "algorithms", - [2, 17636, 17668], - "repre", - "sentation", - [2, 17670, 17671], - [2, 17636, 17672], - " matrix", - [2, 17647, 17674], - " list", - [2, 17644, 17676], - "adjacency ", - "matrix", - [2, 17678, 17679], - "node ", - [ - 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 1193, 1610, 1622, 1700, 1701, 1177, 1895, 20281, 1938, 1939, 1953, - 1955, 1982, 2203, 2675, 1192, 695, 25936, 2990, 3144, 3400, 1894, 4257, 4294, 4523, 2924 - ], - "node degree", - [0, 2924, 1194, 695, 6766, 7228, 1623, 7121], - [1, 2343, 17694], - "sparse graph", - "dense graph", - "directed ", - [2, 17688, 17648], - "acyclic graph", - [2, 17688, 17690], - "DAG", - "topo", - [0, 17703, 17707, 17708, 2537], - "topologic", - "topological", - "sorting", - "strongl", - "y connected components", - [2, 17698, 17699], - " digraph", - [2, 17640, 17701], - [0, 25946, 25948, 25944], - "weighted edge", - [2, 17688, 17704], - "structures", - [0, 3421, 4389, 3348, 1090, 1290, 2554, 4255, 91, 4874, 87, 25951, 25950], - [0, 2970, 25954, 3101, 18035, 1747, 1542, 13901, 1781], - " structure", - [2, 2382, 17709], - [3, 17610, 14], - [2, 17710, 591], - [2, 6957, 591], - [2, 17711, 591], - "in data structures", - [3, 17715, 17], - "DataStructure", - [2, 17717, 591], - [1, 2343, 17725], - "iterative", - "Node.js", - "CommonJS", - "UMD", - "esmodule", - [0, 17728, 17736, 17738, 4139], - "java.util", - "c++ stl", - [0, 25960, 15160, 25959], - "c++ std", - "Python collections", - "System.Collections.Generic", - "STL", - "stl", - "Collection", - "Collections", - [ - 0, 25964, 3421, 2070, 4389, 4400, 2080, 4039, 12694, 1804, 2554, 640, 4255, 1610, 25963, 25968, 15164, 25974, - 25969, 1705, 25972, 25967 - ], - "insertion", - [0, 25954, 2970], - "deletion", - "OOP", - [1, 2343, 17742], - [0, 17743, 17744, 17708, 2443], - [0, 23040, 25983, 25987, 25990, 25981, 25985], - [ - 0, 3421, 4389, 1087, 4193, 1090, 2080, 12694, 25995, 26000, 2554, 4255, 25963, 1389, 4092, 25992, 25996, 1537, - 25994, 25997, 1705, 25951, 25967 - ], - [1, 2343, 17746], - [0, 0, 17747, 17748, 2443], - [0, 1166, 26007, 26008, 26009, 26006, 26010, 26014, 3273, 26015, 4441, 1906], - [0, 2975, 26006, 26017, 8893, 1871, 17354, 1687, 2062, 2163, 9549, 9550, 3797, 26020, 6109, 2585, 3529, 19051], - [1, 2343, 17750], - [0, 17755, 6538, 17756, 2399], - "voice", - [2, 7659, 17751], - "backend-", - [2, 17753, 10057], - [0, 635, 9510, 26026, 1687, 3181, 3386, 3483, 4390], - [0, 3378, 3409, 2977, 200, 1687], - "product", - "productivity", - [1, 2343, 17760], - [0, 17761, 17762, 17771, 2523], - [0, 635, 9479, 643, 1458, 3386, 3483, 3727, 29698, 3917, 4135, 4174, 9455], - [0, 9516, 26037, 9515, 9449, 1437, 18248, 26035, 4384], - [2, 7659, 4729], - "lodash.s", - "nakecase", - [2, 17764, 17765], - "builders", - [2, 7659, 17767], - "formatters", - [2, 7659, 17769], - [0, 3378, 3409, 2977, 200, 9527, 2979], - [2, 7659, 1735], - [1, 2343, 17774], - [0, 17775, 6538, 17776, 2523], - [0, 635], - [0, 3378, 3409, 2977, 200, 3358, 2980, 26044], - [1, 2343, 17778], - [0, 0, 17779, 17780, 2537], - [ - 0, 48, 53, 5712, 5788, 87, 94, 8850, 10615, 1208, 1429, 1597, 26049, 1610, 32572, 2759, 1192, 25913, 26052, - 3183, 2899, 3400, 3421, 26053, 4005, 4039, 4042, 4484 - ], - [0, 7285, 7310, 6988, 6847, 5131, 7211], - [1, 2343, 17782], - [0, 17783, 17784, 17785, 2487], - [0, 2051, 2107, 10392, 26060, 2747, 3932, 814], - [0, 1509, 1177, 1889, 1895, 1954, 2022, 2899, 3421, 4193], - [0, 9753], - "cache-point", - [2, 9480, 6769], - "file-set", - [1, 2343, 17791], - "reduce-", - [0, 0, 17792, 17794, 2537], - [0, 11976, 5087, 4874, 8157, 1595, 1192, 91, 4579], - "without", - [0, 1595, 1541, 8309, 7193], - [1, 2343, 17796], - [0, 0, 0, 17797, 2487], - [0, 26072, 1823, 26073, 1936, 2814, 163, 26074, 89, 4500, 1002], - "walk-back", - [1, 2343, 17802], - "dmd-", - [3, 2475, 9], - [0, 17806, 17807, 17808, 4139], - "ample", - [2, 17801, 17803], - [2, 17800, 17804], - [0, 1525, 2992, 3170, 6479, 26379, 4745], - [ - 0, 5522, 107, 192, 5467, 442, 7677, 22839, 26081, 1610, 1177, 1895, 1953, 1955, 10964, 2675, 3211, 1894, 4135, - 91, 1984 - ], - [0, 671, 3358, 2989, 1177, 1894, 4320, 1501, 19269, 4354, 1671, 2649], - [1, 2343, 17810], - [0, 17811, 17812, 17814, 2537], - [0, 26087, 26090, 2752, 2753, 26092, 26095, 26099, 3478, 4094], - [0, 1503, 1702, 22845, 2990, 3074, 3421, 3697, 4237, 13351], - "jsdoc2md", - [0, 200, 5957, 3392, 9000, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921], - [1, 2343, 17816], - [0, 17817, 17820, 6226, 2487], - [0, 1486, 1511, 2017, 3077, 4038, 4726], - "agnostic", - "dnd", - [0, 13352, 4094, 13351], - [1, 2343, 17822], - [0, 17823, 17824, 2514, 4139], - [0, 26114, 26111, 5438], - [0, 26121, 26117, 10675, 26122, 10706, 4484], - "-protocol", - [2, 1730, 17825], - "jsonify", - [1, 2343, 17831], - "rpc", - "callbacks", - [0, 17832, 17833, 17834, 2523], - [0, 1209, 3183, 1387, 26129, 1549], - [0, 2899, 4193, 1177, 3215, 2759], - [0, 1098, 14576, 2947, 36, 5001], - "@ffmpeg-installer/ffmpeg", - [3, 1733, 16], - "mmon", - [2, 17836, 17837], - [1, 2343, 17840], - [0, 17841, 17842, 17843, 2487], - [0, 3459, 1594, 710, 1512, 3237, 1544, 1457, 26136, 4150, 2012, 3427, 26137, 23009], - [0, 2899, 1177, 2272, 4342], - [0, 6400, 5001, 4990, 36, 27, 200], - [1, 2343, 17845], - [0, 17854, 17855, 2514, 2537], - "@puppeteer/browsers", - [3, 13394, 12], - "ium-driver", - [2, 17847, 17848], - "geckodriver", - [2, 13391, 17850], - [2, 5680, 13392], - [2, 13391, 17852], - [0, 1457, 26144, 15767, 4729], - [0, 1509, 2899, 4170, 4193], - [1, 2343, 17857], - [0, 17858, 17860, 17861, 2537], - [0, 16166, 2070, 25923, 2822, 23444, 3006, 1209], - "posthog-node", - [0, 2228, 2273, 2283, 23466, 22081, 2305, 3752, 4193], - [0, 21779, 4745, 16166, 2228, 1541], - [1, 2343, 17863], - [0, 17864, 17865, 17866, 2537], - [0, 1144, 3249, 3539, 6477], - [0, 2228, 2240, 26158, 1906], - [0, 4796, 2070, 2228, 3001, 3529, 26160, 13017, 3209, 3005], - [3, 246, 8], - [1, 2343, 17869], - [0, 0, 17870, 2514, 2487], - [0, 1596, 1177, 1954, 1192, 1894, 4257], - [1, 2343, 17873], - "mecano", - [0, 17874, 17875, 17876, 2537], - [ - 0, 25190, 3088, 26169, 26172, 26173, 26175, 26178, 26179, 26180, 26181, 26182, 26183, 26184, 26187, 26189, - 26190, 26192 - ], - [0, 3310, 1187], - [ - 0, 3304, 36, 5122, 4990, 6400, 5001, 1594, 3171, 4030, 3212, 5592, 2658, 3088, 5995, 4967, 26196, 2665, 27, - 13333, 2671 - ], - "@balena/dockerignore", - "docker", - [1, 2343, 17880], - [0, 17882, 17883, 17885, 2537], - "docker-modem", - [0, 25377], - [ - 0, 1175, 1178, 1195, 1198, 14211, 1267, 26204, 1290, 26205, 1408, 1594, 1895, 2228, 13831, 2236, 2253, 2256, - 2281, 2283, 26208, 2291, 3198, 26210, 18463, 2311, 26212, 17568, 2675, 2990, 3006, 2899, 1894, 26213, 12936, 91, - 4535, 2924, 4681 - ], - "docker.io", - [0, 26216, 26217, 13901, 26218], - [1, 2343, 17887], - [0, 17888, 7923, 2514, 2443], - [0, 1170, 1676, 26223, 4747], - "@bevry/pluginloader", - "ambi", - [1, 2343, 17894], - "ansistyles", - "bal-util", - [0, 17925, 17932, 17933, 2537], - "caterpillar", - "docmatter", - "-baseplugin", - [2, 1737, 17897], - "eachr", - "envfile", - "errlop", - "-grouped", - [2, 13771, 17902], - [2, 12598, 17903], - "extendr", - "extract-opts", - "ignorefs", - "xtorbinary", - [2, 8828, 17908], - "jschardet", - "lazy-require", - [3, 3732, 9], - "title", - [2, 17912, 17913], - "query-engine", - "rfc-log-levels", - "safefs", - "ps", - "safeps", - "scandirectory", - "taskgroup", - "typechecker", - "unbounded", - "watchr", - [0, 1595, 1676, 2071, 26228, 4747], - "@bevry/", - [3, 17583, 12], - [2, 9787, 17927], - [2, 17926, 17928], - [2, 15340, 6706], - "kava", - [ - 0, 1178, 14080, 1253, 1264, 1267, 1734, 1767, 1177, 1903, 1938, 1939, 1954, 1958, 1966, 1970, 1192, 3446, 26230, - 4135 - ], - [0, 26232, 26234, 6698, 3015, 671, 4749, 3378, 9654, 1965, 1644], - "projectz", - "valid-", - [2, 17935, 7204], - [1, 2343, 17941], - " and deployment", - [2, 6147, 17938], - " manage", - [0, 0, 0, 17949, 2537], - "ment system", - [2, 17940, 17942], - [2, 1563, 17943], - "dms", - [2, 1746, 17943], - " agnostic", - [2, 1351, 17947], - [0, 5260, 7268, 614], - "templating", - [2, 11607, 5001], - [1, 2343, 17953], - [0, 0, 0, 17954, 2537], - [0, 5194, 5260, 7268, 614], - [1, 2343, 17956], - [0, 0, 0, 17957, 2399], - [0, 26249, 3426], - [1, 2343, 17959], - [0, 0, 0, 17960, 2537], - [0, 26249, 1420], - [1, 2343, 17962], - [0, 0, 0, 17963, 2523], - [0, 26249, 26258], - "docsify", - "docsify.js", - "tabs", - [1, 2343, 17968], - [0, 0, 0, 17969, 2537], - [0, 26249, 1675], - [1, 2343, 17975], - "@textlint/markdown-to-ast", - "anchor-markdown-header", - "section", - [2, 9787, 17973], - [0, 0, 0, 17976, 2523], - [0, 26249, 19400], - "bitbucket", - "gitlab", - "ghost", - [1, 2343, 17981], - [0, 0, 0, 17983, 2523], - [2, 20413, 4699], - [0, 26249, 3033], - "doct", - "rine-temporary-fork", - [2, 17984, 17985], - [1, 2343, 18006], - "globals-docs", - "konan", - [2, 3138, 14510], - "micromark-", - "util-c", - "haracter", - [2, 17992, 17993], - [2, 17991, 17994], - "filepath", - [2, 13721, 17996], - [3, 3999, 9], - "ference-links", - [2, 17998, 17999], - "unist-", - [2, 18001, 9381], - "vfile-", - [2, 18003, 16237], - "vfile-sort", - [0, 0, 0, 18010, 2523], - "chdir", - "-schema", - [2, 1745, 18008], - [0, 26249, 14741], - "jsdoc3", - "nums", - [1, 2343, 34449], - [0, 26249, 3038], - [1, 2343, 18021], - "big-integer", - "-search-bounds", - [2, 17180, 18017], - "int64-buffer", - "priorityqueuejs", - [0, 0, 0, 18022, 34352], - [0, 26249, 3040], - "semaphore", - [1, 2343, 18025], - [0, 0, 0, 18026, 2537], - [0, 26249, 26287], - [1, 2343, 18029], - "cosmosdb", - [0, 0, 0, 18030, 2537], - [0, 26249, 26292], - "cosmos db", - "document ", - [1, 2343, 18034], - [0, 0, 0, 18038, 2537], - "database", - [2, 18032, 18035], - "nosql", - [0, 1209, 26249, 7268, 614], - [1, 2343, 18040], - [0, 0, 0, 18041, 2523], - [0, 26249, 26301], - "crowdin-cli", - [3, 2694, 9], - "gifsicle", - [2, 18043, 18044], - "jpegtran", - [2, 18043, 18046], - "png", - "optipng", - [2, 18043, 18049], - [2, 18043, 4361], - "tcp-port-used", - [1, 2343, 18054], - [0, 0, 0, 18057, 2537], - "tree-node-cli", - [2, 15862, 1868], - [0, 26249, 26307], - [1, 2343, 18060], - "glob-promise", - [0, 0, 0, 18062, 2537], - "websites", - [0, 26249, 3053], - "open source", - [1, 2343, 18065], - [0, 0, 0, 18066, 2399], - [0, 26249, 7906], - [1, 2343, 18075], - [2, 15774, 1722], - "-languages", - [2, 6327, 18069], - "to-vfile", - [2, 9406, 2741], - "lru.min", - "offline-search", - [0, 0, 0, 18076, 2537], - [0, 26249, 1698], - [1, 2343, 18078], - [0, 0, 0, 18079, 2537], - [0, 26249, 3061], - [2, 1611, 1388], - "height", - "classlist", - [1, 2343, 18084], - [0, 0, 0, 18085, 2523], - [0, 26249, 3063], - [1, 2343, 18088], - "domelementtype", - [0, 0, 0, 18090, 2523], - "entities", - [0, 26249, 3065], - [1, 2343, 18092], - [0, 18093, 0, 18094, 2537], - [0, 22983, 22985], - [0, 26249, 1283], - [1, 2343, 18096], - [0, 0, 0, 18098, 2523], - "raster", - [0, 26249, 6925], - [1, 2343, 18100], - [0, 0, 0, 18101, 2537], - [0, 26249, 3071], - "qunit-tap", - "lodash.sample", - "paths", - "ncludepaths", - [2, 8851, 18105], - [1, 2343, 18109], - "math", - [0, 18111, 18115, 18116, 2523], - "mathml", - [0, 2353, 998, 1856, 17003, 26351, 26350, 26349], - "secure", - "sanitizer", - "purify", - [0, 3421, 4389, 2675, 26357, 1177, 10824, 26358, 2990, 15797, 15804, 15793, 15801], - [0, 3073, 2942, 1676, 1409, 4709], - [1, 2343, 18118], - [0, 18119, 18120, 18121, 2523], - [0, 20040, 16232], - [0, 1906, 1166, 4481, 4294], - [0, 3656, 200, 8429, 6876, 7169, 5511, 2568, 20597, 2089, 20598, 6574, 3073, 6807, 7009, 8634], - [1, 2343, 18123], - [0, 18125, 18126, 18127, 2537], - [3, 4257, 9], - [0, 1107, 1477, 4208, 4294, 4726], - [0, 4874, 4290, 26371, 4481, 16041, 1906], - [0, 3073, 2942, 6807, 200, 7009, 6048, 7201, 4166, 3076, 26375, 26376, 6811, 8634, 3730, 10036, 7521], - [1, 2343, 18129], - [0, 18130, 18131, 18133, 2523], - [0, 26383, 1676, 26385, 4038, 26388], - [ - 0, 192, 5467, 26390, 13757, 24030, 1177, 1881, 1895, 19527, 1938, 1955, 2151, 2675, 2742, 3421, 1894, 3752, - 4384, 91 - ], - "expand", - [0, 6807, 3073, 15227, 202], - [1, 2343, 18136], - "interpolation", - [0, 0, 18138, 18139, 2523], - "substitution", - [0, 26398, 4874, 2228, 2240, 2247, 2253, 2256, 24293, 2273, 2281, 2283, 26399, 26400, 2765, 4474, 91], - [0, 3073, 2942, 6807, 1388], - [1, 2343, 18141], - [0, 0, 18144, 18146, 2399], - "archive-type", - "ext-name", - [0, 26406, 1894, 91], - "filenamify", - [0, 18108, 3080, 26408], - "is-zip", - [2, 4551, 1398], - [1, 2343, 18150], - [0, 18151, 18152, 18153, 2487], - [ - 0, 1797, 1704, 26413, 1149, 1676, 7077, 2026, 26416, 1309, 1362, 2712, 3361, 1364, 4148, 26417, 26420, 26423, - 26426, 26429, 4547, 26435, 26438, 26443, 26448 - ], - [ - 0, 3421, 1429, 2228, 2297, 2899, 4193, 4707, 1177, 1596, 2240, 26453, 4342, 1389, 1719, 4196, 2298, 2900, 2291, - 1575, 26455, 26457, 2040, 2236, 2300, 2871, 26459, 2283, 26462, 2281, 25407, 26465, 2881, 25410, 26466, 2895, - 26470 - ], - [ - 0, 5122, 7096, 4030, 5592, 2026, 4031, 2934, 1303, 1965, 12593, 3259, 18037, 1550, 3230, 26472, 3243, 25638, - 14873, 4217, 26473, 5130, 5131, 26474 - ], - [1, 2343, 18155], - [0, 18156, 18159, 12113, 2523], - [0, 9673], - "repository", - "tarball", - [0, 1389, 1839, 4384], - [1, 2343, 18161], - [0, 18162, 18163, 18164, 34352], - [0, 26484], - [0, 4494, 2675, 4400, 1177, 1209, 1701, 4474, 91, 4874, 4870, 6494, 192, 26488, 26486, 13789, 25298, 5467], - [0, 18035, 1747, 1804, 26490, 21687, 2117, 6671, 2703, 26492, 26493, 1388, 1999], - [1, 2343, 18166], - [0, 0, 18167, 18168, 2523], - [0, 4874, 1317, 668, 3127, 3188, 1894, 4384, 4483, 4508], - [0, 6879, 6650, 2325], - [1, 2343, 18175], - "import-from", - "parse-c", - "md-args", - [2, 18171, 18172], - [2, 4182, 4562], - [0, 0, 18176, 18177, 2399], - [0, 6373, 968, 26503, 4042, 4057, 91, 1983, 1984, 26504, 25079, 26507], - [0, 26509, 26510, 26511, 26512, 26513, 26514, 26516, 26517, 26520], - [1, 2343, 18179], - [0, 18180, 18184, 18187, 34352], - [0, 1149, 1326, 26528, 3263], - [3, 3369, 12], - "ckage-data", - [2, 18181, 18182], - [0, 1596, 2759, 3188, 2899, 3202, 4170], - [3, 16398, 19], - [2, 18185, 18182], - [ - 0, 158, 1398, 26532, 3729, 24800, 16662, 16661, 21881, 20637, 18048, 20639, 12712, 26533, 26534, 6870, 26535, - 1504, 14908, 23119, 26536, 26537, 26539, 9135, 26541, 26542, 26543, 6792, 13615 - ], - [1, 2343, 18189], - [0, 18190, 18191, 18193, 2523], - [0, 26548, 26551, 16053, 25874, 1519, 1522, 26552, 25190, 2934, 26553, 3445, 3762, 16057, 17798], - [0, 2829, 26192, 3310, 26556, 1187], - "dox", - [0, 3088, 36, 27, 13333, 2671, 5995, 2665, 3304, 5122], - [1, 2343, 18195], - [0, 18196, 18197, 18198, 4139], - [ - 0, 1437, 1513, 1676, 1836, 16473, 25623, 26563, 2089, 2149, 2572, 26565, 2584, 1161, 2822, 26567, 26568, 3188, - 3467, 3718, 12443, 9340, 3992, 3999, 26572, 26573, 4449, 18071, 4549, 18002, 4555, 12447, 3348, 12449, 4707, - 4728, 26574, 4747 - ], - [ - 0, 26578, 5245, 12396, 7637, 26579, 26581, 4874, 6520, 9315, 7819, 26584, 22092, 4892, 1610, 19878, 4207, 4294, - 91, 4579 - ], - [0, 1783, 26586, 26587, 5472, 1745], - "spawn-", - "please", - "spawn-please", - [1, 2343, 18204], - "@types/temp", - [0, 18205, 18206, 18207, 4139], - [0, 5012], - [0, 442, 816, 6373, 1317, 19839, 1567, 1177, 1894, 23535, 4042, 4228, 4232, 1984], - [0, 1871, 26597, 12938, 17950, 15139], - [1, 2343, 18209], - [0, 18210, 18211, 18212, 2487], - [0, 4729, 1170, 2832, 4484, 2018, 1209, 2738, 7665, 18730], - [0, 1177, 4508, 9241, 91, 4874, 3400, 13204, 4870, 1011, 10638, 26606, 1009], - [ - 0, 26608, 21009, 91, 1723, 10339, 17623, 5284, 26611, 26614, 26617, 26620, 26622, 24090, 26624, 26626, 16697, - 26628, 26631, 1745, 26632, 26633, 3091 - ], - [1, 2343, 18214], - [0, 18215, 18216, 18217, 2537], - [0, 1437, 2051, 2205, 4600, 3249, 3505, 4300], - [0, 2228, 2899, 4170, 2240], - [0, 1370, 2323, 17461, 21779], - [1, 2343, 18219], - [0, 0, 18221, 18222, 2537], - "bplist-parser", - [0, 8780, 4874, 1166, 2215, 21537, 4400, 4481, 1906], - [0, 7148, 3188, 7048, 17455, 17453, 7204, 6857, 3403, 5933, 7029, 26647, 26648, 6899, 7147, 2150, 17462, 16503], - [1, 2343, 18224], - [0, 0, 0, 18238, 2523], - "alex", - [3, 14237, 14], - "bjs", - [2, 18226, 18227], - [2, 1884, 2081], - "fbjs-scripts", - "gulp-d", - "erequire", - [2, 18231, 18232], - "stats", - [2, 18234, 4408], - "webpack-st", - [2, 18236, 2187], - [0, 7048], - "draftjs", - "typed-binary", - "richtext", - [1, 2343, 18243], - [0, 18244, 18245, 18246, 2537], - [0, 10780, 1139, 1301, 1362, 26657, 2866, 26658, 3507, 4545, 4736], - [0, 4874, 1389, 26662, 26663, 1177, 26664, 2899, 1241, 91, 4535], - [0, 20697, 1936, 26666, 4718, 1783, 5980], - [1, 2343, 18249], - "just-extend", - [0, 18251, 18257, 18261, 2487], - [3, 5371, 20], - [ - 0, 7709, 15288, 26675, 26677, 26678, 26681, 26684, 26412, 26685, 29310, 1091, 1309, 1437, 8536, 6809, 1481, - 21847, 23872, 2822, 2863, 3000, 3203, 3260, 3310, 3363, 3509, 3519, 3547, 3951, 4094, 4164, 4213, 4246, 4521, - 17142, 1002 - ], - "ring", - "inline-string", - [2, 18250, 18253], - [2, 18250, 2278], - "cypress-", - [ - 0, 28091, 26688, 9687, 26690, 28084, 28092, 20886, 26694, 6494, 7637, 5542, 12461, 9240, 1009, 1011, 1177, 1895, - 1955, 2150, 1192, 3403, 1894, 4232, 4342, 4468, 4469, 4480, 91 - ], - "file-upload", - [2, 18256, 18258], - [2, 2918, 4195], - [ - 0, 5995, 5592, 4030, 6710, 91, 18035, 30967, 28976, 6354, 28986, 29686, 26147, 29690, 13126, 7827, 25638, 3259, - 4521, 12659, 1303, 5165, 18258, 13901, 6949, 29732, 29735, 30183, 6688, 30184, 33629, 14344, 29744, 3097 - ], - [1, 2343, 18264], - "dragndrop", - [0, 0, 18268, 18269, 2523], - " and drop", - [2, 7518, 18265], - [3, 12322, 11], - [ - 0, 19181, 26706, 578, 583, 587, 32379, 26707, 4870, 4874, 4880, 4883, 1009, 1011, 1497, 1637, 1177, 4828, 1961, - 1209, 3286, 3561, 3566, 3613, 26710, 26712, 1894, 89, 3824, 4164, 9348, 26713, 4493, 91 - ], - [ - 0, 181, 26709, 13083, 4403, 26715, 26717, 89, 26720, 91, 5284, 6400, 4967, 6073, 181, 26726, 1487, 17758, 26727, - 4627 - ], - [1, 2343, 18271], - [0, 0, 18273, 2514, 2523], - "tsutils", - [0, 19987, 19989, 19988, 2012, 7115], - [1, 2343, 18283], - "dts-critic", - [3, 7935, 17], - [2, 18276, 594], - [2, 15438, 57], - [2, 18276, 18278], - "versions", - [2, 4524, 18280], - [2, 18276, 18281], - [0, 0, 18291, 18292, 2487], - [3, 15891, 13], - [2, 18284, 4299], - [3, 7729, 14], - "able-str", - "ingify", - [2, 18287, 18288], - [2, 18286, 18289], - [0, 4874, 1009, 1011, 7677, 1165, 1414, 1177, 1883, 1915, 2832, 26743, 2278, 4320, 5978, 91, 1983, 26744, 1984], - [0, 26741, 26746, 1932, 26747, 590], - [1, 2343, 18294], - [0, 18296, 11686, 18297, 2537], - [2, 11513, 2527], - [0, 3368], - [0, 1783, 26755, 6892], - [1, 2343, 18299], - [0, 18300, 18301, 18302, 2523], - [0, 1139, 18089, 26761, 26762, 26763, 26764], - [ - 0, 5583, 811, 816, 10615, 1111, 1317, 1414, 1429, 1177, 1903, 2026, 2193, 2600, 2805, 5944, 3112, 7612, 3114, - 26767, 26770, 26772, 26774, 26776, 7617, 7648, 2899, 26777, 3278, 4042, 4167, 4342 - ], - [0, 1783, 57, 20627, 3105, 26780], - [1, 2343, 18304], - [0, 0, 18305, 18306, 4139], - [0, 5328, 1166, 5946, 3165, 4232, 4255], - [0, 1783, 3105, 26780, 10345, 26786], - [1, 2343, 18308], - [0, 0, 18309, 18310, 2523], - [0, 5583, 816, 10615, 1414, 1177, 1903, 3105, 7648, 2899, 4042], - [0, 26780, 3105, 1783], - [1, 2343, 18342], - "dw-neit-", - [2, 18312, 1512], - "dw-neit-c", - [2, 18314, 11163], - [2, 18315, 3007], - [2, 18312, 45], - [3, 1793, 11], - "-des", - "ign-react-slick", - [2, 18319, 18320], - [2, 18318, 18321], - "rc-co", - "mponent", - [2, 12796, 9948], - [2, 18324, 18325], - [2, 18323, 18326], - [2, 18312, 18327], - [3, 18328, 21], - "e-observer", - [2, 15557, 18330], - [2, 18329, 18331], - [2, 18329, 11194], - [2, 18329, 11184], - [3, 18334, 22], - [2, 18335, 13168], - [3, 18328, 12], - "ascader", - [2, 18337, 18338], - [2, 18337, 5449], - [3, 18328, 13], - [0, 0, 18309, 18352, 4139], - "llapse", - [2, 18341, 18343], - [3, 18328, 11], - "dialog", - [2, 18345, 18346], - [3, 18347, 12], - [2, 18348, 9997], - [3, 18349, 13], - [2, 18350, 11206], - [0, 26780, 3105, 1783, 3113, 26796, 26799, 26800], - "field-form", - [2, 18345, 18353], - [2, 18345, 158], - [3, 18355, 12], - [2, 18356, 1020], - [2, 18357, 11211], - "mentions", - [2, 18345, 18359], - [3, 18360, 14], - [2, 18361, 11215], - [3, 18360, 12], - [2, 18363, 11218], - [2, 18345, 9044], - [1, 2343, 18395], - "pagination", - [2, 18345, 18367], - [3, 18368, 12], - [2, 18369, 9947], - [2, 18369, 10148], - [2, 18345, 6882], - [3, 18372, 12], - [2, 18373, 11227], - "segmented", - [2, 18345, 18375], - [3, 18376, 13], - [2, 18377, 4021], - [3, 18376, 12], - [2, 18379, 10205], - [2, 18379, 11234], - [2, 18379, 10222], - [2, 18345, 17966], - [3, 18383, 12], - [2, 18384, 11241], - [2, 18384, 11243], - [2, 18345, 614], - [3, 18383, 14], - [2, 18388, 2699], - "ooltip", - [2, 18384, 18390], - [2, 18386, 11245], - [3, 18387, 12], - [2, 18393, 184], - [0, 18396, 18397, 18398, 2537], - [0, 1525, 1792, 2051, 2600, 3524, 4001, 26806, 4431, 4449], - [0, 1596, 2759, 26808, 4255, 4389], - [0, 1783, 2636, 6270, 1283], - [1, 2343, 18400], - [0, 0, 18401, 18403, 2537], - [0, 4874, 1414, 1437, 1894, 3985, 3998, 4294, 4505, 91, 1906], - "control flow", - [0, 14903, 1783, 26815, 176, 15847, 2585], - [1, 2343, 18405], - [0, 0, 18406, 18408, 2443], - [0, 17212, 4874, 4880, 4883, 33492, 668, 89, 3824, 3857, 15728, 26827, 91, 188], - "zrender", - [0, 1783, 33510, 89, 3698, 1219, 188, 12072, 8588, 23332, 33512, 3857, 1936], - "@lang/rollup-plugin-dts", - [1, 2343, 18414], - [2, 14678, 17116], - [2, 9816, 1974], - "apache", - [0, 18416, 16487, 18417, 2537], - "data-viz", - [0, 1537, 26835, 2226, 26836, 26837, 26838, 3183, 26839, 22230, 4001, 26840, 22557], - [ - 0, 26786, 20627, 1739, 1746, 1745, 26842, 156, 4017, 3966, 1783, 5980, 1932, 9591, 11043, 4001, 26843, 8924, - 3902, 176, 26845, 26847, 10631, 6033 - ], - [1, 2343, 18419], - [0, 18429, 18436, 18437, 2523], - [2, 6038, 1541], - "gulp-e", - "xclude-gitignore", - [2, 18421, 18422], - "gulp-rep", - [2, 18424, 2902], - "gulp-tap", - "linez", - "os-locale", - [0, 3167, 27252, 18578, 26852, 28035, 28719, 28722, 26987, 4290], - [3, 5248, 9], - "t-stream", - [2, 18430, 18431], - [3, 11320, 11], - "ugh2", - [2, 18433, 18434], - [ - 0, 442, 19344, 1091, 1166, 1414, 26854, 1177, 1942, 1953, 1964, 1982, 26855, 2205, 2822, 26696, 2858, 3105, - 26770, 26776, 7617, 17250, 17269, 3400, 4409, 4452, 91, 2924, 4677 - ], - [0, 1783, 671, 5980, 26859, 3124], - "@types/vinyl", - "-fs", - [2, 18438, 18439], - [1, 2343, 18445], - "fix", - "enforce", - "gulpplugin", - [0, 18446, 18447, 18448, 2399], - [0, 1525, 1696, 2687, 2822, 2858, 26865, 3124, 3105, 3181, 26866, 25648, 27921], - [0, 1166, 17269, 1906], - [0, 1783, 3124, 200, 13326], - [1, 2343, 18450], - [0, 0, 18451, 18452, 2537], - [ - 0, 5517, 26873, 26876, 16607, 6063, 6065, 16608, 16612, 1448, 20627, 1610, 12607, 668, 26739, 1177, 2600, 3105, - 26878, 26880, 26881, 4039, 4131, 23878, 4484, 91 - ], - [0, 1783, 26885, 1936], - [1, 2343, 18454], - [0, 18457, 18465, 6604, 2537], - "keepalive", - [2, 4575, 18455], - [ - 0, 9569, 9573, 7610, 9577, 9548, 9568, 9547, 2745, 9556, 9565, 9558, 9560, 9552, 9562, 9566, 3023, 3032, 9563, - 3105, 3114, 9580, 9584, 5961, 9554, 4110, 9550 - ], - "aliasify", - "backport", - [3, 2250, 18], - [2, 18460, 3227], - "run", - "grunt-run", - [2, 4431, 4226], - [0, 1389, 1448, 2070, 9588, 2899, 9586, 4255, 4257], - [1, 2343, 18467], - [0, 18468, 0, 2514, 2537], - [0, 1804, 26895], - [1, 2343, 18470], - [0, 18471, 0, 6260, 2399], - [0, 1282, 26902, 2926, 3060, 3070, 3744, 26906, 3911, 3935, 26908, 4649], - [1, 2343, 18474], - [2, 8243, 3038], - [0, 18475, 18476, 18477, 4139], - [0, 97, 26915, 25212, 26917, 13746, 26921, 4127, 15918, 26922], - [ - 0, 53, 13052, 5825, 83, 87, 94, 19961, 6503, 1009, 1011, 1145, 1195, 1414, 1503, 1700, 26703, 1854, 1177, 1895, - 1903, 1938, 1951, 1953, 1955, 1958, 2024, 11425, 2061, 2070, 2323, 2338, 2036, 26924, 2297, 2895, 2900, 2904, - 2923, 4922, 2925, 3188, 2899, 3200, 26925, 26927, 26930, 26932, 26933, 26935, 1894, 3729, 4193, 26940, 4441, - 4474, 91, 2924, 26941 - ], - [0, 18108, 26944, 5746, 26934, 26945, 57, 7256, 6988, 14642, 26946, 26947, 17679, 2275], - [1, 2343, 18485], - "lazy-val", - "dmg-builder", - "builder-", - [2, 18481, 614], - "builder-lib", - [2, 10735, 18483], - [0, 18486, 18489, 2514, 2399], - [0, 6641, 26956, 13651], - "-runtime", - [2, 18482, 18487], - [0, 2899, 2924], - "-ci", - "@types/is-ci", - [1, 2343, 18504], - "nsis", - "dmg", - "msi", - "setup", - "Windows", - "OS X", - "MacOS", - "Mac", - "appx", - "snap", - "flatpak", - [0, 0, 18505, 18506, 34352], - [0, 2899, 4255], - [0, 3135, 26963, 26965], - [1, 2343, 18515], - "asar", - [2, 8243, 18508], - "notarize", - [2, 8243, 18510], - "osx-sign", - [2, 8243, 18512], - [2, 8243, 14566], - [0, 18516, 18519, 18520, 2537], - [0, 9363, 9315, 26972, 23289, 12429, 3167, 26981, 26983, 26985, 26986, 26987, 26990], - "-windows-exe", - [2, 1615, 18517], - [0, 4874, 1414, 26992, 668, 17232, 23276, 2581, 3140, 26993, 1894, 3985, 3998, 4072, 4505, 91, 1906], - [0, 6892, 1783, 26885, 26995, 26564, 1644, 5341, 1633, 23266, 6435, 614], - "galactus", - [3, 2179, 12], - "info", - [2, 18522, 18523], - "junk", - "author", - "parse-author", - "rcedit", - [2, 27093, 33977], - [1, 2343, 18531], - [0, 18532, 18533, 18534, 2523], - [0, 12396, 9363, 23247, 23289, 27003, 27006, 23254, 4555, 12449], - [0, 4874, 23262, 1414, 2581, 2588, 3137, 27008, 27010, 1894, 3985, 3998, 4505, 91, 1906], - [0, 23266, 26564, 26995, 2587, 23267, 614, 6435, 1783, 1936], - [3, 8256, 10], - "ownload", - [2, 18535, 18536], - [1, 2343, 18539], - [0, 0, 18541, 18542, 2487], - "home-path", - [0, 1091, 10738], - [0, 2382, 27017, 27018, 1623], - [1, 2343, 18544], - [0, 18546, 0, 18547, 2523], - "wonderful-fetch", - [0, 27073, 27076], - [0, 27078, 2325, 5576, 24093, 27080, 27081, 27083, 27084, 3143, 27085, 18037], - [1, 2343, 18549], - [0, 18550, 18553, 18554, 2537], - [0, 18529, 33978, 33980, 33981, 33983, 33990, 33998, 34001, 27092, 27094, 26256, 27472, 27096, 4484], - "-processor", - [2, 6870, 18551], - [ - 0, 5087, 27098, 4874, 1130, 1145, 1398, 2651, 2675, 27099, 1192, 3502, 1894, 3729, 3923, 4039, 4393, 4468, 4469, - 4474, 4487, 27101, 91, 1002, 614, 2924, 4677, 4681 - ], - [ - 0, 2150, 17462, 27103, 3150, 3144, 2090, 6771, 2944, 3151, 27105, 4607, 1973, 5472, 3212, 27106, 27108, 27110, - 27111, 27112, 27113, 27114, 27119 - ], - "grunt-banner", - [1, 2343, 18557], - [0, 0, 18558, 18559, 2523], - [ - 0, 5535, 5366, 5087, 27124, 19446, 4874, 1009, 1011, 1317, 1610, 1177, 1895, 1939, 1955, 2024, 27125, 1192, - 3044, 3057, 3117, 27126, 13824, 19445, 27127, 3467, 1894, 4039, 4042, 4069, 4073, 4075, 4201, 4468, 4474, 4484, - 91 - ], - [0, 7906, 27130, 2325, 6681], - [1, 2343, 18567], - "@vue/comp", - "onent", - "iler-utils", - [2, 4312, 18563], - [2, 18562, 18564], - [2, 18561, 18565], - [0, 0, 18568, 18577, 2523], - [0, 1429, 2323, 4193, 27136, 2463, 4196, 2447, 2436, 2839], - "algoliasearch", - "vue-jsx", - [2, 1226, 18570], - [3, 1280, 9], - [2, 17006, 18487], - [2, 18572, 18573], - "cp-cli", - [3, 17554, 15], - [0, 2325, 27138, 2869, 13901], - [2, 27009, 12442], - "lemefe", - [2, 18576, 18579], - [3, 2095, 9], - "gulp-cssmin", - "-editor-middleware", - [2, 8427, 18583], - [3, 3112, 13], - "hain", - [2, 18585, 18586], - [1, 2343, 18600], - "version-cli", - [2, 9951, 18589], - "transl", - [2, 18591, 6917], - "uppe", - "rcamelcase", - [2, 18593, 18594], - [3, 4645, 13], - "es2015-co", - [2, 18597, 14717], - [2, 18596, 18598], - [0, 18601, 18602, 18603, 4139], - [0, 25911, 3923], - [0, 1329, 15990, 1596, 1177, 2759, 2899, 4170], - [0, 2150, 3151], - [1, 2343, 18605], - [0, 0, 18606, 18607, 2523], - [0, 2025, 2899, 2228, 2240, 2300, 2273, 3760], - [0, 3151, 1973, 3101, 2041, 7046, 1398], - [1, 2343, 18617], - "brorand", - "hash.js", - "hmac-drbg", - "istic-assert", - [2, 6907, 18612], - [3, 18613, 13], - [2, 1619, 594], - [2, 18614, 18615], - [0, 0, 18618, 2514, 2537], - [0, 2899, 4170, 640], - "EC", - "Elliptic", - "curve", - "Cryptography", - [1, 2343, 18624], - [0, 8856, 7938, 7939, 2487], - [1, 2343, 18626], - [0, 0, 18628, 18630, 2523], - "@ladjs/consolidate", - [ - 0, 811, 8850, 816, 13789, 7892, 1166, 27163, 1532, 1677, 27164, 27166, 2020, 2205, 2709, 27171, 18183, 27168, - 3919, 11891, 4042, 4057, 4060, 13781, 27162, 4481, 4507, 91, 1906, 4748 - ], - "@ladjs/i18n", - [0, 200, 20052, 614, 6435, 1383, 6478, 1523, 3924, 3157, 27173, 27174, 57, 5675, 6802, 6847, 8429, 7201], - [1, 2343, 18638], - "get-paths", - "juice", - "preview-email", - "@jimp/core", - "-sendgrid", - [2, 3361, 18636], - [0, 0, 18642, 18644, 2537], - "lad", - "lass", - "mail", - [0, 4856, 6503, 4874, 1429, 1540, 2899, 91, 2924, 4677], - "mailchimp", - [0, 1698, 6899, 2051, 1496, 3048, 1388], - "mailgun", - "mandrill", - "moonmail", - "postmark", - "sendgrid", - [1, 2343, 18651], - [0, 0, 18652, 2514, 2537], - [0, 27184, 2759], - [1, 2343, 18654], - [0, 18662, 18663, 18664, 2537], - [3, 7639, 9], - "ilparser", - [2, 18655, 18656], - "mtp-server", - [2, 5051, 18658], - "mailparser", - "smtp-server", - [0, 1457, 1525, 1676, 2226, 16085, 27189, 3170, 27190, 27191], - [0, 19181, 442, 27194, 10723, 5245, 8778, 4874, 27196, 1414, 1177, 1938, 1953, 2203, 2899, 1894, 3980, 4452, 91], - [0, 2947, 12479, 2090, 13755, 5351, 5353, 1179, 1783, 5352, 3160, 4745], - [1, 2343, 18672], - "yam", - "sane", - "dag-map", - "p-defer", - "tree-sync", - "console-ui", - [0, 18674, 0, 2514, 2399], - "is-git-url", - [0, 27202, 13223, 2674, 27203, 27206, 4039, 4135, 4390, 4449], - "quick-temp", - [1, 2343, 18677], - [0, 18680, 18681, 2514, 4139], - "content-tag", - "core-object", - [0, 4590, 1676, 3164, 3494], - [0, 2899, 1177, 2759, 4342, 1954, 1938, 1958, 1903, 1948, 1970], - [1, 2343, 18696], - "capture-exit", - [2, 26872, 33868], - "stew", - [2, 1379, 18685], - [2, 1379, 1676], - "base-url", - [2, 1463, 18688], - "watch-", - "detector", - [2, 18690, 18691], - [2, 1379, 5614], - "broccoli-s", - [2, 18694, 5585], - [0, 0, 18711, 18712, 2523], - "-or-copy", - [2, 7100, 18697], - [2, 1379, 9381], - "-graph", - [2, 14940, 18700], - "is-language-code", - "-posix-path", - [2, 13626, 18703], - "-project", - [2, 2116, 18705], - [3, 18701, 11], - [2, 18707, 2942], - [2, 11338, 1781], - [2, 6333, 18709], - [0, 2899, 2759], - [0, 27, 3164], - "map-series", - [2, 9466, 18713], - [3, 1381, 10], - "iddleware", - [2, 18715, 18716], - "trees", - "low-trees", - [2, 18694, 18719], - ".hash.helper", - [2, 1862, 18721], - [3, 7648, 14], - [1, 2343, 18738], - "rminal", - [2, 18723, 18725], - "fs-monitor", - [2, 18707, 18727], - [2, 7077, 2849], - [2, 4099, 18729], - [3, 18693, 12], - "fig-loader", - [2, 18731, 18732], - [3, 18733, 16], - [2, 18734, 4068], - "-reducer", - [2, 1378, 18736], - [0, 18739, 18749, 18754, 2443], - [ - 0, 53, 61, 5717, 4851, 5240, 5874, 5838, 87, 14128, 90, 8862, 5583, 811, 8850, 816, 27221, 27223, 1165, 7913, - 27225, 27228, 22829, 1405, 1420, 1874, 2098, 2553, 2929, 3060, 3561, 3714, 4042, 13879, 10854, 4073, 4076, 4079, - 11481, 4072, 11482, 4484, 91 - ], - "@pnpm/find-workspace-dir", - "-works", - "pace-root", - [2, 18741, 18742], - [2, 4749, 18743], - [2, 2103, 18744], - "ulate-cache-key-for-tree", - [2, 3563, 18746], - "is-pa", - [ - 0, 48, 13693, 27232, 5522, 107, 1193, 1610, 27234, 1177, 27238, 1895, 1955, 1999, 2151, 2675, 1192, 2990, 27244, - 1894, 3957, 4039, 4165, 4294 - ], - "missing", - "ckage-missing", - [2, 18748, 18751], - [2, 1828, 18752], - [0, 6374, 4042, 27246], - [1, 2343, 18759], - "-registry", - [2, 4358, 18756], - [2, 1828, 18757], - [0, 18775, 0, 18780, 2537], - "yuidocjs", - "chai-files", - "yuidoc", - "-ember-cli-theme", - [2, 18762, 18763], - [3, 10419, 19], - [2, 18765, 2022], - [3, 18753, 11], - "-test-", - [2, 18768, 6706], - [2, 2270, 18769], - [2, 18767, 18770], - [3, 1827, 11], - "lueprint-test-helpers", - [2, 18772, 18773], - [ - 0, 5245, 1676, 26972, 23289, 27252, 27256, 17995, 27259, 27262, 26981, 27263, 26985, 27265, 27003, 27267, 26986, - 26987 - ], - "app-kit", - "ember", - [2, 5802, 18776], - "ember.js", - [0, 20627, 4643, 3987, 1936, 16892, 1783, 26885, 5980, 4549, 1644, 57, 1932, 3729, 3984, 8924, 3902, 11326, 207], - [1, 2343, 18782], - [0, 18783, 18797, 18798, 2523], - [0, 15643, 3530], - "amd-name-resolver", - [3, 1201, 14], - "ebug-macros", - [2, 18785, 18786], - [3, 12186, 15], - "ber-data-packages-polyfill", - [2, 18788, 18789], - [3, 18790, 19], - "modules-", - [2, 4610, 6422], - [2, 18792, 18793], - [2, 18791, 18794], - "broccoli-b", - [0, 2899, 3181, 27275, 2398], - [ - 0, 16159, 27277, 27278, 18132, 27280, 7256, 24440, 27281, 2090, 1586, 7131, 2100, 2070, 21543, 21544, 24441, - 27282, 27285, 27287, 3529, 13777, 6421, 19051, 3170, 3181, 3249, 27289, 27291, 3403, 13017, 11601, 27293, 1108, - 6961, 6920, 4166, 4259, 21520 - ], - "-transpiler", - [2, 13830, 18799], - [2, 18796, 18800], - [2, 6324, 6706], - [2, 1827, 18802], - "version-ch", - "ecker", - [2, 18804, 18805], - [2, 1828, 18806], - [1, 2343, 18821], - "@ember/optional-features", - "@ember/", - [2, 18810, 1871], - [2, 18810, 13281], - "@glimmer/component", - "@glimmer/", - [2, 18814, 17357], - [3, 10614, 11], - "s/lerna-changelog", - [2, 4406, 18817], - [2, 18816, 18818], - "ember-a", - [0, 0, 18836, 18837, 2537], - "uto-import", - [2, 18820, 18822], - [2, 1705, 1524], - [2, 1828, 18824], - [3, 18771, 12], - "-live-reload", - [2, 2429, 18827], - [2, 18826, 18828], - "initializers", - [2, 3614, 18830], - [2, 5802, 18831], - "ember-qunit", - [2, 5802, 14056], - [2, 5802, 4225], - [0, 27299, 7746, 4874, 1009, 1011, 1437, 27301, 3173, 1894, 23901, 27302, 91], - [0, 7188, 2090, 3171, 7305, 7070, 614], - "-channel-url", - [2, 18835, 18838], - [2, 15508, 2478], - "loader.js", - [1, 2343, 18843], - [0, 18845, 16075, 18846, 2399], - "ember-addon", - [0, 7305], - [0, 3171, 553], - [1, 2343, 18848], - [0, 11570, 11571, 18849, 2537], - [ - 0, 27314, 27315, 27316, 27317, 27318, 27319, 27320, 27322, 27323, 27315, 27325, 27326, 27328, 27330, 27332, - 27333, 27337, 27338, 27340, 27341, 27343, 2262, 7287, 27334, 27344, 27346, 27348, 27350, 27353, 27355, 27357, - 27358, 17697, 27359, 27360, 17737, 17739, 5284, 17625, 17626, 676, 91, 17627, 6869, 4799, 6915, 6333, 2382, - 6956, 17706, 17710, 6957, 17711, 17712, 17713, 17714, 17715, 17716, 17717, 17718, 5933, 1451, 7914, 27363, - 27365, 17651, 6899, 17720, 17721, 17722, 6789, 17723, 17724, 17726, 17727, 17729, 17730, 17731, 17732, 17733, - 614, 6910, 17734, 11600, 17735, 27366, 6681, 17740, 1745, 17116 - ], - [1, 2343, 18861], - "edition-utils", - [2, 18810, 18851], - [3, 4644, 15], - [2, 18853, 5218], - [2, 18791, 18854], - "-inline-precompile", - [2, 1829, 18856], - [2, 1199, 18857], - "broccoli-p", - "ersi", - [0, 18862, 18866, 18869, 2443], - [0, 4121, 4388], - "stent-filter", - [2, 18860, 18863], - [2, 18859, 18864], - [ - 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 4874, 1367, 1610, 1622, 1628, 1700, 1701, 1854, 1177, 1895, 20281, - 1938, 1939, 1942, 1953, 1955, 1982, 2092, 2203, 2675, 1192, 2780, 2832, 2990, 3144, 3400, 1894, 2278, 4111, - 4257, 91, 4523, 2924, 4677, 4681 - ], - "code-equality-assertions", - "js-string-escape", - [0, 2924, 1623, 7682, 11498], - "@emb", - "roider/test-setup", - [2, 18870, 18871], - [2, 1828, 1462], - [1, 2343, 18875], - [0, 18879, 18880, 18881, 2523], - "ort-", - "-global", - [2, 13527, 18877], - [0, 27377, 842, 1462, 27379, 1676, 668, 2105, 30621, 16860, 28134, 27380, 4072, 27385, 27388], - [0, 27390, 1177, 27393, 27394, 10624, 27395], - [0, 3178, 16862, 676, 1623, 11807, 1936, 14357], - [1, 2343, 18884], - "dat", - [0, 18885, 18887, 2514, 2443], - [0, 27404], - "ember-s", - [0, 4384, 4483, 3188, 4508, 1894, 4874], - "tyleguide", - [2, 18886, 18888], - [3, 1243, 11], - [2, 18890, 4486], - [2, 5802, 18891], - [1, 2343, 18896], - "ember-try", - [2, 1921, 2907], - [0, 0, 18897, 18898, 2537], - [0, 1158, 3421, 4389, 1177, 3410, 2708, 1159, 4103, 13614], - [0, 6478, 7128, 57, 3460], - [1, 2343, 18900], - [0, 18907, 18908, 18910, 2537], - "@emmetio/abbreviation", - "@emmetio/", - "css-a", - "bbreviation", - [2, 18903, 18904], - [2, 18902, 18905], - [0, 1525, 3313], - [0, 22102, 1192, 1894, 4468, 91], - "coding", - [0, 27425, 27428, 21655], - [1, 2343, 18912], - [0, 0, 18913, 18914, 34352], - [0, 27407, 4874, 13680, 1414, 1895, 1894, 4384, 4474, 4508, 91], - [0, 7148, 7204, 7161, 7048, 4014, 6899, 970], - [1, 2343, 18916], - [0, 18917, 18918, 2514, 2523], - [0, 1082, 3510, 15450, 27438], - [0, 4874, 7677, 1446, 1177, 1905, 5210, 2807, 1894, 15452, 91, 4543, 1984], - [1, 2343, 18920], - [0, 0, 18921, 18922, 2537], - [0, 53, 61, 71, 83, 87, 92, 97, 27445, 2126], - [0, 3190, 27447, 13795, 5128, 89, 6071, 27448, 11415, 27449, 27456, 27458, 27459], - [1, 2343, 18925], - "finish", - [0, 18926, 18927, 18928, 2523], - [0, 27464], - [0, 3190, 27464, 27468], - [0, 3190, 27447, 5128, 89, 6071, 27448], - [1, 2343, 18930], - [0, 18931, 18932, 18933, 2537], - [ - 0, 2591, 3242, 1687, 2070, 1676, 4747, 2105, 2822, 1457, 3181, 3527, 7801, 3074, 4748, 27476, 17450, 4351, - 27481, 4300, 1874, 4143 - ], - [ - 0, 3421, 1429, 2931, 1776, 2297, 4193, 27510, 1177, 3278, 3984, 4039, 4042, 4135, 2203, 26079, 2924, 1894, 1610, - 442, 27500, 91, 27501, 4874, 2665, 2900, 3105, 4677, 4892, 1509, 3123, 3401, 10630, 62, 27490, 27497, 27506, - 27507, 1953, 17529, 3125, 27509, 5946, 3114, 4923, 3107, 8850, 27499, 8862, 2904, 2915, 2881, 811, 27504, 4079, - 13866, 4066, 816, 23652, 27495, 27487 - ], - [0, 2899, 1973, 5982, 6969, 4384, 5472, 1429, 6468, 1166, 1192, 4389, 2765, 2297], - [1, 2343, 18935], - [0, 18936, 18937, 18938, 2487], - [0, 7058, 3758], - [0, 1429, 2899, 25928, 91], - [0, 2899, 6533, 3758, 3197], - [1, 2343, 18940], - [0, 18941, 18942, 18945, 2523], - [0, 1676, 3135, 3188, 4294, 6523], - [0, 826, 1429, 6524, 1177, 2899, 4039, 27525, 27526], - "entitify", - "entity", - [0, 2899, 2793, 16237], - [1, 2343, 18947], - [0, 0, 0, 18948, 2443], - [0, 2899, 16237, 27532, 4504], - [1, 2343, 18950], - [0, 0, 18953, 18954, 2523], - "enumeration", - "datatype", - [0, 1429, 1177, 21470, 2899, 4039, 4135], - [0, 3212, 2150, 1973, 1182, 6771, 3151], - [1, 2343, 18956], - [0, 18957, 18958, 18959, 4139], - [0, 27544, 2159, 15312, 27547, 2571, 2756, 3431], - [ - 0, 5517, 13614, 23237, 27552, 27555, 27557, 27559, 27562, 27564, 27567, 27568, 27570, 27571, 27573, 27575, - 27576, 4874, 27578, 27580, 19325, 1159, 9254, 1855, 1177, 2011, 2133, 2569, 2708, 3410, 3421, 4103, 4389 - ], - [0, 5472, 3212, 3048, 3205, 6692, 6822, 1973, 6865, 6739], - [1, 2343, 18961], - [0, 18962, 18967, 18970, 2537], - [0, 12929, 3369], - [3, 15801, 15], - [2, 18963, 200], - "ify-object", - [2, 4745, 18965], - [0, 1610, 1177, 2899], - "issues", - "reporting", - [0, 3209, 7190, 14419, 14416, 14510, 22228, 1973, 3212, 13106], - "diagnostics", - [1, 2343, 18973], - [0, 0, 7923, 18974, 2487], - [0, 1973, 3212, 202, 2150, 2184], - [1, 2343, 18987], - [3, 1143, 20], - "function.", - ".name", - [2, 6688, 18978], - [2, 18977, 18979], - [3, 2620, 13], - [2, 18981, 3053], - "oolean-object", - [2, 15644, 18983], - "allable", - "is-callable", - [0, 0, 18991, 18998, 2523], - "umber-object", - [2, 13631, 18988], - "is-string", - [0, 2899, 4042, 4076, 4170, 91], - "is-subset", - [2, 3024, 1867], - [2, 3436, 6693], - "rst-selector-parser", - [3, 11434, 17], - [2, 18996, 6678], - [0, 1666, 3212, 1973], - [1, 2343, 19004], - " rendering", - [2, 4161, 19000], - "Render", - [2, 4161, 19002], - [0, 0, 19008, 19009, 2487], - "test utils", - " helpers", - [2, 6468, 19006], - [0, 2759, 2272, 4193, 27601, 4616], - [0, 3212, 13106, 3209, 1237, 2325, 2275, 1973, 27603, 5472, 6969], - [1, 2343, 19011], - [0, 5621, 19012, 19013, 2523], - [0, 2323, 2372, 27608, 2436, 2447, 2463, 27610, 2272, 2839, 2924], - [0, 3212, 27612, 27614], - [1, 2343, 19015], - [0, 19016, 19021, 19022, 2537], - [0, 7058, 2070, 2929, 1209, 11993, 3084, 3310, 2015, 27624, 27623], - "airbnb-", - [2, 19017, 3744], - "fromentries", - [2, 3436, 19019], - [ - 0, 2812, 4481, 27633, 1192, 3241, 27649, 3533, 1676, 27637, 1409, 27635, 1759, 1177, 3078, 27658, 1096, 2738, - 3363, 27656, 4474, 4709, 27636, 27643, 2774, 27648, 1894, 1596, 27641, 2777, 3379, 4342, 27645, 3747, 91, 27659, - 4874, 27632, 27655, 27634, 27657, 27628, 27644, 27630, 27647, 25710, 27660, 27640, 1954, 27652, 826, 27626, - 1958, 1895, 1955, 1966 - ], - [0, 27662, 14584, 5130, 5995, 27664, 17829, 14586, 3166, 11631, 24090, 27666], - [1, 2343, 19024], - [0, 0, 19025, 19026, 2523], - [0, 2907, 4042, 1610, 91, 4874, 2915], - [0, 3220, 1666, 6901, 1644, 1671, 2649, 2679, 6728, 6804], - [1, 2343, 19028], - [0, 19029, 19030, 19031, 2537], - [0, 3220], - [0, 2228, 2247, 2273, 2277, 2281, 17565, 91], - [0, 3220, 1666, 6901, 27679, 27680, 27681, 27678, 16626], - [1, 2343, 19033], - [0, 19034, 19035, 19037, 2523], - [0, 2858, 27688, 27692, 27693, 27696, 3502, 1894, 27700, 27702, 27703, 4745], - [0, 27709, 32818, 7677, 668, 21290, 3541, 3985, 27711, 91, 1984, 27714], - [2, 6296, 3741], - [0, 6038, 4967, 6400, 27708, 21290, 4745], - "codependence", - [1, 2343, 19040], - [0, 0, 19061, 19062, 2399], - " for es6", - [2, 4354, 19041], - "check for ", - [2, 19043, 5260], - "es check", - "es matching", - "es version", - " check", - [2, 5286, 19048], - [3, 19049, 11], - "matching", - [2, 19050, 19051], - [2, 19050, 15525], - "js version", - [2, 19054, 19048], - [3, 19055, 11], - [2, 19056, 19051], - "test ", - [2, 19058, 19054], - [2, 19058, 19053], - [0, 442, 4874, 7677, 1177, 1895, 1966, 1982, 1894, 4039, 4508, 4514, 17223, 91, 4523, 1983, 26744, 1984], - [0, 27722, 27723, 27724, 5675, 27725, 6400, 5995], - [1, 2343, 19064], - [0, 19068, 19075, 19079, 4139], - "bigints", - "has-bigints", - "intl-", - [ - 0, 16003, 32967, 16005, 16000, 19267, 15999, 20870, 23721, 19282, 6372, 27731, 1364, 1367, 23723, 1395, 1505, - 1525, 1575, 1610, 1640, 1759, 1853, 2026, 9243, 2040, 2117, 27735, 27737, 2626, 2814, 7796, 3162, 3230, 27740, - 3237, 3527, 23726, 4148 - ], - "back-symbol", - [2, 9925, 19069], - [2, 19067, 19070], - [3, 5742, 14], - [2, 3094, 19072], - "make-a", - [ - 0, 53, 68, 87, 27742, 27743, 1195, 1429, 1465, 1540, 1584, 1628, 1651, 1177, 1881, 1938, 1982, 26154, 2092, - 2675, 2899, 12690, 3322, 3363, 4307, 4342, 2924, 4677 - ], - "unction", - "sync-function", - [2, 19074, 19077], - [0, 20897, 27746, 6910, 18035, 27747, 8626, 8298, 27749, 1550, 3230, 27750, 27751, 27752], - "reflect", - ".ownkeys", - [2, 19080, 19081], - [2, 7315, 7262], - [2, 5511, 19083], - [1, 2343, 19086], - [0, 19087, 19088, 19089, 4139], - [0, 1395, 27759, 27762], - [ - 0, 3421, 4481, 29749, 1429, 1437, 2899, 4193, 27764, 4747, 1177, 4135, 27765, 2026, 2822, 4474, 1894, 4196, 91, - 5307, 4856, 4874, 1436, 27767, 6503, 6513, 27768, 5254, 6494, 27772, 27775, 27776, 27779, 6512, 27781, 27782, - 4232, 1951, 1978, 1895, 1955, 608, 603, 1011, 27786, 15115, 27790, 27792, 1009, 10964, 549 - ], - [0, 3230, 13392, 11489], - [1, 2343, 19091], - [0, 19095, 19098, 19103, 2399], - "es6-symbol", - "esniff", - "next-tick", - [0, 27798, 3230, 27799, 27800, 3242, 27801], - "plain", - [2, 19096, 4007], - [ - 0, 30604, 29957, 4874, 27803, 27805, 27807, 1091, 1414, 1448, 18192, 1177, 13850, 2026, 2151, 2600, 21630, 3044, - 27810, 20451, 3127, 3188, 2899, 3220, 27786, 12690, 29780, 3275, 3754, 4193, 29998, 91, 4523, 3348 - ], - "ecmascript5", - "ecmascript6", - "extensions", - "addons", - [0, 3230, 1746, 11415, 2844, 18035, 27812, 2382, 27814, 3766, 18037, 3469, 1747], - [1, 2343, 19105], - [0, 19106, 19107, 19109, 2523], - [0, 1605, 1541, 1292, 4218, 4545, 4220, 27822], - [0, 2228], - "es5 shim", - [0, 3233, 27826, 27827, 20863, 27829, 27830], - [1, 2343, 19111], - [0, 19112, 19107, 19113, 2523], - [0, 1541, 1544, 3233, 27835, 27822], - [0, 3233, 27837, 27826, 27827, 27838, 12619, 20863, 27840], - "rettime", - [1, 2343, 19116], - [0, 19117, 19131, 19133, 4139], - [0, 27847, 1676, 3230, 27849, 27852, 27855, 27856, 27857, 27859, 3427], - "json3", - [2, 1379, 4042], - "git-repo-", - [2, 19120, 15525], - [2, 1379, 4650], - [2, 1379, 4535], - "-phantom", - [2, 3736, 19124], - "6-plugin-strip-class-callcheck", - [2, 1172, 19126], - [3, 14198, 32], - "nstants", - [2, 19128, 19129], - [0, 1166, 1503, 1177, 1903, 1920, 1938, 1954, 1958, 1970, 27861, 27866, 27869, 27872, 27873, 27874, 27875, 3421], - "futures", - [0, 3236, 3230, 1550, 13392], - [1, 2343, 19135], - [0, 19136, 19137, 19139, 2523], - [0, 1304, 1676, 1704, 3440, 16128], - [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4237, 4342], - [3, 7872, 9], - [0, 2026, 27, 2942, 2663], - [1, 2343, 19141], - [0, 7936, 7938, 7939, 2399], - [1, 2343, 19143], - [0, 19144, 19147, 19148, 2399], - [0, 4729, 4038, 1676, 27764, 4238, 27897, 27899, 3183, 9241, 3084, 27902, 1537, 27910, 3923, 27905, 14731], - "es6-tests", - [2, 12790, 19145], - [ - 0, 3421, 1429, 4389, 4193, 1177, 2202, 3188, 4039, 4170, 4216, 668, 2203, 4474, 1457, 1894, 27912, 442, 3697, - 3980, 91, 4856, 4874, 19325, 6513, 1834, 27918, 27920, 19181, 12310, 5536, 5476, 10936, 27924, 1938, 1895, 1955, - 1011, 1567, 5478, 27915, 1009, 10614 - ], - [0, 3241, 27927, 20001, 20003], - [1, 2343, 19150], - [0, 0, 19152, 2514, 4139], - [2, 31089, 9224], - [0, 2675, 2899, 1177, 1894, 2025, 2990], - [2, 31715, 31719], - [1, 2343, 19155], - [0, 19156, 19157, 19158, 2399], - [0, 27936, 1525, 1676, 25625, 25635], - [0, 192, 5467, 16607, 6065, 16608, 16612, 2899, 4131, 4255], - [0, 18035, 3243, 14872, 36, 27939, 26472, 27940, 27942, 25635, 27944, 26472, 27945, 13531, 27948], - [1, 2343, 19160], - [0, 19162, 19163, 19164, 2443], - "special", - [0, 27959, 617, 9213, 27962, 977, 2220, 27964, 9218, 9219, 3509, 3527, 19114, 4266, 9221, 4454, 4507, 27955, 4747], - [ - 0, 192, 5467, 19151, 19181, 442, 17982, 5497, 9225, 9226, 8648, 6494, 27966, 4874, 19153, 1009, 1011, 5474, - 1170, 13662, 1527, 1610, 1613, 1652, 668, 8161, 1177, 1895, 1955, 2026, 2078, 19213, 2070, 2832, 27967, 2931, - 2990, 27969, 1894, 23535, 3957, 4039, 9245, 4493, 91, 4523, 4548, 4027, 1984, 9250, 2924, 9258, 3244 - ], - [0, 5592, 3212, 8788, 6812, 6688, 36, 11100, 1852, 5472, 6400, 10768], - [1, 2343, 19166], - [0, 19169, 19170, 19173, 2537], - [2, 18756, 4219], - [2, 1370, 19167], - [0, 27978, 1410, 1537, 3188, 3427, 1000, 1695], - [0, 1693, 2026, 2139, 27981, 2899, 3421, 4039, 4255, 27984], - "-everywhere", - [2, 10906, 19171], - [0, 1669, 3689, 15237, 2139, 27986, 2026, 2663], - [1, 2343, 19175], - [0, 19176, 8134, 19178, 2537], - [0, 22970, 27992, 3181], - [3, 442, 8], - [0, 18132, 2100, 2070, 21543, 21544, 3529, 13777, 3181, 13017, 11601, 21520], - "config-array", - [2, 19177, 19179], - [2, 19177, 1998], - "@humanwhocodes/module-importer", - [3, 19182, 15], - [2, 19183, 1153], - "@nodelib/fs.walk", - "esquery", - "imurmurhash", - "-without-jsonify", - [2, 2851, 19188], - "levn", - [1, 2343, 19196], - "@eslint/co", - [2, 19192, 23], - [2, 442, 1803], - "@trunkio/launcher", - [0, 19197, 19198, 19199, 2523], - [0, 4538, 2657, 4100], - [0, 3421, 27999, 2899, 1177, 3188, 4039, 4339, 4012, 1948], - [0, 2090, 9229, 2141, 3101, 6949], - [1, 2343, 19201], - [0, 19211, 19212, 19214, 2537], - [2, 3192, 5130], - [2, 11095, 19202], - [3, 1992, 9], - "lease", - [2, 19204, 19205], - "eslint-r", - "ule-composer", - [2, 19207, 19208], - "eslump", - [0, 2100, 2151, 2859, 1209, 5303, 3445, 3348], - [0, 2765, 3421, 33373, 3980], - "fs-teardown", - [0, 1649, 1936, 28007, 3256, 28009, 28012], - [1, 2343, 19217], - "metascraper", - [0, 0, 19228, 19229, 2537], - "-description", - [2, 19216, 19218], - [3, 19219, 12], - [2, 19220, 158], - [2, 19220, 11255], - [2, 19222, 4147], - [2, 19220, 17913], - "node-po", - "lyfill-webpack-plugin", - [2, 19225, 19226], - [0, 1999, 1429, 4770, 2899, 1177, 2272, 4042, 3758, 4535], - [0, 3257, 1283, 5354, 1797], - "npm-license", - "polyfills", - [2, 4065, 19231], - [1, 2343, 19234], - [0, 0, 19236, 19237, 2399], - "yorkie", - [0, 1759, 2323, 2384, 2508, 2675, 2297, 2881, 2908, 2915, 28023, 28024, 1894, 25851, 2907, 4039, 4042, 4072, 28027], - [0, 10052, 8691, 28030, 7131, 6333, 7518], - "sql-escaper", - [1, 2343, 19240], - [0, 19241, 19245, 2514, 2443], - [0, 1325, 3923, 4100, 28036], - "ape-runner", - [2, 1285, 19242], - "eslint-f", - [0, 1087, 1177, 4127, 28038, 28039, 28040], - "ind-rules", - [2, 19244, 19246], - [1, 2343, 19249], - [0, 19250, 19251, 19252, 2537], - [0, 3080, 24383, 18073, 2685, 19238, 28047, 28049, 28052], - [ - 0, 1414, 4494, 28059, 2203, 1894, 1317, 1610, 442, 3560, 91, 4874, 28056, 19181, 27928, 6473, 1895, 1955, 1011, - 28058, 1009, 13188 - ], - [0, 3259, 5576, 36], - "using-browser-globals", - [2, 12084, 19253], - [1, 2343, 19256], - [0, 19257, 19258, 19259, 2443], - [0, 21243, 3427, 21246], - [0, 2759, 1362, 2899], - [0, 19138, 1862, 28067, 21244, 5194], - [1, 2343, 19264], - [3, 3703, 10], - [3, 9487, 11], - [2, 19261, 19262], - [0, 0, 19265, 19266, 2537], - [0, 28072], - [0, 3417, 202, 15525, 10057, 28074, 202, 17180, 1263], - [2, 15998, 23720], - [1, 2343, 19272], - "quality", - "jslint", - "code style", - [0, 0, 19274, 2514, 2537], - "verify", - [0, 1326, 1525, 2070, 705, 3923, 4384, 1695], - [1, 2343, 19276], - [0, 0, 19277, 19278, 2537], - [0, 4548, 4874, 91], - [0, 28088, 2382, 705, 1781, 18037, 3166, 2378, 18035], - [1, 2343, 19283], - " config", - [2, 1177, 19280], - "@lezer/highlight", - [0, 19284, 19285, 19287, 2523], - [0, 5012, 1634, 1639, 28094, 26902, 28095, 17011, 7917], - [ - 0, 10821, 10828, 10837, 5087, 4874, 5090, 4880, 1177, 10619, 2675, 28098, 1192, 2968, 28101, 2990, 1894, 3744, - 89, 3824, 3904, 4039, 4232, 4469, 4484, 91, 2924, 4676, 4681, 4749 - ], - [2, 15289, 17540], - [0, 1623, 590, 592, 3528, 2378, 2994, 89, 676, 7164, 7165, 369, 4636, 4627, 4315, 28103, 5547, 5376], - [2, 19289, 1564], - [3, 28155, 14], - [1, 2343, 19291], - [0, 0, 0, 19292, 4139], - [0, 3348, 3778, 3265, 1002], - [1, 2343, 19294], - [0, 19295, 19296, 19297, 2537], - [0, 18509, 1170, 1809, 2151, 28115, 28116, 3079, 3275, 28118, 4108, 4232, 4449, 4747], - [ - 0, 5245, 4864, 28120, 5087, 21621, 4874, 28123, 6520, 4892, 1009, 1011, 1804, 1177, 1895, 1955, 1192, 3541, - 1894, 4039, 4469, 91, 2924, 4677 - ], - [0, 28125, 1804, 1896, 970, 21009], - [1, 2343, 19299], - [0, 19300, 19303, 19304, 2487], - [ - 0, 4729, 3467, 4390, 2806, 3445, 3348, 1170, 1473, 2072, 4747, 20991, 1209, 3078, 3127, 3188, 3483, 4135, 3013, - 4708, 4734, 2003, 3742, 4167, 1137, 1457, 1894, 3761, 4473, 3181, 28130, 1483, 4183, 4227, 91, 28132, 8612, - 28133, 19499, 28135, 20949, 28136, 28137, 14774, 28142, 3762, 635, 28145, 28151, 19288, 1573, 20934, 28155, - 28158, 28164, 28214, 28167 - ], - "eslint-patch", - [2, 9112, 19301], - [ - 0, 1429, 2228, 2675, 2899, 4193, 26212, 2759, 9241, 13214, 4856, 4874, 7819, 2314, 2990, 9357, 28177, 28178, - 6513, 4892, 28180, 4870, 28182, 5254, 28184, 28187, 28189, 7812, 7749, 14352, 28192, 28195, 1431, 2258, 4232, - 2247, 2283, 33046, 28203, 9417, 28206, 5244, 28211, 1567 - ], - [0, 3271, 91, 5284], - [1, 2343, 19306], - [0, 19307, 19321, 19322, 2487], - [0, 28219, 28223, 28224, 1759, 2665, 28225, 3232, 3519, 1552, 18730, 28228, 26940, 4545, 3348, 28230], - " Standard Style", - [2, 17626, 19308], - "code checker", - "code linter", - "code st", - "andards", - [2, 19312, 19313], - "policy", - " style", - [2, 4255, 19316], - [2, 590, 16792], - "style ", - "style linter", - [ - 0, 811, 8850, 816, 23689, 4874, 1009, 28232, 1610, 1177, 21564, 1938, 1953, 1958, 2323, 2441, 28233, 2765, 2766, - 671, 3275, 3421, 28234, 3752, 4039, 4042, 4193, 4232, 4255, 4474, 15097, 91, 28235, 2924, 18237 - ], - [ - 0, 28238, 28241, 17134, 28242, 28243, 207, 28244, 28245, 28246, 28247, 28248, 28249, 28251, 28253, 28256, 28258, - 28260, 28261, 28265, 28266, 4420, 28267, 28269, 28271, 28273, 28274, 28275, 28277, 28280 - ], - [1, 2343, 19324], - [0, 19326, 19327, 19328, 34352], - "@types/tape", - [0, 2714, 1149, 4747, 28285], - [0, 3421, 4616, 1177, 1596, 28287, 3980, 10614], - [0, 8309, 28289, 28291], - [1, 2343, 19330], - [0, 0, 19331, 19340, 2523], - [0, 2899, 4039, 21228], - [3, 19180, 15], - [2, 19332, 3323], - "__js", - [2, 5601, 19334], - "automd", - "eslint-t", - "ypegen", - [2, 19337, 19338], - [0, 200, 1585], - [1, 2343, 19342], - [0, 0, 19343, 19345, 2523], - [0, 4874, 4880, 1009, 1011, 1587, 1177, 1895, 1955, 1959, 1961, 1161, 1894, 4484, 91], - [3, 7844, 24], - [0, 28303, 6085, 89, 1896, 28304, 12780, 190, 5995], - [1, 2343, 19351], - "xoxo", - "hugs", - "kisses", - "happy", - [0, 19352, 19354, 19355, 2537], - [0, 1149, 3188, 4545, 3012, 28310], - "happiness", - [0, 1429, 2899, 4193, 705, 1525, 28312], - [0, 18035, 27814, 21687], - [1, 2343, 19357], - [0, 19358, 19360, 19361, 2523], - [0, 2685, 4113], - "cabin", - [0, 2861, 17910, 2899, 3756, 3760, 4170, 4193, 4734], - [0, 27, 2671, 2869, 705, 5576, 15237, 9229, 2658, 25386, 17481, 8426, 8431, 977, 7436], - [1, 2343, 19363], - [0, 19364, 0, 19365, 2523], - [0, 28324, 28325, 1525, 1595, 2720], - [0, 200, 12659, 13527, 1523, 6876, 678, 4636], - "boolean", - [1, 2343, 19368], - [0, 19369, 19370, 19371, 4139], - [ - 0, 28331, 1149, 28333, 13223, 1483, 1512, 1525, 1645, 2098, 28335, 1209, 3188, 28340, 28342, 28344, 28346, 3718, - 4135, 28348, 4717, 4736 - ], - [ - 0, 28353, 1429, 1705, 28356, 18420, 1177, 1942, 13231, 1951, 1966, 2822, 2899, 3297, 3421, 28358, 3938, 4153, - 4167, 4193, 4734 - ], - [0, 3283, 28360, 5592, 5472, 15656, 28362, 4030], - [1, 2343, 19373], - [0, 19374, 19375, 19376, 2537], - [ - 0, 30869, 28367, 28371, 28372, 13471, 13474, 13476, 30243, 13495, 13497, 13500, 13502, 28373, 1537, 2674, 28375, - 27967, 2854, 28379, 3923, 28380, 4135, 4715 - ], - [ - 0, 7709, 28384, 36559, 28387, 28390, 28394, 692, 28395, 28396, 28399, 1091, 1149, 1168, 28400, 1414, 13838, - 1525, 1570, 28401, 13848, 1177, 1942, 28406, 2070, 2212, 2675, 1776, 2990, 3019, 3297, 3747, 3752, 4039, 28408, - 4193, 4339 - ], - [0, 13539, 6681, 27838, 14029, 28411, 28413], - [2, 5223, 594], - [2, 1876, 19377], - [1, 2343, 19381], - "is-bun-module", - [0, 19382, 19383, 19384, 2523], - [0, 97, 28418, 977, 12105, 3424, 28420, 3698, 28423, 3348], - [ - 0, 5154, 48, 53, 14167, 83, 87, 90, 92, 28436, 842, 16145, 966, 968, 972, 20562, 974, 5087, 4874, 28426, 28425, - 4880, 4883, 1165, 28435, 28433, 1540, 1637, 1192, 2780, 2802, 3244, 3286, 3561, 3566, 3640, 89, 3824, 4705 - ], - [0, 89, 6710, 3424, 2038, 28438, 5165, 3287, 16944, 5168, 28439], - "@types/is-", - [2, 19385, 2070], - [1, 2343, 19388], - [0, 0, 0, 19389, 2523], - [0, 3286, 1149, 28445, 28446], - "node-lib", - [1, 2343, 19392], - [0, 0, 0, 19393, 2399], - [ - 0, 1098, 1973, 5472, 3212, 8788, 4627, 12442, 7170, 9962, 11100, 28453, 28454, 4967, 6400, 1192, 2765, 1843, - 13106, 7190 - ], - [1, 2343, 19395], - [0, 19396, 0, 19397, 2537], - [0, 13, 28459, 8597, 1668, 4484], - [0, 5127, 4964, 1098, 181, 5130, 4967], - [1, 2343, 19406], - [3, 16405, 17], - "defaults", - [2, 19399, 19400], - "-azure-pipelines-cli", - [2, 1529, 19402], - "riendly-formatter", - [2, 19244, 19404], - [0, 19407, 19408, 19409, 2537], - [0, 2212, 3348, 4745, 16509, 2057, 3028], - [0, 1429, 1437, 2899, 4193, 4874], - [0, 3290, 28467, 28468, 3014, 28469], - [1, 2343, 19416], - "enhance", - "-visitors", - [2, 19411, 19412], - [2, 1876, 594], - "espurify", - [0, 0, 19417, 2514, 2399], - [0, 1429, 1544, 2899, 3754, 4151, 4333], - "-spelling-correcter", - [2, 3166, 19418], - [1, 2343, 19423], - "ava-rule-tester", - [2, 1876, 19421], - [0, 19424, 19425, 19426, 2487], - [0, 1676, 28480, 19400, 1804, 28483, 28484, 2835, 28485, 3188, 16112, 3441, 4039, 28486, 4238], - [0, 1149, 1304, 27731, 1362, 1429, 1431, 1177, 1895, 1955, 2026, 2675, 2899, 28488, 3246, 3549, 1894, 4151, 4237], - [0, 3292, 1804], - [1, 2343, 19428], - [0, 19429, 19430, 19431, 2487], - [ - 0, 28494, 28498, 28500, 4856, 28502, 14552, 11869, 15374, 1371, 28503, 1437, 1458, 1483, 28504, 28505, 1759, - 1797, 1842, 2070, 2832, 1209, 3181, 3183, 2899, 28510, 3445, 3467, 20460, 4130, 4135, 28512, 4294, 4558, 3348 - ], - [ - 0, 221, 842, 4874, 1009, 1011, 1587, 1610, 1177, 2675, 2742, 2822, 2990, 3200, 4925, 28514, 28517, 3215, 3297, - 3421, 89, 3824, 4039, 4146, 4474, 4481, 28519 - ], - [ - 0, 3294, 28521, 28522, 5472, 11132, 14336, 11861, 28525, 11862, 4627, 11857, 1973, 1388, 5131, 8791, 13426, - 1649, 2899, 13428 - ], - [1, 2343, 19433], - [0, 19437, 19447, 19450, 4139], - "ast-m", - "etadata-inferer", - [2, 19434, 19435], - [0, 11124, 826, 28535, 18248, 3509], - [2, 19192, 13172], - [3, 5536, 14], - "16", - [2, 19439, 19440], - "aniuse-lite", - [2, 4857, 19442], - [3, 6309, 16], - "moize", - [2, 19444, 19445], - [0, 11134, 28537, 1389, 2675, 2832, 8821, 2990, 2899, 28539, 3421, 1894, 3752, 28542, 28543], - "config-erb", - [2, 15086, 19448], - [0, 1973, 5472, 21147, 3212, 4731, 36], - "kangax", - [1, 2343, 19453], - [0, 19454, 19455, 2514, 2537], - [0, 28550, 617, 2854], - [ - 0, 2212, 3421, 1429, 1192, 2899, 4193, 1177, 4039, 1894, 2139, 1719, 3752, 4196, 91, 3400, 15342, 4131, 1954, - 1951, 826, 1938, 1958, 1895, 1903, 7935 - ], - [1, 2343, 19457], - [0, 0, 19458, 19459, 2443], - [0, 1317, 1326, 28556, 1177, 2151, 29197, 3697, 4135], - [0, 28558, 28559, 11154, 970, 1326, 3122, 14655, 3263, 3299], - [1, 2343, 19461], - [0, 19465, 19470, 19471, 2537], - "/plugin-pwa", - [2, 4613, 19462], - [2, 10982, 19463], - [0, 1496], - "eslint4b", - [3, 4630, 11], - [2, 19467, 6038], - "vuepress", - [0, 3421, 2228, 2899, 4170, 1596, 2240, 18463, 91, 4874, 18555, 1506, 28565, 22081, 2247, 2283, 28567, 28570], - [0, 2325, 20164, 2703, 6884, 3250, 3151, 6943, 202, 3143, 3048], - "exported", - "eslint-env", - "eslint-en", - [2, 19474, 4000], - "eslint-d", - "isable", - [2, 19476, 19477], - [2, 19478, 10240], - [3, 19479, 15], - "next-line", - [2, 19480, 19481], - [1, 2343, 19484], - [0, 0, 19485, 19486, 2537], - [0, 4874, 28577, 2151, 2675, 2899, 3421, 4039, 91, 28580], - [0, 202, 3111, 13017, 6956, 28582, 6899, 6726, 2382, 13626, 28583, 1745], - [1, 2343, 19495], - [3, 8097, 32], - [3, 1879, 9], - "mments", - [2, 19489, 19490], - [2, 19488, 19491], - "ot-an-aardvark", - [2, 16819, 19493], - [0, 19496, 19497, 19498, 2487], - [0, 1672, 28589, 28590, 2179, 3183, 3330, 814, 4135], - [0, 4874, 1177, 1938, 2675, 2990, 1894, 4384, 28593, 4453, 4474, 91], - [0, 22687, 2999, 4345, 3233, 2282], - "@foxt/js-srp", - [2, 4284, 12118], - [1, 2343, 19506], - [3, 15471, 15], - "anonical", - [2, 19502, 19503], - "gitdown", - [0, 13856, 11488, 19507, 2443], - [0, 3308, 7204, 4014, 28599, 2090, 14629, 17721, 2150], - [1, 2343, 19509], - [0, 19510, 19511, 19517, 2537], - [0, 21642, 28604, 28605, 28608], - [ - 0, 10614, 842, 5601, 1009, 1011, 7677, 17298, 1622, 1177, 17300, 1930, 1942, 1945, 1948, 1953, 17303, 17306, - 1964, 1985, 17308, 2675, 17310, 2931, 2990, 3124, 3125, 3390, 17312, 1894, 17314, 3708, 3980, 28611, 17318, - 4493, 91, 1984, 17319 - ], - "@html-eslint/eslint-plugin", - [3, 19512, 13], - [2, 19513, 57], - "link-check", - [2, 3115, 19515], - [0, 3113, 2869, 26800, 26799, 28613, 28614, 28615, 28617, 28618, 28619], - [1, 2343, 19519], - [0, 19520, 19521, 19529, 2537], - [0, 16566, 28624, 21163], - [0, 1079, 13867, 1410, 1414, 1429, 1431, 28626, 21480, 1596, 2139, 13870, 2899, 3480, 28628, 4481, 1906], - [2, 13039, 7015], - [3, 1143, 17], - "indlastindex", - [2, 19523, 19524], - "doctrine", - [2, 17612, 202], - "object.g", - [0, 1612, 27, 1862, 705, 7085, 7289, 4731, 7102], - "roupby", - [2, 19528, 19530], - [1, 2343, 19536], - "/template-parser", - [2, 1177, 19533], - [2, 12908, 19534], - [0, 0, 19537, 19542, 2487], - [ - 0, 1389, 1525, 1610, 1177, 28635, 2026, 2297, 2871, 2881, 2891, 2895, 2897, 2900, 2904, 2912, 2915, 2921, 28636, - 2925, 2899, 3202, 28638, 3421, 15767, 2924, 4677, 28639 - ], - "escope", - "fs-copy-file-sync", - "linklocal", - [2, 3045, 4552], - [ - 0, 28641, 28642, 28643, 28644, 1616, 12588, 28645, 28646, 28647, 28648, 27, 2671, 3135, 11996, 28649, 28650, - 28651, 28652, 28653, 4160, 28654, 28655, 28656, 21000, 28657, 28658, 28659 - ], - [1, 2343, 19546], - "npm-which", - [2, 4523, 1574], - [0, 19547, 19548, 19549, 34352], - [0, 1170, 1676, 1209], - [0, 1429, 2899, 3752, 4193], - [0, 1885, 6599, 6645, 586, 12296, 28666, 28647, 28667, 2109, 12295, 1121, 8899], - [1, 2343, 19551], - [0, 19556, 19557, 19558, 34352], - "@schemastore/package", - "ts-export-assignment", - [2, 13996, 19553], - [2, 13970, 19554], - [0, 1362, 3310], - [0, 1429, 1177, 1192, 4193], - [0, 28674, 28676, 28677, 1885, 14554, 28678, 28679, 28680, 28681], - "-repositories", - [2, 1992, 19559], - [1, 2343, 19562], - [0, 19563, 19564, 19572, 2537], - [0, 16473, 28688, 2215, 26567, 3368, 3727, 4135, 4390, 27921, 4707], - [0, 1326, 1610, 1177, 2899, 3263, 29197, 28691], - "@es-", - "joy/jsdoccomment", - [2, 19565, 19566], - "are-docs-informative", - [2, 13721, 5651], - "spdx-expression-parse", - "synckit", - [0, 970, 11154, 1237, 3122, 14655, 1326, 14654], - "@es-joy/", - [2, 19573, 1875], - [3, 19567, 13], - [2, 4522, 1574], - [2, 19575, 19576], - "@hkdobrev/run-if-changed", - "pree", - [2, 5600, 19579], - [2, 5600, 3766], - "defaultsdeep", - [2, 6308, 19582], - "@types/sp", - "dx-expression-parse", - [2, 19584, 19585], - [3, 5210, 11], - [2, 1226, 19587], - "ype-", - "pratt-parser", - [2, 19589, 19590], - [2, 13587, 19591], - [2, 3032, 1697], - [1, 2343, 19596], - "open-editor", - [0, 19597, 19598, 19599, 2523], - [0, 1632, 2591], - [ - 0, 16868, 1448, 1610, 1177, 28698, 2616, 3321, 28699, 28702, 15512, 28704, 2654, 28706, 28707, 3493, 4039, - 25213, 4257, 4474, 4749 - ], - [0, 1936, 57, 6710, 91], - [1, 2343, 19604], - [ - 0, 68, 5522, 107, 19492, 19194, 19605, 19609, 19344, 23339, 6503, 19616, 4874, 5254, 1009, 1011, 1414, 19619, - 668, 1177, 1895, 1933, 19620, 1942, 19622, 1945, 1948, 1953, 19623, 1955, 1964, 1988, 17308, 1994, 2018, 2203, - 2899, 3486, 1894, 4135, 4320, 19624, 4323, 19626, 19629, 1531, 4494, 91, 4523, 19630, 4614, 4630 - ], - [0, 13678, 13679, 13681, 34352], - [1, 2343, 34428], - [0, 19613, 19618, 19631, 2523], - "@ota-meshi/eslint-plugin", - [3, 19605, 11], - "-kit-eslint-editor-vue", - [2, 13755, 19607], - [2, 19606, 19608], - "-scope", - [2, 5601, 19610], - [3, 19611, 14], - [0, 1149, 28713, 1676, 2026, 2070, 3507, 1997, 4135, 4148, 28715, 28716, 28717, 4707, 4729, 4747], - "@types/na", - "tural-compare", - [2, 19614, 19615], - "xbytes", - [0, 1429, 2151, 1161, 2272, 2899, 3378, 1862, 4039], - "env-cmd", - [2, 1931, 5550], - [2, 18008, 8546], - [2, 17585, 19621], - [2, 1954, 8770], - [2, 4946, 12054], - [3, 5978, 26], - [2, 19625, 188], - [3, 4330, 11], - "tylus", - [2, 19627, 19628], - [2, 4609, 19466], - [0, 1676, 6782, 3323, 15267], - "jsonc", - [1, 2343, 19634], - [0, 19635, 19636, 19642, 2443], - [0, 1080, 1560, 1704, 2145, 20103, 3164, 3171, 3494, 3781, 1000], - [0, 4856, 6503, 1009, 1011, 1429, 1177, 1881, 1895, 1938, 2675, 2899, 3421, 1894, 4193, 4196, 4474, 4481, 91], - "-flow", - [2, 12184, 19637], - "axobject-query", - "damerau-levenshtein", - "es-iterator-helpers", - [0, 3212, 13106, 28726, 6710, 676, 5472, 1973, 27, 28728], - [1, 2343, 19649], - "jsx-ast-utils", - [2, 9551, 2640], - "regex-test", - [2, 4099, 19646], - [2, 18996, 7015], - [0, 19651, 19652, 19653, 2399], - "to-ast", - [0, 28733, 2755, 4135, 28735, 3348, 4707], - [0, 1587, 1610, 1177, 1900, 1903, 1938, 1954, 1958, 2675, 1192, 2990, 28737, 1894, 4039], - [0, 28740, 28743, 22005, 28744, 22011, 15844, 28747, 28748, 9044], - [1, 2343, 19655], - [0, 19656, 19658, 19659, 2523], - [0, 1304], - [2, 18576, 13064], - [0, 1364, 2026, 2899, 4170, 4342], - [0, 3424, 28438], - [1, 2343, 19661], - [0, 16583, 11580, 11581, 4139], - [1, 2343, 19663], - [0, 19664, 19665, 19666, 4139], - [0, 20584, 3188, 3278, 3368, 3393, 3411, 1997, 4039, 4135, 4390], - [0, 1168, 2272, 3297, 4389], - [0, 970, 11154, 1237, 3122, 14655, 1326, 17180], - [1, 2343, 19668], - [0, 19669, 19670, 19672, 2537], - [0, 3299], - [0, 2899, 1177, 28768, 640, 1610, 91, 4874, 6503, 1011, 1009], - [2, 1927, 8982], - [0, 28770, 6621, 7009, 28771, 28772, 28773], - "ts-i", - [1, 2343, 19677], - "gnore-import", - [2, 19673, 19675], - [0, 19678, 0, 19679, 4139], - [0, 28792, 28790, 28782, 28786, 1304, 1309, 1594, 2026, 2151, 28783, 3368, 4135], - [0, 6038, 8899, 28794, 2124], - [1, 2343, 19681], - [0, 19682, 19683, 19684, 2399], - [0, 3263, 2164, 2070, 3157, 1437, 1209, 640, 2185, 28799, 1615, 28800, 28802, 28804, 26567], - [0, 3421, 2899, 1177, 4039, 2151, 28806], - [0, 1623, 22022, 7121, 2278, 4329, 590], - [1, 2343, 19686], - [0, 19690, 19691, 19693, 2537], - "-helpers", - [2, 9654, 19687], - [2, 7627, 19688], - [0, 12680, 28813, 28816], - [0, 3421, 4389, 4193, 1090, 1177], - [3, 3995, 13], - [0, 16618, 5957, 12692, 1605, 28821, 27105], - [1, 2343, 19695], - [0, 19697, 0, 19698, 2537], - "@chromatic-com/storybook", - [0, 3460, 1512, 3171], - [0, 27, 2947, 2090, 36], - [1, 2343, 19700], - [0, 0, 19701, 19702, 2523], - [0, 3421], - [0, 6926, 6668, 3348], - [1, 2343, 19704], - [0, 0, 19705, 19710, 2399], - [0, 2151, 2899], - [2, 19707, 103], - [3, 35573, 13], - "ug", - [2, 17304, 19708], - [0, 28837, 2282, 28838], - [3, 3708, 17], - "kg", - [2, 19711, 19712], - [1, 2343, 19715], - [0, 19716, 0, 19717, 4139], - [0, 6523, 4747], - [0, 28844, 6574, 11100, 28845, 6807, 2013, 28847, 28849, 28850, 5957], - [1, 2343, 19719], - [0, 19720, 19721, 19722, 2537], - [0, 3354], - [0, 28856, 28858, 4874, 1177, 1894, 3706, 4493, 91, 8552, 1984], - [0, 28860, 57, 9381, 3354, 28861], - [1, 2343, 19727], - [3, 19525, 24], - "tosorted", - [2, 5613, 19725], - [0, 19730, 19733, 19737, 2443], - "repeat", - [2, 18996, 19728], - [0, 2571, 2741], - [2, 5609, 14255], - [3, 5235, 22], - [0, 13614, 1158, 1177, 2708, 17400, 3410, 3421, 3435, 4103, 4389], - "unction-bind", - [2, 19732, 19734], - "ls-engines", - [0, 2051, 6970, 28869, 1496, 1585, 24135], - [1, 2343, 19739], - [0, 19740, 19741, 19742, 2523], - [0, 2212, 3263, 2856, 3776, 1209, 4391, 2151, 640, 3337], - [0, 4647, 2899, 2272, 1168, 1448, 28877, 2759, 1173, 1596, 2820, 28879, 17370, 1267], - [0, 28881, 28882, 3358, 970], - [1, 2343, 19744], - [0, 0, 19746, 19747, 2487], - "refa", - [0, 28043, 1409, 1414, 1177, 1895, 2203, 28890, 28891, 28892, 28894, 1894, 2658, 28895, 18661], - [0, 28897], - "analysis", - "-ast-analysis", - [2, 6961, 19749], - "scslre", - [1, 2343, 19760], - "eslint-s", - "-rule-tester", - [2, 11298, 19754], - [2, 19753, 19755], - [2, 19758, 29135], - [3, 17306, 17], - "@types/pako", - [0, 19762, 19763, 19764, 2523], - [2, 3192, 15264], - [0, 1457, 1676, 13775, 3181, 28904, 4135, 18174, 4351, 4453, 28903], - [0, 192, 5467, 1149, 1506, 1177, 2675, 2899, 3421, 3752, 4131, 4170], - [0, 200, 3233, 3233, 5001, 22687, 28908, 2999, 7009], - [1, 2343, 19766], - [0, 19768, 0, 2514, 2523], - "safe-regex", - [0, 1797, 4384], - [3, 19494, 16], - "desecurity", - [2, 19769, 19770], - [1, 2343, 19774], - [2, 202, 1965], - [0, 19775, 19776, 19777, 2537], - [0, 4039, 1764, 28917, 4747, 4135], - [0, 705, 4389], - [0, 28921, 3364, 7242, 28125, 13527], - [3, 3568, 11], - "red-black-tree", - [2, 19778, 19779], - [1, 2343, 19785], - "al-red-black-tree", - [2, 19076, 19782], - [2, 5537, 19783], - [0, 19787, 0, 19788, 2523], - "sonarjs", - [ - 0, 28367, 1091, 1092, 20437, 12384, 1096, 28927, 1170, 1364, 1457, 1575, 1594, 1648, 2026, 9243, 28929, 28930, - 2070, 2593, 28933, 28934, 2856, 28935, 2863, 28936, 3083, 12792, 28940, 3230, 3241, 3277, 16617, 28859, 3361, - 3445, 3519, 28944, 1552, 2999, 4010, 28945, 28948, 4709, 7801, 4745, 4747 - ], - [ - 0, 28950, 3366, 5284, 6710, 5130, 5995, 4967, 12660, 28951, 28954, 28956, 28957, 1781, 28959, 2844, 2856, 4745, - 1896, 28960 - ], - [1, 2343, 19790], - [0, 19791, 9888, 19792, 2537], - [0, 4545, 1437], - [0, 10446, 28967, 9753, 14690, 57], - [1, 2343, 19794], - [0, 19796, 6538, 2514, 2523], - [2, 4353, 67], - [0, 23432], - [2, 19612, 594], - [2, 5600, 594], - "@types/less", - [2, 13058, 3675], - [3, 4890, 11], - [2, 19801, 4332], - "svelte-i18n", - [1, 2343, 19806], - "sveltejs", - [0, 0, 19807, 19808, 4139], - [0, 2398, 3183, 2899], - [ - 0, 28977, 28978, 28979, 2090, 28980, 17996, 18442, 28981, 7517, 2150, 3374, 3403, 10903, 15323, 4207, 28982, - 28983, 28984, 28985 - ], - [1, 2343, 19810], - [0, 0, 8134, 19813, 2537], - "-formatting", - [2, 1939, 19811], - [0, 3374, 1002, 12831, 15427, 1871, 28992, 28994, 3766, 3767, 28996, 4301, 6678, 28997], - [1, 2343, 19815], - [0, 0, 0, 19816, 2523], - [0, 29004, 28992, 1388], - [1, 2343, 19818], - [0, 19819, 19820, 19821, 2537], - [ - 0, 1437, 16064, 1494, 1595, 1700, 29013, 1874, 2020, 5989, 29016, 2613, 15980, 2704, 2720, 2744, 29018, 29020, - 29022, 2991, 29023, 3074, 3157, 29024, 29025, 21420, 3445, 29026, 27534, 3505, 27168, 3919, 4094, 4135, 5513, - 26573, 4562 - ], - [0, 21642, 5254, 1166, 1532, 24491, 2151, 29028, 4193, 4294, 4400, 29030, 1906], - [0, 13326, 200, 3378, 20001, 3358, 6645, 15525, 15208, 1528], - [1, 2343, 19823], - [0, 19828, 19830, 19831, 2537], - [2, 1463, 6961], - "regexp-", - "regexp-tree", - "regjsparser", - [ - 0, 3242, 2714, 4390, 2070, 3368, 3917, 4248, 23433, 1437, 3478, 4707, 23432, 3483, 4135, 9448, 1458, 29037, - 21505, 640, 3727, 29039, 3181, 9451, 9452, 2976, 2979, 2981, 29042, 29044, 4425, 29051, 2215, 29053, 25881, - 29054, 29055, 25888, 29056, 29057, 9459, 4351, 2613, 3386, 3762, 635, 29059, 25893, 26567, 29061, 9462, 29063, - 643, 9465, 3397, 29066, 29067, 9476, 9479, 9539, 19570, 638, 4588, 9496, 9501, 9506 - ], - "@lubien/fixture-beta-package", - [ - 0, 1091, 4384, 1687, 3297, 9542, 3984, 4039, 1483, 3988, 29069, 1092, 29070, 3393, 10630, 29071, 29073, 9515, - 9516, 26037, 29077 - ], - [0, 1161, 5260, 6878, 6661], - [1, 2343, 19833], - [0, 19834, 19840, 19845, 2537], - [ - 0, 1499, 3467, 3157, 1437, 2020, 2742, 1695, 29085, 2205, 1209, 4135, 7094, 3537, 1703, 2720, 3181, 3309, 4294, - 4425, 3505, 29088, 9478, 6045, 14564, 29084, 4562, 29087 - ], - "@ver", - "/eslint-config", - [2, 5401, 19836], - [2, 19835, 19837], - "bumpp", - [0, 1906, 1173, 1282, 1267, 1255, 1245], - " eslint plugin", - [2, 1984, 19841], - "eslint ", - [2, 19843, 1932], - [0, 3378, 29093, 4796, 17507, 13729, 4354, 24313, 5592, 24095, 200, 6953, 29095, 29096, 7242, 4797], - [1, 2343, 19847], - [0, 0, 19848, 19852, 2537], - [ - 0, 29101, 17212, 4856, 9417, 29103, 29104, 12458, 29105, 7637, 29111, 4870, 6503, 4874, 29115, 29117, 20374, - 6510, 7812, 5254, 29122, 6513, 29125, 1009, 1011, 1420, 1429, 1431, 21480, 1437, 1483, 1525, 1610, 20573, 1177, - 1895, 29128, 1903, 1938, 1942, 1953, 1958, 2071, 27125, 2105, 29129, 2613, 2714, 2822, 2858, 29133, 3019, 1209, - 3125, 2899, 3397, 3400, 3478, 13723, 3530, 1894, 3730, 29136, 29087, 4038, 4039, 11054, 4135, 29138, 4170, 4193, - 4232, 18201, 4294, 4474, 91, 29139, 4558, 4562, 29140, 1983, 29141, 29142, 26744, 4749 - ], - "name-", - [2, 19849, 1155], - [2, 4732, 19850], - [0, 4796, 3378, 6661, 3076, 29144, 18280], - [2, 4807, 19851], - [1, 2343, 19855], - [0, 19856, 6538, 2514, 2523], - [0, 2613, 3727, 4135, 4588], - [1, 2343, 19858], - [0, 19859, 19865, 19867, 2487], - [0, 1091, 8531, 1437, 1595, 1676, 2205, 2687, 2745, 2858, 3074, 3157, 3545, 4135, 4207, 4300, 4507, 4588], - [3, 10879, 16], - [2, 19860, 13921], - "importx", - "ink-", - [2, 19863, 1975], - [ - 0, 5087, 4874, 1009, 1011, 668, 29154, 1177, 29155, 29158, 1930, 1938, 1939, 1955, 1982, 2089, 1192, 17312, - 29160, 1894, 4468, 91 - ], - "eslint-test", - [0, 671, 9654, 6661, 13716, 29162, 3390], - [1, 2343, 19869], - [0, 19870, 19872, 2514, 4139], - [0, 15980, 3727], - "esrecurse", - [0, 635, 9516, 9515, 29169, 4384], - [1, 2343, 19874], - [0, 19875, 19876, 19879, 2399], - [0, 9459, 25336, 26567, 21505, 29176, 29174, 3386, 3727], - [0, 9516, 9515, 9448, 3297, 28691, 4248, 4384], - [2, 1006, 13060], - "json-diff", - [0, 3378, 29179, 1612], - [1, 2343, 19881], - [0, 19882, 19885, 19886, 2537], - [0, 1437, 26079, 3919, 3181, 1110, 1615, 4165, 3152, 29185], - [3, 8724, 21], - [2, 19883, 676], - [0, 3421, 4749, 2899, 1177, 4039, 1503, 3479, 2151, 4874, 3696, 1280, 29188, 13983, 1225], - [0, 200, 1523, 29190, 4990, 3378, 29191, 18462, 21003, 4144, 12804, 5957], - [1, 2343, 19888], - [0, 19889, 19890, 19886, 2443], - [0, 4707, 26079, 3530, 1110, 1615, 4165, 3152, 9488], - [0, 1414, 2931, 4749, 1776, 2899, 1177, 23909, 29197, 1159, 17529], - [1, 2343, 19892], - [0, 19893, 8134, 19894, 2523], - [0, 16687, 20789], - [0, 3378, 18462, 3403, 3383, 20052, 17180, 20054, 1508, 200, 6876, 16701, 8435], - "-fb", - "esprima-fb", - [1, 2343, 19898], - [0, 0, 19899, 19900, 2523], - [0, 5087, 4874, 1009, 1011, 10817, 1177, 1895, 1192, 2990, 26230, 4039, 4042, 4468, 91], - [0, 29208, 1745, 29210], - [1, 2343, 19902], - [0, 19903, 19904, 19915, 2537], - [0, 1437, 1479, 1525, 1676, 2720, 3741], - [0, 1429, 2899, 3215, 4255], - "escomplex-js", - "thing.js", - [2, 7067, 19906], - [3, 2912, 12], - "techpreview-launcher", - [2, 19908, 19909], - [2, 17485, 18551], - [2, 813, 19911], - "8.0.0", - [2, 5857, 19913], - [0, 18497, 3378, 29218], - [1, 2343, 19917], - [0, 19918, 19919, 19923, 2487], - [0, 2720, 3776], - [0, 1173, 1212, 1245, 29224, 1280, 3400], - "gulp-ta", - "g-version", - [2, 19920, 19921], - [0, 3378, 200, 8429, 1523, 3888, 8791, 24095, 3409, 29227], - [1, 2343, 19925], - [0, 19926, 19927, 19928, 2487], - [0, 2571, 3183], - [0, 13614, 1159, 9254, 1177, 2708, 2807, 3421, 4103, 4389], - [0, 3410, 16774], - [1, 2343, 19930], - [0, 19931, 19932, 2514, 2487], - [0, 9892, 25886, 29239, 10744], - [0, 4384, 9515, 9516], - [1, 2343, 19934], - [0, 0, 19935, 2514, 2537], - [0, 1429, 2814, 2832, 2899, 29246], - [1, 2343, 19938], - [2, 2009, 10896], - [0, 19947, 19949, 19951, 2537], - "@ethereumjs/config-nyc", - [3, 19939, 19], - [2, 19940, 1894], - [2, 19940, 11540], - [3, 19942, 21], - [2, 19943, 671], - [3, 17583, 11], - "karma-tap", - [0, 1437, 1482, 29251, 2674, 2720, 29253, 4135, 8363, 4747], - "typestrict", - [0, 1366, 1501, 19771, 2556, 620, 3203], - "transactions", - [0, 1965, 3413, 19773], - [1, 2343, 19953], - [0, 19954, 19958, 19959, 2523], - [0, 29260], - "-cryptography", - [2, 9439, 19955], - "rlp", - [0, 5087, 4874, 1009, 1011, 1587, 1177, 1895, 1955, 2675, 1192, 1894, 3720, 4039, 4468, 4474, 91], - [0, 3414, 29263, 200, 5122, 8310, 18496, 89, 202, 91, 5284, 2924, 1192, 4967, 5995, 12660], - [1, 2343, 19966], - "@types/assert", - "cp256k1", - [2, 5252, 19962], - "karma-t", - [2, 19964, 2528], - [0, 0, 19967, 19968, 2487], - [0, 1429, 2258, 2277, 2298, 2300, 23167, 2297, 2878, 2881, 2895, 2900, 2904, 2915, 3006, 2899], - [0, 3415, 6988, 1671, 6901, 29269, 29271], - [1, 2343, 19970], - [0, 19973, 19975, 19978, 2523], - "es-lookup-scope", - "os-tmpdir", - [0, 29276, 29277, 1525], - "qs-iconv", - [ - 0, 48, 53, 87, 94, 1195, 1208, 1212, 1544, 1593, 1610, 1177, 1881, 1938, 2026, 2151, 2182, 29280, 29282, 29283, - 29285, 3421, 3524, 4151, 4535, 4537, 2924 - ], - "eval", - "evaulate", - [0, 1283, 17950], - [1, 2343, 19980], - [0, 0, 0, 19981, 2523], - [0, 2703, 202], - "pause-stream", - "combiner", - [2, 4279, 19983], - [1, 2343, 19990], - "asynct", - "it-is", - "stream-spec", - "ubelt", - [0, 0, 19992, 19993, 2399], - "flatmap", - [0, 5517, 13614, 23237, 19325, 1159, 1414, 9254, 1177, 2807, 2708, 3410, 4103, 4389], - [0, 3417, 3418, 2649], - [1, 2343, 19995], - [0, 0, 0, 19996, 2399], - [0, 1623, 12080, 29300, 13777, 3585], - "addEventListener", - "addListener", - "pub/sub", - "emits", - "publish", - [1, 2343, 20004], - "subscribe", - [0, 20005, 0, 20006, 2537], - [ - 0, 1797, 3467, 4449, 2117, 3445, 4745, 1170, 1495, 4484, 4747, 1759, 2687, 4135, 2089, 1836, 2777, 3181, 4459, - 1477, 3527, 4393, 1480, 2149, 2858, 3404, 4290, 4748, 1763, 4480, 29306, 24759, 29308, 29309, 29310, 29313, - 29317 - ], - [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 9627, 9628, 9659, 9648, 9649, 29319], - [1, 2343, 20013], - "-browser", - "-browsers", - [2, 7177, 20009], - "sauce-", - "sauce-test", - [0, 20017, 20020, 20021, 2537], - "EventEmitter", - [2, 20014, 1276], - [2, 20014, 1278], - [ - 0, 14022, 8697, 29324, 1573, 1677, 2102, 2105, 15261, 2179, 2070, 11935, 29325, 14024, 29328, 11938, 11940, - 11943, 3093, 29330, 3478, 29334, 4025, 4039, 4174, 29335, 14025, 4747 - ], - "Events", - "reactor", - [0, 29338, 13103, 4019, 4232, 4255, 4257, 4384, 3348, 4707], - [0, 4504, 16237, 20049, 5472], - [1, 2343, 20023], - [0, 20024, 20025, 20026, 2523], - [0, 29358, 8818, 5941, 28935, 26865, 13824, 12285, 3509, 29349], - [0, 29355, 29359, 29362, 4874, 4493, 91, 1984], - [0, 5592, 2210, 3452, 29365, 29367, 29368, 29369, 29370, 3422, 1118, 27662, 1745], - [1, 2343, 20028], - [0, 20029, 20030, 20031, 2537], - [0, 29358, 29377, 2822, 12285, 8126], - [0, 29355, 7637, 29380, 3297, 4493, 91, 1984], - [0, 5592, 1118, 2210, 1745, 27662, 29370, 3422, 3452, 29369, 29365, 29368, 29367, 28360, 8124], - [2, 3159, 591], - [2, 13788, 20032], - "human-", - [2, 20034, 7073], - [1, 2343, 20037], - [0, 0, 10435, 2514, 4139], - "final-newline", - [2, 4293, 20038], - [3, 4759, 11], - [1, 2343, 20045], - "get-node", - "is-in", - "is-in-ci", - [0, 0, 20046, 20048, 2523], - [0, 1906, 1166, 1209, 3130], - "is-running", - [0, 3048, 3426, 2051, 3583, 6778, 5286, 5258, 6805, 29390, 6422, 1858, 1388], - "subprocess", - "fork", - "execfile", - "bin", - [1, 2343, 20055], - "binaries", - [0, 0, 20056, 20057, 2537], - [0, 1389, 2323, 2346, 27608, 29396, 2436, 2447, 2463, 2494, 2496, 2530, 2272, 2839, 2297, 2881, 2900, 2899], - [0, 3048, 3428, 4160, 3135], - [1, 2343, 20059], - [0, 0, 20060, 20066, 2487], - [ - 0, 13614, 29404, 1159, 1593, 22932, 1855, 1177, 2133, 2159, 2070, 29406, 2569, 29410, 2708, 2762, 19073, 3206, - 3410, 3421, 4103, 23948, 4135, 19729, 4389 - ], - "stdio", - "stderr", - "drain", - "flush", - "3584", - [0, 3430, 7123, 3048, 1646, 3721], - [1, 2343, 20068], - [0, 0, 20069, 20070, 2537], - [0, 13614, 13616, 1177, 14741, 29416, 2741, 4389], - [0, 6801, 3432, 6964, 1858], - [1, 2343, 20073], - "-jsdom-abstract", - [0, 0, 20077, 20078, 4139], - "expect-", - [2, 20074, 594], - [2, 552, 20075], - [0, 3421, 1429, 2899, 1596, 3202, 29424], - [0, 1697, 3403, 7318, 29426, 3038, 3205, 1758, 3743, 3048, 7002, 29428, 29429, 6692, 3639, 6803], - [1, 2343, 20080], - [0, 20081, 20084, 20086, 2487], - [0, 1417, 7272, 13609, 29440, 2569, 3433], - "mkal", - [2, 1949, 20082], - [0, 13613, 13614, 1389, 1177, 2133, 2159, 13619, 2571, 3206, 3410, 3421, 4103, 6810, 4389], - "pkg-pr-new", - [0, 7276, 3426, 6789, 2051, 7107, 6970, 7288, 6849, 6763, 6422, 1858], - [1, 2343, 20089], - "type-check", - [0, 20090, 20091, 20092, 2487], - [0, 1417, 7272, 13609, 29440], - [0, 13613, 13614, 20492, 1159, 9254, 1177, 2159, 13619, 2708, 3410, 3421, 4103, 4389], - [0, 6944, 6694, 6801, 3437, 6693, 7221, 6615, 7194, 1858, 3048, 3432, 6422, 6763], - "orms", - [1, 2343, 34459], - [0, 29450], - "array-f", - [0, 3421, 2899, 1177, 1954, 1938, 1958, 1903, 1948, 1970], - "array-flatten", - "setprototypeof", - "merge-de", - [1, 2343, 20104], - "scriptors", - [2, 20100, 20102], - [0, 20107, 11686, 20108, 2537], - "-password", - [2, 16722, 20105], - [0, 29456], - [0, 3441, 3046, 6985, 16114], - [1, 2343, 20110], - [0, 20111, 20112, 20113, 2537], - [0, 29462, 29464, 1138, 1457, 1615, 2687, 4459], - [0, 21122, 4874, 2675, 2990, 1894, 4039, 91], - [0, 2070, 2282, 1444], - [1, 2343, 20115], - [0, 20116, 20118, 20119, 2523], - [0, 29474, 3029], - [2, 30722, 20731], - [0, 6503, 29476, 1503, 2272, 2899, 3203, 3210, 3421, 4474, 91], - [0, 29478, 28794, 29479, 24996, 29480, 25004, 20181, 29481, 29483, 6667], - "automatically", - [2, 1163, 8623], - [3, 20121, 11], - [2, 20122, 7120], - [2, 20121, 2353], - [1, 2343, 20126], - [0, 20127, 8002, 20128, 2523], - [0, 29488, 29490, 28428, 24488, 28429, 27908], - [ - 0, 1896, 3445, 3456, 8423, 8427, 6587, 8430, 8428, 10441, 8429, 1388, 6038, 8435, 8433, 1002, 10443, 10446, - 7058, 1614, 2978, 1451, 3729, 5351, 2090 - ], - [1, 2343, 20130], - [0, 20131, 20132, 20133, 2523], - [0, 2096, 2185, 3157, 3445, 4400], - [0, 1166, 2020, 1906], - [ - 0, 13326, 200, 1896, 3445, 3456, 8423, 8427, 6587, 8430, 8428, 10441, 8429, 1388, 6038, 8435, 8433, 1002, 10443, - 10446, 1614, 2978, 1451, 3729, 5351, 2090 - ], - [1, 2343, 20135], - [0, 20136, 20138, 20139, 2487], - [0, 29501, 29505, 12285], - "express3", - [0, 5087, 7637, 8818, 1170, 29509, 1192, 2845, 29512, 3244, 1894, 4232, 4468, 4474, 91], - [0, 3452, 8124, 5576, 1170, 4967, 1388, 3212, 91], - "partials", - [1, 2343, 20142], - [0, 20143, 20144, 20145, 2523], - [0, 1677, 2639, 2854, 3105, 3744, 89, 3824, 1155], - [ - 0, 68, 470, 1173, 1248, 15643, 1596, 1177, 1879, 1881, 1938, 1947, 1958, 1959, 2200, 2626, 1192, 3363, 3400, - 705, 4008, 7707 - ], - [0, 8124, 3452, 29521, 1936, 1745, 1179], - "unless", - [2, 2032, 20146], - [1, 2343, 20149], - [0, 20152, 20153, 20154, 2443], - "authn", - "authz", - [0, 6825, 3263], - [0, 2070, 705, 4389], - [0, 3455, 29528, 23196, 29531], - [1, 2343, 20156], - [0, 0, 5795, 2514, 2487], - [1, 2343, 20158], - [0, 20159, 20160, 2514, 4139], - [0, 29539, 705], - [0, 1173, 1267, 1177, 1879, 1938, 1947, 1959], - [1, 2343, 20162], - [0, 20163, 9839, 20128, 34352], - [0, 2755], - "caching", - "expressjs", - [1, 2343, 20167], - [0, 20168, 20169, 20172, 2537], - [0, 4720, 3183], - [0, 29551, 4384], - "cjs-mock", - "hoare", - [0, 7233, 7058, 5675, 57, 7119, 200, 1523], - "tRPC", - "RPC", - "express.js", - [2, 10988, 16957], - [1, 2343, 20180], - "fully-typed", - "type-safe", - [0, 20187, 20191, 20192, 4139], - "pi", - "typed-api", - "express-api", - "http-api", - "client-s", - [2, 20185, 2847], - [0, 1637, 29559, 3561], - "unit-testing", - [2, 13843, 5576], - "web-de", - [0, 1175, 1193, 1245, 1257, 1264, 1628, 1192, 4307, 2924], - [0, 6829, 11337, 2054, 16862, 6707, 7293, 2924], - "velopment", - [2, 20190, 20193], - "web-api", - [1, 2343, 20197], - [0, 20198, 20199, 20200, 2443], - [0, 29566, 29567, 4717, 20088, 19190, 26007], - [0, 29569, 2899], - [0, 14690, 6802, 29572, 200], - [3, 8286, 12], - [2, 20201, 364], - "lient-", - "redirects", - [2, 20203, 20204], - [2, 13224, 20205], - [2, 20201, 20206], - [3, 20207, 13], - [1, 2343, 20210], - [0, 20213, 20214, 20216, 4139], - "reset-classic", - [2, 20208, 20211], - [0, 1437, 1477, 1480, 29018, 16232, 3074, 29581, 4290], - [0, 4874, 1166, 2188, 29583, 4481, 1906], - "sanitization", - [0, 200, 1478, 6787, 7009, 6048, 7201, 6938, 3656, 6753, 6853, 3730, 7023, 6703, 6921], - [1, 2343, 20218], - [0, 20219, 20220, 20222, 2399], - [0, 1834, 29590, 29591], - [0, 2012, 2530, 2272, 3102, 3159, 2899, 3760, 4170, 4600], - "openapi3-ts", - [0, 1149, 5957, 12804, 2940], - [3, 19441, 15], - [2, 20223, 6643], - [1, 2343, 20228], - "wagger-ui-express", - [2, 5051, 20226], - [0, 20229, 20230, 20231, 2443], - [0, 1149, 1362, 18443, 9421, 1209, 3507, 29600, 29601], - [0, 1414, 1437, 2070, 2899, 3230, 3259, 3519, 4135, 4170, 4193, 4246], - [0, 3469, 27812, 18035, 3259, 25638, 29605, 7827, 3230], - "camelize-ts", - [1, 2343, 20234], - [0, 0, 0, 20235, 2537], - [0, 202, 888, 364, 1237], - [1, 2343, 20237], - [0, 20238, 11686, 20239, 2487], - [0, 19972, 25493], - [0, 6639, 6884, 4571, 29615, 3403, 3741, 29616], - [1, 2343, 20241], - [0, 0, 20242, 20244, 2537], - [0, 4856, 4864, 6503, 4874, 4891, 26584, 1429, 2020, 2151, 2899, 3377, 4474, 2924, 4707], - "snakify-ts", - [0, 5194, 6778, 29622, 29624, 18135, 1871, 1283, 8958], - [3, 18009, 14], - [2, 20245, 4990], - [2, 4120, 7020], - [3, 8116, 9], - [1, 2343, 20253], - "pecification", - [2, 20248, 20250], - [2, 4364, 1745], - [0, 0, 0, 20254, 2523], - [0, 3475, 5317, 29632, 29633, 3474, 9006, 4967, 1388], - [1, 2343, 20256], - [0, 20257, 20258, 20259, 2523], - [0, 29638, 1525, 2131, 2742, 2975, 4135, 4449, 36872], - [0, 19181, 442, 19344, 9237, 18491, 4874, 5254, 6520, 36890, 1009, 1011, 1177, 26698, 4039, 91], - [0, 200, 29641, 19101, 20001], - [1, 2343, 20261], - [0, 20264, 20265, 20267, 2523], - "-symbols", - [2, 3426, 20262], - [0, 3480], - [0, 4874, 1166, 1702, 4481, 1906], - "is-extendable", - [ - 0, 1862, 2018, 2013, 13771, 2016, 26349, 6868, 20000, 15535, 19138, 29647, 29648, 6703, 29649, 1803, 1388, 965, - 1149, 7003, 6567, 1362 - ], - "array-slice", - "benchmarked", - [1, 2343, 20271], - [0, 0, 20274, 20276, 2523], - "for-own", - "kind-of", - [0, 1166, 1437, 1702, 17474, 29654, 17477, 4481, 1906], - "props", - [0, 1862, 3053, 29656, 6703, 6910, 21369, 7253, 25824, 29657, 1149, 7003, 6567, 1540, 6994, 12804, 1362], - [1, 2343, 20278], - [0, 20279, 20285, 20286, 2537], - [0, 2017, 3480], - [2, 20284, 29685], - [2, 1884, 2924], - [3, 4679, 10], - [2, 20282, 3031], - "@pa11y/", - [0, 13789, 5366, 4874, 1317, 1701, 1702, 17474, 18669, 29654, 17477, 4481, 4494, 91, 1906], - [ - 0, 1862, 3768, 28483, 7051, 6760, 6994, 6925, 7094, 6882, 6870, 7072, 27334, 27338, 29664, 12692, 5957, 1149, - 7003, 6567, 1362 - ], - [1, 2343, 20288], - [0, 0, 20289, 20291, 2443], - [0, 1166, 1702, 17474, 21638, 4193, 17477, 4481, 1906], - "@types/yauzl", - [0, 1862, 17481, 1851, 29672, 1149, 7003, 6567, 6901, 17480, 12618, 1362], - [1, 2343, 20293], - [0, 20294, 20295, 20296, 2537], - [0, 2070], - [0, 1192, 1894, 10761], - [0, 1745, 3709, 29679, 6774], - [1, 2343, 20298], - [0, 20299, 20300, 20301, 2523], - [0, 20280, 1169, 1324, 1525, 1842, 2929, 3257, 3357, 3758, 4135], - [0, 1414, 1177, 29689, 2899, 29691, 10627, 4193], - [ - 0, 6653, 7320, 19748, 31152, 13716, 13428, 11346, 1169, 16790, 200, 33055, 29727, 34150, 26632, 3482, 3758, - 11937, 34151, 5472, 1155, 34152 - ], - [1, 2343, 20303], - [0, 20307, 20308, 20309, 2537], - "gulp-jsdoc3", - [2, 2462, 6504], - [2, 4598, 353], - [0, 29069, 9510, 9479, 9539, 643, 9448, 29051, 21505, 3386, 3393, 9462, 3397, 3727, 29698, 29697, 4248, 4390], - [0, 635, 9516, 9515, 2613, 29169, 3297, 29701, 4039, 4384], - [0, 6666, 3378, 3358], - [1, 2343, 20311], - [0, 20313, 20315, 20316, 4139], - "color-support", - [0, 22970, 22971, 29707, 1668, 18145, 29708, 1209, 3074, 3093, 3478, 3545, 4507, 29711], - [2, 13721, 15526], - [0, 13789, 11477, 4870, 4874, 29717, 977, 1701, 2096, 2182, 29721, 3505, 29722, 4494, 91, 1906], - [ - 0, 27968, 5351, 13755, 5122, 1002, 23992, 4202, 12197, 29724, 29726, 13008, 8745, 8340, 6398, 17461, 3758, 3195, - 158, 8221, 8924, 1936, 29727, 23691, 20630, 20631, 18048, 20637, 21881 - ], - "console.log", - [1, 2343, 20320], - "timestamp", - [0, 0, 20321, 20322, 2537], - [0, 4874, 7677, 22839, 33261, 35609, 1177, 1938, 1942, 2832, 91, 1983, 1984], - [0, 4967, 5995, 5354, 4963, 181, 6624, 24456, 23362, 27448], - [1, 2343, 20324], - [0, 0, 20326, 20331, 2443], - "pure-rand", - [0, 87, 5583, 811, 816, 1177, 2193, 2899, 3253, 26777, 3421, 4042, 4073, 4167], - [3, 16596, 12], - [2, 20327, 2024], - "poisoning", - [2, 20327, 20329], - [0, 15008, 25386, 25388, 16518], - "based", - "based testing", - [2, 4635, 20333], - [2, 11861, 10428], - "quickcheck", - [1, 2343, 20338], - [0, 20343, 5795, 20344, 2487], - "jscheck", - "jsverify", - "fuzz", - "fuzzer", - [0, 27404, 1437, 12084, 2021, 2088, 2185, 2205, 2654, 2863, 3157, 3173, 3490, 814, 29742, 4562, 4748], - [0, 3487, 5995, 200, 29744, 5592], - [1, 2343, 20346], - [0, 20352, 20356, 20357, 2523], - "@fast-c", - "sv/format", - [2, 20347, 20348], - "@fast-csv/", - [2, 20350, 1644], - [0, 29749, 3084, 4339], - "writer", - "csv writer", - "CSV", - [0, 442, 1759, 1177, 1895, 1938, 1953, 1955, 1958, 2203, 1209, 2899, 1894, 4419, 1531, 91], - [0, 3487, 5576, 10768, 29752, 36, 5995, 5592, 4030, 1781], - [1, 2343, 20359], - [0, 0, 20360, 20361, 2487], - [0, 1362, 1429, 1506, 2899], - [0, 12804, 4166], - "psql", - [1, 2343, 20364], - [0, 20367, 34487, 20379, 34352], - [3, 19185, 12], - [2, 20365, 4262], - [0, 97, 5663, 1620, 29762, 29765, 4729], - "macchiato", - [2, 20365, 20368], - "erge2", - [2, 6502, 20370], - "@types/pi", - "comatch", - [2, 20372, 20373], - "bencho", - "rmlnc", - [2, 16693, 20376], - "fdir", - [0, 6599, 5131, 5592], - "hereby", - [1, 2343, 20383], - "snap-shot-it", - [0, 20386, 0, 20387, 2523], - "imple", - [2, 20384, 1744], - [0, 18089], - [0, 1936, 57, 12075, 29790, 10658, 2062, 29791, 29792, 15512, 3493, 1753, 29793, 29794, 1644, 4141], - [1, 2343, 20389], - [0, 0, 20390, 2514, 2487], - [0, 2899, 1177, 2759, 1317, 29801, 1311, 1954, 1938, 1958, 1903, 1970], - [1, 2343, 20392], - [0, 20393, 20395, 20396, 2399], - [0, 29806, 4578, 1433], - "strnum", - [0, 1429, 2899, 3095, 3752, 1434, 29810], - [0, 2026, 1544, 1303, 20150, 5165], - [1, 2343, 20399], - "js2xml", - [0, 20401, 20402, 20403, 4139], - "json2xml", - [0, 3501], - [0, 3095, 2899, 1429, 1434], - [0, 3495, 3497, 1303, 20150, 5165, 13445], - [1, 2343, 20405], - [0, 20406, 20407, 20408, 2537], - [0, 1433], - [0, 2899, 1429, 1434], - [0, 3495, 2703, 1303, 20150, 5165, 29824, 6875], - "avvio", - "toad-cache", - [1, 2343, 20421], - "find-my-way", - "@fastify/", - [2, 20413, 1851], - "-warning", - [2, 3729, 20415], - "abstract-", - [2, 20417, 6807], - "-my-request", - [2, 13318, 20419], - [0, 20429, 20407, 20430, 4139], - "-json-parse", - [2, 18112, 20422], - [3, 16781, 12], - "ringify", - [2, 20424, 20425], - [2, 8530, 4643], - [2, 20413, 20427], - [0, 29829, 3501], - [0, 3495, 1303, 20150, 5165, 20151, 14374, 3424, 28438], - [1, 2343, 20435], - "-compiler", - [2, 20426, 20432], - [2, 20413, 20433], - [0, 20438, 20439, 20430, 2523], - "h2url", - "ajv-i18n", - [0, 29835, 3424, 1433, 26413, 4578], - [0, 3095, 2899, 1429, 3752, 1434], - [1, 2343, 20448], - "autocannon", - "fast-json-", - "body", - [2, 20442, 20443], - "merge-patch", - [2, 8530, 20445], - "branch-c", - [0, 0, 7878, 20455, 2537], - "omparer", - [2, 20447, 20449], - [2, 3125, 1276], - "fluent-", - [2, 20452, 2845], - [2, 20413, 3697], - [0, 3495, 15393], - [1, 2343, 20457], - [0, 20458, 0, 20459, 2523], - [0, 3729, 614], - [0, 6804, 3403], - "piscina", - "@vercel/n", - [1, 2343, 20483], - "@vercel/ncc", - "loader-", - [2, 20464, 8791], - [3, 12397, 15], - [2, 20466, 2924], - "@umijs/b", - "abel-", - "preset-umi", - [2, 20469, 20470], - [2, 20468, 20471], - [2, 1221, 18104], - [2, 4524, 20473], - [3, 1233, 25], - [2, 20475, 15301], - "tyled-", - [2, 20477, 4963], - [2, 5584, 20478], - "@umijs/c", - "ase-sensitive-paths-webpack-plugin", - [2, 20480, 20481], - [0, 0, 9264, 20486, 4139], - "ader-runner", - [2, 13513, 20484], - [0, 1388, 1389, 3403], - [1, 2343, 20488], - [0, 0, 20489, 20497, 2523], - [0, 1906, 1166, 4481], - [2, 19523, 3036], - [2, 5613, 4565], - [2, 5613, 3053], - [2, 5613, 6645], - [2, 5613, 6913], - [2, 18996, 4237], - [2, 4385, 57], - [0, 3403, 3504, 29854, 2090, 17996, 2150, 17462, 16503, 7318, 4262], - [1, 2343, 20501], - "anything", - "protocol", - [0, 0, 11332, 20502, 2537], - [0, 3403, 18104, 2090, 4014, 28977, 29862, 3506, 15174, 614, 594, 364, 6805, 6422, 1858, 2741, 13735, 4354], - [1, 2343, 20504], - [0, 0, 20505, 20506, 4139], - [0, 29867, 5535, 4874, 5254, 7677, 26881, 4201, 91, 1984], - [0, 2026, 6961, 4082, 7433], - "fbjs-css-vars", - "setimmediate", - [1, 2343, 20510], - [0, 0, 20511, 2514, 2523], - [0, 4874, 7677, 1446, 668, 1177, 1905, 2807, 1894, 91, 4543, 1984, 28862], - [1, 2343, 20513], - [0, 20518, 20530, 11581, 2537], - "@skypack/package-check", - "dead-code-elimination", - [2, 9403, 20515], - [2, 7911, 20516], - [0, 2760, 2856, 18545], - "in web", - "in javascript", - "in react", - "Plug & Play", - [3, 11608, 13], - [2, 7519, 4963], - "ui component", - [2, 16914, 6286], - "advanced ", - [2, 20527, 5983], - "scan", - [0, 2152, 2899, 3699], - "scanner", - [1, 2343, 20534], - "phonebook", - [0, 20535, 20552, 20554, 2537], - [0, 29882, 29884, 3486, 3923, 23952, 3348], - "autofillotp", - "share", - [2, 7426, 17357], - [2, 2998, 20538], - "mylocation", - [2, 13735, 20540], - "colorpicker", - "wakelock", - "WhatsappShare", - "NetworkConnection", - "TextToSpeech", - "VoiceRecognition", - "SnapScanner", - "Network", - "Monitor", - [2, 20549, 20550], - [0, 4874, 1398, 2018, 1894, 4389, 91], - "View360", - [0, 2636, 1179], - [1, 2343, 20556], - [0, 20557, 20558, 20559, 2399], - [0, 1620, 10752, 29893, 29894, 29895], - [ - 0, 53, 8229, 87, 442, 5583, 1193, 29897, 27401, 1377, 1389, 1424, 1505, 1177, 2193, 2203, 1192, 2780, 11348, - 1783, 29899, 1894, 3754, 4042, 8849 - ], - [0, 2636, 29901, 29903, 11812, 1746, 13814], - [1, 2343, 20563], - [3, 5085, 23], - [2, 20561, 582], - [0, 0, 20564, 2514, 2537], - [0, 1362, 29908, 1429, 29913, 1506, 2899, 3697], - " program", - [2, 6564, 20565], - "data ", - [2, 20567, 6355], - [1, 2343, 20570], - [0, 20571, 20572, 20578, 2537], - [0, 25624, 29919, 29923, 29920, 29918, 29928], - [0, 28042, 29934, 1149, 1362, 1499, 29933, 91, 1984, 23539], - "dequal", - "glob-", - [2, 20574, 3508], - [3, 16396, 12], - [2, 20576, 3508], - [0, 18035, 29937, 3519, 14871, 25638, 14873, 29938], - [1, 2343, 20580], - [0, 20581, 20582, 20583, 2523], - [0, 3524, 4237, 4709], - [0, 1173, 1175, 1178, 1257, 1264, 1267, 14237, 1177, 1881, 1935, 1938, 2126, 29945, 1192, 2774, 29946, 10622, 4039], - [0, 3520, 3521, 13392], - "detect-libc", - [1, 2343, 20587], - "thread", - [0, 20588, 20589, 20590, 2443], - [0, 2057, 2151, 29952, 22667, 3730, 705, 17047, 4707], - [0, 1177, 2276], - [0, 3521, 29727, 3364], - [1, 2343, 20592], - [0, 20593, 20594, 20590, 2523], - [0, 1863, 2057, 2151, 29952, 22667, 3730, 705, 17047, 4707], - [0, 1177, 2276, 824], - "@pinojs/redact", - [1, 2343, 20599], - "figure", - "fallback", - [0, 20600, 20601, 20602, 2523], - [0, 1137, 1512, 1543, 29964, 1591, 16442, 2765, 3183, 3456, 3459, 6331, 29965, 3547, 3741, 3762, 705, 4167, 4562], - [0, 18007, 1177, 1900, 1903, 1938, 1954, 1958, 1970, 2759], - [0, 200, 1591, 3525, 29969, 29971], - [1, 2343, 20604], - [0, 0, 11488, 2514, 2443], - [1, 2343, 20606], - [0, 0, 0, 20607, 4139], - [0, 7009, 1512, 6983, 200, 7201], - [1, 2343, 20609], - [0, 0, 20610, 20612, 2523], - [0, 1177, 27275, 2398, 2899, 3421], - "filesaver", - [0, 2070, 3529, 3530], - "saveas", - "blob", - [1, 2343, 20616], - [0, 7936, 7938, 7939, 4139], - [1, 2343, 20618], - [0, 0, 20620, 20625, 34352], - "strtok3", - [0, 1166, 29991, 4481, 27659, 1906], - "token-types", - "-extra", - "-extras", - [2, 15149, 20623], - [0, 19138, 7241, 1862, 6567, 29994, 12918, 202, 21244, 28067, 6270, 353, 4719, 21009, 6715, 1149, 7003, 6778, 1362], - "@tokenizer/token", - "commonmark", - "noop-stream", - [1, 2343, 20633], - "pic", - "picture", - "photo", - [0, 20692, 20693, 20765, 2399], - "video", - "exif", - "macho", - "jpg", - "apng", - "gif", - "flif", - "xcf", - "cr2", - "cr3", - "orf", - "arw", - "dng", - "nef", - "rw2", - "tif", - "bmp", - "icns", - "jxr", - "psd", - "indd", - "rar", - "7z", - "mp4", - "mid", - "mkv", - "webm", - "mov", - "avi", - "mpg", - "mp2", - "mp3", - "m4a", - "ogg", - "opus", - "flac", - "wav", - "amr", - "epub", - "mobi", - "rtf", - "woff", - "woff2", - "eot", - "ttf", - "otf", - "ico", - "flv", - "xz", - "xpi", - "cab", - "deb", - "rpm", - "Z", - "lz", - "cfb", - "mxf", - "mts", - [0, 30001, 30004, 30007, 30011, 20416, 30015, 30017, 18730, 20595, 30018, 30019], - [ - 0, 5517, 36559, 30022, 4874, 1090, 30024, 28400, 1409, 1676, 21594, 1177, 1938, 1953, 1954, 1958, 2020, 30025, - 30027, 2702, 1192, 3073, 3079, 30028, 29197, 28941, 3697, 3752, 3756, 4039, 4135, 4238, 30029, 4294, 4389, 4431, - 4474, 4481, 91, 4709 - ], - "webassembly", - "blend", - "bpg", - "docx", - "pptx", - "3gp", - "j2c", - "jp2", - "jpm", - "jpx", - "mj2", - "aif", - "odt", - "ods", - "odp", - "heic", - "pcap", - "dsf", - "lnk", - "voc", - "ac3", - "3g2", - "m4b", - "m4p", - "m4v", - "f4a", - "f4b", - "f4p", - "f4v", - "mie", - "qcp", - "asf", - "ogv", - "ogm", - "oga", - "spx", - "ogx", - "ape", - "wv", - "cur", - "nes", - "crx", - "ktx", - "dcm", - "mpc", - "arrow", - "shp", - "aac", - "mp1", - "s3m", - "xm", - [2, 12207, 35471], - "skp", - "lzh", - "pgp", - "chm", - "3mf", - "zst", - "jxl", - "vcf", - "jls", - "pst", - "dwg", - "parquet", - "arj", - "cpio", - "ace", - "avro", - "icc", - "fbx", - "vsdx", - [0, 2062, 2942, 3101, 1781], - [1, 2343, 20767], - [0, 0, 20768, 20769, 2537], - [0, 1177, 1895, 19286, 1954, 1955, 2675, 1192, 1894, 4400], - [0, 3378, 30036, 30037, 3304, 30038], - [1, 2343, 20771], - [0, 20772, 20773, 20774, 2523], - [0, 3549], - [0, 1177, 25843, 91], - [0, 158, 26020, 1687], - [1, 2343, 20776], - [0, 20777, 20778, 20779, 2487], - [0, 30055], - [0, 1906, 1166, 4481, 4400], - [ - 0, 3383, 1781, 7914, 3378, 13864, 2100, 2104, 2105, 7076, 6614, 6605, 2090, 7193, 3529, 814, 5933, 7029, 6857, - 7204, 4647, 6821, 3403 - ], - [1, 2343, 20781], - [0, 8400, 8134, 20782, 2523], - [ - 0, 4750, 3383, 2090, 2100, 2104, 2105, 7076, 6614, 6605, 7193, 3529, 814, 5933, 7029, 6857, 7204, 4647, 6821, - 3403 - ], - [1, 2343, 20784], - [0, 0, 10435, 20785, 2523], - [0, 18523, 2041, 6661], - "locate-path", - [1, 2343, 20790], - "-magic", - [2, 1981, 20788], - [0, 20791, 0, 2514, 2523], - [0, 30071], - [1, 2343, 20793], - [0, 20794, 20795, 20798, 2443], - [0, 10780, 1301, 4736], - [0, 1389, 2899, 16112, 4770], - "detect-file", - "resolve-dir", - [0, 13336, 1388, 16718, 2072, 57, 6523], - [1, 2343, 20802], - "dir-polyfill", - [2, 4571, 20800], - [0, 20803, 20804, 20805, 2537], - [0, 1104], - [0, 1177, 1889, 1954, 2022, 2899, 3421, 91], - [0, 1851, 1932, 2541], - [1, 2343, 20807], - [0, 20808, 8134, 20809, 4139], - [0, 30088], - [0, 23869, 30090, 3547, 23868, 30091, 4718, 1871, 30092, 30093, 30094], - [1, 2343, 20811], - [0, 0, 20812, 20813, 34352], - [0, 1429, 2759, 2899, 1899], - [0, 23869, 30090, 3547, 23868, 23877, 2712], - [1, 2343, 20815], - [0, 20816, 11488, 20817, 4139], - [ - 0, 30110, 30115, 30106, 30122, 1112, 1149, 29183, 1457, 30117, 1525, 1606, 1673, 1676, 1836, 2015, 30104, 3188, - 3278, 30107, 30108, 30119, 30112, 30120, 8630, 4135, 4232, 4243, 30105, 2822 - ], - [ - 0, 200, 21110, 21111, 2041, 3548, 30124, 3073, 1781, 2026, 2556, 30125, 2999, 30127, 30128, 30130, 30131, 30132, - 30134, 7047, 22850, 30135, 27662, 13325, 5258, 30137, 30139, 30140, 30141, 30142, 20997, 20998, 28845, 4345, - 30143, 3363, 30144, 17979, 30147, 27838, 30140, 30148, 2134, 28413, 30149, 13539, 3111, 21102, 30153, 30155, - 30156, 30158, 24093, 17878, 1605, 20999, 30159 - ], - [1, 2343, 20854], - "@firebase/app", - [3, 20819, 11], - "uth", - [2, 20820, 20821], - "@firebase/", - [2, 20823, 614], - [2, 20823, 13901], - [2, 20823, 18035], - "nalytics", - [2, 20820, 20827], - [2, 20819, 2063], - [3, 20829, 14], - [2, 20830, 553], - "firestore", - [2, 20823, 20832], - [3, 20833, 11], - "unctions", - [2, 20834, 20835], - [2, 20823, 8899], - [3, 20829, 15], - [2, 20838, 14044], - [2, 20822, 4097], - [2, 20823, 6681], - [2, 1161, 10653], - [2, 20823, 20842], - "remote-", - [2, 20844, 1541], - [2, 20823, 20845], - [2, 20825, 4097], - [2, 20826, 4097], - [2, 20828, 4097], - [2, 20829, 4097], - [2, 20833, 4097], - [2, 20836, 4097], - [2, 20837, 4097], - [0, 0, 20855, 20856, 2537], - [0, 1389, 1400, 1544, 1177, 1895, 3421, 1894, 3758, 4151, 30164, 4389], - [0, 30166, 14355, 14356, 30167, 30168, 57, 18048, 29895, 30170, 3549], - [2, 20841, 4097], - [2, 20843, 4097], - [2, 20846, 4097], - [1, 2343, 20861], - [0, 20864, 20865, 20866, 34352], - "Firebase", - "realtime", - [0, 4477], - [0, 1835, 1192, 2784, 2796, 4227], - [0, 2924, 4749, 24753, 24754], - [1, 2343, 20877], - "@fastify/b", - "usboy", - [2, 20868, 20869], - [3, 20848, 19], - [2, 20871, 553], - "farmhash-modern", - "jwks-rsa", - "@google-cloud/firestore", - [3, 20875, 14], - [0, 0, 0, 20878, 2537], - [ - 0, 3552, 28100, 4796, 7191, 7287, 2062, 6824, 1161, 7242, 163, 6698, 5260, 6646, 7117, 3378, 6878, 6661, 6666, - 7037, 7090, 7293, 6950, 7086, 6573, 664 - ], - [3, 20819, 12], - [1, 2343, 20881], - [0, 20896, 20898, 20899, 2523], - "i-documenter", - [2, 20879, 20882], - [3, 20840, 15], - [2, 20884, 553], - [2, 4853, 6641], - "rebase-token-generator", - [2, 16785, 20887], - [2, 16936, 4007], - [3, 2113, 11], - "ken-generator", - [2, 20890, 20891], - "http-me", - "ssage-parser", - [2, 20893, 20894], - [0, 1170], - "admin", - [0, 4072, 4474, 91], - [0, 30190, 30191, 30192, 30193, 30194, 30198, 30200, 30202, 5592, 30203, 30204, 30207, 30208, 5995, 4967, 91], - [1, 2343, 20901], - [0, 6263, 20906, 20907, 2537], - "-sql-connector", - [2, 6599, 20902], - [2, 20876, 20903], - [2, 20876, 11631], - [ - 0, 48, 53, 68, 83, 85, 87, 14128, 5583, 816, 6373, 1178, 1193, 1198, 30214, 1610, 1652, 1745, 1177, 1881, 1938, - 2126, 29945, 2675, 1192, 2990, 29946, 1894, 30216, 3776, 4042, 4071, 4073, 4131, 4172, 30217, 91, 4585 - ], - [0, 4315, 3555, 1832, 30219, 7165, 30220, 89, 2124, 91, 30223, 30225, 30227, 1473, 7208], - "async-lock", - "cjson", - "-in-any-order", - [2, 1693, 20910], - "exegesis", - [2, 20912, 3228], - "gaxios", - [1, 2343, 20919], - "auth-library", - [2, 10692, 20916], - "libsodium-wrappers", - [0, 0, 20920, 20923, 2523], - [0, 30236, 30239, 30240, 30241, 1177, 30242, 91], - "proxy-agent", - "sql-formatter", - [0, 30245, 4627, 5398, 8190, 8191, 8193, 30247], - "stream-chain", - "stream-json", - [1, 2343, 20927], - [0, 20929, 20930, 20932, 2487], - "superstatic", - [0, 1149, 1676], - [0, 1192], - "triple-beam", - [0, 27, 13397, 6731], - "-analytics", - [2, 14566, 20933], - [2, 4562, 8683], - [1, 2343, 20939], - "cdn", - "ssl", - [0, 20941, 0, 20944, 4139], - "hosting", - [0, 3266, 3527, 4228], - "hronization", - [2, 15001, 20942], - [0, 1623, 3561, 22292, 7121, 57, 30258, 353, 24798, 5198], - [1, 2343, 20946], - [0, 20947, 20952, 20953, 4139], - [0, 3681, 3688], - "alce", - [2, 1708, 16580], - "extend-", - [2, 20950, 3048], - [0, 4874, 1177, 1895, 30265, 3561, 1894, 91], - [0, 1623, 3561, 6425, 30268, 3563], - [1, 2343, 20955], - [0, 20956, 20957, 20958, 2537], - [0, 1457, 5314, 2151, 3527, 3616, 30274, 15245, 30275, 4207, 27921, 4747], - [0, 1166, 1414, 1596, 1177, 30279, 2203, 3561, 3613, 1894, 4337, 3348], - [0, 200, 3561, 22147], - "@types/rimraf", - [2, 13777, 12798], - [1, 2343, 20962], - [0, 20963, 0, 20964, 2487], - [0, 30286, 205, 208, 218, 30287], - [0, 1473, 14186, 1623, 4964, 6564, 30289, 30290, 30291, 29428, 3561, 6425, 6616, 30292, 17540, 5341], - [1, 2343, 20967], - "unflatten", - [0, 20968, 20969, 20970, 2487], - [0, 1393, 30298, 30299, 3688], - [0, 30302, 3561], - [0, 1473, 1512, 1536, 1623, 3178, 3561, 6425], - [1, 2343, 20972], - [0, 20973, 20974, 20975, 34352], - [0, 1393, 3688], - [0, 3561], - [0, 1623, 16919, 3561, 6425], - [1, 2343, 20977], - [0, 20984, 20985, 20987, 2523], - "@types/acorn", - [3, 4060, 16], - "vereload", - [2, 20979, 20980], - "erve", - [2, 15476, 20982], - [ - 0, 1165, 30298, 1437, 30314, 30315, 3561, 30317, 30326, 3564, 30327, 30329, 30331, 30334, 30336, 30338, 30341, - 30343, 3579, 3584, 3587, 30346, 30348, 30350, 30353, 30356, 3643, 30358, 30360, 30363, 30365, 30366 - ], - [ - 0, 1173, 1175, 1195, 1264, 1268, 1279, 19243, 1461, 1628, 30368, 30370, 30371, 30372, 30378, 1177, 30380, 1916, - 1959, 2054, 2092, 2600, 30381, 2822, 2843, 3105, 30383, 3160, 30385, 30389, 30390, 30391, 30393, 30395, 30396, - 30397, 30399, 29285, 3376, 30400, 3427, 3459, 30402, 3613, 3618, 30274, 16578, 3744, 89, 3824, 30404, 4039, - 4294, 4307, 4389, 30407, 2924, 4681, 30410 - ], - "lightweight", - [0, 3561, 6425, 1623, 12616, 30413], - [1, 2343, 20989], - [0, 20990, 0, 20993, 2523], - [0, 30424, 205, 208, 213], - "byline", - "util-extend", - [0, 30426, 30427, 1623, 30428, 5317, 6413, 3561, 6425, 30430, 3766, 10658, 12616], - [1, 2343, 20996], - "markdox", - [0, 21001, 0, 21002, 2537], - "deploy", - "deployment", - "devops", - "ssh", - [0, 30424, 205, 208, 30287, 3688], - [0, 1623, 30428, 5317, 6433, 3561, 6425, 3583, 10658, 6436, 6437, 12616], - "sequential", - "remote", - [1, 2343, 21006], - [0, 21007, 0, 21008, 2537], - [0, 30424, 205, 208, 3681], - [0, 30426, 30427, 1623, 30428, 5317, 30442, 19101, 3561, 6425, 5547, 3586, 10658, 12616], - "wrapper", - [1, 2343, 21011], - [0, 21012, 21013, 21017, 2487], - [0, 3681], - [0, 3561, 3678, 26712], - "mini-s", - "vg-data-uri", - [2, 21014, 21015], - [0, 1623, 4298, 3561, 6425], - [1, 2343, 21021], - "-datepicker", - [2, 2128, 21019], - [0, 0, 20974, 21025, 34352], - "ailwindcss", - [2, 1977, 21022], - [2, 3704, 4383], - [0, 1623, 1681, 16918, 3561, 6425], - "windicss", - [1, 2343, 21051], - [2, 20525, 591], - [2, 4380, 6911], - "tailwind c", - [2, 21030, 544], - "tailwind ", - [2, 21032, 11513], - [2, 21032, 6082], - "sections", - [2, 21032, 21035], - "tailwind ui", - [2, 21032, 89], - [2, 21032, 188], - [2, 21032, 1098], - "tailwind s", - [2, 21041, 1971], - "django", - [2, 21032, 21043], - "tailwind r", - "uby on rails", - [2, 21045, 21046], - "tailwind l", - "aravel", - [2, 21048, 21049], - [0, 0, 20974, 21058, 2537], - "tailwind nuxt", - "tailwind n", - [2, 21053, 2680], - "tailwind a", - "stro", - [2, 21055, 21056], - [0, 15215, 1623, 3599, 3178, 16919, 3561, 6425], - "flask", - [2, 21032, 21059], - [1, 2343, 21062], - [0, 0, 21063, 21064, 2487], - [0, 1687, 3527, 3561], - [0, 3561, 1623, 6425, 30462, 30465, 30466], - [1, 2343, 21066], - [0, 0, 21068, 21069, 4139], - "ffmpeg", - [0, 1429, 2323, 2384, 2463], - [0, 3561, 1623, 6425, 30472, 15182, 9320], - [1, 2343, 21071], - [0, 21073, 21075, 21076, 34352], - "fbemitter", - [0, 2654, 9673, 3561, 3676], - [2, 3794, 11017], - [ - 0, 19605, 1165, 1429, 1503, 1177, 1895, 1930, 19622, 1945, 1953, 19623, 1955, 1964, 1988, 17308, 2899, 19761, - 3421, 30479, 3678, 30481, 1894, 4320, 4323, 4337 - ], - [0, 3561, 5341, 1936, 188, 30483, 30484, 1623, 695, 2278, 4329, 30485, 4337], - "dispatcher", - [1, 2343, 21079], - [0, 21080, 0, 21081, 2399], - [0, 30287, 3688], - [0, 12083, 1623, 158, 30491, 12631, 16587, 3561, 6425, 23992, 6398], - "lolex", - [1, 2343, 21084], - [0, 21085, 21086, 21087, 2399], - [0, 3688, 30275, 814], - [0, 1166, 1414, 1177, 30279, 1955, 2203, 3561, 3678, 1894, 4337], - [0, 1623, 3561, 6425, 1204, 30498, 3378], - [1, 2343, 21089], - [0, 21090, 0, 21091, 2537], - [0, 2984], - [0, 3561, 30504, 30506], - [1, 2343, 21093], - [0, 21094, 21095, 21096, 2523], - [0, 2807, 4135, 1595], - [ - 0, 1700, 1192, 695, 2278, 2675, 3144, 30512, 1622, 1177, 1637, 1701, 2203, 3561, 4337, 4468, 4474, 2924, 1894, - 1610, 48, 442, 1193, 17167, 4294, 53, 2969, 2990, 3400, 4111, 30520, 3613, 3640, 192, 1953, 27928, 4257, 87, - 4523, 1939, 3616, 1938, 20281, 1982, 1895, 1955, 19344, 30518, 5467 - ], - [0, 1623, 3561, 22147, 2924, 11526], - "cliff", - "shush", - "flatiron", - "nssocket", - "-monitor", - [2, 2134, 21101], - [1, 2343, 21105], - "getopts", - [0, 21107, 20974, 21112, 2487], - "cli-testlab", - [0, 3688, 4319], - "fault", - " tolerant", - [2, 21108, 21109], - "sysadmin", - [0, 1623, 3178, 16918, 3561, 6425], - [1, 2343, 21114], - [0, 21115, 21119, 21123, 4139], - [0, 1393, 30298, 3681, 30532], - "node-ab", - [2, 18876, 12620], - [2, 21116, 21117], - [0, 30302, 3561, 26712, 3591], - [2, 6062, 2978], - "ross-spawn", - [2, 4857, 21121], - [0, 1623, 16918, 3561, 6425], - "jest-circus", - "karton", - [1, 2343, 21128], - "typecheck", - [0, 5488, 20974, 21130, 2523], - [2, 1218, 21131], - [0, 1623, 2414, 30541, 30542, 16918, 6425], - "hermes-parser", - [1, 2343, 21135], - [3, 4852, 15], - [2, 21133, 13921], - [0, 21137, 20974, 21138, 2399], - "increment", - [0, 30299, 3688, 30532], - [0, 1623, 3561, 6425], - [1, 2343, 21140], - [0, 21145, 20974, 21150, 2399], - "asynckit", - "combine", - "d-stream", - [2, 21142, 21143], - [0, 1393, 3688, 30532], - [2, 13888, 2759], - "fake", - "far", - "is-node-", - [0, 3561, 1623, 6425, 3178, 16918, 3634], - "modern", - [2, 21149, 21151], - "obake", - [1, 2343, 21157], - [2, 31868, 7625], - [2, 31865, 21160], - [0, 21159, 21164, 21169, 2537], - "dezalgo", - [0, 1636, 3681], - [3, 9367, 18, 5], - "@tunnckocore/prettier-config", - "formdata-", - [2, 21162, 6422], - [0, 30559, 3561], - [2, 19713, 1781], - [2, 3862, 18481, 21172], - "www", - "ulpoad", - [0, 1623, 3178, 16918, 3561, 6425, 3586], - [1, 2343, 21171], - [0, 21176, 21181, 21183, 2399], - "bob", - [3, 11366, 11], - [2, 21173, 3797], - "tiny-warning", - [0, 16837, 3681, 3688], - "just-", - "debounce-it", - [2, 21177, 21178], - "tsdx", - [0, 1596, 1177, 1895, 2675, 1192, 2990, 3561, 1894], - [2, 7519, 582], - [0, 4529, 3561, 1623, 6425], - [1, 2343, 21190], - "render props", - "higher", - " order component", - [2, 21186, 21187], - "hoc", - [0, 21012, 0, 21191, 2443], - [0, 3561, 1623, 6425, 2278, 3639], - [1, 2343, 21193], - [0, 21194, 0, 21196, 2443], - [0, 30577, 220, 3681], - "conditional", - [0, 30579, 1451, 30581, 1623, 30413, 30428, 3639, 30582, 3561, 6425, 3624, 3586, 10654, 10659, 5341, 12616], - [1, 2343, 21198], - [0, 21199, 21200, 21201, 2523], - [0, 30587, 30589, 30590], - [0, 20117, 1393, 3561, 3613, 4042], - [0, 3561, 1623, 6425, 30594, 2887, 30595], - [1, 2343, 21203], - [0, 0, 20974, 21204, 2487], - [0, 3561, 1623, 6425, 8426], - [1, 2343, 21206], - [0, 5488, 20974, 21138, 2537], - [1, 2343, 21208], - [0, 5488, 20974, 21138, 2443], - [1, 2343, 21211], - "check-dts", - [0, 20973, 20974, 21138, 4139], - [1, 2343, 21213], - [0, 5488, 20974, 21215, 2537], - "front matter", - [0, 1623, 3374, 16918, 16919, 3561, 6425, 1002], - "meta data", - [1, 2343, 21218], - [0, 21219, 20974, 21138, 2523], - [0, 3688, 30532], - [1, 2343, 21221], - [0, 0, 21222, 21223, 2537], - [0, 2675, 2899, 3561, 2759, 1894, 2990, 3640], - [0, 3561, 3665, 3586, 6425, 1623, 3585, 1932], - "universalify", - [1, 2343, 21229], - "klaw", - "dir-files", - [2, 15034, 21227], - [0, 21230, 0, 21231, 2523], - [ - 0, 28789, 30630, 30633, 28817, 30636, 26477, 30640, 32579, 30643, 30647, 30649, 30652, 30654, 30657, 30658, 215, - 30662, 30670, 30673, 30677, 30678, 30682, 30686, 30690, 31001, 30693, 30701, 30703, 27930, 218, 28640, 27069, - 30708, 30712, 29388, 30715, 32835, 29704, 30721, 30724, 30725, 1165, 1393, 30728, 30733, 30736, 1635, 30326, - 30739, 3570, 30331, 30338, 3579, 3584, 3587, 30742, 30744, 4791, 30747, 30348, 30749, 3611, 30751, 30754, 3643, - 30757, 30759, 30761, 30763, 30358, 30363, 30366 - ], - [0, 1623, 30428, 16897, 14836, 30765, 3286, 3561, 6425, 10654, 10659, 16900, 12616], - [1, 2343, 21233], - [0, 21234, 21235, 21138, 4139], - [0, 1393, 30298], - [0, 30302, 2646, 3561], - "assist", - [2, 6019, 21236], - [1, 2343, 21239], - [0, 0, 0, 21240, 2537], - [0, 1623, 3561, 30775, 57, 21110], - [1, 2343, 21242], - [0, 0, 0, 21245, 2537], - "any-promise", - "then", - [0, 1623, 3561, 30775, 57, 4329, 2278], - "thenify-all", - [1, 2343, 21248], - [0, 21249, 21250, 2514, 2443], - [0, 1636, 23462], - [0, 48, 53, 68, 11267, 61, 87, 94, 1166, 1198, 16150, 1701, 1177, 1938, 2070, 3183, 3421, 3561, 4135, 91], - [1, 2343, 21252], - [0, 21253, 21254, 21255, 4139], - [0, 3688, 4361], - [0, 30315, 3561], - [0, 1623, 3178, 16918, 3561, 6425, 8221, 4361], - [1, 2343, 21257], - [0, 21012, 20974, 21138, 2537], - [1, 2343, 21259], - [0, 0, 21260, 21261, 2537], - [0, 1177, 2675, 2990, 1894, 4387, 4389], - [0, 3561, 6692, 57], - [1, 2343, 21263], - [0, 21264, 0, 21265, 2537], - [0, 28807, 30805, 30808, 30811, 30813, 30816, 30818, 4484], - [0, 14873, 25638, 14871, 3519, 18035, 1747, 13392, 5576, 5995, 29938, 14872, 91, 4799, 1999], - [1, 2343, 21267], - [0, 21268, 21269, 21270, 2537], - [0, 9376, 9375], - [0, 192, 22559, 1414, 1429, 1431, 1436, 1567, 2675, 2829, 2990, 2899, 4255], - [0, 1936, 6523, 23760, 57, 353, 30826, 24798, 7121, 26467], - [1, 2343, 21272], - [0, 21273, 0, 21274, 2523], - [0, 30840, 3348, 2970, 2973, 4431, 30843, 2972, 30842, 3310, 30837, 30834, 3923, 30833, 30839], - [0, 1747, 28088, 3693], - [1, 2343, 21295], - "@monaco-editor/loader", - [3, 7664, 11], - "topwatch", - [2, 21277, 21278], - [2, 7666, 6731], - "@snippetors/vuepress-plugin-tabs", - [3, 19464, 17], - "google-a", - [2, 21283, 20827], - [2, 21282, 21284], - [2, 93, 4314], - [2, 21282, 21286], - [2, 21282, 7193], - "monaco-", - [2, 21289, 6038], - "dsense2", - [2, 21283, 21291], - [2, 6324, 21292], - [2, 19469, 21293], - [0, 21297, 21298, 21299, 2537], - "bitap", - [0, 13609, 30849, 30850, 30855, 1695], - [ - 0, 1173, 1280, 4895, 1245, 1264, 1389, 5669, 30857, 2025, 2297, 2881, 25848, 2895, 2900, 30859, 2899, 30862, - 18102, 3774, 4019, 4135 - ], - [0, 3696, 1145, 6468, 1973, 5472, 5286, 6892], - "@types/katex", - [1, 2343, 21303], - "socket", - [0, 21304, 21305, 21310, 2487], - [0, 1615, 23975, 4707], - [0, 1148, 2759, 2899], - "tex", - "sublime", - "katex", - "sublime text", - [0, 3358, 582, 3378, 3697, 30872, 18462, 1973, 5001], - [1, 2343, 21312], - [0, 0, 21313, 21314, 2443], - [ - 0, 30877, 30879, 53, 5874, 12372, 87, 94, 11976, 4856, 6503, 4874, 6513, 17214, 16480, 30881, 1429, 1596, 1610, - 30883, 668, 2675, 30888, 3165, 2899, 3401, 30889, 28423, 3744, 11481, 4193, 4196, 4072, 91, 4548, 1983, 1984, - 824 - ], - [0, 3698, 89, 181, 6073, 30891, 23361, 4963, 30892, 6400, 5130], - "globule", - [1, 2343, 21318], - [2, 2237, 5365], - [0, 21319, 7923, 11581, 2523], - [0, 1437, 1457, 2152, 18545], - [1, 2343, 21321], - [0, 21322, 21323, 21324, 2537], - [0, 30905, 8506, 3137], - [ - 0, 21024, 5467, 811, 8850, 816, 5087, 9363, 1009, 1011, 1529, 1177, 1895, 1955, 2675, 1192, 30912, 12129, 1894, - 4042, 4257, 4072, 4474, 91 - ], - [0, 1894, 1932, 1776, 8505], - [1, 2343, 21326], - [0, 0, 21327, 21330, 2487], - [0, 4874, 30922, 1166, 1894, 91, 13151], - [2, 4755, 1145], - "yeoman-test", - [0, 1894, 30924, 91, 5651, 3705], - [1, 2343, 21332], - [0, 21333, 21334, 21335, 4139], - [0, 18710], - [0, 3401, 1894], - [0, 6661, 1932, 1894], - [1, 2343, 21338], - "restangular", - [0, 0, 21342, 21343, 2487], - "ui-router", - "foundation", - "traceur", - [0, 8862, 811, 816, 4874, 1166, 1894, 4042, 4075, 3709, 4474, 4484, 91], - [0, 1894, 3709], - [1, 2343, 21345], - [0, 21346, 0, 21347, 2487], - [0, 30940, 1209, 1997], - [0, 1894, 1541], - "find-git-root", - [1, 2343, 21353], - "git-config", - [3, 31021, 19], - "@merkle-open/eslint-config", - [0, 0, 8134, 21355, 2537], - "modular", - [0, 3721, 1413, 1412, 2098, 4202, 2090, 12786, 30946, 7017, 30947, 2382, 30948, 23933, 30950], - [1, 2343, 21357], - [0, 21358, 21359, 21361, 4139], - [0, 1209, 30956], - [0, 1429, 1506, 1509, 30958, 2899], - "pooling", - [0, 3721, 1851, 30960, 1676, 6738, 7017, 13086, 22405, 1671, 12786], - [1, 2343, 21363], - [0, 21364, 21366, 2514, 2523], - [0, 8801, 1110, 3847], - "ts2mjs", - [0, 4880, 15606, 4889, 2700, 2798, 89, 3824, 3904], - "iterators", - [1, 2343, 21370], - "iterable", - [0, 21372, 8134, 21375, 2487], - [2, 21373, 29777], - [0, 30970], - "@prisma/d", - "@prisma/dev", - [0, 3721, 22405, 12786, 24130, 30946, 7017, 6901, 3242, 30974, 17003, 30975, 6754, 2585, 1871, 6988, 15244], - [1, 2343, 21382], - "@werkzeugkiste/eslint-config", - [3, 21377, 15], - [2, 6019, 1541], - [2, 21378, 21379], - "install-", - [0, 21389, 0, 21390, 2487], - "postmerge", - [2, 17496, 21383], - [2, 21381, 21384], - [3, 9794, 17], - [3, 13848, 20], - [2, 21386, 21387], - [0, 6041, 4484, 2687, 26379, 3530, 30097, 3527], - [0, 3358, 30981, 30982, 1894, 3720, 6983, 1501, 30983, 30872], - [1, 2343, 21392], - [0, 21394, 21398, 21399, 2523], - "@cfware/lint", - [0, 1512, 3183], - "@cfware/nyc", - "if-ver", - "libtap", - [0, 2899, 2272, 4170, 2759, 1596, 3202], - [0, 1781, 200, 6983, 1512], - [1, 2343, 21401], - [0, 21403, 21408, 21409, 2523], - "available", - [0, 3260, 25638, 21374, 28286, 30996, 21351], - "connection", - "tcp", - [3, 6045, 9], - "chosen", - [ - 0, 3467, 4763, 2611, 1192, 3445, 2020, 2929, 28974, 3510, 1759, 8537, 15452, 1457, 2151, 842, 16145, 16473, - 2794, 3077, 3310, 29710, 4294, 31000, 91, 5087, 4874, 6477, 28076, 1151, 2191, 31004, 3393, 31006, 32248, 31008, - 28229, 31009, 25629, 31013, 4864, 33235, 23531, 8998, 29420, 31015, 31018, 13471, 32470, 31023, 31026, 33237, - 28231, 29421, 26285, 33683, 21371, 13502, 29425, 31475 - ], - [ - 0, 9628, 31034, 31035, 31037, 31038, 18035, 1747, 17626, 31039, 6869, 31040, 31041, 31042, 3519, 31043, 31045, - 31046, 31047, 31048, 31049, 31050, 31051, 31052, 31221 - ], - [1, 2343, 21411], - [0, 0, 21412, 21414, 2537], - [ - 0, 5542, 1317, 1429, 31058, 1700, 31061, 1177, 1942, 1964, 2323, 2361, 2367, 2409, 20304, 2494, 2496, 31063, - 2553, 2654, 2665, 2832, 2899, 3310, 3400, 1894, 3756, 19745, 19750, 12120, 3980, 19751, 4183, 31066, 4747 - ], - "std", - [0, 588, 5342], - [1, 2343, 21416], - [0, 21417, 21419, 21421, 4139], - [0, 1362, 1364, 1512, 2026, 3078, 3188, 3220, 31074, 3460, 3507, 31075], - "@sec-ant/readable-stream", - [0, 1429, 2323, 2463, 3215, 4089, 4193, 4196, 4339], - "onetime", - [0, 1370, 7223, 29179, 18157, 12468, 2325, 3358, 31078, 3383], - [1, 2343, 21424], - "precise-now", - [0, 0, 6538, 2514, 2537], - [1, 2343, 21426], - [0, 0, 21427, 21428, 2487], - [0, 4770, 2899], - [0, 3729], - "-maps", - [2, 6477, 21429], - [1, 2343, 21433], - [2, 2190, 6660], - [0, 0, 0, 21434, 8878], - [0, 200, 3730], - [1, 2343, 21436], - [0, 21443, 0, 21445, 2537], - [3, 13936, 15], - "evry", - [2, 21437, 21438], - "make-d", - "eno-edition", - [2, 21440, 21441], - [0, 1437, 3730], - "deno", - [0, 2924, 1932, 3730, 10036], - [1, 2343, 21448], - "deno-edition", - [0, 21449, 21451, 2514, 4139], - [0, 29277], - "deno-entry", - [0, 1082, 4039, 2759], - "denoland", - [1, 2343, 21454], - [0, 0, 21460, 21461, 2487], - "es2022", - [3, 72, 14], - "ifconfig", - "ipconfig", - "mac-address", - [ - 0, 1389, 1610, 1177, 10697, 2675, 2297, 2871, 2881, 2900, 2990, 2899, 3400, 1894, 4039, 4042, 4077, 4193, 4650, - 91 - ], - [0, 1862, 3734, 6789, 14833], - [1, 2343, 21463], - [0, 21467, 17022, 21471, 2537], - "email-", - "addresses", - [2, 21464, 21465], - [0, 2899, 4193, 4545], - "dir-compare", - "tschaub", - [2, 1884, 21469], - [0, 6567, 14833], - [1, 2343, 21473], - [0, 16583, 21474, 11581, 2487], - [0, 1804, 2109, 2899, 3699], - [1, 2343, 21478], - "manage-path", - "opt-cli", - [0, 21484, 21487, 21488, 2487], - "chai-s", - "chai-string", - "kentcdodds", - [2, 1884, 21481], - "trav", - [0, 13388, 1149, 3917, 13832, 4709], - "is-after-all", - [2, 21483, 21485], - [0, 1177, 4616], - [0, 3741, 6876, 31122, 7020], - [1, 2343, 21490], - [0, 21491, 21492, 21493, 2487], - [0, 2929, 16235], - [0, 48, 53, 78, 87, 4387, 4389], - [0, 181, 3742, 200, 3741, 8626, 6876, 6847, 1523, 2184, 4403, 8620, 31129], - [1, 2343, 21500], - "@primer/octicons", - "@primer/", - "primitives", - [2, 21496, 21497], - [2, 812, 1936], - [0, 21501, 21502, 10570, 2523], - [0, 3082, 3427, 3847], - [0, 1193, 1268, 1389, 1408, 1177, 2708, 1192, 89, 31135, 31136], - [1, 2343, 21504], - [0, 0, 21506, 21508, 2443], - "minipass", - [0, 9363, 4874, 31142, 1414, 2620, 31145, 31147, 1894, 3985, 3998, 31148, 31150, 4505, 91, 18002, 1906], - "path-scurry", - [0, 31152, 23584, 1936, 4374, 18523, 3205, 8221], - "-from-dist", - [2, 9478, 21509], - [1, 2343, 21513], - [2, 5745, 1563], - [0, 21514, 21515, 21516, 2523], - [0, 31157, 31159, 31160, 31161, 31162, 31165, 31166, 31167, 31169, 31170, 4874, 3080], - [ - 0, 1317, 1389, 31172, 1408, 1437, 1875, 1177, 2000, 2004, 2193, 28406, 31174, 21749, 2323, 2409, 2419, 2510, - 2530, 1776, 3183, 3421, 3951, 4389, 4487, 91, 4535, 4599, 4600, 4603 - ], - [0, 7018, 6765, 7050, 91], - [1, 2343, 21518], - [0, 21521, 21522, 21523, 2523], - "dirname", - "wildcard", - [0, 11304, 28502, 31180, 14336, 1437, 2070, 2765, 31182, 3760, 12826, 4130, 4232, 31184, 31186, 4747], - [ - 0, 7740, 4865, 23689, 31188, 9129, 4874, 1364, 1429, 1431, 28556, 2025, 2026, 2323, 31190, 2526, 2272, 1209, - 3127, 2899, 31191, 4039, 4089, 4135, 4487, 31194, 91, 31195 - ], - [0, 1098, 1973, 5472, 11132, 13841, 28522], - [1, 2343, 21525], - [0, 21527, 21528, 21529, 2537], - "min-document", - [0, 7058, 31202, 1676], - [0, 31205, 5245, 5087, 4874, 1151, 1192, 4468, 91, 2190], - [0, 27, 2671, 2658, 1544, 3013, 31207, 31209, 18413, 31210, 31211, 31212], - [1, 2343, 21531], - [0, 21532, 21533, 18970, 2537], - [0, 31218, 31220, 814], - [0, 2899, 31224, 4170, 4193, 4255], - [1, 2343, 21535], - [0, 21538, 21540, 21542, 2523], - "path-t", - "path-type", - [0, 1437, 31229, 31233, 2720, 2742, 1209, 3170, 3309, 3470, 4135], - "glob-stream", - [0, 1173, 1255, 1264, 1700, 1177, 1895, 2702, 2759, 3188, 2899, 3211, 1894, 4039, 4170], - "fnmatch", - [0, 2323, 3378, 20001, 3383, 1237], - "globbing", - "globs", - "wildcards", - [1, 2343, 21547], - [0, 21548, 21549, 21551, 2399], - [0, 31249, 31246, 31248, 31250, 31243, 31251, 31242, 31254], - [0, 3188, 4039, 24592, 24587, 24594, 24596, 31259, 31258, 24591], - [2, 13039, 12804], - [0, 1936, 2437, 3754, 1283], - "array-series", - [1, 2343, 21554], - [0, 0, 21557, 2514, 2537], - "magick", - [2, 11812, 21555], - [0, 1317, 27468, 2060, 3714, 31266, 4387, 4389], - [1, 2343, 21559], - [0, 21560, 0, 21561, 2537], - [0, 1834, 3441], - [0, 7046, 7170, 14858, 7241], - "-with", - [2, 21562, 1892], - [2, 1903, 21563], - [1, 2343, 21569], - "msmc", - "mc", - "minecraft", - [0, 0, 21570, 21588, 2537], - [0, 1503, 3421, 2899], - "java edition", - "arm", - "arm-support", - "forge", - "s-management", - [2, 16154, 21575], - "instances", - "mod", - "mods", - "mc-mod", - "mc-mods", - "modpack", - "modpack-api", - "extendable", - "nbt", - "jarmods", - "skin fix", - [0, 3757, 3656, 31277, 31278, 31279, 1002, 31280], - [1, 2343, 21590], - [0, 21591, 21592, 21593, 2523], - [0, 17846, 31286, 1595, 28504, 11114, 31288], - [0, 4874], - [0, 3758, 3195, 29727, 13428], - "docsify-cli", - "ing-promise", - [2, 14639, 21595], - [2, 16645, 21596], - [1, 2343, 21601], - "spreadsheets", - [2, 8567, 21599], - [0, 21602, 0, 21609, 4139], - [0, 1525, 2071, 3561, 3681], - "google sheets", - [3, 21599, 11], - "sheets", - "gdata", - "drive", - "google docs", - [0, 6707, 16587, 7293, 17507, 1623, 1936, 3624, 31297, 22946, 18114], - "svgs", - "google drive", - [1, 2343, 26326], - [0, 2228, 2272, 3130, 2240, 2768, 2281, 3736], - [0, 3760, 1862, 6567, 14832, 14833, 14834, 14836, 1149, 14838, 8553, 1388, 202], - [1, 2343, 21617], - [2, 2211, 13369], - [0, 0, 0, 21618, 2399], - [0, 11194, 31307, 16421, 18048, 8221, 158], - "@types/execa", - "@types/mv", - "@types/ncp", - "unjucks", - [2, 10884, 21622], - "rl-template", - [2, 7817, 21624], - [2, 4892, 1574], - "js-green-licenses", - [1, 2343, 21629], - [0, 0, 0, 21631, 2537], - "linkinator", - [0, 1111, 6938, 11194, 7201], - [2, 8573, 591], - [2, 5576, 12950], - [1, 2343, 21635], - [0, 21636, 21637, 21643, 2537], - [0, 17409], - [ - 0, 31317, 31319, 13614, 1389, 1408, 31322, 1796, 1855, 1177, 2011, 2133, 2070, 19066, 31328, 27547, 17421, 2569, - 2685, 2708, 2762, 2807, 3188, 3206, 15030, 3410, 3421, 3431, 19974, 4103, 23948, 4389, 31329 - ], - "p-cancelable", - "responselike", - "-keys", - [2, 17267, 21640], - [2, 13788, 2741], - [0, 3767, 3763, 3766, 1002, 1644, 1646], - "able-lookup", - [2, 2325, 21644], - "cacheable-", - [2, 21646, 705], - "-encoder", - [2, 2139, 21648], - [2, 17278, 5508], - "byte-counter", - [1, 2343, 21660], - "pem", - "@types/pem", - "cert", - "create-cert", - "slow-stream", - "then-", - "then-busboy", - [0, 21661, 21664, 21669, 2537], - [0, 31337, 31339, 31341], - "@hapi/bourne", - [2, 1601, 9224], - [0, 1166, 1317, 1693, 2064, 4481, 1906], - "brotli", - "requests", - [2, 20034, 17460], - "ky", - [0, 1388, 3767, 3766, 1871, 3763, 5420, 31344, 1002, 1644, 1646, 10368, 15103, 31345, 7131], - [1, 2343, 21671], - [0, 0, 21672, 21673, 2537], - [0, 1973, 31350, 4389], - [0, 10906, 3766, 3767], - [1, 2343, 21675], - [0, 0, 21685, 21686, 2537], - "govuk-", - "-kit", - [2, 6688, 21677], - [2, 21676, 21678], - "gulp-cl", - "gulp-cli", - "sass-co", - "lor-helpers", - [2, 21682, 21683], - [0, 1414, 2665, 31357], - [0, 3768, 1149, 14629, 31360, 12692, 5957, 6994, 13792], - "embedded", - [2, 4832, 21687], - "sassdoc", - [1, 2343, 21692], - "govuk", - [0, 11570, 11571, 21693, 2537], - [ - 0, 3768, 29664, 31365, 31366, 31367, 5284, 17625, 17626, 676, 91, 17627, 6869, 4799, 12692, 4721, 3768, 31369, - 31370, 31374, 8893, 6994, 31376, 6915, 17697, 6333, 31377, 2382, 6956, 17706, 17710, 6957, 17711, 17712, 17713, - 17714, 17715, 17716, 17717, 17718, 17651, 6674, 17721, 17722, 6789, 17723, 17724, 17726, 17727, 17729, 17730, - 17731, 17732, 17733, 614, 6910, 17734, 11600, 17735, 3760, 31379, 4552, 28483, 31381, 6645, 4787, 3286, 202, - 5401, 27366, 6681, 17740, 1745, 17116 - ], - [1, 2343, 21695], - [0, 21696, 21698, 21705, 2537], - [0, 3021, 31388, 31389, 2017], - "reading", - [ - 0, 2070, 4361, 2832, 1177, 4333, 1984, 4474, 2924, 1894, 4469, 48, 1628, 91, 53, 4874, 2629, 4677, 1195, 2600, - 4307, 4334, 4689, 4891, 17214, 8648, 5139, 87, 4230, 4681, 31392, 2651, 1938, 4409, 1895, 1947, 1955, 3177, 92, - 31394, 1011, 20476, 31393, 1009, 8724, 1915 - ], - "retries", - "EMFILE", - "EAGAIN", - "EINVAL", - "EPERM", - "EACCESS", - [0, 3771, 6038, 6106, 6105, 6138, 6139, 5130], - [1, 2343, 21707], - [0, 21708, 21709, 21710, 2443], - [0, 1525, 11482, 3350], - [ - 0, 3421, 2228, 2929, 1177, 4039, 4042, 4135, 1317, 2116, 31401, 4019, 3752, 20496, 53, 31402, 87, 1937, 1954, - 2258, 18895, 23165, 5583, 1924, 1938, 31404, 1958, 2256, 6373, 1903, 1948, 811, 1900, 816, 31405, 8229 - ], - [0, 5472, 2275, 1145, 6468, 4384, 4389, 2297, 2814], - [1, 2343, 21712], - [0, 21713, 21714, 21716, 4139], - [0, 31413], - [ - 0, 5517, 31417, 1009, 1011, 7677, 1240, 1264, 1540, 1177, 1895, 1955, 15854, 18841, 1894, 23535, 2907, 3980, - 18819, 4042, 8849, 4076, 91, 1984, 2924 - ], - "graphql-js", - [0, 1388, 965, 1936, 2907, 31419, 5472], - [1, 2343, 21718], - [0, 21719, 21722, 21723, 2537], - [0, 1457, 1525, 31426, 2107, 31427, 814, 4648], - "all-versions", - [2, 1382, 21720], - [ - 0, 1149, 1203, 1267, 31429, 1499, 25063, 25076, 1937, 18895, 2020, 2116, 2151, 2228, 2240, 2243, 2256, 2258, - 23165, 2283, 21929, 2291, 25070, 21930, 26210, 31402, 3006, 3752, 4019, 4045, 4135 - ], - [0, 5472, 2275, 2814], - [1, 2343, 21725], - [0, 21726, 21727, 21728, 34352], - [0, 3518], - [0, 31437, 1389, 4389], - [0, 31440, 6422], - [1, 2343, 21733], - "section-", - [2, 21730, 9338], - [2, 4296, 12835], - [0, 0, 21736, 21737, 2523], - "ansi-green", - "delimiter-regex", - [ - 0, 48, 53, 87, 94, 104, 5583, 24621, 31447, 1290, 1317, 1481, 1610, 31448, 1177, 1938, 2064, 2036, 2822, 2899, - 3400, 3421, 4039, 4042, 4077, 31449, 31452, 4193, 4423, 31453 - ], - [0, 3776, 6564, 594, 6731, 6081, 7517, 7532, 7594, 7595, 7523, 7524], - "assemble", - [1, 2343, 21741], - "extracting", - [0, 21742, 7923, 21743, 2487], - [0, 4127], - [0, 3778, 28734, 28734, 4718, 1179, 16431, 2585], - [1, 2343, 21747], - [3, 5364, 11], - [2, 21745, 1398], - [0, 8766, 21753, 21754, 2523], - [2, 1807, 2899], - [2, 10692, 7018], - "pois", - "son-process", - [2, 21750, 21751], - [0, 3521, 4255, 4387, 4389, 4770], - [0, 1616, 3778], - [1, 2343, 21756], - [0, 21764, 7923, 2514, 2399], - "grunt-k", - "nown-options", - [2, 21757, 21758], - "legacy-log", - [2, 2235, 21760], - [3, 21761, 13], - [2, 21762, 614], - [0, 3779], - "difflet", - [3, 16758, 16], - "unt", - [2, 21766, 21767], - [1, 2343, 21771], - "temporary", - [0, 0, 7866, 21773, 34352], - "init", - [0, 6754, 57, 27], - [1, 2343, 21775], - [0, 21776, 21777, 21778, 2487], - [0, 3135, 3348, 977, 31479, 4252], - [0, 2070, 3297, 2899, 4193, 1177, 4170, 2759, 1894, 1506, 1895], - [0, 28411, 2656, 31482, 6807, 3783, 31483], - "gruntplugin", - [1, 2343, 21781], - [0, 21782, 21783, 2514, 2523], - [0, 1413, 14855, 2685, 2657], - [0, 3421, 2899, 1177, 1362, 29197, 4100, 3923, 19344, 7844], - [1, 2343, 21785], - [0, 13511, 21786, 13533, 2523], - [ - 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 1610, 1700, 1701, 1177, 1895, 1938, 1955, 2675, 1192, 2990, 3144, - 3400, 1894, 4257, 2924 - ], - [1, 2343, 21788], - [0, 21792, 0, 21793, 2537], - [3, 21146, 12], - "ncremental", - [2, 21789, 21790], - [0, 2714, 3183, 1696, 4300], - [0, 1541, 1997, 28984, 19400], - [1, 2343, 21795], - [0, 21796, 21797, 21798, 2523], - [0, 97, 1461, 3789], - [ - 0, 31504, 968, 972, 4859, 5087, 4874, 4880, 4883, 14693, 1610, 1789, 1177, 1939, 1982, 2079, 31506, 2193, 2070, - 695, 3377, 31508, 3788, 11249, 89, 3824, 3957, 91 - ], - [0, 89, 5128, 31511, 31512, 6847, 6754], - [1, 2343, 21800], - [0, 21801, 21802, 21803, 2523], - [0, 97, 13169, 1461, 3789], - [0, 31504, 972, 5087, 4880, 4883, 11322, 1610, 1789, 1177, 1982, 2079, 2193, 695, 3377, 31508, 89, 3824, 91], - [0, 89, 5128, 31519, 8190], - "liftup", - [1, 2343, 21806], - [0, 21807, 21808, 21809, 2523], - [0, 97, 3847], - [ - 0, 31504, 972, 5087, 4874, 4880, 4883, 15606, 31527, 11322, 14693, 1603, 1610, 1789, 1177, 1939, 1982, 2079, - 2070, 2675, 2990, 3377, 1894, 31508, 89, 3824, 91 - ], - [0, 89, 614], - "pad-stream", - [1, 2343, 21812], - [0, 0, 0, 10570, 2399], - [1, 2343, 21815], - "grunt-nodemon", - [0, 21816, 0, 21817, 2399], - [0, 3911], - [0, 89, 31542], - [1, 2343, 21819], - [0, 21822, 21823, 21817, 2523], - "simultaneous", - "faster", - [0, 3427], - [0, 1192, 89, 3824, 2924], - [1, 2343, 21825], - [0, 21826, 21827, 21828, 2523], - [0, 31555, 31558, 31560, 31563, 31564], - [0, 4042, 91], - [0, 5575, 2220, 89, 582, 21189, 4963], - [1, 2343, 21835], - [2, 21831, 36], - [3, 30922, 14], - "bin-", - [3, 18806, 13], - [2, 21832, 21833], - [0, 21836, 0, 2514, 2443], - [0, 3775, 1593, 1862, 4705, 3427, 3957], - "compass", - [1, 2343, 21839], - [0, 21840, 0, 21841, 2537], - [0, 4649, 2731, 1461, 3744, 31577, 1751, 97, 31575, 31581, 31578, 5090, 3911, 4808], - [0, 1367, 89, 4627, 4963, 31583, 5128], - [1, 2343, 21843], - [0, 21844, 21845, 21846, 2523], - [0, 31590, 1209, 3021, 31591, 3744, 31592, 4443], - [ - 0, 31594, 31598, 14689, 14691, 10837, 1173, 1175, 1193, 1195, 31600, 1267, 1268, 1272, 1280, 1429, 31602, 1628, - 1843, 2012, 2081, 2600, 2629, 2651, 2678, 1192, 2774, 31603, 2899, 3376, 3378, 3427, 89, 21074, 31605, 3824, - 3836, 31606, 3904, 4001, 4015, 4039, 4307, 31608, 2924, 4681 - ], - [0, 89, 31611, 5128, 20542, 3811, 31612, 3195, 31614, 5027, 8192], - [2, 1547, 3000], - [1, 2343, 21849], - [0, 21850, 21851, 21852, 34352], - [0, 1582, 3744], - [ - 0, 48, 53, 68, 61, 78, 87, 90, 94, 1195, 1251, 1628, 1703, 1177, 1879, 1938, 1947, 1959, 1961, 2193, 2651, - 31622, 3177, 89, 3824, 4307, 4389, 2924, 4677, 4681 - ], - [0, 4627, 5128, 89, 31625, 1492], - [1, 2343, 21854], - [0, 21856, 21857, 21858, 34352], - "file-sync-cmp", - [0, 8703, 1497, 1668], - [ - 0, 53, 68, 5228, 8229, 61, 87, 90, 92, 442, 31633, 5583, 811, 816, 10615, 10817, 966, 972, 974, 5601, 5087, - 11292, 4874, 4880, 4883, 1009, 1011, 1169, 1193, 1251, 1593, 33872, 1177, 1895, 1938, 1939, 1959, 1961, 27790, - 2675, 1192, 11347, 2771, 2780, 2990, 1209, 1894, 89, 3824, 4042, 11802, 2278, 4213, 4320, 4323, 5978, 4330, - 4468, 4484, 91, 4523 - ], - [0, 89, 3812, 9026, 1666, 5128], - [1, 2343, 21860], - [0, 21862, 21863, 2514, 2523], - "csslint", - [ - 0, 3445, 1437, 2696, 2205, 3539, 15427, 2105, 31642, 3742, 2098, 2553, 4294, 4425, 1615, 4165, 1393, 3008, - 14564, 31640, 51, 3938, 3829, 1874, 2135 - ], - [0, 1192, 1610], - [1, 2343, 21865], - [0, 21866, 21868, 2514, 2487], - [0, 31650, 31652, 31654, 2069, 2609], - "maxmin", - [0, 8719, 842, 972, 5540, 5087, 4874, 4880, 4883, 1192, 11944, 3400, 89, 3824, 4172, 91], - "cssmin", - [1, 2343, 21871], - [0, 21872, 21873, 2514, 4139], - [0, 31654], - [0, 8719, 842, 5087, 3400, 4172, 91], - [1, 2343, 21875], - [0, 21876, 0, 21877, 2537], - [0, 814, 19526, 53, 104, 8959, 5251, 101, 31669, 10879, 31666], - [0, 89, 1745, 31671], - [1, 2343, 21879], - [0, 21880, 0, 10570, 2537], - [0, 4116], - "jpeg", - [1, 2343, 21883], - [0, 21884, 21885, 21886, 2537], - [0, 31683, 31686, 3744], - [ - 0, 48, 53, 68, 8229, 31689, 73, 31690, 14170, 13051, 31693, 83, 87, 90, 94, 192, 22559, 19036, 26486, 5583, 811, - 816, 6061, 16607, 6065, 16608, 16612, 5535, 10876, 31695, 966, 968, 972, 20562, 4880, 4883, 1009, 1011, 1193, - 1198, 1201, 1527, 1610, 1177, 1895, 1938, 1947, 1954, 1955, 1959, 1961, 2675, 31696, 2694, 1192, 2990, 3125, - 3534, 1894, 89, 3824, 3895, 3904, 4039, 4042, 4073, 4131, 4201, 4307, 4315, 91, 2924, 31699 - ], - [0, 5128, 89, 7518, 5398, 9229], - [1, 2343, 21888], - [0, 0, 21889, 21891, 2537], - [ - 0, 51, 53, 31705, 1193, 1195, 1270, 1437, 1457, 1610, 2126, 2626, 1192, 31706, 3427, 1862, 3786, 89, 3803, 3824, - 4039, 31708, 4227, 2924 - ], - "hooker", - [0, 3473, 5341, 1851, 12991, 5403, 31710, 31711, 4649], - [1, 2343, 21893], - [0, 21894, 21895, 21896, 2537], - [0, 3427, 3744, 21174, 31718], - [ - 0, 1175, 1178, 1203, 1208, 1230, 1245, 1264, 1268, 1429, 1503, 1567, 1652, 1177, 31721, 1895, 1938, 1947, 1951, - 1955, 1959, 2759, 2297, 2878, 30885, 2881, 2886, 2895, 31723, 2900, 2910, 2921, 2923, 28636, 2899, 1894, 89, - 3824, 4039, 4042, 4045, 4055, 4067, 4069, 4193, 4196 - ], - [0, 3830, 31725, 89, 1746, 3193, 17913, 5207, 163, 1508, 1299, 31726, 590], - [3, 13115, 12], - [2, 21897, 1462], - [1, 2343, 21900], - [0, 0, 21901, 21902, 2537], - [ - 0, 19438, 603, 811, 816, 10615, 842, 16145, 968, 972, 5087, 4874, 4880, 4883, 6375, 1651, 1177, 1895, 4916, - 1955, 1959, 1961, 10964, 2675, 1192, 2780, 27412, 31734, 2990, 1894, 89, 3824, 4039, 4042, 4076, 4481, 91, 4523, - 4705, 4763 - ], - [0, 89, 582, 1669, 25, 7021, 7020, 91, 6687], - "nodeunit-x", - [1, 2343, 21905], - [0, 21906, 21907, 21908, 2487], - [0, 26007, 2202, 2609, 3008, 3744, 3849, 4163, 4227], - [ - 0, 8130, 4880, 8158, 1173, 1175, 1178, 1193, 1201, 1203, 1230, 1245, 1257, 1264, 1268, 1503, 13985, 1603, 1610, - 1843, 31742, 1845, 1177, 1879, 1895, 1938, 1947, 1959, 2675, 1192, 2990, 1894, 89, 3824, 31743, 3904, 3935, - 4039, 4042, 4045, 4055, 4058, 4067, 4069, 4077, 4257, 31745 - ], - [0, 89, 5284, 2924, 11498, 3000, 2998, 6109, 6609, 1194, 2999], - [1, 2343, 21910], - [0, 21911, 21912, 21913, 2487], - [0, 97, 31752, 5545], - [ - 0, 48, 53, 68, 23908, 78, 5241, 83, 85, 87, 90, 94, 5583, 811, 816, 6373, 10615, 966, 968, 972, 5087, 4880, - 7677, 17584, 1175, 7913, 14065, 1596, 1597, 1610, 1177, 1879, 1895, 1938, 31755, 1947, 1959, 1976, 2559, 2675, - 2681, 2990, 3188, 1894, 89, 3824, 3904, 4039, 4042, 91, 1984, 4747 - ], - [0, 2681, 23932, 2679, 8930, 23933, 6728, 23934, 89, 6071], - [1, 2343, 21916], - "uri-path", - [0, 0, 21917, 21918, 2399], - [ - 0, 5517, 11976, 5535, 968, 972, 4874, 4880, 4883, 1030, 32818, 16480, 19839, 2990, 3165, 3400, 3541, 23535, 89, - 3824, 9245, 4201, 4493, 91, 1984 - ], - [0, 89, 4627, 582, 31765, 31766, 31767, 31769, 31770, 31771, 31779], - [1, 2343, 21920], - [0, 21921, 0, 21922, 2537], - [0, 5540, 2609, 4484, 26222, 31797, 31791, 31799], - [0, 1671, 6983, 23934, 2679, 23932, 2728, 30948, 23933, 89, 6071, 8574, 8930], - [1, 2343, 21924], - [0, 0, 0, 10570, 2487], - [1, 2343, 21926], - [0, 0, 21931, 2514, 2523], - "grunt-co", - "veralls", - [2, 21927, 21928], - [2, 2235, 2759], - [0, 1420, 1437, 1177, 31815, 1192, 2774, 1894, 4042, 4069, 4077], - [1, 2343, 21933], - [0, 21934, 21935, 21936, 2487], - [0, 12396, 9363, 23289, 2583, 31821, 3140, 3992, 3999, 4549, 4555, 12449], - [ - 0, 972, 4874, 4880, 4883, 1414, 1537, 668, 1959, 10621, 1894, 89, 3824, 3973, 29250, 3985, 3988, 3998, 10632, - 4505, 91, 1906 - ], - [0, 6892, 20627, 4627, 3987, 1783, 89, 5128, 3984, 4549], - [3, 2289, 9], - [1, 2343, 21943], - "all-releases", - [2, 9005, 21939], - [2, 21937, 21940], - [2, 2235, 21941], - [0, 21946, 21947, 21948, 2523], - "gh", - "releases", - [0, 31828, 3744, 3849, 4649], - [ - 0, 31832, 1173, 1175, 1178, 1195, 1198, 1264, 1268, 1277, 1596, 1610, 1177, 1895, 31393, 1938, 1947, 1955, 1959, - 13871, 2297, 2881, 2886, 2895, 2900, 2904, 2921, 2925, 2899, 3400, 1894, 89, 3824, 3884, 3885, 4170, 4535, 2924, - 4677, 4681 - ], - [0, 89, 5128, 5066, 18346], - [1, 2343, 21950], - [0, 21951, 21952, 21953, 2523], - [0, 3518, 3744, 3775], - [ - 0, 1172, 31840, 1175, 1178, 1195, 1505, 1628, 1177, 1879, 1916, 1938, 1947, 1959, 2126, 29945, 31841, 31842, - 2766, 2297, 2886, 2898, 31844, 2906, 2925, 31845, 3521, 3836, 4307, 2924, 4681 - ], - [0, 89, 4627, 5128, 31847, 8424, 31849, 12185, 7521, 9944, 181], - [1, 2343, 21955], - [0, 21957, 0, 21958, 2537], - "vow", - [ - 0, 4729, 31705, 4747, 4135, 1862, 1301, 1525, 2731, 4116, 1109, 1193, 31856, 27921, 3145, 4705, 31859, 3717, - 3878, 30781, 1079, 31861, 28512, 31864, 24169, 3957, 31867, 2784, 31871, 31877, 31880, 31884, 31891, 31893, - 21129, 31896 - ], - [0, 89, 3857, 12296, 12295, 5131, 16697, 31904, 31906], - [1, 2343, 21960], - [0, 0, 21961, 21962, 2537], - [0, 29525, 21155, 21156, 1177, 1955, 1894, 89, 3857, 21166, 91], - [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 31914], - [1, 2343, 21964], - [0, 21965, 21966, 21967, 2487], - [0, 4747, 3744], - [ - 0, 89, 1177, 31934, 31928, 2735, 1894, 10777, 48, 31923, 53, 1178, 2132, 31926, 21495, 31929, 31935, 31932, - 31920, 31922, 1959, 1879, 1938, 1895, 1947, 1955, 1961, 5103 - ], - [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 31937, 6574, 6635, 181, 1017, 45, 13814, 22875, 2414], - [1, 2343, 21971], - "ravis-cli", - [2, 6305, 21969], - [0, 0, 21973, 21974, 34352], - "TDD", - [ - 0, 48, 53, 61, 78, 5240, 87, 90, 94, 31942, 20202, 20212, 602, 15134, 10817, 968, 972, 974, 4880, 1011, 1178, - 1195, 1198, 4899, 1461, 1497, 1610, 1177, 1895, 1916, 1938, 1959, 2193, 2832, 3132, 15326, 1894, 9054, 89, 3824, - 31945, 4042, 4045, 4055, 11802, 4060, 4067, 4069, 4077, 4469, 91, 1984, 2924, 4677, 4681 - ], - [0, 5128, 89, 31948, 6847, 6988, 31950, 10098], - [1, 2343, 21976], - [0, 0, 21977, 21981, 2537], - [ - 0, 53, 61, 78, 87, 14041, 5583, 1178, 1195, 1429, 1177, 2675, 2990, 2899, 3400, 1894, 89, 3824, 3904, 31956, - 4039, 4042, 2924 - ], - [3, 2247, 10], - "inue", - [2, 21978, 21979], - [0, 89, 31958, 31959, 3868], - "grunt-env", - "-coverage", - [2, 21930, 21983], - [1, 2343, 21986], - [0, 0, 21987, 21988, 2537], - [0, 8862, 31964, 1177, 31966, 1955, 31967, 1192, 1894, 4042, 91], - [0, 3872, 1936, 8221, 965, 3205, 23584, 1541, 89, 3824], - [1, 2343, 21992], - "afe-mocha", - [2, 2241, 21990], - [0, 21993, 21994, 21997, 2523], - [0, 5546, 5545], - [ - 0, 603, 810, 966, 968, 972, 4874, 5090, 4880, 4883, 1503, 1610, 1177, 1895, 1915, 1938, 1955, 1959, 2832, 1894, - 89, 3824, 3875, 4039, 4493, 91, 4523, 1984 - ], - [2, 21996, 995], - "@sailshq/r", - [0, 89, 6071, 3875], - [1, 2343, 21999], - [0, 0, 0, 10570, 2537], - "grunt-release", - "s-dylang", - [2, 14352, 22001], - [1, 2343, 22004], - [0, 22006, 22007, 22010, 2537], - "notify", - [0, 2677, 31983, 3744, 1849], - [ - 0, 10817, 4856, 31986, 13204, 31989, 31992, 6503, 4880, 4883, 6513, 1009, 1011, 1429, 1610, 1177, 1924, 2193, - 2832, 31994, 2899, 1894, 89, 3824, 4039, 4042, 11054, 4170, 4193, 4484, 4494, 4508, 91 - ], - "mountain lion", - "mavericks", - [0, 1623, 5128, 31765, 89, 5131, 31997, 31999, 6415, 32001, 6398, 4627], - "notify-send", - [1, 2343, 22013], - [0, 22014, 22015, 22016, 2487], - [0, 977, 5152], - [0, 4493, 89, 4548, 22205, 28119, 3824, 91, 3904, 972, 2780, 5162, 968, 974], - [0, 89, 38, 4082, 7433, 2602, 163], - [1, 2343, 22018], - [0, 22019, 22020, 22016, 2399], - [0, 3884], - [0, 4493, 89, 22205, 3824, 91], - [1, 2343, 22023], - "libsass", - [0, 0, 22024, 22025, 2537], - [ - 0, 1173, 1175, 1178, 1195, 24231, 24234, 1257, 1267, 1268, 1275, 1280, 1177, 1898, 1935, 1938, 1947, 1959, 2022, - 2602, 22588, 31842, 2297, 2886, 2895, 2900, 2904, 2921, 2925, 2899, 89, 3824, 3876, 3884, 3875, 32020, 32023, - 32026, 2924 - ], - [0, 89, 3875, 38], - [1, 2343, 22028], - [2, 705, 1153], - [0, 22029, 6230, 2514, 2537], - [ - 0, 1324, 1192, 1759, 1177, 4135, 3561, 3742, 814, 2924, 2151, 2154, 1420, 1193, 1628, 53, 2092, 4111, 4383, - 1195, 1393, 2797, 4307, 841, 1763, 3878, 3618, 3816, 3647, 4230, 2686, 3672, 3803, 4028, 4681, 2651, 2802, - 24732, 4409, 1270, 3605, 4723, 1898, 3177, 4686, 1630, 1216, 1426, 24723 - ], - [1, 2343, 22032], - "sauce-tunnel", - [0, 22036, 22038, 22039, 2443], - [3, 2311, 11], - "-tunnel", - [2, 22033, 22034], - [0, 97, 7931, 7948, 8181, 4808, 3145, 3744, 3911, 8187], - "yui", - [0, 11931, 1843, 8160, 11875, 89, 3824], - [0, 32039, 1669, 6847, 32040, 89, 5128, 1631, 181], - [1, 2343, 22041], - [0, 22042, 22043, 22044, 2523], - [0, 1461, 32046, 3029, 4023], - [ - 0, 48, 53, 68, 61, 85, 87, 90, 28598, 968, 972, 974, 4874, 1165, 1175, 1193, 1195, 1261, 1628, 1699, 1700, 1859, - 1177, 1938, 1959, 2026, 32049, 2323, 2494, 2675, 1192, 2780, 2820, 2843, 2990, 3459, 3618, 1894, 3775, 89, 3824, - 3957, 4193, 32051, 4307, 4537, 2924, 4677, 4681, 32052 - ], - [0, 11167, 32054, 32055, 32056, 31512, 5128], - [1, 2343, 22046], - [0, 22047, 22048, 22049, 2523], - [ - 0, 32061, 4889, 32062, 1082, 15128, 1145, 12184, 1397, 1465, 5386, 1497, 32063, 1584, 1593, 19526, 32064, 1863, - 1874, 1875, 2007, 29067, 7076, 32067, 7610, 2070, 32068, 2570, 2745, 32070, 32071, 32072, 32076, 32080, 32081, - 32084, 32085, 2929, 32086, 1209, 21641, 3120, 32087, 6041, 3467, 3725, 3744, 32088, 32089, 3816, 3822, 32091, - 32095, 32097, 3839, 12438, 3930, 3984, 32098, 4409, 19650, 32099, 4555, 4681, 4689 - ], - [ - 0, 48, 53, 61, 87, 14128, 90, 92, 968, 972, 32102, 32104, 31669, 32107, 1006, 32109, 5087, 32112, 4870, 32114, - 4874, 8149, 4880, 4883, 32116, 32118, 4891, 32120, 8157, 1009, 1011, 1175, 1178, 1193, 1195, 1628, 31058, 32121, - 32123, 32124, 1177, 32126, 1915, 1924, 1938, 1947, 1959, 2092, 2151, 2675, 1192, 32129, 2990, 3144, 1894, 3775, - 89, 3824, 3904, 32130, 4307, 91, 4027, 2924, 4677 - ], - [0, 89, 1219, 6718, 25172, 1745, 1739, 1179, 4627, 4963], - [1, 2343, 22051], - [0, 22056, 22059, 22063, 2537], - "sprit", - "esheet-templates", - [2, 22052, 22053], - "sprites", - [0, 97, 955, 5090, 3744], - "spritesmith", - "url2", - [ - 0, 53, 83, 87, 90, 442, 15288, 5583, 811, 816, 6373, 10615, 972, 5087, 13204, 4874, 4880, 4883, 7749, 1251, - 11890, 1177, 1895, 1959, 1961, 10964, 2203, 1192, 2780, 3297, 3401, 1894, 89, 3824, 4042, 4167, 4172, 11803, - 4468, 4474, 91, 4523 - ], - [3, 21470, 15], - "wolfson", - [2, 22060, 22061], - [0, 965, 1936, 11806, 11807, 5284, 89, 32142, 8221, 32145, 91], - "foundry", - "-release-git", - [2, 22064, 22065], - [3, 22066, 16], - [2, 22067, 3378], - [1, 2343, 22070], - [0, 22073, 0, 22076, 2487], - "get-pixels", - "gmsmith", - [0, 2081], - "sprite", - [3, 22054, 11], - [0, 32151, 89, 4453, 1702, 32152, 3899], - [1, 2343, 22078], - [0, 22079, 0, 22080, 4139], - [0, 3847, 4116], - [0, 89, 3857, 32162], - [2, 17566, 200], - [1, 2343, 22083], - [0, 6234, 22084, 22085, 2523], - [ - 0, 32167, 27742, 549, 963, 4874, 4880, 4883, 1030, 1596, 1651, 8540, 2990, 3561, 1894, 89, 3824, 4493, 91, 1983, - 32170 - ], - [0, 89, 9044, 11000, 5128, 3906, 6645, 32172, 26264, 6458], - [1, 2343, 22087], - [0, 22094, 22095, 22096, 2523], - "@npm/types", - [2, 7726, 2855], - [3, 8610, 9], - "ite-file-atomic", - [2, 22090, 22091], - [2, 16569, 1182], - [0, 32177, 32178], - [ - 0, 1317, 1389, 1408, 1506, 32180, 5669, 1839, 32181, 1859, 1177, 19896, 2228, 2240, 25074, 2247, 18461, 2256, - 2273, 32183, 25060, 32186, 2774, 3460, 3521, 12344, 32188, 3930, 22031, 4449, 91, 4535, 31135, 4652 - ], - [0, 89, 1219, 8535, 6624], - [1, 2343, 22098], - [0, 22103, 0, 22104, 2399], - "@guarapi/eslint-config-guarapi", - [2, 8711, 93], - [3, 5542, 13], - [2, 22101, 3312], - [0, 97, 1751, 3082, 3744], - [0, 89, 9944, 19102, 32195, 7521, 1623, 32196], - [1, 2343, 22106], - [0, 22107, 22108, 22111, 2487], - [0, 1497, 3744, 1751, 3082, 97, 3849], - [ - 0, 1192, 2675, 89, 2282, 1177, 4039, 4042, 1503, 3561, 2924, 2126, 2193, 1894, 1610, 2700, 3758, 3824, 48, 1193, - 1505, 1628, 53, 2092, 2990, 3566, 4677, 1165, 1178, 1195, 3720, 3884, 4307, 3618, 85, 29945, 32207, 3885, 87, - 14128, 18229, 4681, 90, 32203, 1922, 1959, 32205, 2651, 3904, 4045, 4077, 32202, 4069, 1895, 1935, 1947, 1955, - 4055, 32206, 4067, 2054, 8229, 83, 14132, 28972, 61, 5241, 1251 - ], - "undertaker", - "glob-watcher", - [0, 89, 6071, 5128, 4607, 3392, 32209, 32210, 3912, 176, 32211, 10345, 9320, 15182, 10052, 21604], - [1, 2343, 22113], - [0, 22116, 22117, 22118, 2399], - "series", - "streaming", - [0, 4430, 3909], - [0, 2899, 2272, 4135, 15052, 1389, 1537, 32218], - [0, 89, 1389, 14927, 1219, 676, 1932, 353], - [1, 2343, 22120], - [0, 22121, 22123, 22124, 2523], - [0, 97, 6372, 1461, 3744, 32225, 3911], - "gulp-footer", - [ - 0, 48, 53, 68, 73, 76, 78, 5241, 87, 90, 10821, 10825, 10828, 32229, 10837, 968, 972, 974, 4880, 1178, 1193, - 1195, 1270, 1367, 1540, 1567, 25901, 1610, 32231, 1787, 1797, 1177, 1879, 1895, 1935, 1938, 1947, 1959, 10851, - 32233, 1192, 2780, 2832, 2843, 3165, 1894, 89, 3824, 3830, 32236, 3884, 3904, 91, 2924 - ], - [0, 3916, 1367, 89, 4627, 4963, 5128, 181], - [1, 2343, 22128], - "html2js", - [2, 1283, 2325], - [0, 22129, 22130, 2514, 2537], - [0, 8612], - [0, 9516, 9515, 8608, 13680, 1011, 1414, 1915, 4384, 4474, 4483, 91], - [1, 2343, 22132], - [0, 22134, 11332, 22135, 4139], - "gulp-symdest", - [0, 18186, 18183, 16474, 4507, 20789], - [0, 1781, 3917, 1644, 2090, 2150, 30135, 3001, 3383, 3374], - [1, 2343, 22138], - "atom-shell", - [0, 22139, 8134, 22140, 2537], - [0, 30055, 3919, 4507], - [ - 0, 1781, 3917, 1644, 2090, 2150, 30135, 3001, 3383, 2100, 2104, 2105, 7076, 6614, 6605, 7193, 3529, 814, 5933, - 7029, 6857, 7204, 4647, 6821, 3403 - ], - [1, 2343, 22142], - [0, 22143, 22144, 22148, 34352], - [0, 1079, 1398, 2018, 3729, 15042], - [ - 0, 53, 14170, 13051, 19181, 811, 15460, 816, 826, 1389, 1414, 668, 32258, 1177, 1903, 1938, 1953, 1958, 3541, - 1894, 4042, 23652, 4384, 32262, 4389, 4390, 4548, 2924, 4677 - ], - "prefixes", - [3, 3674, 9], - [2, 22146, 8736], - [0, 7017, 3101, 7170], - [1, 2343, 22150], - [0, 0, 22151, 22152, 4139], - [0, 4384, 2685], - [0, 3925, 32271, 2090], - "lodash.chunk", - [1, 2343, 22155], - [0, 0, 0, 22158, 34352], - "-transform", - [2, 13792, 22156], - [0, 3925, 31360, 24095, 3741, 8631, 6875, 200, 6621, 1523, 32276, 8652, 6703, 1359], - [1, 2343, 22160], - [0, 8856, 7938, 7939, 2523], - [1, 2343, 22162], - [0, 22163, 22165, 22169, 2523], - [0, 12184, 2003, 4227, 32284, 4484], - "b", - [0, 53, 58, 87, 32287, 4865, 6503, 4874, 1011, 1177, 19896, 32288, 2070, 2990, 2899, 1894, 24209, 91], - "storage-blob", - [2, 13444, 22166], - [2, 12694, 14922], - [0, 6892, 22179, 32291, 5061, 5341, 22180, 7119, 32293], - "streamifier", - [1, 2343, 22172], - [0, 8029, 7938, 7939, 4139], - [1, 2343, 22174], - [0, 22175, 14066, 22176, 2537], - [0, 814], - [0, 3209, 1194, 7188, 19101, 32302], - [1, 2343, 22178], - [0, 22182, 0, 22183, 2537], - "rewriting", - [3, 12348, 14], - "desugaring", - [0, 97, 32307, 2081, 2609, 3849, 5513], - [0, 89, 6734, 4963, 32310, 6081, 6731, 32312], - [1, 2343, 22185], - [0, 13856, 7923, 22186, 4139], - [0, 7204, 32318], - [1, 2343, 22191], - "utf-8", - "add", - "prepend", - [0, 22192, 0, 22193, 2487], - [0, 32325, 32327, 32329, 32330, 32333], - [0, 1552], - [1, 2343, 22195], - [0, 22196, 22199, 5885, 2399], - [ - 0, 6327, 8111, 3127, 8114, 3725, 4213, 3555, 1757, 1461, 3191, 3744, 8122, 8123, 8113, 8127, 2017, 8116, 3502, - 8126, 8119, 32343 - ], - "decov.io", - [2, 2364, 22197], - [ - 0, 3775, 1002, 1192, 3190, 2675, 89, 4484, 1843, 1177, 4039, 1593, 1651, 2822, 3471, 4167, 4468, 4474, 8166, - 2924, 1894, 3824, 1628, 4201, 91, 4856, 5087, 8144, 4874, 8165, 4677, 4880, 4892, 3720, 4307, 4863, 8147, 8146, - 8149, 8155, 4891, 8160, 8161, 8163, 10875, 8136, 4883, 5090, 4315, 8157, 1311, 4681, 8141, 1584, 1959, 2651, - 1938, 8139, 2780, 4693, 8152, 1011, 1961, 1567, 8129, 2135, 1009, 32341 - ], - [1, 2343, 22201], - [0, 22202, 22203, 22204, 2537], - [0, 32353, 32351], - [0, 89, 2924, 3824, 91, 4880, 4883, 32359, 32358], - [0, 3939, 3452, 5592, 8124, 1745, 32361, 467, 32363], - "wireit", - [1, 2343, 22207], - [0, 0, 22208, 22209, 2523], - [ - 0, 53, 4874, 1009, 1011, 1610, 10888, 1177, 1898, 1915, 1938, 1959, 1961, 2070, 32368, 1894, 4039, 4094, 4493, - 91, 1984 - ], - [0, 3875, 6696, 6649, 6788, 6564, 2700, 6609, 2998, 6596, 2130, 6891], - [1, 2343, 22211], - [0, 22212, 22213, 22214, 2523], - [0, 32376, 32378], - [0, 32380, 32383, 32385, 2675, 2990, 3400, 1894, 1983, 1984, 1906], - [0, 2130, 3875, 27106, 10820], - [1, 2343, 22216], - [0, 22219, 22221, 22224, 2523], - "bump-regex", - "plugin-log", - [0, 1209, 3847, 1860, 2731, 2752, 3744, 97, 2609], - "versioning", - [ - 0, 4449, 1192, 2675, 89, 3875, 1177, 4039, 1503, 2924, 2126, 1894, 1610, 2700, 3824, 48, 1693, 4201, 53, 32392, - 2990, 3876, 4677, 1178, 1195, 32394, 87, 90, 1210, 1922, 1959, 10623, 3904, 1938, 32385, 32393, 1935, 1947, - 1898, 4676, 1961, 5535, 31393, 83, 61, 5240 - ], - "gulp-version", - [3, 2476, 11], - [0, 89, 6071, 2130, 3875, 3876, 3945, 1669, 4636], - [1, 2343, 22226], - [0, 22227, 22231, 22232, 2487], - [0, 1688], - "swap", - "cache-swap", - "object.pick", - [ - 0, 1175, 1203, 29775, 1267, 1429, 1503, 1177, 1879, 1938, 1947, 1959, 2665, 2675, 2899, 3421, 3875, 4039, 4042, - 4045, 4055, 4067, 4077, 4193 - ], - [0, 3875, 2942, 3946, 2663], - [1, 2343, 22234], - [0, 22235, 22236, 22237, 2399], - [0, 32408], - [0, 53, 83, 85, 87], - [0, 5284, 3875, 2663, 3947, 32416, 32418], - [1, 2343, 22239], - [0, 0, 22240, 22241, 2523], - [0, 1009, 1011, 1610, 1177, 1895, 1894, 3875, 4039, 4493, 91, 1984], - [0, 3875, 3949, 2663, 32425, 2130], - "file-e", - [1, 2343, 22247], - "xtension", - [2, 22242, 22244], - [2, 17355, 22245], - [0, 0, 22248, 22250, 2537], - [0, 4856, 6503, 4874, 1429, 1700, 32431, 2323, 32433, 32435, 2463, 2494, 32436, 2524, 2899, 91], - "changed", - [0, 4636, 6774, 5284, 19080], - "modified", - [1, 2343, 22256], - "modification", - "mtime", - "passthrough", - [0, 0, 22257, 22258, 4139], - [0, 1503, 2228, 2314, 2759, 14529, 3774, 4019], - [0, 1108, 6961, 5284, 3656, 1179, 4990], - [1, 2343, 22260], - [0, 0, 0, 22261, 2537], - [0, 5659, 7047, 1179, 1149], - [1, 2343, 22263], - [0, 22264, 0, 22265, 2487], - [0, 12396, 3971, 3978, 4549], - [0, 32452, 6892, 1936, 1644, 3729, 3958, 4141, 1646, 5341, 1633, 4549], - [1, 2343, 22267], - [0, 22268, 22269, 22270, 2523], - [0, 12396, 23247, 9401, 12421, 4549, 4555], - [0, 4874, 23262, 1414, 32460, 1894, 3958, 3985, 3998, 4505, 91, 1906], - [0, 4549, 3958, 32462, 1932, 156, 163, 1936], - [1, 2343, 22272], - [0, 22273, 22274, 22275, 2537], - [0, 12396, 23247, 12421, 32467, 4233, 4555], - [0, 4874, 23262, 1414, 1894, 3958, 3985, 3998, 4505, 91, 1906], - [0, 4549, 3958, 32462, 1932, 2587, 1936, 1783, 11052, 163, 1002], - [1, 2343, 22278], - "jshint-", - [0, 22281, 22282, 22283, 2443], - "reporter-jscs", - [2, 22277, 22279], - [0, 12396, 32481, 3137, 12127, 12133, 4549, 12447], - [0, 9311, 4874, 4880, 1414, 1177, 27706, 1947, 1959, 23312, 1894, 3985, 27711, 32484, 91], - [0, 2587, 1936, 1783, 9102, 3958, 32462, 4549], - [1, 2343, 22285], - [0, 22286, 0, 22287, 2523], - [0, 12396, 23276, 4549], - [0, 32452, 6892, 1936, 1644, 1932, 3958, 32462, 5341, 1633, 4549], - [1, 2343, 22289], - [0, 22290, 22297, 22298, 4139], - [0, 12396, 2572, 12449], - [3, 19569, 12], - "rework", - "rework-import", - "rework-", - "plugin-url", - [2, 22294, 22295], - [0, 4874, 1414, 1894, 3978, 3985, 3992, 3998, 3999, 4505, 91, 4549, 4555, 1906], - [0, 1936, 1932, 3972, 3958, 32462, 4549], - [1, 2343, 22300], - [0, 22301, 22302, 22305, 2537], - [0, 12396, 7610, 9401, 2584, 4555], - [0, 4874, 1414, 1894, 3958, 3985, 3998, 4505, 91, 1906], - "slush", - "dest", - [0, 156, 1936, 3265, 1932, 3958, 32462, 3974, 4549], - "conflict", - [1, 2343, 22308], - [0, 22309, 0, 22310, 2487], - [0, 12396, 2581, 4549], - [0, 32452, 6892, 7234, 1936, 1932, 3958, 32462, 4141, 1646, 5341, 1633, 4549], - [1, 2343, 22312], - [0, 22314, 22315, 22317, 2523], - "webserver", - [ - 0, 22353, 692, 29431, 1154, 15444, 1458, 7614, 9322, 2720, 32513, 3060, 3173, 29024, 3445, 3467, 6331, 20921, - 4135, 27921, 4548, 4566, 32514, 4748 - ], - [0, 442, 32523, 4874, 1177, 32525, 2203, 17529, 2931, 29442, 32519, 1894, 3985, 32522, 4390, 91], - "hyperlink", - [ - 0, 6147, 13729, 1528, 32528, 3358, 2195, 17978, 24095, 15656, 3378, 20001, 6645, 3979, 3980, 18157, 1508, 4166, - 10381, 4990, 15525, 4135, 1932 - ], - [1, 2343, 22319], - [0, 22320, 22321, 22322, 2537], - [0, 2759, 3181, 3544, 4227, 4431], - [0, 1177, 1881, 1938, 2228, 2323, 17121, 4039], - [0, 18444, 21779, 4227, 2759, 4504], - [1, 2343, 22325], - "csscomb", - [0, 22326, 0, 22327, 2537], - [0, 4549, 9363, 3992, 13124], - [0, 32452, 6892, 7234, 1783, 26564, 1644, 3729, 3984, 4141, 1646, 5341, 1633, 4549], - [1, 2343, 22329], - [0, 22330, 0, 22332, 2443], - [0, 5210, 32544, 3984, 32545], - "rcloader", - [0, 20052, 200, 1783, 26564, 3984, 4549], - [2, 21861, 2838], - [2, 15526, 2063], - [1, 2343, 22336], - [0, 22337, 22338, 22339, 2399], - [0, 9363, 27008, 27010, 3992, 13124, 4549], - [0, 4874, 1414, 32460, 1894, 3984, 3985, 3998, 4290, 18071, 4505, 91, 1906], - [0, 26072, 26766, 3987, 2195, 1783, 26564, 1932, 3984, 32553, 12994, 176, 9000, 4549], - [1, 2343, 22341], - [0, 22342, 22343, 22344, 2537], - [0, 9363, 2575, 3140, 2581, 4549], - [ - 0, 12396, 4874, 1414, 26992, 23276, 1894, 3985, 9340, 3988, 10630, 3992, 3998, 32560, 10632, 4505, 91, 12449, - 1906 - ], - [0, 7234, 1936, 1783, 26564, 1932, 3984, 32553, 1646, 4549], - [1, 2343, 22346], - [0, 22347, 22348, 22349, 34352], - [0, 12449, 4549, 9363, 32568, 12447, 32567], - [0, 1414, 1177, 3984, 1894, 3541, 3985, 91, 12396, 3999, 3978, 32484, 27706, 27711], - [0, 1745, 25131, 3990, 1932, 3984, 32553, 4549], - [1, 2343, 22351], - [0, 22352, 0, 22354, 2523], - [0, 9363, 3137, 26987, 4549], - "@nodeutils/defaults-deep", - [0, 32452, 6892, 1783, 26564, 1644, 1932, 3984, 32553, 5341, 1633, 4549], - [1, 2343, 22356], - [0, 22357, 22358, 22359, 34352], - [ - 0, 32582, 32584, 3988, 32587, 32591, 23059, 23065, 23070, 23075, 23078, 32593, 23080, 32595, 23082, 32599, - 32601, 32606, 32609, 23098, 32613, 23113, 32617, 32620, 32626, 32629, 32631, 32636, 23118, 32638, 32640, 32646, - 32651, 32654, 32656, 32658, 32664, 23128, 23133, 23136, 32667, 23139, 23141, 11382, 32668, 10632, 32669, 32672, - 4549 - ], - [0, 192, 5467, 1177, 1909, 2114, 2675, 2990, 1894, 3985, 1906], - [0, 2195, 16342, 3984], - "from2-string", - "@shi", - "nnn/eslint-config-node", - [2, 22361, 22362], - [1, 2343, 22366], - "warnings", - [0, 22367, 22368, 22369, 2537], - [ - 0, 32582, 3988, 10630, 23059, 23065, 23070, 23075, 29079, 23078, 29082, 32593, 23080, 32595, 23082, 32599, - 32601, 32606, 23092, 32609, 32681, 32686, 32689, 29091, 29097, 29100, 29132, 29143, 29147, 29149, 32613, 32692, - 23113, 32696, 32617, 32699, 32620, 32626, 32629, 32631, 32636, 23118, 32638, 32703, 29151, 32705, 32646, 32651, - 32707, 32710, 32654, 32656, 32658, 32715, 32717, 32664, 23128, 23133, 23136, 32667, 23139, 23141, 11382, 32668, - 13124, 10632, 23143, 32669, 32719, 4290, 4549 - ], - [0, 1894, 3985, 4505, 91, 1906], - [0, 16342, 3984, 3997], - "-match", - [2, 7534, 22370], - "flatnest", - [1, 2343, 22374], - [0, 22376, 22377, 22383, 4139], - "@type-challenges/utils", - [0, 12396, 9363, 3140, 4549, 12449], - [0, 4874, 1414, 1894, 3975, 3978, 3985, 3992, 3998, 13124, 4505, 91, 1906], - [2, 29833, 2658], - [2, 3101, 7131], - "to-a", - "bsolute-glob", - [2, 22380, 22381], - [0, 2587, 1936, 1783, 26564, 1932, 32462, 3958, 32553, 3984, 4549], - [1, 2343, 22385], - [0, 22386, 22387, 22388, 2487], - [0, 1139, 32732], - [0, 1111, 1317, 20627, 1177, 1926, 1999, 2398, 2600, 3127, 2899, 3421, 4042, 4058, 4067, 4073, 4146], - [0, 20627, 1783, 5980, 1644, 57, 3729, 4001, 8924, 3902, 2585], - [1, 2343, 22391], - "divide", - [0, 0, 14066, 22393, 2523], - "separate", - [0, 2323, 19101, 17996, 8297], - [1, 2343, 22395], - [0, 22396, 22397, 22398, 2537], - [0, 1437, 2070, 4747], - [0, 442, 1414, 1429, 1431, 1177, 2899], - [0, 4068, 2585, 16504, 2090], - [1, 2343, 22400], - [0, 22401, 22403, 22404, 2399], - [ - 0, 3763, 29749, 3348, 2051, 32749, 15057, 32751, 2139, 3173, 32753, 4100, 4454, 32754, 32756, 32757, 32758, - 32759, 21144, 3518, 2854 - ], - [2, 3715, 4001], - [ - 0, 3421, 4389, 2297, 32761, 4039, 1503, 1362, 4255, 1596, 32762, 19946, 1389, 1400, 14038, 2886, 4153, 2871, - 3524, 21146, 2906 - ], - [0, 27, 2869, 614, 6435], - "prettify", - [1, 2343, 22407], - [0, 22408, 22409, 22411, 2537], - [0, 1362, 4454, 32768, 32770], - [0, 1429, 2323, 1437, 1209, 4039, 705, 2463, 1364, 2384, 4089, 2436, 27608, 3753], - "jsftp", - [0, 4731, 27, 2671, 1862, 705, 21244, 32773, 1362], - "jsftp-mkdirp", - [1, 2343, 22415], - "ftp-test-server", - [0, 22416, 22417, 22418, 34352], - [0, 32770, 32768, 4454], - [0, 1364, 1429, 1437, 2323, 27608, 2384, 2436, 2463, 1209, 3753, 705, 4039, 4089], - [0, 4731, 27, 2671, 1862, 705, 21244, 32773, 970], - [1, 2343, 22421], - "gift", - [0, 0, 22423, 2514, 2399], - "wrap-promise", - [0, 4474, 91, 1506], - [1, 2343, 22429], - "octonode", - [3, 8304, 11], - [2, 15034, 22426], - [2, 22363, 1231], - [0, 0, 22431, 22432, 2537], - "branch", - [0, 6637], - [0, 3209, 4017, 32792], - [1, 2343, 22434], - [0, 0, 22441, 22442, 2523], - "any-", - [2, 5124, 1867], - [2, 22435, 22436], - [3, 21732, 13], - "eam", - [2, 22438, 22439], - [ - 0, 810, 972, 4870, 4880, 4883, 7749, 1009, 32801, 1011, 32804, 1177, 1959, 32805, 2832, 1209, 3057, 3145, 32807, - 32368, 1894, 89, 3824, 3876, 4039, 4167, 4493, 91, 1984 - ], - [0, 89, 3875], - "gulpgit", - [1, 2343, 22445], - [0, 0, 22446, 22447, 2537], - [0, 1178, 1597, 1177, 2765, 2766, 2297, 2881, 2895, 2898, 6387, 2910, 2915, 2921, 2923, 3734, 4042, 4075, 91], - [0, 32814, 24800, 31767, 614, 5576, 1388, 6422, 6805], - [3, 6530, 10], - [2, 22448, 4552], - [1, 2343, 22452], - "nid", - [0, 22453, 22454, 22455, 2399], - [0, 32820, 17501, 32824], - [0, 15221, 4384, 4449, 4389, 1796, 1177, 3188, 4039, 4135, 32826, 3410, 2708, 3433, 20492, 4103, 13614], - [0, 814, 3209, 202, 1237], - [1, 2343, 22457], - [0, 0, 8134, 22459, 2523], - "gulp-de", - [0, 3209, 814, 3403, 1237, 7115, 15403, 1204], - "gulp-declare", - [1, 2343, 22464], - "fine-module", - [2, 22458, 22462], - [0, 22467, 0, 22468, 2399], - "gulp-wrap", - "nsdeclare", - [0, 32836, 1573, 3008, 3561, 4227], - [0, 2924, 1194, 1623, 3374, 9345, 814, 1002, 2278, 10903, 2090], - [1, 2343, 22470], - [0, 22471, 22472, 22473, 2523], - [0, 32842, 8098, 2151, 2036, 2822, 32843, 3348], - [ - 0, 48, 53, 13693, 61, 71, 78, 13051, 85, 87, 97, 192, 6298, 6061, 6063, 1166, 1170, 1178, 1208, 1212, 1364, - 1429, 16311, 1596, 31058, 1687, 8942, 1177, 32848, 32850, 1938, 1948, 1951, 32852, 1954, 1958, 1964, 32855, - 1966, 1969, 1982, 2026, 32856, 2675, 2824, 2848, 3019, 2899, 3200, 32858, 3421, 4131, 32860, 4342, 32861 - ], - [0, 8623, 1118, 1179, 1745, 32864, 6533, 32867, 4030, 5592, 27], - [1, 2343, 22476], - "eventstream", - [0, 22477, 22478, 22479, 2537], - [ - 0, 3763, 1641, 32874, 3171, 3441, 3533, 710, 32876, 3348, 1209, 4135, 4591, 30107, 3084, 2141, 12627, 1147, - 20412, 32759, 32875, 15220, 32873 - ], - [ - 0, 3421, 3467, 1429, 2070, 2899, 4193, 1177, 3188, 4039, 2720, 2276, 1894, 1596, 1155, 32883, 20441, 3697, 3752, - 1745, 32881, 32878, 1942, 1895, 1955 - ], - [0, 8173, 5130, 2026, 32885], - [1, 2343, 22482], - [2, 11941, 1596], - [0, 22483, 9888, 2514, 2537], - [0, 3763, 4734, 4745, 2685], - [1, 2343, 22485], - [0, 22486, 22487, 22488, 4139], - [0, 21420, 4174], - [0, 4481, 1906], - [ - 0, 2021, 32896, 3729, 30135, 32897, 7226, 6689, 32899, 32900, 24601, 200, 13006, 1111, 15814, 6048, 7009, 7201, - 6621, 4166, 6876 - ], - "htm", - [1, 2343, 22491], - [0, 22492, 0, 22493, 4139], - [0, 1362], - [0, 18035, 32906, 32907, 32909], - [1, 2343, 22503], - "gulp-spawn", - [2, 22501, 33473], - "gulp-svg2ttf", - "2svgfont", - [2, 45, 22498], - [2, 2518, 22499], - [3, 29059, 12], - "gulp-ttf2eot", - [0, 0, 22506, 2514, 2523], - "gulp-ttf2woff", - [2, 22504, 1276], - [0, 21147, 2759, 4389], - "@types/gulp", - [1, 2343, 22513], - "metapak", - "-nfroidure", - [2, 22509, 22510], - "streamtest", - [0, 22514, 22515, 22516, 2523], - [0, 1177, 5896], - [0, 4874, 2025, 2899, 3421, 4474, 91], - [0, 7190, 14419, 3212, 1858, 1237, 2275, 1973, 27916, 3430, 21147, 3209], - [1, 2343, 22520], - "gulp-match", - "ternary-stream", - [0, 0, 22523, 22526, 2537], - "exhaust", - [2, 4279, 22521], - [0, 5898, 1503, 6618, 6786, 30025, 32925, 3028, 32927, 32930, 3776, 4255, 4384, 4481], - "if", - "ternary", - [ - 0, 3048, 7002, 3583, 1496, 1585, 1697, 6899, 6803, 3432, 6693, 3743, 7098, 6638, 6618, 7167, 2062, 6681, 6856, - 6986, 7035, 6648, 7284, 6786, 6670 - ], - [1, 2343, 22528], - [0, 22529, 22530, 22531, 2537], - [0, 2070, 21510], - [0, 4874, 3188, 1894, 4384, 4483, 4508], - [0, 6790, 7218, 6610, 7293, 7204, 200, 7074, 6899], - [1, 2343, 22533], - [0, 22534, 22535, 22537, 2537], - [0, 3263, 8248, 32944], - [0, 2765, 32942, 32947, 32949], - "gulp-gm", - [0, 32951, 27747, 29002, 8652, 12197, 158, 32952, 28125, 4041, 13008, 32954, 32956, 32959, 32961, 1473], - [1, 2343, 22539], - [0, 12881, 22540, 22541, 2537], - [ - 0, 16003, 32967, 16005, 16002, 16000, 15999, 442, 8998, 5012, 25130, 11536, 8862, 15134, 811, 8850, 816, 6373, - 10615, 10817, 10895, 32970, 6503, 4874, 20374, 5254, 21626, 21830, 1082, 32971, 15128, 1397, 1405, 1457, 1540, - 1593, 1610, 32972, 1859, 1866, 1177, 1895, 1955, 1982, 1988, 2116, 32973, 2151, 10754, 2203, 2675, 10898, 2990, - 10902, 3090, 3144, 2899, 3363, 22496, 3421, 5561, 3527, 3530, 32977, 1894, 3706, 3714, 3718, 4019, 4042, 4060, - 4135, 4172, 4174, 4227, 4232, 4376, 4072, 4484, 91, 4523, 1983, 4614, 188, 4630, 13151, 32979, 4748 - ], - [0, 5260, 6996, 6903, 5194, 6708], - [1, 2343, 22543], - [0, 22544, 22545, 22546, 2537], - [0, 5652, 4081], - [0, 53, 8229, 71, 83, 87, 1397, 1177, 1895, 1955, 2675, 2990, 2899, 1894, 4042, 4048, 4058, 4227, 4232], - [0, 4080, 1172, 6778, 5194], - [1, 2343, 22548], - [0, 22549, 22550, 2514, 2443], - [0, 1397, 4081], - [0, 1177, 2899, 4042], - [1, 2343, 22552], - [0, 22553, 22554, 22556, 2523], - [0, 32998, 4081], - [0, 15134, 1177, 2022, 2899, 3421, 4039, 4042, 33001, 33002], - "group-array", - [0, 4042, 4080, 5284, 5194, 5260, 4298, 33005, 4051], - "strip-color", - [3, 5467, 19], - [2, 22558, 1098], - [1, 2343, 22563], - [2, 5376, 591], - [3, 10705, 13], - [0, 22564, 22565, 2514, 2537], - [0, 2007, 10898, 3090, 814, 4081], - [ - 0, 53, 87, 94, 1082, 1177, 1938, 2675, 2990, 10902, 2899, 1894, 10904, 4042, 4045, 4058, 4067, 4172, 4227, 4232, - 91 - ], - [1, 2343, 22567], - [0, 22569, 22570, 22571, 2537], - "inline-css", - [0, 3090], - [0, 51, 19861, 33017, 1006, 4874, 4880, 1414, 4042, 91], - [0, 4080, 91, 4056, 1007], - [1, 2343, 22573], - [0, 22574, 22577, 2514, 2443], - [0, 4081], - "lodash.g", - [2, 22575, 19530], - [0, 1177, 1938, 2675, 2990, 2899, 1894, 4042, 4048, 4067, 4232], - [1, 2343, 22579], - [0, 22580, 22581, 22582, 2523], - [0, 33028, 20378, 1209, 3090, 3220, 33029, 33031, 33036], - [ - 0, 53, 87, 94, 5583, 811, 816, 8661, 1009, 1011, 1104, 1198, 1177, 1881, 1938, 2061, 2151, 29406, 2323, 33038, - 2441, 2765, 2766, 1894, 4039, 4042, 27720, 33042, 4449, 91 - ], - [0, 4042, 4080], - [2, 17487, 8162], - [2, 11941, 22583], - [1, 2343, 22586], - [0, 22587, 22589, 22591, 2487], - [0, 33048, 33051, 1618, 33052], - "isparta", - [0, 24235, 1676, 2899, 4042, 4045, 4066, 4146], - "unit test", - [0, 4080], - [1, 2343, 22593], - [0, 22594, 22597, 22591, 2487], - [0, 1082, 33051, 2007, 3090, 33052, 4081], - [2, 34675, 22596], - "-links-validator", - [0, 1175, 1264, 1389, 1192, 3188, 2899, 4039, 4042, 4045, 4067], - [1, 2343, 22599], - [0, 22600, 22603, 22604, 2523], - [0, 5251, 1405, 10912, 814, 4081], - [2, 4402, 16237], - [2, 2767, 22601], - [0, 53, 87, 94, 1856, 1177, 2899, 4042, 4045, 4055, 4058, 10916, 91], - [0, 4042, 4080, 6778, 3378, 5260], - [1, 2343, 22606], - [0, 22607, 22608, 22604, 34352], - [0, 3090, 4081], - [0, 1177, 1938, 2675, 2990, 10902, 2899, 1894, 4042, 4048, 4172, 4227, 91], - [1, 2343, 22610], - [0, 22611, 22612, 22613, 2399], - [0, 10895, 16799], - [0, 10817, 4874, 1009, 1011, 1177, 1895, 1955, 1192, 1894, 4039, 4042, 4468, 91], - [0, 4042, 4080, 12938, 4227, 33078], - [1, 2343, 22615], - [0, 22616, 22617, 22618, 2487], - [0, 51, 2805, 4143, 4072], - [0, 53, 1192, 1894, 4042], - [0, 4042, 4080, 4072, 3178], - [1, 2343, 22620], - [0, 22621, 22622, 22623, 2523], - [0, 814, 4081], - [0, 1397, 1177, 2899, 4039, 4042, 4048, 4055, 4484, 91], - [0, 4080, 91, 6778], - [1, 2343, 22625], - [0, 22626, 22627, 22628, 2537], - [0, 10895, 2102, 2151, 4135, 4484], - [ - 0, 11893, 811, 816, 33097, 4864, 33099, 5087, 4870, 4874, 8860, 5254, 1009, 1011, 1512, 1177, 33100, 1192, 1209, - 3429, 4039, 4042, 33101, 4076, 4468, 91 - ], - [0, 4076, 4075, 4080, 91, 6778, 4042, 3378], - [1, 2343, 22630], - [0, 22631, 22632, 22633, 2487], - [0, 51, 2805, 4143, 4535], - [0, 53, 87, 1193, 1192, 1894, 4042], - [0, 4042, 4080, 2280, 3178], - [1, 2343, 22635], - [0, 22636, 22637, 22641, 2537], - [0, 3445, 3530, 4227, 4747], - [ - 0, 811, 816, 10615, 10817, 5364, 33115, 33116, 33118, 33120, 33121, 33123, 4874, 20374, 4892, 1413, 1654, 14674, - 17086, 17091, 1655, 1660, 1701, 3400, 30889, 3561, 16578, 3698, 1894, 28865, 4042, 10854, 2278, 4484, 91, 1983, - 1984 - ], - "array-unique", - "gulplog", - "has-gulplog", - [0, 4080, 4078, 11996, 33126, 33127, 33129], - "capture-", - [2, 22642, 3101], - [1, 2343, 22645], - [0, 22646, 22647, 22648, 2523], - [0, 2007], - [0, 1006, 5087, 8778, 4874, 2675, 1192, 2990, 3170, 1894, 4042, 4055, 4067, 4075, 4172, 4468, 4487, 91, 19545], - [0, 4042, 594], - [2, 4599, 3101], - [1, 2343, 22652], - [2, 19984, 1276], - [0, 0, 22653, 2514, 2523], - [0, 1389], - [1, 2343, 22655], - [0, 22656, 22657, 22658, 2399], - [0, 33145, 8712, 1410, 1423, 2215, 3561, 4232, 4317, 33146, 1835, 4164], - [ - 0, 33152, 51, 53, 68, 5216, 61, 76, 14160, 78, 33153, 81, 5715, 4851, 5241, 83, 87, 90, 92, 97, 101, 104, 33156, - 33158, 33159, 33162, 8317, 8755, 554, 617, 33165, 33167, 33170, 33172, 33173, 13471, 8648, 842, 11534, 33174, - 33176, 33178, 19861, 10879, 33179, 24807, 31666, 5364, 33181, 7806, 33183, 11796, 11477, 21122, 5245, 33189, - 33191, 4865, 8780, 8264, 4870, 33193, 13057, 33195, 20374, 33197, 4880, 4883, 15606, 5254, 33198, 16149, 13214, - 23452, 11800, 9241, 20463, 13753, 1082, 33199, 31705, 1138, 1145, 1154, 33200, 20476, 1251, 15009, 1393, 1398, - 1413, 33202, 33204, 1525, 33206, 1536, 12084, 15015, 1560, 1562, 977, 1615, 1618, 11890, 16912, 16566, 1676, - 11478, 15018, 33208, 2018, 2105, 2145, 2070, 2553, 2659, 2661, 15022, 2674, 16837, 33209, 2689, 26453, 2755, - 2805, 2856, 2863, 20465, 33210, 3084, 3177, 3244, 3266, 33211, 23175, 3322, 3467, 15031, 6042, 3479, 3502, 3509, - 3530, 12344, 3605, 16840, 3638, 16841, 16842, 3672, 3676, 3678, 3688, 3729, 3757, 15033, 3784, 3878, 3957, 4111, - 4135, 710, 27062, 20508, 4165, 4227, 4230, 28512, 15039, 15040, 9221, 33212, 15042, 4294, 7080, 4390, 33213, - 4072, 4409, 4425, 15046, 15047, 11804, 33214, 614, 15048, 33215, 24739, 2924, 4729, 4763 - ], - [0, 89, 5130, 3287, 5122, 36, 202, 6400, 5995, 200, 4592], - [1, 2343, 22660], - [0, 0, 22661, 22662, 34352], - [ - 0, 14192, 1235, 14196, 14198, 19130, 14199, 14214, 14215, 14217, 1244, 1264, 19127, 18801, 18693, 1378, 1381, - 19119, 18686, 19123, 19122, 1825, 18825, 18829, 33223, 19121, 2899, 3736 - ], - [0, 19132, 6567], - [1, 2343, 22664], - [0, 22665, 22666, 22668, 2523], - [0, 25623, 3527, 3561, 4300], - [0, 1414, 2899, 4255], - "kew", - [0, 33231, 1623, 33232, 4086, 5130, 590, 1504, 26535, 6270, 353], - [1, 2343, 22670], - [0, 22671, 22672, 22673, 4139], - [0, 1437, 2061, 3544], - [0, 2323, 2899, 4170], - [0, 17461, 7170, 6769, 2323, 3468], - "treams", - [2, 6825, 22674], - "ng-annotate", - [1, 2343, 22678], - [0, 0, 22679, 22680, 2523], - [0, 1090, 4389], - [0, 22114, 1149, 3046, 7241, 14629, 18462, 4552, 33244], - [1, 2343, 22682], - [0, 0, 0, 22683, 2537], - [0, 33249, 33250, 7109, 20018, 7099, 7022], - "develop", - [1, 2343, 22686], - [0, 2513, 22688, 22689, 34352], - "restart", - [ - 0, 33256, 7, 842, 8712, 4856, 4870, 6503, 4874, 7749, 6513, 6512, 28198, 1009, 1011, 1257, 1429, 33258, 1473, - 1512, 1610, 1652, 33261, 1874, 1177, 24287, 2139, 2151, 2070, 16015, 2675, 13305, 2990, 1209, 3183, 2899, 3363, - 3400, 8967, 12344, 1894, 1862, 4042, 32414, 33263, 4067, 4167, 4172, 4193, 4196, 4232, 4376, 4474, 4487, 4490, - 33265, 33267, 33273, 91, 4585, 5573, 2924 - ], - [0, 7099, 7022, 6568, 7111, 7199, 7040, 7027, 6858, 6789, 6746], - [1, 2343, 22691], - [0, 0, 9264, 22692, 34352], - [0, 1398, 33283, 33284, 6953, 4100, 1965, 33287], - [1, 2343, 22697], - [3, 13337, 13], - [2, 6574, 22694], - "mac notification", - [0, 22698, 22700, 22701, 2537], - [0, 2708, 4135, 4747], - "notify-osd", - [0, 13614, 1158, 1159, 1796, 1177, 33293, 3421, 4389], - [0, 20001, 25816, 3378, 33295, 10381, 6953, 33297], - [1, 2343, 22703], - [0, 22707, 22708, 22709, 2537], - [3, 13107, 12], - [2, 22704, 2187], - [2, 14983, 22705], - [ - 0, 33304, 21995, 1149, 33307, 1437, 1525, 33312, 1536, 1544, 977, 1575, 1581, 29500, 1797, 2026, 2040, 33313, - 2070, 33315, 33316, 32959, 33319, 33322, 33324, 33325, 33327, 3183, 33328, 3494, 3509, 3547, 3741, 33329, 33332, - 33335, 4135, 4148, 4151, 33336, 33339, 4538, 4590, 33340 - ], - [ - 0, 1317, 1553, 1177, 2025, 2151, 33342, 2899, 3416, 3560, 33344, 33346, 33349, 33352, 33354, 33357, 4170, 4220, - 4342, 4449 - ], - [0, 33359, 33362, 2026, 33363, 33365, 8173, 8172, 3469, 4218], - [1, 2343, 22711], - [0, 22712, 22713, 22714, 2523], - [0, 33379], - [0, 4389, 1090, 33381, 1389, 1537], - [0, 2090, 1213, 33383, 2574, 2649, 1867], - "acorn-typescript", - "esrap", - [1, 2343, 22718], - [0, 22719, 22721, 22722, 4139], - [0, 1699, 1874, 2654, 2747, 33390, 3561], - "zimmerframe", - [0, 1177, 2899, 4193, 33395], - [0, 1936, 57, 18113, 2574], - [1, 2343, 22724], - [0, 22725, 0, 22730, 2523], - [0, 1457, 2700, 4228], - "ENV", - "ifdef", - "ifndef", - "echo", - [0, 590, 4329, 2278, 7121, 1623], - [1, 2343, 22732], - [0, 22733, 22734, 22736, 2523], - [0, 23175], - [ - 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 1369, 1610, 1622, 1628, 1700, 1701, 1835, 1177, 1895, 20281, 1938, - 1939, 1942, 1953, 1955, 1982, 2092, 33408, 2203, 2675, 1192, 2990, 33415, 3144, 3342, 33420, 3400, 1894, 2278, - 21688, 4135, 4257, 4307, 91, 4523, 2924, 4677, 4681 - ], - [2, 1876, 2282], - [0, 2278, 22022, 2924, 1194], - [1, 2343, 22738], - [0, 0, 22739, 2514, 4139], - [0, 1894, 4384], - [1, 2343, 22741], - [0, 22742, 22744, 22745, 34352], - [0, 33435], - "views", - [0, 33437, 1414, 33438, 1177, 1776], - [0, 2844, 1745], - "precompile", - [1, 2343, 22748], - [0, 22749, 22750, 13533, 2537], - [0, 1091, 1092, 12384, 8818], - [ - 0, 1700, 1192, 2675, 1177, 1701, 2203, 2924, 1894, 48, 442, 1193, 91, 53, 4874, 2990, 3400, 192, 1953, 27928, - 4257, 87, 1939, 1942, 1938, 20281, 1982, 1895, 1955, 19344, 5467 - ], - [1, 2343, 22752], - [0, 22754, 22755, 22756, 2523], - "src", - [0, 89, 3824, 3286], - [0, 91, 4874, 4880, 4883, 1165, 3561, 4383, 1177, 4828], - [ - 0, 33454, 33455, 2145, 12589, 1616, 33456, 12589, 5472, 20500, 33459, 1237, 33462, 33464, 12590, 33465, 27666, - 11996 - ], - [1, 2343, 22758], - [0, 22759, 0, 22760, 2523], - [0, 1821, 3299, 15160], - [0, 29395, 33471, 33472, 4126], - [1, 2343, 22763], - [2, 4068, 3101], - [0, 0, 0, 22764, 2537], - [0, 33477, 3778, 1616], - [1, 2343, 22766], - [0, 22767, 22768, 22773, 4139], - [0, 33482, 2866, 4449, 4729], - [ - 0, 442, 13838, 1177, 1895, 1951, 1953, 17303, 1955, 2026, 2203, 2564, 1776, 2899, 3200, 3246, 1894, 4150, 4193, - 4351 - ], - "modif", - "y-filename", - [2, 22769, 22770], - "rev-hash", - [0, 13428, 28522, 5472, 11132, 13841], - "rev-path", - "sort-", - "sort-keys", - [1, 2343, 22779], - "vinyl-file", - [0, 22780, 22786, 22787, 2523], - [ - 0, 16607, 33490, 6065, 16608, 16612, 33491, 1595, 1676, 33493, 2020, 2089, 33494, 2188, 33497, 22845, 2613, - 33499, 3021, 3127, 14774, 3170, 33500, 25873, 27168, 4025, 4135, 6554, 4747 - ], - "rev", - "revving", - "revision", - "expire", - "assets", - [ - 0, 4874, 6547, 1166, 1414, 1470, 1652, 1736, 33503, 2151, 2212, 2822, 3019, 19736, 33505, 3297, 3401, 33507, - 1894, 23535, 4193, 23730, 4400, 4421 - ], - [0, 18526, 13428, 13729, 1237, 3383, 20001, 3979, 4135, 15525], - [1, 2343, 22790], - "deserialization", - [0, 22792, 22793, 2514, 2537], - "deserialize", - [0, 97, 33513, 33515, 6372, 33519, 1497, 33520, 1209, 3021, 3744, 3847, 32225, 4163], - [ - 0, 33522, 48, 53, 61, 73, 76, 81, 83, 87, 90, 94, 33525, 9310, 33528, 33530, 10875, 4880, 1009, 1011, 8158, - 33532, 1178, 1195, 33537, 1208, 1210, 33541, 1251, 31600, 33543, 1429, 33545, 1582, 1610, 1651, 1676, 1719, - 1742, 19526, 1843, 1177, 1879, 1895, 4916, 1938, 1947, 1951, 1959, 1961, 2060, 2193, 2323, 2455, 2541, 2675, - 14708, 2297, 2881, 32762, 2886, 2900, 2904, 2925, 2975, 2990, 2899, 1894, 3725, 3758, 3786, 89, 33546, 33550, - 3822, 3824, 3836, 3843, 3884, 3885, 33552, 33553, 33556, 3904, 33558, 4039, 33560, 33562, 33564, 4193, 4196, - 4201, 4261, 33565, 4409, 33566, 4431, 91, 4597, 2924, 4676, 4677, 4679 - ], - [1, 2343, 22796], - "each-async", - [0, 22797, 22799, 22800, 2537], - [0, 1177, 1900, 1903, 33572, 1938, 1953, 1958, 1959, 33573], - "md5-hex", - [0, 17529, 1698, 3188, 4039, 4092, 4389], - [ - 0, 19309, 33576, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 2446, 2292, 2272, 671, 19315, - 19269, 33578, 2869, 4255, 19317, 590, 19318, 19320, 19273 - ], - "ruby", - [1, 2343, 22803], - [0, 0, 22805, 2514, 2523], - "@img/colour", - [0, 9516, 9515, 1317, 4384], - [1, 2343, 22807], - [0, 22808, 10377, 22809, 2537], - [0, 1676, 1833, 1869, 984, 2145, 2657, 3173, 3242, 3440, 3781, 4266], - [0, 2947, 2090, 36], - [1, 2343, 22811], - [0, 22812, 22814, 22815, 2523], - [ - 0, 22966, 8364, 33593, 33596, 33598, 33599, 22967, 19593, 3034, 3072, 3183, 22451, 22968, 33602, 33603, 3763, - 33605, 28440, 33606 - ], - "sftp", - [ - 0, 8357, 8359, 33608, 4874, 1149, 4440, 1596, 17402, 2036, 33612, 21082, 1894, 33615, 33618, 28664, 33620, - 25649, 91 - ], - [0, 3166, 11100, 27662, 33624, 14584, 33625, 14586, 14587, 33626, 5130, 33627, 33628, 17757, 6081, 33629], - [1, 2343, 22817], - [0, 0, 22818, 22824, 2443], - [0, 33634, 1149, 1317, 1177, 3210, 4384], - "@types/fa", - "ncy-log", - [2, 22819, 22820], - [3, 12459, 15], - [2, 22822, 5229], - [0, 4137, 19748, 33636, 28277], - [1, 2343, 22826], - [0, 22827, 22828, 22830, 2523], - [0, 33646, 3348, 1676, 33641, 1209, 3220, 4135, 1155, 2712, 5245, 33643, 33645, 3222, 14334, 33642, 25624], - [ - 0, 3519, 3421, 1429, 1082, 1702, 33653, 2675, 2899, 3478, 4193, 1177, 33663, 3260, 4039, 1448, 668, 33669, - 33673, 4246, 25635, 25633, 33674, 1587, 1610, 2071, 33672, 3480, 33675, 32842, 2152, 4196, 91, 4856, 4874, 2024, - 2990, 6503, 6513, 29283, 692, 4870, 33652, 33682, 33649, 192, 1431, 33668, 3125, 4131, 17370, 4232, 1942, 1951, - 33662, 1011, 33660, 22559, 1009, 33655, 33681 - ], - "brotli-size", - [ - 0, 3259, 33669, 7827, 14873, 25638, 3519, 3243, 33684, 33663, 14872, 25633, 26472, 33685, 3469, 6710, 33690, - 18035, 1747 - ], - [1, 2343, 22833], - "measure", - [0, 0, 22834, 22835, 2537], - [0, 1317], - [0, 4141, 7050, 5284, 676, 1781], - [1, 2343, 22846], - "@gulp-sourcemaps/identity-map", - [3, 22837, 17], - [2, 22844, 36113], - "map-sources", - [2, 22838, 22840], - "-fabulous", - [2, 1676, 22842], - "@vitest/e", - "hook-std", - [0, 22849, 2667, 22851, 2487], - "@codspeed/vitest-plugin", - "mississippi", - [0, 1676, 33735, 33702, 33705, 33725, 33727, 33713, 33723, 33714, 33710, 33734, 33729, 33722, 33718], - "source maps", - [ - 0, 33737, 33738, 33739, 33740, 33741, 28794, 2811, 33742, 33744, 33745, 25003, 33746, 33748, 4144, 4145, 33749, - 33750, 3101, 6621, 33751 - ], - [1, 2343, 22853], - [0, 22854, 22855, 22858, 2537], - [0, 1091, 1138, 1371, 1437, 1494, 1536, 33757, 33758, 13834, 16064, 33761], - [0, 2212, 4494, 4493, 2675, 1177, 1984, 1894, 91, 2990, 107, 7806, 33765, 7677, 33768], - "device", - "strip-debug", - [0, 4592, 4146, 3166, 2665], - [1, 2343, 22861], - "client-hints", - [0, 22862, 22864, 22865, 2487], - [0, 984, 2145, 3242, 3494, 4100], - "accord", - [0, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 4342, 33775], - [0, 2026, 33777, 2663], - [1, 2343, 22867], - [0, 22868, 22869, 2514, 2443], - [0, 1080, 6870, 1676, 1869, 2657, 3173, 3494], - [0, 1087, 1177, 1948, 2899, 3421, 4342], - [1, 2343, 22876], - "looks-same", - "svg2png", - "@cpplint/cli", - "rwd", - "retina", - [0, 22877, 9025, 2514, 2523], - [0, 1833, 1869, 3494, 710], - [1, 2343, 22879], - [0, 22880, 22881, 22882, 2537], - [0, 33798, 3171, 3181], - [ - 0, 192, 5467, 33801, 33803, 1168, 1429, 1431, 1527, 1177, 1895, 2151, 2675, 2990, 3073, 13824, 2899, 3310, 3421, - 1894, 3752, 33804, 4193, 4196, 4390 - ], - [0, 33804, 33807, 13573, 7200, 33808, 6997, 33811, 6949, 5351, 4967, 33813], - [2, 33888, 22889], - [1, 2343, 22885], - [0, 22886, 22887, 22888, 2523], - [ - 0, 33819, 33821, 33823, 33824, 7709, 33826, 33827, 33828, 27792, 33831, 13559, 33836, 33838, 33840, 29749, 1367, - 10785, 33841, 13566, 33843, 3445, 17009, 4729 - ], - [ - 0, 33846, 9167, 33848, 5087, 4874, 7819, 9241, 1009, 1011, 33838, 13566, 668, 33850, 1177, 1895, 19527, 1915, - 1938, 1955, 2675, 1192, 33851, 33852, 33854, 33857, 2845, 3381, 1894, 13569, 4257, 4468, 4474, 1531, 91, 3348 - ], - [0, 12, 7200, 5472, 1192, 33804, 4158, 1984, 13573, 6930, 6808, 7308, 33822], - "arm64", - [1, 2343, 22891], - [0, 22892, 0, 2514, 2537], - [0, 26956, 6641], - [1, 2343, 22895], - "rendering", - [0, 0, 22896, 22897, 2443], - [0, 1178, 1264, 1280, 1429, 1177, 2126, 33869, 2675, 2990, 2899, 1894], - [0, 4163, 4161, 4162, 26287, 3797, 33871], - [1, 2343, 22899], - [0, 22901, 22903, 22904, 2537], - [3, 18435, 14], - [0, 4135, 22804, 20584], - "incremental", - [0, 20762, 4481, 33891, 4391, 640, 33894, 2057, 22873, 11976, 3299, 33877, 2829, 33882, 33890, 33884, 33887, 22883], - [0, 21881, 18048, 12349, 12350, 23995, 20639, 8221, 20701, 33896, 158, 24800, 33897, 12712, 26490, 33898, 33899], - [1, 2343, 22906], - [0, 0, 22907, 22910, 2523], - [0, 13614, 1159, 9254, 1177, 2011, 2708, 2762, 3410, 3421, 4103, 4389], - [3, 15893, 12], - [2, 22908, 1512], - [0, 1523, 1644, 7336, 4166], - [1, 2343, 22912], - [0, 22913, 22914, 22915, 2537], - [0, 2020, 2071], - [0, 1166, 1437, 1506, 1177, 1881, 1938, 2822, 3421, 33910, 33912, 4172, 33916], - [0, 4167, 16159, 28984, 4166, 33918, 7048, 2763, 31360], - "@types/plu", - [1, 2343, 22921], - "gin-error", - [2, 22916, 22918], - "gulp-diff", - [0, 22922, 22925, 22926, 4139], - [0, 3266], - " compilation", - [2, 22902, 22923], - [0, 1429, 2228, 2899, 1839, 2240, 26399, 4436, 2305, 34238, 22000, 2236, 2300, 3006, 2253, 2273, 2281, 5535], - [0, 5843, 4439, 3265, 3348, 33927, 33928, 33929, 4169, 33930], - [1, 2343, 22928], - [0, 22929, 22931, 22934, 2537], - [0, 33936, 33937, 33938, 33941, 33942], - "array-each", - [0, 1362, 1177, 33945, 2899, 1894, 4042, 4067, 4487, 91], - "error-cause", - [2, 3094, 22932], - [0, 1973, 5982, 1145, 4170], - [3, 16647, 18], - "se-extend-native", - [2, 22935, 22936], - "list-map", - [2, 4601, 22938], - [1, 2343, 22942], - "tape-catch", - [0, 5621, 22943, 22944, 2537], - [0, 2228, 2247, 2253, 2273, 2281, 2285, 2290, 33953, 2291, 2316, 2832, 3006, 3518, 33954, 4135, 33955, 4232], - [0, 1783, 15253], - [1, 2343, 22947], - "uncss", - [0, 22948, 22949, 22950, 4139], - [0, 3183, 4167], - [0, 1173, 1264, 1280, 1177, 1881, 19527, 1938, 2822, 2899, 3421, 4039, 33910, 33963, 33912, 4170], - [0, 4167, 4166, 28984, 16159, 16160, 2978, 200, 8636], - [1, 2343, 22952], - [0, 0, 22953, 22954, 34352], - [0, 21122, 4874, 24162, 13680, 1414, 1894, 4384, 4474, 4508, 91], - [0, 6553, 2021], - [1, 2343, 22956], - [0, 22957, 22958, 22960, 2523], - [0, 1097], - [0, 2553, 3714, 4042, 4048, 4535], - "useref", - [0, 7521, 5224, 26514, 1424], - "async-once", - "gulp-dest", - [2, 3204, 22962], - [1, 2343, 22965], - [0, 22969, 22976, 22977, 4139], - "@hapi/joi", - "jsonic", - "optioner", - [0, 33986, 33989, 1676], - "array-differ", - "array-uniq", - "beeper", - "_reescape", - [2, 3024, 22973], - [3, 22974, 11], - [0, 33992, 33997, 5245, 5087, 4874, 668, 29154, 1192, 4474, 91], - [0, 3358, 34000, 30983], - "valuate", - [2, 22975, 22978], - "lodash._re", - [1, 2343, 22984], - "interpolate", - [2, 22980, 22982], - [0, 0, 22986, 22987, 2523], - [2, 3067, 6937], - [ - 0, 4481, 1192, 2675, 3534, 1177, 4039, 4042, 1894, 1610, 1193, 53, 5087, 1540, 34009, 3720, 97, 107, 87, 1926, - 34015, 68, 5583, 4073, 6373, 34019, 811, 816, 5522, 34013, 1201, 81 - ], - [0, 11615, 16114, 27968, 13527, 5130, 89, 1098, 188, 38, 14584, 4967], - [1, 2343, 22994], - "@test-runner/core", - "yazl", - [2, 22996, 32078, 6624], - "qpass", - "yazul", - [0, 22995, 22998, 22999, 2537], - [0, 11124, 826, 34034, 1687, 4351], - [3, 22989, 13], - [2, 22996, 23000], - [ - 0, 53, 11126, 11130, 11133, 11134, 34040, 28537, 34041, 1208, 1676, 1705, 668, 27502, 26739, 2185, 2990, 2899, - 3421, 1894, 3758, 4039, 4135, 4167 - ], - [0, 4193, 1973, 5472, 2275, 13106, 4158, 21147, 6901, 34044, 3212, 4731, 1145], - "live-view", - [2, 22996, 23003], - [1, 2343, 23005], - "oneline-view", - [2, 22996, 16316], - [0, 0, 23006, 23007, 34352], - [0, 442, 1414, 1429, 1177, 2899, 1894, 4193], - [0, 1429, 15385, 1388, 34050, 34053, 4193, 5472, 17051, 17052, 17050], - [1, 2343, 23010], - [2, 13857, 2663], - [0, 23011, 23012, 23013, 2523], - [ - 0, 9153, 6327, 1149, 1409, 34066, 34065, 3188, 4135, 16358, 2026, 2822, 705, 1866, 1525, 3181, 2861, 2036, 1364, - 1536, 2657, 2600, 34060, 34062, 3923, 34064 - ], - [0, 2899, 1362, 1389, 34068], - [0, 7223, 3383, 18157, 29179, 5260, 2658, 36], - [1, 2343, 23015], - [0, 23016, 0, 2514, 2487], - [0, 34076, 11480, 34078], - [2, 4598, 3426], - [1, 2343, 23019], - [0, 23020, 0, 23021, 2443], - [0, 34085, 2984, 34086, 3527, 27921], - [0, 4201, 200, 1999, 6681, 34088, 34090], - [1, 2343, 23023], - [0, 16583, 11580, 23027, 2523], - "smith", - [2, 3521, 23024], - "pngparse", - [0, 34096, 34098, 34099, 5995, 4967, 17758], - [1, 2343, 23029], - [0, 23030, 23031, 23032, 2399], - [0, 22992, 34105], - [0, 2924, 4469, 91, 4677, 23319, 4676], - [0, 5995, 34107, 5592, 33804, 18035], - [1, 2343, 23035], - "compressed", - [0, 0, 8134, 23036, 2523], - [0, 3403, 34116, 4207, 28978, 6574, 6270], - [1, 2343, 23038], - [0, 23039, 23042, 23044, 2537], - [0, 1110, 34121], - "catering", - "deglob", - [0, 1166, 1437, 34125, 4294, 1906], - "find-file-up", - [ - 0, 6913, 1871, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 6621, 1867, 6983, 6616, 7244, 4166, 4744, 3073, - 6807, 6876, 2585 - ], - "find-githost", - "link-re", - [1, 2343, 23067], - "ferences", - [2, 23046, 23048], - [2, 1163, 23049], - [2, 3986, 23050], - "remark-c", - [2, 15, 14994], - [2, 23052, 23053], - [3, 13240, 12], - "quote-", - [2, 23056, 17537], - [2, 1359, 23057], - [2, 23055, 23058], - "box-", - "-style", - [2, 6843, 23061], - [2, 23060, 23062], - [2, 4354, 23063], - [2, 23055, 23064], - [3, 23065, 22], - [0, 23068, 13640, 23072, 2537], - [0, 22437, 1455, 12918, 34132, 34134, 25377, 34136, 3275, 3518, 34137, 3718, 3730, 34139, 1241, 4747], - "ontent-indent", - [2, 23066, 23069], - [3, 23065, 13], - [0, 34141, 4796, 22832, 3378, 1161], - "block-style", - [2, 16080, 23073], - [2, 23071, 23074], - [3, 7900, 10], - [2, 23076, 15319], - [2, 23055, 23077], - "emphasis-marker", - [2, 23055, 23079], - "fenced-code-marker", - [2, 23055, 23081], - [3, 23082, 13], - "inal-newline", - [2, 23083, 23084], - "hard-", - [1, 2343, 23088], - [0, 0, 23089, 23106, 2523], - [0, 12310, 6061, 6063, 5476, 1414, 2899, 4131, 4255], - "break-spaces", - [2, 23086, 23090], - [2, 23055, 23091], - "-bullet-indent", - [2, 5401, 23093], - [2, 15794, 23094], - [2, 23055, 23095], - [3, 23096, 22], - [2, 23097, 8958], - [3, 13240, 15], - [2, 17793, 17825], - [2, 9344, 23100], - [2, 1160, 23101], - [2, 23099, 23102], - [3, 23058, 11], - "without-", - [0, 4213, 3974, 1871, 4577, 22188, 3656, 1002], - "marker", - [2, 23105, 23107], - [2, 23104, 23108], - [2, 23099, 23109], - "duplicate-", - [2, 23111, 7900], - [2, 23099, 23112], - "-cont", - "ent-indent", - [2, 23114, 23115], - [2, 156, 23116], - [2, 23099, 23117], - "padding", - [2, 16569, 23119], - [2, 23099, 23120], - "literal-urls", - [2, 23099, 23122], - [3, 13240, 17], - "used-definitions", - [2, 23124, 23125], - "rule-style", - [2, 23055, 23127], - [1, 2343, 23130], - [0, 0, 23131, 23146, 2537], - [0, 1596, 34154, 2899, 3421], - "strong-marker", - [2, 23055, 23132], - "cell-padding", - [2, 16065, 23134], - [2, 23055, 23135], - [3, 23136, 18], - "pipes", - [2, 23137, 23138], - "unordered-list-marker-style", - [2, 23055, 23140], - [2, 4586, 3966], - [2, 3986, 23142], - "unified-", - [2, 23144, 16284], - [0, 4213, 3974, 1002, 34156], - [1, 2343, 23150], - "-shiny", - [2, 18004, 23148], - [0, 7936, 7938, 7939, 2443], - "pull-", - [1, 2343, 23153], - [0, 23156, 0, 23157, 2537], - "pull-or-clone", - [2, 10617, 23154], - [0, 1437, 2713, 3183, 3923, 34167, 4294, 4425], - [0, 3721, 34170, 34172, 4255, 34174, 25264, 34177, 34179, 34181, 34182], - "fixer", - [1, 2343, 23160], - [0, 23161, 23162, 23170, 2523], - [0, 1170, 34189, 1676, 2131, 2141, 2188, 1209, 4113, 4296, 15502, 34190], - [ - 0, 442, 5245, 7810, 4870, 4874, 34194, 15507, 1364, 1512, 1687, 1742, 1792, 1177, 2026, 2099, 2070, 2899, 3421, - 1894, 3923, 4135, 4151, 4170, 4193, 4232, 25609, 4508, 91, 4523 - ], - [2, 13729, 18200], - "git-tags", - [2, 2264, 2907], - [2, 8961, 2499], - [2, 2312, 23166], - "jquery-", - [2, 23168, 2555], - [0, 4217], - [1, 2343, 23172], - [0, 23173, 0, 23174, 2537], - [0, 1080, 34200, 1594, 1676, 12777, 34201, 9247], - [0, 20863, 5130, 4699, 21405, 2018, 21302, 11444], - "neo-async", - [1, 2343, 23179], - "chai-diff", - [2, 2264, 4019], - [0, 23180, 0, 23181, 2537], - [0, 34208, 1676, 12779, 9247], - [0, 20863, 5130, 4699, 21405, 2018, 5576], - [1, 2343, 23183], - [0, 23186, 23191, 23194, 2537], - "ammo", - "heavy", - [0, 1676, 34226, 26137, 2713, 4567], - "bounce", - "catbox", - "somever", - "subtext", - [ - 0, 1389, 1839, 1177, 2025, 2323, 2409, 2494, 2496, 2510, 2530, 2297, 2871, 2876, 2881, 2900, 2899, 3752, 3756, - 4151, 34228, 4599, 4603 - ], - "statehood", - [2, 23188, 8329], - [0, 14609, 4699], - [1, 2343, 23197], - "vision", - [0, 0, 23198, 2514, 4139], - [0, 1414, 1742, 1177, 1894, 1895], - [1, 2343, 23200], - [0, 0, 23202, 2514, 2487], - "webidl-conversions", - [0, 34238, 1742, 2924], - "@vitest/ui", - [1, 2343, 23206], - "@webref/css", - [0, 23207, 23208, 13533, 2487], - [0, 2685, 4228], - [ - 0, 48, 53, 87, 192, 5467, 16405, 1193, 1610, 1622, 1700, 1701, 1177, 1895, 1938, 2675, 1192, 2990, 3144, 3400, - 1894, 4257, 2924 - ], - [1, 2343, 23210], - [0, 23211, 23212, 2514, 2537], - [0, 16136, 4227], - [0, 1389, 1509, 2665, 2899, 2924], - [1, 2343, 23214], - [0, 0, 23215, 23216, 2523], - [0, 4874, 1414, 1894, 3985, 3998, 4505, 91, 1906], - [0, 965, 1936, 17540, 34254, 11590, 1644, 1646], - [1, 2343, 23218], - [0, 23219, 23220, 23221, 4139], - [ - 0, 34270, 34266, 5526, 5528, 5529, 1448, 1509, 1525, 2071, 2215, 2220, 34264, 2228, 2247, 2253, 2256, 2258, - 2263, 2281, 2283, 2308, 2036, 2600, 2654, 2820, 2822, 34269, 2856, 1209, 3127, 34261, 3561, 2278, 4373, 4449 - ], - [ - 0, 48, 53, 87, 94, 10737, 34272, 1429, 1431, 6522, 1177, 1951, 1954, 1970, 2899, 3363, 1894, 4037, 4039, 4193, - 4196 - ], - [0, 2220, 1739, 1745, 34276, 34279, 5592, 9381, 1179], - [1, 2343, 23223], - [0, 23226, 23227, 2514, 4139], - "own-property-symbols", - [2, 2183, 23224], - [0, 4430], - [0, 2012, 19987, 19988, 19989, 34294], - [1, 2343, 23229], - [0, 0, 23230, 2514, 2523], - [0, 34300, 34301, 30025, 3421, 3697, 4255, 4389], - [1, 2343, 23232], - [0, 0, 9888, 2514, 2523], - [1, 2343, 23234], - [0, 0, 23235, 2514, 2537], - [0, 2323, 2899, 1177, 1317, 2463, 2384, 2409, 2494, 2530, 34312, 2510], - "@ljharb/", - [2, 23236, 2190], - [3, 19784, 15], - [2, 23238, 14037], - [3, 6541, 12], - [2, 23240, 3205], - [1, 2343, 23243], - [0, 23244, 23259, 23263, 2523], - [ - 0, 1362, 1473, 1512, 1636, 2151, 2036, 34317, 8691, 1209, 3367, 17997, 34318, 22519, 4431, 4597, 4600, 34319, - 34321 - ], - [2, 8727, 591], - [2, 10306, 5472], - "@ungap/structured-clone", - "from-parse5", - [2, 2573, 23248], - [2, 2580, 3493], - "html-v", - "oid-elements", - [2, 23251, 23252], - [2, 9406, 8193], - [3, 75, 9], - "namespaces", - [2, 5925, 23256], - "zwitch", - [0, 1429, 1596, 2759, 2899, 3202, 34324, 34326], - [3, 9315, 9], - "gap__structured-clone", - [2, 23260, 23261], - [0, 22055, 22074, 34328, 1623, 4329, 695, 2278, 4245, 34331, 17461], - "remark-api", - [1, 2343, 23268], - "unist", - [3, 2572, 9], - [0, 23269, 23270, 23271, 2537], - [0, 1326, 3299, 32944, 4390], - [0, 1177, 2899, 32942], - [0, 14872, 7827, 4246, 18035], - [1, 2343, 23280], - "aria-", - [2, 23273, 2618], - [3, 23249, 15], - [2, 23275, 1936], - "html-tag", - "-names", - [2, 23277, 23278], - [0, 23281, 23282, 23283, 2523], - [0, 34342, 34345], - [0, 1177, 15234], - [0, 21000, 4247, 22813, 18112, 4166, 2978, 21004, 5576], - [1, 2343, 23285], - [0, 23290, 23294, 23295, 2399], - "bcp-47-match", - "-separated-tokens", - [2, 14186, 23287], - "devlop", - [0, 21505], - "direction", - [2, 2573, 3661], - "not", - [0, 9516, 9515, 1317], - [0, 12616, 5122, 1965, 34354, 26965, 27081, 34355, 34356, 34357, 34359, 34360, 1936], - "selectall", - [1, 2343, 23298], - [0, 23299, 21592, 23300, 34352], - [0, 4745], - [ - 0, 4249, 1781, 4745, 17307, 25611, 1747, 7141, 7789, 166, 1721, 18035, 1745, 5995, 1550, 3230, 2109, 3259, 4246, - 6523, 20832, 25638, 1781, 3053, 34366 - ], - "attach-comments", - [2, 12413, 23301], - "is-i", - "dent", - "ifier-name", - [2, 23304, 23305], - [2, 23303, 23306], - [2, 12413, 23307], - [3, 6451, 11], - [2, 12127, 23309], - [3, 23310, 15], - [2, 23311, 1219], - "js-esm", - [2, 12127, 23313], - [1, 2343, 23317], - "esast-util-from-js", - [0, 0, 23318, 2514, 2443], - [0, 87, 1193, 1192, 34373], - "basic-node-server", - [1, 2343, 23321], - [0, 23323, 23325, 23326, 2487], - "ccount", - [0, 1177, 1903, 33572, 1938, 1953, 1958, 1959, 33573, 34380], - "tostring", - [0, 1615, 2554, 3183, 34383, 4092, 12823, 4389], - [ - 0, 19309, 4354, 16790, 1501, 19310, 19311, 19314, 19271, 18443, 1177, 2446, 2292, 2272, 671, 19315, 19269, 2869, - 4255, 19317, 590, 19318, 19320, 19273 - ], - [1, 2343, 23328], - [0, 23329, 23331, 23333, 2523], - [0, 1437, 1566, 34392, 1570, 25901, 1707, 20949, 34393, 2089, 2105, 31174, 4135, 28154, 4747], - "sval", - [0, 1429, 1177, 1903, 1938, 1954, 1958, 2899, 3203, 3215, 3421, 4167, 34395], - "solid", - [0, 1566, 4945, 13729, 13728, 6976, 15525, 1098, 4255], - [1, 2343, 23335], - [0, 23337, 23338, 23341, 2537], - "wcswidth", - [0, 1138, 1362, 17045, 1676, 2020, 17034, 10756, 28519], - [ - 0, 4874, 34405, 1429, 1610, 1705, 34407, 34408, 34409, 2212, 2848, 8163, 3183, 2899, 34410, 26230, 4131, 34413, - 4193, 4196, 20382, 4255 - ], - [2, 23340, 93], - "@swc-node/", - [0, 15656, 12804, 36, 6587, 1973, 6435, 6703], - [3, 9407, 13], - "nd-after", - [2, 23342, 23343], - "exsolve", - [1, 2343, 23347], - [0, 23348, 23349, 23350, 2523], - [0, 34423, 27073, 2175, 34421], - [0, 1241, 2276, 4545], - [0, 4264, 34426, 34427, 34429, 20863], - [2, 13721, 3585], - [2, 2573, 23351], - [1, 2343, 23357], - "build-", - "build-jsx", - [2, 12413, 23355], - [0, 0, 23358, 23360, 2523], - [0, 1645, 1177, 1903, 1938, 1948, 1954, 1958, 1970, 2899, 3421, 3784, 22449], - "svg-tag-names", - [0, 27, 6622, 1501], - "vdom", - "hyperscript", - "@glen/jest-raw-loader", - [1, 2343, 23365], - [0, 23366, 23367, 23368, 2537], - [0, 4729, 3445, 3930, 4135, 668, 37080, 36874, 7384, 26870, 5545, 968, 974], - [ - 0, 1797, 4763, 1429, 1687, 2070, 2807, 4200, 2020, 2975, 3144, 23802, 89, 4207, 20573, 2205, 3266, 3411, 28853, - 668, 23345, 2161, 2822, 6042, 814, 4448, 24324, 3555, 1894, 29318, 9241, 1420, 1525, 4788, 3530, 28863, 3824, - 11143, 4507, 33215, 4726, 9741, 16485, 30414, 3527, 4227, 4294, 91, 53, 17577, 4874, 1615, 1710, 29514, 104, - 14552, 30157, 11196, 58, 29515, 5254, 37084, 1707, 37491, 15245, 35349, 8646, 7931, 7948, 7637, 7812, 26380, - 15906, 36119, 8506, 30253, 32284, 4480, 101, 370, 15600, 30254, 30260, 30262, 24759, 5216, 30464, 20374, 30283, - 3885, 33523, 1582, 37017, 21122, 30913, 9329, 30284, 33228, 33534, 33538, 30300, 30313, 12837, 4300, 30321, - 30375, 31673, 30398, 966, 25114, 37449, 28465, 30406, 7943, 972, 33554, 33526, 8714, 19592, 9011, 30387, 3749, - 30453, 30454, 30467, 12315, 30468, 30470, 30471 - ], - [0, 4270, 4627, 4963, 23245, 23246, 89, 3286, 23803, 3857, 5123, 188, 1098, 3709, 5167, 5926], - [1, 2343, 23370], - [0, 23371, 23372, 23373, 4139], - [0, 2664], - [ - 0, 23363, 10825, 10827, 10828, 28147, 34473, 34475, 11011, 10837, 10840, 29877, 968, 972, 5087, 11292, 4880, - 1177, 34480, 1192, 11347, 2780, 1894, 3744, 3758, 89, 3824, 2278, 4111, 4270, 4468, 91, 4705, 4745 - ], - [0, 6718, 4270, 34484, 4963, 1745, 4967, 34485, 21043, 34491, 34493, 34494, 3416], - [1, 2343, 23377], - "regexgen", - "sort-object", - [0, 23378, 0, 5269, 2523], - [ - 0, 7, 53, 87, 6316, 6318, 1437, 1448, 1457, 1512, 1525, 1595, 6323, 2061, 34500, 2151, 2070, 2036, 2626, 2681, - 17449, 2856, 1209, 3079, 6326, 6327, 3127, 3183, 6330, 6331, 29899, 6332, 4135, 100, 4473, 3348 - ], - [1, 2343, 23380], - [0, 8856, 7938, 7939, 2443], - [1, 2343, 23382], - [0, 14754, 23383, 23384, 2523], - [0, 34508, 34510, 2899, 4170], - [0, 34513, 3101], - [1, 2343, 23386], - [0, 0, 23393, 23394, 2537], - [3, 5429, 9], - [2, 23387, 19315], - [2, 1561, 23388], - "origin-embedder-policy", - [2, 1611, 23390], - [3, 23391, 13], - [0, 816, 6503, 4874, 1642, 1794, 2899, 2966, 1894, 4042, 4064, 4066, 4170, 4474, 4494, 91], - [0, 3101, 353, 1641, 3048, 5995, 4967], - "-policy", - [2, 3456, 23395], - [2, 23392, 23396], - [3, 5974, 9], - [2, 23398, 19315], - [2, 23392, 23399], - "origin-", - "-cluster", - [2, 4575, 23402], - [2, 23401, 23403], - "refer", - "rer-policy", - [2, 23405, 23406], - "-security", - [2, 4714, 23408], - [2, 14104, 23409], - "x-content-type-options", - "x-dns-prefetch-control", - "x-download-options", - "x-frame-options", - "x-permitted-cross-domain-policies", - "x-powered-by", - "x-xss-protection", - [1, 2343, 23419], - [0, 23420, 11580, 23421, 2523], - [0, 17835, 692, 17754, 2129, 2760, 34524, 13291], - [0, 34527, 34528, 5995], - [3, 17494, 14], - [2, 23422, 965], - [1, 2343, 23425], - [0, 0, 0, 23426, 34352], - [0, 4283, 1671, 1871, 6901, 1666], - [1, 2343, 23428], - [0, 0, 23429, 23430, 2537], - [0, 2323, 2346, 2463, 2494, 34537, 2530, 28539, 4535], - [ - 0, 1871, 16116, 34540, 34541, 34542, 591, 1641, 1936, 18089, 1644, 1936, 2640, 4301, 6678, 10368, 15103, 1867, - 23615 - ], - [1, 2343, 23437], - "abbrev", - "archy", - "hexo-cli", - "hexo-", - [2, 23435, 2149], - [0, 23442, 23447, 23457, 2537], - "hexo-fs", - "hexo-i18n", - "hexo-log", - "hexo-util", - [0, 5139, 34547, 2626, 3021, 34551, 34553, 34556], - "-js-types", - [2, 2822, 23443], - "titlecase", - "warehouse", - [0, 34559, 34560, 17913], - "0x", - "bbrev", - [2, 9165, 23449], - "xt-table", - [2, 13419, 23451], - [2, 1884, 2596], - [3, 1778, 9], - [2, 23454, 3127], - [2, 23435, 23455], - [0, 1501, 7682, 7115, 1936, 34562, 34563, 7293, 22392, 4285, 1871, 4301, 2640, 17950, 2585, 34564], - [1, 2343, 23459], - [0, 23460, 8134, 23461, 2537], - [0, 34569, 4294], - [ - 0, 1871, 6843, 3656, 4289, 7062, 6922, 6981, 6701, 6581, 16041, 23336, 6700, 1111, 1867, 5281, 200, 6876, 7009, - 7201, 6575, 6611, 6795, 6960, 7135, 7230 - ], - [2, 11177, 17514], - [1, 2343, 23467], - "grunt-g", - "h-pages", - [2, 23464, 23465], - [0, 23468, 23472, 23473, 2523], - [0, 34576, 34578], - "scrawl", - "ducers-js", - [2, 4713, 23470], - [0, 4874, 1414, 26854, 1894, 3985, 3998, 4505, 91, 1906], - [0, 1646, 10368, 1867, 1936, 6843, 11043, 18944, 18089], - [1, 2343, 23475], - [0, 23477, 20489, 23481, 2537], - [2, 5058, 23278], - [0, 1109], - "freeze-es6", - [2, 1683, 23478], - [2, 5313, 14056], - [ - 0, 4301, 6678, 7293, 1111, 592, 1473, 7208, 1512, 7009, 7201, 1871, 6621, 1867, 6983, 6616, 7244, 4166, 4744, - 3073, 6807, 6876, 2585 - ], - "tiny-worker", - "wcag-contrast", - [1, 2343, 23485], - [0, 0, 8134, 23486, 2537], - [0, 4301, 4295, 1412, 4327, 3126, 3656, 4577, 22188, 7293, 6865, 6678, 2585, 1871], - [1, 2343, 23488], - [0, 0, 23489, 23490, 2537], - [0, 1166, 3130, 4481, 1906], - [0, 1781, 4301, 4298, 7293, 6865, 6678, 16112, 1644, 1541, 8309, 6937, 614, 1263, 6639, 19632], - [1, 2343, 23492], - [0, 0, 23493, 23494, 2537], - [ - 0, 3421, 1429, 3297, 2899, 1177, 4474, 1894, 3310, 91, 4856, 4874, 6503, 23496, 1431, 1938, 3200, 1895, 1955, - 9417, 1011, 10419, 1009 - ], - [0, 4302, 34601, 34602, 5592], - [1, 2343, 23497], - "undici-types", - [0, 23498, 23499, 23500, 2523], - [ - 0, 1149, 1676, 34607, 34610, 3324, 34612, 3368, 3460, 3917, 34613, 34615, 34616, 34619, 34622, 30142, 34625, - 34626, 34629, 4707, 2861, 1401, 34631, 1653, 2592, 2713, 695, 1209, 3081, 26443, 7305, 34421, 3220, 3923, 23975, - 4246, 34634, 26423, 34636, 34637, 34639, 29456, 4729 - ], - [0, 1177, 2292, 4384], - [ - 0, 9649, 34642, 29319, 34643, 26473, 34644, 13538, 4575, 13539, 6147, 6374, 24093, 1541, 4796, 20997, 20999, - 34647, 2134, 3358, 27318, 34650, 6807, 26474, 10057, 25202, 3151, 13499, 27838, 34651, 3378, 34652, 34653, - 26931, 6681, 2306, 3729, 15267, 28413, 29179, 5508, 8791, 11100, 34654, 34656, 7046, 34613, 34657, 34660, 30142, - 34629, 4303, 34661, 4345, 17184, 6901, 34662 - ], - [1, 2343, 23502], - [0, 23503, 23504, 23505, 2537], - [0, 34667, 34668, 34669, 34670, 1437, 1443, 13827, 1525, 2745, 2856, 34671, 1894, 4443], - [ - 0, 34673, 34676, 107, 192, 5467, 34677, 34679, 8661, 34680, 4856, 4874, 11438, 7819, 1011, 5476, 34681, 5478, - 1082, 34683, 1429, 1177, 1951, 1959, 2007, 2151, 34684, 2675, 34686, 2829, 34689, 695, 2990, 34690, 26564, - 25131, 2899, 21290, 3400, 5561, 2278, 4135, 4164, 22595, 4333, 91, 4555, 3348, 4745 - ], - [0, 34693, 590, 34692, 1623, 4964, 11590, 2278, 4329, 13339, 34694, 89, 5133, 25172], - [1, 2343, 23507], - [0, 0, 23508, 13533, 2537], - [ - 0, 1192, 2278, 2675, 2832, 3144, 1622, 1177, 4135, 1701, 2924, 1854, 1894, 1610, 48, 1193, 1628, 53, 2092, 2990, - 3400, 4111, 4677, 192, 4257, 87, 4681, 1938, 1895, 2780, 5467, 16405 - ], - "step", - [1, 2343, 23511], - [0, 23512, 23513, 23514, 2523], - [0, 4311], - [ - 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 5087, 1009, 1011, 1177, 1955, 10964, 2203, 2675, 1192, 2990, - 1894, 4042, 4468, 4474, 91 - ], - [0, 4309, 1623, 590, 5284, 3048, 23578], - [1, 2343, 23516], - [0, 23517, 23518, 23519, 2487], - [0, 2718], - [ - 0, 192, 5467, 19438, 19181, 442, 811, 816, 10615, 10817, 5087, 4874, 1009, 1011, 1177, 1955, 10964, 2203, 2675, - 1192, 2990, 3400, 1894, 23535, 4042, 4468, 4474, 4484, 91 - ], - [0, 4311, 134, 590, 57, 1623, 3048, 23578], - "hap-nodejs", - [1, 2343, 23524], - "-newlines", - [2, 1938, 23522], - [0, 23525, 23526, 23527, 2443], - [0, 7943, 13037, 34715, 34718, 1639, 3561, 4163, 7917, 4484], - [ - 0, 53, 5652, 8229, 61, 78, 5240, 87, 90, 92, 10817, 966, 968, 972, 974, 4863, 5087, 34720, 4874, 4880, 4883, - 34722, 5091, 4889, 5055, 1193, 1198, 20479, 14065, 6375, 1192, 2780, 26503, 2802, 2820, 1894, 3744, 89, 3824, - 34725, 3857, 3904, 4042, 4055, 4058, 4067, 4069, 4071, 4073, 34727, 34730, 91 - ], - [0, 89, 1623, 7165, 4315, 7297], - "@hono/eslint-config", - "@hono/", - "node-server", - [2, 23529, 23530], - [1, 2343, 23533], - [0, 23534, 23540, 23541, 2443], - [0, 33204], - "publint", - "ly-js-compute", - [2, 2062, 23536], - [2, 4609, 23537], - "wrangler", - [ - 0, 48, 53, 78, 4851, 5743, 5241, 83, 87, 90, 94, 97, 104, 4880, 1166, 7913, 34737, 1573, 1177, 1895, 2675, 3008, - 1894, 3720, 89, 3824, 4131, 4227, 33212, 7917, 34741, 91 - ], - [0, 7913, 4592, 34743, 7165, 1623], - "cloudflare", - "workers", - "fastly", - "compute", - [1, 2343, 23547], - [0, 23548, 20974, 23549, 2399], - [0, 1393, 3681], - [0, 2887, 1623, 34749, 4318, 16918, 3561, 6425, 4319], - [1, 2343, 23551], - [0, 23552, 23553, 23554, 2487], - [ - 0, 205, 30928, 208, 213, 30577, 220, 22371, 30299, 1595, 1627, 1634, 1676, 2071, 29067, 16783, 14564, 2205, - 34755, 2641, 2687, 5210, 19187, 2747, 2932, 34757, 3157, 3170, 3369, 3527, 3561, 3676, 3681, 3688, 4290, 15887, - 34762, 176, 4728 - ], - [ - 0, 107, 34765, 11893, 34768, 34770, 34773, 16934, 5245, 16787, 34775, 34776, 34778, 8778, 16398, 34780, 19800, - 34785, 22092, 1317, 1532, 1699, 1177, 34787, 1938, 1939, 2675, 1192, 34791, 2802, 2990, 11357, 3400, 5561, 3606, - 3613, 30479, 34793, 3678, 1894, 3985, 4337, 91 - ], - [0, 7165, 1623, 695, 671, 9654, 1783, 2278, 4329, 4320, 4337], - [1, 2343, 23556], - [0, 23557, 23565, 23566, 34352], - [0, 4946], - "hopper-adventure", - [2, 12087, 23558], - "svelte2tsx", - "workshop", - "adventure", - "tutorial", - "tutor", - [0, 34768, 34770, 1177, 34787, 2675, 2990, 3400, 1894, 3985, 4320], - [0, 4320, 34801, 4255], - [1, 2343, 23568], - [0, 0, 23569, 23570, 2523], - [ - 0, 3421, 1192, 2675, 3534, 1742, 1177, 1503, 4508, 1894, 34810, 1610, 4320, 48, 1193, 34809, 11918, 91, 53, - 13693, 2990, 3165, 94, 192, 4131, 87, 34806, 1939, 1978, 1938, 6063, 34791, 21120, 1895, 1955, 4514, 92, 1011, - 6061, 5467, 1883, 1009, 5766, 13052, 61, 78 - ], - [0, 7846, 4320, 1623, 4329, 695, 671, 34818, 6884, 3046, 34819, 1473, 34820], - "big-lib", - [2, 8131, 23571], - [2, 7635, 23575], - "karma-co", - "codeshift", - "@jasminejs/reporters", - [1, 2343, 23579], - "pojo", - [0, 23580, 23581, 23582, 2537], - [0, 3561, 34826], - [0, 1177, 34829, 1895, 2203, 2675, 1192, 30912, 34791, 2802, 2990, 3606, 30479, 34832, 1894, 34835, 4320], - [0, 7846, 4320, 1623, 671, 4327], - [1, 2343, 23585], - [3, 2618, 9], - [0, 23586, 23587, 23588, 2537], - [0, 1634, 2747, 2932, 3141, 34842, 34760, 3681, 3688], - [0, 1532, 1610, 1177, 34847, 2675, 1192, 34791, 2990, 3377, 3561, 30479, 3678, 1894, 4320], - [0, 1623, 21861, 671, 9654, 4329, 4320, 7846], - [1, 2343, 23590], - [0, 23592, 14818, 23593, 2487], - "@domenic/eslint-config", - [0, 63, 1676, 2070, 4113, 4227], - [0, 1623, 57, 590, 22561, 2437, 1351], - [1, 2343, 23595], - [0, 23596, 23599, 23609, 2487], - [0, 2071, 3369], - [3, 9127, 9], - "flowgen", - [ - 0, 48, 53, 87, 192, 5467, 442, 27928, 19344, 1317, 34860, 1610, 1622, 1628, 1700, 1701, 1177, 1895, 20281, 1938, - 1939, 1942, 1953, 1955, 1982, 2203, 2675, 1192, 2990, 3144, 3291, 3400, 1894, 3786, 4257, 4307, 4333, 4523, 2924 - ], - " entities", - [2, 1936, 23600], - " encode", - [2, 23601, 23602], - [3, 23603, 14], - [2, 23604, 15103], - [2, 18089, 23602], - "entities ", - [2, 23607, 15103], - [0, 2924, 1194, 4333], - [1, 2343, 23611], - [0, 0, 0, 23612, 2443], - [0, 1623, 3561, 30775, 5341, 8958, 57], - "ascjs", - [1, 2343, 23616], - "unescape", - [0, 23617, 23618, 23619, 2523], - [0, 1533, 34877, 1676, 33596, 2139, 2141, 3164, 3171, 3763], - [ - 0, 48, 53, 83, 87, 97, 192, 5467, 1290, 16750, 27731, 1364, 1389, 1575, 1610, 1177, 1909, 1924, 1954, 2026, - 2040, 2114, 2182, 2675, 2990, 3127, 2899, 3246, 3421, 3985, 3995, 4039, 4170, 34879, 34881, 1906, 4770 - ], - [ - 0, 4575, 6662, 6662, 5592, 1149, 7003, 1170, 12618, 5576, 34883, 2212, 27, 27, 2671, 21668, 1862, 1862, 6567, - 705, 705, 21666, 5508, 4030, 1153, 4340, 4339, 17481, 353, 4731, 4738 - ], - [1, 2343, 23624], - [2, 9374, 12349], - "-unicode", - [2, 23615, 23622], - [0, 23625, 23626, 2514, 2487], - [0, 25910], - [0, 5245, 27847, 4874, 1317, 25212, 3230, 21180, 91, 1984], - [1, 2343, 23628], - [0, 23629, 23630, 23632, 2523], - [0, 3164, 4339, 1581], - [0, 3421, 3297, 2899, 4193, 1177, 4170, 2026, 3752, 1364, 1575, 192, 1938, 1881, 5467], - "relateurl", - [0, 5982, 27, 705, 4339, 6969, 1973, 5472], - [1, 2343, 23636], - "compressor", - "packer", - [0, 23638, 23639, 23640, 2537], - "uglifier", - [0, 1362, 3164], - [0, 1429, 1431, 4037, 4706, 1364, 1575, 2026, 2899, 4170], - [0, 4342, 4339, 705, 6969, 5982, 27, 1973, 5472, 1862, 34901], - "detect-europe-js", - [1, 2343, 23650], - "alpinejs", - [3, 19403, 11], - "config-no", - "n-conventional", - [2, 23645, 23646], - [2, 23644, 23647], - [3, 10854, 16], - [0, 0, 23653, 23654, 2523], - "lyfill-node", - [2, 23649, 23651], - [0, 1906, 1166, 4481, 4874], - [ - 0, 1473, 7208, 1512, 7009, 7201, 200, 1111, 592, 6621, 6616, 7244, 4166, 4744, 6876, 4231, 25986, 34915, 13735, - 13030, 34916 - ], - [1, 2343, 23656], - [0, 23657, 23658, 23661, 2487], - [0, 31292, 5012, 23826, 1006, 1082, 11869, 19639, 1497, 11478, 11479, 22716, 10898, 10902, 3090, 22720], - [0, 5180, 8648, 811, 816, 10615, 8661, 11868, 4874, 11486, 668, 4042, 4227, 27921, 91, 1984], - [2, 23660, 23663], - "browser-d", - [0, 3709, 27751, 5130, 5354, 17950], - [1, 2343, 23665], - "etection", - "device-detection", - [0, 23666, 23669, 23671, 2537], - [0, 5180, 1457, 20378, 3527, 11481], - "os-detection", - "bot-detection", - [0, 811, 8850, 816, 6373, 10817, 34939, 1405, 4042, 4052, 8849, 3709, 91, 34940, 34942, 27702, 27703, 23560, 34945], - "void", - [0, 3709, 200], - [1, 2343, 23673], - [0, 0, 23675, 23676, 2537], - "self-closing", - [ - 0, 53, 87, 192, 5467, 34951, 34953, 10879, 4874, 34955, 19802, 1165, 13662, 1509, 1567, 1177, 695, 3561, 34958, - 3616, 1894, 3754, 2278, 4333, 4337, 3709, 91, 1984 - ], - [0, 3709, 4358, 91, 695, 4333, 2278, 4329, 3754, 1509], - [1, 2343, 23678], - [0, 23690, 23692, 23693, 2537], - "@bubkoo/commitlint-config", - "@bubkoo/", - [2, 23680, 7625], - [2, 12612, 1541], - [2, 23680, 23682], - [3, 21388, 20], - [2, 23684, 16171], - [2, 23680, 23685], - [2, 23680, 2190], - "asmine", - [2, 5086, 23688], - [0, 16858, 2070, 4361, 1149, 25232, 4597, 4739, 4747, 2822, 4709, 3257, 34967, 3060, 18993, 10780, 34966, 13839], - "capture", - [0, 1906, 1192, 695, 2278, 3549, 4333, 3536, 1939, 1942, 34971, 19812], - [ - 0, 1017, 45, 8221, 18048, 22074, 22075, 2873, 1179, 1623, 2278, 695, 4333, 5376, 134, 1936, 13814, 22874, 22875, - 3257, 17461 - ], - [1, 2343, 23695], - [0, 23697, 23698, 23700, 2537], - "@selderee/plugin-htmlparser2", - [0, 1525, 1632, 1634, 9378, 16858, 3527, 4113], - [ - 0, 442, 11893, 811, 816, 10615, 16934, 16854, 5087, 4874, 34194, 7752, 1610, 1177, 2203, 1192, 3536, 3541, 3549, - 1894, 4039, 4042, 4393, 4481, 91 - ], - "selderee", - [0, 4361, 8221, 6707, 3178], - [1, 2343, 23702], - [0, 23703, 23704, 23710, 2537], - [0, 1700, 3067, 34984, 4533], - [0, 1166, 1173, 1178, 1257, 29224, 1272, 1280, 1362, 1177, 34989, 3150, 3188, 4193, 2924], - "@html-", - "/stylish", - [2, 2649, 23706], - [2, 23705, 23707], - "@sidvind/better-ajv-errors", - [0, 2924, 1932, 34991, 34984, 11100, 6812], - [2, 23712, 23], - [3, 16579, 15], - [1, 2343, 23714], - [0, 23715, 23716, 23717, 4139], - [0, 1082, 1699, 2070, 2856], - [0, 1177, 1894, 4389, 34997], - [0, 8124, 34999, 7701, 20120, 1745, 4363, 1163, 13728, 1179, 8623, 20121, 20123, 20124, 3452], - [1, 2343, 23719], - [0, 23724, 23727, 23728, 2537], - "theme-one-dark", - "@json2csv/plainjs", - [2, 6019, 3888], - [2, 27733, 23725], - [0, 2205, 2822, 1525, 35011, 35008], - "-2", - "renderjson-2", - [0, 1177, 1984, 1894, 7677, 35013], - [0, 8124, 1739, 35015, 1745, 5592, 134, 4298], - "uffers", - [2, 15038, 23729], - [1, 2343, 23732], - [0, 0, 23733, 23734, 2537], - [0, 4874, 91], - [0, 8168, 8124, 181, 4369, 2026, 1745, 1739, 35021, 12659, 4367, 699, 35024, 35026], - [1, 2343, 23737], - [2, 11085, 2634], - [0, 23743, 23744, 23745, 2537], - "pug-loader", - "recomp", - "ilation-simulator", - [2, 23739, 23740], - [2, 4670, 23741], - [0, 5971], - [0, 1866, 2026, 35036, 2899, 3421, 3758], - [0, 8124, 2026, 181, 1781, 1745], - [1, 2343, 23747], - [0, 23748, 23749, 23752, 2487], - [0, 4535, 3460], - [0, 1209, 2026, 35046, 2899, 2025, 35047, 695, 35048, 1330, 35051, 3521, 1389, 2090, 1776], - "@aminya/babel-plugin-replace-import-extension", - "lateurl", - [0, 1283, 17950, 1936, 21043, 35053, 16277, 2026, 1359], - [2, 31806, 31807], - "srcset", - "swiperjs", - [3, 9376, 10], - [2, 23756, 6424], - "postproc", - "cessor", - [2, 23758, 23759], - [1, 2343, 34505], - [0, 4372, 35058, 31512, 4453, 12295, 5131, 1591, 3525, 1896, 5130, 35059, 32054, 35060, 1932, 89, 188, 35062], - [1, 2343, 23764], - [0, 23765, 23766, 23768, 2537], - [0, 35068, 35071, 35072], - [0, 1364, 1610, 2026, 35074, 1192, 3237, 4039, 91], - "rss", - [0, 705, 27, 2671, 2325, 1389, 31360, 15001], - "tributejs", - [1, 2343, 34522], - [ - 0, 35081, 35082, 3233, 27838, 888, 6667, 31937, 6574, 35084, 35085, 35086, 35087, 35088, 35089, 35092, 26467, - 35093, 7734, 35095, 3151, 6771, 35096, 35097, 35099, 35100, 11996, 35102, 35105, 35106, 35107, 35108, 35109, - 35110, 35111, 35112, 17878, 35115, 35117, 11812, 35119, 35122, 10798, 5876, 12340, 35125, 25028, 35126, 35128, - 35129, 35131, 35133, 35134, 24079, 5995, 33741, 35135, 35136 - ], - [1, 2343, 23773], - [0, 0, 23774, 2514, 2537], - [ - 0, 3445, 2929, 2899, 3188, 4039, 4042, 4072, 1362, 3310, 35146, 20463, 4705, 4232, 8850, 4073, 6373, 35141, 816, - 35145 - ], - "toidentifier", - [1, 2343, 23777], - [0, 23778, 23779, 23780, 2537], - [ - 0, 4729, 1091, 1594, 35154, 35155, 35156, 35157, 1209, 3237, 35158, 35159, 35161, 35162, 2026, 35163, 35164, - 35166, 35168, 35169, 1154, 1364, 1536, 1562, 35171, 1130, 97, 35173 - ], - [0, 3278, 1096, 35175, 35176, 4167, 35178, 1532, 35179], - [0, 35181, 35182], - [1, 2343, 23784], - "s-port", - [2, 3209, 23782], - [0, 0, 23786, 23787, 34352], - "sse", - [ - 0, 12473, 4484, 1177, 2205, 4042, 1984, 1894, 91, 53, 4874, 87, 4057, 4523, 7677, 5583, 1938, 11899, 22839, - 22847, 10817, 816, 24621, 5660 - ], - [0, 4383, 4380, 1623, 5256, 35189, 35191, 1698, 22306, 35193], - [1, 2343, 23789], - [0, 0, 23790, 2514, 2537], - [0, 1680, 4874, 16860, 3090, 4228, 23956, 31292], - "agent-base", - [1, 2343, 23793], - [0, 23794, 0, 23795, 2399], - [ - 0, 35205, 35206, 35209, 35212, 35213, 35214, 35216, 35217, 35220, 35221, 35222, 35226, 35227, 35228, 35230, - 35232, 35233, 35235, 35236, 35237 - ], - [0, 1145, 4384, 1973, 5472, 5130, 200, 35239, 35240], - [1, 2343, 23797], - [0, 23798, 23799, 23801, 34352], - [0, 1437, 1792, 2089, 1209, 3718, 26840, 35245, 4431], - [0, 35247], - "mockttp", - [0, 4389, 4384, 2899, 4386, 16237], - "polka", - "next.js", - [1, 2343, 23805], - [0, 0, 23806, 2514, 2487], - [0, 1192, 1177, 2203, 1894, 442, 1193, 53, 1953, 27928, 87, 1939, 1938, 20281, 1982, 1895, 1955, 19344], - [1, 2343, 23812], - "union", - "corser", - "secure-", - [2, 23810, 3797], - [0, 23817, 23819, 23820, 34352], - "eol", - [3, 1895, 15], - "opulist", - [2, 23814, 23815], - [ - 0, 35260, 35263, 35264, 1417, 1693, 15016, 35265, 2133, 2179, 2070, 35266, 2571, 2713, 17403, 3183, 3206, 3431, - 13635, 3433, 3435, 814, 18997 - ], - [2, 15021, 36], - [ - 0, 13614, 1143, 1159, 1537, 1610, 1796, 35268, 9254, 1855, 1177, 14738, 2762, 2822, 35271, 3410, 3421, 4103, - 4135, 4384, 20496 - ], - [0, 4384, 1973, 35273, 1145, 1388], - [1, 2343, 23822], - [0, 23823, 23824, 2514, 2523], - [0, 35279, 35280, 21505, 29174, 35278], - [0, 4384, 3297, 4483, 35282, 4039, 4508, 1894, 29169, 4874, 1834, 35285], - [1, 2343, 23827], - [2, 836, 22715], - [0, 23830, 23833, 23834, 2523], - [3, 7639, 16], - [2, 23828, 176], - [0, 3756, 4393], - "HttpStatus", - [2, 27, 5576], - [0, 4039, 35291, 4255], - [0, 4390, 2150, 2090, 18158, 7204, 3101], - [1, 2343, 23836], - [0, 23838, 23839, 2514, 2487], - "mediation", - [0, 35297, 35299, 35298], - [0, 35291, 4255, 1537], - [1, 2343, 23841], - [0, 2513, 23844, 23845, 2487], - "-retry", - [2, 7737, 23842], - [0, 15288, 15594, 5087, 4874, 1009, 1011, 1596, 668, 1177, 1903, 1938, 1954, 1958, 1192, 1894, 4468, 91], - [0, 35306, 6346, 35307, 35308, 4967, 35310, 5995, 35312, 27448, 14629], - [1, 2343, 23847], - [0, 0, 23848, 23849, 2537], - [ - 0, 15288, 5367, 5371, 6494, 15594, 5087, 4874, 9240, 1009, 1011, 1364, 1527, 1652, 35317, 1177, 1903, 1938, - 1954, 1958, 2675, 1192, 2990, 3363, 5362, 1894, 4342, 4468, 91 - ], - [0, 35306, 6346, 35307, 35308, 5995, 35312, 15001, 2026], - [1, 2343, 23851], - [0, 23852, 0, 23853, 4139], - [0, 1676, 3299, 15160], - [0, 32859, 35324, 35327, 35328, 35329, 1326, 35330, 5995], - [1, 2343, 23855], - [0, 23856, 23857, 23858, 4139], - [0, 1676, 3299], - [0, 442, 6373, 5245, 4874, 20584, 1759, 1177, 1895, 1966, 1982, 640, 1894, 4508, 4514, 91, 4523, 1983, 26744, 1984], - [0, 32859, 35328, 4398, 202, 5995], - "anity", - [2, 1901, 23859], - [1, 2343, 23863], - [3, 2677, 9], - [0, 23864, 7923, 23865, 2523], - [0, 4039, 3188], - [0, 21770, 4449, 1241, 35342, 16330, 29615, 35343], - [1, 2343, 23867], - [0, 23871, 23873, 23880, 2537], - "singular", - "plural", - "camelize", - [0, 2753, 13786, 4507, 35349], - "dasherize", - [0, 4874, 1166, 3505, 4453, 4481, 1906], - "demodulize", - "ordinalize", - "uncountable", - "singularize", - "titleize", - "tableize", - [0, 1241, 21770, 3403, 2090, 7204, 6857, 16330, 35342, 29615, 35343, 3778, 17023], - "classify", - [1, 2343, 23884], - "foreign_key", - [0, 23885, 0, 23886, 34352], - [0, 26925, 35364, 35359, 35367, 35358, 35365, 35363, 35356], - [ - 0, 7009, 7201, 1111, 200, 4744, 1473, 35369, 35371, 590, 6847, 35373, 29002, 35374, 13006, 4403, 1478, 15955, - 35375, 35376, 35377, 32312, 158, 18048, 21881, 20639 - ], - [1, 2343, 23889], - "@messageformat/core", - [0, 23890, 0, 23892, 2443], - [0, 35382, 15019, 2713, 35259, 4431, 35383], - "fast-printf", - [0, 4403, 7009, 1111, 35385, 35386], - [1, 2343, 23898], - "make-plural", - "val-parser", - [2, 9433, 23895], - [2, 18108, 23896], - [0, 23899, 23900, 23902, 2487], - [0, 35392, 1082, 1525, 4232], - [0, 35394, 35395, 1177, 19210, 1999, 2899, 3697, 4042, 4135, 4227], - [2, 23927, 23929], - [0, 2280, 4072, 4533, 4535, 3178, 2632, 5284, 5286, 1925, 5194, 6598, 7075, 6778, 7056, 7192, 1149, 7003], - [1, 2343, 23935], - [3, 5702, 15], - "-function", - "-functions", - [2, 23904, 23906], - [2, 69, 23907], - "gh-release", - "i18next-", - [2, 1351, 18691], - [2, 13843, 23911], - [2, 23910, 23912], - "fs-backend", - [2, 23910, 23914], - [2, 2655, 5995], - [2, 23910, 23916], - "storage-", - [2, 23918, 2325], - [2, 2703, 23919], - [2, 23910, 23920], - "sprintf-", - [3, 10810, 11], - [2, 23923, 7120], - [2, 23922, 23924], - [2, 23910, 23925], - [3, 6021, 10], - "interna", - "ease", - "alization", - [2, 3855, 23930], - [2, 23928, 23931], - [2, 2703, 8840], - [2, 2202, 8840], - [0, 23937, 23938, 23939, 2523], - "gettext", - [0, 4072, 2805, 4121, 4143, 5180], - [ - 0, 1700, 1192, 2675, 3144, 1622, 1177, 1701, 668, 2924, 1894, 842, 1610, 4535, 48, 442, 91, 53, 4874, 2092, - 2990, 3400, 4677, 28639, 192, 1953, 27928, 35403, 4257, 87, 4523, 1939, 1584, 1942, 1938, 20281, 1982, 1895, - 1955, 19344, 16400, 5467 - ], - [0, 2280, 4535, 4533, 4072, 2924, 1464, 14137, 15215, 23634, 2262, 14137, 2632, 3178, 6707, 6708], - [1, 2343, 23941], - [0, 23943, 23944, 23945, 2537], - "gridly", - [0, 22989, 22991, 22997, 23001, 23004, 1519, 1522, 25190, 2071, 26553, 17798], - [0, 2829, 3310], - [0, 1187, 1973, 8791, 200, 2275, 5472, 4990, 4389, 4384, 1166, 2899], - [1, 2343, 23947], - [0, 23949, 23951, 23953, 2443], - "safer-buffer", - [0, 1362, 1437, 2070, 1209, 3127, 3188, 35417, 35419], - "errto", - [ - 0, 19181, 442, 12312, 13414, 4865, 4870, 4874, 6513, 1009, 1011, 7677, 1703, 1177, 15555, 35422, 4193, 35425, - 35426, 4493, 4494, 91, 35428, 1984 - ], - "unorm", - [0, 1783, 1973, 2275, 29352, 1745, 1739], - [1, 2343, 23955], - [0, 23957, 23961, 23962, 2537], - [2, 8293, 23958], - [ - 0, 53, 71, 81, 5717, 5749, 5751, 5757, 5759, 5782, 5788, 5821, 5830, 83, 87, 14128, 90, 97, 35437, 35439, 4874, - 15427, 5990, 1212, 14191, 35440, 17495, 1429, 1437, 35443, 1509, 1525, 1676, 1680, 1700, 35444, 28504, 1687, - 35446, 28137, 13772, 6473, 2020, 35450, 2205, 2215, 33100, 2670, 12788, 35453, 2709, 2742, 26453, 2743, 35455, - 2753, 2856, 1209, 35457, 3093, 7305, 3220, 35461, 3257, 3266, 35462, 3493, 3532, 35463, 3549, 15245, 35465, - 3742, 3762, 35467, 35469, 13780, 4025, 4108, 4135, 5152, 4232, 4296, 35473, 35476, 35479, 35482, 35484, 35485, - 35486, 35487, 35494, 35496, 4449, 4459, 91, 35497, 35500 - ], - "oxide", - "-reflect", - [2, 5258, 23959], - [ - 0, 33640, 17835, 35502, 8862, 811, 15460, 816, 29544, 35505, 4856, 5245, 35507, 17577, 22089, 27299, 6505, 7812, - 5254, 5162, 13418, 35510, 1009, 1011, 1198, 1304, 1364, 35512, 35513, 1431, 21480, 4907, 1544, 1594, 1610, - 35514, 1874, 1177, 35517, 17303, 2026, 35518, 2323, 2338, 35519, 2383, 2384, 2450, 35521, 35523, 20305, 2494, - 35527, 2530, 8163, 3124, 3159, 3183, 35531, 3246, 35533, 3752, 89, 5311, 4042, 4076, 4151, 4193, 17010, 4294, - 35537, 4484, 4535 - ], - [0, 35539, 6564, 1388, 2887, 5351, 8674, 5472, 13428, 1973, 8791, 6969, 1145, 6468, 35540, 6789, 6746, 1149, 7003], - [1, 2343, 23965], - "proxies", - [0, 23966, 23967, 23968, 2487], - [0, 17877, 35547, 1137, 20908, 20991, 1676, 35549, 1736, 2182, 28142, 35550, 35555, 4391, 4449, 4548], - [0, 28192, 35558, 28180, 5245, 28203, 35561, 35563, 6520], - [0, 4419, 17878, 5472], - [3, 1891, 15], - "stai", - [2, 23969, 23970], - [1, 2343, 23973], - [0, 23976, 23978, 23979, 2523], - "pre-suf", - "spawn-sync", - [0, 1209, 10627, 35570, 26827], - ".gitignore", - [ - 0, 4874, 1009, 1011, 1389, 35573, 35575, 1610, 1680, 35576, 35577, 2752, 3188, 3400, 3421, 4039, 4255, 35579, - 35580, 4421, 4474, 12851, 91 - ], - [0, 6969, 5982, 3212, 13106, 4158, 35582, 4420], - "asterisks", - "regular-", - [2, 23981, 7256], - [1, 2343, 23984], - [0, 23985, 23986, 23987, 2537], - [ - 0, 10780, 1292, 1362, 35382, 1525, 1536, 1559, 2020, 2026, 35588, 2070, 2659, 2822, 1209, 3188, 3257, 3330, - 3411, 35589, 4039, 4218, 25192, 35591, 20496, 4449 - ], - [0, 35593, 1389, 1429, 18761, 35596, 1448, 1719, 1177, 18766, 1951, 2899, 705, 35598, 4167, 4193, 4196, 4220, 4389], - [0, 5284, 5472, 27603, 1388], - [1, 2343, 23990], - "dimensions", - [0, 0, 23991, 23996, 2537], - [0, 4384, 4389, 1474], - "resolution", - "heif", - "tga", - "tiff", - [0, 2585, 176, 14903, 6938, 26815, 15847], - [1, 2343, 23998], - [0, 0, 23999, 24000, 2537], - [0, 442, 816, 10615, 1177, 35611, 1924, 1937, 1942, 2203, 29741, 1776, 3090, 3549, 3758, 2907, 4042, 4495], - [0, 4426, 35617, 5284, 7598, 35619, 35620, 35621, 35622, 35625, 35628, 35629, 1424, 8221, 12075], - [1, 2343, 24002], - [0, 0, 24005, 24007, 2537], - "ow", - "p-pipe", - [ - 0, 48, 53, 83, 87, 97, 5583, 1195, 16818, 1593, 1177, 16821, 1895, 1955, 1999, 2182, 35634, 16824, 2675, 2297, - 2876, 2881, 2895, 2904, 2908, 2921, 2925, 2990, 3183, 35637, 3377, 1894, 3774, 4042, 16827, 2924 - ], - "imagemin-webp", - [0, 1675, 6925], - [1, 2343, 24009], - [0, 0, 24010, 24011, 34352], - [0, 7115, 4389, 19988], - [0, 3101, 7046, 7525, 7170], - "is-png", - "pngquant-bin", - [1, 2343, 24015], - [0, 24018, 24019, 24020, 2537], - [2, 2267, 1932], - "pngquant", - [0, 3923], - [0, 1329, 1398, 1429, 35649, 2899, 35650, 4255, 35653], - [0, 3101, 6657, 4430, 353], - [1, 2343, 24023], - "utf7", - [0, 0, 0, 24025, 2443], - "reader", - [0, 3949, 1499, 1179, 5701, 1862], - [1, 2343, 24027], - [0, 0, 8134, 24028, 2487], - [0, 35667, 35668, 35670, 4435, 5396, 3403, 4571, 7204, 4569, 18132, 6270], - "cpx2", - [3, 23479, 11], - [1, 2343, 24034], - "import-size", - "seamless-immutable", - [0, 24035, 14525, 24039, 2537], - [0, 1437, 32972, 2089, 21890, 35675, 3718, 4425], - "mutable", - "on-write", - [2, 1583, 24037], - [0, 2228, 3005, 22832, 6901, 35677, 4262, 18234, 3514, 6681, 3005], - [1, 2343, 24041], - [0, 24042, 24043, 24046, 2537], - [ - 0, 35720, 35797, 35724, 35730, 35781, 35789, 35795, 35799, 35810, 35682, 35684, 35697, 35739, 35750, 35754, - 35769, 35779, 35793, 35685, 35700, 35721, 35741, 35748, 35756, 35785, 35787, 35792, 35812, 35689, 35694, 35743, - 35752, 35762, 35774, 35791, 35805, 35702, 35705, 35706, 35708, 35710, 35723, 35802, 35806, 35709, 35699, 35718, - 35729, 35767, 35772, 35804, 35808, 35713, 35733, 35764, 35811, 35690, 35701, 35717, 35727, 35738, 35761, 35776, - 35783, 35746, 35736 - ], - [ - 0, 2150, 2070, 2323, 3403, 2278, 2899, 89, 1177, 1209, 4039, 1637, 3561, 2924, 1859, 2151, 2759, 1610, 2025, - 2504, 3342, 3824, 1628, 2359, 3744, 2367, 4111, 1165, 2482, 2496, 4307, 35814, 35816, 3427, 4689, 2361, 2960, - 3618, 35819, 4909, 1959, 1879, 1938, 1947, 25925, 35818, 1652, 2054 - ], - "variant", - [2, 9721, 24044], - [0, 89, 5128, 4627, 4963, 181, 5130, 4967, 35821, 4437, 14547], - [3, 2697, 12], - [1, 2343, 24049], - [0, 24050, 24051, 2514, 2487], - [0, 20443, 1676, 26137, 26144, 3427, 3763], - [0, 1173, 1198, 1253, 1267, 1177, 1903, 1958, 1970, 2026, 2164, 2899, 29946, 4257, 4342], - [1, 2343, 24053], - [0, 0, 0, 24054, 2523], - [0, 1317, 35832, 4439], - [1, 2343, 24056], - [0, 0, 24058, 24059, 2523], - "bypass", - [0, 35837], - [0, 1473, 57, 35839], - [1, 2343, 24061], - [0, 0, 0, 24062, 2443], - [0, 6105, 4445, 18241, 5284, 1936, 2585, 24829, 24830, 24843, 6106, 24832, 6110], - [1, 2343, 24064], - [0, 0, 24065, 24066, 2537], - [0, 4874, 34238, 1177, 1895, 1955, 1982, 1894, 1531, 91, 4523, 1983, 1984], - [0, 2062, 35849, 35851], - [1, 2343, 24068], - [0, 0, 0, 24071, 4139], - "metacom", - "metaco", - [0, 4158, 3212, 91, 3163], - "nfiguration", - [2, 24070, 24072], - [1, 2343, 24076], - "metalog", - [0, 0, 24082, 23865, 2537], - "metaschema", - "metautil", - "vm", - "metavm", - "metawatch", - [0, 2899, 1177, 2759, 15854, 1951], - [3, 15793, 16], - "tarhia", - [2, 24083, 24084], - [1, 2343, 24087], - [0, 24094, 24096, 24098, 2537], - "isolation", - "enterprise", - "scalable", - "soa", - "stateful", - "cluster", - [0, 3864], - "interactive", - [0, 53, 29553, 5103, 1894, 91], - [2, 24101, 103], - [ - 0, 89, 5128, 35865, 11000, 8192, 35867, 35869, 3857, 3906, 35868, 35870, 4450, 9044, 3811, 5779, 200, 5131, - 12295, 12296, 5122, 35871 - ], - [1, 2343, 24100], - [0, 0, 24102, 24103, 2399], - [3, 9312, 10], - [ - 0, 48, 53, 81, 87, 90, 11976, 12310, 5476, 1195, 1429, 1177, 2026, 2151, 2193, 2205, 2822, 2832, 3127, 3188, - 2899, 3286, 35877, 3400, 35878, 89, 3824, 2278, 4255, 2924, 4677 - ], - [0, 4451, 5284, 176, 5938, 16504, 8623, 1936, 6956, 24456], - [1, 2343, 24105], - [0, 0, 24106, 24107, 2487], - [0, 2276, 28234], - [0, 4452, 57], - [1, 2343, 24109], - [0, 0, 24110, 2514, 2487], - [0, 29169, 4384], - [1, 2343, 24112], - [0, 24115, 24119, 24123, 2487], - "-vnode-flags", - [2, 2711, 24113], - [0, 25671], - "inferno-", - [2, 24116, 594], - [2, 24116, 6579], - [0, 5517, 442, 9089, 603, 4874, 22839, 1177, 1895, 1915, 1938, 1955, 6526, 2203, 1894, 4493, 91, 4523, 1984], - [2, 6073, 591], - "ToString", - [2, 8924, 24121], - [0, 9183, 977, 16358, 35896, 34877, 34876, 35897, 35898], - [1, 2343, 24125], - [0, 24126, 24127, 24131, 2537], - [0, 1512, 1672, 3188, 35904], - [0, 4856, 6503, 1429, 1474, 1787, 1177, 2899, 3421, 4474, 4487, 91], - [2, 2712, 591], - [2, 2712, 1592], - "humanize", - [0, 3073, 2942, 4251, 1676], - [1, 2343, 24133], - [0, 24134, 24141, 24142, 2523], - [0, 15312, 35917, 17416], - "inherit", - "inheritance", - "klass", - "oop", - "oriented", - [2, 3425, 24139], - [0, 13614, 1159, 9254, 1855, 1177, 2708, 3410, 4103, 4389], - [0, 100, 4647, 6899, 3053, 7260, 1697, 1496], - [1, 2343, 24144], - [0, 0, 7923, 24145, 2523], - [0, 1633, 18718, 3729, 35109, 32900, 6553], - [1, 2343, 24147], - [0, 20896, 24148, 2514, 2523], - [0, 7806, 9227, 6494, 5087, 1536, 1594, 2026, 1192, 3363, 1894, 4468, 91, 4763], - [1, 2343, 24150], - [0, 24155, 24158, 24159, 2537], - "@alcalzone/ansi-tokenize", - "auto-bind", - [2, 17503, 7201], - "yoga-layout", - [0, 2713, 4431, 15019, 35935, 35938, 3923], - "@types/ms", - [2, 11313, 14675], - [0, 4389, 4430, 1537], - [0, 1936, 22115, 57, 353, 3586, 1623], - [3, 6547, 13], - "-exit", - [2, 24160, 24161], - "ack-utils", - [2, 6516, 24163], - "@vdemedes/prettier-config", - [2, 15289, 89], - [3, 3816, 9], - "tools-core", - [2, 24167, 24168], - [1, 2343, 24172], - "print", - [0, 24173, 24174, 24175, 2537], - [0, 24156, 5254, 2738, 3242, 4135, 22776], - [0, 11976, 4874, 7677, 1395, 12690, 3232, 3446, 7461, 9245, 91, 1984], - [0, 5995, 1550, 3230, 3232, 1932, 2844, 1747, 18037, 4799, 91, 2325, 1552, 1542, 3151, 9553, 3766, 35948], - [1, 2343, 24178], - [3, 2718, 12], - [0, 0, 24179, 6273, 2443], - [ - 0, 48, 53, 61, 76, 78, 87, 92, 107, 192, 5467, 9089, 603, 5366, 5087, 4870, 7819, 1009, 1011, 1193, 1317, 1593, - 1177, 1895, 1955, 1978, 2675, 1192, 1209, 3400, 1894, 3957, 4474, 4508, 4514, 91, 3348 - ], - [1, 2343, 24185], - [2, 24184, 4013, 17526], - "inno", - [3, 2719, 9], - [3, 29444, 16], - [0, 24186, 24187, 24189, 2523], - [0, 35957, 16781, 2036, 2856, 3057, 35958, 4135, 4507, 4748], - [ - 0, 192, 22559, 19438, 19181, 442, 11893, 8755, 554, 10879, 4864, 5087, 7637, 7889, 19446, 35960, 8778, 4874, - 5254, 4892, 21626, 1009, 1011, 1193, 16307, 1566, 668, 1177, 1895, 1938, 1939, 1942, 1955, 2020, 2071, 2151, - 2203, 2675, 1192, 2822, 2990, 3144, 1894, 4039, 4474, 91, 4523 - ], - "run-async", - [0, 1192, 91, 12938, 89, 5472], - [1, 2343, 24191], - [0, 24192, 24193, 24194, 2523], - [0, 1437, 1835, 3170, 4135, 4227], - [ - 0, 8778, 5254, 1009, 1011, 1172, 1175, 1195, 1257, 1267, 35968, 1268, 1874, 1177, 1895, 1954, 1955, 2151, 2070, - 2675, 2766, 2297, 2881, 2898, 2904, 2921, 2925, 2990, 3123, 3188, 2899, 1894, 4039, 91, 2924, 4677 - ], - [0, 4469, 35972, 2924, 1194, 91, 4799], - [1, 2343, 25249], - [1, 2343, 24198], - [0, 8998, 1525, 1759, 3232, 4494], - [0, 24197, 34525, 24199, 34352], - [0, 5995, 31012, 35980, 35981, 3232, 3230, 1550, 2844, 1747, 18037, 4799, 91, 200, 13326, 35982, 13325], - [1, 2343, 24201], - [0, 24203, 24205, 24206, 2487], - "fwk", - [0, 35987, 35989], - [3, 2726, 9], - [0, 10817, 4856, 17577, 6503, 4874, 1429, 27445, 1610, 1687, 2899, 4039, 4042, 4474, 91], - [0, 91, 6892, 35993, 4988, 35995], - [1, 2343, 24208], - [0, 24210, 24212, 24215, 2523], - "reify", - [0, 4757, 1138, 1687, 1082, 1084, 35958, 24806, 36000, 36001, 32335, 19441, 36002, 36005], - "exports", - [ - 0, 1166, 3421, 1170, 89, 36007, 2022, 1209, 4039, 4135, 7094, 3471, 4508, 842, 36008, 2188, 3752, 91, 17577, - 4874, 36009, 4880, 4870, 20959, 5254, 15906, 36011, 28142, 9725, 28203, 29139, 603 - ], - "packaging", - "unrun", - [0, 91, 202, 7047, 6639, 4799, 4643], - [1, 2343, 24217], - [0, 24221, 24222, 24225, 2523], - "remark-co", - "de-import", - [2, 24218, 24219], - [0, 4870, 24156, 5254, 36017, 1209, 3242, 36018, 36020, 4135], - [0, 11976, 4874, 7677, 12690, 3232, 3446, 7461, 9245, 91, 1984], - "coffee.md", - "litcoffee", - [0, 5995, 3232, 1932, 1550, 2844, 1747, 18037, 4799, 91, 7163, 2602, 2013, 6868, 7147, 3076, 6865, 13716, 3073], - [2, 24227, 553], - [3, 37196, 18], - [1, 2343, 24243], - [3, 1235, 25], - "3-member-expression-literals", - [2, 24229, 24230], - [3, 24231, 27], - [2, 4635, 5796], - [2, 24232, 24233], - [2, 1267, 13278], - "-cal-buddhist-full", - [2, 10739, 24236], - "cldr-cal-", - "-full", - "chinese-full", - [2, 24238, 24240], - "cldr-cal-c", - [0, 0, 2667, 24252, 4139], - "optic-full", - [2, 24242, 24244], - "dangi-full", - [2, 24238, 24246], - "ethiopic-full", - [2, 24238, 24248], - "hebrew-full", - [2, 24238, 24250], - [0, 91, 4749, 24753, 24754], - "indian-full", - [2, 24238, 24253], - "cldr-cal-i", - "slamic-full", - [2, 24255, 24256], - [2, 6795, 24239], - [2, 24238, 24258], - [1, 2343, 24265], - "persian-full", - [2, 24238, 24261], - "roc-full", - [2, 24238, 24263], - [0, 24270, 24279, 24281, 2523], - "cldr-core", - "cldr-", - "dates-full", - [2, 24267, 24268], - [0, 1209, 4870], - "numbers-full", - [2, 24267, 24271], - [2, 2004, 19895], - "grunt-curl", - "grunt-zip", - [3, 15911, 15], - "emory", - [2, 24276, 24277], - [0, 11976, 4874, 7677, 3446, 7461, 9245, 91, 1984], - "ecma", - [0, 5995, 4799, 91, 36033, 36034, 5547, 3624, 16284, 36036, 36037, 36039, 36040, 36041], - "ecma402", - "jsonc-simple-parser", - [1, 2343, 24285], - [0, 24286, 24288, 2514, 34352], - [0, 2856, 3183, 4296], - [2, 1940, 23688], - [ - 0, 1192, 2675, 1177, 4039, 4468, 4474, 1894, 91, 5087, 4874, 2990, 7892, 36047, 1942, 1938, 1895, 1011, 18285, - 1009 - ], - "flag-icons", - [3, 10697, 15], - [2, 24290, 6082], - [3, 2273, 15], - [2, 24292, 23688], - "grunt-re", - [2, 24294, 2495], - [1, 2343, 24297], - [0, 24300, 24301, 24303, 2523], - [3, 23932, 13], - "country", - [0, 8811, 7681, 2205, 2777, 3157, 3505, 3921], - [0, 11436, 4874, 4880, 1009, 1011, 1166, 1597, 1701, 1177, 1907, 15290, 2020, 89, 4025, 4094, 91], - "dial code", - [0, 91, 4481, 4354, 4532, 553, 36055, 36059], - [1, 2343, 24305], - [0, 0, 24306, 24307, 2537], - [0, 53, 87, 92, 11893, 19441, 8811, 4874, 1009, 1011, 1193, 1622, 1177, 1895, 1192, 1894, 91], - [0, 91, 4481, 8784, 4354, 16790, 1973, 4532, 553], - [1, 2343, 24309], - [0, 24310, 24311, 24312, 2399], - [0, 29891, 1437, 1457, 15261, 24283, 3181, 3188, 36071, 35237, 4039, 21512, 91, 9455], - [0, 4874, 668, 1894, 4384, 4508], - [0, 91, 11540, 24364, 1999, 10906, 6147], - "updates", - [1, 2343, 24321], - [3, 14428, 13], - [2, 24315, 15525], - "inversi", - "on of control container", - [2, 24317, 24318], - "ioc", - [0, 0, 0, 24322, 2487], - [0, 6869, 7296, 4643, 1351, 5284, 4484, 7047], - [1, 2343, 24330], - "empathic", - [3, 547, 8], - "li-framework", - [2, 24325, 24326], - "-prompts", - [2, 24327, 24328], - [0, 24333, 24350, 24357, 4139], - "discover", - [2, 8655, 24331], - [0, 51, 1405, 1437, 1525, 1687, 2070, 2822, 3181, 3188, 814, 4135, 4484, 18272], - "utils-array", - [2, 8655, 24334], - [3, 24335, 13], - [2, 24336, 2150], - [2, 24336, 11996], - [2, 24336, 3729], - [2, 24336, 3101], - [3, 24340, 14], - "ubprocess", - [2, 24341, 24342], - [2, 24336, 7009], - "elementtree", - "leek", - "ssh-config", - "-proxy", - [2, 4339, 24348], - [ - 0, 692, 19861, 4856, 17577, 4865, 7637, 9129, 10949, 6503, 4874, 5251, 20959, 5254, 1429, 2675, 34269, 2899, - 3400, 3421, 1894, 4039, 4474, 4487, 4490, 14970, 91, 31745 - ], - [3, 15592, 14], - [2, 24351, 1633], - "pen", - "@types/open", - "s-name", - [2, 15461, 24355], - [0, 200, 91, 9654], - "@types/split2", - [3, 9240, 12], - [2, 24359, 4575], - [1, 2343, 24365], - [2, 2733, 14606], - [2, 2733, 5130], - "hybrid", - [0, 0, 24366, 24367, 2523], - [ - 0, 1192, 2675, 1209, 4039, 4487, 4468, 3093, 1894, 36090, 1527, 91, 5087, 4874, 36097, 4492, 36088, 15600, 4131, - 36098, 36103, 31194, 4585, 31195, 36100, 1652, 36095 - ], - [0, 671, 4487, 36106, 1894, 1541, 91], - [1, 2343, 24369], - [0, 24371, 24372, 2514, 2487], - "@types/svgo", - [0, 18272], - [0, 4865, 4874, 1512, 2070, 3400, 3403, 4487, 36114, 91], - "icon pack", - [3, 11619, 14], - [1, 2343, 24376], - [0, 24377, 24378, 2514, 2537], - [0, 36119, 1415, 1457, 1556, 1676, 668, 28795, 36120, 3527, 3616, 4025, 4042, 4227, 12444, 26379, 27921, 4459], - [ - 0, 603, 8850, 842, 5245, 4874, 5251, 19839, 2117, 3561, 26712, 1894, 814, 4057, 2278, 4300, 3709, 4359, 4072, - 36123, 4493, 91, 1984, 9252 - ], - "@ioredis/commands", - [1, 2343, 24394], - "-key-slot", - [2, 24093, 24381], - "denque", - [3, 19541, 11], - "guments", - [2, 24384, 24385], - "-error", - "-errors", - "redis-errors", - "redis-", - [2, 24390, 57], - "as-callback", - [2, 18124, 24392], - [0, 24404, 0, 24405, 2537], - "@ioredis/", - [2, 8626, 16609], - [2, 24395, 24396], - [3, 19583, 22], - [3, 10408, 16], - [2, 24399, 10446], - [3, 8826, 10], - "is-errors", - [2, 24401, 24402], - [0, 668, 2191], - [0, 200, 7047, 202, 17526, 10906, 1999, 91, 36130], - "sentinel", - [1, 2343, 24409], - "pipelining", - [0, 24410, 24411, 24412, 2487], - [0, 36135], - [0, 811, 816, 6373, 1389, 4037, 4042, 4255, 36140], - [0, 15253, 1936, 1783], - [1, 2343, 24414], - [0, 0, 24415, 24420, 2399], - [ - 0, 2228, 2899, 29691, 2240, 4019, 36157, 36156, 2300, 36149, 2258, 36160, 4232, 2247, 36163, 2273, 2281, 36165, - 36167, 36153 - ], - "irc-colors", - "node-i", - "cu-charset-detector", - [2, 24417, 24418], - [0, 2845, 2844, 1155, 4496], - [3, 1104, 10], - [1, 2343, 24423], - [0, 0, 24424, 24425, 2523], - [0, 1389, 1177, 2080, 36176, 4389, 36178, 4535], - [0, 1616, 12588, 36181, 36182, 7789, 3428, 6803, 36183, 36185, 36186, 36187, 36189], - [1, 2343, 24427], - [0, 24428, 24429, 24430, 2523], - [0, 2151, 2859, 36194, 21224], - [0, 3400, 3524, 4535], - [0, 3113, 36197, 57, 11806, 22875, 36198, 3656], - [1, 2343, 24432], - [0, 24433, 24434, 24435, 34352], - [0, 1362, 3171, 705], - [0, 1149, 1512, 1525, 2899, 4037, 4193], - [0, 4500, 5592, 4030, 3101, 22115, 3424], - [1, 2343, 24438], - "is-extglob", - [0, 24439, 24442, 24443, 2443], - [0, 705, 1696], - "extglob", - "globstar", - [0, 3297, 2899, 1177], - [0, 4500, 22115, 3424], - [1, 2343, 24445], - [0, 24447, 0, 2514, 2537], - [2, 14503, 7204], - [0, 3183, 36215, 1437], - [1, 2343, 24452], - "globally", - [3, 9509, 9], - "locally", - [0, 24453, 24454, 24455, 34352], - [0, 31081], - [0, 13789, 1011, 1177, 28753, 1680, 2024, 3401, 4481, 91, 4523, 1906], - [0, 91, 4799, 553, 6435, 614, 6731, 3061, 1698, 1781, 7265], - "vanilla", - [1, 2343, 24458], - [0, 24459, 16075, 24460, 2537], - [0, 1562, 36226, 3173], - [0, 1563, 998, 36228], - [1, 2343, 24464], - "is-object", - "kind", - [0, 24465, 24466, 24467, 2537], - [0, 24648, 6327, 3105, 3181, 4745], - [0, 442, 8144, 7639, 6503, 4874, 1414, 36007, 668, 1177, 2899, 3758, 4135, 4494, 91, 4523], - [0, 91, 1745, 1179], - [1, 2343, 24471], - " name", - [2, 24374, 24469], - [0, 24472, 24473, 24474, 2443], - [0, 36241], - [0, 4874, 4508, 91], - [0, 36244, 36245, 29, 36246, 36247, 36248, 91, 1745], - [1, 2343, 24476], - [0, 0, 23733, 24477, 2487], - [0, 1666, 6901, 33777, 91, 1745, 36248, 4508], - [1, 2343, 24479], - [0, 0, 0, 24480, 2537], - [0, 5592, 1745, 1783, 4508, 91, 36245], - [1, 2343, 24482], - [0, 24483, 24484, 24485, 2537], - [0, 3127, 91], - [0, 8147, 6503, 4874, 6520, 1596, 2759, 2899, 3202, 4449], - [0, 6869, 1745, 36263, 5284], - "is-ins", - "ide-container", - [2, 24486, 24487], - [1, 2343, 24490], - [0, 24492, 24495, 24496, 2537], - "esmock", - [0, 1525, 4734, 3275, 15221, 36270, 1149, 1512, 3220, 3188, 7074, 36272], - "wsl", - "subsystem", - [0, 1429], - [0, 36275, 1783, 36276, 36278, 26916, 20672, 1283, 15253, 1179], - [1, 2343, 24498], - [0, 5914, 24499, 2514, 2523], - [ - 0, 549, 4856, 9417, 6503, 36284, 4874, 1429, 1431, 1596, 2899, 36285, 3232, 36289, 1894, 36290, 4232, 4474, - 4490, 31194 - ], - [1, 2343, 24501], - [0, 24502, 24503, 2514, 2399], - [0, 2070, 3348, 1112, 1673, 1676, 4484, 4747, 1398, 1680, 1759, 16544, 1130, 24697, 3951, 36295], - [ - 0, 1414, 3519, 1429, 2323, 2675, 2742, 2899, 3243, 3259, 1552, 4193, 1177, 3260, 4039, 7800, 2203, 3230, 4246, - 4474, 25633, 1894, 36308, 442, 2507, 20085, 4196, 91, 4856, 4874, 2494, 2990, 5245, 6503, 6513, 4892, 2496, - 36307, 25629, 2510, 2529, 25634, 27585, 19441, 1431, 6512, 8536, 18710, 4523, 36303, 4232, 28290, 1942, 28033, - 36305, 9417, 13418 - ], - "kindof", - [1, 2343, 24506], - [0, 0, 24507, 24508, 2523], - [ - 0, 1414, 3242, 1429, 1687, 2070, 2931, 2899, 4484, 4707, 36007, 1177, 20380, 668, 2203, 1457, 3183, 24156, 442, - 3527, 3541, 91, 4856, 17577, 6503, 26584, 2858, 692, 7892, 2075, 36315, 36316, 4523, 36318, 4232, 1964, 36323, - 1012, 13418, 27909, 12123, 5551, 36326, 36331 - ], - [0, 6869, 7296, 4643, 1351, 5284], - [2, 13283, 2899], - [1, 2343, 24513], - "spaces-cli", - [2, 671, 24511], - [0, 24514, 7590, 24515, 2537], - [0, 1012, 1011, 1009, 12145], - [0, 6892, 5286, 5284, 91, 57, 5341, 1177, 6741, 6939], - [1, 2343, 24517], - [0, 24518, 24522, 24526, 2399], - [0, 36342, 18420], - "code c", - [2, 24519, 2885], - "JS code coverage", - [0, 10949, 6503, 4874, 36345, 1567, 36348, 3188, 2899, 3696, 4487, 91, 4526], - "@metcoder95/https-pem", - "verage", - "JS coverage", - [0, 6869], - [1, 2343, 24528], - [0, 24529, 24530, 24531, 2487], - [0, 36356, 36358, 1759, 16837, 695, 3025, 3561, 3616, 16840, 3638, 16841, 25162, 2278, 4228, 4480, 4333], - [ - 0, 36361, 5087, 19799, 7889, 4874, 36362, 36364, 19802, 1009, 1011, 1367, 1177, 1895, 2675, 1192, 33412, 2990, - 36366, 3640, 3672, 1894, 36367, 4468, 91 - ], - [0, 1623, 4329, 2278, 695, 4333, 5260, 1932, 3561, 91], - [1, 2343, 24533], - [0, 24534, 24535, 24538, 4139], - [0, 23433, 1362, 1437, 1486, 1513, 35446, 25879, 32086, 3077, 3183, 36374, 36375, 4562, 4720, 1695], - [0, 1705, 3297, 4039, 4474, 4487, 36377, 91], - "js-calendar", - "v-click-outside-x", - [0, 4532, 91, 23076, 6432, 3383, 10057, 5490], - [2, 1165, 2091], - "5-property-mutators", - [2, 24229, 24540], - [2, 1536, 4408], - "vue-h", - "tml-loader", - [2, 24543, 24544], - [1, 2343, 24547], - [0, 24548, 24549, 24550, 4139], - [0, 1525, 4227], - [0, 1082, 2899, 4135], - [0, 2280, 4533, 4535, 3178, 2632, 5284, 5286, 1925, 5194, 6598, 7075, 6778, 7056, 7192, 1149, 7003], - [1, 2343, 24552], - [0, 0, 24553, 24554, 2443], - [0, 1082, 4135], - [ - 0, 200, 15215, 23634, 24280, 5286, 3595, 1925, 5284, 676, 36390, 2262, 14137, 2632, 3178, 6707, 6708, 4405, - 23635, 1644, 57, 23637, 2280 - ], - [1, 2343, 24556], - [0, 24557, 24558, 24565, 34352], - [0, 9448, 2102, 2755, 4121, 4143, 4227, 4535, 4695, 24777], - [ - 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 19403, 1610, 1700, 1701, 1177, 1895, 1938, 2675, 1192, 2794, 2990, - 3150, 3400, 1894, 4257, 4072, 2924 - ], - "character-", - [2, 24559, 57], - "inople", - [2, 14180, 24561], - [3, 10755, 13], - [2, 8535, 591], - [0, 2280, 4535, 4533, 2924, 1464], - "void-elements", - [1, 2343, 24572], - [3, 13889, 13], - "ddleware", - [2, 24568, 24569], - "code-mirror", - [0, 24573, 24578, 24579, 2523], - [0, 36402], - "github-basic", - "highlight-", - [2, 24575, 1505], - "inconsolata", - [0, 2899, 1177, 1362, 2759, 1954, 1938, 1958, 1903, 1970], - [0, 3778, 1179, 7818, 6953], - "-code-mirror", - [2, 2437, 24580], - "jade-", - "highlighter", - [2, 24582, 24583], - [3, 10755, 14], - "cdata", - [2, 24585, 24586], - [3, 24587, 15], - [1, 2343, 24597], - "offee-script", - [2, 24588, 24590], - [2, 24585, 695], - [2, 24585, 3127], - [2, 24585, 4333], - "verbatim", - [2, 24585, 24595], - [0, 24603, 0, 24604, 2537], - "less-file", - "lsr", - [2, 23151, 705], - "stop", - "twbs", - [ - 0, 97, 4880, 4883, 36409, 36411, 36413, 36415, 36416, 36420, 36422, 36423, 1015, 36424, 36425, 36427, 36429, - 36430, 36432, 36433, 36435, 36437, 36439, 36442, 36444, 36445, 36447, 36448, 36451, 36453, 36454, 1018, 1021, - 36455, 36457, 36458, 36459, 36461, 36463, 36466, 36467, 12265, 1023, 36468, 36471, 36473, 36476, 36477, 36478, - 36480, 36483, 36485, 36487, 36489, 36490, 36491, 36492, 36493, 36495, 36497, 36499, 36502, 36503, 36504, 36506, - 36509 - ], - [0, 4964, 4539, 12245, 12246, 89, 5128, 4627, 4963, 181, 1623, 12247, 12248, 5130, 6400, 4967], - [1, 2343, 24606], - [0, 24608, 24609, 8039, 2399], - "filelist", - [0, 2070, 2685, 1209, 4135, 4727], - [0, 2272, 3105, 2899, 3381, 4170], - "rake", - [1, 2343, 24612], - [0, 0, 24613, 2514, 2399], - [0, 8862, 811, 816, 10817, 4874, 1317, 1894, 4042, 4484, 91, 1984], - [1, 2343, 24615], - [0, 0, 24616, 24618, 2523], - [0, 11976, 107, 34715, 1437, 12607, 668, 2205, 2553, 3105, 36526, 3400, 36528, 3714, 7917, 1984], - "video-worker", - [0, 1936, 1283, 2574], - [3, 1198, 14], - "nnotate-pure-calls", - [2, 24619, 24620], - [3, 19449, 20], - "nk", - [2, 24622, 24623], - [2, 16819, 2143], - "-nk", - [2, 7628, 24626], - [1, 2343, 24629], - [0, 24630, 24632, 2514, 2523], - [ - 0, 8862, 811, 8850, 816, 6373, 10895, 36534, 1556, 16230, 668, 28795, 36538, 2807, 3090, 36536, 3189, 3510, - 15450, 3714, 4042, 4057, 15451, 27921, 36537 - ], - "parallax", - [0, 5757, 4874, 7677, 19336, 1446, 1177, 1905, 1894, 91, 1984], - "youtube", - "vimeo", - [1, 2343, 24636], - [0, 0, 24637, 24638, 2537], - [0, 3421, 2070, 1734, 2675, 2297, 2907, 1177, 4042, 4072, 1597, 1596, 2908, 17232, 5561, 36544, 1938, 2915], - [0, 614, 6564, 36, 5576, 1388], - [1, 2343, 24640], - [0, 24641, 24642, 24643, 2537], - [0, 4243, 23462], - [0, 1389, 36552, 1177, 2759, 2899, 3202, 4068, 31136, 4545], - [0, 4545, 1871], - [1, 2343, 24646], - "css-url-embed", - [0, 0, 24647, 24649, 2523], - [ - 0, 20870, 36559, 24523, 826, 4874, 1079, 28400, 1414, 1610, 36560, 668, 1177, 2064, 2675, 1192, 31808, 29197, - 3313, 2658, 4481, 91, 4729 - ], - "@gerrit0/mini-shiki", - [0, 1612, 27, 2671, 1862, 705, 7085, 7289, 4731, 7102], - [1, 2343, 24654], - [2, 2767, 12608], - [2, 2767, 8751], - "walkdir", - [0, 24655, 24656, 24657, 2537], - [0, 9315, 31265, 23289, 2051, 2745, 36568, 12449], - [0, 36571, 12396, 9363, 4874, 1414, 1894, 3985, 3998, 4481, 4505, 91, 1906], - [0, 6892, 7234, 1563, 25154, 1644, 3729, 3958, 3984, 36573, 4141, 1646, 5341, 353, 1633, 4549], - [1, 2343, 24659], - [0, 24660, 8134, 24661, 2537], - [0, 36578], - [0, 17023, 3778, 6988, 16114, 8623, 36580, 4552, 5401, 11512], - [1, 2343, 24663], - [0, 24664, 24667, 24669, 2523], - [0, 9315, 18072, 12447], - "cssfontparser", - "moo-color", - [0, 9363, 4874, 1414, 3137, 27008, 27010, 1894, 3985, 3998, 4481, 4505, 91, 1906], - [2, 1199, 15525], - [ - 0, 23266, 36587, 614, 6435, 3984, 36573, 3958, 26564, 2587, 36588, 36589, 3273, 1351, 1783, 1936, 6523, 1633, - 6892, 202, 12414, 4647 - ], - [1, 2343, 24671], - [0, 0, 16529, 24672, 2523], - [0, 35670, 27280, 18132, 4558, 3403, 4571, 7204, 4569, 4166, 16159], - [1, 2343, 24674], - [0, 24675, 0, 24676, 4139], - [0, 17180, 2155, 36602, 36604, 20508, 3923], - [0, 2056, 4560, 15008, 36606, 12666, 3101, 7682], - [1, 2343, 24678], - [0, 24679, 24680, 24681, 2487], - [0, 36612, 1371, 1437, 36611, 4135, 20044, 1543, 16184, 2960, 2744], - [0, 1906, 1166, 24491, 4294, 1470, 36615], - [0, 3378, 3076, 29096, 22005, 3329, 4354, 16790, 200, 1237, 3383, 15525], - [1, 2343, 24683], - [0, 0, 0, 24684, 2537], - [ - 0, 12831, 1002, 36621, 36622, 36623, 36626, 36628, 36630, 36632, 36637, 36639, 36641, 36642, 36643, 36646, - 36649, 36650, 36653 - ], - [1, 2343, 24686], - [0, 24687, 24691, 24692, 2399], - [0, 3763, 3757], - "@jest/e", - "nvironment", - [2, 24688, 24689], - [0, 1158, 3421, 4770, 1082, 2899, 1177, 13614], - [0, 7119, 1002, 25658], - "fake-timers", - [2, 552, 24693], - [1, 2343, 24696], - [0, 0, 24698, 24699, 2523], - "sql-highlight", - [0, 1566, 2899, 4170], - [0, 1002, 4565], - [1, 2343, 24701], - [0, 24702, 24703, 13533, 2399], - [0, 3008, 3173, 4121], - [ - 0, 48, 53, 87, 192, 5467, 19401, 16405, 1193, 1610, 1700, 1701, 1177, 1895, 1938, 2092, 2675, 1192, 2990, 3144, - 21016, 3400, 1894, 4257, 2924 - ], - [1, 2343, 24705], - [0, 24706, 24707, 24708, 2523], - [0, 15560, 23783], - [0, 1148, 1389, 1414, 2899, 3697, 20010, 20012, 4535], - [0, 7134, 57, 12831, 1002, 1644, 3766, 1871, 3767, 1646], - [1, 2343, 24710], - [0, 24711, 24714, 24716, 34352], - [0, 2139, 36681, 3173, 3763, 4507, 4548, 36680], - "-escapes", - [2, 11948, 24712], - [ - 0, 5517, 30494, 36688, 20224, 36694, 36687, 7746, 4874, 36685, 11305, 36691, 7752, 29891, 23247, 7677, 1410, - 1610, 2685, 33479, 30889, 2658, 7798, 28531, 4393, 4483, 36684, 91, 1984 - ], - "matchers", - [0, 4568, 27, 36696, 7085, 7289, 705, 2671, 4548, 1612], - "extended", - [1, 2343, 24720], - [2, 38074, 1177], - [0, 24721, 24722, 24735, 2537], - [0, 25493], - [0, 3505], - "@pmmmwh/react-refresh-webpack-plugin", - "cape-html", - [2, 5600, 24724], - "ump.js", - [2, 5086, 24726], - "ndomcolor", - [2, 12178, 24728], - "eslint-w", - [2, 2546, 4406], - [2, 24730, 24731], - "jump.js", - "randomcolor", - [0, 4569, 4571, 35668, 25493, 4014, 7204, 6857, 3403, 1263, 6437, 6639, 6436, 36706], - [1, 2343, 24740], - "recharts", - [2, 30495, 674], - "web-vitals", - [0, 24741, 24742, 24743, 2487], - [0, 3084, 4449], - [0, 1148, 2899, 3697, 705, 4135, 36712], - [0, 4575, 1388, 36715, 888, 1644, 57, 36716, 36717, 36718, 36719, 4569, 36720, 4576, 15525], - [1, 2343, 24745], - [0, 0, 24747, 24748, 2537], - "libxmljs2", - [0, 1596, 2759, 14529, 3774], - [0, 8426, 9254, 3656, 4577], - [1, 2343, 24750], - [0, 24751, 24752, 24755, 2523], - [0, 2713, 17395, 25700, 36732, 17416], - [0, 1090, 1593, 36736, 3435, 3438, 4092, 4100, 4389], - "plugnplay", - "pnp", - [0, 614], - [1, 2343, 24757], - [0, 0, 9530, 24755, 4139], - [1, 2343, 24760], - [2, 814, 13987], - [0, 0, 24761, 24763, 2537], - [ - 0, 68, 192, 5467, 442, 6375, 1525, 1177, 1895, 1955, 2203, 2675, 1192, 2990, 29197, 3400, 1894, 23901, 27302, - 4257, 91, 4523 - ], - "@vercel/h3", - [0, 3348, 6926, 6668, 36760], - [1, 2343, 24765], - [0, 24766, 24767, 24768, 2399], - [0, 20573, 1687, 2929, 11481], - [0, 36767, 1999, 29283, 34078], - [0, 1145, 36769, 8791, 8745, 1973], - [1, 2343, 24770], - [0, 0, 24771, 24772, 2523], - [0, 4384, 2272], - [0, 1002, 7020, 4354, 16790, 13017], - [1, 2343, 24774], - [0, 24775, 24776, 24784, 2523], - [0, 17058, 36781, 7076, 25814], - [0, 17584, 1429, 15990, 1527, 1652, 2675, 2759, 3188, 2899, 21477, 4039, 4131, 4193], - "worker-farm", - "leak-detector", - [2, 2769, 24778], - [3, 20371, 12], - [2, 24780, 14922], - "@aneuhold/be-ts-lib", - "@vercel/koa", - [0, 36785, 1528, 6458, 3358, 16094, 13729], - "@vercel/hono", - "@jimp/diff", - "@jimp/", - [2, 24787, 9711], - "@jimp/types", - [1, 2343, 24803], - "@jimp/t", - "est-utils", - [2, 24791, 24792], - "@adonisjs/ace", - [2, 12327, 10809], - [3, 475, 10], - [2, 24801, 8915], - "manipulation", - [2, 12327, 24798], - "resize", - [3, 24794, 11], - [2, 24796, 24815], - [0, 0, 24804, 24814, 4139], - [0, 9516, 9515], - [3, 1603, 9], - [2, 24805, 3751], - [2, 10880, 1283], - [3, 5617, 14], - "eter", - "-decorator", - [2, 24809, 24810], - [2, 11958, 24811], - [2, 24808, 24812], - [0, 3378, 3383, 1460, 7020], - "bodyparser", - [2, 24825, 686], - [1, 2343, 24820], - [2, 29401, 166], - [2, 13055, 25721], - [0, 0, 24824, 24834, 2537], - " editor", - [2, 6105, 24821], - "wysiwyg ", - [0, 48, 53, 87, 94, 1178, 1198, 1177, 1881, 1938, 2899, 3400, 3421, 4039, 4042, 4045, 28038, 4535], - [3, 475, 12], - "html editor", - [2, 24823, 24826], - [2, 24796, 7141], - "rich editor", - [2, 6106, 24821], - "editable", - [2, 1563, 24831], - "vanillajs", - [0, 1155, 7020, 2649, 20215, 2574, 36796, 36798, 1145], - [1, 2343, 24837], - "@adonisjs/env", - [0, 24838, 24839, 24840, 2443], - [0, 36805, 36809, 36806], - [ - 0, 4874, 11016, 13061, 16480, 36812, 11018, 1639, 36814, 2832, 91, 1983, 1984, 36815, 188, 4639, 36820, 36821, - 36816, 36817 - ], - [0, 181, 188, 8588, 5131, 4967, 4627, 4963], - [2, 24846, 24847], - "wysisyg", - "rte", - [1, 2343, 24845], - [0, 0, 24851, 24865, 2523], - [3, 24828, 11], - "vents", - "nanotimer", - "temporal", - [3, 1387, 9], - [0, 2899, 1177, 2759, 1317, 4342, 1311, 1954, 1938, 1958, 1903, 1948, 1970], - "erialport", - [2, 24850, 24852], - "firmata", - [2, 24796, 24858], - "beautifier", - [2, 2294, 24856], - "fold", - "0A02", - "0A21", - "16x2 LCD", - "20x4 LCD", - "2D120X", - "2Y0A02", - [0, 27, 10376, 4590], - [1, 2343, 24870], - "2Y0A21", - "74HC595", - "ADXL335", - [0, 24901, 24903, 2514, 2537], - [2, 24796, 3428], - "ADXL345", - "ALS-PT19", - "ALSPT19", - "ANALOG", - "arduino", - "Ardumoto", - "AT42QT1070", - "BLINKM", - "BMP180", - "Continuous Rotation", - "DEFAULT", - "Diffused LED", - "DS18B20", - "Edison Arduino Block", - "Edison ", - "GPIO Block", - [2, 24886, 24887], - "I2C Block", - [2, 24886, 24889], - "PWM Block", - [2, 24886, 24891], - "edison", - "ESPLORA", - "EV3", - "galileo-io", - "galileo", - "GP2D120XJ00F", - "GP2Y0A02YK0F", - [2, 24925, 24926], - [0, 4593], - "GP2Y0A21YK", - [0, 4384, 2276], - "GP2Y0A41SK0F", - "GY-521", - "GY521", - "HD44780", - "High Torque", - "Hitec HS-35HD", - "Hitec HS-", - [1, 2343, 24939], - "Hitec HS-422", - [3, 24912, 11], - "5BB", - [2, 24913, 24914], - "625MG", - [2, 24910, 24916], - "Hitec HS-6", - "46WP", - [2, 24918, 24919], - "755HB", - [2, 24910, 24921], - "805BB", - [2, 24910, 24923], - [3, 24871, 11], - "ealth", - "Hitec HS-85MG", - "HMC5883L", - "HMC6352", - "Hobby Motor", - "HRLV-MaxSonar-EZ0", - "HT16K33", - "HTU21D", - "i2c", - "Infrared Proximity Sensor", - "Infrared ", - "Sensor", - [2, 24936, 24937], - [0, 24941, 24957, 2514, 2487], - "intel edison", - [ - 0, 12105, 668, 1457, 2139, 36838, 24762, 36840, 24783, 30162, 24785, 36841, 36842, 36843, 24818, 28111, 29471, - 36845, 24738, 28441, 36848, 30929, 36850, 36852, 31275, 36855, 36859 - ], - "intel galileo", - "ISL29125", - "JHD1313M1", - "Joystick", - "LCD1602", - "LCD2004", - "LCM1602", - "LED", - "LIDAR-Lite v2", - "Ludus Protoshield Wireless", - [3, 24951, 17], - "LV-MaxSonar-EZ0", - [3, 24953, 14], - [2, 24954, 1278], - "MCP23008", - [ - 0, 3242, 1091, 1138, 1758, 1999, 2714, 3467, 3445, 1983, 1413, 1437, 1676, 2020, 3144, 2658, 17913, 25671, 4707, - 1438, 1759, 2022, 2754, 4039, 4135, 4238, 4391, 1984, 1458, 1503, 2026, 2105, 3203, 4474, 1668, 2151, 2182, - 3761, 3784, 33145, 842, 24156, 11305, 36861, 26453, 29133, 3181, 3547, 4459, 29105, 31142, 1109, 33200, 1483, - 2794, 3173, 3310, 4294, 91, 5087, 4874, 1154, 1869, 36863, 20921, 36864, 36867, 5364, 5245, 27066, 26584, 1107, - 1151, 36868, 36869, 36871, 5254, 24358, 35563, 13834, 5071, 31008, 36872, 6541, 36873, 36874, 25892, 36875, - 8997, 4864, 28137, 2069, 36877, 3386, 16831, 36878, 34118, 36879, 9129, 12461, 27959, 36880, 7746, 5542, 30493, - 33761, 36882, 31071, 23843, 24725, 36885, 11907, 36887, 36889, 15887, 36890, 36892, 5328, 36895, 36897, 36899, - 29125, 36901, 36906, 36909, 36911, 36915, 36917, 36918, 36920, 36922 - ], - [2, 24925, 9257], - "MCP23017", - "MCP9808", - "Metal Gear", - "MJKDZ", - "MMA7361", - [2, 24796, 2942], - [1, 2343, 24971], - "MMA7660", - "MMA8462Q", - "MPL115A2", - "MPL3115A2", - "MPR121", - [0, 24982, 0, 24990, 2537], - "MPR121QR2", - "MPU-6050", - "MPU6050", - "MUXSHIELD2", - "NXT", - "OA41SK", - "PARALLEL", - "PCA9685", - "pcduino", - "PCF8574", - [0, 36927, 1147, 34631], - "PCF8574A", - [2, 24796, 32276], - "PCF8574AT", - "PCF8574T", - "@paralleldrive/cuid2", - "PCF8575", - "@poppinss/colors", - [0, 1851, 2656, 15204, 30960, 31482, 5317], - "PCF8591", - "photon", - "PIR Motion Sensor", - "QTOUCH", - "raspberry pi", - "raspberry", - "raspberrypi", - [2, 24999, 25005], - "@poppinss/", - "raspi-io", - "RedBoard", - "RGB LED", - "robotics", - "rpi", - "dumper", - "Servo", - "Shift Register 8-Bit SN74HC595", - [3, 25007, 14], - "SI7020", - "spark", - [2, 24999, 25017], - "spark core", - [1, 2343, 25035], - "spark-io", - "SparkFun Essential Sensor Kit", - "SparkFun ", - "macroable", - "Sensor Kit", - [2, 25016, 25018], - "Speed controller", - "Temperature", - "tessel 2", - "Thumb Joystick", - "TINKERKIT", - "TMP36", - "TSL2561", - "Ultrasonic Range Finder", - "usb", - "VKEY", - "Weather Shield Arduino", - [3, 25030, 15], - "Photon", - [2, 25031, 25032], - [2, 24999, 594], - [0, 0, 25036, 2514, 2537], - [0, 2899, 2759, 4342], - [1, 2343, 25041], - "@hapi/formula", - "@hapi/pinpoint", - "@hapi/tlds", - [0, 0, 25043, 25044, 2537], - [2, 6473, 3020], - [ - 0, 53, 87, 192, 5467, 5583, 1208, 1429, 1443, 1503, 1597, 16656, 1637, 1701, 1177, 1881, 1938, 2675, 2297, 2878, - 2881, 6385, 2900, 2904, 2910, 2990, 2899, 3400, 3561, 3566, 16658, 3613, 3672, 16578, 3758, 4042, 4320, 4323, - 4328, 4535 - ], - [0, 158, 11328, 4596, 36941, 1936, 1623, 5284, 6400, 5122], - [1, 2343, 25046], - [0, 25048, 25050, 25051, 2523], - "youch", - [0, 36951, 1496, 4002, 36950], - "youch-terminal", - [0, 3421, 2899, 1177, 2022, 35299, 3923, 1889, 1954], - [0, 4607, 17462, 2090, 7204, 4262, 3403], - [1, 2343, 25056], - [2, 24801, 25055], - "recoil", - "ssembler", - [0, 25057, 25061, 25062, 2537], - [0, 1329, 4431], - [2, 25059, 25082], - "@adonis", - "gzip-js", - [0, 4389, 4603], - [0, 4597, 17461, 6270, 1398, 3101], - "commitplease", - [1, 2343, 25065], - [0, 25066, 25068, 25078, 2443], - [0, 36965, 21539, 2215, 2685, 36966, 36967, 3369, 36968, 36971, 35299, 36972, 36975, 4597, 36976], - "grunt-git", - [0, 1177, 1889, 2022, 2899, 3421, 3923, 4039, 4193], - "-authors", - [2, 25067, 25069], - "-webkit", - [2, 3541, 25071], - "mpare-size", - [2, 21927, 25073], - [3, 10727, 15], - [2, 25075, 3766], - "karma-j", - [0, 2323, 36981, 4597, 2090, 6771, 2150, 7046], - [2, 26505, 6579], - [1, 2343, 25081], - [0, 25084, 25087, 25093, 34352], - [3, 835, 16, 7], - [2, 25085, 25086], - [0, 4597, 4431], - [3, 475, 8], - [3, 24165, 17, 8], - [0, 2494, 4389, 4600], - "grunt-html", - "owercopy", - [2, 2237, 25089], - "-local", - [2, 14336, 25091], - [0, 4597, 2323, 17461, 24456, 3101, 1871, 2585, 128], - "prototyping", - [1, 2343, 25096], - [0, 9652, 0, 25097, 2537], - [0, 4597, 4070, 22850, 2323], - [2, 24796, 2190], - "@japa/assert", - [1, 2343, 25101], - [0, 25102, 25105, 25107, 2523], - [0, 36996, 1851, 36997, 2202, 24462, 19094, 36998, 37000], - "@japa/expect-type", - "@japa/file-system", - [0, 1389, 2759, 21526, 3459, 37002, 30164, 4387, 4389, 4770], - "config-chain", - [0, 4607, 965, 23361, 37004, 1687, 7163, 1388], - "@japa/runner", - "code-quality", - "@japa/snapshot", - [1, 2343, 25112], - [0, 25113, 25116, 25117, 2487], - [0, 20378, 4042, 668, 3561, 3530, 27921], - [2, 25115, 15244], - [3, 7895, 14], - [ - 0, 4729, 1415, 27438, 1594, 984, 3189, 30023, 3445, 2278, 4200, 3510, 1759, 11480, 3266, 3493, 4072, 1544, - 28119, 1457, 28865, 4955, 37012, 34928, 3527, 1615, 1869, 31308, 16860, 3090, 58, 9743, 1763, 2007, 21688, - 37013, 3613, 37014, 37015, 24759, 30787, 37017, 24725, 1573, 10895, 3616, 29444, 8862, 31292, 28465, 4060, 811, - 28572, 18584, 5180, 28575, 16808 - ], - [0, 4967, 5130, 11498, 5331, 37019, 1983], - [2, 25119, 25121], - [3, 10844, 11], - [1, 2343, 25123], - "-console", - "argon2", - [0, 25124, 25132, 25133, 2537], - [0, 25375, 2071, 2151, 37024, 26479], - "knifecycle", - "yerror", - "edge.js", - "@mer", - "maid-js/mermaid-cli", - [2, 25128, 25129], - "mermaid", - [0, 6494, 4864, 4874, 2026, 4493, 91, 1983], - [ - 0, 1983, 5592, 37028, 37029, 37030, 37032, 2026, 37034, 36, 37036, 7433, 37031, 37038, 1932, 8172, 4083, 5995, - 37039, 37040 - ], - [1, 2343, 25136], - "architecture", - [0, 25139, 25149, 25150, 2537], - [2, 25138, 25151], - "ts-node-", - [ - 0, 188, 1983, 9348, 8114, 37052, 7797, 36805, 10984, 6371, 37047, 37046, 24097, 37049, 7639, 11016, 37051, 9312, - 25447 - ], - "-to-glob", - [2, 16774, 25140], - "@jscpd/html-reporter", - "@jscpd/", - [2, 25143, 139], - "-sarif-reporter", - [2, 2824, 25145], - "@jscpd/core", - [2, 25143, 207], - [ - 0, 3467, 4200, 1676, 2020, 3478, 23802, 3266, 4039, 4042, 4135, 1984, 668, 3537, 3742, 7799, 19571, 13151, - 28519, 1457, 2151, 2182, 3183, 1894, 3757, 3084, 3170, 3527, 27921, 91, 4874, 1615, 2226, 2990, 3105, 5245, - 8646, 30795, 8146, 7812, 3509, 4864, 7892, 3067, 37067, 9245, 8778, 5946, 3114, 4057, 37017, 21122, 3107, 8850, - 34971, 37061, 37065, 8862, 37074, 3112, 15277, 37062, 6373, 22823, 811, 3668, 37059, 7641, 37070, 37056, 1567, - 816, 37058, 37069, 37071 - ], - [0, 1983, 188, 4614], - "maintained", - [1, 2343, 25153], - [0, 25166, 25171, 25173, 4139], - "cst", - "adonisjs", - "jscs-jsdoc", - "jscs-", - "wikimedia", - [2, 10832, 25158], - [2, 25157, 25159], - "rved-words", - [2, 4020, 25161], - "to-double-quotes", - "to-single-quotes", - "vow-fs", - [ - 0, 30023, 1983, 3510, 15452, 26379, 3530, 4441, 27921, 37080, 2024, 37082, 3090, 37084, 36874, 26380, 37085, - 37014, 37087, 37092, 37093 - ], - "7.0.0", - [2, 5857, 25167], - [2, 8649, 22785], - "unit-coverage", - [ - 0, 4729, 1415, 3171, 37095, 2832, 26385, 3742, 24324, 2559, 37096, 1084, 4874, 13204, 1006, 37013, 7812, 37097, - 20374, 37100, 13471, 826, 8806, 5180, 6515, 8809 - ], - "style guide", - [0, 1983, 1984, 1973, 1192], - [1, 2343, 25175], - [0, 25176, 25180, 25182, 2523], - [0, 1437, 1209, 2720, 3183, 4726, 2708, 3077, 4294, 1257, 37108], - "@jsdoc/salty", - "catharsis", - [2, 20398, 57], - [0, 1906, 2323, 1172, 2899, 3220, 4170, 37110, 705, 1362, 1175, 2338, 2384, 37115, 37117, 2357, 37113, 1267], - "requizzle", - [0, 5592, 200, 32276, 4166, 8786, 5130, 1896, 13527, 1523, 1525, 35539, 3741, 2720], - [2, 25184, 25186], - "@aneuhold/", - [1, 2343, 25187], - "core-ts-api-lib", - [0, 25196, 0, 25197, 2537], - "current", - [2, 1469, 4479], - [2, 25188, 25189], - "object-to-", - "spawn-args", - [2, 25191, 25192], - [2, 25195, 1095], - [3, 25183, 18], - [0, 1687, 37123, 2070], - [0, 5472, 4386, 1973, 37125], - [1, 2343, 25199], - [0, 25201, 25206, 25207, 2487], - "ool", - [ - 0, 4449, 2070, 3171, 3917, 22990, 1437, 2975, 4753, 37130, 4135, 4734, 1448, 4566, 1525, 3181, 3105, 37131, - 2613, 37132, 36323 - ], - "master", - "config-master", - [2, 25184, 25205], - "main-scripts", - [ - 0, 2675, 2899, 4474, 1894, 6520, 91, 4865, 27098, 4874, 15743, 37139, 3400, 6503, 20290, 3720, 5254, 28189, - 37135, 192, 37137, 9129, 4131, 7639, 4232, 12458, 5467 - ], - [0, 29641, 4617, 7188], - [1, 2343, 25210], - "jsr", - [0, 0, 2667, 2514, 2537], - "data-urls", - "decimal.js", - "saxes", - [1, 2343, 25218], - "symbol-tree", - "w3c-xmlserializer", - "whatwg-url", - [0, 25222, 25223, 2514, 2537], - [2, 25261, 25262], - "sugar-free", - [2, 3192, 25220], - [0, 1104, 1496, 2012, 2061, 2070, 2685, 2741, 4227, 91, 4597, 4734, 4747], - [ - 0, 22909, 37149, 22821, 4865, 37152, 9129, 6503, 4874, 28198, 22900, 18438, 4891, 28189, 4892, 1009, 1011, 1177, - 2899, 4039 - ], - "webidl2js", - [1, 2343, 25226], - [0, 0, 25227, 2514, 34352], - [0, 2899, 3188, 2924, 91, 4874, 4677, 6503, 37157, 1584, 603], - [2, 25239, 25240], - [1, 2343, 25234], - "browser-re", - [2, 25230, 5460], - "cssom", - "nwmatcher", - [0, 25236, 0, 25241, 2487], - "selenium-s", - [0, 36805, 37163, 23423, 17494, 5337], - "tandalone", - [2, 25235, 25237], - [3, 8647, 12], - "li", - [0, 188], - [1, 2343, 25246], - "13.0.0", - [2, 5857, 25243], - "@trapezedev/project", - [0, 0, 25247, 25248, 2523], - [ - 0, 53, 61, 71, 4851, 87, 4856, 6503, 4874, 1011, 1191, 1195, 18571, 1429, 1628, 1177, 37170, 2899, 3951, 4039, - 4042, 4045, 4069, 4421, 4469, 91, 4533, 188, 4634, 4645, 19469, 4646, 2924, 4677 - ], - [0, 188, 1227, 1172, 91], - [0, 25260, 25258, 2514, 34352], - [2, 5051, 25257], - "results-interpreter", - "5.2.0", - [2, 5857, 25252], - "unicode-1", - "1.0.0", - [2, 25254, 25255], - "lice-ansi", - [ - 0, 53, 68, 5611, 37178, 15273, 19181, 442, 5245, 1006, 4874, 5254, 1009, 1011, 7677, 23203, 1177, 19492, 1945, - 1953, 19623, 1955, 1982, 17310, 1894, 4474, 1531, 91, 1983, 1984 - ], - "splash screen", - [0, 1676, 1994, 1996, 2000, 19186, 4135], - [3, 225, 10], - "5/blanditiis-numquam-expedita-neque", - [1, 2343, 25301], - "stylish", - [1, 2343, 25267], - [2, 25303, 25304], - [0, 0, 25268, 25270, 2523], - [0, 1397, 1192, 188], - "deeks", - [0, 188, 6609, 2999], - [1, 2343, 25273], - "doc-path", - [0, 25274, 25275, 25278, 2487], - [0, 37192, 37049, 37190], - [0, 24226], - "json2csv", - "csv2json", - [0, 2679, 23932, 37202, 1932, 188, 6284], - "csv-2-json", - [3, 25219, 12], - [1, 2343, 25282], - [0, 25283, 25286, 2514, 2537], - [0, 1437, 2570, 33215], - [2, 25280, 25285, 25288], - [3, 780, 9], - [ - 0, 53, 87, 37211, 1006, 32109, 5087, 13204, 37213, 37214, 1195, 37215, 1567, 1628, 2092, 2651, 1192, 2832, 2990, - 37217, 3144, 3177, 16581, 11801, 3618, 1894, 3754, 37220, 4227, 4307, 4333, 4334, 4337, 4468, 4469, 91, 4027, - 188, 4633, 2924, 4677, 4681, 4689, 19235 - ], - [1, 2343, 25289], - "aut-officiis-quae", - [0, 0, 25290, 25291, 2537], - [0, 5087, 4874, 1192, 3951, 4042, 4468, 91, 188, 4629], - [0, 188, 91, 4636], - "milliparsec", - [1, 2343, 25295], - "sort-on", - [0, 25299, 25300, 2514, 2523], - "@typ", - "icode/eslint-config", - [2, 25296, 25297], - [0, 5216, 28126, 37049, 30206, 1457, 2856, 37096, 3090, 3189, 30230, 3510, 3530, 15451, 27921, 29161, 30959, 4745], - [ - 0, 104, 31940, 8648, 811, 816, 6373, 10615, 33179, 37232, 20374, 29891, 11016, 17494, 34157, 5337, 11018, 25092, - 13393, 1549, 1759, 37235, 17850, 2559, 3294, 37236, 32977, 4039, 4042, 4076, 1531, 4493, 1983, 188 - ], - [0, 25305, 25306, 2514, 34352], - [1, 2343, 25412], - [3, 25284, 13], - "oloremque-voluptas-facere-nemo", - [0, 2570, 3008], - [0, 1175, 1193, 1240, 1567, 1192], - [2, 25280, 25391], - [1, 2343, 25309], - [0, 25310, 0, 25311, 2537], - [0, 37247, 2591], - [0, 188, 4643], - "0.0.0", - [2, 25254, 25312], - [1, 2343, 25315], - [0, 25316, 25317, 2514, 4139], - [0, 37049], - [ - 0, 188, 1192, 1437, 2020, 21665, 1177, 4042, 4135, 2026, 2924, 1836, 2151, 1610, 3758, 4614, 1193, 1628, 91, - 4634, 53, 4874, 1195, 37253, 4640, 87, 17494, 3957, 15134, 4073, 4261, 6373, 37170, 4679, 4684, 811, 1567, 816 - ], - [1, 2343, 25319], - [0, 25320, 0, 25321, 2523], - [0, 37258], - [0, 614, 888, 37260, 2150, 4647, 37261], - [1, 2343, 25323], - [0, 25324, 25325, 2514, 2537], - [0, 9129, 18704, 20960, 3181], - [0, 5087, 4874, 2070, 1192, 3144, 4039, 4468, 91], - [1, 2343, 25327], - [0, 16409, 25329, 25330, 2537], - [2, 2842, 24077], - [0, 192, 5467, 1389, 1527, 1652, 2675, 1192, 4535], - [0, 4649, 3497, 89, 2731], - [1, 2343, 25332], - [0, 25334, 0, 25335, 4139], - "meriyah", - [0, 37277, 3183], - [0, 614, 6435, 2150, 1586], - "jsonparse", - [1, 2343, 25338], - [0, 25339, 25340, 25341, 2487], - [0, 15642, 1389, 1457, 15016, 37284, 4431, 1695], - [0, 1377, 3188, 4237, 4389, 4535, 37286], - [0, 1389, 25429, 2282, 6374, 6147, 1388], - [1, 2343, 25348], - "jws", - "lodash.i", - "ncludes", - [2, 25344, 25345], - [2, 3045, 19366], - [0, 25354, 12529, 25356, 2537], - "integer", - [2, 3045, 25349], - "lodash.isn", - "umber", - [2, 25351, 25352], - [0, 33304, 26786, 1149, 37294, 33313, 37297, 33328, 33329, 37298, 37300], - "lodash.once", - [0, 33359, 3469, 3259, 14873, 1552, 3230, 37303, 4651, 4104, 33365], - [1, 2343, 25358], - [0, 25359, 25360, 25367, 4139], - [0, 1137, 1149, 1209, 3188, 3760, 705, 37308], - [ - 0, 37313, 1429, 1431, 1512, 18192, 2026, 2061, 2323, 37315, 2384, 2419, 2463, 2590, 2659, 34317, 2759, 2899, - 37316, 3297, 37317, 4089, 37320, 37324, 37325, 4547, 3348, 4747 - ], - [2, 25362, 25364], - [3, 32971, 13], - "@jspm/generator", - "phases", - "fu/eslint-config", - [2, 13179, 25365], - [0, 5472, 13428, 11132, 13841, 28522], - [1, 2343, 25369], - [0, 25371, 25373, 25374, 2537], - "webdav", - [ - 0, 37331, 37332, 37334, 37335, 37336, 37337, 37339, 37342, 37344, 37345, 37347, 37350, 37352, 37355, 37358, - 37361, 37363 - ], - "states", - [ - 0, 37365, 1192, 1177, 37366, 9422, 4468, 1894, 1317, 91, 5087, 2787, 5366, 37368, 1938, 19956, 1895, 37371, - 1011, 37374, 1009 - ], - [0, 37376, 17626, 8172], - "dotenv-local", - [2, 28322, 364], - "lie", - [1, 2343, 25381], - "jszip-utils", - [3, 21510, 13], - [0, 25384, 11736, 25385, 4139], - "versionify", - [2, 25380, 25382], - [0, 37390, 37393, 1327, 1394, 37394, 37397, 37398, 37401, 37404, 37408, 4747], - [0, 4653, 4990, 200, 37410, 9420], - "deflate", - [1, 2343, 25389], - "inflate", - [0, 25390, 25392, 2514, 2443], - [ - 0, 19611, 1006, 8818, 37424, 37427, 37429, 1082, 25361, 1393, 37433, 1835, 37014, 1994, 2018, 20575, 2215, 9506, - 20465, 3173, 23175, 4121, 4388, 4409, 33215, 4695 - ], - "quisquam-quod-ab-aut", - [ - 0, 53, 90, 107, 34765, 25376, 20577, 8780, 5087, 7746, 28919, 4874, 25422, 37436, 1195, 37437, 37438, 1509, - 1593, 1622, 1628, 1668, 1856, 4913, 1177, 20281, 2092, 2135, 2203, 37439, 2629, 2675, 2759, 1192, 21124, 2774, - 2777, 2784, 2794, 2843, 2856, 695, 2969, 2990, 1209, 3021, 3144, 25333, 3177, 21016, 640, 3421, 3446, 20085, - 1894, 3717, 3754, 23738, 3786, 89, 3824, 30570, 3978, 9340, 3988, 3992, 3999, 4039, 12936, 4183, 4294, 4307, - 4072, 4426, 4441, 4452, 4469, 91, 4549, 4027, 37440, 37441, 4677, 37442, 4746 - ], - [1, 2343, 25394], - [0, 25396, 25397, 25398, 2399], - "@diahkomalasarinpm/odio-facilis-beatae", - [0, 4729, 4200, 1082, 3456, 1675, 1525, 1084, 3527, 2628, 1874, 37449], - [ - 0, 1700, 1429, 2323, 1192, 3190, 1177, 2205, 3698, 1593, 1637, 3561, 2924, 2098, 3758, 1461, 1628, 2338, 3191, - 4027, 53, 1436, 4677, 1165, 1178, 1195, 3060, 4307, 97, 3057, 37457, 3618, 22651, 87, 37453, 4681, 90, 1210, - 1959, 37458, 4409, 37451, 37454, 83, 71, 5757 - ], - [0, 2924, 6374, 4674, 5260, 4202, 24095, 9816, 33126, 37460, 16660], - [1, 2343, 25400], - [0, 25401, 25402, 25405, 2399], - [0, 1842, 3932, 1511, 1525, 2727, 1615, 2704, 4689, 37466, 13077, 29067, 37449, 37468], - [0, 37472], - [3, 1754, 13], - "qjobs", - [0, 2924, 200, 4989, 1237, 6996, 5122], - "unit-reporter", - [2, 25077, 25406], - "cript-", - [2, 25408, 15473], - [2, 2916, 25409], - "timer-shim", - [0, 25414, 25417, 25418, 34352], - [1, 2343, 25419], - [0, 3144, 1511, 3173, 3440, 3781, 4121], - "spectacular", - "execution", - [ - 0, 2934, 2611, 1192, 2020, 2675, 1622, 1177, 38, 1544, 1701, 2026, 2078, 2203, 2924, 1894, 1610, 1699, 4342, 48, - 442, 470, 1193, 91, 53, 4874, 2092, 2990, 3400, 2099, 11485, 6494, 192, 1953, 27928, 37480, 4257, 87, 23531, - 7746, 37482, 1939, 1942, 1938, 20281, 1982, 1895, 1955, 19344, 5467 - ], - [0, 2924, 2663, 5001], - [0, 25431, 25433, 2514, 34352], - [1, 2343, 25567], - "os-shim", - [2, 25423, 25430], - "@types/x", - "karma-p", - "karma-plugin", - "reprocessor", - [2, 25424, 25426], - [3, 14927, 12], - [2, 25428, 25200], - "xhashjs", - [ - 0, 4729, 3445, 32876, 34228, 2026, 33507, 1457, 9241, 1511, 11993, 7798, 1536, 2215, 4150, 4121, 37490, 37491, - 37493, 6494, 37494, 37499, 37500, 37503, 2664, 4679, 1549, 33189, 37505 - ], - [2, 25280, 25435], - [ - 0, 2611, 1192, 695, 1082, 2020, 2675, 37507, 3144, 1622, 1177, 3127, 4039, 1544, 1593, 2924, 1894, 3758, 4342, - 48, 1193, 1628, 2659, 91, 53, 4874, 2969, 2990, 3400, 4677, 1195, 4307, 4224, 18052, 4689, 97, 192, 1953, 3923, - 9252, 27928, 4257, 87, 23531, 22102, 4523, 7806, 8780, 1939, 1942, 2651, 12837, 68, 37508, 37513, 1938, 20281, - 1895, 2780, 83, 5467, 13052 - ], - [1, 2343, 25439], - "suscipit-assumenda-a-assumenda", - [2, 2877, 15473], - "browser-stack", - [2, 25280, 25442], - [0, 25440, 25441, 25444, 2523], - [0, 4294, 2626, 37503], - [0, 3421, 2899, 4193, 1177, 2026, 2924, 1894, 4342, 1955, 4679], - "vitae-sequi-voluptas-a", - [2, 25445, 25446], - [0, 2924, 11498, 6609, 1237, 37523, 37525, 2663, 2026], - [3, 25438, 13], - "oluptatibus-vero-magni-rerum", - [2, 29825, 29840], - [1, 2343, 25449], - [0, 25450, 25451, 2514, 2523], - [0, 4388, 4695], - [ - 0, 841, 4874, 4891, 37531, 7858, 1584, 1700, 1177, 37534, 1915, 2092, 2675, 2990, 3150, 3697, 1894, 37535, 89, - 4307, 4484, 91, 1984, 2924, 4689 - ], - [1, 2343, 25459], - "ibrik", - "ffee-preprocessor", - [2, 23574, 25454], - "karma-r", - "equirejs", - [2, 25456, 25457], - [0, 25463, 25464, 25465, 2523], - "karma-re", - "porter", - [2, 25460, 25461], - [0, 2117, 21520, 5898], - [0, 2675, 4484, 37542, 2924, 1894, 91, 37544, 1006], - [0, 2924, 1698], - [1, 2343, 25467], - [0, 0, 25475, 25480, 2523], - "Safari", - " Tech Preview", - [2, 25468, 25469], - "TechPreview", - [2, 25468, 25471], - "IE", - "Chrome", - [0, 1429, 1177, 1938, 2899, 3203, 3275, 2924], - "Chrome Canary", - "Chrome ", - "Headless", - [2, 25477, 25478], - [0, 2924, 13382, 202, 6374, 11053], - "Chromium", - [1, 2343, 25483], - [0, 0, 25486, 25487, 2523], - "Firefox", - "Opera", - [ - 0, 1192, 1177, 2203, 2924, 2759, 1894, 1596, 442, 4227, 91, 5087, 1953, 27928, 1939, 1942, 33002, 1938, 20281, - 1982, 1895, 1955, 19344 - ], - [0, 2924, 4227], - [1, 2343, 25489], - [0, 25491, 0, 25494, 2537], - [2, 25764, 25765], - [0, 2215, 1615, 4449, 3524], - "chai-fs", - "os-homedir", - [0, 12197, 29726], - [1, 2343, 25496], - [0, 25497, 25498, 25499, 4139], - [0, 1401, 1676, 1856, 37568, 34639, 37569], - [0, 1400, 2323, 2447, 2839, 2272, 4389], - [0, 4699, 14609, 21302, 37572, 37573, 6645, 6761, 20863, 36, 5576], - "@asdfgertyjhnpm/a-unde-explicabo-eaque", - "firefox", - [1, 2343, 25503], - [0, 25504, 25505, 25506, 2523], - [ - 0, 37578, 37579, 37581, 37585, 37586, 37587, 37589, 37592, 37594, 37595, 37598, 37600, 1676, 1869, 37602, 37603, - 37606, 37609, 37612, 37613, 37615, 3171, 3441, 37617, 3756, 25990, 37619, 3781, 25996, 34383, 37623, 35299, - 37624, 37628, 37631, 37633, 37636, 37637, 37638 - ], - [ - 0, 53, 68, 5712, 87, 37641, 1090, 37644, 25992, 37646, 1290, 37647, 1398, 37648, 1618, 3588, 1177, 1903, 1938, - 1953, 1958, 2099, 37650, 3486, 37652, 3767, 4092, 4131, 4151, 15039, 20496, 4387, 4389, 4409, 15046, 2924, 4677, - 37654 - ], - [0, 37656, 37657, 1764, 37658, 37659, 37663, 37665, 22115, 37666, 37616, 37667, 15247, 37668, 4702], - [1, 2343, 25508], - [0, 25509, 25512, 25515, 2399], - [0, 1326, 3263], - [2, 25511, 25517], - [3, 25500, 16], - [0, 29569, 4384], - "adapter", - [2, 2877, 25513], - [0, 7734, 37674, 37675], - [1, 2343, 25518], - "nesciunt-molestias-reprehenderit-occaecati", - [0, 25519, 25520, 2514, 2523], - [0, 2026, 3368, 4545], - [0, 1506], - [3, 25395, 19], - [1, 2343, 25523], - [0, 0, 25524, 2514, 2537], - [0, 1429, 2297, 2899, 1177, 4042, 1894, 2878, 2900, 1159, 3734, 37688, 2881, 2889, 2912, 2895, 13867, 19910], - [1, 2343, 25526], - [0, 0, 25527, 25528, 2487], - [0, 4652, 2070, 10679, 4030, 2856, 37693, 2272, 3188, 37694, 3460, 1317, 26825, 4535, 1389, 3736, 37320], - [0, 37696, 37698, 14833, 1862, 6567, 14834, 14835, 4706, 1149, 14629, 6804], - [1, 2343, 25530], - [0, 25531, 6538, 2514, 2523], - [0, 37703], - [1, 2343, 25533], - [0, 0, 25534, 25535, 2399], - [0, 13896, 1776, 2899, 3220, 37708, 37709], - [0, 6574, 29179], - [1, 2343, 25537], - [0, 25538, 25539, 25540, 4139], - [0, 37715, 13388, 1149, 2753, 37716, 37718, 3923, 18730, 4252, 20931, 4715], - [0, 48, 53, 87, 37721, 4874, 37722, 1148, 37724, 1177, 37725, 1192, 4039, 4238, 34395, 4431, 37727], - [0, 4709, 2942, 6807, 30124, 21111, 1409, 3533, 3079, 2041, 1781, 3101], - [1, 2343, 25542], - [0, 25543, 25545, 25546, 2487], - [0, 37735, 3429, 20931, 4715], - [3, 2910, 12], - [0, 37739, 37741, 1429, 1177, 1954, 2899, 4039, 7734], - [0, 4709, 37743, 37744, 37745], - [1, 2343, 25548], - [0, 25549, 25551, 25552, 2537], - [0, 37716, 3923, 20931], - "safari", - [0, 4874, 1148, 1173, 1264, 1693, 1177, 37721, 2899, 3421, 4039, 37727], - [0, 4709, 4714, 37752], - [1, 2343, 25554], - [0, 25556, 25559, 25560, 2537], - "global-agent", - [0, 37758, 2070, 1209, 37759, 4431, 37760], - "al-agent", - [2, 4865, 25557], - [0, 1429, 2151, 2759], - [0, 1370, 3383, 6355, 14510, 1508, 4796], - [1, 2343, 25562], - [0, 0, 16487, 25563, 2443], - [0, 6940, 37767, 3924, 37769, 16580, 37770, 7295, 2585, 4718, 4717, 28734, 4719], - [1, 2343, 25565], - [0, 0, 9264, 25566, 4139], - [0, 4718, 4719, 5547, 1671, 6922], - [0, 25576, 25577, 25578, 34352], - [1, 2343, 25597], - "karma-br", - "ief-reporter", - [2, 25569, 25570], - "sourcemap-", - [2, 21536, 8754], - [2, 25572, 25573], - [2, 12612, 25574], - [0, 16781, 3714, 10761, 4695, 37780], - [0, 4874, 4891], - [0, 37783, 37784, 2924, 37786, 20164, 37788, 37789, 37790], - [1, 2343, 25580], - [0, 25581, 25582, 25583, 2537], - [0, 1110, 4290, 4294], - [0, 1166, 1437, 1596, 6474, 3421, 4481, 1906], - [ - 0, 4719, 6940, 4720, 6980, 7152, 1111, 592, 1473, 7208, 1512, 7009, 7201, 200, 1871, 6621, 1867, 6983, 6616, - 7244, 4166, 4744, 3073, 6807, 6876, 2585 - ], - [1, 2343, 25585], - [0, 25586, 6538, 25587, 2487], - [0, 19187, 4174], - [0, 37808, 29999], - [1, 2343, 25589], - [0, 0, 25590, 25593, 2537], - [0, 1317, 1401, 1177, 1895, 1955, 2203, 2899, 3421, 1894, 34639], - [2, 8652, 2013], - "keydown", - [0, 7299, 7172, 6761, 6729, 7057, 6145], - "keyup", - "metakey", - "keyname", - [0, 25599, 25600, 25601, 34352], - [ - 0, 2342, 2402, 2457, 2488, 2531, 2540, 2540, 2630, 2488, 2688, 2488, 2698, 2737, 2488, 2775, 2799, 2818, 2840, - 2939, 3016, 3110, 3207, 3247, 3279, 3307, 3448, 3515, 3593, 3631, 3723, 3782, 3844, 3879, 3908, 3929, 3952, - 4006, 4016, 4096, 4154, 4203, 4241, 4263, 4286, 4308, 4331, 4348, 4417, 4444, 4476, 4506, 4528, 4573, 4655, - 4673, 4700, 4743, 4813, 4953, 4994, 5004, 5007, 5013, 5016, 5019, 5023, 5028, 5031, 5034, 5037, 5041, 5044, - 5052, 5099, 5134, 5137, 5141, 5144, 5150, 5171, 5174, 5199, 5203, 5211, 5231, 5255, 5266, 5270, 5289, 5299, - 5289, 5333, 5360, 5373, 5379, 5437, 5486, 5493, 5516, 5544, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, - 5566, 5566, 5566, 5566, 5566, 5574, 5566, 5574, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5574, 5574, 5566, - 4286, 5566, 5566, 5578, 4286, 5574, 5566, 5566, 5566, 5566, 5566, 5566, 5574, 5574, 5574, 5580, 4286, 5566, - 5566, 4286, 5566, 4286, 5574, 5591, 5599, 5612, 5624, 5629, 5635, 4286, 5643, 5648, 5665, 5672, 5574, 5718, - 5723, 5566, 5566, 5566, 5578, 5566, 5566, 5566, 5566, 5566, 5578, 5566, 5566, 5566, 4286, 5727, 5566, 5566, - 5566, 5578, 5566, 5566, 5566, 5578, 5566, 5574, 5730, 5848, 5870, 5886, 5894, 5899, 5902, 5906, 5908, 5912, - 5919, 5965, 5985, 5992, 5999, 6050, 5566, 5566, 5566, 5566, 6069, 5566, 5566, 5566, 5566, 5578, 5574, 5566, - 5566, 5566, 5566, 5566, 5566, 5566, 5566, 4286, 5566, 6088, 6101, 6115, 6119, 6124, 6131, 6152, 6159, 6163, - 6172, 6179, 6184, 6187, 6193, 6201, 5566, 5580, 6206, 6210, 5578, 5574, 6219, 5299, 6222, 6227, 6232, 6236, - 6239, 6242, 6246, 6250, 6254, 6257, 6261, 6265, 6274, 6278, 6288, 6292, 6304, 6313, 6344, 6357, 6360, 6365, - 6368, 6402, 6406, 6410, 6416, 6427, 6431, 6440, 6444, 6483, 6535, 6555, 6559, 6571, 5299, 6612, 5299, 5635, - 5299, 6630, 6664, 6676, 6684, 6719, 6745, 6772, 6823, 6852, 6886, 6906, 6924, 6942, 6989, 7012, 7043, 7088, - 7112, 7136, 7139, 7143, 7160, 7187, 7207, 7237, 5566, 5566, 5574, 5566, 5574, 4286, 5566, 5566, 7257, 5566, - 5566, 5727, 5566, 4286, 5566, 5566, 5566, 5566, 5566, 5566, 7257, 5566, 5578, 5578, 5566, 5566, 5566, 7264, - 7271, 7278, 7294, 7307, 7323, 7327, 7332, 7338, 7343, 7348, 7357, 7363, 7368, 7373, 7380, 7385, 7391, 7396, - 7405, 7410, 7414, 7419, 7424, 7430, 7437, 4286, 4286, 5574, 7442, 7447, 7450, 5566, 5566, 5566, 5566, 5566, - 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5574, 5566, 5574, - 5566, 5566, 5566, 5566, 7452, 7457, 7462, 7473, 7478, 7483, 7488, 7493, 7498, 7502, 7506, 7510, 7513, 7516, - 7538, 7541, 7544, 7548, 7552, 7556, 7560, 7564, 7568, 7571, 7574, 7257, 7578, 7587, 7592, 7600, 7629, 7654, - 7694, 7698, 7702, 7711, 7736, 7756, 7767, 7772, 7777, 7782, 7802, 5566, 5566, 5566, 27071, 5574, 4286, 5578, - 5566, 5574, 5566, 5566, 27071, 4286, 7832, 7848, 7861, 7874, 5727, 7882, 7885, 7901, 7916, 7925, 7930, 7947, - 7953, 7960, 7965, 7968, 7972, 7977, 7981, 7984, 7987, 7991, 7996, 7999, 8004, 8008, 8012, 8015, 8020, 8024, - 8027, 8030, 8035, 8040, 8045, 8051, 8054, 8058, 8062, 8066, 8070, 7965, 8075, 8081, 8086, 8091, 8100, 8104, - 8106, 8128, 8143, 8178, 8195, 8207, 8213, 8223, 8227, 8234, 8237, 8242, 8258, 8266, 8270, 8281, 8289, 8311, - 8318, 8351, 5574, 8366, 8370, 8374, 8378, 8382, 8385, 8388, 8394, 8398, 8403, 8407, 8412, 8416, 8445, 8450, - 8455, 8460, 8463, 8465, 8467, 8470, 8473, 8478, 8481, 8485, 8487, 8490, 8493, 8497, 8500, 8502, 8507, 8517, - 8542, 8559, 8564, 8575, 8578, 8590, 8594, 8598, 8602, 8621, 8637, 8642, 8681, 8685, 8690, 8698, 8706, 8717, - 8725, 8731, 8759, 8783, 8796, 8812, 8815, 8833, 8844, 8854, 8857, 8865, 8867, 8872, 8104, 8872, 8874, 8879, - 8884, 8898, 8929, 8940, 8963, 8972, 8977, 8988, 8104, 8865, 8865, 8104, 7965, 7965, 8992, 8994, 8996, 9001, - 8996, 9003, 9014, 9018, 9022, 9027, 9032, 9037, 9042, 9050, 9058, 4286, 8706, 8865, 9063, 9068, 9079, 9084, - 8865, 9092, 9101, 9108, 9137, 9142, 9149, 9154, 9158, 9175, 9180, 9189, 8996, 9200, 9205, 9223, 9259, 9266, - 9275, 9285, 9290, 9298, 9306, 9349, 9372, 9386, 9389, 9392, 9411, 34415, 9438, 9445, 8872, 9467, 9522, 9528, - 9532, 9540, 9545, 8104, 9585, 9592, 9599, 9604, 8706, 5574, 9609, 9614, 9619, 9633, 9639, 9643, 9650, 9656, - 9664, 9668, 9672, 9683, 9690, 9696, 9701, 9709, 9717, 9727, 9754, 9758, 9763, 9798, 9822, 9831, 9882, 9886, - 9889, 9894, 9898, 9902, 9908, 9912, 9917, 9922, 9927, 9930, 10085, 10111, 10121, 10221, 10287, 10316, 10322, - 10329, 10334, 10341, 10359, 10362, 10379, 10385, 10391, 10411, 10421, 10433, 10437, 10440, 10449, 10453, 10457, - 10461, 10465, 5289, 10470, 10474, 10478, 10482, 10486, 10490, 10494, 10499, 10502, 10507, 10512, 10516, 10519, - 10524, 10529, 10532, 10537, 10542, 10547, 10552, 10558, 10561, 10566, 10571, 10577, 10582, 10585, 10589, 10610, - 10620, 10644, 5574, 10666, 10671, 10694, 10715, 10767, 10778, 10794, 10801, 10822, 10857, 10872, 10891, 10905, - 10910, 10919, 10928, 10953, 10967, 10980, 11001, 11012, 11023, 11030, 11044, 11050, 11058, 11062, 11090, 11099, - 11115, 11121, 11140, 11149, 34415, 11157, 11160, 11205, 11222, 11237, 11250, 11309, 11353, 11386, 11403, 11410, - 11427, 11447, 11458, 11460, 11464, 11468, 11474, 11491, 11495, 11505, 11511, 11529, 11541, 11545, 8992, 11549, - 11552, 8865, 11559, 11563, 8865, 11568, 11573, 11577, 11582, 11587, 8706, 11602, 11611, 11632, 11643, 11647, - 11652, 11657, 11661, 11665, 11670, 11675, 11679, 11683, 11688, 11693, 11698, 11703, 11707, 11712, 11717, 11721, - 11726, 11730, 11734, 11739, 11744, 11749, 11754, 11759, 11764, 11769, 11774, 11779, 11782, 11786, 11791, 11816, - 11822, 11826, 11831, 11845, 11850, 11855, 11860, 11872, 11888, 11902, 11913, 11915, 11920, 11949, 11957, 11965, - 11968, 11972, 5578, 11981, 11986, 11992, 11998, 12006, 12017, 12022, 12029, 12031, 12035, 12039, 12051, 12069, - 12098, 12109, 12114, 12138, 12146, 12150, 12156, 12174, 12211, 12225, 12238, 12250, 12256, 12261, 12266, 12272, - 7257, 12280, 12291, 12298, 12308, 12341, 12362, 12366, 12376, 12379, 12383, 12390, 12408, 12430, 12465, 12480, - 12484, 12488, 12493, 12497, 12502, 12506, 12511, 12516, 12521, 12527, 12531, 12538, 12543, 12548, 12553, 12559, - 12563, 12117, 12573, 12579, 12584, 12595, 12623, 12628, 12633, 12638, 12643, 12647, 12657, 12664, 12670, 12673, - 12683, 12697, 12765, 12770, 12805, 12819, 12828, 12843, 12855, 12859, 12863, 12868, 12873, 12876, 12885, 12891, - 12897, 12903, 12919, 12945, 12949, 12955, 8992, 12985, 13000, 13010, 13015, 5574, 13020, 13026, 13032, 13044, - 13074, 13111, 13147, 13156, 13173, 13211, 13246, 13251, 13255, 13270, 13292, 8027, 8027, 13299, 13308, 13315, - 13323, 13331, 13341, 13348, 13353, 13360, 13366, 13376, 13383, 13398, 13409, 11913, 13423, 13430, 13434, 13439, - 13450, 13469, 13534, 13541, 13561, 13577, 13585, 13595, 13601, 5566, 13606, 13622, 13629, 13636, 13642, 13646, - 13650, 13660, 13677, 13683, 13686, 13700, 13706, 13715, 13720, 13727, 13734, 13743, 13749, 13762, 13782, 13794, - 13801, 8706, 13808, 13819, 5574, 13826, 13854, 13863, 13886, 13902, 13906, 13911, 11913, 13919, 13932, 13937, - 13940, 13946, 13950, 13955, 13960, 13966, 13971, 8872, 13975, 13978, 13989, 13992, 14002, 14007, 14015, 14019, - 14032, 5727, 14048, 14054, 14061, 14068, 14071, 14075, 14088, 14095, 14101, 14110, 14115, 7930, 14120, 14127, - 7930, 8865, 14138, 14142, 14147, 14150, 14155, 14172, 14202, 14232, 14236, 14250, 14258, 14266, 14272, 14279, - 14285, 14289, 14294, 14298, 14304, 14313, 14322, 14327, 14330, 14340, 14346, 14351, 14360, 14363, 14368, 14377, - 14383, 14391, 14397, 14402, 14411, 14424, 14437, 14470, 14498, 14513, 14522, 14528, 14532, 14537, 14542, 14598, - 14612, 14625, 14633, 14650, 14659, 14665, 14703, 14725, 14733, 14742, 14752, 14762, 14766, 14778, 14788, 14793, - 14797, 14802, 14806, 14811, 14815, 14820, 14825, 14841, 14851, 14859, 14865, 14876, 14882, 14887, 14893, 14899, - 14906, 14912, 14916, 14920, 14929, 14936, 14948, 14956, 14965, 14974, 14987, 14996, 15004, 15049, 15066, 15074, - 15081, 15091, 15098, 15109, 15118, 15123, 15142, 15147, 15154, 15158, 15166, 15171, 15178, 15184, 15189, 15198, - 15205, 15211, 15216, 15226, 15233, 15241, 15249, 15255, 15265, 15274, 15284, 15296, 15299, 15313, 15325, 15330, - 15335, 15343, 15350, 15357, 15364, 15369, 15378, 15382, 15388, 15394, 15404, 15410, 15416, 15430, 15435, 15443, - 15456, 15503, 15517, 15521, 15528, 15542, 15564, 15589, 15628, 15640, 15650, 15655, 15662, 15727, 15732, 11913, - 8872, 15737, 8872, 15740, 15749, 15752, 15758, 15766, 15780, 15785, 15806, 15811, 15819, 15824, 15829, 8706, - 15835, 15845, 15851, 15857, 15860, 15865, 15868, 15895, 15901, 15914, 15919, 8994, 8872, 15923, 15934, 15939, - 15943, 15947, 8706, 15952, 15959, 15966, 15971, 15975, 15981, 15987, 15993, 16011, 16017, 16024, 16029, 16034, - 16038, 16043, 16047, 16051, 16059, 16067, 5574, 16072, 16084, 16098, 16103, 16119, 16125, 16131, 16135, 16139, - 16155, 16158, 16164, 16173, 16177, 16185, 16192, 16197, 16203, 16208, 16213, 5727, 16217, 16222, 16227, 16241, - 16253, 16283, 16287, 16292, 16298, 5574, 16303, 16312, 16318, 16326, 16332, 16335, 5578, 16338, 16346, 16353, - 16357, 16362, 8996, 16367, 16371, 16377, 16383, 16392, 16406, 16413, 16419, 16428, 16437, 16451, 16457, 16464, - 16468, 16472, 16489, 16496, 16500, 16507, 4286, 16516, 4286, 16522, 16538, 16541, 16548, 16552, 16567, 16586, - 16592, 16616, 16624, 16633, 16652, 16665, 16669, 16677, 16680, 16685, 16698, 16704, 16707, 16717, 16732, 16756, - 16764, 16788, 16797, 16802, 16812, 16816, 16834, 16846, 16849, 16864, 16871, 16883, 16890, 16896, 16902, 16907, - 16913, 16924, 16929, 16942, 16948, 16958, 16963, 16970, 16975, 16979, 16985, 16996, 17004, 17015, 17026, 17032, - 17038, 17053, 17061, 17066, 17072, 17079, 17087, 17105, 17117, 17124, 17135, 17139, 17145, 17152, 17156, 17161, - 17172, 17177, 17187, 17200, 17207, 17226, 17230, 17236, 17246, 17254, 17261, 17268, 17284, 17292, 17325, 17334, - 17341, 17347, 17350, 17361, 17386, 17419, 17430, 17433, 17443, 17451, 17465, 17472, 17482, 17489, 17505, 17511, - 17518, 17524, 17533, 17541, 17548, 17555, 17560, 8104, 8865, 8992, 17569, 17574, 8865, 17588, 17598, 17604, - 17611, 17633, 17654, 17685, 17719, 17741, 17745, 17749, 17759, 17773, 17777, 17781, 17789, 17795, 17799, 17809, - 17815, 17821, 17828, 17839, 17844, 17856, 17862, 17868, 17871, 17879, 17886, 17891, 17937, 17952, 17955, 17958, - 17961, 17967, 17970, 17980, 17987, 18013, 18015, 18024, 18027, 18033, 18039, 18053, 18058, 18064, 18067, 18077, - 18083, 18086, 18091, 18095, 18099, 18107, 18117, 18122, 18128, 18134, 18140, 18149, 18154, 18160, 18165, 18169, - 8872, 18178, 18188, 18194, 18202, 18208, 18213, 18218, 18223, 18242, 18247, 18262, 8865, 18270, 18274, 18293, - 18298, 18303, 18307, 18311, 18366, 18399, 18404, 18410, 18418, 18441, 18449, 18453, 18466, 18469, 18472, 8872, - 18478, 18492, 18507, 18530, 18538, 5574, 18543, 18548, 18556, 18560, 18588, 18604, 18608, 18623, 18625, 18631, - 18650, 18653, 18665, 18676, 18682, 18724, 18755, 18781, 18808, 18842, 18847, 18850, 18874, 18882, 18893, 11458, - 8865, 18899, 18911, 18915, 18919, 18923, 18929, 18934, 18939, 18946, 18949, 18955, 18960, 18972, 18975, 18999, - 19010, 19014, 19023, 19027, 19032, 19039, 19063, 19085, 19090, 19104, 19110, 19115, 19134, 11913, 19140, 8865, - 19142, 19149, 19154, 19159, 34415, 19165, 19174, 19191, 19200, 19215, 19233, 19239, 19248, 19255, 19260, 7965, - 19268, 19275, 19279, 19290, 5578, 19293, 19298, 19305, 19323, 19329, 19341, 19346, 19356, 19362, 19367, 19372, - 19379, 19387, 19391, 19394, 19398, 19410, 19420, 19427, 34415, 19432, 19452, 19456, 19460, 19483, 19487, 19501, - 19508, 19518, 19532, 19543, 19550, 19561, 19594, 19600, 19633, 19643, 19654, 19660, 19662, 19667, 19674, 19680, - 19685, 19694, 19699, 19703, 19714, 19718, 19723, 19738, 19743, 19752, 19765, 19772, 19781, 19789, 19793, 19804, - 19809, 19814, 5580, 19817, 19822, 19832, 19846, 19854, 19857, 19868, 19873, 19880, 19887, 19891, 19897, 19901, - 19916, 19924, 19929, 19933, 19936, 19952, 19960, 19969, 19979, 19985, 19994, 20002, 20007, 20022, 20027, 20036, - 20041, 20053, 20058, 20067, 20071, 20079, 20087, 8872, 20094, 20101, 20109, 8872, 20114, 20125, 20129, 20134, - 20141, 20148, 20155, 20157, 20161, 20166, 20177, 20196, 20209, 20217, 20225, 20233, 20236, 20240, 8865, 20249, - 20255, 20260, 20270, 20277, 20287, 20292, 20297, 20302, 20310, 20318, 20323, 20337, 20345, 20358, 20363, 20381, - 20388, 20391, 20397, 20404, 20411, 20431, 20440, 20456, 20462, 20487, 20498, 20503, 20509, 20512, 20532, 20555, - 20560, 20569, 20579, 20585, 20591, 20596, 20603, 20605, 20608, 20615, 20617, 20629, 20766, 8872, 20770, 20775, - 20780, 20783, 20787, 20792, 20799, 20806, 20810, 20814, 20818, 20860, 20867, 27071, 20880, 20900, 8872, 20915, - 20926, 20936, 20945, 20954, 20961, 20965, 20971, 20976, 20988, 20994, 21005, 21010, 21018, 21027, 21061, 21065, - 21070, 21078, 21083, 21088, 21092, 21103, 21113, 21126, 21132, 21139, 21154, 21170, 21184, 21192, 21197, 21202, - 21205, 21207, 21209, 21212, 21205, 21217, 21220, 21225, 21232, 21238, 21241, 21247, 21251, 21256, 21258, 21262, - 21266, 21271, 21275, 21301, 21311, 21316, 7257, 21320, 21325, 21331, 21336, 21344, 21349, 21356, 21362, 21368, - 21376, 21391, 21400, 21410, 21415, 21422, 21425, 21431, 21435, 21446, 21453, 21462, 21472, 21475, 21489, 21494, - 21503, 21511, 21517, 21524, 21530, 21534, 21546, 21553, 21558, 21565, 21589, 21598, 21612, 21615, 21628, 21634, - 21652, 21670, 21674, 21690, 21694, 21706, 21711, 21717, 21724, 21729, 21739, 21744, 21755, 21769, 21774, 21780, - 21784, 21787, 21794, 21799, 21805, 5566, 21811, 21813, 21818, 21824, 21829, 21838, 21842, 21848, 21853, 21859, - 21864, 21870, 21874, 21878, 21882, 21887, 21892, 21899, 21904, 21909, 5574, 21914, 21919, 21923, 21925, 21932, - 21938, 21949, 21954, 21959, 21963, 21968, 21975, 21985, 21989, 21998, 22003, 22012, 22017, 22021, 22026, 22030, - 22040, 22045, 22050, 22069, 22077, 22082, 22086, 22097, 22105, 22112, 22119, 22125, 22131, 22136, 22141, 22149, - 22154, 22159, 22161, 22171, 22173, 22177, 22184, 22187, 22194, 22200, 22206, 22210, 22215, 22225, 22233, 22238, - 22243, 22252, 22259, 22262, 22266, 22271, 22276, 22284, 22288, 22299, 22307, 22311, 22318, 22323, 22328, 22335, - 22340, 22345, 22350, 22355, 22364, 22373, 22384, 22389, 22394, 22399, 22406, 22413, 4286, 22419, 22424, 4286, - 22433, 22444, 22450, 22456, 22461, 22469, 22474, 22480, 22484, 22490, 22494, 22508, 22517, 22527, 22532, 22538, - 22542, 22547, 22551, 22560, 22566, 22572, 22578, 22585, 22592, 22598, 22605, 22609, 22614, 22619, 22624, 22629, - 22634, 22644, 22650, 22654, 22659, 22663, 22669, 22677, 22681, 22685, 5580, 22690, 22693, 22702, 9001, 11913, - 22710, 22717, 22723, 22731, 34503, 22737, 21998, 22740, 22747, 8872, 22751, 22757, 22761, 22765, 22777, 22788, - 22794, 22802, 22806, 22810, 22816, 22825, 22831, 22836, 22852, 22859, 22866, 22870, 5574, 22878, 22884, 22890, - 22893, 22898, 22905, 22911, 22171, 22917, 22927, 22940, 22945, 8872, 22951, 8872, 22955, 22964, 21489, 22981, - 20615, 8865, 22988, 23002, 23008, 23014, 23018, 23022, 23028, 8865, 23033, 23037, 23047, 8706, 23087, 23129, - 23147, 11913, 23152, 23159, 23171, 23176, 23182, 23195, 23199, 23204, 23209, 23213, 23217, 8865, 8872, 23222, - 23228, 8706, 23231, 23233, 23242, 23265, 23272, 23284, 23297, 23315, 23320, 23327, 8104, 23334, 23346, 23353, - 8872, 23364, 23369, 23374, 23379, 23381, 23385, 23418, 23424, 23427, 23431, 23458, 23463, 23474, 23484, 23487, - 23491, 23495, 23501, 23506, 23510, 23515, 23521, 23532, 23546, 23550, 23555, 23567, 23577, 23583, 23589, 23594, - 8706, 23610, 8865, 23614, 23620, 23627, 23633, 23231, 8992, 23642, 8872, 23655, 23662, 23672, 23677, 23694, - 23701, 23713, 23718, 23731, 23735, 8992, 23746, 23761, 23763, 23770, 23772, 34503, 23776, 23781, 23788, 23792, - 23796, 23804, 23807, 23821, 23825, 23835, 23840, 23846, 23850, 23854, 23861, 23866, 23882, 23887, 23893, 23903, - 22159, 23940, 23946, 23954, 23963, 23972, 23983, 23988, 23997, 24001, 24008, 24014, 8725, 24021, 24026, 24031, - 24040, 24048, 24052, 24055, 24060, 24063, 24067, 24074, 24086, 24099, 24104, 24108, 24111, 24124, 8872, 11458, - 24132, 24143, 7965, 24146, 24149, 24170, 24176, 24180, 24190, 24196, 24200, 24207, 24216, 24228, 24260, 24284, - 24296, 24304, 24308, 24314, 24323, 24361, 24368, 24375, 24380, 24407, 24413, 24422, 24426, 24431, 24436, 24444, - 24448, 24457, 24461, 24468, 24475, 24478, 24481, 24489, 24497, 24500, 24505, 24510, 24516, 24527, 24532, 24546, - 24551, 24555, 24567, 24589, 24605, 24611, 24614, 24628, 24635, 24639, 24644, 24650, 24658, 24662, 24670, 8706, - 24673, 24677, 24682, 24685, 24695, 24700, 24704, 24709, 5727, 24718, 24736, 24744, 24749, 24756, 24758, 24764, - 24769, 24773, 24790, 24817, 24835, 24844, 24866, 24911, 24965, 25013, 7930, 25037, 25045, 25052, 25064, 25080, - 25095, 25100, 25111, 25120, 25134, 25152, 25174, 25185, 25198, 25208, 25214, 25225, 25229, 25242, 24195, 25265, - 25271, 25281, 25287, 25293, 25263, 25308, 25314, 25318, 25322, 25326, 25331, 25337, 25342, 25357, 25368, 11458, - 7930, 23147, 25378, 8854, 11458, 25387, 25393, 25399, 25302, 25413, 25434, 25448, 25452, 25466, 25482, 25488, - 25495, 25502, 25507, 25516, 25522, 25525, 25529, 25532, 25536, 25541, 25547, 25553, 25561, 25564, 25420, 8027, - 25579, 4286, 25584, 25588, 25568, 25602, 25610, 25616, 25621, 25641, 25644, 25647, 25656, 25662, 25672, 25680, - 25686, 25695, 25702, 25706, 25713, 25722, 25729, 25734, 7257, 25738, 25746, 25751, 25756, 25768, 25773, 25778, - 25787, 25800, 25808, 25818, 25830, 25834, 25859, 25869, 25883, 25905, 25909, 25916, 25934, 25940, 25953, 25961, - 25976, 25991, 26003, 26019, 26023, 26031, 26038, 26042, 26047, 26056, 26063, 26068, 26076, 26080, 26088, 26102, - 26115, 26134, 26140, 26148, 26152, 26162, 26167, 5299, 5299, 5299, 5635, 5299, 26191, 26191, 26195, 26200, - 26214, 26221, 26229, 5635, 5635, 5299, 26238, 5574, 4286, 5574, 5578, 26243, 5574, 5580, 26250, 26255, 26266, - 26270, 26277, 26281, 26284, 26293, 26297, 26303, 26309, 26313, 26317, 26321, 26327, 26331, 26336, 26341, 26348, - 26356, 26363, 26369, 26381, 26389, 26395, 26405, 26452, 26476, 26498, 26502, 26518, 26523, 26527, 26538, 26545, - 26558, 26561, 26582, 26589, 26594, 6236, 26599, 26602, 26623, 26638, 26642, 26650, 26656, 26667, 26672, 26691, - 26701, 26724, 26730, 26735, 26745, 26751, 26758, 26778, 26785, 26791, 26797, 26803, 26814, 26820, 26826, 26831, - 26841, 26853, 26860, 26864, 26879, 26889, 26893, 26899, 5727, 26912, 26928, 26948, 26953, 26957, 26961, 11797, - 26967, 26998, 27004, 27011, 27013, 26994, 27027, 27031, 27021, 27035, 27041, 27044, 27048, 27051, 27055, 27059, - 27065, 27038, 27079, 27088, 27097, 27121, 27128, 27132, 27140, 27144, 27148, 27153, 27159, 27172, 27179, 27183, - 27192, 27199, 27207, 34417, 27211, 27215, 27218, 27229, 27245, 27250, 27270, 27279, 27288, 27296, 27306, 27310, - 27331, 27351, 27364, 27369, 27373, 27382, 27397, 27402, 27413, 27417, 27422, 27434, 27437, 27453, 27466, 27516, - 27528, 27536, 27545, 27581, 27586, 27589, 27595, 27598, 27604, 27611, 27618, 27627, 27665, 27672, 27677, 27704, - 27734, 27748, 27755, 27770, 27889, 27925, 27935, 27947, 27956, 27973, 27979, 27988, 27996, 28003, 28013, 28016, - 28020, 28031, 28054, 28063, 28071, 28083, 28097, 28105, 28108, 28113, 28127, 28140, 28160, 28173, 28186, 28213, - 28218, 28252, 28281, 28295, 28298, 28302, 28308, 28316, 28319, 28328, 28334, 27004, 28351, 28410, 28431, 28451, - 26701, 28520, 28530, 28545, 28552, 28562, 28584, 28602, 28630, 28663, 28668, 28683, 28700, 26961, 28759, 28765, - 28765, 28328, 28774, 28808, 28328, 28822, 28833, 28836, 28851, 28871, 28918, 28995, 29052, 29068, 28334, 29078, - 29164, 29164, 29172, 26961, 29180, 29217, 29230, 29272, 29275, 29289, 29337, 29473, 29496, 29523, 29548, 29613, - 29705, 29734, 29871, 29982, 30002, 30185, 30205, 30250, 30474, 30500, 30528, 30557, 30598, 30615, 30782, 30800, - 30827, 30910, 30931, 30938, 31020, 31216, 31274, 31387, 31487, 31513, 31532, 31630, 31664, 31709, 31738, 31753, - 31758, 31763, 31785, 31817, 31853, 31927, 31938, 31984, 32340, 32496, 32532, 32547, 28833, 32556, 32748, 32781, - 32809, 32862, 32887, 32921, 32936, 33045, 33079, 33092, 33104, 33109, 33218, 31274, 33225, 33240, 33248, 33279, - 33281, 33375, 33478, 33484, 33501, 33563, 33630, 33670, 33696, 33719, 33773, 33781, 33788, 33814, 33833, 33858, - 33866, 33906, 33924, 33933, 33956, 33961, 34004, 34021, 34047, 34059, 34075, 34091, 34101, 34108, 26961, 28328, - 34122, 34133, 34142, 34147, 34160, 34185, 34195, 34211, 34214, 34249, 34253, 34258, 34296, 34325, 34330, 34333, - 34336, 34341, 34348, 28663, 34353, 34388, 27071, 34420, 19603, 34444, 34450, 34454, 34456, 34460, 34469, 34488, - 34499, 34506, 34454, 34526, 34535, 34544 - ], - [0, 6870, 1362, 1437, 1448, 1676, 37818, 2754, 2757, 3427, 6530, 37821, 37823], - [0, 1596, 2759, 2899, 3202, 16112, 4039, 4193, 4255], - [0, 5592, 1448, 37826, 15514, 6956, 5122], - [1, 2343, 25603], - [0, 25604, 25606, 25608, 4139], - [0, 2202, 37833, 37834, 1695], - "@keyv/serialize", - [0, 2133, 3697, 4387, 4389], - "keep", - [0, 4731, 27, 4738, 5038, 1389], - "timekeeper", - [1, 2343, 25612], - "key-value", - [0, 25613, 25614, 25615, 2487], - [0, 20689, 37845, 37846, 4718, 37844, 37841, 37843], - [0, 18225, 1082, 2832, 2899, 4193, 1177, 37853, 1330, 1787, 1525, 91, 4874, 37852, 37850, 1937, 17585, 37856], - [0, 28860, 28861, 3354, 37858, 37859, 20707, 1641, 37860, 37861, 37862, 26666, 21604], - [1, 2343, 25617], - [0, 25618, 25619, 25620, 2537], - [0, 4113], - [ - 0, 1175, 1195, 1264, 28713, 1387, 37868, 37869, 35573, 1503, 1596, 1610, 1177, 37870, 2759, 2765, 1192, 2774, - 7060, 3363, 3400, 3725, 91, 37871, 2282, 2924 - ], - [ - 0, 37873, 6523, 676, 6671, 1781, 24586, 37874, 37875, 37880, 37882, 20398, 20400, 4734, 4735, 353, 8535, 37883, - 22180, 6270, 37884, 37885, 37887, 1644, 57, 7119 - ], - [1, 2343, 25622], - [0, 25626, 25630, 25637, 4139], - "escalade", - "pg-connection-string", - "tarn", - [0, 4113, 4736], - [3, 5536, 10], - [2, 25627, 4945], - [2, 11836, 4246], - [0, 1596], - "-in-order", - [2, 1436, 25631], - "oracledb", - "pg-query-stream", - "tedious", - "toxiproxy-node-client", - [0, 6523, 1781], - "postgres", - "cockroachdb", - [2, 3766, 9381], - [1, 2343, 25642], - [0, 25643, 15925, 2514, 2537], - [0, 2607, 2812, 37899], - [1, 2343, 25645], - [0, 0, 10710, 25646, 2537], - [0, 6523, 4736], - [1, 2343, 25653], - "smol-toml", - "summary", - [3, 8555, 11], - [2, 25650, 1851], - [2, 4764, 25651], - [0, 0, 25654, 25655, 2537], - [0, 1192, 4753, 37908, 1177, 3363, 37909, 1894, 2188, 3400, 1926, 16638, 1895, 1955], - [0, 12616, 965, 6523, 57, 5284, 37911, 37912], - [1, 2343, 25657], - [0, 0, 0, 25659, 2537], - "analyze", - [0, 4731, 6662], - "dead code", - "entropy", - [1, 2343, 25665], - "maintenance", - "members", - [0, 25666, 25668, 25670, 2537], - [ - 0, 3157, 1144, 1177, 2205, 2203, 1894, 2185, 4507, 3170, 1595, 19595, 3505, 2191, 1953, 29490, 1920, 4523, - 25803, 1958, 1982, 13789, 1895, 24166, 32525, 1955, 7681, 19344, 1011, 15290, 22937, 19492 - ], - "unreferenced", - [0, 3377, 1166, 2020, 2675, 1680, 13786, 2990, 5601, 192, 15600, 8778, 3390, 3708, 5467, 17312], - "unresolved", - [ - 0, 13326, 200, 1906, 19347, 19350, 19353, 1501, 19269, 590, 671, 9654, 2272, 19270, 1177, 2649, 19271, 4255, - 15717, 4354, 16790, 19273, 18443, 2446, 2869, 5284, 91 - ], - "tldts", - [1, 2343, 25673], - [0, 0, 25674, 25676, 2537], - [0, 10780, 1854, 37928, 2899], - "lodash.sortby", - [0, 4739, 6523], - "explorer", - "opera", - "samsung-internet", - [1, 2343, 25681], - [0, 25683, 25684, 25685, 2399], - "uc-browser", - [0, 5663], - [0, 48, 53, 37936, 83, 87, 37937, 1198, 37940, 37941, 1389, 1177, 2765, 2835, 3421, 37945], - [0, 1108, 6961, 6607, 3656], - [1, 2343, 25690], - "stream-co", - [2, 25687, 11532], - [2, 25521, 25692], - [0, 25691, 25693, 25694, 2537], - [0, 1525, 7606], - "praesentium-accusamus-maiores-autem", - [0, 3421, 1676, 2899, 1177, 1596, 4535, 1389], - [0, 20215, 4741, 2574, 36796, 6847, 1965, 1867, 10368, 7131, 1155, 1936, 14419, 37953], - [1, 2343, 25697], - "delegates", - [0, 0, 25698, 25701, 2537], - [0, 37958, 1091, 3539, 4094, 4733], - "http-assert", - [2, 17007, 23905], - [0, 37960, 37963, 37968, 37971, 37972, 6649, 37973, 2218], - [1, 2343, 25703], - [0, 0, 9264, 25704, 2399], - [0, 2051, 1698, 14690, 15767, 3048, 4552], - [3, 21482, 15], - [1, 2343, 25708], - "gen-", - [0, 0, 25711, 25712, 2523], - "esm-wrapper", - [2, 25707, 25709], - [ - 0, 8648, 4856, 5245, 37983, 6494, 37984, 4865, 13204, 6503, 4874, 37987, 4891, 9241, 1009, 1011, 1429, 1610, - 1693, 1177, 1942, 2026, 28930, 2070, 2832, 2899, 3257, 3339, 3421, 4230, 4232, 4469, 91, 4577, 2924, 4677, 4729, - 37988 - ], - [0, 200, 6876, 7201, 28770, 4166, 21000, 592, 37991, 7009, 6621, 13005, 35621, 4744], - [1, 2343, 25714], - [0, 0, 25715, 25719, 4139], - [ - 0, 1192, 4484, 1177, 4042, 1894, 442, 1193, 2064, 91, 53, 5087, 4874, 2797, 87, 4523, 5583, 6373, 1895, 10817, - 37998, 5889 - ], - "-body", - [2, 4860, 25716], - "co-body", - [0, 6775, 57, 5374], - "-router", - "__router", - [1, 2343, 25724], - "urlencoded", - [0, 25725, 25726, 25727, 2399], - [0, 2070, 1139], - [0, 1317, 15052, 2768], - [0, 4745, 1781, 38007, 38008], - "copy-to", - [1, 2343, 25730], - [0, 25731, 25733, 20172, 2523], - [0, 1495, 25623, 12929, 4290, 26574, 4748], - "bodyParser", - [ - 0, 68, 92, 4856, 6503, 4874, 1009, 25912, 1414, 1429, 1437, 25796, 1610, 1615, 1177, 1955, 2321, 29551, 2899, - 4039, 91, 4707, 38017 - ], - [1, 2343, 25735], - [0, 0, 25736, 25737, 2537], - [0, 68, 92, 4856, 6503, 4874, 1009, 1011, 1414, 1429, 1610, 1177, 2321, 2899, 3758, 4039, 4146, 4261, 91], - [0, 7233, 57, 4747, 1523, 200, 7119, 5675, 7058, 7233], - [1, 2343, 25739], - [0, 25740, 25741, 2514, 2537], - [ - 0, 38035, 1282, 1413, 1420, 1437, 25872, 1525, 38036, 1676, 19400, 1687, 2195, 2714, 2731, 10911, 2975, 16450, - 3181, 3188, 3309, 640, 3434, 28142, 3917, 38037, 705, 38040, 4039, 38041, 4135, 4296, 4390, 4393, 4572, 25898 - ], - [ - 0, 1175, 1178, 1193, 1195, 14220, 1255, 1267, 38044, 38047, 1268, 1272, 1291, 1177, 38050, 18229, 38052, 1922, - 38055, 1935, 38058, 1959, 2126, 2323, 2338, 2464, 2479, 2541, 2544, 1192, 2843, 3211, 1241, 2924 - ], - "humanize-", - [2, 25742, 6988], - "-counter", - [2, 22255, 25744], - [1, 2343, 25747], - [0, 0, 0, 25750, 4139], - "koa-compress", - [3, 2946, 9], - [0, 4749, 4752, 6435, 4166, 3378, 34652], - [1, 2343, 25752], - [0, 25753, 25754, 25755, 2443], - [0, 13581, 27999], - [0, 1329], - [0, 4560, 2056, 3101, 12666, 2090], - [1, 2343, 25759], - "mounting", - "@drftgyhuji7npm/repellendus-eum-et-itaque", - [0, 25760, 25761, 25767, 2523], - [ - 0, 38073, 38076, 38077, 38078, 38080, 1144, 1437, 1525, 1676, 2020, 38082, 2205, 38083, 20786, 3021, 38084, - 38086, 4135, 4207, 4558, 38088 - ], - [ - 0, 5245, 5139, 4874, 5254, 24719, 1414, 1597, 1177, 38092, 2151, 1776, 1894, 3708, 4039, 4193, 38093, 4294, 91, - 21328, 21329 - ], - [2, 29234, 32235, 1524], - "@ladjs/env", - [3, 25689, 31], - "sint-dolorem", - "@enact/core", - [0, 5001, 3304, 6147, 4990, 200, 8632, 4989, 8623, 1179, 8635, 1896], - [1, 2343, 25769], - [0, 25770, 25772, 25767, 2487], - [0, 1437, 1676, 2020, 4135, 3183, 3021, 22776, 4183, 4425, 2845, 38086, 2960, 38101, 27168, 5139, 38077], - "koa-send", - [ - 0, 1797, 1776, 4193, 1984, 1597, 2720, 1894, 4507, 9741, 91, 21329, 5245, 6513, 5254, 21328, 24719, 7892, 38073, - 23452, 38078, 8818, 4754, 7677, 3708 - ], - [1, 2343, 25776], - "sendfile", - "@envelop/core", - [0, 0, 8134, 25777, 2537], - [0, 4757, 38108, 27631, 200, 3741, 2649, 6847, 8618, 4938, 38109, 1644, 38111], - [1, 2343, 25779], - [0, 25783, 25784, 25785, 2443], - "is-warlock", - [2, 3341, 25780], - "reds", - [ - 0, 3157, 3445, 1437, 4761, 1209, 2089, 25294, 38117, 38118, 23878, 38121, 38122, 1543, 1615, 38123, 25555, 9478, - 38080, 15826, 38126, 38073, 38127, 27168, 4562, 38131, 4754 - ], - [0, 1414, 1906, 3297, 4193, 38092, 2203, 1596, 38133], - [0, 13326, 200, 6400, 5001, 3304, 6147, 5122, 4990, 8632, 2873, 8635, 1179, 8623, 1896, 8310], - "webOS", - [1, 2343, 25788], - [0, 0, 25795, 25799, 2537], - "bossy", - [3, 23453, 15], - [2, 25790, 5592], - [2, 9146, 5592], - "find-rc", - "will-call", - [0, 38139, 1104, 1166, 1437, 1474, 1511, 2929, 27127, 3527, 4481, 1906], - "cpr", - "lab-event-reporter", - "@ionic/cli", - [0, 1473, 7208, 1512, 7009, 7201, 200, 1871, 1111, 590, 592, 6621, 6983, 4166, 4744, 3073, 6807, 6876, 2585], - [1, 2343, 25801], - [0, 25805, 3293, 25807, 2487], - [2, 29611, 5457, 1805], - [2, 2102, 17239], - [2, 25806, 553], - [0, 1525, 2720], - "@envelop/", - [0, 4760, 5592, 36, 5995], - [1, 2343, 25811], - [2, 556, 1098], - "md-to-pdf", - [0, 25812, 25815, 25817, 2537], - [0, 3157, 1437, 1471, 4726, 1109, 4294, 1110, 4290, 38150], - "semver-", - "semver-regex", - [0, 1906, 2899], - "latest", - [0, 13326, 200, 8635, 4758, 38152, 38153, 5403, 6458, 1111], - [1, 2343, 25820], - [2, 25829, 6811], - [0, 15916, 25827, 25828, 2523], - "autodoc", - "deft", - [2, 2767, 1149], - "race", - "race.js", - [2, 4284, 176], - [0, 4170, 4135, 2899], - [0, 38160, 4762, 38161, 38162, 38163, 970, 10770, 11154], - [3, 24329, 21], - [1, 2343, 25831], - [0, 0, 0, 25832, 2443], - [0, 91, 2844, 7020, 998, 6591], - [2, 556, 25877], - [1, 2343, 25839], - "@mapbox/", - "cript-tags", - [2, 1967, 25836], - [2, 25835, 25837], - [0, 25845, 25847, 25856, 2487], - "bundlemon", - [3, 16694, 16], - "urner", - [2, 25841, 25842], - "git-rev-sync", - [0, 1170, 2026, 3509, 4763], - "happen", - [ - 0, 7804, 4856, 9417, 7806, 38176, 6494, 38177, 6503, 38179, 1364, 1429, 1431, 1527, 1536, 1575, 1652, 1177, - 38182, 1161, 2899, 3237, 3378, 1894, 4257, 4474, 91 - ], - "karma-expect", - [3, 2066, 9], - "leafdoc", - "prosthetic-hand", - "git-version", - [2, 4049, 25852], - "ontent-classifier", - "gis", - [0, 4763, 2026, 5592, 8800, 38185, 5995], - [2, 8, 25858], - [3, 1008, 21, 5], - [1, 2343, 25860], - [0, 25861, 25864, 25865, 2399], - [0, 1282, 1362, 1676, 34226, 2685, 2832, 1209, 3171, 3242, 705, 4454, 4729], - [2, 25857, 2324], - [2, 25867, 6], - [ - 0, 1173, 1178, 1255, 1264, 1364, 1575, 1700, 1177, 2026, 2323, 2338, 2384, 29396, 2472, 2510, 2541, 2899, 3237, - 3253, 6596, 4019 - ], - [ - 0, 1973, 6533, 5472, 21972, 4386, 10659, 37125, 29727, 1388, 1936, 12075, 965, 1623, 5284, 11857, 6662, 26196, - 38192 - ], - "numbers", - [3, 19535, 16], - "ng-packagr", - [1, 2343, 25870], - [0, 0, 25876, 2514, 2537], - "aproba", - "cmd-shim", - "p-reduce", - "byte-size", - "write-pkg", - [ - 0, 28069, 30286, 38197, 23689, 4874, 32440, 1362, 26739, 2780, 2784, 1192, 2899, 3210, 2765, 4232, 2766, 24652, - 4094, 4376, 4484, 1984 - ], - "examples", - "wide-align", - "has-unicode", - "p-waterfall", - [2, 2977, 7318], - "@npmtea2024/quasi-nisi-doloremque-fugit", - [1, 2343, 25889], - "p-map-series", - "blocking", - "set-blocking", - "@lerna/create", - [2, 2977, 20001], - [0, 25890, 25895, 25896, 4139], - [ - 0, 38202, 6870, 1389, 21146, 38204, 1512, 1525, 1536, 1573, 1676, 2026, 38207, 12783, 38209, 12785, 2590, 2600, - 2659, 12788, 38210, 12789, 1209, 3456, 3470, 38212, 4165, 38213, 17011, 4339, 38215, 20496, 4650, 4652, 1695, - 4746, 38217 - ], - "read-cmd-shim", - [2, 3614, 16830], - [2, 21772, 18709], - "strong-", - [0, 1087, 38221, 38222, 2899, 3524, 4389, 4431, 38224], - [0, 4770, 5472, 1388, 2907, 2899, 12826], - [3, 4588, 21], - [2, 25897, 4059], - "-bump", - [2, 4945, 25899], - [2, 13984, 25900], - "-rest", - [2, 24089, 25902], - [2, 9768, 25903], - [1, 2343, 25906], - [0, 25907, 6736, 25908, 2523], - [0, 666, 672, 677, 9688, 1710, 4135, 4459, 4484], - [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 9627, 9628, 9648, 9659], - [1, 2343, 25914], - [2, 1583, 20499], - "errno", - [2, 15086, 1179], - "jest-codemods", - [0, 25915, 6736, 6767, 2487], - [0, 1437, 4484, 677, 4135, 2203, 666, 17310, 1012, 9688, 19254, 12123], - [1, 2343, 25918], - "benny", - [0, 25932, 6736, 25933, 2537], - "less-port", - [2, 10784, 25919], - "emplate-tag", - [2, 2642, 25921], - "jit-grunt", - [3, 1165, 10], - [2, 21897, 25924], - "mocha-te", - "amcity-reporter", - [2, 25926, 25927], - "phin", - "read-glob", - "@ptkhanh94npm/iusto-libero-aperiam", - [0, 4484, 677, 4135, 2798, 3181, 666, 3527, 8734, 2797, 4748, 8752, 24759, 8762, 2686, 9688], - [0, 9621, 9622, 8174, 9623, 9624, 9625, 9626, 38247, 9628, 9659], - [1, 2343, 25935], - [0, 25937, 25938, 25939, 34352], - [2, 21897, 2070], - [0, 4484, 677, 4135, 666, 672, 4771, 9688], - [0, 3420, 4270], - [0, 9622, 8174, 9623, 38255, 9627, 9628, 9648, 9659], - [1, 2343, 25941], - [0, 25945, 25949, 25952, 2443], - "abstract-l", - "evel", - [2, 25942, 25943], - [0, 30508, 30509, 4484], - "browser-level", - "-level", - [2, 128, 25947], - [0, 34030, 26312, 10846, 4426], - "@voxpelli/tsconfig", - [2, 12774, 3541], - [0, 7522, 89, 7531, 7535, 7521, 7597, 7518, 8424, 8432, 7528, 10442], - [1, 2343, 25955], - "leveldb", - [0, 25956, 25957, 25958, 2443], - [0, 38264, 3286, 89, 3824, 38265, 4125, 38266], - [0, 4874, 4880, 4883, 1177, 4828, 3561, 4383, 91], - [0, 12589, 1616, 33456, 12589, 5472, 20500, 33459, 1237, 33462, 33464, 12590, 33465, 27666, 11996], - [2, 25944, 2971], - "napi-macros", - [1, 2343, 25962], - [0, 25973, 0, 25975, 2537], - "async-each", - "du", - "cat-iterator", - [2, 1332, 25965], - [2, 2970, 25966], - "mkfiletree", - [2, 15164, 18490], - [3, 25969, 13], - "ross", - [2, 25970, 25971], - [0, 1639, 3744, 97, 7931, 7932, 7910], - "readfiletree", - [0, 89, 5128, 9267, 1832], - [1, 2343, 25977], - [0, 25978, 10298, 25979, 2443], - [0, 16053, 16056, 38278], - [0, 5284, 1776, 1644, 1746, 1745], - "-leveldown", - [2, 14834, 25980], - "level-", - "level-errors", - [2, 7253, 14922], - [2, 25982, 25984], - "supports", - [2, 25982, 25986], - "queue-", - "microtask", - [2, 25988, 25989], - [1, 2343, 25998], - "airtap-sauce", - "encoding-", - [2, 25993, 2971], - "memdown", - [3, 12809, 12], - [2, 4182, 5614], - [0, 25999, 26001, 26002, 2537], - [0, 97, 5663], - "trickle", - [0, 5087, 1192], - [0, 5284, 4967, 89, 6081], - [1, 2343, 26004], - [0, 26005, 26016, 26018, 2537], - [0, 97, 38293, 3744, 3847, 4484], - "levenshtein", - [2, 2068, 26006], - "ld", - "levdist", - [2, 26006, 10699], - [3, 26010, 12], - "-distance", - [2, 6109, 26012], - [2, 26011, 26013], - "talisman", - [ - 0, 5228, 14249, 5700, 8129, 20202, 38298, 20212, 602, 5583, 811, 963, 966, 968, 38299, 972, 974, 5087, 5090, - 4880, 1009, 1011, 7913, 38302, 38304, 1397, 1597, 1610, 1651, 1177, 4916, 1959, 2126, 38307, 38309, 11853, - 19227, 3400, 3698, 9054, 89, 3824, 3847, 3857, 3904, 4146, 4261, 91 - ], - "distance", - [0, 38313, 89, 15774, 38316, 38317, 5399, 1631, 32039, 38319, 7320, 38320, 32040, 38322], - [1, 2343, 26021], - "comparison", - [0, 21012, 0, 26022, 34352], - [ - 0, 6653, 7320, 10039, 24832, 1623, 13006, 38327, 6847, 5284, 676, 38328, 38329, 29002, 24353, 8112, 3561, 6425, - 38330, 18252, 1631, 3586, 38332, 4453, 38333 - ], - [1, 2343, 26027], - "careful-", - "binary-", - [2, 26025, 19101], - [0, 26028, 26029, 26030, 34352], - [0, 2115, 2121, 2127, 1110, 28827, 2856, 4507, 26907], - [0, 2180, 5476, 5478, 2189, 2198, 31852, 91], - [0, 2313, 1383, 614, 202, 1388, 5995, 4967, 2340, 2350], - [1, 2343, 26033], - "country-codes-flags-phone-codes", - [0, 0, 0, 26034, 4139], - [0, 1671, 671, 3315, 17626, 6869, 6671, 3319, 3325, 3362, 6829, 3384], - "just-safe-set", - "ock-registry", - [2, 9494, 26036], - [1, 2343, 26039], - [0, 26040, 26041, 26002, 2523], - [ - 0, 53, 31689, 97, 5663, 4793, 4800, 4838, 4928, 4786, 4944, 4954, 4968, 362, 4972, 24723, 4981, 10895, 4982, - 11518, 841, 7812, 24370, 4985, 1030, 4992, 1165, 1195, 29040, 30521, 1393, 1437, 1525, 1593, 1628, 1630, 1759, - 1763, 2151, 2070, 2220, 4995, 2222, 2651, 2843, 2867, 1209, 3177, 3220, 4996, 3310, 3445, 3561, 3579, 3584, - 3613, 3618, 30274, 1894, 3742, 15033, 3816, 3878, 4079, 13834, 4164, 4167, 4307, 5000, 4409, 5002, 1002, 1983, - 29141, 2924, 4676, 4681, 13152 - ], - [0, 29536, 27134, 4864, 4870, 5009, 5542, 15600, 33768, 11944, 3144, 3244, 3758, 4039], - [1, 2343, 26043], - [0, 6203, 26045, 26046, 2523], - "gitfund", - [ - 0, 549, 811, 8850, 816, 6373, 4863, 5087, 4880, 1009, 1011, 8158, 1584, 1843, 1177, 1895, 1938, 1955, 1959, - 1192, 2780, 2832, 3421, 1894, 89, 3824, 4039, 4042, 4052, 8849, 8853, 4076, 4079, 4230, 4468, 4469, 4474, 4484, - 4508, 2924, 4677, 4681, 555, 560 - ], - [0, 24456, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], - [1, 2343, 26048], - [0, 6203, 26054, 26055, 2537], - "crlf", - [3, 2982, 15], - [2, 6774, 16609], - [2, 26050, 26051], - "renamer", - [ - 0, 53, 87, 92, 8862, 5087, 4874, 1009, 1011, 6834, 6840, 6873, 1031, 11018, 13072, 1593, 1610, 1177, 1895, 1938, - 6902, 1988, 1192, 2780, 1894, 4039, 4042, 4045, 4052, 4076, 4079, 6904, 4468, 4484, 4508, 91, 188, 555 - ], - [0, 188, 8588, 6931, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], - [1, 2343, 26058], - [2, 33018, 188], - [0, 6203, 26061, 26062, 4139], - "ged-respawn", - [2, 7210, 26059], - [ - 0, 53, 87, 92, 4856, 5087, 6503, 4874, 1009, 1011, 6834, 6840, 6993, 6873, 1031, 11018, 13072, 1429, 1610, 1177, - 1895, 1938, 6902, 1988, 3400, 1894, 4039, 4042, 4045, 4052, 4076, 4079, 6904, 7006, 4484, 4508, 91, 188, 555, - 5010 - ], - [0, 188, 8588, 6931, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841, 12075, 1623, 4380], - [1, 2343, 26064], - [0, 26065, 26066, 26067, 2523], - [0, 12396, 23289, 23249, 3493, 12449, 15632], - [0, 9363, 4874, 1414, 31147, 1894, 3985, 3998, 18071, 4505, 4507, 91, 18002, 1906], - [0, 23266, 2587, 23267, 614, 6435, 1936, 1644, 15278], - [1, 2343, 26069], - [0, 0, 26071, 26075, 2537], - "cname-prefix", - [0, 1177, 2899, 3421, 4193], - "autolink", - "hashtag", - "mention", - [0, 4264, 15457, 15482, 13499, 15483, 5995], - [1, 2343, 26077], - [0, 0, 0, 26078, 2537], - [0, 17356, 17362, 17364, 17365, 17384, 17397, 17423, 17426, 1745, 1783], - "pidtree", - [1, 2343, 26083], - "consolemock", - "sonner", - [0, 26084, 26085, 26086, 2487], - [0, 24337, 24344, 18220, 1676, 24345, 2714, 2072, 4238, 4431, 4484, 4753], - [ - 0, 8656, 8660, 6061, 6063, 5245, 24352, 29105, 5087, 4874, 28177, 24358, 18435, 20290, 1177, 1192, 1894, 4131, - 4468, 91 - ], - [0, 12296, 12295, 200, 5131, 1896, 24364, 970], - "@samverschueren/stream-to-observable", - [1, 2343, 26089], - [0, 26100, 0, 26101, 2523], - "is-observable", - "-silent-renderer", - [2, 2991, 26091], - "listr-", - [2, 9787, 3902], - [2, 26093, 26094], - "verb", - "ose-renderer", - [2, 26096, 26097], - [2, 26093, 26098], - [0, 12396, 21300, 32567, 2586, 21308, 12447, 12449], - [0, 2587, 1936, 21308, 26916, 1783, 18108, 26564, 1932, 3958, 32462, 3984, 21306, 4549], - [1, 2343, 26103], - [0, 26105, 26106, 26110, 2523], - "@keyv/compress-brotli", - [0, 2564, 4351], - [0, 1166, 1503, 91, 1906], - [3, 175, 23], - [2, 26109, 16518], - [3, 26104, 15], - [0, 163, 7009, 22316, 200, 13735, 4354, 1111, 1106, 7201], - "@lit/reactive-element", - "@lit", - "-labs/ssr-dom-shim", - [2, 26112, 26113], - [1, 2343, 26125], - "@lit-labs/", - [2, 26116, 5472], - "@lit-", - "/scripts", - [2, 6943, 26119], - [2, 26118, 26120], - [2, 10704, 1283], - "@keyv/memcache", - "@keyv/mongo", - [0, 26126, 26130, 26133, 2443], - [0, 20573, 5545], - "connect-l", - "ogger", - [2, 26127, 26128], - [ - 0, 5517, 28436, 19438, 19181, 442, 8648, 842, 16145, 966, 968, 972, 22375, 5087, 4874, 4880, 5546, 1009, 1011, - 34737, 1177, 1895, 31755, 1959, 1961, 1976, 2203, 2675, 1192, 2780, 2990, 3286, 1894, 89, 3824, 5564, 4039, - 4135, 91, 4523 - ], - "@keyv/sqlite", - "@keyv/test-suite", - [0, 26713, 89, 582, 705, 2325, 1612], - [1, 2343, 26135], - [0, 0, 26138, 26139, 2523], - "http-auth", - "faye-websocket", - [0, 4874, 4218, 4220, 4493, 91], - [ - 0, 91, 998, 553, 5490, 17180, 20052, 2382, 6956, 2844, 5995, 6400, 1781, 6866, 1398, 9254, 15105, 4144, 4141, - 7050, 22789, 22791 - ], - [1, 2343, 26141], - [0, 26143, 26145, 26146, 2537], - "amaro", - [0, 23641, 27185, 29561], - [2, 3000, 1592], - [0, 58, 101, 8648, 1177, 2272, 3019, 2899, 4019, 19767, 4481, 4535], - [0, 36720, 22860, 1388, 16284, 888, 22856, 35087, 11804, 23659, 23664, 23667, 23668, 29725, 29728, 32633], - "micro-backend", - [1, 2343, 26149], - [0, 0, 26150, 26151, 2537], - [0, 2832, 705, 4008], - [0, 1936, 23670, 11513], - [1, 2343, 26153], - [0, 26156, 26157, 26161, 2537], - [2, 2032, 26155, 26159], - "openid-c", - [ - 0, 2591, 25047, 23597, 4290, 24794, 24836, 19569, 15245, 24855, 24871, 24984, 25049, 25034, 24816, 24841, 24900, - 24964, 24989, 24998, 21642, 37100, 25011, 24802, 24828, 24987, 24797, 24958, 25042 - ], - [ - 0, 1414, 2020, 4193, 25122, 1306, 1177, 1701, 25127, 2182, 1894, 842, 1587, 1610, 4342, 3980, 25609, 91, 4874, - 25099, 25108, 6513, 8529, 27525, 25110, 9240, 25103, 25104, 25098, 25137, 25053, 25118, 25114, 25058, 25083, - 10614 - ], - "grunt-svgmin", - "onnect", - "matchdep", - [0, 25155, 5130, 33359], - [1, 2343, 26163], - [0, 26164, 26165, 26166, 2537], - [0, 25183, 25194, 1759, 2858, 3310, 9796], - [0, 33460, 25204, 4874, 5542, 1177, 25209, 1894, 4039, 4494, 91, 1984], - [0, 9649, 17721, 6869], - [1, 2343, 26168], - [0, 26171, 26174, 26188, 4139], - "lws-basic-auth", - "lws-b", - [0, 1676, 4164, 4484, 4747, 2151, 1525, 3310, 25228, 24337, 3322, 24335, 25245], - "lws-blacklist", - [2, 26170, 7803], - [ - 0, 3377, 1192, 2675, 4400, 1177, 4039, 4468, 1894, 91, 5087, 4874, 5245, 28177, 20959, 107, 4864, 5542, 25250, - 8656, 8660, 1009 - ], - "lws-compress", - "lws-co", - "nditional-get", - [2, 26176, 26177], - "lws-cors", - "lws-index", - "lws-json", - "lws-log", - "lws-mime", - "lws-range", - "lws-r", - [2, 13148, 21101], - [2, 26185, 26186], - [0, 2733, 8675, 13494, 5131, 970, 1017, 25259], - "lws-rewrite", - "lws-spa", - [1, 5293, 26193], - "lws-static", - [0, 8391, 26194], - 1753574400000, - [1, 2343, 26197], - "full-stack", - [0, 26198, 0, 26199, 2537], - [0, 1461, 2731, 3744, 3776, 89, 3824, 3847, 4649], - [0, 5130, 6081, 4963, 5131, 25786], - [1, 2343, 26201], - [0, 26209, 0, 26211, 2399], - [3, 24235, 20], - "loose", - [2, 26202, 26203], - [2, 13888, 5669], - "grunt-es", - "3-safe-recast", - [2, 26206, 26207], - [0, 4484, 25804, 29321, 29322], - "grunt-rollup", - [0, 13572, 2220, 36, 5130, 202, 6710, 91], - "grunt-ts", - "rollupify", - [1, 2343, 26215], - [0, 26219, 26220, 16427, 2523], - "indexeddb", - [3, 23920, 12], - "websql", - [ - 0, 24327, 25819, 24329, 24335, 24337, 24338, 24339, 24340, 24343, 24344, 1437, 1676, 1687, 24345, 24346, 1209, - 3445, 6331, 20921, 4135, 4238, 24347, 22651, 4339, 4390, 4484 - ], - [0, 5245, 17577, 24352, 5087, 4870, 4874, 5254, 24358, 24360, 13214, 1192, 2774, 2990, 4039, 4227, 4468, 91], - [1, 2343, 26224], - [2, 31787, 26225], - "openurl", - [0, 6203, 26226, 26227, 2523], - "ecma402-abstract", - [ - 0, 25857, 25862, 25863, 19535, 19, 21, 24, 26, 1009, 1011, 1166, 1584, 1177, 1895, 1938, 1955, 25868, 3421, - 1894, 4039, 4094, 4232, 4484, 4508, 91, 555 - ], - [0, 1098, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], - [2, 3019, 2825], - [1, 2343, 26231], - [2, 7627, 4255], - [0, 26235, 26236, 26237, 2537], - [2, 6698, 19048], - "lockfile ", - [2, 26233, 671], - [0, 20437, 1209], - [0, 4874, 1009, 1011, 1177, 1895, 1938, 1955, 1894, 4039, 4042, 4052, 4076, 4079, 4484, 4508, 91, 555], - [0, 1669, 25, 1781, 8836, 4967, 1179, 6847, 8838, 2860, 2844, 8839, 8691, 8841], - [1, 2343, 26239], - [0, 26240, 26242, 7097, 2523], - [0, 1473, 4741], - [2, 31528, 29413], - [0, 10321, 4493, 4543], - [1, 5293, 26244], - [0, 8391, 26245], - 1738454400000, - "@egjs/axes", - "@egjs/imready", - "modularized", - [2, 5316, 26248], - [1, 2343, 26251], - [0, 26252, 26253, 26254, 2537], - [0, 97, 5564], - [ - 0, 29519, 89, 1177, 1503, 4474, 1894, 1610, 3824, 29520, 91, 11853, 4880, 38309, 4883, 29522, 3904, 17584, 1011, - 4889, 1009 - ], - [0, 5472, 89, 582, 2275, 11857], - [1, 2343, 26261], - [2, 27471, 1722], - "kuler", - "clonedeep", - "js-randomness-predictor", - [3, 23307, 13], - [0, 26262, 0, 26263, 4139], - [0, 25510, 29529, 25758], - [ - 0, 6932, 6622, 6694, 6704, 6860, 6695, 4389, 7159, 5341, 7202, 7121, 7060, 7161, 7141, 7287, 6698, 3743, 7311, - 6946, 2090, 6566, 6907, 7228, 4799, 5261, 6863, 2051, 676, 4643, 7535, 6748, 6739, 6618, 2844, 7252, 6673, 6790, - 7531, 7226, 1851, 1612, 4763, 6598, 6728, 6868, 6662, 7148, 6905, 6668, 7292, 7272, 6583, 3767, 364, 6800, 6874, - 4166, 1698, 2021, 6821, 3065, 6435, 3730, 6882, 4647, 6857, 6637, 7031, 7223, 7080, 3113, 7220, 1871, 6801, - 7087, 6938, 7145, 3195, 7255, 7162, 6482, 7094, 6922, 6615, 6738, 6654, 8433, 7212, 7050, 7521, 1525, 6892, - 6830, 3432, 10442, 7053, 7253, 10443, 6937, 6894, 6977, 5592, 6692, 200, 6940, 6867, 7242, 7518, 6582, 3101, - 7038, 57, 7188, 6809, 6998, 4484, 4796, 7089, 7178, 7182, 6827, 7015, 6912, 7011, 6743, 1451, 6575, 7117, 6994, - 3046, 2812, 7199, 2860, 998, 5122, 1111, 6696, 6910, 3529, 7133, 6048, 1303, 6634, 1139, 6846, 6784, 7192, 6777, - 3053, 5351, 6624, 3171, 1896, 2297, 6960, 7022, 6597, 5198, 6802, 6816, 7317, 4141, 6765, 6591, 7236, 1306, - 6681, 5257, 6564, 100, 7004, 6333, 6799, 6774, 7276, 7196, 6797, 1263, 1149, 2649, 7150, 7165, 6753, 7107, 6948, - 6975, 6822, 6787, 6760, 7046, 5472, 6651, 6569, 6825, 7069, 582, 7191, 6968, 6631, 6742, 4744, 7258, 1925, 6794, - 6804, 965, 7149, 6917, 2700, 1192, 2765, 6081, 7029, 1417, 5258, 4426, 6608, 7044, 7123, 7222, 3378, 1616, 3917, - 1614, 1669, 3209, 6570, 7155, 6422, 6714, 6725, 6606, 6778, 7300, 6610, 6716, 1259, 2585, 1393, 6918, 1461, - 1213, 7232, 7172, 6755, 4014, 6919, 7209, 7075, 6818, 6870, 7039, 6795, 6761, 6966, 2154, 6885, 4707, 6964, - 6646, 7218, 7169, 2978, 5501, 1155, 6611, 6955, 1862, 1753, 2220, 6837, 7336, 4386, 6638, 6616, 6553, 7310, - 7061, 6881, 7298, 8424, 5675, 3437, 3456, 6929, 7157, 6580, 6751, 7010, 6648, 3426, 6952, 8435, 4384, 7233, - 6697, 4162, 2150, 3875, 1108, 5165, 6926, 3763, 7229, 592, 3776, 7288, 5957, 6700, 2088, 6650, 7595, 10446, - 7289, 6805, 7099, 7084, 7144, 590, 5374, 5197, 7077, 5286, 7248, 2078, 7085, 7285, 1781, 6653, 10441, 2325, - 5281, 1351, 7309, 7204, 2696, 2899, 3430, 705, 7126, 1697, 2038, 7025, 6641, 6620, 1671, 6859, 6573, 7146, 7245, - 4649, 3220, 6667, 1623, 6793, 6666, 6903, 7230, 7026, 6588, 6858, 1362, 202, 2832, 7023, 7284, 6659, 6577, 7158, - 6594, 7115, 20215, 6789, 5614, 7057, 7528, 7021, 6605, 6621, 5260, 6973, 6913, 6828, 6563, 6715, 1460, 7067, - 7072, 6762, 7033, 7517, 6702, 7020, 6887, 5131, 3778, 6915, 1593, 5194, 7071, 1429, 7042, 6636, 6841, 3428, - 7007, 7532, 6803, 7106, 3073, 6824, 7227, 7286, 2845, 7082, 7114, 7151, 7297, 6769, 3766, 6914, 7189, 7064, - 4720, 6723, 7205, 6780, 6683, 7078, 1858, 6741, 7262, 6962, 814, 6657, 7524, 1544, 7002, 7527, 1585, 5511, 1512, - 6921, 6951, 6856, 7598, 6854, 8428, 6586, 6773, 2105, 7047, 2671, 1541, 6623, 594, 6711, 7147, 6671, 7256, 7194, - 1165, 6786, 3768, 6752, 8427, 1804, 3441, 7275, 3033, 6943, 4354, 4580, 6758, 7027 - ], - "snackbar", - "inject-markdown", - [1, 2343, 26267], - [0, 0, 26268, 26269, 2537], - [0, 2272, 19270, 2899], - [0, 1111, 1936], - [1, 2343, 26271], - [0, 26272, 26275, 26276, 2523], - [0, 6513, 4193, 4484], - [2, 32920, 4521], - "rchitecto-", - [0, 33821, 7709, 33826, 33827, 33831, 33836, 29543, 4508], - [0, 7200, 1168, 5472, 3212, 20188, 29545], - [1, 2343, 26278], - [0, 0, 26279, 26280, 4139], - [0, 6373, 1437, 29550, 2151, 2070, 2323, 2372, 29552, 4039, 4042, 4057, 4076, 4072, 4484, 4487, 91], - [0, 1896, 5066, 29554, 29555, 5122, 12295, 14554, 5284, 4453, 29556, 5131, 1591, 1932, 4653, 6434], - [1, 2343, 26282], - [0, 0, 0, 26283, 2523], - [0, 7201, 5131, 1676], - [1, 2343, 26288], - [2, 28288, 26286, 33678], - "redential", - "isequal", - [0, 26289, 26290, 26291, 4139], - [0, 1364, 1536, 1676, 1710, 11479, 2017, 2929, 4200, 4763], - [ - 0, 8648, 29574, 5159, 838, 5160, 840, 8296, 5601, 1165, 1662, 1177, 1895, 1972, 2203, 3561, 1894, 3710, 23535, - 3709, 4355, 4383, 91, 1983, 1984 - ], - [0, 5592, 5995, 27, 4699, 4729, 4030, 6710], - "isfunction", - [1, 2343, 26294], - [0, 0, 26295, 26296, 2487], - [ - 0, 53, 87, 192, 5467, 1165, 1195, 1387, 31429, 1429, 29582, 1492, 29584, 1652, 29585, 2323, 29586, 2338, 29587, - 29589, 2361, 2367, 2384, 2390, 2419, 2455, 2464, 2479, 2482, 2494, 2496, 2504, 29592, 2510, 2530, 2550, 29593, - 2675, 29594, 2822, 2929, 2899, 3198, 29595, 5561, 3561, 3722, 4015, 4019, 4042, 4045, 21688, 4939, 29596, 4193, - 8959, 29597, 4597, 29599, 2924, 18237 - ], - [0, 1623, 4329, 2278, 676, 6398, 6396, 5130, 14894, 29603, 29607], - [1, 2343, 26298], - [0, 26299, 26300, 26302, 34352], - [0, 1437, 29614], - [0, 29618, 7677, 2675, 2990, 1894, 91, 1984], - "isplainobject", - [0, 200, 1473, 1512, 7208, 6876, 7201, 6983, 29609, 3632, 3073, 6807, 4166, 1871, 590, 592, 7009], - [1, 2343, 26304], - [0, 26305, 26306, 26308, 4139], - [0, 7943, 29630, 3120, 3744], - [ - 0, 48, 53, 68, 13693, 61, 31689, 73, 31693, 5757, 5800, 5818, 5827, 87, 90, 19696, 19438, 19181, 442, 34467, - 32229, 29634, 28970, 29636, 10837, 10840, 29639, 966, 968, 972, 29642, 974, 5087, 11292, 4874, 4880, 4883, 8152, - 1175, 1193, 1195, 20479, 29643, 11335, 29645, 1465, 1584, 1587, 1593, 1610, 1700, 1177, 1879, 1895, 1922, 1938, - 1947, 1955, 1959, 1961, 1976, 2151, 2203, 29646, 1192, 11347, 2774, 2780, 29652, 2832, 3561, 3697, 1894, 3720, - 89, 3816, 3824, 3847, 29655, 3957, 4183, 4270, 4315, 29660, 4415, 29661, 35487, 4468, 4469, 91, 2924, 4677, 4681 - ], - "isstring", - [ - 0, 29610, 29666, 29667, 4627, 6082, 9204, 5130, 89, 699, 9291, 5354, 29668, 29669, 29670, 29671, 7320, 29673, - 29674, 29676, 1473, 998, 8691, 8295, 29677, 181, 6073, 10769, 29678, 4315 - ], - [1, 2343, 26310], - [0, 0, 0, 26311, 2537], - [0, 23584, 23584, 1936, 3205, 1002], - "@thednp/dommatrix", - [1, 2343, 26314], - [0, 0, 26315, 26316, 2537], - [0, 29693, 2228, 2247, 2253, 2258, 2263, 2273, 2281, 2283, 29694, 2308], - [0, 36653, 36650, 29702, 15571, 8192, 5066, 11316, 18346, 35060, 2814, 20632, 6398, 5131], - [1, 2343, 26318], - [0, 26319, 26320, 22658, 2443], - [0, 3561, 33145, 4317, 8712, 1423, 28572], - [ - 0, 4729, 1138, 3244, 3467, 4390, 4763, 12084, 2070, 710, 614, 1082, 31705, 1413, 1676, 2145, 2856, 33213, 1145, - 1398, 1410, 977, 2018, 2755, 3266, 3930, 4135, 4072, 11478, 2105, 6042, 3479, 3729, 2924, 3757, 3784, 33214, - 33173, 842, 9241, 1525, 1610, 2553, 11993, 26453, 23175, 3530, 4270, 33215, 29709, 11534, 13214, 33200, 33202, - 1628, 11890, 2659, 16837, 2689, 33211, 4227, 4294, 4425, 91, 24739, 53, 554, 4865, 33198, 20463, 13753, 1154, - 33204, 1536, 1615, 2805, 4111, 27062, 4165, 15040, 33212, 7080, 104, 8317, 33146, 33174, 5364, 5245, 33191, - 4880, 1195, 1393, 33206, 1562, 33208, 2863, 33210, 3678, 20508, 4307, 11804, 33176, 11477, 4870, 5254, 33209, - 20465, 15031, 3878, 13834, 15048, 97, 33181, 26733, 15018, 3509, 15042, 15047, 101, 8755, 29877, 33197, 15606, - 15009, 3502, 15033, 5216, 33165, 8648, 10837, 20374, 4883, 2661, 15022, 3322, 51, 87, 11011, 23452, 1618, 2674, - 4230, 28512, 15039, 15046, 13471, 10879, 7806, 21122, 16149, 16566, 3672, 90, 33156, 617, 11796, 8264, 33193, - 11800, 1560, 3676, 3957, 68, 33768, 15015, 3688, 9221, 25652, 33158, 33167, 34467, 33195, 36897, 16841, 18730, - 4409, 33159, 29876, 24807, 31666, 16912, 3605, 16842, 33170, 33179, 3177, 4851, 92, 33162, 19861, 29517, 29421, - 33172, 10840, 33183, 33153, 10825, 30521, 10827, 20476, 15273, 83, 16840, 33189, 3638, 81, 5715, 29874, 5757, - 5241, 5820, 5821, 5785, 1251 - ], - [1, 2343, 26323], - [2, 1882, 24717], - [0, 0, 26324, 26325, 2399], - [0, 1414, 34238, 2675, 2990, 3561, 1906], - [0, 3561, 1623, 6425, 26543], - [0, 0, 21613, 21614, 34352], - [1, 2343, 34498], - [0, 1448, 4907, 29733, 3157, 3173, 3527, 3721, 11114, 4207], - [ - 0, 192, 5467, 442, 6061, 16607, 6063, 6065, 16608, 16612, 7746, 4874, 13210, 29740, 1009, 1011, 1610, 1177, - 1953, 2020, 2203, 2675, 29741, 2990, 3536, 1894, 4039, 4131, 91, 1984 - ], - [0, 8678, 3758, 7001, 1017, 29745, 12295, 12296, 29746, 29747, 29748, 158, 3097, 5131, 33777, 29750, 29751], - [1, 2343, 26332], - [0, 26333, 26334, 26335, 34352], - [0, 29758, 29759, 1398, 34690, 3127, 3725, 10397, 29761], - [ - 0, 53, 68, 87, 1195, 29776, 1465, 24542, 1628, 1177, 1879, 31393, 1938, 24732, 2092, 8301, 2651, 29784, 4307, - 4409, 37871, 2924, 4676, 4677, 4681 - ], - [ - 0, 8168, 8170, 8171, 6975, 8172, 8173, 1745, 29786, 29787, 29729, 8124, 29788, 29795, 29796, 29797, 29798, - 29802, 29803 - ], - [1, 2343, 26337], - [0, 26338, 26339, 26340, 2523], - [0, 3744], - [0, 53, 68, 97, 1177, 1879, 1895, 1938, 1947, 1955, 1959, 1961, 1192, 5103, 1894, 89, 3857], - [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 26542, 23187, 29556, 29804, 9944, 7521], - [1, 2343, 26342], - [0, 0, 26345, 26347, 2523], - [3, 532, 8], - [2, 26346, 26651], - [0, 53, 87, 97, 29817, 21155, 1177, 2675, 2990, 89, 3857, 91], - "@tdesign/", - [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 5396, 29819, 15813, 29820], - [1, 2343, 26352], - [3, 17904, 13], - "sprintf-kit", - "uni-global", - [0, 0, 26354, 26355, 2443], - [3, 25092, 13], - [ - 0, 53, 68, 61, 5241, 83, 87, 90, 5583, 811, 816, 968, 972, 1165, 1497, 1652, 1177, 1895, 31755, 1955, 1959, - 1961, 1976, 2675, 2686, 1192, 2990, 3561, 1894, 3744, 89, 3824, 4042, 8849, 29826, 6068, 10854, 4320, 4323 - ], - [0, 89, 35058, 29831, 3392, 89, 4627, 29832, 5131, 12295, 12296, 29836, 29837, 29838, 29839], - [1, 2343, 26359], - "ncjsm", - "tape-index", - [0, 26360, 26361, 26362, 34352], - [0, 97, 29843, 29844], - [ - 0, 53, 78, 83, 87, 90, 92, 5522, 107, 29846, 968, 972, 4880, 4883, 1009, 1011, 1030, 1178, 1413, 1610, 1177, - 1895, 1955, 1959, 2675, 1192, 2780, 2990, 1894, 89, 3824, 4039, 91, 1983 - ], - [0, 29848, 29849, 89, 5128, 38332], - [1, 2343, 26365], - "@standard-schema/spec", - [0, 26366, 26367, 26368, 2487], - [0, 1420, 29855, 4507], - [ - 0, 5517, 19438, 442, 29857, 23689, 1414, 1437, 1516, 1532, 668, 1177, 1895, 1955, 2020, 2203, 2675, 2765, 2990, - 3074, 1894, 4039, 18710, 91, 4523 - ], - [0, 20627, 1739, 1745, 1179, 1783, 5980, 9591], - [1, 2343, 26370], - [0, 26372, 26373, 26378, 2443], - "terminal.js", - [0, 810, 1497, 26570, 16485, 2017, 2696, 3876, 4022, 32284, 5545, 29869], - [ - 0, 48, 53, 87, 90, 92, 97, 19696, 28091, 19492, 19438, 442, 28598, 30507, 810, 11275, 34467, 827, 10828, 28147, - 28466, 31235, 7384, 31237, 28473, 28476, 968, 972, 974, 29879, 33123, 29880, 4874, 4880, 4883, 15606, 1030, - 17214, 7677, 1195, 29883, 20476, 1393, 29645, 1610, 17100, 17101, 17103, 1687, 1177, 26322, 1895, 1915, 1938, - 1942, 1947, 1955, 1959, 1961, 30553, 10851, 2070, 2203, 2675, 2832, 2990, 3127, 3541, 1894, 89, 3824, 3847, - 3876, 4039, 4270, 4409, 4469, 4473, 91, 4523, 15088, 1984, 29887, 2924, 4676, 4677 - ], - [3, 28685, 11], - "refresh", - "overwrite", - "irtual-core", - [0, 89, 6071, 9816, 5128], - "tinyexec", - [2, 17213, 28937], - [1, 2343, 26382], - [0, 26384, 26386, 26387, 2537], - "date-format", - [0, 29896], - "flatted", - [ - 0, 29900, 29905, 29910, 29911, 811, 816, 974, 11096, 11109, 19203, 29914, 11111, 29917, 29921, 1414, 1429, - 29922, 29924, 1177, 29925, 1938, 2832, 8821, 2899, 1894, 4042, 29926, 4146, 4193, 4196, 4261, 4072, 91 - ], - [ - 0, 29935, 11619, 11608, 30891, 11622, 6907, 29936, 12899, 5130, 30442, 17950, 1283, 29939, 33359, 11415, 6624, - 12620, 29940, 29941 - ], - "streamroller", - [1, 2343, 26392], - "@log4js-node/sandboxed-module", - "-producer", - [0, 0, 26393, 26394, 2487], - [0, 53, 13052, 87, 4042, 4045, 4058, 4067, 4415, 29949, 35487, 4535], - [0, 7838, 29953, 7518, 3161, 1098, 29954, 89, 188, 7880], - [1, 2343, 26401], - [3, 9227, 10], - "e-js", - [2, 26396, 26397], - "grunt-open", - [2, 2235, 4358], - [0, 26402, 26403, 26404, 2537], - [0, 97, 29959, 10984, 1673, 3021, 29960, 4443, 1155], - [ - 0, 5652, 61, 83, 87, 92, 192, 5467, 6372, 5583, 811, 16952, 8850, 816, 6373, 29966, 29967, 29980, 26344, 5139, - 4874, 8149, 11438, 14334, 1009, 1011, 11016, 13061, 7677, 23203, 13063, 1031, 36812, 36805, 11018, 1165, 1170, - 1420, 12405, 1527, 1540, 1610, 1651, 1652, 1676, 29972, 668, 1177, 1881, 1895, 1938, 1955, 1988, 2226, 2675, - 2832, 695, 2990, 3025, 26804, 3213, 3561, 1894, 3725, 29973, 3957, 4039, 4042, 34019, 8849, 11899, 15277, 29974, - 15911, 10854, 29975, 29978, 4073, 6904, 4081, 29983, 4484, 91, 1983, 29987, 1984, 188, 4630, 4639, 13151 - ], - [0, 188, 5131, 29990], - [1, 2343, 26427], - "esm2umd", - [2, 26409, 26410], - "int64", - "@astrojs/s", - "itemap", - "@pagefind/default-ui", - [2, 26689, 27593], - "uid2", - "astro-expressive-code", - "bcp-47", - "isemail", - "canonical-json", - [2, 3138, 12442], - "-phase", - [2, 3081, 26419], - "pagefind", - "remoting", - [2, 25894, 26422], - "loopback-", - "filters", - [2, 26424, 26425], - [0, 26430, 26432, 26451, 2523], - "globalize", - [2, 25894, 26428], - [0, 7755, 1869, 2814], - "linkedom", - [ - 0, 53, 87, 23572, 11301, 1165, 1168, 30000, 1597, 1610, 1637, 1651, 18259, 1759, 1177, 1895, 1903, 1938, 1954, - 1955, 1958, 1970, 3363, 3561, 3564, 3566, 30030, 3579, 3605, 30033, 3613, 3640, 30039, 30274, 1894, 4039, 4042, - 4045, 4055, 4058, 20981, 30041, 4067, 20983, 32978, 4073, 12309, 4201, 4320, 4946, 4360 - ], - "or-remote", - [2, 1544, 26433], - [2, 26424, 26434], - [3, 18637, 12], - "tub-transport", - [2, 26436, 26437], - "datas", - "withastro", - "ource-juggler", - [2, 26439, 26441], - [2, 26424, 26442], - [3, 18637, 11], - "astro-integration", - "-transport", - [2, 1716, 26446], - [2, 26444, 26447], - "adapter-", - [2, 32700, 23187], - [0, 12318, 2090, 30044, 30045, 13225, 7518, 5398, 158, 30046, 190, 5131, 18346, 9229, 1542, 30826, 20937, 2814], - [1, 2343, 26454], - "is-docker", - [0, 26460, 26471, 26475, 2523], - "loopback-boot", - "s6-shim", - [2, 13897, 26456], - [3, 26435, 12], - [2, 26458, 2585], - [0, 1170, 2812, 1209, 3183, 4094], - "task-emitter", - [2, 25894, 26461], - [3, 6738, 11], - [2, 26463, 1524], - [2, 25894, 26464], - [2, 1884, 3081], - "processor", - "-preprocessor", - [2, 22126, 26468], - [2, 2877, 26469], - [0, 1429, 1177, 10419, 3188, 2899, 1241], - "sqlserver", - "StrongLoop", - "mBaaS", - [ - 0, 6703, 1702, 200, 1586, 21405, 13397, 33351, 27, 29854, 30053, 21402, 13322, 16697, 28984, 6667, 6574, 30056, - 31937 - ], - [1, 2343, 26480], - [2, 26478, 29168], - [3, 30636, 28], - [2, 26868, 26869], - [0, 0, 26496, 26497, 2537], - "exact-versions", - [2, 32700, 7293], - [2, 26485, 24631], - "steno", - [3, 31231, 18], - [2, 19036, 20], - [2, 5745, 1852], - [2, 2029, 26487], - [2, 32731, 26494], - "embed", - "Storage", - "localStorage", - [2, 1577, 26491], - "polygon", - [2, 32731, 32729], - [0, 1165, 1387, 2323, 30061, 2379, 2409, 2450, 2482, 2494, 2496, 2510, 18426, 30064, 3591, 4320, 4323, 4747], - [0, 29993, 30066, 30067, 1623, 695, 5131], - [1, 2343, 26500], - "rslog", - [0, 0, 0, 26501, 2487], - [0, 89, 6649, 10057, 6355, 3875, 1542], - [1, 5293, 26508], - [2, 13104, 1936], - "@lucide/build-icons", - "@lucide/", - [2, 4080, 591], - [2, 26505, 26506], - [0, 8391, 26515], - "Lucide", - "HTML", - "Feather", - "Icons", - "Icon", - "SVG", - 1731196800000, - "Feather Icons", - "Fontawesome", - [1, 2343, 26519], - [0, 26521, 26522, 2514, 4139], - "Font Awesome", - [ - 0, 30078, 9307, 9311, 30068, 30052, 30073, 9313, 30072, 1497, 12412, 30075, 2071, 7610, 2579, 21308, 3137, - 27008, 3140, 12627, 26929, 26914, 17429, 9337, 3973, 9340, 3988, 30049, 30069, 30059, 27062, 9348, 4207, 17913, - 4473, 30058, 4555, 28830, 4745, 4763 - ], - [0, 11522, 972, 1006, 12396, 9363, 30082, 4880, 4891, 1030, 30084, 23312, 23314, 3286, 89, 3824, 4549, 1984, 28965], - [1, 2343, 26524], - [0, 26525, 0, 26526, 2537], - [0, 30097], - [0, 1674, 30099, 30100, 15001, 13739, 35071, 30103, 30113, 19571], - [1, 2343, 26529], - "decree", - [0, 26530, 26531, 13347, 2537], - [0, 20378, 3530], - [0, 11976, 4874, 20374, 2071, 30138, 2070, 4441, 1531, 91], - "manipulate", - "blur", - "sharpen", - "flip", - "hue", - "saturation", - [1, 2343, 26540], - "lightness", - [0, 0, 0, 26544, 4139], - "transparency", - "fade", - "opacity", - [0, 91, 553, 1973, 8791, 2022], - [1, 2343, 26546], - [0, 26547, 2667, 26554, 2537], - [0, 30173, 4484], - "@75lb/deep-merge", - [3, 1107, 11], - "-sequences", - [2, 26549, 26550], - [2, 1601, 7880], - "load-module", - [0, 30175, 30176, 27227, 30177, 30178, 91, 6742, 57, 15266, 2873, 1993, 7256, 676, 19976, 30179, 5995, 6400], - "-anywhere", - [2, 17242, 26555], - [2, 30307, 553], - [1, 2343, 26559], - [0, 0, 6230, 26560, 2399], - [0, 32054, 4963, 4967, 6082, 3286, 3287, 89, 11167, 31512, 181, 630], - [1, 2343, 26569], - "-home-dir", - [2, 18132, 26562], - "mdast", - [2, 2580, 26564], - "fetch-happen", - [2, 3094, 26566], - [2, 12428, 1783], - [0, 6234, 6230, 26575, 4139], - [2, 25212, 28139], - "-unique-id", - [2, 5843, 26571], - [2, 4402, 163], - "y18n", - [0, 1501, 4963, 4967, 5342, 6082, 3286, 3287, 89, 5341, 9057, 181, 630], - [3, 9357, 10], - "umnify", - [2, 26576, 26577], - [2, 8140, 1687], - "ke-fetch-happen", - [2, 18655, 26580], - [1, 2343, 26583], - [0, 26585, 6230, 26588, 2523], - "@types/which", - [0, 3826], - "wizard", - "task graph", - [0, 4963, 18263, 1786, 4967, 6082, 3286, 3287, 89, 181, 630, 9229], - [1, 2343, 26590], - [0, 26592, 6230, 26593, 4139], - "zoroaster", - [0, 9041], - [0, 4963, 4967, 6082, 3286, 3287, 3412, 3730, 89, 181, 630], - [1, 2343, 26595], - [0, 26592, 6230, 26598, 2537], - " manipulation", - [2, 1871, 26596], - [0, 30246, 4963, 4967, 6082, 3286, 3287, 89, 7193, 181, 630], - [1, 2343, 26600], - [0, 0, 6230, 26601, 2537], - [0, 4963, 4967, 6082, 3286, 3287, 89, 30256, 24843, 30251, 181, 630], - [1, 2343, 26607], - [3, 7678, 9], - [2, 4501, 6996], - [2, 12612, 26604], - [2, 26603, 26605], - [0, 26613, 26615, 26618, 2537], - "lavalink client", - "audi", - "o streaming", - [2, 26609, 26610], - "music", - [0, 3135], - "music bot", - [ - 0, 48, 53, 5241, 87, 92, 19344, 10879, 30263, 5601, 4873, 4874, 1009, 1011, 1177, 1895, 1938, 1942, 1953, 30266, - 13668, 3401, 4039, 91, 1984 - ], - "emoji-datasource", - "voice chat", - [0, 30270, 3541, 1651, 2899, 1984, 1192, 2765, 3283, 28360, 30271, 2793, 1973, 11937, 16237, 5472, 30272], - " integration", - [2, 1721, 26619], - " performance", - [2, 6732, 26621], - [1, 2343, 26625], - "easy-to-use", - [0, 26634, 26635, 26637, 2487], - "feature-rich", - "seamless", - [2, 26627, 26619], - "communi", - "ty support", - [2, 26629, 26630], - "open-source", - "lavalink", - [0, 30288, 30293, 30295, 26557, 32842, 30297], - [0, 30303, 6494, 4874, 30306, 30305, 30310, 2026, 4039, 1531, 91, 1984], - [3, 66, 19], - [0, 30297, 2026, 5995, 1851, 5592, 13527, 91, 5284, 2663], - [1, 2343, 26639], - [0, 0, 26640, 26641, 2443], - [0, 3377, 26230, 4255, 1973, 30351], - [0, 5131, 28125, 4354, 1388], - [1, 2343, 26643], - [0, 26645, 26646, 26649, 2523], - "convex-helpers", - [0, 12449, 4549, 12396, 2586, 21016, 32568, 4233, 12447, 32567], - [0, 1414, 1177, 3958, 1894, 3541, 3985, 91, 4874, 15632, 32484, 27706, 27711, 30411], - "intermediate", - "recursively", - [0, 1745, 9102, 25131, 1932, 3958, 32462, 3984, 4549], - [1, 2343, 26652], - "theme-generator", - [0, 26653, 26654, 26655, 2523], - [0, 30416, 30425, 30431, 30434, 30438, 30439, 30441, 30445, 30447, 30449, 30450, 30452], - [0, 48, 4487, 91], - [0, 30455, 5133, 30960, 1851, 5284, 27838, 18969, 30456, 5131], - [1, 2343, 26659], - "dingbat-to-unicode", - "lop", - [0, 26665, 0, 26199, 2443], - "-licenses", - [2, 22190, 26660], - [2, 13888, 26661], - "duck", - "hamjest", - [0, 25766, 30802, 1461, 30809, 2731, 3744, 3776, 89, 3824, 3847, 4649], - "office", - [1, 2343, 26668], - [0, 26669, 0, 26199, 2399], - [0, 89, 3824, 3744, 25766], - [3, 36878, 12], - "ternal-editor", - [1, 2343, 26673], - [0, 26686, 0, 26687, 4139], - "@nestjs/", - [2, 26674, 10896], - "@nestjs/co", - [2, 26676, 686], - [2, 26676, 23], - [3, 31, 9], - [2, 26679, 2026], - [2, 26674, 26680], - [3, 9687, 9], - "wagger", - [2, 26682, 26683], - [2, 26674, 4521], - [0, 4484, 2735, 547, 2858], - [0, 2733, 5130, 1098, 5131, 1896, 8674, 8675, 1591, 8677, 8678], - "@nestjs/cli", - "@nestjs/t", - [2, 26689, 8615], - [1, 5293, 26692], - [0, 8391, 26700], - "asherize", - [2, 6491, 26693], - [3, 12284, 16], - [2, 26695, 2528], - "llaboration-core", - "limiter", - "embla-carousel-reactive-utils", - 1733616000000, - [1, 5293, 26722], - [2, 19183, 26714, 3181], - "eigen", - [3, 578, 11], - "de-highlight", - [2, 26704, 26705], - "@tabler/icons-react", - [3, 3672, 15], - "mantine", - [2, 26708, 26709], - "imple-vars", - [2, 3677, 26711], - "swr", - [3, 25141, 13], - "context-menu", - "peowly", - "context menu", - "server ", - [2, 26718, 4963], - [2, 7519, 26719], - "user ", - [0, 8391, 26723], - 1733961600000, - [1, 5293, 26728], - "experience", - [2, 26721, 26725], - "usability", - [0, 8391, 26729], - 1734220800000, - [1, 2343, 26731], - [0, 0, 26732, 26734, 2537], - [ - 0, 4172, 2278, 34683, 4484, 1177, 4039, 4042, 4086, 4072, 3363, 3561, 2151, 1894, 1367, 1610, 4320, 91, 6375, - 3400, 3566, 30616, 1165, 1540, 6376, 3019, 34673, 1907, 30617, 1938, 1982, 30620, 10817, 1011, 15290, 6392, 1009 - ], - "axe-playwright", - [0, 1623, 2278, 6398, 20897, 1283, 699, 5130, 30622, 27837], - [1, 2343, 26736], - [0, 26737, 26738, 26742, 2537], - [0, 97, 30628, 30666], - [ - 0, 48, 53, 61, 71, 13052, 83, 85, 87, 94, 4856, 6503, 4874, 1178, 1195, 1208, 1290, 30691, 30696, 1389, 1429, - 1431, 31602, 1610, 1177, 2026, 10621, 2832, 2899, 3421, 705, 4039, 4218, 4409, 91, 2282, 4650, 2924, 4677 - ], - [2, 11932, 26740], - "umd-wrapper", - "mapbox", - [0, 6599, 5131, 5592, 29744, 30730], - "mapbox-gl", - [2, 4609, 4056], - [1, 2343, 26748], - "mapboxgl", - "legend", - [0, 0, 26749, 26750, 2443], - [0, 1414, 1429, 1540, 1596, 668, 1177, 2832, 3010, 2899, 2278], - [0, 5284, 5131, 12295, 12296, 7179], - [1, 2343, 26752], - [0, 26753, 26756, 26757, 2487], - [0, 3775, 1473, 1673, 30778, 1209, 1461, 30779, 3376, 30774, 30772, 30776, 15616, 3911, 30770], - " processing", - [2, 2585, 26754], - [0, 11336, 89, 3824, 4880, 4870, 97, 4883, 30783, 972, 968, 974, 20562, 4808], - [0, 89, 12248, 5128, 30731, 30785, 30786, 4627, 4963, 181, 5130, 4967, 5131], - [1, 2343, 26759], - [0, 26760, 26765, 26199, 2537], - [0, 25766, 30802, 30803, 30405, 30458, 1461, 2731, 3744, 3776, 89, 3824, 4649, 30809], - "linkify-it", - "mdurl", - "punycode.js", - "uc.micro", - [0, 30819, 30820, 30822], - "footnote", - [2, 3108, 26766], - [3, 26767, 14], - "r-inline", - [2, 26768, 26769], - "ins", - [2, 3108, 26771], - "ark", - [2, 7613, 26773], - [3, 7617, 14], - [2, 26775, 22164], - "ndoc", - [1, 2343, 26781], - [3, 5956, 14], - [2, 26779, 13218], - [0, 0, 26782, 26783, 2537], - [0, 6066, 1894, 4042, 4045, 12611, 4048], - [0, 4967, 9006, 29633], - "@nx/docker", - [1, 2343, 26787], - "anchor", - [0, 26788, 26789, 26790, 2537], - [0, 16115], - [0, 972, 4880, 4883, 1628, 2144, 2675, 89, 3824, 3895, 4307, 4469, 21180, 4484, 91, 2924, 6482], - [0, 1631, 30845, 30847, 30848, 4627, 6398, 5131, 4453, 1631, 5399, 30858, 32040], - [1, 2343, 26792], - [0, 26793, 26794, 26795, 2399], - [0, 10780, 1437, 1525, 2020, 2151, 3714, 3742, 4135, 4548, 4707, 4726, 4739, 4753], - [0, 30868, 16480, 1414, 2070, 2203, 14775, 30889, 2658], - [0, 30829, 31731, 30870, 5131, 12295, 30871, 12296], - "emojies", - [1, 2343, 26798], - [0, 26801, 0, 26802, 2537], - "emoticon", - "emoticons", - [0, 3533, 30018, 28941, 29602], - [0, 29699, 2942, 6807, 1179, 1745, 29703, 29753], - [1, 2343, 26810], - [2, 26807, 26809], - "from-to", - [2, 4279, 26805], - "lodash.u", - "pdf-text", - "pperfirst", - [0, 26811, 26812, 26813, 34352], - [ - 0, 31834, 31846, 29951, 66, 29890, 5582, 635, 29057, 1091, 1525, 18145, 30089, 31002, 13812, 2822, 26014, 3079, - 3181, 3310, 30095, 4025, 6477, 4135, 4183, 4474, 91 - ], - [0, 1177, 1939, 1959, 1969, 2151, 1192, 2829, 3123, 4039, 30269], - [0, 5593, 1745, 1179, 1783, 5061], - [1, 2343, 26816], - "rows", - [0, 26817, 26818, 26819, 2523], - [ - 0, 7614, 19976, 3445, 1371, 1437, 2020, 2975, 3478, 4484, 1209, 4135, 1593, 3742, 2924, 1457, 2151, 4447, 1525, - 2641, 1483, 1710, 1869, 3884, 13834, 4689, 30459, 4562, 30876, 3885, 30878, 32359, 30882, 9329, 4681, 30890, - 2651, 30895, 30896, 4676, 30899, 30900, 30902 - ], - [0, 36864, 18055, 4883, 8286, 30913, 3904, 33768, 29125, 30915, 30919, 4985, 38298], - [0, 89, 12478, 2924, 1745, 18061, 18063, 467], - [1, 2343, 26821], - [0, 26822, 26823, 26824, 2443], - [0, 4484, 2735, 547], - [ - 0, 3377, 1192, 89, 1177, 4039, 4042, 4468, 2151, 1894, 3824, 91, 5087, 4874, 4880, 4883, 8656, 8660, 972, 2780, - 10817, 968, 1011, 20562, 1009 - ], - [0, 2733, 5130, 89, 5131, 1896, 24364, 8674, 1591, 8677, 8678], - "microtime", - [1, 2343, 26828], - "theredoc", - [0, 0, 26829, 26830, 2537], - [0, 5087, 1009, 1011, 1593, 1596, 1637, 1177, 1192, 2774, 2794, 2832, 30935, 4042, 4468, 91], - [ - 0, 32814, 6422, 6805, 2013, 24800, 31767, 91, 5284, 11512, 4627, 3111, 30430, 11608, 6400, 1936, 9622, 8174, - 30937 - ], - [1, 2343, 26832], - [0, 26833, 0, 26834, 2537], - [0, 1497, 9272, 9273, 3744, 97, 6372, 444], - [0, 89, 5128, 9267, 30943, 6653], - [2, 13090, 4226], - "lazy-cache", - "list-item", - [3, 19516, 13], - "mixin-deep", - "repeat-string", - [1, 2343, 26848], - "glossary", - [2, 4001, 1932], - " of contents", - [2, 176, 26844], - "of-contents", - [2, 16065, 26846], - [0, 26850, 0, 26851, 2487], - "node-bundle-require", - [0, 9273, 3744, 97], - [0, 89, 5128, 9267, 699], - [2, 28001, 28034, 16111], - [1, 2343, 26856], - [2, 24559, 18089], - "gemoji", - [0, 26857, 0, 26858, 4139], - [0, 1497, 3847, 9272, 3744, 97, 5090], - [0, 89, 5128, 9267, 594], - "CommonMark", - [1, 2343, 26861], - [0, 26862, 0, 26863, 2523], - [0, 30963, 30964, 1699, 3547], - [0, 91, 4521, 678, 12659, 4030, 7096, 5592, 30967, 30968, 5995, 30969], - [1, 2343, 26867], - "jsonpointer", - "run-con", - [0, 26871, 0, 26863, 2523], - [3, 11026, 13], - "uilder", - [2, 10829, 2202], - [0, 30978], - "babel-re", - "@markedjs/eslint-config", - "@markedjs/", - "testutils", - [2, 26874, 26875], - "marked-", - [2, 26877, 5342], - [1, 2343, 26884], - "marked-man", - "recheck", - "@egjs/component", - "@egjs/list-differ", - [0, 26886, 26887, 26888, 2537], - "markup", - [0, 1091, 4135, 2105, 30986, 30987, 31339, 20786, 2745, 27168], - [0, 16499, 1983, 1984, 1597, 2071, 91, 36864, 3401, 19232], - [ - 0, 30990, 30991, 20998, 5194, 5130, 2323, 5284, 1936, 6082, 1783, 6710, 30993, 38087, 8674, 12479, 5347, 5348, - 30997, 30998, 30999 - ], - [1, 2343, 26890], - [0, 0, 26891, 26892, 2523], - [0, 1759, 20463, 1763], - [0, 89, 3286, 23803, 1759], - [1, 2343, 26894], - [0, 26896, 26897, 26898, 2537], - "v8-argv", - [0, 31705, 4227, 31044, 4121, 2626, 6473], - [ - 0, 4757, 1192, 3144, 1177, 3266, 1701, 2924, 2151, 2182, 1894, 1610, 3758, 4507, 2794, 91, 53, 5087, 4874, 1615, - 4677, 1195, 29283, 3401, 3878, 4891, 4864, 21122, 8818, 31054, 4681, 31055, 33002, 31057, 2784, 4409, 1895, - 1955, 2780, 4684, 5241 - ], - [0, 89, 5284, 2924, 26375, 11498, 31062, 3000, 2998, 6109, 6609, 2999], - [1, 2343, 26903], - [3, 2718, 14], - "refixer", - [2, 26900, 26901], - [0, 0, 26904, 26911, 2443], - [0, 34264, 2222, 31069], - "vent-listener", - [2, 11352, 26905], - "typed-event-target", - "simple-assign", - "@onesy", - [3, 1441, 29, 6], - [0, 31076, 2220, 2844, 553, 91, 9381, 5130, 1932], - [1, 2343, 26913], - [0, 26918, 26919, 26923, 2523], - "react-medium-image-zoom", - "complex.js", - "latex", - "escape-latex", - [ - 0, 3467, 6482, 1983, 31090, 1371, 1437, 2020, 1759, 1209, 3539, 4135, 1458, 3363, 3471, 2924, 1457, 2151, 2720, - 1894, 1525, 1587, 1483, 1628, 91, 3921, 31091, 31093, 1393, 13223, 1540, 4025, 4307, 31094, 31095, 31096, 31097, - 9322, 3878, 31098, 31099, 31101, 8161, 29182, 31105, 10936, 31106, 31109, 31110, 31111, 2651, 31114, 4679, 4684, - 31117, 12361, 3177, 4676, 31120, 31123, 31125, 4992, 31127, 2135, 24723 - ], - [0, 1192, 89, 2190, 3824, 5087, 4874, 4870, 31131, 4864, 31134, 31138, 4985], - "-natural-sort", - [2, 5284, 26920], - [2, 17414, 3046], - [ - 0, 31140, 6354, 31141, 17944, 31146, 31153, 27837, 5592, 1303, 5130, 27, 1781, 2934, 31154, 33359, 3424, 28438, - 3469, 4030, 7096, 1965, 31155, 12479, 5284, 29727, 31047, 31048, 31045, 31042, 31156, 31171, 5995, 18063, 31175, - 2968, 31176, 89, 6071 - ], - "jsep", - "ndarray", - "-determinant", - [2, 26925, 26926], - [1, 2343, 26937], - [2, 28402, 28403], - "ndarray-gemm", - "ops", - "ndarray-ops", - "ndarray-pack", - "numeric", - "numericjs", - "pad-", - [0, 26939, 26942, 26943, 2537], - "l-time-collaboration", - [0, 53, 4982, 1420, 1595, 31187], - "sylvester", - "zeros", - [0, 4361], - [0, 11525, 8221, 89, 364, 5592], - "mathematics", - "algebra", - "complex", - "fraction", - [1, 2343, 26949], - [0, 26950, 26951, 26952, 2537], - [0, 104, 18089], - [0, 31206], - [0, 1936, 2587, 1172, 23267, 36587, 23266], - [1, 2343, 26954], - [0, 0, 0, 26955, 2537], - [0, 11961, 10339, 10340, 5122, 5995, 1594], - "charenc", - [1, 2343, 26958], - [0, 26959, 26960, 7537, 2523], - [0, 1673, 1511, 31225], - [0, 2675, 1984, 91, 4874, 975, 11976, 192, 11978, 7677, 5467], - [1, 2343, 26962], - [0, 26964, 0, 26966, 2523], - "md5sum", - [0, 1004], - "checksum", - [ - 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, - 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, - 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, - 12094, 31238, 31239 - ], - [1, 2343, 26968], - [0, 26964, 0, 26997, 34352], - [2, 27022, 27023], - "d-character-reference", - [2, 5877, 26970], - [2, 15103, 26971], - [3, 17995, 15], - "decode-n", - "-char", - "-reference", - [2, 6842, 26976], - [2, 26975, 26977], - [2, 10129, 26978], - [2, 26974, 26979], - [2, 26973, 26980], - [3, 26981, 22], - [2, 26982, 1871], - [2, 3370, 16906], - [2, 26973, 26984], - [2, 26973, 5511], - [2, 26973, 553], - [3, 4292, 10], - [2, 26988, 8193], - [2, 9406, 26989], - [ - 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, - 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, - 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, - 12094, 31238, 31260 - ], - [2, 20627, 6660], - [2, 17991, 6147], - [1, 2343, 26996], - [3, 3137, 10], - [0, 27025, 0, 27026, 34352], - [ - 0, 6400, 4967, 12042, 12045, 12047, 1424, 12048, 12049, 12050, 12044, 12056, 12058, 91, 5284, 7521, 5122, 12075, - 12076, 12079, 1623, 1936, 12080, 12082, 12083, 31268 - ], - [1, 2343, 26999], - [0, 26964, 0, 27001, 2537], - [3, 26986, 16], - [ - 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, - 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, - 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, - 12094, 31238, 31276 - ], - "anitize-uri", - [2, 27000, 27002], - [1, 2343, 27007], - "lines", - "trim-lines", - [0, 26964, 0, 27001, 2523], - [2, 3138, 3987], - [3, 12133, 20], - [2, 27009, 3987], - [1, 2343, 27012], - [0, 26964, 0, 27001, 2443], - [1, 2343, 27014], - [0, 27015, 27019, 27020, 2487], - [ - 0, 7709, 33828, 31294, 31296, 28384, 1364, 1532, 1553, 1560, 1575, 1594, 29013, 1874, 2026, 31300, 31303, 2040, - 33596, 13870, 2212, 31305, 2593, 2738, 11993, 2863, 1209, 3173, 3220, 3222, 3237, 3242, 3345, 3478, 12286, - 17009, 4143, 4351, 31306, 1155, 25370, 4729 - ], - [2, 27577, 3432], - "mdn", - "mozilla", - [ - 0, 7806, 38176, 9227, 5601, 7808, 10406, 8264, 4870, 38179, 24156, 4874, 16936, 4891, 9241, 2020, 2659, 3297, - 4342, 91, 1984 - ], - [0, 12322, 3730, 30045, 31310, 31311, 6949, 21611, 31312, 5403, 5995, 4699, 2026, 20863], - [1, 2343, 27024], - [3, 10848, 19], - [3, 2791, 11], - [0, 27037, 0, 27034, 34352], - [ - 0, 188, 4452, 1593, 668, 2822, 2924, 1457, 3084, 1628, 3560, 4027, 4634, 4639, 13152, 53, 1615, 2092, 1165, - 1195, 37215, 31325, 4689, 36119, 3618, 31331, 31332, 4681, 1584, 3676, 31333, 31334, 4645, 31343, 3177, 31347, - 31348, 1549, 31351, 31353, 3463, 21287 - ], - [0, 1745, 1179, 188], - [1, 2343, 27028], - [0, 27029, 0, 27030, 2487], - [0, 3725, 3105, 18587, 3114, 3107, 31343, 13122], - [0, 1745, 1179, 1783, 188, 19469], - [1, 2343, 27032], - [0, 27033, 0, 27034, 2523], - [0, 31332, 3008, 3084], - [0, 1745, 1179, 188, 19469], - [1, 2343, 27036], - [0, 27040, 0, 27034, 34352], - [0, 31331, 3029], - [1, 2343, 27039], - [0, 27075, 27077, 27064, 34352], - [0, 31331, 1615], - [1, 2343, 27042], - [0, 27043, 0, 27034, 4139], - [0, 3412, 31331], - [1, 2343, 27045], - [0, 27046, 0, 27034, 2523], - [0, 31331, 31343], - "@blazediff/core", - [1, 2343, 27049], - [0, 27050, 0, 27034, 2537], - [0, 31331], - [1, 2343, 27052], - [0, 27053, 27054, 27034, 2523], - [0, 1437, 1869, 2151, 2205, 2226, 2570, 4135, 4452, 10761], - [0, 31414], - [1, 2343, 27057], - [3, 26482, 36], - [0, 27058, 0, 27034, 2537], - [0, 1209, 4333, 13092, 4334, 31331, 21288, 31348, 31375, 31425, 31314], - [1, 2343, 27060], - [0, 27061, 27063, 27064, 2537], - [0, 31434, 31435, 31438, 31442, 31444], - "server-only", - [0, 1429, 2899, 4474, 2924, 48, 53, 13693, 4856, 5087, 4874, 3400, 4677, 6503, 85, 94, 87, 31455, 31456, 92], - [0, 31459, 31460, 9439, 31461, 5131, 11194, 4653, 1616, 31462, 31463], - [1, 2343, 27067], - "@types/title", - [0, 27068, 27070, 27064, 4139], - [0, 31435, 31469, 31470], - [2, 27074, 29387], - [0, 1429, 2899, 4474, 2924, 48, 53, 13693, 4856, 5087, 4874, 3400, 4677, 6503, 85, 94, 87, 31456, 92], - [1, 2343, 27072], - [0, 0, 0, 2514, 34352], - "hashring", - [3, 30708, 19], - [0, 3698, 11194, 1582, 31477, 31480], - "jackpot", - [ - 0, 1429, 2899, 1177, 1593, 4474, 2924, 4469, 48, 1628, 91, 53, 13693, 4856, 5087, 4874, 3165, 3400, 4677, 6503, - 4880, 4307, 31484, 5000, 85, 94, 87, 1954, 1959, 1938, 1958, 1895, 1903, 1955, 1970, 92 - ], - "InnoDB memcached API", - [1, 2343, 27082], - "failover", - "hashing", - [0, 27086, 27087, 27064, 2443], - "membase", - "memcache", - "nMemcached", - [0, 31465, 31477, 31480, 31489, 31490, 31492], - [ - 0, 1429, 4653, 2899, 1177, 9420, 1593, 4474, 2924, 1894, 48, 91, 53, 13693, 4856, 5087, 4874, 3400, 4677, 6503, - 85, 94, 87, 1954, 1959, 1938, 1958, 31496, 1895, 1903, 1955, 1970, 92 - ], - [1, 2343, 27089], - [0, 27095, 27070, 27064, 2443], - "@json", - "joy.com/json-pack", - [2, 27090, 27091], - [3, 27092, 13], - [2, 27093, 614], - [0, 4729, 31435, 31469], - "tree-dump", - [1, 2343, 27102], - [3, 7746, 11], - [2, 8184, 3358], - [3, 4490, 14], - [2, 27100, 10896], - [0, 27104, 0, 27116, 2487], - "fs.js", - [0, 1497, 31515], - "in-memory", - "fsa", - " access", - [2, 6771, 27107], - " file system", - [2, 970, 27109], - "webfs", - "crudfs", - "opfs", - "casfs", - "content ", - [0, 31517, 31518, 5131, 12344], - "able storage", - [2, 15427, 27117], - [2, 27115, 27118], - "pvu", - [1, 2343, 27123], - [2, 7467, 11017], - [0, 0, 0, 7983, 2537], - [2, 24399, 4162], - [2, 2068, 7906], - "mem", - "nanocolors", - [1, 2343, 27129], - [0, 0, 0, 27131, 2523], - "memoization", - [0, 1098, 5130, 1388, 17050, 5472, 12899], - [1, 2343, 27133], - [0, 9756, 27137, 27139, 2537], - [2, 27135, 1276], - [3, 5536, 15], - "gulp-exit", - [0, 1166, 1437, 1596, 3421, 4255, 4257], - "ram", - [0, 1111, 14903, 200, 30248, 2966], - [1, 2343, 27141], - [0, 17263, 27142, 27143, 2523], - [ - 0, 23689, 7892, 10410, 4874, 20959, 28502, 1364, 28556, 2323, 31190, 2526, 2765, 31539, 31540, 2272, 3297, 4039, - 4089, 31541, 4130, 4474, 4487, 31194, 91, 31195, 31186 - ], - [0, 1973, 5472, 11132, 13841, 28522], - [1, 2343, 27145], - [0, 0, 27146, 27147, 2523], - [ - 0, 1173, 1178, 14318, 1264, 14237, 1272, 1177, 1881, 13936, 1895, 1935, 1938, 2126, 2675, 1192, 2990, 1894, - 4039, 4535 - ], - [ - 0, 31549, 31550, 31553, 31565, 9006, 3015, 31566, 15813, 10725, 30672, 5066, 15571, 89, 31567, 1098, 188, 12295, - 5131, 28125, 31568, 31569 - ], - [1, 2343, 27149], - [0, 27150, 27151, 27152, 4139], - [ - 0, 17013, 31573, 18695, 1525, 1544, 18671, 2107, 2036, 14940, 18708, 3173, 31576, 4039, 18667, 4449, 18670, - 4547, 18692 - ], - [ - 0, 442, 4856, 9417, 31586, 31593, 6494, 31595, 7746, 4874, 31607, 6520, 31613, 1009, 1011, 31615, 1429, 1431, - 1587, 1177, 1895, 1951, 1954, 1955, 2020, 2116, 2212, 12870, 2899, 3560, 1894, 6021, 4085, 4135, 4193, 4196, - 18698, 4474, 91 - ], - [0, 14932, 1388, 6147, 9381, 4967, 13441], - [1, 2343, 27154], - [0, 27155, 27156, 27157, 2537], - [0, 31573, 14940, 18714, 18675, 4039, 4085, 12937], - [0, 1429, 1431, 2899, 31627], - [0, 9381, 6147, 4967, 1388, 14932, 13441], - "fast refresh", - [1, 2343, 27160], - [0, 27161, 27169, 27157, 2537], - [0, 17013, 2036, 6474, 3173], - "trim-newlines", - [2, 1420, 21640], - [2, 1677, 21640], - "_comments", - [2, 6865, 27165], - [3, 9488, 13], - [2, 27167, 2104], - [0, 1429, 18766, 2026, 2272, 2899, 14942, 4008, 4085], - "-options", - [2, 3183, 27170], - [1, 2343, 27175], - "cat", - "kitten", - [0, 27176, 27177, 27178, 2537], - [0, 2674], - [0, 2292, 2272, 2899, 4170], - [0, 13428, 1388, 14336, 12197, 5472], - [1, 2343, 27180], - [0, 0, 27181, 27182, 2537], - [0, 1173, 1175, 31653, 1264, 1429, 2899], - [0, 1420, 15321, 1623, 965], - [1, 2343, 27186], - "from2", - "is-standalone-pwa", - [0, 0, 27187, 27188, 2537], - [0, 19325, 31265, 1414, 1537, 1894, 3985, 3998, 4039, 4389, 4505, 91, 1906], - [0, 1936, 18944, 18089, 6843, 11043, 1213, 31661], - [2, 3028, 5056], - "stat-mode", - "ware", - [1, 2343, 27197], - "drafts", - [2, 10722, 27193], - "dir-equal", - [2, 15340, 27195], - [0, 0, 27187, 27198, 2523], - [0, 1936, 31670, 18944, 18089, 6843, 11043, 1213, 31661], - [1, 2343, 27200], - [0, 0, 27187, 27201, 2537], - [0, 1936, 18944, 18089, 6843, 11043, 1213], - "7zip-bin", - "node-7z", - "er-helper", - [2, 18536, 27204], - [2, 3306, 27205], - [1, 2343, 27208], - [0, 0, 27209, 27210, 2537], - [0, 19325, 31265, 1414, 1537, 2577, 2584, 1894, 3971, 3985, 3998, 4039, 4389, 4505, 91, 4549, 1906], - [0, 1936, 18944, 26934, 6843, 11043, 31661, 31676, 1213], - [1, 2343, 27212], - [0, 27213, 22487, 27214, 2537], - [0, 31701], - [0, 1473, 7208, 6616, 1623], - [1, 2343, 27216], - [0, 0, 23215, 27217, 2523], - [0, 965, 1936, 14186, 34254, 11590, 1644, 1646], - [1, 2343, 27219], - [0, 27220, 16487, 27222, 2537], - [0, 2053, 31724, 20273], - "@surma/rollup-plugin-off-main-thread", - [0, 1739, 1745, 8623, 1179, 1783, 5354, 26096], - "asyncro", - [3, 1225, 32], - [2, 27224, 6567], - [3, 13998, 31], - [2, 7256, 591], - [2, 27226, 27227], - [1, 2343, 27236], - "throw-", - [2, 27230, 27227], - [2, 69, 27231], - "directory-", - [2, 27233, 1633], - [3, 16482, 15], - [0, 0, 27240, 27241, 2523], - "evelopit", - [2, 27235, 27237], - "merge-d", - [0, 2899, 1429, 2759], - [0, 1623, 6413, 3766, 31991, 5131, 1644, 3529], - "river-install", - [2, 27239, 27242], - [2, 3382, 27243], - [1, 2343, 27247], - [2, 14585, 6082], - [0, 0, 27248, 27249, 2487], - [0, 1596, 2759], - [0, 1871, 3656, 16906, 1623, 25232, 6422], - [1, 2343, 27253], - [2, 9280, 20627], - [2, 17991, 27251], - [0, 27254, 27268, 27269, 2537], - [0, 1634], - "factory-space", - [2, 17991, 27255], - [3, 17995, 17], - "unked", - [2, 27257, 27258], - [3, 17995, 16], - "ombine-extensions", - [2, 27260, 27261], - [2, 26973, 10368], - "resolve-all", - [2, 26973, 27264], - "ubtokenize", - [2, 27000, 27266], - [0, 1414, 668, 1177, 2899, 4042, 4228], - [0, 1623, 15215, 2632, 3178, 16918, 16919, 31748], - [1, 2343, 27271], - [0, 27272, 27273, 27274, 2537], - [0, 1147], - [0, 1177, 1895, 1955, 1894, 4384], - [0, 5675, 57, 7119, 200, 1523, 7058, 16159, 31759], - "fill-range", - "@ember-tooling/blueprint-model", - "bracket", - [2, 24559, 1227], - [1, 2343, 27283], - "expansion", - "extglobs", - "lookahead", - [0, 27284, 0, 27286, 4139], - [0, 1122, 1125, 31764, 1129, 1532, 2220, 2222, 2817, 18023], - "lookaround", - [0, 31775, 5995, 2195, 31776], - "lookbehind", - [1, 2343, 27290], - "negate", - [0, 27294, 0, 27295, 2537], - "negation", - [2, 7623, 22245], - "posix", - [0, 2817, 3502, 18023], - [0, 31775, 5995, 13531, 20999], - [1, 2343, 27297], - [0, 27300, 0, 27305, 2537], - [3, 7746, 12], - [2, 27298, 1747], - [0, 1532, 2817, 3181, 3502, 18023, 31802], - "mime-score", - "runmd", - [2, 4865, 27304], - "rex", - [0, 31775, 5995, 17977], - [1, 2343, 27307], - [0, 27308, 0, 27309, 2537], - [0, 31809, 2714, 2867, 3181], - [0, 31775, 5995, 31804, 31812], - [1, 2343, 27311], - [0, 27312, 0, 27313, 2523], - [0, 1122, 1125, 31764, 1129, 1532, 2220, 2222, 2817, 3502, 18023], - [0, 31775, 5995, 2195], - "Min Heap", - "min heap", - "maxheap", - "min-heap", - "heap", - "Binary Heap", - "binary-heap", - [2, 7247, 17709], - [2, 27318, 27321], - [2, 27315, 27321], - " binary tree", - [2, 15773, 27324], - "heapify", - [2, 13199, 2656], - "heap sort", - "@utoo/pack", - "heapify up", - [1, 2343, 27335], - "heapify down", - "Priority Queue", - "priority", - [0, 27342, 0, 27345, 2537], - " queue", - [2, 27334, 27336], - [3, 18020, 13], - "-queue", - [2, 27334, 27339], - "priority q", - [0, 1122, 1125, 31764, 1129, 2817, 3502, 18023], - "priorityQ", - [3, 27325, 15], - [0, 31775, 5995, 17978], - "extract min", - "min ", - [2, 27347, 27337], - " priority", - [2, 7287, 27349], - [1, 2343, 27361], - "ing property", - [2, 4327, 27352], - " resizing", - [2, 14000, 27354], - "priority-", - [2, 27356, 20332], - [2, 27357, 26754], - [2, 11512, 27349], - [2, 3768, 27349], - [0, 0, 0, 27362, 2537], - [0, 31775, 5995], - "decrease key", - [1, 2343, 27367], - "increase key", - "searching", - [0, 27368, 0, 27362, 2399], - [0, 3502], - [1, 2343, 27370], - [0, 0, 27371, 27372, 34352], - [0, 5087, 4874, 1596, 2070, 1192, 2822, 31851, 4468, 4487, 4490, 31194, 91], - [0, 36720, 7119, 57, 22856, 5131, 31568, 7310, 28125, 888, 8549, 1388, 18691], - [1, 2343, 27374], - [0, 27375, 27376, 27381, 2487], - [0, 3127, 3725, 31872, 31873, 31869, 8959, 6330], - [ - 0, 1192, 1170, 2675, 2968, 1177, 3188, 4039, 4042, 4333, 1637, 1457, 32826, 1894, 11401, 1610, 1193, 53, 1532, - 2990, 2997, 3400, 1387, 13834, 8648, 87, 1939, 31897, 31901, 4048, 68, 1938, 4077, 4069, 1895, 1955, 4055, - 31899, 1567, 4067 - ], - "@putout/minify", - "b64-images", - [2, 1625, 27378], - "readjson", - [0, 2295, 1739, 1745, 31903, 1179], - [1, 2343, 27383], - [0, 27384, 27389, 27396, 2399], - [0, 3445, 1437, 4747, 1544, 31910, 17964, 1836, 2151, 2182, 3084, 31915, 3000, 4151, 4562, 21847, 31911, 1549], - "try-catch", - "@arktype/attest", - "bench-node", - "try-to-catch", - [0, 1166, 1594, 2020, 2675, 1177, 4039, 4042, 2990, 31917, 4257, 19286, 31919], - "escover", - [3, 19709, 16], - "tout", - [2, 27391, 27392], - "madrun", - "supertape", - [0, 17964, 2295, 1739, 1745, 31903, 1179, 200], - [1, 2343, 27398], - [0, 27399, 0, 27400, 2523], - [0, 31939], - [0, 965, 31838, 2814, 5131, 35059], - "brace", - [1, 2343, 27405], - "-expansion", - [2, 27401, 27403], - [0, 27409, 27410, 27411, 2537], - [2, 25824, 27403], - [2, 4853, 27406], - "zstandard", - [0, 37135, 1209, 3847], - [ - 0, 48, 53, 87, 90, 1193, 1503, 1843, 1845, 1177, 1895, 1903, 31952, 1938, 1954, 1958, 1959, 1970, 1192, 1894, - 31953, 3744, 3775, 89, 3824, 3904 - ], - [0, 1843, 1192, 8745, 21009, 3717, 1448, 6270, 5472, 2275, 1973], - "jest-fixed-jsdom", - [1, 2343, 27414], - [0, 27415, 0, 27416, 2523], - [0, 1086, 31969, 1362, 31970, 4484, 4734], - [ - 0, 12666, 1149, 31972, 31973, 31974, 31975, 20672, 31976, 31977, 7682, 2090, 158, 3097, 6774, 5131, 31978, - 31979, 1644, 1862, 3972, 31980, 2056 - ], - [1, 2343, 27419], - [2, 27423, 13083], - [0, 0, 8134, 27420, 34352], - [0, 1867, 23615, 1936, 18944, 18089, 31998, 2574, 20215, 6435, 1283, 23584, 6692, 22982, 4741, 32000, 32002], - [3, 927, 11], - [1, 2343, 27429], - [3, 1915, 14], - [2, 27426, 15001], - "signed", - "@prettier/", - [2, 19569, 27530], - "certificate", - [0, 27430, 27431, 27432, 2523], - [0, 1448, 32006, 1869, 1291, 1180, 1287, 2151, 32007, 3127, 3183, 37708], - [0, 1173, 1208, 1240, 1280, 1503, 32009, 1177, 2899, 3421], - [0, 1776, 5592, 1746, 1745, 6789, 32011, 6746, 32013, 7221, 32015, 7011, 32016, 6615, 32018, 7194, 32019, 32027], - "fast-archy", - [1, 2343, 27435], - [0, 0, 9839, 27436, 2537], - [0, 1177, 6741, 6939, 1932, 9711, 5547, 3624, 2295, 1745], - [1, 2343, 27439], - "ufo", - [0, 0, 27446, 27452, 2537], - [3, 28920, 12], - "dom-selector", - "jest-stencil-runner", - "fast-color", - [2, 2023, 9463], - [2, 21195, 27444], - [0, 2212, 4257, 4389], - "mobservable", - "reactive", - "frp", - [3, 19780, 13], - "active", - [0, 1745, 3966, 32037, 27018, 32038, 30248, 202], - [1, 2343, 27460], - "-programming", - [2, 27451, 27454], - [2, 27450, 27455], - [3, 17943, 11], - [2, 6649, 27457], - "data flow", - [0, 15821, 27461, 27462, 2537], - [0, 4874, 1414, 1894, 3985, 3998, 4481, 4505, 91, 1906], - [0, 23266, 2587, 23267, 614, 6435, 1936, 2741, 11512], - [3, 517, 14], - [2, 3191, 1422], - [3, 31504, 15], - [1, 2343, 27469], - [2, 13163, 10101], - "expose-gc", - [0, 15821, 27461, 27473, 2487], - "-detector", - [3, 20575, 13], - "thingies", - [0, 23266, 2587, 23267, 614, 6435, 1936, 1623, 3585, 1644], - "browser-st", - "dout", - [2, 27474, 27475], - "yargs-", - "@types/depd", - "rser", - "unparser", - [2, 27477, 27480], - "@11ty/posthtml-urls", - "inclu", - "-language", - [2, 8785, 27484], - [2, 27483, 27485], - [2, 5340, 27486], - "@moch", - "a/docdash", - [2, 27488, 27489], - "fail-", - "on-e", - [2, 10372, 4408], - [2, 27492, 27493], - [2, 27491, 27494], - "s-utils", - [2, 13587, 27496], - "inline-links", - [2, 3986, 27498], - "rewiremock", - "unexpected", - [2, 668, 27511], - "-eventemitter", - [2, 27501, 27503], - [3, 27504, 11], - [2, 27505, 3053], - [2, 27505, 3065], - [3, 27507, 12], - [2, 27508, 2917], - "uslug", - [3, 1208, 16, 5], - "@11ty/recursive-copy", - "node-retrieve-globals", - [2, 9374, 27515], - "match-helper", - [1, 2343, 27522], - [2, 5329, 11807], - [2, 5340, 23767], - [2, 9309, 27520], - "node-loader", - "@zachleat/noop", - [0, 27523, 27524, 27527, 2537], - [0, 12396, 23288, 23289, 3746, 4233, 23257, 23258], - [0, 7729, 4874, 1414, 2854, 3493, 1894, 3985, 3998, 4505, 91, 1906], - "test-console", - "xmllint", - [0, 23266, 2587, 23267, 614, 6435, 1936, 3493, 6892, 1633], - [1, 2343, 27529], - [0, 15821, 23215, 27535, 2523], - "-exports", - [2, 151, 27533], - "lcov", - "moji", - [2, 9477, 7204], - [0, 23266, 2587, 23267, 614, 6435, 1936, 6941, 11512, 32101, 32122, 3661], - [1, 2343, 27538], - [2, 120, 28708], - [0, 27539, 27540, 27541, 4139], - [0, 24566], - [0, 1999, 3165, 1894, 4387, 4389], - [0, 6892, 1936, 1644, 1646], - "define-", - [2, 14678, 3205], - [2, 27542, 27543], - [1, 2343, 27548], - "-descriptors", - [2, 9395, 27546], - [0, 0, 27560, 27561, 2523], - "-val", - "ue-fixtures", - [2, 27549, 27550], - [2, 5600, 27551], - [3, 7810, 10], - "-each", - [2, 27553, 27554], - "s-have-names", - [2, 23238, 27556], - [3, 18432, 11], - [2, 27558, 7083], - [0, 4874, 1414, 23276, 2577, 2584, 3310, 1894, 3985, 3998, 4505, 91, 1906], - [0, 1936, 23670, 10381, 1213, 11512, 32143, 12616, 7102], - "@types/gopd", - [3, 6497, 11], - [2, 27563, 19065], - [3, 4637, 11], - [2, 27565, 20102], - [2, 27563, 27566], - [2, 27563, 2568], - [3, 18491, 11], - [2, 27569, 18985], - [2, 13201, 4552], - [3, 26581, 12], - [2, 27572, 19072], - [3, 27573, 13], - [2, 27574, 19077], - [2, 27572, 15058], - [3, 8860, 14], - [2, 27577, 3430], - [3, 8860, 13], - [2, 27579, 3022], - [1, 2343, 27582], - [0, 27583, 0, 27584, 2523], - [0, 1676], - [0, 27, 2671, 2934, 2026, 2078, 32897, 30135, 33117, 32150, 32153, 32154, 32897, 30131, 32155, 5995], - "@sap/hana-client", - [1, 2343, 27587], - [0, 0, 21181, 27588, 2537], - [0, 1623, 5260, 32164, 3561], - [1, 2343, 27590], - [0, 27591, 27592, 27594, 2537], - [0, 2711], - [0, 24118, 24114], - "hrottler", - [0, 1172, 89, 2711, 5130, 10772, 24120, 23361], - [1, 2343, 27596], - [0, 27591, 27597, 27594, 2487], - [0, 32144, 32191, 24118, 24114], - [1, 2343, 27599], - [0, 0, 0, 27600, 2537], - [0, 1172, 89, 2711, 5130, 10772, 24120, 1936, 24122, 36, 965, 1388, 4042, 32199, 32200, 6802], - "unix-dgram", - "webidl2", - "unittest", - [1, 2343, 27605], - [0, 0, 27606, 27607, 2537], - [0, 1700, 2323, 1637, 3561, 2494, 32214, 2482, 2549, 32215], - [0, 1623, 6398, 6400, 5130, 5122, 32219], - [2, 2364, 21928], - "-phantomjs", - [2, 2463, 27609], - [1, 2343, 27613], - "mockJSON", - [0, 27615, 27616, 27617, 2537], - "mockAjax", - [0, 3220, 4110], - [0, 1149, 2228, 2258, 2274, 2281, 2314, 1776, 1209, 705], - [0, 1367, 32226, 32227, 1745, 1776, 18011, 699], - [1, 2343, 27620], - "faste", - [0, 0, 27621, 27625, 2487], - [0, 23689, 4874, 28502, 2765, 2272, 4130, 4487, 31194, 91, 31195], - "st-validator", - [2, 27619, 27622], - [2, 5310, 2282], - [0, 1973, 5472, 11132, 13841, 28522, 2765], - "@icebob/node-memwatch", - [1, 2343, 27642], - "@types/bunyan", - "oredis", - [2, 8802, 27629], - "no", - "@types/pino", - "avsc", - [2, 1317, 1289], - "cbor-x", - "dd-trace", - "etcd3", - "event-l", - "oop-stats", - [2, 27638, 27639], - "fakerator", - [0, 27653, 27661, 27663, 2523], - "gc-stats", - "jaeger-client", - "kafka-node", - "-repl", - [2, 3219, 27646], - "msgpack5", - "nats", - "node-n", - "ats-streaming", - [2, 27650, 27651], - [0, 16738, 35957, 7824, 2798, 3717, 4468], - [2, 29351, 4255, 591], - "notepack.io", - "redlock", - "rhea-promise", - "thrift", - "v8-natives", - [2, 4712, 13083], - [ - 0, 32243, 10, 13, 16, 19, 21, 24, 26, 30, 32, 34, 53, 87, 192, 22559, 19181, 442, 16738, 8755, 554, 4864, 5087, - 4874, 5254, 1009, 1011, 27726, 1193, 1437, 16307, 1567, 1610, 10936, 1177, 1895, 1938, 1939, 1942, 1955, 2020, - 2151, 32245, 2070, 2203, 2675, 1192, 2780, 2832, 3534, 1894, 4039, 4094, 4135, 4484, 4494, 4507, 91, 4523, 4769 - ], - [3, 14584, 12], - [0, 1192, 91, 1098, 5472], - "messagebus", - [1, 2343, 27667], - "distributed", - [0, 27668, 27670, 27671, 2523], - [0, 11518, 1420, 1437, 1457, 1525, 1544, 16082, 3445, 3613, 3616, 4200, 4207, 33212, 4562, 4729], - "ppsm", - [ - 0, 53, 368, 7948, 370, 554, 811, 816, 32251, 842, 16145, 966, 968, 972, 974, 11485, 5087, 19799, 4874, 4880, - 4883, 24370, 10844, 9241, 1009, 1011, 1030, 32252, 10783, 1165, 1610, 1177, 1895, 1903, 1938, 1953, 1958, 1959, - 1192, 2802, 695, 3363, 3400, 3561, 37015, 32253, 1894, 89, 3824, 3847, 4039, 4042, 8849, 4057, 15277, 2278, - 4315, 4383, 91, 1983, 32255 - ], - [0, 5472, 1192, 4967, 17758, 1676, 32264], - [1, 2343, 27673], - [0, 27674, 27675, 27676, 4139], - [0, 2757, 32269], - [0, 32272, 32273, 2398, 2036, 2899, 5354], - [ - 0, 21738, 13230, 1676, 1739, 1745, 16284, 8623, 1179, 2036, 1383, 6706, 3430, 32275, 32277, 1209, 6807, 1783, - 1283, 5354, 26096 - ], - [1, 2343, 27682], - "zone", - "timezone", - "olson", - "iana", - [0, 27683, 27684, 27685, 2399], - [0, 32281], - [0, 3088, 3310, 1187], - [0, 3088, 32289, 4017, 36, 5995], - [2, 5335, 553], - [2, 1351, 27686], - [2, 21289, 27687], - "-provider", - [2, 2138, 27689], - [2, 23107, 27690], - [2, 21289, 27691], - [2, 21289, 553], - "worker-", - [2, 27694, 10057], - [2, 21289, 27695], - [3, 27687, 16], - "extdocument", - [2, 27697, 27698], - [2, 4619, 27699], - [3, 27700, 23], - [2, 27701, 103], - "vscode-uri", - [1, 2343, 27721], - "cohaszing", - [2, 15276, 27705], - [3, 25072, 11], - "monaco", - "@remcohaszing/eslint", - "remcohaszing", - [2, 3996, 27710], - "yaml-l", - [2, 15675, 2995], - [2, 27712, 27713], - [2, 27716, 27717], - [3, 162, 22], - "tegrations-common", - [2, 8214, 27719], - "-pattern", - [2, 10853, 11597], - [0, 27727, 27728, 27729, 4139], - "monads", - "either", - "maybe", - "result", - [2, 1101, 1177], - [0, 26987], - [0, 4874, 1414, 3167, 1894, 3985, 3998, 4505, 91, 1906], - [0, 3167, 32300, 32301, 10381, 7131, 32303, 1936, 3987, 1783, 4549], - "-connect", - [2, 1304, 27730], - "paginator", - [2, 10784, 27732], - [1, 2343, 27736], - "free-swig", - [0, 0, 0, 27741, 2537], - "gridfs-stream", - "mongodb-", - [2, 3764, 57], - [2, 27738, 27739], - [0, 3167, 614, 6435, 1936, 10368], - [2, 17037, 15988], - [2, 22785, 4408], - "@types/rollup", - "istration", - [2, 20897, 27745], - "GUI", - [1, 2343, 27753], - "manage-mongo", - "phpmyadmin", - "UI", - "web-based", - [0, 0, 0, 27754, 2399], - [0, 3167, 614, 6435, 1936, 10381, 1213], - [1, 2343, 27756], - [0, 0, 27763, 27766, 2537], - "@mon", - "godb-js/saslprep", - [2, 27757, 27758], - "-string-url", - [2, 21404, 27760], - [2, 27738, 27761], - [0, 16268, 2228, 2272, 3220, 4720, 4535, 17565, 2296, 32324, 2283, 2253, 2273, 2281], - "socks", - "snappy", - [0, 4576, 5131, 7310, 31568, 13735, 22856, 1388, 15525, 32334, 32336], - "mocha-sinon", - "gcp-metadata", - "legacy", - [1, 2343, 27783], - "erberos", - [2, 13053, 27771], - [3, 7814, 10], - "lprep", - [2, 27773, 27774], - "v8-heapsnapshot", - [3, 27759, 12], - "zstd", - [2, 27777, 27778], - [3, 15507, 14], - [2, 27780, 1002], - [2, 9415, 1435], - [0, 27794, 27808, 27809, 2537], - "mongodb-c", - [2, 20203, 7141], - [2, 27784, 27785], - [3, 1982, 16], - "@jimp/js-bmp", - "used-imports", - [2, 27787, 27789], - [3, 13547, 28], - [2, 27791, 591], - "@jimp/js-gif", - [0, 16868], - "@jimp/js-jpeg", - "@jimp/js-png", - "@jimp/js-tiff", - "kareem", - "mpath", - "mquery", - "sift", - [2, 27804, 27811], - "acquit", - [3, 24788, 12], - "acquit-ignore", - "acquit-", - [2, 27806, 3209], - [0, 1192, 1177, 4468, 1894, 91, 5087, 4874, 16874, 1895, 1011, 1009], - [0, 32345, 32346, 1623], - [2, 3044, 5056], - "-blit", - "odm", - [2, 27815, 27816], - "datastore", - [3, 27802, 15], - "ur", - [2, 27818, 27819], - [3, 27802, 13], - "circle", - [2, 27823, 27824], - "-callbacks", - [2, 1292, 27821], - [3, 27817, 14], - "olor", - [2, 27828, 27831], - "node-monitor", - [2, 21004, 14837], - [3, 27820, 15], - "probe", - "JMX", - "ntain", - [2, 27828, 10177], - [2, 27823, 9970], - [2, 27818, 27836], - [2, 9280, 3233], - "displace", - "dashboard", - "monitoring", - "control ", - [2, 27839, 9872], - [2, 27842, 27843], - [3, 27834, 15], - "ther", - [2, 27818, 27860], - [3, 6503, 9], - "ngodb", - [2, 27845, 27846], - "-middleware-cast-ids", - [2, 3236, 27848], - [3, 27849, 16], - "fields", - [2, 27850, 27851], - "-callback", - [2, 2034, 27853], - [2, 27850, 27854], - [2, 27850, 14690], - [2, 27850, 3766], - [2, 9251, 21404], - [2, 27850, 27858], - "fisheye", - "gitbook-cli", - "gitbook-", - "plugin-a", - "nker-enable", - [2, 27863, 27864], - [2, 27862, 27865], - [3, 27866, 15], - [2, 5317, 4147], - [2, 27867, 27868], - [2, 27876, 27877], - "edit-link", - [2, 27867, 27871], - [2, 27867, 2195], - [2, 27867, 588], - [2, 27850, 1676], - [3, 27844, 14], - "lip", - [2, 27818, 3428], - [2, 27818, 10098], - [2, 27818, 24171], - [2, 27818, 27882], - "quantize", - [2, 27818, 24800], - [2, 27885, 27886], - [3, 27883, 14], - "otate", - [2, 27818, 17487], - "@jimp/utils", - [1, 2343, 27903], - [2, 27891, 27892], - "@jimp/co", - "nfig-eslint", - [2, 24787, 27894], - [3, 549, 17, 16], - [2, 27896, 1984], - [3, 27890, 13], - "commist", - "node-self", - "help-me", - [2, 1983, 27901], - [3, 19232, 22, 6], - "mqtt-packet", - [0, 27906, 23215, 27911, 2487], - "-allocator", - [2, 6988, 27904], - [0, 9315, 34578, 31644, 26972, 32360, 32364, 32365], - [2, 19332, 6706], - "wsl-utils", - "monocart-coverage-reports", - "worker-timers", - [0, 1644, 1936, 6843, 11043, 18944, 18089], - "aedes-cli", - [3, 5616, 9], - [2, 27913, 202], - [2, 11932, 27914], - "leak", - "ed-handles", - [2, 27916, 27917], - "mqtt-", - [2, 27919, 21404], - "tinyglobby", - "node-style-text", - "level-store", - [2, 27919, 27923], - [1, 2343, 27929], - "/subscribe", - [2, 20001, 27926], - [2, 19177, 1783], - [0, 0, 0, 27932, 2537], - [2, 27931, 29682], - [3, 218, 19], - [0, 3561, 22147, 676, 134, 89, 1623, 32372], - [2, 26343, 27934], - "ibus-quod", - [1, 2343, 27937], - "@tediousjs/connection-string", - [0, 27938, 21181, 27941, 2523], - [0, 16837], - "msnodesql", - "tds", - [0, 1623, 5260, 3561], - "node-tds", - "qlserver", - [2, 3343, 27943], - "msnodesqlv8", - "node-m", - [1, 2343, 27950], - "node-mssql", - "list-dependents-cli", - [0, 0, 27951, 27952, 34352], - [ - 0, 53, 87, 32389, 10706, 32390, 1177, 2765, 2297, 2881, 2886, 2895, 2898, 2910, 2923, 29946, 3750, 3758, 4042, - 4045, 6390, 4071, 4073, 25238, 824 - ], - [0, 22562, 3758, 3541, 13428, 32395, 32396, 5926, 5472, 11132, 3750, 28522, 824, 30271], - "@bundled-es-modules/cookie", - [3, 27953, 20], - "until-async", - [1, 2343, 27965], - [3, 546, 12], - "nfirm", - [2, 27957, 27958], - "@types/sta", - "tuses", - [2, 27960, 27961], - "headers-", - [2, 27963, 6422], - [0, 27970, 27971, 27972, 34352], - [2, 8140, 14643], - "json-bigint", - "page", - "page-with", - [0, 1282, 2555, 3744], - [0, 1389, 1391, 1437, 1700, 2323, 2351, 2404, 2494, 32402, 2530, 2541, 3159, 32405, 89, 3824, 4603], - [0, 89, 5128, 4384, 32410, 4453, 6380, 2555, 5131], - [1, 2343, 27974], - [0, 27975, 27976, 27977, 4139], - [ - 0, 32421, 688, 28208, 691, 9712, 9296, 1091, 1092, 1437, 1458, 1543, 1676, 2226, 2687, 2822, 12284, 3173, 3422, - 3423, 3467, 3742, 4135, 4183, 4213, 6479, 176, 36864, 28731, 4548, 13291 - ], - [ - 0, 11976, 192, 5467, 9737, 32432, 29355, 27654, 811, 8850, 816, 6373, 5245, 7637, 7746, 7812, 5254, 28736, - 28557, 7677, 36874, 2675, 2931, 3297, 1890, 12285, 1894, 4042, 15277, 4494, 4507, 91, 1984 - ], - [0, 5592, 1118, 2210, 1745, 27662, 29370, 3422, 3452, 29369, 29365, 29368, 29367, 28360, 9591, 8124], - "append-field", - [1, 2343, 27980], - [0, 0, 27985, 27987, 2443], - "fs-temp", - "testd", - "ata-w3c-json-form", - [2, 27982, 27983], - [ - 0, 5535, 972, 5087, 4880, 4883, 34722, 1009, 1011, 1597, 1701, 1177, 1895, 1955, 1959, 1961, 2193, 32447, 1192, - 32448, 3165, 30935, 32449, 1894, 89, 3824, 34725, 4201, 4468, 91, 32450 - ], - "formdata", - [0, 89, 31611, 5128, 20542, 4439, 32453, 1473, 6400, 13161, 30858, 3807, 7320, 31152, 6653, 32454], - [1, 2343, 27989], - [0, 27990, 27991, 27993, 2537], - [0, 11804], - [0, 87, 90, 4880, 1843, 1845, 1192, 3775, 3904, 4042, 4045, 4055, 4067], - "array-union", - [0, 4576, 5131, 7310, 31568, 13735, 22856, 1388, 32464, 32465, 15525, 11415, 7201], - [3, 20454, 11], - "oxy-addr", - [1, 2343, 27997], - [0, 0, 27998, 28000, 2537], - [ - 0, 192, 4874, 4880, 4883, 4887, 1009, 23648, 1177, 1895, 21564, 1938, 1953, 1955, 1958, 1959, 2675, 1192, 2990, - 3165, 1894, 3720, 89, 3824, 3885, 3889 - ], - "pend", - [0, 89, 7433, 38, 3884, 3885, 32473, 3286], - [3, 32265, 24], - "@jsumners/line-reporter", - [1, 2343, 28005], - "vue-drag", - [0, 0, 28006, 28011, 2537], - [ - 0, 3421, 2832, 2297, 2899, 89, 3875, 4193, 1145, 1177, 1209, 3698, 4072, 9381, 1503, 1593, 3729, 2924, 1317, - 3824, 32487, 91, 53, 4874, 2900, 3876, 4880, 1195, 8821, 2925, 107, 2069, 4883, 87, 4884, 1959, 3904, 32488, - 966, 2904, 2881, 2912, 2895, 38299, 1011, 11470 - ], - "test report", - "html ", - "html report", - " to ", - [0, 2062, 4162, 89, 3797, 32491, 1693], - "json to html", - [1, 2343, 28014], - [0, 0, 0, 28015, 2537], - [0, 3857, 5131, 12295, 12296, 6574, 2090, 11328, 30045, 32497, 2636, 2295], - [1, 2343, 28017], - [0, 0, 28018, 28019, 2537], - [0, 97, 4880, 5091, 89, 3857, 91], - [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 15571, 35060, 32504, 158, 32505], - [1, 2343, 28021], - [0, 26338, 28028, 28029, 2523], - "tory-reporter", - [2, 2916, 28022], - "mezr", - "web-a", - "nimations-js", - [2, 28025, 28026], - [0, 1178, 1177, 1879, 1895, 1938, 1947, 1955, 1959, 1894, 32510], - [0, 3857, 5128, 31912, 89, 5131, 12295, 181, 3730, 32516, 27819, 9906, 10036, 32527, 32529, 1478, 7521], - "bin-packing", - [1, 2343, 28032], - [0, 28037, 28041, 28053, 2537], - [2, 20876, 28090], - "autolink-", - [2, 28001, 26766], - "sqlstring", - [0, 1654, 32535, 1655, 1660, 3744], - [2, 27679, 2085], - "urun", - "utest", - [ - 0, 32538, 10821, 14689, 10828, 32540, 1178, 1193, 38304, 1668, 1177, 1903, 1938, 1954, 1958, 1959, 32541, 1970, - 2675, 1192, 2990, 1894, 3720, 89, 3857, 32510, 3904 - ], - [2, 28050, 28065], - [2, 28887, 28044], - "v2", - "aws-s", - "sl-profiles", - [2, 28045, 28046], - "generate-", - [2, 28048, 3046], - [3, 29934, 12], - "placeholders", - [2, 5773, 28051], - [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 13814, 15480, 9816, 1653], - [1, 2343, 28055], - [0, 28060, 28061, 28062, 2487], - "assert-diff", - "sync-await", - [2, 15907, 28057], - "poku", - [0, 2018], - [0, 5079, 1177, 21166], - [0, 3857, 5128, 31912, 89, 5133, 5131, 12295, 12296, 181, 24633, 32543, 32552], - [1, 2343, 28064], - [0, 28066, 28068, 28070, 4139], - "vitest-pool-workers", - [0, 21174, 4649], - "thenify", - [ - 0, 32558, 48, 53, 5241, 85, 87, 14128, 90, 365, 370, 6372, 811, 816, 6373, 972, 20562, 4880, 1178, 1193, 1610, - 1177, 1895, 1935, 1939, 1958, 1959, 1961, 2126, 29945, 2193, 32559, 1192, 30935, 1894, 3720, 89, 3824, 32561, - 3904, 4039, 4042, 4045, 4073, 91 - ], - [2, 31468, 31471], - [0, 89, 32225, 30245, 4627, 5398, 8190, 8191], - [1, 2343, 28077], - "bats", - [2, 28075, 28493, 28553], - "switcher", - "@", - "@prisma/dmmf", - [0, 28079, 28081, 28082, 4139], - "gable-next", - [0, 32571, 31528, 1461], - [3, 29754, 14], - [ - 0, 30533, 5535, 966, 968, 972, 32573, 4859, 4874, 4880, 4883, 1030, 16480, 1651, 2832, 23535, 89, 3824, 4201, - 1531, 4484, 91, 1984 - ], - [0, 89, 6398, 5066, 5131, 9320], - [1, 2343, 28086], - [2, 28085, 3259], - [3, 28092, 16], - [0, 28087, 28089, 28096, 2399], - [0, 4484, 32597], - "couchdb", - [0, 32632, 5535, 4201, 89, 3824], - "spanner", - [2, 30534, 4675], - "@testcontainers/postgresql", - "fastest-", - [2, 28093, 18729], - "rtl-css-js", - [0, 89, 590, 1623], - [1, 2343, 28099], - "iconista", - [0, 0, 28102, 28104, 2537], - "pnpm10", - "libreact", - [0, 1148, 2899, 3697], - "jsxstyle", - [0, 1623, 1473, 32453, 2585], - [1, 2343, 28106], - [0, 28107, 0, 7573, 2523], - [0, 32733, 1004, 32730, 32737, 32739, 32744, 32722, 32736, 32741, 32720, 32678, 32725, 32727], - [1, 2343, 28109], - [0, 0, 28110, 27147, 2523], - [ - 0, 53, 87, 92, 192, 5467, 5583, 16952, 6373, 10615, 5087, 4874, 1009, 1011, 1031, 17584, 1178, 1193, 19839, - 1540, 1610, 1177, 1903, 1938, 1954, 1958, 1988, 2193, 2675, 2742, 1192, 2780, 2990, 4039, 4042, 4076, 91, 4630 - ], - [2, 30495, 28112], - "lysia", - [1, 2343, 28114], - [0, 0, 28124, 24467, 4139], - "gitcloud", - "hasbin", - [2, 34316, 3863, 34320], - "page-icon", - "premove", - "@types/hasbin", - "@types/pa", - "ge-icon", - [2, 28121, 28122], - [0, 8144, 1465, 1584, 1628, 2092, 6327, 3177, 1894, 4028, 2278, 4111, 4469, 91, 4027, 2924, 4677, 4689], - "desktop", - "@vue-macros/common", - [1, 2343, 28128], - [0, 2513, 28129, 28131, 2537], - [0, 5535, 4201, 968, 972, 32632, 2780], - "proxy-lib", - [0, 89, 1564, 32775, 32776, 32777], - "font-finder", - "pbxproj-dom", - "montag", - "simple-plist", - "ios-device-lib", - [2, 21464, 1155], - "proper", - "-light", - [1, 2343, 28146], - "-lockfile", - [2, 28138, 28141], - "ios-", - "sim-portable", - [2, 28143, 28144], - [0, 28148, 28149, 28156, 2487], - [2, 28457, 28462], - [0, 32782, 4484], - [0, 5535, 4201, 32632, 32786, 1845, 89, 3824], - "-merge-patch", - [2, 2072, 28150], - [3, 26989, 11], - "ackage", - [2, 28152, 28153], - "@nativescript/doctor", - [0, 32788, 89, 32789], - "-dev-xcode", - [2, 3271, 28157], - "provi", - [1, 2343, 28168], - "sion-finder", - [2, 28159, 28161], - [2, 5131, 28162], - [2, 28143, 28163], - "@rigor789/trapezedev-project", - "@rigor789/", - [2, 28166, 14562], - [0, 28169, 28170, 28171, 2523], - [0, 1593, 97, 32796, 32795], - [ - 0, 695, 3709, 2924, 1628, 91, 53, 2969, 4677, 1195, 4307, 32808, 4689, 87, 4359, 4681, 92, 83, 1198, 5756, 61, - 78, 76 - ], - [0, 7201, 1676, 5131], - [2, 32904, 364], - [1, 2343, 28174], - [0, 0, 28181, 28185, 2399], - "@types/pl", - "ist", - "@types/plist", - "@types/retry", - [3, 5364, 9], - [2, 28179, 3924], - [0, 4874, 9743, 4579, 1983], - "@types/pacote", - "btab", - [2, 8153, 28183], - [0, 1983, 5130, 6731], - [1, 2343, 28188], - "@types/tunnel", - [0, 0, 28201, 28212, 2523], - "@types/xml2js", - "@types/ar", - "chiver", - [2, 28190, 28191], - "@types/qr", - "-image", - [2, 28193, 28194], - [3, 7810, 11], - [2, 28196, 2138], - [3, 13418, 17], - [3, 5090, 11], - [2, 32904, 4412], - [0, 1175, 1195, 1267, 1610, 1628, 2092, 3342, 8119, 4111, 32821, 4307, 188, 4634, 4639, 4640, 4645, 2924, 4681], - "er-lockfile", - [2, 28199, 28202], - "@types/np", - "mcli__arborist", - [2, 28204, 28205], - [3, 9315, 10], - [2, 9710, 15774], - "al-analytics", - [2, 9788, 28209], - [2, 28207, 28210], - [0, 9006, 29633, 32827, 32828, 32829, 32830, 32831, 4967, 32832], - [1, 2343, 28216], - [2, 31819, 31823], - [3, 27933, 13], - [0, 28217, 0, 27026, 4139], - [0, 1415, 1842, 31290, 31331, 4562, 31386, 6330], - [1, 2343, 28226], - "afinn-165", - "-fin", - "ancialmarketnews", - [2, 28220, 28221], - [2, 28219, 28222], - "apparatus", - "memjs", - [0, 0, 28227, 28250, 2523], - [ - 0, 48, 53, 61, 78, 87, 92, 5601, 32840, 5087, 4874, 15600, 1009, 1011, 1175, 1193, 1198, 1177, 1881, 1895, 1938, - 1955, 1192, 11948, 1894, 4131, 91 - ], - "stopwords-iso", - "@libsql/client", - "wordnet-db", - [2, 31005, 26449, 28684], - "browserfs", - [2, 2441, 20008], - "pegjs", - "uubench", - [2, 32904, 2942], - " language processing", - [2, 3273, 28237], - "arti", - "fical intelligence", - [2, 28239, 28240], - "Porter stemmer", - "Lancaster stemmer", - "bigram", - "trigram", - "quadgram", - "ngram", - "stemmer", - "bayes", - [0, 1192, 2022, 6703, 1149, 7003, 1862, 11857, 5472, 2275], - "classifier", - [1, 2343, 28254], - "phonetic", - [0, 28255, 28257, 28259, 2523], - [0, 28502, 4130], - "metaphone", - [0, 23689, 28556, 2323, 31190, 2765, 3560, 31541, 91], - "inflector", - [0, 5472, 11132, 13841, 28522, 13426], - "Wordnet", - "tf-idf", - "logi", - " regression", - [2, 17132, 28263], - [2, 28262, 28264], - [2, 4420, 28256], - "jaro-winkler distance", - " distance", - [2, 26006, 28268], - "string ", - [2, 28270, 26017], - "-of-speech tagger", - [2, 3251, 28272], - "Eric Brill", - "Brill tagger", - " analysis", - [2, 4137, 28276], - "maxim", - "um entropy modelling", - [2, 28278, 28279], - [1, 2343, 28284], - "@mrleebo/prisma-ast", - [2, 31733, 21302], - [0, 28292, 28293, 28294, 2537], - "secure-keys", - [2, 28288, 6008], - "nconf-yaml", - "@prisma/c", - "key value store", - [2, 18124, 13729], - "plugabble", - [0, 1086, 1437, 1700, 2070, 2714, 3183, 3760, 705, 4039, 4135, 4734], - [ - 0, 13194, 7740, 28197, 4865, 29105, 23689, 9129, 7892, 4874, 11304, 16936, 20959, 28502, 5254, 28189, 28556, - 2323, 31190, 2765, 4089, 4130, 91 - ], - [0, 1098, 1973, 5472, 3750, 11132, 13841, 28522, 4130], - [1, 2343, 28296], - [0, 9756, 9839, 28297, 2537], - [ - 0, 1871, 6843, 3656, 4289, 7062, 6922, 6981, 6701, 6581, 6700, 1111, 1867, 5281, 200, 6876, 7009, 7201, 6575, - 6611, 6795, 6960, 7135 - ], - [1, 2343, 28299], - [0, 7558, 28300, 28301, 2523], - [0, 4874, 668, 32894, 2929, 32895, 91, 4579], - [0, 32901, 23542, 5130, 23543, 6812, 27, 5592], - [1, 2343, 28305], - "near social", - "bridge", - [0, 28306, 0, 28307, 4139], - [0, 2856, 32889, 2822, 5307], - [0, 29699, 32891, 1541, 1745, 29703, 29753], - [1, 2343, 28311], - [3, 18018, 14], - [2, 28309, 1633], - [0, 0, 28313, 28315, 2487], - "exec-time", - [0, 1429, 4856, 4874, 32903], - "@lit/context", - [0, 32910, 37123, 32911, 32912, 32913, 13428, 5472, 6533], - [1, 2343, 28317], - [0, 28318, 0, 26863, 2399], - [0, 32918, 32919, 1699, 3547], - [1, 2343, 28320], - [0, 6263, 0, 28321, 2523], - [0, 89, 5128, 9267, 553], - "@codspeed/", - "payload", - "@fig/complete-commander", - "@golevelup/nestjs-discovery", - "xhr2-cookies", - [2, 30999, 30499], - [1, 2343, 28330], - [2, 28338, 28349, 28603], - [0, 26964, 0, 26997, 2537], - "@postman/tough-cookie", - [2, 15679, 19490], - "chardet", - [1, 2343, 28337], - "liquid-json", - "postma", - [0, 26964, 0, 27001, 2487], - "@interna", - "n-collection", - [2, 28336, 28339], - "-transformer", - [2, 28340, 28341], - "postman-", - [2, 28343, 705], - "postman-r", - [2, 28345, 96], - "d-error", - [2, 14628, 28347], - "tionaliz", - "@postman/", - [1, 2343, 28359], - "shipit", - [2, 28350, 28352], - [2, 29833, 17978], - "file_lint", - [2, 17878, 28355], - "parse-git", - [2, 28357, 2687], - [0, 28364, 28381, 28409, 2537], - "postman", - [2, 178, 28363], - "rest-client", - "rack-changes", - [0, 32953, 25996], - "@profoundlogic/hogan", - [3, 2665, 10], - "@grpc/grpc-js", - "@grpc/", - "print-sizes", - "proto-loader", - [2, 28368, 28370], - "@newrelic/security-agent", - "@tyriar/fibonacci-heap", - "in-the-middle", - [2, 2701, 28374], - "module-de", - "s-from-path", - [2, 4378, 28377], - [2, 28376, 28378], - [2, 4013, 28374], - [0, 13662, 1389, 35268, 4389], - "@aws-sdk/s", - "3-request-presigner", - [2, 28382, 28383], - "@koa/router", - "@newrelic/", - [2, 28386, 7625], - "-oss-cli", - [2, 3284, 28388], - [2, 28386, 28389], - "test-util", - "ities", - [2, 28391, 28392], - [2, 28386, 28393], - "@slack/bolt", - "@smithy/eventstream-codec", - "@smithy/", - "util-utf8", - [2, 28397, 28398], - "borp", - [2, 16306, 20353], - [3, 4962, 10], - "iler-runtime", - "git-r", - "aw-commits", - [2, 28404, 28405], - "CKEditor", - "self-cert", - [0, 7518, 5398, 17819, 18266, 32958, 12075, 32960, 4967, 1389], - [1, 2343, 28412], - "debugging", - [0, 28414, 28424, 28430, 2537], - "profiling", - [ - 0, 32980, 32981, 32983, 32984, 32986, 1398, 1437, 1443, 1759, 1763, 2018, 2071, 37853, 2182, 2212, 2687, 2720, - 17450, 2856, 32987, 32988, 9478, 3729, 4135, 4164, 4400, 91, 32990, 32993, 32989 - ], - "unlimited-timeout", - "WYSIWYG", - "WYSIWYW", - "@panva/hkdf", - "id-client", - [2, 3445, 28419], - "-to-string", - [2, 694, 28421], - [2, 3698, 28422], - [0, 188, 32996, 32997, 33004, 33007], - "@types/oauth", - [2, 4874, 3360], - "@next", - "is-in-ssh", - "powershell-utils", - [0, 32940, 33010, 5130], - [1, 2343, 28437], - [3, 13983, 14], - [2, 28432, 89], - "-pragmatic", - [2, 13062, 28434], - "@edge-runtime/jest-environment", - [0, 28447, 28448, 28449, 34352], - "oauth2", - "nextauth", - "seneca-transport", - [2, 36883, 28443], - "rich-text", - "astify", - "async ", - [2, 28444, 1852], - [2, 28444, 5746], - [0, 97, 33015], - [ - 0, 1192, 2278, 2675, 89, 1843, 1177, 2924, 1894, 1610, 3824, 48, 1628, 3988, 91, 53, 2990, 3400, 4111, 4677, - 4880, 1195, 4307, 33020, 33021, 9310, 28809, 10837, 87, 11011, 90, 1959, 827, 33023, 1895, 1947, 1955, 2780, 92, - 10821, 29872, 10840, 1011, 10825, 83, 1009, 32341, 28970 - ], - [0, 89, 4627, 26612, 35126, 33026, 5131, 29832, 91, 33027, 33033], - "grammy", - [1, 2343, 28463], - "qs-esm", - "TestBed", - "how-to", - "@scripts/build", - [2, 28573, 553], - [3, 14691, 18], - [2, 32700, 28478], - [2, 12392, 1098], - "dataloader", - "bson-objectid", - "nboarding", - [0, 28481, 28492, 2514, 2537], - "render-jsx", - "@rolldown/pluginutils", - [2, 28472, 1973], - "localhost", - "tunneling", - "webhook", - [2, 28471, 28596], - [3, 37983, 14], - [3, 34476, 19], - [2, 16639, 15112, 28475], - "onesy", - "hecker", - [2, 16639, 28477], - "vitest-runner", - "grab", - [2, 28489, 28490], - "deep-defaults", - [0, 1437, 1483, 1525, 3127, 14774, 4135, 33043], - [2, 10740, 28487], - "enqueue", - [2, 14185, 4225], - "minstache", - "sliced", - "table-printer", - [2, 3192, 5701], - [3, 30527, 35], - "collisions", - "@rstest/core", - [0, 8147, 33046, 4874, 5254, 33047], - [2, 28508, 28526], - "@nightwatch/chai", - [3, 28494, 12], - [3, 2791, 13], - [2, 28496, 2324], - [2, 28495, 28497], - [2, 3294, 11496], - [2, 28495, 28499], - "lenium-webdriver", - [2, 5252, 28501], - [2, 1432, 3294], - [2, 11097, 20500], - "didyoumean", - [3, 28499, 11], - "@amaui/ui-react", - [3, 5069, 14], - "axe-verbose", - [2, 28506, 28509], - [3, 17011, 11], - [2, 28511, 57], - [3, 31827, 17, 5], - [2, 4925, 4381], - [3, 28514, 12], - [2, 11937, 16609], - [2, 28515, 28516], - "@payloadcms/translations", - "wait-on", - [1, 2343, 28527], - [2, 3294, 676], - "selenium", - "automat", - "ed-testing", - [2, 28523, 28524], - "acos", - [0, 28528, 28529, 2514, 2537], - [ - 0, 35198, 4763, 1497, 1687, 33057, 4361, 1983, 1082, 1371, 1676, 9348, 12449, 977, 1636, 11480, 3958, 4135, - 11501, 1458, 11478, 668, 33058, 28564, 2822, 6042, 3479, 3742, 29535, 33059, 26379, 4955, 33149, 3530, 25648, - 4542, 28623, 33061, 11869, 27921, 5732, 33062, 2628, 3090, 4748, 2007, 33063, 19639, 7610, 37014, 33064, 4555, - 33065, 33068, 29533, 33069, 10895, 5210, 9485, 33070, 33071, 3749, 33074, 33075 - ], - [ - 0, 23813, 2278, 4042, 4548, 1984, 1448, 4549, 33080, 30138, 33082, 91, 12396, 2024, 3975, 5245, 33390, 30559, - 5254, 33083, 34673, 7637, 7812, 12127, 3327, 8648, 20374, 11868, 23312, 33084, 7744, 21626, 3963, 33087, 33088 - ], - [1, 2343, 28536], - [2, 28532, 28547], - [3, 11555, 18], - "text-", - [2, 28533, 9254], - [2, 11122, 28534], - [0, 28538, 0, 2514, 2523], - [3, 11138, 16], - [0, 1506, 33093, 3460, 4535], - "mochify", - [3, 4887, 19], - "-universal", - [2, 3752, 28541], - [2, 3752, 1289], - "@backstage/backend-common", - [1, 2343, 28546], - [0, 28548, 28549, 28551, 2399], - "owellformed", - [0, 1512, 2151, 2720], - [0, 1177, 1939, 1192], - "propagate", - [0, 8310, 1179, 8635, 200, 28582], - [1, 2343, 28555], - [3, 31893, 18, 13], - [2, 12302, 28732], - [0, 0, 28560, 28561, 2399], - "clang-format", - [2, 23260, 28729], - "n-api", - "napi", - [ - 0, 811, 816, 1437, 1836, 1177, 1895, 1938, 33110, 14282, 2674, 2675, 2990, 2899, 6041, 1894, 4039, 4042, 4055, - 33111, 4232, 4390, 11482 - ], - [0, 4989, 1283, 3358], - [1, 2343, 28563], - [0, 0, 28571, 2514, 4139], - "fontace", - [2, 14743, 4504], - "ffee", - [2, 2251, 28566], - "grunt-i", - [2, 2426, 2499], - [2, 28568, 28569], - [0, 1009, 1011, 1177, 1883, 1895, 1915, 1938, 1947, 1955, 1959, 1961, 2675, 2990, 1894, 89, 91], - "baseline-browser-mapping", - [3, 4090, 11], - [2, 28606, 8734], - "host-validation-middleware", - [2, 16826, 5260], - [2, 14614, 28576], - "used-de", - "ps-analyzer", - [2, 28578, 28579], - "@4c/rollout", - "skeleton", - "formate", - [1, 2343, 28587], - [2, 5559, 27], - [2, 28689, 89], - [0, 28597, 28600, 28601, 2537], - "dynamic-", - [2, 28588, 1681], - "filewatcher", - [2, 28914, 594], - "xunit", - "tap-xunit", - "nextjs-api-reference", - [2, 30999, 28884], - "l", - [0, 33139], - [2, 31222, 31227, 31234], - "subdir", - [0, 6503, 1699, 2899], - [0, 5122, 1973, 8791, 33143, 2899, 5130], - [1, 2343, 28609], - "ed/date", - "char-regex", - "emojilib", - "@scripts/", - [2, 28616, 6988], - "skin-tone", - [0, 0, 28621, 28622, 2537], - "s-per-line", - [2, 16233, 28610], - "cspell-config-lib", - "emojis", - "smiley", - "smileys", - [3, 28329, 19], - "smilies", - "ideogram", - "ideograms", - "@nuxt/fonts", - [ - 0, 5535, 5087, 1009, 1011, 33175, 25917, 35358, 1473, 1177, 1895, 1955, 2070, 1192, 1894, 4042, 4073, 4076, - 4201, 4443, 4468, 4474, 4484, 91 - ], - [ - 0, 1473, 57, 6270, 4439, 32453, 6616, 30289, 33190, 30291, 620, 33201, 31453, 1623, 33203, 6653, 33205, 33207, - 3178, 33216 - ], - "unstorage", - "fetch-blob", - "ttypescript", - [2, 1432, 7253], - "nsumers", - [2, 25687, 28627], - "jsdoc-to-mdx", - [1, 2343, 28633], - "@nuxt/icon", - "@nuxt/kit", - [0, 5914, 28661, 28662, 2487], - "igitalbazaar", - [2, 27235, 28634], - [2, 19946, 2903], - "-websocket", - [2, 6710, 28637], - [2, 27694, 1194], - [2, 28660, 32819], - "aes", - "asn", - "asn.1", - "cbc", - "csr", - "des", - "gcm", - "hmac", - "pkcs", - "pki", - "prng", - "rc2", - "rsa", - "sha256", - "sha384", - "sha512", - "tls", - "x.509", - "x509", - [3, 218, 21], - [0, 30533, 192, 5467, 30535, 10614, 6494, 5087, 4874, 1009, 1011, 1177, 1895, 2675, 1192, 1894, 3980, 4468, 91], - [0, 30538, 6710, 14584, 91, 30540, 30543, 5130, 29752], - [1, 2343, 28665], - "seneca-joi", - [0, 26964, 0, 26966, 4139], - "c2dm", - "fcm", - [1, 2343, 28669], - [0, 28670, 28671, 28682, 4139], - [ - 0, 33071, 30616, 26407, 26411, 12396, 7637, 9363, 26414, 26415, 23276, 2577, 2584, 2588, 2681, 2822, 37507, - 3090, 26418, 26568, 12429, 26421, 3958, 9393, 12443, 4542, 4549, 4555, 12449 - ], - [0, 8648, 4874, 7677, 34683, 26431, 1984], - "@nuxt/schema", - "@nuxtjs/color-mode", - "geocoder", - "pulse", - "geocoding", - "geo", - "mapquest", - "agol", - "arcgis", - "tomtom", - [0, 1739, 1745, 34683, 26440, 26445], - [1, 2343, 28695], - "libsql", - [2, 28694, 176], - [3, 5781, 10], - "l-backoff", - [2, 28686, 28687], - [3, 21276, 15], - "require-in", - [2, 28690, 2429], - "piña", - "pigna", - [3, 30585, 14], - [0, 28696, 28697, 28662, 2537], - [0, 2026, 3951], - [ - 0, 30533, 192, 5467, 1300, 30535, 10614, 6494, 5087, 4874, 1009, 1011, 1177, 1895, 2675, 1192, 1894, 3980, 4468, - 91 - ], - "high5", - [2, 12075, 57], - [1, 2343, 28705], - "js-parser", - [2, 1936, 28701], - "-benchmark", - [2, 15512, 28703], - [0, 28730, 28750, 28758, 2537], - "mocha-each", - "neutron-html5parser", - "ookmark", - "colortranslator", - [2, 15277, 12610], - [2, 28712, 28725], - [3, 10130, 17], - "biased-opener", - "data-uri", - [2, 25894, 28714], - "v8-debug", - "v8-profiler", - [2, 28742, 28749], - [2, 28720, 28721], - [3, 32265, 26], - "ble", - [2, 28723, 7059], - [3, 12133, 21], - "vitest-browser-react", - "ber-animation", - "dummy", - [2, 23814, 28898], - "http mock", - "zipper", - [0, 3951, 4474], - "toposort", - "quality-insights", - "growly", - "words", - "shellwords", - [2, 28738, 28741], - "nexe", - "@types/to", - " center", - [2, 9044, 28739], - "posort", - [3, 26699, 15], - "mac os x 10.8", - [2, 4402, 3329], - "windows ", - "8 notification", - [2, 28745, 28746], - "toaster", - "auto-height", - [0, 192, 5467, 10614, 6494, 5087, 4874, 1009, 1011, 1437, 1177, 1895, 2675, 1192, 1894, 3980, 4468, 91], - "tabbable", - [2, 8180, 594], - [2, 29518, 28757], - "@radix-ui/react-checkbox", - [2, 28756, 45], - [3, 28754, 16], - "vfs", - [0, 30538, 6710, 91, 30540, 30543, 5130, 29752, 5995, 6082], - [1, 2343, 28760], - [0, 26964, 0, 26966, 2537], - [2, 28762, 9006], - [3, 28718, 20], - [2, 3958, 28764], - [3, 26414, 16, 5], - [1, 2343, 28767], - "@internal/test-utils", - [0, 26964, 0, 26997, 2443], - "ps-list", - "code-blocks", - "pty", - [2, 6426, 7009], - "forkpty", - "openpty", - [1, 2343, 28787], - [2, 28776, 28777], - "expressi", - "ve-code", - "@node", - [2, 9057, 3642], - [2, 28793, 28798], - "-red/util", - [2, 28778, 28781], - [2, 3341, 2110], - "@node-red/", - "nodes", - [2, 28784, 28785], - [0, 25316, 28788, 28796, 2537], - [0, 603, 11018], - [2, 216, 28812], - [2, 28784, 7047], - "editor-api", - [2, 28784, 28791], - [3, 28718, 19], - "iot", - "fix-dts-default-cjs-exports", - [0, 188, 4646, 1542, 32977, 28692, 28693, 32312, 5592, 18496, 5490, 91, 4799, 998, 6953], - [2, 28826, 16860], - "play", - "sass-graph", - [2, 1152, 14741], - "stdout-st", - [2, 28801, 2187], - "-case-path", - [2, 4938, 28803], - [2, 28742, 28875], - [2, 4550, 13786], - "@jsopen/objects", - [1, 2343, 28810], - [2, 34443, 25240], - [0, 28819, 28820, 5893, 2523], - "modern.js", - "alpha-function", - "long-timeout", - "sorted-", - [2, 20096, 20835], - [2, 28814, 28815], - [2, 30633, 30886, 31217], - [3, 1419, 11], - [0, 28751, 444, 28752], - [0, 90, 28754, 28755, 968, 972, 974, 4880, 4883, 1030, 1497, 89, 3824, 3882, 3885, 4023, 8187, 28724, 1541], - "recurrent", - [1, 2343, 28823], - [0, 28824, 28825, 28828, 4139], - [0, 28763], - [0, 34683, 2020, 28766], - "unplugin-", - "deepcopy-esm", - [0, 26445, 28769, 1745, 28775, 9348, 28779, 26440], - [2, 9357, 28832], - [2, 28831, 30581], - [3, 12447, 17], - "-convert", - [1, 2343, 28834], - [0, 0, 0, 28835, 2523], - [0, 30999, 28818, 5995], - [1, 2343, 28839], - "fs.watch", - "watchfile", - [0, 28840, 28841, 28848, 34352], - [0, 28775], - [0, 9363, 9315, 23312, 3978, 3992, 3999, 9348, 4549, 12449, 28766], - "stories", - [2, 819, 664, 33355], - "ngn", - "daemon", - " logging", - [2, 2013, 28846], - [0, 28769, 1745, 28775, 9348, 28779], - "elevate", - "sudo", - [1, 2343, 28852], - [0, 28864, 28867, 28870, 4139], - "store2", - [2, 28855, 7625], - [3, 28518, 12], - "@mgcrea/eslint-config-node", - "-lts", - [2, 19439, 28857], - "node-ipc", - "excel", - "xls", - "zeptomatch", - "picoquery", - [0, 2121, 2127, 1690, 2024, 4507], - "rolldown", - "amaui", - [0, 28470, 2180, 5476, 5478, 1414, 2198, 91], - " extend", - [2, 6970, 28868], - [0, 2313, 1383, 614, 202, 1388, 5995, 4967, 1145, 1973, 1429, 2340, 2350], - [1, 2343, 28886], - [2, 13402, 2942], - [2, 28874, 8817], - "@appium/s", - "class-names", - "firefoxos", - "combyne", - "for-publish", - [2, 1463, 28878], - [2, 31228, 14372], - "libgit2", - "git2", - [2, 28742, 26542], - [3, 31782, 22, 5], - "vendors", - [0, 0, 28888, 28889, 2523], - [2, 9191, 3595], - [0, 1330, 1389, 1596, 2759, 2899, 4170, 4535], - [0, 20215, 4741, 2574, 36796, 6847, 1965, 1867, 10368, 7131, 1155, 1936, 1623, 14419, 37953], - "libbase64", - "libmime", - "libqp", - "ntlm-auth", - [2, 26444, 28893], - [2, 13857, 9224], - [2, 28742, 188], - "Nodemailer", - "hun-ky", - [2, 32723, 28900], - "hex-color", - [2, 28902, 28905], - [3, 28899, 21], - "undefsafe", - "pstree.remy", - "sl-color", - [2, 32723, 28907], - "rgb-color", - "autoload", - [2, 31281, 4202], - [2, 819, 45], - [2, 28742, 28916], - [2, 6097, 6142], - [2, 15701, 28915], - [3, 693, 10], - "vision-history", - "wheel-gestures", - "multimeter", - [1, 2343, 28975], - [2, 30211, 30221], - "@asamuzakjp/css-color", - "node-webkit", - "drc", - "lz4", - "potx", - "xltx", - "dotx", - "async-redis", - "ipfilter", - [2, 2032, 28928], - "express-ws", - "xltm", - "ots", - "json-logic-js", - "json-sql", - [2, 7060, 1146], - "line-reader", - "mocker", - "-data-", - [2, 28938, 1179], - [2, 28937, 28939], - "pino-pretty", - "odg", - "otg", - "promise-mysql", - "stjs", - "otp", - "ott", - "uuid-random", - "docm", - "nolang", - "Programming", - "programm", - "ing language", - [2, 28952, 28953], - "dotm", - "descriptive", - "5GL", - "potm", - "json schema", - "Mehdi Salartayefeh", - "pptm", - [2, 8293, 200], - [2, 8293, 3561], - "knitwork", - [2, 28968, 28969], - " parser", - [2, 5675, 28966], - "esbuild-re", - "act-compiler-plugin", - [2, 28971, 1172], - [3, 29874, 35], - [2, 28973, 4298], - [3, 5240, 29], - "ohash", - [0, 28989, 0, 28990, 2523], - "admin-panel", - "absolute", - "backslash", - "delimiter", - "file-path", - "forward", - "slashes", - "trailing", - "unix", - "urix", - "headless-cms", - [2, 1917, 11597], - [2, 819, 3877, 29320], - [0, 28507], - [0, 45, 29, 36246, 89, 4967, 6400, 5995, 10768, 5122, 1388, 5284, 676, 91, 202, 6710, 6082, 28866, 594], - "normaliz", - [2, 28991, 5218], - "normali", - [2, 28993, 6079], - [1, 2343, 28998], - "simplify", - "canonical", - [0, 29046, 0, 29047, 34352], - [2, 29171, 594], - "lit-analyzer", - [2, 32700, 29003], - "mouse", - "attract", - "mouse wheel", - [2, 29006, 29007], - [3, 26450, 35], - "ubble", - [2, 32700, 1544], - [2, 29010, 29011], - [3, 31198, 35], - "ause", - [2, 32700, 34141], - "escape-goat", - [3, 9577, 11], - "from-git", - [2, 29014, 29015], - "teractive", - [2, 20043, 29017], - [2, 28489, 29003], - "is-scoped", - [2, 29027, 29029], - "issue-regex", - "listr-input", - "new-github-release-url", - "npm-name", - "p-memoize", - [3, 32722, 21], - "map-obj", - "asing-quad", - "write-package", - [2, 32731, 3924], - [2, 29033, 4390], - [3, 26495, 20], - [2, 29035, 29036], - [3, 28909, 22], - "troke-color", - "is-cidr", - "ts-lit-plugin", - "libnpmorg", - [2, 33533, 29041], - "ormatjs", - "libnpmpack", - [3, 29818, 15], - "libnpmteam", - "MDX", - [0, 28872, 28873, 13411, 4507], - [0, 13428, 5284, 28522, 11132, 12295, 12296, 28876, 5472], - "fs-m", - "reka-ui", - [2, 37399, 29156], - "fs-minipass", - [1, 2343, 29064], - "npm-profile", - [2, 2977, 7193], - "@sigstore/tuf", - [2, 2977, 15525], - [2, 636, 1541], - "audit-report", - [2, 3382, 29058], - "-pipeline", - [2, 21505, 29060], - [2, 4570, 2649], - [2, 3382, 29062], - [0, 26871, 0, 26863, 2399], - "relative-date", - [2, 11072, 29065], - [2, 28093, 26006], - [1, 2343, 29074], - [2, 636, 3358], - [2, 636, 1739], - "@tufjs/repo-mock", - [3, 26037, 13], - [2, 29072, 2203], - [0, 29075, 0, 7573, 2537], - [0, 1004, 31231, 32914, 28909, 31262, 31272, 28899, 28901, 28906, 31282], - "-draft2019", - [2, 1092, 29076], - [1, 2343, 29119], - [2, 29080, 29081], - [3, 23075, 14], - "rrect-media-syntax", - [2, 29089, 29090], - "-record", - [2, 17495, 29083], - "giturl", - "nfig-loader", - [2, 18323, 29086], - "semver-diff", - [3, 32593, 24], - "ort", - [2, 29092, 29094], - [3, 32686, 13], - "outdated", - "dx-jsx-attribute-sort", - "updating", - "updater", - [2, 29098, 29099], - [3, 29091, 20], - "no-void-children", - [2, 29098, 29107, 29118], - "@trivago/prettier-plugin-sort-imports", - [3, 27782, 13], - [2, 29102, 8961], - [2, 13197, 176], - "@types/ini", - [3, 8141, 13], - "quote-st", - "helpfulerror", - [2, 16476, 29108], - [2, 29106, 29109], - [2, 7726, 27005], - "@types/npm", - "-registry-", - [2, 29113, 1612], - [2, 29112, 29114], - [3, 16478, 13], - [2, 29116, 13722], - "yle", - [0, 0, 0, 29163, 2537], - [2, 2645, 89], - [3, 6544, 14], - [2, 29121, 594], - "pdate-", - [2, 29123, 3329], - [2, 7817, 29124], - [3, 1898, 15], - "aine", - [2, 29126, 29127], - "fp-and-or", - [3, 9506, 11], - [2, 117, 29153, 29494], - [2, 29098, 29134, 29135], - "jsonlines", - "self-clos", - "e", - "prompts-ncu", - "postcss-clean", - [2, 25813, 594], - [2, 4524, 2845], - "verdaccio", - [2, 8551, 4675], - "vite-node", - [2, 29145, 29146], - "upgrade", - [3, 29132, 21], - "horthand-attribute", - [2, 29098, 29148], - "unique-attribute-name", - [2, 29092, 29150], - "edia-style", - [2, 32704, 29152], - "idden-table-cell", - [3, 6138, 9], - [2, 7686, 4692], - [2, 22060, 3122], - "variants", - "ypescript-tc", - [2, 22060, 29157], - [3, 17312, 29], - [2, 29159, 12844], - "unplugin", - "auditor", - [0, 45, 29, 36246, 89, 4967, 6400, 5995, 10768, 5122, 1388, 5284, 676, 91, 202, 6710, 6082, 28474, 594], - [1, 2343, 29167], - [2, 28826, 29166], - "auto-import", - [0, 26964, 0, 26966, 2487], - "variadic-function-arguments", - "mutate-fs", - "@publint/pack", - [3, 1014, 15], - [1, 2343, 29173], - [0, 29177, 0, 21958, 2537], - "minizlib", - "minipass-", - [2, 29175, 1612], - [ - 0, 4729, 2070, 31705, 4747, 4135, 1862, 1301, 1525, 2731, 4116, 1109, 1193, 31856, 3145, 4705, 31859, 3717, - 3878, 1079, 31861, 28512, 31864, 24169, 3957, 31867, 2784, 31871, 31877, 31880, 31884, 31891, 21129, 31896, - 28073 - ], - "fast-equals", - "registry", - [1, 2343, 29199], - "autodocs", - [2, 31092, 3452], - "@pm2/blessed", - "padend", - [2, 18996, 29184], - [2, 29189, 27863, 20181], - "ysticatea", - [2, 16693, 29187], - [3, 28544, 19], - "commandline", - "npm-scripts", - [2, 29193, 1541], - [3, 28544, 11], - [2, 29193, 11857], - [2, 29196, 29198], - [3, 31303, 12], - "neostandard", - "ise-router", - [0, 29216, 0, 7573, 2399], - [2, 29189, 11017], - [2, 29202, 29203], - [3, 29192, 12], - "atalog-model", - [2, 29202, 25240], - [2, 29193, 13224, 29206], - "atalog-common", - [2, 29209, 202], - [2, 28270, 6270], - [3, 29205, 26], - "yarn to npm", - "@daybrush/jsdoc", - "backstage", - "ci/cd", - "immobiliare", - [2, 29214, 12825], - [ - 0, 28880, 1004, 29031, 29032, 31244, 1418, 26495, 32926, 26483, 26489, 32934, 29021, 29034, 28458, 31198, 29012, - 29009, 26450, 29005, 26482, 30527, 29001, 29008, 1445, 29019, 28479 - ], - [1, 2343, 29221], - "npm upgrade", - [2, 28826, 10309], - "vaul-vue", - [0, 29223, 29225, 26824, 2523], - "rgv", - [0, 4484, 29755], - [2, 1262, 25816], - [0, 89, 1177, 4039, 4042, 1894, 3824, 91, 4874, 4880, 3884, 4883, 3885, 28540, 8656, 8660, 4887, 10817, 1011, 1009], - [2, 34674, 588], - "npm-cli", - [2, 29229, 29303], - "@hyrious/esbuild", - [1, 2343, 29232], - "ntainer", - [0, 29256, 29257, 29258, 34352], - [2, 26109, 28923], - [3, 28200, 13], - [2, 29240, 29249], - "@cropper/", - "are-", - "we-there-yet", - [2, 29237, 29238], - [3, 10309, 13], - "image-cropping", - [2, 29243, 3642], - "image-view", - "image-processing", - "cropper-element", - "mocha-jsdom", - [3, 31831, 14], - [3, 5926, 13], - "-type-helpers", - [2, 29254, 29255], - "cvss", - "-npm-utils", - [2, 19773, 29252], - [3, 3978, 9], - "arry-night", - [0, 29186, 29192, 29194, 1364, 2026, 29195, 2664, 4709, 4757], - [0, 29200, 29201, 29204, 29205, 29207, 6494, 9240, 3244, 4342], - [0, 29212, 17978, 29213, 29214, 29215, 5995], - "@asteasolutions/zod-to-openapi", - "gluegun", - "@trpc/server", - [2, 17612, 29264], - "nuke", - "custom-alias", - [2, 4026, 29266], - "tspaths", - "@nuxt/eslint-config", - "event-driven", - "money", - "blaze", - "percentage", - [1, 2343, 29274], - [2, 8293, 1983], - [0, 26964, 0, 26997, 2523], - [1, 2343, 29278], - "a-sync-waterfall", - "asap", - [0, 0, 29286, 29287, 2537], - [2, 3522, 364], - [2, 3192, 29279], - [3, 29280, 16], - [2, 29281, 2759], - [2, 5223, 8861], - "s-browser", - [2, 19390, 29284], - [0, 1148, 2899], - [0, 26257, 1111, 1473, 7208, 1437, 1623, 32453, 6616, 29222], - [3, 26364, 17], - [1, 2343, 29296], - "@nuxt/module-builder", - [2, 18124, 2844], - "@4c/tsconfig", - "@react-bootstrap/babel-preset", - [2, 29344, 7625], - "@nuxt/test-utils", - [0, 29298, 29302, 29329, 2399], - "jsonpathly", - [0, 7387], - [2, 29301, 29538], - "css4", - [3, 5782, 27], - [0, 4874, 4880, 4883, 1030, 3286, 89, 3824, 1983, 26744, 1984, 11039], - [3, 4055, 16, 6], - [3, 26699, 14], - "achine-id", - [2, 27946, 29305], - "parsers", - [2, 15904, 29307], - "@zkochan/js-yaml", - [2, 15904, 6698], - [3, 17944, 18], - "-and-columns", - [2, 27005, 29312], - "@napi-rs/", - "graphQL", - "wasm-runtime", - [2, 29314, 29316], - "telejson", - "Mobile", - "nderer", - [2, 25806, 14029], - "@whatwg-node/promise-helpers", - [2, 29326, 29332], - [2, 20164, 22156], - [2, 11936, 1564], - [3, 9250, 19], - "processinfo", - [2, 11936, 29327], - [0, 5592, 1745, 23803, 3287, 3452, 8124], - "node-preload", - "process-", - "nuxt", - "on-spawn", - [2, 29331, 29333], - "spawn-wrap", - "css library", - [1, 2343, 29353], - "any-path", - [2, 29340, 29341], - [3, 132, 10], - "local-node-rig", - "jsdoc-fresh", - "jsdoc-region-tag", - [3, 29293, 17], - "nuxt-ui", - "ui-framework", - "undefined-", - [2, 29347, 15400], - [2, 8302, 29348], - [2, 29383, 29384], - "@readme/", - "example", - [0, 29363, 0, 29472, 2523], - "oas-examples", - [2, 29351, 29354], - "@readme/o", - "penapi-parser", - [2, 29356, 29357], - [2, 8818, 5940], - "@types/me", - "moizee", - [2, 29360, 29361], - [0, 2817, 18023, 1532, 31802], - " initiative", - [2, 3452, 29364], - "openapi ", - [2, 29366, 10658], - [3, 29367, 12], - [2, 29366, 1746], - "oai", - "@eslint/css", - "print-coveralls", - "ts-mock-imports", - "egjs-jsdoc-template", - "to-openapi", - [2, 28343, 29375], - [2, 29351, 29376], - "@egjs/release-helper", - [3, 20227, 14], - [2, 29379, 8125], - [2, 5290, 29382], - "-plugins", - [3, 25931, 14], - "quis-saepe-velit", - "@renyii/vue-renderless", - [2, 31525, 29391], - "andom-function", - [2, 30713, 29397], - "@teamteanpm2024/aperiam-fugit-error", - "prollyfill", - "ize-observer-browser", - [2, 19965, 29393], - "-es6-transform", - [2, 29418, 29475], - "ec", - "gulp-exec", - "ign-functions", - [2, 29399, 29400], - [3, 27720, 16], - "ototype-minify", - "@vercel/ru", - "@pkg", - "js/support", - [2, 29402, 29403], - "flicking", - "globalthis", - [2, 29408, 26274, 29411], - [3, 29389, 17], - "ostringtag", - [2, 17422, 29409], - "alias-quod", - "egjs", - "-upgrade", - [2, 29408, 29415], - "ut-voluptatum-vero", - "indexof", - [3, 26699, 20], - [3, 29389, 16], - "@loki/integration-react", - [3, 31032, 17], - "@modelcontextprotocol/sdk", - "@mar", - "iocasciaro/benchpress", - [2, 29422, 29423], - [2, 31009, 16609, 18756], - "bean", - [2, 31550, 29430], - "notation", - "segment", - " upgrade", - [2, 29438, 7031], - [2, 29418, 29433, 29434], - "effective-octo", - [3, 246, 18, 8], - [2, 29436, 29437, 29439], - [3, 29432, 17], - "xpedita-", - [3, 805, 9], - "labore-ipsum", - "es-object-atoms", - [2, 29419, 4009], - "mentoss", - "@ucast/mongo2js", - [2, 28865, 6324, 4056], - "unconfig", - "permissions", - "abac", - [2, 29418, 29449], - "odio-fugiat-in", - "ee-first", - "rbac", - "ibac", - "cancan", - [2, 29487, 188], - "@sxzz/eslint-config", - "wrappy", - "quick-lru", - [2, 29459, 29620], - "@sxzz", - [2, 29418, 28215, 27463, 29461], - "odit", - "@blakeembrey/deque", - [3, 29462, 13], - [2, 29463, 1283], - "@sxzz/test-utils", - "@unocss/eslint-plugin", - [3, 4949, 17, 10], - [2, 160, 1554], - "unocss", - "unplugin-unused", - [2, 30209, 28945], - [0, 30999, 28818, 5995, 17977], - [1, 2343, 29484], - "epoll", - "beatae-aliquid-id", - [2, 23240, 3209], - "@zibuthe7j11/deserunt-quasi-impedit", - "gpio", - [3, 7033, 9], - "raspi", - "beaglebone", - "-black", - [2, 29481, 29482], - [0, 0, 29485, 29491, 2537], - [0, 19325, 1414, 1894, 3985, 3998, 4039, 4389, 4505, 91, 1906], - "llms", - [3, 29419, 18], - [2, 10441, 20008], - "lazy-prop", - [2, 27542, 29489], - [0, 1623, 1936, 965, 5122, 12344, 34050, 3665, 22145], - [2, 29294, 1892], - [2, 35506, 15215], - "s-compressor", - [2, 29628, 29629], - [1, 2343, 29497], - [0, 29498, 29499, 29516, 2399], - [0, 2611, 4763], - [ - 0, 29259, 192, 5467, 23531, 29261, 4865, 4874, 1009, 1011, 10417, 668, 1177, 1881, 1895, 29262, 1915, 1938, - 1955, 2070, 2675, 2990, 1894, 29265, 4039, 4480, 4494, 91 - ], - [2, 33343, 1640], - "bath-es5", - "dere", - "ference-", - [2, 29503, 2845], - [2, 29502, 29504], - [2, 29510, 29513], - "-adapter", - [2, 2085, 29507], - [2, 1170, 29508], - [3, 10065, 15], - "deref-sync", - [2, 7526, 29511], - "ooks", - "fetch-retry", - [2, 29112, 3073], - [0, 2611, 5995, 29268, 29270, 5130, 24090], - "@base-ui-components/react", - [3, 32804, 12], - "docz", - "docz-utils", - "open api", - "docz-theme-default", - [1, 2343, 29526], - "aws-sdk-client-mock", - [2, 32539, 200], - [0, 29541, 29547, 29516, 2537], - [3, 26032, 12], - "computer", - [2, 29530, 29532], - [3, 25758, 18], - "quadrocopter", - "m-sint-necessitatibus-possimus", - [2, 29534, 15050], - [3, 33156, 12], - "unifont", - [2, 29627, 29631], - "cupertino-pane", - "licit-resource-management", - "countrynames", - "kill-port", - [0, 1457, 1491], - [2, 15713, 10050], - [2, 28397, 553], - "@testcafe/publish-please", - "aws-lambda", - "eruda", - [ - 0, 1138, 4494, 2070, 2675, 1177, 4039, 668, 1894, 91, 4865, 4874, 2990, 29261, 4480, 192, 29265, 1938, 10417, - 1895, 1955, 1011, 1881, 5467, 1009, 1915, 29262 - ], - [1, 2343, 29562], - "nano-staged", - "elapsed-time-logger", - "hashish", - "gulp-open", - [2, 4807, 3864], - "cupertino", - "pane", - "slide", - "-call", - [2, 29557, 4408], - [2, 6606, 29558], - "fasteejs", - "ua-is-frozen", - [0, 29570, 29578, 29612, 2487], - [3, 26032, 13], - [2, 29609, 12835], - [2, 29573, 6802], - "prelude-ls", - "deep-is", - "astro-auto-import", - "livescript", - [ - 0, 4729, 1091, 4494, 12105, 3533, 3348, 1410, 1606, 28452, 4548, 1458, 3183, 33145, 1699, 2096, 11993, 3547, - 28460, 2689, 2668, 28941, 2191, 3781, 36687, 28461, 36123, 3509, 4108, 28482, 28518, 26696 - ], - [3, 28967, 11], - [2, 29571, 3642], - "country-", - "@pouchlab/ui", - [2, 29573, 1460], - [2, 29573, 7285, 2669], - "-dis", - [ - 0, 4164, 4039, 4042, 668, 9241, 1587, 1610, 7819, 28585, 7892, 12461, 3813, 28426, 4057, 8818, 31727, 28586, - 28854, 29228 - ], - "ppsx", - "-discarder", - [2, 2184, 29580], - "chai-jquery", - [2, 1221, 6621], - "corejs-typeahead", - "doiuse", - "gulp-add-src", - [2, 2352, 29588], - "-bust", - "gulp-check-deps", - "sequencify", - [3, 28628, 14], - [2, 2504, 29687], - "gulp4-run-sequence", - "is-empty-object", - "motion-ui", - "sassy-lists", - [2, 22109, 29598], - "-forward-reference", - "vinyl-named", - "sql-ddl-sync", - "sql-query", - [2, 29611, 29625], - [2, 29604, 29606], - [3, 17589, 11], - "redshift", - "helper-rel", - [2, 29608, 4213], - [3, 29603, 18], - "gradient", - "grommet", - [3, 940, 8], - [0, 31153, 5592, 6354, 29311, 27837, 5130, 29315, 29727, 5284, 23803, 202, 28323, 89, 31175, 91], - [1, 5293, 29665], - "tinygradient", - "tmpdir", - "ps1", - "glob2regx", - [2, 29619, 29620], - "@bokub", - [3, 29621, 16, 9], - [2, 7623, 7628], - [2, 1283, 17321], - "template ", - [2, 29623, 16111], - "expand-path-helper", - "magnific-popup", - [3, 4968, 15], - [3, 111, 18], - "-cloud-services-collaboration", - "grommet-icons", - "composable-commerce-test-data", - "styleable", - [3, 3474, 9], - [2, 10818, 29635], - "toolbars", - [2, 29637, 5592], - [3, 11285, 19], - "@vscode/vsce", - [2, 10829, 29640, 35971], - "source-l", - "vscode", - [2, 964, 4415], - [2, 29644, 591], - [3, 19588, 29], - "chromatic", - [2, 29650, 29651], - "addlistener", - "addeventlistener", - "waits", - "grommet-", - "theme-hpe", - [2, 1192, 29653], - [3, 12201, 18, 16], - "random-int", - "react-shadow", - "resolved", - "fulfilled", - [2, 29659, 22145], - [3, 29576, 18], - "tarball-extract", - [2, 29662, 29663], - [3, 35482, 11], - "act-selectors", - "fifo", - [0, 8391, 29688], - "grommet.io", - "grommetux", - "sticker sheets", - "design patterns", - "app templates", - "atomic design", - "invalidate", - "WCAG 2.1", - [2, 8652, 29675], - " navigation", - "screen reader tags", - [3, 10826, 11], - "graphical user interface", - "plunder", - "exit-x", - "modelcontextprotocol", - "osition-area-property", - "pwa-asset-generator", - "_codesniffer", - [2, 1936, 29684], - [2, 17753, 5130], - "-lint", - 1743292800000, - [2, 23814, 6653], - "rapid-development", - "proclaim", - "@grammyjs/types", - "dart-sass", - "grunt-jekyll", - "mcp", - "deno2node", - "sigstore", - [2, 9466, 1153], - "antora", - [3, 3397, 13], - [2, 29700, 3212], - "zepto", - [3, 12478, 11], - [2, 30713, 29989], - [1, 2343, 29712], - "countries", - [2, 22642, 5351], - [2, 18145, 4581], - "@next/font", - "package-up", - [2, 17507, 4107], - [0, 29714, 29715, 29720, 34352], - "@jsdevtools/ez-spawn", - [0, 6680, 26246, 26882, 26247, 26883], - [ - 0, 87, 29211, 29381, 29378, 5583, 811, 816, 6373, 4864, 4874, 29386, 1009, 32801, 1011, 1165, 1195, 1264, 1540, - 1593, 1596, 10944, 29374, 1177, 1938, 1942, 13668, 2151, 2193, 6382, 29120, 28366, 2675, 28629, 29392, 3400, - 29137, 3566, 29372, 28369, 27120, 4042, 20981, 10854, 29398, 20983, 4073, 4076, 4079, 2278, 13739, 29373, 11440, - 4484, 4487, 28625, 91, 20474 - ], - "@types/png", - [2, 29716, 1722], - "context7", - "vibe-coding", - [0, 32054, 29405, 31512, 29002, 4453, 28125, 5131, 89, 188, 1098, 3698, 35060, 35062, 35058, 29412], - [2, 17590, 23989], - "png.js", - [2, 29573, 29730], - "screenshots", - "ai-detection", - "screengrab", - "headless", - "app-detection", - "rapidoc", - "iso-codes", - "iso", - "api-generator", - "find-process", - [1, 2343, 29738], - "low-code", - [2, 29737, 3729], - [3, 33097, 12], - [0, 0, 29739, 29864, 2537], - [0, 107, 91, 1983, 11026, 26744], - [3, 7895, 13], - "jpeg-js", - "striptags", - [2, 1948, 29816], - "baas", - "launch-image", - "splashscreen", - "splash-screen", - "image-generation", - "aws4", - "mstile", - "pwa-assets", - [3, 7863, 11], - "web publishing", - [2, 3862, 29804], - "@ionic/react", - "@loki/runner", - "@loki/target-chrome-app", - "@apitools/openapi-parser", - [2, 29760, 6866], - "base64-", - "xml-but-prettier", - "idb-keyval", - [3, 5062, 14], - "rypto-js", - [2, 29763, 29764], - [2, 29785, 17878], - "@saithodev/semantic-release-backmerge", - "cebook-js-sdk", - [2, 22819, 29768], - [2, 1983, 29303], - [3, 19588, 24], - "nline-", - [2, 11294, 6436], - [2, 29772, 29773], - [2, 29771, 29774], - [2, 29781, 29782], - "river-adapter-utils", - [2, 2767, 11110], - "jsdoc-babel", - [2, 27738, 8791], - [3, 14065, 15], - "mplate-html-minifier", - "parse-server", - "inspectpack", - [3, 29757, 20], - "Custom Element", - "Web Component", - "swagger ui", - "swagger ", - "WHATWG", - [2, 28008, 57], - "html5 parser", - [2, 28008, 1753], - [2, 1936, 1753], - "openapi ui", - [2, 29366, 4366], - [2, 29366, 11328], - [2, 29366, 3902], - "fast-ur", - "l-parser", - [2, 29799, 29800], - [2, 29366, 25677], - [2, 29789, 4366], - "animatable", - "react-swipeable-list", - "pause", - [2, 29811, 29812], - [3, 1551, 9], - [2, 29808, 18716], - [2, 1432, 29809], - [3, 29757, 13], - "native-android-emulator", - [2, 29814, 29815], - [3, 29807, 20], - "ios-simulator", - "-preferences", - [2, 31868, 5891], - [2, 29822, 19102], - "collapsible", - "accordion", - "readme-md", - [3, 4272, 10], - [2, 11375, 10850], - "username", - [3, 9308, 9], - [2, 29827, 29828], - [3, 4060, 15], - "ocal-resolve", - [2, 3500, 1274], - "visual testing", - "swipeable", - "customizable", - [3, 1419, 20], - "teeny-tap", - "base64url", - "touchscreen", - "listview", - "swipe-to-delete", - "swipe-actions", - "json/simple-icons", - [2, 29852, 32865], - "iso-country-codes", - "use-composed-ref", - "use-latest", - [2, 29866, 1460], - "@preconstruct/cli", - "blue-tape", - "autosize", - "grow", - "riot", - "events.once", - "@scalar/s", - [2, 30844, 1983], - "exist", - "md-writer", - [2, 12557, 8982], - [2, 29858, 29859], - [3, 7806, 10], - "mon-tags", - "ts-declaration-location", - [2, 29863, 14056], - "isabsolute", - [3, 1733, 14], - [ - 0, 31549, 31550, 29427, 31553, 31565, 9006, 3015, 31566, 15813, 10725, 30672, 5066, 15571, 89, 31567, 1098, 188, - 12295, 5131, 28125, 31568, 31569 - ], - "react-smooth", - [3, 29842, 12], - "@borderless/ts-scripts", - [2, 29958, 29576], - [2, 29870, 34050], - "victory-", - [1, 2343, 29929], - [2, 10818, 29873], - "mdx-gfm", - [2, 10818, 29875], - "webpack5-compiler-swc", - [2, 29877, 29878], - [3, 10841, 15], - "-runner", - [2, 33114, 22982], - [2, 33114, 29881], - "time-format", - "@rkusa/linebreak", - [2, 29885, 29886], - "opentype.js", - [3, 18787, 15], - "v-expression", - "vitest-axe", - "log-process-errors", - "sortablejs", - [2, 5581, 29898, 27479], - [2, 29518, 29892, 29930], - "native-pr", - "jpeg-exif", - "linebreak", - "png-js", - "@riotjs/dom-bindings", - "blob-stream", - "multi-pa", - "pdfjs-dist", - [2, 29904, 4643], - "pdf writer", - "pdf ", - [2, 29902, 1179], - "@riotjs/", - [2, 29906, 29907], - "@riot", - [3, 25083, 18, 7], - "call-delayed", - "chai-i", - [2, 29904, 93], - [2, 29904, 614], - "ncreasing", - [2, 29909, 29912], - [2, 29915, 29916], - "@wdio/s", - "auce-service", - "bianco.attr", - "pgpass", - "pg-pool", - "pg-types", - "bianco.query", - "cumpa", - "pg-protocol", - "curri", - [2, 29126, 28794], - [2, 29927, 28794], - [3, 4069, 15], - "pg-cloudflare", - [0, 29947, 29948, 29981, 2523], - "eview", - "pg-co", - "py-streams", - [2, 29931, 29932], - "@cloudflare/workers-types", - "custom tags", - "minimalist", - "libpq", - "rdbms", - "data binding", - "riotjs", - "riot.js", - "tdesign-mobile-vue", - "oxc-resolver", - "copy-source", - [2, 5237, 29944], - "npm-watch", - [0, 29443], - [0, 33580, 5087, 4874, 1429, 31602, 2024], - [2, 29950, 12826], - [3, 35537, 26], - [2, 29956, 582], - "hasha", - "reorder", - "ng-sortable", - [2, 12318, 29992], - [3, 66, 20], - [2, 27777, 27738, 1764, 1524], - "iso-", - "@use-gesture/vanilla", - [2, 29961, 29962], - "tdesign-", - "icons-vue-next", - [2, 29958, 29658], - [2, 1547, 3525], - [2, 3525, 15159], - [2, 812, 1002], - "@soerenmartius/vue3-clipboard", - " build", - [2, 3525, 29968], - "/build", - [2, 3525, 29970], - "dom-parser", - "qrcode.vue", - [2, 8851, 19675], - [2, 29976, 29977], - [3, 32978, 16], - "atic-import", - [2, 29976, 29979], - "yles", - "@tdesign/site-components", - [0, 29446, 14374, 1081, 29447, 29451, 29452, 29453], - [1, 2343, 29985], - [2, 29961, 29984, 200], - "publish-", - [0, 29986, 29995, 2514, 2537], - [0, 26702, 19344, 1915, 32525, 1953, 1958, 1959, 2105, 2203, 26716, 4523], - [2, 4609, 29988], - "tdoc", - "ystem-ui-font-family", - "tdesign", - "pinkie-promise", - "-widget", - "weui", - "denodify", - [0, 4874, 25950, 1177, 2675, 17529, 2931, 27949, 3401, 4505, 91], - [2, 29997, 3346], - [3, 6806, 10], - "tstyche", - "atomic", - [2, 30016, 30020], - "atomic-sleep", - [1, 2343, 30160], - "xit-leak-free", - [2, 27492, 30003], - "pino-", - [2, 20417, 4714], - [2, 30005, 30006], - "std-", - [2, 1753, 591], - [2, 30008, 30009], - [2, 30005, 30010], - "quick-", - "-unescaped", - [2, 1671, 30013], - [2, 30012, 30014], - [3, 18858, 17], - "real-require", - "sonic-boom", - "thread-stream", - "-tag", - "lush-write-stream", - [2, 5537, 30021], - "obug", - "bole", - "fastbench", - "-write-stream", - [2, 20064, 30026], - "midnight-smoker", - "steed", - [2, 30031, 30032], - [3, 3577, 11], - "-variables", - [2, 30034, 30035], - "postcss-he", - "xrgba", - "postinstall", - [3, 3848, 9], - "devpostinstall", - [2, 30040, 1524], - [3, 3668, 14], - [2, 24276, 30042], - "odule-replacement", - "graphql-jit", - "uploader", - "preview", - "image-edit", - [2, 30085, 3582], - "mqemitter", - "remark-math", - "single-user-cache", - "base64-stream", - [2, 24101, 30057], - "ready", - "-simple", - [2, 2105, 30054], - "win32", - "woslash", - [2, 9406, 7293], - [2, 30060, 30065], - "remark-s", - [2, 30062, 30063], - "gulp-conve", - "rt-css-var", - "picklog", - "martypants", - "wechat", - "weixin", - [2, 29314, 4183], - [2, 17998, 30070], - "ading-time", - [2, 27707, 364], - "better-react-mathjax", - [2, 30074, 25131], - [3, 9313, 17], - [2, 30076, 30077], - [3, 12415, 13], - "alue-to-estree", - [2, 30079, 30080], - [3, 31790, 16], - "ocalematcher", - "tiny-lru", - [2, 10884, 30083], - "egotiator", - [2, 11932, 11525], - "iso-countr", - [2, 30087, 30096], - [3, 13203, 19], - "irregular-plurals", - "fs.extra", - "plurals", - "count", - "irregular", - "noun", - "nouns", - "requireg", - "orm-data", - "@pkgr/core", - [2, 4511, 30118, 30123], - "make-synchronized", - [2, 30101, 30102], - [3, 30099, 13], - "ous", - "sync-threads", - "fclone", - "vizion", - "@pm2/io", - "pidusage", - "pm2-axon", - "@pm2/", - "@pm2/agent", - "pm2-", - "pm2-deploy", - "synchronize", - [2, 5340, 30116], - "@pm2/js-api", - "webc", - "cli-tableau", - [3, 32969, 11], - "pm2-axon-rpc", - [2, 30111, 28917], - [2, 30111, 21833], - [2, 30109, 30121], - "heme", - "logs", - "kraken", - " balancer", - [2, 3001, 30126], - "lb", - "balancer", - [2, 3614, 30129], - "kubernetes", - "k8s", - "emoji-flags", - "pm2-docker", - "graceful", - "phone-codes", - "node-pm2", - "fs-fixture", - "production", - "keymetrics", - [2, 10339, 13522], - "strong-pm", - "supervisord", - "pm2.io", - "@ibyar/expressions", - " production", - [2, 17979, 30146], - [2, 3729, 6877], - "probes", - " process", - " alive", - [2, 30150, 30151], - [2, 25607, 30152], - "process ", - [2, 30154, 8309], - "clustering", - "memoizerific", - "cluster cli", - "dev ops", - [0, 30171, 0, 29047, 2537], - "phone-prefixes", - "@vercel/blob", - [2, 7285, 2669], - "tap-dot", - [2, 30180, 30181], - "PNG", - "js-png", - "node-png", - "import-without-cache", - "png-parse", - [0, 2845], - "pg-gateway", - "@ibyar/decorators", - "pglite-2", - "aurora", - "ibyar", - [2, 4641, 5341], - [2, 4641, 7256], - "evaluation", - [3, 578, 10], - "arousel", - [2, 30195, 3825], - "no-code", - "mvp", - [1, 2343, 30186], - [0, 30187, 30188, 30189, 2537], - [0, 8712, 1423, 5210, 1209, 3021, 26499], - [0, 34225, 4874, 2559, 91, 34229, 28456, 34231], - [0, 89, 5130, 21151, 28811], - "poe", - "economy", - "ninja", - "poe.ninja", - "poe economy", - [3, 581, 10], - [2, 30212, 3730], - " of exile", - [2, 3403, 30197], - " economy", - [2, 30198, 30199], - [3, 30200, 14], - [2, 30201, 30192], - [2, 30194, 8568], - [2, 30201, 5592], - [1, 2343, 30229], - "ast-walker-scope", - "poe.watch api", - [2, 30193, 8568], - "@vercel/ne", - "copilot", - "@types/ne", - [3, 587, 10], - "reval", - [2, 24808, 30213], - [2, 6649, 2995], - [2, 6645, 30215], - "tsgen", - [2, 30231, 30232], - "glamor", - [2, 24177, 591], - "o-async", - " manipulate", - [2, 1473, 30222], - [3, 30223, 15], - [2, 30224, 6600], - " color manipulation", - [2, 7595, 30226], - [3, 35570, 16], - [0, 30249, 0, 2514, 2487], - "muggle-string", - [3, 593, 10], - "potlight", - [2, 579, 30251], - [2, 29444, 30511], - [3, 6372, 10], - [2, 30235, 6374], - [3, 23816, 17], - [2, 30237, 13290], - [2, 30235, 30238], - [2, 30235, 1973], - [2, 30240, 3007], - "nuget-publish", - [2, 30244, 4900], - [3, 13484, 37], - "popperjs", - [2, 1517, 30248], - "attached", - "center", - [0, 9315], - [1, 2343, 30308], - "tiptap", - "allure-js-commons", - "flush-promises", - [2, 30255, 30259], - "@yarnpkg/l", - [3, 10175, 16, 14], - [2, 30276, 30280], - "source map", - "ibzip", - [2, 23660, 30261], - "tector", - [2, 11369, 30282], - [2, 10880, 30264], - "preset-env", - "jison-gho", - [2, 16645, 30267], - "null", - "calculation", - "unixify", - "allure", - "codeceptjs", - "testops", - [3, 3674, 10], - [2, 30273, 25461], - "read-cache", - "express-i", - [3, 1895, 16], - "oblems", - [2, 30277, 30278], - "ntlayer", - "is-mobile", - "spector", - "deep-object-diff", - "@ngard/tiny-isequal", - [2, 6268, 1467], - [2, 206, 30285], - [2, 209, 6731], - "@intlayer/chokidar", - "hsl", - "hsla", - "hwb", - "rgba", - [2, 30294, 6008], - [3, 30288, 11], - [2, 30296, 23], - [3, 30293, 12], - "intlayer", - "caniuse-api", - "colord", - [2, 10829, 30311], - [3, 19443, 15], - [2, 30301, 5592], - [2, 9738, 30304], - "s-hooked", - "@utils/ts-config-types", - [3, 30305, 16], - "@intlayer/", - [0, 0, 30473, 2514, 4139], - "@utils/ts", - [2, 30309, 32810], - "docs-mdx", - [2, 9402, 30374], - "get-npm-tarball-url", - "pixrem", - "pleeease-filters", - "apply", - [2, 3562, 30316], - "postcss-a", - "ttribute", - "-case-", - [2, 30322, 30367], - "use", - "insensitive", - [2, 30320, 30323], - [2, 30319, 30324], - [2, 30318, 30325], - [3, 3570, 22], - [3, 3570, 14], - [2, 30328, 12981], - "hex-alpha", - [2, 30328, 30330], - [3, 30331, 15], - "sl", - [2, 30332, 30333], - "wb", - [2, 30332, 30335], - "rebeccapurple", - [2, 30328, 30337], - [3, 30338, 15], - "gb", - [2, 30339, 30340], - "a-fallback", - [2, 30341, 30342], - [3, 4791, 10], - "nt-family-system-ui", - [2, 30344, 30345], - [3, 30346, 13], - [2, 30347, 24044], - [3, 3611, 18], - [2, 30349, 6422], - "user-agents", - "nitial", - [2, 3607, 30352], - [3, 3622, 10], - "dia-minmax", - [2, 30354, 30355], - "seudo-class-any-link", - [2, 6423, 30357], - [3, 30358, 14], - [2, 30359, 11513], - [3, 30274, 11], - "lace-overflow-wrap", - [2, 30361, 30362], - [3, 3681, 17], - [2, 30364, 6421], - [2, 30364, 23293], - [3, 11228, 16, 2], - "cssrecipes-custom-media-queries", - [3, 30368, 11], - [2, 30369, 19400], - [2, 30369, 10052], - [2, 30369, 594], - "vert", - "ermaid", - [2, 28756, 7224], - "ical-rhythm", - [2, 30373, 30376], - [2, 30369, 30377], - "i-am-meticulous", - [2, 1884, 30379], - "isogram", - "oc-and-anchor", - [2, 7646, 30382], - [2, 12798, 591], - [2, 3160, 30384], - [3, 30385, 11], - "@react-aria/interactions", - "filenames", - [2, 30386, 30388], - [2, 30386, 5980], - [2, 30386, 89], - [3, 30391, 13], - [2, 30392, 1213], - [3, 30391, 12], - [2, 30394, 367], - [2, 30386, 1002], - [2, 30386, 2282], - [2, 30415, 30461], - "nano-logger", - "npmpub", - [2, 25230, 25461], - [2, 3562, 30401], - "-inline", - [2, 3897, 30403], - "@enact/ui", - "lazy-universal-dotenv", - "to-slug-case", - [3, 4693, 9], - "ano-logs", - [2, 30408, 30409], - [2, 30058, 30412], - "-position", - "cssnext", - "modern-tar", - [3, 30387, 12], - [2, 30417, 364], - [3, 906, 9], - [3, 205, 11], - "ascade", - "-lay", - "er-name-parser", - [2, 30420, 30421], - [2, 30419, 30422], - [2, 30418, 30423], - [2, 30417, 30429], - "at-rule", - "atrule", - "csswg", - "delivery-react-native", - "queries", - [2, 30417, 30432, 30433], - "plugin-co", - "nsole-breadcrumbs", - [2, 30435, 30436, 30437], - [3, 30431, 16], - "network-", - "breadcrumbs", - [2, 30435, 89], - [2, 30438, 30440], - "-native-client-sync", - [2, 30443, 30444], - "declarative", - [3, 30439, 29], - "event-sync", - [2, 30443, 30446], - "global-error-handler", - [2, 30443, 30448], - "hermes", - [2, 30443, 1577], - [2, 30443, 30451], - "unhandled-rejection", - "iserror", - "react-syntax-highlighter", - [2, 30457, 30460], - "bugsnag", - "stability", - [3, 30375, 17], - "@enact/webos", - [2, 30875, 4000], - "croll-area", - "overlays", - "at-rules", - "@ionic/angular", - [2, 30415, 17966], - "@keyframes", - "@counter-style", - "@devtools-ds/object-inspector", - [2, 4807, 30453], - [2, 30475, 30476], - "@aw-web-design/x-default-browser", - "@fal-works/esbuild-plugin-global-externals", - "flexbugs", - [0, 4483, 1177, 1984, 1894, 91, 4874, 1953, 7677, 1982, 1895, 1011, 1009], - [1, 2343, 30482], - [3, 659, 18], - "nobis-nostrum-nam", - "@skylernpm/hic-inventore-dolores", - [3, 3616, 9], - "postcss-less", - "tyl", - "postcss-styl", - [0, 30490, 30492, 30497, 34352], - "quickapp", - "PHP", - "sss", - "convex", - [3, 29658, 18, 8], - [2, 30502, 27421, 30606], - "world-countries", - [0, 1437, 3074, 3714, 4361], - "image-set", - [0, 2228, 2240, 2247, 2316, 1906], - [2, 2662, 30554], - "@eggjs/oxlint-config", - "@vercel/e", - "mock-spawn", - [0, 21779, 8221, 13814, 15344, 158, 6707, 3178], - "node modules", - [3, 31793, 24, 5], - [1, 2343, 30524], - [2, 30503, 30515], - [3, 30477, 11], - [3, 30489, 12], - "postcssrc", - ".config.js", - [2, 3561, 30505], - "@recharts/devtools", - "motion-dom", - [2, 30510, 186], - "motion-u", - "-snapshot", - "midas", - [3, 3591, 9], - "ark-", - "y-codes", - "theme-class", - [2, 30514, 30516], - [2, 30513, 30517], - "hort", - [2, 3677, 30519], - [2, 1172, 30522], - [3, 5558, 22, 6], - [2, 30560, 6802], - [0, 30525, 30526, 30189, 2523], - [0, 668, 8712, 4090], - [0, 1192, 91, 5087, 4874, 28455, 28574], - [2, 30546, 30547, 3966], - [1, 2343, 30549], - [2, 30530, 30537], - [3, 30868, 11], - "cssnano-", - [2, 30531, 594], - [2, 30534, 11504], - "@codecov/", - [2, 30536, 6579], - [3, 1300, 12], - "silent", - "expressots", - "font-f", - "clean-architecture", - "font-family", - "font-weight", - [2, 30544, 30545], - [3, 4526, 12], - "ramework", - [3, 31198, 25], - "particles-", - "desm", - [0, 30550, 30555, 30556, 2523], - [0, 1169], - [2, 41, 30552], - "pro-components", - [2, 5557, 3514], - "node16", - [0, 3421, 1429, 4493, 2899, 4039, 2026, 4474, 91, 4856, 4874, 6503, 1151, 6494, 8648], - [0, 6653, 2275, 5472, 6969, 5982, 7320, 11346, 3541, 1169], - [1, 2343, 30580], - "esc", - [2, 7632, 30558], - [3, 30501, 14], - "gulp-better-rollup", - [2, 30560, 1460], - "Leaflet", - "Maps", - "Gesture", - "Handling", - "two", - "fingers", - [2, 30571, 30572], - [2, 3976, 30573], - "world", - [3, 29868, 24, 3], - "anitize", - [2, 30571, 30578], - [3, 220, 19], - [2, 4026, 3639], - [2, 30575, 30576], - [3, 29963, 27, 3], - "atrules", - [0, 30596, 30597, 2514, 2523], - "children", - "nestings", - "@anthropic-ai/sdk", - "@azure-rest/ai-inference", - [2, 959, 30586], - "vue-virtual", - [2, 209, 3376], - [3, 30402, 16], - [2, 30588, 4298], - [2, 2574, 3375], - "world-iso-codes", - [2, 964, 188], - [2, 30599, 29842], - "normalizes", - "fixes", - [0, 1112, 1415, 16230, 24324, 36538, 30169, 30023, 3530, 28865, 29444, 4135, 26379, 27921, 4459, 33251, 24214], - [ - 0, 33043, 29170, 29455, 29458, 29465, 4874, 20374, 5254, 29891, 29466, 33253, 7677, 23203, 10984, 19839, 1680, - 1177, 20044, 16860, 3144, 3749, 15450, 1894, 23535, 30234, 24181, 91, 29469, 30908, 28797, 29470, 1983, 1984 - ], - [1, 2343, 30601], - "world-", - [2, 30613, 1460], - [0, 30605, 30608, 30611, 2537], - "@cfworker/json-schema", - "@clerk/localizations", - "@ark/attest", - [0, 1676, 1679, 2151, 2212, 17450, 4400], - "non-corrupti", - "admin-lte", - [0, 5245, 29493, 4864, 1429, 1177, 2899], - "@clerk/nextjs", - "@clerk/themes", - [0, 1764, 7682, 26965, 3428, 2090, 27, 1002, 1965, 5995], - "backendless", - [3, 30593, 18], - "to-valid-identifier", - [1, 2343, 30626], - "@astrojs/mdx", - [2, 30618, 30619], - [3, 28058, 16], - "tro", - [2, 3704, 34683], - [2, 30625, 3286], - [2, 30623, 9872], - "control-", - "smartbanner.js", - [3, 2635, 14], - [0, 0, 30627, 30780, 2537], - [0, 8648, 4874, 4880, 34737, 1894, 89, 3824, 7671, 91], - [2, 30612, 30665], - "cascade-layers", - [2, 216, 30629], - [3, 30630, 19], - [3, 3569, 13], - [2, 30631, 30632], - [3, 30633, 24], - "mix-function", - [2, 30634, 30635], - [3, 30633, 20], - "alt-text", - [2, 12009, 30638], - [2, 30637, 30639], - [3, 28688, 12], - [2, 30641, 5746], - [2, 216, 30642], - "ormat-", - [2, 30644, 4798], - [2, 30539, 30645], - [2, 216, 30646], - "gamut-mapping", - [2, 216, 30648], - [3, 30649, 19], - "radients-interpolation-method", - [2, 30650, 30651], - "hwb-function", - [2, 216, 30653], - [3, 215, 19], - "c-unit", - [2, 30655, 30656], - [2, 30655, 30352], - "light-", - "dark-function", - [2, 30659, 30660], - [2, 216, 30661], - [3, 30662, 19], - "ogical-", - "-request", - [2, 30683, 31073], - "-and-clear", - [2, 14639, 30667], - [2, 30664, 30668], - [2, 30663, 30669], - [3, 30670, 26], - "overflow", - [2, 30671, 30672], - [3, 30673, 30], - "behavior", - [2, 11262, 30675], - [2, 30674, 30676], - [2, 30671, 24800], - "viewport-", - "units", - [2, 30679, 30680], - [2, 30671, 30681], - [3, 30628, 13], - [2, 30767, 33380], - "media-minmax", - [2, 216, 30685], - [3, 30686, 24], - "-aspect-ratio-number-values", - [2, 30430, 30688], - [2, 30687, 30689], - [2, 30695, 10740, 4978], - "nested-calc", - [2, 216, 30692], - [3, 30693, 19], - [3, 30628, 12], - "bannerize", - [2, 31495, 31502], - "play-values", - [2, 29577, 30698], - [2, 3646, 30699], - [2, 30694, 30700], - "oklab-function", - [2, 216, 30702], - "relative-", - "yntax", - "color-syntax", - [2, 30704, 30706], - [2, 216, 30707], - "scope-", - "pseudo-class", - [2, 30709, 30710], - [2, 216, 30711], - [3, 30712, 19], - "tepped-value-functions", - [2, 30713, 30714], - [3, 70, 7], - [3, 5845, 9], - [2, 7854, 30717], - [2, 30716, 30718], - [2, 28533, 30719], - [2, 216, 30720], - [3, 30721, 19], - "rigonometric-functions", - [2, 30722, 30723], - [2, 216, 10760], - "css-b", - "lank-pseudo", - [2, 30726, 30727], - "css-h", - [2, 30612, 33812], - "zarm", - "as-pseudo", - [2, 30729, 30732], - "css-pr", - "efers-color-scheme", - [2, 30734, 30735], - [2, 1007, 30738], - [3, 13069, 23, 4], - "postcss-clamp", - [3, 3591, 10], - "r-pseudo-class", - [2, 30740, 30741], - "ouble-position-gradients", - [2, 30513, 30743], - [3, 4791, 14], - "within", - [2, 30745, 30746], - "gap-properties", - [2, 3562, 30748], - "ab-function", - [2, 30478, 30750], - [3, 3616, 10], - "gical", - [2, 30752, 30753], - [3, 3664, 9], - "pacity-percentage", - [2, 30755, 30756], - "verflow-shorthand", - [2, 30755, 30758], - "age-break", - [2, 6423, 30760], - [2, 30764, 30766], - "postcss-place", - [3, 3710, 17], - "lists", - "h", - "@biomejs/", - "playbook-builder", - "algo", - [2, 444, 30771], - "-interactions", - [2, 30773, 89], - [3, 29959, 13], - "@zarm-design/bem", - [2, 3677, 30705], - [2, 30777, 45], - [3, 30774, 13], - "ahooks", - "better-scroll", - [0, 89, 586, 11000, 26264, 6458], - "hermes-compiler", - [1, 2343, 30791], - [2, 30777, 200], - "@oxc-project/runtime", - "zarm-ui", - "zarm-mobile", - [2, 30790, 553], - [2, 20561, 30789], - "render-stream", - [3, 30784, 13], - [0, 30793, 0, 30799, 2523], - "@oxc-node/cli", - [0, 1687, 5303, 1459, 6501, 182, 148, 164, 167, 29468, 187, 153, 191, 28332, 15690, 28361], - "oxc-parser", - [2, 30796, 30797], - "@iconify", - "/utils", - [2, 3882, 11245], - [ - 0, 28407, 1459, 6094, 28416, 28417, 2585, 28442, 18241, 6038, 6110, 1936, 6138, 6139, 6142, 6144, 6145, 20863, - 14600, 5130 - ], - [1, 2343, 30801], - [0, 0, 30812, 30825, 2537], - "@enact/i18n", - [2, 30804, 30232], - [3, 907, 8], - "doublylinked", - "lightning", - "-pool", - [2, 30806, 30807], - "ilib", - "-bytea", - [2, 25638, 30810], - [0, 1192, 1177, 4042, 4468, 1894, 91, 5087, 1895, 1955, 2780, 1011, 1009], - "power-tasks", - "@cyntler/react-doc-viewer", - "putil-", - [2, 30815, 19138], - "varhelpers", - [2, 30815, 30817], - "@enact/docs-utils", - [2, 30405, 30821], - "-test-utils", - [2, 18576, 30823], - "nact-proxy", - "@fal-ai/client", - [0, 31512, 32054, 35062, 35060, 20986, 4453, 5284, 91, 89, 188, 3709, 23332], - [2, 22180, 591], - [1, 2343, 30836], - [2, 1962, 30830], - "titanium", - "dos-detector", - "ed-queue", - "-ended-queue", - [2, 4420, 30832], - [2, 11344, 977], - "tsm", - [0, 30846, 30863, 30865, 2443], - "level-codec", - "write-stream", - [2, 25982, 30838], - "ltgt", - "bundle-size", - "spark-md5", - "vuvuzela", - "rolldown-", - "react select", - [0, 29178, 3744, 3911], - "react dropdown", - [2, 30852, 30856], - "empower", - [2, 3696, 12168], - "universal-", - "accessib", - "strict-equal", - [2, 1683, 30853], - [2, 30851, 30854], - "le react select", - "dereserve", - "accessible", - "licensify", - [3, 21510, 14], - "ilterify", - [2, 30860, 30861], - [ - 0, 48, 53, 68, 61, 71, 73, 76, 14039, 78, 83, 87, 90, 97, 966, 968, 972, 1195, 1593, 1610, 1177, 1879, 1895, - 1938, 1947, 1955, 1959, 1192, 2780, 2843, 3697, 1894, 89, 3824, 2924, 4676, 4677, 4681 - ], - "jsx-async-runtime", - [0, 89, 6071, 7521, 5128], - "@formkit/auto-animate", - [2, 8293, 181], - "@reporters/github", - "@apm-js-collab/tracing-hooks", - "tidev", - "iphone", - "precommit", - [2, 5186, 2203], - [2, 5928, 3717, 2389], - "react-load", - "combine-promises", - "@actions/github", - [2, 20201, 1172], - "@actions/glob", - [2, 19849, 3583], - [2, 1252, 30880], - [2, 20201, 2942], - "errorstacks", - "-sinon", - [2, 2878, 30884], - "-display-", - "@google/genai", - "kolorist", - "oxlint", - [2, 30893, 30894], - "virtual dom", - "dom diff", - [3, 30878, 13], - "undler", - [2, 3886, 1541], - [2, 30897, 30898], - [3, 38298, 13], - "dx-loader", - [2, 32359, 13369], - [2, 30901, 7020], - [3, 30899, 18], - [2, 30459, 30903], - "-ssr-addon-v5-slorber", - [3, 18018, 13], - [2, 30904, 3642], - "@huggingface/inference", - "jest-l", - [2, 30909, 166], - "unplugin-a", - [1, 2343, 30925], - "ight-runner", - [2, 30907, 30911], - [2, 35506, 30914], - "tect-port", - [2, 30916, 30917], - [3, 12312, 18], - "shoehorn", - [3, 2954, 10], - [2, 30923, 1541], - "lugin-pug", - [2, 30918, 30920], - [2, 5334, 30921], - [3, 4887, 20], - [3, 3703, 15], - [0, 0, 12112, 30927, 2523], - "@nestjsx/crud", - [0, 2070, 1108, 6961, 57, 29617, 4643], - [2, 206, 31196], - [2, 30930, 32550], - "@vercel/b", - [1, 2343, 30933], - [2, 18420, 8162], - [0, 30934, 0, 30936, 2523], - [0, 1459, 16485, 182, 28912, 148, 187, 153, 28332, 15690, 28361, 146, 28913, 15716, 29131, 29495], - "parcel-bundler", - [ - 0, 28407, 1459, 6094, 28416, 28417, 2585, 28442, 18241, 6038, 6110, 1936, 6138, 6139, 6142, 6144, 6145, 20863, - 5130 - ], - "Vue", - [1, 2343, 30945], - "@zoroaster/assert", - "glob-fs", - [2, 30942, 10098], - [3, 30939, 11], - "unstyled", - "alamode", - [0, 0, 2667, 31019, 4139], - "humanized", - "si", - "locale", - "@a-la/fixture-alamode", - "localized", - [2, 30952, 1172], - [3, 30949, 14], - "@artdeco/clean-stack", - "@artdeco/erte", - "@artdeco/", - "renderkid", - [2, 30971, 4521], - "jitter", - [2, 30989, 186], - "exception", - [2, 30955, 30962], - "scripts.json", - [2, 30926, 30665], - [2, 30965, 614], - "@nestjsx/", - "@depack/render", - "crud", - "crud-generator", - "frameworks", - "parse-ms", - [3, 30963, 14], - "@netlify/framework-info", - "@wrote/exists", - "milliseconds", - "period", - "@wrote/rm", - [2, 30942, 6696], - "@zmotivat0r/o0", - "@pothos/core", - [2, 30942, 553], - "mercurial", - "hg", - "vcs", - "argufy", - "catchment", - "p-filter", - "p-locate", - "documentary", - "unplugin-u", - [2, 5313, 6355], - [2, 15658, 30992], - "-integration", - "npmjs", - "@pri", - "sma/engines", - [2, 30994, 30995], - "gatsby", - "hugo", - "netlify", - "ts-pattern", - [2, 32976, 33011], - "global-dirs", - "erotic", - "line-replace", - "@prisma/", - [2, 31005, 1676], - [2, 13403, 31016], - "xdg-app-paths", - [2, 31005, 5576], - "studio", - [2, 31005, 31010], - "migrate", - [2, 31005, 31012], - "internals", - [2, 31005, 31014], - "rtdeco", - "point-client", - [2, 4354, 31017], - [ - 0, 8618, 8619, 8620, 1299, 200, 1523, 6876, 8622, 1836, 8623, 1179, 8624, 6847, 8625, 2720, 8626, 8628, 5284, - 4403, 202, 6710, 3741, 8630, 3742, 8631, 3925, 8632, 8633, 4989, 2184, 8634, 7009, 6621, 553, 91, 181, 8635, - 4758, 8636 - ], - [1, 2343, 31082], - [2, 31514, 31516], - "fetch-engine", - [2, 31005, 31022], - "makepromise", - "get-platform", - [2, 31005, 31025], - [2, 31011, 2995], - "@prisma/ge", - "nerat", - "or-helper", - [2, 31029, 31030], - [2, 31028, 31031], - "promto", - "ORM", - "Prisma", - "reloquent", - "Prisma CLI", - "prisma2", - "JS", - "TS", - "SQL", - "SQLite", - "Postgres", - "core-js-pure", - "PostgreSQL", - "CockroachDB", - "MySQL", - "MariaDB", - "MSSQL", - "SQL Server", - "SQLServer", - "MongoDB", - [2, 32483, 13083], - "jest-location-mock", - [2, 27845, 31056], - "dule-alias", - [2, 1464, 31059], - "danger", - "-serve", - "spawncommand", - "docdash", - "hotreload", - "gulp-terser", - "@strapi/strapi", - "temp-context", - "webfont", - "usually", - "yarn-s", - [2, 31070, 11017], - "@pothos/", - [2, 31084, 31085], - [3, 815, 8], - "t-client", - [2, 31072, 31073], - "URIjs", - "pothos", - "IDE", - "svn", - "suggestions", - "intellisense", - "tagged-tag", - [0, 31083, 31199, 31215, 2537], - [0, 29692, 1079, 1676, 3310], - [3, 8998, 11], - "assword", - "@svgr/hast-util-to-babel-ast", - [2, 31104, 31682], - [2, 31089, 1541], - "@epic-web/", - "yalc", - [2, 31092, 364], - "@strapi/", - "@strapi/i18n", - "@strapi/admin", - [2, 31092, 1823], - [2, 31092, 553], - [2, 31092, 594], - [2, 31092, 2942], - [2, 31100, 184], - "@strapi/u", - [2, 31102, 1803], - [3, 28426, 12], - "zshy", - "@types/so", - [2, 31092, 18035], - [2, 31107, 31108], - "@strapi/c", - "loud-cli", - [2, 31092, 5701], - "get-latest-version", - [2, 31112, 31113], - "@strapi/p", - "ermissions", - [2, 31115, 31116], - [3, 31105, 12], - "-transfer", - [2, 31118, 31119], - "@strapi/co", - "ntent-manager", - [2, 31121, 21945], - [3, 31117, 16], - "customize", - [2, 31092, 31124], - "review-workflows", - [2, 31096, 31126], - "cript-utils", - [2, 31121, 31128], - "type-builder", - "interact", - "css-parser", - [2, 31132, 31133], - "@strapi/t", - "s-zen", - [2, 19502, 31137], - "uglifyify", - "uglifyjs", - "ustom", - [2, 4807, 4684], - "css-ast", - "strapi", - "cmf", - "alpha-sort", - "vent-", - [2, 31143, 2618], - [2, 2621, 31144], - [2, 31151, 5130], - "mdast-zone", - [2, 5967, 2619], - "svg-e", - [2, 31149, 31144], - [3, 17944, 19], - "aria", - "admin panel", - "koajs", - "jam", - "graphqL", - "@protobufjs/aspromise", - [3, 31157, 12], - [2, 31158, 14357], - [2, 31158, 5061], - [2, 31158, 2016], - [2, 31158, 1612], - [3, 31162, 13], - "loat", - [2, 31163, 31164], - [2, 31158, 8625], - [2, 31158, 3403], - [3, 31167, 13], - [2, 31168, 25200], - [2, 31158, 4577], - "infrastructure", - [2, 13888, 4719], - "semver-tags", - [2, 10617, 31173], - "self hosted", - "lernajs", - "css-tools", - "@icons-pack/react-simple-icons", - "@khmyznikov/pwa-install", - [2, 25885, 24348], - "wd2", - "jasminewd2", - "-js-extender", - [2, 11132, 31183], - "webdriver-", - [2, 31185, 10057], - "snake-case", - [2, 23689, 31181], - "ang-format", - [2, 21680, 31189], - "natives", - [3, 19209, 11], - [2, 31192, 591], - [2, 4491, 31193], - "vrsource-tslint-rules", - "syntax-patches-for-csstree", - "base-driver", - [2, 31228, 29677, 31230], - [0, 5245, 4874, 5542, 29696], - [2, 31203, 31204], - [3, 27731, 11], - [2, 31201, 57], - [3, 1006, 11], - "averse", - "@types/args", - [2, 31208, 57], - "squid", - [3, 34785, 11], - "privoxy", - "mod_proxy", - "via", - "x-forwarded-for", - "@express", - "-zod-api/zod-plugin", - [0, 32859, 8549, 5592, 5576, 5130, 6082, 28450], - [1, 2343, 31245], - "p3-linear", - "fill-keys", - "not-found-error", - [2, 5223, 31219], - "MCP", - [3, 8648, 12], - "hello-world", - [2, 13669, 31223], - [2, 31226, 28613], - [3, 2670, 12], - [3, 33464, 11], - [3, 1004, 13], - "cp-sugar", - "-external-push", - [2, 31228, 31241], - "-status", - [2, 16238, 31232], - "l-ct-react", - [2, 31236, 1983], - [3, 11282, 19], - [2, 11147, 1983], - [2, 12042, 4406], - [3, 31198, 24], - "pug-", - "move-base", - "pug-code-gen", - "pug-filters", - [2, 31228, 31261], - [0, 26964, 0, 31273, 2537], - "pug-lexer", - "@langchain/community", - "pug-linker", - "pug-load", - "pug-parser", - "pug-runtime", - "strip-co", - [2, 31252, 19490], - [2, 31240, 31253], - "@lobechat/agent-runtime", - [3, 24593, 18], - "down-it", - [2, 31256, 31257], - [2, 24585, 4535], - [3, 31231, 17], - "shape-emoji", - [2, 31228, 31271], - [2, 31995, 5257], - [2, 32038, 31267], - "bail", - "tap-bail", - " tools", - [2, 31269, 31270], - [3, 31238, 12], - "shape", - "updater-color", - [2, 31281, 26543], - [ - 0, 6400, 4967, 12042, 12044, 12046, 12045, 12047, 1424, 12048, 12049, 12050, 12053, 12055, 12056, 12058, 12061, - 12063, 12062, 89, 6071, 12066, 12067, 12068, 12071, 188, 12072, 3698, 12073, 2814, 12074, 1098, 91, 5284, 7521, - 5122, 12075, 12076, 12079, 1623, 1936, 12080, 12082, 12083, 12086, 1424, 12088, 12089, 12090, 12091, 12092, - 12094, 31238 - ], - [1, 2343, 31309], - [2, 33763, 31291], - [3, 31262, 20], - "idn", - "idna", - "dns", - "domain", - [3, 31262, 21], - [2, 31283, 31284], - [3, 31272, 22], - "ut-modes", - "-bidi", - [2, 7001, 31285], - [3, 11071, 14], - [2, 17414, 31287], - "@uppy/companion", - [2, 31313, 364], - "detect-agent", - [2, 5176, 31293], - "remapping", - [2, 31295, 13901], - [3, 33831, 13], - [2, 31298, 31299], - "purge", - [3, 28384, 12], - "presigned-post", - [2, 31301, 31302], - [3, 30257, 11], - "erceptor", - [2, 2032, 31304], - "prom-bundle", - "grant", - "tus-js-client", - "qr code", - [2, 2662, 1278], - [0, 26964, 0, 31273, 2523], - "resumable uploads", - "tus", - "dropbox", - "@vuepress/", - [2, 21282, 31372], - [2, 31316, 31324], - "@radix-ui/", - "@browserify/envify", - [3, 31317, 12], - [2, 31318, 31135], - "common-s", - "hakeify", - [2, 31320, 31321], - "verr", - "primitive", - "webpack-chain", - "ide-mistake", - [2, 31323, 31326], - [2, 15053, 31327], - "unassertify", - [2, 31355, 31356], - [2, 31313, 553], - [2, 31313, 1783], - "vue-server-renderer", - [2, 31338, 31342], - "decode-", - [2, 14649, 4627], - [2, 31335, 31336], - [3, 13063, 12], - "filter-obj", - "-on-first", - [2, 4237, 31340], - "reset-app", - [2, 31313, 31346], - [3, 5422, 9], - [2, 7193, 3634], - "shared-utils", - [2, 31332, 2091], - [2, 31349, 3111], - [3, 21294, 16], - "retape", - [2, 19469, 31352], - [3, 32087, 20, 4], - [2, 21282, 31354], - "last-updated", - [3, 28754, 17], - "ompose-refs", - "tap-esm", - [2, 31359, 31604], - [3, 31330, 18], - "synchronous", - [2, 28756, 8191], - [2, 31363, 31364], - [3, 31361, 17], - "rimitive", - "FIFO", - "lifo", - "LIFO", - [2, 28756, 32760], - "queue js", - "job queue", - "job ", - "active-header-links", - "scheduling", - [2, 31371, 31373], - [2, 21282, 3412], - "task queue", - "ordered", - [2, 31380, 31382], - "linked list", - [3, 31368, 20], - "dequeue", - "escape-keydown", - "assistant-stream", - [2, 31385, 6599], - "assistant-", - [2, 31418, 31420], - [1, 2343, 31476], - "parchment", - [3, 15562, 11], - [2, 31395, 31396], - [3, 12455, 16], - [2, 31391, 1722], - [2, 17612, 2924], - [2, 5197, 4408], - [3, 1694, 14], - "x-buildutils", - "@types/sharp", - "radix-ui", - "ai-sdk", - "shadcn", - "fuzzysort", - "grunt-search", - [3, 19622, 19], - [2, 31403, 3595], - "@qunitjs/browserstack-runner", - "assistant", - "openai", - "ai", - "chatbot", - "ai-chat", - "dom-e", - [2, 15588, 6863], - [2, 31411, 31412], - [2, 31415, 31416], - [3, 6493, 9], - "acritics", - "@types/qunit", - [3, 31331, 11], - "qunit-plugin", - "heme-default", - "@walletconnect/browser-utils", - "ai-chatbot", - "ai-assistant", - "ai-copilot", - [2, 31349, 31428], - "exists-stat", - "js-reporters", - [3, 15580, 13], - [2, 26353, 8791], - [2, 31436, 31464], - "chatgpt", - "gpt4", - "gpt-4", - [3, 2888, 14], - [2, 31436, 553], - [3, 31421, 15], - "testling", - [2, 31436, 31441], - "AnimationFrame", - [2, 705, 31439], - "safe-json", - [2, 31436, 31443], - "window-getters", - [2, 31450, 6774], - "-export-", - [2, 31445, 14057], - [2, 1205, 31446], - "envvar", - "sanctuary", - [3, 31442, 22], - "-identity", - [2, 31449, 31451], - "xyz", - [2, 6080, 31458], - "@ethersproject/address", - [2, 31457, 25352], - [3, 10408, 17], - "al-ui", - "wallet", - "walletconnect", - "jsonrpc", - "cryptocurrency", - "dapp", - "iso-crypto", - [2, 31436, 31472], - [2, 31467, 31408], - [3, 31454, 15], - [3, 30286, 15], - [2, 31436, 594], - [2, 31436, 1616], - "alc", - "legacy-modal", - [2, 31478, 9962], - "@globalart/nestjs-swagger", - [2, 32811, 32812], - [0, 31481, 0, 7653, 2523], - [2, 31478, 553], - [3, 31465, 22], - "timed-out", - [2, 31478, 594], - [0, 12215, 12219, 1014, 28999, 7406, 7403], - "exceptions", - "sentry", - [3, 15602, 13], - [2, 31499, 31500], - "@graphiql/plugin-doc-explorer", - [1, 2343, 31488], - [0, 31505, 0, 31510, 34352], - [2, 31478, 5576], - [2, 31436, 31491], - "jsonrpc-provider", - [2, 31493, 31494], - [3, 31490, 23], - "http-connection", - [3, 27276, 25], - [2, 31497, 31498], - "ethereum-", - "test-network", - [3, 31438, 16], - "ocket-transport", - [2, 7850, 21497], - [3, 4986, 9], - [2, 2079, 4406], - [2, 11183, 31503], - [0, 29419, 29441, 29454, 29756, 29757, 29766, 29807, 29813], - "father-build", - "@mastra/core", - "rc-test", - [2, 31520, 13927], - [0, 29818, 4270, 29823, 5472, 1973, 29830, 29830, 3857, 89, 5131, 12295, 12296, 5122], - "react-slider", - "slider", - [1, 2343, 31522], - [3, 31027, 15], - [2, 7850, 11512], - "core-licensed", - "wordpress", - "gutenberg", - [2, 14013, 8189], - [3, 1103, 9], - "angular-mocks", - [0, 31529, 0, 31531, 2487], - "graphiql", - "next-router-mock", - [3, 5251, 10], - "ponselike", - [2, 31525, 31526], - "body-scroll-lock", - [0, 2817, 18023, 1125, 1129, 31764, 1122], - "motion-v", - [0, 30999, 28818, 5995, 17978], - [1, 2343, 31546], - "radash", - "@a2a-js/sdk", - "js-tiktoken", - "hono-openapi", - "@ai-sdk/provider", - [2, 31543, 31545], - [3, 2766, 10], - "jasmine-ts", - [2, 13130, 3212], - [3, 3793, 11], - "@ai-sdk/", - [2, 31643, 1623], - "ui-utils", - [0, 0, 31547, 31628, 2523], - [0, 1389, 2665, 4650], - [2, 31537, 31570], - "body scroll", - [2, 31549, 31551], - " lock", - [3, 65, 8], - "react scroll lock", - "react-common", - [2, 31552, 31554], - [3, 31555, 17], - "ponents", - [2, 31556, 31557], - [3, 31555, 14], - [2, 31559, 21189], - [3, 31560, 16], - "oks", - [2, 31561, 31562], - [2, 31559, 14592], - [3, 31553, 12], - "freeze", - "vanilla-js", - "tablet", - "bsl", - "-v5", - [2, 31572, 31582], - "@mastra/", - [2, 1379, 31574], - "node-info", - "@restart/hooks", - "resolve-path", - "@restart/ui", - [2, 3744, 20622], - "unco", - "ntrollable", - [2, 31579, 31580], - "schema-compat", - "ecosystem-react", - [2, 31585, 594], - [3, 31548, 17], - [2, 11484, 31587], - "sole-ui", - "@icon", - "s/material", - [2, 31588, 31589], - [2, 3131, 1512], - "reactcss", - "@types/esm", - "@case/eslint-config", - [2, 31596, 31601], - [3, 29736, 11], - "centered", - [2, 10818, 31597], - [3, 30881, 30], - [2, 31599, 1204], - "up-sync", - "chai-spies", - "jsx-loader", - "ntext", - [2, 3808, 31604], - [3, 3850, 10], - "@types/sane", - "testdom", - "@lukeed/uuid", - [2, 31584, 31570], - "color picker", - "sketch", - [2, 4807, 4547], - "photoshop", - [2, 31616, 5592], - [3, 31573, 14], - [2, 31618, 6893], - [3, 31548, 18], - [2, 31538, 31570], - [3, 2651, 13], - "tags-plugin", - [2, 31620, 31621], - [2, 31626, 6893], - [2, 28010, 1492], - [2, 1585, 31624], - [3, 31610, 24], - "mocha-jshint", - [0, 4384, 2076, 5131, 4453, 2013, 15535], - "@ai-sdk/azure", - [1, 2343, 31641], - [2, 31543, 31407], - "docgen/cli", - [2, 10802, 31632], - [2, 31635, 671], - "@internal/", - [2, 31637, 31638], - [3, 28766, 11], - "ypes-builder", - "@openrouter/ai-sdk-provider", - [2, 1710, 2136], - [0, 31660, 31662, 31663, 34352], - "is-root", - "camelcase-", - [2, 24559, 31675, 31676], - "llm", - "agents", - "vectorstore", - "@react-d", - "nd/invariant", - [2, 31648, 31649], - [3, 31650, 11], - [2, 31651, 4163], - [2, 1199, 17586, 31655], - "dnd-core", - "starts-with", - "embeddings", - "rag", - "evals", - "otel", - [0, 26616, 4391], - "replacement", - [0, 2766, 2297, 2881, 2886, 2898, 28023, 3181, 3758, 4535], - [0, 3113, 26799, 5131, 1388], - [1, 2343, 31672], - [3, 24807, 15], - [2, 31665, 1286], - [3, 8136, 9], - "ctrine", - [2, 31667, 31668], - "html4", - [2, 20245, 16957], - [0, 31679, 31684, 2514, 2537], - [2, 30415, 31678], - [2, 32813, 18502], - "reference-", - "invalid", - "condense-newlines", - "landmark", - [0, 20414, 29996, 17982, 11049, 30043, 30048, 3478, 29457, 3923, 18730, 20423, 30050, 30081, 4729], - [2, 30418, 31681], - "olor-helpers", - "rtablejs", - "attr-accept", - [ - 0, 5526, 5528, 5529, 31674, 826, 30086, 4874, 9241, 20441, 28400, 1540, 21594, 1177, 2078, 2220, 2222, 5560, - 29197, 3697, 3752, 4135, 4193, 4238, 4481, 91, 4548, 28519 - ], - "vue-next", - "file-selector", - "draggable", - [3, 71, 24], - [2, 31688, 14255], - [2, 69, 5721], - [3, 5700, 24], - "ipeline-operator", - [2, 31691, 31692], - "-why", - [2, 10876, 31694], - [2, 18043, 200], - [3, 4676, 9], - "locks", - [2, 31697, 31698], - "drag-and-drop", - "color-name", - [3, 1802, 13], - "kanban", - [2, 32312, 2825], - "anser", - [2, 2769, 2086], - "le-promise", - [2, 6935, 31707], - [1, 2343, 31712], - "redbox", - "crash", - [0, 31714, 31730, 31732, 2443], - "css-mediaquery", - [0, 3749, 3527, 11481, 29170], - [3, 33768, 11], - "react-si", - "de-effect", - [2, 31716, 31717], - "iceworker", - "fl", - [2, 16819, 31720], - "karma-html", - [2, 31722, 2903], - "is-whitespace", - "nfl", - "noscript", - [2, 31729, 33865], - "dashdash", - "@types/ran", - [0, 7812, 30138, 3742, 1984], - "titanium-sdk", - [0, 20001, 671], - [3, 20745, 21], - "jest-preview", - [2, 31395, 4384], - "@polka/send-type", - [2, 31005, 31774], - [1, 2343, 31739], - [0, 31746, 31747, 2514, 2537], - [2, 20413, 1699], - [3, 1845, 22], - [2, 31741, 2855], - "react-mount", - "yarn-", - [2, 31744, 17335], - [0, 58, 1437, 3930, 814, 4747], - [0, 1178, 29847, 29851, 25675, 3758, 3938, 4216, 4255, 4389, 4449], - "csstree", - "decap-cms-backend-aws-cognito-github-proxy", - [2, 9497, 31907], - [3, 3321, 10], - [2, 31751, 2849], - [1, 2343, 31756], - [3, 19812, 19], - [2, 31754, 965], - [0, 31757, 27070, 27064, 2523], - [0, 28326, 2017, 31435, 31469], - [1, 2343, 31761], - "completion", - [2, 31780, 31781], - [0, 0, 0, 31762, 2537], - [0, 30486, 5995, 35981, 7072, 18035, 89], - [1, 2343, 31783], - [2, 31768, 13083], - "viewport", - [3, 15616, 12], - "observer", - [3, 1129, 12], - "lazy load", - "inview", - "useInView", - "useIn", - "terse", - "query-plan-executor", - "decap-cms", - "aws-cognito", - "ctionObserver", - [2, 31773, 31777], - [2, 31772, 31778], - [3, 31749, 19], - "zure", - [2, 31792, 17977], - [0, 0, 0, 31784, 2487], - [0, 1177, 6939, 89, 3878, 27158], - [1, 2343, 31786], - [0, 31801, 31803, 31810, 4139], - "@formatjs/", - "listformat", - [2, 19067, 31788], - [2, 31787, 31789], - [3, 31790, 14], - [3, 31749, 18], - [2, 31792, 31804], - "common-stuff", - [3, 31790, 11], - "cu-messageformat-parser", - [2, 31795, 31796], - [2, 6458, 1671], - [2, 19067, 31798], - [2, 19644, 8982], - [0, 1104, 22972, 1676, 2061, 13896, 1776, 3102, 4449], - "what-the-diff", - [0, 53, 87, 94, 1178, 1429, 1596, 1177, 1922, 2323, 2338, 2384, 2419, 2436, 2463, 2510, 2899, 30496, 3421, 3697], - "git-gateway", - [2, 31813, 6064], - [3, 18229, 15], - "lat-gitignore", - "jsondiffpatch", - "gotrue-js", - [0, 2323, 1776, 18011, 5284, 18444, 1745], - "es-crypto", - "gateway", - [3, 31793, 21], - [3, 19657, 16], - [2, 31814, 2855], - [2, 31813, 620], - [1, 2343, 31818], - [0, 31826, 0, 31829, 2537], - "@nstudio", - [2, 4564, 2618], - [2, 2617, 31820], - [2, 31792, 2658], - [3, 28165, 19, 9], - "hmac256", - "hmac512", - [0, 2714, 31809, 3181, 2867], - [2, 31792, 1973], - "exenv", - [0, 30999, 28818, 5995, 31804, 31812], - "custom-", - [2, 31830, 11513], - [2, 10704, 31831], - "otp-io", - [2, 29956, 4963], - [2, 31836, 31837], - [3, 23664, 13], - "or-js", - "dom7", - [2, 13843, 353], - [2, 1176, 31839], - [2, 14510, 2091], - [2, 22588, 2091], - "diff-reporter", - [2, 13872, 31843], - [2, 3024, 6754], - [2, 31848, 31850], - [2, 9944, 7227], - [3, 29951, 21], - "tween", - "elpers", - "napa", - "runstorm", - [1, 2343, 31854], - [0, 31909, 31916, 2514, 2537], - [2, 32904, 158], - "nullthrows", - "@tiptap/core", - "metro-r", - [2, 31858, 96], - "metro-", - [2, 31860, 4227], - "s-runtime", - [2, 6971, 31862], - [2, 5237, 31863], - [3, 5079, 13], - "/codegen", - [2, 31865, 31866], - [3, 31867, 14], - "medium-zoom", - "js-polyfills", - [2, 31868, 31870], - "tinydate", - "tweezer.js", - [2, 8603, 1111], - "le-plugin", - [2, 3630, 31875], - [2, 31868, 31876], - "assets-", - [2, 31878, 29179], - [2, 31868, 31879], - [3, 5059, 11], - "olors", - [2, 31881, 31882], - [2, 31868, 31883], - "@jest/c", - "reate-c", - "-key-", - [2, 31887, 3046], - [2, 6990, 31888], - [2, 31886, 31889], - [2, 31885, 31890], - [2, 3912, 5959], - [2, 31868, 31892], - [3, 31867, 16], - "mmunity-cli-plugin", - [2, 31894, 31895], - [2, 31898, 4333], - [3, 24539, 13], - [2, 17304, 31900], - "laywright", - [2, 32412, 15001], - [2, 31908, 7188, 32485], - "creator", - [2, 10735, 5130], - "mobile-", - [2, 31905, 5001], - "ttlcache", - "@tiptap/", - [0, 30868, 1414, 2020, 2105, 2070, 4745], - "cp-file", - [2, 17964, 31913], - [2, 5063, 18324], - [3, 31333, 16, 3], - "keychain", - "yargonaut", - [0, 20454, 36559, 30529, 826, 4874, 30548, 4135, 1177, 29197, 91], - [2, 36270, 31918], - "s-test", - [2, 31924, 31925], - "@entypo-icons/core", - "ocial-buttons", - [2, 4910, 31921], - "evil-icons", - [3, 15277, 15], - "xecutable", - "feather-icons", - [1, 2343, 31933], - "fontisto", - "oslllo-svg-fixer", - "epub2", - "line-icons", - [2, 4182, 31931], - [0, 0, 21592, 31936, 2399], - "svg2ttf", - "svgicons2svgfont", - [0, 12479, 2947, 7193, 26421, 27968, 2100], - "osx", - [1, 2343, 31941], - "ssr-window", - "@pinia/colada", - [0, 0, 31946, 31981, 2399], - "@cmfcmf/docusaurus-search-local", - [3, 3911, 11], - "form-hmr", - [2, 31943, 31944], - [0, 4493, 32977], - [2, 31951, 31960, 31962], - "currency", - "number-", - [2, 31949, 1671], - [3, 27276, 15], - [2, 33571, 89], - [2, 31954, 31957], - [3, 7628, 10], - "hijack", - [2, 4013, 31955], - "heck", - "onclick", - "outside", - "classic-", - [2, 32028, 1745], - "build-app-blueprint", - [2, 31968, 31971], - [2, 812, 12444], - "t-flow", - [2, 17375, 31965], - "hermes-eslint", - [3, 31947, 30], - "array-hyper-unique", - "crlf-normalize", - "ddon-blueprint", - "book", - "books", - "chapter", - "comic", - "epub-maker", - "epub-maker2", - "node-novel", - "novel", - "volume", - [0, 188, 4646, 1542, 32977, 6533, 3212, 5472], - "matchmedia", - [2, 31982, 3766], - [1, 2343, 32268], - "yphenate-style-name", - [2, 6495, 31985], - "tch-", - [2, 31987, 11034], - [2, 18655, 31988], - [3, 31989, 12], - "mediaquery", - [2, 31990, 31991], - "-media-mock", - [2, 3529, 31993], - "@lobechat/", - [3, 6415, 10], - [2, 31996, 3582], - "escaping", - "respond", - "goat", - "matchMedia", - "🐐", - [2, 32004, 32005], - [3, 31263, 13], - "text-engine", - "color-logger", - "ice-cap", - [2, 31995, 18035], - "esdoc-importpath-plugin", - [2, 31995, 1807, 32030], - "ECMAScript6", - [3, 6608, 10], - [2, 32012, 32014], - "2015", - "ECMAScript7", - [2, 32017, 6893], - [3, 32013, 13], - "ECMAScript8", - [2, 32017, 6836], - [2, 3944, 8253], - "k-monitor", - [2, 4117, 32021], - [2, 32020, 32022], - [3, 32023, 15], - "log-monitor", - [2, 32024, 32025], - "proposal", - [3, 19209, 12], - "http-graceful-shutdown", - "client-ipc", - [2, 32032, 32033], - [3, 32010, 19], - "server-ipc", - [2, 31995, 2092, 591], - [2, 31995, 32036], - "model-runtime", - "mdc", - "developer", - "combobox", - "multiselect", - [2, 31995, 3742], - [2, 31995, 594], - [2, 31995, 32044], - "web-crawler", - [2, 32047, 13538], - "json2mq", - [3, 1841, 9], - "-apps", - [2, 21340, 32048], - "-carousel", - [2, 11167, 32050], - "why-did-you-update", - [2, 32057, 32058], - "carousel", - "Image slider", - "orbit", - [3, 1841, 12], - "rts", - [2, 1841, 6324, 4978], - [2, 32074, 32082], - "@tippyjs/react", - "@vxna/mini-html-webpack-template", - "common-dir", - [2, 1861, 3427], - "name-p", - [2, 32065, 84], - [2, 18977, 32066], - "glogg", - [3, 26921, 11], - [2, 32069, 1646], - "jss", - "jss-plugin-camel-case", - [3, 32072, 12], - [3, 32059, 20], - "ompose", - [2, 32073, 32075], - [3, 32072, 11], - "default-", - "default-unit", - [2, 32077, 32079], - [2, 32077, 2202], - "s-gateway", - "isolate", - [2, 32077, 32083], - [2, 32077, 3639], - "listify", - [2, 12171, 2651], - "q-i", - "qss", - "-annotation-resolver", - [2, 3822, 32090], - [3, 32091, 13], - "-handler", - [2, 4904, 32093], - [2, 32092, 32094], - [2, 32047, 6038], - "react-group", - [2, 4287, 1928], - "type-detect", - [2, 32047, 45], - "inter-element", - "@types/buble", - "py-webpack-plugin", - [2, 4860, 32103], - "@types/esc", - "odegen", - [2, 32105, 32106], - "h-sum", - [2, 12395, 32108], - "@types/ke", - "ymirror", - [2, 32110, 32111], - [3, 23829, 17], - [2, 32113, 3119], - [2, 27479, 4408], - [2, 13419, 32115], - [3, 12290, 12], - [2, 32117, 13735], - [3, 8157, 15], - [2, 32119, 5331], - "deabsdeep", - "white-space", - "deepfreeze", - "dog-names", - "amia", - [2, 22060, 32125], - [2, 32047, 32128], - "market-sdk", - "keymirror", - [2, 4293, 6987], - "@lobehub/tts", - "tts", - "@lobehub/ui", - "@neondatabase/serverless", - "@next/third-parties", - "@react-spring/web", - "jest-pre", - [2, 29611, 32139], - "user-require-helper", - "@serwist/next", - " vector graphics", - [2, 24090, 32141], - "tagname", - [2, 24116, 7466, 32165], - "svginjector", - "@t3-oss/env-nextjs", - "@trpc/client", - "@trpc/next", - "@trpc/react-query", - [3, 32029, 17, 5], - "TapEventPlugin", - "300ms", - "http-shutdown", - "http-terminate", - "prometheus", - [2, 33763, 13538], - [2, 30495, 32158], - "dge-config", - [2, 36840, 32160], - "ctions", - [2, 32163, 32168], - [3, 7214, 13], - "@vercel/s", - "icss", - "lement", - [2, 24116, 32179], - "@4tw/cypress-drag-drop", - "peed-insights", - "@xterm/xterm", - [2, 4609, 2759], - "brotli-wasm", - "alert", - [2, 29706, 32174], - "-and-timezones", - "dexie", - "drizzle-orm", - "commoner", - [3, 10755, 11], - "hydrate", - "coverify", - "es3ify", - "infima", - "grunt-jest", - "jasmine-t", - "apreporter", - [2, 32184, 32185], - "drizzle-zod", - "populist", - "drizzle-", - "gpt-tokenizer", - [2, 32192, 32193], - "inferno-hy", - "perscript", - [2, 23910, 13494, 32197], - [2, 9944, 9847], - [2, 9944, 591], - "-to-backend", - "js-sha256", - "vnode", - "createVNode", - [2, 32237, 1098], - [2, 14040, 1276], - [3, 1898, 19], - "lay", - [2, 1962, 32204], - [2, 2783, 3758], - [3, 15568, 16], - [2, 1781, 32212], - "scrolling", - "infinite", - "fixed", - [3, 31752, 17, 3], - "langchain", - "gulp-rtlcss", - [2, 26708, 32182], - "langfuse", - [2, 5223, 32178], - [2, 1861, 32217], - "dark mode", - [2, 32216, 1732], - "lucide-react", - [2, 32223, 32224], - [3, 3120, 12], - "txt", - "react-popper", - "bootswatch", - "docstrap", - "storysource", - [2, 10818, 32228], - "model-bank", - "customize-cra", - [2, 32234, 32235], - "holderjs", - "modern-s", - "creenshot", - "react-prism", - [3, 34791, 12], - "logging-helpers", - "next-mdx-remote", - "nextjs-toploader", - "nuqs", - "officeparser", - [2, 32244, 1098], - [3, 33256, 22], - "github-files-fetcher", - "oidc-provider", - "ollama", - [2, 7719, 1612], - "partial-json", - [2, 3502, 33498], - "@stitches/react", - "animate-sass", - [2, 3562, 32254], - "trolling", - [2, 32256, 32257], - [3, 839, 14], - "gr", - [2, 11932, 8861], - "mocha-r", - "eporter", - [2, 32259, 32260], - [2, 4385, 32261], - "pdf-parse", - "preview jest", - [2, 27010, 32290], - "plaiceholder", - "posthog-js", - [0, 0, 32306, 32313, 2537], - "log-utils", - "pwa-install-handler", - "line by line", - "engine-base", - "engine-handlebars", - [2, 32278, 32279], - "lo", - "repl", - "lo-dash", - "react-con", - "fetti", - [2, 32283, 32285], - [2, 4150, 32282], - "-75lb", - "react-la", - [2, 11072, 2731], - "yout-kit", - [3, 19580, 11], - [2, 32286, 2002], - [2, 5237, 57], - "lws-middleware", - "-tagfilter", - "refactoring", - "printing", - [2, 3715, 32292], - [2, 26973, 32308], - "react-pdf", - "react-rnd", - "react-scan", - [2, 32299, 32304], - [3, 3913, 11], - [3, 12133, 19], - "tagfilter", - "prepare", - "dangerous", - "oso", - "react-wrap-balancer", - [0, 1175, 2323, 2332, 30561, 2367, 2459, 2494, 2504, 2510, 2530, 1894, 4045], - [2, 17355, 13771], - [3, 23279, 13], - [2, 4627, 8840], - [2, 3166, 32309], - "mobile-detect", - "composition", - [0, 30563, 30564, 30565, 30566, 30567, 30568, 5131, 9006], - [2, 32315, 32316], - "resolve-a", - "ccept-language", - "rtl-detect", - "lister", - "parse-entities", - "svix", - "tokenx", - "ts-md5", - "@red", - "grunt-jasmine-node", - "@redis/bloom", - "@redis/", - [2, 32326, 5576], - "unstructured-client", - "@redis/json", - [2, 32326, 7193], - "use-merge-value", - "time-series", - [2, 32326, 32332], - "mobilegrade", - [2, 20223, 16460], - "sniff", - "word-extractor", - [2, 32339, 594], - "zustand-", - [1, 2343, 32427], - "@cfaester/enzyme-adapter-react-18", - "ocly/openapi-core", - [2, 32323, 32342], - [2, 32348, 3005], - "nth-child", - "nth", - "rc-hammerjs", - [3, 30906, 13], - [3, 1750, 11], - [2, 1186, 3939], - [2, 32349, 32350], - "theme-redoc", - [2, 32349, 32352], - [2, 32356, 32366], - [3, 8286, 13], - "@lobehub/i", - "heme-common", - [2, 32355, 32357], - [2, 20201, 594], - "is-alphanumerical", - "api-doc", - [3, 32351, 12], - [2, 32362, 10958], - "is-decimal", - "is-hexadecimal", - "18n-cli", - [2, 32047, 671], - "netlify-plugin-cache", - [2, 32370, 553], - [3, 32127, 16], - [2, 32047, 32373], - "cssinjs", - "seo-cli", - [2, 28427, 32375], - [3, 28091, 16, 8], - "just-curry-it", - "reducers", - [2, 17790, 32377], - "@next/eslint-plugin-next", - [2, 16479, 1414], - [3, 1905, 16], - "icorn-camelcase", - [2, 32381, 32382], - [2, 4321, 9776], - [2, 2130, 32384], - "@peculiar/webcrypto", - [2, 16931, 32388], - "roma-js", - "@wdio/selenium-standalone-service", - "babelrc-rollup", - [2, 32398, 32399], - "insert-line", - [2, 5316, 1464], - [2, 3944, 2700], - "queryselector", - "shadowdom", - "rdme", - "@types/cr", - "ypto-js", - "@types/ip", - "tanstack", - [2, 32403, 32404], - "gulp-str", - "eamify", - "rc-tools", - "@redux", - "-saga/core", - [2, 32406, 32407], - [2, 32417, 32419], - "tappable", - [2, 33060, 1501], - [3, 13875, 15], - "lias", - [2, 32412, 32413], - [2, 3807, 32442], - "effects", - "@types/nu", - "side effects", - "meral", - [2, 15461, 32423], - [2, 32422, 364], - "@actions/", - "idc-provider", - "redux-m", - [2, 32424, 18716], - "@types/pg", - [0, 32428, 32472, 2514, 2537], - [0, 30585], - [2, 32430, 32439], - "@types/r", - "ecmarkup", - [2, 32437, 32438], - "gulp-emu", - [3, 2453, 9], - [2, 32434, 2995], - [2, 2505, 4088], - "@readme", - [3, 23709, 18, 8], - "tl-detect", - [2, 5051, 32441], - "ystemjs", - "ful", - [2, 24167, 32455], - "dbdocs", - "dpdm-fast", - [2, 32189, 32451], - "goober", - "jest-esm-jsx-transform", - "parcel-plugin-css-to-string", - "use-throttled-effect", - "dbml-generator", - "abstract", - "hex", - "wai-aria", - "ice-detect", - [2, 32466, 38], - "drizzle-kit", - [2, 1949, 32459], - "dx", - "is-hidden", - "fake-indexeddb", - [2, 9335, 6424], - "just-diff", - "smart-tv", - "smarttv", - [3, 15570, 11], - [2, 3506, 4581], - [2, 3862, 32492], - "mcp-hello-world", - [2, 12285, 2527], - "remark-mdx", - [0, 188, 11018, 30592], - "simple-routing", - [3, 23352, 11], - "mdx-", - "jsx-a", - [2, 32476, 5714], - [2, 32475, 32477], - [2, 8137, 32478], - [2, 8909, 32479], - [2, 32474, 32480], - "serwist", - "snapshot-", - [2, 32483, 1182], - "-bubble-menu", - "vercel-ai", - "nano-equal", - [2, 1849, 32489], - "-fuzzy", - "azure-openai", - "shouldComponentUpdate", - "file-viewer", - [2, 3862, 15571, 32498], - "visual-model", - "stt", - [1, 2343, 32500], - "quicklook", - "-v2", - [2, 3862, 3730], - [0, 0, 32501, 32517, 2487], - [ - 0, 33043, 442, 34111, 30737, 4874, 7677, 22839, 1177, 1895, 1942, 1982, 2807, 25209, 2990, 20085, 1894, 19713, - 30762, 23535, 4131, 1531, 4507, 91, 4523, 1984 - ], - [2, 31995, 32503, 32515], - "observab", - "image-gallery", - "image-viewer", - [2, 32510, 32530], - [2, 32508, 32509], - "vitepress-", - "plugin-group-icons", - [2, 5119, 32511], - "vg", - "issue-", - [2, 32512, 57], - [2, 21520, 22370], - "ility-otel", - [2, 32518, 32526], - [0, 30769, 8893, 7595, 7517, 6564, 7265, 1209, 3776, 7268, 6081, 4799, 553, 91, 4545, 614, 6731, 6435, 594], - [3, 217, 9], - "mock-stdio", - [3, 3998, 15], - "ebpro", - [2, 32520, 32521], - [2, 9785, 24387], - [3, 23523, 21], - [2, 32524, 3874], - "ndicator", - "progressbar", - "distribution", - "indeterminate", - "-charts", - [2, 3862, 32543], - [1, 2343, 32533], - [0, 32534, 32537, 32542, 2487], - [0, 30787, 28465], - [2, 17092, 32536], - "-path", - [0, 11536, 29317, 30792, 8850, 1397, 1556, 2020, 2070, 30794, 3510, 1689, 29444, 4042, 4174, 4227, 91, 8550, 28865], - [2, 32539, 21172], - [3, 5079, 24], - [2, 11147, 970], - [2, 5557, 970], - [0, 6996, 668, 5362, 28865, 4042, 2924], - "youtube-iframe", - [2, 3115, 19101], - "unified-args", - [2, 32563, 5066], - [1, 2343, 32548], - [0, 0, 32549, 32555, 2523], - [0, 442, 7677, 1177, 1938, 1942, 30828, 1964, 1966, 2832, 1531, 30835, 91, 4523, 1983, 1984], - "ackends", - [2, 32904, 990], - "iframe", - [2, 3993, 6424], - "@cacheable/utils", - [0, 21354, 91, 2844, 7020, 7119, 30841, 20179, 7047], - [1, 2343, 32642], - "@apphosting/build", - "@atomico/rollup-plugin-sizes", - "git-branch-is", - "remark-slug", - "react-spring", - [2, 32565, 10896], - [3, 30798, 17], - [2, 32575, 32576], - [3, 32557, 12], - "-isomorphic", - [2, 23276, 32566], - [2, 25131, 32566], - [2, 32570, 32574], - [3, 32041, 11], - "@bedrock-layout/use-forwarded-ref", - "gmail-send", - [2, 4807, 31528], - "ython-interpreter", - [3, 3895, 11], - "-singleton", - "text-hex", - "ssrf-safe-fetch", - [2, 32589, 32623], - [3, 23054, 11], - "ent-config", - [2, 32580, 32581], - "ntributors", - [2, 24218, 32583], - [3, 9343, 15], - "gap", - [2, 32585, 32586], - [3, 9347, 9], - [3, 30640, 22], - "cense", - [2, 32588, 32590], - [3, 23078, 23], - [2, 32592, 10663], - [3, 23082, 24], - [2, 32594, 7210], - [3, 23085, 14], - "get-nonce", - "le-extension", - [2, 32596, 32598], - [3, 23085, 18], - [2, 32600, 23076], - "rst-", - "heading-", - [2, 32603, 2970], - [2, 32602, 32604], - [2, 32596, 32605], - [3, 23092, 13], - [2, 9398, 590], - [2, 32607, 32608], - "consec", - "utive-blank-lines", - [2, 32610, 32611], - [2, 23099, 32612], - "emphasis-", - "as-heading", - [2, 32614, 32615], - [2, 23099, 32616], - "name-articles", - [2, 2093, 32618], - [2, 23099, 32619], - [3, 32620, 25], - [3, 32612, 12], - "rast-color-function", - "dashes", - [2, 32622, 32624], - [2, 32621, 32625], - "irregular-", - [2, 32627, 7169], - [2, 32621, 32628], - "mixed-case", - [2, 32621, 32630], - "@theuiteam/lib-builder", - "crawler-detection", - [2, 32746, 31528], - "outer-dashes", - [2, 32621, 32635], - [3, 23118, 23], - [2, 32637, 8958], - "punctuation", - [2, 32637, 32639], - "missing-", - [0, 0, 0, 32677, 2487], - [2, 31635, 32673], - "blank-lines", - [2, 32641, 32644], - [2, 23099, 32645], - [3, 32646, 16], - "ulti", - "ple-toplevel-headings", - [2, 32648, 32649], - [2, 32647, 32650], - "dollars", - [2, 5124, 32652], - [2, 23099, 32653], - [2, 16065, 17537], - [2, 23099, 32655], - [3, 32656, 18], - [2, 32657, 591], - "ordered-", - "list-ma", - "rker-value", - [2, 32660, 32661], - [2, 32659, 32662], - [2, 23055, 32663], - [3, 23139, 22], - "-alignment", - [2, 32665, 32666], - [2, 17998, 2585], - "retext-english", - "retext-", - [2, 10832, 2195], - [2, 32670, 32671], - "ai-v6", - [2, 32675, 32676], - [3, 32643, 13], - "sdk-v4", - [0, 3358, 1564, 10057], - [2, 32700, 7174], - [3, 23096, 14], - "nk-title-style", - [2, 32679, 32680], - "maximum", - "-heading", - [2, 32683, 15309], - [2, 32682, 32684], - [2, 23055, 32685], - [3, 32686, 20], - "line-length", - [2, 32687, 32688], - [3, 23113, 30], - "ed-urls", - [2, 32690, 32691], - [3, 23113, 25], - "s-in-section", - [2, 156, 32694], - [2, 32693, 32695], - [3, 32617, 18], - "ty-url", - [2, 32697, 32698], - [3, 31198, 34], - "-paragraph", - [2, 15403, 32701], - [2, 32637, 32702], - [3, 23118, 16], - [2, 32704, 14550], - [2, 170, 23116], - [2, 23099, 32706], - "-like-url", - [2, 11043, 32708], - [2, 23099, 32709], - "ed-fu", - "ll-reference-image", - [2, 32711, 32712], - [2, 14475, 32713], - [2, 23124, 32714], - [3, 32715, 39], - [2, 32716, 163], - [3, 32672, 14], - [2, 32718, 3997], - [2, 31228, 27863, 32721], - "bsorbers", - [2, 32723, 32724], - [3, 32720, 20], - "emitters", - [2, 32722, 32726], - "-shape-circle", - [2, 32728, 32729], - [3, 32725, 35], - "square", - [2, 32731, 2585], - [3, 31244, 19], - "autolinker", - [2, 32734, 32735], - [3, 31244, 14], - "lim", - [2, 31281, 14858], - [2, 31281, 32738], - "roll", - [2, 31281, 32740], - "tilt", - [2, 32742, 32743], - [3, 32739, 22], - "winkle", - [2, 31281, 32745], - "wobble", - "tua-", - [2, 4511, 32078, 4366], - [1, 2343, 32763], - "caseless", - [2, 32752, 2855], - "aws-sign2", - [3, 32674, 18], - "oauth-sign", - [2, 3013, 2660], - "forever-", - [2, 32755, 4575], - "har-validator", - "is-typedarray", - [2, 2666, 1580], - "use-callback-ref", - "taper", - "karma-cli", - [0, 32764, 32771, 32780, 2399], - [ - 0, 8181, 26057, 28329, 28607, 28620, 28631, 28632, 28672, 28673, 26364, 28963, 29273, 28685, 30585, 31857, - 31902, 32411, 33136, 34082, 33056, 33586, 33588, 33590, 33591, 34083, 33592, 33600, 33601, 33604, 33613, 33623, - 10981, 10984, 37051, 34087, 28709, 1556, 16230, 28718, 28761, 28780, 28805, 28883, 28896, 28911, 2161, 36538, - 28964, 3090, 3189, 31530, 28974, 3510, 29049, 15451, 4382, 29050, 4383, 27921, 27438, 29161, 29165, 29219, - 29220, 29235 - ], - "glob-bin", - "use-sidecar", - "JSDA", - "stealthy-require", - [3, 4010, 16], - [2, 32769, 364], - [ - 0, 29267, 29290, 29295, 10614, 34092, 11016, 11018, 31408, 29304, 1177, 2559, 29332, 3980, 4543, 1984, 29887, - 29323, 188, 13151 - ], - [2, 32774, 32779], - "thenable", - [3, 5430, 21], - "useRef", - "createRef", - "merge refs", - "vconsole", - "ummary", - [0, 29345, 29332, 8588, 4383, 12951, 188, 12072, 6284, 91, 10309, 181, 4380, 5130, 29346], - [1, 2343, 32785], - [2, 32783, 32784], - "detect-n", - "ode-es", - [0, 0, 32791, 32799, 2443], - [2, 4807, 1845], - "@react-pdf/renderer", - "code spliting", - "sidecar", - [2, 4625, 8119], - [0, 5087, 1192, 4468, 4474, 4493, 91], - "index.js", - [2, 32028, 33976], - "is-wayland", - "copy-text-to-clipboard", - [2, 32797, 32798], - "mutation", - "-observer", - [ - 0, 5995, 10906, 24299, 29527, 29563, 29565, 29575, 29576, 29658, 29706, 29723, 1623, 6802, 4967, 29731, 29730, - 29842, 29845, 29868, 29963, 30047, 30133, 30136, 30161, 30163, 30487, 91, 30489, 30501, 30523, 30562, 30569, - 30574, 30591, 30593, 30600 - ], - "-tslint", - [2, 1009, 32800], - [3, 1009, 11], - "/analyze-trace", - [2, 32802, 32803], - [2, 1977, 2528], - "micro-", - [2, 32806, 7906], - "svelte-loader", - [1, 2343, 32837], - "down-config", - [3, 13476, 17], - "ntext-async-hooks", - [3, 36559, 16], - "ResizeObserver", - [2, 32817, 11937], - "worktop", - [3, 8809, 20], - [2, 17214, 5477], - "perty-rule-prelude-list", - "path-parse", - "scss-loader", - "-flag", - [2, 6846, 32822], - [2, 15884, 32823], - [3, 1790, 16], - "copy-dir", - [3, 8119, 14], - [3, 32790, 18], - "vue-scroll", - "vue-scrollbar", - "vue-plugin", - "滚动条", - "eartbeat", - "lory.js", - [2, 33112, 33113], - "adjust-sourcemap-loader", - [0, 32838, 32846, 30825, 2487], - [0, 29304, 26699], - [2, 32841, 10238], - [2, 4807, 1955], - [3, 31435, 16], - "cls-hooked", - "myrmidon", - [2, 31436, 2018], - [3, 30380, 15], - [0, 1192, 1177, 4042, 4468, 1894, 91, 5087, 4880, 1895, 1955, 2780, 1011, 1009], - "ncredible", - [2, 32845, 32847], - "ensor", - [2, 4914, 32849], - "secrets", - [2, 16645, 32851], - [3, 25837, 16], - "anjs-rules", - [2, 32853, 32854], - "fatum", - [2, 14560, 6816], - [2, 3335, 32857], - "telegram", - [2, 21386, 32859], - "vesta", - [1, 2343, 32868], - "react-camera-pro", - "documentate", - "idebar", - "umentate", - [2, 25821, 32866], - [0, 0, 32869, 32882, 2523], - [0, 4880, 4883, 89, 3824, 91], - "better-npm-run", - "clamp.js", - [2, 19825, 4627], - [2, 1870, 32872], - "ewma", - [2, 4031, 24388], - "spdy", - "karma-fixture", - [2, 20441, 6543], - "restify-", - "clients", - [2, 32879, 32880], - [0, 89, 28946, 6847, 30858], - "watershed", - "@applitools/utils", - "DTrace", - "karma-opera-launcher", - [1, 2343, 32893], - [3, 18613, 12], - "convict", - [2, 32957, 32963], - "antora-component", - "@dataui/crud", - [0, 32898, 32902, 32915, 2523], - "is-uuid", - "rewrite-imports", - "quit", - "shutdown", - [0, 30939, 30941, 30944], - "terminate", - "kill", - "serviceworker", - [ - 0, 30949, 30951, 30953, 30954, 30961, 30966, 30973, 30976, 30977, 30980, 30984, 30985, 30988, 31003, 31007, - 31024, 31033, 31036, 31053, 31060, 31065, 31067, 31068 - ], - [2, 32904, 11017], - [3, 32884, 12], - "@types/webrtc", - "NoSQL", - "reql", - " language", - [2, 3766, 32908], - "applitools", - "eyes-sdk", - "test automation", - "visual regression", - [2, 32731, 27819], - [0, 26591, 1973, 5472, 13083, 6969, 1429, 1145, 1745, 31077, 31079, 31080, 1776, 1204, 6813], - "accelerate", - "detectrtc", - [2, 32892, 30665], - [2, 32920, 614], - [3, 32918, 13], - [1, 2343, 32935], - [2, 32923, 32931], - "install-p", - "json-copy", - [2, 28093, 32924], - [2, 31281, 32933], - "nano-copy", - "plain-", - [2, 3425, 1496], - [2, 32928, 32929], - "eers-cli", - "prepend-file", - "life", - [2, 32937, 32938], - [0, 0, 30812, 30825, 2523], - [1, 2343, 32964], - [3, 32737, 23], - "tate", - "drag-drop", - "plasmo", - "camera", - "prebuild", - "-install", - [2, 32942, 32943], - "webcam", - "-os", - [2, 642, 32946], - "practice", - [2, 15090, 32948], - "cam", - "Automation", - "pixel", - "blob-to-buffer", - "recognition", - "webRTC", - "autohotkey", - [3, 35870, 14], - "drag drop", - "machine", - "drag & drop", - "learning", - "react-h5-audio-player", - "itro-modules", - [0, 32974, 33037, 33040, 2523], - [2, 32995, 8745], - [3, 16005, 16], - [2, 32966, 4142], - "-twoslash", - [2, 4614, 32968], - [2, 9408, 32969], - [2, 15125, 5711], - "date-time", - "flru", - [ - 0, 31384, 31735, 34024, 31315, 31330, 31358, 34025, 31361, 31362, 30375, 31368, 31378, 31383, 3266, 9011, 4763, - 9355 - ], - [2, 33470, 33475], - [3, 30686, 19], - "pinia", - [2, 15476, 8961], - "wasm-pack", - "@expo/spawn-async", - [2, 32982, 147], - "@parcel/c", - "@parcel/fs", - [2, 32985, 5602], - [3, 5367, 15], - [2, 5368, 7158], - "mnemonic-id", - "node-object-hash", - "@plasmohq/init", - [2, 32991, 32992], - "@plasmohq/", - "parcel-config", - [2, 32994, 23], - [3, 32990, 19], - [3, 10848, 14], - "@plasmo/config", - [2, 32999, 33003], - "js-cleanup", - [3, 32996, 11], - [3, 4058, 16], - [2, 33000, 3874], - [2, 25572, 1155], - "stants", - [2, 33006, 594], - "removal", - "@plasmo/", - [2, 33006, 5130, 33008], - "-shared", - [2, 4807, 32965], - [2, 13843, 19101], - "ixins", - "visionOS", - "tvOS", - "macOS", - [2, 33018, 89], - "3-drag", - [2, 6491, 33016], - "@iconify/", - "cpp", - [2, 4861, 24847], - [2, 33022, 2847], - "static-s", - [2, 21897, 33024], - "sass2less", - "swift", - "player", - "mse", - "commenting", - [2, 14034, 13828], - [3, 19570, 16], - [2, 33030, 2649], - "spdx-", - "eme", - "jsi", - "satisfies", - [2, 33032, 33035], - [0, 8818, 4874, 4880, 4883, 89, 3824, 1984, 31390], - [2, 2369, 2284], - [3, 32978, 18], - [ - 0, 31398, 3287, 4592, 31399, 89, 4963, 181, 4967, 4380, 31400, 31406, 31407, 31408, 6070, 31409, 30210, 31410, - 31422, 31423, 31424, 31431, 31432, 31433, 31454, 31466 - ], - "p-banner", - [2, 33039, 33041], - [2, 33044, 147], - [3, 5517, 19], - [1, 2343, 33049], - [2, 8147, 14773], - "ts-expose-internals", - [2, 13888, 2150], - [0, 0, 0, 33054, 2537], - [2, 1884, 10791], - "buffer-es6", - "process-es6", - "astrojs", - [0, 3563, 1623], - "compliance", - [2, 33060, 33585], - "dset", - "flattie", - "magicast", - [3, 31902, 18], - "zod-to-ts", - "xxhash-wasm", - "yocto-spinner", - "@oslojs/encoding", - [2, 33066, 33067], - "@astrojs/c", - "ompiler", - [2, 34674, 13535], - "zod-to-json-schema", - "http-cache-semantics", - [2, 33072, 33073, 3984], - "@astrojs/m", - "arkdown-", - [2, 34674, 6943, 19687], - [2, 7185, 33076], - "-object-hash", - "MappingURL", - [2, 4225, 33077], - [1, 2343, 33081], - "@types/dlv", - [0, 33089, 33090, 33091, 2537], - "rehype-toc", - "astro-scripts", - [2, 33085, 33086], - [3, 24220, 12], - "titles", - [2, 4807, 9485], - [2, 4807, 33070], - [0, 26675, 26678, 26684, 26690, 26685, 3259], - [0, 5087, 4874, 1596, 1192, 1894, 3951, 3980, 4094, 4468, 4474, 1531, 4521, 91], - [0, 12659, 8124, 1745], - [1, 2343, 33094], - "strata", - [0, 33095, 33102, 33103, 2523], - [0, 9355, 9307], - "nd-cache-dir", - [2, 16785, 33096], - [3, 13364, 12], - [2, 33098, 1095], - "graphlib", - [3, 4069, 16], - [0, 1983, 89, 2220, 3824, 26744, 966, 1030, 972, 968, 30521], - [0, 89, 2220, 31523, 1932, 1745, 25677], - [1, 2343, 33105], - [0, 33106, 33107, 33108, 2523], - [ - 0, 2611, 3478, 1759, 31533, 33507, 3084, 31534, 2226, 31535, 2845, 33062, 31609, 31536, 31750, 31548, 31617, - 31619, 31571, 5328, 31610, 31623, 29421 - ], - [ - 0, 4763, 4493, 1177, 2205, 4042, 1984, 4473, 23203, 91, 53, 4874, 31629, 31631, 31634, 32643, 2069, 10879, 8818, - 32674, 32750, 7677, 31636, 33137, 31639 - ], - [0, 31408, 31645, 29486, 4575, 31646, 31647, 31656, 31657, 31658, 3151, 2041, 91, 31659, 5130], - [1, 2343, 33132], - "fuzzysearch", - "sander", - [3, 29704, 20], - "ntax-descriptor-syntax-production", - "@types/d3-", - [2, 33114, 4552], - [2, 33114, 1473], - "force", - [2, 33114, 33117], - "hierarchy", - [2, 33114, 33119], - [2, 33114, 16662], - [3, 33121, 11], - [2, 33122, 1659], - "@saintno/comfyui-sdk", - "@virtuoso.dev/masonry", - "treemap", - "sunburst", - [2, 13480, 33130], - "diagram", - "jaeger", - [2, 13475, 4715], - [0, 0, 33135, 33217, 2523], - [2, 5088, 33134], - "dfkit", - [0, 107, 972, 5087, 1742, 1192, 3286, 1894, 89, 3824, 3904, 4039, 4468, 91], - [2, 33142, 33147], - [2, 31635, 3965, 553], - [2, 33141, 20760], - [2, 33140, 23], - [3, 34681, 19], - [3, 10210, 16], - [3, 32411, 20], - "testrunner", - "@next/", - "@next/env", - "@rspack/core", - [3, 26697, 11], - [3, 5215, 12], - "piccolore", - "-optimizer", - [2, 11928, 33150], - [2, 33148, 33151], - [2, 4850, 14643], - "css/metrics", - [2, 4202, 33154], - [2, 17189, 33155], - [3, 28436, 14], - [2, 33157, 16358], - [2, 33157, 6805], - [3, 33159, 15], - "rimitives", - [2, 33160, 33161], - "turborepo", - "triples", - [2, 29314, 33164], - [2, 27913, 1237], - [2, 33144, 33166], - [3, 33167, 15], - "nomodule", - [2, 33168, 33169], - [2, 3878, 3007], - [2, 33144, 33171], - "@next/swc", - "@taskr/clear", - "ac-colors", - "@taskr/esnext", - "mphtml-validator", - [2, 9165, 33177], - [2, 10880, 1179], - "i-info", - [2, 4857, 33180], - [3, 11796, 15], - [2, 33182, 10366], - [3, 7808, 17], - "rve-s", - [2, 16826, 9654], - "tatic-core", - [2, 33185, 33187], - [2, 33184, 33188], - "hsv", - "@types/fresh", - "urry", - [2, 7887, 33192], - "th-to-regexp", - [2, 28121, 33194], - "atform", - [2, 28175, 33196], - "@types/send", - "amphtml-validator", - "async-sema", - "lch", - "cli-select", - "color-names", - "client-only", - "cmyk", - "comment-json", - "mix", - "edge-runtime", - [2, 13773, 1194], - "lodash.curry", - "native-url", - "string-hash", - "taskr", - "unistore", - "watchpack", - "harmonies", - [0, 89, 3286, 23803, 3287, 38, 3212, 1973, 5472], - [1, 2343, 33219], - [0, 0, 33220, 33224, 2487], - [ - 0, 603, 8862, 811, 816, 6373, 5535, 30867, 5087, 13204, 31087, 11016, 17494, 11018, 13072, 1503, 1567, 1610, - 1192, 2780, 2832, 2990, 15324, 1894, 4042, 4073, 4076, 4201, 29889, 4383, 4468, 91, 1983, 188, 4639, 4646, 19235 - ], - [3, 18758, 12], - "ogress", - [2, 33221, 33222], - [ - 0, 188, 8588, 31685, 31687, 31700, 7838, 29889, 31702, 1802, 17819, 29953, 31703, 91, 31704, 4453, 5131, 5284, - 4627, 181 - ], - [1, 2343, 33226], - [0, 26338, 0, 33234, 2537], - [2, 27135, 16460], - [2, 33229, 33521], - [3, 30464, 13], - "domparser-rs", - "rtl", - "ltr", - [2, 33461, 33965], - [0, 3857, 5128, 31912, 89, 5131, 12295, 12296, 181, 15571, 35060, 158], - [2, 33236, 18200], - "get-port-", - [2, 33238, 33239], - [3, 5366, 9], - "tter-sqlite3", - [1, 2343, 33241], - [0, 33242, 33246, 25117, 2487], - [0, 30784, 20378, 16860, 3530, 3561, 28865, 27921], - "@antfu/ni", - "run series", - "@dotenvx/dotenvx", - [ - 0, 58, 31292, 5180, 30787, 37017, 28465, 8862, 811, 16808, 10895, 24725, 9743, 37012, 28572, 1415, 1457, 1544, - 1573, 1594, 1615, 30023, 1759, 1763, 37014, 668, 1869, 2007, 984, 28575, 31308, 18584, 3090, 3189, 11480, 3266, - 3445, 3493, 3510, 34928, 3527, 3613, 3616, 37015, 28119, 24759, 29444, 4042, 4060, 2278, 21688, 4200, 37013, - 4072, 4955, 27438, 4729 - ], - [2, 4807, 30228], - [1, 2343, 33252], - "LINQ", - "FRP", - [2, 29445, 1732], - [0, 0, 0, 33278, 2537], - [2, 33254, 8253], - "@vitejs/", - [2, 23354, 6708], - [2, 5, 33255], - "side-effects", - [2, 14614, 33257], - [3, 1705, 12], - "ruiser", - [2, 33259, 33260], - [3, 18106, 16], - [2, 33262, 2429], - [2, 1921, 33274], - "tslint-etc", - "no-toplevel-property-access", - [2, 4491, 33266], - "tslint-no-", - "unused-", - [3, 5804, 11], - [2, 33270, 1429], - [2, 33269, 33271], - [2, 33268, 33272], - "wc", - [2, 9352, 364], - "datagrid", - "survey-core", - [0, 3857, 5128, 12295, 12296, 28641, 1616, 5131, 1149, 4160, 28654, 28656, 16722, 31824, 31825, 3348], - [1, 2343, 33280], - [0, 0, 2667, 31019, 34352], - [1, 2343, 33300], - " allocate", - [2, 1398, 33282], - [2, 17681, 1965], - "2fa", - "hotp", - "uninitialized", - "topt", - [2, 33290, 33291], - "google a", - "uthenticator", - [2, 33294, 7120], - "mock-env", - [3, 5165, 11], - "dist-tag", - "one time password", - "prepublish", - [2, 37718, 20105], - "2 factor", - [0, 33301, 33306, 33372, 34352], - [ - 0, 5145, 30551, 30583, 5154, 7709, 28384, 30584, 13437, 30602, 30603, 30609, 30610, 13187, 30814, 12207, 7948, - 30824, 30866, 30887, 30906, 31178, 31179, 31247, 31255, 31263, 32003, 32008, 32010, 32031, 32975, 32034, 32035, - 32502, 32041, 32569, 32042, 32043, 32045, 32053, 32059, 32060, 32096, 32100, 32127, 32131, 32133, 29421, 32134, - 32135, 33128, 33131, 32787, 32136, 33124, 32140, 32146, 958, 32147, 32148, 32149, 29261, 32156, 32157, 32159, - 32161, 33125, 32169, 30778, 1114, 13215, 32171, 35358, 977, 32173, 1673, 1676, 32175, 1687, 32176, 32187, 31930, - 2069, 37853, 2096, 4776, 32190, 2226, 2646, 2681, 23913, 32194, 29762, 2696, 12105, 32198, 32208, 2928, 32213, - 32216, 32220, 3021, 32221, 3096, 32222, 3127, 26568, 32230, 32232, 3266, 3286, 3285, 32239, 32240, 29306, 3415, - 32241, 32242, 32246, 32247, 31407, 32248, 32249, 32250, 32263, 29899, 3513, 3519, 3533, 32266, 3555, 32267, - 20325, 32270, 3765, 3777, 89, 32274, 3824, 11366, 12229, 3837, 32280, 15575, 32295, 3882, 32296, 3885, 32297, - 32298, 32305, 3984, 3988, 3989, 32314, 32317, 4135, 4164, 9348, 32578, 4302, 4341, 32320, 26713, 4376, 32321, - 32322, 11804, 32328, 4566, 32331, 3348, 32337, 4729, 4745, 4763, 9355, 32338 - ], - "@sai", - "lshq/lodash", - [2, 33302, 33303], - [2, 4807, 4588], - [ - 0, 192, 37097, 32344, 32354, 32367, 32369, 32371, 32374, 32379, 32386, 8648, 27424, 21120, 968, 972, 974, 32387, - 32391, 5245, 4864, 32400, 8818, 4870, 5139, 4874, 32409, 32420, 33133, 32426, 4880, 4883, 32429, 5254, 32440, - 11800, 9315, 9241, 29891, 7677, 12384, 1529, 1556, 1610, 1620, 32444, 1759, 1763, 32445, 32446, 32457, 1177, - 32458, 32461, 2151, 2070, 2559, 2675, 28375, 32463, 2990, 1209, 3117, 32469, 3171, 3310, 640, 32470, 3478, 1894, - 3985, 9340, 32471, 3992, 28380, 4131, 32482, 4320, 4494, 4507, 91, 4549, 4555, 1983, 1984 - ], - "captains-log", - "js-f", - "ile-", - [2, 33309, 19101], - [2, 33308, 33310], - [2, 9480, 33311], - "flaverr", - "survey", - "i18n-2", - "include-all", - "surveyjs", - "-as-action", - [2, 32959, 33318], - "survey-library", - "pack-process", - [2, 32959, 33321], - [3, 33322, 12], - [2, 33323, 1552], - [2, 20100, 3031], - "ictionaries", - [2, 27239, 33326], - "parley", - "rttc", - "form-component", - "-generate", - [2, 4104, 33331], - "sails-", - "stringfile", - [2, 33333, 33334], - "skipper", - "-addresses", - [2, 4082, 33337], - [2, 22775, 33338], - "whelk", - "form-rendering", - [2, 33323, 2150], - "@sailshq/", - [2, 33343, 705], - "survey-renderer", - "root-require", - "dynamic-form", - "hook-orm", - [2, 33333, 33348], - [3, 33349, 11], - "sockets", - [2, 33350, 33351], - [2, 24095, 33358], - "sails.io.js", - "-store", - "-file-store", - [2, 1577, 33356], - "-form", - "mvc", - "form-library", - "form-management", - "web-framework", - "sailsjs", - [2, 8631, 33366], - "sails.js", - "naire", - "data-collection", - "data-validation", - "input-validation", - [3, 7842, 12], - "schema-form", - [0, 5130, 31409, 31431, 3287, 32486, 31407, 32490, 32494, 32132, 32495], - [2, 33374, 3552], - [3, 14944, 11], - [1, 2343, 33468], - "truncate-", - [2, 33467, 33631], - "utf8-bytes", - [2, 33376, 33378], - "js-api", - "mktemp", - [2, 30767, 33384], - "filename", - "wasm-nodejs", - [2, 31208, 22074], - [2, 11183, 6882], - [2, 13167, 33388], - "abs", - [2, 33391, 10271], - "parse-srcset", - [3, 13169, 16], - [3, 13405, 16], - [2, 11183, 614], - "ostrophe", - [2, 33392, 33394], - [2, 11183, 158], - [2, 33398, 1020], - [3, 33396, 15], - [2, 11183, 33400], - "steps", - [2, 33402, 2699], - [3, 33387, 17], - [2, 11183, 18346], - [2, 33405, 9997], - [3, 33403, 15], - [2, 13163, 11218], - [3, 32049, 11], - [2, 33407, 13756], - "-sin", - "gle-context", - [2, 33409, 33410], - [2, 2784, 33411], - [3, 31591, 11], - [2, 4961, 4184], - [2, 33413, 33414], - [3, 4927, 10], - [2, 11183, 3811], - [2, 33421, 1799], - "glob-importer", - [2, 33416, 33419], - [3, 33399, 15], - [2, 33421, 10205], - [2, 33421, 10222], - [2, 33425, 184], - [3, 33393, 15], - [2, 33427, 10261], - [3, 11185, 16], - [2, 33429, 18338], - [3, 13162, 15], - [2, 33429, 5449], - [2, 33432, 9939], - [3, 13162, 17], - [2, 33434, 11206], - [3, 33404, 16], - [2, 3115, 11415], - [2, 33439, 33440], - "bare-script", - [2, 1818, 11415], - [3, 27467, 17], - "tions", - [2, 33442, 10148], - [3, 33417, 15], - [2, 13167, 11241], - [2, 33445, 33446], - [3, 33418, 16], - "gmented", - [2, 33442, 33448], - "agination", - [2, 33389, 11245], - [2, 33397, 11211], - [2, 11183, 9044], - [2, 33453, 33457], - [3, 5050, 13], - "food", - "drink", - "helpful", - [3, 14673, 16, 7], - "ourcesoftware", - [2, 8423, 33458], - [2, 25184, 33466], - [2, 41, 3874], - "teaching", - "experi", - [2, 33463, 1744], - [2, 13527, 591], - "local-npm-registry", - [3, 5123, 14], - [0, 33469, 33476, 6151, 2523], - [0, 546, 8605], - [3, 32034, 11], - "ecdh", - "ecdsa", - "solver", - "bplist-creator", - "etch-sse", - [0, 8616, 91], - "seed", - [1, 2343, 33480], - "oxfmt", - [0, 33481, 23733, 33483, 2523], - [0, 29421, 6494, 1525, 2026, 12105, 4548, 4763], - "@bazel/runfiles", - [0, 29681, 29695, 29718, 29719, 31264, 1745, 13083], - [1, 2343, 33485], - [0, 33486, 33487, 33488, 2537], - [0, 7384, 26870], - [ - 0, 4200, 3510, 89, 4207, 4135, 1984, 24324, 3824, 4459, 11143, 16485, 3170, 3527, 27921, 91, 4874, 5254, 37085, - 8778, 11938, 32815, 32818 - ], - [0, 4270, 29043, 1984, 5472, 1973, 4627, 4963, 23246, 89, 188, 3709, 5926], - [3, 21120, 19], - [2, 33489, 3543], - "aggregate-error", - "bunup", - "env-ci", - [2, 2103, 18280], - "git-l", - "og-parser", - [2, 33495, 33496], - "-esm", - [2, 18170, 33498], - "p-each-series", - [1, 2343, 33502], - [0, 33506, 33508, 33509, 2523], - "file-url", - [2, 2847, 4219], - [2, 17050, 33504], - [0, 2018, 32839, 32844], - "p-retry", - [0, 2924, 5087, 4874, 4677], - [0, 6901, 20319, 1973, 5472, 5433, 13657], - [2, 33511, 57], - "markdown ", - "solidjs", - "@fluentui/react-component-event-listener", - [3, 33513, 26], - [2, 33514, 2538], - [3, 6061, 10], - "/event-stack", - [2, 4133, 33517], - [2, 33516, 33518], - [2, 8652, 3858], - "oolbar", - "@artsy/fresnel", - [2, 30415, 594], - "standalone", - [2, 54, 33524], - [2, 33527, 33531], - "@react-s", - "@percy/cli", - "@percy/c", - [2, 33529, 4915], - "tately/overlays", - "anchor-js", - [3, 14132, 14], - [2, 33535, 17966], - [3, 33526, 15], - "ilter-imports", - [2, 33533, 33536], - [2, 33544, 33548], - "d-props", - [2, 2034, 33539], - [2, 1249, 33540], - [2, 30851, 1204], - [2, 1199, 33542], - "@react-t", - "chai-enzyme", - "react-ace", - "react-code", - "ypes/shared", - "sandboxer", - [2, 33547, 33549], - "ource-render", - [2, 3890, 33551], - "react-static", - [2, 33559, 6649], - "-routes", - [2, 33553, 33555], - "niversal-component", - [2, 12273, 33557], - [3, 3911, 17], - "satisfied", - [3, 4134, 12], - [2, 33561, 1623], - [1, 2343, 33569], - "simulant", - "ta-scripts", - [2, 4409, 1231], - "@aws-lite/client", - "@aws-lite/s3", - [0, 0, 33570, 33584, 2537], - [ - 0, 1173, 1175, 1195, 1267, 1272, 1280, 1282, 32870, 1429, 32871, 34009, 1652, 1676, 1705, 1177, 1903, 1958, - 1970, 2054, 2092, 2151, 2629, 2651, 2297, 2878, 2881, 2895, 32877, 26470, 2897, 2900, 2904, 32886, 2906, 2912, - 2915, 2925, 2899, 3363, 3524, 4039, 37320, 12826, 4131, 4535, 37871, 4027, 2924, 4681 - ], - [3, 21564, 23], - [2, 33571, 1219], - [2, 18124, 16284], - [2, 33575, 7625], - [3, 2001, 11], - "bikeshed", - "mock-tmp", - "semicolon", - "tap-arc", - "@casl/dx", - "cloudfunctions", - "apigateway", - "api gateway", - [0, 6398, 20986, 32888, 32054, 31512, 4453, 35062, 6970, 5131], - "drag-handle-vue-3", - [2, 33060, 33587, 4403], - "floating-", - [2, 33060, 33589], - "horizontal-rule", - [2, 33060, 158], - [2, 33060, 26074], - [2, 33060, 33597], - "eraro", - "fast-sa", - "fe-stringify", - [2, 33594, 33595], - [3, 28051, 11], - "gate-executor", - "gubu", - [2, 31908, 1783], - "@tiptap/pm", - "ordu", - "patrun", - [2, 31908, 33607], - "rolling-stats", - "use-plugin", - "starter-kit", - "@seneca/test-plugin", - "lab-", - [3, 29583, 11], - [2, 33610, 2528], - [2, 33609, 33611], - [2, 33621, 33622], - "-entity", - [2, 4136, 33614], - "seneca-e", - "rror-test", - [2, 33616, 33617], - "seneca-", - [2, 33619, 19138], - "@tiptap/s", - "uggestion", - "@tiptap/vue-3", - "micro-service", - [2, 33624, 591], - [3, 14587, 13], - "minimum", - "viable", - "startup", - [1, 2343, 33632], - "orklets", - [0, 33637, 33651, 33665, 2523], - [2, 10196, 21009], - "Sentimental", - [2, 11183, 9352, 3392], - "nlp", - [0, 32905, 32917], - "@farmfe/cli", - [2, 6283, 33647], - [2, 35438, 35525], - "dottie", - [2, 1153, 1430], - [2, 4140, 30807], - "sort-class", - [2, 17693, 33644], - "wkx", - "-testing", - [3, 9786, 10], - [2, 33648, 103], - [2, 33900, 147], - [0, 4880, 4883, 8152, 1009, 1011, 1540, 1177, 1895, 1955, 1959, 32922, 32932, 1894, 4042, 4076, 4474, 4484, 91], - "chai-datetime", - "esdoc", - "-ecmascript-proposal-plugin", - [2, 33653, 33654], - "esdoc-", - "inject-", - [2, 4306, 1932], - [2, 33657, 33658], - [2, 33656, 33659], - [2, 18124, 1932], - [2, 33656, 33661], - "ibm_db", - "js-co", - [0, 32941, 32945, 32950, 89, 12295, 12296, 5131, 32955], - "@webgpu/types", - "mbinatorics", - [2, 33664, 33667], - "mariadb", - [1, 2343, 33693], - "jmp", - "node-hook", - "p-props", - "p-settle", - "pg-hstore", - "fail-on-", - "sav", - "s-store", - "major-bump", - [2, 33676, 33679], - [2, 21386, 33680], - "snowflake-sdk", - [2, 33691, 33692], - "db2", - "snowflake", - "object ", - "relati", - "onal mapper", - [2, 33687, 33688], - [2, 33686, 33689], - "@prisma/m", - "anagement-api-sdk", - [0, 0, 33694, 33695, 2487], - [0, 89, 3857, 21166, 33377], - [ - 0, 3857, 2171, 12295, 12296, 33012, 33013, 33014, 33019, 5130, 89, 33025, 970, 5260, 2062, 33034, 7671, 8632, - 1283, 22743 - ], - [1, 2343, 33698], - "@tinymce/tinymce-react", - [0, 33699, 0, 33715, 2487], - [0, 31680, 28069], - "@ser", - "ialport/binding-mock", - [2, 33700, 33701], - [3, 33702, 19], - "s-cpp", - [2, 33703, 33704], - [3, 33702, 12], - "n1ed", - "byte-length", - [2, 15497, 33708], - [2, 33706, 33709], - [3, 33710, 19], - "cctalk", - [2, 33711, 33712], - [2, 33711, 28979], - [0, 1473, 1623, 57], - "-byte-timeout", - [2, 6941, 33716], - [2, 33711, 33717], - [1, 2343, 33720], - [0, 0, 0, 33752, 34352], - "packet-length", - [2, 33711, 33721], - [2, 33711, 3925], - [3, 33723, 23], - [2, 33724, 1493], - [3, 33723, 21], - [2, 33726, 17402], - "slip-encoder", - [2, 33711, 33728], - [3, 33729, 20], - [2, 10972, 4383], - "@heroicons/react", - "pacepacket", - [2, 33730, 33733], - [2, 33706, 3101], - [2, 33743, 33747], - "ccTalk", - "com port", - "COM", - "data logging", - "hardware", - "modem", - [3, 8292, 9], - "nodebots", - "RFID", - "sensor", - "plus/elements", - "serial port", - "sms gateway", - "sms", - "UART", - [0, 1512, 1623], - [2, 32092, 91], - [2, 33755, 33756], - "react-li", - "b-tools", - "update-check", - "@zeit/schemas", - "is-po", - "rt-reachable", - [2, 33759, 33760], - [2, 33769, 33770], - "@vercel/", - "style-guide", - [2, 33763, 33764], - "@types/ser", - "ve-handler", - [2, 33766, 33767], - [3, 2909, 10], - "serve-directives", - "ts-blank-space", - "vitest-fail-on-console", - [1, 2343, 33776], - "windowed", - "temp-path", - [0, 33778, 33779, 33780, 2487], - "favicon", - [ - 0, 33243, 53, 58, 5889, 92, 33245, 29421, 33305, 1393, 1525, 1595, 1680, 1699, 1687, 2020, 2071, 2151, 31401, - 2674, 2929, 3244, 3310, 3445, 3467, 3561, 3681, 3742, 3930, 30228, 4382, 4473, 4480, 4588, 4763, 33069 - ], - [0, 10879, 4864, 7812, 33247, 4039, 4493, 4507, 91], - [0, 4963, 181, 4380, 31398, 31400], - [1, 2343, 33782], - [0, 0, 0, 33783, 2487], - [0, 89, 188, 23332, 4607, 33275, 33276], - "@extend-chrome/messages", - [2, 33786, 13901], - [3, 33784, 15], - "@types/chrome", - [1, 2343, 33793], - "@types/jsesc", - [2, 33791, 33792], - [3, 32170, 13], - "nspect", - [0, 0, 33805, 33809, 2487], - "chrome-extension", - "webext", - "webextension", - "verless/utils", - [2, 33700, 33797], - [3, 33010, 17], - "z-commitlint", - [2, 5465, 33800], - [3, 33798, 12], - [2, 33802, 1973], - [3, 4156, 10], - [ - 0, 5087, 4874, 1009, 1011, 1177, 1886, 1895, 1938, 1955, 1958, 1966, 1982, 2070, 1192, 1894, 4039, 4042, 4052, - 27720, 4076, 4468, 4474, 4508, 4514, 17223, 91 - ], - " plugins", - [2, 33804, 33806], - "aws lambda", - [0, 33285, 28946, 33286, 33288, 33289, 33292, 33296, 33298, 5165, 33299, 202, 1388, 4967, 5995], - " web services", - [2, 6997, 33810], - ".com", - [2, 33804, 33812], - [1, 2343, 33815], - [0, 0, 0, 33816, 2487], - [ - 0, 33314, 1669, 33317, 33320, 33330, 33341, 33345, 33347, 33353, 33360, 33361, 33364, 33367, 33368, 7021, 33369, - 33370, 1781, 2845, 33371, 33345, 12899, 4967, 5284, 91 - ], - "isoformat", - "cdk/aws-lambda-python-alpha", - [2, 13562, 33818], - [3, 7709, 16], - [2, 33820, 7308], - "eventbridge", - [2, 33820, 33822], - [2, 33820, 13573], - "ns", - [2, 9191, 33825], - [2, 9191, 3763], - [2, 9191, 4799], - [2, 17253, 33832], - "lib-dynamodb", - [2, 13548, 33830], - "-tree-1d", - [1, 2343, 33855], - "htl", - "util-dynamodb", - [2, 13548, 33835], - "@types/d3", - "aws-cdk-lib", - "iot-device-sdk", - [2, 9194, 33839], - "caporal", - "-highlight", - [2, 14558, 33842], - "apache-arrow", - [3, 9167, 11], - [2, 33845, 33839], - "d3-geo-projection", - "@types/aws4", - "esbuild-r", - [2, 33849, 8736], - "jsii", - "jsii-diff", - [2, 17111, 7268], - "jsii-docgen", - [0, 33856, 0, 29047, 2537], - [ - 0, 28872, 13411, 13412, 13388, 1137, 1170, 30051, 1362, 33474, 18220, 2139, 2188, 2070, 22410, 21226, 6698, - 1209, 3074, 3220, 3275, 27534, 2072, 3547, 3919, 4025, 4108, 4135, 4165, 4351, 13400, 4507, 3348, 4707, 4753 - ], - "jsii-pacmak", - [1, 2343, 33859], - [0, 33861, 33862, 33864, 2537], - "obuild", - [0, 30293, 26557], - [0, 4874, 30306, 30305, 30310, 4039, 1531, 91, 1984], - "type-plus", - [0, 30297, 13527, 5592, 5995, 2679, 23932], - "ge-parser", - [1, 2343, 33870], - "flow-re", - "move-types", - [2, 33867, 33868], - [0, 33873, 33874, 33875, 2537], - "isequalwith", - "date-fns-tz", - [ - 0, 2611, 3510, 1689, 15452, 8550, 28862, 33235, 28142, 15261, 23531, 2670, 28282, 12207, 31026, 20745, 28283, - 31737 - ], - [0, 4493, 1984, 16473, 15450, 91, 4874, 19759, 31794, 5517, 28203], - [0, 3724, 25638, 32916, 2703, 5001, 3304, 5472], - [2, 33892, 33895], - "@emnapi/runtime", - "@img", - "/sha", - "rp-libvips-dev", - [2, 33879, 33880], - [2, 33878, 33881], - "-wasm32", - [2, 33882, 33883], - [3, 33882, 19], - "win32-ia32", - [2, 33885, 33886], - [3, 33887, 25], - "x64", - [2, 33888, 33889], - "emnapi", - "string-s", - "-reader", - "exif-reader", - "plit-by", - "dzi", - "thumbnail", - "libvips", - "vips", - "@farmfe/c", - "cargo-cp-artifact", - [2, 14736, 34112], - "skia", - "offscreen", - "compositing", - [1, 2343, 33917], - "vulkan", - "metal", - "flmngr", - [2, 4167, 14994], - "shelljs-", - [2, 33911, 3979], - "travis-", - "changes", - "check-changes", - [2, 33913, 33915], - [0, 33919, 33922, 33923, 2487], - "makefile", - [0, 33567, 33568], - "imgpen", - "unsplash", - [0, 33574, 1610, 1177, 3173, 33577, 3421, 3752, 33579, 4389], - [0, 7200, 13573, 6997, 33804, 6599, 33581, 33582, 7308, 6949, 6808, 33583, 5130], - [1, 2343, 33925], - [0, 33926, 33931, 2514, 2537], - [0, 33666], - "bitly", - "shorten", - "mongoid", - "tinyid", - [0, 1787, 91, 18279], - "kapok-js", - [1, 2343, 33934], - [0, 33939, 33946, 33947, 2399], - "should-", - "should-equal", - [2, 33935, 1671], - "should-type", - [0, 89, 3824, 33697], - "-adaptors", - [2, 33938, 33940], - "should-util", - "@types/listr", - "houldjs", - [2, 1901, 33944], - [0, 3775, 4039, 4487, 4469, 3744, 91, 53, 4874, 4880, 1195, 4883, 5090, 1167], - [0, 4445, 6092, 33707, 89, 6038, 1936, 6105, 7062, 27968, 9381], - [2, 32223, 2636], - "pdf-generation", - "assignments", - "homework", - "html-to-pdf", - "grunt-endline", - "quiet-grunt", - "semver-sort", - [1, 2343, 33957], - [0, 0, 33958, 33960, 2523], - [ - 0, 30703, 442, 9307, 33731, 33732, 29273, 33736, 968, 972, 974, 5364, 7806, 7639, 4874, 4880, 4883, 31397, 4992, - 1413, 1497, 1536, 1639, 1177, 1961, 7585, 2203, 2675, 2832, 2990, 3105, 3127, 3561, 1894, 21024, 89, 33753, - 3824, 5564, 33754, 3885, 4073, 4079, 33762, 4164, 4200, 4382, 4383, 4072, 33771, 4474, 4494, 91, 4523, 29139, - 1983, 26744, 32255, 1984, 33772, 9355 - ], - "Function URL", - [0, 89, 6071, 4607, 11316, 33774, 3392, 32209, 32210, 3912, 176, 10052, 21604], - [1, 2343, 33966], - "plugin-open", - [2, 33911, 33962], - "Durable function", - "-sdk", - [0, 33967, 34002, 34003, 2523], - [0, 10895, 31832, 1084, 1448, 1573, 1676, 37014, 2071, 2151, 2835, 3090, 3510, 3527, 3878, 4042, 4094], - "@secretlint/secretlint-rule-github", - [2, 33970, 3378], - [3, 33968, 28], - [2, 33972, 33973], - [3, 28473, 18], - "ap-runner", - "secretlint", - "@vue/tsconfig", - "extender", - "fs-core", - [2, 33979, 27106], - [3, 18529, 16], - [2, 33979, 202], - [2, 33980, 33982], - "-builtins", - [2, 33984, 33985], - [3, 33981, 21], - "to-fsa", - "@kwsites/file-exists", - "@kwsites/", - [2, 9466, 14834], - [2, 33987, 33988], - [2, 33984, 594], - [3, 33989, 17], - [2, 33991, 27725], - "@sim", - "ple-", - "git/babel-config", - [2, 33994, 33995], - [2, 33993, 33996], - [2, 33979, 24171], - "source ", - [2, 33999, 12619], - [2, 33979, 8745], - [ - 0, 33784, 33785, 8862, 811, 8850, 816, 840, 20978, 33787, 5244, 5245, 4864, 11300, 33789, 4874, 4880, 4883, - 1009, 1011, 1030, 11016, 1457, 668, 33850, 1177, 1959, 11348, 3400, 34971, 89, 3824, 4039, 4057, 15277, 3709, - 4507, 91, 1983, 33790, 1984, 188 - ], - [0, 4080, 11504, 3195, 33794, 7188, 33795, 33796, 1388, 33799], - [1, 2343, 34005], - [0, 34006, 34016, 2514, 2523], - [0, 1653, 33817, 33829], - [2, 29234, 34008, 34010], - "pec-", - "custom-event", - [3, 11133, 16, 9], - "ant-stuff", - [2, 13112, 34011], - [2, 32845, 34012], - "rrect-lockfile", - [2, 33664, 34014], - [ - 0, 1414, 33834, 4494, 1983, 2832, 2899, 1424, 1177, 4042, 2203, 1894, 4473, 33837, 4614, 442, 91, 4874, 2820, - 6503, 33844, 17113, 19181, 33847, 8850, 33853, 17112, 10615, 3112, 1895, 811, 1011, 816, 1009 - ], - [3, 8136, 10], - "nalyzer", - [2, 32412, 34018], - "-navigation", - [1, 2343, 34022], - [0, 34023, 34045, 34046, 2487], - [0, 20584, 2131, 2674, 33876], - [2, 31395, 1542], - [2, 34026, 34042], - [3, 34030, 17], - "is-safe-filename", - [2, 5600, 34029], - "recurse", - [2, 28756, 18346], - "@asciidoctor/core", - [2, 29611, 34035], - "samsam", - [2, 11122, 34033], - "site-publisher", - [3, 11134, 16], - "plugin-n", - "o-prototype-methods", - [2, 34037, 34038], - [2, 34036, 34039], - "@studio/changes", - "ropdown-menu", - "@openspacelabs/react-native-zoomable-view", - "clock", - [0, 23531, 4874, 33901, 2611, 3297, 4449], - [0, 1424, 10798, 33903, 33904, 29727, 15344, 11812, 158, 11806, 33905, 8924, 33907, 33908, 2636, 8221, 9561], - [1, 2343, 34054], - [2, 29611, 34049], - "asciidoc-loader", - "vendor", - "mocks-", - "and-spies", - [2, 34051, 34052], - [0, 34056, 34057, 34058, 4139], - "asciidoc", - [0, 33909], - [0, 4469, 91, 2924, 4677, 89, 3824, 4880, 4883], - [0, 89, 33909, 2090, 1586, 10057, 33920, 158, 6038, 9229, 33921, 6997, 6949, 13531, 20614], - [1, 2343, 34069], - "express-json5", - "-readme", - [2, 8924, 34061], - "-htpasswd", - [2, 4199, 34063], - "fs-ext", - "crypt3", - "pod-install", - [2, 13888, 2036], - [0, 34072, 34073, 34074, 2523], - "pinch-to-zoom", - "pinch", - [0, 37082, 26380, 17214], - [0, 1984, 3541], - [0, 1388, 3541, 4627, 17050, 1973, 5472], - [1, 2343, 34077], - "@polka/url", - [0, 34079, 34080, 34081, 2537], - "totalist", - [0, 1138, 1437, 1457, 2182, 2185, 2226, 2600, 2685, 2991, 3127, 3758, 4135, 13834], - [0, 33943, 8147, 5254, 33768, 1166, 1424, 3421, 29899, 1894, 3706, 28593, 4474, 4481, 91, 1906], - [0, 33948, 200, 33949, 1745, 33950, 33951, 1783, 2636, 3758, 3197, 33952], - [3, 33056, 29], - [2, 33060, 34084], - "node-range", - "bytes-iec", - "nanospinner", - [2, 37050, 6579], - "budget", - [3, 13526, 12], - [2, 34089, 34088], - [1, 2343, 34094], - [2, 959, 34093], - "table-core", - [0, 34095, 34100, 28315, 2523], - [0, 1437, 4747, 28172, 32884, 28236], - "file size", - " size", - [2, 7204, 34097], - "get size", - [0, 4874, 32551], - [1, 2343, 34102], - [0, 34103, 21592, 34106, 2523], - [0, 4135, 32884, 28236, 28200], - "-cognito-identity-js", - [2, 6997, 34104], - [0, 32910, 32912, 32913, 13428, 5472, 6533], - "skapi", - [1, 2343, 34109], - [0, 34110, 34117, 34120, 2537], - [0, 31855, 28236, 28200, 32884], - [2, 20327, 1984], - "-no-globals", - [2, 17375, 34114], - "ormat", - "unloader", - "seperator", - [0, 2065, 34007, 32903, 13426, 3536, 11132], - [2, 34119, 12675], - [3, 36879, 12], - [0, 32910, 32912, 32913, 13428, 5472, 6533, 29724], - "is-fullwidth-code-point", - [1, 2343, 34123], - [0, 34124, 34126, 34129, 2537], - [0, 1525, 940, 999, 32138], - "random-item", - [0, 32889, 33932, 34031, 34032], - [2, 29611, 34128], - "file-publisher", - [0, 29699, 200, 1179, 1745, 29703, 29753], - "publisher", - "folder-size", - [2, 2183, 34131], - [1, 2343, 34135], - "js-extend", - [0, 34138, 0, 34140, 2537], - "math-sum", - [2, 7627, 1413], - [0, 34048], - "tablify", - [0, 29699, 32891, 5457, 34055, 1745, 29703, 29753], - "slow", - [1, 2343, 34144], - "dts-plugin", - [0, 26338, 34145, 34146, 4139], - [ - 0, 5467, 21155, 10614, 5087, 4870, 4880, 5091, 1009, 1011, 1529, 1177, 1895, 1955, 2675, 1192, 34067, 1894, 89, - 3857, 21166, 3980, 91 - ], - [0, 3857, 5128, 12295, 12296, 34070, 34071, 5131, 970, 4627, 6624, 16660, 37460, 4420, 4384], - [1, 2343, 34153], - [2, 5051, 34149], - "cheduler", - "htmlcs", - "standards", - "WCAG", - [0, 34155, 34158, 34159, 2399], - [2, 2287, 33914], - [0, 4419], - "urlify", - [2, 21831, 364], - [0, 32426, 3519], - [0, 25638, 14873, 5472, 17878, 4419], - [1, 2343, 34162], - "stage-js", - [0, 34163, 34164, 2514, 2487], - [0, 31292, 3530, 9354], - [ - 0, 25366, 33243, 33638, 33650, 16804, 33146, 4874, 20374, 29891, 1112, 19839, 33902, 668, 1177, 34113, 2807, - 2990, 3090, 28865, 4042, 9245, 1531, 91, 34115, 29470, 1983, 1984, 2924, 4677, 29161 - ], - [2, 4609, 12607], - [2, 4609, 34168], - [2, 18124, 1781], - "pages", - " output", - [2, 3721, 34169], - " standard", - [2, 4216, 34171], - "standard ", - [2, 34173, 3721], - " for ", - [2, 34175, 4255], - [2, 25264, 34176], - [3, 34177, 11], - [2, 34178, 9338], - "stylish ", - [2, 34180, 16237], - [2, 34180, 4255], - [2, 1983, 6872], - [2, 34183, 22156], - [1, 2343, 34192], - "box2d", - "game", - "physics", - "axios-ntlm", - "xml-crypto", - "2d", - [0, 14631, 0, 34193, 2487], - [0, 29699, 32891, 20204, 1745, 29703, 29753], - "@types/sax", - [1, 2343, 34196], - [0, 34202, 0, 34210, 2399], - [2, 4005, 34198], - "s-cli", - [3, 26390, 16, 13], - "base64id", - [2, 9246, 25513], - [0, 34127], - [2, 34204, 2403], - [3, 5556, 15], - [2, 34206, 34690], - [3, 28724, 15], - [2, 7686, 34209], - "@socket.io/component-emitter", - "minify-templates", - [0, 29699, 32891, 34130, 1586, 1745, 29703, 29753], - [1, 2343, 34212], - [0, 34213, 0, 29047, 2523], - [0, 10744, 1209, 3084, 25886], - [1, 2343, 34215], - [0, 0, 34223, 34248, 2523], - [2, 34217, 158], - [3, 5386, 10], - "faceoff", - [2, 34220, 34221], - [3, 16767, 16], - "erformance-monitor", - [2, 16766, 6812], - [ - 0, 107, 442, 4856, 7677, 1091, 1177, 1895, 1894, 4039, 4060, 4193, 4072, 4481, 4484, 4508, 4514, 4523, 1983, - 34165, 34166, 34183, 34184, 4614, 1984 - ], - "fast-wrap-ansi", - "@rslib/core", - "eventsource", - "oxc", - "sockjs", - [2, 28573, 34230], - "rslib", - [2, 28606, 34232], - "rstest-config", - [2, 34234, 6847], - [3, 10235, 18], - [2, 29314, 3090], - "@pnpm/list", - "@pnpm/workspace.find-packages", - [2, 1463, 20001], - [2, 37509, 34240], - "eeverse", - [2, 34242, 34243], - [3, 4892, 10], - "npkg__lockfile", - "fast-npm-meta", - "@nolyfill/internal", - [2, 34247, 35011], - "@nolyfill/", - [0, 34186, 12075, 5284, 91, 34187, 34188, 16284, 34191, 5131], - [1, 2343, 34250], - [0, 0, 34251, 34252, 2523], - [ - 0, 107, 4874, 1009, 1011, 17494, 1177, 1895, 2025, 2899, 1894, 34197, 4060, 34199, 4193, 4508, 4514, 91, 1983, - 34165, 34166, 34183 - ], - [0, 12075, 34187, 22894, 8691, 16284, 34191, 1424, 16697, 5122, 5131], - [1, 2343, 34255], - "separated", - [0, 34256, 0, 34257, 2537], - [0, 4447], - [0, 4525, 5284, 34227, 33479, 1894, 91], - [1, 2343, 34259], - [0, 0, 0, 34285, 2537], - "fumadb", - "microfiber", - [3, 8277, 10], - "alars", - [2, 34262, 34263], - "load-files", - [2, 5527, 34265], - "compact", - [2, 3715, 34267], - [2, 9470, 34268], - "@anvilco/apollo-server-plugin-introspection-metadata", - "kysely", - "bdd-lazy-var", - "@orpc/zod", - "@orpc/otel", - "neverthrow", - "introspection", - "@c15t/logger", - "-query", - [2, 34276, 34278], - "@orpc/server", - "@orpc/openapi", - "@orpc/contract", - "@c15t/translations", - [2, 13498, 202], - [ - 0, 4796, 26481, 2968, 31176, 6646, 3378, 3420, 9478, 6666, 3552, 4135, 18710, 7671, 33163, 33186, 18280, 9527, - 4749 - ], - "kysely-pglite", - "@c15t/vitest-config", - [2, 34289, 34290], - "@libsql/", - "kysely-libsql", - "string-t", - [2, 34295, 21160], - "o-stream", - [2, 34291, 34293], - "@c15t", - [1, 2343, 34322], - "consent", - "privacy", - "ccpa", - "binary-split", - [2, 7241, 14922], - "lgpd", - "self-host", - "consent-management", - "user-privacy", - [2, 34307, 34308], - "data-pro", - "tection", - "cookie-banner", - [2, 34304, 34311], - "-platform", - [2, 2339, 5365], - "cmp", - [2, 34315, 7179], - "consent-", - [3, 5079, 14], - "imageinfo", - "prettydiff", - "sprity-css", - "/common", - "sprity-lwip", - [0, 0, 34323, 2514, 2537], - [ - 0, 29713, 34235, 635, 34236, 34237, 811, 8850, 816, 23339, 8712, 28206, 34239, 34241, 29308, 1525, 1707, 34244, - 3749, 3527, 4079, 34245, 34246 - ], - "object-stream", - [1, 2343, 34327], - "through2-spy", - [0, 34329, 0, 29047, 2443], - "coordinates", - [ - 0, 13387, 13412, 13388, 20908, 13395, 1170, 1362, 1364, 2026, 29067, 2670, 1209, 3084, 3162, 3237, 3509, 4148, - 4507 - ], - [1, 2343, 34332], - "css-sprite", - [0, 33469, 33476, 6151, 2443], - [1, 2343, 34334], - [0, 34335, 33476, 6151, 2443], - [0, 31874, 546, 8604, 8605], - [1, 2343, 34337], - [0, 34338, 34339, 34340, 2399], - [ - 0, 4763, 16230, 15095, 34260, 34271, 34273, 4341, 34274, 34275, 32176, 34277, 34280, 34281, 34282, 34283, 13471, - 34284, 13495, 13502 - ], - [0, 3244, 32426, 6526, 91, 4874, 34286, 6494, 34287, 12207, 34288, 33237, 34292], - [0, 34297, 34298, 7229, 34299, 34302, 5995, 34303, 34304, 34305, 33055, 34306, 34309, 34310, 34313, 34314], - [1, 2343, 34343], - "asn1", - [0, 34344, 34346, 34347, 2399], - [0, 2105, 3527, 2072], - "bcrypt-pbkdf", - [0, 28177, 4880, 1701, 3442, 21166, 91], - [0, 3857, 12295, 12296, 31937, 6574, 6635, 5128, 31912, 89, 5131, 181, 1017, 45, 13814, 22875, 2414], - [1, 2343, 34349], - [0, 34350, 0, 34351, 4139], - [0, 4597, 3173, 940, 34048], - [0, 29699, 32891, 1563, 1745, 29703, 29753], - 1772409600000, - [1, 2343, 34361], - "integrity", - "subresource integrity", - "sri", - "sri hash", - "sri ", - "sri string", - [2, 34358, 1179], - [0, 0, 34362, 34381, 34352], - [ - 0, 34363, 32558, 48, 53, 5240, 83, 87, 34368, 34369, 5583, 6373, 1178, 1193, 17217, 24621, 29883, 34370, 29775, - 1540, 1759, 1177, 1935, 1938, 27790, 2126, 29945, 35634, 2675, 1192, 11896, 32206, 11348, 11350, 3534, 34376, - 1894, 3720, 3758, 34197, 4042, 34377, 4060, 4073, 4079, 4146, 91 - ], - [2, 34364, 34365, 34367], - [3, 5215, 13], - "ollup-plugin", - "shuruhatik", - [3, 10697, 17, 6], - "@fezvrasta/tsc-silent", - "@khanacademy/flow-to-ts", - [2, 34374, 34375], - "long-", - [2, 4252, 591], - [2, 34371, 34372], - [3, 14697, 22], - "place-variables", - "poster", - [2, 34378, 34379], - [3, 11802, 15], - "low-entry", - "version-guard", - [0, 8190, 8191, 5399, 8192, 34384, 34385], - [3, 12809, 13], - [2, 34382, 7051], - "popper", - [2, 8194, 34386], - " engine", - [0, 0, 7997, 7998, 34352], - [1, 2343, 34390], - [3, 1570, 26], - [0, 0, 34394, 34396, 34352], - "fig-spec", - [2, 34389, 34391], - "dotgitignore", - [0, 10615, 6503, 4874, 1387, 1429, 2899, 3363, 4042, 4426, 91], - "std-mocks", - [ - 0, 34397, 2238, 34398, 16629, 7521, 34399, 29804, 31687, 1993, 16284, 9006, 34400, 34401, 8424, 34402, 6829, - 26514, 34403, 34404, 34406 - ], - "anime", - "anime.js", - "timeline", - "easings", - "cubic-bezier", - "splitText", - "WAAPI", - "Canvas", - "ban-sensitive-files", - "WebGL", - "deps-ok", - "dont-crack", - "git-issues", - "pre-git", - "simple-co", - "mmit-message", - [2, 34411, 34412], - [0, 9116, 9122, 9131, 34352], - [1, 2343, 34416], - [0, 7967, 7938, 7939, 34352], - [1, 2343, 34418], - [0, 0, 0, 10570, 34352], - [0, 0, 12106, 12107, 34352], - [1, 2343, 34422], - "modern-syslog", - [0, 0, 11488, 34424, 34352], - "winser", - [0, 7789, 34425], - "decrypt", - "etsy", - "metric", - [0, 34430, 34436, 34440, 34352], - "aggregation", - [0, 34431, 34432, 34433, 34434, 34435], - "ev-emitter", - "fizzy-ui-utils", - "get-size", - "imagesloaded", - "unidragger", - [0, 1462, 1177, 34437, 34439, 2907, 4320, 4323, 4072], - [2, 1949, 34438], - "etafizzy", - "jquery-bridget", - [0, 4453, 6398, 34441, 31512, 32054, 35060, 36197, 1388], - "flick", - [0, 17201, 17202, 17203, 34352], - [3, 11146, 12], - [1, 2343, 34445], - [0, 0, 34446, 34448, 34352], - [0, 1429, 1700, 2323, 2367, 22122, 2409, 2447, 2494, 2530, 34447, 2899], - [2, 22465, 35458], - [0, 6901, 27679, 16626, 3220, 3222, 1666], - [0, 0, 0, 18014, 34352], - [1, 2343, 34451], - [0, 0, 0, 34452, 34352], - [0, 17199, 16892, 2869, 3166, 34453, 11326, 207, 20531, 57], - "lex", - [1, 5293, 34455], - [0, 8391, 34352], - [1, 2343, 34457], - [0, 34458, 0, 2514, 34352], - [0, 1395], - [0, 20095, 20097, 2514, 34352], - [1, 2343, 34461], - [0, 0, 34462, 34463, 34352], - [0, 2080, 4389], - [0, 18012, 25866, 18108, 34464, 30091], - "maths", - [3, 10821, 18], - "11y", - [2, 34465, 34466], - "pannellum", - [1, 2343, 34470], - [0, 0, 34477, 34483, 34352], - [3, 32229, 23], - "hots", - [2, 34471, 34472], - "-puppeteer", - [2, 34473, 34474], - [2, 10818, 31765], - [0, 2899, 2025, 16189, 34478, 34482, 3469, 1149], - [2, 34481, 2844], - "orchbox", - [2, 22060, 34479], - "persist-", - "jugglingdb", - [0, 11415, 3469, 34482, 16189], - [2, 4270, 676], - "patternlab", - "-pat", - [ - 0, 53, 61, 83, 87, 90, 92, 442, 10615, 29767, 6061, 16607, 6063, 6065, 16608, 16612, 29769, 1193, 20517, 29775, - 1503, 1593, 1610, 1177, 15510, 1942, 2026, 2323, 2338, 2544, 2765, 24652, 29778, 1192, 2780, 1776, 29779, 2990, - 9750, 5103, 29780, 29783, 3758, 3957, 4131, 4523, 1983, 29770, 27900 - ], - [1, 2343, 34495], - "tern-library", - [2, 34486, 34489], - [2, 21043, 34490], - "django-", - [2, 34492, 5354], - "jinja2", - [0, 0, 0, 34496, 34352], - [0, 34497, 11328], - "panorama", - [0, 26328, 26329, 26330, 34352], - [1, 2343, 34501], - "findit2", - [0, 34502, 0, 2514, 34352], - [0, 3760, 13126, 4747, 4709, 3259, 4545, 1481, 16734, 1512, 4720], - [1, 2343, 34504], - [0, 7936, 7938, 7939, 34352], - [0, 0, 0, 23762, 34352], - [1, 2343, 34507], - [0, 34509, 34512, 34518, 34352], - "funsert", - [0, 3744, 34511], - "into-stream", - "rip-out", - [ - 0, 48, 53, 78, 87, 90, 94, 1148, 1596, 1843, 1845, 1177, 34514, 17585, 1951, 1959, 2832, 2899, 3421, 89, 3824, - 32510, 34517 - ], - "Assert", - [2, 34515, 34516], - [3, 1886, 16], - "daddy-react", - "setup-env", - [0, 8221, 3857, 21610, 34519, 11512, 89], - "compatiblity", - "compatibl", - "ity", - [0, 0, 0, 23771, 34352], - "-metadata", - [2, 26612, 34523], - [0, 11976, 4874, 7677, 12690, 3377, 3446, 7461, 9245, 91, 1984], - [1, 2343, 34529], - "livestream", - [2, 34527, 3642], - [0, 0, 34530, 2514, 34352], - [ - 0, 53, 87, 811, 13866, 816, 1198, 1290, 1389, 2766, 2297, 2871, 2881, 2886, 2898, 6387, 2923, 3758, 4042, 4045, - 34531, 20981, 34533, 20983, 4073, 4650 - ], - [2, 34532, 671], - [3, 15277, 16], - [2, 15476, 34534], - "ass", - [1, 2343, 34536], - [0, 0, 34538, 2514, 34352], - "gulp-rimraf", - [0, 4039, 3188, 34539, 34543], - "testit", - "string.js", - "stringjs", - "S", - "gethub", - [1, 2343, 34545], - [0, 0, 34546, 34548, 34352], - [0, 48, 53, 87, 1178, 1261, 1177, 1881, 1895, 1938, 1955, 1192, 1894], - "codsen-utils", - [ - 0, 6270, 4202, 1413, 34549, 57, 34550, 17180, 14638, 12786, 30946, 2382, 2098, 2090, 7017, 6435, 6270, 15253, - 3721 - ], - "bits", - "iec", - "ranges-apply", - 0, - "ranges-push", - "string-le", - "ft-right", - [2, 34554, 34555], - 0, - "onkey-traverse", - [2, 19434, 34558], - "ranges-invert", - 0, - "jsp", - "mixed", - "xhtml", - 0, - 0, - 0, - 0, - [2, 2183, 7230], - 0, - 0, - 0, - 0, - 0, - "-html4", - [2, 26854, 34575], - [3, 34576, 19], - [2, 34577, 27769], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "payment processing", - "credit cards", - 0, - 0, - 0, - 0, - [2, 2168, 3081], - "sdk-", - [2, 34608, 1102], - [2, 26424, 34609], - "fly-register", - [2, 202, 34611], - "strong-agent", - 0, - "strong-arc", - "strong-build", - 0, - 0, - "strong-deploy", - "strong-m", - "esh-models", - [2, 34620, 34621], - "strong-re", - "gistry", - [2, 34623, 34624], - "strong-start", - "strong-s", - "upervisor", - [2, 34627, 34628], - 0, - "core-util-is", - "strong-de", - "bugger", - [2, 34632, 34633], - "wagger-ui", - [2, 34627, 34635], - [3, 4369, 10], - "-validate", - [2, 22188, 34638], - 0, - 0, - "LoopBack", - "Platform", - "alerts", - 0, - 0, - "event loop", - 0, - 0, - "heroku", - "nodeops", - "npmrc", - "openshift", - "slc", - "est functions", - [2, 34141, 34655], - "strong-cli", - "strong-cl", - "uster-control", - [2, 34658, 34659], - "strongops", - "upstart", - 0, - 0, - 0, - 0, - [2, 27954, 1699], - [2, 27954, 2070], - [2, 27954, 3144], - "@zip.js/zip.js", - [2, 3503, 4549], - 0, - "@astrojs/check", - "@astrojs/", - "starlight", - [2, 34674, 34675], - [2, 12310, 1430], - [3, 811, 8], - [2, 34678, 1388], - "@shoelace-style/shoelace", - [2, 13283, 8891], - 0, - "astro", - "hanbi", - "escape-at", - [2, 2827, 34685], - "jsdoc-ts", - [2, 2701, 1932], - [2, 34687, 34688], - "lit", - 0, - "dictionary", - [2, 19319, 34692], - "Android", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 19801, 2741], - "css-t", - "o-react-native", - [2, 34716, 34717], - 0, - [2, 11832, 14438], - [2, 5129, 10699], - [2, 4881, 34721], - "rame", - [2, 34723, 10699], - [2, 11364, 34724], - "-plugin-rtl", - [2, 7917, 34726], - 0, - 0, - "ts-toolbelt", - 0, - 0, - 0, - 0, - 0, - 0, - "bunchee", - "stylis-", - 0, - "rule-sheet", - [2, 34738, 34740], - 0, - "zeit", - 0, - 0, - 0, - 0, - 0, - "hack", - 0, - 0, - 0, - 0, - 0, - "globjoin", - "-tag-names", - [2, 18110, 34756], - "-nested-selector", - [2, 5250, 34758], - [2, 30273, 34759], - 0, - "svg-tags", - 0, - "github-info", - [2, 6018, 34764], - "@styl", - "elint/prettier-config", - [2, 34766, 34767], - [3, 34768, 11], - [2, 34769, 19692], - [3, 4852, 9], - "lanced-match", - [2, 34771, 34772], - [3, 25558, 14], - [2, 34774, 5260], - [2, 4865, 4565], - "murmurhash", - [2, 8802, 34777], - [3, 13059, 16], - [2, 34779, 2706], - 0, - 0, - "@types/svg", - "-tags", - [2, 34783, 34784], - "ylelint", - [2, 17371, 34786], - 0, - 0, - "set-stylelint", - [2, 32137, 34790], - [3, 3676, 10], - [2, 34792, 367], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [3, 4323, 16], - 0, - 0, - 0, - 0, - [2, 1280, 8554], - 0, - 0, - "css-values", - "shortcss", - 0, - "dela", - "ration", - 0, - 0, - "-strict-value", - [2, 34813, 34816], - [2, 34812, 34817], - "keyword", - "z-index", - 0, - 0, - 0, - 0, - "orting", - [2, 3677, 34825], - 0, - "udochenkov", - [2, 25790, 34828], - 0, - "ed-syntax", - [2, 30481, 34831], - [3, 24627, 16], - "hudochenkov", - [2, 34833, 34834], - 0, - 0, - 0, - 0, - 0, - [3, 30356, 14], - [2, 34841, 27739], - 0, - "github-c", - "s-list", - [2, 17551, 34845], - [2, 34844, 34846], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [3, 1369, 11], - [2, 34859, 30480], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "jar", - "cookiejar", - 0, - [2, 33935, 27], - 0, - "tinyify", - 0, - "frisbee", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "promised", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "capability", - "16m", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "periscopic", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "@types/sade", - [3, 27700, 21], - [3, 27700, 22], - [2, 34941, 20500], - [3, 9566, 10], - [2, 34943, 2847], - [2, 4353, 34944], - 0, - 0, - 0, - 0, - 0, - "@kiwi/eslint-config", - "@kiwi/", - [2, 34952, 7628], - 0, - "@types/pug", - 0, - "easy-import", - [2, 3562, 34957], - 0, - 0, - 0, - 0, - 0, - "@res", - "vg/resvg-js", - [2, 34964, 34965], - "prettysize", - 0, - [3, 30071, 12], - "hromium", - [2, 34969, 34970], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [3, 4362, 11], - 0, - 0, - 0, - "lease-notes", - [2, 15842, 34988], - 0, - "precache", - 0, - 0, - 0, - 0, - 0, - "tape-promise", - 0, - "autogen", - 0, - 0, - 0, - 0, - "multil", - "ang-", - [2, 2055, 4298], - [2, 35005, 35006], - [2, 35004, 35007], - 0, - 0, - "promise.any", - 0, - [2, 29351, 7625], - 0, - "readmeio", - 0, - 0, - 0, - 0, - 0, - [2, 4364, 12659], - [3, 4367, 9], - "emplates", - [2, 35022, 35023], - 0, - "swagger UI", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "s-readme", - [2, 9828, 35034], - [2, 11941, 35035], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "nodelint", - "still", - [3, 29280, 15], - 0, - 0, - "travis-cov", - 0, - "jinja", - 0, - 0, - 0, - 0, - "swipe", - "framework7", - "gallery", - 0, - "slideshow", - 0, - 0, - 0, - 0, - [2, 14507, 3048], - [2, 2655, 35067], - 0, - 0, - "sync-rpc", - [2, 21658, 705], - 0, - "flowgen2", - 0, - 0, - 0, - 0, - 0, - " information", - [2, 623, 35080], - "sysinfo", - 0, - "freebsd", - "openbsd", - "netbsd", - "cpu", - "cpuload", - "physical cores", - 0, - 0, - "logical cores", - "cores", - 0, - "socket type", - "fsstats", - "diskio", - " devices", - [2, 1359, 35098], - "netstats", - [2, 6072, 591], - [2, 11996, 35101], - "network ", - "connections", - [2, 35103, 35104], - "network stats", - "iface", - "printer", - "processes", - "users", - "internet", - "battery", - 0, - 0, - "docker stats", - "docker ", - [2, 35116, 35109], - 0, - "graphic card", - "graphic c", - "ontroller", - [2, 35120, 35121], - 0, - 0, - "disk layout", - "audio", - 0, - "bluetooth", - "wifi", - 0, - "wifinetworks", - 0, - "virtual box", - "virtualbox", - "BIOS", - "chassis", - 0, - 0, - 0, - 0, - "@jsenv/file-size-impact", - "-style-", - [2, 21605, 3733], - [2, 35142, 35143], - [2, 13565, 35144], - "symbol-es6", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "hase", - "draht", - "limes", - "lusca", - "partof", - "timer2", - 0, - "uuidv4", - "crypto2", - "nocache", - "datasette", - 0, - "json-lines", - 0, - "processenv", - "stethoskop", - 0, - "flaschenpost", - "-events", - [2, 8891, 35172], - 0, - "nodeenv", - "roboter", - 0, - "assertthat", - [2, 35166, 4219], - 0, - "cqs", - "cqrs", - 0, - 0, - 0, - 0, - 0, - 0, - "className", - 0, - "classList", - 0, - "override", - 0, - 0, - 0, - 0, - "dlv", - 0, - 0, - 0, - 0, - 0, - 0, - "@tapjs/after", - [2, 35205, 27554], - "@tapjs/a", - "sserts", - [2, 35207, 35208], - "@tapjs/", - 0, - "@tapjs/before", - [2, 35212, 27554], - "@tapjs/chdir", - 0, - "@tapjs/core", - [2, 35210, 7131], - "@tapjs/fi", - "xture", - [2, 35218, 35219], - [2, 35210, 9261], - "@tapjs/mock", - "node-ser", - "ialize", - [2, 35223, 35224], - [2, 35210, 35225], - "@tapjs/run", - [2, 35210, 8745], - 0, - "@tapjs/spawn", - 0, - "@tapjs/stdin", - "@tapjs/test", - "@tapjs/t", - [2, 35234, 2528], - [2, 35210, 6812], - [2, 4026, 1204], - 0, - "tapjs", - "tapjs plugin", - 0, - 0, - 0, - 0, - "tap-out", - 0, - "tapes", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "resumer", - [2, 23236, 35259], - "@ljharb/t", - "hrough", - [2, 35261, 35262], - [2, 5613, 7067], - "dotignore", - [2, 2565, 15126], - 0, - "ecstatic", - [3, 3404, 9], - "osix-or-windows", - [2, 35269, 35270], - 0, - "harness", - 0, - 0, - 0, - 0, - [2, 9497, 29051], - "chownr", - "yallist", - 0, - "chmodr", - 0, - "-to-array", - [2, 2018, 35284], - 0, - 0, - 0, - 0, - 0, - "brittle", - 0, - 0, - 0, - 0, - 0, - "b4a", - "fast-fifo", - "streamx", - 0, - 0, - 0, - 0, - 0, - 0, - [2, 6346, 6770], - "DDD", - [2, 6346, 8726], - 0, - "front end", - 0, - "back end", - 0, - 0, - 0, - 0, - "cz-format-extension", - 0, - 0, - 0, - 0, - 0, - 0, - "telegram-api", - "telegram-", - "client-api", - [2, 35325, 35326], - "tdlib", - "tglib", - [3, 3299, 10], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "tempdir", - "tmpfile", - 0, - 0, - 0, - 0, - "unique-s", - [2, 35348, 8961], - 0, - 0, - 0, - 0, - 0, - 0, - "@cronvel/get-pixels", - 0, - "chroma-js", - "lazyness", - 0, - 0, - "gen-events", - [2, 3286, 35362], - "seventh", - "string-kit", - 0, - "tree-kit", - 0, - "256 colors", - 0, - "true color", - 0, - "input field", - "gpm", - "screenbuffer", - "textbuffer", - "32-bit", - 0, - 0, - 0, - 0, - "charm", - "visualwidth", - 0, - "80s", - "ibm", - 0, - 0, - 0, - 0, - [3, 5012, 18], - [2, 35391, 4226], - 0, - "@ls-lint/ls-lint", - "astring", - 0, - 0, - 0, - 0, - 0, - 0, - "glify-js", - [2, 7817, 35402], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "multiline-ts", - "spawn-p", - [2, 35418, 4357], - 0, - 0, - "only-allow", - "sinon-", - "assert-stub", - [2, 35423, 35424], - [2, 35423, 2299], - 0, - "unlinted", - 0, - 0, - 0, - 0, - 0, - "@deve", - "/bin-v8-flags-filter", - [2, 674, 35435], - [2, 35434, 35436], - [3, 35437, 12], - [2, 35438, 29084], - "bowser", - "chrome-", - [2, 20844, 8626], - [2, 35441, 35442], - "device-specs", - "elegant-s", - [2, 35445, 10252], - 0, - 0, - 0, - "get-os-info", - 0, - 0, - "import-lazy", - 0, - "is-podman", - "-async-hook", - [2, 3077, 35456], - "-commonjs", - [2, 17102, 35458], - [2, 17003, 35459], - [2, 14709, 35460], - "os-family", - "pinkie", - [3, 7872, 10], - [2, 35464, 2013], - [2, 2093, 10903], - [2, 15034, 35466], - 0, - "replicator", - 0, - "-tools", - [2, 20008, 35471], - [2, 4415, 35472], - "testcafe-", - "hammerhead", - [2, 35474, 35475], - 0, - "legacy-api", - [2, 35474, 35478], - [3, 22279, 11], - [2, 35480, 1803], - [2, 35474, 35481], - [3, 35482, 18], - [2, 35483, 3392], - [2, 35483, 6907], - [2, 35483, 4386], - [2, 35483, 28592], - 0, - 0, - 0, - 0, - "testcafe-s", - [2, 11068, 1179], - [2, 35492, 35493], - [2, 7051, 4007], - [2, 17475, 35495], - "unquote", - "url-to-o", - "ptions", - [2, 35498, 35499], - 0, - "@ffprobe-installer/ffprobe", - "@types/ca", - "llsite", - [2, 35503, 35504], - [3, 5245, 9], - "@types/dedent", - [3, 5546, 10], - "ragent", - [2, 35508, 35509], - "connector", - [2, 26353, 35511], - "caller", - "dom-walk", - [3, 25792, 16], - "mmerhead", - [2, 35515, 35516], - "express-ntlm", - "gulp-clone", - 0, - "gulp-ll-next", - [3, 27610, 11], - [2, 35522, 2869], - "qunit-harness", - [2, 2337, 35524], - 0, - "gulp-step", - "-spe", - "c-with-retries", - [2, 35528, 35529], - [2, 32261, 35530], - "sl-self-signed-certificate", - [2, 8423, 35532], - [3, 35473, 17], - "-browserstack", - [2, 9962, 35535], - [2, 35534, 35536], - 0, - "automated", - "QA", - 0, - 0, - 0, - 0, - "@types/doc", - "kerode", - [2, 35545, 35546], - "docker-", - [2, 35548, 2940], - [2, 3583, 33893], - "ssh-", - 0, - "port-forward", - [2, 20844, 35553], - [2, 35551, 35554], - 0, - [3, 23843, 13], - [2, 35557, 3015], - [3, 28203, 13], - "ties-reader", - [2, 35559, 35560], - [3, 7752, 11], - [2, 35562, 2150], - 0, - 0, - 0, - 0, - 0, - "object-es5", - [2, 26988, 35569], - 0, - "limate-test-reporter", - [2, 14354, 35572], - "conf-env", - [2, 1611, 35574], - "headerify", - "is-number", - 0, - "teenytest", - [2, 35579, 4007], - 0, - "test double", - 0, - 0, - 0, - 0, - 0, - "fireworm", - "printf", - "_string", - [2, 369, 35590], - 0, - [2, 1362, 23842], - "hallow-", - [2, 35594, 1693], - [2, 21479, 35595], - 0, - "saucie", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "dpdm", - "dcs", - [2, 16693, 35610], - 0, - 0, - 0, - 0, - 0, - "three.js", - "reality", - [2, 9352, 35618], - "augmented-reality", - "webgl", - "webgl2", - 0, - 0, - "webaudio", - 0, - 0, - "webgpu", - "webxr", - 0, - 0, - 0, - 0, - [2, 2182, 20], - "node-st", - "dlib-browser", - [2, 35635, 35636], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "hundreds", - "polendina", - 0, - 0, - "stream-spigot", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "unexpand", - "homedir", - 0, - "tilde", - 0, - 0, - 0, - 0, - "number-is-nan", - 0, - "profile", - 0, - 0, - 0, - 0, - "bee-affix", - "bee-a", - "bee-alert", - "bee-anchor", - 0, - 0, - 0, - "bee-animate", - [2, 35683, 9820], - "bee-", - 0, - 0, - "bee-backtop", - 0, - "dge", - "bee-badge", - "bee-b", - [2, 35698, 9837], - "bee-button", - [2, 35700, 9847], - "bee-calendar", - 0, - 0, - "bee-carousel", - "bee-cascader", - "bee-c", - "bee-checkbox", - [2, 35707, 142], - "bee-collapse", - "bee-col", - "orpicker", - [2, 35711, 35712], - "bee-co", - 0, - "mplex-grid", - [2, 35714, 35716], - [2, 35691, 3812], - 0, - "bee-dnd", - "bee-drawer", - 0, - "bee-dropdown", - "bee-form", - 0, - "-control", - [2, 35724, 35726], - "bee-form-", - [2, 35728, 7227], - "bee-icon", - "bee-i", - "nput-group", - [2, 35731, 35732], - 0, - "-addon", - [2, 35733, 35735], - "bee-input-", - [2, 35737, 6988], - "bee-label", - 0, - "bee-layout", - 0, - "bee-loading", - 0, - "-state", - [2, 35743, 35745], - 0, - "bee-locale", - 0, - "bee-menus", - 0, - "bee-message", - 0, - "bee-modal", - 0, - "bee-navbar", - "bee-n", - 0, - 0, - "otification", - [2, 35757, 35760], - "bee-overlay", - "page-layout", - [2, 35691, 35763], - "bee-pag", - "ination", - [2, 35765, 35766], - 0, - "bee-panel", - "bee-p", - "opconfirm", - [2, 35770, 35771], - 0, - "bee-popover", - "rogress-bar", - [2, 35770, 35775], - 0, - "radio", - "bee-radio", - 0, - "bee-rate", - "search-panel", - [2, 35691, 35782], - 0, - "bee-select", - 0, - "bee-slider", - 0, - "bee-step", - 0, - "bee-svgicon", - "bee-switch", - "bee-table", - 0, - "bee-tabs", - 0, - "bee-tag", - 0, - "bee-tile", - 0, - 0, - "bee-timeline", - "bee-time", - [2, 35803, 3811], - "bee-tooltip", - "bee-transfer", - "bee-trans", - [2, 35807, 9943], - 0, - "bee-tree", - [2, 35810, 11245], - "bee-upload", - 0, - [2, 2359, 1623], - "-wrap", - [2, 2376, 35815], - "inline-urls", - [2, 21897, 35817], - [2, 4437, 1732], - 0, - "tinper", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "tinylibs", - 0, - 0, - 0, - 0, - "@deno/shim-deno-test", - 0, - [3, 4443, 9], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - " threads", - [2, 6812, 35848], - 0, - "thread pool", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "pushalert", - " toast", - [2, 3857, 35866], - "toastify", - [2, 3862, 35868], - [2, 3862, 9044], - "Typescript", - 0, - 0, - 0, - 0, - "emble-js", - [2, 31072, 35876], - "processmd", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [3, 5152, 10], - "RFC6265", - "RFC2965", - 0, - 0, - 0, - 0, - 0, - "tinytim", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 7231, 7316], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "html-select", - 0, - 0, - "html-tokenize", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "aggregate", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "bs-logger", - "make-error", - 0, - [2, 6308, 3065], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 13664, 6893], - 0, - [3, 5480, 12], - "oader", - [2, 35970, 35971], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "migration", - "migrations", - "cli-tool", - 0, - 0, - 0, - 0, - "@ts-morph/common", - "block-writer", - [2, 10988, 35988], - 0, - 0, - "static ", - [2, 35992, 19748], - "refactor", - [2, 6721, 35994], - 0, - 0, - 0, - 0, - [2, 20223, 6859], - [2, 20223, 1276], - [2, 12448, 16443], - "@csp", - "otcode/source-map-support", - [2, 36003, 36004], - 0, - "dprint", - "@swc/wasm", - "ntypescript", - "util.", - [2, 36010, 19138], - 0, - 0, - 0, - 0, - 0, - [2, 20442, 7163], - "omit-deep", - 0, - "power-assign", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "bre", - "rete", - 0, - "rule engine", - "rules engine", - " rule engine", - [2, 5284, 36038], - "js rule engine", - [2, 6591, 6770], - 0, - 0, - 0, - 0, - 0, - [2, 18284, 4295], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "typedefs", - "typedef", - 0, - "initions", - [2, 36056, 36058], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "polite-json", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 27572, 4014], - 0, - "codelyzer", - [3, 4490, 10], - "siste", - "nt-codestyle", - [2, 36092, 36093], - [2, 36091, 36094], - 0, - "tslint-divid", - [2, 4491, 2700], - [2, 13530, 1334], - [2, 4491, 36099], - "tslint-mi", - "sc-rules", - [2, 36101, 36102], - 0, - 0, - "ts-lint", - 0, - 0, - 0, - 0, - 0, - [3, 20474, 12], - "slint-plugin", - [2, 36112, 36113], - 0, - 0, - 0, - 0, - [2, 4671, 3209], - "joycon", - 0, - "ts-e", - [2, 36122, 154], - 0, - 0, - 0, - 0, - 0, - [3, 14596, 11], - [2, 36129, 8791], - 0, - 0, - 0, - 0, - "@mixmark-io/domino", - 0, - 0, - 0, - "-attendant", - [2, 4495, 36139], - 0, - 0, - 0, - 0, - 0, - "grunt-comp", - 0, - "onent-io", - [2, 36146, 36148], - [3, 2243, 10], - 0, - "at-sourcemap", - [2, 36150, 36152], - "grunt-m", - "arkdown", - [2, 36154, 36155], - [3, 2300, 11], - "grunt-p", - "ush-release", - [2, 36158, 36159], - 0, - "gex-replace", - [2, 24294, 36162], - [2, 3503, 16237], - [2, 22277, 36164], - "unfunk-reporter", - [2, 3192, 36166], - 0, - 0, - 0, - 0, - 0, - "tap-b", - 0, - "rowser-color", - [2, 36173, 36175], - "-util", - [2, 4497, 36177], - 0, - 0, - "curve25519", - "ed25519", - "nacl", - 0, - "poly1305", - "public", - "salsa20", - 0, - "signatures", - 0, - 0, - 0, - 0, - [2, 4498, 1574], - 0, - 0, - "DOM", - "Twitter", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 4505, 1732], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "media-typer", - 0, - "checking", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [3, 596, 9], - "/material-color-utilities", - [2, 36239, 36240], - 0, - 0, - [2, 4511, 699], - [3, 4512, 14], - [2, 3131, 4964], - "material-3", - [2, 4508, 1932], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "JsDocs", - 0, - 0, - 0, - 0, - 0, - 0, - "cli-prompt", - 0, - "concatenate", - 0, - 0, - "ebook", - "pandoc", - 0, - "kindlegen", - 0, - 0, - 0, - 0, - [3, 27847, 12], - [2, 36283, 3231], - [2, 12690, 18877], - 0, - 0, - "-findorcreate", - [2, 3232, 36288], - [2, 7627, 4487], - 0, - 0, - 0, - 0, - "@sqltools/formatter", - 0, - 0, - 0, - 0, - 0, - 0, - "-rename", - [2, 22507, 36302], - [3, 36303, 12], - [2, 36304, 4070], - [3, 5055, 10], - [2, 36306, 1722], - "gulpclass", - 0, - 0, - 0, - 0, - 0, - 0, - "@dprint/formatter", - "@esfx/canceltoken", - "@dprint/", - [2, 36317, 91], - 0, - "azure-", - "-node-api", - [2, 20999, 36321], - [2, 36320, 36322], - "mocha-f", - "ivemat-progress-reporter", - [2, 36324, 36325], - 0, - 0, - "able-stylish", - [2, 26072, 36329], - [2, 10749, 36330], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "commandpost", - 0, - "wer-assert", - [2, 13415, 36344], - "intel", - "li-espower-loader", - [2, 36346, 36347], - 0, - 0, - 0, - 0, - 0, - [2, 5554, 13774], - [2, 18792, 36354], - [2, 13058, 36355], - [3, 36356, 23], - [2, 36357, 1993], - 0, - "css-utils", - [2, 8802, 36360], - [2, 36357, 16839], - "erved-words", - [2, 31525, 36363], - "-sync2", - [2, 3613, 36365], - "sass-svg", - 0, - 0, - 0, - 0, - 0, - "finally", - [2, 9466, 36373], - [2, 4532, 1732], - 0, - [2, 27100, 4255], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "jsmin", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "random-bytes", - 0, - 0, - 0, - 0, - 0, - 0, - [2, 1024, 4525], - "affix", - [2, 1016, 36410], - [3, 36411, 12], - [2, 36412, 9809], - "uto-link", - [2, 36412, 36414], - [2, 36412, 9826], - [3, 1015, 12], - 0, - "ack-top", - [2, 36417, 36419], - [3, 36420, 13], - [2, 36421, 35696], - [2, 36417, 9837], - [2, 1015, 9847], - [2, 1016, 9026], - [3, 36425, 13], - [2, 36426, 9854], - [3, 36427, 14], - [2, 36428, 9860], - [2, 36426, 9863], - [3, 36425, 12], - [2, 36431, 5449], - [2, 36431, 11200], - [3, 36433, 13], - [2, 36434, 3809], - "date-input", - [2, 1016, 36436], - [3, 36437, 16], - [2, 36438, 3811], - [3, 36437, 12], - "escriptions", - [2, 36440, 36441], - "ivider", - [2, 36440, 36443], - [2, 36440, 9997], - [3, 36445, 13], - [2, 36446, 11206], - [2, 1016, 3599], - 0, - "file-input", - [2, 1016, 36450], - [3, 36451, 12], - [2, 36452, 3469], - [2, 1016, 10052], - [2, 1016, 8691], - [3, 36455, 12], - [2, 36456, 28176], - [2, 36456, 35971], - [2, 1016, 4403], - [3, 36459, 13], - [2, 36460, 10104], - [3, 36459, 12], - [2, 36462, 3852], - [3, 36463, 13], - "nth-picker", - [2, 36464, 36465], - [2, 1016, 22005], - [2, 1016, 18367], - [3, 36468, 12], - "in-code", - [2, 36469, 36470], - "opover", - [2, 36469, 36472], - [3, 36473, 13], - "rtal", - [2, 36474, 36475], - [2, 36469, 10148], - [2, 1016, 35778], - [3, 36478, 13], - [2, 36479, 6864], - "search-", - [2, 36481, 1631], - [2, 1016, 36482], - [3, 36483, 18], - [2, 36484, 1633], - [3, 36483, 13], - [2, 36486, 4021], - [3, 36483, 12], - [2, 36488, 10205], - [2, 36488, 10209], - [2, 36488, 11234], - [2, 36488, 10222], - [2, 1016, 176], - [3, 36493, 14], - [2, 36494, 591], - [3, 36493, 13], - [2, 36496, 10233], - [3, 36493, 12], - [2, 36498, 11241], - 0, - "ime-picker", - [2, 36498, 36501], - [2, 36498, 18390], - [2, 36498, 10266], - [3, 36504, 13], - [2, 36505, 10271], - 0, - "-checked", - [2, 36506, 36508], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [3, 212, 12], - "fns", - [2, 36524, 36525], - 0, - "parsel-js", - 0, - 0, - 0, - 0, - 0, - "citty", - 0, - "mkdist", - "untyped", - "hookable", - 0, - 0, - 0, - 0, - 0, - [2, 3714, 20], - 0, - 0, - 0, - 0, - 0, - 0, - [3, 34068, 12], - [2, 36551, 2408], - 0, - 0, - 0, - 0, - 0, - "teo.collina/tspl", - [2, 599, 36558], - "dns-packet", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "trough", - 0, - [3, 9359, 10], - [2, 36570, 4966], - 0, - "retext", - 0, - 0, - 0, - 0, - [3, 4554, 13], - 0, - "non-repeating", - 0, - 0, - 0, - 0, - 0, - 0, - [3, 4555, 10], - "xast", - "nlcst", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "pullstream", - 0, - "match-stream", - 0, - "uncompress", - 0, - 0, - 0, - 0, - "is-npm", - "pupa", - 0, - "fixture-", - [2, 36614, 8634], - 0, - 0, - 0, - 0, - 0, - "urn", - "uri mutation", - "url mutation", - "uri m", - "anipulation", - [2, 36624, 36625], - "url m", - [2, 36627, 36625], - 0, - "uri template", - 0, - "url template", - " res", - " locator", - [2, 5585, 36634], - [2, 36633, 36635], - [2, 4549, 36636], - [3, 36637, 17], - [2, 36638, 16906], - 0, - "query string", - "RFC 3986", - "RFC3986", - 0, - 0, - "RFC 6570", - 0, - 0, - "RFC6570", - [2, 23168, 1932], - "ecosystem", - ":jquery", - [2, 36651, 36652], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "ylru", - "formstream", - 0, - 0, - "tshy-after", - [3, 9725, 12], - 0, - "@types/busboy", - "@eggjs/tsconfig", - "@types/sel", - "fsigned", - [2, 36689, 36690], - 0, - "strictest", - [2, 25627, 36693], - 0, - "urlopen", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "userprofile", - 0, - 0, - 0, - 0, - 0, - [2, 4745, 57], - 0, - 0, - "browserscope", - "ua", - "ua-parse", - "ua-parser", - "user agent", - "user-agent", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "is-typed", - "-array", - [2, 36730, 36731], - 0, - "supported", - [2, 5745, 36734], - [2, 17393, 36735], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "rfc9562", - 0, - 0, - 0, - 0, - 0, - 0, - "bundt", - 0, - "diffs", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "find-pa", - "rent-dir", - [2, 36779, 36780], - 0, - 0, - 0, - "githook", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "sanitisation", - 0, - "sanitise", - 0, - 0, - 0, - 0, - 0, - 0, - "@vue/shared", - "@vant/popperjs", - "@vant/", - 0, - "@vant/use", - 0, - [2, 7047, 1732], - [2, 5334, 36811], - "able-html", - [2, 1687, 36813], - [2, 10952, 2770], - [2, 36807, 7625], - [2, 36807, 45], - 0, - "area-data", - [2, 36807, 36819], - "@vant/cli", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "@vercel/go", - 0, - "@vercel/fun", - "@vercel/next", - [2, 20461, 681], - "@vercel/ruby", - "python", - [2, 33763, 36844], - "@vercel/r", - "edwood", - [2, 36846, 36847], - "hydrogen", - [2, 33763, 36849], - "build-utils", - [2, 33763, 36851], - "@vercel/st", - "atic-build", - [2, 36853, 36854], - "@vercel/re", - 0, - "mix-builder", - [2, 36856, 36858], - 0, - "epipebomb", - 0, - "promisepipe", - "tmp-promise", - 0, - 0, - "@sentry/node", - [3, 28267, 12], - [2, 7738, 6768], - 0, - "@types/dotenv", - [2, 4753, 4007], - [2, 33763, 5576], - [2, 17213, 2022], - "pcre-to-regexp", - "ast-commit", - [2, 33495, 36876], - [2, 8603, 18132], - [2, 8603, 1631], - "@tootallnate/once", - [3, 546, 11], - [2, 36881, 5449], - "@vercel/f", - "rameworks", - [2, 36883, 36884], - [2, 3827, 594], - [2, 33763, 36886], - [2, 5745, 7253], - [2, 10787, 36888], - [2, 20290, 4007], - "s-detectors", - [2, 36883, 36891], - [3, 20485, 11], - "-json-file", - [2, 36893, 36894], - "outing-utils", - [2, 36846, 36896], - [3, 29115, 11], - [2, 36898, 3385], - [3, 22092, 13], - [2, 36900, 16830], - "@vercel", - [3, 9435, 9], - "s/types", - [2, 36903, 36904], - [2, 36902, 36905], - 0, - "node-utils", - [2, 33157, 36908], - [2, 11836, 2656], - [2, 29130, 36910], - [3, 11296, 13], - "xpect-", - [2, 36913, 6458], - [2, 36912, 36914], - [3, 36906, 18], - [2, 36916, 14181], - "@alex_neo/jest-expect-message", - [3, 29110, 18], - [2, 36919, 36910], - [2, 18522, 1781], - [2, 36916, 36921], - 0, - 0, - 0, - 0, - "extsprintf", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "viewer.js", - 0, - 0, - 0, - 0, - 0, - 0, - "remove-t", - "railing-separator", - [2, 36948, 36949], - "teex", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "kdirp-stream", - [2, 29048, 36964], - "is-valid-glob", - "lead", - [2, 4026, 14690], - "stream-com", - "poser", - [2, 36969, 36970], - "to-through", - "value-", - "or-function", - [2, 36973, 36974], - [3, 4606, 15], - 0, - 0, - 0, - 0, - "vinyl-adapter", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "browser-split", - "ev-store", - "x-is-array", - 0, - "x-is-string", - 0, - "run-browser", - 0, - "vtree", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "artichokie", - [2, 4293, 16111], - "es-module-lexer", - [3, 3638, 15], - "@polka/", - [2, 37016, 1536], - 0, - "build-tool", - 0, - 0, - 0, - 0, - "slash-path", - 0, - 0, - 0, - "api-router", - "api-routers", - [3, 4612, 15], - "rest-api", - [2, 4609, 37031], - [3, 9244, 9], - [2, 37033, 995], - [3, 12419, 12], - [2, 37035, 20332], - 0, - "api-rest", - "Remix", - "Next.js", - 0, - 0, - 0, - 0, - [3, 6371, 11], - [2, 37045, 1623], - [2, 9408, 364], - "devtools-api", - [2, 5334, 37048], - "@vueuse/", - [2, 37050, 12339], - "focus-trap", - 0, - "@mdi", - "t-vue/plugin-component", - [2, 37054, 37055], - [3, 37056, 17], - [2, 37057, 9339], - [2, 37057, 11988], - "sfc", - [2, 37057, 37060], - [2, 37057, 17913], - [3, 37062, 18], - "oc", - [2, 37063, 37064], - "@mdit-vue/", - [2, 37066, 6579], - [3, 7641, 19], - [2, 37068, 3111], - [2, 37068, 3113], - [2, 13058, 3667], - [3, 26774, 14], - "thjax3", - [2, 37072, 37073], - 0, - 0, - 0, - 0, - 0, - "@vitest/spy", - 0, - "tinyrainbow", - "@vitest/u", - [2, 37083, 186], - [2, 17213, 8791], - "@vitest/s", - [2, 37086, 11298], - "why-", - 0, - "running", - [2, 21149, 37090], - [2, 37088, 37091], - [2, 17213, 3717], - 0, - "birpc", - "local-pkg", - [2, 33157, 24079], - "@antfu/", - "install-pkg", - [2, 37098, 37099], - 0, - 0, - 0, - 0, - 0, - "node-lo", - "calstorage", - [2, 37106, 37107], - 0, - "gulp-xo", - 0, - 0, - "load-plugins", - 0, - "vorpal-less", - 0, - "vorpal-repl", - 0, - 0, - 0, - 0, - 0, - "eyes", - 0, - "BDD", - 0, - 0, - 0, - 0, - "keytar", - "parse-semver", - [2, 17414, 28362], - 0, - "eerio", - [2, 16931, 37134], - [3, 21625, 11], - [2, 37136, 4565], - 0, - "@types/yazl", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 9738, 6985], - "@types/ic", - "onv-lite", - [2, 37150, 37151], - 0, - 0, - 0, - 0, - [2, 4619, 9586], - 0, - 0, - 0, - 0, - [3, 36812, 13], - [2, 37162, 965], - 0, - 0, - 0, - 0, - 0, - "-libs", - [2, 1988, 37169], - 0, - 0, - 0, - 0, - 0, - 0, - [3, 5736, 22], - [2, 37177, 31692], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "@int", - "lify/core-base", - [2, 37188, 37189], - "@intlify/", - [2, 37191, 6579], - 0, - 0, - "devtools-if", - [2, 37191, 37195], - 0, - 0, - "vue-devtools", - [2, 37191, 37199], - 0, - "intlify", - 0, - 0, - 0, - 0, - 0, - [3, 37200, 13], - 0, - "i18n-loader", - [2, 37208, 37210], - [3, 7892, 11], - [2, 37212, 3176], - [2, 32119, 1698], - "cache-loader", - "markdown-l", - [2, 37216, 35971], - "pug-p", - "lain-loader", - [2, 37218, 37219], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "ightwatch", - [2, 10884, 37231], - 0, - 0, - "faked-promise", - [2, 28506, 6706], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "de-indent", - 0, - 0, - 0, - 0, - 0, - "todomvc-app-css", - 0, - 0, - 0, - 0, - "foreachasync", - 0, - "sys", - "walkSync", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "exec-sh", - 0, - 0, - 0, - 0, - 0, - 0, - "outpipe", - 0, - "win-spawn", - 0, - 0, - 0, - 0, - 0, - "encrypte", - "d-attr", - [2, 37292, 37293], - [3, 3052, 10], - "afeinteger", - [2, 37295, 37296], - [2, 4651, 18008], - "waterline-", - [2, 37299, 594], - 0, - "active-", - [2, 37302, 1355], - 0, - 0, - 0, - 0, - "vargs", - 0, - 0, - 0, - 0, - "bdd-with-opts", - 0, - "gulp-debug", - "mu2", - [2, 9466, 2869], - "auncher", - [2, 26127, 37318], - [2, 20011, 37319], - "mocha-p", - "arallel", - [2, 37321, 37322], - [2, 18199, 37323], - "sv-selenium", - 0, - 0, - 0, - 0, - 0, - "web3-eth", - "web3-net", - 0, - "web3-core", - "web3-types", - "web3-utils", - "web3-errors", - 0, - "web3-eth-abi", - "web3-eth-", - 0, - "web3-eth-ens", - 0, - "web3-eth-iban", - [2, 4654, 1155], - "rpc-methods", - [2, 4654, 37346], - "web3-eth-a", - "ccounts", - [2, 37348, 37349], - "contract", - [2, 37340, 37351], - 0, - "personal", - [2, 37340, 37354], - 0, - "providers-ws", - [2, 4654, 37357], - "web3-rpc-", - "providers", - [2, 37359, 37360], - [3, 37358, 15], - [2, 37362, 27], - 0, - "in3", - "ganache", - "ipc", - [2, 37362, 37367], - [3, 13936, 16], - "se-web3", - [2, 37369, 37370], - "@tru", - "ffle/hdwallet-provider", - [2, 37372, 37373], - 0, - "Ethereum", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "@solana/spl-token", - "@solana/", - "web3.js", - [2, 37391, 37392], - "kva-email-service", - 0, - "ed25519-hdkey", - [2, 32806, 37396], - "ssl-http-with-docker", - [3, 4382, 9], - [2, 7521, 12130], - [2, 37399, 37400], - "telegram-a", - "ssistant", - [2, 37402, 37403], - "web3-r", - 0, - "eact-task", - [2, 37405, 37407], - 0, - "sol", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "assembl", - "yjs/ast", - [2, 37421, 37422], - [2, 10672, 37423], - [3, 37424, 15], - "wasm-edit", - [2, 37425, 37426], - [3, 37427, 20], - [2, 37428, 57], - 0, - 0, - "trace-event", - [2, 35441, 37432], - 0, - "assembly", - [2, 37435, 1508], - [2, 4671, 1194], - [2, 14743, 1194], - "hash-wasm", - "wast-loader", - [2, 20694, 6095], - "xxhashjs", - 0, - 0, - 0, - 0, - "@disco", - "veryjs/json-ext", - [2, 37447, 37448], - 0, - "@carrotsearch/foamtree", - "h0r", - [2, 22060, 37452], - [2, 37453, 2809], - "lodash.p", - "artial", - [2, 37455, 37456], - [2, 3607, 34809], - 0, - "zoomable", - 0, - 0, - 0, - 0, - [3, 13077, 13], - [2, 37465, 18523], - "configtest", - [2, 37465, 37467], - 0, - [3, 4863, 9], - "vinfo", - [2, 37470, 37471], - 0, - 0, - 0, - 0, - 0, - 0, - "@fastify/e", - [2, 37479, 674], - "n-finished", - [2, 15461, 37481], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "@types/sockjs", - [3, 18584, 13], - "njour", - [2, 16872, 37492], - "bonjour-service", - 0, - 0, - 0, - [3, 33768, 13], - [2, 37498, 4017], - [2, 37498, 2947], - 0, - "-community", - [2, 17013, 37502], - "-history-api-fallback", - [2, 11485, 37504], - 0, - "klona", - [2, 37490, 4219], - "@types/tr", - 0, - 0, - "usted-types", - [2, 37509, 37512], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "reloading", - [3, 4631, 10], - [2, 37524, 3642], - 0, - 0, - 0, - 0, - 0, - [2, 32119, 4694], - [3, 33945, 16], - "ellscape", - [2, 37532, 37533], - [3, 3708, 23], - 0, - 0, - 0, - 0, - 0, - 0, - "dts-cli", - 0, - "@types/flat", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "-to-buffer", - [2, 7231, 37567], - "yaeti", - 0, - 0, - "networking", - "comet", - 0, - 0, - 0, - 0, - "@silentbot1/nat-api", - "@thaunknown/simple-peer", - "torrent/http-node", - [2, 10672, 37580], - "addr", - 0, - "-to-ip-port", - [2, 37582, 37584], - "bitfield", - "bittorrent-dht", - [3, 37587, 11], - [2, 37588, 20500], - "cache-c", - "hunk-store", - [2, 37590, 37591], - [2, 33355, 5509], - [2, 13225, 37593], - "cpus", - "create-t", - "orrent", - [2, 37596, 37597], - "-ponyfill", - [2, 1613, 37599], - "fs-c", - [2, 37601, 37591], - "fsa-chunk-store", - "imme", - "diate-chunk-store", - [2, 37604, 37605], - "-async-", - [2, 37607, 7253], - [2, 4565, 37608], - 0, - 0, - "load-ip-set", - "lt_donthave", - "memory-c", - [2, 37614, 37591], - "torrent", - "parse-torrent", - "random-ite", - [2, 37618, 6882], - 0, - 0, - 0, - "speed-limiter", - "throughput", - 0, - 0, - "-discovery", - [2, 37616, 37627], - 0, - 0, - "torrent-piece", - 0, - "uint8-util", - "unordered-", - "array-remove", - [2, 37634, 37635], - "ut_metadata", - "ut_pex", - 0, - [3, 37581, 12], - [2, 37640, 23685], - 0, - 0, - "airtap-manual", - "airtap-s", - [2, 37645, 9073], - [2, 37588, 4839], - "chrome-net", - "-address", - [2, 11996, 37649], - 0, - "path-esm", - "-fixtures", - [2, 4702, 37653], - 0, - "bittorrent", - [2, 37656, 12332], - "mad science", - "p2p", - 0, - 0, - 0, - "peer-to-peer", - 0, - "peers", - "swarm", - "web torrent", - "webrtc data", - 0, - 0, - 0, - 0, - 0, - "web worker", - "a gogo", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "search-params", - [2, 4564, 37687], - 0, - 0, - 0, - 0, - "buster", - "exorcist", - 0, - "cujo", - 0, - "Promises/A+", - 0, - 0, - 0, - 0, - "isexe", - 0, - 0, - 0, - 0, - "taffydb", - "unit.js", - 0, - 0, - 0, - 0, - 0, - "@dabh/diagnostics", - "logform", - 0, - "one-time", - 0, - "@dabh/", - [2, 37720, 23816], - [2, 20417, 4715], - [3, 18518, 12], - [2, 37723, 1149], - "hock", - "winston-co", - [2, 37726, 13172], - 0, - 0, - 0, - 0, - 0, - 0, - "tream-rotator", - [2, 12416, 37734], - 0, - [3, 24151, 11], - [3, 23722, 14], - [2, 37737, 37738], - [2, 6324, 4059], - [2, 37739, 37740], - 0, - "daily-rotate-file", - "log-rotate", - "logrotate", - 0, - 0, - 0, - 0, - 0, - 0, - "winston3", - 0, - 0, - 0, - 0, - 0, - "bower-config", - "propprop", - [2, 4716, 20], - 0, - 0, - 0, - 0, - 0, - 0, - "carriage", - 0, - "new-line", - "return", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "workbox-", - [2, 37779, 6147], - 0, - 0, - "workbox", - "workboxjs", - " worker", - [2, 11100, 37785], - " requests", - [2, 1612, 37787], - "offline", - [2, 12320, 3097], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "writeFile", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "enstore", - 0, - "-crawler", - [2, 4730, 37820], - 0, - "x-ray-parse", - 0, - 0, - "scrape", - 0, - 0, - 0, - 0, - 0, - 0, - "is-function", - "parse-headers", - 0, - 0, - 0, - 0, - 0, - 0, - "adler-32", - 0, - "codepage", - "crc-32", - "ssf", - "wmf", - 0, - "@she", - "etjs/uglify-js", - [2, 37848, 37849], - "on-epipe", - [2, 7219, 37851], - "fflate", - [3, 5392, 10], - "pellcheck", - [2, 37854, 37855], - 0, - "xlsb", - "xlsm", - "dbf", - "dif", - "sylk", - 0, - 0, - 0, - 0, - 0, - "cash-cat", - "codacy-coverage", - "globify", - "unminified-webpack-plugin", - 0, - "XML", - "CDATA", - "doctype", - 0, - 0, - 0, - " instruction", - [2, 10809, 37879], - 0, - "Javascript", - [2, 353, 3642], - "convertor", - "converting", - 0, - "conversion", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "node-expat", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "dom-js", - "xmltest", - 0, - "DOMParser", - "XMLSerializer", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "func-xml", - 0, - 0, - 0, - 0, - 0, - 0, - [2, 5857, 5861], - [2, 69, 37935], - "@unicode/unicode-14.0.0", - 0, - "rray-includes", - [2, 24619, 37939], - [2, 1226, 4740], - [3, 37935, 17], - 0, - "value-aliases", - [2, 37942, 37944], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "whitelist", - 0, - 0, - 0, - 0, - "@scion-scxml/test-framework", - 0, - "statechart", - 0, - 0, - "state machine", - "finite", - " stat", - "e machine", - [2, 37965, 37966], - [2, 37964, 37967], - "finite ", - "automata", - [2, 37969, 37970], - "scxml", - "interpreter", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "ep-equal", - [2, 35506, 37982], - [2, 9228, 4729], - 0, - 0, - "@types/utf8", - [2, 4744, 28703], - 0, - "emulator", - [2, 4402, 37990], - 0, - 0, - 0, - 0, - "jest-t", - "s-webcompat-resolver", - [2, 37996, 37997], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "yaml2json", - "json2yaml", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "test-extends", - [2, 27477, 38016], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [3, 29775, 30], - "imports-", - [2, 38033, 10906], - [2, 38032, 38034], - "death", - "repeating", - 0, - "capture-har", - [2, 9769, 38039], - "roadrunner", - 0, - "node4", - [2, 26202, 38043], - [3, 4821, 14], - "ode5", - [2, 38045, 38046], - [3, 18229, 16], - "-strict", - [2, 38048, 38049], - "ittens", - [2, 25705, 38051], - [3, 1935, 18], - "-vars", - [2, 38053, 38054], - [2, 23105, 7003], - [2, 1152, 38056], - [2, 16645, 38057], - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "@yeoman/adapter", - "@yeoman/", - "conflicter", - [2, 38074, 38075], - [2, 38074, 23255], - [2, 38074, 353], - "@yeoman/t", - [2, 38079, 103], - 0, - "fly-import", - [2, 7227, 30831], - "mem-fs", - 0, - "mem-fs-editor", - [2, 9477, 10057], - [2, 17412, 38087], - 0, - 0, - 0, - "esmocha", - "sinon-test", - 0, - 0, - 0, - 0, - 0, - "github-u", - "sername", - [2, 38099, 38100], - 0, - 0, - 0, - 0, - 0, - 0, - "yes", - "false", - 0, - "lenient", - 0, - 0, - 0, - 0, - 0, - "cli-list", - "fullname", - 0, - 0, - "parse-help", - "root-check", - "npm-keyword", - 0, - "doctor", - [2, 4755, 38125], - [2, 25742, 1871], - 0, - 0, - 0, - [2, 4755, 6843], - 0, - [2, 9518, 1002], - 0, - 0, - 0, - 0, - 0, - "@jonahsnider/benchmark", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 26936, 4627], - 0, - "cowsay", - "say", - 0, - 0, - 0, - 0, - 0, - 0, - "zeromq", - "0mq", - "ømq", - "libzmq", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - [2, 11477, 1574], - [2, 9228, 4576], - 0, - "@types/morgan", - "express-u", - "seragent", - [2, 38180, 38181], - 0, - " types", - [2, 7047, 38184], - 0, - 0, - 0, - 0, - 0, - 0, - "DSL", - 0, - 0, - 0, - 0, - "@externs/nodejs", - 0, - 0, - 0, - 0, - "JSON2", - 0, - "char-split", - 0, - 0, - "express-state", - "firefox-", - [2, 38208, 35677], - [2, 11941, 2663], - 0, - "shallow-copy", - [2, 4250, 4833], - 0, - "tap-finished", - "-localtunnel", - [2, 4770, 38216], - 0, - 0, - 0, - "browzers", - "bulk-require", - 0, - "zuul-ngrok", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "Unit Testing", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "Storybook", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "belalangkayu", - "rengginangbasi", - "tehtarik3", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "sort-array", - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "-scroll-", - "into-view", - [2, 38290, 38291], - [2, 23545, 38292], - 0, - "module-t", - "ype-aliases", - [2, 38295, 38296], - [2, 20201, 38297], - [2, 964, 3698], - [3, 1216, 14], - "o-side-effect-class-properties", - [2, 38300, 38301], - [3, 1270, 19], - [2, 38303, 970], - "flow-co", - [2, 24524, 8803], - [2, 38305, 38306], - 0, - "get-pkg-repo", - 0, - "enhanced", - " input", - [2, 38311, 38312], - 0, - 0, - "autosuggest", - "typeahead", - 0, - "omnibox", - "WAI-ARIA", - "multiple ", - [2, 38321, 17146], - 0, - 0, - 0, - 0, - "focus", - "keyboards", - "mice", - "pseudos", - 0, - "textarea", - "trackpad" +"Flatpack JSON v1", +[5,2,25598], +[0,3,4,7,10,13,16,19,21,24,26,28,30,32,34,37,39,40,43,46,47,48,51,53,56,58,61,62,63,64,65,66,68,71,73,76,78,81,83,85,87,90,92,94,97,99,101,104,105,106,107,110,111,114,116,119,122,124,126,129,133,135,137,140,143,146,148,150,153,155,157,159,162,164,167,169,171,174,175,177,180,182,185,187,189,191,192,195,197,198,201,203,204,205,208,213,215,218,220,221,222,225,228,231,233,235,238,240,243,245,247,249,251,253,258,260,262,265,267,269,271,272,275,277,280,282,285,288,290,293,296,298,301,303,305,308,310,313,315,319,322,324,327,329,331,334,338,340,342,345,346,347,350,351,354,355,358,359,360,361,362,365,368,370,371,374,377,379,381,384,387,392,394,399,401,404,406,409,411,413,415,419,422,425,427,430,432,434,438,439,442,443,444,445,448,449,452,456,457,460,462,465,468,469,470,471,478,481,483,486,488,490,493,495,497,502,505,507,513,516,518,525,528,533,536,538,539,540,541,542,545,546,547,548,549,550,551,554,555,559,560,561,564,565,566,567,572,573,576,577,578,581,583,585,587,589,593,595,596,598,601,602,603,606,608,609,613,615,616,617,618,621,622,624,626,627,628,631,633,634,635,638,641,643,646,649,652,654,656,659,660,663,665,666,669,672,675,677,679,682,683,684,687,688,691,692,693,697,700,702,703,706,709,711,712,713,716,721,724,727,732,735,738,740,742,745,749,751,753,758,763,767,770,773,776,782,785,790,793,795,798,802,803,804,805,806,807,808,809,810,811,816,817,818,821,822,825,826,827,828,829,831,834,835,838,840,841,842,843,846,849,850,851,852,853,857,860,864,870,872,876,881,885,891,896,898,905,910,913,915,917,920,925,929,933,935,938,944,948,951,954,955,958,961,962,963,966,968,971,972,974,975,978,980,983,985,987,989,991,993,996,997,1001,1003,1004,1005,1006,1009,1011,1012,1013,1014,1015,1018,1021,1023,1025,1026,1027,1028,1030,1031,1032,1033,1034,1043,1045,1050,1054,1056,1059,1061,1063,1066,1073,1075,1077,1078,1079,1080,1081,1082,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1096,1097,1098,1100,1102,1103,1104,1107,1109,1110,1112,1113,1114,1115,1116,1117,1118,1120,1121,1122,1125,1127,1129,1130,1131,1132,1135,1136,1137,1138,1139,1140,1143,1144,1145,1147,1148,1149,1151,1154,1156,1157,1158,1159,1162,1165,1166,1167,1168,1169,1170,1171,1172,1173,1175,1178,1180,1184,1189,1191,1193,1195,1198,1201,1203,1205,1208,1210,1212,1216,1217,1220,1225,1230,1233,1235,1240,1244,1245,1248,1251,1253,1255,1257,1261,1264,1267,1268,1270,1272,1275,1277,1279,1280,1282,1284,1287,1288,1290,1291,1292,1293,1294,1295,1298,1301,1304,1305,1306,1308,1309,1310,1311,1314,1315,1316,1317,1318,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1335,1336,1339,1342,1344,1346,1348,1350,1352,1354,1356,1358,1361,1362,1363,1364,1365,1366,1367,1369,1370,1371,1372,1373,1376,1377,1378,1381,1385,1386,1387,1389,1391,1393,1394,1395,1396,1397,1398,1400,1401,1402,1405,1406,1407,1408,1409,1410,1411,1413,1414,1415,1416,1417,1420,1421,1423,1424,1425,1426,1427,1428,1429,1431,1434,1436,1437,1438,1440,1443,1446,1447,1448,1449,1450,1455,1456,1457,1458,1459,1461,1462,1465,1468,1470,200,1471,1474,1477,1479,1480,1481,1482,1483,1486,1488,1489,1492,1494,1495,1496,1497,1498,1499,1500,1501,1503,1505,1506,1509,1473,1511,1512,1513,1516,1519,1522,1525,1527,1529,1532,1533,1536,1537,1540,1541,1543,1544,1546,1549,1551,1553,1556,1559,1560,1562,1565,1566,1567,1570,1573,977,1575,1578,1581,1582,1584,1587,1588,1590,1591,1593,1594,1595,1596,1597,1598,1599,1600,1603,1604,1605,1606,1608,1609,1610,1613,1615,1616,1618,1620,1621,1622,1623,1624,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1645,1647,1648,1649,1650,1651,1652,1653,1654,1655,1658,1660,1661,1662,1663,1664,1665,1668,1672,1673,1674,1675,1676,1677,1679,1680,1681,1682,1686,1688,1690,1693,1696,1699,1700,1701,1702,1703,1704,1705,1706,1707,1710,1711,1687,1713,1715,1718,1719,1720,1723,1724,1726,1727,1728,1729,1730,1731,1733,1734,1735,1736,1737,1738,1741,1742,1745,1748,467,1750,1751,1754,1756,1757,1758,1759,1763,1764,1766,1767,1768,1770,1774,1777,1779,1782,1784,1785,1786,1787,1788,1789,1791,1792,1793,1794,1795,1796,1797,1798,1801,1804,1806,1809,1812,1816,1817,1819,1820,1821,1822,1824,1825,1827,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1842,1843,1845,1847,1850,1853,1854,1855,1856,1859,1860,1863,1865,1866,668,1869,1874,1875,1177,1879,1881,1883,1886,1889,1891,1893,1895,1898,1900,1903,1905,1907,1909,1912,1915,1916,1920,1922,1924,1926,1930,1933,1935,1937,1938,1939,1942,1945,1947,1948,1951,1953,1954,1955,1958,1959,1961,1964,1966,1969,1970,1972,1976,1978,1982,1985,1988,1992,1994,1996,1998,1999,2000,2003,2004,2007,984,2008,2010,2011,2012,2015,2017,2018,2019,2020,2021,2022,2024,2025,2026,2028,2031,2033,2037,2039,2040,2042,2045,2046,2048,2051,2053,2054,2057,2058,2059,2060,2061,2064,2067,2069,2071,2073,2075,2077,2078,2079,2080,2081,2082,2083,2084,2086,2087,2088,2089,2092,2095,2096,2098,2099,2102,2105,2107,2108,2109,2111,2113,2114,2116,2117,2119,2122,2123,2126,2128,2129,2130,2131,2132,2133,2134,2135,2137,2139,2141,2144,2145,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2159,2160,2161,2162,2163,2164,2165,2167,2170,2172,2175,2176,2177,2178,2179,2182,2185,2188,2191,2192,2193,2194,2195,2197,2070,2200,2202,2203,2205,2206,2207,2209,2211,2212,2213,2214,2215,2216,2217,2220,2222,2225,2226,2227,2228,2231,2234,2236,2239,2240,2243,2247,2250,2253,2256,2258,2260,2263,2266,2268,2271,2273,2274,2277,2279,2281,2283,2285,2290,2291,2293,2296,2298,2300,2302,2305,2307,2308,2311,2314,2316,2318,2320,2321,2322,2323,2327,2330,2332,2334,2336,2338,2341,2344,2346,2348,2351,2352,2354,2357,2359,2361,2363,2366,2367,2368,2371,2372,2373,2375,2377,2379,2381,2383,2384,2387,2390,2393,2396,2398,2400,2401,2404,2405,2406,2409,2411,2413,2416,2419,2421,2423,2425,2427,2430,2433,2435,2436,2438,2441,2444,2447,2449,2450,2453,2455,2459,2461,2463,2464,2467,2469,2472,2476,2479,2482,2486,2489,2490,2493,2494,2496,2498,2500,2503,2504,2506,2507,2508,2510,2512,2515,2517,2519,2520,2521,2524,2526,2529,2530,2533,2536,2539,2541,2543,2544,2547,2549,2550,2552,2553,2554,2555,2036,2556,2559,2562,2563,2564,2567,2569,2570,2571,2572,2575,2577,2579,2581,2583,2584,2586,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2600,2601,2602,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2616,2620,2623,2626,2628,2629,2633,2635,2637,2639,2641,2644,2646,2650,2651,2652,2654,27,2657,2659,2661,2664,2665,2668,2670,2671,2674,2675,2676,2677,2678,2679,2681,2683,2685,2686,2687,2689,2692,2267,2694,2695,2696,2697,2700,2702,2704,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2718,2719,2720,2722,2723,2726,1161,2727,2728,2730,2731,2732,2733,2735,2738,2739,2740,2741,2742,2743,2744,2745,2747,2750,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2437,2763,2764,2765,2766,2768,1192,2771,2774,2777,2780,2782,2784,2787,2792,2794,2796,2797,2798,2802,2805,2806,2807,2808,2810,2811,2812,2813,2814,2816,2817,2820,2821,2822,2823,2824,2292,1776,2826,2829,2832,2834,2835,2272,2839,2841,2843,2845,2848,2851,2854,2856,2858,2859,2860,2861,2863,2864,2865,2866,2867,2870,2297,2871,2876,2878,2881,2886,2889,2891,2895,2897,2898,2900,2904,2906,2908,2910,2912,2915,2918,2921,2923,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2941,2943,2945,2946,2948,2949,620,2950,2954,2957,2960,2961,2962,2963,2964,2967,2968,695,2969,2970,2972,2973,2975,2976,2979,2981,2982,2983,2984,2986,2990,2991,2992,2993,2996,2997,3000,3003,3006,3008,3010,3012,3014,3019,1209,3021,3023,3025,3028,3029,3032,3034,3037,3039,3041,3044,3047,3049,3051,3052,3054,3057,3060,3062,3064,3066,3067,3070,3072,3073,3074,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3095,3096,3097,3098,3099,3102,3103,1783,3105,3107,3112,3114,3116,3117,3120,3123,3124,3125,3127,3129,3130,3132,3133,3134,3135,3136,3137,3140,3141,3142,3143,3144,3145,3148,3150,3152,3153,3156,3157,1698,3159,3160,3161,3162,3164,3165,3167,3170,3171,3173,3174,3177,3178,3181,3183,3185,3186,3187,3188,3189,3190,3191,2899,3198,3200,3202,3203,3206,3210,3211,3213,3215,3216,3219,3220,3222,3223,3226,3229,3230,3232,3233,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3249,3253,3256,3257,3258,3259,3260,3261,1952,3262,3263,2378,3264,3266,3268,3270,3271,3273,3274,3275,3276,3277,3278,3282,3283,3284,3285,3287,3288,3289,3290,3291,3292,3294,3295,3296,3297,3299,3300,3303,3305,3308,3309,3310,3313,3316,3318,640,3322,3324,3327,3330,3332,3334,3337,3339,3341,3342,3345,3347,3349,3350,3353,3355,3357,3359,3361,3363,2276,3365,3366,3367,3368,3369,3371,3373,3376,3377,3378,3379,3381,3386,3390,3393,3397,3400,3401,3404,3406,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3427,3429,3431,3433,3434,3435,3438,3439,3440,3441,3442,3443,3444,3445,3446,3451,3453,3455,3456,3458,3459,3460,3463,3466,3467,3468,3469,888,3470,3471,3472,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3488,3490,3492,1644,3493,3494,3495,3498,3499,3500,3501,1433,3403,3502,3505,3507,3509,3510,3511,3512,3513,3518,3519,3520,3521,3524,3525,3526,3527,3530,3531,3532,3533,3534,3535,3536,3537,3539,3540,3541,2072,3544,3545,3547,3548,3549,3551,3552,3553,3554,3555,3558,3559,3560,3561,3564,3566,3570,3572,3575,3577,3579,3584,3587,3591,3598,3600,3603,3605,3606,3611,3613,3616,3618,3622,3625,3628,3633,3635,3636,3638,3640,3643,3647,3649,3652,3653,3657,3660,3662,3664,3668,3672,3674,3676,3678,3681,3683,3686,3688,3691,3692,3693,3696,3697,3698,3699,1894,3703,3706,3708,3710,3711,3714,3716,3717,3718,3720,3722,3724,3725,3726,3727,3729,3730,3732,1862,3734,3736,3739,3741,3742,3744,3746,3747,3750,2658,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3765,3767,3768,3770,3771,2907,3773,3774,3775,3776,3777,3779,3780,3781,3783,3784,3786,1997,3787,3788,3789,3790,89,3793,3799,3802,3803,3804,3807,3810,3813,3816,3817,3820,3822,3824,3826,3829,3830,3833,3836,3837,3839,3843,3846,3847,3849,3850,3853,3856,3857,3861,3864,3867,3869,3872,3876,3878,3882,3884,3885,3887,3889,3891,3893,3895,3897,3899,3904,3906,3909,3911,3913,3914,3916,3917,3919,3921,3923,3925,3927,3928,3930,3931,3932,3935,3938,1552,3939,3941,3875,3943,3945,3946,3948,3950,3951,3954,3957,3958,3963,3968,3970,3971,3973,3975,3978,3980,3981,3984,3985,3988,3989,3991,3992,3995,3998,3999,4001,4002,4005,705,4008,4010,4012,4015,4018,4019,4022,4023,814,4025,4028,4029,4031,4033,4035,4036,1153,4037,4038,4039,4041,4042,4045,4048,4052,4055,4057,4058,4060,4064,4066,4067,4069,4071,4073,4075,4076,4077,4079,4081,4083,4084,4085,4086,4089,4092,4093,4094,4098,4100,4103,4104,4105,4106,4108,4110,2278,4111,4112,4113,4116,4119,4121,4124,4125,4126,4127,4130,4131,4134,1899,4135,710,4136,4137,4140,4143,4145,4146,4148,4150,4151,4153,4156,4159,4160,4163,4164,4165,4167,4168,4169,4170,4171,4172,4173,4174,4177,4181,4183,4187,4188,4189,4192,4193,4196,4199,4200,4201,4204,4205,4206,4207,4208,4209,4212,3974,4213,4214,4215,4216,4217,4218,4220,4224,4227,4228,4230,4232,4233,4234,4235,4236,4237,4238,4239,4242,4243,4245,4246,4247,4248,4249,4252,4255,4257,4258,4261,4264,4266,4267,4270,4272,4275,4277,4278,4280,4282,4283,1871,4288,4290,4292,4294,4296,4300,4302,4303,4305,4307,4309,4311,4315,4317,4319,4320,4323,4326,4328,4330,4333,4334,4335,4337,4338,4339,4341,4342,4343,4345,4347,4351,4352,3709,4355,4359,4360,4361,4362,4363,4365,4367,4369,4370,4371,4372,4373,4375,4376,4377,4380,4382,4383,4384,4387,4388,4389,4390,4391,4393,4394,4397,4398,4399,1241,4400,4401,4404,4072,4409,4411,1187,4413,4415,4419,4421,4423,4425,4426,4427,4430,4431,4433,4434,4435,4436,4437,4438,4441,4443,4445,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,100,4459,4461,4462,4463,4464,4465,4468,4469,4470,4473,4474,4475,4477,4478,4480,4481,4482,4483,4484,4487,4490,4492,4493,4494,4495,4496,4497,4498,4499,4500,4505,4507,1000,4508,4510,4512,4514,4515,4517,4520,4521,91,4523,4526,4531,4532,4533,4535,4537,4538,4539,4540,4541,4542,4543,4545,4547,4548,4549,4554,4555,4558,4559,4560,4562,4563,1002,4566,4027,4567,4568,4569,4572,4576,4577,614,4578,3348,4579,4582,4585,4588,1155,4589,4590,4591,4592,4593,4594,4595,4596,4597,4599,4600,4603,4606,4608,1983,4612,4614,1984,4615,4616,4617,4618,4621,4624,188,4629,4630,4632,4633,4634,4638,4639,4640,4645,4646,4647,4648,4649,2282,4650,4651,4652,4653,4656,4659,4662,4664,4667,4669,2924,4676,4677,4679,4681,4684,4686,4689,4693,4695,4696,4699,4702,4703,4704,4705,4706,4707,4708,4709,4711,4715,4716,4717,4720,4723,4724,4726,4727,4728,4729,4730,4731,3354,4733,4734,4735,4736,4737,4738,1906,4739,4740,4741,4742,1695,4744,4745,4746,4747,4748,4749,4751,4752,4753,4754,4756,4757,4758,4759,4760,4761,4762,4763,4767,4768,4769,4770,4771,4772,4774,4775,4776,4777,4782,4783,4786,4788,4791,639,11976,662,3405,5010,6781,23276,6974,15279,15484,17429,15887,26713,18240,11804,24566,475,24782,25169,25219,25266,25307,25432,25443,25395,25490,25766,25775,25798,25809,25833,25882,25931,29350,29385,29389,29407,29414,29394,29435,29448,29460,20562,29477,31705,29524,29537,29546,29560,33408,29564,29610,31821,29626,3286,30757,29683,29729,29754,5065,29805,9011,29821,24737,29850,29889,29942,29955,28519,29993,9355,8199,680,19571,27921,29998,30145,30165,26706,30182,30196,30218,9041,30233,30252,30257,30281,30312,906,30405,30458,30463,30469,30477,30488,30607,30612,30624,30731,907,8119,30798,30829,940,26636,20202,29755,14673,9274,9293,9273,30926,30957,30972,33145,24723,30979,14684,31064,11518,31086,12016,15951,31198,31231,31244,31262,31272,31282,31289,31290,31332,31347,31314,31353,31375,21287,21288,31343,31386,31421,31430,31465,31473,31485,31501,31509,31521,14904,31180,31528,14959,18699,18717,14336,31544,26854,34576,34578,31644,33204,11421,23288,31677,31713,11890,16858,31728,31749,31760,31782,31793,31805,31816,31822,31827,31835,17964,21594,31838,8160,31930,29013,33653,31961,17988,12421,23352,23250,23292,31752,23253,32029,16837,32144,32166,24114,32182,13896,31182,32201,31734,32238,26180,32265,27263,32294,32311,16870,32319,17167,16842,11071,32347,32397,32415,32443,32456,21174,32468,32493,32499,32506,32531,32225,32546,32564,32577,12042,32634,32747,32760,32766,32778,11501,32790,19469,9252,31184,31186,9731,32816,999,32884,32892,9272,32914,32926,32934,32939,32940,32962,5517,1083,34683,33053,8392,10572,11960,24509,30299,1300,30527,34676,1302,30535,26450,26482,26483,26489,26495,32977,8703,1418,26414,1419,28763,2115,7606,1441,13412,26273,28880,28909,1442,28458,28479,28493,1445,32733,1466,1475,29032,26257,1476,28595,28885,1491,1502,28323,1510,5290,26241,1526,29197,28873,4090,1530,9378,26158,3845,8654,1531,1761,26082,1535,26699,29865,1555,2245,8605,28450,28899,28901,1558,5993,28354,29834,1607,1667,23535,1670,1790,26644,7585,20304,28327,28400,26421,1678,2221,10973,1689,28865,8550,22378,8540,1691,26032,29417,1692,26591,29304,1694,28069,31474,31486,31507,31524,1802,28906,1813,29853,1814,8604,1841,27959,1857,28466,1918,32834,32863,32890,30286,31680,31400,1979,31833,33277,13387,1980,21374,2001,2035,5666,5564,2049,17110,5287,2362,32818,25810,2050,2065,25762,29012,29031,2066,25802,34043,28092,29161,2094,34032,28872,2097,34161,33479,2106,2140,2142,36878,36879,2186,28117,2219,29019,6372,2238,7995,9107,12097,13676,17199,26746,33929,18012,20093,34468,20362,21610,23755,23769,24602,19617], +"@alifd/next", +"@angular-devkit/core", +[3,4,16], +"schematics", +[2,5,6], +[3,4,8], +"/animations", +[2,8,9], +[3,10,9], +"cdk", +[2,11,12], +[3,13,10], +"ommon", +[2,14,15], +[3,16,12], +"piler", +[2,17,18], +"-cli", +[2,19,20], +[3,16,11], +"re", +[2,22,23], +"forms", +[2,11,25], +"http", +[2,11,27], +"material", +[2,11,29], +"platform-browser", +[2,11,31], +"-dynamic", +[2,32,33], +[3,32,18], +"server", +[2,35,36], +"router", +[2,11,38], +"@ant-design/react-native", +[3,40,12], +"web3-common", +[2,41,42], +[3,43,17], +"icons", +[2,44,45], +"@auth/sveltekit", +"@babel/cli", +[3,48,8], +"ode-frame", +[2,49,50], +[3,51,9], +[2,52,23], +[3,48,7], +"helper-plugin-utils", +[2,54,55], +"parser", +[2,54,57], +[3,58,8], +"lugin-proposal-class-properties", +[2,59,60], +"@11ty/eleventy", +"@adobe/css-tools", +"@api-components/api-method-documentation", +"@apollo/client", +"@asyncapi/generator-react-sdk", +"eslint-parser", +[2,54,67], +[3,61,23], +"decorators", +[2,69,70], +"export-default-from", +[2,69,72], +[3,73,30], +"namespace-from", +[2,74,75], +"object-rest-spread", +[2,69,77], +[3,61,14], +"syntax-dynamic-import", +[2,79,80], +"transform-runtime", +[2,79,82], +"olyfill", +[2,59,84], +"reset-env", +[2,59,86], +[3,87,14], +"react", +[2,88,89], +"typescript", +[2,88,91], +"register", +[2,54,93], +[3,94,8], +"untime", +[2,95,96], +"-corejs2", +[2,97,98], +"traverse", +[2,54,100], +[3,101,8], +"ypes", +[2,102,103], +"@biz-dev-ops/md-docs", +"@bwcr_/winston-loki", +"@changesets/cli", +"@cha", +"tscope/chat-ui-kit-react", +[2,108,109], +"@ckeditor/ckeditor5-adapter-ckfinder", +[3,111,21], +"ngular", +[2,112,113], +"utoformat", +[2,112,115], +[3,111,20], +"basic-styles", +[2,117,118], +[3,119,21], +"lock-quote", +[2,120,121], +"uild-balloon", +[2,120,123], +"-block", +[2,124,125], +[3,124,26], +"classic", +[2,127,128], +"deco", +"upled-document", +[2,130,131], +[2,127,132], +"inline", +[2,127,134], +"ckbox", +[2,117,136], +[3,137,22], +"finder", +[2,138,139], +[3,137,21], +"lipboard", +[2,141,142], +[3,143,22], +"oud-services", +[2,144,145], +"ore", +[2,141,147], +"easy-image", +[2,117,149], +[3,150,21], +"ngine", +[2,151,152], +"ssentials", +[2,151,154], +"heading", +[2,117,156], +"image", +[2,117,158], +[3,159,21], +"ndent", +[2,160,161], +"link", +[2,117,163], +[3,164,22], +"st", +[2,165,166], +"media-embed", +[2,117,168], +"paragraph", +[2,117,170], +[3,171,22], +"ste-from-office", +[2,172,173], +[2,117,89], +"table", +[2,117,176], +[3,177,21], +"yping", +[2,178,179], +"ui", +[2,117,181], +[3,182,21], +"pload", +[2,183,184], +"tils", +[2,183,186], +"vue", +[2,117,188], +"widget", +[2,117,190], +"@commitlint/cli", +"@com", +"podoc/compodoc", +[2,193,194], +"unica/core", +[2,193,196], +"@contenthook/browser", +[3,198,13], +"cli", +[2,199,200], +"node", +[2,199,202], +"@coreui/coreui", +"@csstools/css-parser-algorithms", +[3,205,14], +"tokenizer", +[2,206,207], +[3,205,10], +"media-", +"query-list-parser", +[2,210,211], +[2,209,212], +"postcss-is-pseudo-class", +[2,209,214], +[3,215,18], +"progressive-custom-properties", +[2,216,217], +"selector-specificity", +[2,209,219], +"@cucumber/cucumber", +"@deven-org/documentation-skeleton", +"@dev", +"tea2026/aspernatur-ea-non-porro", +[2,223,224], +[3,225,12], +"consectetur-ab-unde-quisquam", +[2,226,227], +[3,228,13], +"upiditate-dolorem-excepturi-impedit", +[2,229,230], +"distinctio-soluta-illo-eaque", +[2,226,232], +"eum-ullam-est-distinctio", +[2,226,234], +[3,235,13], +"xplicabo-alias-architecto-sed", +[2,236,237], +"improved-journey", +[2,226,239], +[3,240,13], +"nventore-facilis-corporis-cum", +[2,241,242], +"psa-omnis-in-molestiae", +[2,241,244], +"literate-computing-machine", +[2,226,246], +"maxime-sequi-est-rem", +[2,226,248], +"necessitatibus-dolorem-esse-atque", +[2,226,250], +"odit-enim-reiciendis-pariatur", +[2,226,252], +[3,253,17], +"maxime-", +"porro-asperiores", +[2,255,256], +[2,254,257], +"possimus-ipsa-sint-consequuntur", +[2,226,259], +"qui-quos-laborum-amet", +[2,226,261], +[3,262,15], +"a-ducimus-placeat-minima", +[2,263,264], +"dem-voluptate-repudiandae-necessitatibus", +[2,263,266], +"rerum-quaerat-porro-animi", +[2,226,268], +"ubiquitous-octo-memory", +[2,226,270], +"@diotoborg/adipisci-placeat-iure", +[3,272,12], +"met-architecto-est", +[2,273,274], +"t-totam-perspiciatis", +[2,273,276], +[3,272,11], +"commodi-voluptatum-libero", +[2,278,279], +"delectus-necessitatibus-voluptatum", +[2,278,281], +[3,282,13], +"serunt-illo-tempora", +[2,283,284], +[3,282,12], +"icta-recusandae-veniam", +[2,286,287], +"olor-earum-quia", +[2,286,289], +[3,290,17], +"tempora-fuga", +[2,291,292], +[3,290,16], +"es-praesentium-assumenda", +[2,294,295], +"eligendi-est-unde", +[2,278,297], +[3,298,12], +"sse-accusantium-ratione", +[2,299,300], +"illo-amet-architecto", +[2,278,302], +"laudantium-itaque-esse", +[2,278,304], +[3,305,12], +"ibero-asperiores-at", +[2,306,307], +"neque-inventore-corporis", +[2,278,309], +[3,310,12], +"ostrum-eveniet-officiis", +[2,311,312], +"odio-dolores-officia", +[2,278,314], +"porro-", +"modi-accusamus", +[2,316,317], +[2,278,318], +[3,319,12], +"sychic-bassoon", +[2,320,321], +"quasi-repellat-odit", +[2,278,323], +[3,324,13], +"i-ullam-ipsum", +[2,325,326], +"o-dolorem-ducimus", +[2,325,328], +"ratione-error-odio", +[2,278,330], +[3,331,12], +"epellat-blanditiis-quis", +[2,332,333], +[3,292,8], +"voluptas-distinctio", +[2,335,336], +[2,278,337], +"ullam-dignissimos-repudiandae", +[2,278,339], +"velit-reiciendis-velit", +[2,278,341], +[3,342,13], +"rbose-robot", +[2,343,344], +"@diplodoc/transform", +"@discordjs/rest", +"@dis", +"qada/workspace", +[2,348,349], +"@doc-tools/docs", +[3,351,11], +[3,82,9], +[2,352,353], +"@dramaorg/esse-praesentium-eligendi", +[3,355,10], +"quae-dolore-nostrum", +[2,356,357], +"@eas-framework/server", +"@eightshift/frontend-libs", +"@electron/docs-parser", +"@emotion/babel-plugin", +[3,362,9], +"core", +[2,363,364], +[3,365,10], +"ss", +[2,366,367], +"styled", +[2,363,369], +"@erboladaiorg/ad-exercitationem-ducimus", +[3,371,15], +"speriores-earum-quaerat", +[2,372,373], +[3,374,25], +"fuga-sint", +[2,375,376], +"nam-adipisci", +[2,375,378], +"utem-dolores-ipsam", +[2,372,380], +[3,371,14], +"cupiditate-consectetur-porro", +[2,382,383], +[3,384,25], +"pariatur-optio", +[2,385,386], +[3,232,11], +"quis", +[2,335,389], +[2,388,390], +[2,382,391], +"error-atque-ea", +[2,382,393], +[3,394,15], +"sse-", +"ipsa-numquam", +[2,396,397], +[2,395,398], +"x-hic-molestias", +[2,395,400], +[3,401,16], +"plicabo-eius-adipisci", +[2,402,403], +"molestiae-voluptatibus-perferendis", +[2,382,405], +[3,406,22], +"s-nulla-dolor", +[2,407,408], +"nisi-culpa-cum", +[2,382,410], +"officia-illum-aperiam", +[2,382,412], +"perspiciatis-magni-ut", +[2,382,414], +"quae-", +"in-veniam", +[2,416,417], +[2,382,418], +[3,419,18], +"rat-mollitia-adipisci", +[2,420,421], +[3,419,16], +"ibusdam-itaque-tempora", +[2,423,424], +"sint-deleniti-dolorem", +[2,382,426], +[3,427,16], +"t-nesciunt-amet", +[2,428,429], +"tenetur-architecto-dolore", +[2,382,431], +"ut-dignissimos-laborum", +[2,382,433], +"velit-", +"fugit-harum", +[2,435,436], +[2,382,437], +"@eslint-community/eslint-utils", +"@eslint", +"/js", +[2,440,441], +"@fakeyanss/redoc", +"@floating-ui/react-dom", +"@fontsource/inter", +[3,445,12], +"roboto", +[2,446,447], +"@fortawesome/fontawesome-svg-core", +[3,449,14], +"ree-solid-svg-icons", +[2,450,451], +[3,449,13], +"-fontawesome", +[2,89,454], +[2,453,455], +"@grandlinex/core", +[3,457,12], +"e-kernel", +[2,458,459], +"kernel", +[2,458,461], +"@gra", +"phql-markdown/core", +[2,463,464], +[3,465,18], +"docusaurus", +[2,466,467], +"@hajtech/webpack-config", +"@hapi/hapi", +"@hishprorg/aliquid-ad-vero", +[3,471,12], +"utem-", +"sint-", +"@adonisjs/core", +"sint-quas", +[2,473,476], +[2,472,477], +[3,471,11], +"cum-rem-consequuntur", +[2,479,480], +"earum-sint-veritatis", +[2,479,482], +[3,483,12], +"ius-vero-dicta", +[2,484,485], +"st-dicta-quis", +[2,484,487], +"incidunt-quibusdam-tempore", +[2,479,489], +[3,490,12], +"taque-esse-accusamus", +[2,491,492], +"ure-optio-nihil", +[2,491,494], +"magni-amet-id", +[2,479,496], +[3,497,17], +"nisi-", +"aperiam", +[2,499,500], +[2,498,501], +[3,497,13], +"xime-voluptates-enim", +[2,503,504], +"nihil-ad-ratione", +[2,479,506], +[3,414,13], +[3,330,8], +"unde", +[2,509,510], +[2,508,511], +[2,479,512], +"-perferendis-culpa", +[2,389,514], +[2,479,515], +"reprehenderit-excepturi-sed", +[2,479,517], +"nam-", +"conse", +"quuntur", +[2,520,521], +[2,519,522], +[2,474,523], +[2,479,524], +[3,525,12], +"unt-officia-eligendi", +[2,526,527], +[3,528,16], +"volupta", +"tem-nobis", +[2,530,531], +[2,529,532], +"-vitae-reprehenderit", +[2,510,534], +[2,479,535], +"wafflejs", +[2,479,537], +"@homer0/prettier-plugin-jsdoc", +"@hookform/resolvers", +"@iamtraction/google-translate", +"@idux/cdk", +"@idux/c", +"omponents", +[2,543,544], +"@inquirer/core", +"@ionic/core", +"@isaacs/cliui", +"@istanbuljs/nyc-config-typescript", +"@itwin/itwinui-react", +"@jest/core", +"@jest/", +"types", +[2,552,553], +"@jsonforms/core", +[3,555,11], +"-renderers", +[2,29,557], +[2,556,558], +[2,556,89], +"@juigorg/nisi-molestiae-ut", +[3,561,9], +"sit-nam-neque", +[2,562,563], +"@jupyterlab/application", +"@kobedevi/sassdoc", +"@kollorg/dicta-itaque-nemo", +[3,567,9], +"nihil-", +"veniam-deserunt", +[2,569,570], +[2,568,571], +"@libphamton/chatfanpage", +[3,573,12], +"fb-group", +[2,574,575], +"@listr2/prompt-adapter-inquirer", +"@mantine/core", +[3,578,9], +"dates", +[2,579,580], +"hooks", +[2,579,582], +"modals", +[2,579,584], +"notifications", +[2,579,586], +"prism", +[2,579,588], +"style", +"s", +"styles", +[2,579,592], +"utils", +[2,579,594], +"@material-ui/core", +[3,596,13], +[2,597,45], +"@mat", +"hematikoi/jsonapi", +[2,599,600], +"@mdx-js/react", +"@microsoft/api-extractor", +[3,603,11], +"tsdoc", +[2,604,605], +"-config", +[2,606,607], +"@middy/core", +"@middy/", +"-json-body-parser", +[2,27,611], +[2,610,612], +"util", +[2,610,614], +"@ministryofjustice/frontend", +"@mswjs/interceptors", +"@mui/icons-material", +"@mui/", +"lab", +"@mui/lab", +[2,619,29], +"system", +[2,619,623], +"x-date-pickers", +[2,619,625], +"@neato/guider", +"@ng-doc/core", +[3,628,8], +"ui-kit", +[2,629,630], +[3,631,9], +[2,632,186], +"@nomicfoundation/hardhat-chai-matchers", +"@npmcli/arborist", +[3,635,8], +"map-workspaces", +[2,636,637], +"@augment-vir/common", +"node-gyp", +[2,636,640], +"run-script", +[2,636,642], +"@npmc", +"orp/marky-markdown", +[2,644,645], +"@npm", +"tuanmap/ex-vel-expedita-impedit", +[2,647,648], +[3,649,12], +"psychic-guide", +[2,650,651], +"recusandae-recusandae-nam-et", +[2,650,653], +"sed-quo-nemo-rerum", +[2,650,655], +"esse-velit-magnam", +[2,435,657], +[2,650,658], +"@nrwl/devkit", +"@nrwl/", +[2,3388,3399], +"@nrwl/tao", +"workspace", +[2,661,664], +"@nx/devkit", +"@nx/", +"esbuild", +[2,667,668], +"@nx/es", +"lint", +[2,670,671], +"@nx/e", +"xpress", +[2,673,674], +"js", +"@nx/js", +"nest", +"@nx/nest", +"nextra", +"ode", +"@nx/node", +[2,667,664], +"@oclif/command", +[3,684,9], +"nfig", +[2,685,686], +[2,685,23], +"@oclif/", +"plugin-help", +[2,689,690], +"@octokit/rest", +"@opentiny/vue", +"-render", +"less", +[2,694,695], +[2,693,696], +[3,697,14], +"theme", +[2,698,699], +"-mobile", +[2,700,701], +"@otterhttp/cookie", +[3,703,11], +"request", +[2,704,705], +[3,706,13], +"sponse", +[2,707,708], +"send", +[2,704,710], +"@pact-foundation/pact", +"@patrtorg/a-ad-expedita", +[3,713,12], +"ut-amet", +[2,714,715], +[3,713,11], +[3,373,10], +"vel-accusantium", +[2,718,719], +[2,717,720], +[3,721,15], +"natur-dolorum-ducimus", +[2,722,723], +"et-hic", +[2,473,725], +[2,717,726], +[3,713,10], +[3,227,12], +"culpa-non", +[2,729,730], +[2,728,731], +[3,732,22], +"repudiandae-consequuntur", +[2,733,734], +[3,732,15], +"quatur-voluptatum-officiis", +[2,736,737], +"ducimus-magni-quibusdam", +[2,728,739], +"enim-magni-hic", +[2,728,741], +[3,742,11], +"st-corrupti-deleniti", +[2,743,744], +"veni", +"et-tempore-maiores", +[2,746,747], +[2,743,748], +"illum-sapiente-quos", +[2,728,750], +"laborum-doloribus-voluptate", +[2,728,752], +[3,753,11], +"ibero-", +"doloribus-omnis", +[2,755,756], +[2,754,757], +[3,758,17], +[3,336,9], +"sequi", +[2,760,761], +[2,759,762], +"magn", +"am-aut-adipisci", +[2,764,765], +[2,728,766], +[3,767,12], +"iores-quidem-quo", +[2,768,769], +[3,767,11], +"olestias-molestias-ut", +[2,771,772], +"eius-unde", +[2,519,774], +[2,728,775], +[3,386,9], +"dele", +"niti-quaerat", +[2,778,779], +[2,777,780], +[2,728,781], +[3,782,11], +"orro-labore-eos", +[2,783,784], +"earum-", +"eius", +[2,786,787], +[2,416,788], +[2,728,789], +[3,790,12], +"os-quasi-ipsa", +[2,791,792], +"sapiente-eos-magnam", +[2,728,794], +[3,795,20], +"xercitationem-sit", +[2,796,797], +[3,431,9], +"nimi-reprehenderit", +[2,799,800], +[2,728,801], +"@perseid/store", +"@phosphor/widgets", +"@phun-ky/speccer", +"@polymer/polymer", +"@qooxdoo/framework", +"@quasar/extras", +"@readyplayerme/visage", +"@reduxjs/toolkit", +"@rollup/plugin-commonjs", +[3,811,15], +"node-", +"resolve", +[2,813,814], +[2,812,815], +"@sanity/tsdoc", +"@scalar/api-reference", +[3,818,8], +"fastify-api-reference", +[2,819,820], +"@serenity-js/protractor", +[3,822,13], +"webdriverio", +[2,823,824], +"@sinonjs/fake-timers", +"@storybook/addon-docs", +"@subwallet/react-ui", +"@supernovaio/sdk", +"-exporters", +[2,829,830], +[3,829,14], +"upernova-sdk", +[2,832,833], +"@sveltejs/eslint-config", +[3,835,10], +"kit", +[2,836,837], +"vite-plugin-svelte", +[2,836,839], +"@svgr/webpack", +"@swc/core", +"@swenkerorg/maiores-voluptatibus-nemo", +[3,843,13], +"odi-dolorum-provident", +[2,844,845], +[3,843,12], +"nulla-voluptates-voluptates", +[2,847,848], +"@swisspost/design-system-styles", +"@symbiotejs/symbiote", +"@synion/md-docs", +"@taktikorg/aut-distinctio-repellat", +[3,853,11], +"quo-quos", +[2,729,855], +[2,854,856], +[3,857,13], +"rporis-nihil-odit", +[2,858,859], +[3,780,11], +"i-dolorem", +[2,861,862], +[2,854,863], +[3,864,12], +"olor-", +"quibusdam", +[2,509,867], +[2,866,868], +[2,865,869], +"harum-reprehenderit-perferendis", +[2,854,871], +"illum-", +"accusamus-possimus", +[2,873,874], +[2,854,875], +[3,876,12], +"psa-", +"totam-aperiam", +[2,878,879], +[2,877,880], +"ste-", +"ex-tempore", +[2,882,883], +[2,877,884], +"taque-", +"nam-e", +"os", +"nam-eos", +[2,886,889], +[2,877,890], +[3,891,18], +"tempor", +"e-exercitationem", +[2,893,894], +[2,892,895], +"maiores-dolores-aut", +[2,854,897], +[3,898,12], +[3,772,9], +"fuga-", +[3,259,8], +[2,901,902], +[2,900,903], +[2,899,904], +"@bugsnag/react-native", +"@enact/sandstone", +"sse-animi", +[2,887,908], +[2,854,909], +[3,910,12], +"ecessitatibus-repudiandae-officia", +[2,911,912], +"isi-reprehenderit-amet", +[2,911,914], +"placeat-voluptates-dolorum", +[2,854,916], +[3,917,12], +"raesentium-dolorum-quis", +[2,918,919], +[3,920,23], +"neque-i", +"psam", +[2,922,923], +[2,921,924], +"quo-", +"reiciendis-quibusdam", +[2,926,927], +[2,854,928], +[3,653,12], +"atione-veniam", +[2,930,931], +[2,854,932], +"similique-natus-officia", +[2,854,934], +[3,935,12], +"uscipit-modi-ratione", +[2,936,937], +[3,895,8], +"@antora/logger", +"in", +"veniam-in", +[2,939,942], +[2,854,943], +"unde-", +"animi-omnis", +[2,945,946], +[2,854,947], +"nobis-blanditiis", +[2,435,949], +[2,854,950], +[3,951,12], +"oluptatem-pariatur-tenetur", +[2,952,953], +"@tanem/svg-injector", +"@tan", +"stack/react-query", +[2,956,957], +[3,958,10], +"svelte-query", +[2,959,960], +"@teamhanko/hanko-frontend-sdk", +"@testing-library/cypress", +[3,963,17], +"dom", +[2,964,965], +"jest-dom", +[2,964,967], +[3,968,22], +"native", +[2,969,970], +[2,964,89], +"user-event", +[2,964,973], +"@tinyhttp/app", +[3,975,10], +"cookie", +[2,976,977], +"-signature", +[2,978,979], +[3,978,12], +"rs", +[2,981,982], +"etag", +[2,976,984], +"forwarded", +[2,976,986], +"proxy-addr", +[2,976,988], +"req", +[2,976,990], +[3,991,12], +[2,992,591], +[3,991,11], +"outer", +[2,994,995], +[2,976,710], +"type", +[2,29611,30768], +"type-is", +[2,976,1000], +"url", +[2,976,1002], +"@tsparticles/engine", +"@twurple/ebs-helper", +"@types/estree", +"@types", +"cript-eslint/eslint-plugin", +[2,1007,1008], +[3,1009,19], +[2,1010,57], +[2,1010,594], +"@ucloud-fe/react-components", +"@udecode/plate-core", +"@uiw/react-button", +[3,1015,11], +"icon", +[2,1016,1017], +[3,1018,12], +"nput", +[2,1019,1020], +"overlay-trigger", +[2,1016,1022], +"@uiw/", +"@uiw/utils", +"@unleash/proxy", +"@uploadcare/file-uploader", +"@vitejs/plugin-legacy", +[3,1028,15], +[2,1029,89], +"@vue/eslint-config-typescript", +"@wesleytodd/openapi", +"@wuxh/dumi", +"@zitterorg/adipisci-quae-eius", +[3,1034,12], +"sper", +"natur-", +[3,386,10], +"ccaecati", +[2,1038,1039], +[2,1037,1040], +[2,1036,1041], +[2,1035,1042], +"t-esse-odit", +[2,1035,1044], +[3,1034,11], +"cum-", +"ipsum-beatae", +[2,1047,1048], +[2,1046,1049], +"dolor", +"emque-ut-omnis", +[2,1051,1052], +[2,1046,1053], +"est-sunt-quos", +[2,1046,1055], +[3,1056,12], +"um-veritatis-placeat", +[2,1057,1058], +"fluffy-waddle", +[2,1046,1060], +"glowing-barnacle", +[2,1046,1062], +"perferendis-consectetur", +[2,873,1064], +[2,1046,1065], +[3,1066,12], +"taque-n", +"isi-", +"veritatis", +[2,1069,1070], +[2,1068,1071], +[2,1067,1072], +"probable-octo", +[2,1046,1074], +"upgraded-fishstick", +[2,1046,1076], +"@zkportal/aleo-oracle-sdk", +"abort-controller", +"accepts", +"acl", +"acorn", +"arethetypeswrong", +"acorn-walk", +"action-cli", +"adm-zip", +"after", +"agenda", +"aid-guard1", +"airtap", +"ajv", +"ajv-formats", +"although-line-wall-corn", +"amqp", +"lib", +"amqplib", +"analsorhost-simple-bs", +"angular", +"-animate", +[2,1098,1099], +"angular-", +[2,1101,200], +[2,1101,29], +"ansi-colors", +"ansi-", +"escapes", +[2,1105,1106], +"regex", +"ansi-regex", +[2,1105,592], +"ansi", +"ansis", +"ant-design-vue", +"antd", +"antfu", +"anyway-south-boy-pilot", +"api-console", +"apidoc", +"-markdown", +[2,1118,1119], +"apn", +"apollo-cache-inmemory", +"apollo-c", +"lient", +[2,1123,1124], +"apollo-", +[2,1126,163], +"-http", +[2,1127,1128], +"app-root-path", +"appium-android-driver", +"apple-transportation-web3-locate", +"appl", +"icationinsights", +[2,1133,1134], +"appsync-client-node", +"archiver", +"arg", +"argparse", +"arrangement-tell-arrange", +"arra", +"y.prototype.flatmap", +[2,1141,1142], +"arrify", +"assert", +"-plus", +"assert-plus", +"assume", +"async", +"-listen", +[2,1149,1150], +"async-", +"retry", +"async-retry", +"validator", +[2,1152,1155], +"atob", +"aud", +"auto-changelog", +"auto-", +"install", +[2,1160,1161], +"auto", +"prefixer", +[2,1163,1164], +"ava", +"awesome-typescript-loader", +"aws-sdk", +"axe-core", +"axios", +"azure-storage", +"babel", +"babel-cli", +"babel-c", +"babel-core", +"babel-", +"eslint", +[2,1176,1177], +"generator", +[2,1176,1179], +[3,55,7], +"fixtures", +[2,1181,1182], +[2,1176,1183], +[3,1184,13], +"plugin-", +"test-runner", +[2,1186,1187], +[2,1185,1188], +"vue-jsx-merge-props", +[2,1185,1190], +"jest", +"babel-jest", +"loader", +[2,1176,1194], +"add-module-exports", +[2,1186,1196], +[2,1176,1197], +[3,1198,13], +"dynamic-import-node", +[2,1199,1200], +"external-helpers", +[2,1199,1202], +"import", +[2,1199,1204], +[3,1205,14], +"stanbul", +[2,1206,1207], +"lodash", +[2,1199,1209], +"module-resolver", +[2,1199,1211], +"name", +"d-asset-import", +[2,1213,1214], +[2,1199,1215], +[2,1199,80], +[3,1217,20], +"jsx", +[2,1218,1219], +[3,82,10], +"to-generator", +[2,1152,1222], +[2,1221,1223], +[2,1199,1224], +[3,1225,23], +"class", +"-properties", +[2,1227,1228], +[2,1226,1229], +"-legacy", +[2,70,1231], +[2,1226,1232], +"es2015-block-scoping", +[2,1226,1234], +[3,1235,30], +"module", +"s-commonjs", +[2,1237,1238], +[2,1236,1239], +"temp", +"late-literals", +[2,1241,1242], +[2,1236,1243], +[2,1226,77], +"react-", +"react-jsx", +[2,1226,1247], +[3,1248,29], +"remove-prop-types", +[2,1249,1250], +[3,1248,25], +[2,1252,1179], +[3,1248,24], +[2,1254,96], +"babel-p", +[2,1256,84], +"reset-", +"airbnb", +[2,1258,1259], +[2,1256,1260], +[3,1261,13], +"env", +[2,1262,1263], +[3,1264,14], +"s2015", +[2,1265,1266], +[2,1262,89], +"-app", +[2,1268,1269], +"stage-0", +[2,1262,1271], +[3,1272,19], +"1", +[2,1273,1274], +"2", +[2,1273,1276], +"3", +[2,1273,1278], +[2,1176,93], +"babel-r", +[2,1281,96], +"template", +[2,1176,1283], +"babel-t", +"raverse", +[2,1285,1286], +[2,1285,103], +"ify", +"babelify", +"babylon", +"backbone", +"baqend", +"bark-needs-visit4", +"base-64", +"base-", +"individual-comfortable-crop", +[2,1296,1297], +"base", +"@expressots/core", +"base64-js", +[2,30536,26449,2026], +"auth", +"basic-auth", +"batuta", +"bcrypt", +"-nodejs", +[2,1306,1307], +"bcryptjs", +"bearcat", +"beautify-benchmark", +"beaut", +"y-foot-compass5", +[2,1312,1313], +"beefy", +"believed-usually-greater-passage", +"benchmark", +"best-lips-shoulder", +"best-", +"valley2", +[2,1319,1320], +"between-cry-additional", +"beyond", +"bfj", +"bignumber.js", +"bindings", +"bip39", +"bizcharts", +"bl", +"blanket", +"blessed", +"-con", +"trib", +"-contrib", +[2,1331,1334], +"blockchain-am5", +[3,1336,11], +"baby", +[2,1337,1338], +[3,1339,13], +"ck1", +[2,1340,1341], +"closely", +[2,1337,1343], +"directly", +[2,1337,1345], +"egg", +[2,1337,1347], +"happily", +[2,1337,1349], +"language", +[2,1337,1351], +"own8", +[2,1337,1353], +"record", +[2,1337,1355], +"scientist", +[2,1337,1357], +"block", +"ed", +"blocked", +"bluebird", +"bn.js", +"body-parser", +"bookshelf", +"boom", +"bootstrap", +"-sass", +[2,1367,1368], +"bower", +"boxen", +"brain", +"branch-body-web3-feel", +"branch-", +"camera-web3-organization", +[2,1374,1375], +"brfs", +"broccoli-funnel", +[3,1378,9], +"merge-trees", +[2,1379,1380], +"test-", +"helper", +"test-helper", +[2,1379,1384], +"brought-tried-whether8", +"browser-sync", +"browser", +"browserify", +"-shim", +[2,1389,1390], +"slist", +[2,1388,1392], +"bs58", +"bson", +"btoa", +"buble", +"buffer", +"-equal", +[2,1398,1399], +"bufferutil", +"built-who-entire", +"built", +"in-modules", +[2,1403,1404], +"bulma", +"bump-cli", +"bundle-collapser", +"bunyan", +"busboy", +"bytebuffer", +"byte", +"bytes", +"c8", +"cac", +"cache-manager", +"call-bind", +[2,32731,158], +[2,30999,28513], +"camelcase", +"caniuse", +"-lite", +[2,1421,1422], +"canvas", +"careful-faster-dirty-matter", +"case-sensitive-paths-webpack-plugin", +"casperjs", +"caught-brain-service0", +"chai", +"-as-promised", +[2,1429,1430], +"chai-", +"passport-strategy", +[2,1432,1433], +"subset", +"chai-subset", +"chalk", +"chance", +"-able-necessary-bell", +[2,1438,1439], +"@amaui/icons-material-rounded-react", +[2,26909,26910], +"change-case", +"change", +[2,27056,28675], +"changelogen", +"chart.js", +"cheerio", +"chicken-fell-spread", +"child_process", +"child", +"-pro", +"cess-promise", +[2,1452,1453], +[2,1451,1454], +"choerodon-ui", +"chokidar", +"ci-info", +"ckeditor5", +"names", +"classnames", +"clean-css", +"clean-", +"webpack-plugin", +[2,1463,1464], +[2,29755,25720], +"r", +"clear", +"-module", +[2,1468,1469], +"cli-boxes", +"cli-", +"color", +"cli-color", +"@immobiliarelabs/backstage-plugin-gitlab-backend", +[2,819,28594], +"cli-cursor", +"spinner", +"cli-spinner", +[2,1479,591], +"cli-table", +"cli-table2", +"cli-table3", +"cli-t", +"runcate", +[2,1484,1485], +"ux", +"cli-ux", +"clipanion", +"clip", +"@busy-hour/blaze", +"clipboard", +"y", +"clipboardy", +"cliui", +"clone", +"clsx", +"clui", +"co", +"co-prompt", +"code", +[2,1491,3172], +"codecov", +"mirror", +"codemirror", +"coffee-script", +"coffee", +"script", +[2,1507,1508], +"attw", +"colorette", +"colors", +"columnify", +"comm", +"and-exists", +[2,1514,1515], +"command-", +"line-args", +[2,1517,1518], +[3,1519,13], +"usage", +[2,1520,1521], +"command", +"er", +"commander", +"@casl/ability", +"commitizen", +"commit", +"commitlint", +"@types/xast", +"tsdown", +"common-tags", +"component-emitter", +"comp", +[2,15679,26697], +"compression", +"concat-stream", +"conc", +"urrently", +[2,1538,1539], +"config", +"store", +"configstore", +"connect", +"-flash", +[2,1544,1545], +"connect-", +"history-api-fallback", +[2,1547,1548], +"mongo", +[2,1547,1550], +"redis", +[2,1547,1552], +"cons", +"globrex", +"consola", +"consol", +[3,1014,14], +"consolidate", +"content-disposition", +"content-", +[2,1561,998], +"content", +"hook", +"contenthook", +"conventional-changelog", +[2,1566,20], +[3,1567,24], +"onventionalcommits", +[2,1568,1569], +"conve", +"rt-source-map", +[2,1571,1572], +"-parser", +[2,977,1574], +"cookie-", +"session", +[2,1576,1577], +"cookie-s", +"ignature", +[2,1579,1580], +"copy-to-clipboard", +"copy-", +[2,1583,1464], +"copy", +"files", +"copyfiles", +"corcojs-qrcode", +"-logo", +[2,1588,1589], +"cordova", +"-js", +"core-js", +"cors", +"cosmiconfig", +"coveralls", +"cpy-cli", +"crawler", +"crc", +"create-hash", +"create-", +"react-class", +[2,1601,1602], +"critical", +"cron", +"croner", +"emoji-js", +"cronnor", +"cropperjs", +"cross-env", +"cross-", +"fetch", +"cross-fetch", +"spawn", +"cross-spawn", +"crypto", +"-browserify", +[2,1616,1617], +"crypto-", +"crypto-js", +"cson-parser", +"cspell", +"css", +"css-declaration-sorter", +"css-", +"functions-list", +[2,1625,1626], +"css-loader", +"minimizer-webpack-plugin", +[2,1625,1629], +"select", +"css-select", +"tree", +"css-tree", +"cssdb", +"cssesc", +"cssnano", +"cssstyle", +"csstype", +"csurf", +"csv", +"csv-generate", +"csv-", +"parse", +"csv-parse", +"stringify", +[2,1643,1646], +"csvtojson", +"cucumber", +"cuid", +"cypress", +"cz-conventional-changelog", +"d3", +"d3-array", +"d3-scale", +"d3-s", +"election", +[2,1656,1657], +"hape", +"d3-shape", +"dable-effect", +"daisyui", +"dance-you-thou", +"dargs", +"datafire", +"date", +"mercurius", +"date-fns", +"form", +"unbundle", +"format", +"dateformat", +"dayjs", +"deasync", +"debounce", +"debug", +"decamelize", +"@pinia/testing", +"decompress", +"dedent", +"dedupe", +"deep-assign", +"deep-", +"ist-ability3", +[2,1554,1684], +[2,1683,1685], +"diff", +"deep-diff", +"remeda", +"deep-eql", +"@nuxt/ui", +"input-otp", +"deep-equal", +"@assistant-ui/react", +"xtend", +"deep-extend", +"deep", +"merge", +"deepmerge", +"del", +"del-cli", +"delay", +"depcheck", +"depd", +"dependency-check", +"depth-clay-tax7", +"detect-indent", +"detect-", +"port", +"detect-port", +"did-enter-lay", +"2html", +"diff2html", +"erence-mile-pocket5", +[2,1687,1714], +"direct", +"ed-graph-typed", +[2,1716,1717], +"dirty-chai", +"discord-backend-manager", +"discord", +".js", +"discord.js", +"dist", +"ance-its-clear-rate", +[2,1724,1725], +"dmd", +"dmd-grunt-jsdoc2md", +"dnd-multi-backend", +"dnode", +"doc-detective", +"-core", +[2,1731,1732], +"docco", +"docgen", +"dockerode", +"docpad", +"docschema", +"docs", +"ify-tabs", +[2,1739,1740], +"doctoc", +"docu", +"mentation", +[2,1743,1744], +"document", +"db", +"documentdb", +"-lunr-search", +[2,467,1749], +"dom-helpers", +"dom-", +"serializer", +[2,1752,1753], +"to-image-more", +[2,1752,1755], +"dompurify", +"dot", +"dotenv", +"-exp", +[2,26024,1764,1524], +"-expand", +[2,1759,1762], +"download", +"-git-repo", +[2,1764,1765], +"doxdox", +[2,1767,20], +"doxdox-c", +[2,1769,147], +"doxdox-", +"-dox", +[2,57,1772], +[2,1771,1773], +[3,1774,14], +"jsdoc", +[2,1775,1776], +"renderer-bootstrap", +[2,1771,1778], +[3,1779,16], +"json", +[2,1780,1781], +"markdown", +[2,1780,1783], +"draft-js", +"dropzone", +"dtslint", +"dubnium", +"dumi", +[2,31436,31494], +"dumi-cm", +"duplexer", +"dw-neit-antd", +"each", +"echarts", +"eclint", +"ejs", +"elasticsearch", +"elect", +"ricity-death-web3-story", +[2,1799,1800], +[2,28004,28078], +"on", +"electron", +"-builder", +[2,1804,1805], +[3,1806,9], +"packager", +[2,1807,1808], +[3,1809,10], +"rebuilt", +[2,1810,1811], +[3,32493,21], +[2,28080,31811], +"rebuilder", +[2,1807,1815], +"element-resize-detector", +"element-", +"element-ui", +"eleventy", +"elliptic", +"email-templates", +"email", +"emailjs", +"ember-cli", +"-babel", +[2,1825,1826], +[3,1827,10], +"htmlbars", +[2,1828,1829], +"emmet", +"emotion", +"encodeurl", +"end-of-stream", +"enhanced-resolve", +"enquirer", +"ent", +"enumtype", +"envify", +"envi", +"@lobehub/chat", +"envinfo", +"enzyme", +"-adapter-react-16", +[2,1843,1844], +[3,1845,15], +[2,1846,594], +"enzyme-", +"shallow-equal", +[2,1848,1849], +"error", +"handler", +[2,1851,1852], +"es-check", +"es-value-fixtures", +"es5-ext", +"@upstash/context7-mcp", +"shim", +"es5-shim", +"es6-error", +"es6-", +"promise", +"es6-promise", +[3,1863,10], +[2,1864,1289], +"es6-shim", +"escape", +"-html", +"escape-html", +"escape-", +"string", +"-regexp", +[2,1871,1872], +[2,1870,1873], +"escodegen", +[3,67,7], +"-airbnb", +[2,1541,1877], +[2,1876,1878], +"-base", +[2,1879,1880], +[3,1881,21], +[2,1882,91], +[3,1879,14], +"google", +[2,1884,1885], +[3,1886,15], +"ulp", +[2,1887,1888], +"oclif", +[2,1884,1890], +"-typescript", +[2,1891,1892], +"prettier", +[2,1884,1894], +"app", +"react-app", +[2,1884,1897], +"semistandard", +[2,1884,1899], +[3,1900,15], +"tandard", +[2,1901,1902], +"unjs", +[2,1884,1904], +"xo", +[2,1884,1906], +"-lass", +[2,1907,1908], +"doc-", +[2,1910,1179], +[2,1876,1911], +"-resolver-typescript", +[2,1204,1913], +[2,1876,1914], +[2,1876,1194], +[3,67,8], +[2,32825,32833], +"lugin-ava", +[2,1917,1919], +[3,1920,14], +[2,1921,1172], +"compat", +[2,1921,1923], +"es5", +[2,1921,1925], +[3,1926,16], +"-comments", +[2,671,1928], +[2,1927,1929], +[3,1930,21], +"plugin", +[2,1931,1932], +"flowtype", +[2,1921,1934], +"html", +[2,1921,1936], +[2,1921,1204], +[2,1921,1192], +[3,1939,15], +"sdoc", +[2,1940,1941], +[3,1942,16], +"onc", +[2,1943,1944], +"x-a11y", +[2,1943,1946], +[2,1921,1783], +[3,1948,15], +"ocha", +[2,1949,1950], +"n", +[2,1921,1952], +[2,1953,681], +[2,1921,1894], +[3,1955,16], +"omise", +[2,1956,1957], +[2,1921,89], +"-hooks", +[2,1959,1960], +[3,1959,16], +"gexp", +[2,1962,1963], +"security", +[2,1921,1965], +[3,1966,15], +"onarjs", +[2,1967,1968], +[2,1967,1902], +"velte", +[2,1967,1971], +"test", +"ing-library", +[2,1973,1974], +[2,1921,1975], +[3,1976,15], +[2,1977,1941], +[2,26374,26377], +[2,30307,5592], +"unicorn", +[2,1921,1981], +"vite", +"vitest", +[2,1921,1984], +[3,1985,15], +"ue", +[2,1986,1987], +"remo", +"te-tester", +[2,1989,1990], +[2,1876,1991], +"scope", +[2,1876,1993], +"visitor-keys", +[2,1876,1995], +"rc", +"eslintrc", +"esm", +"espree", +"@architect/asap", +"ima", +"esprima", +"estraverse", +"estr", +"ee-walker", +[2,2005,2006], +"ethereumjs-tx", +[3,2008,11], +[2,2009,614], +"evalmd", +"event-stream", +"event", +"emitter2", +[2,2013,2014], +[3,2015,12], +[2,2016,1278], +"events", +"excellent-difficult-good", +"execa", +"exit", +"expect", +"-type", +"expect-type", +"expect.js", +"express", +"-adexe", +[2,2026,2027], +[3,2028,9], +"utodoc", +[2,2029,2030], +"express-", +[2,2032,1179], +"handle", +"canvaskit-wasm", +"handlebars", +[2,2032,2036], +"jwt", +"express-jwt", +[2,2032,1577], +"tools", +[2,2032,2041], +[3,2042,9], +"yped-rpc", +[2,2043,2044], +[2,2032,1155], +"zod-api", +[2,2032,2047], +"@crxjs/vite-plugin", +[2,32904,37123], +"extend", +"-shallow", +[2,2051,2052], +"extract-text-webpack-plugin", +"extract-", +"zip", +"extract-zip", +"facing-cook", +"fair-tower-web3-store", +"faker", +"fancy-log", +"fast", +"-check", +"fast-check", +[2,32904,13392], +"@antora/cli", +"fast-csv", +"fast-", +[2,2068,1693], +"glob", +"fast-glob", +"plist", +"fast-plist", +"xml-parser", +[2,2068,2074], +"click", +"fastclick", +"fastify", +"father", +"faucet", +"fbjs", +"fe-pilot", +"feature-rising-small7", +"femo", +"-mock", +"fetch-mock", +"fibers", +"figlet", +"figures", +"file", +"-loader", +"file-loader", +"file-", +[2,29611,7436,26391], +"file-saver", +"file-type", +"planck", +"filesize", +"finalhandler", +"find", +"-cache-dir", +[2,2100,2101], +"find-", +"up", +"find-up", +"syncpack", +"findup-sync", +"firan-logging", +"firebase", +"-admin", +[2,2109,2110], +[3,2111,9], +[2,2112,2041], +"fixpack", +[2,2120,1145], +"fixturify", +"flat", +"pak-bundler", +[2,2117,2118], +[3,639,13], +[2,2125,23], +"flatpickr", +"flightplan", +"flow", +[3,639,15], +"flow-bin", +"@date-vir/duration", +"flowbite", +"fluent-ffmpeg", +"flux", +"follow-redirects", +"font-awesome", +"for-each", +"forever", +"fork-ts-checker-webpack-plugin", +"-alt", +[2,2135,2136], +"-data", +"form-data", +"nolyfill", +"formidable", +[2,13402,31197], +"k", +"formik", +"fresh", +"-dangerous", +[2,2145,2146], +"friendly-errors-webpack-plugin", +"front-matter", +"fs", +"fs-extra", +"fs-jetpack", +"fs-promise", +"fsevents", +"fstream", +"ftp", +[3,1626,10], +"have-names", +[2,2157,2158], +"fur-race-web3-pale", +"fuse.js", +"futen", +"fuzzy", +"gaze", +"gc-signals", +"-angular", +[2,1179,2166], +[3,2167,10], +"gulp-angular", +[2,2168,2169], +"nitro", +[2,2168,2171], +"gener", +"ic-pool", +[2,2173,2174], +"gensequence", +"gentle-party-other", +"geolib", +"get-package-type", +[2,2181,668], +[3,15376,16], +"get-port", +"get-", +"stdin", +"get-stdin", +"@c15t/backend", +"ream", +"get-stream", +"execute-in-browser", +"tsconfig", +[2,2183,2190], +"getmac", +"gh-pages", +"ghooks", +"github", +"-buttons", +[2,2195,2196], +[2,11941,2201], +"-parent", +"glob-parent", +"smart-text-reporter", +"global", +"globals", +"by", +"globby", +"gm", +"gmll", +"-spreadsheet", +[2,1885,2208], +"apis", +"googleapis", +"got", +"government-letter-web3-till", +"govuk-frontend", +"graceful-fs", +"gradually-current-chief", +"graph-these", +"graph", +[2,25849,25854], +"graphql", +"leaflet-gesture-handling", +"graphql-tag", +[3,2222,9], +"ools", +[2,2223,2224], +"gray-matter", +"grpc", +"grunt", +"-templates", +[2,2166,2229], +[2,2228,2230], +"grunt-a", +"uto-release", +[2,2232,2233], +"grunt-", +[2,2235,1389], +"grunt-b", +"animejs", +"grunt-bump", +"grunt-cli", +"grunt-c", +"oncurrent", +[2,2241,2242], +[3,2243,9], +[2,26107,26938], +"trib-clean", +[2,2244,2246], +[3,2247,15], +"ompass", +[2,2248,2249], +[3,2250,16], +"ncat", +[2,2251,2252], +[3,2253,17], +"nect", +[2,2254,2255], +"py", +[2,2251,2257], +"sslint", +[2,2248,2259], +[3,2260,17], +"min", +[2,2261,2262], +[3,2247,14], +"htmlmin", +[2,2264,2265], +"imagemin", +[2,2264,2267], +[3,2268,15], +"nternal", +[2,2269,2270], +"jshint", +[2,2264,2272], +[2,2264,695], +"unit", +"nodeunit", +[2,2264,2276], +"sass", +[2,2264,2278], +"uglify", +[2,2264,2280], +"watch", +[2,2264,2282], +"ventional-changelog", +[2,2244,2284], +[3,2285,19], +"github-", +"releaser", +[2,2287,2288], +[2,2286,2289], +[2,2235,1177], +"jscs", +"grunt-jscs", +"grunt-js", +"doc", +"grunt-jsdoc", +"karma", +"grunt-karma", +"mocha-test", +[2,2235,2299], +"newer", +"grunt-newer", +"grunt-n", +"otify", +[2,2303,2304], +"pm", +"grunt-npm", +"grunt-sass", +"grunt-sa", +"ucelabs", +[2,2309,2310], +"grunt-s", +"augment", +"grunt-shell", +"imple-mocha", +[2,2312,2315], +"pritesmith", +[2,2312,2317], +"usemin", +[2,2235,2319], +"gts", +"guarapi", +"gulp", +[3,2229,9], +"cache", +[2,2324,2325], +[2,2169,2326], +"gulp-a", +"tom-electron", +[2,2328,2329], +"utoprefixer", +[2,2328,2331], +"wspublish", +[2,2328,2333], +"zure-storage", +[2,2328,2335], +"gulp-", +"gulp-babel", +"gulp-b", +"vir", +"gulp-bom", +[1,2343,2349], +[0,4796,4797,4798,4799], +"gulp-bower", +"rowserify", +[2,2339,2345], +"uffer", +"gulp-buffer", +[0,2358,2380,2388,2399], +"augment-vir", +"gulp-bump", +"gulp-cache", +"d", +"gulp-cached", +"gulp-c", +"hanged", +[2,2355,2356], +[0,1673,4484,4809,1461,3744,4804,1282,4805,4806,3028,3911,4812,2609,3849,4023,4808], +"gulp-clean", +"-css", +[2,2359,2360], +"@flmngr/flmngr-react", +"gulp-coffee", +"gulp-co", +"mpass", +[2,2364,2365], +"gulp-concat", +[2,2367,2360], +"gulp-con", +"flict", +[2,2369,2370], +[2,2369,2255], +"gulp-copy", +"sscomb", +[2,2355,2374], +"gulp-css", +[2,2376,671], +"nano", +[2,2376,2378], +[0,1499,1797,3135,1429,2070,695,2278,1983,1437,2675,4868,2297,2899,89,3875,4193,4747,1843,1177,1209,3220,3984,4135,4487,4568,1448,1651,668,3561,4474,2924,1169,1457,1859,2151,2720,3183,3416,1894,4952,4473,4955,4860,2025,4919,3758,4929,3817,3824,4939,4320,4469,4873,1175,1628,4937,4941,91,53,4856,4865,4874,2900,2990,3105,4925,3876,4869,4880,4892,1165,1178,1195,3008,3090,3564,3696,3884,4307,4705,692,4855,4863,4870,2925,4931,4891,1257,3613,3618,4940,4330,192,4864,4866,4907,3816,4934,606,4883,4890,1264,4909,4917,3734,3885,4824,4831,4852,4859,4923,4835,4884,1268,3107,4681,4840,4875,1959,1978,2923,3904,4820,4827,1030,4895,1272,4913,1938,4817,4842,1208,4916,2881,1566,32965,1895,1947,1948,2921,4815,4872,4887,1845,3810,3820,4822,4851,4912,4922,3591,4829,1011,3584,4889,4927,2054,4949,4849,4946,33009,4882,1255,1198,4897,4879,1009,1426,4899,4903,61,1233,1570,4906], +"gulp-csso", +"data", +"gulp-data", +"gulp-eslint", +"include", +[2,2093,2385], +[2,2337,2386], +[0,4957,4959,3286,4627,4960,89,4962,4963,4964,4967], +"ter", +"gulp-filter", +"gulp-f", +"latmap", +[2,2391,2392], +[3,2393,9], +"ten", +[2,2394,2395], +"ormat-md", +[2,2391,2397], +1772064000000, +"gulp-ftp", +[2,2337,2193], +[1,2343,2418], +"it", +"gulp-git", +"gulp-gzip", +[2,2337,2036], +"gulp-h", +"eader", +"gulp-header", +"tml-replace", +[2,2407,2410], +[3,2411,9], +[2,2412,2262], +"font", +"iconfont", +[2,2337,2415], +"gulp-i", +[0,2431,0,2442,2443], +"gulp-if", +"gnore", +"gulp-ignore", +"mage-resize", +[2,2417,2422], +[3,2423,10], +[2,2424,2262], +"nclude", +[2,2417,2426], +"gulp-in", +"ject", +"gulp-inject", +[0,1091,4094,3530,4227,1092,2858], +"line-css", +[2,2428,2432], +"stall", +[2,2428,2434], +[2,2417,1207], +"jade", +"gulp-jade", +"gulp-ja", +"smine", +[2,2439,2440], +[0,4973,4976,1098,364,4977,4978], +1771804800000, +"gulp-jscs", +"gulp-js", +"hint", +"gulp-jshint", +"on-editor", +[2,2445,2448], +"gulp-less", +"gulp-l", +"ivereload", +[2,2451,2452], +"oad-plugins", +[2,2451,2454], +"mini", +[1,2343,2470], +"minify-css", +[2,2337,2458], +[3,2459,12], +[2,2460,1936], +"gulp-m", +"gulp-mocha", +"gulp-newer", +"gulp-n", +"g-annotate", +[2,2465,2466], +"odemon", +[2,2465,2468], +[0,2471,0,2483,34352], +[0,3467,4094,2858,3090,4], +"gulp-notify", +"extra", +"extras", +[2,1186,2474], +[2,2337,2475], +"gulp-plu", +"mber", +[2,2477,2478], +"gulp-p", +"ostcss", +[2,2480,2481], +[0,4973,4976,1098,4986,4988,4977,4989,6,4978,1283,4991], +"ocess", +"reprocess", +[2,2480,2485], +1770508800000, +[1,2343,2497], +"gulp-prompt", +[2,2337,89], +"gulp-re", +"mote-src", +[2,2491,2492], +"gulp-rename", +"place", +[2,2491,2495], +[0,2513,0,2514,2523], +"gulp-rev", +"-replace", +[2,2498,2499], +"gulp-r", +"uby-sass", +[2,2501,2502], +"gulp-sass", +"gulp-s", +"gulp-sftp", +"gulp-shell", +"gulp-size", +"ourcemaps", +[2,2505,2509], +"trip-debug", +[2,2505,2511], +[0,4484], +[0], +"gulp-stylus", +"vg-sprite", +[2,2505,2516], +"gulp-svg", +"gulp-svgmin", +[2,2518,1542], +[2,2337,1283], +"gulp-t", +1771113600000, +"gulp-tsb", +"gulp-ts", +[2,2525,671], +"cript", +"ypescript", +[2,2522,2528], +"gulp-uglify", +[1,2343,2532], +[0,2534,0,2535,2537], +"gulp-uncss", +[0,4484,3493], +[0,1098,12,4627,5001,837], +"gulp-usemin", +1771718400000, +"ref", +"gulp-useref", +[1,2343,2561], +"gulp-util", +"vinyl-zip", +[2,2337,2542], +"gulp-watch", +"gulp-w", +"ebpack", +[2,2545,2546], +"gulp-web", +[2,2548,36], +"gulp-zip", +".spritesmith", +[2,2323,2551], +"gzip-size", +"hallmark", +"hammerjs", +"hapi", +[2,5323,33498], +[2,5340,6374], +"happy-dom", +"happy-", +[0,2513,0,2514,2537], +"happy-meant", +"hard-cool-rhythm-continued", +"has-flag", +"has-", +"parts-ice-fact", +[2,2565,2566], +"symbols", +"has-symbols", +"hash-sum", +"hasown", +"hast-util-raw", +[3,2572,10], +"sanitize", +[2,2573,2574], +[3,2575,11], +[2,2576,1799], +"to-estree", +[2,2573,2578], +[3,2579,13], +[2,2580,1936], +"jsx-runtime", +[2,2580,2582], +[2,2580,1871], +"text", +[2,2580,2585], +"hast", +"hastscript", +"hay-against-any-hurry", +"hbs", +"he", +"heapdump", +"helmet", +"heroicons", +"hexlet-pairs", +"hexo", +"highland", +"highl", +"ight.js", +[2,2598,2599], +"hiredis", +"history", +"history-", +"brass-sound", +[2,2603,2604], +"hit-running-special8", +"hoek", +"hogan.js", +"hoist-non-react-statics", +"homebridge", +"hono", +"hope-slight-walk1", +"hosted-git-info", +"how-to-npm", +"-dom-parser", +[2,1936,2615], +"html-", +"attributes", +[2,1818,2618], +[2,2617,2619], +"html-e", +"ncoding-sniffer", +[2,2621,2622], +"html-en", +"tities", +[2,2624,2625], +"scaper", +[2,2621,2627], +"html-loader", +[1,2343,2647], +"ier", +"minifier", +[2,2617,2632], +"-terser", +[2,2633,2634], +"pdf", +"html-pdf", +[2,1246,57], +[2,2617,2638], +"tags", +"html-tags", +"html-t", +"o-image", +[2,2642,2643], +"html-to-", +[2,2645,2585], +[0,2648,2667,2684,2537], +[0,4484,4747,4135,1457,53,3951,1573,5012], +"validate", +[2,2617,2649], +[2,2617,1464], +"htmlnano", +"parser2", +"htmlparser2", +"http-", +"errors", +"http-errors", +"proxy", +"http-proxy", +"-agent", +[2,2659,2660], +[3,2661,11], +"middleware", +[2,2662,2663], +[2,2655,36], +"http-s", +[0,91], +"http-status", +"-codes", +[2,2668,2669], +"https", +"xy-agent", +[2,1452,2672], +[2,2671,2673], +"husky", +"hyperquest", +"hyphenate-style-name", +"i", +"i18n", +"ext", +"i18next", +"-gridly-backend", +[2,2681,2682], +[0,1098,4643], +"iconv-lite", +"identity-obj-proxy", +"ignore", +[1,2343,2690], +"image-size", +[0,2691,0,2514,2443], +[0,4484,26364], +"imagemagick", +"-pngquant", +[2,2267,2693], +"imap", +"immer", +"immutability-helper", +[1,2343,2705], +"le", +"immutable", +"import-", +[2,2701,2145], +"local", +[2,2701,2703], +[0,2513,0,2736,34352], +"ess", +"impress", +"in-publish", +"indent-string", +"inert", +"inferno", +"inflection", +"inherits", +"ini", +"iniparser", +"ink", +"-style-parser", +[2,134,2717], +"innosetup-compiler", +"inquirer", +"-autocomplete-prompt", +[2,2720,2721], +"inside-throw", +"insta", +"gram-node", +[2,2724,2725], +"interpret", +"intl", +"-tel-input", +[2,2728,2729], +"invariant", +"inversify", +"ionic", +[2,34017,34020], +"ionicons", +[0,1098,29,5027,4963], +[1,2343,2773], +"ioredis", +"ip", +"irc", +"is", +"is-ci", +"is-glob", +"is-installed-globally", +"is-plain-obj", +"ect", +[2,2745,2746], +"is-p", +"otential-custom-element-name", +[2,2748,2749], +"romise", +"is-promise", +"is-stream", +"is-url", +"is-wsl", +"isarray", +"isobject", +"isomorphic-fetch", +"istanbul", +"itwcw-package-analytics", +"iview", +"jackspeak", +"jake", +"jarallax", +"jasmine", +[2,2765,1732], +"jasmine-", +[2,2767,202], +"jest-", +"canvas-mock", +[2,2769,2770], +"jest-c", +[0,2513,0,2514,2487], +"jest-cli", +[1,2343,2776], +[0,2789,0,2514,2537], +"jest-diff", +"ronment-jsdom", +[2,1840,2778], +[2,2769,2779], +"-fourteen", +[2,2780,2781], +[3,2780,17], +[2,2783,202], +"jest-e", +"xtended", +[2,2785,2786], +"html-re", +[0,5038,4484], +"porters", +[2,2788,2790], +[2,2769,2791], +"junit", +"jest-junit", +"pnp-resolver", +[2,2769,2795], +[2,2769,814], +"jest-util", +[1,2343,2803], +"-typeahead", +[2,2282,2800], +[2,2769,2801], +[0,2513,2804,2815,2399], +[0,2734], +"jest-worker", +"jimp", +"jiti", +"jodit", +"-react", +"jodit-react", +"johnny-five", +"joi", +"jotai", +"jquery", +[0,1098,38], +"jquery-ui", +"js-base64", +[1,2343,2819], +[0,2830,2836,2837,2523], +"js-beautify", +"js-cookie", +"js-yaml", +"jsarch", +"jscpd", +"-api", +"jsdoc-api", +"jsdoc-", +"to-markdown", +[2,2827,2828], +[0,1673,3789,1461,1282,5060,5071,6476,5057,5059,5062,5065,5049,5050,5069,5047], +"m", +"jsdom", +"-no-contextify", +[2,2832,2833], +"jsesc", +[0,1114,2070,1192,89,1177,4487,5098,4468,3213,1610,5102,3824,1193,5100,3697,3846,91,53,5087,2990,5125,4880,1178,1540,3857,97,5123,5076,5090,5091,5094,5108,5113,3904,5106,5121,5097,5084,6498,3810,5115,5082,1011,971,5110,5085,5075,5118,5103,5079], +[0,5127,4964,89,5128,4627,4963,181,5130,4967,5131,5133], +"-stylish", +[2,2272,2838], +[1,2343,2868], +"json-2-csv", +"json-", +"json-loader", +[3,6,6], +"json-schema", +"json-s", +"erver", +"json-server", +"-stringify", +[2,176,2849], +[2,2846,2850], +"json-st", +"ringify-safe", +[2,2852,2853], +"5", +"json5", +"c-parser", +[2,1781,2857], +"jsonfile", +"jsonschema", +"JSONStream", +"webtoken", +[2,1781,2862], +"jspm", +"jstates", +"jszip", +"jwt-decode", +[0,2884,2901,2938,2537], +"simple", +"jwt-simple", +[2,2297,1617], +[3,2871,13], +"stack", +"-launcher", +[2,2873,2874], +[2,2872,2875], +"karma-", +"karma-chai", +"karma-ch", +"rome-launcher", +[2,2879,2880], +"karma-c", +"over", +[0,3021], +"overage", +[2,2882,2885], +"browsers", +[2,1708,2887], +[2,2877,2888], +"edge-launcher", +[2,2877,2890], +"fire", +"fox-launcher", +[2,2892,2893], +[2,2877,2894], +"ie-launcher", +[2,2877,2896], +[2,2877,2765], +"mocha", +"karma-mocha", +[0,1114,89,2079,3824,91,4880,5139,4883], +"orter", +"-reporter", +[2,2900,2903], +"phantomjs-launcher", +[2,2877,2905], +"qunit", +"karma-qunit", +"rollup-preprocessor", +[2,2877,2909], +"safari-launcher", +[2,2877,2911], +"karma-sa", +"uce-launcher", +[2,2913,2914], +"karma-s", +"inon", +"karma-sinon", +"ourcemap", +[2,2919,2091], +[2,2916,2920], +"pec-reporter", +[2,2916,2922], +"webpack", +[2,2877,2924], +"keycode", +"keypress", +"keyv", +"kleur", +"knex", +"knip", +"known-css-properties", +"knox", +"koa", +"koa-body", +[2,2935,57], +"koa-", +[0,5127,4964,4653,1114,4627,4963,5130,4967,89,5128,181], +[1,2343,2974], +"compose", +"koa-compose", +"logger", +"koa-logger", +"mount", +"koa-mount", +[2,2937,38], +"static", +"koa-static", +"kue", +"label-lungs-court4", +"-perfe", +"ctly-blow-series", +[2,2951,2952], +[2,1351,2953], +"late-", +"dress-mail5", +[2,2955,2956], +"late", +"st-version", +[2,2958,2959], +"lazy.js", +"lead-alike-web3-applied", +"leaflet", +"left-pad", +"left", +"pad", +"leftpad", +"lerna", +[2,695,2091], +"level", +"down", +"leveldown", +"levelup", +[0,2985,2988,3011,2523], +"leven", +"libnpmdiff", +"libnpm", +"exec", +"libnpmexec", +"fund", +"libnpmfund", +"libphonenumber-js", +"liftoff", +"lilconfig", +[0,1461,5145,5146], +"linkifyjs", +"lint-", +[0,1114,2070,89,2079,3824,91,4880,4883], +"staged", +"lint-staged", +"listr", +"listr2", +"lit-element", +"lite", +"-server", +"lite-server", +"live-server", +"live", +"reload", +"livereload", +"load", +"-grunt-config", +[2,3001,3002], +[3,3003,11], +"tasks", +[2,3004,3005], +"-utils", +[2,1194,3007], +"-web-server", +[2,2703,3009], +[0,5127,4964,4653,1114,4627,4963,5130,4967,89,5128,181,1017], +"localforage", +"tunnel", +"localtunnel", +"lock", +[1,2343,3017], +[0,3075,3100,3104,2537], +"file-lint", +[2,3015,3018], +"-es", +"lodash-es", +".assign", +[2,1209,3022], +"lodash.", +[2,3024,1420], +"lodash.c", +"lonedeep", +[2,3026,3027], +[2,3024,1675], +[3,3029,9], +"faults", +[2,3030,3031], +"flatten", +[2,3024,3033], +"lodash.f", +"oreach", +[2,3035,3036], +"get", +"lodash.get", +"isempty", +[2,3024,3040], +[3,3041,10], +"qual", +[2,3042,3043], +[3,3041,9], +"function", +[2,3045,3046], +"object", +[2,3045,3048], +"plainobject", +[2,3045,3050], +[2,3045,1871], +"map", +"lodash.map", +"lodash.m", +"emoize", +[2,3055,3056], +[3,3057,9], +"rge", +[2,3058,3059], +"omit", +"lodash.omit", +"pick", +"lodash.pick", +"set", +"lodash.set", +[2,3024,1283], +"lodash.t", +"hrottle", +[2,3068,3069], +"uniq", +"lodash.uniq", +"log", +"log-symbols", +[0,5154,5152], +"update", +"log-update", +"log4js", +"loglevel", +"long", +"loopback", +"loose-envify", +"lowdb", +"lru-cache", +"lucide", +"luck-rubber-do", +"lwip", +"lws", +"madwizard", +"magic-string", +"magmastream", +"main-bower-files", +"make-dir", +"make-", +"make-node", +"mammoth", +"manifest", +"mantine-contextmenu", +"many-favorite6", +[0,4484,3709,4508,4355,838,5160,5159,4514,5162,840], +"stream", +"map-stream", +"mapboxgl-legend", +[0,5165,5166,2038,5167,3424,5168,5170,3709], +"markdown-it", +"-anchor", +[2,3105,3106], +[3,3107,12], +"cont", +[1,2343,3168], +"container", +[2,3108,3111], +"emoji", +[2,3108,3113], +[3,3105,9], +[2,3115,2636], +[2,3115,176], +[3,3117,10], +"o-jsx", +[2,3118,3119], +[3,3120,11], +"c", +[2,3121,3122], +[2,1783,671], +[2,3124,20], +"mark", +"marked", +"y-markdown", +[2,3126,3128], +"matcha", +[3,558,9], +[2,3131,181], +"mathjs", +"matter-view-web3-fence", +"md5", +"md5-file", +"mdast-util-from-markdown", +[3,3137,11], +"to-hast", +[2,3138,3139], +"mdn-data", +"mdxts", +"memcached", +"memfs", +"memoize-one", +"memo", +"ry-cache", +[2,3146,3147], +"memory-", +"memory-fs", +"memory", +[2,3151,3101], +"memwatch", +"menta", +"l-oxygen-dozen", +[2,3154,3155], +"meow", +"merge-", +[2,3158,3101], +"metalsmith", +"meteor", +"method-override", +"method", +"methods", +"microbundle", +"micro", +"micromark", +[0,3169,3179,3182,2537], +[0,2070,4207,3093,1525,1573,5175,5180], +"micromatch", +"mime", +"-types", +"mime-types", +"min-heap-typed", +"-extract-plugin", +[2,2360,3175], +[2,2456,3176], +"minify", +[0,4135,53,4865,5185,5191], +"atch", +"minimatch", +[0,5193,1172,5194,5197,5198,1173,4643], +"minimist", +"-jet-printed-supper", +[2,1504,3184], +"missing-sport-living", +"mkcert", +"mkdirp", +"mlly", +"mobx", +"mobx-react", +"mocha-", +"head", +"less-", +"chrome", +"less-chrome", +[2,3193,3196], +[2,3192,3197], +[2,2793,2903], +[2,3192,3199], +"lcov-reporter", +[2,3192,3201], +"mock-fs", +"mock-", +"property", +[2,3204,3205], +[1,2343,3208], +[0,3214,3217,2514,2537], +"require", +[2,3204,3209], +"mock-stdin", +"mock", +"mockdate", +[0,9673,3527,5279], +"mockery", +"mockjs", +[0,5282,4294,5210], +[2,3224,3225], +"moleculer", +"moment", +"-timezone", +[2,3220,3221], +"monaco-yaml", +[3,5838,28], +"xp-modifiers", +"monads-io", +"ress", +"-express", +[2,1550,3228], +"mongodb", +"ose", +"mongoose", +"monitor", +"-dashboard", +[2,3233,3234], +"monk", +"morgan", +"motor-positive-spirit", +"move-wolf-throughout", +"movie-obtain-tail-prepare", +"mqtt", +"ms", +"mssql", +"msw", +"mud-slowly-five3", +"multer", +[1,2343,3248], +[0,3252,3269,3272,2537], +"multimatch", +"multi", +"part", +[0,1676,2856,4135,5233,104,58,5228,5230,101,5216,51,1573,31292,5226,5222], +"multiparty", +"multip", +"le-cucumber-html-reporter", +[2,3254,3255], +"mustache", +"muuri", +"mysql", +"mysql2", +"mz", +"nails-wild-interest-garden", +"nan", +"nano-css", +"id", +"nanoid", +"-keymap", +[2,970,3267], +[0,4494,4039,4474,5245,5254,5251,87,92,5235,5180,5244,5240,5241,5191], +"nativefier", +[2,970,1508], +[0,5193,1172,5256,5257,5194,5258,5259,5260,5197,5198,5261,1175,4643], +"natural", +"nconf", +"ncp", +"near-social-bridge", +"nedb", +"needle", +[1,2343,3280], +[0,0,3293,2514,2523], +"-commander", +[2,678,3281], +"newman", +"newrelic", +"next-auth", +"next", +"nextjs", +"ng-mocks", +"ng-zorro-antd", +"ngrok", +"nib", +"nightmare", +[0,53], +"nightwatch", +"nine-yes-merely6", +"nise", +"nock", +"addon-api", +[2,813,3298], +"node-cache", +"node-c", +"ontainerpattern", +[2,3301,3302], +"dev", +"node-dev", +"node-d", +[1,2343,3311], +"node-dir", +"node-emoji", +"node-fetch", +[0,3328,3338,3398,2523], +"orge", +"node-forge", +"node-g", +"toolchain", +"node-gcm", +"eocoder", +[2,3314,3317], +"JSONC", +"arser", +"html-parser", +[2,813,3321], +"inspector", +[2,813,3323], +"JSX", +"mocks-http", +[2,813,3326], +[0,104], +"notifier", +[2,813,3329], +"oauth2-server", +[2,813,3331], +"powertools", +[2,813,3333], +"node-p", +"re-gyp", +[2,3335,3336], +[0,5282,51,5274,5276,5279,5273], +"node-pty", +"node-re", +"node-red", +"node-sass", +"node-s", +"chedule", +[2,3343,3344], +"tatic", +"node-static", +"uuid", +"node-uuid", +"node-watch", +"node-w", +"indows", +[2,3351,3352], +"xlsx", +"node-xlsx", +".extend", +[2,202,3356], +"git", +"nodegit", +"mailer", +"nodemailer", +"TSX", +"nodemon", +"webkit", +"nodewebkit", +"nolangjs", +"nomnom", +"nopt", +"normalize-path", +[3,3369,10], +[2,3370,1002], +"wheel", +[2,3370,3372], +[3,3369,9], +".css", +[2,3374,3375], +"np", +"npm", +"npm-check", +"-updates", +[2,3379,3380], +"npm-", +"package", +"GraphQL", +"package-arg", +[2,3382,3385], +[3,3386,12], +[3,4786,24], +"json-lint", +[2,3387,3389], +"npm-pack", +"list", +[2,3391,3392], +"regist", +"ry-fetch", +[2,3394,3395], +[2,3382,3396], +[0,1172,5284,57,5285,5286,58], +"mc-scripts", +"npm-run-all", +[2,3400,1276], +"npm-run-", +"path", +[2,3402,3403], +[2,556,11398,3902,591], +"npm-to-yarn", +"windows-upgrade", +[2,3382,3407], +"npmcli", +"npmignore", +"npmlog", +"nprogress", +"nsp", +"nuke-cli", +"numeral", +"nunjucks", +"nvm", +"nvmrc", +"nwsapi", +"nx", +"nyc", +"oas", +"oas-normalize", +"oauth", +[3,77,7], +"assign", +[2,3425,3426], +"hash", +"object-hash", +"inspect", +[2,3425,3430], +"keys", +"object-keys", +"object-path", +[2,3048,3022], +"object.", +"entries", +[2,3436,3437], +"observe-food-motion-hidden", +"on-finished", +"once", +"onchange", +"one-how-hand", +"onoff", +"open", +"open-cli", +"api-c", +[1,2343,3454], +"lient-axios", +[2,3447,3449], +[2,3445,3450], +"openapi", +[2,3452,1712], +[0,3457,3464,3465,2537], +"opencv", +"opener", +[0,5292,56], +"openweather", +"opn", +"optimist", +"optimi", +"ze-css-assets-webpack-plugin", +[2,3461,3462], +[0,53,5295], +[0,5297], +"optionator", +"ora", +"orchestrator", +"orm", +"osenv", +"outdent", +"outline-slowly", +"overlay", +"scrollbars", +[2,3473,3474], +"ovsx", +"p-event", +"p-map", +"p-queue", +"p-timeout", +"p23", +"pa11y", +"pacote", +"pageres", +"paintor", +"pako", +"para", +"para-cli", +"ent-js", +[2,3488,3489], +"llelshell", +[2,3487,3491], +"parse5", +"parseurl", +"passport", +[3,1433,9], +"facebook", +[2,3496,3497], +[2,3496,2703], +[2,3496,3424], +[2,3500,1276], +[2,3403,1617], +"path-", +"exists", +"path-exists", +"is-absolute", +[2,3503,3506], +"to-regexp", +[2,3503,3508], +"pathe", +"paypal-server-api", +"pdfjs", +"pdfkit", +"perf", +[1,2343,3516], +[0,3538,3546,3581,2523], +"ormance-now", +[2,3514,3517], +"pg", +"phantom", +[3,2905,9], +[3,2905,10], +"prebuilt", +[2,3522,3523], +"phonegap", +"pi-gpio", +"picocolors", +"pico", +"match", +"picomatch", +"pie-case-nor-great", +"pify", +"pino", +"pinst", +"pitch-somehow-earth-brave", +"pixelmatch", +"pkg-dir", +[0,5302,1676,2929,5303,4135,2822,4213,1457,18089,2098,5305,3183,3416,3692,5306,3530,27921,2226,3105,5312,5314,5319,27482,5320,5321,27512,5323,5328,27513,27514,2557,5332,2558], +"pkg-up", +"pkginfo", +"playwright", +"plugin-e", +"rror", +[2,3542,3543], +"plur", +[0,1414,1166,4494,188,4763,2278,89,1177,3127,3721,4039,2203,1894,3824,442,91,5307,4874,29549,27521,19181,5944,9245,30864,3114,27517,27519,5337,25652,1895,27518,30114,5344], +"pluralize", +"pm2", +"pngjs", +"pnp-", +[2,3550,1464], +"pnpm", +"pnpx", +"poe-api-manager", +"polished", +"poli", +"tical-plan-careful", +[2,3556,3557], +"popper.js", +"portfinder", +"postcss", +[3,214,8], +"calc", +[2,3562,3563], +[3,3564,9], +"postcss-cli", +"al-notation", +[2,3046,3567], +[2,866,3568], +[2,3565,3569], +[3,3570,13], +[2,3571,2262], +[3,3570,10], +"nvert-values", +[2,3573,3574], +"ssnext", +[2,3565,3576], +"ustom-media", +[2,3565,3578], +[3,3579,15], +[0,5347,5348,5349,1745,5351,5352,5353,5354,1179,5130,1820,5355,1936,1783,5356,3416], +"ies", +"properties", +[2,3580,3583], +[3,219,8], +"selectors", +[2,3580,3586], +"disc", +"ard-comments", +[2,3588,3589], +[2,3562,3590], +[3,3591,16], +[1,2343,3594], +[0,0,3596,3601,2537], +"es", +[0,5517,11976,811,816,10615,10817,5366,5364,5087,4874,1317,1413,1192,4042,4057,4468,4484,91], +"duplicates", +[2,3592,3597], +"empty", +[2,3592,3599], +[0,1623,57,5374,5376,6892,91,31130,31139,31177,3178,1671,7121], +"overridden", +[2,3592,3602], +"flexbugs-fixes", +[2,3562,3604], +[2,3562,1936], +[3,214,9], +"mage-", +"set-function", +[2,3608,3609], +[2,3607,3610], +[3,3611,10], +[2,3612,1709], +"load-", +"load-config", +[2,3562,3615], +[3,3616,12], +[2,3617,1524], +"hand", +"longhand", +[2,3158,3620], +[2,3562,3621], +[3,3622,14], +"rules", +[2,3623,3624], +[3,3622,9], +"inify-font-values", +[2,3626,3627], +[3,3628,15], +"grad", +[1,2343,3645], +"gradients", +[2,3629,3632], +"params", +[2,3629,3634], +[2,3629,3586], +"odules-local-by-default", +[2,3626,3637], +"nested", +[2,3562,3639], +[3,3640,12], +"ing", +[2,3641,3642], +[3,3640,9], +[0,3654,3655,3690,2537], +"ormalize", +[2,3644,3646], +"-charset", +[2,3647,3648], +[3,3649,18], +"positions", +[2,3650,3651], +[2,3650,1871], +[0,5381,5383,5387,5391,5393,5394,5397,5400,5402,5405,5408,5411,5414,5416,5419,5423,5425,5430,5436,2993,5438], +[0,5441,5446,5450,5452,5453,5456,5458,5461,5464,192,5467,5470,5473,5474,5476,5478,1177,1895,2675,2990,4193,91,5480], +"unicode", +[2,3650,3656], +[3,3657,19], +"rl", +[2,3658,3659], +"whitespace", +[2,3650,3661], +"ordered-values", +[2,3562,3663], +"prefix", +"-selector", +[2,3665,3666], +[2,3562,3667], +[3,3668,11], +"set-", +"set-env", +[2,3669,3671], +"reduce-initial", +[2,3562,3673], +"safe-parser", +[2,3562,3675], +[3,3676,9], +[2,3677,1623], +"or-parser", +[2,1799,3679], +[2,3677,3680], +"vgo", +[2,3677,3682], +"ue-selectors", +[2,3071,3684], +[2,3562,3685], +"value-parser", +[2,3562,3687], +"post", +[0,5483,1117,1745,5484], +"postgrejs", +"posthtml", +"pouchdb", +"power", +"-assert", +[2,3694,3695], +"pre-commit", +"preact", +"prepare-package", +"-plu", +"gin-jsdoc", +[2,3700,3701], +[2,1894,3702], +[3,3703,16], +"organize-imports", +[2,3704,3705], +"packagejson", +[2,3704,3707], +"svelte", +[2,3704,3709], +"prettierrc", +"prett", +"y-bytes", +[2,3712,3713], +"pretty-", +[2,3715,1851], +[2,3715,1671], +"pretty-ms", +"quick", +[2,3715,3719], +"pretty", +"prettyjson", +[1,2343,3728], +"prisma", +"prismjs", +"private-bower", +"proc-log", +[0,3740,0,3748,34352], +"process", +[3,217,8], +"-bar-webpack-plugin", +[2,3730,3731], +"-polyfill", +[2,1862,3733], +"s-aplus-tests", +[2,1862,3735], +"prom", +"o-server", +[2,3737,3738], +[0,5497,5498,5502,5504,2222,5506,4484], +"prompt", +"prompts", +"prop", +"prop-types", +"-information", +[2,3205,3745], +"protobufjs", +[0,5575,2220,89,582,5576,2325], +[2,38087,27470], +"protractor", +"quire", +"proxyquire", +"publish-please", +"pug", +"pull-stream", +"pump", +"punycode", +"puppeteer", +"purgecss", +"q", +"qr-image", +"qrcode-terminal", +"qs", +"query-", +[2,3764,1871], +"query", +"querystring", +"queue", +"-typed", +"queue-typed", +"quill", +"-dom", +"qunit-dom", +"qunitjs", +"raf", +"ramda", +"random-words", +"random", +"randombytes", +[2,3778,1871], +"range-parser", +[1,2343,3785], +"raven", +"raw-body", +[0,3796,3806,3823,2487], +"raw-loader", +"rc-slider", +"rc-tooltip", +"rc-util", +"rcw-plugin", +"react-a", +"ddons-css-transition-group", +[2,3791,3792], +[3,3793,13], +"shallow-", +[0,89,4042,3744,53,5582,87,4232,90,5583,5589], +"compare", +[2,3795,3797], +[2,3794,3798], +"react-ap", +"ollo", +[2,3800,3801], +[2,1897,3733], +[2,1246,1367], +"react-c", +[0,1192,1177,4468,1610,91,5087,4880,2829,1959,1969,1966], +"react-color", +"react-co", +"py-to-clipboard", +[2,3808,3809], +"picker", +"datepicker", +[2,1246,3812], +"react-d", +"ev-utils", +[2,3814,3815], +"react-dnd", +"5-backend", +[2,1868,3818], +[2,3817,3819], +"ocgen", +[2,3814,3821], +[0,5593,1745,1179,89,4978,1283], +"react-dom", +"ropzone", +[2,3814,3825], +"error-", +[2,3827,3473], +[2,1246,3828], +[2,1246,2593], +"react-h", +"ook-form", +[2,3831,3832], +"react-ho", +"t-loader", +[2,3834,3835], +[2,1246,2681], +"react-i", +"react-icons", +"nter", +"section-observer", +[2,3840,3841], +[2,3838,3842], +[1,2343,3851], +[2,28573,26849], +"react-intl", +"react-is", +"lifecycles-compat", +[2,1246,3848], +[2,1246,1783], +[0,3859,3873,2514,2399], +"odal", +"react-modal", +"react-mo", +"tion", +[2,3854,3855], +[2,1246,970], +"-key", +[0,4135,1996,5598], +"-keychain", +[2,3857,3860], +[3,3861,13], +"vector-icons", +[2,3862,3863], +"react-n", +"umber-format", +[2,3865,3866], +"onclickoutside", +[2,1246,3868], +"react-p", +"roperty", +[2,3870,3871], +[0,1680,1177,53,5601,1006,4523,5274,5604], +"x", +"redux", +"react-redux", +"react-re", +[2,3877,2145], +[1,2343,3880], +[0,3892,3896,3907,2523], +"sponsive", +[2,3877,3881], +"react-r", +[2,3883,995], +[2,3884,3772], +[3,3885,13], +[2,3886,3875], +"scripts", +[2,1246,3888], +"react-s", +[2,3890,1799], +[0,56,5611,5292], +"react-slick", +"tyleguidist", +[2,3890,3894], +[0,53,101,5615,5617,5295,5619], +"react-svg", +"tap-event-plugin", +[2,1246,3898], +"react-t", +"est-", +"renderer", +[2,3901,3902], +[2,3900,3903], +"oastify", +[2,3900,3905], +[0,1172,5297,70], +[1,2343,3918], +"react-tools", +"ransition-group", +[2,3900,3910], +"virtualized", +[2,1246,3912], +"reactify", +"strap", +[2,89,3915], +"read", +[0,3920,3464,3465,2399], +"read-pkg", +[0,56], +"read-pkg-up", +"able-stream", +[2,3917,3922], +"line", +"readline", +"-sync", +[2,3925,3926], +"recall-shut-say", +[1,2343,3933], +"recast", +"recently-building-save", +"rechoir", +[0,3934,3464,3465,2443], +[0,56,5631], +"recompose", +"recu", +"rsive-readdir", +[2,3936,3937], +"redoc", +"usaurus", +[2,3939,3940], +"-actions", +[2,3875,3942], +"redux-", +"redux-form", +[2,3944,2942], +"saga", +"redux-saga", +"thunk", +"redux-thunk", +"reflect-metadata", +[1,2343,3953], +[0,3982,3983,3465,2537], +"regenerate", +[3,3954,9], +"or-runtime", +[2,3955,3956], +"rehype", +"-auto", +"-headings", +[2,163,3960], +[2,3959,3961], +[2,3958,3962], +"rehype-", +[3,1202,9], +"links", +[2,3965,3966], +[2,3964,3967], +"mdx-code-props", +[2,3964,3969], +[2,3964,1644], +"raw", +"rehype-raw", +"slug", +"rehype-slug", +"rehype-s", +"tringify", +[2,3976,3977], +"release", +"release-it", +"remap-istanbul", +[0,5637,5222,56,5638,5640], +[0,53,5295,58], +"remark", +[2,3984,20], +"remark-", +"gfm", +"remark-gfm", +"remark-html", +"mermaidjs", +[2,3986,3990], +[2,3986,1644], +"remark-p", +[2,1258,2195], +[2,3993,3994], +[3,3995,14], +"wooorm", +[2,3996,3997], +[2,3986,3958], +"able", +"remarkable", +"replace-ext", +"replace-", +"in-file", +[2,4003,4004], +[1,2343,4011], +"-promise", +[2,705,4007], +"-native", +[2,4008,4009], +[0,3920,3293,3465,2523], +"require-all", +"require-", +"dir", +"require-dir", +[1,2343,4032], +"index", +[2,3209,4017], +"requirejs", +"rese", +"lect", +"reselect", +"resize-observer-polyfill", +"-from", +[2,814,4024], +"resolve-", +"url-loader", +[2,4026,4027], +"rest-chronicle", +"rest", +"restify", +[0,4091,4095,3465,2399], +"restler", +"ore-cursor", +[2,4030,4034], +"rethinkdb", +"rewire", +"rfdc", +"rimraf", +"robot", +"robotjs", +"rollup", +"rollup-p", +"lugin-babel", +[2,4043,4044], +[3,4045,15], +"uble", +[2,4046,4047], +[3,4045,14], +"clean", +"cleanup", +[2,4049,4051], +[3,4052,15], +"ommonjs", +[2,4053,4054], +"dts", +[2,4049,4056], +[2,4049,1781], +"license", +[2,4049,4059], +"builtin", +"builtins", +[2,813,4062], +[2,4049,4063], +[3,4064,19], +[2,4065,2203], +[2,4065,814], +"replace", +[2,4049,4068], +"sourcemaps", +[2,4049,4070], +"terser", +[2,4049,4072], +[3,4073,15], +[2,4074,2528], +[2,4075,1276], +[2,4049,2280], +"visualizer", +[2,4049,4078], +[3,4045,13], +[2,4080,594], +"route", +"routes", +"rsnext", +"rsvp", +"rtlcss", +"run-s", +"equence", +[2,4087,4088], +"@modern-js/utils", +[0,4135,56,5652,5656,5658,5660], +"run-series", +"rx", +"rxjs", +[0,3093,53,5228,97,87,5663,5658,5295], +[1,2343,4114], +"-compat", +"rxjs-compat", +"safe-", +"safe-buffer", +"safe-p", +"ublish-latest", +[2,4101,4102], +"sails", +"salt-type-oldest-faster", +"sand-have-metal6", +"-filename", +[2,2574,4107], +[3,4108,9], +[2,4109,1936], +"sass-loader", +"sat-local", +"sax", +[0,4115,4138,2514,4139], +[0,1593,3957], +"scheduler", +"-doc", +[2,1119,4117], +[2,2844,4118], +"schema-", +[2,4120,594], +"scien", +"ce-knowledge-truth", +[2,4122,4123], +"seblakhotspicy", +"secp256k1", +"seedrandom", +"sele", +"nium-webdriver", +[2,4128,4129], +"semantic-release", +[3,4131,9], +"ui-react", +[2,4132,4133], +"semver", +"seneca", +"sentiment", +[0,1389,1408,5669,4535], +1772323200000, +"sequelize", +[3,1753,9], +"-javascript", +[2,4141,4142], +"serial", +"serialport", +"serve", +"-favicon", +[2,4146,4147], +"serve-", +"serve-index", +[2,4149,2947], +"-destroy", +[2,36,4152], +[1,2343,4194], +"less-finch", +[2,36,4155], +[3,4156,11], +"spy", +[2,4157,4158], +"sha1", +"shallow", +"equal", +[2,4161,4162], +"sharp", +"shell-quote", +"shell", +"shelljs", +"shinning-continued-becoming", +"shortid", +"should", +"showdown", +"shx", +"sick-typical-court7", +"signal-exit", +"simil", +"ar-cheese-loss", +[2,4175,4176], +"-ass", +"i-animation", +[2,4178,4179], +[2,2869,4180], +"simple-", +"simple-git", +"-web", +"-web3", +[2,3742,4185], +[2,4182,4186], +"single-spa", +"sink-mighty-orbit0", +"sink-", +"rod-lamp", +[2,4190,4191], +"sinon", +[0,4197,4198,2514,2537], +"-chai", +"sinon-chai", +[0,4135,5867,5637,5866,56,5656,5658,5676,5788,5850,5761,5797,5222,5660,5816,5640,5809,5812,5838,5769,5793,5823,5852,5756,5766,5790,5856,5863,5712,5715,5771,5778,5842,5741,5743,5830,5859,5757,5241,5810,3218,5820,5827,5835,5853,5751,5759,5821,5865,5764,5846,5785,5754,5825,5862,5782,5700,5749,5806,5832,5818,29299,5800,5813,5678,5685,5694,5690,5776,5688], +[0,53,101,5295], +"sinopia", +"sirv", +"size-limit", +"size", +[1,2343,4222], +"sizeitup", +"skapi-js", +"sky-buy-web3-rock", +"slash", +"slice-ansi", +"slow-deps", +"slow-", +"voice-spell-pass", +[2,4210,4211], +"slugify", +"small-grow-mix4", +"snake-seven-recall-interior", +"snazzy", +"soap", +"socket.io", +"-client", +[2,4218,4219], +"sock", +[0,4240,3464,2514,2537], +"js-client", +[2,4221,4223], +"source", +"-map", +"source-map", +[2,4227,1592], +[3,4228,11], +[2,4229,1194], +"support", +[2,4229,4231], +"space-separated-tokens", +"spectaql", +"speech-section-part-frozen", +"spirit-labor-cheese", +"split", +"split2", +"spring-dust-wall-size", +[0,56,5676,5874,5879,5881,5883], +[1,2343,4244], +"sprintf", +"sprintf-js", +[0,4253,3464,4254,4139], +"sprity", +"sqlite3", +"ssh2", +"ssri", +"st.db", +"stack-", +"trace", +"stack-trace", +[0,4851,56,5676,5889,5241], +[0,5891,91], +"standard", +"-version", +[2,4255,4256], +"star-location", +"star", +"t-server-and-test", +[2,4259,4260], +"stat", +[1,2343,4265], +"statsd", +[0,4269,4281,2514,2537], +"statuses", +"stock-independent-balloon", +"stor", +[0,5896,3093,5898,2102,4232], +"storybook", +"-django", +[2,4270,4271], +"stra", +"iforos-compodoc", +[2,4273,4274], +"nge-lady-riding9", +[2,4273,4276], +[2,3101,3695], +"stream-", +[2,4279,353], +[0,1389,53,5743,5241], +"streamii", +"strftime", +"string-", +"stri", +[1,2343,4297], +"strip-html", +[2,4284,4287], +"width", +[2,4284,4289], +"-entities", +[2,1646,4291], +"strip-", +"strip-ansi", +"bom", +"strip-bom", +[0,0,0,2514,2523], +"comments", +[2,2842,4298], +[2,4293,4299], +"strip", +"stripe", +"strongloop", +"-dictionary", +[2,590,4304], +"style-", +[2,4306,1194], +[1,2343,4313], +"style-to-js", +[3,4309,9], +[2,4310,3048], +"-comp", +[0,4316,0,2514,2523], +"-components", +[2,369,4314], +[0,1593], +"styled-jsx", +"hacks", +"stylehacks", +"stylelint", +"-standard", +[2,607,4321], +[2,4320,4322], +[3,4323,10], +"declaration-strict-value", +[2,4324,4325], +"order", +[2,4324,4327], +"scss", +[2,4324,4329], +[1,2343,4336], +"us", +"stylus", +[2,4333,2091], +"sugar-policeman-entire", +[0,4344,3464,2514,2537], +"sugarss", +"sun-grass-circle0", +"superagent", +"super", +"superjson", +"supertest", +[2,4342,1430], +[0,1676,104,58,5230,5216,51,30873], +"supervisor", +"-vessels-web3-vessels", +[2,4231,4346], +[1,2343,4356], +"lor", +"s-color", +[2,4231,4350], +"surrounded-characteristic-or-rain", +"svelte-", +"check", +[2,4353,4354], +[0,4379,4392,2514,2487], +"rocess", +"preprocess", +[2,4353,4358], +"svg-sprite", +"svgo", +"sw-precache-webpack-plugin", +"swagger-autogen", +"swagger-", +[2,4364,134], +"themes", +[2,4364,4366], +"ui-express", +[2,4364,4368], +"swam-darkness-weak", +"swig", +"swiper", +"sync-request", +"information", +[2,623,4374], +"systemjs", +"tail-iron-became5", +"tail", +[0,5276,5279], +"tailwind", +"-merge", +[2,4380,4381], +"tailwindcss", +"tap", +"tap-", +"spec", +"tap-spec", +"tapable", +"tape", +"tar", +"tar-fs", +[0,58,5216,5274], +"tar-stream", +"tarant", +"-router-express", +[2,3926,4395], +[2,4394,4396], +"tdl", +"tdlib-native", +"tempy", +"terminal-kit", +[3,4401,9], +"menu", +[2,4402,4403], +"pack", +"-plugin", +"pack-plugin", +[2,4184,4407], +[2,4072,4408], +"cutting", +[2,1382,4410], +"snippets", +[2,1382,4412], +"cafe", +"testcafe", +"testc", +[1,2343,4422], +"ontainers", +[2,4416,4418], +"double", +"testdouble", +[0,4424,4429,4442,4139], +"testem", +[0,5923,5927,5930,5931,5934,5935,5936,1512,2075,2088,2070,2822,2832,5941,3105,5944,3107,5946,5949,3112,26767,5953,5956,5961,3135,3257,5963,5966,3725,3754,3758,5969,5971,3348,5975,4747], +"text-table", +"three", +"throttle-debounce", +"thro", +[0,4320,5978,4328], +"through", +"through2", +"w-did-darkness4", +[2,4428,4432], +"thunkify", +"tildify", +"time-grunt", +"tinper-bee", +"tiny-lr", +"tiny", +"bench", +"tinybench", +[0,200,1783,5980,3452,5593,5981,5982,5983,1745,1179], +"tinycolor2", +[1,2343,4458], +"tinymce", +"pool", +"tinypool", +"tinyspy", +"tmp", +"toastify-react-native", +"tocbot", +"toml", +"touch", +"tough-cookie", +"tracer", +"traffic-carry-opinion", +"train-stick-swept7", +[0,4466,4471,4472,2537], +"tree-kill", +"e-leaving-basket", +[2,1333,4460], +"trpc", +"trumpet", +"ts-cache-mongoose", +"ts-japi", +[0,5990,2212,3220,3747,4715], +"est", +"ts-jest", +"ts-loader", +"ts-migrate-mongoose", +[0,1596,1177,1895,1903,1938,1954,1955,1958,1970,4255], +[0,4709,5993,4714,2942,5995], +"ts-morph", +"ts-node", +"ts-patch-mongoose", +[1,2343,4485], +"ts-pnp", +"ts-rule-engine", +"-paths", +[2,2190,4479], +"tsd", +"tsd-lite", +"tshy", +"tslib", +[0,4502,4503,2514,2537], +"nt", +"tslint", +"-config-", +[2,4488,1894], +[2,4487,4489], +"tslint-", +[2,4491,89], +"tsup", +"tsx", +"turndown", +"tv4", +"tweetnacl", +"twemoji", +"twit", +"twitter", +"type-", +[0,6041,4135,1458,6042,1836,2151,6049,3527,1104,6047,4025,6024,6027,6028,6032,6034,6009,6010,6025,6037,3749,6007,6039,6022,6003,6031,6017,6006], +[0,3471,6040,4294,5254], +"coverage", +[2,4501,4504], +[1,2343,4516], +"type-fest", +"typedoc", +"-material-theme", +[2,4508,4509], +"typedoc-", +[2,4511,2475], +[3,4512,15], +[2,4513,1783], +"typedocs", +[0,4518,4519,4527,2537], +"typegen", +[0,6056,6059,449,452,456,1461,3744], +[0,48,53,61,87,90,192,5467,5583,811,816,6061,6063,6065,1009,1011,1178,1251,6066,1177,1947,1959,1961,2675,2990,1894,89,3824,4042,6068,4073,4131,91], +"typegoose", +"typeorm", +"-eslint", +[2,91,4522], +[3,4523,11], +"formatter", +[2,4524,4525], +[0,6070,89,6071,181,6073,4963,6074,6077,6080,6081,6082,4967,6083,6084,4298,6085,6086], +[1,2343,4544], +"css-modules", +[2,1186,4529], +[2,4524,4530], +"typings", +"uglify-es", +"uglify-", +"uglify-js", +"js-webpack-plugin", +[2,2280,4536], +"uid-safe", +"uiw", +"uj-apidoc-core", +"ulid", +"ultrahtml", +"unbuild", +[0,4556,0,4557,2537], +"underscore", +".string", +[2,4545,4546], +"undici", +"unified", +"unique-", +"random-", +"array", +[2,4551,4552], +[2,4550,4553], +"unist-util-visit", +[0,1459,148,185], +[0,6092,1459,6094,6096,6098,6100], +"untildify", +"unusual-rope", +"unzip", +"-notifier", +[2,3076,4561], +"urijs", +"url-", +"join", +"url-join", +"url-parse", +"urllib", +"user", +"user-", +"home", +"user-home", +[1,2343,4574], +[0,4583,0,4642,2487], +"agent", +"useragent", +"utf8", +[2,594,4381], +"uvu", +"valid", +"-url", +"valid-url", +[0,27715,4484], +"-commit-msg", +[2,2649,4584], +[3,4585,9], +[2,3387,1213], +[2,4586,4587], +"vant", +"vary", +"vasync", +"vercel", +"verror", +"vhost", +"victory-mouth", +"viewerjs", +"vinyl", +"vinyl-", +[2,4598,1398], +"vinyl-fs", +"source-", +[2,4601,3101], +[2,4598,4602], +[3,4603,12], +"maps-apply", +[2,4604,4605], +"virtual", +"virtual-dom", +[3,839,12], +"api-", +"api-routes", +[2,4609,4611], +"press", +"vitepress", +"vorpal", +"vows", +"vsce", +"vscode-debugprotocol", +"vscode-", +"nls-dev", +[2,4619,4620], +"mate", +"textmate", +[2,4619,4623], +"vue-", +"class-", +[3,1533,9], +[2,4626,4627], +[2,4625,4628], +[2,4625,67], +"hot-reload-api", +[2,4625,4631], +"vue-i18n", +"vue-loader", +[3,3746,9], +[3,70,9], +[2,4635,4636], +[2,4625,4637], +[2,4625,38], +[2,4625,4307], +[3,1243,9], +[0,6105,6106,6038,1936,6108,6110,1098,6111,6112,6113,4627,6092,1459,6094], +"compiler", +[2,4641,4643], +[2,4625,4644], +"vuex", +"walk", +"walk-sync", +"warning", +"watchify", +"waterline", +"wd", +"web3", +"web3-", +[1,2343,4668], +"web3-be", +"web3-c", +"apital", +[2,4657,4658], +[3,42,8], +"pass", +[2,4660,4661], +"eve-cli", +[2,4654,4663], +"web3-e", +"xactly6", +[2,4665,4666], +[0,4672,0,4557,2523], +"web3-fruit", +"webpack-", +"bundle-", +[0,1459,148,187,153,180,157], +[1,2343,4697], +"analyzer", +[2,4671,4674], +[2,4670,4675], +[2,4670,200], +"dev-middleware", +[2,4670,4678], +[3,4679,12], +[2,4680,36], +"hot-", +[2,4682,2663], +[2,4670,4683], +[2,3097,4406], +[2,4670,4685], +[3,4686,9], +"erge", +[2,4687,4688], +"node-e", +"xternals", +[2,4690,4691], +[2,4670,4692], +"sources", +[2,4670,4694], +"webshot", +[0,4698,0,4557,2523], +[0,1459,182,148,29468,187,153,180], +"websocket", +[1,2343,4701], +[0,4725,0,4557,2537], +"webtorrent", +"webworker-threads", +"weinre", +"whatwg-fetch", +"when", +"which", +"winreg", +"winston", +"-daily-rotate-file", +[2,4709,4710], +"winston-", +"trans", +"transport", +[2,4712,4714], +"wiredep", +"word-wrap", +"word", +"wrap", +"wordwrap", +"work", +"box-webpack-plugin", +[2,4721,4722], +"world-toy-kill", +[0,1459,182,148,6127,29468,187,180], +"wrap-ansi", +"wrench", +"write-file-atomic", +"ws", +"x-ray", +"xhr", +"xml-", +"xml-js", +"xml2js", +"xml2json", +"xmlbuilder", +"xmldom", +"xmlhttprequest", +"xpath", +"xregexp", +"xss", +"xstate", +[1,2343,4773], +"xterm", +"yaml", +"yamljs", +"yargs", +[2,4747,1574], +"yarn", +"pkg", +"yarnpkg", +"yarnrc", +"yauzl", +"yeoman-environment", +"yeoman-", +[2,4755,1179], +"yn", +"yo", +"yoctocolors-cjs", +"yonode", +"yosay", +"zmq", +"zod", +"zod-", +"chemas", +[2,2666,4765], +[2,4764,4766], +"zombie", +"zone.js", +"zuul", +[2,667,1651], +[2,672,4406], +[0,4792,0,4801,2523], +"@nx/jest", +[2,667,4270], +"framer-motion", +"teajusgula", +"@mui/s", +"tyle", +"d-engine", +[2,4779,4780], +[2,4778,4781], +"jsdoc-parse", +"@comm", +"ercetools-frontend/constants", +[2,4784,4785], +"shift", +"downshift", +[3,3605,9], +"ocus-visible", +[2,4789,4790], +[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6133,111,174], +[2,3388,4794,4963], +[3,18878,12], +[3,1705,9], +[2,4795,3582], +"devDependencies", +"keywords", +"ts", +[2,4837,686], +[0,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130,6148,6092,1459,6094], +[3,3,7], +"field", +[2,4802,4803], +[2,4802,3473], +[2,4802,2649], +"@types/", +[2,4807,3911], +"big.js", +[3,1849,9], +"lement-equals", +[2,4810,4811], +[1,2343,4918], +"adaptor-generate", +[2,4802,4814], +[3,4815,15], +[2,4816,1383], +"@alifd/a", +"pi-extractor", +[2,4818,4819], +[2,1262,3286], +[2,4802,4821], +[2,1910,57], +[2,4802,4823], +"@alifd/d", +"ts-generator", +[2,4825,4826], +[2,1884,3286], +[2,4802,4828], +"meet-react", +[2,4802,4830], +"sass-", +"mapper", +"sass-mapper", +[2,4802,4834], +[3,4835,12], +[3,4793,38], +[2,4867,4924], +"tracker", +[2,4836,4839], +[3,4835,11], +[2,4841,4823], +"@alifd/s", +"lint-co", +"-next", +"nfig-next", +[2,4844,4846], +[2,4779,4847], +[2,4843,4848], +[3,81,21], +[2,4850,1219], +[2,4807,1175], +"@types/b", +"ig.js", +[2,4853,4854], +"@types/chai", +"@types/c", +"lassnames", +[2,4857,4858], +"@types/co", +"@types/e", +"nzyme", +[2,4861,4862], +[2,4807,2151], +"@types/glob", +[2,4807,2720], +[3,4793,25], +"jsonp", +[2,4807,4868], +[2,4807,1209], +".clonedeep", +[2,4870,4871], +"@types/md5", +[2,4807,202], +[2,4807,3564], +[3,4875,16], +"ustom-", +[2,4877,3583], +[2,4876,4878], +[3,4808,12], +[3,4808,13], +[2,4881,1582], +[2,4881,965], +[2,4881,3875], +[3,4884,14], +"outer-dom", +[2,4885,4886], +[3,4808,14], +[2,4888,3903], +[2,4807,4320], +[2,4807,2924], +[2,4807,4747], +[3,1203,14], +"spower", +[2,4893,4894], +[2,2168,1894], +[2,1199,4896], +[3,1245,30], +[2,4898,3426], +"proto", +"-to-assign", +[2,4900,4901], +[2,1226,4902], +"displayname", +[2,1861,4904], +[2,1249,4905], +[2,3195,2874], +"e-polyfill", +[2,1557,4908], +"css-s", +"plit-webpack-plugin", +[2,4910,4911], +[2,1863,3733], +[3,1924,15], +"ypress", +[2,4914,4915], +[2,2068,4111], +[0,4943,0,4801,2537], +"html5shiv", +[3,2925,9], +"driver-launcher", +[2,4920,4921], +[2,3108,588], +"ssets", +"mochawesome", +"-package-importer", +[2,3342,4926], +[2,3388,16690,4935], +"react-axe", +"ropper", +[2,3805,4930], +"react-dr", +"aggable", +[2,4932,4933], +"c-app", +"ve", +"react-live", +"true", +"sass-true", +"simulate-event", +"solarlunar", +[3,4323,17], +[0,182,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6133,111,174], +[2,4950,4951], +"recommended", +[2,4942,4945], +[3,4323,11], +"sstree-validator", +[2,4947,4948], +[3,662,27], +"dev-authentication", +"ts-mocha", +[1,2343,4969], +[2,4950,4956], +"tsconfck", +[3,25922,13], +"fusion", +" design", +[2,4957,4958], +"ui toolkit", +"mponents", +[2,3808,4961], +"components", +"design", +"front", +"end", +"frontend", +[2,4970,4971], +[0,4979,0,4983,2537], +[3,4786,14], +"/http-user-agent", +[2,31787,4980], +"Angular CLI", +"Angular ", +"DevKit", +[2,4974,4975], +"devkit", +"sdk", +[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6158,111,174], +"cli-lib", +[2,812,2220], +"@svgr/babel-preset", +[0,6148,6092,1459,6094,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130], +"blue", +[2,4807,4676], +"blueprints", +" generation", +[2,1501,4987], +"scaffolding", +"tool", +"tooling", +[2,1030,4993], +"-swc", +[1,2343,4998], +[2,5559,705], +[2,4997,4999], +"moment-loca", +[0,5003,0,4983,4139], +[3,8303,18,2], +"svg-url-loader", +"development", +"thread-loader", +[0,6164,164,167,137,159,177,162,180,157,140,6166,171,116,150,155,122,169,119,146,111,6168,174], +[1,2343,5005], +[0,5006,0,4983,4139], +[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,6173,146,111,174], +[1,2343,5008], +[0,5011,0,4557,2487], +[2,4807,4996], +[2,6776,1987], +[0,6178,1459,16485,182,148,29468,159,187,153,185,146], +"@jridgewell/sourcemap-codec", +[1,2343,5014], +[0,5015,0,4557,2537], +[0,1459,182,148,29468,159,187], +[1,2343,5017], +[0,5018,0,4557,4139], +[0,16485,182,148,187,153,191], +[1,2343,5020], +[0,5021,0,5022,2487], +[0,1459,148,187], +[0,6092,1459,6094,6192,6100], +[1,2343,5024], +[0,5025,0,5026,2443], +[0,16485,182,187,153,6200], +[0,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130,6092,1459,6094,6192,6100], +[2,29,4958], +[1,2343,5029], +[0,5030,0,4557,4139], +[0,1459,148,187,185,146], +[1,2343,5032], +[0,5033,0,5026,2399], +[0,16485,187], +[1,2343,5035], +[0,5036,0,4557,2537], +[0,1459,182,148,6215,6127,180,143,6217], +[1,2343,5039], +"xhr2", +[0,5040,0,4557,2399], +[0,1459,182,148,29468,187,153,171], +[1,2343,5042], +[0,5043,0,4557,2523], +[0,1459,16485,182,148,6215,29468,187,153,180,185,191,143], +[1,2343,5045], +[0,5046,0,4557,4139], +[0,1459,182,148,167,29468,187,153,157], +"@bang88/react-native-ultimate-listview", +[3,444,19], +[2,5048,970], +"@rc-component/mini-decimal", +"@types/s", +[1,2343,5053], +[0,5072,0,4557,2443], +"hallowequal", +[2,5051,5054], +"with", +[2,3023,5056], +"css-color", +[2,3370,5058], +"rc-field-form", +"codegen", +[2,3862,5061], +[3,5062,15], +"llapsible", +[2,5063,5064], +"modal", +"-popover", +[2,5066,5067], +[2,3862,5068], +"ity-types", +[2,614,5070], +[0,1459,16485,182,148,29468,159,187,153,180,191,143], +[2,2809,4009], +[2,45,5073], +[2,41,5074], +[2,41,2041], +"@rea", +"ct-native-community/eslint-config", +[2,5077,5078], +[3,5079,9], +"vigation/native", +[2,5080,5081], +[3,5082,18], +[2,5083,2873], +[2,972,4009], +"@types/j", +"@types/jest", +"@types/p", +"rop-types", +[2,5088,5089], +[2,4881,970], +[3,1113,11], +"palettes", +[2,5092,5093], +"-demo-data", +[2,701,5095], +[2,1114,5096], +"bisheng", +[1,2343,5101], +"enquire.js", +[0,5126,0,4557,2537], +"jsonml.js", +"metro-react-native-babel-preset", +[3,3822,9], +"ument-title", +[2,5104,5105], +[3,2197,13], +[2,1246,5107], +"gesture-handler", +[2,3862,5109], +[3,5069,15], +"cker", +[2,5111,5112], +"reanimated", +[2,3862,5114], +"area-context", +[2,4099,5116], +[2,3862,5117], +[3,5118,14], +"creens", +[2,5119,5120], +"web", +[2,3862,5122], +"shell-", +[2,5124,594], +[0,1459,182,148,6164,6127,29468,187,153,180,143], +"ant", +[3,4962,15], +"frame", +"framework", +"mobile", +" native", +[2,89,5132], +[1,2343,5135], +[0,5136,0,4557,2537], +[0,1459,182,148,6215,29468,187,153,180,191,143], +[1,2343,5138], +[0,5140,0,4557,2537], +[2,4870,3020], +[0,182,148,29468,187,153], +[1,2343,5142], +[0,5143,0,4557,2487], +[0,1459,148,153,143], +[1,2343,5147], +[3,5075,17], +"@inline-svg-unique-id/react", +[0,5148,0,5149,4139], +[0,27715], +[0,6105,6106,6038,1936,6108,6110,89,5128,6092,1459,6094], +[1,2343,5151], +[0,5163,0,4557,2487], +[2,3670,1575], +[2,5928,5155], +"@auth/core", +"junit-xml-formatter", +"adapt", +"er-auto", +[2,5156,5157], +[2,836,5158], +[2,836,3383], +"et-cookie-parser", +[2,5051,5161], +[0,1459,16485,182,148,29468,187,153,191,143], +"entication", +[2,1303,5164], +"authjs", +"sveltekit", +"oidc", +"wordless", +[2,4661,5169], +[1,2343,5172], +[0,5173,0,4557,2443], +[0,16485,148,187,153], +[1,2343,5177], +"fs-readdir-recursive", +[3,5012,12], +[0,5181,0,5022,2443], +"-mapping", +[2,4251,5178], +[2,5176,5179], +[0,16485,6268,6271,6272,28829,148,29468,187,153,15716], +[3,4864,10], +"dir-recursive", +[2,3917,5183], +[2,5182,5184], +[3,56,14], +"fixture", +"-test-runner", +[2,5187,5188], +[2,1221,5189], +[2,5186,5190], +[2,5195,5196], +"6to5", +"es6", +[3,7710,11], +"ut-extension", +"transpile", +"transpiler", +[1,2343,5201], +[2,7623,671], +[0,5202,0,5022,2443], +[0,148,187], +[1,2343,5205], +"ighlight", +[0,5206,0,5022,2537], +[0,16485,182], +"meta", +"-resolve", +[2,5207,5208], +[2,2701,5209], +[1,2343,5212], +[0,5213,0,5214,2537], +[0,27715,3021], +[0,6105,6106,6038,1936,6108,6110,188,6284,6285,6287,6092,1459,6094], +"@ampproject/remapping", +[2,54,1179], +"compil", +"ation", +"-targets", +[2,5218,5219], +[2,5217,5220], +[2,5186,5221], +"module-", +[2,353,591], +[2,5223,5224], +[2,5186,5225], +[3,56,13], +[2,5227,591], +"emplate", +[2,102,5229], +[1,2343,5232], +[0,5234,0,5022,2537], +"gensync", +[0,16485,182,148,6127,29468,187,153,180], +[2,4850,2124], +[3,83,24], +"flow-", +[2,4293,553], +[2,5237,5238], +[2,5236,5239], +[2,5236,1239], +"nvert-", +[2,5242,4227], +[2,4860,5243], +[2,4807,1676], +"@types/g", +"ensync", +[2,5246,5247], +[3,4808,9], +"solve", +[2,5249,5250], +[3,5162,9], +"mver", +[2,5252,5253], +[1,2343,5262], +"classes", +"const", +"harmony", +"let", +"modules", +"var", +[0,5263,5264,5265,2523], +[0,6297,6298,6301,6302,6303,26379,4747], +[0,6306,6307,6498,4874,4892,2151,6476], +[0,1566,1529,200], +[1,2343,5267], +[0,5268,0,5269,2523], +[0,7,53,5830,87,6316,6318,31736,1364,6320,1448,1457,1512,1525,1595,6323,1866,2061,2071,2151,2070,2036,2626,2681,2856,1209,3079,6326,6327,3127,3183,5732,6330,6331,3527,23802,3725,4135,4200,5969,6334,4473,3348,6335], +[0,6111,1098,1745,4963,1237,2218,4796,1783], +[1,2343,5280], +[3,5222,15], +"heck-duplicate-nodes", +[2,5271,5272], +[2,5186,1182], +[2,4284,57], +[2,5186,5275], +"-identifier", +[2,1155,5277], +[2,5186,5278], +[0,5283,0,5288,2537], +"codes", +"charcodes", +[0,6343,2700], +"javascript", +"tc39", +"ecmascript", +"skia-canvas", +[0,6345,6346,5130,2018,6347], +[1,5293,5296], +"@egjs/flicking", +"reate-class-features-plugin", +[2,5271,5291], +[0,8389,4799], +[3,56,21], +[2,5294,1187], +[0,8391,5298], +[3,1198,12], +1732406400000, +[1,5293,5300], +[0,8391,5301], +1733011200000, +"moo", +"luxon", +"hamljs", +"liquidjs", +"iso-639-1", +"@iarna/toml", +"-urls", +[2,3692,5308], +[3,3938,10], +[2,5310,1585], +"bcp-47-normalize", +[3,1705,11], +[2,5313,2218], +"@11ty/", +"lodash-", +"custom", +[2,5316,5317], +[2,5315,5318], +"please-upgrade-node", +[2,62,3007], +[2,5313,1633], +[2,5315,5322], +"@sin", +"dres", +"orhus/slugify", +[2,5325,5326], +[2,5324,5327], +[3,5321,15], +"dev-", +[2,5330,36], +[2,5329,5331], +[1,2343,5345], +"@vue/", +"server-", +[2,5335,3902], +[2,5334,5336], +"plugin-vue", +[2,5329,5338], +[3,5339,22], +"syntax", +[3,2600,9], +[2,5341,5342], +[2,5340,5343], +[0,5350,5358,5359,34352], +"-site-generator", +[2,2947,5346], +[3,5347,11], +"ssg", +[0,2626], +"website", +"jekyll", +"blog", +"templates", +"11ty", +"liquid", +"haml", +[0,48,53,87,37046,6371,27928,6372,5583,811,816,6373,11275,1165,1367,6375,6376,1492,1610,1177,1907,1937,1938,1982,6379,2203,2205,6382,2626,6383,2739,2765,2814,2297,2876,2881,6385,2889,2895,2898,6387,2910,3019,3363,3400,3561,3566,6389,4039,4042,6390,21688,4939,4167,4320,6392,4072,6393], +[0,1623,2278,6396,6398,6400,5130,5122], +[1,2343,5361], +[0,0,0,5372,2537], +"parcel", +"ytes", +[2,4853,5363], +"enchmark", +[2,4853,5365], +"@parcel/packager-ts", +"@parcel/", +"er-typescript-types", +[2,353,5369], +[2,5368,5370], +[0,1623,57], +[1,2343,5377], +"stringifier", +"heet", +"stylesheet", +[0,0,0,5378,2487], +[0,1623,207], +[1,2343,5380], +[0,0,0,5426,2537], +"@advanced-rest-client/arc-icons", +[3,5381,26], +[2,5382,3127], +[3,5381,22], +"-copy", +[2,1492,5385], +[2,5384,5386], +"-snippets", +[2,1501,5388], +[2,2655,5389], +[2,5384,5390], +[2,3115,592], +[2,5384,5392], +"@anypoint-web-components/anypoint-button", +[3,5394,34], +"collapse", +[2,5395,5396], +"drop", +"dropdown", +[2,5395,5399], +"item", +[2,5395,5401], +"box", +"listbox", +[2,5395,5404], +[3,64,17], +"mf-helper-mixin", +[2,5406,5407], +[3,64,20], +"annotation-document", +[2,5409,5410], +"body-", +[2,5412,1746], +[2,5409,5413], +"example-generator", +[2,5409,5415], +"ers-document", +[2,3193,5417], +[2,5409,5418], +"param", +"eters-document", +[2,5420,5421], +[2,5409,5422], +"responses-document", +[2,5409,5424], +[0,1623,6415,57], +"umentation", +[2,4117,5427], +[2,1965,5428], +[2,5409,5429], +[3,64,16], +"method-", +"label", +[2,5432,5433], +[2,2655,5434], +[2,5431,5435], +[1,2343,5448], +"lit-html", +[2,7623,594], +"demo-helper", +[2,5382,5440], +"-aut", +"horization", +[2,5442,5443], +[2,3424,5444], +[2,5384,5445], +[3,5397,35], +[0,5481,0,5485,2537], +"heckbox", +[2,5447,5449], +[3,5402,35], +[2,5451,1020], +[2,5395,592], +[3,64,21], +"odel-generator", +[2,5454,5455], +"navigation", +[2,5409,5457], +[3,5425,22], +"quest", +[2,5459,5460], +[3,5430,22], +"rver-selector", +[2,5462,5463], +[3,192,13], +"onfig-conventional", +[2,5465,5466], +"@open", +"-wc/eslint-config", +[2,5468,5469], +[3,5470,9], +"testing", +[2,5471,5472], +"@web/dev-server", +"@web/", +[2,5475,1187], +"-playwright", +[2,5476,5477], +[2,5438,4406], +[2,4524,5479], +[0,220,3681], +"api-co", +[2,5482,4961], +[2,5432,1745], +[0,1623,2741,6421,6422,3561,6425,6426,3585], +[1,2343,5487], +[0,5488,0,5492,34352], +[0,3688], +[3,465,9], +"typed", +[3,5428,9], +[0,1623,5317,6433,3561,6425,6434,3583,6435,6436,6437], +[1,2343,5503], +"-node/core", +[2,5491,5494], +[2,5490,5495], +[2,5489,5496], +"@wry/caches", +"@wry/", +"@hapi/eslint-plugin", +"equality", +[2,5499,5501], +[0,0,0,5507,2537], +"@wry/trie", +"optimis", +"optimism", +[0,1623,3681,6443], +"response", +"-iterator", +[2,5508,5509], +"symbol", +"-observable", +[2,5511,5512], +"ts-invariant", +"zen-observable-ts", +[1,2343,5524], +"@arethetypeswrong/cli", +[3,107,13], +"hange", +"log-github", +[2,5519,5520], +[2,5518,5521], +[3,5497,10], +[0,5538,5539,5543,2523], +"ools/merge", +[2,5523,5525], +[3,5526,15], +[2,5527,2844], +[2,5527,594], +"@size-limit/esbuild-why", +[3,5530,12], +"pres", +"et-small-lib", +[2,5532,5533], +[2,5531,5534], +"@tsconfig/node20", +"@types/f", +[0,6450,6452,6453,5930,6455,6457,5153,6463,6465,30874,6467,6470,6471,1437,1483,1525,1676,6473,2089,2070,6474,2709,2744,2753,6475,3060,6476,5303,3171,3188,3261,3730,27168,4135,6479,4351,4507,6481,4745,6482], +[0,6487,6488,19438,19181,442,603,826,4856,5245,6493,6494,4864,6497,6309,6498,6501,6503,6505,6507,4874,6510,5254,6512,6515,6519,6520,1009,1011,1429,6522,1509,6525,1719,1177,1938,1953,1982,2026,2151,6526,2899,3257,3421,1894,6527,4172,4193,4196,6530,4449,4474,4481,4508,91], +[2,4807,2609], +"-fetch", +[2,4874,5541], +[0,5472,5982,1649,6532,6533], +[1,2343,5548], +"use-sync-external-store", +[2,4807,5545], +"rule", +[0,5549,5553,5565,2537], +[0,1415,1437,1468,1483,2151,4468], +"rule-tester", +[2,1010,5550], +[2,1010,553], +[0,192,5467,4864,4866,5087,6541,6544,6547,1009,1011,1109,1481,1836,1177,1895,1955,2675,1192,6551,3165,3203,3403,1894,6552,6554,91], +"local-", +"local-rules", +[2,1921,5555], +[3,1961,20], +[2,5557,4643], +"graphql-", +"graphql-ws", +"patch-package", +[3,3829,12], +"boundary", +[2,5562,5563], +[0,6557,1745], +[1,5293,5567], +[0,8391,5568], +1730419200000, +"ts-api-utils", +[3,1913,9], +[2,4468,5570], +"wait-for-observables", +"web-streams-polyfill", +[1,2343,5577], +"apollo", +"client", +[0,0,0,2514,2537], +[1,2343,5579], +[0,0,0,2514,2487], +[1,2343,5590], +[3,66,10], +[2,5581,57], +[2,812,1172], +[3,1217,14], +"ource", +"-support", +[2,4226,5586], +[2,5585,5587], +[2,5584,5588], +[0,0,0,2514,2443], +[1,2343,5594], +"api", +"asyncapi", +[0,5595,5596,5597,4139], +[0,5192,27292,7605,5439,1437,1448,1623,7606,7608,7610,2822,1209,3105,5946,7612,7617,3124,7621,29457,4110,4213,4361,11143], +[0,7624,5200,7631,7632,7634,7637,4870,7639,7641,4874,7643,7677,23203,1165,668,7645,2600,26503,7648,3400,3561,3672,2278,26573,91,1984], +[0,1783,7650,1739,7651,1745,4990,2041,1179], +"@nicolo-ribaudo/eslint-scope-5-internals", +[1,2343,5605], +[3,1006,9], +[2,5600,671], +"-manager", +[2,1993,5602], +[2,1010,5603], +[0,5606,5607,5608,34352], +[0,4484,4548,7658,7660,7663,7664,7665,7668,7669], +[0,4493,7671,1177,1984,1894,1610,91,4874,7672,7674,7677,7678,7681,7685,7690], +[0,1721,5592,4030,7692,7693], +[3,81,22], +"ecorators", +[2,5609,5610], +[1,2343,5620], +[3,1143,16], +"concat", +[2,5613,5614], +"polyfill-es-shims", +[2,1199,5616], +"getownpropertydescriptors", +[2,3436,5618], +[0,5621,5622,5623,2537], +[0,1525], +[0,2899,1894], +[0,553,4532,1776,605,4508,1739,1745,7701], +[1,2343,5626], +[2,4850,72], +[0,5627,5628,5597,2523], +[0,7708,7709,7710,7715,7718,7721,354,7723,7725,4865,7729,7730,1091,1149,1168,7731,1437,1759,2075,2070,2600,2628,2670,2822,2854,3173,3181,3322,4167,4183,4213,4393,7734,7735,4648,4747], +[0,7737,7740,7744,7637,4870,7746,4874,7749,7752,4892,1009,1011,1178,668,1177,1966,2675,2990,1209,4468,4474,91], +[1,2343,5632], +[3,5625,28], +[2,5630,75], +[0,5633,5634,5597,2487], +[0,7605,1437,7608,7610,2822,1209,3105,5946,7612,7615,7617,3124,7621,4110,4213], +[0,53,5241,87,7634,5087,7637,4870,7639,7641,7759,4874,7643,7761,7762,7763,1165,1178,668,7645,1177,1966,2600,1192,7648,3561,3672,1894,3957,4468,91], +[1,5293,5641], +"mpat-data", +[2,52,5636], +[2,4850,77], +[3,5422,10], +[2,5236,5639], +[0,8391,5642], +1734825600000, +[1,2343,5644], +[0,5645,5646,5647,2537], +[0,5328,842,975,7788,1364,1437,1470,1536,7791,2040,2075,2141,7793,7794,2600,2856,3105,5944,3107,5946,7796,7797,3322,3742,2278,7798,7799,4227,4228,4232,7800,3709,3348,7801], +[0,192,5467,6061,6063,7804,7806,7808,7810,4864,7639,7641,4874,7812,7814,7816,7819,7822,1009,1011,1414,7824,2151,2675,3758,3951,4131,91], +[0,38,5995,27,5130,7826,7827,7828], +[1,2343,5649], +[0,5654,5661,5664,2399], +[3,5226,21], +"imports", +[2,5650,5651], +[3,5617,22], +[0,7833,7837,7839,7840,19344,7847,842,7858,1165,1393,1628,1630,1177,1895,1955,1959,1961,2203,2675,16860,3177,3561,3618,3678,2278,4111,4307,4320,4323,5978,7873,4409,2924,4677,4686,4689], +"corejs2", +[2,5653,5655], +[3,5656,28], +[2,5657,1278], +[3,3957,11], +[2,5653,5659], +[0,7849,2990], +[3,99,21], +[2,5662,1278], +[0,4967,4329,7880,676,6435,1237,7881], +[1,2343,5667], +"@edsdk/n1ed-react", +[0,5668,5670,5671,34352], +[0,7639,1429,1437,3025,3105,3467,3718], +"derequire", +[0,27134,4856,7889,4874,7895,2675,2990,1894,91,1984], +[0,1804,1739,1745,5592,91,7897,7900], +[1,2343,5673], +[0,5703,5705,5708,2523], +[3,5279,24], +"option", +[2,5674,5675], +"bugfix-firefox-class-in-computed-class-key", +[2,79,5677], +[3,5678,21], +"safari-", +"-initializer-scope", +[2,4803,5681], +[2,4626,5682], +[2,5680,5683], +[2,5679,5684], +[3,5685,28], +"id-destructuring-collision-in-function-expression", +[2,5686,5687], +"v8-spread-parameters-in-optional-chaining", +[2,5679,5689], +[3,5690,25], +"-class-fields-redefine-readonly", +[2,3346,5692], +[2,5691,5693], +"private-", +[3,3746,11], +"-object", +[2,5696,5697], +[2,5695,5698], +[2,69,5699], +"generators", +[2,1152,5701], +[0,5652,97,7905,7907,7910,7913,1573,1874,7915,4227,7917], +[2,4850,1229], +[0,53,7922], +"static-", +[2,5706,1359], +[0,592,1832,89,1623,7165], +"ions", +"assertions", +[2,2701,5710], +[2,4850,5711], +[3,5712,29], +"ttributes", +[2,5713,5714], +[3,5712,28], +[2,5716,5207], +[1,2343,5719], +[0,5720,5722,5708,2537], +[0,362,7931,7910,7932,7933], +"logical-assignment-operators", +[0,7935,91], +[1,2343,5724], +[0,5725,5726,2514,2523], +[0,97,362,7943,7910,7946,7933], +[0,7935,7948,89,91], +[1,2343,5729], +"meric-separator", +[0,0,0,2514,4139], +[1,2343,5733], +"ptional-catch-binding", +"neotraverse", +[0,5735,5794,5795,2523], +"haining", +[0,1996], +[2,4850,5699], +"top-level-await", +[2,4850,5737], +"-sets-regex", +[2,3656,5739], +[2,4850,5740], +"arrow-functions", +[2,5236,5742], +[3,5743,25], +"sync-", +[3,1626,9], +[2,2168,5746], +[2,5745,5747], +[2,5744,5748], +[3,5749,30], +[2,5750,1222], +"-scoped-functions", +[2,1359,5752], +[2,5236,5753], +[3,5754,34], +[2,5755,3642], +[2,5236,1229], +[3,5757,30], +[2,5758,5707], +[3,5757,29], +[2,5760,3595], +[3,5757,25], +"omputed-properties", +[2,5762,5763], +"destructuring", +[2,5236,5765], +[3,5766,25], +"otall-regex", +[2,5767,5768], +"uplicate-keys", +[2,5767,5770], +[3,5771,34], +"named-", +"capturing-groups-regex", +[2,5773,5774], +[2,5772,5775], +"ynamic-import", +[2,5767,5777], +"expo", +"nentiation-operator", +[2,5779,5780], +[2,5236,5781], +[3,5782,28], +"rt-namespace-from", +[2,5783,5784], +[3,5240,25], +"or-of", +[2,5786,5787], +"unction-name", +[2,5786,5789], +[3,2854,11], +[2,5791,591], +[2,5236,5792], +[0,1414,2931,2899,8099,1177,3456,4039,4042,4135,8098,1894,4614,91,3401,5601,1006,17529,4057,5552,4071,1011,8097], +[0,1177], +"literals", +[2,5236,5796], +[3,5797,25], +"ogical-assignment-operators", +[2,5798,5799], +[3,5241,25], +"ember-", +"ion-literals", +[2,2026,5803], +[2,5802,5804], +[2,5801,5805], +[3,5241,32], +"amd", +[2,5807,5808], +[2,5807,4376], +"umd", +[2,5807,5811], +[2,5236,5775], +[3,5813,25], +"ew-target", +[2,5814,5815], +"ullish-coalescing-operator", +[2,5814,5817], +[3,5818,26], +[2,5819,5728], +[2,5236,77], +[3,5821,31], +[2,5822,4340], +[3,5821,25], +[2,5824,5731], +[3,5825,34], +[2,5826,5734], +[3,5640,25], +"rivate-methods", +[2,5828,5829], +[3,5830,32], +[2,5831,5698], +[3,5830,26], +"operty-literals", +[2,5833,5834], +[3,83,25], +"egenerator", +[2,5836,5837], +[3,5838,26], +"d-words", +[2,4146,5840], +[2,5839,5841], +"short", +[2,3619,1228], +[2,5843,5844], +[2,5236,5845], +[3,5846,25], +[1,2343,5868], +"pread", +[2,5847,5849], +"ticky-regex", +[2,5847,5851], +[2,5236,1243], +[3,5853,25], +"ypeof-symbol", +[2,5854,5855], +"unicode-", +[2,5857,1106], +[2,5236,5858], +[3,5859,32], +[2,4635,1108], +[2,5860,5861], +[2,5860,1108], +"sets-regex", +[2,5860,5864], +[2,88,5260], +[2,1593,4097], +[0,0,0,5869,2523], +[0,5284,6939,1177], +[1,2343,5871], +[0,5872,5884,5885,2537], +[0,8110,1461,8111,1757,2017,8113,6327,8114,3127,3191,8116,3502,8119,3555,3725,3744,8122,4213,8123,8126,8127], +"act-jsx", +[2,5839,5873], +[3,5874,30], +"display", +"-name", +[2,5876,5877], +[2,5875,5878], +"-development", +[2,5874,5880], +"pure-annotations", +[2,5875,5882], +[0,8129,8130,8132,4856,8136,4863,8139,5087,8141,8144,8146,8147,4874,8149,5090,4880,4883,8152,8155,4891,8157,4892,1009,1011,8158,1311,1567,1584,1593,1596,1628,1651,1843,8160,8161,1177,1938,1959,1961,2135,2651,2675,1192,2822,8163,8165,3190,3471,1894,3720,3775,89,3824,3836,4039,4167,4201,4307,4315,4468,4474,4484,91,8166,1002,2924,4677,4681,4693], +[0,8168,8170,8171,6975,8172,8173,1745,8175], +[1,2343,5887], +[0,5890,5892,5893,2537], +[3,5856,28], +[2,5888,1508], +[0,8181], +[3,1261,12], +[0,90,972,4880,4883,1030,89,3824,8187,1541], +[0,8190,8191,5399,4403,8192,8194,89,3824], +[1,2343,5895], +[0,0,0,5897,2537], +"pirates", +[0,8199,2414,8201,8203,6941,8204,1623,2278,6400,5122,8206,6884], +"clone-deep", +[1,2343,5900], +[0,0,0,5901,34352], +[0,8199,2414,8201,8203,447,8211,1623,2278,6400,5122,8206,6884], +[1,2343,5903], +[0,5904,0,5905,4139], +[0,8218], +[0,2414,7176,8220,1017,8221,1367], +[1,2343,5907], +[0,5904,0,5905,2537], +[1,2343,5909], +[0,0,5910,5911,2487], +[0,53,8229,87,90,92,192,5467,442,449,7008,452,6061,21120,6063,966,968,972,5087,4880,4883,1393,1423,1570,1610,1177,1895,1938,1939,1947,1955,1959,1961,1976,1982,2203,2675,1192,2780,1894,3720,89,3824,4039,4131,4468,4474,4493,91,4523], +[0,8220,2132,89,5284,8221,45], +[1,2343,5913], +[0,5914,5916,5918,34352], +[0,3951], +"to-fast-properties", +[0,5087,4874,1009,1011,1177,1879,1883,1895,1938,1939,1947,1955,1192,2794,1894,4468,4469,4474,4508,91], +[2,29288,594], +[0,91,5130,36,5995,3469], +[1,2343,5920], +[0,5937,5958,5964,4139], +"@api", +"devtools/json-schema-ref-parser", +[2,5921,5922], +[3,105,13], +"web-", +[2,5925,4963], +[2,5924,5926], +[3,221,10], +"gherkin-streams", +[2,5928,5929], +"@iframe-resizer/child", +[3,5931,16], +"parent", +[2,5932,5933], +"awilix", +"bpmn-js", +[0,8245,457,1804,8248], +"of", +"-allof", +[2,4381,5939], +[2,2845,5940], +[3,3107,13], +"bbr", +[2,5942,5943], +"ttrs", +[2,5942,5945], +[3,3112,14], +"detabs", +[2,5947,5948], +"multim", +"d-table", +[2,5950,5951], +[2,3108,5952], +[3,4923,13], +"lantuml-ex", +[2,5954,5955], +"task", +[0,8252,4874,1009,1011,1610,1804,8256,1177,1879,1883,1895,1938,1947,1955,1894,4469,4474,4508,91], +"-lists", +"task-lists", +[2,3108,5960], +"-viewer-element", +[2,3512,5962], +[0,91,5130,1804,36,5995], +[1,2343,5976], +"prince", +"svg-", +"pan-zoom", +[2,5967,5968], +[3,4369,11], +[2,5970,1724], +"reso", +"urce-inliner", +[2,5972,5973], +[2,5925,5974], +[0,5979,5916,5984,34352], +"-scss", +[2,4323,5977], +[0,457,8263,8264,24156,1364,2863,3951], +"md", +"bpmn", +"bdd", +"feature", +[0,91,5130,2026,3469,36,5995], +[1,2343,5986], +[0,5987,5988,5991,2487], +[0,31740,8271,8272,8273], +[0,8275], +"exit-hook", +[2,1152,5989], +[0,2220,8277,1745,1783,8278], +[1,2343,5994], +"loki", +[0,5996,5997,5998,2523], +"backend", +[0,32359,6446,8273,8272], +[0,8286,8275], +[0,467,2220,8277,1745,1932,1783,8278], +[1,2343,6012], +[3,107,12], +"y-release-plan", +[2,1133,6001], +[2,6000,6002], +[3,6003,13], +"ssemble-release-plan", +[2,6004,6005], +[3,5522,25], +"onfig", +[2,5518,6008], +[2,6000,2656], +"dependen", +[0,6013,0,6046,2537], +[0,53,87,8292,8294,8296,1165,1195,8297,1593,1610,1628,1630,2092,8301,3177,3561,3618,8304,2278,8306,4111,4383,4027,2924,4677], +"ts-graph", +[2,6011,6014], +[2,2183,6015], +[2,6000,6016], +[3,6017,16], +"release-", +"plan", +[2,6019,6020], +[2,6018,6021], +[3,6017,13], +[2,6023,2403], +[2,6000,2942], +"pre", +[2,6000,6026], +[2,6000,3917], +"-skip-package", +[2,4170,6029], +[2,6000,6030], +[2,6000,553], +"write", +[2,6000,6033], +"@man", +"ypkg/get-packages", +[2,6035,6036], +"editor", +[2,26670,26671], +"human-id", +"mri", +"p-limit", +"pref", +"erred-pm", +[2,6043,6044], +[0,2924,8309,8310,4967], +"spawndamnit", +"term", +"term-size", +[1,2343,6051], +[0,6053,6054,6060,2487], +"@mui/x-internals", +[0,8317,8320,8321,8324,8325,8328,8330,8333,8335,8337,8339,8341,8344,8346,8348,8350,8353,8354], +[0,8357,5500,8358,8359,8362,8364,4874,2036,2812,91], +[3,110,23], +[2,6055,592], +[3,449,25], +"free", +[2,6057,6058], +[0,5130,27,5592,5122], +"@semantic-release/changelog", +[3,6061,18], +[2,6062,3358], +"hub", +[2,6063,6064], +[2,1457,20], +"peer-deps-external", +[2,4049,6067], +[1,5293,6075], +"chat", +"reactjs", +" interface", +[2,4569,6072], +"ui kit", +[0,8391,6087], +"unication", +[2,1514,6076], +"conver", +"sation", +[2,6078,6079], +"toolkit", +"library", +"reusable", +"feed", +"social", +"talk", +1724872768784, +[1,2343,6089], +[0,6090,6091,6093,2523], +[0,8506,3776], +[0,192,5467,8509,8511,6061,6063,16480,1177,2675,2742,8512,2990,1894,4131,1984], +"ckeditor", +[0,1776,1894,4298,1745,5284], +"ckeditor 5", +"-feature", +[2,1459,6095], +[3,6096,10], +[2,6097,1932], +"dll", +[2,6097,6099], +[1,2343,6102], +[0,6103,6104,6114,2537], +[0,5917], +[0,11976,8520,26364,966,968,972,974,4874,4880,8524,8527,8528,8529,1030,1091,8531,1092,6685,8534,8536,6809,7250,1610,8537,8556,8538,7091,8539,2812,2832,8540,3165,8543,8544,8547,3400,89,3824,3833,3951,7080,7103,91,8550,7114,1983,8552,1984,6482,4763], +"wysiwyg", +"rich text", +"Editable", +[2,1563,6107], +"edit", +"editing", +"angular2", +"angular 5", +"ng", +[0,6659,7020,7130,6663,3833,6482,2812,7080,91,4763,7114,6809,7091,8558,7209,7250,7103,1091,7196,6685,8560,8561,8556,29291], +[1,2343,6116], +[0,6117,5795,6118,2537], +[0,4548], +[0,8571,8572,8573,8570,1885,8574,5592], +[1,2343,6120], +[0,6121,6122,6123,2523], +[0,8579,8582,8585,8181,3021], +[0,4039,188,4639], +[0,188,8588,8591,4967,5130,181,12,4627,4963,5001,837], +[1,2343,6125], +[0,6128,6129,6130,2537], +[3,153,22], +[2,6126,2389], +[0,7905,542,1668,3021], +[0,8597,4039,188,4639], +[0,188,8588,8591,4967,5130,181,4627,4963], +[1,2343,6146], +"ditor-balloon", +[2,151,6132], +"@jest/pattern", +"oper", +"al transformation", +[2,5218,6136], +[2,6135,6137], +"ot", +"colla", +"boration", +[2,6140,6141], +[3,6142,11], +[2,6143,4936], +"real-time", +[0,6149,6150,6151,2537], +"build", +[2,6097,6147], +[0,31874,8604,8605,8611,34224,8612,4174], +[0,8616,8608,4874,91], +[0,8618,8619,8620,1299,200,1523,6876,8622,1836,8623,1179,8624,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,8632,8633,4989,2184,8634,7009,6621,181,8635,4758,8636], +[1,2343,6153], +[0,6154,6155,6156,2399], +[0,4484,2735,8641], +[0,1192,2278,1437,2020,4146,8643,1177,4042,2151,2774,1894,4320,5087,4874,8645,6376,8647,30071,4328,8648,8651,8653,8654,8656,8659,8660,8661,1895,1011,8665,816,8669,8671,1009], +[0,2733,5130,8673,5131,1896,8674,8675,1591,1804,8677,8678], +[3,6133,27], +[2,6157,128], +[1,2343,6160], +[0,0,6161,6162,2537], +[0,4874,668,1894,4384,4483,4508], +[0,200,6876,8691,4964,7201,4719,176], +[1,2343,6169], +[2,117,2414], +"lignment", +[2,112,6165], +[3,132,9], +[2,6157,6167], +[0,6170,0,6171,2537], +[0,8697], +[0,91,1541,3421,1973,4504], +[1,2343,6174], +[2,6157,134], +[0,6175,6176,6177,2537], +[0,8703,8710,8712,8714,1461,8716], +[0,8719,842,968,972,974,7677,1177,1895,8724,2832,89,3824,91,1983,1984], +[0,4627,4963,8727,4964,5130,4967,8728,8729,5128,89,181,1487], +"blurhash", +[1,2343,6180], +[0,6181,6182,6183,2537], +[0,8744,6134,8752,8762,8755,554,4874,1107,1437,1458,29680,2215,8769,8734,8750,8765,8758,2797,8771,8737,8739,8746,2798,8747,8741,3170,3717,4207], +[0,8782,8776,8780,8778], +[0,1166,1172,4504,8784,2022,3497,8786,8787,2765,1192,2832,2899,8788,8790,2907,8791,8795,8745,4384,4389,1973,5472,91,2282], +[1,2343,6185], +[0,6186,0,2514,2537], +[0,6134,8801,8809,8806,4874,4892,1437], +[1,2343,6188], +[0,6189,6190,6191,2487], +[0,8818,1091,1092,1209], +[0,549,8826,1009,1011,1166,8832,1177,1895,1938,1955,2832,3421,1894,3875,8824,4039,4042,4052,4076,4079,4232,4474,4484,4508,91], +[0,1669,25,1781,8836,4967,1179,6847,7020,8838,2860,2844,8839,8691,8841], +[2,6097,1095], +[1,2343,6194], +[0,6195,6196,6198,2523], +[0,8846,1673,1209], +[0,7948,370,618,622,626,811,8850,816,6373,4863,5087,4880,4883,1009,1011,8158,1584,1843,1177,1895,1938,1955,1959,1192,2780,2832,3421,1894,89,3824,4039,4042,4052,8849,8853,4076,4079,4230,4468,4469,4484,4508,91,2924,4677,4681,555,560], +[3,191,21], +[0,29,3902,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +"atchdog", +[2,6197,6199], +[1,2343,6202], +[0,6203,6204,6205,2487], +[0,1209], +[0,8862,4863,5087,8860,4880,4884,1009,1011,8158,1610,1843,1177,1895,1938,1955,1959,1192,2832,3421,1894,89,3824,3876,3875,8824,4039,4042,4052,4076,4079,4468,4484,4508,91,555], +[0,89,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2343,6207], +[0,6208,6209,2514,2537], +[0,6059,8918,8923,8928,8926,8934,8921,8913,8931,8932,8894,8916,8892,8897,8906,8900,8887,8910,8902,8890], +[0,8937,5087,1192,4039,91], +[1,2343,6211], +[0,6212,6213,6218,34352], +[0,1110,1282,1437,1537,8942,2070,8944,2822,8947,3072,3181,3188,8949,4039,8951,8952,8954,8957,8959,4431,4562,4600,4603,8962], +[0,1173,8966,1255,1264,1596,1672,2835,2899,3421,8967,4100,4193,4255,4597], +"ndo", +[2,183,6214], +"select-all", +[2,117,6216], +[0,2278,4329,1623,2295,1745,4298,699], +[1,2343,6220], +[0,0,0,6221,2399], +[0,8980,8984,8987], +[1,2343,6223], +[0,6224,6225,6226,2523], +[0,8605], +[0,546,8997,8998,2992], +[0,2991,2992,200,5957,3392,9000,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], +[1,2343,6228], +[0,6229,6230,6231,2487], +[0,8703,1497,3867,9008,9011,4507], +[0,89,3824], +[0,4963,4964,4967,6082,3286,3287,89,181,630], +[1,2343,6233], +[0,6234,6230,6235,4139], +[0,1497], +[0,9026,4963,1666,4967,6082,3286,3287,3811,89,6901,181,630], +[1,2343,6237], +[0,0,0,6238,2523], +[0,4967,582,6082,3286,3287,89,6687,6649], +[1,2343,6240], +[0,0,6230,6241,2487], +[0,4963,8622,4967,6082,5066,3286,3287,89,181,630], +[1,2343,6243], +[0,6244,6230,6245,2487], +[0,9041,3911], +[0,4963,4967,6082,3286,3287,9044,9045,9047,89,181,630], +[1,2343,6247], +[0,6248,0,6249,2537], +[0,9054,595], +[0,89,3286,3287,181,4963,630,6082,4967,1501,5342,5341,9057], +[1,2343,6251], +[0,6252,0,6253,2399], +[0,1497,1639], +[0,89,3286,3287,181,6082,4967,1832,7165,7297], +[1,2343,6255], +[0,0,0,6256,2523], +[0,89,3286,3287,6082,4967,6687,582,6649], +[1,2343,6258], +[0,6259,0,6260,2537], +[0,1497,3847,3559,3744,97,9075,9076,9071,9074,3911,2609,4808], +[0,89,5128,5027,3132], +[1,2343,6262], +[0,6263,0,6264,2537], +[0,97], +[0,89,5128,5027,3132,45], +[1,2343,6266], +[0,0,6267,6273,2537], +[0,1192,3348,2675,1177,1209,1593,4474,4508,1894,1317,48,1193,91,53,5087,7819,3400,4870,107,192,5366,87,1978,3957,1895,1955,4514,92,603,9089,1011,5467,1009,61,78,76], +"color-parse", +"color-", +"convert", +[2,6269,6270], +"vanilla-colorful", +[0,1781,5592,9091,9093,1753,9094,4525,91,4799,5995,6400], +[1,2343,6275], +[0,6276,0,6277,2523], +[0,9100], +[0,1219,1783,9102,89,3984], +[1,2343,6279], +[0,6280,6281,6282,2399], +[0,608,606,1687,1209,3181,814,4135,4227,91,9111,9110,9113,9119,9121], +[0,9125,4870,5251,5254,1177,29339,9130], +[0,91,8172,9132,9133,9134,8623,1745,6432,4056,7897,4042,6374,4643,9135,9136], +"@aws/durable-execution-sdk-js", +"vue.js", +"vue component", +" component", +[2,6284,6286], +[1,2343,6289], +[0,0,6290,6291,2537], +[0,1177,9125,9141], +[0,6869,1745,2295,4298,9132,57,4255], +[1,2343,6293], +[0,6294,6295,6291,2537], +[0,1091,9153,814,606], +[0,1177,9156,5251,9125,9141], +[3,192,12], +[2,6296,1671], +[2,6296,671], +[3,6298,13], +"oad", +[2,6299,6300], +[2,6296,3917], +[2,6296,553], +[1,2343,6310], +[3,6303,13], +[2,6305,4467], +[2,6296,594], +[3,4872,14], +[2,6308,1698], +[0,0,6311,6312,2523], +[0,6283,33639,9163,9167,4874], +[0,9169,9170,9171,9172,9173,9174,33959,33964], +[1,2343,6314], +[0,6321,6322,6340,4139], +[3,195,10], +[2,6315,2997], +"ngd-transformer", +[2,6315,6317], +".native", +[2,1367,6319], +[0,615], +[0,609,9167,4507], +"decache", +"-plugin-", +[2,6324,3665], +[2,3079,6325], +"lunr", +"openc", +"ollective-postinstall", +[2,6328,6329], +"os-name", +"pdfmake", +"sort", +"tablesort", +"vis-network", +[2,6337,6338], +[3,10088,18], +"-list", +[2,10217,6341], +[0,9169,9170,9171,9172,9173,9174,9182,9183,8172,6671,9184,9186], +"icky", +[3,197,10], +[2,6342,553], +[1,2343,6350], +"semantic", +"actor", +"messages", +[2,698,9352,6349,10029], +"scroll-b", +[0,0,6353,6356,2537], +[2,6352,1633], +[3,6348,22], +[0,9193,609,9167,4874,9196], +"cms", +"management", +[0,9169,9170,9171,9172,9173,9174,1383,614], +[1,2343,6358], +[0,0,0,6359,2523], +[0,9203,4967,9204,1283], +[1,2343,6361], +[0,6362,6363,6364,2537], +[0,9213,9215,9217,9218,9219,9221], +[0,192,5467,9225,9226,8648,9227,6494,9231,9237,4874,5542,24360,9240,9241,1170,1364,1527,1594,1610,1652,9242,2026,9243,9244,2131,2212,2559,2832,3310,9245,4218,4220,9247,4339,4342,1531,91,4548,1984,9250,9252,9255,2924,9258,4729], +[0,705,9261,27,2671,4738,4731,1612,9262,3212,4158,5472], +[1,2343,6366], +[0,6263,0,6367,2537], +[0,89,5128,9267,3132,5027,45], +[1,2343,6394], +"@doc", +"search/js", +[2,6369,6370], +"@popperjs/core", +[2,812,4068], +"bundle", +"bundlewatch", +[2,1462,20], +"find-u", +"nused-sass-variables", +[2,6377,6378], +"hammer", +"-simulator", +[2,6380,6381], +"hugo-bin", +"-istanbul-reporter", +[2,2886,6384], +[2,1868,2903], +[2,2898,6386], +"mbine-duplicated-selectors", +[2,3573,6388], +[2,4049,2759], +"twbs-bootstrap", +[2,4942,6391], +"vnu-jar", +[0,6397,0,6401,2487], +"-first", +[2,5131,6395], +[0,1497,9272,9273,3744,624,97], +"responsive", +"front-", +"front-end", +[0,89,5128,9267,3132,5027,620], +[1,2343,6403], +[0,6404,0,6405,2537], +[0,1497,1639,3847,9272,9273,3744,624,97,6372,3911,9284,4808], +[0,89,5128,9267,3132,5027], +[1,2343,6407], +[0,6408,0,6409,34352], +[0,1497,1639,9272,9273,3744,97,4782,9293], +[0,89,5128,9267,623], +[1,2343,6411], +[0,6412,0,6414,2537], +[0,97,9273,4808,1497,3744,3911,6052], +"media", +[0,89,5128,9267,9300,3132,5027,3812,9301,9302], +"media query", +[1,2343,6417], +[0,6418,6419,6420,2523], +[0,9307,9308,9310,9311,9312,9313,9315,9316,9317,1461,1473,9319,9321,9322,2070,2226,9324,9327,9329,9334,9337,9340,3988,9343,9347,9348,9351,4507,4549,4555,2924,9354,9355], +[0,9357,9359,9362,9363,4880,4891,1165,1540,3286,3613,89,3824,3958,4383,4493,91,9364,9367,9368], +[0,9102,1745,3287,1783], +"matches", +"polyfill", +[3,3668,9], +"lugin", +[2,6423,6424], +"pseudo", +[1,2343,6428], +[0,6429,0,6430,34352], +[0,9375,9376,9378,9379], +[0,1098,1745,1179,9381,9382,5592,9383,9384], +[1,2343,6438], +[3,4325,11], +[2,6432,591], +[3,217,11], +"utility", +"variables", +"vars", +[0,6439,0,6430,2443], +[0,4484,628], +[1,2343,6441], +[0,6442,0,6430,2523], +[0,3958,9393,3971,3978,7610,9396,9401,2584,4555,9405,9407,9409,1437,9348,4549,4292], +"specificity", +[1,2343,6445], +[0,6459,6460,6480,2523], +[2,6447,25240], +[3,465,19], +[3,221,11], +"i-environment", +[2,6448,6449], +[2,3228,5709], +[2,221,6451], +[3,5930,17], +[3,5930,18], +[2,6454,594], +[2,2617,4525], +[2,5928,6456], +"message", +[0,9414,1690,1431,9417], +[0,1429,1363,2899,1177,9420,4039,9422,4474,2182,1894,91,4856,4874,9424,1325,1951,1938,1895,1955,1011,9426,1009,634,9431,9437], +"-streams", +[2,6458,6461], +[2,5928,6462], +[3,6463,17], +[2,6464,591], +"tag-expressions", +[2,5928,6466], +[3,5710,9], +"-error-formatter", +[2,6468,6469], +"capital-case", +[2,4250,57], +[2,3827,6472], +"has-ansi", +"knuth-shuffle-seeded", +[2,3060,5056], +"resolve-pkg", +"argv", +"string-argv", +[0,9439,9440,9422,5472], +"util-arity", +"yup", +[1,2343,6506], +"ompa", +"tibility-kit", +[2,6484,6485], +[2,6448,6486], +[2,5928,3766], +"-xml", +[2,4856,6489], +"@types/d", +"irty-chai", +[2,6491,6492], +[2,4861,674], +"@types/h", +"as-ansi", +[2,6495,6496], +[2,6309,5056], +"@types/l", +"uxon", +[2,6499,6500], +"@types/m", +[2,6502,1950], +"ustache", +[2,6502,6504], +[0,6531,6534,2514,2523], +"@types/mz", +[3,5090,10], +"gress", +[2,6508,6509], +"inon-chai", +[2,5051,6511], +[3,6512,12], +"js__fake-timers", +[2,6513,6514], +[3,4890,9], +"-buffers", +[2,2187,6517], +[2,6516,6518], +"@types/tmp", +"exclude", +[2,1432,6521], +"xml", +"chai-xml", +[2,5313,671], +"genversion", +"reindent-template-literals", +"stream-t", +"o-string", +[2,6528,6529], +[0,9501,9452,9510,638,9496,9493,641,9479,9456,9459,643,9449,9448,9485,2613,9472,3084,3181,3368,9465,3386,9462,3397,3483,9476,3727,9447,9490,9469,4135,4248,9451,9455], +"gherkin", +"tests", +[0,9516,26037,9515,1317,9520,3297,4384,4393,9512], +[1,2343,6536], +[0,6537,6538,6542,2523], +[0,9493,9479,2070,3181], +[0,9516,9515,4384], +[3,6503,10], +"k-fs", +[2,6539,6540], +[0,3378,3409,2977,200,9527,637], +"-compare", +[2,5254,6543], +[3,6512,9], +"gnale", +[2,6545,6546], +"mock-pro", +"cess", +[2,6548,6549], +[2,2769,6550], +[2,4135,6543], +"signal", +"signale", +[1,2343,6556], +[0,0,6538,6558,2399], +"deven", +[0,3378,200,640], +[1,2343,6560], +[0,6561,6562,2514,2487], +[0,641,9479,9539,640,3727,4707], +[0,9516,9515,9542,4384], +"toobject", +[3,3568,10], +"urable", +[2,1541,6565], +"promises", +"ReactiveX", +"WeakSet", +"ES3", +[1,2343,6576], +"cloudsearch", +"uninstall", +"windows", +"cjk", +[0,6595,6603,6604,2523], +"negative", +"shar", +"shared", +"Symbol.toStringTag", +"full-width", +"Object", +"Array.prototype.flatMap", +"Uint8", +"ClampedArray", +[2,6584,6585], +"start", +"starter", +"infer", +"ence", +"inference", +[3,6583,17], +"indLast", +[2,6592,6593], +[0,9547,9548,9550,3105,2745,9552,9554,9556,9558,9560,9562,3023,9563,4110,7610,9565,9566,3032,9568,3114,9569,9573,9577,5961,9580,9584], +"replay", +"[[Prototype]]", +"es7", +"cloud", +"ion", +"formation", +[2,6599,6601], +[0,2070,2899,1448,4255,9586,1389,9588,4257], +[0,9591,3987,2195,9593,1783,5980,1745,9595,1936,3378], +"look", +"last", +"regular expression", +"ECMAScript 2023", +"hot", +"rm -fr", +"chinese", +[1,5293,6617], +"consume", +"look-up", +"ES8", +"rgb", +[0,8391,6628], +"deep-copy", +"iam", +"ES2022", +"tty", +"status", +"length", +"view", +"dom-t", +"esting-library", +[2,6625,6626], +1734998400000, +"elb", +[1,2343,6655], +"getter", +[3,6608,13], +"19", +[2,6632,6633], +"macos", +"__proto__", +"asserts", +"deepclone", +[3,2779,11], +[2,6639,591], +"crypt", +[3,6634,14], +"8", +[2,6642,6643], +"push", +"monorepo", +"lone", +"fast-clone", +"state", +"lru", +[2,1177,1541], +"endpoint", +"a11y", +"weakmap", +[0,6656,0,6658,2537], +[0,666], +"streams2", +[0,9621,9622,8174,9623,9624,9625,9626,9627,9628], +"scheme", +".json", +[2,3383,6660], +"ajax", +"hookform", +[1,2343,6672], +"autoscaling", +"packages", +"linux", +"rfc4122", +[3,2069,10], +[2,6669,1585], +"JSON", +[0,6675,0,6658,2399], +"matchAll", +"iterate", +[0,3420,4484], +[1,2343,6679], +"structuredClone", +"trim", +[0,6682,0,6658,2537], +"@cfcs/core", +[3,3518,11], +[0,683], +"findLast", +[1,2343,6699], +"arktype", +[3,3833,10], +[2,6686,591], +"prototype", +"sigint", +"sinatra", +"Object.", +"value", +"values", +[2,6691,6693], +"reduce", +"reducer", +"Function.prototype.name", +"lockfile", +[0,6712,6717,6658,2523], +"full", +"fullwidth", +"groupBy", +"wait", +"duplex", +"css less", +"helpers", +"optimize", +"optimizer", +"emr", +"nodejs", +"defineProperty", +[0,29309,1797,4484,4135,4748,3181,1836], +"pyyaml", +"call", +"bind", +"callbind", +[0,1192,3420], +"styleguide", +[1,2343,6722], +"watchFile", +"code ", +[0,6730,6736,6744,2537], +"code points", +"Index", +[2,6683,6724], +"Map", +"flatMap", +"l10n", +"WebSocket", +[0,4484,677,666,3527,27921,4480], +"utilities", +"high", +"er-order", +[2,6732,6733], +"dataview", +[0,3420], +"handling", +[2,3827,6737], +"define", +"ebs", +[2,1177,1932], +"estree", +[2,6642,2855], +[0,9621,9647,9623,9628,9648,9649], +[1,2343,6756], +"ES2015", +[3,6608,11], +[2,6747,1278], +"operati", +"ng-system", +[2,6749,6750], +"RegExp#flags", +"loading", +"range", +"rangeerror", +[0,6757,6736,6767,2537], +[0,4484,677,4135,666,91], +"accessor", +"ESnext", +"limited", +"RFC-6455", +"URLSearchParams", +"es-shim API", +"col-buffers", +[2,4900,6764], +"lesscss", +[0,9621,9623,9657,9658,9628,9659], +"nce", +"sequence", +" system", +"file system", +[1,2343,6785], +"pnpm9", +"metadata", +"YAML", +[3,3405,12], +"ES2023", +"es2015", +"simpledb", +"hasOwn", +[2,5010,6972], +"debugger", +" zero", +[2,6577,6783], +[0,6815,0,6819,34352], +"fast-copy", +"spinners", +"predictable", +"ES6", +"rm", +[3,6583,16], +"contain", +"contains", +[2,6791,6793], +"japanese", +[3,6608,14], +[2,6796,1274], +[2,20413,2659], +"byteOffset", +"setter", +"Object.keys", +"flags", +"key", +"ender", +"ponyfill", +[2,20413,8124], +"logging", +"sns", +[2,4626,1155], +"ses", +"output", +"worker", +"export", +[2,1204,6813], +[0,4484,677,682,666], +"tester", +"waf", +"setImmediate", +[0,9621,9624,9667,9626,9627,9628,9649], +"typedarrays", +"walking", +"descriptor", +[1,2343,6826], +"hardlinks", +"buffers", +[0,6833,6736,6851,2443], +"typesafe", +"Set", +"CSS", +"es-abstract", +"agegateway", +[2,4268,6831], +[0,1437,4484,2687,4135,1513,9673,3530,666,3527,27921,53,1710,2858,3404,683,97,29309,87,4232,7913,9676,92,83,71,5757,9678], +[2,6838,1172], +"cloudfront", +"7", +[2,6642,6836], +[3,13067,16], +"ES2019", +[2,6855,6872], +"reuse", +"acter", +"character", +"prese", +"rve-symlinks", +[2,6844,6845], +"input", +[3,1461,9], +"Underscore", +"ec2", +[0,9621,9623,9624,9680,9681,9628,9648,9649], +[1,2343,6861], +"indicator", +"AsyncIterator", +"@vue/cli", +"performant", +"folder", +"Stream", +"0", +"ES2020", +[0,6862,0,6880,2537], +[0,4484,677,682,666,672,9687], +[2,6822,591], +"te", +"delete", +"arraybuffer", +[2,6579,6866], +"emit", +"TypeScript", +"batch", +"rds", +[3,4075,18,6], +[2,6896,11100], +"Uint16Array", +"password", +[3,1519,12], +" manager", +[2,3383,6877], +"mru", +[0,9621,9624,9625,9626,9627,9628,9649], +"byteLength", +"rate", +"css ", +"variable", +[2,6883,6884], +[1,2343,6895], +"speed", +"own", +"has-own", +".env", +"elm", +"ast", +"6", +[2,6747,6893], +[0,6900,6736,6880,4139], +"@vue/cli-", +" compiler", +[2,695,6897], +[3,3938,9], +[0,4484,677,4774,29540,666,26784,672,18052], +"time", +[2,1955,12054], +"bundling", +[2,6916,1987], +"Uint32Array", +[1,2343,6908], +"minimal", +[0,6909,6736,6658,34352], +[0,3420,1437,4484,4135,1836,3530,666,4748,29309], +"collection", +" css", +"nested css", +"slice", +"has", +"sorted", +[3,4079,15], +"iteration", +"ES2021", +"Float32Array", +"regular", +"idle", +"column", +"Iterator", +[1,2343,6927], +"throttle", +"guid", +[0,6928,6934,6936,2537], +[0,687,9704,9706,9708,1676,4135], +"watching", +"sqs", +"vue 3", +"less css", +"glacier", +[0,9712,4856,6503,4874,5254,1429,1488,1567,1177,1891,1893,9714,2205,2899,4193,4474,91], +"sett", +[0,1890], +"settings", +"ascii", +[3,1920,13], +"break", +"inter", +[1,2343,6978], +"internal", +[2,6691,3437], +[2,6747,6836], +"Array", +"Buffer#slice", +[2,6946,6947], +"s3", +"shrinkwrap", +"sham", +"art", +"safe", +":*", +[2,664,6954], +[3,6677,9], +[2,2382,6956], +"Property", +[2,6780,6958], +"korean", +"regexp", +[2,1367,6911], +"beanstalk", +"ES5", +[2,3632,6911], +"take", +[3,6962,10], +[2,6967,695], +"tdd", +"jQuery", +"enum", +"-vanilla", +"enumerable", +"hot-shots", +"JSON-Schema", +"workflow", +"CSSStyleDeclaration", +[0,6982,6984,6936,2523], +"route53", +"wordbreak", +"columns", +[0,9704,9706,1676,2205,2755,4484], +"formatting", +[0,4856,9723,4870,6503,4874,9725,8610,1429,1567,1177,1891,1893,9714,1209,2899,3752,4474,91], +"one", +"fastclone", +"shebang", +"number", +[1,2343,6992], +"ache", +"elasticache", +[0,6995,6999,7000,2537], +[2,6838,7005], +"concurrency", +[0,1107,1112,9730,1480,1676,1797,2179,2709,2755,2984,3181,4135,4290,4351,27921,9731,4720,4726], +"bundler", +"amazon", +"toSorted", +[0,5467,19438,691,9712,9736,9737,5366,4856,9417,9740,5245,9741,9723,6503,4874,9743,6513,9746,9749,8610,1317,1429,1431,1529,1610,1177,1891,1895,2675,2990,9750,2899,3421,1894,4172,4193,4474,4481,91], +[0,1890,200,1523,9753,57,7058,6478], +"chromium", +"obj", +"await", +"move", +"unit-mocha", +"symlink-dir", +"persistent", +[2,11169,7036], +"terminal", +"coercible", +"ES2016", +[1,2343,7013], +[0,7030,7032,7034,2487], +"identifiers", +"includes", +"swf", +"readable", +"protobuf", +"form-", +"validation", +[2,7019,7020], +"RxJS", +"busy", +"fps", +[2,6965,1278], +"-0", +"Observable", +"mixins", +"parents", +[0,688], +"typeof", +[0,5467,19438,9736,9737,4856,6503,4874,1429,1529,1177,1891,1895,2675,2990,2899,1890,1894,4172,4474,91], +"interrupts", +[0,9760], +"fastcopy", +"brands-svg-icons", +"prune", +[3,6583,20], +[2,7038,2395], +[2,7027,591], +"Microtask", +[2,3768,7041], +[1,2343,7063], +"es2018", +"circular", +"streams", +"runtime", +"make", +"serializ", +[2,7049,5218], +"limit", +"Dispatcher", +[2,2013,7052], +"balancing", +[2,3001,7054], +"es2016", +"WebSockets", +"args", +"ath", +"jsonpath", +[2,6796,1276], +"visual", +[0,7066,7068,7079,2537], +"positive", +"es-shim", +[0,7725,9767,9771,9774], +"every", +[0,9778,9781,9783,9785,9786,4874,7677,668,2086,2070,3297,1894,9794,91,4548,1984], +"trimRight", +"mimetypes", +"handlers", +"ratelimit", +"signals", +"rmdir", +"es8", +"findup", +"stable", +"robust", +[0,9796,2195,4030,9797], +"superstruct", +".es6", +[2,6910,7081], +"intrinsic", +[3,6948,11], +"curl", +"symlinks", +"ES2018", +[1,2343,7093], +"writable", +"rapid", +"io-ts", +"weak", +[0,7095,0,7097,2537], +"throat", +[0,9804,9807,9810,9811,9813,9815,9819,9821,9829,9834,9838,9841,9843,9846,9848,9849,9850,9852,9855,9856,9858,9861,9862,9864,9866,9869,9871,9873,9874,9875,9878,9933,9935,9937,9938,9940,9941,9945,9949,9953,9955,9957,9960,9964,9967,9969,9971,9974,9977,9979,9983,9985,9986,9989,9991,9993,9996,9998,10001,10004,10006,10007,10009,10013,10014,10016,10019,10021,10024,10026,10027,10030,10032,10034,10037,10041,10044,10047,10048,10049,10051,10053,10055,10058,7127,10060,10063,10065,10066,10068,10075,10077,10081,10083,10084,6336,10088,10092,10094,10097,10102,10105,10107,10110,10114,10117,10119,10126,10128,28711,10130,10131,10132,10134,10135,10137,10139,10142,10144,10145,10146,10147,10149,10151,10153,10156,10159,10162,10163,10165,10167,10170,10173,10178,10180,10183,10186,10188,10191,10193,10195,10197,10198,33633,10200,10201,10203,10204,10206,10207,10208,33138,10210,10213,10216,10219,6339,10223,10226,10228,10229,10230,10231,10234,10235,34233,10237,10239,10241,10245,10247,10248,10249,10250,10253,10255,10260,10262,10264,10267,10269,10272,10273,10275,10276,10278,10280,10283,10285,10290,10291,10292,10293,6348,6351,10295,10300,10302,10304], +"restful", +[0,188,8588,4967,10307,4963,10309,10310,10313,10315], +"deep-clone", +"Rx", +"symlink", +"vpc", +"whatwg", +"typanion", +"Float", +"64Array", +[2,7104,7105], +"$.extend", +"Promise", +"Reactive", +"Extensions", +[2,7109,7110], +[1,2343,7113], +[0,7118,7124,7097,2523], +"vest", +"from", +"-package", +[2,3250,7116], +[0,28591,29506,1473], +"parsing", +"or", +[2,4358,7120], +".inspect", +[2,614,7122], +[0,10321,4493], +"fromEntries", +[2,6691,7125], +[2,10056,1631], +"getopt", +"-validation", +[2,6659,7129], +"filter", +"Emitter", +[2,2013,7132], +"URL", +"fixed-width", +[1,2343,7137], +[0,0,7138,7097,4139], +[0,48,53,87,2071,2323,2332,2361,2367,2450,10327,10328,4039,4320,4323,4361], +[1,2343,7140], +[0,0,7142,7097,4139], +"encryption", +[0,48,53,87,2323,2332,2361,2450,4039,4320,4323], +[1,2343,7154], +"TypedArray", +"isConcatSpreadable", +"StyleSheet", +"create", +"mkdir", +"mkdirs", +"zero", +"sameValueZero", +"linewrap", +"side", +[0,0,0,7156,2537], +"listeners", +[0,10337,10339,10340,5122,5995,977], +"censor", +"watcher", +"typeerror", +[1,2343,7166], +"make dir", +"bound", +"patch", +"in-js", +"css-in-js", +[0,7173,0,7186,2537], +"deepcopy", +"setPrototypeOf", +"characters", +"pipe", +[2,6747,2855], +"Push", +[0,10347,10348,703,10351,10353,10354,10355,10357], +"trail", +"cloudtrail", +"awesome", +"sauce", +[2,7176,7177], +"banner", +"redux-t", +"oolkit", +[2,7180,7181], +"dete", +"rministic", +[2,7183,7184], +[0,10337,10339,10340,5122,5995,990,705], +[1,2343,7195], +"extension", +"lazy", +[3,1705,10], +[2,7190,6877], +"es2017", +"search", +"ES2017", +[0,7203,0,7206,2523], +"TypeBox", +" in css", +[2,6436,7197], +"Streams", +"aws", +"console", +"Reflect.getPrototypeOf", +[0,10363,3171,10367,10351,703,10370,10373,706,711,10374], +"directory", +[2,6607,591], +[0,10337,10339,10340,5122,5995,10376], +[1,2343,7216], +"colour", +"nope", +"flag", +[3,2982,14], +"syntaxerror", +[3,3904,10], +[2,7213,1974], +"kinesis", +[0,7217,0,7225,2537], +[0,3171,10382,10373], +"rm -rf", +"exit-", +"exit-code", +"ES7", +"jsdiff", +"private", +"slot", +[0,10337,10339,10340,5122,5995,10376,710,10384], +"sigterm", +"group", +"less.js", +"gdpr", +"east-asian-width", +[3,6820,10], +"Int32Array", +"argument", +"compile", +" less", +[2,7234,7235], +[1,2343,7238], +[0,7240,7243,7246,2537], +"callbound", +[0,10389,1170,1364,1437,2026,2220,2222,2659,2674,2817,1209,3776,10397,38,13781], +"callback", +"installer", +[0,48,53,87,10401,4856,9417,6494,10406,4870,6503,10410,4874,10413,6513,6512,24164,1009,1011,1429,1431,10417,1587,1177,1881,1883,1895,1915,10419,1938,1951,2899,3297,3421,1894,3752,4039,4193,4196,4232,4494,91], +"256", +"tostringtag", +[0,10426,10427,5284,10430,5472,10432], +" data", +[2,7223,7247], +"uted-types", +[2,1534,7249], +"nel", +"channel", +"iterator", +"mapreduce", +[2,7017,3101], +[3,5804,10], +[1,2343,7261], +"less mixins", +[2,6796,6859], +"forEach", +[0,0,0,2514,2399], +"description", +"Symbol", +[1,2343,7266], +"generics", +[0,7267,0,7269,2487], +[0,3509], +"stdlib", +[0,6649,6355,89,188,3709,1542,91,5284,4967,5995,2202,181,2130,38], +"typed array", +[1,2343,7273], +"call-bound", +[0,7274,7277,2514,2537], +[0,10593,10594,10596,10597,10600,10602,10603,10604,10605,10606,10608], +"WeakMap", +[2,6691,3426], +[0,4856,6503,1429,1628,1863,2297,2881,2895,2897,2900,2904,2899,4039,4940,4307,4508,91,2924], +[1,2343,7279], +[0,0,7280,7281,2537], +[0,8648,10614,816,10615,966,968,13204,4874,10616,1637,1177,28727,10619,32765,10621,2203,2832,3561,3566,1894,10624,10627,3980,10630,10632,4042,4057,4076,4333,4474,4484,4494,4508,10633,4514,10636,10638,10639,10643,30098,91,10646,4614,32507], +[0,6653,7320,10655,10650,10648,1623,4964,9204,10657,10656,1745,10052,10667,1936,10661,4374,3430,5284,10651,10663,4386,10665,10658,10654,10659,91,8295,4270,28842,89,582], +"stateless", +[3,6670,11], +[2,7283,6647], +"telephone", +"some", +"efficient", +"_.extend", +"wget", +[3,6594,18], +"lter", +[2,7290,7291], +"remove", +[1,2343,7302], +"soft", +"Microsoft", +"styling", +"ie", +"HyBi", +"Int16Array", +"cloudwatch", +[0,7304,7306,2514,2537], +"css nesting", +[0,10675], +"mime-db", +[0,10708,10703,10691,10706,1178,10688,1700,10677,1937,2151,10697,2323,2338,2384,2419,2496,2508,10686,10678,3159,3493,10683,10681,4431,91,10687], +[1,2343,7312], +"dynamodb", +[2,6642,6893], +"phone", +"Int8Array", +[0,7314,7321,7322,4139], +".prototype.flags", +[0,1091,1758,4449,10739,2070,2278,1149,9892,10761,4747,1177,4039,4135,4072,4734,2026,10752,10756,1290,1457,1764,2720,1894,4171,1513,10753,10757,1389,10754,2689,3160,3310,53,3429,10760,104,10759,58,692,4228,10746,101,10737,4005,4562,5216,10748,87,10738,10755,90,10721,1942,3957,68,10723,2851,10744,4851,92,10731,10734,10751,5874,10728,5756,10720,5818], +[3,7313,11], +[2,7315,6913], +[2,7084,7316], +"access", +"ibility", +[2,7318,7319], +[0,4389,10763,4232], +[0,10765,4643,200,5130,6400,10766,5131,10768,5995,8889,10769,10771,5256,10772,7028,5198], +[1,2343,7324], +[0,0,7325,7326,34352], +[0,1177,6059,10777,10779,10780,10783,10785,1613,1615,10786,2151,2735,10788,27921,33050], +[0,10791,5130,10792,45,10793], +[1,2343,7328], +[0,7329,7330,7331,34352], +[0,3763,2813,10800,10799,2771], +[0,2675,89,4426,1177,4042,1651,2924,1894,10852,3824,4270,91,5087,4874,4880,10846,10858,3889,10855,10810,192,10837,4883,3885,10805,4057,10808,2686,1959,1879,1938,4073,10848,10854,10828,10831,972,1895,1947,1955,811,10851,10821,4023,10817,10840,968,1011,1961,10815,10841,10811,816,10825,974,10827,4531,5467,1883,10844,1009,6068,10836,5700], +[0,89,4426,10860,10863,10865,10866,10867,10868,4967], +[1,2343,7333], +[0,7334,7335,7337,2523], +[0,26364,5917,2696,3875,3950,4022], +[0,5517,53,5652,603,10874,10875,10876,966,972,30788,974,10879,10883,7729,10886,4874,10887,4880,4883,4892,1009,1011,1170,668,10888,1177,1895,1898,1935,1938,1947,1955,1959,1961,2151,2731,2832,2854,3244,3310,1894,3765,89,3824,4039,4201,4484,4493,4494,91,8550,8552,1984,4747], +"quote", +[0,3875,89,6588,6081,6696,6913,2696,2700,7182], +[1,2343,7339], +[0,7340,7341,7342,2537], +[0,10895,10897,2007,20378,10898,3090,3530], +[0,8850,816,10902,10904,4042,4227,4232,91], +[0,4042,1932,3378,5260,10906,3209], +[1,2343,7344], +[0,7345,7346,7347,2399], +[0,10895,5251,1699,10912,814], +[0,53,5889,5583,811,8850,1856,4042,4227,10916], +[0,4042,1932,6778,3378,5260], +[1,2343,7352], +[2,7350,7351], +[3,818,9], +"gent-chat", +[0,7354,7355,7356,2537], +"microdiff", +[0,1415,4449,1594,1983,1437,2205,3188,3539,668,2026,10923,2602,4213,1457,10947,10925,10927,10929,2858,10930,10931,10933,10935,606,10936,10939,10940,1030,10942,608,603,9110], +[0,10944,3348,89,1177,4039,10946,1984,1894,3824,6520,91,9227,4874,7819,2990,4880,4892,3401,10949,6494,4883,4131,4315,10951,1959,1895,1947,1955,1011,1961,3708,10960,1009,10964], +[0,10946,9134,6869,8172,10966,8623,1745], +[1,2343,7359], +[2,819,6706], +[0,7360,7361,7362,2523], +[0,10973,10981,10984,2161,7610,7353,3266,188,7349,10990,10992,28910,11005,7358,10975,10995,8079,29841,10996,10978,7374,10999,11003,28843], +[0,23531,8648,29273,11016,5337,11018,2611,2832,89,11022,4383,1983,11026,11033,1984,11039,7387,11041,28988], +[0,4627,1745,3452,11043,4386,8124,188,8588], +[1,2343,7364], +[0,7365,7366,7367,2537], +[0,11049,7610,10975,8079,7387], +[0,11051,6798,6806,2078,1983,1984,4745,818,11039], +[0,5592,1745,2078,3452,8124], +[1,2343,7369], +[0,7370,7371,7372,2537], +[0,11064,11065,11066,1699,11071,11073], +[0,11075,11076,11079,11080,11082,11083,4856,6494,11085,6503,1170,1364,1414,1610,2026,2633,2899,11086,3750,4261,4474,91], +[0,13428,1388,11862,11861,11857,8210,11088,8214,27718,8791,181,4967,1098,89,188,5982,6969,1973,5472], +[1,2343,7376], +[2,7375,582], +[3,11003,12], +[0,7377,7378,7379,2399], +[0,11064,11065,11066,11093,1699,11073], +[0,11075,6503,11096,11105,11109,11111,11112,1170,1414,1610,2899,11086,11113,4261,824], +[0,13428,1388,11862,11861,11857,8210,11088,8214,27718,8791,181,4967,5982,6969,1973,5472,824,11116,11117], +[1,2343,7381], +[0,7382,7383,2514,2537], +[0,11124], +[0,11126,11130,11133,11134,11138,668,2675,2832,2990,2899,3421,1894], +[2,10829,45], +[1,2343,7386], +[0,7388,7389,7390,2537], +[2,11004,23], +[0,89,3824,11143,602,7384,11146,11151], +[0,1983,89,4451,3555,29318,3824,16485,91,9311,3975,4880,30157,6271,7610,32415,3120,10895,28829,3968], +[0,1739,1745,4270,29043,10824,11156,29045,1783,29181,6718,25172,4627,4963,89,188,1098,3709,5926], +[1,2343,7392], +[0,7393,7394,7395,2487], +[0,11161,11164,5145,11168,97,8597,449,11172,452,456,11175,11179,11182,11185,11186,11188,1325,11189,1461,1582,1673,11191,11192,5561,11193,11196,11197,11199,11201,11202,11204,11207,5060,11208,11210,11212,11213,11216,11219,11220,11221,11223,11224,11225,11228,11231,11233,3787,11235,11236,11238,11240,11242,3788,11244,11246,11249,11251,3789,3810,11253,11257,11261,3906,11264,4426,4427], +[0,5076,53,11267,11271,368,7948,11273,11274,10875,11275,10821,10825,10827,10828,11277,11282,11285,10837,10841,11288,966,968,972,974,11290,5087,11292,11296,11300,11301,4870,8149,11303,11305,4880,11307,4882,4883,11312,11315,11317,11320,11322,1009,1011,11325,11331,11333,1195,11335,1437,1448,1610,11336,1789,11343,8161,1177,1879,1895,1915,1924,1938,1939,1947,1948,1959,1961,10851,1982,2071,11345,2151,2193,2070,2665,2675,2686,2696,2697,2720,2758,1192,11347,2771,2780,2784,11348,11350,2814,2832,11356,5102,2990,1209,11357,3213,3445,1894,3703,3717,3725,3730,3763,11360,11362,11363,89,3807,3817,3820,3824,4934,11366,11368,11371,11374,3885,11377,11378,3984,3985,11380,11382,11383,4135,4183,4201,4320,11384,11389,4323,11396,11397,4072,4474,4508,91,11400,4676,11401,11405], +[0,5127,4627,4963,4964,5130,4967,89,5128,181], +[1,2343,7397], +[0,7398,7399,7400,2537], +[0,11413,11416,11417,11420,11421,11422,2161,1209,11428,11434,4443,3348], +[0,549,4870,11438,7819,1759,1999,3400,3421,11439,4469,11440,4494,1984,4677,4693], +[0,11442,11443,11445,11446,11449,11448,11450,11451,11452,11453,11454], +[2,11425,7402], +"-fork", +[2,12213,7404], +[3,12229,13], +[1,2343,7407], +[2,7408,594], +[0,7409,7399,7400,2523], +[3,7403,15], +[0,11413,11416], +[1,2343,7411], +[0,7412,7413,7400,2537], +[0,11417,11420,11421,11422,7401,2161,2674,1209,11426,3310,11428,11430,11434,4443,3348], +[0,11436,4870,4874,11438,7819,1166,1759,3400,1894,11439,4469,4474,11440,4487,4490,91,2924,4677,4693], +[1,2343,7415], +[0,7416,7417,7418,2487], +[0,2203], +[0,107,7844,11470,1177,1895,1953,1972,3709,91,4523], +[0,1177,1541,7625,3709], +[1,2343,7420], +[0,7421,7422,7423,2523], +[0,26364,23826,11477,1082,977,11478,11479,2929,3090,11480,11481,5152,4200], +[0,13471,8648,840,11485,4874,5162,11486,4042,3709,4359,91,1983,1984], +[0,5130,11489,3709,5167,1983], +[1,2343,7425], +[0,7427,7428,7429,2523], +"location", +[0,30023,11501,1699,3090,11497], +[0,2278,1983,3709,5245], +[0,11504,11506,1983,3709], +[1,2343,7431], +[0,7432,7434,7435,2523], +[0,53,11516,87,90,92,11518,11520,11522], +"routing", +[0,1195,3150,4027,2924], +[0,11525,8221,89,2924,11526], +"redirect", +[1,2343,7438], +[0,7439,7440,7441,2523], +[0,11533,11534], +[0,11536,28491,1610,91], +[0,11538,11539,1172,91,9561,2924,11540], +[1,2343,7443], +[0,7444,7445,7446,2523], +[0,1367,6372], +[0,2070,2323,1192,2278,4039,3561,1894,1587,2504,4320,2464,91,4874,1165,2482,3678,4330,11598,11592,11591,11595], +[0,4329,4963,5926,11600,11601,6082,8727,181,4967], +[1,2343,7448], +[0,0,2667,7449,2399], +[0,11608,11609,11612,11613,190,11615,11617,4967,91,5284,11619,11622,11624,11626,11627,11630,11631,11633,11634,11636,11639,11640,32767], +[1,2343,7451], +[0,4424,4429,4442,2537], +[1,2343,7453], +[0,7454,7455,7456,34352], +[0,97,1562,4484], +[0,53,83,87,92,19181,442,8648,5583,811,816,6373,10615,11796,4874,1009,1011,1208,1177,1895,11935,11938,11940,11943,3401,1894,4042,11802,4172,11803,91], +[0,965,1936,11806,11807,5284,11815,8221,91], +[1,2343,7458], +[0,7459,7460,2514,2537], +[0,11821], +[0,972,30788,4880,4883,1030,1597,3401,89,3824,5564,7464,27122], +"pkgroll", +[1,2343,7468], +"create-vue", +[2,7467,7472], +[2,7466,7469], +"create-e", +[3,11821,16], +[0,7459,7470,7471,2523], +"slint-config", +[0,3709,4355,5160,1972,11827,1011,27122,840], +[0,32401,3766,3709], +"persist-client-core", +[1,2343,7474], +[0,7475,7476,7477,2537], +[0,11833], +[0,11835,5087,1009,11837,1177,1886,11840,1895,1955,1958,1192,2780,2821,1776,3165,4468,4469,91], +[0,11842,11843,11846,11847,6875,4967,5576,4978], +[1,2343,7479], +[0,7480,7481,7482,2523], +[0,97,966], +[0,1651,91,11853,3400], +[0,5472,1651,181,965,11857,6564,11861,11862], +[1,2343,7484], +[0,7485,7486,7487,2537], +[0,11357,11869,3527,3717,97,51,11868,11871], +[0,2832,91,11853,1393,1423,11875,968,11884,11879], +[0,5472,181,965,2832,2275,11857,6564,11861,11862], +[1,2343,7489], +[0,7490,7491,7492,2537], +[0,11891,11869,11890,3527,63,11871], +[0,2832,2022,4042,1984,91,11853,11893,3717,11899,811,11884,11896], +[0,5472,965,1192,2832], +[1,2343,7494], +[0,7495,7496,7497,2399], +[0,1437,11891,2777,3717,11907], +[0,1192,2675,89,1177,1894,48,1527,91,53,5087,4880,3720,3857,97,4131,5091,3904,11909,1652,4889,5085,5103,11912], +[0,5472,1975,1192,3857], +[1,2343,7499], +[0,6263,7500,7501,2523], +[0,966,968,4880,4883,1437,11918,2777,11853,3401,89,3824,4039,91], +[0,5472,89,181,965,2832,2275,11857,6564,11861,11862], +[1,2343,7503], +[0,0,7504,7505,2537], +[0,2742,2832,89,2022,668,4474,11944,3824,11890,91,11853,4880,11875,11952,11943,11931,11938,11929,966,11948,11935,972,11933,11940,968,5556,11925,6515,1915,11924], +[0,7214,6627,89,5472], +[1,2343,7507], +[0,7508,0,7509,2487], +[0,10347,11959,978,989,991,993,996], +[0,11961,38,5995,27,5130,5592], +[1,2343,7511], +[0,0,0,7512,34352], +[0,11961,10339,10340,5122,5995,977], +[1,2343,7514], +[0,0,0,7515,2443], +[0,11961,10339,10340,5122,5995,2947,977], +[1,2343,7520], +"fp", +"drag", +"react ", +[0,7533,7536,7537,2537], +"animation", +[2,7519,7521], +"pure", +"fantasy-land", +[2,4570,7046], +[3,5941,12], +[2,7526,1155], +"framer", +[3,7527,19], +[2,7529,6600], +"pose", +"tacit", +[0,11974], +"balanced", +"react pose", +[0,1414,4494,2675,91,4874,975,11976,192,11978,5467], +[0,11961,10339,10340,5122,5995], +[1,2343,7539], +[0,0,0,7540,2487], +[0,11961,10339,10340,5122,5995,984], +[1,2343,7542], +[0,0,0,7543,34352], +[0,11961,10339,10340,5122,5995,986,11988,10345], +[1,2343,7545], +[0,7546,0,7547,2537], +[0,987], +[0,11961,10339,10340,5122,5995,988,2739,11995,11996], +[1,2343,7549], +[0,7550,0,7551,2487], +[0,10347,12003,1001,1003], +[0,11961,10339,10340,5122,5995,990,705], +[1,2343,7553], +[0,7554,0,7555,2537], +[0,11974,3171,12011,978,980,12016,991,997], +[0,11961,10339,10340,5122,5995,10376], +[1,2343,7557], +[0,7558,0,7559,4139], +[0,11959], +[0,11961,10339,10340,5122,5995,38], +[1,2343,7561], +[0,7562,0,7563,2523], +[0,3171,985,12027], +[0,11961,10339,10340,5122,5995,10376,710,10384], +[1,2343,7565], +[0,7566,0,7567,34352], +[0,3171,12027], +[0,11961,10339,10340,5122,5995,990,705,1000,5284], +[1,2343,7569], +[0,0,0,7570,2487], +[0,11961,10339,10340,5122,5995,990,705,1002,3634,3766], +[1,2343,7572], +[0,0,0,7573,2523], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094], +[1,2343,7575], +[0,7576,0,7577,34352], +[0,12099,12103,12104,12105,4484], +[0,12108,7188,5995,11100,6740,5592], +[1,2343,7579], +[0,7580,7581,7586,2443], +[0,2687,5569,12118,1012,12121,12123,12124,5604], +[0,1091,3127,1984,1894,12126,9363,4880,3117,12127,4555,8818,7677,3137,12133,5551,12137], +[2,7583,7584], +[3,439,8], +"react/eslint-plugin", +[2,5557,26375], +[0,1177,6741,6939,91], +[1,2343,7588], +[0,7589,7590,7591,2487], +[0,1676,5552,12124,5604,12145], +[0,1984,7677], +[0,6892,5286,5284,91,57,5341,1177], +[1,2343,7593], +[0,7596,7590,7599,2523], +"point-free", +"curried", +[0,5552,439,5604,12145], +"gestures", +"3d", +[0,1177,91,6742], +[1,2343,7601], +[0,7602,7622,7626,4139], +[0,365,370,12159,1461,12160,12163,1832,12166,12170,2609,1209,12172,3220,3744,12173,11202,12175,11216,11224,3787,3789,3849,11374,3911,4023,4163,4649,12176], +[3,346,11], +"abs-extension", +[2,7603,7604], +"cssfilter", +"root-node-polyfill", +[2,2183,7607], +"slugger", +[2,2287,7609], +"deflist", +[2,3108,7611], +[3,5953,13], +"eta", +[2,7613,7614], +"sup", +[2,3108,7616], +[3,3125,13], +"rule-", +[2,7619,6706], +[2,7618,7620], +[0,48,53,61,71,83,85,87,90,92,192,5467,968,972,4859,5540,4870,12179,4880,4883,1009,1011,12182,12184,1170,1178,1193,1195,12186,1210,12191,12193,1527,12195,1628,1652,1843,1845,8160,1177,1959,1961,2092,2151,2651,2675,1192,12196,11348,12198,2990,3177,3222,3463,1894,3786,89,3824,3895,3904,4257,4307,4320,4946,12201,12205,12206,91,4537,4027,2924,4676,4677], +[3,346,10], +[2,7623,5891], +[3,1879,13], +[0,89,5128,4627,4963,4967,12208], +[3,3703,9], +[2,7627,1541], +[1,2343,7649], +"sconfig", +[2,7603,7630], +"@types/css", +"ithub-slugger", +[2,5246,7633], +[3,4869,9], +"-yaml", +[2,7635,7636], +"arkdown-it", +[2,6502,7638], +"-attrs", +[2,7639,7640], +"anitize-html", +[2,5051,7642], +[2,1368,4406], +[2,668,7644], +[3,5961,13], +"estgen", +[2,7646,7647], +[0,7652,0,7653,2523], +"yandex", +"yfm", +[0,1497,2813,1209,3266,12224,9355,12220,12226,12233,12217,12222,2626,12215,12219,12232,12216,7406,7403], +[0,6108,6038,5130,1936,12236,1932,6106,12214,6105], +[1,2343,7655], +[0,7670,0,7691,2523], +"magic-", +"bytes.js", +[2,7656,7657], +[3,347,11], +[2,7659,614], +"discord-", +"api-types", +[2,7661,7662], +"@sapphire/snowflake", +[2,7659,6910], +[3,7664,10], +"async-queue", +[2,7666,7667], +"@vladfrangu/async_event_emitter", +[0,1018,1025], +"turbo", +[2,7659,3888], +[3,4828,16], +[2,7673,1803], +"@vite", +"st/coverage-v8", +[2,7675,7676], +"@favware/cliff-jumper", +"-pretty", +[2,4525,7679], +[2,1876,7680], +"extract", +"extractor", +[2,4610,7683], +[2,7659,7684], +"esbuild-", +"plugin-v", +"ersion-injector", +[2,7687,7688], +[2,7686,7689], +[0,10039,12244,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +"discordapp", +"discordjs", +[1,2343,7695], +[0,7696,0,7697,2537], +[0,12253], +[0,1017,12255,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +[1,2343,7699], +[0,7670,0,7700,2537], +[0,6847,12260,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +"generated", +[1,2343,7703], +[0,7704,0,7705,4139], +[0,12265,1025], +[0,1022,12268,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +[3,5923,13], +[2,4364,57], +[2,7706,7707], +"@aws-sdk/client-s3", +[2,7623,5576], +[1,2343,7712], +[0,0,0,7732,2487], +"ranslation", +[2,3118,7713], +[2,7623,7714], +[3,7715,11], +"ermaid-extension", +[2,7716,7717], +"openapi-", +[2,7719,7188], +[2,7623,7720], +"yfm2xliff", +[2,352,7722], +[3,692,9], +[2,7724,364], +[3,4869,11], +"-safe", +[2,2849,7727], +[2,7726,7728], +"@yandex-cloud/nodejs-sdk", +"bem-cn-lite", +[0,594,12274,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +"nanostores", +"threads", +[2,7734,4406], +[1,2343,7741], +[2,4807,1149], +[3,4856,10], +"lk", +[2,7738,7739], +[0,7742,7753,7754,2523], +[0,3763,1594,2026,1000,1536,12286,12285,12287,12284,1032], +"tml-escaper", +[2,6495,7743], +"ime-types", +[2,6502,7745], +[3,5055,9], +"elljs", +[2,7747,7748], +"@types/t", +"ar-stream", +[2,7750,7751], +[0,1192,4135,4468,4342,1193,91,53,9227,5087,4874,12292,11976,6494,12290,9240,7806,7708], +[0,12294,4967,970,12295,12296,5983,6802], +[2,12302,26070], +[1,2343,7757], +[0,7764,7765,7766,2537], +[3,7639,15], +[2,7758,671], +[3,7730,14], +[2,7760,7625], +[2,7760,7628], +[2,7760,2190], +[0,34690,12301,7733,28314,7755,12305,12307,28554], +[0,4481,4494,4493,1983,2675,1177,4039,12309,1984,668,3561,23535,4320,3350,3541,28464,4201,4360,91,4874,2990,3400,4880,29000,29038,11976,30684,17214,4328,33264,33385,34203,4523,34205,7677,33382,5517,5530,34207,4323,12312,32818,5535,12315,30630,11396], +[0,11608,12318,12319,12322,12324,12326,12328,12329,12331,11612,12334,12336,11010,12337,12338,190,12339,4967,91,12342,12346,12348,12349,12350,11619,11622,11624,12354,12355,11640], +[1,2343,7768], +[0,7769,7770,7771,2523], +[0,1593,4376,53,1393,3090,87,3957,12361,5658,5660,5778,5810], +[0,20378,1983,1082,1531,3527], +[0,4967,1983,11504,1028], +[1,2343,7773], +[0,7774,7775,7776,2487], +[0,53,12370,12372,28465,10879,3878], +[0,30521,89,3824,28865,1531], +[0,1172,27158,89,3878,1983,11504], +[1,2343,7778], +[0,7779,7780,7781,2523], +[0,1012,2071,4523,4630], +[0,5536,4874,1177,1988,2020,7461,1894,4494,91,1984,188], +[0,188,7463,7465,1177,91], +[1,2343,7783], +[0,7784,7785,7786,2399], +[0,1091,1092,12384,2657,12385,3509,38,4151,7707,5971,4745], +[0,2026,2899,4255,4342], +[0,2026,3452,8124,1745], +[3,980,17], +[2,7787,57], +"encrypt", +"encrypter", +[2,1576,7790], +[2,3115,1623], +[2,2287,7792], +"greenlock-express", +"memoryst", +[2,7795,147], +"minisearch", +"selfsigned", +"sitemap", +"sql.js", +"workerpool", +[1,2343,7825], +"ody-parser", +[2,4853,7803], +"mpression", +[2,4860,7805], +"-session", +[2,6494,7807], +"ormidable", +[2,5537,7809], +"mpts", +[2,6508,7811], +[3,7643,9], +[2,7813,367], +"ql.js", +[2,5051,7815], +"@types/u", +"uid", +"@types/uuid", +"@types/w", +"orkerpool", +[2,7820,7821], +"wasm", +[2,7686,7823], +[0,7829,7830,7831,2523], +"razor", +"sqlite", +"aspx", +[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12405,12406,1582,1699,12409,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,3788,11244,3789,3810,5564,3846,12435,12438,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12444,12445,4549,4555,12447,1002,12448,12449,12452], +[0,192,5467,7634,12455,12458,7637,12459,4874,12461,8149,4880,4882,4883,12462,12463,12467,1177,10321,2071,2079,12471,12472,2675,2990,1894,3706,3708,89,3824,4320,4474,91,1984,12473,12475], +[0,1179,12445,2924,89,12478,12479,1783,4963,1745], +[1,2343,7835], +"@dnd-kit/core", +[3,7833,9], +[0,0,7841,7843,2537], +"modifiers", +[2,7834,7836], +"sortable", +[2,7834,7838], +[2,7834,6731], +[0,4874,1009,1011,1177,1881,1938,4039,4042,4076,91], +"ui-components", +[0,5995,12586,12588,12589,12590,12592,12593], +"@stylistic/eslint-plugin-js", +[3,7844,11], +[2,4324,1932], +[2,7845,7846], +[1,2343,7852], +"@wordpress/api-fetch", +[3,7849,11], +"block-", +[0,7853,7859,7860,2537], +[0,12600], +"ion-", +[2,7854,1464], +[2,7682,7855], +[2,5313,7856], +[2,7850,7857], +[0,53,5241,87,94,12602,12604,6503,4874,1145,1503,12607,1177,2297,2881,2886,2895,12609,2897,2900,2910,2899,3400,3421,3456,4039,4042,4045,12611,4055,4067,4071,4075,12613,4474,12614,91], +[0,12616,7102,2013,2018,12617,12618,12621,12622,12620,6553,1858], +[1,2343,7864], +[2,7153,694], +[2,5335,7862], +[0,7865,7866,7867,2523], +[0,3173,12627], +[0,3421,2899,1177,1693,1954,1938,1958,1903,1948,1970], +[0,1563,12631,8316,1080], +"promis", +"ify-", +[3,1455,13], +[2,7869,7870], +[2,7868,7871], +"swc-loader", +[1,2343,7875], +[0,7876,7878,7879,2523], +[0,1149,1362,1209,3230,1552], +"ol", +[0,2899,1429], +[0,2663,1081,5122], +"mixin", +"WordPress", +[1,2343,7883], +[0,7884,0,2514,2399], +[0,1082], +[1,2343,7886], +[0,7896,7898,7899,4139], +[3,4872,15], +"amelcase", +[2,7887,7888], +[3,7746,9], +"nimist", +[2,7890,7891], +[3,5090,9], +"etty-ms", +[2,7893,7894], +[0,1170,1437,1525,2088,2151,2720,3467,7956,4183], +".d.ts", +[0,811,8850,816,10615,12654,4864,12656,4866,4874,4039,4042,8849,11054,4076,12206,4484,4487,91], +[0,200,1085,188,89,12659,12660,91,6710], +"definitions", +[1,2343,7902], +[0,0,7903,7904,2537], +[0,1429,2685,2899,1894,4039], +[0,2056,3164,12666,4560], +[2,363,3428], +"memoize", +[2,363,7906], +[3,370,10], +"erialize", +[2,7908,7909], +[3,1212,14], +"acros", +[2,7911,7912], +"root", +"find-root", +[1,2343,7918], +"stylis", +[0,0,7923,7924,2523], +[3,5272,14], +"d-nodes", +[2,7919,7920], +[2,1174,7921], +[0,2899], +[0,12674,1087,2124,12619,12675], +[1,2343,7926], +[0,7927,7928,7929,4139], +[0,12680,12681,1676,12685,5303], +[0,5245,12688,6501,4874,7677,4193,4474,4494,1984], +[0,12692,12693,1605,12694,4116,8791], +[1,2343,7934], +[2,366,6990], +[2,7908,5375], +[2,363,594], +[0,7936,7938,7939,2487], +"@definitelytyped/dtslint", +[0,43,46,1093,1116,1132,1140,1298,1316,1318,1321,1322,1336,1339,1342,12701,1344,1346,1348,1350,1352,12703,1354,1356,1358,12704,1376,1386,1402,1425,1428,12705,1440,1450,12708,12709,12710,12711,12714,1663,1706,1711,1715,2019,12715,12719,2058,2059,2177,2217,12720,2563,2567,2605,2606,12722,2723,2950,2954,2957,12726,2962,3086,3099,12730,3134,12733,3186,3240,3245,3262,3295,3439,12736,3443,3472,3535,3558,12737,3777,3931,12740,4105,4124,12743,12747,4168,4173,4177,4192,4206,4235,12749,4236,4258,12750,4267,4338,12755,4347,4352,4370,4433,4456,4461,12756,12757,12760,4548,12763,12764,4724], +"import-cwd", +[0,4880,4883,2079,89,3824,91], +[0,4627,4963,4964,5130,4967,89,5128,181,4653], +"is-pro", +"p-valid", +[2,7940,7941], +[2,363,7942], +[3,7933,10], +"se-insertion-effect-with-fallbacks", +[2,7944,7945], +[1,2343,7949], +[2,363,89], +[0,7950,7951,7952,2537], +[0,12771,12773,12775,1389,12776,1536,1676,12777,12779,2026,12783,12785,2659,12788,2822,12789,12792,12793,3183,12795,12799,12802,3923,12809,4153,4165,12812,12814,12818,3348,4650], +[0,12820,1610,2554,3421,12823,4255,4389,4400], +[0,1090,1388,12826,4384,4389,5472], +[1,2343,7954], +[0,7955,7958,7959,2523], +[0,2069,12832,12834,12837], +[2,17912,7957], +"estimator", +[0,12839,811,8850,816,10817,4856,6503,4874,12842,1009,1011,1092,1389,1429,1610,1673,12846,1177,1895,2070,2675,12847,2806,2820,12848,2297,2881,2900,2990,2899,12849,3310,3421,1894,12850,4042,4073,4474,12851,91,12852], +[0,6671,2844,1155,7020,2860,2845,7527,7530], +[1,2343,7961], +[0,7962,7963,7964,2537], +[0,1091], +[0,12839,5087,4874,1009,1011,1091,1177,1895,2675,1192,12848,2990,1894,4468,91], +[0,12860,6975,1671,7020], +[1,2343,7966], +[0,7967,7938,7939,2399], +[0,43,46,1450,3777,4548], +[1,2343,7969], +[0,6203,7970,7971,2487], +[0,3460,12870], +[0,1094], +[1,2343,7973], +[0,7974,7975,7976,2537], +[0,12879,4567], +[0,12882,2899,3421,4535], +[0,12884,12886,12887], +[1,2343,7978], +[0,0,7979,7980,2487], +[0,2278], +[0,1623,2278,181,6398,6400,2869,12893], +[1,2343,7982], +[0,0,0,7983,2523], +[0,1098,5130,1388,12899], +[1,2343,7985], +[0,0,0,7986,2523], +[0,1098,5130,1388,7521,12899], +[1,2343,7988], +[0,7989,0,7990,2523], +[0,12910,12914,19,21,24,12915,12917,1149,1165,1437,1532,1628,1637,1676,12918,1687,12923,12925,12926,2054,2092,7076,2151,12929,2070,2651,2712,2720,12930,2843,2921,2925,695,2969,1209,3181,12935,3342,3368,3459,3467,3560,3618,3786,3981,814,4039,4085,4111,12936,4135,12937,4230,12944,4307,4333,4334,1241,4430,91,4027,4648,2924,4681,4689,4695,4769], +[0,1098,1102], +[1,2343,7993], +[2,27465,3469], +[0,0,0,7994,2537], +[0,12074,29,1388,12899,5027,12951,4963], +"blurup", +[1,2343,34387], +[0,6323,2398,12956,2899,4425], +[0,7244,1111,12958,12959,12961,12963,12964,12965,12966,12967,12968,12969,12970,12971,12972,12973,12974,12975,12976,4984,12977,200,12978,1473,1512,7208,9753,6876,7201,12979,12980,6983,12981,12982,12983,12984,12986,12987,2929,3073,6807,12990,12991,10958,6616,4166,12992,12994,1871,590,592,7009,2585,6621,12996,12997,4744,12998], +[1,2343,8000], +[0,8001,8002,8003,2487], +[0,6639], +[0,4874,1166,4481,1906], +[0,1111,7009,7201,200,1871,6621,1867,1106,6983,4166,4744,3073,6807,6876,2585,13005,6769,12619,1501,5281,13006,8628,13007,1468,13008,13009,13011], +[1,2343,8005], +[0,0,8006,8007,2399], +[0,1906,1166,4481,1107], +[0,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,6876,2585,1108,6961,23,3529,1973,2100,13017], +[1,2343,8009], +[0,0,8010,8011,2523], +[0,1906,1166,4481,13024], +[0,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +[1,2343,8013], +[0,0,0,8014,2487], +[0,1111,1512,200], +[1,2343,8016], +[0,8017,8018,8019,2443], +[0,11161,13035,97,8597,7905,13037,13038,13042,1156,1639,1673,13045,13047,1209,3021,4023,11264,1849,7917,4427,13049,4649], +[0,48,53,61,73,76,78,13051,81,5806,13052,5835,83,5853,5889,85,87,92,192,5467,692,5583,7806,4864,5087,13055,5139,13057,7639,4874,13059,1009,1011,1028,11016,13061,13063,13067,13069,1031,11018,13072,10984,13077,1082,13078,1165,1170,1178,1193,1195,1205,13080,1208,13085,1426,1437,1448,1503,12405,13086,1525,13088,1610,1628,1630,13089,1668,13090,13092,11343,13093,668,8161,1869,1177,1895,1937,1938,1939,1948,13097,1955,1988,2071,11345,2151,2070,2205,2226,2323,2338,13099,2529,2651,2675,13101,13103,1192,2780,2784,13105,13108,2817,13110,4868,695,2969,13115,13118,2990,13119,3105,3107,3112,3114,13122,3127,13123,3177,3183,3188,3213,3220,3412,3561,3618,1894,3720,3725,3730,3786,9340,3992,13124,13127,8304,13128,4039,13129,13131,4135,4207,13134,4307,4320,11384,11389,4323,11396,4328,4409,4431,4443,4468,4469,4494,4508,91,13135,4549,4027,11400,1983,188,13138,13142,4630,4633,13145,4634,13149,4639,4640,13151,4646,2924,4676,4677,4681,4689,13152,11401], +[0,188,8588,5127,4964,1114,13154,4627,4963,181,5130,4967], +[1,2343,8021], +[0,8022,8023,7395,2537], +[0,1497,1673,97,5145,4427,11161,7992,27467,33386,33387,11185,33389,33393,11164,33396,33397,33399,33401,33403,33404,33406,33417,13166,33418,33422,33423,33424,33426,13169,8048,33428,33430,33431,33433,33436,33441,33443,11168,33444,33447,13159,33449,13162,33450,33451,11264,13165,33452], +[0,1091,3467,26713,4390,4494,1789,2070,1192,3445,1170,1437,11336,2675,2696,2742,2832,13233,3549,89,4164,1759,1177,2079,2814,1209,3984,4039,13241,4135,1086,13078,25131,3725,4508,2924,1634,2151,2193,11347,3183,3213,1894,13243,11401,1610,16473,2071,5102,11357,3758,11360,3824,13214,13215,3310,3560,3985,3988,4183,4201,91,5087,4874,12424,2665,2990,3839,11380,368,13204,13210,4880,13223,33230,11362,13245,33461,7833,692,11301,4870,5254,11325,3330,3717,13235,3999,11976,7948,27424,13194,13196,11290,8149,11322,7610,11350,27047,11273,11275,16934,4864,11292,7892,6510,13213,4934,10875,13205,4883,2758,2771,13232,3885,11377,3978,5076,33233,7839,8998,29467,7837,7840,643,13200,1939,2686,11366,11400,13198,2584,11348,25366,966,11331,1924,2784,11368,13175,972,1947,2780,13182,13203,13228,11356,4676,11320,3749,13192,968,1961,33635,11300,13221,13187,7582,974,7585,13178,11312,26969,11382,11371,11296,13188,11274,13240,13189], +[1,2343,8025], +[0,8026,0,2514,2523], +[0,3445], +[1,2343,8028], +[0,8029,7938,7939,2537], +[0,43,46,1093,1132,1140,1298,1316,1318,1321,1322,1336,1339,1342,1344,1346,1348,1350,12704,1376,1386,1425,1428,1440,1450,12709,12714,1663,1706,1711,1715,2019,12719,2177,2217,12720,2563,2567,2606,12722,2950,2954,2957,2962,3086,3099,3134,3186,3240,3245,3262,3295,3439,12736,3443,3472,3535,3558,12737,3777,4124,12747,4173,4177,4192,4206,4235,12749,4236,4258,4267,4338,12755,4347,4352,4370,4433,4456,4461,12756,12757,12760,4548,12763,12764], +[1,2343,8031], +[0,8032,8033,8034,34352], +[0,5381,5383,5446,5394,5408,13261,13262,5458,5461,32772,13264,13267,13272,2993,5438], +[0,5400,5402,5405,13276,5453,5456,192,5467,13280,5470,5473,13282,5474,5476,5478,13286,13287,1364,1699,1177,1895,1999,2026,2151,2675,2822,2990,3246,3300,3561,4039,4042,13289,10854,4193,4449,91,5480,4535,13291,3348], +[0,5926,13293,5592,1117,1745,13294,3422], +[1,2343,8036], +[0,8037,8038,8039,2537], +[0,1367,1525,13302,8161,13304,2151,2070,2036,2685,2814,13305,1209,3105,3363,3725,4135,4307,2924,4677,4709], +[0,4870,6503,4874,1177,13311,1903,1938,1954,1958,2899], +[0,5592,1118,2295,1745,4030,7096], +[1,2343,8041], +[0,8042,8043,8044,2537], +[0,13319,1797,4135,4562,4747], +[0,9741,4874,5254,4892,1166,2151,91], +[0,1118,1783,13322,5592,2295,1745,1179,13325,200,13326,6876,4030,7096,13327,13328], +[1,2343,8046], +[0,8047,8049,8050,2523], +[0,1676,13333,3313,2863,4593], +[2,41,27443], +[0,1429,1431,2899,4193,4196], +[0,13336,6645,13338,13339,13340,586], +[1,2343,8052], +[0,8053,0,2514,2537], +[0,13345,13346,5506,5514,4484], +[1,2343,8055], +[0,8056,0,8057,4139], +[0,13352,13345,1127,13346,5513,5514,4484,13351], +[0,5286,6778,13354,5284,13356,3378,89], +[1,2343,8059], +[0,8060,8061,2514,2487], +[0,13346,5514,4484,5515], +[0,13364,5087,4874,2220,2222,1192,4039,4042,4468,4487,91], +[1,2343,8063], +[0,8064,8065,2514,2487], +[0,1127,13370,4484], +[0,13364,5087,13372,2086,2220,2222,1192,13374,4039,4042,4468,4487,91], +[1,2343,8067], +[0,0,8068,8069,2523], +[0,1503,1596,13379,1652,2194,2759,2899,3202,3215,3421,4131,4585], +[0,7914,3403,6435,614,202,1237,5260,13382,3209,1896], +[1,2343,8071], +[0,8072,8073,8074,2537], +[0,13387,13388,13390,13394,13395,1170,1362,13396,1209,3084,3220,3222,13399,4135,13400,4729], +[0,13406,13411,13412,6061,6063,13414,4870,6503,4874,13417,5254,9241,10780,1429,1431,1570,2899,1894,4131,4193,4474,91,4739], +[0,13426,12296,5472,13428,5131,13429], +[1,2343,8076], +[0,8077,8078,8080,2399], +[0,13446,13437,13512,13471,13508,13476,9637,13474,13497,13495,13500,13454,13502,13504,13510,13493,13507,13456,13479,13488,13484,30243,13467], +[0,3421,3297,2899,4193,1177,1894,91,13514,4874,6503,6513,5254,1954,1011,13518,1009], +[2,8182,553], +[0,13524,13525,13526,13529,13530,13531,6599,13532,13535,13538,13539], +[1,2343,8082], +[0,8083,8084,8085,2523], +[0,13547,13551,13554,13558,13559,13560], +[0,13564,5087,4874,1009,1011,13566,1177,1895,1915,1938,1955,2220,1192,1894,13568,3706,13569,4257,4468,4474,91], +[0,13571,7200,5995,13572,2220,13573,6710,91,13574], +[1,2343,8087], +[0,8088,8089,8090,2537], +[0,13579,1149,13581,3923,13583,4393,13584], +[0,13590,1429,1776,3188,2899,4039,13591,4390,4753], +[0,12666,1137,3101,2056,4390], +[1,2343,8092], +[0,0,8093,2514,4139], +[0,1429,1192,1894], +[3,439,25], +"mysticatea", +[2,1186,8095], +[2,8094,8096], +"dot-prop", +"warun", +[1,2343,8101], +[0,0,8102,8103,2399], +[0,68,5704,1177,2899,3421], +[0,200,57,1139,5675,7058], +[1,2343,8105], +[0,7967,7938,7939,2487], +[1,2343,8107], +[0,8108,8120,8121,2487], +[0,1417,13609,6830,13611], +"ly-openapi-core", +[2,443,8109], +"decko", +"pointer", +[2,2842,8112], +"mark.js", +"sampler", +[2,7719,8115], +"perfe", +"ct-scrollbar", +[2,8117,8118], +[0,13613,13614,1159,9254,1177,2011,2133,13619,2708,3410,3421,3431,4103,4389], +[0,6583,6727,4552,6759,1858,6422,3033,7039,6763], +"react-tabs", +"stickyfill", +"swagger", +"2openapi", +[2,8124,8125], +[2,4564,1283], +[1,2343,8133], +"@cypress/webpack-preprocessor", +"@hot-loader/react-dom", +[3,5535,19], +[2,8131,1896], +[0,0,8134,8142,2487], +[0,1166,4481,1906], +"ompurify", +[2,6491,8135], +"-to-", +"-to-json", +[2,4863,8138], +[3,7729,12], +[2,8140,8112], +[0,4552,1144,13625,6270,6692,13626], +[1,2343,8164], +"@types/lunr", +[3,7639,11], +[2,8145,1722], +[2,8145,1360], +"ismjs", +[2,7893,8148], +[3,4890,12], +"d-components", +[2,8150,8151], +[3,7752,9], +"pable", +[2,8153,8154], +"-env", +[2,4891,8156], +"@wojtekmaj/enzyme-adapter-react-17", +"to-json", +[2,1848,8159], +[2,7686,1194], +"-checker", +[2,4059,8162], +[0,8167,8176,8177,2523], +"lodash.noop", +"unfetch", +[0,614,13633,1417,13635,3435], +"OpenAPI", +" Specification", +[2,8168,8169], +"Swagger", +"API", +"REST", +"React", +"React.js", +[0,4389,1090,1593,1610,48,13638,53,3438,87,5619], +[0,1145,1388], +[1,2343,8179], +[0,0,8188,2514,2537], +[3,444,13], +[2,8180,965], +[3,10975,16], +"use-", +[3,2758,11], +"layout-effect", +[2,8184,8185], +[2,8183,8186], +[0,4389,2080], +"tip", +"tooltip", +"popover", +"popup", +"position", +"positioning", +[1,2343,8196], +[0,8197,8198,8200,2537], +[0,1690,13648,13651,3431,13652,13653], +[0,1389,2759,2899,3697], +"fontsource", +[0,1145,6468,6637,1148,5982,2022,2025,4170,13656,4386,6969,1973,5472,6533,13657,2275], +"font family", +" fonts", +[2,1885,8202], +"Inter", +"face", +"typeface", +[1,2343,8208], +[0,0,8209,8212,2537], +[0,3421,1429,4085,1776,2297,2899,4747,1177,4042,4135,1448,1290,1362,2151,1317,1389,53,1863,2900,13662,1280,2871,13674,1267,13665,13672,68,2904,1208,2912,2895,13668,4067,1198,13663,1240], +"serenity", +"Roboto", +[0,1149,7241,1237,6435], +[1,2343,8215], +"screenplay", +[0,0,8219,8222,34352], +"common-t", +[2,8216,103], +[2,6057,8217], +[0,4874,13680,4384,4474,91], +"fontawesome", +"svg", +[0,1149,7003,5194,27,13682,11995,1862,36], +[1,2343,8224], +[0,8225,8226,2514,2537], +[0,1153], +[0,1166,1177,1894,3310,3697,13688,2990,1959,1879,1938,1895,1947], +[1,2343,8228], +[0,0,8230,8233,2537], +[2,79,1202], +[0,53,13693,87,92,13694,5087,1193,1596,1192,2990,3377,13695,13698,3697,1894,4474,91], +"stage-3", +[2,88,8231], +[0,1155,2649,1149], +[1,2343,8235], +[0,0,0,8236,2523], +[0,1157,1388], +[1,2343,8238], +[0,8239,8240,8241,2487], +[0,4449,1512,13709,4135,13711,13712,13713], +[0,3421,4389,1177,3410,1159,4103,13614], +[0,13716,6698,6950,3378,13716], +[1,2343,8246], +[3,361,10], +"rebuild", +[2,8243,8244], +[0,8247,8249,8257,2487], +[0,1525,2036,7937,3310,13723,4135], +"node-abi", +[0,53,94,1208,13725,1429,1503,1610,3125,2899,3421,4216,4255], +[3,361,9], +"-forge/cli", +[2,8250,8251], +"devtools", +"-installer", +[2,8253,8254], +[2,1807,8255], +[0,1163,13728,13729,1444,3073,1179,3358,1528,13730,2602], +[1,2343,8259], +[0,8260,8261,8265,2523], +[0,1457,1512,13736,13738,2070,10911,3074,3467,9478,705,13739,4747], +[0,1173,1267,1429,1177,1879,1938,1947,1959,2899], +[2,4364,4622], +[2,458,8262], +[2,7726,2862], +[0,1163,4796,1161,3383,2282], +[1,2343,8267], +[0,8268,0,8269,2399], +[0,1393,1423,13746,3527,3688], +[0,1165,1623,3665,3561,6425], +[1,2343,8274], +[2,466,2220], +[2,466,2942], +[2,466,594], +[0,8276,8279,8280,4139], +[2,466,553], +[0,13753,1082,1084,1110,13754,1144,13757,13758,1437,13759,1458,13760,1486,13763,13765,13767,13770,1676,13772,2089,2205,13775,2709,2747,2752,13777,7906,3242,3478,13778,3530,3545,3718,13780,13781,13784,13786,4728,4747], +[2,5559,2844], +[2,5559,1783], +[0,11436,13789,4874,1107,1414,2020,2022,4193,4384,4400,4481,91,1906,13351], +[0,13791,1973,8791,5472,1166,13792,12804,2062,6969,13326,200,1192,2899,4389,4384,2907,2765,1145,6468,1862,6567,1149,3046,7003,1179,5701,13793,13795,13796,2275,8745,2022,91], +[1,2343,8282], +[0,8283,8287,8288,2537], +[0,1437,1835,3008,1209,3170,3188,4232,13802], +"/types", +[2,3940,8284], +[2,6369,8285], +[0,4856,4870,8778,6503,4874,7749,6513,4891,1362,1429,13804,2151,2675,2990,2899,1894,13805,4039,4167,4257,1241,4487,91,2924,4677], +[0,2924,1194,11526,91], +[1,2343,8290], +[0,8291,8305,8307,2523], +[0,4113,1002,614,3348,1398,2018,4734,13811,13812,3767], +"@tailwindcss/aspect-ratio", +[3,8292,13], +[2,8293,25], +"typography", +[2,8293,8295], +"basename", +"manage", +"r-webpack-plugin", +[2,8298,8299], +[2,2090,8300], +"remove-", +[2,1586,4408], +[2,8302,8303], +[0,1429,2297,2899,1177,1503,2765,2924,1649,4535,1389,91,4874,2843,1509,2766,2898,13817,13818,2881], +"sass-lint", +[0,5592,6997,7200,6850,6779,6949,6930,6810,6808,6979,6871,6991,6835,7024,6602,7301,7308,6619,7016,6665,6572,6629,7055,6709,7254,6814,6832,6976,6740,7101,6963,6933,7215,7175,6817], +[3,6566,9], +[2,8308,3855], +"boilerplate", +[1,2343,8312], +[0,0,8313,8314,2537], +[0,1429,2070,1437,1496,2020,2228,2675,1776,2832,2297,2899,4193,1177,2814,1593,668,2203,3471,2720,13824,1894,4535,13825,11869,13827,2878,7231,91,53,4874,13829,1863,13831,2665,2900,2918,2990,3400,13832,13833,2626,3330,5561,13834,13836,4257,13837,87,13838,2897,4130,13839,2247,2283,2923,2253,2281,13842,2881,4261,5663,1895,2895,13848,13850,78], +[0,13852,6653,5472,2275,6969,5982,11346], +"@hapi/", +"accept", +[2,8315,8316], +[1,2343,8319], +[0,8331,8332,8334,2537], +"@hapi/ammo", +"@hapi/boom", +"@hapi/bo", +"unce", +[2,8322,8323], +"@hapi/call", +"@hapi/ca", +"tbox", +[2,8326,8327], +"-memory", +[2,8328,8329], +[0,2139,13860,2131], +[0,1414,2323,1437,2675,2297,2899,4193,1177,3246,3483,4042,2026,13868,2151,13824,3183,1596,1610,2141,2188,2036,7798,4393,91,53,1364,1863,2918,2766,3714,13870,2898,1159,192,13880,87,13873,8850,8862,5583,2915,4073,13882,2881,2912,2895,2921,811,13867,2910,13879,13866,816,13875,13871,5467], +"@hapi/heavy", +[0,4731,27,6662,1862,202,1388,1612,4030,5592,5576], +"@hapi/hoek", +"mimos", +"@hapi/mimos", +"podium", +[2,8315,8338], +"shot", +"@hapi/shot", +"@hapi/s", +"omever", +[2,8342,8343], +"tatehood", +[2,8342,8345], +"ubtext", +[2,8342,8347], +"teamwork", +[2,8315,8349], +[1,2343,8352], +[0,8355,8356,8365,2537], +"@hapi/topo", +[2,8315,2649], +[0,13889,2051,13891,13892,3923,705,4545,3348,1155,4734,4736,2845], +[0,13894,1389,1596,13895,2228,2296,13896,2759,2297,2881,2891,13899,2895,2897,2900,2904,2899,3202,3297,4170,4535,4650], +"@hapi/code", +"@hapi/inert", +"@hapi/lab", +"@hapi/v", +"ision", +[2,8360,8361], +"wreck", +"@hapi/wreck", +[0,202,13531,13901], +[1,2343,8367], +[0,8368,8369,3182,2537], +[0,1175,1257,1280,1282,1525,1573,5175,2070,1209,13913,3507,4207,4227,13914,1457], +[0,1184], +[1,2343,8371], +[0,8372,8373,3272,34352], +[0,13922,1180,13924,13928,1280,1282,1284,1287,1288,1291,1573,1676,2856,1209,3181,3507,7223,4207,4227], +[0,1184,13930,1257], +[1,2343,8375], +[0,8376,8377,2514,2523], +[0,814,104,58,101,51,1996], +[0,2675,2899,1680,1177,2000,1894,2990,1178,13936,1938,1935,1955], +[1,2343,8379], +[0,8380,8381,2514,2523], +[0,13928,1282,1288,1707,2835,1209,4227,13942], +[0,1184,1291], +[1,2343,8383], +[0,8384,0,2514,2537], +[0,1282,1209,13948,4135], +[1,2343,8386], +[0,8387,0,2514,2523], +[0,1282,13930], +[1,2343,8390], +"nf", +[0,0,0,8393,2487], +true, +"cookiecutter", +[0,1172,188,1219], +[1,2343,8395], +[0,8396,8397,2514,2537], +[0,8755,10879,1208,13961,1437,2215,4207], +[0,53,8776,8780], +[1,2343,8399], +[0,8400,8401,8402,4139], +[0,2105], +[0,48,53,68,87,1414,1177,1895,1955,2203,2675,2990,1894,2924], +[0,2924,1194,1172,5194,5198,1237], +[1,2343,8404], +[0,0,8405,8406,4139], +[0,53,73,87,1173,1175,1178,13725,13982,1264,13983,1268,1284,1288,13985,1177,1895,1903,1938,1954,1955,1958,1970,2899,3696,1894,4039,4103], +[0,5297,13988], +[1,2343,8408], +[0,8409,8410,8411,2537], +[0,3435], +[0,4389,1177,4039,1173,1175,2708,53,1178,1280,13995,87,1261,1267,4103,1938,1881,1203,8229,1198,5853,13998,1244], +[0,1172,1932,14000,1204,202], +[1,2343,8413], +[0,8414,8415,3465,2523], +[0,1282], +[0,1189], +[1,2343,8417], +[0,8418,8434,8444,2399], +[0,5652], +"@keyv/redis", +[2,1416,8421], +"-redis-yet", +"cacheable", +"opens", +"spring", +"icu", +"charset", +"launch", +"xdg", +"cmd", +"xdg-open", +"iconv", +"popmotion", +"exe", +[0,53,90,14011,1175,14012,1596,1177,1879,1895,1938,1955,2079,2675,2990,3132,3377,1894,14014], +"executable", +"cache manager", +[2,27105,15292], +"multi-store cache", +"caching layer", +"cache abstraction", +"cache middleware", +"cache strategies", +"cache wrapper", +[0,5297,1114], +[1,2343,8446], +[0,8447,8448,8449,2537], +[0,56,14022,8697,14024,14025], +[0,48,53,5756,5241,94,1429,1596,1610,2899,3421,14027,4255], +[0,2759,1172,1932,14029], +[1,2343,8451], +[0,8452,8453,8454,2537], +[0,5652,104,2070,1209,14035], +[0,48,53,14039,78,5235,4851,83,87,90,14041,94,10828,1149,1198,1210,1429,14042,14045,3021,2899,3776,3804], +[0,5297,14047,1209,5260], +[1,2343,8456], +[0,8457,8458,8459,2487], +[0,14053,2070,3539,4022,814], +[0,48,53,81,5241,87,1175,1193,1532,1177,1881,1895,1938,2675,1192,2990,10623,4257], +[0,1172,5297,1237,14056,8861,9345,814,14057,14059,3209,1204], +[1,2343,8461], +[0,0,8462,2514,2523], +[0,1192,14065], +[1,2343,8464], +[0,0,0,3465,2523], +[1,2343,8466], +[0,0,0,3465,2537], +[1,2343,8468], +[0,8469,8415,3465,2523], +[0,14078,14080,1282], +[1,2343,8471], +[0,8472,8415,3465,2523], +[0,14086,14087,1282,1284], +[1,2343,8474], +[0,8475,8476,8477,2487], +[0,14093,1282,1284], +[0,1173,1230,1255,1267,1429,2899], +[0,1172,5297,6598,70], +[1,2343,8479], +[0,8480,8415,3465,2523], +[0,1282,1284,1287,1288,1209], +[1,2343,8482], +[0,8483,8484,3465,2487], +[0,14107,1282,1284,1288], +[0,1189,14109], +[1,2343,8486], +[0,8414,8415,3465,2399], +[1,2343,8488], +[0,8489,8415,3465,2537], +[0,14109,1282], +[1,2343,8491], +[0,8492,8415,3465,2523], +[0,1282,14123,1220], +[1,2343,8494], +[0,0,8495,8496,2537], +[0,48,53,5216,8229,61,5240,87,14128,90,94,1178,14132,1429,1177,1879,1922,1935,1938,1947,1951,1955,1959,2205,2899,14133,1894], +[0,1172,5297,89,14137,14139], +[1,2343,8498], +[0,8499,8415,2514,2537], +[0,14145], +[1,2343,8501], +[0,8414,8415,3465,2537], +[1,2343,8503], +[0,8504,0,2514,2487], +[0,1282,1593,3957], +"comment", +[2,8505,1574], +[1,2343,8513], +[3,539,8], +[2,8508,6939], +[3,539,17], +[2,8510,1541], +"leasot", +[0,8514,8515,8516,2487], +[0,87,90,56,5761,83,14160,13051,78,5835,14163,5853,14167,1251,5782,14170,5806], +[0,1177,53,97,4103,1938,1881], +[0,1172,5194,6778,5284], +[1,2343,8518], +[0,8522,8541,2514,2523], +"clair/typebox", +[2,5324,8519], +"@typesc", +[0,14184,14191,1225,14192,14195,1235,14196,14198,14199,14201,14204,14206,14207,14209,1240,14210,14211,14213,14214,14215,14217,14218,1244,14220,14222,14224,1253,1393,2731,4135], +"hema/core", +[2,8521,8523], +[3,8524,12], +"main", +[2,8525,8526], +[2,8525,4763], +"@vinejs/vine", +"ajv-", +"ajv-errors", +"-export", +"-export-map", +[2,4354,8533], +[3,5370,11], +[2,4626,8535], +"effect", +"fp-ts", +"io-ts-types", +"lefthook", +[0,1173,1178,1184,1189,1208,1264,1280,1429,1503,1177,13936,1935,2151,1209,2899,3421,14227,4039], +[1,2343,8545], +"monocle-ts", +"newtype-ts", +[0,8548,8557,2514,2487], +"-validator", +[2,7209,8546], +[0,14184,14192,14195,1235,14196,14198,14199,14201,14204,14206,14207,14209,1240,14210,14211,14213,14214,14215,14217,14218,1244,14220,14222,1253], +"bot", +"valibot", +"vite-", +[2,8551,4480], +"fluent", +"-ts", +[2,7020,8554], +[2,8553,8555], +[0,13930,1189], +"effect-ts", +[1,2343,8562], +"typeschema", +"vine", +[0,8563,0,2514,4139], +[0,14237,1220,14238,1248,14240,14243], +[1,2343,8565], +[0,8566,0,2514,2537], +[0,53,61,71,14170,14160,13051,14249,5700,5240,5879,83,87,90,92,97,7913,1251], +"google ", +" api", +"late api", +[2,4713,8569], +[2,8567,8570], +[3,8571,16], +"google api", +[3,8570,9], +[1,2343,8576], +[0,8577,0,2514,34352], +[0,14256,14257,1275], +[1,2343,8586], +"@atlaskit/pragmatic-drag-and-drop", +"-scroll", +[2,3959,8580], +[2,8579,8581], +[3,8582,34], +"hitbox", +[2,8583,8584], +[0,8587,0,2514,2523], +[0,14265,13982,1277], +"vue3", +"vue ", +[1,2343,8592], +"vue 3.x", +[0,8593,0,2514,2537], +[0,1279,14270,1217,1230], +[1,2343,8595], +[0,8596,0,2514,2523], +[0,14191,14276,1225,14224,1245], +"@ctrl/tinycolor", +[1,2343,8599], +[0,8600,8601,2514,2537], +[0,1175,1282,1593,14282,1209,3188,4232], +[0,6323], +[1,2343,8613], +[3,546,10], +[2,8603,2089], +[2,8603,998], +[3,6505,9], +"te-stream", +[2,8606,8607], +"rap-ansi", +[2,7820,8609], +"cli-width", +"mute-stream", +[0,4115,8617,2514,4139], +[3,8605,11], +"esting", +[2,8614,8615], +[0,13924,1255], +"answer", +"answers", +"ask", +[1,2343,8627], +"confirm", +"generate", +"hyper", +"inquire", +"interface", +[0,8629,0,2514,2537], +"iterm", +[0,1282,1287,1288,1291,1209], +"promptly", +"question", +"scaffold", +"scaffolder", +"stdout", +"yeoman", +"zsh", +[1,2343,8638], +[0,8639,8640,2514,2523], +[0,13922,13928,1282,1288,1291,1676,2203,2731,1209], +[0,1180], +"@stencil/core", +[1,2343,8672], +"domino", +[3,8641,9], +[2,8644,2278], +"@clack/prompts", +"@capacitor/core", +"@playwright/test", +[3,8647,11], +"haptics", +[2,8649,8650], +"keyboard", +[2,8649,8652], +"@axe-core/playwright", +"@ionic/", +[2,8655,7625], +"-bar", +"status-bar", +[2,8649,8658], +[2,8655,7628], +[2,812,4607], +"-target", +[2,6811,8662], +[2,4625,8663], +[2,8644,8664], +"react-o", +"utput-target", +[2,8666,8667], +[2,8644,8668], +[2,1101,8663], +[2,8644,8670], +[0,8679,8680,2514,2487], +"stencil", +"webapp", +"capacitor", +" web app", +[2,6434,8676], +"pwa", +[0,1282,14301,1209,5915], +[0,1180,1291], +[1,2343,8682], +[0,0,8684,2514,2523], +"-cjs", +[0,4384,1389,53,14311,87,14128,1573,90,14309,5835,5879], +[1,2343,8686], +[0,0,8687,8688,2487], +[0,1166,1173,1178,1184,1203,1208,14318,1267,1272,1437,1503,1610,1177,13936,1935,2126,3421,4039,4042,4045,4067,12613,14320], +[0,1172,5284,57,1291], +"standardx", +[1,2343,8692], +"layout", +[0,8693,8694,8695,2537], +[0,4545], +[0,1509,1597,1734,1177,1938,2297,2908,2907,4005,4042,4535], +[0,11415,6624,12620,38,36,5576,1388], +[3,549,12], +[2,8696,2844], +[1,2343,8699], +[0,8700,8701,8702,2443], +[0,1525,2070,2720,3445,4039,4484,3348,1155], +[0,14333,4865,4866,4874,7819,14334,4891,1009,1011,5476,14337,14338,5478,1429,1177,1938,1954,2899,3200,14339,4167,4172,4409,4469,4474,4508,91,594,2924,4677], +[0,5995,1293,3230,4978,14344], +[3,444,18], +[3,550,15], +"illu", +[1,2343,8715], +"tions-react", +[2,4273,8707], +[2,8705,8708], +[2,8704,8709], +"@swc/", +[2,8711,6706], +[3,958,16], +[2,8713,4607], +[0,7936,7938,7939,2537], +"react-table", +[1,2343,8718], +[0,0,8720,8721,2523], +"@swc/cli", +[0,1596,2228,2240,2314,14352,2759,2899,3954], +[0,14354,14355,14356,14357,1157,1396], +"-extensions", +[2,3751,8722], +[2,1962,8723], +[1,2343,8730], +"-system", +[2,4964,8726], +"itwin", +"itwinui", +[0,7967,7938,7939,2443], +[1,2343,8732], +[0,0,8733,8735,4139], +[0,13662,1317,1389,4389], +"jest-config", +[0,14357], +"unner", +"jest-runner", +"jest-run", +[2,8738,6901], +[3,2802,10], +[2,8740,1524], +[3,551,8], +"nsole", +[2,8742,8743], +"snapshot", +[2,2769,8745], +[2,2769,2649], +"jest-h", +"aste-map", +[2,8748,8749], +"reporters", +[2,552,8751], +"@jest/t", +"ransform", +[2,8753,8754], +"jest-re", +"gex-util", +[2,8756,8757], +[1,2343,8760], +[0,8766,8772,8774,2523], +"est-result", +[2,8753,8761], +"jest-m", +"essage-util", +[2,8763,8764], +[0,4100], +"-files", +[2,2356,8767], +[2,2772,8768], +"-dependencies", +[2,2797,8770], +[0,2899,1177,2759,1954,1938,1958,1903,1948,1970], +[3,6494,9], +[0,14372,1303,14374,14375], +[3,8762,11], +[2,8775,594], +"cromatch", +[2,7890,8777], +"raceful-fs", +[2,5246,8779], +"sequencer", +[2,8775,8781], +[1,2343,8789], +"easy", +"sive", +"immersive", +"instant", +"mocking", +[0,8792,8793,8794,2537], +"painless", +"runner", +[0,1797,3181,3183,3188,14380], +[0,1177,1903,1938,1954,1958,1970,2899,4039,4342,4459,4538,4588], +[0,2026,5130,14387,6690,14388,3361,5122,4030,7096,38,1896,3724,5995,5592], +"sandboxed", +[1,2343,8797], +[0,8798,8799,8810,2537], +[0,3299,15160], +[0,1192,15164], +"schemas", +[2,552,8800], +"@types/i", +"-report", +"-reports", +[2,1207,8804], +[2,8802,8805], +[3,8806,16], +"lib-coverage", +[2,8807,8808], +[0,1306,6875,1303,5165,7141,6641,1616], +"@tsd/typescript", +[1,2343,8813], +[0,0,0,8814,2537], +[0,1306,5284,676,3428,6875,1303,5165,7141,6641,1616], +[1,2343,8819], +[3,7729,13], +"chema", +[2,8816,8817], +[0,0,8822,8810,4139], +"jsdom-", +[2,8820,2202], +[0,1306,26406,1894,91], +"mock-store", +[2,3944,8823], +"dux-mock-store", +[2,5249,8825], +"-reg", +"iste", +"r-element", +[2,8828,8829], +[2,8827,8830], +[2,1746,8831], +[1,2343,8834], +[0,8835,8842,8843,34352], +[0,14413,1525,1457], +"jsonforms", +"rendere", +[2,8837,152], +"uischema", +"ization", +[2,5317,8840], +[0,2025,2228,1330,2236,2300,2247,2281], +[0,14416,14417,14418,7190,14419,14421,8309,14422,14423,14426,14428,14430,14433], +[1,2343,8845], +[0,0,0,8847,2523], +"@date-io/dayjs", +[0,1317,14438], +[3,4055,16], +[2,8848,2257], +[2,812,1781], +[3,6390,15], +"mport-css", +[2,8851,8852], +[1,2343,8855], +[0,8856,7938,7939,4139], +[0,43,46,1089,1093,1116,1132,1140,14443,1294,1298,1316,1318,1321,1322,14444,1336,1339,1342,12701,1344,1346,1348,1350,1352,12703,1354,1356,1358,14445,12704,1373,1376,14446,1386,14447,1402,1425,1428,12705,1440,1449,1450,12708,12709,14450,14453,12710,12711,12714,1663,1706,1711,14458,1715,1726,1801,2019,12715,14459,12719,2058,2059,2083,2147,2160,14460,2177,2213,2216,2217,12720,2562,2563,2567,2589,2605,2606,2612,14461,12722,2723,14464,14467,2950,2954,2957,12726,2962,14469,3086,14471,3099,12730,3134,12733,3186,3238,14473,14474,3239,3240,3245,3262,14477,3295,3439,12736,3443,3472,14478,3531,3535,3558,12737,3777,3931,12740,14479,4105,4106,4112,4124,12743,14480,12747,14483,4168,4173,4177,4189,4192,4206,4212,4214,4215,4235,12749,14484,4236,4239,4258,12750,4267,14487,4335,4338,12755,4347,4352,4370,4377,4433,14489,14491,4456,4461,12756,12757,12760,4548,4559,4595,12763,14492,14496,4659,4662,12764,14497,4724], +[1,2343,8858], +[0,8859,8863,8864,4139], +[0,3171,3445,4707,1695,2967,814,4430,1457,3183,14502,3560,3714,1537,14506,3923,14508,14512,14505], +[2,4807,3429], +"alias", +[2,812,8861], +[0,14515,3212,4389,4453,2759,4650,1389,14514], +[0,14518,1389], +[1,2343,8866], +[0,7967,7938,7939,2537], +[1,2343,8868], +[0,8869,8870,8871,2443], +[0,1209,12344], +[0,1596,14527,2759,14529,3774,4019], +[0,1317,6681,6887], +[1,2343,8873], +[0,7967,7938,7939,2523], +[1,2343,8875], +[0,8876,0,8877,34352], +[0,14544,14546,14548,53,5216,58,61,14249,5704,5809,5241,5874,87,92,101,9311,9100,4874,1091,14552,1137,1149,1448,1457,1462,1512,14557,1573,2141,2633,14558,3310,3403,1894,14562,2278,4218,4227,4246,3709,91,4535,14563,188,4747,2720,14564], +[0,14566,14568,14570,14571,14572,14574,5130,91,5284,4799,11608,8889,5995,14575,14576,14579,14580,14582,14584,14587,11498,14591,14592,14594,14596,4056,14597,14600,89,14601,14602,188,14603,14605,8889,3709,14607,14608,4218,14609], +1769904000000, +[1,2343,8880], +[0,8881,8882,8883,2399], +[0,14615,14616,14617], +[0,1170,1429,1177,2899,14621,3752,14622], +[0,1781,14626,1646,4647,1644,57,14628,4141,3917,6033,1149,14629], +[1,2343,8885], +[0,0,0,8886,2523], +[0,14634,14635,14636,14637,6988,14638,14639,14640,14641,14642,14643,14644], +"@lumino/polling", +"@lumino/", +"widgets", +[2,8888,8889], +"commands", +[2,8888,8891], +"algorithm", +[2,8888,8893], +[3,8892,10], +"reutils", +[2,8895,8896], +[1,2343,8903], +"messaging", +[2,8888,8899], +"signaling", +[2,8888,8901], +[0,8904,0,8908,4139], +[0,14652], +"disposable", +[2,8888,8905], +[3,8887,9], +[0,970,11154,1326,14654,6817,3122,14655], +"roperties", +[2,8907,8909], +[3,565,12], +"statedb", +[2,8911,8912], +[3,8894,9], +"pplication", +[2,8914,8915], +[3,565,15], +[2,8917,594], +[3,8913,13], +"ervices", +[2,8919,8920], +"coreutils", +[2,8911,8922], +"render", +"rendermime", +[2,8911,8925], +"docregistry", +[2,8911,8927], +[1,2343,8935], +"translation", +[2,8911,8930], +[2,8911,7842], +"-interfaces", +[2,8926,8933], +[0,8938,8939,2514,2537], +[3,8931,13], +[2,8936,8615], +[0,14660], +[0,3421,4389,4487,1894,3310,3752,91,4874], +[1,2343,8941], +[0,8943,8948,8950,34352], +"docopt", +[0,14667,14669,14671,14672,5241,83,14673,13998,14674,5564,14676,4649], +"glob2base", +"lodash.d", +"ifference", +[2,8945,8946], +[0,14680,48,53,5241,87,14682,94,97,10821,14684,827,14687,14689,10828,14691,11277,10837,11288,972,5087,4883,14693,14694,13995,14695,1193,1195,14697,14698,1208,1261,1268,14012,1282,14699,1462,1596,1610,1655,14702,1177,14707,2323,2529,2541,14708,2708,1192,2787,2820,3220,14711,3342,3377,3400,3415,3421,3697,1894,3786,89,3824,14714,14719,4039,4103,4111,14721,4307,4468,4469,91,2924,4676,4677], +"multipipe", +[0,1328,14723], +"safe-wipe", +[2,4832,6270], +"-theme-default", +[2,566,8953], +"-comment", +[2,8955,1574], +[2,4329,8956], +"indent", +[2,4293,8958], +"vinyl-s", +"tring", +[2,8960,8961], +[1,2343,8968], +"builtin-", +[2,8964,2051], +[2,1226,8965], +"opn-cli", +[0,8969,8970,8971,4139], +[0,14731,1398,2713,3923], +[0,2080,4255,4389,91], +[0,1398,6825,3101,7178], +[1,2343,8973], +[0,8974,8975,8976,2523], +[0,1082,14738,14741,2756,3433,1695], +[0,1149,14744,1506,2228,2240,2247,2253,2273,2281,3006,2899,3521,4019,89,14748], +[0,4504], +[1,2343,8978], +[0,0,0,8979,2523], +[0,14755,14756,14757,14759,14761], +"chatfanpage", +"api-con", +"-x", +"nect-x", +[2,8981,8983], +[3,8984,12], +"tiwtter", +[2,8985,8986], +[1,2343,8989], +[0,8990,8991,2514,2487], +[0,14768,1437,14769,1209,14770,3127,14774,14775,3152,14776,14777,4294,14780,14781], +[0,14785,1331,1512,1177,1903,1938,1954,1958,1970], +[1,2343,8993], +[0,7967,7938,7939,4139], +[1,2343,8995], +[0,8029,7938,7939,2399], +[1,2343,8999], +[2,8603,6847], +[2,8603,3742], +[0,8029,7938,7939,2523], +"tasklist", +[1,2343,9002], +[0,8029,7938,7939,2487], +[1,2343,9004], +[0,0,9012,9013,2523], +"move-", +"scroll", +"move-scroll", +[2,3877,9007], +"react-te", +"xtarea-autosize", +[2,9009,9010], +[0,2759], +[0,1359,2013,14824,6681], +[1,2343,9015], +[0,0,9016,9017,2523], +[0,1499,4093,2070,3445,1082,14830,2899,4193,2272,3188,4039,14829,1362,2597,2759,3460,1481,4535,1084,1389,1364,1615,4151,2839,2311], +[0,1862,6681,6567,14832,14833,1149,7003,14834,14835,14836,14838,14839,14840], +[1,2343,9019], +[0,0,9020,9021,2487], +[0,2899,8689,1926], +[0,14846,14847,14848,14849,14850], +[1,2343,9023], +[0,9024,9025,2514,2487], +[0,1413,1562,1676,2657,2685,3440,3763,3784,1000], +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], +"calendar", +[1,2343,9028], +[0,9029,9030,9031,2537], +[0,1362,14864,2712,1209], +[0,14869,1429,1177,1895,1955,2675,1776,2930,2990,2899,3259,3421,3519,1894,4193,4196,4246,3348], +[0,3469,3259,14873,7827,14874,14877], +[1,2343,9033], +[0,9034,9035,9036,2537], +[0,2607], +[0,1501,620,3123], +[0,1851,27], +[1,2343,9038], +[0,0,9039,5359,2537], +[0,2739,4763,3171,2278,34683,2297,1177,2205,2814,3984,4042,4086,4072,2765,2822,3363,3561,4167,6393,1894,1492,1610,4939,4320,48,2689,53,27098,6375,2654,3566,3989,30616,1165,3401,6371,6376,2898,3019,34673,29226,6372,7637,8149,7610,11275,26407,1907,6382,4555,87,29568,1937,5583,1938,1982,2881,2889,30620,6373,1948,2895,6390,811,33071,3963,2910,6379,816,2876,6387,6392,6385], +[3,593,11], +[2,9040,147], +[1,2343,9043], +[0,0,9048,9049,2537], +[3,586,12], +[2,9044,5602], +[3,9045,13], +[2,9046,623], +[0,2278,14892,1797], +[0,1367,2278,1623,14894], +[1,2343,9051], +[0,0,0,9055,2537], +"-react-", +[2,9052,3902], +[2,588,9053], +[0,1370], +[3,80,7], +[2,9056,5342], +[1,2343,9059], +[0,9060,9061,9062,4139], +[0,14904,1420,1437,1471,4290,4507,9731,4726], +[0,1166,3421,4481,1906], +[0,200,5403,14907,7009,6048,7201,6938,3656,14908,2585], +[1,2343,9064], +[0,9065,9066,9067,2537], +[0,14923,814,14924,4431], +[0,1389,1537,4384,4430], +[0,1389,14927,2150,14930,1932,2947,14932,6374,14357], +[1,2343,9069], +[0,9070,9077,9078,2537], +[0,1676,3181,4648,14940,14937,14939,14938], +[2,597,592], +[3,9071,14], +"ystem", +[2,9072,9073], +[2,597,553], +[2,597,594], +[0,1429,2899,4039,2151,3980,14942,1951,1385,14944], +[0,14938,5284], +[1,2343,9080], +[0,9081,9082,9083,2537], +[0,14938,1380], +[0,14953,1385,1429,2899,14942], +[0,14938,1698,1585], +[1,2343,9085], +[0,9086,9090,2514,2487], +[0,6520,14959,2116,14939,4449,4648], +[3,603,15], +"documenter", +[2,9087,9088], +[0,4856,6503,4874,14962,1429,1540,2899,14964,3421,1894,14967,4487,4490,14970,91], +"json-api", +[1,2343,9095], +"json:api", +"normalizer", +[0,9096,9097,9098,2487], +[0,14978,14980,14981,1437,1457,1544,1549,14982,14985,14986,984,2145,2151,2659,2700,3170,3459,13399,3784,14990,4093,710,4150,4151,4153,4218,11804,4747], +[0,4874,14992,1429,14995,2215,13333,2899,1894,3760,705,4019,4039,4193,4220,4232,4294,4342,91,4597], +[0,14998,1623,15000,15001], +[3,4873,9], +"@types/mdx", +[1,2343,9103], +"mdx", +[0,9104,9105,9106,2523], +[0,1002,2070,614,1695,1145,1398,2018,2571,15043,15016,7029,3729,814,2713,3757,4431,15017,15019,2861,15020,15030,4165,15040,15006,15044,1537,15031,15037,15048,15018,15028,15042,15047,15007,15009,3502,15033,3923,15022,15036,1618,15039,15046,15014,15013,15015,13818,15024], +[0,15060,4384,1241,4135,4430,1292,15057,15052,1506,15051,15055,15056,15059], +[0,1388,3209,10906,15064,6374,3378,5284], +"encryptor", +[1,2343,34414], +"-model", +[2,603,9109], +"@rushstack/node-core-library", +[3,9111,11], +[2,9112,7009], +[3,9113,12], +"s-comm", +[0,15070,15071,15073,814,4430], +"and-line", +[2,9115,9117], +[2,9114,9118], +"rig-package", +[2,9112,9120], +[0,2832,3275,3752,705,4039,4384,15077], +"heft-node-rig", +[2,9112,9123], +[3,9124,15], +"eft-jest", +[2,6495,9126], +[3,7892,12], +[2,9128,3180], +[2,5554,7625], +[0,1389,14927,1858,2202,2203,353,11316,10906], +"JSDoc", +"AEDoc", +"TSDoc", +"alpha", +"beta", +[1,2343,9138], +[0,9139,0,9140,34352], +[0,28572,1423,14227,15085,15088], +[0,1421,2887,15090], +"tsdoc-build-rig", +[1,2343,9144], +"ig", +[0,9145,9147,9148,2443], +[0,15095], +[3,1937,15], +[0,4389,4039,91,4874,15097], +[0,15100,15101,1616,15102,15103,15105,10368,9254,15107], +[1,2343,9150], +[0,0,9151,9152,2399], +[0,3421,4390,4481,1429,3348,1437,2899,4193,1177,4042,4474,1894,1317,3310,4196,91,4856,4874,6503,6513,3090,6512,4232,1978,1895,1955,603,10817,1011,816,15115,1009,549], +[0,3230,1395,57], +"jju", +[1,2343,9155], +[0,0,0,9157,2487], +"@types/jju", +[0,1396,1388], +[1,2343,9159], +[0,9160,9164,9168,4139], +[0,1082,15127,15128,1437,3090,3183,15130], +"@dat", +"astream/core", +[2,9161,9162], +[0,15132,1177,2070,2899,4039,4042,15134,811,8850,816,4227,4232,15136], +"@types/a", +"ws-lambda", +[2,9165,9166], +[0,5284,15139,15140,15141,6778,7192,5194,6598], +"Lambda", +"Middleware", +"Serverless", +"Framework", +"AWS", +"AWS Lambda", +[1,2343,9176], +[0,9177,9178,9179,2443], +[0,1301,13811], +[0,1090,1317,1389,1537,2676,13651,13633,4237,4389,4431,4535], +[0,6866,1388,1389,1398,15148,6735,15149], +[1,2343,9181], +[0,0,9187,9188,2537], +"Middy", +"HTTP", +"Body Parser", +" Body Parser", +[2,6671,9185], +[0,13614,1158,1159,1177,2708,3410,4103,4389], +[0,1398,4162], +[1,2343,9190], +[0,9197,9198,9199,2537], +[3,7709,17], +"sm", +[2,9191,9192], +"aws-", +"xray-sdk", +[2,9194,9195], +[0,15160], +[0,2899,640,15164], +[0,1401], +[1,2343,9201], +[0,0,8134,9202,2523], +[0,4061,15174,4062,202,5260,364,15175,3392,4552,1460], +"moj", +[2,4964,6770], +[1,2343,9206], +[0,0,9208,9222,2523], +"hash-base", +[0,1637,3566,1894,4039,2278], +"@open-", +"draft", +"/deferred-promise", +[2,9210,9211], +[2,9209,9212], +[3,9213,12], +[2,9214,2942], +"until", +[2,9214,9216], +"is-node-process", +"outvariant", +"ct-event-emitter", +[2,4285,9220], +[0,1623,2278,4329,15182,10052,6398,5130], +[1,2343,9232], +"test-server", +[2,9214,9224], +"@ossjs/release", +[2,4860,982], +[3,7808,15], +"upload", +"fileupload", +[2,9228,9230], +[0,9234,9238,9253,2523], +"rate-limit", +[0,5923,15187,8646,688,691,9296,15194,11420,1170,1437,1676,29297,15197,3445], +[3,7810,9], +"llow-redirects", +[2,9235,9236], +[0,9736,9737,4856,5245,15203,6503,4874,6513,1009,1429,1177,1891,1893,1895,1955,2899,3211,3297,3377,3421,1890,4172,4193,4474,91], +"upertest", +[2,5051,9239], +"@types/ws", +"engine.io-parser", +[2,2032,9230], +[2,2032,9233], +[2,4183,1960], +[3,4220,10], +[2,9246,57], +"ironment-miniflare", +[2,8156,9248], +[2,1984,9249], +[3,5572,9], +[2,9251,2022], +[0,5592,1745,3452,5593,15208,200], +"encoding", +[2,5925,9254], +[3,4684,9], +"ttp-server", +[2,9256,9257], +[1,2343,9260], +[0,9263,9264,9265,2523], +"intercept", +"low-level", +[0,15006,15051,1537,14738,3183,4431], +[0,4389], +[0,1389,6374,15215,3178,3209], +[1,2343,9268], +"mui", +[0,9269,9270,9271,2487], +[0,15221,3220,15220,15223], +[0,15225,4384,4591,4593,3123], +[0,3073,6807,15227,1781,1409], +[2,619,553], +[2,619,594], +"@mui/base", +[1,2343,9276], +[0,9277,9278,9279,2487], +[0,15232], +[0,15234,1177], +[0,15236,25,15237,2139], +"core-", +"s-tracker", +[2,1764,9281], +[2,9280,9282], +[2,619,9283], +[1,2343,9286], +[0,9287,9288,9289,2537], +[0,3080], +[0,14408,15243,14406,15245,14405,14404], +[0,11995,4552,1398,6866,7270,1411,1781,4699,15247], +[1,2343,9294], +"theming", +[2,5695,9291], +[2,619,9292], +[0,0,9295,9297,2537], +[0,1177,1948,2899,3421], +[2,9710,15201], +[0,1412,1413,6435,1644,57,6270,15253], +[1,2343,9299], +[0,9303,9304,9305,2537], +"mui-x", +"timepicker", +[2,1666,9301], +[0,15258,8697,2105,15261,11935,11938,11943,14025,15262,4747,4748], +[0,4874,1429,15264,1610,2899,4255,4474,91], +[0,4504,15266,1973,2759,15267,3323,202], +[1,2343,9325], +"@headlessui/react", +"@iconify-icon/react", +[3,602,8], +[2,9309,1194], +"@mdx-js/mdx", +"@shikijs/transformers", +"@theguild/remark-npm2yarn", +"nist", +[2,7817,9314], +"@vcarl/remark-headings", +"approximate-number", +"-watch-webpack-plugin", +[2,2473,9318], +"flex", +"flexsearch", +"git-url-parse", +"phrasing", +[2,3138,9323], +[0,0,9326,2514,2523], +[0,6041,1192,2020,2675,2205,4042,668,12444,4468,4474,4508,2151,1894,15275,91,53,5087,2990,3123,4864,4131,15276,4057,15277,811,1652,816,15273], +"next-seo", +"-async", +[2,3830,9328], +[3,3968,10], +"ract", +"-excerpt", +[2,9331,9332], +[2,9330,9333], +"rehype-p", +"retty-code", +[2,9335,9336], +"matter", +"frontmatter", +[2,3986,9339], +"remark-h", +"eading-id", +[2,9341,9342], +"link-", +"rewrite", +[2,9344,9345], +[2,3986,9346], +"shiki", +[1,2343,9356], +"-themer", +[2,4383,9350], +"virtual-", +[2,9352,5260], +[2,4670,9353], +"zustand", +[0,9369,9370,9371,2443], +[2,4860,4349], +"tra-watch-webpack-plugin", +[2,8773,9358], +[3,7634,10], +"-url-parse", +[2,9360,9361], +[2,9099,6892], +"@repo/eslint-config", +"@repo/", +[2,4524,1541], +[2,9365,9366], +[2,9365,7628], +[0,2928,32554], +[0,11976,15288,8419,4874,7677,37080,8420,4039,4493,91,1984,8422], +[0,2325,20164,8436,202,10339,8437,1552,3143,8438,9553,8439,8440,8441,8442,8443], +[1,2343,9373], +[0,9377,9380,9385,2537], +[3,5309,9], +[2,9374,8924], +[2,9374,57], +[0,9441,15305,15308,15310], +"css-what", +"esthetic", +[0,13614,1159,9254,1855,1177,2011,2133,13619,2708,3410,3421,3431,4103,4389], +"builder", +"guides", +"demo", +"ng-doc", +[0,5284,5286,3595,676,6716,7239,6714,6715,7162,1417,7272,3046,6830], +[1,2343,9387], +[0,0,8134,9388,2537], +[0,1420,15320,15318,15321,13230,15322,1758,4545,15323,1871,2585,6270,15324,15326], +[1,2343,9390], +[0,0,0,9391,2537], +[0,12080,12075,8221,1388], +[1,2343,9399], +[2,3964,1671], +"has-p", +[2,9394,3871], +[2,2573,9395], +[3,9396,11], +"eading-", +[0,0,0,9410,2523], +"eading-rank", +[2,9397,9400], +"rehype-m", +"inify-", +[2,9403,3661], +[2,9402,9404], +[3,4555,11], +[2,9406,7131], +[3,9312,9], +[2,9408,3958], +[0,4231], +[1,2343,9412], +[0,9413,9418,9419,34352], +[0,3299,32944], +"ordinal", +[3,6490,12], +"as-promised", +[2,9415,9416], +[0,4874,15342,2026,2822,2899,3536,4255,4481,91], +[0,1424,15344,11812,15345,15346,158,11806,2636], +"ethers", +"hat", +"hardhat", +"n.js", +[2,4853,9423], +[3,634,25], +[2,9425,9420], +[3,634,17], +"low-", +"low-imports", +[2,1967,9429], +[2,9427,9430], +[3,9431,31], +"-inter", +"nal-rules", +[2,9433,9434], +[2,9422,9435], +[2,9432,9436], +[1,2343,9442], +"ethereum", +"smart-contracts", +[2,1417,15307], +[0,0,9443,9444,2537], +[0,1159,1177,1881,1938,2151,2899,2924], +[0,2924,1932,15356,1204,3209], +[1,2343,9446], +[0,0,0,9450,2523], +"proggy", +"cacache", +"bin-links", +[0,3521,15361,1973,5472,15362], +"treeverse", +"@npmcli/fs", +"walk-", +"up-path", +[2,9453,9454], +[2,636,3766], +[3,643,9], +"edact", +[2,9457,9458], +"npm-p", +"ick-manifest", +[2,9460,9461], +"-checks", +[2,1161,9463], +[2,3382,9464], +"promise-", +[1,2343,9482], +"call-limit", +[2,9466,9468], +[3,2854,15], +"nice", +[2,9470,9471], +"-conf", +"lict-json", +[2,9473,9474], +[2,1644,9475], +"package-", +[2,9477,1781], +[2,636,9478], +"common-", +"ance", +[0,0,9511,9521,2523], +"stor-path", +[2,9481,9483], +[2,9480,9484], +"read-p", +"ackage-json-fast", +[2,9486,9487], +"all-reject-late", +[2,9466,9489], +[3,641,9], +"ame-from-folder", +[2,9491,9492], +[3,638,9], +"etavuln-calculator", +[2,9494,9495], +[3,548,8], +"e-compare", +[2,2703,9498], +[2,4284,9499], +[2,9497,9500], +"json-p", +"arse", +"-even-better-errors", +[2,9503,9504], +[2,9502,9505], +"installe", +"d-package-contents", +[2,9507,9508], +[2,636,9509], +[0,1414,15370,2899,1177,668,2203,15371,1690,1894,442,91,15373,15374,5476,1942,15376,811,5478], +"tcompare", +"oss", +[2,4641,9513], +[2,636,9514], +[2,636,7625], +"minify-", +[3,3396,9], +[2,9518,6774], +[2,9517,9519], +[0,1973,6468,1145,5472,1429], +[1,2343,9523], +[0,9524,9525,9526,2523], +[0,15373], +[0,1414,1429,2899,1177,2203,1894,442], +[0,1429,15385,1388,1149,5472,5710,6567,14833], +[2,664,591], +[1,2343,9529], +[0,0,9530,9531,34352], +[0,3095,2899,1429], +[0,1429,3495,15393], +[1,2343,9533], +[0,0,9534,9535,34352], +[0,1429,2899,2759,1596,14942,15398], +[0,1429,15385,15400,1435,6793,1932,15402,1697,15403,3529,9549,7015,15405], +[3,9479,9], +"-spawn", +[2,2751,9537], +[2,9536,9538], +[1,2343,9541], +[0,0,9543,9544,4139], +"spawk", +[0,1414,1906,1166,4481,2020,3130,3077,15411,4874,6271], +[0,1473,7208,1512,7009,7201,200,1871,1111,590,592,6621,6983,6616,7244,4166,4744,3073,6807,6876,2585], +[1,2343,9546], +[0,0,9571,9581,2399], +"innertext", +"highlights", +"similar", +"similarity", +[3,2954,9], +[2,9551,2714], +"ttl", +[2,4635,9553], +"dart", +[2,9551,9555], +"glsl", +[2,9551,9557], +"haxe", +[2,9551,9559], +"rust", +[2,9551,9561], +[2,3064,2204], +"erlang", +[2,9551,9564], +[2,9551,4333], +"-tokens", +[2,9548,9567], +"atom-language-diff", +[3,9569,14], +[0,1166,1178,1596,15418,1177,15421,2323,15423,2384,2494,2510,15424,1209,3421,3756], +"nginx", +[2,9570,9572], +"url-t", +"o-object", +[2,9574,9575], +[2,2287,9576], +[3,3114,13], +"xpand-tabs", +[2,9578,9579], +[0,1438,3778,1179,1973,15426,1213,15427,15428], +"-headers", +[2,7189,9582], +[2,3108,9583], +[1,2343,9589], +"oniguruma", +"-stdout", +[2,9261,9587], +[0,0,0,9590,2523], +[0,1444,15321,6270,353,15320,15326,15436,15437,15439], +"readme", +[1,2343,9596], +"formatted", +" highlighting", +[2,5341,9594], +[0,9597,9598,2514,2537], +[0,15444,9632,1556,15447,6041,15448,15449,3445,3510,15450,15451,4135,15452], +[0,4874,5254,7677,1177,1905,2807,1894,4257,91,4543,1984], +[1,2343,9600], +[0,9601,9602,9603,2537], +[0,15458], +[0,811,15460,8850,816,842,1006,15463,1009,1011,15465,15467,15469,1540,1596,1610,1177,15471,1927,1937,1948,1999,2070,2765,2766,2297,2881,2886,2891,2895,2898,6387,2910,15475,2923,5303,3220,3222,3536,4042,4052,6390,15478,4073,91,4747], +[0,1424,15480,2382,15481,12075,6398], +[1,2343,9605], +[0,9606,9607,9608,2443], +[0,3493,4548,15488,15487,2654,15486,1754,15502,15491,15499,15495], +[0,4494,4483,2675,2832,1177,2814,1984,2203,1894,4441,442,91,4874,2990,13204,19438,15504,1953,15505,4523,7677,1942,22839,1982,3703,15507,1895], +[0,15512,2814,3585,15514,57,965,6523,1936], +[1,2343,9610], +[0,9611,9612,9613,2523], +[0,1615,15526,3734], +[0,1173,14184,1235,1267,1429,1177,2272,2899], +[0,1451,3729,6567], +[1,2343,9615], +[0,9616,9617,9618,2537], +[0,97,15533,8597,15538,13042,1156,1325,15540,1461,1505,12160,1582,1593,1603,15541,15545,15547,15548,13047,15550,5100,15551,15553,2752,2822,15554,2272,15555,15556,12172,3220,15559,1894,11196,15560,15562,3775,11219,11363,15566,15568,15570,15573,3843,3847,15575,15578,3876,3893,3913,4023,15579,11264,4163,15580,4484,4545,4649,3348], +[0,53,61,71,73,76,78,5806,13052,5835,15585,83,5850,5853,87,90,7833,7839,7840,11275,4859,15587,15592,4863,15594,15596,5087,15598,4870,15600,15602,12179,4880,15605,4883,15606,15607,11322,1009,1011,1110,1165,1170,1175,1178,1193,1195,1205,13080,5098,15609,15611,15612,15613,1426,1437,13086,1525,1610,1628,4912,1639,11336,13093,1843,1845,8160,1177,1879,1895,1922,1938,1939,1947,1948,1959,15615,2054,2060,11345,2092,2148,2193,2070,2323,2338,2510,13099,2529,2675,2686,2697,15616,1192,2832,5102,695,13115,2990,1209,11357,13119,15618,13123,3177,3183,3188,3190,3191,3213,3216,3222,3427,3463,3561,3618,3720,11204,15619,15622,11362,89,3807,3810,3817,3820,5106,5108,15624,3846,15627,9340,3992,13124,13127,8304,13128,4039,13129,15629,4320,11384,11389,4323,11396,4328,4409,4431,4469,91,4549,4027,15630,15632,2924,15635,4689,13152,11401,5038,3354], +[0,15637,4964,89,5128,4627,4963,181,5130,4967], +[1,2343,9620], +[0,9629,9630,9631,2537], +"Monorepo", +"Angular", +"Web", +"Node", +"Nest", +"Jest", +"Cypress", +"CLI", +[0,15648], +[0,15645,4874,1894,4448,91,10761], +[0,2150,2282,6720,7158,6929,2090,2154], +"confbox", +[1,2343,9634], +[0,0,9635,9636,2523], +[0,1470,2675,23535,4255,4389], +[0,15656,15658,11857,1973,13735], +[2,13512,9638], +"-old", +[1,2343,9640], +[0,9641,0,9642,2523], +[0,182,148,6164,164,167,6215,137,27531,6127,29468,159,15664,177,187,153,162,180,185,191,157,15667,15670,15672,27537,140,15676,6200,6166,143,15678,171,116,15681,150,155,29542,15685,15687,6217,15690,15692,122,169,15695,119,15697,15700,6173,15703,146,6133,6158,15706,15712,111,6168,15714,15716,174,15720,15724], +[0,6092,1459,6094,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130], +[1,2343,9644], +[0,0,9645,9646,2523], +[0,4481,4042,4441,2665,3117,8850,811,816], +[0,89,1623,5256,6848,1461,614,6435], +"EsBuild", +"Front-end", +"Backend", +[1,2343,9651], +[0,9652,9653,9655,2523], +[0,4227], +[0,1389,1177,1881,2659,3297,4153,4616], +"linter", +[0,1623,2632], +[1,2343,9660], +"Lint", +"ESLint", +"Testing", +[0,9661,9662,9663,2399], +[0,1700], +[0,48,53,87,92,15742,5087,4874,15745,1193,1503,1610,1701,1177,2020,2675,1192,2990,2991,3377,1894,3921,4135,15747,91,2924], +[0,2924,1932,4050,202], +[1,2343,9665], +[0,0,0,9666,2523], +[0,1111,1468,7009], +"Express", +[1,2343,9669], +[0,9670,8134,9671,4139], +[0,15757,4025], +[0,1468,1237,3209,1204,2325,15759,15760,15761,5669,6865,7293,6790,2145], +[1,2343,9674], +"js-tokens", +[0,9679,0,9682,2523], +"const-enum", +[2,1199,9675], +[2,4524,6774], +[2,1226,9677], +[0,2070,2021], +"Swc", +"Tsc", +[0,200,9753,15767,15769,15768,7058,7201,15770,15771,15774,1523,15776], +[1,2343,9684], +[0,0,9685,9686,4139], +[0,1166,91,1906], +[0,200,5403,14907,7009,6048,7201,6938,3656,14908,2585,1781], +"@nestjs/schematics", +"@phenomnomnominal/tsquery", +"@date-fns/tz", +[1,2343,9691], +[0,9693,9694,9695,2537], +[3,23750,37,8], +[0,2353,1856,15786,13824,15788], +[0,1177,15793,15797,15801,2675,2990,3421,15804,15805], +[0,1111,1473,7201,7009,200,4166,3073,6807,4744], +[1,2343,9697], +[0,9698,9699,9700,2443], +[0,4035], +[0,4874,1166,91,1906], +[0,200,13006,1111,15813,5876,15814,15815,6048,7009,7201,6621,4166,6876], +[1,2343,9702], +[0,0,0,9703,34352], +[0,200], +[2,689,2656], +[3,691,8], +[2,9705,3320], +"help", +[2,689,9707], +[1,2343,9713], +[3,691,14], +"plugins", +[2,9710,9711], +[0,0,9715,9716,2537], +"fancy-test", +[0,1166,3077,15826,91,1906], +[0,200,1478,6787,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921,1781], +[1,2343,9718], +[0,9719,9720,9726,2399], +[0,1512], +[0,4170,15833], +[3,4866,9], +"dent-string", +[2,9721,9722], +"xyquire", +[2,6508,9724], +[0,200,1512,176], +[1,2343,9728], +[0,9729,9732,9751,2523], +[0,1209,4290,1512], +"clean-stack", +"widest-line", +[0,15841,1429,1481,1596,15843,15844,2323,2436,2463,2541,4193,4196], +"rett", +"ier-config", +[2,9733,9734], +[2,9705,9735], +[2,689,1973], +[3,4859,9], +"ean-stack", +[2,9738,9739], +"@types/ejs", +"npapi", +[2,5088,9742], +[3,9240,10], +"ports-color", +[2,9744,9745], +[3,7822,10], +"dwrap", +[2,9747,9748], +"madge", +[0,202,1523,3924,200,176,15846,15847,3656,1512,10052], +" line", +[2,1523,9752], +[1,2343,9755], +[0,9756,9757,9751,2399], +[0,4290], +[0,1481,1177,1895,1955,1192,15853,15854,1894], +[1,2343,9759], +[0,9761,8134,9762,2399], +[2,1890,4406], +[0,4208,4290], +[0,15862,15864,2585,7051,6913,200,7009,6048,4166,4289,1111,1871], +[1,2343,9764], +[0,9775,9795,6936,2537], +"paginate-rest", +[2,1186,9765], +[2,7724,9766], +[3,9767,16], +"request-", +"request-log", +[2,9768,9770], +[3,9771,18], +"st-endpoint-methods", +[2,9772,9773], +[0,1437,4484,2755,1209,4135,2822,15869,2151,4294,688,1110,9730,15871,1107,13223,4290,15872,15873,2709,15876,4351,15877,15880,15883,15887], +"-action", +"auth-action", +[2,7724,9777], +[3,9778,15], +"pp", +[2,9779,9780], +[2,1182,2995], +[2,7724,9782], +[3,692,11], +[2,9784,5460], +[2,7724,2190], +"update-", +"vers", +"in-files", +[2,7854,9789], +[2,9788,9790], +[2,9787,9791], +[2,6324,9792], +[2,4131,9793], +[0,1429,1170,2899,1177,4474,9714,91,4856,4874,6503,4870,5254,7637,4864,1431,15891,15893,9740,1891,15897,9746,9417,1893], +"octokit", +[3,3450,10], +[1,2343,9799], +[0,9800,9801,9802,2523], +[0,7103], +[0,816,10817,5087,4870,4874,27744,1009,1011,15903,15906,1177,15909,1959,2188,1192,1209,4042,15911,4468,4474,91], +[0,200,91,57,7119,7233,7058,5675,1523], +"action-menu", +[2,698,9803], +[3,9804,21], +"sheet", +[2,9805,9806], +[3,9804,15], +"lert", +[2,9808,9809], +[2,9808,2944], +"nchor", +[2,9808,9812], +"rea", +[2,9808,9814], +"chart", +"flowchart", +[2,5745,9817], +[2,9808,9818], +"utocomplete", +[2,9808,9820], +[1,2343,9823], +[0,9824,9825,9827,2523], +[0,15917,1631,15918], +[0,53,87,1195,1429,1610,1177,1881,1895,1938,1955,2675,2297,2878,2881,2900,2918,2925,2990,2899,1894,4193,4481,4537,2924,4677], +"vatar", +[0,1492,1585,15921], +"badge", +[2,698,9828], +[3,9829,16], +[1,2343,9832], +[0,9836,9839,9881,2537], +"se-select", +[2,9830,9833], +[3,9829,15], +[0,34216,2020,32794,2755,15926,28429], +"readcrumb", +[2,9835,9837], +[0,1166,1906], +"-item", +[2,9838,9840], +"ulletin-board", +[2,9835,9842], +[3,9843,16], +"tton", +[2,9844,9845], +"-group", +[2,9846,9847], +[2,698,9026], +[2,9849,8657], +[3,9850,23], +[2,9851,6624], +[3,9849,16], +"rd", +[2,9853,9854], +[2,9855,9847], +[3,9856,19], +[2,9857,1283], +[3,9855,17], +"ousel", +[2,9859,9860], +[2,9861,9840], +"scader", +[2,9853,9863], +"-menu", +[2,9864,9865], +[3,9866,24], +"obile", +[2,9867,9868], +[3,9866,23], +[2,9870,202], +"panel", +[2,9870,9872], +[2,9870,1631], +[2,9870,6624], +[3,9849,15], +"ell", +[2,9876,9877], +"hart", +[2,9876,9879], +[0,1492,1585,15928,15929,15930,3917,6033,15931,1490,15932,15933], +[1,2343,9883], +[0,9884,9885,6162,2537], +[0,4290,4294,4726], +[0,4874,1009,1011,1414,1429,1437,1610,1177,1938,1953,2321,2899,4039,8689,91], +[1,2343,9887], +[0,0,9888,2514,2487], +[0,2276], +[1,2343,9890], +[0,0,9891,9893,2399], +[0,1999,4579,4072], +"gauge", +[0,5256,6848,1461], +[1,2343,9895], +[0,9896,0,9897,2523], +[0,1474], +[0,15953,9628,14777,15955,1478,9892,3924,7201,1398], +[1,2343,9899], +[0,0,9900,9901,2487], +[0,1389,15960,2899,3261], +[0,1149,2124,1179,15962,15964], +[1,2343,9903], +[0,9904,9905,9907,2537], +[0,2927], +[0,4170,2899,1499], +"pie", +[0,7009,7201,3741,8622,6875,10098,1499], +[1,2343,9909], +[0,9034,9910,9911,2523], +[0,620,3123], +[0,1973,2022,6468], +[1,2343,9913], +[0,9914,9915,9916,2443], +[0,6478,15980,2822,15984,15985], +[0,1177,1895,2675,1192,2990,3203,1894], +[0,4504,15988,15990,1503], +[1,2343,9918], +[0,9919,9920,9921,2487], +[0,15997,15999,16000,16002,16003,16005,16006], +[0,16009], +[0,6038,1501], +[1,2343,9923], +[0,0,9924,9926,2399], +[0,1734,16015,2600,3105,4545], +"fall", +[0,5284,1351,1509,4643], +[1,2343,9928], +[0,0,9929,9926,2537], +[0,53,87,10688,1505,1734,2600,16021,3105,3758,4545,2924], +[1,2343,9946], +[3,9880,16], +"eckbox", +[2,9931,9932], +"-button", +[2,9933,9934], +[3,9935,23], +[2,9936,7227], +[2,9876,7877], +"lapse", +[2,9938,9939], +[2,9940,9840], +[3,9941,23], +"ition", +"transition", +[2,9942,9944], +[0,9972,9975,10072,2537], +"icker", +"or-picker", +[2,9938,9948], +[3,9949,20], +"select-", +[2,9951,9872], +[2,9950,9952], +"umn-list-group", +[2,9938,9954], +[3,9955,26], +[2,9956,5401], +[3,9938,16], +"mpany", +[2,9958,9959], +"nfig-", +"provider", +[2,9961,9962], +[2,9958,9963], +[3,9964,17], +"tainer", +[2,9965,9966], +"untry", +[2,9958,9968], +"rop", +[2,9876,9970], +[0,6271,11421], +"urrency", +[2,9876,9973], +[0,2899,4481,1906], +"date-panel", +[2,698,9976], +[3,9977,20], +[2,9978,9947], +"-mobile-", +"first", +[2,9980,9981], +[2,9979,9982], +[3,9977,19], +[2,9984,6754], +[2,9984,176], +[3,9977,15], +"ept", +[2,9987,9988], +"ialog-box", +[2,9987,9990], +[3,9991,21], +[2,9992,1631], +[3,9991,16], +"vider", +[2,9994,9995], +"rawer", +[2,9987,9997], +[3,9998,16], +"op-roles", +[2,9999,10000], +[3,10001,19], +"times", +[2,10002,10003], +[3,10001,18], +[2,10005,2971], +[2,10006,9840], +[3,10007,23], +[2,10008,4403], +"ynamic-", +"scroller", +[2,10010,10011], +[2,9987,10012], +[2,10013,9840], +"espace", +[2,698,10015], +[3,10016,15], +"xception", +[2,10017,10018], +"fall-menu", +[2,698,10020], +[3,10021,15], +"ile-upload", +[2,10022,10023], +[3,10024,17], +[2,10025,2389], +[2,10026,8657], +[3,10027,22], +"ox", +[2,10028,10029], +[3,10027,21], +[2,10031,9872], +"loat-button", +[2,10022,10033], +[3,10034,19], +"bar", +[2,10035,10036], +"ing-", +"button", +"ing-button", +[2,10035,10040], +[3,10034,17], +"wchart", +[2,10042,10043], +[3,10034,16], +"uent-editor", +[2,10045,10046], +[2,10022,3469], +[2,10048,9840], +"ullscreen", +[2,10022,10050], +"grid", +[2,698,10052], +"-column", +[2,10053,10054], +[3,10055,19], +"manager", +[2,10056,10057], +"toolbar", +[2,10056,10059], +[3,10053,15], +"uide", +[2,10061,10062], +"hrapprover", +[2,698,10064], +[2,698,158], +"-viewer", +[2,10066,10067], +[3,10066,15], +"ndex-bar", +[2,10069,10070], +[0,1473,7208,1623], +[3,10071,16], +"put", +[2,10073,10074], +"p-address", +[2,10069,10076], +[2,698,5433], +[3,10078,16], +"yout", +[2,10079,10080], +[3,10078,15], +[2,10082,2716], +[2,10083,9865], +[1,2343,10086], +[0,0,0,10090,2523], +"oading", +[2,10082,10087], +[3,10088,16], +[0,7009,592,1473,1111], +"cales", +[2,10089,10091], +"gon-user", +[2,10089,10093], +[3,10094,18], +"ut", +[2,10095,10096], +"mask", +[2,698,10098], +[3,10099,15], +"enu", +[2,10100,10101], +[3,10102,16], +"ssage", +[2,10103,10104], +"ilestone", +[2,10100,10106], +[3,10107,16], +"nd-map", +[2,10108,10109], +[1,2343,10112], +[0,0,10113,10120,2523], +[0,1177,1886], +[2,10100,3852], +[3,10114,16], +"nth-range", +[2,10115,10116], +[3,10117,20], +[2,10118,176], +[0,1111,7009,1512], +[1,2343,10122], +[0,10140,10184,10220,2443], +"nav-bar", +[2,698,10123], +[3,10124,18], +[2,10125,4403], +[3,10124,15], +[2,10127,2304], +"umeric", +[2,10127,10129], +[2,698,5675], +[2,10131,9847], +"pager", +[2,698,10133], +[2,10134,9840], +[3,10134,16], +[2,10136,7251], +[3,10134,15], +[2,10138,9947], +[0,4294,16041], +"op-upload", +[2,10138,10141], +[3,10142,17], +[2,10143,8622], +[2,10143,6038], +[2,10143,2883], +[2,10143,2104], +"rogress", +[2,10138,10148], +"ull-refresh", +[2,10138,10150], +"qr-code", +[2,698,10152], +[3,10153,15], +"uarter-panel", +[2,10154,10155], +[3,10156,16], +"ery-builder", +[2,10157,10158], +[3,697,15], +"adio", +[2,10160,10161], +[2,10162,9934], +[3,10163,20], +[2,10164,7227], +[3,10162,16], +[2,10166,6864], +[3,697,16], +"cord", +[2,10168,10169], +[3,10170,17], +"ycle-scroller", +[2,10171,10172], +"ich-text-editor", +[2,10160,10174], +[3,10175,16], +"ver", +[2,10176,10177], +"oles", +[2,10160,10179], +[3,10180,16], +"w", +[2,10181,10182], +[0,1173,1267,1437,4387,4389], +"scroll-text", +[2,698,10185], +[3,10186,20], +[2,10187,10036], +[3,10186,15], +"earch", +[2,10189,10190], +[3,10191,16], +[2,10192,4021], +"-dropdown", +[2,10193,10194], +[3,10195,21], +[2,10196,5131], +[2,10196,6624], +"ed-box", +[2,10193,10199], +[2,10189,1580], +"keleton", +[2,10189,10202], +[2,10203,9840], +"lider", +[2,10189,10205], +[2,10206,9934], +[2,10207,9847], +"plit", +[2,10189,10209], +"-list-item", +[2,1902,10211], +[2,10189,10212], +[3,10213,17], +"tistic", +[2,10214,10215], +[3,10213,16], +"eps", +[2,10217,10218], +[0,6922,2585,1111,7201,7009,4719,176], +[1,2343,10242], +"witch", +[2,10189,10222], +[3,700,15], +"ab-item", +[2,10224,10225], +[3,10226,17], +[2,10227,10036], +[2,10228,9840], +[2,10227,2699], +[2,10227,591], +[3,10226,16], +"g", +[2,10232,10233], +[2,10234,9847], +"ext-popup", +[2,10224,10236], +"ime", +[2,10224,10238], +"-line", +[2,10239,10240], +[0,0,10243,10265,2487], +[0,2025,2272,2899], +[3,10241,19], +[2,10244,9872], +[3,10245,20], +[2,10246,9947], +[2,10247,701], +[2,10244,6754], +[2,10244,1631], +[3,10250,20], +"pinner", +[2,10251,10252], +"line-item", +[2,10239,10254], +"oast", +[2,10224,10256], +[3,10257,16], +"ggle-menu", +[2,10258,10259], +"oltip", +[2,10258,10261], +"p-box", +[2,10258,10263], +[0,200,1523,3504], +"ransfer", +[2,10224,10266], +"-panel", +[2,10267,10268], +[3,10267,16], +"ee", +[2,10270,10271], +[2,10272,9865], +[3,10273,19], +[2,10274,1631], +[2,698,9229], +"-dragger", +[2,10276,10277], +[3,10278,21], +[2,10279,3392], +[3,10276,15], +"ser", +[2,10281,10282], +"-account", +[2,10283,10284], +[3,10285,19], +[1,2343,10288], +[0,10297,10298,10305,2443], +"contact", +[2,10286,10289], +[2,10286,3193], +[2,10291,9847], +[2,10286,163], +"watermark", +[2,698,10294], +[3,10295,15], +[0,16053,16056,3025,16057], +[0,1187], +"izard", +[2,10296,10299], +"year-range", +[2,698,10301], +[3,10302,19], +[2,10303,176], +[0,6478,1644,7233,7058,5675,14690,57,7119,200,1523,3924], +[3,1533,10], +[2,10306,6082], +"vue-c", +[2,10308,544], +"opentiny", +"less-c", +[2,10311,544], +[2,8924,10312], +[3,3197,10], +[2,10314,544], +[1,2343,10317], +[0,10318,10319,10320,2537], +[0,16053,16064,16066,16057], +[0,811,816,2829,4042,1187], +[0,7009,9753,1521,1179], +"esno", +[1,2343,10323], +[0,0,10324,10325,2537], +[0,4481,1192,1177,2203,4468,1894,442,91,5087,4874,4523,1939,1895], +[0,1525,1523,5675,57,200,7233,7058,6478], +[3,2517,9], +[2,10326,134], +[2,2522,8754], +[1,2343,10330], +[0,10331,10332,10333,2523], +[0,2070,1680,1209,16085,16078,2151,2720,3183,7915,4296,1707,16082,4300,1652], +[0,3421,1429,3348,2899,4193,2194,4135,1503,3363,48,2708,3752,53,94,4131,87,3200,1208,16092,16088,16090,78,1570], +[0,1528,3721,1671,16096,1527], +[1,2343,10335], +[0,10336,10338,5265,2537], +[0,192,6303], +"otterhttp", +[0,6306,6307,26379], +"node.js", +"web framework", +[1,2343,10343], +[3,17194,17], +[0,0,10344,10358,2487], +[0,1173,1178,1198,1230,13982,1264,1280,1503,1610,1742,1177,1895,1955,1192,3170,1894,4039,4042,4045,4067,4077,4706], +"header", +"-range-parser", +[2,10345,10346], +[2,704,1080], +[3,703,13], +"ntent-type", +[2,10349,10350], +[2,988,2706], +[2,704,10352], +[2,704,1000], +[2,704,1002], +[3,706,12], +[2,10356,995], +[0,4552,1172,6778,16107,5194,16108,16109,1936,8958,16110,3924,16111,3250,16112,3374,6985,16113,16114,16115,1871,16116,4301,10381,16117,1283], +[1,2343,10360], +[0,0,9839,10361,2487], +[0,2013,13771,2018,6868,15535,11631,16123], +[1,2343,10365], +"es-escape-html", +[3,10351,19], +[0,10375,10377,10378,2523], +"disposition", +[2,10364,10366], +"encode", +"encode-url", +[2,704,10369], +[3,10370,12], +"rrors", +[2,10371,10372], +[2,704,4590], +[0,1413,16130,1676,12627,16128,4100,4590], +"res", +[0,1087,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], +[0,1536,16518,25386,2663,2026,21665,27,3101], +[1,2343,10380], +[0,10383,9264,2514,2537], +"tag", +[2,10371,10381], +[0,16136,2713,3923,7231], +"send-file", +[1,2343,10386], +[0,10387,10388,10390,2537], +[0,4094,1437,4747,4459,4165,4351], +[0,2675,1177,1984,668,2203,1894,442,91,4874,2990,6479,4892,16151,16150,4523,16149,7677,4103,9746,22839,16144,1895,1955,16152,23753,10964], +[2,712,1732], +[0,16159,13792,12804,1540,1523,16160], +[1,2343,10394], +"fined", +"undefined", +[0,10395,10396,10398,2537], +[0,2856], +[0,4874,1414,1509,16166,34218,16167,3583,705,4135,4452,4474,91,4545,16168,4745], +"randexp", +[0,12084,1541,8309,16172,16174,1263,6639], +[3,10389,22], +"js-prettier-config", +[2,10399,10400], +"i-color", +[2,9738,10402], +[3,7744,9], +"tp-proxy", +[2,10404,10405], +"isnil", +[2,6308,10407], +[3,4874,9], +"@types/nock", +[1,2343,10412], +[0,10414,9839,10415,2537], +"@types/ramda", +[0,16181,8098,2215,34027,16184], +[0,1541,1542,13901,8309,6937,16188,1781,2382,16189,7007,14745], +"-and-tag-version", +[2,1528,10416], +"hai-friendly", +[2,4914,10418], +[3,3028,12], +[1,2343,10422], +[0,10423,10424,10425,2537], +[0,1676,2099,3494,4578], +[0,1177,2899,3421,4342], +[0,5130,5122,2663,1544,16196], +"pact", +"pact-js", +" testing", +"ract testing", +[2,3109,10429], +"r driven testing", +[2,6613,10431], +[1,2343,10434], +[0,0,10435,10436,2443], +[0,4616], +[0,1544,2026,16202,6347], +[1,2343,10438], +[0,0,10439,2514,2537], +[0,1177,1192,4193], +[1,2343,10444], +"default", +"waapi", +"urls", +[0,10445,10447,10448,2537], +[0,1676,16211], +"arguments", +[0,11436,192,5467,19181,442,5245,6494,7808,4874,9240,1009,1011,1166,1414,1503,1177,1895,1930,1955,2026,2040,2193,2675,2990,3230,3400,3446,1894,4257,4342,1531,4508,91], +[0,1544,1550,3230,1577,2026], +[1,2343,10450], +[0,0,10451,10452,2523], +[0,11976,7808,4874,7677,2040,4474,91,1983,26744,1984], +[0,1544,1552,1577,2026], +[1,2343,10454], +[0,0,10455,10456,4139], +[0,8646,4874,7677,1446,16230,1177,1905,16232,1894,16234,15452,4290,91,4543,1984], +[0,7201,2942,16237,16238,200,14566,4549,3741,16239,1671,1851,16240], +[1,2343,10458], +[0,0,10459,10460,2523], +[0,1906,1166,1758,16257,2746,1797,7614,3754,16272,16249,16262,16264,16268,16270,4371,16277,16279,2675,16263,89,16278,1177,16260,5304,16267,1209,16269,4135,16274,16276,16281,2114,16261,16271,2608,3257,3416,16282,3824,2036,3985,16275,4545,16280,53,16259,2990,16265,16245,1506,16251,16273,16256,16248,90,3995,1909], +[0,16284,1283,6624], +[1,2343,10462], +[0,0,10463,10464,2487], +[0,1414,1177,1903,1938,1948,1954,1958,1970], +[0,1560,27,16290,10376], +[1,2343,10467], +"fd-package-json", +[0,0,10468,10469,2523], +[0,3421,2899,1177,1693,1954,1938,1958,1903,1970], +[0,1562,27,990,10376,16296], +[1,2343,10471], +[0,10472,0,10473,2537], +[0,18186,10466,3157,18183,16309,13848,28401,16322], +[0,1566,16094,13729,3073,200], +[1,2343,10475], +[0,10476,0,10477,34352], +[0,3157,16330,16329,1566], +[0,200,13326,1566,16094,13729,3073], +[1,2343,10479], +[0,10480,0,10481,2443], +[0,16337], +[0,1566,16341,16342], +[1,2343,10483], +[0,0,10484,10485,2537], +[0,16349,4384], +[0,6270,12938,4225,3053,1388,1676], +[1,2343,10487], +[0,0,10488,10489,2523], +[0,29867,7677,16356,91,1984], +[0,977,16358], +[1,2343,10491], +[0,10492,9025,10493,2537], +[0,977,1581], +[0,977,2663], +[1,2343,10495], +[0,10496,10497,10498,2399], +[0,16358,1676,16128,4100], +[0,1544,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], +[0,1544,2026,2663,1577], +[1,2343,10500], +[0,0,0,10501,2537], +[0,977,16375,16376], +[1,2343,10503], +[0,10504,10505,10506,2537], +[0,16382], +[0,1389,3183,3294,16384,3460,16389,4535], +[0,1492,1585,1388], +[1,2343,10508], +[0,10509,10510,10511,2537], +[0,27921,2200,4121,3369,4143], +[0,1700,1192,2675,3144,1622,1177,1701,2203,16407,2924,1894,1610,48,442,1193,91,53,4874,2092,2990,3400,192,1953,27928,4257,87,4523,16396,1939,1942,68,1938,16398,20281,1982,1895,1955,19344,16400,5467], +[0,2924,1932,16410,7004,1585], +[1,2343,10513], +[0,10514,10515,2514,2537], +[0,2070,3181,3188,16415,4431,4558,4747], +[0,4039,4389,4387], +[1,2343,10517], +[0,0,7923,10518,2537], +[0,16421,11194,1179,16423,16424,16425], +[1,2343,10520], +[0,10521,10522,10523,2537], +[0,3044,1588,16432], +[0,4880,4883,91,89,3824], +[0,89,91,11194,11255,16435], +[1,2343,10525], +[0,10526,10527,10528,2537], +[0,1543,16446,16449,16444,6038,2020,3368,4135,4375], +[0,16454,1414,2765,4037], +[0,1591,5576,200], +[1,2343,10530], +[0,0,0,10531,2523], +[0,6570,6964,6789,7221,6746,7011,7194,7087,6839,6860,6918,6620,6777,16461,6748,7171,6894,6945,6743,7309,6837,6644,6634,7259,6797,7061,6608,16462,6726,6828,7275,6569,7144,7108,7027,7263,6923,6854,7134,6762,7042,6818,6677,6422,6805,1858], +[1,2343,10533], +[0,10534,10535,10536,2537], +[0,3427,4590], +[0,1087,1177,2026,2899,3421,4342], +[0,1594,2026,1544,2663], +[1,2343,10538], +[0,10539,10540,10541,2487], +[0,16473,2702,2822,16474], +[0,7637,4874,16478,1009,1011,16480,1610,1177,16482,1895,1915,1938,1954,1985,2675,2990,15757,1894,16484,91,1984], +[0,3001,8309,1541], +[1,2343,10543], +[0,10544,10545,10546,2537], +[0,2822,16491,16492,3183,705], +[0,2899,3421,4170,4172,4193,1906], +[0,4504,1596], +[1,2343,10548], +[0,10549,10550,10551,2537], +[0,16499,2205,3157], +[0,1166,2020,3505,16330,1906], +[0,13326,200,1585,16502,16499,2090,1586,1496,2150,3101,2070,16503,3275,2062,3719,2382,1563,16504], +[1,2343,10553], +[0,10554,10555,10556,2537], +[0,2212,16513,1448,16509,16512,2685,16511], +[0,1414,1166,4494,3297,4193,1177,2203,442,16515,91,4874,4454,4523], +[0,5284,1598,16517,15514,15362,2814,6710,27,2671,13333,2212,705,1002,11996,16518], +"@epic-web/invariant", +[1,2343,10559], +[0,0,0,10560,2443], +[0,1599,16523,16526,16528,16524,16530,16531,16532,13580,16533,16534,16536,16537], +[1,2343,10562], +[0,10563,10564,10565,2523], +[0,16542,2713,13892,16543,16544], +[0,13817,4100,4255,4387,4389], +[0,1616], +[1,2343,10567], +[0,10568,10569,10570,2523], +[0,3082,3427], +[0,1192,3744,89,3824,2924], +[0,89], +[1,2343,10573], +"degit", +[0,10574,10575,10576,2399], +[0,63,16560,1462,1532,16563,16566,1676,2105,2185,2205,2212,16568,2709,16570,2743,2812,1209,3021,3093,3157,16571,13233,16572,3527,3544,3561,16573,16576,16578,4002,4207,4400,4431,4597], +[0,1149,1610,2099,2182,1192,3297,16581,4151,16584,4278,4603,1906], +[0,1604,3403,1623,16587], +[1,2343,10578], +[0,10579,10580,10581,4139], +[0,6501,5303], +[0,192,442,16596,16597,16602,6061,16607,6063,6065,16608,16612,842,16145,5087,4874,6513,1610,1177,1895,1939,1955,2675,1192,2990,1894,4131,4193,91,4523], +[0,1605,16615,16617,16618,4116,16619,16621], +[1,2343,10583], +[0,0,0,10584,2537], +[0,1605,6400,5995,57,1606,16618,4116,16629,5957,12692,14571,16631], +[1,2343,10586], +[0,0,10587,10588,2537], +[0,30684,33382,16636,16637,33968,33969,16638,33971,17212,4874,1177,16644,1930,1938,1942,1951,1953,16647,1958,1964,1982,2203,25209,3124,16649,3390,1894,23535,33974,4508,91,16650], +[0,1605,16631,4116,1608,6400,5995], +[1,2343,10590], +[0,10591,0,10609,2537], +[0,10870,16666], +[3,804,10], +[2,10592,8893], +[2,10592,8891], +[3,10594,12], +[2,10595,8896], +[2,10592,8905], +[3,10597,11], +"omutils", +[2,10598,10599], +"ragdrop", +[2,10598,10601], +[2,10592,8652], +[2,10592,8899], +[2,10592,3583], +[2,10592,8901], +"virtualdom", +[2,10592,10607], +[0,158,12712,7004,16660,16661,16662,16663,16664,29241,29242,29244,29245,29247,29248,1936,1623,5284,6400,5122], +[1,2343,10611], +[0,10612,10613,10618,2523], +[0,10557,1615], +[0,31088,21122,4874,7677,23203,1177,1894,91,1984,31103], +"@release-it/conventional-changelog", +[2,812,4072], +"cobertura", +"git-", +[0,16674,16676,6574,16697], +"git-cz", +[1,2343,10625], +"global-jsdom", +[2,7627,1177], +[2,10622,20], +"putout", +[0,10626,10628,10629,2523], +[0,3310], +"quibble", +[0,3421,1429,3297,2675,2899,4747,4039,4042,4135,1503,2026,2924,4255,1527,91,4856,4874,1364,2990,4150,4677,6503,4705,192,4257,8849,3198,15277,1652,28710,5467], +[0,1612,27,1002,1862,1149,7003,14571,14566,202,89,970,1388,6805,7102,4731,6662], +"remark-github", +"toc", +"remark-toc", +[2,4513,9339], +[3,4514,16], +"dn-links", +[2,10634,10635], +"no-inherit", +[2,4513,10637], +[2,4513,3984], +[3,10639,17], +"-defaults", +[2,1213,10641], +[2,10640,10642], +[1,2343,10647], +"-prettier", +[2,4549,10645], +[0,10649,10662,10664,2487], +[3,5410,10], +[0,4707,16687,16688], +"annotate", +"pin", +"specific", +"ations", +[2,10652,10653], +"anatomy", +"dissection", +"dissect", +[3,10654,13], +"specs", +[3,2620,12], +[2,10660,591], +[0,1192,2675,1177,3188,4039,1175,1193,2990,192,4257,16692,16694,5467], +"spacing", +[0,1614,16696,6574,16697,16699,6987,8429,16701], +"speccer", +[1,2343,10668], +"grid-layout", +[0,10669,10670,2514,2523], +[0,16710,16713,16716,1600,16719,16721,9207,2713,16722,16725,3779,16726], +[0,13614,1177,13817,3421,3438,16728,4100,4135,4389], +[1,2343,10676], +"@web", +"/shadycss", +[2,4963,10673], +[2,10672,10674], +[0,0,0,10680,2523], +"dom5", +"lazypipe", +"poly", +[0,1965,1616,16733,16734,16735,16736,16737,16739,16740,16741,16742,16743,16744,16745,16746,16747,16748,16749,16750,16751], +"polymer-cli", +"polymer-", +[2,10682,6147], +"gulp-v", +"ulcanize", +[2,10684,10685], +"wct-browser-legacy", +[2,1262,3178], +[3,806,9], +[2,1382,5187], +[2,10689,10690], +"google-", +"clos", +[1,2343,10709], +"ure-compiler", +[2,10693,10695], +[2,10692,10696], +"iron", +[3,4314,10], +"-page", +[2,10699,10700], +[2,10698,10701], +[2,10689,10702], +[3,10675,15], +"webcomponentsjs", +[2,10704,10705], +"gen-closure-declarations", +[2,10689,10707], +[0,10710,10711,10712,2537], +[0,1509], +[0,1414,1177,16758,1938,1951,1954,1955,2899,16759,3400,1894], +[0,16166,57], +[3,78,24], +[3,5731,9], +[1,2343,10716], +[0,10758,10762,10764,2537], +"-assign", +[2,5734,10717], +[2,10714,10718], +[2,10713,10719], +"@metalsmith/layouts", +[3,10721,12], +[2,10722,1783], +[3,807,9], +"disable", +[2,2827,10725], +[2,1884,10726], +[2,10724,10727], +[3,10728,23], +"qx", +[2,10729,10730], +[3,10728,16], +"plugin-qx", +[2,10732,10733], +"app-", +"module-path", +[2,10735,10736], +"better-ajv-errors", +"cldr", +"console-", +"contr", +"ol-strings", +[2,10741,10742], +[2,10740,10743], +"core-js-", +[2,10745,6374], +[3,4913,14], +[2,10747,7877], +[3,7681,17], +"codeframe", +[2,10749,10750], +"fontkit", +"get-value", +"github-api", +"jstransformer-dot", +"ps-tree", +"set-value", +[0,16765,34219,16767,16768,34222,16770,16771,1109,1437,16064,1525,28612,16772,16775,16778,16779,16780,16781,26385,4135,27921], +"tap-colorize", +"unset-value", +"upath", +[0,8778,5254,3170,3181], +"dirsum", +[0,16789,16790,1501,15318,15321,16791,16793,16794,671], +"qooxdoo", +"fontend", +[1,2343,10773], +"back-end", +"gui", +"binding", +"databinding", +"interfaces", +[0,10774,10775,10776,2537], +[0,2713,4227,16799], +[0,2899,4170,3130,1413], +[0,1623,57,5374,5376], +"@mdi/font", +[1,2343,10781], +"@mdi/svg", +"@xmldom/xmldom", +[0,0,10782,10789,34352], +[0,442,16805,16808,1177,3561,4042,4579], +"animate.css", +[3,1369,10], +[2,10784,45], +"eva-icons", +"line-a", +"line-awesome", +[0,3561,6425,1623,6432,16811,3205,4327], +"ar", +"quasar", +"fonts", +"animations", +[1,2343,10795], +[0,0,10796,10797,2523], +[0,23339,13204,6503,4874,5542,16818,1177,16821,1895,1955,16824,2675,16825,2832,2990,2899,3377,1894,28865,29444,91,16827,16831], +[0,1623,5746,3392], +"gpu", +"detect-gpu", +"gltfpack", +[1,2343,10803], +"@react-", +[0,10812,10813,10819,2537], +"three/drei", +[2,10802,10804], +[3,10805,13], +"fiber", +[2,10806,10807], +"processing", +[2,3689,10809], +[2,10806,10810], +[0,16837,3561,16840,3638,16841,16842,3688,4135], +[0,48,53,87,192,5467,16405,1193,1610,1622,1701,1854,1177,1895,1938,2092,2675,1192,2780,695,2969,2990,3144,3177,3400,3618,3672,1894,2278,4111,4257,4294,4307,4333,4334,4027,2924], +"test-renderer", +[2,10806,10814], +[3,10615,16], +[2,10816,2528], +[3,827,17], +[0,2924,1623,1194,1002,1204], +"actions", +[2,10818,10820], +[1,2343,10823], +[0,10838,10845,10856,2523], +"essentials", +[2,10818,10824], +"interactions", +[2,10818,10826], +[2,10818,3966], +[3,827,11], +[2,813,2942], +[2,10829,10830], +"preset-", +[3,1603,13], +[2,10833,1896], +[2,10832,10834], +[2,10829,10835], +[2,10829,89], +[0,1637,3561,2805,4121,4143,5180], +"-webpack5", +[2,10837,10839], +[2,10829,1975], +"__jest-dom", +[2,6626,10842], +[2,7750,10843], +[0,1700,16858,1192,2278,2675,3144,1622,1177,1701,668,2203,4337,2924,16851,1894,1462,1610,48,442,1193,1628,91,53,16850,16854,4874,2990,3400,4111,16860,192,1953,27928,16853,4257,87,1939,1584,1942,1938,16857,20281,1982,1895,1955,3177,19344,16400,5467], +"@types/three", +"-image-diff-js", +[2,1651,10847], +[3,1970,16], +"orybook", +[2,10849,10850], +"r3f-perf", +[3,6068,15], +[2,10853,2481], +"suspend-react", +[0,1637,1623,16858,1462,11538,668,2924,1464,16862,16863,3178,2632,6707,6708], +[1,2343,10859], +"three-stdlib", +[0,10861,10869,10871,2537], +"threejs", +[0,16868,9378,15488,16870,15487], +"hree-fiber", +[2,3900,10862], +"y-player-me", +[2,3917,10864], +"3D", +"avatars", +"glb", +[0,4483,1984,91,4874,2654,11976,16874,16877,7677], +"@cropper/elements", +[0,1623,3585,16879], +[1,2343,10873], +[0,10885,10889,10890,2537], +"@phryneas/ts-version", +[2,5531,2090], +[2,5531,2924], +[3,4852,12], +"__core", +[2,10877,10878], +[3,10879,14], +[2,5223,5651], +[2,1181,10881], +[2,10880,10882], +"@types/n", +[0,3141,4228], +"@types/nanoid", +[2,4807,3765], +[2,7686,2473], +[0,1414,16885,668,1177,16889,2899,4042], +[0,1623,6892,207,57,16891,16892,1179,594,5341,7020], +[1,2343,10892], +[0,0,10893,10899,2537], +[0,16805,1393,2070,3561,3566,3672,4135,4320,4323,16898], +[3,811,14], +[2,10894,594], +"common", +"commondir", +"is-reference", +[0,1623,16897,10654,16900], +"locat", +"e-character", +[2,10900,10901], +"relative", +[2,4013,10903], +[1,2343,10907], +"commonjs", +[0,0,10908,10909,2537], +[0,1173,1264,1503,2228,14352,2759,2899,3954,4019], +[0,1623,1867,16906,1871,4990], +[1,2343,10913], +"is-builtin-module", +"is-module", +[0,10914,10917,10918,2537], +[0,2984,16912], +"capitalize", +[2,4284,10915], +[0,1165,3561,16915,16916], +[0,1623,15215,3178,16918,16919,3561,6425], +[1,2343,10920], +[0,10921,10922,10926,2443], +[0,28920,30928,1634,3084], +[0,23591,23205,1177,1895,1955,2203,1894], +"groq-js", +[3,817,8], +"@sanity/ui", +[0,6829,6977,7146], +"@types/cpx", +[1,2343,10937], +"dotenv-flow", +[2,10924,1473], +[2,10924,45], +"@sanity/c", +[2,10932,1124], +[3,3878,10], +[2,10934,6346], +[2,7686,93], +[0,0,10943,10945,2537], +"pkg-utils", +[2,10924,10938], +"@portabletext/react", +[3,10940,14], +[2,10941,6081], +[0,53,87,92,442,16805,33227,16933,16934,5087,13204,4874,15600,16938,1193,1437,1457,1634,1895,1955,2126,1192,2832,3141,1894,3980,4494,4495,91,4523], +"cpx", +[0,1623,590,91,2124,4532,553,7900], +"sanity", +"refractor", +"kdirp", +[2,6502,10948], +"-workshop", +[2,10925,10950], +"vitest-", +[1,2343,10954], +[0,10955,10956,10965,2523], +[0,16944,977,2657,1581], +[0,3421,2899,1177,1544,4342,1364,1575,1578,1954,1938,1958,1903,1948,1970], +[3,9794,18], +"reset", +[2,10957,10958], +[2,10924,10959], +"imple-", +"import-sort", +[2,10961,10962], +[2,1967,10963], +[0,16944,11590,2663,2026], +"API reference", +[1,2343,10968], +[0,10969,10970,10971,2537], +[0,1642,1645,1647,4280], +[0,816,6503,4874,1794,2899,1894,4042,4064,4066,4170,4474,91], +[0,202,1641,16956,57,1644,5374,1646,353,3101,8623,16957,5995,4967], +[3,9307,12], +[2,10972,188], +[2,7719,57], +[2,819,10974], +[2,4807,1143], +"snippetz", +[2,819,10977], +[2,10987,14037], +[1,2343,10983], +"@unhead/vue", +"@vue", +[0,0,10985,10986,2523], +"@vueuse/core", +[0,816,6503,4874,1680,1794,2899,1894,4042,4064,4066,4170,4474,91], +[0,3101,8623,1641,3048,5995,4967], +[3,35505,11], +"code-", +[2,10988,5342], +[2,819,10989], +[3,818,12], +[2,10991,5576], +"@scalar/o", +"as-utils", +[2,10993,10994], +[2,819,553], +"@scalar/t", +"hemes", +[2,10997,10998], +"toast", +[1,2343,11006], +"use-toasts", +[2,819,11002], +"@scalar/co", +[2,11004,4961], +[0,0,11007,11009,2523], +[0,816,6503,4874,1642,16971,1680,1794,2899,2966,1894,4042,4064,4066,4170,4280,4474,91], +[2,27553,1794], +[0,1641,1644,57,6270,16956,3101,5995,4967], +"blocks", +[2,10829,11010], +[1,2343,11014], +[2,5249,11020], +[0,0,11015,11019,34352], +[0,816,6503,4874,1642,1680,1794,2026,2899,1894,4042,4064,4066,4170,4474,91], +[2,1029,188], +"test-utils", +[2,5334,11017], +[0,1641,1646,5374,5995,4967], +"flect.ownkeys", +"webpack-stats", +[2,4049,11021], +[1,2343,11024], +[0,6203,11025,11029,2537], +[0,35960,6503,4874,1217,1596,3183,2899,3421,4193,4468,4474,91,4537,2924,4677], +[2,4609,7179], +"css-in", +"well-known-symbols", +[0,1641,16984,16986,1648,1781,16989,16990,16991,16994,16995], +[1,2343,11035], +"jected-by-js", +[2,11027,11031], +[2,4609,11032], +"media-mock", +[0,11036,11042,5543,4139], +[0,3261,2070,1512,1209,4593,2089,6532,814,1362,17003,3730,1525,2753,1483,12126,6481,17010,6479,17007,2709,17011,17009,17000,1874,6475,17002,6470], +"-tooling", +[2,6147,11037], +[2,819,11038], +"galaxy", +[2,819,11040], +[0,3421,4449,1429,2899,4193,1177,1544,1593,1290,2151,3257,1894,17013,1596,48,1389,4196,53,1178,1509,4151,94,6525,6530,87,1954,1922,3957,1938,1208,1958,1895,1903,1955,1970,14039], +"reference", +[1,2343,11045], +[0,0,11046,11047,2537], +[0,1257,1264,1280,1389,1177,17019,2665,3188,17020,4389,4415,4535,17021,4650], +[0,6926,3265,7818,17025,3348], +[3,820,8], +[2,11048,1932], +[1,2343,11055], +"@fastify/basic-auth", +"external", +"externals", +[2,4065,11053], +[0,11056,0,11057,2537], +[0,4449,12675,1437,1673,1676,2020,29952,4753,1398,2992,1209,17031,1458,2089,3729,1362,16078,1836,2151,3183,17036,1525,4459,4558,6520,1477,1483,8435,1532,2057,3074,3714,17039,17041,2015,13860,4351,17042,17047,4375,2744,6515], +[0,13428,1388,1651,17049,11862,11861,11857,4627,17050,8791,17051,17052,1973,5472], +[1,2343,11059], +[0,11060,11061,2514,2523], +[0,1437,17059,4717,1527,3054,6301,17058], +[0,1429,2899,4135,1894,4856,1595,6503,3210,4131], +[1,2343,11063], +[0,11074,11087,11089,2523], +[2,823,364], +[2,823,4030], +[3,825,16], +"query-s", +"elector-", +"shadow-dom", +[2,11068,11069], +[2,11067,11070], +"tiny-", +"tiny-types", +[0,17081,17090,17067,17080,17082,17093,17101,17108,1654,17068,17071,14674,17083,17086,1655,1660,17104,17089,17098,17074,17096,17075,17078,17097,17091,1658,17107,17092,17103,17100], +"@integration/testing-tools", +[2,823,5710], +[3,11064,14], +"ucumber", +[2,11077,11078], +[2,823,2765], +[2,5554,36], +[2,823,11081], +[2,823,2899], +[3,7744,12], +[2,11084,2632], +"mocha-multi", +[0,2899,1177,4042,4614,17113,17110,8850,17112,10615,816], +"serenity-js", +[0,1653,965,17116,8221,7521,1424], +[1,2343,11091], +[0,11092,11094,11098,4139], +[0,17122], +"@wdio/reporter", +[0,816,17081,17098,1177,2832,2899,4042,4073], +"@wdio/", +"@wdio/cli", +[3,8255,9], +[0,1653,17125,17128,17129,17130,17134,7193,6333,4552], +[1,2343,11101], +"service", +[0,11102,11106,11107,2399], +[0,1654,17089,17092,17101,17103], +"@wdio/d", +"ot-reporter", +[2,11103,11104], +[0,14674,1177,2899,4042,4073], +[0,1653,17125,16662,17116], +"local-runner", +[2,11095,11108], +[2,4386,2903], +[2,11095,11110], +"@wdio/types", +[2,2299,2382], +[2,3758,1732], +[1,2343,11118], +"wdio", +[2,11116,2903], +[0,0,11119,11120,2523], +[0,1177,2832,2899,4042,4073], +[0,1653,17125,965,17146,17147], +[1,2343,11125], +[3,826,9], +"commons", +[2,11122,11123], +[0,11135,11136,11139,2487], +"@mochify/cli", +"@mochify/", +"driver-", +[2,11128,3758], +[2,11127,11129], +[3,11130,16], +[3,824,9], +[2,11131,11132], +[2,11122,7625], +[0,17093], +[0,17096,1177,2899,4042,4073], +"referee-sinon", +[2,11122,11137], +[0,1653,17125,11812,17116,1424,8221], +[1,2343,11141], +[0,11142,0,11144,2523], +[0,2108], +"ts-dedent", +[0,6400,17159,7521,8537], +"csf-plugin", +[2,10829,11145], +[3,10840,17], +"dom-s", +[1,2343,11152], +"dom-shim", +[2,11147,11150], +[0,0,0,11153,2537], +[0,1662,4380,4383,21029,21038,21039,11483,11487,21054,21052,21042,17164,21057,21050,17166,89,1623,181,188,4627,5130,3287,6400,17171,699,29332,3709,34683,12951,29336], +"addon", +"notes", +"organize", +[1,2343,11158], +[0,0,8134,11159,34352], +[0,17179,3183,14690,10446,7058,6802,200,3368,1525,17180,1523,12986,17181,17183,17184,13565,1644,57,6478], +[1,2343,11166], +[2,41,1512], +[3,11161,13], +"ssinjs", +[2,11162,11163], +[3,40,18], +[0,11198,11203,2514,2537], +"slick", +[2,11165,11167], +[3,452,18], +"-svg-icons", +[2,6920,11170], +[2,11169,11171], +"@pol", +"kadot/react-identicon", +[2,11173,11174], +"@polkadot/", +"util-", +"util-crypto", +[2,11176,11178], +[2,19177,11195], +"wasm-crypto", +[2,11176,11181], +[3,5050,14], +"tour", +[2,11183,11184], +"@zxing/browser", +"@zxing/", +[2,11187,6082], +"boring-avatars", +"list-react", +[2,2117,11190], +"jsqr", +"phosphor-react", +"qrcode", +"plugin-kit", +"qrcode.react", +"rc-cascader", +[0,17191,1091,1149,1437,1513,1594,1605,2026,2720,17194,3148,3220,3722,705,17195,17196,17198,4746,4747], +"rc-checkbox", +"ollapse", +"rc-collapse", +"rc-dialog", +[0,1173,1257,1267,1429,2899,4008,7707], +"rc-drawer", +[1,2343,11214], +"opdown", +"rc-dropdown", +"rc-image", +"@humanfs/node", +"rc-input", +"-number", +[2,11210,11211], +"rc-mentions", +[0,0,11217,2514,2399], +"u", +"rc-menu", +[0,17218,4494,17219,8538,4193,1177,17220,1209,1984,4508,2109,1894,1596,48,17212,3541,4183,4201,91,53,4874,17221,9689,6513,17209,7725,4870,17206,17214,10875,87,17210,7677,5517,92,1011,17223,1009,9692], +"otion", +"rc-motion", +"rc-notification", +"rc-pagination", +[1,2343,11230], +"rc-picker", +"rc-progress", +"rc-rate", +"rc-r", +"esize-observer", +[2,11226,11227], +"rc-s", +[0,0,11232,2514,2523], +"rc-segmented", +[0,2899,4535,48,53,87], +"rc-select", +"teps", +"rc-steps", +"rc-switch", +[1,2343,11239], +"rc-table", +[0,0,11247,11248,2523], +"rc-tabs", +"extarea", +"rc-textarea", +"ree", +"rc-tree", +"-select", +[2,11244,11245], +[0,48,53,13693,87,6065,1175,1193,1203,1610,1177,1881,1938,1939,17232,2766,1192,2297,2898,2915,3213,3220,3222,3275,3697,1894,4042,4045,4073,4201,91], +[0,1673,1666,6901,2700,3220], +"rc-trigger", +[1,2343,11254], +"rc-upload", +"in-input", +[2,3870,11252], +[0,11258,11259,11265,2537], +"logo", +"qrcode-logo", +[2,1246,11256], +[0,1326,3299], +[0,17240], +"uperellipse", +[2,3890,11260], +"scroll-", +"into-view-if-needed", +[2,11262,11263], +[0,1149,15001,17242,17244], +[3,68,15], +[2,11266,6424], +[3,362,16], +"css-prop", +[2,1258,11269], +[2,11268,11270], +[3,7910,12], +[2,11272,10177], +"@qixian.cs/github-contributors-list", +"@stackblitz/sdk", +[3,827,16], +[2,11276,591], +[3,11011,12], +"uild", +"er-webpack5", +[2,11279,11280], +[2,11278,11281], +[3,8300,15], +[2,11283,2855], +[2,10829,11284], +[3,10841,12], +"heming", +[2,11286,11287], +"tag.js", +[2,5246,11289], +"-axe", +[2,5087,11291], +[3,11292,12], +[3,2779,12], +[2,11294,3758], +[2,11293,11295], +"image-s", +"napshot", +[2,11297,11298], +[2,11293,11299], +[2,5086,3766], +"uppeteer", +[2,5088,11302], +"@types/q", +"@types/qs", +[3,4882,15], +[2,11306,4349], +"-wor", +[1,2343,11324], +"-words", +[2,5342,11310], +[2,4881,11311], +[3,4884,15], +"sizable", +[2,11313,11314], +"window", +[2,4881,11316], +"@types/thr", +"ottle-debounce", +[2,11318,11319], +"arning", +[2,7820,11321], +"antd-", +[0,0,11332,11334,2523], +"antd-img-crop", +"token", +"-pre", +"viewer", +"-previewer", +[2,11326,11329], +[2,11323,11330], +[0,1906], +"array-move", +[0,1675,17251,3046,6925,17252,7051,6760,17253,6882,6870,9233], +"bundlesize2", +"dekko", +[3,3597,9], +[3,4926,9], +"er-webpack", +[2,11339,4406], +[2,4354,11340], +[2,11338,11341], +[2,11337,11342], +"fetch-", +"fetch-jsonp", +"axe", +"jest-axe", +[2,2769,11299], +"jest-p", +[2,11349,11302], +"jsonml", +"react-e", +[1,2343,11358], +"react-element", +[2,8137,11354], +[2,11351,11355], +"lz-string", +[0,11359,11361,11379,2537], +[0,3242], +"rc-footer", +[0,1377,1389,1596,2297,2871,2881,2900,2899,3202,4193,1906], +"rc-tween-one", +"rc-virtual-list", +"react-f", +"ast-marquee", +[2,11364,11365], +[2,5204,11310], +[2,3831,11367], +"react-in", +"finite-scroll-component", +[2,11369,11370], +[3,3882,9], +"izable", +[2,11372,11373], +"react-st", +"icky-box", +[2,11375,11376], +"react-window", +[0,1676,3073,6782], +"remark-lint", +[2,2987,4945], +[2,3996,11381], +"rome", +[2,4942,1894], +[3,4946,18], +[1,2343,11387], +[0,0,8134,11402,2537], +"ational-order", +[2,11385,11388], +[3,4326,22], +"no-i", +"d-properties", +[2,2420,11392], +[2,11391,11393], +[2,7851,11394], +[2,11390,11395], +"sylvanas", +"vanilla-", +"jsoneditor", +[2,11398,11399], +"xhr-mock", +[0,1677,17266,1420,17267,15321,13230,15322,1871,2585,6270], +[1,2343,11406], +"-front-matter", +[2,4745,11404], +[0,11407,11408,11409,2399], +[0,17273,17275,17277,17279,2215,3093,3532,17281], +[0,1999,17283,3505,3532,4039], +[0,17274,17285,1679,7682,4390,17286,17288,2056,4560], +[1,2343,11418], +[3,829,10], +"-studio/client", +[2,11411,11412], +[3,11413,18], +"model", +[2,11414,11415], +"abab", +[0,0,11419,11423,4139], +[0,48,87,92,10614,17296,17212,5601,5087,1009,1011,1198,14065,17298,1622,1177,17300,1930,1939,1942,1945,1948,1953,17303,17306,1964,17308,2675,1192,17310,2931,2990,3124,3125,3390,17312,1894,17314,3708,3980,17318,4493,91,17319], +"async-mutex", +[2,6269,1871], +"color2k", +[0,1680,10381,17323,5194], +"presentable-error", +"expr-eval", +"ml-matrix", +[1,2343,11431], +"parse-color", +"-ast-parser", +[2,3564,11429], +[0,0,11435,11441,2523], +"matchall", +[2,7315,11432], +[2,1871,11433], +[0,5087,3165,4468], +"@ava/typescript", +"inycolor2", +[2,7750,11437], +"trash-cli", +[2,4480,4408], +[0,3597,17329,4552,17331,17332,17335,17337], +"Supernova", +"Design Systems", +"io", +"Supernovaio", +"SDK", +[1,2343,11455], +"Tokens", +"Design Tokens", +"Assets", +"Components", +"Documentation", +"Markdown", +"CMS", +[0,11456,0,11457,4139], +[0,17342], +[0,3048,7002,3426,2051,3583,1698,1496,1585,7880,1697,6899,6803,3432,6693,3743,3583], +[1,2343,11459], +[0,8856,7938,7939,2537], +[1,2343,11461], +[0,0,11462,11463,2523], +[0,1781,2899,1177,1209,4039,3363,1362,17352,2025,4535,1693,1951,3200], +[0,1687,17354,3797,17358], +[1,2343,11465], +[0,0,11466,11467,2523], +[0,17363,2899,1177,2759,1317,1596,17366,3044,5476,17370,17373,17374,811,17377], +[0,17380,17382,17383,5472], +[1,2343,11469], +[0,11471,11472,11473,2399], +"@svitejs/changesets-changelog-github-compact", +[0,17391,1417,17392,15308,17395,17399,17400,17403,17406,2756,13635,3433,3435,17407,17409,17411,17413,17416], +[0,13614,1158,1159,17418,1177,2133,17421,2569,17425,2708,3410,3421,5619,4103,4135,4389], +[0,5501,4162,3797], +[1,2343,11475], +[0,0,11488,11490,2537], +"okie", +[2,4860,11476], +"devalue", +"esm-env", +"mrmime", +"sade", +"tiny-glob", +[2,21032,1932], +[3,5244,10], +[2,11484,2255], +"dts-buddy", +[3,21031,18], +[0,2899,4170], +"official", +[0,1696,2051,1697,6899,1695,1496,1698,1781], +[1,2343,11492], +[0,0,11493,11494,34352], +[0,4874,17439,2747,17440,4042,4055,4067,4389,4474,91,4535], +[0,1698,1697,2051,1585,1496,6899], +[1,2343,11499], +"-inspector", +[2,840,11496], +"hmr", +[0,11500,11502,11503,2523], +[0,2205,2743,17447,17450,3478,11424,4207], +"vitefu", +[0,1166,1317,4400,4481,1906], +[0,6865,1586,17453,17455,7293,14858,17456,17457,4050,17458,4051,6790,17459,4039,7074,2070,17461,2090,6857,7204,2150,17462], +[3,839,11], +[1,2343,11507], +"vite plugin", +[0,11508,11509,11510,2399], +[0,1700,3157,11424], +[0,1166,2020,17468,1906], +[0,13326,200,6865,1700,7293,14858,17456,17457,4050,17458,4051,6790,17459,4039,7074,2070,2090,1586,6857,7204,2150,17462,16697], +[1,2343,11523], +"element", +"elements", +"ant-elements", +[2,5257,11514], +[2,5875,11515], +"@svgr/", +"@svgr/core", +"plugin-jsx", +[2,11517,11519], +[3,11520,13], +[2,11521,4361], +[0,11524,11527,11528,2487], +[0,29654,28415], +"svgr", +[2,4670,1194], +[0,17474,17477,4481,1906], +[0,1862,814,1702,17479,6703,2434,17481,17484,2013,14824,3286,17485,1702,1149,7003,6567,1362,17487,6754,3778], +[1,2343,11530], +[0,11531,11535,11537,2399], +[0,1676,2856,4747,2687,1209,4135,2822,814,17495,15648,1420,3181,17497,3249,1595,2107,4025,58,17501,101,17494,5320,14035], +"unter", +"@swc/counter", +"@swc/types", +[0,3421,2899,1177,4170,3709,2151,1894,1610,48,3752,91,53,1178,17504,85,94,87,1951,1959,1879,1938,1208,1895,1947,1955,1198,13052], +"@napi-rs/cli", +[0,4354,17507,3383,6666,1703,7190,4796,4797], +"swc", +"swcpack", +"tsc", +[1,2343,11542], +[0,0,11543,11544,2487], +[0,1317,1311,1177,1903,1938,1948,1954,1958,1970,2759,2899,4100,4538], +[0,17514,17515], +[1,2343,11546], +[0,11547,11548,2514,2537], +[0,1676,13736,2205,17522,3170,3183,3539,17523,814], +[0,17527,2675,17529,3400,4255], +[1,2343,11550], +[0,0,8134,11551,2399], +[0,8958,17537,13735,6589,17539,1501,1871,2585,4225,17540,16630], +[1,2343,11553], +[0,11556,11557,11558,2523], +"@rtsao/scc", +[2,18997,4966], +[0,15427], +[0,36688,6503,4874,17547,1177,17554,2020,17546,4294,4483,36684,91], +[0,13735,1709], +[1,2343,11560], +[0,0,11561,11562,2487], +[0,3421,4481,1429,2297,2899,1177,4042,2203,2924,1610,4535,442,91,53,2900,1195,2925,13388,94,87,4523,4681,2904,5517,1208,2921], +[0,1687,7222,3797,7163,2585,1781,1623,5284], +[1,2343,11564], +[0,11565,11566,11567,4139], +[0,1687,28365], +[0,442,19194,17579,5087,4874,17580,17584,1165,1406,1492,1584,1628,1637,1177,1939,1958,2092,2203,2036,17589,2651,2675,17591,17592,1192,2990,3123,3177,3188,3368,3561,3566,3613,3618,3672,1894,4468,4469,4474,91,4523,4027,2924,4677,4681,4705], +[0,3358,1687,3721,7153,3924,17595,17597,6843,5342,3721,1473,1936,1713,17599,17600], +[1,2343,11569], +[0,11570,11571,11572,2537], +[0,17610], +[0,5087,4874,1009,1011,1177,1895,17613,1915,1938,1192,1894,4468,4493,4508,91], +[0,17615,17618,17619,17620,17616,17621,17622,5284,17625,17626,676,91,17627,6869,4799,17629,17630,202,9624,17631,17632,17634,17635,17637,17640,17641,17642,17643,2218,17644,17645,17647,3403,17648,17649,17651,17652,17653,17656,17657,9981,7193,17659,17660,17661,17662,17665,17666,17667,17669,17673,17675,17677,17680,17679,11996,17683,17686,17687,17689,17691,17692,17695,17696,17697,17700,17702,17705,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,17720,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,17737,17739,6681,17740,1745,17116], +[1,2343,11574], +[0,0,11575,11576,2487], +[0,1429,1431,2228,2273,2283,2300,2272,2839,3006,2899], +[0,1429,15385,1388,5472], +[1,2343,11578], +[0,11579,11580,11581,2537], +[0,17752,17754,1723,2760,3345], +[0,2899,3699], +[0,6355,5995,4967,17758], +[1,2343,11583], +[0,11584,11585,11586,2487], +[0,4484,4548,17763,7658,347,7660,2069,17766,7663,17768,7664,7665,17770], +[0,4481,1192,7671,1177,4487,1787,1894,1610,91,4874,17772,7672,7678,7681,7685,1011,1009], +[0,1721,5592,8549,5576,202,7692], +[1,2343,11588], +[0,11599,0,2514,2537], +[3,850,25], +"tokens", +[2,11589,11590], +[2,11589,45], +[3,4323,18], +"ass-guidelines", +[2,11593,11594], +[3,7846,11], +"rettier", +[2,11596,11597], +[0,4535,2098,3460], +[2,6910,591], +"patterns", +[1,2343,11603], +[0,11604,11606,11610,4139], +[0,16053,17786,17787,17788,2036,3127,17798], +"gfm-footnotes", +[0,17805], +"web ", +[2,11607,4963], +"ui library", +[0,1745,1783], +[1,2343,11620], +"symbiote.js", +"symbiote", +"frontends", +[2,3166,11614], +" application", +[2,5207,11616], +" elements", +[2,5317,11618], +[0,11621,0,11623,2487], +[0,2829], +"shadow dom", +[0,1727,1745,1776,17813,1783,1932], +"shadow root", +"ructable stylesheets", +[2,5257,11625], +"adopted stylesheets", +"custom ", +[2,11628,3583], +[2,6883,11629], +"pubsub", +[1,2343,11641], +"import maps", +"cdn imports", +" imports", +[2,2671,11635], +"reacti", +"ve html attributes", +[2,11637,11638], +"MIT", +[0,0,0,11642,34352], +[0,17818,17819,7518,5398,5995,3250], +[1,2343,11644], +[0,11645,9264,11646,2399], +[0,17826,17827,7092], +[0,17829,17830], +[1,2343,11648], +[0,11649,11650,11651,4139], +[0,1170,4747,1733,17838,29861,17835], +[0,1429,2899,2026,1364], +[0,1745,2275,1973,2295,1739], +[1,2343,11653], +[0,11654,11655,11656,2399], +[0,5923,17835,17846,1091,13426,17849,17851,17853,1170,17838,29861,1759,17850,11663,10342,3536,3549,17859,4459,824], +[0,1703,2026,2899,4135], +[0,1745,1973,2295,1739], +[1,2343,11658], +[0,11659,0,11660,34352], +[0,1525,3127,2151,4545,2600], +[0,1745,1739,1179,17867,1509], +[1,2343,11662], +[0,11664,0,11610,2537], +"jq-web", +[0,1794,17872,5639], +[1,2343,11666], +[0,11667,11668,11669,2399], +[0,17877,28367,28371,17881,3747,4391,3348], +[0,1362,1429,3152,2899], +[0,17878,17884], +[1,2343,11671], +[0,11672,11673,11674,2537], +[0,17889,17890,17892,1292,17893,1415,17895,16166,17896,17898,17899,9254,17900,17901,17904,17905,17906,17907,2720,17909,17910,17911,3171,3310,17914,17915,17916,4039,17917,17919,17920,4135,17921,17922,17923,4545,17924,4746], +[0,17929,17930,16966,1509,17931,3220,17934,17936], +[0,5353,6147,17939,9381,200,6354,1509,7234,4643,17944,3304,5001,17945,17946,15141,5130,1179,17948,202,1644,57,8924,3902,8632,12478,5354,17950,4990,6435,5122,17951,10340], +[1,2343,11676], +[0,0,11677,11678,2523], +[0,5366,4874,7677,22839,1317,33261,35609,1177,1938,1942,91,1984], +[0,4967,5995,2844,7020,1776], +[1,2343,11680], +[0,0,11681,11682,2487], +[0,53,87,442,5583,811,8850,816,10615,1165,1387,1536,1854,1177,1895,2203,3125,15197,3400,3561,3584,3605,3613,1894,4039,4042,10854,2278], +[0,1739,17964,17965,1745,1179,5284,676,1783,5980,1932,16630,17966], +[1,2343,11684], +[0,11685,11686,11687,4139], +[0,17971,17972,2654,3183,4545,17974], +[0,4384], +[0,2195,1783,1745,9591,57,17977,17978,17979], +[1,2343,11689], +[0,11690,11691,11692,4139], +[0,53,5216,58,101,104,1437,1457,1687,17986,9322,7610,2070,17988,2600,2714,2822,17989,1209,12427,17990,17995,17997,3532,3921,3984,3988,3989,18000,10632,814,4300,18002,4555,12449,18004,18005,4747], +[0,18007,1652,18009,1177,1895,2151,2675,1192,2845,2990,3203,1894,4257,4449], +[0,1745,4525,1776,18011,57,5351], +[1,2343,11694], +[0,11695,11696,11697,2523], +[0,18016,18018,1676,18019,18020,18023,3013,4545], +[0,4874,2228,2291,2300,3006,3200,16092,4193,4436], +[0,18028,18031,1748,18036,13531,18037,18035,6599], +[1,2343,11699], +[0,11700,11701,11702,2537], +[0,6084,2164,2070,1437,89,1843,1209,3188,1291,1637,2026,3561,3725,705,4167,7799,4438,2151,2267,1525,3824,1461,3560,4001,53,18042,104,1165,2600,3123,18051,18052,18055,18056,7610,85,94,101,3816,18050,87,18045,18047,90,1874,1845,61,78], +[0,4039,17996,2149,18059], +[0,1745,18061,18063,467], +[1,2343,11704], +[0,11705,7923,11706,2523], +[0,18068,1497,9892,2577,2586,2608,6327,18070,8114,3181,3971,18071,4549,18072], +[0,467,6327,18074,1745], +[1,2343,11708], +[0,11709,11710,11711,2487], +[0,97,1639], +[0,28581,29292,48,53,92,29293,29294,29492,1009,1011,1178,1195,1177,1938,1947,1951,1959,2025,2070,2814,2297,2881,2895,26470,2900,2904,2918,2921,2925,2899,4039,33564,4193,91,2924], +[0,1751,5128,965,5592,18080,590,2013,18081,4289,1751,1227,18082,1623], +[1,2343,11713], +[0,11714,11715,11716,2537], +[0,18089,15487,18087], +[0,1192,1177,1448,4468,1894,91,5087,4874,2654,1895,1011,1009], +[0,1936,6523,8924], +[1,2343,11718], +[0,0,11719,11720,4139], +[0,1429,1177,2228,2240,2273,2281,2283,2298,2822,2297,2878,2881,2895,2900,2904,2899,1894,4135], +[0,965,158,18097,8924,1936,1424,8221,18048], +[1,2343,11722], +[0,11723,11724,11725,2487], +[0,37513], +[0,53,87,5583,816,6373,10615,1006,4874,1610,1895,1955,2814,2832,2297,2876,2881,2895,2908,2910,18103,3183,3400,3697,1894,2907,18102,4039,4042,4057,18106,4076,4484,91,1906], +[0,965,4741,1936,8221,18110,1965,18112,18113,2574,7131,18114], +[1,2343,11727], +[0,0,11728,11729,2399], +[0,3421,1177,1596,3697,12847], +[0,1283,2062,2869,17950], +[1,2343,11731], +[0,0,11732,11733,2537], +[0,4874,6323,4193,4255,4257,4384,91], +[0,1759,1263,6890,6639,6436,1541,6937], +[1,2343,11735], +[0,11736,11737,11738,2523], +[0,1759], +[0,4874,4255,4257,4384,91], +[0,1759,18132,6436,18135,18137,1263,6890], +[1,2343,11740], +[0,11741,11742,11743,2537], +[0,2212,3532,3477,18143,3093,2096,1679,18145,2188,18142,1560], +[0,1906,1166,3297,18147,4039,3505,18148], +[0,1764,7682,27,705,1002], +[1,2343,11745], +[0,11746,11747,11748,34352], +[0,1764,12650,4039], +[0,5175,2675,2899,4216,4255], +[0,1764,2195,17978,17977,12468,18157,4390,7682,18158], +[1,2343,11750], +[0,11751,11752,11753,2537], +[0,1768,1770,1777,1782,1784,1779], +[0,1177,4039,442,91,4874,4523,1011,1009], +[0,1767,1745,200,1776,1367,1783,1781], +[1,2343,11755], +[0,11756,11757,11758,4139], +[0,2205,1770,18170,18173,1777,1782,18174,1784,1779], +[0,1192,1177,4039,3363,4468,442,91,5087,4874,5571,4523,1011,1009], +[0,1767,1745,200], +[1,2343,11760], +[0,11761,11762,11763,2537], +[0,18183], +[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,1011,18186,1009], +[0,1767,1745], +[1,2343,11765], +[0,11766,11767,11768,2537], +[0,18192], +[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,1011,1009], +[0,1767,1745,1283], +[1,2343,11770], +[0,11771,11772,11773,2537], +[0,1241,1776,18201], +[0,1192,1177,4039,4468,1587,442,91,5087,4874,18203,5571,4523,1011,1009], +[0,1767,1745,1776], +[1,2343,11775], +[0,11776,11777,11778,2537], +[0,3105,2600,3117], +[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,7639,1011,1009], +[0,1767,1745,1367], +[1,2343,11780], +[0,0,11767,11781,4139], +[0,1767,1745,1781], +[1,2343,11783], +[0,11784,11767,11785,2523], +[0,3117], +[0,1767,1745,1783], +[1,2343,11787], +[0,11788,11789,11790,2537], +[0,2081,2700,3427], +[0,53,14170,13051,18225,1178,18228,1610,1700,1866,1177,18229,1895,1922,1935,1947,1955,1959,18230,2126,2323,2338,2361,2368,18233,2396,2409,2419,2494,2541,1192,1894,89,3824,3904,18235,4431,4537,18237], +[0,18239,6038,89,18241], +[1,2343,11792], +[0,11793,11794,11805,2523], +[0,8712,18248], +[0,18254,18255,1429,1651,18259,2297,2881,2900,18260,2923,2899,3198,3347,5362,2278,4193,4196], +"tent-type", +[2,11484,11795], +[1,2343,11798], +[0,26964,0,26991,34352], +"a-parser-js", +[2,7817,11799], +"null-loader", +[2,4049,2098], +"tanem-scripts", +"ua-parser-js", +[0,18263,18266,18267,9229], +"images", +"img", +"scal", +"able-", +"vector-", +"ics", +"graphics", +[2,11810,11812], +[2,11809,11813], +[2,11808,11814], +[1,2343,11817], +[0,11818,11819,2514,2523], +[0,4747,4487,18272,2151,18275,4300,2851,18277,18279,18282], +[0,1177,4874,4892,4864,1011,18285,18290,1009], +"query-core", +[2,959,11820], +[1,2343,11823], +[0,11824,0,11825,2537], +[0,28142], +[0,1747,1788,2382,18035,5995,200,18295,2663], +[1,2343,11828], +[2,964,3709], +[0,11829,11830,7831,2537], +[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12467,12406,1582,1699,12409,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,3788,11244,3789,3810,5564,3846,12435,12438,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12444,12445,4549,4555,12447,1002,12448,12449,12452], +[0,192,5467,7634,12455,12458,7637,12459,4874,12461,8149,4880,4882,4883,12462,12463,1177,10321,2071,2079,12471,12472,2675,2990,1894,3706,3708,89,3824,4320,4474,91,1984,12473,12475], +[1,2343,11834], +[3,7637,10], +[2,11832,977], +[0,11841,11844,7831,2487], +"@github/webauthn-json", +"better-", +"better-docs", +[3,1895,17], +"act", +[2,11838,11839], +[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12405,1582,1699,12409,12452,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,11244,3810,5564,3846,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12445,4549,4555,12447,1002,12448,12449], +"hanko", +"passkey", +[0,192,5467,7634,12455,12458,7637,12459,4874,12461,4880,4882,12462,12463,1177,2071,2079,12472,2675,2990,1894,3706,3708,89,4320,4474,91,1984], +[1,2343,11848], +"webauthn", +"passcode", +[0,0,11849,2514,2523], +[0,4389,4430], +[1,2343,11851], +[0,11852,11854,7395,4139], +[0,18313,18315,18316,18317,18322,97,8597,18328,18332,18333,18334,18336,1461,1582,1673,18339,18340,18344,18347,18349,18351,18354,18355,18357,18358,18360,18362,18364,18365,18368,18370,18371,18372,18374,18376,18378,18380,18381,18382,18383,18385,18386,18387,18389,18391,18392,18394,11264,4427], +"kcd-scripts", +[0,13175,13178,5076,13181,11267,11976,13187,7833,7837,7839,7840,368,7948,11273,13188,8998,13189,13192,643,692,11274,10875,11275,966,968,972,974,13194,13196,13198,4864,11290,13200,13203,5087,11292,11296,11300,11301,13204,4870,7892,4874,13205,13207,13210,8149,6510,11305,4880,4882,4883,11312,11315,5254,13213,13214,11320,11322,1009,1011,1086,13078,11325,13215,11331,1170,1437,1448,13221,13223,1610,1613,11336,1759,1789,13228,8161,1177,1879,1895,1915,1924,1938,1939,1947,13231,1948,1959,1961,1982,2071,11345,2151,2193,2070,12424,2665,2686,2696,2742,2758,1192,11347,2771,2780,2784,11348,11350,2814,2832,11356,5102,2990,1209,13232,11357,3183,3213,3310,3330,3412,3445,3467,13233,3536,3549,1894,3703,3717,3725,3758,3763,11360,11362,11363,89,3810,13235,3824,4934,11366,11368,11371,3843,11374,3885,11377,3957,3978,3984,3985,3988,11380,13240,11382,3999,4039,13241,4135,4164,4183,4201,13243,11397,4390,4391,4072,4494,4508,91,11400,13245,2924,4676,11401], +[1,2343,11856], +[0,0,11858,11859,2399], +"integration", +[0,192,5467,19193,442,1177,1895,1951,1955,2675,2990,2899,1894,4042,4170,4257], +[0,4552,1149,14629,18402,1794,3048,1862,6917,14824,5995,4967], +[1,2343,11863], +"end-to-end", +"e2e", +[0,11864,11865,11866,2443], +[0,4484,18407], +[0,51,53,104,18282,18277,18409,603,811,816,6373,5087,1009,1011,1437,1525,1787,668,1177,2151,2205,2675,1192,2771,2272,3090,3445,4042,4073,4127,4135,4072,4468,91], +[0,1795,18411,15480,18412,17116,18413,18415,1424,8221], +"ria-query", +[2,9165,11867], +"aria-query", +[2,7320,2825], +[2,1752,11870], +[1,2343,11873], +[0,11885,11886,11887,2537], +"n-case", +"jest-in-case", +"-ser", +"ializer-ansi", +[2,11876,11877], +[2,8746,11878], +[3,2802,11], +"select-p", +"rojects", +[2,11881,11882], +[2,11880,11883], +[0,18420,2096,18423,2390,18425,18426,18427,1209,3181,18428,3544,4431,4597,4600,4747], +[0,4856,4864,18432,4870,6503,4874,9725,6513,6512,18435,18438,18440,4892,1429,2012,2151,2188,2899,3421,3752,4039,4193,4196,4474,4487,91], +[0,18420,2041,2649,18442,18443,6589,18444], +[1,2343,11889], +[0,11892,11900,11901,2537], +"css.escape", +"redent", +[0,2763], +[2,552,2203], +[3,2782,23], +"sixteen", +[2,11894,11895], +[3,4057,15], +"elete", +[2,11897,11898], +[0,91,68,1389,1177,14707,1776,3084,2899,4535], +[0,1283,17950,16284,1797], +[1,2343,11903], +[0,11904,11905,11908,2537], +[0,1437,1209,18456], +[0,3297,1082,1149,2228,2899,4193,4237,1177,2814,3220,4135,1168,1330,2924,18458,18459,1362,3460,1894,4431,2025,2071,7915,2240,18463,1389,53,11801,1178,1195,18464,17568,87,1954,2258,2247,1938,2253,2281,1958,1895,1903,1955,1970,18461], +"atcher-utils", +[2,8763,11906], +[0,1798,14059,8173], +"@callstack/eslint-config", +"@rel", +"mify/jest-serializer-strip-ansi", +[2,11910,11911], +[1,2343,11914], +[0,7936,7938,7939,2523], +[1,2343,11916], +[0,11917,0,11919,2487], +[0,4874,2057,18473], +"dotenv-cli", +[0,1804], +[1,2343,11921], +[0,11922,11923,11927,2537], +[0,1437,4747,1458,2151,18479,18480,18482,18484,18488,18174], +[0,4892,4864], +"@esbuild-plugins/node-modules-polyfill", +"@ph.fritsche/scripts-config", +[3,11925,13], +[0,1804,9381,6147,7242,1161,1808,4405,18493,1896,18494,4750,18495,8433,18496,18497,18498,18499,18500,18501,18502,18503,13322], +"toolbox", +[2,11926,11928], +[3,11300,13], +[2,11930,11874], +[3,7690,15], +[2,11932,2203], +"-lib-coverage", +[2,2759,11934], +[3,11935,13], +"report", +[2,11936,11937], +[2,4227,591], +[2,11936,11939], +"istanbul-", +"reports", +[2,11941,11942], +[3,6551,9], +"jest-s", +"r-ansi", +[2,7909,11946], +[2,11945,11947], +[1,2343,11950], +[0,11953,11954,11955,2537], +"-scripts", +[2,6579,11951], +[0,18509,18473,18511,18513,18514,18518,1676,2057,18145,2151,18521,18524,18525,18527,2072,18528,814,4135,4748], +[0,1009,1011,1166,1400,1503,1177,1903,1920,1938,1954,1958,3421,3539,4193,4481,4508,91], +[0,1804,1808,6996,1896], +"@ember/app-blueprint", +[1,2343,11962], +"aram", +"regexparam", +"tseslint", +"tinyhttp", +[0,11963,11964,11919,2399], +[0,2057,18537], +[0,4389,4255,18540,3505], +[1,2343,11966], +[0,11967,11580,11581,2487], +[0,1437,2152,2760,18545], +[1,2343,11969], +[0,11970,11971,2514,4139], +[0,18552], +[0,2228,18555,2236,2273,2281,2298,2766,2814,2297,2881,2895,2898,2912,3006,1209], +[1,2343,11973], +[0,11975,11979,11980,2523], +[2,976,4590], +[0,1156,1191,1699,3373,4023,4427], +"@biomejs/biome", +[3,4343,10], +[2,11977,1612], +[0,18566,18569,1173,1175,1195,1198,1208,1212,1220,18571,1264,1277,18574,1429,1457,1584,1596,18575,1610,1628,1863,1177,18580,1916,1937,17585,2092,18581,2323,2332,18582,2504,2600,2651,2843,13110,2297,2881,2886,2900,18260,2921,2923,2925,18584,3105,3107,18587,3112,3177,2899,3342,3463,3561,3732,4039,4111,18590,4193,4196,4307,18592,4537,18595,4027,188,4634,4639,4645,18599,2924,4677,4681,4693], +[0,13449,188,4963], +[1,2343,11982], +[0,11983,11984,11985,2537], +[0,1363,18609,18610,18611,2713,18613,18616], +[0,1377,1596,1177,2228,2236,2240,2256,2258,2281,17567,2311,2759,2899], +[0,18619,18620,18621,18622], +[1,2343,11987], +[0,11989,11990,11991,2537], +"headers", +[0,18627,18629,18632,2646,18633,1209,3361], +[0,192,5467,1166,1448,1610,1797,1177,1909,2114,2675,2990,18637,3421,18634,3754,3985,3995,1906], +[0,1559,1823,16284,2934,18639,18640,18643,18645,18646,18647,3361,18648,3754,18649,1283,5354,4714], +[1,2343,11994], +"ipaddr.js", +[0,0,11997,2514,2523], +"net", +"network", +[0,442,18657,4874,18659,7677,1177,1895,1955,18660,1894,18661,4474,91,4523,1984], +[1,2343,11999], +[0,12000,12004,12005,2399], +[0,30697,27276,11956,18740,18684,14959,18693,18733,18735,18687,1378,18737,1381,18717,18720,18695,18686,18747,18683,1437,1458,18689,1536,1543,18671,18678,18679,18668,1687,18753,12923,18758,12925,18704,2020,2021,2026,2098,2105,18745,2151,14939,12929,12471,2070,14940,18728,18701,18708,2659,2712,2720,18673,18702,1209,3105,18726,3181,3237,3368,3386,18428,18669,3560,18714,18722,18675,814,14562,18730,18667,4135,12937,18710,18698,1241,4423,4438,18670,4648,18692,7801,18666,31963,31947], +[3,975,11], +"ccepts", +[2,12001,12002], +[0,14938,1385,1429,1431,18761,15264,1540,18774,18771,1177,1895,18766,1951,1953,2116,18706,2832,2960,2899,3297,3421,1894,6021,4294,4342,4421,4449,36864,4699,4707,18764,18760], +[0,1896,18776,12589,200,18777,18778,18779,837], +[1,2343,12007], +[0,12008,12013,12014,2537], +[0,5222,71,5757,5759,5809,5830,5832,83,5889,87,97,18784,18787,18790,18795,1212,18801,18687,1378,18695,18747,1496,18803,18807,18704,14562,4135], +"ntent-", +[2,12009,10366], +[2,981,12010], +[3,985,11], +[0,53,18809,18811,18812,18813,18815,1178,1385,1429,1499,18867,1532,18671,1593,18679,18823,1825,18825,1830,18829,18832,18833,18834,18835,18839,1177,18840,1954,18706,18841,2899,2907,3957,6021,814,4039,2924], +[0,1172,18777,18844,1825,5197,5198], +"ncode-url", +[2,12012,12015], +[1,2343,12018], +[0,12019,12020,12021,2487], +[0,18852,18855,18687,18865,14938,14939,18708,18868,12937,4648], +[0,53,68,71,5757,83,5889,97,18809,18812,18872,18787,1381,1385,1429,18867,1540,18823,1825,1827,18873,18825,18829,18832,18833,18834,18835,18839,18889,18892,18894,1177,1895,18840,1951,1953,1955,18895,2116,18841,2899,1894,2907,3773,3980,14944,4320,4323,11598,2924], +[0,18844,1825], +[1,2343,12023], +[0,12024,12025,12028,4139], +[0,18901,18906], +[0,816,10817,4874,2968,4039,4042,4494,91], +[3,12011,18], +[2,12026,998], +[0,1831,1936,1623,4412,18909], +[1,2343,12030], +[0,0,0,5708,4139], +[1,2343,12032], +[0,0,12033,12034,4139], +[0,2899,1177,2759,1954,1938,1958,1903,1970], +[0,10368,1833,1002], +[1,2343,12036], +[0,12037,9264,12038,2537], +[0,3441], +[0,3101,7046,7241,18924,12706,4966,6703], +[1,2343,12040], +[0,12041,12043,2514,2537], +[0,2215,4388], +"tsparticles", +[0,8780,5087,4874,1622,1177,20281,2675,1192,2990,3144,1894,91], +"particles.js", +"particles", +"particlesjs", +"particle", +"jsparticles", +"xparticles", +"particles-js", +[1,2343,12052], +[0,12057,12064,12065,2537], +"particles-bg", +"-vue", +[2,12053,12054], +"particles-ts", +[0,1104,4294], +"particles.ts", +[3,2638,9], +"ticles-js", +[2,12059,12060], +[3,12061,15], +[2,12062,1722], +[0,4874,2398,2720,2899,3421,3742,91], +[0,8618,8619,8620,1299,200,1523,6876,8622,1836,1179,8623,8624,6847,8625,2720,8626,8628,5284,202,6710,3741,3742,8630,8631,3925,8632,4989,8633,2184,8634,7009,6621,181,8635,4758,8636], +"vue-particles", +"ngx-particles", +[2,1101,12045], +[1,2343,12077], +"ground", +[2,12047,12070], +"vuejs", +"preactjs", +"angularjs", +"html5", +"web-design", +[0,12078,12085,12095,4139], +[0,7272,12240,3757,19647], +"webdesign", +"css3", +"vtt", +"animated", +"background", +"conf", +[0,13614,1159,9254,1177,2011,2708,3410,3421,4103,4389], +"confetti", +"works", +"fireworks", +"fireworks-js", +"confetti-js", +"confettijs", +"fireworksjs", +"canvas-", +[2,12093,12086], +[0,18089,18943,18944,1936,10368,15103], +"apk", +"flickity", +[1,2343,34419], +"@d-fischer/shared-utils", +[3,1005,9], +"all", +"api-call", +[2,12100,12102], +[2,12100,10896], +"jose", +[0,1429,2675,2899,1899], +[0,6971,18951,18952,998,6956], +"twitch", +[1,2343,12110], +[0,12111,12112,12113,2523], +[0,2003,4430], +[0,4387,4389], +[0,6639,6436,1389,14927,353,4225,8309], +[1,2343,12115], +[0,0,12116,12125,2537], +[0,53,13051,85,87,192,5467,17584,1175,1178,1193,1195,1177,1881,1895,1938,1955,18964,2070,2675,1192,3183,6331,4750,1894,10623,2924,4677,4707,18966], +[1,2343,12568], +[2,3273,6543], +[3,439,18], +"regexpp", +[2,12119,12120], +[3,5552,23], +[2,12122,3007], +[2,1010,1995], +[0,5001,1263,6639,18523,18968,18969,18971], +"title-case", +[2,3138,9102], +"pecific-snapshot", +[2,11945,12128], +[3,8722,10], +"-mdxjs", +[2,12130,12131], +[2,3167,12132], +[3,5551,24], +"to-typescript-types", +[2,4120,12135], +[2,12134,12136], +[1,2343,12139], +[0,12140,12141,12143,2537], +[0,18976,1448,1850,18980,6914,18982,18984,18986,18989,17403,18990,18992,18993,3044,3431,13635,3435,3438,18994,3775,18995,18997], +[0,1173,13998,1261,1177,1879,1938,1947,1959,2708,2832,4039,4103], +"pastoralist", +[0,5284,19001,19003,1973,6071,89,2130,5472,19005,19007,6969,2899], +"cript-estree", +[2,5552,12144], +[1,2343,12147], +[0,12148,12149,12143,2443], +[0,2571,4135,3847,3744,3435,18994,3904,1847,1850], +[0,1843,1177,4039,3410,48,2708,53,1261,1959,4103,68,1879,1938,1947,1961,1198,13998], +[1,2343,12151], +[0,12152,12154,12143,2537], +[0,2571,4135,3744,3435,19018,19020,18980], +[2,12155,27730], +[0,1177,4039,3410,48,2708,53,1261,1959,4103,68,1879,1938,1947,1961,1198,13998], +[3,20826,14], +[1,2343,12157], +[0,12164,12167,12143,2487], +[3,1013,11], +[2,12158,9026], +[2,10306,5256], +[3,1603,14], +"ontext", +[2,12161,12162], +[0,2571,13635], +"-theming", +[2,1832,12165], +[0,1177,4039,3410,48,2708,53,1261,4103,68,1938,1881,1198,13998], +"-formatter", +[2,1413,12168], +[2,2093,12169], +"mini-", +"mini-store", +"rc-animate", +[1,2343,12177], +"rc-form", +"z-use-drag", +[0,12183,12210,2514,34352], +"@types/ra", +"@types/raf", +[3,1013,13], +"codo-gen", +[2,12180,12181], +[0,1080,1869], +"ast-types", +"motion", +[2,4893,12185], +[3,1225,14], +"proptypes", +[2,8137,12188], +[2,2528,12189], +[2,12187,12190], +[2,4670,8861], +[2,1199,12192], +"hot-loader", +[2,1625,12194], +"jest-emotion", +"screenshot", +[2,8820,12197], +[3,4323,19], +"yled-components", +[2,12199,12200], +[3,11598,12], +"or-styled-components", +[2,2484,12203], +[2,12202,12204], +"tsc-alias", +"@electric-sql/pglite", +"ucloud", +"lsofi", +[0,1087,1177,1903,1938,1948,1954,1958,2899,3421,4342], +[1,2343,12212], +[0,12218,12221,12223,2537], +[3,1014,9], +"slate", +[2,12213,12214], +"slate-hyperscript", +"slate-react", +[0,1082,2071], +[2,12213,594], +"is-hotkey", +[0,16805,1393,19038,5867,30889,12142,1894,3980], +"jotai-optics", +[0,19042,19044,3595,19045,19046,19047,5286,19049,19052,19053,676,19054,19055,19057,19059,19060], +"jotai-x", +[1,2343,12230], +"optics-ts", +[3,3836,9], +"keys-hook", +[2,12227,12228], +[0,12234,12235,12237,2537], +"deep-compare", +[2,8183,12231], +"zustand-x", +[0,19066,2569,19071,19073,19078,15059,3435], +[0,5517,13614,23237,10976,10979,11008,27564,27568,27571,27573,27575,27576,27580,11013,19325,1143,1159,9254,1177,14741,15308,2756,3410,3421,19082,4103,19084,4389,11028], +"plate", +[0,5284,5286,3595,676,6693,6692,5187,1182,6830], +[1,2343,12239], +[0,12241,12243,12249,2443], +"es-errors", +[0,15786,19092,19093,19094], +"react-b", +[0,1177,15793,15797,15801,2675,2990,3421,19097,15804,15805], +"react-button", +"uiw-react", +"react.js", +"uikit", +"react-ui", +[0,5286,19099,19100,1925,5194,19101,2680,19102,2474,5258,5284,6422,1858,614,594,6731], +[1,2343,12251], +[0,0,12252,12254,2537], +[0,13614,1158,1177,2708,2768,3421,4103,4535], +[2,1024,45], +[0,1858,1925,19108,5284,5286,6422], +[3,3839,10], +[1,2343,12257], +[0,0,12258,12259,2523], +[0,1173,1175,1198,8966,1264,1429,1610,2899,4039], +[0,5194,1851,1172], +"react-input", +[1,2343,12262], +[0,0,12263,12264,34352], +[0,19118,2899,1825,18686,18693,19119,19121,19122,19123,1381,18801,18825,19125,19127,14217,14196,19130,14214,1235,14199,14192,1244,14198,14215], +[0,19132,6422,1862,6567], +[3,1023,18], +[1,2343,12269], +"verlay-trigger", +[2,8666,12267], +[0,0,12270,12271,2537], +[0,48,53,87,10688,1863,1177,1895,1903,1938,1954,1958,2675,3421,1894,4193,4389], +[0,1862,6567,5194,19138,1865], +[1,2343,12275], +"react-u", +"react-utils", +[0,0,12276,12277,4139], +[0,13614,1158,1429,1859,1177,2011,2228,2256,2283,2311,2708,2899,3421,3736,19146,4103,4389,4535], +[0,5286,5258,5194,1858,1862,6567,7168,3053,3065,6636], +[2,12279,8295], +"flowbite-", +[1,2343,12281], +[0,0,12282,12288,2523], +[0,1317,1311], +"to-ts", +[2,7526,12283], +[2,7719,553], +"prom-client", +"unleash-client", +[0,1867,1936,6435], +"ype-is", +[2,7750,12289], +[1,2343,12293], +"ts-node-dev", +[0,0,8134,12297,2399], +"Unleash", +"ios", +"android", +[0,1867,1108,6961,6920,7256,1871,19161,7169], +[1,2343,12299], +[0,12300,12303,2514,2537], +[0,2004,14301,2003,4227], +"keyux", +[3,1027,12], +[0,1082,1362,19168,1429,6522,19172,2323,2384,2463,3183,3466,4135], +"image-shrink", +[2,12302,12304], +[2,9229,4219], +[2,12302,12306], +[1,2343,12311], +"shipjs", +"@esm-bundle/chai", +[0,12316,12317,12321,2523], +"@total-typescript/ts-reset", +"@hap", +"py-dom/global-registrator", +[2,12313,12314], +[0,439,12121,19180,27907,19193,11180,11209,19182,19184,1006,1091,1615,1676,1874,1994,1996,2000,19186,14301,2069,16783,2105,2200,2687,19187,2743,19189,3181,12118,3466], +[0,5517,53,87,8129,19194,19181,19195,19581,4874,1011,1195,1414,1429,1448,1532,1593,1651,1797,1933,15510,17308,19206,32793,19210,2003,19213,2070,2203,2212,2226,2807,2931,2990,3105,3112,3127,19216,19219,19221,19222,19223,19224,2899,19227,19230,1894,3730,3752,3930,3957,4135,4167,4193,91,2924,4677,19235], +"uploadcare", +"lighter", +"file ", +[0,6892,671,5284,5286,2000], +"file uploader", +"ive image", +[2,5156,12323], +" optimization", +[2,158,12325], +"image ", +[2,12327,6110], +"image size", +" image editor", +[2,6599,12330], +" client", +" api client", +[2,9229,12333], +"ing blocks", +[2,6147,12335], +"lr-blocks", +"uc-blocks", +[2,11857,591], +"smart", +[1,2343,12356], +"smart cdn", +"cloud ", +[3,31,8], +"file platform", +[2,12343,12345], +"ation api", +[2,353,12347], +"webp", +"avif", +"css c", +" properties", +[2,12162,12352], +[2,12351,12353], +[2,11617,591], +[0,12357,12358,12359,2523], +[0,3435,3438,1881], +[0,4389,1796,1177,2708,97,19243,19247,1261,1959,4103,1938,1947,1961], +[0,1177,6651,1541,1259,5284,6718,6778,7056,7192,7044], +[2,8137,668], +[2,1393,12360], +[1,2343,12363], +[0,12364,12365,12359,2537], +[0,4135,3435,3438,19254], +[0,4389,1796,1177,2708,97,19243,19247,1261,4103,1938], +[1,2343,12367], +[0,12373,12374,12375,2399], +[3,5881,34], +"self", +[2,12368,12369], +[3,12370,35], +[2,12371,5585], +[0,1881], +[0,1009,1011,1742,1177,1895,1938,2675,2990,3400,1894,19263,91], +[0,1259,1541,6778,7056,7192,7044,1177,6651,5284,6718,91], +[1,2343,12377], +[0,0,5795,12378,4139], +[0,1885,1501,19269,590,671,9654,2292,2272,19270,1177,2649,19271,15717,4354,16790,19273,18443,2446], +[1,2343,12380], +[0,12381,5795,12382,2537], +[0,442,2203], +[0,1177,7625,19281], +[1,2343,12386], +[2,8530,4798], +"merge-deep", +[0,12387,12388,12389,2537], +[0,19438,19181,442,19344,1009,1011,1891,1907,19286,1915,1938,1942,1951,1953,17306,1982,4523], +[0,9736,1177,91], +[0,1890,1177,7625,19281], +[1,2343,12391], +[0,12401,12404,6936,2443], +[3,5075,18], +[2,12392,8221], +"@makotot/ghostui", +[3,6497,10], +"@types/hast", +"@umijs/bundler-utils", +"@umijs/", +"@umijs/core", +[2,12398,594], +[0,1953,1951,1938,19286,1011,17306,1009,1915], +"-scroll-to", +[2,12082,12402], +[0,1177,91,9736], +"codesandbox", +"comlink", +"dumi-", +[1,2343,12417], +"dumi-afx-deps", +"estree-", +"util-to-js", +[2,12410,12411], +[3,12412,12], +"visit", +[2,12413,12414], +"file-s", +[0,0,0,12423,2487], +"ystem-cache", +[2,12416,12418], +"is-element", +[2,2573,12420], +"heti", +[0,1177,6651,7625,28987,1894], +"html2sketch", +[3,3137,12], +"ind-and-replace", +[2,12425,12426], +[3,3140,14], +[2,12428,1871], +[1,2343,12453], +"prism-themes", +"react-l", +"-skeleton", +[2,10087,12433], +[2,12432,12434], +"code-editor", +[2,10961,12436], +[2,3890,12437], +"rehype-r", +"emove-comments", +[2,12439,12440], +"directive", +[2,3986,12442], +"sucrase", +"umi", +"-parents", +[2,4555,12446], +"v8-compile-cache", +"vfile", +"dumi-a", +"ssets-types", +[2,12450,12451], +[0,12464,0,2514,2523], +[2,11367,1732], +[2,6495,12454], +[3,5540,9], +"sted-git-info", +[2,12456,12457], +[2,6308,6925], +"luralize", +[2,5088,12460], +"@umijs/lint", +[2,12398,9711], +[0,53,1939,1959,68,1938,1270,1935,1947,19302,1011,19254,1961,1976,1009], +[1,2343,12469], +"-import-utils", +[2,12405,12466], +"repo", +[0,0,12470,12476,2523], +[0,1177,1903,1938,1953,1958,4389], +"git-repo-info", +[2,11311,1732], +"zx", +[2,699,701], +[2,12407,12474], +[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,6651,2446,2292,2272,671,19315,19269,2869,1899,4255,19317,590,19318,19320,19273], +" site generator", +[2,2947,12477], +"jamstack", +[1,2343,12481], +[0,0,12482,12483,2537], +[0,5601,19325,1177,1938,1953,1958,4389], +[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,6651,2446,2292,2272,671,19315,19269,2869,4255,19317,590,19318,19320,19273], +[1,2343,12485], +[0,12486,12487,2514,34352], +[0,442,27928,1982,2203,4523], +[0,19333,5601,4874,19336,1446,1177,19339,33860,1894,91], +[1,2343,12489], +[0,12490,12491,12492,2537], +[0,29371,19194,19344,19254,2203], +[0,1166,1177], +[0,6651,1906,19347,19348,19349,19350,19353,1501,19269,590,671,9654,2292,2272,19270,1177,2649,19271,4255,15717,4354,16790,19273,18443,2446,2869], +[1,2343,12494], +[0,0,12495,12496,2399], +[0,192,5467,1610,2675,2990,3985,3995,1906], +[0,19359,1541,1177,18639,18640,3624,1906], +[1,2343,12498], +[0,12499,12500,12501,2537], +[0,1012,1091,1443,1525,1595,1699,8098,18420,2777,2845,12834,3117,4507], +[0,442,4874,6513,29891,16480,22839,1177,1895,1938,1953,1955,1982,3125,3390,3400,3471,1894,4193,18710,91,4523,1984], +[0,2295,1739,1745,1177,1179,1932], +[1,2343,12503], +[0,12504,0,12505,4139], +[0,1676,27418,2191,19380,29856,27921,12578], +[0,91,1177,1204,14056,1932], +[1,2343,12507], +[0,12508,12509,12510,2523], +[0,2102,2151,3008,3429,4121], +[0,48,53,87,192,5467,19401,16405,1178,1193,1457,19403,1610,1700,1701,1177,1895,19405,1938,2675,1192,2794,2990,3400,1894,4257,2924], +[0,1177,671,9654,1194,2924], +[1,2343,12512], +[0,12513,12514,12515,2537], +[0,439,19194,19413,2000,19415,19419,4025], +[0,1011,1166,1414,1437,1177,19422,1912,1933,2020,3400,3471,3532,91,1906], +[0,1177,6741,6939,1166,1973,8791,1145,6637,6468,2899], +[1,2343,12517], +[0,12518,12519,12520,34352], +[0,19209], +[0,2899,1177,1178,3028], +[0,1172,1177,6741,6939,1178], +[1,2343,12522], +[0,12523,12524,12526,2523], +[0,16805,19436,1393,1423,2105,2203,3057,4135], +[0,53,68,192,5467,19438,442,6061,6063,19441,5366,19443,5601,5087,19446,5254,1317,19449,1804,1177,1895,1933,1955,2024,2675,1192,1894,4131,4183,4468,4474,91,4523], +"object-deep-merge", +[0,1177,1388,4231,5592,671,1421,19451], +[1,2343,12528], +[0,0,12529,12530,2523], +[0,1177,2899], +[0,1177,6741,1925,6778], +[1,2343,12532], +[0,12535,12536,12537,2537], +[2,19573,24759], +"diff-sequences", +[0,1874,2687], +[0,12602,4874,19464,1178,1503,1615,1177,19466,2151,2899,3421,3456,4039,4135,13134,19468,19469], +[0,1177,6741,6939,1932,8505,4298,12442,2202,2203,19472,19473,19475,19478,19479,19482], +[1,2343,12539], +[0,12540,12541,12542,2443], +[0,439,2004], +[0,192,5467,6303,19492,19181,442,27928,19611,19580,31200,1006,4870,4874,1011,1012,16480,1177,19494,1895,1912,1953,1982,1992,1994,2000,2675,2807,2990,1209,3125,3390,3401,1894,1531,91,4523,1984], +[0,1177,6741,6939], +[1,2343,12544], +[0,12545,12546,12547,2537], +[0,1209,19500], +[0,1091,2070,2675,2899,1177,4039,19505,15555,48,53,13693,94,4131,87,68,19504,5235,1933,1198,5874,78], +[0,1177,1932,1934], +[1,2343,12549], +[0,12550,12551,12552,4139], +[0,2654], +[0,19512,19514,1177,1895,19516,1894,4135], +[0,6939,6741,1177,1936], +[1,2343,12554], +[0,12555,12556,12558,34352], +[0,11554,19522,19525,18976,1143,1676,19526,19527,19378,2571,17501,2743,3181,19020,19531,18994,4135,11555,4480], +[0,19535,5601,1011,1173,1175,1178,1208,1212,1261,14237,1280,1291,1429,1610,19538,1177,1912,1915,1933,1938,17585,14053,19539,2070,2708,2762,2858,19540,19541,3125,2899,19544,3421,3875,4039,4103,4193,4449,91,19545], +"stable-hash", +[0,1177,6741,6939,5194,13354,5260,1204,6813], +[1,2343,12560], +[0,12561,12562,12542,2487], +[0,1012], +[0,48,53,87,92,192,5467,19492,19552,6061,6063,5536,5601,5087,4874,5254,1009,1011,1012,1193,19555,1680,1177,1895,1912,1933,1938,1953,1955,1992,19560,2675,2742,1192,15853,2990,19516,3534,1894,4039,4131,4135,4474,91], +[1,2343,12564], +[0,12565,12566,12567,2537], +[0,19567,12533,19568,8506,1676,1874,2000,19186,2626,12525,27427,4135,19570,30614], +[0,5517,48,53,68,5240,87,19574,19577,19193,19578,816,16607,6065,16608,4856,5245,19580,19581,1006,8818,6503,4874,5254,19586,5552,1198,1208,19588,1414,1420,1429,1677,1177,19504,19505,2070,2203,2675,19592,2845,26696,2990,2899,19595,3541,4068,4039,4042,4131,4193,5569,91,4523], +[0,1177,1932,1776], +[0,12569,19601,12572,34352], +[0,439,19193,11180,12570,12534,12668,17310,12118,19571], +[2,19606,12571], +"ast-token-store", +[0,1177,6741,6939,671,19632,2856,1781], +[1,2343,12574], +[0,12575,12576,12577,2537], +[0,11869,19522,1143,19638,1169,19639,19640,13829,2571,19644,19645,3181,19020,19647,19648], +[0,48,53,68,5240,94,1159,1198,1261,1177,1881,1912,1933,1935,1938,2004,2126,2708,2762,17221,3183,3410,3435,3438,4039,4103,4135,4389,19650], +[0,1177,6741,6939,6653,7320,1219], +"unrs-resolver", +[1,2343,12580], +[0,12581,12582,12583,2537], +[0,3137], +[0,3421,1429,2899,1177,2203,442,19206,19657], +[0,1177,6741,1783,671,9654], +[1,2343,12585], +[0,12587,0,12594,2399], +"aleo", +[0,2203,439], +"cryptography", +[3,1336,10], +"decentralized", +"-knowledge", +[2,7150,12591], +"oracle", +[0,1177,6741,6939,2899], +[1,2343,12596], +[0,12597,12601,12615,34352], +[0,439,1835,19671,2191,2203,1555,2687,4135,29860], +"event-", +"target-shim", +[2,12598,12599], +[0,442,5601,1006,27303,4874,1011,12145,1177,1895,1912,1933,2071,2675,2990,3125,2899,3401,3421,3456,1894,3757,3980,4039,19676,4507,91], +"@mysticatea/eslint-plugin", +[3,12602,12], +[2,12603,4158], +"dts-bu", +"ndle-generator", +[2,12605,12606], +"growl-reporter", +[2,2877,12608], +"-minify", +[2,4045,12610], +"rollup-", +"rollup-watch", +"type-tester", +[0,1177,6741,6939,202,6710,5286,6987,2090,3403,1204,3209], +"w3c", +"abort", +"cancel", +"control", +"controller", +[2,12617,12620], +"abortsignal", +[1,2343,12624], +[0,12625,12626,12615,2487], +[0,1927,19414,2687,3181,814,4135], +[0,12602,1503,1177,2071,2203,2899,3421,3456,3757,4039], +"negotiator", +[1,2343,12629], +[0,12630,0,12632,2399], +[0,19689,19571], +"negotiation", +[0,1177,6741,6939,1894], +[1,2343,12634], +[0,12635,12636,12637,2537], +[0,439], +[0,1011,1742,1177,1895,1912,1933,1939,1953,1955,2203,2675,1192,2990,3401,1894,91], +[0,1177,6741,6939,1862,6567], +[1,2343,12639], +[0,12640,12641,12642,2523], +[0,19522,19724,1143,19726,19526,19641,2004,2571,19644,3181,3438,19020,18994,3744,814,4135,11434,19729], +[0,53,68,5611,19731,19735,90,5601,1006,4874,1011,1178,1177,1881,1912,1933,1938,1992,19560,1994,2000,11605,2070,2759,2762,19736,3125,2899,3410,4193,91,19545], +[0,1177,6939,6741,89], +[1,2343,12644], +[0,12645,12646,12642,2523], +[0,4763,53,58,21131,25652], +[0,1192,91,4874,104,1178,5601,1006,19877,36694,68,92], +[1,2343,12648], +[0,12649,12651,12652,2487], +[0,439,12121,8506,19592,19745,19750,19751], +"git-clone", +[0,107,6022,19492,19181,442,19605,19609,11470,4856,5601,19611,1006,6503,4874,19759,1009,1011,1145,1429,19619,1177,1895,1912,1915,1933,1938,1942,19622,1945,1948,1953,19757,1955,1964,1982,1988,17308,19756,3125,2899,19761,3090,3401,3421,3486,1894,4135,4320,4946,19624,1531,4494,91,4523,19630,4614,4630], +[0,1177,6741,6939,6961,1108], +"iglet", +[2,5537,12653], +[3,9362,11], +[2,12655,1496], +[1,2343,12658], +[0,12661,12662,12663,2523], +"nestjs", +"fullstack", +[0,19767], +[0,442,13729,1177,19771,1895,1912,1933,2990,3125,2899,3400,1894,4131,19235], +[0,1177,1965,19773], +[1,2343,12665], +[0,12667,0,12669,34352], +"archive", +[0,91,4135,31800,3060,19780,12121,3181,5569,19751,1413,1405,2203], +"eslint-json-compat-utils", +[0,19786,1177,6741], +[1,2343,12671], +[0,0,12529,12672,2443], +[0,1177,6741], +[1,2343,12676], +"flowcontrol", +"arch", +[0,12677,12678,12679,34352], +[0,439,5012,14301,2203,2932,3561,3616,3676,4135,19795], +[0,53,68,14039,19492,10879,19797,19798,8818,19799,6503,4874,19800,5254,19802,5604,5552,1082,1145,668,1994,19339,1996,2000,2807,695,2899,3640,3681,2278,4228,4333,3709,19803,4494,4505,4745], +[0,1177,6939,6741,3709,19805], +"cron-parser", +"date.js", +"human-i", +[1,2343,12686], +"nterval", +[2,12682,12684], +[0,12691,12695,12696,2523], +"uman-interval", +[2,6495,12687], +[2,8329,2995], +[2,3230,12689], +[0,5604,1012], +"job", +"jobs", +"delayed", +[0,192,5467,19181,442,4874,5551,7677,22839,23203,1177,1895,1912,1915,32525,1953,1958,1992,19560,2203,2675,2807,2990,1894,23535,4131,1531,91,4523,1984], +[0,1177,6741,6939,671,1975,5472], +[1,2343,12698], +[0,12723,12724,12725,2537], +[3,1339,12], +"end4", +[2,12699,12700], +"meat7", +[2,1337,12702], +"bow-swam-troops-care", +"cent-matter-to", +"close", +"r-composed-particularly-shout", +[2,12706,12707], +"coach-organized-notice", +"correct-home-silent7", +"course-whenever-merely", +"crop", +"-birthday-web3-children", +[2,12712,12713], +"exchange-known-bend", +"-even", +"tually-bound", +[2,12716,12717], +[2,8205,12718], +"grass-dollar-crew-floating", +"-fruit-web3-perfect", +[2,4374,12721], +[0,1012,608,606], +[0,9125,5601,1006,1177,9141], +[0,6869,1745,2295,4298,9132,9134,9658,1932], +"lay-rest-hour", +"balance", +"-trade-solar", +[2,12727,12728], +[2,3131,12729], +"meat", +"-think-stove8", +[2,12731,12732], +"offic", +"e-deal-mostly1", +[2,12734,12735], +"product-slight-adult-settlers", +[3,3931,9], +"done-should-moon", +[2,12738,12739], +"scienti", +"fic-exist-event2", +[2,12741,12742], +"sent", +"-won-little-western", +[2,6590,12745], +[2,12744,12746], +"-wing-eat", +[2,6887,12748], +"stay-including", +"supp", +"er-t", +"erm-including-snake", +[2,12752,12753], +[2,12751,12754], +"truck-hospital-equator-hurt", +"trunk-darkness-believed-corner", +"typi", +"cal-recall-industry-exchange", +[2,12758,12759], +"warn", +"-clothing-whose0", +[2,12761,12762], +"weigh-flew-web3-farm", +[1,2343,12766], +[0,12767,12768,12769,34352], +[0,5279,439,1443,1458,19824,5867,30055,2203,2709,10911,2835,3547,19826,19827,4135,8959], +[0,51,53,68,19181,19829,1011,5552,1166,1414,1836,1177,19422,1907,1912,1933,1942,1982,1992,19560,1994,2000,2992,3125,17269,27922,3390,3401,19595,3471,3718,91,4630,4745], +[0,1177,6741,6939,1981,9654,671,590,1906], +[1,2343,12781], +"@airtap/browserify-istanbul", +"-default", +[2,1090,12772], +"airtap-", +"airtap-multi", +"bruce-millis-option", +[3,9242,9], +[3,9242,10], +[2,12778,5576], +"near", +[0,12561,12794,12797,2537], +"nearest-file", +[2,2103,12782], +"s-to-files", +[2,2070,12784], +"human", +"ize-duration", +[2,12786,12787], +"load-script", +[3,3736,9], +[2,12790,6953], +[2,3094,12791], +"maybe-combine-errors", +[0,19344,5601,6503,4874,1009,1011,5551,19838,19839,1540,1177,1912,1933,1985,1992,19560,4474,4494,91,4543,1984], +"nanoresource", +"-col", +[0,1177,6741,6939,19842,1984,19844], +"-collection", +[2,12795,12798], +"on-str", +"eam-close", +[2,12800,12801], +"run-", +"parallel", +[1,2343,12806], +[0,12810,12811,12816,2523], +"-settled", +[2,12804,12807], +[2,12803,12808], +[0,439,12118,16870,3681,4135,19851], +[0,107,27928,19609,19344,11470,5601,19616,4874,5254,19853,1009,1011,5552,7677,1145,19619,668,1177,23753,1895,1933,1938,1945,29743,19623,1955,1982,19339,1996,2000,2018,2203,2832,3125,3510,1894,1531,91,19630,4614,1984,4630], +"tap-completed", +"y-with-args", +[2,3949,12813], +"transi", +[0,1177,6939,7625,188,12072,3624], +"ent-error", +[2,12815,12817], +[1,2343,12821], +"abstract-browser", +[0,12822,12824,12827,2487], +[0,51,2861,1437,2716,3429,89,4183], +"simple-get", +[0,19181,19861,5601,4874,8860,4880,1567,1177,5556,19862,19864,2807,3339,4294,91,1984], +"labs", +"saucelabs", +[0,1177,19866], +[1,2343,12829], +[0,12830,12838,5795,34352], +[0,34028,1006,19871,2004], +"uri", +"fast-uri", +[3,12284,13], +[2,12833,1286], +"-string", +"from-string", +[2,4013,12836], +[0,1011,1429,1996,2000,19230,4167], +"@ajv-validator/config", +"quire-", +[2,12840,12836], +[2,5249,12841], +[1,2343,12853], +"tc", +"-plugin-utc", +[2,1673,12845], +"if-node-version", +[2,12833,4467], +[2,5223,12836], +"re2", +"tsify", +"uri-js", +[0,0,12854,5795,2523], +[0,3456,4042,4057,4481,91], +[1,2343,12856], +[0,12857,0,12858,2537], +[0,1898,19884], +[0,1998], +[1,2343,12861], +"Ajv", +[0,0,0,12862,34352], +[0,10906,5286,6813,1204,5260,202,3209], +[1,2343,12864], +[0,12865,12866,12867,2523], +[0,1082,15128,1996], +[0,5517,4042,4167,4481,91], +[0,6892,5286,5284,57,5341,1082], +[1,2343,12869], +[0,0,12871,12872,2523], +"longjohn", +[0,15990,19905,19907,2070,2759,19878,2297,2881,2889,2891,2895,2897,2900,2912,19910,2915,1209,2899,19912,3954,1241,4487,91,4526,19914,2924], +[0,6892,5286,2003,5284,57,5341], +[1,2343,12874], +[0,0,12875,2514,2523], +[0,1264,1280,1429,2000,2323,2351,2390,2404,19922,2272,2899], +[1,2343,12880], +"buffer-", +"more-ints", +[2,12877,12878], +[0,12881,12883,2514,2487], +[0,1006], +"claire", +[0,91,4579], +"AMQP", +[1,2343,12888], +"AMQP 0-9-1", +"RabbitMQ", +[0,0,12889,12890,2487], +[0,2899,1177,2759,1317,4127,4100,1311,1954,1938,1958,1903,1948,1970], +[0,984,27,10376], +[1,2343,12892], +[0,12894,12895,12896,4139], +"ux bootstrap", +[0,19937,2010], +[0,19939,19941,19942,19944,9424,7892,4874,19325,1389,19945,1596,2675,2759,2297,2871,2889,2895,19946,3183,3421,1894,4389,4474,4487,4508,4514,91,19948], +[0,9439,19950], +[1,2343,12898], +[0,12900,12901,12902,2523], +"client-side", +[0,9424,1363,1600,19956,19957], +[0,19961,4874,19963,19325,1177,2297,2881,2895,19946,19965,3421,1894,4389,4474,91], +[0,9439,6731,594], +[1,2343,12904], +[0,12905,12906,12907,2523], +[0,1082,1437,4747,1209,1362,2151,19972,2004,3105,19971,4547], +[0,3763,19974,91,4874], +[0,19976,19977,5284,1783,1973], +[3,4,9], +"cli/ast-tools", +[2,12908,12909], +[3,12910,13], +"href-webpack", +[2,1296,12912], +[2,12911,12913], +"@ngtools/json-schema", +"@ngtools/", +[2,12916,2924], +"denodeify", +[1,2343,12920], +[0,12927,12932,12933,2523], +"entity-name", +[2,3370,12921], +[2,1828,12922], +[2,4284,594], +[2,1828,12924], +"exists-sync", +[0,1792,7115,3102,19982,4237,19984,4430], +"caller-file", +[2,2183,12928], +"isbinaryfile", +"node-mo", +[0,19986,19987,19988,4389,19989], +[0,3101,3053,19991,7131,4237,4565,1698,4068], +"dules-path", +[2,12931,12934], +[2,1508,2091], +"silent-error", +[3,4070,9], +[3,6384,10], +"inst", +"rumenter-loader", +[2,12940,12941], +[2,12939,12942], +[2,12938,12943], +[1,2343,12946], +[0,0,12947,12948,34352], +[0,1317,1362,1596,2899,3421], +[0,2013,2018,13771,2016,19997,19998,19999,6868,20000,1803,3441,20001,20003], +[1,2343,12952], +" library", +[2,4627,12950], +[0,0,12953,12954,2537], +[0,811,10615,1148,1414,2899,4042], +[0,20014,20015,20016,20018,19997,19998,6868,20000,13771,2013,3441,19999,20001,20019,20003], +[1,2343,12957], +"justified", +[0,0,12960,12962,2523], +"bgblack", +"bgBlack", +[0,1090,2159,6914,2569,2756,4389], +"bgblue", +[0,2018,7133,7053,7155], +"bgBlue", +"bgcyan", +"bgCyan", +"bggreen", +"bgGreen", +"bgmagenta", +"bgMagenta", +"bgred", +"bgRed", +"bgwhite", +"bgWhite", +"bgyellow", +"bgYellow", +"black", +"bold", +"clorox", +"cyan", +"dim", +"gray", +"green", +"grey", +"hidden", +[1,2343,12988], +"inverse", +"italic", +[0,12989,12995,12999,2537], +[0,20033,1615,2089,2188,20035,2745,2753,3404,3718,4174,20039,20040], +"magenta", +"red", +"str", +"kethrough", +[2,4285,12993], +[0,4874,1166,1414,20042,20044,20047,29888,3505,16687,16330,4481,91,4707,1906], +"underline", +"white", +"yellow", +[0,2978,1451,3729,20049,16701,20050,20051,1614,2090,4166,20052,17180,20054,3378,3403,2703,12473], +[1,2343,13001], +[0,0,13003,13004,2487], +"@jest/get-type", +[0,2273,2277,2283,2228,4707], +[0,2021,3729,20061,8634,20062,20063,20064,20065], +"vt100", +"cursor", +"iterm2", +"screen", +"erase", +[1,2343,13012], +"scrollback", +[0,13013,13014,2514,2537], +[0,20076,13002,11907,8765,11944,2798], +[0,16596,8776,1437,2700], +[1,2343,13016], +[0,0,13018,13019,2537], +"pattern", +[0,5517,4874,29891,23203,1177,20083,3377,20085,4294,4473,91,1984], +[0,91,20088,1145,553,4532,1973,5472], +[1,2343,13021], +[0,13022,13023,13025,2537], +[0,3763,1704,984,3441,710,4590,1676,2145,977,38,1080,1000,3494,4266,1833,3173,988,1364,1869,2657,3440,1562,2099,3781,4151,1581,20103,1560], +[0,1797,2590,3421,1087,2899,4594,1177,3127,3237,4342,1553,1575,1578,2040,3162,20106], +"svg-term-cli", +[0,2026,5130,6690,5122,27,4030,7096,38,1896,5592], +[1,2343,13027], +[0,13028,13029,13025,2537], +[0,1080,20098,1364,1560,1562,977,1581,1676,1704,1833,1869,984,2099,2145,2657,20103,3164,3440,3494,3509,988,3763,3781,4100,710,4151,20099,4266,1000,4578,4590], +[0,1087,1553,1575,1578,1797,1177,2040,2590,3127,3162,2899,3237,3421,20106,4342,4594], +"truecolor", +[2,31213,31214], +[1,2343,13033], +[0,13034,13040,13043,2487], +[0,53,58,101,19526,3509], +[2,12392,188], +"nitless", +[2,7944,13036], +"@simonwep/pickr", +"array-", +[0,5087,1177,1192], +"tree-filter", +[2,13039,13041], +[0,8124,2026,1776,2295,7701,20120,1745,4363,13728,1179,8623,20121,20123,20124], +[1,2343,13048], +"dom-align", +"croll-into-view", +[2,11148,13046], +[0,13050,13054,13070,2537], +"vue-types", +[0,1797,3188,1525,3181,14380], +[3,10720,40], +[2,5822,3426], +"@types/k", +[0,2899,1177,4039,4538,4342,4459,1954,1938,1958,1903,1970,4588], +"@types/koa", +"ru-cache", +[2,6499,13056], +[3,4875,15], +[2,13058,3615], +"-jsx", +[2,11016,13060], +[2,1199,1219], +[2,5334,13062], +"slint", +[2,3542,13064], +[2,1472,13065], +[2,5334,13066], +[3,1031,19], +[2,13068,1894], +[0,2026,5130,6690,5122,4030,7096,38,1896,5592], +"vue3-jest", +[2,5334,13071], +"pack-", +[1,2343,13081], +"cli/serve", +[2,13073,13075], +[2,10672,13076], +"ali-oss", +"nline-import-data-uri", +[2,1206,13079], +[0,13082,13091,13102,2523], +[0,2070,2215,2036], +"context", +"quire-context", +[2,1252,13084], +"colorful", +"-versions", +[2,3797,13087], +"cz-git", +"diacritics", +[0,442,6061,16607,6063,6065,16608,16612,5087,4874,1177,2203,2774,4131,4468,91,4523], +"docsearch.js", +"enquire-js", +[3,1954,16], +"licit-type-exports", +[2,1760,13095], +[2,13094,13096], +[3,2512,11], +[2,13098,1501], +"-emit-webpack-plugin", +[2,2687,13100], +[0,2026,20137,2036,6624,8691,20140,5354], +"is-windows", +[3,11948,16], +[2,13104,188], +"stub", +[2,1221,13106], +[2,2769,13107], +"templater", +[2,2842,13109], +[1,2343,13116], +"mport", +"npm-import", +[2,1186,13113], +[2,3194,13114], +[0,13139,13140,13146,2523], +"vars-to-js", +[2,3194,13117], +"majo", +[3,5961,14], +"ble-of-contents", +[2,13120,13121], +"merge2", +[2,3986,1646], +"yaml-", +"yaml-config", +[2,3986,13126], +"reqwest", +"rucksack-css", +[3,4130,9], +[2,13130,36], +[3,1873,9], +[2,2495,2091], +[2,13132,13133], +"umi-request", +"vue-cl", +"ipboard2", +[2,13136,13137], +[0,2863,20147,8264], +[0,2899,1177,2026,4474,1894,91,6503,6494,1566,1011,1009], +"drag-resize", +[2,4625,13141], +"vue-i", +"nfinite-scroll", +[2,13143,13144], +[0,1303,20150,5165,20151,14374,27,2038,11326,3424,2026], +[1,2343,13150], +"equest", +"vue-request", +[0,13153,13155,2514,2523], +"vue-tsc", +"webpackbar", +[0,977,1581,1676,1704,16128,3494,4100,4538], +"vueComponent", +[0,1087,1575,1177,1948,2026,2899,3421,4342], +[1,2343,13157], +[0,13158,13160,13170,2523], +[0,1091,1437,1525,1536,1594,1759,2026,2812,4042,4057,91,4763], +[2,11164,3007], +[0,442,7806,9227,6494,4874,1009,1011,1177,1954,2203,3363,1894,4039,4474,4480,4523], +"color-picker", +[2,11183,13161], +[3,5050,15], +"utate-observer", +[2,13163,13164], +[2,11183,11194], +[3,11185,15], +"rigger", +[2,13167,13168], +[0,5592,5995,20164,5001,7141,2026,20165,5130,6706,6807,36,7020], +[3,11161,14], +"mpat", +[1,2343,13180], +"mpatible", +[2,13171,13174], +"work-theme", +[2,2560,13176], +[2,41,13177], +"@ant", +[0,0,13208,13209,2523], +"@antv/g6", +"@codecov/webpack-plugin", +"@code", +"sandbox", +"/sandpack-react", +[2,13184,13185], +[2,13183,13186], +"@ianvs/prettier-plugin-sort-imports", +"@madccc/duplicate-package-checker-webpack-plugin", +"@micro", +"flash/rehype-figure", +[2,13190,13191], +"dm-zip", +[2,9165,13193], +"li-oss", +[2,9165,13195], +[3,10403,11], +[2,13197,3730], +[3,10406,12], +[2,13199,36], +[3,8806,9], +"omorphic-fetch", +[2,13201,13202], +[2,7635,965], +[2,10884,3730], +"ixelmatch", +[2,5088,13206], +[0,1414,20171,4193,1177,2026,4474,20170,91,4874,6513,6494,1011,1009], +[0,20173,20174,1781,91,5592,27,2026,20175,20176,91,2663,998,20178,20179,20182,20183,20184,9091,10339,5995,20186,20188,89,20189,20194,20195], +"@types/pngjs", +[1,2343,13217], +"pinnies", +[2,5051,13212], +[3,7752,10], +"antd-style", +[3,8770,10], +[0,13222,13242,13244,2537], +"ugin", +"y-plugin", +[2,13216,13219], +[2,7045,13220], +[0,1209,1155], +"cli-progress", +"plugin-c", +"chunk", +"olor-chunk", +[2,13224,13226], +[2,12407,13227], +[3,5556,16], +"dash", +[2,13229,13230], +"lunar-typescript", +"p-all", +"untup", +[2,3808,13234], +"-no-", +"-references", +[2,10393,13237], +[2,13236,13238], +[2,11380,13239], +"runes2", +[0,20202,20207,20212,5087,4870,1009,1011,1177,1895,1938,1955,1192,1894,4468,91], +"spinnies", +[0,2026,1155,7020,2649,2574,20215,4741], +"vanilla-tilt", +[1,2343,13247], +[0,13248,13249,13250,2523], +[0,1112,3327,20221,3776,13031], +[0,7806,9227,27478,6494,9231,27327,22102,10413,20232,1536,1594,1704,2026,9243,2657,3313,20243,91,4548,4763,34143], +[0,6710,5592,27,2663,1745,1781,2026,91,2844,36,1852,8124,20246,3452,20247,6652,20251,20252,4763,7020], +[1,2343,13252], +[0,0,13253,13254,4139], +[0,13614,13616,1177,2292,4389], +[0,2051,1496,1698], +[1,2343,13256], +[0,13257,13258,13269,4139], +[0,20263,20266], +[0,20268,20269,20272,2398,2747,20273,3183,2899,3427], +"ext-comm", +[2,10740,13259], +[2,5409,13260], +[2,5409,1745], +"app-layout", +[2,10689,13263], +[3,10703,14], +[3,212,11], +[2,13265,13266], +[3,806,10], +[0,3426,1496,2051,1698,7002,3048,3427,3435,3743,3583,3205,20275,4161,614,6435,594,6692], +[1,2343,13273], +"aper-toast", +[2,13268,13271], +[0,13274,13288,2514,2523], +[0,1149,3008,4121,4695], +"menu-mixin", +[2,5395,13275], +"building", +"-rollup", +[2,13277,13278], +[2,5471,13279], +[2,1384,591], +[2,13265,13281], +[3,5478,17], +"-regression", +[2,7062,13284], +[2,13283,13285], +"amf-client-js", +[0,1173,1193,1245,1257,1264,1610,1628,1701,1177,20281,1938,2092,1192,2990,3413,3697,3786,4257,4307,2924,20283], +[2,4053,2257], +"per", +"unzipper", +[1,2343,13295], +"raml", +"amf", +[0,13296,13297,13298,2399], +[0,1676,2188,4753,20290], +[0,1009,1011,1166,1177,1903,1920,1938,1954,1958,1970,2151,2675,2990,3421,4481,91], +[0,4560,2056,7682], +[1,2343,13300], +[0,0,13306,2514,34352], +"-match-patch", +[2,1687,13301], +"se-loader", +[2,5779,13303], +"klaw-sync", +[0,3421,2323,1776,2899,4193,1177,1209,3460,4431,1596,1389,20304,2494,2530,2990,13896,4599,2401,20305,20306,4603], +[3,1898,16], +[1,2343,13309], +[0,13312,13313,13314,2537], +"commended", +[2,13307,13310], +[0,20312], +[0,1177,1889,1954,2022,2899,3421,20314,4193], +[0,20317,3073,2942,6807,3721,20319], +[1,2343,13316], +[0,13317,13320,13321,2537], +[0,20325], +"light", +"apidoc-light", +[0,603,4874,1610,2070,19826,4005,4508,91,1984,20328,20330,2064], +[0,20334,20335,13657,5472,20336,20339,20340,2060,20342,20341,1192], +"portable", +[1,2343,13324], +[0,13329,0,13330,4139], +"programmatic", +"cli-app", +[2,4610,1745], +[2,3115,1745], +[0,20351,20349], +[0,1641,57,2062,20353,20354,20355], +[1,2343,13332], +[0,0,13334,13335,2537], +"http2", +[0,1596,1758,1177,2899,3421,3697,89,3904,4193,91], +[0,2062,4162,1693], +"apple", +" notifications", +[2,6645,13337], +"iOS", +"apns", +[1,2343,13342], +[0,13343,13344,13347,2537], +[0,20366,19185,2200,13123,3170], +[0,20369,16396,20371,8778,6503,4874,20374,6513,20375,1177,20377,2020,2071,20378,2070,20380,2899,4039,4193,20382,91], +[3,1122,12], +[2,1126,6731], +[0,2070,11601,2062,20385], +[1,2343,13349], +[0,0,13350,2514,2523], +[0,6503,4874,2899,4113,91], +[3,5515,14], +[2,4807,13351], +[1,2343,13355], +"jsnext", +[0,13357,13358,13359,2443], +"relay", +[0,20394], +[0,53,83,87,94,4874,1195,1414,1177,2591,2765,1894,3753,91,2924,4677], +[0,2062,6523,1781,57,4734,16168,4735,676,1155,2649,8535,1145,20398,20400,1936], +[1,2343,13361], +[0,0,0,13365,2399], +[3,8780,10], +"phql", +[2,13362,13363], +[0,2077,5131,4453,4384,2076,1702], +[1,2343,13367], +[0,13368,13371,13375,2537], +[0,20428,20414,20434,13597,20418,20409,20426,20412,20420,3533,20416,4038,20423,4135,20410], +"-common", +[2,1129,13369], +[0,28002,8520,826,19344,7844,4874,1091,8531,1092,20437,20446,20441,28400,20450,1540,1610,1177,20444,11049,20453,20436,2657,2812,12284,2861,20451,29197,3313,3752,4238,4481,91,4548,4590,6482], +[2,1126,1612], +"to-querystring", +[2,3425,13373], +[0,5122,5130,1781,2844,3445,5592], +[1,2343,13377], +[0,13378,13380,2514,2523], +[0,603,20472,12397,20467,20482,12399,12400,27329,20463,1201,1212,20479,20476,1835,668,2071,12419,20465,3181,20460,4480,91,20474], +"cracks", +[0,192,5467,842,5087,20485,9129,4874,14011,12471,2675,1192,6551,2990,1894,3706,3708,4039,4474,4494,12473], +"_modules", +[2,202,13381], +[1,2343,13384], +[0,13385,13386,13389,2399], +[0,20490,20491,20492,20493,20494,15016,1792,3183,19544,3923,19647,4243,20495,18997,20496,4389,4431], +[0,13614,1158,1159,1177,2708,3410,4103], +"@appium/support", +"@colors/colors", +[0,4384,12786,1973,20499,20500,3721], +"appium-adb", +"appium-", +"driver", +"chromedriver", +[2,13391,13393], +"asyncbox", +"io.appium.settings", +"ports", +[1,2343,13401], +"portscanner", +"teen_process", +[0,13407,13408,2514,2523], +"@appium/", +[3,1879,15], +"ppium-ts", +[2,13403,13404], +[2,13402,13405], +[0,1613,20507,3082,3427,1862,20508,11804], +[0,53,1700,2126,2323,2338,2396,2494,2700,2774,3159], +[1,2343,13420], +"@appium/t", +[2,13410,7630], +[2,13410,103], +"luebird", +[2,4853,13413], +[3,4875,9], +"rtscanner", +[2,13415,13416], +[2,5051,5588], +"@types/te", +[0,6230,13421,13422,34352], +[0,48,53,87,90,6061,6063,20514,13662,20517,1251,1652,1177,1879,2990,3188,4131], +[0,20519,20520,20521,20522,4963,20523,4967,6082,89,20524,20525,11609,5122,20526,20528,20531,20533,17751,20536,20537,20539,20541,20542,20543,20544,20545,20546,20547,20548,20551,20553], +[1,2343,13424], +[0,6263,13425,13427,2537], +[0,48,53,83,87,90,92,5583,811,816,10817,968,972,20562,5087,4880,4883,1009,1011,1503,1540,1610,1177,1881,1895,17613,1938,1939,1959,1961,1192,89,3824,3957,4042,4073,4468,4484,91], +"appium", +[0,20566,4967,20568,3875], +"automation", +[2,5131,10428], +[1,2343,13431], +[0,13432,0,13433,4139], +[0,20577,20573,20575,11959], +[0,1612,27,3212,5472,4158,13106], +[1,2343,13435], +[0,13436,0,13438,2399], +[0,20584], +"@azure/core-auth", +[0,10807,2087,15964,20586,1149,12804,6812,14836,1862], +[1,2343,13440], +[0,5621,13443,13448,2537], +"pipeline", +"reg", +[0,4874,23203,1149,2675,2990,91,1983,26744,1984], +"@azure/", +"identity", +[2,13444,13445], +"monitor-", +[0,2088,6938,6952,7179,1111], +"eleme", +[1,2343,13451], +[0,13460,8134,13461,34352], +"opentelemetry", +[2,13447,13452], +[2,13444,13453], +[3,830,9], +[2,13454,13455], +"-inst", +"rument", +"ation-", +[0,16232], +[0,3656,200,8429,6876,7169,5511,2568,20597,2089,20598], +"azure-sdk", +[2,13459,13462], +[2,13458,13463], +[2,13457,13464], +[2,13452,13465], +[2,13444,13466], +"@opent", +[1,2343,13472], +"elemetry/api", +[2,13468,13470], +[0,13511,13519,13533,2537], +"-logs", +[2,13471,13473], +[3,13471,15], +[2,13475,364], +"er-logs-otlp-http", +[2,6813,13477], +[2,13475,13478], +[3,13479,24], +"metr", +"ics-otlp-http", +[2,13481,13482], +[2,13480,13483], +"trace-", +"otlp-http", +[2,13485,13486], +[2,13480,13487], +"otlp-", +"exporter-", +[2,13490,1299], +[2,13489,13491], +[2,13475,13492], +"resources", +[2,13475,13494], +"sdk-logs", +[2,13475,13496], +[3,13497,19], +"metrics", +[2,13498,13499], +"trace-base", +[2,13498,13501], +[3,13502,25], +[2,13503,202], +[3,13497,16], +"emantic-conventions", +[2,13505,13506], +"diagnostic-channel", +"-publishers", +[2,13508,13509], +[0,3008,4121], +[2,13444,5746], +[3,4870,9], +"@types/long", +[3,8778,12], +"__typescript-etw", +[2,7295,13516], +[2,13515,13517], +[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,2675,1192,2990,3144,3400,1894,4257,4027,2924], +"exce", +"ption", +" monitoring", +[2,13521,13522], +[2,13520,13523], +[2,705,13522], +[2,6681,13522], +[3,1135,11], +" insights", +[2,13527,13528], +"microsoft", +"azure", +"tracing", +[0,2924], +[1,2343,13536], +"telemetry", +[0,0,13537,13540,4139], +[0,48,53,10688,5812], +"analytics", +"apm", +[0,20611,20613,20614], +[1,2343,13542], +[0,13543,13555,13556,2537], +[0,13687,20619,20621,20624], +[3,7709,10], +"ial-provider-node", +[2,11891,13545], +[2,13544,13546], +[3,7709,9], +"hash-", +"hash-node", +[2,13548,13550], +[3,6765,9], +[2,13552,27], +[2,13548,13553], +[0,20626,4874,1166,20627,2188,20628,4481,1906], +[0,3171,2090,998,14431,12666,158,11807,20630,20631,16202,20632,20634,13735,4354,2741,20635,14242,20636,8433,17180,1398,15149,20637,18048,20638,20639,12349,20640,20641,20642,20643,20644,20645,20646,20647,20648,3775,20649,20650,20651,20652,20653,20654,2056,4390,20655,17276,17274,20656,18494,20657,20658,20659,20660,20661,20662,20663,20664,20665,20666,20667,20668,20669,20670,20671,2636,20672,20673,7016,20674,20675,20676,20677,20678,20679,13705,20680,20681,17918,20682,7827,20683,20684,20685,10790,20686,20687,20688,20689,20690,20691,7823,20694,20695,20696,20697,20698,3354,20699,20700,20701,20702,20703,20704,20705,20706,20707,20708,6523,20709,11811,10868,20710,20711,20712,8861,20713,20714,20715,20716,20717,20718,20719,20720,20721,20722,20723,20724,20725,20726,20727,20728,20729,20730,20731,20732,20733,20734,20735,20736,20737,20738,20739,20740,20741,20742,2403,20743,20744,20746,12350,10218,20747,20748,18508,17733,20749,20750,20751,20752,20753,20754,20755,20756,20757,1227,20758,20759,20760,20761,20762,20763,20764,12081,12096,28922,28923,28924,28925,28926,28931,28932,28942,28943,28946,28947,37859,28949,28955,28958,28961,34876,33671,6790,33677,27669,29579,17288,13442,18883], +"signature-v4", +[2,13548,13557], +[2,13548,553], +[2,9196,1732], +[1,2343,13570], +"@aws-", +"amplify/amplify-appsync-simulator", +[2,13562,13563], +"construct", +"constructs", +[3,3706,25], +[2,13567,2618], +"projen", +[0,0,13575,13576,34352], +"appsync", +"gql", +"lambda", +"xray", +[0,10615,1159,1414,1177,2675,2899,4042], +[0,2090,2098,4202,7017,6771,1413,1687], +[1,2343,13578], +[0,13582,9025,2514,2487], +[2,1137,3007], +"crc32", +"buffer-crc32", +[0,1676,1833,1869,3440,3494,4266], +"readdir-glob", +"zip-stream", +[1,2343,13588], +"archiver-", +"jsdoc-t", +[0,13592,13593,13594,2523], +"jsdoc-theme", +[2,13586,13589], +[2,4279,4440], +[0,3537,13765], +[0,1906,1166,1700,4481,4400], +[0,2325,7204,20164,2100,7193], +[1,2343,13596], +[0,13598,13599,13600,2537], +[2,27994,27995], +[0,20786,20789], +[0,1166,17450,4400,4481,1906], +[0,2100,2104,2105,7076,6614,6605,2090,7193,3529,3383,814,5933,7029,6857,7204,4647,6821,3403], +[1,2343,13602], +[0,13603,13604,13605,2537], +[0,20796,2743,3170,20797], +[0,1177,1889,1954,2022,20801,2899,3369,3421,814], +[0,2090,2100,2105,7076,2070,3529,13017,814,7193], +[1,2343,13607], +[0,13608,13620,13621,2537], +[0,13612,20819,20822,20824,20825,20826,20828,20829,20831,20833,20836,20837,20839,20840,20841,12153,20843,20846,20847,20848,20849,20850,20851,20852,20853,20857,20858,20859], +[2,6739,1228], +"-unscopables", +[2,7065,13610], +"@firebase/ai", +"@es-shims/api", +"@ljharb/eslint-config", +"cover", +"covert", +"has-s", +"trict-mode", +[2,13617,13618], +[0,2323,4042,91,2496,2510,4077,10615,4060,811,4071,4076,816], +[0,5165,18035,20862,2109,20863,13901,6681,20845], +[1,2343,13623], +[0,13624,13627,13628,2399], +[0,20870,20848,20872,4874,20873,2069,20917,2863,20874,3313,3348], +"arrayify", +"ensure", +[0,20883,20839,20840,20885,603,20886,4856,9417,20888,8264,4870,7892,6503,10410,16936,20889,6513,6512,7819,1009,1011,1306,1429,1431,6522,1437,1455,1700,1177,20892,2323,2390,2409,2529,20895,1209,3183,2899,3261,3297,3400,3421,705,4008,4089,4193,4196,4474,91,4747], +[0,20897,18035,20862,20863,5165], +[1,2343,13630], +[0,13632,0,13634,2399], +"is-n", +[0,32557,32562,12207,20745,20904,20905,8998,29421,1079,1091,1092,1137,20908,1364,1457,20909,1483,1511,1525,1543,1594,1610,1615,1645,20911,20912,20913,2026,2098,2139,2151,2163,20914,2070,20917,2687,2822,2863,2975,20918,1209,12209,3127,14774,3171,3181,3237,3310,3445,3467,6042,3519,30172,30174,3560,3730,20921,1153,4135,20922,20924,20925,20928,18052,4449,20931,20934,20935,3348,4709,4715,4729,4745,4763,33069], +"is-nan", +[0,20937,200,20938,6599,20940,2109,20863,14609,20943], +"object-is", +[1,2343,13637], +[0,13639,13640,13641,34352], +"array-fill", +[0,20948,1437,1707,20949,20951,1997], +[0,4255], +[0,4051,3383], +[1,2343,13643], +[0,13644,13645,2514,2523], +[0,4864,9129,20959,2151,20960,4648], +[0,4874,4039,4384,91], +[1,2343,13647], +[0,0,13640,13649,2523], +"fn.name", +[0,2117,1781,3033,20966,4237,3048,3639], +[1,2343,13654], +"is-buffer", +"propget", +"pruddy-error", +[0,13655,13658,13659,2523], +[0,1676,1865,2151,1209,4449], +"shouldjs", +"unit testing", +[0,2899,4039,4255], +[0,18503], +[1,2343,13661], +[0,0,13670,13675,2537], +[2,1176,3178], +[2,1218,5702], +[3,1267,18], +[2,13664,6836], +[3,1955,17], +"fer-arrow", +[2,13666,13667], +"native-", +[0,53,78,14167,87,20978,4864,4865,5087,11301,4874,19802,1245,1457,1596,2151,2070,1192,1894,4039,4042,4045,20981,20983,4075,4072,4468,4474,4484,91], +"promise-only", +[2,13669,13671], +[3,4064,15], +[2,13673,2306], +[0,5284,9302,9026,1666,6901,3811,20986], +"jstz", +[1,2343,19602], +[0,20991,1437,2087,2727,2983,3368,15245,3741,4135,4247,20992,13914], +[0,1429,1596,1177,2759,20995,2899,3697,3752,4193], +[3,8155,10], +[0,20997,20998,8891,20999,2978,4166,16159,21000,3005,12804,21003,21004,2703,6599,14692], +"listen", +[1,2343,13684], +[0,0,0,13685,2537], +[0,13326,200,20052,17180,2124,3497,998,6591,4354,16790,5284,676,21009], +[1,2343,13690], +[2,13689,25388], +"then-sleep", +[3,20626,11], +[0,13691,13692,13699,2443], +[0,6372,21020,21016,3561,4383], +[0,53,87,6371,28962,28963,1009,1011,1165,1195,1587,1593,1610,1628,1630,1637,1177,1895,1955,21023,2092,12278,3177,3400,1894,21024,9348,4172,4230,4307,4409,4469,91,2924,4677,4681,21026,4749], +[2,54,202], +"@pika/pack", +"pika-plugin-build-web-babel", +[3,13695,12], +"ts-types", +[2,13696,13697], +[0,2128,91,5284,2924,1936,1623,12951,21028,4380,21029,21031,21033,21034,21036,21029,21037,21038,21039,21040,21042,21044,21047,21050,21052,21054,21057,21060,1177,1894,17526,1999,5811], +[1,2343,13701], +[0,13702,13703,13704,2537], +[0,1149,4707], +[0,3421,1776,2899,4170], +[0,21067], +"ttc", +[1,2343,13707], +[0,13708,13710,13714,2537], +[0,21072,2081], +"libnpx", +[0,53,1195,18228,1700,2323,2338,2396,2409,2494,2541,2700,1192,2780,3427,89,21074,3824,4603,2924,18237], +"node-cleanup", +[2,3382,6698], +[2,2103,9478], +[0,2130,89,3497,21077], +[1,2343,13717], +"audit", +[0,0,13718,13719,2537], +[0,1537,1177,2026,21082,2899,3421], +[0,27,2671,1002,7436,5576,7426,6435], +[1,2343,13724], +"parse-", +[3,9577,10], +[2,13721,13722], +[0,0,0,13726,34352], +[2,1199,4037], +[0,2414,7176,8220,1017,2414,1367], +[1,2343,13731], +"automatic", +[3,1446,9], +"commits", +[0,13732,13733,2514,2443], +[0,18986], +[0,5517,13614,23237,27570,19325,1159,1177,3410,3421,4389], +[1,2343,13737], +"detect", +"detective", +[0,13740,13741,13742,2443], +"detective-es6", +"sync-exec", +[0,1149,21097,1496,21098,1512,3188,4709,21099,21100,3722,1543,2015,3427,21102], +[0,1429,4616,2899,1177,3220,21104,705,1894,21106,1895,1955], +[0,200,21110,21111,2041], +[1,2343,13744], +[0,13745,13747,13748,4139], +[0,51,1437,1457,1595,1699,2151,3144,3181,21118,4121,4135,4388], +"fraction.js", +[0,5467,16607,21120,6065,16608,16612,19861,21122,4864,5087,8818,9129,6541,4874,20959,5254,1009,1011,1529,1610,1177,1938,1954,1955,10619,2675,1192,21124,2784,2845,21125,2990,3203,1894,4039,4131,4294,4468,91,2924], +[0,2924,1932,91,21127,4469,2924,20050,2062], +[1,2343,13750], +[0,13751,13752,13761,2523], +[0,13922,1437,1457,1209,3170,3181,814,4388], +[0,21134,16933,4870,8778,9129,4874,5251,4891,1429,1628,1177,2675,2759,2990,2899,3203,3210,1894,4039,4193,4469,4487,4490,91,188,4629,4634,4645,2924], +"@vercel/nft", +"arrgv", +"site", +"sites", +"callsites", +"cbor", +"chunkd", +"ci-parallel-vars", +[0,2924,1932,91,998,16790,9654,20050,2062,6887,4469,1167,21136,1464], +[1,2343,13766], +"code-excerpt", +"path-prefix", +[2,9480,13764], +[0,13776,13779,2514,2487], +"concordance", +"curr", +"ently-unhandled", +[2,13768,13769], +"emitter", +"emittery", +"ignore-", +"by-default", +[2,13773,13774], +[0,21141,21144,13917,2571,3173], +"matcher", +[2,9477,1541], +[0,13614,1159,1389,21146,1596,1615,1177,21147,21148,2141,2708,21152,2759,26259,21153,14133,3697,3758,705,4039,4135,4389], +"resolve-cwd", +[2,4250,594], +[1,2343,13783], +[0,13785,13787,13790,2537], +"supertap", +[0,3441,21158,24987], +"temp-dir", +[0,2934,3421,1192,1177,4042,2026,1894,4342,21163,1938,5328,1895,1955,811,21165,1881,816,21161], +[3,5328,14], +[2,13788,2190], +[0,15237,1669,2382,3767,21167,1781,21168,2090], +"🦄", +[3,1540,10], +"yield", +[1,2343,13797], +"observable", +"observables", +[0,13798,13799,13800,34352], +[0,5540,1699,2609,1209,3021,21174,21175,4484], +[0,972,4870,4880,4883,11322,21179,89,3824,21180,91,6482], +[0,2144,1669,25,89,3824,582,21182,7020,21185,7020,21188,21189], +[1,2343,13803], +"webpack-log", +[0,0,13806,13807,2487], +[2,3599,1469], +"ps-node", +[0,2899,1177,2759,1317,1311,1954,1938,1958,1903,1948,1970], +[0,2145,27,21195,2325], +[1,2343,13809], +[0,13810,13813,13815,2537], +[0,1437,6473,4290], +"ieee754", +"jmespath", +[0,1175,1178,1195,1225,1268,1177,1916,2022,1192,3150,2924], +"vector", +[0,17460,2656,2924,1932], +"test-vectors", +[2,13549,13816], +"insert-module-globals", +[1,2343,13820], +[0,13821,13822,13823,2537], +[0,2822], +[0,1377,21210,1596,2759,4255,4389,4770], +[0,4745,21214,21216], +"memoizee", +"@deque/dot", +[1,2343,13844], +"colorjs.io", +"-regex", +"emoji-regex", +"abel", +"grunt-babel", +"revalidator", +"sri-toolbox", +[2,4149,1852], +"ytesize", +[2,2237,13835], +[2,6654,3733], +[2,1463,13589], +[2,1632,3679], +[3,8654,10], +"webdriverjs", +[2,13840,13841], +"browser-", +[0,13845,13851,13853,4139], +[0,2215,2859,21224], +[3,1566,14], +"ommits-parser", +[2,13846,13847], +"-no-only", +[2,1951,13849], +[0,21226,13305,3183,2899,3421,3752,21228,4255], +"Accessibility", +[0,2150,2090,6771,1585,7204,2473,3188,7148,7149,6899,1781,3917,6033,2473,6865,7293,4453,7147,2585,6811,7004,1862], +[1,2343,13855], +[0,13856,13858,13861,2537], +[0,3181], +"proxy-", +[0,4856,4864,6503,4874,1429,2151,2759,2899,3421,1894,3714,21237,4474,91], +"from-env", +[2,13857,13859], +[0,2150,6771], +"multi-", +[1,2343,13877], +"entry", +"multi-entry", +[2,812,13865], +[2,12621,3733], +"dev-null", +"data-node", +[2,1669,13869], +[2,11941,12942], +[3,6387,14], +[2,13872,6662], +[2,1160,11052], +[2,4049,13874], +[3,4048,16], +[0,13883,13884,13885,2537], +"ndle-size", +[2,13876,13878], +[2,6528,3069], +[3,13134,15], +[2,13881,1149], +[0,21243,2151,3261,21246], +[0,4864,6507,2899,1863,4085,1362,4706,3760], +[0,1862,2150,2090,6771], +[1,2343,13887], +[0,0,13893,13900,2523], +[3,1391,11], +[2,13888,3171], +"edm-parser", +[2,2842,13890], +"md5.js", +[0,640], +"batchflow", +"factor-bundle", +"ink-docstrap", +"karma-e", +"nv-preprocessor", +[2,13897,13898], +[0,2154,16718], +"storage", +[1,2343,13903], +[0,13904,13905,2514,2443], +[0,3188,4039,2713,2215], +[0,4384,4255], +[1,2343,13907], +[0,13908,0,13910,4139], +[0,4740,3923], +"output-", +[0,2156,5576,16410], +[1,2343,13915], +"file-sync", +[2,13909,13912], +"v8flags", +[0,0,13916,13918,2523], +[0,13614,1158,1159,1177,3421,4103,4389], +"es-set-tostringtag", +[0,3046,1213,1925,1460,5746,7298], +[1,2343,13926], +"babel-co", +"de-frame", +[2,13920,13921], +[3,1184,12], +[2,13923,591], +"babel-m", +[0,0,13929,13931,2537], +"essages", +[2,13925,13927], +[0,48,53,68,78,5712,87,92,192,5467,21276,5583,816,6373,21279,21280,21281,21285,19464,21287,21288,1195,1177,1895,2675,21290,1894,4005,4042,4057,4257,4072,91,1984,19469,21294], +[2,1185,5190], +[0,2163,7193,21296], +[1,2343,13933], +[0,0,13934,13935,2443], +[0,19344,5366,1009,1011,842,1317,1177,1903,1915,1938,1953,1958,2675,4493], +[0,17218,5122,27,36,21302,5995,5130], +[2,1884,1172], +[1,2343,13938], +[0,0,0,13939,4139], +[0,2163,7193,7131,21307,21309], +[1,2343,13941], +[0,13943,13944,13945,2487], +"trim-right", +[0,21315], +[0,1149,2228,21317,2240,2273,2277,4039,1899], +[0,2282,2070], +[1,2343,13947], +[0,0,13949,2514,2487], +"try-resolve", +[0,91,4874], +[1,2343,13951], +[0,13952,13953,13954,2523], +[0,1437,4761,4716,4756], +[0,2228,2239,21329,21328,3006,4547,2273,2290], +[0,4756,8632,5130,4627,6400,1896,1098], +[1,2343,13956], +[0,13957,13958,13959,2523], +[0,1437,4207,4761,1209,16442,4756,4547], +[0,3261,1797,1429,1370,2899,4193,1177,3188,1362,2759,1525,4196,1615,2820,1431,3938,3202], +[0,4756,1098,2323,21337,21339,1367,1103,21340,2278,695,5194,1172,21341,91,1509,2437,5357,2924,1177], +[1,2343,13962], +[2,1262,1192], +[0,13963,13964,13965,2537], +[0,2212,2070,4761,1541,1209,1474,21350,21348,4756], +[0,1797,1177,2765,2151,21329,21328,1938,21352], +[0,4756,8632,4967,1896,2171,4627,13017,21354], +[1,2343,13967], +[0,0,13968,13969,2523], +[0,4874,1177,1895,1955,1958,1894,4384,91], +[0,4446,21360,6925], +[3,13725,15], +[1,2343,13972], +[0,0,13973,13974,2399], +[0,5536,4874,16480,26265,1894,4172,21365,91,1984], +[0,5701,1179,7253,21367,21369,6564,3053,6695], +[1,2343,13976], +[0,0,13977,2514,2443], +[0,48,53,87,92,6061,6063,16608,5087,4874,1009,1011,21377,21380,1178,1193,1195,19254,1177,1895,1915,1922,1938,1955,1959,1961,1966,1982,2675,21385,1192,2990,1894,4039,4131,21388,91,2924,4677], +[1,2343,13979], +[0,0,13986,2514,2537], +[3,1235,24], +"xport-extensions", +[2,13980,13981], +[2,1262,3696], +[3,1566,13], +[2,13984,2289], +[0,21393,21395,21396,21397,3421], +".exports", +[2,1237,13987], +[1,2343,13990], +[0,0,8002,13991,2523], +[0,1709,2100,139,3560,6058,21402,21404,1544,3445,11995,21405,20529,3778,21406,21407], +[1,2343,13993], +[0,0,13999,14001,2537], +"-js-shims", +[2,1259,13994], +"place-", +[2,13996,3427], +[2,1252,13997], +[0,4874,1702,1906], +"dynamic", +[0,21413,2184,20061,5614,1398,3101,3729,3917], +[1,2343,14003], +[0,14004,14005,14006,34352], +[0,21418,2753], +[0,4874,1166,21420,21423,20925,4481,1906], +[0,3038,3101,1862,5614,1871,2585,1398,3917,2382,6613,7017,7255,3048,5614], +[1,2343,14008], +[0,14009,0,14010,2537], +[0,21430], +[0,2191,3038,91,2190,21432], +"@umijs/test", +[2,1262,12445], +[3,3909,10], +[2,14013,5403], +[1,2343,14016], +[0,0,14017,14018,2523], +[0,4874,1009,1011,17930,1177,21439,1895,1955,17931,21442,1894,17934,4508,91,17936], +[0,21444,21447,21450,21452,21455,21456,2192,21457,21458,16718,21459,202,5490,553,91], +[1,2343,14026], +"nyc-config", +[2,3614,14020], +[2,8696,14021], +"instrument", +[2,11936,14023], +[2,1382,6521], +[0,14028,14030,14031,4139], +"pmock", +[0,1149,2205,2151,1525,18145,2102,21466], +[2,14023,5218], +[0,4449,1429,2899,4193,1177,21468,21470], +[0,3358,2193,2195], +[1,2343,14033], +[0,14036,14043,14046,2523], +[2,9477,1213], +[2,4013,14034], +[0,7076,10420,21476,21477,3505,16142], +"-bind", +[2,3046,14037], +[2,69,14038], +[3,8232,20], +[2,14040,6859], +[2,5316,7162], +[0,1178,1429,21480,1503,1527,1652,1177,21482,1922,1938,1951,2899,3203,3421,3752,4131,4193,4196,21486,4585], +"ompat", +"lodash-compat", +[0,3358,582,1564], +"cherry-pick", +[1,2343,14049], +[0,0,14050,14051,4139], +[0,13693,87,21495,21498,21499,8850,816,6373,10615,10895,1429,1177,1903,1938,1954,1958,2297,2878,2881,2886,2895,2900,2904,2910,2912,2918,18260,2899,4042,6390,2278,4193,4196], +[0,2195,10039,4967,4627], +[2,13920,686], +[2,2103,14052], +[1,2343,14055], +[0,14058,14060,2514,2537], +"resolver", +"rename", +[0,3181,21505,21507], +"mapping", +[0,4874,668,3144,3188,1894,4039,4384,4483,4508], +[1,2343,14062], +[0,14063,14066,14067,34352], +[0,2743], +"ester", +[2,12187,14064], +[0,1177,1889,2022,2899,3421], +[0,2070,5933,4301,3403,21519,7204,1299,21520], +[1,2343,14069], +[0,14070,9264,2514,4139], +[0,21526,3729], +[1,2343,14072], +[0,0,14073,14074,2537], +[0,22839,1166,1448,1939,2182,26260,17269,3401,3471,3758,4167,4481,4507,1906], +[0,2203,2202,7014,6436,6437,2272,1177,6640], +[1,2343,14081], +"remap-", +[2,14076,1223], +[2,1185,14077], +[3,13663,26], +[2,14079,5746], +[0,14082,14083,14084,4139], +[0,20033,2071,2687,17450,4207,20789], +[0,4874,1166,1317,21539,4400,4481,1906], +[0,12101,4552,17455,18132,1586,17462,7131,2100,21541,17453,2150,2070,21543,21544,17461,3529,13777,3181,3250,15294,18104,13017,11601,100,614,6435,21520,21545,1862,16774,3358], +[3,1184,14], +[2,14085,5789], +[2,1218,1229], +[1,2343,14089], +[0,14090,14091,14094,2443], +[0,1676,1615,21552,21550], +[0,1149], +[3,1217,21], +[2,14092,5610], +[0,11812,21555,158,21556,2692,2206,6270,17539,3797], +[1,2343,14096], +[0,14097,14098,14100,2537], +[0,3310,14231,4484], +[0,4874,5542,1009,1011,1177,21564,1938,1953,1958,1894,4508,91], +"chunk-data", +[0,21566,21567,21568,15473,17623,21571,5194,10906,2207,21572,21573,14692,21574,6355,21576,21577,21578,21579,21580,21581,21582,21583,5995,21584,21585,21586,21587], +[1,2343,14102], +[0,14103,14105,14108,34352], +[0,16485,21668], +"strict-", +[0,107,4874,1009,1011,21594,1177,1881,1883,1938,21597,20917,3297,1531,91,15822,1984], +"strict-mode", +[2,1226,14106], +[0,21600,21603,1885,21604,21599,21605,21606,5592,2211,21607,21608,21611], +[2,1218,77], +[1,2343,14111], +[0,14112,14113,14114,4139], +[0,20917,21616], +[0,21619,6503,21620,21621,4874,21623,15600,9725,11305,6513,6520,21625,21626,1414,1503,1610,2020,20914,2321,21627,1776,29342,29343,21630,2899,15221,3275,3297,3416,3445,3479,6332,1894,3752,4039,4153,4193,4449,91,4748], +[0,1885,5592,21632,5576,21633], +[1,2343,14116], +[0,14117,14118,14119,2523], +[0,21642,21651,21645,21647,21650,21649,16511,2928,21641,21638,21639,4507], +[0,21662,13789,826,5366,6494,4874,21654,14731,16936,6513,6515,1166,1170,1317,1362,1364,1414,14099,21656,21663,1701,1702,2024,2026,2139,13870,2188,3297,3310,3377,3477,21653,3532,29457,3923,705,4193,21657,4400,21659,4454,4494,91,1906], +[0,27,2671,13333,3038,2212,1002,12831,705,2869,7085,7289,1612,11995,11996,16518,21665,27778,27408,21666,21667,1170,4339,3310,21668], +[1,2343,14124], +"-react-jsx", +[2,9381,14121], +[2,1185,14122], +[0,0,14125,14126,2537], +[0,2323,4207,4042,1637,3471,3561,21689,21681,3416,3758,4320,53,1165,3678,2650,21688,87,21684,21679,5583,10615,6373,16912], +[0,21691,4967,9204,1283], +[1,2343,14134], +[2,88,2124], +[3,3872,10], +[2,14129,553], +[2,5237,14130], +[2,1199,14131], +"pkgfiles", +[0,0,14135,14136,2537], +[0,2702,3188,4039,4384], +[0,2150,1237,21697,1153,21699,3768,1851,2656,6737,21700,21701,21702,21703,21704], +"minification", +[1,2343,14140], +"propTypes", +[0,0,0,14141,4139], +[0,2220,21715], +[1,2343,14143], +[0,2513,14146,2514,2523], +[3,3957,12], +[2,14144,353], +[0,4856,6503,4874,1429,2220,2899,4039,4042,4071,4232,21721,91], +[1,2343,14148], +[0,14149,0,2514,34352], +[0,5528,4484], +[1,2343,14151], +[0,14152,14153,14154,4139], +[0,2822,20273,21731,21732], +[0,21734,20269,1509,21735,2053,2149,2398,3183,2899,4452,4597,6033], +[0,21738,1507,1506,2382,1739,1745,7682,21740,4965,2149,9339,8623,1179,2193,12981,5284,5352,676,6671,1783,9338,1644,57,7119,13755,2947,1283,4452,4745,7651], +[1,2343,14156], +[0,14165,14171,2514,34352], +"numer", +"ic-separator", +[2,14157,14158], +[2,69,14159], +[3,5835,33], +"mutators", +[2,14161,14162], +[3,10720,33], +[0,14393,21746,3025,10420,3263,3747], +"atch-binding", +[2,14164,14166], +[3,14160,25], +"llish-coalescing-operator", +[2,14168,14169], +[0,1364,21748,2026,21749,2759,1209,3183,3313,21752], +[1,2343,14173], +[0,14174,14175,14176,2443], +[0,2021,2070,3368,2822,2240,3181,1672,2685,2107,2015,21761,21763,21759], +[0,21765,4431,21770,2291,21768,2283,2277], +[0,5957,1149,200,3178,2280,6147,1209,2275,1973,2907,2276,36,21772,8632,7048,2763,4990], +[3,9676,14], +"heck-", +"es2015-", +"constant", +"constants", +[2,14179,14181], +[2,14178,14182], +[2,14177,14183], +"function-", +"comma", +"commas", +[2,14185,14187], +[2,10038,14188], +[2,7174,14189], +[2,1218,14190], +[2,1236,5742], +[3,1235,40], +"ed-functions", +[2,14193,14194], +[2,1236,5256], +[3,14196,31], +[2,14197,5763], +[2,1236,5765], +[3,14199,31], +[2,14200,5770], +[1,2343,14225], +"for-of", +[2,1236,14203], +[3,14204,31], +[2,14205,5789], +[2,1236,5796], +[3,1240,38], +[2,14208,5808], +[2,14208,4376], +[2,14208,5811], +[2,3425,4340], +[2,1236,14212], +[2,1236,5639], +[2,1236,5845], +[3,14215,31], +[2,14216,5849], +[2,14216,5851], +[3,1244,31], +[2,14219,5855], +[2,5857,1108], +[2,1236,14221], +[3,13982,27], +[2,14223,5780], +[0,14228,14229,14230,2523], +"to-chromium", +[2,1807,14226], +[0,2633], +[0,2228,2240,2263,2247,2253,2273,2277,2281,2320,2258], +[0,21779,1098,1283,5354,5614], +"gfsl", +[1,2343,14233], +[0,0,14234,14235,2537], +[0,2228,2307,2239,2316,1429], +[0,21779], +[1,2343,14244], +[2,1262,2124], +[2,1249,5878], +"-source", +[2,1248,14239], +[3,14240,34], +"elf", +[2,14241,14242], +[0,14245,14246,14247,34352], +[0,1149,1389,21791,2070,1209,814,4650], +[0,2228,2240,2247,2273,2899,4193], +[0,21779,1389,2228], +[3,5700,31], +[2,14248,3164], +[1,2343,14251], +[0,14252,14253,14235,2487], +[0,4135], +[0,2228,2234,2247,2273,2277,2285,2307,3006], +[3,1233,24], +"o-expressions", +[2,14254,14255], +[2,1226,14038], +[1,2343,14259], +[0,14260,14261,2514,2537], +[0,3368,21804,13914,2727,21759], +[0,2228,2273], +[3,1230,29], +"or-call", +[2,13565,14263], +[2,14262,14264], +[1,2343,14267], +[0,14268,14269,14271,2523], +[0,1149,1144,21810,2709], +[0,1906,2228,3363,2240,1615,3505,21814,4351,2316,2247,2283], +[3,1233,33], +[0,21779,13792,12804,21820,6707,6887,3514,6681,2062,21821], +[1,2343,14273], +[0,14274,14277,14278,2399], +[0,1149,4039], +[3,1225,29], +[2,14275,5747], +[0,2228,21468,2273,2271,2277], +[0,21779,4050,4051,7293,6865,1700,6790,17459,4039], +[1,2343,14280], +[0,14281,14283,14284,4139], +[0,1149,21834,1664,21420,4449,4707], +"home-or-tmp", +[0,2228,2240,2247,2271,2273,2277,2314], +[0,21779,21837,4329,2278,1623,7234,7121,590], +[1,2343,14286], +[0,14287,14288,14235,2537], +[0,1437,4227], +[0,2228,2247,2273,2271,2277], +[1,2343,14290], +[0,14291,14292,14293,2537], +[0,3445,1149,3237,1544,13399,4150,4151,16511,21847], +[0,2228,2273,2271,2277], +[0,21779,36,1544,27], +[1,2343,14295], +[0,14296,14297,14235,2537], +[0,1437,21855], +[0,2228,2240,2247,2271,2273,2277], +[1,2343,14299], +[0,14300,14302,14303,2523], +[0,1437,21861,1209,4300], +"esutils", +[0,2228,2247,2271,2273,2277], +[0,21779,1623,671,21861], +[1,2343,14305], +[0,14306,14302,14312,4139], +[0,1437,1462,21867], +"nv-inline", +[2,4690,14307], +[2,1226,14308], +"zipobject", +[2,3024,14310], +[0,21779,21869,1623,590,592,5376,3178,15215], +[1,2343,14314], +[0,14315,14288,14321,2537], +[0,1437,3714,2633], +[3,14257,24], +[2,9428,5238], +[2,14316,14317], +"9.0.0", +[2,5857,14319], +[0,21779,1936,2262,3178,15215,6707], +[1,2343,14323], +[0,14324,14325,14326,4139], +[0,1437,2267,3478,3545,3714,18045,18047,18050,18051], +[0,1166,1701,2228,1906], +[0,21779,15215,20639,158,11807,21881,20637,3178,18048,8221], +[1,2343,14328], +[0,14329,14261,2514,2523], +[0,17523], +[1,2343,14331], +[0,14332,14335,14235,4139], +[0,1437,21890,2272], +"@purtuga/esm-webpack-plugin", +[2,4807,1155], +[0,2228,2271,2277], +"browserstack", +[2,13283,14336], +[2,13283,3199], +"otpauth", +[1,2343,14341], +[0,14342,14345,14235,2487], +[0,695,1149,1437,1209], +"-as-a-service", +[2,5995,14343], +[0,2228,2247,2273,21898,2271,2277], +[1,2343,14347], +[0,14348,14349,14350,2487], +[0,21903], +[0,2228,2247,2271,2273,4384], +[0,21779,2276,1973,8791], +[1,2343,14353], +[2,2235,1283], +[0,14358,14302,14359,4139], +"codec", +"decoder", +"encoder", +"base64", +[0,1149,1437,1615,1664,4707], +[0,21779,4329,2278,1623,7234,7121,590], +[1,2343,14361], +[0,14362,14288,14235,2537], +[0,1437,21867,21915,4535], +[1,2343,14364], +[0,14365,14366,14367,2487], +[0,2164,1149,1209,4438], +[0,2228,2240,2293,4547,2273,2271,2277], +[0,21779,2282,3000], +[1,2343,14369], +[0,14370,14371,14376,2537], +[0,1437,1537,1566,3545,3760], +[0,2228,2239,2240,2247,2258,2273,2277,2290,21929,21930,2293,2307,3006], +"basic", +"orization", +[2,1303,14373], +"basicauth", +[0,2228,21779,1566,16094,13729,3073], +[1,2343,14378], +[0,14379,14381,14382,2399], +[0,1437,13985,3545], +[2,6915,5697], +[0,2228,2239,2240,2247,2273,2277,21929,21942,21930,2293,2307,3006], +[0,2228,21779,13985,2195,21944,3979,21945,1566,16094,13729,3073], +[1,2343,14384], +[0,14385,14389,14390,2523], +[0,1437,1177], +"tructure", +"ministructure", +"orange sms", +[0,442,2228,2240,2314], +[0,21779,1177,671,2649,11937], +[1,2343,14392], +[0,14394,14395,14396,2537], +"@mapbox/node-pre-gyp", +[0,21890,2292,1209,21956], +[0,2228,2273,2277,3006,4436], +[0,21779,2292,19271,16790], +[1,2343,14398], +[0,14399,14400,14401,4139], +[0,1615,1776], +[0,2228,2247,2277,2291,13896,3006], +[0,21779,2228,1745,2295,1776,18011], +[1,2343,14403], +[0,6203,14409,14410,2443], +"utfx", +"testjs", +"metascript", +"closure", +[2,14407,4643], +[0,192,21970,5467,6061,6063,16608,1177,1903,1938,1954,1958,1970,2025,2228,2239,2283,2285,2290,2291,2307,2675,2297,2881,2895,2900,3006,2899,4131], +[0,21779,2297,2228,1973,2275,8791,21972], +[1,2343,14412], +[0,14414,14415,14420,2399], +"pomelo-logger", +[0,21890,3188], +[0,1429,1506,2228,2240,21980,2247,2258,2273,21929,21982,21930,21984,2899,4039], +"di", +"IoC", +"AOP", +"injection", +[0,21779,2899,1973], +"consistent", +"hot reload", +[2,6399,5995], +[1,2343,14434], +"able codes", +[2,6578,14425], +[3,7191,11], +[2,14427,14419], +"hronous script loading", +[2,1149,14429], +"magic", +", self-described javaScript objects", +[2,14431,14432], +[0,14274,14435,14436,2399], +[0,1429,2228,21991,2240,2247,2273,2283,3203,4449,4727], +[0,1586,2228,21779,2301], +[1,2343,14439], +"beautify", +[0,14440,14441,14442,2443], +[0,4135,6472,4707], +[0,1429,2240,2273,2283,2300,22000,22002,3006,2899,3752,4436], +[0,21779,9044,22005,15844,22008,22009,6667,22011,1851,4649,13728], +"art-near-room-catch", +"blanket-line", +"born-greatly-explain3", +"bring-water-silence", +"brush-bigger-afternoon0", +"e-meet-war", +[2,11308,14448], +[2,6922,14449], +"compare-", +"breeze-mad2", +[2,14451,14452], +"did-", +"strai", +"ght-sister-sail", +[2,14455,14456], +[2,14454,14457], +"excitement-tonight-dead", +"gain-pleasant-prepare", +"industrial-public-immediately-until", +"is-str", +"aight-web3-attack", +[2,14462,14463], +"known-", +"wet-thirty-gave", +[2,14465,14466], +"-private-thee6", +[2,13682,14468], +[1,2343,14493], +"mainly-cent", +"ain-quarter-sit8", +[2,2944,14472], +"mouse-bat-web3-present", +"need", +"s-supper-anything", +[2,14475,14476], +"percent-impossible-score", +"rocket-location-calm-valley", +"seldom-fire-web3-running", +"shad", +"e-swim-shells1", +[2,14481,14482], +"spider-melted-chemical", +"stre", +"tch-onto-driver7", +[2,14485,14486], +"dream-supply5", +[2,11072,14488], +"-invented-girl-jungle", +[2,4990,14490], +"we-hunt-process", +[0,0,14494,2514,2399], +[0,2228,2239], +"automobile7", +[2,4654,14495], +"whether-dangerous", +[1,2343,14499], +[0,0,14500,14501,2523], +[0,2228,2240,2247,2277,2278,1906], +[0,21779,1623,2278,4329,590,7234,4358,22022], +"ansicolors", +"global-", +[2,14503,6666], +[2,2103,14504], +[2,2687,11601], +[3,5510,9], +[2,14507,3101], +"script-", +"inject", +"injector", +[2,14509,14511], +[1,2343,14516], +"dotpathlookup", +"jsl", +[0,14519,14520,14521,2537], +"httpserver", +[2,2869,14517], +[0,1512,1209,3760,22027,22031,12826], +[0,2228,2256,2273,2283,2293,22035,3003,1698,20001], +[0,21779,2228,12826,1973,2765,2899,2907,22037], +[1,2343,14523], +[0,14524,14525,14526,2443], +[0,1437,3404,4294], +[0,2228,2240,1906], +[0,21779,4166,1523,8429,2978,1614,1451,3729,200], +"docdown", +[1,2343,14530], +"qunit-extras", +[0,7923,14531,14420,34352], +[0,2228,2273,2899], +[1,2343,14533], +[0,14534,14535,14536,2443], +[0,1149,22054,22057,4545,22058], +[0,1177,22062,22064,22066,22068,22071,22072,2228,2240,2302,2899,4039,4165], +[0,2228,21779,22074,158,22075,1623,22057,16697], +[1,2343,14538], +[0,14539,14540,14541,2537], +[0,1437,1676,1209,3505], +[0,2228,3188,4039,2240,2293,22081,2273], +[0,21779,2319,8635,1936,1623,6707], +[1,2343,14543], +[0,14549,14551,14565,2523], +"@beyond-js/specifier-parser", +[3,14544,11], +[2,14545,2150], +"bee", +[2,14545,14547], +[0,442,1009,1011,1437,1177,1895,1953,1955,2020,2720,2856,3157,3275,1894,4523,4728], +"tml", +[0,22088,21122,5601,4864,4866,22089,6503,21621,4874,6513,6520,22092,1414,1615,2151,22093,21627,2899,4193,4449,91], +"ansi-to-html", +"concat-", +"maps", +"-sourcemaps", +[2,5056,14555], +[2,14553,14556], +"json-format", +[3,6477,9], +"ackage-", +"ackage-path", +[2,14559,14561], +"uimport", +[2,14503,5260], +[0,91,9654,4525,1885], +"universal", +" javascript", +[2,14566,14567], +"universal ", +[2,14569,91], +[3,2758,10], +[2,14571,14567], +[3,14572,11], +[2,14573,91], +"sigle page", +"spa", +"modul", +"ar development", +[2,14577,14578], +[3,11615,13], +" frontend", +[2,3166,14581], +"micros", +[2,14583,8920], +"micro ", +"services", +[2,14585,14586], +"hot ", +" replacement", +[2,1237,14589], +[2,14588,14590], +"ssr", +" side rendering", +[2,36,14593], +" packager", +[2,91,14595], +"JAMStack", +[1,2343,14599], +[0,0,14610,14611,2523], +"real time", +[2,7519,5130], +"ssr react framework", +[2,8589,5130], +"ssr ", +[2,14604,14603], +" framework", +[2,3709,14606], +[2,14604,14607], +"websockets", +[0,22099,8719,842,16145,22100,5087,4874,22102,9240,1177,1192,3313,1894,4039,4342,91], +[0,2322,5122,5130,6710,27,5592,5995], +[1,2343,14613], +[0,14618,14623,14624,2487], +"check-", +"check-types", +"hoopy", +"tryer", +[0,22110,21681,22109,4600], +"please-", +"release-me", +[2,14619,14620], +"spooks", +[0,1177,1889,1954,2022,3188,2899,3421,4039], +[0,6147,3101,623,7048,4990,14932,13441,22114,12804,22115], +[1,2343,14627], +"streamify", +[0,14630,14631,14632,2537], +"serialise", +[3,14430,12], +[0,2367,22122,2409,2835,3067,3102,19984,4431], +[0,4597], +[0,18444,2323,1098,12074,6113,22126,22127], +[1,2343,14645], +"arbitrary", +"precision", +"arithmetic", +"big", +"decimal", +"float", +"biginteger", +"bigdecimal", +[3,1325,9], +"bigint", +"bignum", +[0,14646,14647,14648,2537], +[0,18473,692,2012,2390,2494,22133,2543,3188,2072,3730,18528,4039,4135,1241,4597,4600], +[0,2348,2899], +[0,18444,16179,4166,22137,1804,2195], +"uri-", +[1,2343,14653], +"uri-to-path", +[2,2093,14651], +[0,14656,14657,14658,2537], +"gyp", +"c++", +[0,1165,2476,3561,4606], +[0,1166,2510,3477,4597,1906], +[0,18444,1165,3561,1623,3665,22145,5376,4358,22147], +[1,2343,14661], +"@noble/hashes", +[0,14662,14663,14664,2537], +[0,7709,1104,1443,2061,22153,3173,3544,4597], +[0,1429,22157,1177,2323,2494,2899,1894], +[0,18444,7200,6949,20001], +[1,2343,14668], +"@antv/", +[2,14666,4627], +[0,14670,0,14677,2537], +"@antv/g2", +[0,22167,22168,2012,3171,3730,3768,22170,4597,4600,4747], +"@antv/g2plot", +"@antv/util", +"@juggle/resize-observer", +"d3-color", +"conciler", +[2,3877,14675], +[0,18444,13531,20614,13901], +"data-", +"data-set", +[2,14666,14679], +[3,87,15], +[2,14681,1266], +"backgrounds", +[2,10818,14683], +[3,10827,19], +"fo", +[2,14685,14686], +"knobs", +[2,10818,14688], +"options", +[2,10818,14690], +"fabric", +"@umijs/fabric", +"@welldone-software/why-did-you-render", +"aphrodite", +[3,13080,20], +[2,14696,3897], +[2,14696,8221], +"bx-jest-electron", +[3,4325,12], +[2,6996,4408], +[2,14700,14701], +[1,2343,14704], +[0,14716,14722,14724,2487], +"-deploy", +[2,7204,14705], +[2,10617,14706], +[2,5651,2091], +"moment-", +"jalaali", +[2,14709,14710], +"react-wi", +"th-styles-interface-aphrodite", +[2,14712,14713], +[3,14714,28], +[0,4431,4002,3544,4606], +"mpiler", +"css-compiler", +[2,14715,14718], +"-diff", +[2,8745,14720], +[0,1906,2899,4597,3697,53,2510,5761,5756,5743], +"g2", +[0,18444,1172,5198,6778,7056,7192,22179,22180,5341,5061,22181,5284,4643], +[1,2343,14726], +[0,14727,14729,14732,2523], +[0,2476], +[3,4808,10], +[0,1166,2323,3477,4597,1906], +"dable-stream", +[2,14728,14730], +[0,18444,4295,1412,4327,3126,4577,22188,22189,22190], +[1,2343,14734], +[0,14735,14737,14740,2537], +[0,1104,1370,2061,2720,3544,4431,4597,4647], +"bun-types", +[0,1429,2012,22198,2436,2463,2272,2899,4039,4193,4196,4278], +"falafel", +"fore", +[0,18444,1370], +"foreach", +[1,2343,14746], +"coffee-", +[2,14743,89], +"save", +[0,14749,14750,14751,2523], +"save-license", +[2,4534,14747], +[0,1389,2541,1391,3923,4431], +[0,2899,1429,15052], +[0,18444,17461,1389], +[1,2343,14753], +[0,14754,14758,14760,2537], +[0,4431], +"curses", +"tui", +"tput", +[0,2899,4597], +"terminfo", +[0,2323,18444], +"termcap", +[1,2343,14763], +[0,14764,14631,14765,2399], +[0,22217,3544,22218,4135,4431], +[0,2323,15208,4135,18444,15525,22220,22222,22223], +[1,2343,14767], +[0,14771,0,14772,4139], +"ansi-term", +"drawille-canvas-blessed-contrib", +"map-canvas", +[0,97,22229,1593,22230,3544,4431,4597], +[0,18444,2323,2325], +"-terminal", +[2,3127,14773], +[2,3149,7046], +"picture-tuber", +"sparkline", +[1,2343,14779], +[0,14782,14786,14787,2537], +"term-canvas", +"x256", +[0,4431,3032], +"@types/bl", +"essed", +[2,14783,14784], +[0,2899,4597,4170], +[0,18444], +[1,2343,14789], +[0,14790,14791,14792,34352], +[0,22246,2476,4453], +[0,1166,1437,1700,2089,2188,2323,4597,1906], +[0,18444,2090,1586,22249,2301,22251,22253,15795,6901,22254,4262,2325,16077,22255], +[1,2343,14794], +[0,14795,7878,14796,2487], +[0,2061,3544,4039,4431,4597], +[0,18444,4050,7293,6865], +[1,2343,14798], +[0,14799,14800,14801,2487], +[0,1462,3544,4431,4606], +[0,1429,21480,1596,2026,2061,2323,2367,2494,2504,2510,2899,3421,4597], +[0,1623,4050,3178,2280,1462,2458,2459,2361,18444,17461], +[1,2343,14803], +[0,14804,14805,14787,2399], +[0,1509,3544,4002,4431,4606], +[0,2510,2899,4170,4597], +[1,2343,14807], +[0,14808,14809,14810,4139], +[0,2541,4431,4707], +[0,1596,1700,2323,2436,2444,2447,2455,2463,2685,22280,3102,2899,4170], +[0,2323,18444,21837,4329,2278,1623,7234,7121,590], +[1,2343,14812], +[0,14813,14814,14787,2537], +[0,4597,4431,14557], +[0,2323,2899,4170,2759,16584,4278,2510,3202], +[1,2343,14816], +[0,14817,14818,14819,2537], +[0,3032,22291,3544,22292,22293,22296,4431,4597], +[0,1429,2899], +[0,18444,5614,1623,1204,1698,134], +[1,2343,14821], +[0,14822,14818,14823,34352], +[0,4431,2541,2720,1687], +[0,18444,8635,22303,22304,8622,8620,22306], +"loop", +[1,2343,14826], +[0,14827,14828,14831,2537], +[0,710,1544,4438,2061,3102,1104,4150,4151,21847], +[0,2323,2899,4342,2515,1506], +"baconjs", +"kefir", +[0,17461,1544,3000,22313,36], +[3,3736,10], +[3,3736,14], +"deferred", +"deferreds", +"future", +" control", +"flow control", +"dsl", +[2,8553,6072], +[1,2343,14842], +[0,14843,14844,14845,2537], +[0,4431,3544], +[0,2323,1192,1894,21482], +[0,18444,1585,2323], +"BN", +"Big number", +"BigNum", +"Modulo", +"Montgomery", +[1,2343,14852], +[0,14853,14854,14857,2537], +[0,1104,22324,2061,3544,4431], +[0,2272,2899,4597], +"unpipe", +"destr", +[0,18444,1623,22324,671,9654,7121], +"destroy", +[1,2343,14860], +[0,14861,14862,14863,2537], +[0,4597,21861,22331,4431,2061,3544], +[0,3421,2899,4193,1177,4039,4170,1596,22333,22334,1958,1903,1970,1900], +[0,21861,18444], +[2,1601,1851], +[1,2343,14866], +[0,14867,14870,14875,2537], +[0,1637,16136,3544,3427,4606], +"-jsdoc-theme", +[2,1365,14868], +[0,4389,4597,4387,2510], +"postgre", +"sql", +"postgresql", +"datamapper", +[0,1637,3178,14137,16918,16919,1623,18444,3561], +[1,2343,14878], +"active record", +[0,14879,14880,14881,2537], +[0,16858,3544,4606], +[0,4389,4597,4387], +[0,18444,3178,1623], +[1,2343,14883], +[0,14884,14885,14886,2523], +[0,3544,4431,20992], +[0,2272,3760,4170,4597], +[0,18444,2382,1781,2323], +[1,2343,14888], +[0,14889,14890,14891,34352], +[0,1177,2061,3544], +[0,2323,2899,4597,4170,2759,1178,22360,22363], +[0,18444,1177,2323,2656,22365,4354,4225,1501,4525,676,5284,5957,671,1932], +"mincer", +[1,2343,14895], +"eyeglass-module", +[0,14896,14897,14898,4139], +[0,2856,4597,2051,22372,4431,3544,1537,22371], +[0,2323,2899,4170,2759,1783], +[0,18444,2090,2385,4068,2323,1932], +[1,2343,14900], +[0,14901,14902,14905,2487], +[0,4207,3249,3544,22379,22382], +[0,1906,1166,2323,4597,3477], +"align", +"ansi-align", +[0,18444,7131,2687,2090,1586,3529,3181,2070,21543,4597], +[1,2343,14909], +"boxes", +"border", +[0,14910,14631,14911,2523], +[0,3544,4431], +[0,18444,19991,4237,20050,22390,22392,3053,2323], +[1,2343,14913], +[0,14843,14914,14915,2537], +[0,2323,2899,4597,4170,3697,1879], +[0,18444,2323,3033,10903,3403], +[1,2343,14917], +[0,14918,7923,14919,2537], +[0,22402,4001,21035,4431], +[0,14438,1671,4525,2323,18444,1783,5980,1932,22405,3721,4001], +[1,2343,14921], +[0,14925,14926,14928,4139], +"-stream", +"quote-stream", +[2,5706,1237], +[0,1437,2541,22410,22412,3427,7029,3545,4431], +[0,22414,3505], +[2,13888,353], +[0,18444,2156,22410,2090,1586,16410,20500,36,5576,9229,20997,20998], +[1,2343,14931], +"readFileSync", +[0,14933,14934,14935,2537], +"asset", +[0,22420,4039,4600,2541,22422,3923], +[0,2899,4597,1177,2759,22425,3349,2215,3074,22427,22428], +[0,3358,6645,1528,22430,20997,20998,20001,13755,5351,2323,18444,2193,1724,2195], +[1,2343,14941], +"array-equal", +[2,1379,1932], +"fs-tree-diff", +"heimdalljs", +[0,14945,14946,14947,2523], +[2,3192,1177], +"-lerna-changelog", +[2,3980,14943], +[0,22437,2061,1209,3544,4015,22440,4597], +[0,1177,2899,3210,4039,4170], +[0,2323,3358,22443,18444,22223], +[1,2343,14949], +[0,14950,14954,14955,34352], +[0,1104,1413,2061,3544,22449,4431], +[3,1378,10], +"ixture", +[2,14951,14952], +[0,2323,2359,2390,2447,2463,2494,18426,2544,2839,2899,22451,4170], +[0,15215,18444,16518], +[1,2343,14957], +[0,14958,14960,14963,2523], +[0,2036,3544,4002,4431], +"broccoli", +[0,4597,2323,2367,22460,22463,22465,2899,22466,4170], +[3,14953,15], +[2,14961,1289], +[0,18444,2036], +"multidep", +[1,2343,14966], +[0,14971,14972,14973,2537], +"ts-docs-gen", +"plugin-p", +[2,14968,11597], +[2,4491,14969], +[0,14557,1209,3102,4431], +[0,1429,2323], +[0,10345,18444,22475], +[1,2343,14975], +[0,14976,14977,14984,2399], +[0,1496,4207,1362,4599,3427,3923], +[0,2899,4597,2759,2541,22360,1537,22481,4603], +[2,1387,4219], +[3,14978,13], +[2,14979,181], +"bs-recipes", +"dev-ip", +"easy-", +[0,18444,1936,4068], +"easy-extender", +"eazy-logger", +[1,2343,14988], +[0,14989,14991,14993,4139], +[0,4431,3544,2633], +"resp-modifier", +[0,2323,2899,4597,2398], +"bs-snippet-injector", +[0,1671,2323,18444,22489,1936,2265,14137,2632,3178], +"-changelog", +[2,8623,14994], +[1,2343,14997], +[0,14999,15002,15003,2523], +"browser sync", +[0,8949,22495,18438,22497,22502,22379,22504,22505,22500], +"live reload", +"sync", +[0,2323,1192,1177,4039,22509,8719,1894,842,16145,442,1527,22512,91,22507,8712,22511,4523,1939,1895,1955,1652,1567], +[0,18444,2323,1017,2414], +[1,2343,15005], +[0,15025,15026,15029,34352], +"browser-pack", +[2,13843,814], +"zlib", +[2,13888,15008], +"d-pa", +"th-relative", +[2,15010,15011], +[2,2325,15012], +[2,10740,1389], +[2,14181,1617], +"defined", +"deps-sort", +"domain-browser", +"duplexer2", +"htmlescape", +"https-", +[2,15021,1389], +"ed-stream-splicer", +[2,5433,15023], +[0,4431,22518,22519], +[0,2899,2272,3188,4039,4170,4600,2215,1834,22522], +"-classic", +[2,3188,15027], +[0,18444,21195,22524,22525], +"module-deps", +"os-browserify", +"-es3", +[2,3767,15032], +"read-", +"only-stream", +[2,15034,15035], +"shasum-object", +"stream-b", +[2,15038,2345], +[2,4279,27], +"_decoder", +[2,1871,15041], +"subarg", +[2,9056,1851], +"rs-browserify", +[2,6901,15045], +"tty-browserify", +"vm-browserify", +[1,2343,15061], +"unpack", +[2,13843,15050], +"coffeeify", +"has-o", +"bject-spread", +[2,15053,15054], +[2,2565,1243], +"isstream", +[3,5747,18], +[2,3094,15058], +"seq", +[0,15062,15063,15065,2443], +[0,4431,22518], +[0,2272,2899,4170], +"commonj-esque", +[0,18444,7131,3181,2385,6521,2390], +[1,2343,15067], +[0,15068,15069,14787,2537], +[0,1149,1209,22536,4431], +[0,2206,2323,2359,2463,2447,4089,2839], +"exposify", +"mothership", +"-function-calls", +[2,14057,15072], +[1,2343,15075], +[0,15078,15079,15080,2537], +"peer-range", +[2,1382,15076], +[0,1437,2476,2267,3545,3714], +[0,1166,2694,24006,4597,1906], +[0,18444,2267,158,11807,20631,20632,3178,2632,15215,18048,20637,21881,20639,8221], +[1,2343,15082], +[0,15083,15089,14787,4139], +[0,1104,2012,2070,3544,4227,4296,4597,4606], +"leases", +[2,3340,15084], +[3,12361,13], +[2,15086,1747], +[2,9787,15087], +[0,2323,2510,2899,4170,4278], +"target", +[1,2343,15092], +[0,15093,15094,15096,2537], +[0,1144,4431,2061,1104,22555,3544,22449,1874], +[0,1906,2675,2899,4597,4170,22557,2012,192,4131,22559], +"base-x", +[0,18444,14510,22561,22562,3888,4017], +"ts-standard", +[1,2343,15099], +[0,15104,15106,15108,2537], +"base58", +"bitcoin", +"crytography", +"decode", +[0,22568,3544,4431], +"decoding", +[0,1178,1596,2012,2323,2384,2463,2899,3421,4597], +"litecoin", +[0,18444,134,1623,1936,1823], +[1,2343,15110], +[0,15111,15116,15117,34352], +[0,1664,2541,22576,3479,4431,4707], +[3,9366,12], +"d-transpile", +[2,6990,15113], +[2,15112,15114], +[0,1429,2899,4257,1906], +[0,18444,1370,3378,1161], +[1,2343,15119], +[0,15120,15121,15122,34352], +[0,2759,22584,1209,3544,4431,4606], +[0,2323,2463,2510,22588,2272,2899,4039,4597], +[0,18444,4504,2759,22590], +[1,2343,15124], +[0,15129,15131,15137,2399], +"acorn-", +[3,1200,14], +[2,15125,15126], +"acorn-jsx", +[0,2541,2437,4431], +"regexpu-core", +[0,2323,4384,2447], +[2,10740,7227], +[3,5583,16], +[2,15133,4047], +"262-stream", +[2,1973,15135], +[0,2437,18444,3101,7234], +"transpil", +[2,15138,5218], +[3,5221,11], +"esnext", +[1,2343,15143], +[0,15144,15145,15146,2399], +[0,1144,2765,22602,3544,4431], +[0,2323,4597], +[0,5982,5130,18444,2765,2907,8791,4386,4384,6969,1973,5472,2275], +[1,2343,15150], +"compatible", +"uint8array", +[0,15151,15152,15153,2537], +[0,2292,3544,4431,4435], +[0,4278,17468,4597], +[0,18444,2292,5284,5286,676,1501,590,2649,671,6892,4354,16790], +[1,2343,15155], +[0,15156,15157,14787,4139], +[0,1209,3181,3544,22331,4431], +[0,2323,2272,2899,4170,4597], +[1,2343,15161], +"-build", +[2,640,15159], +[0,15162,15163,15165,2523], +[0,1699,1707,2820,3544,4431], +[0,1177,1889,2323,2899,4170,4597], +"prebuildify", +[0,18444,2323,1781], +[1,2343,15167], +[0,15168,15169,15170,2523], +[0,695,3427,3544,4002,4431,4606], +[0,2272,2899,4170,4597], +[0,18444,2323,695], +[1,2343,15172], +[0,15173,15176,15177,4139], +[0,1437,1676,4597,4438,2061,3023,3923], +"built-in", +"bundled", +[0,2899,4193], +[0,18444,3000], +[1,2343,15179], +[0,15180,15181,15183,2523], +[0,22639,814,2061,3170,2107,22640,22638], +[0,2899,4193,1177,3752,22643,1953,1954,1938,1958,1903,1970], +"flexbox", +[0,17461,2323,3209,3001,9711], +[1,2343,15185], +[0,15186,15188,2514,2399], +[0,1462,2541,3427,3923,22649,4606], +[2,5581,10659], +[0,1429,2899,4597,1177,2759,2515,22360,2510,22651,22481,22428], +[1,2343,15190], +[0,15191,15195,15196,2537], +[0,16862,4431,2541], +"@sto", +"plight/yaml", +[2,15192,15193], +[0,1429,2323,2899], +[0,18444,3178,6707,16918,15215,1936,16862], +"mergician", +[1,2343,15199], +[0,15200,14729,15202,2523], +[0,1664,2020,2476,2899,4351], +"warn-if-update-available", +[0,18444,2899,1973,5472,2275,5130,8791,6969,5982,2907,4386,4384], +[2,4869,7059], +"err", +[1,2343,15206], +[0,15207,15209,15210,2399], +[0,22667,2070,3544], +"bump", +[0,1429,2323,2899,4597,1177,3203,21470], +[0,2323,18444,2301,22254], +[1,2343,15212], +[0,15213,14631,15214,2523], +[0,22675,1698,22676,3544,4431,4606], +[0,18444,1098,12074,10650,22676], +"compress", +[1,2343,15217], +[0,15218,15219,15224,2443], +[0,1512,2323,3363], +[0,1506,2447,2463,20047,2272,4170], +"dtrace-provider", +"mv", +[3,2854,14], +[2,4099,15222], +[0,2323,3363,22684,36,22687,20120,2282,17461,18444], +"ben", +[1,2343,15228], +"log4j", +[0,15229,15230,15231,2399], +[0,1209,4431,2061,1104,3357,3544,3330], +[0,2323,2899,4597,4170,2479], +[0,18444,22005,2323,9044,16237,22695,22696,22011,22699,15844], +"streamsearch", +[1,2343,15235], +"@mscdex/eslint-config", +[0,15238,15239,15240,2537], +"uploads", +[3,3253,9], +[0,18438,1437,22706], +[0,1166,3477,91,4597,1906], +[0,2323,1932,2474,6731], +[1,2343,15242], +[0,15246,15248,14787,34352], +"lxiv", +"hrtime", +[2,3715,15244], +[0,1437,4431,2061,3544], +"webrtc", +[0,1906,2323,2899,4170,4430,2759,1596,2012,3202], +[1,2343,15250], +[0,15251,15252,15254,34352], +[0,2061,3544,3616,4606], +[0,3421,2899,4193,4597,1177,3561,3752,2510], +"converter", +[0,18444,3561,22147,1623], +[1,2343,15256], +[0,15257,15259,15263,2537], +[0,4358], +"@bcoe/v8-coverage", +[0,2899,33479,30889,4597], +"ground-child", +[2,14739,15260], +"v8-to-istanbul", +[0,22726,1509,21195,1676,22729,6639,6521,22223,18444,1936,22727,22728,2385,5284,7121], +[2,1432,8746], +[1,2343,15268], +"v8", +"profiler", +[0,15269,15270,15271,2523], +[0,2012,2720,3067], +[0,1145,1177,22735,2720,2899,3752,4603], +[0,18444,3741], +[3,5738,22], +[2,15272,2528], +[1,2343,15280], +"@types/mri", +[2,13307,2831], +[2,4049,668], +[3,207,8], +"madr", +[0,15281,15282,15283,2399], +[0,2541,3427,3909,4431,4606], +[0,2510], +[0,18444,89,1219,353,8535,1283,5354,6624,22743,22746,7234], +[1,2343,15285], +[0,15291,15293,15295,2443], +"@fake", +"r-js/faker", +[2,15286,15287], +[3,1909,17], +[2,15289,91], +[0,2012,3357,705,4431,4597], +" cache", +[0,2323,2530,2359], +"multiple", +[0,18444,21004,22753], +[1,2343,15297], +[0,0,15298,14787,2399], +[0,2323,2510,3102,2899,1894,4170,4597], +[1,2343,15302], +"es-de", +"fine", +[0,15303,15306,15311,34352], +[0,4874,18438,4748,22762,17909], +"fine-property", +[2,15300,15304], +[0,2899,4597,4170,4474,19544,91,1537], +"-apply-helpers", +[2,2183,7083], +"-length", +[2,3609,15309], +[0,18444,4068], +"gopd", +[1,2343,15314], +[0,15315,15316,15317,4139], +[0,2476,22771,22772,22774,22776,4597,22778], +[0,1166,3477,1906], +[0,18444,22781,22782,22783,3428,6707,15525,22220,2325,22784,2947,14932,22785], +"camel", +"-case", +"camel-case", +"case", +"hyphen", +"separator", +"pascalcase", +[1,2343,15327], +"pascal-case", +[0,14910,15328,15329,2537], +[0,2012,2390,2498,2899,4597], +[0,18444,22781,22783,15525,4068,14932], +[1,2343,15331], +[0,15332,15333,15334,2523], +[0,1437,1573,1615,1664,22795,1874,2061,2070,8944,22798,3505,3544,4002,4039,4597], +[0,2323,2510,22778], +[0,18444,4329,2278,1623,7234,7121,590,22801,4227,11939,12938,4070], +[1,2343,15336], +[0,15337,15338,15339,2487], +[0,3527,4294,4002,3544,3028,4606], +[0,2323,2278,2899,4597,1177,4039,21315,3561,18426,3342,1165,2482,21688,2510,1938,1881], +[0,18444,2278,2323], +"assert-", +"rejects", +[2,15340,15341], +[1,2343,15347], +"graphic", +"pixman", +"cairo", +[0,15348,0,15349,2523], +[0,1149,2541,3427,7029,4247,4431], +[0,18444,22813,2090,1586,16410,20500,36,5576,9229,20997,20998], +[1,2343,15351], +[0,15352,15353,15354,2523], +[0,1437,2061,3067,3544,4431,4484], +[0,22821,22507,5087,22823,4874,18435,1009,1011,1596,1177,1895,1939,2323,1192,1894,4468,4474,91,4597], +[0,18444,2323,4166,1523], +" sensitive", +[2,15321,15355], +[1,2343,15358], +[0,15359,15360,15363,2399], +[0,22829,1437,2061,2476,2553,3714], +[0,1166,3477,4597,1906], +"slimerjs", +"scraping", +[0,18444,2098,2090,4202,3073,22832,3430,1676,16518,21665], +[1,2343,15365], +[0,15366,15367,15368,2537], +[0,22837,22841,1082,1573,1623,22843,20949,2215,4227,21732,4431], +[0,1367,1177,1889,2022,2323,2367,2419,2450,2455,22845,2759,22481,22848,2899,3427,4039,4597], +[0,18444,2323,22850,4070], +[1,2343,15372], +"loupe", +"pathval", +[0,15375,15360,15377,2537], +"check-error", +[3,6470,15], +[0,53,2476,22857], +[2,5474,13278], +[0,18444,4301,7293,6865,4050,1676,6782,7201,3073,6807,676,5284,5286,6892,2003], +[1,2343,15379], +[0,15380,14805,15381,2537], +[0,22863,3023,3544,4002,4333,4431,4606], +[0,2323,4333,1623,7121,18444,22223], +[1,2343,15383], +[0,15384,15386,15387,2537], +[0,3544,4360], +"chai-plugin", +[0,2070,2323,22871,2899,22872,4597,1906], +[0,18444,1017,45,8221,18048,22074,22075,2873,1179,1623,2278,695,4333,5376,134,1936,13814,22874,22875,3257], +[1,2343,15389], +[0,15390,15391,15392,2523], +[0,3028,3544,4361], +[0,48,53,87,94,1166,1596,1610,1701,3421,1894,4597,1906], +[0,18444,3178,8221,4361], +"strategy", +[1,2343,15395], +[0,15396,15397,15399,2537], +[0,1448,2061,3544,4597], +[0,2099,2323,2430,2899,3758,4151,4193], +"@debitoor/eslint-config-debitoor", +[0,18444,8221,1017,22074], +"objects", +"Subset", +[2,6792,15401], +"like", +[1,2343,15406], +"superset", +[0,15407,15408,15409,34352], +[0,2476,1209], +[0,1166,2383,4597,1906], +[0,18444,1209,4545,1283,7234,1936,8924,22894,22746], +[1,2343,15412], +"yoctodelay", +[0,15413,15414,15415,2537], +[0,1104,2061,4430,4597], +[0,22507,4874,22900,18438,20959,22821,4039,2323,2463,91], +[0,18444,91,5284,22902], +[1,2343,15417], +[0,15422,15425,15429,34352], +"docpress", +"git-u", +"pdate-ghpages", +[2,15419,15420], +[0,22821,1104,2061,3102,3544,4430], +"gulp-ava", +[2,2530,3020], +[0,22909,4874,22900,2323,2367,2529,4487,91], +"mersenne", +"address", +"dice", +[0,2323,91,1932,4799,18444,17461,4487,9654,671], +[1,2343,15431], +[0,15432,15433,15434,2537], +[0,4597,4431,4600,4227,1104,3544], +[0,2323,4039,22920,91,4874,2367,2409,18438,2479,3159,18435,18440,2510,22919], +[0,91,18444,22924,4799,11540,7234,4643,5197], +[1,2343,15440], +"param-case", +"kebab-case", +"header-", +"header-case", +[0,15441,15442,14787,34352], +[0,22639,2757,4431,4535,22930,22640,4100,2053,22933,4606], +[0,4389,4597,1177,1894,22941,4421,3696,22939,1907,1982,1895,1955,22937], +[1,2343,15453], +"c12", +"convert-", +"gitmoji", +[2,15445,15446], +[2,3310,4009], +"ofetch", +"pkg-types", +"scule", +"std-env", +[0,15454,12112,15455,2523], +[0,2541,3427,22946], +[0,17507,1623,18444], +[1,2343,15459], +"dogstatsd", +"@kurkle/color", +[0,15479,15485,15489,2523], +[2,812,14510], +"@types/o", +"ffscreencanvas", +[2,15461,15462], +"js-adapter-luxon", +[2,9816,15464], +[3,15465,16], +[2,15466,3220], +"chartjs-", +[2,15468,11017], +"chartjs", +[2,1884,15470], +[3,2912,13], +"launcher", +[2,5695,15473], +[2,15472,15474], +[3,4071,15], +"wc3", +[2,15476,15477], +[0,2070,2367,3544,4431,4597], +"charts", +"graphs", +"datadog", +"telegraf", +"native-run", +[0,2012,4600,2323,2447,2463,2530,2413,2361,2498,2450,2272], +[2,1448,11245], +"domhandler", +"domutils", +[0,18444,2319,2536], +"-sniffer", +[2,9254,15490], +"-tree-adapter", +[2,2653,15492], +[2,1868,15493], +[2,3493,15494], +"parse5-", +"parser-", +[2,15497,3101], +[2,15496,15498], +"whatwg-", +"mimetype", +[2,15500,15501], +[1,2343,15511], +"@imgix/js-core", +[2,7724,2220], +"hatwg-mimetype", +[2,7820,15506], +[3,1926,15], +"xpect-type", +[2,15508,15509], +[0,15513,15515,15516,2537], +[3,2654,10], +[0,2070,2051,22959,2419,4431,4600,2367,2012,3544], +"scraper", +[0,3421,2323,2899,4597,1596,22961,2463,2384,2494,1178,22963], +[0,18444,1936,3888,1623,6707,5614], +[1,2343,15518], +[0,15519,15520,2514,2487], +[0,22970,22971,22972,1437,1672,2061,22639,22640,22974,22979,22983,3067,3183,8949,3427,4002,4431,4597], +[0,1400,1596,2012,2759,22481,2272,22985,2899,4039,4170], +[1,2343,15522], +[0,15523,15524,15527,4139], +[0,3768,4430,4431,4597,4600,4753,22990], +[0,2899,4255,1241], +"version", +[2,813,15525], +[0,2323,18444,22990,22993,2056,7046,4597,2542], +[1,2343,15529], +[0,15530,15531,15532,2537], +[0,1104,15642,1457,2061,2200,3427,3507,3544,3923,4207,4597,22778], +[0,1596,2759,2899,3202,3752,4039,4170,4193,4278,4294,1906], +[0,2323,2282,18444], +"@better-scroll/core", +"add-", +"listener", +[2,12598,15535], +[2,1752,15536], +[2,15534,15537], +"-font", +[2,1456,15539], +[2,1625,7521], +[1,2343,15546], +"-converter", +[2,2275,15543], +[2,1625,15544], +[0,15552,0,15563,2537], +"dom-closest", +"dom-lib", +[3,1817,15], +[2,15549,2013], +"htmlhint", +[0,3150,4597,4430,2924,2541], +"insert-css", +"jsbarcode", +"jsonlint", +"jsonlint-mod", +"mutat", +"ionobserver-shim", +[2,15557,15558], +[2,3767,1289], +"-delta-to-html", +[2,3771,15561], +[0,18444,2924], +[1,2343,15576], +"eautiful-dnd", +[2,12242,15565], +"demirror2", +[2,3808,15567], +"asy-crop", +[2,11352,15569], +"lightbox", +[2,3608,15571], +[2,3838,15572], +"azy-load", +[2,12432,15574], +[0,15577,15581,15583,4139], +[0,1544,21847,2541,2756,3357,3445,23009,4150,4151,4431,4438,2282], +"react-quill", +"rmc-feedback", +"smooth-scroll-into-view-if-needed", +[0,2899,4342], +[3,5835,27], +[0,18444,22313,1544,3000], +"to-to-assign", +[2,15582,15584], +"demirror", +[2,4860,15586], +"lement-", +[1,2343,15593], +"resize-event", +[2,15588,15590], +[2,4861,15591], +[0,15603,15617,15620,2523], +"@types/faker", +"sert-css", +[2,9721,15595], +"barcode", +[2,7635,15597], +[3,7895,12], +[2,15599,2631], +"rcode.react", +[2,11304,15601], +[0,2188,2476,4597,22990], +"beautiful-dnd", +[2,4881,15604], +[2,4881,2741], +[2,4881,11167], +[2,6324,1456], +[2,5098,15608], +[3,15609,15], +[2,15610,7262], +[2,15610,89], +[2,15610,10631], +"tinker", +[2,1876,15614], +[2,6941,3841], +[0,1166,17279,22706,2323,3477,23017,22778,1906], +"mark-twain", +"rc-queue-anim", +[0,18444,2056,12666,1137,15215,1536,2090], +"croll-anim", +[2,11229,15621], +[3,11371,21], +[2,15623,1524], +"react-su", +"blime-video", +[2,15625,15626], +[1,2343,15631], +"scrollama", +"values.js", +[0,15636,15638,15639,2523], +"vfile-message", +"-warnings-plugin", +[2,7131,15633], +[2,4670,15634], +[0,22058,1149,4597,4431,3181,4545,22057,22054], +[3,1456,9], +[0,2323,2899,1177,4039,22064,23026,2381,3159,4599,2425,23025,22066,22068,22062], +[0,18444,22057,22074,22075], +[1,2343,15641], +[0,15646,15647,15649,2443], +"anymatch", +"braces", +"is-b", +"@paulmillr/jsbt", +[0,1792], +[0,1166,3477,4481,1906], +"readdirp", +[0,1896,4990,15008,16518,23034,4202,1871,1398], +[1,2343,15651], +[0,15652,15653,15654,2537], +[0,23040,23041,23043,23045,3984,23051,23054,3988,10630,11380,23059,23065,23070,23075,23078,23080,23082,23085,23092,23096,23098,23103,23110,23113,23118,23121,23123,13240,23126,23128,23133,23136,23139,23141,23143,15043,4351,23145,23149], +[0,811,8850,816,10615,1703,23155,4042,4255,4389,4400], +[0,1783,1745,1739,9591,13729,4354,23158,9654,671,19269,2554,3984,4549], +[1,2343,15657], +"ci", +[0,0,15660,15661,2399], +"continuous", +[2,15674,15682], +[0,23163,23164,2228,18555,2253,2256,2273,23165,2281,2283,2293,23167,23169], +[0,4453,7597], +[1,2343,15683], +[3,6217,21], +[2,15663,4779], +[3,169,22], +"ntion", +[2,15665,15666], +[3,169,21], +"inimap", +[2,15668,15669], +[3,116,24], +[2,15671,14745], +[3,164,21], +[3,5276,15], +"anguage", +[2,15673,15675], +[3,157,21], +[2,15677,5204], +[3,148,22], +"de-block", +[2,15679,15680], +"imple-access", +[0,15688,15708,15709,4139], +"tml-embed", +[2,15677,15684], +"ge-break", +[2,172,15686], +[0,3183,23175,4227,4720,4535], +"heme-lark", +[2,178,15689], +"ord-count", +[2,6197,15691], +[2,15698,15725,186], +"how-blocks", +[2,15663,15694], +[3,15685,25], +[2,15696,4231], +[3,10883,21], +"arkdown-gfm", +[2,15668,15699], +[3,175,22], +"move-format", +[2,15701,15702], +"ource-", +[2,15704,6110], +[2,15663,15705], +"oriz", +[0,8648,1168,1195,1282,1317,1429,23177,1540,1719,1787,16256,16257,1177,1895,1924,1926,2151,2228,13831,2240,2247,2253,2256,2258,23178,2281,2283,2314,17568,2675,16021,2990,2899,3211,3257,3421,1894,4135,4193,91,4545,2924,4681], +[0,2036,3257,1283,1936], +"ontal-line", +[2,15707,15710], +[2,15677,15711], +[3,6164,21], +[2,15713,12426], +"multi-root", +[2,6157,15715], +"strict", +"ed-editing", +[2,15717,15718], +[2,15701,15719], +"peci", +"al-characters", +[2,15721,15722], +[2,15663,15723], +"plugin-u", +"nano-jsx", +[1,2343,15729], +"solid-js", +[0,15730,15731,6060,2523], +[0,2812,23184,1366,6714,2607,8340,17693,23185,8336,8316,23187,23188,8338,23189,23190,8349,23192,23193], +[0,620,1501,2710,8363,23196,2036], +[1,2343,15733], +[0,15734,15735,15736,2487], +[0,15507,4874,9241,18089,15502,4729], +[0,23203,23205,91,1984,9750], +[0,2832,965,1388,5317,11513,5122,4963,1936,7102,12616], +[1,2343,15738], +[0,0,8134,15739,2537], +[0,6914,4354,13735,6793,2100,7210,200,6876,6478,3729,1138,7058,7233,10446,7128,3183,3460], +[1,2343,15741], +[0,0,15746,15748,2537], +"@chrisblossom/eslint-config", +[3,14731,11], +"-pkg-up", +[2,15743,15744], +[0,5517,13614,23237,26398,19325,1159,1593,9254,1177,23225,2708,3410,3421,4103,4389], +"temp-sandbox", +[0,7263,2568,7031,6951,6422,970,1593,6789], +[1,2343,15750], +[0,0,15751,2514,2523], +[0,2272,2839,1209,4389], +[1,2343,15753], +[0,15754,15755,15756,2399], +[0,14038], +[0,5517,13614,23237,23239,23241,19325,1158,1159,1177,2011,2708,3206,3410,3421,4103,4389], +[0,6914,6959,6780,6889,6888,6914,3205,941,5284,5286], +[2,5933,1469], +[1,2343,15762], +"uncache", +"uncached", +"unrequire", +[0,15763,15764,15765,4139], +[0,12396,9315,23247,23249,23250,23253,3140,3493,23254,4555,12449,23257,23258], +[0,4874,23262,1414,2581,2588,3137,1894,23264,3985,3998,4505,91,18002,1906], +[0,23267,2587,1936,23266,6435,614,1644,3972], +[1,2343,15772], +"opts", +"opt", +"parseopt", +"argsparse", +"optparse", +[0,15777,15778,15779,2537], +"complete", +"autocomplete", +[3,15774,11], +[2,15775,6600], +[0,12396,23247,23254], +[0,4874,23262,23274,1414,1699,23276,2581,2588,2620,23279,1894,3985,3998,4505,91,18002,4555,1906], +[0,4050,23267,2587,1936,6953,2574,6435,614,23266,4741], +[1,2343,15781], +[0,15782,15783,15784,34352], +[0,12396,9315,23286,23288,13839,23289,23291,9396,2584,23292,16870,3746,4233,4555,23258], +[0,4874,1414,2588,1894,3985,3998,4505,91,18002,1906], +[0,1623,23267,2587,1936,3529,6421,3766,23296,3585,1631,23266,6435,614], +[1,2343,15787], +[2,1861,7253], +[0,15789,15790,15791,2523], +"timers-ext", +[0,1006,19877,12396,23288,23289,23302,23308,23292,23310,23312,23314,3746,4233,4309,23254,23258], +[0,4874,15128,1414,23316,12412,2007,2588,3137,12127,3140,12133,1894,3985,3998,4505,91,4555,1906], +[0,1444,5286,6742,23267,2587,1936,5284,1219,9102,3958,353,23266,6435,614], +"medikoo", +[2,1884,15792], +"list-", +"updated", +"list-updated", +[2,10617,15796], +[3,2289,14], +"-cc-changelog", +[2,4024,15799], +[2,15798,15800], +"prettier-e", +"lastic", +[2,15802,15803], +"tad", +[1,2343,15807], +[0,15808,15809,15810,2487], +[0,12396,9315,23322,23288,23292,23253,3140,3746,4233,4292,23258], +[0,4874,1414,2588,1894,3985,3998,4505,91,1906], +[0,23267,2587,1936,4141,1646,23324,23266,6435,614], +[1,2343,15812], +[0,15816,15817,15818,2537], +"toggle", +"show", +"hide", +[0,1006,12396,9315,23288,23289,23308,23292,23310,23312,23314,3746,4233,4309,23254,15632], +[0,4874,4880,4883,1414,668,12415,2588,1894,89,3824,3985,3998,23330,4505,91,1906], +[0,23267,2587,1936,3698,89,23332,3709,23266,6435,614,188], +[1,2343,15820], +[0,15821,0,15823,2537], +[0,12396], +"varlock", +[0,1563,2587,23267,1936,4141,1871,1646,2585,23266,614,6435], +[1,2343,15825], +[0,15827,15809,15828,2537], +"string-length", +[0,12396,9315,12421,23344], +[0,23266,2587,23267,614,6435,1936,1871,1563,2585,9547], +[1,2343,15830], +[0,15831,15832,15834,2537], +[0,12396,23288,23352,3746,4233], +[0,4874,15128,1414,23316,23356,12412,1894,3985,3998,23359,4481,4505,91,1906], +"expresso", +[0,965,14839,23267,2587,1936,23362,3958,23266,6435,614,23361,4607], +[1,2343,15836], +[0,15837,15839,2514,4139], +[0,4647,2036], +"fast-text-table", +[0,3421,2899,1177,4039,4342,1948], +"256-colors", +[2,1105,15840], +"git-re", +"git-rev", +"growl", +[1,2343,15848], +"tables", +"tabular", +[0,0,15849,15850,2523], +[0,15990,2228,2240,2314,14352,2759,2835,1209,14529,3774,3954,23375,4019,23376], +[0,1871,18089,18944,1936,10368,15103,3656], +[1,2343,15852], +[0,15855,15856,2514,2537], +[2,8737,4522], +[2,2968,14994], +[0,3263], +[0,4167,4384], +[1,2343,15858], +[0,0,0,15859,2537], +[0,2026,1965,11988,5995,23389,23391,23397,23400,23404,23407,23410,23411,23412,23413,23414,23415,23416,23417], +[1,2343,15861], +[0,0,15863,2514,34352], +"truncate", +[0,4361,4039,1894,1420,11518,53,23423,5874], +"ellipsis", +[1,2343,15866], +[0,0,15867,2514,2443], +[0,94,87,14128,14041,1175,48,53,1178,1193,1745,1177,1935,1938,1939,1192,2774], +[1,2343,15870], +"cardinal", +[0,15881,15885,15888,2523], +"hyperlinker", +[2,689,13008], +[2,2055,2873], +"object-t", +"reeify", +[2,15874,15875], +[2,689,7152], +"natural-", +"orderby", +[2,15878,15879], +[0,23432,1362,27433,15838,23434,23436,23438,23439,23440,23441,2822,23444,3170,19445,3220,3222,3416,3527,15245,4294,4435,23445,23446], +"-prompt", +[2,6875,15882], +[3,4351,9], +[0,23450,13414,4856,8780,7637,8778,6503,4874,21623,6513,23448,1414,1429,1448,6323,1177,23453,23456,2675,2990,2899,4193,4474,91], +"hyperlinks", +[2,15884,15886], +[0,5351,5353,6354,5130,2596], +[3,6519,10], +"ip-ansi", +[2,15889,15890], +"nsi-styles", +[2,9165,15892], +[3,9359,12], +[1,2343,15898], +"ct-stack", +[2,15894,15896], +[0,15899,15900,2514,4139], +[0,23462], +[0,1362,1389,1391,1537,1177,2228,2236,2239,2277,2281,2283,2291,23466,2307,2036,2276,4085,23469,4171,4193,16584,23471,4535], +[1,2343,15902], +[0,0,15912,15913,2537], +"@yarnpkg/core", +"@yarnpkg/", +"fslib", +[2,15904,15905], +[3,1920,15], +"rca", +[2,15907,15908], +"multi-input", +[2,4049,15910], +[0,1623,1700,2070,19745,2832,2899,1177,1209,4042,4170,4072,1462,1481,1525,2036,91,2665,23482,6503,18059,23483,13388,23476,23479,1954,8850,23480,1938,1958,1903,811,1011,816,1009], +[0,5342,5341], +[1,2343,15915], +[0,15916,0,2514,2537], +[0,3263,1326], +"good-listener", +"tiny-emitter", +[1,2343,15920], +[0,6263,0,15922,2523], +"cut", +[0,2602,7426], +[1,2343,15924], +[0,0,15925,15927,2537], +[0,1501,620], +"is64bit", +[0,6731], +"paste", +"copy-paste", +"pasteboard", +"pbcopy", +"xclip", +"xsel", +[1,2343,15935], +[0,15936,15937,15938,2523], +[0,3368,3188], +[0,4535,2832,23509,4039], +[0,3257,1283], +[1,2343,15940], +[0,15941,15942,10570,2399], +[0,3847], +[0,53,61,87,90,94,1429,1596,1603,1177,2899,3421,3697,3744,89,4039,4042,4045,4055,4067,4073], +[1,2343,15944], +[0,15945,15946,2514,4139], +[0,1437,4135,2151,1525,23520,3762,4232], +[0,1192,1177,4039,3363,4468,4474,4508,91,5087,4874,5245,5254,4864,1939,1938,13418,1011,23523,1009], +[1,2343,15948], +[0,0,15949,15950,2523], +[0,23528,23531,4865,13204,4874,29891,7677,1138,14736,30932,668,1177,2070,2832,3244,3377,30794,20085,1894,23535,91,4548,23538,1984,23539,4729,4763], +[0,2611,5122,1896,27,13527,5130,38,23542,23543,23544,23545,21444,17218,13573,6710], +[2,976,2942], +[1,2343,15954], +[2,9753,6072], +[0,15957,6538,15958,2487], +"progress bar", +"@exodus/bytes", +[0,3084], +[0,3358,2195,17977,17978], +[1,2343,15961], +[2,11941,5258], +[0,15963,13640,15965,2487], +"coro", +[0,1537,3188,4039,4135,4562,4707,23559], +"coroutine", +[0,23561,23562,23563,23564,3378], +[1,2343,15967], +[0,15968,15969,15970,2487], +[0,15487,2654], +[0,192,5467,19438,442,8862,811,816,10615,10817,23572,11085,23573,4874,17214,32818,7677,1177,1955,10964,1978,2203,2633,2675,17221,2832,2990,3401,3541,1894,23535,4042,4201,4474,91,4523,1984], +[0,2616,1936,965,57,2654,23578], +[1,2343,15972], +[0,0,15973,15974,34352], +[0,4874,1414,23276,2577,2584,1894,3985,3998,4505,91,4548,1906], +[0,23584,11512,1936,1213,3205,10381,12616,7102], +[1,2343,15976], +[0,15977,15978,15979,2537], +[0,15956], +[0,23591,1177,2203], +[0,9254,1936], +"ignore-walk", +[1,2343,15982], +[0,0,15983,15986,2523], +[0,192,5467,5366,23597,5087,4874,1317,18089,1177,1895,1938,23598,2591,2675,1894,4257,4468,4483,4494,91,4523], +"teeny-request", +"urlgrey", +[0,1936,23601,23603,23605,18089,23606,23608], +[1,2343,15989], +[2,10988,4504], +[0,0,15991,15992,2443], +"codecov.io", +[0,23613,1414,1596,4042,4533], +[0,1936,1867,10368,23615,15103,18089], +[1,2343,15994], +[0,15995,16007,16010,2523], +[0,3493,2635], +"mirror/lint", +[2,13183,15996], +[3,15997,12], +[2,15998,6624], +[2,15998,6649], +[3,16000,13], +[2,16001,10190], +[2,15998,8891], +[3,15997,13], +[2,16004,15675], +[2,15998,15774], +[0,1700,1192,2675,3144,1622,1177,1701,2924,1854,3692,1894,1610,48,1193,2036,53,2990,3400,23621,192,4257,23623,87,2651,1938,1895,5467,16405], +"buildhelper", +[2,15998,16008], +[0,2924,1936,1194], +[1,2343,16012], +[0,16013,16014,16016,2523], +[0,15320,1462,1525,2591,15436,23631,4535], +[0,2228,2236,2281,2291,3524,2907], +[2,10697,1592], +[0,200,15215,23634,1623,1936,2265,5284,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,23637,2280], +[1,2343,16018], +[0,16019,16020,16023,2537], +[0,15320,1462,1525,18089,15436,23631,4072], +[0,192,11893,811,8850,816,10615,23643,23648,1177,1903,2675,2742,1192,2780,2990,4042,23652,1983], +"jison", +[2,5249,23751], +[0,200,15215,23634,1623,1936,2265,5284,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,4072,23637,2280], +[1,2343,16025], +[0,16026,16027,16028,34352], +[0,3524], +[0,4389,4255,4387,3524], +[0,1936,2636,3520,3521,6710], +[1,2343,16030], +[0,16031,16032,16033,2537], +[0,15487,2616,3872,4309], +[0,192,5467,19438,19181,442,811,816,10615,10817,23572,5366,4874,4880,4883,17214,32818,7677,1317,1177,1955,10964,1978,2203,2675,2990,3541,3698,23535,89,3824,4042,4201,4474,91,4523,1984], +[0,2639,1936,89,57,965], +[1,2343,16035], +[0,0,16036,16037,2523], +[0,1166,1448,1906], +[0,1936,12075,2640,11513,3392,7102,12616,23670,23674], +[1,2343,16039], +[0,0,16040,16042,2399], +[0,2675,2742,2297,4484,1177,4039,4042,1894,1596,3536,91,3400,2766,3720,2898,23689,2886,23687,19965,13207,2923,23681,23683,2881,23679,6059,23686], +"wcwidth", +[0,12197,23691,1424,1936,965,158,13814,8221], +[1,2343,16044], +[0,16045,0,16046,2523], +[0,23696,1699,1754,2654,23699], +[0,1936,202,2585,18641,19096,15253], +[1,2343,16048], +[0,16049,0,16050,2523], +[0,23708,23709,1091,2070,2929,3183,3742,4135], +[0,1936,671,1155,2650], +[1,2343,16052], +[0,16054,16055,16058,34352], +"array-back", +[0,23736,2635,1209,3716,4388], +[0,192,5467,4874,1610,1622,1628,1652,21468,1177,17589,2629,2675,1192,2990,3177,3400,1894,3754,23738,3786,4039,4257,4307,91,2924,4677,23742], +"find-replace", +"typical", +[0,2924,1932,1936,2651], +[1,2343,16060], +[0,16061,16062,16063,2537], +[0,16022,1525,1595,3692], +[0,442,19344,23339,6503,4874,34737,1414,1637,1177,23753,1938,32525,27790,2022,2203,2899,3561,3759,23631,4039,23754,4361,4072,91,4523,22946], +[0,3692,23757,1936,23760,2632], +[2,1437,2324], +"table-", +"table-layout", +[1,2343,16068], +[0,16069,16070,16071,2523], +[0,18087,15487,15488,18089], +[0,442,4874,7677,1177,1895,1953,1982,2203,1894,4483,91,4523,1984], +[0,1936,57,7046,6523,965,23767,6084,16179], +[1,2343,16073], +[0,16074,16075,16076,2487], +[0,1704,2713,20099,4266,23775], +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421], +[0,27,1851], +"cached", +"cachedir", +"find-n", +"ode-", +"ode-modules", +[2,16079,16081], +"is-u", +[1,2343,16086], +"is-utf8", +[0,16093,16097,2514,2399], +[3,549,23], +[2,16087,1172], +[2,12772,8532], +[2,1652,16089], +"-reporters", +[2,11086,16091], +[0,2017,23783,2131], +[3,1566,12], +" changelog", +[2,16094,16095], +[0,4729,3421,23785,1149,2899,4135,2025,4218,1537,1159,4220], +[1,2343,16099], +[0,16100,16101,16102,2523], +[0,23791,1676], +[0,5245,5087,4874,1151,1192,4468,91,2658,2190], +[0,27,2658,6652,4575], +[1,2343,16104], +[0,16105,16106,16118,2537], +[0,10406,1676,2659,2743,2747,3170], +[0,192,5467,442,5245,5601,6494,19386,5087,8778,4874,9240,9241,1364,1177,1895,1955,2026,2182,2203,2675,1192,2990,23800,3445,5561,20085,1894,4342,4468,91,4523,4729], +"es2015-tag", +"es6-tag", +"heredoc", +"indents", +"literal", +"multiline", +"oneline", +"single", +"singleline", +"strings", +"tagged", +[0,17179,2658,2663,27,2671,1544,2026,2078,23802,23803,1387,2323,2256,4699,4729,1594], +[1,2343,16120], +[0,16121,16122,16124,2537], +[0,2591,3171,1437,23808,23809,3456,3183,4566,1304,2659,3560,23811,2623], +[0,23813,4384,1177,2026,705,23816], +"observe", +[0,200,1523,2947,27,2671,2665,23818,36], +[1,2343,16126], +[0,0,16127,16129,2537], +[0,4493,2675,2899,1177,4170,4474,1894,442,1529,91,4874,2990,19193,6503,16954,192,4257,19335,4523,1951,1895,1955,5467], +"on-headers", +[0,27,1544,4967,6622,2026], +"compressible", +[1,2343,16132], +[0,0,16133,16134,4139], +[0,4864,5087,23829,1009,1011,1177,1883,1938,2151,1192,3117,4468,4473,4474,91], +[0,202,27,18413,23831,23832,6622,5281], +[1,2343,16137], +"buffer-from", +[0,0,0,16138,2537], +[0,2671,23837], +[1,2343,16140], +[0,16143,16147,16153,2537], +"-command", +[2,1614,16141], +[0,1676,23791], +"@hirez_io/observer-spy", +"@swc/jest", +[3,7749,12], +[0,1192,2658,4468,2190,91,5087,4874,1154,5245,1151,23843], +"-quote", +[2,16146,16148], +[2,1596,4845], +"ctrlc-wrapper", +[2,32524,2994], +[0,2671,2658,6652,4575], +"instance", +[1,2343,16156], +[0,0,0,16157,2399], +[0,3358,582,3697], +[1,2343,16161], +"bash", +"sh", +[0,16162,9264,16163,2443], +[0,16136,15019,4431], +[0,3101,27,4714,705,3038,3689,10074,6865,6704,21360], +[1,2343,16165], +[0,0,16169,16170,2523], +"cson", +"hjson", +"x2js", +[0,6061,21120,6063,1570,1177,1895,23860,1894,4042,4131,4389], +[0,23862,590,1623,1420], +"fig", +"node-config", +[1,2343,16175], +"config-node", +[0,0,10435,16176,2523], +[0,23868,23869,23870,4545,23872,23874,23875,23876,3547,23877,23878,23879,23881,23883], +[1,2343,16178], +[0,16180,16182,16183,2537], +"atom", +[0,23888,1676,23891,23894,23897,3257], +"atomically", +[0,1149,1575,1177,1895,1903,1938,1954,1955,1958,1970,2026,2675,2990,2899,3421,1894,4170,4193,4745,4342], +[0,1283,2679,6728], +"xdg-basedir", +[1,2343,16187], +"prefer", +[0,6263,16190,16191,2523], +"preferences", +"persist", +[0,27386,53,5749,5241,83,85,87,90,94,5583,811,816,10615,4874,1009,1011,7677,1290,1596,1597,1177,1881,1895,1915,1938,23909,2675,23913,23915,23917,23921,23926,2990,1894,4039,4042,4193,91,1984], +[0,2681,23932,2679,8930,23933,6728,23934,23936], +[1,2343,16193], +[0,0,16194,16195,2537], +[0,442,10817,6061,6063,1009,1011,1177,1895,1955,2203,1894,4042,4057,4131,91], +[0,2681,23942,5995,1932], +"rack", +[1,2343,16198], +[0,16199,16200,16201,2537], +[0,23948], +[0,3421,1149,23950,8431,2899,23952,1177,4135,705,27387,91,4874,2024,29197,5517,19344,7844], +[0,8431,6270,8426,8425], +"flash", +[1,2343,16204], +[0,16205,16206,16207,2523], +[0,23960], +[0,1175,1193,1267,1272,1596,1177,1881,1938,2774], +[0,2658,23964,13445,1192,3212], +[1,2343,16209], +[0,0,16210,16212,2537], +[0,48,53,87,1009,1676,1177,23971,1938,3188,23974,4039,23975,4384,4449,4474,91], +"kruptein", +[0,2687,23977,16774,3410,3624,10057,7131,6961,1108,21541,2070,23980,23982], +[1,2343,16214], +[0,0,16215,16216,2487], +[0,1414,2070,4493,4474,4508,91,4865,4874,11976], +[0,158,4202,23989,23992,4289,18081,12350,20650,20733,20639,20709,23993,20651,20680,21881,20752,18048,20653,8221,23994,23995,12349], +[1,2343,16218], +[0,16219,16220,16221,2523], +[0,24003,18525,4207,2205,24004,2096,6639,29721,20624,22246], +[0,1906,1166,1700,4400,18051,24006,18047], +[0,3178,15215,158,11806,21881,20637,18048,20639,8221], +[1,2343,16223], +[0,16224,16225,16226,2523], +[0,24003,2020,24012,6639,24013,20624], +[0,1414,1906,1166,91,4874], +[0,15215,158,24016,3178,6707,18048,24017], +[1,2343,16228], +[0,16229,0,16236,2399], +[0,24022,3923], +"defu", +"nicode-supported", +[2,16083,16231], +"sentence", +"sentencer", +"sisteransi", +[0,2695,18641,1823,24024,5576], +"reporter", +"elegant", +"clack", +"stacktrace", +[1,2343,16242], +[0,0,16243,16244,34352], +[0,53,4874,7677,1596,24029,24030,2126,2675,2700,24032,1209,3028,1894,3720,3875,4039,24033,4131,4493,33863,91,1983,1984], +[0,2700,24036,24038], +"arc-templates", +"brac", +"ket-template", +[2,16246,16247], +"dust", +"js-helpers", +[2,16249,16250], +"dustjs-", +[1,2343,16254], +[0,0,16258,16266,4139], +"linkedin", +[2,16252,16255], +"eco", +[0,24045,5087,1596,1192,4039,4468,4487,91], +"haml-coffee", +"hamlet", +"htmling", +"jazz", +"jqtpl", +"just", +"liquid-node", +[0,24047], +"liquor", +"mote", +"plates", +"qejs", +"ractive", +"slm", +[2,4371,2229], +"teacup", +"tinyliquid", +"toffee", +"twig", +"twing", +"vash", +"velocityjs", +"walrus", +"whiskers", +[1,2343,16285], +"engine", +[0,0,0,16286,2537], +[0,2700,7007,7189,2382,6957,6564,6910,7282,6769,6917], +[1,2343,16288], +[0,9670,16289,16291,2523], +[0,1166,2592,4481,1906], +"rfc6266", +[0,3209,2325,15759,15760,1237,2145,24057], +[1,2343,16293], +[0,16294,16295,16297,2487], +[0,3537,13780], +[0,1166,16499,1700,2020,1906], +"rfc7231", +[0,1204,2703,3209,814,2202,15525,16186,200], +[1,2343,16299], +[0,16300,16301,16302,2523], +[0,24069,24073,24075,24077,24078,24080,24081], +[0,4874,9241,1177,24085,1894,91], +[0,13527,36,24088,24089,1965,20986,24090,5592,17829,24091,11100,24092,4030,7096,5122,5130,38,7433,24093,7223,6599,27,2671,4699,14609,24095,1896,5995,12660], +[1,2343,16304], +[0,0,8134,16305,2399], +[0,8958,1871,2966,14903,3924,2585,1794,7067], +[3,1567,23], +[2,16306,1098], +[3,1570,25], +"@conventional-changelog/git-client", +[2,16308,23], +[2,16306,1177], +[1,2343,16313], +[0,16314,16315,16317,4139], +[0,23184,1366,23187,2607,2812,3084], +[0,1501,2556,620], +"tom", +[0,2090,7204,1852,2556,1932], +[1,2343,16319], +[0,16320,16324,16325,2487], +[0,1639,24114,6330], +[2,10832,1194], +[2,16306,16321], +[2,4402,4202], +[0,24118,24117], +[0,2711,6681,5130,10772,24120,1936,24122,36,965,1388,4042,23361], +[1,2343,16327], +[0,0,16328,16331,2537], +[0,91,1984], +"add-stream", +"tempfile", +[0,2712,24128,24129,3547,23877,23870,4545,24130,10915,23872,23878,23874,23879,23881,23883,23875], +[1,2343,16333], +[0,0,11686,16334,2399], +[0,24136,1227,24137,24138,24140,2713,1388,1389], +[1,2343,16336], +[0,0,6538,2514,2523], +"compare-func", +[1,2343,16339], +[0,16343,16344,16345,2523], +"commits.org", +[2,16094,16340], +"preset", +[0,24151,1107,1110,24152,1437,1471,1477,1486,13763,16485,2709,20044,24153,14676,4116,4174,4208,13781,4290,16323,4507,9731,4726,4729,24154], +[0,15288,13789,826,24156,4874,4880,24157,34148,24162,6513,24164,9241,24165,1166,1371,1702,24166,1959,1961,3242,3339,3479,1894,89,24169,4193,4294,4474,91,1906], +[0,89,200,1219,8634,4963,6876,3698,3875,24171,8924,1512,2585], +[1,2343,16350], +"inline-s", +[3,5588,9], +[2,16347,16348], +[0,0,16351,16352,2443], +[0,192,5467,19438,19181,442,811,816,10615,1623,1177,1955,10964,2203,2675,1192,2990,3400,1894,23535,4042], +[0,2718,24177,590,57,1623], +[1,2343,16354], +[0,0,0,16355,2487], +[0,24182,24183,18496,6574,7242,21779,202,200], +"top-sites", +[1,2343,16359], +"cookies", +[0,16360,16361,6151,2537], +[0,31874,546,8998,8605,8612,24188,4094], +[0,8608,91], +[1,2343,16363], +[0,16364,16365,16366,2443], +[0,1107,2089,3527,24188,4094], +[0,2126,2163,2720], +[0,8618,8619,8620,1299,200,1523,6876,1836,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,2184,8634,7009,6621,181,8635,4758,8636], +[1,2343,16368], +[0,16369,0,16370,4139], +[0,24202,1512], +[0,24204,202,9143,13392], +[1,2343,16372], +[0,0,16373,16374,2487], +[0,1734,2899,24209,4072], +[0,5260,3209,10906,24211,1388,24213,1808,1161], +"sign", +"unsign", +[1,2343,16378], +[0,0,16379,16380,4139], +[0,1177,1889,1954,2022,2822,2899,3421,20314,3932,3985,24220,4167], +[0,1507,24223,1509,3595,5194,676,1781,2856,1219,89,24224,4452,4799,91,6523,4745,17307], +"-selection", +[2,15813,16381], +[1,2343,16386], +"@brettz9/node-static", +"-standa", +[0,0,16390,16391,4139], +"lone-jar", +[2,16385,16387], +[2,13131,16388], +[0,1149,1173,1178,1240,24231,24234,1245,1257,1267,24235,1280,24237,24241,24245,24247,24249,24251,24254,24257,24259,24262,24264,24266,24269,24272,1474,1498,1177,24273,2099,2070,2228,2240,2247,2258,24274,24275,2272,3188,3435,4039,4042,4045,4055,24278,13674,4069,4077,22031,4151,4652], +[0,2728,2679,23932,24282,6422], +[1,2343,16393], +[0,0,16394,16395,2537], +[0,19,21,24,26,32,5241,92,8648,840,968,974,4874,4880,4883,1009,1011,11016,33975,1198,1622,668,1177,1915,1938,1939,1959,1961,2075,24289,10697,24291,2228,2239,2240,2247,2256,2263,2283,24295,2308,2314,2665,1192,2780,2814,3003,3541,1894,10622,89,3824,2278,4164,3709,4436,4474,91,1983,26744,188,13151,4769], +[0,24298,24299,24302,7285,7310,5131,6847,7210,5399,5284,1932,1623,1936,7020,6983,89,188,1098,3709,4627,91], +[2,4865,2199], +"rmalize-path", +[2,10409,16397], +"rialize-javascript", +[2,5252,16399], +"@webpack-c", +"ontr", +"ib/eslint-config-webpack", +[2,16402,16403], +[2,16401,16404], +[1,2343,16408], +"is-gzip", +[0,16409,16411,16412,2523], +[0,3082], +"transfer", +[0,1389,2126,4384], +[0,1973,2731], +[1,2343,16414], +[0,16416,16417,16418,2487], +"noms", +[0,16579,16585,23711], +[0,4874,7677,1177,1894,3951,4039,4042,4469,4484,91,1984], +[0,14428,24316,14416,24319,24320,5284,202,91], +[1,2343,16420], +[0,16422,16426,16427,2523], +"qr", +[0,4390,1687,24346,3445,3348,1437,1676,4484,1209,4135,4238,6331,4431,24347,4339,24345,24332,24337,22651,24349,24335,24340,24327,24338,24339,24344,24343,24329], +"simple qr", +"npm qr JavaScript", +"js qr code", +[0,1192,4039,4487,4468,2774,13214,4227,91,17577,5087,4874,24354,7819,2990,5245,4870,5254,24358,24356,18435,24360,24352], +[0,2733,24362,24363,5131,1896,24364,1591,970,3525], +[1,2343,16429], +[0,16433,16434,16436,2523], +[3,1590,15], +"sample", +[2,16430,16431], +[0,8641], +[0,8648,4864,5087,4874,24370,2151,1192,2774,27442,3401,1894,3758,4039,4135,4146,4361,4494,91], +[2,16423,1501], +[0,24373,2733,1017,8221,5131,20523,4627,24374,5027,12295], +[1,2343,16438], +[0,16439,16440,16441,2537], +[0,24379,24382,1676,24383,3032,24386,24389,24391,24393], +[0,24397,6061,16607,6063,4856,9417,5245,24398,24400,6503,4874,24403,6513,1009,1011,1429,1431,1177,1895,2899,3421,1894,4131,4153,4193,4474,4481,4508,91,3348], +[0,1552,24093,24406,24408], +"insight", +"-lib", +"cordova-lib", +"cordova-", +[2,16445,10896], +"cordova-c", +"reate", +[2,16447,16448], +"loud-rejection", +[1,2343,16455], +"@cor", +"dova/eslint-config", +[2,16452,16453], +[0,0,16456,2514,4139], +[0,2899,1177], +[1,2343,16458], +[0,16459,16463,2514,2523], +[0,24416,8431,24419], +"4", +"ES2024", +[2,6796,16460], +[0,24421,2080,2292,4389], +[1,2343,16465], +[0,0,16466,16467,2537], +[0,1158,3421,4389,1177,14741,2708,4103,13614,15059], +[0,614,998,1973], +[1,2343,16469], +[0,16470,16471,9636,34352], +[0,1458], +[0,1470,4255], +[1,2343,16475], +"env-paths", +"parse-json", +[0,16486,16487,16488,2537], +"arse-", +"arse-json", +[2,5088,16477], +[3,7677,17], +[2,16479,2759], +"davidtheclark-node", +[2,1884,16481], +[3,16481,13], +[2,3996,16483], +"es-toolkit", +[0,24437], +[0,2398,2899], +[0,16159,15643,4354,2978,7256,24440,2070,21543,24441,2741,3529,6421,13017,1108,6920,1871,1973], +[1,2343,16490], +[0,16493,16494,16495,2443], +"lcov-parse", +"log-driver", +[0,24446,17450], +[0,1166,16499,1700,2020,3093,4481,1906], +[0,2202,3383,24449,1237,1161,24450,3378,4749,2741,4354,13735,2703,24451,200,20052,17180], +[1,2343,16497], +[0,0,8134,16498,2487], +[0,3048,2741,4354,1973,998,19096,24456,7523,2869], +"cpy", +[1,2343,16501], +[0,0,16505,16506,34352], +"cp", +[3,12419,11], +"contents", +[0,1429,1999,2398,2899,3198,4042], +[0,4354,2741,24462,2757,5284,24463,20273,3048,19096,998,7031,6692], +[1,2343,16508], +[0,0,16510,16514,2523], +"hpagent", +[0,2899,3954], +"http2-wrapper", +"seenreq", +"tslog", +[0,1936,24374,24470,11608], +"@types/got", +[1,2343,16519], +"spider", +"gzip", +[0,0,16520,16521,2523], +[0,4874,1166,4400,4481,1906], +[0,3101,998,7046,7089,7017,6704,353,4354,13735,2741], +[1,2343,16525], +"crc16ccitt", +"crc16", +[0,16527,16529,16535,2523], +"crc16kermit", +[0,24488], +"crc16modbus", +[0,1166,24491,4481,1906], +"crc16xmodem", +"crc1", +"crc24", +"crc81wire", +"crc8", +[0,4354,24493,6574,24494,6667,13735,16159,3729,7201,7009,2741], +"crc8dvbs2", +"crcjam", +[1,2343,16539], +[0,0,9264,16540,2443], +[0,1388,2756,4552], +[1,2343,16545], +"cipher-base", +"ripemd160", +"sha.js", +[0,0,16546,16547,2443], +[0,1999,2398,2899,4042], +[0,4354,2741,24462,2757,24463,20273,24504,970,3048,998,7031,6692], +[1,2343,16549], +[0,16550,16551,2514,2523], +[0,3310,4705], +[0,1429,2272,24512,2899,3297], +[1,2343,16553], +[0,16554,16555,16556,2537], +[0,2070,3368,3441,1149,4707,23432,3188,2003,2822,814,4720,1875,2036,4351], +[0,2272,4039,2276,1596,4019], +[0,4504,24520,24521,24525], +"async-t", +"-tree", +"raverse-tree", +[2,16557,16559], +"css-u", +"rl-parser", +[2,16561,16562], +"uri-to-", +[2,16564,1398], +[2,14678,16565], +[1,2343,16577], +"group-args", +"inline-", +[2,16569,1604], +"oust", +"penthouse", +[3,3591,15], +[3,3611,14], +"inliner", +[2,16574,16575], +[0,16582,11580,16583,2537], +"postcss-url", +"@inversifyjs/common", +"newline", +[2,3370,16580], +[0,2152,3348,18545], +[0,2760], +"stream-array", +[2,23712,29231], +[1,2343,16588], +"optimization", +[0,16589,16590,16591,2523], +[0,1156,1699,1817,24536,3070,3559,4443,24537], +[0,24539,1173,1175,1191,1195,1201,1220,1230,24541,1245,1255,18571,1264,1279,1282,1429,24542,1584,1610,1628,1177,1988,2054,2092,2148,2323,2332,2361,2450,2494,2629,2651,2297,2881,2886,2900,18260,2921,2923,2925,695,2969,21082,2899,4193,4196,4307,4487,91,4537,4027,188,4632,24545,4634,4639,4640,4645,2924,4681,4689], +[0,2761,188,6284,4627,4963,181,5130], +[1,2343,16594], +"@fast", +[0,16613,6161,16614,2537], +"-check/jest", +[2,16593,16595], +"@insurgent/commitlint-config", +[3,16597,13], +"nvent", +"ional-changelog-preset", +[2,16599,16600], +[2,16598,16601], +[3,6061,19], +"ommit", +"-analyzer", +[2,16604,16605], +[2,16603,16606], +[2,6062,3378], +"-generator", +[2,11155,16609], +[2,6019,16610], +[2,6062,16611], +[0,548], +[0,7233,57,7058,5675,7210,200,1523,3924,1644,7119], +"node cron", +[1,2343,16620], +"node-cron", +"schedule", +"cronjob", +[0,16622,16623,2514,2537], +"cron job", +[0,24560,1462,1525,24562,24563,3188,24564,4535,24566,5056], +[0,24570,24571,1596,2026,24574,2034,24576,24577,24581,24584,24587,24591,24592,24593,24594,24596,24598,24599,3127,3456,24600,4039,24601,24602], +[1,2343,16625], +[0,16627,16628,16632,2523], +"tz", +[0,1149,24607,3527], +[0,442,1177,10751,2203,2899,3760], +"timer", +"tab", +"crontab", +[0,6147,200,7048,24610], +[1,2343,16634], +[0,16635,16648,16651,2537], +[0,24617], +"@prantlf/jsonlint", +"@prettier/plugin-xml", +"@stryker-mutator/core", +[3,16638,17], +[2,3192,8791], +[2,16639,16640], +[3,15909,16], +"ray-func", +[2,16642,16643], +[3,13097,17], +"unsanitized", +[2,16645,16646], +[0,5583,816,6373,10615,11301,24621,24624,1462,1610,24625,2675,2814,16830,2990,3170,24627,4042,8849,20983], +"metalint", +"yaml-lint", +[0,24631,158,12083,24633,24634,20634], +[1,2343,16653], +[0,16654,16655,16659,2487], +[0,2070,2766,23576], +[0,1177,24287], +[2,1601,7179], +[3,3606,9], +[2,16657,2408], +[0,1973,5472,2765,6969,5982], +"zoom", +"rotate", +"scale", +"cropper", +"cropper.js", +[1,2343,16667], +[2,29236,594], +[0,0,16668,16659,2523], +[0,19181,442,1137,24645,1797,1177,1924,2070,2203,2832,1894,2278], +[1,2343,16670], +[0,16671,0,16672,2523], +[0,2164,3188,24653,4019,4545,1509,24652,24651], +[0,5472,5982], +"ironment", +[2,1610,16673], +" variable", +[2,6639,16675], +[1,2343,16678], +[0,16679,0,6183,2537], +[0,551,554,2704,2774], +[1,2343,16681], +[0,16682,16683,16684,2487], +[0,24665,24666], +[0,14671,48,53,61,87,192,22559,1193,24668,1596,2675,1192,1894], +[0,3212,1192,11944,1795,1424,1973,2275], +[1,2343,16686], +[0,16689,16695,6183,2487], +"path-key", +[2,6987,16141], +[0,551,8762,554,1437,29680,2704,8734,2798,8747,4747], +[3,10688,14], +"oxy", +[2,16690,16691], +[3,15793,15], +[2,16693,16691], +[0,4892], +"spawnSync", +[2,1611,12344], +[1,2343,16700], +"path-ext", +[0,16702,16703,2514,2487], +"execute", +[0,16729,13002,1437,3717], +[0,8776], +[1,2343,16705], +[0,16706,16703,2514,2523], +[0,24690,16738,13204,4874,2832], +[1,2343,16708], +[0,16714,16715,2514,2537], +"cipher", +[2,13888,16709], +[3,1391,12], +"ign", +[2,16711,16712], +[0,24690,24694,554,11944,2798,2832], +[0,5087,13204,4874,2675,1192,3188,1894,3720,4039,4468,91], +"create-ecdh", +[1,2343,16727], +"mac", +"create-hmac", +"ie-hellman", +[2,1687,16720], +"pbkdf2", +"publi", +"c-encrypt", +[2,16723,16724], +"randomfill", +[0,16730,16731,2514,34352], +[2,6426,3779], +"@jest/diff-sequences", +[0,24690,24694,554,4874,11944,2798,8747], +[0,8776,1497], +[1,2343,16752], +"Hash", +"MD5", +"SHA1", +"SHA-1", +"SHA256", +[2,24690,20072], +"SHA-256", +"RC4", +"Rabbit", +"AES", +"DES", +"PBKDF2", +"HMAC", +"OFB", +"CFB", +"CTR", +"CBC", +"Base64", +"Base64url", +[0,16753,16754,16755,2523], +[0,2777], +[0,107,19438,19181,442,20076,5087,1009,1011,1177,1895,1915,1938,1939,1955,2203,2675,1192,24713,2802,2990,1894,4468,12206,91], +[0,1192,24715,2051,24717,1973,5472,5710], +[1,2343,16760], +"roupon", +[2,1887,16757], +"nlm", +[0,16761,16762,16763,2537], +[0,2151,3445], +[0,53,24723,841,968,972,974,24725,5087,24727,4874,24729,4880,4883,14552,1114,1193,1195,1216,1270,1324,1393,1420,1426,1582,1628,1630,1652,1759,1763,1869,1177,1898,24732,2054,2092,2151,2651,2686,1192,2797,2802,24733,3177,3376,3561,3605,3618,3647,3672,3742,24734,89,3803,3816,3824,3878,24737,814,4028,2278,4111,4135,4230,4307,4383,4409,91,4027,24739,2924,4676,4681,4686,4723], +[0,1192,1936,16237,11937,1932], +[1,2343,16776], +"@cspell/cspell-json-reporter", +[3,16765,15], +[2,16766,7170], +[2,16766,553], +"@cspell/", +[2,16769,15126], +"@cspell/url", +[2,1622,4304], +"cspell-", +"gitignore", +[2,16773,16774], +[0,16777,16784,2514,2537], +[0,3188,4294,3348,6523], +"cspell-glob", +"cspell-io", +"cspell-lib", +[2,2068,2851], +"entry-cache", +[2,2093,16782], +[0,1192,24746,4207], +"@types/fi", +"le-entry-cache", +[2,16785,16786], +[1,2343,16795], +"spell", +"checker", +"spelling", +" checker", +"spell checker", +[2,16791,16792], +[0,0,0,16796,2523], +[0,1192,4749,24753,24754], +[1,2343,16798], +[0,16800,16801,2514,2487], +[2,4229,814], +[0,1437,2215,8750,2796,2798,8747,4207,12578], +[0,8780,1002], +[1,2343,16803], +[0,16809,16810,2514,4139], +"@rspack/cli", +"@mdn/browser-compat-data", +[3,1200,15], +[2,16806,6437], +[2,812,16807], +[0,554,4874,1437,1458,2215,3530], +[0,8780,20374,1209], +"sorter", +[1,2343,16813], +[0,16814,16815,2514,2523], +[0,1107,1437,8758,8741,4207,15826,4294], +[0,48,53,87,92,442,11893,554,6061,6063,4874,1193,17217,1610,1177,1895,1915,32525,1939,1955,2203,1192,24713,1894,4039,4131,4135,91,4523], +[1,2343,16829], +"-verify", +[2,13729,16817], +[3,4828,15], +"itpick", +[2,16819,16820], +[3,15801,21], +"hangelog", +[2,16822,16823], +[2,8184,8166], +"version-", +[2,16826,13729], +"write-", +[0,16832,16833,2514,2487], +"json-file", +[2,16828,16830], +[0,4874,23247,2798,3159,4351], +[0,53,24781,9746,23262,2188,24779,24777], +[1,2343,16835], +[0,16836,16844,16845,2537], +[0,18635,24786,27788,27793,27795,27796,27797,27802,27813,27817,27820,27825,27832,27833,27834,27841,27844,27870,27878,27879,27880,27881,27883,27884,27887,24789,27888], +"icss-utils", +[3,3638,16], +[2,2055,5651], +[2,16838,16839], +[2,16838,1993], +[2,16838,6693], +"@hapi/address", +[0,27890,27893,27895,24793,8862,811,15460,816,10615,17214,1177,27898,3502,4042,4057,15277,23652,4483,91,27900,1984], +[0,158,24795,24799,18048,20637,21881,20650,24800,16662,12712], +[1,2343,16847], +[0,0,16848,2514,2487], +[0,53,5652,5226,56,15659,71,5704,5712,4851,5785,5874,5889,92,5230,101,104,16804,33146,10879,10883,15693,24807,31666,4874,7677,1082,24813,1446,1541,1556,16230,14856,1874,1177,1905,2007,984,2071,2744,3171,3189,3222,15726,3510,15450,3698,28423,1894,89,3824,3951,15728,15452,4409,26379,4469,91,1984,188,20040,4763], +[1,2343,16859], +"@parcel/css", +"@swc/css", +[3,9740,13], +[2,16852,1623], +"@types/csso", +"set-simple", +[2,11327,16855], +[2,1637,16856], +"csso", +[0,0,0,16861,2487], +"lightningcss", +[0,6105,24822,24827,6106,24829,24830,1936,2585,6038,24832,5284,91,24833,2808], +"minimize", +[3,1629,9], +[1,2343,16865], +[0,16866,16867,16869,2537], +[0,2808], +[0,19438,23339,842,966,972,974,4880,4883,1009,1011,1610,1628,1177,1895,1955,1959,1961,1985,2651,2832,1894,89,3824,4068,4307,7873,4474,4493,91,1984,2924,4677,4681], +"boolbase", +[0,89,2808,1936,2585,6038,24842,24829,24830,24843], +"nth-check", +[1,2343,16878], +[3,7804,9], +"olbase", +[2,16872,16873], +"cheerio-s", +"oupselect", +[2,16875,16876], +[0,16880,16881,16882,2537], +"sizzle", +[0,1437,24854,24849,24848,4145,6271,3029,3028,24853], +[0,3421,1149,2228,4193,3460,1596,2240,15929,2293,1532,24857,2283,2273,2277], +[0,24859,24860,24861,24862,24863,24864,24867,24868,24869,24872,24873,24874,24875,24876,24877,24878,24879,24880,24881,24882,24883,24884,24885,24888,24890,24892,24893,24894,24895,24854,24896,24897,24898,24899,24902,24904,24905,24906,24907,24908,24909,24912,24915,24917,24920,24922,24924,24927,24928,24929,24930,24931,24932,24933,24934,24935,24938,24940,24942,24943,24944,24945,24945,24946,24947,24948,24949,24950,24951,24952,24953,24955,24956,24959,24960,24961,24962,24963,24966,24967,24968,24969,24970,24972,24973,24974,24975,24976,24977,24978,12047,24979,24980,24981,24983,24985,24986,24988,24991,24992,24993,24994,24995,24995,24997,25000,25001,25002,4040,25003,25004,4144,4145,25006,25007,25008,25009,25012,25014,25010,25015,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25029,25030,25033], +[1,2343,16884], +[0,16886,16887,16888,2537], +"clap", +[0,16843,25038,8335,25039,25040,8353,26364], +[0,21662,8357,5500,8359,4874,91], +[0,2844,7020], +"json-to-ast", +[1,2343,16893], +"walker", +"lexer", +[0,0,0,16895,2523], +"jquery-test-runner", +[0,89,6649,10057,6355,25054,1542], +[1,2343,16899], +"features", +"web-features", +[0,0,0,16901,2399], +"stages", +[0,2814,5284,1388,6082], +[1,2343,16903], +[0,16904,16905,2514,2537], +[0,2814], +[0,2228,4039,2203,842,25088,25063,2291,25090,3006,25070,25074,16894,25076,2253,2260,23178], +[3,7014,10], +[1,2343,16908], +[0,0,16909,16910,2443], +[0,4874,2899,91], +[0,14357,17180], +[3,16857,15], +[2,16911,10441], +[1,2343,16917], +"advanced", +[2,16911,16914], +[2,16911,2994], +[0,16920,16921,16922,2537], +"optimise", +[2,5505,5218], +[0,25106,18420,2070,2821,3368], +[0,1109,1317,1505,2814,2272,3183,2899,3257,4019,4146,4294,2924,4677], +[0,14438,24856,25109], +"@jscpd/badge-reporter", +[1,2343,16925], +[0,0,16926,16927,2537], +[0,10615,1177,1903,1937,1948,2228,25074,2256,2277,23165,2283,17565,25060,1894,2907,3980,4042,11802,4060,4255], +[0,977,16358,1388,5808,10906,5576,2821,1389], +[2,27440,27441], +[1,2343,16930], +[0,16939,16940,16941,4139], +[3,4856,9], +"okidar", +[2,16931,16932], +[2,7632,16558], +[3,12842,11], +[2,16935,4467], +"urndown", +[2,7750,16937], +[0,1139], +[0,3421,1111,2899,1177,4042,4167,2193,1317,1505,2064,4073,811,816,19232], +[0,4745,57,1753,6713], +[1,2343,16943], +[0,16945,16946,16947,2399], +"csrf", +[0,58,12184,1525,1676,1696,2070,25125,27534,1997,25126], +[0,442,8719,842,8712,16145,4874,1527,1567,1652,1177,1895,1939,1955,1192,2829,22509,22511,1894,4039,91,4523], +[0,25135,1745], +[1,2343,16949], +[0,16951,16955,2514,2537], +"@acemir/cssom", +[0,1512,1525,2151,25141,16923,25147,25144,25148,25142,25146], +[2,812,1177], +"ould", +[2,7747,16953], +[0,5536,4864,4874,7677,3363,4474,4493,91,1984], +"tsv", +"generation", +[1,2343,16959], +[0,16960,16961,16962,2487], +[0,1437,1481,1525,25154,2004,2021,2070,2654,2822,25156,25160,15555,1209,3181,12118,15371,3741,25162,814,4296,4300,25163,25164,21956,25165,4736], +[0,1429,1596,6474,2272,2899,3954,4037,4193,4196,25168,25170,4734], +[0,19271,4525,671,9654,25172,2649], +[1,2343,16965], +"@bramus/specificity", +[0,16967,16968,16969,2537], +"coffeelint", +[0,58,25177,7639,1362,25178,1874,25179,21226,3105,3107,3127,3188,25181,4300,4545], +[0,1091,2323,2384,2449,3421], +[0,1745,5284], +[1,2343,16972], +"csv-spectrum", +[0,16973,0,16974,2537], +[0,16053,17786,25190,17788,1776,25193,17798], +[0,1776,5592,13325,8626,5284,1745], +[1,2343,16976], +[0,16977,0,16978,2523], +[0,16053,1519,1522,25203,1727,2826,4783,17798], +[0,1776,1783,5592,1179,5284,676,1745], +[1,2343,16980], +[0,16981,16982,16983,2523], +[0,16950,16928,16964,15956,1638,25211,25212,2623,2661,2674,2750,3493,25213,25215,4454,4548,25216,23201,15502,25217,19851], +[0,23591,1177,1937,1953,2203,2822,3181,2899,25221,3401,3456,3549,4135,4153,4441,27602,25224], +[0,965,1936,7102,12616], +"csv parser", +[1,2343,16987], +"parse csv", +[0,16988,16992,16983,2523], +[0,25231,25232,1638,2654,25233,3493,705,19851,4738], +"csv to json", +"csv convert", +"tojson", +[0,1389,1512,2665,2272,16112,2276,3560,3760,25238,4652], +" csv to json", +[2,6270,16993], +"csv-json", +[1,2343,16997], +[0,0,16998,16999,2537], +[0,1596,2228,2240,14352,2759,2899,3954,4019,25244], +[0,1398,1867,5284,1781,3053,3065,1871,1646,4990], +[2,1649,6451], +"cucumber-", +[2,17001,6466], +"duration", +[1,2343,17005], +[0,17012,17014,2514,4139], +"enerator", +"is-generator", +[3,4143,10], +[2,17008,1851], +"stack-chain", +[2,16240,1592], +[0,200,15014,2021,2654,1209,3181,4300], +"ansi-html", +[0,1149,1389,1566,13985,1596,2759,2292,3211,2276,3758,3954,25251,4193,15136,25253,25256], +[1,2343,17016], +[0,17017,17022,17024,2523], +[0,1437,3074,3545,15826,4425,22972], +[3,1976,18], +[2,17018,4414], +"riteway", +"updtr", +[0,2272], +"unique", +[0,2272,16237,4525,1671,671,2649,25264,16238,3721], +"unique id", +[1,2343,17027], +[0,17028,17029,17030,2537], +[0,25269,25272], +[0,6503,4874,1009,1011,1177,1886,1938,2899,3421,4474,91], +[0,1781,17420,1641,15253,6813,25276,25277,1644,57,2841,25279,200], +"ospath", +[1,2343,17033], +[0,0,17035,2514,4139], +"lazy-ass", +[0,4257], +"blob-util", +[3,8129,9], +[1,2343,17043], +"@cypress/xvfb", +"zzle", +[2,6545,17040], +[2,17037,705], +[0,0,0,17048,34352], +"more-types", +[2,14614,17044], +[3,4008,11], +[2,17046,6509], +[0,1781,2844], +"cypress.io", +"mocks", +"spies", +"stubs", +[1,2343,17054], +[0,17055,17056,17060,2537], +[0,975,983,15951,1437,1457,8098,7614,2712,2856,3083,25292,4200,25294], +[0,4874,1540,2182,2675,33479,30889,4400,4507,91], +[3,13848,19], +[2,17057,3172], +"longest", +[0,6671,36,21147,8173,8172,25094,3212,8788,1973,5472,4030,2382,28726], +[1,2343,17062], +[0,17063,17064,17065,2399], +[0,1417,7272,2756,17827,3433], +[0,5517,13614,23237,10979,27571,27016,19325,1159,9254,1177,2708,3410,4103,4389], +[0,1781,1646,7185,3428,6333,7077], +[1,2343,17069], +"d3-axis", +"d3-brush", +[0,0,0,17070,2523], +[0,1781,1646,7045,6953], +"d3-chord", +[1,2343,17073], +[0,0,17076,17077,2443], +"d3-contour", +"d3-delaunay", +[0,1593,1177,1903,1938,1954,1958,1970,3400,3954,4042,4048,4055,4067,4073,4193,4384,25313], +[0,1781,2856,1925,6778,5286], +"d3-dispatch", +[1,2343,17084], +"d3-drag", +"d3-dsv", +"d3-ease", +"d3-fetch", +[0,0,17085,2514,2537], +[0,2899,1177,4039,91,4874,6503,1011,1009], +"d3-force", +[1,2343,17088], +[0,17094,13658,17095,2537], +"d3-format", +"d3-geo", +"d3-hierarchy", +"d3-interpolate", +"d3-path", +[0,21224], +[0,3917,6033,2090,1781,2150,2151], +"d3-polygon", +"d3-quadtree", +"d3-random", +"-chromatic", +[2,1655,17099], +"d3-time", +"-format", +[2,17101,17102], +"d3-timer", +[1,2343,17106], +[0,0,17109,17114,2523], +"d3-transition", +"d3-zoom", +[0,16638,16641,1429,1177,25328,2899], +"@observablehq/plot", +[3,17110,14], +[2,17111,7047], +"topojson-client", +[0,1781,2844,2860,1155,7020], +"visualiz", +[2,17115,5218], +[1,2343,17118], +[0,17119,17120,17123,2523], +[0,4430,25336], +[0,4389,19987,18718,8924,5710,2012], +"intern", +"internmap", +[0,1781,3101,22115,57,1149,7119], +[1,2343,17126], +"d3-module", +[0,17127,17131,17133,4139], +[0,3242,25343,4135,25355,25346,25353,3052,25347,25350,3051], +"histogram", +"bisect", +"shuffle", +[0,3413,3421,1157,1429,2899,4193,1177,1566], +"stic", +[0,2038], +"statistics", +[1,2343,17136], +[0,17137,17138,2514,2523], +[0,53,25363,17144,3467,3527], +[0,25366,4874,26142,1415,668,1177,1895,3171,3181,3445,1894,4042,4448,91], +[1,2343,17140], +[0,0,17141,17143,2537], +[0,4874,7677,20085,4493,91,1984], +"uniqid", +[0,6649,6710,5995,25372,89,970,5122,3857,5123], +"@jspm/plugin-rollup", +[1,2343,17148], +"selection", +"data-join", +[0,17149,17150,17151,2487], +[0,25377,3486,20508,3923], +[0,4449,2228,2907,1177,1317,2240,1389,3541,91,2665,25379,2236,2281,25383], +[0,2056,25386,25388], +[1,2343,17153], +[0,0,17154,17155,2487], +[0,4172,1192,2675,1177,23535,4468,4474,1894,91,53,2990,1387,1540,1938,1895,1955,2780,1011,1009,1915], +[0,2038,1388], +[1,2343,17157], +[0,0,17158,17160,2537], +[0,2025,2759,2899], +"dable", +[0,2038,10368,15103], +[1,2343,17162], +[0,17163,17168,17170,2487], +[0,14416,4449,2070,3171,25404,4747,15643,1209,3078,3188,4039,1544,1457,3181,4218,2659,4227,1364,2215,12930,3781,11804,25403,13388], +[2,21029,17165], +" plugin", +[2,21045,17169], +"postcss-js", +[0,1429,13333,2899,17050,4193,4707,1177,1649,4650,3758,4342,1389,2878,3752,4196,25411,1436,2900,2766,2898,192,1431,2871,4131,1954,1938,25407,2904,6063,1958,2881,25410,1903,1970,2895,22559,6061,2876], +"ails", +[0,2297,25415,8791,2297,676,5284,5472,1973,21004,25416], +"laravel", +[1,2343,17173], +[0,17174,17175,17176,2487], +[0,9421,1209,25421,3181,18868,1573], +[0,3377,1377,1429,2297,2899,4193,4453,12851,1177,814,4650,1389,4196,91,3400,2766,2898,15051,1951,2881], +[0,25425,25427,25429,1389], +[1,2343,17178], +[0,17182,17185,17186,2537], +"reverse", +"binary", +"opposite", +[0,3760,14336,25092], +"invert", +"switch", +[0,2228,1177,2307,2239,2291,3006,1954,2234,1938,1958,1903,1970,2285,2290], +[0,25425,25436,14336,25437], +[1,2343,17188], +[0,0,0,17192,2537], +"@cap", +"temulation/get-parameter-names", +[2,17189,17190], +[0,2297,25425,1429,2899,4170], +"faker-bb", +[2,7526,17193], +[2,9769,1676], +"rss-parser", +[2,2032,2663], +[2,4364,17197], +"lexxy", +[1,2343,34442], +[0,4707], +[0,1429,2297,2899,4193,4255,2900,192,4131,6063,22559,6061], +[0,25425,25436,3195], +"@date-", +"fns/docs", +[2,17204,17205], +[1,2343,17208], +[0,17211,17224,17225,2523], +"@date-fns/utc", +[3,5530,19], +[0,11935,14024,11938,11940,11943,3181], +"@types/bun", +"@vitest/", +[2,17213,1388], +[3,1198,17], +[2,2701,7188], +[2,17215,17216], +"bun", +"cloc", +"js-fns", +"jscodeshift", +"issing-exports", +[2,10634,17222], +[0,192,5467,21970,6061,6063,16608,1429,1509,1177,1903,1938,1954,1958,1970,2228,2240,2298,2307,2675,25453,2297,25455,2895,2900,25458,2899,17050,4019,4131,4193,4196], +[0,25425,25427,25462,4504,2759], +[1,2343,17227], +[0,17201,17228,17229,2537], +[0,2228,2258,2273,2298,2766,2297,2898,3524], +[0,25425,25436,1388,2887,25468,25470,25472,25473,17632,25474,25476,25479,25481,25484,25485], +[1,2343,17231], +[0,17233,17234,17235,2523], +[2,2553,20], +[0,2890], +[0,1429,25492,14416,1177,1903,1958,1970,2228,2239,2240,2291,2307,2316,2297,3006,25493,3752], +[0,25425,25436,13530,17631], +[1,2343,17237], +[0,17238,17241,17245,2537], +[0,2755,4707], +"ectory", +[2,4015,17239], +[0,192,5467,6061,6063,16608,2675,2297,2900,2899,3534,4131,4255], +"sleep", +" wrapper", +[2,1149,17243], +[0,2297,5472,25425,25436,25501], +[1,2343,17247], +[0,6203,17248,17249,2523], +[0,1429,14416,1177,1903,1958,1959,1970,2228,2234,2239,2283,2285,2290,2291,2307,2316,2297,3006,17050,4193,4196], +[0,25425,25436,7298], +[2,17257,24717,17258], +"debouncing", +"invoke", +"interval", +[1,2343,17255], +[0,17256,17259,17260,2523], +[0,2766], +[3,7621,18], +"-ascii", +[0,2228,2675,2297,1177,2765,192,4131,1954,1938,6063,16608,1958,1903,1970,2895,6065,22559,6061], +[0,25425,25514,2765], +[1,2343,17262], +[0,17263,17264,17265,2487], +[0,3183], +[0,1429,1177,1903,1958,1959,1970,2228,2234,2239,2285,2291,2298,2307,2297,2878,2881,2895,2918,3006,2899,3203,4193,6061,6063,4131,192,5467,2675], +[0,25425,25514,2899], +"decamelcase", +"lowercase", +[1,2343,17270], +"nano-spawn", +[0,17271,17280,17282,2537], +[0,1437,3074,4294], +"-tar", +[2,1679,17272], +"bz2", +[2,17273,17274], +"gz", +[2,17273,17276], +[3,17273,11], +[2,17278,4560], +[0,1429,2228,2239,2258,2273,2285,2298,2314,2766,2878,2889,3006,2899,3524], +"strip-dirs", +[0,25425,25462,2899,1429,1687,2568], +"is-jpg", +[1,2343,17287], +"bzip2", +"tar.bz", +[0,17289,17290,17291,2537], +"tar.gz", +[0,1209,3524], +[0,1177,1903,1959,1970,2228,2234,2239,2285,2291,2298,2307,2766,2297,2898,3006], +[0,25425,25436,3521], +[1,2343,17301], +[3,4852,13], +"plugin-m", +[2,17294,7912], +[2,17293,17295], +"fail-test", +[2,10740,17297], +"deprecation", +[2,1921,17299], +[0,0,17320,17324,2399], +"only-tests", +[2,16645,17302], +[3,1955,15], +"erfectionist", +[2,17304,17305], +"yml", +[2,1921,17307], +"jsonc-", +[2,17309,67], +[2,4488,10441], +[2,3390,17311], +"curly", +[2,3704,17313], +"should-s", +"emantic-", +[2,17316,3979], +[2,17315,17317], +[2,13125,67], +[0,1429,2228,2297,2899,2907,1177,2307,2239,2898,1954,1938,1958,1903,1970,2895], +" string", +"line string", +[2,13862,17322], +[0,2297,25425,25514,2907], +[1,2343,17326], +[0,17327,17328,17333,2487], +[0,1457,1675], +[0,53,5889,87,1177,2766,2297,2881,2898,2904,4042,4045,4048,4055,4067], +"dupes", +" duplicates", +[2,7293,17330], +[3,232,8], +[0,3595,6778,2297,5260,1204,6813,1932,7121,25427,25425,25544,4042], +[1,2343,17338], +"deduplicate", +"deduplicat", +[2,17336,6600], +[0,0,17339,17340,4139], +[0,2307,2228,2239,2234], +[0,25425,25436,25550], +[1,2343,17343], +"is-obj", +[0,17344,17345,17346,2537], +[0,25555,12826,824], +[0,192,5467,6061,6063,16608,4864,25558,4874,2675,2765,2297,2898,4131,91], +[0,25425,25436,7177,12825,12826], +[1,2343,17348], +[0,0,0,17349,2537], +[0,2297,25425,4193,3212], +[1,2343,17351], +[0,17353,17359,17360,2523], +"json-ptr", +[0,2215], +[3,1715,10], +"change-", +"adr", +"tracking", +[2,17355,17357], +[0,8780,1414,1177,2766,2297,25571,2881,2898,1894,4042,25575], +[0,25425,25427,11939,5284], +[1,2343,17368], +"decision record", +"kewlr", +"any decision record", +[2,17379,17381], +"simple-assert", +"lcov-re", +[0,9719,17378,17385,2443], +"sult-merger", +[2,17367,17369], +[3,1903,16], +"rict", +[2,17371,17372], +"@js-temporal/polyfill", +[3,1935,15], +"ilenames", +[2,17375,17376], +[0,1429,1596,2899,3400,3421,4193,4196], +[3,25135,11], +"chai util", +"al decision", +"deep equal", +"object equal", +[2,17365,17394], +[0,25425,16237], +[1,2343,17387], +[0,17408,17417,13533,4139], +"array-b", +"-byte-length", +[2,2347,17389], +[2,17388,17390], +"es-get-iterator", +"is-a", +" record", +"is-arguments", +"is-ar", +[2,25135,17401], +"ray-buffer", +[2,17396,17398], +"is-date-object", +" decision", +"gex", +"is-regex", +"is-s", +"hared-array-buffer", +[2,17404,17405], +[2,6961,7313], +[0,2070,3181,4689], +"side-channel", +"-boxed-primitive", +[2,4707,17410], +"which-", +[2,17412,6910], +"typed-", +"typed-array", +[2,17412,17415], +[0,48,53,85,87,192,5467,16405,1193,1429,1431,1610,1177,1938,1955,2675,2759,2765,1192,2297,2878,2881,2900,2923,2990,3150,2899,3697,1894,3758,4257,2924], +"available-typed-arrays", +[1,2343,17427], +"to", +"has-proto", +"has-t", +[2,17397,17394], +"yped-arrays", +[2,17422,17424], +"software quality", +[0,0,7923,17428,4139], +[0,8652,2926,25591,6938,25592,25594,25595,25596,2927], +"rehype-katex", +[1,2343,17431], +[0,0,0,17432,2487], +[0,2927,3925,364], +[1,2343,17434], +[0,17435,17441,17442,2487], +[0,25605], +"is-m", +"able-object", +[2,4688,17437], +[2,17436,17438], +"jsmd", +[0,18073,29457,11976,15288,7677,4039,25609,4481,1984,26108,26131,26132,26124,26104,29233,26123], +[0,6803,6692,1542,2325,9553,25611,13901,5995,25513,1552,3230,7827,3259,14873,3151,3300,3084,6650,1416], +[1,2343,17444], +[0,0,17445,17446,2537], +[0,1999,4579], +[0,1111,200,1473,1512,7201,7009], +"is-path-cwd", +"is-path-", +"inside", +[2,17448,17449], +[1,2343,17452], +[0,17454,17463,17464,2523], +"folders", +[0,1999,25625,1676,1209,21104,3932,4435,25623,1511,1525,2727,4025,2179,25624], +"directories", +"trash", +"unlink", +"cleaning", +"rmrf", +"friendly", +"gulpfriendly", +"filesystem", +[0,3519,3421,4481,1429,2763,4389,2675,2899,3259,4193,1177,3260,4039,1787,3203,4246,25635,4474,25633,1894,4387,1596,1610,2861,4196,91,4874,21106,2990,25629,25634,1431,4232,25632,1938,25628,25636,1895,1955,13850], +[0,14872,3766,14873,25638,3259,25639,4246,12593,3243,9381,25640,6147,1747,18035], +[1,2343,17466], +[0,17467,17469,17470,2537], +[0,19185,2071,17471,2807,2822,3183,29943,3527,3530,25648,4300,4763], +"temp-write", +[0,554,17212,7637,7892,20374,4891,11112,19706,32765,4494,91], +[0,19748,25658,1227,200,25660,4796,13735,4797,11337,25661,6971,6813,1586,2100,5284,671,25663,25664,18750,6646,23255,3383,20529,553,91,25667,25669,17507,664], +"formatly", +[1,2343,17473], +[0,0,17476,17478,2487], +"in-range", +"time-", +[0,1177,2205,25675,3072], +"time-span", +[0,1623,3583,12616,3195,25501,25677,17631,25550,25678,25679,25682], +"defer", +"out", +"timeout", +[1,2343,17483], +[0,17486,0,17488,2537], +"settimeout", +"tick", +[0,3171,4734,1676,25688,3441], +"threshold", +[0,7200,6997,6949], +[1,2343,17490], +[0,17491,17499,17502,2537], +[0,1080,1560,1562,16358,25696,14858,1833,1869,2145,25699,2657,2941,3173,3440,3494,4266,1000,4590], +"@vue/c", +"ompiler-sfc", +[2,17492,17493], +"callsite", +"deps-", +"deps-regex", +"is-c", +[0,1414,25710,4216,4255,4342], +"ore-module", +[2,17498,17500], +[0,5122,1896,27,13527,5130,2663,16196], +"patch-", +"patch-version", +[1,2343,17506], +[0,17508,17509,17510,2523], +"unused", +[0,25717,7810,13055,25718,2141,4507,4763], +[0,5517,11976,107,5522,28385,27134,36694,24819,9240,2934,4342,4483,36684,4494,91], +[0,2934,25723,15237,1781,20443,57,1669], +[1,2343,17512], +[0,17513,17516,17517,2443], +[0,25718,25728,1000], +"deprecate", +"deprecated", +[0,1909,2675,2934,2899,3421,4170,4342,1906], +[0,25732,1781,25723,2934,20443], +[1,2343,17519], +[0,0,17520,17521,2523], +[0,1503,1192,3130,4255], +[0,2934,2663,2940], +"is-relative", +[3,9488,17], +[1,2343,17525], +[0,17530,17531,17532,2487], +"cjs", +"detective-cjs", +[3,9509,10], +[2,17528,4354], +[0,1413,1437,25743,3440,25745], +[0,1366,1414,1909,2934,25748,25749,4193,4342,1906], +[0,2934,2663,2942,3073], +[1,2343,17534], +[0,17535,17536,17538,2537], +[0,1676,2941], +[0,1177,1903,1958,1970,2759,2934,2948,2899,4170,4342], +"indentation", +[0,2934,2663,2944,25757], +"identify", +"space", +[1,2343,17542], +[0,17543,17544,17545,2399], +[0,1676,2657,2941,3509], +[0,2934,3421,1437,2675,2899,1177,2114,4342,25763,3985,2990,192,2829,3995,1982,5467], +[0,2934,2663,4082,38], +"mm", +"egg-bin", +[1,2343,17549], +[0,17550,17552,17553,2443], +[0,1676,25771], +"ontributor", +[0,1177,1903,1938,1954,1958,1970,2759,2934,2899,4342], +[0,2934,2663,2090,2947,25774], +[2,1884,1347], +[1,2343,17556], +[0,17557,17558,17559,2537], +[0,3291,3754,25782,1552,4747,1209,4333,2026,1364,25781], +[0,1429,1149,2899,4193,4170,4342,1506], +[0,12692,3768,6812,1552], +[1,2343,17561], +[0,17562,17563,17564,2537], +[0,25789,1687,1177,25791,25792,2000,25793,2036,2607,2851,2854,3188,4127,4227,4232,4351,25794], +[0,1501,25796,1948,25797,4039,4135], +[0,1973], +"grunt-exec", +[3,2300,12], +[2,17566,2759], +[2,2235,2924], +[1,2343,17570], +[0,17571,17572,17573,2523], +[0,9478], +[0,1166,4135,25814,4481,1906], +[0,25816,15525,3378,4750,3383,6661,25188,1237], +[1,2343,17575], +[0,0,17576,17587,2537], +[0,2861,25821,1317,25822,25823,2768,1776,1209,3152,3736,25825,4019,25826,4545], +"@types/diff", +"gan.js", +[2,12456,17578], +"@types/nopt", +"all-", +"ibutors-cli", +[2,10741,17582], +[2,17581,17583], +[3,1945,18], +[3,3463,9], +[0,7189,6564,6681,6887,614], +[1,2343,17593], +[2,2036,2091], +"image-", +[2,17590,11526], +"is-ci-cli", +[0,0,17594,17596,34352], +[0,4248,2675,2297,2899,4193,1177,25846,4042,25850,25840,4535,2900,2918,2990,25844,25848,25851,2897,8850,2891,25843,2881,2912,2895,2910,25853,25838], +"side-by-side", +[0,25855,3053], +"line-by-line", +[1,2343,17601], +"difftohtml", +"colorized", +[0,0,17602,17603,2399], +[0,1317,2064], +[0,2967,2965,2966,23119,1871,19728], +[1,2343,17605], +[0,0,17606,17607,2487], +[0,20340], +[0,2966,25866,6983,1671], +"data-s", +[2,14386,3769], +[2,17608,17609], +[1,2343,17614], +[3,1915,23], +[2,17612,8861], +[0,17624,0,17628,4139], +"Directed Graph", +"directed", +" graph", +[2,17616,17617], +[2,17616,2218], +[3,1718,14], +"Directed", +"digraph", +"java", +[0,3420,2714,4390,3532,4248,3348,1437,2020,2742,3478,4207,10761,4747,25871,1680,24004,3483,4039,4135,1842,2822,3479,4430,25872,2151,2182,2720,3093,25873,13786,25874,1513,2753,2777,3181,25875,666,2188,3249,27921,91,25878,1595,2200,25879,25880,4174,2704,25881,3393,25884,4025,25886,4290,4748,25887,692,20312,9322,25888,25891,25892,3386,635,25893,26567,4728,643,3397,9479,10744,4588,16310,25898,25901,16307,25904], +"java script", +"JavaScript", +"type script", +[0,2968,6646,7117], +"vertex", +"Vertex", +"edge", +"Edge", +[1,2343,17638], +"graph theory", +"Graph Theory", +"graph ", +[2,17636,6956], +[0,17639,17646,17650,2487], +[0,25910,20314,4484], +"weighted", +"Weighted", +"unweighted", +"Unweighted", +"adjacency", +"Adjacency", +[0,811,8850,816,1009,1011,25917,25920,1429,1414,1437,1595,1610,1177,2151,15843,2070,2205,2228,2240,2247,2256,2291,2311,2314,25922,2777,25923,25925,21898,3183,2899,25928,3400,3518,25929,3541,1862,25930,814,4042,4073,4076,4135,4172,4436,4474,91,12247], +"connectivity", +"cycle", +"acyclic", +[0,7236,7303,6885,1623,6965,7025,6898,6932,7258,695,7228,6766,7028,6912,57,7121,6962,6968,590,592,5376,7198,6705], +"traversal", +"depth", +"Depth", +[1,2343,17655], +[0,0,17682,17684,2537], +"breadth", +"Breadth", +" first search", +[2,17652,17658], +"dfs", +"DFS", +[2,17656,17658], +" search", +[2,6395,17663], +[2,17656,17664], +"bfs", +"BFS", +"algorithms", +[2,17636,17668], +"repre", +"sentation", +[2,17670,17671], +[2,17636,17672], +" matrix", +[2,17647,17674], +" list", +[2,17644,17676], +"adjacency ", +"matrix", +[2,17678,17679], +"node ", +[0,48,53,87,192,5467,442,27928,19344,1193,1610,1622,1700,1701,1177,1895,20281,1938,1939,1953,1955,1982,2203,2675,1192,695,25936,2990,3144,3400,1894,4257,4294,4523,2924], +"node degree", +[0,2924,1194,695,6766,7228,1623,7121], +[1,2343,17694], +"sparse graph", +"dense graph", +"directed ", +[2,17688,17648], +"acyclic graph", +[2,17688,17690], +"DAG", +"topo", +[0,17703,17707,17708,2537], +"topologic", +"topological", +"sorting", +"strongl", +"y connected components", +[2,17698,17699], +" digraph", +[2,17640,17701], +[0,25946,25948,25944], +"weighted edge", +[2,17688,17704], +"structures", +[0,3421,4389,3348,1090,1290,2554,4255,91,4874,87,25951,25950], +[0,2970,25954,3101,18035,1747,1542,13901,1781], +" structure", +[2,2382,17709], +[3,17610,14], +[2,17710,591], +[2,6957,591], +[2,17711,591], +"in data structures", +[3,17715,17], +"DataStructure", +[2,17717,591], +[1,2343,17725], +"iterative", +"Node.js", +"CommonJS", +"UMD", +"esmodule", +[0,17728,17736,17738,4139], +"java.util", +"c++ stl", +[0,25960,15160,25959], +"c++ std", +"Python collections", +"System.Collections.Generic", +"STL", +"stl", +"Collection", +"Collections", +[0,25964,3421,2070,4389,4400,2080,4039,12694,1804,2554,640,4255,1610,25963,25968,15164,25974,25969,1705,25972,25967], +"insertion", +[0,25954,2970], +"deletion", +"OOP", +[1,2343,17742], +[0,17743,17744,17708,2443], +[0,23040,25983,25987,25990,25981,25985], +[0,3421,4389,1087,4193,1090,2080,12694,25995,26000,2554,4255,25963,1389,4092,25992,25996,1537,25994,25997,1705,25951,25967], +[1,2343,17746], +[0,0,17747,17748,2443], +[0,1166,26007,26008,26009,26006,26010,26014,3273,26015,4441,1906], +[0,2975,26006,26017,8893,1871,17354,1687,2062,2163,9549,9550,3797,26020,6109,2585,3529,19051], +[1,2343,17750], +[0,17755,6538,17756,2399], +"voice", +[2,7659,17751], +"backend-", +[2,17753,10057], +[0,635,9510,26026,1687,3181,3386,3483,4390], +[0,3378,3409,2977,200,1687], +"product", +"productivity", +[1,2343,17760], +[0,17761,17762,17771,2523], +[0,635,9479,643,1458,3386,3483,3727,29698,3917,4135,4174,9455], +[0,9516,26037,9515,9449,1437,18248,26035,4384], +[2,7659,4729], +"lodash.s", +"nakecase", +[2,17764,17765], +"builders", +[2,7659,17767], +"formatters", +[2,7659,17769], +[0,3378,3409,2977,200,9527,2979], +[2,7659,1735], +[1,2343,17774], +[0,17775,6538,17776,2523], +[0,635], +[0,3378,3409,2977,200,3358,2980,26044], +[1,2343,17778], +[0,0,17779,17780,2537], +[0,48,53,5712,5788,87,94,8850,10615,1208,1429,1597,26049,1610,32572,2759,1192,25913,26052,3183,2899,3400,3421,26053,4005,4039,4042,4484], +[0,7285,7310,6988,6847,5131,7211], +[1,2343,17782], +[0,17783,17784,17785,2487], +[0,2051,2107,10392,26060,2747,3932,814], +[0,1509,1177,1889,1895,1954,2022,2899,3421,4193], +[0,9753], +"cache-point", +[2,9480,6769], +"file-set", +[1,2343,17791], +"reduce-", +[0,0,17792,17794,2537], +[0,11976,5087,4874,8157,1595,1192,91,4579], +"without", +[0,1595,1541,8309,7193], +[1,2343,17796], +[0,0,0,17797,2487], +[0,26072,1823,26073,1936,2814,163,26074,89,4500,1002], +"walk-back", +[1,2343,17802], +"dmd-", +[3,2475,9], +[0,17806,17807,17808,4139], +"ample", +[2,17801,17803], +[2,17800,17804], +[0,1525,2992,3170,6479,26379,4745], +[0,5522,107,192,5467,442,7677,22839,26081,1610,1177,1895,1953,1955,10964,2675,3211,1894,4135,91,1984], +[0,671,3358,2989,1177,1894,4320,1501,19269,4354,1671,2649], +[1,2343,17810], +[0,17811,17812,17814,2537], +[0,26087,26090,2752,2753,26092,26095,26099,3478,4094], +[0,1503,1702,22845,2990,3074,3421,3697,4237,13351], +"jsdoc2md", +[0,200,5957,3392,9000,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], +[1,2343,17816], +[0,17817,17820,6226,2487], +[0,1486,1511,2017,3077,4038,4726], +"agnostic", +"dnd", +[0,13352,4094,13351], +[1,2343,17822], +[0,17823,17824,2514,4139], +[0,26114,26111,5438], +[0,26121,26117,10675,26122,10706,4484], +"-protocol", +[2,1730,17825], +"jsonify", +[1,2343,17831], +"rpc", +"callbacks", +[0,17832,17833,17834,2523], +[0,1209,3183,1387,26129,1549], +[0,2899,4193,1177,3215,2759], +[0,1098,14576,2947,36,5001], +"@ffmpeg-installer/ffmpeg", +[3,1733,16], +"mmon", +[2,17836,17837], +[1,2343,17840], +[0,17841,17842,17843,2487], +[0,3459,1594,710,1512,3237,1544,1457,26136,4150,2012,3427,26137,23009], +[0,2899,1177,2272,4342], +[0,6400,5001,4990,36,27,200], +[1,2343,17845], +[0,17854,17855,2514,2537], +"@puppeteer/browsers", +[3,13394,12], +"ium-driver", +[2,17847,17848], +"geckodriver", +[2,13391,17850], +[2,5680,13392], +[2,13391,17852], +[0,1457,26144,15767,4729], +[0,1509,2899,4170,4193], +[1,2343,17857], +[0,17858,17860,17861,2537], +[0,16166,2070,25923,2822,23444,3006,1209], +"posthog-node", +[0,2228,2273,2283,23466,22081,2305,3752,4193], +[0,21779,4745,16166,2228,1541], +[1,2343,17863], +[0,17864,17865,17866,2537], +[0,1144,3249,3539,6477], +[0,2228,2240,26158,1906], +[0,4796,2070,2228,3001,3529,26160,13017,3209,3005], +[3,246,8], +[1,2343,17869], +[0,0,17870,2514,2487], +[0,1596,1177,1954,1192,1894,4257], +[1,2343,17873], +"mecano", +[0,17874,17875,17876,2537], +[0,25190,3088,26169,26172,26173,26175,26178,26179,26180,26181,26182,26183,26184,26187,26189,26190,26192], +[0,3310,1187], +[0,3304,36,5122,4990,6400,5001,1594,3171,4030,3212,5592,2658,3088,5995,4967,26196,2665,27,13333,2671], +"@balena/dockerignore", +"docker", +[1,2343,17880], +[0,17882,17883,17885,2537], +"docker-modem", +[0,25377], +[0,1175,1178,1195,1198,14211,1267,26204,1290,26205,1408,1594,1895,2228,13831,2236,2253,2256,2281,2283,26208,2291,3198,26210,18463,2311,26212,17568,2675,2990,3006,2899,1894,26213,12936,91,4535,2924,4681], +"docker.io", +[0,26216,26217,13901,26218], +[1,2343,17887], +[0,17888,7923,2514,2443], +[0,1170,1676,26223,4747], +"@bevry/pluginloader", +"ambi", +[1,2343,17894], +"ansistyles", +"bal-util", +[0,17925,17932,17933,2537], +"caterpillar", +"docmatter", +"-baseplugin", +[2,1737,17897], +"eachr", +"envfile", +"errlop", +"-grouped", +[2,13771,17902], +[2,12598,17903], +"extendr", +"extract-opts", +"ignorefs", +"xtorbinary", +[2,8828,17908], +"jschardet", +"lazy-require", +[3,3732,9], +"title", +[2,17912,17913], +"query-engine", +"rfc-log-levels", +"safefs", +"ps", +"safeps", +"scandirectory", +"taskgroup", +"typechecker", +"unbounded", +"watchr", +[0,1595,1676,2071,26228,4747], +"@bevry/", +[3,17583,12], +[2,9787,17927], +[2,17926,17928], +[2,15340,6706], +"kava", +[0,1178,14080,1253,1264,1267,1734,1767,1177,1903,1938,1939,1954,1958,1966,1970,1192,3446,26230,4135], +[0,26232,26234,6698,3015,671,4749,3378,9654,1965,1644], +"projectz", +"valid-", +[2,17935,7204], +[1,2343,17941], +" and deployment", +[2,6147,17938], +" manage", +[0,0,0,17949,2537], +"ment system", +[2,17940,17942], +[2,1563,17943], +"dms", +[2,1746,17943], +" agnostic", +[2,1351,17947], +[0,5260,7268,614], +"templating", +[2,11607,5001], +[1,2343,17953], +[0,0,0,17954,2537], +[0,5194,5260,7268,614], +[1,2343,17956], +[0,0,0,17957,2399], +[0,26249,3426], +[1,2343,17959], +[0,0,0,17960,2537], +[0,26249,1420], +[1,2343,17962], +[0,0,0,17963,2523], +[0,26249,26258], +"docsify", +"docsify.js", +"tabs", +[1,2343,17968], +[0,0,0,17969,2537], +[0,26249,1675], +[1,2343,17975], +"@textlint/markdown-to-ast", +"anchor-markdown-header", +"section", +[2,9787,17973], +[0,0,0,17976,2523], +[0,26249,19400], +"bitbucket", +"gitlab", +"ghost", +[1,2343,17981], +[0,0,0,17983,2523], +[2,20413,4699], +[0,26249,3033], +"doct", +"rine-temporary-fork", +[2,17984,17985], +[1,2343,18006], +"globals-docs", +"konan", +[2,3138,14510], +"micromark-", +"util-c", +"haracter", +[2,17992,17993], +[2,17991,17994], +"filepath", +[2,13721,17996], +[3,3999,9], +"ference-links", +[2,17998,17999], +"unist-", +[2,18001,9381], +"vfile-", +[2,18003,16237], +"vfile-sort", +[0,0,0,18010,2523], +"chdir", +"-schema", +[2,1745,18008], +[0,26249,14741], +"jsdoc3", +"nums", +[1,2343,34449], +[0,26249,3038], +[1,2343,18021], +"big-integer", +"-search-bounds", +[2,17180,18017], +"int64-buffer", +"priorityqueuejs", +[0,0,0,18022,34352], +[0,26249,3040], +"semaphore", +[1,2343,18025], +[0,0,0,18026,2537], +[0,26249,26287], +[1,2343,18029], +"cosmosdb", +[0,0,0,18030,2537], +[0,26249,26292], +"cosmos db", +"document ", +[1,2343,18034], +[0,0,0,18038,2537], +"database", +[2,18032,18035], +"nosql", +[0,1209,26249,7268,614], +[1,2343,18040], +[0,0,0,18041,2523], +[0,26249,26301], +"crowdin-cli", +[3,2694,9], +"gifsicle", +[2,18043,18044], +"jpegtran", +[2,18043,18046], +"png", +"optipng", +[2,18043,18049], +[2,18043,4361], +"tcp-port-used", +[1,2343,18054], +[0,0,0,18057,2537], +"tree-node-cli", +[2,15862,1868], +[0,26249,26307], +[1,2343,18060], +"glob-promise", +[0,0,0,18062,2537], +"websites", +[0,26249,3053], +"open source", +[1,2343,18065], +[0,0,0,18066,2399], +[0,26249,7906], +[1,2343,18075], +[2,15774,1722], +"-languages", +[2,6327,18069], +"to-vfile", +[2,9406,2741], +"lru.min", +"offline-search", +[0,0,0,18076,2537], +[0,26249,1698], +[1,2343,18078], +[0,0,0,18079,2537], +[0,26249,3061], +[2,1611,1388], +"height", +"classlist", +[1,2343,18084], +[0,0,0,18085,2523], +[0,26249,3063], +[1,2343,18088], +"domelementtype", +[0,0,0,18090,2523], +"entities", +[0,26249,3065], +[1,2343,18092], +[0,18093,0,18094,2537], +[0,22983,22985], +[0,26249,1283], +[1,2343,18096], +[0,0,0,18098,2523], +"raster", +[0,26249,6925], +[1,2343,18100], +[0,0,0,18101,2537], +[0,26249,3071], +"qunit-tap", +"lodash.sample", +"paths", +"ncludepaths", +[2,8851,18105], +[1,2343,18109], +"math", +[0,18111,18115,18116,2523], +"mathml", +[0,2353,998,1856,17003,26351,26350,26349], +"secure", +"sanitizer", +"purify", +[0,3421,4389,2675,26357,1177,10824,26358,2990,15797,15804,15793,15801], +[0,3073,2942,1676,1409,4709], +[1,2343,18118], +[0,18119,18120,18121,2523], +[0,20040,16232], +[0,1906,1166,4481,4294], +[0,3656,200,8429,6876,7169,5511,2568,20597,2089,20598,6574,3073,6807,7009,8634], +[1,2343,18123], +[0,18125,18126,18127,2537], +[3,4257,9], +[0,1107,1477,4208,4294,4726], +[0,4874,4290,26371,4481,16041,1906], +[0,3073,2942,6807,200,7009,6048,7201,4166,3076,26375,26376,6811,8634,3730,10036,7521], +[1,2343,18129], +[0,18130,18131,18133,2523], +[0,26383,1676,26385,4038,26388], +[0,192,5467,26390,13757,24030,1177,1881,1895,19527,1938,1955,2151,2675,2742,3421,1894,3752,4384,91], +"expand", +[0,6807,3073,15227,202], +[1,2343,18136], +"interpolation", +[0,0,18138,18139,2523], +"substitution", +[0,26398,4874,2228,2240,2247,2253,2256,24293,2273,2281,2283,26399,26400,2765,4474,91], +[0,3073,2942,6807,1388], +[1,2343,18141], +[0,0,18144,18146,2399], +"archive-type", +"ext-name", +[0,26406,1894,91], +"filenamify", +[0,18108,3080,26408], +"is-zip", +[2,4551,1398], +[1,2343,18150], +[0,18151,18152,18153,2487], +[0,1797,1704,26413,1149,1676,7077,2026,26416,1309,1362,2712,3361,1364,4148,26417,26420,26423,26426,26429,4547,26435,26438,26443,26448], +[0,3421,1429,2228,2297,2899,4193,4707,1177,1596,2240,26453,4342,1389,1719,4196,2298,2900,2291,1575,26455,26457,2040,2236,2300,2871,26459,2283,26462,2281,25407,26465,2881,25410,26466,2895,26470], +[0,5122,7096,4030,5592,2026,4031,2934,1303,1965,12593,3259,18037,1550,3230,26472,3243,25638,14873,4217,26473,5130,5131,26474], +[1,2343,18155], +[0,18156,18159,12113,2523], +[0,9673], +"repository", +"tarball", +[0,1389,1839,4384], +[1,2343,18161], +[0,18162,18163,18164,34352], +[0,26484], +[0,4494,2675,4400,1177,1209,1701,4474,91,4874,4870,6494,192,26488,26486,13789,25298,5467], +[0,18035,1747,1804,26490,21687,2117,6671,2703,26492,26493,1388,1999], +[1,2343,18166], +[0,0,18167,18168,2523], +[0,4874,1317,668,3127,3188,1894,4384,4483,4508], +[0,6879,6650,2325], +[1,2343,18175], +"import-from", +"parse-c", +"md-args", +[2,18171,18172], +[2,4182,4562], +[0,0,18176,18177,2399], +[0,6373,968,26503,4042,4057,91,1983,1984,26504,25079,26507], +[0,26509,26510,26511,26512,26513,26514,26516,26517,26520], +[1,2343,18179], +[0,18180,18184,18187,34352], +[0,1149,1326,26528,3263], +[3,3369,12], +"ckage-data", +[2,18181,18182], +[0,1596,2759,3188,2899,3202,4170], +[3,16398,19], +[2,18185,18182], +[0,158,1398,26532,3729,24800,16662,16661,21881,20637,18048,20639,12712,26533,26534,6870,26535,1504,14908,23119,26536,26537,26539,9135,26541,26542,26543,6792,13615], +[1,2343,18189], +[0,18190,18191,18193,2523], +[0,26548,26551,16053,25874,1519,1522,26552,25190,2934,26553,3445,3762,16057,17798], +[0,2829,26192,3310,26556,1187], +"dox", +[0,3088,36,27,13333,2671,5995,2665,3304,5122], +[1,2343,18195], +[0,18196,18197,18198,4139], +[0,1437,1513,1676,1836,16473,25623,26563,2089,2149,2572,26565,2584,1161,2822,26567,26568,3188,3467,3718,12443,9340,3992,3999,26572,26573,4449,18071,4549,18002,4555,12447,3348,12449,4707,4728,26574,4747], +[0,26578,5245,12396,7637,26579,26581,4874,6520,9315,7819,26584,22092,4892,1610,19878,4207,4294,91,4579], +[0,1783,26586,26587,5472,1745], +"spawn-", +"please", +"spawn-please", +[1,2343,18204], +"@types/temp", +[0,18205,18206,18207,4139], +[0,5012], +[0,442,816,6373,1317,19839,1567,1177,1894,23535,4042,4228,4232,1984], +[0,1871,26597,12938,17950,15139], +[1,2343,18209], +[0,18210,18211,18212,2487], +[0,4729,1170,2832,4484,2018,1209,2738,7665,18730], +[0,1177,4508,9241,91,4874,3400,13204,4870,1011,10638,26606,1009], +[0,26608,21009,91,1723,10339,17623,5284,26611,26614,26617,26620,26622,24090,26624,26626,16697,26628,26631,1745,26632,26633,3091], +[1,2343,18214], +[0,18215,18216,18217,2537], +[0,1437,2051,2205,4600,3249,3505,4300], +[0,2228,2899,4170,2240], +[0,1370,2323,17461,21779], +[1,2343,18219], +[0,0,18221,18222,2537], +"bplist-parser", +[0,8780,4874,1166,2215,21537,4400,4481,1906], +[0,7148,3188,7048,17455,17453,7204,6857,3403,5933,7029,26647,26648,6899,7147,2150,17462,16503], +[1,2343,18224], +[0,0,0,18238,2523], +"alex", +[3,14237,14], +"bjs", +[2,18226,18227], +[2,1884,2081], +"fbjs-scripts", +"gulp-d", +"erequire", +[2,18231,18232], +"stats", +[2,18234,4408], +"webpack-st", +[2,18236,2187], +[0,7048], +"draftjs", +"typed-binary", +"richtext", +[1,2343,18243], +[0,18244,18245,18246,2537], +[0,10780,1139,1301,1362,26657,2866,26658,3507,4545,4736], +[0,4874,1389,26662,26663,1177,26664,2899,1241,91,4535], +[0,20697,1936,26666,4718,1783,5980], +[1,2343,18249], +"just-extend", +[0,18251,18257,18261,2487], +[3,5371,20], +[0,7709,15288,26675,26677,26678,26681,26684,26412,26685,29310,1091,1309,1437,8536,6809,1481,21847,23872,2822,2863,3000,3203,3260,3310,3363,3509,3519,3547,3951,4094,4164,4213,4246,4521,17142,1002], +"ring", +"inline-string", +[2,18250,18253], +[2,18250,2278], +"cypress-", +[0,28091,26688,9687,26690,28084,28092,20886,26694,6494,7637,5542,12461,9240,1009,1011,1177,1895,1955,2150,1192,3403,1894,4232,4342,4468,4469,4480,91], +"file-upload", +[2,18256,18258], +[2,2918,4195], +[0,5995,5592,4030,6710,91,18035,30967,28976,6354,28986,29686,26147,29690,13126,7827,25638,3259,4521,12659,1303,5165,18258,13901,6949,29732,29735,30183,6688,30184,33629,14344,29744,3097], +[1,2343,18264], +"dragndrop", +[0,0,18268,18269,2523], +" and drop", +[2,7518,18265], +[3,12322,11], +[0,19181,26706,578,583,587,32379,26707,4870,4874,4880,4883,1009,1011,1497,1637,1177,4828,1961,1209,3286,3561,3566,3613,26710,26712,1894,89,3824,4164,9348,26713,4493,91], +[0,181,26709,13083,4403,26715,26717,89,26720,91,5284,6400,4967,6073,181,26726,1487,17758,26727,4627], +[1,2343,18271], +[0,0,18273,2514,2523], +"tsutils", +[0,19987,19989,19988,2012,7115], +[1,2343,18283], +"dts-critic", +[3,7935,17], +[2,18276,594], +[2,15438,57], +[2,18276,18278], +"versions", +[2,4524,18280], +[2,18276,18281], +[0,0,18291,18292,2487], +[3,15891,13], +[2,18284,4299], +[3,7729,14], +"able-str", +"ingify", +[2,18287,18288], +[2,18286,18289], +[0,4874,1009,1011,7677,1165,1414,1177,1883,1915,2832,26743,2278,4320,5978,91,1983,26744,1984], +[0,26741,26746,1932,26747,590], +[1,2343,18294], +[0,18296,11686,18297,2537], +[2,11513,2527], +[0,3368], +[0,1783,26755,6892], +[1,2343,18299], +[0,18300,18301,18302,2523], +[0,1139,18089,26761,26762,26763,26764], +[0,5583,811,816,10615,1111,1317,1414,1429,1177,1903,2026,2193,2600,2805,5944,3112,7612,3114,26767,26770,26772,26774,26776,7617,7648,2899,26777,3278,4042,4167,4342], +[0,1783,57,20627,3105,26780], +[1,2343,18304], +[0,0,18305,18306,4139], +[0,5328,1166,5946,3165,4232,4255], +[0,1783,3105,26780,10345,26786], +[1,2343,18308], +[0,0,18309,18310,2523], +[0,5583,816,10615,1414,1177,1903,3105,7648,2899,4042], +[0,26780,3105,1783], +[1,2343,18342], +"dw-neit-", +[2,18312,1512], +"dw-neit-c", +[2,18314,11163], +[2,18315,3007], +[2,18312,45], +[3,1793,11], +"-des", +"ign-react-slick", +[2,18319,18320], +[2,18318,18321], +"rc-co", +"mponent", +[2,12796,9948], +[2,18324,18325], +[2,18323,18326], +[2,18312,18327], +[3,18328,21], +"e-observer", +[2,15557,18330], +[2,18329,18331], +[2,18329,11194], +[2,18329,11184], +[3,18334,22], +[2,18335,13168], +[3,18328,12], +"ascader", +[2,18337,18338], +[2,18337,5449], +[3,18328,13], +[0,0,18309,18352,4139], +"llapse", +[2,18341,18343], +[3,18328,11], +"dialog", +[2,18345,18346], +[3,18347,12], +[2,18348,9997], +[3,18349,13], +[2,18350,11206], +[0,26780,3105,1783,3113,26796,26799,26800], +"field-form", +[2,18345,18353], +[2,18345,158], +[3,18355,12], +[2,18356,1020], +[2,18357,11211], +"mentions", +[2,18345,18359], +[3,18360,14], +[2,18361,11215], +[3,18360,12], +[2,18363,11218], +[2,18345,9044], +[1,2343,18395], +"pagination", +[2,18345,18367], +[3,18368,12], +[2,18369,9947], +[2,18369,10148], +[2,18345,6882], +[3,18372,12], +[2,18373,11227], +"segmented", +[2,18345,18375], +[3,18376,13], +[2,18377,4021], +[3,18376,12], +[2,18379,10205], +[2,18379,11234], +[2,18379,10222], +[2,18345,17966], +[3,18383,12], +[2,18384,11241], +[2,18384,11243], +[2,18345,614], +[3,18383,14], +[2,18388,2699], +"ooltip", +[2,18384,18390], +[2,18386,11245], +[3,18387,12], +[2,18393,184], +[0,18396,18397,18398,2537], +[0,1525,1792,2051,2600,3524,4001,26806,4431,4449], +[0,1596,2759,26808,4255,4389], +[0,1783,2636,6270,1283], +[1,2343,18400], +[0,0,18401,18403,2537], +[0,4874,1414,1437,1894,3985,3998,4294,4505,91,1906], +"control flow", +[0,14903,1783,26815,176,15847,2585], +[1,2343,18405], +[0,0,18406,18408,2443], +[0,17212,4874,4880,4883,33492,668,89,3824,3857,15728,26827,91,188], +"zrender", +[0,1783,33510,89,3698,1219,188,12072,8588,23332,33512,3857,1936], +"@lang/rollup-plugin-dts", +[1,2343,18414], +[2,14678,17116], +[2,9816,1974], +"apache", +[0,18416,16487,18417,2537], +"data-viz", +[0,1537,26835,2226,26836,26837,26838,3183,26839,22230,4001,26840,22557], +[0,26786,20627,1739,1746,1745,26842,156,4017,3966,1783,5980,1932,9591,11043,4001,26843,8924,3902,176,26845,26847,10631,6033], +[1,2343,18419], +[0,18429,18436,18437,2523], +[2,6038,1541], +"gulp-e", +"xclude-gitignore", +[2,18421,18422], +"gulp-rep", +[2,18424,2902], +"gulp-tap", +"linez", +"os-locale", +[0,3167,27252,18578,26852,28035,28719,28722,26987,4290], +[3,5248,9], +"t-stream", +[2,18430,18431], +[3,11320,11], +"ugh2", +[2,18433,18434], +[0,442,19344,1091,1166,1414,26854,1177,1942,1953,1964,1982,26855,2205,2822,26696,2858,3105,26770,26776,7617,17250,17269,3400,4409,4452,91,2924,4677], +[0,1783,671,5980,26859,3124], +"@types/vinyl", +"-fs", +[2,18438,18439], +[1,2343,18445], +"fix", +"enforce", +"gulpplugin", +[0,18446,18447,18448,2399], +[0,1525,1696,2687,2822,2858,26865,3124,3105,3181,26866,25648,27921], +[0,1166,17269,1906], +[0,1783,3124,200,13326], +[1,2343,18450], +[0,0,18451,18452,2537], +[0,5517,26873,26876,16607,6063,6065,16608,16612,1448,20627,1610,12607,668,26739,1177,2600,3105,26878,26880,26881,4039,4131,23878,4484,91], +[0,1783,26885,1936], +[1,2343,18454], +[0,18457,18465,6604,2537], +"keepalive", +[2,4575,18455], +[0,9569,9573,7610,9577,9548,9568,9547,2745,9556,9565,9558,9560,9552,9562,9566,3023,3032,9563,3105,3114,9580,9584,5961,9554,4110,9550], +"aliasify", +"backport", +[3,2250,18], +[2,18460,3227], +"run", +"grunt-run", +[2,4431,4226], +[0,1389,1448,2070,9588,2899,9586,4255,4257], +[1,2343,18467], +[0,18468,0,2514,2537], +[0,1804,26895], +[1,2343,18470], +[0,18471,0,6260,2399], +[0,1282,26902,2926,3060,3070,3744,26906,3911,3935,26908,4649], +[1,2343,18474], +[2,8243,3038], +[0,18475,18476,18477,4139], +[0,97,26915,25212,26917,13746,26921,4127,15918,26922], +[0,53,13052,5825,83,87,94,19961,6503,1009,1011,1145,1195,1414,1503,1700,26703,1854,1177,1895,1903,1938,1951,1953,1955,1958,2024,11425,2061,2070,2323,2338,2036,26924,2297,2895,2900,2904,2923,4922,2925,3188,2899,3200,26925,26927,26930,26932,26933,26935,1894,3729,4193,26940,4441,4474,91,2924,26941], +[0,18108,26944,5746,26934,26945,57,7256,6988,14642,26946,26947,17679,2275], +[1,2343,18485], +"lazy-val", +"dmg-builder", +"builder-", +[2,18481,614], +"builder-lib", +[2,10735,18483], +[0,18486,18489,2514,2399], +[0,6641,26956,13651], +"-runtime", +[2,18482,18487], +[0,2899,2924], +"-ci", +"@types/is-ci", +[1,2343,18504], +"nsis", +"dmg", +"msi", +"setup", +"Windows", +"OS X", +"MacOS", +"Mac", +"appx", +"snap", +"flatpak", +[0,0,18505,18506,34352], +[0,2899,4255], +[0,3135,26963,26965], +[1,2343,18515], +"asar", +[2,8243,18508], +"notarize", +[2,8243,18510], +"osx-sign", +[2,8243,18512], +[2,8243,14566], +[0,18516,18519,18520,2537], +[0,9363,9315,26972,23289,12429,3167,26981,26983,26985,26986,26987,26990], +"-windows-exe", +[2,1615,18517], +[0,4874,1414,26992,668,17232,23276,2581,3140,26993,1894,3985,3998,4072,4505,91,1906], +[0,6892,1783,26885,26995,26564,1644,5341,1633,23266,6435,614], +"galactus", +[3,2179,12], +"info", +[2,18522,18523], +"junk", +"author", +"parse-author", +"rcedit", +[2,27093,33977], +[1,2343,18531], +[0,18532,18533,18534,2523], +[0,12396,9363,23247,23289,27003,27006,23254,4555,12449], +[0,4874,23262,1414,2581,2588,3137,27008,27010,1894,3985,3998,4505,91,1906], +[0,23266,26564,26995,2587,23267,614,6435,1783,1936], +[3,8256,10], +"ownload", +[2,18535,18536], +[1,2343,18539], +[0,0,18541,18542,2487], +"home-path", +[0,1091,10738], +[0,2382,27017,27018,1623], +[1,2343,18544], +[0,18546,0,18547,2523], +"wonderful-fetch", +[0,27073,27076], +[0,27078,2325,5576,24093,27080,27081,27083,27084,3143,27085,18037], +[1,2343,18549], +[0,18550,18553,18554,2537], +[0,18529,33978,33980,33981,33983,33990,33998,34001,27092,27094,26256,27472,27096,4484], +"-processor", +[2,6870,18551], +[0,5087,27098,4874,1130,1145,1398,2651,2675,27099,1192,3502,1894,3729,3923,4039,4393,4468,4469,4474,4487,27101,91,1002,614,2924,4677,4681], +[0,2150,17462,27103,3150,3144,2090,6771,2944,3151,27105,4607,1973,5472,3212,27106,27108,27110,27111,27112,27113,27114,27119], +"grunt-banner", +[1,2343,18557], +[0,0,18558,18559,2523], +[0,5535,5366,5087,27124,19446,4874,1009,1011,1317,1610,1177,1895,1939,1955,2024,27125,1192,3044,3057,3117,27126,13824,19445,27127,3467,1894,4039,4042,4069,4073,4075,4201,4468,4474,4484,91], +[0,7906,27130,2325,6681], +[1,2343,18567], +"@vue/comp", +"onent", +"iler-utils", +[2,4312,18563], +[2,18562,18564], +[2,18561,18565], +[0,0,18568,18577,2523], +[0,1429,2323,4193,27136,2463,4196,2447,2436,2839], +"algoliasearch", +"vue-jsx", +[2,1226,18570], +[3,1280,9], +[2,17006,18487], +[2,18572,18573], +"cp-cli", +[3,17554,15], +[0,2325,27138,2869,13901], +[2,27009,12442], +"lemefe", +[2,18576,18579], +[3,2095,9], +"gulp-cssmin", +"-editor-middleware", +[2,8427,18583], +[3,3112,13], +"hain", +[2,18585,18586], +[1,2343,18600], +"version-cli", +[2,9951,18589], +"transl", +[2,18591,6917], +"uppe", +"rcamelcase", +[2,18593,18594], +[3,4645,13], +"es2015-co", +[2,18597,14717], +[2,18596,18598], +[0,18601,18602,18603,4139], +[0,25911,3923], +[0,1329,15990,1596,1177,2759,2899,4170], +[0,2150,3151], +[1,2343,18605], +[0,0,18606,18607,2523], +[0,2025,2899,2228,2240,2300,2273,3760], +[0,3151,1973,3101,2041,7046,1398], +[1,2343,18617], +"brorand", +"hash.js", +"hmac-drbg", +"istic-assert", +[2,6907,18612], +[3,18613,13], +[2,1619,594], +[2,18614,18615], +[0,0,18618,2514,2537], +[0,2899,4170,640], +"EC", +"Elliptic", +"curve", +"Cryptography", +[1,2343,18624], +[0,8856,7938,7939,2487], +[1,2343,18626], +[0,0,18628,18630,2523], +"@ladjs/consolidate", +[0,811,8850,816,13789,7892,1166,27163,1532,1677,27164,27166,2020,2205,2709,27171,18183,27168,3919,11891,4042,4057,4060,13781,27162,4481,4507,91,1906,4748], +"@ladjs/i18n", +[0,200,20052,614,6435,1383,6478,1523,3924,3157,27173,27174,57,5675,6802,6847,8429,7201], +[1,2343,18638], +"get-paths", +"juice", +"preview-email", +"@jimp/core", +"-sendgrid", +[2,3361,18636], +[0,0,18642,18644,2537], +"lad", +"lass", +"mail", +[0,4856,6503,4874,1429,1540,2899,91,2924,4677], +"mailchimp", +[0,1698,6899,2051,1496,3048,1388], +"mailgun", +"mandrill", +"moonmail", +"postmark", +"sendgrid", +[1,2343,18651], +[0,0,18652,2514,2537], +[0,27184,2759], +[1,2343,18654], +[0,18662,18663,18664,2537], +[3,7639,9], +"ilparser", +[2,18655,18656], +"mtp-server", +[2,5051,18658], +"mailparser", +"smtp-server", +[0,1457,1525,1676,2226,16085,27189,3170,27190,27191], +[0,19181,442,27194,10723,5245,8778,4874,27196,1414,1177,1938,1953,2203,2899,1894,3980,4452,91], +[0,2947,12479,2090,13755,5351,5353,1179,1783,5352,3160,4745], +[1,2343,18672], +"yam", +"sane", +"dag-map", +"p-defer", +"tree-sync", +"console-ui", +[0,18674,0,2514,2399], +"is-git-url", +[0,27202,13223,2674,27203,27206,4039,4135,4390,4449], +"quick-temp", +[1,2343,18677], +[0,18680,18681,2514,4139], +"content-tag", +"core-object", +[0,4590,1676,3164,3494], +[0,2899,1177,2759,4342,1954,1938,1958,1903,1948,1970], +[1,2343,18696], +"capture-exit", +[2,26872,33868], +"stew", +[2,1379,18685], +[2,1379,1676], +"base-url", +[2,1463,18688], +"watch-", +"detector", +[2,18690,18691], +[2,1379,5614], +"broccoli-s", +[2,18694,5585], +[0,0,18711,18712,2523], +"-or-copy", +[2,7100,18697], +[2,1379,9381], +"-graph", +[2,14940,18700], +"is-language-code", +"-posix-path", +[2,13626,18703], +"-project", +[2,2116,18705], +[3,18701,11], +[2,18707,2942], +[2,11338,1781], +[2,6333,18709], +[0,2899,2759], +[0,27,3164], +"map-series", +[2,9466,18713], +[3,1381,10], +"iddleware", +[2,18715,18716], +"trees", +"low-trees", +[2,18694,18719], +".hash.helper", +[2,1862,18721], +[3,7648,14], +[1,2343,18738], +"rminal", +[2,18723,18725], +"fs-monitor", +[2,18707,18727], +[2,7077,2849], +[2,4099,18729], +[3,18693,12], +"fig-loader", +[2,18731,18732], +[3,18733,16], +[2,18734,4068], +"-reducer", +[2,1378,18736], +[0,18739,18749,18754,2443], +[0,53,61,5717,4851,5240,5874,5838,87,14128,90,8862,5583,811,8850,816,27221,27223,1165,7913,27225,27228,22829,1405,1420,1874,2098,2553,2929,3060,3561,3714,4042,13879,10854,4073,4076,4079,11481,4072,11482,4484,91], +"@pnpm/find-workspace-dir", +"-works", +"pace-root", +[2,18741,18742], +[2,4749,18743], +[2,2103,18744], +"ulate-cache-key-for-tree", +[2,3563,18746], +"is-pa", +[0,48,13693,27232,5522,107,1193,1610,27234,1177,27238,1895,1955,1999,2151,2675,1192,2990,27244,1894,3957,4039,4165,4294], +"missing", +"ckage-missing", +[2,18748,18751], +[2,1828,18752], +[0,6374,4042,27246], +[1,2343,18759], +"-registry", +[2,4358,18756], +[2,1828,18757], +[0,18775,0,18780,2537], +"yuidocjs", +"chai-files", +"yuidoc", +"-ember-cli-theme", +[2,18762,18763], +[3,10419,19], +[2,18765,2022], +[3,18753,11], +"-test-", +[2,18768,6706], +[2,2270,18769], +[2,18767,18770], +[3,1827,11], +"lueprint-test-helpers", +[2,18772,18773], +[0,5245,1676,26972,23289,27252,27256,17995,27259,27262,26981,27263,26985,27265,27003,27267,26986,26987], +"app-kit", +"ember", +[2,5802,18776], +"ember.js", +[0,20627,4643,3987,1936,16892,1783,26885,5980,4549,1644,57,1932,3729,3984,8924,3902,11326,207], +[1,2343,18782], +[0,18783,18797,18798,2523], +[0,15643,3530], +"amd-name-resolver", +[3,1201,14], +"ebug-macros", +[2,18785,18786], +[3,12186,15], +"ber-data-packages-polyfill", +[2,18788,18789], +[3,18790,19], +"modules-", +[2,4610,6422], +[2,18792,18793], +[2,18791,18794], +"broccoli-b", +[0,2899,3181,27275,2398], +[0,16159,27277,27278,18132,27280,7256,24440,27281,2090,1586,7131,2100,2070,21543,21544,24441,27282,27285,27287,3529,13777,6421,19051,3170,3181,3249,27289,27291,3403,13017,11601,27293,1108,6961,6920,4166,4259,21520], +"-transpiler", +[2,13830,18799], +[2,18796,18800], +[2,6324,6706], +[2,1827,18802], +"version-ch", +"ecker", +[2,18804,18805], +[2,1828,18806], +[1,2343,18821], +"@ember/optional-features", +"@ember/", +[2,18810,1871], +[2,18810,13281], +"@glimmer/component", +"@glimmer/", +[2,18814,17357], +[3,10614,11], +"s/lerna-changelog", +[2,4406,18817], +[2,18816,18818], +"ember-a", +[0,0,18836,18837,2537], +"uto-import", +[2,18820,18822], +[2,1705,1524], +[2,1828,18824], +[3,18771,12], +"-live-reload", +[2,2429,18827], +[2,18826,18828], +"initializers", +[2,3614,18830], +[2,5802,18831], +"ember-qunit", +[2,5802,14056], +[2,5802,4225], +[0,27299,7746,4874,1009,1011,1437,27301,3173,1894,23901,27302,91], +[0,7188,2090,3171,7305,7070,614], +"-channel-url", +[2,18835,18838], +[2,15508,2478], +"loader.js", +[1,2343,18843], +[0,18845,16075,18846,2399], +"ember-addon", +[0,7305], +[0,3171,553], +[1,2343,18848], +[0,11570,11571,18849,2537], +[0,27314,27315,27316,27317,27318,27319,27320,27322,27323,27315,27325,27326,27328,27330,27332,27333,27337,27338,27340,27341,27343,2262,7287,27334,27344,27346,27348,27350,27353,27355,27357,27358,17697,27359,27360,17737,17739,5284,17625,17626,676,91,17627,6869,4799,6915,6333,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,5933,1451,7914,27363,27365,17651,6899,17720,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,27366,6681,17740,1745,17116], +[1,2343,18861], +"edition-utils", +[2,18810,18851], +[3,4644,15], +[2,18853,5218], +[2,18791,18854], +"-inline-precompile", +[2,1829,18856], +[2,1199,18857], +"broccoli-p", +"ersi", +[0,18862,18866,18869,2443], +[0,4121,4388], +"stent-filter", +[2,18860,18863], +[2,18859,18864], +[0,48,53,87,192,5467,442,27928,19344,4874,1367,1610,1622,1628,1700,1701,1854,1177,1895,20281,1938,1939,1942,1953,1955,1982,2092,2203,2675,1192,2780,2832,2990,3144,3400,1894,2278,4111,4257,91,4523,2924,4677,4681], +"code-equality-assertions", +"js-string-escape", +[0,2924,1623,7682,11498], +"@emb", +"roider/test-setup", +[2,18870,18871], +[2,1828,1462], +[1,2343,18875], +[0,18879,18880,18881,2523], +"ort-", +"-global", +[2,13527,18877], +[0,27377,842,1462,27379,1676,668,2105,30621,16860,28134,27380,4072,27385,27388], +[0,27390,1177,27393,27394,10624,27395], +[0,3178,16862,676,1623,11807,1936,14357], +[1,2343,18884], +"dat", +[0,18885,18887,2514,2443], +[0,27404], +"ember-s", +[0,4384,4483,3188,4508,1894,4874], +"tyleguide", +[2,18886,18888], +[3,1243,11], +[2,18890,4486], +[2,5802,18891], +[1,2343,18896], +"ember-try", +[2,1921,2907], +[0,0,18897,18898,2537], +[0,1158,3421,4389,1177,3410,2708,1159,4103,13614], +[0,6478,7128,57,3460], +[1,2343,18900], +[0,18907,18908,18910,2537], +"@emmetio/abbreviation", +"@emmetio/", +"css-a", +"bbreviation", +[2,18903,18904], +[2,18902,18905], +[0,1525,3313], +[0,22102,1192,1894,4468,91], +"coding", +[0,27425,27428,21655], +[1,2343,18912], +[0,0,18913,18914,34352], +[0,27407,4874,13680,1414,1895,1894,4384,4474,4508,91], +[0,7148,7204,7161,7048,4014,6899,970], +[1,2343,18916], +[0,18917,18918,2514,2523], +[0,1082,3510,15450,27438], +[0,4874,7677,1446,1177,1905,5210,2807,1894,15452,91,4543,1984], +[1,2343,18920], +[0,0,18921,18922,2537], +[0,53,61,71,83,87,92,97,27445,2126], +[0,3190,27447,13795,5128,89,6071,27448,11415,27449,27456,27458,27459], +[1,2343,18925], +"finish", +[0,18926,18927,18928,2523], +[0,27464], +[0,3190,27464,27468], +[0,3190,27447,5128,89,6071,27448], +[1,2343,18930], +[0,18931,18932,18933,2537], +[0,2591,3242,1687,2070,1676,4747,2105,2822,1457,3181,3527,7801,3074,4748,27476,17450,4351,27481,4300,1874,4143], +[0,3421,1429,2931,1776,2297,4193,27510,1177,3278,3984,4039,4042,4135,2203,26079,2924,1894,1610,442,27500,91,27501,4874,2665,2900,3105,4677,4892,1509,3123,3401,10630,62,27490,27497,27506,27507,1953,17529,3125,27509,5946,3114,4923,3107,8850,27499,8862,2904,2915,2881,811,27504,4079,13866,4066,816,23652,27495,27487], +[0,2899,1973,5982,6969,4384,5472,1429,6468,1166,1192,4389,2765,2297], +[1,2343,18935], +[0,18936,18937,18938,2487], +[0,7058,3758], +[0,1429,2899,25928,91], +[0,2899,6533,3758,3197], +[1,2343,18940], +[0,18941,18942,18945,2523], +[0,1676,3135,3188,4294,6523], +[0,826,1429,6524,1177,2899,4039,27525,27526], +"entitify", +"entity", +[0,2899,2793,16237], +[1,2343,18947], +[0,0,0,18948,2443], +[0,2899,16237,27532,4504], +[1,2343,18950], +[0,0,18953,18954,2523], +"enumeration", +"datatype", +[0,1429,1177,21470,2899,4039,4135], +[0,3212,2150,1973,1182,6771,3151], +[1,2343,18956], +[0,18957,18958,18959,4139], +[0,27544,2159,15312,27547,2571,2756,3431], +[0,5517,13614,23237,27552,27555,27557,27559,27562,27564,27567,27568,27570,27571,27573,27575,27576,4874,27578,27580,19325,1159,9254,1855,1177,2011,2133,2569,2708,3410,3421,4103,4389], +[0,5472,3212,3048,3205,6692,6822,1973,6865,6739], +[1,2343,18961], +[0,18962,18967,18970,2537], +[0,12929,3369], +[3,15801,15], +[2,18963,200], +"ify-object", +[2,4745,18965], +[0,1610,1177,2899], +"issues", +"reporting", +[0,3209,7190,14419,14416,14510,22228,1973,3212,13106], +"diagnostics", +[1,2343,18973], +[0,0,7923,18974,2487], +[0,1973,3212,202,2150,2184], +[1,2343,18987], +[3,1143,20], +"function.", +".name", +[2,6688,18978], +[2,18977,18979], +[3,2620,13], +[2,18981,3053], +"oolean-object", +[2,15644,18983], +"allable", +"is-callable", +[0,0,18991,18998,2523], +"umber-object", +[2,13631,18988], +"is-string", +[0,2899,4042,4076,4170,91], +"is-subset", +[2,3024,1867], +[2,3436,6693], +"rst-selector-parser", +[3,11434,17], +[2,18996,6678], +[0,1666,3212,1973], +[1,2343,19004], +" rendering", +[2,4161,19000], +"Render", +[2,4161,19002], +[0,0,19008,19009,2487], +"test utils", +" helpers", +[2,6468,19006], +[0,2759,2272,4193,27601,4616], +[0,3212,13106,3209,1237,2325,2275,1973,27603,5472,6969], +[1,2343,19011], +[0,5621,19012,19013,2523], +[0,2323,2372,27608,2436,2447,2463,27610,2272,2839,2924], +[0,3212,27612,27614], +[1,2343,19015], +[0,19016,19021,19022,2537], +[0,7058,2070,2929,1209,11993,3084,3310,2015,27624,27623], +"airbnb-", +[2,19017,3744], +"fromentries", +[2,3436,19019], +[0,2812,4481,27633,1192,3241,27649,3533,1676,27637,1409,27635,1759,1177,3078,27658,1096,2738,3363,27656,4474,4709,27636,27643,2774,27648,1894,1596,27641,2777,3379,4342,27645,3747,91,27659,4874,27632,27655,27634,27657,27628,27644,27630,27647,25710,27660,27640,1954,27652,826,27626,1958,1895,1955,1966], +[0,27662,14584,5130,5995,27664,17829,14586,3166,11631,24090,27666], +[1,2343,19024], +[0,0,19025,19026,2523], +[0,2907,4042,1610,91,4874,2915], +[0,3220,1666,6901,1644,1671,2649,2679,6728,6804], +[1,2343,19028], +[0,19029,19030,19031,2537], +[0,3220], +[0,2228,2247,2273,2277,2281,17565,91], +[0,3220,1666,6901,27679,27680,27681,27678,16626], +[1,2343,19033], +[0,19034,19035,19037,2523], +[0,2858,27688,27692,27693,27696,3502,1894,27700,27702,27703,4745], +[0,27709,32818,7677,668,21290,3541,3985,27711,91,1984,27714], +[2,6296,3741], +[0,6038,4967,6400,27708,21290,4745], +"codependence", +[1,2343,19040], +[0,0,19061,19062,2399], +" for es6", +[2,4354,19041], +"check for ", +[2,19043,5260], +"es check", +"es matching", +"es version", +" check", +[2,5286,19048], +[3,19049,11], +"matching", +[2,19050,19051], +[2,19050,15525], +"js version", +[2,19054,19048], +[3,19055,11], +[2,19056,19051], +"test ", +[2,19058,19054], +[2,19058,19053], +[0,442,4874,7677,1177,1895,1966,1982,1894,4039,4508,4514,17223,91,4523,1983,26744,1984], +[0,27722,27723,27724,5675,27725,6400,5995], +[1,2343,19064], +[0,19068,19075,19079,4139], +"bigints", +"has-bigints", +"intl-", +[0,16003,32967,16005,16000,19267,15999,20870,23721,19282,6372,27731,1364,1367,23723,1395,1505,1525,1575,1610,1640,1759,1853,2026,9243,2040,2117,27735,27737,2626,2814,7796,3162,3230,27740,3237,3527,23726,4148], +"back-symbol", +[2,9925,19069], +[2,19067,19070], +[3,5742,14], +[2,3094,19072], +"make-a", +[0,53,68,87,27742,27743,1195,1429,1465,1540,1584,1628,1651,1177,1881,1938,1982,26154,2092,2675,2899,12690,3322,3363,4307,4342,2924,4677], +"unction", +"sync-function", +[2,19074,19077], +[0,20897,27746,6910,18035,27747,8626,8298,27749,1550,3230,27750,27751,27752], +"reflect", +".ownkeys", +[2,19080,19081], +[2,7315,7262], +[2,5511,19083], +[1,2343,19086], +[0,19087,19088,19089,4139], +[0,1395,27759,27762], +[0,3421,4481,29749,1429,1437,2899,4193,27764,4747,1177,4135,27765,2026,2822,4474,1894,4196,91,5307,4856,4874,1436,27767,6503,6513,27768,5254,6494,27772,27775,27776,27779,6512,27781,27782,4232,1951,1978,1895,1955,608,603,1011,27786,15115,27790,27792,1009,10964,549], +[0,3230,13392,11489], +[1,2343,19091], +[0,19095,19098,19103,2399], +"es6-symbol", +"esniff", +"next-tick", +[0,27798,3230,27799,27800,3242,27801], +"plain", +[2,19096,4007], +[0,30604,29957,4874,27803,27805,27807,1091,1414,1448,18192,1177,13850,2026,2151,2600,21630,3044,27810,20451,3127,3188,2899,3220,27786,12690,29780,3275,3754,4193,29998,91,4523,3348], +"ecmascript5", +"ecmascript6", +"extensions", +"addons", +[0,3230,1746,11415,2844,18035,27812,2382,27814,3766,18037,3469,1747], +[1,2343,19105], +[0,19106,19107,19109,2523], +[0,1605,1541,1292,4218,4545,4220,27822], +[0,2228], +"es5 shim", +[0,3233,27826,27827,20863,27829,27830], +[1,2343,19111], +[0,19112,19107,19113,2523], +[0,1541,1544,3233,27835,27822], +[0,3233,27837,27826,27827,27838,12619,20863,27840], +"rettime", +[1,2343,19116], +[0,19117,19131,19133,4139], +[0,27847,1676,3230,27849,27852,27855,27856,27857,27859,3427], +"json3", +[2,1379,4042], +"git-repo-", +[2,19120,15525], +[2,1379,4650], +[2,1379,4535], +"-phantom", +[2,3736,19124], +"6-plugin-strip-class-callcheck", +[2,1172,19126], +[3,14198,32], +"nstants", +[2,19128,19129], +[0,1166,1503,1177,1903,1920,1938,1954,1958,1970,27861,27866,27869,27872,27873,27874,27875,3421], +"futures", +[0,3236,3230,1550,13392], +[1,2343,19135], +[0,19136,19137,19139,2523], +[0,1304,1676,1704,3440,16128], +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4237,4342], +[3,7872,9], +[0,2026,27,2942,2663], +[1,2343,19141], +[0,7936,7938,7939,2399], +[1,2343,19143], +[0,19144,19147,19148,2399], +[0,4729,4038,1676,27764,4238,27897,27899,3183,9241,3084,27902,1537,27910,3923,27905,14731], +"es6-tests", +[2,12790,19145], +[0,3421,1429,4389,4193,1177,2202,3188,4039,4170,4216,668,2203,4474,1457,1894,27912,442,3697,3980,91,4856,4874,19325,6513,1834,27918,27920,19181,12310,5536,5476,10936,27924,1938,1895,1955,1011,1567,5478,27915,1009,10614], +[0,3241,27927,20001,20003], +[1,2343,19150], +[0,0,19152,2514,4139], +[2,31089,9224], +[0,2675,2899,1177,1894,2025,2990], +[2,31715,31719], +[1,2343,19155], +[0,19156,19157,19158,2399], +[0,27936,1525,1676,25625,25635], +[0,192,5467,16607,6065,16608,16612,2899,4131,4255], +[0,18035,3243,14872,36,27939,26472,27940,27942,25635,27944,26472,27945,13531,27948], +[1,2343,19160], +[0,19162,19163,19164,2443], +"special", +[0,27959,617,9213,27962,977,2220,27964,9218,9219,3509,3527,19114,4266,9221,4454,4507,27955,4747], +[0,192,5467,19151,19181,442,17982,5497,9225,9226,8648,6494,27966,4874,19153,1009,1011,5474,1170,13662,1527,1610,1613,1652,668,8161,1177,1895,1955,2026,2078,19213,2070,2832,27967,2931,2990,27969,1894,23535,3957,4039,9245,4493,91,4523,4548,4027,1984,9250,2924,9258,3244], +[0,5592,3212,8788,6812,6688,36,11100,1852,5472,6400,10768], +[1,2343,19166], +[0,19169,19170,19173,2537], +[2,18756,4219], +[2,1370,19167], +[0,27978,1410,1537,3188,3427,1000,1695], +[0,1693,2026,2139,27981,2899,3421,4039,4255,27984], +"-everywhere", +[2,10906,19171], +[0,1669,3689,15237,2139,27986,2026,2663], +[1,2343,19175], +[0,19176,8134,19178,2537], +[0,22970,27992,3181], +[3,442,8], +[0,18132,2100,2070,21543,21544,3529,13777,3181,13017,11601,21520], +"config-array", +[2,19177,19179], +[2,19177,1998], +"@humanwhocodes/module-importer", +[3,19182,15], +[2,19183,1153], +"@nodelib/fs.walk", +"esquery", +"imurmurhash", +"-without-jsonify", +[2,2851,19188], +"levn", +[1,2343,19196], +"@eslint/co", +[2,19192,23], +[2,442,1803], +"@trunkio/launcher", +[0,19197,19198,19199,2523], +[0,4538,2657,4100], +[0,3421,27999,2899,1177,3188,4039,4339,4012,1948], +[0,2090,9229,2141,3101,6949], +[1,2343,19201], +[0,19211,19212,19214,2537], +[2,3192,5130], +[2,11095,19202], +[3,1992,9], +"lease", +[2,19204,19205], +"eslint-r", +"ule-composer", +[2,19207,19208], +"eslump", +[0,2100,2151,2859,1209,5303,3445,3348], +[0,2765,3421,33373,3980], +"fs-teardown", +[0,1649,1936,28007,3256,28009,28012], +[1,2343,19217], +"metascraper", +[0,0,19228,19229,2537], +"-description", +[2,19216,19218], +[3,19219,12], +[2,19220,158], +[2,19220,11255], +[2,19222,4147], +[2,19220,17913], +"node-po", +"lyfill-webpack-plugin", +[2,19225,19226], +[0,1999,1429,4770,2899,1177,2272,4042,3758,4535], +[0,3257,1283,5354,1797], +"npm-license", +"polyfills", +[2,4065,19231], +[1,2343,19234], +[0,0,19236,19237,2399], +"yorkie", +[0,1759,2323,2384,2508,2675,2297,2881,2908,2915,28023,28024,1894,25851,2907,4039,4042,4072,28027], +[0,10052,8691,28030,7131,6333,7518], +"sql-escaper", +[1,2343,19240], +[0,19241,19245,2514,2443], +[0,1325,3923,4100,28036], +"ape-runner", +[2,1285,19242], +"eslint-f", +[0,1087,1177,4127,28038,28039,28040], +"ind-rules", +[2,19244,19246], +[1,2343,19249], +[0,19250,19251,19252,2537], +[0,3080,24383,18073,2685,19238,28047,28049,28052], +[0,1414,4494,28059,2203,1894,1317,1610,442,3560,91,4874,28056,19181,27928,6473,1895,1955,1011,28058,1009,13188], +[0,3259,5576,36], +"using-browser-globals", +[2,12084,19253], +[1,2343,19256], +[0,19257,19258,19259,2443], +[0,21243,3427,21246], +[0,2759,1362,2899], +[0,19138,1862,28067,21244,5194], +[1,2343,19264], +[3,3703,10], +[3,9487,11], +[2,19261,19262], +[0,0,19265,19266,2537], +[0,28072], +[0,3417,202,15525,10057,28074,202,17180,1263], +[2,15998,23720], +[1,2343,19272], +"quality", +"jslint", +"code style", +[0,0,19274,2514,2537], +"verify", +[0,1326,1525,2070,705,3923,4384,1695], +[1,2343,19276], +[0,0,19277,19278,2537], +[0,4548,4874,91], +[0,28088,2382,705,1781,18037,3166,2378,18035], +[1,2343,19283], +" config", +[2,1177,19280], +"@lezer/highlight", +[0,19284,19285,19287,2523], +[0,5012,1634,1639,28094,26902,28095,17011,7917], +[0,10821,10828,10837,5087,4874,5090,4880,1177,10619,2675,28098,1192,2968,28101,2990,1894,3744,89,3824,3904,4039,4232,4469,4484,91,2924,4676,4681,4749], +[2,15289,17540], +[0,1623,590,592,3528,2378,2994,89,676,7164,7165,369,4636,4627,4315,28103,5547,5376], +[2,19289,1564], +[3,28155,14], +[1,2343,19291], +[0,0,0,19292,4139], +[0,3348,3778,3265,1002], +[1,2343,19294], +[0,19295,19296,19297,2537], +[0,18509,1170,1809,2151,28115,28116,3079,3275,28118,4108,4232,4449,4747], +[0,5245,4864,28120,5087,21621,4874,28123,6520,4892,1009,1011,1804,1177,1895,1955,1192,3541,1894,4039,4469,91,2924,4677], +[0,28125,1804,1896,970,21009], +[1,2343,19299], +[0,19300,19303,19304,2487], +[0,4729,3467,4390,2806,3445,3348,1170,1473,2072,4747,20991,1209,3078,3127,3188,3483,4135,3013,4708,4734,2003,3742,4167,1137,1457,1894,3761,4473,3181,28130,1483,4183,4227,91,28132,8612,28133,19499,28135,20949,28136,28137,14774,28142,3762,635,28145,28151,19288,1573,20934,28155,28158,28164,28214,28167], +"eslint-patch", +[2,9112,19301], +[0,1429,2228,2675,2899,4193,26212,2759,9241,13214,4856,4874,7819,2314,2990,9357,28177,28178,6513,4892,28180,4870,28182,5254,28184,28187,28189,7812,7749,14352,28192,28195,1431,2258,4232,2247,2283,33046,28203,9417,28206,5244,28211,1567], +[0,3271,91,5284], +[1,2343,19306], +[0,19307,19321,19322,2487], +[0,28219,28223,28224,1759,2665,28225,3232,3519,1552,18730,28228,26940,4545,3348,28230], +" Standard Style", +[2,17626,19308], +"code checker", +"code linter", +"code st", +"andards", +[2,19312,19313], +"policy", +" style", +[2,4255,19316], +[2,590,16792], +"style ", +"style linter", +[0,811,8850,816,23689,4874,1009,28232,1610,1177,21564,1938,1953,1958,2323,2441,28233,2765,2766,671,3275,3421,28234,3752,4039,4042,4193,4232,4255,4474,15097,91,28235,2924,18237], +[0,28238,28241,17134,28242,28243,207,28244,28245,28246,28247,28248,28249,28251,28253,28256,28258,28260,28261,28265,28266,4420,28267,28269,28271,28273,28274,28275,28277,28280], +[1,2343,19324], +[0,19326,19327,19328,34352], +"@types/tape", +[0,2714,1149,4747,28285], +[0,3421,4616,1177,1596,28287,3980,10614], +[0,8309,28289,28291], +[1,2343,19330], +[0,0,19331,19340,2523], +[0,2899,4039,21228], +[3,19180,15], +[2,19332,3323], +"__js", +[2,5601,19334], +"automd", +"eslint-t", +"ypegen", +[2,19337,19338], +[0,200,1585], +[1,2343,19342], +[0,0,19343,19345,2523], +[0,4874,4880,1009,1011,1587,1177,1895,1955,1959,1961,1161,1894,4484,91], +[3,7844,24], +[0,28303,6085,89,1896,28304,12780,190,5995], +[1,2343,19351], +"xoxo", +"hugs", +"kisses", +"happy", +[0,19352,19354,19355,2537], +[0,1149,3188,4545,3012,28310], +"happiness", +[0,1429,2899,4193,705,1525,28312], +[0,18035,27814,21687], +[1,2343,19357], +[0,19358,19360,19361,2523], +[0,2685,4113], +"cabin", +[0,2861,17910,2899,3756,3760,4170,4193,4734], +[0,27,2671,2869,705,5576,15237,9229,2658,25386,17481,8426,8431,977,7436], +[1,2343,19363], +[0,19364,0,19365,2523], +[0,28324,28325,1525,1595,2720], +[0,200,12659,13527,1523,6876,678,4636], +"boolean", +[1,2343,19368], +[0,19369,19370,19371,4139], +[0,28331,1149,28333,13223,1483,1512,1525,1645,2098,28335,1209,3188,28340,28342,28344,28346,3718,4135,28348,4717,4736], +[0,28353,1429,1705,28356,18420,1177,1942,13231,1951,1966,2822,2899,3297,3421,28358,3938,4153,4167,4193,4734], +[0,3283,28360,5592,5472,15656,28362,4030], +[1,2343,19373], +[0,19374,19375,19376,2537], +[0,30869,28367,28371,28372,13471,13474,13476,30243,13495,13497,13500,13502,28373,1537,2674,28375,27967,2854,28379,3923,28380,4135,4715], +[0,7709,28384,36559,28387,28390,28394,692,28395,28396,28399,1091,1149,1168,28400,1414,13838,1525,1570,28401,13848,1177,1942,28406,2070,2212,2675,1776,2990,3019,3297,3747,3752,4039,28408,4193,4339], +[0,13539,6681,27838,14029,28411,28413], +[2,5223,594], +[2,1876,19377], +[1,2343,19381], +"is-bun-module", +[0,19382,19383,19384,2523], +[0,97,28418,977,12105,3424,28420,3698,28423,3348], +[0,5154,48,53,14167,83,87,90,92,28436,842,16145,966,968,972,20562,974,5087,4874,28426,28425,4880,4883,1165,28435,28433,1540,1637,1192,2780,2802,3244,3286,3561,3566,3640,89,3824,4705], +[0,89,6710,3424,2038,28438,5165,3287,16944,5168,28439], +"@types/is-", +[2,19385,2070], +[1,2343,19388], +[0,0,0,19389,2523], +[0,3286,1149,28445,28446], +"node-lib", +[1,2343,19392], +[0,0,0,19393,2399], +[0,1098,1973,5472,3212,8788,4627,12442,7170,9962,11100,28453,28454,4967,6400,1192,2765,1843,13106,7190], +[1,2343,19395], +[0,19396,0,19397,2537], +[0,13,28459,8597,1668,4484], +[0,5127,4964,1098,181,5130,4967], +[1,2343,19406], +[3,16405,17], +"defaults", +[2,19399,19400], +"-azure-pipelines-cli", +[2,1529,19402], +"riendly-formatter", +[2,19244,19404], +[0,19407,19408,19409,2537], +[0,2212,3348,4745,16509,2057,3028], +[0,1429,1437,2899,4193,4874], +[0,3290,28467,28468,3014,28469], +[1,2343,19416], +"enhance", +"-visitors", +[2,19411,19412], +[2,1876,594], +"espurify", +[0,0,19417,2514,2399], +[0,1429,1544,2899,3754,4151,4333], +"-spelling-correcter", +[2,3166,19418], +[1,2343,19423], +"ava-rule-tester", +[2,1876,19421], +[0,19424,19425,19426,2487], +[0,1676,28480,19400,1804,28483,28484,2835,28485,3188,16112,3441,4039,28486,4238], +[0,1149,1304,27731,1362,1429,1431,1177,1895,1955,2026,2675,2899,28488,3246,3549,1894,4151,4237], +[0,3292,1804], +[1,2343,19428], +[0,19429,19430,19431,2487], +[0,28494,28498,28500,4856,28502,14552,11869,15374,1371,28503,1437,1458,1483,28504,28505,1759,1797,1842,2070,2832,1209,3181,3183,2899,28510,3445,3467,20460,4130,4135,28512,4294,4558,3348], +[0,221,842,4874,1009,1011,1587,1610,1177,2675,2742,2822,2990,3200,4925,28514,28517,3215,3297,3421,89,3824,4039,4146,4474,4481,28519], +[0,3294,28521,28522,5472,11132,14336,11861,28525,11862,4627,11857,1973,1388,5131,8791,13426,1649,2899,13428], +[1,2343,19433], +[0,19437,19447,19450,4139], +"ast-m", +"etadata-inferer", +[2,19434,19435], +[0,11124,826,28535,18248,3509], +[2,19192,13172], +[3,5536,14], +"16", +[2,19439,19440], +"aniuse-lite", +[2,4857,19442], +[3,6309,16], +"moize", +[2,19444,19445], +[0,11134,28537,1389,2675,2832,8821,2990,2899,28539,3421,1894,3752,28542,28543], +"config-erb", +[2,15086,19448], +[0,1973,5472,21147,3212,4731,36], +"kangax", +[1,2343,19453], +[0,19454,19455,2514,2537], +[0,28550,617,2854], +[0,2212,3421,1429,1192,2899,4193,1177,4039,1894,2139,1719,3752,4196,91,3400,15342,4131,1954,1951,826,1938,1958,1895,1903,7935], +[1,2343,19457], +[0,0,19458,19459,2443], +[0,1317,1326,28556,1177,2151,29197,3697,4135], +[0,28558,28559,11154,970,1326,3122,14655,3263,3299], +[1,2343,19461], +[0,19465,19470,19471,2537], +"/plugin-pwa", +[2,4613,19462], +[2,10982,19463], +[0,1496], +"eslint4b", +[3,4630,11], +[2,19467,6038], +"vuepress", +[0,3421,2228,2899,4170,1596,2240,18463,91,4874,18555,1506,28565,22081,2247,2283,28567,28570], +[0,2325,20164,2703,6884,3250,3151,6943,202,3143,3048], +"exported", +"eslint-env", +"eslint-en", +[2,19474,4000], +"eslint-d", +"isable", +[2,19476,19477], +[2,19478,10240], +[3,19479,15], +"next-line", +[2,19480,19481], +[1,2343,19484], +[0,0,19485,19486,2537], +[0,4874,28577,2151,2675,2899,3421,4039,91,28580], +[0,202,3111,13017,6956,28582,6899,6726,2382,13626,28583,1745], +[1,2343,19495], +[3,8097,32], +[3,1879,9], +"mments", +[2,19489,19490], +[2,19488,19491], +"ot-an-aardvark", +[2,16819,19493], +[0,19496,19497,19498,2487], +[0,1672,28589,28590,2179,3183,3330,814,4135], +[0,4874,1177,1938,2675,2990,1894,4384,28593,4453,4474,91], +[0,22687,2999,4345,3233,2282], +"@foxt/js-srp", +[2,4284,12118], +[1,2343,19506], +[3,15471,15], +"anonical", +[2,19502,19503], +"gitdown", +[0,13856,11488,19507,2443], +[0,3308,7204,4014,28599,2090,14629,17721,2150], +[1,2343,19509], +[0,19510,19511,19517,2537], +[0,21642,28604,28605,28608], +[0,10614,842,5601,1009,1011,7677,17298,1622,1177,17300,1930,1942,1945,1948,1953,17303,17306,1964,1985,17308,2675,17310,2931,2990,3124,3125,3390,17312,1894,17314,3708,3980,28611,17318,4493,91,1984,17319], +"@html-eslint/eslint-plugin", +[3,19512,13], +[2,19513,57], +"link-check", +[2,3115,19515], +[0,3113,2869,26800,26799,28613,28614,28615,28617,28618,28619], +[1,2343,19519], +[0,19520,19521,19529,2537], +[0,16566,28624,21163], +[0,1079,13867,1410,1414,1429,1431,28626,21480,1596,2139,13870,2899,3480,28628,4481,1906], +[2,13039,7015], +[3,1143,17], +"indlastindex", +[2,19523,19524], +"doctrine", +[2,17612,202], +"object.g", +[0,1612,27,1862,705,7085,7289,4731,7102], +"roupby", +[2,19528,19530], +[1,2343,19536], +"/template-parser", +[2,1177,19533], +[2,12908,19534], +[0,0,19537,19542,2487], +[0,1389,1525,1610,1177,28635,2026,2297,2871,2881,2891,2895,2897,2900,2904,2912,2915,2921,28636,2925,2899,3202,28638,3421,15767,2924,4677,28639], +"escope", +"fs-copy-file-sync", +"linklocal", +[2,3045,4552], +[0,28641,28642,28643,28644,1616,12588,28645,28646,28647,28648,27,2671,3135,11996,28649,28650,28651,28652,28653,4160,28654,28655,28656,21000,28657,28658,28659], +[1,2343,19546], +"npm-which", +[2,4523,1574], +[0,19547,19548,19549,34352], +[0,1170,1676,1209], +[0,1429,2899,3752,4193], +[0,1885,6599,6645,586,12296,28666,28647,28667,2109,12295,1121,8899], +[1,2343,19551], +[0,19556,19557,19558,34352], +"@schemastore/package", +"ts-export-assignment", +[2,13996,19553], +[2,13970,19554], +[0,1362,3310], +[0,1429,1177,1192,4193], +[0,28674,28676,28677,1885,14554,28678,28679,28680,28681], +"-repositories", +[2,1992,19559], +[1,2343,19562], +[0,19563,19564,19572,2537], +[0,16473,28688,2215,26567,3368,3727,4135,4390,27921,4707], +[0,1326,1610,1177,2899,3263,29197,28691], +"@es-", +"joy/jsdoccomment", +[2,19565,19566], +"are-docs-informative", +[2,13721,5651], +"spdx-expression-parse", +"synckit", +[0,970,11154,1237,3122,14655,1326,14654], +"@es-joy/", +[2,19573,1875], +[3,19567,13], +[2,4522,1574], +[2,19575,19576], +"@hkdobrev/run-if-changed", +"pree", +[2,5600,19579], +[2,5600,3766], +"defaultsdeep", +[2,6308,19582], +"@types/sp", +"dx-expression-parse", +[2,19584,19585], +[3,5210,11], +[2,1226,19587], +"ype-", +"pratt-parser", +[2,19589,19590], +[2,13587,19591], +[2,3032,1697], +[1,2343,19596], +"open-editor", +[0,19597,19598,19599,2523], +[0,1632,2591], +[0,16868,1448,1610,1177,28698,2616,3321,28699,28702,15512,28704,2654,28706,28707,3493,4039,25213,4257,4474,4749], +[0,1936,57,6710,91], +[1,2343,19604], +[0,68,5522,107,19492,19194,19605,19609,19344,23339,6503,19616,4874,5254,1009,1011,1414,19619,668,1177,1895,1933,19620,1942,19622,1945,1948,1953,19623,1955,1964,1988,17308,1994,2018,2203,2899,3486,1894,4135,4320,19624,4323,19626,19629,1531,4494,91,4523,19630,4614,4630], +[0,13678,13679,13681,34352], +[1,2343,34428], +[0,19613,19618,19631,2523], +"@ota-meshi/eslint-plugin", +[3,19605,11], +"-kit-eslint-editor-vue", +[2,13755,19607], +[2,19606,19608], +"-scope", +[2,5601,19610], +[3,19611,14], +[0,1149,28713,1676,2026,2070,3507,1997,4135,4148,28715,28716,28717,4707,4729,4747], +"@types/na", +"tural-compare", +[2,19614,19615], +"xbytes", +[0,1429,2151,1161,2272,2899,3378,1862,4039], +"env-cmd", +[2,1931,5550], +[2,18008,8546], +[2,17585,19621], +[2,1954,8770], +[2,4946,12054], +[3,5978,26], +[2,19625,188], +[3,4330,11], +"tylus", +[2,19627,19628], +[2,4609,19466], +[0,1676,6782,3323,15267], +"jsonc", +[1,2343,19634], +[0,19635,19636,19642,2443], +[0,1080,1560,1704,2145,20103,3164,3171,3494,3781,1000], +[0,4856,6503,1009,1011,1429,1177,1881,1895,1938,2675,2899,3421,1894,4193,4196,4474,4481,91], +"-flow", +[2,12184,19637], +"axobject-query", +"damerau-levenshtein", +"es-iterator-helpers", +[0,3212,13106,28726,6710,676,5472,1973,27,28728], +[1,2343,19649], +"jsx-ast-utils", +[2,9551,2640], +"regex-test", +[2,4099,19646], +[2,18996,7015], +[0,19651,19652,19653,2399], +"to-ast", +[0,28733,2755,4135,28735,3348,4707], +[0,1587,1610,1177,1900,1903,1938,1954,1958,2675,1192,2990,28737,1894,4039], +[0,28740,28743,22005,28744,22011,15844,28747,28748,9044], +[1,2343,19655], +[0,19656,19658,19659,2523], +[0,1304], +[2,18576,13064], +[0,1364,2026,2899,4170,4342], +[0,3424,28438], +[1,2343,19661], +[0,16583,11580,11581,4139], +[1,2343,19663], +[0,19664,19665,19666,4139], +[0,20584,3188,3278,3368,3393,3411,1997,4039,4135,4390], +[0,1168,2272,3297,4389], +[0,970,11154,1237,3122,14655,1326,17180], +[1,2343,19668], +[0,19669,19670,19672,2537], +[0,3299], +[0,2899,1177,28768,640,1610,91,4874,6503,1011,1009], +[2,1927,8982], +[0,28770,6621,7009,28771,28772,28773], +"ts-i", +[1,2343,19677], +"gnore-import", +[2,19673,19675], +[0,19678,0,19679,4139], +[0,28792,28790,28782,28786,1304,1309,1594,2026,2151,28783,3368,4135], +[0,6038,8899,28794,2124], +[1,2343,19681], +[0,19682,19683,19684,2399], +[0,3263,2164,2070,3157,1437,1209,640,2185,28799,1615,28800,28802,28804,26567], +[0,3421,2899,1177,4039,2151,28806], +[0,1623,22022,7121,2278,4329,590], +[1,2343,19686], +[0,19690,19691,19693,2537], +"-helpers", +[2,9654,19687], +[2,7627,19688], +[0,12680,28813,28816], +[0,3421,4389,4193,1090,1177], +[3,3995,13], +[0,16618,5957,12692,1605,28821,27105], +[1,2343,19695], +[0,19697,0,19698,2537], +"@chromatic-com/storybook", +[0,3460,1512,3171], +[0,27,2947,2090,36], +[1,2343,19700], +[0,0,19701,19702,2523], +[0,3421], +[0,6926,6668,3348], +[1,2343,19704], +[0,0,19705,19710,2399], +[0,2151,2899], +[2,19707,103], +[3,35573,13], +"ug", +[2,17304,19708], +[0,28837,2282,28838], +[3,3708,17], +"kg", +[2,19711,19712], +[1,2343,19715], +[0,19716,0,19717,4139], +[0,6523,4747], +[0,28844,6574,11100,28845,6807,2013,28847,28849,28850,5957], +[1,2343,19719], +[0,19720,19721,19722,2537], +[0,3354], +[0,28856,28858,4874,1177,1894,3706,4493,91,8552,1984], +[0,28860,57,9381,3354,28861], +[1,2343,19727], +[3,19525,24], +"tosorted", +[2,5613,19725], +[0,19730,19733,19737,2443], +"repeat", +[2,18996,19728], +[0,2571,2741], +[2,5609,14255], +[3,5235,22], +[0,13614,1158,1177,2708,17400,3410,3421,3435,4103,4389], +"unction-bind", +[2,19732,19734], +"ls-engines", +[0,2051,6970,28869,1496,1585,24135], +[1,2343,19739], +[0,19740,19741,19742,2523], +[0,2212,3263,2856,3776,1209,4391,2151,640,3337], +[0,4647,2899,2272,1168,1448,28877,2759,1173,1596,2820,28879,17370,1267], +[0,28881,28882,3358,970], +[1,2343,19744], +[0,0,19746,19747,2487], +"refa", +[0,28043,1409,1414,1177,1895,2203,28890,28891,28892,28894,1894,2658,28895,18661], +[0,28897], +"analysis", +"-ast-analysis", +[2,6961,19749], +"scslre", +[1,2343,19760], +"eslint-s", +"-rule-tester", +[2,11298,19754], +[2,19753,19755], +[2,19758,29135], +[3,17306,17], +"@types/pako", +[0,19762,19763,19764,2523], +[2,3192,15264], +[0,1457,1676,13775,3181,28904,4135,18174,4351,4453,28903], +[0,192,5467,1149,1506,1177,2675,2899,3421,3752,4131,4170], +[0,200,3233,3233,5001,22687,28908,2999,7009], +[1,2343,19766], +[0,19768,0,2514,2523], +"safe-regex", +[0,1797,4384], +[3,19494,16], +"desecurity", +[2,19769,19770], +[1,2343,19774], +[2,202,1965], +[0,19775,19776,19777,2537], +[0,4039,1764,28917,4747,4135], +[0,705,4389], +[0,28921,3364,7242,28125,13527], +[3,3568,11], +"red-black-tree", +[2,19778,19779], +[1,2343,19785], +"al-red-black-tree", +[2,19076,19782], +[2,5537,19783], +[0,19787,0,19788,2523], +"sonarjs", +[0,28367,1091,1092,20437,12384,1096,28927,1170,1364,1457,1575,1594,1648,2026,9243,28929,28930,2070,2593,28933,28934,2856,28935,2863,28936,3083,12792,28940,3230,3241,3277,16617,28859,3361,3445,3519,28944,1552,2999,4010,28945,28948,4709,7801,4745,4747], +[0,28950,3366,5284,6710,5130,5995,4967,12660,28951,28954,28956,28957,1781,28959,2844,2856,4745,1896,28960], +[1,2343,19790], +[0,19791,9888,19792,2537], +[0,4545,1437], +[0,10446,28967,9753,14690,57], +[1,2343,19794], +[0,19796,6538,2514,2523], +[2,4353,67], +[0,23432], +[2,19612,594], +[2,5600,594], +"@types/less", +[2,13058,3675], +[3,4890,11], +[2,19801,4332], +"svelte-i18n", +[1,2343,19806], +"sveltejs", +[0,0,19807,19808,4139], +[0,2398,3183,2899], +[0,28977,28978,28979,2090,28980,17996,18442,28981,7517,2150,3374,3403,10903,15323,4207,28982,28983,28984,28985], +[1,2343,19810], +[0,0,8134,19813,2537], +"-formatting", +[2,1939,19811], +[0,3374,1002,12831,15427,1871,28992,28994,3766,3767,28996,4301,6678,28997], +[1,2343,19815], +[0,0,0,19816,2523], +[0,29004,28992,1388], +[1,2343,19818], +[0,19819,19820,19821,2537], +[0,1437,16064,1494,1595,1700,29013,1874,2020,5989,29016,2613,15980,2704,2720,2744,29018,29020,29022,2991,29023,3074,3157,29024,29025,21420,3445,29026,27534,3505,27168,3919,4094,4135,5513,26573,4562], +[0,21642,5254,1166,1532,24491,2151,29028,4193,4294,4400,29030,1906], +[0,13326,200,3378,20001,3358,6645,15525,15208,1528], +[1,2343,19823], +[0,19828,19830,19831,2537], +[2,1463,6961], +"regexp-", +"regexp-tree", +"regjsparser", +[0,3242,2714,4390,2070,3368,3917,4248,23433,1437,3478,4707,23432,3483,4135,9448,1458,29037,21505,640,3727,29039,3181,9451,9452,2976,2979,2981,29042,29044,4425,29051,2215,29053,25881,29054,29055,25888,29056,29057,9459,4351,2613,3386,3762,635,29059,25893,26567,29061,9462,29063,643,9465,3397,29066,29067,9476,9479,9539,19570,638,4588,9496,9501,9506], +"@lubien/fixture-beta-package", +[0,1091,4384,1687,3297,9542,3984,4039,1483,3988,29069,1092,29070,3393,10630,29071,29073,9515,9516,26037,29077], +[0,1161,5260,6878,6661], +[1,2343,19833], +[0,19834,19840,19845,2537], +[0,1499,3467,3157,1437,2020,2742,1695,29085,2205,1209,4135,7094,3537,1703,2720,3181,3309,4294,4425,3505,29088,9478,6045,14564,29084,4562,29087], +"@ver", +"/eslint-config", +[2,5401,19836], +[2,19835,19837], +"bumpp", +[0,1906,1173,1282,1267,1255,1245], +" eslint plugin", +[2,1984,19841], +"eslint ", +[2,19843,1932], +[0,3378,29093,4796,17507,13729,4354,24313,5592,24095,200,6953,29095,29096,7242,4797], +[1,2343,19847], +[0,0,19848,19852,2537], +[0,29101,17212,4856,9417,29103,29104,12458,29105,7637,29111,4870,6503,4874,29115,29117,20374,6510,7812,5254,29122,6513,29125,1009,1011,1420,1429,1431,21480,1437,1483,1525,1610,20573,1177,1895,29128,1903,1938,1942,1953,1958,2071,27125,2105,29129,2613,2714,2822,2858,29133,3019,1209,3125,2899,3397,3400,3478,13723,3530,1894,3730,29136,29087,4038,4039,11054,4135,29138,4170,4193,4232,18201,4294,4474,91,29139,4558,4562,29140,1983,29141,29142,26744,4749], +"name-", +[2,19849,1155], +[2,4732,19850], +[0,4796,3378,6661,3076,29144,18280], +[2,4807,19851], +[1,2343,19855], +[0,19856,6538,2514,2523], +[0,2613,3727,4135,4588], +[1,2343,19858], +[0,19859,19865,19867,2487], +[0,1091,8531,1437,1595,1676,2205,2687,2745,2858,3074,3157,3545,4135,4207,4300,4507,4588], +[3,10879,16], +[2,19860,13921], +"importx", +"ink-", +[2,19863,1975], +[0,5087,4874,1009,1011,668,29154,1177,29155,29158,1930,1938,1939,1955,1982,2089,1192,17312,29160,1894,4468,91], +"eslint-test", +[0,671,9654,6661,13716,29162,3390], +[1,2343,19869], +[0,19870,19872,2514,4139], +[0,15980,3727], +"esrecurse", +[0,635,9516,9515,29169,4384], +[1,2343,19874], +[0,19875,19876,19879,2399], +[0,9459,25336,26567,21505,29176,29174,3386,3727], +[0,9516,9515,9448,3297,28691,4248,4384], +[2,1006,13060], +"json-diff", +[0,3378,29179,1612], +[1,2343,19881], +[0,19882,19885,19886,2537], +[0,1437,26079,3919,3181,1110,1615,4165,3152,29185], +[3,8724,21], +[2,19883,676], +[0,3421,4749,2899,1177,4039,1503,3479,2151,4874,3696,1280,29188,13983,1225], +[0,200,1523,29190,4990,3378,29191,18462,21003,4144,12804,5957], +[1,2343,19888], +[0,19889,19890,19886,2443], +[0,4707,26079,3530,1110,1615,4165,3152,9488], +[0,1414,2931,4749,1776,2899,1177,23909,29197,1159,17529], +[1,2343,19892], +[0,19893,8134,19894,2523], +[0,16687,20789], +[0,3378,18462,3403,3383,20052,17180,20054,1508,200,6876,16701,8435], +"-fb", +"esprima-fb", +[1,2343,19898], +[0,0,19899,19900,2523], +[0,5087,4874,1009,1011,10817,1177,1895,1192,2990,26230,4039,4042,4468,91], +[0,29208,1745,29210], +[1,2343,19902], +[0,19903,19904,19915,2537], +[0,1437,1479,1525,1676,2720,3741], +[0,1429,2899,3215,4255], +"escomplex-js", +"thing.js", +[2,7067,19906], +[3,2912,12], +"techpreview-launcher", +[2,19908,19909], +[2,17485,18551], +[2,813,19911], +"8.0.0", +[2,5857,19913], +[0,18497,3378,29218], +[1,2343,19917], +[0,19918,19919,19923,2487], +[0,2720,3776], +[0,1173,1212,1245,29224,1280,3400], +"gulp-ta", +"g-version", +[2,19920,19921], +[0,3378,200,8429,1523,3888,8791,24095,3409,29227], +[1,2343,19925], +[0,19926,19927,19928,2487], +[0,2571,3183], +[0,13614,1159,9254,1177,2708,2807,3421,4103,4389], +[0,3410,16774], +[1,2343,19930], +[0,19931,19932,2514,2487], +[0,9892,25886,29239,10744], +[0,4384,9515,9516], +[1,2343,19934], +[0,0,19935,2514,2537], +[0,1429,2814,2832,2899,29246], +[1,2343,19938], +[2,2009,10896], +[0,19947,19949,19951,2537], +"@ethereumjs/config-nyc", +[3,19939,19], +[2,19940,1894], +[2,19940,11540], +[3,19942,21], +[2,19943,671], +[3,17583,11], +"karma-tap", +[0,1437,1482,29251,2674,2720,29253,4135,8363,4747], +"typestrict", +[0,1366,1501,19771,2556,620,3203], +"transactions", +[0,1965,3413,19773], +[1,2343,19953], +[0,19954,19958,19959,2523], +[0,29260], +"-cryptography", +[2,9439,19955], +"rlp", +[0,5087,4874,1009,1011,1587,1177,1895,1955,2675,1192,1894,3720,4039,4468,4474,91], +[0,3414,29263,200,5122,8310,18496,89,202,91,5284,2924,1192,4967,5995,12660], +[1,2343,19966], +"@types/assert", +"cp256k1", +[2,5252,19962], +"karma-t", +[2,19964,2528], +[0,0,19967,19968,2487], +[0,1429,2258,2277,2298,2300,23167,2297,2878,2881,2895,2900,2904,2915,3006,2899], +[0,3415,6988,1671,6901,29269,29271], +[1,2343,19970], +[0,19973,19975,19978,2523], +"es-lookup-scope", +"os-tmpdir", +[0,29276,29277,1525], +"qs-iconv", +[0,48,53,87,94,1195,1208,1212,1544,1593,1610,1177,1881,1938,2026,2151,2182,29280,29282,29283,29285,3421,3524,4151,4535,4537,2924], +"eval", +"evaulate", +[0,1283,17950], +[1,2343,19980], +[0,0,0,19981,2523], +[0,2703,202], +"pause-stream", +"combiner", +[2,4279,19983], +[1,2343,19990], +"asynct", +"it-is", +"stream-spec", +"ubelt", +[0,0,19992,19993,2399], +"flatmap", +[0,5517,13614,23237,19325,1159,1414,9254,1177,2807,2708,3410,4103,4389], +[0,3417,3418,2649], +[1,2343,19995], +[0,0,0,19996,2399], +[0,1623,12080,29300,13777,3585], +"addEventListener", +"addListener", +"pub/sub", +"emits", +"publish", +[1,2343,20004], +"subscribe", +[0,20005,0,20006,2537], +[0,1797,3467,4449,2117,3445,4745,1170,1495,4484,4747,1759,2687,4135,2089,1836,2777,3181,4459,1477,3527,4393,1480,2149,2858,3404,4290,4748,1763,4480,29306,24759,29308,29309,29310,29313,29317], +[0,9621,9622,8174,9623,9624,9625,9626,9627,9628,9659,9648,9649,29319], +[1,2343,20013], +"-browser", +"-browsers", +[2,7177,20009], +"sauce-", +"sauce-test", +[0,20017,20020,20021,2537], +"EventEmitter", +[2,20014,1276], +[2,20014,1278], +[0,14022,8697,29324,1573,1677,2102,2105,15261,2179,2070,11935,29325,14024,29328,11938,11940,11943,3093,29330,3478,29334,4025,4039,4174,29335,14025,4747], +"Events", +"reactor", +[0,29338,13103,4019,4232,4255,4257,4384,3348,4707], +[0,4504,16237,20049,5472], +[1,2343,20023], +[0,20024,20025,20026,2523], +[0,29358,8818,5941,28935,26865,13824,12285,3509,29349], +[0,29355,29359,29362,4874,4493,91,1984], +[0,5592,2210,3452,29365,29367,29368,29369,29370,3422,1118,27662,1745], +[1,2343,20028], +[0,20029,20030,20031,2537], +[0,29358,29377,2822,12285,8126], +[0,29355,7637,29380,3297,4493,91,1984], +[0,5592,1118,2210,1745,27662,29370,3422,3452,29369,29365,29368,29367,28360,8124], +[2,3159,591], +[2,13788,20032], +"human-", +[2,20034,7073], +[1,2343,20037], +[0,0,10435,2514,4139], +"final-newline", +[2,4293,20038], +[3,4759,11], +[1,2343,20045], +"get-node", +"is-in", +"is-in-ci", +[0,0,20046,20048,2523], +[0,1906,1166,1209,3130], +"is-running", +[0,3048,3426,2051,3583,6778,5286,5258,6805,29390,6422,1858,1388], +"subprocess", +"fork", +"execfile", +"bin", +[1,2343,20055], +"binaries", +[0,0,20056,20057,2537], +[0,1389,2323,2346,27608,29396,2436,2447,2463,2494,2496,2530,2272,2839,2297,2881,2900,2899], +[0,3048,3428,4160,3135], +[1,2343,20059], +[0,0,20060,20066,2487], +[0,13614,29404,1159,1593,22932,1855,1177,2133,2159,2070,29406,2569,29410,2708,2762,19073,3206,3410,3421,4103,23948,4135,19729,4389], +"stdio", +"stderr", +"drain", +"flush", +"3584", +[0,3430,7123,3048,1646,3721], +[1,2343,20068], +[0,0,20069,20070,2537], +[0,13614,13616,1177,14741,29416,2741,4389], +[0,6801,3432,6964,1858], +[1,2343,20073], +"-jsdom-abstract", +[0,0,20077,20078,4139], +"expect-", +[2,20074,594], +[2,552,20075], +[0,3421,1429,2899,1596,3202,29424], +[0,1697,3403,7318,29426,3038,3205,1758,3743,3048,7002,29428,29429,6692,3639,6803], +[1,2343,20080], +[0,20081,20084,20086,2487], +[0,1417,7272,13609,29440,2569,3433], +"mkal", +[2,1949,20082], +[0,13613,13614,1389,1177,2133,2159,13619,2571,3206,3410,3421,4103,6810,4389], +"pkg-pr-new", +[0,7276,3426,6789,2051,7107,6970,7288,6849,6763,6422,1858], +[1,2343,20089], +"type-check", +[0,20090,20091,20092,2487], +[0,1417,7272,13609,29440], +[0,13613,13614,20492,1159,9254,1177,2159,13619,2708,3410,3421,4103,4389], +[0,6944,6694,6801,3437,6693,7221,6615,7194,1858,3048,3432,6422,6763], +"orms", +[1,2343,34459], +[0,29450], +"array-f", +[0,3421,2899,1177,1954,1938,1958,1903,1948,1970], +"array-flatten", +"setprototypeof", +"merge-de", +[1,2343,20104], +"scriptors", +[2,20100,20102], +[0,20107,11686,20108,2537], +"-password", +[2,16722,20105], +[0,29456], +[0,3441,3046,6985,16114], +[1,2343,20110], +[0,20111,20112,20113,2537], +[0,29462,29464,1138,1457,1615,2687,4459], +[0,21122,4874,2675,2990,1894,4039,91], +[0,2070,2282,1444], +[1,2343,20115], +[0,20116,20118,20119,2523], +[0,29474,3029], +[2,30722,20731], +[0,6503,29476,1503,2272,2899,3203,3210,3421,4474,91], +[0,29478,28794,29479,24996,29480,25004,20181,29481,29483,6667], +"automatically", +[2,1163,8623], +[3,20121,11], +[2,20122,7120], +[2,20121,2353], +[1,2343,20126], +[0,20127,8002,20128,2523], +[0,29488,29490,28428,24488,28429,27908], +[0,1896,3445,3456,8423,8427,6587,8430,8428,10441,8429,1388,6038,8435,8433,1002,10443,10446,7058,1614,2978,1451,3729,5351,2090], +[1,2343,20130], +[0,20131,20132,20133,2523], +[0,2096,2185,3157,3445,4400], +[0,1166,2020,1906], +[0,13326,200,1896,3445,3456,8423,8427,6587,8430,8428,10441,8429,1388,6038,8435,8433,1002,10443,10446,1614,2978,1451,3729,5351,2090], +[1,2343,20135], +[0,20136,20138,20139,2487], +[0,29501,29505,12285], +"express3", +[0,5087,7637,8818,1170,29509,1192,2845,29512,3244,1894,4232,4468,4474,91], +[0,3452,8124,5576,1170,4967,1388,3212,91], +"partials", +[1,2343,20142], +[0,20143,20144,20145,2523], +[0,1677,2639,2854,3105,3744,89,3824,1155], +[0,68,470,1173,1248,15643,1596,1177,1879,1881,1938,1947,1958,1959,2200,2626,1192,3363,3400,705,4008,7707], +[0,8124,3452,29521,1936,1745,1179], +"unless", +[2,2032,20146], +[1,2343,20149], +[0,20152,20153,20154,2443], +"authn", +"authz", +[0,6825,3263], +[0,2070,705,4389], +[0,3455,29528,23196,29531], +[1,2343,20156], +[0,0,5795,2514,2487], +[1,2343,20158], +[0,20159,20160,2514,4139], +[0,29539,705], +[0,1173,1267,1177,1879,1938,1947,1959], +[1,2343,20162], +[0,20163,9839,20128,34352], +[0,2755], +"caching", +"expressjs", +[1,2343,20167], +[0,20168,20169,20172,2537], +[0,4720,3183], +[0,29551,4384], +"cjs-mock", +"hoare", +[0,7233,7058,5675,57,7119,200,1523], +"tRPC", +"RPC", +"express.js", +[2,10988,16957], +[1,2343,20180], +"fully-typed", +"type-safe", +[0,20187,20191,20192,4139], +"pi", +"typed-api", +"express-api", +"http-api", +"client-s", +[2,20185,2847], +[0,1637,29559,3561], +"unit-testing", +[2,13843,5576], +"web-de", +[0,1175,1193,1245,1257,1264,1628,1192,4307,2924], +[0,6829,11337,2054,16862,6707,7293,2924], +"velopment", +[2,20190,20193], +"web-api", +[1,2343,20197], +[0,20198,20199,20200,2443], +[0,29566,29567,4717,20088,19190,26007], +[0,29569,2899], +[0,14690,6802,29572,200], +[3,8286,12], +[2,20201,364], +"lient-", +"redirects", +[2,20203,20204], +[2,13224,20205], +[2,20201,20206], +[3,20207,13], +[1,2343,20210], +[0,20213,20214,20216,4139], +"reset-classic", +[2,20208,20211], +[0,1437,1477,1480,29018,16232,3074,29581,4290], +[0,4874,1166,2188,29583,4481,1906], +"sanitization", +[0,200,1478,6787,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], +[1,2343,20218], +[0,20219,20220,20222,2399], +[0,1834,29590,29591], +[0,2012,2530,2272,3102,3159,2899,3760,4170,4600], +"openapi3-ts", +[0,1149,5957,12804,2940], +[3,19441,15], +[2,20223,6643], +[1,2343,20228], +"wagger-ui-express", +[2,5051,20226], +[0,20229,20230,20231,2443], +[0,1149,1362,18443,9421,1209,3507,29600,29601], +[0,1414,1437,2070,2899,3230,3259,3519,4135,4170,4193,4246], +[0,3469,27812,18035,3259,25638,29605,7827,3230], +"camelize-ts", +[1,2343,20234], +[0,0,0,20235,2537], +[0,202,888,364,1237], +[1,2343,20237], +[0,20238,11686,20239,2487], +[0,19972,25493], +[0,6639,6884,4571,29615,3403,3741,29616], +[1,2343,20241], +[0,0,20242,20244,2537], +[0,4856,4864,6503,4874,4891,26584,1429,2020,2151,2899,3377,4474,2924,4707], +"snakify-ts", +[0,5194,6778,29622,29624,18135,1871,1283,8958], +[3,18009,14], +[2,20245,4990], +[2,4120,7020], +[3,8116,9], +[1,2343,20253], +"pecification", +[2,20248,20250], +[2,4364,1745], +[0,0,0,20254,2523], +[0,3475,5317,29632,29633,3474,9006,4967,1388], +[1,2343,20256], +[0,20257,20258,20259,2523], +[0,29638,1525,2131,2742,2975,4135,4449,36872], +[0,19181,442,19344,9237,18491,4874,5254,6520,36890,1009,1011,1177,26698,4039,91], +[0,200,29641,19101,20001], +[1,2343,20261], +[0,20264,20265,20267,2523], +"-symbols", +[2,3426,20262], +[0,3480], +[0,4874,1166,1702,4481,1906], +"is-extendable", +[0,1862,2018,2013,13771,2016,26349,6868,20000,15535,19138,29647,29648,6703,29649,1803,1388,965,1149,7003,6567,1362], +"array-slice", +"benchmarked", +[1,2343,20271], +[0,0,20274,20276,2523], +"for-own", +"kind-of", +[0,1166,1437,1702,17474,29654,17477,4481,1906], +"props", +[0,1862,3053,29656,6703,6910,21369,7253,25824,29657,1149,7003,6567,1540,6994,12804,1362], +[1,2343,20278], +[0,20279,20285,20286,2537], +[0,2017,3480], +[2,20284,29685], +[2,1884,2924], +[3,4679,10], +[2,20282,3031], +"@pa11y/", +[0,13789,5366,4874,1317,1701,1702,17474,18669,29654,17477,4481,4494,91,1906], +[0,1862,3768,28483,7051,6760,6994,6925,7094,6882,6870,7072,27334,27338,29664,12692,5957,1149,7003,6567,1362], +[1,2343,20288], +[0,0,20289,20291,2443], +[0,1166,1702,17474,21638,4193,17477,4481,1906], +"@types/yauzl", +[0,1862,17481,1851,29672,1149,7003,6567,6901,17480,12618,1362], +[1,2343,20293], +[0,20294,20295,20296,2537], +[0,2070], +[0,1192,1894,10761], +[0,1745,3709,29679,6774], +[1,2343,20298], +[0,20299,20300,20301,2523], +[0,20280,1169,1324,1525,1842,2929,3257,3357,3758,4135], +[0,1414,1177,29689,2899,29691,10627,4193], +[0,6653,7320,19748,31152,13716,13428,11346,1169,16790,200,33055,29727,34150,26632,3482,3758,11937,34151,5472,1155,34152], +[1,2343,20303], +[0,20307,20308,20309,2537], +"gulp-jsdoc3", +[2,2462,6504], +[2,4598,353], +[0,29069,9510,9479,9539,643,9448,29051,21505,3386,3393,9462,3397,3727,29698,29697,4248,4390], +[0,635,9516,9515,2613,29169,3297,29701,4039,4384], +[0,6666,3378,3358], +[1,2343,20311], +[0,20313,20315,20316,4139], +"color-support", +[0,22970,22971,29707,1668,18145,29708,1209,3074,3093,3478,3545,4507,29711], +[2,13721,15526], +[0,13789,11477,4870,4874,29717,977,1701,2096,2182,29721,3505,29722,4494,91,1906], +[0,27968,5351,13755,5122,1002,23992,4202,12197,29724,29726,13008,8745,8340,6398,17461,3758,3195,158,8221,8924,1936,29727,23691,20630,20631,18048,20637,21881], +"console.log", +[1,2343,20320], +"timestamp", +[0,0,20321,20322,2537], +[0,4874,7677,22839,33261,35609,1177,1938,1942,2832,91,1983,1984], +[0,4967,5995,5354,4963,181,6624,24456,23362,27448], +[1,2343,20324], +[0,0,20326,20331,2443], +"pure-rand", +[0,87,5583,811,816,1177,2193,2899,3253,26777,3421,4042,4073,4167], +[3,16596,12], +[2,20327,2024], +"poisoning", +[2,20327,20329], +[0,15008,25386,25388,16518], +"based", +"based testing", +[2,4635,20333], +[2,11861,10428], +"quickcheck", +[1,2343,20338], +[0,20343,5795,20344,2487], +"jscheck", +"jsverify", +"fuzz", +"fuzzer", +[0,27404,1437,12084,2021,2088,2185,2205,2654,2863,3157,3173,3490,814,29742,4562,4748], +[0,3487,5995,200,29744,5592], +[1,2343,20346], +[0,20352,20356,20357,2523], +"@fast-c", +"sv/format", +[2,20347,20348], +"@fast-csv/", +[2,20350,1644], +[0,29749,3084,4339], +"writer", +"csv writer", +"CSV", +[0,442,1759,1177,1895,1938,1953,1955,1958,2203,1209,2899,1894,4419,1531,91], +[0,3487,5576,10768,29752,36,5995,5592,4030,1781], +[1,2343,20359], +[0,0,20360,20361,2487], +[0,1362,1429,1506,2899], +[0,12804,4166], +"psql", +[1,2343,20364], +[0,20367,34487,20379,34352], +[3,19185,12], +[2,20365,4262], +[0,97,5663,1620,29762,29765,4729], +"macchiato", +[2,20365,20368], +"erge2", +[2,6502,20370], +"@types/pi", +"comatch", +[2,20372,20373], +"bencho", +"rmlnc", +[2,16693,20376], +"fdir", +[0,6599,5131,5592], +"hereby", +[1,2343,20383], +"snap-shot-it", +[0,20386,0,20387,2523], +"imple", +[2,20384,1744], +[0,18089], +[0,1936,57,12075,29790,10658,2062,29791,29792,15512,3493,1753,29793,29794,1644,4141], +[1,2343,20389], +[0,0,20390,2514,2487], +[0,2899,1177,2759,1317,29801,1311,1954,1938,1958,1903,1970], +[1,2343,20392], +[0,20393,20395,20396,2399], +[0,29806,4578,1433], +"strnum", +[0,1429,2899,3095,3752,1434,29810], +[0,2026,1544,1303,20150,5165], +[1,2343,20399], +"js2xml", +[0,20401,20402,20403,4139], +"json2xml", +[0,3501], +[0,3095,2899,1429,1434], +[0,3495,3497,1303,20150,5165,13445], +[1,2343,20405], +[0,20406,20407,20408,2537], +[0,1433], +[0,2899,1429,1434], +[0,3495,2703,1303,20150,5165,29824,6875], +"avvio", +"toad-cache", +[1,2343,20421], +"find-my-way", +"@fastify/", +[2,20413,1851], +"-warning", +[2,3729,20415], +"abstract-", +[2,20417,6807], +"-my-request", +[2,13318,20419], +[0,20429,20407,20430,4139], +"-json-parse", +[2,18112,20422], +[3,16781,12], +"ringify", +[2,20424,20425], +[2,8530,4643], +[2,20413,20427], +[0,29829,3501], +[0,3495,1303,20150,5165,20151,14374,3424,28438], +[1,2343,20435], +"-compiler", +[2,20426,20432], +[2,20413,20433], +[0,20438,20439,20430,2523], +"h2url", +"ajv-i18n", +[0,29835,3424,1433,26413,4578], +[0,3095,2899,1429,3752,1434], +[1,2343,20448], +"autocannon", +"fast-json-", +"body", +[2,20442,20443], +"merge-patch", +[2,8530,20445], +"branch-c", +[0,0,7878,20455,2537], +"omparer", +[2,20447,20449], +[2,3125,1276], +"fluent-", +[2,20452,2845], +[2,20413,3697], +[0,3495,15393], +[1,2343,20457], +[0,20458,0,20459,2523], +[0,3729,614], +[0,6804,3403], +"piscina", +"@vercel/n", +[1,2343,20483], +"@vercel/ncc", +"loader-", +[2,20464,8791], +[3,12397,15], +[2,20466,2924], +"@umijs/b", +"abel-", +"preset-umi", +[2,20469,20470], +[2,20468,20471], +[2,1221,18104], +[2,4524,20473], +[3,1233,25], +[2,20475,15301], +"tyled-", +[2,20477,4963], +[2,5584,20478], +"@umijs/c", +"ase-sensitive-paths-webpack-plugin", +[2,20480,20481], +[0,0,9264,20486,4139], +"ader-runner", +[2,13513,20484], +[0,1388,1389,3403], +[1,2343,20488], +[0,0,20489,20497,2523], +[0,1906,1166,4481], +[2,19523,3036], +[2,5613,4565], +[2,5613,3053], +[2,5613,6645], +[2,5613,6913], +[2,18996,4237], +[2,4385,57], +[0,3403,3504,29854,2090,17996,2150,17462,16503,7318,4262], +[1,2343,20501], +"anything", +"protocol", +[0,0,11332,20502,2537], +[0,3403,18104,2090,4014,28977,29862,3506,15174,614,594,364,6805,6422,1858,2741,13735,4354], +[1,2343,20504], +[0,0,20505,20506,4139], +[0,29867,5535,4874,5254,7677,26881,4201,91,1984], +[0,2026,6961,4082,7433], +"fbjs-css-vars", +"setimmediate", +[1,2343,20510], +[0,0,20511,2514,2523], +[0,4874,7677,1446,668,1177,1905,2807,1894,91,4543,1984,28862], +[1,2343,20513], +[0,20518,20530,11581,2537], +"@skypack/package-check", +"dead-code-elimination", +[2,9403,20515], +[2,7911,20516], +[0,2760,2856,18545], +"in web", +"in javascript", +"in react", +"Plug & Play", +[3,11608,13], +[2,7519,4963], +"ui component", +[2,16914,6286], +"advanced ", +[2,20527,5983], +"scan", +[0,2152,2899,3699], +"scanner", +[1,2343,20534], +"phonebook", +[0,20535,20552,20554,2537], +[0,29882,29884,3486,3923,23952,3348], +"autofillotp", +"share", +[2,7426,17357], +[2,2998,20538], +"mylocation", +[2,13735,20540], +"colorpicker", +"wakelock", +"WhatsappShare", +"NetworkConnection", +"TextToSpeech", +"VoiceRecognition", +"SnapScanner", +"Network", +"Monitor", +[2,20549,20550], +[0,4874,1398,2018,1894,4389,91], +"View360", +[0,2636,1179], +[1,2343,20556], +[0,20557,20558,20559,2399], +[0,1620,10752,29893,29894,29895], +[0,53,8229,87,442,5583,1193,29897,27401,1377,1389,1424,1505,1177,2193,2203,1192,2780,11348,1783,29899,1894,3754,4042,8849], +[0,2636,29901,29903,11812,1746,13814], +[1,2343,20563], +[3,5085,23], +[2,20561,582], +[0,0,20564,2514,2537], +[0,1362,29908,1429,29913,1506,2899,3697], +" program", +[2,6564,20565], +"data ", +[2,20567,6355], +[1,2343,20570], +[0,20571,20572,20578,2537], +[0,25624,29919,29923,29920,29918,29928], +[0,28042,29934,1149,1362,1499,29933,91,1984,23539], +"dequal", +"glob-", +[2,20574,3508], +[3,16396,12], +[2,20576,3508], +[0,18035,29937,3519,14871,25638,14873,29938], +[1,2343,20580], +[0,20581,20582,20583,2523], +[0,3524,4237,4709], +[0,1173,1175,1178,1257,1264,1267,14237,1177,1881,1935,1938,2126,29945,1192,2774,29946,10622,4039], +[0,3520,3521,13392], +"detect-libc", +[1,2343,20587], +"thread", +[0,20588,20589,20590,2443], +[0,2057,2151,29952,22667,3730,705,17047,4707], +[0,1177,2276], +[0,3521,29727,3364], +[1,2343,20592], +[0,20593,20594,20590,2523], +[0,1863,2057,2151,29952,22667,3730,705,17047,4707], +[0,1177,2276,824], +"@pinojs/redact", +[1,2343,20599], +"figure", +"fallback", +[0,20600,20601,20602,2523], +[0,1137,1512,1543,29964,1591,16442,2765,3183,3456,3459,6331,29965,3547,3741,3762,705,4167,4562], +[0,18007,1177,1900,1903,1938,1954,1958,1970,2759], +[0,200,1591,3525,29969,29971], +[1,2343,20604], +[0,0,11488,2514,2443], +[1,2343,20606], +[0,0,0,20607,4139], +[0,7009,1512,6983,200,7201], +[1,2343,20609], +[0,0,20610,20612,2523], +[0,1177,27275,2398,2899,3421], +"filesaver", +[0,2070,3529,3530], +"saveas", +"blob", +[1,2343,20616], +[0,7936,7938,7939,4139], +[1,2343,20618], +[0,0,20620,20625,34352], +"strtok3", +[0,1166,29991,4481,27659,1906], +"token-types", +"-extra", +"-extras", +[2,15149,20623], +[0,19138,7241,1862,6567,29994,12918,202,21244,28067,6270,353,4719,21009,6715,1149,7003,6778,1362], +"@tokenizer/token", +"commonmark", +"noop-stream", +[1,2343,20633], +"pic", +"picture", +"photo", +[0,20692,20693,20765,2399], +"video", +"exif", +"macho", +"jpg", +"apng", +"gif", +"flif", +"xcf", +"cr2", +"cr3", +"orf", +"arw", +"dng", +"nef", +"rw2", +"tif", +"bmp", +"icns", +"jxr", +"psd", +"indd", +"rar", +"7z", +"mp4", +"mid", +"mkv", +"webm", +"mov", +"avi", +"mpg", +"mp2", +"mp3", +"m4a", +"ogg", +"opus", +"flac", +"wav", +"amr", +"epub", +"mobi", +"rtf", +"woff", +"woff2", +"eot", +"ttf", +"otf", +"ico", +"flv", +"xz", +"xpi", +"cab", +"deb", +"rpm", +"Z", +"lz", +"cfb", +"mxf", +"mts", +[0,30001,30004,30007,30011,20416,30015,30017,18730,20595,30018,30019], +[0,5517,36559,30022,4874,1090,30024,28400,1409,1676,21594,1177,1938,1953,1954,1958,2020,30025,30027,2702,1192,3073,3079,30028,29197,28941,3697,3752,3756,4039,4135,4238,30029,4294,4389,4431,4474,4481,91,4709], +"webassembly", +"blend", +"bpg", +"docx", +"pptx", +"3gp", +"j2c", +"jp2", +"jpm", +"jpx", +"mj2", +"aif", +"odt", +"ods", +"odp", +"heic", +"pcap", +"dsf", +"lnk", +"voc", +"ac3", +"3g2", +"m4b", +"m4p", +"m4v", +"f4a", +"f4b", +"f4p", +"f4v", +"mie", +"qcp", +"asf", +"ogv", +"ogm", +"oga", +"spx", +"ogx", +"ape", +"wv", +"cur", +"nes", +"crx", +"ktx", +"dcm", +"mpc", +"arrow", +"shp", +"aac", +"mp1", +"s3m", +"xm", +[2,12207,35471], +"skp", +"lzh", +"pgp", +"chm", +"3mf", +"zst", +"jxl", +"vcf", +"jls", +"pst", +"dwg", +"parquet", +"arj", +"cpio", +"ace", +"avro", +"icc", +"fbx", +"vsdx", +[0,2062,2942,3101,1781], +[1,2343,20767], +[0,0,20768,20769,2537], +[0,1177,1895,19286,1954,1955,2675,1192,1894,4400], +[0,3378,30036,30037,3304,30038], +[1,2343,20771], +[0,20772,20773,20774,2523], +[0,3549], +[0,1177,25843,91], +[0,158,26020,1687], +[1,2343,20776], +[0,20777,20778,20779,2487], +[0,30055], +[0,1906,1166,4481,4400], +[0,3383,1781,7914,3378,13864,2100,2104,2105,7076,6614,6605,2090,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], +[1,2343,20781], +[0,8400,8134,20782,2523], +[0,4750,3383,2090,2100,2104,2105,7076,6614,6605,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], +[1,2343,20784], +[0,0,10435,20785,2523], +[0,18523,2041,6661], +"locate-path", +[1,2343,20790], +"-magic", +[2,1981,20788], +[0,20791,0,2514,2523], +[0,30071], +[1,2343,20793], +[0,20794,20795,20798,2443], +[0,10780,1301,4736], +[0,1389,2899,16112,4770], +"detect-file", +"resolve-dir", +[0,13336,1388,16718,2072,57,6523], +[1,2343,20802], +"dir-polyfill", +[2,4571,20800], +[0,20803,20804,20805,2537], +[0,1104], +[0,1177,1889,1954,2022,2899,3421,91], +[0,1851,1932,2541], +[1,2343,20807], +[0,20808,8134,20809,4139], +[0,30088], +[0,23869,30090,3547,23868,30091,4718,1871,30092,30093,30094], +[1,2343,20811], +[0,0,20812,20813,34352], +[0,1429,2759,2899,1899], +[0,23869,30090,3547,23868,23877,2712], +[1,2343,20815], +[0,20816,11488,20817,4139], +[0,30110,30115,30106,30122,1112,1149,29183,1457,30117,1525,1606,1673,1676,1836,2015,30104,3188,3278,30107,30108,30119,30112,30120,8630,4135,4232,4243,30105,2822], +[0,200,21110,21111,2041,3548,30124,3073,1781,2026,2556,30125,2999,30127,30128,30130,30131,30132,30134,7047,22850,30135,27662,13325,5258,30137,30139,30140,30141,30142,20997,20998,28845,4345,30143,3363,30144,17979,30147,27838,30140,30148,2134,28413,30149,13539,3111,21102,30153,30155,30156,30158,24093,17878,1605,20999,30159], +[1,2343,20854], +"@firebase/app", +[3,20819,11], +"uth", +[2,20820,20821], +"@firebase/", +[2,20823,614], +[2,20823,13901], +[2,20823,18035], +"nalytics", +[2,20820,20827], +[2,20819,2063], +[3,20829,14], +[2,20830,553], +"firestore", +[2,20823,20832], +[3,20833,11], +"unctions", +[2,20834,20835], +[2,20823,8899], +[3,20829,15], +[2,20838,14044], +[2,20822,4097], +[2,20823,6681], +[2,1161,10653], +[2,20823,20842], +"remote-", +[2,20844,1541], +[2,20823,20845], +[2,20825,4097], +[2,20826,4097], +[2,20828,4097], +[2,20829,4097], +[2,20833,4097], +[2,20836,4097], +[2,20837,4097], +[0,0,20855,20856,2537], +[0,1389,1400,1544,1177,1895,3421,1894,3758,4151,30164,4389], +[0,30166,14355,14356,30167,30168,57,18048,29895,30170,3549], +[2,20841,4097], +[2,20843,4097], +[2,20846,4097], +[1,2343,20861], +[0,20864,20865,20866,34352], +"Firebase", +"realtime", +[0,4477], +[0,1835,1192,2784,2796,4227], +[0,2924,4749,24753,24754], +[1,2343,20877], +"@fastify/b", +"usboy", +[2,20868,20869], +[3,20848,19], +[2,20871,553], +"farmhash-modern", +"jwks-rsa", +"@google-cloud/firestore", +[3,20875,14], +[0,0,0,20878,2537], +[0,3552,28100,4796,7191,7287,2062,6824,1161,7242,163,6698,5260,6646,7117,3378,6878,6661,6666,7037,7090,7293,6950,7086,6573,664], +[3,20819,12], +[1,2343,20881], +[0,20896,20898,20899,2523], +"i-documenter", +[2,20879,20882], +[3,20840,15], +[2,20884,553], +[2,4853,6641], +"rebase-token-generator", +[2,16785,20887], +[2,16936,4007], +[3,2113,11], +"ken-generator", +[2,20890,20891], +"http-me", +"ssage-parser", +[2,20893,20894], +[0,1170], +"admin", +[0,4072,4474,91], +[0,30190,30191,30192,30193,30194,30198,30200,30202,5592,30203,30204,30207,30208,5995,4967,91], +[1,2343,20901], +[0,6263,20906,20907,2537], +"-sql-connector", +[2,6599,20902], +[2,20876,20903], +[2,20876,11631], +[0,48,53,68,83,85,87,14128,5583,816,6373,1178,1193,1198,30214,1610,1652,1745,1177,1881,1938,2126,29945,2675,1192,2990,29946,1894,30216,3776,4042,4071,4073,4131,4172,30217,91,4585], +[0,4315,3555,1832,30219,7165,30220,89,2124,91,30223,30225,30227,1473,7208], +"async-lock", +"cjson", +"-in-any-order", +[2,1693,20910], +"exegesis", +[2,20912,3228], +"gaxios", +[1,2343,20919], +"auth-library", +[2,10692,20916], +"libsodium-wrappers", +[0,0,20920,20923,2523], +[0,30236,30239,30240,30241,1177,30242,91], +"proxy-agent", +"sql-formatter", +[0,30245,4627,5398,8190,8191,8193,30247], +"stream-chain", +"stream-json", +[1,2343,20927], +[0,20929,20930,20932,2487], +"superstatic", +[0,1149,1676], +[0,1192], +"triple-beam", +[0,27,13397,6731], +"-analytics", +[2,14566,20933], +[2,4562,8683], +[1,2343,20939], +"cdn", +"ssl", +[0,20941,0,20944,4139], +"hosting", +[0,3266,3527,4228], +"hronization", +[2,15001,20942], +[0,1623,3561,22292,7121,57,30258,353,24798,5198], +[1,2343,20946], +[0,20947,20952,20953,4139], +[0,3681,3688], +"alce", +[2,1708,16580], +"extend-", +[2,20950,3048], +[0,4874,1177,1895,30265,3561,1894,91], +[0,1623,3561,6425,30268,3563], +[1,2343,20955], +[0,20956,20957,20958,2537], +[0,1457,5314,2151,3527,3616,30274,15245,30275,4207,27921,4747], +[0,1166,1414,1596,1177,30279,2203,3561,3613,1894,4337,3348], +[0,200,3561,22147], +"@types/rimraf", +[2,13777,12798], +[1,2343,20962], +[0,20963,0,20964,2487], +[0,30286,205,208,218,30287], +[0,1473,14186,1623,4964,6564,30289,30290,30291,29428,3561,6425,6616,30292,17540,5341], +[1,2343,20967], +"unflatten", +[0,20968,20969,20970,2487], +[0,1393,30298,30299,3688], +[0,30302,3561], +[0,1473,1512,1536,1623,3178,3561,6425], +[1,2343,20972], +[0,20973,20974,20975,34352], +[0,1393,3688], +[0,3561], +[0,1623,16919,3561,6425], +[1,2343,20977], +[0,20984,20985,20987,2523], +"@types/acorn", +[3,4060,16], +"vereload", +[2,20979,20980], +"erve", +[2,15476,20982], +[0,1165,30298,1437,30314,30315,3561,30317,30326,3564,30327,30329,30331,30334,30336,30338,30341,30343,3579,3584,3587,30346,30348,30350,30353,30356,3643,30358,30360,30363,30365,30366], +[0,1173,1175,1195,1264,1268,1279,19243,1461,1628,30368,30370,30371,30372,30378,1177,30380,1916,1959,2054,2092,2600,30381,2822,2843,3105,30383,3160,30385,30389,30390,30391,30393,30395,30396,30397,30399,29285,3376,30400,3427,3459,30402,3613,3618,30274,16578,3744,89,3824,30404,4039,4294,4307,4389,30407,2924,4681,30410], +"lightweight", +[0,3561,6425,1623,12616,30413], +[1,2343,20989], +[0,20990,0,20993,2523], +[0,30424,205,208,213], +"byline", +"util-extend", +[0,30426,30427,1623,30428,5317,6413,3561,6425,30430,3766,10658,12616], +[1,2343,20996], +"markdox", +[0,21001,0,21002,2537], +"deploy", +"deployment", +"devops", +"ssh", +[0,30424,205,208,30287,3688], +[0,1623,30428,5317,6433,3561,6425,3583,10658,6436,6437,12616], +"sequential", +"remote", +[1,2343,21006], +[0,21007,0,21008,2537], +[0,30424,205,208,3681], +[0,30426,30427,1623,30428,5317,30442,19101,3561,6425,5547,3586,10658,12616], +"wrapper", +[1,2343,21011], +[0,21012,21013,21017,2487], +[0,3681], +[0,3561,3678,26712], +"mini-s", +"vg-data-uri", +[2,21014,21015], +[0,1623,4298,3561,6425], +[1,2343,21021], +"-datepicker", +[2,2128,21019], +[0,0,20974,21025,34352], +"ailwindcss", +[2,1977,21022], +[2,3704,4383], +[0,1623,1681,16918,3561,6425], +"windicss", +[1,2343,21051], +[2,20525,591], +[2,4380,6911], +"tailwind c", +[2,21030,544], +"tailwind ", +[2,21032,11513], +[2,21032,6082], +"sections", +[2,21032,21035], +"tailwind ui", +[2,21032,89], +[2,21032,188], +[2,21032,1098], +"tailwind s", +[2,21041,1971], +"django", +[2,21032,21043], +"tailwind r", +"uby on rails", +[2,21045,21046], +"tailwind l", +"aravel", +[2,21048,21049], +[0,0,20974,21058,2537], +"tailwind nuxt", +"tailwind n", +[2,21053,2680], +"tailwind a", +"stro", +[2,21055,21056], +[0,15215,1623,3599,3178,16919,3561,6425], +"flask", +[2,21032,21059], +[1,2343,21062], +[0,0,21063,21064,2487], +[0,1687,3527,3561], +[0,3561,1623,6425,30462,30465,30466], +[1,2343,21066], +[0,0,21068,21069,4139], +"ffmpeg", +[0,1429,2323,2384,2463], +[0,3561,1623,6425,30472,15182,9320], +[1,2343,21071], +[0,21073,21075,21076,34352], +"fbemitter", +[0,2654,9673,3561,3676], +[2,3794,11017], +[0,19605,1165,1429,1503,1177,1895,1930,19622,1945,1953,19623,1955,1964,1988,17308,2899,19761,3421,30479,3678,30481,1894,4320,4323,4337], +[0,3561,5341,1936,188,30483,30484,1623,695,2278,4329,30485,4337], +"dispatcher", +[1,2343,21079], +[0,21080,0,21081,2399], +[0,30287,3688], +[0,12083,1623,158,30491,12631,16587,3561,6425,23992,6398], +"lolex", +[1,2343,21084], +[0,21085,21086,21087,2399], +[0,3688,30275,814], +[0,1166,1414,1177,30279,1955,2203,3561,3678,1894,4337], +[0,1623,3561,6425,1204,30498,3378], +[1,2343,21089], +[0,21090,0,21091,2537], +[0,2984], +[0,3561,30504,30506], +[1,2343,21093], +[0,21094,21095,21096,2523], +[0,2807,4135,1595], +[0,1700,1192,695,2278,2675,3144,30512,1622,1177,1637,1701,2203,3561,4337,4468,4474,2924,1894,1610,48,442,1193,17167,4294,53,2969,2990,3400,4111,30520,3613,3640,192,1953,27928,4257,87,4523,1939,3616,1938,20281,1982,1895,1955,19344,30518,5467], +[0,1623,3561,22147,2924,11526], +"cliff", +"shush", +"flatiron", +"nssocket", +"-monitor", +[2,2134,21101], +[1,2343,21105], +"getopts", +[0,21107,20974,21112,2487], +"cli-testlab", +[0,3688,4319], +"fault", +" tolerant", +[2,21108,21109], +"sysadmin", +[0,1623,3178,16918,3561,6425], +[1,2343,21114], +[0,21115,21119,21123,4139], +[0,1393,30298,3681,30532], +"node-ab", +[2,18876,12620], +[2,21116,21117], +[0,30302,3561,26712,3591], +[2,6062,2978], +"ross-spawn", +[2,4857,21121], +[0,1623,16918,3561,6425], +"jest-circus", +"karton", +[1,2343,21128], +"typecheck", +[0,5488,20974,21130,2523], +[2,1218,21131], +[0,1623,2414,30541,30542,16918,6425], +"hermes-parser", +[1,2343,21135], +[3,4852,15], +[2,21133,13921], +[0,21137,20974,21138,2399], +"increment", +[0,30299,3688,30532], +[0,1623,3561,6425], +[1,2343,21140], +[0,21145,20974,21150,2399], +"asynckit", +"combine", +"d-stream", +[2,21142,21143], +[0,1393,3688,30532], +[2,13888,2759], +"fake", +"far", +"is-node-", +[0,3561,1623,6425,3178,16918,3634], +"modern", +[2,21149,21151], +"obake", +[1,2343,21157], +[2,31868,7625], +[2,31865,21160], +[0,21159,21164,21169,2537], +"dezalgo", +[0,1636,3681], +[3,9367,18,5], +"@tunnckocore/prettier-config", +"formdata-", +[2,21162,6422], +[0,30559,3561], +[2,19713,1781], +[2,3862,18481,21172], +"www", +"ulpoad", +[0,1623,3178,16918,3561,6425,3586], +[1,2343,21171], +[0,21176,21181,21183,2399], +"bob", +[3,11366,11], +[2,21173,3797], +"tiny-warning", +[0,16837,3681,3688], +"just-", +"debounce-it", +[2,21177,21178], +"tsdx", +[0,1596,1177,1895,2675,1192,2990,3561,1894], +[2,7519,582], +[0,4529,3561,1623,6425], +[1,2343,21190], +"render props", +"higher", +" order component", +[2,21186,21187], +"hoc", +[0,21012,0,21191,2443], +[0,3561,1623,6425,2278,3639], +[1,2343,21193], +[0,21194,0,21196,2443], +[0,30577,220,3681], +"conditional", +[0,30579,1451,30581,1623,30413,30428,3639,30582,3561,6425,3624,3586,10654,10659,5341,12616], +[1,2343,21198], +[0,21199,21200,21201,2523], +[0,30587,30589,30590], +[0,20117,1393,3561,3613,4042], +[0,3561,1623,6425,30594,2887,30595], +[1,2343,21203], +[0,0,20974,21204,2487], +[0,3561,1623,6425,8426], +[1,2343,21206], +[0,5488,20974,21138,2537], +[1,2343,21208], +[0,5488,20974,21138,2443], +[1,2343,21211], +"check-dts", +[0,20973,20974,21138,4139], +[1,2343,21213], +[0,5488,20974,21215,2537], +"front matter", +[0,1623,3374,16918,16919,3561,6425,1002], +"meta data", +[1,2343,21218], +[0,21219,20974,21138,2523], +[0,3688,30532], +[1,2343,21221], +[0,0,21222,21223,2537], +[0,2675,2899,3561,2759,1894,2990,3640], +[0,3561,3665,3586,6425,1623,3585,1932], +"universalify", +[1,2343,21229], +"klaw", +"dir-files", +[2,15034,21227], +[0,21230,0,21231,2523], +[0,28789,30630,30633,28817,30636,26477,30640,32579,30643,30647,30649,30652,30654,30657,30658,215,30662,30670,30673,30677,30678,30682,30686,30690,31001,30693,30701,30703,27930,218,28640,27069,30708,30712,29388,30715,32835,29704,30721,30724,30725,1165,1393,30728,30733,30736,1635,30326,30739,3570,30331,30338,3579,3584,3587,30742,30744,4791,30747,30348,30749,3611,30751,30754,3643,30757,30759,30761,30763,30358,30363,30366], +[0,1623,30428,16897,14836,30765,3286,3561,6425,10654,10659,16900,12616], +[1,2343,21233], +[0,21234,21235,21138,4139], +[0,1393,30298], +[0,30302,2646,3561], +"assist", +[2,6019,21236], +[1,2343,21239], +[0,0,0,21240,2537], +[0,1623,3561,30775,57,21110], +[1,2343,21242], +[0,0,0,21245,2537], +"any-promise", +"then", +[0,1623,3561,30775,57,4329,2278], +"thenify-all", +[1,2343,21248], +[0,21249,21250,2514,2443], +[0,1636,23462], +[0,48,53,68,11267,61,87,94,1166,1198,16150,1701,1177,1938,2070,3183,3421,3561,4135,91], +[1,2343,21252], +[0,21253,21254,21255,4139], +[0,3688,4361], +[0,30315,3561], +[0,1623,3178,16918,3561,6425,8221,4361], +[1,2343,21257], +[0,21012,20974,21138,2537], +[1,2343,21259], +[0,0,21260,21261,2537], +[0,1177,2675,2990,1894,4387,4389], +[0,3561,6692,57], +[1,2343,21263], +[0,21264,0,21265,2537], +[0,28807,30805,30808,30811,30813,30816,30818,4484], +[0,14873,25638,14871,3519,18035,1747,13392,5576,5995,29938,14872,91,4799,1999], +[1,2343,21267], +[0,21268,21269,21270,2537], +[0,9376,9375], +[0,192,22559,1414,1429,1431,1436,1567,2675,2829,2990,2899,4255], +[0,1936,6523,23760,57,353,30826,24798,7121,26467], +[1,2343,21272], +[0,21273,0,21274,2523], +[0,30840,3348,2970,2973,4431,30843,2972,30842,3310,30837,30834,3923,30833,30839], +[0,1747,28088,3693], +[1,2343,21295], +"@monaco-editor/loader", +[3,7664,11], +"topwatch", +[2,21277,21278], +[2,7666,6731], +"@snippetors/vuepress-plugin-tabs", +[3,19464,17], +"google-a", +[2,21283,20827], +[2,21282,21284], +[2,93,4314], +[2,21282,21286], +[2,21282,7193], +"monaco-", +[2,21289,6038], +"dsense2", +[2,21283,21291], +[2,6324,21292], +[2,19469,21293], +[0,21297,21298,21299,2537], +"bitap", +[0,13609,30849,30850,30855,1695], +[0,1173,1280,4895,1245,1264,1389,5669,30857,2025,2297,2881,25848,2895,2900,30859,2899,30862,18102,3774,4019,4135], +[0,3696,1145,6468,1973,5472,5286,6892], +"@types/katex", +[1,2343,21303], +"socket", +[0,21304,21305,21310,2487], +[0,1615,23975,4707], +[0,1148,2759,2899], +"tex", +"sublime", +"katex", +"sublime text", +[0,3358,582,3378,3697,30872,18462,1973,5001], +[1,2343,21312], +[0,0,21313,21314,2443], +[0,30877,30879,53,5874,12372,87,94,11976,4856,6503,4874,6513,17214,16480,30881,1429,1596,1610,30883,668,2675,30888,3165,2899,3401,30889,28423,3744,11481,4193,4196,4072,91,4548,1983,1984,824], +[0,3698,89,181,6073,30891,23361,4963,30892,6400,5130], +"globule", +[1,2343,21318], +[2,2237,5365], +[0,21319,7923,11581,2523], +[0,1437,1457,2152,18545], +[1,2343,21321], +[0,21322,21323,21324,2537], +[0,30905,8506,3137], +[0,21024,5467,811,8850,816,5087,9363,1009,1011,1529,1177,1895,1955,2675,1192,30912,12129,1894,4042,4257,4072,4474,91], +[0,1894,1932,1776,8505], +[1,2343,21326], +[0,0,21327,21330,2487], +[0,4874,30922,1166,1894,91,13151], +[2,4755,1145], +"yeoman-test", +[0,1894,30924,91,5651,3705], +[1,2343,21332], +[0,21333,21334,21335,4139], +[0,18710], +[0,3401,1894], +[0,6661,1932,1894], +[1,2343,21338], +"restangular", +[0,0,21342,21343,2487], +"ui-router", +"foundation", +"traceur", +[0,8862,811,816,4874,1166,1894,4042,4075,3709,4474,4484,91], +[0,1894,3709], +[1,2343,21345], +[0,21346,0,21347,2487], +[0,30940,1209,1997], +[0,1894,1541], +"find-git-root", +[1,2343,21353], +"git-config", +[3,31021,19], +"@merkle-open/eslint-config", +[0,0,8134,21355,2537], +"modular", +[0,3721,1413,1412,2098,4202,2090,12786,30946,7017,30947,2382,30948,23933,30950], +[1,2343,21357], +[0,21358,21359,21361,4139], +[0,1209,30956], +[0,1429,1506,1509,30958,2899], +"pooling", +[0,3721,1851,30960,1676,6738,7017,13086,22405,1671,12786], +[1,2343,21363], +[0,21364,21366,2514,2523], +[0,8801,1110,3847], +"ts2mjs", +[0,4880,15606,4889,2700,2798,89,3824,3904], +"iterators", +[1,2343,21370], +"iterable", +[0,21372,8134,21375,2487], +[2,21373,29777], +[0,30970], +"@prisma/d", +"@prisma/dev", +[0,3721,22405,12786,24130,30946,7017,6901,3242,30974,17003,30975,6754,2585,1871,6988,15244], +[1,2343,21382], +"@werkzeugkiste/eslint-config", +[3,21377,15], +[2,6019,1541], +[2,21378,21379], +"install-", +[0,21389,0,21390,2487], +"postmerge", +[2,17496,21383], +[2,21381,21384], +[3,9794,17], +[3,13848,20], +[2,21386,21387], +[0,6041,4484,2687,26379,3530,30097,3527], +[0,3358,30981,30982,1894,3720,6983,1501,30983,30872], +[1,2343,21392], +[0,21394,21398,21399,2523], +"@cfware/lint", +[0,1512,3183], +"@cfware/nyc", +"if-ver", +"libtap", +[0,2899,2272,4170,2759,1596,3202], +[0,1781,200,6983,1512], +[1,2343,21401], +[0,21403,21408,21409,2523], +"available", +[0,3260,25638,21374,28286,30996,21351], +"connection", +"tcp", +[3,6045,9], +"chosen", +[0,3467,4763,2611,1192,3445,2020,2929,28974,3510,1759,8537,15452,1457,2151,842,16145,16473,2794,3077,3310,29710,4294,31000,91,5087,4874,6477,28076,1151,2191,31004,3393,31006,32248,31008,28229,31009,25629,31013,4864,33235,23531,8998,29420,31015,31018,13471,32470,31023,31026,33237,28231,29421,26285,33683,21371,13502,29425,31475], +[0,9628,31034,31035,31037,31038,18035,1747,17626,31039,6869,31040,31041,31042,3519,31043,31045,31046,31047,31048,31049,31050,31051,31052,31221], +[1,2343,21411], +[0,0,21412,21414,2537], +[0,5542,1317,1429,31058,1700,31061,1177,1942,1964,2323,2361,2367,2409,20304,2494,2496,31063,2553,2654,2665,2832,2899,3310,3400,1894,3756,19745,19750,12120,3980,19751,4183,31066,4747], +"std", +[0,588,5342], +[1,2343,21416], +[0,21417,21419,21421,4139], +[0,1362,1364,1512,2026,3078,3188,3220,31074,3460,3507,31075], +"@sec-ant/readable-stream", +[0,1429,2323,2463,3215,4089,4193,4196,4339], +"onetime", +[0,1370,7223,29179,18157,12468,2325,3358,31078,3383], +[1,2343,21424], +"precise-now", +[0,0,6538,2514,2537], +[1,2343,21426], +[0,0,21427,21428,2487], +[0,4770,2899], +[0,3729], +"-maps", +[2,6477,21429], +[1,2343,21433], +[2,2190,6660], +[0,0,0,21434,8878], +[0,200,3730], +[1,2343,21436], +[0,21443,0,21445,2537], +[3,13936,15], +"evry", +[2,21437,21438], +"make-d", +"eno-edition", +[2,21440,21441], +[0,1437,3730], +"deno", +[0,2924,1932,3730,10036], +[1,2343,21448], +"deno-edition", +[0,21449,21451,2514,4139], +[0,29277], +"deno-entry", +[0,1082,4039,2759], +"denoland", +[1,2343,21454], +[0,0,21460,21461,2487], +"es2022", +[3,72,14], +"ifconfig", +"ipconfig", +"mac-address", +[0,1389,1610,1177,10697,2675,2297,2871,2881,2900,2990,2899,3400,1894,4039,4042,4077,4193,4650,91], +[0,1862,3734,6789,14833], +[1,2343,21463], +[0,21467,17022,21471,2537], +"email-", +"addresses", +[2,21464,21465], +[0,2899,4193,4545], +"dir-compare", +"tschaub", +[2,1884,21469], +[0,6567,14833], +[1,2343,21473], +[0,16583,21474,11581,2487], +[0,1804,2109,2899,3699], +[1,2343,21478], +"manage-path", +"opt-cli", +[0,21484,21487,21488,2487], +"chai-s", +"chai-string", +"kentcdodds", +[2,1884,21481], +"trav", +[0,13388,1149,3917,13832,4709], +"is-after-all", +[2,21483,21485], +[0,1177,4616], +[0,3741,6876,31122,7020], +[1,2343,21490], +[0,21491,21492,21493,2487], +[0,2929,16235], +[0,48,53,78,87,4387,4389], +[0,181,3742,200,3741,8626,6876,6847,1523,2184,4403,8620,31129], +[1,2343,21500], +"@primer/octicons", +"@primer/", +"primitives", +[2,21496,21497], +[2,812,1936], +[0,21501,21502,10570,2523], +[0,3082,3427,3847], +[0,1193,1268,1389,1408,1177,2708,1192,89,31135,31136], +[1,2343,21504], +[0,0,21506,21508,2443], +"minipass", +[0,9363,4874,31142,1414,2620,31145,31147,1894,3985,3998,31148,31150,4505,91,18002,1906], +"path-scurry", +[0,31152,23584,1936,4374,18523,3205,8221], +"-from-dist", +[2,9478,21509], +[1,2343,21513], +[2,5745,1563], +[0,21514,21515,21516,2523], +[0,31157,31159,31160,31161,31162,31165,31166,31167,31169,31170,4874,3080], +[0,1317,1389,31172,1408,1437,1875,1177,2000,2004,2193,28406,31174,21749,2323,2409,2419,2510,2530,1776,3183,3421,3951,4389,4487,91,4535,4599,4600,4603], +[0,7018,6765,7050,91], +[1,2343,21518], +[0,21521,21522,21523,2523], +"dirname", +"wildcard", +[0,11304,28502,31180,14336,1437,2070,2765,31182,3760,12826,4130,4232,31184,31186,4747], +[0,7740,4865,23689,31188,9129,4874,1364,1429,1431,28556,2025,2026,2323,31190,2526,2272,1209,3127,2899,31191,4039,4089,4135,4487,31194,91,31195], +[0,1098,1973,5472,11132,13841,28522], +[1,2343,21525], +[0,21527,21528,21529,2537], +"min-document", +[0,7058,31202,1676], +[0,31205,5245,5087,4874,1151,1192,4468,91,2190], +[0,27,2671,2658,1544,3013,31207,31209,18413,31210,31211,31212], +[1,2343,21531], +[0,21532,21533,18970,2537], +[0,31218,31220,814], +[0,2899,31224,4170,4193,4255], +[1,2343,21535], +[0,21538,21540,21542,2523], +"path-t", +"path-type", +[0,1437,31229,31233,2720,2742,1209,3170,3309,3470,4135], +"glob-stream", +[0,1173,1255,1264,1700,1177,1895,2702,2759,3188,2899,3211,1894,4039,4170], +"fnmatch", +[0,2323,3378,20001,3383,1237], +"globbing", +"globs", +"wildcards", +[1,2343,21547], +[0,21548,21549,21551,2399], +[0,31249,31246,31248,31250,31243,31251,31242,31254], +[0,3188,4039,24592,24587,24594,24596,31259,31258,24591], +[2,13039,12804], +[0,1936,2437,3754,1283], +"array-series", +[1,2343,21554], +[0,0,21557,2514,2537], +"magick", +[2,11812,21555], +[0,1317,27468,2060,3714,31266,4387,4389], +[1,2343,21559], +[0,21560,0,21561,2537], +[0,1834,3441], +[0,7046,7170,14858,7241], +"-with", +[2,21562,1892], +[2,1903,21563], +[1,2343,21569], +"msmc", +"mc", +"minecraft", +[0,0,21570,21588,2537], +[0,1503,3421,2899], +"java edition", +"arm", +"arm-support", +"forge", +"s-management", +[2,16154,21575], +"instances", +"mod", +"mods", +"mc-mod", +"mc-mods", +"modpack", +"modpack-api", +"extendable", +"nbt", +"jarmods", +"skin fix", +[0,3757,3656,31277,31278,31279,1002,31280], +[1,2343,21590], +[0,21591,21592,21593,2523], +[0,17846,31286,1595,28504,11114,31288], +[0,4874], +[0,3758,3195,29727,13428], +"docsify-cli", +"ing-promise", +[2,14639,21595], +[2,16645,21596], +[1,2343,21601], +"spreadsheets", +[2,8567,21599], +[0,21602,0,21609,4139], +[0,1525,2071,3561,3681], +"google sheets", +[3,21599,11], +"sheets", +"gdata", +"drive", +"google docs", +[0,6707,16587,7293,17507,1623,1936,3624,31297,22946,18114], +"svgs", +"google drive", +[1,2343,26326], +[0,2228,2272,3130,2240,2768,2281,3736], +[0,3760,1862,6567,14832,14833,14834,14836,1149,14838,8553,1388,202], +[1,2343,21617], +[2,2211,13369], +[0,0,0,21618,2399], +[0,11194,31307,16421,18048,8221,158], +"@types/execa", +"@types/mv", +"@types/ncp", +"unjucks", +[2,10884,21622], +"rl-template", +[2,7817,21624], +[2,4892,1574], +"js-green-licenses", +[1,2343,21629], +[0,0,0,21631,2537], +"linkinator", +[0,1111,6938,11194,7201], +[2,8573,591], +[2,5576,12950], +[1,2343,21635], +[0,21636,21637,21643,2537], +[0,17409], +[0,31317,31319,13614,1389,1408,31322,1796,1855,1177,2011,2133,2070,19066,31328,27547,17421,2569,2685,2708,2762,2807,3188,3206,15030,3410,3421,3431,19974,4103,23948,4389,31329], +"p-cancelable", +"responselike", +"-keys", +[2,17267,21640], +[2,13788,2741], +[0,3767,3763,3766,1002,1644,1646], +"able-lookup", +[2,2325,21644], +"cacheable-", +[2,21646,705], +"-encoder", +[2,2139,21648], +[2,17278,5508], +"byte-counter", +[1,2343,21660], +"pem", +"@types/pem", +"cert", +"create-cert", +"slow-stream", +"then-", +"then-busboy", +[0,21661,21664,21669,2537], +[0,31337,31339,31341], +"@hapi/bourne", +[2,1601,9224], +[0,1166,1317,1693,2064,4481,1906], +"brotli", +"requests", +[2,20034,17460], +"ky", +[0,1388,3767,3766,1871,3763,5420,31344,1002,1644,1646,10368,15103,31345,7131], +[1,2343,21671], +[0,0,21672,21673,2537], +[0,1973,31350,4389], +[0,10906,3766,3767], +[1,2343,21675], +[0,0,21685,21686,2537], +"govuk-", +"-kit", +[2,6688,21677], +[2,21676,21678], +"gulp-cl", +"gulp-cli", +"sass-co", +"lor-helpers", +[2,21682,21683], +[0,1414,2665,31357], +[0,3768,1149,14629,31360,12692,5957,6994,13792], +"embedded", +[2,4832,21687], +"sassdoc", +[1,2343,21692], +"govuk", +[0,11570,11571,21693,2537], +[0,3768,29664,31365,31366,31367,5284,17625,17626,676,91,17627,6869,4799,12692,4721,3768,31369,31370,31374,8893,6994,31376,6915,17697,6333,31377,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,17651,6674,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,3760,31379,4552,28483,31381,6645,4787,3286,202,5401,27366,6681,17740,1745,17116], +[1,2343,21695], +[0,21696,21698,21705,2537], +[0,3021,31388,31389,2017], +"reading", +[0,2070,4361,2832,1177,4333,1984,4474,2924,1894,4469,48,1628,91,53,4874,2629,4677,1195,2600,4307,4334,4689,4891,17214,8648,5139,87,4230,4681,31392,2651,1938,4409,1895,1947,1955,3177,92,31394,1011,20476,31393,1009,8724,1915], +"retries", +"EMFILE", +"EAGAIN", +"EINVAL", +"EPERM", +"EACCESS", +[0,3771,6038,6106,6105,6138,6139,5130], +[1,2343,21707], +[0,21708,21709,21710,2443], +[0,1525,11482,3350], +[0,3421,2228,2929,1177,4039,4042,4135,1317,2116,31401,4019,3752,20496,53,31402,87,1937,1954,2258,18895,23165,5583,1924,1938,31404,1958,2256,6373,1903,1948,811,1900,816,31405,8229], +[0,5472,2275,1145,6468,4384,4389,2297,2814], +[1,2343,21712], +[0,21713,21714,21716,4139], +[0,31413], +[0,5517,31417,1009,1011,7677,1240,1264,1540,1177,1895,1955,15854,18841,1894,23535,2907,3980,18819,4042,8849,4076,91,1984,2924], +"graphql-js", +[0,1388,965,1936,2907,31419,5472], +[1,2343,21718], +[0,21719,21722,21723,2537], +[0,1457,1525,31426,2107,31427,814,4648], +"all-versions", +[2,1382,21720], +[0,1149,1203,1267,31429,1499,25063,25076,1937,18895,2020,2116,2151,2228,2240,2243,2256,2258,23165,2283,21929,2291,25070,21930,26210,31402,3006,3752,4019,4045,4135], +[0,5472,2275,2814], +[1,2343,21725], +[0,21726,21727,21728,34352], +[0,3518], +[0,31437,1389,4389], +[0,31440,6422], +[1,2343,21733], +"section-", +[2,21730,9338], +[2,4296,12835], +[0,0,21736,21737,2523], +"ansi-green", +"delimiter-regex", +[0,48,53,87,94,104,5583,24621,31447,1290,1317,1481,1610,31448,1177,1938,2064,2036,2822,2899,3400,3421,4039,4042,4077,31449,31452,4193,4423,31453], +[0,3776,6564,594,6731,6081,7517,7532,7594,7595,7523,7524], +"assemble", +[1,2343,21741], +"extracting", +[0,21742,7923,21743,2487], +[0,4127], +[0,3778,28734,28734,4718,1179,16431,2585], +[1,2343,21747], +[3,5364,11], +[2,21745,1398], +[0,8766,21753,21754,2523], +[2,1807,2899], +[2,10692,7018], +"pois", +"son-process", +[2,21750,21751], +[0,3521,4255,4387,4389,4770], +[0,1616,3778], +[1,2343,21756], +[0,21764,7923,2514,2399], +"grunt-k", +"nown-options", +[2,21757,21758], +"legacy-log", +[2,2235,21760], +[3,21761,13], +[2,21762,614], +[0,3779], +"difflet", +[3,16758,16], +"unt", +[2,21766,21767], +[1,2343,21771], +"temporary", +[0,0,7866,21773,34352], +"init", +[0,6754,57,27], +[1,2343,21775], +[0,21776,21777,21778,2487], +[0,3135,3348,977,31479,4252], +[0,2070,3297,2899,4193,1177,4170,2759,1894,1506,1895], +[0,28411,2656,31482,6807,3783,31483], +"gruntplugin", +[1,2343,21781], +[0,21782,21783,2514,2523], +[0,1413,14855,2685,2657], +[0,3421,2899,1177,1362,29197,4100,3923,19344,7844], +[1,2343,21785], +[0,13511,21786,13533,2523], +[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,1955,2675,1192,2990,3144,3400,1894,4257,2924], +[1,2343,21788], +[0,21792,0,21793,2537], +[3,21146,12], +"ncremental", +[2,21789,21790], +[0,2714,3183,1696,4300], +[0,1541,1997,28984,19400], +[1,2343,21795], +[0,21796,21797,21798,2523], +[0,97,1461,3789], +[0,31504,968,972,4859,5087,4874,4880,4883,14693,1610,1789,1177,1939,1982,2079,31506,2193,2070,695,3377,31508,3788,11249,89,3824,3957,91], +[0,89,5128,31511,31512,6847,6754], +[1,2343,21800], +[0,21801,21802,21803,2523], +[0,97,13169,1461,3789], +[0,31504,972,5087,4880,4883,11322,1610,1789,1177,1982,2079,2193,695,3377,31508,89,3824,91], +[0,89,5128,31519,8190], +"liftup", +[1,2343,21806], +[0,21807,21808,21809,2523], +[0,97,3847], +[0,31504,972,5087,4874,4880,4883,15606,31527,11322,14693,1603,1610,1789,1177,1939,1982,2079,2070,2675,2990,3377,1894,31508,89,3824,91], +[0,89,614], +"pad-stream", +[1,2343,21812], +[0,0,0,10570,2399], +[1,2343,21815], +"grunt-nodemon", +[0,21816,0,21817,2399], +[0,3911], +[0,89,31542], +[1,2343,21819], +[0,21822,21823,21817,2523], +"simultaneous", +"faster", +[0,3427], +[0,1192,89,3824,2924], +[1,2343,21825], +[0,21826,21827,21828,2523], +[0,31555,31558,31560,31563,31564], +[0,4042,91], +[0,5575,2220,89,582,21189,4963], +[1,2343,21835], +[2,21831,36], +[3,30922,14], +"bin-", +[3,18806,13], +[2,21832,21833], +[0,21836,0,2514,2443], +[0,3775,1593,1862,4705,3427,3957], +"compass", +[1,2343,21839], +[0,21840,0,21841,2537], +[0,4649,2731,1461,3744,31577,1751,97,31575,31581,31578,5090,3911,4808], +[0,1367,89,4627,4963,31583,5128], +[1,2343,21843], +[0,21844,21845,21846,2523], +[0,31590,1209,3021,31591,3744,31592,4443], +[0,31594,31598,14689,14691,10837,1173,1175,1193,1195,31600,1267,1268,1272,1280,1429,31602,1628,1843,2012,2081,2600,2629,2651,2678,1192,2774,31603,2899,3376,3378,3427,89,21074,31605,3824,3836,31606,3904,4001,4015,4039,4307,31608,2924,4681], +[0,89,31611,5128,20542,3811,31612,3195,31614,5027,8192], +[2,1547,3000], +[1,2343,21849], +[0,21850,21851,21852,34352], +[0,1582,3744], +[0,48,53,68,61,78,87,90,94,1195,1251,1628,1703,1177,1879,1938,1947,1959,1961,2193,2651,31622,3177,89,3824,4307,4389,2924,4677,4681], +[0,4627,5128,89,31625,1492], +[1,2343,21854], +[0,21856,21857,21858,34352], +"file-sync-cmp", +[0,8703,1497,1668], +[0,53,68,5228,8229,61,87,90,92,442,31633,5583,811,816,10615,10817,966,972,974,5601,5087,11292,4874,4880,4883,1009,1011,1169,1193,1251,1593,33872,1177,1895,1938,1939,1959,1961,27790,2675,1192,11347,2771,2780,2990,1209,1894,89,3824,4042,11802,2278,4213,4320,4323,5978,4330,4468,4484,91,4523], +[0,89,3812,9026,1666,5128], +[1,2343,21860], +[0,21862,21863,2514,2523], +"csslint", +[0,3445,1437,2696,2205,3539,15427,2105,31642,3742,2098,2553,4294,4425,1615,4165,1393,3008,14564,31640,51,3938,3829,1874,2135], +[0,1192,1610], +[1,2343,21865], +[0,21866,21868,2514,2487], +[0,31650,31652,31654,2069,2609], +"maxmin", +[0,8719,842,972,5540,5087,4874,4880,4883,1192,11944,3400,89,3824,4172,91], +"cssmin", +[1,2343,21871], +[0,21872,21873,2514,4139], +[0,31654], +[0,8719,842,5087,3400,4172,91], +[1,2343,21875], +[0,21876,0,21877,2537], +[0,814,19526,53,104,8959,5251,101,31669,10879,31666], +[0,89,1745,31671], +[1,2343,21879], +[0,21880,0,10570,2537], +[0,4116], +"jpeg", +[1,2343,21883], +[0,21884,21885,21886,2537], +[0,31683,31686,3744], +[0,48,53,68,8229,31689,73,31690,14170,13051,31693,83,87,90,94,192,22559,19036,26486,5583,811,816,6061,16607,6065,16608,16612,5535,10876,31695,966,968,972,20562,4880,4883,1009,1011,1193,1198,1201,1527,1610,1177,1895,1938,1947,1954,1955,1959,1961,2675,31696,2694,1192,2990,3125,3534,1894,89,3824,3895,3904,4039,4042,4073,4131,4201,4307,4315,91,2924,31699], +[0,5128,89,7518,5398,9229], +[1,2343,21888], +[0,0,21889,21891,2537], +[0,51,53,31705,1193,1195,1270,1437,1457,1610,2126,2626,1192,31706,3427,1862,3786,89,3803,3824,4039,31708,4227,2924], +"hooker", +[0,3473,5341,1851,12991,5403,31710,31711,4649], +[1,2343,21893], +[0,21894,21895,21896,2537], +[0,3427,3744,21174,31718], +[0,1175,1178,1203,1208,1230,1245,1264,1268,1429,1503,1567,1652,1177,31721,1895,1938,1947,1951,1955,1959,2759,2297,2878,30885,2881,2886,2895,31723,2900,2910,2921,2923,28636,2899,1894,89,3824,4039,4042,4045,4055,4067,4069,4193,4196], +[0,3830,31725,89,1746,3193,17913,5207,163,1508,1299,31726,590], +[3,13115,12], +[2,21897,1462], +[1,2343,21900], +[0,0,21901,21902,2537], +[0,19438,603,811,816,10615,842,16145,968,972,5087,4874,4880,4883,6375,1651,1177,1895,4916,1955,1959,1961,10964,2675,1192,2780,27412,31734,2990,1894,89,3824,4039,4042,4076,4481,91,4523,4705,4763], +[0,89,582,1669,25,7021,7020,91,6687], +"nodeunit-x", +[1,2343,21905], +[0,21906,21907,21908,2487], +[0,26007,2202,2609,3008,3744,3849,4163,4227], +[0,8130,4880,8158,1173,1175,1178,1193,1201,1203,1230,1245,1257,1264,1268,1503,13985,1603,1610,1843,31742,1845,1177,1879,1895,1938,1947,1959,2675,1192,2990,1894,89,3824,31743,3904,3935,4039,4042,4045,4055,4058,4067,4069,4077,4257,31745], +[0,89,5284,2924,11498,3000,2998,6109,6609,1194,2999], +[1,2343,21910], +[0,21911,21912,21913,2487], +[0,97,31752,5545], +[0,48,53,68,23908,78,5241,83,85,87,90,94,5583,811,816,6373,10615,966,968,972,5087,4880,7677,17584,1175,7913,14065,1596,1597,1610,1177,1879,1895,1938,31755,1947,1959,1976,2559,2675,2681,2990,3188,1894,89,3824,3904,4039,4042,91,1984,4747], +[0,2681,23932,2679,8930,23933,6728,23934,89,6071], +[1,2343,21916], +"uri-path", +[0,0,21917,21918,2399], +[0,5517,11976,5535,968,972,4874,4880,4883,1030,32818,16480,19839,2990,3165,3400,3541,23535,89,3824,9245,4201,4493,91,1984], +[0,89,4627,582,31765,31766,31767,31769,31770,31771,31779], +[1,2343,21920], +[0,21921,0,21922,2537], +[0,5540,2609,4484,26222,31797,31791,31799], +[0,1671,6983,23934,2679,23932,2728,30948,23933,89,6071,8574,8930], +[1,2343,21924], +[0,0,0,10570,2487], +[1,2343,21926], +[0,0,21931,2514,2523], +"grunt-co", +"veralls", +[2,21927,21928], +[2,2235,2759], +[0,1420,1437,1177,31815,1192,2774,1894,4042,4069,4077], +[1,2343,21933], +[0,21934,21935,21936,2487], +[0,12396,9363,23289,2583,31821,3140,3992,3999,4549,4555,12449], +[0,972,4874,4880,4883,1414,1537,668,1959,10621,1894,89,3824,3973,29250,3985,3988,3998,10632,4505,91,1906], +[0,6892,20627,4627,3987,1783,89,5128,3984,4549], +[3,2289,9], +[1,2343,21943], +"all-releases", +[2,9005,21939], +[2,21937,21940], +[2,2235,21941], +[0,21946,21947,21948,2523], +"gh", +"releases", +[0,31828,3744,3849,4649], +[0,31832,1173,1175,1178,1195,1198,1264,1268,1277,1596,1610,1177,1895,31393,1938,1947,1955,1959,13871,2297,2881,2886,2895,2900,2904,2921,2925,2899,3400,1894,89,3824,3884,3885,4170,4535,2924,4677,4681], +[0,89,5128,5066,18346], +[1,2343,21950], +[0,21951,21952,21953,2523], +[0,3518,3744,3775], +[0,1172,31840,1175,1178,1195,1505,1628,1177,1879,1916,1938,1947,1959,2126,29945,31841,31842,2766,2297,2886,2898,31844,2906,2925,31845,3521,3836,4307,2924,4681], +[0,89,4627,5128,31847,8424,31849,12185,7521,9944,181], +[1,2343,21955], +[0,21957,0,21958,2537], +"vow", +[0,4729,31705,4747,4135,1862,1301,1525,2731,4116,1109,1193,31856,27921,3145,4705,31859,3717,3878,30781,1079,31861,28512,31864,24169,3957,31867,2784,31871,31877,31880,31884,31891,31893,21129,31896], +[0,89,3857,12296,12295,5131,16697,31904,31906], +[1,2343,21960], +[0,0,21961,21962,2537], +[0,29525,21155,21156,1177,1955,1894,89,3857,21166,91], +[0,3857,5128,31912,89,5131,12295,12296,31914], +[1,2343,21964], +[0,21965,21966,21967,2487], +[0,4747,3744], +[0,89,1177,31934,31928,2735,1894,10777,48,31923,53,1178,2132,31926,21495,31929,31935,31932,31920,31922,1959,1879,1938,1895,1947,1955,1961,5103], +[0,3857,5128,31912,89,5131,12295,12296,31937,6574,6635,181,1017,45,13814,22875,2414], +[1,2343,21971], +"ravis-cli", +[2,6305,21969], +[0,0,21973,21974,34352], +"TDD", +[0,48,53,61,78,5240,87,90,94,31942,20202,20212,602,15134,10817,968,972,974,4880,1011,1178,1195,1198,4899,1461,1497,1610,1177,1895,1916,1938,1959,2193,2832,3132,15326,1894,9054,89,3824,31945,4042,4045,4055,11802,4060,4067,4069,4077,4469,91,1984,2924,4677,4681], +[0,5128,89,31948,6847,6988,31950,10098], +[1,2343,21976], +[0,0,21977,21981,2537], +[0,53,61,78,87,14041,5583,1178,1195,1429,1177,2675,2990,2899,3400,1894,89,3824,3904,31956,4039,4042,2924], +[3,2247,10], +"inue", +[2,21978,21979], +[0,89,31958,31959,3868], +"grunt-env", +"-coverage", +[2,21930,21983], +[1,2343,21986], +[0,0,21987,21988,2537], +[0,8862,31964,1177,31966,1955,31967,1192,1894,4042,91], +[0,3872,1936,8221,965,3205,23584,1541,89,3824], +[1,2343,21992], +"afe-mocha", +[2,2241,21990], +[0,21993,21994,21997,2523], +[0,5546,5545], +[0,603,810,966,968,972,4874,5090,4880,4883,1503,1610,1177,1895,1915,1938,1955,1959,2832,1894,89,3824,3875,4039,4493,91,4523,1984], +[2,21996,995], +"@sailshq/r", +[0,89,6071,3875], +[1,2343,21999], +[0,0,0,10570,2537], +"grunt-release", +"s-dylang", +[2,14352,22001], +[1,2343,22004], +[0,22006,22007,22010,2537], +"notify", +[0,2677,31983,3744,1849], +[0,10817,4856,31986,13204,31989,31992,6503,4880,4883,6513,1009,1011,1429,1610,1177,1924,2193,2832,31994,2899,1894,89,3824,4039,4042,11054,4170,4193,4484,4494,4508,91], +"mountain lion", +"mavericks", +[0,1623,5128,31765,89,5131,31997,31999,6415,32001,6398,4627], +"notify-send", +[1,2343,22013], +[0,22014,22015,22016,2487], +[0,977,5152], +[0,4493,89,4548,22205,28119,3824,91,3904,972,2780,5162,968,974], +[0,89,38,4082,7433,2602,163], +[1,2343,22018], +[0,22019,22020,22016,2399], +[0,3884], +[0,4493,89,22205,3824,91], +[1,2343,22023], +"libsass", +[0,0,22024,22025,2537], +[0,1173,1175,1178,1195,24231,24234,1257,1267,1268,1275,1280,1177,1898,1935,1938,1947,1959,2022,2602,22588,31842,2297,2886,2895,2900,2904,2921,2925,2899,89,3824,3876,3884,3875,32020,32023,32026,2924], +[0,89,3875,38], +[1,2343,22028], +[2,705,1153], +[0,22029,6230,2514,2537], +[0,1324,1192,1759,1177,4135,3561,3742,814,2924,2151,2154,1420,1193,1628,53,2092,4111,4383,1195,1393,2797,4307,841,1763,3878,3618,3816,3647,4230,2686,3672,3803,4028,4681,2651,2802,24732,4409,1270,3605,4723,1898,3177,4686,1630,1216,1426,24723], +[1,2343,22032], +"sauce-tunnel", +[0,22036,22038,22039,2443], +[3,2311,11], +"-tunnel", +[2,22033,22034], +[0,97,7931,7948,8181,4808,3145,3744,3911,8187], +"yui", +[0,11931,1843,8160,11875,89,3824], +[0,32039,1669,6847,32040,89,5128,1631,181], +[1,2343,22041], +[0,22042,22043,22044,2523], +[0,1461,32046,3029,4023], +[0,48,53,68,61,85,87,90,28598,968,972,974,4874,1165,1175,1193,1195,1261,1628,1699,1700,1859,1177,1938,1959,2026,32049,2323,2494,2675,1192,2780,2820,2843,2990,3459,3618,1894,3775,89,3824,3957,4193,32051,4307,4537,2924,4677,4681,32052], +[0,11167,32054,32055,32056,31512,5128], +[1,2343,22046], +[0,22047,22048,22049,2523], +[0,32061,4889,32062,1082,15128,1145,12184,1397,1465,5386,1497,32063,1584,1593,19526,32064,1863,1874,1875,2007,29067,7076,32067,7610,2070,32068,2570,2745,32070,32071,32072,32076,32080,32081,32084,32085,2929,32086,1209,21641,3120,32087,6041,3467,3725,3744,32088,32089,3816,3822,32091,32095,32097,3839,12438,3930,3984,32098,4409,19650,32099,4555,4681,4689], +[0,48,53,61,87,14128,90,92,968,972,32102,32104,31669,32107,1006,32109,5087,32112,4870,32114,4874,8149,4880,4883,32116,32118,4891,32120,8157,1009,1011,1175,1178,1193,1195,1628,31058,32121,32123,32124,1177,32126,1915,1924,1938,1947,1959,2092,2151,2675,1192,32129,2990,3144,1894,3775,89,3824,3904,32130,4307,91,4027,2924,4677], +[0,89,1219,6718,25172,1745,1739,1179,4627,4963], +[1,2343,22051], +[0,22056,22059,22063,2537], +"sprit", +"esheet-templates", +[2,22052,22053], +"sprites", +[0,97,955,5090,3744], +"spritesmith", +"url2", +[0,53,83,87,90,442,15288,5583,811,816,6373,10615,972,5087,13204,4874,4880,4883,7749,1251,11890,1177,1895,1959,1961,10964,2203,1192,2780,3297,3401,1894,89,3824,4042,4167,4172,11803,4468,4474,91,4523], +[3,21470,15], +"wolfson", +[2,22060,22061], +[0,965,1936,11806,11807,5284,89,32142,8221,32145,91], +"foundry", +"-release-git", +[2,22064,22065], +[3,22066,16], +[2,22067,3378], +[1,2343,22070], +[0,22073,0,22076,2487], +"get-pixels", +"gmsmith", +[0,2081], +"sprite", +[3,22054,11], +[0,32151,89,4453,1702,32152,3899], +[1,2343,22078], +[0,22079,0,22080,4139], +[0,3847,4116], +[0,89,3857,32162], +[2,17566,200], +[1,2343,22083], +[0,6234,22084,22085,2523], +[0,32167,27742,549,963,4874,4880,4883,1030,1596,1651,8540,2990,3561,1894,89,3824,4493,91,1983,32170], +[0,89,9044,11000,5128,3906,6645,32172,26264,6458], +[1,2343,22087], +[0,22094,22095,22096,2523], +"@npm/types", +[2,7726,2855], +[3,8610,9], +"ite-file-atomic", +[2,22090,22091], +[2,16569,1182], +[0,32177,32178], +[0,1317,1389,1408,1506,32180,5669,1839,32181,1859,1177,19896,2228,2240,25074,2247,18461,2256,2273,32183,25060,32186,2774,3460,3521,12344,32188,3930,22031,4449,91,4535,31135,4652], +[0,89,1219,8535,6624], +[1,2343,22098], +[0,22103,0,22104,2399], +"@guarapi/eslint-config-guarapi", +[2,8711,93], +[3,5542,13], +[2,22101,3312], +[0,97,1751,3082,3744], +[0,89,9944,19102,32195,7521,1623,32196], +[1,2343,22106], +[0,22107,22108,22111,2487], +[0,1497,3744,1751,3082,97,3849], +[0,1192,2675,89,2282,1177,4039,4042,1503,3561,2924,2126,2193,1894,1610,2700,3758,3824,48,1193,1505,1628,53,2092,2990,3566,4677,1165,1178,1195,3720,3884,4307,3618,85,29945,32207,3885,87,14128,18229,4681,90,32203,1922,1959,32205,2651,3904,4045,4077,32202,4069,1895,1935,1947,1955,4055,32206,4067,2054,8229,83,14132,28972,61,5241,1251], +"undertaker", +"glob-watcher", +[0,89,6071,5128,4607,3392,32209,32210,3912,176,32211,10345,9320,15182,10052,21604], +[1,2343,22113], +[0,22116,22117,22118,2399], +"series", +"streaming", +[0,4430,3909], +[0,2899,2272,4135,15052,1389,1537,32218], +[0,89,1389,14927,1219,676,1932,353], +[1,2343,22120], +[0,22121,22123,22124,2523], +[0,97,6372,1461,3744,32225,3911], +"gulp-footer", +[0,48,53,68,73,76,78,5241,87,90,10821,10825,10828,32229,10837,968,972,974,4880,1178,1193,1195,1270,1367,1540,1567,25901,1610,32231,1787,1797,1177,1879,1895,1935,1938,1947,1959,10851,32233,1192,2780,2832,2843,3165,1894,89,3824,3830,32236,3884,3904,91,2924], +[0,3916,1367,89,4627,4963,5128,181], +[1,2343,22128], +"html2js", +[2,1283,2325], +[0,22129,22130,2514,2537], +[0,8612], +[0,9516,9515,8608,13680,1011,1414,1915,4384,4474,4483,91], +[1,2343,22132], +[0,22134,11332,22135,4139], +"gulp-symdest", +[0,18186,18183,16474,4507,20789], +[0,1781,3917,1644,2090,2150,30135,3001,3383,3374], +[1,2343,22138], +"atom-shell", +[0,22139,8134,22140,2537], +[0,30055,3919,4507], +[0,1781,3917,1644,2090,2150,30135,3001,3383,2100,2104,2105,7076,6614,6605,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], +[1,2343,22142], +[0,22143,22144,22148,34352], +[0,1079,1398,2018,3729,15042], +[0,53,14170,13051,19181,811,15460,816,826,1389,1414,668,32258,1177,1903,1938,1953,1958,3541,1894,4042,23652,4384,32262,4389,4390,4548,2924,4677], +"prefixes", +[3,3674,9], +[2,22146,8736], +[0,7017,3101,7170], +[1,2343,22150], +[0,0,22151,22152,4139], +[0,4384,2685], +[0,3925,32271,2090], +"lodash.chunk", +[1,2343,22155], +[0,0,0,22158,34352], +"-transform", +[2,13792,22156], +[0,3925,31360,24095,3741,8631,6875,200,6621,1523,32276,8652,6703,1359], +[1,2343,22160], +[0,8856,7938,7939,2523], +[1,2343,22162], +[0,22163,22165,22169,2523], +[0,12184,2003,4227,32284,4484], +"b", +[0,53,58,87,32287,4865,6503,4874,1011,1177,19896,32288,2070,2990,2899,1894,24209,91], +"storage-blob", +[2,13444,22166], +[2,12694,14922], +[0,6892,22179,32291,5061,5341,22180,7119,32293], +"streamifier", +[1,2343,22172], +[0,8029,7938,7939,4139], +[1,2343,22174], +[0,22175,14066,22176,2537], +[0,814], +[0,3209,1194,7188,19101,32302], +[1,2343,22178], +[0,22182,0,22183,2537], +"rewriting", +[3,12348,14], +"desugaring", +[0,97,32307,2081,2609,3849,5513], +[0,89,6734,4963,32310,6081,6731,32312], +[1,2343,22185], +[0,13856,7923,22186,4139], +[0,7204,32318], +[1,2343,22191], +"utf-8", +"add", +"prepend", +[0,22192,0,22193,2487], +[0,32325,32327,32329,32330,32333], +[0,1552], +[1,2343,22195], +[0,22196,22199,5885,2399], +[0,6327,8111,3127,8114,3725,4213,3555,1757,1461,3191,3744,8122,8123,8113,8127,2017,8116,3502,8126,8119,32343], +"decov.io", +[2,2364,22197], +[0,3775,1002,1192,3190,2675,89,4484,1843,1177,4039,1593,1651,2822,3471,4167,4468,4474,8166,2924,1894,3824,1628,4201,91,4856,5087,8144,4874,8165,4677,4880,4892,3720,4307,4863,8147,8146,8149,8155,4891,8160,8161,8163,10875,8136,4883,5090,4315,8157,1311,4681,8141,1584,1959,2651,1938,8139,2780,4693,8152,1011,1961,1567,8129,2135,1009,32341], +[1,2343,22201], +[0,22202,22203,22204,2537], +[0,32353,32351], +[0,89,2924,3824,91,4880,4883,32359,32358], +[0,3939,3452,5592,8124,1745,32361,467,32363], +"wireit", +[1,2343,22207], +[0,0,22208,22209,2523], +[0,53,4874,1009,1011,1610,10888,1177,1898,1915,1938,1959,1961,2070,32368,1894,4039,4094,4493,91,1984], +[0,3875,6696,6649,6788,6564,2700,6609,2998,6596,2130,6891], +[1,2343,22211], +[0,22212,22213,22214,2523], +[0,32376,32378], +[0,32380,32383,32385,2675,2990,3400,1894,1983,1984,1906], +[0,2130,3875,27106,10820], +[1,2343,22216], +[0,22219,22221,22224,2523], +"bump-regex", +"plugin-log", +[0,1209,3847,1860,2731,2752,3744,97,2609], +"versioning", +[0,4449,1192,2675,89,3875,1177,4039,1503,2924,2126,1894,1610,2700,3824,48,1693,4201,53,32392,2990,3876,4677,1178,1195,32394,87,90,1210,1922,1959,10623,3904,1938,32385,32393,1935,1947,1898,4676,1961,5535,31393,83,61,5240], +"gulp-version", +[3,2476,11], +[0,89,6071,2130,3875,3876,3945,1669,4636], +[1,2343,22226], +[0,22227,22231,22232,2487], +[0,1688], +"swap", +"cache-swap", +"object.pick", +[0,1175,1203,29775,1267,1429,1503,1177,1879,1938,1947,1959,2665,2675,2899,3421,3875,4039,4042,4045,4055,4067,4077,4193], +[0,3875,2942,3946,2663], +[1,2343,22234], +[0,22235,22236,22237,2399], +[0,32408], +[0,53,83,85,87], +[0,5284,3875,2663,3947,32416,32418], +[1,2343,22239], +[0,0,22240,22241,2523], +[0,1009,1011,1610,1177,1895,1894,3875,4039,4493,91,1984], +[0,3875,3949,2663,32425,2130], +"file-e", +[1,2343,22247], +"xtension", +[2,22242,22244], +[2,17355,22245], +[0,0,22248,22250,2537], +[0,4856,6503,4874,1429,1700,32431,2323,32433,32435,2463,2494,32436,2524,2899,91], +"changed", +[0,4636,6774,5284,19080], +"modified", +[1,2343,22256], +"modification", +"mtime", +"passthrough", +[0,0,22257,22258,4139], +[0,1503,2228,2314,2759,14529,3774,4019], +[0,1108,6961,5284,3656,1179,4990], +[1,2343,22260], +[0,0,0,22261,2537], +[0,5659,7047,1179,1149], +[1,2343,22263], +[0,22264,0,22265,2487], +[0,12396,3971,3978,4549], +[0,32452,6892,1936,1644,3729,3958,4141,1646,5341,1633,4549], +[1,2343,22267], +[0,22268,22269,22270,2523], +[0,12396,23247,9401,12421,4549,4555], +[0,4874,23262,1414,32460,1894,3958,3985,3998,4505,91,1906], +[0,4549,3958,32462,1932,156,163,1936], +[1,2343,22272], +[0,22273,22274,22275,2537], +[0,12396,23247,12421,32467,4233,4555], +[0,4874,23262,1414,1894,3958,3985,3998,4505,91,1906], +[0,4549,3958,32462,1932,2587,1936,1783,11052,163,1002], +[1,2343,22278], +"jshint-", +[0,22281,22282,22283,2443], +"reporter-jscs", +[2,22277,22279], +[0,12396,32481,3137,12127,12133,4549,12447], +[0,9311,4874,4880,1414,1177,27706,1947,1959,23312,1894,3985,27711,32484,91], +[0,2587,1936,1783,9102,3958,32462,4549], +[1,2343,22285], +[0,22286,0,22287,2523], +[0,12396,23276,4549], +[0,32452,6892,1936,1644,1932,3958,32462,5341,1633,4549], +[1,2343,22289], +[0,22290,22297,22298,4139], +[0,12396,2572,12449], +[3,19569,12], +"rework", +"rework-import", +"rework-", +"plugin-url", +[2,22294,22295], +[0,4874,1414,1894,3978,3985,3992,3998,3999,4505,91,4549,4555,1906], +[0,1936,1932,3972,3958,32462,4549], +[1,2343,22300], +[0,22301,22302,22305,2537], +[0,12396,7610,9401,2584,4555], +[0,4874,1414,1894,3958,3985,3998,4505,91,1906], +"slush", +"dest", +[0,156,1936,3265,1932,3958,32462,3974,4549], +"conflict", +[1,2343,22308], +[0,22309,0,22310,2487], +[0,12396,2581,4549], +[0,32452,6892,7234,1936,1932,3958,32462,4141,1646,5341,1633,4549], +[1,2343,22312], +[0,22314,22315,22317,2523], +"webserver", +[0,22353,692,29431,1154,15444,1458,7614,9322,2720,32513,3060,3173,29024,3445,3467,6331,20921,4135,27921,4548,4566,32514,4748], +[0,442,32523,4874,1177,32525,2203,17529,2931,29442,32519,1894,3985,32522,4390,91], +"hyperlink", +[0,6147,13729,1528,32528,3358,2195,17978,24095,15656,3378,20001,6645,3979,3980,18157,1508,4166,10381,4990,15525,4135,1932], +[1,2343,22319], +[0,22320,22321,22322,2537], +[0,2759,3181,3544,4227,4431], +[0,1177,1881,1938,2228,2323,17121,4039], +[0,18444,21779,4227,2759,4504], +[1,2343,22325], +"csscomb", +[0,22326,0,22327,2537], +[0,4549,9363,3992,13124], +[0,32452,6892,7234,1783,26564,1644,3729,3984,4141,1646,5341,1633,4549], +[1,2343,22329], +[0,22330,0,22332,2443], +[0,5210,32544,3984,32545], +"rcloader", +[0,20052,200,1783,26564,3984,4549], +[2,21861,2838], +[2,15526,2063], +[1,2343,22336], +[0,22337,22338,22339,2399], +[0,9363,27008,27010,3992,13124,4549], +[0,4874,1414,32460,1894,3984,3985,3998,4290,18071,4505,91,1906], +[0,26072,26766,3987,2195,1783,26564,1932,3984,32553,12994,176,9000,4549], +[1,2343,22341], +[0,22342,22343,22344,2537], +[0,9363,2575,3140,2581,4549], +[0,12396,4874,1414,26992,23276,1894,3985,9340,3988,10630,3992,3998,32560,10632,4505,91,12449,1906], +[0,7234,1936,1783,26564,1932,3984,32553,1646,4549], +[1,2343,22346], +[0,22347,22348,22349,34352], +[0,12449,4549,9363,32568,12447,32567], +[0,1414,1177,3984,1894,3541,3985,91,12396,3999,3978,32484,27706,27711], +[0,1745,25131,3990,1932,3984,32553,4549], +[1,2343,22351], +[0,22352,0,22354,2523], +[0,9363,3137,26987,4549], +"@nodeutils/defaults-deep", +[0,32452,6892,1783,26564,1644,1932,3984,32553,5341,1633,4549], +[1,2343,22356], +[0,22357,22358,22359,34352], +[0,32582,32584,3988,32587,32591,23059,23065,23070,23075,23078,32593,23080,32595,23082,32599,32601,32606,32609,23098,32613,23113,32617,32620,32626,32629,32631,32636,23118,32638,32640,32646,32651,32654,32656,32658,32664,23128,23133,23136,32667,23139,23141,11382,32668,10632,32669,32672,4549], +[0,192,5467,1177,1909,2114,2675,2990,1894,3985,1906], +[0,2195,16342,3984], +"from2-string", +"@shi", +"nnn/eslint-config-node", +[2,22361,22362], +[1,2343,22366], +"warnings", +[0,22367,22368,22369,2537], +[0,32582,3988,10630,23059,23065,23070,23075,29079,23078,29082,32593,23080,32595,23082,32599,32601,32606,23092,32609,32681,32686,32689,29091,29097,29100,29132,29143,29147,29149,32613,32692,23113,32696,32617,32699,32620,32626,32629,32631,32636,23118,32638,32703,29151,32705,32646,32651,32707,32710,32654,32656,32658,32715,32717,32664,23128,23133,23136,32667,23139,23141,11382,32668,13124,10632,23143,32669,32719,4290,4549], +[0,1894,3985,4505,91,1906], +[0,16342,3984,3997], +"-match", +[2,7534,22370], +"flatnest", +[1,2343,22374], +[0,22376,22377,22383,4139], +"@type-challenges/utils", +[0,12396,9363,3140,4549,12449], +[0,4874,1414,1894,3975,3978,3985,3992,3998,13124,4505,91,1906], +[2,29833,2658], +[2,3101,7131], +"to-a", +"bsolute-glob", +[2,22380,22381], +[0,2587,1936,1783,26564,1932,32462,3958,32553,3984,4549], +[1,2343,22385], +[0,22386,22387,22388,2487], +[0,1139,32732], +[0,1111,1317,20627,1177,1926,1999,2398,2600,3127,2899,3421,4042,4058,4067,4073,4146], +[0,20627,1783,5980,1644,57,3729,4001,8924,3902,2585], +[1,2343,22391], +"divide", +[0,0,14066,22393,2523], +"separate", +[0,2323,19101,17996,8297], +[1,2343,22395], +[0,22396,22397,22398,2537], +[0,1437,2070,4747], +[0,442,1414,1429,1431,1177,2899], +[0,4068,2585,16504,2090], +[1,2343,22400], +[0,22401,22403,22404,2399], +[0,3763,29749,3348,2051,32749,15057,32751,2139,3173,32753,4100,4454,32754,32756,32757,32758,32759,21144,3518,2854], +[2,3715,4001], +[0,3421,4389,2297,32761,4039,1503,1362,4255,1596,32762,19946,1389,1400,14038,2886,4153,2871,3524,21146,2906], +[0,27,2869,614,6435], +"prettify", +[1,2343,22407], +[0,22408,22409,22411,2537], +[0,1362,4454,32768,32770], +[0,1429,2323,1437,1209,4039,705,2463,1364,2384,4089,2436,27608,3753], +"jsftp", +[0,4731,27,2671,1862,705,21244,32773,1362], +"jsftp-mkdirp", +[1,2343,22415], +"ftp-test-server", +[0,22416,22417,22418,34352], +[0,32770,32768,4454], +[0,1364,1429,1437,2323,27608,2384,2436,2463,1209,3753,705,4039,4089], +[0,4731,27,2671,1862,705,21244,32773,970], +[1,2343,22421], +"gift", +[0,0,22423,2514,2399], +"wrap-promise", +[0,4474,91,1506], +[1,2343,22429], +"octonode", +[3,8304,11], +[2,15034,22426], +[2,22363,1231], +[0,0,22431,22432,2537], +"branch", +[0,6637], +[0,3209,4017,32792], +[1,2343,22434], +[0,0,22441,22442,2523], +"any-", +[2,5124,1867], +[2,22435,22436], +[3,21732,13], +"eam", +[2,22438,22439], +[0,810,972,4870,4880,4883,7749,1009,32801,1011,32804,1177,1959,32805,2832,1209,3057,3145,32807,32368,1894,89,3824,3876,4039,4167,4493,91,1984], +[0,89,3875], +"gulpgit", +[1,2343,22445], +[0,0,22446,22447,2537], +[0,1178,1597,1177,2765,2766,2297,2881,2895,2898,6387,2910,2915,2921,2923,3734,4042,4075,91], +[0,32814,24800,31767,614,5576,1388,6422,6805], +[3,6530,10], +[2,22448,4552], +[1,2343,22452], +"nid", +[0,22453,22454,22455,2399], +[0,32820,17501,32824], +[0,15221,4384,4449,4389,1796,1177,3188,4039,4135,32826,3410,2708,3433,20492,4103,13614], +[0,814,3209,202,1237], +[1,2343,22457], +[0,0,8134,22459,2523], +"gulp-de", +[0,3209,814,3403,1237,7115,15403,1204], +"gulp-declare", +[1,2343,22464], +"fine-module", +[2,22458,22462], +[0,22467,0,22468,2399], +"gulp-wrap", +"nsdeclare", +[0,32836,1573,3008,3561,4227], +[0,2924,1194,1623,3374,9345,814,1002,2278,10903,2090], +[1,2343,22470], +[0,22471,22472,22473,2523], +[0,32842,8098,2151,2036,2822,32843,3348], +[0,48,53,13693,61,71,78,13051,85,87,97,192,6298,6061,6063,1166,1170,1178,1208,1212,1364,1429,16311,1596,31058,1687,8942,1177,32848,32850,1938,1948,1951,32852,1954,1958,1964,32855,1966,1969,1982,2026,32856,2675,2824,2848,3019,2899,3200,32858,3421,4131,32860,4342,32861], +[0,8623,1118,1179,1745,32864,6533,32867,4030,5592,27], +[1,2343,22476], +"eventstream", +[0,22477,22478,22479,2537], +[0,3763,1641,32874,3171,3441,3533,710,32876,3348,1209,4135,4591,30107,3084,2141,12627,1147,20412,32759,32875,15220,32873], +[0,3421,3467,1429,2070,2899,4193,1177,3188,4039,2720,2276,1894,1596,1155,32883,20441,3697,3752,1745,32881,32878,1942,1895,1955], +[0,8173,5130,2026,32885], +[1,2343,22482], +[2,11941,1596], +[0,22483,9888,2514,2537], +[0,3763,4734,4745,2685], +[1,2343,22485], +[0,22486,22487,22488,4139], +[0,21420,4174], +[0,4481,1906], +[0,2021,32896,3729,30135,32897,7226,6689,32899,32900,24601,200,13006,1111,15814,6048,7009,7201,6621,4166,6876], +"htm", +[1,2343,22491], +[0,22492,0,22493,4139], +[0,1362], +[0,18035,32906,32907,32909], +[1,2343,22503], +"gulp-spawn", +[2,22501,33473], +"gulp-svg2ttf", +"2svgfont", +[2,45,22498], +[2,2518,22499], +[3,29059,12], +"gulp-ttf2eot", +[0,0,22506,2514,2523], +"gulp-ttf2woff", +[2,22504,1276], +[0,21147,2759,4389], +"@types/gulp", +[1,2343,22513], +"metapak", +"-nfroidure", +[2,22509,22510], +"streamtest", +[0,22514,22515,22516,2523], +[0,1177,5896], +[0,4874,2025,2899,3421,4474,91], +[0,7190,14419,3212,1858,1237,2275,1973,27916,3430,21147,3209], +[1,2343,22520], +"gulp-match", +"ternary-stream", +[0,0,22523,22526,2537], +"exhaust", +[2,4279,22521], +[0,5898,1503,6618,6786,30025,32925,3028,32927,32930,3776,4255,4384,4481], +"if", +"ternary", +[0,3048,7002,3583,1496,1585,1697,6899,6803,3432,6693,3743,7098,6638,6618,7167,2062,6681,6856,6986,7035,6648,7284,6786,6670], +[1,2343,22528], +[0,22529,22530,22531,2537], +[0,2070,21510], +[0,4874,3188,1894,4384,4483,4508], +[0,6790,7218,6610,7293,7204,200,7074,6899], +[1,2343,22533], +[0,22534,22535,22537,2537], +[0,3263,8248,32944], +[0,2765,32942,32947,32949], +"gulp-gm", +[0,32951,27747,29002,8652,12197,158,32952,28125,4041,13008,32954,32956,32959,32961,1473], +[1,2343,22539], +[0,12881,22540,22541,2537], +[0,16003,32967,16005,16002,16000,15999,442,8998,5012,25130,11536,8862,15134,811,8850,816,6373,10615,10817,10895,32970,6503,4874,20374,5254,21626,21830,1082,32971,15128,1397,1405,1457,1540,1593,1610,32972,1859,1866,1177,1895,1955,1982,1988,2116,32973,2151,10754,2203,2675,10898,2990,10902,3090,3144,2899,3363,22496,3421,5561,3527,3530,32977,1894,3706,3714,3718,4019,4042,4060,4135,4172,4174,4227,4232,4376,4072,4484,91,4523,1983,4614,188,4630,13151,32979,4748], +[0,5260,6996,6903,5194,6708], +[1,2343,22543], +[0,22544,22545,22546,2537], +[0,5652,4081], +[0,53,8229,71,83,87,1397,1177,1895,1955,2675,2990,2899,1894,4042,4048,4058,4227,4232], +[0,4080,1172,6778,5194], +[1,2343,22548], +[0,22549,22550,2514,2443], +[0,1397,4081], +[0,1177,2899,4042], +[1,2343,22552], +[0,22553,22554,22556,2523], +[0,32998,4081], +[0,15134,1177,2022,2899,3421,4039,4042,33001,33002], +"group-array", +[0,4042,4080,5284,5194,5260,4298,33005,4051], +"strip-color", +[3,5467,19], +[2,22558,1098], +[1,2343,22563], +[2,5376,591], +[3,10705,13], +[0,22564,22565,2514,2537], +[0,2007,10898,3090,814,4081], +[0,53,87,94,1082,1177,1938,2675,2990,10902,2899,1894,10904,4042,4045,4058,4067,4172,4227,4232,91], +[1,2343,22567], +[0,22569,22570,22571,2537], +"inline-css", +[0,3090], +[0,51,19861,33017,1006,4874,4880,1414,4042,91], +[0,4080,91,4056,1007], +[1,2343,22573], +[0,22574,22577,2514,2443], +[0,4081], +"lodash.g", +[2,22575,19530], +[0,1177,1938,2675,2990,2899,1894,4042,4048,4067,4232], +[1,2343,22579], +[0,22580,22581,22582,2523], +[0,33028,20378,1209,3090,3220,33029,33031,33036], +[0,53,87,94,5583,811,816,8661,1009,1011,1104,1198,1177,1881,1938,2061,2151,29406,2323,33038,2441,2765,2766,1894,4039,4042,27720,33042,4449,91], +[0,4042,4080], +[2,17487,8162], +[2,11941,22583], +[1,2343,22586], +[0,22587,22589,22591,2487], +[0,33048,33051,1618,33052], +"isparta", +[0,24235,1676,2899,4042,4045,4066,4146], +"unit test", +[0,4080], +[1,2343,22593], +[0,22594,22597,22591,2487], +[0,1082,33051,2007,3090,33052,4081], +[2,34675,22596], +"-links-validator", +[0,1175,1264,1389,1192,3188,2899,4039,4042,4045,4067], +[1,2343,22599], +[0,22600,22603,22604,2523], +[0,5251,1405,10912,814,4081], +[2,4402,16237], +[2,2767,22601], +[0,53,87,94,1856,1177,2899,4042,4045,4055,4058,10916,91], +[0,4042,4080,6778,3378,5260], +[1,2343,22606], +[0,22607,22608,22604,34352], +[0,3090,4081], +[0,1177,1938,2675,2990,10902,2899,1894,4042,4048,4172,4227,91], +[1,2343,22610], +[0,22611,22612,22613,2399], +[0,10895,16799], +[0,10817,4874,1009,1011,1177,1895,1955,1192,1894,4039,4042,4468,91], +[0,4042,4080,12938,4227,33078], +[1,2343,22615], +[0,22616,22617,22618,2487], +[0,51,2805,4143,4072], +[0,53,1192,1894,4042], +[0,4042,4080,4072,3178], +[1,2343,22620], +[0,22621,22622,22623,2523], +[0,814,4081], +[0,1397,1177,2899,4039,4042,4048,4055,4484,91], +[0,4080,91,6778], +[1,2343,22625], +[0,22626,22627,22628,2537], +[0,10895,2102,2151,4135,4484], +[0,11893,811,816,33097,4864,33099,5087,4870,4874,8860,5254,1009,1011,1512,1177,33100,1192,1209,3429,4039,4042,33101,4076,4468,91], +[0,4076,4075,4080,91,6778,4042,3378], +[1,2343,22630], +[0,22631,22632,22633,2487], +[0,51,2805,4143,4535], +[0,53,87,1193,1192,1894,4042], +[0,4042,4080,2280,3178], +[1,2343,22635], +[0,22636,22637,22641,2537], +[0,3445,3530,4227,4747], +[0,811,816,10615,10817,5364,33115,33116,33118,33120,33121,33123,4874,20374,4892,1413,1654,14674,17086,17091,1655,1660,1701,3400,30889,3561,16578,3698,1894,28865,4042,10854,2278,4484,91,1983,1984], +"array-unique", +"gulplog", +"has-gulplog", +[0,4080,4078,11996,33126,33127,33129], +"capture-", +[2,22642,3101], +[1,2343,22645], +[0,22646,22647,22648,2523], +[0,2007], +[0,1006,5087,8778,4874,2675,1192,2990,3170,1894,4042,4055,4067,4075,4172,4468,4487,91,19545], +[0,4042,594], +[2,4599,3101], +[1,2343,22652], +[2,19984,1276], +[0,0,22653,2514,2523], +[0,1389], +[1,2343,22655], +[0,22656,22657,22658,2399], +[0,33145,8712,1410,1423,2215,3561,4232,4317,33146,1835,4164], +[0,33152,51,53,68,5216,61,76,14160,78,33153,81,5715,4851,5241,83,87,90,92,97,101,104,33156,33158,33159,33162,8317,8755,554,617,33165,33167,33170,33172,33173,13471,8648,842,11534,33174,33176,33178,19861,10879,33179,24807,31666,5364,33181,7806,33183,11796,11477,21122,5245,33189,33191,4865,8780,8264,4870,33193,13057,33195,20374,33197,4880,4883,15606,5254,33198,16149,13214,23452,11800,9241,20463,13753,1082,33199,31705,1138,1145,1154,33200,20476,1251,15009,1393,1398,1413,33202,33204,1525,33206,1536,12084,15015,1560,1562,977,1615,1618,11890,16912,16566,1676,11478,15018,33208,2018,2105,2145,2070,2553,2659,2661,15022,2674,16837,33209,2689,26453,2755,2805,2856,2863,20465,33210,3084,3177,3244,3266,33211,23175,3322,3467,15031,6042,3479,3502,3509,3530,12344,3605,16840,3638,16841,16842,3672,3676,3678,3688,3729,3757,15033,3784,3878,3957,4111,4135,710,27062,20508,4165,4227,4230,28512,15039,15040,9221,33212,15042,4294,7080,4390,33213,4072,4409,4425,15046,15047,11804,33214,614,15048,33215,24739,2924,4729,4763], +[0,89,5130,3287,5122,36,202,6400,5995,200,4592], +[1,2343,22660], +[0,0,22661,22662,34352], +[0,14192,1235,14196,14198,19130,14199,14214,14215,14217,1244,1264,19127,18801,18693,1378,1381,19119,18686,19123,19122,1825,18825,18829,33223,19121,2899,3736], +[0,19132,6567], +[1,2343,22664], +[0,22665,22666,22668,2523], +[0,25623,3527,3561,4300], +[0,1414,2899,4255], +"kew", +[0,33231,1623,33232,4086,5130,590,1504,26535,6270,353], +[1,2343,22670], +[0,22671,22672,22673,4139], +[0,1437,2061,3544], +[0,2323,2899,4170], +[0,17461,7170,6769,2323,3468], +"treams", +[2,6825,22674], +"ng-annotate", +[1,2343,22678], +[0,0,22679,22680,2523], +[0,1090,4389], +[0,22114,1149,3046,7241,14629,18462,4552,33244], +[1,2343,22682], +[0,0,0,22683,2537], +[0,33249,33250,7109,20018,7099,7022], +"develop", +[1,2343,22686], +[0,2513,22688,22689,34352], +"restart", +[0,33256,7,842,8712,4856,4870,6503,4874,7749,6513,6512,28198,1009,1011,1257,1429,33258,1473,1512,1610,1652,33261,1874,1177,24287,2139,2151,2070,16015,2675,13305,2990,1209,3183,2899,3363,3400,8967,12344,1894,1862,4042,32414,33263,4067,4167,4172,4193,4196,4232,4376,4474,4487,4490,33265,33267,33273,91,4585,5573,2924], +[0,7099,7022,6568,7111,7199,7040,7027,6858,6789,6746], +[1,2343,22691], +[0,0,9264,22692,34352], +[0,1398,33283,33284,6953,4100,1965,33287], +[1,2343,22697], +[3,13337,13], +[2,6574,22694], +"mac notification", +[0,22698,22700,22701,2537], +[0,2708,4135,4747], +"notify-osd", +[0,13614,1158,1159,1796,1177,33293,3421,4389], +[0,20001,25816,3378,33295,10381,6953,33297], +[1,2343,22703], +[0,22707,22708,22709,2537], +[3,13107,12], +[2,22704,2187], +[2,14983,22705], +[0,33304,21995,1149,33307,1437,1525,33312,1536,1544,977,1575,1581,29500,1797,2026,2040,33313,2070,33315,33316,32959,33319,33322,33324,33325,33327,3183,33328,3494,3509,3547,3741,33329,33332,33335,4135,4148,4151,33336,33339,4538,4590,33340], +[0,1317,1553,1177,2025,2151,33342,2899,3416,3560,33344,33346,33349,33352,33354,33357,4170,4220,4342,4449], +[0,33359,33362,2026,33363,33365,8173,8172,3469,4218], +[1,2343,22711], +[0,22712,22713,22714,2523], +[0,33379], +[0,4389,1090,33381,1389,1537], +[0,2090,1213,33383,2574,2649,1867], +"acorn-typescript", +"esrap", +[1,2343,22718], +[0,22719,22721,22722,4139], +[0,1699,1874,2654,2747,33390,3561], +"zimmerframe", +[0,1177,2899,4193,33395], +[0,1936,57,18113,2574], +[1,2343,22724], +[0,22725,0,22730,2523], +[0,1457,2700,4228], +"ENV", +"ifdef", +"ifndef", +"echo", +[0,590,4329,2278,7121,1623], +[1,2343,22732], +[0,22733,22734,22736,2523], +[0,23175], +[0,48,53,87,192,5467,442,27928,19344,1369,1610,1622,1628,1700,1701,1835,1177,1895,20281,1938,1939,1942,1953,1955,1982,2092,33408,2203,2675,1192,2990,33415,3144,3342,33420,3400,1894,2278,21688,4135,4257,4307,91,4523,2924,4677,4681], +[2,1876,2282], +[0,2278,22022,2924,1194], +[1,2343,22738], +[0,0,22739,2514,4139], +[0,1894,4384], +[1,2343,22741], +[0,22742,22744,22745,34352], +[0,33435], +"views", +[0,33437,1414,33438,1177,1776], +[0,2844,1745], +"precompile", +[1,2343,22748], +[0,22749,22750,13533,2537], +[0,1091,1092,12384,8818], +[0,1700,1192,2675,1177,1701,2203,2924,1894,48,442,1193,91,53,4874,2990,3400,192,1953,27928,4257,87,1939,1942,1938,20281,1982,1895,1955,19344,5467], +[1,2343,22752], +[0,22754,22755,22756,2523], +"src", +[0,89,3824,3286], +[0,91,4874,4880,4883,1165,3561,4383,1177,4828], +[0,33454,33455,2145,12589,1616,33456,12589,5472,20500,33459,1237,33462,33464,12590,33465,27666,11996], +[1,2343,22758], +[0,22759,0,22760,2523], +[0,1821,3299,15160], +[0,29395,33471,33472,4126], +[1,2343,22763], +[2,4068,3101], +[0,0,0,22764,2537], +[0,33477,3778,1616], +[1,2343,22766], +[0,22767,22768,22773,4139], +[0,33482,2866,4449,4729], +[0,442,13838,1177,1895,1951,1953,17303,1955,2026,2203,2564,1776,2899,3200,3246,1894,4150,4193,4351], +"modif", +"y-filename", +[2,22769,22770], +"rev-hash", +[0,13428,28522,5472,11132,13841], +"rev-path", +"sort-", +"sort-keys", +[1,2343,22779], +"vinyl-file", +[0,22780,22786,22787,2523], +[0,16607,33490,6065,16608,16612,33491,1595,1676,33493,2020,2089,33494,2188,33497,22845,2613,33499,3021,3127,14774,3170,33500,25873,27168,4025,4135,6554,4747], +"rev", +"revving", +"revision", +"expire", +"assets", +[0,4874,6547,1166,1414,1470,1652,1736,33503,2151,2212,2822,3019,19736,33505,3297,3401,33507,1894,23535,4193,23730,4400,4421], +[0,18526,13428,13729,1237,3383,20001,3979,4135,15525], +[1,2343,22790], +"deserialization", +[0,22792,22793,2514,2537], +"deserialize", +[0,97,33513,33515,6372,33519,1497,33520,1209,3021,3744,3847,32225,4163], +[0,33522,48,53,61,73,76,81,83,87,90,94,33525,9310,33528,33530,10875,4880,1009,1011,8158,33532,1178,1195,33537,1208,1210,33541,1251,31600,33543,1429,33545,1582,1610,1651,1676,1719,1742,19526,1843,1177,1879,1895,4916,1938,1947,1951,1959,1961,2060,2193,2323,2455,2541,2675,14708,2297,2881,32762,2886,2900,2904,2925,2975,2990,2899,1894,3725,3758,3786,89,33546,33550,3822,3824,3836,3843,3884,3885,33552,33553,33556,3904,33558,4039,33560,33562,33564,4193,4196,4201,4261,33565,4409,33566,4431,91,4597,2924,4676,4677,4679], +[1,2343,22796], +"each-async", +[0,22797,22799,22800,2537], +[0,1177,1900,1903,33572,1938,1953,1958,1959,33573], +"md5-hex", +[0,17529,1698,3188,4039,4092,4389], +[0,19309,33576,4354,16790,1501,19310,19311,19314,19271,18443,1177,2446,2292,2272,671,19315,19269,33578,2869,4255,19317,590,19318,19320,19273], +"ruby", +[1,2343,22803], +[0,0,22805,2514,2523], +"@img/colour", +[0,9516,9515,1317,4384], +[1,2343,22807], +[0,22808,10377,22809,2537], +[0,1676,1833,1869,984,2145,2657,3173,3242,3440,3781,4266], +[0,2947,2090,36], +[1,2343,22811], +[0,22812,22814,22815,2523], +[0,22966,8364,33593,33596,33598,33599,22967,19593,3034,3072,3183,22451,22968,33602,33603,3763,33605,28440,33606], +"sftp", +[0,8357,8359,33608,4874,1149,4440,1596,17402,2036,33612,21082,1894,33615,33618,28664,33620,25649,91], +[0,3166,11100,27662,33624,14584,33625,14586,14587,33626,5130,33627,33628,17757,6081,33629], +[1,2343,22817], +[0,0,22818,22824,2443], +[0,33634,1149,1317,1177,3210,4384], +"@types/fa", +"ncy-log", +[2,22819,22820], +[3,12459,15], +[2,22822,5229], +[0,4137,19748,33636,28277], +[1,2343,22826], +[0,22827,22828,22830,2523], +[0,33646,3348,1676,33641,1209,3220,4135,1155,2712,5245,33643,33645,3222,14334,33642,25624], +[0,3519,3421,1429,1082,1702,33653,2675,2899,3478,4193,1177,33663,3260,4039,1448,668,33669,33673,4246,25635,25633,33674,1587,1610,2071,33672,3480,33675,32842,2152,4196,91,4856,4874,2024,2990,6503,6513,29283,692,4870,33652,33682,33649,192,1431,33668,3125,4131,17370,4232,1942,1951,33662,1011,33660,22559,1009,33655,33681], +"brotli-size", +[0,3259,33669,7827,14873,25638,3519,3243,33684,33663,14872,25633,26472,33685,3469,6710,33690,18035,1747], +[1,2343,22833], +"measure", +[0,0,22834,22835,2537], +[0,1317], +[0,4141,7050,5284,676,1781], +[1,2343,22846], +"@gulp-sourcemaps/identity-map", +[3,22837,17], +[2,22844,36113], +"map-sources", +[2,22838,22840], +"-fabulous", +[2,1676,22842], +"@vitest/e", +"hook-std", +[0,22849,2667,22851,2487], +"@codspeed/vitest-plugin", +"mississippi", +[0,1676,33735,33702,33705,33725,33727,33713,33723,33714,33710,33734,33729,33722,33718], +"source maps", +[0,33737,33738,33739,33740,33741,28794,2811,33742,33744,33745,25003,33746,33748,4144,4145,33749,33750,3101,6621,33751], +[1,2343,22853], +[0,22854,22855,22858,2537], +[0,1091,1138,1371,1437,1494,1536,33757,33758,13834,16064,33761], +[0,2212,4494,4493,2675,1177,1984,1894,91,2990,107,7806,33765,7677,33768], +"device", +"strip-debug", +[0,4592,4146,3166,2665], +[1,2343,22861], +"client-hints", +[0,22862,22864,22865,2487], +[0,984,2145,3242,3494,4100], +"accord", +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342,33775], +[0,2026,33777,2663], +[1,2343,22867], +[0,22868,22869,2514,2443], +[0,1080,6870,1676,1869,2657,3173,3494], +[0,1087,1177,1948,2899,3421,4342], +[1,2343,22876], +"looks-same", +"svg2png", +"@cpplint/cli", +"rwd", +"retina", +[0,22877,9025,2514,2523], +[0,1833,1869,3494,710], +[1,2343,22879], +[0,22880,22881,22882,2537], +[0,33798,3171,3181], +[0,192,5467,33801,33803,1168,1429,1431,1527,1177,1895,2151,2675,2990,3073,13824,2899,3310,3421,1894,3752,33804,4193,4196,4390], +[0,33804,33807,13573,7200,33808,6997,33811,6949,5351,4967,33813], +[2,33888,22889], +[1,2343,22885], +[0,22886,22887,22888,2523], +[0,33819,33821,33823,33824,7709,33826,33827,33828,27792,33831,13559,33836,33838,33840,29749,1367,10785,33841,13566,33843,3445,17009,4729], +[0,33846,9167,33848,5087,4874,7819,9241,1009,1011,33838,13566,668,33850,1177,1895,19527,1915,1938,1955,2675,1192,33851,33852,33854,33857,2845,3381,1894,13569,4257,4468,4474,1531,91,3348], +[0,12,7200,5472,1192,33804,4158,1984,13573,6930,6808,7308,33822], +"arm64", +[1,2343,22891], +[0,22892,0,2514,2537], +[0,26956,6641], +[1,2343,22895], +"rendering", +[0,0,22896,22897,2443], +[0,1178,1264,1280,1429,1177,2126,33869,2675,2990,2899,1894], +[0,4163,4161,4162,26287,3797,33871], +[1,2343,22899], +[0,22901,22903,22904,2537], +[3,18435,14], +[0,4135,22804,20584], +"incremental", +[0,20762,4481,33891,4391,640,33894,2057,22873,11976,3299,33877,2829,33882,33890,33884,33887,22883], +[0,21881,18048,12349,12350,23995,20639,8221,20701,33896,158,24800,33897,12712,26490,33898,33899], +[1,2343,22906], +[0,0,22907,22910,2523], +[0,13614,1159,9254,1177,2011,2708,2762,3410,3421,4103,4389], +[3,15893,12], +[2,22908,1512], +[0,1523,1644,7336,4166], +[1,2343,22912], +[0,22913,22914,22915,2537], +[0,2020,2071], +[0,1166,1437,1506,1177,1881,1938,2822,3421,33910,33912,4172,33916], +[0,4167,16159,28984,4166,33918,7048,2763,31360], +"@types/plu", +[1,2343,22921], +"gin-error", +[2,22916,22918], +"gulp-diff", +[0,22922,22925,22926,4139], +[0,3266], +" compilation", +[2,22902,22923], +[0,1429,2228,2899,1839,2240,26399,4436,2305,34238,22000,2236,2300,3006,2253,2273,2281,5535], +[0,5843,4439,3265,3348,33927,33928,33929,4169,33930], +[1,2343,22928], +[0,22929,22931,22934,2537], +[0,33936,33937,33938,33941,33942], +"array-each", +[0,1362,1177,33945,2899,1894,4042,4067,4487,91], +"error-cause", +[2,3094,22932], +[0,1973,5982,1145,4170], +[3,16647,18], +"se-extend-native", +[2,22935,22936], +"list-map", +[2,4601,22938], +[1,2343,22942], +"tape-catch", +[0,5621,22943,22944,2537], +[0,2228,2247,2253,2273,2281,2285,2290,33953,2291,2316,2832,3006,3518,33954,4135,33955,4232], +[0,1783,15253], +[1,2343,22947], +"uncss", +[0,22948,22949,22950,4139], +[0,3183,4167], +[0,1173,1264,1280,1177,1881,19527,1938,2822,2899,3421,4039,33910,33963,33912,4170], +[0,4167,4166,28984,16159,16160,2978,200,8636], +[1,2343,22952], +[0,0,22953,22954,34352], +[0,21122,4874,24162,13680,1414,1894,4384,4474,4508,91], +[0,6553,2021], +[1,2343,22956], +[0,22957,22958,22960,2523], +[0,1097], +[0,2553,3714,4042,4048,4535], +"useref", +[0,7521,5224,26514,1424], +"async-once", +"gulp-dest", +[2,3204,22962], +[1,2343,22965], +[0,22969,22976,22977,4139], +"@hapi/joi", +"jsonic", +"optioner", +[0,33986,33989,1676], +"array-differ", +"array-uniq", +"beeper", +"_reescape", +[2,3024,22973], +[3,22974,11], +[0,33992,33997,5245,5087,4874,668,29154,1192,4474,91], +[0,3358,34000,30983], +"valuate", +[2,22975,22978], +"lodash._re", +[1,2343,22984], +"interpolate", +[2,22980,22982], +[0,0,22986,22987,2523], +[2,3067,6937], +[0,4481,1192,2675,3534,1177,4039,4042,1894,1610,1193,53,5087,1540,34009,3720,97,107,87,1926,34015,68,5583,4073,6373,34019,811,816,5522,34013,1201,81], +[0,11615,16114,27968,13527,5130,89,1098,188,38,14584,4967], +[1,2343,22994], +"@test-runner/core", +"yazl", +[2,22996,32078,6624], +"qpass", +"yazul", +[0,22995,22998,22999,2537], +[0,11124,826,34034,1687,4351], +[3,22989,13], +[2,22996,23000], +[0,53,11126,11130,11133,11134,34040,28537,34041,1208,1676,1705,668,27502,26739,2185,2990,2899,3421,1894,3758,4039,4135,4167], +[0,4193,1973,5472,2275,13106,4158,21147,6901,34044,3212,4731,1145], +"live-view", +[2,22996,23003], +[1,2343,23005], +"oneline-view", +[2,22996,16316], +[0,0,23006,23007,34352], +[0,442,1414,1429,1177,2899,1894,4193], +[0,1429,15385,1388,34050,34053,4193,5472,17051,17052,17050], +[1,2343,23010], +[2,13857,2663], +[0,23011,23012,23013,2523], +[0,9153,6327,1149,1409,34066,34065,3188,4135,16358,2026,2822,705,1866,1525,3181,2861,2036,1364,1536,2657,2600,34060,34062,3923,34064], +[0,2899,1362,1389,34068], +[0,7223,3383,18157,29179,5260,2658,36], +[1,2343,23015], +[0,23016,0,2514,2487], +[0,34076,11480,34078], +[2,4598,3426], +[1,2343,23019], +[0,23020,0,23021,2443], +[0,34085,2984,34086,3527,27921], +[0,4201,200,1999,6681,34088,34090], +[1,2343,23023], +[0,16583,11580,23027,2523], +"smith", +[2,3521,23024], +"pngparse", +[0,34096,34098,34099,5995,4967,17758], +[1,2343,23029], +[0,23030,23031,23032,2399], +[0,22992,34105], +[0,2924,4469,91,4677,23319,4676], +[0,5995,34107,5592,33804,18035], +[1,2343,23035], +"compressed", +[0,0,8134,23036,2523], +[0,3403,34116,4207,28978,6574,6270], +[1,2343,23038], +[0,23039,23042,23044,2537], +[0,1110,34121], +"catering", +"deglob", +[0,1166,1437,34125,4294,1906], +"find-file-up", +[0,6913,1871,1111,592,1473,7208,1512,7009,7201,200,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +"find-githost", +"link-re", +[1,2343,23067], +"ferences", +[2,23046,23048], +[2,1163,23049], +[2,3986,23050], +"remark-c", +[2,15,14994], +[2,23052,23053], +[3,13240,12], +"quote-", +[2,23056,17537], +[2,1359,23057], +[2,23055,23058], +"box-", +"-style", +[2,6843,23061], +[2,23060,23062], +[2,4354,23063], +[2,23055,23064], +[3,23065,22], +[0,23068,13640,23072,2537], +[0,22437,1455,12918,34132,34134,25377,34136,3275,3518,34137,3718,3730,34139,1241,4747], +"ontent-indent", +[2,23066,23069], +[3,23065,13], +[0,34141,4796,22832,3378,1161], +"block-style", +[2,16080,23073], +[2,23071,23074], +[3,7900,10], +[2,23076,15319], +[2,23055,23077], +"emphasis-marker", +[2,23055,23079], +"fenced-code-marker", +[2,23055,23081], +[3,23082,13], +"inal-newline", +[2,23083,23084], +"hard-", +[1,2343,23088], +[0,0,23089,23106,2523], +[0,12310,6061,6063,5476,1414,2899,4131,4255], +"break-spaces", +[2,23086,23090], +[2,23055,23091], +"-bullet-indent", +[2,5401,23093], +[2,15794,23094], +[2,23055,23095], +[3,23096,22], +[2,23097,8958], +[3,13240,15], +[2,17793,17825], +[2,9344,23100], +[2,1160,23101], +[2,23099,23102], +[3,23058,11], +"without-", +[0,4213,3974,1871,4577,22188,3656,1002], +"marker", +[2,23105,23107], +[2,23104,23108], +[2,23099,23109], +"duplicate-", +[2,23111,7900], +[2,23099,23112], +"-cont", +"ent-indent", +[2,23114,23115], +[2,156,23116], +[2,23099,23117], +"padding", +[2,16569,23119], +[2,23099,23120], +"literal-urls", +[2,23099,23122], +[3,13240,17], +"used-definitions", +[2,23124,23125], +"rule-style", +[2,23055,23127], +[1,2343,23130], +[0,0,23131,23146,2537], +[0,1596,34154,2899,3421], +"strong-marker", +[2,23055,23132], +"cell-padding", +[2,16065,23134], +[2,23055,23135], +[3,23136,18], +"pipes", +[2,23137,23138], +"unordered-list-marker-style", +[2,23055,23140], +[2,4586,3966], +[2,3986,23142], +"unified-", +[2,23144,16284], +[0,4213,3974,1002,34156], +[1,2343,23150], +"-shiny", +[2,18004,23148], +[0,7936,7938,7939,2443], +"pull-", +[1,2343,23153], +[0,23156,0,23157,2537], +"pull-or-clone", +[2,10617,23154], +[0,1437,2713,3183,3923,34167,4294,4425], +[0,3721,34170,34172,4255,34174,25264,34177,34179,34181,34182], +"fixer", +[1,2343,23160], +[0,23161,23162,23170,2523], +[0,1170,34189,1676,2131,2141,2188,1209,4113,4296,15502,34190], +[0,442,5245,7810,4870,4874,34194,15507,1364,1512,1687,1742,1792,1177,2026,2099,2070,2899,3421,1894,3923,4135,4151,4170,4193,4232,25609,4508,91,4523], +[2,13729,18200], +"git-tags", +[2,2264,2907], +[2,8961,2499], +[2,2312,23166], +"jquery-", +[2,23168,2555], +[0,4217], +[1,2343,23172], +[0,23173,0,23174,2537], +[0,1080,34200,1594,1676,12777,34201,9247], +[0,20863,5130,4699,21405,2018,21302,11444], +"neo-async", +[1,2343,23179], +"chai-diff", +[2,2264,4019], +[0,23180,0,23181,2537], +[0,34208,1676,12779,9247], +[0,20863,5130,4699,21405,2018,5576], +[1,2343,23183], +[0,23186,23191,23194,2537], +"ammo", +"heavy", +[0,1676,34226,26137,2713,4567], +"bounce", +"catbox", +"somever", +"subtext", +[0,1389,1839,1177,2025,2323,2409,2494,2496,2510,2530,2297,2871,2876,2881,2900,2899,3752,3756,4151,34228,4599,4603], +"statehood", +[2,23188,8329], +[0,14609,4699], +[1,2343,23197], +"vision", +[0,0,23198,2514,4139], +[0,1414,1742,1177,1894,1895], +[1,2343,23200], +[0,0,23202,2514,2487], +"webidl-conversions", +[0,34238,1742,2924], +"@vitest/ui", +[1,2343,23206], +"@webref/css", +[0,23207,23208,13533,2487], +[0,2685,4228], +[0,48,53,87,192,5467,16405,1193,1610,1622,1700,1701,1177,1895,1938,2675,1192,2990,3144,3400,1894,4257,2924], +[1,2343,23210], +[0,23211,23212,2514,2537], +[0,16136,4227], +[0,1389,1509,2665,2899,2924], +[1,2343,23214], +[0,0,23215,23216,2523], +[0,4874,1414,1894,3985,3998,4505,91,1906], +[0,965,1936,17540,34254,11590,1644,1646], +[1,2343,23218], +[0,23219,23220,23221,4139], +[0,34270,34266,5526,5528,5529,1448,1509,1525,2071,2215,2220,34264,2228,2247,2253,2256,2258,2263,2281,2283,2308,2036,2600,2654,2820,2822,34269,2856,1209,3127,34261,3561,2278,4373,4449], +[0,48,53,87,94,10737,34272,1429,1431,6522,1177,1951,1954,1970,2899,3363,1894,4037,4039,4193,4196], +[0,2220,1739,1745,34276,34279,5592,9381,1179], +[1,2343,23223], +[0,23226,23227,2514,4139], +"own-property-symbols", +[2,2183,23224], +[0,4430], +[0,2012,19987,19988,19989,34294], +[1,2343,23229], +[0,0,23230,2514,2523], +[0,34300,34301,30025,3421,3697,4255,4389], +[1,2343,23232], +[0,0,9888,2514,2523], +[1,2343,23234], +[0,0,23235,2514,2537], +[0,2323,2899,1177,1317,2463,2384,2409,2494,2530,34312,2510], +"@ljharb/", +[2,23236,2190], +[3,19784,15], +[2,23238,14037], +[3,6541,12], +[2,23240,3205], +[1,2343,23243], +[0,23244,23259,23263,2523], +[0,1362,1473,1512,1636,2151,2036,34317,8691,1209,3367,17997,34318,22519,4431,4597,4600,34319,34321], +[2,8727,591], +[2,10306,5472], +"@ungap/structured-clone", +"from-parse5", +[2,2573,23248], +[2,2580,3493], +"html-v", +"oid-elements", +[2,23251,23252], +[2,9406,8193], +[3,75,9], +"namespaces", +[2,5925,23256], +"zwitch", +[0,1429,1596,2759,2899,3202,34324,34326], +[3,9315,9], +"gap__structured-clone", +[2,23260,23261], +[0,22055,22074,34328,1623,4329,695,2278,4245,34331,17461], +"remark-api", +[1,2343,23268], +"unist", +[3,2572,9], +[0,23269,23270,23271,2537], +[0,1326,3299,32944,4390], +[0,1177,2899,32942], +[0,14872,7827,4246,18035], +[1,2343,23280], +"aria-", +[2,23273,2618], +[3,23249,15], +[2,23275,1936], +"html-tag", +"-names", +[2,23277,23278], +[0,23281,23282,23283,2523], +[0,34342,34345], +[0,1177,15234], +[0,21000,4247,22813,18112,4166,2978,21004,5576], +[1,2343,23285], +[0,23290,23294,23295,2399], +"bcp-47-match", +"-separated-tokens", +[2,14186,23287], +"devlop", +[0,21505], +"direction", +[2,2573,3661], +"not", +[0,9516,9515,1317], +[0,12616,5122,1965,34354,26965,27081,34355,34356,34357,34359,34360,1936], +"selectall", +[1,2343,23298], +[0,23299,21592,23300,34352], +[0,4745], +[0,4249,1781,4745,17307,25611,1747,7141,7789,166,1721,18035,1745,5995,1550,3230,2109,3259,4246,6523,20832,25638,1781,3053,34366], +"attach-comments", +[2,12413,23301], +"is-i", +"dent", +"ifier-name", +[2,23304,23305], +[2,23303,23306], +[2,12413,23307], +[3,6451,11], +[2,12127,23309], +[3,23310,15], +[2,23311,1219], +"js-esm", +[2,12127,23313], +[1,2343,23317], +"esast-util-from-js", +[0,0,23318,2514,2443], +[0,87,1193,1192,34373], +"basic-node-server", +[1,2343,23321], +[0,23323,23325,23326,2487], +"ccount", +[0,1177,1903,33572,1938,1953,1958,1959,33573,34380], +"tostring", +[0,1615,2554,3183,34383,4092,12823,4389], +[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,2446,2292,2272,671,19315,19269,2869,4255,19317,590,19318,19320,19273], +[1,2343,23328], +[0,23329,23331,23333,2523], +[0,1437,1566,34392,1570,25901,1707,20949,34393,2089,2105,31174,4135,28154,4747], +"sval", +[0,1429,1177,1903,1938,1954,1958,2899,3203,3215,3421,4167,34395], +"solid", +[0,1566,4945,13729,13728,6976,15525,1098,4255], +[1,2343,23335], +[0,23337,23338,23341,2537], +"wcswidth", +[0,1138,1362,17045,1676,2020,17034,10756,28519], +[0,4874,34405,1429,1610,1705,34407,34408,34409,2212,2848,8163,3183,2899,34410,26230,4131,34413,4193,4196,20382,4255], +[2,23340,93], +"@swc-node/", +[0,15656,12804,36,6587,1973,6435,6703], +[3,9407,13], +"nd-after", +[2,23342,23343], +"exsolve", +[1,2343,23347], +[0,23348,23349,23350,2523], +[0,34423,27073,2175,34421], +[0,1241,2276,4545], +[0,4264,34426,34427,34429,20863], +[2,13721,3585], +[2,2573,23351], +[1,2343,23357], +"build-", +"build-jsx", +[2,12413,23355], +[0,0,23358,23360,2523], +[0,1645,1177,1903,1938,1948,1954,1958,1970,2899,3421,3784,22449], +"svg-tag-names", +[0,27,6622,1501], +"vdom", +"hyperscript", +"@glen/jest-raw-loader", +[1,2343,23365], +[0,23366,23367,23368,2537], +[0,4729,3445,3930,4135,668,37080,36874,7384,26870,5545,968,974], +[0,1797,4763,1429,1687,2070,2807,4200,2020,2975,3144,23802,89,4207,20573,2205,3266,3411,28853,668,23345,2161,2822,6042,814,4448,24324,3555,1894,29318,9241,1420,1525,4788,3530,28863,3824,11143,4507,33215,4726,9741,16485,30414,3527,4227,4294,91,53,17577,4874,1615,1710,29514,104,14552,30157,11196,58,29515,5254,37084,1707,37491,15245,35349,8646,7931,7948,7637,7812,26380,15906,36119,8506,30253,32284,4480,101,370,15600,30254,30260,30262,24759,5216,30464,20374,30283,3885,33523,1582,37017,21122,30913,9329,30284,33228,33534,33538,30300,30313,12837,4300,30321,30375,31673,30398,966,25114,37449,28465,30406,7943,972,33554,33526,8714,19592,9011,30387,3749,30453,30454,30467,12315,30468,30470,30471], +[0,4270,4627,4963,23245,23246,89,3286,23803,3857,5123,188,1098,3709,5167,5926], +[1,2343,23370], +[0,23371,23372,23373,4139], +[0,2664], +[0,23363,10825,10827,10828,28147,34473,34475,11011,10837,10840,29877,968,972,5087,11292,4880,1177,34480,1192,11347,2780,1894,3744,3758,89,3824,2278,4111,4270,4468,91,4705,4745], +[0,6718,4270,34484,4963,1745,4967,34485,21043,34491,34493,34494,3416], +[1,2343,23377], +"regexgen", +"sort-object", +[0,23378,0,5269,2523], +[0,7,53,87,6316,6318,1437,1448,1457,1512,1525,1595,6323,2061,34500,2151,2070,2036,2626,2681,17449,2856,1209,3079,6326,6327,3127,3183,6330,6331,29899,6332,4135,100,4473,3348], +[1,2343,23380], +[0,8856,7938,7939,2443], +[1,2343,23382], +[0,14754,23383,23384,2523], +[0,34508,34510,2899,4170], +[0,34513,3101], +[1,2343,23386], +[0,0,23393,23394,2537], +[3,5429,9], +[2,23387,19315], +[2,1561,23388], +"origin-embedder-policy", +[2,1611,23390], +[3,23391,13], +[0,816,6503,4874,1642,1794,2899,2966,1894,4042,4064,4066,4170,4474,4494,91], +[0,3101,353,1641,3048,5995,4967], +"-policy", +[2,3456,23395], +[2,23392,23396], +[3,5974,9], +[2,23398,19315], +[2,23392,23399], +"origin-", +"-cluster", +[2,4575,23402], +[2,23401,23403], +"refer", +"rer-policy", +[2,23405,23406], +"-security", +[2,4714,23408], +[2,14104,23409], +"x-content-type-options", +"x-dns-prefetch-control", +"x-download-options", +"x-frame-options", +"x-permitted-cross-domain-policies", +"x-powered-by", +"x-xss-protection", +[1,2343,23419], +[0,23420,11580,23421,2523], +[0,17835,692,17754,2129,2760,34524,13291], +[0,34527,34528,5995], +[3,17494,14], +[2,23422,965], +[1,2343,23425], +[0,0,0,23426,34352], +[0,4283,1671,1871,6901,1666], +[1,2343,23428], +[0,0,23429,23430,2537], +[0,2323,2346,2463,2494,34537,2530,28539,4535], +[0,1871,16116,34540,34541,34542,591,1641,1936,18089,1644,1936,2640,4301,6678,10368,15103,1867,23615], +[1,2343,23437], +"abbrev", +"archy", +"hexo-cli", +"hexo-", +[2,23435,2149], +[0,23442,23447,23457,2537], +"hexo-fs", +"hexo-i18n", +"hexo-log", +"hexo-util", +[0,5139,34547,2626,3021,34551,34553,34556], +"-js-types", +[2,2822,23443], +"titlecase", +"warehouse", +[0,34559,34560,17913], +"0x", +"bbrev", +[2,9165,23449], +"xt-table", +[2,13419,23451], +[2,1884,2596], +[3,1778,9], +[2,23454,3127], +[2,23435,23455], +[0,1501,7682,7115,1936,34562,34563,7293,22392,4285,1871,4301,2640,17950,2585,34564], +[1,2343,23459], +[0,23460,8134,23461,2537], +[0,34569,4294], +[0,1871,6843,3656,4289,7062,6922,6981,6701,6581,16041,23336,6700,1111,1867,5281,200,6876,7009,7201,6575,6611,6795,6960,7135,7230], +[2,11177,17514], +[1,2343,23467], +"grunt-g", +"h-pages", +[2,23464,23465], +[0,23468,23472,23473,2523], +[0,34576,34578], +"scrawl", +"ducers-js", +[2,4713,23470], +[0,4874,1414,26854,1894,3985,3998,4505,91,1906], +[0,1646,10368,1867,1936,6843,11043,18944,18089], +[1,2343,23475], +[0,23477,20489,23481,2537], +[2,5058,23278], +[0,1109], +"freeze-es6", +[2,1683,23478], +[2,5313,14056], +[0,4301,6678,7293,1111,592,1473,7208,1512,7009,7201,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +"tiny-worker", +"wcag-contrast", +[1,2343,23485], +[0,0,8134,23486,2537], +[0,4301,4295,1412,4327,3126,3656,4577,22188,7293,6865,6678,2585,1871], +[1,2343,23488], +[0,0,23489,23490,2537], +[0,1166,3130,4481,1906], +[0,1781,4301,4298,7293,6865,6678,16112,1644,1541,8309,6937,614,1263,6639,19632], +[1,2343,23492], +[0,0,23493,23494,2537], +[0,3421,1429,3297,2899,1177,4474,1894,3310,91,4856,4874,6503,23496,1431,1938,3200,1895,1955,9417,1011,10419,1009], +[0,4302,34601,34602,5592], +[1,2343,23497], +"undici-types", +[0,23498,23499,23500,2523], +[0,1149,1676,34607,34610,3324,34612,3368,3460,3917,34613,34615,34616,34619,34622,30142,34625,34626,34629,4707,2861,1401,34631,1653,2592,2713,695,1209,3081,26443,7305,34421,3220,3923,23975,4246,34634,26423,34636,34637,34639,29456,4729], +[0,1177,2292,4384], +[0,9649,34642,29319,34643,26473,34644,13538,4575,13539,6147,6374,24093,1541,4796,20997,20999,34647,2134,3358,27318,34650,6807,26474,10057,25202,3151,13499,27838,34651,3378,34652,34653,26931,6681,2306,3729,15267,28413,29179,5508,8791,11100,34654,34656,7046,34613,34657,34660,30142,34629,4303,34661,4345,17184,6901,34662], +[1,2343,23502], +[0,23503,23504,23505,2537], +[0,34667,34668,34669,34670,1437,1443,13827,1525,2745,2856,34671,1894,4443], +[0,34673,34676,107,192,5467,34677,34679,8661,34680,4856,4874,11438,7819,1011,5476,34681,5478,1082,34683,1429,1177,1951,1959,2007,2151,34684,2675,34686,2829,34689,695,2990,34690,26564,25131,2899,21290,3400,5561,2278,4135,4164,22595,4333,91,4555,3348,4745], +[0,34693,590,34692,1623,4964,11590,2278,4329,13339,34694,89,5133,25172], +[1,2343,23507], +[0,0,23508,13533,2537], +[0,1192,2278,2675,2832,3144,1622,1177,4135,1701,2924,1854,1894,1610,48,1193,1628,53,2092,2990,3400,4111,4677,192,4257,87,4681,1938,1895,2780,5467,16405], +"step", +[1,2343,23511], +[0,23512,23513,23514,2523], +[0,4311], +[0,192,5467,19438,19181,442,811,816,10615,5087,1009,1011,1177,1955,10964,2203,2675,1192,2990,1894,4042,4468,4474,91], +[0,4309,1623,590,5284,3048,23578], +[1,2343,23516], +[0,23517,23518,23519,2487], +[0,2718], +[0,192,5467,19438,19181,442,811,816,10615,10817,5087,4874,1009,1011,1177,1955,10964,2203,2675,1192,2990,3400,1894,23535,4042,4468,4474,4484,91], +[0,4311,134,590,57,1623,3048,23578], +"hap-nodejs", +[1,2343,23524], +"-newlines", +[2,1938,23522], +[0,23525,23526,23527,2443], +[0,7943,13037,34715,34718,1639,3561,4163,7917,4484], +[0,53,5652,8229,61,78,5240,87,90,92,10817,966,968,972,974,4863,5087,34720,4874,4880,4883,34722,5091,4889,5055,1193,1198,20479,14065,6375,1192,2780,26503,2802,2820,1894,3744,89,3824,34725,3857,3904,4042,4055,4058,4067,4069,4071,4073,34727,34730,91], +[0,89,1623,7165,4315,7297], +"@hono/eslint-config", +"@hono/", +"node-server", +[2,23529,23530], +[1,2343,23533], +[0,23534,23540,23541,2443], +[0,33204], +"publint", +"ly-js-compute", +[2,2062,23536], +[2,4609,23537], +"wrangler", +[0,48,53,78,4851,5743,5241,83,87,90,94,97,104,4880,1166,7913,34737,1573,1177,1895,2675,3008,1894,3720,89,3824,4131,4227,33212,7917,34741,91], +[0,7913,4592,34743,7165,1623], +"cloudflare", +"workers", +"fastly", +"compute", +[1,2343,23547], +[0,23548,20974,23549,2399], +[0,1393,3681], +[0,2887,1623,34749,4318,16918,3561,6425,4319], +[1,2343,23551], +[0,23552,23553,23554,2487], +[0,205,30928,208,213,30577,220,22371,30299,1595,1627,1634,1676,2071,29067,16783,14564,2205,34755,2641,2687,5210,19187,2747,2932,34757,3157,3170,3369,3527,3561,3676,3681,3688,4290,15887,34762,176,4728], +[0,107,34765,11893,34768,34770,34773,16934,5245,16787,34775,34776,34778,8778,16398,34780,19800,34785,22092,1317,1532,1699,1177,34787,1938,1939,2675,1192,34791,2802,2990,11357,3400,5561,3606,3613,30479,34793,3678,1894,3985,4337,91], +[0,7165,1623,695,671,9654,1783,2278,4329,4320,4337], +[1,2343,23556], +[0,23557,23565,23566,34352], +[0,4946], +"hopper-adventure", +[2,12087,23558], +"svelte2tsx", +"workshop", +"adventure", +"tutorial", +"tutor", +[0,34768,34770,1177,34787,2675,2990,3400,1894,3985,4320], +[0,4320,34801,4255], +[1,2343,23568], +[0,0,23569,23570,2523], +[0,3421,1192,2675,3534,1742,1177,1503,4508,1894,34810,1610,4320,48,1193,34809,11918,91,53,13693,2990,3165,94,192,4131,87,34806,1939,1978,1938,6063,34791,21120,1895,1955,4514,92,1011,6061,5467,1883,1009,5766,13052,61,78], +[0,7846,4320,1623,4329,695,671,34818,6884,3046,34819,1473,34820], +"big-lib", +[2,8131,23571], +[2,7635,23575], +"karma-co", +"codeshift", +"@jasminejs/reporters", +[1,2343,23579], +"pojo", +[0,23580,23581,23582,2537], +[0,3561,34826], +[0,1177,34829,1895,2203,2675,1192,30912,34791,2802,2990,3606,30479,34832,1894,34835,4320], +[0,7846,4320,1623,671,4327], +[1,2343,23585], +[3,2618,9], +[0,23586,23587,23588,2537], +[0,1634,2747,2932,3141,34842,34760,3681,3688], +[0,1532,1610,1177,34847,2675,1192,34791,2990,3377,3561,30479,3678,1894,4320], +[0,1623,21861,671,9654,4329,4320,7846], +[1,2343,23590], +[0,23592,14818,23593,2487], +"@domenic/eslint-config", +[0,63,1676,2070,4113,4227], +[0,1623,57,590,22561,2437,1351], +[1,2343,23595], +[0,23596,23599,23609,2487], +[0,2071,3369], +[3,9127,9], +"flowgen", +[0,48,53,87,192,5467,442,27928,19344,1317,34860,1610,1622,1628,1700,1701,1177,1895,20281,1938,1939,1942,1953,1955,1982,2203,2675,1192,2990,3144,3291,3400,1894,3786,4257,4307,4333,4523,2924], +" entities", +[2,1936,23600], +" encode", +[2,23601,23602], +[3,23603,14], +[2,23604,15103], +[2,18089,23602], +"entities ", +[2,23607,15103], +[0,2924,1194,4333], +[1,2343,23611], +[0,0,0,23612,2443], +[0,1623,3561,30775,5341,8958,57], +"ascjs", +[1,2343,23616], +"unescape", +[0,23617,23618,23619,2523], +[0,1533,34877,1676,33596,2139,2141,3164,3171,3763], +[0,48,53,83,87,97,192,5467,1290,16750,27731,1364,1389,1575,1610,1177,1909,1924,1954,2026,2040,2114,2182,2675,2990,3127,2899,3246,3421,3985,3995,4039,4170,34879,34881,1906,4770], +[0,4575,6662,6662,5592,1149,7003,1170,12618,5576,34883,2212,27,27,2671,21668,1862,1862,6567,705,705,21666,5508,4030,1153,4340,4339,17481,353,4731,4738], +[1,2343,23624], +[2,9374,12349], +"-unicode", +[2,23615,23622], +[0,23625,23626,2514,2487], +[0,25910], +[0,5245,27847,4874,1317,25212,3230,21180,91,1984], +[1,2343,23628], +[0,23629,23630,23632,2523], +[0,3164,4339,1581], +[0,3421,3297,2899,4193,1177,4170,2026,3752,1364,1575,192,1938,1881,5467], +"relateurl", +[0,5982,27,705,4339,6969,1973,5472], +[1,2343,23636], +"compressor", +"packer", +[0,23638,23639,23640,2537], +"uglifier", +[0,1362,3164], +[0,1429,1431,4037,4706,1364,1575,2026,2899,4170], +[0,4342,4339,705,6969,5982,27,1973,5472,1862,34901], +"detect-europe-js", +[1,2343,23650], +"alpinejs", +[3,19403,11], +"config-no", +"n-conventional", +[2,23645,23646], +[2,23644,23647], +[3,10854,16], +[0,0,23653,23654,2523], +"lyfill-node", +[2,23649,23651], +[0,1906,1166,4481,4874], +[0,1473,7208,1512,7009,7201,200,1111,592,6621,6616,7244,4166,4744,6876,4231,25986,34915,13735,13030,34916], +[1,2343,23656], +[0,23657,23658,23661,2487], +[0,31292,5012,23826,1006,1082,11869,19639,1497,11478,11479,22716,10898,10902,3090,22720], +[0,5180,8648,811,816,10615,8661,11868,4874,11486,668,4042,4227,27921,91,1984], +[2,23660,23663], +"browser-d", +[0,3709,27751,5130,5354,17950], +[1,2343,23665], +"etection", +"device-detection", +[0,23666,23669,23671,2537], +[0,5180,1457,20378,3527,11481], +"os-detection", +"bot-detection", +[0,811,8850,816,6373,10817,34939,1405,4042,4052,8849,3709,91,34940,34942,27702,27703,23560,34945], +"void", +[0,3709,200], +[1,2343,23673], +[0,0,23675,23676,2537], +"self-closing", +[0,53,87,192,5467,34951,34953,10879,4874,34955,19802,1165,13662,1509,1567,1177,695,3561,34958,3616,1894,3754,2278,4333,4337,3709,91,1984], +[0,3709,4358,91,695,4333,2278,4329,3754,1509], +[1,2343,23678], +[0,23690,23692,23693,2537], +"@bubkoo/commitlint-config", +"@bubkoo/", +[2,23680,7625], +[2,12612,1541], +[2,23680,23682], +[3,21388,20], +[2,23684,16171], +[2,23680,23685], +[2,23680,2190], +"asmine", +[2,5086,23688], +[0,16858,2070,4361,1149,25232,4597,4739,4747,2822,4709,3257,34967,3060,18993,10780,34966,13839], +"capture", +[0,1906,1192,695,2278,3549,4333,3536,1939,1942,34971,19812], +[0,1017,45,8221,18048,22074,22075,2873,1179,1623,2278,695,4333,5376,134,1936,13814,22874,22875,3257,17461], +[1,2343,23695], +[0,23697,23698,23700,2537], +"@selderee/plugin-htmlparser2", +[0,1525,1632,1634,9378,16858,3527,4113], +[0,442,11893,811,816,10615,16934,16854,5087,4874,34194,7752,1610,1177,2203,1192,3536,3541,3549,1894,4039,4042,4393,4481,91], +"selderee", +[0,4361,8221,6707,3178], +[1,2343,23702], +[0,23703,23704,23710,2537], +[0,1700,3067,34984,4533], +[0,1166,1173,1178,1257,29224,1272,1280,1362,1177,34989,3150,3188,4193,2924], +"@html-", +"/stylish", +[2,2649,23706], +[2,23705,23707], +"@sidvind/better-ajv-errors", +[0,2924,1932,34991,34984,11100,6812], +[2,23712,23], +[3,16579,15], +[1,2343,23714], +[0,23715,23716,23717,4139], +[0,1082,1699,2070,2856], +[0,1177,1894,4389,34997], +[0,8124,34999,7701,20120,1745,4363,1163,13728,1179,8623,20121,20123,20124,3452], +[1,2343,23719], +[0,23724,23727,23728,2537], +"theme-one-dark", +"@json2csv/plainjs", +[2,6019,3888], +[2,27733,23725], +[0,2205,2822,1525,35011,35008], +"-2", +"renderjson-2", +[0,1177,1984,1894,7677,35013], +[0,8124,1739,35015,1745,5592,134,4298], +"uffers", +[2,15038,23729], +[1,2343,23732], +[0,0,23733,23734,2537], +[0,4874,91], +[0,8168,8124,181,4369,2026,1745,1739,35021,12659,4367,699,35024,35026], +[1,2343,23737], +[2,11085,2634], +[0,23743,23744,23745,2537], +"pug-loader", +"recomp", +"ilation-simulator", +[2,23739,23740], +[2,4670,23741], +[0,5971], +[0,1866,2026,35036,2899,3421,3758], +[0,8124,2026,181,1781,1745], +[1,2343,23747], +[0,23748,23749,23752,2487], +[0,4535,3460], +[0,1209,2026,35046,2899,2025,35047,695,35048,1330,35051,3521,1389,2090,1776], +"@aminya/babel-plugin-replace-import-extension", +"lateurl", +[0,1283,17950,1936,21043,35053,16277,2026,1359], +[2,31806,31807], +"srcset", +"swiperjs", +[3,9376,10], +[2,23756,6424], +"postproc", +"cessor", +[2,23758,23759], +[1,2343,34505], +[0,4372,35058,31512,4453,12295,5131,1591,3525,1896,5130,35059,32054,35060,1932,89,188,35062], +[1,2343,23764], +[0,23765,23766,23768,2537], +[0,35068,35071,35072], +[0,1364,1610,2026,35074,1192,3237,4039,91], +"rss", +[0,705,27,2671,2325,1389,31360,15001], +"tributejs", +[1,2343,34522], +[0,35081,35082,3233,27838,888,6667,31937,6574,35084,35085,35086,35087,35088,35089,35092,26467,35093,7734,35095,3151,6771,35096,35097,35099,35100,11996,35102,35105,35106,35107,35108,35109,35110,35111,35112,17878,35115,35117,11812,35119,35122,10798,5876,12340,35125,25028,35126,35128,35129,35131,35133,35134,24079,5995,33741,35135,35136], +[1,2343,23773], +[0,0,23774,2514,2537], +[0,3445,2929,2899,3188,4039,4042,4072,1362,3310,35146,20463,4705,4232,8850,4073,6373,35141,816,35145], +"toidentifier", +[1,2343,23777], +[0,23778,23779,23780,2537], +[0,4729,1091,1594,35154,35155,35156,35157,1209,3237,35158,35159,35161,35162,2026,35163,35164,35166,35168,35169,1154,1364,1536,1562,35171,1130,97,35173], +[0,3278,1096,35175,35176,4167,35178,1532,35179], +[0,35181,35182], +[1,2343,23784], +"s-port", +[2,3209,23782], +[0,0,23786,23787,34352], +"sse", +[0,12473,4484,1177,2205,4042,1984,1894,91,53,4874,87,4057,4523,7677,5583,1938,11899,22839,22847,10817,816,24621,5660], +[0,4383,4380,1623,5256,35189,35191,1698,22306,35193], +[1,2343,23789], +[0,0,23790,2514,2537], +[0,1680,4874,16860,3090,4228,23956,31292], +"agent-base", +[1,2343,23793], +[0,23794,0,23795,2399], +[0,35205,35206,35209,35212,35213,35214,35216,35217,35220,35221,35222,35226,35227,35228,35230,35232,35233,35235,35236,35237], +[0,1145,4384,1973,5472,5130,200,35239,35240], +[1,2343,23797], +[0,23798,23799,23801,34352], +[0,1437,1792,2089,1209,3718,26840,35245,4431], +[0,35247], +"mockttp", +[0,4389,4384,2899,4386,16237], +"polka", +"next.js", +[1,2343,23805], +[0,0,23806,2514,2487], +[0,1192,1177,2203,1894,442,1193,53,1953,27928,87,1939,1938,20281,1982,1895,1955,19344], +[1,2343,23812], +"union", +"corser", +"secure-", +[2,23810,3797], +[0,23817,23819,23820,34352], +"eol", +[3,1895,15], +"opulist", +[2,23814,23815], +[0,35260,35263,35264,1417,1693,15016,35265,2133,2179,2070,35266,2571,2713,17403,3183,3206,3431,13635,3433,3435,814,18997], +[2,15021,36], +[0,13614,1143,1159,1537,1610,1796,35268,9254,1855,1177,14738,2762,2822,35271,3410,3421,4103,4135,4384,20496], +[0,4384,1973,35273,1145,1388], +[1,2343,23822], +[0,23823,23824,2514,2523], +[0,35279,35280,21505,29174,35278], +[0,4384,3297,4483,35282,4039,4508,1894,29169,4874,1834,35285], +[1,2343,23827], +[2,836,22715], +[0,23830,23833,23834,2523], +[3,7639,16], +[2,23828,176], +[0,3756,4393], +"HttpStatus", +[2,27,5576], +[0,4039,35291,4255], +[0,4390,2150,2090,18158,7204,3101], +[1,2343,23836], +[0,23838,23839,2514,2487], +"mediation", +[0,35297,35299,35298], +[0,35291,4255,1537], +[1,2343,23841], +[0,2513,23844,23845,2487], +"-retry", +[2,7737,23842], +[0,15288,15594,5087,4874,1009,1011,1596,668,1177,1903,1938,1954,1958,1192,1894,4468,91], +[0,35306,6346,35307,35308,4967,35310,5995,35312,27448,14629], +[1,2343,23847], +[0,0,23848,23849,2537], +[0,15288,5367,5371,6494,15594,5087,4874,9240,1009,1011,1364,1527,1652,35317,1177,1903,1938,1954,1958,2675,1192,2990,3363,5362,1894,4342,4468,91], +[0,35306,6346,35307,35308,5995,35312,15001,2026], +[1,2343,23851], +[0,23852,0,23853,4139], +[0,1676,3299,15160], +[0,32859,35324,35327,35328,35329,1326,35330,5995], +[1,2343,23855], +[0,23856,23857,23858,4139], +[0,1676,3299], +[0,442,6373,5245,4874,20584,1759,1177,1895,1966,1982,640,1894,4508,4514,91,4523,1983,26744,1984], +[0,32859,35328,4398,202,5995], +"anity", +[2,1901,23859], +[1,2343,23863], +[3,2677,9], +[0,23864,7923,23865,2523], +[0,4039,3188], +[0,21770,4449,1241,35342,16330,29615,35343], +[1,2343,23867], +[0,23871,23873,23880,2537], +"singular", +"plural", +"camelize", +[0,2753,13786,4507,35349], +"dasherize", +[0,4874,1166,3505,4453,4481,1906], +"demodulize", +"ordinalize", +"uncountable", +"singularize", +"titleize", +"tableize", +[0,1241,21770,3403,2090,7204,6857,16330,35342,29615,35343,3778,17023], +"classify", +[1,2343,23884], +"foreign_key", +[0,23885,0,23886,34352], +[0,26925,35364,35359,35367,35358,35365,35363,35356], +[0,7009,7201,1111,200,4744,1473,35369,35371,590,6847,35373,29002,35374,13006,4403,1478,15955,35375,35376,35377,32312,158,18048,21881,20639], +[1,2343,23889], +"@messageformat/core", +[0,23890,0,23892,2443], +[0,35382,15019,2713,35259,4431,35383], +"fast-printf", +[0,4403,7009,1111,35385,35386], +[1,2343,23898], +"make-plural", +"val-parser", +[2,9433,23895], +[2,18108,23896], +[0,23899,23900,23902,2487], +[0,35392,1082,1525,4232], +[0,35394,35395,1177,19210,1999,2899,3697,4042,4135,4227], +[2,23927,23929], +[0,2280,4072,4533,4535,3178,2632,5284,5286,1925,5194,6598,7075,6778,7056,7192,1149,7003], +[1,2343,23935], +[3,5702,15], +"-function", +"-functions", +[2,23904,23906], +[2,69,23907], +"gh-release", +"i18next-", +[2,1351,18691], +[2,13843,23911], +[2,23910,23912], +"fs-backend", +[2,23910,23914], +[2,2655,5995], +[2,23910,23916], +"storage-", +[2,23918,2325], +[2,2703,23919], +[2,23910,23920], +"sprintf-", +[3,10810,11], +[2,23923,7120], +[2,23922,23924], +[2,23910,23925], +[3,6021,10], +"interna", +"ease", +"alization", +[2,3855,23930], +[2,23928,23931], +[2,2703,8840], +[2,2202,8840], +[0,23937,23938,23939,2523], +"gettext", +[0,4072,2805,4121,4143,5180], +[0,1700,1192,2675,3144,1622,1177,1701,668,2924,1894,842,1610,4535,48,442,91,53,4874,2092,2990,3400,4677,28639,192,1953,27928,35403,4257,87,4523,1939,1584,1942,1938,20281,1982,1895,1955,19344,16400,5467], +[0,2280,4535,4533,4072,2924,1464,14137,15215,23634,2262,14137,2632,3178,6707,6708], +[1,2343,23941], +[0,23943,23944,23945,2537], +"gridly", +[0,22989,22991,22997,23001,23004,1519,1522,25190,2071,26553,17798], +[0,2829,3310], +[0,1187,1973,8791,200,2275,5472,4990,4389,4384,1166,2899], +[1,2343,23947], +[0,23949,23951,23953,2443], +"safer-buffer", +[0,1362,1437,2070,1209,3127,3188,35417,35419], +"errto", +[0,19181,442,12312,13414,4865,4870,4874,6513,1009,1011,7677,1703,1177,15555,35422,4193,35425,35426,4493,4494,91,35428,1984], +"unorm", +[0,1783,1973,2275,29352,1745,1739], +[1,2343,23955], +[0,23957,23961,23962,2537], +[2,8293,23958], +[0,53,71,81,5717,5749,5751,5757,5759,5782,5788,5821,5830,83,87,14128,90,97,35437,35439,4874,15427,5990,1212,14191,35440,17495,1429,1437,35443,1509,1525,1676,1680,1700,35444,28504,1687,35446,28137,13772,6473,2020,35450,2205,2215,33100,2670,12788,35453,2709,2742,26453,2743,35455,2753,2856,1209,35457,3093,7305,3220,35461,3257,3266,35462,3493,3532,35463,3549,15245,35465,3742,3762,35467,35469,13780,4025,4108,4135,5152,4232,4296,35473,35476,35479,35482,35484,35485,35486,35487,35494,35496,4449,4459,91,35497,35500], +"oxide", +"-reflect", +[2,5258,23959], +[0,33640,17835,35502,8862,811,15460,816,29544,35505,4856,5245,35507,17577,22089,27299,6505,7812,5254,5162,13418,35510,1009,1011,1198,1304,1364,35512,35513,1431,21480,4907,1544,1594,1610,35514,1874,1177,35517,17303,2026,35518,2323,2338,35519,2383,2384,2450,35521,35523,20305,2494,35527,2530,8163,3124,3159,3183,35531,3246,35533,3752,89,5311,4042,4076,4151,4193,17010,4294,35537,4484,4535], +[0,35539,6564,1388,2887,5351,8674,5472,13428,1973,8791,6969,1145,6468,35540,6789,6746,1149,7003], +[1,2343,23965], +"proxies", +[0,23966,23967,23968,2487], +[0,17877,35547,1137,20908,20991,1676,35549,1736,2182,28142,35550,35555,4391,4449,4548], +[0,28192,35558,28180,5245,28203,35561,35563,6520], +[0,4419,17878,5472], +[3,1891,15], +"stai", +[2,23969,23970], +[1,2343,23973], +[0,23976,23978,23979,2523], +"pre-suf", +"spawn-sync", +[0,1209,10627,35570,26827], +".gitignore", +[0,4874,1009,1011,1389,35573,35575,1610,1680,35576,35577,2752,3188,3400,3421,4039,4255,35579,35580,4421,4474,12851,91], +[0,6969,5982,3212,13106,4158,35582,4420], +"asterisks", +"regular-", +[2,23981,7256], +[1,2343,23984], +[0,23985,23986,23987,2537], +[0,10780,1292,1362,35382,1525,1536,1559,2020,2026,35588,2070,2659,2822,1209,3188,3257,3330,3411,35589,4039,4218,25192,35591,20496,4449], +[0,35593,1389,1429,18761,35596,1448,1719,1177,18766,1951,2899,705,35598,4167,4193,4196,4220,4389], +[0,5284,5472,27603,1388], +[1,2343,23990], +"dimensions", +[0,0,23991,23996,2537], +[0,4384,4389,1474], +"resolution", +"heif", +"tga", +"tiff", +[0,2585,176,14903,6938,26815,15847], +[1,2343,23998], +[0,0,23999,24000,2537], +[0,442,816,10615,1177,35611,1924,1937,1942,2203,29741,1776,3090,3549,3758,2907,4042,4495], +[0,4426,35617,5284,7598,35619,35620,35621,35622,35625,35628,35629,1424,8221,12075], +[1,2343,24002], +[0,0,24005,24007,2537], +"ow", +"p-pipe", +[0,48,53,83,87,97,5583,1195,16818,1593,1177,16821,1895,1955,1999,2182,35634,16824,2675,2297,2876,2881,2895,2904,2908,2921,2925,2990,3183,35637,3377,1894,3774,4042,16827,2924], +"imagemin-webp", +[0,1675,6925], +[1,2343,24009], +[0,0,24010,24011,34352], +[0,7115,4389,19988], +[0,3101,7046,7525,7170], +"is-png", +"pngquant-bin", +[1,2343,24015], +[0,24018,24019,24020,2537], +[2,2267,1932], +"pngquant", +[0,3923], +[0,1329,1398,1429,35649,2899,35650,4255,35653], +[0,3101,6657,4430,353], +[1,2343,24023], +"utf7", +[0,0,0,24025,2443], +"reader", +[0,3949,1499,1179,5701,1862], +[1,2343,24027], +[0,0,8134,24028,2487], +[0,35667,35668,35670,4435,5396,3403,4571,7204,4569,18132,6270], +"cpx2", +[3,23479,11], +[1,2343,24034], +"import-size", +"seamless-immutable", +[0,24035,14525,24039,2537], +[0,1437,32972,2089,21890,35675,3718,4425], +"mutable", +"on-write", +[2,1583,24037], +[0,2228,3005,22832,6901,35677,4262,18234,3514,6681,3005], +[1,2343,24041], +[0,24042,24043,24046,2537], +[0,35720,35797,35724,35730,35781,35789,35795,35799,35810,35682,35684,35697,35739,35750,35754,35769,35779,35793,35685,35700,35721,35741,35748,35756,35785,35787,35792,35812,35689,35694,35743,35752,35762,35774,35791,35805,35702,35705,35706,35708,35710,35723,35802,35806,35709,35699,35718,35729,35767,35772,35804,35808,35713,35733,35764,35811,35690,35701,35717,35727,35738,35761,35776,35783,35746,35736], +[0,2150,2070,2323,3403,2278,2899,89,1177,1209,4039,1637,3561,2924,1859,2151,2759,1610,2025,2504,3342,3824,1628,2359,3744,2367,4111,1165,2482,2496,4307,35814,35816,3427,4689,2361,2960,3618,35819,4909,1959,1879,1938,1947,25925,35818,1652,2054], +"variant", +[2,9721,24044], +[0,89,5128,4627,4963,181,5130,4967,35821,4437,14547], +[3,2697,12], +[1,2343,24049], +[0,24050,24051,2514,2487], +[0,20443,1676,26137,26144,3427,3763], +[0,1173,1198,1253,1267,1177,1903,1958,1970,2026,2164,2899,29946,4257,4342], +[1,2343,24053], +[0,0,0,24054,2523], +[0,1317,35832,4439], +[1,2343,24056], +[0,0,24058,24059,2523], +"bypass", +[0,35837], +[0,1473,57,35839], +[1,2343,24061], +[0,0,0,24062,2443], +[0,6105,4445,18241,5284,1936,2585,24829,24830,24843,6106,24832,6110], +[1,2343,24064], +[0,0,24065,24066,2537], +[0,4874,34238,1177,1895,1955,1982,1894,1531,91,4523,1983,1984], +[0,2062,35849,35851], +[1,2343,24068], +[0,0,0,24071,4139], +"metacom", +"metaco", +[0,4158,3212,91,3163], +"nfiguration", +[2,24070,24072], +[1,2343,24076], +"metalog", +[0,0,24082,23865,2537], +"metaschema", +"metautil", +"vm", +"metavm", +"metawatch", +[0,2899,1177,2759,15854,1951], +[3,15793,16], +"tarhia", +[2,24083,24084], +[1,2343,24087], +[0,24094,24096,24098,2537], +"isolation", +"enterprise", +"scalable", +"soa", +"stateful", +"cluster", +[0,3864], +"interactive", +[0,53,29553,5103,1894,91], +[2,24101,103], +[0,89,5128,35865,11000,8192,35867,35869,3857,3906,35868,35870,4450,9044,3811,5779,200,5131,12295,12296,5122,35871], +[1,2343,24100], +[0,0,24102,24103,2399], +[3,9312,10], +[0,48,53,81,87,90,11976,12310,5476,1195,1429,1177,2026,2151,2193,2205,2822,2832,3127,3188,2899,3286,35877,3400,35878,89,3824,2278,4255,2924,4677], +[0,4451,5284,176,5938,16504,8623,1936,6956,24456], +[1,2343,24105], +[0,0,24106,24107,2487], +[0,2276,28234], +[0,4452,57], +[1,2343,24109], +[0,0,24110,2514,2487], +[0,29169,4384], +[1,2343,24112], +[0,24115,24119,24123,2487], +"-vnode-flags", +[2,2711,24113], +[0,25671], +"inferno-", +[2,24116,594], +[2,24116,6579], +[0,5517,442,9089,603,4874,22839,1177,1895,1915,1938,1955,6526,2203,1894,4493,91,4523,1984], +[2,6073,591], +"ToString", +[2,8924,24121], +[0,9183,977,16358,35896,34877,34876,35897,35898], +[1,2343,24125], +[0,24126,24127,24131,2537], +[0,1512,1672,3188,35904], +[0,4856,6503,1429,1474,1787,1177,2899,3421,4474,4487,91], +[2,2712,591], +[2,2712,1592], +"humanize", +[0,3073,2942,4251,1676], +[1,2343,24133], +[0,24134,24141,24142,2523], +[0,15312,35917,17416], +"inherit", +"inheritance", +"klass", +"oop", +"oriented", +[2,3425,24139], +[0,13614,1159,9254,1855,1177,2708,3410,4103,4389], +[0,100,4647,6899,3053,7260,1697,1496], +[1,2343,24144], +[0,0,7923,24145,2523], +[0,1633,18718,3729,35109,32900,6553], +[1,2343,24147], +[0,20896,24148,2514,2523], +[0,7806,9227,6494,5087,1536,1594,2026,1192,3363,1894,4468,91,4763], +[1,2343,24150], +[0,24155,24158,24159,2537], +"@alcalzone/ansi-tokenize", +"auto-bind", +[2,17503,7201], +"yoga-layout", +[0,2713,4431,15019,35935,35938,3923], +"@types/ms", +[2,11313,14675], +[0,4389,4430,1537], +[0,1936,22115,57,353,3586,1623], +[3,6547,13], +"-exit", +[2,24160,24161], +"ack-utils", +[2,6516,24163], +"@vdemedes/prettier-config", +[2,15289,89], +[3,3816,9], +"tools-core", +[2,24167,24168], +[1,2343,24172], +"print", +[0,24173,24174,24175,2537], +[0,24156,5254,2738,3242,4135,22776], +[0,11976,4874,7677,1395,12690,3232,3446,7461,9245,91,1984], +[0,5995,1550,3230,3232,1932,2844,1747,18037,4799,91,2325,1552,1542,3151,9553,3766,35948], +[1,2343,24178], +[3,2718,12], +[0,0,24179,6273,2443], +[0,48,53,61,76,78,87,92,107,192,5467,9089,603,5366,5087,4870,7819,1009,1011,1193,1317,1593,1177,1895,1955,1978,2675,1192,1209,3400,1894,3957,4474,4508,4514,91,3348], +[1,2343,24185], +[2,24184,4013,17526], +"inno", +[3,2719,9], +[3,29444,16], +[0,24186,24187,24189,2523], +[0,35957,16781,2036,2856,3057,35958,4135,4507,4748], +[0,192,22559,19438,19181,442,11893,8755,554,10879,4864,5087,7637,7889,19446,35960,8778,4874,5254,4892,21626,1009,1011,1193,16307,1566,668,1177,1895,1938,1939,1942,1955,2020,2071,2151,2203,2675,1192,2822,2990,3144,1894,4039,4474,91,4523], +"run-async", +[0,1192,91,12938,89,5472], +[1,2343,24191], +[0,24192,24193,24194,2523], +[0,1437,1835,3170,4135,4227], +[0,8778,5254,1009,1011,1172,1175,1195,1257,1267,35968,1268,1874,1177,1895,1954,1955,2151,2070,2675,2766,2297,2881,2898,2904,2921,2925,2990,3123,3188,2899,1894,4039,91,2924,4677], +[0,4469,35972,2924,1194,91,4799], +[1,2343,25249], +[1,2343,24198], +[0,8998,1525,1759,3232,4494], +[0,24197,34525,24199,34352], +[0,5995,31012,35980,35981,3232,3230,1550,2844,1747,18037,4799,91,200,13326,35982,13325], +[1,2343,24201], +[0,24203,24205,24206,2487], +"fwk", +[0,35987,35989], +[3,2726,9], +[0,10817,4856,17577,6503,4874,1429,27445,1610,1687,2899,4039,4042,4474,91], +[0,91,6892,35993,4988,35995], +[1,2343,24208], +[0,24210,24212,24215,2523], +"reify", +[0,4757,1138,1687,1082,1084,35958,24806,36000,36001,32335,19441,36002,36005], +"exports", +[0,1166,3421,1170,89,36007,2022,1209,4039,4135,7094,3471,4508,842,36008,2188,3752,91,17577,4874,36009,4880,4870,20959,5254,15906,36011,28142,9725,28203,29139,603], +"packaging", +"unrun", +[0,91,202,7047,6639,4799,4643], +[1,2343,24217], +[0,24221,24222,24225,2523], +"remark-co", +"de-import", +[2,24218,24219], +[0,4870,24156,5254,36017,1209,3242,36018,36020,4135], +[0,11976,4874,7677,12690,3232,3446,7461,9245,91,1984], +"coffee.md", +"litcoffee", +[0,5995,3232,1932,1550,2844,1747,18037,4799,91,7163,2602,2013,6868,7147,3076,6865,13716,3073], +[2,24227,553], +[3,37196,18], +[1,2343,24243], +[3,1235,25], +"3-member-expression-literals", +[2,24229,24230], +[3,24231,27], +[2,4635,5796], +[2,24232,24233], +[2,1267,13278], +"-cal-buddhist-full", +[2,10739,24236], +"cldr-cal-", +"-full", +"chinese-full", +[2,24238,24240], +"cldr-cal-c", +[0,0,2667,24252,4139], +"optic-full", +[2,24242,24244], +"dangi-full", +[2,24238,24246], +"ethiopic-full", +[2,24238,24248], +"hebrew-full", +[2,24238,24250], +[0,91,4749,24753,24754], +"indian-full", +[2,24238,24253], +"cldr-cal-i", +"slamic-full", +[2,24255,24256], +[2,6795,24239], +[2,24238,24258], +[1,2343,24265], +"persian-full", +[2,24238,24261], +"roc-full", +[2,24238,24263], +[0,24270,24279,24281,2523], +"cldr-core", +"cldr-", +"dates-full", +[2,24267,24268], +[0,1209,4870], +"numbers-full", +[2,24267,24271], +[2,2004,19895], +"grunt-curl", +"grunt-zip", +[3,15911,15], +"emory", +[2,24276,24277], +[0,11976,4874,7677,3446,7461,9245,91,1984], +"ecma", +[0,5995,4799,91,36033,36034,5547,3624,16284,36036,36037,36039,36040,36041], +"ecma402", +"jsonc-simple-parser", +[1,2343,24285], +[0,24286,24288,2514,34352], +[0,2856,3183,4296], +[2,1940,23688], +[0,1192,2675,1177,4039,4468,4474,1894,91,5087,4874,2990,7892,36047,1942,1938,1895,1011,18285,1009], +"flag-icons", +[3,10697,15], +[2,24290,6082], +[3,2273,15], +[2,24292,23688], +"grunt-re", +[2,24294,2495], +[1,2343,24297], +[0,24300,24301,24303,2523], +[3,23932,13], +"country", +[0,8811,7681,2205,2777,3157,3505,3921], +[0,11436,4874,4880,1009,1011,1166,1597,1701,1177,1907,15290,2020,89,4025,4094,91], +"dial code", +[0,91,4481,4354,4532,553,36055,36059], +[1,2343,24305], +[0,0,24306,24307,2537], +[0,53,87,92,11893,19441,8811,4874,1009,1011,1193,1622,1177,1895,1192,1894,91], +[0,91,4481,8784,4354,16790,1973,4532,553], +[1,2343,24309], +[0,24310,24311,24312,2399], +[0,29891,1437,1457,15261,24283,3181,3188,36071,35237,4039,21512,91,9455], +[0,4874,668,1894,4384,4508], +[0,91,11540,24364,1999,10906,6147], +"updates", +[1,2343,24321], +[3,14428,13], +[2,24315,15525], +"inversi", +"on of control container", +[2,24317,24318], +"ioc", +[0,0,0,24322,2487], +[0,6869,7296,4643,1351,5284,4484,7047], +[1,2343,24330], +"empathic", +[3,547,8], +"li-framework", +[2,24325,24326], +"-prompts", +[2,24327,24328], +[0,24333,24350,24357,4139], +"discover", +[2,8655,24331], +[0,51,1405,1437,1525,1687,2070,2822,3181,3188,814,4135,4484,18272], +"utils-array", +[2,8655,24334], +[3,24335,13], +[2,24336,2150], +[2,24336,11996], +[2,24336,3729], +[2,24336,3101], +[3,24340,14], +"ubprocess", +[2,24341,24342], +[2,24336,7009], +"elementtree", +"leek", +"ssh-config", +"-proxy", +[2,4339,24348], +[0,692,19861,4856,17577,4865,7637,9129,10949,6503,4874,5251,20959,5254,1429,2675,34269,2899,3400,3421,1894,4039,4474,4487,4490,14970,91,31745], +[3,15592,14], +[2,24351,1633], +"pen", +"@types/open", +"s-name", +[2,15461,24355], +[0,200,91,9654], +"@types/split2", +[3,9240,12], +[2,24359,4575], +[1,2343,24365], +[2,2733,14606], +[2,2733,5130], +"hybrid", +[0,0,24366,24367,2523], +[0,1192,2675,1209,4039,4487,4468,3093,1894,36090,1527,91,5087,4874,36097,4492,36088,15600,4131,36098,36103,31194,4585,31195,36100,1652,36095], +[0,671,4487,36106,1894,1541,91], +[1,2343,24369], +[0,24371,24372,2514,2487], +"@types/svgo", +[0,18272], +[0,4865,4874,1512,2070,3400,3403,4487,36114,91], +"icon pack", +[3,11619,14], +[1,2343,24376], +[0,24377,24378,2514,2537], +[0,36119,1415,1457,1556,1676,668,28795,36120,3527,3616,4025,4042,4227,12444,26379,27921,4459], +[0,603,8850,842,5245,4874,5251,19839,2117,3561,26712,1894,814,4057,2278,4300,3709,4359,4072,36123,4493,91,1984,9252], +"@ioredis/commands", +[1,2343,24394], +"-key-slot", +[2,24093,24381], +"denque", +[3,19541,11], +"guments", +[2,24384,24385], +"-error", +"-errors", +"redis-errors", +"redis-", +[2,24390,57], +"as-callback", +[2,18124,24392], +[0,24404,0,24405,2537], +"@ioredis/", +[2,8626,16609], +[2,24395,24396], +[3,19583,22], +[3,10408,16], +[2,24399,10446], +[3,8826,10], +"is-errors", +[2,24401,24402], +[0,668,2191], +[0,200,7047,202,17526,10906,1999,91,36130], +"sentinel", +[1,2343,24409], +"pipelining", +[0,24410,24411,24412,2487], +[0,36135], +[0,811,816,6373,1389,4037,4042,4255,36140], +[0,15253,1936,1783], +[1,2343,24414], +[0,0,24415,24420,2399], +[0,2228,2899,29691,2240,4019,36157,36156,2300,36149,2258,36160,4232,2247,36163,2273,2281,36165,36167,36153], +"irc-colors", +"node-i", +"cu-charset-detector", +[2,24417,24418], +[0,2845,2844,1155,4496], +[3,1104,10], +[1,2343,24423], +[0,0,24424,24425,2523], +[0,1389,1177,2080,36176,4389,36178,4535], +[0,1616,12588,36181,36182,7789,3428,6803,36183,36185,36186,36187,36189], +[1,2343,24427], +[0,24428,24429,24430,2523], +[0,2151,2859,36194,21224], +[0,3400,3524,4535], +[0,3113,36197,57,11806,22875,36198,3656], +[1,2343,24432], +[0,24433,24434,24435,34352], +[0,1362,3171,705], +[0,1149,1512,1525,2899,4037,4193], +[0,4500,5592,4030,3101,22115,3424], +[1,2343,24438], +"is-extglob", +[0,24439,24442,24443,2443], +[0,705,1696], +"extglob", +"globstar", +[0,3297,2899,1177], +[0,4500,22115,3424], +[1,2343,24445], +[0,24447,0,2514,2537], +[2,14503,7204], +[0,3183,36215,1437], +[1,2343,24452], +"globally", +[3,9509,9], +"locally", +[0,24453,24454,24455,34352], +[0,31081], +[0,13789,1011,1177,28753,1680,2024,3401,4481,91,4523,1906], +[0,91,4799,553,6435,614,6731,3061,1698,1781,7265], +"vanilla", +[1,2343,24458], +[0,24459,16075,24460,2537], +[0,1562,36226,3173], +[0,1563,998,36228], +[1,2343,24464], +"is-object", +"kind", +[0,24465,24466,24467,2537], +[0,24648,6327,3105,3181,4745], +[0,442,8144,7639,6503,4874,1414,36007,668,1177,2899,3758,4135,4494,91,4523], +[0,91,1745,1179], +[1,2343,24471], +" name", +[2,24374,24469], +[0,24472,24473,24474,2443], +[0,36241], +[0,4874,4508,91], +[0,36244,36245,29,36246,36247,36248,91,1745], +[1,2343,24476], +[0,0,23733,24477,2487], +[0,1666,6901,33777,91,1745,36248,4508], +[1,2343,24479], +[0,0,0,24480,2537], +[0,5592,1745,1783,4508,91,36245], +[1,2343,24482], +[0,24483,24484,24485,2537], +[0,3127,91], +[0,8147,6503,4874,6520,1596,2759,2899,3202,4449], +[0,6869,1745,36263,5284], +"is-ins", +"ide-container", +[2,24486,24487], +[1,2343,24490], +[0,24492,24495,24496,2537], +"esmock", +[0,1525,4734,3275,15221,36270,1149,1512,3220,3188,7074,36272], +"wsl", +"subsystem", +[0,1429], +[0,36275,1783,36276,36278,26916,20672,1283,15253,1179], +[1,2343,24498], +[0,5914,24499,2514,2523], +[0,549,4856,9417,6503,36284,4874,1429,1431,1596,2899,36285,3232,36289,1894,36290,4232,4474,4490,31194], +[1,2343,24501], +[0,24502,24503,2514,2399], +[0,2070,3348,1112,1673,1676,4484,4747,1398,1680,1759,16544,1130,24697,3951,36295], +[0,1414,3519,1429,2323,2675,2742,2899,3243,3259,1552,4193,1177,3260,4039,7800,2203,3230,4246,4474,25633,1894,36308,442,2507,20085,4196,91,4856,4874,2494,2990,5245,6503,6513,4892,2496,36307,25629,2510,2529,25634,27585,19441,1431,6512,8536,18710,4523,36303,4232,28290,1942,28033,36305,9417,13418], +"kindof", +[1,2343,24506], +[0,0,24507,24508,2523], +[0,1414,3242,1429,1687,2070,2931,2899,4484,4707,36007,1177,20380,668,2203,1457,3183,24156,442,3527,3541,91,4856,17577,6503,26584,2858,692,7892,2075,36315,36316,4523,36318,4232,1964,36323,1012,13418,27909,12123,5551,36326,36331], +[0,6869,7296,4643,1351,5284], +[2,13283,2899], +[1,2343,24513], +"spaces-cli", +[2,671,24511], +[0,24514,7590,24515,2537], +[0,1012,1011,1009,12145], +[0,6892,5286,5284,91,57,5341,1177,6741,6939], +[1,2343,24517], +[0,24518,24522,24526,2399], +[0,36342,18420], +"code c", +[2,24519,2885], +"JS code coverage", +[0,10949,6503,4874,36345,1567,36348,3188,2899,3696,4487,91,4526], +"@metcoder95/https-pem", +"verage", +"JS coverage", +[0,6869], +[1,2343,24528], +[0,24529,24530,24531,2487], +[0,36356,36358,1759,16837,695,3025,3561,3616,16840,3638,16841,25162,2278,4228,4480,4333], +[0,36361,5087,19799,7889,4874,36362,36364,19802,1009,1011,1367,1177,1895,2675,1192,33412,2990,36366,3640,3672,1894,36367,4468,91], +[0,1623,4329,2278,695,4333,5260,1932,3561,91], +[1,2343,24533], +[0,24534,24535,24538,4139], +[0,23433,1362,1437,1486,1513,35446,25879,32086,3077,3183,36374,36375,4562,4720,1695], +[0,1705,3297,4039,4474,4487,36377,91], +"js-calendar", +"v-click-outside-x", +[0,4532,91,23076,6432,3383,10057,5490], +[2,1165,2091], +"5-property-mutators", +[2,24229,24540], +[2,1536,4408], +"vue-h", +"tml-loader", +[2,24543,24544], +[1,2343,24547], +[0,24548,24549,24550,4139], +[0,1525,4227], +[0,1082,2899,4135], +[0,2280,4533,4535,3178,2632,5284,5286,1925,5194,6598,7075,6778,7056,7192,1149,7003], +[1,2343,24552], +[0,0,24553,24554,2443], +[0,1082,4135], +[0,200,15215,23634,24280,5286,3595,1925,5284,676,36390,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,23637,2280], +[1,2343,24556], +[0,24557,24558,24565,34352], +[0,9448,2102,2755,4121,4143,4227,4535,4695,24777], +[0,48,53,87,192,5467,19401,16405,1193,19403,1610,1700,1701,1177,1895,1938,2675,1192,2794,2990,3150,3400,1894,4257,4072,2924], +"character-", +[2,24559,57], +"inople", +[2,14180,24561], +[3,10755,13], +[2,8535,591], +[0,2280,4535,4533,2924,1464], +"void-elements", +[1,2343,24572], +[3,13889,13], +"ddleware", +[2,24568,24569], +"code-mirror", +[0,24573,24578,24579,2523], +[0,36402], +"github-basic", +"highlight-", +[2,24575,1505], +"inconsolata", +[0,2899,1177,1362,2759,1954,1938,1958,1903,1970], +[0,3778,1179,7818,6953], +"-code-mirror", +[2,2437,24580], +"jade-", +"highlighter", +[2,24582,24583], +[3,10755,14], +"cdata", +[2,24585,24586], +[3,24587,15], +[1,2343,24597], +"offee-script", +[2,24588,24590], +[2,24585,695], +[2,24585,3127], +[2,24585,4333], +"verbatim", +[2,24585,24595], +[0,24603,0,24604,2537], +"less-file", +"lsr", +[2,23151,705], +"stop", +"twbs", +[0,97,4880,4883,36409,36411,36413,36415,36416,36420,36422,36423,1015,36424,36425,36427,36429,36430,36432,36433,36435,36437,36439,36442,36444,36445,36447,36448,36451,36453,36454,1018,1021,36455,36457,36458,36459,36461,36463,36466,36467,12265,1023,36468,36471,36473,36476,36477,36478,36480,36483,36485,36487,36489,36490,36491,36492,36493,36495,36497,36499,36502,36503,36504,36506,36509], +[0,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +[1,2343,24606], +[0,24608,24609,8039,2399], +"filelist", +[0,2070,2685,1209,4135,4727], +[0,2272,3105,2899,3381,4170], +"rake", +[1,2343,24612], +[0,0,24613,2514,2399], +[0,8862,811,816,10817,4874,1317,1894,4042,4484,91,1984], +[1,2343,24615], +[0,0,24616,24618,2523], +[0,11976,107,34715,1437,12607,668,2205,2553,3105,36526,3400,36528,3714,7917,1984], +"video-worker", +[0,1936,1283,2574], +[3,1198,14], +"nnotate-pure-calls", +[2,24619,24620], +[3,19449,20], +"nk", +[2,24622,24623], +[2,16819,2143], +"-nk", +[2,7628,24626], +[1,2343,24629], +[0,24630,24632,2514,2523], +[0,8862,811,8850,816,6373,10895,36534,1556,16230,668,28795,36538,2807,3090,36536,3189,3510,15450,3714,4042,4057,15451,27921,36537], +"parallax", +[0,5757,4874,7677,19336,1446,1177,1905,1894,91,1984], +"youtube", +"vimeo", +[1,2343,24636], +[0,0,24637,24638,2537], +[0,3421,2070,1734,2675,2297,2907,1177,4042,4072,1597,1596,2908,17232,5561,36544,1938,2915], +[0,614,6564,36,5576,1388], +[1,2343,24640], +[0,24641,24642,24643,2537], +[0,4243,23462], +[0,1389,36552,1177,2759,2899,3202,4068,31136,4545], +[0,4545,1871], +[1,2343,24646], +"css-url-embed", +[0,0,24647,24649,2523], +[0,20870,36559,24523,826,4874,1079,28400,1414,1610,36560,668,1177,2064,2675,1192,31808,29197,3313,2658,4481,91,4729], +"@gerrit0/mini-shiki", +[0,1612,27,2671,1862,705,7085,7289,4731,7102], +[1,2343,24654], +[2,2767,12608], +[2,2767,8751], +"walkdir", +[0,24655,24656,24657,2537], +[0,9315,31265,23289,2051,2745,36568,12449], +[0,36571,12396,9363,4874,1414,1894,3985,3998,4481,4505,91,1906], +[0,6892,7234,1563,25154,1644,3729,3958,3984,36573,4141,1646,5341,353,1633,4549], +[1,2343,24659], +[0,24660,8134,24661,2537], +[0,36578], +[0,17023,3778,6988,16114,8623,36580,4552,5401,11512], +[1,2343,24663], +[0,24664,24667,24669,2523], +[0,9315,18072,12447], +"cssfontparser", +"moo-color", +[0,9363,4874,1414,3137,27008,27010,1894,3985,3998,4481,4505,91,1906], +[2,1199,15525], +[0,23266,36587,614,6435,3984,36573,3958,26564,2587,36588,36589,3273,1351,1783,1936,6523,1633,6892,202,12414,4647], +[1,2343,24671], +[0,0,16529,24672,2523], +[0,35670,27280,18132,4558,3403,4571,7204,4569,4166,16159], +[1,2343,24674], +[0,24675,0,24676,4139], +[0,17180,2155,36602,36604,20508,3923], +[0,2056,4560,15008,36606,12666,3101,7682], +[1,2343,24678], +[0,24679,24680,24681,2487], +[0,36612,1371,1437,36611,4135,20044,1543,16184,2960,2744], +[0,1906,1166,24491,4294,1470,36615], +[0,3378,3076,29096,22005,3329,4354,16790,200,1237,3383,15525], +[1,2343,24683], +[0,0,0,24684,2537], +[0,12831,1002,36621,36622,36623,36626,36628,36630,36632,36637,36639,36641,36642,36643,36646,36649,36650,36653], +[1,2343,24686], +[0,24687,24691,24692,2399], +[0,3763,3757], +"@jest/e", +"nvironment", +[2,24688,24689], +[0,1158,3421,4770,1082,2899,1177,13614], +[0,7119,1002,25658], +"fake-timers", +[2,552,24693], +[1,2343,24696], +[0,0,24698,24699,2523], +"sql-highlight", +[0,1566,2899,4170], +[0,1002,4565], +[1,2343,24701], +[0,24702,24703,13533,2399], +[0,3008,3173,4121], +[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,2092,2675,1192,2990,3144,21016,3400,1894,4257,2924], +[1,2343,24705], +[0,24706,24707,24708,2523], +[0,15560,23783], +[0,1148,1389,1414,2899,3697,20010,20012,4535], +[0,7134,57,12831,1002,1644,3766,1871,3767,1646], +[1,2343,24710], +[0,24711,24714,24716,34352], +[0,2139,36681,3173,3763,4507,4548,36680], +"-escapes", +[2,11948,24712], +[0,5517,30494,36688,20224,36694,36687,7746,4874,36685,11305,36691,7752,29891,23247,7677,1410,1610,2685,33479,30889,2658,7798,28531,4393,4483,36684,91,1984], +"matchers", +[0,4568,27,36696,7085,7289,705,2671,4548,1612], +"extended", +[1,2343,24720], +[2,38074,1177], +[0,24721,24722,24735,2537], +[0,25493], +[0,3505], +"@pmmmwh/react-refresh-webpack-plugin", +"cape-html", +[2,5600,24724], +"ump.js", +[2,5086,24726], +"ndomcolor", +[2,12178,24728], +"eslint-w", +[2,2546,4406], +[2,24730,24731], +"jump.js", +"randomcolor", +[0,4569,4571,35668,25493,4014,7204,6857,3403,1263,6437,6639,6436,36706], +[1,2343,24740], +"recharts", +[2,30495,674], +"web-vitals", +[0,24741,24742,24743,2487], +[0,3084,4449], +[0,1148,2899,3697,705,4135,36712], +[0,4575,1388,36715,888,1644,57,36716,36717,36718,36719,4569,36720,4576,15525], +[1,2343,24745], +[0,0,24747,24748,2537], +"libxmljs2", +[0,1596,2759,14529,3774], +[0,8426,9254,3656,4577], +[1,2343,24750], +[0,24751,24752,24755,2523], +[0,2713,17395,25700,36732,17416], +[0,1090,1593,36736,3435,3438,4092,4100,4389], +"plugnplay", +"pnp", +[0,614], +[1,2343,24757], +[0,0,9530,24755,4139], +[1,2343,24760], +[2,814,13987], +[0,0,24761,24763,2537], +[0,68,192,5467,442,6375,1525,1177,1895,1955,2203,2675,1192,2990,29197,3400,1894,23901,27302,4257,91,4523], +"@vercel/h3", +[0,3348,6926,6668,36760], +[1,2343,24765], +[0,24766,24767,24768,2399], +[0,20573,1687,2929,11481], +[0,36767,1999,29283,34078], +[0,1145,36769,8791,8745,1973], +[1,2343,24770], +[0,0,24771,24772,2523], +[0,4384,2272], +[0,1002,7020,4354,16790,13017], +[1,2343,24774], +[0,24775,24776,24784,2523], +[0,17058,36781,7076,25814], +[0,17584,1429,15990,1527,1652,2675,2759,3188,2899,21477,4039,4131,4193], +"worker-farm", +"leak-detector", +[2,2769,24778], +[3,20371,12], +[2,24780,14922], +"@aneuhold/be-ts-lib", +"@vercel/koa", +[0,36785,1528,6458,3358,16094,13729], +"@vercel/hono", +"@jimp/diff", +"@jimp/", +[2,24787,9711], +"@jimp/types", +[1,2343,24803], +"@jimp/t", +"est-utils", +[2,24791,24792], +"@adonisjs/ace", +[2,12327,10809], +[3,475,10], +[2,24801,8915], +"manipulation", +[2,12327,24798], +"resize", +[3,24794,11], +[2,24796,24815], +[0,0,24804,24814,4139], +[0,9516,9515], +[3,1603,9], +[2,24805,3751], +[2,10880,1283], +[3,5617,14], +"eter", +"-decorator", +[2,24809,24810], +[2,11958,24811], +[2,24808,24812], +[0,3378,3383,1460,7020], +"bodyparser", +[2,24825,686], +[1,2343,24820], +[2,29401,166], +[2,13055,25721], +[0,0,24824,24834,2537], +" editor", +[2,6105,24821], +"wysiwyg ", +[0,48,53,87,94,1178,1198,1177,1881,1938,2899,3400,3421,4039,4042,4045,28038,4535], +[3,475,12], +"html editor", +[2,24823,24826], +[2,24796,7141], +"rich editor", +[2,6106,24821], +"editable", +[2,1563,24831], +"vanillajs", +[0,1155,7020,2649,20215,2574,36796,36798,1145], +[1,2343,24837], +"@adonisjs/env", +[0,24838,24839,24840,2443], +[0,36805,36809,36806], +[0,4874,11016,13061,16480,36812,11018,1639,36814,2832,91,1983,1984,36815,188,4639,36820,36821,36816,36817], +[0,181,188,8588,5131,4967,4627,4963], +[2,24846,24847], +"wysisyg", +"rte", +[1,2343,24845], +[0,0,24851,24865,2523], +[3,24828,11], +"vents", +"nanotimer", +"temporal", +[3,1387,9], +[0,2899,1177,2759,1317,4342,1311,1954,1938,1958,1903,1948,1970], +"erialport", +[2,24850,24852], +"firmata", +[2,24796,24858], +"beautifier", +[2,2294,24856], +"fold", +"0A02", +"0A21", +"16x2 LCD", +"20x4 LCD", +"2D120X", +"2Y0A02", +[0,27,10376,4590], +[1,2343,24870], +"2Y0A21", +"74HC595", +"ADXL335", +[0,24901,24903,2514,2537], +[2,24796,3428], +"ADXL345", +"ALS-PT19", +"ALSPT19", +"ANALOG", +"arduino", +"Ardumoto", +"AT42QT1070", +"BLINKM", +"BMP180", +"Continuous Rotation", +"DEFAULT", +"Diffused LED", +"DS18B20", +"Edison Arduino Block", +"Edison ", +"GPIO Block", +[2,24886,24887], +"I2C Block", +[2,24886,24889], +"PWM Block", +[2,24886,24891], +"edison", +"ESPLORA", +"EV3", +"galileo-io", +"galileo", +"GP2D120XJ00F", +"GP2Y0A02YK0F", +[2,24925,24926], +[0,4593], +"GP2Y0A21YK", +[0,4384,2276], +"GP2Y0A41SK0F", +"GY-521", +"GY521", +"HD44780", +"High Torque", +"Hitec HS-35HD", +"Hitec HS-", +[1,2343,24939], +"Hitec HS-422", +[3,24912,11], +"5BB", +[2,24913,24914], +"625MG", +[2,24910,24916], +"Hitec HS-6", +"46WP", +[2,24918,24919], +"755HB", +[2,24910,24921], +"805BB", +[2,24910,24923], +[3,24871,11], +"ealth", +"Hitec HS-85MG", +"HMC5883L", +"HMC6352", +"Hobby Motor", +"HRLV-MaxSonar-EZ0", +"HT16K33", +"HTU21D", +"i2c", +"Infrared Proximity Sensor", +"Infrared ", +"Sensor", +[2,24936,24937], +[0,24941,24957,2514,2487], +"intel edison", +[0,12105,668,1457,2139,36838,24762,36840,24783,30162,24785,36841,36842,36843,24818,28111,29471,36845,24738,28441,36848,30929,36850,36852,31275,36855,36859], +"intel galileo", +"ISL29125", +"JHD1313M1", +"Joystick", +"LCD1602", +"LCD2004", +"LCM1602", +"LED", +"LIDAR-Lite v2", +"Ludus Protoshield Wireless", +[3,24951,17], +"LV-MaxSonar-EZ0", +[3,24953,14], +[2,24954,1278], +"MCP23008", +[0,3242,1091,1138,1758,1999,2714,3467,3445,1983,1413,1437,1676,2020,3144,2658,17913,25671,4707,1438,1759,2022,2754,4039,4135,4238,4391,1984,1458,1503,2026,2105,3203,4474,1668,2151,2182,3761,3784,33145,842,24156,11305,36861,26453,29133,3181,3547,4459,29105,31142,1109,33200,1483,2794,3173,3310,4294,91,5087,4874,1154,1869,36863,20921,36864,36867,5364,5245,27066,26584,1107,1151,36868,36869,36871,5254,24358,35563,13834,5071,31008,36872,6541,36873,36874,25892,36875,8997,4864,28137,2069,36877,3386,16831,36878,34118,36879,9129,12461,27959,36880,7746,5542,30493,33761,36882,31071,23843,24725,36885,11907,36887,36889,15887,36890,36892,5328,36895,36897,36899,29125,36901,36906,36909,36911,36915,36917,36918,36920,36922], +[2,24925,9257], +"MCP23017", +"MCP9808", +"Metal Gear", +"MJKDZ", +"MMA7361", +[2,24796,2942], +[1,2343,24971], +"MMA7660", +"MMA8462Q", +"MPL115A2", +"MPL3115A2", +"MPR121", +[0,24982,0,24990,2537], +"MPR121QR2", +"MPU-6050", +"MPU6050", +"MUXSHIELD2", +"NXT", +"OA41SK", +"PARALLEL", +"PCA9685", +"pcduino", +"PCF8574", +[0,36927,1147,34631], +"PCF8574A", +[2,24796,32276], +"PCF8574AT", +"PCF8574T", +"@paralleldrive/cuid2", +"PCF8575", +"@poppinss/colors", +[0,1851,2656,15204,30960,31482,5317], +"PCF8591", +"photon", +"PIR Motion Sensor", +"QTOUCH", +"raspberry pi", +"raspberry", +"raspberrypi", +[2,24999,25005], +"@poppinss/", +"raspi-io", +"RedBoard", +"RGB LED", +"robotics", +"rpi", +"dumper", +"Servo", +"Shift Register 8-Bit SN74HC595", +[3,25007,14], +"SI7020", +"spark", +[2,24999,25017], +"spark core", +[1,2343,25035], +"spark-io", +"SparkFun Essential Sensor Kit", +"SparkFun ", +"macroable", +"Sensor Kit", +[2,25016,25018], +"Speed controller", +"Temperature", +"tessel 2", +"Thumb Joystick", +"TINKERKIT", +"TMP36", +"TSL2561", +"Ultrasonic Range Finder", +"usb", +"VKEY", +"Weather Shield Arduino", +[3,25030,15], +"Photon", +[2,25031,25032], +[2,24999,594], +[0,0,25036,2514,2537], +[0,2899,2759,4342], +[1,2343,25041], +"@hapi/formula", +"@hapi/pinpoint", +"@hapi/tlds", +[0,0,25043,25044,2537], +[2,6473,3020], +[0,53,87,192,5467,5583,1208,1429,1443,1503,1597,16656,1637,1701,1177,1881,1938,2675,2297,2878,2881,6385,2900,2904,2910,2990,2899,3400,3561,3566,16658,3613,3672,16578,3758,4042,4320,4323,4328,4535], +[0,158,11328,4596,36941,1936,1623,5284,6400,5122], +[1,2343,25046], +[0,25048,25050,25051,2523], +"youch", +[0,36951,1496,4002,36950], +"youch-terminal", +[0,3421,2899,1177,2022,35299,3923,1889,1954], +[0,4607,17462,2090,7204,4262,3403], +[1,2343,25056], +[2,24801,25055], +"recoil", +"ssembler", +[0,25057,25061,25062,2537], +[0,1329,4431], +[2,25059,25082], +"@adonis", +"gzip-js", +[0,4389,4603], +[0,4597,17461,6270,1398,3101], +"commitplease", +[1,2343,25065], +[0,25066,25068,25078,2443], +[0,36965,21539,2215,2685,36966,36967,3369,36968,36971,35299,36972,36975,4597,36976], +"grunt-git", +[0,1177,1889,2022,2899,3421,3923,4039,4193], +"-authors", +[2,25067,25069], +"-webkit", +[2,3541,25071], +"mpare-size", +[2,21927,25073], +[3,10727,15], +[2,25075,3766], +"karma-j", +[0,2323,36981,4597,2090,6771,2150,7046], +[2,26505,6579], +[1,2343,25081], +[0,25084,25087,25093,34352], +[3,835,16,7], +[2,25085,25086], +[0,4597,4431], +[3,475,8], +[3,24165,17,8], +[0,2494,4389,4600], +"grunt-html", +"owercopy", +[2,2237,25089], +"-local", +[2,14336,25091], +[0,4597,2323,17461,24456,3101,1871,2585,128], +"prototyping", +[1,2343,25096], +[0,9652,0,25097,2537], +[0,4597,4070,22850,2323], +[2,24796,2190], +"@japa/assert", +[1,2343,25101], +[0,25102,25105,25107,2523], +[0,36996,1851,36997,2202,24462,19094,36998,37000], +"@japa/expect-type", +"@japa/file-system", +[0,1389,2759,21526,3459,37002,30164,4387,4389,4770], +"config-chain", +[0,4607,965,23361,37004,1687,7163,1388], +"@japa/runner", +"code-quality", +"@japa/snapshot", +[1,2343,25112], +[0,25113,25116,25117,2487], +[0,20378,4042,668,3561,3530,27921], +[2,25115,15244], +[3,7895,14], +[0,4729,1415,27438,1594,984,3189,30023,3445,2278,4200,3510,1759,11480,3266,3493,4072,1544,28119,1457,28865,4955,37012,34928,3527,1615,1869,31308,16860,3090,58,9743,1763,2007,21688,37013,3613,37014,37015,24759,30787,37017,24725,1573,10895,3616,29444,8862,31292,28465,4060,811,28572,18584,5180,28575,16808], +[0,4967,5130,11498,5331,37019,1983], +[2,25119,25121], +[3,10844,11], +[1,2343,25123], +"-console", +"argon2", +[0,25124,25132,25133,2537], +[0,25375,2071,2151,37024,26479], +"knifecycle", +"yerror", +"edge.js", +"@mer", +"maid-js/mermaid-cli", +[2,25128,25129], +"mermaid", +[0,6494,4864,4874,2026,4493,91,1983], +[0,1983,5592,37028,37029,37030,37032,2026,37034,36,37036,7433,37031,37038,1932,8172,4083,5995,37039,37040], +[1,2343,25136], +"architecture", +[0,25139,25149,25150,2537], +[2,25138,25151], +"ts-node-", +[0,188,1983,9348,8114,37052,7797,36805,10984,6371,37047,37046,24097,37049,7639,11016,37051,9312,25447], +"-to-glob", +[2,16774,25140], +"@jscpd/html-reporter", +"@jscpd/", +[2,25143,139], +"-sarif-reporter", +[2,2824,25145], +"@jscpd/core", +[2,25143,207], +[0,3467,4200,1676,2020,3478,23802,3266,4039,4042,4135,1984,668,3537,3742,7799,19571,13151,28519,1457,2151,2182,3183,1894,3757,3084,3170,3527,27921,91,4874,1615,2226,2990,3105,5245,8646,30795,8146,7812,3509,4864,7892,3067,37067,9245,8778,5946,3114,4057,37017,21122,3107,8850,34971,37061,37065,8862,37074,3112,15277,37062,6373,22823,811,3668,37059,7641,37070,37056,1567,816,37058,37069,37071], +[0,1983,188,4614], +"maintained", +[1,2343,25153], +[0,25166,25171,25173,4139], +"cst", +"adonisjs", +"jscs-jsdoc", +"jscs-", +"wikimedia", +[2,10832,25158], +[2,25157,25159], +"rved-words", +[2,4020,25161], +"to-double-quotes", +"to-single-quotes", +"vow-fs", +[0,30023,1983,3510,15452,26379,3530,4441,27921,37080,2024,37082,3090,37084,36874,26380,37085,37014,37087,37092,37093], +"7.0.0", +[2,5857,25167], +[2,8649,22785], +"unit-coverage", +[0,4729,1415,3171,37095,2832,26385,3742,24324,2559,37096,1084,4874,13204,1006,37013,7812,37097,20374,37100,13471,826,8806,5180,6515,8809], +"style guide", +[0,1983,1984,1973,1192], +[1,2343,25175], +[0,25176,25180,25182,2523], +[0,1437,1209,2720,3183,4726,2708,3077,4294,1257,37108], +"@jsdoc/salty", +"catharsis", +[2,20398,57], +[0,1906,2323,1172,2899,3220,4170,37110,705,1362,1175,2338,2384,37115,37117,2357,37113,1267], +"requizzle", +[0,5592,200,32276,4166,8786,5130,1896,13527,1523,1525,35539,3741,2720], +[2,25184,25186], +"@aneuhold/", +[1,2343,25187], +"core-ts-api-lib", +[0,25196,0,25197,2537], +"current", +[2,1469,4479], +[2,25188,25189], +"object-to-", +"spawn-args", +[2,25191,25192], +[2,25195,1095], +[3,25183,18], +[0,1687,37123,2070], +[0,5472,4386,1973,37125], +[1,2343,25199], +[0,25201,25206,25207,2487], +"ool", +[0,4449,2070,3171,3917,22990,1437,2975,4753,37130,4135,4734,1448,4566,1525,3181,3105,37131,2613,37132,36323], +"master", +"config-master", +[2,25184,25205], +"main-scripts", +[0,2675,2899,4474,1894,6520,91,4865,27098,4874,15743,37139,3400,6503,20290,3720,5254,28189,37135,192,37137,9129,4131,7639,4232,12458,5467], +[0,29641,4617,7188], +[1,2343,25210], +"jsr", +[0,0,2667,2514,2537], +"data-urls", +"decimal.js", +"saxes", +[1,2343,25218], +"symbol-tree", +"w3c-xmlserializer", +"whatwg-url", +[0,25222,25223,2514,2537], +[2,25261,25262], +"sugar-free", +[2,3192,25220], +[0,1104,1496,2012,2061,2070,2685,2741,4227,91,4597,4734,4747], +[0,22909,37149,22821,4865,37152,9129,6503,4874,28198,22900,18438,4891,28189,4892,1009,1011,1177,2899,4039], +"webidl2js", +[1,2343,25226], +[0,0,25227,2514,34352], +[0,2899,3188,2924,91,4874,4677,6503,37157,1584,603], +[2,25239,25240], +[1,2343,25234], +"browser-re", +[2,25230,5460], +"cssom", +"nwmatcher", +[0,25236,0,25241,2487], +"selenium-s", +[0,36805,37163,23423,17494,5337], +"tandalone", +[2,25235,25237], +[3,8647,12], +"li", +[0,188], +[1,2343,25246], +"13.0.0", +[2,5857,25243], +"@trapezedev/project", +[0,0,25247,25248,2523], +[0,53,61,71,4851,87,4856,6503,4874,1011,1191,1195,18571,1429,1628,1177,37170,2899,3951,4039,4042,4045,4069,4421,4469,91,4533,188,4634,4645,19469,4646,2924,4677], +[0,188,1227,1172,91], +[0,25260,25258,2514,34352], +[2,5051,25257], +"results-interpreter", +"5.2.0", +[2,5857,25252], +"unicode-1", +"1.0.0", +[2,25254,25255], +"lice-ansi", +[0,53,68,5611,37178,15273,19181,442,5245,1006,4874,5254,1009,1011,7677,23203,1177,19492,1945,1953,19623,1955,1982,17310,1894,4474,1531,91,1983,1984], +"splash screen", +[0,1676,1994,1996,2000,19186,4135], +[3,225,10], +"5/blanditiis-numquam-expedita-neque", +[1,2343,25301], +"stylish", +[1,2343,25267], +[2,25303,25304], +[0,0,25268,25270,2523], +[0,1397,1192,188], +"deeks", +[0,188,6609,2999], +[1,2343,25273], +"doc-path", +[0,25274,25275,25278,2487], +[0,37192,37049,37190], +[0,24226], +"json2csv", +"csv2json", +[0,2679,23932,37202,1932,188,6284], +"csv-2-json", +[3,25219,12], +[1,2343,25282], +[0,25283,25286,2514,2537], +[0,1437,2570,33215], +[2,25280,25285,25288], +[3,780,9], +[0,53,87,37211,1006,32109,5087,13204,37213,37214,1195,37215,1567,1628,2092,2651,1192,2832,2990,37217,3144,3177,16581,11801,3618,1894,3754,37220,4227,4307,4333,4334,4337,4468,4469,91,4027,188,4633,2924,4677,4681,4689,19235], +[1,2343,25289], +"aut-officiis-quae", +[0,0,25290,25291,2537], +[0,5087,4874,1192,3951,4042,4468,91,188,4629], +[0,188,91,4636], +"milliparsec", +[1,2343,25295], +"sort-on", +[0,25299,25300,2514,2523], +"@typ", +"icode/eslint-config", +[2,25296,25297], +[0,5216,28126,37049,30206,1457,2856,37096,3090,3189,30230,3510,3530,15451,27921,29161,30959,4745], +[0,104,31940,8648,811,816,6373,10615,33179,37232,20374,29891,11016,17494,34157,5337,11018,25092,13393,1549,1759,37235,17850,2559,3294,37236,32977,4039,4042,4076,1531,4493,1983,188], +[0,25305,25306,2514,34352], +[1,2343,25412], +[3,25284,13], +"oloremque-voluptas-facere-nemo", +[0,2570,3008], +[0,1175,1193,1240,1567,1192], +[2,25280,25391], +[1,2343,25309], +[0,25310,0,25311,2537], +[0,37247,2591], +[0,188,4643], +"0.0.0", +[2,25254,25312], +[1,2343,25315], +[0,25316,25317,2514,4139], +[0,37049], +[0,188,1192,1437,2020,21665,1177,4042,4135,2026,2924,1836,2151,1610,3758,4614,1193,1628,91,4634,53,4874,1195,37253,4640,87,17494,3957,15134,4073,4261,6373,37170,4679,4684,811,1567,816], +[1,2343,25319], +[0,25320,0,25321,2523], +[0,37258], +[0,614,888,37260,2150,4647,37261], +[1,2343,25323], +[0,25324,25325,2514,2537], +[0,9129,18704,20960,3181], +[0,5087,4874,2070,1192,3144,4039,4468,91], +[1,2343,25327], +[0,16409,25329,25330,2537], +[2,2842,24077], +[0,192,5467,1389,1527,1652,2675,1192,4535], +[0,4649,3497,89,2731], +[1,2343,25332], +[0,25334,0,25335,4139], +"meriyah", +[0,37277,3183], +[0,614,6435,2150,1586], +"jsonparse", +[1,2343,25338], +[0,25339,25340,25341,2487], +[0,15642,1389,1457,15016,37284,4431,1695], +[0,1377,3188,4237,4389,4535,37286], +[0,1389,25429,2282,6374,6147,1388], +[1,2343,25348], +"jws", +"lodash.i", +"ncludes", +[2,25344,25345], +[2,3045,19366], +[0,25354,12529,25356,2537], +"integer", +[2,3045,25349], +"lodash.isn", +"umber", +[2,25351,25352], +[0,33304,26786,1149,37294,33313,37297,33328,33329,37298,37300], +"lodash.once", +[0,33359,3469,3259,14873,1552,3230,37303,4651,4104,33365], +[1,2343,25358], +[0,25359,25360,25367,4139], +[0,1137,1149,1209,3188,3760,705,37308], +[0,37313,1429,1431,1512,18192,2026,2061,2323,37315,2384,2419,2463,2590,2659,34317,2759,2899,37316,3297,37317,4089,37320,37324,37325,4547,3348,4747], +[2,25362,25364], +[3,32971,13], +"@jspm/generator", +"phases", +"fu/eslint-config", +[2,13179,25365], +[0,5472,13428,11132,13841,28522], +[1,2343,25369], +[0,25371,25373,25374,2537], +"webdav", +[0,37331,37332,37334,37335,37336,37337,37339,37342,37344,37345,37347,37350,37352,37355,37358,37361,37363], +"states", +[0,37365,1192,1177,37366,9422,4468,1894,1317,91,5087,2787,5366,37368,1938,19956,1895,37371,1011,37374,1009], +[0,37376,17626,8172], +"dotenv-local", +[2,28322,364], +"lie", +[1,2343,25381], +"jszip-utils", +[3,21510,13], +[0,25384,11736,25385,4139], +"versionify", +[2,25380,25382], +[0,37390,37393,1327,1394,37394,37397,37398,37401,37404,37408,4747], +[0,4653,4990,200,37410,9420], +"deflate", +[1,2343,25389], +"inflate", +[0,25390,25392,2514,2443], +[0,19611,1006,8818,37424,37427,37429,1082,25361,1393,37433,1835,37014,1994,2018,20575,2215,9506,20465,3173,23175,4121,4388,4409,33215,4695], +"quisquam-quod-ab-aut", +[0,53,90,107,34765,25376,20577,8780,5087,7746,28919,4874,25422,37436,1195,37437,37438,1509,1593,1622,1628,1668,1856,4913,1177,20281,2092,2135,2203,37439,2629,2675,2759,1192,21124,2774,2777,2784,2794,2843,2856,695,2969,2990,1209,3021,3144,25333,3177,21016,640,3421,3446,20085,1894,3717,3754,23738,3786,89,3824,30570,3978,9340,3988,3992,3999,4039,12936,4183,4294,4307,4072,4426,4441,4452,4469,91,4549,4027,37440,37441,4677,37442,4746], +[1,2343,25394], +[0,25396,25397,25398,2399], +"@diahkomalasarinpm/odio-facilis-beatae", +[0,4729,4200,1082,3456,1675,1525,1084,3527,2628,1874,37449], +[0,1700,1429,2323,1192,3190,1177,2205,3698,1593,1637,3561,2924,2098,3758,1461,1628,2338,3191,4027,53,1436,4677,1165,1178,1195,3060,4307,97,3057,37457,3618,22651,87,37453,4681,90,1210,1959,37458,4409,37451,37454,83,71,5757], +[0,2924,6374,4674,5260,4202,24095,9816,33126,37460,16660], +[1,2343,25400], +[0,25401,25402,25405,2399], +[0,1842,3932,1511,1525,2727,1615,2704,4689,37466,13077,29067,37449,37468], +[0,37472], +[3,1754,13], +"qjobs", +[0,2924,200,4989,1237,6996,5122], +"unit-reporter", +[2,25077,25406], +"cript-", +[2,25408,15473], +[2,2916,25409], +"timer-shim", +[0,25414,25417,25418,34352], +[1,2343,25419], +[0,3144,1511,3173,3440,3781,4121], +"spectacular", +"execution", +[0,2934,2611,1192,2020,2675,1622,1177,38,1544,1701,2026,2078,2203,2924,1894,1610,1699,4342,48,442,470,1193,91,53,4874,2092,2990,3400,2099,11485,6494,192,1953,27928,37480,4257,87,23531,7746,37482,1939,1942,1938,20281,1982,1895,1955,19344,5467], +[0,2924,2663,5001], +[0,25431,25433,2514,34352], +[1,2343,25567], +"os-shim", +[2,25423,25430], +"@types/x", +"karma-p", +"karma-plugin", +"reprocessor", +[2,25424,25426], +[3,14927,12], +[2,25428,25200], +"xhashjs", +[0,4729,3445,32876,34228,2026,33507,1457,9241,1511,11993,7798,1536,2215,4150,4121,37490,37491,37493,6494,37494,37499,37500,37503,2664,4679,1549,33189,37505], +[2,25280,25435], +[0,2611,1192,695,1082,2020,2675,37507,3144,1622,1177,3127,4039,1544,1593,2924,1894,3758,4342,48,1193,1628,2659,91,53,4874,2969,2990,3400,4677,1195,4307,4224,18052,4689,97,192,1953,3923,9252,27928,4257,87,23531,22102,4523,7806,8780,1939,1942,2651,12837,68,37508,37513,1938,20281,1895,2780,83,5467,13052], +[1,2343,25439], +"suscipit-assumenda-a-assumenda", +[2,2877,15473], +"browser-stack", +[2,25280,25442], +[0,25440,25441,25444,2523], +[0,4294,2626,37503], +[0,3421,2899,4193,1177,2026,2924,1894,4342,1955,4679], +"vitae-sequi-voluptas-a", +[2,25445,25446], +[0,2924,11498,6609,1237,37523,37525,2663,2026], +[3,25438,13], +"oluptatibus-vero-magni-rerum", +[2,29825,29840], +[1,2343,25449], +[0,25450,25451,2514,2523], +[0,4388,4695], +[0,841,4874,4891,37531,7858,1584,1700,1177,37534,1915,2092,2675,2990,3150,3697,1894,37535,89,4307,4484,91,1984,2924,4689], +[1,2343,25459], +"ibrik", +"ffee-preprocessor", +[2,23574,25454], +"karma-r", +"equirejs", +[2,25456,25457], +[0,25463,25464,25465,2523], +"karma-re", +"porter", +[2,25460,25461], +[0,2117,21520,5898], +[0,2675,4484,37542,2924,1894,91,37544,1006], +[0,2924,1698], +[1,2343,25467], +[0,0,25475,25480,2523], +"Safari", +" Tech Preview", +[2,25468,25469], +"TechPreview", +[2,25468,25471], +"IE", +"Chrome", +[0,1429,1177,1938,2899,3203,3275,2924], +"Chrome Canary", +"Chrome ", +"Headless", +[2,25477,25478], +[0,2924,13382,202,6374,11053], +"Chromium", +[1,2343,25483], +[0,0,25486,25487,2523], +"Firefox", +"Opera", +[0,1192,1177,2203,2924,2759,1894,1596,442,4227,91,5087,1953,27928,1939,1942,33002,1938,20281,1982,1895,1955,19344], +[0,2924,4227], +[1,2343,25489], +[0,25491,0,25494,2537], +[2,25764,25765], +[0,2215,1615,4449,3524], +"chai-fs", +"os-homedir", +[0,12197,29726], +[1,2343,25496], +[0,25497,25498,25499,4139], +[0,1401,1676,1856,37568,34639,37569], +[0,1400,2323,2447,2839,2272,4389], +[0,4699,14609,21302,37572,37573,6645,6761,20863,36,5576], +"@asdfgertyjhnpm/a-unde-explicabo-eaque", +"firefox", +[1,2343,25503], +[0,25504,25505,25506,2523], +[0,37578,37579,37581,37585,37586,37587,37589,37592,37594,37595,37598,37600,1676,1869,37602,37603,37606,37609,37612,37613,37615,3171,3441,37617,3756,25990,37619,3781,25996,34383,37623,35299,37624,37628,37631,37633,37636,37637,37638], +[0,53,68,5712,87,37641,1090,37644,25992,37646,1290,37647,1398,37648,1618,3588,1177,1903,1938,1953,1958,2099,37650,3486,37652,3767,4092,4131,4151,15039,20496,4387,4389,4409,15046,2924,4677,37654], +[0,37656,37657,1764,37658,37659,37663,37665,22115,37666,37616,37667,15247,37668,4702], +[1,2343,25508], +[0,25509,25512,25515,2399], +[0,1326,3263], +[2,25511,25517], +[3,25500,16], +[0,29569,4384], +"adapter", +[2,2877,25513], +[0,7734,37674,37675], +[1,2343,25518], +"nesciunt-molestias-reprehenderit-occaecati", +[0,25519,25520,2514,2523], +[0,2026,3368,4545], +[0,1506], +[3,25395,19], +[1,2343,25523], +[0,0,25524,2514,2537], +[0,1429,2297,2899,1177,4042,1894,2878,2900,1159,3734,37688,2881,2889,2912,2895,13867,19910], +[1,2343,25526], +[0,0,25527,25528,2487], +[0,4652,2070,10679,4030,2856,37693,2272,3188,37694,3460,1317,26825,4535,1389,3736,37320], +[0,37696,37698,14833,1862,6567,14834,14835,4706,1149,14629,6804], +[1,2343,25530], +[0,25531,6538,2514,2523], +[0,37703], +[1,2343,25533], +[0,0,25534,25535,2399], +[0,13896,1776,2899,3220,37708,37709], +[0,6574,29179], +[1,2343,25537], +[0,25538,25539,25540,4139], +[0,37715,13388,1149,2753,37716,37718,3923,18730,4252,20931,4715], +[0,48,53,87,37721,4874,37722,1148,37724,1177,37725,1192,4039,4238,34395,4431,37727], +[0,4709,2942,6807,30124,21111,1409,3533,3079,2041,1781,3101], +[1,2343,25542], +[0,25543,25545,25546,2487], +[0,37735,3429,20931,4715], +[3,2910,12], +[0,37739,37741,1429,1177,1954,2899,4039,7734], +[0,4709,37743,37744,37745], +[1,2343,25548], +[0,25549,25551,25552,2537], +[0,37716,3923,20931], +"safari", +[0,4874,1148,1173,1264,1693,1177,37721,2899,3421,4039,37727], +[0,4709,4714,37752], +[1,2343,25554], +[0,25556,25559,25560,2537], +"global-agent", +[0,37758,2070,1209,37759,4431,37760], +"al-agent", +[2,4865,25557], +[0,1429,2151,2759], +[0,1370,3383,6355,14510,1508,4796], +[1,2343,25562], +[0,0,16487,25563,2443], +[0,6940,37767,3924,37769,16580,37770,7295,2585,4718,4717,28734,4719], +[1,2343,25565], +[0,0,9264,25566,4139], +[0,4718,4719,5547,1671,6922], +[0,25576,25577,25578,34352], +[1,2343,25597], +"karma-br", +"ief-reporter", +[2,25569,25570], +"sourcemap-", +[2,21536,8754], +[2,25572,25573], +[2,12612,25574], +[0,16781,3714,10761,4695,37780], +[0,4874,4891], +[0,37783,37784,2924,37786,20164,37788,37789,37790], +[1,2343,25580], +[0,25581,25582,25583,2537], +[0,1110,4290,4294], +[0,1166,1437,1596,6474,3421,4481,1906], +[0,4719,6940,4720,6980,7152,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +[1,2343,25585], +[0,25586,6538,25587,2487], +[0,19187,4174], +[0,37808,29999], +[1,2343,25589], +[0,0,25590,25593,2537], +[0,1317,1401,1177,1895,1955,2203,2899,3421,1894,34639], +[2,8652,2013], +"keydown", +[0,7299,7172,6761,6729,7057,6145], +"keyup", +"metakey", +"keyname", +[0,25599,25600,25601,34352], +[0,2342,2402,2457,2488,2531,2540,2540,2630,2488,2688,2488,2698,2737,2488,2775,2799,2818,2840,2939,3016,3110,3207,3247,3279,3307,3448,3515,3593,3631,3723,3782,3844,3879,3908,3929,3952,4006,4016,4096,4154,4203,4241,4263,4286,4308,4331,4348,4417,4444,4476,4506,4528,4573,4655,4673,4700,4743,4813,4953,4994,5004,5007,5013,5016,5019,5023,5028,5031,5034,5037,5041,5044,5052,5099,5134,5137,5141,5144,5150,5171,5174,5199,5203,5211,5231,5255,5266,5270,5289,5299,5289,5333,5360,5373,5379,5437,5486,5493,5516,5544,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5574,5566,5574,5566,5566,5566,5566,5566,5566,5566,5574,5574,5566,4286,5566,5566,5578,4286,5574,5566,5566,5566,5566,5566,5566,5574,5574,5574,5580,4286,5566,5566,4286,5566,4286,5574,5591,5599,5612,5624,5629,5635,4286,5643,5648,5665,5672,5574,5718,5723,5566,5566,5566,5578,5566,5566,5566,5566,5566,5578,5566,5566,5566,4286,5727,5566,5566,5566,5578,5566,5566,5566,5578,5566,5574,5730,5848,5870,5886,5894,5899,5902,5906,5908,5912,5919,5965,5985,5992,5999,6050,5566,5566,5566,5566,6069,5566,5566,5566,5566,5578,5574,5566,5566,5566,5566,5566,5566,5566,5566,4286,5566,6088,6101,6115,6119,6124,6131,6152,6159,6163,6172,6179,6184,6187,6193,6201,5566,5580,6206,6210,5578,5574,6219,5299,6222,6227,6232,6236,6239,6242,6246,6250,6254,6257,6261,6265,6274,6278,6288,6292,6304,6313,6344,6357,6360,6365,6368,6402,6406,6410,6416,6427,6431,6440,6444,6483,6535,6555,6559,6571,5299,6612,5299,5635,5299,6630,6664,6676,6684,6719,6745,6772,6823,6852,6886,6906,6924,6942,6989,7012,7043,7088,7112,7136,7139,7143,7160,7187,7207,7237,5566,5566,5574,5566,5574,4286,5566,5566,7257,5566,5566,5727,5566,4286,5566,5566,5566,5566,5566,5566,7257,5566,5578,5578,5566,5566,5566,7264,7271,7278,7294,7307,7323,7327,7332,7338,7343,7348,7357,7363,7368,7373,7380,7385,7391,7396,7405,7410,7414,7419,7424,7430,7437,4286,4286,5574,7442,7447,7450,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5566,5574,5566,5574,5566,5566,5566,5566,7452,7457,7462,7473,7478,7483,7488,7493,7498,7502,7506,7510,7513,7516,7538,7541,7544,7548,7552,7556,7560,7564,7568,7571,7574,7257,7578,7587,7592,7600,7629,7654,7694,7698,7702,7711,7736,7756,7767,7772,7777,7782,7802,5566,5566,5566,27071,5574,4286,5578,5566,5574,5566,5566,27071,4286,7832,7848,7861,7874,5727,7882,7885,7901,7916,7925,7930,7947,7953,7960,7965,7968,7972,7977,7981,7984,7987,7991,7996,7999,8004,8008,8012,8015,8020,8024,8027,8030,8035,8040,8045,8051,8054,8058,8062,8066,8070,7965,8075,8081,8086,8091,8100,8104,8106,8128,8143,8178,8195,8207,8213,8223,8227,8234,8237,8242,8258,8266,8270,8281,8289,8311,8318,8351,5574,8366,8370,8374,8378,8382,8385,8388,8394,8398,8403,8407,8412,8416,8445,8450,8455,8460,8463,8465,8467,8470,8473,8478,8481,8485,8487,8490,8493,8497,8500,8502,8507,8517,8542,8559,8564,8575,8578,8590,8594,8598,8602,8621,8637,8642,8681,8685,8690,8698,8706,8717,8725,8731,8759,8783,8796,8812,8815,8833,8844,8854,8857,8865,8867,8872,8104,8872,8874,8879,8884,8898,8929,8940,8963,8972,8977,8988,8104,8865,8865,8104,7965,7965,8992,8994,8996,9001,8996,9003,9014,9018,9022,9027,9032,9037,9042,9050,9058,4286,8706,8865,9063,9068,9079,9084,8865,9092,9101,9108,9137,9142,9149,9154,9158,9175,9180,9189,8996,9200,9205,9223,9259,9266,9275,9285,9290,9298,9306,9349,9372,9386,9389,9392,9411,34415,9438,9445,8872,9467,9522,9528,9532,9540,9545,8104,9585,9592,9599,9604,8706,5574,9609,9614,9619,9633,9639,9643,9650,9656,9664,9668,9672,9683,9690,9696,9701,9709,9717,9727,9754,9758,9763,9798,9822,9831,9882,9886,9889,9894,9898,9902,9908,9912,9917,9922,9927,9930,10085,10111,10121,10221,10287,10316,10322,10329,10334,10341,10359,10362,10379,10385,10391,10411,10421,10433,10437,10440,10449,10453,10457,10461,10465,5289,10470,10474,10478,10482,10486,10490,10494,10499,10502,10507,10512,10516,10519,10524,10529,10532,10537,10542,10547,10552,10558,10561,10566,10571,10577,10582,10585,10589,10610,10620,10644,5574,10666,10671,10694,10715,10767,10778,10794,10801,10822,10857,10872,10891,10905,10910,10919,10928,10953,10967,10980,11001,11012,11023,11030,11044,11050,11058,11062,11090,11099,11115,11121,11140,11149,34415,11157,11160,11205,11222,11237,11250,11309,11353,11386,11403,11410,11427,11447,11458,11460,11464,11468,11474,11491,11495,11505,11511,11529,11541,11545,8992,11549,11552,8865,11559,11563,8865,11568,11573,11577,11582,11587,8706,11602,11611,11632,11643,11647,11652,11657,11661,11665,11670,11675,11679,11683,11688,11693,11698,11703,11707,11712,11717,11721,11726,11730,11734,11739,11744,11749,11754,11759,11764,11769,11774,11779,11782,11786,11791,11816,11822,11826,11831,11845,11850,11855,11860,11872,11888,11902,11913,11915,11920,11949,11957,11965,11968,11972,5578,11981,11986,11992,11998,12006,12017,12022,12029,12031,12035,12039,12051,12069,12098,12109,12114,12138,12146,12150,12156,12174,12211,12225,12238,12250,12256,12261,12266,12272,7257,12280,12291,12298,12308,12341,12362,12366,12376,12379,12383,12390,12408,12430,12465,12480,12484,12488,12493,12497,12502,12506,12511,12516,12521,12527,12531,12538,12543,12548,12553,12559,12563,12117,12573,12579,12584,12595,12623,12628,12633,12638,12643,12647,12657,12664,12670,12673,12683,12697,12765,12770,12805,12819,12828,12843,12855,12859,12863,12868,12873,12876,12885,12891,12897,12903,12919,12945,12949,12955,8992,12985,13000,13010,13015,5574,13020,13026,13032,13044,13074,13111,13147,13156,13173,13211,13246,13251,13255,13270,13292,8027,8027,13299,13308,13315,13323,13331,13341,13348,13353,13360,13366,13376,13383,13398,13409,11913,13423,13430,13434,13439,13450,13469,13534,13541,13561,13577,13585,13595,13601,5566,13606,13622,13629,13636,13642,13646,13650,13660,13677,13683,13686,13700,13706,13715,13720,13727,13734,13743,13749,13762,13782,13794,13801,8706,13808,13819,5574,13826,13854,13863,13886,13902,13906,13911,11913,13919,13932,13937,13940,13946,13950,13955,13960,13966,13971,8872,13975,13978,13989,13992,14002,14007,14015,14019,14032,5727,14048,14054,14061,14068,14071,14075,14088,14095,14101,14110,14115,7930,14120,14127,7930,8865,14138,14142,14147,14150,14155,14172,14202,14232,14236,14250,14258,14266,14272,14279,14285,14289,14294,14298,14304,14313,14322,14327,14330,14340,14346,14351,14360,14363,14368,14377,14383,14391,14397,14402,14411,14424,14437,14470,14498,14513,14522,14528,14532,14537,14542,14598,14612,14625,14633,14650,14659,14665,14703,14725,14733,14742,14752,14762,14766,14778,14788,14793,14797,14802,14806,14811,14815,14820,14825,14841,14851,14859,14865,14876,14882,14887,14893,14899,14906,14912,14916,14920,14929,14936,14948,14956,14965,14974,14987,14996,15004,15049,15066,15074,15081,15091,15098,15109,15118,15123,15142,15147,15154,15158,15166,15171,15178,15184,15189,15198,15205,15211,15216,15226,15233,15241,15249,15255,15265,15274,15284,15296,15299,15313,15325,15330,15335,15343,15350,15357,15364,15369,15378,15382,15388,15394,15404,15410,15416,15430,15435,15443,15456,15503,15517,15521,15528,15542,15564,15589,15628,15640,15650,15655,15662,15727,15732,11913,8872,15737,8872,15740,15749,15752,15758,15766,15780,15785,15806,15811,15819,15824,15829,8706,15835,15845,15851,15857,15860,15865,15868,15895,15901,15914,15919,8994,8872,15923,15934,15939,15943,15947,8706,15952,15959,15966,15971,15975,15981,15987,15993,16011,16017,16024,16029,16034,16038,16043,16047,16051,16059,16067,5574,16072,16084,16098,16103,16119,16125,16131,16135,16139,16155,16158,16164,16173,16177,16185,16192,16197,16203,16208,16213,5727,16217,16222,16227,16241,16253,16283,16287,16292,16298,5574,16303,16312,16318,16326,16332,16335,5578,16338,16346,16353,16357,16362,8996,16367,16371,16377,16383,16392,16406,16413,16419,16428,16437,16451,16457,16464,16468,16472,16489,16496,16500,16507,4286,16516,4286,16522,16538,16541,16548,16552,16567,16586,16592,16616,16624,16633,16652,16665,16669,16677,16680,16685,16698,16704,16707,16717,16732,16756,16764,16788,16797,16802,16812,16816,16834,16846,16849,16864,16871,16883,16890,16896,16902,16907,16913,16924,16929,16942,16948,16958,16963,16970,16975,16979,16985,16996,17004,17015,17026,17032,17038,17053,17061,17066,17072,17079,17087,17105,17117,17124,17135,17139,17145,17152,17156,17161,17172,17177,17187,17200,17207,17226,17230,17236,17246,17254,17261,17268,17284,17292,17325,17334,17341,17347,17350,17361,17386,17419,17430,17433,17443,17451,17465,17472,17482,17489,17505,17511,17518,17524,17533,17541,17548,17555,17560,8104,8865,8992,17569,17574,8865,17588,17598,17604,17611,17633,17654,17685,17719,17741,17745,17749,17759,17773,17777,17781,17789,17795,17799,17809,17815,17821,17828,17839,17844,17856,17862,17868,17871,17879,17886,17891,17937,17952,17955,17958,17961,17967,17970,17980,17987,18013,18015,18024,18027,18033,18039,18053,18058,18064,18067,18077,18083,18086,18091,18095,18099,18107,18117,18122,18128,18134,18140,18149,18154,18160,18165,18169,8872,18178,18188,18194,18202,18208,18213,18218,18223,18242,18247,18262,8865,18270,18274,18293,18298,18303,18307,18311,18366,18399,18404,18410,18418,18441,18449,18453,18466,18469,18472,8872,18478,18492,18507,18530,18538,5574,18543,18548,18556,18560,18588,18604,18608,18623,18625,18631,18650,18653,18665,18676,18682,18724,18755,18781,18808,18842,18847,18850,18874,18882,18893,11458,8865,18899,18911,18915,18919,18923,18929,18934,18939,18946,18949,18955,18960,18972,18975,18999,19010,19014,19023,19027,19032,19039,19063,19085,19090,19104,19110,19115,19134,11913,19140,8865,19142,19149,19154,19159,34415,19165,19174,19191,19200,19215,19233,19239,19248,19255,19260,7965,19268,19275,19279,19290,5578,19293,19298,19305,19323,19329,19341,19346,19356,19362,19367,19372,19379,19387,19391,19394,19398,19410,19420,19427,34415,19432,19452,19456,19460,19483,19487,19501,19508,19518,19532,19543,19550,19561,19594,19600,19633,19643,19654,19660,19662,19667,19674,19680,19685,19694,19699,19703,19714,19718,19723,19738,19743,19752,19765,19772,19781,19789,19793,19804,19809,19814,5580,19817,19822,19832,19846,19854,19857,19868,19873,19880,19887,19891,19897,19901,19916,19924,19929,19933,19936,19952,19960,19969,19979,19985,19994,20002,20007,20022,20027,20036,20041,20053,20058,20067,20071,20079,20087,8872,20094,20101,20109,8872,20114,20125,20129,20134,20141,20148,20155,20157,20161,20166,20177,20196,20209,20217,20225,20233,20236,20240,8865,20249,20255,20260,20270,20277,20287,20292,20297,20302,20310,20318,20323,20337,20345,20358,20363,20381,20388,20391,20397,20404,20411,20431,20440,20456,20462,20487,20498,20503,20509,20512,20532,20555,20560,20569,20579,20585,20591,20596,20603,20605,20608,20615,20617,20629,20766,8872,20770,20775,20780,20783,20787,20792,20799,20806,20810,20814,20818,20860,20867,27071,20880,20900,8872,20915,20926,20936,20945,20954,20961,20965,20971,20976,20988,20994,21005,21010,21018,21027,21061,21065,21070,21078,21083,21088,21092,21103,21113,21126,21132,21139,21154,21170,21184,21192,21197,21202,21205,21207,21209,21212,21205,21217,21220,21225,21232,21238,21241,21247,21251,21256,21258,21262,21266,21271,21275,21301,21311,21316,7257,21320,21325,21331,21336,21344,21349,21356,21362,21368,21376,21391,21400,21410,21415,21422,21425,21431,21435,21446,21453,21462,21472,21475,21489,21494,21503,21511,21517,21524,21530,21534,21546,21553,21558,21565,21589,21598,21612,21615,21628,21634,21652,21670,21674,21690,21694,21706,21711,21717,21724,21729,21739,21744,21755,21769,21774,21780,21784,21787,21794,21799,21805,5566,21811,21813,21818,21824,21829,21838,21842,21848,21853,21859,21864,21870,21874,21878,21882,21887,21892,21899,21904,21909,5574,21914,21919,21923,21925,21932,21938,21949,21954,21959,21963,21968,21975,21985,21989,21998,22003,22012,22017,22021,22026,22030,22040,22045,22050,22069,22077,22082,22086,22097,22105,22112,22119,22125,22131,22136,22141,22149,22154,22159,22161,22171,22173,22177,22184,22187,22194,22200,22206,22210,22215,22225,22233,22238,22243,22252,22259,22262,22266,22271,22276,22284,22288,22299,22307,22311,22318,22323,22328,22335,22340,22345,22350,22355,22364,22373,22384,22389,22394,22399,22406,22413,4286,22419,22424,4286,22433,22444,22450,22456,22461,22469,22474,22480,22484,22490,22494,22508,22517,22527,22532,22538,22542,22547,22551,22560,22566,22572,22578,22585,22592,22598,22605,22609,22614,22619,22624,22629,22634,22644,22650,22654,22659,22663,22669,22677,22681,22685,5580,22690,22693,22702,9001,11913,22710,22717,22723,22731,34503,22737,21998,22740,22747,8872,22751,22757,22761,22765,22777,22788,22794,22802,22806,22810,22816,22825,22831,22836,22852,22859,22866,22870,5574,22878,22884,22890,22893,22898,22905,22911,22171,22917,22927,22940,22945,8872,22951,8872,22955,22964,21489,22981,20615,8865,22988,23002,23008,23014,23018,23022,23028,8865,23033,23037,23047,8706,23087,23129,23147,11913,23152,23159,23171,23176,23182,23195,23199,23204,23209,23213,23217,8865,8872,23222,23228,8706,23231,23233,23242,23265,23272,23284,23297,23315,23320,23327,8104,23334,23346,23353,8872,23364,23369,23374,23379,23381,23385,23418,23424,23427,23431,23458,23463,23474,23484,23487,23491,23495,23501,23506,23510,23515,23521,23532,23546,23550,23555,23567,23577,23583,23589,23594,8706,23610,8865,23614,23620,23627,23633,23231,8992,23642,8872,23655,23662,23672,23677,23694,23701,23713,23718,23731,23735,8992,23746,23761,23763,23770,23772,34503,23776,23781,23788,23792,23796,23804,23807,23821,23825,23835,23840,23846,23850,23854,23861,23866,23882,23887,23893,23903,22159,23940,23946,23954,23963,23972,23983,23988,23997,24001,24008,24014,8725,24021,24026,24031,24040,24048,24052,24055,24060,24063,24067,24074,24086,24099,24104,24108,24111,24124,8872,11458,24132,24143,7965,24146,24149,24170,24176,24180,24190,24196,24200,24207,24216,24228,24260,24284,24296,24304,24308,24314,24323,24361,24368,24375,24380,24407,24413,24422,24426,24431,24436,24444,24448,24457,24461,24468,24475,24478,24481,24489,24497,24500,24505,24510,24516,24527,24532,24546,24551,24555,24567,24589,24605,24611,24614,24628,24635,24639,24644,24650,24658,24662,24670,8706,24673,24677,24682,24685,24695,24700,24704,24709,5727,24718,24736,24744,24749,24756,24758,24764,24769,24773,24790,24817,24835,24844,24866,24911,24965,25013,7930,25037,25045,25052,25064,25080,25095,25100,25111,25120,25134,25152,25174,25185,25198,25208,25214,25225,25229,25242,24195,25265,25271,25281,25287,25293,25263,25308,25314,25318,25322,25326,25331,25337,25342,25357,25368,11458,7930,23147,25378,8854,11458,25387,25393,25399,25302,25413,25434,25448,25452,25466,25482,25488,25495,25502,25507,25516,25522,25525,25529,25532,25536,25541,25547,25553,25561,25564,25420,8027,25579,4286,25584,25588,25568,25602,25610,25616,25621,25641,25644,25647,25656,25662,25672,25680,25686,25695,25702,25706,25713,25722,25729,25734,7257,25738,25746,25751,25756,25768,25773,25778,25787,25800,25808,25818,25830,25834,25859,25869,25883,25905,25909,25916,25934,25940,25953,25961,25976,25991,26003,26019,26023,26031,26038,26042,26047,26056,26063,26068,26076,26080,26088,26102,26115,26134,26140,26148,26152,26162,26167,5299,5299,5299,5635,5299,26191,26191,26195,26200,26214,26221,26229,5635,5635,5299,26238,5574,4286,5574,5578,26243,5574,5580,26250,26255,26266,26270,26277,26281,26284,26293,26297,26303,26309,26313,26317,26321,26327,26331,26336,26341,26348,26356,26363,26369,26381,26389,26395,26405,26452,26476,26498,26502,26518,26523,26527,26538,26545,26558,26561,26582,26589,26594,6236,26599,26602,26623,26638,26642,26650,26656,26667,26672,26691,26701,26724,26730,26735,26745,26751,26758,26778,26785,26791,26797,26803,26814,26820,26826,26831,26841,26853,26860,26864,26879,26889,26893,26899,5727,26912,26928,26948,26953,26957,26961,11797,26967,26998,27004,27011,27013,26994,27027,27031,27021,27035,27041,27044,27048,27051,27055,27059,27065,27038,27079,27088,27097,27121,27128,27132,27140,27144,27148,27153,27159,27172,27179,27183,27192,27199,27207,34417,27211,27215,27218,27229,27245,27250,27270,27279,27288,27296,27306,27310,27331,27351,27364,27369,27373,27382,27397,27402,27413,27417,27422,27434,27437,27453,27466,27516,27528,27536,27545,27581,27586,27589,27595,27598,27604,27611,27618,27627,27665,27672,27677,27704,27734,27748,27755,27770,27889,27925,27935,27947,27956,27973,27979,27988,27996,28003,28013,28016,28020,28031,28054,28063,28071,28083,28097,28105,28108,28113,28127,28140,28160,28173,28186,28213,28218,28252,28281,28295,28298,28302,28308,28316,28319,28328,28334,27004,28351,28410,28431,28451,26701,28520,28530,28545,28552,28562,28584,28602,28630,28663,28668,28683,28700,26961,28759,28765,28765,28328,28774,28808,28328,28822,28833,28836,28851,28871,28918,28995,29052,29068,28334,29078,29164,29164,29172,26961,29180,29217,29230,29272,29275,29289,29337,29473,29496,29523,29548,29613,29705,29734,29871,29982,30002,30185,30205,30250,30474,30500,30528,30557,30598,30615,30782,30800,30827,30910,30931,30938,31020,31216,31274,31387,31487,31513,31532,31630,31664,31709,31738,31753,31758,31763,31785,31817,31853,31927,31938,31984,32340,32496,32532,32547,28833,32556,32748,32781,32809,32862,32887,32921,32936,33045,33079,33092,33104,33109,33218,31274,33225,33240,33248,33279,33281,33375,33478,33484,33501,33563,33630,33670,33696,33719,33773,33781,33788,33814,33833,33858,33866,33906,33924,33933,33956,33961,34004,34021,34047,34059,34075,34091,34101,34108,26961,28328,34122,34133,34142,34147,34160,34185,34195,34211,34214,34249,34253,34258,34296,34325,34330,34333,34336,34341,34348,28663,34353,34388,27071,34420,19603,34444,34450,34454,34456,34460,34469,34488,34499,34506,34454,34526,34535,34544], +[0,6870,1362,1437,1448,1676,37818,2754,2757,3427,6530,37821,37823], +[0,1596,2759,2899,3202,16112,4039,4193,4255], +[0,5592,1448,37826,15514,6956,5122], +[1,2343,25603], +[0,25604,25606,25608,4139], +[0,2202,37833,37834,1695], +"@keyv/serialize", +[0,2133,3697,4387,4389], +"keep", +[0,4731,27,4738,5038,1389], +"timekeeper", +[1,2343,25612], +"key-value", +[0,25613,25614,25615,2487], +[0,20689,37845,37846,4718,37844,37841,37843], +[0,18225,1082,2832,2899,4193,1177,37853,1330,1787,1525,91,4874,37852,37850,1937,17585,37856], +[0,28860,28861,3354,37858,37859,20707,1641,37860,37861,37862,26666,21604], +[1,2343,25617], +[0,25618,25619,25620,2537], +[0,4113], +[0,1175,1195,1264,28713,1387,37868,37869,35573,1503,1596,1610,1177,37870,2759,2765,1192,2774,7060,3363,3400,3725,91,37871,2282,2924], +[0,37873,6523,676,6671,1781,24586,37874,37875,37880,37882,20398,20400,4734,4735,353,8535,37883,22180,6270,37884,37885,37887,1644,57,7119], +[1,2343,25622], +[0,25626,25630,25637,4139], +"escalade", +"pg-connection-string", +"tarn", +[0,4113,4736], +[3,5536,10], +[2,25627,4945], +[2,11836,4246], +[0,1596], +"-in-order", +[2,1436,25631], +"oracledb", +"pg-query-stream", +"tedious", +"toxiproxy-node-client", +[0,6523,1781], +"postgres", +"cockroachdb", +[2,3766,9381], +[1,2343,25642], +[0,25643,15925,2514,2537], +[0,2607,2812,37899], +[1,2343,25645], +[0,0,10710,25646,2537], +[0,6523,4736], +[1,2343,25653], +"smol-toml", +"summary", +[3,8555,11], +[2,25650,1851], +[2,4764,25651], +[0,0,25654,25655,2537], +[0,1192,4753,37908,1177,3363,37909,1894,2188,3400,1926,16638,1895,1955], +[0,12616,965,6523,57,5284,37911,37912], +[1,2343,25657], +[0,0,0,25659,2537], +"analyze", +[0,4731,6662], +"dead code", +"entropy", +[1,2343,25665], +"maintenance", +"members", +[0,25666,25668,25670,2537], +[0,3157,1144,1177,2205,2203,1894,2185,4507,3170,1595,19595,3505,2191,1953,29490,1920,4523,25803,1958,1982,13789,1895,24166,32525,1955,7681,19344,1011,15290,22937,19492], +"unreferenced", +[0,3377,1166,2020,2675,1680,13786,2990,5601,192,15600,8778,3390,3708,5467,17312], +"unresolved", +[0,13326,200,1906,19347,19350,19353,1501,19269,590,671,9654,2272,19270,1177,2649,19271,4255,15717,4354,16790,19273,18443,2446,2869,5284,91], +"tldts", +[1,2343,25673], +[0,0,25674,25676,2537], +[0,10780,1854,37928,2899], +"lodash.sortby", +[0,4739,6523], +"explorer", +"opera", +"samsung-internet", +[1,2343,25681], +[0,25683,25684,25685,2399], +"uc-browser", +[0,5663], +[0,48,53,37936,83,87,37937,1198,37940,37941,1389,1177,2765,2835,3421,37945], +[0,1108,6961,6607,3656], +[1,2343,25690], +"stream-co", +[2,25687,11532], +[2,25521,25692], +[0,25691,25693,25694,2537], +[0,1525,7606], +"praesentium-accusamus-maiores-autem", +[0,3421,1676,2899,1177,1596,4535,1389], +[0,20215,4741,2574,36796,6847,1965,1867,10368,7131,1155,1936,14419,37953], +[1,2343,25697], +"delegates", +[0,0,25698,25701,2537], +[0,37958,1091,3539,4094,4733], +"http-assert", +[2,17007,23905], +[0,37960,37963,37968,37971,37972,6649,37973,2218], +[1,2343,25703], +[0,0,9264,25704,2399], +[0,2051,1698,14690,15767,3048,4552], +[3,21482,15], +[1,2343,25708], +"gen-", +[0,0,25711,25712,2523], +"esm-wrapper", +[2,25707,25709], +[0,8648,4856,5245,37983,6494,37984,4865,13204,6503,4874,37987,4891,9241,1009,1011,1429,1610,1693,1177,1942,2026,28930,2070,2832,2899,3257,3339,3421,4230,4232,4469,91,4577,2924,4677,4729,37988], +[0,200,6876,7201,28770,4166,21000,592,37991,7009,6621,13005,35621,4744], +[1,2343,25714], +[0,0,25715,25719,4139], +[0,1192,4484,1177,4042,1894,442,1193,2064,91,53,5087,4874,2797,87,4523,5583,6373,1895,10817,37998,5889], +"-body", +[2,4860,25716], +"co-body", +[0,6775,57,5374], +"-router", +"__router", +[1,2343,25724], +"urlencoded", +[0,25725,25726,25727,2399], +[0,2070,1139], +[0,1317,15052,2768], +[0,4745,1781,38007,38008], +"copy-to", +[1,2343,25730], +[0,25731,25733,20172,2523], +[0,1495,25623,12929,4290,26574,4748], +"bodyParser", +[0,68,92,4856,6503,4874,1009,25912,1414,1429,1437,25796,1610,1615,1177,1955,2321,29551,2899,4039,91,4707,38017], +[1,2343,25735], +[0,0,25736,25737,2537], +[0,68,92,4856,6503,4874,1009,1011,1414,1429,1610,1177,2321,2899,3758,4039,4146,4261,91], +[0,7233,57,4747,1523,200,7119,5675,7058,7233], +[1,2343,25739], +[0,25740,25741,2514,2537], +[0,38035,1282,1413,1420,1437,25872,1525,38036,1676,19400,1687,2195,2714,2731,10911,2975,16450,3181,3188,3309,640,3434,28142,3917,38037,705,38040,4039,38041,4135,4296,4390,4393,4572,25898], +[0,1175,1178,1193,1195,14220,1255,1267,38044,38047,1268,1272,1291,1177,38050,18229,38052,1922,38055,1935,38058,1959,2126,2323,2338,2464,2479,2541,2544,1192,2843,3211,1241,2924], +"humanize-", +[2,25742,6988], +"-counter", +[2,22255,25744], +[1,2343,25747], +[0,0,0,25750,4139], +"koa-compress", +[3,2946,9], +[0,4749,4752,6435,4166,3378,34652], +[1,2343,25752], +[0,25753,25754,25755,2443], +[0,13581,27999], +[0,1329], +[0,4560,2056,3101,12666,2090], +[1,2343,25759], +"mounting", +"@drftgyhuji7npm/repellendus-eum-et-itaque", +[0,25760,25761,25767,2523], +[0,38073,38076,38077,38078,38080,1144,1437,1525,1676,2020,38082,2205,38083,20786,3021,38084,38086,4135,4207,4558,38088], +[0,5245,5139,4874,5254,24719,1414,1597,1177,38092,2151,1776,1894,3708,4039,4193,38093,4294,91,21328,21329], +[2,29234,32235,1524], +"@ladjs/env", +[3,25689,31], +"sint-dolorem", +"@enact/core", +[0,5001,3304,6147,4990,200,8632,4989,8623,1179,8635,1896], +[1,2343,25769], +[0,25770,25772,25767,2487], +[0,1437,1676,2020,4135,3183,3021,22776,4183,4425,2845,38086,2960,38101,27168,5139,38077], +"koa-send", +[0,1797,1776,4193,1984,1597,2720,1894,4507,9741,91,21329,5245,6513,5254,21328,24719,7892,38073,23452,38078,8818,4754,7677,3708], +[1,2343,25776], +"sendfile", +"@envelop/core", +[0,0,8134,25777,2537], +[0,4757,38108,27631,200,3741,2649,6847,8618,4938,38109,1644,38111], +[1,2343,25779], +[0,25783,25784,25785,2443], +"is-warlock", +[2,3341,25780], +"reds", +[0,3157,3445,1437,4761,1209,2089,25294,38117,38118,23878,38121,38122,1543,1615,38123,25555,9478,38080,15826,38126,38073,38127,27168,4562,38131,4754], +[0,1414,1906,3297,4193,38092,2203,1596,38133], +[0,13326,200,6400,5001,3304,6147,5122,4990,8632,2873,8635,1179,8623,1896,8310], +"webOS", +[1,2343,25788], +[0,0,25795,25799,2537], +"bossy", +[3,23453,15], +[2,25790,5592], +[2,9146,5592], +"find-rc", +"will-call", +[0,38139,1104,1166,1437,1474,1511,2929,27127,3527,4481,1906], +"cpr", +"lab-event-reporter", +"@ionic/cli", +[0,1473,7208,1512,7009,7201,200,1871,1111,590,592,6621,6983,4166,4744,3073,6807,6876,2585], +[1,2343,25801], +[0,25805,3293,25807,2487], +[2,29611,5457,1805], +[2,2102,17239], +[2,25806,553], +[0,1525,2720], +"@envelop/", +[0,4760,5592,36,5995], +[1,2343,25811], +[2,556,1098], +"md-to-pdf", +[0,25812,25815,25817,2537], +[0,3157,1437,1471,4726,1109,4294,1110,4290,38150], +"semver-", +"semver-regex", +[0,1906,2899], +"latest", +[0,13326,200,8635,4758,38152,38153,5403,6458,1111], +[1,2343,25820], +[2,25829,6811], +[0,15916,25827,25828,2523], +"autodoc", +"deft", +[2,2767,1149], +"race", +"race.js", +[2,4284,176], +[0,4170,4135,2899], +[0,38160,4762,38161,38162,38163,970,10770,11154], +[3,24329,21], +[1,2343,25831], +[0,0,0,25832,2443], +[0,91,2844,7020,998,6591], +[2,556,25877], +[1,2343,25839], +"@mapbox/", +"cript-tags", +[2,1967,25836], +[2,25835,25837], +[0,25845,25847,25856,2487], +"bundlemon", +[3,16694,16], +"urner", +[2,25841,25842], +"git-rev-sync", +[0,1170,2026,3509,4763], +"happen", +[0,7804,4856,9417,7806,38176,6494,38177,6503,38179,1364,1429,1431,1527,1536,1575,1652,1177,38182,1161,2899,3237,3378,1894,4257,4474,91], +"karma-expect", +[3,2066,9], +"leafdoc", +"prosthetic-hand", +"git-version", +[2,4049,25852], +"ontent-classifier", +"gis", +[0,4763,2026,5592,8800,38185,5995], +[2,8,25858], +[3,1008,21,5], +[1,2343,25860], +[0,25861,25864,25865,2399], +[0,1282,1362,1676,34226,2685,2832,1209,3171,3242,705,4454,4729], +[2,25857,2324], +[2,25867,6], +[0,1173,1178,1255,1264,1364,1575,1700,1177,2026,2323,2338,2384,29396,2472,2510,2541,2899,3237,3253,6596,4019], +[0,1973,6533,5472,21972,4386,10659,37125,29727,1388,1936,12075,965,1623,5284,11857,6662,26196,38192], +"numbers", +[3,19535,16], +"ng-packagr", +[1,2343,25870], +[0,0,25876,2514,2537], +"aproba", +"cmd-shim", +"p-reduce", +"byte-size", +"write-pkg", +[0,28069,30286,38197,23689,4874,32440,1362,26739,2780,2784,1192,2899,3210,2765,4232,2766,24652,4094,4376,4484,1984], +"examples", +"wide-align", +"has-unicode", +"p-waterfall", +[2,2977,7318], +"@npmtea2024/quasi-nisi-doloremque-fugit", +[1,2343,25889], +"p-map-series", +"blocking", +"set-blocking", +"@lerna/create", +[2,2977,20001], +[0,25890,25895,25896,4139], +[0,38202,6870,1389,21146,38204,1512,1525,1536,1573,1676,2026,38207,12783,38209,12785,2590,2600,2659,12788,38210,12789,1209,3456,3470,38212,4165,38213,17011,4339,38215,20496,4650,4652,1695,4746,38217], +"read-cmd-shim", +[2,3614,16830], +[2,21772,18709], +"strong-", +[0,1087,38221,38222,2899,3524,4389,4431,38224], +[0,4770,5472,1388,2907,2899,12826], +[3,4588,21], +[2,25897,4059], +"-bump", +[2,4945,25899], +[2,13984,25900], +"-rest", +[2,24089,25902], +[2,9768,25903], +[1,2343,25906], +[0,25907,6736,25908,2523], +[0,666,672,677,9688,1710,4135,4459,4484], +[0,9621,9622,8174,9623,9624,9625,9626,9627,9628,9648,9659], +[1,2343,25914], +[2,1583,20499], +"errno", +[2,15086,1179], +"jest-codemods", +[0,25915,6736,6767,2487], +[0,1437,4484,677,4135,2203,666,17310,1012,9688,19254,12123], +[1,2343,25918], +"benny", +[0,25932,6736,25933,2537], +"less-port", +[2,10784,25919], +"emplate-tag", +[2,2642,25921], +"jit-grunt", +[3,1165,10], +[2,21897,25924], +"mocha-te", +"amcity-reporter", +[2,25926,25927], +"phin", +"read-glob", +"@ptkhanh94npm/iusto-libero-aperiam", +[0,4484,677,4135,2798,3181,666,3527,8734,2797,4748,8752,24759,8762,2686,9688], +[0,9621,9622,8174,9623,9624,9625,9626,38247,9628,9659], +[1,2343,25935], +[0,25937,25938,25939,34352], +[2,21897,2070], +[0,4484,677,4135,666,672,4771,9688], +[0,3420,4270], +[0,9622,8174,9623,38255,9627,9628,9648,9659], +[1,2343,25941], +[0,25945,25949,25952,2443], +"abstract-l", +"evel", +[2,25942,25943], +[0,30508,30509,4484], +"browser-level", +"-level", +[2,128,25947], +[0,34030,26312,10846,4426], +"@voxpelli/tsconfig", +[2,12774,3541], +[0,7522,89,7531,7535,7521,7597,7518,8424,8432,7528,10442], +[1,2343,25955], +"leveldb", +[0,25956,25957,25958,2443], +[0,38264,3286,89,3824,38265,4125,38266], +[0,4874,4880,4883,1177,4828,3561,4383,91], +[0,12589,1616,33456,12589,5472,20500,33459,1237,33462,33464,12590,33465,27666,11996], +[2,25944,2971], +"napi-macros", +[1,2343,25962], +[0,25973,0,25975,2537], +"async-each", +"du", +"cat-iterator", +[2,1332,25965], +[2,2970,25966], +"mkfiletree", +[2,15164,18490], +[3,25969,13], +"ross", +[2,25970,25971], +[0,1639,3744,97,7931,7932,7910], +"readfiletree", +[0,89,5128,9267,1832], +[1,2343,25977], +[0,25978,10298,25979,2443], +[0,16053,16056,38278], +[0,5284,1776,1644,1746,1745], +"-leveldown", +[2,14834,25980], +"level-", +"level-errors", +[2,7253,14922], +[2,25982,25984], +"supports", +[2,25982,25986], +"queue-", +"microtask", +[2,25988,25989], +[1,2343,25998], +"airtap-sauce", +"encoding-", +[2,25993,2971], +"memdown", +[3,12809,12], +[2,4182,5614], +[0,25999,26001,26002,2537], +[0,97,5663], +"trickle", +[0,5087,1192], +[0,5284,4967,89,6081], +[1,2343,26004], +[0,26005,26016,26018,2537], +[0,97,38293,3744,3847,4484], +"levenshtein", +[2,2068,26006], +"ld", +"levdist", +[2,26006,10699], +[3,26010,12], +"-distance", +[2,6109,26012], +[2,26011,26013], +"talisman", +[0,5228,14249,5700,8129,20202,38298,20212,602,5583,811,963,966,968,38299,972,974,5087,5090,4880,1009,1011,7913,38302,38304,1397,1597,1610,1651,1177,4916,1959,2126,38307,38309,11853,19227,3400,3698,9054,89,3824,3847,3857,3904,4146,4261,91], +"distance", +[0,38313,89,15774,38316,38317,5399,1631,32039,38319,7320,38320,32040,38322], +[1,2343,26021], +"comparison", +[0,21012,0,26022,34352], +[0,6653,7320,10039,24832,1623,13006,38327,6847,5284,676,38328,38329,29002,24353,8112,3561,6425,38330,18252,1631,3586,38332,4453,38333], +[1,2343,26027], +"careful-", +"binary-", +[2,26025,19101], +[0,26028,26029,26030,34352], +[0,2115,2121,2127,1110,28827,2856,4507,26907], +[0,2180,5476,5478,2189,2198,31852,91], +[0,2313,1383,614,202,1388,5995,4967,2340,2350], +[1,2343,26033], +"country-codes-flags-phone-codes", +[0,0,0,26034,4139], +[0,1671,671,3315,17626,6869,6671,3319,3325,3362,6829,3384], +"just-safe-set", +"ock-registry", +[2,9494,26036], +[1,2343,26039], +[0,26040,26041,26002,2523], +[0,53,31689,97,5663,4793,4800,4838,4928,4786,4944,4954,4968,362,4972,24723,4981,10895,4982,11518,841,7812,24370,4985,1030,4992,1165,1195,29040,30521,1393,1437,1525,1593,1628,1630,1759,1763,2151,2070,2220,4995,2222,2651,2843,2867,1209,3177,3220,4996,3310,3445,3561,3579,3584,3613,3618,30274,1894,3742,15033,3816,3878,4079,13834,4164,4167,4307,5000,4409,5002,1002,1983,29141,2924,4676,4681,13152], +[0,29536,27134,4864,4870,5009,5542,15600,33768,11944,3144,3244,3758,4039], +[1,2343,26043], +[0,6203,26045,26046,2523], +"gitfund", +[0,549,811,8850,816,6373,4863,5087,4880,1009,1011,8158,1584,1843,1177,1895,1938,1955,1959,1192,2780,2832,3421,1894,89,3824,4039,4042,4052,8849,8853,4076,4079,4230,4468,4469,4474,4484,4508,2924,4677,4681,555,560], +[0,24456,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2343,26048], +[0,6203,26054,26055,2537], +"crlf", +[3,2982,15], +[2,6774,16609], +[2,26050,26051], +"renamer", +[0,53,87,92,8862,5087,4874,1009,1011,6834,6840,6873,1031,11018,13072,1593,1610,1177,1895,1938,6902,1988,1192,2780,1894,4039,4042,4045,4052,4076,4079,6904,4468,4484,4508,91,188,555], +[0,188,8588,6931,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2343,26058], +[2,33018,188], +[0,6203,26061,26062,4139], +"ged-respawn", +[2,7210,26059], +[0,53,87,92,4856,5087,6503,4874,1009,1011,6834,6840,6993,6873,1031,11018,13072,1429,1610,1177,1895,1938,6902,1988,3400,1894,4039,4042,4045,4052,4076,4079,6904,7006,4484,4508,91,188,555,5010], +[0,188,8588,6931,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841,12075,1623,4380], +[1,2343,26064], +[0,26065,26066,26067,2523], +[0,12396,23289,23249,3493,12449,15632], +[0,9363,4874,1414,31147,1894,3985,3998,18071,4505,4507,91,18002,1906], +[0,23266,2587,23267,614,6435,1936,1644,15278], +[1,2343,26069], +[0,0,26071,26075,2537], +"cname-prefix", +[0,1177,2899,3421,4193], +"autolink", +"hashtag", +"mention", +[0,4264,15457,15482,13499,15483,5995], +[1,2343,26077], +[0,0,0,26078,2537], +[0,17356,17362,17364,17365,17384,17397,17423,17426,1745,1783], +"pidtree", +[1,2343,26083], +"consolemock", +"sonner", +[0,26084,26085,26086,2487], +[0,24337,24344,18220,1676,24345,2714,2072,4238,4431,4484,4753], +[0,8656,8660,6061,6063,5245,24352,29105,5087,4874,28177,24358,18435,20290,1177,1192,1894,4131,4468,91], +[0,12296,12295,200,5131,1896,24364,970], +"@samverschueren/stream-to-observable", +[1,2343,26089], +[0,26100,0,26101,2523], +"is-observable", +"-silent-renderer", +[2,2991,26091], +"listr-", +[2,9787,3902], +[2,26093,26094], +"verb", +"ose-renderer", +[2,26096,26097], +[2,26093,26098], +[0,12396,21300,32567,2586,21308,12447,12449], +[0,2587,1936,21308,26916,1783,18108,26564,1932,3958,32462,3984,21306,4549], +[1,2343,26103], +[0,26105,26106,26110,2523], +"@keyv/compress-brotli", +[0,2564,4351], +[0,1166,1503,91,1906], +[3,175,23], +[2,26109,16518], +[3,26104,15], +[0,163,7009,22316,200,13735,4354,1111,1106,7201], +"@lit/reactive-element", +"@lit", +"-labs/ssr-dom-shim", +[2,26112,26113], +[1,2343,26125], +"@lit-labs/", +[2,26116,5472], +"@lit-", +"/scripts", +[2,6943,26119], +[2,26118,26120], +[2,10704,1283], +"@keyv/memcache", +"@keyv/mongo", +[0,26126,26130,26133,2443], +[0,20573,5545], +"connect-l", +"ogger", +[2,26127,26128], +[0,5517,28436,19438,19181,442,8648,842,16145,966,968,972,22375,5087,4874,4880,5546,1009,1011,34737,1177,1895,31755,1959,1961,1976,2203,2675,1192,2780,2990,3286,1894,89,3824,5564,4039,4135,91,4523], +"@keyv/sqlite", +"@keyv/test-suite", +[0,26713,89,582,705,2325,1612], +[1,2343,26135], +[0,0,26138,26139,2523], +"http-auth", +"faye-websocket", +[0,4874,4218,4220,4493,91], +[0,91,998,553,5490,17180,20052,2382,6956,2844,5995,6400,1781,6866,1398,9254,15105,4144,4141,7050,22789,22791], +[1,2343,26141], +[0,26143,26145,26146,2537], +"amaro", +[0,23641,27185,29561], +[2,3000,1592], +[0,58,101,8648,1177,2272,3019,2899,4019,19767,4481,4535], +[0,36720,22860,1388,16284,888,22856,35087,11804,23659,23664,23667,23668,29725,29728,32633], +"micro-backend", +[1,2343,26149], +[0,0,26150,26151,2537], +[0,2832,705,4008], +[0,1936,23670,11513], +[1,2343,26153], +[0,26156,26157,26161,2537], +[2,2032,26155,26159], +"openid-c", +[0,2591,25047,23597,4290,24794,24836,19569,15245,24855,24871,24984,25049,25034,24816,24841,24900,24964,24989,24998,21642,37100,25011,24802,24828,24987,24797,24958,25042], +[0,1414,2020,4193,25122,1306,1177,1701,25127,2182,1894,842,1587,1610,4342,3980,25609,91,4874,25099,25108,6513,8529,27525,25110,9240,25103,25104,25098,25137,25053,25118,25114,25058,25083,10614], +"grunt-svgmin", +"onnect", +"matchdep", +[0,25155,5130,33359], +[1,2343,26163], +[0,26164,26165,26166,2537], +[0,25183,25194,1759,2858,3310,9796], +[0,33460,25204,4874,5542,1177,25209,1894,4039,4494,91,1984], +[0,9649,17721,6869], +[1,2343,26168], +[0,26171,26174,26188,4139], +"lws-basic-auth", +"lws-b", +[0,1676,4164,4484,4747,2151,1525,3310,25228,24337,3322,24335,25245], +"lws-blacklist", +[2,26170,7803], +[0,3377,1192,2675,4400,1177,4039,4468,1894,91,5087,4874,5245,28177,20959,107,4864,5542,25250,8656,8660,1009], +"lws-compress", +"lws-co", +"nditional-get", +[2,26176,26177], +"lws-cors", +"lws-index", +"lws-json", +"lws-log", +"lws-mime", +"lws-range", +"lws-r", +[2,13148,21101], +[2,26185,26186], +[0,2733,8675,13494,5131,970,1017,25259], +"lws-rewrite", +"lws-spa", +[1,5293,26193], +"lws-static", +[0,8391,26194], +1753574400000, +[1,2343,26197], +"full-stack", +[0,26198,0,26199,2537], +[0,1461,2731,3744,3776,89,3824,3847,4649], +[0,5130,6081,4963,5131,25786], +[1,2343,26201], +[0,26209,0,26211,2399], +[3,24235,20], +"loose", +[2,26202,26203], +[2,13888,5669], +"grunt-es", +"3-safe-recast", +[2,26206,26207], +[0,4484,25804,29321,29322], +"grunt-rollup", +[0,13572,2220,36,5130,202,6710,91], +"grunt-ts", +"rollupify", +[1,2343,26215], +[0,26219,26220,16427,2523], +"indexeddb", +[3,23920,12], +"websql", +[0,24327,25819,24329,24335,24337,24338,24339,24340,24343,24344,1437,1676,1687,24345,24346,1209,3445,6331,20921,4135,4238,24347,22651,4339,4390,4484], +[0,5245,17577,24352,5087,4870,4874,5254,24358,24360,13214,1192,2774,2990,4039,4227,4468,91], +[1,2343,26224], +[2,31787,26225], +"openurl", +[0,6203,26226,26227,2523], +"ecma402-abstract", +[0,25857,25862,25863,19535,19,21,24,26,1009,1011,1166,1584,1177,1895,1938,1955,25868,3421,1894,4039,4094,4232,4484,4508,91,555], +[0,1098,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[2,3019,2825], +[1,2343,26231], +[2,7627,4255], +[0,26235,26236,26237,2537], +[2,6698,19048], +"lockfile ", +[2,26233,671], +[0,20437,1209], +[0,4874,1009,1011,1177,1895,1938,1955,1894,4039,4042,4052,4076,4079,4484,4508,91,555], +[0,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2343,26239], +[0,26240,26242,7097,2523], +[0,1473,4741], +[2,31528,29413], +[0,10321,4493,4543], +[1,5293,26244], +[0,8391,26245], +1738454400000, +"@egjs/axes", +"@egjs/imready", +"modularized", +[2,5316,26248], +[1,2343,26251], +[0,26252,26253,26254,2537], +[0,97,5564], +[0,29519,89,1177,1503,4474,1894,1610,3824,29520,91,11853,4880,38309,4883,29522,3904,17584,1011,4889,1009], +[0,5472,89,582,2275,11857], +[1,2343,26261], +[2,27471,1722], +"kuler", +"clonedeep", +"js-randomness-predictor", +[3,23307,13], +[0,26262,0,26263,4139], +[0,25510,29529,25758], +[0,6932,6622,6694,6704,6860,6695,4389,7159,5341,7202,7121,7060,7161,7141,7287,6698,3743,7311,6946,2090,6566,6907,7228,4799,5261,6863,2051,676,4643,7535,6748,6739,6618,2844,7252,6673,6790,7531,7226,1851,1612,4763,6598,6728,6868,6662,7148,6905,6668,7292,7272,6583,3767,364,6800,6874,4166,1698,2021,6821,3065,6435,3730,6882,4647,6857,6637,7031,7223,7080,3113,7220,1871,6801,7087,6938,7145,3195,7255,7162,6482,7094,6922,6615,6738,6654,8433,7212,7050,7521,1525,6892,6830,3432,10442,7053,7253,10443,6937,6894,6977,5592,6692,200,6940,6867,7242,7518,6582,3101,7038,57,7188,6809,6998,4484,4796,7089,7178,7182,6827,7015,6912,7011,6743,1451,6575,7117,6994,3046,2812,7199,2860,998,5122,1111,6696,6910,3529,7133,6048,1303,6634,1139,6846,6784,7192,6777,3053,5351,6624,3171,1896,2297,6960,7022,6597,5198,6802,6816,7317,4141,6765,6591,7236,1306,6681,5257,6564,100,7004,6333,6799,6774,7276,7196,6797,1263,1149,2649,7150,7165,6753,7107,6948,6975,6822,6787,6760,7046,5472,6651,6569,6825,7069,582,7191,6968,6631,6742,4744,7258,1925,6794,6804,965,7149,6917,2700,1192,2765,6081,7029,1417,5258,4426,6608,7044,7123,7222,3378,1616,3917,1614,1669,3209,6570,7155,6422,6714,6725,6606,6778,7300,6610,6716,1259,2585,1393,6918,1461,1213,7232,7172,6755,4014,6919,7209,7075,6818,6870,7039,6795,6761,6966,2154,6885,4707,6964,6646,7218,7169,2978,5501,1155,6611,6955,1862,1753,2220,6837,7336,4386,6638,6616,6553,7310,7061,6881,7298,8424,5675,3437,3456,6929,7157,6580,6751,7010,6648,3426,6952,8435,4384,7233,6697,4162,2150,3875,1108,5165,6926,3763,7229,592,3776,7288,5957,6700,2088,6650,7595,10446,7289,6805,7099,7084,7144,590,5374,5197,7077,5286,7248,2078,7085,7285,1781,6653,10441,2325,5281,1351,7309,7204,2696,2899,3430,705,7126,1697,2038,7025,6641,6620,1671,6859,6573,7146,7245,4649,3220,6667,1623,6793,6666,6903,7230,7026,6588,6858,1362,202,2832,7023,7284,6659,6577,7158,6594,7115,20215,6789,5614,7057,7528,7021,6605,6621,5260,6973,6913,6828,6563,6715,1460,7067,7072,6762,7033,7517,6702,7020,6887,5131,3778,6915,1593,5194,7071,1429,7042,6636,6841,3428,7007,7532,6803,7106,3073,6824,7227,7286,2845,7082,7114,7151,7297,6769,3766,6914,7189,7064,4720,6723,7205,6780,6683,7078,1858,6741,7262,6962,814,6657,7524,1544,7002,7527,1585,5511,1512,6921,6951,6856,7598,6854,8428,6586,6773,2105,7047,2671,1541,6623,594,6711,7147,6671,7256,7194,1165,6786,3768,6752,8427,1804,3441,7275,3033,6943,4354,4580,6758,7027], +"snackbar", +"inject-markdown", +[1,2343,26267], +[0,0,26268,26269,2537], +[0,2272,19270,2899], +[0,1111,1936], +[1,2343,26271], +[0,26272,26275,26276,2523], +[0,6513,4193,4484], +[2,32920,4521], +"rchitecto-", +[0,33821,7709,33826,33827,33831,33836,29543,4508], +[0,7200,1168,5472,3212,20188,29545], +[1,2343,26278], +[0,0,26279,26280,4139], +[0,6373,1437,29550,2151,2070,2323,2372,29552,4039,4042,4057,4076,4072,4484,4487,91], +[0,1896,5066,29554,29555,5122,12295,14554,5284,4453,29556,5131,1591,1932,4653,6434], +[1,2343,26282], +[0,0,0,26283,2523], +[0,7201,5131,1676], +[1,2343,26288], +[2,28288,26286,33678], +"redential", +"isequal", +[0,26289,26290,26291,4139], +[0,1364,1536,1676,1710,11479,2017,2929,4200,4763], +[0,8648,29574,5159,838,5160,840,8296,5601,1165,1662,1177,1895,1972,2203,3561,1894,3710,23535,3709,4355,4383,91,1983,1984], +[0,5592,5995,27,4699,4729,4030,6710], +"isfunction", +[1,2343,26294], +[0,0,26295,26296,2487], +[0,53,87,192,5467,1165,1195,1387,31429,1429,29582,1492,29584,1652,29585,2323,29586,2338,29587,29589,2361,2367,2384,2390,2419,2455,2464,2479,2482,2494,2496,2504,29592,2510,2530,2550,29593,2675,29594,2822,2929,2899,3198,29595,5561,3561,3722,4015,4019,4042,4045,21688,4939,29596,4193,8959,29597,4597,29599,2924,18237], +[0,1623,4329,2278,676,6398,6396,5130,14894,29603,29607], +[1,2343,26298], +[0,26299,26300,26302,34352], +[0,1437,29614], +[0,29618,7677,2675,2990,1894,91,1984], +"isplainobject", +[0,200,1473,1512,7208,6876,7201,6983,29609,3632,3073,6807,4166,1871,590,592,7009], +[1,2343,26304], +[0,26305,26306,26308,4139], +[0,7943,29630,3120,3744], +[0,48,53,68,13693,61,31689,73,31693,5757,5800,5818,5827,87,90,19696,19438,19181,442,34467,32229,29634,28970,29636,10837,10840,29639,966,968,972,29642,974,5087,11292,4874,4880,4883,8152,1175,1193,1195,20479,29643,11335,29645,1465,1584,1587,1593,1610,1700,1177,1879,1895,1922,1938,1947,1955,1959,1961,1976,2151,2203,29646,1192,11347,2774,2780,29652,2832,3561,3697,1894,3720,89,3816,3824,3847,29655,3957,4183,4270,4315,29660,4415,29661,35487,4468,4469,91,2924,4677,4681], +"isstring", +[0,29610,29666,29667,4627,6082,9204,5130,89,699,9291,5354,29668,29669,29670,29671,7320,29673,29674,29676,1473,998,8691,8295,29677,181,6073,10769,29678,4315], +[1,2343,26310], +[0,0,0,26311,2537], +[0,23584,23584,1936,3205,1002], +"@thednp/dommatrix", +[1,2343,26314], +[0,0,26315,26316,2537], +[0,29693,2228,2247,2253,2258,2263,2273,2281,2283,29694,2308], +[0,36653,36650,29702,15571,8192,5066,11316,18346,35060,2814,20632,6398,5131], +[1,2343,26318], +[0,26319,26320,22658,2443], +[0,3561,33145,4317,8712,1423,28572], +[0,4729,1138,3244,3467,4390,4763,12084,2070,710,614,1082,31705,1413,1676,2145,2856,33213,1145,1398,1410,977,2018,2755,3266,3930,4135,4072,11478,2105,6042,3479,3729,2924,3757,3784,33214,33173,842,9241,1525,1610,2553,11993,26453,23175,3530,4270,33215,29709,11534,13214,33200,33202,1628,11890,2659,16837,2689,33211,4227,4294,4425,91,24739,53,554,4865,33198,20463,13753,1154,33204,1536,1615,2805,4111,27062,4165,15040,33212,7080,104,8317,33146,33174,5364,5245,33191,4880,1195,1393,33206,1562,33208,2863,33210,3678,20508,4307,11804,33176,11477,4870,5254,33209,20465,15031,3878,13834,15048,97,33181,26733,15018,3509,15042,15047,101,8755,29877,33197,15606,15009,3502,15033,5216,33165,8648,10837,20374,4883,2661,15022,3322,51,87,11011,23452,1618,2674,4230,28512,15039,15046,13471,10879,7806,21122,16149,16566,3672,90,33156,617,11796,8264,33193,11800,1560,3676,3957,68,33768,15015,3688,9221,25652,33158,33167,34467,33195,36897,16841,18730,4409,33159,29876,24807,31666,16912,3605,16842,33170,33179,3177,4851,92,33162,19861,29517,29421,33172,10840,33183,33153,10825,30521,10827,20476,15273,83,16840,33189,3638,81,5715,29874,5757,5241,5820,5821,5785,1251], +[1,2343,26323], +[2,1882,24717], +[0,0,26324,26325,2399], +[0,1414,34238,2675,2990,3561,1906], +[0,3561,1623,6425,26543], +[0,0,21613,21614,34352], +[1,2343,34498], +[0,1448,4907,29733,3157,3173,3527,3721,11114,4207], +[0,192,5467,442,6061,16607,6063,6065,16608,16612,7746,4874,13210,29740,1009,1011,1610,1177,1953,2020,2203,2675,29741,2990,3536,1894,4039,4131,91,1984], +[0,8678,3758,7001,1017,29745,12295,12296,29746,29747,29748,158,3097,5131,33777,29750,29751], +[1,2343,26332], +[0,26333,26334,26335,34352], +[0,29758,29759,1398,34690,3127,3725,10397,29761], +[0,53,68,87,1195,29776,1465,24542,1628,1177,1879,31393,1938,24732,2092,8301,2651,29784,4307,4409,37871,2924,4676,4677,4681], +[0,8168,8170,8171,6975,8172,8173,1745,29786,29787,29729,8124,29788,29795,29796,29797,29798,29802,29803], +[1,2343,26337], +[0,26338,26339,26340,2523], +[0,3744], +[0,53,68,97,1177,1879,1895,1938,1947,1955,1959,1961,1192,5103,1894,89,3857], +[0,3857,5128,31912,89,5131,12295,12296,181,26542,23187,29556,29804,9944,7521], +[1,2343,26342], +[0,0,26345,26347,2523], +[3,532,8], +[2,26346,26651], +[0,53,87,97,29817,21155,1177,2675,2990,89,3857,91], +"@tdesign/", +[0,3857,5128,31912,89,5131,12295,12296,181,5396,29819,15813,29820], +[1,2343,26352], +[3,17904,13], +"sprintf-kit", +"uni-global", +[0,0,26354,26355,2443], +[3,25092,13], +[0,53,68,61,5241,83,87,90,5583,811,816,968,972,1165,1497,1652,1177,1895,31755,1955,1959,1961,1976,2675,2686,1192,2990,3561,1894,3744,89,3824,4042,8849,29826,6068,10854,4320,4323], +[0,89,35058,29831,3392,89,4627,29832,5131,12295,12296,29836,29837,29838,29839], +[1,2343,26359], +"ncjsm", +"tape-index", +[0,26360,26361,26362,34352], +[0,97,29843,29844], +[0,53,78,83,87,90,92,5522,107,29846,968,972,4880,4883,1009,1011,1030,1178,1413,1610,1177,1895,1955,1959,2675,1192,2780,2990,1894,89,3824,4039,91,1983], +[0,29848,29849,89,5128,38332], +[1,2343,26365], +"@standard-schema/spec", +[0,26366,26367,26368,2487], +[0,1420,29855,4507], +[0,5517,19438,442,29857,23689,1414,1437,1516,1532,668,1177,1895,1955,2020,2203,2675,2765,2990,3074,1894,4039,18710,91,4523], +[0,20627,1739,1745,1179,1783,5980,9591], +[1,2343,26370], +[0,26372,26373,26378,2443], +"terminal.js", +[0,810,1497,26570,16485,2017,2696,3876,4022,32284,5545,29869], +[0,48,53,87,90,92,97,19696,28091,19492,19438,442,28598,30507,810,11275,34467,827,10828,28147,28466,31235,7384,31237,28473,28476,968,972,974,29879,33123,29880,4874,4880,4883,15606,1030,17214,7677,1195,29883,20476,1393,29645,1610,17100,17101,17103,1687,1177,26322,1895,1915,1938,1942,1947,1955,1959,1961,30553,10851,2070,2203,2675,2832,2990,3127,3541,1894,89,3824,3847,3876,4039,4270,4409,4469,4473,91,4523,15088,1984,29887,2924,4676,4677], +[3,28685,11], +"refresh", +"overwrite", +"irtual-core", +[0,89,6071,9816,5128], +"tinyexec", +[2,17213,28937], +[1,2343,26382], +[0,26384,26386,26387,2537], +"date-format", +[0,29896], +"flatted", +[0,29900,29905,29910,29911,811,816,974,11096,11109,19203,29914,11111,29917,29921,1414,1429,29922,29924,1177,29925,1938,2832,8821,2899,1894,4042,29926,4146,4193,4196,4261,4072,91], +[0,29935,11619,11608,30891,11622,6907,29936,12899,5130,30442,17950,1283,29939,33359,11415,6624,12620,29940,29941], +"streamroller", +[1,2343,26392], +"@log4js-node/sandboxed-module", +"-producer", +[0,0,26393,26394,2487], +[0,53,13052,87,4042,4045,4058,4067,4415,29949,35487,4535], +[0,7838,29953,7518,3161,1098,29954,89,188,7880], +[1,2343,26401], +[3,9227,10], +"e-js", +[2,26396,26397], +"grunt-open", +[2,2235,4358], +[0,26402,26403,26404,2537], +[0,97,29959,10984,1673,3021,29960,4443,1155], +[0,5652,61,83,87,92,192,5467,6372,5583,811,16952,8850,816,6373,29966,29967,29980,26344,5139,4874,8149,11438,14334,1009,1011,11016,13061,7677,23203,13063,1031,36812,36805,11018,1165,1170,1420,12405,1527,1540,1610,1651,1652,1676,29972,668,1177,1881,1895,1938,1955,1988,2226,2675,2832,695,2990,3025,26804,3213,3561,1894,3725,29973,3957,4039,4042,34019,8849,11899,15277,29974,15911,10854,29975,29978,4073,6904,4081,29983,4484,91,1983,29987,1984,188,4630,4639,13151], +[0,188,5131,29990], +[1,2343,26427], +"esm2umd", +[2,26409,26410], +"int64", +"@astrojs/s", +"itemap", +"@pagefind/default-ui", +[2,26689,27593], +"uid2", +"astro-expressive-code", +"bcp-47", +"isemail", +"canonical-json", +[2,3138,12442], +"-phase", +[2,3081,26419], +"pagefind", +"remoting", +[2,25894,26422], +"loopback-", +"filters", +[2,26424,26425], +[0,26430,26432,26451,2523], +"globalize", +[2,25894,26428], +[0,7755,1869,2814], +"linkedom", +[0,53,87,23572,11301,1165,1168,30000,1597,1610,1637,1651,18259,1759,1177,1895,1903,1938,1954,1955,1958,1970,3363,3561,3564,3566,30030,3579,3605,30033,3613,3640,30039,30274,1894,4039,4042,4045,4055,4058,20981,30041,4067,20983,32978,4073,12309,4201,4320,4946,4360], +"or-remote", +[2,1544,26433], +[2,26424,26434], +[3,18637,12], +"tub-transport", +[2,26436,26437], +"datas", +"withastro", +"ource-juggler", +[2,26439,26441], +[2,26424,26442], +[3,18637,11], +"astro-integration", +"-transport", +[2,1716,26446], +[2,26444,26447], +"adapter-", +[2,32700,23187], +[0,12318,2090,30044,30045,13225,7518,5398,158,30046,190,5131,18346,9229,1542,30826,20937,2814], +[1,2343,26454], +"is-docker", +[0,26460,26471,26475,2523], +"loopback-boot", +"s6-shim", +[2,13897,26456], +[3,26435,12], +[2,26458,2585], +[0,1170,2812,1209,3183,4094], +"task-emitter", +[2,25894,26461], +[3,6738,11], +[2,26463,1524], +[2,25894,26464], +[2,1884,3081], +"processor", +"-preprocessor", +[2,22126,26468], +[2,2877,26469], +[0,1429,1177,10419,3188,2899,1241], +"sqlserver", +"StrongLoop", +"mBaaS", +[0,6703,1702,200,1586,21405,13397,33351,27,29854,30053,21402,13322,16697,28984,6667,6574,30056,31937], +[1,2343,26480], +[2,26478,29168], +[3,30636,28], +[2,26868,26869], +[0,0,26496,26497,2537], +"exact-versions", +[2,32700,7293], +[2,26485,24631], +"steno", +[3,31231,18], +[2,19036,20], +[2,5745,1852], +[2,2029,26487], +[2,32731,26494], +"embed", +"Storage", +"localStorage", +[2,1577,26491], +"polygon", +[2,32731,32729], +[0,1165,1387,2323,30061,2379,2409,2450,2482,2494,2496,2510,18426,30064,3591,4320,4323,4747], +[0,29993,30066,30067,1623,695,5131], +[1,2343,26500], +"rslog", +[0,0,0,26501,2487], +[0,89,6649,10057,6355,3875,1542], +[1,5293,26508], +[2,13104,1936], +"@lucide/build-icons", +"@lucide/", +[2,4080,591], +[2,26505,26506], +[0,8391,26515], +"Lucide", +"HTML", +"Feather", +"Icons", +"Icon", +"SVG", +1731196800000, +"Feather Icons", +"Fontawesome", +[1,2343,26519], +[0,26521,26522,2514,4139], +"Font Awesome", +[0,30078,9307,9311,30068,30052,30073,9313,30072,1497,12412,30075,2071,7610,2579,21308,3137,27008,3140,12627,26929,26914,17429,9337,3973,9340,3988,30049,30069,30059,27062,9348,4207,17913,4473,30058,4555,28830,4745,4763], +[0,11522,972,1006,12396,9363,30082,4880,4891,1030,30084,23312,23314,3286,89,3824,4549,1984,28965], +[1,2343,26524], +[0,26525,0,26526,2537], +[0,30097], +[0,1674,30099,30100,15001,13739,35071,30103,30113,19571], +[1,2343,26529], +"decree", +[0,26530,26531,13347,2537], +[0,20378,3530], +[0,11976,4874,20374,2071,30138,2070,4441,1531,91], +"manipulate", +"blur", +"sharpen", +"flip", +"hue", +"saturation", +[1,2343,26540], +"lightness", +[0,0,0,26544,4139], +"transparency", +"fade", +"opacity", +[0,91,553,1973,8791,2022], +[1,2343,26546], +[0,26547,2667,26554,2537], +[0,30173,4484], +"@75lb/deep-merge", +[3,1107,11], +"-sequences", +[2,26549,26550], +[2,1601,7880], +"load-module", +[0,30175,30176,27227,30177,30178,91,6742,57,15266,2873,1993,7256,676,19976,30179,5995,6400], +"-anywhere", +[2,17242,26555], +[2,30307,553], +[1,2343,26559], +[0,0,6230,26560,2399], +[0,32054,4963,4967,6082,3286,3287,89,11167,31512,181,630], +[1,2343,26569], +"-home-dir", +[2,18132,26562], +"mdast", +[2,2580,26564], +"fetch-happen", +[2,3094,26566], +[2,12428,1783], +[0,6234,6230,26575,4139], +[2,25212,28139], +"-unique-id", +[2,5843,26571], +[2,4402,163], +"y18n", +[0,1501,4963,4967,5342,6082,3286,3287,89,5341,9057,181,630], +[3,9357,10], +"umnify", +[2,26576,26577], +[2,8140,1687], +"ke-fetch-happen", +[2,18655,26580], +[1,2343,26583], +[0,26585,6230,26588,2523], +"@types/which", +[0,3826], +"wizard", +"task graph", +[0,4963,18263,1786,4967,6082,3286,3287,89,181,630,9229], +[1,2343,26590], +[0,26592,6230,26593,4139], +"zoroaster", +[0,9041], +[0,4963,4967,6082,3286,3287,3412,3730,89,181,630], +[1,2343,26595], +[0,26592,6230,26598,2537], +" manipulation", +[2,1871,26596], +[0,30246,4963,4967,6082,3286,3287,89,7193,181,630], +[1,2343,26600], +[0,0,6230,26601,2537], +[0,4963,4967,6082,3286,3287,89,30256,24843,30251,181,630], +[1,2343,26607], +[3,7678,9], +[2,4501,6996], +[2,12612,26604], +[2,26603,26605], +[0,26613,26615,26618,2537], +"lavalink client", +"audi", +"o streaming", +[2,26609,26610], +"music", +[0,3135], +"music bot", +[0,48,53,5241,87,92,19344,10879,30263,5601,4873,4874,1009,1011,1177,1895,1938,1942,1953,30266,13668,3401,4039,91,1984], +"emoji-datasource", +"voice chat", +[0,30270,3541,1651,2899,1984,1192,2765,3283,28360,30271,2793,1973,11937,16237,5472,30272], +" integration", +[2,1721,26619], +" performance", +[2,6732,26621], +[1,2343,26625], +"easy-to-use", +[0,26634,26635,26637,2487], +"feature-rich", +"seamless", +[2,26627,26619], +"communi", +"ty support", +[2,26629,26630], +"open-source", +"lavalink", +[0,30288,30293,30295,26557,32842,30297], +[0,30303,6494,4874,30306,30305,30310,2026,4039,1531,91,1984], +[3,66,19], +[0,30297,2026,5995,1851,5592,13527,91,5284,2663], +[1,2343,26639], +[0,0,26640,26641,2443], +[0,3377,26230,4255,1973,30351], +[0,5131,28125,4354,1388], +[1,2343,26643], +[0,26645,26646,26649,2523], +"convex-helpers", +[0,12449,4549,12396,2586,21016,32568,4233,12447,32567], +[0,1414,1177,3958,1894,3541,3985,91,4874,15632,32484,27706,27711,30411], +"intermediate", +"recursively", +[0,1745,9102,25131,1932,3958,32462,3984,4549], +[1,2343,26652], +"theme-generator", +[0,26653,26654,26655,2523], +[0,30416,30425,30431,30434,30438,30439,30441,30445,30447,30449,30450,30452], +[0,48,4487,91], +[0,30455,5133,30960,1851,5284,27838,18969,30456,5131], +[1,2343,26659], +"dingbat-to-unicode", +"lop", +[0,26665,0,26199,2443], +"-licenses", +[2,22190,26660], +[2,13888,26661], +"duck", +"hamjest", +[0,25766,30802,1461,30809,2731,3744,3776,89,3824,3847,4649], +"office", +[1,2343,26668], +[0,26669,0,26199,2399], +[0,89,3824,3744,25766], +[3,36878,12], +"ternal-editor", +[1,2343,26673], +[0,26686,0,26687,4139], +"@nestjs/", +[2,26674,10896], +"@nestjs/co", +[2,26676,686], +[2,26676,23], +[3,31,9], +[2,26679,2026], +[2,26674,26680], +[3,9687,9], +"wagger", +[2,26682,26683], +[2,26674,4521], +[0,4484,2735,547,2858], +[0,2733,5130,1098,5131,1896,8674,8675,1591,8677,8678], +"@nestjs/cli", +"@nestjs/t", +[2,26689,8615], +[1,5293,26692], +[0,8391,26700], +"asherize", +[2,6491,26693], +[3,12284,16], +[2,26695,2528], +"llaboration-core", +"limiter", +"embla-carousel-reactive-utils", +1733616000000, +[1,5293,26722], +[2,19183,26714,3181], +"eigen", +[3,578,11], +"de-highlight", +[2,26704,26705], +"@tabler/icons-react", +[3,3672,15], +"mantine", +[2,26708,26709], +"imple-vars", +[2,3677,26711], +"swr", +[3,25141,13], +"context-menu", +"peowly", +"context menu", +"server ", +[2,26718,4963], +[2,7519,26719], +"user ", +[0,8391,26723], +1733961600000, +[1,5293,26728], +"experience", +[2,26721,26725], +"usability", +[0,8391,26729], +1734220800000, +[1,2343,26731], +[0,0,26732,26734,2537], +[0,4172,2278,34683,4484,1177,4039,4042,4086,4072,3363,3561,2151,1894,1367,1610,4320,91,6375,3400,3566,30616,1165,1540,6376,3019,34673,1907,30617,1938,1982,30620,10817,1011,15290,6392,1009], +"axe-playwright", +[0,1623,2278,6398,20897,1283,699,5130,30622,27837], +[1,2343,26736], +[0,26737,26738,26742,2537], +[0,97,30628,30666], +[0,48,53,61,71,13052,83,85,87,94,4856,6503,4874,1178,1195,1208,1290,30691,30696,1389,1429,1431,31602,1610,1177,2026,10621,2832,2899,3421,705,4039,4218,4409,91,2282,4650,2924,4677], +[2,11932,26740], +"umd-wrapper", +"mapbox", +[0,6599,5131,5592,29744,30730], +"mapbox-gl", +[2,4609,4056], +[1,2343,26748], +"mapboxgl", +"legend", +[0,0,26749,26750,2443], +[0,1414,1429,1540,1596,668,1177,2832,3010,2899,2278], +[0,5284,5131,12295,12296,7179], +[1,2343,26752], +[0,26753,26756,26757,2487], +[0,3775,1473,1673,30778,1209,1461,30779,3376,30774,30772,30776,15616,3911,30770], +" processing", +[2,2585,26754], +[0,11336,89,3824,4880,4870,97,4883,30783,972,968,974,20562,4808], +[0,89,12248,5128,30731,30785,30786,4627,4963,181,5130,4967,5131], +[1,2343,26759], +[0,26760,26765,26199,2537], +[0,25766,30802,30803,30405,30458,1461,2731,3744,3776,89,3824,4649,30809], +"linkify-it", +"mdurl", +"punycode.js", +"uc.micro", +[0,30819,30820,30822], +"footnote", +[2,3108,26766], +[3,26767,14], +"r-inline", +[2,26768,26769], +"ins", +[2,3108,26771], +"ark", +[2,7613,26773], +[3,7617,14], +[2,26775,22164], +"ndoc", +[1,2343,26781], +[3,5956,14], +[2,26779,13218], +[0,0,26782,26783,2537], +[0,6066,1894,4042,4045,12611,4048], +[0,4967,9006,29633], +"@nx/docker", +[1,2343,26787], +"anchor", +[0,26788,26789,26790,2537], +[0,16115], +[0,972,4880,4883,1628,2144,2675,89,3824,3895,4307,4469,21180,4484,91,2924,6482], +[0,1631,30845,30847,30848,4627,6398,5131,4453,1631,5399,30858,32040], +[1,2343,26792], +[0,26793,26794,26795,2399], +[0,10780,1437,1525,2020,2151,3714,3742,4135,4548,4707,4726,4739,4753], +[0,30868,16480,1414,2070,2203,14775,30889,2658], +[0,30829,31731,30870,5131,12295,30871,12296], +"emojies", +[1,2343,26798], +[0,26801,0,26802,2537], +"emoticon", +"emoticons", +[0,3533,30018,28941,29602], +[0,29699,2942,6807,1179,1745,29703,29753], +[1,2343,26810], +[2,26807,26809], +"from-to", +[2,4279,26805], +"lodash.u", +"pdf-text", +"pperfirst", +[0,26811,26812,26813,34352], +[0,31834,31846,29951,66,29890,5582,635,29057,1091,1525,18145,30089,31002,13812,2822,26014,3079,3181,3310,30095,4025,6477,4135,4183,4474,91], +[0,1177,1939,1959,1969,2151,1192,2829,3123,4039,30269], +[0,5593,1745,1179,1783,5061], +[1,2343,26816], +"rows", +[0,26817,26818,26819,2523], +[0,7614,19976,3445,1371,1437,2020,2975,3478,4484,1209,4135,1593,3742,2924,1457,2151,4447,1525,2641,1483,1710,1869,3884,13834,4689,30459,4562,30876,3885,30878,32359,30882,9329,4681,30890,2651,30895,30896,4676,30899,30900,30902], +[0,36864,18055,4883,8286,30913,3904,33768,29125,30915,30919,4985,38298], +[0,89,12478,2924,1745,18061,18063,467], +[1,2343,26821], +[0,26822,26823,26824,2443], +[0,4484,2735,547], +[0,3377,1192,89,1177,4039,4042,4468,2151,1894,3824,91,5087,4874,4880,4883,8656,8660,972,2780,10817,968,1011,20562,1009], +[0,2733,5130,89,5131,1896,24364,8674,1591,8677,8678], +"microtime", +[1,2343,26828], +"theredoc", +[0,0,26829,26830,2537], +[0,5087,1009,1011,1593,1596,1637,1177,1192,2774,2794,2832,30935,4042,4468,91], +[0,32814,6422,6805,2013,24800,31767,91,5284,11512,4627,3111,30430,11608,6400,1936,9622,8174,30937], +[1,2343,26832], +[0,26833,0,26834,2537], +[0,1497,9272,9273,3744,97,6372,444], +[0,89,5128,9267,30943,6653], +[2,13090,4226], +"lazy-cache", +"list-item", +[3,19516,13], +"mixin-deep", +"repeat-string", +[1,2343,26848], +"glossary", +[2,4001,1932], +" of contents", +[2,176,26844], +"of-contents", +[2,16065,26846], +[0,26850,0,26851,2487], +"node-bundle-require", +[0,9273,3744,97], +[0,89,5128,9267,699], +[2,28001,28034,16111], +[1,2343,26856], +[2,24559,18089], +"gemoji", +[0,26857,0,26858,4139], +[0,1497,3847,9272,3744,97,5090], +[0,89,5128,9267,594], +"CommonMark", +[1,2343,26861], +[0,26862,0,26863,2523], +[0,30963,30964,1699,3547], +[0,91,4521,678,12659,4030,7096,5592,30967,30968,5995,30969], +[1,2343,26867], +"jsonpointer", +"run-con", +[0,26871,0,26863,2523], +[3,11026,13], +"uilder", +[2,10829,2202], +[0,30978], +"babel-re", +"@markedjs/eslint-config", +"@markedjs/", +"testutils", +[2,26874,26875], +"marked-", +[2,26877,5342], +[1,2343,26884], +"marked-man", +"recheck", +"@egjs/component", +"@egjs/list-differ", +[0,26886,26887,26888,2537], +"markup", +[0,1091,4135,2105,30986,30987,31339,20786,2745,27168], +[0,16499,1983,1984,1597,2071,91,36864,3401,19232], +[0,30990,30991,20998,5194,5130,2323,5284,1936,6082,1783,6710,30993,38087,8674,12479,5347,5348,30997,30998,30999], +[1,2343,26890], +[0,0,26891,26892,2523], +[0,1759,20463,1763], +[0,89,3286,23803,1759], +[1,2343,26894], +[0,26896,26897,26898,2537], +"v8-argv", +[0,31705,4227,31044,4121,2626,6473], +[0,4757,1192,3144,1177,3266,1701,2924,2151,2182,1894,1610,3758,4507,2794,91,53,5087,4874,1615,4677,1195,29283,3401,3878,4891,4864,21122,8818,31054,4681,31055,33002,31057,2784,4409,1895,1955,2780,4684,5241], +[0,89,5284,2924,26375,11498,31062,3000,2998,6109,6609,2999], +[1,2343,26903], +[3,2718,14], +"refixer", +[2,26900,26901], +[0,0,26904,26911,2443], +[0,34264,2222,31069], +"vent-listener", +[2,11352,26905], +"typed-event-target", +"simple-assign", +"@onesy", +[3,1441,29,6], +[0,31076,2220,2844,553,91,9381,5130,1932], +[1,2343,26913], +[0,26918,26919,26923,2523], +"react-medium-image-zoom", +"complex.js", +"latex", +"escape-latex", +[0,3467,6482,1983,31090,1371,1437,2020,1759,1209,3539,4135,1458,3363,3471,2924,1457,2151,2720,1894,1525,1587,1483,1628,91,3921,31091,31093,1393,13223,1540,4025,4307,31094,31095,31096,31097,9322,3878,31098,31099,31101,8161,29182,31105,10936,31106,31109,31110,31111,2651,31114,4679,4684,31117,12361,3177,4676,31120,31123,31125,4992,31127,2135,24723], +[0,1192,89,2190,3824,5087,4874,4870,31131,4864,31134,31138,4985], +"-natural-sort", +[2,5284,26920], +[2,17414,3046], +[0,31140,6354,31141,17944,31146,31153,27837,5592,1303,5130,27,1781,2934,31154,33359,3424,28438,3469,4030,7096,1965,31155,12479,5284,29727,31047,31048,31045,31042,31156,31171,5995,18063,31175,2968,31176,89,6071], +"jsep", +"ndarray", +"-determinant", +[2,26925,26926], +[1,2343,26937], +[2,28402,28403], +"ndarray-gemm", +"ops", +"ndarray-ops", +"ndarray-pack", +"numeric", +"numericjs", +"pad-", +[0,26939,26942,26943,2537], +"l-time-collaboration", +[0,53,4982,1420,1595,31187], +"sylvester", +"zeros", +[0,4361], +[0,11525,8221,89,364,5592], +"mathematics", +"algebra", +"complex", +"fraction", +[1,2343,26949], +[0,26950,26951,26952,2537], +[0,104,18089], +[0,31206], +[0,1936,2587,1172,23267,36587,23266], +[1,2343,26954], +[0,0,0,26955,2537], +[0,11961,10339,10340,5122,5995,1594], +"charenc", +[1,2343,26958], +[0,26959,26960,7537,2523], +[0,1673,1511,31225], +[0,2675,1984,91,4874,975,11976,192,11978,7677,5467], +[1,2343,26962], +[0,26964,0,26966,2523], +"md5sum", +[0,1004], +"checksum", +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31239], +[1,2343,26968], +[0,26964,0,26997,34352], +[2,27022,27023], +"d-character-reference", +[2,5877,26970], +[2,15103,26971], +[3,17995,15], +"decode-n", +"-char", +"-reference", +[2,6842,26976], +[2,26975,26977], +[2,10129,26978], +[2,26974,26979], +[2,26973,26980], +[3,26981,22], +[2,26982,1871], +[2,3370,16906], +[2,26973,26984], +[2,26973,5511], +[2,26973,553], +[3,4292,10], +[2,26988,8193], +[2,9406,26989], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31260], +[2,20627,6660], +[2,17991,6147], +[1,2343,26996], +[3,3137,10], +[0,27025,0,27026,34352], +[0,6400,4967,12042,12045,12047,1424,12048,12049,12050,12044,12056,12058,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,31268], +[1,2343,26999], +[0,26964,0,27001,2537], +[3,26986,16], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31276], +"anitize-uri", +[2,27000,27002], +[1,2343,27007], +"lines", +"trim-lines", +[0,26964,0,27001,2523], +[2,3138,3987], +[3,12133,20], +[2,27009,3987], +[1,2343,27012], +[0,26964,0,27001,2443], +[1,2343,27014], +[0,27015,27019,27020,2487], +[0,7709,33828,31294,31296,28384,1364,1532,1553,1560,1575,1594,29013,1874,2026,31300,31303,2040,33596,13870,2212,31305,2593,2738,11993,2863,1209,3173,3220,3222,3237,3242,3345,3478,12286,17009,4143,4351,31306,1155,25370,4729], +[2,27577,3432], +"mdn", +"mozilla", +[0,7806,38176,9227,5601,7808,10406,8264,4870,38179,24156,4874,16936,4891,9241,2020,2659,3297,4342,91,1984], +[0,12322,3730,30045,31310,31311,6949,21611,31312,5403,5995,4699,2026,20863], +[1,2343,27024], +[3,10848,19], +[3,2791,11], +[0,27037,0,27034,34352], +[0,188,4452,1593,668,2822,2924,1457,3084,1628,3560,4027,4634,4639,13152,53,1615,2092,1165,1195,37215,31325,4689,36119,3618,31331,31332,4681,1584,3676,31333,31334,4645,31343,3177,31347,31348,1549,31351,31353,3463,21287], +[0,1745,1179,188], +[1,2343,27028], +[0,27029,0,27030,2487], +[0,3725,3105,18587,3114,3107,31343,13122], +[0,1745,1179,1783,188,19469], +[1,2343,27032], +[0,27033,0,27034,2523], +[0,31332,3008,3084], +[0,1745,1179,188,19469], +[1,2343,27036], +[0,27040,0,27034,34352], +[0,31331,3029], +[1,2343,27039], +[0,27075,27077,27064,34352], +[0,31331,1615], +[1,2343,27042], +[0,27043,0,27034,4139], +[0,3412,31331], +[1,2343,27045], +[0,27046,0,27034,2523], +[0,31331,31343], +"@blazediff/core", +[1,2343,27049], +[0,27050,0,27034,2537], +[0,31331], +[1,2343,27052], +[0,27053,27054,27034,2523], +[0,1437,1869,2151,2205,2226,2570,4135,4452,10761], +[0,31414], +[1,2343,27057], +[3,26482,36], +[0,27058,0,27034,2537], +[0,1209,4333,13092,4334,31331,21288,31348,31375,31425,31314], +[1,2343,27060], +[0,27061,27063,27064,2537], +[0,31434,31435,31438,31442,31444], +"server-only", +[0,1429,2899,4474,2924,48,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,31455,31456,92], +[0,31459,31460,9439,31461,5131,11194,4653,1616,31462,31463], +[1,2343,27067], +"@types/title", +[0,27068,27070,27064,4139], +[0,31435,31469,31470], +[2,27074,29387], +[0,1429,2899,4474,2924,48,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,31456,92], +[1,2343,27072], +[0,0,0,2514,34352], +"hashring", +[3,30708,19], +[0,3698,11194,1582,31477,31480], +"jackpot", +[0,1429,2899,1177,1593,4474,2924,4469,48,1628,91,53,13693,4856,5087,4874,3165,3400,4677,6503,4880,4307,31484,5000,85,94,87,1954,1959,1938,1958,1895,1903,1955,1970,92], +"InnoDB memcached API", +[1,2343,27082], +"failover", +"hashing", +[0,27086,27087,27064,2443], +"membase", +"memcache", +"nMemcached", +[0,31465,31477,31480,31489,31490,31492], +[0,1429,4653,2899,1177,9420,1593,4474,2924,1894,48,91,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,1954,1959,1938,1958,31496,1895,1903,1955,1970,92], +[1,2343,27089], +[0,27095,27070,27064,2443], +"@json", +"joy.com/json-pack", +[2,27090,27091], +[3,27092,13], +[2,27093,614], +[0,4729,31435,31469], +"tree-dump", +[1,2343,27102], +[3,7746,11], +[2,8184,3358], +[3,4490,14], +[2,27100,10896], +[0,27104,0,27116,2487], +"fs.js", +[0,1497,31515], +"in-memory", +"fsa", +" access", +[2,6771,27107], +" file system", +[2,970,27109], +"webfs", +"crudfs", +"opfs", +"casfs", +"content ", +[0,31517,31518,5131,12344], +"able storage", +[2,15427,27117], +[2,27115,27118], +"pvu", +[1,2343,27123], +[2,7467,11017], +[0,0,0,7983,2537], +[2,24399,4162], +[2,2068,7906], +"mem", +"nanocolors", +[1,2343,27129], +[0,0,0,27131,2523], +"memoization", +[0,1098,5130,1388,17050,5472,12899], +[1,2343,27133], +[0,9756,27137,27139,2537], +[2,27135,1276], +[3,5536,15], +"gulp-exit", +[0,1166,1437,1596,3421,4255,4257], +"ram", +[0,1111,14903,200,30248,2966], +[1,2343,27141], +[0,17263,27142,27143,2523], +[0,23689,7892,10410,4874,20959,28502,1364,28556,2323,31190,2526,2765,31539,31540,2272,3297,4039,4089,31541,4130,4474,4487,31194,91,31195,31186], +[0,1973,5472,11132,13841,28522], +[1,2343,27145], +[0,0,27146,27147,2523], +[0,1173,1178,14318,1264,14237,1272,1177,1881,13936,1895,1935,1938,2126,2675,1192,2990,1894,4039,4535], +[0,31549,31550,31553,31565,9006,3015,31566,15813,10725,30672,5066,15571,89,31567,1098,188,12295,5131,28125,31568,31569], +[1,2343,27149], +[0,27150,27151,27152,4139], +[0,17013,31573,18695,1525,1544,18671,2107,2036,14940,18708,3173,31576,4039,18667,4449,18670,4547,18692], +[0,442,4856,9417,31586,31593,6494,31595,7746,4874,31607,6520,31613,1009,1011,31615,1429,1431,1587,1177,1895,1951,1954,1955,2020,2116,2212,12870,2899,3560,1894,6021,4085,4135,4193,4196,18698,4474,91], +[0,14932,1388,6147,9381,4967,13441], +[1,2343,27154], +[0,27155,27156,27157,2537], +[0,31573,14940,18714,18675,4039,4085,12937], +[0,1429,1431,2899,31627], +[0,9381,6147,4967,1388,14932,13441], +"fast refresh", +[1,2343,27160], +[0,27161,27169,27157,2537], +[0,17013,2036,6474,3173], +"trim-newlines", +[2,1420,21640], +[2,1677,21640], +"_comments", +[2,6865,27165], +[3,9488,13], +[2,27167,2104], +[0,1429,18766,2026,2272,2899,14942,4008,4085], +"-options", +[2,3183,27170], +[1,2343,27175], +"cat", +"kitten", +[0,27176,27177,27178,2537], +[0,2674], +[0,2292,2272,2899,4170], +[0,13428,1388,14336,12197,5472], +[1,2343,27180], +[0,0,27181,27182,2537], +[0,1173,1175,31653,1264,1429,2899], +[0,1420,15321,1623,965], +[1,2343,27186], +"from2", +"is-standalone-pwa", +[0,0,27187,27188,2537], +[0,19325,31265,1414,1537,1894,3985,3998,4039,4389,4505,91,1906], +[0,1936,18944,18089,6843,11043,1213,31661], +[2,3028,5056], +"stat-mode", +"ware", +[1,2343,27197], +"drafts", +[2,10722,27193], +"dir-equal", +[2,15340,27195], +[0,0,27187,27198,2523], +[0,1936,31670,18944,18089,6843,11043,1213,31661], +[1,2343,27200], +[0,0,27187,27201,2537], +[0,1936,18944,18089,6843,11043,1213], +"7zip-bin", +"node-7z", +"er-helper", +[2,18536,27204], +[2,3306,27205], +[1,2343,27208], +[0,0,27209,27210,2537], +[0,19325,31265,1414,1537,2577,2584,1894,3971,3985,3998,4039,4389,4505,91,4549,1906], +[0,1936,18944,26934,6843,11043,31661,31676,1213], +[1,2343,27212], +[0,27213,22487,27214,2537], +[0,31701], +[0,1473,7208,6616,1623], +[1,2343,27216], +[0,0,23215,27217,2523], +[0,965,1936,14186,34254,11590,1644,1646], +[1,2343,27219], +[0,27220,16487,27222,2537], +[0,2053,31724,20273], +"@surma/rollup-plugin-off-main-thread", +[0,1739,1745,8623,1179,1783,5354,26096], +"asyncro", +[3,1225,32], +[2,27224,6567], +[3,13998,31], +[2,7256,591], +[2,27226,27227], +[1,2343,27236], +"throw-", +[2,27230,27227], +[2,69,27231], +"directory-", +[2,27233,1633], +[3,16482,15], +[0,0,27240,27241,2523], +"evelopit", +[2,27235,27237], +"merge-d", +[0,2899,1429,2759], +[0,1623,6413,3766,31991,5131,1644,3529], +"river-install", +[2,27239,27242], +[2,3382,27243], +[1,2343,27247], +[2,14585,6082], +[0,0,27248,27249,2487], +[0,1596,2759], +[0,1871,3656,16906,1623,25232,6422], +[1,2343,27253], +[2,9280,20627], +[2,17991,27251], +[0,27254,27268,27269,2537], +[0,1634], +"factory-space", +[2,17991,27255], +[3,17995,17], +"unked", +[2,27257,27258], +[3,17995,16], +"ombine-extensions", +[2,27260,27261], +[2,26973,10368], +"resolve-all", +[2,26973,27264], +"ubtokenize", +[2,27000,27266], +[0,1414,668,1177,2899,4042,4228], +[0,1623,15215,2632,3178,16918,16919,31748], +[1,2343,27271], +[0,27272,27273,27274,2537], +[0,1147], +[0,1177,1895,1955,1894,4384], +[0,5675,57,7119,200,1523,7058,16159,31759], +"fill-range", +"@ember-tooling/blueprint-model", +"bracket", +[2,24559,1227], +[1,2343,27283], +"expansion", +"extglobs", +"lookahead", +[0,27284,0,27286,4139], +[0,1122,1125,31764,1129,1532,2220,2222,2817,18023], +"lookaround", +[0,31775,5995,2195,31776], +"lookbehind", +[1,2343,27290], +"negate", +[0,27294,0,27295,2537], +"negation", +[2,7623,22245], +"posix", +[0,2817,3502,18023], +[0,31775,5995,13531,20999], +[1,2343,27297], +[0,27300,0,27305,2537], +[3,7746,12], +[2,27298,1747], +[0,1532,2817,3181,3502,18023,31802], +"mime-score", +"runmd", +[2,4865,27304], +"rex", +[0,31775,5995,17977], +[1,2343,27307], +[0,27308,0,27309,2537], +[0,31809,2714,2867,3181], +[0,31775,5995,31804,31812], +[1,2343,27311], +[0,27312,0,27313,2523], +[0,1122,1125,31764,1129,1532,2220,2222,2817,3502,18023], +[0,31775,5995,2195], +"Min Heap", +"min heap", +"maxheap", +"min-heap", +"heap", +"Binary Heap", +"binary-heap", +[2,7247,17709], +[2,27318,27321], +[2,27315,27321], +" binary tree", +[2,15773,27324], +"heapify", +[2,13199,2656], +"heap sort", +"@utoo/pack", +"heapify up", +[1,2343,27335], +"heapify down", +"Priority Queue", +"priority", +[0,27342,0,27345,2537], +" queue", +[2,27334,27336], +[3,18020,13], +"-queue", +[2,27334,27339], +"priority q", +[0,1122,1125,31764,1129,2817,3502,18023], +"priorityQ", +[3,27325,15], +[0,31775,5995,17978], +"extract min", +"min ", +[2,27347,27337], +" priority", +[2,7287,27349], +[1,2343,27361], +"ing property", +[2,4327,27352], +" resizing", +[2,14000,27354], +"priority-", +[2,27356,20332], +[2,27357,26754], +[2,11512,27349], +[2,3768,27349], +[0,0,0,27362,2537], +[0,31775,5995], +"decrease key", +[1,2343,27367], +"increase key", +"searching", +[0,27368,0,27362,2399], +[0,3502], +[1,2343,27370], +[0,0,27371,27372,34352], +[0,5087,4874,1596,2070,1192,2822,31851,4468,4487,4490,31194,91], +[0,36720,7119,57,22856,5131,31568,7310,28125,888,8549,1388,18691], +[1,2343,27374], +[0,27375,27376,27381,2487], +[0,3127,3725,31872,31873,31869,8959,6330], +[0,1192,1170,2675,2968,1177,3188,4039,4042,4333,1637,1457,32826,1894,11401,1610,1193,53,1532,2990,2997,3400,1387,13834,8648,87,1939,31897,31901,4048,68,1938,4077,4069,1895,1955,4055,31899,1567,4067], +"@putout/minify", +"b64-images", +[2,1625,27378], +"readjson", +[0,2295,1739,1745,31903,1179], +[1,2343,27383], +[0,27384,27389,27396,2399], +[0,3445,1437,4747,1544,31910,17964,1836,2151,2182,3084,31915,3000,4151,4562,21847,31911,1549], +"try-catch", +"@arktype/attest", +"bench-node", +"try-to-catch", +[0,1166,1594,2020,2675,1177,4039,4042,2990,31917,4257,19286,31919], +"escover", +[3,19709,16], +"tout", +[2,27391,27392], +"madrun", +"supertape", +[0,17964,2295,1739,1745,31903,1179,200], +[1,2343,27398], +[0,27399,0,27400,2523], +[0,31939], +[0,965,31838,2814,5131,35059], +"brace", +[1,2343,27405], +"-expansion", +[2,27401,27403], +[0,27409,27410,27411,2537], +[2,25824,27403], +[2,4853,27406], +"zstandard", +[0,37135,1209,3847], +[0,48,53,87,90,1193,1503,1843,1845,1177,1895,1903,31952,1938,1954,1958,1959,1970,1192,1894,31953,3744,3775,89,3824,3904], +[0,1843,1192,8745,21009,3717,1448,6270,5472,2275,1973], +"jest-fixed-jsdom", +[1,2343,27414], +[0,27415,0,27416,2523], +[0,1086,31969,1362,31970,4484,4734], +[0,12666,1149,31972,31973,31974,31975,20672,31976,31977,7682,2090,158,3097,6774,5131,31978,31979,1644,1862,3972,31980,2056], +[1,2343,27419], +[2,27423,13083], +[0,0,8134,27420,34352], +[0,1867,23615,1936,18944,18089,31998,2574,20215,6435,1283,23584,6692,22982,4741,32000,32002], +[3,927,11], +[1,2343,27429], +[3,1915,14], +[2,27426,15001], +"signed", +"@prettier/", +[2,19569,27530], +"certificate", +[0,27430,27431,27432,2523], +[0,1448,32006,1869,1291,1180,1287,2151,32007,3127,3183,37708], +[0,1173,1208,1240,1280,1503,32009,1177,2899,3421], +[0,1776,5592,1746,1745,6789,32011,6746,32013,7221,32015,7011,32016,6615,32018,7194,32019,32027], +"fast-archy", +[1,2343,27435], +[0,0,9839,27436,2537], +[0,1177,6741,6939,1932,9711,5547,3624,2295,1745], +[1,2343,27439], +"ufo", +[0,0,27446,27452,2537], +[3,28920,12], +"dom-selector", +"jest-stencil-runner", +"fast-color", +[2,2023,9463], +[2,21195,27444], +[0,2212,4257,4389], +"mobservable", +"reactive", +"frp", +[3,19780,13], +"active", +[0,1745,3966,32037,27018,32038,30248,202], +[1,2343,27460], +"-programming", +[2,27451,27454], +[2,27450,27455], +[3,17943,11], +[2,6649,27457], +"data flow", +[0,15821,27461,27462,2537], +[0,4874,1414,1894,3985,3998,4481,4505,91,1906], +[0,23266,2587,23267,614,6435,1936,2741,11512], +[3,517,14], +[2,3191,1422], +[3,31504,15], +[1,2343,27469], +[2,13163,10101], +"expose-gc", +[0,15821,27461,27473,2487], +"-detector", +[3,20575,13], +"thingies", +[0,23266,2587,23267,614,6435,1936,1623,3585,1644], +"browser-st", +"dout", +[2,27474,27475], +"yargs-", +"@types/depd", +"rser", +"unparser", +[2,27477,27480], +"@11ty/posthtml-urls", +"inclu", +"-language", +[2,8785,27484], +[2,27483,27485], +[2,5340,27486], +"@moch", +"a/docdash", +[2,27488,27489], +"fail-", +"on-e", +[2,10372,4408], +[2,27492,27493], +[2,27491,27494], +"s-utils", +[2,13587,27496], +"inline-links", +[2,3986,27498], +"rewiremock", +"unexpected", +[2,668,27511], +"-eventemitter", +[2,27501,27503], +[3,27504,11], +[2,27505,3053], +[2,27505,3065], +[3,27507,12], +[2,27508,2917], +"uslug", +[3,1208,16,5], +"@11ty/recursive-copy", +"node-retrieve-globals", +[2,9374,27515], +"match-helper", +[1,2343,27522], +[2,5329,11807], +[2,5340,23767], +[2,9309,27520], +"node-loader", +"@zachleat/noop", +[0,27523,27524,27527,2537], +[0,12396,23288,23289,3746,4233,23257,23258], +[0,7729,4874,1414,2854,3493,1894,3985,3998,4505,91,1906], +"test-console", +"xmllint", +[0,23266,2587,23267,614,6435,1936,3493,6892,1633], +[1,2343,27529], +[0,15821,23215,27535,2523], +"-exports", +[2,151,27533], +"lcov", +"moji", +[2,9477,7204], +[0,23266,2587,23267,614,6435,1936,6941,11512,32101,32122,3661], +[1,2343,27538], +[2,120,28708], +[0,27539,27540,27541,4139], +[0,24566], +[0,1999,3165,1894,4387,4389], +[0,6892,1936,1644,1646], +"define-", +[2,14678,3205], +[2,27542,27543], +[1,2343,27548], +"-descriptors", +[2,9395,27546], +[0,0,27560,27561,2523], +"-val", +"ue-fixtures", +[2,27549,27550], +[2,5600,27551], +[3,7810,10], +"-each", +[2,27553,27554], +"s-have-names", +[2,23238,27556], +[3,18432,11], +[2,27558,7083], +[0,4874,1414,23276,2577,2584,3310,1894,3985,3998,4505,91,1906], +[0,1936,23670,10381,1213,11512,32143,12616,7102], +"@types/gopd", +[3,6497,11], +[2,27563,19065], +[3,4637,11], +[2,27565,20102], +[2,27563,27566], +[2,27563,2568], +[3,18491,11], +[2,27569,18985], +[2,13201,4552], +[3,26581,12], +[2,27572,19072], +[3,27573,13], +[2,27574,19077], +[2,27572,15058], +[3,8860,14], +[2,27577,3430], +[3,8860,13], +[2,27579,3022], +[1,2343,27582], +[0,27583,0,27584,2523], +[0,1676], +[0,27,2671,2934,2026,2078,32897,30135,33117,32150,32153,32154,32897,30131,32155,5995], +"@sap/hana-client", +[1,2343,27587], +[0,0,21181,27588,2537], +[0,1623,5260,32164,3561], +[1,2343,27590], +[0,27591,27592,27594,2537], +[0,2711], +[0,24118,24114], +"hrottler", +[0,1172,89,2711,5130,10772,24120,23361], +[1,2343,27596], +[0,27591,27597,27594,2487], +[0,32144,32191,24118,24114], +[1,2343,27599], +[0,0,0,27600,2537], +[0,1172,89,2711,5130,10772,24120,1936,24122,36,965,1388,4042,32199,32200,6802], +"unix-dgram", +"webidl2", +"unittest", +[1,2343,27605], +[0,0,27606,27607,2537], +[0,1700,2323,1637,3561,2494,32214,2482,2549,32215], +[0,1623,6398,6400,5130,5122,32219], +[2,2364,21928], +"-phantomjs", +[2,2463,27609], +[1,2343,27613], +"mockJSON", +[0,27615,27616,27617,2537], +"mockAjax", +[0,3220,4110], +[0,1149,2228,2258,2274,2281,2314,1776,1209,705], +[0,1367,32226,32227,1745,1776,18011,699], +[1,2343,27620], +"faste", +[0,0,27621,27625,2487], +[0,23689,4874,28502,2765,2272,4130,4487,31194,91,31195], +"st-validator", +[2,27619,27622], +[2,5310,2282], +[0,1973,5472,11132,13841,28522,2765], +"@icebob/node-memwatch", +[1,2343,27642], +"@types/bunyan", +"oredis", +[2,8802,27629], +"no", +"@types/pino", +"avsc", +[2,1317,1289], +"cbor-x", +"dd-trace", +"etcd3", +"event-l", +"oop-stats", +[2,27638,27639], +"fakerator", +[0,27653,27661,27663,2523], +"gc-stats", +"jaeger-client", +"kafka-node", +"-repl", +[2,3219,27646], +"msgpack5", +"nats", +"node-n", +"ats-streaming", +[2,27650,27651], +[0,16738,35957,7824,2798,3717,4468], +[2,29351,4255,591], +"notepack.io", +"redlock", +"rhea-promise", +"thrift", +"v8-natives", +[2,4712,13083], +[0,32243,10,13,16,19,21,24,26,30,32,34,53,87,192,22559,19181,442,16738,8755,554,4864,5087,4874,5254,1009,1011,27726,1193,1437,16307,1567,1610,10936,1177,1895,1938,1939,1942,1955,2020,2151,32245,2070,2203,2675,1192,2780,2832,3534,1894,4039,4094,4135,4484,4494,4507,91,4523,4769], +[3,14584,12], +[0,1192,91,1098,5472], +"messagebus", +[1,2343,27667], +"distributed", +[0,27668,27670,27671,2523], +[0,11518,1420,1437,1457,1525,1544,16082,3445,3613,3616,4200,4207,33212,4562,4729], +"ppsm", +[0,53,368,7948,370,554,811,816,32251,842,16145,966,968,972,974,11485,5087,19799,4874,4880,4883,24370,10844,9241,1009,1011,1030,32252,10783,1165,1610,1177,1895,1903,1938,1953,1958,1959,1192,2802,695,3363,3400,3561,37015,32253,1894,89,3824,3847,4039,4042,8849,4057,15277,2278,4315,4383,91,1983,32255], +[0,5472,1192,4967,17758,1676,32264], +[1,2343,27673], +[0,27674,27675,27676,4139], +[0,2757,32269], +[0,32272,32273,2398,2036,2899,5354], +[0,21738,13230,1676,1739,1745,16284,8623,1179,2036,1383,6706,3430,32275,32277,1209,6807,1783,1283,5354,26096], +[1,2343,27682], +"zone", +"timezone", +"olson", +"iana", +[0,27683,27684,27685,2399], +[0,32281], +[0,3088,3310,1187], +[0,3088,32289,4017,36,5995], +[2,5335,553], +[2,1351,27686], +[2,21289,27687], +"-provider", +[2,2138,27689], +[2,23107,27690], +[2,21289,27691], +[2,21289,553], +"worker-", +[2,27694,10057], +[2,21289,27695], +[3,27687,16], +"extdocument", +[2,27697,27698], +[2,4619,27699], +[3,27700,23], +[2,27701,103], +"vscode-uri", +[1,2343,27721], +"cohaszing", +[2,15276,27705], +[3,25072,11], +"monaco", +"@remcohaszing/eslint", +"remcohaszing", +[2,3996,27710], +"yaml-l", +[2,15675,2995], +[2,27712,27713], +[2,27716,27717], +[3,162,22], +"tegrations-common", +[2,8214,27719], +"-pattern", +[2,10853,11597], +[0,27727,27728,27729,4139], +"monads", +"either", +"maybe", +"result", +[2,1101,1177], +[0,26987], +[0,4874,1414,3167,1894,3985,3998,4505,91,1906], +[0,3167,32300,32301,10381,7131,32303,1936,3987,1783,4549], +"-connect", +[2,1304,27730], +"paginator", +[2,10784,27732], +[1,2343,27736], +"free-swig", +[0,0,0,27741,2537], +"gridfs-stream", +"mongodb-", +[2,3764,57], +[2,27738,27739], +[0,3167,614,6435,1936,10368], +[2,17037,15988], +[2,22785,4408], +"@types/rollup", +"istration", +[2,20897,27745], +"GUI", +[1,2343,27753], +"manage-mongo", +"phpmyadmin", +"UI", +"web-based", +[0,0,0,27754,2399], +[0,3167,614,6435,1936,10381,1213], +[1,2343,27756], +[0,0,27763,27766,2537], +"@mon", +"godb-js/saslprep", +[2,27757,27758], +"-string-url", +[2,21404,27760], +[2,27738,27761], +[0,16268,2228,2272,3220,4720,4535,17565,2296,32324,2283,2253,2273,2281], +"socks", +"snappy", +[0,4576,5131,7310,31568,13735,22856,1388,15525,32334,32336], +"mocha-sinon", +"gcp-metadata", +"legacy", +[1,2343,27783], +"erberos", +[2,13053,27771], +[3,7814,10], +"lprep", +[2,27773,27774], +"v8-heapsnapshot", +[3,27759,12], +"zstd", +[2,27777,27778], +[3,15507,14], +[2,27780,1002], +[2,9415,1435], +[0,27794,27808,27809,2537], +"mongodb-c", +[2,20203,7141], +[2,27784,27785], +[3,1982,16], +"@jimp/js-bmp", +"used-imports", +[2,27787,27789], +[3,13547,28], +[2,27791,591], +"@jimp/js-gif", +[0,16868], +"@jimp/js-jpeg", +"@jimp/js-png", +"@jimp/js-tiff", +"kareem", +"mpath", +"mquery", +"sift", +[2,27804,27811], +"acquit", +[3,24788,12], +"acquit-ignore", +"acquit-", +[2,27806,3209], +[0,1192,1177,4468,1894,91,5087,4874,16874,1895,1011,1009], +[0,32345,32346,1623], +[2,3044,5056], +"-blit", +"odm", +[2,27815,27816], +"datastore", +[3,27802,15], +"ur", +[2,27818,27819], +[3,27802,13], +"circle", +[2,27823,27824], +"-callbacks", +[2,1292,27821], +[3,27817,14], +"olor", +[2,27828,27831], +"node-monitor", +[2,21004,14837], +[3,27820,15], +"probe", +"JMX", +"ntain", +[2,27828,10177], +[2,27823,9970], +[2,27818,27836], +[2,9280,3233], +"displace", +"dashboard", +"monitoring", +"control ", +[2,27839,9872], +[2,27842,27843], +[3,27834,15], +"ther", +[2,27818,27860], +[3,6503,9], +"ngodb", +[2,27845,27846], +"-middleware-cast-ids", +[2,3236,27848], +[3,27849,16], +"fields", +[2,27850,27851], +"-callback", +[2,2034,27853], +[2,27850,27854], +[2,27850,14690], +[2,27850,3766], +[2,9251,21404], +[2,27850,27858], +"fisheye", +"gitbook-cli", +"gitbook-", +"plugin-a", +"nker-enable", +[2,27863,27864], +[2,27862,27865], +[3,27866,15], +[2,5317,4147], +[2,27867,27868], +[2,27876,27877], +"edit-link", +[2,27867,27871], +[2,27867,2195], +[2,27867,588], +[2,27850,1676], +[3,27844,14], +"lip", +[2,27818,3428], +[2,27818,10098], +[2,27818,24171], +[2,27818,27882], +"quantize", +[2,27818,24800], +[2,27885,27886], +[3,27883,14], +"otate", +[2,27818,17487], +"@jimp/utils", +[1,2343,27903], +[2,27891,27892], +"@jimp/co", +"nfig-eslint", +[2,24787,27894], +[3,549,17,16], +[2,27896,1984], +[3,27890,13], +"commist", +"node-self", +"help-me", +[2,1983,27901], +[3,19232,22,6], +"mqtt-packet", +[0,27906,23215,27911,2487], +"-allocator", +[2,6988,27904], +[0,9315,34578,31644,26972,32360,32364,32365], +[2,19332,6706], +"wsl-utils", +"monocart-coverage-reports", +"worker-timers", +[0,1644,1936,6843,11043,18944,18089], +"aedes-cli", +[3,5616,9], +[2,27913,202], +[2,11932,27914], +"leak", +"ed-handles", +[2,27916,27917], +"mqtt-", +[2,27919,21404], +"tinyglobby", +"node-style-text", +"level-store", +[2,27919,27923], +[1,2343,27929], +"/subscribe", +[2,20001,27926], +[2,19177,1783], +[0,0,0,27932,2537], +[2,27931,29682], +[3,218,19], +[0,3561,22147,676,134,89,1623,32372], +[2,26343,27934], +"ibus-quod", +[1,2343,27937], +"@tediousjs/connection-string", +[0,27938,21181,27941,2523], +[0,16837], +"msnodesql", +"tds", +[0,1623,5260,3561], +"node-tds", +"qlserver", +[2,3343,27943], +"msnodesqlv8", +"node-m", +[1,2343,27950], +"node-mssql", +"list-dependents-cli", +[0,0,27951,27952,34352], +[0,53,87,32389,10706,32390,1177,2765,2297,2881,2886,2895,2898,2910,2923,29946,3750,3758,4042,4045,6390,4071,4073,25238,824], +[0,22562,3758,3541,13428,32395,32396,5926,5472,11132,3750,28522,824,30271], +"@bundled-es-modules/cookie", +[3,27953,20], +"until-async", +[1,2343,27965], +[3,546,12], +"nfirm", +[2,27957,27958], +"@types/sta", +"tuses", +[2,27960,27961], +"headers-", +[2,27963,6422], +[0,27970,27971,27972,34352], +[2,8140,14643], +"json-bigint", +"page", +"page-with", +[0,1282,2555,3744], +[0,1389,1391,1437,1700,2323,2351,2404,2494,32402,2530,2541,3159,32405,89,3824,4603], +[0,89,5128,4384,32410,4453,6380,2555,5131], +[1,2343,27974], +[0,27975,27976,27977,4139], +[0,32421,688,28208,691,9712,9296,1091,1092,1437,1458,1543,1676,2226,2687,2822,12284,3173,3422,3423,3467,3742,4135,4183,4213,6479,176,36864,28731,4548,13291], +[0,11976,192,5467,9737,32432,29355,27654,811,8850,816,6373,5245,7637,7746,7812,5254,28736,28557,7677,36874,2675,2931,3297,1890,12285,1894,4042,15277,4494,4507,91,1984], +[0,5592,1118,2210,1745,27662,29370,3422,3452,29369,29365,29368,29367,28360,9591,8124], +"append-field", +[1,2343,27980], +[0,0,27985,27987,2443], +"fs-temp", +"testd", +"ata-w3c-json-form", +[2,27982,27983], +[0,5535,972,5087,4880,4883,34722,1009,1011,1597,1701,1177,1895,1955,1959,1961,2193,32447,1192,32448,3165,30935,32449,1894,89,3824,34725,4201,4468,91,32450], +"formdata", +[0,89,31611,5128,20542,4439,32453,1473,6400,13161,30858,3807,7320,31152,6653,32454], +[1,2343,27989], +[0,27990,27991,27993,2537], +[0,11804], +[0,87,90,4880,1843,1845,1192,3775,3904,4042,4045,4055,4067], +"array-union", +[0,4576,5131,7310,31568,13735,22856,1388,32464,32465,15525,11415,7201], +[3,20454,11], +"oxy-addr", +[1,2343,27997], +[0,0,27998,28000,2537], +[0,192,4874,4880,4883,4887,1009,23648,1177,1895,21564,1938,1953,1955,1958,1959,2675,1192,2990,3165,1894,3720,89,3824,3885,3889], +"pend", +[0,89,7433,38,3884,3885,32473,3286], +[3,32265,24], +"@jsumners/line-reporter", +[1,2343,28005], +"vue-drag", +[0,0,28006,28011,2537], +[0,3421,2832,2297,2899,89,3875,4193,1145,1177,1209,3698,4072,9381,1503,1593,3729,2924,1317,3824,32487,91,53,4874,2900,3876,4880,1195,8821,2925,107,2069,4883,87,4884,1959,3904,32488,966,2904,2881,2912,2895,38299,1011,11470], +"test report", +"html ", +"html report", +" to ", +[0,2062,4162,89,3797,32491,1693], +"json to html", +[1,2343,28014], +[0,0,0,28015,2537], +[0,3857,5131,12295,12296,6574,2090,11328,30045,32497,2636,2295], +[1,2343,28017], +[0,0,28018,28019,2537], +[0,97,4880,5091,89,3857,91], +[0,3857,5128,31912,89,5131,12295,12296,181,15571,35060,32504,158,32505], +[1,2343,28021], +[0,26338,28028,28029,2523], +"tory-reporter", +[2,2916,28022], +"mezr", +"web-a", +"nimations-js", +[2,28025,28026], +[0,1178,1177,1879,1895,1938,1947,1955,1959,1894,32510], +[0,3857,5128,31912,89,5131,12295,181,3730,32516,27819,9906,10036,32527,32529,1478,7521], +"bin-packing", +[1,2343,28032], +[0,28037,28041,28053,2537], +[2,20876,28090], +"autolink-", +[2,28001,26766], +"sqlstring", +[0,1654,32535,1655,1660,3744], +[2,27679,2085], +"urun", +"utest", +[0,32538,10821,14689,10828,32540,1178,1193,38304,1668,1177,1903,1938,1954,1958,1959,32541,1970,2675,1192,2990,1894,3720,89,3857,32510,3904], +[2,28050,28065], +[2,28887,28044], +"v2", +"aws-s", +"sl-profiles", +[2,28045,28046], +"generate-", +[2,28048,3046], +[3,29934,12], +"placeholders", +[2,5773,28051], +[0,3857,5128,31912,89,5131,12295,12296,13814,15480,9816,1653], +[1,2343,28055], +[0,28060,28061,28062,2487], +"assert-diff", +"sync-await", +[2,15907,28057], +"poku", +[0,2018], +[0,5079,1177,21166], +[0,3857,5128,31912,89,5133,5131,12295,12296,181,24633,32543,32552], +[1,2343,28064], +[0,28066,28068,28070,4139], +"vitest-pool-workers", +[0,21174,4649], +"thenify", +[0,32558,48,53,5241,85,87,14128,90,365,370,6372,811,816,6373,972,20562,4880,1178,1193,1610,1177,1895,1935,1939,1958,1959,1961,2126,29945,2193,32559,1192,30935,1894,3720,89,3824,32561,3904,4039,4042,4045,4073,91], +[2,31468,31471], +[0,89,32225,30245,4627,5398,8190,8191], +[1,2343,28077], +"bats", +[2,28075,28493,28553], +"switcher", +"@", +"@prisma/dmmf", +[0,28079,28081,28082,4139], +"gable-next", +[0,32571,31528,1461], +[3,29754,14], +[0,30533,5535,966,968,972,32573,4859,4874,4880,4883,1030,16480,1651,2832,23535,89,3824,4201,1531,4484,91,1984], +[0,89,6398,5066,5131,9320], +[1,2343,28086], +[2,28085,3259], +[3,28092,16], +[0,28087,28089,28096,2399], +[0,4484,32597], +"couchdb", +[0,32632,5535,4201,89,3824], +"spanner", +[2,30534,4675], +"@testcontainers/postgresql", +"fastest-", +[2,28093,18729], +"rtl-css-js", +[0,89,590,1623], +[1,2343,28099], +"iconista", +[0,0,28102,28104,2537], +"pnpm10", +"libreact", +[0,1148,2899,3697], +"jsxstyle", +[0,1623,1473,32453,2585], +[1,2343,28106], +[0,28107,0,7573,2523], +[0,32733,1004,32730,32737,32739,32744,32722,32736,32741,32720,32678,32725,32727], +[1,2343,28109], +[0,0,28110,27147,2523], +[0,53,87,92,192,5467,5583,16952,6373,10615,5087,4874,1009,1011,1031,17584,1178,1193,19839,1540,1610,1177,1903,1938,1954,1958,1988,2193,2675,2742,1192,2780,2990,4039,4042,4076,91,4630], +[2,30495,28112], +"lysia", +[1,2343,28114], +[0,0,28124,24467,4139], +"gitcloud", +"hasbin", +[2,34316,3863,34320], +"page-icon", +"premove", +"@types/hasbin", +"@types/pa", +"ge-icon", +[2,28121,28122], +[0,8144,1465,1584,1628,2092,6327,3177,1894,4028,2278,4111,4469,91,4027,2924,4677,4689], +"desktop", +"@vue-macros/common", +[1,2343,28128], +[0,2513,28129,28131,2537], +[0,5535,4201,968,972,32632,2780], +"proxy-lib", +[0,89,1564,32775,32776,32777], +"font-finder", +"pbxproj-dom", +"montag", +"simple-plist", +"ios-device-lib", +[2,21464,1155], +"proper", +"-light", +[1,2343,28146], +"-lockfile", +[2,28138,28141], +"ios-", +"sim-portable", +[2,28143,28144], +[0,28148,28149,28156,2487], +[2,28457,28462], +[0,32782,4484], +[0,5535,4201,32632,32786,1845,89,3824], +"-merge-patch", +[2,2072,28150], +[3,26989,11], +"ackage", +[2,28152,28153], +"@nativescript/doctor", +[0,32788,89,32789], +"-dev-xcode", +[2,3271,28157], +"provi", +[1,2343,28168], +"sion-finder", +[2,28159,28161], +[2,5131,28162], +[2,28143,28163], +"@rigor789/trapezedev-project", +"@rigor789/", +[2,28166,14562], +[0,28169,28170,28171,2523], +[0,1593,97,32796,32795], +[0,695,3709,2924,1628,91,53,2969,4677,1195,4307,32808,4689,87,4359,4681,92,83,1198,5756,61,78,76], +[0,7201,1676,5131], +[2,32904,364], +[1,2343,28174], +[0,0,28181,28185,2399], +"@types/pl", +"ist", +"@types/plist", +"@types/retry", +[3,5364,9], +[2,28179,3924], +[0,4874,9743,4579,1983], +"@types/pacote", +"btab", +[2,8153,28183], +[0,1983,5130,6731], +[1,2343,28188], +"@types/tunnel", +[0,0,28201,28212,2523], +"@types/xml2js", +"@types/ar", +"chiver", +[2,28190,28191], +"@types/qr", +"-image", +[2,28193,28194], +[3,7810,11], +[2,28196,2138], +[3,13418,17], +[3,5090,11], +[2,32904,4412], +[0,1175,1195,1267,1610,1628,2092,3342,8119,4111,32821,4307,188,4634,4639,4640,4645,2924,4681], +"er-lockfile", +[2,28199,28202], +"@types/np", +"mcli__arborist", +[2,28204,28205], +[3,9315,10], +[2,9710,15774], +"al-analytics", +[2,9788,28209], +[2,28207,28210], +[0,9006,29633,32827,32828,32829,32830,32831,4967,32832], +[1,2343,28216], +[2,31819,31823], +[3,27933,13], +[0,28217,0,27026,4139], +[0,1415,1842,31290,31331,4562,31386,6330], +[1,2343,28226], +"afinn-165", +"-fin", +"ancialmarketnews", +[2,28220,28221], +[2,28219,28222], +"apparatus", +"memjs", +[0,0,28227,28250,2523], +[0,48,53,61,78,87,92,5601,32840,5087,4874,15600,1009,1011,1175,1193,1198,1177,1881,1895,1938,1955,1192,11948,1894,4131,91], +"stopwords-iso", +"@libsql/client", +"wordnet-db", +[2,31005,26449,28684], +"browserfs", +[2,2441,20008], +"pegjs", +"uubench", +[2,32904,2942], +" language processing", +[2,3273,28237], +"arti", +"fical intelligence", +[2,28239,28240], +"Porter stemmer", +"Lancaster stemmer", +"bigram", +"trigram", +"quadgram", +"ngram", +"stemmer", +"bayes", +[0,1192,2022,6703,1149,7003,1862,11857,5472,2275], +"classifier", +[1,2343,28254], +"phonetic", +[0,28255,28257,28259,2523], +[0,28502,4130], +"metaphone", +[0,23689,28556,2323,31190,2765,3560,31541,91], +"inflector", +[0,5472,11132,13841,28522,13426], +"Wordnet", +"tf-idf", +"logi", +" regression", +[2,17132,28263], +[2,28262,28264], +[2,4420,28256], +"jaro-winkler distance", +" distance", +[2,26006,28268], +"string ", +[2,28270,26017], +"-of-speech tagger", +[2,3251,28272], +"Eric Brill", +"Brill tagger", +" analysis", +[2,4137,28276], +"maxim", +"um entropy modelling", +[2,28278,28279], +[1,2343,28284], +"@mrleebo/prisma-ast", +[2,31733,21302], +[0,28292,28293,28294,2537], +"secure-keys", +[2,28288,6008], +"nconf-yaml", +"@prisma/c", +"key value store", +[2,18124,13729], +"plugabble", +[0,1086,1437,1700,2070,2714,3183,3760,705,4039,4135,4734], +[0,13194,7740,28197,4865,29105,23689,9129,7892,4874,11304,16936,20959,28502,5254,28189,28556,2323,31190,2765,4089,4130,91], +[0,1098,1973,5472,3750,11132,13841,28522,4130], +[1,2343,28296], +[0,9756,9839,28297,2537], +[0,1871,6843,3656,4289,7062,6922,6981,6701,6581,6700,1111,1867,5281,200,6876,7009,7201,6575,6611,6795,6960,7135], +[1,2343,28299], +[0,7558,28300,28301,2523], +[0,4874,668,32894,2929,32895,91,4579], +[0,32901,23542,5130,23543,6812,27,5592], +[1,2343,28305], +"near social", +"bridge", +[0,28306,0,28307,4139], +[0,2856,32889,2822,5307], +[0,29699,32891,1541,1745,29703,29753], +[1,2343,28311], +[3,18018,14], +[2,28309,1633], +[0,0,28313,28315,2487], +"exec-time", +[0,1429,4856,4874,32903], +"@lit/context", +[0,32910,37123,32911,32912,32913,13428,5472,6533], +[1,2343,28317], +[0,28318,0,26863,2399], +[0,32918,32919,1699,3547], +[1,2343,28320], +[0,6263,0,28321,2523], +[0,89,5128,9267,553], +"@codspeed/", +"payload", +"@fig/complete-commander", +"@golevelup/nestjs-discovery", +"xhr2-cookies", +[2,30999,30499], +[1,2343,28330], +[2,28338,28349,28603], +[0,26964,0,26997,2537], +"@postman/tough-cookie", +[2,15679,19490], +"chardet", +[1,2343,28337], +"liquid-json", +"postma", +[0,26964,0,27001,2487], +"@interna", +"n-collection", +[2,28336,28339], +"-transformer", +[2,28340,28341], +"postman-", +[2,28343,705], +"postman-r", +[2,28345,96], +"d-error", +[2,14628,28347], +"tionaliz", +"@postman/", +[1,2343,28359], +"shipit", +[2,28350,28352], +[2,29833,17978], +"file_lint", +[2,17878,28355], +"parse-git", +[2,28357,2687], +[0,28364,28381,28409,2537], +"postman", +[2,178,28363], +"rest-client", +"rack-changes", +[0,32953,25996], +"@profoundlogic/hogan", +[3,2665,10], +"@grpc/grpc-js", +"@grpc/", +"print-sizes", +"proto-loader", +[2,28368,28370], +"@newrelic/security-agent", +"@tyriar/fibonacci-heap", +"in-the-middle", +[2,2701,28374], +"module-de", +"s-from-path", +[2,4378,28377], +[2,28376,28378], +[2,4013,28374], +[0,13662,1389,35268,4389], +"@aws-sdk/s", +"3-request-presigner", +[2,28382,28383], +"@koa/router", +"@newrelic/", +[2,28386,7625], +"-oss-cli", +[2,3284,28388], +[2,28386,28389], +"test-util", +"ities", +[2,28391,28392], +[2,28386,28393], +"@slack/bolt", +"@smithy/eventstream-codec", +"@smithy/", +"util-utf8", +[2,28397,28398], +"borp", +[2,16306,20353], +[3,4962,10], +"iler-runtime", +"git-r", +"aw-commits", +[2,28404,28405], +"CKEditor", +"self-cert", +[0,7518,5398,17819,18266,32958,12075,32960,4967,1389], +[1,2343,28412], +"debugging", +[0,28414,28424,28430,2537], +"profiling", +[0,32980,32981,32983,32984,32986,1398,1437,1443,1759,1763,2018,2071,37853,2182,2212,2687,2720,17450,2856,32987,32988,9478,3729,4135,4164,4400,91,32990,32993,32989], +"unlimited-timeout", +"WYSIWYG", +"WYSIWYW", +"@panva/hkdf", +"id-client", +[2,3445,28419], +"-to-string", +[2,694,28421], +[2,3698,28422], +[0,188,32996,32997,33004,33007], +"@types/oauth", +[2,4874,3360], +"@next", +"is-in-ssh", +"powershell-utils", +[0,32940,33010,5130], +[1,2343,28437], +[3,13983,14], +[2,28432,89], +"-pragmatic", +[2,13062,28434], +"@edge-runtime/jest-environment", +[0,28447,28448,28449,34352], +"oauth2", +"nextauth", +"seneca-transport", +[2,36883,28443], +"rich-text", +"astify", +"async ", +[2,28444,1852], +[2,28444,5746], +[0,97,33015], +[0,1192,2278,2675,89,1843,1177,2924,1894,1610,3824,48,1628,3988,91,53,2990,3400,4111,4677,4880,1195,4307,33020,33021,9310,28809,10837,87,11011,90,1959,827,33023,1895,1947,1955,2780,92,10821,29872,10840,1011,10825,83,1009,32341,28970], +[0,89,4627,26612,35126,33026,5131,29832,91,33027,33033], +"grammy", +[1,2343,28463], +"qs-esm", +"TestBed", +"how-to", +"@scripts/build", +[2,28573,553], +[3,14691,18], +[2,32700,28478], +[2,12392,1098], +"dataloader", +"bson-objectid", +"nboarding", +[0,28481,28492,2514,2537], +"render-jsx", +"@rolldown/pluginutils", +[2,28472,1973], +"localhost", +"tunneling", +"webhook", +[2,28471,28596], +[3,37983,14], +[3,34476,19], +[2,16639,15112,28475], +"onesy", +"hecker", +[2,16639,28477], +"vitest-runner", +"grab", +[2,28489,28490], +"deep-defaults", +[0,1437,1483,1525,3127,14774,4135,33043], +[2,10740,28487], +"enqueue", +[2,14185,4225], +"minstache", +"sliced", +"table-printer", +[2,3192,5701], +[3,30527,35], +"collisions", +"@rstest/core", +[0,8147,33046,4874,5254,33047], +[2,28508,28526], +"@nightwatch/chai", +[3,28494,12], +[3,2791,13], +[2,28496,2324], +[2,28495,28497], +[2,3294,11496], +[2,28495,28499], +"lenium-webdriver", +[2,5252,28501], +[2,1432,3294], +[2,11097,20500], +"didyoumean", +[3,28499,11], +"@amaui/ui-react", +[3,5069,14], +"axe-verbose", +[2,28506,28509], +[3,17011,11], +[2,28511,57], +[3,31827,17,5], +[2,4925,4381], +[3,28514,12], +[2,11937,16609], +[2,28515,28516], +"@payloadcms/translations", +"wait-on", +[1,2343,28527], +[2,3294,676], +"selenium", +"automat", +"ed-testing", +[2,28523,28524], +"acos", +[0,28528,28529,2514,2537], +[0,35198,4763,1497,1687,33057,4361,1983,1082,1371,1676,9348,12449,977,1636,11480,3958,4135,11501,1458,11478,668,33058,28564,2822,6042,3479,3742,29535,33059,26379,4955,33149,3530,25648,4542,28623,33061,11869,27921,5732,33062,2628,3090,4748,2007,33063,19639,7610,37014,33064,4555,33065,33068,29533,33069,10895,5210,9485,33070,33071,3749,33074,33075], +[0,23813,2278,4042,4548,1984,1448,4549,33080,30138,33082,91,12396,2024,3975,5245,33390,30559,5254,33083,34673,7637,7812,12127,3327,8648,20374,11868,23312,33084,7744,21626,3963,33087,33088], +[1,2343,28536], +[2,28532,28547], +[3,11555,18], +"text-", +[2,28533,9254], +[2,11122,28534], +[0,28538,0,2514,2523], +[3,11138,16], +[0,1506,33093,3460,4535], +"mochify", +[3,4887,19], +"-universal", +[2,3752,28541], +[2,3752,1289], +"@backstage/backend-common", +[1,2343,28546], +[0,28548,28549,28551,2399], +"owellformed", +[0,1512,2151,2720], +[0,1177,1939,1192], +"propagate", +[0,8310,1179,8635,200,28582], +[1,2343,28555], +[3,31893,18,13], +[2,12302,28732], +[0,0,28560,28561,2399], +"clang-format", +[2,23260,28729], +"n-api", +"napi", +[0,811,816,1437,1836,1177,1895,1938,33110,14282,2674,2675,2990,2899,6041,1894,4039,4042,4055,33111,4232,4390,11482], +[0,4989,1283,3358], +[1,2343,28563], +[0,0,28571,2514,4139], +"fontace", +[2,14743,4504], +"ffee", +[2,2251,28566], +"grunt-i", +[2,2426,2499], +[2,28568,28569], +[0,1009,1011,1177,1883,1895,1915,1938,1947,1955,1959,1961,2675,2990,1894,89,91], +"baseline-browser-mapping", +[3,4090,11], +[2,28606,8734], +"host-validation-middleware", +[2,16826,5260], +[2,14614,28576], +"used-de", +"ps-analyzer", +[2,28578,28579], +"@4c/rollout", +"skeleton", +"formate", +[1,2343,28587], +[2,5559,27], +[2,28689,89], +[0,28597,28600,28601,2537], +"dynamic-", +[2,28588,1681], +"filewatcher", +[2,28914,594], +"xunit", +"tap-xunit", +"nextjs-api-reference", +[2,30999,28884], +"l", +[0,33139], +[2,31222,31227,31234], +"subdir", +[0,6503,1699,2899], +[0,5122,1973,8791,33143,2899,5130], +[1,2343,28609], +"ed/date", +"char-regex", +"emojilib", +"@scripts/", +[2,28616,6988], +"skin-tone", +[0,0,28621,28622,2537], +"s-per-line", +[2,16233,28610], +"cspell-config-lib", +"emojis", +"smiley", +"smileys", +[3,28329,19], +"smilies", +"ideogram", +"ideograms", +"@nuxt/fonts", +[0,5535,5087,1009,1011,33175,25917,35358,1473,1177,1895,1955,2070,1192,1894,4042,4073,4076,4201,4443,4468,4474,4484,91], +[0,1473,57,6270,4439,32453,6616,30289,33190,30291,620,33201,31453,1623,33203,6653,33205,33207,3178,33216], +"unstorage", +"fetch-blob", +"ttypescript", +[2,1432,7253], +"nsumers", +[2,25687,28627], +"jsdoc-to-mdx", +[1,2343,28633], +"@nuxt/icon", +"@nuxt/kit", +[0,5914,28661,28662,2487], +"igitalbazaar", +[2,27235,28634], +[2,19946,2903], +"-websocket", +[2,6710,28637], +[2,27694,1194], +[2,28660,32819], +"aes", +"asn", +"asn.1", +"cbc", +"csr", +"des", +"gcm", +"hmac", +"pkcs", +"pki", +"prng", +"rc2", +"rsa", +"sha256", +"sha384", +"sha512", +"tls", +"x.509", +"x509", +[3,218,21], +[0,30533,192,5467,30535,10614,6494,5087,4874,1009,1011,1177,1895,2675,1192,1894,3980,4468,91], +[0,30538,6710,14584,91,30540,30543,5130,29752], +[1,2343,28665], +"seneca-joi", +[0,26964,0,26966,4139], +"c2dm", +"fcm", +[1,2343,28669], +[0,28670,28671,28682,4139], +[0,33071,30616,26407,26411,12396,7637,9363,26414,26415,23276,2577,2584,2588,2681,2822,37507,3090,26418,26568,12429,26421,3958,9393,12443,4542,4549,4555,12449], +[0,8648,4874,7677,34683,26431,1984], +"@nuxt/schema", +"@nuxtjs/color-mode", +"geocoder", +"pulse", +"geocoding", +"geo", +"mapquest", +"agol", +"arcgis", +"tomtom", +[0,1739,1745,34683,26440,26445], +[1,2343,28695], +"libsql", +[2,28694,176], +[3,5781,10], +"l-backoff", +[2,28686,28687], +[3,21276,15], +"require-in", +[2,28690,2429], +"piña", +"pigna", +[3,30585,14], +[0,28696,28697,28662,2537], +[0,2026,3951], +[0,30533,192,5467,1300,30535,10614,6494,5087,4874,1009,1011,1177,1895,2675,1192,1894,3980,4468,91], +"high5", +[2,12075,57], +[1,2343,28705], +"js-parser", +[2,1936,28701], +"-benchmark", +[2,15512,28703], +[0,28730,28750,28758,2537], +"mocha-each", +"neutron-html5parser", +"ookmark", +"colortranslator", +[2,15277,12610], +[2,28712,28725], +[3,10130,17], +"biased-opener", +"data-uri", +[2,25894,28714], +"v8-debug", +"v8-profiler", +[2,28742,28749], +[2,28720,28721], +[3,32265,26], +"ble", +[2,28723,7059], +[3,12133,21], +"vitest-browser-react", +"ber-animation", +"dummy", +[2,23814,28898], +"http mock", +"zipper", +[0,3951,4474], +"toposort", +"quality-insights", +"growly", +"words", +"shellwords", +[2,28738,28741], +"nexe", +"@types/to", +" center", +[2,9044,28739], +"posort", +[3,26699,15], +"mac os x 10.8", +[2,4402,3329], +"windows ", +"8 notification", +[2,28745,28746], +"toaster", +"auto-height", +[0,192,5467,10614,6494,5087,4874,1009,1011,1437,1177,1895,2675,1192,1894,3980,4468,91], +"tabbable", +[2,8180,594], +[2,29518,28757], +"@radix-ui/react-checkbox", +[2,28756,45], +[3,28754,16], +"vfs", +[0,30538,6710,91,30540,30543,5130,29752,5995,6082], +[1,2343,28760], +[0,26964,0,26966,2537], +[2,28762,9006], +[3,28718,20], +[2,3958,28764], +[3,26414,16,5], +[1,2343,28767], +"@internal/test-utils", +[0,26964,0,26997,2443], +"ps-list", +"code-blocks", +"pty", +[2,6426,7009], +"forkpty", +"openpty", +[1,2343,28787], +[2,28776,28777], +"expressi", +"ve-code", +"@node", +[2,9057,3642], +[2,28793,28798], +"-red/util", +[2,28778,28781], +[2,3341,2110], +"@node-red/", +"nodes", +[2,28784,28785], +[0,25316,28788,28796,2537], +[0,603,11018], +[2,216,28812], +[2,28784,7047], +"editor-api", +[2,28784,28791], +[3,28718,19], +"iot", +"fix-dts-default-cjs-exports", +[0,188,4646,1542,32977,28692,28693,32312,5592,18496,5490,91,4799,998,6953], +[2,28826,16860], +"play", +"sass-graph", +[2,1152,14741], +"stdout-st", +[2,28801,2187], +"-case-path", +[2,4938,28803], +[2,28742,28875], +[2,4550,13786], +"@jsopen/objects", +[1,2343,28810], +[2,34443,25240], +[0,28819,28820,5893,2523], +"modern.js", +"alpha-function", +"long-timeout", +"sorted-", +[2,20096,20835], +[2,28814,28815], +[2,30633,30886,31217], +[3,1419,11], +[0,28751,444,28752], +[0,90,28754,28755,968,972,974,4880,4883,1030,1497,89,3824,3882,3885,4023,8187,28724,1541], +"recurrent", +[1,2343,28823], +[0,28824,28825,28828,4139], +[0,28763], +[0,34683,2020,28766], +"unplugin-", +"deepcopy-esm", +[0,26445,28769,1745,28775,9348,28779,26440], +[2,9357,28832], +[2,28831,30581], +[3,12447,17], +"-convert", +[1,2343,28834], +[0,0,0,28835,2523], +[0,30999,28818,5995], +[1,2343,28839], +"fs.watch", +"watchfile", +[0,28840,28841,28848,34352], +[0,28775], +[0,9363,9315,23312,3978,3992,3999,9348,4549,12449,28766], +"stories", +[2,819,664,33355], +"ngn", +"daemon", +" logging", +[2,2013,28846], +[0,28769,1745,28775,9348,28779], +"elevate", +"sudo", +[1,2343,28852], +[0,28864,28867,28870,4139], +"store2", +[2,28855,7625], +[3,28518,12], +"@mgcrea/eslint-config-node", +"-lts", +[2,19439,28857], +"node-ipc", +"excel", +"xls", +"zeptomatch", +"picoquery", +[0,2121,2127,1690,2024,4507], +"rolldown", +"amaui", +[0,28470,2180,5476,5478,1414,2198,91], +" extend", +[2,6970,28868], +[0,2313,1383,614,202,1388,5995,4967,1145,1973,1429,2340,2350], +[1,2343,28886], +[2,13402,2942], +[2,28874,8817], +"@appium/s", +"class-names", +"firefoxos", +"combyne", +"for-publish", +[2,1463,28878], +[2,31228,14372], +"libgit2", +"git2", +[2,28742,26542], +[3,31782,22,5], +"vendors", +[0,0,28888,28889,2523], +[2,9191,3595], +[0,1330,1389,1596,2759,2899,4170,4535], +[0,20215,4741,2574,36796,6847,1965,1867,10368,7131,1155,1936,1623,14419,37953], +"libbase64", +"libmime", +"libqp", +"ntlm-auth", +[2,26444,28893], +[2,13857,9224], +[2,28742,188], +"Nodemailer", +"hun-ky", +[2,32723,28900], +"hex-color", +[2,28902,28905], +[3,28899,21], +"undefsafe", +"pstree.remy", +"sl-color", +[2,32723,28907], +"rgb-color", +"autoload", +[2,31281,4202], +[2,819,45], +[2,28742,28916], +[2,6097,6142], +[2,15701,28915], +[3,693,10], +"vision-history", +"wheel-gestures", +"multimeter", +[1,2343,28975], +[2,30211,30221], +"@asamuzakjp/css-color", +"node-webkit", +"drc", +"lz4", +"potx", +"xltx", +"dotx", +"async-redis", +"ipfilter", +[2,2032,28928], +"express-ws", +"xltm", +"ots", +"json-logic-js", +"json-sql", +[2,7060,1146], +"line-reader", +"mocker", +"-data-", +[2,28938,1179], +[2,28937,28939], +"pino-pretty", +"odg", +"otg", +"promise-mysql", +"stjs", +"otp", +"ott", +"uuid-random", +"docm", +"nolang", +"Programming", +"programm", +"ing language", +[2,28952,28953], +"dotm", +"descriptive", +"5GL", +"potm", +"json schema", +"Mehdi Salartayefeh", +"pptm", +[2,8293,200], +[2,8293,3561], +"knitwork", +[2,28968,28969], +" parser", +[2,5675,28966], +"esbuild-re", +"act-compiler-plugin", +[2,28971,1172], +[3,29874,35], +[2,28973,4298], +[3,5240,29], +"ohash", +[0,28989,0,28990,2523], +"admin-panel", +"absolute", +"backslash", +"delimiter", +"file-path", +"forward", +"slashes", +"trailing", +"unix", +"urix", +"headless-cms", +[2,1917,11597], +[2,819,3877,29320], +[0,28507], +[0,45,29,36246,89,4967,6400,5995,10768,5122,1388,5284,676,91,202,6710,6082,28866,594], +"normaliz", +[2,28991,5218], +"normali", +[2,28993,6079], +[1,2343,28998], +"simplify", +"canonical", +[0,29046,0,29047,34352], +[2,29171,594], +"lit-analyzer", +[2,32700,29003], +"mouse", +"attract", +"mouse wheel", +[2,29006,29007], +[3,26450,35], +"ubble", +[2,32700,1544], +[2,29010,29011], +[3,31198,35], +"ause", +[2,32700,34141], +"escape-goat", +[3,9577,11], +"from-git", +[2,29014,29015], +"teractive", +[2,20043,29017], +[2,28489,29003], +"is-scoped", +[2,29027,29029], +"issue-regex", +"listr-input", +"new-github-release-url", +"npm-name", +"p-memoize", +[3,32722,21], +"map-obj", +"asing-quad", +"write-package", +[2,32731,3924], +[2,29033,4390], +[3,26495,20], +[2,29035,29036], +[3,28909,22], +"troke-color", +"is-cidr", +"ts-lit-plugin", +"libnpmorg", +[2,33533,29041], +"ormatjs", +"libnpmpack", +[3,29818,15], +"libnpmteam", +"MDX", +[0,28872,28873,13411,4507], +[0,13428,5284,28522,11132,12295,12296,28876,5472], +"fs-m", +"reka-ui", +[2,37399,29156], +"fs-minipass", +[1,2343,29064], +"npm-profile", +[2,2977,7193], +"@sigstore/tuf", +[2,2977,15525], +[2,636,1541], +"audit-report", +[2,3382,29058], +"-pipeline", +[2,21505,29060], +[2,4570,2649], +[2,3382,29062], +[0,26871,0,26863,2399], +"relative-date", +[2,11072,29065], +[2,28093,26006], +[1,2343,29074], +[2,636,3358], +[2,636,1739], +"@tufjs/repo-mock", +[3,26037,13], +[2,29072,2203], +[0,29075,0,7573,2537], +[0,1004,31231,32914,28909,31262,31272,28899,28901,28906,31282], +"-draft2019", +[2,1092,29076], +[1,2343,29119], +[2,29080,29081], +[3,23075,14], +"rrect-media-syntax", +[2,29089,29090], +"-record", +[2,17495,29083], +"giturl", +"nfig-loader", +[2,18323,29086], +"semver-diff", +[3,32593,24], +"ort", +[2,29092,29094], +[3,32686,13], +"outdated", +"dx-jsx-attribute-sort", +"updating", +"updater", +[2,29098,29099], +[3,29091,20], +"no-void-children", +[2,29098,29107,29118], +"@trivago/prettier-plugin-sort-imports", +[3,27782,13], +[2,29102,8961], +[2,13197,176], +"@types/ini", +[3,8141,13], +"quote-st", +"helpfulerror", +[2,16476,29108], +[2,29106,29109], +[2,7726,27005], +"@types/npm", +"-registry-", +[2,29113,1612], +[2,29112,29114], +[3,16478,13], +[2,29116,13722], +"yle", +[0,0,0,29163,2537], +[2,2645,89], +[3,6544,14], +[2,29121,594], +"pdate-", +[2,29123,3329], +[2,7817,29124], +[3,1898,15], +"aine", +[2,29126,29127], +"fp-and-or", +[3,9506,11], +[2,117,29153,29494], +[2,29098,29134,29135], +"jsonlines", +"self-clos", +"e", +"prompts-ncu", +"postcss-clean", +[2,25813,594], +[2,4524,2845], +"verdaccio", +[2,8551,4675], +"vite-node", +[2,29145,29146], +"upgrade", +[3,29132,21], +"horthand-attribute", +[2,29098,29148], +"unique-attribute-name", +[2,29092,29150], +"edia-style", +[2,32704,29152], +"idden-table-cell", +[3,6138,9], +[2,7686,4692], +[2,22060,3122], +"variants", +"ypescript-tc", +[2,22060,29157], +[3,17312,29], +[2,29159,12844], +"unplugin", +"auditor", +[0,45,29,36246,89,4967,6400,5995,10768,5122,1388,5284,676,91,202,6710,6082,28474,594], +[1,2343,29167], +[2,28826,29166], +"auto-import", +[0,26964,0,26966,2487], +"variadic-function-arguments", +"mutate-fs", +"@publint/pack", +[3,1014,15], +[1,2343,29173], +[0,29177,0,21958,2537], +"minizlib", +"minipass-", +[2,29175,1612], +[0,4729,2070,31705,4747,4135,1862,1301,1525,2731,4116,1109,1193,31856,3145,4705,31859,3717,3878,1079,31861,28512,31864,24169,3957,31867,2784,31871,31877,31880,31884,31891,21129,31896,28073], +"fast-equals", +"registry", +[1,2343,29199], +"autodocs", +[2,31092,3452], +"@pm2/blessed", +"padend", +[2,18996,29184], +[2,29189,27863,20181], +"ysticatea", +[2,16693,29187], +[3,28544,19], +"commandline", +"npm-scripts", +[2,29193,1541], +[3,28544,11], +[2,29193,11857], +[2,29196,29198], +[3,31303,12], +"neostandard", +"ise-router", +[0,29216,0,7573,2399], +[2,29189,11017], +[2,29202,29203], +[3,29192,12], +"atalog-model", +[2,29202,25240], +[2,29193,13224,29206], +"atalog-common", +[2,29209,202], +[2,28270,6270], +[3,29205,26], +"yarn to npm", +"@daybrush/jsdoc", +"backstage", +"ci/cd", +"immobiliare", +[2,29214,12825], +[0,28880,1004,29031,29032,31244,1418,26495,32926,26483,26489,32934,29021,29034,28458,31198,29012,29009,26450,29005,26482,30527,29001,29008,1445,29019,28479], +[1,2343,29221], +"npm upgrade", +[2,28826,10309], +"vaul-vue", +[0,29223,29225,26824,2523], +"rgv", +[0,4484,29755], +[2,1262,25816], +[0,89,1177,4039,4042,1894,3824,91,4874,4880,3884,4883,3885,28540,8656,8660,4887,10817,1011,1009], +[2,34674,588], +"npm-cli", +[2,29229,29303], +"@hyrious/esbuild", +[1,2343,29232], +"ntainer", +[0,29256,29257,29258,34352], +[2,26109,28923], +[3,28200,13], +[2,29240,29249], +"@cropper/", +"are-", +"we-there-yet", +[2,29237,29238], +[3,10309,13], +"image-cropping", +[2,29243,3642], +"image-view", +"image-processing", +"cropper-element", +"mocha-jsdom", +[3,31831,14], +[3,5926,13], +"-type-helpers", +[2,29254,29255], +"cvss", +"-npm-utils", +[2,19773,29252], +[3,3978,9], +"arry-night", +[0,29186,29192,29194,1364,2026,29195,2664,4709,4757], +[0,29200,29201,29204,29205,29207,6494,9240,3244,4342], +[0,29212,17978,29213,29214,29215,5995], +"@asteasolutions/zod-to-openapi", +"gluegun", +"@trpc/server", +[2,17612,29264], +"nuke", +"custom-alias", +[2,4026,29266], +"tspaths", +"@nuxt/eslint-config", +"event-driven", +"money", +"blaze", +"percentage", +[1,2343,29274], +[2,8293,1983], +[0,26964,0,26997,2523], +[1,2343,29278], +"a-sync-waterfall", +"asap", +[0,0,29286,29287,2537], +[2,3522,364], +[2,3192,29279], +[3,29280,16], +[2,29281,2759], +[2,5223,8861], +"s-browser", +[2,19390,29284], +[0,1148,2899], +[0,26257,1111,1473,7208,1437,1623,32453,6616,29222], +[3,26364,17], +[1,2343,29296], +"@nuxt/module-builder", +[2,18124,2844], +"@4c/tsconfig", +"@react-bootstrap/babel-preset", +[2,29344,7625], +"@nuxt/test-utils", +[0,29298,29302,29329,2399], +"jsonpathly", +[0,7387], +[2,29301,29538], +"css4", +[3,5782,27], +[0,4874,4880,4883,1030,3286,89,3824,1983,26744,1984,11039], +[3,4055,16,6], +[3,26699,14], +"achine-id", +[2,27946,29305], +"parsers", +[2,15904,29307], +"@zkochan/js-yaml", +[2,15904,6698], +[3,17944,18], +"-and-columns", +[2,27005,29312], +"@napi-rs/", +"graphQL", +"wasm-runtime", +[2,29314,29316], +"telejson", +"Mobile", +"nderer", +[2,25806,14029], +"@whatwg-node/promise-helpers", +[2,29326,29332], +[2,20164,22156], +[2,11936,1564], +[3,9250,19], +"processinfo", +[2,11936,29327], +[0,5592,1745,23803,3287,3452,8124], +"node-preload", +"process-", +"nuxt", +"on-spawn", +[2,29331,29333], +"spawn-wrap", +"css library", +[1,2343,29353], +"any-path", +[2,29340,29341], +[3,132,10], +"local-node-rig", +"jsdoc-fresh", +"jsdoc-region-tag", +[3,29293,17], +"nuxt-ui", +"ui-framework", +"undefined-", +[2,29347,15400], +[2,8302,29348], +[2,29383,29384], +"@readme/", +"example", +[0,29363,0,29472,2523], +"oas-examples", +[2,29351,29354], +"@readme/o", +"penapi-parser", +[2,29356,29357], +[2,8818,5940], +"@types/me", +"moizee", +[2,29360,29361], +[0,2817,18023,1532,31802], +" initiative", +[2,3452,29364], +"openapi ", +[2,29366,10658], +[3,29367,12], +[2,29366,1746], +"oai", +"@eslint/css", +"print-coveralls", +"ts-mock-imports", +"egjs-jsdoc-template", +"to-openapi", +[2,28343,29375], +[2,29351,29376], +"@egjs/release-helper", +[3,20227,14], +[2,29379,8125], +[2,5290,29382], +"-plugins", +[3,25931,14], +"quis-saepe-velit", +"@renyii/vue-renderless", +[2,31525,29391], +"andom-function", +[2,30713,29397], +"@teamteanpm2024/aperiam-fugit-error", +"prollyfill", +"ize-observer-browser", +[2,19965,29393], +"-es6-transform", +[2,29418,29475], +"ec", +"gulp-exec", +"ign-functions", +[2,29399,29400], +[3,27720,16], +"ototype-minify", +"@vercel/ru", +"@pkg", +"js/support", +[2,29402,29403], +"flicking", +"globalthis", +[2,29408,26274,29411], +[3,29389,17], +"ostringtag", +[2,17422,29409], +"alias-quod", +"egjs", +"-upgrade", +[2,29408,29415], +"ut-voluptatum-vero", +"indexof", +[3,26699,20], +[3,29389,16], +"@loki/integration-react", +[3,31032,17], +"@modelcontextprotocol/sdk", +"@mar", +"iocasciaro/benchpress", +[2,29422,29423], +[2,31009,16609,18756], +"bean", +[2,31550,29430], +"notation", +"segment", +" upgrade", +[2,29438,7031], +[2,29418,29433,29434], +"effective-octo", +[3,246,18,8], +[2,29436,29437,29439], +[3,29432,17], +"xpedita-", +[3,805,9], +"labore-ipsum", +"es-object-atoms", +[2,29419,4009], +"mentoss", +"@ucast/mongo2js", +[2,28865,6324,4056], +"unconfig", +"permissions", +"abac", +[2,29418,29449], +"odio-fugiat-in", +"ee-first", +"rbac", +"ibac", +"cancan", +[2,29487,188], +"@sxzz/eslint-config", +"wrappy", +"quick-lru", +[2,29459,29620], +"@sxzz", +[2,29418,28215,27463,29461], +"odit", +"@blakeembrey/deque", +[3,29462,13], +[2,29463,1283], +"@sxzz/test-utils", +"@unocss/eslint-plugin", +[3,4949,17,10], +[2,160,1554], +"unocss", +"unplugin-unused", +[2,30209,28945], +[0,30999,28818,5995,17977], +[1,2343,29484], +"epoll", +"beatae-aliquid-id", +[2,23240,3209], +"@zibuthe7j11/deserunt-quasi-impedit", +"gpio", +[3,7033,9], +"raspi", +"beaglebone", +"-black", +[2,29481,29482], +[0,0,29485,29491,2537], +[0,19325,1414,1894,3985,3998,4039,4389,4505,91,1906], +"llms", +[3,29419,18], +[2,10441,20008], +"lazy-prop", +[2,27542,29489], +[0,1623,1936,965,5122,12344,34050,3665,22145], +[2,29294,1892], +[2,35506,15215], +"s-compressor", +[2,29628,29629], +[1,2343,29497], +[0,29498,29499,29516,2399], +[0,2611,4763], +[0,29259,192,5467,23531,29261,4865,4874,1009,1011,10417,668,1177,1881,1895,29262,1915,1938,1955,2070,2675,2990,1894,29265,4039,4480,4494,91], +[2,33343,1640], +"bath-es5", +"dere", +"ference-", +[2,29503,2845], +[2,29502,29504], +[2,29510,29513], +"-adapter", +[2,2085,29507], +[2,1170,29508], +[3,10065,15], +"deref-sync", +[2,7526,29511], +"ooks", +"fetch-retry", +[2,29112,3073], +[0,2611,5995,29268,29270,5130,24090], +"@base-ui-components/react", +[3,32804,12], +"docz", +"docz-utils", +"open api", +"docz-theme-default", +[1,2343,29526], +"aws-sdk-client-mock", +[2,32539,200], +[0,29541,29547,29516,2537], +[3,26032,12], +"computer", +[2,29530,29532], +[3,25758,18], +"quadrocopter", +"m-sint-necessitatibus-possimus", +[2,29534,15050], +[3,33156,12], +"unifont", +[2,29627,29631], +"cupertino-pane", +"licit-resource-management", +"countrynames", +"kill-port", +[0,1457,1491], +[2,15713,10050], +[2,28397,553], +"@testcafe/publish-please", +"aws-lambda", +"eruda", +[0,1138,4494,2070,2675,1177,4039,668,1894,91,4865,4874,2990,29261,4480,192,29265,1938,10417,1895,1955,1011,1881,5467,1009,1915,29262], +[1,2343,29562], +"nano-staged", +"elapsed-time-logger", +"hashish", +"gulp-open", +[2,4807,3864], +"cupertino", +"pane", +"slide", +"-call", +[2,29557,4408], +[2,6606,29558], +"fasteejs", +"ua-is-frozen", +[0,29570,29578,29612,2487], +[3,26032,13], +[2,29609,12835], +[2,29573,6802], +"prelude-ls", +"deep-is", +"astro-auto-import", +"livescript", +[0,4729,1091,4494,12105,3533,3348,1410,1606,28452,4548,1458,3183,33145,1699,2096,11993,3547,28460,2689,2668,28941,2191,3781,36687,28461,36123,3509,4108,28482,28518,26696], +[3,28967,11], +[2,29571,3642], +"country-", +"@pouchlab/ui", +[2,29573,1460], +[2,29573,7285,2669], +"-dis", +[0,4164,4039,4042,668,9241,1587,1610,7819,28585,7892,12461,3813,28426,4057,8818,31727,28586,28854,29228], +"ppsx", +"-discarder", +[2,2184,29580], +"chai-jquery", +[2,1221,6621], +"corejs-typeahead", +"doiuse", +"gulp-add-src", +[2,2352,29588], +"-bust", +"gulp-check-deps", +"sequencify", +[3,28628,14], +[2,2504,29687], +"gulp4-run-sequence", +"is-empty-object", +"motion-ui", +"sassy-lists", +[2,22109,29598], +"-forward-reference", +"vinyl-named", +"sql-ddl-sync", +"sql-query", +[2,29611,29625], +[2,29604,29606], +[3,17589,11], +"redshift", +"helper-rel", +[2,29608,4213], +[3,29603,18], +"gradient", +"grommet", +[3,940,8], +[0,31153,5592,6354,29311,27837,5130,29315,29727,5284,23803,202,28323,89,31175,91], +[1,5293,29665], +"tinygradient", +"tmpdir", +"ps1", +"glob2regx", +[2,29619,29620], +"@bokub", +[3,29621,16,9], +[2,7623,7628], +[2,1283,17321], +"template ", +[2,29623,16111], +"expand-path-helper", +"magnific-popup", +[3,4968,15], +[3,111,18], +"-cloud-services-collaboration", +"grommet-icons", +"composable-commerce-test-data", +"styleable", +[3,3474,9], +[2,10818,29635], +"toolbars", +[2,29637,5592], +[3,11285,19], +"@vscode/vsce", +[2,10829,29640,35971], +"source-l", +"vscode", +[2,964,4415], +[2,29644,591], +[3,19588,29], +"chromatic", +[2,29650,29651], +"addlistener", +"addeventlistener", +"waits", +"grommet-", +"theme-hpe", +[2,1192,29653], +[3,12201,18,16], +"random-int", +"react-shadow", +"resolved", +"fulfilled", +[2,29659,22145], +[3,29576,18], +"tarball-extract", +[2,29662,29663], +[3,35482,11], +"act-selectors", +"fifo", +[0,8391,29688], +"grommet.io", +"grommetux", +"sticker sheets", +"design patterns", +"app templates", +"atomic design", +"invalidate", +"WCAG 2.1", +[2,8652,29675], +" navigation", +"screen reader tags", +[3,10826,11], +"graphical user interface", +"plunder", +"exit-x", +"modelcontextprotocol", +"osition-area-property", +"pwa-asset-generator", +"_codesniffer", +[2,1936,29684], +[2,17753,5130], +"-lint", +1743292800000, +[2,23814,6653], +"rapid-development", +"proclaim", +"@grammyjs/types", +"dart-sass", +"grunt-jekyll", +"mcp", +"deno2node", +"sigstore", +[2,9466,1153], +"antora", +[3,3397,13], +[2,29700,3212], +"zepto", +[3,12478,11], +[2,30713,29989], +[1,2343,29712], +"countries", +[2,22642,5351], +[2,18145,4581], +"@next/font", +"package-up", +[2,17507,4107], +[0,29714,29715,29720,34352], +"@jsdevtools/ez-spawn", +[0,6680,26246,26882,26247,26883], +[0,87,29211,29381,29378,5583,811,816,6373,4864,4874,29386,1009,32801,1011,1165,1195,1264,1540,1593,1596,10944,29374,1177,1938,1942,13668,2151,2193,6382,29120,28366,2675,28629,29392,3400,29137,3566,29372,28369,27120,4042,20981,10854,29398,20983,4073,4076,4079,2278,13739,29373,11440,4484,4487,28625,91,20474], +"@types/png", +[2,29716,1722], +"context7", +"vibe-coding", +[0,32054,29405,31512,29002,4453,28125,5131,89,188,1098,3698,35060,35062,35058,29412], +[2,17590,23989], +"png.js", +[2,29573,29730], +"screenshots", +"ai-detection", +"screengrab", +"headless", +"app-detection", +"rapidoc", +"iso-codes", +"iso", +"api-generator", +"find-process", +[1,2343,29738], +"low-code", +[2,29737,3729], +[3,33097,12], +[0,0,29739,29864,2537], +[0,107,91,1983,11026,26744], +[3,7895,13], +"jpeg-js", +"striptags", +[2,1948,29816], +"baas", +"launch-image", +"splashscreen", +"splash-screen", +"image-generation", +"aws4", +"mstile", +"pwa-assets", +[3,7863,11], +"web publishing", +[2,3862,29804], +"@ionic/react", +"@loki/runner", +"@loki/target-chrome-app", +"@apitools/openapi-parser", +[2,29760,6866], +"base64-", +"xml-but-prettier", +"idb-keyval", +[3,5062,14], +"rypto-js", +[2,29763,29764], +[2,29785,17878], +"@saithodev/semantic-release-backmerge", +"cebook-js-sdk", +[2,22819,29768], +[2,1983,29303], +[3,19588,24], +"nline-", +[2,11294,6436], +[2,29772,29773], +[2,29771,29774], +[2,29781,29782], +"river-adapter-utils", +[2,2767,11110], +"jsdoc-babel", +[2,27738,8791], +[3,14065,15], +"mplate-html-minifier", +"parse-server", +"inspectpack", +[3,29757,20], +"Custom Element", +"Web Component", +"swagger ui", +"swagger ", +"WHATWG", +[2,28008,57], +"html5 parser", +[2,28008,1753], +[2,1936,1753], +"openapi ui", +[2,29366,4366], +[2,29366,11328], +[2,29366,3902], +"fast-ur", +"l-parser", +[2,29799,29800], +[2,29366,25677], +[2,29789,4366], +"animatable", +"react-swipeable-list", +"pause", +[2,29811,29812], +[3,1551,9], +[2,29808,18716], +[2,1432,29809], +[3,29757,13], +"native-android-emulator", +[2,29814,29815], +[3,29807,20], +"ios-simulator", +"-preferences", +[2,31868,5891], +[2,29822,19102], +"collapsible", +"accordion", +"readme-md", +[3,4272,10], +[2,11375,10850], +"username", +[3,9308,9], +[2,29827,29828], +[3,4060,15], +"ocal-resolve", +[2,3500,1274], +"visual testing", +"swipeable", +"customizable", +[3,1419,20], +"teeny-tap", +"base64url", +"touchscreen", +"listview", +"swipe-to-delete", +"swipe-actions", +"json/simple-icons", +[2,29852,32865], +"iso-country-codes", +"use-composed-ref", +"use-latest", +[2,29866,1460], +"@preconstruct/cli", +"blue-tape", +"autosize", +"grow", +"riot", +"events.once", +"@scalar/s", +[2,30844,1983], +"exist", +"md-writer", +[2,12557,8982], +[2,29858,29859], +[3,7806,10], +"mon-tags", +"ts-declaration-location", +[2,29863,14056], +"isabsolute", +[3,1733,14], +[0,31549,31550,29427,31553,31565,9006,3015,31566,15813,10725,30672,5066,15571,89,31567,1098,188,12295,5131,28125,31568,31569], +"react-smooth", +[3,29842,12], +"@borderless/ts-scripts", +[2,29958,29576], +[2,29870,34050], +"victory-", +[1,2343,29929], +[2,10818,29873], +"mdx-gfm", +[2,10818,29875], +"webpack5-compiler-swc", +[2,29877,29878], +[3,10841,15], +"-runner", +[2,33114,22982], +[2,33114,29881], +"time-format", +"@rkusa/linebreak", +[2,29885,29886], +"opentype.js", +[3,18787,15], +"v-expression", +"vitest-axe", +"log-process-errors", +"sortablejs", +[2,5581,29898,27479], +[2,29518,29892,29930], +"native-pr", +"jpeg-exif", +"linebreak", +"png-js", +"@riotjs/dom-bindings", +"blob-stream", +"multi-pa", +"pdfjs-dist", +[2,29904,4643], +"pdf writer", +"pdf ", +[2,29902,1179], +"@riotjs/", +[2,29906,29907], +"@riot", +[3,25083,18,7], +"call-delayed", +"chai-i", +[2,29904,93], +[2,29904,614], +"ncreasing", +[2,29909,29912], +[2,29915,29916], +"@wdio/s", +"auce-service", +"bianco.attr", +"pgpass", +"pg-pool", +"pg-types", +"bianco.query", +"cumpa", +"pg-protocol", +"curri", +[2,29126,28794], +[2,29927,28794], +[3,4069,15], +"pg-cloudflare", +[0,29947,29948,29981,2523], +"eview", +"pg-co", +"py-streams", +[2,29931,29932], +"@cloudflare/workers-types", +"custom tags", +"minimalist", +"libpq", +"rdbms", +"data binding", +"riotjs", +"riot.js", +"tdesign-mobile-vue", +"oxc-resolver", +"copy-source", +[2,5237,29944], +"npm-watch", +[0,29443], +[0,33580,5087,4874,1429,31602,2024], +[2,29950,12826], +[3,35537,26], +[2,29956,582], +"hasha", +"reorder", +"ng-sortable", +[2,12318,29992], +[3,66,20], +[2,27777,27738,1764,1524], +"iso-", +"@use-gesture/vanilla", +[2,29961,29962], +"tdesign-", +"icons-vue-next", +[2,29958,29658], +[2,1547,3525], +[2,3525,15159], +[2,812,1002], +"@soerenmartius/vue3-clipboard", +" build", +[2,3525,29968], +"/build", +[2,3525,29970], +"dom-parser", +"qrcode.vue", +[2,8851,19675], +[2,29976,29977], +[3,32978,16], +"atic-import", +[2,29976,29979], +"yles", +"@tdesign/site-components", +[0,29446,14374,1081,29447,29451,29452,29453], +[1,2343,29985], +[2,29961,29984,200], +"publish-", +[0,29986,29995,2514,2537], +[0,26702,19344,1915,32525,1953,1958,1959,2105,2203,26716,4523], +[2,4609,29988], +"tdoc", +"ystem-ui-font-family", +"tdesign", +"pinkie-promise", +"-widget", +"weui", +"denodify", +[0,4874,25950,1177,2675,17529,2931,27949,3401,4505,91], +[2,29997,3346], +[3,6806,10], +"tstyche", +"atomic", +[2,30016,30020], +"atomic-sleep", +[1,2343,30160], +"xit-leak-free", +[2,27492,30003], +"pino-", +[2,20417,4714], +[2,30005,30006], +"std-", +[2,1753,591], +[2,30008,30009], +[2,30005,30010], +"quick-", +"-unescaped", +[2,1671,30013], +[2,30012,30014], +[3,18858,17], +"real-require", +"sonic-boom", +"thread-stream", +"-tag", +"lush-write-stream", +[2,5537,30021], +"obug", +"bole", +"fastbench", +"-write-stream", +[2,20064,30026], +"midnight-smoker", +"steed", +[2,30031,30032], +[3,3577,11], +"-variables", +[2,30034,30035], +"postcss-he", +"xrgba", +"postinstall", +[3,3848,9], +"devpostinstall", +[2,30040,1524], +[3,3668,14], +[2,24276,30042], +"odule-replacement", +"graphql-jit", +"uploader", +"preview", +"image-edit", +[2,30085,3582], +"mqemitter", +"remark-math", +"single-user-cache", +"base64-stream", +[2,24101,30057], +"ready", +"-simple", +[2,2105,30054], +"win32", +"woslash", +[2,9406,7293], +[2,30060,30065], +"remark-s", +[2,30062,30063], +"gulp-conve", +"rt-css-var", +"picklog", +"martypants", +"wechat", +"weixin", +[2,29314,4183], +[2,17998,30070], +"ading-time", +[2,27707,364], +"better-react-mathjax", +[2,30074,25131], +[3,9313,17], +[2,30076,30077], +[3,12415,13], +"alue-to-estree", +[2,30079,30080], +[3,31790,16], +"ocalematcher", +"tiny-lru", +[2,10884,30083], +"egotiator", +[2,11932,11525], +"iso-countr", +[2,30087,30096], +[3,13203,19], +"irregular-plurals", +"fs.extra", +"plurals", +"count", +"irregular", +"noun", +"nouns", +"requireg", +"orm-data", +"@pkgr/core", +[2,4511,30118,30123], +"make-synchronized", +[2,30101,30102], +[3,30099,13], +"ous", +"sync-threads", +"fclone", +"vizion", +"@pm2/io", +"pidusage", +"pm2-axon", +"@pm2/", +"@pm2/agent", +"pm2-", +"pm2-deploy", +"synchronize", +[2,5340,30116], +"@pm2/js-api", +"webc", +"cli-tableau", +[3,32969,11], +"pm2-axon-rpc", +[2,30111,28917], +[2,30111,21833], +[2,30109,30121], +"heme", +"logs", +"kraken", +" balancer", +[2,3001,30126], +"lb", +"balancer", +[2,3614,30129], +"kubernetes", +"k8s", +"emoji-flags", +"pm2-docker", +"graceful", +"phone-codes", +"node-pm2", +"fs-fixture", +"production", +"keymetrics", +[2,10339,13522], +"strong-pm", +"supervisord", +"pm2.io", +"@ibyar/expressions", +" production", +[2,17979,30146], +[2,3729,6877], +"probes", +" process", +" alive", +[2,30150,30151], +[2,25607,30152], +"process ", +[2,30154,8309], +"clustering", +"memoizerific", +"cluster cli", +"dev ops", +[0,30171,0,29047,2537], +"phone-prefixes", +"@vercel/blob", +[2,7285,2669], +"tap-dot", +[2,30180,30181], +"PNG", +"js-png", +"node-png", +"import-without-cache", +"png-parse", +[0,2845], +"pg-gateway", +"@ibyar/decorators", +"pglite-2", +"aurora", +"ibyar", +[2,4641,5341], +[2,4641,7256], +"evaluation", +[3,578,10], +"arousel", +[2,30195,3825], +"no-code", +"mvp", +[1,2343,30186], +[0,30187,30188,30189,2537], +[0,8712,1423,5210,1209,3021,26499], +[0,34225,4874,2559,91,34229,28456,34231], +[0,89,5130,21151,28811], +"poe", +"economy", +"ninja", +"poe.ninja", +"poe economy", +[3,581,10], +[2,30212,3730], +" of exile", +[2,3403,30197], +" economy", +[2,30198,30199], +[3,30200,14], +[2,30201,30192], +[2,30194,8568], +[2,30201,5592], +[1,2343,30229], +"ast-walker-scope", +"poe.watch api", +[2,30193,8568], +"@vercel/ne", +"copilot", +"@types/ne", +[3,587,10], +"reval", +[2,24808,30213], +[2,6649,2995], +[2,6645,30215], +"tsgen", +[2,30231,30232], +"glamor", +[2,24177,591], +"o-async", +" manipulate", +[2,1473,30222], +[3,30223,15], +[2,30224,6600], +" color manipulation", +[2,7595,30226], +[3,35570,16], +[0,30249,0,2514,2487], +"muggle-string", +[3,593,10], +"potlight", +[2,579,30251], +[2,29444,30511], +[3,6372,10], +[2,30235,6374], +[3,23816,17], +[2,30237,13290], +[2,30235,30238], +[2,30235,1973], +[2,30240,3007], +"nuget-publish", +[2,30244,4900], +[3,13484,37], +"popperjs", +[2,1517,30248], +"attached", +"center", +[0,9315], +[1,2343,30308], +"tiptap", +"allure-js-commons", +"flush-promises", +[2,30255,30259], +"@yarnpkg/l", +[3,10175,16,14], +[2,30276,30280], +"source map", +"ibzip", +[2,23660,30261], +"tector", +[2,11369,30282], +[2,10880,30264], +"preset-env", +"jison-gho", +[2,16645,30267], +"null", +"calculation", +"unixify", +"allure", +"codeceptjs", +"testops", +[3,3674,10], +[2,30273,25461], +"read-cache", +"express-i", +[3,1895,16], +"oblems", +[2,30277,30278], +"ntlayer", +"is-mobile", +"spector", +"deep-object-diff", +"@ngard/tiny-isequal", +[2,6268,1467], +[2,206,30285], +[2,209,6731], +"@intlayer/chokidar", +"hsl", +"hsla", +"hwb", +"rgba", +[2,30294,6008], +[3,30288,11], +[2,30296,23], +[3,30293,12], +"intlayer", +"caniuse-api", +"colord", +[2,10829,30311], +[3,19443,15], +[2,30301,5592], +[2,9738,30304], +"s-hooked", +"@utils/ts-config-types", +[3,30305,16], +"@intlayer/", +[0,0,30473,2514,4139], +"@utils/ts", +[2,30309,32810], +"docs-mdx", +[2,9402,30374], +"get-npm-tarball-url", +"pixrem", +"pleeease-filters", +"apply", +[2,3562,30316], +"postcss-a", +"ttribute", +"-case-", +[2,30322,30367], +"use", +"insensitive", +[2,30320,30323], +[2,30319,30324], +[2,30318,30325], +[3,3570,22], +[3,3570,14], +[2,30328,12981], +"hex-alpha", +[2,30328,30330], +[3,30331,15], +"sl", +[2,30332,30333], +"wb", +[2,30332,30335], +"rebeccapurple", +[2,30328,30337], +[3,30338,15], +"gb", +[2,30339,30340], +"a-fallback", +[2,30341,30342], +[3,4791,10], +"nt-family-system-ui", +[2,30344,30345], +[3,30346,13], +[2,30347,24044], +[3,3611,18], +[2,30349,6422], +"user-agents", +"nitial", +[2,3607,30352], +[3,3622,10], +"dia-minmax", +[2,30354,30355], +"seudo-class-any-link", +[2,6423,30357], +[3,30358,14], +[2,30359,11513], +[3,30274,11], +"lace-overflow-wrap", +[2,30361,30362], +[3,3681,17], +[2,30364,6421], +[2,30364,23293], +[3,11228,16,2], +"cssrecipes-custom-media-queries", +[3,30368,11], +[2,30369,19400], +[2,30369,10052], +[2,30369,594], +"vert", +"ermaid", +[2,28756,7224], +"ical-rhythm", +[2,30373,30376], +[2,30369,30377], +"i-am-meticulous", +[2,1884,30379], +"isogram", +"oc-and-anchor", +[2,7646,30382], +[2,12798,591], +[2,3160,30384], +[3,30385,11], +"@react-aria/interactions", +"filenames", +[2,30386,30388], +[2,30386,5980], +[2,30386,89], +[3,30391,13], +[2,30392,1213], +[3,30391,12], +[2,30394,367], +[2,30386,1002], +[2,30386,2282], +[2,30415,30461], +"nano-logger", +"npmpub", +[2,25230,25461], +[2,3562,30401], +"-inline", +[2,3897,30403], +"@enact/ui", +"lazy-universal-dotenv", +"to-slug-case", +[3,4693,9], +"ano-logs", +[2,30408,30409], +[2,30058,30412], +"-position", +"cssnext", +"modern-tar", +[3,30387,12], +[2,30417,364], +[3,906,9], +[3,205,11], +"ascade", +"-lay", +"er-name-parser", +[2,30420,30421], +[2,30419,30422], +[2,30418,30423], +[2,30417,30429], +"at-rule", +"atrule", +"csswg", +"delivery-react-native", +"queries", +[2,30417,30432,30433], +"plugin-co", +"nsole-breadcrumbs", +[2,30435,30436,30437], +[3,30431,16], +"network-", +"breadcrumbs", +[2,30435,89], +[2,30438,30440], +"-native-client-sync", +[2,30443,30444], +"declarative", +[3,30439,29], +"event-sync", +[2,30443,30446], +"global-error-handler", +[2,30443,30448], +"hermes", +[2,30443,1577], +[2,30443,30451], +"unhandled-rejection", +"iserror", +"react-syntax-highlighter", +[2,30457,30460], +"bugsnag", +"stability", +[3,30375,17], +"@enact/webos", +[2,30875,4000], +"croll-area", +"overlays", +"at-rules", +"@ionic/angular", +[2,30415,17966], +"@keyframes", +"@counter-style", +"@devtools-ds/object-inspector", +[2,4807,30453], +[2,30475,30476], +"@aw-web-design/x-default-browser", +"@fal-works/esbuild-plugin-global-externals", +"flexbugs", +[0,4483,1177,1984,1894,91,4874,1953,7677,1982,1895,1011,1009], +[1,2343,30482], +[3,659,18], +"nobis-nostrum-nam", +"@skylernpm/hic-inventore-dolores", +[3,3616,9], +"postcss-less", +"tyl", +"postcss-styl", +[0,30490,30492,30497,34352], +"quickapp", +"PHP", +"sss", +"convex", +[3,29658,18,8], +[2,30502,27421,30606], +"world-countries", +[0,1437,3074,3714,4361], +"image-set", +[0,2228,2240,2247,2316,1906], +[2,2662,30554], +"@eggjs/oxlint-config", +"@vercel/e", +"mock-spawn", +[0,21779,8221,13814,15344,158,6707,3178], +"node modules", +[3,31793,24,5], +[1,2343,30524], +[2,30503,30515], +[3,30477,11], +[3,30489,12], +"postcssrc", +".config.js", +[2,3561,30505], +"@recharts/devtools", +"motion-dom", +[2,30510,186], +"motion-u", +"-snapshot", +"midas", +[3,3591,9], +"ark-", +"y-codes", +"theme-class", +[2,30514,30516], +[2,30513,30517], +"hort", +[2,3677,30519], +[2,1172,30522], +[3,5558,22,6], +[2,30560,6802], +[0,30525,30526,30189,2523], +[0,668,8712,4090], +[0,1192,91,5087,4874,28455,28574], +[2,30546,30547,3966], +[1,2343,30549], +[2,30530,30537], +[3,30868,11], +"cssnano-", +[2,30531,594], +[2,30534,11504], +"@codecov/", +[2,30536,6579], +[3,1300,12], +"silent", +"expressots", +"font-f", +"clean-architecture", +"font-family", +"font-weight", +[2,30544,30545], +[3,4526,12], +"ramework", +[3,31198,25], +"particles-", +"desm", +[0,30550,30555,30556,2523], +[0,1169], +[2,41,30552], +"pro-components", +[2,5557,3514], +"node16", +[0,3421,1429,4493,2899,4039,2026,4474,91,4856,4874,6503,1151,6494,8648], +[0,6653,2275,5472,6969,5982,7320,11346,3541,1169], +[1,2343,30580], +"esc", +[2,7632,30558], +[3,30501,14], +"gulp-better-rollup", +[2,30560,1460], +"Leaflet", +"Maps", +"Gesture", +"Handling", +"two", +"fingers", +[2,30571,30572], +[2,3976,30573], +"world", +[3,29868,24,3], +"anitize", +[2,30571,30578], +[3,220,19], +[2,4026,3639], +[2,30575,30576], +[3,29963,27,3], +"atrules", +[0,30596,30597,2514,2523], +"children", +"nestings", +"@anthropic-ai/sdk", +"@azure-rest/ai-inference", +[2,959,30586], +"vue-virtual", +[2,209,3376], +[3,30402,16], +[2,30588,4298], +[2,2574,3375], +"world-iso-codes", +[2,964,188], +[2,30599,29842], +"normalizes", +"fixes", +[0,1112,1415,16230,24324,36538,30169,30023,3530,28865,29444,4135,26379,27921,4459,33251,24214], +[0,33043,29170,29455,29458,29465,4874,20374,5254,29891,29466,33253,7677,23203,10984,19839,1680,1177,20044,16860,3144,3749,15450,1894,23535,30234,24181,91,29469,30908,28797,29470,1983,1984], +[1,2343,30601], +"world-", +[2,30613,1460], +[0,30605,30608,30611,2537], +"@cfworker/json-schema", +"@clerk/localizations", +"@ark/attest", +[0,1676,1679,2151,2212,17450,4400], +"non-corrupti", +"admin-lte", +[0,5245,29493,4864,1429,1177,2899], +"@clerk/nextjs", +"@clerk/themes", +[0,1764,7682,26965,3428,2090,27,1002,1965,5995], +"backendless", +[3,30593,18], +"to-valid-identifier", +[1,2343,30626], +"@astrojs/mdx", +[2,30618,30619], +[3,28058,16], +"tro", +[2,3704,34683], +[2,30625,3286], +[2,30623,9872], +"control-", +"smartbanner.js", +[3,2635,14], +[0,0,30627,30780,2537], +[0,8648,4874,4880,34737,1894,89,3824,7671,91], +[2,30612,30665], +"cascade-layers", +[2,216,30629], +[3,30630,19], +[3,3569,13], +[2,30631,30632], +[3,30633,24], +"mix-function", +[2,30634,30635], +[3,30633,20], +"alt-text", +[2,12009,30638], +[2,30637,30639], +[3,28688,12], +[2,30641,5746], +[2,216,30642], +"ormat-", +[2,30644,4798], +[2,30539,30645], +[2,216,30646], +"gamut-mapping", +[2,216,30648], +[3,30649,19], +"radients-interpolation-method", +[2,30650,30651], +"hwb-function", +[2,216,30653], +[3,215,19], +"c-unit", +[2,30655,30656], +[2,30655,30352], +"light-", +"dark-function", +[2,30659,30660], +[2,216,30661], +[3,30662,19], +"ogical-", +"-request", +[2,30683,31073], +"-and-clear", +[2,14639,30667], +[2,30664,30668], +[2,30663,30669], +[3,30670,26], +"overflow", +[2,30671,30672], +[3,30673,30], +"behavior", +[2,11262,30675], +[2,30674,30676], +[2,30671,24800], +"viewport-", +"units", +[2,30679,30680], +[2,30671,30681], +[3,30628,13], +[2,30767,33380], +"media-minmax", +[2,216,30685], +[3,30686,24], +"-aspect-ratio-number-values", +[2,30430,30688], +[2,30687,30689], +[2,30695,10740,4978], +"nested-calc", +[2,216,30692], +[3,30693,19], +[3,30628,12], +"bannerize", +[2,31495,31502], +"play-values", +[2,29577,30698], +[2,3646,30699], +[2,30694,30700], +"oklab-function", +[2,216,30702], +"relative-", +"yntax", +"color-syntax", +[2,30704,30706], +[2,216,30707], +"scope-", +"pseudo-class", +[2,30709,30710], +[2,216,30711], +[3,30712,19], +"tepped-value-functions", +[2,30713,30714], +[3,70,7], +[3,5845,9], +[2,7854,30717], +[2,30716,30718], +[2,28533,30719], +[2,216,30720], +[3,30721,19], +"rigonometric-functions", +[2,30722,30723], +[2,216,10760], +"css-b", +"lank-pseudo", +[2,30726,30727], +"css-h", +[2,30612,33812], +"zarm", +"as-pseudo", +[2,30729,30732], +"css-pr", +"efers-color-scheme", +[2,30734,30735], +[2,1007,30738], +[3,13069,23,4], +"postcss-clamp", +[3,3591,10], +"r-pseudo-class", +[2,30740,30741], +"ouble-position-gradients", +[2,30513,30743], +[3,4791,14], +"within", +[2,30745,30746], +"gap-properties", +[2,3562,30748], +"ab-function", +[2,30478,30750], +[3,3616,10], +"gical", +[2,30752,30753], +[3,3664,9], +"pacity-percentage", +[2,30755,30756], +"verflow-shorthand", +[2,30755,30758], +"age-break", +[2,6423,30760], +[2,30764,30766], +"postcss-place", +[3,3710,17], +"lists", +"h", +"@biomejs/", +"playbook-builder", +"algo", +[2,444,30771], +"-interactions", +[2,30773,89], +[3,29959,13], +"@zarm-design/bem", +[2,3677,30705], +[2,30777,45], +[3,30774,13], +"ahooks", +"better-scroll", +[0,89,586,11000,26264,6458], +"hermes-compiler", +[1,2343,30791], +[2,30777,200], +"@oxc-project/runtime", +"zarm-ui", +"zarm-mobile", +[2,30790,553], +[2,20561,30789], +"render-stream", +[3,30784,13], +[0,30793,0,30799,2523], +"@oxc-node/cli", +[0,1687,5303,1459,6501,182,148,164,167,29468,187,153,191,28332,15690,28361], +"oxc-parser", +[2,30796,30797], +"@iconify", +"/utils", +[2,3882,11245], +[0,28407,1459,6094,28416,28417,2585,28442,18241,6038,6110,1936,6138,6139,6142,6144,6145,20863,14600,5130], +[1,2343,30801], +[0,0,30812,30825,2537], +"@enact/i18n", +[2,30804,30232], +[3,907,8], +"doublylinked", +"lightning", +"-pool", +[2,30806,30807], +"ilib", +"-bytea", +[2,25638,30810], +[0,1192,1177,4042,4468,1894,91,5087,1895,1955,2780,1011,1009], +"power-tasks", +"@cyntler/react-doc-viewer", +"putil-", +[2,30815,19138], +"varhelpers", +[2,30815,30817], +"@enact/docs-utils", +[2,30405,30821], +"-test-utils", +[2,18576,30823], +"nact-proxy", +"@fal-ai/client", +[0,31512,32054,35062,35060,20986,4453,5284,91,89,188,3709,23332], +[2,22180,591], +[1,2343,30836], +[2,1962,30830], +"titanium", +"dos-detector", +"ed-queue", +"-ended-queue", +[2,4420,30832], +[2,11344,977], +"tsm", +[0,30846,30863,30865,2443], +"level-codec", +"write-stream", +[2,25982,30838], +"ltgt", +"bundle-size", +"spark-md5", +"vuvuzela", +"rolldown-", +"react select", +[0,29178,3744,3911], +"react dropdown", +[2,30852,30856], +"empower", +[2,3696,12168], +"universal-", +"accessib", +"strict-equal", +[2,1683,30853], +[2,30851,30854], +"le react select", +"dereserve", +"accessible", +"licensify", +[3,21510,14], +"ilterify", +[2,30860,30861], +[0,48,53,68,61,71,73,76,14039,78,83,87,90,97,966,968,972,1195,1593,1610,1177,1879,1895,1938,1947,1955,1959,1192,2780,2843,3697,1894,89,3824,2924,4676,4677,4681], +"jsx-async-runtime", +[0,89,6071,7521,5128], +"@formkit/auto-animate", +[2,8293,181], +"@reporters/github", +"@apm-js-collab/tracing-hooks", +"tidev", +"iphone", +"precommit", +[2,5186,2203], +[2,5928,3717,2389], +"react-load", +"combine-promises", +"@actions/github", +[2,20201,1172], +"@actions/glob", +[2,19849,3583], +[2,1252,30880], +[2,20201,2942], +"errorstacks", +"-sinon", +[2,2878,30884], +"-display-", +"@google/genai", +"kolorist", +"oxlint", +[2,30893,30894], +"virtual dom", +"dom diff", +[3,30878,13], +"undler", +[2,3886,1541], +[2,30897,30898], +[3,38298,13], +"dx-loader", +[2,32359,13369], +[2,30901,7020], +[3,30899,18], +[2,30459,30903], +"-ssr-addon-v5-slorber", +[3,18018,13], +[2,30904,3642], +"@huggingface/inference", +"jest-l", +[2,30909,166], +"unplugin-a", +[1,2343,30925], +"ight-runner", +[2,30907,30911], +[2,35506,30914], +"tect-port", +[2,30916,30917], +[3,12312,18], +"shoehorn", +[3,2954,10], +[2,30923,1541], +"lugin-pug", +[2,30918,30920], +[2,5334,30921], +[3,4887,20], +[3,3703,15], +[0,0,12112,30927,2523], +"@nestjsx/crud", +[0,2070,1108,6961,57,29617,4643], +[2,206,31196], +[2,30930,32550], +"@vercel/b", +[1,2343,30933], +[2,18420,8162], +[0,30934,0,30936,2523], +[0,1459,16485,182,28912,148,187,153,28332,15690,28361,146,28913,15716,29131,29495], +"parcel-bundler", +[0,28407,1459,6094,28416,28417,2585,28442,18241,6038,6110,1936,6138,6139,6142,6144,6145,20863,5130], +"Vue", +[1,2343,30945], +"@zoroaster/assert", +"glob-fs", +[2,30942,10098], +[3,30939,11], +"unstyled", +"alamode", +[0,0,2667,31019,4139], +"humanized", +"si", +"locale", +"@a-la/fixture-alamode", +"localized", +[2,30952,1172], +[3,30949,14], +"@artdeco/clean-stack", +"@artdeco/erte", +"@artdeco/", +"renderkid", +[2,30971,4521], +"jitter", +[2,30989,186], +"exception", +[2,30955,30962], +"scripts.json", +[2,30926,30665], +[2,30965,614], +"@nestjsx/", +"@depack/render", +"crud", +"crud-generator", +"frameworks", +"parse-ms", +[3,30963,14], +"@netlify/framework-info", +"@wrote/exists", +"milliseconds", +"period", +"@wrote/rm", +[2,30942,6696], +"@zmotivat0r/o0", +"@pothos/core", +[2,30942,553], +"mercurial", +"hg", +"vcs", +"argufy", +"catchment", +"p-filter", +"p-locate", +"documentary", +"unplugin-u", +[2,5313,6355], +[2,15658,30992], +"-integration", +"npmjs", +"@pri", +"sma/engines", +[2,30994,30995], +"gatsby", +"hugo", +"netlify", +"ts-pattern", +[2,32976,33011], +"global-dirs", +"erotic", +"line-replace", +"@prisma/", +[2,31005,1676], +[2,13403,31016], +"xdg-app-paths", +[2,31005,5576], +"studio", +[2,31005,31010], +"migrate", +[2,31005,31012], +"internals", +[2,31005,31014], +"rtdeco", +"point-client", +[2,4354,31017], +[0,8618,8619,8620,1299,200,1523,6876,8622,1836,8623,1179,8624,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,8632,8633,4989,2184,8634,7009,6621,553,91,181,8635,4758,8636], +[1,2343,31082], +[2,31514,31516], +"fetch-engine", +[2,31005,31022], +"makepromise", +"get-platform", +[2,31005,31025], +[2,31011,2995], +"@prisma/ge", +"nerat", +"or-helper", +[2,31029,31030], +[2,31028,31031], +"promto", +"ORM", +"Prisma", +"reloquent", +"Prisma CLI", +"prisma2", +"JS", +"TS", +"SQL", +"SQLite", +"Postgres", +"core-js-pure", +"PostgreSQL", +"CockroachDB", +"MySQL", +"MariaDB", +"MSSQL", +"SQL Server", +"SQLServer", +"MongoDB", +[2,32483,13083], +"jest-location-mock", +[2,27845,31056], +"dule-alias", +[2,1464,31059], +"danger", +"-serve", +"spawncommand", +"docdash", +"hotreload", +"gulp-terser", +"@strapi/strapi", +"temp-context", +"webfont", +"usually", +"yarn-s", +[2,31070,11017], +"@pothos/", +[2,31084,31085], +[3,815,8], +"t-client", +[2,31072,31073], +"URIjs", +"pothos", +"IDE", +"svn", +"suggestions", +"intellisense", +"tagged-tag", +[0,31083,31199,31215,2537], +[0,29692,1079,1676,3310], +[3,8998,11], +"assword", +"@svgr/hast-util-to-babel-ast", +[2,31104,31682], +[2,31089,1541], +"@epic-web/", +"yalc", +[2,31092,364], +"@strapi/", +"@strapi/i18n", +"@strapi/admin", +[2,31092,1823], +[2,31092,553], +[2,31092,594], +[2,31092,2942], +[2,31100,184], +"@strapi/u", +[2,31102,1803], +[3,28426,12], +"zshy", +"@types/so", +[2,31092,18035], +[2,31107,31108], +"@strapi/c", +"loud-cli", +[2,31092,5701], +"get-latest-version", +[2,31112,31113], +"@strapi/p", +"ermissions", +[2,31115,31116], +[3,31105,12], +"-transfer", +[2,31118,31119], +"@strapi/co", +"ntent-manager", +[2,31121,21945], +[3,31117,16], +"customize", +[2,31092,31124], +"review-workflows", +[2,31096,31126], +"cript-utils", +[2,31121,31128], +"type-builder", +"interact", +"css-parser", +[2,31132,31133], +"@strapi/t", +"s-zen", +[2,19502,31137], +"uglifyify", +"uglifyjs", +"ustom", +[2,4807,4684], +"css-ast", +"strapi", +"cmf", +"alpha-sort", +"vent-", +[2,31143,2618], +[2,2621,31144], +[2,31151,5130], +"mdast-zone", +[2,5967,2619], +"svg-e", +[2,31149,31144], +[3,17944,19], +"aria", +"admin panel", +"koajs", +"jam", +"graphqL", +"@protobufjs/aspromise", +[3,31157,12], +[2,31158,14357], +[2,31158,5061], +[2,31158,2016], +[2,31158,1612], +[3,31162,13], +"loat", +[2,31163,31164], +[2,31158,8625], +[2,31158,3403], +[3,31167,13], +[2,31168,25200], +[2,31158,4577], +"infrastructure", +[2,13888,4719], +"semver-tags", +[2,10617,31173], +"self hosted", +"lernajs", +"css-tools", +"@icons-pack/react-simple-icons", +"@khmyznikov/pwa-install", +[2,25885,24348], +"wd2", +"jasminewd2", +"-js-extender", +[2,11132,31183], +"webdriver-", +[2,31185,10057], +"snake-case", +[2,23689,31181], +"ang-format", +[2,21680,31189], +"natives", +[3,19209,11], +[2,31192,591], +[2,4491,31193], +"vrsource-tslint-rules", +"syntax-patches-for-csstree", +"base-driver", +[2,31228,29677,31230], +[0,5245,4874,5542,29696], +[2,31203,31204], +[3,27731,11], +[2,31201,57], +[3,1006,11], +"averse", +"@types/args", +[2,31208,57], +"squid", +[3,34785,11], +"privoxy", +"mod_proxy", +"via", +"x-forwarded-for", +"@express", +"-zod-api/zod-plugin", +[0,32859,8549,5592,5576,5130,6082,28450], +[1,2343,31245], +"p3-linear", +"fill-keys", +"not-found-error", +[2,5223,31219], +"MCP", +[3,8648,12], +"hello-world", +[2,13669,31223], +[2,31226,28613], +[3,2670,12], +[3,33464,11], +[3,1004,13], +"cp-sugar", +"-external-push", +[2,31228,31241], +"-status", +[2,16238,31232], +"l-ct-react", +[2,31236,1983], +[3,11282,19], +[2,11147,1983], +[2,12042,4406], +[3,31198,24], +"pug-", +"move-base", +"pug-code-gen", +"pug-filters", +[2,31228,31261], +[0,26964,0,31273,2537], +"pug-lexer", +"@langchain/community", +"pug-linker", +"pug-load", +"pug-parser", +"pug-runtime", +"strip-co", +[2,31252,19490], +[2,31240,31253], +"@lobechat/agent-runtime", +[3,24593,18], +"down-it", +[2,31256,31257], +[2,24585,4535], +[3,31231,17], +"shape-emoji", +[2,31228,31271], +[2,31995,5257], +[2,32038,31267], +"bail", +"tap-bail", +" tools", +[2,31269,31270], +[3,31238,12], +"shape", +"updater-color", +[2,31281,26543], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238], +[1,2343,31309], +[2,33763,31291], +[3,31262,20], +"idn", +"idna", +"dns", +"domain", +[3,31262,21], +[2,31283,31284], +[3,31272,22], +"ut-modes", +"-bidi", +[2,7001,31285], +[3,11071,14], +[2,17414,31287], +"@uppy/companion", +[2,31313,364], +"detect-agent", +[2,5176,31293], +"remapping", +[2,31295,13901], +[3,33831,13], +[2,31298,31299], +"purge", +[3,28384,12], +"presigned-post", +[2,31301,31302], +[3,30257,11], +"erceptor", +[2,2032,31304], +"prom-bundle", +"grant", +"tus-js-client", +"qr code", +[2,2662,1278], +[0,26964,0,31273,2523], +"resumable uploads", +"tus", +"dropbox", +"@vuepress/", +[2,21282,31372], +[2,31316,31324], +"@radix-ui/", +"@browserify/envify", +[3,31317,12], +[2,31318,31135], +"common-s", +"hakeify", +[2,31320,31321], +"verr", +"primitive", +"webpack-chain", +"ide-mistake", +[2,31323,31326], +[2,15053,31327], +"unassertify", +[2,31355,31356], +[2,31313,553], +[2,31313,1783], +"vue-server-renderer", +[2,31338,31342], +"decode-", +[2,14649,4627], +[2,31335,31336], +[3,13063,12], +"filter-obj", +"-on-first", +[2,4237,31340], +"reset-app", +[2,31313,31346], +[3,5422,9], +[2,7193,3634], +"shared-utils", +[2,31332,2091], +[2,31349,3111], +[3,21294,16], +"retape", +[2,19469,31352], +[3,32087,20,4], +[2,21282,31354], +"last-updated", +[3,28754,17], +"ompose-refs", +"tap-esm", +[2,31359,31604], +[3,31330,18], +"synchronous", +[2,28756,8191], +[2,31363,31364], +[3,31361,17], +"rimitive", +"FIFO", +"lifo", +"LIFO", +[2,28756,32760], +"queue js", +"job queue", +"job ", +"active-header-links", +"scheduling", +[2,31371,31373], +[2,21282,3412], +"task queue", +"ordered", +[2,31380,31382], +"linked list", +[3,31368,20], +"dequeue", +"escape-keydown", +"assistant-stream", +[2,31385,6599], +"assistant-", +[2,31418,31420], +[1,2343,31476], +"parchment", +[3,15562,11], +[2,31395,31396], +[3,12455,16], +[2,31391,1722], +[2,17612,2924], +[2,5197,4408], +[3,1694,14], +"x-buildutils", +"@types/sharp", +"radix-ui", +"ai-sdk", +"shadcn", +"fuzzysort", +"grunt-search", +[3,19622,19], +[2,31403,3595], +"@qunitjs/browserstack-runner", +"assistant", +"openai", +"ai", +"chatbot", +"ai-chat", +"dom-e", +[2,15588,6863], +[2,31411,31412], +[2,31415,31416], +[3,6493,9], +"acritics", +"@types/qunit", +[3,31331,11], +"qunit-plugin", +"heme-default", +"@walletconnect/browser-utils", +"ai-chatbot", +"ai-assistant", +"ai-copilot", +[2,31349,31428], +"exists-stat", +"js-reporters", +[3,15580,13], +[2,26353,8791], +[2,31436,31464], +"chatgpt", +"gpt4", +"gpt-4", +[3,2888,14], +[2,31436,553], +[3,31421,15], +"testling", +[2,31436,31441], +"AnimationFrame", +[2,705,31439], +"safe-json", +[2,31436,31443], +"window-getters", +[2,31450,6774], +"-export-", +[2,31445,14057], +[2,1205,31446], +"envvar", +"sanctuary", +[3,31442,22], +"-identity", +[2,31449,31451], +"xyz", +[2,6080,31458], +"@ethersproject/address", +[2,31457,25352], +[3,10408,17], +"al-ui", +"wallet", +"walletconnect", +"jsonrpc", +"cryptocurrency", +"dapp", +"iso-crypto", +[2,31436,31472], +[2,31467,31408], +[3,31454,15], +[3,30286,15], +[2,31436,594], +[2,31436,1616], +"alc", +"legacy-modal", +[2,31478,9962], +"@globalart/nestjs-swagger", +[2,32811,32812], +[0,31481,0,7653,2523], +[2,31478,553], +[3,31465,22], +"timed-out", +[2,31478,594], +[0,12215,12219,1014,28999,7406,7403], +"exceptions", +"sentry", +[3,15602,13], +[2,31499,31500], +"@graphiql/plugin-doc-explorer", +[1,2343,31488], +[0,31505,0,31510,34352], +[2,31478,5576], +[2,31436,31491], +"jsonrpc-provider", +[2,31493,31494], +[3,31490,23], +"http-connection", +[3,27276,25], +[2,31497,31498], +"ethereum-", +"test-network", +[3,31438,16], +"ocket-transport", +[2,7850,21497], +[3,4986,9], +[2,2079,4406], +[2,11183,31503], +[0,29419,29441,29454,29756,29757,29766,29807,29813], +"father-build", +"@mastra/core", +"rc-test", +[2,31520,13927], +[0,29818,4270,29823,5472,1973,29830,29830,3857,89,5131,12295,12296,5122], +"react-slider", +"slider", +[1,2343,31522], +[3,31027,15], +[2,7850,11512], +"core-licensed", +"wordpress", +"gutenberg", +[2,14013,8189], +[3,1103,9], +"angular-mocks", +[0,31529,0,31531,2487], +"graphiql", +"next-router-mock", +[3,5251,10], +"ponselike", +[2,31525,31526], +"body-scroll-lock", +[0,2817,18023,1125,1129,31764,1122], +"motion-v", +[0,30999,28818,5995,17978], +[1,2343,31546], +"radash", +"@a2a-js/sdk", +"js-tiktoken", +"hono-openapi", +"@ai-sdk/provider", +[2,31543,31545], +[3,2766,10], +"jasmine-ts", +[2,13130,3212], +[3,3793,11], +"@ai-sdk/", +[2,31643,1623], +"ui-utils", +[0,0,31547,31628,2523], +[0,1389,2665,4650], +[2,31537,31570], +"body scroll", +[2,31549,31551], +" lock", +[3,65,8], +"react scroll lock", +"react-common", +[2,31552,31554], +[3,31555,17], +"ponents", +[2,31556,31557], +[3,31555,14], +[2,31559,21189], +[3,31560,16], +"oks", +[2,31561,31562], +[2,31559,14592], +[3,31553,12], +"freeze", +"vanilla-js", +"tablet", +"bsl", +"-v5", +[2,31572,31582], +"@mastra/", +[2,1379,31574], +"node-info", +"@restart/hooks", +"resolve-path", +"@restart/ui", +[2,3744,20622], +"unco", +"ntrollable", +[2,31579,31580], +"schema-compat", +"ecosystem-react", +[2,31585,594], +[3,31548,17], +[2,11484,31587], +"sole-ui", +"@icon", +"s/material", +[2,31588,31589], +[2,3131,1512], +"reactcss", +"@types/esm", +"@case/eslint-config", +[2,31596,31601], +[3,29736,11], +"centered", +[2,10818,31597], +[3,30881,30], +[2,31599,1204], +"up-sync", +"chai-spies", +"jsx-loader", +"ntext", +[2,3808,31604], +[3,3850,10], +"@types/sane", +"testdom", +"@lukeed/uuid", +[2,31584,31570], +"color picker", +"sketch", +[2,4807,4547], +"photoshop", +[2,31616,5592], +[3,31573,14], +[2,31618,6893], +[3,31548,18], +[2,31538,31570], +[3,2651,13], +"tags-plugin", +[2,31620,31621], +[2,31626,6893], +[2,28010,1492], +[2,1585,31624], +[3,31610,24], +"mocha-jshint", +[0,4384,2076,5131,4453,2013,15535], +"@ai-sdk/azure", +[1,2343,31641], +[2,31543,31407], +"docgen/cli", +[2,10802,31632], +[2,31635,671], +"@internal/", +[2,31637,31638], +[3,28766,11], +"ypes-builder", +"@openrouter/ai-sdk-provider", +[2,1710,2136], +[0,31660,31662,31663,34352], +"is-root", +"camelcase-", +[2,24559,31675,31676], +"llm", +"agents", +"vectorstore", +"@react-d", +"nd/invariant", +[2,31648,31649], +[3,31650,11], +[2,31651,4163], +[2,1199,17586,31655], +"dnd-core", +"starts-with", +"embeddings", +"rag", +"evals", +"otel", +[0,26616,4391], +"replacement", +[0,2766,2297,2881,2886,2898,28023,3181,3758,4535], +[0,3113,26799,5131,1388], +[1,2343,31672], +[3,24807,15], +[2,31665,1286], +[3,8136,9], +"ctrine", +[2,31667,31668], +"html4", +[2,20245,16957], +[0,31679,31684,2514,2537], +[2,30415,31678], +[2,32813,18502], +"reference-", +"invalid", +"condense-newlines", +"landmark", +[0,20414,29996,17982,11049,30043,30048,3478,29457,3923,18730,20423,30050,30081,4729], +[2,30418,31681], +"olor-helpers", +"rtablejs", +"attr-accept", +[0,5526,5528,5529,31674,826,30086,4874,9241,20441,28400,1540,21594,1177,2078,2220,2222,5560,29197,3697,3752,4135,4193,4238,4481,91,4548,28519], +"vue-next", +"file-selector", +"draggable", +[3,71,24], +[2,31688,14255], +[2,69,5721], +[3,5700,24], +"ipeline-operator", +[2,31691,31692], +"-why", +[2,10876,31694], +[2,18043,200], +[3,4676,9], +"locks", +[2,31697,31698], +"drag-and-drop", +"color-name", +[3,1802,13], +"kanban", +[2,32312,2825], +"anser", +[2,2769,2086], +"le-promise", +[2,6935,31707], +[1,2343,31712], +"redbox", +"crash", +[0,31714,31730,31732,2443], +"css-mediaquery", +[0,3749,3527,11481,29170], +[3,33768,11], +"react-si", +"de-effect", +[2,31716,31717], +"iceworker", +"fl", +[2,16819,31720], +"karma-html", +[2,31722,2903], +"is-whitespace", +"nfl", +"noscript", +[2,31729,33865], +"dashdash", +"@types/ran", +[0,7812,30138,3742,1984], +"titanium-sdk", +[0,20001,671], +[3,20745,21], +"jest-preview", +[2,31395,4384], +"@polka/send-type", +[2,31005,31774], +[1,2343,31739], +[0,31746,31747,2514,2537], +[2,20413,1699], +[3,1845,22], +[2,31741,2855], +"react-mount", +"yarn-", +[2,31744,17335], +[0,58,1437,3930,814,4747], +[0,1178,29847,29851,25675,3758,3938,4216,4255,4389,4449], +"csstree", +"decap-cms-backend-aws-cognito-github-proxy", +[2,9497,31907], +[3,3321,10], +[2,31751,2849], +[1,2343,31756], +[3,19812,19], +[2,31754,965], +[0,31757,27070,27064,2523], +[0,28326,2017,31435,31469], +[1,2343,31761], +"completion", +[2,31780,31781], +[0,0,0,31762,2537], +[0,30486,5995,35981,7072,18035,89], +[1,2343,31783], +[2,31768,13083], +"viewport", +[3,15616,12], +"observer", +[3,1129,12], +"lazy load", +"inview", +"useInView", +"useIn", +"terse", +"query-plan-executor", +"decap-cms", +"aws-cognito", +"ctionObserver", +[2,31773,31777], +[2,31772,31778], +[3,31749,19], +"zure", +[2,31792,17977], +[0,0,0,31784,2487], +[0,1177,6939,89,3878,27158], +[1,2343,31786], +[0,31801,31803,31810,4139], +"@formatjs/", +"listformat", +[2,19067,31788], +[2,31787,31789], +[3,31790,14], +[3,31749,18], +[2,31792,31804], +"common-stuff", +[3,31790,11], +"cu-messageformat-parser", +[2,31795,31796], +[2,6458,1671], +[2,19067,31798], +[2,19644,8982], +[0,1104,22972,1676,2061,13896,1776,3102,4449], +"what-the-diff", +[0,53,87,94,1178,1429,1596,1177,1922,2323,2338,2384,2419,2436,2463,2510,2899,30496,3421,3697], +"git-gateway", +[2,31813,6064], +[3,18229,15], +"lat-gitignore", +"jsondiffpatch", +"gotrue-js", +[0,2323,1776,18011,5284,18444,1745], +"es-crypto", +"gateway", +[3,31793,21], +[3,19657,16], +[2,31814,2855], +[2,31813,620], +[1,2343,31818], +[0,31826,0,31829,2537], +"@nstudio", +[2,4564,2618], +[2,2617,31820], +[2,31792,2658], +[3,28165,19,9], +"hmac256", +"hmac512", +[0,2714,31809,3181,2867], +[2,31792,1973], +"exenv", +[0,30999,28818,5995,31804,31812], +"custom-", +[2,31830,11513], +[2,10704,31831], +"otp-io", +[2,29956,4963], +[2,31836,31837], +[3,23664,13], +"or-js", +"dom7", +[2,13843,353], +[2,1176,31839], +[2,14510,2091], +[2,22588,2091], +"diff-reporter", +[2,13872,31843], +[2,3024,6754], +[2,31848,31850], +[2,9944,7227], +[3,29951,21], +"tween", +"elpers", +"napa", +"runstorm", +[1,2343,31854], +[0,31909,31916,2514,2537], +[2,32904,158], +"nullthrows", +"@tiptap/core", +"metro-r", +[2,31858,96], +"metro-", +[2,31860,4227], +"s-runtime", +[2,6971,31862], +[2,5237,31863], +[3,5079,13], +"/codegen", +[2,31865,31866], +[3,31867,14], +"medium-zoom", +"js-polyfills", +[2,31868,31870], +"tinydate", +"tweezer.js", +[2,8603,1111], +"le-plugin", +[2,3630,31875], +[2,31868,31876], +"assets-", +[2,31878,29179], +[2,31868,31879], +[3,5059,11], +"olors", +[2,31881,31882], +[2,31868,31883], +"@jest/c", +"reate-c", +"-key-", +[2,31887,3046], +[2,6990,31888], +[2,31886,31889], +[2,31885,31890], +[2,3912,5959], +[2,31868,31892], +[3,31867,16], +"mmunity-cli-plugin", +[2,31894,31895], +[2,31898,4333], +[3,24539,13], +[2,17304,31900], +"laywright", +[2,32412,15001], +[2,31908,7188,32485], +"creator", +[2,10735,5130], +"mobile-", +[2,31905,5001], +"ttlcache", +"@tiptap/", +[0,30868,1414,2020,2105,2070,4745], +"cp-file", +[2,17964,31913], +[2,5063,18324], +[3,31333,16,3], +"keychain", +"yargonaut", +[0,20454,36559,30529,826,4874,30548,4135,1177,29197,91], +[2,36270,31918], +"s-test", +[2,31924,31925], +"@entypo-icons/core", +"ocial-buttons", +[2,4910,31921], +"evil-icons", +[3,15277,15], +"xecutable", +"feather-icons", +[1,2343,31933], +"fontisto", +"oslllo-svg-fixer", +"epub2", +"line-icons", +[2,4182,31931], +[0,0,21592,31936,2399], +"svg2ttf", +"svgicons2svgfont", +[0,12479,2947,7193,26421,27968,2100], +"osx", +[1,2343,31941], +"ssr-window", +"@pinia/colada", +[0,0,31946,31981,2399], +"@cmfcmf/docusaurus-search-local", +[3,3911,11], +"form-hmr", +[2,31943,31944], +[0,4493,32977], +[2,31951,31960,31962], +"currency", +"number-", +[2,31949,1671], +[3,27276,15], +[2,33571,89], +[2,31954,31957], +[3,7628,10], +"hijack", +[2,4013,31955], +"heck", +"onclick", +"outside", +"classic-", +[2,32028,1745], +"build-app-blueprint", +[2,31968,31971], +[2,812,12444], +"t-flow", +[2,17375,31965], +"hermes-eslint", +[3,31947,30], +"array-hyper-unique", +"crlf-normalize", +"ddon-blueprint", +"book", +"books", +"chapter", +"comic", +"epub-maker", +"epub-maker2", +"node-novel", +"novel", +"volume", +[0,188,4646,1542,32977,6533,3212,5472], +"matchmedia", +[2,31982,3766], +[1,2343,32268], +"yphenate-style-name", +[2,6495,31985], +"tch-", +[2,31987,11034], +[2,18655,31988], +[3,31989,12], +"mediaquery", +[2,31990,31991], +"-media-mock", +[2,3529,31993], +"@lobechat/", +[3,6415,10], +[2,31996,3582], +"escaping", +"respond", +"goat", +"matchMedia", +"🐐", +[2,32004,32005], +[3,31263,13], +"text-engine", +"color-logger", +"ice-cap", +[2,31995,18035], +"esdoc-importpath-plugin", +[2,31995,1807,32030], +"ECMAScript6", +[3,6608,10], +[2,32012,32014], +"2015", +"ECMAScript7", +[2,32017,6893], +[3,32013,13], +"ECMAScript8", +[2,32017,6836], +[2,3944,8253], +"k-monitor", +[2,4117,32021], +[2,32020,32022], +[3,32023,15], +"log-monitor", +[2,32024,32025], +"proposal", +[3,19209,12], +"http-graceful-shutdown", +"client-ipc", +[2,32032,32033], +[3,32010,19], +"server-ipc", +[2,31995,2092,591], +[2,31995,32036], +"model-runtime", +"mdc", +"developer", +"combobox", +"multiselect", +[2,31995,3742], +[2,31995,594], +[2,31995,32044], +"web-crawler", +[2,32047,13538], +"json2mq", +[3,1841,9], +"-apps", +[2,21340,32048], +"-carousel", +[2,11167,32050], +"why-did-you-update", +[2,32057,32058], +"carousel", +"Image slider", +"orbit", +[3,1841,12], +"rts", +[2,1841,6324,4978], +[2,32074,32082], +"@tippyjs/react", +"@vxna/mini-html-webpack-template", +"common-dir", +[2,1861,3427], +"name-p", +[2,32065,84], +[2,18977,32066], +"glogg", +[3,26921,11], +[2,32069,1646], +"jss", +"jss-plugin-camel-case", +[3,32072,12], +[3,32059,20], +"ompose", +[2,32073,32075], +[3,32072,11], +"default-", +"default-unit", +[2,32077,32079], +[2,32077,2202], +"s-gateway", +"isolate", +[2,32077,32083], +[2,32077,3639], +"listify", +[2,12171,2651], +"q-i", +"qss", +"-annotation-resolver", +[2,3822,32090], +[3,32091,13], +"-handler", +[2,4904,32093], +[2,32092,32094], +[2,32047,6038], +"react-group", +[2,4287,1928], +"type-detect", +[2,32047,45], +"inter-element", +"@types/buble", +"py-webpack-plugin", +[2,4860,32103], +"@types/esc", +"odegen", +[2,32105,32106], +"h-sum", +[2,12395,32108], +"@types/ke", +"ymirror", +[2,32110,32111], +[3,23829,17], +[2,32113,3119], +[2,27479,4408], +[2,13419,32115], +[3,12290,12], +[2,32117,13735], +[3,8157,15], +[2,32119,5331], +"deabsdeep", +"white-space", +"deepfreeze", +"dog-names", +"amia", +[2,22060,32125], +[2,32047,32128], +"market-sdk", +"keymirror", +[2,4293,6987], +"@lobehub/tts", +"tts", +"@lobehub/ui", +"@neondatabase/serverless", +"@next/third-parties", +"@react-spring/web", +"jest-pre", +[2,29611,32139], +"user-require-helper", +"@serwist/next", +" vector graphics", +[2,24090,32141], +"tagname", +[2,24116,7466,32165], +"svginjector", +"@t3-oss/env-nextjs", +"@trpc/client", +"@trpc/next", +"@trpc/react-query", +[3,32029,17,5], +"TapEventPlugin", +"300ms", +"http-shutdown", +"http-terminate", +"prometheus", +[2,33763,13538], +[2,30495,32158], +"dge-config", +[2,36840,32160], +"ctions", +[2,32163,32168], +[3,7214,13], +"@vercel/s", +"icss", +"lement", +[2,24116,32179], +"@4tw/cypress-drag-drop", +"peed-insights", +"@xterm/xterm", +[2,4609,2759], +"brotli-wasm", +"alert", +[2,29706,32174], +"-and-timezones", +"dexie", +"drizzle-orm", +"commoner", +[3,10755,11], +"hydrate", +"coverify", +"es3ify", +"infima", +"grunt-jest", +"jasmine-t", +"apreporter", +[2,32184,32185], +"drizzle-zod", +"populist", +"drizzle-", +"gpt-tokenizer", +[2,32192,32193], +"inferno-hy", +"perscript", +[2,23910,13494,32197], +[2,9944,9847], +[2,9944,591], +"-to-backend", +"js-sha256", +"vnode", +"createVNode", +[2,32237,1098], +[2,14040,1276], +[3,1898,19], +"lay", +[2,1962,32204], +[2,2783,3758], +[3,15568,16], +[2,1781,32212], +"scrolling", +"infinite", +"fixed", +[3,31752,17,3], +"langchain", +"gulp-rtlcss", +[2,26708,32182], +"langfuse", +[2,5223,32178], +[2,1861,32217], +"dark mode", +[2,32216,1732], +"lucide-react", +[2,32223,32224], +[3,3120,12], +"txt", +"react-popper", +"bootswatch", +"docstrap", +"storysource", +[2,10818,32228], +"model-bank", +"customize-cra", +[2,32234,32235], +"holderjs", +"modern-s", +"creenshot", +"react-prism", +[3,34791,12], +"logging-helpers", +"next-mdx-remote", +"nextjs-toploader", +"nuqs", +"officeparser", +[2,32244,1098], +[3,33256,22], +"github-files-fetcher", +"oidc-provider", +"ollama", +[2,7719,1612], +"partial-json", +[2,3502,33498], +"@stitches/react", +"animate-sass", +[2,3562,32254], +"trolling", +[2,32256,32257], +[3,839,14], +"gr", +[2,11932,8861], +"mocha-r", +"eporter", +[2,32259,32260], +[2,4385,32261], +"pdf-parse", +"preview jest", +[2,27010,32290], +"plaiceholder", +"posthog-js", +[0,0,32306,32313,2537], +"log-utils", +"pwa-install-handler", +"line by line", +"engine-base", +"engine-handlebars", +[2,32278,32279], +"lo", +"repl", +"lo-dash", +"react-con", +"fetti", +[2,32283,32285], +[2,4150,32282], +"-75lb", +"react-la", +[2,11072,2731], +"yout-kit", +[3,19580,11], +[2,32286,2002], +[2,5237,57], +"lws-middleware", +"-tagfilter", +"refactoring", +"printing", +[2,3715,32292], +[2,26973,32308], +"react-pdf", +"react-rnd", +"react-scan", +[2,32299,32304], +[3,3913,11], +[3,12133,19], +"tagfilter", +"prepare", +"dangerous", +"oso", +"react-wrap-balancer", +[0,1175,2323,2332,30561,2367,2459,2494,2504,2510,2530,1894,4045], +[2,17355,13771], +[3,23279,13], +[2,4627,8840], +[2,3166,32309], +"mobile-detect", +"composition", +[0,30563,30564,30565,30566,30567,30568,5131,9006], +[2,32315,32316], +"resolve-a", +"ccept-language", +"rtl-detect", +"lister", +"parse-entities", +"svix", +"tokenx", +"ts-md5", +"@red", +"grunt-jasmine-node", +"@redis/bloom", +"@redis/", +[2,32326,5576], +"unstructured-client", +"@redis/json", +[2,32326,7193], +"use-merge-value", +"time-series", +[2,32326,32332], +"mobilegrade", +[2,20223,16460], +"sniff", +"word-extractor", +[2,32339,594], +"zustand-", +[1,2343,32427], +"@cfaester/enzyme-adapter-react-18", +"ocly/openapi-core", +[2,32323,32342], +[2,32348,3005], +"nth-child", +"nth", +"rc-hammerjs", +[3,30906,13], +[3,1750,11], +[2,1186,3939], +[2,32349,32350], +"theme-redoc", +[2,32349,32352], +[2,32356,32366], +[3,8286,13], +"@lobehub/i", +"heme-common", +[2,32355,32357], +[2,20201,594], +"is-alphanumerical", +"api-doc", +[3,32351,12], +[2,32362,10958], +"is-decimal", +"is-hexadecimal", +"18n-cli", +[2,32047,671], +"netlify-plugin-cache", +[2,32370,553], +[3,32127,16], +[2,32047,32373], +"cssinjs", +"seo-cli", +[2,28427,32375], +[3,28091,16,8], +"just-curry-it", +"reducers", +[2,17790,32377], +"@next/eslint-plugin-next", +[2,16479,1414], +[3,1905,16], +"icorn-camelcase", +[2,32381,32382], +[2,4321,9776], +[2,2130,32384], +"@peculiar/webcrypto", +[2,16931,32388], +"roma-js", +"@wdio/selenium-standalone-service", +"babelrc-rollup", +[2,32398,32399], +"insert-line", +[2,5316,1464], +[2,3944,2700], +"queryselector", +"shadowdom", +"rdme", +"@types/cr", +"ypto-js", +"@types/ip", +"tanstack", +[2,32403,32404], +"gulp-str", +"eamify", +"rc-tools", +"@redux", +"-saga/core", +[2,32406,32407], +[2,32417,32419], +"tappable", +[2,33060,1501], +[3,13875,15], +"lias", +[2,32412,32413], +[2,3807,32442], +"effects", +"@types/nu", +"side effects", +"meral", +[2,15461,32423], +[2,32422,364], +"@actions/", +"idc-provider", +"redux-m", +[2,32424,18716], +"@types/pg", +[0,32428,32472,2514,2537], +[0,30585], +[2,32430,32439], +"@types/r", +"ecmarkup", +[2,32437,32438], +"gulp-emu", +[3,2453,9], +[2,32434,2995], +[2,2505,4088], +"@readme", +[3,23709,18,8], +"tl-detect", +[2,5051,32441], +"ystemjs", +"ful", +[2,24167,32455], +"dbdocs", +"dpdm-fast", +[2,32189,32451], +"goober", +"jest-esm-jsx-transform", +"parcel-plugin-css-to-string", +"use-throttled-effect", +"dbml-generator", +"abstract", +"hex", +"wai-aria", +"ice-detect", +[2,32466,38], +"drizzle-kit", +[2,1949,32459], +"dx", +"is-hidden", +"fake-indexeddb", +[2,9335,6424], +"just-diff", +"smart-tv", +"smarttv", +[3,15570,11], +[2,3506,4581], +[2,3862,32492], +"mcp-hello-world", +[2,12285,2527], +"remark-mdx", +[0,188,11018,30592], +"simple-routing", +[3,23352,11], +"mdx-", +"jsx-a", +[2,32476,5714], +[2,32475,32477], +[2,8137,32478], +[2,8909,32479], +[2,32474,32480], +"serwist", +"snapshot-", +[2,32483,1182], +"-bubble-menu", +"vercel-ai", +"nano-equal", +[2,1849,32489], +"-fuzzy", +"azure-openai", +"shouldComponentUpdate", +"file-viewer", +[2,3862,15571,32498], +"visual-model", +"stt", +[1,2343,32500], +"quicklook", +"-v2", +[2,3862,3730], +[0,0,32501,32517,2487], +[0,33043,442,34111,30737,4874,7677,22839,1177,1895,1942,1982,2807,25209,2990,20085,1894,19713,30762,23535,4131,1531,4507,91,4523,1984], +[2,31995,32503,32515], +"observab", +"image-gallery", +"image-viewer", +[2,32510,32530], +[2,32508,32509], +"vitepress-", +"plugin-group-icons", +[2,5119,32511], +"vg", +"issue-", +[2,32512,57], +[2,21520,22370], +"ility-otel", +[2,32518,32526], +[0,30769,8893,7595,7517,6564,7265,1209,3776,7268,6081,4799,553,91,4545,614,6731,6435,594], +[3,217,9], +"mock-stdio", +[3,3998,15], +"ebpro", +[2,32520,32521], +[2,9785,24387], +[3,23523,21], +[2,32524,3874], +"ndicator", +"progressbar", +"distribution", +"indeterminate", +"-charts", +[2,3862,32543], +[1,2343,32533], +[0,32534,32537,32542,2487], +[0,30787,28465], +[2,17092,32536], +"-path", +[0,11536,29317,30792,8850,1397,1556,2020,2070,30794,3510,1689,29444,4042,4174,4227,91,8550,28865], +[2,32539,21172], +[3,5079,24], +[2,11147,970], +[2,5557,970], +[0,6996,668,5362,28865,4042,2924], +"youtube-iframe", +[2,3115,19101], +"unified-args", +[2,32563,5066], +[1,2343,32548], +[0,0,32549,32555,2523], +[0,442,7677,1177,1938,1942,30828,1964,1966,2832,1531,30835,91,4523,1983,1984], +"ackends", +[2,32904,990], +"iframe", +[2,3993,6424], +"@cacheable/utils", +[0,21354,91,2844,7020,7119,30841,20179,7047], +[1,2343,32642], +"@apphosting/build", +"@atomico/rollup-plugin-sizes", +"git-branch-is", +"remark-slug", +"react-spring", +[2,32565,10896], +[3,30798,17], +[2,32575,32576], +[3,32557,12], +"-isomorphic", +[2,23276,32566], +[2,25131,32566], +[2,32570,32574], +[3,32041,11], +"@bedrock-layout/use-forwarded-ref", +"gmail-send", +[2,4807,31528], +"ython-interpreter", +[3,3895,11], +"-singleton", +"text-hex", +"ssrf-safe-fetch", +[2,32589,32623], +[3,23054,11], +"ent-config", +[2,32580,32581], +"ntributors", +[2,24218,32583], +[3,9343,15], +"gap", +[2,32585,32586], +[3,9347,9], +[3,30640,22], +"cense", +[2,32588,32590], +[3,23078,23], +[2,32592,10663], +[3,23082,24], +[2,32594,7210], +[3,23085,14], +"get-nonce", +"le-extension", +[2,32596,32598], +[3,23085,18], +[2,32600,23076], +"rst-", +"heading-", +[2,32603,2970], +[2,32602,32604], +[2,32596,32605], +[3,23092,13], +[2,9398,590], +[2,32607,32608], +"consec", +"utive-blank-lines", +[2,32610,32611], +[2,23099,32612], +"emphasis-", +"as-heading", +[2,32614,32615], +[2,23099,32616], +"name-articles", +[2,2093,32618], +[2,23099,32619], +[3,32620,25], +[3,32612,12], +"rast-color-function", +"dashes", +[2,32622,32624], +[2,32621,32625], +"irregular-", +[2,32627,7169], +[2,32621,32628], +"mixed-case", +[2,32621,32630], +"@theuiteam/lib-builder", +"crawler-detection", +[2,32746,31528], +"outer-dashes", +[2,32621,32635], +[3,23118,23], +[2,32637,8958], +"punctuation", +[2,32637,32639], +"missing-", +[0,0,0,32677,2487], +[2,31635,32673], +"blank-lines", +[2,32641,32644], +[2,23099,32645], +[3,32646,16], +"ulti", +"ple-toplevel-headings", +[2,32648,32649], +[2,32647,32650], +"dollars", +[2,5124,32652], +[2,23099,32653], +[2,16065,17537], +[2,23099,32655], +[3,32656,18], +[2,32657,591], +"ordered-", +"list-ma", +"rker-value", +[2,32660,32661], +[2,32659,32662], +[2,23055,32663], +[3,23139,22], +"-alignment", +[2,32665,32666], +[2,17998,2585], +"retext-english", +"retext-", +[2,10832,2195], +[2,32670,32671], +"ai-v6", +[2,32675,32676], +[3,32643,13], +"sdk-v4", +[0,3358,1564,10057], +[2,32700,7174], +[3,23096,14], +"nk-title-style", +[2,32679,32680], +"maximum", +"-heading", +[2,32683,15309], +[2,32682,32684], +[2,23055,32685], +[3,32686,20], +"line-length", +[2,32687,32688], +[3,23113,30], +"ed-urls", +[2,32690,32691], +[3,23113,25], +"s-in-section", +[2,156,32694], +[2,32693,32695], +[3,32617,18], +"ty-url", +[2,32697,32698], +[3,31198,34], +"-paragraph", +[2,15403,32701], +[2,32637,32702], +[3,23118,16], +[2,32704,14550], +[2,170,23116], +[2,23099,32706], +"-like-url", +[2,11043,32708], +[2,23099,32709], +"ed-fu", +"ll-reference-image", +[2,32711,32712], +[2,14475,32713], +[2,23124,32714], +[3,32715,39], +[2,32716,163], +[3,32672,14], +[2,32718,3997], +[2,31228,27863,32721], +"bsorbers", +[2,32723,32724], +[3,32720,20], +"emitters", +[2,32722,32726], +"-shape-circle", +[2,32728,32729], +[3,32725,35], +"square", +[2,32731,2585], +[3,31244,19], +"autolinker", +[2,32734,32735], +[3,31244,14], +"lim", +[2,31281,14858], +[2,31281,32738], +"roll", +[2,31281,32740], +"tilt", +[2,32742,32743], +[3,32739,22], +"winkle", +[2,31281,32745], +"wobble", +"tua-", +[2,4511,32078,4366], +[1,2343,32763], +"caseless", +[2,32752,2855], +"aws-sign2", +[3,32674,18], +"oauth-sign", +[2,3013,2660], +"forever-", +[2,32755,4575], +"har-validator", +"is-typedarray", +[2,2666,1580], +"use-callback-ref", +"taper", +"karma-cli", +[0,32764,32771,32780,2399], +[0,8181,26057,28329,28607,28620,28631,28632,28672,28673,26364,28963,29273,28685,30585,31857,31902,32411,33136,34082,33056,33586,33588,33590,33591,34083,33592,33600,33601,33604,33613,33623,10981,10984,37051,34087,28709,1556,16230,28718,28761,28780,28805,28883,28896,28911,2161,36538,28964,3090,3189,31530,28974,3510,29049,15451,4382,29050,4383,27921,27438,29161,29165,29219,29220,29235], +"glob-bin", +"use-sidecar", +"JSDA", +"stealthy-require", +[3,4010,16], +[2,32769,364], +[0,29267,29290,29295,10614,34092,11016,11018,31408,29304,1177,2559,29332,3980,4543,1984,29887,29323,188,13151], +[2,32774,32779], +"thenable", +[3,5430,21], +"useRef", +"createRef", +"merge refs", +"vconsole", +"ummary", +[0,29345,29332,8588,4383,12951,188,12072,6284,91,10309,181,4380,5130,29346], +[1,2343,32785], +[2,32783,32784], +"detect-n", +"ode-es", +[0,0,32791,32799,2443], +[2,4807,1845], +"@react-pdf/renderer", +"code spliting", +"sidecar", +[2,4625,8119], +[0,5087,1192,4468,4474,4493,91], +"index.js", +[2,32028,33976], +"is-wayland", +"copy-text-to-clipboard", +[2,32797,32798], +"mutation", +"-observer", +[0,5995,10906,24299,29527,29563,29565,29575,29576,29658,29706,29723,1623,6802,4967,29731,29730,29842,29845,29868,29963,30047,30133,30136,30161,30163,30487,91,30489,30501,30523,30562,30569,30574,30591,30593,30600], +"-tslint", +[2,1009,32800], +[3,1009,11], +"/analyze-trace", +[2,32802,32803], +[2,1977,2528], +"micro-", +[2,32806,7906], +"svelte-loader", +[1,2343,32837], +"down-config", +[3,13476,17], +"ntext-async-hooks", +[3,36559,16], +"ResizeObserver", +[2,32817,11937], +"worktop", +[3,8809,20], +[2,17214,5477], +"perty-rule-prelude-list", +"path-parse", +"scss-loader", +"-flag", +[2,6846,32822], +[2,15884,32823], +[3,1790,16], +"copy-dir", +[3,8119,14], +[3,32790,18], +"vue-scroll", +"vue-scrollbar", +"vue-plugin", +"滚动条", +"eartbeat", +"lory.js", +[2,33112,33113], +"adjust-sourcemap-loader", +[0,32838,32846,30825,2487], +[0,29304,26699], +[2,32841,10238], +[2,4807,1955], +[3,31435,16], +"cls-hooked", +"myrmidon", +[2,31436,2018], +[3,30380,15], +[0,1192,1177,4042,4468,1894,91,5087,4880,1895,1955,2780,1011,1009], +"ncredible", +[2,32845,32847], +"ensor", +[2,4914,32849], +"secrets", +[2,16645,32851], +[3,25837,16], +"anjs-rules", +[2,32853,32854], +"fatum", +[2,14560,6816], +[2,3335,32857], +"telegram", +[2,21386,32859], +"vesta", +[1,2343,32868], +"react-camera-pro", +"documentate", +"idebar", +"umentate", +[2,25821,32866], +[0,0,32869,32882,2523], +[0,4880,4883,89,3824,91], +"better-npm-run", +"clamp.js", +[2,19825,4627], +[2,1870,32872], +"ewma", +[2,4031,24388], +"spdy", +"karma-fixture", +[2,20441,6543], +"restify-", +"clients", +[2,32879,32880], +[0,89,28946,6847,30858], +"watershed", +"@applitools/utils", +"DTrace", +"karma-opera-launcher", +[1,2343,32893], +[3,18613,12], +"convict", +[2,32957,32963], +"antora-component", +"@dataui/crud", +[0,32898,32902,32915,2523], +"is-uuid", +"rewrite-imports", +"quit", +"shutdown", +[0,30939,30941,30944], +"terminate", +"kill", +"serviceworker", +[0,30949,30951,30953,30954,30961,30966,30973,30976,30977,30980,30984,30985,30988,31003,31007,31024,31033,31036,31053,31060,31065,31067,31068], +[2,32904,11017], +[3,32884,12], +"@types/webrtc", +"NoSQL", +"reql", +" language", +[2,3766,32908], +"applitools", +"eyes-sdk", +"test automation", +"visual regression", +[2,32731,27819], +[0,26591,1973,5472,13083,6969,1429,1145,1745,31077,31079,31080,1776,1204,6813], +"accelerate", +"detectrtc", +[2,32892,30665], +[2,32920,614], +[3,32918,13], +[1,2343,32935], +[2,32923,32931], +"install-p", +"json-copy", +[2,28093,32924], +[2,31281,32933], +"nano-copy", +"plain-", +[2,3425,1496], +[2,32928,32929], +"eers-cli", +"prepend-file", +"life", +[2,32937,32938], +[0,0,30812,30825,2523], +[1,2343,32964], +[3,32737,23], +"tate", +"drag-drop", +"plasmo", +"camera", +"prebuild", +"-install", +[2,32942,32943], +"webcam", +"-os", +[2,642,32946], +"practice", +[2,15090,32948], +"cam", +"Automation", +"pixel", +"blob-to-buffer", +"recognition", +"webRTC", +"autohotkey", +[3,35870,14], +"drag drop", +"machine", +"drag & drop", +"learning", +"react-h5-audio-player", +"itro-modules", +[0,32974,33037,33040,2523], +[2,32995,8745], +[3,16005,16], +[2,32966,4142], +"-twoslash", +[2,4614,32968], +[2,9408,32969], +[2,15125,5711], +"date-time", +"flru", +[0,31384,31735,34024,31315,31330,31358,34025,31361,31362,30375,31368,31378,31383,3266,9011,4763,9355], +[2,33470,33475], +[3,30686,19], +"pinia", +[2,15476,8961], +"wasm-pack", +"@expo/spawn-async", +[2,32982,147], +"@parcel/c", +"@parcel/fs", +[2,32985,5602], +[3,5367,15], +[2,5368,7158], +"mnemonic-id", +"node-object-hash", +"@plasmohq/init", +[2,32991,32992], +"@plasmohq/", +"parcel-config", +[2,32994,23], +[3,32990,19], +[3,10848,14], +"@plasmo/config", +[2,32999,33003], +"js-cleanup", +[3,32996,11], +[3,4058,16], +[2,33000,3874], +[2,25572,1155], +"stants", +[2,33006,594], +"removal", +"@plasmo/", +[2,33006,5130,33008], +"-shared", +[2,4807,32965], +[2,13843,19101], +"ixins", +"visionOS", +"tvOS", +"macOS", +[2,33018,89], +"3-drag", +[2,6491,33016], +"@iconify/", +"cpp", +[2,4861,24847], +[2,33022,2847], +"static-s", +[2,21897,33024], +"sass2less", +"swift", +"player", +"mse", +"commenting", +[2,14034,13828], +[3,19570,16], +[2,33030,2649], +"spdx-", +"eme", +"jsi", +"satisfies", +[2,33032,33035], +[0,8818,4874,4880,4883,89,3824,1984,31390], +[2,2369,2284], +[3,32978,18], +[0,31398,3287,4592,31399,89,4963,181,4967,4380,31400,31406,31407,31408,6070,31409,30210,31410,31422,31423,31424,31431,31432,31433,31454,31466], +"p-banner", +[2,33039,33041], +[2,33044,147], +[3,5517,19], +[1,2343,33049], +[2,8147,14773], +"ts-expose-internals", +[2,13888,2150], +[0,0,0,33054,2537], +[2,1884,10791], +"buffer-es6", +"process-es6", +"astrojs", +[0,3563,1623], +"compliance", +[2,33060,33585], +"dset", +"flattie", +"magicast", +[3,31902,18], +"zod-to-ts", +"xxhash-wasm", +"yocto-spinner", +"@oslojs/encoding", +[2,33066,33067], +"@astrojs/c", +"ompiler", +[2,34674,13535], +"zod-to-json-schema", +"http-cache-semantics", +[2,33072,33073,3984], +"@astrojs/m", +"arkdown-", +[2,34674,6943,19687], +[2,7185,33076], +"-object-hash", +"MappingURL", +[2,4225,33077], +[1,2343,33081], +"@types/dlv", +[0,33089,33090,33091,2537], +"rehype-toc", +"astro-scripts", +[2,33085,33086], +[3,24220,12], +"titles", +[2,4807,9485], +[2,4807,33070], +[0,26675,26678,26684,26690,26685,3259], +[0,5087,4874,1596,1192,1894,3951,3980,4094,4468,4474,1531,4521,91], +[0,12659,8124,1745], +[1,2343,33094], +"strata", +[0,33095,33102,33103,2523], +[0,9355,9307], +"nd-cache-dir", +[2,16785,33096], +[3,13364,12], +[2,33098,1095], +"graphlib", +[3,4069,16], +[0,1983,89,2220,3824,26744,966,1030,972,968,30521], +[0,89,2220,31523,1932,1745,25677], +[1,2343,33105], +[0,33106,33107,33108,2523], +[0,2611,3478,1759,31533,33507,3084,31534,2226,31535,2845,33062,31609,31536,31750,31548,31617,31619,31571,5328,31610,31623,29421], +[0,4763,4493,1177,2205,4042,1984,4473,23203,91,53,4874,31629,31631,31634,32643,2069,10879,8818,32674,32750,7677,31636,33137,31639], +[0,31408,31645,29486,4575,31646,31647,31656,31657,31658,3151,2041,91,31659,5130], +[1,2343,33132], +"fuzzysearch", +"sander", +[3,29704,20], +"ntax-descriptor-syntax-production", +"@types/d3-", +[2,33114,4552], +[2,33114,1473], +"force", +[2,33114,33117], +"hierarchy", +[2,33114,33119], +[2,33114,16662], +[3,33121,11], +[2,33122,1659], +"@saintno/comfyui-sdk", +"@virtuoso.dev/masonry", +"treemap", +"sunburst", +[2,13480,33130], +"diagram", +"jaeger", +[2,13475,4715], +[0,0,33135,33217,2523], +[2,5088,33134], +"dfkit", +[0,107,972,5087,1742,1192,3286,1894,89,3824,3904,4039,4468,91], +[2,33142,33147], +[2,31635,3965,553], +[2,33141,20760], +[2,33140,23], +[3,34681,19], +[3,10210,16], +[3,32411,20], +"testrunner", +"@next/", +"@next/env", +"@rspack/core", +[3,26697,11], +[3,5215,12], +"piccolore", +"-optimizer", +[2,11928,33150], +[2,33148,33151], +[2,4850,14643], +"css/metrics", +[2,4202,33154], +[2,17189,33155], +[3,28436,14], +[2,33157,16358], +[2,33157,6805], +[3,33159,15], +"rimitives", +[2,33160,33161], +"turborepo", +"triples", +[2,29314,33164], +[2,27913,1237], +[2,33144,33166], +[3,33167,15], +"nomodule", +[2,33168,33169], +[2,3878,3007], +[2,33144,33171], +"@next/swc", +"@taskr/clear", +"ac-colors", +"@taskr/esnext", +"mphtml-validator", +[2,9165,33177], +[2,10880,1179], +"i-info", +[2,4857,33180], +[3,11796,15], +[2,33182,10366], +[3,7808,17], +"rve-s", +[2,16826,9654], +"tatic-core", +[2,33185,33187], +[2,33184,33188], +"hsv", +"@types/fresh", +"urry", +[2,7887,33192], +"th-to-regexp", +[2,28121,33194], +"atform", +[2,28175,33196], +"@types/send", +"amphtml-validator", +"async-sema", +"lch", +"cli-select", +"color-names", +"client-only", +"cmyk", +"comment-json", +"mix", +"edge-runtime", +[2,13773,1194], +"lodash.curry", +"native-url", +"string-hash", +"taskr", +"unistore", +"watchpack", +"harmonies", +[0,89,3286,23803,3287,38,3212,1973,5472], +[1,2343,33219], +[0,0,33220,33224,2487], +[0,603,8862,811,816,6373,5535,30867,5087,13204,31087,11016,17494,11018,13072,1503,1567,1610,1192,2780,2832,2990,15324,1894,4042,4073,4076,4201,29889,4383,4468,91,1983,188,4639,4646,19235], +[3,18758,12], +"ogress", +[2,33221,33222], +[0,188,8588,31685,31687,31700,7838,29889,31702,1802,17819,29953,31703,91,31704,4453,5131,5284,4627,181], +[1,2343,33226], +[0,26338,0,33234,2537], +[2,27135,16460], +[2,33229,33521], +[3,30464,13], +"domparser-rs", +"rtl", +"ltr", +[2,33461,33965], +[0,3857,5128,31912,89,5131,12295,12296,181,15571,35060,158], +[2,33236,18200], +"get-port-", +[2,33238,33239], +[3,5366,9], +"tter-sqlite3", +[1,2343,33241], +[0,33242,33246,25117,2487], +[0,30784,20378,16860,3530,3561,28865,27921], +"@antfu/ni", +"run series", +"@dotenvx/dotenvx", +[0,58,31292,5180,30787,37017,28465,8862,811,16808,10895,24725,9743,37012,28572,1415,1457,1544,1573,1594,1615,30023,1759,1763,37014,668,1869,2007,984,28575,31308,18584,3090,3189,11480,3266,3445,3493,3510,34928,3527,3613,3616,37015,28119,24759,29444,4042,4060,2278,21688,4200,37013,4072,4955,27438,4729], +[2,4807,30228], +[1,2343,33252], +"LINQ", +"FRP", +[2,29445,1732], +[0,0,0,33278,2537], +[2,33254,8253], +"@vitejs/", +[2,23354,6708], +[2,5,33255], +"side-effects", +[2,14614,33257], +[3,1705,12], +"ruiser", +[2,33259,33260], +[3,18106,16], +[2,33262,2429], +[2,1921,33274], +"tslint-etc", +"no-toplevel-property-access", +[2,4491,33266], +"tslint-no-", +"unused-", +[3,5804,11], +[2,33270,1429], +[2,33269,33271], +[2,33268,33272], +"wc", +[2,9352,364], +"datagrid", +"survey-core", +[0,3857,5128,12295,12296,28641,1616,5131,1149,4160,28654,28656,16722,31824,31825,3348], +[1,2343,33280], +[0,0,2667,31019,34352], +[1,2343,33300], +" allocate", +[2,1398,33282], +[2,17681,1965], +"2fa", +"hotp", +"uninitialized", +"topt", +[2,33290,33291], +"google a", +"uthenticator", +[2,33294,7120], +"mock-env", +[3,5165,11], +"dist-tag", +"one time password", +"prepublish", +[2,37718,20105], +"2 factor", +[0,33301,33306,33372,34352], +[0,5145,30551,30583,5154,7709,28384,30584,13437,30602,30603,30609,30610,13187,30814,12207,7948,30824,30866,30887,30906,31178,31179,31247,31255,31263,32003,32008,32010,32031,32975,32034,32035,32502,32041,32569,32042,32043,32045,32053,32059,32060,32096,32100,32127,32131,32133,29421,32134,32135,33128,33131,32787,32136,33124,32140,32146,958,32147,32148,32149,29261,32156,32157,32159,32161,33125,32169,30778,1114,13215,32171,35358,977,32173,1673,1676,32175,1687,32176,32187,31930,2069,37853,2096,4776,32190,2226,2646,2681,23913,32194,29762,2696,12105,32198,32208,2928,32213,32216,32220,3021,32221,3096,32222,3127,26568,32230,32232,3266,3286,3285,32239,32240,29306,3415,32241,32242,32246,32247,31407,32248,32249,32250,32263,29899,3513,3519,3533,32266,3555,32267,20325,32270,3765,3777,89,32274,3824,11366,12229,3837,32280,15575,32295,3882,32296,3885,32297,32298,32305,3984,3988,3989,32314,32317,4135,4164,9348,32578,4302,4341,32320,26713,4376,32321,32322,11804,32328,4566,32331,3348,32337,4729,4745,4763,9355,32338], +"@sai", +"lshq/lodash", +[2,33302,33303], +[2,4807,4588], +[0,192,37097,32344,32354,32367,32369,32371,32374,32379,32386,8648,27424,21120,968,972,974,32387,32391,5245,4864,32400,8818,4870,5139,4874,32409,32420,33133,32426,4880,4883,32429,5254,32440,11800,9315,9241,29891,7677,12384,1529,1556,1610,1620,32444,1759,1763,32445,32446,32457,1177,32458,32461,2151,2070,2559,2675,28375,32463,2990,1209,3117,32469,3171,3310,640,32470,3478,1894,3985,9340,32471,3992,28380,4131,32482,4320,4494,4507,91,4549,4555,1983,1984], +"captains-log", +"js-f", +"ile-", +[2,33309,19101], +[2,33308,33310], +[2,9480,33311], +"flaverr", +"survey", +"i18n-2", +"include-all", +"surveyjs", +"-as-action", +[2,32959,33318], +"survey-library", +"pack-process", +[2,32959,33321], +[3,33322,12], +[2,33323,1552], +[2,20100,3031], +"ictionaries", +[2,27239,33326], +"parley", +"rttc", +"form-component", +"-generate", +[2,4104,33331], +"sails-", +"stringfile", +[2,33333,33334], +"skipper", +"-addresses", +[2,4082,33337], +[2,22775,33338], +"whelk", +"form-rendering", +[2,33323,2150], +"@sailshq/", +[2,33343,705], +"survey-renderer", +"root-require", +"dynamic-form", +"hook-orm", +[2,33333,33348], +[3,33349,11], +"sockets", +[2,33350,33351], +[2,24095,33358], +"sails.io.js", +"-store", +"-file-store", +[2,1577,33356], +"-form", +"mvc", +"form-library", +"form-management", +"web-framework", +"sailsjs", +[2,8631,33366], +"sails.js", +"naire", +"data-collection", +"data-validation", +"input-validation", +[3,7842,12], +"schema-form", +[0,5130,31409,31431,3287,32486,31407,32490,32494,32132,32495], +[2,33374,3552], +[3,14944,11], +[1,2343,33468], +"truncate-", +[2,33467,33631], +"utf8-bytes", +[2,33376,33378], +"js-api", +"mktemp", +[2,30767,33384], +"filename", +"wasm-nodejs", +[2,31208,22074], +[2,11183,6882], +[2,13167,33388], +"abs", +[2,33391,10271], +"parse-srcset", +[3,13169,16], +[3,13405,16], +[2,11183,614], +"ostrophe", +[2,33392,33394], +[2,11183,158], +[2,33398,1020], +[3,33396,15], +[2,11183,33400], +"steps", +[2,33402,2699], +[3,33387,17], +[2,11183,18346], +[2,33405,9997], +[3,33403,15], +[2,13163,11218], +[3,32049,11], +[2,33407,13756], +"-sin", +"gle-context", +[2,33409,33410], +[2,2784,33411], +[3,31591,11], +[2,4961,4184], +[2,33413,33414], +[3,4927,10], +[2,11183,3811], +[2,33421,1799], +"glob-importer", +[2,33416,33419], +[3,33399,15], +[2,33421,10205], +[2,33421,10222], +[2,33425,184], +[3,33393,15], +[2,33427,10261], +[3,11185,16], +[2,33429,18338], +[3,13162,15], +[2,33429,5449], +[2,33432,9939], +[3,13162,17], +[2,33434,11206], +[3,33404,16], +[2,3115,11415], +[2,33439,33440], +"bare-script", +[2,1818,11415], +[3,27467,17], +"tions", +[2,33442,10148], +[3,33417,15], +[2,13167,11241], +[2,33445,33446], +[3,33418,16], +"gmented", +[2,33442,33448], +"agination", +[2,33389,11245], +[2,33397,11211], +[2,11183,9044], +[2,33453,33457], +[3,5050,13], +"food", +"drink", +"helpful", +[3,14673,16,7], +"ourcesoftware", +[2,8423,33458], +[2,25184,33466], +[2,41,3874], +"teaching", +"experi", +[2,33463,1744], +[2,13527,591], +"local-npm-registry", +[3,5123,14], +[0,33469,33476,6151,2523], +[0,546,8605], +[3,32034,11], +"ecdh", +"ecdsa", +"solver", +"bplist-creator", +"etch-sse", +[0,8616,91], +"seed", +[1,2343,33480], +"oxfmt", +[0,33481,23733,33483,2523], +[0,29421,6494,1525,2026,12105,4548,4763], +"@bazel/runfiles", +[0,29681,29695,29718,29719,31264,1745,13083], +[1,2343,33485], +[0,33486,33487,33488,2537], +[0,7384,26870], +[0,4200,3510,89,4207,4135,1984,24324,3824,4459,11143,16485,3170,3527,27921,91,4874,5254,37085,8778,11938,32815,32818], +[0,4270,29043,1984,5472,1973,4627,4963,23246,89,188,3709,5926], +[3,21120,19], +[2,33489,3543], +"aggregate-error", +"bunup", +"env-ci", +[2,2103,18280], +"git-l", +"og-parser", +[2,33495,33496], +"-esm", +[2,18170,33498], +"p-each-series", +[1,2343,33502], +[0,33506,33508,33509,2523], +"file-url", +[2,2847,4219], +[2,17050,33504], +[0,2018,32839,32844], +"p-retry", +[0,2924,5087,4874,4677], +[0,6901,20319,1973,5472,5433,13657], +[2,33511,57], +"markdown ", +"solidjs", +"@fluentui/react-component-event-listener", +[3,33513,26], +[2,33514,2538], +[3,6061,10], +"/event-stack", +[2,4133,33517], +[2,33516,33518], +[2,8652,3858], +"oolbar", +"@artsy/fresnel", +[2,30415,594], +"standalone", +[2,54,33524], +[2,33527,33531], +"@react-s", +"@percy/cli", +"@percy/c", +[2,33529,4915], +"tately/overlays", +"anchor-js", +[3,14132,14], +[2,33535,17966], +[3,33526,15], +"ilter-imports", +[2,33533,33536], +[2,33544,33548], +"d-props", +[2,2034,33539], +[2,1249,33540], +[2,30851,1204], +[2,1199,33542], +"@react-t", +"chai-enzyme", +"react-ace", +"react-code", +"ypes/shared", +"sandboxer", +[2,33547,33549], +"ource-render", +[2,3890,33551], +"react-static", +[2,33559,6649], +"-routes", +[2,33553,33555], +"niversal-component", +[2,12273,33557], +[3,3911,17], +"satisfied", +[3,4134,12], +[2,33561,1623], +[1,2343,33569], +"simulant", +"ta-scripts", +[2,4409,1231], +"@aws-lite/client", +"@aws-lite/s3", +[0,0,33570,33584,2537], +[0,1173,1175,1195,1267,1272,1280,1282,32870,1429,32871,34009,1652,1676,1705,1177,1903,1958,1970,2054,2092,2151,2629,2651,2297,2878,2881,2895,32877,26470,2897,2900,2904,32886,2906,2912,2915,2925,2899,3363,3524,4039,37320,12826,4131,4535,37871,4027,2924,4681], +[3,21564,23], +[2,33571,1219], +[2,18124,16284], +[2,33575,7625], +[3,2001,11], +"bikeshed", +"mock-tmp", +"semicolon", +"tap-arc", +"@casl/dx", +"cloudfunctions", +"apigateway", +"api gateway", +[0,6398,20986,32888,32054,31512,4453,35062,6970,5131], +"drag-handle-vue-3", +[2,33060,33587,4403], +"floating-", +[2,33060,33589], +"horizontal-rule", +[2,33060,158], +[2,33060,26074], +[2,33060,33597], +"eraro", +"fast-sa", +"fe-stringify", +[2,33594,33595], +[3,28051,11], +"gate-executor", +"gubu", +[2,31908,1783], +"@tiptap/pm", +"ordu", +"patrun", +[2,31908,33607], +"rolling-stats", +"use-plugin", +"starter-kit", +"@seneca/test-plugin", +"lab-", +[3,29583,11], +[2,33610,2528], +[2,33609,33611], +[2,33621,33622], +"-entity", +[2,4136,33614], +"seneca-e", +"rror-test", +[2,33616,33617], +"seneca-", +[2,33619,19138], +"@tiptap/s", +"uggestion", +"@tiptap/vue-3", +"micro-service", +[2,33624,591], +[3,14587,13], +"minimum", +"viable", +"startup", +[1,2343,33632], +"orklets", +[0,33637,33651,33665,2523], +[2,10196,21009], +"Sentimental", +[2,11183,9352,3392], +"nlp", +[0,32905,32917], +"@farmfe/cli", +[2,6283,33647], +[2,35438,35525], +"dottie", +[2,1153,1430], +[2,4140,30807], +"sort-class", +[2,17693,33644], +"wkx", +"-testing", +[3,9786,10], +[2,33648,103], +[2,33900,147], +[0,4880,4883,8152,1009,1011,1540,1177,1895,1955,1959,32922,32932,1894,4042,4076,4474,4484,91], +"chai-datetime", +"esdoc", +"-ecmascript-proposal-plugin", +[2,33653,33654], +"esdoc-", +"inject-", +[2,4306,1932], +[2,33657,33658], +[2,33656,33659], +[2,18124,1932], +[2,33656,33661], +"ibm_db", +"js-co", +[0,32941,32945,32950,89,12295,12296,5131,32955], +"@webgpu/types", +"mbinatorics", +[2,33664,33667], +"mariadb", +[1,2343,33693], +"jmp", +"node-hook", +"p-props", +"p-settle", +"pg-hstore", +"fail-on-", +"sav", +"s-store", +"major-bump", +[2,33676,33679], +[2,21386,33680], +"snowflake-sdk", +[2,33691,33692], +"db2", +"snowflake", +"object ", +"relati", +"onal mapper", +[2,33687,33688], +[2,33686,33689], +"@prisma/m", +"anagement-api-sdk", +[0,0,33694,33695,2487], +[0,89,3857,21166,33377], +[0,3857,2171,12295,12296,33012,33013,33014,33019,5130,89,33025,970,5260,2062,33034,7671,8632,1283,22743], +[1,2343,33698], +"@tinymce/tinymce-react", +[0,33699,0,33715,2487], +[0,31680,28069], +"@ser", +"ialport/binding-mock", +[2,33700,33701], +[3,33702,19], +"s-cpp", +[2,33703,33704], +[3,33702,12], +"n1ed", +"byte-length", +[2,15497,33708], +[2,33706,33709], +[3,33710,19], +"cctalk", +[2,33711,33712], +[2,33711,28979], +[0,1473,1623,57], +"-byte-timeout", +[2,6941,33716], +[2,33711,33717], +[1,2343,33720], +[0,0,0,33752,34352], +"packet-length", +[2,33711,33721], +[2,33711,3925], +[3,33723,23], +[2,33724,1493], +[3,33723,21], +[2,33726,17402], +"slip-encoder", +[2,33711,33728], +[3,33729,20], +[2,10972,4383], +"@heroicons/react", +"pacepacket", +[2,33730,33733], +[2,33706,3101], +[2,33743,33747], +"ccTalk", +"com port", +"COM", +"data logging", +"hardware", +"modem", +[3,8292,9], +"nodebots", +"RFID", +"sensor", +"plus/elements", +"serial port", +"sms gateway", +"sms", +"UART", +[0,1512,1623], +[2,32092,91], +[2,33755,33756], +"react-li", +"b-tools", +"update-check", +"@zeit/schemas", +"is-po", +"rt-reachable", +[2,33759,33760], +[2,33769,33770], +"@vercel/", +"style-guide", +[2,33763,33764], +"@types/ser", +"ve-handler", +[2,33766,33767], +[3,2909,10], +"serve-directives", +"ts-blank-space", +"vitest-fail-on-console", +[1,2343,33776], +"windowed", +"temp-path", +[0,33778,33779,33780,2487], +"favicon", +[0,33243,53,58,5889,92,33245,29421,33305,1393,1525,1595,1680,1699,1687,2020,2071,2151,31401,2674,2929,3244,3310,3445,3467,3561,3681,3742,3930,30228,4382,4473,4480,4588,4763,33069], +[0,10879,4864,7812,33247,4039,4493,4507,91], +[0,4963,181,4380,31398,31400], +[1,2343,33782], +[0,0,0,33783,2487], +[0,89,188,23332,4607,33275,33276], +"@extend-chrome/messages", +[2,33786,13901], +[3,33784,15], +"@types/chrome", +[1,2343,33793], +"@types/jsesc", +[2,33791,33792], +[3,32170,13], +"nspect", +[0,0,33805,33809,2487], +"chrome-extension", +"webext", +"webextension", +"verless/utils", +[2,33700,33797], +[3,33010,17], +"z-commitlint", +[2,5465,33800], +[3,33798,12], +[2,33802,1973], +[3,4156,10], +[0,5087,4874,1009,1011,1177,1886,1895,1938,1955,1958,1966,1982,2070,1192,1894,4039,4042,4052,27720,4076,4468,4474,4508,4514,17223,91], +" plugins", +[2,33804,33806], +"aws lambda", +[0,33285,28946,33286,33288,33289,33292,33296,33298,5165,33299,202,1388,4967,5995], +" web services", +[2,6997,33810], +".com", +[2,33804,33812], +[1,2343,33815], +[0,0,0,33816,2487], +[0,33314,1669,33317,33320,33330,33341,33345,33347,33353,33360,33361,33364,33367,33368,7021,33369,33370,1781,2845,33371,33345,12899,4967,5284,91], +"isoformat", +"cdk/aws-lambda-python-alpha", +[2,13562,33818], +[3,7709,16], +[2,33820,7308], +"eventbridge", +[2,33820,33822], +[2,33820,13573], +"ns", +[2,9191,33825], +[2,9191,3763], +[2,9191,4799], +[2,17253,33832], +"lib-dynamodb", +[2,13548,33830], +"-tree-1d", +[1,2343,33855], +"htl", +"util-dynamodb", +[2,13548,33835], +"@types/d3", +"aws-cdk-lib", +"iot-device-sdk", +[2,9194,33839], +"caporal", +"-highlight", +[2,14558,33842], +"apache-arrow", +[3,9167,11], +[2,33845,33839], +"d3-geo-projection", +"@types/aws4", +"esbuild-r", +[2,33849,8736], +"jsii", +"jsii-diff", +[2,17111,7268], +"jsii-docgen", +[0,33856,0,29047,2537], +[0,28872,13411,13412,13388,1137,1170,30051,1362,33474,18220,2139,2188,2070,22410,21226,6698,1209,3074,3220,3275,27534,2072,3547,3919,4025,4108,4135,4165,4351,13400,4507,3348,4707,4753], +"jsii-pacmak", +[1,2343,33859], +[0,33861,33862,33864,2537], +"obuild", +[0,30293,26557], +[0,4874,30306,30305,30310,4039,1531,91,1984], +"type-plus", +[0,30297,13527,5592,5995,2679,23932], +"ge-parser", +[1,2343,33870], +"flow-re", +"move-types", +[2,33867,33868], +[0,33873,33874,33875,2537], +"isequalwith", +"date-fns-tz", +[0,2611,3510,1689,15452,8550,28862,33235,28142,15261,23531,2670,28282,12207,31026,20745,28283,31737], +[0,4493,1984,16473,15450,91,4874,19759,31794,5517,28203], +[0,3724,25638,32916,2703,5001,3304,5472], +[2,33892,33895], +"@emnapi/runtime", +"@img", +"/sha", +"rp-libvips-dev", +[2,33879,33880], +[2,33878,33881], +"-wasm32", +[2,33882,33883], +[3,33882,19], +"win32-ia32", +[2,33885,33886], +[3,33887,25], +"x64", +[2,33888,33889], +"emnapi", +"string-s", +"-reader", +"exif-reader", +"plit-by", +"dzi", +"thumbnail", +"libvips", +"vips", +"@farmfe/c", +"cargo-cp-artifact", +[2,14736,34112], +"skia", +"offscreen", +"compositing", +[1,2343,33917], +"vulkan", +"metal", +"flmngr", +[2,4167,14994], +"shelljs-", +[2,33911,3979], +"travis-", +"changes", +"check-changes", +[2,33913,33915], +[0,33919,33922,33923,2487], +"makefile", +[0,33567,33568], +"imgpen", +"unsplash", +[0,33574,1610,1177,3173,33577,3421,3752,33579,4389], +[0,7200,13573,6997,33804,6599,33581,33582,7308,6949,6808,33583,5130], +[1,2343,33925], +[0,33926,33931,2514,2537], +[0,33666], +"bitly", +"shorten", +"mongoid", +"tinyid", +[0,1787,91,18279], +"kapok-js", +[1,2343,33934], +[0,33939,33946,33947,2399], +"should-", +"should-equal", +[2,33935,1671], +"should-type", +[0,89,3824,33697], +"-adaptors", +[2,33938,33940], +"should-util", +"@types/listr", +"houldjs", +[2,1901,33944], +[0,3775,4039,4487,4469,3744,91,53,4874,4880,1195,4883,5090,1167], +[0,4445,6092,33707,89,6038,1936,6105,7062,27968,9381], +[2,32223,2636], +"pdf-generation", +"assignments", +"homework", +"html-to-pdf", +"grunt-endline", +"quiet-grunt", +"semver-sort", +[1,2343,33957], +[0,0,33958,33960,2523], +[0,30703,442,9307,33731,33732,29273,33736,968,972,974,5364,7806,7639,4874,4880,4883,31397,4992,1413,1497,1536,1639,1177,1961,7585,2203,2675,2832,2990,3105,3127,3561,1894,21024,89,33753,3824,5564,33754,3885,4073,4079,33762,4164,4200,4382,4383,4072,33771,4474,4494,91,4523,29139,1983,26744,32255,1984,33772,9355], +"Function URL", +[0,89,6071,4607,11316,33774,3392,32209,32210,3912,176,10052,21604], +[1,2343,33966], +"plugin-open", +[2,33911,33962], +"Durable function", +"-sdk", +[0,33967,34002,34003,2523], +[0,10895,31832,1084,1448,1573,1676,37014,2071,2151,2835,3090,3510,3527,3878,4042,4094], +"@secretlint/secretlint-rule-github", +[2,33970,3378], +[3,33968,28], +[2,33972,33973], +[3,28473,18], +"ap-runner", +"secretlint", +"@vue/tsconfig", +"extender", +"fs-core", +[2,33979,27106], +[3,18529,16], +[2,33979,202], +[2,33980,33982], +"-builtins", +[2,33984,33985], +[3,33981,21], +"to-fsa", +"@kwsites/file-exists", +"@kwsites/", +[2,9466,14834], +[2,33987,33988], +[2,33984,594], +[3,33989,17], +[2,33991,27725], +"@sim", +"ple-", +"git/babel-config", +[2,33994,33995], +[2,33993,33996], +[2,33979,24171], +"source ", +[2,33999,12619], +[2,33979,8745], +[0,33784,33785,8862,811,8850,816,840,20978,33787,5244,5245,4864,11300,33789,4874,4880,4883,1009,1011,1030,11016,1457,668,33850,1177,1959,11348,3400,34971,89,3824,4039,4057,15277,3709,4507,91,1983,33790,1984,188], +[0,4080,11504,3195,33794,7188,33795,33796,1388,33799], +[1,2343,34005], +[0,34006,34016,2514,2523], +[0,1653,33817,33829], +[2,29234,34008,34010], +"pec-", +"custom-event", +[3,11133,16,9], +"ant-stuff", +[2,13112,34011], +[2,32845,34012], +"rrect-lockfile", +[2,33664,34014], +[0,1414,33834,4494,1983,2832,2899,1424,1177,4042,2203,1894,4473,33837,4614,442,91,4874,2820,6503,33844,17113,19181,33847,8850,33853,17112,10615,3112,1895,811,1011,816,1009], +[3,8136,10], +"nalyzer", +[2,32412,34018], +"-navigation", +[1,2343,34022], +[0,34023,34045,34046,2487], +[0,20584,2131,2674,33876], +[2,31395,1542], +[2,34026,34042], +[3,34030,17], +"is-safe-filename", +[2,5600,34029], +"recurse", +[2,28756,18346], +"@asciidoctor/core", +[2,29611,34035], +"samsam", +[2,11122,34033], +"site-publisher", +[3,11134,16], +"plugin-n", +"o-prototype-methods", +[2,34037,34038], +[2,34036,34039], +"@studio/changes", +"ropdown-menu", +"@openspacelabs/react-native-zoomable-view", +"clock", +[0,23531,4874,33901,2611,3297,4449], +[0,1424,10798,33903,33904,29727,15344,11812,158,11806,33905,8924,33907,33908,2636,8221,9561], +[1,2343,34054], +[2,29611,34049], +"asciidoc-loader", +"vendor", +"mocks-", +"and-spies", +[2,34051,34052], +[0,34056,34057,34058,4139], +"asciidoc", +[0,33909], +[0,4469,91,2924,4677,89,3824,4880,4883], +[0,89,33909,2090,1586,10057,33920,158,6038,9229,33921,6997,6949,13531,20614], +[1,2343,34069], +"express-json5", +"-readme", +[2,8924,34061], +"-htpasswd", +[2,4199,34063], +"fs-ext", +"crypt3", +"pod-install", +[2,13888,2036], +[0,34072,34073,34074,2523], +"pinch-to-zoom", +"pinch", +[0,37082,26380,17214], +[0,1984,3541], +[0,1388,3541,4627,17050,1973,5472], +[1,2343,34077], +"@polka/url", +[0,34079,34080,34081,2537], +"totalist", +[0,1138,1437,1457,2182,2185,2226,2600,2685,2991,3127,3758,4135,13834], +[0,33943,8147,5254,33768,1166,1424,3421,29899,1894,3706,28593,4474,4481,91,1906], +[0,33948,200,33949,1745,33950,33951,1783,2636,3758,3197,33952], +[3,33056,29], +[2,33060,34084], +"node-range", +"bytes-iec", +"nanospinner", +[2,37050,6579], +"budget", +[3,13526,12], +[2,34089,34088], +[1,2343,34094], +[2,959,34093], +"table-core", +[0,34095,34100,28315,2523], +[0,1437,4747,28172,32884,28236], +"file size", +" size", +[2,7204,34097], +"get size", +[0,4874,32551], +[1,2343,34102], +[0,34103,21592,34106,2523], +[0,4135,32884,28236,28200], +"-cognito-identity-js", +[2,6997,34104], +[0,32910,32912,32913,13428,5472,6533], +"skapi", +[1,2343,34109], +[0,34110,34117,34120,2537], +[0,31855,28236,28200,32884], +[2,20327,1984], +"-no-globals", +[2,17375,34114], +"ormat", +"unloader", +"seperator", +[0,2065,34007,32903,13426,3536,11132], +[2,34119,12675], +[3,36879,12], +[0,32910,32912,32913,13428,5472,6533,29724], +"is-fullwidth-code-point", +[1,2343,34123], +[0,34124,34126,34129,2537], +[0,1525,940,999,32138], +"random-item", +[0,32889,33932,34031,34032], +[2,29611,34128], +"file-publisher", +[0,29699,200,1179,1745,29703,29753], +"publisher", +"folder-size", +[2,2183,34131], +[1,2343,34135], +"js-extend", +[0,34138,0,34140,2537], +"math-sum", +[2,7627,1413], +[0,34048], +"tablify", +[0,29699,32891,5457,34055,1745,29703,29753], +"slow", +[1,2343,34144], +"dts-plugin", +[0,26338,34145,34146,4139], +[0,5467,21155,10614,5087,4870,4880,5091,1009,1011,1529,1177,1895,1955,2675,1192,34067,1894,89,3857,21166,3980,91], +[0,3857,5128,12295,12296,34070,34071,5131,970,4627,6624,16660,37460,4420,4384], +[1,2343,34153], +[2,5051,34149], +"cheduler", +"htmlcs", +"standards", +"WCAG", +[0,34155,34158,34159,2399], +[2,2287,33914], +[0,4419], +"urlify", +[2,21831,364], +[0,32426,3519], +[0,25638,14873,5472,17878,4419], +[1,2343,34162], +"stage-js", +[0,34163,34164,2514,2487], +[0,31292,3530,9354], +[0,25366,33243,33638,33650,16804,33146,4874,20374,29891,1112,19839,33902,668,1177,34113,2807,2990,3090,28865,4042,9245,1531,91,34115,29470,1983,1984,2924,4677,29161], +[2,4609,12607], +[2,4609,34168], +[2,18124,1781], +"pages", +" output", +[2,3721,34169], +" standard", +[2,4216,34171], +"standard ", +[2,34173,3721], +" for ", +[2,34175,4255], +[2,25264,34176], +[3,34177,11], +[2,34178,9338], +"stylish ", +[2,34180,16237], +[2,34180,4255], +[2,1983,6872], +[2,34183,22156], +[1,2343,34192], +"box2d", +"game", +"physics", +"axios-ntlm", +"xml-crypto", +"2d", +[0,14631,0,34193,2487], +[0,29699,32891,20204,1745,29703,29753], +"@types/sax", +[1,2343,34196], +[0,34202,0,34210,2399], +[2,4005,34198], +"s-cli", +[3,26390,16,13], +"base64id", +[2,9246,25513], +[0,34127], +[2,34204,2403], +[3,5556,15], +[2,34206,34690], +[3,28724,15], +[2,7686,34209], +"@socket.io/component-emitter", +"minify-templates", +[0,29699,32891,34130,1586,1745,29703,29753], +[1,2343,34212], +[0,34213,0,29047,2523], +[0,10744,1209,3084,25886], +[1,2343,34215], +[0,0,34223,34248,2523], +[2,34217,158], +[3,5386,10], +"faceoff", +[2,34220,34221], +[3,16767,16], +"erformance-monitor", +[2,16766,6812], +[0,107,442,4856,7677,1091,1177,1895,1894,4039,4060,4193,4072,4481,4484,4508,4514,4523,1983,34165,34166,34183,34184,4614,1984], +"fast-wrap-ansi", +"@rslib/core", +"eventsource", +"oxc", +"sockjs", +[2,28573,34230], +"rslib", +[2,28606,34232], +"rstest-config", +[2,34234,6847], +[3,10235,18], +[2,29314,3090], +"@pnpm/list", +"@pnpm/workspace.find-packages", +[2,1463,20001], +[2,37509,34240], +"eeverse", +[2,34242,34243], +[3,4892,10], +"npkg__lockfile", +"fast-npm-meta", +"@nolyfill/internal", +[2,34247,35011], +"@nolyfill/", +[0,34186,12075,5284,91,34187,34188,16284,34191,5131], +[1,2343,34250], +[0,0,34251,34252,2523], +[0,107,4874,1009,1011,17494,1177,1895,2025,2899,1894,34197,4060,34199,4193,4508,4514,91,1983,34165,34166,34183], +[0,12075,34187,22894,8691,16284,34191,1424,16697,5122,5131], +[1,2343,34255], +"separated", +[0,34256,0,34257,2537], +[0,4447], +[0,4525,5284,34227,33479,1894,91], +[1,2343,34259], +[0,0,0,34285,2537], +"fumadb", +"microfiber", +[3,8277,10], +"alars", +[2,34262,34263], +"load-files", +[2,5527,34265], +"compact", +[2,3715,34267], +[2,9470,34268], +"@anvilco/apollo-server-plugin-introspection-metadata", +"kysely", +"bdd-lazy-var", +"@orpc/zod", +"@orpc/otel", +"neverthrow", +"introspection", +"@c15t/logger", +"-query", +[2,34276,34278], +"@orpc/server", +"@orpc/openapi", +"@orpc/contract", +"@c15t/translations", +[2,13498,202], +[0,4796,26481,2968,31176,6646,3378,3420,9478,6666,3552,4135,18710,7671,33163,33186,18280,9527,4749], +"kysely-pglite", +"@c15t/vitest-config", +[2,34289,34290], +"@libsql/", +"kysely-libsql", +"string-t", +[2,34295,21160], +"o-stream", +[2,34291,34293], +"@c15t", +[1,2343,34322], +"consent", +"privacy", +"ccpa", +"binary-split", +[2,7241,14922], +"lgpd", +"self-host", +"consent-management", +"user-privacy", +[2,34307,34308], +"data-pro", +"tection", +"cookie-banner", +[2,34304,34311], +"-platform", +[2,2339,5365], +"cmp", +[2,34315,7179], +"consent-", +[3,5079,14], +"imageinfo", +"prettydiff", +"sprity-css", +"/common", +"sprity-lwip", +[0,0,34323,2514,2537], +[0,29713,34235,635,34236,34237,811,8850,816,23339,8712,28206,34239,34241,29308,1525,1707,34244,3749,3527,4079,34245,34246], +"object-stream", +[1,2343,34327], +"through2-spy", +[0,34329,0,29047,2443], +"coordinates", +[0,13387,13412,13388,20908,13395,1170,1362,1364,2026,29067,2670,1209,3084,3162,3237,3509,4148,4507], +[1,2343,34332], +"css-sprite", +[0,33469,33476,6151,2443], +[1,2343,34334], +[0,34335,33476,6151,2443], +[0,31874,546,8604,8605], +[1,2343,34337], +[0,34338,34339,34340,2399], +[0,4763,16230,15095,34260,34271,34273,4341,34274,34275,32176,34277,34280,34281,34282,34283,13471,34284,13495,13502], +[0,3244,32426,6526,91,4874,34286,6494,34287,12207,34288,33237,34292], +[0,34297,34298,7229,34299,34302,5995,34303,34304,34305,33055,34306,34309,34310,34313,34314], +[1,2343,34343], +"asn1", +[0,34344,34346,34347,2399], +[0,2105,3527,2072], +"bcrypt-pbkdf", +[0,28177,4880,1701,3442,21166,91], +[0,3857,12295,12296,31937,6574,6635,5128,31912,89,5131,181,1017,45,13814,22875,2414], +[1,2343,34349], +[0,34350,0,34351,4139], +[0,4597,3173,940,34048], +[0,29699,32891,1563,1745,29703,29753], +1772409600000, +[1,2343,34361], +"integrity", +"subresource integrity", +"sri", +"sri hash", +"sri ", +"sri string", +[2,34358,1179], +[0,0,34362,34381,34352], +[0,34363,32558,48,53,5240,83,87,34368,34369,5583,6373,1178,1193,17217,24621,29883,34370,29775,1540,1759,1177,1935,1938,27790,2126,29945,35634,2675,1192,11896,32206,11348,11350,3534,34376,1894,3720,3758,34197,4042,34377,4060,4073,4079,4146,91], +[2,34364,34365,34367], +[3,5215,13], +"ollup-plugin", +"shuruhatik", +[3,10697,17,6], +"@fezvrasta/tsc-silent", +"@khanacademy/flow-to-ts", +[2,34374,34375], +"long-", +[2,4252,591], +[2,34371,34372], +[3,14697,22], +"place-variables", +"poster", +[2,34378,34379], +[3,11802,15], +"low-entry", +"version-guard", +[0,8190,8191,5399,8192,34384,34385], +[3,12809,13], +[2,34382,7051], +"popper", +[2,8194,34386], +" engine", +[0,0,7997,7998,34352], +[1,2343,34390], +[3,1570,26], +[0,0,34394,34396,34352], +"fig-spec", +[2,34389,34391], +"dotgitignore", +[0,10615,6503,4874,1387,1429,2899,3363,4042,4426,91], +"std-mocks", +[0,34397,2238,34398,16629,7521,34399,29804,31687,1993,16284,9006,34400,34401,8424,34402,6829,26514,34403,34404,34406], +"anime", +"anime.js", +"timeline", +"easings", +"cubic-bezier", +"splitText", +"WAAPI", +"Canvas", +"ban-sensitive-files", +"WebGL", +"deps-ok", +"dont-crack", +"git-issues", +"pre-git", +"simple-co", +"mmit-message", +[2,34411,34412], +[0,9116,9122,9131,34352], +[1,2343,34416], +[0,7967,7938,7939,34352], +[1,2343,34418], +[0,0,0,10570,34352], +[0,0,12106,12107,34352], +[1,2343,34422], +"modern-syslog", +[0,0,11488,34424,34352], +"winser", +[0,7789,34425], +"decrypt", +"etsy", +"metric", +[0,34430,34436,34440,34352], +"aggregation", +[0,34431,34432,34433,34434,34435], +"ev-emitter", +"fizzy-ui-utils", +"get-size", +"imagesloaded", +"unidragger", +[0,1462,1177,34437,34439,2907,4320,4323,4072], +[2,1949,34438], +"etafizzy", +"jquery-bridget", +[0,4453,6398,34441,31512,32054,35060,36197,1388], +"flick", +[0,17201,17202,17203,34352], +[3,11146,12], +[1,2343,34445], +[0,0,34446,34448,34352], +[0,1429,1700,2323,2367,22122,2409,2447,2494,2530,34447,2899], +[2,22465,35458], +[0,6901,27679,16626,3220,3222,1666], +[0,0,0,18014,34352], +[1,2343,34451], +[0,0,0,34452,34352], +[0,17199,16892,2869,3166,34453,11326,207,20531,57], +"lex", +[1,5293,34455], +[0,8391,34352], +[1,2343,34457], +[0,34458,0,2514,34352], +[0,1395], +[0,20095,20097,2514,34352], +[1,2343,34461], +[0,0,34462,34463,34352], +[0,2080,4389], +[0,18012,25866,18108,34464,30091], +"maths", +[3,10821,18], +"11y", +[2,34465,34466], +"pannellum", +[1,2343,34470], +[0,0,34477,34483,34352], +[3,32229,23], +"hots", +[2,34471,34472], +"-puppeteer", +[2,34473,34474], +[2,10818,31765], +[0,2899,2025,16189,34478,34482,3469,1149], +[2,34481,2844], +"orchbox", +[2,22060,34479], +"persist-", +"jugglingdb", +[0,11415,3469,34482,16189], +[2,4270,676], +"patternlab", +"-pat", +[0,53,61,83,87,90,92,442,10615,29767,6061,16607,6063,6065,16608,16612,29769,1193,20517,29775,1503,1593,1610,1177,15510,1942,2026,2323,2338,2544,2765,24652,29778,1192,2780,1776,29779,2990,9750,5103,29780,29783,3758,3957,4131,4523,1983,29770,27900], +[1,2343,34495], +"tern-library", +[2,34486,34489], +[2,21043,34490], +"django-", +[2,34492,5354], +"jinja2", +[0,0,0,34496,34352], +[0,34497,11328], +"panorama", +[0,26328,26329,26330,34352], +[1,2343,34501], +"findit2", +[0,34502,0,2514,34352], +[0,3760,13126,4747,4709,3259,4545,1481,16734,1512,4720], +[1,2343,34504], +[0,7936,7938,7939,34352], +[0,0,0,23762,34352], +[1,2343,34507], +[0,34509,34512,34518,34352], +"funsert", +[0,3744,34511], +"into-stream", +"rip-out", +[0,48,53,78,87,90,94,1148,1596,1843,1845,1177,34514,17585,1951,1959,2832,2899,3421,89,3824,32510,34517], +"Assert", +[2,34515,34516], +[3,1886,16], +"daddy-react", +"setup-env", +[0,8221,3857,21610,34519,11512,89], +"compatiblity", +"compatibl", +"ity", +[0,0,0,23771,34352], +"-metadata", +[2,26612,34523], +[0,11976,4874,7677,12690,3377,3446,7461,9245,91,1984], +[1,2343,34529], +"livestream", +[2,34527,3642], +[0,0,34530,2514,34352], +[0,53,87,811,13866,816,1198,1290,1389,2766,2297,2871,2881,2886,2898,6387,2923,3758,4042,4045,34531,20981,34533,20983,4073,4650], +[2,34532,671], +[3,15277,16], +[2,15476,34534], +"ass", +[1,2343,34536], +[0,0,34538,2514,34352], +"gulp-rimraf", +[0,4039,3188,34539,34543], +"testit", +"string.js", +"stringjs", +"S", +"gethub", +[1,2343,34545], +[0,0,34546,34548,34352], +[0,48,53,87,1178,1261,1177,1881,1895,1938,1955,1192,1894], +"codsen-utils", +[0,6270,4202,1413,34549,57,34550,17180,14638,12786,30946,2382,2098,2090,7017,6435,6270,15253,3721], +"bits", +"iec", +"ranges-apply", +0, +"ranges-push", +"string-le", +"ft-right", +[2,34554,34555], +0, +"onkey-traverse", +[2,19434,34558], +"ranges-invert", +0, +"jsp", +"mixed", +"xhtml", +0,0,0,0, +[2,2183,7230], +0,0,0,0,0, +"-html4", +[2,26854,34575], +[3,34576,19], +[2,34577,27769], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"payment processing", +"credit cards", +0,0,0,0, +[2,2168,3081], +"sdk-", +[2,34608,1102], +[2,26424,34609], +"fly-register", +[2,202,34611], +"strong-agent", +0, +"strong-arc", +"strong-build", +0,0, +"strong-deploy", +"strong-m", +"esh-models", +[2,34620,34621], +"strong-re", +"gistry", +[2,34623,34624], +"strong-start", +"strong-s", +"upervisor", +[2,34627,34628], +0, +"core-util-is", +"strong-de", +"bugger", +[2,34632,34633], +"wagger-ui", +[2,34627,34635], +[3,4369,10], +"-validate", +[2,22188,34638], +0,0, +"LoopBack", +"Platform", +"alerts", +0,0, +"event loop", +0,0, +"heroku", +"nodeops", +"npmrc", +"openshift", +"slc", +"est functions", +[2,34141,34655], +"strong-cli", +"strong-cl", +"uster-control", +[2,34658,34659], +"strongops", +"upstart", +0,0,0,0, +[2,27954,1699], +[2,27954,2070], +[2,27954,3144], +"@zip.js/zip.js", +[2,3503,4549], +0, +"@astrojs/check", +"@astrojs/", +"starlight", +[2,34674,34675], +[2,12310,1430], +[3,811,8], +[2,34678,1388], +"@shoelace-style/shoelace", +[2,13283,8891], +0, +"astro", +"hanbi", +"escape-at", +[2,2827,34685], +"jsdoc-ts", +[2,2701,1932], +[2,34687,34688], +"lit", +0, +"dictionary", +[2,19319,34692], +"Android", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[2,19801,2741], +"css-t", +"o-react-native", +[2,34716,34717], +0, +[2,11832,14438], +[2,5129,10699], +[2,4881,34721], +"rame", +[2,34723,10699], +[2,11364,34724], +"-plugin-rtl", +[2,7917,34726], +0,0, +"ts-toolbelt", +0,0,0,0,0,0, +"bunchee", +"stylis-", +0, +"rule-sheet", +[2,34738,34740], +0, +"zeit", +0,0,0,0,0, +"hack", +0,0,0,0,0, +"globjoin", +"-tag-names", +[2,18110,34756], +"-nested-selector", +[2,5250,34758], +[2,30273,34759], +0, +"svg-tags", +0, +"github-info", +[2,6018,34764], +"@styl", +"elint/prettier-config", +[2,34766,34767], +[3,34768,11], +[2,34769,19692], +[3,4852,9], +"lanced-match", +[2,34771,34772], +[3,25558,14], +[2,34774,5260], +[2,4865,4565], +"murmurhash", +[2,8802,34777], +[3,13059,16], +[2,34779,2706], +0,0, +"@types/svg", +"-tags", +[2,34783,34784], +"ylelint", +[2,17371,34786], +0,0, +"set-stylelint", +[2,32137,34790], +[3,3676,10], +[2,34792,367], +0,0,0,0,0,0,0, +[3,4323,16], +0,0,0,0, +[2,1280,8554], +0,0, +"css-values", +"shortcss", +0, +"dela", +"ration", +0,0, +"-strict-value", +[2,34813,34816], +[2,34812,34817], +"keyword", +"z-index", +0,0,0,0, +"orting", +[2,3677,34825], +0, +"udochenkov", +[2,25790,34828], +0, +"ed-syntax", +[2,30481,34831], +[3,24627,16], +"hudochenkov", +[2,34833,34834], +0,0,0,0,0, +[3,30356,14], +[2,34841,27739], +0, +"github-c", +"s-list", +[2,17551,34845], +[2,34844,34846], +0,0,0,0,0,0,0,0,0,0,0, +[3,1369,11], +[2,34859,30480], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"jar", +"cookiejar", +0, +[2,33935,27], +0, +"tinyify", +0, +"frisbee", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"promised", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"capability", +"16m", +0,0,0,0,0,0,0,0,0,0,0, +"periscopic", +0,0,0,0,0,0,0,0,0,0, +"@types/sade", +[3,27700,21], +[3,27700,22], +[2,34941,20500], +[3,9566,10], +[2,34943,2847], +[2,4353,34944], +0,0,0,0,0, +"@kiwi/eslint-config", +"@kiwi/", +[2,34952,7628], +0, +"@types/pug", +0, +"easy-import", +[2,3562,34957], +0,0,0,0,0, +"@res", +"vg/resvg-js", +[2,34964,34965], +"prettysize", +0, +[3,30071,12], +"hromium", +[2,34969,34970], +0,0,0,0,0,0,0,0,0,0,0,0, +[3,4362,11], +0,0,0, +"lease-notes", +[2,15842,34988], +0, +"precache", +0,0,0,0,0, +"tape-promise", +0, +"autogen", +0,0,0,0, +"multil", +"ang-", +[2,2055,4298], +[2,35005,35006], +[2,35004,35007], +0,0, +"promise.any", +0, +[2,29351,7625], +0, +"readmeio", +0,0,0,0,0, +[2,4364,12659], +[3,4367,9], +"emplates", +[2,35022,35023], +0, +"swagger UI", +0,0,0,0,0,0,0, +"s-readme", +[2,9828,35034], +[2,11941,35035], +0,0,0,0,0,0,0,0,0, +"nodelint", +"still", +[3,29280,15], +0,0, +"travis-cov", +0, +"jinja", +0,0,0,0, +"swipe", +"framework7", +"gallery", +0, +"slideshow", +0,0,0,0, +[2,14507,3048], +[2,2655,35067], +0,0, +"sync-rpc", +[2,21658,705], +0, +"flowgen2", +0,0,0,0,0, +" information", +[2,623,35080], +"sysinfo", +0, +"freebsd", +"openbsd", +"netbsd", +"cpu", +"cpuload", +"physical cores", +0,0, +"logical cores", +"cores", +0, +"socket type", +"fsstats", +"diskio", +" devices", +[2,1359,35098], +"netstats", +[2,6072,591], +[2,11996,35101], +"network ", +"connections", +[2,35103,35104], +"network stats", +"iface", +"printer", +"processes", +"users", +"internet", +"battery", +0,0, +"docker stats", +"docker ", +[2,35116,35109], +0, +"graphic card", +"graphic c", +"ontroller", +[2,35120,35121], +0,0, +"disk layout", +"audio", +0, +"bluetooth", +"wifi", +0, +"wifinetworks", +0, +"virtual box", +"virtualbox", +"BIOS", +"chassis", +0,0,0,0, +"@jsenv/file-size-impact", +"-style-", +[2,21605,3733], +[2,35142,35143], +[2,13565,35144], +"symbol-es6", +0,0,0,0,0,0,0, +"hase", +"draht", +"limes", +"lusca", +"partof", +"timer2", +0, +"uuidv4", +"crypto2", +"nocache", +"datasette", +0, +"json-lines", +0, +"processenv", +"stethoskop", +0, +"flaschenpost", +"-events", +[2,8891,35172], +0, +"nodeenv", +"roboter", +0, +"assertthat", +[2,35166,4219], +0, +"cqs", +"cqrs", +0,0,0,0,0,0, +"className", +0, +"classList", +0, +"override", +0,0,0,0, +"dlv", +0,0,0,0,0,0, +"@tapjs/after", +[2,35205,27554], +"@tapjs/a", +"sserts", +[2,35207,35208], +"@tapjs/", +0, +"@tapjs/before", +[2,35212,27554], +"@tapjs/chdir", +0, +"@tapjs/core", +[2,35210,7131], +"@tapjs/fi", +"xture", +[2,35218,35219], +[2,35210,9261], +"@tapjs/mock", +"node-ser", +"ialize", +[2,35223,35224], +[2,35210,35225], +"@tapjs/run", +[2,35210,8745], +0, +"@tapjs/spawn", +0, +"@tapjs/stdin", +"@tapjs/test", +"@tapjs/t", +[2,35234,2528], +[2,35210,6812], +[2,4026,1204], +0, +"tapjs", +"tapjs plugin", +0,0,0,0, +"tap-out", +0, +"tapes", +0,0,0,0,0,0,0,0,0,0,0, +"resumer", +[2,23236,35259], +"@ljharb/t", +"hrough", +[2,35261,35262], +[2,5613,7067], +"dotignore", +[2,2565,15126], +0, +"ecstatic", +[3,3404,9], +"osix-or-windows", +[2,35269,35270], +0, +"harness", +0,0,0,0, +[2,9497,29051], +"chownr", +"yallist", +0, +"chmodr", +0, +"-to-array", +[2,2018,35284], +0,0,0,0,0, +"brittle", +0,0,0,0,0, +"b4a", +"fast-fifo", +"streamx", +0,0,0,0,0,0, +[2,6346,6770], +"DDD", +[2,6346,8726], +0, +"front end", +0, +"back end", +0,0,0,0, +"cz-format-extension", +0,0,0,0,0,0, +"telegram-api", +"telegram-", +"client-api", +[2,35325,35326], +"tdlib", +"tglib", +[3,3299,10], +0,0,0,0,0,0,0,0,0,0,0, +"tempdir", +"tmpfile", +0,0,0,0, +"unique-s", +[2,35348,8961], +0,0,0,0,0,0, +"@cronvel/get-pixels", +0, +"chroma-js", +"lazyness", +0,0, +"gen-events", +[2,3286,35362], +"seventh", +"string-kit", +0, +"tree-kit", +0, +"256 colors", +0, +"true color", +0, +"input field", +"gpm", +"screenbuffer", +"textbuffer", +"32-bit", +0,0,0,0, +"charm", +"visualwidth", +0, +"80s", +"ibm", +0,0,0,0, +[3,5012,18], +[2,35391,4226], +0, +"@ls-lint/ls-lint", +"astring", +0,0,0,0,0,0, +"glify-js", +[2,7817,35402], +0,0,0,0,0,0,0,0,0,0,0,0,0, +"multiline-ts", +"spawn-p", +[2,35418,4357], +0,0, +"only-allow", +"sinon-", +"assert-stub", +[2,35423,35424], +[2,35423,2299], +0, +"unlinted", +0,0,0,0,0, +"@deve", +"/bin-v8-flags-filter", +[2,674,35435], +[2,35434,35436], +[3,35437,12], +[2,35438,29084], +"bowser", +"chrome-", +[2,20844,8626], +[2,35441,35442], +"device-specs", +"elegant-s", +[2,35445,10252], +0,0,0, +"get-os-info", +0,0, +"import-lazy", +0, +"is-podman", +"-async-hook", +[2,3077,35456], +"-commonjs", +[2,17102,35458], +[2,17003,35459], +[2,14709,35460], +"os-family", +"pinkie", +[3,7872,10], +[2,35464,2013], +[2,2093,10903], +[2,15034,35466], +0, +"replicator", +0, +"-tools", +[2,20008,35471], +[2,4415,35472], +"testcafe-", +"hammerhead", +[2,35474,35475], +0, +"legacy-api", +[2,35474,35478], +[3,22279,11], +[2,35480,1803], +[2,35474,35481], +[3,35482,18], +[2,35483,3392], +[2,35483,6907], +[2,35483,4386], +[2,35483,28592], +0,0,0,0, +"testcafe-s", +[2,11068,1179], +[2,35492,35493], +[2,7051,4007], +[2,17475,35495], +"unquote", +"url-to-o", +"ptions", +[2,35498,35499], +0, +"@ffprobe-installer/ffprobe", +"@types/ca", +"llsite", +[2,35503,35504], +[3,5245,9], +"@types/dedent", +[3,5546,10], +"ragent", +[2,35508,35509], +"connector", +[2,26353,35511], +"caller", +"dom-walk", +[3,25792,16], +"mmerhead", +[2,35515,35516], +"express-ntlm", +"gulp-clone", +0, +"gulp-ll-next", +[3,27610,11], +[2,35522,2869], +"qunit-harness", +[2,2337,35524], +0, +"gulp-step", +"-spe", +"c-with-retries", +[2,35528,35529], +[2,32261,35530], +"sl-self-signed-certificate", +[2,8423,35532], +[3,35473,17], +"-browserstack", +[2,9962,35535], +[2,35534,35536], +0, +"automated", +"QA", +0,0,0,0, +"@types/doc", +"kerode", +[2,35545,35546], +"docker-", +[2,35548,2940], +[2,3583,33893], +"ssh-", +0, +"port-forward", +[2,20844,35553], +[2,35551,35554], +0, +[3,23843,13], +[2,35557,3015], +[3,28203,13], +"ties-reader", +[2,35559,35560], +[3,7752,11], +[2,35562,2150], +0,0,0,0,0, +"object-es5", +[2,26988,35569], +0, +"limate-test-reporter", +[2,14354,35572], +"conf-env", +[2,1611,35574], +"headerify", +"is-number", +0, +"teenytest", +[2,35579,4007], +0, +"test double", +0,0,0,0,0, +"fireworm", +"printf", +"_string", +[2,369,35590], +0, +[2,1362,23842], +"hallow-", +[2,35594,1693], +[2,21479,35595], +0, +"saucie", +0,0,0,0,0,0,0,0,0,0, +"dpdm", +"dcs", +[2,16693,35610], +0,0,0,0,0, +"three.js", +"reality", +[2,9352,35618], +"augmented-reality", +"webgl", +"webgl2", +0,0, +"webaudio", +0,0, +"webgpu", +"webxr", +0,0,0,0, +[2,2182,20], +"node-st", +"dlib-browser", +[2,35635,35636], +0,0,0,0,0,0,0,0,0,0,0, +"hundreds", +"polendina", +0,0, +"stream-spigot", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"unexpand", +"homedir", +0, +"tilde", +0,0,0,0, +"number-is-nan", +0, +"profile", +0,0,0,0, +"bee-affix", +"bee-a", +"bee-alert", +"bee-anchor", +0,0,0, +"bee-animate", +[2,35683,9820], +"bee-", +0,0, +"bee-backtop", +0, +"dge", +"bee-badge", +"bee-b", +[2,35698,9837], +"bee-button", +[2,35700,9847], +"bee-calendar", +0,0, +"bee-carousel", +"bee-cascader", +"bee-c", +"bee-checkbox", +[2,35707,142], +"bee-collapse", +"bee-col", +"orpicker", +[2,35711,35712], +"bee-co", +0, +"mplex-grid", +[2,35714,35716], +[2,35691,3812], +0, +"bee-dnd", +"bee-drawer", +0, +"bee-dropdown", +"bee-form", +0, +"-control", +[2,35724,35726], +"bee-form-", +[2,35728,7227], +"bee-icon", +"bee-i", +"nput-group", +[2,35731,35732], +0, +"-addon", +[2,35733,35735], +"bee-input-", +[2,35737,6988], +"bee-label", +0, +"bee-layout", +0, +"bee-loading", +0, +"-state", +[2,35743,35745], +0, +"bee-locale", +0, +"bee-menus", +0, +"bee-message", +0, +"bee-modal", +0, +"bee-navbar", +"bee-n", +0,0, +"otification", +[2,35757,35760], +"bee-overlay", +"page-layout", +[2,35691,35763], +"bee-pag", +"ination", +[2,35765,35766], +0, +"bee-panel", +"bee-p", +"opconfirm", +[2,35770,35771], +0, +"bee-popover", +"rogress-bar", +[2,35770,35775], +0, +"radio", +"bee-radio", +0, +"bee-rate", +"search-panel", +[2,35691,35782], +0, +"bee-select", +0, +"bee-slider", +0, +"bee-step", +0, +"bee-svgicon", +"bee-switch", +"bee-table", +0, +"bee-tabs", +0, +"bee-tag", +0, +"bee-tile", +0,0, +"bee-timeline", +"bee-time", +[2,35803,3811], +"bee-tooltip", +"bee-transfer", +"bee-trans", +[2,35807,9943], +0, +"bee-tree", +[2,35810,11245], +"bee-upload", +0, +[2,2359,1623], +"-wrap", +[2,2376,35815], +"inline-urls", +[2,21897,35817], +[2,4437,1732], +0, +"tinper", +0,0,0,0,0,0,0,0,0,0, +"tinylibs", +0,0,0,0, +"@deno/shim-deno-test", +0, +[3,4443,9], +0,0,0,0,0,0,0,0, +" threads", +[2,6812,35848], +0, +"thread pool", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"pushalert", +" toast", +[2,3857,35866], +"toastify", +[2,3862,35868], +[2,3862,9044], +"Typescript", +0,0,0,0, +"emble-js", +[2,31072,35876], +"processmd", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[3,5152,10], +"RFC6265", +"RFC2965", +0,0,0,0,0, +"tinytim", +0,0,0,0,0,0,0,0,0,0,0,0, +[2,7231,7316], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"html-select", +0,0, +"html-tokenize", +0,0,0,0,0,0,0,0,0, +"aggregate", +0,0,0,0,0,0,0,0, +"bs-logger", +"make-error", +0, +[2,6308,3065], +0,0,0,0,0,0,0, +[2,13664,6893], +0, +[3,5480,12], +"oader", +[2,35970,35971], +0,0,0,0,0,0,0, +"migration", +"migrations", +"cli-tool", +0,0,0,0, +"@ts-morph/common", +"block-writer", +[2,10988,35988], +0,0, +"static ", +[2,35992,19748], +"refactor", +[2,6721,35994], +0,0,0,0, +[2,20223,6859], +[2,20223,1276], +[2,12448,16443], +"@csp", +"otcode/source-map-support", +[2,36003,36004], +0, +"dprint", +"@swc/wasm", +"ntypescript", +"util.", +[2,36010,19138], +0,0,0,0,0, +[2,20442,7163], +"omit-deep", +0, +"power-assign", +0,0,0,0,0,0,0,0,0,0,0,0, +"bre", +"rete", +0, +"rule engine", +"rules engine", +" rule engine", +[2,5284,36038], +"js rule engine", +[2,6591,6770], +0,0,0,0,0, +[2,18284,4295], +0,0,0,0,0,0,0, +"typedefs", +"typedef", +0, +"initions", +[2,36056,36058], +0,0,0,0,0,0,0,0,0,0,0, +"polite-json", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[2,27572,4014], +0, +"codelyzer", +[3,4490,10], +"siste", +"nt-codestyle", +[2,36092,36093], +[2,36091,36094], +0, +"tslint-divid", +[2,4491,2700], +[2,13530,1334], +[2,4491,36099], +"tslint-mi", +"sc-rules", +[2,36101,36102], +0,0, +"ts-lint", +0,0,0,0,0, +[3,20474,12], +"slint-plugin", +[2,36112,36113], +0,0,0,0, +[2,4671,3209], +"joycon", +0, +"ts-e", +[2,36122,154], +0,0,0,0,0, +[3,14596,11], +[2,36129,8791], +0,0,0,0, +"@mixmark-io/domino", +0,0,0, +"-attendant", +[2,4495,36139], +0,0,0,0,0, +"grunt-comp", +0, +"onent-io", +[2,36146,36148], +[3,2243,10], +0, +"at-sourcemap", +[2,36150,36152], +"grunt-m", +"arkdown", +[2,36154,36155], +[3,2300,11], +"grunt-p", +"ush-release", +[2,36158,36159], +0, +"gex-replace", +[2,24294,36162], +[2,3503,16237], +[2,22277,36164], +"unfunk-reporter", +[2,3192,36166], +0,0,0,0,0, +"tap-b", +0, +"rowser-color", +[2,36173,36175], +"-util", +[2,4497,36177], +0,0, +"curve25519", +"ed25519", +"nacl", +0, +"poly1305", +"public", +"salsa20", +0, +"signatures", +0,0,0,0, +[2,4498,1574], +0,0, +"DOM", +"Twitter", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[2,4505,1732], +0,0,0,0,0,0,0,0,0,0, +"media-typer", +0, +"checking", +0,0,0,0,0,0,0,0,0,0, +[3,596,9], +"/material-color-utilities", +[2,36239,36240], +0,0, +[2,4511,699], +[3,4512,14], +[2,3131,4964], +"material-3", +[2,4508,1932], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"JsDocs", +0,0,0,0,0,0, +"cli-prompt", +0, +"concatenate", +0,0, +"ebook", +"pandoc", +0, +"kindlegen", +0,0,0,0, +[3,27847,12], +[2,36283,3231], +[2,12690,18877], +0,0, +"-findorcreate", +[2,3232,36288], +[2,7627,4487], +0,0,0,0, +"@sqltools/formatter", +0,0,0,0,0,0, +"-rename", +[2,22507,36302], +[3,36303,12], +[2,36304,4070], +[3,5055,10], +[2,36306,1722], +"gulpclass", +0,0,0,0,0,0, +"@dprint/formatter", +"@esfx/canceltoken", +"@dprint/", +[2,36317,91], +0, +"azure-", +"-node-api", +[2,20999,36321], +[2,36320,36322], +"mocha-f", +"ivemat-progress-reporter", +[2,36324,36325], +0,0, +"able-stylish", +[2,26072,36329], +[2,10749,36330], +0,0,0,0,0,0,0,0,0,0, +"commandpost", +0, +"wer-assert", +[2,13415,36344], +"intel", +"li-espower-loader", +[2,36346,36347], +0,0,0,0,0, +[2,5554,13774], +[2,18792,36354], +[2,13058,36355], +[3,36356,23], +[2,36357,1993], +0, +"css-utils", +[2,8802,36360], +[2,36357,16839], +"erved-words", +[2,31525,36363], +"-sync2", +[2,3613,36365], +"sass-svg", +0,0,0,0,0, +"finally", +[2,9466,36373], +[2,4532,1732], +0, +[2,27100,4255], +0,0,0,0,0,0,0,0,0,0,0,0, +"jsmin", +0,0,0,0,0,0,0,0,0,0,0, +"random-bytes", +0,0,0,0,0,0, +[2,1024,4525], +"affix", +[2,1016,36410], +[3,36411,12], +[2,36412,9809], +"uto-link", +[2,36412,36414], +[2,36412,9826], +[3,1015,12], +0, +"ack-top", +[2,36417,36419], +[3,36420,13], +[2,36421,35696], +[2,36417,9837], +[2,1015,9847], +[2,1016,9026], +[3,36425,13], +[2,36426,9854], +[3,36427,14], +[2,36428,9860], +[2,36426,9863], +[3,36425,12], +[2,36431,5449], +[2,36431,11200], +[3,36433,13], +[2,36434,3809], +"date-input", +[2,1016,36436], +[3,36437,16], +[2,36438,3811], +[3,36437,12], +"escriptions", +[2,36440,36441], +"ivider", +[2,36440,36443], +[2,36440,9997], +[3,36445,13], +[2,36446,11206], +[2,1016,3599], +0, +"file-input", +[2,1016,36450], +[3,36451,12], +[2,36452,3469], +[2,1016,10052], +[2,1016,8691], +[3,36455,12], +[2,36456,28176], +[2,36456,35971], +[2,1016,4403], +[3,36459,13], +[2,36460,10104], +[3,36459,12], +[2,36462,3852], +[3,36463,13], +"nth-picker", +[2,36464,36465], +[2,1016,22005], +[2,1016,18367], +[3,36468,12], +"in-code", +[2,36469,36470], +"opover", +[2,36469,36472], +[3,36473,13], +"rtal", +[2,36474,36475], +[2,36469,10148], +[2,1016,35778], +[3,36478,13], +[2,36479,6864], +"search-", +[2,36481,1631], +[2,1016,36482], +[3,36483,18], +[2,36484,1633], +[3,36483,13], +[2,36486,4021], +[3,36483,12], +[2,36488,10205], +[2,36488,10209], +[2,36488,11234], +[2,36488,10222], +[2,1016,176], +[3,36493,14], +[2,36494,591], +[3,36493,13], +[2,36496,10233], +[3,36493,12], +[2,36498,11241], +0, +"ime-picker", +[2,36498,36501], +[2,36498,18390], +[2,36498,10266], +[3,36504,13], +[2,36505,10271], +0, +"-checked", +[2,36506,36508], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[3,212,12], +"fns", +[2,36524,36525], +0, +"parsel-js", +0,0,0,0,0, +"citty", +0, +"mkdist", +"untyped", +"hookable", +0,0,0,0,0, +[2,3714,20], +0,0,0,0,0,0, +[3,34068,12], +[2,36551,2408], +0,0,0,0,0, +"teo.collina/tspl", +[2,599,36558], +"dns-packet", +0,0,0,0,0,0,0, +"trough", +0, +[3,9359,10], +[2,36570,4966], +0, +"retext", +0,0,0,0, +[3,4554,13], +0, +"non-repeating", +0,0,0,0,0,0, +[3,4555,10], +"xast", +"nlcst", +0,0,0,0,0,0,0,0,0,0,0,0, +"pullstream", +0, +"match-stream", +0, +"uncompress", +0,0,0,0, +"is-npm", +"pupa", +0, +"fixture-", +[2,36614,8634], +0,0,0,0,0, +"urn", +"uri mutation", +"url mutation", +"uri m", +"anipulation", +[2,36624,36625], +"url m", +[2,36627,36625], +0, +"uri template", +0, +"url template", +" res", +" locator", +[2,5585,36634], +[2,36633,36635], +[2,4549,36636], +[3,36637,17], +[2,36638,16906], +0, +"query string", +"RFC 3986", +"RFC3986", +0,0, +"RFC 6570", +0,0, +"RFC6570", +[2,23168,1932], +"ecosystem", +":jquery", +[2,36651,36652], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"ylru", +"formstream", +0,0, +"tshy-after", +[3,9725,12], +0, +"@types/busboy", +"@eggjs/tsconfig", +"@types/sel", +"fsigned", +[2,36689,36690], +0, +"strictest", +[2,25627,36693], +0, +"urlopen", +0,0,0,0,0,0,0,0,0, +"userprofile", +0,0,0,0,0, +[2,4745,57], +0,0, +"browserscope", +"ua", +"ua-parse", +"ua-parser", +"user agent", +"user-agent", +0,0,0,0,0,0,0,0,0, +"is-typed", +"-array", +[2,36730,36731], +0, +"supported", +[2,5745,36734], +[2,17393,36735], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"rfc9562", +0,0,0,0,0,0, +"bundt", +0, +"diffs", +0,0,0,0,0,0,0,0,0, +"find-pa", +"rent-dir", +[2,36779,36780], +0,0,0, +"githook", +0,0,0,0,0,0,0,0,0,0, +"sanitisation", +0, +"sanitise", +0,0,0,0,0,0, +"@vue/shared", +"@vant/popperjs", +"@vant/", +0, +"@vant/use", +0, +[2,7047,1732], +[2,5334,36811], +"able-html", +[2,1687,36813], +[2,10952,2770], +[2,36807,7625], +[2,36807,45], +0, +"area-data", +[2,36807,36819], +"@vant/cli", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"@vercel/go", +0, +"@vercel/fun", +"@vercel/next", +[2,20461,681], +"@vercel/ruby", +"python", +[2,33763,36844], +"@vercel/r", +"edwood", +[2,36846,36847], +"hydrogen", +[2,33763,36849], +"build-utils", +[2,33763,36851], +"@vercel/st", +"atic-build", +[2,36853,36854], +"@vercel/re", +0, +"mix-builder", +[2,36856,36858], +0, +"epipebomb", +0, +"promisepipe", +"tmp-promise", +0,0, +"@sentry/node", +[3,28267,12], +[2,7738,6768], +0, +"@types/dotenv", +[2,4753,4007], +[2,33763,5576], +[2,17213,2022], +"pcre-to-regexp", +"ast-commit", +[2,33495,36876], +[2,8603,18132], +[2,8603,1631], +"@tootallnate/once", +[3,546,11], +[2,36881,5449], +"@vercel/f", +"rameworks", +[2,36883,36884], +[2,3827,594], +[2,33763,36886], +[2,5745,7253], +[2,10787,36888], +[2,20290,4007], +"s-detectors", +[2,36883,36891], +[3,20485,11], +"-json-file", +[2,36893,36894], +"outing-utils", +[2,36846,36896], +[3,29115,11], +[2,36898,3385], +[3,22092,13], +[2,36900,16830], +"@vercel", +[3,9435,9], +"s/types", +[2,36903,36904], +[2,36902,36905], +0, +"node-utils", +[2,33157,36908], +[2,11836,2656], +[2,29130,36910], +[3,11296,13], +"xpect-", +[2,36913,6458], +[2,36912,36914], +[3,36906,18], +[2,36916,14181], +"@alex_neo/jest-expect-message", +[3,29110,18], +[2,36919,36910], +[2,18522,1781], +[2,36916,36921], +0,0,0,0, +"extsprintf", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"viewer.js", +0,0,0,0,0,0, +"remove-t", +"railing-separator", +[2,36948,36949], +"teex", +0,0,0,0,0,0,0,0,0,0,0,0, +"kdirp-stream", +[2,29048,36964], +"is-valid-glob", +"lead", +[2,4026,14690], +"stream-com", +"poser", +[2,36969,36970], +"to-through", +"value-", +"or-function", +[2,36973,36974], +[3,4606,15], +0,0,0,0, +"vinyl-adapter", +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"browser-split", +"ev-store", +"x-is-array", +0, +"x-is-string", +0, +"run-browser", +0, +"vtree", +0,0,0,0,0,0,0, +"artichokie", +[2,4293,16111], +"es-module-lexer", +[3,3638,15], +"@polka/", +[2,37016,1536], +0, +"build-tool", +0,0,0,0, +"slash-path", +0,0,0, +"api-router", +"api-routers", +[3,4612,15], +"rest-api", +[2,4609,37031], +[3,9244,9], +[2,37033,995], +[3,12419,12], +[2,37035,20332], +0, +"api-rest", +"Remix", +"Next.js", +0,0,0,0, +[3,6371,11], +[2,37045,1623], +[2,9408,364], +"devtools-api", +[2,5334,37048], +"@vueuse/", +[2,37050,12339], +"focus-trap", +0, +"@mdi", +"t-vue/plugin-component", +[2,37054,37055], +[3,37056,17], +[2,37057,9339], +[2,37057,11988], +"sfc", +[2,37057,37060], +[2,37057,17913], +[3,37062,18], +"oc", +[2,37063,37064], +"@mdit-vue/", +[2,37066,6579], +[3,7641,19], +[2,37068,3111], +[2,37068,3113], +[2,13058,3667], +[3,26774,14], +"thjax3", +[2,37072,37073], +0,0,0,0,0, +"@vitest/spy", +0, +"tinyrainbow", +"@vitest/u", +[2,37083,186], +[2,17213,8791], +"@vitest/s", +[2,37086,11298], +"why-", +0, +"running", +[2,21149,37090], +[2,37088,37091], +[2,17213,3717], +0, +"birpc", +"local-pkg", +[2,33157,24079], +"@antfu/", +"install-pkg", +[2,37098,37099], +0,0,0,0,0, +"node-lo", +"calstorage", +[2,37106,37107], +0, +"gulp-xo", +0,0, +"load-plugins", +0, +"vorpal-less", +0, +"vorpal-repl", +0,0,0,0,0, +"eyes", +0, +"BDD", +0,0,0,0, +"keytar", +"parse-semver", +[2,17414,28362], +0, +"eerio", +[2,16931,37134], +[3,21625,11], +[2,37136,4565], +0, +"@types/yazl", +0,0,0,0,0,0,0,0,0, +[2,9738,6985], +"@types/ic", +"onv-lite", +[2,37150,37151], +0,0,0,0, +[2,4619,9586], +0,0,0,0, +[3,36812,13], +[2,37162,965], +0,0,0,0,0, +"-libs", +[2,1988,37169], +0,0,0,0,0,0, +[3,5736,22], +[2,37177,31692], +0,0,0,0,0,0,0,0,0, +"@int", +"lify/core-base", +[2,37188,37189], +"@intlify/", +[2,37191,6579], +0,0, +"devtools-if", +[2,37191,37195], +0,0, +"vue-devtools", +[2,37191,37199], +0, +"intlify", +0,0,0,0,0, +[3,37200,13], +0, +"i18n-loader", +[2,37208,37210], +[3,7892,11], +[2,37212,3176], +[2,32119,1698], +"cache-loader", +"markdown-l", +[2,37216,35971], +"pug-p", +"lain-loader", +[2,37218,37219], +0,0,0,0,0,0,0,0,0,0, +"ightwatch", +[2,10884,37231], +0,0, +"faked-promise", +[2,28506,6706], +0,0,0,0,0,0,0,0,0,0, +"de-indent", +0,0,0,0,0, +"todomvc-app-css", +0,0,0,0, +"foreachasync", +0, +"sys", +"walkSync", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"exec-sh", +0,0,0,0,0,0, +"outpipe", +0, +"win-spawn", +0,0,0,0,0, +"encrypte", +"d-attr", +[2,37292,37293], +[3,3052,10], +"afeinteger", +[2,37295,37296], +[2,4651,18008], +"waterline-", +[2,37299,594], +0, +"active-", +[2,37302,1355], +0,0,0,0, +"vargs", +0,0,0,0, +"bdd-with-opts", +0, +"gulp-debug", +"mu2", +[2,9466,2869], +"auncher", +[2,26127,37318], +[2,20011,37319], +"mocha-p", +"arallel", +[2,37321,37322], +[2,18199,37323], +"sv-selenium", +0,0,0,0,0, +"web3-eth", +"web3-net", +0, +"web3-core", +"web3-types", +"web3-utils", +"web3-errors", +0, +"web3-eth-abi", +"web3-eth-", +0, +"web3-eth-ens", +0, +"web3-eth-iban", +[2,4654,1155], +"rpc-methods", +[2,4654,37346], +"web3-eth-a", +"ccounts", +[2,37348,37349], +"contract", +[2,37340,37351], +0, +"personal", +[2,37340,37354], +0, +"providers-ws", +[2,4654,37357], +"web3-rpc-", +"providers", +[2,37359,37360], +[3,37358,15], +[2,37362,27], +0, +"in3", +"ganache", +"ipc", +[2,37362,37367], +[3,13936,16], +"se-web3", +[2,37369,37370], +"@tru", +"ffle/hdwallet-provider", +[2,37372,37373], +0, +"Ethereum", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"@solana/spl-token", +"@solana/", +"web3.js", +[2,37391,37392], +"kva-email-service", +0, +"ed25519-hdkey", +[2,32806,37396], +"ssl-http-with-docker", +[3,4382,9], +[2,7521,12130], +[2,37399,37400], +"telegram-a", +"ssistant", +[2,37402,37403], +"web3-r", +0, +"eact-task", +[2,37405,37407], +0, +"sol", +0,0,0,0,0,0,0,0,0,0, +"assembl", +"yjs/ast", +[2,37421,37422], +[2,10672,37423], +[3,37424,15], +"wasm-edit", +[2,37425,37426], +[3,37427,20], +[2,37428,57], +0,0, +"trace-event", +[2,35441,37432], +0, +"assembly", +[2,37435,1508], +[2,4671,1194], +[2,14743,1194], +"hash-wasm", +"wast-loader", +[2,20694,6095], +"xxhashjs", +0,0,0,0, +"@disco", +"veryjs/json-ext", +[2,37447,37448], +0, +"@carrotsearch/foamtree", +"h0r", +[2,22060,37452], +[2,37453,2809], +"lodash.p", +"artial", +[2,37455,37456], +[2,3607,34809], +0, +"zoomable", +0,0,0,0, +[3,13077,13], +[2,37465,18523], +"configtest", +[2,37465,37467], +0, +[3,4863,9], +"vinfo", +[2,37470,37471], +0,0,0,0,0,0, +"@fastify/e", +[2,37479,674], +"n-finished", +[2,15461,37481], +0,0,0,0,0,0,0, +"@types/sockjs", +[3,18584,13], +"njour", +[2,16872,37492], +"bonjour-service", +0,0,0, +[3,33768,13], +[2,37498,4017], +[2,37498,2947], +0, +"-community", +[2,17013,37502], +"-history-api-fallback", +[2,11485,37504], +0, +"klona", +[2,37490,4219], +"@types/tr", +0,0, +"usted-types", +[2,37509,37512], +0,0,0,0,0,0,0,0,0, +"reloading", +[3,4631,10], +[2,37524,3642], +0,0,0,0,0, +[2,32119,4694], +[3,33945,16], +"ellscape", +[2,37532,37533], +[3,3708,23], +0,0,0,0,0,0, +"dts-cli", +0, +"@types/flat", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"-to-buffer", +[2,7231,37567], +"yaeti", +0,0, +"networking", +"comet", +0,0,0,0, +"@silentbot1/nat-api", +"@thaunknown/simple-peer", +"torrent/http-node", +[2,10672,37580], +"addr", +0, +"-to-ip-port", +[2,37582,37584], +"bitfield", +"bittorrent-dht", +[3,37587,11], +[2,37588,20500], +"cache-c", +"hunk-store", +[2,37590,37591], +[2,33355,5509], +[2,13225,37593], +"cpus", +"create-t", +"orrent", +[2,37596,37597], +"-ponyfill", +[2,1613,37599], +"fs-c", +[2,37601,37591], +"fsa-chunk-store", +"imme", +"diate-chunk-store", +[2,37604,37605], +"-async-", +[2,37607,7253], +[2,4565,37608], +0,0, +"load-ip-set", +"lt_donthave", +"memory-c", +[2,37614,37591], +"torrent", +"parse-torrent", +"random-ite", +[2,37618,6882], +0,0,0, +"speed-limiter", +"throughput", +0,0, +"-discovery", +[2,37616,37627], +0,0, +"torrent-piece", +0, +"uint8-util", +"unordered-", +"array-remove", +[2,37634,37635], +"ut_metadata", +"ut_pex", +0, +[3,37581,12], +[2,37640,23685], +0,0, +"airtap-manual", +"airtap-s", +[2,37645,9073], +[2,37588,4839], +"chrome-net", +"-address", +[2,11996,37649], +0, +"path-esm", +"-fixtures", +[2,4702,37653], +0, +"bittorrent", +[2,37656,12332], +"mad science", +"p2p", +0,0,0, +"peer-to-peer", +0, +"peers", +"swarm", +"web torrent", +"webrtc data", +0,0,0,0,0, +"web worker", +"a gogo", +0,0,0,0,0,0,0,0,0,0,0, +"search-params", +[2,4564,37687], +0,0,0,0, +"buster", +"exorcist", +0, +"cujo", +0, +"Promises/A+", +0,0,0,0, +"isexe", +0,0,0,0, +"taffydb", +"unit.js", +0,0,0,0,0, +"@dabh/diagnostics", +"logform", +0, +"one-time", +0, +"@dabh/", +[2,37720,23816], +[2,20417,4715], +[3,18518,12], +[2,37723,1149], +"hock", +"winston-co", +[2,37726,13172], +0,0,0,0,0,0, +"tream-rotator", +[2,12416,37734], +0, +[3,24151,11], +[3,23722,14], +[2,37737,37738], +[2,6324,4059], +[2,37739,37740], +0, +"daily-rotate-file", +"log-rotate", +"logrotate", +0,0,0,0,0,0, +"winston3", +0,0,0,0,0, +"bower-config", +"propprop", +[2,4716,20], +0,0,0,0,0,0, +"carriage", +0, +"new-line", +"return", +0,0,0,0,0,0,0,0, +"workbox-", +[2,37779,6147], +0,0, +"workbox", +"workboxjs", +" worker", +[2,11100,37785], +" requests", +[2,1612,37787], +"offline", +[2,12320,3097], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"writeFile", +0,0,0,0,0,0,0,0,0, +"enstore", +0, +"-crawler", +[2,4730,37820], +0, +"x-ray-parse", +0,0, +"scrape", +0,0,0,0,0,0, +"is-function", +"parse-headers", +0,0,0,0,0,0, +"adler-32", +0, +"codepage", +"crc-32", +"ssf", +"wmf", +0, +"@she", +"etjs/uglify-js", +[2,37848,37849], +"on-epipe", +[2,7219,37851], +"fflate", +[3,5392,10], +"pellcheck", +[2,37854,37855], +0, +"xlsb", +"xlsm", +"dbf", +"dif", +"sylk", +0,0,0,0,0, +"cash-cat", +"codacy-coverage", +"globify", +"unminified-webpack-plugin", +0, +"XML", +"CDATA", +"doctype", +0,0,0, +" instruction", +[2,10809,37879], +0, +"Javascript", +[2,353,3642], +"convertor", +"converting", +0, +"conversion", +0,0,0,0,0,0,0,0,0,0,0, +"node-expat", +0,0,0,0,0,0,0,0, +"dom-js", +"xmltest", +0, +"DOMParser", +"XMLSerializer", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"func-xml", +0,0,0,0,0,0, +[2,5857,5861], +[2,69,37935], +"@unicode/unicode-14.0.0", +0, +"rray-includes", +[2,24619,37939], +[2,1226,4740], +[3,37935,17], +0, +"value-aliases", +[2,37942,37944], +0,0,0,0,0,0,0, +"whitelist", +0,0,0,0, +"@scion-scxml/test-framework", +0, +"statechart", +0,0, +"state machine", +"finite", +" stat", +"e machine", +[2,37965,37966], +[2,37964,37967], +"finite ", +"automata", +[2,37969,37970], +"scxml", +"interpreter", +0,0,0,0,0,0,0,0, +"ep-equal", +[2,35506,37982], +[2,9228,4729], +0,0, +"@types/utf8", +[2,4744,28703], +0, +"emulator", +[2,4402,37990], +0,0,0,0, +"jest-t", +"s-webcompat-resolver", +[2,37996,37997], +0,0,0,0,0,0,0,0, +"yaml2json", +"json2yaml", +0,0,0,0,0,0,0, +"test-extends", +[2,27477,38016], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[3,29775,30], +"imports-", +[2,38033,10906], +[2,38032,38034], +"death", +"repeating", +0, +"capture-har", +[2,9769,38039], +"roadrunner", +0, +"node4", +[2,26202,38043], +[3,4821,14], +"ode5", +[2,38045,38046], +[3,18229,16], +"-strict", +[2,38048,38049], +"ittens", +[2,25705,38051], +[3,1935,18], +"-vars", +[2,38053,38054], +[2,23105,7003], +[2,1152,38056], +[2,16645,38057], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"@yeoman/adapter", +"@yeoman/", +"conflicter", +[2,38074,38075], +[2,38074,23255], +[2,38074,353], +"@yeoman/t", +[2,38079,103], +0, +"fly-import", +[2,7227,30831], +"mem-fs", +0, +"mem-fs-editor", +[2,9477,10057], +[2,17412,38087], +0,0,0, +"esmocha", +"sinon-test", +0,0,0,0,0, +"github-u", +"sername", +[2,38099,38100], +0,0,0,0,0,0, +"yes", +"false", +0, +"lenient", +0,0,0,0,0, +"cli-list", +"fullname", +0,0, +"parse-help", +"root-check", +"npm-keyword", +0, +"doctor", +[2,4755,38125], +[2,25742,1871], +0,0,0, +[2,4755,6843], +0, +[2,9518,1002], +0,0,0,0,0, +"@jonahsnider/benchmark", +0,0,0,0,0,0,0,0,0,0, +[2,26936,4627], +0, +"cowsay", +"say", +0,0,0,0,0,0, +"zeromq", +"0mq", +"ømq", +"libzmq", +0,0,0,0,0,0,0,0,0,0,0,0, +[2,11477,1574], +[2,9228,4576], +0, +"@types/morgan", +"express-u", +"seragent", +[2,38180,38181], +0, +" types", +[2,7047,38184], +0,0,0,0,0,0, +"DSL", +0,0,0,0, +"@externs/nodejs", +0,0,0,0, +"JSON2", +0, +"char-split", +0,0, +"express-state", +"firefox-", +[2,38208,35677], +[2,11941,2663], +0, +"shallow-copy", +[2,4250,4833], +0, +"tap-finished", +"-localtunnel", +[2,4770,38216], +0,0,0, +"browzers", +"bulk-require", +0, +"zuul-ngrok", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"Unit Testing", +0,0,0,0,0,0,0, +"Storybook", +0,0,0,0,0,0,0,0, +"belalangkayu", +"rengginangbasi", +"tehtarik3", +0,0,0,0,0,0,0,0,0,0,0, +"sort-array", +0,0,0,0,0,0,0,0,0,0,0, +"-scroll-", +"into-view", +[2,38290,38291], +[2,23545,38292], +0, +"module-t", +"ype-aliases", +[2,38295,38296], +[2,20201,38297], +[2,964,3698], +[3,1216,14], +"o-side-effect-class-properties", +[2,38300,38301], +[3,1270,19], +[2,38303,970], +"flow-co", +[2,24524,8803], +[2,38305,38306], +0, +"get-pkg-repo", +0, +"enhanced", +" input", +[2,38311,38312], +0,0, +"autosuggest", +"typeahead", +0, +"omnibox", +"WAI-ARIA", +"multiple ", +[2,38321,17146], +0,0,0,0, +"focus", +"keyboards", +"mice", +"pseudos", +0, +"textarea", +"trackpad" ] diff --git a/packages/flatpack-json/fixtures/.prettierignore b/packages/flatpack-json/fixtures/.prettierignore deleted file mode 100644 index 5e8e7e0b6ae3..000000000000 --- a/packages/flatpack-json/fixtures/.prettierignore +++ /dev/null @@ -1 +0,0 @@ -**/*.json From 9ca50376b423f4e93e30bb365714ccc3afcf6d3d Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Fri, 6 Mar 2026 07:22:07 +0100 Subject: [PATCH 13/26] Update .npm-packages-info-v2.json --- .../fixtures/.npm-packages-info-v2.json | 47038 +++++----------- 1 file changed, 15418 insertions(+), 31620 deletions(-) diff --git a/packages/flatpack-json/fixtures/.npm-packages-info-v2.json b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json index 71c507e68d2e..87d0fd123795 100644 --- a/packages/flatpack-json/fixtures/.npm-packages-info-v2.json +++ b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json @@ -1,31622 +1,15420 @@ [ - "Flatpack JSON v2", - [ - 128, - "@alifd/next", - "@angular-devkit/core", - "@angular-devkit/schematics", - "@angular/animations", - "@angular/cdk", - "@angular/common", - "@angular/compiler", - "@angular/compiler-cli", - "@angular/core", - "@angular/forms", - "@angular/http", - "@angular/material", - "@angular/platform-browser", - "@angular/platform-browser-dynamic", - "@angular/platform-server", - "@angular/router", - "@ant-design/react-native", - "@ant-design/web3-common", - "@ant-design/web3-icons", - "@auth/sveltekit", - "@babel/cli", - "@babel/code-frame", - "@babel/core", - "@babel/helper-plugin-utils", - "@babel/parser", - "@babel/plugin-proposal-class-properties", - "@11ty/eleventy", - "@adobe/css-tools", - "@api-components/api-method-documentation", - "@apollo/client", - "@asyncapi/generator-react-sdk", - "@babel/eslint-parser", - "@babel/plugin-proposal-decorators", - "@babel/plugin-proposal-export-default-from", - "@babel/plugin-proposal-export-namespace-from", - "@babel/plugin-proposal-object-rest-spread", - "@babel/plugin-syntax-dynamic-import", - "@babel/plugin-transform-runtime", - "@babel/polyfill", - "@babel/preset-env", - "@babel/preset-react", - "@babel/preset-typescript", - "@babel/register", - "@babel/runtime", - "@babel/runtime-corejs2", - "@babel/traverse", - "@babel/types", - "@biz-dev-ops/md-docs", - "@bwcr_/winston-loki", - "@changesets/cli", - "@chatscope/chat-ui-kit-react", - "@ckeditor/ckeditor5-adapter-ckfinder", - "@ckeditor/ckeditor5-angular", - "@ckeditor/ckeditor5-autoformat", - "@ckeditor/ckeditor5-basic-styles", - "@ckeditor/ckeditor5-block-quote", - "@ckeditor/ckeditor5-build-balloon", - "@ckeditor/ckeditor5-build-balloon-block", - "@ckeditor/ckeditor5-build-classic", - "@ckeditor/ckeditor5-build-decoupled-document", - "@ckeditor/ckeditor5-build-inline", - "@ckeditor/ckeditor5-ckbox", - "@ckeditor/ckeditor5-ckfinder", - "@ckeditor/ckeditor5-clipboard", - "@ckeditor/ckeditor5-cloud-services", - "@ckeditor/ckeditor5-core", - "@ckeditor/ckeditor5-easy-image", - "@ckeditor/ckeditor5-engine", - "@ckeditor/ckeditor5-essentials", - "@ckeditor/ckeditor5-heading", - "@ckeditor/ckeditor5-image", - "@ckeditor/ckeditor5-indent", - "@ckeditor/ckeditor5-link", - "@ckeditor/ckeditor5-list", - "@ckeditor/ckeditor5-media-embed", - "@ckeditor/ckeditor5-paragraph", - "@ckeditor/ckeditor5-paste-from-office", - "@ckeditor/ckeditor5-react", - "@ckeditor/ckeditor5-table", - "@ckeditor/ckeditor5-typing", - "@ckeditor/ckeditor5-ui", - "@ckeditor/ckeditor5-upload", - "@ckeditor/ckeditor5-utils", - "@ckeditor/ckeditor5-vue", - "@ckeditor/ckeditor5-widget", - "@commitlint/cli", - "@compodoc/compodoc", - "@comunica/core", - "@contenthook/browser", - "@contenthook/cli", - "@contenthook/node", - "@coreui/coreui", - "@csstools/css-parser-algorithms", - "@csstools/css-tokenizer", - "@csstools/media-query-list-parser", - "@csstools/postcss-is-pseudo-class", - "@csstools/postcss-progressive-custom-properties", - "@csstools/selector-specificity", - "@cucumber/cucumber", - "@deven-org/documentation-skeleton", - "@devtea2026/aspernatur-ea-non-porro", - "@devtea2026/consectetur-ab-unde-quisquam", - "@devtea2026/cupiditate-dolorem-excepturi-impedit", - "@devtea2026/distinctio-soluta-illo-eaque", - "@devtea2026/eum-ullam-est-distinctio", - "@devtea2026/explicabo-alias-architecto-sed", - "@devtea2026/improved-journey", - "@devtea2026/inventore-facilis-corporis-cum", - "@devtea2026/ipsa-omnis-in-molestiae", - "@devtea2026/literate-computing-machine", - "@devtea2026/maxime-sequi-est-rem", - "@devtea2026/necessitatibus-dolorem-esse-atque", - "@devtea2026/odit-enim-reiciendis-pariatur", - "@devtea2026/odit-maxime-porro-asperiores", - "@devtea2026/possimus-ipsa-sint-consequuntur", - "@devtea2026/qui-quos-laborum-amet", - "@devtea2026/quia-ducimus-placeat-minima", - "@devtea2026/quidem-voluptate-repudiandae-necessitatibus", - "@devtea2026/rerum-quaerat-porro-animi", - "@devtea2026/ubiquitous-octo-memory", - "@diotoborg/adipisci-placeat-iure", - "@diotoborg/amet-architecto-est", - "@diotoborg/at-totam-perspiciatis", - "@diotoborg/commodi-voluptatum-libero", - "@diotoborg/delectus-necessitatibus-voluptatum", - "@diotoborg/deserunt-illo-tempora", - "@diotoborg/dicta-recusandae-veniam", - "@diotoborg/dolor-earum-quia", - "@diotoborg/dolor-tempora-fuga", - "@diotoborg/dolores-praesentium-assumenda", - "@diotoborg/eligendi-est-unde", - "@diotoborg/esse-accusantium-ratione", - "@diotoborg/illo-amet-architecto", - "@diotoborg/laudantium-itaque-esse", - "@diotoborg/libero-asperiores-at", - "@diotoborg/neque-inventore-corporis", - "@diotoborg/nostrum-eveniet-officiis", - "@diotoborg/odio-dolores-officia", - "@diotoborg/porro-modi-accusamus", - "@diotoborg/psychic-bassoon", - "@diotoborg/quasi-repellat-odit", - "@diotoborg/qui-ullam-ipsum", - "@diotoborg/quo-dolorem-ducimus", - "@diotoborg/ratione-error-odio", - "@diotoborg/repellat-blanditiis-quis", - "@diotoborg/tempora-voluptas-distinctio", - "@diotoborg/ullam-dignissimos-repudiandae", - "@diotoborg/velit-reiciendis-velit", - "@diotoborg/verbose-robot", - "@diplodoc/transform", - "@discordjs/rest", - "@disqada/workspace", - "@doc-tools/docs", - "@doc-tools/transform", - "@dramaorg/esse-praesentium-eligendi", - "@dramaorg/quae-dolore-nostrum", - "@eas-framework/server", - "@eightshift/frontend-libs", - "@electron/docs-parser", - "@emotion/babel-plugin", - "@emotion/core", - "@emotion/css", - "@emotion/styled", - "@erboladaiorg/ad-exercitationem-ducimus", - "@erboladaiorg/asperiores-earum-quaerat", - "@erboladaiorg/asperiores-fuga-sint", - "@erboladaiorg/asperiores-nam-adipisci", - "@erboladaiorg/autem-dolores-ipsam", - "@erboladaiorg/cupiditate-consectetur-porro", - "@erboladaiorg/cupiditate-pariatur-optio", - "@erboladaiorg/distinctio-tempora-quis", - "@erboladaiorg/error-atque-ea", - "@erboladaiorg/esse-ipsa-numquam", - "@erboladaiorg/ex-hic-molestias", - "@erboladaiorg/explicabo-eius-adipisci", - "@erboladaiorg/molestiae-voluptatibus-perferendis", - "@erboladaiorg/molestias-nulla-dolor", - "@erboladaiorg/nisi-culpa-cum", - "@erboladaiorg/officia-illum-aperiam", - "@erboladaiorg/perspiciatis-magni-ut", - "@erboladaiorg/quae-in-veniam", - "@erboladaiorg/quaerat-mollitia-adipisci", - "@erboladaiorg/quibusdam-itaque-tempora", - "@erboladaiorg/sint-deleniti-dolorem", - "@erboladaiorg/sit-nesciunt-amet", - "@erboladaiorg/tenetur-architecto-dolore", - "@erboladaiorg/ut-dignissimos-laborum", - "@erboladaiorg/velit-fugit-harum", - "@eslint-community/eslint-utils", - "@eslint/js", - "@fakeyanss/redoc", - "@floating-ui/react-dom", - "@fontsource/inter", - "@fontsource/roboto", - "@fortawesome/fontawesome-svg-core", - "@fortawesome/free-solid-svg-icons", - "@fortawesome/react-fontawesome", - "@grandlinex/core", - "@grandlinex/e-kernel", - "@grandlinex/kernel", - "@graphql-markdown/core", - "@graphql-markdown/docusaurus", - "@hajtech/webpack-config", - "@hapi/hapi", - "@hishprorg/aliquid-ad-vero", - "@hishprorg/autem-sint-quas", - "@hishprorg/cum-rem-consequuntur", - "@hishprorg/earum-sint-veritatis", - "@hishprorg/eius-vero-dicta", - "@hishprorg/est-dicta-quis", - "@hishprorg/incidunt-quibusdam-tempore", - "@hishprorg/itaque-esse-accusamus", - "@hishprorg/iure-optio-nihil", - "@hishprorg/magni-amet-id", - "@hishprorg/magni-nisi-aperiam", - "@hishprorg/maxime-voluptates-enim", - "@hishprorg/nihil-ad-ratione", - "@hishprorg/perspiciatis-ratione-unde", - "@hishprorg/quis-perferendis-culpa", - "@hishprorg/reprehenderit-excepturi-sed", - "@hishprorg/sint-nam-consequuntur", - "@hishprorg/sunt-officia-eligendi", - "@hishprorg/sunt-voluptatem-nobis", - "@hishprorg/unde-vitae-reprehenderit", - "@hishprorg/wafflejs", - "@homer0/prettier-plugin-jsdoc", - "@hookform/resolvers", - "@iamtraction/google-translate", - "@idux/cdk", - "@idux/components", - "@inquirer/core", - "@ionic/core", - "@isaacs/cliui", - "@istanbuljs/nyc-config-typescript", - "@itwin/itwinui-react", - "@jest/core", - "@jest/types", - "@jsonforms/core", - "@jsonforms/material-renderers", - "@jsonforms/react", - "@juigorg/nisi-molestiae-ut", - "@juigorg/sit-nam-neque", - "@jupyterlab/application", - "@kobedevi/sassdoc", - "@kollorg/dicta-itaque-nemo", - "@kollorg/nihil-veniam-deserunt", - "@libphamton/chatfanpage", - "@libphamton/fb-group", - "@listr2/prompt-adapter-inquirer", - "@mantine/core", - "@mantine/dates", - "@mantine/hooks", - "@mantine/modals", - "@mantine/notifications", - "@mantine/prism", - "@mantine/styles", - "@mantine/utils", - "@material-ui/core", - "@material-ui/icons", - "@mathematikoi/jsonapi", - "@mdx-js/react", - "@microsoft/api-extractor", - "@microsoft/tsdoc", - "@microsoft/tsdoc-config", - "@middy/core", - "@middy/http-json-body-parser", - "@middy/util", - "@ministryofjustice/frontend", - "@mswjs/interceptors", - "@mui/icons-material", - "@mui/lab", - "@mui/material", - "@mui/system", - "@mui/x-date-pickers", - "@neato/guider", - "@ng-doc/core", - "@ng-doc/ui-kit", - "@ng-doc/utils", - "@nomicfoundation/hardhat-chai-matchers", - "@npmcli/arborist", - "@npmcli/map-workspaces", - "@npmcli/node-gyp", - "@npmcli/run-script", - "@npmcorp/marky-markdown", - "@npmtuanmap/ex-vel-expedita-impedit", - "@npmtuanmap/psychic-guide", - "@npmtuanmap/recusandae-recusandae-nam-et", - "@npmtuanmap/sed-quo-nemo-rerum", - "@npmtuanmap/velit-esse-velit-magnam", - "@nrwl/devkit", - "@nrwl/tao", - "@nrwl/workspace", - "@nx/devkit", - "@nx/esbuild", - "@nx/eslint", - "@nx/express", - "@nx/js", - "@nx/nest", - "@nx/node", - "@nx/workspace", - "@oclif/command", - "@oclif/config", - "@oclif/core", - "@oclif/plugin-help", - "@octokit/rest", - "@opentiny/vue", - "@opentiny/vue-renderless", - "@opentiny/vue-theme", - "@opentiny/vue-theme-mobile", - "@otterhttp/cookie", - "@otterhttp/request", - "@otterhttp/response", - "@otterhttp/send", - "@pact-foundation/pact", - "@patrtorg/a-ad-expedita", - "@patrtorg/a-ut-amet", - "@patrtorg/asperiores-vel-accusantium", - "@patrtorg/aspernatur-dolorum-ducimus", - "@patrtorg/autem-et-hic", - "@patrtorg/consectetur-culpa-non", - "@patrtorg/consectetur-repudiandae-consequuntur", - "@patrtorg/consequatur-voluptatum-officiis", - "@patrtorg/ducimus-magni-quibusdam", - "@patrtorg/enim-magni-hic", - "@patrtorg/est-corrupti-deleniti", - "@patrtorg/eveniet-tempore-maiores", - "@patrtorg/illum-sapiente-quos", - "@patrtorg/laborum-doloribus-voluptate", - "@patrtorg/libero-doloribus-omnis", - "@patrtorg/libero-voluptas-sequi", - "@patrtorg/magnam-aut-adipisci", - "@patrtorg/maiores-quidem-quo", - "@patrtorg/molestias-molestias-ut", - "@patrtorg/nam-eius-unde", - "@patrtorg/pariatur-deleniti-quaerat", - "@patrtorg/porro-labore-eos", - "@patrtorg/quae-earum-eius", - "@patrtorg/quos-quasi-ipsa", - "@patrtorg/sapiente-eos-magnam", - "@patrtorg/sapiente-exercitationem-sit", - "@patrtorg/tenetur-animi-reprehenderit", - "@perseid/store", - "@phosphor/widgets", - "@phun-ky/speccer", - "@polymer/polymer", - "@qooxdoo/framework", - "@quasar/extras", - "@readyplayerme/visage", - "@reduxjs/toolkit", - "@rollup/plugin-commonjs", - "@rollup/plugin-node-resolve", - "@sanity/tsdoc", - "@scalar/api-reference", - "@scalar/fastify-api-reference", - "@serenity-js/protractor", - "@serenity-js/webdriverio", - "@sinonjs/fake-timers", - "@storybook/addon-docs", - "@subwallet/react-ui", - "@supernovaio/sdk", - "@supernovaio/sdk-exporters", - "@supernovaio/supernova-sdk", - "@sveltejs/eslint-config", - "@sveltejs/kit", - "@sveltejs/vite-plugin-svelte", - "@svgr/webpack", - "@swc/core", - "@swenkerorg/maiores-voluptatibus-nemo", - "@swenkerorg/modi-dolorum-provident", - "@swenkerorg/nulla-voluptates-voluptates", - "@swisspost/design-system-styles", - "@symbiotejs/symbiote", - "@synion/md-docs", - "@taktikorg/aut-distinctio-repellat", - "@taktikorg/consectetur-quo-quos", - "@taktikorg/corporis-nihil-odit", - "@taktikorg/deleniti-qui-dolorem", - "@taktikorg/dolor-ratione-quibusdam", - "@taktikorg/harum-reprehenderit-perferendis", - "@taktikorg/illum-accusamus-possimus", - "@taktikorg/ipsa-totam-aperiam", - "@taktikorg/iste-ex-tempore", - "@taktikorg/itaque-nam-eos", - "@taktikorg/itaque-tempore-exercitationem", - "@taktikorg/maiores-dolores-aut", - "@taktikorg/molestias-fuga-possimus", - "@taktikorg/nam-esse-animi", - "@taktikorg/necessitatibus-repudiandae-officia", - "@taktikorg/nisi-reprehenderit-amet", - "@taktikorg/placeat-voluptates-dolorum", - "@taktikorg/praesentium-dolorum-quis", - "@taktikorg/praesentium-neque-ipsam", - "@taktikorg/quo-reiciendis-quibusdam", - "@taktikorg/recusandae-ratione-veniam", - "@taktikorg/similique-natus-officia", - "@taktikorg/suscipit-modi-ratione", - "@taktikorg/tempore-veniam-in", - "@taktikorg/unde-animi-omnis", - "@taktikorg/velit-nobis-blanditiis", - "@taktikorg/voluptatem-pariatur-tenetur", - "@tanem/svg-injector", - "@tanstack/react-query", - "@tanstack/svelte-query", - "@teamhanko/hanko-frontend-sdk", - "@testing-library/cypress", - "@testing-library/dom", - "@testing-library/jest-dom", - "@testing-library/jest-native", - "@testing-library/react", - "@testing-library/user-event", - "@tinyhttp/app", - "@tinyhttp/cookie", - "@tinyhttp/cookie-signature", - "@tinyhttp/cors", - "@tinyhttp/etag", - "@tinyhttp/forwarded", - "@tinyhttp/proxy-addr", - "@tinyhttp/req", - "@tinyhttp/res", - "@tinyhttp/router", - "@tinyhttp/send", - "@tinyhttp/type-is", - "@tinyhttp/url", - "@tsparticles/engine", - "@twurple/ebs-helper", - "@types/estree", - "@typescript-eslint/eslint-plugin", - "@typescript-eslint/parser", - "@typescript-eslint/utils", - "@ucloud-fe/react-components", - "@udecode/plate-core", - "@uiw/react-button", - "@uiw/react-icon", - "@uiw/react-input", - "@uiw/react-overlay-trigger", - "@uiw/utils", - "@unleash/proxy", - "@uploadcare/file-uploader", - "@vitejs/plugin-legacy", - "@vitejs/plugin-react", - "@vue/eslint-config-typescript", - "@wesleytodd/openapi", - "@wuxh/dumi", - "@zitterorg/adipisci-quae-eius", - "@zitterorg/aspernatur-pariatur-occaecati", - "@zitterorg/at-esse-odit", - "@zitterorg/cum-ipsum-beatae", - "@zitterorg/doloremque-ut-omnis", - "@zitterorg/est-sunt-quos", - "@zitterorg/eum-veritatis-placeat", - "@zitterorg/fluffy-waddle", - "@zitterorg/glowing-barnacle", - "@zitterorg/illum-perferendis-consectetur", - "@zitterorg/itaque-nisi-veritatis", - "@zitterorg/probable-octo", - "@zitterorg/upgraded-fishstick", - "@zkportal/aleo-oracle-sdk", - "abort-controller", - "accepts", - "acl", - "acorn", - "acorn-walk", - "action-cli", - "adm-zip", - "after", - "agenda", - "aid-guard1", - "airtap", - "ajv", - "ajv-formats", - "although-line-wall-corn", - "amqp", - "amqplib", - "analsorhost-simple-bs", - "angular", - "angular-animate", - "angular-cli", - "angular-material", - "ansi-colors", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "ansis", - "ant-design-vue", - "antd", - "antfu", - "anyway-south-boy-pilot", - "api-console", - "apidoc", - "apidoc-markdown", - "apn", - "apollo-cache-inmemory", - "apollo-client", - "apollo-link", - "apollo-link-http", - "app-root-path", - "appium-android-driver", - "apple-transportation-web3-locate", - "applicationinsights", - "appsync-client-node", - "archiver", - "arg", - "argparse", - "arrangement-tell-arrange", - "array.prototype.flatmap", - "arrify", - "assert", - "assert-plus", - "assume", - "async", - "async-listen", - "async-retry", - "async-validator", - "atob", - "aud", - "auto-changelog", - "auto-install", - "autoprefixer", - "ava", - "awesome-typescript-loader", - "aws-sdk", - "axe-core", - "axios", - "azure-storage", - "babel", - "babel-cli", - "babel-core", - "babel-eslint", - "babel-generator", - "babel-helper-fixtures", - "babel-helper-plugin-test-runner", - "babel-helper-vue-jsx-merge-props", - "babel-jest", - "babel-loader", - "babel-plugin-add-module-exports", - "babel-plugin-dynamic-import-node", - "babel-plugin-external-helpers", - "babel-plugin-import", - "babel-plugin-istanbul", - "babel-plugin-lodash", - "babel-plugin-module-resolver", - "babel-plugin-named-asset-import", - "babel-plugin-syntax-dynamic-import", - "babel-plugin-syntax-jsx", - "babel-plugin-transform-async-to-generator", - "babel-plugin-transform-class-properties", - "babel-plugin-transform-decorators-legacy", - "babel-plugin-transform-es2015-block-scoping", - "babel-plugin-transform-es2015-modules-commonjs", - "babel-plugin-transform-es2015-template-literals", - "babel-plugin-transform-object-rest-spread", - "babel-plugin-transform-react-jsx", - "babel-plugin-transform-react-remove-prop-types", - "babel-plugin-transform-regenerator", - "babel-plugin-transform-runtime", - "babel-polyfill", - "babel-preset-airbnb", - "babel-preset-env", - "babel-preset-es2015", - "babel-preset-react", - "babel-preset-react-app", - "babel-preset-stage-0", - "babel-preset-stage-1", - "babel-preset-stage-2", - "babel-preset-stage-3", - "babel-register", - "babel-runtime", - "babel-template", - "babel-traverse", - "babel-types", - "babelify", - "babylon", - "backbone", - "baqend", - "bark-needs-visit4", - "base-64", - "base-individual-comfortable-crop", - "base64-js", - "basic-auth", - "batuta", - "bcrypt", - "bcrypt-nodejs", - "bcryptjs", - "bearcat", - "beautify-benchmark", - "beauty-foot-compass5", - "beefy", - "believed-usually-greater-passage", - "benchmark", - "best-lips-shoulder", - "best-valley2", - "between-cry-additional", - "beyond", - "bfj", - "bignumber.js", - "bindings", - "bip39", - "bizcharts", - "bl", - "blanket", - "blessed", - "blessed-contrib", - "blockchain-am5", - "blockchain-baby", - "blockchain-back1", - "blockchain-closely", - "blockchain-directly", - "blockchain-egg", - "blockchain-happily", - "blockchain-language", - "blockchain-own8", - "blockchain-record", - "blockchain-scientist", - "blocked", - "bluebird", - "bn.js", - "body-parser", - "bookshelf", - "boom", - "bootstrap", - "bootstrap-sass", - "bower", - "boxen", - "brain", - "branch-body-web3-feel", - "branch-camera-web3-organization", - "brfs", - "broccoli-funnel", - "broccoli-merge-trees", - "broccoli-test-helper", - "brought-tried-whether8", - "browser-sync", - "browserify", - "browserify-shim", - "browserslist", - "bs58", - "bson", - "btoa", - "buble", - "buffer", - "buffer-equal", - "bufferutil", - "built-who-entire", - "builtin-modules", - "bulma", - "bump-cli", - "bundle-collapser", - "bunyan", - "busboy", - "bytebuffer", - "bytes", - "c8", - "cac", - "cache-manager", - "call-bind", - "camelcase", - "caniuse", - "caniuse-lite", - "canvas", - "careful-faster-dirty-matter", - "case-sensitive-paths-webpack-plugin", - "casperjs", - "caught-brain-service0", - "chai", - "chai-as-promised", - "chai-passport-strategy", - "chai-subset", - "chalk", - "chance", - "chance-able-necessary-bell", - "change-case", - "changelogen", - "chart.js", - "cheerio", - "chicken-fell-spread", - "child_process", - "child-process-promise", - "choerodon-ui", - "chokidar", - "ci-info", - "ckeditor5", - "classnames", - "clean-css", - "clean-webpack-plugin", - "clear", - "clear-module", - "cli", - "cli-boxes", - "cli-color", - "cli-cursor", - "cli-spinner", - "cli-spinners", - "cli-table", - "cli-table2", - "cli-table3", - "cli-truncate", - "cli-ux", - "clipanion", - "clipboard", - "clipboardy", - "cliui", - "clone", - "clsx", - "clui", - "co", - "co-prompt", - "code", - "codecov", - "codemirror", - "coffee-script", - "coffeescript", - "color", - "colorette", - "colors", - "columnify", - "command-exists", - "command-line-args", - "command-line-usage", - "commander", - "commitizen", - "commitlint", - "common-tags", - "component-emitter", - "compression", - "concat-stream", - "concurrently", - "config", - "configstore", - "connect", - "connect-flash", - "connect-history-api-fallback", - "connect-mongo", - "connect-redis", - "consola", - "consolidate", - "content-disposition", - "content-type", - "contenthook", - "conventional-changelog", - "conventional-changelog-cli", - "conventional-changelog-conventionalcommits", - "convert-source-map", - "cookie", - "cookie-parser", - "cookie-session", - "cookie-signature", - "copy-to-clipboard", - "copy-webpack-plugin", - "copyfiles", - "corcojs-qrcode", - "corcojs-qrcode-logo", - "cordova", - "core-js", - "cors", - "cosmiconfig", - "coveralls", - "cpy-cli", - "crawler", - "crc", - "create-hash", - "create-react-class", - "critical", - "cron", - "croner", - "cronnor", - "cropperjs", - "cross-env", - "cross-fetch", - "cross-spawn", - "crypto", - "crypto-browserify", - "crypto-js", - "cson-parser", - "cspell", - "css", - "css-declaration-sorter", - "css-functions-list", - "css-loader", - "css-minimizer-webpack-plugin", - "css-select", - "css-tree", - "cssdb", - "cssesc", - "cssnano", - "cssstyle", - "csstype", - "csurf", - "csv", - "csv-generate", - "csv-parse", - "csv-stringify", - "csvtojson", - "cucumber", - "cuid", - "cypress", - "cz-conventional-changelog", - "d3", - "d3-array", - "d3-scale", - "d3-selection", - "d3-shape", - "dable-effect", - "daisyui", - "dance-you-thou", - "dargs", - "datafire", - "date-fns", - "dateformat", - "dayjs", - "deasync", - "debounce", - "debug", - "decamelize", - "decompress", - "dedent", - "dedupe", - "deep-assign", - "deep-consist-ability3", - "deep-diff", - "deep-eql", - "deep-equal", - "deep-extend", - "deepmerge", - "del", - "del-cli", - "delay", - "depcheck", - "depd", - "dependency-check", - "depth-clay-tax7", - "detect-indent", - "detect-port", - "did-enter-lay", - "diff", - "diff2html", - "difference-mile-pocket5", - "directed-graph-typed", - "dirty-chai", - "discord-backend-manager", - "discord.js", - "dist", - "distance-its-clear-rate", - "dmd", - "dmd-grunt-jsdoc2md", - "dnd-multi-backend", - "dnode", - "doc-detective", - "doc-detective-core", - "docco", - "docgen", - "dockerode", - "docpad", - "docschema", - "docsify-tabs", - "doctoc", - "documentation", - "documentdb", - "docusaurus", - "docusaurus-lunr-search", - "dom-helpers", - "dom-serializer", - "dom-to-image-more", - "dompurify", - "dot", - "dotenv", - "dotenv-expand", - "download", - "download-git-repo", - "doxdox", - "doxdox-cli", - "doxdox-core", - "doxdox-parser-dox", - "doxdox-parser-jsdoc", - "doxdox-renderer-bootstrap", - "doxdox-renderer-json", - "doxdox-renderer-markdown", - "draft-js", - "dropzone", - "dtslint", - "dubnium", - "dumi", - "dumi-cm", - "duplexer", - "dw-neit-antd", - "each", - "echarts", - "eclint", - "ejs", - "elasticsearch", - "electricity-death-web3-story", - "electron", - "electron-builder", - "electron-packager", - "electron-prebuilt", - "electron-rebuilder", - "element-resize-detector", - "element-ui", - "eleventy", - "elliptic", - "email-templates", - "emailjs", - "ember-cli", - "ember-cli-babel", - "ember-cli-htmlbars", - "emmet", - "emotion", - "encodeurl", - "end-of-stream", - "enhanced-resolve", - "enquirer", - "ent", - "enumtype", - "envify", - "envinfo", - "enzyme", - "enzyme-adapter-react-16", - "enzyme-adapter-utils", - "enzyme-shallow-equal", - "errorhandler", - "es-check", - "es-value-fixtures", - "es5-ext", - "es5-shim", - "es6-error", - "es6-promise", - "es6-promisify", - "es6-shim", - "esbuild", - "escape-html", - "escape-string-regexp", - "escodegen", - "eslint", - "eslint-config-airbnb", - "eslint-config-airbnb-base", - "eslint-config-airbnb-typescript", - "eslint-config-google", - "eslint-config-gulp", - "eslint-config-oclif", - "eslint-config-oclif-typescript", - "eslint-config-prettier", - "eslint-config-react-app", - "eslint-config-semistandard", - "eslint-config-standard", - "eslint-config-unjs", - "eslint-config-xo", - "eslint-config-xo-lass", - "eslint-doc-generator", - "eslint-import-resolver-typescript", - "eslint-loader", - "eslint-plugin-ava", - "eslint-plugin-babel", - "eslint-plugin-compat", - "eslint-plugin-es5", - "eslint-plugin-eslint-comments", - "eslint-plugin-eslint-plugin", - "eslint-plugin-flowtype", - "eslint-plugin-html", - "eslint-plugin-import", - "eslint-plugin-jest", - "eslint-plugin-jsdoc", - "eslint-plugin-jsonc", - "eslint-plugin-jsx-a11y", - "eslint-plugin-markdown", - "eslint-plugin-mocha", - "eslint-plugin-n", - "eslint-plugin-node", - "eslint-plugin-prettier", - "eslint-plugin-promise", - "eslint-plugin-react", - "eslint-plugin-react-hooks", - "eslint-plugin-regexp", - "eslint-plugin-security", - "eslint-plugin-sonarjs", - "eslint-plugin-standard", - "eslint-plugin-svelte", - "eslint-plugin-testing-library", - "eslint-plugin-tsdoc", - "eslint-plugin-unicorn", - "eslint-plugin-vitest", - "eslint-plugin-vue", - "eslint-remote-tester", - "eslint-scope", - "eslint-visitor-keys", - "eslintrc", - "esm", - "espree", - "esprima", - "estraverse", - "estree-walker", - "etag", - "ethereumjs-tx", - "ethereumjs-util", - "evalmd", - "event-stream", - "eventemitter2", - "eventemitter3", - "events", - "excellent-difficult-good", - "execa", - "exit", - "expect", - "expect-type", - "expect.js", - "express", - "express-adexe", - "express-autodoc", - "express-generator", - "express-handlebars", - "express-jwt", - "express-session", - "express-tools", - "express-typed-rpc", - "express-validator", - "express-zod-api", - "extend", - "extend-shallow", - "extract-text-webpack-plugin", - "extract-zip", - "facing-cook", - "fair-tower-web3-store", - "faker", - "fancy-log", - "fast-check", - "fast-csv", - "fast-deep-equal", - "fast-glob", - "fast-plist", - "fast-xml-parser", - "fastclick", - "fastify", - "father", - "faucet", - "fbjs", - "fe-pilot", - "feature-rising-small7", - "femo", - "fetch-mock", - "fibers", - "figlet", - "figures", - "file-loader", - "file-saver", - "file-type", - "filesize", - "finalhandler", - "find-cache-dir", - "find-up", - "findup-sync", - "firan-logging", - "firebase", - "firebase-admin", - "firebase-tools", - "fixpack", - "fixturify", - "flat", - "flatpak-bundler", - "flatpickr", - "flightplan", - "flow-bin", - "flowbite", - "fluent-ffmpeg", - "flux", - "follow-redirects", - "font-awesome", - "for-each", - "forever", - "fork-ts-checker-webpack-plugin", - "fork-ts-checker-webpack-plugin-alt", - "form-data", - "formidable", - "formik", - "fresh", - "fresh-dangerous", - "friendly-errors-webpack-plugin", - "front-matter", - "fs", - "fs-extra", - "fs-jetpack", - "fs-promise", - "fsevents", - "fstream", - "ftp", - "functions-have-names", - "fur-race-web3-pale", - "fuse.js", - "futen", - "fuzzy", - "gaze", - "gc-signals", - "generator-angular", - "generator-gulp-angular", - "generator-nitro", - "generic-pool", - "gensequence", - "gentle-party-other", - "geolib", - "get-package-type", - "get-port", - "get-stdin", - "get-stream", - "get-tsconfig", - "getmac", - "gh-pages", - "ghooks", - "github", - "github-buttons", - "glob", - "glob-parent", - "global", - "globals", - "globby", - "gm", - "gmll", - "google-spreadsheet", - "googleapis", - "got", - "government-letter-web3-till", - "govuk-frontend", - "graceful-fs", - "gradually-current-chief", - "graph-these", - "graphql", - "graphql-tag", - "graphql-tools", - "gray-matter", - "grpc", - "grunt", - "grunt-angular-templates", - "grunt-auto-release", - "grunt-browserify", - "grunt-bump", - "grunt-cli", - "grunt-concurrent", - "grunt-contrib-clean", - "grunt-contrib-compass", - "grunt-contrib-concat", - "grunt-contrib-connect", - "grunt-contrib-copy", - "grunt-contrib-csslint", - "grunt-contrib-cssmin", - "grunt-contrib-htmlmin", - "grunt-contrib-imagemin", - "grunt-contrib-internal", - "grunt-contrib-jshint", - "grunt-contrib-less", - "grunt-contrib-nodeunit", - "grunt-contrib-sass", - "grunt-contrib-uglify", - "grunt-contrib-watch", - "grunt-conventional-changelog", - "grunt-conventional-github-releaser", - "grunt-eslint", - "grunt-jscs", - "grunt-jsdoc", - "grunt-karma", - "grunt-mocha-test", - "grunt-newer", - "grunt-notify", - "grunt-npm", - "grunt-sass", - "grunt-saucelabs", - "grunt-shell", - "grunt-simple-mocha", - "grunt-spritesmith", - "grunt-usemin", - "gts", - "guarapi", - "gulp", - "gulp-angular-templatecache", - "gulp-atom-electron", - "gulp-autoprefixer", - "gulp-awspublish", - "gulp-azure-storage", - "gulp-babel", - "gulp-bom", - "gulp-bower", - "gulp-browserify", - "gulp-buffer", - "gulp-bump", - "gulp-cache", - "gulp-cached", - "gulp-changed", - "gulp-clean", - "gulp-clean-css", - "gulp-coffee", - "gulp-compass", - "gulp-concat", - "gulp-concat-css", - "gulp-conflict", - "gulp-connect", - "gulp-copy", - "gulp-csscomb", - "gulp-csslint", - "gulp-cssnano", - "gulp-csso", - "gulp-data", - "gulp-eslint", - "gulp-file-include", - "gulp-filter", - "gulp-flatmap", - "gulp-flatten", - "gulp-format-md", - "gulp-ftp", - "gulp-gh-pages", - "gulp-git", - "gulp-gzip", - "gulp-handlebars", - "gulp-header", - "gulp-html-replace", - "gulp-htmlmin", - "gulp-iconfont", - "gulp-if", - "gulp-ignore", - "gulp-image-resize", - "gulp-imagemin", - "gulp-include", - "gulp-inject", - "gulp-inline-css", - "gulp-install", - "gulp-istanbul", - "gulp-jade", - "gulp-jasmine", - "gulp-jscs", - "gulp-jshint", - "gulp-json-editor", - "gulp-less", - "gulp-livereload", - "gulp-load-plugins", - "gulp-minify-css", - "gulp-minify-html", - "gulp-mocha", - "gulp-newer", - "gulp-ng-annotate", - "gulp-nodemon", - "gulp-notify", - "gulp-plugin-extras", - "gulp-plumber", - "gulp-postcss", - "gulp-preprocess", - "gulp-prompt", - "gulp-react", - "gulp-remote-src", - "gulp-rename", - "gulp-replace", - "gulp-rev", - "gulp-rev-replace", - "gulp-ruby-sass", - "gulp-sass", - "gulp-sftp", - "gulp-shell", - "gulp-size", - "gulp-sourcemaps", - "gulp-strip-debug", - "gulp-stylus", - "gulp-svg-sprite", - "gulp-svgmin", - "gulp-svgstore", - "gulp-template", - "gulp-tsb", - "gulp-tslint", - "gulp-typescript", - "gulp-uglify", - "gulp-uncss", - "gulp-usemin", - "gulp-useref", - "gulp-util", - "gulp-vinyl-zip", - "gulp-watch", - "gulp-webpack", - "gulp-webserver", - "gulp-zip", - "gulp.spritesmith", - "gzip-size", - "hallmark", - "hammerjs", - "handlebars", - "hapi", - "happy-dom", - "happy-meant", - "hard-cool-rhythm-continued", - "has-flag", - "has-parts-ice-fact", - "has-symbols", - "hash-sum", - "hasown", - "hast-util-raw", - "hast-util-sanitize", - "hast-util-select", - "hast-util-to-estree", - "hast-util-to-html", - "hast-util-to-jsx-runtime", - "hast-util-to-string", - "hast-util-to-text", - "hastscript", - "hay-against-any-hurry", - "hbs", - "he", - "heapdump", - "helmet", - "heroicons", - "hexlet-pairs", - "hexo", - "highland", - "highlight.js", - "hiredis", - "history", - "history-brass-sound", - "hit-running-special8", - "hoek", - "hogan.js", - "hoist-non-react-statics", - "homebridge", - "hono", - "hope-slight-walk1", - "hosted-git-info", - "how-to-npm", - "html-dom-parser", - "html-element-attributes", - "html-encoding-sniffer", - "html-entities", - "html-escaper", - "html-loader", - "html-minifier", - "html-minifier-terser", - "html-pdf", - "html-react-parser", - "html-tags", - "html-to-image", - "html-to-text", - "html-validate", - "html-webpack-plugin", - "htmlnano", - "htmlparser2", - "http", - "http-errors", - "http-proxy", - "http-proxy-agent", - "http-proxy-middleware", - "http-server", - "http-status", - "http-status-codes", - "https", - "https-proxy-agent", - "husky", - "hyperquest", - "hyphenate-style-name", - "i", - "i18n", - "i18next", - "i18next-gridly-backend", - "iconv-lite", - "identity-obj-proxy", - "ignore", - "image-size", - "imagemagick", - "imagemin", - "imagemin-pngquant", - "imap", - "immer", - "immutability-helper", - "immutable", - "import-fresh", - "import-local", - "impress", - "in-publish", - "indent-string", - "inert", - "inferno", - "inflection", - "inherits", - "ini", - "iniparser", - "ink", - "inline-style-parser", - "innosetup-compiler", - "inquirer", - "inquirer-autocomplete-prompt", - "inside-throw", - "instagram-node", - "install", - "interpret", - "intl", - "intl-tel-input", - "invariant", - "inversify", - "ionic", - "ionicons", - "ioredis", - "ip", - "irc", - "is", - "is-ci", - "is-glob", - "is-installed-globally", - "is-plain-obj", - "is-plain-object", - "is-potential-custom-element-name", - "is-promise", - "is-stream", - "is-url", - "is-wsl", - "isarray", - "isobject", - "isomorphic-fetch", - "istanbul", - "itwcw-package-analytics", - "iview", - "jackspeak", - "jade", - "jake", - "jarallax", - "jasmine", - "jasmine-core", - "jasmine-node", - "jest", - "jest-canvas-mock", - "jest-cli", - "jest-diff", - "jest-environment-jsdom", - "jest-environment-jsdom-fourteen", - "jest-environment-node", - "jest-extended", - "jest-html-reporters", - "jest-junit", - "jest-pnp-resolver", - "jest-resolve", - "jest-util", - "jest-watch-typeahead", - "jest-worker", - "jimp", - "jiti", - "jodit", - "jodit-react", - "johnny-five", - "joi", - "jotai", - "jquery", - "jquery-ui", - "js-base64", - "js-beautify", - "js-cookie", - "js-yaml", - "jsarch", - "jscpd", - "jscs", - "jsdoc", - "jsdoc-api", - "jsdoc-to-markdown", - "jsdom", - "jsdom-no-contextify", - "jsesc", - "jshint", - "jshint-stylish", - "json-2-csv", - "json-loader", - "json-schema", - "json-server", - "json-stable-stringify", - "json-stringify-safe", - "json5", - "jsonc-parser", - "jsonfile", - "jsonschema", - "JSONStream", - "jsonwebtoken", - "jspm", - "jstates", - "jszip", - "jwt-decode", - "jwt-simple", - "karma", - "karma-browserify", - "karma-browserstack-launcher", - "karma-chai", - "karma-chrome-launcher", - "karma-coverage", - "karma-detect-browsers", - "karma-edge-launcher", - "karma-firefox-launcher", - "karma-ie-launcher", - "karma-jasmine", - "karma-mocha", - "karma-mocha-reporter", - "karma-phantomjs-launcher", - "karma-qunit", - "karma-rollup-preprocessor", - "karma-safari-launcher", - "karma-sauce-launcher", - "karma-sinon", - "karma-sourcemap-loader", - "karma-spec-reporter", - "karma-webpack", - "keycode", - "keypress", - "keyv", - "kleur", - "knex", - "knip", - "known-css-properties", - "knox", - "koa", - "koa-body", - "koa-bodyparser", - "koa-compose", - "koa-logger", - "koa-mount", - "koa-router", - "koa-static", - "kue", - "lab", - "label-lungs-court4", - "language-perfectly-blow-series", - "late-dress-mail5", - "latest-version", - "lazy.js", - "lead-alike-web3-applied", - "leaflet", - "left-pad", - "leftpad", - "lerna", - "less", - "less-loader", - "level", - "leveldown", - "levelup", - "leven", - "libnpmdiff", - "libnpmexec", - "libnpmfund", - "libphonenumber-js", - "liftoff", - "lilconfig", - "linkifyjs", - "lint-staged", - "listr", - "listr2", - "lit-element", - "lite-server", - "live-server", - "livereload", - "load-grunt-config", - "load-grunt-tasks", - "loader-utils", - "local-web-server", - "localforage", - "localtunnel", - "lockfile-lint", - "lodash", - "lodash-es", - "lodash.assign", - "lodash.camelcase", - "lodash.clonedeep", - "lodash.debounce", - "lodash.defaults", - "lodash.flatten", - "lodash.foreach", - "lodash.get", - "lodash.isempty", - "lodash.isequal", - "lodash.isfunction", - "lodash.isobject", - "lodash.isplainobject", - "lodash.isstring", - "lodash.map", - "lodash.memoize", - "lodash.merge", - "lodash.omit", - "lodash.pick", - "lodash.set", - "lodash.template", - "lodash.throttle", - "lodash.uniq", - "log", - "log-symbols", - "log-update", - "log4js", - "loglevel", - "long", - "loopback", - "loose-envify", - "lowdb", - "lru-cache", - "lucide", - "luck-rubber-do", - "lwip", - "lws", - "madwizard", - "magic-string", - "magmastream", - "main-bower-files", - "make-dir", - "make-node", - "mammoth", - "manifest", - "mantine-contextmenu", - "many-favorite6", - "map-stream", - "mapboxgl-legend", - "markdown", - "markdown-it", - "markdown-it-anchor", - "markdown-it-container", - "markdown-it-emoji", - "markdown-pdf", - "markdown-table", - "markdown-to-jsx", - "markdown-toc", - "markdownlint", - "markdownlint-cli", - "marked", - "marky-markdown", - "matcha", - "material-ui", - "mathjs", - "matter-view-web3-fence", - "md5", - "md5-file", - "mdast-util-from-markdown", - "mdast-util-to-hast", - "mdn-data", - "mdxts", - "memcached", - "memfs", - "memoize-one", - "memory-cache", - "memory-fs", - "memorystream", - "memwatch", - "mental-oxygen-dozen", - "meow", - "merge", - "merge-stream", - "metalsmith", - "meteor", - "method-override", - "methods", - "microbundle", - "micromark", - "micromatch", - "mime", - "mime-types", - "min-heap-typed", - "mini-css-extract-plugin", - "minify", - "minimatch", - "minimist", - "mirror-jet-printed-supper", - "missing-sport-living", - "mkcert", - "mkdirp", - "mlly", - "mobx", - "mobx-react", - "mocha", - "mocha-headless-chrome", - "mocha-junit-reporter", - "mocha-lcov-reporter", - "mock-fs", - "mock-property", - "mock-require", - "mock-stdin", - "mockdate", - "mockery", - "mockjs", - "moleculer", - "moment", - "moment-timezone", - "monaco-yaml", - "monads-io", - "mongo-express", - "mongodb", - "mongoose", - "monitor", - "monitor-dashboard", - "monk", - "morgan", - "motor-positive-spirit", - "move-wolf-throughout", - "movie-obtain-tail-prepare", - "mqtt", - "ms", - "mssql", - "msw", - "mud-slowly-five3", - "multer", - "multimatch", - "multiparty", - "multiple-cucumber-html-reporter", - "mustache", - "muuri", - "mysql", - "mysql2", - "mz", - "n", - "nails-wild-interest-garden", - "nan", - "nano", - "nano-css", - "nanoid", - "native-keymap", - "nativefier", - "nativescript", - "natural", - "nconf", - "ncp", - "near-social-bridge", - "nedb", - "needle", - "nest-commander", - "newman", - "newrelic", - "next-auth", - "nextjs", - "ng-mocks", - "ng-zorro-antd", - "ngrok", - "nib", - "nightmare", - "nightwatch", - "nine-yes-merely6", - "nise", - "nock", - "node-addon-api", - "node-cache", - "node-containerpattern", - "node-dev", - "node-dir", - "node-emoji", - "node-fetch", - "node-forge", - "node-gcm", - "node-geocoder", - "node-gyp", - "node-html-parser", - "node-inspector", - "node-mocks-http", - "node-notifier", - "node-oauth2-server", - "node-powertools", - "node-pre-gyp", - "node-pty", - "node-red", - "node-sass", - "node-schedule", - "node-static", - "node-uuid", - "node-watch", - "node-windows", - "node-xlsx", - "node.extend", - "nodegit", - "nodemailer", - "nodemon", - "nodeunit", - "nodewebkit", - "nolangjs", - "nomnom", - "nopt", - "normalize-path", - "normalize-url", - "normalize-wheel", - "normalize.css", - "np", - "npm", - "npm-check", - "npm-check-updates", - "npm-package-arg", - "npm-package-json-lint", - "npm-packlist", - "npm-registry-fetch", - "npm-run-all", - "npm-run-all2", - "npm-run-path", - "npm-to-yarn", - "npm-windows-upgrade", - "npmcli", - "npmignore", - "npmlog", - "nprogress", - "nsp", - "nuke-cli", - "numeral", - "nunjucks", - "nvm", - "nvmrc", - "nwsapi", - "nx", - "nyc", - "oas", - "oas-normalize", - "oauth", - "object-assign", - "object-hash", - "object-inspect", - "object-keys", - "object-path", - "object.assign", - "object.entries", - "observe-food-motion-hidden", - "on-finished", - "once", - "onchange", - "one-how-hand", - "onoff", - "open", - "open-cli", - "openapi-client-axios", - "openapi2html", - "opencv", - "opener", - "openweather", - "opn", - "optimist", - "optimize-css-assets-webpack-plugin", - "optionator", - "ora", - "orchestrator", - "orm", - "os", - "osenv", - "outdent", - "outline-slowly", - "overlayscrollbars", - "ovsx", - "p-event", - "p-map", - "p-queue", - "p-timeout", - "p23", - "pa11y", - "pacote", - "pageres", - "paintor", - "pako", - "para-cli", - "para-client-js", - "parallelshell", - "parse", - "parse5", - "parseurl", - "passport", - "passport-facebook", - "passport-local", - "passport-oauth", - "passport-oauth2", - "passport-strategy", - "path", - "path-browserify", - "path-exists", - "path-is-absolute", - "path-to-regexp", - "pathe", - "paypal-server-api", - "pdfjs", - "pdfkit", - "performance-now", - "pg", - "phantom", - "phantomjs", - "phantomjs-prebuilt", - "phonegap", - "pi-gpio", - "picocolors", - "picomatch", - "pie-case-nor-great", - "pify", - "pino", - "pinst", - "pitch-somehow-earth-brave", - "pixelmatch", - "pkg-dir", - "pkg-up", - "pkginfo", - "playwright", - "plist", - "plugin-error", - "plur", - "pluralize", - "pm2", - "pngjs", - "pnp-webpack-plugin", - "pnpm", - "pnpx", - "poe-api-manager", - "polished", - "political-plan-careful", - "popper.js", - "portfinder", - "postcss", - "postcss-calc", - "postcss-cli", - "postcss-color-functional-notation", - "postcss-colormin", - "postcss-convert-values", - "postcss-cssnext", - "postcss-custom-media", - "postcss-custom-properties", - "postcss-custom-selectors", - "postcss-discard-comments", - "postcss-discard-duplicates", - "postcss-discard-empty", - "postcss-discard-overridden", - "postcss-flexbugs-fixes", - "postcss-html", - "postcss-image-set-function", - "postcss-import", - "postcss-load-config", - "postcss-loader", - "postcss-merge-longhand", - "postcss-merge-rules", - "postcss-minify-font-values", - "postcss-minify-gradients", - "postcss-minify-params", - "postcss-minify-selectors", - "postcss-modules-local-by-default", - "postcss-nested", - "postcss-nesting", - "postcss-normalize", - "postcss-normalize-charset", - "postcss-normalize-positions", - "postcss-normalize-string", - "postcss-normalize-unicode", - "postcss-normalize-url", - "postcss-normalize-whitespace", - "postcss-ordered-values", - "postcss-prefix-selector", - "postcss-preset-env", - "postcss-reduce-initial", - "postcss-safe-parser", - "postcss-scss", - "postcss-selector-parser", - "postcss-svgo", - "postcss-unique-selectors", - "postcss-value-parser", - "postgrejs", - "posthtml", - "pouchdb", - "power-assert", - "pre-commit", - "preact", - "prepare-package", - "prettier", - "prettier-plugin-jsdoc", - "prettier-plugin-organize-imports", - "prettier-plugin-packagejson", - "prettier-plugin-svelte", - "prettierrc", - "pretty-bytes", - "pretty-error", - "pretty-format", - "pretty-ms", - "pretty-quick", - "prettyjson", - "prisma", - "prismjs", - "private-bower", - "proc-log", - "process", - "progress", - "progress-bar-webpack-plugin", - "promise", - "promise-polyfill", - "promises-aplus-tests", - "promo-server", - "prompt", - "prompts", - "prop-types", - "property-information", - "protobufjs", - "protractor", - "proxy", - "proxyquire", - "publish-please", - "pug", - "pull-stream", - "pump", - "punycode", - "puppeteer", - "purgecss", - "q", - "qr-image", - "qrcode-terminal", - "qs", - "query-string", - "querystring", - "queue", - "queue-typed", - "quill", - "qunit", - "qunit-dom", - "qunitjs", - "raf", - "ramda", - "random-words", - "randombytes", - "randomstring", - "range-parser", - "raven", - "raw-body", - "raw-loader", - "rc", - "rc-slider", - "rc-tooltip", - "rc-util", - "rcw-plugin", - "react", - "react-addons-css-transition-group", - "react-addons-shallow-compare", - "react-apollo", - "react-app-polyfill", - "react-bootstrap", - "react-color", - "react-copy-to-clipboard", - "react-datepicker", - "react-dev-utils", - "react-dnd", - "react-dnd-html5-backend", - "react-docgen", - "react-dom", - "react-dropzone", - "react-error-overlay", - "react-helmet", - "react-hook-form", - "react-hot-loader", - "react-i18next", - "react-icons", - "react-intersection-observer", - "react-intl", - "react-is", - "react-lifecycles-compat", - "react-markdown", - "react-modal", - "react-motion", - "react-native", - "react-native-keychain", - "react-native-vector-icons", - "react-number-format", - "react-onclickoutside", - "react-property", - "react-redux", - "react-refresh", - "react-responsive", - "react-router", - "react-router-dom", - "react-router-redux", - "react-scripts", - "react-select", - "react-slick", - "react-styleguidist", - "react-svg", - "react-tap-event-plugin", - "react-test-renderer", - "react-toastify", - "react-tools", - "react-transition-group", - "react-virtualized", - "reactify", - "reactstrap", - "read", - "read-pkg", - "read-pkg-up", - "readable-stream", - "readline", - "readline-sync", - "recall-shut-say", - "recast", - "recently-building-save", - "rechoir", - "recompose", - "recursive-readdir", - "redis", - "redoc", - "redocusaurus", - "redux", - "redux-actions", - "redux-form", - "redux-logger", - "redux-saga", - "redux-thunk", - "reflect-metadata", - "regenerate", - "regenerator-runtime", - "rehype", - "rehype-autolink-headings", - "rehype-external-links", - "rehype-mdx-code-props", - "rehype-parse", - "rehype-raw", - "rehype-slug", - "rehype-stringify", - "release-it", - "remap-istanbul", - "remark", - "remark-cli", - "remark-gfm", - "remark-html", - "remark-mermaidjs", - "remark-parse", - "remark-preset-github", - "remark-preset-wooorm", - "remark-rehype", - "remarkable", - "replace-ext", - "replace-in-file", - "request", - "request-promise", - "request-promise-native", - "require-all", - "require-dir", - "requireindex", - "requirejs", - "reselect", - "resize-observer-polyfill", - "resolve", - "resolve-from", - "resolve-url-loader", - "rest-chronicle", - "restify", - "restler", - "restore-cursor", - "rethinkdb", - "retry", - "rewire", - "rfdc", - "rimraf", - "robotjs", - "rollup", - "rollup-plugin-babel", - "rollup-plugin-buble", - "rollup-plugin-cleanup", - "rollup-plugin-commonjs", - "rollup-plugin-dts", - "rollup-plugin-json", - "rollup-plugin-license", - "rollup-plugin-node-builtins", - "rollup-plugin-node-globals", - "rollup-plugin-node-resolve", - "rollup-plugin-replace", - "rollup-plugin-sourcemaps", - "rollup-plugin-terser", - "rollup-plugin-typescript", - "rollup-plugin-typescript2", - "rollup-plugin-uglify", - "rollup-plugin-visualizer", - "rollup-pluginutils", - "routes", - "rsnext", - "rsvp", - "rtlcss", - "run-sequence", - "run-series", - "rx", - "rxjs", - "rxjs-compat", - "safe-buffer", - "safe-publish-latest", - "sails", - "salt-type-oldest-faster", - "sand-have-metal6", - "sanitize-filename", - "sanitize-html", - "sass", - "sass-loader", - "sat-local", - "sax", - "scheduler", - "schema-markdown-doc", - "schema-utils", - "science-knowledge-truth", - "seblakhotspicy", - "secp256k1", - "seedrandom", - "selenium-webdriver", - "semantic-release", - "semantic-ui-react", - "semistandard", - "semver", - "send", - "seneca", - "sentiment", - "sequelize", - "serialize-javascript", - "serialport", - "serve", - "serve-favicon", - "serve-index", - "serve-static", - "server-destroy", - "serverless-finch", - "serverless-spy", - "sha1", - "shallowequal", - "sharp", - "shell-quote", - "shelljs", - "shinning-continued-becoming", - "shortid", - "should", - "showdown", - "shx", - "sick-typical-court7", - "signal-exit", - "similar-cheese-loss", - "simple-assi-animation", - "simple-git", - "simple-prompts-web3", - "single-spa", - "sink-mighty-orbit0", - "sink-rod-lamp", - "sinon", - "sinon-chai", - "sinopia", - "sirv", - "size-limit", - "sizeitup", - "skapi-js", - "sky-buy-web3-rock", - "slash", - "slice-ansi", - "slow-deps", - "slow-voice-spell-pass", - "slug", - "slugify", - "small-grow-mix4", - "snake-seven-recall-interior", - "snazzy", - "soap", - "socket.io", - "socket.io-client", - "sockjs-client", - "source-map", - "source-map-js", - "source-map-loader", - "source-map-support", - "space-separated-tokens", - "spectaql", - "speech-section-part-frozen", - "spirit-labor-cheese", - "split", - "split2", - "spring-dust-wall-size", - "sprintf", - "sprintf-js", - "sprity", - "sqlite3", - "ssh2", - "ssri", - "st.db", - "stack-trace", - "standard", - "standard-version", - "star-location", - "start-server-and-test", - "statsd", - "statuses", - "stock-independent-balloon", - "storybook", - "storybook-django", - "straiforos-compodoc", - "strange-lady-riding9", - "stream-assert", - "stream-transform", - "streamii", - "strftime", - "string", - "string-strip-html", - "string-width", - "stringify-entities", - "strip-ansi", - "strip-bom", - "strip-json-comments", - "stripe", - "strongloop", - "style-dictionary", - "style-loader", - "style-to-js", - "style-to-object", - "styled-components", - "styled-jsx", - "stylehacks", - "stylelint", - "stylelint-config-standard", - "stylelint-declaration-strict-value", - "stylelint-order", - "stylelint-scss", - "stylus", - "stylus-loader", - "sugar-policeman-entire", - "sugarss", - "sun-grass-circle0", - "superagent", - "superjson", - "supertest", - "supertest-as-promised", - "supervisor", - "support-vessels-web3-vessels", - "supports-color", - "surrounded-characteristic-or-rain", - "svelte", - "svelte-check", - "svelte-preprocess", - "svg-sprite", - "svgo", - "sw-precache-webpack-plugin", - "swagger-autogen", - "swagger-inline", - "swagger-themes", - "swagger-ui-express", - "swam-darkness-weak", - "swig", - "swiper", - "sync-request", - "systeminformation", - "systemjs", - "tail-iron-became5", - "tailwind", - "tailwind-merge", - "tailwindcss", - "tap", - "tap-spec", - "tapable", - "tape", - "tar", - "tar-fs", - "tar-stream", - "tarant", - "tarant-sync-router-express", - "tdl", - "tdlib-native", - "temp", - "tempy", - "terminal-kit", - "terminal-menu", - "terser", - "terser-webpack-plugin", - "test-cutting", - "test-runner", - "test-snippets", - "testcafe", - "testcontainers", - "testdouble", - "testem", - "text-table", - "three", - "throttle-debounce", - "through", - "through2", - "throw-did-darkness4", - "thunkify", - "tildify", - "time-grunt", - "tinper-bee", - "tiny-lr", - "tinybench", - "tinycolor2", - "tinymce", - "tinypool", - "tinyspy", - "tmp", - "toastify-react-native", - "tocbot", - "toml", - "touch", - "tough-cookie", - "tracer", - "traffic-carry-opinion", - "train-stick-swept7", - "traverse", - "tree-kill", - "tribe-leaving-basket", - "trpc", - "trumpet", - "ts-cache-mongoose", - "ts-japi", - "ts-jest", - "ts-loader", - "ts-migrate-mongoose", - "ts-morph", - "ts-node", - "ts-patch-mongoose", - "ts-pnp", - "ts-rule-engine", - "tsconfig-paths", - "tsd", - "tsd-lite", - "tshy", - "tslib", - "tslint", - "tslint-config-prettier", - "tslint-react", - "tsup", - "tsx", - "turndown", - "tv4", - "tweetnacl", - "twemoji", - "twit", - "twitter", - "type-coverage", - "type-fest", - "type-is", - "typedoc", - "typedoc-material-theme", - "typedoc-plugin-extras", - "typedoc-plugin-markdown", - "typedocs", - "typegen", - "typegoose", - "typeorm", - "typescript", - "typescript-eslint", - "typescript-formatter", - "typescript-plugin-css-modules", - "typings", - "uglify-es", - "uglify-js", - "uglifyjs-webpack-plugin", - "uid-safe", - "uiw", - "uj-apidoc-core", - "ulid", - "ultrahtml", - "unbuild", - "underscore", - "underscore.string", - "undici", - "unified", - "unique-random-array", - "unist-util-visit", - "untildify", - "unusual-rope", - "unzip", - "update-notifier", - "urijs", - "url", - "url-join", - "url-loader", - "url-parse", - "urllib", - "user", - "user-home", - "useragent", - "utf8", - "util", - "utils-merge", - "uuid", - "uvu", - "valid-url", - "validate-commit-msg", - "validate-npm-package-name", - "validator", - "vant", - "vary", - "vasync", - "vercel", - "verror", - "vhost", - "victory-mouth", - "viewerjs", - "vinyl", - "vinyl-buffer", - "vinyl-fs", - "vinyl-source-stream", - "vinyl-sourcemaps-apply", - "virtual-dom", - "vite", - "vite-plugin-api-routes", - "vitepress", - "vitest", - "vorpal", - "vows", - "vsce", - "vscode-debugprotocol", - "vscode-nls-dev", - "vscode-textmate", - "vue", - "vue-class-component", - "vue-eslint-parser", - "vue-hot-reload-api", - "vue-i18n", - "vue-loader", - "vue-property-decorator", - "vue-router", - "vue-style-loader", - "vue-template-compiler", - "vuex", - "walk", - "walk-sync", - "warning", - "watch", - "watchify", - "waterline", - "wd", - "web3", - "web3-be", - "web3-capital", - "web3-compass", - "web3-eve-cli", - "web3-exactly6", - "web3-fruit", - "webpack", - "webpack-bundle-analyzer", - "webpack-cli", - "webpack-dev-middleware", - "webpack-dev-server", - "webpack-hot-middleware", - "webpack-manifest-plugin", - "webpack-merge", - "webpack-node-externals", - "webpack-sources", - "webshot", - "websocket", - "webtorrent", - "webworker-threads", - "weinre", - "whatwg-fetch", - "when", - "which", - "winreg", - "winston", - "winston-daily-rotate-file", - "winston-transport", - "wiredep", - "word-wrap", - "wordwrap", - "workbox-webpack-plugin", - "world-toy-kill", - "wrap-ansi", - "wrench", - "write-file-atomic", - "ws", - "x-ray", - "xhr", - "xlsx", - "xml-js", - "xml2js", - "xml2json", - "xmlbuilder", - "xmldom", - "xmlhttprequest", - "xo", - "xpath", - "xregexp", - "xss", - "xstate", - "xtend", - "xterm", - "yaml", - "yamljs", - "yargs", - "yargs-parser", - "yarn", - "yarnpkg", - "yarnrc", - "yauzl", - "yeoman-environment", - "yeoman-generator", - "yn", - "yo", - "yoctocolors-cjs", - "yonode", - "yosay", - "zmq", - "zod", - "zod-http-schemas", - "zombie", - "zone.js", - "zuul", - "@nx/cypress", - "@nx/eslint-plugin", - "@nx/jest", - "@nx/storybook", - "framer-motion", - "teajusgula", - "@mui/styled-engine", - "jsdoc-parse", - "@commercetools-frontend/constants", - "downshift", - "postcss-focus-visible", - "@augment-vir/common", - "@biomejs/biome", - "@commercetools-frontend/mc-scripts", - "@jsonforms/vanilla-renderers", - "@jsonforms/vue", - "@jsonforms/vue-vanilla", - "hast-util-from-html", - "hot-shots", - "madr", - "native-run", - "rehype-katex", - "supports-hyperlinks", - "swr", - "typed-binary", - "ua-parser-js", - "void-elements", - "@adonisjs/core", - "@aneuhold/be-ts-lib", - "@capacitor/assets", - "@devtea2025/blanditiis-numquam-expedita-neque", - "@devtea2025/doloremque-voluptas-facere-nemo", - "@devtea2025/quisquam-quod-ab-aut", - "@devtea2025/suscipit-assumenda-a-assumenda", - "@devtea2025/voluptatibus-vero-magni-rerum", - "@diahkomalasarinpm/odio-facilis-beatae", - "@diahkomalasarinpm/praesentium-sint-dolorem", - "@enact/core", - "@envelop/core", - "@ionic/cli", - "@jsonforms/angular", - "@jsonforms/examples", - "@npmtea2024/quasi-nisi-doloremque-fugit", - "@ptkhanh94npm/iusto-libero-aperiam", - "@ptkhanh94npm/quis-saepe-velit", - "@renyii/vue-renderless", - "@teamteanpm2024/aperiam-fugit-error", - "@teamteanpm2024/architecto-alias-quod", - "@teamteanpm2024/aut-voluptatum-vero", - "@teamteanpm2024/beatae-aliquid-id", - "@teamteanpm2024/expedita-labore-ipsum", - "@teamteanpm2024/odio-fugiat-in", - "@teamteanpm2024/voluptatibus-reprehenderit-odit", - "@testing-library/react-hooks", - "@zibuthe7j11/deserunt-quasi-impedit", - "anser", - "aws-sdk-client-mock", - "cupertino-pane", - "eruda", - "fasteejs", - "foundation-sites", - "gradient-string", - "grommet", - "html-url-attributes", - "magnific-popup", - "next", - "postcss-opacity-percentage", - "pwa-asset-generator", - "rapidoc", - "react-native-animatable", - "react-native-collapsible", - "react-swipeable-list", - "react-textarea-autosize", - "readme-md", - "recharts", - "riot", - "sortablejs", - "tdesign-mobile-vue", - "uploadcare-widget", - "wait-on", - "weui", - "zustand", - "fontsource", - "nextra", - "synckit", - "tinyglobby", - "tstyche", - "@ibyar/expressions", - "@mantine/carousel", - "@mantine/code-highlight", - "@mantine/dropzone", - "@mantine/nprogress", - "@mantine/spotlight", - "@mantine/store", - "@mantine/tiptap", - "allure-js-commons", - "express-intlayer", - "is-mobile", - "rehype-mermaid", - "@bugsnag/react-native", - "@enact/ui", - "@enact/webos", - "@ionic/angular", - "@npmtuanmap/velit-nobis-nostrum-nam", - "@skylernpm/hic-inventore-dolores", - "@skylernpm/reiciendis-non-corrupti", - "admin-lte", - "backendless", - "smartbanner.js", - "zarm", - "@enact/sandstone", - "perfect-scrollbar", - "react-responsive-select", - "titanium", - "@antora/logger", - "@asyncapi/generator", - "@docusaurus/core", - "@ionic/react", - "@juggle/resize-observer", - "@mui/base", - "@mui/private-theming", - "@mui/utils", - "@nestjsx/crud", - "@nestjsx/crud-typeorm", - "@netlify/framework-info", - "@next/env", - "@pmmmwh/react-refresh-webpack-plugin", - "@pothos/core", - "@storybook/addon-backgrounds", - "@strapi/strapi", - "@svgr/core", - "@svgr/hast-util-to-babel-ast", - "@tinyhttp/encode-url", - "@tinyhttp/logger", - "@tsparticles/interaction-external-push", - "@tsparticles/move-base", - "@tsparticles/shape-emoji", - "@tsparticles/updater-color", - "@tsparticles/updater-opacity", - "@tsparticles/updater-out-modes", - "@uppy/companion", - "@vuepress/core", - "@vuepress/markdown", - "@vuepress/markdown-loader", - "@vuepress/plugin-active-header-links", - "@vuepress/plugin-last-updated", - "@vuepress/plugin-nprogress", - "@vuepress/plugin-register-components", - "@vuepress/plugin-search", - "@vuepress/shared-utils", - "@vuepress/theme-default", - "@walletconnect/browser-utils", - "@walletconnect/iso-crypto", - "@walletconnect/legacy-modal", - "@walletconnect/legacy-provider", - "@walletconnect/socket-transport", - "@wordpress/primitives", - "angular-messages", - "angular-mocks", - "ansi-align", - "blocking-proxy", - "body-scroll-lock", - "broccoli", - "broccoli-builder", - "broccoli-middleware", - "browserstack", - "camelcase-css", - "character-entities", - "character-entities-html4", - "character-entities-legacy", - "character-reference-invalid", - "client-only", - "color-string", - "comma-separated-tokens", - "condense-newlines", - "css-mediaquery", - "css.escape", - "csso", - "dashdash", - "decap-cms-backend-aws-cognito-github-proxy", - "decap-cms-backend-azure", - "decap-cms-backend-bitbucket", - "decap-cms-backend-git-gateway", - "decap-cms-backend-github", - "decap-cms-backend-gitlab", - "decap-cms-backend-proxy", - "decap-cms-backend-test", - "device-detector-js", - "docsify", - "docsify-cli", - "dom7", - "enzyme-to-json", - "epub2", - "escape-goat", - "esdoc", - "eslint-rule-documentation", - "globals-docs", - "hast-util-is-element", - "hast-util-parse-selector", - "hast-util-to-parse5", - "hast-util-whitespace", - "html-parse-stringify", - "html-void-elements", - "http-graceful-shutdown", - "icss-utils", - "inferno-create-element", - "inferno-hydrate", - "inferno-vnode-flags", - "infima", - "ink-docstrap", - "jasminewd2", - "jest-preset-angular", - "jest-preview", - "logging-helpers", - "lws-index", - "micromark-extension-gfm-tagfilter", - "micromark-util-encode", - "micromark-util-html-tag-name", - "mobile-detect", - "nth-check", - "parse-entities", - "postcss-js", - "postcss-modules-values", - "query-selector-shadow-dom", - "rc-hammerjs", - "rdme", - "react-colorful", - "react-device-detect", - "react-easy-router", - "react-fast-compare", - "react-native-file-viewer", - "react-native-lightbox-v2", - "react-native-progress", - "react-native-svg-charts", - "react-native-youtube-iframe", - "react-popper", - "react-responsive-modal", - "react-style-singleton", - "text-hex", - "tsparticles", - "tua-body-scroll-lock", - "typedoc-default-themes", - "use-callback-ref", - "use-sidecar", - "vconsole", - "vitefu", - "vue-perfect-scrollbar", - "vuepress", - "wait-for-expect", - "webdriver-js-extender", - "webdriver-manager", - "widest-line", - "worktop", - "@antora/playbook-builder", - "@applitools/utils", - "@dataui/crud", - "@mui/types", - "@tsparticles/shape-circle", - "@tsparticles/updater-life", - "@tsparticles/updater-rotate", - "drag-drop", - "plasmo", - "react-h5-audio-player", - "@arethetypeswrong/cli", - "arethetypeswrong", - "astro", - "astrojs", - "cookiecutter", - "degit", - "tseslint", - "@web/test-runner-mocha", - "colord", - "@expressots/core", - "@tsparticles/interaction-particles-links", - "@astrojs/starlight", - "@expressots/adapter-express", - "@expressots/shared", - "@tsparticles/interaction-external-bounce", - "@tsparticles/interaction-external-remove", - "@tsparticles/move-parallax", - "@tsparticles/shape-polygon", - "@tsparticles/shape-square", - "pinia", - "@floating-ui/react", - "@tsparticles/shape-image", - "astro-expressive-code", - "netlify-cms-backend-test", - "rehype-expressive-code", - "@augment-vir/assert", - "cssfilter", - "@amaui/icons-material-rounded-react", - "@appium/types", - "@dataui/crud-typeorm", - "@tsparticles/basic", - "@tsparticles/updater-size", - "@onesy/icons-material-rounded-react", - "@tsparticles/interaction-external-grab", - "@tsparticles/interaction-particles-collisions", - "react-native-macos", - "@tsparticles/interaction-external-repulse", - "@tsparticles/slim", - "@ionic/react-router", - "@immobiliarelabs/backstage-plugin-gitlab-backend", - "@tsparticles/shape-star", - "kuler", - "@scalar/nextjs-api-reference", - "netlify-cms-backend-bitbucket", - "vendors", - "@busy-hour/blaze", - "@busy-hour/blaze-types", - "payload", - "attw", - "@egjs/flicking", - "body-scroll-lock-upgrade", - "@casl/ability", - "neostandard", - "@appium/schema", - "@modern-js/utils", - "@types/xast", - "css-what", - "grunt-svgmin", - "@modern-js/node-bundle-require", - "@axe-core/playwright", - "tsdown", - "careful-downloader", - "sonner", - "@ckeditor/ckeditor5-collaboration-core", - "embla-carousel-reactive-utils", - "react-smooth", - "globrex", - "@ckeditor/ckeditor5-real-time-collaboration", - "@inquirer/type", - "grammy", - "@tsparticles/plugin-hex-color", - "@tsparticles/plugin-hsl-color", - "@udecode/plate", - "loki", - "netlify-cms-backend-gitlab", - "teeny-tap", - "emoji-js", - "mercurius", - "publint", - "unbundle", - "@walletconnect/http-connection", - "convex-helpers", - "eslint-plugin-react-refresh", - "gulp-jsdoc3", - "netlify-cms-backend-git-gateway", - "borp", - "pagefind", - "@pinia/testing", - "leaflet-gesture-handling", - "@headlessui/vue", - "remeda", - "rolldown", - "valibot", - "netlify-cms-backend-proxy", - "lefthook", - "@nuxt/ui", - "country-codes-flags-phone-codes", - "embla-carousel-react", - "input-otp", - "zoroaster", - "embla-carousel", - "@assistant-ui/react", - "@csstools/css-calc", - "@globalart/nestjs-swagger", - "@graphiql/plugin-doc-explorer", - "@mastra/core", - "next-router-mock", - "vue-draggable-next", - "@tsparticles/plugin-rgb-color", - "react-native-lightbox", - "rolldown-vite", - "react-native-aes-crypto", - "@inquirer/figures", - "@lobehub/chat", - "@inquirer/confirm", - "@upstash/context7-mcp", - "@storybook/addon-vitest", - "@walletconnect/heartbeat", - "lory.js", - "react-camera-pro", - "react-native-nitro-modules", - "@csstools/css-color-parser", - "@csstools/color-helpers", - "shadcn", - "@tanstack/virtual-core", - "otp-io", - "survey-core", - "@appium/support", - "@intlayer/api", - "@prisma/dev", - "@architect/asap", - "canvaskit-wasm", - "@edsdk/n1ed-react", - "react-error-boundary", - "@crxjs/vite-plugin", - "@observablehq/plot", - "skia-canvas", - "@flmngr/flmngr-react", - "@vitest/browser-playwright", - "md-to-pdf", - "@applitools/eyes", - "@applitools/driver", - "@applitools/screenshoter", - "@tsparticles/interaction-external-slow", - "@tsparticles/shape-line", - "@antora/cli", - "@antora/navigation-builder", - "@openspacelabs/react-native-zoomable-view", - "@testcontainers/postgresql", - "unplugin", - "@antora/redirect-producer", - "@antora/site-publisher", - "@appium/logger", - "planck", - "stage-js", - "oxfmt", - "syncpack", - "nolyfill", - "@appium/base-driver", - "@inquirer/expand", - "@inquirer/select", - "@c15t/backend", - "@react-native-vector-icons/common", - "@antora/content-classifier", - "@tsparticles/interaction-particles-attract", - "@popperjs/core", - "animejs", - "blurup", - "encryptor", - "flickity", - "jstz", - "lexxy", - "mapboxgl", - "mongoid", - "nums", - "orms", - "pannellum", - "psql", - "svgs", - "swiperjs", - "tributejs", - "twbs", - "xbytes", - "dependencies", - "devDependencies", - "keywords", - "ts", - "big.js", - "@alifd/field", - "@alifd/overlay", - "@alifd/validate", - "shallow-element-equals", - "@types/react-transition-group", - "jsonp", - "ts-mocha", - "tsconfck", - "@types/co", - "html5shiv", - "react-axe", - "sass-true", - "@types/md5", - "react-live", - "solarlunar", - "@types/chai", - "@types/glob", - "@types/node", - "mochawesome", - "@types/jsonp", - "@types/react", - "@types/yargs", - "@types/big.js", - "@types/enzyme", - "@types/lodash", - "react-cropper", - "@types/webpack", - "simulate-event", - "@types/fs-extra", - "@types/inquirer", - "chrome-launcher", - "react-draggable", - "@types/react-dom", - "@types/stylelint", - "console-polyfill", - "fast-sass-loader", - "@alifd/doc-parser", - "@alifd/meet-react", - "@types/babel-core", - "@types/classnames", - "markdown-it-prism", - "@alifd/sass-mapper", - "@types/react-redux", - "@alifd/sass-tracker", - "@types/postcss-calc", - "@alifd/api-extractor", - "@alifd/dts-generator", - "babel-plugin-espower", - "es6-promise-polyfill", - "@alifd/adaptor-helper", - "@alifd/sassdoc-parser", - "eslint-plugin-cypress", - "cypress-image-snapshot", - "@alifd/adaptor-generate", - "@types/lodash.clonedeep", - "@types/react-router-dom", - "@alifd/babel-preset-next", - "@babel/plugin-syntax-jsx", - "css-split-webpack-plugin", - "karma-webdriver-launcher", - "@alifd/eslint-config-next", - "@types/react-test-renderer", - "node-sass-package-importer", - "stylelint-csstree-validator", - "@alifd/stylelint-config-next", - "stylelint-config-recommended", - "@types/cypress-image-snapshot", - "@types/react-copy-to-clipboard", - "babel-plugin-generator-prettier", - "@types/postcss-custom-properties", - "babel-plugin-transform-object-assign", - "babel-plugin-transform-proto-to-assign", - "babel-plugin-transform-react-es6-displayname", - "fusion", - "fusion design", - "component", - "ui toolkit", - "react-components", - "components", - "design", - "frontend", - "Angular CLI", - "Angular DevKit", - "core", - "devkit", - "sdk", - "blueprints", - "code generation", - "scaffolding", - "schematics", - "template", - "tooling", - "cdk", - "development", - "kit", - "@jridgewell/sourcemap-codec", - "compiler", - "@standard-schema/spec", - "material", - "material design", - "xhr2", - "@types/dom-navigation", - "router", - "rc-field-form", - "utility-types", - "lodash.mergewith", - "lodash.assignwith", - "normalize-css-color", - "react-native-codegen", - "@floating-ui/react-native", - "@rc-component/mini-decimal", - "react-native-modal-popover", - "@bang88/react-native-ultimate-listview", - "bisheng", - "jsonml.js", - "enquire.js", - "@types/jest", - "shell-utils", - "react-native-web", - "@ant-design/tools", - "@types/prop-types", - "@types/react-native", - "ant-design-palettes", - "react-github-button", - "react-native-mocker", - "react-document-title", - "react-native-screens", - "antd-mobile-demo-data", - "@react-navigation/stack", - "@types/lodash.mergewith", - "react-native-reanimated", - "@react-navigation/native", - "react-native-gesture-handler", - "@testing-library/react-native", - "@ant-design/icons-react-native", - "react-native-safe-area-context", - "metro-react-native-babel-preset", - "@react-native-community/eslint-config", - "ant", - "react-component", - "ui", - "framework", - "mobile", - "react native", - "@types/lodash-es", - "@ant-design/icons", - "@inline-svg-unique-id/react", - "icon", - "@auth/core", - "set-cookie-parser", - "@sveltejs/package", - "@sveltejs/adapter-auto", - "@types/set-cookie-parser", - "authentication", - "authjs", - "jwt", - "sveltekit", - "oidc", - "passwordless", - "fs-readdir-recursive", - "@jridgewell/trace-mapping", - "@types/fs-readdir-recursive", - "@babel/helper-transform-fixture-test-runner", - "6to5", - "es6", - "transpile", - "transpiler", - "js-tokens", - "@babel/helper-validator-identifier", - "charcodes", - "import-meta-resolve", - "gensync", - "@babel/helpers", - "@babel/template", - "@babel/generator", - "@jridgewell/remapping", - "@babel/helper-module-transforms", - "@babel/helper-compilation-targets", - "@types/debug", - "@types/semver", - "@types/resolve", - "@babel/plugin-syntax-flow", - "@types/convert-source-map", - "@babel/plugin-transform-flow-strip-types", - "@babel/plugin-transform-modules-commonjs", - "classes", - "const", - "harmony", - "let", - "modules", - "var", - "@babel/helper-fixtures", - "@babel/helper-string-parser", - "@babel/helper-check-duplicate-nodes", - "javascript", - "parser", - "tc39", - "ecmascript", - "@babel/helper-create-class-features-plugin", - "@babel/helper-plugin-test-runner", - "babel-plugin", - "moo", - "luxon", - "entities", - "liquidjs", - "iso-639-1", - "bcp-47-normalize", - "dependency-graph", - "@11ty/lodash-custom", - "@11ty/posthtml-urls", - "please-upgrade-node", - "@11ty/eleventy-utils", - "@11ty/recursive-copy", - "@11ty/dependency-tree", - "@sindresorhus/slugify", - "node-retrieve-globals", - "posthtml-match-helper", - "@11ty/dependency-tree-esm", - "@11ty/eleventy-dev-server", - "@11ty/eleventy-plugin-bundle", - "pretty", - "@iarna/toml", - "nano-staged", - "@zachleat/noop", - "@eslint/eslintrc", - "markdown-it-abbr", - "simple-git-hooks", - "jsx-async-runtime", - "@11ty/eleventy-img", - "@mdx-js/node-loader", - "@vue/server-renderer", - "zod-validation-error", - "@11ty/eleventy-plugin-rss", - "@11ty/eleventy-plugin-webc", - "@11ty/eleventy-plugin-syntaxhighlight", - "static-site-generator", - "static-site", - "ssg", - "website", - "jekyll", - "blog", - "templates", - "generator", - "11ty", - "html", - "liquid", - "@rollup/plugin-terser", - "@rollup/plugin-typescript", - "@types/benchmark", - "@types/bytes", - "stringifier", - "stylesheet", - "ast", - "css-parser", - "css-ast", - "css-tools", - "format", - "preprocessor", - "@advanced-rest-client/arc-icons", - "@advanced-rest-client/arc-marked", - "@advanced-rest-client/clipboard-copy", - "@advanced-rest-client/http-code-snippets", - "@advanced-rest-client/markdown-styles", - "@anypoint-web-components/anypoint-button", - "@anypoint-web-components/anypoint-collapse", - "@anypoint-web-components/anypoint-dropdown", - "@anypoint-web-components/anypoint-item", - "@anypoint-web-components/anypoint-listbox", - "@api-components/amf-helper-mixin", - "@api-components/api-annotation-document", - "@api-components/api-body-document", - "@api-components/api-example-generator", - "@api-components/api-headers-document", - "@api-components/api-parameters-document", - "@api-components/api-responses-document", - "@api-components/api-security-documentation", - "@api-components/http-method-label", - "lit-html", - "@advanced-rest-client/arc-demo-helper", - "@advanced-rest-client/oauth-authorization", - "@anypoint-web-components/anypoint-checkbox", - "@anypoint-web-components/anypoint-input", - "@anypoint-web-components/anypoint-styles", - "@api-components/api-model-generator", - "@api-components/api-navigation", - "@api-components/api-request", - "@api-components/api-server-selector", - "@commitlint/config-conventional", - "@open-wc/eslint-config", - "@open-wc/testing", - "@web/dev-server", - "@web/test-runner", - "@web/test-runner-playwright", - "typescript-lit-html-plugin", - "api-components", - "method-documentation", - "@graphql-typed-document-node/core", - "@wry/caches", - "@wry/equality", - "@wry/trie", - "optimism", - "apollo", - "hooks", - "client", - "cache", - "@asyncapi/parser", - "@rollup/plugin-babel", - "babel-plugin-source-map-support", - "asyncapi", - "@nicolo-ribaudo/eslint-scope-5-internals", - "@types/eslint", - "@typescript-eslint/scope-manager", - "@babel/plugin-syntax-decorators", - "array.prototype.concat", - "babel-plugin-polyfill-es-shims", - "object.getownpropertydescriptors", - "decorators", - "@babel/plugin-syntax-export-namespace-from", - "@babel/compat-data", - "@babel/plugin-syntax-object-rest-spread", - "@babel/plugin-transform-parameters", - "@babel/helper-module-imports", - "babel-plugin-polyfill-corejs2", - "babel-plugin-polyfill-corejs3", - "babel-plugin-polyfill-regenerator", - "@babel/runtime-corejs3", - "derequire", - "core-js-compat", - "@babel/preset-modules", - "@babel/helper-validator-option", - "@babel/plugin-transform-for-of", - "@babel/plugin-transform-spread", - "@babel/plugin-transform-classes", - "@babel/plugin-transform-literals", - "@babel/plugin-transform-new-target", - "@babel/plugin-transform-modules-amd", - "@babel/plugin-transform-modules-umd", - "@babel/plugin-transform-regenerator", - "@babel/plugin-transform-dotall-regex", - "@babel/plugin-transform-json-strings", - "@babel/plugin-transform-object-super", - "@babel/plugin-transform-sticky-regex", - "@babel/plugin-transform-block-scoping", - "@babel/plugin-transform-destructuring", - "@babel/plugin-transform-function-name", - "@babel/plugin-transform-typeof-symbol", - "@babel/plugin-transform-unicode-regex", - "@babel/plugin-syntax-import-assertions", - "@babel/plugin-syntax-import-attributes", - "@babel/plugin-transform-duplicate-keys", - "@babel/plugin-transform-dynamic-import", - "@babel/plugin-transform-reserved-words", - "@babel/plugin-syntax-unicode-sets-regex", - "@babel/plugin-transform-arrow-functions", - "@babel/plugin-transform-private-methods", - "@babel/plugin-transform-unicode-escapes", - "@babel/plugin-transform-class-properties", - "@babel/plugin-transform-modules-systemjs", - "@babel/plugin-transform-regexp-modifiers", - "@babel/plugin-transform-numeric-separator", - "@babel/plugin-transform-optional-chaining", - "@babel/plugin-transform-property-literals", - "@babel/plugin-transform-template-literals", - "@babel/plugin-transform-async-to-generator", - "@babel/plugin-transform-class-static-block", - "@babel/plugin-transform-object-rest-spread", - "@babel/plugin-transform-unicode-sets-regex", - "@babel/plugin-transform-computed-properties", - "@babel/plugin-transform-shorthand-properties", - "@babel/plugin-transform-export-namespace-from", - "@babel/plugin-transform-block-scoped-functions", - "@babel/plugin-transform-optional-catch-binding", - "@babel/plugin-transform-unicode-property-regex", - "@babel/plugin-transform-exponentiation-operator", - "@babel/plugin-proposal-private-property-in-object", - "@babel/plugin-transform-async-generator-functions", - "@babel/plugin-transform-member-expression-literals", - "@babel/plugin-transform-private-property-in-object", - "@babel/plugin-transform-nullish-coalescing-operator", - "@babel/plugin-transform-explicit-resource-management", - "@babel/plugin-transform-logical-assignment-operators", - "@babel/plugin-transform-named-capturing-groups-regex", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key", - "@babel/plugin-bugfix-safari-class-field-initializer-scope", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "@babel/plugin-transform-duplicate-named-capturing-groups-regex", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "@babel/plugin-transform-react-jsx", - "@babel/plugin-transform-react-display-name", - "@babel/plugin-transform-react-jsx-development", - "@babel/plugin-transform-react-pure-annotations", - "@babel/plugin-transform-typescript", - "babel-preset", - "pirates", - "clone-deep", - "@babel/helper-globals", - "@apidevtools/json-schema-ref-parser", - "@biz-dev-ops/web-components", - "@cucumber/gherkin-streams", - "@iframe-resizer/child", - "@iframe-resizer/parent", - "awilix", - "bpmn-js", - "json-schema-merge-allof", - "markdown-it-attrs", - "markdown-it-codetabs", - "markdown-it-footnote", - "markdown-it-multimd-table", - "markdown-it-plantuml-ex", - "markdown-it-task-lists", - "pdfjs-viewer-element", - "prince", - "svg-pan-zoom", - "swagger-ui-dist", - "web-resource-inliner", - "stylelint-config-standard-scss", - "md", - "openapi", - "bpmn", - "bdd", - "feature", - "async-exit-hook", - "transport", - "logger", - "backend", - "mri", - "p-limit", - "term-size", - "spawndamnit", - "@changesets/git", - "@changesets/pre", - "@changesets/read", - "@changesets/types", - "@changesets/write", - "@changesets/config", - "@changesets/errors", - "@changesets/logger", - "@manypkg/get-packages", - "package-manager-detector", - "@changesets/changelog-git", - "@inquirer/external-editor", - "@changesets/get-release-plan", - "@changesets/apply-release-plan", - "@changesets/should-skip-package", - "@changesets/get-dependents-graph", - "@changesets/assemble-release-plan", - "human-id", - "@chatscope/chat-ui-kit-styles", - "@fortawesome/fontawesome-free", - "@semantic-release/changelog", - "@semantic-release/git", - "@semantic-release/github", - "chokidar-cli", - "rollup-plugin-peer-deps-external", - "chat", - "reactjs", - "user interface", - "ui kit", - "communication", - "conversation", - "toolkit", - "library", - "reusable", - "feed", - "comments", - "social", - "talk", - "ckeditor", - "ckeditor 5", - "ckeditor5-feature", - "ckeditor5-plugin", - "ckeditor5-dll", - "@ckeditor/ckeditor5-integrations-common", - "wysiwyg", - "rich text", - "editor", - "contentEditable", - "editing", - "angular2", - "angular 5", - "ng", - "@ckeditor/ckeditor5-icons", - "@ckeditor/ckeditor5-enter", - "@ckeditor/ckeditor5-editor-balloon", - "operational transformation", - "ot", - "collaboration", - "collaborative", - "real-time", - "ckeditor5-build", - "@ckeditor/ckeditor5-editor-classic", - "@ckeditor/ckeditor5-font", - "@ckeditor/ckeditor5-alignment", - "@ckeditor/ckeditor5-editor-decoupled", - "@ckeditor/ckeditor5-editor-inline", - "blurhash", - "es-toolkit", - "ckeditor5-lib", - "@ckeditor/ckeditor5-watchdog", - "@ckeditor/ckeditor5-undo", - "@ckeditor/ckeditor5-select-all", - "color-parse", - "color-convert", - "vanilla-colorful", - "@types/color-convert", - "@ckeditor/ckeditor5-editor-multi-root", - "vue.js", - "vue component", - "vue.js component", - "@commitlint/format", - "@commitlint/lint", - "@commitlint/load", - "@commitlint/read", - "@commitlint/types", - "tinyexec", - "@commitlint/test", - "@commitlint/utils", - "@compodoc/live-server", - "@compodoc/ngd-transformer", - "@polka/send-type", - "bootstrap.native", - "decache", - "loglevel-plugin-prefix", - "lunr", - "neotraverse", - "opencollective-postinstall", - "os-name", - "polka", - "tablesort", - "vis-network", - "module", - "graph", - "@comunica/types", - "semantic", - "actor", - "messages", - "nf", - "@docsearch/css", - "@docsearch/js", - "@eslint/markdown", - "@rollup/plugin-replace", - "@stackblitz/sdk", - "bundlewatch", - "clean-css-cli", - "find-unused-sass-variables", - "hammer-simulator", - "hugo-bin", - "karma-coverage-istanbul-reporter", - "karma-jasmine-html-reporter", - "postcss-combine-duplicated-selectors", - "rollup-plugin-istanbul", - "sass-embedded", - "stylelint-config-twbs-bootstrap", - "vnu-jar", - "mobile-first", - "responsive", - "front-end", - "web", - "tokenizer", - "media query", - "matches", - "polyfill", - "postcss-plugin", - "pseudo", - "selector", - "custom", - "declarations", - "progressive", - "properties", - "utility", - "variables", - "vars", - "specificity", - "@cucumber/ci-environment", - "@cucumber/cucumber-expressions", - "@cucumber/gherkin", - "@cucumber/gherkin-utils", - "@cucumber/html-formatter", - "@cucumber/junit-xml-formatter", - "@cucumber/message-streams", - "@cucumber/messages", - "@cucumber/pretty-formatter", - "@cucumber/tag-expressions", - "assertion-error-formatter", - "capital-case", - "error-stack-parser", - "has-ansi", - "knuth-shuffle-seeded", - "read-package-up", - "string-argv", - "util-arity", - "yup", - "@cucumber/compatibility-kit", - "@cucumber/query", - "@eslint/compat", - "@types/dirty-chai", - "@types/express", - "@types/has-ansi", - "@types/lodash.merge", - "@types/luxon", - "@types/mocha", - "@types/mustache", - "@types/mz", - "@types/progress", - "@types/sinon-chai", - "@types/sinonjs__fake-timers", - "@types/stream-buffers", - "@types/tmp", - "chai-exclude", - "dependency-lint", - "genversion", - "reindent-template-literals", - "stream-to-string", - "testing", - "gherkin", - "tests", - "@types/mock-fs", - "@types/semver-compare", - "@types/signale", - "jest-mock-process", - "semver-compare", - "signale", - "deven", - "@diplodoc/cut-extension", - "@diplodoc/file-extension", - "@diplodoc/tabs-extension", - "@diplodoc/utils", - "get-root-node-polyfill", - "github-slugger", - "markdown-it-deflist", - "markdown-it-sup", - "markdownlint-rule-helpers", - "quick-lru", - "ts-dedent", - "@diplodoc/babel-preset", - "@diplodoc/lint", - "@diplodoc/tsconfig", - "@types/css", - "@types/github-slugger", - "@types/js-yaml", - "@types/markdown-it", - "@types/markdown-it-attrs", - "@types/sanitize-html", - "@vitest/coverage-v8", - "@vitest/ui", - "esbuild-sass-plugin", - "jest-serializer-html", - "markdown-it-testgen", - "terminal-link", - "yandex", - "docs", - "yfm", - "tool", - "tools", - "magic-bytes.js", - "@discordjs/util", - "discord-api-types", - "@sapphire/snowflake", - "@discordjs/collection", - "@sapphire/async-queue", - "@vladfrangu/async_event_emitter", - "turbo", - "@discordjs/scripts", - "eslint-config-neon", - "@favware/cliff-jumper", - "eslint-formatter-pretty", - "@discordjs/api-extractor", - "esbuild-plugin-version-injector", - "discord", - "api", - "rest", - "discordapp", - "discordjs", - "types", - "tsdoc", - "generated", - "@apidevtools/swagger-parser", - "@aws-sdk/client-s3", - "@diplodoc/client", - "@diplodoc/markdown-translation", - "@diplodoc/mermaid-extension", - "@diplodoc/openapi-extension", - "@doc-tools/yfm2xliff", - "@octokit/core", - "@types/json-stringify-safe", - "@yandex-cloud/nodejs-sdk", - "bem-cn-lite", - "threads", - "threads-plugin", - "@types/async", - "@types/chalk", - "@types/html-escaper", - "@types/mime-types", - "@types/shelljs", - "@types/tar-stream", - "markdown-it-meta", - "@types/markdownlint", - "@yandex-cloud/eslint-config", - "@yandex-cloud/prettier-config", - "@yandex-cloud/tsconfig", - "@tinyhttp/cookie-parser", - "cookie-encrypter", - "github-markdown-css", - "greenlock-express", - "memorystore", - "minisearch", - "selfsigned", - "sitemap", - "sql.js", - "workerpool", - "@types/body-parser", - "@types/compression", - "@types/express-session", - "@types/formidable", - "@types/prompts", - "@types/sass", - "@types/sql.js", - "@types/uuid", - "@types/workerpool", - "esbuild-wasm", - "razor", - "sqlite", - "aspx", - "@dnd-kit/core", - "@dnd-kit/modifiers", - "@dnd-kit/sortable", - "@dnd-kit/utilities", - "@stylistic/eslint-plugin", - "@stylistic/stylelint-plugin", - "@wordpress/dependency-extraction-webpack-plugin", - "lightningcss", - "swc-loader", - "@wordpress/api-fetch", - "scss", - "mixin", - "js", - "WordPress", - "@tsconfig/node22", - "@types/lodash.camelcase", - "@types/pretty-ms", - ".d.ts", - "definitions", - "@emotion/hash", - "@emotion/memoize", - "@emotion/serialize", - "babel-plugin-macros", - "find-root", - "stylis", - "babel-check-duplicated-nodes", - "styles", - "css-in-js", - "@emotion/cache", - "@emotion/sheet", - "@emotion/utils", - "@definitelytyped/dtslint", - "@emotion/is-prop-valid", - "@emotion/use-insertion-effect-with-fallbacks", - "@emotion/react", - "warun", - "dot-prop", - "installed-check", - "@typescript-eslint/types", - "@eslint-community/eslint-plugin-mysticatea", - "eslint-plugin", - "@fakeyanss/redocly-openapi-core", - "decko", - "json-pointer", - "mark.js", - "openapi-sampler", - "react-tabs", - "stickyfill", - "swagger2openapi", - "url-template", - "@cypress/webpack-preprocessor", - "@hot-loader/react-dom", - "@size-limit/preset-app", - "@types/dompurify", - "@types/enzyme-to-json", - "@types/json-pointer", - "@types/lunr", - "@types/mark.js", - "@types/marked", - "@types/prismjs", - "@types/styled-components", - "@types/tapable", - "@types/webpack-env", - "@wojtekmaj/enzyme-adapter-react-17", - "esbuild-loader", - "license-checker", - "lodash.noop", - "unfetch", - "OpenAPI", - "OpenAPI Specification", - "Swagger", - "JSON-Schema", - "API", - "REST", - "React.js", - "@floating-ui/dom", - "use-isomorphic-layout-effect", - "tooltip", - "popover", - "dropdown", - "menu", - "popup", - "positioning", - "font", - "font family", - "google fonts", - "inter", - "Inter", - "typeface", - "variable", - "roboto", - "Roboto", - "@fortawesome/fontawesome-common-types", - "awesome", - "fontawesome", - "svg", - "@babel/plugin-external-helpers", - "@fortawesome/free-brands-svg-icons", - "@semantic-release/exec", - "icons", - "server", - "@electron/rebuild", - "node-abi", - "@electron-forge/cli", - "electron-devtools-installer", - "@grandlinex/swagger-mate", - "@types/jsonwebtoken", - "@types/ms", - "@fastify/deepmerge", - "@graphql-markdown/graphql", - "@graphql-markdown/logger", - "@graphql-markdown/utils", - "@graphql-markdown/types", - "graphql-schema", - "graphql-markdown", - "@docusaurus/utils", - "@graphql-markdown/cli", - "@docusaurus/types", - "plugin", - "@tailwindcss/aspect-ratio", - "@tailwindcss/forms", - "@tailwindcss/typography", - "basename", - "filemanager-webpack-plugin", - "remove-files-webpack-plugin", - "sass-lint", - "configuration", - "boilerplate", - "@hapi/accept", - "@hapi/ammo", - "@hapi/boom", - "@hapi/bounce", - "@hapi/call", - "@hapi/catbox", - "@hapi/catbox-memory", - "@hapi/heavy", - "@hapi/hoek", - "@hapi/mimos", - "@hapi/podium", - "@hapi/shot", - "@hapi/somever", - "@hapi/statehood", - "@hapi/subtext", - "@hapi/teamwork", - "@hapi/topo", - "@hapi/validate", - "@hapi/code", - "@hapi/eslint-plugin", - "@hapi/inert", - "@hapi/lab", - "@hapi/vision", - "@hapi/wreck", - "comment-parser", - "@homer0/eslint-plugin", - "@homer0/prettier-config", - "@vitest/coverage-istanbul", - "leasot", - "@standard-schema/utils", - "@sinclair/typebox", - "@typeschema/core", - "@typeschema/main", - "@typeschema/zod", - "@vinejs/vine", - "ajv-errors", - "arktype", - "check-export-map", - "class-transformer", - "class-validator", - "computed-types", - "effect", - "fluentvalidation-ts", - "fp-ts", - "io-ts", - "io-ts-types", - "monocle-ts", - "newtype-ts", - "nope-validator", - "superstruct", - "typanion", - "vest", - "vite-tsconfig-paths", - "scheme", - "validation", - "scheme-validation", - "hookform", - "effect-ts", - "nope", - "TypeBox", - "typeschema", - "vine", - "standard-schema", - "google translate api", - "google translate", - "google api", - "translate api", - "google", - "translate", - "@atlaskit/pragmatic-drag-and-drop", - "@atlaskit/pragmatic-drag-and-drop-auto-scroll", - "@atlaskit/pragmatic-drag-and-drop-hitbox", - "vue3", - "vue 3.x", - "@ctrl/tinycolor", - "@inquirer/ansi", - "cli-width", - "fast-wrap-ansi", - "mute-stream", - "@inquirer/testing", - "@types/mute-stream", - "answer", - "answers", - "ask", - "base", - "command", - "command-line", - "confirm", - "generate", - "hyper", - "input", - "inquire", - "interface", - "iterm", - "node", - "nodejs", - "promptly", - "question", - "scaffold", - "scaffolder", - "stdin", - "stdout", - "terminal", - "tty", - "yeoman", - "zsh", - "@stencil/core", - "domino", - "@stencil/sass", - "@capacitor/core", - "playwright-core", - "@playwright/test", - "@capacitor/haptics", - "@capacitor/keyboard", - "@ionic/eslint-config", - "@capacitor/status-bar", - "@ionic/prettier-config", - "@rollup/plugin-virtual", - "@stencil/vue-output-target", - "@stencil/react-output-target", - "@stencil/angular-output-target", - "stencil", - "app", - "webapp", - "capacitor", - "progressive web app", - "pwa", - "layout", - "console", - "wrap", - "table", - "@istanbuljs/schema", - "test", - "coverage", - "@itwin/itwinui-illustrations-react", - "@swc/helpers", - "@tanstack/react-virtual", - "react-table", - "@swc/cli", - "eslint-plugin-require-extensions", - "design-system", - "itwin", - "itwinui", - "ux", - "@jest/console", - "@jest/pattern", - "@jest/reporters", - "@jest/test-result", - "@jest/transform", - "exit-x", - "jest-changed-files", - "jest-config", - "jest-haste-map", - "jest-message-util", - "jest-regex-util", - "jest-resolve-dependencies", - "jest-runner", - "jest-runtime", - "jest-snapshot", - "jest-validate", - "jest-watcher", - "@jest/test-sequencer", - "@jest/test-utils", - "@types/graceful-fs", - "@types/micromatch", - "easy", - "facebook", - "immersive", - "instant", - "mocking", - "painless", - "runner", - "sandboxed", - "snapshot", - "@jest/schemas", - "@types/istanbul-lib-coverage", - "@types/istanbul-reports", - "@types/json-schema", - "@types/redux-mock-store", - "document-register-element", - "redux-mock-store", - "form", - "forms", - "json", - "jsonforms", - "renderengine", - "schema", - "uischema", - "customization", - "@date-io/dayjs", - "@rollup/plugin-json", - "rollup-plugin-copy", - "rollup-plugin-import-css", - "renderer", - "@rollup/plugin-alias", - "@types/object-hash", - "@jupyterlab/apputils", - "@jupyterlab/coreutils", - "@jupyterlab/docregistry", - "@jupyterlab/rendermime", - "@jupyterlab/rendermime-interfaces", - "@jupyterlab/services", - "@jupyterlab/statedb", - "@jupyterlab/translation", - "@jupyterlab/ui-components", - "@lumino/algorithm", - "@lumino/application", - "@lumino/commands", - "@lumino/coreutils", - "@lumino/disposable", - "@lumino/messaging", - "@lumino/polling", - "@lumino/properties", - "@lumino/signaling", - "@lumino/widgets", - "@jupyterlab/testing", - "docopt", - "glob2base", - "lodash.difference", - "multipipe", - "safe-wipe", - "sass-convert", - "@kobedevi/sassdoc-theme-default", - "scss-comment-parser", - "strip-indent", - "vinyl-string", - "babel-plugin-transform-builtin-extend", - "opn-cli", - "doc", - "theme", - "chatfanpage", - "api-connect-x", - "api-connect-tiwtter", - "@inquirer/input", - "@inquirer/prompts", - "task", - "list", - "tasklist", - "term", - "ascii", - "unicode", - "loading", - "indicator", - "busy", - "wait", - "idle", - "react-remove-scroll", - "ui-kit", - "calendar", - "date", - "picker", - "time", - "react-hooks", - "state", - "modal", - "notification", - "notification-manager", - "notification-system", - "prism-react-renderer", - "highlight", - "syntax", - "syntax-highlight", - "styling", - "@material-ui/types", - "@material-ui/utils", - "@material-ui/styles", - "@material-ui/system", - "@microsoft/api-documenter", - "json-api", - "json:api", - "serializer", - "normalizer", - "formatter", - "@types/mdx", - "jsx", - "mdx", - "@rushstack/node-core-library", - "@microsoft/api-extractor-model", - "@rushstack/terminal", - "@rushstack/ts-command-line", - "@rushstack/rig-package", - "@rushstack/heft", - "decoupled-local-node-rig", - "local-eslint-config", - "JSDoc", - "AEDoc", - "TSDoc", - "declaration", - "dts", - "bundle", - "alpha", - "beta", - "tsdoc-build-rig", - "TypeScript", - "jju", - "@types/jju", - "@aws/durable-execution-sdk-js", - "@aws/durable-execution-sdk-js-testing", - "@datastream/core", - "@types/aws-lambda", - "Lambda", - "Middleware", - "Serverless", - "Framework", - "AWS", - "AWS Lambda", - "Function URL", - "Durable function", - "Middy", - "HTTP", - "JSON", - "Body Parser", - "JSON Body Parser", - "@aws-sdk/client-ssm", - "aws-xray-sdk", - "helper", - "moj", - "design system", - "@open-draft/deferred-promise", - "@open-draft/logger", - "@open-draft/until", - "is-node-process", - "outvariant", - "strict-event-emitter", - "@open-draft/test-server", - "@ossjs/release", - "@types/cors", - "@types/express-fileupload", - "@types/follow-redirects", - "@types/node-fetch", - "@types/superagent", - "@types/supertest", - "@types/ws", - "engine.io-parser", - "express-fileupload", - "express-rate-limit", - "socket.io-parser", - "vitest-environment-miniflare", - "web-encoding", - "webpack-http-server", - "intercept", - "fetch", - "low-level", - "mock", - "spy", - "mui", - "@mui/core-downloads-tracker", - "system", - "@mui/x-internals", - "mui-x", - "datepicker", - "timepicker", - "datetimepicker", - "@headlessui/react", - "@iconify-icon/react", - "@mdx-js/loader", - "@mdx-js/mdx", - "@shikijs/transformers", - "@theguild/remark-npm2yarn", - "@types/unist", - "@vcarl/remark-headings", - "approximate-number", - "extra-watch-webpack-plugin", - "flexsearch", - "git-url-parse", - "mdast-util-phrasing", - "next-seo", - "react-helmet-async", - "rehype-extract-excerpt", - "rehype-pretty-code", - "remark-frontmatter", - "remark-heading-id", - "remark-link-rewrite", - "shiki", - "tailwindcss-themer", - "webpack-virtual-modules", - "@types/color", - "@types/extra-watch-webpack-plugin", - "@types/git-url-parse", - "@types/mdast", - "@repo/eslint-config", - "@repo/typescript-config", - "@repo/prettier-config", - "posthtml-render", - "posthtml-parser", - "esthetic", - "builder", - "guides", - "demo", - "ng-doc", - "rehype-format", - "hast-util-has-property", - "hast-util-heading-rank", - "rehype-minify-whitespace", - "unist-util-filter", - "@shikijs/rehype", - "ordinal", - "@types/chai-as-promised", - "ethers", - "hardhat", - "@types/bn.js", - "@nomicfoundation/hardhat-ethers", - "@nomicfoundation/eslint-plugin-slow-imports", - "@nomicfoundation/eslint-plugin-hardhat-internal-rules", - "ethereum", - "smart-contracts", - "@isaacs/string-locale-compare", - "@npmcli/fs", - "@npmcli/installed-package-contents", - "@npmcli/metavuln-calculator", - "@npmcli/name-from-folder", - "@npmcli/package-json", - "@npmcli/query", - "@npmcli/redact", - "bin-links", - "cacache", - "common-ancestor-path", - "json-stringify-nice", - "npm-install-checks", - "npm-pick-manifest", - "parse-conflict-json", - "proggy", - "promise-all-reject-late", - "promise-call-limit", - "treeverse", - "walk-up-path", - "@npmcli/eslint-config", - "@npmcli/mock-registry", - "@npmcli/template-oss", - "minify-registry-metadata", - "tcompare", - "libnpm", - "workspaces", - "map-workspaces", - "@npmcli/promise-spawn", - "spawk", - "innertext", - "highlights", - "similarity", - "language-ini", - "property-ttl", - "language-dart", - "language-glsl", - "language-haxe", - "language-rust", - "lodash.pickby", - "language-erlang", - "language-stylus", - "highlights-tokens", - "atom-language-diff", - "atom-language-nginx", - "github-url-to-object", - "markdown-it-expand-tabs", - "markdown-it-lazy-headers", - "oniguruma", - "intercept-stdout", - "readme", - "gfm", - "formatted", - "syntax highlighting", - "Monorepo", - "Angular", - "React", - "Web", - "Node", - "Nest", - "Jest", - "Cypress", - "CLI", - "@zkochan/js-yaml", - "EsBuild", - "Front-end", - "Backend", - "Lint", - "ESLint", - "Testing", - "Express", - "babel-plugin-const-enum", - "babel-plugin-transform-typescript-metadata", - "Swc", - "Tsc", - "@nestjs/schematics", - "kill-port", - "@nx/docker", - "tcp-port-used", - "@oclif/errors", - "@oclif/parser", - "@oclif/help", - "@oclif/plugin-plugins", - "fancy-test", - "oclif", - "@types/indent-string", - "@types/proxyquire", - "@types/wrap-ansi", - "clean-stack", - "@oclif/prettier-config", - "@oclif/test", - "@types/clean-stack", - "@types/ejs", - "@types/pnpapi", - "@types/sinon", - "@types/supports-color", - "@types/wordwrap", - "madge", - "command line", - "args", - "argv", - "oclif-plugin", - "@octokit/plugin-paginate-rest", - "@octokit/plugin-request-log", - "@octokit/plugin-rest-endpoint-methods", - "@octokit/auth-action", - "@octokit/auth-app", - "@octokit/fixtures-server", - "@octokit/request", - "@octokit/tsconfig", - "semantic-release-plugin-update-version-in-files", - "octokit", - "api-client", - "@opentiny/vue-action-menu", - "@opentiny/vue-action-sheet", - "@opentiny/vue-alert", - "@opentiny/vue-amount", - "@opentiny/vue-anchor", - "@opentiny/vue-area", - "@opentiny/vue-async-flowchart", - "@opentiny/vue-autocomplete", - "@opentiny/vue-badge", - "@opentiny/vue-base-select", - "@opentiny/vue-breadcrumb", - "@opentiny/vue-breadcrumb-item", - "@opentiny/vue-bulletin-board", - "@opentiny/vue-button", - "@opentiny/vue-button-group", - "@opentiny/vue-calendar", - "@opentiny/vue-calendar-bar", - "@opentiny/vue-calendar-view", - "@opentiny/vue-card", - "@opentiny/vue-card-group", - "@opentiny/vue-card-template", - "@opentiny/vue-carousel", - "@opentiny/vue-carousel-item", - "@opentiny/vue-cascader", - "@opentiny/vue-cascader-menu", - "@opentiny/vue-cascader-mobile", - "@opentiny/vue-cascader-node", - "@opentiny/vue-cascader-panel", - "@opentiny/vue-cascader-select", - "@opentiny/vue-cascader-view", - "@opentiny/vue-cell", - "@opentiny/vue-checkbox", - "@opentiny/vue-checkbox-button", - "@opentiny/vue-checkbox-group", - "@opentiny/vue-col", - "@opentiny/vue-collapse", - "@opentiny/vue-collapse-item", - "@opentiny/vue-collapse-transition", - "@opentiny/vue-color-picker", - "@opentiny/vue-color-select-panel", - "@opentiny/vue-column-list-group", - "@opentiny/vue-column-list-item", - "@opentiny/vue-company", - "@opentiny/vue-config-provider", - "@opentiny/vue-container", - "@opentiny/vue-country", - "@opentiny/vue-crop", - "@opentiny/vue-currency", - "@opentiny/vue-date-panel", - "@opentiny/vue-date-picker", - "@opentiny/vue-date-picker-mobile-first", - "@opentiny/vue-date-range", - "@opentiny/vue-date-table", - "@opentiny/vue-dept", - "@opentiny/vue-dialog-box", - "@opentiny/vue-dialog-select", - "@opentiny/vue-divider", - "@opentiny/vue-drawer", - "@opentiny/vue-drop-roles", - "@opentiny/vue-drop-times", - "@opentiny/vue-dropdown", - "@opentiny/vue-dropdown-item", - "@opentiny/vue-dropdown-menu", - "@opentiny/vue-dynamic-scroller", - "@opentiny/vue-dynamic-scroller-item", - "@opentiny/vue-espace", - "@opentiny/vue-exception", - "@opentiny/vue-fall-menu", - "@opentiny/vue-file-upload", - "@opentiny/vue-filter", - "@opentiny/vue-filter-bar", - "@opentiny/vue-filter-box", - "@opentiny/vue-filter-panel", - "@opentiny/vue-float-button", - "@opentiny/vue-floatbar", - "@opentiny/vue-floating-button", - "@opentiny/vue-flowchart", - "@opentiny/vue-fluent-editor", - "@opentiny/vue-form", - "@opentiny/vue-form-item", - "@opentiny/vue-fullscreen", - "@opentiny/vue-grid", - "@opentiny/vue-grid-column", - "@opentiny/vue-grid-manager", - "@opentiny/vue-grid-select", - "@opentiny/vue-grid-toolbar", - "@opentiny/vue-guide", - "@opentiny/vue-hrapprover", - "@opentiny/vue-image", - "@opentiny/vue-image-viewer", - "@opentiny/vue-input", - "@opentiny/vue-ip-address", - "@opentiny/vue-layout", - "@opentiny/vue-link", - "@opentiny/vue-link-menu", - "@opentiny/vue-load-list", - "@opentiny/vue-loading", - "@opentiny/vue-locales", - "@opentiny/vue-logon-user", - "@opentiny/vue-logout", - "@opentiny/vue-menu", - "@opentiny/vue-message", - "@opentiny/vue-milestone", - "@opentiny/vue-mind-map", - "@opentiny/vue-modal", - "@opentiny/vue-month-range", - "@opentiny/vue-month-table", - "@opentiny/vue-nav-menu", - "@opentiny/vue-notify", - "@opentiny/vue-number-animation", - "@opentiny/vue-numeric", - "@opentiny/vue-option", - "@opentiny/vue-option-group", - "@opentiny/vue-pager", - "@opentiny/vue-pager-item", - "@opentiny/vue-panel", - "@opentiny/vue-picker", - "@opentiny/vue-pop-upload", - "@opentiny/vue-popconfirm", - "@opentiny/vue-popeditor", - "@opentiny/vue-popover", - "@opentiny/vue-popup", - "@opentiny/vue-progress", - "@opentiny/vue-pull-refresh", - "@opentiny/vue-qr-code", - "@opentiny/vue-quarter-panel", - "@opentiny/vue-query-builder", - "@opentiny/vue-radio", - "@opentiny/vue-radio-button", - "@opentiny/vue-radio-group", - "@opentiny/vue-rate", - "@opentiny/vue-record", - "@opentiny/vue-recycle-scroller", - "@opentiny/vue-river", - "@opentiny/vue-roles", - "@opentiny/vue-row", - "@opentiny/vue-scroll-text", - "@opentiny/vue-scrollbar", - "@opentiny/vue-search", - "@opentiny/vue-select", - "@opentiny/vue-select-dropdown", - "@opentiny/vue-select-mobile", - "@opentiny/vue-select-view", - "@opentiny/vue-select-wrapper", - "@opentiny/vue-selected-box", - "@opentiny/vue-signature", - "@opentiny/vue-skeleton", - "@opentiny/vue-skeleton-item", - "@opentiny/vue-slider", - "@opentiny/vue-slider-button", - "@opentiny/vue-slider-button-group", - "@opentiny/vue-space", - "@opentiny/vue-split", - "@opentiny/vue-standard-list-item", - "@opentiny/vue-statistic", - "@opentiny/vue-steps", - "@opentiny/vue-sticky", - "@opentiny/vue-switch", - "@opentiny/vue-tab-item", - "@opentiny/vue-tabbar", - "@opentiny/vue-tabbar-item", - "@opentiny/vue-table", - "@opentiny/vue-tabs", - "@opentiny/vue-tag", - "@opentiny/vue-tag-group", - "@opentiny/vue-tag-input", - "@opentiny/vue-text-popup", - "@opentiny/vue-time", - "@opentiny/vue-time-line", - "@opentiny/vue-time-panel", - "@opentiny/vue-time-picker", - "@opentiny/vue-time-picker-mobile", - "@opentiny/vue-time-range", - "@opentiny/vue-time-select", - "@opentiny/vue-time-spinner", - "@opentiny/vue-timeline-item", - "@opentiny/vue-toggle-menu", - "@opentiny/vue-tooltip", - "@opentiny/vue-top-box", - "@opentiny/vue-transfer", - "@opentiny/vue-transfer-panel", - "@opentiny/vue-tree", - "@opentiny/vue-tree-menu", - "@opentiny/vue-tree-select", - "@opentiny/vue-upload", - "@opentiny/vue-upload-dragger", - "@opentiny/vue-upload-list", - "@opentiny/vue-user", - "@opentiny/vue-user-account", - "@opentiny/vue-user-contact", - "@opentiny/vue-user-head", - "@opentiny/vue-user-head-group", - "@opentiny/vue-user-link", - "@opentiny/vue-virtual-scroll-box", - "@opentiny/vue-virtual-tree", - "@opentiny/vue-watermark", - "@opentiny/vue-wizard", - "@opentiny/vue-year-range", - "@opentiny/vue-year-table", - "component-library", - "vue-components", - "opentiny", - "renderless-components", - "headless-components", - "@opentiny/utils", - "@opentiny/vue-hooks", - "esno", - "gulp-svg-inline", - "gulp-transform", - "otterhttp", - "node.js", - "web framework", - "header-range-parser", - "@otterhttp/accepts", - "@otterhttp/content-type", - "@otterhttp/proxy-address", - "@otterhttp/type-is", - "@otterhttp/url", - "@otterhttp/router", - "req", - "es-escape-html", - "@otterhttp/content-disposition", - "@otterhttp/encode-url", - "@otterhttp/errors", - "@otterhttp/vary", - "res", - "@otterhttp/etag", - "send-file", - "@pact-foundation/pact-core", - "randexp", - "stack-utils", - "@pact-foundation/pact-js-prettier-config", - "@types/http-proxy", - "@types/nock", - "@types/ramda", - "@types/stack-utils", - "commit-and-tag-version", - "eslint-plugin-chai-friendly", - "pact", - "pact-js", - "contract testing", - "consumer driven testing", - "management", - "store", - "@phosphor/algorithm", - "@phosphor/commands", - "@phosphor/coreutils", - "@phosphor/disposable", - "@phosphor/domutils", - "@phosphor/dragdrop", - "@phosphor/keyboard", - "@phosphor/messaging", - "@phosphor/properties", - "@phosphor/signaling", - "@phosphor/virtualdom", - "@release-it/conventional-changelog", - "@types/jsdom", - "cobertura", - "eslint-config-phun-ky", - "git-cz", - "glob-bin", - "global-jsdom", - "putout", - "quibble", - "remark-github", - "remark-toc", - "typedoc-plugin-frontmatter", - "typedoc-plugin-mdn-links", - "typedoc-plugin-no-inherit", - "typedoc-plugin-remark", - "typedoc-plugin-rename-defaults", - "typedoc-vitepress-theme", - "unified-prettier", - "vitepress-plugin-group-icons", - "a11y", - "accessibility", - "anatomy", - "annotate", - "annotation", - "dissect", - "dissection", - "grid", - "grid-layout", - "html-elements", - "information", - "inspect", - "pin", - "spacing", - "spec", - "speccer", - "specification", - "specifications", - "specs", - "typography", - "stories", - "@webcomponents/shadycss", - "@polymer/gen-closure-declarations", - "@polymer/iron-component-page", - "@polymer/test-fixture", - "@webcomponents/webcomponentsjs", - "babel-preset-minify", - "dom5", - "google-closure-compiler", - "gulp-vulcanize", - "lazypipe", - "polymer-build", - "polymer-cli", - "wct-browser-legacy", - "cldr", - "gauge", - "upath", - "fontkit", - "ps-tree", - "get-value", - "set-value", - "github-api", - "unset-value", - "tap-colorize", - "core-js-bundle", - "app-module-path", - "es6-promise-pool", - "better-ajv-errors", - "jstransformer-dot", - "@metalsmith/layouts", - "@metalsmith/markdown", - "console-control-strings", - "@qooxdoo/eslint-config-qx", - "@qooxdoo/eslint-plugin-qx", - "eslint-formatter-codeframe", - "@qooxdoo/eslint-config-jsdoc-disable", - "@babel/plugin-proposal-optional-chaining-assign", - "dirsum", - "qooxdoo", - "fontend", - "back-end", - "widgets", - "gui", - "databinding", - "interfaces", - "mixins", - "@mdi/font", - "@mdi/svg", - "@xmldom/xmldom", - "animate.css", - "bootstrap-icons", - "eva-icons", - "line-awesome", - "eslint-config-quasar", - "quasar", - "fonts", - "animations", - "gltfpack", - "detect-gpu", - "r3f-perf", - "@types/three", - "three-stdlib", - "suspend-react", - "postprocessing", - "@storybook/react", - "@react-three/drei", - "@react-three/fiber", - "cypress-image-diff-js", - "rollup-plugin-postcss", - "@storybook/addon-links", - "@storybook/node-logger", - "eslint-plugin-storybook", - "@storybook/addon-actions", - "@storybook/react-webpack5", - "@react-three/test-renderer", - "@storybook/testing-library", - "@react-three/postprocessing", - "@storybook/addon-essentials", - "@storybook/addon-interactions", - "@types/testing-library__jest-dom", - "@storybook/preset-create-react-app", - "threejs", - "react-three-fiber", - "ready-player-me", - "3D", - "avatars", - "glb", - "@phryneas/ts-version", - "@size-limit/file", - "@size-limit/webpack", - "@testing-library/react-render-stream", - "@types/babel__core", - "@types/babel__helper-module-imports", - "@types/nanoid", - "@types/query-string", - "esbuild-extra", - "starter", - "reducer", - "slice", - "redux-toolkit", - "@rollup/pluginutils", - "commondir", - "fdir", - "is-reference", - "locate-character", - "require-relative", - "commonjs", - "require", - "is-module", - "string-capitalize", - "es2015", - "groq-js", - "refractor", - "@sanity/ui", - "@types/cpx", - "dotenv-flow", - "@sanity/color", - "@sanity/icons", - "@sanity/client", - "react-refractor", - "esbuild-register", - "@sanity/pkg-utils", - "@portabletext/react", - "@portabletext/toolkit", - "cpx", - "sanity", - "@types/mkdirp", - "@sanity/ui-workshop", - "@sanity/semantic-release-preset", - "eslint-plugin-simple-import-sort", - "API reference", - "@unhead/vue", - "@vueuse/core", - "microdiff", - "@scalar/agent-chat", - "@scalar/code-highlight", - "@scalar/api-client", - "@scalar/icons", - "@scalar/components", - "@scalar/helpers", - "@scalar/openapi-parser", - "@scalar/oas-utils", - "@scalar/openapi-types", - "@scalar/sidebar", - "@scalar/types", - "@scalar/snippetz", - "@scalar/use-hooks", - "@scalar/themes", - "@scalar/use-toasts", - "@scalar/workspace-store", - "@hono/node-server", - "@tailwindcss/vite", - "@vitejs/plugin-vue", - "@vue/test-utils", - "rollup-plugin-webpack-stats", - "vite-plugin-banner", - "vite-plugin-css-injected-by-js", - "@scalar/build-tooling", - "@scalar/core", - "@scalar/galaxy", - "@scalar/react-renderer", - "reference", - "swagger", - "fastify-plugin", - "@fastify/basic-auth", - "@fastify/http-proxy", - "@fastify/swagger", - "@serenity-js/core", - "@serenity-js/rest", - "@serenity-js/web", - "tiny-types", - "@integration/testing-tools", - "@serenity-js/assertions", - "@serenity-js/cucumber", - "@serenity-js/jasmine", - "@serenity-js/local-server", - "@serenity-js/mocha", - "@types/html-minifier", - "mocha-multi", - "automation", - "browser", - "e2e", - "end-to-end", - "integration", - "serenity", - "serenity-js", - "screenplay", - "screenplay-pattern", - "tdd", - "@wdio/reporter", - "@wdio/cli", - "@wdio/dot-reporter", - "@wdio/local-runner", - "@wdio/spec-reporter", - "@wdio/types", - "mocha-testdata", - "webdriverio", - "wdio", - "wdio-reporter", - "@sinonjs/commons", - "@mochify/cli", - "@mochify/driver-puppeteer", - "@mochify/driver-webdriver", - "@sinonjs/eslint-config", - "@sinonjs/referee-sinon", - "@storybook/icons", - "@storybook/csf-plugin", - "@storybook/react-dom-shim", - "telejson", - "memoizerific", - "storybook-addon", - "essentials", - "organize", - "MDX", - "autodocs", - "styleguide", - "style guide", - "web-components", - "@ant-design/colors", - "@ant-design/cssinjs", - "@ant-design/react-slick", - "@fortawesome/free-regular-svg-icons", - "@polkadot/react-identicon", - "@polkadot/util-crypto", - "@polkadot/wasm-crypto", - "@rc-component/tour", - "@zxing/browser", - "@zxing/library", - "boring-avatars", - "flatlist-react", - "jsqr", - "patch-package", - "phosphor-react", - "qrcode.react", - "rc-cascader", - "rc-checkbox", - "rc-collapse", - "rc-dialog", - "rc-drawer", - "rc-dropdown", - "rc-image", - "rc-input", - "rc-input-number", - "rc-mentions", - "rc-menu", - "rc-motion", - "rc-notification", - "rc-pagination", - "rc-picker", - "rc-progress", - "rc-rate", - "rc-resize-observer", - "rc-segmented", - "rc-select", - "rc-steps", - "rc-switch", - "rc-table", - "rc-tabs", - "rc-textarea", - "rc-tree", - "rc-tree-select", - "rc-trigger", - "rc-upload", - "react-pin-input", - "react-qrcode-logo", - "react-superellipse", - "scroll-into-view-if-needed", - "@babel/eslint-plugin", - "@emotion/babel-preset-css-prop", - "@emotion/server", - "@qixian.cs/github-contributors-list", - "@storybook/addons", - "@storybook/builder-webpack5", - "@storybook/manager-webpack5", - "@storybook/theming", - "@types/gtag.js", - "@types/jest-axe", - "@types/jest-environment-puppeteer", - "@types/jest-image-snapshot", - "@types/jquery", - "@types/puppeteer", - "@types/qs", - "@types/react-color", - "@types/react-highlight-words", - "@types/react-resizable", - "@types/react-window", - "@types/throttle-debounce", - "@types/warning", - "antd-img-crop", - "antd-token-previewer", - "array-move", - "bundlesize2", - "dekko", - "duplicate-package-checker-webpack-plugin", - "fetch-jsonp", - "jest-axe", - "jest-image-snapshot", - "jest-puppeteer", - "jsonml-to-react-element", - "lz-string", - "rc-footer", - "rc-tween-one", - "rc-virtual-list", - "react-fast-marquee", - "react-highlight-words", - "react-infinite-scroll-component", - "react-resizable", - "react-sticky-box", - "react-window", - "remark-lint", - "remark-preset-lint-recommended", - "rome", - "stylelint-config-prettier", - "stylelint-config-rational-order", - "stylelint-declaration-block-no-ignored-properties", - "sylvanas", - "vanilla-jsoneditor", - "xhr-mock", - "yaml-front-matter", - "@supernova-studio/client", - "@supernova-studio/model", - "abab", - "async-mutex", - "color2k", - "parse-color", - "string.prototype.matchall", - "@types/tinycolor2", - "trash-cli", - "tsconfig-paths-webpack-plugin", - "Supernova", - "Design Systems", - "Supernovaio", - "SDK", - "Design Tokens", - "Tokens", - "Assets", - "Components", - "Documentation", - "Markdown", - "CMS", - "expr-eval-fork", - "ml-matrix", - "postcss-calc-ast-parser", - "@ava/typescript", - "@stylistic/eslint-plugin-js", - "@svitejs/changesets-changelog-github-compact", - "eslint-config", - "@sveltejs/acorn-typescript", - "@types/cookie", - "devalue", - "esm-env", - "mrmime", - "sade", - "@opentelemetry/api", - "@types/connect", - "dts-buddy", - "official", - "obug", - "@sveltejs/vite-plugin-svelte-inspector", - "vite-plugin", - "vite plugin", - "@babel/plugin-transform-react-constant-elements", - "@svgr/plugin-jsx", - "@svgr/plugin-svgo", - "svgr", - "webpack-loader", - "@swc/counter", - "@swc/types", - "@napi-rs/cli", - "@rstest/core", - "swc", - "swcpack", - "rust", - "tsc", - "stylelint-prettier", - "@swisspost/design-system-icons", - "@swisspost/design-system-tokens", - "stylelint-config-sass-guidelines", - "collections", - "patterns", - "web components", - "ui library", - "symbiote.js", - "symbiote", - "widget", - "microfrontends", - "meta application", - "custom elements", - "shadow dom", - "shadow root", - "constructable stylesheets", - "adopted stylesheets", - "css custom properties", - "pubsub", - "import maps", - "cdn imports", - "https imports", - "reactive html attributes", - "MIT", - "JSDA", - "@types/content-type", - "istanbul-lib-coverage", - "istanbul-lib-report", - "istanbul-lib-source-maps", - "istanbul-reports", - "rollup-plugin-filesize", - "tanem-scripts", - "dom", - "images", - "img", - "scalable-vector-graphics", - "@tanstack/query-core", - "@tanstack/query-persist-client-core", - "@tanstack/query-test-utils", - "@testing-library/svelte", - "tanstack", - "query", - "@types/js-cookie", - "@github/webauthn-json", - "better-docs", - "eslint-config-preact", - "hanko", - "passkey", - "webauthn", - "passcode", - "password", - "kcd-scripts", - "functional", - "aria-query", - "@types/aria-query", - "dom-accessibility-api", - "jest-in-case", - "jest-watch-select-projects", - "jest-snapshot-serializer-ansi", - "unit", - "redent", - "@jest/globals", - "rollup-plugin-delete", - "jest-environment-jsdom-sixteen", - "jest-matcher-utils", - "@callstack/eslint-config", - "@relmify/jest-serializer-strip-ansi", - "testing-library", - "dotenv-cli", - "jest-mock", - "shared-scripts", - "@types/jest-in-case", - "@ph.fritsche/toolbox", - "jest-serializer-ansi", - "esbuild-plugin-globals", - "eslint-plugin-local-rules", - "@ph.fritsche/scripts-config", - "@esbuild-plugins/node-modules-polyfill", - "react-testing-library", - "dom-testing-library", - "regexparam", - "tinyhttp", - "static", - "@tinyhttp/vary", - "supertest-fetch", - "forwarded", - "headers", - "header", - "proxy-addr", - "net", - "network", - "@tinyhttp/accepts", - "@tinyhttp/content-disposition", - "@tinyhttp/content-type", - "params", - "particles.js", - "particlesjs", - "particles", - "particle", - "jsparticles", - "xparticles", - "particles-js", - "particles-bg", - "particles-bg-vue", - "particles-ts", - "particles.ts", - "react-particles-js", - "react-particles.js", - "react-particles", - "vue-particles", - "ngx-particles", - "angular-particles", - "particleground", - "vuejs", - "preactjs", - "angularjs", - "animation", - "html5", - "web-design", - "webdesign", - "css3", - "animated", - "background", - "confetti", - "fireworks", - "fireworks-js", - "confetti-js", - "confettijs", - "fireworksjs", - "canvas-confetti", - "@d-fischer/shared-utils", - "@twurple/api-call", - "@twurple/common", - "jose", - "twitch", - "extension", - "service", - "ebs", - "ts-api-utils", - "natural-compare", - "@eslint-community/regexpp", - "@typescript-eslint/type-utils", - "@typescript-eslint/visitor-keys", - "title-case", - "mdast-util-mdx", - "micromark-extension-mdxjs", - "@typescript-eslint/rule-tester", - "@typescript-eslint/rule-schema-to-typescript-types", - "eslintplugin", - "@typescript-eslint/typescript-estree", - "estree", - "@ucloud-fe/calendar", - "component-classes", - "create-react-context", - "emotion-theming", - "file-bytes-formatter", - "mini-store", - "rc-animate", - "rc-form", - "z-use-drag", - "@types/hoist-non-react-statics", - "@types/raf", - "@ucloud-fe/recodo-gen", - "ast-types", - "babel-plugin-emotion", - "babel-plugin-typescript-to-proptypes", - "babel-plugin-webpack-alias", - "css-hot-loader", - "jest-emotion", - "jsdom-screenshot", - "stylelint-config-styled-components", - "stylelint-processor-styled-components", - "tsc-alias", - "ucloud", - "jotai-x", - "is-hotkey", - "optics-ts", - "zustand-x", - "slate-react", - "jotai-optics", - "@udecode/slate", - "@udecode/utils", - "use-deep-compare", - "slate-hyperscript", - "@udecode/react-utils", - "@udecode/react-hotkeys", - "plate", - "slate", - "button", - "react-button", - "uiw-react", - "react.js", - "uikit", - "react-ui", - "@uiw/icons", - "react-icon", - "react-input", - "@uiw/react-overlay", - "overlay-trigger", - "react-overlay-trigger", - "utils", - "react-utils", - "prom-client", - "openapi-types", - "unleash-client", - "json-schema-to-ts", - "ts-node-dev", - "@types/type-is", - "Unleash", - "native", - "ios", - "android", - "flags", - "lit", - "keyux", - "nanostores", - "@lit/context", - "@uploadcare/cname-prefix", - "@uploadcare/image-shrink", - "@uploadcare/upload-client", - "@uploadcare/quality-insights", - "shipjs", - "render-jsx", - "lit-analyzer", - "ts-lit-plugin", - "@biomejs/js-api", - "@vitest/browser", - "eslint-plugin-wc", - "@types/svg-sprite", - "eslint-plugin-lit", - "vitest-browser-lit", - "@biomejs/wasm-nodejs", - "@size-limit/esbuild-why", - "esbuild-minify-templates", - "@total-typescript/ts-reset", - "@size-limit/preset-small-lib", - "@happy-dom/global-registrator", - "@csstools/postcss-cascade-layers", - "uploadcare", - "lighter", - "file uploader", - "adaptive image", - "image optimization", - "image editing", - "image size", - "cloud image editor", - "upload api client", - "building blocks", - "blocks", - "lr-blocks", - "uc-blocks", - "integrations", - "smart cdn", - "cloud file platform", - "transformation api", - "webp", - "avif", - "css context properties", - "meta applications", - "browserslist-to-esbuild", - "@babel/plugin-transform-react-jsx-self", - "@babel/plugin-transform-react-jsx-source", - "@rolldown/pluginutils", - "babel-plugin-react-compiler", - "fast refresh", - "@tsconfig/node20", - "pkgroll", - "create-vue", - "create-eslint-config", - "ajv-keywords", - "merge-deep", - "swagger-parser", - "@ant-design/icons-svg", - "@makotot/ghostui", - "@types/hast", - "@umijs/bundler-utils", - "@umijs/core", - "@umijs/utils", - "animated-scroll-to", - "codesandbox", - "comlink", - "dumi-afx-deps", - "estree-util-to-js", - "estree-util-visit", - "file-system-cache", - "heti", - "html2sketch", - "mdast-util-find-and-replace", - "mdast-util-to-string", - "prism-themes", - "react-loading-skeleton", - "react-simple-code-editor", - "rehype-remove-comments", - "remark-directive", - "sucrase", - "umi", - "unist-util-visit-parents", - "v8-compile-cache", - "vfile", - "dumi-assets-types", - "@types/highlight-words-core", - "@types/hosted-git-info", - "@types/lodash.throttle", - "@types/pluralize", - "@umijs/lint", - "@umijs/plugins", - "codesandbox-import-utils", - "git-repo-info", - "highlight-words-core", - "zx", - "dumi-theme-mobile", - "static site generator", - "jamstack", - "aleo", - "cryptography", - "blockchain", - "decentralized", - "zero-knowledge", - "oracle", - "event-target-shim", - "@mysticatea/eslint-plugin", - "@mysticatea/spy", - "dts-bundle-generator", - "karma-growl-reporter", - "rollup-plugin-babel-minify", - "rollup-watch", - "type-tester", - "w3c", - "whatwg", - "event", - "abort", - "cancel", - "abortcontroller", - "abortsignal", - "controller", - "signal", - "shim", - "negotiator", - "content", - "negotiation", - "accept", - "middleware", - "progress-estimator", - "@types/figlet", - "@types/git-clone", - "rollup-plugin-node-externals", - "nestjs", - "fullstack", - "zip", - "archive", - "flowcontrol", - "flow", - "control", - "arch", - "cron-parser", - "date.js", - "human-interval", - "@types/human-interval", - "job", - "jobs", - "delayed", - "blockchain-bend4", - "blockchain-meat7", - "bow-swam-troops-care", - "cent-matter-to", - "closer-composed-particularly-shout", - "coach-organized-notice", - "correct-home-silent7", - "course-whenever-merely", - "crop-birthday-web3-children", - "exchange-known-bend", - "face-eventually-bound", - "grass-dollar-crew-floating", - "information-fruit-web3-perfect", - "lay-rest-hour", - "material-balance-trade-solar", - "meat-think-stove8", - "office-deal-mostly1", - "product-slight-adult-settlers", - "recently-done-should-moon", - "scientific-exist-event2", - "sentence-won-little-western", - "speed-wing-eat", - "stay-including", - "supper-term-including-snake", - "truck-hospital-equator-hurt", - "trunk-darkness-believed-corner", - "typical-recall-industry-exchange", - "warn-clothing-whose0", - "weigh-flew-web3-farm", - "@airtap/browserify-istanbul", - "airtap-default", - "airtap-multi", - "bruce-millis-option", - "engine.io", - "engine.io-client", - "find-nearest-file", - "globs-to-files", - "humanize-duration", - "load-script", - "make-promises-safe", - "maybe-combine-errors", - "nanoresource", - "nanoresource-collection", - "on-stream-close", - "run-parallel-settled", - "tap-completed", - "thunky-with-args", - "transient-error", - "abstract-browser", - "simple-get", - "saucelabs", - "fast-uri", - "json-schema-traverse", - "require-from-string", - "@ajv-validator/config", - "@types/require-from-string", - "dayjs-plugin-utc", - "if-node-version", - "json-schema-test", - "module-from-string", - "re2", - "tsify", - "uri-js", - "json-schema-validator", - "json-schema-validation", - "Ajv", - "longjohn", - "buffer-more-ints", - "claire", - "AMQP", - "AMQP 0-9-1", - "RabbitMQ", - "simple", - "ux bootstrap", - "client-side", - "@angular-cli/ast-tools", - "@angular-cli/base-href-webpack", - "@ngtools/json-schema", - "@ngtools/webpack", - "denodeify", - "ember-cli-normalize-entity-name", - "ember-cli-string-utils", - "exists-sync", - "findup", - "get-caller-file", - "isbinaryfile", - "node-modules-path", - "script-loader", - "silent-error", - "sourcemap-istanbul-instrumenter-loader", - "component library", - "justified", - "256", - "ansi", - "bgblack", - "bgBlack", - "bgblue", - "bgBlue", - "bgcyan", - "bgCyan", - "bggreen", - "bgGreen", - "bgmagenta", - "bgMagenta", - "bgred", - "bgRed", - "bgwhite", - "bgWhite", - "bgyellow", - "bgYellow", - "black", - "blue", - "bold", - "clorox", - "colour", - "cyan", - "dim", - "formatting", - "gray", - "green", - "grey", - "hidden", - "inverse", - "italic", - "logging", - "magenta", - "red", - "reset", - "rgb", - "shell", - "str", - "strikethrough", - "style", - "text", - "underline", - "white", - "yellow", - "environment", - "escape", - "escapes", - "vt100", - "sequence", - "codes", - "cursor", - "iterm2", - "screen", - "erase", - "scrollback", - "regex", - "regexp", - "re", - "match", - "find", - "pattern", - "svg-term-cli", - "@ant-design/icons-vue", - "@emotion/unitless", - "@simonwep/pickr", - "array-tree-filter", - "dom-align", - "dom-scroll-into-view", - "shallow-equal", - "vue-types", - "@babel/plugin-proposal-optional-chaining", - "@babel/plugin-transform-object-assign", - "@types/koa", - "@types/lru-cache", - "@types/postcss-load-config", - "@vitejs/plugin-vue-jsx", - "@vue/babel-plugin-jsx", - "@vue/cli-plugin-eslint", - "@vue/eslint-config-prettier", - "@vue/vue3-jest", - "@webpack-cli/serve", - "ali-oss", - "babel-plugin-inline-import-data-uri", - "babel-plugin-transform-require-context", - "colorful", - "compare-versions", - "cz-git", - "diacritics", - "docsearch.js", - "enquire-js", - "eslint-plugin-no-explicit-type-exports", - "gulp-strip-code", - "ignore-emit-webpack-plugin", - "is-windows", - "jest-serializer-vue", - "jest-transform-stub", - "json-templater", - "less-plugin-npm-import", - "less-vars-to-js", - "majo", - "markdown-it-table-of-contents", - "merge2", - "remark-stringify", - "remark-yaml-config", - "reqwest", - "rucksack-css", - "selenium-server", - "string-replace-loader", - "umi-request", - "vue-clipboard2", - "vue-drag-resize", - "vue-infinite-scroll", - "vue-request", - "vue-tsc", - "webpackbar", - "vueComponent", - "@rc-component/form", - "@rc-component/menu", - "@rc-component/rate", - "@rc-component/tabs", - "@rc-component/tree", - "@rc-component/util", - "@rc-component/image", - "@rc-component/input", - "@rc-component/steps", - "@rc-component/table", - "@rc-component/dialog", - "@rc-component/drawer", - "@rc-component/motion", - "@rc-component/picker", - "@rc-component/qrcode", - "@rc-component/select", - "@rc-component/slider", - "@rc-component/switch", - "@rc-component/upload", - "@rc-component/tooltip", - "@rc-component/trigger", - "@ant-design/fast-color", - "@rc-component/cascader", - "@rc-component/checkbox", - "@rc-component/collapse", - "@rc-component/dropdown", - "@rc-component/mentions", - "@rc-component/progress", - "@rc-component/textarea", - "@rc-component/segmented", - "@rc-component/pagination", - "@ant-design/cssinjs-utils", - "@rc-component/tree-select", - "@rc-component/color-picker", - "@rc-component/input-number", - "@rc-component/notification", - "@rc-component/mutate-observer", - "@rc-component/resize-observer", - "p-all", - "runes2", - "mermaid", - "spinnies", - "env-paths", - "@types/tar", - "antd-style", - "@types/pngjs", - "cli-progress", - "domparser-rs", - "vanilla-tilt", - "@ant-design/x", - "react-countup", - "@prettier/sync", - "@types/adm-zip", - "@types/ali-oss", - "@blazediff/core", - "@types/css-tree", - "@types/minimist", - "@types/spinnies", - "@types/nprogress", - "lunar-typescript", - "@ant-design/x-sdk", - "csstree-validator", - "@types/http-server", - "@types/cli-progress", - "@antfu/eslint-config", - "@ant-design/compatible", - "@codecov/webpack-plugin", - "@types/isomorphic-fetch", - "dumi-plugin-color-chunk", - "@microflash/rehype-figure", - "@rc-component/virtual-list", - "circular-dependency-plugin", - "@codesandbox/sandpack-react", - "@eslint-react/eslint-plugin", - "@ant-design/happy-work-theme", - "cypress-image-diff-html-report", - "@ianvs/prettier-plugin-sort-imports", - "remark-lint-no-undefined-references", - "@madccc/duplicate-package-checker-webpack-plugin", - "@api-components/api-console-ext-comm", - "@api-components/api-documentation", - "@api-components/api-summary", - "@polymer/app-layout", - "@polymer/iron-media-query", - "@polymer/paper-toast", - "@anypoint-web-components/anypoint-menu-mixin", - "@open-wc/building-rollup", - "@polymer/iron-test-helpers", - "@web/test-runner-visual-regression", - "amf-client-js", - "rollup-plugin-cpy", - "unzipper", - "raml", - "amf", - "diff-match-patch", - "expose-loader", - "klaw-sync", - "eslint-config-recommended", - "restful", - "apidoc-light", - "portable", - "programmatic", - "cli-app", - "api-documentation", - "markdown-documentation", - "http2", - "apple", - "push", - "push notifications", - "iOS", - "apns", - "notifications", - "apollo-cache", - "apollo-utilities", - "ts-invariant", - "@types/zen-observable", - "symbol-observable", - "zen-observable", - "jsnext", - "relay", - "zen-observable-ts", - "@types/graphql", - "apollo-link-http-common", - "apollo-fetch", - "object-to-querystring", - "cracks", - "root", - "node_modules", - "@colors/colors", - "appium-adb", - "appium-chromedriver", - "asyncbox", - "io.appium.settings", - "portscanner", - "teen_process", - "@appium/eslint-config-appium-ts", - "@appium/tsconfig", - "@types/bluebird", - "@types/portscanner", - "appium", - "mobile testing", - "@azure/identity", - "@azure/core-auth", - "@azure/functions", - "diagnostic-channel", - "@opentelemetry/core", - "@azure/functions-old", - "@opentelemetry/api-logs", - "@opentelemetry/sdk-logs", - "@opentelemetry/resources", - "@opentelemetry/sdk-metrics", - "@azure/monitor-opentelemetry", - "@opentelemetry/sdk-trace-base", - "@opentelemetry/sdk-trace-node", - "diagnostic-channel-publishers", - "@opentelemetry/otlp-exporter-base", - "@opentelemetry/semantic-conventions", - "@azure/monitor-opentelemetry-exporter", - "@opentelemetry/exporter-logs-otlp-http", - "@opentelemetry/exporter-trace-otlp-http", - "@opentelemetry/exporter-metrics-otlp-http", - "@opentelemetry/exporter-metrics-otlp-proto", - "@azure/opentelemetry-instrumentation-azure-sdk", - "@types/long", - "@types/microsoft__typescript-etw", - "exception monitoring", - "request monitoring", - "performance monitoring", - "application insights", - "microsoft", - "azure", - "cloud", - "tracing", - "telemetry", - "analytics", - "apm", - "@aws-sdk/credential-provider-node", - "@aws-sdk/hash-node", - "@aws-sdk/protocol-http", - "@aws-sdk/signature-v4", - "@aws-sdk/types", - "aws-xray-sdk-core", - "@aws-amplify/amplify-appsync-simulator", - "constructs", - "prettier-plugin-organize-attributes", - "projen", - "appsync", - "aws", - "gql", - "lambda", - "xray", - "archiver-utils", - "buffer-crc32", - "readdir-glob", - "zip-stream", - "archiver-jsdoc-theme", - "stream-bench", - "stream", - "@babel/plugin-syntax-class-properties", - "option", - "define-properties", - "es-abstract", - "es-shim-unscopables", - "@es-shims/api", - "@ljharb/eslint-config", - "encoding", - "has-strict-mode", - "Array.prototype.flatMap", - "flatMap", - "array", - "ESnext", - "flatten", - "Array.prototype.flatten", - "es-shim API", - "arrayify", - "convert", - "value", - "ensure", - "is-nan", - "object-is", - "array-fill", - "fn.name", - "is-buffer", - "propget", - "pruddy-error", - "assertion", - "asserts", - "shouldjs", - "unit testing", - "babel-minify", - "rollup-plugin-npm", - "babel-preset-es2017", - "native-promise-only", - "eslint-plugin-prefer-arrow", - "babel-plugin-syntax-async-generators", - "callback", - "@types/tap", - "await", - "listen", - "then-sleep", - "@babel/node", - "@pika/pack", - "pika-plugin-build-web-babel", - "pika-plugin-ts-types", - "validate", - "libnpx", - "node-cleanup", - "npm-lockfile", - "find-package-json", - "audit", - "lockfile", - "shrinkwrap", - "import-cwd", - "parse-github-url", - "babel-plugin-rewire", - "auto", - "automatic", - "changelog", - "change", - "git", - "commit", - "commits", - "detective", - "detective-es6", - "is-builtin-module", - "package-json", - "sync-exec", - "package", - "fraction.js", - "prefix", - "@vercel/nft", - "arrgv", - "callsites", - "cbor", - "chunkd", - "ci-parallel-vars", - "code-excerpt", - "common-path-prefix", - "concordance", - "currently-unhandled", - "emittery", - "ignore-by-default", - "matcher", - "memoize", - "package-config", - "resolve-cwd", - "supertap", - "temp-dir", - "@sindresorhus/tsconfig", - "🦄", - "concurrent", - "parallel", - "fast", - "promises", - "function", - "generators", - "yield", - "observable", - "observables", - "webpack-log", - "empty-module", - "ps-node", - "loader", - "ieee754", - "jmespath", - "hash-test-vectors", - "insert-module-globals", - "amazon", - "ec2", - "simpledb", - "s3", - "sqs", - "ses", - "sns", - "route53", - "rds", - "elasticache", - "cloudfront", - "fps", - "cloudformation", - "cloudwatch", - "dynamodb", - "iam", - "swf", - "autoscaling", - "cloudsearch", - "elb", - "loadbalancing", - "emr", - "mapreduce", - "importexport", - "storagegateway", - "workflow", - "vpc", - "beanstalk", - "glacier", - "kinesis", - "cloudtrail", - "waf", - "memoizee", - "@deque/dot", - "colorjs.io", - "typedarray", - "emoji-regex", - "grunt-babel", - "revalidator", - "sri-toolbox", - "serve-handler", - "grunt-bytesize", - "weakmap-polyfill", - "clean-jsdoc-theme", - "css-selector-parser", - "@axe-core/webdriverjs", - "conventional-commits-parser", - "eslint-plugin-mocha-no-only", - "Accessibility", - "axe", - "proxy-from-env", - "dev-null", - "formdata-node", - "stream-throttle", - "karma-jasmine-ajax", - "string-replace-async", - "abortcontroller-polyfill", - "rollup-plugin-bundle-size", - "@rollup/plugin-multi-entry", - "rollup-plugin-auto-external", - "istanbul-instrumenter-loader", - "ajax", - "browserify-mime", - "json-edm-parser", - "md5.js", - "batchflow", - "factor-bundle", - "karma-env-preprocessor", - "storage", - "output-file-sync", - "v8flags", - "babel-code-frame", - "babel-helpers", - "babel-messages", - "private", - "babel-helper-transform-fixture-test-runner", - "eslint-config-babel", - "trim-right", - "try-resolve", - "babel-preset-jest", - "babel-plugin-transform-export-extensions", - "babel-preset-power-assert", - "conventional-github-releaser", - "module.exports", - "airbnb-js-shims", - "babel-plugin-transform-replace-object-assign", - "dynamic", - "import", - "@umijs/test", - "babel-preset-umi", - "react-toolbox", - "@istanbuljs/load-nyc-config", - "istanbul-lib-instrument", - "test-exclude", - "pmock", - "instrumentation", - "require-package-name", - "@babel/plugin-proposal-function-bind", - "@babel/preset-stage-0", - "lodash-bound", - "lodash-compat", - "cherry-pick", - "find-babel-config", - "prettier-eslint-cli", - "resolver", - "alias", - "rewrite", - "rename", - "mapping", - "babel-plugin-tester", - "babel-helper-remap-async-to-generator", - "babel-plugin-syntax-async-functions", - "babel-helper-function-name", - "babel-plugin-syntax-class-properties", - "babel-plugin-syntax-decorators", - "es7", - "babel-plugin-transform-strict-mode", - "babel-plugin-syntax-object-rest-spread", - "babel-helper-builder-react-jsx", - "@babel/preset-flow", - "babel-plugin-flow-react-proptypes", - "pkgfiles", - "minification", - "propTypes", - "regenerator-transform", - "@babel/plugin-proposal-numeric-separator", - "@babel/plugin-transform-property-mutators", - "@babel/plugin-proposal-optional-catch-binding", - "@babel/plugin-proposal-nullish-coalescing-operator", - "babel-plugin-check-es2015-constants", - "babel-plugin-syntax-trailing-function-commas", - "babel-plugin-transform-es2015-arrow-functions", - "babel-plugin-transform-es2015-block-scoped-functions", - "babel-plugin-transform-es2015-classes", - "babel-plugin-transform-es2015-computed-properties", - "babel-plugin-transform-es2015-destructuring", - "babel-plugin-transform-es2015-duplicate-keys", - "babel-plugin-transform-es2015-for-of", - "babel-plugin-transform-es2015-function-name", - "babel-plugin-transform-es2015-literals", - "babel-plugin-transform-es2015-modules-amd", - "babel-plugin-transform-es2015-modules-systemjs", - "babel-plugin-transform-es2015-modules-umd", - "babel-plugin-transform-es2015-object-super", - "babel-plugin-transform-es2015-parameters", - "babel-plugin-transform-es2015-shorthand-properties", - "babel-plugin-transform-es2015-spread", - "babel-plugin-transform-es2015-sticky-regex", - "babel-plugin-transform-es2015-typeof-symbol", - "babel-plugin-transform-es2015-unicode-regex", - "babel-plugin-transform-exponentiation-operator", - "electron-to-chromium", - "babel-preset-flow", - "babel-plugin-transform-react-display-name", - "babel-plugin-transform-react-jsx-source", - "babel-plugin-transform-react-jsx-self", - "@babel/plugin-proposal-private-methods", - "babel-plugin-transform-do-expressions", - "babel-plugin-transform-function-bind", - "babel-plugin-transform-class-constructor-call", - "babel-plugin-transform-decorators", - "babel-plugin-transform-async-generator-functions", - "home-or-tmp", - "esutils", - "to-fast-properties", - "lodash.zipobject", - "babel-plugin-transform-node-env-inline", - "babel-plugin-transform-flow-strip-types", - "unicode-9.0.0", - "model", - "view", - "@purtuga/esm-webpack-plugin", - "@types/validator", - "@web/test-runner-browserstack", - "@web/test-runner-junit-reporter", - "otpauth", - "backend-as-a-service", - "grunt-template", - "codec", - "decoder", - "encoder", - "base64", - "basic", - "auth", - "authorization", - "basicauth", - "sorted-object", - "ministructure", - "sinatra", - "orange sms", - "node-gyp-build", - "prebuildify", - "encryption", - "crypt", - "hash", - "esm2umd", - "pomelo-logger", - "di", - "IoC", - "AOP", - "dependency", - "injection", - "consistent", - "hot reload", - "front-backend", - "sharable codes", - "dependency injection", - "asynchronous script loading", - "magic, self-described javaScript objects", - "beautify", - "art-near-room-catch", - "blanket-line", - "born-greatly-explain3", - "bring-water-silence", - "brush-bigger-afternoon0", - "column-wore-meet-war", - "compare-breeze-mad2", - "did-straight-sister-sail", - "excitement-tonight-dead", - "gain-pleasant-prepare", - "industrial-public-immediately-until", - "is-straight-web3-attack", - "known-wet-thirty-gave", - "listen-private-thee6", - "mainly-cent", - "mountain-quarter-sit8", - "mouse-bat-web3-present", - "needs-supper-anything", - "percent-impossible-score", - "rocket-location-calm-valley", - "seldom-fire-web3-running", - "shade-swim-shells1", - "spider-melted-chemical", - "stretch-onto-driver7", - "tiny-dream-supply5", - "tool-invented-girl-jungle", - "we-hunt-process", - "web3-automobile7", - "whether-dangerous", - "ansicolors", - "ignorepatterns", - "response-stream", - "script-injector", - "find-global-packages", - "jsl", - "dotpathlookup", - "simplehttpserver", - "platform", - "docdown", - "qunit-extras", - "performance", - "speed", - "@beyond-js/specifier-parser", - "@beyond-js/fs", - "@beyond-js/bee", - "ansi-to-html", - "concat-with-sourcemaps", - "json-format", - "resolve-package-path", - "uimport", - "global-modules", - "universal", - "universal javascript", - "universal typescript", - "isomorphic", - "isomorphic javascript", - "isomorphic typescript", - "sigle page", - "spa", - "modular development", - "microfrontend", - "micro frontend", - "microservices", - "micro services", - "hmr", - "hot module replacement", - "ssr", - "server side rendering", - "typescript packager", - "JAMStack", - "real time", - "react framework", - "ssr react framework", - "vue framework", - "ssr vue framework", - "svelte framework", - "ssr svelte framework", - "websockets", - "check-types", - "hoopy", - "tryer", - "please-release-me", - "spooks", - "streamify", - "stringify", - "serialise", - "serialize", - "write", - "asynchronous", - "arbitrary", - "precision", - "arithmetic", - "big", - "number", - "decimal", - "float", - "biginteger", - "bigdecimal", - "bignumber", - "bigint", - "bignum", - "file-uri-to-path", - "addon", - "gyp", - "c", - "c++", - "@noble/hashes", - "@antv/component", - "@antv/g2", - "@antv/g2plot", - "@antv/util", - "d3-color", - "react-reconciler", - "@antv/data-set", - "@babel/preset-es2015", - "@storybook/addon-info", - "@storybook/addon-knobs", - "@storybook/addon-options", - "@umijs/fabric", - "@welldone-software/why-did-you-render", - "aphrodite", - "babel-plugin-inline-react-svg", - "babel-plugin-inline-svg", - "bx-jest-electron", - "declaration-bundler-webpack-plugin", - "git-directory-deploy", - "imports-loader", - "moment-jalaali", - "react-with-styles-interface-aphrodite", - "react-with-styles-interface-css-compiler", - "snapshot-diff", - "g2", - "@types/readable-stream", - "buffers", - "awesomesauce", - "falafel", - "foreach", - "coffee-react", - "uglify-save-license", - "curses", - "tui", - "tput", - "terminfo", - "termcap", - "ansi-term", - "drawille-canvas-blessed-contrib", - "map-canvas", - "marked-terminal", - "memory-streams", - "picture-tuber", - "sparkline", - "term-canvas", - "x256", - "@types/blessed", - "block", - "loop", - "kefir", - "baconjs", - "promises-a", - "promises-aplus", - "deferred", - "deferreds", - "future", - "flow control", - "dsl", - "fluent interface", - "standardx", - "BN", - "Big number", - "BigNum", - "Modulo", - "Montgomery", - "create-error", - "bookshelf-jsdoc-theme", - "postgresql", - "datamapper", - "active record", - "error", - "@types/mime", - "@astrojs/mdx", - "@astrojs/check", - "@astrojs/prism", - "@astrojs/sitemap", - "astro-auto-import", - "prettier-plugin-astro", - "@astrojs/markdown-remark", - "mincer", - "eyeglass-module", - "box", - "boxes", - "border", - "quote-stream", - "static-module", - "browserify-transform", - "readFileSync", - "asset", - "heimdalljs", - "array-equal", - "fs-tree-diff", - "broccoli-plugin", - "mocha-eslint", - "release-it-lerna-changelog", - "merge-trees", - "broccoli-fixture", - "copy", - "broccoli-fixturify", - "multidep", - "ts-docs-gen", - "tslint-plugin-prettier", - "browser-sync-client", - "browser-sync-ui", - "bs-recipes", - "dev-ip", - "easy-extender", - "eazy-logger", - "resp-modifier", - "bs-snippet-injector", - "generate-changelog", - "browser sync", - "live reload", - "sync", - "subarg", - "defined", - "parents", - "deps-sort", - "duplexer2", - "htmlescape", - "module-deps", - "stream-http", - "browser-pack", - "syntax-error", - "os-browserify", - "shasum-object", - "vm-browserify", - "domain-browser", - "mkdirp-classic", - "string_decoder", - "tty-browserify", - "browser-resolve", - "browserify-zlib", - "querystring-es3", - "https-browserify", - "read-only-stream", - "stream-browserify", - "timers-browserify", - "console-browserify", - "cached-path-relative", - "constants-browserify", - "labeled-stream-splicer", - "seq", - "isstream", - "coffeeify", - "browser-unpack", - "has-object-spread", - "has-template-literals", - "make-generator-function", - "commonj-esque", - "exposify", - "mothership", - "rename-function-calls", - "test-peer-range", - "transform", - "window", - "baseline-browser-mapping", - "node-releases", - "update-browserslist-db", - "browsers", - "target", - "base-x", - "ts-standard", - "base58", - "bitcoin", - "crytography", - "decode", - "decoding", - "encode", - "litecoin", - "typescript-cached-transpile", - "acorn-dynamic-import", - "acorn-jsx", - "regexpu-core", - "console-group", - "@rollup/plugin-buble", - "test262-stream", - "transpilation", - "compilation", - "esnext", - "es2017", - "arraybuffer", - "compatible", - "dataview", - "uint8array", - "equal", - "builtin", - "built-in", - "builtins", - "bundled", - "names", - "flexbox", - "@asyncapi/specs", - "@clack/prompts", - "@oclif/plugin-warn-if-update-available", - "@stoplight/yaml", - "jsonpathly", - "mergician", - "@types/jsonpath", - "bump", - "compress", - "mv", - "dtrace-provider", - "safe-json-stringify", - "ben", - "log4j", - "streamsearch", - "@mscdex/eslint-config", - "uploads", - "multipart", - "closurecompiler", - "lxiv", - "metascript", - "pretty-hrtime", - "testjs", - "utfx", - "typed array", - "webrtc", - "byte", - "converter", - "@bcoe/v8-coverage", - "foreground-child", - "v8-to-istanbul", - "chai-jest-snapshot", - "v8", - "profiler", - "inspector", - "@types/mri", - "eslint-config-rem", - "rollup-plugin-esbuild", - "@babel/plugin-syntax-typescript", - "@cacheable/utils", - "@faker-js/faker", - "@keyv/redis", - "@vitest/spy", - "cache-manager-redis-yet", - "cacheable", - "caching", - "cache manager", - "in-memory cache", - "multi-store cache", - "ttl", - "caching layer", - "cache abstraction", - "cache middleware", - "cache strategies", - "cache wrapper", - "call-bind-apply-helpers", - "es-define-property", - "get-intrinsic", - "set-function-length", - "es", - "callbind", - "callbound", - "call", - "bind", - "bound", - "call-bound", - "camel-case", - "camel", - "case", - "dash", - "hyphen", - "separator", - "pascalcase", - "pascal-case", - "support", - "prebuild-install", - "assert-rejects", - "graphic", - "graphics", - "pixman", - "cairo", - "image", - "pdf", - "case sensitive", - "slimerjs", - "scraping", - "loupe", - "pathval", - "check-error", - "assertion-error", - "@web/dev-server-rollup", - "chai-plugin", - "assertions", - "strategy", - "@debitoor/eslint-config-debitoor", - "objects", - "subset", - "contains", - "containSubset", - "deep", - "like", - "similar", - "includes", - "superset", - "yoctodelay", - "docpress", - "git-update-ghpages", - "gulp-ava", - "gulp-uglify-es", - "random", - "mersenne", - "name", - "address", - "dice", - "param-case", - "kebab-case", - "header-case", - "c12", - "confbox", - "convert-gitmoji", - "node-fetch-native", - "ofetch", - "pkg-types", - "scule", - "std-env", - "@kurkle/color", - "@rollup/plugin-inject", - "@types/offscreencanvas", - "chartjs-adapter-luxon", - "chartjs-adapter-moment", - "chartjs-test-utils", - "eslint-config-chartjs", - "eslint-plugin-es", - "karma-safari-private-launcher", - "rollup-plugin-swc3", - "charts", - "data", - "graphs", - "domutils", - "domhandler", - "cheerio-select", - "whatwg-mimetype", - "encoding-sniffer", - "parse5-parser-stream", - "parse5-htmlparser2-tree-adapter", - "@imgix/js-core", - "@octokit/graphql", - "@vitest/eslint-plugin", - "@types/whatwg-mimetype", - "htmlparser", - "scraper", - "xml", - "node-version", - "child", - "@better-scroll/core", - "add-dom-event-listener", - "choerodon-ui-font", - "css-animation", - "css-unit-converter", - "dom-closest", - "dom-lib", - "element-resize-event", - "htmlhint", - "insert-css", - "jsbarcode", - "jsonlint", - "jsonlint-mod", - "mutationobserver-shim", - "querystringify", - "quill-delta-to-html", - "react-beautiful-dnd", - "react-codemirror2", - "react-easy-crop", - "react-image-lightbox", - "react-lazy-load", - "react-quill", - "rmc-feedback", - "smooth-scroll-into-view-if-needed", - "@babel/plugin-transform-proto-to-assign", - "@types/codemirror", - "@types/element-resize-event", - "@types/faker", - "@types/insert-css", - "@types/jsbarcode", - "@types/prettier", - "@types/qrcode.react", - "@types/react-beautiful-dnd", - "@types/react-is", - "@types/react-slick", - "bisheng-plugin-choerodon-ui", - "bisheng-plugin-description", - "bisheng-plugin-react", - "bisheng-plugin-toc", - "eslint-tinker", - "intersection-observer", - "mark-twain", - "rc-queue-anim", - "rc-scroll-anim", - "react-infinite-scroller", - "react-sublime-video", - "scrollama", - "values.js", - "vfile-message", - "webpack-filter-warnings-plugin", - "choerodon", - "readdirp", - "@paulmillr/jsbt", - "watchFile", - "watcher", - "watching", - "file", - "ci", - "continuous", - "detect", - "@ckeditor/ckeditor5-emoji", - "@ckeditor/ckeditor5-style", - "@ckeditor/ckeditor5-mention", - "@ckeditor/ckeditor5-minimap", - "@ckeditor/ckeditor5-autosave", - "@ckeditor/ckeditor5-bookmark", - "@ckeditor/ckeditor5-language", - "@ckeditor/ckeditor5-highlight", - "@ckeditor/ckeditor5-code-block", - "@ckeditor/ckeditor5-fullscreen", - "@ckeditor/ckeditor5-html-embed", - "@ckeditor/ckeditor5-page-break", - "@ckeditor/ckeditor5-theme-lark", - "@ckeditor/ckeditor5-word-count", - "@ckeditor/ckeditor5-show-blocks", - "@ckeditor/ckeditor5-html-support", - "@ckeditor/ckeditor5-markdown-gfm", - "@ckeditor/ckeditor5-remove-format", - "@ckeditor/ckeditor5-source-editing", - "@ckeditor/ckeditor5-horizontal-line", - "@ckeditor/ckeditor5-find-and-replace", - "@ckeditor/ckeditor5-restricted-editing", - "@ckeditor/ckeditor5-special-characters", - "classname", - "minifier", - "@chrisblossom/eslint-config", - "@types/read-pkg-up", - "temp-sandbox", - "clean", - "parent-module", - "uncache", - "uncached", - "unrequire", - "delete", - "remove", - "rm", - "opts", - "parseopt", - "opt", - "argsparse", - "optparse", - "autocomplete", - "autocompletion", - "d", - "es6-iterator", - "timers-ext", - "eslint-config-medikoo", - "git-list-updated", - "github-release-from-cc-changelog", - "prettier-elastic", - "tad", - "toggle", - "display", - "show", - "hide", - "string-length", - "spinner", - "spinners", - "expresso", - "ansi-256-colors", - "git-rev", - "growl", - "line", - "tables", - "tabular", - "jest-runner-eslint", - "lerna-changelog", - "truncate", - "ellipsis", - "limit", - "width", - "cardinal", - "hyperlinker", - "@oclif/screen", - "extract-stack", - "object-treeify", - "@oclif/linewrap", - "natural-orderby", - "password-prompt", - "@types/strip-ansi", - "@types/ansi-styles", - "@types/extract-stack", - "@types/rollup", - "@yarnpkg/core", - "@yarnpkg/fslib", - "eslint-plugin-arca", - "rollup-plugin-multi-input", - "parsing", - "argument", - "good-listener", - "select", - "tiny-emitter", - "cut", - "clipboard-image", - "is-wayland", - "is64bit", - "powershell-utils", - "paste", - "copy-paste", - "pasteboard", - "pbcopy", - "clip", - "xclip", - "xsel", - "command line interface", - "progress bar", - "istanbul-harmony", - "coro", - "coroutine", - "mask", - "ignore-walk", - "teeny-request", - "urlgrey", - "code-coverage", - "codecov.io", - "@codemirror/lint", - "@codemirror/view", - "@codemirror/state", - "@codemirror/search", - "@codemirror/commands", - "@codemirror/language", - "@codemirror/autocomplete", - "@codemirror/buildhelper", - "google-closure-compiler-js", - "language", - "jison", - "wcwidth", - "column", - "exists", - "array-back", - "find-replace", - "typical", - "options", - "chalk-template", - "table-layout", - "usage", - "is-utf8", - "cachedir", - "find-node-modules", - "mocha-multi-reporters", - "@istanbuljs/nyc-config-babel", - "cz-conventional-changelog-default-export", - "conventional changelog", - "es2015-tag", - "es6-tag", - "heredoc", - "indent", - "indents", - "literal", - "multi", - "multiline", - "normalize", - "one", - "oneline", - "single", - "singleline", - "strings", - "strip", - "tag", - "tagged", - "emitter", - "emit", - "listener", - "observe", - "compressible", - "on-headers", - "gzip", - "deflate", - "brotli", - "buffer-from", - "ctrlc-wrapper", - "coveralls-next", - "@types/shell-quote", - "@hirez_io/observer-spy", - "eslint-plugin-import-lite", - "eslint-config-flat-gitignore", - "bash", - "sh", - "cson", - "faceoff", - "hjson", - "x2js", - "conf", - "node-config", - "config-node", - "env", - "atomically", - "is-safe-filename", - "xdg-basedir", - "settings", - "preferences", - "persist", - "persistent", - "save", - "rack", - "flash", - "kruptein", - "mongo", - "session", - "vite-plugin-dts", - "defu", - "is-unicode-supported", - "sentencer", - "reporter", - "elegant", - "clack", - "stacktrace", - "eco", - "ect", - "eta", - "slm", - "dust", - "jazz", - "just", - "mote", - "qejs", - "twig", - "vash", - "jqtpl", - "twing", - "hamlet", - "hamljs", - "liquor", - "plates", - "teacup", - "toffee", - "walrus", - "htmling", - "ractive", - "whiskers", - "tinyliquid", - "velocityjs", - "haml-coffee", - "liquid-node", - "arc-templates", - "dustjs-helpers", - "swig-templates", - "dustjs-linkedin", - "bracket-template", - "engine", - "rfc6266", - "rfc7231", - "@types/normalize-package-data", - "fd-package-json", - "normalize-package-data", - "@conventional-changelog/git-client", - "conventional-changelog-writer", - "conventional-changelog-preset-loader", - "conventional", - "tempfile", - "add-stream", - "compare-func", - "conventionalcommits.org", - "preset", - "inline-source-map", - "sourcemap", - "source", - "map", - "@borderless/ts-scripts", - "top-sites", - "cookies", - "sign", - "unsign", - "toggle-selection", - "@brettz9/node-static", - "selenium-server-standalone-jar", - "is-gzip", - "@types/glob-parent", - "@types/normalize-path", - "eslint-config-webpack", - "@types/serialize-javascript", - "transfer", - "move", - "noms", - "qr", - "qrcode", - "simple qr", - "npm qr JavaScript", - "js qr code", - "corcojs-qrcode-sample", - "logo", - "simple qrcode", - "cordova-common", - "cordova-create", - "cordova-lib", - "@cordova/eslint-config", - "ES3", - "ES5", - "ES6", - "ES7", - "ES2015", - "ES2016", - "ES2017", - "ES2018", - "ES2019", - "ES2020", - "ES2021", - "ES2022", - "ES2023", - "ES2024", - "ECMAScript 3", - "ECMAScript 5", - "ECMAScript 6", - "ECMAScript 7", - "ECMAScript 2015", - "ECMAScript 2016", - "ECMAScript 2017", - "ECMAScript 2018", - "ECMAScript 2019", - "ECMAScript 2020", - "ECMAScript 2021", - "ECMAScript 2022", - "ECMAScript 2023", - "ECMAScript 2024", - "Map", - "Set", - "WeakMap", - "WeakSet", - "TypedArray", - "Promise", - "Observable", - "Symbol", - "Iterator", - "AsyncIterator", - "URL", - "URLSearchParams", - "queueMicrotask", - "setImmediate", - "structuredClone", - "ponyfill", - "parse-json", - "@types/parse-json", - "eslint-config-davidtheclark-node", - "remark-preset-davidtheclark", - "load", - "lcov-parse", - "log-driver", - "cpy", - "cp", - "files", - "file-system", - "quick", - "contents", - "tslog", - "hpagent", - "seenreq", - "http2-wrapper", - "@types/got", - "spider", - "crc16ccitt", - "crc16kermit", - "crc16modbus", - "crc16", - "crc16xmodem", - "crc1", - "crc24", - "crc32", - "crc81wire", - "crc8", - "crc8dvbs2", - "crcjam", - "cipher-base", - "ripemd160", - "sha.js", - "async-traverse-tree", - "css-url-parser", - "data-uri-to-buffer", - "group-args", - "inline-critical", - "oust", - "penthouse", - "postcss-discard", - "postcss-image-inliner", - "postcss-url", - "normalize-newline", - "stream-array", - "optimization", - "@fast-check/jest", - "@insurgent/commitlint-config", - "@insurgent/conventional-changelog-preset", - "@semantic-release/commit-analyzer", - "@semantic-release/npm", - "@semantic-release/release-notes-generator", - "@swc/jest", - "node cron", - "node-cron", - "schedule", - "cronjob", - "cron job", - "timer", - "crontab", - "@prantlf/jsonlint", - "@prettier/plugin-xml", - "@secretlint/secretlint-rule-github", - "@secretlint/secretlint-rule-npm", - "@stryker-mutator/core", - "@stryker-mutator/tap-runner", - "@types/bun", - "eslint-plugin-array-func", - "eslint-plugin-no-unsanitized", - "jsr", - "metalint", - "secretlint", - "yaml-lint", - "@cropper/elements", - "@cropper/utils", - "crop", - "zoom", - "rotate", - "scale", - "cropper", - "cropper.js", - "image-cropping", - "image-viewing", - "image-processing", - "cropper-element", - "custom-element", - "web-component", - "@epic-web/invariant", - "@epic-web/config", - "@types/cross-spawn", - "zshy", - "cross-environment", - "environment variable", - "windows", - "cross-platform", - "rollup-plugin-esbuild-minify", - "path-key", - "shebang-command", - "babel-preset-moxy", - "eslint-config-moxy", - "spawn", - "spawnSync", - "path-ext", - "shebang", - "cmd", - "execute", - "browserify-cipher", - "browserify-sign", - "create-ecdh", - "create-hmac", - "diffie-hellman", - "hash-base", - "pbkdf2", - "public-encrypt", - "randomfill", - "pseudorandombytes", - "security", - "Hash", - "MD5", - "SHA1", - "SHA-1", - "SHA256", - "SHA-256", - "RC4", - "Rabbit", - "AES", - "DES", - "PBKDF2", - "HMAC", - "OFB", - "CFB", - "CTR", - "CBC", - "Base64", - "Base64url", - "eslint-config-groupon", - "nlm", - "@cspell/cspell-json-reporter", - "@cspell/cspell-performance-monitor", - "@cspell/cspell-pipe", - "@cspell/cspell-types", - "@cspell/cspell-worker", - "@cspell/dynamic-import", - "@cspell/url", - "cspell-config-lib", - "cspell-dictionary", - "cspell-gitignore", - "cspell-glob", - "cspell-io", - "cspell-lib", - "fast-json-stable-stringify", - "flatted", - "spell", - "checker", - "spelling", - "spell checker", - "spelling checker", - "lint", - "source-map-resolve", - "@mdn/browser-compat-data", - "@rollup/plugin-dynamic-import-vars", - "sorter", - "property", - "order", - "@swc-node/register", - "changelog-verify", - "eslint-config-nitpick", - "github-release-from-changelog", - "isomorphic-unfetch", - "rolldown-plugin-dts", - "version-changelog", - "write-json-file", - "functions", - "postcss-modules-extract-imports", - "postcss-modules-scope", - "@webpack-contrib/eslint-config-webpack", - "@swc/css", - "@parcel/css", - "@types/csso", - "@types/clean-css", - "cssnano-preset-simple", - "webpack-plugin", - "minimize", - "minimizer", - "optimize", - "optimizer", - "boolbase", - "@types/boolbase", - "cheerio-soupselect", - "sizzle", - "clap", - "json-to-ast", - "walker", - "lexer", - "web-features", - "features", - "stages", - "identifier", - "cssnano-preset-default", - "cssnano-preset-advanced", - "cssnano-preset-lite", - "optimise", - "optimisation", - "@asamuzakjp/css-color", - "@csstools/css-syntax-patches-for-csstree", - "@domenic/eslint-config", - "@webref/css", - "CSS", - "CSSStyleDeclaration", - "StyleSheet", - "@tsconfig/node24", - "@types/chokidar", - "@types/turndown", - "csrf", - "tokens", - "tsv", - "generation", - "object", - "csv-spectrum", - "pad", - "@types/lodash.set", - "csv parser", - "parse csv", - "csv to json", - "csv convert", - "tojson", - "convert csv to json", - "csv-json", - "duration", - "stack-chain", - "is-generator", - "stacktrace-js", - "serialize-error", - "cucumber-expressions", - "cucumber-tag-expressions", - "ansi-html", - "eslint-plugin-testcafe", - "riteway", - "updtr", - "guid", - "id", - "uid", - "unique id", - "hasha", - "ospath", - "blob-util", - "executable", - "@cypress/xvfb", - "@types/sizzle", - "@cypress/request", - "request-progress", - "cypress.io", - "mocks", - "spies", - "stubs", - "longest", - "conventional-commit-types", - "d3-dsv", - "d3-geo", - "d3-axis", - "d3-drag", - "d3-ease", - "d3-path", - "d3-time", - "d3-zoom", - "d3-brush", - "d3-chord", - "d3-fetch", - "d3-force", - "d3-timer", - "d3-format", - "d3-random", - "d3-contour", - "d3-polygon", - "d3-delaunay", - "d3-dispatch", - "d3-quadtree", - "d3-hierarchy", - "d3-transition", - "d3-interpolate", - "d3-time-format", - "d3-scale-chromatic", - "topojson-client", - "@observablehq/runtime", - "visualization", - "internmap", - "d3-module", - "histogram", - "bisect", - "shuffle", - "statistics", - "search", - "sort", - "selection", - "data-join", - "dable", - "tailwind css", - "tailwind react", - "tailwind vue", - "tailwind plugin", - "tailwind component", - "tailwind next", - "tailwind nuxt", - "tailwind svelte", - "tailwind css plugin", - "tailwind astro", - "tailwind laravel", - "tailwind rails", - "laravel", - "nuxt", - "css library", - "reverse", - "arguments", - "binary", - "opposite", - "invert", - "switch", - "construct", - "@captemulation/get-parameter-names", - "json-schema-faker-bb", - "request-debug", - "rss-parser", - "swagger-express-middleware", - "bun", - "cloc", - "js-fns", - "jscodeshift", - "@date-fns/tz", - "@date-fns/utc", - "@date-fns/docs", - "@size-limit/esbuild", - "typedoc-plugin-missing-exports", - "babel-plugin-replace-import-extension", - "gzip-size-cli", - "require-directory", - "sleep", - "async wrapper", - "debouncing", - "throttle", - "invoke", - "limited", - "interval", - "rate", - "batch", - "rate-limit", - "debugger", - "decamelcase", - "lowercase", - "decompress-tar", - "decompress-tarbz2", - "decompress-targz", - "decompress-unzip", - "strip-dirs", - "is-jpg", - "bz2", - "bzip2", - "extract", - "tar.bz", - "tar.gz", - "@types/babel-plugin-macros", - "console-fail-test", - "eslint-plugin-deprecation", - "eslint-plugin-no-only-tests", - "eslint-plugin-perfectionist", - "eslint-plugin-yml", - "jsonc-eslint-parser", - "npm-package-json-lint-config-default", - "prettier-plugin-curly", - "should-semantic-release", - "yaml-eslint-parser", - "multi-line string", - "duplicates", - "dupes", - "remove duplicates", - "distinct", - "deduplicate", - "deduplication", - "is-obj", - "obj", - "assign", - "recursive", - "key", - "keys", - "values", - "prop", - "json-ptr", - "difference", - "compare", - "change-tracking", - "kewlr", - "simple-assert", - "lcov-result-merger", - "eslint-config-strict", - "@js-temporal/polyfill", - "eslint-plugin-filenames", - "chai util", - "deep equal", - "object equal", - "array-buffer-byte-length", - "es-get-iterator", - "is-arguments", - "is-array-buffer", - "is-date-object", - "is-regex", - "is-shared-array-buffer", - "regexp.prototype.flags", - "side-channel", - "which-boxed-primitive", - "which-collection", - "which-typed-array", - "available-typed-arrays", - "has-proto", - "has-typed-arrays", - "equality", - "is-mergeable-object", - "jsmd", - "is-path-cwd", - "is-path-inside", - "presentable-error", - "folders", - "directories", - "destroy", - "trash", - "unlink", - "cleaning", - "cleanup", - "rmrf", - "rmdir", - "gulpfriendly", - "folder", - "directory", - "filesystem", - "temp-write", - "random-int", - "unlimited-timeout", - "in-range", - "time-span", - "defer", - "stall", - "timeout", - "settimeout", - "tick", - "threshold", - "range", - "callsite", - "deps-regex", - "is-core-module", - "@vue/compiler-sfc", - "patch-version", - "check", - "unused", - "packages", - "deprecate", - "deprecated", - "is-relative", - "read-package-json", - "detective-cjs", - "indentation", - "infer", - "identify", - "space", - "tab", - "@eggjs/tsconfig", - "egg-bin", - "eslint-config-egg", - "mm", - "tshy-after", - "port", - "jsdiff", - "patch", - "@profoundlogic/hogan", - "@eslint/json", - "@types/hogan.js", - "@types/nopt", - "all-contributors-cli", - "handlebars-loader", - "image-webpack-loader", - "is-ci-cli", - "side", - "side-by-side", - "line-by-line", - "character", - "difftohtml", - "colorized", - "data-structure-typed", - "eslint-import-resolver-alias", - "Directed Graph", - "directed graph", - "directedgraph", - "directed-graph", - "directed", - "Directed", - "digraph", - "java script", - "JavaScript", - "type script", - "vertex", - "Vertex", - "edge", - "Edge", - "graph theory", - "Graph Theory", - "graph structure", - "weighted", - "Weighted", - "unweighted", - "Unweighted", - "adjacency", - "Adjacency", - "connectivity", - "cycle", - "acyclic", - "traversal", - "depth", - "Depth", - "breadth", - "Breadth", - "first", - "depth first search", - "dfs", - "DFS", - "breadth first search", - "breadth-first search", - "bfs", - "BFS", - "graph algorithms", - "graph representation", - "connectivity matrix", - "adjacency list", - "adjacency matrix", - "matrix", - "node degree", - "sparse graph", - "dense graph", - "directed cycle", - "directed acyclic graph", - "DAG", - "topologic", - "topological", - "sorting", - "strongly connected components", - "weighted digraph", - "directed weighted edge", - "structure", - "structures", - "data structure", - "datastructure", - "data-structure", - "data structures", - "datastructures", - "data-structures", - "in data structures", - "in data structure", - "DataStructure", - "DataStructures", - "iterative", - "Node.js", - "CommonJS", - "UMD", - "esmodule", - "java.util", - "c++ stl", - "c++ std", - "Python collections", - "System.Collections.Generic", - "STL", - "stl", - "collection", - "Collection", - "Collections", - "insertion", - "deletion", - "OOP", - "@discordjs/voice", - "backend-manager", - "productivity", - "@discordjs/ws", - "lodash.snakecase", - "@discordjs/builders", - "@discordjs/formatters", - "@discordjs/docgen", - "bot", - "cache-point", - "common-sequence", - "file-set", - "walk-back", - "dmd-plugin-example", - "jsdoc2md", - "agnostic", - "dnd", - "drag", - "drop", - "dnode-protocol", - "jsonify", - "weak", - "rpc", - "callbacks", - "doc-detective-common", - "doc-detective-resolver", - "@ffmpeg-installer/ffmpeg", - "@puppeteer/browsers", - "appium-chromium-driver", - "appium-geckodriver", - "appium-safari-driver", - "geckodriver", - "jq-web", - "json-schema-faker", - "posthog-node", - "literate", - "mecano", - "parameters", - "@balena/dockerignore", - "@grpc/grpc-js", - "@grpc/proto-loader", - "docker-modem", - "docker", - "docker.io", - "@bevry/pluginloader", - "ambi", - "ansistyles", - "bal-util", - "caterpillar", - "docmatter", - "docpad-baseplugin", - "eachr", - "envfile", - "errlop", - "event-emitter-grouped", - "extendr", - "extract-opts", - "ignorefs", - "istextorbinary", - "jschardet", - "lazy-require", - "progress-title", - "query-engine", - "rfc-log-levels", - "safefs", - "safeps", - "scandirectory", - "taskgroup", - "typechecker", - "unbounded", - "watchr", - "@bevry/update-contributors", - "assert-helpers", - "coffeelint", - "kava", - "projectz", - "valid-directory", - "build", - "build and deployment", - "cms", - "compile", - "content management system", - "dev", - "dms", - "document management system", - "language agnostic", - "render", - "templating", - "web development", - "dependency-cruiser", - "dpdm", - "docsify.js", - "tabs", - "@textlint/markdown-to-ast", - "anchor-markdown-header", - "update-section", - "bitbucket", - "gitlab", - "ghost", - "doctrine-temporary-fork", - "konan", - "mdast-util-inject", - "micromark-util-character", - "parse-filepath", - "remark-reference-links", - "unist-builder", - "vfile-reporter", - "vfile-sort", - "chdir", - "documentation-schema", - "jsdoc3", - "big-integer", - "binary-search-bounds", - "int64-buffer", - "priorityqueuejs", - "semaphore", - "tunnel", - "cosmosdb", - "cosmos db", - "document database", - "nosql", - "database", - "crowdin-cli", - "imagemin-svgo", - "tree-node-cli", - "truncate-html", - "imagemin-optipng", - "imagemin-gifsicle", - "imagemin-jpegtran", - "filepath", - "glob-promise", - "websites", - "open source", - "autocomplete.js", - "lunr-languages", - "to-vfile", - "unist-util-is", - "offline-search", - "@4c/rollout", - "@4c/tsconfig", - "@react-bootstrap/babel-preset", - "@react-bootstrap/eslint-config", - "@react-bootstrap/eslint-config-typescript", - "karma-html2js-preprocessor", - "simulant", - "cross-browser", - "height", - "class", - "classlist", - "domelementtype", - "raster", - "png", - "@types/trusted-types", - "lodash.sample", - "qunit-tap", - "rollup-plugin-includepaths", - "mathml", - "secure", - "sanitizer", - "sanitize", - "filter", - "purify", - ".env", - "expand", - "interpolation", - "substitution", - "ext-name", - "filenamify", - "archive-type", - "is-zip", - "random-buffer", - "git-clone", - "repo", - "repository", - "tarball", - "import-from", - "parse-cmd-args", - "simple-update-notifier", - "ts-jest-resolver", - "dox", - "spawn-please", - "@types/temp", - "alex", - "babel-preset-fbjs", - "eslint-config-fbjs", - "fbjs-scripts", - "gulp-derequire", - "stats-webpack-plugin", - "webpack-stream", - "draftjs", - "richtext", - "just-extend", - "@parcel/transformer-inline-string", - "@parcel/transformer-sass", - "cypress-file-upload", - "karma-sinon-chai", - "parcel", - "dragndrop", - "drag and drop", - "file upload", - "upload", - "tsutils", - "dts-critic", - "@definitelytyped/utils", - "@definitelytyped/header-parser", - "@definitelytyped/typescript-versions", - "@types/strip-json-comments", - "@types/json-stable-stringify", - "proper-lockfile", - "db", - "elementscript", - "dw-neit-colors", - "dw-neit-cssinjs", - "dw-neit-cssinjs-utils", - "dw-neit-icons", - "dw-neit-ant-design-react-slick", - "dw-neit-rc-component-color-picker", - "dw-neit-rc-component-mutate-observer", - "dw-neit-rc-component-qrcode", - "dw-neit-rc-component-tour", - "dw-neit-rc-component-trigger", - "dw-neit-rc-cascader", - "dw-neit-rc-checkbox", - "dw-neit-rc-collapse", - "dw-neit-rc-dialog", - "dw-neit-rc-drawer", - "dw-neit-rc-dropdown", - "dw-neit-rc-field-form", - "dw-neit-rc-image", - "dw-neit-rc-input", - "dw-neit-rc-input-number", - "dw-neit-rc-mentions", - "dw-neit-rc-menu", - "dw-neit-rc-motion", - "dw-neit-rc-notification", - "dw-neit-rc-pagination", - "dw-neit-rc-picker", - "dw-neit-rc-progress", - "dw-neit-rc-rate", - "dw-neit-rc-resize-observer", - "dw-neit-rc-segmented", - "dw-neit-rc-select", - "dw-neit-rc-slider", - "dw-neit-rc-steps", - "dw-neit-rc-switch", - "dw-neit-rc-tabs", - "dw-neit-rc-textarea", - "dw-neit-rc-tree", - "dw-neit-rc-util", - "dw-neit-rc-table", - "dw-neit-rc-tooltip", - "dw-neit-rc-tree-select", - "dw-neit-rc-upload", - "@antv/g6", - "@types/pixelmatch", - "eslint-plugin-lodash", - "@eslint/core", - "control flow", - "iteration", - "zrender", - "@lang/rollup-plugin-dts", - "data-visualization", - "charting-library", - "apache", - "data-viz", - "editorconfig", - "gulp-exclude-gitignore", - "gulp-reporter", - "gulp-tap", - "linez", - "os-locale", - "@types/get-stream", - "@types/through2", - "@types/vinyl", - "@types/vinyl-fs", - "fix", - "enforce", - "gulpplugin", - "agentkeepalive", - "aliasify", - "backport", - "grunt-run", - "null-loader", - "through2-map", - "grunt-webpack", - "grunt-contrib-compress", - "@electron/get", - "lazy-val", - "dmg-builder", - "builder-util", - "app-builder-lib", - "builder-util-runtime", - "installer", - "packager", - "pack", - "nsis", - "dmg", - "pkg", - "msi", - "exe", - "setup", - "Windows", - "OS X", - "MacOS", - "Mac", - "appx", - "snap", - "flatpak", - "@electron/asar", - "@electron/notarize", - "@electron/osx-sign", - "@electron/universal", - "cross-spawn-windows-exe", - "galactus", - "get-package-info", - "junk", - "parse-author", - "rcedit", - "bundler", - "electron-download", - "home-path", - "wonderful-fetch", - "batch-processor", - "grunt-banner", - "@vue/component-compiler-utils", - "algoliasearch", - "babel-plugin-transform-vue-jsx", - "babel-regenerator-runtime", - "cp-cli", - "eslint-config-elemefe", - "eslint-plugin-json", - "file-save", - "gulp-cssmin", - "launch-editor-middleware", - "markdown-it-chain", - "select-version-cli", - "transliteration", - "uppercamelcase", - "vue-template-es2015-compiler", - "eleme", - "brorand", - "hash.js", - "hmac-drbg", - "minimalistic-assert", - "minimalistic-crypto-utils", - "grunt-mocha-istanbul", - "EC", - "Elliptic", - "curve", - "Cryptography", - "@ladjs/consolidate", - "@ladjs/i18n", - "get-paths", - "juice", - "nodemailer-sendgrid", - "preview-email", - "email", - "lad", - "lass", - "mailchimp", - "mailgun", - "mandrill", - "moonmail", - "postmark", - "sendgrid", - "@types/mailparser", - "@types/smtp-server", - "mailparser", - "smtp-server", - "@ember-tooling/blueprint-blueprint", - "@ember-tooling/blueprint-model", - "@ember/app-blueprint", - "@pnpm/find-workspace-dir", - "babel-remove-types", - "broccoli-concat", - "broccoli-config-loader", - "broccoli-config-replace", - "broccoli-debug", - "broccoli-funnel-reducer", - "broccoli-slow-trees", - "broccoli-source", - "broccoli-stew", - "calculate-cache-key-for-tree", - "capture-exit", - "clean-base-url", - "console-ui", - "content-tag", - "core-object", - "dag-map", - "ember-cli-is-package-missing", - "ember-cli-preprocess-registry", - "ensure-posix-path", - "find-yarn-workspace-root", - "heimdalljs-fs-monitor", - "heimdalljs-graph", - "heimdalljs-logger", - "is-git-url", - "is-language-code", - "markdown-it-terminal", - "p-defer", - "promise-map-series", - "promise.hash.helper", - "quick-temp", - "safe-stable-stringify", - "sane", - "sort-package-json", - "symlink-or-copy", - "tree-sync", - "watch-detector", - "yam", - "@ember-tooling/classic-build-addon-blueprint", - "@ember-tooling/classic-build-app-blueprint", - "chai-files", - "ember-cli-blueprint-test-helpers", - "ember-cli-internal-test-helpers", - "eslint-plugin-chai-expect", - "fixturify-project", - "release-plan", - "tmp-promise", - "yuidoc-ember-cli-theme", - "yuidocjs", - "app-kit", - "ember", - "ember-app-kit", - "ember.js", - "amd-name-resolver", - "babel-plugin-debug-macros", - "babel-plugin-ember-data-packages-polyfill", - "babel-plugin-ember-modules-api-polyfill", - "broccoli-babel-transpiler", - "ember-cli-babel-plugin-helpers", - "ember-cli-version-checker", - "@ember/optional-features", - "@ember/string", - "@ember/test-helpers", - "@glimmer/component", - "@glimmer/tracking", - "code-equality-assertions", - "ember-auto-import", - "ember-cli-dependency-checker", - "ember-cli-inject-live-reload", - "ember-load-initializers", - "ember-qunit", - "ember-resolver", - "ember-source", - "ember-source-channel-url", - "eslint-plugin-ember", - "loader.js", - "ember-addon", - "@ember/edition-utils", - "babel-plugin-ember-template-compilation", - "broccoli-persistent-filter", - "js-string-escape", - "@embroider/test-setup", - "ember-cli-clean-css", - "ember-styleguide", - "ember-template-lint", - "ember-try", - "eslint-plugin-qunit", - "@emmetio/abbreviation", - "@emmetio/css-abbreviation", - "snippets", - "coding", - "streams", - "finish", - "close", - "end", - "es-errors", - "safe-regex-test", - "entitify", - "entity", - "enum", - "enumeration", - "datatype", - "type", - "github-release-cli", - "yamlify-object", - "info", - "issues", - "reporting", - "diagnostics", - "array.prototype.flat", - "function.prototype.name", - "has", - "html-element-map", - "is-boolean-object", - "is-callable", - "is-number-object", - "is-string", - "is-subset", - "lodash.escape", - "object.values", - "rst-selector-parser", - "string.prototype.trim", - "shallow rendering", - "shallowRender", - "test utils", - "assertion helpers", - "airbnb-prop-types", - "object.fromentries", - "codependence", - "oxlint", - "pastoralist", - "check for es6", - "check for modules", - "es check", - "es matching", - "es version", - "ecmascript check", - "ecmascript matching", - "ecmascript version", - "js version", - "js version check", - "js version matching", - "test js version", - "test ecmascript version", - "has-bigints", - "intl-fallback-symbol", - "make-arrow-function", - "make-async-function", - "@ljharb/tsconfig", - "@types/array.prototype.flatmap", - "@types/call-bind", - "@types/foreach", - "@types/has-bigints", - "@types/has-symbols", - "@types/isarray", - "@types/make-arrow-function", - "@types/make-async-function", - "@types/make-generator-function", - "@types/object.assign", - "@types/reflect.ownkeys", - "@types/tape", - "reflect.ownkeys", - "symbol.prototype.description", - "well-known-symbols", - "fixture", - "fixtures", - "es6-symbol", - "esniff", - "next-tick", - "plain-promise", - "ecmascript5", - "ecmascript6", - "es5", - "extensions", - "ext", - "addons", - "extras", - "utilities", - "es5 shim", - "json3", - "broccoli-rollup", - "git-repo-version", - "broccoli-watchify", - "broccoli-uglify-js", - "promises-aplus-tests-phantom", - "babel6-plugin-strip-class-callcheck", - "babel-plugin-transform-es2015-constants", - "futures", - "promisify", - "promises-es6-tests", - "setPrototypeOf", - "set", - "__proto__", - "regular", - "expression", - "special", - "characters", - "bower-registry-client", - "commonjs-everywhere", - "@eslint/config-array", - "@eslint/config-helpers", - "@eslint/plugin-kit", - "@humanfs/node", - "@humanwhocodes/module-importer", - "@humanwhocodes/retry", - "esquery", - "file-entry-cache", - "imurmurhash", - "json-stable-stringify-without-jsonify", - "@trunkio/launcher", - "@types/esquery", - "eslint-plugin-expect-type", - "eslint-release", - "eslint-rule-extender", - "eslump", - "fs-teardown", - "metascraper", - "metascraper-description", - "metascraper-image", - "metascraper-logo", - "metascraper-logo-favicon", - "metascraper-title", - "node-polyfill-webpack-plugin", - "npm-license", - "yorkie", - "babel-tape-runner", - "eslint-find-rules", - "eslintconfig", - "airbnb", - "es2016", - "es2018", - "confusing-browser-globals", - "prettier-package-json", - "quality", - "linter", - "jslint", - "code style", - "strict", - "verify", - "hint", - "eslint config", - "eslint-config-xo-space", - "eslint-prettier", - "@rushstack/eslint-patch", - "JavaScript Standard Style", - "code checker", - "code linter", - "code standards", - "policy", - "standard style", - "style checker", - "style linter", - "@eslint/config-inspector", - "automd", - "eslint-typegen", - "obuild", - "@eslint/css", - "xoxo", - "hugs", - "kisses", - "happy", - "happiness", - "cabin", - "rules", - "@typescript/native-preview", - "eslint-import-context", - "is-bun-module", - "stable-hash-x", - "unrs-resolver", - "@webpack-contrib/defaults", - "commitlint-azure-pipelines-cli", - "eslint-friendly-formatter", - "enhance-visitors", - "espurify", - "micro-spelling-correcter", - "eslint-ava-rule-tester", - "eslint-rule-composer", - "ast-metadata-inferer", - "@tsconfig/node16", - "@types/caniuse-lite", - "@types/lodash.memoize", - "browserslist-config-erb", - "kangax", - "@vuepress/plugin-pwa", - "eslint4b", - "vue-eslint-editor", - "comment", - "directive", - "exported", - "eslint-env", - "eslint-enable", - "eslint-disable", - "eslint-disable-line", - "eslint-disable-next-line", - "@eslint-community/eslint-plugin-eslint-comments", - "@types/eslint-scope", - "@types/espree", - "@types/estraverse", - "eslint-config-not-an-aardvark", - "string-natural-compare", - "gitdown", - "eslint-config-canonical", - "flowtype", - "@html-eslint/eslint-plugin", - "@html-eslint/parser", - "markdown-link-check", - "@rtsao/scc", - "array-includes", - "array.prototype.findlastindex", - "doctrine", - "eslint-import-resolver-node", - "eslint-module-utils", - "object.groupby", - "string.prototype.trimend", - "@angular-eslint/template-parser", - "escope", - "fs-copy-file-sync", - "linklocal", - "lodash.isarray", - "npm-which", - "typescript-eslint-parser", - "export", - "@schemastore/package", - "babel-plugin-replace-ts-export-assignment", - "eslint-remote-tester-repositories", - "@es-joy/jsdoccomment", - "@es-joy/resolve.exports", - "are-docs-informative", - "object-deep-merge", - "parse-imports-exports", - "spdx-expression-parse", - "to-valid-identifier", - "@es-joy/escodegen", - "@es-joy/jsdoc-eslint-parser", - "@hkdobrev/run-if-changed", - "@types/spdx-expression-parse", - "babel-plugin-transform-import-meta", - "jsdoc-type-pratt-parser", - "json-schema-to-typescript", - "open-editor", - "replace", - "@ota-meshi/ast-token-store", - "diff-sequences", - "eslint-json-compat-utils", - "@changesets/changelog-github", - "@ota-meshi/eslint-plugin", - "@ota-meshi/site-kit-eslint-editor-vue", - "@types/natural-compare", - "env-cmd", - "eslint-plugin-eslint-rule-tester", - "eslint-plugin-json-schema-validator", - "eslint-plugin-node-dependencies", - "stylelint-config-recommended-vue", - "stylelint-config-standard-vue", - "stylelint-stylus", - "vite-plugin-eslint4b", - "jsonc", - "ast-types-flow", - "axobject-query", - "damerau-levenshtein", - "jsx-ast-utils", - "language-tags", - "string.prototype.includes", - "to-ast", - "eslint-config-eslint", - "eslint-plugin-es-x", - "ts-declaration-location", - "@types/globrex", - "ts-ignore-import", - "eslint-utils", - "prettier-linter-helpers", - "array.prototype.findlast", - "array.prototype.tosorted", - "es-iterator-helpers", - "string.prototype.repeat", - "@babel/plugin-syntax-do-expressions", - "@babel/plugin-syntax-function-bind", - "gfm-footnotes", - "ls-engines", - "hermes-parser", - "@types/estree-jsx", - "@tsconfig/strictest", - "refa", - "regexp-ast-analysis", - "scslre", - "@types/pako", - "eslint-plugin-pere", - "eslint-snapshot-rule-tester", - "mocha-chai-jest-snapshot", - "safe-regex", - "eslint-config-nodesecurity", - "nodesecurity", - "jsx-ast-utils-x", - "functional-red-black-tree", - "sonarjs", - "svelte-eslint-parser", - "@types/eslint-utils", - "@types/esutils", - "@types/less", - "@types/postcss-safe-parser", - "@types/stylus", - "svelte-i18n", - "sveltejs", - "eslint-plugin-import-x", - "clean-regexp", - "find-up-simple", - "regexp-tree", - "regjsparser", - "@lubien/fixture-beta-package", - "nano-spawn", - "node-style-text", - "unicorn", - "@veritem/eslint-config", - "bumpp", - "vitest eslint plugin", - "eslint plugin", - "xml-name-validator", - "@types/xml-name-validator", - "eslint-plugin-markdown-preferences", - "@types/babel__code-frame", - "importx", - "ink-testing-library", - "eslint-test", - "@types/esrecurse", - "esrecurse", - "eslint-plugin-requirejs", - "escomplex-js", - "everything.js", - "json-diff", - "karma-safaritechpreview-launcher", - "node-tick-processor", - "unicode-8.0.0", - "gulp-tag-version", - "ethereumjs-common", - "@ethereumjs/config-nyc", - "@ethereumjs/config-prettier", - "@ethereumjs/config-tsc", - "@ethereumjs/config-tslint", - "contributor", - "karma-tap", - "typestrict", - "transactions", - "ethereum-cryptography", - "rlp", - "@types/assert", - "@types/secp256k1", - "karma-typescript", - "os-tmpdir", - "es-lookup-scope", - "qs-iconv", - "eval", - "evaulate", - "from", - "pause-stream", - "stream-combiner", - "asynct", - "it-is", - "stream-spec", - "ubelt", - "flatmap", - "join", - "eventemitter", - "addEventListener", - "addListener", - "pub/sub", - "emits", - "on", - "publish", - "subscribe", - "EventEmitter", - "EventEmitter2", - "EventEmitter3", - "Events", - "reactor", - "eventEmitter", - "eventDispatcher", - "listeners", - "@sindresorhus/merge-streams", - "human-signals", - "strip-final-newline", - "yoctocolors", - "get-node", - "is-in-ci", - "is-running", - "log-process-errors", - "exec", - "subprocess", - "fork", - "execfile", - "bin", - "binaries", - "local", - "stdio", - "stderr", - "drain", - "flush", - "3584", - "@jest/expect-utils", - "@jest/get-type", - "eslint-plugin-mmkal", - "pkg-pr-new", - "type-check", - "merge-descriptors", - "pbkdf2-password", - "array-flatten", - "setprototypeof", - "automatically", - "autogenerate", - "autogenerator", - "autogenerated", - "express3", - "partials", - "express-unless", - "authn", - "authz", - "token", - "expressjs", - "helpers", - "hoare", - "cjs-mock", - "tRPC", - "RPC", - "express.js", - "code-generation", - "fully-typed", - "type-safe", - "typed-api", - "express-api", - "http-api", - "client-server", - "unit-testing", - "browser-client", - "web-development", - "web-api", - "@docusaurus/plugin-client-redirects", - "@docusaurus/preset-classic", - "sanitization", - "openapi3-ts", - "@express-zod-api/zod-plugin", - "@types/depd", - "@types/http-errors", - "@types/node-forge", - "camelize-ts", - "snakify-ts", - "dts-plugin", - "handler", - "documentation-tool", - "schema-validation", - "endpoint", - "openapi-specification", - "swagger-documentation", - "covert", - "assign-symbols", - "is-extendable", - "array-slice", - "benchmarked", - "for-own", - "kind-of", - "props", - "shallow", - "webpack-defaults", - "@types/yauzl", - "gulp-mustache", - "vinyl-transform", - "color-support", - "parse-node-version", - "console.log", - "timestamp", - "pure-rand", - "@fast-check/expect-type", - "@fast-check/poisoning", - "property-based testing", - "end-to-end testing", - "quickcheck", - "jscheck", - "jsverify", - "fuzzer", - "fuzz", - "@fast-csv/parse", - "@fast-csv/format", - "writer", - "csv writer", - "CSV", - "@nodelib/fs.stat", - "@nodelib/fs.walk", - "@nodelib/fs.macchiato", - "@types/merge2", - "@types/picomatch", - "bencho", - "eslint-config-mrmlnc", - "hereby", - "snap-shot-it", - "implementation", - "strnum", - "transformer", - "js2xml", - "json2xml", - "click", - "@fastify/ajv-compiler", - "@fastify/error", - "@fastify/fast-json-stringify-compiler", - "@fastify/proxy-addr", - "abstract-logging", - "avvio", - "fast-json-stringify", - "find-my-way", - "light-my-request", - "process-warning", - "secure-json-parse", - "toad-cache", - "@jsumners/line-reporter", - "ajv-i18n", - "ajv-merge-patch", - "autocannon", - "branch-comparer", - "fast-json-body", - "fluent-json-schema", - "h2url", - "markdownlint-cli2", - "@umijs/babel-preset-umi", - "@umijs/bundler-webpack", - "@umijs/case-sensitive-paths-webpack-plugin", - "@utoo/pack", - "@vercel/ncc", - "babel-plugin-styled-components", - "babel-plugin-transform-define", - "loader-runner", - "piscina", - "typescript-transform-paths", - "@types/loader-runner", - "@types/minimatch", - "array.prototype.foreach", - "array.prototype.join", - "array.prototype.map", - "array.prototype.push", - "array.prototype.slice", - "string.prototype.split", - "tap-parser", - "human", - "anything", - "protocol", - "fbjs-css-vars", - "setimmediate", - "@skypack/package-check", - "babel-plugin-minify-dead-code-elimination", - "in web", - "in javascript", - "in react", - "Plug & Play", - "web component", - "react components", - "ui component", - "advanced component", - "advanced feature", - "scanner", - "phonebook", - "voice", - "autofillotp", - "share", - "livelocationtracking", - "detectmylocation", - "colorpicker", - "wakelock", - "WhatsappShare", - "NetworkConnection", - "TextToSpeech", - "VoiceRecognition", - "SnapScanner", - "NetworkMonitor", - "View360", - "functional program", - "data management", - "@types/glob-to-regexp", - "dequal", - "glob-to-regexp", - "stub", - "detect-libc", - "fiber", - "thread", - "worker", - "art", - "banner", - "symbol", - "symbols", - "figure", - "fallback", - "filesaver", - "saveas", - "blob", - "@tokenizer/inflate", - "strtok3", - "token-types", - "uint8array-extras", - "@tokenizer/token", - "commonmark", - "noop-stream", - "magic", - "pic", - "picture", - "photo", - "video", - "exif", - "elf", - "macho", - "jpg", - "apng", - "gif", - "flif", - "xcf", - "cr2", - "cr3", - "orf", - "arw", - "dng", - "nef", - "rw2", - "tif", - "bmp", - "icns", - "jxr", - "psd", - "indd", - "rar", - "gz", - "7z", - "mp4", - "mid", - "mkv", - "webm", - "mov", - "avi", - "mpg", - "mp2", - "mp3", - "m4a", - "ogg", - "opus", - "flac", - "wav", - "amr", - "epub", - "mobi", - "rtf", - "woff", - "woff2", - "eot", - "ttf", - "otf", - "ttc", - "ico", - "flv", - "ps", - "xz", - "xpi", - "cab", - "deb", - "ar", - "rpm", - "Z", - "lz", - "cfb", - "mxf", - "mts", - "wasm", - "webassembly", - "blend", - "bpg", - "docx", - "pptx", - "3gp", - "j2c", - "jp2", - "jpm", - "jpx", - "mj2", - "aif", - "odt", - "ods", - "odp", - "heic", - "ics", - "pcap", - "dsf", - "lnk", - "voc", - "ac3", - "3g2", - "m4b", - "m4p", - "m4v", - "f4a", - "f4b", - "f4p", - "f4v", - "mie", - "qcp", - "asf", - "ogv", - "ogm", - "oga", - "spx", - "ogx", - "ape", - "wv", - "cur", - "nes", - "crx", - "ktx", - "dcm", - "mpc", - "arrow", - "shp", - "aac", - "mp1", - "it", - "s3m", - "xm", - "skp", - "eps", - "lzh", - "pgp", - "asar", - "chm", - "3mf", - "zst", - "jxl", - "vcf", - "jls", - "pst", - "dwg", - "parquet", - "arj", - "cpio", - "ace", - "avro", - "icc", - "fbx", - "vsdx", - "vtt", - "apk", - "drc", - "lz4", - "potx", - "xltx", - "dotx", - "xltm", - "ots", - "odg", - "otg", - "otp", - "ott", - "xlsm", - "docm", - "dotm", - "potm", - "pptm", - "jar", - "jmp", - "sav", - "ppsm", - "ppsx", - "reg", - "dat", - "size", - "readable", - "file system", - "locate-path", - "unicorn-magic", - "up", - "look-up", - "look", - "parent", - "walking", - "detect-file", - "resolve-dir", - "homedir-polyfill", - "@firebase/ai", - "@firebase/app", - "@firebase/auth", - "@firebase/util", - "@firebase/storage", - "@firebase/database", - "@firebase/analytics", - "@firebase/app-check", - "@firebase/app-types", - "@firebase/firestore", - "@firebase/functions", - "@firebase/messaging", - "@firebase/app-compat", - "@firebase/auth-compat", - "@firebase/performance", - "@firebase/data-connect", - "@firebase/installations", - "@firebase/remote-config", - "@firebase/storage-compat", - "@firebase/database-compat", - "@firebase/analytics-compat", - "@firebase/app-check-compat", - "@firebase/firestore-compat", - "@firebase/functions-compat", - "@firebase/messaging-compat", - "@firebase/performance-compat", - "@firebase/installations-compat", - "@firebase/remote-config-compat", - "Firebase", - "realtime", - "remote-config", - "@fastify/busboy", - "@firebase/database-types", - "farmhash-modern", - "google-auth-library", - "jwks-rsa", - "@firebase/api-documenter", - "@firebase/auth-types", - "@types/bcrypt", - "@types/firebase-token-generator", - "@types/request", - "@types/request-promise", - "firebase-token-generator", - "http-message-parser", - "admin", - "@apphosting/build", - "@apphosting/common", - "@electric-sql/pglite", - "@electric-sql/pglite-tools", - "@google-cloud/cloud-sql-connector", - "@google-cloud/pubsub", - "@modelcontextprotocol/sdk", - "async-lock", - "cjson", - "deep-equal-in-any-order", - "exegesis", - "exegesis-express", - "gaxios", - "libsodium-wrappers", - "lsofi", - "pg-gateway", - "pglite-2", - "proxy-agent", - "sql-formatter", - "stream-chain", - "stream-json", - "superstatic", - "triple-beam", - "universal-analytics", - "update-notifier-cjs", - "zod-to-json-schema", - "cdn", - "ssl", - "hosting", - "synchronization", - "alce", - "detect-newline", - "extend-object", - "@types/rimraf", - "matcher-collection", - "unflatten", - "nested", - "@types/acorn", - "rollup-plugin-livereload", - "rollup-plugin-serve", - "lightweight", - "byline", - "util-extend", - "markdox", - "deploy", - "deployment", - "commands", - "devops", - "ssh", - "tasks", - "sequential", - "remote", - "fabric", - "inference", - "wrapper", - "flowbite-datepicker", - "mini-svg-data-uri", - "@tailwindcss/cli", - "@tailwindcss/postcss", - "eslint-plugin-tailwindcss", - "flowbite-typography", - "prettier-plugin-tailwindcss", - "windicss", - "ui components", - "tailwind components", - "tailwind elements", - "tailwind library", - "tailwind sections", - "tailwind ui", - "tailwind angular", - "tailwind django", - "tailwind ruby on rails", - "tailwind flask", - "cjs", - "umd", - "ffmpeg", - "fbemitter", - "react-addons-test-utils", - "dispatcher", - "lolex", - "redirect", - "location", - "@types/is-callable", - "cliff", - "shush", - "flatiron", - "nssocket", - "forever-monitor", - "getopts", - "cli-testlab", - "fault tolerant", - "sysadmin", - "node-abort-controller", - "jest-circus", - "karton", - "typecheck", - "@types/babel-code-frame", - "increment", - "asynckit", - "combined-stream", - "es-set-tostringtag", - "browserify-istanbul", - "fake", - "far", - "is-node-modern", - "js-randomness-predictor", - "obake", - "dezalgo", - "@paralleldrive/cuid2", - "formdata-polyfill", - "prettier-plugin-pkgjson", - "@tunnckocore/prettier-config", - "www", - "ulpoad", - "tiny-warning", - "just-debounce-it", - "tsdx", - "react hooks", - "render props", - "higher order component", - "hoc", - "conditional", - "friendly", - "errors", - "check-dts", - "front matter", - "meta data", - "universalify", - "klaw", - "read-dir-files", - "extra", - "mkdir", - "mkdirs", - "create", - "output", - "release-assist", - "any-promise", - "thenify-all", - "mac", - "ie", - "@monaco-editor/loader", - "@sapphire/stopwatch", - "@sapphire/utilities", - "@snippetors/vuepress-plugin-tabs", - "@vuepress/plugin-google-analytics", - "monaco-editor", - "vuepress-plugin-google-adsense2", - "bitap", - "socket", - "sublime", - "sublime text", - "globule", - "grunt-benchmark", - "yeoman-test", - "yeoman-assert", - "insight", - "restangular", - "ui-router", - "foundation", - "traceur", - "haml", - "git-config", - "find-git-root", - "@merkle-open/eslint-config", - "nitro", - "modular", - "pool", - "pooling", - "inject-markdown", - "ts2mjs", - "iterator", - "iterators", - "iterable", - "reduce", - "@werkzeugkiste/eslint-config", - "@werkzeugkiste/release-config", - "install-deps-postmerge", - "semantic-release-conventional-commits", - "@cfware/lint", - "@cfware/nyc", - "if-ver", - "libtap", - "finder", - "free", - "available", - "connection", - "tcp", - "scan", - "preferred", - "chosen", - "std", - "concat", - "@sec-ant/readable-stream", - "onetime", - "precise-now", - "get", - "consume", - "readablestream", - "resolve-pkg-maps", - "tsconfig", - "tsconfig.json", - "eslint-config-bevry", - "make-deno-edition", - "deno", - "deno-edition", - "deno-entry", - "denoland", - "es2022", - "export-default", - "ifconfig", - "ipconfig", - "mac-address", - "typed", - "email-addresses", - "dir-compare", - "eslint-config-tschaub", - "lodash.clone", - "manage-path", - "opt-cli", - "spawn-command", - "chai-string", - "eslint-config-kentcdodds", - "travis-after-all", - "hook", - "@primer/octicons", - "@primer/primitives", - "@rollup/plugin-html", - "minipass", - "path-scurry", - "dirname", - "wildcard", - "min-document", - "is-identifier", - "identifiers", - "environments", - "glob-stream", - "all", - "fnmatch", - "globbing", - "globs", - "multiple", - "paths", - "wildcards", - "gitignore", - "array-series", - "array-parallel", - "magick", - "graphicsmagick", - "gfsl", - "eslint-config-standard-with-typescript", - "msmc", - "mc", - "minecraft", - "launcher", - "java", - "java edition", - "arm", - "arm-support", - "forge", - "instances-management", - "instances", - "mod", - "mods", - "mc-mod", - "mc-mods", - "modpack", - "modpack-api", - "extendable", - "nbt", - "jarmods", - "skin fix", - "ky", - "eslint-plugin-no-floating-promise", - "varlock", - "google spreadsheets", - "google sheets", - "spreadsheet", - "spreadsheets", - "sheets", - "gdata", - "drive", - "google docs", - "google drive", - "googleapis-common", - "@types/execa", - "@types/mv", - "@types/ncp", - "@types/nunjucks", - "@types/url-template", - "@types/yargs-parser", - "js-green-licenses", - "jsdoc-fresh", - "jsdoc-region-tag", - "linkinator", - "pdfmake", - "google apis", - "client library", - "@sindresorhus/is", - "byte-counter", - "cacheable-lookup", - "cacheable-request", - "decompress-response", - "form-data-encoder", - "lowercase-keys", - "p-cancelable", - "responselike", - "@hapi/bourne", - "@types/pem", - "chunk-data", - "create-cert", - "create-test-server", - "pem", - "slow-stream", - "then-busboy", - "uri", - "curl", - "wget", - "zstd", - "zstandard", - "requests", - "human-friendly", - "sassdoc", - "gulp-cli", - "sass-color-helpers", - "govuk-prototype-kit", - "govuk", - "reading", - "retries", - "handling", - "EMFILE", - "EAGAIN", - "EINVAL", - "EPERM", - "EACCESS", - "graphql-js", - "test-all-versions", - "@graphql-tools/schema", - "section-matter", - "strip-bom-string", - "ansi-green", - "delimiter-regex", - "assemble", - "coffee", - "extracting", - "front", - "frontmatter", - "matter", - "site", - "@mapbox/node-pre-gyp", - "@types/bytebuffer", - "electron-mocha", - "google-protobuf", - "poisson-process", - "grunt-legacy-log", - "grunt-legacy-util", - "grunt-known-options", - "difflet", - "temporary", - "eslint-config-grunt", - "uglify", - "init", - "make", - "gruntplugin", - "browserify-incremental", - "liftup", - "pad-stream", - "grunt-nodemon", - "simultaneous", - "perf", - "faster", - "bin-version-check", - "compass", - "connect-livereload", - "file-sync-cmp", - "csslint", - "maxmin", - "cssmin", - "min", - "jpeg", - "hooker", - "less-plugin-clean-css", - "nodeunit-x", - "uri-path", - "grunt-coveralls", - "grunt-istanbul", - "grunt-github-remove-all-releases", - "gh", - "release", - "releases", - "report", - "vow", - "@commitlint/travis-cli", - "TDD", - "grunt-continue", - "grunt-env", - "grunt-istanbul-coverage", - "grunt-cafe-mocha", - "newer", - "stack-parser", - "grunt-release", - "grunt-templates-dylang", - "notify", - "mountain lion", - "mavericks", - "linux", - "notify-send", - "preprocess", - "libsass", - "requestretry", - "sauce-tunnel", - "grunt-sauce-tunnel", - "yui", - "spritesheet-templates", - "spritesmith", - "url2", - "eslint-config-twolfson", - "foundry", - "foundry-release-git", - "foundry-release-npm", - "get-pixels", - "gmsmith", - "sprite", - "spritesheet", - "grunt-mocha-cli", - "usemin", - "@npm/types", - "@types/json5", - "@types/write-file-atomic", - "inline-fixtures", - "@guarapi/eslint-config-guarapi", - "@swc/register", - "glob-watcher", - "undertaker", - "pipeline", - "series", - "streaming", - "gulp-footer", - "html2js", - "templatecache", - "gulp-symdest", - "atom", - "atom-shell", - "prefixes", - "postcss-runner", - "lodash.chunk", - "concurrent-transform", - "@azure/storage-blob", - "delayed-stream", - "streamifier", - "rewriting", - "transformation", - "codegen", - "desugaring", - "bom", - "mark", - "utf-8", - "add", - "prepend", - "gulp-codecov.io", - "bump-regex", - "plugin-log", - "version", - "versioning", - "gulp-version", - "gulp-plugin", - "cache-swap", - "object.pick", - "change-file-extension", - "changed", - "modified", - "modification", - "updated", - "mtime", - "stat", - "cached", - "passthrough", - "minify-css", - "jshint-reporter-jscs", - "parse-import", - "rework", - "rework-import", - "rework-plugin-url", - "inline", - "slush", - "dest", - "conflict", - "webserver", - "csscomb", - "rcloader", - "csslint-stylish", - "node-version-check", - "from2-string", - "@shinnn/eslint-config-node", - "warnings", - "flatnest", - "balanced-match", - "include", - "streamfilter", - "to-absolute-glob", - "divide", - "separate", - "relative", - "pretty-remarkable", - "sections", - "prettify", - "jsftp", - "jsftp-mkdirp", - "ftp-test-server", - "gift", - "wrap-promise", - "octonode", - "read-remove-file", - "@shinnn/eslint-config-node-legacy", - "branch", - "any-shell-escape", - "strip-bom-stream", - "gulpgit", - "stream-to-array", - "nid", - "gulp-declare", - "gulp-define-module", - "gulp-wrap", - "nsdeclare", - "eventstream", - "istanbul-coveralls", - "htm", - "htmlmin", - "gulp-spawn", - "gulp-svg2ttf", - "gulp-ttf2eot", - "gulp-ttf2woff", - "gulp-ttf2woff2", - "gulp-svgicons2svgfont", - "metapak", - "streamtest", - "@types/gulp", - "metapak-nfroidure", - "gulp-match", - "ternary-stream", - "stream-exhaust", - "if", - "ternary", - "exclude", - "gulp-gm", - "imagemin-webp", - "group-array", - "strip-color", - "@commitlint/config-angular", - "inject", - "stylesheets", - "webcomponents", - "scripts", - "index", - "inline-css", - "lodash.groupby", - "istanbul-threshold-checker", - "isparta", - "unit test", - "jasmine-terminal-reporter", - "gulplog", - "has-gulplog", - "array-unique", - "capture-stream", - "plugins", - "vinyl-bufferstream", - "stream-combiner2", - "kew", - "bufferstreams", - "ng-annotate", - "develop", - "restart", - "windows notification", - "mac notification", - "notify-osd", - "easy-transform-stream", - "ENV", - "echo", - "ifdef", - "ifndef", - "eslint-watch", - "views", - "precompile", - "src", - "replacestream", - "modify-filename", - "rev-hash", - "rev-path", - "sort-keys", - "vinyl-file", - "rev", - "revving", - "revision", - "expire", - "assets", - "each-async", - "md5-hex", - "ruby", - "source-maps", - "sourcemaps", - "sftp", - "@types/fancy-log", - "@types/lodash.template", - "brotli-size", - "measure", - "@gulp-sourcemaps/identity-map", - "@gulp-sourcemaps/map-sources", - "debug-fabulous", - "hook-std", - "mississippi", - "source maps", - "strip-debug", - "accord", - "looks-same", - "svg2png", - "stack", - "vector", - "rwd", - "retina", - "rendering", - "@types/through", - "incremental", - "@types/ansi-colors", - "gulp-diff", - "@types/plugin-error", - "incremental compilation", - "array-each", - "make-error-cause", - "tape-catch", - "source-list-map", - "eslint-plugin-no-use-extend-native", - "uncss", - "useref", - "async-once", - "mock-gulp-dest", - "array-differ", - "array-uniq", - "beeper", - "lodash._reescape", - "lodash._reevaluate", - "lodash._reinterpolate", - "lodash.templatesettings", - "yazl", - "yazul", - "vinyl-zip", - "anymatch", - "proxy-middleware", - "vinyl-assign", - "pngparse", - "phantomjssmith", - "zlib", - "compressed", - "catering", - "deglob", - "find-file-up", - "find-githost", - "remark-autolink-references", - "remark-common-changelog", - "remark-lint-blockquote-indentation", - "remark-lint-checkbox-character-style", - "remark-lint-checkbox-content-indent", - "remark-lint-code-block-style", - "remark-lint-definition-case", - "remark-lint-emphasis-marker", - "remark-lint-fenced-code-marker", - "remark-lint-final-newline", - "remark-lint-hard-break-spaces", - "remark-lint-list-item-bullet-indent", - "remark-lint-list-item-indent", - "remark-lint-no-auto-link-without-protocol", - "remark-lint-no-blockquote-without-marker", - "remark-lint-no-duplicate-definitions", - "remark-lint-no-heading-content-indent", - "remark-lint-no-inline-padding", - "remark-lint-no-literal-urls", - "remark-lint-no-unused-definitions", - "remark-lint-rule-style", - "remark-lint-strong-marker", - "remark-lint-table-cell-padding", - "remark-lint-table-pipes", - "remark-lint-unordered-list-marker-style", - "remark-validate-links", - "unified-engine", - "vfile-reporter-shiny", - "git-pull-or-clone", - "fixer", - "changelogplease", - "git-tags", - "grunt-contrib-qunit", - "grunt-string-replace", - "jquery-hammerjs", - "gestures", - "neo-async", - "chai-diff", - "grunt-contrib-requirejs", - "ammo", - "shot", - "topo", - "heavy", - "mimos", - "bounce", - "catbox", - "podium", - "somever", - "subtext", - "teamwork", - "statehood", - "catbox-memory", - "wreck", - "vision", - "elements", - "flag", - "getopt", - "@types/core-js", - "get-own-property-symbols", - "typeof", - "sham", - "function-bind", - "@types/function-bind", - "@types/mock-property", - "hasOwnProperty", - "hasOwn", - "has-own", - "own", - "in", - "@ungap/structured-clone", - "hast-util-from-parse5", - "unist-util-position", - "web-namespaces", - "zwitch", - "@types/ungap__structured-clone", - "remark-api", - "hast-util", - "hast", - "unist", - "raw", - "aria-attributes", - "html-tag-names", - "safe", - "bcp-47-match", - "devlop", - "direction", - "selectall", - "estree-util-attach-comments", - "estree-util-is-identifier-name", - "mdast-util-mdx-expression", - "mdast-util-mdx-jsx", - "mdast-util-mdxjs-esm", - "esast-util-from-js", - "ccount", - "tostring", - "sval", - "solid", - "unist-util-find-after", - "estree-util-build-jsx", - "svg-tag-names", - "hyperscript", - "vdom", - "virtual", - "regexgen", - "sort-object", - "content-security-policy", - "cross-origin-embedder-policy", - "cross-origin-opener-policy", - "cross-origin-resource-policy", - "origin-agent-cluster", - "referrer-policy", - "strict-transport-security", - "x-content-type-options", - "x-dns-prefetch-control", - "x-download-options", - "x-frame-options", - "x-permitted-cross-domain-policies", - "x-powered-by", - "x-xss-protection", - "@vue/compiler-dom", - "abbrev", - "fast-archy", - "fast-text-table", - "hexo-cli", - "hexo-front-matter", - "hexo-fs", - "hexo-i18n", - "hexo-log", - "hexo-util", - "js-yaml-js-types", - "moize", - "titlecase", - "warehouse", - "@types/abbrev", - "0x", - "eslint-config-hexo", - "hexo-renderer-marked", - "util-deprecate", - "grunt-gh-pages", - "scrawl", - "transducers-js", - "tiny-worker", - "wcag-contrast", - "css-color-names", - "deep-freeze-es6", - "dependency-resolver", - "step", - "hap-nodejs", - "@types/source-map-support", - "eslint-plugin-import-newlines", - "@hono/eslint-config", - "bun-types", - "editorconfig-checker", - "oxc-parser", - "vite-plugin-fastly-js-compute", - "wrangler", - "application", - "cloudflare", - "workers", - "fastly", - "compute", - "workshopper-adventure", - "workshop", - "adventure", - "tutorial", - "tutor", - "@size-limit/preset-big-lib", - "@types/jscodeshift", - "pojo", - "attribute", - "element", - "@exodus/bytes", - "@types/he", - "flowgen", - "html entities", - "html entities encode", - "html entities decode", - "entities encode", - "entities decode", - "ascjs", - "unescape", - "posthtml-webp", - "unescape-unicode", - "relateurl", - "compressor", - "packer", - "uglifier", - "alpinejs", - "commitlint-config-non-conventional", - "rollup-plugin-polyfill-node", - "tags", - "void", - "self-closing", - "@types/jasmine", - "@bubkoo/tsconfig", - "@bubkoo/eslint-config", - "@bubkoo/rollup-config", - "@bubkoo/commitlint-config", - "@bubkoo/semantic-release-config", - "screenshot", - "capture", - "@selderee/plugin-htmlparser2", - "selderee", - "mail", - "plain", - "@html-validate/stylish", - "@sidvind/better-ajv-errors", - "@types/html-minifier-terser", - "pug-loader", - "webpack-recompilation-simulator", - "@types/relateurl", - "bunchee", - "eslint-plugin-unused-imports", - "srcset", - "posthtml-plugin", - "postproccessor", - "rss", - "toidentifier", - "requires-port", - "sse", - "agent-base", - "agent", - "@types/is-glob", - "mockttp", - "next.js", - "union", - "corser", - "secure-compare", - "eol", - "eslint-config-populist", - "https-server", - "@types/should", - "@types/eslint__js", - "status", - "@types/markdown-table", - "HttpStatus", - "httpclient", - "mediation", - "@types/async-retry", - "post", - "put", - "duplex", - "eslint-config-sanity", - "hyphenate", - "singular", - "plural", - "camelize", - "dasherize", - "demodulize", - "ordinalize", - "uncountable", - "singularize", - "titleize", - "tableize", - "classify", - "foreign_key", - "@messageformat/core", - "fast-printf", - "make-plural", - "math-interval-parser", - "l10n", - "@arktype/attest", - "gh-release", - "i18next-browser-languagedetector", - "i18next-fs-backend", - "i18next-http-backend", - "i18next-localstorage-cache", - "i18next-sprintf-postprocessor", - "internationalization", - "translation", - "localization", - "globalization", - "gettext", - "gridly", - "safer-buffer", - "errto", - "iconv", - "unorm", - "bench-node", - "charset", - "icu", - "harmony-reflect", - "proxies", - "identity", - "eslint-config-ostai", - "pre-suf", - "spawn-sync", - ".gitignore", - "manager", - "asterisks", - "regular-expression", - "dimensions", - "resolution", - "heif", - "tga", - "tiff", - "ow", - "p-pipe", - "image-dimensions", - "is-png", - "pngquant-bin", - "imageminplugin", - "pngquant", - "utf7", - "reader", - "cpx2", - "deep-freeze", - "import-size", - "seamless-immutable", - "type-plus", - "mutable", - "copy-on-write", - "@types/invariant", - "immutability", - "lazy", - "stateless", - "bypass", - "prefer", - "metacom", - "metaconfiguration", - "metalog", - "metaschema", - "metautil", - "metavm", - "metawatch", - "eslint-config-metarhia", - "isolation", - "enterprise", - "scalable", - "soa", - "stateful", - "routing", - "cluster", - "interactive", - "align", - "every", - "inferno-shared", - "inferno-utils", - "user interfaces", - "renderToString", - "inflections", - "inflection-js", - "humanize", - "capitalize", - "inheritance", - "klass", - "oop", - "object-oriented", - "@alcalzone/ansi-tokenize", - "auto-bind", - "patch-console", - "terminal-size", - "yoga-layout", - "@types/react-reconciler", - "@types/scheduler", - "@types/signal-exit", - "@vdemedes/prettier-config", - "eslint-config-xo-react", - "react-devtools-core", - "print", - "inline-style", - "inno", - "innosetup", - "run-async", - "fwk", - "instagram", - "ig", - "driver", - "reify", - "exports", - "packaging", - "remark-code-import", - "coffee.md", - "litcoffee", - "yml", - "babel-plugin-transform-es3-member-expression-literals", - "babel-plugin-transform-es3-property-literals", - "babel-preset-es2015-rollup", - "cldr-cal-buddhist-full", - "cldr-cal-chinese-full", - "cldr-cal-coptic-full", - "cldr-cal-dangi-full", - "cldr-cal-ethiopic-full", - "cldr-cal-hebrew-full", - "cldr-cal-indian-full", - "cldr-cal-islamic-full", - "cldr-cal-japanese-full", - "cldr-cal-persian-full", - "cldr-cal-roc-full", - "cldr-core", - "cldr-dates-full", - "cldr-numbers-full", - "estraverse-fb", - "grunt-curl", - "grunt-zip", - "rollup-plugin-memory", - "ecma402", - "@vue/tsconfig", - "flag-icons", - "google-closure-library", - "grunt-replace", - "prettier-eslint", - "international", - "country", - "dial code", - "telephone", - "phone", - "@inversifyjs/common", - "@inversifyjs/container", - "@inversifyjs/core", - "dependency inversion", - "inversion of control container", - "ioc", - "leek", - "ssh-config", - "elementtree", - "@ionic/discover", - "@ionic/utils-fs", - "superagent-proxy", - "@ionic/utils-array", - "@ionic/utils-stream", - "@ionic/cli-framework", - "@ionic/utils-network", - "@ionic/utils-process", - "@ionic/utils-terminal", - "@ionic/utils-subprocess", - "@ionic/cli-framework-prompts", - "@types/diff", - "@types/open", - "@types/split2", - "@types/os-name", - "@types/elementtree", - "ionic framework", - "ionicframework", - "hybrid", - "@types/svgo", - "jest-stencil-runner", - "icon pack", - "custom element", - "@ioredis/commands", - "cluster-key-slot", - "denque", - "lodash.isarguments", - "redis-errors", - "redis-parser", - "standard-as-callback", - "@ioredis/interface-generator", - "@types/lodash.defaults", - "@types/lodash.isarguments", - "@types/redis-errors", - "sentinel", - "pipelining", - "irc-colors", - "node-icu-charset-detector", - "ansi-color", - "is-extglob", - "braces", - "extglob", - "globstar", - "global-directory", - "globally", - "installed", - "locally", - "vanilla", - "pure", - "is-object", - "kind", - "custom element name", - "writable", - "is-inside-container", - "esmock", - "wsl", - "subsystem", - "kindof", - "lintspaces-cli", - "code coverage", - "JS code coverage", - "JS coverage", - "js-calendar", - "v-click-outside-x", - "autoprefixer-loader", - "babel-plugin-transform-es5-property-mutators", - "compression-webpack-plugin", - "vue-html-loader", - "character-parser", - "constantinople", - "jstransformer", - "transformers", - "with", - "browserify-middleware", - "code-mirror", - "github-basic", - "handle", - "highlight-codemirror", - "inconsolata", - "jade-code-mirror", - "jade-highlighter", - "jstransformer-cdata", - "jstransformer-coffee-script", - "jstransformer-less", - "jstransformer-marked", - "jstransformer-stylus", - "jstransformer-verbatim", - "less-file", - "lsr", - "pull-request", - "stop", - "filelist", - "rake", - "video-worker", - "babel-plugin-annotate-pure-calls", - "browserslist-config-nk", - "eslint-config-nk", - "json-file", - "prettier-config-nk", - "parallax", - "youtube", - "vimeo", - "@jasminejs/reporters", - "eslint-plugin-jasmine", - "css-url-embed", - "walkdir", - "jasmine-reporters", - "jasmine-growl-reporter", - "cssfontparser", - "moo-color", - "babel-plugin-version", - "@jest/diff-sequences", - "@jest/environment", - "@jest/environment-jsdom-abstract", - "@jest/fake-timers", - "jest-serializer-ansi-escapes", - "matchers", - "extended", - "@types/escape-html", - "@types/jump.js", - "@types/randomcolor", - "eslint-webpack-plugin", - "jump.js", - "randomcolor", - "web-vitals", - "libxmljs2", - "plugnplay", - "pnp", - "babel-plugin-add-import-extension", - "@types/merge-stream", - "jest-leak-detector", - "worker-farm", - "@jimp/core", - "@jimp/diff", - "@jimp/js-bmp", - "@jimp/js-gif", - "@jimp/js-jpeg", - "@jimp/js-png", - "@jimp/js-tiff", - "@jimp/plugin-blit", - "@jimp/plugin-blur", - "@jimp/plugin-circle", - "@jimp/plugin-color", - "@jimp/plugin-contain", - "@jimp/plugin-cover", - "@jimp/plugin-crop", - "@jimp/plugin-displace", - "@jimp/plugin-dither", - "@jimp/plugin-fisheye", - "@jimp/plugin-flip", - "@jimp/plugin-hash", - "@jimp/plugin-mask", - "@jimp/plugin-print", - "@jimp/plugin-quantize", - "@jimp/plugin-resize", - "@jimp/plugin-rotate", - "@jimp/plugin-threshold", - "@jimp/types", - "@jimp/utils", - "@jimp/config-eslint", - "@jimp/config-typescript", - "@jimp/config-vitest", - "@jimp/test-utils", - "node-self", - "vite-plugin-node-polyfills", - "image processing", - "image manipulation", - "resize", - "@babel/helper-simple-access", - "@rspack/cli", - "@rspack/core", - "@types/babel__helper-plugin-utils", - "@types/babel__template", - "@types/babel__traverse", - "babel-plugin-parameter-decorator", - "destr", - "nano-jsx", - "preact-render-to-string", - "solid-js", - "wysiwyg editor", - "wysiwyg html editor", - "rich editor", - "rich text editor", - "contenteditable", - "vanillajs", - "wysisyg", - "rte", - "firmata", - "temporal", - "nanotimer", - "browser-serialport", - "grunt-jsbeautifier", - "0A02", - "0A21", - "16x2 LCD", - "20x4 LCD", - "2D120X", - "2Y0A02", - "2Y0A21", - "74HC595", - "ADXL335", - "ADXL345", - "ALS-PT19", - "ALSPT19", - "ANALOG", - "arduino", - "Ardumoto", - "AT42QT1070", - "BLINKM", - "BMP180", - "Continuous Rotation", - "DEFAULT", - "Diffused LED", - "DS18B20", - "Edison Arduino Block", - "Edison GPIO Block", - "Edison I2C Block", - "Edison PWM Block", - "edison", - "ESPLORA", - "EV3", - "galileo-io", - "galileo", - "GP2D120XJ00F", - "GP2Y0A02YK0F", - "GP2Y0A21YK", - "GP2Y0A41SK0F", - "GY-521", - "GY521", - "HD44780", - "High Torque", - "Hitec HS-35HD", - "Hitec HS-422", - "Hitec HS-425BB", - "Hitec HS-625MG", - "Hitec HS-646WP", - "Hitec HS-755HB", - "Hitec HS-805BB", - "Hitec HS-85MG", - "HMC5883L", - "HMC6352", - "Hobby Motor", - "HRLV-MaxSonar-EZ0", - "HT16K33", - "HTU21D", - "i2c", - "Infrared Proximity Sensor", - "Infrared Sensor", - "intel edison", - "intel galileo", - "ISL29125", - "JHD1313M1", - "Joystick", - "LCD1602", - "LCD2004", - "LCM1602", - "LED", - "LIDAR-Lite v2", - "Ludus Protoshield Wireless", - "Ludus Protoshield", - "LV-MaxSonar-EZ0", - "LV-MaxSonar-EZ3", - "MCP23008", - "MCP23017", - "MCP9808", - "Metal Gear", - "MJKDZ", - "MMA7361", - "MMA7660", - "MMA8462Q", - "MPL115A2", - "MPL3115A2", - "MPR121", - "MPR121QR2", - "MPU-6050", - "MPU6050", - "MUXSHIELD2", - "NXT", - "OA41SK", - "PARALLEL", - "PCA9685", - "pcduino", - "PCF8574", - "PCF8574A", - "PCF8574AT", - "PCF8574T", - "PCF8575", - "PCF8591", - "photon", - "PIR Motion Sensor", - "QTOUCH", - "raspberry pi", - "raspberrypi", - "raspi-io", - "RedBoard", - "RGB LED", - "robot", - "robotics", - "rpi", - "serial", - "Servo", - "Shift Register 8-Bit SN74HC595", - "Shift Register", - "SI7020", - "spark core", - "spark-io", - "spark", - "SparkFun Essential Sensor Kit", - "SparkFun Sensor Kit", - "Speed controller", - "Temperature", - "tessel 2", - "Thumb Joystick", - "TINKERKIT", - "TMP36", - "TSL2561", - "Ultrasonic Range Finder", - "usb", - "VKEY", - "Weather Shield Arduino", - "Weather Shield Photon", - "@hapi/address", - "@hapi/formula", - "@hapi/pinpoint", - "@hapi/tlds", - "recoil", - "grunt-html", - "commitplease", - "grunt-bowercopy", - "grunt-git-authors", - "grunt-compare-size", - "jquery-test-runner", - "eslint-config-jquery", - "config-chain", - "beautifier", - "code-quality", - "grunt-exec", - "gzip-js", - "amd", - "rollup-plugin-node-polyfills", - "pyyaml", - "knifecycle", - "package-directory", - "yerror", - "architecture", - "gitignore-to-glob", - "@jscpd/badge-reporter", - "@jscpd/core", - "@jscpd/finder", - "@jscpd/tokenizer", - "@jscpd/html-reporter", - "jscpd-sarif-reporter", - "cst", - "jscs-jsdoc", - "jscs-preset-wikimedia", - "reserved-words", - "to-double-quotes", - "to-single-quotes", - "vow-fs", - "unicode-7.0.0", - "unit-coverage", - "@jsdoc/salty", - "catharsis", - "js2xmlparser", - "requizzle", - "current-module-paths", - "object-to-spawn-args", - "config-master", - "@acemir/cssom", - "@asamuzakjp/dom-selector", - "@bramus/specificity", - "data-urls", - "decimal.js", - "saxes", - "symbol-tree", - "w3c-xmlserializer", - "webidl-conversions", - "whatwg-url", - "mocha-sugar-free", - "webidl2", - "webidl2js", - "browser-request", - "cssom", - "nwmatcher", - "selenium-standalone", - "unicode-13.0.0", - "results-interpreter", - "unicode-5.2.0", - "unicode-11.0.0", - "stylish", - "deeks", - "doc-path", - "to", - "json2csv", - "csv2json", - "csv-2-json", - "milliparsec", - "sort-on", - "prototyping", - "dummy", - "@types/object-keys", - "deterministic", - "stable", - "circular", - "unicode-10.0.0", - "@stryker-mutator/mocha-runner", - "json-metaschema", - "jsonparse", - "trees", - "jws", - "lodash.once", - "lodash.includes", - "lodash.isnumber", - "lodash.isboolean", - "lodash.isinteger", - "@jspm/generator", - "@jspm/plugin-rollup", - "amaro", - "states", - "lie", - "jszip-utils", - "package-json-versionify", - "inflate", - "qjobs", - "dom-serialize", - "timer-shim", - "karma-junit-reporter", - "karma-script-launcher", - "spectacular", - "execution", - "hat", - "os-shim", - "karma-plugin", - "karma-preprocessor", - "browserify-tool", - "browserstack-local", - "karma-launcher", - "browser-stack", - "chrome", - "ibrik", - "karma-coffee-preprocessor", - "karma-requirejs", - "karma-reporter", - "Safari", - "Safari Tech Preview", - "SafariTechPreview", - "IE", - "Chrome", - "Chrome Canary", - "Chrome Headless", - "Chromium", - "Firefox", - "Opera", - "edge-launcher", - "chai-fs", - "os-homedir", - "firefox", - "karma-adapter", - "karma-rollup", - "safari", - "global-agent", - "@types/global-agent", - "sauce", - "labs", - "karma-brief-reporter", - "rollup-sourcemap-path-transform", - "keyboard", - "keyboardevent", - "keydown", - "keyup", - "metakey", - "keyname", - "@keyv/serialize", - "lru.min", - "timekeeper", - "@keyv/compress-gzip", - "@keyv/sqlite", - "@keyv/test-suite", - "@keyv/mongo", - "@keyv/compress-brotli", - "@keyv/compress-lz4", - "@keyv/memcache", - "key-value", - "adapter", - "memory", - "lru", - "tarn", - "escalade", - "pg-connection-string", - "tedious", - "oracledb", - "better-sqlite3", - "pg-query-stream", - "chai-subset-in-order", - "@tsconfig/recommended", - "toxiproxy-node-client", - "sql", - "postgres", - "cockroachdb", - "querybuilder", - "formatly", - "oxc-resolver", - "smol-toml", - "codeclimate-types", - "analysis", - "analyze", - "dead code", - "duplicate", - "entropy", - "maintenance", - "members", - "missing", - "monorepo", - "namespace", - "unreferenced", - "unresolved", - "workspace", - "lodash.sortby", - "explorer", - "opera", - "samsung-internet", - "uc-browser", - "stream-counter", - "delegates", - "http-assert", - "gen-esm-wrapper", - "@types/co-body", - "co-body", - "@koa/router", - "@types/koa__router", - "urlencoded", - "body", - "copy-to", - "bodyParser", - "compose", - "humanize-number", - "passthrough-counter", - "koa-compress", - "koa-route", - "mount", - "mounting", - "@ladjs/env", - "route", - "koa-send", - "sendfile", - "reds", - "node-redis-warlock", - "bossy", - "eslint-config-hapi", - "eslint-plugin-hapi", - "find-rc", - "will-call", - "cpr", - "lab-event-reporter", - "semver-regex", - "latest", - "package.json", - "current", - "autodoc", - "deft", - "jasmine-async", - "race.js", - "string-table", - "happen", - "leafdoc", - "bundlemon", - "git-rev-sync", - "karma-expect", - "prosthetic-hand", - "eslint-config-mourner", - "rollup-plugin-git-version", - "@mapbox/eslint-plugin-script-tags", - "gis", - "left", - "padding", - "repeat", - "numbers", - "aproba", - "cmd-shim", - "p-reduce", - "byte-size", - "write-pkg", - "wide-align", - "has-unicode", - "p-waterfall", - "libnpmaccess", - "p-map-series", - "set-blocking", - "@lerna/create", - "libnpmpublish", - "read-cmd-shim", - "load-json-file", - "init-package-json", - "make-fetch-happen", - "conventional-changelog-core", - "validate-npm-package-license", - "conventional-recommended-bump", - "conventional-changelog-angular", - "@octokit/plugin-enterprise-rest", - "multi-package", - "copy-anything", - "benny", - "bootstrap-less-port", - "html-template-tag", - "jit-grunt", - "less-plugin-autoprefix", - "mocha-teamcity-reporter", - "phin", - "read-glob", - "compile less", - "css nesting", - "css variable", - "gradients css", - "gradients css3", - "less compiler", - "less css", - "less mixins", - "less.js", - "lesscss", - "nested css", - "bootstrap css", - "bootstrap less", - "variables in css", - "css less", - "less-plugin-glob", - "browser-level", - "classic-level", - "abstract-level", - "airtap-playwright", - "@voxpelli/tsconfig", - "leveldb", - "napi-macros", - "abstract-leveldown", - "du", - "async-each", - "mkfiletree", - "readfiletree", - "prebuildify-ci", - "prebuildify-cross", - "level-concat-iterator", - "level-errors", - "level-supports", - "queue-microtask", - "deferred-leveldown", - "level-iterator-stream", - "memdown", - "trickle", - "airtap-sauce", - "run-parallel", - "encoding-down", - "simple-concat", - "fast-levenshtein", - "ld", - "levdist", - "levenshtein", - "levenshtein-component", - "levenshtein-edit-distance", - "talisman", - "distance", - "algorithm", - "comparison", - "edit", - "matching", - "binary-extensions", - "promise-retry", - "just-safe-set", - "fund", - "gitfund", - "crlf", - "gmail-send", - "jest-codemods", - "libphonenumber-metadata-generator", - "renamer", - "libphonenumber", - "fined", - "flagged-respawn", - "autolink", - "hashtag", - "link", - "mention", - "consolemock", - "staged", - "@samverschueren/stream-to-observable", - "is-observable", - "listr-silent-renderer", - "listr-update-renderer", - "listr-verbose-renderer", - "@lit-labs/ssr-dom-shim", - "@lit/reactive-element", - "@lit-internal/scripts", - "@lit-labs/testing", - "@webcomponents/template", - "connect-logger", - "http-auth", - "faye-websocket", - "livereload-js", - "resolve-pkg", - "matchdep", - "lws-basic-auth", - "lws-blacklist", - "lws-body-parser", - "lws-compress", - "lws-conditional-get", - "lws-cors", - "lws-json", - "lws-log", - "lws-mime", - "lws-range", - "lws-request-monitor", - "lws-rewrite", - "lws-spa", - "lws-static", - "full-stack", - "babel-preset-es2015-loose", - "browserify-derequire", - "grunt-es3-safe-recast", - "grunt-rollup", - "grunt-ts", - "rollupify", - "indexeddb", - "localstorage", - "websql", - "openurl", - "lockfile-lint-api", - "prettier-standard", - "lockfile check", - "lockfile lint", - "lock", - "stdlib", - "lodash-modularized", - "clonedeep", - "defaults", - "isempty", - "isequal", - "isfunction", - "isplainobject", - "isstring", - "omit", - "pick", - "uniq", - "uni-global", - "sprintf-kit", - "event-emitter", - "ncjsm", - "tape-index", - "terminal.js", - "update", - "refresh", - "overwrite", - "bar", - "date-format", - "streamroller", - "@log4js-node/sandboxed-module", - "grunt-contrib-jasmine", - "grunt-open", - "grunt-preprocess", - "math", - "int64", - "uid2", - "isemail", - "canonical-json", - "loopback-phase", - "strong-remoting", - "loopback-filters", - "strong-globalize", - "loopback-connector-remote", - "nodemailer-stub-transport", - "loopback-datasource-juggler", - "nodemailer-direct-transport", - "is-docker", - "loopback-boot", - "karma-es6-shim", - "loopback-context", - "strong-task-emitter", - "strong-error-handler", - "eslint-config-loopback", - "sqlserver", - "StrongLoop", - "mBaaS", - "steno", - "express-async-handler", - "@commitlint/prompt-cli", - "@typicode/eslint-config", - "embed", - "embedded", - "localStorage", - "sessionStorage", - "mru", - "@lucide/build-icons", - "@lucide/shared", - "@lucide/rollup-plugins", - "Lucide", - "HTML", - "Feather", - "Icons", - "Icon", - "SVG", - "Feather Icons", - "Fontawesome", - "Font Awesome", - "decree", - "manipulate", - "blur", - "sharpen", - "flip", - "mirror", - "hue", - "saturation", - "lightness", - "transparency", - "fade", - "opacity", - "contain", - "cover", - "@75lb/deep-merge", - "ansi-escape-sequences", - "create-mixin", - "load-module", - "sleep-anywhere", - "expand-home-dir", - "hast-util-to-mdast", - "mdast-util-to-markdown", - "short-unique-id", - "y18n", - "@types/columnify", - "@types/json-diff", - "@types/make-fetch-happen", - "@types/which", - "wizard", - "task graph", - "string manipulation", - "@favware/rollup-type-bundler", - "lavalink client", - "audio streaming", - "music bot", - "voice chat", - "discord integration", - "high performance", - "easy-to-use", - "feature-rich", - "seamless integration", - "community support", - "open-source", - "lavalink", - "path-type", - "intermediate", - "recursively", - "dingbat-to-unicode", - "lop", - "browserify-prepend-licenses", - "duck", - "hamjest", - "office", - "word", - "@nestjs/common", - "@nestjs/config", - "@nestjs/core", - "@nestjs/platform-express", - "@nestjs/swagger", - "@nestjs/throttler", - "@nestjs/typeorm", - "@yarnpkg/lockfile", - "uniqid", - "@codecov/bundle-analyzer", - "@nestjs/cli", - "@nestjs/testing", - "@testcontainers/mysql", - "@types/dasherize", - "crud", - "admin-panel", - "headless-cms", - "backend-framework", - "micro-backend", - "rapid-development", - "yaml-config", - "file-upload", - "api-generator", - "low-code", - "no-code", - "prototype", - "mvp", - "startup", - "baas", - "@next/eslint-plugin-next", - "@tabler/icons-react", - "eslint-config-next", - "postcss-preset-mantine", - "postcss-simple-vars", - "mantine", - "context", - "context-menu", - "context menu", - "react server components", - "user experience", - "usability", - "mapbox-gl", - "mapbox", - "legend", - "text processing", - "linkify-it", - "mdurl", - "punycode.js", - "uc.micro", - "markdown-it-for-inline", - "markdown-it-ins", - "markdown-it-mark", - "markdown-it-sub", - "ndoc", - "markdown-it-plugin", - "anchor", - "emoji", - "emojies", - "emoticon", - "emoticons", - "stream-from-to", - "pdf-text", - "rows", - "bunup", - "theredoc", - "markdown parser", - "solidjs", - "diacritics-map", - "lazy-cache", - "list-item", - "markdown-link", - "mixin-deep", - "repeat-string", - "document", - "glossary", - "heading", - "links", - "remarkableplugin", - "table of contents", - "table-of-contents", - "toc", - "micromark-core-commonmark", - "micromark-extension-directive", - "micromark-extension-gfm-autolink-literal", - "micromark-extension-gfm-footnote", - "micromark-extension-gfm-table", - "micromark-extension-math", - "micromark-util-types", - "gemoji", - "markdownlint-rule-extended-ascii", - "CommonMark", - "jsonpointer", - "run-con", - "@markedjs/eslint-config", - "@markedjs/testutils", - "esbuild-plugin-umd-wrapper", - "marked-highlight", - "marked-man", - "recheck", - "markup", - "v8-argv", - "inline-style-prefixer", - "react-event-listener", - "simple-assign", - "complex.js", - "escape-latex", - "javascript-natural-sort", - "typed-function", - "eigen", - "expr-eval", - "jsep", - "ndarray", - "ndarray-determinant", - "ndarray-gemm", - "ndarray-ops", - "ndarray-pack", - "numericjs", - "sylvester", - "zeros", - "mathematics", - "numeric", - "algebra", - "complex", - "fraction", - "charenc", - "md5sum", - "checksum", - "decode-named-character-reference", - "micromark-util-decode-numeric-character-reference", - "micromark-util-decode-string", - "micromark-util-normalize-identifier", - "micromark-util-symbol", - "unist-util-stringify-position", - "commonmark.json", - "micromark-build", - "mdast-util", - "mdast", - "tree", - "micromark-util-sanitize-uri", - "trim-lines", - "mdast-util-gfm", - "micromark-extension-gfm", - "mdn", - "mozilla", - "hashring", - "jackpot", - "InnoDB memcached API", - "failover", - "hashing", - "membase", - "memcache", - "nMemcached", - "@jsonjoy.com/fs-core", - "@jsonjoy.com/fs-fsa", - "@jsonjoy.com/fs-node", - "@jsonjoy.com/fs-node-builtins", - "@jsonjoy.com/fs-node-to-fsa", - "@jsonjoy.com/fs-node-utils", - "@jsonjoy.com/fs-print", - "@jsonjoy.com/fs-snapshot", - "@jsonjoy.com/json-pack", - "@jsonjoy.com/util", - "glob-to-regex.js", - "thingies", - "tree-dump", - "isomorphic-git", - "tslint-config-common", - "fs.js", - "in-memory", - "fsa", - "file system access", - "native file system", - "webfs", - "crudfs", - "opfs", - "casfs", - "content addressable storage", - "@types/lodash.isequal", - "fast-memoize", - "mem", - "nanocolors", - "memoization", - "gulp-exit", - "ram", - "errno", - "camelcase-keys", - "decamelize-keys", - "delete_comments", - "minimist-options", - "trim-newlines", - "cat", - "kitten", - "from2", - "lodash.clonedeepwith", - "stat-mode", - "ware", - "@metalsmith/drafts", - "assert-dir-equal", - "7zip-bin", - "node-7z", - "node-downloader-helper", - "@babel/plugin-syntax-import-meta", - "@surma/rollup-plugin-off-main-thread", - "asyncro", - "babel-plugin-transform-async-to-promises", - "babel-plugin-transform-replace-expressions", - "tiny-glob", - "@babel/plugin-proposal-throw-expressions", - "directory-tree", - "eslint-config-developit", - "npm-merge-driver-install", - "micro library", - "micromark-factory-space", - "micromark-util-chunked", - "micromark-util-combine-extensions", - "micromark-util-resolve-all", - "micromark-util-subtokenize", - "fill-range", - "bracket", - "character-class", - "expansion", - "extglobs", - "lookahead", - "lookaround", - "lookbehind", - "negate", - "negation", - "posix", - "star", - "@types/mime-db", - "mime-score", - "release-please", - "runmd", - "mime-db", - "mimetypes", - "Min Heap", - "min heap", - "maxheap", - "min-heap", - "heap", - "Binary Heap", - "binary-heap", - "heap data structure", - "min heap data structure", - "complete binary tree", - "heapify", - "heap sort", - "heapify up", - "heapify down", - "Priority Queue", - "priority queue", - "priorityqueue", - "priority-queue", - "priority q", - "priorityQ", - "efficient", - "priority", - "complete binary", - "extract min", - "min priority queue", - "efficient priority", - "ordering property", - "dynamic resizing", - "priority-based", - "priority-based processing", - "element priority", - "queue priority", - "sorted", - "decrease key", - "increase key", - "searching", - "@putout/minify", - "css-b64-images", - "html-minifier-next", - "montag", - "readjson", - "try-catch", - "try-to-catch", - "escover", - "eslint-plugin-putout", - "madrun", - "supertape", - "brace-expansion", - "signed", - "certificate", - "cert", - "@types/brace-expansion", - "make dir", - "dir", - "ufo", - "conditional-type-checks", - "mobservable", - "reactive", - "frp", - "functional-reactive-programming", - "state management", - "data flow", - "mobx-react-lite", - "expose-gc", - "browser-stdout", - "yargs-unparser", - "uslug", - "pidtree", - "rewiremock", - "unexpected", - "@mocha/docdash", - "jsdoc-ts-utils", - "unexpected-map", - "unexpected-set", - "unexpected-sinon", - "remark-inline-links", - "unexpected-eventemitter", - "fail-on-errors-webpack-plugin", - "@11ty/eleventy-plugin-inclusive-language", - "headless-chrome", - "chai-xml", - "test-console", - "xmllint", - "junit", - "lcov", - "define-data-property", - "gopd", - "has-property-descriptors", - "@types/es-value-fixtures", - "@types/for-each", - "@types/functions-have-names", - "@types/get-intrinsic", - "@types/gopd", - "@types/has-property-descriptors", - "@types/object-inspect", - "descriptor", - "define", - "swap", - "unix-dgram", - "unittest", - "gulp-coveralls", - "gulp-mocha-phantomjs", - "mockJSON", - "mockAjax", - "ipaddr.js", - "recursive-watch", - "fastest-validator", - "avsc", - "nats", - "etcd3", - "cbor-x", - "thrift", - "redlock", - "dd-trace", - "gc-stats", - "msgpack5", - "fakerator", - "kafka-node", - "v8-natives", - "@types/pino", - "notepack.io", - "benchmarkify", - "rhea-promise", - "@types/bunyan", - "jaeger-client", - "@types/ioredis", - "moleculer-repl", - "winston-context", - "event-loop-stats", - "node-nats-streaming", - "@icebob/node-memwatch", - "microservice", - "messagebus", - "services", - "micro", - "distributed", - "ender", - "timezone", - "olson", - "iana", - "zone", - "tz", - "monaco-languageserver-types", - "monaco-marker-data-provider", - "monaco-types", - "monaco-worker-manager", - "vscode-languageserver-textdocument", - "vscode-languageserver-types", - "vscode-uri", - "@remcohaszing/eslint", - "remark-preset-remcohaszing", - "yaml-language-server", - "monaco", - "monads", - "either", - "maybe", - "result", - "@codemirror/lang-javascript", - "@codemirror/theme-one-dark", - "@json2csv/plainjs", - "@lezer/highlight", - "basic-auth-connect", - "bootstrap-paginator-2", - "free-swig", - "gridfs-stream", - "mongodb-query-parser", - "renderjson-2", - "@cypress/code-coverage", - "assets-webpack-plugin", - "express-openid-connect", - "mongodb-memory-server", - "administration", - "GUI", - "manage", - "manage-mongo", - "phpmyadmin", - "UI", - "web-based", - "@mongodb-js/saslprep", - "mongodb-connection-string-url", - "aws4", - "socks", - "snappy", - "mocha-sinon", - "gcp-metadata", - "@types/kerberos", - "@types/saslprep", - "v8-heapsnapshot", - "@mongodb-js/zstd", - "@types/whatwg-url", - "@types/chai-subset", - "mongodb-client-encryption", - "@aws-sdk/credential-providers", - "kareem", - "mpath", - "mquery", - "sift", - "@ark/attest", - "@mongodb-js/mongodb-downloader", - "acquit", - "acquit-ignore", - "acquit-require", - "lodash.isequalwith", - "mongodb-runner", - "odm", - "datastore", - "backbone-callbacks", - "node-monitor", - "remote control", - "probe", - "JMX", - "core-monitor", - "dashboard", - "monitoring", - "control panel", - "@types/mongodb", - "monk-middleware-cast-ids", - "monk-middleware-fields", - "monk-middleware-handle-callback", - "monk-middleware-options", - "monk-middleware-query", - "monk-middleware-wait-for-connection", - "gitbook-cli", - "gitbook-plugin-anker-enable", - "gitbook-plugin-custom-favicon", - "gitbook-plugin-edit-link", - "gitbook-plugin-github", - "gitbook-plugin-prism", - "monk-middleware-debug", - "commist", - "help-me", - "mqtt-packet", - "worker-timers", - "number-allocator", - "aedes-cli", - "leaked-handles", - "mqtt-connection", - "@esm-bundle/chai", - "mqtt-level-store", - "esbuild-plugin-polyfill-node", - "publish/subscribe", - "@tediousjs/connection-string", - "msnodesql", - "tds", - "node-tds", - "node-sqlserver", - "msnodesqlv8", - "node-mssql", - "@types/statuses", - "headers-polyfill", - "rettime", - "until-async", - "@epic-web/test-server", - "@fastify/websocket", - "@types/json-bigint", - "@types/serviceworker", - "json-bigint", - "page-with", - "append-field", - "fs-temp", - "testdata-w3c-json-form", - "formdata", - "array-union", - "pend", - "release-it-pnpm", - "test report", - "html report", - "json to html", - "karma-story-reporter", - "mezr", - "web-animations-js", - "bin-packing", - "sqlstring", - "timezone-mock", - "urun", - "utest", - "sql-escaper", - "aws-ssl-profiles", - "generate-function", - "named-placeholders", - "poku", - "assert-diff", - "eslint-plugin-async-await", - "thenify", - "then", - "bats", - "switcher", - "couchdb", - "fastest-stable-stringify", - "rtl-css-js", - "iconista", - "libreact", - "pico", - "lite", - "in-js", - "styled", - "decorator", - "jsxstyle", - "rule", - "gitcloud", - "hasbin", - "page-icon", - "@types/hasbin", - "@types/page-icon", - "desktop", - "proxy-lib", - "font-finder", - "pbxproj-dom", - "@foxt/js-srp", - "simple-plist", - "ios-device-lib", - "email-validator", - "ios-sim-portable", - "plist-merge-patch", - "@nativescript/hook", - "@nativescript/doctor", - "nativescript-dev-xcode", - "ios-mobileprovision-finder", - "@nstudio/trapezedev-project", - "@rigor789/resolve-package-path", - "@types/plist", - "@types/retry", - "@types/byline", - "@types/pacote", - "@types/tabtab", - "@types/tunnel", - "@types/xml2js", - "@types/archiver", - "@types/qr-image", - "@types/marked-terminal", - "@types/proper-lockfile", - "@types/npmcli__arborist", - "@types/universal-analytics", - "afinn-165", - "afinn-165-financialmarketnews", - "apparatus", - "memjs", - "stopwords-iso", - "wordnet-db", - "browserfs", - "gulp-jasmine-browser", - "pegjs", - "uubench", - "natural language processing", - "artifical intelligence", - "Porter stemmer", - "Lancaster stemmer", - "bigram", - "trigram", - "quadgram", - "ngram", - "stemmer", - "bayes", - "classifier", - "phonetic", - "metaphone", - "inflector", - "Wordnet", - "tf-idf", - "logistic regression", - "doublemetaphone", - "double", - "jaro-winkler distance", - "levenshtein distance", - "string distance", - "part-of-speech tagger", - "Eric Brill", - "Brill tagger", - "sentiment analysis", - "maximum entropy modelling", - "secure-keys", - "nconf-yaml", - "key value store", - "plugabble", - "near social", - "bridge", - "near", - "binary-search-tree", - "exec-time", - "@fig/complete-commander", - "@golevelup/nestjs-discovery", - "nest", - "@postman/tough-cookie", - "chardet", - "liquid-json", - "postman-collection", - "postman-collection-transformer", - "postman-request", - "postman-runtime", - "serialised-error", - "@postman/shipit", - "dockerfile_lint", - "parse-gitignore", - "postman", - "rest-client", - "@apm-js-collab/tracing-hooks", - "@newrelic/security-agent", - "@tyriar/fibonacci-heap", - "import-in-the-middle", - "module-details-from-path", - "require-in-the-middle", - "@aws-sdk/s3-request-presigner", - "@matteo.collina/tspl", - "@newrelic/eslint-config", - "@newrelic/newrelic-oss-cli", - "@newrelic/test-utilities", - "@slack/bolt", - "@smithy/eventstream-codec", - "@smithy/util-utf8", - "git-raw-commits", - "self-cert", - "debugging", - "profiling", - "@panva/hkdf", - "openid-client", - "@edge-runtime/jest-environment", - "@types/nodemailer", - "@types/oauth", - "babel-plugin-jsx-pragmatic", - "babel-preset-preact", - "oauth2", - "nextauth", - "async handler", - "async functions", - "pipe", - "provider", - "TestBed", - "how-to", - "@ant-design/icons-angular", - "localhost", - "tunneling", - "webhook", - "deep-defaults", - "enqueue", - "function-source", - "minstache", - "sliced", - "mocha-generators", - "@nightwatch/chai", - "@nightwatch/html-reporter-template", - "@nightwatch/nightwatch-inspector", - "@types/selenium-webdriver", - "chai-nightwatch", - "devtools-protocol", - "didyoumean", - "nightwatch-axe-verbose", - "stacktrace-parser", - "mochawesome-merge", - "mochawesome-report-generator", - "nightwatchjs", - "selenium", - "webdriver", - "automated-testing", - "@sinonjs/text-encoding", - "@sinonjs/referee", - "jsdom-global", - "mochify", - "proxyquire-universal", - "proxyquireify", - "propagate", - "clang-format", - "n-api", - "napi", - "coffee-coverage", - "grunt-contrib-coffee", - "grunt-include-replace", - "internal", - "check-version-modules", - "used-deps-analyzer", - "container", - "skeleton", - "formate", - "dynamic-dedupe", - "filewatcher", - "tap-xunit", - "reload", - "subdir", - "char-regex", - "emojilib", - "skin-tone", - "sentences-per-line", - "emojis", - "smiley", - "smileys", - "smilies", - "ideogram", - "ideograms", - "fetch-blob", - "chai-iterator", - "stream-consumers", - "eslint-config-digitalbazaar", - "karma-tap-reporter", - "nodejs-websocket", - "worker-loader", - "aes", - "asn", - "asn.1", - "cbc", - "csr", - "des", - "gcm", - "hmac", - "pkcs", - "pki", - "prng", - "rc2", - "rsa", - "sha256", - "sha384", - "sha512", - "tls", - "x.509", - "x509", - "c2dm", - "fcm", - "messaging", - "geocoder", - "geocoding", - "geo", - "maps", - "mapquest", - "agol", - "arcgis", - "tomtom", - "exponential-backoff", - "require-inject", - "high5", - "html-parser", - "html5parser", - "htmljs-parser", - "htmlparser-benchmark", - "mocha-each", - "neutron-html5parser", - "biased-opener", - "strong-data-uri", - "v8-debug", - "v8-profiler", - "http mock", - "growly", - "shellwords", - "nexe", - "notification center", - "mac os x 10.8", - "terminal-notifier", - "windows 8 notification", - "toaster", - "ps-list", - "pty", - "pseudoterminal", - "forkpty", - "openpty", - "@node-red/editor-api", - "@node-red/runtime", - "@node-red/util", - "@node-red/nodes", - "node-red-admin", - "iot", - "sass-graph", - "async-foreach", - "stdout-stream", - "true-case-path", - "unique-temp-dir", - "long-timeout", - "sorted-array-functions", - "recurrent", - "rfc4122", - "fs.watch", - "watchfile", - "ngn", - "daemon", - "event logging", - "elevate", - "sudo", - "@mgcrea/eslint-config-node", - "@tsconfig/node-lts", - "excel", - "xls", - "jQuery", - "jQuery extend", - "inherit", - "combyne", - "clean-for-publish", - "libgit2", - "git2", - "@aws-sdk/client-sesv2", - "libbase64", - "libmime", - "libqp", - "nodemailer-ntlm-auth", - "proxy-test-server", - "Nodemailer", - "pstree.remy", - "undefsafe", - "autoload", - "multimeter", - "node-webkit", - "webkit", - "async-redis", - "express-ipfilter", - "express-ws", - "json-logic-js", - "json-sql", - "jsonpath-plus", - "line-reader", - "mocker-data-generator", - "node-ipc", - "promise-mysql", - "stjs", - "uuid-random", - "nolang", - "Programming", - "programming language", - "descriptive", - "5GL", - "json schema", - "Mehdi Salartayefeh", - "option parser", - "absolute", - "backslash", - "delimiter", - "file-path", - "forward", - "fp", - "slashes", - "trailing", - "unix", - "urix", - "normalization", - "normalisation", - "simplify", - "trim", - "canonical", - "mouse wheel", - "exit-hook", - "github-url-from-git", - "is-interactive", - "is-scoped", - "issue-regex", - "listr-input", - "new-github-release-url", - "npm-name", - "p-memoize", - "map-obj", - "write-package", - "archy", - "is-cidr", - "libnpmorg", - "libnpmpack", - "libnpmteam", - "fs-minipass", - "npm-profile", - "libnpmsearch", - "@sigstore/tuf", - "libnpmversion", - "@npmcli/config", - "npm-audit-report", - "minipass-pipeline", - "npm-user-validate", - "tiny-relative-date", - "fastest-levenshtein", - "json-parse-even-better-errors", - "@npmcli/git", - "@npmcli/docs", - "@tufjs/repo-mock", - "@npmcli/mock-globals", - "ajv-formats-draft2019", - "package manager", - "giturl", - "throat", - "semver-diff", - "preferred-pm", - "callsite-record", - "rc-config-loader", - "outdated", - "updates", - "updating", - "updater", - "@trivago/prettier-plugin-sort-imports", - "@types/chai-string", - "@types/cli-table", - "@types/ini", - "@types/jsonlines", - "@types/npm-registry-fetch", - "@types/parse-github-url", - "@types/semver-utils", - "@types/update-notifier", - "eslint-config-raine", - "fp-and-or", - "jsonlines", - "prompts-ncu", - "semver-utils", - "typescript-json-schema", - "verdaccio", - "vite-bundle-analyzer", - "vite-node", - "upgrade", - "versions", - "esbuild-node-externals", - "eslint-config-tc", - "eslint-config-typescript-tc", - "npm-package-json-lint-config-tc", - "auditor", - "mutate-fs", - "minipass-fetch", - "minizlib", - "registry", - "string.prototype.padend", - "eslint-config-mysticatea", - "commandline", - "npm-scripts", - "run", - "read-package-json-fast", - "script", - "string convert", - "yarn to npm", - "npm upgrade", - "babel-preset-latest", - "npm-cli", - "are-we-there-yet", - "mocha-jsdom", - "cvss", - "nodesecurity-npm-utils", - "gluegun", - "nuke", - "money", - "percentage", - "a-sync-waterfall", - "asap", - "mocha-phantomjs-core", - "mocha-phantomjs-istanbul", - "module-alias", - "node-libs-browser", - "css4", - "node-machine-id", - "resolve.exports", - "@yarnpkg/parsers", - "lines-and-columns", - "@napi-rs/wasm-runtime", - "Mobile", - "caching-transform", - "istanbul-lib-hook", - "istanbul-lib-processinfo", - "node-preload", - "process-on-spawn", - "spawn-wrap", - "any-path", - "@readme/openapi-parser", - "remove-undefined-objects", - "@readme/oas-examples", - "@types/json-schema-merge-allof", - "@types/memoizee", - "apis", - "openapi initiative", - "openapi specification", - "openapi spec", - "openapi document", - "oai", - "@readme/postman-to-openapi", - "@types/swagger2openapi", - "prollyfill", - "gulp-exec", - "@pkgjs/support", - "error-cause", - "globalthis", - "has-tostringtag", - "util.inspect", - "indexof", - "Object.keys", - "@mariocasciaro/benchpress", - "access", - "bean", - "notation", - "segment", - "es-object-atoms", - "Object.assign", - "$.extend", - "_.extend", - "Underscore", - "Object.entries", - "Object.values", - "entries", - "ES8", - "ee-first", - "wrappy", - "@blakeembrey/deque", - "@blakeembrey/template", - "epoll", - "@types/mock-require", - "gpio", - "interrupt", - "raspberry", - "raspi", - "pi", - "beaglebone", - "beaglebone-black", - "default-browser", - "define-lazy-prop", - "is-in-ssh", - "wsl-utils", - "opens", - "launch", - "start", - "xdg-open", - "xdg", - "default", - "urls", - "bath-es5", - "dereference-json-schema", - "axios-mock-adapter", - "json-schema-deref-sync", - "open api", - "computer", - "quadrocopter", - "countrynames", - "hashish", - "last-call-webpack-plugin", - "prelude-ls", - "deep-is", - "levn", - "livescript", - "option parsing", - "stdin-discarder", - "transform-tty", - "sequencify", - "stream-consume", - "sql-ddl-sync", - "sql-query", - "redshift", - "home", - "tmpdir", - "ps1", - "template string", - "template literal", - "styleable", - "scrollbar", - "scrollbars", - "scroll", - "@vscode/vsce", - "yauzl-promise", - "@types/is-ci", - "@types/yauzl-promise", - "limiter", - "vscode", - "addlistener", - "addeventlistener", - "waits", - "resolved", - "race", - "fulfilled", - "concurrency", - "ratelimit", - "fifo", - "invalidate", - "out", - "plunder", - "metadata", - "@pa11y/html_codesniffer", - "eslint-config-pa11y", - "proclaim", - "aria", - "compliance", - "headless", - "htmlcs", - "standards", - "WCAG", - "sigstore", - "npm-registry-mock", - "capture-website", - "filenamify-url", - "unused-filename", - "@types/png.js", - "png.js", - "page", - "screenshots", - "screengrab", - "striptags", - "para", - "server-side", - "idb-keyval", - "react-native-crypto-js", - "@saithodev/semantic-release-backmerge", - "@types/facebook-js-sdk", - "babel-plugin-transform-inline-environment-variables", - "jasmine-spec-reporter", - "jsdoc-babel", - "parse-server", - "vite-plugin-commonjs", - "WHATWG", - "html parser", - "html5 parser", - "html serializer", - "htmlserializer", - "fast-url-parser", - "pause", - "chai-connect-middleware", - "username", - "passport-oauth1", - "base64url", - "exist", - "isabsolute", - "is-absolute", - "zeptomatch", - "@rkusa/linebreak", - "opentype.js", - "jpeg-exif", - "linebreak", - "png-js", - "blob-stream", - "brace", - "pdfjs-dist", - "pdf writer", - "pdf generator", - "call-delayed", - "chai-increasing", - "pg-pool", - "pg-protocol", - "pg-types", - "pgpass", - "pg-cloudflare", - "@cloudflare/vitest-pool-workers", - "@cloudflare/workers-types", - "pg-copy-streams", - "libpq", - "postgre", - "rdbms", - "flow-copy-source", - "npm-watch", - "connect-phonegap", - "phonegap-build", - "phonegap build", - "phonegap/build", - "pinkie-promise", - "denodify", - "atomic-sleep", - "on-exit-leak-free", - "pino-abstract-transport", - "pino-std-serializers", - "quick-format-unescaped", - "real-require", - "@pinojs/redact", - "sonic-boom", - "thread-stream", - "@types/flush-write-stream", - "bole", - "fastbench", - "flush-write-stream", - "midnight-smoker", - "pino-pretty", - "steed", - "postinstall", - "lifecycle", - "devpostinstall", - "entry", - "irregular-plurals", - "plurals", - "count", - "irregular", - "noun", - "nouns", - "@pm2/agent", - "@pm2/js-api", - "@pm2/io", - "@pm2/pm2-version-check", - "@pm2/blessed", - "cli-tableau", - "fclone", - "pidusage", - "pm2-axon", - "pm2-axon-rpc", - "pm2-deploy", - "pm2-multimeter", - "vizion", - "logs", - "kraken", - "load balancer", - "lb", - "load-balancer", - "kubernetes", - "k8s", - "pm2-docker", - "runtime", - "graceful", - "node-pm2", - "production", - "keymetrics", - "node.js monitoring", - "strong-pm", - "supervisord", - "pm2.io", - "ghost production", - "process manager", - "probes", - "keep process alive", - "process configuration", - "clustering", - "cluster cli", - "dev ops", - "tap-dot", - "PNG", - "js-png", - "node-png", - "png-parse", - "pnpm10", - "dependency manager", - "hardlinks", - "prune", - "rapid", - "symlinks", - "uninstall", - "poe", - "economy", - "ninja", - "poe.ninja", - "poe economy", - "path of exile", - "path of exile economy", - "path of exile ninja", - "poe economy api", - "path of exile api", - "poe.watch api", - "poe.ninja api", - "babel-plugin-preval", - "pushstate-server", - "tsgen", - "glamor", - "inline-styles", - "color manipulate", - "color manipulation", - "curried color manipulation", - "@popperjs/bundle", - "@popperjs/eslint-config-popper", - "@popperjs/test", - "@popperjs/test-utils", - "nuget-publish", - "popperjs", - "position", - "attached", - "ports", - "source map", - "manipulation", - "jison-gho", - "calculation", - "calc", - "postcss-reporter", - "read-cache", - "eslint-config-problems", - "@csstools/utilities", - "comma", - "hsl", - "hsla", - "hwb", - "rgba", - "caniuse-api", - "@types/caniuse-api", - "pixrem", - "pleeease-filters", - "postcss-apply", - "postcss-attribute-case-insensitive", - "postcss-color-function", - "postcss-color-gray", - "postcss-color-hex-alpha", - "postcss-color-hsl", - "postcss-color-hwb", - "postcss-color-rebeccapurple", - "postcss-color-rgb", - "postcss-color-rgba-fallback", - "postcss-font-family-system-ui", - "postcss-font-variant", - "postcss-image-set-polyfill", - "postcss-initial", - "postcss-media-minmax", - "postcss-pseudo-class-any-link", - "postcss-pseudoelements", - "postcss-replace-overflow-wrap", - "postcss-selector-matches", - "postcss-selector-not", - "cssrecipes-custom-media-queries", - "cssrecipes-defaults", - "cssrecipes-grid", - "cssrecipes-utils", - "cssrecipes-vertical-rhythm", - "eslint-config-i-am-meticulous", - "isogram", - "markdown-it-toc-and-anchor", - "metalsmith-collections", - "metalsmith-filenames", - "metalsmith-md", - "metalsmith-react", - "metalsmith-rename", - "metalsmith-rss", - "metalsmith-url", - "metalsmith-watch", - "nano-logger", - "npmpub", - "postcss-browser-reporter", - "react-svg-inline", - "to-slug-case", - "webpack-nano-logs", - "cssnext", - "@csstools/cascade-layer-name-parser", - "at-rule", - "atrule", - "csswg", - "media", - "queries", - "declarative", - "selectors", - "empty", - "at-rules", - "@keyframes", - "@counter-style", - "flexbugs", - "flex", - "postcss-less", - "postcss-styl", - "quickapp", - "PHP", - "sss", - "image-set", - "node modules", - "postcssrc", - "postcss.config.js", - "midas", - "postcss-short", - "postcss-dark-theme-class", - "cssnano-utils", - "font-family", - "font-weight", - "@types/cssesc", - "css-modules", - "@csstools/selector-resolve-nested", - "atrules", - "children", - "nestings", - "@csstools/normalize.css", - "postcss-browser-comments", - "sanitize.css", - "@csstools/postcss-tape", - "normalizes", - "fixes", - "@csstools/postcss-alpha-function", - "@csstools/postcss-color-function", - "@csstools/postcss-color-function-display-p3-linear", - "@csstools/postcss-color-mix-function", - "@csstools/postcss-color-mix-variadic-function-arguments", - "@csstools/postcss-content-alt-text", - "@csstools/postcss-contrast-color-function", - "@csstools/postcss-exponential-functions", - "@csstools/postcss-font-format-keywords", - "@csstools/postcss-gamut-mapping", - "@csstools/postcss-gradients-interpolation-method", - "@csstools/postcss-hwb-function", - "@csstools/postcss-ic-unit", - "@csstools/postcss-initial", - "@csstools/postcss-light-dark-function", - "@csstools/postcss-logical-float-and-clear", - "@csstools/postcss-logical-overflow", - "@csstools/postcss-logical-overscroll-behavior", - "@csstools/postcss-logical-resize", - "@csstools/postcss-logical-viewport-units", - "@csstools/postcss-media-minmax", - "@csstools/postcss-media-queries-aspect-ratio-number-values", - "@csstools/postcss-mixins", - "@csstools/postcss-nested-calc", - "@csstools/postcss-normalize-display-values", - "@csstools/postcss-oklab-function", - "@csstools/postcss-position-area-property", - "@csstools/postcss-property-rule-prelude-list", - "@csstools/postcss-random-function", - "@csstools/postcss-relative-color-syntax", - "@csstools/postcss-scope-pseudo-class", - "@csstools/postcss-sign-functions", - "@csstools/postcss-stepped-value-functions", - "@csstools/postcss-syntax-descriptor-syntax-production", - "@csstools/postcss-system-ui-font-family", - "@csstools/postcss-text-decoration-shorthand", - "@csstools/postcss-trigonometric-functions", - "@csstools/postcss-unset-value", - "css-blank-pseudo", - "css-has-pseudo", - "css-prefers-color-scheme", - "postcss-clamp", - "postcss-dir-pseudo-class", - "postcss-double-position-gradients", - "postcss-focus-within", - "postcss-gap-properties", - "postcss-lab-function", - "postcss-logical", - "postcss-overflow-shorthand", - "postcss-page-break", - "postcss-place", - "lists", - "postcss-syntax", - "@jsopen/objects", - "doublylinked", - "lightning-pool", - "postgres-bytea", - "power-tasks", - "putil-promisify", - "putil-varhelpers", - "transformations", - "processor", - "ltgt", - "vuvuzela", - "spark-md5", - "level-codec", - "fetch-cookie", - "double-ended-queue", - "level-write-stream", - "empower", - "power-assert-formatter", - "universal-deep-strict-equal", - "dereserve", - "licensify", - "package-json-filterify", - "precommit", - "@actions/github", - "@actions/glob", - "babel-plugin-transform-rename-properties", - "errorstacks", - "kolorist", - "virtual dom", - "dom diff", - "binary-searching", - "jest-light-runner", - "jest-specific-snapshot", - "@vue/language-plugin-pug", - "prettier-plugin", - "imports", - "organize-imports", - "glob-fs", - "humanized", - "si", - "locale", - "localized", - "renderkid", - "jitter", - "exception", - "error-handling", - "parse-ms", - "milliseconds", - "period", - "hrtime", - "@pkgr/core", - "mercurial", - "hg", - "vcs", - "@prisma/config", - "@prisma/engines", - "@prisma/studio-core", - "ohash", - "package-up", - "ts-pattern", - "@prisma/dmmf", - "line-replace", - "@prisma/debug", - "openapi-fetch", - "xdg-app-paths", - "@libsql/client", - "@prisma/client", - "@prisma/migrate", - "get-port-please", - "@prisma/generator", - "@prisma/internals", - "checkpoint-client", - "openapi-typescript", - "@prisma/fetch-engine", - "@prisma/get-platform", - "@types/better-sqlite3", - "@prisma/adapter-libsql", - "@prisma/credentials-store", - "@prisma/management-api-sdk", - "@prisma/driver-adapter-utils", - "@prisma/client-generator-registry", - "@opentelemetry/context-async-hooks", - "ORM", - "Prisma", - "Prisma CLI", - "prisma2", - "JS", - "TS", - "SQL", - "SQLite", - "Postgres", - "PostgreSQL", - "CockroachDB", - "MySQL", - "MariaDB", - "MSSQL", - "SQL Server", - "SQLServer", - "MongoDB", - "MCP", - "danger", - "docdash", - "gulp-terser", - "regexpp", - "webfont", - "prism", - "node-rest-client", - "URIjs", - "svn", - "customize", - "sisteransi", - "interact", - "uglifyify", - "uglifyjs", - "alpha-sort", - "html-event-attributes", - "mdast-zone", - "svg-element-attributes", - "svg-event-attributes", - "@protobufjs/aspromise", - "@protobufjs/base64", - "@protobufjs/codegen", - "@protobufjs/eventemitter", - "@protobufjs/fetch", - "@protobufjs/float", - "@protobufjs/inquire", - "@protobufjs/path", - "@protobufjs/pool", - "@protobufjs/utf8", - "browserify-wrap", - "git-semver-tags", - "protobuf", - "protocol-buffers", - "serialization", - "@types/q", - "@types/jasminewd2", - "gulp-clang-format", - "natives", - "tslint-eslint-rules", - "vrsource-tslint-rules", - "webdriverjs", - "basic-auth-parser", - "@types/args", - "squid", - "privoxy", - "mod_proxy", - "via", - "x-forwarded-for", - "fill-keys", - "module-not-found-error", - "native-hello-world", - "cp-sugar", - "elegant-status", - "pug-load", - "pug-lexer", - "pug-linker", - "pug-parser", - "pug-filters", - "pug-runtime", - "pug-code-gen", - "pug-strip-comments", - "jstransformer-uglify-js", - "jstransformer-markdown-it", - "tap-bail", - "idn", - "idna", - "dns", - "domain", - "chromium-bidi", - "puppeteer-core", - "typed-query-selector", - "purge", - "fluent", - "qr code", - "@browserify/envify", - "@browserify/uglifyify", - "common-shakeify", - "has-override-mistake", - "unassertify", - "decode-uri-component", - "filter-obj", - "split-on-first", - "param", - "parameter", - "searchparams", - "retape", - "tap-esm", - "synchronous", - "FIFO", - "lifo", - "LIFO", - "work", - "queue js", - "job queue", - "job scheduling", - "task queue", - "ordered", - "iterate", - "linked list", - "dequeue", - "shift", - "item", - "parchment", - "quill-delta", - "@types/highlight.js", - "transpile-webpack-plugin", - "eslint-import-resolver-webpack", - "fuzzysort", - "grunt-search", - "eslint-plugin-json-es", - "@qunitjs/browserstack-runner", - "dom-element-descriptors", - "@types/qunit", - "@release-it-plugins/lerna-changelog", - "qunit-plugin", - "exists-stat", - "js-reporters", - "browserstack-runner", - "testling", - "requestAnimationFrame", - "babel-plugin-import-export-rename", - "envvar", - "sanctuary", - "sanctuary-identity", - "xyz", - "tacit", - "point-free", - "curried", - "fantasy-land", - "words", - "sample", - "timed-out", - "exceptions", - "sentry", - "unpipe", - "@rc-component/father-plugin", - "father-build", - "rc-test", - "react-slider", - "slider", - "react-tooltip", - "@types/responselike", - "react-addon", - "@apollo/react-common", - "@apollo/react-components", - "@apollo/react-hoc", - "@apollo/react-hooks", - "@apollo/react-ssr", - "@restart/ui", - "@restart/hooks", - "uncontrollable", - "prop-types-extra", - "ecosystem-react", - "@icons/material", - "material-colors", - "reactcss", - "@case/eslint-config", - "@storybook/addon-centered", - "babel-plugin-transform-rename-import", - "chai-spies", - "jsx-loader", - "react-context", - "react-mark", - "testdom", - "color picker", - "sketch", - "photoshop", - "html-webpack-tags-plugin", - "copy to clipboard", - "@react-docgen/cli", - "date-fns-tz", - "is-root", - "detect-port-alt", - "@react-dnd/invariant", - "@react-dnd/shallowequal", - "dnd-core", - "@types/doctrine", - "documentation-generation", - "attr-accept", - "file-selector", - "@babel/plugin-proposal-do-expressions", - "@babel/plugin-proposal-logical-assignment-operators", - "@babel/plugin-proposal-pipeline-operator", - "@commitlint/prompt", - "@size-limit/webpack-why", - "imagemin-cli", - "webpack-blocks", - "jest-fetch-mock", - "settle-promise", - "overlay", - "redbox", - "crash", - "react-side-effect", - "eslint-config-nfl", - "karma-chai-sinon", - "karma-html-reporter", - "nfl", - "head", - "title", - "meta", - "noscript", - "jest-fixed-jsdom", - "form-validation", - "enzyme-adapter-react-15", - "react-mount", - "yarn-deduplicate", - "live", - "hot", - "use-sync-external-store", - "@babel/plugin-proposal-async-generator-functions", - "eslint-plugin-jest-dom", - "viewport", - "intersection", - "observer", - "lazy load", - "inview", - "useInView", - "useIntersectionObserver", - "@formatjs/ecma402-abstract", - "@formatjs/icu-messageformat-parser", - "@formatjs/intl", - "intl-messageformat", - "eslint-config-es5", - "rehype-starry-night", - "exenv", - "@webcomponents/custom-elements", - "dialog", - "babel-browser-transform", - "inject-loader", - "isparta-loader", - "karma-jasmine-diff-reporter", - "lodash.range", - "transitiongroup", - "spring", - "tween", - "motion", - "transition", - "nullthrows", - "metro-runtime", - "hermes-compiler", - "metro-source-map", - "flow-enums-runtime", - "@react-native/codegen", - "@react-native/js-polyfills", - "@react-native/gradle-plugin", - "@react-native/assets-registry", - "@react-native/normalize-colors", - "@jest/create-cache-key-function", - "@react-native/virtualized-lists", - "babel-plugin-syntax-hermes-parser", - "@react-native/community-cli-plugin", - "app-framework", - "mobile-development", - "@react-native-community/cli", - "@react-native/eslint-config", - "@react-native/typescript-config", - "react-native-builder-bob", - "react-native-component", - "keychain", - "svg2ttf", - "fontisto", - "evil-icons", - "feather-icons", - "oslllo-svg-fixer", - "svgicons2svgfont", - "simple-line-icons", - "@entypo-icons/core", - "css-social-buttons", - "osx", - "macos", - "@cmfcmf/docusaurus-search-local", - "react-transform-hmr", - "currency", - "number-format", - "require-hijack", - "onclick", - "outside", - "onclickoutside", - "@rollup/plugin-sucrase", - "eslint-plugin-ft-flow", - "hermes-eslint", - "@types/use-sync-external-store", - "matchmediaquery", - "@types/hyphenate-style-name", - "@types/match-media-mock", - "@types/matchmediaquery", - "match-media-mock", - "media queries", - "respond", - "matchMedia", - "wireit", - "premove", - "redux-devtools", - "redux-devtools-dock-monitor", - "redux-devtools-log-monitor", - "combobox", - "multiselect", - "json2mq", - "@playwright/experimental-ct-react", - "foundation-apps", - "slick-carousel", - "why-did-you-update", - "slick", - "carousel", - "Image slider", - "orbit", - "@tippyjs/react", - "@vxna/mini-html-webpack-template", - "clipboard-copy", - "common-dir", - "es6-object-assign", - "function.name-polyfill", - "glogg", - "javascript-stringify", - "jss", - "jss-plugin-camel-case", - "jss-plugin-compose", - "jss-plugin-default-unit", - "jss-plugin-global", - "jss-plugin-isolate", - "jss-plugin-nested", - "listify", - "mini-html-webpack-plugin", - "q-i", - "qss", - "react-docgen-annotation-resolver", - "react-docgen-displayname-handler", - "react-group", - "strip-html-comments", - "type-detect", - "@types/buble", - "@types/copy-webpack-plugin", - "@types/escodegen", - "@types/hash-sum", - "@types/keymirror", - "@types/markdown-to-jsx", - "@types/terser-webpack-plugin", - "@types/type-detect", - "@types/webpack-dev-server", - "deabsdeep", - "deepfreeze", - "dog-names", - "eslint-config-tamia", - "keymirror", - "strip-shebang", - "scalable vector graphics", - "svginjector", - "TapEventPlugin", - "300ms", - "react-testing", - "@4tw/cypress-drag-drop", - "vite-plugin-istanbul", - "toast", - "alert", - "snackbar", - "message", - "commoner", - "jstransform", - "coverify", - "es3ify", - "esprima-fb", - "grunt-jest", - "jasmine-tapreporter", - "populist", - "transition-group", - "transitions", - "react-codemirror", - "eslint-config-react", - "eslint-plugin-relay", - "@babel/preset-stage-2", - "jest-environment-puppeteer", - "@babel/plugin-transform-flow-comments", - "scrolling", - "infinite", - "virtualized", - "fixed", - "es6-module-jstransform", - "@storybook/addon-storysource", - "customize-cra", - "holderjs", - "react-prism", - "esbuild-plugin-alias", - "tap-mocha-reporter", - "line by line", - "repl", - "tiny-invariant", - "@types/esprima", - "flow-parser", - "refactoring", - "pretty-printing", - "prepare", - "change-emitter", - "higher-order", - "microcomponentization", - "composition", - "lister", - "@redis/bloom", - "@redis/client", - "@redis/json", - "@redis/search", - "@redis/time-series", - "@redocly/openapi-core", - "@cfaester/enzyme-adapter-react-18", - "docusaurus-theme-redoc", - "docusaurus-plugin-redoc", - "@docusaurus/theme-common", - "api-doc", - "docusaurus-preset", - "netlify-plugin-cache", - "predictable", - "replay", - "elm", - "just-curry-it", - "reduce-reducers", - "@vitest/coverage-c8", - "eslint-config-unicorn-camelcase", - "flux-standard-action", - "actions", - "insert-line", - "redux-immutable", - "lodash-webpack-plugin", - "@redux-saga/core", - "saga", - "effects", - "side effects", - "thunk", - "redux-middleware", - "ecmarkup", - "gulp-emu", - "gulp-live-server", - "gulp-sequence", - "reflect", - "regenerator", - "abstract", - "is-hidden", - "rehype-plugin", - "is-absolute-url", - "external", - "hast-util-properties-to-mdx-jsx-attributes", - "eslint-config-remcohaszing", - "snapshot-fixtures", - "@nodeutils/defaults-deep", - "@phun-ky/typeof", - "issue-parser", - "wildcard-match", - "@octokit/request-error", - "mentoss", - "mock-stdio", - "remark-preset-webpro", - "distribution", - "intern", - "markdown-extensions", - "unified-args", - "footnote", - "remark-plugin", - "remark-slug", - "mermaid-isomorphic", - "hast-util-from-html-isomorphic", - "mermaidjs", - "remark-comment-config", - "remark-contributors", - "remark-heading-gap", - "remark-license", - "remark-lint-definition-spacing", - "remark-lint-fenced-code-flag", - "remark-lint-file-extension", - "remark-lint-final-definition", - "remark-lint-first-heading-level", - "remark-lint-heading-style", - "remark-lint-no-consecutive-blank-lines", - "remark-lint-no-emphasis-as-heading", - "remark-lint-no-file-name-articles", - "remark-lint-no-file-name-consecutive-dashes", - "remark-lint-no-file-name-irregular-characters", - "remark-lint-no-file-name-mixed-case", - "remark-lint-no-file-name-outer-dashes", - "remark-lint-no-heading-indent", - "remark-lint-no-heading-punctuation", - "remark-lint-no-missing-blank-lines", - "remark-lint-no-multiple-toplevel-headings", - "remark-lint-no-shell-dollars", - "remark-lint-no-table-indentation", - "remark-lint-no-tabs", - "remark-lint-ordered-list-marker-value", - "remark-lint-table-pipe-alignment", - "remark-retext", - "retext-english", - "retext-preset-github", - "remark-lint-correct-media-syntax", - "remark-lint-definition-sort", - "remark-lint-link-title-style", - "remark-lint-maximum-heading-length", - "remark-lint-maximum-line-length", - "remark-lint-mdx-jsx-attribute-sort", - "remark-lint-mdx-jsx-no-void-children", - "remark-lint-mdx-jsx-quote-style", - "remark-lint-mdx-jsx-self-close", - "remark-lint-mdx-jsx-shorthand-attribute", - "remark-lint-mdx-jsx-unique-attribute-name", - "remark-lint-media-style", - "remark-lint-no-duplicate-defined-urls", - "remark-lint-no-duplicate-headings-in-section", - "remark-lint-no-empty-url", - "remark-lint-no-heading-like-paragraph", - "remark-lint-no-hidden-table-cell", - "remark-lint-no-html", - "remark-lint-no-paragraph-content-indent", - "remark-lint-no-reference-like-url", - "remark-lint-no-unneeded-full-reference-image", - "remark-lint-no-unneeded-full-reference-link", - "retext-preset-wooorm", - "wooorm", - "autolinker", - "caseless", - "aws-sign2", - "oauth-sign", - "tunnel-agent", - "forever-agent", - "har-validator", - "is-typedarray", - "http-signature", - "taper", - "karma-cli", - "stealthy-require", - "request-promise-core", - "thenable", - "index.js", - "@typescript-eslint/eslint-plugin-tslint", - "@typescript/analyze-trace", - "eslint-plugin-typescript", - "micro-memoize", - "ResizeObserver", - "path-parse", - "supports-preserve-symlinks-flag", - "copy-dir", - "adjust-sourcemap-loader", - "cls-hooked", - "myrmidon", - "conventional-changelog-eslint", - "eslint-config-incredible", - "eslint-plugin-censor", - "eslint-plugin-no-secrets", - "eslint-plugin-scanjs-rules", - "fatum", - "node-package-tester", - "semantic-release-telegram", - "vesta", - "documentate", - "autodocumentate", - "ewma", - "spdy", - "restify-errors", - "escape-regexp-component", - "watershed", - "restify-clients", - "autocannon-compare", - "DTrace", - "quit", - "shutdown", - "sigterm", - "sigint", - "terminate", - "kill", - "NoSQL", - "reql", - "query language", - "leak", - "deep-copy", - "fast-copy", - "fastest-json-copy", - "nano-copy", - "plain-object-clone", - "deep-clone", - "deepclone", - "deepcopy", - "performant", - "fastclone", - "fastcopy", - "fast-clone", - "fast-deep-clone", - "fast-deep-copy", - "package-json-from-dist", - "rm -rf", - "rm -fr", - "prebuild", - "run-script-os", - "targetpractice", - "Automation", - "mouse", - "pixel", - "recognition", - "autohotkey", - "machine", - "learning", - "@mermaid-js/mermaid-cli", - "@shikijs/vitepress-twoslash", - "@vue/language-server", - "acorn-import-assertions", - "date-time", - "flru", - "npm-audit-resolver", - "wasm-pack", - "bundling", - "rollup-plugin", - "js-cleanup", - "rollup-plugin-jsx", - "sourcemap-validator", - "removal", - "@types/d3-drag", - "@types", - "commenting", - "package-name-regex", - "spdx-expression-validate", - "spdx-satisfies", - "gulp-conventional-changelog", - "rollup-plugin-prettier", - "rollup-plugin-strip-banner", - "browserify-fs", - "buffer-es6", - "process-es6", - "sourceMappingURL", - "@types/find-cache-dir", - "@types/graphlib", - "graphlib", - "rollup-plugin-re", - "@types/d3-array", - "@types/d3-color", - "@types/d3-force", - "@types/d3-hierarchy", - "@types/d3-scale", - "@types/d3-shape", - "visualizer", - "treemap", - "sunburst", - "diagram", - "@ampproject/toolbox-optimizer", - "@babel/plugin-syntax-bigint", - "@capsizecss/metrics", - "@edge-runtime/cookies", - "@edge-runtime/ponyfill", - "@edge-runtime/primitives", - "@napi-rs/triples", - "@next/polyfill-module", - "@next/polyfill-nomodule", - "@next/react-refresh-utils", - "@next/swc", - "@taskr/clear", - "@taskr/esnext", - "@types/amphtml-validator", - "@types/babel__generator", - "@types/ci-info", - "@types/content-disposition", - "@types/express-serve-static-core", - "@types/fresh", - "@types/lodash.curry", - "@types/path-to-regexp", - "@types/platform", - "@types/send", - "@types/text-table", - "@types/ua-parser-js", - "amphtml-validator", - "async-sema", - "cli-select", - "comment-json", - "edge-runtime", - "ignore-loader", - "lodash.curry", - "native-url", - "server-only", - "string-hash", - "taskr", - "unistore", - "watchpack", - "ember-cli-progress", - "rtl", - "ltr", - "run series", - "LINQ", - "FRP", - "Reactive", - "Rx", - "RxJS", - "@angular-devkit/build-optimizer", - "@types/source-map", - "check-side-effects", - "rollup-plugin-alias", - "rollup-plugin-inject", - "tslint-etc", - "tslint-no-toplevel-property-access", - "tslint-no-unused-expression-chai", - "web-streams-polyfill", - "ReactiveX", - "ReactiveExtensions", - "Streams", - "Observables", - "Stream", - "buffer allocate", - "node security", - "uninitialized", - "mock-env", - "dist-tag", - "prepublish", - "@sailshq/lodash", - "@sailshq/router", - "captains-log", - "common-js-file-extensions", - "@sailshq/csurf", - "flaverr", - "i18n-2", - "include-all", - "machine-as-action", - "machinepack-process", - "machinepack-redis", - "merge-defaults", - "merge-dictionaries", - "parley", - "rttc", - "sails-generate", - "sails-stringfile", - "skipper", - "sort-route-addresses", - "whelk", - "machinepack-fs", - "@sailshq/request", - "root-require", - "sails-hook-orm", - "sails-hook-sockets", - "sails.io.js", - "session-file-store", - "mvc", - "web-framework", - "sailsjs", - "sails.js", - "truncate-utf8-bytes", - "mktemp", - "filename", - "parse-srcset", - "eslint-config-apostrophe", - "material-components-web", - "node-sass-glob-importer", - "markdown-model", - "bare-script", - "element-model", - "food", - "drink", - "helpful", - "opensourcesoftware", - "teaching", - "experimentation", - "applications", - "ec", - "ecdh", - "ecdsa", - "seed", - "@bazel/runfiles", - "@semantic-release/error", - "aggregate-error", - "env-ci", - "find-versions", - "git-log-parser", - "import-from-esm", - "p-each-series", - "file-url", - "mockserver-client", - "p-retry", - "stream-buffers", - "author", - "@fluentui/react-component-event-listener", - "@fluentui/react-component-ref", - "@semantic-ui-react/event-stack", - "keyboard-key", - "@artsy/fresnel", - "@babel/standalone", - "@percy/cli", - "@percy/cypress", - "anchor-js", - "babel-plugin-filter-imports", - "babel-plugin-transform-react-handled-props", - "babel-plugin-universal-import", - "chai-enzyme", - "react-ace", - "react-codesandboxer", - "react-source-render", - "react-static", - "react-static-routes", - "react-universal-component", - "satisfied", - "semantic-ui-css", - "ta-scripts", - "terser-webpack-plugin-legacy", - "eslint-config-standard-jsx", - "standard-engine", - "bikeshed", - "semicolon", - "@hapi/joi", - "eraro", - "fast-safe-stringify", - "gate-executor", - "gubu", - "jsonic", - "lodash.defaultsdeep", - "optioner", - "ordu", - "patrun", - "rolling-stats", - "seneca-transport", - "use-plugin", - "@seneca/test-plugin", - "bench", - "gex", - "lab-transform-typescript", - "seneca-entity", - "seneca-error-test", - "seneca-joi", - "seneca-promisify", - "summary", - "micro-service", - "micro-services", - "micro service", - "minimum", - "viable", - "product", - "Sentimental", - "nlp", - "wkx", - "dottie", - "sequelize-pool", - "toposort-class", - "retry-as-promised", - "ibm_db", - "mariadb", - "p-props", - "p-settle", - "node-hook", - "pg-hstore", - "chai-datetime", - "snowflake-sdk", - "@octokit/types", - "js-combinatorics", - "esdoc-standard-plugin", - "esdoc-inject-style-plugin", - "esdoc-ecmascript-proposal-plugin", - "semantic-release-fail-on-major-bump", - "db2", - "snowflake", - "object relational mapper", - "@serialport/stream", - "@serialport/binding-mock", - "@serialport/bindings-cpp", - "@serialport/parser-ready", - "@serialport/parser-regex", - "@serialport/parser-cctalk", - "@serialport/parser-readline", - "@serialport/parser-delimiter", - "@serialport/parser-byte-length", - "@serialport/parser-spacepacket", - "@serialport/parser-slip-encoder", - "@serialport/parser-packet-length", - "@serialport/parser-inter-byte-timeout", - "ccTalk", - "com port", - "COM", - "data logging", - "hardware", - "modem", - "nodebots", - "RFID", - "sensor", - "serial port", - "sms gateway", - "sms", - "UART", - "update-check", - "@zeit/schemas", - "is-port-reachable", - "@vercel/style-guide", - "@types/serve-handler", - "temp-path", - "favicon", - "@serverless/utils", - "@commitlint/cz-commitlint", - "@serverless/test", - "serverless", - "serverless plugins", - "aws lambda", - "amazon web services", - "serverless.com", - "@aws-cdk/aws-lambda-python-alpha", - "@aws-sdk/client-dynamodb", - "@aws-sdk/client-eventbridge", - "@aws-sdk/client-lambda", - "@aws-sdk/client-sns", - "@aws-sdk/client-sqs", - "@aws-sdk/client-sts", - "@aws-sdk/lib-dynamodb", - "@aws-sdk/util-dynamodb", - "aws-cdk-lib", - "aws-iot-device-sdk", - "caporal", - "json-format-highlight", - "@types/aws-iot-device-sdk", - "@types/aws4", - "esbuild-runner", - "jsii", - "jsii-diff", - "jsii-docgen", - "jsii-pacmak", - "eventbridge", - "flow-remove-types", - "isequalwith", - "@img/colour", - "emnapi", - "exif-reader", - "@cpplint/cli", - "@emnapi/runtime", - "@img/sharp-libvips-dev", - "@img/sharp-libvips-win32-x64", - "@img/sharp-libvips-dev-wasm32", - "@img/sharp-libvips-win32-ia32", - "@img/sharp-libvips-win32-arm64", - "dzi", - "thumbnail", - "libvips", - "vips", - "quote", - "shelljs-changelog", - "shelljs-release", - "travis-check-changes", - "makefile", - "clean-publish", - "short", - "tiny", - "bitly", - "shorten", - "tinyid", - "should-equal", - "should-format", - "should-type", - "should-type-adaptors", - "should-util", - "eslint-config-shouldjs", - "grunt-endline", - "quiet-grunt", - "semver-sort", - "shelljs-plugin-open", - "transforms", - "@kwsites/file-exists", - "@kwsites/promise-deferred", - "@kwsites/promise-result", - "@simple-git/babel-config", - "source control", - "custom-event", - "js-correct-lockfile", - "rollup-plugin-analyzer", - "eslint-config-important-stuff", - "@sinonjs/samsam", - "@sinonjs/eslint-plugin-no-prototype-methods", - "@studio/changes", - "esbuild-plugin-istanbul", - "clock", - "vendor", - "mocks-and-spies", - "crypt3", - "fs-ext", - "express-json5", - "render-readme", - "sinopia-htpasswd", - "browserify-handlebars", - "@polka/url", - "totalist", - "bytes-iec", - "nanospinner", - "budget", - "performance budget", - "file size", - "directory size", - "get size", - "qpass", - "amazon-cognito-identity-js", - "basic-node-server", - "skapi", - "seperator", - "is-fullwidth-code-point", - "random-item", - "get-folder-size", - "js-extend", - "math-sum", - "prettier-bytes", - "tablify", - "slow", - "github-changes", - "urlify", - "standard-json", - "pretty output", - "snazzy standard", - "standard pretty", - "stylish for standard", - "stylish formatter", - "stylish reporter", - "stylish standard", - "axios-ntlm", - "xml-crypto", - "@types/sax", - "base64id", - "socket.io-adapter", - "io", - "@socket.io/component-emitter", - "eventsource", - "sockjs", - "separated", - "@anvilco/apollo-server-plugin-introspection-metadata", - "@graphql-tools/load-files", - "@graphql-tools/merge", - "@graphql-tools/utils", - "graphql-scalars", - "json-stringify-pretty-compact", - "microfiber", - "bdd-lazy-var", - "introspection", - "introspection-query", - "string-to-stream", - "binary-split", - "callback-stream", - "gulp-benchmark", - "imageinfo", - "prettydiff", - "sprity-css", - "sprity-lwip", - "object-stream", - "through2-spy", - "sprites", - "coordinates", - "css-sprite", - "asn1", - "bcrypt-pbkdf", - "integrity", - "subresource integrity", - "sri", - "sri hash", - "sri string", - "sri generator", - "encrypt", - "st", - "firestore", - "shuruhatik", - "long-stack-traces", - "version-guard", - "run-parallel-limit", - "conventional-changelog-config-spec", - "dotgitignore", - "stringify-package", - "std-mocks", - "recommended", - "check-more-types", - "lazy-ass", - "ban-sensitive-files", - "deps-ok", - "dont-crack", - "git-issues", - "pre-git", - "simple-commit-message", - "winser", - "modern-syslog", - "etsy", - "metric", - "aggregation", - "@vitest/expect", - "@storybook/global", - "store2", - "exsolve", - "empathic", - "picoquery", - "modern-tar", - "fetch-retry", - "@types/npmlog", - "@vitest/utils", - "launch-editor", - "unique-string", - "@vitest/mocker", - "bundle-require", - "flush-promises", - "@yarnpkg/libzip", - "browser-dtector", - "react-inspector", - "@react-aria/tabs", - "deep-object-diff", - "@react-aria/utils", - "@polka/compression", - "@types/detect-port", - "@ngard/tiny-isequal", - "@react-aria/toolbar", - "@react-stately/tabs", - "@react-types/shared", - "@storybook/docs-mdx", - "get-npm-tarball-url", - "use-resize-observer", - "@radix-ui/react-slot", - "@react-aria/landmark", - "@react-aria/overlays", - "@types/pretty-hrtime", - "@discoveryjs/json-ext", - "lazy-universal-dotenv", - "react-transition-state", - "@react-stately/overlays", - "@react-aria/interactions", - "react-syntax-highlighter", - "@radix-ui/react-scroll-area", - "@devtools-ds/object-inspector", - "@types/react-syntax-highlighter", - "@aw-web-design/x-default-browser", - "@fal-works/esbuild-plugin-global-externals", - "design-systems", - "component-testing", - "@glen/jest-raw-loader", - "@storybook/addon-onboarding", - "@storybook/addon-storyshots", - "@storybook/addon-storyshots-puppeteer", - "@storybook/blocks", - "@storybook/test", - "eslint-config-torchbox", - "storybookjs", - "patternlab", - "django", - "django-pattern-library", - "django-templates", - "jinja2", - "findit2", - "inside", - "funsert", - "into-stream", - "Assert", - "music-metadata", - "livestream", - "livestreaming", - "gulp-rimraf", - "string.js", - "stringjs", - "S", - "s", - "codsen-utils", - "ranges-apply", - "ranges-push", - "string-left-right", - "ast-monkey-traverse", - "ranges-invert", - "jsp", - "mixed", - "stri", - "xhtml", - "get-east-asian-width", - "visual", - "columns", - "fullwidth", - "full-width", - "wcswidth", - "full", - "cjk", - "chinese", - "japanese", - "korean", - "fixed-width", - "east-asian-width", - "undici-types", - "payment processing", - "credit cards", - "generator-loopback", - "loopback-sdk-angular-cli", - "nodefly-register", - "strong-agent", - "strong-arc", - "strong-build", - "strong-deploy", - "strong-mesh-models", - "strong-registry", - "strong-start", - "strong-supervisor", - "core-util-is", - "strong-debugger", - "strong-swagger-ui", - "swagger-ui", - "utf-8-validate", - "LoopBack", - "Platform", - "alerts", - "event loop", - "heroku", - "master", - "metrics", - "nodeops", - "npmrc", - "openshift", - "ops", - "pm", - "response", - "slc", - "slowest functions", - "strong-cli", - "strong-cluster-control", - "strongops", - "upstart", - "@bundled-es-modules/deepmerge", - "@bundled-es-modules/glob", - "@bundled-es-modules/memfs", - "@zip.js/zip.js", - "path-unified", - "@esm-bundle/chai-as-promised", - "@rollup/browser", - "@shoelace-style/shoelace", - "@web/test-runner-commands", - "hanbi", - "jsdoc-escape-at", - "jsdoc-tsimport-plugin", - "starlight-links-validator", - "style dictionary", - "dictionary", - "Android", - "@types/stylis", - "css-to-react-native", - "@types/js-beautify", - "@types/react-frame-component", - "@types/shallowequal", - "react-frame-component", - "stylis-plugin-rtl", - "ts-toolbelt", - "stylis-rule-sheet", - "zeit", - "hack", - "hacks", - "globjoin", - "mathml-tag-names", - "svg-tags", - "@changesets/get-github-info", - "@stylelint/prettier-config", - "@stylelint/remark-preset", - "@types/balanced-match", - "@types/file-entry-cache", - "@types/global-modules", - "@types/globjoin", - "@types/imurmurhash", - "@types/postcss-less", - "@types/svg-tags", - "eslint-config-stylelint", - "jest-preset-stylelint", - "postcss-sass", - "stylelint-config", - "shortcss", - "css-values", - "babel-register-ts", - "stylelint-plugin", - "delaration-strict-value", - "keyword", - "z-index", - "postcss-sorting", - "eslint-config-hudochenkov", - "postcss-styled-syntax", - "prettier-config-hudochenkov", - "postcss-media-query-parser", - "postcss-resolve-nested-selector", - "github-contributors-list", - "bootstrap-styl", - "cookiejar", - "should-http", - "tinyify", - "frisbee", - "super", - "promised", - "supports", - "capability", - "truecolor", - "16m", - "esrap", - "zimmerframe", - "@types/sade", - "vscode-languageserver", - "vscode-languageserver-protocol", - "svelte2tsx", - "svelte-language-server", - "@kiwi/eslint-config", - "@kiwi/prettier-config", - "@types/pug", - "postcss-easy-import", - "prettysize", - "@resvg/resvg-js", - "playwright-chromium", - "eslint-plugin-jest-formatting", - "sw-precache", - "git-release-notes", - "precache", - "tape-promise", - "autogen", - "promise.any", - "multilang-extract-comments", - "@readme/eslint-config", - "readmeio", - "swagger-nestjs", - "swagger-templates", - "swagger UI", - "istanbul-badges-readme", - "nodelint", - "still", - "mocha-phantomjs", - "travis-cov", - "jinja", - "swipe", - "framework7", - "gallery", - "slideshow", - "http-response-object", - "sync-rpc", - "then-request", - "flowgen2", - "system information", - "sysinfo", - "freebsd", - "openbsd", - "netbsd", - "cpu", - "cpuload", - "physical cores", - "logical cores", - "cores", - "socket type", - "fsstats", - "diskio", - "block devices", - "netstats", - "network interfaces", - "network connections", - "network stats", - "iface", - "printer", - "processes", - "users", - "internet", - "battery", - "docker stats", - "docker processes", - "graphic card", - "graphic controller", - "gpu", - "smart", - "disk layout", - "audio", - "bluetooth", - "wifi", - "wifinetworks", - "virtual box", - "virtualbox", - "vm", - "BIOS", - "chassis", - "symbol-es6", - "@jsenv/file-size-impact", - "construct-style-sheets-polyfill", - "hase", - "draht", - "limes", - "lusca", - "partof", - "timer2", - "uuidv4", - "crypto2", - "nocache", - "datasette", - "json-lines", - "processenv", - "stethoskop", - "flaschenpost", - "commands-events", - "nodeenv", - "roboter", - "assertthat", - "json-lines-client", - "cqs", - "cqrs", - "@codspeed/vitest-plugin", - "className", - "classList", - "override", - "@tailwindcss/oxide", - "@tapjs/after", - "@tapjs/after-each", - "@tapjs/asserts", - "@tapjs/before", - "@tapjs/before-each", - "@tapjs/chdir", - "@tapjs/core", - "@tapjs/filter", - "@tapjs/fixture", - "@tapjs/intercept", - "@tapjs/mock", - "@tapjs/node-serialize", - "@tapjs/run", - "@tapjs/snapshot", - "@tapjs/spawn", - "@tapjs/stdin", - "@tapjs/test", - "@tapjs/typescript", - "@tapjs/worker", - "resolve-import", - "tapjs", - "tapjs plugin", - "tap-out", - "tapes", - "@ljharb/resumer", - "@ljharb/through", - "array.prototype.every", - "dotignore", - "has-dynamic-import", - "ecstatic", - "npm-run-posix-or-windows", - "harness", - "chownr", - "yallist", - "@isaacs/fs-minipass", - "chmodr", - "events-to-array", - "brittle", - "b4a", - "streamx", - "fast-fifo", - "actor system", - "DDD", - "actor-system", - "front end", - "back end", - "@parcel/packager-ts", - "@parcel/transformer-typescript-types", - "cz-format-extension", - "telegram", - "telegram-api", - "telegram-client-api", - "tdlib", - "tglib", - "node-addon", - "tempdir", - "tmpfile", - "unique", - "seventh", - "lazyness", - "tree-kit", - "chroma-js", - "string-kit", - "nextgen-events", - "@cronvel/get-pixels", - "256 colors", - "true color", - "input field", - "gpm", - "screenbuffer", - "textbuffer", - "32-bit", - "charm", - "resumer", - "visualwidth", - "80s", - "ibm", - "@jridgewell/source-map", - "@ls-lint/ls-lint", - "astring", - "es8", - "@types/uglify-js", - "@test-runner/core", - "@test-runner/default-view", - "@test-runner/live-view", - "@test-runner/oneline-view", - "@test-runner/tom", - "multiline-ts", - "spawn-process", - "only-allow", - "sinon-assert-stub", - "sinon-mocha-test", - "unlinted", - "example", - "@devexpress/bin-v8-flags-filter", - "@devexpress/callsite-record", - "bowser", - "chrome-remote-interface", - "device-specs", - "elegant-spinner", - "get-os-info", - "import-lazy", - "is-podman", - "log-update-async-hook", - "moment-duration-format-commonjs", - "os-family", - "pinkie", - "promisify-event", - "read-file-relative", - "replicator", - "testcafe-browser-tools", - "testcafe-hammerhead", - "testcafe-legacy-api", - "testcafe-reporter-json", - "testcafe-reporter-list", - "testcafe-reporter-minimal", - "testcafe-reporter-spec", - "testcafe-reporter-xunit", - "testcafe-selector-generator", - "time-limit-promise", - "unquote", - "url-to-options", - "@devexpress/gulp-qunit-harness", - "@ffprobe-installer/ffprobe", - "@testcafe/publish-please", - "@types/callsite", - "@types/dedent", - "@types/useragent", - "browserstack-connector", - "caller", - "dom-walk", - "eslint-plugin-hammerhead", - "express-ntlm", - "gulp-clone", - "gulp-ll-next", - "gulp-mocha-simple", - "gulp-step", - "mocha-reporter-spec-with-retries", - "openssl-self-signed-certificate", - "recursive-copy", - "testcafe-browser-provider-browserstack", - "automated", - "QA", - "@types/dockerode", - "docker-compose", - "properties-reader", - "ssh-remote-port-forward", - "@types/async-lock", - "@types/properties-reader", - "@types/tar-fs", - "stringify-object-es5", - "codeclimate-test-reporter", - "cross-conf-env", - "headerify", - "is-number", - "teenytest", - "teenytest-promise", - "test double", - "fireworm", - "printf", - "spawn-args", - "styled_string", - "bluebird-retry", - "chai-shallow-deep-equal", - "saucie", - "eslint-config-mdcs", - "jpeg-js", - "three.js", - "3d", - "virtual-reality", - "augmented-reality", - "webgl", - "webgl2", - "webaudio", - "webgpu", - "webxr", - "get-port-cli", - "node-stdlib-browser", - "user-streams", - "hundreds", - "polendina", - "stream-spigot", - "streams2", - "unexpand", - "homedir", - "tilde", - "collapse", - "number-is-nan", - "profile", - "stats", - "bee-dnd", - "bee-tag", - "bee-form", - "bee-icon", - "bee-rate", - "bee-step", - "bee-tabs", - "bee-tile", - "bee-tree", - "bee-affix", - "bee-alert", - "bee-badge", - "bee-label", - "bee-menus", - "bee-modal", - "bee-panel", - "bee-radio", - "bee-table", - "bee-anchor", - "bee-button", - "bee-drawer", - "bee-layout", - "bee-locale", - "bee-navbar", - "bee-select", - "bee-slider", - "bee-switch", - "bee-upload", - "bee-animate", - "bee-backtop", - "bee-loading", - "bee-message", - "bee-overlay", - "bee-popover", - "bee-svgicon", - "bee-tooltip", - "bee-calendar", - "bee-carousel", - "bee-cascader", - "bee-checkbox", - "bee-collapse", - "bee-dropdown", - "bee-timeline", - "bee-transfer", - "bee-clipboard", - "bee-breadcrumb", - "bee-datepicker", - "bee-form-group", - "bee-pagination", - "bee-popconfirm", - "bee-timepicker", - "bee-transition", - "bee-colorpicker", - "bee-input-group", - "bee-page-layout", - "bee-tree-select", - "bee-autocomplete", - "bee-button-group", - "bee-complex-grid", - "bee-form-control", - "bee-input-number", - "bee-notification", - "bee-progress-bar", - "bee-search-panel", - "bee-loading-state", - "bee-input-group-addon", - "gulp-cleancss", - "gulp-css-wrap", - "tinper-bee-core", - "less-plugin-inline-urls", - "tinper", - "bee", - "tinylibs", - "@deno/shim-deno-test", - "tinycolor", - "worker threads", - "thread pool", - "method", - "@types/react-native-vector-icons", - "pushalert", - "react-native toast", - "react-native-toastify", - "toastify", - "react-native-notification", - "expo", - "Typescript", - "node-resemble-js", - "processmd", - "of", - "tldts", - "set-cookie", - "RFC6265", - "RFC2965", - "tinytim", - "trace", - "typedarray.prototype.slice", - "forEach", - "html-select", - "html-tokenize", - "aggregate", - "bs-logger", - "make-error", - "babel-preset-es2016", - "typescript-loader", - "migrate", - "migration", - "migrations", - "cli-tool", - "@ts-morph/common", - "code-block-writer", - "static analysis", - "code refactor", - "create-require", - "@tsconfig/node10", - "@tsconfig/node12", - "@tsconfig/node14", - "v8-compile-cache-lib", - "@cspotcode/source-map-support", - "dprint", - "@swc/wasm", - "ntypescript", - "util.promisify", - "fast-json-patch", - "omit-deep", - "power-assign", - "bre", - "rete", - "rule engine", - "rules engine", - "javascript rule engine", - "js rule engine", - "inference system", - "@types/strip-bom", - "@tsd/typescript", - "eslint-config-xo-typescript", - "typedefs", - "typedefinitions", - "jsonc-simple-parser", - "polite-json", - "sync-content", - "Microsoft", - "codelyzer", - "tslint-divid", - "@types/make-dir", - "tslint-immutable", - "tslint-misc-rules", - "tslint-microsoft-contrib", - "tslint-consistent-codestyle", - "ts-lint", - "typescript-tslint-plugin", - "fix-dts-default-cjs-exports", - "joycon", - "ts-essentials", - "typescript runner", - "@mixmark-io/domino", - "turndown-attendant", - "grunt-mocha", - "grunt-markdown", - "grunt-component-io", - "grunt-push-release", - "grunt-regex-replace", - "jshint-path-reporter", - "mocha-unfunk-reporter", - "grunt-concat-sourcemap", - "tap-browser-color", - "tweetnacl-util", - "curve25519", - "ed25519", - "nacl", - "poly1305", - "public", - "salsa20", - "signatures", - "twemoji-parser", - "DOM", - "Twitter", - "type-coverage-core", - "tagged-tag", - "@typescript/vfs", - "generics", - "media-typer", - "checking", - "@gerrit0/mini-shiki", - "@material/material-color-utilities", - "typedoc-theme", - "typedoc-plugin", - "material-design", - "material-3", - "typedocplugin", - "JsDocs", - "cli-prompt", - "concatenate", - "ebook", - "pandoc", - "kindlegen", - "latex", - "@types/mongoose", - "mongodb-memory-server-global", - "mongoose-findorcreate", - "prettier-tslint", - "sql-highlight", - "@sqltools/formatter", - "gulpclass", - "@types/sha.js", - "@sap/hana-client", - "@types/gulp-rename", - "standard-changelog", - "@google-cloud/spanner", - "@types/gulp-sourcemaps", - "@dprint/formatter", - "@esfx/canceltoken", - "@dprint/typescript", - "azure-devops-node-api", - "monocart-coverage-reports", - "mocha-fivemat-progress-reporter", - "eslint-formatter-autolinkable-stylish", - "commandpost", - "@types/power-assert", - "intelli-espower-loader", - "@types/postcss-modules-local-by-default", - "@types/postcss-modules-scope", - "@types/icss-utils", - "@types/postcss-modules-extract-imports", - "@types/reserved-words", - "jest-environment-node-single-context", - "postcss-import-sync2", - "sass-svg", - "promise-finally", - "typings-core", - "tslint-config-standard", - "definition", - "ecma", - "jsmin", - "random-bytes", - "@uiw/formatter", - "@uiw/react-affix", - "@uiw/react-alert", - "@uiw/react-auto-link", - "@uiw/react-avatar", - "@uiw/react-back-top", - "@uiw/react-badge", - "@uiw/react-breadcrumb", - "@uiw/react-button-group", - "@uiw/react-calendar", - "@uiw/react-card", - "@uiw/react-carousel", - "@uiw/react-cascader", - "@uiw/react-checkbox", - "@uiw/react-collapse", - "@uiw/react-copy-to-clipboard", - "@uiw/react-date-input", - "@uiw/react-date-picker", - "@uiw/react-descriptions", - "@uiw/react-divider", - "@uiw/react-drawer", - "@uiw/react-dropdown", - "@uiw/react-empty", - "@uiw/react-file-input", - "@uiw/react-form", - "@uiw/react-grid", - "@uiw/react-layout", - "@uiw/react-list", - "@uiw/react-loader", - "@uiw/react-menu", - "@uiw/react-message", - "@uiw/react-modal", - "@uiw/react-month-picker", - "@uiw/react-notify", - "@uiw/react-pagination", - "@uiw/react-pin-code", - "@uiw/react-popover", - "@uiw/react-portal", - "@uiw/react-progress", - "@uiw/react-radio", - "@uiw/react-rate", - "@uiw/react-search-select", - "@uiw/react-search-tree", - "@uiw/react-select", - "@uiw/react-slider", - "@uiw/react-split", - "@uiw/react-steps", - "@uiw/react-switch", - "@uiw/react-table", - "@uiw/react-tabs", - "@uiw/react-tag", - "@uiw/react-textarea", - "@uiw/react-time-picker", - "@uiw/react-tooltip", - "@uiw/react-transfer", - "@uiw/react-tree", - "@uiw/react-tree-checked", - "media-query-fns", - "parsel-js", - "citty", - "hookable", - "mkdist", - "untyped", - "pretty-bytes-cli", - "browserify-header", - "@metcoder95/https-pem", - "dns-packet", - "jsondiffpatch", - "bail", - "trough", - "@types/extend", - "retext", - "unique-random", - "non-repeating", - "unist-util", - "xast", - "nlcst", - "visit", - "pullstream", - "match-stream", - "uncompress", - "pupa", - "is-npm", - "fixture-stdout", - "notifier", - "urn", - "uri mutation", - "url mutation", - "uri manipulation", - "url manipulation", - "uri template", - "url template", - "unified resource locator", - "unified resource identifier", - "query string", - "RFC 3986", - "RFC3986", - "RFC 6570", - "RFC6570", - "jquery-plugin", - "ecosystem:jquery", - "sauce-browsers", - "sauce-test", - "formstream", - "ylru", - "@eggjs/oxlint-config", - "@tsconfig/node18", - "@types/busboy", - "@types/proxy", - "@types/selfsigned", - "string.prototype.towellformed", - "urlopen", - "userprofile", - "yamlparser", - "browserscope", - "ua", - "ua-parse", - "ua-parser", - "user agent", - "user-agent", - "is-generator-function", - "is-typed-array", - "is-async-supported", - "rfc9562", - "bundt", - "diffs", - "find-parent-dir", - "githook", - "sanitisation", - "sanitise", - "@vue/shared", - "@vant/use", - "@vant/popperjs", - "@vue/runtime-core", - "diffable-html", - "vitest-canvas-mock", - "@vant/area-data", - "@vant/cli", - "@vant/eslint-config", - "@vant/icons", - "@vercel/go", - "@vercel/h3", - "@vercel/fun", - "@vercel/koa", - "@vercel/blob", - "@vercel/hono", - "@vercel/next", - "@vercel/node", - "@vercel/ruby", - "@vercel/rust", - "@vercel/elysia", - "@vercel/nestjs", - "@vercel/python", - "@vercel/express", - "@vercel/fastify", - "@vercel/redwood", - "@vercel/backends", - "@vercel/hydrogen", - "@vercel/build-utils", - "@vercel/detect-agent", - "@vercel/static-build", - "@vercel/remix-builder", - "epipebomb", - "promisepipe", - "@sentry/node", - "@types/title", - "jaro-winkler", - "@types/chance", - "@types/dotenv", - "@vercel/client", - "pcre-to-regexp", - "git-last-commit", - "@inquirer/search", - "@tootallnate/once", - "http-proxy-node16", - "@inquirer/checkbox", - "@inquirer/password", - "@vercel/frameworks", - "@vercel/error-utils", - "line-async-iterator", - "@vercel/fs-detectors", - "@types/load-json-file", - "@vercel/routing-utils", - "@types/npm-package-arg", - "@types/write-json-file", - "@vercel-internals/types", - "@edge-runtime/node-utils", - "json-parse-better-errors", - "@types/jest-expect-message", - "@vercel-internals/constants", - "@alex_neo/jest-expect-message", - "@types/json-parse-better-errors", - "@vercel-internals/get-package-json", - "extsprintf", - "err", - "create-banner", - "postcss-header", - "viewer", - "viewer.js", - "teex", - "remove-trailing-separator", - "fs-mkdirp-stream", - "is-valid-glob", - "lead", - "resolve-options", - "stream-composer", - "to-through", - "value-or-function", - "vinyl-sourcemap", - "vinyl-adapter", - "classic", - "browser-split", - "ev-store", - "x-is-array", - "x-is-string", - "run-browser", - "vtree", - "artichokie", - "periscopic", - "http-proxy-3", - "strip-literal", - "es-module-lexer", - "postcss-modules", - "@oxc-project/types", - "host-validation-middleware", - "dev-server", - "build-tool", - "dotenv-local", - "slash-path", - "vite-plugin-builder", - "api-router", - "api-routers", - "vite-plugin-api", - "vite-plugin-rest-api", - "express-router", - "file-system-based", - "rest-api", - "api-rest", - "Remix", - "Next.js", - "focus-trap", - "@shikijs/core", - "@shikijs/types", - "@vue/devtools-api", - "@vueuse/integrations", - "@iconify-json/simple-icons", - "@iconify/utils", - "@mdit-vue/shared", - "@mdit-vue/plugin-sfc", - "@mdit-vue/plugin-toc", - "markdown-it-mathjax3", - "@mdit-vue/plugin-title", - "@mdit-vue/plugin-headers", - "@types/markdown-it-emoji", - "@mdit-vue/plugin-component", - "@mdit-vue/plugin-frontmatter", - "@types/markdown-it-container", - "@types/postcss-prefix-selector", - "tinyrainbow", - "@vitest/runner", - "@vitest/snapshot", - "why-is-node-running", - "@vitest/pretty-format", - "birpc", - "local-pkg", - "@edge-runtime/vm", - "@antfu/install-pkg", - "node-localstorage", - "gulp-xo", - "vorpal-less", - "vorpal-repl", - "load-plugins", - "eyes", - "BDD", - "keytar", - "parse-semver", - "typed-rest-client", - "@types/read", - "@types/yazl", - "@types/cheerio", - "@types/url-join", - "@types/clone", - "@types/iconv-lite", - "vscode-oniguruma", - "@vue/runtime-dom", - "eslint-plugin-vue-libs", - "@babel/plugin-syntax-pipeline-operator", - "@intlify/shared", - "@intlify/core-base", - "@intlify/devtools-types", - "intlify", - "@intlify/vue-i18n-loader", - "@types/mini-css-extract-plugin", - "@types/webpack-merge", - "cache-loader", - "markdown-loader", - "pug-plain-loader", - "@vue-macros/common", - "ast-walker-scope", - "muggle-string", - "unplugin-utils", - "@pinia/colada", - "@types/nightwatch", - "@vue/language-core", - "chromedriver", - "faked-promise", - "nightwatch-helpers", - "de-indent", - "todomvc-app-css", - "foreachasync", - "sys", - "walkSync", - "exec-sh", - "outpipe", - "win-spawn", - "encrypted-attr", - "lodash.issafeinteger", - "waterline-schema", - "waterline-utils", - "active-record", - "vargs", - "bdd-with-opts", - "gulp-debug", - "mu2", - "promise-simple", - "sauce-connect-launcher", - "spawn-mocha-parallel", - "sv-selenium", - "web3-eth", - "web3-net", - "web3-core", - "web3-types", - "web3-utils", - "web3-errors", - "web3-eth-abi", - "web3-eth-ens", - "web3-eth-iban", - "web3-validator", - "web3-rpc-methods", - "web3-eth-accounts", - "web3-eth-contract", - "web3-eth-personal", - "web3-providers-ws", - "web3-rpc-providers", - "web3-providers-http", - "in3", - "ganache", - "web3-providers-ipc", - "eslint-config-base-web3", - "@truffle/hdwallet-provider", - "Ethereum", - "@solana/spl-token", - "@solana/web3.js", - "kva-email-service", - "micro-ed25519-hdkey", - "ssl-http-with-docker", - "tailwind-animation-extension", - "telegram-assistant", - "web3-react-task", - "sol", - "@webassemblyjs/ast", - "@webassemblyjs/wasm-edit", - "@webassemblyjs/wasm-parser", - "acorn-import-phases", - "chrome-trace-event", - "@codspeed/core", - "@types/neo-async", - "@types/xxhashjs", - "assemblyscript", - "bundle-loader", - "coffee-loader", - "hash-wasm", - "meriyah", - "rehype-sanitize", - "wast-loader", - "webassembly-feature", - "xxhashjs", - "lodash.partial", - "eslint-config-th0r", - "postcss-icss-values", - "@carrotsearch/foamtree", - "eslint-config-th0r-react", - "analyzer", - "chart", - "zoomable", - "@webpack-cli/info", - "@webpack-cli/configtest", - "@types/envinfo", - "@fastify/express", - "@types/on-finished", - "@types/sockjs", - "@types/bonjour", - "bonjour-service", - "@types/serve-index", - "@types/serve-static", - "ansi-html-community", - "@types/connect-history-api-fallback", - "klona", - "@types/sockjs-client", - "reloading", - "hot-reloading", - "@types/webpack-sources", - "eslint-config-shellscape", - "prettier-plugin-package", - "dts-cli", - "@types/flat", - "externals", - "typedarray-to-buffer", - "yaeti", - "networking", - "comet", - "RFC-6455", - "@silentbot1/nat-api", - "@thaunknown/simple-peer", - "@webtorrent/http-node", - "addr-to-ip-port", - "bitfield", - "bittorrent-dht", - "bittorrent-protocol", - "cache-chunk-store", - "chunk-store-iterator", - "cpus", - "create-torrent", - "cross-fetch-ponyfill", - "fs-chunk-store", - "fsa-chunk-store", - "immediate-chunk-store", - "join-async-iterator", - "load-ip-set", - "lt_donthave", - "memory-chunk-store", - "parse-torrent", - "random-iterate", - "speed-limiter", - "throughput", - "torrent-discovery", - "torrent-piece", - "uint8-util", - "unordered-array-remove", - "ut_metadata", - "ut_pex", - "@webtorrent/semantic-release-config", - "airtap-manual", - "airtap-system", - "bittorrent-tracker", - "chrome-net", - "disc", - "network-address", - "path-esm", - "webtorrent-fixtures", - "bittorrent", - "bittorrent client", - "mad science", - "p2p", - "peer-to-peer", - "peers", - "swarm", - "torrent", - "web torrent", - "webrtc data", - "web worker", - "a gogo", - "url-search-params", - "poly", - "buster", - "exorcist", - "microtime", - "cujo", - "Promises/A+", - "isexe", - "taffydb", - "unit.js", - "@dabh/diagnostics", - "logform", - "one-time", - "@dabh/eslint-config-populist", - "abstract-winston-transport", - "cross-spawn-async", - "hock", - "winston-compat", - "file-stream-rotator", - "@alcalzone/release-script", - "@alcalzone/release-script-plugin-license", - "daily-rotate-file", - "log-rotate", - "logrotate", - "winston3", - "bower-config", - "propprop", - "wiredep-cli", - "break", - "carriage", - "new-line", - "newline", - "return", - "soft", - "workbox-build", - "workbox", - "workboxjs", - "service worker", - "fetch requests", - "offline", - "file manifest", - "wordbreak", - "linewrap", - "writeFile", - "atomic", - "HyBi", - "Push", - "WebSocket", - "WebSockets", - "enstore", - "x-ray-crawler", - "x-ray-parse", - "scrape", - "is-function", - "parse-headers", - "ssf", - "wmf", - "crc-32", - "adler-32", - "codepage", - "fflate", - "exit-on-epipe", - "@sheetjs/uglify-js", - "markdown-spellcheck", - "xlsb", - "dbf", - "dif", - "sylk", - "cash-cat", - "codacy-coverage", - "globify", - "jsonpath", - "unminified-webpack-plugin", - "XML", - "cdata", - "CDATA", - "doctype", - "processing instruction", - "Javascript", - "transforming", - "convertor", - "converting", - "conversion", - "node-expat", - "dom-js", - "xmltest", - "DOMParser", - "XMLSerializer", - "find-cache-directory", - "func-xml", - "@babel/plugin-proposal-unicode-property-regex", - "@unicode/unicode-14.0.0", - "babel-plugin-array-includes", - "babel-plugin-transform-xregexp", - "unicode-property-value-aliases", - "regular expression", - "whitelist", - "@scion-scxml/test-framework", - "statechart", - "state machine", - "finite state machine", - "finite automata", - "scxml", - "interpreter", - "@types/deep-equal", - "@types/express-ws", - "@types/utf8", - "xterm-benchmark", - "terminal-emulator", - "jest-ts-webcompat-resolver", - "YAML", - "yaml2json", - "json2yaml", - "browserslist-generator", - "yargs-test-extends", - "babel-plugin-transform-inline-imports-commonjs", - "death", - "loud-rejection", - "repeating", - "request-capture-har", - "roadrunner", - "babel-preset-es2015-node4", - "babel-preset-node5", - "eslint-config-fb-strict", - "eslint-config-kittens", - "eslint-plugin-flow-vars", - "eslint-plugin-no-async-without-await", - "@yeoman/adapter", - "@yeoman/conflicter", - "@yeoman/namespace", - "@yeoman/transform", - "@yeoman/types", - "fly-import", - "grouped-queue", - "mem-fs", - "mem-fs-editor", - "which-package-manager", - "@yeoman/eslint", - "esmocha", - "sinon-test", - "github-username", - "yes", - "no", - "true", - "false", - "lenient", - "cli-list", - "fullname", - "parse-help", - "root-check", - "npm-keyword", - "yeoman-doctor", - "humanize-string", - "yeoman-character", - "registry-url", - "@jonahsnider/benchmark", - "pad-component", - "cowsay", - "say", - "zeromq", - "0mq", - "ømq", - "libzmq", - "binding", - "@types/cookie-parser", - "@types/express-useragent", - "@types/morgan", - "express-useragent", - "schemas", - "runtime types", - "DSL", - "@externs/nodejs", - "@types/systemjs", - "JSON2", - "char-split", - "express-state", - "firefox-profile", - "istanbul-middleware", - "shallow-copy", - "stack-mapper", - "tap-finished", - "zuul-localtunnel", - "browzers", - "bulk-require", - "zuul-ngrok", - "@phenomnomnominal/tsquery", - "Unit Testing", - "Storybook", - "motion-dom", - "motion-utils", - "@radix-ui/react-dialog", - "@thednp/dommatrix", - "react animation", - "pose", - "react pose", - "popmotion", - "framer", - "waapi", - "belalangkayu", - "rengginangbasi", - "tehtarik3", - "sort-array", - "compute-scroll-into-view", - "@docusaurus/module-type-aliases", - "@testing-library/preact", - "babel-plugin-no-side-effect-class-properties", - "babel-preset-react-native", - "flow-coverage-report", - "get-pkg-repo", - "enhanced input", - "autosuggest", - "typeahead", - "omnibox", - "WAI-ARIA", - "multiple selection", - "focus", - "keyboards", - "mice", - "pen", - "pointer", - "pseudos", - "ring", - "textarea", - "trackpad", - "@augment-vir/core", - "@date-vir/duration", - "deepcopy-esm", - "typed-event-target", - "@web/dev-server-esbuild", - "execute-in-browser", - "istanbul-smart-text-reporter", - "runstorm", - "augment", - "vir", - "augment-vir", - "toolchain", - "JSONC", - "JSX", - "TSX", - "GraphQL", - "@commercetools-frontend/application-components", - "@commercetools-frontend/application-config", - "@commercetools-frontend/assets", - "@commercetools-frontend/babel-preset-mc-app", - "@commercetools-frontend/mc-dev-authentication", - "@commercetools-frontend/mc-html-template", - "@commercetools/http-user-agent", - "@formatjs/cli-lib", - "@rollup/plugin-graphql", - "@svgr/babel-preset", - "@types/webpack-bundle-analyzer", - "@vitejs/plugin-react-swc", - "babel-plugin-formatjs", - "graphql-request", - "moment-locales-webpack-plugin", - "svg-url-loader", - "thread-loader", - "@commercetools/composable-commerce-test-data", - "@types/moment-locales-webpack-plugin", - "@vue/cli-plugin-babel", - "@vue/cli-plugin-typescript", - "@vue/cli-service", - "eslint-plugin-prettier-vue", - "rollup-plugin-vue", - "vue 3", - "@vue/cli-plugin-unit-mocha", - "symlink-dir", - "tokenize", - "dogstatsd", - "datadog", - "telegraf", - "adr", - "decision record", - "any decision record", - "architectural decision", - "architectural decision record", - "architecture decision", - "architecture decision record", - "software quality", - "bplist-parser", - "@types/katex", - "katex", - "tex", - "hyperlink", - "@type-challenges/utils", - "deserialization", - "deserialize", - "detect-europe-js", - "is-standalone-pwa", - "ua-is-frozen", - "client-hints", - "device", - "browser-detection", - "device-detection", - "os-detection", - "bot-detection", - "ai-detection", - "app-detection", - "crawler-detection", - "youch", - "@adonisjs/ace", - "@adonisjs/env", - "parse-imports", - "@adonisjs/fold", - "@adonisjs/hash", - "@adonisjs/repl", - "youch-terminal", - "@poppinss/utils", - "@adonisjs/config", - "@adonisjs/events", - "@adonisjs/health", - "@adonisjs/logger", - "@poppinss/colors", - "@poppinss/dumper", - "@poppinss/macroable", - "@adonisjs/bodyparser", - "@adonisjs/encryption", - "@adonisjs/application", - "@adonisjs/http-server", - "error-stack-parser-es", - "argon2", - "edge.js", - "@japa/assert", - "@japa/runner", - "@japa/snapshot", - "@japa/expect-type", - "@japa/file-system", - "@adonisjs/tsconfig", - "ts-node-maintained", - "@adonisjs/assembler", - "@types/test-console", - "@adonisjs/eslint-config", - "@adonisjs/prettier-config", - "adonisjs", - "@aneuhold/core-ts-api-lib", - "@aneuhold/core-ts-lib", - "@aneuhold/local-npm-registry", - "@aneuhold/main-scripts", - "@capacitor/cli", - "@trapezedev/project", - "@types/slice-ansi", - "resources", - "splash screen", - "webOS", - "@envelop/types", - "@envelop/instrumentation", - "@whatwg-node/promise-helpers", - "@ionic/cli-framework-output", - "@angular-eslint/eslint-plugin", - "@angular-eslint/eslint-plugin-template", - "@angular-eslint/schematics", - "ng-packagr", - "docz", - "docz-utils", - "docz-theme-default", - "@asdfgertyjhnpm/nesciunt-molestias-reprehenderit-occaecati", - "@drftgyhuji7npm/rem-sint-necessitatibus-possimus", - "@drftgyhuji7npm/repellendus-eum-et-itaque", - "typeerror", - "Reflect.getPrototypeOf", - "Int8Array", - "Array", - "configurable", - "minimal", - "descriptors", - "channel", - "matchAll", - "Uint32Array", - "Array.prototype.filter", - "setter", - "Uint16Array", - "exit-code", - "isConcatSpreadable", - "weakmap", - "syntaxerror", - "sharedarraybuffer", - "Object", - "Array.prototype.flat", - "toSorted", - "typesafe", - "preserve-symlinks", - "negative zero", - "[[Prototype]]", - "tester", - "ArrayBuffer.prototype.slice", - "byteOffset", - "zero", - "ArrayBuffer#slice", - "trimRight", - "getter", - "Array.prototype.contains", - "findLastIndex", - "last", - "Int16Array", - "Int32Array", - "rangeerror", - "Float32Array", - "take", - "workspace:*", - "byteLength", - "censor", - "Symbol.toStringTag", - "operating-system", - "coercible", - "Function.prototype.name", - "gdpr", - "ArrayBuffer", - "private data", - "Object.fromEntries", - "0", - "tostringtag", - "-0", - "negative", - "Array.prototype.findLast", - "enumerable", - "toobject", - "interrupts", - "groupBy", - "handlers", - "reuse", - "Float64Array", - "group", - "some", - "collection.es6", - "sameValueZero", - "positive", - "code points", - "regular expressions", - "findLast", - "robust", - "description", - "Uint8ClampedArray", - "pnpm9", - "length", - "defineProperty", - "RegExp#flags", - "valid", - "accessor", - "@smithy/types", - "aws-lambda", - "elapsed-time-logger", - "gulp-open", - "cupertino", - "pane", - "slide", - "@pouchlab/ui", - "chai-jquery", - "corejs-typeahead", - "doiuse", - "gulp-add-src", - "gulp-cache-bust", - "gulp-check-deps", - "gulp-sass-lint", - "gulp4-run-sequence", - "is-empty-object", - "motion-ui", - "sassy-lists", - "undertaker-forward-reference", - "vinyl-named", - "handlebars-helper-rel", - "handlebars-helper-slugify", - "tinygradient", - "@bokub/prettier-config", - "gradient", - "gradients", - "grommet-icons", - "@chromatic-com/storybook", - "@storybook/addon-a11y", - "@storybook/addon-toolbars", - "@storybook/addon-webpack5-compiler-babel", - "@storybook/manager-api", - "@storybook/source-loader", - "@testing-library/testcafe", - "babel-plugin-transform-imports", - "chromatic", - "grommet-theme-hpe", - "jest-styled-components", - "react-shadow", - "tarball-extract", - "testcafe-react-selectors", - "grommet.io", - "grommetux", - "theming", - "sticker sheets", - "design patterns", - "app templates", - "atomic design", - "WCAG 2.1", - "keyboard navigation", - "screen reader tags", - "interaction", - "graphical user interface", - "dart-sass", - "grunt-jekyll", - "zepto", - "lightbox", - "@next/font", - "axe-playwright", - "@storybook/test-runner", - "@base-ui-components/react", - "@storybook/addon-webpack5-compiler-swc", - "find-process", - "@types/pretty", - "chromium", - "launch-image", - "splashscreen", - "splash-screen", - "image-generation", - "mstile", - "pwa-assets", - "@apitools/openapi-parser", - "base64-arraybuffer", - "xml-but-prettier", - "babel-plugin-template-html-minifier", - "inspectpack", - "Custom Element", - "Web Component", - "swagger ui", - "openapi ui", - "openapi themes", - "openapi viewer", - "openapi renderer", - "openapi explorer", - "swagger themes", - "animatable", - "@react-native/babel-preset", - "collapsible", - "accordion", - "rollup-plugin-local-resolve", - "swipeable", - "customizable", - "touchscreen", - "listview", - "swipe-to-delete", - "swipe-actions", - "use-composed-ref", - "use-latest", - "@preconstruct/cli", - "autosize", - "grow", - "md-writer", - "@types/common-tags", - "decimal.js-light", - "victory-vendor", - "@recharts/devtools", - "@storybook/builder-vite", - "@storybook/react-vite", - "@stryker-mutator/typescript-checker", - "@stryker-mutator/vitest-runner", - "@types/d3-interpolate", - "@types/d3-time-format", - "babel-plugin-dev-expression", - "eslint-config-airbnb-extended", - "eslint-plugin-react-perf", - "vitest-axe", - "@riotjs/dom-bindings", - "@riotjs/compiler", - "@riotjs/prettier-config", - "@riotjs/register", - "@riotjs/util", - "@wdio/mocha-framework", - "@wdio/sauce-service", - "bianco.attr", - "bianco.query", - "cumpa", - "curri", - "eslint-config-riot", - "rollup-plugin-riot", - "custom tags", - "minimalist", - "data binding", - "riotjs", - "riot.js", - "testcafe-browser-provider-saucelabs", - "sortable", - "reorder", - "ng-sortable", - "@use-gesture/vanilla", - "tdesign-icons-vue-next", - "@rollup/plugin-eslint", - "@rollup/plugin-url", - "@soerenmartius/vue3-clipboard", - "@tdesign/site-components", - "@tdesign/theme-generator", - "dom-parser", - "lodash.upperfirst", - "qrcode.vue", - "rollup-plugin-ignore-import", - "rollup-plugin-static-import", - "rollup-plugin-styles", - "tdesign-publish-cli", - "vite-plugin-tdoc", - "tdesign", - "babel-plugin-html-tag", - "postcss-css-variables", - "postcss-hexrgba", - "postcss-prefixer", - "rollup-plugin-module-replacement", - "rollup-plugin-string", - "uploader", - "preview", - "chunk", - "image-edit", - "sockets", - "ready", - "win32", - "gulp-convert-css-var", - "picklog", - "wechat", - "weixin", - "@formatjs/intl-localematcher", - "@napi-rs/simple-git", - "@shikijs/twoslash", - "@theguild/remark-mermaid", - "better-react-mathjax", - "estree-util-value-to-estree", - "react-compiler-runtime", - "react-medium-image-zoom", - "remark-math", - "remark-reading-time", - "remark-smartypants", - "unist-util-remove", - "unist-util-visit-children", - "@types/negotiator", - "esbuild-plugin-svgr", - "esbuild-react-compiler-plugin", - "make-synchronized", - "make-synchronous", - "sync-threads", - "synchronize", - "fs-fixture", - "@ibyar/decorators", - "aurora", - "ibyar", - "expressions", - "template-syntax", - "template-expression", - "scope", - "evaluation", - "command-center", - "rich-text-editor", - "tiptap", - "@types/babel__preset-env", - "eslint-plugin-no-null", - "allure", - "codeceptjs", - "testops", - "@intlayer/chokidar", - "@intlayer/config", - "@intlayer/core", - "@intlayer/types", - "intlayer", - "@types/cls-hooked", - "@utils/ts-config", - "@utils/ts-config-types", - "@utils/tsdown-config", - "user-agents", - "unist-util-remove-position", - "@bugsnag/core", - "@bugsnag/delivery-react-native", - "@bugsnag/plugin-console-breadcrumbs", - "@bugsnag/plugin-network-breadcrumbs", - "@bugsnag/plugin-react", - "@bugsnag/plugin-react-native-client-sync", - "@bugsnag/plugin-react-native-event-sync", - "@bugsnag/plugin-react-native-global-error-handler", - "@bugsnag/plugin-react-native-hermes", - "@bugsnag/plugin-react-native-session", - "@bugsnag/plugin-react-native-unhandled-rejection", - "iserror", - "bugsnag", - "stability", - "@enact/i18n", - "ilib", - "eslint-plugin-astro", - "control-panel", - "backendless-request", - "backendless-rt-client", - "backendless-console-sdk", - "bannerize", - "backendless.com", - "ahooks", - "better-scroll", - "@zarm-design/bem", - "@use-gesture/react", - "@zarm-design/icons", - "@floating-ui/react-dom-interactions", - "@zarm-design/cli", - "zarm-ui", - "zarm-mobile", - "@enact/spotlight", - "@enact/docs-utils", - "@enact/ui-test-utils", - "eslint-config-enact-proxy", - "react select", - "react dropdown", - "accessible react select", - "accessible", - "@reporters/github", - "titanium-sdk", - "tidev", - "iphone", - "@antora/expand-path-helper", - "antora", - "static site", - "web publishing", - "@asyncapi/generator-components", - "@asyncapi/generator-helpers", - "@asyncapi/generator-hooks", - "@asyncapi/multi-parser", - "fs.extra", - "global-dirs", - "requireg", - "unixify", - "react-loadable", - "combine-promises", - "@docusaurus/babel", - "@docusaurus/logger", - "@docusaurus/bundler", - "react-router-config", - "@docusaurus/mdx-loader", - "@docusaurus/utils-common", - "@docusaurus/utils-validation", - "react-loadable-ssr-addon-v5-slorber", - "@total-typescript/shoehorn", - "@types/react-router-config", - "parcel-bundler", - "Vue", - "unstyled", - "@nestjsx/crud-request", - "@nestjsx/util", - "crud-generator", - "frameworks", - "@zmotivat0r/o0", - "p-filter", - "p-locate", - "dependency-management", - "continuous-integration", - "npmjs", - "package-manager", - "gatsby", - "hugo", - "netlify", - "core-js-pure", - "jest-location-mock", - "@types/module-alias", - "webpack-plugin-serve", - "hotreload", - "@pothos/test-utils", - "pothos", - "yalc", - "@strapi/core", - "@strapi/i18n", - "@strapi/admin", - "@strapi/email", - "@strapi/types", - "@strapi/utils", - "@strapi/logger", - "@strapi/upload", - "@types/nodemon", - "@strapi/openapi", - "@strapi/database", - "@strapi/cloud-cli", - "@strapi/generators", - "get-latest-version", - "@strapi/permissions", - "@strapi/data-transfer", - "@strapi/content-manager", - "@strapi/content-releases", - "@strapi/review-workflows", - "@strapi/typescript-utils", - "@strapi/content-type-builder", - "@strapi/ts-zen", - "eslint-config-custom", - "@types/webpack-hot-middleware", - "strapi", - "cmf", - "content management framework", - "admin panel", - "koajs", - "jam", - "graphqL", - "infrastructure", - "self hosted", - "lernajs", - "snake-case", - "@types/svg-parser", - "http-status-emojis", - "tsparticles-plugin", - "@tsparticles/interaction", - "@tsparticles/move", - "tsparticles-shape", - "@tsparticles/updater", - "@aws-sdk/lib-storage", - "@aws-sdk/s3-presigned-post", - "express-interceptor", - "express-prom-bundle", - "grant", - "tus-js-client", - "webdav", - "resumable uploads", - "tus", - "dropbox", - "webpack-chain", - "@vuepress/types", - "vue-server-renderer", - "@vue/babel-preset-app", - "vuepress-plugin-container", - "vuepress-html-webpack-plugin", - "@types/diacritics", - "vuepress-plugin-smooth-scroll", - "detect-browser", - "@walletconnect/types", - "@walletconnect/safe-json", - "@walletconnect/window-getters", - "@walletconnect/window-metadata", - "@ethersproject/address", - "@types/lodash.isnumber", - "wallet", - "walletconnect", - "jsonrpc", - "cryptocurrency", - "dapp", - "@walletconnect/utils", - "@walletconnect/crypto", - "@walletconnect/legacy-types", - "@walletconnect/legacy-utils", - "@types/qrcode", - "@walletconnect/legacy-client", - "@walletconnect/jsonrpc-provider", - "@walletconnect/jsonrpc-http-connection", - "ethereum-test-network", - "@wordpress/element", - "wordpress", - "gutenberg", - "center", - "jasmine-co", - "jasmine-ts", - "selenium-mock", - "body scroll", - "body scroll lock", - "react scroll lock", - "react scroll", - "freeze", - "disable", - "overflow", - "vanilla-js", - "tablet", - "bsl", - "broccoli-node-info", - "resolve-path", - "@types/console-ui", - "@types/esm", - "@types/findup-sync", - "@types/sane", - "@types/underscore.string", - "broccoli-node-api", - "mocha-jshint", - "babel-plugin-optimize-starts-with", - "replacement", - "html4", - "invalid", - "color-name", - "is-whitespace", - "verb", - "mediaquery", - "csstree", - "completion", - "apollo-link-context", - "decap-cms", - "aws-cognito", - "what-the-diff", - "gotrue-js", - "git-gateway", - "gateway", - "napa", - "detector", - "tinydate", - "tweezer.js", - "medium-zoom", - "autoprefixer-stylus", - "rollup-plugin-async", - "eslint-plugin-playwright", - "creator", - "cp-file", - "yargonaut", - "docsify-server-renderer", - "cli-prompts-test", - "rollup-plugin-executable", - "ssr-window", - "eslint-config-standard-react", - "prettier-check", - "array-hyper-unique", - "crlf-normalize", - "book", - "books", - "chapter", - "comic", - "epub-maker", - "epub-maker2", - "node-novel", - "novel", - "volume", - "escaping", - "interpolate", - "goat", - "🐐", - "color-logger", - "ice-cap", - "esdoc-importpath-plugin", - "ECMAScript6", - "ECMAScript2015", - "ECMAScript7", - "ECMAScript2016", - "ECMAScript8", - "ECMAScript2017", - "proposal", - "mdc", - "developer", - "inter-element", - "white-space", - "whitespace", - "tagname", - "force", - "graceful-shutdown", - "http-shutdown", - "http-terminate", - "prometheus", - "icss", - "inferno-hyperscript", - "vnode", - "createVNode", - "gulp-rtlcss", - "postcss-preset-infima", - "dark mode", - "bootswatch", - "docstrap", - "@angular-devkit/build-angular", - "angular-eslint", - "github-files-fetcher", - "@stitches/react", - "animate-sass", - "postcss-trolling", - "vite-plugin-svgr", - "preview jest", - "log-utils", - "engine-base", - "engine-handlebars", - "lo", - "lo-dash", - "serve-index-75lb", - "lws-middleware", - "micromark-extension", - "tagfilter", - "dangerous", - "grunt-jasmine-node", - "mobilegrade", - "sniff", - "nth-child", - "nth", - "is-alphanumerical", - "is-decimal", - "is-hexadecimal", - "cssinjs", - "@wdio/selenium-standalone-service", - "babelrc-rollup", - "queryselector", - "shadowdom", - "gulp-streamify", - "rc-tools", - "tappable", - "hammer", - "@actions/core", - "@oclif/plugin-autocomplete", - "toposort", - "@readme/better-ajv-errors", - "@readme/standards", - "@types/toposort", - "@types/unzipper", - "goober", - "jest-esm-jsx-transform", - "parcel-plugin-css-to-string", - "use-throttled-effect", - "hex", - "color-picker", - "wai-aria", - "smart-tv", - "smarttv", - "simple-routing", - "nano-equal", - "shallow-equal-fuzzy", - "shouldComponentUpdate", - "quicklook", - "image-gallery", - "image-viewer", - "react-native-svg", - "progressindicator", - "circle", - "pie", - "progressbar", - "indeterminate", - "d3-interpolate-path", - "@react-native-community/bob", - "@storybook/react-native", - "eslint-plugin-react-native", - "youtube-iframe", - "iframe", - "@atomico/rollup-plugin-sizes", - "git-branch-is", - "react-spring", - "@bedrock-layout/use-forwarded-ref", - "@codecov/vite-plugin", - "@types/body-scroll-lock", - "get-nonce", - "@theuiteam/lib-builder", - "@tsparticles/shape-text", - "@tsparticles/updater-roll", - "@tsparticles/updater-tilt", - "@tsparticles/updater-wobble", - "@tsparticles/plugin-emitters", - "@tsparticles/updater-destroy", - "@tsparticles/updater-twinkle", - "@tsparticles/plugin-absorbers", - "@tsparticles/interaction-external-trail", - "@tsparticles/plugin-emitters-shape-circle", - "@tsparticles/plugin-emitters-shape-square", - "useRef", - "createRef", - "merge refs", - "detect-node-es", - "@types/enzyme-adapter-react-16", - "code spliting", - "sidecar", - "mutation-observer", - "copy-text-to-clipboard", - "svelte-loader", - "scss-loader", - "perfect-scroll", - "vue-perfect-scroll", - "vue-scroll", - "vue-scrollbar", - "vue-plugin", - "滚动条", - "@types/eslint-plugin-prettier", - "@types/form-data", - "is-uuid", - "rewrite-imports", - "serviceworker", - "convict", - "antora-component", - "@applitools/test-utils", - "applitools", - "eyes-sdk", - "test automation", - "visual regression", - "@dataui/crud-request", - "@dataui/crud-util", - "blob-to-buffer", - "drag drop", - "drag & drop", - "@expo/spawn-async", - "@parcel/core", - "@parcel/fs", - "@parcel/package-manager", - "@parcel/watcher", - "mnemonic-id", - "node-object-hash", - "@plasmohq/parcel-config", - "@plasmohq/parcel-core", - "@plasmohq/init", - "@plasmo/config", - "@plasmo/constants", - "@plasmo/utils", - "@plasmo/framework-shared", - "browser-extensions", - "@iconify/react", - "@types/events", - "static-server", - "@storybook/cli", - "less-plugin-sass2less", - "@storybook/addon-mdx-gfm", - "music", - "player", - "mse", - "eme", - "@arethetypeswrong/core", - "ts-expose-internals", - "dlv", - "dset", - "flattie", - "fontace", - "unifont", - "magicast", - "piccolore", - "unstorage", - "zod-to-ts", - "xxhash-wasm", - "yocto-spinner", - "@oslojs/encoding", - "@astrojs/compiler", - "@astrojs/telemetry", - "@capsizecss/unpack", - "http-cache-semantics", - "@astrojs/internal-helpers", - "deterministic-object-hash", - "@types/dlv", - "rehype-toc", - "astro-scripts", - "remark-code-titles", - "@types/common-ancestor-path", - "@types/http-cache-semantics", - "strata", - "fuzzysearch", - "sander", - "@web/test-runner-core", - "testrunner", - "ac-colors", - "hsv", - "lch", - "color-names", - "cmyk", - "mix", - "harmonies", - "expressots", - "clean-architecture", - "typescript-framework", - "@pagefind/default-ui", - "bcp-47", - "mdast-util-directive", - "linkedom", - "withastro", - "astro-integration", - "piña", - "pigna", - "tabbable", - "@floating-ui/utils", - "@radix-ui/react-checkbox", - "@radix-ui/react-icons", - "vitest-browser-react", - "@internal/test-utils", - "code-blocks", - "expressive-code", - "syntax-highlighting", - "netlify-cms", - "@types/deep-eql", - "@amaui/ui-react", - "amaui", - "firefoxos", - "onesy", - "@react-native-macos/virtualized-lists", - "@tsparticles/plugin-easing-quad", - "@tsparticles/updater-stroke-color", - "@tsparticles/interaction-external-pause", - "@tsparticles/interaction-external-bubble", - "@tsparticles/interaction-external-attract", - "@tsparticles/interaction-external-connect", - "@types/react-router", - "@backstage/backend-plugin-api", - "@backstage/config", - "@backstage/integration", - "express-promise-router", - "@backstage/backend-test-utils", - "@backstage/catalog-model", - "@backstage/cli", - "@backstage/plugin-catalog-common", - "@backstage/plugin-catalog-node", - "backstage", - "ci/cd", - "immobiliare", - "immobiliarelabs", - "rgv", - "@asteasolutions/zod-to-openapi", - "@trpc/server", - "eslint-import-resolver-custom-alias", - "resolve-tspaths", - "event-driven", - "blaze", - "qs-esm", - "dataloader", - "bson-objectid", - "console-table-printer", - "@payloadcms/translations", - "graphql-http", - "@types/range-parser", - "@monaco-editor/react", - "@payloadcms/eslint-config", - "@hyrious/esbuild-plugin-commonjs", - "content management", - "graphQL", - "@cfcs/core", - "@egjs/axes", - "@egjs/component", - "@egjs/imready", - "@egjs/list-differ", - "@daybrush/jsdoc", - "@egjs/flicking-plugins", - "@egjs/release-helper", - "@types/resize-observer-browser", - "egjs-jsdoc-template", - "html-to-react", - "http-serve", - "jsdoc-to-mdx", - "karma-typescript-es6-transform", - "postcss-clean", - "print-coveralls", - "print-sizes", - "pvu", - "rollup-plugin-prototype-minify", - "ts-mock-imports", - "ttypescript", - "flicking", - "egjs", - "body scroll lock upgrade", - "@ucast/mongo2js", - "@casl/dx", - "permissions", - "abac", - "rbac", - "ibac", - "cancan", - "@humanwhocodes/gitignore-to-minimatch", - "peowly", - "list-dependents-cli", - "rslog", - "@rslib/core", - "@modern-js/rslib", - "@modern-js/types", - "@scripts/rstest-config", - "modern", - "modern.js", - "@scripts/build", - "@scripts/jest-config", - "import-without-cache", - "unconfig-core", - "unrun", - "@publint/pack", - "@sxzz/eslint-config", - "@sxzz/prettier-config", - "@sxzz/test-utils", - "@unocss/eslint-plugin", - "@vitejs/devtools", - "rolldown-plugin-dts-snapshot", - "rolldown-plugin-require-cjs", - "unocss", - "unplugin-ast", - "unplugin-lightningcss", - "unplugin-unused", - "@types/decompress", - "@ckeditor/ckeditor5-comments", - "@ckeditor/ckeditor5-track-changes", - "CKEditor", - "WYSIWYG", - "WYSIWYW", - "rich-text", - "fast-equals", - "glob2regx", - "ckeditor5-collaboration", - "@ckeditor/ckeditor5-revision-history", - "@ckeditor/ckeditor5-operations-compressor", - "@ckeditor/ckeditor-cloud-services-collaboration", - "@grammyjs/types", - "deno2node", - "@udecode/plate-utils", - "@loki/integration-react", - "@loki/integration-react-native", - "@loki/integration-vue", - "@loki/runner", - "@loki/target-chrome-app", - "@loki/target-chrome-docker", - "@loki/target-native-android-emulator", - "@loki/target-native-ios-simulator", - "storybook-addons", - "react-storybook", - "visual testing", - "emoji-datasource", - "@fastify/static", - "graphql-jit", - "mqemitter", - "single-user-cache", - "tiny-lru", - "@matteo.collina/snap", - "@types/isomorphic-form-data", - "graphql-ws", - "blue-tape", - "events.once", - "xhr2-cookies", - "convex", - "mock-spawn", - "@fastify/pre-commit", - "@reporters/silent", - "desm", - "gulp-better-rollup", - "Leaflet", - "Maps", - "Gesture", - "Handling", - "two", - "fingers", - "@tanstack/vue-virtual", - "@testing-library/vue", - "@fast-check/vitest", - "@types/eslint-config-prettier", - "prettier-plugin-pkg", - "prettier-plugin-sh", - "algo", - "@oxc-node/cli", - "eslint-plugin-redos-detector", - "tsm", - "bundle-size", - "@iconify/vue", - "@internationalized/date", - "@internationalized/number", - "@nuxt/fonts", - "@nuxt/icon", - "@nuxt/kit", - "@nuxt/schema", - "@nuxtjs/color-mode", - "@tanstack/vue-table", - "@tiptap/core", - "@tiptap/extension-bubble-menu", - "@tiptap/extension-code", - "@tiptap/extension-collaboration", - "@tiptap/extension-drag-handle", - "@tiptap/extension-drag-handle-vue-3", - "@tiptap/extension-floating-menu", - "@tiptap/extension-horizontal-rule", - "@tiptap/extension-image", - "@tiptap/extension-mention", - "@tiptap/extension-node-range", - "@tiptap/extension-placeholder", - "@tiptap/markdown", - "@tiptap/pm", - "@tiptap/starter-kit", - "@tiptap/suggestion", - "@tiptap/vue-3", - "@vueuse/shared", - "colortranslator", - "embla-carousel-auto-height", - "embla-carousel-auto-scroll", - "embla-carousel-autoplay", - "embla-carousel-class-names", - "embla-carousel-fade", - "embla-carousel-vue", - "embla-carousel-wheel-gestures", - "knitwork", - "motion-v", - "reka-ui", - "tailwind-variants", - "unplugin-auto-import", - "unplugin-vue-components", - "vaul-vue", - "vue-component-type-helpers", - "@nuxt/eslint-config", - "@nuxt/module-builder", - "@nuxt/test-utils", - "@tanstack/table-core", - "ai", - "vitest-environment-nuxt", - "nuxt-ui", - "ui-framework", - "country-code", - "country-codes", - "country-flags", - "country-names", - "country-telephone-codes", - "country-telephone-prefixes", - "countries", - "country-iso-codes", - "iso", - "iso-codes", - "iso-country-codes", - "iso-country-names", - "iso-country-telephone-codes", - "iso-country-telephone-prefixes", - "iso-countries", - "emoji-flags", - "phone-codes", - "phone-prefixes", - "telephone-codes", - "telephone-prefixes", - "world-countries", - "world-country-codes", - "world-country-flags", - "world-country-names", - "world-country-telephone-codes", - "world-country-telephone-prefixes", - "world-iso-codes", - "world-iso-country-codes", - "world-iso-country-names", - "@zoroaster/assert", - "@zoroaster/mask", - "alamode", - "@a-la/fixture-alamode", - "@a-la/fixture-babel", - "@artdeco/clean-stack", - "@artdeco/erte", - "@artdeco/scripts.json", - "@depack/render", - "@wrote/exists", - "@wrote/rm", - "@zoroaster/reducer", - "@zoroaster/types", - "argufy", - "catchment", - "documentary", - "erotic", - "eslint-config-artdeco", - "makepromise", - "promto", - "reloquent", - "snapshot-context", - "spawncommand", - "temp-context", - "usually", - "yarn-s", - "IDE", - "suggestions", - "intellisense", - "assistant-cloud", - "@assistant-ui/tap", - "@assistant-ui/store", - "@radix-ui/primitive", - "@radix-ui/react-compose-refs", - "@radix-ui/react-context", - "@radix-ui/react-dropdown-menu", - "@radix-ui/react-popover", - "@radix-ui/react-primitive", - "@radix-ui/react-use-callback-ref", - "@radix-ui/react-use-escape-keydown", - "assistant-stream", - "@assistant-ui/x-buildutils", - "radix-ui", - "ai-sdk", - "assistant", - "openai", - "chatbot", - "copilot", - "ai-chat", - "ai-chatbot", - "ai-assistant", - "ai-copilot", - "chatgpt", - "gpt4", - "gpt-4", - "conversational-ui", - "conversational-ai", - "graphiql", - "radash", - "@a2a-js/sdk", - "js-tiktoken", - "@lukeed/uuid", - "hono-openapi", - "@isaacs/ttlcache", - "@ai-sdk/provider-v5", - "@ai-sdk/provider-v6", - "@ai-sdk/ui-utils-v5", - "@mastra/schema-compat", - "@ai-sdk/provider-utils-v5", - "@ai-sdk/provider-utils-v6", - "@ai-sdk/azure", - "@ai-sdk/openai", - "@internal/lint", - "@internal/ai-v6", - "@internal/ai-sdk-v4", - "@internal/ai-sdk-v5", - "@internal/types-builder", - "@internal/external-types", - "@openrouter/ai-sdk-provider", - "llm", - "llms", - "agents", - "vectorstore", - "embeddings", - "rag", - "evals", - "otel", - "@tailwindcss/ui", - "@types/sortablejs", - "vue-next", - "draggable", - "drag-and-drop", - "vue-draggable", - "kanban", - "composition-api", - "@oxc-project/runtime", - "hmac256", - "hmac512", - "@ant-design/pro-components", - "@anthropic-ai/sdk", - "@azure-rest/ai-inference", - "@cfworker/json-schema", - "@clerk/localizations", - "@clerk/nextjs", - "@clerk/themes", - "@cyntler/react-doc-viewer", - "@fal-ai/client", - "@formkit/auto-animate", - "@google/genai", - "@huggingface/inference", - "@icons-pack/react-simple-icons", - "@khmyznikov/pwa-install", - "@langchain/community", - "@lobechat/agent-runtime", - "@lobechat/const", - "@lobechat/context-engine", - "@lobechat/database", - "@lobechat/electron-client-ipc", - "@lobechat/electron-server-ipc", - "@lobechat/fetch-sse", - "@lobechat/file-loaders", - "@lobechat/model-runtime", - "@lobechat/observability-otel", - "@lobechat/prompts", - "@lobechat/python-interpreter", - "@lobechat/utils", - "@lobechat/web-crawler", - "@lobehub/analytics", - "@lobehub/charts", - "@lobehub/chat-plugin-sdk", - "@lobehub/chat-plugins-gateway", - "@lobehub/editor", - "@lobehub/icons", - "@lobehub/market-sdk", - "@lobehub/tts", - "@lobehub/ui", - "@neondatabase/serverless", - "@next/third-parties", - "@opentelemetry/exporter-jaeger", - "@opentelemetry/winston-transport", - "@react-pdf/renderer", - "@react-spring/web", - "@saintno/comfyui-sdk", - "@serwist/next", - "@t3-oss/env-nextjs", - "@trpc/client", - "@trpc/next", - "@trpc/react-query", - "@vercel/analytics", - "@vercel/edge-config", - "@vercel/functions", - "@vercel/speed-insights", - "@virtuoso.dev/masonry", - "@xterm/xterm", - "brotli-wasm", - "countries-and-timezones", - "dexie", - "drizzle-orm", - "drizzle-zod", - "gpt-tokenizer", - "i18next-resources-to-backend", - "js-sha256", - "jsonl-parse-stringify", - "langchain", - "langfuse", - "langfuse-core", - "lucide-react", - "markdown-to-txt", - "model-bank", - "modern-screenshot", - "next-mdx-remote", - "nextjs-toploader", - "nuqs", - "officeparser", - "oidc-provider", - "ollama", - "partial-json", - "path-browserify-esm", - "pdf-parse", - "plaiceholder", - "posthog-js", - "pwa-install-handler", - "react-confetti", - "react-hotkeys-hook", - "react-layout-kit", - "react-pdf", - "react-rnd", - "react-scan", - "react-virtuoso", - "react-wrap-balancer", - "resolve-accept-language", - "rtl-detect", - "ssrf-safe-fetch", - "svix", - "tokenx", - "ts-md5", - "unstructured-client", - "use-merge-value", - "word-extractor", - "zustand-utils", - "@huggingface/tasks", - "@lobehub/i18n-cli", - "@lobehub/lint", - "@lobehub/market-types", - "@lobehub/seo-cli", - "@next/bundle-analyzer", - "@peculiar/webcrypto", - "@types/chroma-js", - "@types/crypto-js", - "@types/ip", - "@types/numeral", - "@types/oidc-provider", - "@types/pdfkit", - "@types/pg", - "@types/rtl-detect", - "dbdocs", - "dpdm-fast", - "drizzle-dbml-generator", - "drizzle-kit", - "eslint-plugin-mdx", - "fake-indexeddb", - "just-diff", - "mcp-hello-world", - "remark-mdx", - "serwist", - "vercel-ai", - "azure-openai", - "visual-model", - "tts", - "stt", - "modelcontextprotocol", - "mcp", - "context7", - "vibe-coding", - "developer tools", - "@types/istanbul-lib-report", - "@walletconnect/time", - "@walletconnect/events", - "label", - "better-npm-run", - "clamp.js", - "karma-fixture", - "karma-opera-launcher", - "minimalistic", - "@types/webrtc", - "detectrtc", - "install-peers-cli", - "prepend-file", - "camera", - "webcam", - "cam", - "webRTC", - "react-native-worklets", - "visionOS", - "tvOS", - "macOS", - "cpp", - "swift", - "jsi", - "@antfu/ni", - "@dotenvx/dotenvx", - "@types/validate-npm-package-name", - "stringify-object", - "@types/stringify-object", - "virtual-core", - "datagrid", - "2fa", - "hotp", - "topt", - "google authenticator", - "authenticator", - "one time password", - "one-time-password", - "2 factor", - "survey", - "surveyjs", - "survey-library", - "form-component", - "form-rendering", - "survey-renderer", - "dynamic-form", - "interactive-form", - "form-library", - "form-management", - "questionnaire", - "data-collection", - "data-validation", - "input-validation", - "ui-component", - "schema-form", - "base64-stream", - "bplist-creator", - "@mrleebo/prisma-ast", - "@electric-sql/pglite-socket", - "@prisma/query-plan-executor", - "common-stuff", - "accelerate", - "@aws-lite/client", - "@aws-lite/s3", - "@architect/eslint-config", - "mock-tmp", - "tap-arc", - "cloudfunctions", - "apigateway", - "api gateway", - "@webgpu/types", - "@tinymce/tinymce-react", - "n1ed", - "@headlessui/tailwindcss", - "@heroicons/react", - "@tailwindplus/elements", - "@types/sharp", - "react-docgen-typescript", - "react-lib-tools", - "rollup-preserve-directives", - "ts-blank-space", - "vitest-fail-on-console", - "windowed", - "@extend-chrome/messages", - "@extend-chrome/storage", - "@types/chrome", - "@types/jsesc", - "vite-plugin-inspect", - "chrome-extension", - "webext", - "webextension", - "browser-extension", - "isoformat", - "interval-tree-1d", - "htl", - "@types/d3", - "apache-arrow", - "d3-geo-projection", - "@observablehq/stdlib", - "string-split-by", - "cargo-cp-artifact", - "skia", - "offscreen", - "compositing", - "vulkan", - "metal", - "flmngr", - "imgpen", - "unsplash", - "@types/listr", - "markdown-to-pdf", - "pdf-generation", - "assignments", - "homework", - "html-to-pdf", - "@applitools/core", - "@applitools/logger", - "@applitools/req", - "@applitools/snippets", - "@applitools/image", - "@applitools/spec-driver-webdriver", - "@antora/user-require-helper", - "kapok-js", - "@asciidoctor/core", - "@antora/asciidoc-loader", - "navigation", - "asciidoc", - "pod-install", - "pinch-to-zoom", - "pinch", - "@farmfe/cli", - "@farmfe/core", - "bun-types-no-globals", - "eslint-plugin-format", - "unloader", - "redirects", - "@antora/file-publisher", - "publisher", - "vite-plugin-dts-bundle-generator", - "vite-plugin-pages", - "vite-plugin-typescript", - "vite-plugin-typescript-transform", - "box2d", - "game", - "physics", - "2d", - "replace-in-files-cli", - "sandboxed-module", - "oxc", - "exact-versions", - "turborepo", - "version-linter", - "@jsdevtools/ez-spawn", - "@napi-rs/magic-string", - "@pnpm/list", - "@pnpm/workspace.find-packages", - "@types/treeverse", - "@types/yarnpkg__lockfile", - "fast-npm-meta", - "@nolyfill/internal", - "@nolyfill/promise.any", - "fumadb", - "kysely", - "@orpc/zod", - "@orpc/otel", - "neverthrow", - "@c15t/logger", - "@orpc/server", - "@orpc/openapi", - "@orpc/contract", - "@c15t/translations", - "@opentelemetry/sdk-node", - "kysely-pglite", - "@c15t/vitest-config", - "@libsql/kysely-libsql", - "@c15t/typescript-config", - "consent", - "privacy", - "ccpa", - "lgpd", - "self-host", - "consent-management", - "user-privacy", - "data-protection", - "cookie-banner", - "consent-management-platform", - "cmp", - "consent-banner", - "@ampproject/rollup-plugin-closure-compiler", - "@fezvrasta/tsc-silent", - "@khanacademy/flow-to-ts", - "babel-plugin-inline-replace-variables", - "poster", - "rollup-plugin-flow-entry", - "popper", - "positioning engine", - "anime", - "anime.js", - "timeline", - "easings", - "cubic-bezier", - "splitText", - "WAAPI", - "Canvas", - "WebGL", - "decrypt", - "ev-emitter", - "fizzy-ui-utils", - "get-size", - "imagesloaded", - "unidragger", - "eslint-plugin-metafizzy", - "jquery-bridget", - "flick", - "gulp-wrap-commonjs", - "lex", - "maths", - "persist-schema", - "jugglingdb", - "panorama", - "rip-out", - "eslint-config-godaddy-react", - "setup-env", - "compatiblity", - "rollup-plugin-eslint", - "rollup-plugin-sass", - "testit", - "gethub", - "bits", - "iec" - ], - [5, 293, 294], - [0, -3015, -3016, -3017, -3018], - 1771718400000, - 1771113600000, - 1770508800000, - [0], - 1772323200000, - 1772409600000, - 1772064000000, - 1771804800000, - [1, 24, 619], - [1, 3, 621], - [0, -519, -2384, -2541], - [0, -3040, -3052, -1031, -2006, -2019, -2410], - [0, -3095, -3098, -3099, -3161, -3100, -2006, -3159, -3160, -2494], - [1, 3, 440], - [1, 3, 1832], - [0, -3488, -681, -3489, -3490, -3491, -3492], - [1, 3, 1826], - [0, -3220], - [0, -1889], - [0, -424], - [0, -3557, -3018], - true, - [1, 3, 622], - [0, -1654], - [0, -2006, -2019], - [0, -4298, -4300, -2319], - [1, 3, 1783], - [0, -2322], - [1, 24, 585], - [0, -2387], - [0, -1548], - [0, -531], - [0, -7841], - [0, -2410], - [0, -932], - [0, -44], - [0, -1787], - [0, -2006], - [0, -856, -3262, -2476, -2816], - [1, 3, 674], - [ - 0, -18, -19, -471, -487, -498, -504, -577, -588, -590, -591, -592, -603, -604, -605, -5421, -606, -607, -608, - -609, -610, -5422, -611, -612, -613, -5423, -626, -631, -643, -660, -663, -5424, -670, -676, -5425, -5426, - -5427, -5428, -5429, -804, -830, -833, -836, -998, -5430, -5431, -1019, -1020, -1095, -1121, -5432, -1280, - -1282, -1307, -1308, -5433, -1378, -1511, -1512, -1513, -5434, -1516, -1584, -1596, -5435, -1615, -5436, -1648, - -1679, -1684, -1695, -1720, -1799, -5437, -1803, -1822, -1869, -1886, -5438, -1994, -2067, -5439, -2158, -2169, - -5440, -5441, -2196, -2201, -2203, -2209, -2217, -2237, -5442, -2238, -2252, -5443, -2256, -2290, -5444, -2296, - -2298, -2309, -2348, -2366, -2370, -5445, -5446, -5447, -2426, -5448, -5449, -2527 - ], - [0, -18, -19, -676, -1994, -2426], - [1, 3, 1519], - [1, 3, 2972], - [0, -2501], - [0, -9219], - [0, -775, -1889, -3583], - [0, -23, -3219], - [1, 3, 1044], - [1, 3, 1396], - [1, 3, 1875], - [0, -519, -2541], - [0, -1654, -1941], - [0, -4633, -3445, -3100, -7566], - [0, -15394, -15395, -4276, -15396, -3162, -6935, -2494, -770, -15397, -15398], - [0, -3488, -681, -3489, -3518, -3492], - [0, -1934], - [1, 3, 623], - [1, 24, 645], - [ - 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -3959, -910, -3960, -3262, -3961, -3962, -3963, -1376, -3964, - -3965, -3214, -3824, -3966, -3967, -1965, -3968, -1966, -3969, -2063, -3970, -3971, -3108, -3972, -3973, -3974, - -3975, -3160, -3976, -2559, -3977 - ], - [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -4339, -4340], - [0, -2476, -3944, -3100, -4590, -3098, -4591, -4592, -4593, -4594], - [1, 3, 1380], - [ - 0, -18, -19, -471, -498, -504, -577, -588, -590, -591, -592, -603, -604, -605, -606, -607, -608, -609, -5423, - -626, -631, -660, -663, -670, -676, -5426, -5429, -804, -830, -833, -836, -998, -5431, -1095, -1121, -5432, - -1280, -1282, -1308, -5433, -1511, -1512, -1513, -1516, -1584, -1596, -1615, -1648, -1679, -1684, -1695, -1720, - -1799, -5437, -1803, -1822, -1869, -1886, -5438, -1994, -2169, -5441, -2201, -2203, -2209, -2217, -2237, -5442, - -2238, -2252, -2256, -2290, -5444, -2296, -2298, -2309, -2348, -2366, -2370, -5445, -5446, -5447, -2426, -5448, - -5449 - ], - [ - 0, -18, -19, -467, -471, -487, -498, -504, -6147, -575, -577, -588, -590, -591, -592, -6148, -603, -604, -605, - -5421, -606, -607, -608, -609, -610, -5422, -611, -612, -613, -6149, -5423, -625, -626, -6150, -631, -6151, - -643, -660, -663, -5424, -670, -675, -676, -5425, -5426, -6152, -6153, -5427, -5428, -5429, -804, -830, -833, - -6154, -836, -842, -890, -998, -5430, -6155, -5431, -1019, -1020, -1035, -1073, -1084, -6156, -1095, -1117, - -1120, -1121, -5432, -1279, -1280, -1282, -1295, -1307, -1308, -1314, -6157, -5433, -1378, -6158, -6159, -1511, - -1512, -1513, -5434, -1516, -6160, -1584, -6161, -1596, -5435, -1615, -5436, -1648, -1677, -6162, -6163, -1678, - -1679, -1684, -1695, -6164, -1720, -1799, -5437, -1803, -1822, -6165, -1865, -1869, -1886, -5438, -1994, -2067, - -5439, -6166, -2158, -2159, -2164, -2169, -5440, -6167, -5441, -6168, -2196, -2201, -2203, -2208, -2209, -2217, - -2221, -2224, -2225, -2237, -5442, -6169, -2238, -2241, -2252, -5443, -2256, -6170, -2288, -2290, -5444, -2296, - -2298, -2309, -2315, -2348, -6171, -6172, -2366, -2370, -5445, -5446, -5447, -2426, -2431, -2458, -5448, -6173, - -6174, -2496, -2497, -5449, -6175, -2527 - ], - [1, 3, 2681], - [0, -1654, -2198], - [0, -2319], - [0, -2460], - [0, -4864, -3214, -11467, -11468, -5270, -5271, -15723, -3634], - [1, 3, 308], - [0, -719], - [0, -4362], - [ - 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, - -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, - -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, - -5186, -5187, -5188, -5189 - ], - [1, 3, 1342], - [1, 3, 1453], - [1, 3, 1877], - [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293], - [1, 3, 2054], - [0, -1754], - [0, -2471], - [0, -3214, -8058, -8059, -4004, -3476, -2006, -1062, -3634, -8060, -8061, -4873, -1654], - [0, -2250], - [0, -5334], - [0, -1202, -1654], - [0, -1406], - [0, -1931], - [0, -3037], - [0, -3037, -652, -1942, -2094, -2100, -2399, -2410, -2541], - [0, -3161, -3481, -3098, -3162, -14919], - [0, -1967], - [0, -2410, -2409, -11398, -5406, -3691, -5728, -3690, -10796, -15307, -3445, -15308], - [1, 3, 10143], - [ - 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, - -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, - -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, - -5186, -5187, -5188, -5189, -15364, -15365 - ], - [ - 0, -3577, -3100, -2808, -5157, -5158, -659, -5159, -5160, -5161, -5155, -5164, -5165, -2410, -3214, -5176, - -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -15367 - ], - [ - 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, - -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, - -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, - -5186, -5187, -5188, -5189, -15364, -15368 - ], - [1, 3, 10608], - [0, -23], - [0, -3510, -3488, -681, -3489, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161], - [1, 24, 583], - [0, -1599, -3670, -3671, -3672, -856, -3673, -3674, -3262], - [0, -3770, -906, -2006, -775, -3771], - [0, -2080], - [ - 0, -519, -525, -4005, -4037, -1001, -4038, -4039, -4040, -1412, -1415, -1449, -1654, -4041, -4042, -1989, -4043, - -4044, -4045, -2319, -2322, -4004, -3634, -2410, -2490 - ], - [0, -703], - [0, -475, -856, -3262, -4258, -4259, -3690, -4260, -4261], - [0, -3158, -3095, -3098, -3099, -3161, -3100, -2006, -3159, -3160], - [0, -5014, -5015, -5016, -5017, -5018, -5019, -5020, -5021, -5022, -5023, -5024], - [0, -2469, -3664], - [0, -3262, -5355, -2501, -2006, -5371, -5372, -1599, -3098, -856], - [0, -1654, -664], - [0, -3037, -519, -2384, -2541], - [0, -567], - [0, -2267], - [0, -2541], - [0, -7475], - [0, -3136, -3037, -427, -428, -932, -940, -7476, -948, -958, -1415, -1942, -2375, -2391, -2402, -2410], - [0, -1415, -932, -2125, -2375, -190, -2410, -3136, -3037, -7742, -2411, -428, -427], - [0, -2320, -2322], - [0, -932, -1654], - [0, -1645], - [0, -932, -937, -1001, -1654, -1788], - [0, -1127, -1134, -1144, -1143, -1146], - [0, -1127, -1134, -1143, -1144, -1146], - [0, -664, -1654], - [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788], - [0, -756, -932, -940, -1344, -1415, -1534, -1889, -1942], - [0, -3037, -2410], - [ - 0, -664, -1654, -2379, -2501, -21, -23, -5870, -3035, -3136, -3037, -1771, -2503, -3621, -39, -43, -40, -15393, - -42 - ], - [0, -8096, -14182, -652, -725, -1942, -2094, -2100, -2125, -2322, -2399, -2410, -2541], - [0, -12449, -12613, -13616, -13615, -8897, -2363, -3214, -2410, -2006, -2476, -2299, -9608], - [0, -3951, -2410], - [1, 3, 313], - [0, -3183, -525, -3184, -3185, -3186, -526, -3116], - [0, -3183, -525, -3205, -3206, -3184, -3207, -3208, -3209, -3185, -3186, -3210, -527, -3116], - [0, -24], - [0, -753, -2082], - [ - 0, -3417, -3418, -3419, -3420, -3421, -3422, -3423, -714, -1028, -1039, -1107, -1442, -1449, -3424, -1600, - -3245, -1601, -3425, -3426, -1602, -3427, -3428, -3429, -3430, -1616, -1689, -3431, -3432, -1955, -1974, -1978, - -3433, -3434, -2446, -3435, -2550 - ], - [0, -2281, -3436, -2284], - [0, -687, -1599, -3437, -3438, -3328, -3439, -3440, -3441, -856, -3262], - [0, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161, -3510, -3488, -681, -3489], - [ - 0, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161, -3488, -681, -3489, - -3518, -3492 - ], - [0, -739, -721, -687], - [0, -3499, -475, -856, -3098, -3551, -3552, -3015, -1599], - [0, -775, -2162, -3575, -3576, -3577, -3161, -3578], - [0, -3634, -3440, -793, -3635, -3636], - [0, -3812, -3813, -3814, -3815, -3816, -3817, -856, -3818], - [0, -3821, -3822, -3823, -3824, -3825, -3826, -2006, -2019], - [0, -3836], - [0, -3827, -3837, -3838, -3167, -3839, -620], - [ - 0, -3136, -3037, -427, -428, -932, -933, -935, -940, -958, -959, -962, -967, -1415, -1424, -1942, -2375, -2376, - -2379, -2402, -2410 - ], - [0, -3161, -1334, -3690, -3578], - [0, -3037, -928, -1942, -2319, -2386, -2402], - [0, -687, -3958, -3999, -3099, -4000, -4001, -4002], - [ - 0, -1535, -1536, -687, -4107, -4108, -4109, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, - -4116, -4117 - ], - [1, 3, 825], - [0, -2006, -3159, -3119, -1613], - [0, -4055, -3690, -4140, -4141, -4142, -4143, -4144, -2410, -3018, -3445, -3577], - [0, -4165, -856, -4100, -3485, -4156, -3215, -2250], - [0, -4328, -4329, -1105, -4330, -1599, -3437, -856, -4331, -3264, -1764], - [0, -4332, -4335, -4345, -4346, -4340, -4347], - [0, -4332, -4336, -4337, -4338, -4339, -4340, -4344], - [0, -234, -3044, -5011, -3738, -865, -985, -1771, -1788, -5012, -2376, -5013, -2392, -2469, -2503, -2509], - [0, -5096], - [0, -5141, -4601, -4602, -3578, -3445], - [0, -5140], - [0, -3497, -3496, -3161, -3264, -5246, -3862, -3495, -5247, -3494], - [0, -433, -436], - [0, -1788, -1654, -932, -821, -966, -958, -968, -943, -963, -974], - [0, -475, -3161, -4865, -5495], - [0, -3690, -489, -4100, -856, -3691, -5728], - [0, -1047], - [1, 3, 1788], - [0, -2155], - [0, -581, -5110, -6120, -3173, -6129, -6130, -770], - [1, 3, 1820], - [1, 3, 1876], - [1, 3, 1878], - [0, -1309], - [0, -1592, -1654, -664], - [0, -6657, -6658, -4868, -4004, -6659], - [0, -2231], - [0, -6689, -2115], - [0, -714], - [0, -3966, -3957, -6722, -687, -4002, -6723, -6724, -4112, -714, -4672], - [0, -3214, -6784, -711, -3116], - [0, -2337], - [0, -465, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293], - [0, -711], - [0, -856, -1599], - [0, -865], - [0, -891], - [0, -5558, -3591, -633, -6340, -6408, -6916, -3870], - [0, -932, -8163, -727, -8164, -3214, -4900, -4795, -8165, -6434, -8166], - [0, -932, -5208, -3784], - [0, -429], - [0, -932, -5208, -3784, -3966, -3967, -3217, -7094, -6656, -1847, -6024, -4792], - [0, -932, -3784, -5208, -2006], - [0, -426], - [0, -1004, -3161, -6125, -3578, -1334, -3691, -5728, -3122, -3994, -3690], - [0, -1107, -5064, -5922, -8528], - [0, -1543, -2168], - [0, -1654, -2125, -2250], - [0, -1127, -1144], - [0, -510, -2125], - [0, -9219, -1654, -4004], - [0, -1127, -1132, -2541], - [0, -519, -1168, -1825, -2460, -2541], - [0, -2347], - [0, -1252, -1654, -2198, -2460], - [0, -2347, -1876], - [0, -1876, -2347], - [0, -519, -1825, -2460, -2541], - [0, -3037, -652, -1294, -1942, -2094, -2100, -2399, -2410, -2541], - [0, -1696, -596], - [0, -707, -1510], - [0, -1580], - [0, -1386, -9944, -9945, -3162, -3994, -9946, -752, -5269, -1861], - [0, -519, -9982, -2384, -2541], - [0, -4004, -3634, -1412, -4873, -3440], - [0, -4034], - [0, -5092, -3264, -5388, -5387], - [0, -1452], - [0, -2518], - [0, -1646], - [0, -1523, -10558, -5827, -7685, -7773, -4634, -6005, -4055], - [0, -3326, -351, -3266, -652, -932, -943, -1600, -3668, -1654, -2127], - [0, -4792, -6137, -6138, -6134, -9405, -11114, -4004, -4215, -8611], - [0, -1127], - [0, -687, -3957, -11725, -3673, -1764, -11726, -11727, -8907, -10227, -5921, -4107], - [ - 0, -3994, -1805, -1810, -11816, -11817, -11818, -11819, -11820, -11821, -7095, -4865, -3496, -7237, -7863, - -2435, -11822, -7303, -4377, -7091, -8421, -6599, -1958, -3258, -6656 - ], - [0, -6748, -4377, -5829, -3215, -6747, -687, -3957], - [0, -1654, -664, -666], - [0, -1841, -6120, -8449, -3173, -8450, -6121, -1791, -11437], - [0, -2541, -519, -2384], - [0, -1859, -11878, -11613], - [1, 3, 6920], - [0, -523], - [0, -635, -1934], - [1, 3, 7131], - [1, 3, 7300], - [0, -2006, -12452], - [0, -2006, -2034, -5271, -5270, -3162, -7085, -12561, -12562], - [1, 3, 7605], - [0, -2006, -3122, -10470, -9843, -1306, -10606], - [1, 3, 7706], - [1, 3, 7712], - [0, -2384, -2541], - [0, -12913], - [0, -2127, -12913, -4795, -1764, -3209], - [0, -2006, -3161, -1713, -3578, -3844, -3966, -3577, -3445, -687, -2455], - [1, 3, 8114], - [1, 3, 8321], - [1, 3, 8373], - [0, -9214, -2359, -2330, -13745, -6909, -11846, -13746], - [0, -2410, -856, -3262], - [0, -2444], - [0, -3100, -3161, -6211, -14339, -14340, -2466], - [0, -14357], - [0, -3113, -7646, -7641, -3673, -687, -3970, -3108, -3960, -3262, -3976, -3994], - [0, -3214, -3100, -2006, -3481], - [1, 24, 9789], - [0, -2662], - [1, 24, 10023], - [0, -1386, -3161, -2006, -3162, -3994, -9946, -3995, -752, -3997, -3998], - [0, -15309], - [1, 3, 10151], - [0, -856, -3262, -2476], - [ - 0, -15415, -15416, -15417, -15418, -11853, -10655, -15419, -6711, -15420, -15421, -4126, -15071, -2006, -15422, - -475, -2476, -5270, -3162, -11321, -15423, -15424 - ], - [0, -4258, -7641, -3100, -4865, -6342, -9290], - [0, -15445, -3445], - [0, -3037, -652, -1942, -2094, -2100, -2384, -2399, -2410, -2541], - [0, -1368], - [0, -525, -2006, -1368, -3161, -4729, -9850, -9613], - [0, -15627, -14386, -15628, -15629, -15630, -4864, -3634, -3636], - [1, 3, 10609], - [0, -15699, -3967, -6209, -2410, -15700, -15701, -3161, -11894], - [1, 3, 10660], - [1, 3, 10677], - [1, 3, 10691], - [1, 3, 10722], - [0, -1313, -3445, -15751, -15752, -3161, -9840], - [0, -2006, -3161, -15804, -15805], - [0, -1415, -932, -2127, -2375, -1942, -2410, -3136, -940, -967, -1419, -428, -427], - [ - 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -3959, -910, -3960, -3262, -3961, -3962, -3963, -1376, -3964, - -3965, -3214, -3824, -3966, -3967, -1965, -3968, -1966, -3969, -2063, -3970, -3971, -3108, -3972, -3973, -3974, - -3975, -3694, -2410, -3160, -3976, -2559, -3977 - ], - [ - 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, - -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, - -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, - -5186, -5187, -5188, -5189, -15364 - ], - [1, 3, 10858], - [0, -231, -2900], - [1, 24, 11236], - [ - 0, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, - -24, -25, -26, -27, -28, -29, -30, -31, -32, -33, -34, -35, -36, -37, -38, -39, -40, -41, -42, -43, -44, -45, - -46, -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -61, -62, -63, -64, -65, -66, -67, - -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -81, -82, -83, -84, -85, -86, -87, -88, -89, - -90, -91, -92, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -103, -104, -105, -106, -107, -108, -109, - -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, - -128, -129, -130, -131, -132, -133, -134, -135, -136, -137, -138, -139, -140, -141, -142, -143, -144, -145, - -146, -147, -148, -149, -150, -151, -152, -153, -154, -155, -156, -157, -158, -159, -160, -161, -162, -163, - -164, -165, -166, -167, -168, -169, -170, -171, -172, -173, -174, -175, -176, -177, -178, -179, -180, -181, - -182, -183, -184, -185, -186, -187, -188, -189, -190, -191, -192, -193, -194, -195, -196, -197, -198, -199, - -200, -201, -202, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -215, -216, -217, - -218, -219, -220, -221, -222, -223, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, -235, - -236, -237, -238, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, -253, - -254, -255, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, -270, -271, - -272, -273, -274, -275, -276, -277, -278, -279, -280, -281, -282, -283, -284, -285, -286, -287, -288, -289, - -290, -291, -292, -293, -294, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -305, -306, -307, - -308, -309, -310, -311, -312, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, - -326, -327, -328, -329, -330, -331, -332, -333, -334, -335, -336, -337, -338, -339, -340, -341, -342, -343, - -344, -345, -346, -347, -348, -349, -350, -351, -352, -353, -354, -355, -356, -357, -358, -359, -360, -361, - -362, -363, -364, -365, -366, -367, -368, -369, -370, -371, -372, -373, -374, -375, -376, -377, -378, -379, - -380, -381, -382, -383, -384, -385, -386, -387, -388, -389, -390, -391, -392, -393, -394, -395, -396, -397, - -398, -399, -400, -401, -402, -403, -404, -405, -406, -407, -408, -409, -410, -411, -412, -413, -414, -415, - -416, -417, -418, -419, -420, -421, -422, -423, -424, -425, -426, -427, -428, -429, -430, -431, -432, -433, - -434, -435, -436, -437, -438, -439, -440, -441, -442, -443, -444, -445, -446, -447, -448, -449, -450, -451, - -452, -453, -454, -455, -456, -457, -458, -459, -460, -461, -462, -463, -464, -465, -466, -467, -468, -469, - -470, -471, -472, -473, -474, -475, -476, -477, -478, -479, -480, -481, -482, -483, -484, -485, -486, -487, - -488, -489, -490, -491, -492, -493, -494, -495, -496, -497, -498, -499, -500, -501, -502, -503, -504, -505, - -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -517, -518, -519, -520, -521, -522, -523, - -524, -525, -526, -527, -528, -529, -530, -531, -532, -533, -534, -535, -536, -537, -538, -539, -540, -541, - -542, -543, -544, -545, -546, -547, -548, -549, -550, -551, -552, -553, -554, -555, -556, -557, -558, -559, - -560, -561, -562, -563, -564, -565, -566, -567, -568, -569, -570, -571, -572, -573, -574, -575, -576, -577, - -578, -579, -580, -581, -582, -583, -584, -585, -586, -587, -588, -589, -590, -591, -592, -593, -594, -595, - -596, -597, -598, -599, -600, -601, -602, -603, -604, -605, -606, -607, -608, -609, -610, -611, -612, -613, - -614, -615, -616, -617, -618, -619, -620, -621, -622, -623, -624, -625, -626, -627, -628, -629, -630, -631, - -632, -633, -634, -635, -636, -637, -638, -639, -640, -641, -642, -643, -644, -645, -646, -647, -648, -649, - -650, -651, -652, -653, -654, -655, -656, -657, -658, -659, -660, -661, -662, -663, -664, -665, -666, -667, - -668, -669, -670, -671, -672, -673, -674, -675, -676, -677, -678, -679, -680, -681, -682, -683, -684, -685, - -686, -687, -688, -689, -690, -691, -692, -693, -694, -695, -696, -697, -698, -699, -700, -701, -702, -703, - -704, -705, -706, -707, -708, -709, -710, -711, -712, -713, -714, -715, -716, -717, -718, -719, -720, -721, - -722, -723, -724, -725, -726, -727, -728, -729, -730, -731, -732, -733, -734, -735, -736, -737, -738, -739, - -740, -741, -742, -743, -744, -745, -746, -747, -748, -749, -750, -751, -752, -753, -754, -755, -756, -757, - -758, -759, -760, -761, -762, -763, -764, -765, -766, -767, -768, -769, -770, -771, -772, -773, -774, -775, - -776, -777, -778, -779, -780, -781, -782, -783, -784, -785, -786, -787, -788, -789, -790, -791, -792, -793, - -794, -795, -796, -797, -798, -799, -800, -801, -802, -803, -804, -805, -806, -807, -808, -809, -810, -811, - -812, -813, -814, -815, -816, -817, -818, -819, -820, -821, -822, -823, -824, -825, -826, -827, -828, -829, - -830, -831, -832, -833, -834, -835, -836, -837, -838, -839, -840, -841, -842, -843, -844, -845, -846, -847, - -848, -849, -850, -851, -852, -853, -854, -855, -856, -857, -858, -859, -860, -861, -862, -863, -864, -865, - -866, -867, -868, -869, -870, -871, -872, -873, -874, -875, -876, -877, -878, -879, -880, -881, -882, -883, - -884, -885, -886, -887, -888, -889, -890, -891, -892, -893, -894, -895, -896, -897, -898, -899, -900, -901, - -902, -903, -904, -905, -906, -907, -908, -909, -910, -911, -912, -913, -914, -915, -916, -917, -918, -919, - -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -932, -933, -934, -935, -936, -937, - -938, -939, -940, -941, -942, -943, -944, -945, -946, -947, -948, -949, -950, -951, -952, -953, -954, -955, - -956, -957, -958, -959, -960, -961, -962, -963, -964, -965, -966, -967, -968, -969, -970, -971, -972, -973, - -974, -975, -976, -977, -978, -979, -980, -981, -982, -983, -984, -985, -986, -987, -988, -989, -990, -991, - -992, -993, -994, -995, -996, -997, -998, -999, -1000, -1001, -1002, -1003, -1004, -1005, -1006, -1007, -1008, - -1009, -1010, -1011, -1012, -1013, -1014, -1015, -1016, -1017, -1018, -1019, -1020, -1021, -1022, -1023, -1024, - -1025, -1026, -1027, -1028, -1029, -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, - -1041, -1042, -1043, -1044, -1045, -1046, -1047, -1048, -1049, -1050, -1051, -1052, -1053, -1054, -1055, -1056, - -1057, -1058, -1059, -1060, -1061, -1062, -1063, -1064, -1065, -1066, -1067, -1068, -1069, -1070, -1071, -1072, - -1073, -1074, -1075, -1076, -1077, -1078, -1079, -1080, -1081, -1082, -1083, -1084, -1085, -1086, -1087, -1088, - -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -1103, -1104, - -1105, -1106, -1107, -1108, -1109, -1110, -1111, -1112, -1113, -1114, -1115, -1116, -1117, -1118, -1119, -1120, - -1121, -1122, -1123, -1124, -1125, -1126, -1127, -1128, -1129, -1130, -1131, -1132, -1133, -1134, -1135, -1136, - -1137, -1138, -1139, -1140, -1141, -1142, -1143, -1144, -1145, -1146, -1147, -1148, -1149, -1150, -1151, -1152, - -1153, -1154, -1155, -1156, -1157, -1158, -1159, -1160, -1161, -1162, -1163, -1164, -1165, -1166, -1167, -1168, - -1169, -1170, -1171, -1172, -1173, -1174, -1175, -1176, -1177, -1178, -1179, -1180, -1181, -1182, -1183, -1184, - -1185, -1186, -1187, -1188, -1189, -1190, -1191, -1192, -1193, -1194, -1195, -1196, -1197, -1198, -1199, -1200, - -1201, -1202, -1203, -1204, -1205, -1206, -1207, -1208, -1209, -1210, -1211, -1212, -1213, -1214, -1215, -1216, - -1217, -1218, -1219, -1220, -1221, -1222, -1223, -1224, -1225, -1226, -1227, -1228, -1229, -1230, -1231, -1232, - -1233, -1234, -1235, -1236, -1237, -1238, -1239, -1240, -1241, -1242, -1243, -1244, -1245, -1246, -1247, -1248, - -1249, -1250, -1251, -1252, -1253, -1254, -1255, -1256, -1257, -1258, -1259, -1260, -1261, -1262, -1263, -1264, - -1265, -1266, -1267, -1268, -1269, -1270, -1271, -1272, -1273, -1274, -1275, -1276, -1277, -1278, -1279, -1280, - -1281, -1282, -1283, -1284, -1285, -1286, -1287, -1288, -1289, -1290, -1291, -1292, -1293, -1294, -1295, -1296, - -1297, -1298, -1299, -1300, -1301, -1302, -1303, -1304, -1305, -1306, -1307, -1308, -1309, -1310, -1311, -1312, - -1313, -1314, -1315, -1316, -1317, -1318, -1319, -1320, -1321, -1322, -1323, -1324, -1325, -1326, -1327, -1328, - -1329, -1330, -1331, -1332, -1333, -1334, -1335, -1336, -1337, -1338, -1339, -1340, -1341, -1342, -1343, -1344, - -1345, -1346, -1347, -1348, -1349, -1350, -1351, -1352, -1353, -1354, -1355, -1356, -1357, -1358, -1359, -1360, - -1361, -1362, -1363, -1364, -1365, -1366, -1367, -1368, -1369, -1370, -1371, -1372, -1373, -1374, -1375, -1376, - -1377, -1378, -1379, -1380, -1381, -1382, -1383, -1384, -1385, -1386, -1387, -1388, -1389, -1390, -1391, -1392, - -1393, -1394, -1395, -1396, -1397, -1398, -1399, -1400, -1401, -1402, -1403, -1404, -1405, -1406, -1407, -1408, - -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1419, -1420, -1421, -1422, -1423, -1424, - -1425, -1426, -1427, -1428, -1429, -1430, -1431, -1432, -1433, -1434, -1435, -1436, -1437, -1438, -1439, -1440, - -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -1452, -1453, -1454, -1455, -1456, - -1457, -1458, -1459, -1460, -1461, -1462, -1463, -1464, -1465, -1466, -1467, -1468, -1469, -1470, -1471, -1472, - -1473, -1474, -1475, -1476, -1477, -1478, -1479, -1480, -1481, -1482, -1483, -1484, -1485, -1486, -1487, -1488, - -1489, -1490, -1491, -1492, -1493, -1494, -1495, -1496, -1497, -1498, -1499, -1500, -1501, -1502, -1503, -1504, - -1505, -1506, -1507, -1508, -1509, -1510, -1511, -1512, -1513, -1514, -1515, -1516, -1517, -1518, -1519, -1520, - -1521, -1522, -1523, -1524, -1525, -1526, -1527, -1528, -1529, -1530, -1531, -1532, -1533, -1534, -1535, -1536, - -1537, -1538, -1539, -1540, -1541, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -1549, -1550, -1551, -1552, - -1553, -1554, -1555, -1556, -1557, -1558, -1559, -1560, -1561, -1562, -1563, -1564, -1565, -1566, -1567, -1568, - -1569, -1570, -1571, -1572, -1573, -1574, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -1583, -1584, - -1585, -1586, -1587, -1588, -1589, -1590, -1591, -1592, -1593, -1594, -1595, -1596, -1597, -1598, -1599, -1600, - -1601, -1602, -1603, -1604, -1605, -1606, -1607, -1608, -1609, -1610, -1611, -1612, -1613, -1614, -1615, -1616, - -1617, -1618, -1619, -1620, -1621, -1622, -1623, -1624, -1625, -1626, -1627, -1628, -1629, -1630, -1631, -1632, - -1633, -1634, -1635, -1636, -1637, -1638, -1639, -1640, -1641, -1642, -1643, -1644, -1645, -1646, -1647, -1648, - -1649, -1650, -1651, -1652, -1653, -1654, -1655, -1656, -1657, -1658, -1659, -1660, -1661, -1662, -1663, -1664, - -1665, -1666, -1667, -1668, -1669, -1670, -1671, -1672, -1673, -1674, -1675, -1676, -1677, -1678, -1679, -1680, - -1681, -1682, -1683, -1684, -1685, -1686, -1687, -1688, -1689, -1690, -1691, -1692, -1693, -1694, -1695, -1696, - -1697, -1698, -1699, -1700, -1701, -1702, -1703, -1704, -1705, -1706, -1707, -1708, -1709, -1710, -1711, -1712, - -1713, -1714, -1715, -1716, -1717, -1718, -1719, -1720, -1721, -1722, -1723, -1724, -1725, -1726, -1727, -1728, - -1729, -1730, -1731, -1732, -1733, -1734, -1735, -1736, -1737, -1738, -1739, -1740, -1741, -1742, -1743, -1744, - -1745, -1746, -1747, -1748, -1749, -1750, -1751, -1752, -1753, -1754, -1755, -1756, -1757, -1758, -1759, -1760, - -1761, -1762, -1763, -1764, -1765, -1766, -1767, -1768, -1769, -1770, -1771, -1772, -1773, -1774, -1775, -1776, - -1777, -1778, -1779, -1780, -1781, -1782, -1783, -1784, -1785, -1786, -1787, -1788, -1789, -1790, -1791, -1792, - -1793, -1794, -1795, -1796, -1797, -1798, -1799, -1800, -1801, -1802, -1803, -1804, -1805, -1806, -1807, -1808, - -1809, -1810, -1811, -1812, -1813, -1814, -1815, -1816, -1817, -1818, -1819, -1820, -1821, -1822, -1823, -1824, - -1825, -1826, -1827, -1828, -1829, -1830, -1831, -1832, -1833, -1834, -1835, -1836, -1837, -1838, -1839, -1840, - -1841, -1842, -1843, -1844, -1845, -1846, -1847, -1848, -1849, -1850, -1851, -1852, -1853, -1854, -1855, -1856, - -1857, -1858, -1859, -1860, -1861, -1862, -1863, -1864, -1865, -1866, -1867, -1868, -1869, -1870, -1871, -1872, - -1873, -1874, -1875, -1876, -1877, -1878, -1879, -1880, -1881, -1882, -1883, -1884, -1885, -1886, -1887, -1888, - -1889, -1890, -1891, -1892, -1893, -1894, -1895, -1896, -1897, -1898, -1899, -1900, -1901, -1902, -1903, -1904, - -1905, -1906, -1907, -1908, -1909, -1910, -1911, -1912, -1913, -1914, -1915, -1916, -1917, -1918, -1919, -1920, - -1921, -1922, -1923, -1924, -1925, -1926, -1927, -1928, -1929, -1930, -1931, -1932, -1933, -1934, -1935, -1936, - -1937, -1938, -1939, -1940, -1941, -1942, -1943, -1944, -1945, -1946, -1947, -1948, -1949, -1950, -1951, -1952, - -1953, -1954, -1955, -1956, -1957, -1958, -1959, -1960, -1961, -1962, -1963, -1964, -1965, -1966, -1967, -1968, - -1969, -1970, -1971, -1972, -1973, -1974, -1975, -1976, -1977, -1978, -1979, -1980, -1981, -1982, -1983, -1984, - -1985, -1986, -1987, -1988, -1989, -1990, -1991, -1992, -1993, -1994, -1995, -1996, -1997, -1998, -1999, -2000, - -2001, -2002, -2003, -2004, -2005, -2006, -2007, -2008, -2009, -2010, -2011, -2012, -2013, -2014, -2015, -2016, - -2017, -2018, -2019, -2020, -2021, -2022, -2023, -2024, -2025, -2026, -2027, -2028, -2029, -2030, -2031, -2032, - -2033, -2034, -2035, -2036, -2037, -2038, -2039, -2040, -2041, -2042, -2043, -2044, -2045, -2046, -2047, -2048, - -2049, -2050, -2051, -2052, -2053, -2054, -2055, -2056, -2057, -2058, -2059, -2060, -2061, -2062, -2063, -2064, - -2065, -2066, -2067, -2068, -2069, -2070, -2071, -2072, -2073, -2074, -2075, -2076, -2077, -2078, -2079, -2080, - -2081, -2082, -2083, -2084, -2085, -2086, -2087, -2088, -2089, -2090, -2091, -2092, -2093, -2094, -2095, -2096, - -2097, -2098, -2099, -2100, -2101, -2102, -2103, -2104, -2105, -2106, -2107, -2108, -2109, -2110, -2111, -2112, - -2113, -2114, -2115, -2116, -2117, -2118, -2119, -2120, -2121, -2122, -2123, -2124, -2125, -2126, -2127, -2128, - -2129, -2130, -2131, -2132, -2133, -2134, -2135, -2136, -2137, -2138, -2139, -2140, -2141, -2142, -2143, -2144, - -2145, -2146, -2147, -2148, -2149, -2150, -2151, -2152, -2153, -2154, -2155, -2156, -2157, -2158, -2159, -2160, - -2161, -2162, -2163, -2164, -2165, -2166, -2167, -2168, -2169, -2170, -2171, -2172, -2173, -2174, -2175, -2176, - -2177, -2178, -2179, -2180, -2181, -2182, -2183, -2184, -2185, -2186, -2187, -2188, -2189, -2190, -2191, -2192, - -2193, -2194, -2195, -2196, -2197, -2198, -2199, -2200, -2201, -2202, -2203, -2204, -2205, -2206, -2207, -2208, - -2209, -2210, -2211, -2212, -2213, -2214, -2215, -2216, -2217, -2218, -2219, -2220, -2221, -2222, -2223, -2224, - -2225, -2226, -2227, -2228, -2229, -2230, -2231, -2232, -2233, -2234, -2235, -2236, -2237, -2238, -2239, -2240, - -2241, -2242, -2243, -2244, -2245, -2246, -2247, -2248, -2249, -2250, -2251, -2252, -2253, -2254, -2255, -2256, - -2257, -2258, -2259, -2260, -2261, -2262, -2263, -2264, -2265, -2266, -2267, -2268, -2269, -2270, -2271, -2272, - -2273, -2274, -2275, -2276, -2277, -2278, -2279, -2280, -2281, -2282, -2283, -2284, -2285, -2286, -2287, -2288, - -2289, -2290, -2291, -2292, -2293, -2294, -2295, -2296, -2297, -2298, -2299, -2300, -2301, -2302, -2303, -2304, - -2305, -2306, -2307, -2308, -2309, -2310, -2311, -2312, -2313, -2314, -2315, -2316, -2317, -2318, -2319, -2320, - -2321, -2322, -2323, -2324, -2325, -2326, -2327, -2328, -2329, -2330, -2331, -2332, -2333, -2334, -2335, -2336, - -2337, -2338, -2339, -2340, -2341, -2342, -2343, -2344, -2345, -2346, -2347, -2348, -2349, -2350, -2351, -2352, - -2353, -2354, -2355, -2356, -2357, -2358, -2359, -2360, -2361, -2362, -2363, -2364, -2365, -2366, -2367, -2368, - -2369, -2370, -2371, -2372, -2373, -2374, -2375, -2376, -2377, -2378, -2379, -2380, -2381, -2382, -2383, -2384, - -2385, -2386, -2387, -2388, -2389, -2390, -2391, -2392, -2393, -2394, -2395, -2396, -2397, -2398, -2399, -2400, - -2401, -2402, -2403, -2404, -2405, -2406, -2407, -2408, -2409, -2410, -2411, -2412, -2413, -2414, -2415, -2416, - -2417, -2418, -2419, -2420, -2421, -2422, -2423, -2424, -2425, -2426, -2427, -2428, -2429, -2430, -2431, -2432, - -2433, -2434, -2435, -2436, -2437, -2438, -2439, -2440, -2441, -2442, -2443, -2444, -2445, -2446, -2447, -2448, - -2449, -2450, -2451, -2452, -2453, -2454, -2455, -2456, -2457, -2458, -2459, -2460, -2461, -2462, -2463, -2464, - -2465, -2466, -2467, -2468, -2469, -2470, -2471, -2472, -2473, -2474, -2475, -2476, -2477, -2478, -2479, -2480, - -2481, -2482, -2483, -2484, -2485, -2486, -2487, -2488, -2489, -2490, -2491, -2492, -2493, -2494, -2495, -2496, - -2497, -2498, -2499, -2500, -2501, -2502, -2503, -2504, -2505, -2506, -2507, -2508, -2509, -2510, -2511, -2512, - -2513, -2514, -2515, -2516, -2517, -2518, -2519, -2520, -2521, -2522, -2523, -2524, -2525, -2526, -2527, -2528, - -2529, -2530, -2531, -2532, -2533, -2534, -2535, -2536, -2537, -2538, -2539, -2540, -2541, -2542, -2543, -2544, - -2545, -2546, -2547, -2548, -2549, -2550, -2551, -2552, -2553, -2554, -2555, -2556, -2557, -2558, -2559, -2560, - -2561, -2562, -2563, -2564, -2565, -2566, -2567, -2568, -2569, -2570, -2571, -2572, -2573, -2574, -2575, -2576, - -2577, -2578, -2579, -2580, -2581, -2582, -2583, -2584, -2585, -2586, -2587, -2588, -2589, -2590, -2591, -2592, - -2593, -2594, -2595, -2596, -2597, -2598, -2599, -2600, -2601, -2602, -2603, -2604, -2605, -2606, -2607, -2608, - -2609, -2610, -2611, -2612, -2613, -2614, -2615, -2616, -2617, -2618, -2619, -2620, -2621, -2622, -2623, -2624, - -2625, -2626, -2627, -2628, -2629, -2630, -2631, -2632, -2633, -2634, -2635, -2636, -2637, -2638, -2639, -2640, - -2641, -2642, -2643, -2644, -2645, -2646, -2647, -2648, -2649, -2650, -2651, -2652, -2653, -2654, -2655, -2656, - -2657, -2658, -2659, -2660, -2661, -2662, -2663, -2664, -2665, -2666, -2667, -2668, -2669, -2670, -2671, -2672, - -2673, -2674, -2675, -2676, -2677, -2678, -2679, -2680, -2681, -2682, -2683, -2684, -2685, -2686, -2687, -2688, - -2689, -2690, -2691, -2692, -2693, -2694, -2695, -2696, -2697, -2698, -2699, -2700, -2701, -2702, -2703, -2704, - -2705, -2706, -2707, -2708, -2709, -2710, -2711, -2712, -2713, -2714, -2715, -2716, -2717, -2718, -2719, -2720, - -2721, -2722, -2723, -2724, -2725, -2726, -2727, -2728, -2729, -2730, -2731, -2732, -2733, -2734, -2735, -2736, - -2737, -2738, -2739, -2740, -2741, -2742, -2743, -2744, -2745, -2746, -2747, -2748, -2749, -2750, -2751, -2752, - -2753, -2754, -2755, -2756, -2757, -2758, -2759, -2760, -2761, -2762, -2763, -2764, -2765, -2766, -2767, -2768, - -2769, -2770, -2771, -2772, -2773, -2774, -2775, -2776, -2777, -2778, -2779, -2780, -2781, -2782, -2783, -2784, - -2785, -2786, -2787, -2788, -2789, -2790, -2791, -2792, -2793, -2794, -2795, -2796, -2797, -2798, -2799, -2800, - -2801, -2802, -2803, -2804, -2805, -2806, -2807, -2808, -2809, -2810, -2811, -2812, -2813, -2814, -2815, -2816, - -2817, -2818, -2819, -2820, -2821, -2822, -2823, -2824, -2825, -2826, -2827, -2828, -2829, -2830, -2831, -2832, - -2833, -2834, -2835, -2836, -2837, -2838, -2839, -2840, -2841, -2842, -2843, -2844, -2845, -2846, -2847, -2848, - -2849, -2850, -2851, -2852, -2853, -2854, -2855, -2856, -2857, -2858, -2859, -2860, -2861, -2862, -2863, -2864, - -2865, -2866, -2867, -2868, -2869, -2870, -2871, -2872, -2873, -2874, -2875, -2876, -2877, -2878, -2879, -2880, - -2881, -2882, -2883, -2884, -2885, -2886, -2887, -2888, -2889, -2890, -2891, -2892, -2893, -2894, -2895, -2896, - -2897, -2898, -2899, -2900, -2901, -2902, -2903, -2904, -2905, -2906, -2907, -2908, -2909, -2910, -2911, -2912, - -2913, -2914, -2915, -2916, -2917, -2918, -2919, -2920, -2921, -2922, -2923, -2924, -2925, -2926, -2927, -2928, - -2929, -2930, -2931, -2932, -2933, -2934, -2935, -2936, -2937, -2938, -2939, -2940, -2941, -2942, -2943, -2944, - -2945, -2946, -2947, -2948, -2949, -2950, -2951, -2952, -2953, -2954, -2955, -2956, -2957, -2958, -2959, -2960, - -2961, -2962, -2963, -2964, -2965, -2966, -2967, -2968, -2969, -2970, -2971, -2972, -2973, -2974, -2975, -2976, - -2977, -2978, -2979, -2980, -2981, -2982, -2983, -2984, -2985, -2986, -2987, -2988, -2989, -2990, -2991, -2992, - -2993, -2994, -2995, -2996, -2997, -2998, -2999, -3000, -3001, -3002, -3003, -3004, -3005, -3006, -3007, -3008, - -3009, -3010, -3011, -3012, -3013, -3014 - ], - [ - 0, 295, 300, 304, 74, 309, 136, 136, 314, 74, 318, 74, 321, 324, 74, 326, 329, 333, 338, 343, 348, 353, 357, - 361, 365, 367, 372, 375, 380, 384, 389, 393, 398, 402, 407, 409, 412, 416, 418, 422, 425, 429, 432, 436, 17, - 441, 444, 447, 451, 453, 458, 462, 467, 470, 474, 477, 480, 483, 486, 489, 492, 495, 498, 501, 504, 507, 510, - 513, 516, 519, 522, 525, 528, 531, 534, 537, 540, 543, 546, 550, 553, 556, 559, 562, 565, 569, 572, 576, 579, - 103, 32, 103, 587, 591, 594, 597, 600, 604, 607, 610, 614, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, - 13, 12, 13, 12, 12, 12, 12, 12, 12, 12, 13, 13, 12, 17, 12, 12, 26, 17, 13, 12, 12, 12, 12, 12, 12, 13, 13, 13, - 61, 17, 12, 12, 17, 12, 17, 13, 624, 628, 633, 637, 641, 62, 17, 647, 652, 657, 662, 13, 666, 670, 12, 12, 12, - 26, 12, 12, 12, 12, 12, 26, 12, 12, 12, 17, 43, 12, 12, 12, 26, 12, 12, 12, 26, 12, 13, 675, 679, 682, 686, 690, - 693, 696, 698, 700, 704, 707, 712, 716, 721, 726, 730, 12, 12, 12, 12, 734, 12, 12, 12, 12, 26, 13, 12, 12, 12, - 12, 12, 12, 12, 12, 17, 12, 737, 742, 747, 751, 756, 761, 765, 770, 772, 776, 781, 785, 788, 793, 798, 12, 61, - 802, 806, 26, 13, 811, 32, 814, 818, 822, 159, 827, 830, 834, 838, 842, 845, 848, 851, 854, 858, 863, 866, 870, - 874, 879, 883, 886, 891, 894, 898, 902, 906, 910, 915, 918, 921, 924, 929, 933, 937, 940, 944, 32, 948, 32, 62, - 32, 951, 954, 957, 960, 964, 968, 971, 975, 979, 982, 985, 988, 992, 996, 1001, 1006, 1011, 1014, 1018, 1021, - 1024, 1027, 1031, 1035, 1039, 12, 12, 13, 12, 13, 17, 12, 12, 52, 12, 12, 43, 12, 17, 12, 12, 12, 12, 12, 12, - 52, 12, 26, 26, 12, 12, 12, 1045, 1049, 1053, 1057, 1061, 1066, 1070, 1075, 1080, 1085, 1090, 1095, 1100, 1105, - 1110, 1115, 1119, 1124, 1128, 1131, 1134, 1138, 1143, 1148, 1153, 1158, 17, 17, 13, 1163, 1168, 1171, 12, 12, - 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 12, 13, 12, 12, 12, 12, 1173, 1178, - 1181, 1185, 1190, 1195, 1200, 1205, 1210, 1214, 1218, 1222, 1225, 1228, 1232, 1235, 1238, 1242, 1246, 1250, - 1253, 1257, 1261, 1264, 1266, 52, 1270, 1275, 1279, 1283, 1288, 1291, 1294, 1298, 1301, 1305, 1308, 1313, 1318, - 1323, 1328, 1333, 1338, 12, 12, 12, 78, 13, 17, 26, 12, 13, 12, 12, 78, 17, 1343, 1347, 1352, 1356, 43, 1360, - 1363, 1368, 1372, 1375, 66, 1381, 1386, 1391, 53, 1397, 1401, 1406, 1410, 1412, 1415, 1419, 1422, 1426, 1430, - 1434, 1438, 1441, 1446, 1450, 79, 1454, 1459, 1463, 1468, 1473, 1476, 1480, 1484, 1488, 1492, 53, 1497, 1502, - 1507, 1512, 1515, 46, 1520, 1525, 1528, 1533, 1536, 1541, 1545, 1549, 1553, 1557, 1560, 1565, 1570, 1575, 1579, - 1584, 1589, 1594, 1598, 1603, 13, 1608, 1612, 1616, 1620, 1624, 1627, 1630, 1633, 1637, 1641, 1645, 1650, 1652, - 1657, 1662, 1667, 1672, 1675, 1677, 1679, 1682, 1685, 1690, 1693, 1697, 1699, 1702, 1705, 1709, 1712, 1714, - 1717, 1722, 1726, 1730, 1733, 1736, 1739, 1742, 1745, 1748, 1752, 1755, 1758, 1762, 1766, 1769, 1773, 1778, 30, - 1784, 176, 1789, 1793, 1797, 1802, 1806, 1809, 1812, 1817, 179, 1821, 20, 1827, 18, 46, 18, 1833, 1837, 1842, - 1845, 1849, 1853, 1858, 1863, 1868, 1871, 46, 20, 20, 46, 53, 53, 54, 180, 80, 181, 80, 1879, 1883, 1887, 1891, - 1894, 1899, 1903, 1906, 1910, 1913, 17, 30, 20, 1918, 1923, 1928, 1933, 20, 1937, 1942, 1947, 1952, 1956, 1961, - 1965, 1968, 1973, 1978, 1982, 80, 1987, 1990, 1994, 1999, 2003, 2008, 2013, 2018, 2022, 2027, 2030, 2035, 2040, - 2043, 2046, 2049, 82, 2055, 2059, 18, 2062, 2066, 2071, 2074, 2078, 2082, 46, 2086, 2089, 2093, 2098, 30, 13, - 2103, 2108, 2113, 2118, 2121, 2125, 2129, 2133, 2138, 2141, 2144, 2148, 2152, 2157, 2162, 2165, 2169, 2173, - 2177, 2180, 2184, 2188, 2193, 2198, 2202, 2206, 2208, 2212, 2216, 2220, 2225, 2229, 2234, 2239, 2242, 2245, - 2250, 2253, 2257, 2262, 2266, 2270, 2275, 2279, 2284, 2288, 2292, 2295, 2299, 2302, 2307, 2312, 2316, 2321, - 2324, 2327, 2332, 2336, 2340, 2344, 2348, 103, 2352, 2356, 2360, 2364, 2368, 2372, 2376, 2381, 2384, 2389, 2394, - 2398, 2401, 2406, 2411, 2414, 2419, 2424, 2429, 2434, 2439, 2442, 2447, 2451, 2456, 2461, 2464, 2468, 2472, - 2477, 2482, 13, 2487, 2491, 2494, 2498, 2503, 2508, 2512, 2516, 2521, 2526, 2531, 2536, 2540, 2544, 2549, 2554, - 2558, 2563, 2568, 2572, 2576, 2580, 2584, 2588, 2592, 2596, 2600, 2605, 2610, 2615, 2619, 2624, 2628, 82, 2631, - 2634, 2638, 2641, 2644, 2648, 2653, 2656, 2661, 2664, 2669, 2673, 2677, 69, 2682, 2686, 2690, 2695, 2698, 2702, - 2707, 2712, 2717, 2722, 2726, 54, 2730, 2733, 20, 2738, 2742, 20, 2747, 2750, 2754, 2757, 2762, 30, 2765, 2769, - 2773, 2776, 2780, 2785, 2790, 2794, 2797, 2802, 2807, 2811, 2815, 2819, 2824, 2829, 2834, 2838, 2843, 2848, - 2852, 2857, 2861, 2865, 2869, 2874, 2879, 2884, 2889, 2894, 2898, 2903, 2908, 2911, 2915, 2920, 2925, 2929, - 2933, 2937, 2941, 2944, 2948, 2952, 2957, 2962, 2967, 47, 2973, 2976, 2981, 2986, 2990, 2993, 2997, 26, 3002, - 3007, 3012, 3015, 3020, 3025, 3030, 3035, 3037, 3041, 3045, 3049, 3054, 3059, 3063, 3066, 3070, 3074, 3078, - 3082, 3086, 3090, 3095, 3100, 3105, 3109, 3113, 3117, 3121, 52, 3125, 3129, 3132, 3136, 3141, 3145, 3149, 3154, - 3157, 3161, 3166, 3170, 3173, 3176, 3180, 3184, 3188, 3193, 3197, 3202, 3206, 3211, 3216, 3221, 3226, 3229, - 3234, 3238, 3243, 3248, 3253, 3256, 3261, 3266, 3271, 3276, 3280, 3284, 3288, 3292, 3297, 3301, 3305, 3310, - 3315, 3319, 3322, 3327, 3332, 3337, 3342, 3346, 3351, 3356, 3360, 3363, 3367, 3370, 3375, 3379, 3382, 3385, - 3389, 3394, 3399, 3404, 3409, 3413, 3417, 54, 3421, 3426, 3430, 3434, 13, 3438, 3442, 3446, 3451, 3456, 3461, - 3466, 3470, 3475, 3479, 3484, 3489, 3493, 3498, 3502, 79, 79, 3507, 3510, 3515, 3520, 3524, 3528, 3532, 3535, - 3540, 3543, 3548, 3552, 3557, 3561, 47, 3565, 3569, 3573, 3577, 3581, 3585, 3588, 3592, 3597, 3601, 3604, 3609, - 3614, 12, 3619, 3624, 3629, 3633, 3637, 3641, 3644, 3648, 3652, 3657, 3660, 3665, 3670, 3675, 3679, 3682, 3686, - 3691, 3696, 3701, 3705, 3710, 3715, 30, 3719, 3724, 13, 3729, 3734, 3738, 3743, 3747, 3751, 3755, 47, 3759, - 3763, 3767, 3770, 3775, 3778, 3783, 3788, 3793, 3797, 18, 3801, 3804, 3807, 3810, 3814, 3819, 3823, 3827, 3832, - 43, 3837, 3841, 3845, 3849, 3852, 3856, 3861, 3866, 3871, 3876, 3881, 66, 3886, 3890, 66, 20, 3894, 3897, 3900, - 3903, 3908, 3912, 3917, 3922, 3925, 3930, 3934, 3937, 3942, 3946, 3951, 3954, 3959, 3963, 3967, 3971, 3975, - 3980, 3983, 3987, 3991, 3996, 4000, 4003, 4008, 4013, 4018, 4023, 4028, 4033, 4037, 4041, 4045, 4050, 4053, - 4057, 4062, 4066, 4069, 4074, 4079, 4084, 4088, 4093, 4097, 4102, 4107, 4112, 4116, 4121, 4125, 4130, 4135, - 4139, 4143, 4147, 4151, 4156, 4160, 4165, 4168, 4173, 4177, 4181, 4185, 4190, 4194, 4199, 4204, 4209, 4214, - 4219, 4224, 4229, 4234, 4237, 4241, 4245, 4250, 4255, 4260, 4265, 4270, 4275, 4280, 4285, 4290, 4295, 4300, - 4304, 4309, 4313, 4318, 4323, 4328, 4333, 4338, 4343, 4348, 4352, 4357, 4362, 4367, 4372, 4376, 4381, 4385, - 4390, 4394, 4399, 4404, 4409, 4413, 4418, 4423, 4428, 4433, 4438, 4441, 4446, 4451, 4455, 4460, 4465, 4469, - 4474, 4478, 4483, 4487, 4491, 4496, 4501, 4506, 4511, 4516, 4521, 4526, 4530, 4534, 4539, 4544, 4548, 4553, - 4558, 4562, 4567, 4572, 4577, 4582, 4587, 4591, 4596, 4600, 47, 18, 4605, 18, 4608, 4612, 4615, 4620, 4625, - 4630, 4635, 4640, 4644, 4649, 4652, 4656, 30, 4661, 4665, 4669, 4673, 4676, 4679, 4682, 4687, 4691, 4695, 4697, - 180, 18, 4700, 4703, 4708, 4712, 4716, 30, 4720, 4724, 4728, 4733, 4737, 4742, 4746, 4750, 4755, 4760, 4765, - 4770, 4775, 4779, 4783, 4787, 4791, 4796, 4801, 13, 4806, 4810, 4814, 4819, 4824, 4829, 4833, 4837, 4840, 4845, - 4848, 4852, 4856, 4859, 4864, 4868, 4872, 4877, 4882, 4886, 43, 4890, 4895, 4900, 4904, 4908, 4912, 4915, 4919, - 4924, 13, 4929, 4932, 4937, 4942, 4946, 4949, 26, 4951, 4956, 4960, 4963, 4967, 80, 4972, 4976, 4980, 4984, - 4988, 4992, 4996, 5001, 5005, 5010, 5015, 5018, 5022, 5026, 5030, 5034, 5039, 5042, 5046, 17, 5050, 17, 5054, - 5058, 5061, 5065, 5069, 5074, 5077, 5082, 5086, 5090, 5095, 5100, 5104, 5107, 5111, 5114, 5119, 5123, 5126, - 5129, 5133, 5137, 5142, 5147, 5151, 5154, 5158, 5162, 5166, 5170, 5175, 5178, 5181, 5186, 5191, 5196, 5199, - 5202, 5206, 5210, 5215, 5219, 5224, 5229, 5233, 5238, 5243, 5247, 5251, 5255, 5259, 5263, 5267, 5271, 5276, - 5279, 5282, 5287, 5292, 5295, 5299, 5302, 5306, 5310, 5315, 5320, 5324, 5328, 5333, 5337, 5341, 5346, 5351, - 5356, 5359, 5363, 5368, 5372, 5377, 5382, 5386, 5391, 5395, 5400, 5405, 5409, 5414, 5418, 5423, 5426, 5431, - 5435, 5439, 5442, 5445, 5450, 5454, 5459, 5464, 5468, 5472, 5477, 5482, 5487, 5491, 5496, 5501, 5506, 5511, - 5516, 46, 20, 54, 5521, 5526, 20, 5530, 5534, 5538, 5542, 5546, 5551, 5555, 5559, 5564, 5568, 5572, 5576, 5581, - 5585, 5589, 5594, 5598, 5601, 5606, 5611, 5615, 5619, 5624, 5629, 5633, 5638, 5643, 5646, 5651, 5656, 5659, - 5664, 5667, 5670, 5673, 5676, 5679, 5682, 5685, 5688, 5691, 5694, 5697, 5700, 5703, 5706, 5709, 5712, 5715, - 5718, 5721, 5724, 5727, 5730, 5734, 5737, 5740, 5745, 5750, 5755, 5760, 5764, 5768, 5773, 5777, 5782, 5786, 18, - 5790, 5795, 5800, 5805, 5810, 5815, 5820, 5824, 5827, 5832, 5837, 20, 5841, 5844, 5848, 5852, 5857, 5861, 5864, - 5867, 5872, 5876, 5880, 5884, 5889, 5894, 5898, 5902, 5905, 5908, 18, 5913, 5917, 5921, 5926, 5931, 13, 5935, - 5939, 5944, 5948, 5952, 5957, 5961, 5964, 5966, 5970, 5974, 5977, 5982, 5985, 5989, 5993, 5998, 6002, 6007, - 6011, 6015, 6018, 6023, 6028, 6032, 69, 20, 6036, 6041, 6045, 6049, 6053, 6058, 6063, 6068, 6073, 6076, 6080, - 6085, 6089, 6092, 6096, 6100, 6104, 6109, 6113, 6118, 6123, 6127, 6132, 6137, 6142, 6146, 6150, 6155, 47, 6160, - 20, 6162, 6167, 6170, 6175, 82, 6180, 6185, 6189, 6194, 6199, 6203, 6207, 6211, 6216, 6221, 53, 6225, 6228, - 6232, 6237, 26, 6240, 6245, 6250, 6255, 6260, 6264, 6268, 6273, 6278, 6282, 6287, 6292, 6297, 6300, 6303, 6307, - 6312, 6315, 6320, 82, 6325, 6330, 6334, 6338, 6343, 6347, 6352, 6355, 6360, 6365, 6369, 6374, 6379, 6384, 6389, - 6394, 6399, 6404, 6409, 6411, 6416, 6421, 6425, 6430, 6435, 6439, 6443, 6447, 6451, 6456, 6461, 6466, 6470, - 6475, 6478, 6483, 6487, 6491, 6494, 6498, 6501, 61, 6504, 6509, 6514, 6519, 6523, 6526, 6531, 6535, 6540, 6544, - 6548, 6552, 6556, 6561, 6566, 6571, 6575, 6578, 6583, 6588, 6592, 6597, 6600, 6604, 6607, 6611, 6616, 6621, - 6626, 6628, 6632, 6636, 6640, 6644, 6648, 6653, 18, 6658, 6662, 6666, 18, 6671, 6676, 6679, 6684, 6689, 6694, - 6699, 6701, 6705, 6708, 6712, 6717, 6722, 6727, 6732, 6737, 6740, 6744, 20, 6748, 6751, 6756, 6761, 6765, 6770, - 6774, 6779, 6784, 6789, 6794, 6798, 6802, 6806, 6811, 6815, 6820, 6824, 6827, 6832, 6837, 6841, 6844, 6848, - 6851, 6855, 6858, 6861, 6864, 6868, 6871, 6875, 6880, 6885, 6888, 6893, 6898, 6902, 6906, 6911, 6913, 6916, 240, - 6921, 6925, 6930, 18, 6934, 6939, 6944, 6947, 6950, 6953, 6958, 6963, 6967, 6971, 6975, 6979, 6984, 78, 6987, - 6991, 18, 6995, 6999, 7004, 7008, 7013, 7018, 7022, 7027, 7030, 7035, 7039, 7043, 7047, 7051, 7054, 7057, 7061, - 7065, 7070, 7074, 7079, 7083, 7088, 7092, 7097, 7100, 7103, 7107, 7112, 7116, 7119, 7123, 7128, 243, 7132, 7134, - 7136, 243, 7139, 7142, 7146, 7150, 7154, 7157, 7160, 7164, 7169, 7171, 7175, 7179, 7184, 7188, 7193, 7198, 7202, - 52, 7205, 7210, 7214, 7219, 7223, 7227, 7230, 7235, 7239, 7243, 7247, 7252, 7257, 7261, 7266, 7268, 7272, 7276, - 7280, 7284, 7288, 7292, 7295, 244, 7304, 7308, 7312, 7317, 7322, 7327, 7331, 7336, 7341, 7344, 7348, 7352, 7356, - 7360, 7364, 7367, 7370, 7375, 7380, 7384, 7388, 7391, 7396, 7401, 7406, 7411, 7416, 7420, 7424, 7428, 7431, - 7434, 7439, 7443, 7446, 7450, 7455, 7460, 12, 7465, 7467, 7470, 7474, 7479, 7482, 7486, 7491, 7496, 7501, 7505, - 7509, 7513, 7517, 7520, 7525, 7529, 7534, 7538, 7543, 13, 7548, 7552, 7556, 7558, 7561, 7566, 7571, 7576, 7579, - 7583, 7588, 7592, 7596, 7600, 247, 7606, 7611, 7615, 7619, 7623, 7626, 7631, 7636, 7641, 7646, 7650, 7654, 7658, - 7663, 7667, 7672, 7677, 7682, 7686, 7690, 7694, 7699, 7703, 249, 7707, 250, 7713, 7717, 7721, 7724, 7728, 7732, - 7737, 7741, 7746, 7751, 7756, 7761, 7765, 7769, 7773, 7776, 7780, 7785, 7790, 7795, 7799, 7804, 7809, 7813, - 7818, 7823, 7827, 7831, 7836, 7841, 7846, 7850, 7855, 7860, 7865, 7870, 7873, 7878, 7883, 7888, 17, 7893, 7896, - 17, 7900, 7904, 7908, 7913, 7916, 7920, 7925, 7930, 7933, 7937, 7941, 7944, 7949, 7953, 7958, 7963, 7967, 7972, - 7976, 7981, 7985, 7990, 7994, 7999, 8003, 8007, 8011, 8015, 8020, 8025, 8030, 8035, 8040, 8045, 8050, 8053, - 8057, 8061, 8066, 8071, 8075, 8078, 61, 8082, 8085, 8090, 181, 47, 8095, 8100, 8105, 8109, 255, 8115, 247, 8118, - 8123, 18, 8127, 8132, 8136, 8139, 8144, 8149, 8153, 8158, 8161, 8165, 8170, 8174, 8179, 8183, 8187, 8192, 8197, - 8201, 13, 8204, 8209, 8214, 8217, 8221, 8226, 8230, 250, 8235, 8240, 8245, 8249, 18, 8254, 18, 8258, 8263, 244, - 8268, 240, 20, 8272, 8277, 8281, 8286, 8289, 8293, 8296, 20, 8301, 8304, 8309, 30, 8313, 8317, 256, 47, 8322, - 8326, 8331, 8335, 8339, 8344, 8347, 8350, 8354, 8358, 8361, 20, 18, 8366, 8370, 30, 257, 8374, 8377, 8382, 8387, - 8392, 8397, 8401, 8404, 8409, 46, 8414, 8419, 8424, 18, 8428, 8433, 8438, 8441, 8443, 8447, 8451, 8455, 8458, - 8462, 8467, 8471, 8476, 8480, 8483, 8487, 8491, 8496, 8501, 8504, 8509, 8514, 8519, 8524, 8528, 8533, 8538, - 8542, 8547, 8552, 8556, 30, 8561, 20, 8564, 8569, 8573, 8578, 257, 54, 8583, 18, 8587, 8592, 8597, 8601, 8606, - 8611, 8616, 8621, 8626, 8629, 54, 8634, 8639, 8642, 8647, 8650, 255, 8653, 8658, 8662, 8665, 8669, 8674, 8677, - 8682, 8686, 8691, 8695, 8699, 8703, 8707, 8712, 8715, 8720, 8724, 8728, 8733, 249, 8738, 8743, 8748, 8753, 8758, - 8763, 8768, 8772, 8776, 8780, 8784, 176, 8789, 8792, 8795, 8799, 8804, 8808, 8811, 8815, 8818, 8822, 8825, 8828, - 8833, 8837, 8841, 8844, 8849, 18, 69, 8854, 8859, 53, 8862, 8865, 8870, 8875, 8878, 8883, 8888, 8893, 8898, - 8903, 8908, 8911, 8916, 8920, 8925, 8929, 8934, 8937, 8942, 8946, 8950, 8954, 8958, 8963, 8967, 8971, 8976, - 8981, 8986, 8989, 8994, 8998, 9002, 9007, 9010, 9013, 9018, 9023, 9026, 9030, 9034, 9038, 9043, 9048, 9053, - 9058, 9062, 9067, 9072, 9076, 9080, 9083, 9087, 9091, 9095, 9100, 9104, 9109, 9113, 9118, 30, 9121, 9125, 9130, - 9133, 9138, 9142, 9146, 9151, 43, 9156, 9161, 9166, 9170, 9174, 9176, 9180, 9185, 9189, 9194, 9198, 9202, 9207, - 9211, 9215, 9219, 9223, 66, 9226, 9230, 9235, 9240, 9245, 9250, 9253, 9258, 9262, 9267, 9272, 9277, 9282, 9286, - 9291, 9293, 9297, 9300, 9304, 9308, 9312, 9316, 9321, 9325, 9329, 9333, 9337, 9341, 9344, 9348, 9352, 9356, - 9360, 9365, 9369, 9374, 69, 66, 256, 9379, 179, 69, 9383, 9387, 9392, 9397, 9402, 9406, 9411, 9415, 9420, 9424, - 9428, 9432, 9437, 9442, 9447, 9451, 9454, 9458, 9461, 9465, 9470, 9475, 9480, 9485, 9488, 9491, 79, 9496, 17, - 9501, 9505, 9509, 9514, 9519, 9524, 9529, 9534, 9537, 9540, 9544, 9547, 9552, 9556, 9561, 9566, 9570, 9573, - 9577, 9581, 9586, 9590, 52, 9594, 9598, 9601, 9606, 9610, 9614, 9617, 9622, 9626, 9630, 9635, 9639, 9642, 9647, - 9652, 9655, 9660, 9664, 9667, 9671, 9676, 9681, 9686, 9690, 9694, 9698, 9703, 9706, 9711, 9714, 9718, 9722, - 9726, 9730, 9735, 9739, 9742, 9747, 9751, 9756, 9761, 9765, 9770, 9774, 9779, 9784, 32, 32, 32, 62, 32, 265, - 265, 9791, 9794, 9798, 9802, 9806, 62, 62, 32, 9811, 13, 17, 13, 26, 9815, 13, 61, 9818, 9823, 9827, 9831, 9836, - 9840, 9843, 9848, 9852, 9857, 9862, 9865, 9869, 9873, 9877, 9882, 9887, 9891, 9895, 9899, 9904, 9909, 9914, - 9919, 9923, 9928, 9933, 9938, 9942, 9945, 9948, 9952, 9956, 9960, 9963, 9967, 9970, 9973, 9977, 9980, 159, 9983, - 9986, 9991, 9996, 10000, 10005, 10010, 10013, 10016, 10020, 267, 10025, 10028, 10032, 10037, 10041, 10046, - 10050, 10054, 10059, 10064, 10068, 10073, 10078, 10082, 10086, 10090, 10094, 10098, 10101, 10103, 10108, 10112, - 10117, 43, 10121, 10126, 10131, 10136, 10139, 96, 10144, 10147, 10149, 270, 10152, 10154, 10159, 10162, 10166, - 10169, 10172, 10175, 10178, 10181, 10184, 10188, 10191, 10195, 10198, 10202, 10206, 10209, 10213, 10215, 10218, - 10222, 10226, 10229, 10234, 10238, 10242, 10247, 10251, 10254, 10257, 10260, 10264, 10266, 10270, 10273, 10277, - 10281, 10285, 10290, 10295, 10299, 10303, 10307, 10311, 10315, 10319, 10321, 10324, 10328, 10333, 10338, 10342, - 10347, 10351, 10354, 10359, 10362, 10366, 10369, 10372, 10377, 10380, 10385, 10389, 10393, 10396, 10399, 10402, - 10405, 10409, 10414, 10418, 10423, 10428, 10433, 10438, 10443, 10446, 10449, 10453, 10458, 10462, 10465, 10469, - 10473, 10478, 10483, 10487, 10492, 10496, 10500, 10503, 10507, 10511, 10516, 10521, 10526, 10531, 10536, 10540, - 10543, 10546, 10549, 10553, 10558, 10563, 10567, 10571, 10574, 10578, 10583, 10588, 10591, 10595, 10599, 10602, - 10605, 100, 279, 270, 10610, 10615, 10620, 10625, 267, 10629, 10633, 10636, 10641, 10645, 10648, 10653, 10657, - 281, 10661, 10666, 10670, 96, 10675, 282, 282, 100, 10678, 10682, 100, 10686, 283, 10693, 10698, 10703, 10707, - 10711, 10714, 10716, 279, 10719, 284, 284, 10723, 96, 10726, 10729, 10733, 10738, 10740, 10744, 10749, 10753, - 10757, 10761, 10765, 10770, 10773, 10778, 10782, 10787, 10791, 10794, 10798, 10801, 10804, 10809, 10813, 10818, - 10822, 10827, 10831, 10835, 10837, 10842, 10845, 10849, 10851, 10856, 290, 10859, 10862, 10866, 10870, 10874, - 10879, 10883, 10888, 10892, 10895, 10898, 10901, 10906, 10910, 10914, 10917, 10921, 10925, 10929, 10933, 10938, - 283, 10942, 10945, 10950, 10954, 10958, 10962, 10967, 10969, 10974, 10977, 10982, 10987, 10992, 10996, 290, - 11000, 11003, 11007, 11010, 11012, 11017, 11019, 11023, 11028, 11033, 11037, 11042, 11046, 11050, 11053, 11058, - 11061, 11065, 11068, 11071, 11076, 11081, 11086, 11090, 11095, 11099, 11104, 11108, 11113, 11118, 11123, 11128, - 11132, 11136, 96, 100, 11141, 11146, 11150, 11154, 11159, 11163, 11166, 11170, 11173, 11177, 11181, 11185, - 11188, 11191, 11194, 11196, 11199, 11204, 11209, 281, 11213, 11217, 78, 11221, 11224, 11229, 11233, 292, 11237, - 11240, 11244, 11248, 11251, 11254, 292, 11259, 11262, 11265 - ], - [1, 3, 296], - [0, 297, 298, 299, 10], - [0, -809, -2387, -3019, -682, -1967, -3020, -567, -3021, -3022, -1552, -2055, -3023, -1311, -2030, -2113, -3024], - [ - 0, -705, -888, -1616, -664, -1107, -1521, -2162, -2466, -668, -1344, -3025, -1471, -1654, -2006, -2074, -2210, - -2550, -915, -932, -1548, -1666, -2093, -2177, -2388, -2439, -674, -795, -928, -1889, -2379, -2501, -522, -679, - -923, -1077, -1376, -1646, -1783, -1942, -3026, -2378, -3027, -3028, -1003, -3029, -1978, -3030, -2016, -2019, - -3031, -2281, -2376, -3032, -527, -778, -3033, -3034, -2410, -23, -3035, -3036, -3037, -1482, -1534, -1600, - -3038, -2040, -3039, -3040, -3041, -518, -528, -534, -1543, -1588, -1890, -1938, -2043, -2275, -2516, -305, - -3042, -3043, -3044, -1492, -3045, -3046, -556, -1906, -1908, -3047, -2285, -86, -3048, -3049, -3050, -2015, - -3051, -263, -3052, -3053, -558, -3054, -3055, -1962, -2044, -3056, -3057, -3058, -3059, -3060, -3061, -3062, - -560, -1601, -2505, -3063, -3064, -969, -977, -1491, -2052, -3065, -3066, -440, -3067, -562, -3068, -958, -3069, - -3070, -539, -3071, -1475, -739, -3072, -940, -962, -963, -1490, -3073, -3074, -3075, -916, -2013, -2017, -3076, - -3077, -3078, -3079, -1899, -3080, -428, -1897, -3081, -3082, -1017, -3083, -3084, -3085, -3086, -3087, -555, - -535, -3088, -3089, -427, -661, -3090, -3091, -26, -547, -741, -3092 - ], - [0, -3093, -3094, -2634, -3095, -3096, -2006, -3097, -3098, -3099, -3100], - [1, 3, 301], - [0, 302, 0, 303, 11], - [0, -469, -2153, -1864, -2231, -470, -1461], - [0, -3101, -3102, -475, -3103, -3104, -3105], - [1, 3, 305], - [0, 306, 0, 307, 9], - [0, -1816, -2153, -1461, -1588, -2], - [0, -3101, -3102, -475, -3106, -3107, -3104, -3108, -3109, -3105, -3110, -3111], - [0, 33, 0, 7, 5], - [1, 3, 310], - [0, 311, 0, 312, 4], - [0, -2387, -1839], - [0, -475, -3112, -3095, -3113, -3114], - [0, 33, 0, 7, 4], - [1, 3, 315], - [0, 316, 37, 317, 4], - [0, -2387, -2550, -2177, -679, -23, -2080, -742, -3115], - [0, -475, -3116], - [1, 3, 319], - [0, 320, 0, 7, 11], - [0, -2387, -3117], - [1, 3, 322], - [0, 33, 0, 323, 9], - [0, -475, -3118, -3119, -3098], - [1, 3, 325], - [0, 33, 0, 7, 6], - [1, 3, 327], - [0, 328, 0, 7, 4], - [0, -3120, -2387], - [1, 3, 330], - [0, 33, 331, 332, 10], - [0, -3121], - [0, -475, -3122], - [1, 3, 334], - [0, 335, 336, 337, 5], - [0, -809, -2004, -682, -567, -3123, -3124, -3125, -3126, -3127, -3128, -2639, -3129, -3130, -3131, -3132], - [ - 0, -485, -1107, -1415, -2006, -932, -2388, -3133, -2375, -1662, -767, -3134, -2019, -533, -3135, -1939, -2028, - -2410, -23, -3136, -1534, -3137, -3040, -528, -726, -2034, -44, -3138, -3139, -3140, -3141, -3142, -3143, -3144, - -2052, -3145, -3146, -3147, -3148, -3149, -2013, -3150, -3151, -428, -408, -3152, -3153, -3154, -3155, -3156, - -3157 - ], - [0, -3158, -3099, -2006, -3159, -3095, -3098, -3160, -3161, -3100, -3162, -3163], - [1, 3, 339], - [0, 340, 341, 342, 4], - [0, -1549], - [0, -485, -2006, -1031, -2019, -2410, -3040, -3164, -3052], - [0, -3158, -3099, -2494, -485, -3095, -3098, -3161, -3100, -2006, -3159, -3160], - [1, 3, 344], - [0, 345, 346, 347, 5], - [0, -682, -3165, -3166], - [0, -485, -1107, -2006, -1031, -2019, -2410, -3040, -3052], - [0, -3158, -3099, -2494, -485, -3095, -3098, -3161, -3100, -2006, -3159, -3160, -3167], - [1, 3, 349], - [0, 350, 351, 352, 4], - [0, -3168, -3169], - [0, -2387, -2299, -2402, -2300, -364, -3170, -3171, -2405, -3172, -365], - [0, -3173, -3174, -3175, -3176, -1791, -3177, -3178, -2299], - [1, 3, 354], - [0, 355, 356, 137, 4], - [0, -1107, -2218, -1591, -719, -742, -3179, -3180], - [0, -2177, -23, -3036, -3181, -3182], - [1, 3, 358], - [0, 359, 360, 7, 4], - [0, -3187, -1863, -3188], - [0, -3189, -2269, -3190], - [1, 3, 362], - [0, 363, 364, 138, 4], - [0, -812, -1460, -2177, -3191, -47, -25, -3192, -3193, -46, -3194, -22, -742, -3195, -3196, -3197], - [0, -2392, -2125, -2379, -3198, -3199, -3200, -40, -42, -3201, -3180, -3202, -3203, -3204, -3182], - [1, 3, 366], - [0, 0, 101, 7, 5], - [1, 3, 368], - [0, 369, 370, 371, 5], - [0, -47], - [0, -3189, -22, -3211, -3212, -3188, -3213], - [0, -525, -3214, -3215, -3216, -3217, -25], - [1, 3, 373], - [0, 374, 51, 21, 4], - [0, -3218, -24], - [1, 3, 376], - [0, 377, 378, 379, 5], - [ - 0, -3221, -812, -1496, -3222, -2177, -1442, -2223, -679, -3223, -1044, -3224, -1646, -1783, -1936, -3225, -1864, - -2654, -1125, -1600, -3226, -3227, -3228, -3229, -3230, -3231, -3232, -3233, -3234, -3235, -3236, -3237, -3238, - -3239 - ], - [ - 0, -652, -519, -2392, -2476, -2564, -2162, -2006, -932, -1610, -3240, -2125, -1110, -1942, -2019, -190, -2410, - -3241, -3037, -3242, -3243, -3244, -3245, -3246, -3247, -1603, -3248, -3249, -3250, -3251, -940, -3252, -3253, - -3254 - ], - [0, -3255, -3256, -3257, -856, -3258, -3259, -3260, -3261, -3262, -3161, -898, -3263, -3264, -1599, -3265, -1783], - [1, 3, 381], - [0, 0, 382, 383, 4], - [ - 0, -2832, -2581, -350, -351, -3266, -3267, -3268, -3269, -3136, -3037, -589, -651, -1415, -2127, -2132, -2375, - -2387, -2410 - ], - [0, -775, -3215, -3270, -3271, -3272, -2410, -3273, -3274, -3275, -1644, -3276, -3277], - [1, 3, 385], - [0, 386, 387, 388, 4], - [ - 0, -3278, -3279, -3280, -3281, -3282, -3283, -3284, -3285, -3286, -3287, -3288, -3289, -3290, -3291, -3292, - -3293, -3294, -3295, -3296, -1537, -3297 - ], - [ - 0, -3298, -3299, -3300, -3301, -3302, -3303, -3304, -3305, -3306, -86, -3307, -3308, -3309, -3310, -3311, -3312, - -932, -940, -1344, -1534, -2210, -2410, -3313 - ], - [0, -3314, -488, -856, -3315], - [1, 3, 390], - [0, 391, 0, 392, 9], - [0, -3316, -3317, -3318, -3319, -1123, -3320, -2387], - [0, -3321, -1122, -2006, -3322, -3323, -3324], - [1, 3, 394], - [0, 395, 396, 397, 6], - [0, -2006, -2127, -1967, -23, -3325, -40, -2234, -41, -3326, -3327], - [0, -1415, -932, -2375, -767, -2410, -3136, -3040, -1448, -969, -973, -972], - [0, -3328, -856, -3262, -2006, -3105, -3110], - [1, 3, 399], - [0, 400, 401, 7, 10], - [0, -2177, -983, -3329], - [0, -815, -932, -23, -3330, -426, -2411, -3211, -3331], - [1, 3, 403], - [0, 404, 405, 406, 5], - [0, -24, -3332, -3218], - [0, -23, -46, -3333, -3334, -3219, -3335], - [0, -525, -3220, -3336], - [1, 3, 408], - [0, 139, 51, 21, 10], - [1, 3, 410], - [0, 411, 51, 21, 11], - [0, -24, -3337], - [1, 3, 413], - [0, 414, 415, 21, 4], - [0, -3338, -3197, -24, -3339, -3340], - [0, -23, -3219, -25], - [1, 3, 417], - [0, 139, 101, 21, 5], - [1, 3, 419], - [0, 420, 421, 21, 10], - [0, -2177, -24, -3341, -3342, -3343, -3344], - [0, -1591, -23, -3192, -44, -40, -3345, -3343, -3219], - [1, 3, 423], - [0, 140, 424, 7, 8], - [0, -633, -647, -3346, -2416], - [1, 3, 426], - [0, 427, 428, 7, 4], - [ - 0, -2177, -3347, -3338, -3348, -24, -3342, -3343, -3349, -3350, -3351, -3352, -3353, -3197, -3344, -3354, -3340, - -3355, -3356, -3357, -3358, -3359, -3360, -3361, -3362, -3363, -3364, -3365, -3366, -3367, -3368, -3369, -3370, - -3371, -3372, -3373, -3374, -3375, -3376, -3204, -3377, -3378, -3379, -3380, -3381, -3382, -3383, -3384, -3385, - -3386, -3387, -3388, -3389, -3390, -3391, -3392, -3393, -3394, -3395, -3396, -3397, -3398, -3399, -3400, -3401, - -3402, -3403, -3404, -3405, -3406, -3407 - ], - [0, -23, -46, -3219], - [1, 3, 430], - [0, 431, 51, 7, 4], - [0, -24, -3349, -3408, -3409, -3410, -3411], - [1, 3, 433], - [0, 434, 51, 435, 8], - [0, -3077, -24, -3349, -3412, -3204], - [0, -3413, -2410], - [1, 3, 437], - [0, 438, 439, 7, 4], - [0, -3414, -1591, -3415, -1046, -2234], - [0, -633, -23, -3373, -3204], - [0, 0, 0, 7, 5], - [1, 3, 442], - [0, 443, 0, 7, 5], - [0, -753], - [1, 3, 445], - [0, 446, 51, 7, 4], - [0, -812, -47, -25, -3193, -3194, -22, -3416], - [1, 3, 448], - [0, 449, 450, 7, 6], - [0, -3212, -3188], - [0, -25, -3194, -3211], - [1, 3, 452], - [0, 141, 142, 143, 8], - [1, 3, 454], - [0, 455, 456, 457, 4], - [0, -3442, -1116, -1666, -1969, -2522], - [0, -756, -932, -940, -943, -958, -966, -967, -968, -974, -2250], - [0, -2520, -2905, -3443, -3444, -3445], - [1, 3, 459], - [0, 460, 461, 7, 4], - [ - 0, -3446, -2177, -680, -3447, -910, -1077, -3448, -1863, -479, -3449, -2115, -3450, -3451, -3452, -3453, -3454, - -3455, -3456, -3457, -3458, -3459, -3460, -3461, -3462, -3463, -3464, -3465, -3466 - ], - [0, -1821, -3467, -2269, -3199], - [1, 3, 463], - [0, 464, 465, 466, 4], - [0, -3468, -3469, -195, -196, -197, -682, -1967], - [ - 0, -21, -23, -26, -40, -41, -86, -3307, -3326, -350, -351, -3470, -3471, -3472, -427, -428, -528, -553, -3473, - -932, -962, -969, -970, -1344, -1534, -1942, -2006, -2019, -2127, -3474, -2140, -2174, -2410 - ], - [ - 0, -3475, -2006, -3476, -3160, -3477, -3098, -3478, -3479, -3480, -3481, -3482, -3100, -3483, -3484, -3485, - -3486, -3487 - ], - [1, 3, 468], - [0, 469, 0, 19, 4], - [0, -681, -66, -82], - [1, 3, 471], - [0, 472, 0, 473, 6], - [0, -3493, -2387], - [0, -3494, -3495, -3496, -3264, -3497, -3498, -475, -3499, -3500, -3501, -3095, -3488, -681, -3489], - [1, 3, 475], - [0, 476, 0, 19, 5], - [0, -681, -66, -83, -68, -80, -70], - [1, 3, 478], - [0, 479, 0, 19, 5], - [0, -681, -81, -66, -3502, -83, -68, -80], - [1, 3, 481], - [0, 482, 0, 19, 4], - [0, -681, -81, -66, -3503, -3502, -83, -80], - [1, 3, 484], - [0, 485, 0, 144, 5], - [0, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -65, -3504, -52, -77], - [1, 3, 487], - [0, 488, 0, 144, 4], - [0, -81, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -65, -3504, -52, -77], - [1, 3, 490], - [0, 491, 0, 102, 4], - [0, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -65, -3511, -52, -77], - [1, 3, 493], - [0, 494, 0, 102, 8], - [ - 0, -3512, -73, -74, -62, -71, -79, -72, -80, -70, -63, -3513, -76, -54, -67, -69, -56, -75, -55, -65, -52, - -3514, -77 - ], - [1, 3, 496], - [0, 497, 0, 102, 8], - [0, -73, -74, -62, -71, -79, -72, -80, -70, -63, -76, -54, -67, -69, -56, -75, -55, -3515, -65, -52, -77], - [1, 3, 499], - [0, 500, 0, 19, 6], - [0, -3516, -681, -3517, -81, -66, -3502, -71, -83, -68, -82, -65], - [1, 3, 502], - [0, 503, 0, 19, 4], - [0, -681, -81, -66, -3502, -71, -83], - [1, 3, 505], - [0, 506, 0, 19, 8], - [0, -3517, -81, -66, -83, -68, -85], - [1, 3, 508], - [0, 509, 0, 59, 6], - [0, -681, -66, -83], - [1, 3, 511], - [0, 512, 0, 145, 11], - [0, -3517, -81, -83, -68, -3519], - [1, 3, 514], - [0, 515, 0, 19, 8], - [0, -681, -66, -83, -82, -65], - [1, 3, 517], - [0, 518, 0, 145, 10], - [0, -3517, -83], - [1, 3, 520], - [0, 521, 0, 19, 4], - [0, -681, -81, -66, -3520, -3503, -80, -64, -3521], - [1, 3, 523], - [0, 524, 0, 19, 10], - [0, -681, -81, -66, -3502, -83, -68, -76], - [1, 3, 526], - [0, 527, 0, 19, 5], - [0, -681, -3517, -81, -66, -3520, -3502, -83, -68, -80, -82, -85, -64], - [1, 3, 529], - [0, 530, 0, 19, 8], - [0, -681, -81, -66, -74, -3502, -83, -68, -70], - [1, 3, 532], - [0, 533, 0, 19, 11], - [0, -681, -3517, -81, -66, -3502, -71, -83, -68, -80, -85, -64], - [1, 3, 535], - [0, 536, 0, 19, 4], - [0, -681, -81, -66, -3512, -3503, -3502, -83, -68, -80, -64], - [1, 3, 538], - [0, 539, 0, 19, 4], - [0, -681, -81, -66, -3520, -3502, -83, -68, -80, -85, -64], - [1, 3, 541], - [0, 542, 0, 19, 4], - [0, -81, -66, -3502, -83, -68], - [1, 3, 544], - [0, 545, 0, 19, 6], - [0, -681, -66, -68, -64], - [1, 3, 547], - [0, 548, 0, 549, 8], - [0, -3493], - [0, -3494, -3495, -3496, -3264, -3497, -3498, -2006, -3159, -3488, -681, -3489], - [1, 3, 551], - [0, 552, 0, 19, 6], - [0, -681, -3517, -81, -66, -3502, -83, -68, -85, -64], - [1, 3, 554], - [0, 555, 0, 19, 11], - [0, -3517, -66, -83, -68], - [1, 3, 557], - [0, 558, 0, 59, 11], - [0, -3517, -3522, -3523, -3524, -3525, -66, -3502, -83, -68, -3526], - [1, 3, 560], - [0, 561, 0, 59, 11], - [0, -66, -83], - [1, 3, 563], - [0, 564, 0, 59, 4], - [0, -3517, -81], - [1, 3, 566], - [0, 567, 0, 568, 4], - [0, -3493, -1549], - [0, -3494, -3495, -3496, -3264, -3497, -3498, -2476, -3527, -3528, -3529, -3488, -681, -3489], - [1, 3, 570], - [0, 571, 0, 59, 4], - [0, -3517, -81, -66, -3503, -3502, -83, -68, -80], - [1, 3, 573], - [0, 574, 575, 146, 5], - [0, -3530, -3531, -3532, -3533, -3534, -3535, -2550], - [0, -3536, -3537, -3149, -3037, -3041, -1077, -3125], - [1, 3, 577], - [0, 578, 0, 147, 5], - [ - 0, -3, -23, -3374, -40, -3538, -3539, -3540, -617, -3541, -674, -679, -714, -719, -755, -3542, -927, -1022, - -1026, -1077, -1107, -1276, -1320, -1349, -1460, -1548, -1577, -3543, -3544, -1610, -1646, -3545, -3546, -3547, - -1863, -3548, -1955, -2177, -2213, -3433, -3549, -2378, -2446, -3550 - ], - [1, 3, 580], - [0, 581, 0, 582, 4], - [0, -3553, -1361], - [0, -3554, -3555, -3161, -997, -3556], - [0, 25, 584], - 1732406400000, - [0, 25, 586], - 1733011200000, - [1, 3, 588], - [0, 589, 590, 148, 9], - [0, -1320], - [ - 0, -21, -23, -40, -3558, -3559, -3560, -2997, -3326, -350, -351, -3561, -3562, -518, -620, -3563, -3564, -699, - -767, -932, -945, -957, -958, -978, -3565, -1110, -1111, -3566, -1320, -3567, -1389, -1412, -1437, -1471, -1473, - -1475, -3568, -1477, -1479, -1481, -3569, -1486, -1547, -1753, -1771, -1889, -1891, -3570, -2125, -2127, -3571, - -3572, -3031, -2195, -2281, -3573, -2334, -3574 - ], - [1, 3, 592], - [0, 0, 0, 593, 4], - [0, -775, -3215], - [1, 3, 595], - [0, 0, 0, 596, 6], - [0, -775, -3579], - [1, 3, 598], - [0, 0, 0, 599, 4], - [0, -775, -3580, -3215], - [1, 3, 601], - [0, 602, 0, 603, 4], - [0, -98, -1931], - [0, -775, -1391, -3581, -3582, -1889, -3583, -3584, -3585], - [1, 3, 605], - [0, 60, 0, 606, 9], - [0, -775, -3586, -3587, -1889, -3583, -3588, -3589, -3590, -3591, -3592], - [1, 3, 608], - [0, 0, 0, 609, 4], - [0, -775, -1931, -3593], - [1, 3, 611], - [0, 612, 613, 149, 5], - [ - 0, -3594, -3595, -3596, -3419, -3597, -3598, -3599, -3600, -3601, -3602, -3603, -3604, -3605, -668, -695, -719, - -812, -3606, -1040, -1107, -3607, -1366, -1394, -1399, -3608, -1566, -3125, -3222, -1640, -1650, -1693, -1959, - -3609, -2177, -3610, -2297, -2400, -3611, -2548, -3612 - ], - [ - 0, -3613, -3614, -3615, -3244, -190, -262, -357, -3035, -3198, -3616, -3617, -3048, -3618, -3619, -3149, -3620, - -3621, -3622, -3623, -3037, -3624, -3199, -3625, -3626, -3627, -3628, -427, -428, -664, -3629, -711, -3630, - -838, -932, -958, -965, -978, -1004, -1077, -3631, -1654, -1689, -1788, -1942, -3632, -2200, -2210, -2211, - -3633, -2359, -2379, -2384, -2402, -2410 - ], - [1, 3, 615], - [0, 616, 617, 618, 4], - [0, -653, -668, -685, -695, -1077, -2375], - [ - 0, -86, -3307, -3048, -3049, -3136, -3637, -3638, -3639, -427, -428, -481, -693, -910, -932, -940, -967, -1344, - -1415, -3640, -1637, -1658, -1847, -1942, -3641, -3642, -2410 - ], - [0, -3643, -856], - [0, 25, 620], - 1730419200000, - [0, 0, 0, 7, 4], - [0, 0, 0, 7, 6], - [0, 0, 0, 7, 11], - [1, 3, 625], - [0, 626, 627, 104, 8], - [ - 0, -3644, -3645, -3646, -3647, -668, -674, -775, -2858, -3648, -3649, -1442, -1548, -1600, -3425, -3650, -3651, - -1608, -3652, -3653, -2161, -2223, -2303, -3654 - ], - [ - 0, -3655, -3656, -3657, -3658, -3659, -3660, -3044, -3661, -3662, -3037, -3663, -3664, -3665, -518, -928, -3666, - -1304, -3667, -3668, -1771, -1889, -1927, -2162, -3669, -2410, -2469 - ], - [1, 3, 629], - [0, 630, 631, 632, 9], - [0, -2387, -2426, -3675, -3676, -3677, -3678, -3679, -3680, -3681], - [0, -2391, -3682, -932, -2469, -1942, -767, -2410, -3037, -3683, -3684, -3664, -3685, -3686, -3687, -3688], - [0, -3689, -3690, -3691, -3692, -3693], - [1, 3, 634], - [0, 75, 635, 636, 4], - [0, -1654, -1942], - [0, -3694, -2414, -1446, -3695, -2402, -3671, -856, -3696], - [1, 3, 638], - [0, 639, 640, 104, 5], - [ - 0, -3697, -3698, -3699, -3700, -3701, -3702, -154, -3703, -3704, -3036, -3705, -3706, -469, -510, -521, -3707, - -668, -865, -1028, -1107, -1304, -1321, -1341, -1442, -1459, -1641, -1645, -1734, -2195, -2205, -2223, -2325, - -3708, -3709, -2488, -2550 - ], - [ - 0, -3710, -3711, -3712, -3660, -3044, -3713, -3037, -3714, -3715, -3041, -427, -428, -528, -928, -932, -972, - -1344, -1534, -1548, -2375, -2379, -2410 - ], - [1, 3, 642], - [0, 643, 644, 104, 6], - [0, -3646, -668, -3648, -3649, -1442, -1548, -1600, -3425, -3650, -3716, -3651, -1608, -3652, -2161, -2223], - [ - 0, -23, -3204, -40, -3659, -3136, -3660, -3044, -3661, -3662, -3717, -3037, -3663, -3718, -3719, -3720, -518, - -528, -928, -3666, -932, -972, -1304, -1415, -3668, -1889, -1927, -1942, -2082, -2375, -2410 - ], - [0, 25, 646], - 1734825600000, - [1, 3, 648], - [0, 649, 650, 651, 4], - [ - 0, -3234, -367, -411, -3721, -617, -668, -686, -724, -3722, -1010, -1028, -1070, -3723, -3724, -1304, -1460, - -1600, -3245, -1601, -3425, -3725, -3726, -1734, -1966, -2162, -3727, -3728, -2231, -2232, -2234, -3729, -2299, - -2446, -3730 - ], - [ - 0, -86, -3307, -3470, -3471, -3731, -3732, -3733, -3734, -3048, -3661, -3662, -3037, -3735, -3736, -3737, -3738, - -3739, -427, -428, -652, -3740, -1077, -1344, -1978, -2080, -2174, -2410 - ], - [0, -3122, -3445, -1334, -3161, -3741, -3742, -3743], - [1, 3, 653], - [0, 654, 655, 656, 10], - [ - 0, -3744, -3745, -3746, -3747, -3748, -3749, -367, -3750, -518, -635, -778, -779, -932, -940, -967, -969, -970, - -1110, -1344, -3751, -1643, -1889, -1908, -1930, -2162, -2163, -2275, -2281, -2282, -3436, -3752, -2335, -2501, - -2503, -2507, -2508 - ], - [0, -3753, -1534], - [0, -3100, -3754, -3755, -3756, -3590, -3551, -3757], - [1, 3, 658], - [0, 659, 660, 661, 9], - [0, -3661, -664, -668, -1551, -1600, -1816, -1951], - [0, -3758, -3035, -3759, -3037, -3760, -1344, -1534, -1942, -2410, -2469], - [0, -891, -3671, -856, -3690, -2410, -3761, -3762], - [1, 3, 663], - [0, 664, 665, 105, 5], - [0, -3341, -44, -3763, -3764, -3765, -3766, -742, -930, -3767, -2231, -3768], - [0, -23, -3769], - [1, 3, 667], - [0, 668, 669, 105, 4], - [0, -160, -3772, -3765, -3773, -3774], - [0, -3775, -2410], - [1, 3, 671], - [0, 672, 673, 7, 5], - [0, -44, -160, -3776, -3765, -3777, -3774], - [0, -3775, -3778, -2006, -2410], - [0, 0, 0, 7, 8], - [1, 3, 676], - [0, 677, 678, 38, 5], - [0, -983], - [ - 0, -652, -1498, -1654, -3779, -932, -1810, -2125, -2127, -2177, -3780, -1942, -2468, -2410, -1772, -3330, -426, - -3781, -2132, -3782, -2139, -428, -3783 - ], - [1, 3, 680], - [0, 0, 0, 681, 5], - [0, -3214, -3784, -932], - [1, 3, 683], - [0, 684, 685, 150, 4], - [ - 0, -3785, -682, -3786, -863, -996, -3787, -3544, -3788, -1610, -1653, -3789, -1848, -2680, -1885, -1955, -1967, - -3790, -2223, -3791, -3792, -3793 - ], - [ - 0, -3794, -3795, -3796, -3035, -3797, -3043, -3798, -3136, -3799, -3800, -3801, -3802, -3037, -3803, -3140, - -3040, -3052, -3804, -3805, -3046, -3806, -3041, -427, -428, -3807, -585, -740, -748, -753, -756, -778, -795, - -915, -2760, -3808, -932, -958, -969, -970, -1067, -1331, -1344, -1415, -1442, -3809, -3810, -1652, -1821, - -1942, -1952, -1992, -2006, -2019, -2024, -2125, -2195, -2214, -2275, -2278, -2375, -2379, -2387, -2410, -3811, - -2435, -2501, -2503, -2505, -2509 - ], - [1, 3, 687], - [0, 688, 689, 151, 4], - [0, -3819], - [0, -41, -409, -3040, -3052, -440, -2006, -2019, -3820, -727], - [1, 3, 691], - [0, 0, 0, 692, 4], - [0, -2651, -3827, -3828, -3829, -3830, -3831, -775, -2162, -3577, -3578, -3832, -3833], - [1, 3, 694], - [0, 0, 0, 695, 9], - [0, -2651, -3827, -3828, -3829, -3834, -3835, -775, -2162, -3577, -3578, -3832, -3833], - [1, 3, 697], - [0, 152, 0, 153, 8], - [1, 3, 699], - [0, 152, 0, 153, 4], - [1, 3, 701], - [0, 0, 702, 703, 6], - [ - 0, -23, -3840, -40, -41, -42, -86, -3307, -190, -195, -3841, -196, -3470, -3842, -3471, -406, -407, -409, -3136, - -3040, -3052, -635, -658, -741, -767, -932, -940, -958, -959, -962, -967, -969, -970, -976, -978, -1110, -1344, - -1415, -1419, -1942, -1952, -2006, -2019, -2125, -2174, -2375, -2379, -2391, -2410, -2411 - ], - [0, -3838, -1064, -2006, -3214, -3839, -3843], - [1, 3, 705], - [0, 106, 154, 706, 9], - [0, -2410, -3161, -3844, -3445, -1818], - [1, 3, 708], - [0, 709, 710, 711, 8], - [0, -3845, -198, -891, -3846], - [ - 0, -3847, -3037, -427, -428, -767, -891, -3848, -932, -933, -935, -940, -958, -962, -967, -1942, -2376, -2379, - -2402, -2410 - ], - [0, -2410, -3161, -891, -3844, -3445], - [1, 3, 713], - [0, 714, 154, 715, 9], - [0, -198, -3849, -3850, -3851, -617, -1465, -2080], - [0, -2410, -3161, -1004, -1818, -3844, -3445], - [1, 3, 717], - [0, 718, 719, 720, 6], - [0, -3852, -3853, -3854, -3855], - [0, -3856], - [0, -1122, -3857, -856, -1599, -3858], - [1, 3, 722], - [0, 723, 724, 725, 5], - [0, -3859, -3860, -3855, -3854], - [0, -3861, -3856], - [0, -858, -1122, -3857, -856, -3862, -1599, -3858], - [1, 3, 727], - [0, 728, 0, 729, 4], - [ - 0, -23, -40, -3863, -3864, -3865, -518, -534, -3866, -753, -767, -778, -779, -1041, -3867, -1643, -1889, -1908, - -3868, -2162, -3869, -2163, -2318, -2437, -2501, -2503 - ], - [0, -2501, -3870, -3871, -3100], - [1, 3, 731], - [0, 732, 733, 155, 6], - [ - 0, -3872, -3873, -3874, -3875, -3876, -3877, -3878, -3879, -3880, -3881, -3882, -3883, -3884, -3885, -3886, - -3887, -3888, -3889 - ], - [0, -3890, -3891, -3892, -3893, -3894, -3895, -3037, -1276, -1435, -2410], - [1, 24, 735], - [0, 25, 736], - 1724872768784, - [1, 3, 738], - [0, 739, 740, 741, 5], - [0, -3896, -1993], - [0, -86, -3307, -3897, -3898, -3470, -3471, -3899, -932, -1344, -1392, -3900, -1534, -1942, -2174, -2469], - [0, -1446, -1942, -3485, -856, -3214], - [1, 3, 743], - [0, 744, 745, 746, 4], - [0, -3901], - [ - 0, -2581, -3902, -3117, -406, -407, -409, -410, -3037, -3040, -3903, -3904, -3905, -3906, -440, -469, -3907, - -470, -3908, -3909, -3910, -3911, -3912, -767, -3913, -3914, -3915, -3916, -3917, -1435, -1449, -2926, -1637, - -3918, -3919, -3920, -1771, -2006, -2019, -2023, -2080, -3921, -3922, -2410, -2924, -3923, -2466, -3924, -2469, - -3612, -2564 - ], - [ - 0, -3925, -3926, -3927, -3928, -2023, -3612, -1435, -3921, -2410, -2564, -3923, -3911, -3916, -3929, -3930, - -3912, -3922, -469, -3931, -3908, -3932, -3933, -3914, -3934 - ], - [1, 3, 748], - [0, 749, 38, 750, 4], - [0, -2426], - [0, -3935, -3936, -3937, -3938, -3939, -3940, -3690], - [1, 3, 752], - [0, 753, 754, 755, 5], - [0, -3941, -3942, -3943, -3819, -1549], - [0, -2125, -2476, -2483], - [0, -2476, -3944, -3945, -3100, -3161, -3160, -3112, -3095, -3098, -3113, -3114], - [1, 3, 757], - [0, 758, 759, 760, 4], - [0, -3763, -229, -807, -1549], - [0, -3946, -2125, -2476, -2483], - [0, -2476, -3944, -3945, -3100, -3161, -3160, -3095, -3098], - [1, 3, 762], - [0, 763, 764, 63, 4], - [0, -3947, -2944, -2900, -3948, -3949, -3950, -2202], - [0, -3951, -3952, -3037, -2410], - [1, 3, 766], - [0, 767, 768, 769, 10], - [0, -2387, -1387, -3978], - [ - 0, -1415, -2162, -668, -999, -2184, -3979, -932, -2127, -1077, -1417, -1942, -2281, -3136, -3037, -3980, -3564, - -3981, -3982, -2284, -3983, -3984, -3985, -2891, -3986, -3987, -3988, -3989, -940, -428, -3990, -351, -3991, - -3992, -427 - ], - [0, -1386, -3161, -3993, -3162, -3994, -3995, -3996, -752, -891, -3997, -3998], - [1, 3, 771], - [0, 0, 156, 157, 4], - [1, 3, 773], - [0, 774, 0, 775, 4], - [0, -4003], - [0, -2410, -727, -1788, -4004, -4005], - [1, 3, 777], - [0, 778, 779, 780, 4], - [0, -2852, -4006, -4007, -4008, -682, -4009], - [0, -4010, -367, -407, -409, -410, -3664, -932, -940, -4011, -1449, -2006, -2019, -2410, -2466, -2469], - [0, -3095, -3098, -4012, -3099, -3161, -3100, -4013, -4014, -3159, -2006, -3160, -4015], - [1, 3, 782], - [0, 783, 784, 107, 4], - [ - 0, -4016, -4017, -4018, -4019, -4020, -237, -3037, -480, -668, -680, -4021, -1119, -4022, -4023, -4024, -4025, - -4026, -1426, -4027, -4028, -4029, -4030, -1427, -4031, -4032, -1639, -1950, -2218 - ], - [0, -4033, -4034, -4035, -4036], - [1, 3, 786], - [0, 787, 0, 7, 4], - [0, -4017, -4046, -4047, -4048, -3037, -3041, -668], - [1, 3, 789], - [0, 790, 791, 792, 6], - [0, -4049, -469, -470, -1548], - [ - 0, -234, -4050, -427, -428, -519, -4051, -932, -940, -958, -967, -1449, -1788, -1942, -2074, -4052, -2125, - -2127, -2130, -2142, -2144, -2234, -2379, -2387, -2402, -2410 - ], - [0, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -3926, -4057, -1463, -4058, -4059, -3999, -4060], - [1, 3, 794], - [0, 795, 796, 797, 5], - [0, -4061, -809, -1548], - [ - 0, -3778, -163, -270, -272, -274, -350, -4062, -351, -3561, -3043, -3136, -3040, -3052, -427, -428, -3807, -748, - -915, -932, -940, -958, -967, -969, -1415, -1419, -1449, -1788, -1942, -2006, -2019, -2125, -2127, -2130, -4063, - -4064, -2142, -2144, -2233, -2375, -2376, -2387, -2402, -2410, -2501, -2503, -2505, -238, -240 - ], - [0, -3118, -4065, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], - [1, 3, 799], - [0, 34, 800, 801, 6], - [ - 0, -4066, -3043, -3136, -4067, -3040, -3062, -427, -428, -3807, -767, -915, -932, -940, -958, -967, -969, -1415, - -1449, -1788, -1942, -2006, -2019, -2040, -2074, -4052, -2125, -2127, -2130, -2142, -2144, -2375, -2387, -2402, - -2410, -238 - ], - [0, -2006, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], - [1, 3, 803], - [0, 804, 805, 7, 4], - [ - 0, -3469, -4068, -4069, -4070, -4071, -4072, -4073, -4074, -4075, -4076, -4077, -4078, -4079, -4080, -4081, - -4082, -4083, -4084, -4085, -4086 - ], - [0, -4087, -3136, -1415, -2125, -2410], - [1, 3, 807], - [0, 808, 809, 810, 9], - [ - 0, -482, -567, -668, -725, -4088, -1107, -4089, -1442, -4090, -1572, -1645, -1650, -4091, -2125, -4092, -4093, - -4094, -4095, -4096, -2347, -2433, -2462, -2463, -4097 - ], - [0, -526, -4098, -555, -558, -756, -808, -1451, -1654, -1788, -4099, -2155, -2210, -2250, -2460], - [0, -2162, -3754, -775, -4100, -856, -3485, -4101], - [1, 3, 812], - [0, 0, 0, 813, 10], - [0, -4102, -4103, -4104], - [1, 3, 815], - [0, 816, 817, 158, 5], - [0, -2900], - [0, -231, -4105, -4106, -1536], - [1, 3, 819], - [0, 820, 28, 821, 6], - [0, -2852, -703, -2037, -4118, -2641, -2400], - [0, -3098, -3099, -3100, -3482, -2634, -1713, -2006, -3160, -4119], - [1, 3, 823], - [0, 108, 28, 824, 8], - [0, -4120, -3098, -4121, -3100, -3482, -2634, -1713, -4122, -2006, -4123, -3160, -4119], - [0, 0, 0, 826, 5], - [0, -3100, -3322, -3482, -2634, -1713, -2006, -4124, -4125], - [1, 3, 828], - [0, 0, 28, 829, 6], - [0, -3098, -3959, -3100, -3482, -4126, -2634, -1713, -2006, -3160, -4119], - [1, 3, 831], - [0, 832, 28, 833, 6], - [0, -2662, -2055], - [0, -3098, -3100, -3482, -2634, -1713, -4127, -4128, -4129, -2006, -3160, -4119], - [1, 3, 835], - [0, 836, 0, 837, 4], - [0, -4130, -257], - [0, -2006, -2634, -1713, -3160, -3098, -4119, -3482, -3100, -707, -4131, -4132, -4133], - [1, 3, 839], - [0, 840, 0, 841, 10], - [0, -703, -786], - [0, -2006, -2634, -1713, -3160, -3482, -3100, -906, -3771, -4134], - [1, 3, 843], - [0, 0, 0, 844, 5], - [0, -2006, -2634, -1713, -3482, -3100, -4124, -3322, -4125], - [1, 3, 846], - [0, 847, 0, 160, 4], - [0, -703, -2029, -1887, -1967, -44, -4135, -4136, -4137, -4138, -2055, -1311, -3024], - [1, 3, 849], - [0, 39, 0, 850, 4], - [0, -2006, -3159, -3119, -1613, -3843], - [1, 3, 852], - [0, 0, 853, 161, 4], - [ - 0, -1415, -2446, -1344, -932, -1548, -753, -2379, -2402, -1942, -589, -21, -533, -2410, -23, -3136, -3738, - -1771, -3044, -50, -86, -3268, -40, -977, -2082, -940, -967, -2405, -42, -262, -4139, -428, -3307, -427, -26, - -36, -35 - ], - [1, 3, 855], - [0, 856, 0, 857, 5], - [0, -4145], - [0, -4146, -1599, -4147, -2006, -2093], - [1, 3, 859], - [0, 860, 861, 862, 10], - [0, -264, -263, -834, -1548, -1645, -2114, -2177, -2231, -2410, -4148, -4149, -4150, -4151, -4152], - [0, -4153, -3044, -3200, -3199, -932, -4154, -4155], - [0, -2410, -3816, -4156, -4157, -4158, -3960, -856, -4159, -4160, -3761, -2127, -4161, -3116, -4162, -4163], - [1, 3, 864], - [0, 0, 865, 162, 4], - [0, -932, -4153, -4164], - [1, 3, 867], - [0, 868, 869, 162, 4], - [0, -469, -4166, -2114, -263], - [0, -932, -4167, -3200, -4153, -4164], - [1, 3, 871], - [0, 0, 872, 873, 5], - [0, -4168, -4169, -4170, -4171, -3037], - [0, -4172, -4173, -4174, -4175, -4176, -4177, -4178, -4179], - [1, 3, 875], - [0, 876, 877, 878, 8], - [0, -267], - [0, -265, -4171, -2400], - [0, -4172, -4173, -4174, -4175, -4176, -4177, -4180, -4181, -3816, -4182, -4183, -4184], - [1, 3, 880], - [0, 0, 881, 882, 4], - [0, -4185, -265, -4171, -3037, -4186], - [0, -4172, -4173, -4174, -4175, -4176, -4177, -4187, -2444], - [1, 3, 884], - [0, 0, 0, 885, 5], - [0, -4188, -3100, -4189, -3110], - [1, 3, 887], - [0, 888, 889, 890, 4], - [0, -4190, -4191, -4192, -4193, -4194, -4195], - [ - 0, -86, -3307, -4196, -4197, -3983, -4198, -3617, -4199, -4200, -3037, -4201, -4202, -4203, -4204, -523, -617, - -720, -754, -767, -796, -4205, -1004, -4206, -4207, -1063, -1116, -1278, -1449, -1729, -3246, -2228, -2229, - -4208, -2291, -2293, -2892, -2410, -2426, -2469, -4209, -2817, -4210, -2501, -4211, -2531 - ], - [0, -2105, -4212, -1334, -1342, -2540, -2533, -4213, -4214, -4215, -4216, -3634], - [1, 3, 892], - [0, 39, 0, 893, 4], - [0, -2006, -3159, -4217, -1613, -3119, -3843], - [1, 3, 895], - [0, 896, 0, 897, 6], - [0, -703, -2825, -2690, -1967, -273, -44], - [0, -2006, -3159, -4217, -1613, -3119, -1510], - [1, 3, 899], - [0, 900, 0, 901, 4], - [0, -703, -786, -2029, -2825, -2690, -1967, -273, -44, -2997, -2055, -4218, -3024], - [0, -2006, -3159, -4217, -1613, -3119], - [1, 3, 903], - [0, 904, 0, 905, 9], - [0, -703, -786, -2825, -2690, -1967, -44, -2575, -2689], - [0, -2006, -3159, -4217, -4219], - [1, 3, 907], - [0, 908, 0, 909, 4], - [0, -44, -2690, -3024, -703, -1967, -2055, -4220], - [0, -2006, -3159, -4217, -4221, -1613, -3119, -4222, -4223, -4224], - [1, 3, 911], - [0, 912, 913, 914, 5], - [ - 0, -4225, -4226, -4227, -4228, -4229, -4230, -4231, -4232, -4233, -682, -712, -4234, -4235, -4236, -1107, -1125, - -4237, -4238, -4239, -4240, -4241, -4242, -2095, -4243, -4244, -4245, -4246, -2400, -2427, -2429, -2501, -4247, - -2650 - ], - [ - 0, -4248, -4249, -4250, -4251, -3040, -3046, -518, -726, -2634, -1906, -2006, -2019, -2083, -2318, -2391, -2410, - -4252, -4253, -4254 - ], - [0, -4147, -856, -1713, -1599], - [1, 3, 916], - [0, 917, 0, 109, 9], - [0, -4255, -4256, -2888, -4257], - [1, 3, 919], - [0, 920, 0, 109, 11], - [0, -2387, -276], - [1, 3, 922], - [0, 923, 0, 109, 5], - [0, -2083, -4262, -2087, -2090, -3649, -4263, -4264, -1292, -2429, -4265, -4266, -4267, -668, -4245, -2427, -2268], - [1, 3, 925], - [0, 926, 927, 928, 5], - [0, -4268, -820, -665, -4269], - [ - 0, -664, -616, -1654, -932, -4270, -2125, -4271, -2379, -1098, -1942, -2410, -3035, -3037, -4272, -595, -964, - -958, -940, -967, -428, -4273, -427, -279, -4274, -4275 - ], - [0, -4276, -4277, -4271, -3634], - [1, 3, 930], - [0, 931, 932, 7, 5], - [ - 0, -4278, -4279, -4280, -281, -4281, -4282, -282, -4283, -4284, -4285, -283, -4286, -4287, -4288, -1315, -4289, - -1582, -1645, -1758, -4290, -1767, -4291, -1770, -1831, -4292, -1957, -4293, -4294, -4295, -2177, -2247, -4296, - -4297 - ], - [0, -4298, -4299, -4300, -589, -4301, -1722, -2319, -2325, -4302], - [1, 3, 934], - [0, 935, 29, 936, 5], - [0, -4282, -4283, -1107, -1645], - [0, -1764, -1776, -4303, -687, -4304, -4305], - [1, 3, 938], - [0, 0, 29, 939, 10], - [0, -1764, -687, -1733], - [1, 3, 941], - [0, 942, 943, 7, 6], - [0, -282, -4283, -4306, -1733, -1957, -2518], - [0, -4298, -4300, -4307, -2319], - [1, 3, 945], - [0, 946, 947, 163, 5], - [ - 0, -4308, -4309, -4310, -1600, -1395, -4311, -4312, -4313, -4314, -4315, -4316, -1550, -4317, -2161, -3649, - -4318, -4319, -1554, -4320, -1603, -4321, -4322, -4323, -3430, -4324, -4325 - ], - [0, -1107, -1654, -674, -2250, -4326, -633, -4327, -2251], - [1, 24, 949], - [0, 25, 950], - 1734998400000, - [1, 3, 952], - [0, 953, 0, 64, 4], - [0, -293], - [1, 3, 955], - [0, 956, 0, 64, 10], - [0, -1787, -2387], - [1, 3, 958], - [0, 959, 0, 64, 4], - [0, -300], - [1, 3, 961], - [0, 962, 963, 64, 5], - [0, -4341, -888, -2387, -2177, -2551, -1645, -910], - [0, -1415, -1787], - [1, 3, 965], - [0, 966, 40, 967, 4], - [0, -2387, -297, -293, -1863, -2654, -2383], - [0, -4332, -4342, -4335, -4340, -4343, -4344], - [1, 3, 969], - [0, 970, 40, 164, 4], - [0, -2387, -297, -2177, -293, -2410], - [1, 3, 972], - [0, 973, 0, 974, 9], - [0, -2387, -297, -299, -293], - [0, -4332, -4336, -4348, -4338, -4339, -4340, -4344], - [1, 3, 976], - [0, 977, 40, 978, 11], - [ - 0, -668, -2387, -1353, -2177, -715, -3187, -1864, -293, -1863, -2654, -23, -832, -1461, -1773, -300, -44, -4341, - -40, -2234, -3766, -4349, -42, -38, -33, -3376, -4350 - ], - [0, -4332, -4335, -4336, -4351, -4352, -4340, -4343, -4344], - [1, 3, 980], - [0, 981, 0, 165, 4], - [0, -2387, -297, -299, -293, -295, -4353], - [1, 3, 983], - [0, 984, 40, 165, 8], - [0, -2387, -297, -2571, -4354, -293, -4355, -295, -4356], - [1, 3, 986], - [0, 987, 40, 64, 9], - [0, -1787, -668, -2387, -2177, -910, -1864, -293, -2551, -4341], - [1, 3, 989], - [0, 990, 991, 76, 4], - [0, -302, -4357, -4358, -4359, -812, -2177], - [ - 0, -4360, -3035, -3621, -3037, -3199, -664, -697, -740, -932, -938, -939, -4361, -1111, -1654, -2210, -2379, - -2410 - ], - [1, 3, 993], - [0, 994, 995, 76, 5], - [0, -4357, -4358, -812, -1111, -1401, -2387], - [ - 0, -3035, -4363, -3044, -3621, -3037, -4364, -4365, -664, -740, -932, -938, -939, -4361, -1548, -1654, -1972, - -2379, -2410 - ], - [1, 3, 997], - [0, 998, 999, 1000, 4], - [ - 0, -480, -483, -4366, -692, -812, -888, -1097, -1366, -1401, -1532, -1645, -2177, -2267, -2297, -2654, -2820, - -2525, -2528 - ], - [ - 0, -3307, -3615, -304, -4360, -4367, -4368, -3268, -3035, -4269, -4369, -3198, -4370, -4363, -3621, -3037, - -4371, -4372, -4373, -4374, -4365, -589, -664, -665, -721, -767, -932, -938, -940, -1344, -1534, -4375, -1654, - -1788, -1942, -2200, -2210, -2379, -2384, -2410 - ], - [0, -4362, -687, -3957, -4376, -3215, -4377, -4378], - [1, 3, 1002], - [0, 1003, 1004, 1005, 6], - [0, -303], - [ - 0, -3307, -3615, -4367, -4368, -3035, -3621, -3037, -664, -721, -932, -938, -940, -1344, -1534, -1654, -4362, - -1942, -2200, -2379, -2410 - ], - [0, -4379], - [1, 3, 1007], - [0, 1008, 1009, 1010, 4], - [0, -3704, -4380, -4381, -4382], - [0, -4383, -4384, -4385, -4386, -4387, -3037, -3664, -928, -1037, -1107, -1722, -1942, -4388, -2410, -2426, -2469], - [0, -4389, -1105, -3691, -4390], - [1, 3, 1012], - [0, 1013, 0, 65, 4], - [ - 0, -4391, -4392, -4393, -4394, -4395, -4396, -4397, -4398, -4399, -4400, -4401, -4402, -4403, -4404, -4405, - -4406, -4407, -4408, -4409, -4410, -4411, -4412, -4413, -4414, -4415, -4416, -4417, -4418, -4419, -4420, -4421, - -4422, -4423, -4424, -4425, -4426, -4427, -4428, -4429, -4430, -4431, -4432, -4433, -4434, -4435, -4436, -4437, - -4438, -4439, -4440, -4441, -4442, -4443, -4444, -4445, -4446, -4447, -4448, -4449, -4450, -4451, -4452, -4453, - -4454, -4455, -4456, -4457, -4458, -4459, -4460, -4461, -4462, -4463, -4464, -4465, -4466, -4467, -4468, -4469, - -4470, -4471, -4472, -4473, -4474, -4475, -4476, -4477, -4478, -4479, -4480, -4481, -4482, -4483, -4484, -4485, - -4486, -4487, -4488, -4489, -4490, -4491, -4492, -4493, -4494, -4495, -4496, -4497, -4498, -4499, -4500, -4501, - -4502, -4503, -4504, -4505, -4506, -4507, -4508, -4509, -4510, -4511, -4512, -4513, -4514, -4515, -4516, -4517, - -4518, -4519, -4520, -4521, -4522, -4523, -4524, -4525, -4526, -4527, -4528, -4529, -4530, -4531, -4532, -4533, - -4534, -4535, -4536, -4537, -4538, -4539, -4540, -4541, -4542, -4543, -4544, -4545, -4546, -4547, -4548, -4549, - -4550, -4551, -4552, -4553, -4554, -4555, -4556, -4557, -4558, -4559, -4560, -4561, -4562, -4563, -4564, -4565, - -4566, -4567, -4568, -4569, -4570, -4571, -4572, -4573, -4574, -4575, -4576, -4577, -4578, -4579, -4580, -4581, - -4582, -4583, -4584, -4585, -4586, -4587, -4588, -4589 - ], - [1, 3, 1015], - [0, 1016, 1017, 65, 5], - [0, -4595, -4596, -712], - [0, -4597, -2391], - [1, 3, 1019], - [0, 0, 1020, 65, 8], - [0, -21, -23, -40, -1026, -1168, -1171, -1184, -1187, -1226, -4598, -4599, -2125, -2281, -2282, -2303], - [1, 3, 1022], - [0, 0, 1023, 65, 8], - [0, -21, -23, -40, -1168, -1171, -1184, -1226, -2125, -2281, -2282], - [1, 3, 1025], - [0, 0, 0, 1026, 4], - [0, -4600, -4601, -4602, -3578, -3445, -743], - [1, 3, 1028], - [0, 1029, 0, 1030, 4], - [0, -4603, -4604, -310, -4605, -4606, -4607, -4608, -4609], - [0, -4600, -4601, -4602, -3578, -3445, -4610, -2105], - [1, 3, 1032], - [0, 1033, 0, 1034, 5], - [0, -4611, -1640, -4612, -4605, -310, -4613, -4614, -311, -313, -4615], - [0, -4600, -4601, -4602, -3578, -3445, -4616], - [1, 3, 1036], - [0, 1037, 0, 1038, 4], - [0, -1640, -4617, -4614], - [0, -4600, -4601, -4602, -3578, -3445, -4616, -2178, -4618], - [1, 3, 1040], - [0, 1041, 1042, 1043, 4], - [0, -4619, -523, -617, -668, -1004, -1122, -1123, -1336, -1343, -1439, -1548, -1993, -4620, -3122, -4621], - [ - 0, -21, -23, -40, -4622, -3035, -4269, -3617, -4623, -3044, -3621, -4624, -3037, -4625, -4372, -3625, -4626, - -427, -428, -664, -665, -4627, -749, -932, -934, -935, -940, -948, -4628, -958, -964, -1654, -1722, -1788, - -1942, -1972, -2125, -2210, -2211, -2234, -2392, -2410 - ], - [0, -4629, -4630, -3214, -4631, -3634, -4632], - [0, 0, 0, 7, 10], - [1, 3, 1046], - [0, 1047, 0, 1048, 6], - [0, -1851], - [0, -4125, -4633, -2006, -2476, -2299, -4634, -2410, -3214, -3100, -3445, -1109, -3160, -1062, -3122], - [1, 3, 1050], - [0, 1051, 1052, 7, 4], - [0, -4635, -4636, -4637, -4638, -4639, -4640, -4641, -4642, -4643, -4644, -4645], - [ - 0, -3035, -3621, -664, -778, -925, -1471, -1475, -1479, -1480, -1482, -1483, -1654, -2125, -3047, -2275, -2402, - -2410, -2501 - ], - [1, 3, 1054], - [0, 0, 1055, 1056, 4], - [ - 0, -3983, -4646, -351, -3266, -406, -407, -4647, -3037, -4648, -784, -932, -4649, -4650, -4651, -4652, -1110, - -1449, -1889, -1891, -1942, -4653, -4654, -2091, -4655, -4656, -2127, -2132, -2142, -2286, -2379, -2387, -2392, - -2402, -4657, -2405, -4658, -4659, -4660, -4661, -4662, -2410, -4663, -2468, -4664 - ], - [ - 0, -4665, -4666, -4667, -4668, -4669, -775, -3099, -4189, -4670, -4671, -856, -4672, -4673, -3264, -4674, -4675, - -4676, -3214, -4677, -4678, -4679, -4680, -4681, -4682, -4683, -2410, -4684, -2257, -4685, -2006, -3322 - ], - [1, 3, 1058], - [0, 1059, 1060, 7, 4], - [0, -4686], - [ - 0, -4687, -4688, -4689, -4690, -528, -4691, -824, -4692, -957, -1077, -4693, -1168, -1174, -1197, -1212, -1244, - -1251, -4694, -4695, -1632, -1839, -4696, -4697, -2347, -2410, -4698 - ], - [1, 3, 1062], - [0, 1063, 1064, 1065, 8], - [ - 0, -469, -864, -2359, -4699, -1107, -2162, -510, -4700, -4701, -2550, -932, -2125, -2177, -2334, -2536, -1004, - -4702, -4703, -571, -679, -867, -1376, -1942, -2199, -715, -4704, -4705, -633, -4706, -1354, -1633, -1729, -23, - -1793, -4707, -47, -4708, -25, -305, -2232, -4709, -46, -4710, -2104, -2433, -3194, -4711, -40, -4712, -4713, - -41, -4714, -960, -2082, -32, -4715, -1458, -4716, -3077, -42, -4717, -4718, -4719, -3408, -4720, -3362, -4721, - -3398 - ], - [0, -2322, -4722, -2234], - [0, -4723, -3116, -687, -3161, -3577, -4724, -3162, -4725, -3445, -4726, -4727, -4728, -3205, -4729, -4730, -3186], - [1, 3, 1067], - [0, 0, 1068, 1069, 9], - [0, -932, -3469, -4731, -4732, -4733, -4734, -4735, -768, -769, -4736, -1077, -1387, -4737, -2654, -4738], - [0, -4739, -3161, -4740, -3843, -4741], - [1, 3, 1071], - [0, 1072, 1073, 1074, 9], - [0, -1983, -1436, -4742, -4743, -1416], - [ - 0, -1344, -2006, -2344, -932, -2127, -795, -2501, -1942, -4744, -2019, -2257, -2410, -3136, -3037, -3040, -4745, - -4746, -2046, -4747, -4748, -86, -4749, -3052, -2044, -4750, -2132, -4751, -1352, -969, -933, -958, -2140, - -4752, -4753, -4754, -4755, -409, -940, -962, -967, -350, -4756, -4757, -2113, -3267, -4758, -407, -428, -970, - -4759, -4760, -4761, -351, -4762, -410, -4763, -2413, -3307, -935, -4764, -427, -3474, -4765, -3394 - ], - [0, -2006, -2344, -4766, -4767, -4768, -4769, -4770, -4771, -3100], - [1, 3, 1076], - [0, 1077, 1078, 1079, 5], - [0, -3117, -3901, -1359, -2074, -2079, -2112], - [ - 0, -2832, -23, -3341, -262, -4772, -4773, -4774, -406, -409, -4775, -410, -4776, -4777, -3705, -4778, -3037, - -4779, -3040, -3052, -3041, -427, -428, -523, -928, -4780, -932, -940, -941, -956, -958, -962, -967, -969, -970, - -1077, -1384, -1449, -1459, -1683, -1729, -1942, -1984, -2006, -2019, -2125, -2214, -2387, -2391, -2392, -2410, - -2924, -3924, -2469, -2550 - ], - [0, -2074, -2006, -4781, -3481, -4782, -4783, -1359, -1361, -4784], - [1, 3, 1081], - [0, 1082, 1083, 1084, 4], - [0, -4785, -4786, -989, -4787, -4788, -1588, -1864], - [0, -4062, -351, -4789, -4790, -2127, -2231, -2234, -2410], - [0, -2127, -3862, -1764, -3209, -4791, -4792], - [1, 3, 1086], - [0, 1087, 1088, 1089, 10], - [0, -4785, -3200, -823, -4793, -2114], - [0, -23, -3412, -3326, -350, -4062, -922, -2127, -2231, -4794], - [0, -2127, -3862, -4795, -1764, -3209], - [1, 3, 1091], - [0, 1092, 1093, 1094, 4], - [ - 0, -653, -2359, -754, -2466, -668, -1111, -1650, -1872, -928, -1004, -4796, -1306, -2223, -679, -4797, -4798, - -4799, -4800, -1461, -4801, -4802, -4803, -4804, -263, -4805, -4806, -4807, -440, -4808, -264, -262, -4149 - ], - [ - 0, -4809, -2446, -2006, -932, -2125, -4810, -2469, -1942, -2019, -3628, -2410, -4198, -3037, -3738, -1534, - -3040, -3041, -1772, -4811, -3617, -3052, -2174, -2278, -4812, -969, -940, -962, -967, -428, -970, -1945, -4813, - -427, -4814 - ], - [0, -4810, -4158, -4165, -3816, -4815, -3960, -856], - [1, 3, 1096], - [0, 1097, 1098, 1099, 5], - [ - 0, -2921, -4816, -4817, -1085, -3649, -4818, -1699, -2476, -4819, -4820, -4821, -4822, -4823, -4824, -4825, - -4826, -4827, -4828, -4829, -4830, -4831, -4832, -4833, -4834 - ], - [ - 0, -4835, -3983, -4836, -4837, -3250, -4838, -1313, -1449, -2006, -4839, -2318, -2466, -4840, -4841, -2469, - -4842, -4843, -4844, -4845 - ], - [0, -3095, -856, -3438, -4846, -4679, -4847, -2476, -3944], - [1, 3, 1101], - [0, 1102, 1103, 1104, 4], - [0, -4848, -3649, -4825, -4827, -4843], - [0, -4849, -4850, -4851, -1030, -2466, -2469, -2548, -353, -4842], - [0, -3690, -856, -1030, -3438, -4847], - [1, 3, 1106], - [0, 1107, 1108, 1109, 4], - [0, -4852, -4853, -4854, -823, -2792, -4855], - [ - 0, -4856, -4857, -4858, -4859, -4860, -4861, -3035, -3617, -4862, -3621, -523, -617, -652, -767, -1004, -1323, - -1654, -4863, -1970, -2253, -2379, -2410 - ], - [ - 0, -4864, -4865, -4866, -4867, -4868, -4869, -4870, -4871, -4872, -4043, -3160, -3100, -475, -2006, -2476, - -3440, -4873, -4004, -3634 - ], - [1, 3, 1111], - [0, 1112, 1113, 1114, 10], - [0, -4852, -4853, -4854, -4874, -823, -4855], - [0, -4856, -3621, -4875, -4876, -4877, -4878, -4879, -523, -652, -767, -1654, -4863, -4880, -2253, -4881], - [ - 0, -4864, -4865, -4866, -4867, -4868, -4869, -4870, -4871, -4872, -4043, -3160, -3100, -3440, -4873, -4004, - -3634, -4881, -4882, -4883 - ], - [1, 3, 1116], - [0, 1117, 1118, 7, 4], - [0, -4884], - [0, -4885, -4886, -4887, -4888, -4889, -928, -1344, -1449, -1534, -1654, -1788, -1942], - [1, 3, 1120], - [0, 1121, 1122, 1123, 4], - [0, -2006, -2019, -3654, -261, -4890, -4891, -4892], - [ - 0, -2466, -2006, -2361, -1885, -4893, -2019, -3517, -2410, -4228, -2089, -3040, -4894, -3523, -3649, -2795, - -1606, -4785, -3525, -2085 - ], - [ - 0, -3671, -856, -2257, -4895, -4896, -4897, -4898, -1599, -4899, -4900, -4901, -3095, -3098, -2006, -2476, -475, - -2299, -4902 - ], - [1, 3, 1125], - [0, 1126, 1127, 110, 6], - [ - 0, -4903, -4904, -3165, -4905, -44, -3946, -195, -4906, -196, -197, -4907, -4908, -4909, -4910, -4911, -4912, - -595, -4913, -682, -747, -809, -4914, -4915, -4916, -4917, -4918, -4919, -4920, -4921, -4922, -4923, -4924, - -3123, -4925, -4926, -4927, -4928, -4929, -4930, -4931, -4932, -4933, -4934, -4935, -4936, -4937, -4938, -2002, - -4939, -4940, -4941, -4942, -4943, -2003, -4944, -4945, -4946, -4947, -2004, -2013, -4948, -4949, -4950, -2053, - -4951, -2344, -2345 - ], - [ - 0, -3139, -23, -4952, -4953, -162, -3778, -4954, -4955, -4773, -3562, -4757, -4762, -4763, -4754, -4956, -4957, - -4958, -4749, -4760, -4959, -406, -407, -409, -410, -4960, -3136, -4961, -4962, -4963, -4964, -3044, -3803, - -4965, -4966, -3040, -4967, -3087, -3052, -4968, -4969, -4970, -4971, -4972, -427, -428, -4973, -4974, -4975, - -534, -4976, -668, -674, -767, -4977, -881, -4978, -3808, -932, -933, -940, -948, -952, -958, -959, -962, -963, - -969, -970, -4756, -978, -1026, -4979, -1077, -1103, -1107, -1339, -1344, -1352, -1359, -1360, -1376, -1404, - -1415, -4980, -1416, -1419, -1421, -4981, -4982, -1437, -1449, -4983, -3134, -1534, -1548, -4984, -1662, -1805, - -1942, -1943, -1950, -1955, -1959, -1983, -4985, -4986, -4987, -2006, -2012, -2016, -2017, -2019, -3051, -4988, - -4989, -4990, -4991, -2044, -4992, -4993, -2093, -2094, -4994, -4995, -4996, -2177, -2205, -2214, -2281, -4997, - -4998, -2282, -4999, -5000, -2334, -2379, -2402, -2410, -5001, -2502, -5002, -5003 - ], - [1, 3, 1129], - [0, 1130, 166, 111, 4], - [0, -5004, -5005, -5006, -5007, -2741, -5008, -1085, -1548, -5009, -5010, -2355, -2446], - [1, 3, 1132], - [0, 1133, 166, 111, 5], - [0, -5004, -5005], - [1, 3, 1135], - [0, 1136, 1137, 111, 4], - [0, -5006, -5007, -2741, -5008, -5025, -1085, -1343, -1548, -5026, -1729, -5009, -5027, -5010, -2355, -2446], - [ - 0, -5028, -3044, -3037, -5011, -3738, -519, -865, -1771, -1942, -5012, -2376, -2379, -5013, -2388, -2389, -2410, - -2501, -2503, -2509 - ], - [1, 3, 1139], - [0, 1140, 1141, 1142, 6], - [0, -1110], - [0, -50, -5029, -5030, -932, -940, -965, -975, -2299, -2410, -2411], - [0, -932, -727, -5031, -2299], - [1, 3, 1144], - [0, 1145, 1146, 1147, 5], - [0, -3117, -5032, -5033, -461, -743, -5034, -5035, -1496, -1588, -5036, -5037, -3169, -2213], - [0, -5038, -3983, -365, -5039, -3037, -3172, -5040, -2127, -2299, -2301, -2410, -2466, -2469], - [0, -3161, -5041, -2299, -3176, -2466], - [1, 3, 1149], - [0, 1150, 1151, 1152, 5], - [0, -5042, -2814, -823, -1588, -5043], - [0, -2162, -2466, -2299, -3198], - [0, -5044, -5045, -2466, -2299], - [1, 3, 1154], - [0, 1155, 1156, 1157, 5], - [0, -23, -5046, -40, -41, -42, -2699, -5047, -5048], - [0, -534, -1626, -2437, -2501], - [0, -5049, -3839, -2006, -2501, -5050], - [1, 3, 1159], - [0, 1160, 1161, 1162, 5], - [0, -5051, -5052], - [0, -5053, -5054, -767, -2410], - [0, -5055, -5056, -525, -2410, -5057, -2501, -5058], - [1, 3, 1164], - [0, 1165, 1166, 1167, 5], - [0, -620, -2997], - [ - 0, -1107, -1168, -1415, -2162, -2125, -1889, -1942, -749, -1248, -2281, -1232, -2410, -3037, -518, -1238, -1930, - -2285, -5059, -5060, -5061, -5062 - ], - [0, -3754, -3098, -4902, -5063, -5064, -3482, -4012, -3160, -3100], - [1, 3, 1169], - [0, 0, 37, 1170, 10], - [ - 0, -5065, -5066, -5067, -5068, -5069, -5070, -5071, -3100, -2410, -3214, -5072, -5073, -5074, -5075, -5076, - -5077, -5078, -5079, -5080, -5081, -5082, -5083, -5084 - ], - [1, 3, 1172], - [0, 141, 142, 143, 4], - [1, 3, 1174], - [0, 1175, 1176, 1177, 9], - [0, -44, -737, -2387], - [ - 0, -23, -38, -40, -42, -3244, -190, -3983, -3326, -350, -351, -3561, -3266, -5085, -3037, -427, -428, -539, - -932, -940, -5086, -5087, -5088, -5089, -1772, -1942, -2127, -5090, -2200, -5091, -2410 - ], - [0, -5092, -3264, -5093, -5094, -3214, -5095, -3839, -2410], - [1, 3, 1179], - [0, 167, 1180, 7, 4], - [0, -409, -4775, -3040, -3052, -440, -757, -1772, -2006, -2019, -2965, -5097, -5098], - [1, 3, 1182], - [0, 167, 1183, 1184, 5], - [0, -2299, -2300, -3170, -975, -5099, -428, -5098, -365], - [0, -5100, -5101, -2299], - [1, 3, 1186], - [0, 1187, 1188, 1189, 4], - [0, -5102], - [ - 0, -5103, -3136, -427, -5104, -932, -936, -5105, -940, -967, -968, -1415, -1419, -1441, -1446, -1637, -2375, - -2376, -2410 - ], - [0, -5106, -5107, -5108, -5109, -5110, -3100, -3323, -3105], - [1, 3, 1191], - [0, 1192, 1193, 1194, 5], - [0, -44, -406], - [0, -795, -2410, -5111, -1771], - [0, -3634, -795, -3160, -5092, -4868, -5112, -4867, -4866], - [1, 3, 1196], - [0, 1197, 1198, 1199, 4], - [0, -4984, -5113, -1863, -1950, -44, -22, -5114, -5115], - [0, -1449, -2410, -5111, -635, -658, -5116, -407, -5117, -5118], - [0, -3634, -3160, -5092, -1449, -5119, -4868, -5112, -4867, -4866], - [1, 3, 1201], - [0, 1202, 1203, 1204, 4], - [0, -5120, -5113, -2745, -1863, -28, -5115], - [0, -1449, -1001, -2127, -2469, -2410, -5111, -5121, -1950, -5122, -350, -5117, -5123], - [0, -3634, -5092, -1415, -1449], - [1, 3, 1206], - [0, 1207, 1208, 1209, 10], - [0, -668, -5120, -1418, -1950, -5124], - [ - 0, -1415, -1344, -2006, -932, -1942, -21, -720, -2410, -23, -3136, -3040, -1952, -2034, -44, -2174, -3141, - -2052, -5125, -796, -3081, -3153, -3156, -5126 - ], - [0, -3634, -5127, -1415, -2034], - [1, 3, 1211], - [0, 39, 1212, 1213, 5], - [0, -406, -407, -3040, -3052, -668, -5128, -1418, -5111, -1772, -2006, -2019, -2125, -2410], - [0, -3634, -2006, -3160, -5092, -1449, -5119, -4868, -5112, -4867, -4866], - [1, 3, 1215], - [0, 0, 1216, 1217, 4], - [ - 0, -1392, -1449, -2006, -1001, -928, -2379, -5129, -2019, -2745, -2410, -5111, -3040, -5116, -5130, -5089, - -5131, -5087, -5132, -406, -5133, -5086, -409, -5134, -5088, -407, -5135, -5136, -3626, -948, -5137 - ], - [0, -5138, -5139, -2006, -3634], - [1, 3, 1219], - [0, 1220, 0, 1221, 6], - [0, -4603, -5140, -412, -417, -418, -419, -420], - [0, -5141, -3122, -3445, -1334, -3161, -3690], - [1, 3, 1223], - [0, 0, 0, 1224, 9], - [0, -5141, -4601, -4602, -3578, -3445, -743], - [1, 3, 1226], - [0, 0, 0, 1227, 11], - [0, -5141, -4601, -4602, -3578, -3445, -5142, -743], - [1, 3, 1229], - [0, 1230, 1231, 168, 4], - [0, -5143], - [0, -652, -2392, -1344, -2410, -3037, -411, -2581, -86, -5144, -3307], - [1, 3, 1233], - [0, 0, 0, 1234, 6], - [0, -5141, -4601, -4602, -3578, -3445, -990], - [1, 3, 1236], - [0, 0, 0, 1237, 9], - [0, -5141, -4601, -4602, -3578, -3445, -5145, -5146, -5147], - [1, 3, 1239], - [0, 1240, 0, 1241, 4], - [0, -416], - [0, -5141, -4601, -4602, -3578, -3445, -5148, -1389, -5149, -5150], - [1, 3, 1243], - [0, 1244, 0, 1245, 6], - [0, -4603, -5151, -422, -423], - [0, -5141, -4601, -4602, -3578, -3445, -4610, -2105], - [1, 3, 1247], - [0, 1248, 0, 1249, 4], - [0, -5143, -1640, -5152, -412, -413, -2701, -418, -421], - [0, -5141, -4601, -4602, -3578, -3445, -4616], - [1, 3, 1251], - [0, 169, 0, 1252, 8], - [0, -5141, -4601, -4602, -3578, -3445, -3122], - [1, 3, 1254], - [0, 1255, 0, 1256, 5], - [0, -1640, -415, -5153], - [0, -5141, -4601, -4602, -3578, -3445, -4616, -2178, -4618], - [1, 3, 1258], - [0, 1259, 0, 1260, 9], - [0, -1640, -5153], - [0, -5141, -4601, -4602, -3578, -3445, -4610, -2105, -2401, -3214], - [1, 3, 1262], - [0, 0, 0, 1263, 6], - [0, -5141, -4601, -4602, -3578, -3445, -4610, -2105, -2435, -5154, -5101], - [1, 3, 1265], - [0, 0, 0, 77, 5], - [1, 3, 1267], - [0, 1268, 0, 1269, 9], - [0, -5190, -5191, -5192, -5193, -2387], - [0, -5194, -5195, -3445, -5196, -5197, -3690], - [1, 3, 1271], - [0, 1272, 1273, 1274, 11], - [0, -1353, -5198, -5199, -429, -5200, -5201, -5202, -3331], - [0, -469, -1610, -2469, -1942, -5203, -4251, -3040, -1605, -5204, -2429, -4049, -3664, -1618, -5205, -5206, -5207], - [0, -932, -5208, -3784, -2410], - [1, 3, 1276], - [0, 1277, 112, 1278, 6], - [0, -812, -3782, -5202, -3331, -5209], - [0, -3272, -3217, -3214, -2410, -3215, -4132, -932], - [1, 3, 1280], - [0, 1281, 112, 1282, 5], - [0, -3782, -189, -3331, -5209], - [0, -932, -2410, -5210], - [1, 3, 1284], - [0, 1285, 1286, 1287, 8], - [ - 0, -161, -163, -5211, -682, -5212, -5213, -906, -5214, -5215, -1311, -1548, -5216, -1666, -1967, -5217, -4922, - -5218, -4929, -4934, -2002, -2004, -2030, -4991, -2055, -2113, -2192, -2489, -5219 - ], - [ - 0, -21, -23, -26, -33, -38, -39, -40, -41, -42, -86, -3307, -407, -409, -3059, -5220, -3044, -5221, -3040, - -3052, -427, -428, -5222, -5223, -523, -528, -533, -534, -5224, -540, -5225, -5226, -720, -5227, -778, -796, - -915, -916, -2760, -932, -969, -970, -1041, -1077, -1331, -1344, -1415, -5228, -4981, -5229, -1534, -1643, - -1667, -1814, -1942, -2000, -2006, -2019, -2049, -2052, -2251, -2275, -2281, -3085, -5230, -5231, -5232, -2410, - -2417, -2437, -2501, -2502, -2503 - ], - [0, -2006, -3159, -3095, -3098, -3100, -5233], - [1, 3, 1289], - [0, 1290, 0, 170, 5], - [ - 0, -703, -1436, -1548, -1699, -5234, -2650, -5235, -5236, -5237, -5238, -5239, -1320, -5240, -5241, -5242, - -5243, -5244, -5245 - ], - [1, 3, 1292], - [0, 171, 0, 1293, 5], - [ - 0, -5248, -5249, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, - -3577, -3100 - ], - [1, 3, 1295], - [0, 1296, 0, 1297, 4], - [0, -5254], - [ - 0, -3167, -5255, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, - -3577, -3100 - ], - [1, 3, 1299], - [0, 171, 0, 1300, 4], - [ - 0, -3962, -5256, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, - -3577, -3100 - ], - [1, 3, 1302], - [0, 1303, 0, 1304, 8], - [0, -5257, -436], - [ - 0, -5258, -5259, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, - -3577, -3100 - ], - [1, 3, 1306], - [0, 0, 0, 1307, 6], - [ - 0, -5260, -5261, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, - -3577, -3100 - ], - [1, 3, 1309], - [0, 1310, 1311, 1312, 5], - [0, -1983, -754, -1004, -2401, -724, -5262, -5263, -5264, -5265, -442], - [ - 0, -1415, -2177, -2375, -2293, -533, -2410, -23, -4198, -3136, -3037, -5266, -2581, -3617, -5267, -4203, -3732, - -3697 - ], - [0, -5268, -3100, -5269, -5270, -5271, -3441, -5272], - [1, 3, 1314], - [0, 1315, 1316, 1317, 4], - [0, -5273, -5274, -5275, -5276, -5277, -5278, -5279, -5280], - [ - 0, -2384, -2392, -2391, -2466, -1344, -932, -2125, -5281, -2469, -928, -1889, -2910, -2281, -1747, -1874, -5282, - -2214, -2302, -2410, -3037, -1534, -1771, -3040, -5283, -5284, -2581, -5285, -5286, -2284, -5287, -5288, -5289, - -2411, -5290, -3664, -5291, -2832, -5292, -5293, -2282, -5294, -2970, -5295, -5296, -5297, -4999 - ], - [ - 0, -5065, -5298, -5299, -5300, -5301, -5302, -5303, -5304, -5305, -5067, -5306, -5307, -5308, -5309, -5310, - -5069, -5311, -3100, -2410, -5312, -5313, -5314, -5315, -5316, -5072, -5073, -5074, -5317, -5318, -5083 - ], - [1, 3, 1319], - [0, 1320, 1321, 1322, 5], - [0, -753, -2314, -23, -635, -1588, -40, -2082, -5319, -3343, -3344, -3370, -3377], - [0, -4787, -2466, -461, -2892, -1863], - [0, -3100, -2466, -5044, -439], - [1, 3, 1324], - [0, 1325, 1326, 1327, 6], - [0, -23, -5320, -5321, -5322, -4776, -2041], - [0, -5323, -2006, -2019, -2923, -2892], - [0, -525, -5324, -2006, -2041, -2466, -5044], - [1, 3, 1329], - [0, 1330, 1331, 1332, 5], - [0, -429, -1026, -2411, -2478], - [0, -5325, -3037, -932, -980, -999, -5326, -1942, -2392, -2410, -2469, -2476], - [0, -2476, -5327, -5328, -932, -2410], - [1, 3, 1334], - [0, 1335, 1336, 1337, 10], - [0, -469, -470, -5329, -1335, -5330, -1851, -3122, -2187, -5331, -3434, -2548], - [0, -1004, -1654, -2250, -2293], - [0, -1004, -3438, -4847, -856], - [1, 3, 1339], - [0, 1340, 1341, 113, 5], - [ - 0, -5332, -5333, -3562, -367, -5334, -4251, -5335, -5336, -5337, -5338, -682, -5339, -5340, -747, -823, -5341, - -909, -5342, -5343, -5344, -3649, -2766, -1286, -1289, -1292, -5345, -1315, -1329, -5346, -1442, -1571, -5347, - -5348, -1779, -1878, -4130, -5349, -1955, -2000, -4930, -4942, -2003, -4944, -2004, -2013, -2965, -2028, -5350, - -5351, -2084, -5352, -2090, -5353, -4242, -2095, -2098, -2101, -2162, -3728, -5354, -5355, -2427, -2429, -5356, - -2435, -5357, -5358, -5359 - ], - [ - 0, -86, -3307, -3659, -5360, -5361, -3660, -5362, -3037, -5363, -3803, -3040, -3087, -3052, -5364, -5365, -5366, - -932, -4597, -1026, -1031, -5367, -5368, -1344, -1534, -1942, -1944, -1945, -2006, -2019, -2281, -2379, -2410, - -2469, -5369, -5370 - ], - [0, 0, 0, 7, 9], - [1, 3, 1344], - [0, 0, 1345, 1346, 4], - [0, -3037, -427, -428, -932, -934, -958, -2125, -2127, -2142, -2410], - [0, -3445, -5373, -5374, -5375, -5376, -5377, -5378], - [1, 3, 1348], - [0, 1349, 1350, 1351, 4], - [0, -5379], - [ - 0, -23, -3204, -40, -43, -5380, -5381, -3621, -3037, -507, -708, -5382, -932, -1471, -1475, -1476, -1479, -5383, - -1480, -1482, -1486, -1654, -1771, -1788, -1810, -2125, -2127, -2128, -5384, -2131, -2137, -2139, -2141, -5385, - -2379, -5386, -2410 - ], - [0, -5387, -5388, -5389, -997, -5390, -5391, -5392, -5393, -5394, -5395, -5396], - [1, 3, 1353], - [0, 1354, 172, 1355, 5], - [0, -1641, -5397], - [0, -5398, -5399, -5400, -459], - [1, 3, 1357], - [0, 1358, 114, 1359, 5], - [0, -510, -615, -1548, -1671, -2071], - [0, -5401, -460, -3578], - [1, 3, 1361], - [0, 1362, 0, 7, 10], - [0, -461], - [1, 3, 1364], - [0, 1365, 1366, 1367, 8], - [0, -523, -668, -719, -1039, -1077, -1376, -1816, -5402, -2205], - [ - 0, -350, -4062, -351, -3266, -5403, -3048, -5404, -3049, -3037, -2125, -2127, -4063, -5405, -2142, -5232, -2387, - -2388, -2410 - ], - [0, -687, -463, -2476, -2006, -5406, -5407, -2410, -3967], - [1, 3, 1369], - [0, 0, 1370, 1371, 4], - [0, -664, -1351, -1654, -1942, -2125], - [0, -5408, -1636, -5409, -2432], - [1, 3, 1373], - [0, 0, 27, 1374, 5], - [0, -5410, -465, -5411, -5412, -5413], - [1, 3, 1376], - [0, 1377, 1378, 1379, 8], - [0, -5414, -5415, -812, -5416, -3222], - [0, -3198, -5417, -3620, -3037, -3664, -2210, -2379, -2392, -2469], - [0, -5418, -5419, -763, -5420, -2166, -4043], - [0, 44, 15, 16, 6], - [1, 3, 1382], - [0, 1383, 1384, 1385, 4], - [ - 0, -5450, -5451, -5452, -633, -5453, -724, -812, -5454, -5455, -1004, -5456, -5457, -1336, -5458, -1442, -5459, - -5460, -5461, -1646, -5462, -5463, -5464, -2062, -5465, -2188, -2194, -5466, -5467, -5468, -2446, -2491 - ], - [0, -5469, -767, -1274, -1788, -5470, -2250, -2322, -2331], - [0, -468, -4865, -5471, -2319, -2322, -3634], - [1, 3, 1387], - [0, 1388, 1389, 1390, 5], - [0, -1025, -5472, -5473, -5474], - [ - 0, -5475, -350, -4062, -351, -3267, -3035, -3621, -3037, -5476, -427, -428, -470, -633, -664, -767, -809, -5477, - -932, -940, -1107, -1344, -5478, -1430, -1440, -5479, -1471, -1475, -1482, -1534, -1654, -5480, -1729, -1788, - -1942, -5481, -2127, -2140, -2379, -5482, -2410, -5483 - ], - [0, -4182, -4058, -2451, -3926, -1463, -1456, -5484, -5485], - [1, 3, 1392], - [0, 1393, 1394, 1395, 4], - [0, -469], - [0, -5475, -3136, -3037, -427, -428, -469, -932, -940, -1344, -1415, -5479, -1534, -1942, -2375, -2410], - [0, -5486, -3815, -3276, -3926], - [0, 45, 15, 16, 10], - [1, 3, 1398], - [0, 34, 1399, 1400, 6], - [0, -1813, -5487], - [0, -472], - [1, 3, 1402], - [0, 1403, 1404, 1405, 4], - [0, -5488, -2438], - [0, -5489, -1654, -1788, -2416], - [0, -5490, -5491, -5492], - [1, 3, 1407], - [0, 0, 1408, 1409, 6], - [0, -2162], - [0, -775, -2162, -3160, -3576, -3577, -5493, -5494], - [1, 3, 1411], - [0, 0, 0, 173, 5], - [1, 3, 1413], - [0, 0, 0, 1414, 5], - [0, -475, -3161, -4865, -5176, -5495], - [1, 3, 1416], - [0, 1417, 0, 1418, 5], - [ - 0, -5496, -5497, -7, -8, -9, -5498, -5499, -510, -518, -668, -722, -778, -784, -812, -5500, -834, -5501, -5502, - -5503, -1017, -1041, -5504, -1077, -5505, -1107, -1331, -1369, -1376, -5506, -1455, -1490, -1492, -1521, -1522, - -1548, -1645, -5507, -1743, -1758, -1812, -1816, -1888, -1908, -2000, -2092, -2114, -2125, -2148, -2163, -5508, - -2177, -5509, -2233, -5510, -2275, -2286, -2287, -2330, -2346, -2410, -2437, -2488, -2501, -2505, -2508, -2510, - -2567 - ], - [0, -475, -477], - [1, 3, 1420], - [0, 0, 0, 1421, 4], - [0, -5175, -3118, -4865, -5495, -3119, -5511, -3098], - [1, 3, 1423], - [0, 0, 1424, 1425, 9], - [0, -3542, -1202, -5512, -1654, -2343], - [ - 0, -5513, -5514, -5515, -5516, -5517, -5518, -5519, -5520, -5521, -5522, -5523, -5524, -5525, -5526, -5527, - -5528, -5529, -5530, -5531, -5532, -5533, -687, -5534, -712, -714, -5535, -4376, -3958, -4000, -5536, -5537, - -5538, -5539, -5540, -5541, -5542, -5543, -5544, -1496, -1573, -5545, -5546, -5547, -5548, -5549, -5550, -5551, - -5552, -2265, -5553, -3770, -3974, -5554, -3975, -5555, -5556, -2547, -5557 - ], - [1, 3, 1427], - [0, 1428, 115, 1429, 6], - [0, -5558], - [ - 0, -5514, -3974, -4000, -687, -2265, -3975, -5559, -5560, -5538, -5550, -2547, -1573, -5545, -3958, -5554, - -5561, -5562, -5412, -707, -5563, -5564, -3965, -5565, -685, -5566, -5567, -5568 - ], - [1, 3, 1431], - [0, 0, 1432, 1433, 10], - [0, -2541, -519, -2384, -480], - [ - 0, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -2265, -3975, -5559, -5538, -5549, -5513, -5550, -2547, - -3958, -5554, -5569, -5570, -5571, -5572, -4004, -5573, -5574 - ], - [1, 3, 1435], - [0, 0, 1436, 1437, 5], - [0, -2541, -519, -2384, -5575], - [ - 0, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -2265, -3975, -5559, -5538, -5549, -5513, -5550, -2547, - -1573, -5545, -3958, -5554 - ], - [1, 3, 1439], - [0, 0, 0, 1440, 6], - [0, -5514, -714, -687], - [1, 3, 1442], - [0, 1443, 1444, 1445, 11], - [ - 0, -4903, -5576, -44, -3946, -3763, -5577, -5578, -5579, -513, -786, -809, -5580, -5581, -1548, -1549, -2113, - -4951, -5582, -3768, -2345, -5583, -2489 - ], - [ - 0, -21, -23, -26, -34, -35, -36, -5584, -37, -3396, -5585, -3381, -38, -3382, -3412, -39, -40, -42, -86, -3307, - -305, -3326, -3732, -3048, -3136, -5586, -3164, -5587, -3661, -3037, -5588, -427, -428, -439, -4837, -5589, - -5590, -5591, -5592, -441, -4838, -5593, -4817, -5594, -461, -5595, -518, -523, -528, -533, -534, -538, -5596, - -539, -5597, -661, -668, -674, -708, -5339, -5598, -719, -5599, -767, -778, -779, -5600, -807, -5601, -5602, - -4978, -5603, -928, -3808, -929, -932, -940, -957, -958, -959, -963, -5604, -967, -980, -1026, -4979, -1077, - -1107, -1111, -1125, -1168, -1174, -5605, -1261, -1331, -1344, -5606, -5607, -1415, -1419, -1421, -5608, -5609, - -1439, -5610, -3025, -1521, -1522, -5611, -5612, -1534, -5613, -1600, -1601, -1602, -1603, -5614, -1610, -5615, - -1643, -1646, -1650, -1662, -1666, -1779, -1889, -1908, -1942, -1952, -1955, -1959, -2000, -4242, -2098, -5616, - -5617, -3868, -5618, -2125, -5619, -5620, -2177, -2218, -5621, -2275, -2281, -4997, -4998, -2282, -4999, -2284, - -2335, -2347, -2355, -2375, -2376, -2392, -2402, -2410, -5622, -2427, -2437, -5001, -2466, -2476, -5623, -5624, - -2478, -2480, -5625, -2481, -5626, -2483, -2484, -5627, -2486, -2501, -2502, -2503, -2505, -2508, -5628, -5002 - ], - [0, -2476, -3944, -3158, -3099, -485, -5629, -3095, -3098, -3160, -3161, -3100], - [1, 3, 1447], - [0, 1448, 1449, 110, 4], - [ - 0, -703, -809, -44, -3165, -2345, -4903, -5630, -5631, -5632, -5633, -4910, -5634, -5635, -4904, -5636, -5637, - -5638, -5639, -5640, -5641, -5642, -5643, -5644, -5645, -5646, -5647, -5648, -5649, -5650, -5651, -5652, -5653, - -5654, -5655, -5656, -5657, -5658, -4905, -5659, -5660, -5661, -5662, -5663, -5664, -5665, -4951, -5666, -5667 - ], - [ - 0, -469, -1816, -2592, -2323, -2392, -881, -1107, -1415, -1805, -523, -668, -4977, -1344, -1359, -1392, -1449, - -5668, -1880, -2006, -2193, -865, -932, -1031, -1437, -1548, -2093, -2125, -5669, -2177, -464, -5595, -5670, - -1955, -2402, -2501, -781, -1077, -1103, -4980, -1646, -1662, -1942, -5671, -5002, -767, -5672, -1026, -3134, - -4984, -1978, -4985, -2019, -5673, -5674, -1729, -1888, -2094, -2095, -2205, -2214, -2410, -3136, -3037, -5346, - -1339, -1534, -2026, -4994, -162, -4647, -5675, -3040, -5676, -5677, -4986, -5678, -5679, -3744, -305, -4964, - -3044, -3199, -4973, -1737, -1950, -5680, -2101, -2581, -3778, -5681, -5682, -5683, -4960, -3803, -4972, -3649, - -4982, -5684, -4954, -3562, -5685, -3048, -4961, -5686, -3624, -5687, -3051, -4773, -5688, -3052, -1404, -1416, - -5689, -2044, -4992, -2090, -3139, -5690, -3746, -4106, -5691, -3745, -3747, -283, -5692, -959, -1352, -4988, - -5001, -5693, -1292, -4981, -5694, -406, -4974, -952, -1421, -4989, -5695, -409, -962, -1419, -5696, -5697, - -5698, -4983, -2502, -4971, -3459, -5699, -407, -970, -5700, -4963, -5701, -5702, -5703, -410, -2914, -5704, - -4968, -5705, -4995, -4990, -4962, -5706, -4955, -5707, -5708 - ], - [1, 3, 1451], - [0, 1452, 0, 7, 5], - [0, -1805], - [0, 67, 15, 16, 4], - [1, 3, 1455], - [0, 1456, 1457, 1458, 9], - [0, -3278, -3279, -3299, -3283, -3288, -5709, -5710, -3304, -3305, -5711, -5712, -5713, -5714, -1537, -3297], - [ - 0, -3285, -3286, -3287, -5715, -3302, -3303, -86, -3307, -5716, -3308, -3309, -5717, -3310, -3311, -3312, -5718, - -5719, -617, -823, -932, -940, -985, -1004, -1077, -1344, -1442, -1534, -1685, -1724, -1889, -2125, -2127, - -5720, -4753, -2210, -2359, -2410, -3313, -2416, -5721, -2446 - ], - [0, -4902, -5722, -3690, -488, -856, -5723, -1789], - [1, 3, 1460], - [0, 1461, 1462, 174, 4], - [ - 0, -620, -719, -5724, -3808, -5725, -1077, -1107, -1276, -1351, -1437, -5726, -1548, -1600, -1753, -1955, -2177, - -2275, -2501, -2503, -2520 - ], - [0, -3044, -3621, -3037, -932, -5727, -943, -958, -966, -968, -1654], - [1, 3, 1464], - [0, 1465, 1466, 1467, 4], - [0, -5729, -888, -2177, -2433, -2550], - [0, -4370, -3037, -3199, -3041, -519, -1077, -2410], - [0, -489, -1599, -5730, -3690, -4100, -856, -3262, -5731, -687, -5732, -3958, -3691, -5728, -5733, -5734], - [1, 3, 1469], - [0, 1470, 1471, 1472, 5], - [0, -812, -5735, -1730, -1465, -2456], - [0, -664, -665, -1654, -2210, -2211], - [0, -5736, -5737, -5738, -5739, -5740, -5741], - [1, 3, 1474], - [0, 1475, 0, 7, 4], - [0, -5742, -5743, -3320, -5744, -2387], - [1, 3, 1477], - [0, 1478, 0, 1479, 8], - [0, -5745, -5742, -494, -5743, -5746, -5744, -2387, -5747], - [0, -3217, -4795, -5748, -3214, -5749, -1764, -2006], - [1, 3, 1481], - [0, 1482, 1483, 7, 6], - [0, -5743, -5744, -2387, -5750], - [0, -5751, -3136, -3037, -1122, -1123, -1415, -2125, -2127, -2375, -2388, -2410], - [1, 3, 1485], - [0, 1486, 1487, 7, 6], - [0, -494, -5752, -2387], - [0, -5751, -3136, -5753, -1037, -1122, -1123, -1415, -5754, -2125, -2127, -2375, -2388, -2410], - [1, 3, 1489], - [0, 0, 1490, 1491, 5], - [0, -708, -756, -5755, -796, -1104, -1405, -1654, -1657, -1663, -1788, -2174, -2449], - [0, -5756, -1847, -3590, -2444, -3966, -3551, -3209, -5757, -4792, -3994], - [1, 3, 1493], - [0, 1494, 1495, 1496, 4], - [0, -2959, -5758, -5759, -5760, -5761, -523, -615, -5762, -1548, -1582, -1666, -1667, -5763, -2177, -5764, -2531], - [ - 0, -5765, -5766, -2860, -3470, -3471, -5767, -3044, -3621, -3037, -5768, -3199, -4204, -4733, -664, -665, -741, - -1654, -1942, -2174, -2210, -2379, -2410, -2542 - ], - [0, -5769, -5271, -3634, -4864, -3162, -5770], - [1, 3, 1498], - [0, 1499, 1500, 1501, 10], - [ - 0, -5771, -5772, -5773, -5038, -5774, -5775, -5776, -5777, -5778, -5779, -5780, -5781, -5782, -5783, -5784, - -5785, -5786, -5787, -5788, -5789, -5790, -5791, -5792 - ], - [0, -1788, -1722, -1654, -2210, -932, -1942, -2410, -5793, -3037, -3621, -4372, -3199, -966, -428, -5794, -427], - [0, -5795, -5796, -5797, -5798, -5799, -5800, -5801, -5802, -5803, -5804, -5805], - [1, 3, 1503], - [0, 1504, 1505, 1506, 5], - [0, -5806, -5807, -5808, -5809, -5810, -5811], - [ - 0, -5812, -3136, -3037, -427, -428, -5813, -932, -940, -948, -958, -967, -1122, -1415, -1942, -5814, -1944, - -5815, -2251, -2375, -2379, -2410 - ], - [0, -5816, -5817, -3445, -5818, -1122, -5819, -3967, -2410, -5820], - [1, 3, 1508], - [0, 1509, 1510, 1511, 4], - [0, -5821, -510, -5822, -2062, -5823, -2325, -5824], - [0, -5825, -664, -1446, -1650, -1654, -2125, -5826, -2323, -2555], - [0, -5409, -501, -5827, -5408, -2323], - [1, 3, 1513], - [0, 0, 1514, 7, 8], - [0, -664, -1415, -1942], - [1, 3, 1516], - [0, 0, 1517, 1518, 10], - [0, -32, -5828, -932, -1654, -1788], - [0, -687, -3215, -503, -5829, -4377], - [0, 45, 15, 16, 6], - [1, 3, 1521], - [0, 1522, 1523, 1524, 6], - [0, -655, -5830, -5831, -5832], - [0, -5833, -5834, -516, -5835, -932, -993, -1065, -5836, -1365, -1777, -1788, -1794, -2156, -2322], - [0, -5837, -5838, -5839, -5840, -5396, -3582, -5841, -5842, -5843], - [1, 3, 1526], - [0, 0, 14, 1527, 6], - [0, -5839, -506, -5844, -5845, -5846, -5847], - [1, 3, 1529], - [0, 1530, 1531, 1532, 5], - [0, -2444, -5848, -655, -5849, -1797], - [0, -2322, -468, -753, -767, -21, -5850, -23, -1798, -40, -3335], - [0, -507, -4865], - [1, 3, 1534], - [0, 0, 1535, 7, 4], - [0, -2322, -1032], - [1, 3, 1537], - [0, 1538, 1539, 1540, 4], - [0, -820, -5851, -5852, -1794, -5853, -5854], - [0, -633, -1405, -1654, -1939], - [0, -507, -5855, -5856, -509, -3440, -1001, -1003, -2198, -5857, -4679, -4873, -4004, -3634, -3636, -5858, -5119], - [1, 3, 1542], - [0, 0, 1543, 1544, 4], - [ - 0, -1788, -664, -2148, -1446, -1471, -1654, -2550, -932, -2127, -2177, -674, -571, -615, -1077, -589, -633, -23, - -925, -1482, -5859, -566, -1472, -5860, -559, -5861, -5862, -32, -1483, -539, -1487, -1479, -5863, -2137, -535, - -5864, -549 - ], - [0, -510, -5865, -3551, -3590], - [1, 3, 1546], - [0, 0, 1547, 1548, 9], - [0, -3037, -5866, -2319, -2379, -2410], - [0, -510, -5867, -3184, -1334, -5868, -5149, -1961, -3844], - [1, 3, 1550], - [0, 1551, 1552, 7, 4], - [0, -2122], - [0, -519, -932, -1942, -1729, -1939, -5869, -1534, -969, -933, -958, -940, -962], - [1, 3, 1554], - [0, 0, 1555, 1556, 4], - [0, -23, -5870, -40, -42, -5871, -3136, -533, -756, -1415, -1534, -1763, -5872, -5873, -1939, -1942, -2379, -2410], - [0, -2451, -5874, -510], - [1, 3, 1558], - [0, 0, 0, 1559, 5], - [0, -514, -4865], - [1, 3, 1561], - [0, 1562, 1563, 1564, 6], - [0, -2359, -714, -5875, -2177, -5876, -5877, -5878], - [0, -1788, -2322, -932, -1777, -516, -2156, -5834], - [0, -5879, -5880, -5881, -1764, -5879], - [1, 3, 1566], - [0, 1567, 1568, 1569, 6], - [0, -719, -1276, -5882, -1729, -5883, -2177], - [0, -23, -43, -539, -5884, -664, -708, -767, -1609, -1654, -1788, -2226, -2250], - [0, -5885, -5886, -5887, -5888, -1573, -3262, -5889, -5890, -5891, -1306], - [1, 3, 1571], - [0, 1572, 1573, 1574, 5], - [0, -679, -714, -5892, -5893, -1107, -5894, -1574, -1816, -5895, -2105, -5896, -2550], - [0, -526, -559, -664, -932, -933, -958, -962, -969, -1654], - [0, -5885, -3015, -1380, -5897, -2490], - [1, 3, 1576], - [0, 1577, 0, 1578, 10], - [0, -635, -658, -5898, -1863, -1934], - [0, -518, -775, -5899, -1889, -3583], - [1, 3, 1580], - [0, 1581, 1582, 1583, 8], - [ - 0, -5900, -461, -462, -482, -5901, -506, -5902, -5903, -668, -5904, -680, -5905, -696, -5906, -5907, -5908, - -5909, -812, -5910, -1040, -1111, -5911, -1366, -1396, -1398, -5912, -5913, -1681, -1826, -5914, -1864, -1877, - -1951, -5915, -4621, -5916, -5917, -2530, -2550 - ], - [0, -5028, -5918, -3037, -480, -652, -999, -1001, -2210, -2319, -2331, -2384, -2410, -2541, -5747], - [ - 0, -5919, -4004, -4043, -3634, -519, -5920, -5921, -5922, -4873, -5732, -687, -1415, -1654, -2322, -2319, -1989, - -1412, -507, -5855, -1961, -5923, -510, -5924, -5867, -3262, -5925, -5926, -5927, -5928, -5119, -4045, -1001, - -2410 - ], - [1, 3, 1585], - [0, 1586, 1587, 1588, 4], - [0, -668, -909, -1543, -1548, -1639, -1650, -2234, -5929], - [ - 0, -3035, -3044, -4036, -3621, -3037, -3714, -4372, -3046, -615, -664, -5930, -1077, -1344, -1534, -1654, -1942, - -5931, -2125, -2195, -2251, -2330, -2388, -2410, -2501, -2503 - ], - [0, -2501, -5932, -5050, -2410], - [1, 3, 1590], - [0, 1591, 1592, 1593, 5], - [0, -2165, -2435, -2444, -2446, -640, -997, -2536, -5933, -5934, -1985], - [ - 0, -664, -1471, -1654, -932, -708, -1412, -2501, -793, -2416, -633, -2410, -3037, -1455, -711, -1413, -1481, - -5935, -5936, -1475 - ], - [ - 0, -3690, -5937, -5817, -5938, -5939, -5940, -5941, -5942, -5943, -5944, -5945, -5946, -5947, -5948, -5949, - -5950, -5951, -5952, -5953, -5954, -5955, -5956, -5957, -5958, -5959, -5960, -5961, -5962, -5197, -5963, -5964, - -5965, -5966, -5967, -5968 - ], - [1, 3, 1595], - [0, 0, 1596, 1597, 4], - [ - 0, -664, -1107, -668, -702, -999, -1127, -1344, -1446, -1449, -1471, -1654, -2210, -932, -1437, -753, -928, - -1110, -1821, -1376, -5969, -1942, -2416, -5970, -5113, -5971, -1474, -5972, -2410, -23, -3037, -5973, -925, - -5974, -1339, -1482, -1489, -1534, -1771, -5975, -5976, -1320, -1737, -4916, -5977, -5978, -2251, -5979, -40, - -5980, -1480, -2173, -5981, -1134, -1149, -1491, -1136, -1148, -5982, -1475, -2253, -3345, -940, -1479, -5983, - -5984, -36 - ], - [0, -5985, -4665, -3634, -5119, -4873, -3440, -5986], - [1, 3, 1599], - [0, 1600, 1601, 1602, 4], - [0, -1069, -5987, -1063], - [ - 0, -652, -1168, -668, -1344, -1471, -1654, -2210, -932, -1685, -1831, -2127, -1004, -5988, -1077, -5969, -1646, - -756, -767, -1070, -1100, -1276, -3727, -2325, -2410, -23, -617, -925, -1489, -1413, -1948, -5989, -1481, -516, - -86, -5990, -40, -5991, -4062, -4066, -3326, -1488, -2140, -5992, -1475, -1487, -1479, -1490, -350, -5993, - -1486, -5994, -5995, -351, -5996, -5997, -3307 - ], - [0, -2533, -1334, -5998, -1961, -3966, -4865, -4213, -3691, -3690, -3323], - [1, 3, 1604], - [0, 1605, 1606, 1607, 4], - [0, -5999, -1015, -6000, -6001, -2062, -2105, -2424, -2446, -2451, -2536, -2538, -1456], - [ - 0, -6002, -633, -756, -6003, -1127, -1154, -2778, -1405, -1471, -1475, -1478, -6004, -1479, -1480, -1482, -1483, - -1654, -1657, -1722, -2198, -2416, -2491 - ], - [0, -3966, -5800, -6005], - [1, 3, 1609], - [0, 1610, 1611, 137, 4], - [0, -527, -556, -566, -567, -719, -742, -3179, -1107, -1548, -6006, -1850, -2218, -2231, -6007, -679], - [0, -530], - [1, 3, 1613], - [0, 1614, 1615, 138, 9], - [ - 0, -6008, -529, -6009, -6010, -566, -567, -568, -569, -570, -572, -742, -812, -1460, -1548, -1645, -1850, -6011, - -2218, -2231 - ], - [0, -530, -6012, -556], - [1, 3, 1617], - [0, 1618, 1619, 7, 5], - [0, -2114, -47, -25, -46, -22, -983], - [0, -1344, -1654, -815, -932, -986, -1942, -1534, -528, -6013, -958, -956, -967], - [1, 3, 1621], - [0, 1622, 1623, 7, 5], - [0, -6010, -567, -570, -831, -1451, -1548, -2231, -6014], - [0, -530, -572], - [1, 3, 1625], - [0, 1626, 0, 7, 4], - [0, -567, -1548, -6015, -2177], - [1, 3, 1628], - [0, 1629, 0, 7, 5], - [0, -567, -6012], - [1, 3, 1631], - [0, 0, 0, 1632, 6], - [0, -525, -2476, -4146], - [1, 3, 1634], - [0, 1635, 1636, 7, 4], - [0, -4020, -4776, -539, -6016, -668, -1119, -2218], - [0, -23, -4034, -4035], - [1, 3, 1638], - [0, 175, 1639, 1640, 8], - [0, -21, -23, -32, -40, -652, -932, -940, -967, -1110, -1344, -1534, -1942, -2501], - [0, -2501, -5932, -525, -3184, -3186, -3551], - [1, 3, 1642], - [0, 0, 1643, 1644, 8], - [ - 0, -23, -34, -40, -526, -527, -528, -5884, -6017, -558, -6018, -560, -568, -570, -6019, -932, -940, -943, -958, - -966, -967, -968, -974, -1654, -1938, -1942, -2125, -2156 - ], - [0, -3220, -6020], - [1, 3, 1646], - [0, 1647, 1648, 1649, 4], - [0, -1797], - [ - 0, -2322, -932, -2125, -526, -527, -1365, -23, -528, -566, -6021, -40, -557, -559, -2156, -958, -934, -537, - -3840, -535, -3382, -6022, -550 - ], - [0, -525, -3862, -6023, -6024, -3966], - [1, 3, 1651], - [0, 116, 35, 21, 5], - [1, 3, 1653], - [0, 1654, 1655, 1656, 10], - [0, -3341], - [ - 0, -23, -41, -6025, -527, -6026, -756, -932, -933, -940, -958, -967, -1031, -1344, -1534, -1613, -1763, -1942, - -6027 - ], - [0, -3220, -485], - [1, 3, 1658], - [0, 1659, 1660, 1661, 4], - [0, -24, -6028, -4003, -6029, -6030], - [0, -21, -23, -3362, -3204, -43, -664, -756, -767, -1654, -1788, -6031, -2250], - [0, -1405, -525, -3862, -6032], - [1, 3, 1663], - [0, 1664, 1665, 1666, 4], - [0, -3341, -47, -1107, -1548, -6033], - [ - 0, -21, -23, -6034, -36, -3201, -3077, -38, -40, -41, -6035, -43, -4754, -510, -535, -540, -664, -6036, -6037, - -1549, -1654, -1993, -2011 - ], - [0, -3220, -6038, -1548, -3209], - [1, 3, 1668], - [0, 1669, 1670, 1671, 6], - [0, -6039, -1107, -1872, -2112, -2114], - [0, -21, -23, -37, -3204, -40, -527, -533, -722, -932, -934, -940, -958, -1344, -1415, -1534, -6040, -2251], - [0, -525, -3220, -3551, -6041, -6042, -6043, -2114, -6044, -6045, -4792, -6024], - [1, 3, 1673], - [0, 0, 1674, 7, 5], - [0, -1415, -6046], - [1, 3, 1676], - [0, 0, 0, 21, 5], - [1, 3, 1678], - [0, 0, 0, 21, 4], - [1, 3, 1680], - [0, 1681, 35, 21, 5], - [0, -6047, -6048, -567], - [1, 3, 1683], - [0, 1684, 35, 21, 5], - [0, -6049, -6050, -567, -568], - [1, 3, 1686], - [0, 1687, 1688, 1689, 6], - [0, -6051, -567, -568], - [0, -526, -546, -555, -559, -664, -1654], - [0, -525, -3220, -6052, -3336], - [1, 3, 1691], - [0, 1692, 35, 21, 5], - [0, -567, -568, -569, -570, -1548], - [1, 3, 1694], - [0, 1695, 1696, 21, 6], - [0, -6053, -567, -568, -570], - [0, -531, -6054], - [1, 3, 1698], - [0, 116, 35, 21, 10], - [1, 3, 1700], - [0, 1701, 35, 21, 4], - [0, -6054, -567], - [1, 3, 1703], - [0, 1704, 35, 21, 5], - [0, -567, -6055, -544], - [1, 3, 1706], - [0, 0, 1707, 1708, 4], - [ - 0, -21, -23, -3194, -3840, -26, -3203, -40, -6056, -41, -43, -528, -6057, -664, -932, -933, -951, -956, -958, - -962, -964, -967, -969, -1111, -1654, -6058, -1942 - ], - [0, -525, -3220, -2006, -6059, -6060], - [1, 3, 1710], - [0, 1711, 35, 7, 4], - [0, -6061], - [1, 3, 1713], - [0, 116, 35, 21, 4], - [1, 3, 1715], - [0, 1716, 0, 7, 6], - [0, -567, -753, -2082], - [1, 3, 1718], - [0, 1719, 1720, 1721, 6], - [0, -40, -41, -24, -3352, -38, -6062, -5584, -36, -3381, -6063, -3382, -6064, -553, -3393, -6065, -3396], - [0, -932, -23, -44, -2156, -958, -934], - [0, -525, -3184, -4795, -3214], - [1, 3, 1723], - [0, 1724, 1725, 7, 5], - [ - 0, -6066, -6067, -545, -6068, -6069, -548, -6070, -6071, -6072, -6073, -6074, -6075, -6076, -6077, -549, -6078, - -6079, -6080, -6081, -6082, -6083, -6084, -550, -6085, -6086, -6087, -554, -635, -1384, -2177 - ], - [ - 0, -526, -528, -530, -531, -539, -558, -566, -664, -708, -932, -6013, -956, -1077, -1548, -1654, -1788, -6088, - -2125 - ], - [1, 3, 1727], - [0, 1728, 1729, 7, 6], - [ - 0, -6066, -6068, -6069, -548, -6070, -6071, -6072, -6073, -6074, -6075, -6076, -6077, -549, -6078, -6079, -6080, - -6081, -6082, -6083, -6084, -550, -6085, -6086, -554 - ], - [0, -6012, -531], - [1, 3, 1731], - [0, 1732, 0, 7, 8], - [0, -6089, -544, -6090, -552, -6091, -6092], - [1, 3, 1734], - [0, 1735, 0, 7, 4], - [0, -23, -26, -33, -6065, -6062, -5584, -6093, -3394, -3203, -3409, -38, -40, -41, -42, -44, -3766, -553], - [1, 3, 1737], - [0, 1738, 0, 7, 9], - [0, -6094, -6095, -563], - [1, 3, 1740], - [0, 1741, 0, 7, 5], - [0, -6096, -6017, -564], - [1, 3, 1743], - [0, 1744, 0, 7, 4], - [0, -565, -6097, -543, -546], - [1, 3, 1746], - [0, 1747, 0, 7, 5], - [0, -6067, -6098, -545, -6087, -551], - [1, 3, 1749], - [0, 1750, 1751, 7, 4], - [0, -527, -567, -753, -6099, -1548, -1650, -2234], - [0, -3542], - [1, 3, 1753], - [0, 140, 1754, 7, 8], - [0, -6009, -555], - [1, 3, 1756], - [0, 1757, 0, 7, 4], - [0, -567, -569, -570, -572, -1548], - [1, 3, 1759], - [0, 1760, 1761, 7, 5], - [0, -6008, -6010, -567, -570, -572, -812, -1110, -1384, -1548], - [0, -529], - [1, 3, 1763], - [0, 1764, 1765, 7, 6], - [0, -567, -6100, -1548, -6101], - [0, -529, -572], - [1, 3, 1767], - [0, 0, 1768, 7, 5], - [0, -2319, -633, -23, -6102, -40, -6056, -742, -41, -6103, -3381, -3409], - [1, 3, 1770], - [0, 0, 1771, 1772, 6], - [ - 0, -519, -526, -528, -530, -537, -539, -6104, -559, -562, -668, -708, -767, -932, -6013, -956, -1059, -1788, - -2125, -2127, -2128, -2137, -5385, -6105 - ], - [0, -525, -3214, -3215, -572], - [1, 3, 1774], - [0, 1775, 1776, 1777, 4], - [0, -2424], - [0, -711, -757, -849, -932, -958, -1471, -1485, -1989, -2104, -2127, -2416], - [0, -6106, -6107, -5394, -3122, -3844, -3323, -4865], - [1, 3, 1779], - [0, 1780, 1781, 1782, 11], - [0, -719, -1107, -1376, -1805, -2125, -2387, -2446, -2451], - [ - 0, -6108, -3036, -3049, -3037, -3738, -6109, -3046, -427, -428, -3311, -6110, -6111, -3312, -664, -932, -958, - -966, -1654, -1656, -6112, -2195, -2200, -2335, -2376, -2379, -2402, -2410, -5260, -2501, -2503 - ], - [0, -3445, -574, -1671, -3105, -6113], - [0, 44, 15, 16, 4], - [1, 3, 1785], - [0, 0, 1786, 1787, 5], - [0, -756, -1127, -1132, -1162, -6114, -1405, -1654, -2081], - [0, -6115, -6116, -6117, -6118, -514, -638], - [0, 45, 15, 16, 11], - [1, 3, 1790], - [0, 0, 1791, 1792, 8], - [0, -5859, -589, -633, -2322], - [0, -6118], - [1, 3, 1794], - [0, 177, 1795, 1796, 5], - [0, -1654, -932, -1405, -966, -958, -968, -943, -963, -974], - [0, -6119, -6120, -6121, -6122], - [1, 3, 1798], - [0, 1799, 1800, 1801, 4], - [0, -888, -1645, -1646, -1650, -6123], - [0, -932, -943, -958, -966, -968, -974, -1654, -2125, -2293, -2369, -2418, -2450], - [0, -1004, -3161, -6124, -6125, -6126, -1752, -3578, -3691, -5728, -3122, -3994, -1954, -3445, -3690], - [1, 3, 1803], - [0, 1804, 1805, 178, 4], - [0, -1723, -6127], - [0, -1415, -6128], - [1, 3, 1807], - [0, 0, 0, 1808, 4], - [0, -581, -3214, -3756, -6131, -5110, -6120, -3173, -6129, -6130, -770], - [1, 3, 1810], - [0, 0, 1811, 178, 8], - [0, -581, -6132, -1942, -2410], - [1, 3, 1813], - [0, 1814, 1815, 1816, 9], - [0, -6133, -719, -679], - [0, -1003, -1127, -600, -1130, -1156, -1134, -1148], - [0, -6134, -6135, -6136, -6137, -6138, -6139, -3870, -6140, -6141, -6142, -6143, -6144, -6145], - [1, 3, 1818], - [0, 0, 0, 1819, 5], - [0, -589, -6146], - [0, 68, 15, 16, 8], - [1, 3, 1822], - [0, 1823, 1824, 1825, 8], - [ - 0, -1640, -1805, -2518, -2546, -1519, -2114, -2346, -679, -1646, -6176, -1888, -1948, -725, -6177, -2062, -6178, - -6179, -6180 - ], - [0, -6181, -4215, -2322, -2363, -1405, -2491, -633, -6182], - [0, -6183, -633], - [0, 45, 15, 16, 4], - [1, 3, 1828], - [0, 1829, 1830, 1831, 11], - [0, -1548, -6184], - [0, -756, -6185, -1405, -6186, -1991, -2111], - [0, -589, -6187, -6188], - [0, 45, 15, 16, 5], - [1, 3, 1834], - [0, 1835, 0, 1836, 9], - [ - 0, -6189, -6190, -6191, -23, -3194, -25, -26, -6093, -5828, -3355, -3204, -3408, -40, -42, -46, -4228, -4145, - -3037, -469, -6192, -501, -510, -674, -679, -683, -714, -6193, -742, -1070, -1323, -6194, -1729, -1847, -1942, - -6195, -2162, -2228, -2231, -2245, -2299, -2410, -2416, -6196, -2476, -2550, -1376, -6197 - ], - [ - 0, -6198, -6199, -6200, -6201, -6202, -6203, -3161, -2410, -3214, -3018, -5065, -4726, -3445, -6204, -6205, - -6206, -6207, -6208, -6209, -6210, -6211, -6212, -6213, -6214, -6215, -4160, -6216, -6217, -2006, -6218, -6219, - -2476, -6220, -6221, -4726, -2299, -6222, -6223, -2228, -6224 - ], - [1, 3, 1838], - [0, 1839, 1840, 1841, 10], - [0, -6225, -6226, -6227], - [0, -523, -664, -932, -1654, -6228, -1972, -6229], - [0, -4055, -6230, -6231, -2487, -1838, -3215, -6232, -6233, -2059, -6234, -510, -6235], - [1, 3, 1843], - [0, 0, 0, 1844, 5], - [0, -6236, -6237, -6238, -6239, -6240, -6241, -6242, -6243, -6244, -6245, -6246, -6247], - [1, 3, 1846], - [0, 1847, 0, 1848, 8], - [0, -6248], - [0, -5269, -6249, -596, -6250, -5968, -6251, -6252], - [1, 3, 1850], - [0, 1851, 1852, 7, 4], - [0, -6253], - [0, -1788, -2322, -2388, -1942, -1729, -1972, -2410, -3037], - [1, 3, 1854], - [0, 1855, 1856, 1857, 9], - [0, -6254, -6255, -6256, -6257, -3204, -38, -2687, -6022, -6258, -2965, -6259, -2489], - [ - 0, -6260, -21, -23, -3204, -40, -6261, -43, -44, -4757, -2697, -358, -6262, -6263, -4754, -6264, -4956, -4749, - -4959, -409, -3136, -3052, -6265, -6266, -6021, -6267, -533, -534, -6268, -6269, -539, -557, -560, -6026, -567, - -6270, -683, -756, -767, -799, -6271, -932, -6272, -1168, -1261, -1266, -6273, -1365, -1415, -1422, -1440, - -1666, -6274, -1743, -1763, -1771, -1782, -1788, -1939, -1942, -2000, -2006, -2019, -6275, -6276, -2125, -2156, - -2163, -6277, -2275, -2375, -2376, -2410, -2501, -2502, -2503 - ], - [0, -598, -6278], - [1, 3, 1859], - [0, 1860, 1861, 1862, 8], - [0, -6279, -640, -1370, -2062], - [0, -1032, -2250, -2322, -2410], - [0, -640, -6280, -5827, -6281], - [1, 3, 1864], - [0, 1865, 1866, 1867, 5], - [0, -461, -6282, -6283, -1402, -1795, -2546], - [0, -510, -6284, -710, -1127, -1132, -1134, -1136, -1144, -1148, -1542, -1654, -1859, -2111, -2006, -6285], - [0, -4005], - [1, 3, 1869], - [0, 0, 0, 1870, 5], - [0, -6286, -6287, -6288, -6289, -6290], - [1, 3, 1872], - [0, 1873, 1874, 7, 6], - [0, -6291, -668, -6292, -1548, -6293, -1610, -6294, -6295, -1627, -6296, -6297, -2269, -6298, -6299], - [0, -6300, -601, -714, -932, -943, -958, -966, -968, -974], - [0, 45, 15, 16, 8], - [0, 67, 15, 16, 10], - [0, 67, 15, 16, 5], - [0, 67, 15, 16, 6], - [1, 3, 1880], - [0, 0, 1881, 1882, 5], - [0, -1405], - [0, -6301, -5389, -6302, -6187], - [1, 3, 1884], - [0, 0, 1885, 1886, 5], - [ - 0, -705, -2152, -1107, -1805, -461, -6303, -1654, -2210, -1452, -1650, -2125, -6304, -615, -1303, -1405, -1813, - -693, -2416, -462, -633, -617, -769, -2187, -1453, -1161 - ], - [0, -1961, -6187, -5923, -6305, -6306, -510, -5867, -6307, -6308, -6309, -6310, -6311, -6312], - [1, 3, 1888], - [0, 0, 1889, 1890, 6], - [0, -1654, -6313, -953], - [0, -6314, -6315, -6316, -6317, -6318], - [1, 3, 1892], - [0, 1893, 81, 7, 6], - [0, -651, -737, -812, -1335, -1351, -1800, -1983, -1999, -2401], - [1, 3, 1895], - [0, 1896, 1897, 1898, 4], - [0, -615, -6319, -1369, -1548], - [ - 0, -6320, -664, -932, -940, -967, -1344, -1446, -1497, -1534, -1654, -1691, -1788, -1857, -1942, -2210, -2211, - -2245, -2446 - ], - [0, -1818, -1691, -6321, -3742, -6322, -6323], - [1, 3, 1900], - [0, 182, 1901, 1902, 4], - [0, -707, -1510, -1607], - [0, -6324, -1334], - [1, 3, 1904], - [0, 0, 1905, 148, 4], - [ - 0, -1389, -2564, -1640, -2162, -2834, -1471, -932, -1111, -1437, -2093, -2127, -2149, -2334, -1412, -1442, - -1753, -1889, -2195, -3574, -1942, -699, -767, -3031, -2281, -21, -1354, -23, -6325, -3563, -1333, -1891, -2096, - -6326, -518, -1772, -3559, -3564, -1481, -1547, -6327, -6328, -2997, -3660, -3803, -3649, -3562, -6329, -945, - -3566, -2429, -40, -6330, -957, -3326, -958, -978, -1475, -1477, -6331, -3561, -963, -1479, -3571, -350, -6332, - -2084, -1486, -3565, -351, -1473, -3569, -3573, -3568 - ], - [1, 3, 1907], - [0, 0, 1908, 1909, 4], - [0, -2162, -6333, -888], - [0, -620, -2162, -775, -6334], - [1, 3, 1911], - [0, 0, 0, 1912, 4], - [0, -622], - [1, 3, 1914], - [0, 1915, 1916, 1917, 8], - [0, -2728, -656, -668, -688, -2267, -2400, -2820, -2528], - [0, -519, -1788, -2384, -2541], - [0, -687, -6335, -6336, -3974, -4110, -4000, -4111, -4112, -6337, -5554], - [1, 3, 1919], - [0, 1920, 1921, 1922, 4], - [0, -6338, -2114, -6339, -2347], - [0, -633, -725, -2319, -2346], - [0, -633, -6340, -1076, -6341, -3862, -5142, -6342, -4161, -6118], - [1, 3, 1924], - [0, 1925, 1926, 1927, 4], - [0, -812, -1645, -2488, -6343, -6344, -6345, -6346], - [0, -664, -1654, -2125, -1077, -2091, -6347, -964, -630, -6348], - [0, -6346, -3214], - [1, 3, 1929], - [0, 1930, 1931, 1932, 4], - [0, -6346, -6349], - [0, -6350, -630, -664, -1654, -6347], - [0, -6346, -1631, -6351], - [1, 3, 1934], - [0, 1935, 1936, 7, 6], - [0, -3628, -2731, -1054, -6345, -2359, -2488], - [0, -3035, -3621, -3037, -6352, -664, -726, -1654, -6353, -1788, -1942, -6354, -2388, -2389, -6355, -2410], - [1, 3, 1938], - [0, 1939, 1940, 1941, 6], - [ - 0, -6356, -6357, -6358, -668, -679, -729, -731, -6359, -6360, -6361, -990, -1072, -1077, -1336, -1361, -1639, - -1812, -5763, -1999, -6362, -2152, -2178, -2186, -2187, -2188, -2228, -2594, -2550 - ], - [ - 0, -3037, -6363, -664, -6364, -1119, -5735, -1654, -1942, -1980, -2105, -2111, -2125, -2210, -2229, -2234, - -2269, -2293, -2410, -2460 - ], - [0, -6365, -775, -6366, -6367], - [1, 3, 1943], - [0, 1944, 1945, 1946, 5], - [ - 0, -2435, -1107, -2444, -2546, -507, -640, -997, -1285, -6368, -6369, -6370, -1958, -2114, -1370, -1977, -2347, - -6371, -6372, -1464, -6373, -6374, -2194, -6375, -6376, -6377, -725, -6378, -6379, -6380, -6381, -6382, -6383, - -6384, -6385, -6386, -1848, -6387, -2062, -6388, -6389, -771, -6390, -6391, -6392, -6393, -6394, -5936, -6395 - ], - [0, -6396, -2319, -2330, -2177, -2346, -573, -6397, -6398, -710, -6399, -6400, -6401, -6402], - [0, -4865, -4792, -4791, -6403, -4161, -1764, -3214], - [1, 3, 1948], - [0, 1949, 1950, 1951, 9], - [0, -6404, -6405, -6406, -2114, -2346], - [0, -1449, -1705, -1972, -2105, -2125, -2319, -6407], - [0, -633, -6340, -5396, -1109, -1110, -6408, -6409, -4791], - [1, 3, 1953], - [0, 1954, 0, 1955, 9], - [0, -6410, -658, -6088, -6411, -6412], - [0, -657, -6413, -6414], - [1, 3, 1957], - [0, 1958, 1959, 1960, 11], - [0, -6415], - [0, -2322, -2125, -2410, -3037, -6416], - [0, -6417, -6418, -770, -6419, -6420, -6421, -6422, -5835, -6423], - [1, 3, 1962], - [0, 0, 1963, 1964, 10], - [ - 0, -1788, -2323, -2384, -664, -2446, -668, -1654, -2210, -932, -2127, -2379, -1942, -589, -1729, -2211, -2410, - -3035, -3037, -3621, -4372, -1588, -3625, -2234, -977, -940, -967, -262, -3267, -428, -351, -6424, -427, -234 - ], - [0, -1671, -637, -3215], - [1, 3, 1966], - [0, 0, 0, 1967, 6], - [0, -638, -4865], - [1, 3, 1969], - [0, 1970, 1971, 1972, 8], - [0, -461, -6425, -6426, -668, -1588, -1646, -6427], - [0, -6428, -932, -1107, -1654, -2125, -2127, -6429, -350, -4062, -351, -2231, -2234, -6430], - [0, -3214, -6431, -6432, -6433, -4795, -6434, -3184, -6052], - [1, 3, 1974], - [0, 1975, 1976, 1977, 11], - [0, -578, -5933], - [0, -468, -589, -633, -725, -1345, -5852, -5848, -2239, -2322, -2347, -2416], - [0, -6435, -4865, -633, -640, -6436, -6437, -6438], - [1, 3, 1979], - [0, 0, 1980, 1981, 4], - [0, -5834, -515, -516, -932, -1365, -1777, -2156, -2322], - [0, -640, -6439], - [1, 3, 1983], - [0, 1984, 1985, 1986, 4], - [0, -6127], - [0, -1654, -1733, -6128], - [0, -642], - [1, 3, 1988], - [0, 0, 14, 1989, 5], - [0, -6440, -6441, -6442, -3966, -3209, -3103, -6443, -4108, -5839, -6444], - [1, 3, 1991], - [0, 0, 1992, 1993, 5], - [0, -784, -1891, -1942, -2125, -2162], - [0, -775, -2162, -3754, -6445, -4672, -3576, -3161], - [1, 3, 1995], - [0, 1996, 1997, 1998, 5], - [0, -3417, -6446, -6447, -303, -304, -6448, -6449, -5007, -523, -668, -812, -6450, -6451, -1805], - [ - 0, -4367, -4368, -3035, -3198, -6452, -3621, -3037, -4372, -427, -664, -932, -938, -939, -940, -967, -1654, - -1661, -1722, -1763, -1788, -4362, -2200, -2210, -2379, -2410 - ], - [0, -3690, -856, -3438, -3328, -6453, -687], - [1, 3, 2000], - [0, 2001, 31, 2002, 5], - [0, -6376, -6399, -725, -6282, -1646, -2347], - [0, -633, -4161, -6454, -1644, -4792], - [1, 3, 2004], - [0, 2005, 2006, 2007, 6], - [0, -6455, -1666, -6456, -6457], - [0, -6458, -2319, -2454, -2456, -1607], - [0, -1573, -5545, -6459, -4055, -648], - [1, 3, 2009], - [0, 2010, 2011, 2012, 6], - [0, -6460], - [0, -6461, -932], - [0, -6462, -4054, -6463, -1069], - [1, 3, 2014], - [0, 2015, 2016, 2017, 4], - [0, -1578], - [0, -6464, -6465, -6466, -6467, -6468, -6469], - [0, -5149, -5839, -640, -6435, -6470, -650, -4055, -2512, -6471], - [1, 3, 2019], - [0, 0, 2020, 2021, 4], - [0, -932, -963, -1654, -1788], - [0, -6472, -651, -3590, -1838, -3215, -5845, -6473], - [1, 3, 2023], - [0, 2024, 2025, 2026, 4], - [0, -6474, -4003, -1047, -6475, -5086, -5087, -5089, -6030, -6476, -2550, -2551], - [0, -3037, -664, -6477, -767, -1654, -2250, -2379, -2410], - [0, -4005, -6478, -4004, -1405, -6479, -6480, -3966], - [1, 3, 2028], - [0, 0, 2029, 7, 5], - [ - 0, -3446, -1415, -999, -1344, -1111, -2127, -928, -5354, -2375, -2379, -2402, -1077, -1942, -6481, -2410, -23, - -3136, -1534, -1607, -3048, -2174, -6482, -2132, -6483, -350, -796, -351, -6484 - ], - [1, 3, 2031], - [0, 2032, 2033, 2034, 11], - [0, -1495, -6485], - [0, -2581, -6486, -6487, -3037, -3664, -6488, -6489, -2125, -2391, -2410, -2469, -6490], - [0, -3324, -6491, -6492, -3966, -4601, -6493, -2071, -1622, -6494, -6495, -6496, -6497, -6498, -6499, -6500], - [1, 3, 2036], - [0, 2037, 2038, 2039, 4], - [0, -6501, -6502, -6503, -6504], - [0, -5834, -516, -5835, -921, -932, -993, -1065, -5836, -1365, -1777, -1788, -1794, -2156, -2322], - [0, -3214, -3217, -6505, -3756, -6506, -6507, -6508, -6509, -6510, -655, -6511, -5924, -5831], - [1, 3, 2041], - [0, 0, 14, 2042, 4], - [0, -656, -6512, -6513, -6514, -6515, -6516, -864, -2424, -6517, -2265, -5554, -5845, -6518, -6519], - [1, 3, 2044], - [0, 0, 0, 2045, 4], - [0, -5180, -5177, -3839, -4865], - [1, 3, 2047], - [0, 0, 0, 2048, 5], - [0, -6520], - [1, 3, 2050], - [0, 2051, 2052, 2053, 9], - [0, -1723, -6521], - [0, -3037, -6522, -1004, -1442, -1654, -1870, -2250, -2384, -2410], - [0, -659, -6523, -6524, -6525, -6526, -6527, -5093, -6528], - [0, 45, 15, 16, 9], - [1, 3, 2056], - [0, 0, 2057, 2058, 4], - [0, -516, -932, -934, -958, -1077, -1654, -2501], - [0, -2501, -3862, -6529, -6024, -4792], - [1, 3, 2060], - [0, 0, 0, 2061, 5], - [0, -1859, -6530, -4004, -3634, -6531], - [1, 3, 2063], - [0, 0, 2064, 2065, 5], - [ - 0, -652, -6532, -1654, -932, -928, -1110, -6533, -820, -1942, -190, -2410, -6534, -6535, -3311, -960, -6536, - -350, -3312 - ], - [0, -4004, -5855, -507, -3634, -664], - [1, 3, 2067], - [0, 2068, 2069, 2070, 5], - [0, -6534], - [0, -652, -664, -1654, -932, -1110, -1942, -190], - [0, -664, -6537, -4865, -510, -3634, -6538, -5923, -6306], - [1, 3, 2072], - [0, 0, 183, 2073, 9], - [0, -664, -1841, -6539], - [1, 3, 2075], - [0, 0, 2076, 2077, 9], - [0, -664, -1654, -1405, -756, -6347, -6540], - [0, -664, -6537, -6541, -6542, -6543, -3862, -6544, -6545, -6546, -5572, -6547, -6548, -6549], - [1, 3, 2079], - [0, 0, 2080, 2081, 8], - [0, -652, -2541, -519, -2384, -999, -1612, -1575, -6550, -3037, -3523], - [ - 0, -712, -5535, -714, -3974, -4000, -687, -2265, -5514, -5553, -3770, -3975, -5538, -5549, -5513, -5550, -2547, - -1573, -5545, -3958, -5554 - ], - [1, 3, 2083], - [0, 0, 2084, 2085, 10], - [0, -519, -528, -756, -6551, -932, -6552, -1168, -6553, -1197, -1243, -1252, -6554, -1548, -1788, -1976], - [0, -669, -6555, -3262, -4004, -6556, -6557, -6558, -6559], - [1, 3, 2087], - [0, 0, 0, 2088, 5], - [0, -5888, -6514, -5845, -6408, -6512, -6519, -6560, -6561, -6562], - [1, 3, 2090], - [0, 2091, 2092, 7, 4], - [0, -6563, -6564, -734, -6565, -3446, -6566, -6567, -1805, -1852, -6568, -6569, -2177, -6570], - [0, -3037, -3199, -3664, -932, -944, -1431, -1942, -2251, -2410, -2423, -2469], - [1, 3, 2094], - [0, 2095, 2096, 2097, 4], - [0, -6571], - [ - 0, -350, -6572, -4062, -351, -367, -426, -6573, -427, -428, -6574, -6575, -6576, -726, -756, -767, -932, -6577, - -6578, -957, -963, -985, -1107, -1412, -1413, -1471, -1475, -1476, -1478, -1479, -1481, -3569, -1486, -6579, - -1491, -3222, -1666, -1667, -1870, -2127, -2130, -3571, -6580, -2140, -2410, -2550 - ], - [0, -659, -6581, -6582, -6583, -5177, -3576], - [1, 3, 2099], - [0, 2100, 2101, 2102, 11], - [0, -1839, -2426, -6584, -6585, -1333, -6586, -861, -6587, -6588, -6589, -6590], - [ - 0, -2392, -2386, -1344, -1449, -932, -1437, -2469, -1110, -1942, -2354, -190, -2410, -3037, -1534, -4647, -3615, - -6591, -965, -6592, -2411, -3664, -960, -6593, -978, -1943, -6594, -940 - ], - [0, -6595, -1437, -3585, -6596, -3215, -5092, -6597, -3264], - [1, 3, 2104], - [0, 2105, 2106, 2107, 5], - [0, -769, -6598, -1962], - [0, -526, -6066, -548, -559, -664, -932, -1452, -1654], - [0, -6599, -1958, -5923], - [1, 3, 2109], - [0, 2110, 2111, 2112, 4], - [ - 0, -44, -6600, -3946, -6601, -5579, -513, -595, -6602, -682, -709, -5212, -747, -753, -761, -6603, -6604, -6605, - -6606, -5581, -6607, -3135, -6608, -6609, -1398, -1442, -6610, -1452, -6611, -6612, -5216, -1666, -6613, -1942, - -4918, -6614, -6615, -1992, -4930, -4987, -6616, -6617, -6618, -6619, -2027, -2029, -6620, -6621, -2040, -2048, - -2056, -2113, -6622, -4951, -2192, -6623, -2387, -2424, -2489, -2446 - ], - [ - 0, -23, -26, -33, -34, -35, -36, -3396, -5585, -3381, -6624, -38, -3351, -3382, -40, -41, -3744, -3746, -3747, - -3562, -3059, -6625, -6626, -3043, -6627, -6628, -3136, -6629, -3044, -6630, -6631, -5221, -3040, -6632, -3052, - -6633, -6634, -4972, -427, -428, -482, -518, -523, -527, -528, -533, -534, -538, -5596, -3133, -6635, -6636, - -6637, -6638, -661, -668, -5598, -719, -767, -778, -3078, -786, -4977, -5603, -915, -916, -2760, -932, -933, - -940, -951, -958, -959, -962, -963, -969, -6639, -1017, -1021, -4979, -1041, -1074, -1103, -1107, -1168, -1174, - -1252, -5605, -1261, -1344, -1352, -1360, -6640, -1415, -1449, -3134, -1521, -5611, -1534, -1548, -4984, -5613, - -6641, -5615, -1643, -1646, -1650, -1652, -1653, -1662, -1664, -1667, -1792, -1814, -1889, -1908, -1952, -4923, - -6642, -6643, -4986, -2006, -2012, -2013, -2016, -2017, -3145, -3143, -6644, -2028, -6645, -4242, -2098, -5616, - -5617, -3868, -5618, -2125, -5619, -6646, -2281, -4997, -4998, -2282, -4999, -2284, -2335, -2347, -2376, -2410, - -2427, -2437, -6647, -6648, -2501, -6649, -2508, -5628, -5002, -3120, -2534 - ], - [0, -6650, -3099, -2006, -3159, -3095, -3098, -3160, -3161, -3100], - [1, 3, 2114], - [0, 2115, 2116, 2117, 4], - [0, -6651], - [0, -6652, -3037, -1942, -2358, -2410, -4701], - [0, -1076, -2490, -6653, -6654, -6655, -6656, -1080], - [1, 3, 2119], - [0, 0, 2120, 184, 5], - [0, -686, -1344, -2910, -2250, -2322], - [1, 3, 2122], - [0, 2123, 0, 2124, 5], - [ - 0, -81, -66, -3512, -73, -74, -3520, -62, -6660, -3503, -3502, -71, -6661, -79, -83, -68, -72, -80, -82, -85, - -70, -6662, -6663, -6664, -6665, -63, -6666, -3519, -3513, -64, -6667, -76, -54, -6668, -67, -69, -6669, -6670, - -6671, -3521, -6672, -6673, -56, -75, -6674, -55, -6675, -6676, -3515, -6677, -65, -3504, -3511, -6678, -6679, - -52, -3514, -6680, -3526, -77, -6681, -6682 - ], - [0, -3488, -681, -3489, -3494, -3495, -3496, -3264, -3497, -3498, -3505, -3506, -3507, -3508, -3509, -3161], - [1, 3, 2126], - [0, 0, 2127, 2128, 5], - [0, -2384, -2127, -2354, -1339, -1605, -4062, -350, -351], - [0, -2006, -775, -3205, -6683, -682, -2444, -3590], - [1, 3, 2130], - [0, 185, 2131, 2132, 5], - [0, -633, -932, -934, -1336, -1722, -2188, -2471], - [0, -775, -6684], - [1, 3, 2134], - [0, 2135, 2136, 2137, 10], - [0, -824], - [ - 0, -21, -23, -40, -42, -6685, -3136, -3037, -6686, -533, -708, -767, -825, -932, -999, -1344, -1415, -1534, - -1535, -1763, -1942, -2061, -2177, -6687, -2410, -2501 - ], - [0, -2501, -3862, -6688, -3966], - [1, 3, 2139], - [0, 0, 0, 2140, 5], - [0, -5514, -685, -3974], - [1, 3, 2142], - [0, 186, 14, 2143, 8], - [0, -685, -3551, -4792, -6024, -3324, -6690, -6691, -6692, -3346, -6693, -6694, -6695, -1072], - [1, 3, 2145], - [0, 2146, 0, 2147, 5], - [0, -1107, -1000], - [0, -687, -4376, -6696, -6697, -6698, -4377, -4000, -6699, -6700, -6701, -3957, -6702], - [1, 3, 2149], - [0, 0, 2150, 2151, 8], - [0, -519, -2410, -2541], - [0, -687, -6335, -6336, -3974, -4110, -4000, -4111, -4112, -6337, -5554, -4055], - [1, 3, 2153], - [0, 2154, 2155, 2156, 4], - [0, -6703, -922, -6704, -5969, -6705], - [0, -932, -6706, -6707, -6708, -1344, -1534, -1788, -6709, -6710], - [0, -5514, -712, -4000, -3974, -687, -5550, -1573, -5545, -2547], - [1, 3, 2158], - [0, 2159, 2160, 2161, 11], - [0, -2120], - [0, -3037, -519, -2410, -2541], - [0, -687, -5564, -5514, -6711, -6712, -6713, -6714, -4110, -3974, -4000, -3975, -5550, -3958], - [1, 3, 2163], - [0, 0, 0, 2164, 9], - [0, -687], - [1, 3, 2166], - [0, 0, 2167, 2168, 4], - [0, -519, -1575, -6715, -2410, -2541], - [0, -687, -6716, -6717, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, -4116, -4117, -4055], - [1, 3, 2170], - [0, 187, 2171, 2172, 10], - [0, -2198, -6718], - [0, -687, -714, -4002], - [1, 3, 2174], - [0, 2175, 2176, 188, 5], - [0, -1548, -2267, -714], - [0, -6719, -664, -693, -756, -6720, -6721, -1168, -1220, -1231, -1266, -2210, -2211], - [1, 3, 2178], - [0, 117, 2179, 188, 10], - [0, -693, -932, -940, -967, -1415, -6725, -6726, -1942], - [1, 3, 2181], - [0, 2182, 14, 2183, 10], - [0, -2219, -2267], - [0, -6727, -6728, -5554, -6729, -4783, -687, -3974, -4110, -5550, -6730, -5514, -2265], - [1, 3, 2185], - [0, 2186, 2187, 76, 4], - [ - 0, -668, -2387, -1401, -1548, -2177, -1442, -6731, -1077, -2269, -303, -482, -4366, -6732, -480, -5676, -2267, - -6733, -6734, -1366, -6735, -2297, -6736, -6737, -6738, -2591 - ], - [ - 0, -664, -523, -1654, -932, -2379, -4361, -2410, -3035, -3037, -3621, -3044, -3199, -3660, -3048, -665, -6739, - -6740, -4369, -938, -6741, -4373, -4269, -939 - ], - [1, 3, 2189], - [0, 2190, 2191, 2192, 5], - [0, -3922], - [ - 0, -351, -3267, -3136, -3044, -3037, -6742, -427, -428, -6743, -6744, -932, -6745, -969, -1100, -1415, -1548, - -2127, -6746, -2375, -2379, -2410 - ], - [0, -687, -2410, -3215, -6747, -6748, -4377, -5829, -3957], - [1, 3, 2194], - [0, 2195, 2196, 2197, 5], - [0, -6749, -6750, -6751], - [ - 0, -23, -40, -534, -664, -767, -932, -934, -940, -958, -967, -1344, -1471, -1474, -1475, -1482, -1489, -1492, - -1534, -1654, -1942, -2210, -2384, -2417, -2501, -2503 - ], - [0, -699, -6351, -6752], - [1, 3, 2199], - [0, 2200, 55, 2201, 4], - [0, -6753, -999, -6754, -1401, -6755, -6756], - [0, -699, -6351, -6757, -6758, -6759, -2059, -6234, -6760, -6761, -6762, -6763], - [1, 3, 2203], - [0, 2204, 2205, 157, 4], - [0, -2267, -2269, -2528], - [0, -3037, -427, -428, -652, -664, -668, -767, -932, -958, -965, -1166, -1654, -2125, -6313, -2410], - [1, 3, 2207], - [0, 0, 83, 7, 6], - [1, 3, 2209], - [0, 0, 2210, 2211, 10], - [0, -985, -2447, -2334], - [0, -3205, -6683, -682], - [1, 3, 2213], - [0, 2214, 0, 2215, 5], - [0, -689], - [0, -6764, -4340, -6297, -6765, -6716, -4700, -6722, -4000, -640], - [1, 3, 2217], - [0, 0, 2218, 2219, 6], - [0, -633, -6766, -1654, -1693], - [0, -510, -5411, -3262, -6767, -6768], - [1, 3, 2221], - [0, 2222, 2223, 2224, 4], - [0, -1494], - [0, -2198, -1654, -705], - [0, -3974, -4000, -1965, -3959, -5110, -6769, -705], - [1, 3, 2226], - [0, 182, 2227, 2228, 5], - [0, -1510, -1607], - [0, -4004, -1001, -5855], - [1, 3, 2230], - [0, 2231, 2232, 2233, 11], - [0, -4378, -6770, -1442, -6771, -6772], - [0, -932, -940, -1344, -1415, -1534, -1658, -1942], - [0, -4005, -6773, -6774, -708], - [1, 3, 2235], - [0, 2236, 2237, 2238, 6], - [0, -6775, -6776, -6777, -6778, -6779, -6780, -6781], - [0, -6782], - [0, -3496, -707], - [1, 3, 2240], - [0, 0, 2241, 189, 10], - [0, -849, -6783, -1304, -1600, -2424], - [1, 3, 2243], - [0, 0, 2244, 189, 4], - [0, -23, -40, -4691, -709, -849, -1304, -6785, -1600, -1978, -2424, -2501], - [1, 3, 2246], - [0, 2247, 2248, 2249, 4], - [0, -3523, -2741], - [0, -1654, -2384, -2541], - [0, -712, -5535, -775], - [1, 3, 2251], - [0, 0, 0, 2252, 5], - [0, -3974, -3770, -712, -5514], - [1, 3, 2254], - [0, 0, 2255, 2256, 5], - [0, -932, -936], - [0, -5514, -3974, -714], - [1, 3, 2258], - [0, 2259, 2260, 2261, 11], - [0, -2269, -6786], - [0, -526, -559, -668, -2320, -2322], - [0, -6787, -5554, -5514, -4000, -3974, -4001, -4002], - [1, 3, 2263], - [0, 0, 2264, 2265, 6], - [0, -1003, -1452, -1654], - [0, -687, -3957, -6788], - [1, 3, 2267], - [0, 2268, 190, 2269, 11], - [0, -6789, -6790, -1551, -6791], - [0, -4378, -1838, -6748, -4377, -5829, -6792, -3215, -6747, -687, -3957, -6722], - [1, 3, 2271], - [0, 2272, 2273, 2274, 4], - [0, -6789, -6793, -6794, -6791], - [0, -350, -351, -1448, -2127, -2337], - [0, -3974, -4376, -6795, -3262], - [1, 3, 2276], - [0, 0, 2277, 2278, 4], - [0, -2384, -1415, -932, -1110, -2375, -1942, -190, -2410, -3136, -3037, -2411, -959, -940], - [0, -719, -3957, -5829, -3215, -687, -6748, -4377, -4378], - [1, 3, 2280], - [0, 2281, 2282, 2283, 5], - [0, -1107, -815, -1548, -6796, -6797, -1077, -1376, -1646, -3767, -2270, -831, -6798, -2271, -796], - [ - 0, -1788, -664, -2446, -1654, -2210, -1104, -2177, -708, -1753, -21, -1365, -1972, -23, -43, -2174, -40, -1656, - -539, -6799, -6800, -6801, -36, -741 - ], - [0, -5890, -3240, -3276, -6802, -720], - [1, 3, 2285], - [0, 2286, 2287, 146, 4], - [0, -86, -3534], - [0, -3536, -3537, -3535], - [1, 3, 2289], - [0, 0, 2290, 2291, 6], - [ - 0, -526, -528, -535, -546, -6017, -558, -566, -708, -767, -855, -932, -940, -967, -1415, -1639, -1942, -2125, - -2127, -2128, -2137, -2143, -2517 - ], - [ - 0, -5839, -525, -4795, -6803, -3184, -6804, -6805, -3264, -6806, -6807, -6722, -6808, -6809, -6810, -6811, - -6812, -6813, -6814, -6815, -2265, -6816, -6817, -6818, -6819, -3110 - ], - [1, 3, 2293], - [0, 0, 55, 2294, 6], - [0, -5389, -6820, -997, -6821, -6822, -5078, -6823], - [1, 3, 2296], - [0, 2297, 191, 2298, 5], - [0, -651, -6824, -812, -5397, -6825, -2155, -2453], - [0, -724, -6826, -6827, -5401, -1004, -6828, -1334, -5827], - [1, 3, 2300], - [0, 2301, 31, 7, 4], - [0, -6829, -1370, -2062, -5972], - [1, 3, 2303], - [0, 2304, 2305, 2306, 4], - [0, -2153, -668, -2550, -2369, -2194, -2297], - [ - 0, -1344, -932, -2469, -928, -1110, -1942, -190, -2410, -3037, -1534, -3610, -3041, -6830, -6831, -2411, -6832, - -3664, -2156, -4373, -6593, -6833, -940, -967, -6834, -6835, -4814 - ], - [0, -6836, -5920, -5921, -726, -3957, -6837], - [1, 3, 2308], - [0, 2309, 2310, 2311, 4], - [0, -1460], - [0, -3037, -652, -711, -6838, -6839, -6840, -3589, -2105, -2177, -2362, -2379, -2410, -2424, -6841, -2548], - [0, -6842, -727, -3870, -6843, -6844, -6845, -5558], - [1, 3, 2313], - [0, 2314, 55, 2315, 4], - [0, -6846, -3780, -1119, -6847, -6848], - [0, -727, -4634, -6005, -3870, -6849, -6850, -4055, -6582, -6851, -6852, -6853], - [1, 3, 2317], - [0, 2318, 2319, 2320, 4], - [0, -812, -1045, -1840, -2445], - [0, -932, -1654, -1788, -2293], - [0, -3161, -3578, -5401, -729, -6854], - [1, 3, 2322], - [0, 0, 84, 2323, 11], - [0, -729, -1004, -6855, -3556], - [1, 3, 2325], - [0, 0, 2326, 7, 4], - [0, -932, -1415, -2210], - [1, 3, 2328], - [0, 2329, 2330, 2331, 4], - [0, -812, -6856], - [ - 0, -5028, -86, -3307, -3244, -190, -3198, -3617, -3733, -3037, -4203, -427, -428, -519, -652, -708, -932, -940, - -954, -967, -1004, -1010, -1103, -1344, -1534, -1671, -1771, -1806, -1942, -2251, -2293, -2892, -2402, -2410 - ], - [0, -729, -6857, -1671, -6858, -1004], - [1, 3, 2333], - [0, 0, 2334, 2335, 5], - [0, -2581, -3733, -3037, -3664, -1010, -2379, -2410, -2466, -6859, -2469], - [0, -729, -2071, -6858, -1004], - [1, 3, 2337], - [0, 0, 2338, 2339, 8], - [0, -6447, -3037, -3664, -672, -6860, -932, -944, -6861, -1942, -6862, -6570, -2267, -2410, -2423, -2469], - [0, -4000, -3444, -6863, -6864, -687, -6198, -2427, -1965, -6865, -3276, -6324, -6866], - [1, 3, 2341], - [0, 0, 2342, 2343, 5], - [ - 0, -2541, -519, -864, -6867, -6868, -888, -6869, -1974, -6870, -6871, -6872, -6873, -6874, -6875, -2310, -6876, - -6877, -1344, -6878, -2006, -6879, -932, -6880, -6881, -6882, -1548, -6883, -2177, -6884, -6885, -6886, -1053, - -6887, -6888, -1310, -1689, -1783, -6889, -2019, -1276, -2094, -6890, -2424, -6891, -23, -6892, -1534, -6893, - -6894, -710, -6895, -6896, -6897, -6898, -41, -2099, -946 - ], - [0, -6899, -3110, -6107], - [1, 3, 2345], - [0, 0, 2346, 2347, 6], - [0, -652, -932, -943, -958, -963, -966, -968, -974], - [0, -736, -1334, -6900, -4616], - [1, 3, 2349], - [0, 0, 2350, 2351, 5], - [0, -1788, -1654, -932, -821, -966, -958, -968, -943, -974], - [0, -737, -1334, -4610, -4616, -6901], - [1, 3, 2353], - [0, 2354, 0, 2355, 4], - [0, -6902, -6903, -1630, -6904, -6905, -5983, -6906, -6907], - [0, -739, -6908, -5887, -1573, -687], - [1, 3, 2357], - [0, 2358, 0, 2359, 9], - [0, -1630, -6909, -6910, -739], - [0, -687, -5732, -739, -6908, -5887, -1573], - [1, 3, 2361], - [0, 2362, 0, 2363, 11], - [0, -6911], - [0, -739, -6912, -6913], - [1, 3, 2365], - [0, 0, 2366, 2367, 4], - [0, -6914, -2319], - [0, -5845, -6915, -6916, -6917, -4865, -812], - [1, 3, 2369], - [0, 0, 2370, 2371, 5], - [0, -6918, -3664, -6919, -2410, -2469], - [0, -743, -6920], - [1, 3, 2373], - [0, 2374, 81, 2375, 4], - [0, -743, -746], - [0, -743, -5401], - [1, 3, 2377], - [0, 2378, 2379, 2380, 10], - [0, -6920, -812, -6825, -2155], - [0, -729, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293], - [0, -729, -1004, -5401, -6858], - [1, 3, 2382], - [0, 0, 0, 2383, 4], - [0, -743, -6921, -6922], - [1, 3, 2385], - [0, 2386, 2387, 2388, 4], - [0, -6923], - [0, -633, -1646, -1719, -6924, -1813, -6925, -2416], - [0, -699, -6351, -4865], - [1, 3, 2390], - [0, 2391, 2392, 2393, 4], - [0, -2654, -1108, -2168, -1759, -2182], - [ - 0, -824, -1415, -1344, -1623, -774, -932, -825, -1110, -6926, -2501, -1942, -767, -21, -190, -533, -2410, -23, - -3037, -1041, -1534, -1771, -86, -965, -3560, -2251, -40, -2411, -6927, -959, -960, -32, -958, -6928, -6929, - -978, -940, -967, -3748, -6930, -3307 - ], - [0, -2501, -3862, -6931, -6932, -6351], - [1, 3, 2395], - [0, 2396, 2397, 7, 4], - [0, -1107, -1645, -1650, -6933, -2347, -2430, -2550], - [0, -2125, -2322, -2320], - [1, 3, 2399], - [0, 0, 27, 2400, 4], - [0, -6934, -6935, -3262, -6936, -6937, -6938], - [1, 3, 2402], - [0, 2403, 2404, 2405, 4], - [0, -1559, -750, -6939], - [0, -3040, -3052, -2410, -2006, -2019], - [0, -2006, -2410, -6935, -6940, -6941], - [1, 3, 2407], - [0, 2408, 2409, 2410, 4], - [0, -728, -6942, -6943, -6944, -3496, -999, -1758, -2177, -2313], - [0, -6945, -652, -1412, -2123], - [0, -752, -3323, -687], - [1, 3, 2412], - [0, 0, 0, 2413, 5], - [ - 0, -6946, -6947, -6948, -6949, -6950, -6951, -6952, -6953, -6954, -6955, -6956, -6957, -6958, -6959, -6960, - -6961, -6962, -6963, -6964, -6965, -6966, -6967, -6968, -6969, -6970, -6971, -6972, -6973, -6974, -6975, -6976, - -6977, -6978, -6979, -6980, -6981, -6982, -6983, -6984, -6985, -6986, -6987, -6988, -3582, -6989, -5396 - ], - [1, 3, 2415], - [0, 2416, 2417, 2418, 4], - [0, -1792, -2453], - [0, -465, -932, -1004, -1654, -1788, -2293], - [0, -754, -1004, -729, -5401], - [1, 3, 2420], - [0, 2421, 2422, 2423, 6], - [0, -5672, -1362, -1442, -6990], - [ - 0, -3660, -3037, -6991, -427, -428, -3899, -767, -932, -6992, -940, -948, -958, -966, -979, -1344, -1534, -6689, - -1942, -6993, -2410, -2469 - ], - [0, -6994, -3870, -727], - [1, 3, 2425], - [0, 2426, 2427, 2428, 4], - [0, -1442, -6995, -6996, -1646, -2105], - [0, -1654, -1788, -2198, -2200, -2210, -2541], - [0, -4005, -756], - [1, 3, 2430], - [0, 2431, 2432, 2433, 4], - [0, -6997, -1111, -1630], - [0, -519, -999, -1849, -6909, -2541], - [ - 0, -5732, -687, -6351, -6998, -6997, -6656, -6999, -702, -1076, -5827, -1107, -7000, -1705, -5922, -7001, -6582, - -5398, -7002 - ], - [1, 3, 2435], - [0, 2436, 2437, 2438, 4], - [0, -1116, -7003, -674, -7004, -7005, -1351, -7006], - [0, -652, -519, -2392, -1722, -2210, -932, -1110, -190, -7007, -2410, -3037, -2364, -2411], - [0, -3214, -758, -7008, -6596, -6531, -1437, -3967, -1334, -1342, -5735, -1116, -2105, -2435, -5150, -6826], - [1, 3, 2440], - [0, 0, 0, 2441, 11], - [0, -759, -7009, -7010, -7011, -7012, -7013, -7014, -7015, -7016, -7017, -7018, -7019, -7020], - [1, 3, 2443], - [0, 2444, 2445, 2446, 5], - [0, -7021, -1370, -6001, -7022, -7023], - [0, -5935, -2155, -2250, -2320, -2322], - [0, -770], - [1, 3, 2448], - [0, 2449, 2450, 41, 5], - [0, -1580, -1792], - [0, -1415, -1967, -2006, -2019, -2501], - [1, 3, 2452], - [0, 2453, 2454, 2455, 10], - [ - 0, -28, -7024, -683, -722, -7025, -7026, -812, -1047, -1099, -1111, -1116, -7027, -1366, -7028, -1393, -1435, - -1548, -1549, -1591, -1630, -7029, -5668, -7030, -1863, -1876, -1889, -7031, -7032, -7033, -2103, -2218, -2331, - -2347, -2460 - ], - [0, -510, -767, -1045, -1098, -1415, -1722, -7034, -2187, -7035, -2261, -2463, -2541], - [0, -762, -1847, -775, -7036], - [1, 3, 2457], - [0, 2458, 2459, 2460, 8], - [0, -3620, -3222], - [ - 0, -86, -190, -7037, -7038, -7039, -3470, -7040, -3471, -3472, -7041, -7042, -367, -7043, -3136, -3037, -4372, - -767, -932, -940, -959, -967, -1344, -1415, -1534, -1942, -2174, -2210, -2410, -2411 - ], - [0, -763, -7044, -7045, -7046, -2166, -7047, -7048], - [1, 3, 2462], - [0, 0, 0, 2463, 4], - [0, -763, -3577, -3445, -3215, -764, -7046, -2166, -7049, -4107, -5418, -6201, -7050], - [1, 3, 2465], - [0, 0, 2466, 2467, 4], - [ - 0, -5285, -5291, -7051, -7052, -7053, -7054, -7055, -7056, -7057, -3037, -932, -7058, -954, -958, -960, -964, - -965, -7059, -968, -971, -978, -1110, -7060, -1608, -7061, -1768, -1942, -2910, -7062, -2402, -2410, -7063 - ], - [0, -763, -7050, -2166, -765, -3577, -3445], - [1, 3, 2469], - [0, 2470, 0, 2471, 4], - [0, -7064, -7065], - [ - 0, -6527, -7066, -6932, -7067, -7068, -7069, -7070, -7071, -7072, -7073, -7074, -7075, -7076, -7077, -3264, - -775, -3214, -3577, -3578 - ], - [1, 3, 2473], - [0, 2474, 2475, 2476, 5], - [0, -7078, -769], - [0, -7079, -7080, -3037, -3664, -3665, -932, -1942, -2410, -2469, -7081], - [0, -7082, -7083, -7084, -7085], - [1, 3, 2478], - [0, 2479, 2480, 2481, 5], - [0, -1729], - [ - 0, -1788, -664, -1722, -1344, -1654, -2550, -2125, -2127, -2177, -708, -1004, -2501, -2250, -720, -2410, -3035, - -3037, -617, -1534, -2186, -2503, -3621, -2516, -86, -2251, -4063, -1655, -6483, -796, -7086, -3307 - ], - [0, -4213, -1334, -2435, -1961, -510, -5867, -6201, -6198, -3966, -2006, -5269, -4865, -6989, -5388, -2533, -5998], - [1, 3, 2483], - [0, 2484, 2485, 2486, 6], - [0, -2518, -7087, -7088], - [0, -1415, -1344, -932, -1650, -2125, -527, -533, -1534, -86, -2251, -7089, -7090, -3307], - [0, -7091, -7092, -7084, -7085, -7093, -7094, -7095, -7096], - [1, 3, 2488], - [0, 2489, 2490, 7, 5], - [0, -7097, -7098, -7099, -760, -7100, -7101, -7102, -1370, -7103, -7104, -1995, -7105], - [0, -5834, -932, -5935, -1788, -1798, -7106, -2155, -2177, -2322], - [1, 3, 2492], - [0, 0, 0, 2493, 5], - [ - 0, -7107, -770, -7108, -7109, -7110, -7111, -7112, -7113, -7114, -7115, -7116, -7117, -7118, -7119, -7120, - -7121, -7122, -7123, -7124, -7125 - ], - [1, 3, 2495], - [0, 192, 2496, 2497, 4], - [0, -652, -932, -7126, -958, -964, -966, -967, -1654, -7127, -1771, -1942], - [0, -6838, -3215], - [1, 3, 2499], - [0, 2500, 2501, 2502, 4], - [ - 0, -7128, -7129, -7130, -7131, -7132, -7133, -7134, -481, -668, -6793, -719, -7135, -7136, -7137, -7138, -7139, - -7140, -7141, -7142, -2177, -2654 - ], - [0, -4036, -3199, -1639, -1645], - [0, -7143, -7144, -707, -6513, -6514, -7145, -7146, -7147, -7148], - [1, 3, 2504], - [0, 2505, 2506, 2507, 4], - [0, -1370, -2231, -7149], - [0, -1654, -2198, -1612, -651], - [0, -775, -3215, -3270, -3271], - [1, 3, 2509], - [0, 0, 2510, 2511, 9], - [0, -190, -7150, -7151, -932, -1889, -2127, -2447], - [0, -1889, -3583, -775, -4159, -7152, -7153, -7154], - [1, 3, 2513], - [0, 0, 2514, 2515, 5], - [ - 0, -7155, -4647, -3621, -3037, -4201, -7156, -932, -7157, -940, -967, -7158, -1344, -7159, -1449, -1534, -1654, - -1763, -1942, -2923, -7160, -2410, -7161, -7162 - ], - [0, -775, -7163, -4108], - [1, 3, 2517], - [0, 2518, 2519, 2520, 4], - [0, -2773, -1889, -7164, -1915, -7165, -2791, -1934, -2177], - [ - 0, -21, -23, -40, -86, -3307, -7166, -533, -767, -774, -825, -920, -932, -940, -958, -1041, -1344, -1415, -1419, - -1521, -1522, -1534, -1623, -1643, -1771, -1908, -1927, -1942, -2162, -2163, -2251, -2269, -2275, -2286, -2287, - -2437, -2501 - ], - [0, -2501, -775, -5932, -2435, -6024], - [1, 3, 2522], - [0, 2523, 2524, 2525, 5], - [0, -784, -1889, -1429, -2168, -2182, -3180], - [ - 0, -824, -2746, -1415, -2162, -1344, -1623, -774, -932, -825, -928, -1110, -2289, -2501, -7167, -1942, -683, - -767, -21, -190, -533, -778, -2410, -23, -7168, -7169, -3037, -1534, -1771, -2163, -3751, -86, -965, -3560, - -7170, -2251, -40, -959, -748, -960, -958, -7171, -6929, -978, -940, -967, -1643, -3748, -6930, -3307 - ], - [0, -784, -775, -2746, -683, -5055, -928, -2501, -7172, -7173, -7174, -1644, -6684, -7175, -7176], - [1, 3, 2527], - [0, 2528, 2529, 2530, 4], - [0, -7177, -2888, -6584, -2788, -6585], - [0, -2386, -2469, -2410, -3037, -1333, -2581, -7178, -7179, -3664], - [0, -775, -3585, -7180], - [1, 3, 2532], - [0, 2533, 2534, 2535, 4], - [0, -1620, -2232], - [0, -652, -7181, -928, -932, -7182, -1654, -2127], - [0, -775, -3272, -3579, -3215, -7183, -7184, -3262, -5260, -4132, -3926], - [1, 3, 2537], - [0, 0, 2538, 2539, 4], - [0, -7150, -635, -1107, -1889, -1891, -1927, -2177, -2281, -2282, -7185], - [0, -775, -7186, -4682, -7187], - [1, 3, 2541], - [0, 0, 2542, 2543, 4], - [0, -526, -558, -708, -1127, -6114, -1405, -1654, -2081, -2111], - [0, -775, -5559, -7188, -2265, -3673], - [1, 3, 2545], - [0, 2546, 2547, 2548, 4], - [0, -1532, -7189], - [0, -518, -1889, -7190, -7191], - [0, -775, -6454, -1644, -7192, -7193, -1889, -3583], - [1, 3, 2550], - [0, 2551, 2552, 2553, 11], - [0, -7194, -7195, -781, -1582], - [0, -7196, -7197, -932, -940, -967, -1110, -1942], - [0, -7198, -7199, -7200], - [1, 3, 2555], - [0, 0, 2556, 2557, 4], - [ - 0, -23, -40, -42, -190, -7150, -7201, -7202, -5685, -3136, -4647, -3037, -6630, -7203, -533, -668, -679, -781, - -940, -967, -1059, -1415, -1449, -1620, -1942, -2091, -2392, -2393, -2410, -2411 - ], - [0, -775, -5553, -2410, -5411, -2414, -3694, -3762], - [1, 3, 2559], - [0, 2560, 2561, 2562, 5], - [0, -7204, -743, -1335, -746], - [0, -1788, -1654, -932, -729, -2293, -617, -744, -745, -966, -958, -968, -943, -963, -974], - [0, -7204, -7205, -5401, -1004], - [1, 3, 2564], - [0, 2565, 2566, 2567, 4], - [0, -789, -790, -791, -2262], - [0, -351, -3621, -3037, -885, -1654, -1942, -2127, -2135, -2136, -2198, -2379, -2410], - [0, -3966, -788, -7206, -3215, -1838, -3270, -6231, -6408, -5827, -3960, -7207, -3445, -3100], - [1, 3, 2569], - [0, 0, 2570, 2571, 5], - [0, -351, -3621, -3037, -815, -885, -1654, -1942, -2127, -2135, -2136, -2198, -2379, -2410], - [0, -5827, -3960, -788, -7208, -3445, -3100], - [1, 3, 2573], - [0, 0, 2574, 2575, 5], - [ - 0, -351, -3621, -3037, -789, -7209, -815, -885, -1654, -7210, -1942, -2127, -2135, -2136, -2198, -2262, -2379, - -2410 - ], - [0, -788, -1838, -3215, -5845, -7206, -5827, -3445, -3100], - [1, 3, 2577], - [0, 0, 2578, 2579, 9], - [0, -351, -3621, -3037, -789, -815, -885, -1004, -1654, -1942, -2127, -2135, -2136, -2198, -2379, -2410], - [0, -788, -6231, -3270, -3445, -3100], - [1, 3, 2581], - [0, 34, 2582, 2583, 4], - [0, -7211, -3621, -3037, -543, -756, -1646, -1654, -1788, -2210, -2375, -2379, -2410, -2417, -2501, -2503], - [0, -788, -7212, -7213, -792, -4055, -7214, -7215, -7216, -7217, -7218], - [1, 3, 2585], - [0, 2586, 2587, 149, 8], - [ - 0, -1693, -1107, -714, -1548, -2456, -1040, -3635, -2114, -615, -7219, -1959, -719, -1399, -695, -5203, -3611, - -7220, -3610, -7221, -1366, -7222, -7223, -7224, -930, -3608, -7225, -3604 - ], - [ - 0, -1788, -2359, -664, -1654, -2210, -932, -729, -753, -571, -1077, -1689, -1942, -7226, -756, -21, -633, -2211, - -23, -528, -711, -2187, -43, -3630, -3633, -40, -966, -951, -2082, -958, -539, -968, -940, -943, -967, -974, - -6034 - ], - [1, 3, 2589], - [0, 0, 2590, 2591, 4], - [0, -556, -558, -566, -633, -932, -7227, -1339, -1650, -7228, -2322, -2339, -2416, -7229, -2491], - [0, -7230, -7231, -7232, -7233, -2446], - [1, 3, 2593], - [0, 2594, 0, 2595, 4], - [ - 0, -2359, -5413, -668, -809, -812, -999, -7234, -2555, -640, -1536, -1548, -7235, -680, -1040, -1958, -615, - -6797, -910, -1077, -1646, -7236, -719, -2369, -2430, -3628, -690, -695, -7237, -722, -1018, -1574, -1948, - -7238, -7239, -995, -5987, -2297, -7240, -7241, -2313, -1394, -3626 - ], - [0, -4864, -4865, -795, -7242, -4866, -4867, -4868, -3095, -7243, -4043, -7244, -7245, -4004, -3634], - [1, 3, 2597], - [0, 2598, 2599, 7, 5], - [0, -668, -7246, -2524, -720, -1564, -3532, -7247], - [0, -664, -1654, -2177, -1942, -3035, -755, -3621, -1660, -2174], - [1, 3, 2601], - [0, 2602, 2603, 2604, 5], - [ - 0, -7248, -7249, -7250, -7251, -7252, -7253, -7254, -7255, -798, -7256, -7257, -6258, -7258, -7259, -799, -801, - -7260, -7261, -7262, -7263, -7264, -7265, -7266, -7267, -7268, -800, -7269, -7270, -7271, -7272 - ], - [0, -1654, -932, -2127, -2468, -7273, -2967, -4062, -7274, -3266, -351], - [0, -797, -5092, -7275, -3839, -5176, -659], - [1, 3, 2606], - [0, 2607, 2608, 2609, 8], - [0, -7276], - [0, -351, -7248, -7262, -932, -1449, -1654, -2127, -2140], - [0, -797, -7277, -7278, -7279, -7280, -7281, -7282, -7283, -5839], - [1, 3, 2611], - [0, 2612, 2613, 2614, 10], - [0, -798, -7261, -7270, -7254, -7271], - [0, -6258, -932, -1654, -2127, -2140], - [0, -797, -7277, -7069, -7275], - [1, 3, 2616], - [0, 0, 2617, 2618, 5], - [0, -932, -1449, -1654, -2127, -2140], - [0, -797, -7277, -5092, -7284, -7285], - [1, 3, 2620], - [0, 2621, 2622, 2623, 6], - [0, -7253], - [0, -7264, -932, -1654, -2127, -2140], - [0, -797, -7277, -6524, -7275, -659, -3839], - [1, 3, 2625], - [0, 2626, 0, 2627, 5], - [0, -1049], - [0, -3577, -7286, -5176, -3913], - [1, 3, 2629], - [0, 0, 0, 2630, 4], - [ - 0, -803, -2316, -2318, -7287, -7288, -7289, -7290, -7291, -7292, -7293, -7294, -7295, -7296, -7297, -7298, - -2006, -775, -3160, -2476, -3095, -3161, -1713, -3577, -7299, -4101, -7300, -2299, -2834, -5511, -7301 - ], - [1, 3, 2632], - [0, 0, 14, 2633, 9], - [ - 0, -7302, -1646, -6792, -7303, -4377, -5272, -687, -1758, -719, -7304, -3957, -5543, -7305, -7306, -7307, -7308, - -1838, -3215, -4378 - ], - [1, 3, 2635], - [0, 2636, 2637, 7, 4], - [ - 0, -7309, -469, -510, -668, -715, -754, -763, -1004, -1376, -7310, -1625, -1666, -1953, -2105, -7311, -7312, - -7313, -2549, -2550 - ], - [0, -526, -556, -559, -664, -1654, -2106, -5331], - [1, 3, 2639], - [0, 0, 2640, 7, 10], - [ - 0, -7314, -2392, -7315, -3915, -2210, -932, -7316, -1548, -2469, -2402, -1050, -1942, -756, -21, -7057, -1874, - -2205, -2214, -2410, -23, -3037, -7317, -7318, -4372, -7319, -3704, -3044, -7320, -5286, -4773, -40, -7321, - -3664, -2832, -42, -428, -7322, -427, -7323 - ], - [1, 3, 2642], - [0, 0, 2643, 7, 5], - [0, -1654, -2416, -21, -23, -40], - [1, 3, 2645], - [0, 0, 2646, 2647, 5], - [ - 0, -21, -23, -5870, -40, -3472, -527, -533, -537, -767, -932, -934, -958, -959, -7324, -1413, -1415, -1471, - -1481, -1488, -1662, -1666, -1667, -1705, -1939, -1942, -2127, -2128, -2140, -2214, -2410 - ], - [0, -809, -4121, -4123, -1361, -1666], - [1, 3, 2649], - [0, 2650, 2651, 2652, 4], - [0, -596, -1723], - [0, -7325], - [0, -510, -6367, -7326, -7327], - [1, 3, 2654], - [0, 0, 118, 2655, 5], - [0, -811, -7328, -5924, -7329, -7330, -6729, -7331, -7332, -7333, -7334, -7335], - [1, 3, 2657], - [0, 2658, 2659, 2660, 4], - [0, -1681], - [0, -627, -633, -756, -1471, -1472, -1475, -1482, -1654, -1657, -2210, -2541], - [0, -812, -1573, -7336], - [1, 3, 2662], - [0, 0, 14, 2663, 4], - [0, -813, -7337, -656, -7338, -6514, -6515, -6516, -2265, -5554, -5845], - [1, 3, 2665], - [0, 2666, 2667, 2668, 10], - [0, -7339, -7340, -7341, -7342, -1119, -1591, -1866, -7343], - [0, -985, -7344, -1849, -1866, -2125], - [0, -7345, -7346, -814, -7347, -2323, -7348, -7349, -5408, -2432], - [1, 3, 2670], - [0, 0, 2671, 2672, 8], - [ - 0, -21, -40, -42, -4646, -7350, -7057, -3330, -3136, -427, -428, -535, -6046, -7351, -774, -932, -7352, -954, - -959, -960, -961, -963, -965, -7353, -7354, -971, -7355, -1344, -1415, -7356, -1498, -1534, -1608, -1609, -1768, - -7357, -1942, -7358, -1945, -2091, -7359, -2391, -2410, -7360 - ], - [0, -815, -6818, -7361, -3184], - [1, 3, 2674], - [0, 0, 2675, 2676, 5], - [0, -3136, -1637, -2375], - [0, -7362, -7363, -5839, -7364, -7365, -7366, -7367], - [1, 3, 2678], - [0, 2679, 0, 2680, 8], - [0, -7368], - [0, -7208, -7369, -7370, -1015, -3589, -1631, -702, -6351, -3755, -6545, -7371, -7372, -7373, -7374, -7375, -3589], - [0, 68, 15, 16, 4], - [1, 3, 2683], - [0, 0, 2684, 2685, 5], - [0, -4055, -1654, -932, -1548, -2125, -1753, -615, -7376, -1003, -2416, -821, -964, -1656], - [0, -834, -7377, -7378, -7379], - [1, 3, 2687], - [0, 0, 2688, 2689, 5], - [0, -7380, -1654, -932, -1405, -589, -756, -7381, -1559, -3311, -7382, -7383, -7384, -350, -7385], - [0, -7386, -7387, -7388, -3634], - [1, 3, 2691], - [0, 2692, 2693, 2694, 10], - [ - 0, -7389, -655, -7390, -6503, -7391, -7392, -7393, -7394, -7395, -1402, -5849, -1795, -1797, -7396, -7397, - -7398, -7399, -7400 - ], - [0, -5834, -515, -516, -7401, -932, -1065, -7402, -1283, -7403, -1365, -1777, -1788, -3335, -2156, -2177, -2322], - [0, -7404, -6439, -7378], - [1, 3, 2696], - [0, 0, 70, 2697, 4], - [0, -822, -1015, -6545, -7371, -2546, -702, -1631, -4055], - [1, 3, 2699], - [0, 0, 2700, 2701, 9], - [0, -3037, -7405, -1396, -7406, -2127, -2131, -2137, -2322, -2379, -2410, -2416], - [0, -1631, -6545, -1015, -6351, -702, -7371], - [1, 3, 2703], - [0, 2704, 2705, 2706, 5], - [0, -1111, -1393, -7407, -7408, -1826, -7409, -2218], - [0, -519, -589, -2331, -2384, -2541], - [ - 0, -6693, -6999, -7410, -7411, -6694, -7412, -7413, -7414, -6688, -7415, -7416, -6695, -7417, -2125, -7418, - -1107, -7419, -6656, -7420, -7421, -1076, -7422 - ], - [1, 3, 2708], - [0, 2709, 2710, 2711, 10], - [0, -824, -1630, -7409], - [0, -519, -999, -7423, -2541], - [ - 0, -5732, -687, -6693, -824, -6694, -7412, -7413, -7414, -6688, -7415, -7416, -6695, -7417, -2125, -7418, -1107, - -6656, -6999, -7420, -7421, -1076, -7422, -7085 - ], - [1, 3, 2713], - [0, 2714, 2715, 2716, 6], - [0, -7424, -7425], - [0, -7426, -7427, -2384, -2541], - [ - 0, -1961, -2114, -826, -7428, -4116, -7429, -7430, -7431, -5389, -6302, -2634, -7432, -826, -510, -5867, -5923, - -615, -7433, -7434, -6555 - ], - [1, 3, 2718], - [0, 2719, 2720, 2721, 10], - [ - 0, -812, -1460, -2550, -1353, -1548, -2177, -1442, -2114, -7435, -6651, -656, -1645, -7436, -1686, -755, -1048, - -2115, -25, -7437, -46, -7438, -3230, -6033 - ], - [ - 0, -1788, -1654, -932, -2198, -2299, -1077, -1942, -767, -21, -1972, -2410, -23, -528, -7439, -39, -43, -40, - -964, -969, -933, -958, -539, -940, -962, -967, -535, -5585 - ], - [0, -7440, -7441, -5897, -7442, -827, -6137, -3015, -3016], - [1, 3, 2723], - [0, 0, 2724, 2725, 6], - [0, -589, -585, -932, -943, -958, -963, -966, -968, -974, -1405, -1654, -2155, -2418], - [0, -7443, -7444], - [1, 3, 2727], - [0, 2728, 2729, 7, 4], - [0, -812, -5892, -1111, -7445, -1639, -1646, -1872, -7446, -2114], - [0, -7447, -1344, -3781, -1771, -2250], - [1, 3, 2731], - [0, 0, 14, 2732, 10], - [0, -6806, -7448, -6659, -7449, -7450, -707, -2265, -5554, -6916, -7451, -7452], - [1, 3, 2734], - [0, 2735, 2736, 2737, 5], - [0, -6558], - [0, -7453, -3621, -3037, -7454, -932, -7455, -999, -7456, -2269, -2386, -7457, -2410], - [0, -6659, -7458], - [1, 3, 2739], - [0, 0, 2740, 2741, 6], - [ - 0, -1788, -2384, -664, -1471, -1654, -932, -2127, -1110, -2501, -767, -2416, -190, -2410, -23, -1482, -534, - -1492, -5758, -43, -40, -2411, -2505, -1483, -2832, -539, -1490 - ], - [0, -834, -7459, -7378, -7460, -5554, -4055, -775, -3214], - [1, 3, 2743], - [0, 2744, 2745, 2746, 8], - [0, -834, -7461], - [ - 0, -190, -7462, -7463, -3136, -3037, -7464, -7465, -518, -645, -699, -748, -778, -784, -932, -959, -968, -1041, - -1110, -1276, -7466, -1331, -1344, -7467, -7468, -1415, -1534, -1607, -1643, -1650, -1758, -1889, -1891, -1906, - -1908, -1927, -1942, -2375, -2376, -2379, -2410, -2411, -2437, -2501, -2503, -2505, -2516 - ], - [0, -5889, -834, -3240, -7469, -6722, -7470, -7471, -7472, -4131, -3240, -712, -3264, -835, -7473, -7474], - [1, 3, 2748], - [0, 119, 120, 2749, 4], - [ - 0, -7477, -7478, -7479, -7480, -7481, -7482, -7483, -3214, -7484, -7485, -3756, -2410, -7486, -4165, -3018, - -7487, -7488, -3966, -4336, -7489, -7490, -7491, -7492, -7493, -7494, -7495, -7496, -7497, -3552, -7498, -7499, - -7500, -1847, -7501, -7502, -7503, -7504, -7505, -7506, -7507, -7508, -7282, -7509, -7510, -7511, -7512, -7513, - -7514, -7515, -7516, -7517, -7518, -7519, -7520, -7521, -5150, -7522, -7523, -7524, -7525, -7526, -7527, -7528, - -7529, -7530, -7531, -7532, -7533, -6582, -7534, -7535, -7536, -7537, -7538, -7539, -7540, -7541, -7542, -7543, - -7544, -7545, -7546, -7547, -7548, -6948, -7549, -7550, -7551, -7552, -7553, -7554, -7555, -7556, -7557, -2444, - -7558, -7559, -5063, -7560, -7561, -7562, -6187, -7563, -856, -7275 - ], - [1, 3, 2751], - [0, 0, 2752, 2753, 6], - [0, -664, -665, -1127, -1144, -1149, -1156, -1452, -1453, -1542, -1654], - [0, -664, -6537, -4865, -3634], - [1, 3, 2755], - [0, 2756, 56, 57, 4], - [0, -7564, -7565, -840, -1406, -1744], - [1, 3, 2758], - [0, 2759, 2760, 2761, 6], - [0, -2387, -2426, -7567, -3675, -151, -3676, -1025, -7568, -3677, -7569, -3678, -3679, -7570], - [ - 0, -2384, -1415, -3682, -932, -2388, -879, -1942, -767, -2410, -3037, -7571, -3683, -3685, -3686, -3687, -428, - -427 - ], - [0, -3689, -3690, -7572, -3323, -3966, -3692], - [1, 3, 2763], - [0, 2764, 0, 7, 4], - [0, -2416, -1044, -1813], - [1, 3, 2766], - [0, 2767, 2768, 193, 8], - [0, -6789, -7573, -7574, -7575, -1276, -1610, -7576], - [0, -7577], - [1, 3, 2770], - [0, 2771, 0, 2772, 6], - [0, -1448], - [0, -843, -856, -1446, -7578, -1599, -3862], - [1, 3, 2774], - [0, 0, 0, 2775, 9], - [0, -7579, -7580, -7581, -7582, -3445, -6809], - [1, 3, 2777], - [0, 2778, 31, 2779, 10], - [0, -7583, -7584, -7585], - [0, -7586, -7587], - [1, 3, 2781], - [0, 2782, 2783, 2784, 8], - [0, -523, -2550, -848, -7588, -7589, -7590], - [0, -664, -1654, -1004, -617], - [0, -856, -5119, -4004, -4100, -3671], - [1, 3, 2786], - [0, 2787, 2788, 2789, 10], - [ - 0, -3417, -7590, -7591, -469, -5769, -7592, -7593, -7594, -523, -7588, -7589, -865, -7595, -7596, -7597, -1870, - -1880, -7598, -2369, -4881 - ], - [0, -827, -1004, -1654, -2177], - [0, -856, -4004, -4100, -3671], - [1, 3, 2791], - [0, 2792, 0, 2793, 9], - [0, -719, -1610, -1077, -2424, -1304], - [0, -856, -3671, -3262, -7599, -711], - [1, 3, 2795], - [0, 2796, 0, 193, 4], - [0, -885, -7600, -7601], - [1, 3, 2798], - [0, 2799, 2800, 2801, 10], - [0, -7602, -7603, -7604, -7605, -1969, -2324, -2446], - [0, -615, -664, -1627, -1654], - [0, -7606, -7607], - [1, 3, 2803], - [0, 2804, 2805, 2806, 4], - [ - 0, -7608, -7609, -7610, -573, -7611, -653, -7612, -6838, -7613, -7614, -7615, -5835, -7616, -7617, -7618, -7619, - -7620, -7621, -1376, -7622, -7623, -7624, -1640, -1729, -7625, -7626, -7627, -2125, -7628, -7629, -7630, -2177, - -7631, -7632, -7633, -2424, -7634, -2549 - ], - [0, -7635, -7636, -7637, -711, -7638, -1666, -7639, -7640], - [ - 0, -3260, -7641, -7642, -4258, -687, -7643, -711, -7644, -3116, -7645, -7646, -3113, -7647, -7648, -6433, -3161, - -3262, -7649, -3966, -1838, -3215, -7650, -4065, -3970, -5371, -3261, -7651, -3673, -3590, -3578, -7652, -4602 - ], - [1, 3, 2808], - [0, 0, 2809, 2810, 5], - [0, -3268, -3037, -3664, -6593, -589, -7653, -7654, -932, -958, -960, -2410, -2469], - [0, -3100, -3445, -4058, -3926, -1446], - [1, 3, 2812], - [0, 0, 2813, 2814, 6], - [ - 0, -23, -40, -190, -3326, -350, -4062, -351, -3266, -518, -632, -724, -920, -932, -940, -1110, -1609, -6451, - -1771, -1889, -1897, -1903, -1906, -1942, -2125, -2127, -4753, -2162 - ], - [0, -3671, -2757, -7655, -856, -3262, -3214, -3756, -1599, -3437, -3862, -7452, -7656], - [1, 3, 2816], - [0, 2817, 71, 2818, 8], - [0, -7657, -7658, -1333, -1646, -2424, -7659], - [0, -1105, -1599, -856, -4328, -3215, -7660, -7661, -7662], - [1, 3, 2820], - [0, 2821, 2822, 2823, 8], - [ - 0, -23, -3194, -25, -46, -47, -668, -679, -834, -7663, -4236, -3649, -1107, -2765, -1304, -1371, -1442, -7664, - -1548, -5347, -7665, -7666, -7667, -1866, -2061, -2093, -2095, -2096, -7668, -4656, -2114, -2271, -7669, -2429, - -5358, -7670, -7671, -2550 - ], - [0, -7672, -796, -7673, -932, -940, -1077, -1344, -1415, -1456, -1534, -1658, -1942, -2251, -2359], - [0, -856, -4144, -1446, -7674, -3215, -3258], - [1, 3, 2825], - [0, 2826, 2827, 2828, 5], - [0, -7675, -7676, -812, -7677, -7678, -7679, -7680, -2424], - [0, -3037, -1127, -1152, -1156, -1542, -1656, -6799, -2210, -2351], - [0, -7681, -7682, -857, -7683, -5800, -7684, -7685, -5801], - [1, 3, 2830], - [0, 2831, 2832, 2833, 4], - [ - 0, -3484, -1088, -1107, -668, -2006, -915, -1548, -1650, -572, -784, -1004, -1889, -1955, -2105, -2195, -3728, - -2353, -1077, -1356, -719, -2019, -682, -1888, -2102, -23, -7686, -47, -518, -1304, -1607, -7687, -4356, -7688, - -7689, -3649, -39, -43, -46, -2015, -7690, -40, -7691, -7692, -41, -930, -916, -26, -36 - ], - [0, -2125, -7693, -1075, -7694], - [0, -856, -7695, -7696, -858], - [1, 3, 2835], - [0, 2836, 27, 2837, 5], - [0, -7697, -703, -4700, -1288, -1293, -1310, -3544, -7698, -3788, -1645, -2087, -7699, -2427, -7700], - [0, -858, -3544, -7701, -856], - [1, 3, 2839], - [0, 2840, 2841, 2842, 6], - [0, -44, -786], - [ - 0, -7702, -7703, -21, -23, -42, -7704, -7705, -7706, -427, -428, -528, -534, -932, -958, -962, -964, -969, - -1003, -1107, -1437, -1471, -1475, -1479, -7707, -1482, -1483, -1489, -1490, -1492, -1654, -2125, -7708, -2210, - -2410, -2501 - ], - [0, -860, -3159, -5092, -3690, -7709, -5553, -5389, -7710, -6730, -860, -7711, -7712, -775], - [1, 3, 2844], - [0, 2845, 2846, 2847, 4], - [0, -3223, -6585, -7713], - [0, -1415, -932, -674, -2375, -1942, -2410, -3136, -3037, -1333, -940, -428, -427], - [0, -3264, -6597, -7650], - [1, 3, 2849], - [0, 0, 2850, 2851, 8], - [ - 0, -664, -932, -1127, -1132, -1144, -1148, -1149, -1155, -1442, -1471, -1474, -1475, -1479, -1482, -1483, -1654, - -1942, -2177 - ], - [0, -5092, -6527, -7714, -7650, -3264, -659, -3839, -7715], - [1, 3, 2853], - [0, 2854, 2855, 2856, 6], - [0, -7716], - [ - 0, -23, -40, -3326, -351, -3561, -3266, -426, -3037, -767, -940, -967, -1437, -1449, -1471, -1473, -1475, -1479, - -1485, -1486, -7717, -1646, -1771, -1939, -1942, -1989, -7718, -2125, -2127, -2132, -7719, -2142, -2387, -2410, - -2541 - ], - [0, -5092, -2544, -3264, -3839, -7720, -7107, -7721, -7722, -7723, -7724, -7725], - [1, 3, 2858], - [0, 0, 2859, 2860, 10], - [0, -1788, -932, -756, -1939, -5478], - [0, -3110, -5922, -5493, -7651], - [1, 3, 2862], - [0, 0, 2863, 2864, 4], - [0, -3037, -3542, -2210, -2250, -2251, -2319, -2410], - [0, -865, -6845, -7726, -5558, -3591, -727, -6849], - [1, 3, 2866], - [0, 194, 2867, 2868, 5], - [0, -3037, -2250, -2251, -2319, -2410], - [0, -865, -7727, -3591, -7728, -7729, -6845, -7726], - [1, 3, 2870], - [0, 2871, 2872, 2873, 4], - [0, -1116, -1866, -1825, -7730, -1591, -1043, -814, -7731, -1100, -7732, -736], - [0, -2541, -519, -1722, -7733, -2125, -1849, -7734], - [0, -867, -7347, -1334, -2105, -2435], - [1, 3, 2875], - [0, 2876, 2877, 2878, 9], - [0, -867, -7735, -2125], - [0, -3179, -1344, -1654, -2226, -2250], - [0, -867, -1105, -7661, -7660, -7736, -7737, -2323, -7347, -7738], - [1, 3, 2880], - [0, 2881, 2882, 2883, 4], - [0, -870, -871, -873, -875, -876, -874], - [0, -932, -2125, -190, -2410, -3037, -2411, -428, -427], - [0, -869, -856, -687, -1446, -620, -1599, -4055], - [1, 3, 2885], - [0, 2886, 2887, 2888, 8], - [0, -1111, -871, -7739, -7740, -873, -875, -7741, -876, -874], - [0, -1415, -932, -2125, -1753, -2375, -190, -2410, -3136, -3037, -7742, -2411, -428, -427], - [0, -869, -856, -687], - [1, 3, 2890], - [0, 2891, 2892, 2893, 4], - [0, -6904], - [0, -1415, -932, -2125, -2375, -190, -2410, -3136, -3037, -7742, -2411, -428, -6902, -427], - [0, -869, -856], - [1, 3, 2895], - [0, 2896, 121, 2897, 4], - [0, -7743], - [0, -869, -856, -3110], - [1, 3, 2899], - [0, 2900, 2901, 2902, 4], - [0, -2330, -1446, -7744], - [0, -1415, -932, -2125, -2375, -749, -190, -2410, -3136, -3037, -7745, -7742, -2411, -428, -427], - [0, -869, -856, -1446], - [1, 3, 2904], - [0, 2905, 2906, 2907, 4], - [0, -1600, -1304, -1605], - [0, -1415, -932, -2125, -2375, -190, -2410, -3136, -3037, -7742, -2411, -3661, -428, -427], - [0, -869, -856, -620], - [1, 3, 2909], - [0, 0, 121, 2910, 8], - [0, -869, -856, -4055], - [1, 3, 2912], - [0, 2913, 121, 2914, 5], - [0, -1605], - [0, -869, -856, -1599], - [1, 3, 2916], - [0, 2917, 2918, 2919, 4], - [0, -1033, -1361, -1792], - [ - 0, -23, -6065, -5584, -7746, -528, -7747, -767, -824, -927, -932, -7748, -940, -951, -956, -962, -967, -969, - -7749, -1059, -1168, -1174, -1184, -1188, -7750, -1201, -1208, -1212, -1243, -1266, -1415, -1942, -2006, -2019, - -2052, -7751, -2347, -2417, -7752 - ], - [0, -7753, -3496, -2006, -7754], - [1, 3, 2921], - [0, 2922, 2923, 2924, 5], - [0, -4007, -7755], - [ - 0, -7756, -7757, -664, -795, -7758, -1471, -1475, -1482, -7759, -1491, -1654, -1655, -1745, -7760, -2162, -2210, - -2211 - ], - [0, -7761, -7762, -7763, -7764], - [1, 3, 2926], - [0, 2927, 2928, 7, 5], - [0, -2550, -2388, -7765, -1077, -7766, -2271, -1458, -7767, -7768, -7769], - [0, -932, -3037, -3041, -3048, -428, -7770, -7771, -427], - [1, 3, 2930], - [0, 2931, 0, 2932, 4], - [0, -7772], - [0, -7773, -880, -6582, -7685, -3445, -687, -7774, -5401], - [1, 3, 2934], - [0, 2935, 2936, 113, 4], - [ - 0, -5332, -5333, -3562, -367, -5334, -4251, -5335, -5336, -5337, -5338, -682, -5366, -5340, -747, -823, -5341, - -909, -5342, -5343, -5344, -3649, -2766, -1286, -1289, -1292, -5345, -1315, -1329, -5346, -1442, -1571, -5347, - -5348, -1779, -1878, -4130, -5349, -1955, -2000, -4930, -4942, -2003, -4944, -2004, -2013, -2965, -2028, -5350, - -5351, -2084, -5352, -2090, -5353, -4242, -2095, -2098, -2101, -2162, -3728, -5354, -5355, -2427, -2429, -5356, - -2435, -5357, -5358, -5359 - ], - [ - 0, -86, -3307, -3659, -5360, -5361, -3660, -5362, -3037, -5363, -3803, -3040, -3087, -3052, -5364, -5365, -932, - -4597, -1026, -1031, -5367, -5368, -1344, -1534, -1942, -1944, -1945, -2006, -2019, -2281, -2379, -2410, -2469, - -5369, -5370 - ], - [1, 3, 2938], - [0, 2939, 2940, 113, 6], - [ - 0, -5332, -5333, -3562, -367, -5334, -4251, -5335, -5336, -5337, -5338, -682, -5339, -747, -823, -5341, -5359, - -909, -5342, -5343, -5344, -3649, -2766, -1286, -1289, -1292, -5345, -1315, -1329, -5346, -1442, -1571, -5347, - -5348, -1779, -1878, -4130, -5349, -1955, -2000, -4930, -4942, -4944, -2013, -2965, -2028, -2084, -5352, -2090, - -5353, -4242, -2095, -2098, -2101, -2162, -3728, -5355, -2427, -2429, -5356, -2435, -5357, -5358 - ], - [ - 0, -86, -3307, -3659, -5360, -5361, -3660, -5362, -3037, -5363, -3040, -3087, -5364, -5365, -932, -1026, -1031, - -5368, -1344, -1534, -1942, -1944, -1945, -2006, -2281, -2379, -2410, -2469 - ], - [1, 3, 2942], - [0, 0, 2943, 7, 5], - [0, -2322, -2346], - [1, 3, 2945], - [0, 2946, 2947, 110, 8], - [ - 0, -7775, -7776, -7777, -7778, -7779, -44, -3946, -7780, -7781, -7782, -7783, -7784, -682, -747, -809, -7785, - -7786, -7787, -7788, -7789, -7790, -7791, -7792, -7793, -7794, -7795, -7796, -7797, -7798, -7799, -7800, -7801, - -7802, -7803, -7804, -7805, -7806, -7807, -7808, -7809, -7810, -7811, -7812, -7813, -7814, -7815, -7816, -4951, - -2345 - ], - [ - 0, -5695, -5704, -3139, -7817, -4952, -2581, -5702, -3744, -3745, -3746, -3747, -162, -3778, -4954, -5706, - -4106, -5708, -5699, -283, -305, -4955, -4773, -3562, -406, -407, -409, -410, -5682, -5683, -5693, -3048, -4960, - -5692, -5697, -3136, -4961, -4962, -4963, -4964, -4647, -3044, -5686, -3037, -5688, -7818, -5675, -3803, -3624, - -4966, -3040, -3087, -3052, -4968, -4969, -3199, -5687, -5673, -4971, -4972, -427, -428, -464, -5595, -4973, - -5674, -4974, -523, -668, -674, -5701, -5676, -767, -768, -4977, -865, -881, -5698, -3808, -932, -933, -940, - -948, -952, -958, -959, -962, -7819, -963, -969, -970, -978, -1026, -4979, -1077, -1103, -1107, -5346, -1339, - -1352, -1359, -1392, -1404, -1415, -4980, -1416, -1419, -1421, -4981, -4982, -1437, -1449, -4983, -3134, -1534, - -1548, -5689, -4984, -1646, -1662, -1729, -1737, -1779, -1805, -1816, -5668, -1870, -1880, -1942, -1943, -1950, - -1955, -1978, -1983, -4985, -4986, -4987, -2006, -2013, -5680, -2019, -3051, -4988, -4989, -4990, -2027, -4991, - -2044, -4992, -2082, -2090, -2093, -2094, -2095, -4994, -5707, -4995, -2101, -2125, -5669, -2177, -2193, -2205, - -2214, -5671, -5000, -2323, -2324, -2334, -2392, -2402, -2410, -5001, -5678, -2501, -2502, -5002 - ], - [1, 3, 2949], - [0, 0, 2950, 2951, 10], - [0, -86, -3307, -7820, -190, -932, -940, -964, -967, -1344, -1534, -1654, -1942, -2127, -2198, -2251], - [0, -5839, -510, -6235, -7821, -885, -7208, -1961, -7822, -6302, -3445, -3100], - [1, 3, 2953], - [0, 2954, 2955, 2956, 11], - [0, -2387, -7823], - [ - 0, -22, -23, -47, -7769, -7767, -7824, -262, -350, -351, -3561, -3136, -427, -428, -668, -719, -879, -928, -932, - -1077, -1111, -1344, -1415, -1416, -1452, -1588, -1805, -2127, -2140, -2172, -2177, -2334, -2375, -2410 - ], - [0, -886, -7825, -6581, -7826, -7275, -7827, -7828, -659, -3839], - [1, 3, 2958], - [0, 2959, 2960, 2961, 4], - [0, -7829, -1043, -7830, -1199, -7831, -7832, -7833, -1548, -1645, -7834, -1876, -2347, -2460, -2462, -2550], - [ - 0, -3035, -3048, -7835, -3044, -3621, -3037, -4364, -4372, -3625, -7836, -7837, -7838, -3041, -664, -994, -1077, - -1100, -1654, -1788, -1972, -2125, -2210, -2211, -2379, -2388, -2410 - ], - [0, -7829, -3674, -5874, -7839, -7840, -7449, -7841], - [1, 3, 2963], - [0, 2964, 2965, 2966, 4], - [0, -1410], - [0, -2410, -32, -633, -932, -6272, -1446, -1582, -1654, -2416], - [0, -3110, -7651, -6899, -888], - [1, 3, 2968], - [0, 2969, 2970, 2971, 4], - [0, -668, -1548, -7842], - [ - 0, -1722, -461, -510, -1127, -1654, -2210, -2239, -932, -1437, -1666, -2177, -521, -600, -2501, -7843, -7844, - -615, -1813, -1942, -2347, -1003, -1026, -3767, -1132, -7845, -633, -23, -7846, -528, -534, -7847, -7848, -40, - -966, -1138, -1134, -958, -1136, -1148, -968, -940, -943, -967, -974, -7849 - ], - [0, -889, -6045, -3817], - [0, 44, 15, 16, 5], - [1, 3, 2974], - [0, 2975, 0, 195, 6], - [0, -3037, -1018, -7850], - [1, 3, 2977], - [0, 2978, 2979, 2980, 4], - [0, -668, -2550, -680, -1077, -7851, -7852, -7853, -7854, -7855, -7741], - [0, -3041, -3048], - [ - 0, -891, -4258, -7641, -7856, -1380, -7857, -7858, -7859, -3994, -7860, -7861, -7862, -7863, -7864, -7865, - -7866, -7867, -7868, -7869, -7870, -7871, -5730 - ], - [1, 3, 2982], - [0, 2983, 2984, 2985, 4], - [ - 0, -7872, -7850, -7873, -7874, -7875, -7876, -812, -1018, -7731, -1077, -7877, -7878, -7879, -7880, -1875, - -7881, -2114, -2177, -2551 - ], - [0, -427, -428, -519, -641, -708, -932, -943, -950, -958, -966, -968, -1788, -1872, -2210, -2384, -2402, -2410], - [0, -891, -7857, -7882, -3994], - [1, 3, 2987], - [0, 2988, 2989, 195, 10], - [0, -1018, -7883], - [0, -2322, -2250, -7884, -1849], - [1, 3, 2991], - [0, 2992, 56, 57, 6], - [0, -668, -1078, -1406, -7885], - [1, 3, 2994], - [0, 2995, 2996, 7, 8], - [0, -7886], - [0, -1127, -7887, -1130, -1144, -1148, -1155, -1413, -1437, -1471, -1475, -1479, -1481, -1487, -1542, -1548], - [1, 3, 2998], - [0, 2999, 3000, 3001, 5], - [0, -513, -532, -823, -1761, -2113, -2345], - [ - 0, -7888, -7889, -526, -527, -534, -535, -539, -541, -544, -7890, -558, -564, -7891, -664, -679, -748, -756, - -7892, -767, -778, -925, -932, -7893, -949, -957, -7894, -1041, -7895, -1168, -1171, -7896, -1248, -1304, -1331, - -1455, -5610, -1471, -1475, -1476, -1482, -7759, -1490, -1491, -1492, -7897, -1600, -1601, -7898, -1602, -1643, - -1654, -1743, -1814, -1889, -1960, -2125, -2163, -7899, -2210, -2211, -2275, -7900, -2417, -7901, -2437, -2476, - -2481, -2483, -2485, -7902, -2501, -2503, -2505, -2509 - ], - [0, -7903, -2476, -3098], - [1, 3, 3003], - [0, 3004, 3005, 3006, 4], - [0, -616, -7904, -7905, -7906, -1370, -7907, -7908], - [0, -627, -756, -932, -1127, -1130, -1132, -1137, -1138, -1148, -7909, -1161, -1405, -1654], - [0, -7910, -7911, -7912, -7913], - [1, 3, 3008], - [0, 3009, 3010, 3011, 4], - [0, -7914, -7915, -7916, -1329, -7917, -1548, -1752], - [ - 0, -86, -3307, -519, -674, -767, -888, -932, -946, -1053, -1344, -1534, -7918, -1788, -7919, -1974, -2094, - -2099, -2541 - ], - [ - 0, -735, -7920, -6899, -1501, -7921, -7922, -7923, -7924, -7925, -7926, -1752, -7927, -1974, -7928, -3110, - -3261, -3443 - ], - [1, 3, 3013], - [0, 0, 3014, 7, 5], - [0, -190, -7929, -3037, -7930, -3664, -932, -940, -967, -7931, -1942, -7932, -2379, -2410, -2411, -2469], - [1, 3, 3016], - [0, 3017, 3018, 3019, 10], - [ - 0, -7933, -7934, -7935, -7936, -7937, -2731, -7938, -7939, -7940, -7941, -628, -7942, -629, -2733, -7943, -7944, - -7945, -7946, -7947, -668, -680, -7948, -724, -728, -7949, -7950, -7951, -7952, -834, -7953, -5501, -7954, - -5502, -7955, -999, -1000, -1004, -1044, -1047, -7956, -1077, -6345, -5505, -5367, -1107, -6343, -7957, -7958, - -7959, -1336, -1369, -1376, -7960, -7961, -1548, -1600, -7962, -1645, -1676, -1758, -1767, -7834, -7963, -1888, - -7964, -7965, -7966, -2114, -6195, -7967, -7968, -2177, -5509, -7969, -7970, -2330, -2342, -2353, -7971, -2488, - -7972, -3730, -7973, -7974, -7975 - ], - [ - 0, -6346, -630, -664, -665, -7976, -6477, -726, -7977, -7978, -932, -940, -7979, -964, -965, -1054, -7980, - -1449, -1514, -1654, -1722, -1788, -1942, -7981, -2269, -2293, -2341, -2359, -7982, -2512, -2518, -7983, -7984 - ], - [0, -3994, -7985, -5375, -687, -7986, -7987, -7988, -3114], - [1, 3, 3021], - [0, 3022, 3023, 3024, 4], - [ - 0, -3197, -33, -3376, -3384, -3355, -3374, -3397, -38, -3412, -40, -44, -7989, -7990, -7991, -7992, -541, -7993, - -7941, -628, -7944, -7946, -702, -7994, -7995, -7955, -6195, -2177 - ], - [ - 0, -23, -7996, -7997, -7998, -7999, -8000, -528, -630, -664, -705, -8001, -722, -7949, -753, -7951, -8002, -902, - -8003, -904, -8004, -8005, -8006, -8007, -8008, -8009, -932, -8010, -966, -7980, -8011, -1654, -1989, -2082, - -7981, -2114, -2125, -2501 - ], - [0, -525, -7986, -8012, -902, -3185, -3186], - [1, 3, 3026], - [0, 3027, 3028, 3029, 6], - [0, -8013, -8014, -7941, -8015, -6346, -6345, -7959, -8016, -5509, -2488], - [ - 0, -23, -32, -33, -3376, -38, -3412, -44, -7996, -7998, -8017, -7990, -629, -630, -664, -8001, -726, -8002, - -902, -903, -8018, -8003, -8004, -8005, -8006, -8007, -8008, -8009, -8019, -8020, -8021, -932, -940, -8010, - -964, -965, -967, -8022, -1054, -8011, -1654, -1942, -1989, -1990, -2091, -6348, -2281, -2282, -5059, -2501 - ], - [0, -8012, -902], - [1, 3, 3031], - [0, 3032, 3033, 3034, 8], - [0, -8023, -8024], - [0, -351, -3267, -3037, -1520, -2125, -2127, -2392, -2410], - [0, -905, -3264, -775, -8025, -8026], - [1, 3, 3036], - [0, 0, 0, 105, 8], - [1, 3, 3038], - [0, 0, 3039, 3040, 8], - [0, -1654, -932, -1405, -966, -958, -968, -943, -974], - [0, -6422, -907, -2435], - [1, 3, 3042], - [0, 3043, 31, 3044, 4], - [0, -1801], - [0, -5827, -8027, -5865, -8028, -8029, -8030, -4116], - [1, 3, 3046], - [0, 3047, 3048, 7, 4], - [0, -1119, -2321], - [0, -4035, -3136, -3037, -774, -932, -6929, -1344, -1415, -1534, -1623, -1942, -2410], - [1, 3, 3050], - [0, 3051, 3052, 3053, 4], - [0, -479, -2269], - [0, -3037, -1202, -1376, -1654, -1788, -1966, -2410], - [ - 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -3959, -910, -3262, -3960, -3961, -3962, -3963, -1376, -3964, - -3965, -3214, -3966, -3967, -1965, -1966, -3968, -3969, -2063, -3970, -3108, -3971, -3972, -3973, -3974, -3975, - -3160, -3976, -2559, -3977 - ], - [1, 3, 3055], - [0, 3056, 3057, 3058, 8], - [0, -6511, -8031, -1977, -8032], - [0, -5834, -516, -5835, -932, -993, -1365, -1777, -1788, -2156, -2322], - [0, -3223, -8033, -8034, -3264, -6422, -6420], - [1, 3, 3060], - [0, 0, 3061, 3062, 9], - [0, -664, -1344, -1654, -2176], - [0, -8035, -8036, -8037, -8038, -7534], - [1, 3, 3064], - [0, 3065, 122, 196, 5], - [0, -987, -2346], - [1, 3, 3067], - [0, 0, 3068, 3069, 4], - [ - 0, -23, -5584, -39, -40, -86, -3307, -7465, -527, -528, -533, -534, -932, -934, -940, -958, -967, -8039, -1107, - -1344, -1415, -1646, -3547, -7861, -1942, -6040, -2501, -2503, -2518, -8040 - ], - [0, -3113, -6845, -5558, -8041, -8042, -8043, -8044], - [1, 3, 3071], - [0, 3072, 3073, 85, 4], - [ - 0, -8045, -674, -918, -8046, -8047, -8048, -8049, -8050, -8051, -7394, -8052, -8053, -8054, -1559, -1794, -5849, - -1797, -1798, -8055, -1992, -8056, -8057 - ], - [0, -526, -6022, -557, -932, -933, -958, -962, -969, -1365, -1449, -2125, -2156], - [1, 3, 3075], - [0, 3076, 3077, 85, 11], - [0, -1285, -2177, -2029, -1967, -1797, -8055, -2052, -917, -918], - [0, -915, -932, -2125, -1777, -21, -1365, -23, -557, -969, -2156, -32, -933, -958, -962, -970, -535, -6022], - [1, 3, 3079], - [0, 3080, 3081, 85, 4], - [0, -1285, -2177, -1967, -1797, -8062, -8063, -8046], - [0, -932, -2125, -1777, -21, -1365, -23, -557, -969, -2156, -32, -933, -958, -962, -970, -535, -6022], - [1, 3, 3083], - [0, 3084, 3085, 85, 6], - [0, -1285, -5849], - [0, -932, -2125, -1777, -21, -1365, -23, -557, -2156, -32, -958, -934, -535, -6022], - [1, 3, 3087], - [0, 3088, 3089, 7, 9], - [0, -459, -929], - [0, -465, -932, -943, -958, -963, -966, -968, -1654, -1788, -2293], - [1, 3, 3091], - [0, 3092, 3093, 3094, 4], - [0, -461, -1026], - [0, -7150, -635, -8064, -3347, -8065, -8066, -1942, -2091], - [0, -8067, -8068, -6505, -8069, -8070, -8071, -3217, -8072, -8073, -8074, -3756, -8075, -8076, -8077, -8078, -8079], - [1, 3, 3096], - [0, 3097, 3098, 3099, 4], - [0, -8080, -1283, -8081, -8082, -8083, -6402, -1797], - [ - 0, -2832, -5834, -8084, -8085, -8086, -8087, -8088, -8089, -8090, -8091, -8092, -8093, -8094, -8095, -8096, - -505, -516, -5835, -932, -6283, -6503, -1402, -1777, -1788, -8097, -2156, -8098, -2322, -8099 - ], - [0, -3214, -3217, -6505, -3756, -7374, -5846, -8100, -8101, -5831], - [1, 3, 3101], - [0, 3102, 3103, 3104, 11], - [0, -6704, -8102, -8103, -8104], - [0, -932, -6706, -6707, -6708, -1344, -1534, -1788, -8105, -6709, -6710], - [0, -3217, -8106, -8107, -8108, -3184, -8109, -8110, -8111, -8112, -3207, -3214, -3582, -5396, -2444, -5260, -8113], - [1, 3, 3106], - [0, 0, 3107, 3108, 4], - [0, -5834, -515, -932, -1365, -1414, -1788, -2156, -2416], - [0, -5396, -8108, -8114, -3214, -3217, -3582], - [1, 3, 3110], - [0, 0, 3111, 3112, 5], - [0, -526, -527, -535, -4098, -558, -664, -767, -1654, -2125], - [0, -3184, -6324, -525], - [1, 3, 3114], - [0, 0, 3115, 3116, 9], - [ - 0, -8115, -1654, -902, -7945, -7938, -8116, -8117, -8118, -8119, -629, -7993, -8003, -8120, -8121, -6083, -6070, - -8122, -6081, -548, -6072, -6068, -550, -6071, -6082 - ], - [0, -8123, -3582, -1961, -5923], - [1, 3, 3118], - [0, 0, 3119, 3120, 4], - [0, -21, -23, -40, -4691, -925, -932, -940, -943, -958, -966, -968, -1344, -1788, -1942, -2210, -2322], - [0, -1961, -5923, -3184, -8124, -926], - [1, 3, 3122], - [0, 0, 3123, 3124, 8], - [ - 0, -5834, -515, -664, -923, -932, -993, -1127, -1137, -1149, -1161, -1365, -1654, -1788, -1963, -8125, -2156, - -2322, -2416 - ], - [0, -3217, -3207, -3184, -5396, -1961, -5923, -8126, -6917, -8127, -8128], - [1, 3, 3126], - [0, 0, 3127, 3128, 5], - [0, -589, -585], - [0, -5559, -3264, -3590], - [1, 3, 3130], - [0, 0, 14, 3131, 10], - [0, -5559, -5569, -5570, -8129, -8130, -2265, -8131, -8132], - [1, 3, 3133], - [0, 3134, 3135, 7, 4], - [0, -988, -6100, -987, -2231], - [0, -461, -615, -8133, -664, -3629, -8134, -1168, -1197, -1231, -1646, -1815, -2177], - [1, 3, 3137], - [0, 3138, 3139, 3140, 5], - [ - 0, -189, -5200, -8135, -8136, -7820, -8137, -8138, -8139, -8140, -426, -469, -769, -812, -930, -982, -983, -986, - -8141, -6100, -1025, -8142, -1047, -1108, -1353, -8143, -1393, -8144, -1645, -5199, -1815 - ], - [ - 0, -2832, -23, -40, -3794, -7462, -3244, -8145, -8146, -3037, -428, -534, -652, -664, -674, -722, -753, -795, - -888, -955, -8147, -7355, -8148, -8149, -8150, -987, -8151, -1107, -1110, -1116, -1125, -1431, -1498, -1534, - -1600, -1602, -1610, -8152, -8153, -8154, -8155, -8156, -8157, -1654, -8158, -8159, -1942, -1959, -1972, -2066, - -2082, -2177, -2195, -2210, -2410, -2501, -2503, -8160 - ], - [0, -3272, -7148, -3214, -3217, -986], - [1, 3, 3142], - [0, 3143, 3144, 197, 5], - [0, -1797, -1798, -934], - [0, -2322, -887, -932, -1365, -44, -8161, -8162, -557, -969, -2156, -958, -962, -970], - [1, 3, 3146], - [0, 3147, 3148, 197, 4], - [0, -2177, -1797, -1798, -8167], - [0, -2322, -887, -932, -1365, -44, -8161, -8162, -557, -2156, -958], - [1, 3, 3150], - [0, 3151, 3152, 3153, 10], - [0, -934], - [0, -427, -428, -855, -932, -940, -958, -1344, -1534, -1771, -1942, -8168, -2410], - [0, -8164, -727, -4795, -8165, -6434, -8166, -932, -8163, -3214, -4900, -2410], - [1, 3, 3155], - [0, 0, 38, 3156, 8], - [ - 0, -3939, -707, -8169, -5553, -7148, -8170, -1445, -1452, -8171, -932, -5874, -8172, -8173, -7440, -7144, -8174, - -7840, -8175 - ], - [1, 3, 3158], - [0, 3159, 38, 3160, 4], - [0, -190, -1110], - [0, -932, -5031, -8176], - [1, 3, 3162], - [0, 3163, 3164, 3165, 4], - [0, -3615, -3244, -190, -3748, -427, -428, -938, -945, -8177, -948, -958, -960, -964, -965, -7354, -978, -2411], - [0, -4367, -932, -2410], - [0, -4362, -932, -5031, -8176], - [1, 3, 3167], - [0, 3168, 3169, 76, 11], - [0, -965, -964, -958, -8177, -428, -7354, -427, -948], - [0, -932, -2410, -4367], - [1, 3, 3171], - [0, 0, 0, 3172, 6], - [0, -932, -8163, -5031, -8178, -1942], - [1, 3, 3174], - [0, 3175, 0, 7, 5], - [0, -23, -959, -969, -32, -958, -561, -956, -962, -8179, -428, -8167, -970, -976, -427], - [1, 3, 3177], - [0, 0, 3178, 3179, 5], - [0, -932, -943, -958, -965, -968, -2322], - [ - 0, -8180, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8163, -8175, -1445, -1452, -7148, -8184, - -8169, -5493, -2176, -2250, -8185, -5553, -8186, -8187, -8174 - ], - [1, 3, 3181], - [0, 0, 3182, 3183, 4], - [0, -3330, -8096, -932, -958, -965, -968, -2322], - [ - 0, -8180, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8163, -8175, -1445, -1452, -7148, -8184, - -8169, -5493, -2250, -8185, -5553, -8186, -8187, -8174 - ], - [1, 3, 3185], - [0, 3186, 3187, 7, 9], - [0, -190, -3560, -978, -1110, -2411], - [0, -8188, -3330, -3037, -8189, -672, -932, -8190, -8191, -1942, -2410], - [1, 3, 3189], - [0, 3190, 3191, 3192, 4], - [0, -8192, -7462, -3748, -8167, -1110], - [0, -519, -932], - [ - 0, -8163, -2541, -8193, -8194, -8195, -8196, -8197, -707, -8169, -5553, -7148, -8170, -1445, -1452, -8171, -932, - -5874, -8172, -2250, -8173, -7440, -7144, -8174, -7840, -8175, -5493 - ], - [1, 3, 3194], - [0, 0, 3195, 3196, 10], - [0, -86, -3307, -767, -1344, -1534, -2094, -2099, -2541], - [0, -8198, -727, -932, -7921, -7922, -8199, -2541], - [1, 3, 3198], - [0, 3199, 3200, 3201, 4], - [0, -429, -469, -671, -719, -755, -823, -3780, -7829, -1418, -1456, -5473, -1605, -2400], - [ - 0, -190, -3037, -4372, -8200, -3899, -6593, -932, -940, -958, -965, -967, -978, -1609, -1768, -1771, -1821, - -1942, -2210, -7969, -2410, -2411, -2469 - ], - [0, -4100, -3671, -856, -932, -3262, -3862], - [1, 3, 3203], - [0, 3204, 0, 3205, 8], - [0, -812, -8201, -1101, -8202, -8203, -2654, -8204], - [0, -2410, -932, -6024, -6041, -3862], - [1, 3, 3207], - [0, 3208, 3209, 3210, 5], - [0, -1046, -1077, -1543, -1793, -2168], - [ - 0, -21, -23, -40, -86, -3307, -8205, -7166, -528, -533, -679, -8206, -767, -824, -825, -932, -940, -8207, -958, - -1344, -1415, -1424, -1534, -1771, -1942, -2251, -2501 - ], - [0, -932, -7148, -8170, -5932, -2501], - [1, 3, 3212], - [0, 3213, 3214, 3215, 4], - [0, -189, -7462, -8208, -986, -8209, -8210, -2115], - [0, -428, -519, -652, -668, -932, -8211, -947, -955, -999, -1771, -1821, -1866, -2410, -2541], - [0, -932, -5208, -3784, -519, -4004, -4043, -507, -5856, -5855, -1654], - [1, 3, 3217], - [0, 3218, 3219, 3220, 9], - [0, -8212], - [0, -1654, -932, -528, -1552], - [0, -525, -932, -5208, -3784, -528], - [1, 3, 3222], - [0, 3223, 3224, 3225, 5], - [0, -7150, -8213, -635, -658, -1047, -1110, -1565, -2177], - [ - 0, -23, -32, -86, -3307, -3615, -190, -3470, -3471, -8214, -3268, -8215, -3330, -3136, -8216, -3199, -589, - -8217, -891, -932, -940, -955, -967, -1002, -1344, -1415, -1942, -2174, -2205, -2375, -2379, -2410, -2411 - ], - [0, -932, -4865, -6520, -3690, -7148, -657, -8218], - [1, 3, 3227], - [0, 0, 123, 3228, 5], - [0, -932, -5208, -8108, -4795], - [1, 3, 3230], - [0, 3231, 3232, 3233, 4], - [0, -930, -1353], - [ - 0, -5380, -3037, -8219, -528, -708, -769, -932, -8220, -1077, -1654, -1788, -1810, -2125, -2177, -5621, -8221, - -2816 - ], - [0, -932, -5208, -3784, -3862, -8222, -3485, -8223, -1109, -1110, -8224, -8225, -8226, -8227, -8228, -8229], - [1, 3, 3235], - [0, 3236, 3237, 198, 11], - [0, -189, -988], - [ - 0, -86, -3307, -3534, -8230, -3244, -190, -3560, -8231, -8232, -8233, -426, -3044, -3037, -428, -429, -3899, - -932, -8234, -940, -947, -965, -978, -981, -982, -986, -1344, -1431, -1534, -1548, -1609, -1768, -1772, -1942, - -2892, -2410, -2411, -2469 - ], - [1, 3, 3239], - [0, 3240, 3241, 3242, 4], - [0, -1548, -8235], - [ - 0, -469, -1107, -1344, -1654, -932, -2125, -8236, -6611, -21, -23, -5870, -43, -2174, -40, -32, -8237, -3201, - -955, -535, -3408, -36 - ], - [0, -932, -3862, -8238], - [1, 3, 3244], - [0, 3245, 3246, 3247, 8], - [0, -1333], - [0, -8239, -8240, -932, -940, -8241, -1942, -2177], - [0, -3784, -5208, -932, -3264], - [1, 3, 3249], - [0, 3250, 3251, 3252, 9], - [ - 0, -8242, -8243, -8244, -8045, -505, -812, -8245, -8246, -8247, -1285, -7437, -1393, -1645, -8063, -8248, -8055, - -2177, -8249, -2383 - ], - [ - 0, -8250, -3330, -428, -526, -527, -528, -539, -541, -557, -6089, -566, -572, -664, -767, -8251, -932, -947, - -948, -955, -958, -7894, -6039, -8252, -1107, -1365, -1408, -1461, -8253, -8254, -1609, -1654, -8255, -1788, - -2074, -2125, -2156, -2210, -2359, -2410, -8256 - ], - [0, -932, -5208, -3784, -3184, -5748, -3209, -6024, -8257], - [1, 3, 3254], - [0, 199, 3255, 198, 6], - [ - 0, -21, -23, -40, -42, -86, -3307, -8230, -8258, -3470, -3471, -5325, -3330, -3136, -3037, -3199, -427, -428, - -429, -533, -8259, -815, -932, -940, -947, -955, -958, -965, -967, -981, -8260, -1344, -1392, -1415, -6725, - -1534, -8241, -1868, -1942, -2125, -2174, -2177, -2379, -2410 - ], - [1, 3, 3257], - [0, 3258, 3259, 3260, 4], - [0, -8261, -8262, -8263, -3896, -812, -930, -986, -8141, -1320, -8264, -8265, -2177, -8266, -8267], - [ - 0, -2832, -21, -23, -32, -3203, -40, -8268, -8269, -7820, -8270, -351, -7040, -3472, -7041, -3035, -3198, -8232, - -8146, -426, -4049, -3621, -3037, -3199, -8271, -3782, -535, -539, -8272, -652, -656, -664, -813, -932, -8237, - -8236, -1107, -1110, -1344, -8273, -1456, -8274, -1534, -1654, -8275, -1874, -8276, -2125, -2127, -2174, -2210, - -5198, -2410, -2411 - ], - [0, -932, -3862, -1446], - [1, 3, 3262], - [0, 3263, 3264, 3265, 9], - [0, -189, -7820, -8137, -8277, -8278, -8279, -7356, -5199, -2653], - [ - 0, -32, -8280, -50, -8230, -7462, -8281, -8282, -3748, -7155, -3621, -8283, -3037, -3199, -427, -428, -652, - -8284, -928, -932, -940, -955, -8285, -960, -8286, -961, -963, -965, -8287, -967, -971, -980, -7355, -982, -997, - -1110, -1654, -1834, -1942, -2177, -2281, -8288, -2282, -8289, -8290, -2892, -2392, -2410, -2411, -8291, -2468, - -2478 - ], - [0, -932, -5208, -3784, -7148, -8292, -1460, -4055], - [1, 3, 3267], - [0, 3268, 3269, 3270, 4], - [0, -5113, -8243, -505, -8293, -522, -8294, -8295, -5973, -1285, -8296, -8297, -1645, -8063, -8032, -8298], - [ - 0, -21, -23, -32, -3203, -43, -516, -535, -557, -932, -934, -947, -955, -956, -958, -988, -1059, -1365, -1408, - -7317, -1646, -1777, -1797, -1798, -2125, -2156, -2177, -2322, -8299 - ], - [0, -932, -5208, -3784, -4665, -4666, -4146], - [1, 3, 3272], - [0, 3273, 3274, 3275, 4], - [0, -1618], - [0, -1788, -664, -1654, -932, -1110, -190, -8148, -8300], - [0, -932, -5208, -1599, -7148, -8170], - [1, 3, 3277], - [0, 3278, 0, 3279, 10], - [0, -1110, -189], - [0, -932, -5208, -3784, -1654], - [1, 3, 3281], - [0, 3282, 3283, 200, 9], - [0, -189, -909, -8301, -1101, -1110, -2898, -1353, -2177, -8302], - [ - 0, -190, -3330, -426, -8303, -3037, -428, -5209, -932, -940, -947, -955, -1026, -1344, -1534, -1609, -1654, - -1772, -1788, -1810, -1942, -1977, -2091, -2125, -8304, -2400, -2410 - ], - [1, 3, 3285], - [0, 3286, 3287, 200, 6], - [0, -6578, -8305, -1353, -1645, -2114, -2177], - [0, -5380, -708, -932, -1026, -1110, -1654, -1788, -1810, -1977, -2125], - [1, 3, 3289], - [0, 3290, 0, 3291, 10], - [0, -8306, -2653], - [0, -932, -5208, -3784, -1942], - [1, 3, 3293], - [0, 3294, 3295, 3296, 4], - [0, -189], - [0, -428, -855, -932, -940, -947, -955, -959, -965, -967, -1110, -1344, -1415, -1534, -1772, -1942, -2410], - [0, -932, -5208, -3784, -1961, -5923], - [1, 3, 3298], - [0, 3299, 3300, 201, 5], - [ - 0, -8243, -8307, -505, -8308, -8245, -8309, -988, -1285, -8296, -1645, -1798, -8063, -8055, -1967, -2114, -2177, - -5010, -8310 - ], - [ - 0, -23, -32, -3332, -8311, -8312, -41, -3330, -426, -3037, -428, -528, -932, -934, -947, -955, -958, -981, - -8260, -982, -986, -8313, -1107, -1405, -1408, -8314, -1609, -1654, -1777, -2210, -2410, -8256 - ], - [1, 3, 3302], - [0, 3303, 3304, 201, 5], - [0, -2564, -23, -25, -8315, -3251], - [0, -1415, -2410, -3037, -47, -528, -3330, -426, -8316, -8317, -32, -42], - [1, 3, 3306], - [0, 3307, 3308, 3309, 6], - [0, -189, -5200, -3896, -8273, -8318, -8319, -8320], - [ - 0, -50, -3462, -8230, -3244, -190, -8281, -8282, -5030, -3035, -3330, -8231, -426, -3621, -3037, -8321, -427, - -428, -507, -664, -8284, -932, -940, -947, -948, -955, -958, -960, -8286, -961, -963, -965, -8322, -967, -971, - -978, -980, -7355, -8323, -1609, -1654, -8324, -1588, -1772, -1788, -1834, -1942, -2177, -2281, -3085, -8288, - -2892, -2392, -2410, -2411, -8291, -2468, -2478 - ], - [0, -932, -5208, -3784, -5570, -5569], - [1, 3, 3311], - [0, 3312, 3313, 3314, 5], - [0, -8325], - [0, -190, -5887, -932, -8326, -940, -947, -955, -1534, -1609, -1654, -1771, -1942, -2174, -8160], - [0, -932, -7107, -8327], - [1, 3, 3316], - [0, 3317, 0, 3318, 9], - [0, -2410, -2177, -8328, -1566, -8329, -5200, -1645, -5198, -8320, -651, -644, -1110], - [0, -8330, -932, -5208], - [1, 3, 3320], - [0, 0, 123, 3321, 11], - [0, -932, -5208], - [1, 3, 3323], - [0, 3324, 3325, 3326, 9], - [0, -189, -3115, -6100, -1110, -1499, -1889, -1907, -1929, -2177, -8331], - [ - 0, -23, -32, -6034, -8230, -4776, -8332, -8333, -4049, -8334, -3621, -3037, -8335, -3199, -8336, -3331, -3782, - -461, -507, -928, -982, -8190, -983, -986, -1431, -1521, -1654, -1916, -1931, -2162, -2232, -2286, -2299, -8337, - -2392, -2399, -2548 - ], - [0, -932, -3784, -5208, -2299, -8338], - [1, 3, 3328], - [0, 3329, 3330, 3331, 5], - [0, -3331, -429], - [ - 0, -86, -3307, -3244, -190, -3037, -5206, -3664, -6593, -3665, -932, -940, -947, -948, -8339, -965, -968, -981, - -8260, -1110, -1344, -1431, -1534, -1942, -2910, -2174, -2892, -2410, -2411, -2469 - ], - [0, -932, -5208, -3784, -7148, -5127, -3634], - [1, 3, 3333], - [0, 3334, 3335, 3336, 4], - [0, -429, -264, -263], - [0, -4153, -3330, -426, -932, -4164], - [0, -4165, -856, -4100, -3485, -4156, -4158, -4346, -3862], - [1, 3, 3338], - [0, 3339, 3340, 3341, 9], - [0, -3188, -189, -671, -680, -8340, -3347, -8341, -1110, -1366, -5894, -1451, -1878, -8342, -8343, -2177, -4096], - [ - 0, -22, -23, -32, -3244, -8344, -428, -3782, -519, -652, -910, -932, -8211, -945, -947, -955, -960, -978, -981, - -8260, -982, -986, -1536, -1609, -8345, -8346, -1768, -1772, -8275, -1821, -1951, -2410, -2478, -2548 - ], - [0, -932, -5208, -3784, -8347, -8170, -7148, -5553, -2541], - [1, 3, 3343], - [0, 199, 3344, 3345, 4], - [ - 0, -3748, -3330, -3621, -3037, -427, -428, -5206, -8348, -8349, -726, -932, -947, -955, -979, -981, -8260, - -2379, -2392, -2410, -2423, -2469 - ], - [0, -932, -5208, -3784, -8350, -2469, -8351], - [1, 3, 3347], - [0, 3348, 3349, 3350, 5], - [0, -189, -5199, -2788, -1931, -2177, -8352], - [ - 0, -50, -3560, -8282, -3748, -5030, -3330, -8283, -3037, -3199, -8353, -427, -428, -3782, -3664, -507, -8284, - -928, -932, -6835, -940, -955, -958, -961, -8354, -8287, -967, -978, -8190, -983, -986, -997, -1110, -1449, - -1609, -1852, -1942, -2892, -2410, -8291, -2468, -2469, -2478 - ], - [0, -932, -3784, -5031, -2476, -5173, -8199], - [1, 3, 3352], - [0, 3353, 3354, 3355, 6], - [0, -22, -1464, -668, -1373, -1793, -2006, -2205], - [0, -3244, -8355, -3330, -3037, -4067, -3040, -740, -932, -5135, -8356, -8357, -1431, -1741, -2269, -2410, -2469], - [0, -932, -8358], - [1, 3, 3357], - [0, 3358, 3359, 38, 9], - [0, -8359, -426, -8360, -988], - [0, -428, -664, -983, -986, -8159, -2195], - [1, 3, 3361], - [0, 0, 3362, 38, 5], - [0, -1810, -2127, -2132, -2384, -2410], - [1, 3, 3364], - [0, 3365, 0, 3366, 4], - [0, -941, -8361], - [0, -984], - [1, 3, 3368], - [0, 0, 0, 3369, 9], - [0, -4791, -3217, -8257, -6024, -3209, -3966, -4792], - [1, 3, 3371], - [0, 3372, 3373, 3374, 5], - [0, -461, -6426, -983], - [0, -2832, -2127, -2195, -2384, -2410], - [0, -3272, -3217, -3214, -3215, -4132, -461], - [1, 3, 3376], - [0, 0, 3377, 3378, 5], - [ - 0, -6774, -8362, -8363, -1107, -1405, -8364, -1471, -1475, -1477, -1478, -1479, -1480, -1482, -1487, -8365, - -1488, -1548, -1654, -8366, -2081, -2330, -2388, -2410, -2412, -8367, -2501 - ], - [0, -3272, -3217, -987, -3214, -3215, -4132], - [1, 3, 3380], - [0, 0, 3381, 7, 5], - [0, -558, -566, -664, -986, -1168, -1179, -1199, -1205, -8368, -1452, -1654], - [1, 3, 3383], - [0, 202, 3384, 7, 6], - [0, -2410, -2447], - [1, 3, 3386], - [0, 0, 3387, 3388, 6], - [0, -1654, -932, -1405, -589, -2172, -2155, -585, -966, -958, -968, -943, -963, -974], - [0, -990, -1334, -4616], - [1, 3, 3390], - [0, 3391, 3392, 3393, 8], - [0, -8369, -992], - [ - 0, -8370, -8371, -8372, -8373, -4272, -5686, -3037, -8096, -633, -8374, -756, -1344, -1405, -1471, -1472, -1477, - -1479, -8375, -1646, -1788, -1942, -2322, -2379, -2388, -2402, -2405, -2410, -8376 - ], - [0, -4276, -8377], - [1, 3, 3395], - [0, 3396, 3397, 3398, 5], - [0, -4272, -616, -760, -8378, -8379], - [0, -8380, -3037, -8381, -8096, -932, -1471, -1475, -1479, -8375, -8382, -1788, -1942, -2322, -2379, -2410], - [0, -4276, -8113, -5260], - [1, 3, 3400], - [0, 3401, 3402, 3403, 5], - [0, -461, -668, -2550, -1548, -615, -1077, -8383, -988, -1600, -8384, -2425], - [0, -1983, -8385, -2410, -3037], - [0, -8386, -8387, -3214, -1599, -4004], - [1, 3, 3405], - [0, 3406, 3407, 3408, 5], - [0, -883, -8388, -1597, -8389, -2239, -8390, -2346], - [0, -8391, -8392, -8393, -2322, -8394], - [0, -5827, -6917, -8395, -7724, -2239, -8396, -1631, -8276], - [1, 3, 3410], - [0, 0, 3411, 3412, 9], - [0, -589, -615, -756, -1654, -1788], - [0, -5389, -997, -6820, -8397, -8398, -8399, -8400, -6821, -8401, -8402, -1801, -8403, -8404], - [1, 3, 3414], - [0, 0, 3415, 3416, 4], - [0, -350, -3266, -509, -652, -1654, -2127], - [0, -8405, -8406, -8407, -8408, -8398, -8399, -6821, -8401, -6820, -5389, -1801, -8400, -8403, -8409, -8404], - [1, 3, 3418], - [0, 0, 3419, 3420, 5], - [0, -468, -1083, -8047, -1283, -1402, -2322], - [0, -997, -8410, -8411, -8412], - [1, 3, 3422], - [0, 3423, 3424, 3425, 4], - [0, -8413, -769, -1040, -1100, -8414, -1395, -1399, -1773, -1951, -2202, -8415, -8416], - [0, -3037, -519, -652, -8417, -8418, -8419, -8420, -1849, -7087, -6909, -2384, -2410, -2518, -2541], - [ - 0, -8421, -6599, -1958, -8422, -7096, -8423, -8424, -7091, -6656, -5550, -8425, -7304, -8426, -1764, -1847, - -8427, -5369 - ], - [1, 3, 3427], - [0, 0, 3428, 3429, 6], - [0, -1144, -1146, -1149, -1127, -2518], - [0, -1000, -1958, -8428, -3973, -8429, -8430, -8431, -8432], - [1, 3, 3431], - [0, 3432, 3433, 7, 4], - [0, -8433, -8434, -5124, -4025, -5129, -1427], - [0, -7037, -4034, -668, -1361], - [1, 3, 3435], - [0, 0, 3436, 3437, 4], - [0, -2832, -3037, -8200, -3665, -932, -8435, -1763, -8436, -2269, -2378, -2410, -2469], - [0, -2410, -8437, -507, -3694, -2414, -4004, -3634], - [1, 3, 3439], - [0, 3440, 3441, 203, 4], - [ - 0, -1983, -828, -990, -1801, -2178, -2453, -812, -1072, -743, -3122, -459, -2401, -1840, -2255, -907, -1641, - -5148, -617, -929, -1335, -1800, -737, -1045, -1997, -2187, -746, -8438, -736 - ], - [0, -888, -1296, -1788, -465, -1654, -2457, -932, -1610, -1676, -2293, -733, -744, -745, -1010, -1635, -8439], - [1, 3, 3443], - [0, 3444, 3445, 203, 4], - [ - 0, -459, -8440, -617, -736, -737, -743, -746, -812, -828, -907, -929, -990, -1045, -1072, -1335, -8438, -1636, - -1800, -1840, -1851, -5148, -1983, -1997, -2155, -2178, -2187, -8441, -2255, -2401, -2445, -2453 - ], - [0, -465, -733, -744, -745, -888, -932, -1010, -1296, -1610, -1635, -1654, -1676, -1788, -8439, -2293, -2457], - [1, 3, 3447], - [0, 3448, 3449, 3450, 6], - [0, -23, -25, -46, -8245, -1851], - [0, -3136, -932, -1415], - [0, -4847, -1004, -1446, -4100, -3696, -8442, -856, -2305, -5886, -3262, -3960, -8443, -8444, -8445], - [1, 3, 3452], - [0, 3453, 3454, 3455, 4], - [0, -888, -1650, -719, -1645, -6123], - [0, -1654, -932, -2125, -2418, -2293, -2369, -966, -958, -968, -943, -974, -2450], - [0, -1004, -3161, -6125, -3578, -3691, -5728, -3122, -3994, -3690], - [1, 3, 3457], - [0, 3458, 3459, 3460, 5], - [0, -1107, -1119, -1276], - [0, -190, -3470, -7040, -3471, -3472, -7041, -7042, -3136, -3037, -932, -1110, -1417, -2174, -2375, -2410, -2411], - [0, -1004, -8446, -1276, -6107, -3999, -8447, -3261], - [1, 3, 3462], - [0, 3463, 3464, 3465, 5], - [0, -1465, -8448, -3850], - [0, -1654, -932, -1004, -2379, -1942, -2410, -3621, -3617, -739, -428, -427], - [0, -6120, -8449, -3173, -8450, -6121, -1334, -3175, -8451, -1791, -1004], - [1, 3, 3467], - [0, 3468, 3469, 7, 5], - [0, -743, -746, -812, -828, -6825, -1840, -2155, -2418], - [0, -465, -744, -932, -963, -1004, -1654, -1788, -2293], - [1, 3, 3471], - [0, 3472, 3473, 3474, 5], - [0, -469, -668, -719, -724, -754, -865, -1004, -1435, -2127, -2132, -2410, -2564], - [0, -190, -3732, -4198, -3617, -3037, -427, -428, -932, -966, -1110, -1753, -1942, -2125, -2379, -2383, -2411], - [0, -3690, -3445, -6491, -3113, -6129, -1004, -8452, -3161, -8453, -5545, -3844, -3926], - [1, 3, 3476], - [0, 0, 3477, 3478, 5], - [0, -652, -8454, -2210, -932, -1004, -2379, -8455, -2410, -3037, -4372, -3617, -428, -427], - [ - 0, -8456, -8457, -4055, -2410, -3690, -1334, -1004, -8458, -8459, -2410, -5401, -8038, -8460, -8461, -8462, - -8463, -8464, -4140, -4601, -3445, -8465, -8466, -2006, -8467, -8468, -8469 - ], - [1, 3, 3480], - [0, 3481, 3482, 3483, 4], - [0, -1548, -2451], - [0, -2685, -8470, -8471, -3136, -3044, -427, -428, -932, -940, -958, -967, -1415, -1942, -2375, -2410], - [0, -1004, -2451, -3926, -5874, -7723, -8472, -2544], - [1, 3, 3485], - [0, 3486, 3487, 3488, 5], - [0, -483, -1736, -8473, -1993, -8474], - [ - 0, -3732, -4198, -8475, -3617, -4199, -8476, -8477, -4625, -8478, -724, -754, -828, -1004, -4206, -1335, -1730, - -8479, -2410, -2426, -2564, -8480 - ], - [ - 0, -3967, -3690, -1334, -5401, -856, -4055, -1004, -2410, -4058, -3844, -8481, -4847, -8482, -3438, -8483, - -8484, -8485, -8486, -2564, -3926 - ], - [1, 3, 3490], - [0, 0, 3491, 3492, 8], - [0, -5834, -8487, -932, -1445, -2322], - [0, -1015, -702, -1631], - [1, 3, 3494], - [0, 3495, 3496, 3497, 8], - [0, -8488, -8489], - [0, -8490, -8491, -8492, -1202, -1396, -8493, -1646, -1654, -1792], - [ - 0, -7370, -702, -1015, -1631, -7369, -7208, -1792, -1797, -7375, -3589, -7153, -8494, -8495, -2444, -3590, - -5260, -5846 - ], - [1, 3, 3499], - [0, 3500, 3501, 7, 5], - [0, -510, -1543, -2168, -2510], - [ - 0, -526, -533, -551, -556, -558, -767, -778, -825, -932, -6929, -958, -1041, -1415, -1534, -1780, -1939, -2000, - -2251, -2275, -2501, -8496 - ], - [1, 3, 3503], - [0, 3504, 3505, 3506, 10], - [0, -812, -1100, -2555, -8497], - [0, -427, -428, -519, -932, -943, -950, -958, -966, -968, -974, -1077, -1344, -1534, -1788, -2384, -2410], - [0, -2432, -5408, -7347], - [1, 3, 3508], - [0, 0, 3509, 7, 9], - [ - 0, -1788, -1168, -1446, -1654, -2210, -932, -1548, -1813, -2347, -756, -633, -2915, -1243, -1262, -1534, -2778, - -2461, -1204, -8498, -8499, -2463 - ], - [1, 3, 3511], - [0, 3512, 3513, 3514, 4], - [0, -8500], - [0, -932, -937, -966, -1001, -1654, -1788, -8501, -2210], - [0, -8502, -1573, -3444, -5545, -3240, -8503], - [1, 3, 3516], - [0, 3517, 3518, 3519, 4], - [0, -8504], - [0, -262, -3037, -767, -1107, -8342, -2104, -2402, -2410, -2469, -8505, -8506, -1023], - [0, -8507, -8508, -5858, -3634, -8509, -8510, -8511, -1021, -8512, -8513, -1415], - [1, 3, 3521], - [0, 3522, 0, 3523, 8], - [0, -8514, -8515], - [0, -788, -3215, -5922, -8516, -8517, -8518], - [1, 3, 3525], - [0, 0, 3526, 3527, 4], - [0, -756, -864, -932, -1654, -1788, -1939, -2006, -2052, -2210, -2410], - [0, -5922, -6439, -821], - [1, 3, 3529], - [0, 3530, 3531, 204, 4], - [0, -8519, -8520, -1108, -5615, -1639], - [ - 0, -8521, -6927, -8522, -4036, -3621, -3037, -8523, -4372, -8524, -932, -8525, -999, -1026, -4787, -1107, -8526, - -1654, -2125, -2210, -8527, -2410 - ], - [1, 3, 3533], - [0, 0, 3534, 7, 5], - [0, -3621, -3037, -1654, -2165, -2410], - [1, 3, 3536], - [0, 3537, 3538, 3539, 11], - [0, -8529], - [0, -23, -38, -40, -43, -3037, -534, -652, -932, -1297, -1412, -1942, -1973, -2410, -2501, -2503], - [0, -5922, -6597, -4055, -3215, -2536, -6841, -2537, -3756, -2451, -5874, -8530, -507, -8531, -8532, -3264], - [1, 3, 3541], - [0, 0, 0, 3542, 10], - [0, -1029, -3162, -2363, -2319, -8533, -826], - [1, 3, 3544], - [0, 3545, 3546, 3547, 4], - [0, -8534, -8535, -8536, -8537, -8538, -8539, -8540, -8541, -8542, -1867, -8543, -2124, -8544, -2177, -8545], - [ - 0, -8546, -3902, -357, -3748, -5029, -3037, -469, -3907, -470, -8547, -8548, -8549, -2917, -8550, -726, -767, - -932, -8551, -4848, -8552, -8553, -1335, -1435, -5265, -1464, -8554, -2884, -1730, -1972, -2240, -2384, -2410, - -2426, -2453, -3612 - ], - [0, -3578, -3161, -4055, -4058, -1805, -3690], - [1, 3, 3549], - [0, 3550, 3551, 7, 5], - [ - 0, -262, -8555, -5335, -8556, -8557, -5336, -5337, -8558, -8559, -536, -541, -8560, -8561, -909, -928, -1026, - -5344, -8562, -1645, -8563, -2383, -2410, -8564 - ], - [ - 0, -86, -3307, -367, -3136, -8565, -8566, -3037, -6025, -5367, -1344, -1415, -3640, -1534, -1942, -1944, -1945, - -2125, -2379, -2392, -5369 - ], - [1, 3, 3553], - [0, 3554, 3555, 3556, 10], - [ - 0, -8567, -8568, -8569, -8570, -8571, -6369, -883, -1646, -8255, -2062, -8032, -2243, -8572, -8057, -8573, - -2322, -2347 - ], - [0, -5834, -515, -516, -932, -1365, -1777, -2156], - [0, -2319, -8574, -4004, -8575, -8576, -3240], - [1, 3, 3558], - [0, 3559, 3560, 7, 5], - [0, -768, -8577, -1580, -1792, -1961, -8578, -2594], - [0, -23, -824, -1059, -1168, -1174, -1201, -1243, -1361, -1417, -1632], - [1, 3, 3562], - [0, 28, 3563, 3564, 9], - [0, -21, -23, -40, -41, -3470, -3471, -8579, -5859, -8580, -553, -796, -932, -933, -1534, -1650, -2174], - [ - 0, -8581, -8582, -8583, -8584, -3098, -8585, -3100, -3482, -2006, -8586, -8587, -5066, -3578, -8588, -8589, - -8590, -8591, -8592, -8593, -8594, -8595, -8596, -8597, -8598, -8599, -8600, -8601, -8602, -8603, -8604, -8605 - ], - [1, 3, 3566], - [0, 39, 3567, 3568, 4], - [ - 0, -21, -23, -38, -40, -41, -42, -3326, -350, -351, -3267, -407, -409, -2622, -3136, -3040, -3052, -427, -428, - -708, -726, -767, -932, -934, -940, -7476, -958, -959, -969, -970, -1415, -2006, -2019, -2082, -2127, -2140, - -2375, -2387, -2410 - ], - [0, -8606, -3100, -8607, -2074], - [1, 3, 3570], - [0, 3571, 0, 3572, 8], - [0, -8608, -8609, -8610, -5140], - [0, -4213, -1334, -4215, -3634, -4216, -8611], - [1, 3, 3574], - [0, 3575, 0, 3576, 10], - [0, -8612], - [0, -8613, -1038, -6768, -8614, -510, -5921, -8615, -6309, -1961], - [1, 3, 3578], - [0, 75, 3579, 3580, 4], - [0, -3037, -3665, -510, -1344, -1534, -2410, -2466, -6859, -2469], - [0, -1039, -4111, -8616, -8617, -5514], - [1, 3, 3582], - [0, 3583, 14, 3584, 9], - [0, -6861], - [0, -4112, -687, -7095, -3958, -8132, -8618, -8619, -8620, -1040, -8621], - [1, 3, 3586], - [0, 205, 3587, 48, 4], - [ - 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -767, -824, -825, -932, -940, -958, -1344, -1415, -1534, - -1623, -1771, -1942, -2251, -2437, -2501 - ], - [1, 3, 3589], - [0, 0, 3590, 3591, 8], - [0, -21, -23, -4691, -3356], - [0, -8622, -8623, -8624], - [1, 3, 3593], - [0, 3594, 3595, 3596, 4], - [0, -8625, -8626, -8627, -8628], - [0, -8629, -3037, -519, -8630, -1100, -8631, -2384, -2541], - [ - 0, -1640, -6656, -8038, -8632, -5409, -6527, -5094, -8633, -8634, -6855, -8635, -8636, -6659, -7440, -1391, - -8637, -8638, -8639, -7863, -7304, -640, -6438, -8640, -7715, -8641, -8642, -5315, -8643, -8644, -8645, -8646, - -8647, -8648, -8649, -8650, -8651, -1992, -8652, -8653, -8654, -8655, -8656, -8657, -5408, -2323, -8658, -8659, - -7345, -8660, -7860, -8661, -8662, -8663, -8664, -8665, -8666, -8667, -8668, -8669, -8670, -8671, -8672, -8673, - -8674, -8675, -6528, -8676, -8677, -5953, -8678, -8679, -8680, -8681, -8682, -8683, -8684, -8685, -8686, -8687, - -8688, -3742, -8689, -8690, -8691, -8692, -8693, -8694, -8695, -8696, -8697, -8698, -8699, -8700, -8701, -8702, - -8703, -8704, -2534, -8705, -8706, -8707, -8708, -8709, -8710, -8711, -8712, -8713, -8714, -6597, -8715, -8716, - -4771, -8717, -8718, -8719, -6042, -8720, -8721, -8722, -8723, -8724, -8725, -8726, -8727, -8728, -8729, -8730, - -8731, -8732, -8733, -8734, -8735, -8736, -8737, -8738, -8739, -8740, -8741, -8742, -8743, -8744, -8745, -8746, - -8747, -8748, -8749, -8750, -8751, -8752, -8753, -5316, -8754, -8755, -8756, -8757, -7557, -8758, -8759, -8760, - -8761, -8762, -8763, -8764, -8765, -8766, -7711, -8767, -8768, -8769, -8770, -8771, -8772, -8773, -8774, -8775, - -8776, -8777, -8778, -8779, -8780, -8781, -8782, -8783, -8784, -8785, -8786, -8787, -8788, -8789, -8790, -8791, - -8792, -8793, -6695, -8794, -8795, -8796, -7349, -8797, -8798 - ], - [1, 3, 3598], - [0, 0, 3599, 3600, 9], - [0, -3266, -516, -652, -932, -1344, -1654, -2127], - [0, -6656, -1044, -8799, -8800, -8801, -651, -834], - [1, 3, 3602], - [0, 3603, 81, 7, 6], - [0, -812, -907, -929, -1800, -1840, -2255], - [1, 3, 3605], - [0, 3606, 3607, 3608, 5], - [0, -1871, -5907], - [0, -2541, -519, -824, -2384, -2331], - [0, -3324, -7421, -6491, -5573, -7282], - [1, 3, 3610], - [0, 3611, 3612, 3613, 4], - [0, -8802, -8803], - [0, -519, -7408, -2331, -2384, -2541], - [ - 0, -5573, -8804, -1047, -5504, -8805, -8806, -6656, -7282, -5572, -5897, -2114, -8807, -6370, -7420, -7421, - -2487, -8808, -1847 - ], - [1, 3, 3615], - [0, 3616, 3617, 3618, 4], - [0, -8809, -1393, -1639, -8810], - [0, -932, -937, -966, -1001, -8811, -1654, -1759, -1788, -2114], - [0, -6656, -5573, -1047, -5504, -1107, -5572, -5574, -2114, -7282], - [1, 3, 3620], - [0, 3621, 3622, 3623, 4], - [ - 0, -8812, -8813, -8814, -8815, -8816, -8817, -8818, -8819, -8820, -8821, -8822, -8823, -8824, -8825, -8826, - -8827, -8828, -8829, -8830, -8831, -8832, -8833, -8834, -8835, -8836, -8837, -8838, -8839 - ], - [0, -1168, -2127, -2410, -1244, -1252, -2143, -3266, -2134, -350, -2139, -2142, -351], - [0, -3173, -7685, -8840, -1050, -8841, -6005, -6187, -8842], - [1, 3, 3625], - [0, 3626, 3627, 3628, 10], - [0, -8843, -8831, -8844, -3037, -8845, -1025, -8846, -1465, -8847, -1730, -2446], - [ - 0, -8848, -8824, -8825, -8849, -262, -8850, -3035, -4269, -8851, -3850, -3044, -5686, -3621, -4624, -8852, - -8853, -4372, -3625, -3738, -427, -428, -581, -664, -665, -3629, -668, -677, -824, -932, -8854, -1168, -1199, - -1208, -1261, -8855, -1548, -1646, -1654, -1693, -1722, -1771, -1788, -2105, -2106, -2150, -2210, -2211, -2379, - -2410, -2550 - ], - [0, -8856, -7685, -8840, -8841, -3173], - [1, 3, 3630], - [0, 3631, 0, 3632, 10], - [ - 0, -8857, -8858, -8859, -8860, -8861, -8862, -4106, -8863, -458, -469, -470, -501, -8864, -617, -679, -8865, - -695, -713, -719, -728, -754, -767, -769, -790, -8866, -8867, -8868, -1004, -1044, -1069, -1077, -1087, -8869, - -1107, -8846, -1353, -1442, -1465, -1526, -8870, -1548, -8871, -1610, -6294, -1640, -1645, -1676, -1729, -1805, - -1816, -3447, -1857, -8872, -8873, -1888, -1959, -8874, -2122, -2177, -8875, -8876, -8877, -8878, -4356, -2359, - -8879, -8880, -8881, -2446, -2520, -2522, -2531, -2548, -2564, -8882 - ], - [0, -8883, -687, -8884, -5801, -8885, -1050, -8841, -6224, -8886], - [1, 3, 3634], - [0, 3635, 86, 3636, 9], - [0, -8887, -668, -831, -8888, -8889, -2001], - [0, -7416, -5897], - [1, 3, 3638], - [0, 3639, 3640, 7, 5], - [0, -3048, -8566, -8890, -1077, -8891, -2488], - [0, -3037, -2125, -2319, -2410], - [1, 3, 3642], - [0, 0, 86, 3643, 5], - [0, -1055, -4055, -5841, -8892, -2239, -7208, -8893], - [1, 3, 3645], - [0, 3646, 206, 3647, 5], - [0, -812, -926, -1077, -1548, -2359], - [0, -7871], - [1, 3, 3649], - [0, 0, 3650, 3651, 4], - [ - 0, -23, -36, -6064, -40, -8894, -3048, -3036, -3136, -4964, -3037, -8336, -551, -679, -756, -1077, -1107, -1415, - -1942, -2125, -2127, -2128, -8895, -8896, -2141, -2334, -2375, -2379, -2387, -2410 - ], - [0, -3214, -4224, -4120, -4121, -4123, -4122, -8897], - [1, 3, 3653], - [0, 3654, 3655, 3656, 9], - [0, -8898, -668, -1038, -1381, -1531, -1758, -6467, -1965, -2177, -2246, -8899, -6007], - [0, -664, -756, -932, -1405, -8900, -1654, -1939, -1972, -2210], - [0, -8901, -8902, -8903, -8904, -8421, -5550, -6836, -8905, -8906, -5921, -8907, -8908, -8427, -5801, -8909], - [1, 3, 3658], - [0, 0, 0, 3659, 4], - [0, -5732, -687, -8425, -7304, -5411, -4038, -8038, -8910, -7440, -7144, -3214, -3756, -8911], - [1, 3, 3661], - [0, 3662, 3663, 3664, 11], - [0, -2997, -8912, -8913, -1889, -2318], - [ - 0, -23, -40, -3559, -8914, -8915, -427, -428, -518, -534, -749, -753, -767, -778, -779, -784, -932, -940, -967, - -8916, -1041, -8917, -1643, -1771, -1942, -8918, -4245, -2200, -2233, -2275, -2335, -2376, -2410, -2501, -2503, - -2505, -8919, -2552 - ], - [ - 0, -1060, -2410, -3214, -2501, -3264, -775, -5511, -8920, -2316, -7287, -8921, -8922, -8923, -8924, -7287, - -8925, -7288, -7289, -8926, -7294, -8927, -8928, -7297, -7293, -7292, -7296, -8929, -932, -1942, -8930, -985, - -8931 - ], - [1, 3, 3666], - [0, 3667, 3668, 3669, 4], - [0, -510, -2518], - [0, -1788, -1446, -1654, -2198], - [0, -8932], - [1, 3, 3671], - [0, 3672, 3673, 3674, 4], - [0, -8933, -1033], - [ - 0, -23, -534, -7747, -824, -1168, -1174, -1201, -1208, -1243, -1266, -1361, -1415, -1419, -1792, -2006, -8934, - -2019, -2463, -2501, -7752 - ], - [0, -1062, -2006, -4038, -8935], - [1, 3, 3676], - [0, 0, 3677, 3678, 4], - [0, -725, -932, -1004, -8936, -1654, -1788], - [0, -1334, -1342, -2435, -8937, -3323, -8938, -3590], - [1, 3, 3680], - [0, 0, 0, 3681, 9], - [0, -3827, -3837, -3838, -3167, -3827, -620], - [1, 3, 3683], - [0, 3684, 3685, 7, 11], - [0, -8050], - [0, -2832, -5834, -8084, -8939, -8096, -516, -932, -1777, -1788, -2322], - [1, 3, 3687], - [0, 3688, 3689, 3690, 11], - [0, -510, -8940, -702, -8941, -714, -1650, -2520, -8942, -8943, -1953, -728, -995, -1792, -8944], - [0, -664, -2471, -1654, -932, -1666, -8945, -2105, -1942, -8946, -940, -967], - [0, -687, -8947, -8948, -3674], - [1, 3, 3692], - [0, 3693, 3694, 3695, 8], - [0, -22, -668, -679, -755, -823, -1077, -1623, -1645, -8949, -2168, -2177, -2321], - [ - 0, -3307, -7040, -3842, -3472, -7041, -7042, -8355, -7080, -3048, -3136, -4049, -8566, -3637, -3037, -8890, - -3199, -427, -428, -721, -767, -932, -958, -966, -967, -4650, -1344, -1415, -8950, -1421, -1456, -8951, -1534, - -1658, -1942, -2125, -2174, -2269, -2375, -2410, -2501 - ], - [0, -2501, -3862, -2410, -8952, -2376, -2501, -8423, -5922], - [1, 3, 3697], - [0, 3698, 3699, 3700, 5], - [0, -6008, -668, -679, -1548, -1639, -1645, -2114, -2321], - [ - 0, -8953, -7202, -3044, -4036, -8566, -3037, -3200, -3046, -664, -778, -932, -1344, -1405, -1534, -1654, -1658, - -1660, -1942, -2125, -2210, -2376, -2388, -2389, -2410, -2476, -2477, -2481, -2485, -2501 - ], - [0, -2501, -3862, -2410, -8038, -7144, -8170, -8423, -5922, -6188, -2376, -520, -8954, -7172], - [1, 3, 3702], - [0, 3703, 3704, 7, 6], - [0, -8955, -8956, -8957, -1285, -1641], - [ - 0, -5834, -516, -633, -8958, -756, -769, -932, -8959, -8960, -1070, -1365, -8961, -1405, -8962, -8963, -6058, - -1939, -1978, -2105, -2125, -2177, -2322 - ], - [1, 3, 3706], - [0, 3707, 3708, 3709, 4], - [0, -1801, -8964, -8965], - [ - 0, -1501, -1788, -1415, -932, -2127, -1004, -1942, -2293, -8966, -958, -3234, -940, -967, -350, -8967, -934, - -351, -8968 - ], - [0, -6463, -4053, -6582, -1985, -8969, -4055, -8970, -6656], - [1, 3, 3711], - [0, 3712, 3713, 3714, 9], - [0, -5220, -823, -1311, -1548, -1549, -2798, -8971, -2387], - [0, -409, -3044, -3040, -3052, -4972, -8972, -2006, -2019, -8973, -2410, -3612], - [0, -1071, -4053, -4054, -2006, -2019, -3322, -8974, -3926, -8975, -3926, -8976, -8977], - [1, 3, 3716], - [0, 0, 3717, 3718, 6], - [0, -1654, -932, -1405, -589, -585, -966, -958, -968, -943, -963, -974], - [0, -1072, -1334, -8978, -3324], - [1, 3, 3720], - [0, 3721, 3722, 3723, 4], - [0, -668, -3606, -2267], - [0, -527, -528, -534, -545, -560, -932, -949, -1001, -1415, -1626, -2501], - [0, -8979, -8980, -2501, -3862], - [1, 3, 3725], - [0, 3726, 3727, 3728, 4], - [0, -1442], - [0, -627, -8981, -756, -1405, -2250, -2322, -2568], - [0, -2548, -8982, -8983], - [1, 3, 3730], - [0, 3731, 3732, 3733, 8], - [0, -1119, -1462, -8984], - [0, -8985, -5726, -1646, -1654, -1788, -1972, -8986, -2250], - [ - 0, -1076, -6656, -8801, -6351, -7421, -8987, -1650, -8988, -8989, -7371, -4055, -2059, -6234, -8987, -6693, - -6694, -2363, -8990, -5554, -8991, -6932, -1961 - ], - [1, 3, 3735], - [0, 124, 3736, 3737, 4], - [0, -3035, -3048, -3621, -3037, -664, -1077, -1405, -1654, -1788, -1942, -1948, -8992, -2379, -2410], - [0, -1076, -8801], - [1, 3, 3739], - [0, 3740, 3741, 3742, 4], - [0, -8993, -1077, -1693, -8994], - [0, -3048, -3623, -1654, -925, -2148, -615, -2517, -1980], - [0, -1961, -1076, -6656, -8801], - [1, 3, 3744], - [0, 0, 3745, 3746, 5], - [0, -1733], - [0, -1080, -8995], - [1, 3, 3748], - [0, 3749, 3750, 7, 11], - [0, -1650, -2125, -1370, -1119], - [0, -2319, -2250], - [1, 3, 3752], - [0, 3753, 0, 3754, 8], - [0, -2543, -2062], - [0, -1082, -3323, -6931], - [1, 3, 3756], - [0, 0, 3757, 3758, 5], - [0, -5834, -515, -516, -932, -1788, -2156, -2322], - [0, -5924, -6557, -8108, -6444, -7163, -8996], - [1, 3, 3760], - [0, 0, 3761, 3762, 4], - [ - 0, -21, -23, -32, -36, -3367, -40, -42, -86, -3307, -8997, -3326, -351, -3561, -8998, -8999, -9000, -9001, - -8219, -2716, -2717, -534, -932, -940, -1344, -9002, -1942, -2104, -2127, -2132, -2251, -2334, -2410, -2469, - -2816, -9003 - ], - [0, -1087, -7282, -9004], - [1, 3, 3764], - [0, 0, 3765, 3766, 11], - [0, -3748, -3268, -427, -428, -367, -589, -932, -943, -948, -958, -965, -968, -1344, -2391], - [0, -7314, -3578, -1334, -3844, -9005, -3445, -3161], - [1, 3, 3768], - [0, 0, 0, 3769, 8], - [0, -1087, -7282, -7724, -9006, -9007], - [1, 3, 3771], - [0, 3772, 3773, 3774, 6], - [0, -9008], - [0, -510, -1127, -9009, -1132, -1144, -1146, -2125, -2176], - [0, -2490, -1107], - [1, 3, 3776], - [0, 0, 3777, 7, 6], - [0, -2410, -3037], - [1, 3, 3779], - [0, 3780, 3781, 3782, 5], - [0, -668, -2562, -2523, -2557], - [0, -1127, -1131, -9010, -9011, -1542, -2425, -1144, -1151], - [0, -2557, -3970, -3161, -3095, -3577, -3994, -475], - [1, 3, 3784], - [0, 3785, 3786, 3787, 5], - [0, -668, -2218, -2562, -1548, -9012, -2557, -2425], - [0, -1693, -888, -664, -622, -1654, -2210, -932, -1650, -615, -1405, -719, -2211, -769, -1440, -665, -2070, -1657], - [ - 0, -2557, -475, -1168, -9013, -9014, -620, -478, -9015, -2162, -1521, -3184, -525, -9016, -2410, -711, -1409, - -9017, -2501, -932 - ], - [1, 3, 3789], - [0, 3790, 3791, 3792, 4], - [0, -1116, -1107, -2562, -727, -1548, -689, -9018, -9019, -2557], - [0, -888, -932, -1412, -1077, -9010, -9011, -958, -9020], - [0, -2557, -3970, -3100, -3994, -9021, -3095, -5574, -9022], - [1, 3, 3794], - [0, 0, 3795, 3796, 5], - [0, -3037, -932, -940, -967, -968, -1942, -2319, -2410], - [0, -9023, -9024, -7329], - [1, 3, 3798], - [0, 0, 3799, 3800, 10], - [0, -5325, -3037, -3899, -9025, -1942, -2200, -9026, -2410, -2469], - [0, -5925, -3262, -9027, -9028, -9029, -5112, -6917, -9030], - [1, 3, 3802], - [0, 0, 3803, 7, 11], - [ - 0, -21, -23, -40, -42, -3470, -3471, -7041, -3136, -3037, -427, -428, -9031, -9032, -528, -533, -534, -8167, - -932, -940, -948, -951, -958, -967, -969, -970, -972, -978, -1344, -9033, -1415, -1534, -1942, -2125, -2174, - -9034, -2410, -2501, -2503 - ], - [1, 3, 3805], - [0, 0, 3806, 7, 4], - [0, -9035, -9036, -9037, -9038, -1788], - [1, 3, 3808], - [0, 0, 115, 3809, 5], - [0, -7458, -5573, -9039, -1888, -9040, -9041, -9042, -729, -1805, -5149, -9043, -9044, -6555, -9045, -9046], - [1, 3, 3811], - [0, 0, 3812, 3813, 4], - [0, -3037, -826, -2541], - [0, -9047, -3972, -8428, -9048, -640, -5827, -1958, -2059], - [1, 3, 3815], - [0, 3816, 3817, 3818, 9], - [0, -9049, -1399], - [0, -3037, -519, -9050, -9051, -8877, -2384, -2541], - [0, -9052, -5827, -1961, -9048, -2265, -5554, -640, -2059, -6582, -9053, -8800, -9054, -7208, -9048], - [1, 3, 3820], - [0, 3821, 0, 3822, 4], - [0, -9055], - [0, -1101, -9052, -2410, -9056, -9057], - [1, 3, 3824], - [0, 0, 3825, 3826, 5], - [0, -3037, -427, -428, -7636, -932, -9058, -940, -967, -7638, -9059, -1942, -7639, -2402, -2410, -7640], - [0, -9060, -9061, -9062, -9063, -9064, -9065, -1102, -9066, -9067, -8995, -9068, -3966, -9069, -3694, -2410], - [1, 3, 3828], - [0, 3829, 3830, 3831, 8], - [0, -510, -1111, -1077, -719, -7731, -1046, -9070], - [0, -2359, -664, -1654, -2210, -932, -9071, -9072], - [0, -5889, -1103, -1105], - [1, 3, 3833], - [0, 3834, 3835, 3836, 5], - [0, -5504, -9073, -9074, -9075, -1849, -9076], - [ - 0, -528, -664, -9077, -708, -720, -796, -932, -9078, -951, -958, -964, -1654, -1658, -1788, -1972, -2174, -2210, - -2211, -9079, -2449 - ], - [0, -5889, -3322, -9080], - [1, 3, 3838], - [0, 0, 3839, 3840, 8], - [ - 0, -5870, -40, -9081, -9082, -9083, -4062, -351, -3561, -3266, -4785, -664, -932, -943, -958, -966, -968, -1471, - -1474, -1475, -1476, -1479, -1482, -1483, -1486, -1487, -1489, -7759, -1654, -2127, -3571, -2162, -2210, -2211 - ], - [0, -1105, -5248, -3100, -3095], - [1, 3, 3842], - [0, 3843, 3844, 7, 4], - [0, -1645, -9084, -9085], - [0, -3037, -928, -1623, -1650, -1942, -2125, -2319, -2386, -2402], - [1, 3, 3846], - [0, 3847, 125, 3848, 9], - [0, -1393], - [0, -1107, -8807, -6817, -1847, -9086, -7421, -3956, -9087], - [1, 3, 3850], - [0, 3851, 31, 7, 8], - [0, -9088, -1958], - [1, 3, 3853], - [0, 0, 3854, 3855, 4], - [0, -6593, -519, -674, -959, -1098, -9089, -8345, -1772, -1821, -1978, -2195, -2384, -2400, -2541], - [0, -1110, -1109, -9090, -3591, -3592, -1452, -932, -9091], - [1, 3, 3857], - [0, 3858, 3859, 3860, 8], - [0, -8413, -1026, -1353, -7408, -2218, -8803], - [0, -3037, -519, -589, -9092, -2331, -2384, -2541], - [ - 0, -9093, -5839, -7411, -7727, -6999, -7422, -7724, -5573, -9094, -7410, -1076, -1107, -9095, -9096, -7419, - -5572, -5912, -1645, -6809, -9097, -9098, -5574, -5064, -2368, -2444, -3590, -9087, -9099, -1961, -9100, -5889 - ], - [1, 3, 3862], - [0, 3863, 3864, 3865, 11], - [0, -812, -769, -9101, -9102], - [0, -510], - [0, -6524, -9103, -6527, -9104, -1355, -1112, -5845, -7450, -7378], - [1, 3, 3867], - [0, 3868, 3869, 3870, 4], - [0, -1729, -9105, -2387], - [0, -3037, -4201, -427, -428, -932, -9106, -958, -965, -968, -1942, -2402, -2410], - [ - 0, -9107, -9108, -9109, -9110, -9111, -9112, -3184, -4791, -1113, -9113, -9114, -8909, -9115, -4633, -9116, - -9117, -9118, -9119, -9120, -9121, -9122, -9123, -3445, -9124, -9125, -9126, -9127 - ], - [1, 3, 3872], - [0, 3873, 3874, 3875, 9], - [0, -3517, -9128], - [0, -50, -3037, -427, -428, -2758, -932, -934, -935, -958, -9129, -8846, -1722, -2892, -2410, -9130, -2469], - [0, -9131, -9132, -3939, -9133, -9134, -9135, -9136, -3690, -1115, -9137, -9138, -9139], - [1, 3, 3877], - [0, 3878, 3879, 3880, 8], - [0, -8846, -9140], - [ - 0, -9141, -3621, -9142, -9143, -3037, -9144, -6630, -4364, -4966, -4372, -3628, -9145, -9146, -652, -708, -767, - -999, -8869, -1166, -9147, -1446, -9148, -9149, -9150, -1654, -6455, -1705, -1722, -1783, -1805, -1827, -9151, - -1942, -1972, -2125, -2188, -2210, -2359, -2410, -2551 - ], - [0, -3939, -3690, -9152, -3323, -9153], - [1, 3, 3882], - [0, 3883, 3884, 3885, 5], - [0, -9154, -9155, -9156, -9157, -9158, -9159, -7006, -1495, -9160, -9161, -9162, -2400], - [ - 0, -9163, -5918, -357, -3268, -3617, -3037, -9164, -6279, -8852, -4372, -3626, -519, -523, -589, -615, -617, - -652, -9165, -9166, -9167, -825, -826, -1002, -1004, -1069, -5989, -1100, -1722, -1729, -1763, -1825, -9168, - -1866, -3653, -2062, -2105, -2210, -9169, -2331, -9170, -2364, -2392, -2410, -2541 - ], - [ - 0, -1334, -1342, -5735, -9052, -1116, -2435, -9171, -2105, -5493, -9172, -9173, -4213, -5149, -5150, -6826, - -6828, -9174, -9175, -9176, -9177, -523, -2291, -1729, -9128 - ], - [1, 3, 3887], - [0, 0, 3888, 3889, 4], - [ - 0, -1168, -2218, -2127, -784, -1821, -1889, -9178, -9179, -1783, -1978, -2281, -23, -518, -1930, -1330, -3572, - -40, -9180, -9181, -3326, -3266, -3561, -7189 - ], - [0, -9182, -3100, -4189, -3110], - [1, 3, 3891], - [0, 0, 3892, 3893, 4], - [0, -1362, -1650, -2125, -2319], - [0, -1076, -3551, -9183, -2122, -9184, -1986, -6324, -8980, -9185, -9186, -9187, -9188, -9189, -9190], - [1, 3, 3895], - [0, 0, 0, 3896, 8], - [0, -1122, -9191], - [1, 3, 3898], - [0, 33, 3899, 7, 5], - [0, -3035, -3621, -3037, -664, -1122, -1654, -2125, -2127, -2139, -2234, -9192, -2410], - [1, 3, 3901], - [0, 3902, 0, 7, 9], - [0, -9193, -2387], - [1, 3, 3904], - [0, 3905, 3906, 3907, 8], - [0, -1442, -8493, -9194, -9195], - [0, -9196, -8491, -711, -9197, -1016, -1075, -1202, -1646, -1654, -2362, -2460, -6234], - [ - 0, -9198, -9199, -710, -6582, -3671, -856, -7347, -9200, -9201, -1075, -9202, -3960, -3262, -1103, -5539, -3214, - -3259, -3756, -4182, -1599, -9203, -1838, -3215, -6747, -9204, -5142, -3110, -2362, -2548, -3672 - ], - [1, 3, 3909], - [0, 3910, 3911, 7, 9], - [0, -9205, -9206, -1551, -9073, -1696, -1969], - [0, -617, -9207, -1004, -9208, -1405, -1548, -1646, -1730, -9209], - [1, 3, 3913], - [0, 3914, 3915, 3916, 11], - [0, -1000, -1107, -1758, -1442, -1132, -1645, -808, -1351, -1048, -995, -9210, -9211, -9212], - [0, -9213, -2347, -9214, -1152, -9215, -1149, -1146], - [ - 0, -4107, -510, -687, -1644, -9216, -7641, -1548, -5119, -4004, -1989, -1754, -3844, -9217, -3970, -9218, -1410, - -3673 - ], - [1, 3, 3918], - [0, 3919, 3920, 3921, 5], - [0, -1323], - [0, -1127, -1132, -1140, -1134, -1136, -1144, -1146, -1148, -1165, -1138], - [0, -9219, -475, -3110, -3261, -9048], - [1, 3, 3923], - [0, 0, 3924, 49, 4], - [0, -1127, -1159, -1131, -1163, -664], - [1, 3, 3926], - [0, 3927, 3928, 3929, 9], - [0, -510, -633, -9220, -1107, -1548, -2114, -2491], - [0, -1127, -1132, -1134, -1144, -1654, -2210], - [0, -9219, -633, -1127], - [1, 3, 3931], - [0, 3932, 3933, 49, 6], - [0, -2177], - [0, -1127, -1129, -1134, -1144, -1146, -1150, -1159, -1542], - [1, 3, 3935], - [0, 3936, 207, 7, 4], - [0, -1758, -9221, -6007, -1381, -9212], - [1, 3, 3938], - [0, 3939, 3940, 3941, 5], - [0, -510, -506, -9222, -1366], - [0, -2541, -1127, -1753, -1132, -769, -1849, -9223, -2297, -1163, -1134, -1149], - [0, -9219, -5920, -5921, -9224, -7175, -6188, -9225, -6187, -5922, -9226], - [1, 3, 3943], - [0, 208, 3944, 3945, 10], - [0, -1127, -9071, -1144, -1143, -1146], - [0, -9219, -6688, -7416, -6694, -6693, -824, -6695, -7417, -2125], - [1, 3, 3947], - [0, 3948, 3949, 3950, 8], - [0, -510, -9227, -805, -9050, -2359, -2518], - [0, -1127, -1132, -1134, -1143, -1144, -1146, -1162], - [0, -9219, -9228, -3754, -2162, -775, -7644, -3277, -5553], - [1, 3, 3952], - [0, 3953, 126, 49, 4], - [0, -668, -2231], - [1, 3, 3955], - [0, 3956, 3957, 3958, 4], - [0, -1805, -510, -1676, -729, -5763, -2186, -2187, -7006, -9229], - [0, -1127, -1144, -1143, -1146], - [0, -9219, -3844, -729, -1334], - [1, 3, 3960], - [0, 3961, 3962, 49, 4], - [0, -668, -9230], - [0, -1127, -1132, -1134, -1143, -1144, -1146], - [1, 3, 3964], - [0, 3965, 127, 3966, 5], - [0, -668, -9231, -1548, -2271], - [0, -9219, -775, -7148, -9231], - [1, 3, 3968], - [0, 3969, 127, 3970, 8], - [0, -668, -683, -9232], - [0, -9219, -9233, -775, -5553, -3770, -3271, -1644, -6454], - [1, 3, 3972], - [0, 3973, 126, 3974, 4], - [0, -668, -1948, -1323], - [0, -9219, -3264, -9234, -1644, -6454, -7175], - [1, 3, 3976], - [0, 3977, 3978, 3979, 8], - [0, -668, -1356, -1826, -1877, -1948, -7691, -7692, -7690, -7687], - [0, -519, -825, -1127, -2541], - [0, -9219, -6454, -8642, -6527, -5094, -9235, -8640, -1644, -7715, -3839], - [1, 3, 3981], - [0, 3982, 207, 7, 5], - [0, -7446], - [1, 3, 3984], - [0, 3985, 3986, 49, 8], - [0, -668, -9236, -1452], - [0, -1127, -1143, -1146], - [1, 3, 3988], - [0, 3989, 3990, 49, 6], - [0, -1521, -510, -668, -1548], - [0, -1127, -1134, -1144, -9237, -1143, -1146], - [1, 3, 3992], - [0, 3993, 3994, 3995, 6], - [0, -9238], - [0, -1127, -1134, -1143, -1144, -2319], - [0, -9219, -1754, -4004, -4043], - [1, 3, 3997], - [0, 3998, 127, 3999, 8], - [0, -510, -668, -769, -805, -2518], - [0, -9219, -3754, -2162, -775, -7644, -3277, -5553], - [1, 3, 4001], - [0, 4002, 126, 49, 4], - [0, -668, -9232, -9239, -2416], - [1, 3, 4004], - [0, 4005, 4006, 4007, 6], - [0, -1088, -510, -1548, -2353], - [0, -1127, -1132, -1153, -2425, -1144, -1143, -1146], - [0, -9219, -2490, -1540], - [1, 3, 4009], - [0, 4010, 4011, 4012, 4], - [0, -668, -725, -739, -1877, -1980], - [0, -1127, -1131, -1132, -1134, -1138, -1144, -1146, -1151, -9240, -9241, -1153, -1159, -1542], - [0, -1127, -9219, -739, -6908, -5887, -1573], - [1, 3, 4014], - [0, 4015, 4016, 4017, 10], - [0, -668, -6019, -1877], - [0, -1127, -1131, -1132, -1134, -1144, -1146, -9240, -9242, -9241, -1153, -1159, -1542], - [0, -1127, -9219, -6019, -1105, -9243, -9244, -9245, -739, -6908, -5887, -1573], - [1, 3, 4019], - [0, 4020, 4021, 4022, 5], - [0, -668, -932], - [0, -190, -1127, -1132, -1162], - [0, -9219, -932, -7148, -5874, -9246], - [1, 3, 4024], - [0, 4025, 4026, 4027, 4], - [0, -9236, -1445, -1548, -9247], - [0, -1127, -1144, -1146, -1542, -2351], - [0, -9219, -1445, -8172, -7144], - [1, 3, 4029], - [0, 4030, 4031, 4032, 8], - [0, -769, -1446], - [0, -1127, -1134, -1146, -1152, -2778, -1542], - [0, -9219, -1127, -856, -4100, -1446, -7674], - [1, 3, 4034], - [0, 34, 4035, 4036, 11], - [ - 0, -86, -9248, -3307, -3470, -3471, -7041, -932, -943, -958, -966, -968, -974, -1003, -1127, -1131, -1149, - -1150, -1151, -1152, -1159, -1344, -1471, -1475, -1479, -1482, -1542, -1654, -2174 - ], - [0, -9219, -1471, -1127, -4004, -5119, -4043, -9249], - [1, 3, 4038], - [0, 4039, 4040, 209, 10], - [0, -9236, -1650], - [0, -664, -710, -1127, -1132, -9250, -1134, -1138, -1144, -9240, -9251, -9241, -9252, -1654, -2125], - [1, 3, 4042], - [0, 208, 4043, 4044, 10], - [0, -664, -1127, -9253, -1132, -1134, -1144, -1149, -1658, -2359, -2529], - [0, -6999, -1127, -9219, -9254], - [1, 3, 4046], - [0, 4047, 4048, 4049, 11], - [0, -2177, -9255, -2518], - [0, -664, -1132, -1144, -1149, -1156, -9256, -9257, -1542, -1654, -1972, -2351], - [0, -9219, -4127, -9258, -6721, -9259, -9260, -9261, -9262, -6324, -2489, -5886], - [1, 3, 4051], - [0, 0, 4052, 7, 10], - [0, -1127, -1131], - [1, 3, 4054], - [0, 0, 4055, 4056, 5], - [0, -1127, -1132, -1134, -1146, -2162, -2541], - [0, -9219, -775, -2162, -3754, -5553, -7644, -9263, -9264], - [1, 3, 4058], - [0, 4059, 4060, 4061, 4], - [0, -714, -1548, -1980, -9265, -9266, -5471], - [0, -1127, -1137, -1144, -1149, -1153, -9267, -1541, -1631, -8403], - [0, -9219, -1127, -5471, -4004, -1412, -1654, -1989, -9268], - [1, 3, 4063], - [0, 4064, 210, 4065, 11], - [0, -668, -1773, -2269], - [0, -9219, -5550, -3957, -7095, -8421, -7091, -6599, -1958, -687], - [1, 3, 4067], - [0, 27, 4068, 209, 9], - [0, -1127, -1144, -1654], - [1, 3, 4070], - [0, 4071, 4072, 4073, 11], - [0, -510, -9269, -9270, -2424, -9271], - [0, -932, -9272, -9273, -9274, -9275, -9276, -9277, -1127, -1132, -1157, -1654, -2125, -2194], - [0, -1127, -9219, -9278, -6527, -9279, -775, -9270, -7085], - [1, 3, 4075], - [0, 4076, 4077, 4078, 4], - [0, -668, -812, -1548, -1849], - [0, -1127, -1650, -2125, -1132, -1153, -9280, -1144], - [0, -9219, -9281, -3976, -3264, -775, -7175], - [1, 3, 4080], - [0, 4081, 4082, 4083, 5], - [0, -190, -427, -428, -668, -932, -940, -965, -967, -999, -1376, -1460, -1630, -1705, -1942, -2411, -2530], - [ - 0, -9282, -7080, -3330, -3048, -3049, -9283, -3621, -9143, -3037, -4372, -3628, -9284, -652, -769, -1077, -9285, - -9147, -1654, -2210, -2359, -2410 - ], - [0, -2410, -8170, -4144, -3939], - [1, 3, 4085], - [0, 0, 4086, 4087, 5], - [0, -9286, -4010, -367, -7043, -9287, -3136, -3037, -8477, -4203, -932, -1415, -1730, -1942, -2125, -2293, -2410], - [0, -1167, -3578, -3161, -3967, -1334, -3690, -3445], - [1, 3, 4089], - [0, 4090, 4091, 4092, 6], - [0, -9288, -9179, -9289, -2462], - [0, -932, -937, -966, -1001, -1650, -1654, -1788, -2125], - [0, -7641, -5827, -4219, -9218, -3673, -6342, -9290, -9291, -5921, -9292], - [1, 3, 4094], - [0, 4095, 72, 4096, 4], - [0, -1187, -9293, -1208, -1451, -1570, -1597, -8390, -2347], - [0, -7841, -1168, -475, -5175, -3501, -9294, -9295], - [1, 3, 4098], - [0, 4099, 4100, 4101, 4], - [0, -7850, -305, -994, -1199, -1243, -9296, -1267, -1650, -1875, -1959, -7881, -2125, -2177, -2330, -2460, -2462], - [0, -1178, -1654], - [0, -7841, -9297, -5550, -9298, -891, -1105], - [1, 3, 4103], - [0, 4104, 4105, 4106, 4], - [0, -518, -1236, -1889, -2464], - [0, -519, -1252, -1825, -2460, -2541], - [0, -7841, -518, -1889, -775, -5899, -9299, -3271, -9263, -9300], - [1, 3, 4108], - [0, 4109, 4110, 4111, 4], - [0, -3698, -479, -671, -1022, -9301, -1641, -1876, -2460], - [0, -664, -9302, -932, -1168, -1243, -1654, -1942], - [0, -7841, -5817, -5940, -8403], - [1, 3, 4113], - [0, 4114, 0, 4115, 4], - [0, -9303, -9304, -994, -1640, -1959, -1986, -9305, -2460, -2462, -2550], - [0, -7841, -5800, -8624, -6005], - [1, 3, 4117], - [0, 4118, 4119, 4120, 6], - [0, -2347, -2103, -1876, -2464], - [0, -2541, -1654, -2460, -1939, -23, -1252, -3352, -3362, -3373], - [0, -7841, -525, -3186, -4795, -8165, -6434, -9306, -9307, -4132, -9308, -9309, -3214, -3116], - [1, 3, 4122], - [0, 4123, 211, 4124, 5], - [0, -1236], - [0, -7841, -9310, -6472, -7154, -9311, -2443, -9312, -9313, -9314], - [1, 3, 4126], - [0, 4127, 4128, 4129, 4], - [0, -479, -622, -1022, -1376, -1876, -2347, -2460, -2487], - [0, -664, -994, -9315, -1220, -1231, -1452, -1654, -2125, -2210, -2211, -2261], - [0, -7841, -622], - [1, 3, 4131], - [0, 4132, 4133, 4134, 5], - [0, -633, -1266, -634, -2062, -2347], - [0, -1654, -664, -6398], - [0, -7841, -7419, -633], - [1, 3, 4136], - [0, 212, 4137, 4138, 4], - [0, -1654, -2460], - [0, -1168, -7841], - [1, 3, 4140], - [0, 4141, 72, 4142, 10], - [0, -9316, -1876, -9317, -2177, -2347], - [0, -1168, -6453, -2177, -7841, -9318, -9319, -9320, -9321], - [1, 3, 4144], - [0, 4145, 0, 4146, 8], - [0, -44, -9322, -753, -9323, -1876, -2347, -2460], - [0, -7841, -1168, -3324], - [1, 3, 4148], - [0, 4149, 4150, 36, 4], - [0, -2347, -1554], - [0, -1654, -2460, -2198], - [1, 3, 4152], - [0, 4153, 4154, 4155, 9], - [0, -9324, -1236, -2363], - [0, -519, -668, -824, -1040, -1100, -1168, -2460, -2541], - [0, -7841, -6656, -6999, -9325, -9254, -9326, -9327, -9328, -4123, -9329, -9330, -3324, -9331, -9332], - [1, 3, 4157], - [0, 4158, 114, 4159, 6], - [0, -1022, -1876, -2125, -2347, -2460], - [0, -7841, -6688, -6694, -6693], - [1, 3, 4161], - [0, 4162, 4163, 4164, 6], - [0, -683, -1876, -2347, -2464], - [0, -664, -9077, -756, -1004, -1022, -1168, -1187, -1243, -1248, -1252, -1654, -1788, -2460], - [0, -775, -6688, -1644, -9216, -683, -9333, -1229, -1184, -7841, -7419], - [1, 3, 4166], - [0, 4167, 213, 36, 10], - [0, -711, -1876, -2103, -2347, -2464], - [1, 3, 4169], - [0, 4170, 4171, 4172, 8], - [0, -1266, -2347, -2518], - [0, -756, -824, -1168, -1220, -1223, -1224, -1228, -1231, -1351, -9334, -1597, -1654, -2198], - [0, -1168, -7841, -9228, -3754, -2162, -775, -7644, -3277, -5553], - [1, 3, 4174], - [0, 4175, 4176, 36, 4], - [0, -2460, -2347, -6193], - [0, -1168, -1654, -2198, -1405, -7035, -2261, -1252, -1657], - [1, 3, 4178], - [0, 4179, 128, 4180, 4], - [0, -1554, -9335, -1876, -9336, -9337, -9338, -2347, -2460], - [0, -7841, -9048, -775, -6024, -1631, -9339], - [1, 3, 4182], - [0, 4183, 128, 4184, 9], - [0, -2347, -1266, -1376, -834], - [0, -7841, -3976, -9340, -9341, -3959, -3955, -9342], - [1, 3, 4186], - [0, 4187, 4188, 4189, 4], - [0, -2178, -729, -2353, -1022, -1597, -479, -2186, -2187, -9229], - [0, -1168, -1654, -2293, -1254, -710], - [0, -7419, -729, -1540, -9343, -3844], - [1, 3, 4191], - [0, 214, 4192, 4193, 4], - [0, -1168, -1415, -1942, -9078], - [0, -7841, -6351, -1168], - [1, 3, 4195], - [0, 4196, 4197, 4198, 4], - [0, -479, -9344, -1022, -1876, -2347], - [0, -1452, -1654, -2460], - [0, -7841, -775, -9344, -7148, -8170, -3277], - [1, 3, 4200], - [0, 4201, 4202, 4203, 4], - [0, -2460, -9231, -9345, -2347, -1022, -1876], - [0, -1788, -1654, -2210, -932, -2125, -2198, -756, -9346, -9347, -968, -943, -974, -942], - [0, -9231, -7841], - [1, 3, 4205], - [0, 4206, 4207, 4208, 4], - [0, -784, -6829, -1876, -1792, -2464], - [0, -2322, -2460, -2320, -1252], - [0, -784, -1644, -6059, -7192, -7193, -775, -7841, -1889], - [1, 3, 4210], - [0, 4211, 4212, 4213, 4], - [0, -2746, -1876, -2464], - [0, -2322, -2460, -2320], - [0, -7841, -1644, -775], - [1, 3, 4215], - [0, 4216, 4217, 4218, 5], - [0, -1876, -2347, -8899], - [0, -1452, -1980, -2198, -2460], - [0, -7841, -6582, -4055, -1168], - [1, 3, 4220], - [0, 4221, 4222, 4223, 9], - [0, -932, -1022, -1876], - [0, -1168, -1654, -2460, -2198, -1405, -528, -9348, -9349], - [0, -7841, -932, -1168, -8980, -9350, -7440, -6916, -707, -4144, -3756, -3214, -4107, -7148, -3862], - [1, 3, 4225], - [0, 4226, 4227, 4228, 8], - [0, -1460, -2460, -1015, -9351, -2347, -1876, -725, -9352], - [0, -1168, -1654, -2198, -1405, -1599], - [0, -7841, -6656, -9353, -8276, -1168, -3862], - [1, 3, 4230], - [0, 4231, 4232, 4233, 6], - [0, -2218, -1686, -1876, -9354, -9355], - [0, -2541, -519, -1168, -2460, -1825], - [0, -7841, -7724, -1353, -6656, -6999, -5572, -1645, -1107, -9095, -2460], - [1, 3, 4235], - [0, 215, 72, 4236, 5], - [0, -7841, -8395, -2239, -8423, -9356, -9357, -6917, -1168], - [1, 3, 4238], - [0, 214, 4239, 4240, 4], - [0, -1168, -1654, -2460, -2198, -1939, -933], - [0, -7841, -1168, -5841, -9358, -1847], - [1, 3, 4242], - [0, 4243, 27, 4244, 4], - [0, -9359, -2102, -9360, -2347], - [0, -6146, -3276, -4144, -1168, -7841, -1599, -3437, -3862, -9361, -3240, -2102], - [1, 3, 4246], - [0, 4247, 4248, 4249, 8], - [0, -668, -1266, -9362, -9363, -1792, -6370, -1877, -2347], - [0, -9364, -1849], - [0, -7841, -1082, -9362, -6656, -6999, -6931, -8576, -3844, -3323, -7764, -8901, -8902], - [1, 3, 4251], - [0, 4252, 4253, 4254, 4], - [0, -9365, -2125, -2462, -1266, -9366, -2062], - [0, -1654, -2460, -932, -1405, -9367, -1746, -1119, -1574, -9368, -9369], - [0, -5889, -5737, -5890, -9370, -8901, -8902, -8403, -9204, -3258, -1168, -7841, -1103, -841, -1105], - [1, 3, 4256], - [0, 4257, 4258, 4259, 5], - [0, -9371, -1022, -1548, -1876, -2109, -9372, -2460], - [0, -932, -1654, -1660, -2125, -2198], - [0, -1168, -5889, -9373, -7841, -9321], - [1, 3, 4261], - [0, 4262, 4263, 4264, 9], - [0, -479, -651, -1022, -1876, -9374, -2347], - [0, -1168, -1183, -1199, -1224, -1231, -1243, -7832, -1268, -1453, -1654, -9375, -2198], - [0, -6454, -7841, -6826], - [1, 3, 4266], - [0, 4267, 4268, 4269, 5], - [0, -1276, -1876, -2103, -2347], - [0, -2460, -1168, -1187, -9376, -9377, -9378, -1654, -9379, -2198], - [0, -7841, -1276], - [1, 3, 4271], - [0, 4272, 4273, 4274, 4], - [0, -6193, -1548, -1597, -2347], - [0, -664, -1168], - [0, -5147, -7841, -9380], - [1, 3, 4276], - [0, 4277, 4278, 4279, 10], - [0, -702, -2218, -615, -2461, -1792, -2062], - [0, -1654, -2460, -1405, -1266, -9348, -725, -9381, -2463], - [0, -7841, -3264, -8276], - [1, 3, 4281], - [0, 4282, 4283, 4284, 8], - [0, -2347, -1876, -1323], - [0, -1168, -1654, -2460, -1202], - [0, -3276, -1168, -7841, -9382, -3264, -9383, -6059, -6684, -1644], - [1, 3, 4286], - [0, 4287, 4288, 4289, 5], - [0, -4091, -9384, -7837, -9385, -9386, -9354, -9387, -9388, -9389], - [ - 0, -1168, -1415, -932, -2125, -9390, -4010, -1942, -367, -7043, -190, -720, -9391, -2410, -9392, -4007, -9393, - -2411, -959, -940, -967, -796, -740 - ], - [0, -7841, -1168, -3167, -3827], - [1, 3, 4291], - [0, 4292, 4293, 4294, 9], - [0, -2347, -9394, -9395], - [0, -1654, -1452, -1650, -2125, -2198, -2462, -1119, -908, -9396], - [0, -7841, -8978, -9397, -9398], - [1, 3, 4296], - [0, 4297, 4298, 4299, 11], - [0, -2347, -9394], - [0, -1452, -1654, -2198], - [0, -7841, -7724, -1645, -9353, -9399, -1199], - [1, 3, 4301], - [0, 4302, 4303, 36, 4], - [0, -510, -1548, -9400, -2347], - [0, -1112, -1168, -1183, -1231, -1224, -2150, -1453], - [1, 3, 4305], - [0, 4306, 4307, 4308, 4], - [0, -668, -1236, -1356, -1877, -1948], - [0, -519, -1357, -9401, -2460, -2541], - [0, -7841, -1356, -6527, -5094, -8634, -8635, -1644, -6684, -6454, -7715, -8640, -9235, -8642, -3839], - [1, 3, 4310], - [0, 4311, 4312, 36, 8], - [0, -479, -994, -1107, -1876, -2231, -2270, -2460, -2464], - [0, -1168, -1252, -1654, -2198, -2261], - [1, 3, 4314], - [0, 4315, 4316, 4317, 4], - [0, -506, -2347, -1022, -479, -9402, -1876, -9374, -930], - [0, -2541, -1344, -1654, -2460, -2198, -9403, -994, -86, -2174, -9404], - [0, -7841, -9405, -9406, -9407, -9408, -9409], - [1, 3, 4319], - [0, 4320, 4321, 4322, 4], - [0, -9410, -1876, -2347], - [0, -528, -756, -994, -1168, -1197, -1231, -1654, -1788, -2460], - [0, -7841, -9339, -775, -3264, -7920], - [1, 3, 4324], - [0, 4325, 4326, 4327, 9], - [0, -805, -1266, -9411, -1827, -2347, -2518], - [0, -664, -1654, -2251, -2541], - [0, -7841, -622, -1764, -1380], - [1, 3, 4329], - [0, 4330, 4331, 4332, 9], - [0, -1405, -9412, -1548, -1876, -2347, -2464], - [0, -1168, -1231, -1252, -9413, -1452, -1654, -2125, -2460], - [0, -7841, -4005, -1405, -9414], - [1, 3, 4334], - [0, 4335, 4336, 4337, 10], - [0, -1266, -1409, -2347], - [0, -1168, -2319, -1224], - [0, -1409, -7841, -5827, -7644], - [1, 3, 4339], - [0, 4340, 4341, 4342, 10], - [0, -506, -1412, -9415, -1876, -2347], - [0, -1168, -2460], - [0, -3440, -3161, -7841, -1412, -1989, -4043, -4679, -2319, -4873, -4004, -3634, -5119], - [1, 3, 4344], - [0, 4345, 4346, 4347, 4], - [0, -1445, -1876, -2347, -2350], - [0, -2261, -7423, -2460], - [0, -7841, -1445, -3214, -3217, -3756, -707, -5553, -5874, -7148, -3272, -7440, -7144], - [1, 3, 4349], - [0, 4350, 4351, 36, 8], - [0, -1548, -1645, -1876, -9345, -2347], - [0, -1168, -1452, -1654, -2198, -2460], - [1, 3, 4353], - [0, 4354, 4355, 4356, 5], - [0, -823, -831, -1440, -1876, -2347], - [0, -932, -937, -1168, -1654, -2198, -2460], - [0, -7841, -1168, -4055], - [1, 3, 4358], - [0, 4359, 4360, 4361, 5], - [0, -1521, -1792, -1876, -2103, -2347, -2464], - [0, -1452, -1654, -2198, -2460], - [0, -7841, -1168, -1521], - [1, 3, 4363], - [0, 4364, 4365, 4366, 8], - [0, -668, -812, -2460, -2353, -1022, -1550, -2062], - [0, -1654, -2210], - [0, -7841, -1540], - [1, 3, 4368], - [0, 4369, 4370, 4371, 5], - [0, -9416, -2114, -1022, -1639, -1048, -9417, -9418], - [0, -1654, -2210, -932, -1972, -9419, -965, -966, -958, -968, -943, -974], - [0, -7419, -1168, -4792, -6994, -9420], - [1, 3, 4373], - [0, 4374, 4375, 7, 10], - [0, -683, -1266, -1792, -2062, -9421, -2464], - [0, -664, -1654, -2460, -932, -1405, -1254, -9348, -1252, -9422, -9381, -9369], - [1, 3, 4377], - [0, 4378, 4379, 4380, 4], - [0, -7173, -2347, -1266], - [0, -664, -1168, -1654], - [0, -7841, -1644, -7175, -7192, -6454, -3264, -7173], - [1, 3, 4382], - [0, 4383, 211, 4384, 5], - [0, -805, -999, -1236, -1654, -2297], - [0, -7841, -1654, -4004, -3634, -5119, -3161, -4043, -4873, -3440, -1989, -4679, -2319], - [1, 3, 4386], - [0, 4387, 4388, 4389, 10], - [0, -9423, -1107, -1876], - [0, -664, -1168, -1654, -2460, -932, -1658, -9072], - [0, -1168, -7841, -9254, -9329], - [1, 3, 4391], - [0, 4392, 72, 4393, 5], - [0, -9424, -1631, -9425, -1876, -2347, -2464], - [0, -7841, -475, -5175, -4668, -9425], - [1, 3, 4395], - [0, 4396, 4397, 4398, 11], - [0, -714, -1168, -1753], - [0, -710, -1224, -1231, -8419, -1452, -2198], - [0, -1168, -1753, -9426, -3844, -9427, -8442, -2490, -7419, -7841], - [1, 3, 4400], - [0, 4401, 4402, 4403, 10], - [0, -1548, -2347, -1022, -479, -1750, -1876, -1737], - [0, -1168, -1654, -2460, -2198, -1237], - [0, -7841, -9258, -1168, -4127, -6863, -9428, -9429, -9262, -9430, -6721], - [1, 3, 4405], - [0, 4406, 4407, 4408, 4], - [0, -7837, -668, -9431], - [0, -519, -1825, -2410, -2460, -2541], - [0, -1168, -3862, -8112, -8113], - [1, 3, 4410], - [0, 4411, 4412, 36, 9], - [0, -668, -2347, -1022, -1876], - [0, -2541, -1168, -1654, -2198, -2346, -1405, -756, -994, -1657], - [1, 3, 4414], - [0, 4415, 4416, 4417, 9], - [0, -1022, -1876, -1907, -2464], - [0, -1788, -1654, -2210, -2460, -932, -1889, -1972, -1252], - [0, -7841, -1889, -9300, -775], - [1, 3, 4419], - [0, 4420, 4421, 4422, 4], - [0, -9263], - [0, -1654, -2987, -8065, -2460], - [0, -9432, -711, -8978, -812, -9433, -5558, -9399, -9321, -7841, -3264, -9434, -9435, -9353, -3214, -3277], - [1, 3, 4424], - [0, 4425, 4426, 4427, 5], - [0, -994, -1376, -1570], - [0, -507, -932, -9436, -1376, -1654, -1972, -2463], - [0, -7841, -1965], - [1, 3, 4429], - [0, 4430, 4431, 4432, 10], - [0, -1266, -1792, -2054, -2347, -2464], - [0, -1252], - [0, -7841, -2006, -4146, -6408, -8530, -3110, -3261, -6107, -9437, -9438, -7644], - [1, 3, 4434], - [0, 4435, 4436, 4437, 11], - [0, -994, -1750, -2105, -2347, -2460], - [0, -1168, -1262, -1183], - [0, -7841, -8908, -9439], - [1, 3, 4439], - [0, 0, 4440, 36, 10], - [0, -1168, -1252, -1597, -1654, -1942, -2198, -2460], - [1, 3, 4442], - [0, 4443, 4444, 4445, 9], - [0, -3037, -7837, -2551, -9440, -7622], - [0, -1654, -2460, -2198, -2379, -8255, -2410, -725], - [0, -7841, -8276], - [1, 3, 4447], - [0, 4448, 4449, 4450, 8], - [0, -1236, -9441, -9442, -9443, -9444, -2460, -9445], - [0, -519, -1825, -2541], - [0, -7841, -9446, -9447, -9448, -6131, -7175, -9318, -9319, -3324, -9449, -5142, -6342, -9450], - [1, 3, 4452], - [0, 215, 4453, 4454, 4], - [0, -994, -1199, -1245, -1654, -2460], - [0, -7841, -9446, -9448, -9318, -8276, -6342], - [1, 3, 4456], - [0, 4457, 4458, 4459, 5], - [0, -668, -742, -769, -805, -9451, -930, -1022, -1107, -4089, -9452, -1849, -1876, -2103, -2125, -2460], - [0, -1168, -1252, -9445], - [0, -7841, -3754, -2162, -775, -7644, -3277, -5553, -9453, -2231, -9454, -6915, -9455], - [1, 3, 4461], - [0, 4462, 4463, 4464, 6], - [0, -1863, -2269, -2103, -1876, -1552, -2464], - [0, -1168, -2162, -1654, -2460, -932, -2125, -9008, -1889, -7832, -1743, -518, -1238, -3572, -1252, -958, -934], - [0, -7841, -2162, -1168], - [1, 3, 4466], - [0, 4467, 0, 4468, 5], - [0, -510, -1266, -1792, -6370, -2246, -2347], - [0, -7841, -9456, -6656, -6999, -6931, -8576, -3844, -3323, -7764, -8901, -8902], - [1, 3, 4470], - [0, 4471, 4472, 4473, 5], - [0, -668, -1022, -1570, -1876, -2347, -2387], - [ - 0, -9457, -9392, -3136, -9458, -3037, -7836, -427, -428, -756, -932, -940, -959, -1168, -1415, -1942, -2375, - -2379, -2410, -2460 - ], - [0, -7841, -1168, -5550, -3957], - [1, 3, 4475], - [0, 4476, 216, 4477, 10], - [0, -9459, -668, -1022, -1236, -1273, -1948], - [0, -7841, -1044, -6656, -8799, -1573, -9460, -4676, -812, -6826, -6828], - [1, 3, 4479], - [0, 4480, 4481, 4482, 4], - [0, -9461, -9462, -461, -742, -775, -9463, -8888, -1119, -2231, -9195, -2347], - [ - 0, -620, -932, -937, -1001, -1168, -1187, -1212, -1226, -1228, -9464, -1405, -9381, -9465, -1654, -1792, -2125, - -2460 - ], - [0, -7841, -1168, -9466, -9455], - [1, 3, 4484], - [0, 4485, 216, 4486, 4], - [0, -23, -1236, -9467], - [0, -7841, -6817, -6694, -6693, -6688, -812, -7336, -4000, -1573, -5545, -3756, -3214, -3217, -3272, -987], - [1, 3, 4488], - [0, 4489, 213, 4490, 4], - [0, -9468, -1550, -1876, -2103, -2286, -2347, -2464], - [0, -1168, -2286, -775, -3277, -7841, -9321], - [1, 3, 4492], - [0, 4493, 4494, 4495, 4], - [0, -1876, -2302], - [0, -1107, -1168, -9469, -1654, -9470, -2460, -2541], - [ - 0, -7841, -3167, -3843, -3839, -7715, -9278, -9279, -9471, -3262, -775, -2162, -1521, -2286, -3271, -9339, - -3264, -9472, -9473, -9474, -1689 - ], - [1, 3, 4497], - [0, 4498, 4499, 4500, 5], - [0, -1552, -1876, -2303], - [0, -21, -23, -40, -43, -519, -756, -767, -825, -1788, -1942, -2460, -2541], - [0, -7841, -1644, -3839, -2303], - [1, 3, 4502], - [0, 4503, 4504, 4505, 4], - [0, -674, -1022, -1876, -2460], - [0, -1045, -1168, -1217, -1654, -1978, -2187, -2210], - [0, -7841, -3839, -3167, -9278], - [1, 3, 4507], - [0, 4508, 4509, 4510, 9], - [0, -1236, -1548], - [0, -519, -1196, -2460, -2541], - [0, -7841, -1548, -2424, -3110, -7644, -3264, -7650, -9475, -9438], - [1, 3, 4512], - [0, 4513, 4514, 4515, 4], - [0, -479, -1022, -2346, -2460], - [0, -9392, -3037, -9476, -7837, -8890, -9457, -2125, -1168, -1231, -2410], - [0, -7841, -2410, -3214, -9477], - [1, 3, 4517], - [0, 4518, 4519, 4520, 9], - [0, -9457, -479, -1022, -1597, -1876, -2346], - [0, -9478, -3037, -9476, -1168, -1187, -1261, -2388, -2410], - [0, -1168, -2410, -3862, -3018, -7841, -7419, -2388, -8170, -7148], - [1, 3, 4522], - [0, 4523, 4524, 4525, 4], - [0, -2460, -2347, -2462, -2231, -479, -1876], - [0, -1168, -2125, -9479, -2410, -3037, -1187, -1208, -7837, -1237, -1632, -7836, -7838, -1252, -9480], - [0, -2410, -7841, -9481, -3018, -5058, -7644, -3116, -3185], - [1, 3, 4527], - [0, 4528, 4529, 36, 9], - [0, -9416, -1403, -2347, -2416, -9482, -9417, -2155, -1016, -9483, -2464], - [0, -2322, -2460, -932, -1942, -9484, -2341, -1938, -9485, -945, -978, -940, -967, -9486], - [1, 3, 4531], - [0, 4532, 122, 4533, 5], - [0, -1266, -1792, -9487], - [0, -7441, -775, -7841], - [1, 3, 4535], - [0, 4536, 4537, 4538, 5], - [0, -1107, -1187, -1876, -2347, -2460], - [0, -994, -2462, -1168, -1224, -1231, -1262, -1210, -1184, -1245, -1226, -1452], - [0, -7841, -9281, -1264], - [1, 3, 4540], - [0, 4541, 4542, 4543, 4], - [0, -1107, -1015, -9488, -1212, -2347, -2462, -1187, -994, -1876], - [0, -1788, -1168, -1654, -2460, -756, -9489, -1231, -1197, -1243, -528, -9490], - [0, -7841, -3264, -9408, -775, -7175, -9048], - [1, 3, 4545], - [0, 4546, 4547, 7, 6], - [ - 0, -9491, -9492, -9493, -668, -808, -1022, -9416, -9417, -9494, -9495, -9496, -1570, -1646, -4091, -1792, -2103, - -2347, -2460 - ], - [0, -641, -756, -994, -1405, -9381, -1452, -9497, -1654, -2125, -2198], - [1, 3, 4549], - [0, 4550, 4551, 4552, 8], - [0, -1986, -2346, -2347, -2460, -2462, -2555, -9498], - [0, -1654, -2250, -2330], - [0, -1168, -7841, -9498, -9499, -5408, -8027, -2460, -9500], - [1, 3, 4554], - [0, 4555, 4556, 4557, 4], - [0, -479, -9501, -679, -1022, -1108, -1792, -1850, -1876, -2062, -2218, -2460, -9445], - [0, -756, -1405, -1654, -1657, -1972, -2125, -2198, -2210, -2261, -2269, -2541], - [0, -1168, -2490, -7841], - [1, 3, 4559], - [0, 4560, 0, 4561, 4], - [0, -1626, -2460, -2346, -2501, -1266], - [0, -7841, -2501], - [1, 3, 4563], - [0, 4564, 4565, 4566, 8], - [0, -729, -9229, -1266, -1402, -1750, -1805, -9502, -2186, -2187, -2347, -2353, -2490], - [0, -1654, -2293], - [0, -7841, -9343, -729, -1540], - [1, 3, 4568], - [0, 4569, 4570, 4571, 5], - [0, -1100, -1236, -2460, -9498], - [0, -519, -7342, -9431, -1168, -1825, -9503, -9445, -2541], - [0, -7841, -5408, -5409, -501, -6454, -724, -6656], - [1, 3, 4573], - [0, 4574, 4575, 4576, 5], - [0, -9271, -510, -2460, -2347, -1645, -2424, -9270, -9269], - [0, -1168, -1654, -932, -2125, -9273, -9504, -1195, -1632, -2461, -1215, -9505, -9274, -9275, -9272], - [0, -7841, -9270, -9278, -9279], - [1, 3, 4578], - [0, 4579, 4580, 4581, 11], - [0, -883], - [0, -519, -1825, -2384, -2541], - [0, -3994, -3673, -9506, -6826, -9507, -8799, -2265, -640], - [1, 3, 4583], - [0, 4584, 4585, 4586, 4], - [ - 0, -9508, -9509, -9510, -9511, -2093, -9512, -9513, -2095, -4655, -4994, -9514, -9515, -9516, -9517, -9518, - -9519, -9520, -9521, -9522, -9523, -9524, -9525, -9526, -9527, -9528, -9529, -9530, -5707, -9531, -9532, -9533, - -9534, -9535, -9536, -9537, -6368, -2297, -9538, -9539 - ], - [0, -350, -4062, -351, -3266, -827, -9540, -2127, -2250, -2322, -2331], - [0, -1599, -856, -3671, -4328, -5887, -7440, -9541, -8170, -7148, -8169, -1274, -2093, -2427], - [1, 3, 4588], - [0, 0, 4589, 4590, 10], - [0, -9542, -9543, -1127, -7887, -1136, -1137, -1144, -9544, -1148, -1149, -1153, -9545, -9546], - [0, -2363, -9547], - [1, 3, 4592], - [0, 4593, 4594, 4595, 8], - [0, -1646, -9548, -2231, -2525, -2416], - [ - 0, -3983, -521, -534, -567, -589, -664, -9549, -726, -838, -879, -6897, -6867, -932, -940, -952, -953, -1077, - -1127, -5974, -1132, -1134, -1136, -1137, -1138, -9550, -1148, -1149, -1162, -7848, -1344, -6785, -1534, -1654, - -1661, -1689, -1788, -1942, -2177, -2210, -2410, -2424, -2501, -2505 - ], - [0, -1276, -1689, -3110, -3264], - [1, 3, 4597], - [0, 4598, 4599, 155, 5], - [ - 0, -1435, -9551, -619, -6508, -1309, -9552, -9553, -9554, -9555, -5400, -9556, -9557, -9558, -9559, -9560, - -9561, -9562, -9563 - ], - [0, -1510, -707, -1367, -9564, -9565, -1276], - [1, 3, 4601], - [0, 4602, 4603, 4604, 6], - [0, -6594, -3037, -4204, -3223, -6587, -2531], - [0, -3665, -7197, -2410, -2469, -4375], - [0, -1449, -5092, -4865, -3586, -9566, -3578, -3098, -3264, -5388, -5387], - [1, 3, 4606], - [0, 0, 14, 4607, 4], - [ - 0, -8047, -7440, -6659, -6543, -5573, -9567, -687, -3958, -4378, -1958, -502, -4377, -6748, -7303, -9568, -1646, - -1813 - ], - [1, 3, 4609], - [0, 0, 4610, 4611, 4], - [0, -2832, -5834, -8084, -9569, -8096, -516, -753, -5835, -932, -9570, -1365, -1777, -1788, -2156, -2322], - [0, -6981, -8619, -9571, -9572, -3582, -5269, -753, -6948], - [1, 3, 4613], - [0, 0, 4614, 7, 5], - [0, -1452, -1453, -1548, -2322], - [1, 3, 4616], - [0, 4617, 4618, 4619, 10], - [0, -9573], - [0, -2832, -5834, -8084, -9574, -9575, -8096, -515, -516, -932, -993, -1365, -1659, -1777, -1788, -2156, -2322], - [0, -8047, -9576, -9577, -9578, -9579, -8047, -7153, -9580, -3214, -3217], - [1, 3, 4621], - [0, 4622, 4623, 4624, 8], - [0, -5334, -4231, -9581, -9582, -2768, -2771, -1619, -1839, -9583, -2429, -5358, -9584, -9585], - [0, -3037, -9586, -652, -1290, -1294, -1618, -1942, -9587, -2094, -2100, -2399, -2410, -7669, -2541], - [0, -9588, -9589, -3264, -9590, -3590, -2444, -1838, -9591], - [1, 3, 4626], - [0, 4627, 4628, 4629, 4], - [0, -5334, -9581, -9583], - [ - 0, -3037, -9586, -9592, -652, -823, -2586, -1290, -1294, -1318, -9593, -1942, -2094, -2100, -2399, -2410, -7669, - -2429, -2541 - ], - [0, -6688, -9588, -9589, -3264, -9594, -7723, -3590, -2444, -9590, -2544], - [1, 3, 4631], - [0, 4632, 4633, 4634, 9], - [0, -5334, -4231, -9595, -2742, -5981, -9596, -9597, -4263, -1292, -2769, -2788, -1968, -2235, -2429, -9585], - [0, -3037, -652, -1294, -1942, -2094, -2100, -2399, -2410, -7669, -2541], - [0, -775, -9588, -9589, -3264, -5572, -3581, -5101, -9598, -3585, -6750, -9590, -3590, -2444], - [1, 3, 4636], - [0, 4637, 4638, 4639, 5], - [0, -426, -8316, -5334, -2742, -9596, -9599, -9600, -2769, -9601, -9602, -9603, -1968, -2235, -2276, -9583, -9585], - [ - 0, -3037, -6426, -652, -9604, -5342, -989, -1294, -1618, -5204, -1619, -5205, -1942, -2094, -2100, -2399, -2410, - -2429, -2541 - ], - [0, -5888, -3217, -5210, -9588, -9589, -3264, -3214, -4146, -4147, -2083, -6408, -9590, -3590, -2444], - [1, 3, 4641], - [0, 4642, 217, 4643, 6], - [0, -5334, -4231, -9605, -2742, -2769, -2771, -1619, -1968, -2235, -2268, -9585], - [0, -9588, -9589, -3264, -6233, -6231, -9606, -9590, -3590, -2444], - [1, 3, 4645], - [0, 4646, 4647, 4648, 4], - [0, -426, -5334, -4231, -2742, -9596, -9600, -2769, -9601, -9602, -9603, -1968, -2235, -2276, -9583, -6648], - [0, -3037, -3040, -3052, -652, -928, -5343, -1294, -1942, -2006, -2019, -2094, -2100, -9607, -2399, -2410, -2541], - [0, -9588, -9589, -3264, -1940, -2006, -9608, -2299, -9590, -3590, -2444, -2476], - [1, 3, 4650], - [0, 87, 0, 4651, 4], - [0, -5398, -9589, -9588, -3264, -6233, -2265, -6231, -5554, -9590, -2444, -3590], - [1, 3, 4653], - [0, 4654, 217, 4655, 4], - [0, -5334, -4231, -2766, -9609], - [0, -9590, -9589, -9588, -2444, -3590, -3264, -2265, -5398, -5554, -4308], - [1, 3, 4657], - [0, 4658, 4659, 4660, 4], - [0, -5334, -2742, -2767, -1968, -2235], - [0, -3037, -6426, -652, -9604, -9610, -5342, -1942, -2094, -2100, -9611, -2384, -2399, -2410, -2541], - [0, -5092, -6311, -9588, -9589, -3264, -9612, -2083, -9590, -3590, -2444, -9613, -9614], - [1, 3, 4662], - [0, 4663, 4664, 7, 8], - [0, -2487, -1276], - [0, -1788, -1654, -932, -2125, -2293, -963], - [1, 3, 4666], - [0, 0, 4667, 4668, 5], - [0, -6774, -1127, -1132, -1162, -6114, -1405, -1451, -1548, -6186, -1991, -2081, -9615, -2111, -9616], - [0, -2265, -3223, -8034, -3264, -6422, -6420, -4112], - [1, 3, 4670], - [0, 4671, 4672, 7, 4], - [0, -1696], - [0, -2195, -2319], - [1, 3, 4674], - [0, 0, 0, 4675, 4], - [ - 0, -1004, -7107, -5146, -3445, -9617, -9618, -9619, -9620, -9621, -9622, -9623, -9624, -9625, -9626, -9627, - -9628, -9629, -9630 - ], - [1, 3, 4677], - [0, 0, 4678, 7, 9], - [0, -2303, -2125, -1942, -656, -2699, -23, -9631, -3408], - [1, 3, 4680], - [0, 0, 4681, 7, 11], - [0, -43, -40, -6056, -6035, -527, -21, -23, -528, -533, -856, -932, -956, -958, -959, -1415, -1417], - [1, 3, 4683], - [0, 4684, 4685, 4686, 5], - [ - 0, -9632, -615, -9633, -9634, -9635, -9636, -9637, -9638, -9639, -9640, -1442, -9641, -1639, -9642, -1666, - -1667, -1783, -1863, -6467, -2269, -2350, -9643, -9644 - ], - [ - 0, -9645, -5767, -3035, -4035, -3660, -4036, -3621, -3037, -9144, -4372, -9646, -652, -664, -674, -3542, -932, - -9647, -9648, -1344, -1534, -1654, -2210, -2379, -2410 - ], - [0, -3258, -3260, -7643, -3161, -1302], - [1, 3, 4688], - [0, 4689, 4690, 7, 8], - [0, -9649], - [ - 0, -615, -633, -634, -725, -932, -1127, -1130, -1131, -1146, -1148, -1149, -1152, -9650, -1159, -1276, -1754, - -2148, -9651, -2199, -2210, -7035, -9652, -2416 - ], - [1, 3, 4692], - [0, 0, 4693, 4694, 4], - [ - 0, -775, -824, -1107, -8318, -1449, -1654, -932, -1548, -2127, -2198, -2334, -683, -693, -719, -1276, -2410, - -1339, -9653, -3621, -7694, -9654, -5758, -9655, -9656, -966, -4062, -9657, -958, -968, -943, -350, -428, -351, - -427 - ], - [0, -4131, -4132], - [1, 3, 4696], - [0, 218, 0, 7, 4], - [1, 3, 4698], - [0, 39, 0, 4699, 5], - [0, -1306, -8938], - [1, 3, 4701], - [0, 0, 219, 4702, 4], - [0, -8113], - [1, 3, 4704], - [0, 4705, 4706, 4707, 5], - [0, -1758, -1650], - [0, -2416, -1449, -9658, -2125], - [0, -1689, -3110], - [1, 3, 4709], - [0, 4710, 4711, 41, 10], - [0, -2029], - [ - 0, -23, -26, -40, -41, -43, -664, -756, -761, -932, -1654, -1788, -1939, -1967, -2006, -2125, -2127, -2128, - -2131, -2137, -2140 - ], - [1, 3, 4713], - [0, 4714, 4715, 7, 8], - [0, -668, -2177, -1077, -719, -9659, -1982, -2234], - [ - 0, -1415, -932, -2125, -1753, -2375, -2379, -2402, -2410, -3136, -3037, -3198, -3199, -3048, -959, -958, -9660, - -428, -9661, -427 - ], - [1, 3, 4717], - [0, 0, 4718, 4719, 5], - [ - 0, -9662, -4835, -3036, -4647, -3037, -8200, -3664, -502, -9663, -9664, -928, -932, -1107, -1449, -1683, -1763, - -9665, -8436, -1942, -2910, -2410, -2426, -9666, -2469, -9667, -2531, -2564 - ], - [0, -1313, -3578, -3994, -1334, -9668, -3161, -3122, -9669, -9670, -9671, -9672, -9060, -7314, -5819, -3967], - [1, 3, 4721], - [0, 4722, 29, 4723, 6], - [0, -1582], - [0, -5889, -1105, -7660, -7661], - [1, 3, 4725], - [0, 4726, 86, 4727, 6], - [0, -725, -1650, -2125, -2177, -2433, -2518, -9673], - [0, -9674, -9675, -9676, -9677, -1764], - [1, 3, 4729], - [0, 4730, 4731, 4732, 6], - [0, -6585, -1333], - [ - 0, -86, -3307, -3615, -190, -4066, -350, -351, -3266, -3267, -9678, -4862, -9679, -3037, -5286, -2970, -3664, - -932, -967, -4814, -977, -1110, -1323, -1344, -7317, -1449, -1534, -1772, -1874, -1942, -2910, -2127, -2214, - -2379, -2410, -2411, -2469 - ], - [0, -1317, -3264, -5092, -3215, -1333, -9680], - [1, 3, 4734], - [0, 0, 4735, 4736, 9], - [0, -3037, -652, -2586, -1288, -1292, -1942, -2094, -2100, -2399, -2410, -2426, -2541], - [0, -9681, -9682, -3264, -6557, -7153, -6818, -5387, -5388], - [1, 3, 4738], - [0, 4739, 4740, 4741, 4], - [0, -9683], - [0, -7196, -932, -1110], - [0, -5835, -3264], - [1, 3, 4743], - [0, 0, 4744, 4745, 5], - [ - 0, -86, -3307, -3268, -9684, -3136, -3037, -589, -3223, -932, -940, -958, -9685, -1297, -1344, -1942, -2251, - -2375, -2386, -2392, -2410, -2411 - ], - [0, -3264, -9686, -9687, -9688, -3223, -9689, -9690], - [1, 3, 4747], - [0, 0, 4748, 4749, 11], - [0, -9691, -652, -756, -2127, -2415], - [0, -3264, -5559, -6422, -9692, -6420, -3223], - [1, 3, 4751], - [0, 4752, 4753, 4754, 5], - [0, -1839, -1324], - [ - 0, -824, -1415, -1344, -1623, -774, -932, -825, -2501, -920, -1936, -1942, -767, -21, -533, -1276, -23, -1534, - -1771, -9693, -86, -2251, -9694, -40, -1331, -958, -940, -3307, -7166 - ], - [0, -2501, -3264, -5932], - [1, 3, 4756], - [0, 4757, 4758, 4759, 5], - [0, -6512, -683, -719, -1297, -6560, -9695, -2416], - [0, -1127, -1130, -1148, -1152, -1860, -1989], - [ - 0, -687, -6454, -9696, -775, -3264, -9383, -3214, -9234, -6059, -6684, -1644, -7175, -7176, -7858, -9697, -1838, - -3215, -9698, -9216 - ], - [1, 3, 4761], - [0, 4762, 4763, 4764, 4], - [0, -6512, -683, -719, -3223, -6560, -9695, -2334], - [ - 0, -86, -5121, -350, -4062, -351, -3266, -9699, -9700, -932, -943, -1344, -1392, -1415, -1419, -1534, -2127, - -9701, -2466 - ], - [ - 0, -687, -6454, -9696, -775, -3264, -9383, -3214, -9234, -6059, -6684, -1644, -7175, -7176, -7858, -9697, -1838, - -3215, -2334, -9698, -9216 - ], - [1, 3, 4766], - [0, 4767, 4768, 4769, 9], - [0, -1860], - [0, -2322, -2250, -2320, -1860], - [0, -3264, -6528, -1858, -1859, -3967], - [1, 3, 4771], - [0, 4772, 4773, 4774, 4], - [0, -6585, -1317, -2039, -2276], - [ - 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -3267, -9678, -3268, -3037, -3040, -3052, -5286, -2970, - -3664, -589, -932, -967, -4814, -977, -1110, -1344, -1534, -1874, -1940, -2910, -2006, -2019, -2127, -2214, - -2379, -2410, -2411, -2469 - ], - [0, -1326, -3264, -2006, -3215, -5092], - [1, 3, 4776], - [0, 0, 4777, 4778, 5], - [0, -519, -674, -2541], - [0, -3264, -5177, -9702, -9566, -4108, -5388, -5387, -9703, -9704], - [1, 3, 4780], - [0, 0, 4781, 4782, 10], - [ - 0, -1344, -1392, -1471, -2387, -932, -2125, -2127, -1942, -756, -1870, -2410, -1771, -1413, -1952, -1481, -9705, - -1476, -9706, -8382, -7818, -1491, -9707, -9708, -1475, -9709, -3469, -9710 - ], - [0, -9711, -9712, -659, -3264, -5092, -6527, -9472, -3839], - [1, 3, 4784], - [0, 4785, 0, 4786, 5], - [0, -9713, -823, -861, -1333, -9714], - [0, -3264, -3966, -5554, -9715, -9716, -6473], - [1, 3, 4788], - [0, 4789, 0, 4790, 5], - [0, -9717, -9718, -469, -1107, -1496, -1646, -1966, -2177], - [0, -3264, -7148, -2451, -1330], - [1, 3, 4792], - [0, 4793, 4794, 4795, 9], - [0, -9719, -1324, -1548, -1949, -2321], - [ - 0, -86, -3307, -3037, -767, -774, -778, -796, -9071, -932, -7466, -1322, -1344, -1415, -1534, -1643, -1771, - -1942, -1974, -9720, -2000, -2125, -2251, -2275, -2410, -2501, -2503, -9721 - ], - [0, -2501, -3862, -3264, -1331], - [1, 3, 4797], - [0, 4798, 4799, 4800, 4], - [0, -9722, -719, -755, -1936], - [ - 0, -190, -3748, -7155, -3621, -3037, -9723, -652, -784, -932, -6835, -958, -8339, -9724, -1001, -1110, -1654, - -1889, -1979, -9695, -2125, -9725, -2303, -2334, -2410, -2411, -9487 - ], - [0, -1936, -9726, -3264, -9727, -6684], - [1, 3, 4802], - [0, 4803, 4804, 4805, 5], - [0, -7713, -6585, -6584, -3223], - [0, -190, -3037, -3664, -932, -940, -965, -978, -1110, -1942, -2386, -2410, -2411, -2469], - [0, -3264, -3215, -8027, -6597, -5092, -9728, -3484, -9297], - [1, 3, 4807], - [0, 4808, 129, 4809, 6], - [0, -828, -1370, -8441, -2255, -9729], - [0, -1334, -6324], - [1, 3, 4811], - [0, 4812, 4813, 7, 10], - [0, -996, -9730, -1063], - [0, -2531, -1788, -9731, -510, -1654, -2177, -1003, -2228, -725, -516, -2229], - [1, 3, 4815], - [0, 4816, 4817, 4818, 5], - [0, -9732, -812], - [0, -3198, -3136, -3037, -511, -1415, -2375, -2410, -1971, -9056], - [0, -1334, -1971, -8484, -9733], - [1, 3, 4820], - [0, 4821, 4822, 4823, 4], - [0, -4623, -812, -1336, -1393, -1396, -1639], - [ - 0, -86, -3307, -190, -3198, -3330, -3617, -9734, -3136, -4036, -3037, -4203, -4204, -617, -932, -940, -967, - -1004, -1098, -1110, -1344, -1415, -1534, -9735, -1805, -4916, -8436, -1942, -2293, -2375, -2410, -2411, -2531 - ], - [0, -7302, -1971, -5401, -1334, -1342, -729, -1004, -1030, -3548, -9736, -632, -1168, -1137, -2512, -2531, -754], - [1, 3, 4825], - [0, 4826, 4827, 4828, 4], - [0, -1297, -1640, -668, -9737, -9738, -1810, -1646, -2436, -579, -1336, -1888, -9739, -1319], - [0, -9740, -2319, -932, -1004, -2105, -9741], - [0, -687, -3957, -5142, -1334, -1342, -1339, -9742, -3844], - [1, 3, 4830], - [0, 0, 4831, 4832, 4], - [ - 0, -2391, -1344, -1654, -932, -2198, -2379, -1942, -190, -721, -2410, -3037, -1534, -7820, -3621, -9743, -86, - -2251, -9744, -2411, -964, -940, -967, -3307 - ], - [0, -1334, -729, -3100, -9745, -1004], - [1, 3, 4834], - [0, 0, 4835, 4836, 8], - [0, -3048, -3136, -9746, -427, -428, -932, -935, -958, -1077, -1415, -1605, -2375, -2378, -2379, -2410], - [0, -3966, -1334, -7827, -9747, -9748, -9745, -5563], - [1, 3, 4838], - [0, 0, 0, 4839, 4], - [0, -1342, -9749], - [1, 3, 4841], - [0, 4842, 4843, 4844, 4], - [0, -812, -9732], - [0, -1415, -1971, -2375, -9056, -2410, -3136, -3037, -512, -3198, -511, -9750], - [0, -1342, -1971, -8484, -9733], - [1, 3, 4846], - [0, 0, 0, 4847, 10], - [0, -5889, -3322, -1939], - [1, 3, 4849], - [0, 4850, 31, 4851, 11], - [0, -6829, -6372, -2347], - [0, -5827, -1334, -3443, -2105, -9052, -9751, -9752, -6693, -9753, -9024], - [1, 3, 4853], - [0, 0, 4854, 4855, 5], - [0, -3470, -3842, -3471, -741, -932, -940, -9754, -1942, -2127, -2174, -2322], - [0, -9755, -5553, -775, -656], - [1, 3, 4857], - [0, 0, 84, 4858, 5], - [0, -9756, -9757, -9758, -2424, -9759, -9760, -9761, -9762, -1878, -9763, -9764, -9765, -9766, -9767], - [1, 3, 4860], - [0, 4861, 4862, 4863, 4], - [0, -9768, -812, -9769, -9770, -9771, -1689], - [ - 0, -510, -744, -932, -940, -943, -958, -966, -967, -968, -974, -1004, -1344, -1534, -1654, -1788, -1942, -2198, - -2210, -2548, -2293 - ], - [0, -3110, -1348, -9772], - [1, 3, 4865], - [0, 39, 4866, 4867, 5], - [ - 0, -9773, -23, -3395, -3204, -38, -39, -40, -41, -43, -3326, -350, -351, -3266, -3037, -427, -428, -3664, -571, - -756, -757, -932, -934, -940, -948, -958, -9774, -1344, -9775, -9776, -9777, -9778, -9779, -1534, -1942, -2125, - -2127, -2210, -2410, -2469 - ], - [0, -1349, -9780, -1348, -9781, -9782, -9772, -9783, -9784], - [1, 3, 4869], - [0, 0, 4870, 4871, 4], - [0, -190, -3267, -3470, -3471, -427, -428, -932, -940, -967, -1110, -1942, -2127, -2132, -2174, -2410], - [0, -1349, -9785, -3445, -3862], - [1, 3, 4873], - [0, 4874, 4875, 4876, 4], - [0, -9786], - [ - 0, -1788, -510, -9787, -9788, -1654, -9789, -932, -2177, -2105, -9790, -2410, -3037, -1002, -2884, -2832, -3748, - -5029 - ], - [0, -9788, -5845, -9791, -9792], - [1, 3, 4878], - [0, 4879, 4880, 4881, 5], - [0, -9793], - [0, -527, -533, -559, -562, -756, -932, -934, -958, -1417], - [0, -1971, -9794, -9795, -1415, -4215], - [1, 3, 4883], - [0, 0, 4884, 4885, 4], - [0, -21, -23, -40, -427, -812, -932, -9796, -958, -1650, -9797, -2125, -9798, -2319, -2359, -2379, -2410], - [0, -1353, -9799, -9100, -1777, -8199, -9800, -7724, -5570, -5569, -9094, -1107, -9801, -9802], - [1, 3, 4887], - [0, 0, 4888, 4889, 6], - [0, -652, -1107, -2391, -2379, -2402, -2410, -3036, -3037, -2581], - [ - 0, -6527, -8799, -9803, -9804, -6730, -7710, -5316, -8653, -8740, -8642, -8715, -9805, -8654, -8685, -9235, - -8761, -7715, -8656, -3839, -9806, -9807, -5315 - ], - [1, 3, 4891], - [0, 4892, 4893, 4894, 5], - [0, -9808, -7879, -2218, -1111, -9809, -1043, -5558, -9810, -8628, -9324], - [0, -2541, -519, -824, -2331, -7687, -9401, -7692], - [0, -1644, -6454, -6527, -5093, -9235, -8640, -7715, -8642, -3839], - [1, 3, 4896], - [0, 4897, 4898, 4899, 5], - [0, -9808, -999, -9811, -5558, -9812, -8628], - [0, -652, -2541, -519, -2410, -3037], - [0, -6454, -6527, -9813, -1644, -7175, -7715, -9814], - [1, 3, 4901], - [0, 4902, 0, 4903, 10], - [0, -9815, -2062], - [0, -1358, -9715, -7920, -9816, -3323], - [1, 3, 4905], - [0, 0, 4906, 4907, 9], - [ - 0, -23, -3037, -3664, -756, -9817, -9818, -1059, -1344, -1361, -9819, -1548, -1552, -1942, -1952, -2074, -2125, - -9820, -2174, -2391, -9821, -2410, -2466, -2469 - ], - [0, -1361, -9822, -9823], - [1, 3, 4909], - [0, 0, 4910, 4911, 8], - [0, -9824, -3136, -756, -1415, -2125, -2375, -2388, -2410], - [0, -9825], - [1, 3, 4913], - [0, 0, 0, 4914, 4], - [0, -1361, -6852, -9826, -6582, -7537, -5112, -7558, -9827, -5562, -7822], - [1, 3, 4916], - [0, 186, 4917, 4918, 5], - [0, -519, -1298, -2384, -2541], - [0, -4792, -3324, -6690, -6691, -3551, -1072, -9828], - [1, 3, 4920], - [0, 4921, 4922, 4923, 6], - [0, -1871, -5915], - [0, -519, -6997, -824, -999, -2541], - [0, -6024, -8427, -4792, -2114, -1109, -9318, -9829, -687], - [1, 3, 4925], - [0, 4926, 4927, 4928, 5], - [0, -9830, -9831, -9832, -9833, -9834, -9835, -9836], - [0, -3037, -4204, -932, -9837, -1942, -2410], - [ - 0, -9668, -3844, -9838, -9839, -7107, -8897, -9840, -3690, -7586, -9841, -5196, -9842, -3691, -5728, -3578, - -3161, -3122, -9843, -9844, -6011, -5801, -1334, -1342, -2512, -6224, -9845, -3994, -3445, -5407 - ], - [1, 3, 4930], - [0, 0, 14, 4931, 10], - [0, -6806, -2265, -7210, -9846, -6722, -5554, -885, -9847], - [1, 3, 4933], - [0, 4934, 4935, 4936, 8], - [0, -9551, -619, -9556, -1309, -1435, -1582], - [0, -707, -1277, -1510], - [0, -6656, -7421, -8481, -1277, -3862], - [1, 3, 4938], - [0, 4939, 4940, 4941, 6], - [0, -786, -2776, -3546], - [0, -9848, -9849], - [0, -1368, -6187, -3161, -4729, -9850, -3264, -9851, -3844, -5092, -4865, -2127, -9613], - [1, 3, 4943], - [0, 0, 4944, 4945, 4], - [0, -2410, -2469], - [0, -1369, -9852, -9853, -1878, -9763, -9758, -2424, -9854, -9855, -9759, -9764, -9760, -9765, -9766, -9767, -9761], - [1, 3, 4947], - [0, 0, 71, 4948, 10], - [0, -9856, -7711, -9857, -9858, -9859, -1370, -4865, -633], - [1, 3, 4950], - [0, 0, 29, 7, 5], - [1, 3, 4952], - [0, 4953, 4954, 4955, 5], - [ - 0, -9860, -480, -482, -9861, -668, -688, -690, -696, -5906, -3517, -1366, -8418, -9862, -6259, -2166, -2202, - -2219, -4621, -2267, -9863, -2400, -2820, -2528, -2531, -9864 - ], - [ - 0, -6486, -5918, -357, -3851, -3037, -3040, -9865, -9866, -9867, -4372, -4626, -4204, -9868, -519, -623, -826, - -9869, -969, -970, -1681, -1741, -1827, -1942, -2006, -9870, -2210, -2269, -2379, -2410, -2541 - ], - [0, -2006, -687, -4146, -3973, -3098, -3958, -1940, -2074, -9871, -7650, -714, -5554], - [1, 3, 4957], - [0, 0, 4958, 4959, 11], - [ - 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -775, -932, -967, -4814, -1110, -1344, -1415, -1534, - -1771, -1942, -2910, -2127 - ], - [0, -1374, -9872, -5553, -3215, -775], - [1, 3, 4961], - [0, 0, 0, 4962, 6], - [0, -9873, -9874, -7864, -7084, -7856, -9219, -3966, -687], - [1, 3, 4964], - [0, 4965, 4966, 63, 4], - [0, -3947, -231, -4106, -2900, -3950, -9875, -2153], - [0, -3952, -2410], - [1, 3, 4968], - [0, 4969, 4970, 4971, 11], - [0, -480, -1040, -1863, -9875, -2153], - [0, -1059, -1087, -1376], - [ - 0, -3953, -3954, -3955, -3956, -687, -3957, -3958, -910, -3962, -3963, -1376, -3964, -3965, -3214, -3824, -3966, - -3967, -1965, -3968, -1966, -3969, -2063, -3972, -3973, -3974, -3975, -3160, -3976, -2559, -3977 - ], - [1, 3, 4973], - [0, 4974, 0, 4975, 8], - [0, -9876, -714], - [0, -9877, -3966, -9878, -9879], - [1, 3, 4977], - [0, 0, 4978, 4979, 6], - [0, -849, -1654, -9880, -2334], - [0, -3209, -4792, -4791, -9881, -4865, -9882, -7857, -1380], - [1, 3, 4981], - [0, 0, 4982, 4983, 8], - [0, -932, -937, -966, -1001, -1442, -1654, -1788, -8501, -2068, -2094, -9883, -2195], - [ - 0, -9199, -9884, -711, -6505, -3184, -3756, -4055, -1460, -4146, -2006, -9885, -2362, -3018, -2410, -6597, - -2548, -9886 - ], - [1, 3, 4985], - [0, 0, 4986, 4987, 8], - [ - 0, -510, -526, -528, -549, -9887, -9888, -551, -556, -559, -9889, -566, -9890, -9891, -9892, -9893, -9894, - -9895, -9896, -9897, -9898, -9899, -9900, -9901, -9902, -9903, -689, -704, -932, -9904, -1045, -1107, -1127, - -1132, -1134, -1138, -9905, -9906, -1452, -1650, -1797, -2125, -2127, -2128, -2131, -9907, -5860, -2138, -2143, - -9266, -2187, -2493 - ], - [0, -1382, -1348, -9780, -9908, -3582], - [1, 3, 4989], - [0, 0, 4990, 4991, 4], - [ - 0, -7, -8, -9, -10, -13, -3204, -42, -3983, -365, -407, -410, -3037, -3040, -3052, -427, -428, -4837, -9909, - -535, -774, -928, -932, -948, -958, -959, -969, -970, -1028, -9910, -4693, -9911, -1127, -1131, -1132, -1134, - -1137, -1140, -1149, -9912, -1160, -1162, -1339, -1415, -1419, -1437, -1541, -1874, -1942, -9913, -2006, -2019, - -2162, -2193, -2299, -2351, -2379, -2410, -2466, -6859, -2476, -5627, -2567 - ], - [ - 0, -9914, -9915, -9916, -9917, -9918, -3162, -3962, -9567, -3823, -3214, -3862, -775, -3264, -3926, -5538, - -2006, -2476, -475, -2299, -3095, -2410 - ], - [1, 3, 4993], - [0, 220, 4994, 4995, 5], - [0, -633, -1059, -2319], - [0, -4004, -1384], - [1, 3, 4997], - [0, 4998, 4999, 5000, 6], - [0, -9919, -9920, -9921], - [0, -3037, -3664, -932, -1942, -2080, -2125, -2127, -2376, -2387, -2410, -2469], - [0, -6143, -9922, -6134, -9923, -9924, -3214, -3966, -2410], - [1, 3, 5002], - [0, 5003, 5004, 221, 5], - [ - 0, -2323, -834, -9925, -1805, -2446, -668, -812, -2387, -1548, -2177, -2240, -3547, -2347, -9926, -2291, -9927, - -9928, -9929, -9422, -9930, -9931, -9932, -9933, -9934, -9935, -9936, -9937, -9938 - ], - [ - 0, -1415, -2125, -2388, -2375, -1417, -5673, -2231, -2410, -9939, -3136, -3037, -9940, -3738, -1534, -3198, - -3044, -3199, -9941, -9942, -7836, -4202, -9943 - ], - [1, 3, 5006], - [0, 5007, 5008, 5009, 5], - [0, -3978], - [ - 0, -3983, -3048, -3136, -3037, -9947, -1077, -1415, -1417, -9948, -1772, -1942, -1978, -2125, -2177, -2184, - -2303, -2392, -2410 - ], - [0, -9949, -1386, -3167, -3839, -3162, -8585, -3095, -9950, -3119, -5270], - [1, 3, 5011], - [0, 5012, 5013, 5014, 4], - [0, -9951, -9952, -812, -9953, -1554, -9954, -9955, -9956, -9957], - [ - 0, -9958, -3470, -7040, -3471, -3035, -4269, -3198, -9959, -9960, -3621, -3037, -9961, -4372, -427, -428, -664, - -665, -932, -940, -1654, -1788, -1942, -2174, -2188, -2210, -2379, -2384, -2402, -2410, -2446 - ], - [0, -2071, -9844, -9962, -9963], - [1, 3, 5016], - [0, 0, 5017, 7, 8], - [0, -1654, -932], - [1, 3, 5019], - [0, 5020, 5021, 7, 5], - [0, -9964, -9788, -9965], - [0, -9966, -1032, -1445, -2322], - [1, 3, 5023], - [0, 0, 5024, 5025, 4], - [0, -515, -1788, -2322, -932, -6283, -1365, -2156, -5834, -6402], - [0, -2444, -8038, -4004], - [1, 3, 5027], - [0, 5028, 5029, 184, 9], - [0, -680], - [0, -686, -2250], - [1, 3, 5031], - [0, 5032, 88, 5033, 4], - [0, -9967], - [ - 0, -6836, -9968, -7440, -8421, -8130, -9969, -1107, -9095, -9970, -1391, -5572, -3581, -5574, -5569, -8129, - -2265, -4004 - ], - [1, 3, 5035], - [0, 5036, 5037, 5038, 11], - [0, -9971, -7408], - [0, -519, -6997, -824, -999, -1591, -2384, -2541], - [0, -1109, -5897, -9972, -3551, -1380, -9973, -1764, -2552, -1391, -7440, -6659, -8427, -9974, -687, -8425, -7304], - [1, 3, 5040], - [0, 0, 14, 5041, 6], - [0, -7208, -1391, -7440, -4004, -8038, -9716, -9975, -9976, -5493], - [1, 3, 5043], - [0, 0, 5044, 5045, 9], - [0, -664, -985, -1202, -1654, -1655, -2127], - [0, -7440, -1391, -9977, -1403, -3214, -9978, -8493, -7208, -9716, -8038, -9571, -5846], - [1, 3, 5047], - [0, 0, 5048, 5049, 5], - [0, -1654, -2081], - [0, -3264, -9950, -9979, -5065], - [1, 3, 5051], - [0, 0, 5052, 5053, 5], - [0, -3037, -519, -2331, -2384, -2541], - [0, -5827, -8038, -8027, -9980, -8800, -9753, -6408, -7440, -6659, -1391], - [1, 3, 5055], - [0, 5056, 222, 5057, 5], - [0, -9981], - [0, -7440, -9983, -7084, -9984, -9261, -6659, -6836, -1958, -4000, -3974, -1391], - [1, 3, 5059], - [0, 0, 31, 5060, 11], - [0, -4865, -1402, -5839], - [1, 3, 5062], - [0, 0, 5063, 5064, 11], - [0, -985, -1202, -1654, -2127], - [0, -7440, -1391, -9977, -1403, -9978, -8493, -9985, -5269, -7208, -8038, -9571, -5846], - [1, 3, 5066], - [0, 5067, 5068, 7, 5], - [0, -1729, -2516], - [0, -664, -1452, -9986, -1654, -1722], - [1, 3, 5070], - [0, 5071, 5072, 5073, 4], - [0, -1107, -1758, -1801, -510, -2518, -9632, -1650, -987, -1442, -2114, -2525, -931, -1276, -2297], - [0, -1452, -2125, -1754, -756, -2111], - [0, -4005, -9987, -9988, -9989], - [1, 3, 5075], - [0, 5076, 56, 89, 4], - [0, -1078, -2446, -7885], - [1, 3, 5078], - [0, 5079, 5080, 5081, 5], - [0, -513, -823, -896, -9990, -1571, -1887, -2355, -9991], - [ - 0, -9992, -526, -527, -532, -534, -536, -544, -546, -9993, -551, -555, -7890, -558, -565, -567, -664, -9994, - -748, -767, -778, -932, -980, -1017, -1041, -1074, -1168, -1171, -1184, -1226, -1243, -1322, -1331, -1471, - -1475, -1476, -1482, -7759, -1490, -1491, -1492, -1521, -1522, -8936, -1654, -2210, -2211, -2275, -2388, -2410, - -2417, -2437, -2476, -2479, -9995, -2481, -2483, -2484, -2485, -2501, -2505, -2508 - ], - [0, -1407, -2476, -3527, -3095, -3098, -3160, -3161], - [1, 3, 5083], - [0, 5084, 156, 5085, 4], - [0, -233], - [0, -6748, -3215, -4377, -5829, -9567, -687, -3957, -6722, -1838, -6747], - [1, 3, 5087], - [0, 5088, 5089, 7, 4], - [0, -9996, -683, -719, -9997, -9998, -1650, -9999, -2416, -2595, -10000], - [ - 0, -10001, -10002, -756, -1004, -10003, -10004, -10005, -10006, -10007, -10008, -10009, -10010, -10011, -10012, - -10013, -10014, -10015, -10016, -1610, -1810, -10017, -2125, -10018, -3013 - ], - [1, 3, 5091], - [0, 5092, 5093, 5094, 5], - [0, -510, -10019, -1863], - [0, -190, -932, -4719, -1110, -1654, -1980], - [0, -7641, -687, -9218, -10020], - [1, 3, 5096], - [0, 5097, 5098, 5099, 4], - [0, -10021], - [ - 0, -3326, -351, -3561, -3266, -4964, -10022, -10023, -683, -767, -10024, -1344, -1437, -10025, -1534, -1639, - -10026, -2127, -4063, -8896 - ], - [0, -10027, -6527, -5182, -10028, -10029, -8636], - [1, 3, 5101], - [0, 5102, 5103, 223, 6], - [0, -1107, -1413, -10030], - [0, -932, -10031], - [1, 3, 5105], - [0, 0, 5106, 223, 5], - [0, -3244, -190, -501, -10032, -888, -932, -952, -1107, -1110, -1449, -1942, -2162], - [1, 3, 5108], - [0, 5109, 0, 5110, 5], - [0, -1088, -1650, -10033, -2111, -2424, -711, -10034, -10035], - [0, -3634, -3440], - [1, 3, 5112], - [0, 5113, 0, 107, 4], - [0, -236, -237, -1363, -1417], - [1, 3, 5115], - [0, 5116, 5117, 5118, 6], - [0, -10036, -10037], - [0, -6256, -21, -23, -26, -40, -86, -9404, -533, -10038, -756, -1344, -1415, -1942], - [0, -4215, -1415, -5129, -886, -659, -4004, -5119], - [1, 3, 5120], - [0, 5121, 5122, 107, 6], - [0, -236, -4019, -237, -668, -4021, -1363, -4023, -1427, -4031, -2550], - [0, -3041], - [1, 3, 5124], - [0, 5125, 224, 7, 6], - [0, -10039, -8434, -668, -1950], - [1, 3, 5127], - [0, 5128, 224, 7, 5], - [0, -10040, -10041, -4647, -3037, -1449], - [1, 3, 5130], - [0, 5131, 5132, 7, 4], - [0, -10040, -10042, -237, -5129, -1427, -1449], - [0, -3136, -4647, -3037, -1344, -1415, -1650, -1942, -1952, -2125, -2375, -2410], - [1, 3, 5134], - [0, 5135, 5136, 7, 9], - [0, -10040, -10042, -237, -3037, -5129, -1427, -4031], - [0, -4034, -703], - [1, 3, 5138], - [0, 5139, 5140, 5141, 5], - [0, -1418], - [ - 0, -50, -3615, -3244, -190, -8433, -3136, -427, -428, -932, -940, -948, -958, -959, -967, -1110, -1344, -1415, - -10043, -1428, -1534, -1942, -2375, -5232, -2410 - ], - [0, -1415, -10044, -1015, -10045, -4004, -3634, -6538], - [1, 3, 5143], - [0, 5144, 5145, 5146, 4], - [0, -1077, -1805], - [ - 0, -23, -2695, -366, -407, -409, -410, -10046, -3136, -10047, -3037, -10048, -3040, -3052, -6192, -485, -533, - -534, -542, -561, -594, -635, -656, -661, -747, -778, -779, -796, -865, -866, -929, -932, -941, -10049, -1017, - -1041, -1077, -1331, -1352, -1415, -1426, -1428, -10050, -1643, -1762, -1889, -1903, -1908, -1918, -1927, -1966, - -10051, -2006, -2010, -2015, -2019, -2041, -2643, -2114, -2116, -2162, -2163, -2177, -2233, -2275, -2318, -2335, - -2410, -2437, -10052, -2501, -2502, -2505, -2507, -2526 - ], - [0, -1415, -3264, -6863, -9246, -3862], - [1, 3, 5148], - [0, 5149, 5150, 7, 4], - [0, -1650, -2269, -2446, -6597], - [0, -1415, -10053, -2218], - [1, 3, 5152], - [0, 0, 0, 5153, 5], - [0, -1415, -2552, -10054, -10055], - [1, 3, 5155], - [0, 5156, 5157, 7, 6], - [0, -668, -1119, -4024, -1425, -1427, -4031, -2218, -8204], - [0, -4035, -2435], - [1, 3, 5159], - [0, 5160, 5161, 7, 8], - [0, -237, -3037, -668, -680, -1119, -1864], - [0, -4035, -8523, -1548], - [1, 3, 5163], - [0, 5164, 5165, 7, 5], - [0, -480, -668, -4026, -4032, -2218, -6715, -2269], - [ - 0, -21, -23, -40, -42, -190, -5121, -237, -3470, -3471, -3037, -533, -10056, -767, -932, -940, -948, -8339, - -959, -967, -1110, -1415, -10043, -1942, -2125, -2174, -2177, -2410, -2411 - ], - [1, 3, 5167], - [0, 5168, 5169, 7, 6], - [0, -3037, -9581, -1427, -1632, -2297], - [0, -23, -10057, -4373, -9586, -1100, -10058, -10059], - [1, 3, 5171], - [0, 5172, 5173, 5174, 4], - [ - 0, -10060, -10061, -10062, -10063, -10064, -10065, -10066, -10067, -10068, -10069, -10070, -10071, -10072, - -10073, -10074, -10075, -10076, -10077, -10078, -10079, -10080, -10081, -10082, -10083, -10084, -10085, -10086 - ], - [ - 0, -10087, -10088, -10089, -10090, -4066, -350, -6572, -351, -3266, -5286, -932, -10091, -1848, -2127, -2132, - -6483, -9701, -2386, -2410, -10092, -2469 - ], - [0, -6527, -10093, -10094, -7715, -8640, -9235, -8653, -10095, -7069, -7066], - [1, 3, 5176], - [0, 0, 5177, 7, 6], - [ - 0, -23, -3341, -3196, -24, -10096, -33, -5828, -3367, -3077, -3389, -3408, -3412, -42, -3193, -46, -47, -10097, - -10098, -4776, -4777, -10099, -10100, -10101, -3037, -3664, -461, -10102, -672, -727, -734, -6860, -10103, -930, - -932, -944, -989, -990, -1026, -1394, -1640, -1651, -1667, -10104, -1852, -6568, -1940, -10105, -1942, -2006, - -2019, -2080, -10106, -6570, -2335, -3535, -2376, -2410, -2469, -2476, -8416, -2564 - ], - [1, 3, 5179], - [0, 0, 0, 5180, 6], - [0, -3494, -10107, -10108, -3495, -10109, -10110, -3264, -5554, -3496, -10111, -3214, -2410, -10112, -1432], - [1, 3, 5182], - [0, 5183, 5184, 5185, 4], - [0, -1432], - [ - 0, -3615, -7155, -367, -406, -409, -410, -3040, -3052, -427, -428, -767, -778, -932, -940, -967, -969, -970, - -979, -1331, -1449, -1942, -2006, -2019, -8276, -2275, -3752, -2379, -2391, -2410, -2469, -2501, -2503, -2505 - ], - [0, -2006, -1432, -3264, -5554, -3496, -10113, -10109, -10110, -10114], - [1, 3, 5187], - [0, 5188, 5189, 5190, 4], - [0, -668, -10115, -10116, -10117, -2183, -3523, -1553, -1552, -10118], - [0, -1788, -510, -1127, -2210, -1813, -756, -1132, -6758, -1153, -722, -10119, -1149, -1144, -1146], - [ - 0, -10120, -10121, -10122, -10123, -10124, -10125, -10126, -10127, -10128, -10129, -10130, -10131, -10132, - -10133, -10134, -10135, -10136, -10137, -10138, -10139, -10140, -10141, -10142, -10143, -10144, -10145, -10146, - -10147, -10148, -10115, -10149, -10150, -10151, -10152, -10153, -10154, -10155, -10156, -10157, -10158, -10159, - -10160, -10161, -10162, -10163, -10164, -10165, -10166, -10167, -10168, -10169, -10170, -10171, -10172, -10173, - -10174, -10175, -10176, -10177, -10178, -10179, -10180, -10180, -10181, -10182, -10183, -10184, -10185, -10186, - -10187, -10188, -10189, -10190, -10191, -10192, -10193, -10194, -10195, -10196, -10197, -10198, -10199, -10200, - -10201, -10202, -10203, -10204, -10205, -10206, -10207, -5158, -10208, -10209, -10210, -10211, -10212, -10213, - -10214, -10215, -10216, -10217, -10218, -10219, -10219, -10220, -10221, -10222, -10223, -10224, -10225, -10226, - -10227, -2183, -10228, -10229, -10230, -10231, -10232, -10233, -10234, -10235, -10236, -10237, -10238, -10239, - -10240, -10241, -10242, -10243, -10244, -10245, -10246, -10247, -10248 - ], - [1, 3, 5192], - [0, 5193, 5194, 5195, 4], - [0, -10249, -10250, -3880, -10251, -10252, -3888, -3117], - [0, -9163, -3890, -3891, -3893, -3037, -2410], - [0, -4058, -3926], - [1, 3, 5197], - [0, 0, 0, 5198, 5], - [0, -2006, -4125, -9800, -4633, -10253, -4634], - [1, 3, 5200], - [0, 0, 0, 5201, 10], - [0, -1437, -3214, -4865, -3482], - [1, 3, 5203], - [0, 5204, 5205, 7, 4], - [0, -1437], - [ - 0, -1127, -2125, -1110, -367, -10254, -10255, -1152, -10256, -1542, -10257, -10258, -10259, -10260, -1136, - -1139, -9550 - ], - [1, 3, 5207], - [0, 0, 5208, 5209, 11], - [0, -3037, -1654, -2410], - [0, -6118, -7304], - [1, 3, 5211], - [0, 5212, 5213, 5214, 4], - [0, -10261, -7829, -1107, -1441, -1758], - [0, -481, -589, -709, -1437, -1452, -1646, -1654, -1689, -2111, -2184, -2269, -2501, -2503], - [0, -6146, -10262, -10263], - [1, 3, 5216], - [0, 0, 5217, 5218, 4], - [ - 0, -3266, -932, -943, -957, -963, -1127, -10258, -1137, -1146, -9544, -1149, -10264, -10265, -1942, -1989, - -2091, -2127, -5090, -2134, -2250 - ], - [0, -743, -6920, -4865, -10266, -4791, -3323, -1441, -633], - [1, 3, 5220], - [0, 5221, 5222, 5223, 8], - [0, -503], - [0, -1788, -5514, -1654, -932, -2127, -2195, -1103, -589, -709, -1023, -2140, -350, -351, -10267], - [0, -2548, -3215, -4142, -10268], - [1, 3, 5225], - [0, 5226, 5227, 5228, 10], - [0, -25, -5223, -719, -812, -822, -1107, -10269, -10270, -2001, -10271], - [ - 0, -190, -4010, -367, -4007, -7043, -3037, -720, -740, -796, -932, -940, -959, -967, -1415, -1448, -9390, -9393, - -1942, -2125, -2410, -2411 - ], - [0, -10272, -856], - [1, 3, 5230], - [0, 5231, 5232, 7, 4], - [0, -714, -719, -1077, -10273, -10274, -10275, -10276, -10277, -10278, -10279], - [0, -5325, -3048, -3037, -3664, -1753, -2379, -2391, -2410, -2469], - [1, 3, 5234], - [0, 5235, 5236, 5237, 6], - [ - 0, -668, -693, -719, -10280, -988, -1000, -1107, -1333, -1442, -10281, -10282, -6611, -1548, -1645, -5199, - -6533, -1965, -10283, -2114, -2270, -2271, -10284, -10285, -9247, -10286, -2538 - ], - [0, -664, -756, -3607, -1452, -1654, -2081, -2123, -2210, -2211, -10287, -10288, -2536], - [0, -8172, -4144, -7148, -8170, -4901, -5874], - [1, 3, 5239], - [0, 5240, 5241, 5242, 4], - [0, -25, -10289, -3661, -615, -10290, -930, -10291, -8985, -1600, -1601, -1610, -1650, -10292, -2271, -2424], - [0, -469, -1168, -1197, -1225, -1788], - [0, -856, -3214], - [1, 3, 5244], - [0, 5245, 0, 5246, 4], - [0, -6789, -7573, -10293, -7575, -1446, -10294, -7576], - [0, -1446, -3690, -5731, -3964, -3214, -856], - [1, 3, 5248], - [0, 5249, 0, 5250, 5], - [0, -6789, -717, -718, -10295, -843, -1447, -2576, -7576], - [0, -1446, -1599, -3690, -3262, -3214, -3756, -856], - [1, 3, 5252], - [0, 5253, 5254, 225, 5], - [ - 0, -10296, -10297, -10298, -9683, -785, -10299, -10300, -1319, -1337, -1343, -1397, -1839, -10301, -10302, - -2364, -2426, -10303, -10304, -6587, -10305, -8352 - ], - [ - 0, -7196, -932, -957, -965, -1110, -1442, -1645, -1654, -10306, -1772, -1810, -1880, -2177, -2188, -2354, - -10307, -10308 - ], - [1, 3, 5256], - [0, 5257, 5258, 225, 5], - [0, -10309, -10310, -785, -1333, -10311, -1839, -2105, -8352, -2540], - [0, -633, -714, -1339, -1452, -6810, -1754, -1888, -1980, -10312, -2493], - [1, 3, 5260], - [0, 0, 5261, 5262, 4], - [0, -756, -1127, -1132, -6114, -1405, -1654, -2081, -2111, -10313], - [0, -640, -5559, -3214, -4055, -6917, -8127, -2265, -6231, -3673], - [1, 3, 5264], - [0, 5265, 5266, 7, 8], - [0, -687, -6392, -1000, -1333, -1548, -1645, -2271], - [0, -510, -633, -739, -6019, -756, -1405, -1445, -1661, -1754, -1978, -2081, -10314, -2210, -6430, -10315, -10316], - [1, 3, 5268], - [0, 5269, 226, 5270, 5], - [0, -668, -1574, -1877, -6715, -2343, -9493], - [0, -1452, -6863, -4144, -3276, -7148, -5874, -10317, -6864, -3240], - [1, 3, 5272], - [0, 5273, 5274, 5275, 4], - [0, -10318, -10319], - [0, -3621, -3037, -427, -428, -932, -936, -958, -1654, -1788, -2379, -2410], - [0, -4055, -10320, -788, -6473, -8257, -10321, -10322, -1838, -3215, -1454, -10323, -687], - [1, 3, 5277], - [0, 0, 5278, 7, 8], - [0, -2251], - [1, 3, 5280], - [0, 0, 0, 5281, 9], - [0, -4055, -4058], - [1, 3, 5283], - [0, 5284, 5285, 5286, 4], - [0, -411, -414, -2702, -668, -679, -3780, -6869, -1369, -1460, -1581, -10324, -2213, -10325], - [0, -3037, -726, -1098, -1344, -2987, -8065, -2331, -2400, -2410], - [0, -4182, -3844, -8959, -3817, -3816, -10326, -4215, -4041, -4004, -3634, -3691, -6582, -10327], - [1, 3, 5288], - [0, 5289, 5290, 5291, 10], - [0, -655, -6511, -1402, -7584, -1795], - [0, -2832, -5834, -8084, -8086, -8090, -10328, -8096, -516, -5835, -932, -1365, -1777, -2156, -2322], - [0, -4055, -6231, -10329, -6131, -7283, -10330], - [1, 3, 5293], - [0, 0, 0, 5294, 5], - [0, -4055, -6231, -10331, -9594], - [1, 3, 5296], - [0, 0, 5297, 5298, 11], - [ - 0, -753, -932, -943, -958, -966, -968, -974, -1771, -2081, -2127, -2129, -2131, -2137, -2140, -2210, -2319, - -10332 - ], - [0, -4055, -1460, -8108, -4795, -3217], - [1, 3, 5300], - [0, 0, 5301, 7, 4], - [0, -1654, -932, -2125, -2410, -3037, -3621, -428, -427], - [1, 3, 5303], - [0, 5304, 206, 5305, 4], - [0, -8984], - [0, -2059, -6234, -6656, -4055, -1076, -1077], - [1, 3, 5307], - [0, 0, 5308, 5309, 5], - [0, -7055, -10333, -664, -932, -10334, -1654], - [0, -4055, -4058, -1463, -2451, -3926], - [1, 3, 5311], - [0, 5312, 5313, 5314, 5], - [0, -2346, -10335], - [0, -2322, -8392, -10336, -7650, -6538, -994], - [0, -4055, -5827, -9292, -3215, -510, -6747], - [1, 3, 5316], - [0, 5317, 5318, 5319, 8], - [0, -1681, -10337, -2177, -10338, -10339, -10340, -1563, -10341, -10342, -1562], - [0, -1780, -1788, -514, -664, -1654, -2210, -932, -739], - [0, -3175], - [1, 3, 5321], - [0, 5322, 5323, 7, 5], - [0, -23, -10343, -10344, -1816, -1863], - [0, -5694, -3037, -10345, -653, -928, -932, -940, -1640, -1645, -1805, -1942, -2127, -2358, -2410], - [1, 3, 5325], - [0, 0, 5326, 5327, 4], - [0, -3037, -3664, -8436, -2391, -2410, -2469], - [0, -4125, -3967, -3445, -10346, -2006, -5269, -3578, -2034, -3138], - [1, 3, 5329], - [0, 5330, 5331, 5332, 6], - [0, -10347, -1834, -8578, -2062], - [0, -2359, -1127, -1989, -932, -589, -1132, -633, -1874, -2410, -1339, -10348, -1130, -1148, -10349], - [0, -5408, -6827, -10350], - [1, 3, 5334], - [0, 0, 5335, 5336, 6], - [ - 0, -2200, -1415, -1344, -932, -2910, -2375, -2379, -1942, -2410, -23, -1534, -632, -726, -958, -940, -967, - -1419, -428, -427, -948 - ], - [0, -3175, -4865], - [1, 3, 5338], - [0, 0, 5339, 5340, 4], - [0, -1003, -1405, -1654], - [0, -3175, -6422, -6420], - [1, 3, 5342], - [0, 5343, 5344, 5345, 6], - [ - 0, -6134, -2359, -1107, -1640, -10351, -2550, -9968, -1548, -1576, -1650, -2125, -729, -679, -1645, -2228, - -1336, -2231, -617, -1119, -5506, -1997, -2594, -10352, -5758 - ], - [ - 0, -664, -5735, -1654, -7243, -2210, -2518, -932, -793, -2491, -1978, -2293, -633, -1474, -1972, -2211, -10353, - -667, -1482, -1413, -1481, -86, -665, -1472, -2174, -966, -958, -10354, -1483, -3471, -968, -1475, -10355, -943, - -974, -1479, -9404, -3470, -1473 - ], - [0, -1471, -10356, -4043, -1471, -3756, -3214, -3634, -4004, -8908, -10357], - [1, 3, 5347], - [0, 5348, 5349, 5350, 6], - [0, -10358, -1548, -10359, -1645, -8016, -742], - [ - 0, -1763, -627, -664, -1471, -1654, -2210, -2363, -5482, -932, -2114, -2491, -633, -2211, -2410, -1771, -1413, - -1481, -6399, -964, -1475 - ], - [0, -10360, -10361, -10362, -633], - [1, 3, 5352], - [0, 5353, 5354, 5355, 4], - [0, -1980, -2734, -10363], - [0, -1127, -932, -1159, -1131, -1152, -1542, -966, -1129, -958, -968, -943, -974, -1150, -1151], - [0, -10360, -10364, -2734, -10365], - [1, 3, 5357], - [0, 0, 0, 5358, 4], - [0, -1471, -10360, -664, -1654, -2198], - [1, 3, 5360], - [0, 227, 5361, 5362, 9], - [0, -664, -1471, -1654, -2210, -2250, -1482, -86, -2174, -3471, -9404, -3470], - [0, -10360, -10364, -10366], - [1, 3, 5364], - [0, 5365, 5366, 5367, 5], - [0, -5086, -6029, -5087, -5088, -5089, -1645], - [ - 0, -86, -3307, -9248, -3470, -3471, -7041, -664, -711, -932, -943, -958, -966, -968, -974, -1127, -1132, -1155, - -1159, -1344, -10367, -1471, -10368, -1479, -1482, -10369, -1654, -7243, -2111, -2174, -2210, -2211 - ], - [0, -10360, -10361, -10370, -4005, -1405], - [1, 3, 5369], - [0, 227, 5370, 5371, 4], - [0, -1127, -1138, -1144, -1155, -1413, -1471, -1481, -1860], - [ - 0, -10360, -10364, -4865, -6413, -10371, -10372, -10373, -10374, -7490, -10375, -10376, -10377, -10378, -10379, - -10380 - ], - [1, 3, 5373], - [0, 5374, 5375, 5376, 5], - [0, -10381], - [ - 0, -664, -10382, -6134, -932, -943, -968, -974, -1127, -1131, -1132, -1152, -1159, -1163, -1471, -1542, -10383, - -1972 - ], - [0, -10360, -10364, -5799, -7489], - [1, 3, 5378], - [0, 5379, 5380, 5381, 4], - [0, -1401, -2518], - [0, -86, -3307, -3470, -3471, -7041, -1344, -1471, -1482, -1654, -1868, -2174, -2250], - [0, -1471, -3634, -10360, -10364, -10384], - [1, 3, 5383], - [0, 34, 5384, 5385, 5], - [ - 0, -664, -6134, -932, -943, -968, -969, -974, -1127, -1129, -1131, -1149, -1150, -1151, -1152, -1159, -1163, - -1471, -1542, -7243, -2210, -2211 - ], - [0, -10360, -10364, -8996], - [1, 3, 5387], - [0, 5388, 5389, 5390, 5], - [0, -1413], - [ - 0, -1127, -1344, -1471, -932, -1412, -86, -2174, -966, -958, -3471, -7041, -968, -943, -974, -1479, -3472, - -9404, -3470 - ], - [0, -10360, -10385, -1412], - [1, 3, 5392], - [0, 228, 5393, 5394, 6], - [ - 0, -664, -932, -943, -968, -969, -974, -1127, -1129, -1131, -1150, -1152, -1155, -1159, -1471, -1474, -1475, - -1479, -1489, -1542, -1654, -1658, -2210, -3470, -3471, -2174, -86, -3307, -1344 - ], - [0, -10360, -10385, -1654], - [1, 3, 5396], - [0, 5397, 5398, 5399, 4], - [0, -668, -1574, -2269], - [0, -664, -1127, -1131, -1138, -1144, -1150, -1155, -1162, -1413, -1474, -1477, -1542, -1654, -1860], - [0, -10360, -10370, -1654, -664, -834, -8619], - [1, 3, 5401], - [0, 5402, 5403, 5404, 4], - [0, -1548, -1860], - [0, -932, -943, -969, -974, -1127, -1129, -1131, -1150, -1152, -1155, -1159, -1413, -1471, -1481, -1542], - [0, -10360, -10364, -1859], - [1, 3, 5406], - [0, 0, 5407, 5408, 10], - [0, -664, -1127, -1471, -1654, -1989, -932, -1159, -1131, -1481, -966, -958, -968, -943, -974, -1479], - [0, -1471, -10360, -10385, -1989], - [1, 3, 5410], - [0, 5411, 5412, 5413, 6], - [0, -679, -811], - [0, -23, -3412, -40, -932, -1413, -1471, -1475, -1481, -1483, -2127, -2128, -2129, -2131, -2137], - [0, -6505, -4795, -1471, -3209, -6024, -8257, -3862, -3277, -10361, -10360, -10386, -2127], - [1, 3, 5415], - [0, 0, 5416, 5417, 8], - [0, -1159, -1127, -1131, -1129], - [0, -10360, -10364, -10387], - [1, 3, 5419], - [0, 5420, 5421, 5422, 4], - [0, -10388, -5471, -4881], - [0, -86, -3307, -3470, -3471, -7041, -3048, -10389, -3037, -1344, -1412, -1471, -1481, -2174, -2410], - [0, -10360, -10364, -10390, -10391, -5471], - [1, 3, 5424], - [0, 0, 0, 5425, 4], - [0, -1471, -10360, -2210, -4215], - [1, 3, 5427], - [0, 5428, 5429, 5430, 5], - [0, -1119], - [0, -4035, -652, -932, -1413, -1471, -10392, -1475, -1481, -1942, -2127, -10393], - [0, -10360, -10361, -9454, -3214], - [1, 3, 5432], - [0, 187, 5433, 5434, 11], - [0, -664, -756, -1654, -1771, -1788, -2210, -2211], - [0, -10360, -6863], - [1, 3, 5436], - [0, 5437, 5438, 48, 8], - [0, -1107, -1645, -2508], - [ - 0, -21, -23, -39, -40, -86, -3307, -7166, -533, -664, -665, -767, -932, -958, -967, -1344, -1405, -1412, -1415, - -1471, -1474, -1475, -1482, -1491, -1534, -1626, -1654, -1939, -1942, -1978, -2251, -2501 - ], - [1, 3, 5440], - [0, 0, 27, 5441, 8], - [0, -10394, -1493, -10395, -4111, -10396, -10397, -10398, -10399, -1494], - [1, 3, 5443], - [0, 0, 0, 5444, 6], - [0, -1494, -2063, -3103], - [1, 3, 5446], - [0, 5447, 5448, 5449, 6], - [0, -10400], - [ - 0, -10401, -3653, -2581, -6486, -3664, -2125, -10402, -2384, -2469, -10403, -10404, -10405, -10406, -10407, - -10408, -10409 - ], - [ - 0, -7372, -5846, -4634, -3324, -6495, -10410, -6005, -3445, -10411, -2071, -1671, -3742, -1691, -6321, -10412, - -1724, -1582, -10413, -654 - ], - [1, 3, 5451], - [0, 0, 5452, 5453, 4], - [0, -985, -2447], - [0, -5514, -687, -712, -714, -4000, -3974], - [1, 3, 5455], - [0, 5456, 5457, 5458, 5], - [0, -985, -10414, -812, -1548, -8945, -2068, -2350, -10415, -713, -719, -1381, -2115, -1097, -10416], - [ - 0, -1857, -1788, -2384, -664, -1410, -2322, -1344, -1654, -1691, -2210, -932, -1692, -2125, -879, -1658, -2245, - -10417, -2379, -10418, -1942, -2320, -756, -767, -1464, -2211, -2410, -3037, -8946, -1534, -10419, -10420, -665, - -2234, -10421, -958, -10422, -10423, -940, -967, -5984 - ], - [0, -10424, -5101, -6321, -10425, -1691, -10426, -2245, -5378, -1682, -4258, -10427, -7641, -7773, -7685], - [1, 3, 5460], - [0, 5461, 5462, 5463, 4], - [0, -8520, -1026, -10428, -1431, -1442, -1646, -10429, -1863, -1864, -10430, -2271, -2564], - [0, -237, -7057, -3660, -5686, -8523, -3046, -4879, -10431, -4651, -2392, -2410], - [ - 0, -10432, -10433, -7711, -687, -10434, -3015, -6659, -3016, -10435, -10436, -8035, -8257, -6999, -5573, -3214, - -7148, -10437, -10438, -10439, -10440, -10441, -5897, -9044, -3694, -2410, -10442, -10443, -7441, -10444 - ], - [1, 3, 5465], - [0, 0, 5466, 5467, 6], - [0, -932, -1111, -10445, -1572], - [0, -775, -3589, -5387, -10366, -10384, -10446, -7489, -10387, -10447, -10448, -10449], - [1, 3, 5469], - [0, 5470, 0, 5471, 4], - [0, -1640, -2536, -812, -10450, -1801], - [0, -5817, -5937, -5940], - [1, 3, 5473], - [0, 5474, 5475, 5476, 4], - [ - 0, -459, -736, -737, -6920, -10451, -7412, -907, -929, -1072, -10452, -1335, -1504, -1641, -1800, -1840, -2255, - -2401, -2453 - ], - [0, -652, -10453, -2226, -2250, -2293], - [0, -3578, -3994, -1334, -9668, -3161, -5401, -6854], - [1, 3, 5478], - [0, 5479, 5480, 5481, 5], - [0, -10454, -3734, -5586, -10455, -1070, -2400, -2564], - [0, -2832, -2581, -50, -8280, -10456, -3758, -8317, -10457, -4203, -1501, -2293, -2386, -7457, -2392, -2410], - [0, -1501, -10458, -6463, -4055, -10459, -3215, -4053], - [1, 3, 5483], - [0, 5484, 5485, 5486, 11], - [0, -10455, -10460, -2401], - [0, -946, -1344, -1501, -1654, -1788, -2198, -2293, -2541], - [0, -10461, -4055, -10458, -1501, -10459], - [1, 3, 5488], - [0, 0, 5489, 5490, 5], - [0, -708, -1415, -1612, -2250], - [0, -1501, -5401, -10462], - [1, 3, 5492], - [0, 5493, 5494, 5495, 6], - [0, -651, -668, -10463, -1800, -10464], - [0, -619, -652, -946, -1501, -10465, -10466, -2210, -2293, -2541], - [0, -1501, -5401, -3444, -1573], - [1, 3, 5497], - [0, 5498, 5499, 5500, 4], - [0, -812, -1504], - [0, -932, -943, -968, -974, -1405, -1501, -1508, -1654, -2198, -2293], - [0, -1501, -5401, -10467, -10468], - [1, 3, 5502], - [0, 5503, 5504, 5505, 10], - [0, -812, -1335, -1504, -1851], - [0, -1501, -1788, -668, -1344, -1654, -932, -1053, -2293, -10469, -2094, -1534, -86, -1448, -2099, -978, -3307], - [0, -1501, -5401, -10470, -3122], - [1, 3, 5507], - [0, 5508, 5509, 5510, 11], - [0, -812, -10471], - [0, -932, -943, -958, -966, -968, -974, -1405, -1501, -1654, -2293], - [0, -1501, -5401, -6656, -5142, -10472], - [1, 3, 5512], - [0, 5513, 5514, 5515, 4], - [0, -1717, -1974, -10473, -2071, -2550, -1548, -2286, -1004, -617, -10474], - [0, -664, -510, -1654, -2210, -2198, -2293, -710], - [0, -5418, -1986, -8615, -2071], - [1, 3, 5517], - [0, 5518, 5519, 5520, 4], - [ - 0, -10475, -834, -932, -10476, -10477, -986, -10478, -1276, -1309, -1458, -1459, -1650, -2172, -2231, -2234, - -2297, -10479 - ], - [0, -707, -10480, -963, -10481, -2125, -2177], - [0, -4004], - [1, 3, 5522], - [0, 5523, 5524, 5525, 5], - [0, -5895], - [0, -519, -2177, -10482, -2384, -2541], - [0, -10483, -9318, -1764, -7861, -5897, -10484, -10485, -3551], - [1, 3, 5527], - [0, 0, 5528, 5529, 4], - [0, -1464, -10486, -589, -10487, -10488, -1414, -1446, -1548, -1627, -1963, -10489, -2111, -10490, -2424], - [0, -9826, -5112, -6187, -6188, -2444], - [1, 3, 5531], - [0, 0, 5532, 5533, 9], - [ - 0, -2247, -1344, -1471, -1654, -2210, -932, -10491, -2127, -10492, -10493, -2416, -1482, -1489, -1534, -10494, - -10495, -10496, -1480, -4062, -1478, -10497, -1475, -1487, -1479, -1486, -10498, -10499 - ], - [0, -10500, -6917], - [1, 3, 5535], - [0, 0, 5536, 5537, 10], - [0, -589, -1023], - [0, -1519, -10501, -7210, -10502, -2265, -10503], - [1, 3, 5539], - [0, 0, 5540, 5541, 6], - [0, -8511], - [0, -7210, -10504, -5538, -3276], - [1, 3, 5543], - [0, 5544, 0, 5545, 8], - [ - 0, -1787, -1371, -2323, -1866, -2247, -2446, -668, -999, -1392, -1826, -2218, -4701, -2550, -10505, -815, -9809, - -1831, -2125, -2177, -914, -1442, -1827, -2346, -10506, -1077, -1098, -1376, -1591, -10507, -5917, -10508, -715, - -1399, -1418, -1645, -10509, -293, -1100, -1686, -2654, -2410, -10510, -755, -1108, -10511, -10512, -2202, - -1363, -10513, -1769, -10514, -2115, -10515, -2267, -2551, -10516, -305, -8500, -4236, -10517, -10518, -10519, - -1767, -280, -10520, -10521, -2530, -283, -1770, -4283, -4716, -2450, -10522, -10523, -10524, -10525, -10526 - ], - [0, -1520, -10440, -10527], - [1, 3, 5547], - [0, 5548, 5549, 5550, 6], - [0, -10528, -8501, -2387], - [ - 0, -350, -4062, -351, -427, -428, -10529, -10530, -664, -652, -668, -755, -767, -932, -1077, -6720, -1107, - -1111, -1127, -1132, -1134, -1137, -1152, -1161, -1162, -10531, -1418, -10532, -10533, -9237, -1646, -1654, - -10534, -1771, -1856, -10535, -1874, -1961, -10536, -2114, -2127, -2140, -2142, -2177, -2200, -2351, -2379, - -2410, -5252 - ], - [ - 0, -10537, -10538, -10539, -775, -10540, -10541, -10542, -10543, -10544, -1521, -10545, -10546, -4730, -10547, - -3215, -3277, -10548, -10549, -5553, -3770, -3271, -10550, -10551 - ], - [1, 3, 5552], - [0, 0, 5553, 5554, 4], - [ - 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -533, -767, -774, -824, -825, -932, -940, -6929, -958, -959, - -965, -967, -978, -1110, -1344, -1415, -1521, -10552, -1534, -1623, -1771, -1942, -2251, -2269, -2411, -2501 - ], - [0, -2501, -5932, -1521, -10546, -10545, -775, -3277], - [1, 3, 5556], - [0, 5557, 5558, 229, 4], - [0, -10553, -10554, -10555], - [0, -1788, -2322, -2446, -468, -571, -1274, -2250, -2410, -3037, -40, -10556, -10557], - [1, 3, 5560], - [0, 5561, 5562, 5563, 8], - [0, -10559, -6127, -10560], - [ - 0, -10561, -1788, -1107, -2322, -2331, -1032, -2125, -5420, -891, -1274, -1733, -2250, -767, -10562, -10563, - -6128, -10564, -10565, -829, -10566, -10567 - ], - [0, -10558, -1523], - [1, 3, 5565], - [0, 5566, 5567, 229, 11], - [0, -9508, -10568, -10569, -10570, -10571, -10572], - [ - 0, -1788, -2322, -465, -2210, -468, -1032, -5420, -10573, -10574, -1274, -2250, -10562, -633, -2151, -10575, - -10576, -725, -10577, -10578, -829, -10556, -10567 - ], - [1, 3, 5569], - [0, 0, 5570, 5571, 11], - [0, -519, -10579, -10580, -10581, -10582, -10583, -10584, -1703, -10585, -2354, -2541], - [ - 0, -1526, -10582, -10586, -10587, -2265, -7377, -834, -5922, -1087, -6547, -4310, -7378, -10588, -10589, -5554, - -5572, -10590 - ], - [1, 3, 5573], - [0, 5574, 29, 5575, 10], - [0, -280, -4280, -10591, -834, -1645, -1767, -1831, -2323], - [0, -1764, -1776, -4303, -687, -834], - [1, 3, 5577], - [0, 5578, 5579, 5580, 5], - [0, -280, -4283, -283, -680, -1767, -1831, -1957, -10592, -2059, -2177, -2202, -4297], - [0, -4298, -4299, -4300, -4286, -668, -7755, -10593, -2319], - [0, -1764, -1776, -4303, -687, -4304, -1528], - [1, 3, 5582], - [0, 5583, 29, 5584, 5], - [0, -280], - [0, -1764, -1776, -4303, -687, -5889, -10594, -10595], - [1, 3, 5586], - [0, 0, 5587, 5588, 4], - [ - 0, -21, -23, -3367, -3350, -40, -43, -4062, -3266, -539, -664, -757, -10596, -767, -10597, -1405, -1415, -10598, - -10599, -1646, -1654, -1771, -1788, -10600, -2104, -2125, -2127, -2387 - ], - [0, -9917, -9918, -6240, -3962, -3162, -10601], - [1, 3, 5590], - [0, 5591, 5592, 5593, 6], - [0, -1015, -1048, -10602, -10603, -1396, -2068, -2114], - [0, -711, -932, -937, -940, -966, -1001, -1654, -1788, -2210], - [0, -4376], - [1, 3, 5595], - [0, 0, 5596, 5597, 4], - [0, -2581, -3136, -3037, -3806, -755, -1415, -2410, -2447], - [0, -755, -727, -3870, -7282], - [1, 3, 5599], - [0, 0, 0, 5600, 6], - [0, -10604, -7920, -10605, -3264, -1437, -10606, -10607, -2006, -2398, -2435], - [1, 3, 5602], - [0, 5603, 5604, 5605, 8], - [0, -719, -1536, -1639, -3610, -3535, -2548], - [ - 0, -8280, -50, -86, -3307, -190, -3664, -6593, -10608, -767, -932, -940, -965, -967, -4814, -1344, -1661, -1942, - -2177, -2410, -2469 - ], - [0, -7148, -5889, -10609, -932, -1942, -2281, -707, -8169, -7440, -3276, -5874], - [1, 3, 5607], - [0, 5608, 5609, 5610, 4], - [0, -10610, -10611, -1398, -1399, -10612, -10613, -10614, -1826, -2153], - [0, -708, -826, -9464, -1534, -1574, -1788, -1939, -2239, -5747], - [0, -687, -4107, -4108, -4109, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, -4116, -4117], - [1, 3, 5612], - [0, 5613, 5614, 158, 6], - [0, -696, -713, -996, -1575, -2124, -2528], - [0, -5745, -2153, -5747], - [1, 3, 5616], - [0, 5617, 5618, 7, 8], - [0, -10615, -10616, -3297], - [0, -10617, -10618, -4686, -10619, -4690, -2387], - [1, 3, 5620], - [0, 5621, 5622, 5623, 5], - [0, -1548, -1646, -632, -10620, -731], - [0, -1654, -2210, -932, -1663, -1405], - [0, -475, -6205, -5142, -3844, -3113], - [1, 3, 5625], - [0, 5626, 5627, 5628, 6], - [0, -1812, -754, -2178, -714, -1676, -729, -679, -10621, -2186, -994, -1792, -10622, -9502], - [0, -1654, -932, -1452, -2293], - [0, -3577, -3113, -3673, -3844, -1334, -687], - [1, 3, 5630], - [0, 5631, 5632, 7, 4], - [0, -679, -10623, -6696, -2531], - [0, -711, -1654, -2198, -2210], - [1, 3, 5634], - [0, 5635, 5636, 5637, 4], - [0, -6838, -1107, -10532, -1442, -9641, -1542, -1548], - [0, -1127, -1144, -1149, -9650, -9280, -1158, -1972, -2210], - [0, -9219, -2548, -6838, -1127, -727], - [1, 3, 5639], - [0, 5640, 5641, 5642, 4], - [0, -506, -1686, -1872, -10624], - [0, -1127, -1132, -2889, -2541], - [0, -3015, -1107, -1127, -6994, -5572, -10625, -5574, -4792, -8906], - [1, 3, 5644], - [0, 0, 5645, 7, 6], - [0, -756, -932, -966, -1415, -1942, -2251], - [1, 3, 5647], - [0, 5648, 5649, 5650, 4], - [ - 0, -10293, -1586, -10626, -10627, -10628, -10629, -10630, -10631, -2783, -10632, -10633, -10634, -10635, -10636, - -10637, -10638, -10639 - ], - [0, -1729, -2337], - [ - 0, -7646, -3844, -3578, -3673, -3577, -3113, -754, -1640, -3691, -4215, -3690, -1971, -1586, -3445, -3100, - -10640, -1339, -1334, -5735, -1342 - ], - [1, 3, 5652], - [0, 5653, 5654, 5655, 4], - [0, -10347], - [ - 0, -527, -528, -534, -535, -6079, -559, -10641, -571, -10642, -647, -754, -940, -1127, -5974, -1130, -1136, - -1137, -1148, -1149, -10643, -1152, -1655, -10644, -7845, -1161, -10645, -7848, -1344, -1534, -1542, -1654, - -1942, -10646, -5508, -2410, -2416, -2501, -2505 - ], - [0, -10647, -10648, -6005, -10649], - [1, 3, 5657], - [0, 5658, 27, 7, 11], - [0, -523, -812, -10650, -2550], - [1, 3, 5660], - [0, 5661, 5662, 5663, 4], - [0, -755, -812, -1026, -10651, -2550], - [ - 0, -528, -6048, -554, -558, -559, -849, -869, -932, -943, -958, -959, -966, -968, -972, -974, -1415, -1806, - -10652, -2177 - ], - [0, -10653, -10654, -5880, -10655, -7148, -2552, -1764, -8170, -7107, -1838], - [1, 3, 5665], - [0, 0, 0, 5666, 4], - [0, -3209, -10656, -2444], - [1, 3, 5668], - [0, 0, 0, 5669, 4], - [0, -3184, -3209, -10656, -2444], - [1, 3, 5671], - [0, 0, 0, 5672, 10], - [0, -10657, -7370], - [1, 3, 5674], - [0, 0, 0, 5675, 4], - [0, -10657, -656], - [1, 3, 5677], - [0, 0, 0, 5678, 5], - [0, -10657, -10658], - [1, 3, 5680], - [0, 0, 0, 5681, 4], - [0, -10657, -811], - [1, 3, 5683], - [0, 0, 0, 5684, 5], - [0, -10657, -10659], - [1, 3, 5686], - [0, 0, 0, 5687, 5], - [0, -10657, -5841], - [1, 3, 5689], - [0, 0, 0, 5690, 5], - [0, -10657, -6283], - [1, 3, 5692], - [0, 0, 0, 5693, 9], - [0, -10657, -9052], - [1, 3, 5695], - [0, 0, 0, 5696, 9], - [0, -10657, -10660], - [1, 3, 5698], - [0, 0, 0, 5699, 4], - [0, -10657, -10661], - [1, 3, 5701], - [0, 0, 0, 5702, 4], - [0, -10657, -10662], - [1, 3, 5704], - [0, 0, 0, 5705, 4], - [0, -1548, -10657, -10656, -2444], - [1, 3, 5707], - [0, 0, 0, 5708, 5], - [0, -10657, -10663], - [1, 3, 5710], - [0, 0, 0, 5711, 4], - [0, -10657, -10664], - [1, 3, 5713], - [0, 0, 0, 5714, 4], - [0, -10657, -6917], - [1, 3, 5716], - [0, 0, 0, 5717, 10], - [0, -10657, -5913], - [1, 3, 5719], - [0, 0, 0, 5720, 4], - [0, -10657, -1631], - [1, 3, 5722], - [0, 0, 0, 5723, 4], - [0, -10657, -10665], - [1, 3, 5725], - [0, 0, 0, 5726, 5], - [0, -10657, -10666], - [1, 3, 5728], - [0, 0, 0, 5729, 5], - [0, -10657, -8127], - [1, 3, 5731], - [0, 5732, 0, 5733, 4], - [0, -9496, -9497], - [0, -10657, -3110], - [1, 3, 5735], - [0, 0, 0, 5736, 5], - [0, -10657, -7329], - [1, 3, 5738], - [0, 0, 0, 5739, 4], - [0, -10657, -10667], - [1, 3, 5741], - [0, 5742, 5743, 5744, 5], - [0, -6703, -8038, -922, -7219, -10668, -10669, -10670], - [0, -1788, -2322, -1344, -10671, -932, -4896, -10672, -1534, -6707, -6709, -6706, -6708], - [0, -1573, -3444, -812, -648, -2520], - [1, 3, 5746], - [0, 5747, 5748, 5749, 5], - [0, -8416, -6861], - [0, -2541, -519, -2384, -2269], - [0, -4112, -687, -7095, -3958, -8132, -8618, -8619, -8620, -1040, -8621, -7084, -1573, -5545, -3974, -3973], - [1, 3, 5751], - [0, 5752, 5753, 5754, 4], - [0, -480, -690, -2219, -2269, -2528], - [0, -3037, -2267, -10673, -2384, -6786, -2541], - [ - 0, -1573, -3444, -5545, -687, -3974, -4110, -4000, -5550, -10674, -10675, -10676, -8991, -3973, -1959, -10677, - -5176 - ], - [1, 3, 5756], - [0, 5757, 5758, 5759, 5], - [0, -10678, -812, -7142, -2124, -10679], - [ - 0, -86, -3307, -10680, -5902, -9818, -932, -934, -940, -8246, -958, -967, -1077, -1344, -1392, -1788, -1942, - -1972, -2319, -2410 - ], - [0, -5545, -1573, -6459, -3966], - [1, 3, 5761], - [0, 0, 5762, 5763, 5], - [ - 0, -9569, -3037, -1127, -1132, -1134, -1136, -1137, -10681, -1144, -1148, -1149, -10682, -10683, -1412, -2379, - -2410 - ], - [0, -1573, -3444, -5545, -4865], - [1, 3, 5765], - [0, 0, 5766, 5767, 10], - [0, -6132, -1942, -2410], - [0, -10684, -1578, -10685], - [1, 3, 5769], - [0, 5770, 5771, 5772, 6], - [ - 0, -888, -828, -10686, -510, -812, -10330, -1004, -10687, -583, -615, -1369, -1752, -617, -2185, -10688, -10689, - -10690, -10691, -10692, -2425, -10693, -10694, -10695, -10696 - ], - [ - 0, -1788, -664, -1127, -1471, -1654, -2210, -2518, -932, -756, -1132, -10697, -2293, -633, -838, -2211, -1155, - -1482, -1152, -744, -10698, -10699, -1010, -1130, -1156, -1472, -10700, -1149, -10701, -1148, -10354, -10702, - -1475, -10355, -10703, -1479, -7707 - ], - [ - 0, -3578, -5728, -3691, -3690, -1004, -2118, -1501, -6120, -7107, -5378, -1691, -7684, -6857, -1671, -10704, - -1682, -10425, -6321, -2227, -10705, -3161, -3162, -10706 - ], - [1, 3, 5774], - [0, 5775, 5776, 196, 5], - [0, -3187], - [0, -633, -913, -2319], - [1, 3, 5778], - [0, 5779, 5780, 5781, 9], - [0, -10707], - [ - 0, -2392, -1344, -2331, -932, -1548, -825, -2379, -2410, -3037, -3044, -3617, -86, -10708, -10709, -5918, - -10710, -3307 - ], - [0, -7685, -7773, -891, -10711, -10712, -1055, -4182, -8427, -10713, -10714, -4865, -985], - [1, 3, 5783], - [0, 0, 5784, 5785, 5], - [0, -3037, -589, -928, -1610, -1650, -1942, -2319, -2386, -2402], - [0, -10715, -10413, -3324], - [1, 3, 5787], - [0, 0, 5788, 5789, 10], - [0, -3561, -407, -3667, -2127, -2132, -2410, -2466, -2469, -10716, -10717, -10718], - [0, -10719, -10720, -10721, -10722, -10723, -10724, -10725, -10726, -10727], - [1, 3, 5791], - [0, 5792, 5793, 5794, 9], - [0, -510, -596, -10728, -1696], - [0, -756, -1405, -1650, -1654, -1657, -2198], - [ - 0, -6527, -640, -10729, -1958, -10095, -7069, -7068, -9235, -8640, -7715, -8642, -7066, -10730, -10731, -7334, - -10732, -10733, -6337, -10502, -10734, -10735, -10736, -4162, -10737, -10738, -10739, -10740, -10741 - ], - [1, 3, 5796], - [0, 5797, 5798, 5799, 5], - [0, -10742, -10743, -6789, -10508, -717, -718, -10744, -10293, -1501, -10745, -1805, -1982, -6791, -7576], - [0, -1448, -10639, -1729, -10746, -2337], - [0, -1586, -3844, -1334, -5735, -1342, -3445, -1339, -7646, -3578], - [1, 3, 5801], - [0, 5802, 5803, 5804, 8], - [ - 0, -668, -715, -812, -910, -5672, -10415, -10747, -1040, -1075, -1286, -10748, -1292, -1380, -1442, -10521, - -10749, -1650, -1816, -1951, -5353, -4242, -2098, -2101, -10750, -3669, -2359, -7699, -2427, -7669, -2429, - -5356, -2446, -5358, -2518, -2530, -10751, -2550 - ], - [ - 0, -10752, -3198, -5334, -3660, -10753, -10754, -3037, -3628, -4231, -3738, -10755, -9284, -3041, -767, -8364, - -2218, -2269, -2410, -2447 - ], - [0, -1599, -10756, -10757, -3634, -856], - [1, 3, 5806], - [0, 5807, 5808, 5809, 8], - [0, -3115], - [0, -190, -351, -3561, -589, -8349, -740, -932, -1942, -2910, -2127, -2232, -2234, -2469], - [0, -2265, -10758, -6915, -7651, -6431], - [1, 3, 5811], - [0, 5812, 5813, 5814, 6], - [0, -2531, -523, -1449, -2387, -997, -1548, -1388, -3679, -7967], - [0, -932, -2402, -4204, -2410, -3037, -1771, -4647, -3044, -428, -4659, -10759, -427], - [ - 0, -10760, -8911, -2410, -840, -4601, -9111, -3214, -10761, -10762, -10763, -10764, -10765, -9840, -10766, - -10767, -7085, -10768, -10769, -856, -10770, -10771, -1589 - ], - [1, 3, 5816], - [0, 5817, 5818, 5819, 4], - [0, -668, -1015, -1111, -2462, -1686, -1849, -2271], - [0, -1127, -1654, -2198, -1132], - [0, -622, -1168, -7419, -9219], - [1, 3, 5821], - [0, 0, 5822, 5823, 4], - [0, -4035, -3037, -519, -1119, -10772, -2331, -2384, -2541], - [ - 0, -8988, -1650, -9218, -7411, -7410, -7421, -7420, -1847, -8807, -6370, -10773, -10774, -7371, -8990, -1076, - -7422, -7000 - ], - [1, 3, 5825], - [0, 0, 0, 5826, 5], - [0, -9218], - [1, 3, 5828], - [0, 5829, 5830, 5831, 4], - [0, -4733, -503, -578, -615, -10775, -1468, -10776, -1850, -2424, -2538], - [0, -3037, -633, -10777, -10778, -932, -10779, -1654, -2330, -2410, -2416], - [0, -8703, -3264, -10780, -10781, -1599, -3437], - [1, 3, 5833], - [0, 5834, 5835, 5836, 6], - [ - 0, -3698, -6486, -10782, -10783, -10784, -10785, -10786, -10787, -10788, -10789, -469, -583, -668, -3910, -3911, - -693, -9229, -9759, -1442, -1465, -1540, -1658, -1692, -1729, -1753, -1851, -1857, -1878, -2080, -2153, -2193, - -2223, -2245, -2409, -10790, -2435 - ], - [ - 0, -10791, -10792, -4353, -10793, -10794, -2980, -8850, -10795, -3617, -3660, -4201, -5363, -4203, -427, -428, - -932, -940, -967, -1076, -1415, -1847, -1942, -2234, -2293, -2375, -2376, -2383, -2410 - ], - [ - 0, -3445, -3690, -3691, -3967, -2410, -7685, -10796, -10797, -7643, -10798, -10799, -10800, -10801, -10802, - -3742, -10425, -1691, -2409, -5406, -6120, -3173, -10803, -6005, -5940, -10804, -10805, -10806, -10807, -10808, - -10809, -6113, -10810, -1594 - ], - [1, 3, 5838], - [0, 0, 5839, 5840, 5], - [ - 0, -3244, -2658, -250, -252, -254, -10811, -10812, -3044, -3037, -3040, -3052, -427, -428, -703, -784, -932, - -10813, -970, -1548, -2634, -1889, -1891, -1906, -10814, -10815, -1942, -2006, -2019, -2193, -4245, -2592, - -2391, -2410 - ], - [ - 0, -3160, -10816, -10817, -3824, -10818, -10819, -2006, -10820, -2410, -3214, -3577, -3100, -3477, -3160, - -10821, -4015, -7566, -10822, -3095 - ], - [1, 3, 5842], - [0, 0, 5843, 7, 5], - [0, -8392, -8394, -8393, -994, -8388], - [1, 3, 5845], - [0, 0, 5846, 5847, 6], - [ - 0, -3037, -427, -428, -3664, -518, -652, -932, -935, -948, -1449, -10823, -2162, -2281, -3436, -2410, -2466, - -6859, -2469 - ], - [0, -10824, -3004, -3862, -10825, -5553], - [1, 3, 5849], - [0, 5850, 71, 5851, 4], - [0, -1758], - [0, -1599, -10826, -3272], - [1, 3, 5853], - [0, 5854, 5855, 5856, 5], - [0, -503, -3223, -10827, -10828, -10829, -10830], - [ - 0, -3326, -350, -351, -3266, -5514, -589, -652, -664, -932, -943, -1004, -1103, -1304, -1429, -3245, -1602, - -3650, -1603, -3427, -10831, -10832, -10833, -10834, -3651, -3668, -1654, -10835, -1708, -2127, -2195, -2293 - ], - [0, -1599, -3215, -8630, -1600, -10836], - [1, 3, 5858], - [0, 0, 5859, 5860, 8], - [0, -3234, -519, -3425, -1637, -2234, -2250], - [0, -1599, -1600, -10836, -5147, -10837], - [1, 3, 5862], - [0, 0, 230, 5863, 5], - [0, -10836, -1600, -1599], - [1, 3, 5865], - [0, 0, 230, 5866, 8], - [0, -10836, -1600, -1599, -10838, -10839, -10840, -10841], - [1, 3, 5868], - [0, 5869, 5870, 5871, 4], - [0, -719, -883, -1015, -1304, -1860, -2102, -10842, -2347, -2359], - [0, -756, -1405, -10843, -2250, -2322], - [0, -1599, -6528, -5845, -3110], - [1, 3, 5873], - [0, 0, 5874, 5875, 4], - [0, -3037, -652, -668, -1942, -2094, -2100, -2269, -2399, -2410, -2541], - [0, -9846, -1599, -10844, -4002, -6724, -5554], - [1, 3, 5877], - [0, 0, 5878, 5879, 11], - [0, -7057, -3037, -3040, -3052, -10845, -928, -2006, -2019, -2034, -10106, -10846, -2410, -2476], - [0, -1599, -10847, -2006, -1940, -4146, -2476, -5173, -3944, -9608, -10848, -2034, -3264], - [1, 3, 5881], - [0, 5882, 88, 5883, 4], - [0, -725, -10849, -1125, -10850, -10851, -10852, -1646, -10853, -9323, -2102, -10854, -9403], - [ - 0, -10837, -8630, -3671, -10855, -856, -10856, -10857, -9409, -10858, -1599, -3437, -3862, -4328, -4846, -2102, - -10859, -7650, -4065, -4002, -10860, -10861, -10862, -6234 - ], - [1, 3, 5885], - [0, 5886, 5887, 5888, 5], - [0, -1638, -10863, -10864, -10865, -10866, -10867, -10868, -10869, -2267], - [ - 0, -190, -3748, -469, -519, -652, -2736, -932, -960, -965, -971, -978, -10870, -1111, -1442, -8274, -1461, - -1600, -10831, -10834, -3651, -10871, -8345, -1771, -2335, -2362, -2410, -2501, -2503 - ], - [0, -1599, -7148, -3437, -10872, -1608], - [1, 3, 5890], - [0, 5891, 5892, 5893, 10], - [0, -719, -822, -1353, -1442, -1461, -10873, -1608, -1600, -1645, -10874, -10430, -2654], - [0, -519, -8345, -2541], - [0, -1599, -1608, -687, -5732], - [1, 3, 5895], - [0, 0, 5896, 5897, 4], - [ - 0, -2832, -10875, -10876, -7040, -3471, -3472, -7041, -7042, -674, -8630, -767, -5382, -928, -10877, -932, - -1304, -1600, -10878, -10879, -10880, -2125, -2174, -9764, -2387, -2410 - ], - [0, -1599, -10881, -3264], - [1, 3, 5899], - [0, 5900, 5901, 163, 4], - [ - 0, -4321, -4322, -3649, -4323, -4309, -4320, -4308, -1395, -4313, -4318, -4314, -4315, -4311, -4316, -4319, - -1550, -1554, -4317, -1600, -1603, -4324, -4325, -3430, -4312, -2161, -4310 - ], - [0, -633, -674, -1107, -4327, -1654, -4326, -2250, -2251], - [1, 3, 5903], - [0, 5904, 0, 7, 4], - [0, -891, -10882], - [1, 3, 5906], - [0, 5907, 0, 160, 10], - [0, -567, -10883, -1493, -1566, -1571, -1967, -10884, -2055, -2069, -10885, -2489], - [1, 3, 5909], - [0, 5910, 5911, 5912, 8], - [0, -44, -10886, -10300, -10887, -5898, -10888, -2172, -6751, -10889], - [ - 0, -23, -5585, -3391, -38, -40, -43, -8380, -3621, -427, -428, -507, -534, -652, -708, -824, -10890, -920, -932, - -940, -943, -958, -964, -965, -967, -968, -1002, -10891, -1022, -1107, -1168, -1174, -1276, -10892, -1471, - -1479, -1482, -1483, -1491, -3079, -1492, -1650, -1654, -1656, -10893, -10894, -10895, -10896, -10897, -10898, - -1942, -1958, -2210, -10899, -2354, -2379, -2410, -2501, -10900 - ], - [0, -10684, -10901, -7163, -10902, -10903, -3215, -8130, -6240, -6245, -10904, -10905, -7521, -5119], - [1, 3, 5914], - [0, 5915, 5916, 7, 10], - [0, -6130, -10906, -5852], - [0, -1654, -2501], - [1, 3, 5918], - [0, 0, 5919, 5920, 9], - [0, -1654, -2250], - [0, -1616, -10907, -10908], - [1, 3, 5922], - [0, 5923, 5924, 5925, 4], - [0, -4251, -4231, -10909, -9596, -5348, -1638, -10910, -10911, -10912, -10913, -10869, -10914], - [0, -3037, -652, -10915, -928, -7324, -2586, -1290, -1619, -10916, -1942, -2094, -2100, -2334, -2399, -2410, -2541], - [0, -3272, -1599, -10881, -10917, -10918, -1838, -4132, -10919, -9590, -3590, -2444], - [1, 3, 5927], - [0, 5928, 5929, 5930, 5], - [0, -5334, -4251, -9581, -9596, -10920, -10921, -9583, -2429, -5358], - [0, -3037, -9586, -652, -1290, -1294, -1618, -10922, -10923, -1942, -2094, -2100, -2399, -2410, -2541], - [0, -9590, -10918, -10917, -9589, -9588, -2444, -3590, -1599, -3264], - [1, 3, 5932], - [0, 0, 5933, 5934, 6], - [0, -469, -4712], - [0, -6582, -10924, -10925, -775], - [1, 3, 5936], - [0, 5937, 0, 5938, 5], - [0, -10926, -10927], - [0, -10928, -3324, -3323, -9844, -10929, -10930, -10931, -10932, -1622, -10933, -7684], - [1, 3, 5940], - [0, 5941, 5942, 5943, 4], - [0, -10934, -10935, -10936, -10937, -10938, -10939, -10940, -10941, -10942, -10943, -10944, -10945, -10946, -2387], - [ - 0, -3136, -6325, -3037, -496, -507, -640, -1331, -1344, -10947, -1415, -1848, -1942, -1958, -2062, -2125, -2325, - -2375, -2376, -2379, -2388, -10948, -2410, -2435, -2444, -2501, -2503, -2505 - ], - [ - 0, -1076, -7422, -10949, -1626, -1623, -6656, -8801, -10467, -10412, -10950, -9614, -4004, -3634, -4215, -10951, - -10952, -10953, -10954, -10955, -10956, -10957, -10958 - ], - [1, 3, 5945], - [0, 0, 5946, 5947, 5], - [ - 0, -5295, -3268, -3136, -10959, -8216, -3037, -427, -428, -589, -767, -932, -940, -959, -967, -1002, -10960, - -1415, -1559, -1565, -1605, -10961, -5969, -9642, -10962, -1816, -1942, -2125, -2127, -2138, -2140, -2141, - -2214, -2375, -2379, -2387, -2410 - ], - [0, -5913, -10963, -3324, -6187], - [1, 3, 5949], - [0, 0, 5950, 5951, 5], - [0, -664, -1168, -2210, -10964, -1231, -2211, -1224, -1220, -1453], - [0, -3324, -10965, -5493, -6005], - [1, 3, 5953], - [0, 5954, 5955, 5956, 8], - [0, -10966, -2062], - [0, -599, -6774, -756, -932, -1405, -1654, -2198], - [0, -1076, -10412], - [1, 3, 5958], - [0, 0, 5959, 5960, 5], - [0, -1003, -1654, -1127, -1132, -1156, -1144, -1980], - [0, -10412, -4004, -5827, -3674, -8027, -640], - [1, 3, 5962], - [0, 0, 5963, 7, 4], - [0, -1654, -2198, -1733], - [1, 3, 5965], - [0, 68, 15, 16, 6], - [1, 3, 5967], - [0, 0, 5968, 5969, 5], - [ - 0, -350, -4062, -351, -5918, -5686, -519, -10967, -722, -813, -10968, -10969, -999, -1111, -1366, -10970, -6904, - -3609, -2060, -5120, -2127, -2132, -2134, -4621, -10971, -2384, -2400, -2410, -2541, -2551 - ], - [ - 0, -687, -8425, -2444, -3590, -4187, -4378, -3957, -6722, -1630, -10972, -10973, -3215, -5829, -5272, -3962, - -7095, -4000 - ], - [1, 3, 5971], - [0, 0, 5972, 5973, 4], - [0, -3035, -3621, -3037, -664, -726, -1654, -2410, -2501, -2503], - [0, -1631, -7371, -1015, -702, -7208, -4865], - [1, 3, 5975], - [0, 0, 5976, 7, 4], - [0, -10974, -1405], - [1, 3, 5978], - [0, 5979, 5980, 5981, 4], - [0, -679, -719, -812, -1125, -6796, -10975, -1639, -10976, -10977], - [ - 0, -3244, -190, -10978, -4715, -3198, -4036, -3037, -10979, -652, -932, -958, -965, -1110, -1654, -1942, -2091, - -2362, -2410 - ], - [0, -5142, -5372, -6656, -9204, -3258, -3260, -3262, -1599, -3259, -1633, -2548], - [1, 3, 5983], - [0, 5984, 0, 7, 10], - [0, -10980, -5676, -1343, -10981, -10982, -2125, -2177, -2323, -2359], - [1, 3, 5986], - [0, 5987, 5988, 7, 8], - [0, -2453, -812, -1636, -1840], - [0, -1654, -932, -1405, -2293, -966, -958, -968, -943, -963, -974], - [1, 3, 5990], - [0, 0, 5991, 5992, 5], - [0, -1654, -1405], - [0, -1334, -1636], - [1, 3, 5994], - [0, 5995, 5996, 5997, 11], - [ - 0, -23, -26, -10983, -3077, -3203, -3408, -3357, -40, -6056, -41, -4066, -3326, -350, -4062, -351, -10984, - -10985, -518, -3766, -10986, -10987, -9459, -644, -656, -930, -1044, -1273, -1496, -1566, -1889, -1948, -2127, - -5994, -4753, -2140, -2142, -2144, -5037, -2334, -10988, -2387, -2410 - ], - [ - 0, -21, -5870, -10989, -8280, -50, -533, -767, -10990, -932, -10991, -940, -967, -985, -1077, -1344, -1415, - -1534, -10992, -1942, -2082, -2125, -2194, -2269 - ], - [0, -4161, -2127, -10993], - [1, 3, 5999], - [0, 6000, 0, 6001, 4], - [ - 0, -3198, -812, -10909, -9596, -10863, -10994, -7666, -10995, -10996, -10910, -2785, -10912, -10997, -10920, - -10998, -10913, -10869 - ], - [ - 0, -8630, -3116, -4329, -3264, -7184, -1599, -10881, -3437, -2427, -1838, -3215, -3862, -1958, -2093, -7650, - -4065, -8451, -3579 - ], - [1, 3, 6003], - [0, 6004, 6005, 6006, 5], - [0, -9968, -1864], - [0, -1654, -1645, -10999, -1202], - [ - 0, -6836, -11000, -11001, -7727, -11002, -8130, -9969, -11003, -6656, -6999, -7724, -5573, -1107, -9095, -9096, - -9970, -11004, -11005, -11006, -5572, -5912, -3581, -10590, -1639, -1645, -1686, -11007, -11008, -1847, -5574, - -5064, -11009, -5569, -5570, -8129, -5550, -11010, -9087 - ], - [1, 3, 6008], - [0, 0, 6009, 6010, 4], - [0, -11011, -3713, -3037, -427, -428, -668, -11012, -1641, -1942, -11013, -11014, -2410], - [0, -5195, -6656, -1640, -11015, -11016, -2444], - [1, 3, 6012], - [0, 6013, 129, 6014, 10], - [0, -11015], - [0, -1640, -3694], - [1, 3, 6016], - [0, 119, 120, 6017, 4], - [ - 0, -11017, -11018, -11019, -11020, -11021, -11022, -11023, -11024, -11025, -11018, -11026, -11027, -11028, - -11029, -11030, -11031, -11032, -11033, -11034, -11035, -11036, -9234, -11037, -11038, -11039, -11040, -11041, - -11042, -11043, -11044, -11045, -11046, -7530, -11047, -11048, -7561, -7562, -3214, -7484, -7485, -3756, -2410, - -7486, -4165, -3018, -11049, -7283, -6582, -7534, -7535, -7536, -7537, -7538, -7539, -7540, -7541, -7542, -7543, - -7544, -7545, -8807, -6599, -5756, -11050, -11051, -7503, -7371, -7546, -7547, -7548, -6948, -7549, -7550, - -7551, -7552, -7553, -7554, -7555, -7556, -7557, -2444, -7558, -7559, -5063, -7560, -11052, -6187, -7563, -856, - -7275 - ], - [1, 3, 6019], - [0, 6020, 6021, 6022, 11], - [0, -2168, -2321], - [ - 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -3037, -620, -767, -774, -778, -824, -825, -920, -932, -940, - -6929, -958, -959, -960, -965, -967, -978, -1041, -1110, -1344, -1415, -1419, -1449, -1534, -1623, -1771, -1942, - -2162, -2163, -2251, -2410, -2411, -2501, -2503, -2505 - ], - [0, -2501, -775, -7347, -6211], - [1, 3, 6024], - [0, 6025, 6026, 6027, 5], - [0, -11053, -367, -683, -11054, -812, -928, -1047, -11055, -3751, -11056, -11057, -2334, -11058, -11059], - [0, -11060, -932, -11061, -11062, -4653, -11063], - [0, -1644, -7173, -3756, -775, -5094, -3264, -6118], - [1, 3, 6029], - [0, 6030, 6031, 7, 11], - [0, -11064], - [0, -2319, -2386, -1650, -2402, -1942, -3037], - [1, 3, 6033], - [0, 0, 6034, 6035, 4], - [0, -515, -1788, -2322, -932, -1777, -1365, -516, -2156, -5834], - [0, -4378, -9568, -3215, -1813], - [1, 3, 6037], - [0, 6038, 6039, 6040, 4], - [0, -719, -1730], - [0, -8477, -1415, -1942, -2375, -2410], - [0, -11065, -11066, -11067], - [1, 3, 6042], - [0, 0, 6043, 6044, 9], - [0, -11068, -3037, -5866, -652, -940, -1942, -2319, -2379, -2402, -2410], - [0, -8988, -7421, -11069, -9218, -11070, -7371, -5269], - [1, 3, 6046], - [0, 6047, 6048, 7, 5], - [0, -461, -1852, -6568, -11071], - [0, -3037, -3664, -672, -932, -944, -3190, -1431, -1942, -6570, -2410, -2423, -2469], - [1, 3, 6050], - [0, 0, 6051, 6052, 4], - [0, -23, -26, -33, -38, -40, -42, -44, -11072, -1059], - [0, -1652, -11073, -5927, -3159, -2006, -3476, -11074, -6106, -11075, -11076, -11077, -11078], - [1, 3, 6054], - [0, 6055, 6056, 6057, 5], - [0, -11079], - [0, -1652, -11079, -11080], - [0, -1652, -11073, -3159, -2006, -3476, -11074], - [1, 3, 6059], - [0, 6060, 6061, 6062, 4], - [ - 0, -1297, -1681, -834, -1107, -812, -2550, -1047, -1442, -679, -1645, -1863, -3730, -1574, -2551, -11081, -7408, - -2297, -11082, -2271, -930, -2182 - ], - [ - 0, -1788, -664, -1498, -1446, -1471, -2210, -11083, -932, -1708, -2093, -2125, -2127, -2177, -1110, -11084, - -2501, -1942, -767, -190, -11085, -2410, -11086, -3037, -1339, -1482, -1600, -2503, -3041, -711, -1607, -1772, - -4655, -27, -11087, -11088, -11089, -11090, -965, -3781, -1609, -11091, -3425, -1603, -3060, -1601, -4062, - -11092, -4066, -1483, -1488, -1475, -350, -11093, -2144, -5995, -2136, -351, -9701, -11094, -11095 - ], - [0, -1654, -4004, -3440, -4873, -2319, -3634, -664, -5855, -519, -1415, -2322, -1412, -1471], - [1, 3, 6064], - [0, 6065, 6066, 6067, 6], - [0, -4377, -1978], - [0, -664, -1654, -10534, -2410], - [0, -1654, -3636, -1978, -11096], - [1, 3, 6069], - [0, 6070, 6071, 6072, 5], - [0, -812, -1616, -1650, -2269, -6597], - [0, -357, -664, -11097, -932, -1654, -2125, -11098, -11099], - [0, -1654, -11100, -6863], - [1, 3, 6074], - [0, 0, 0, 6075, 11], - [0, -1654, -6863, -11101, -4005], - [1, 3, 6077], - [0, 0, 6078, 6079, 5], - [0, -664, -932, -9072, -1654, -2125, -2177], - [0, -4215, -1076, -4004, -8101, -8801, -10412], - [1, 3, 6081], - [0, 6082, 6083, 6084, 8], - [0, -11102, -1083, -11103, -11104, -1285, -1402, -1794], - [ - 0, -2832, -5834, -8084, -11105, -11106, -11107, -11108, -11109, -8088, -11110, -8089, -8939, -8090, -8091, - -8092, -8093, -3037, -11111, -8094, -8096, -516, -5835, -921, -932, -993, -1065, -1283, -1365, -1777, -1788, - -2156, -2322 - ], - [0, -3634, -4215, -7208, -7153, -5846, -11112, -4004, -6693, -11113], - [1, 3, 6086], - [0, 6087, 6088, 231, 4], - [0, -5505, -1759], - [0, -767, -932, -1654], - [1, 3, 6090], - [0, 0, 27, 6091, 6], - [0, -4004, -4215, -3966, -1076, -3972], - [1, 3, 6093], - [0, 0, 6094, 6095, 5], - [0, -1654, -2127, -2142, -2198, -2410], - [0, -4121, -4215, -4004], - [1, 3, 6097], - [0, 0, 6098, 6099, 6], - [0, -1405, -1452, -2210, -11115, -2471], - [0, -4215, -8611, -4792, -3551, -3324, -5119, -4004, -11116, -3634, -4873], - [1, 3, 6101], - [0, 75, 6102, 6103, 5], - [0, -1168, -1190, -11117, -1220, -1224, -1231, -11118, -1452, -1453, -2501], - [0, -4215, -11119, -11120], - [1, 3, 6105], - [0, 6106, 6107, 6108, 4], - [0, -4377, -1107, -1496, -1548, -11121, -1582, -1729, -995, -11122, -11123], - [ - 0, -1435, -2384, -11124, -1415, -1680, -11125, -1867, -812, -11126, -648, -11127, -865, -932, -1576, -11128, - -473, -1388, -1753, -11129, -2379, -2520, -11130, -11131, -1417, -11132, -1942, -756, -11133, -1418, -1765, - -2293, -11134, -1969, -2410, -11135, -3037, -11136, -11137, -11138, -11139, -11140, -11141, -11142, -11143, - -10453, -11144, -11145, -966, -11146, -357, -11147, -968, -940, -967, -972 - ], - [0, -11148, -6209, -3161, -3445, -11149, -7586, -11150, -11151, -5078, -9840, -11152], - [1, 3, 6110], - [0, 0, 6111, 6112, 5], - [0, -1989, -2127, -767, -2410, -3037, -1488], - [0, -1666, -4121, -4123, -1838, -3276, -5874, -1348, -9772, -11153], - [1, 3, 6114], - [0, 6115, 6116, 6117, 4], - [0, -1666], - [0, -1127, -1134, -1144, -1146, -1148, -10264, -2410], - [0, -1666, -4121, -4123, -11154, -11155, -11156, -11157, -11158], - [1, 3, 6119], - [0, 6120, 6121, 6122, 5], - [0, -1461, -11159, -11160, -11161, -11162, -1848, -1942, -11163, -11164, -11165, -2548], - [0, -11166, -2970, -3664, -928, -9002, -1874, -2094, -11167, -2410, -2469, -11168], - [0, -3496, -3100, -3577, -11169, -9002, -2548], - [1, 3, 6124], - [0, 0, 6125, 6126, 10], - [ - 0, -190, -3037, -3664, -932, -940, -972, -978, -1942, -2125, -2402, -2405, -7322, -2410, -2411, -2466, -6859, - -2469 - ], - [0, -11170, -11171, -11172, -5829, -11173, -3577, -3445], - [1, 3, 6128], - [0, 6129, 6130, 6131, 8], - [ - 0, -6779, -11174, -6780, -6777, -11175, -6776, -8843, -11176, -11177, -2997, -11178, -617, -620, -11179, -637, - -709, -719, -744, -767, -787, -865, -919, -1004, -4206, -1010, -1055, -11180, -11181, -1320, -1437, -3725, - -1635, -1671, -11182, -1676, -1863, -11183, -2185 - ], - [ - 0, -23, -32, -40, -11184, -11185, -534, -664, -684, -726, -748, -778, -795, -932, -934, -958, -978, -11186, - -1041, -1344, -1654, -11187, -1734, -1753, -2275, -2293, -2501, -2503 - ], - [0, -8856, -11188, -7558, -7685, -11189, -3964, -11190, -11191, -6857, -1671, -11192, -11193, -11194], - [1, 3, 6133], - [0, 6134, 6135, 6136, 8], - [0, -637, -11195, -11196], - [ - 0, -1788, -2384, -11197, -664, -668, -1654, -2210, -11198, -2550, -932, -2177, -11199, -1004, -1442, -2379, - -1942, -2211, -2410, -3241, -3035, -3037, -667, -11200, -3621, -4372, -11201, -3199, -3617, -11202, -11203, - -11204, -11205, -3625, -11206, -11207, -2234, -964, -977, -940, -967, -264, -262, -428, -11208, -6424, -9724, - -11209, -427, -4814, -234 - ], - [0, -1671, -9879, -5041], - [1, 3, 6138], - [0, 6139, 6140, 6141, 10], - [0, -11210, -1671, -11211, -11212, -1681, -11213], - [ - 0, -11214, -11215, -3037, -11216, -11217, -11218, -469, -652, -674, -7743, -932, -5984, -1004, -1077, -1304, - -9150, -1559, -11219, -8554, -1610, -1650, -1654, -1666, -11208, -11187, -11220, -1705, -1974, -2210, -2655, - -2410, -2411, -2446 - ], - [0, -1671, -10855, -6106, -4058, -7685, -11221, -6582, -11222, -5101, -7684, -1818, -7773], - [1, 3, 6143], - [0, 6144, 232, 6145, 5], - [0, -763, -727, -573, -2228, -2424, -2229, -11223], - [0, -1673, -11224, -11225, -8841, -11226, -11227], - [1, 3, 6147], - [0, 6148, 232, 6149, 5], - [0, -727, -729, -1673, -11228, -11223], - [0, -1673, -11229, -11224, -11225, -11230, -5412, -8841, -11231], - [1, 3, 6151], - [0, 6152, 6153, 6154, 8], - [0, -11232, -812, -1671, -11233, -11234, -11235, -11236, -11237, -11238, -1792], - [ - 0, -519, -708, -932, -943, -950, -958, -966, -968, -974, -11239, -11240, -11241, -11242, -11243, -11244, -11245, - -1788 - ], - [0, -1675, -1671, -6857, -9879], - [1, 3, 6156], - [0, 6157, 6158, 6159, 5], - [0, -579, -812, -828, -1800, -6825], - [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2239, -2293], - [0, -1004, -1334, -3444, -5401], - [1, 3, 6161], - [0, 44, 15, 16, 10], - [1, 3, 6163], - [0, 6164, 6165, 6166, 10], - [ - 0, -2531, -2124, -812, -11198, -2240, -11246, -11247, -1646, -4204, -1582, -11248, -725, -11249, -2062, -11250, - -6279 - ], - [ - 0, -1788, -664, -2322, -2210, -932, -1109, -1650, -2125, -2198, -2226, -928, -1110, -2379, -679, -1942, -11251, - -190, -1939, -2091, -2410, -3035, -3037, -8096, -4372, -908, -11252, -11253, -3244, -11254, -5325, -3311, -4805, - -11255, -958, -940, -967, -428, -740, -3312, -11256, -427, -4646 - ], - [0, -1680, -11257, -8403, -8404], - [1, 3, 6168], - [0, 0, 6169, 7, 8], - [0, -1344, -1654, -932, -1942, -1003, -1534], - [1, 3, 6171], - [0, 6172, 6173, 6174, 10], - [0, -11258, -719, -812, -10414, -10417], - [0, -86, -3307, -7040, -3472, -7041, -7042, -1654, -2174, -2250], - [0, -7685, -1682, -10424, -3844, -11259, -10704, -11260, -11261, -10417, -11262, -10704, -11263, -5800, -11264], - [1, 3, 6176], - [0, 6177, 6178, 6179, 11], - [ - 0, -2946, -269, -4190, -11265, -743, -1122, -11266, -4193, -4194, -1851, -1863, -11267, -2255, -4195, -2364, - -2400, -11268, -2550 - ], - [ - 0, -86, -3307, -11269, -3244, -190, -11270, -3316, -4196, -4197, -3983, -3617, -11271, -3037, -11272, -427, - -428, -3310, -523, -5859, -720, -767, -768, -796, -928, -3808, -932, -940, -967, -1004, -1030, -8151, -1107, - -1449, -11273, -1498, -1534, -11274, -1942, -2910, -2082, -2125, -3246, -2391, -2410, -2411, -2426, -2437, - -2469, -4209, -2501, -4211, -1683 - ], - [0, -3690, -4215, -4041, -8615, -10807, -3844, -5196, -8481, -3634, -3577, -4725], - [1, 3, 6181], - [0, 6182, 6183, 6184, 4], - [0, -11275, -649, -725, -1650, -1792, -2401, -2546], - [0, -821, -1004, -1069, -11276, -1654, -1788, -2125, -2250, -11277], - [0, -4053, -9751, -6463, -1069, -11278, -1004, -5401], - [1, 3, 6186], - [0, 6187, 14, 6188, 4], - [0, -9491, -11279, -1645], - [0, -7727, -5573, -1107, -9095, -9096, -5572, -5912, -1645, -5574, -5064, -9087], - [1, 3, 6190], - [0, 6191, 6192, 6193, 5], - [0, -2418, -1335, -2155], - [0, -1788, -11280, -1654, -932, -1650, -2125, -2291, -2108, -963], - [0, -6656, -7764, -1070, -5827, -5940], - [1, 3, 6195], - [0, 6196, 6197, 6198, 4], - [0, -5573, -1077, -1462, -1548, -3222, -1805, -2446], - [0, -1412, -1788, -11281, -2091], - [0, -793, -3264, -11282, -1688, -11283, -11284], - [1, 3, 6200], - [0, 0, 6201, 6202, 4], - [0, -985, -664, -2568, -1654, -932, -1452, -2127, -1978, -2416], - [0, -1689, -3110, -3261, -888], - [1, 3, 6204], - [0, 0, 6205, 6206, 10], - [ - 0, -865, -1168, -1197, -1251, -1344, -1471, -1475, -1485, -1488, -11285, -11286, -1942, -10496, -1989, -2125, - -2127, -2334, -11287 - ], - [0, -4672, -3999, -11288, -7724, -7283, -7581], - [1, 3, 6208], - [0, 6209, 6210, 7, 11], - [0, -595, -2062, -2155, -11289], - [0, -465, -932, -2172, -11290, -11291, -11292], - [1, 3, 6212], - [0, 6213, 6214, 6215, 4], - [0, -1578, -9953, -10401, -1351, -11293, -11294, -11295, -11296], - [ - 0, -652, -2392, -11297, -1110, -1942, -589, -767, -190, -1888, -2410, -3037, -11298, -3244, -3560, -3606, -940, - -967, -428, -11299, -427, -5706 - ], - [0, -1691, -3323, -3844], - [1, 3, 6217], - [0, 6218, 6219, 6220, 11], - [0, -8993, -1792, -8994], - [0, -1405, -615, -1654], - [0, -8124, -1961, -11300, -11301, -3184], - [1, 3, 6222], - [0, 0, 6223, 6224, 4], - [0, -11302], - [0, -1784, -3966, -9318, -9800, -11303, -3966, -7304, -6845], - [1, 3, 6226], - [0, 0, 6227, 7, 4], - [0, -596, -719, -1107, -2105, -2062, -2319, -2546], - [1, 3, 6229], - [0, 0, 6230, 6231, 4], - [0, -2426, -3037, -2410], - [0, -11304, -6582, -2105, -4055, -7684, -11151, -1697, -7685], - [1, 3, 6233], - [0, 6234, 6235, 6236, 5], - [0, -3115, -781, -786, -11305, -10883, -11306, -7222, -3768], - [ - 0, -4757, -4754, -4749, -3136, -3037, -3140, -3040, -932, -4650, -1344, -11307, -1415, -1520, -11308, -1534, - -1942, -1967, -2006, -2019, -2052, -2125, -2234, -2376, -2387, -2410, -2501, -2502, -2505, -2552 - ], - [ - 0, -775, -5553, -3770, -11309, -1697, -11310, -2006, -3756, -11311, -3771, -11312, -11313, -3095, -2278, -11314, - -11315, -3271 - ], - [1, 3, 6238], - [0, 0, 0, 6239, 8], - [0, -2446, -6555, -7231, -2435], - [1, 3, 6241], - [0, 6242, 6243, 6244, 4], - [0, -7872, -523, -893, -1077, -11316, -11317, -1577, -1705, -11318, -2160, -2234, -2359, -2550], - [ - 0, -3198, -3048, -11319, -3136, -9143, -3037, -11320, -3628, -3041, -427, -428, -891, -932, -940, -967, -1415, - -1874, -1942, -2125, -2376, -2410, -2501, -2503 - ], - [0, -11321, -891, -3994, -5269, -8911], - [1, 3, 6246], - [0, 6247, 6248, 6249, 6], - [ - 0, -2531, -1816, -2323, -1430, -1805, -2446, -523, -712, -1875, -2550, -8898, -1548, -1576, -1610, -1650, -1831, - -2177, -7680, -2519, -2536, -987, -1966, -2195, -501, -679, -1942, -1981, -2378, -1645, -11322, -695, -2205, - -2231, -2410, -11323, -3950, -11324, -11325, -11326, -8888, -11327, -11328, -6294, -7772, -1982, -280, -11329, - -11330, -11331, -742, -8880, -11332, -11333, -11334, -11335, -11336 - ], - [ - 0, -664, -1127, -1344, -1654, -2210, -10645, -1405, -4204, -5673, -3035, -3037, -3738, -1162, -1534, -4248, - -11337, -11338, -4372, -3041, -11339, -3044, -11340, -3199, -11341, -11342, -11343, -3735, -3714, -6114, -11344, - -11345, -665, -1138, -2234, -1134, -1149, -11346, -11347, -4269, -11348, -3202, -11349, -740 - ], - [0, -1702, -2410, -3214], - [1, 3, 6251], - [0, 6252, 6253, 6254, 6], - [0, -11350, -11351, -11352, -865, -1339, -11353, -1672, -1857, -2071, -7967, -11354, -10899, -2424, -2446, -11355], - [ - 0, -350, -4062, -351, -9705, -3037, -427, -11356, -767, -932, -9106, -958, -965, -968, -1168, -1222, -11357, - -1412, -1413, -7148, -1705, -1788, -11358, -1972, -2125, -2127, -2210, -2234, -2250, -2379, -6416, -2410, - -11359, -2501, -7752 - ], - [ - 0, -11360, -11361, -7281, -11362, -11363, -3579, -11364, -11365, -11366, -11367, -11368, -11369, -11370, -11371, - -11372, -11373, -11374, -11375, -11376, -11377, -11378, -11379, -11380, -11381, -11382, -11383, -11384, -11385, - -11386 - ], - [1, 3, 6256], - [0, 6257, 6258, 6259, 9], - [0, -1371, -510, -2550, -11387], - [0, -1788, -2471, -932, -756, -11388, -2091, -4646], - [0, -3870, -11389, -11390], - [1, 3, 6261], - [0, 0, 6262, 6263, 5], - [0, -1654, -2125, -8986], - [0, -687, -6351], - [1, 3, 6265], - [0, 0, 6266, 6267, 5], - [0, -3037, -3040, -427, -428, -749, -932, -940, -967, -969, -970, -1380, -1942, -2387, -2410], - [0, -11391, -3486, -2006, -3994, -11392, -11393, -5069, -3445], - [1, 3, 6269], - [0, 6270, 6271, 6272, 4], - [0, -510, -1650, -2424, -1545, -11394], - [0, -664, -1654, -2210, -2105, -719, -11395], - [0, -7685, -11222, -10712], - [1, 3, 6274], - [0, 6275, 6276, 6277, 5], - [0, -1351, -2165], - [0, -1464, -7623, -1654, -1976, -1980, -2198, -2210, -2536], - [0, -1334, -1342, -5493, -2105, -3323, -6463, -7764, -1971, -6827, -7430, -9791, -9788, -743, -8937], - [1, 3, 6279], - [0, 6280, 0, 6281, 5], - [0, -11396, -11397, -719, -755, -1376], - [0, -687, -5406, -9668, -3957, -3958, -11398, -11313], - [1, 3, 6283], - [0, 6284, 6285, 6286, 8], - [ - 0, -11399, -510, -11400, -5676, -695, -714, -719, -790, -1044, -11401, -1548, -1650, -11402, -11403, -11404, - -11405, -1951, -2177, -11406, -2524, -2538 - ], - [ - 0, -11407, -664, -829, -11408, -7829, -932, -960, -7819, -964, -972, -1442, -1654, -1722, -1788, -11409, -2070, - -2188, -2195, -2210, -2536 - ], - [0, -1710, -11410, -3690, -3634, -6657, -11411, -3691], - [1, 3, 6288], - [0, 6289, 6290, 6291, 4], - [ - 0, -11412, -7603, -7604, -11413, -5038, -5777, -5775, -5791, -5779, -5778, -5780, -5782, -11414, -725, -1343, - -11415, -11273, -1459, -11416, -2062, -11417, -2177, -2522 - ], - [ - 0, -3698, -11418, -11419, -11420, -11421, -11422, -305, -11423, -11424, -11425, -469, -510, -521, -2917, -652, - -5980, -719, -741, -6906, -5983, -932, -960, -11426, -1107, -1116, -1344, -1446, -1534, -1547, -1722, -1969, - -1972, -2125, -11427, -2210, -2291 - ], - [0, -5805, -6187, -11230, -6032, -11428, -11429], - [1, 3, 6293], - [0, 6294, 6295, 6296, 5], - [0, -44, -11430, -743, -5193, -1791, -11431, -1940, -10105, -2446], - [ - 0, -3168, -21, -23, -6064, -38, -40, -41, -42, -11432, -367, -7043, -406, -407, -409, -2622, -410, -3136, -3037, - -11433, -11434, -3040, -3052, -518, -11435, -11436, -726, -784, -1415, -1419, -1428, -1683, -2634, -1889, -1891, - -1916, -2006, -2019, -2516 - ], - [0, -2006, -3967, -1791, -3175, -11437, -3173, -1713, -7204, -3177, -11438], - [1, 3, 6298], - [0, 0, 0, 6299, 5], - [0, -2634, -510, -11439, -11440], - [1, 3, 6301], - [0, 0, 0, 6302, 10], - [ - 0, -475, -4004, -3634, -4215, -4041, -3095, -8223, -11441, -11442, -5196, -11443, -11444, -3100, -3577, -1415, - -1412, -915, -8611, -6137 - ], - [1, 3, 6304], - [0, 6305, 0, 6306, 4], - [0, -5, -11445, -3946, -807, -2387], - [0, -3158, -3099, -475, -3160, -3161, -3100], - [1, 3, 6308], - [0, 6309, 6310, 6311, 4], - [0, -1116, -2446, -2548, -7004, -1018, -1552], - [0, -664, -668, -1654, -2210, -3037], - [0, -1716, -11446, -11447, -1546, -11448], - [1, 3, 6313], - [0, 0, 6314, 7, 10], - [0, -664, -729, -1654, -1974, -2187, -2286], - [1, 3, 6316], - [0, 6317, 6318, 6319, 6], - [0, -812, -11449, -10659, -891, -11450, -11451, -1451, -11452, -1650, -6810, -1801, -2125, -11453, -2240], - [ - 0, -510, -579, -11178, -615, -664, -665, -932, -940, -967, -1004, -1344, -1654, -11454, -1685, -1880, -1942, - -2187, -2239 - ], - [0, -1718, -891], - [1, 3, 6321], - [0, 6322, 6323, 6324, 6], - [ - 0, -11455, -11456, -11457, -3035, -11458, -6192, -5113, -6535, -623, -11459, -668, -680, -695, -11460, -11461, - -865, -888, -914, -1107, -1449, -1548, -1645, -1646, -1654, -11462, -1805, -1816, -8563, -2173, -2177, -11463, - -2269, -2430, -2446 - ], - [ - 0, -99, -367, -3037, -427, -428, -749, -767, -932, -1344, -1392, -1442, -1534, -1656, -3038, -11464, -11465, - -1663, -1722, -1788, -2006, -2019, -2125, -2184, -2379, -2384, -2648 - ], - [ - 0, -1719, -11466, -11467, -3634, -11468, -2734, -4867, -11469, -4866, -3095, -4868, -4004, -4865, -3162, -4043, - -5769, -793, -1654, -4864 - ], - [1, 3, 6326], - [0, 6327, 6328, 6329, 8], - [0, -4884, -357, -11470, -7755, -1851], - [0, -4888, -11471, -633, -1344, -1449, -11472, -1534, -1654, -11473, -1788, -1942, -1972, -11474, -11475], - [0, -4004, -3634, -8959, -4215, -2533, -3844], - [1, 3, 6331], - [0, 6332, 6333, 7, 4], - [0, -11476, -269, -1459], - [ - 0, -1116, -1788, -664, -1415, -1654, -2210, -932, -2125, -1942, -1069, -838, -1972, -2211, -2410, -1771, -6522, - -2174, -966, -964, -357, -958, -968, -940, -943, -3775 - ], - [1, 3, 6335], - [0, 0, 6336, 6337, 11], - [0, -589, -596, -11477, -932, -1077, -2884, -1939, -2177], - [0, -11478, -11479, -6249, -5269, -596, -6251, -6252, -1696, -1723], - [1, 3, 6339], - [0, 6340, 6341, 6342, 4], - [0, -702], - [ - 0, -1788, -1127, -1654, -2198, -756, -1132, -7845, -2410, -3037, -7887, -710, -11480, -9280, -1134, -1149, - -11481, -11482 - ], - [0, -3324, -6491, -8427, -3833, -6809, -10412, -11483, -3966, -1622, -7208], - [1, 3, 6344], - [0, 0, 6345, 6346, 4], - [0, -3037, -11484, -1077, -1344, -1654, -1788, -2125, -2410, -11485], - [0, -3966, -11486, -5574, -7534, -11487, -7371, -6974, -6582, -5847, -11488, -856], - [1, 3, 6348], - [0, 6349, 6350, 6351, 6], - [0, -808, -11489, -11490, -1097, -1646, -1737, -2114, -2177], - [0, -3037, -932, -958, -1344, -1534, -1942, -2319, -11491, -2363, -2379, -2410], - [0, -9427, -11492, -2295, -1673, -2490], - [1, 3, 6353], - [0, 124, 70, 6354, 11], - [0, -1727, -7421, -11070, -11493, -6656, -6235, -7547, -1076], - [1, 3, 6356], - [0, 6357, 6358, 6359, 4], - [0, -9154, -11494, -11495, -11496], - [ - 0, -4646, -367, -3330, -427, -428, -3664, -7351, -774, -932, -7352, -954, -960, -961, -963, -965, -7353, -7354, - -971, -979, -7355, -1344, -7356, -1498, -1534, -1608, -1609, -1768, -7357, -1942, -7358, -1945, -2091, -11497, - -7359, -2391, -2410, -2469, -7360 - ], - [0, -10838, -5493, -10841, -10840, -11498, -11499, -11500, -11501, -11502, -11503], - [1, 3, 6361], - [0, 6362, 6363, 6364, 4], - [0, -7026, -11504, -8966], - [0, -458, -5993, -649, -652, -664, -665, -11505, -9077, -756, -1069, -5989, -1654, -1828, -11506, -2384, -2541], - [0, -4213, -1334, -1961, -2105, -9172, -9173, -2533, -5388], - [1, 3, 6366], - [0, 0, 6367, 6368, 6], - [ - 0, -633, -719, -767, -932, -11507, -1004, -1471, -1472, -1475, -1478, -1479, -1480, -1482, -1483, -1487, -1488, - -1490, -11508, -1492, -1654, -1657, -11509, -1788, -6696, -2501, -2503, -11510 - ], - [ - 0, -11511, -11512, -11513, -11514, -770, -5374, -11515, -11516, -11517, -11518, -1334, -1342, -1616, -5150, - -11519, -11520, -11521, -11522, -11523, -2191, -11524, -11525, -11526, -8905, -11527, -11528, -11529 - ], - [1, 3, 6370], - [0, 6371, 6372, 6373, 9], - [0, -523, -812, -1548], - [0, -664, -1654, -1972, -2210], - [0, -3939, -5801, -5737, -5741, -5271, -11530, -11517, -11531, -1050, -5270, -491, -11532], - [1, 3, 6375], - [0, 6376, 6377, 6378, 9], - [0, -615, -1729], - [0, -664, -932, -1415, -2210], - [0, -11533, -11534, -11535, -3939, -11536, -11537, -11538, -11539, -11540], - [1, 3, 6380], - [0, 6381, 6382, 6383, 4], - [0, -5672, -11541, -1119, -10521, -1758, -1957, -2177, -2323, -2654, -2518], - [0, -596, -767, -932, -1654, -1696, -2884, -11542], - [0, -5269, -6249, -3551, -6251, -6252, -596, -6250], - [1, 3, 6385], - [0, 6386, 6387, 6388, 5], - [0, -780, -1297], - [ - 0, -7177, -674, -767, -932, -11543, -1317, -11544, -11545, -11546, -6595, -11547, -1333, -11548, -11549, -1839, - -2125, -10301, -2251, -2379, -2552 - ], - [0, -3264, -3215, -3967, -2410], - [1, 3, 6390], - [0, 6391, 6392, 6393, 5], - [0, -510, -11550, -812, -1004, -1107, -1850, -2001, -2177, -2185, -11551, -11552, -11553, -2518, -2531, -2550], - [0, -664, -1077, -1380, -1452, -1654, -1764, -1961, -2125], - [0, -812, -7336, -6480, -6479], - [1, 3, 6395], - [0, 6396, 6397, 6398, 11], - [0, -459, -736, -828, -1072, -8438, -1636, -1640, -1840, -1997, -2401], - [ - 0, -3035, -3621, -427, -428, -664, -932, -934, -940, -958, -1344, -1654, -1788, -1942, -2210, -2211, -2379, - -2384, -2410 - ], - [0, -4215, -8611, -10327, -3967, -3756, -3634, -4004, -1334, -11554], - [1, 3, 6400], - [0, 6401, 6402, 6403, 10], - [0, -11555, -1401, -2177, -11556, -2446, -2518], - [0, -749, -767, -932, -942, -943, -958, -966, -968, -1344, -1415, -1534, -11557, -1942, -2125], - [0, -11558, -11559, -9258, -11560, -9262, -6721, -11561, -11562, -4127], - [1, 3, 6405], - [0, 6406, 6407, 6408, 5], - [0, -579], - [0, -617, -1004, -1654, -2198, -2293], - [0, -1791, -11437], - [1, 3, 6410], - [0, 89, 56, 57, 8], - [1, 3, 6412], - [0, 6413, 6414, 6415, 8], - [0, -8612, -1650, -1708, -1758, -1769, -1778, -2001, -2125, -2177, -2323], - [0, -521, -1452, -1722, -2322], - [0, -5269, -6249, -3551, -6251, -6252, -596, -7304], - [1, 3, 6417], - [0, 6418, 6419, 6420, 4], - [0, -1723], - [0, -1654, -932, -11563, -1733, -767, -2410, -3037, -3621, -428, -427], - [0, -11564, -3975, -3974, -11565, -11566, -11567], - [1, 3, 6422], - [0, 6423, 0, 6424, 8], - [0, -11568, -11569, -11570, -11571, -579, -583, -754, -1004, -1077, -11572, -1758, -2177], - [0, -3496, -11532, -11573, -5411], - [1, 3, 6426], - [0, 6427, 6428, 6429, 10], - [0, -1696, -1088, -1107, -1630, -668, -1548, -1733, -1099, -11574, -769, -11575, -11576, -11577, -10521], - [0, -1788, -1654, -932, -2125, -1077, -11578], - [0, -775, -9264, -3277, -2162, -3754, -5553], - [1, 3, 6431], - [0, 6432, 6433, 6434, 4], - [0, -5414, -11579, -11580], - [0, -1788, -2322, -2210, -468, -932], - [0, -7046, -4107, -5418, -763, -11581, -10950], - [1, 3, 6436], - [0, 6437, 0, 6438, 4], - [0, -1813, -714, -1640], - [0, -1334, -5142, -6656, -3844], - [1, 3, 6440], - [0, 0, 6441, 6442, 5], - [0, -1788], - [0, -7230, -11582, -2446], - [1, 3, 6444], - [0, 0, 6445, 6446, 10], - [0, -1077, -1654], - [0, -11583, -2490, -11584], - [1, 3, 6448], - [0, 6449, 0, 6450, 8], - [0, -6597, -2550], - [0, -11585, -7084, -5196, -11586, -5545, -5389, -11587, -11588, -11589, -4107], - [1, 3, 6452], - [0, 6453, 6454, 6455, 4], - [0, -2534], - [0, -11590, -11591, -3037, -932, -1942, -1944, -2391, -2410, -3924, -2469], - [0, -11592, -3215, -4258, -2534, -11593], - [1, 3, 6457], - [0, 6458, 6459, 6460, 11], - [0, -1285, -1391], - [0, -5834, -515, -932, -1365, -7393, -1777, -1788, -1797, -2156, -2322], - [0, -1015, -11594, -11595, -702, -6351, -11596], - [1, 3, 6462], - [0, 6463, 6464, 6465, 5], - [0, -1116, -1696, -1460, -1993, -1548, -2324, -1077, -1733, -1740], - [0, -2487, -1654, -1452, -521, -674, -11597, -1405, -526, -756, -1440, -11598, -7382, -559], - [0, -11599, -11600, -5889, -5269], - [1, 3, 6467], - [0, 0, 6468, 6469, 6], - [0, -11601, -648, -652, -932, -940, -1110, -11602, -11603, -11604, -11605, -1942, -1971, -11606, -7932], - [0, -11607], - [1, 3, 6471], - [0, 6472, 6473, 6474, 5], - [0, -679, -812, -5911, -1645, -11608, -2177, -7741, -2297, -2363, -11609], - [0, -86, -3307, -510, -710, -932, -1344, -1654, -1788, -1972, -2174, -2198], - [0, -687, -1673, -1673, -3113, -9427, -11610, -11492, -3974], - [1, 3, 6476], - [0, 6477, 0, 7, 5], - [0, -888, -2319], - [1, 3, 6479], - [0, 6480, 6481, 6482, 4], - [0, -2125, -867, -11611, -2550, -2177], - [0, -2105, -2322], - [0, -11612, -11613, -7856, -11321, -9668], - [1, 3, 6484], - [0, 6485, 0, 6486, 5], - [ - 0, -7603, -469, -470, -8547, -5329, -473, -11614, -523, -617, -679, -744, -754, -792, -1004, -4206, -11615, - -11616, -1107, -1299, -11617, -11618, -1460, -11619, -1465, -11620, -1581, -5460, -11621, -1671, -1680, -1707, - -7045, -11622, -1752, -1805, -1857, -11623, -2071, -11492, -2107, -11624, -11625, -2520, -3730, -2548, -2550 - ], - [ - 0, -11626, -1756, -3214, -3967, -3161, -3445, -3100, -5407, -11627, -11628, -11629, -11630, -4055, -11631, - -4058, -1460, -2548, -3994, -11632 - ], - [1, 3, 6488], - [0, 6489, 83, 6490, 4], - [0, -2424, -668], - [0, -7303, -11633, -4376, -6792, -3215], - [1, 3, 6492], - [0, 6493, 29, 7, 5], - [0, -9632], - [1, 3, 6495], - [0, 0, 6496, 6497, 8], - [0, -1202, -1646, -1654], - [ - 0, -11634, -11635, -11636, -6656, -11637, -7693, -7839, -11638, -11639, -1076, -6811, -1847, -9358, -6517, - -2218, -11640, -11641, -11642, -11643 - ], - [1, 3, 6499], - [0, 0, 14, 6500, 4], - [0, -6811, -2435, -9171, -6558, -2265, -11644, -11645, -5101, -1985, -11646, -6817, -11647, -11648], - [1, 3, 6502], - [0, 0, 0, 6503, 5], - [0, -11649, -11644, -4865], - [1, 3, 6505], - [0, 6506, 6507, 6508, 4], - [ - 0, -668, -6793, -700, -755, -824, -2762, -930, -999, -11650, -11651, -1315, -6770, -1363, -1376, -1394, -11652, - -11653, -11654, -1535, -11655, -1574, -1630, -11656, -11657, -9050, -1805, -11658, -10270, -1849, -3609, -2060, - -2153, -2177, -5746, -3669, -2433 - ], - [0, -9154, -3199, -519, -722, -9982, -1077, -11659, -2210, -2269, -2331, -11660, -2541], - [0, -5732, -687, -1764, -8403, -5889, -5737, -9318, -6453, -5890], - [1, 3, 6510], - [0, 6511, 6512, 6513, 4], - [ - 0, -1681, -1371, -2323, -1107, -1758, -2059, -2247, -11661, -668, -1826, -2518, -9632, -1831, -2177, -4287, - -680, -11662, -9084, -1733, -1957, -11663, -1645, -4296, -4279, -1527, -1528, -1529, -11664, -11665, -2343, - -11666, -1119, -11667, -10513, -11668, -11669, -10517, -11670, -11671, -4285, -2297, -1315, -1767, -1982, -280, - -11672, -10520, -10521, -11673, -4291, -11674, -283, -4290, -1770, -11675, -11676, -4292, -4283, -4306, -8266, - -281, -2450, -4281, -4278, -11677 - ], - [ - 0, -469, -2319, -834, -1722, -4307, -2093, -2125, -695, -2095, -11678, -470, -11679, -1769, -4655, -11680, - -11681, -4300, -4298, -4299, -11682 - ], - [0, -1380, -3209, -11683, -10484], - [1, 3, 6515], - [0, 6516, 6517, 6518, 4], - [ - 0, -705, -1816, -1630, -668, -999, -1392, -2546, -11684, -1111, -1548, -2177, -11685, -1871, -827, -1376, -1645, - -1728, -2269, -2343, -1849, -11686, -5895, -11687, -6197, -11688, -2433, -11689 - ], - [0, -2541, -526, -567, -559, -555, -551], - [0, -1764, -11690, -3015, -7441, -5887, -7440, -11691, -3690, -9845, -687, -9594, -11692, -11693, -7856, -3016], - [1, 3, 6520], - [0, 0, 6521, 6522, 4], - [ - 0, -11694, -7057, -3035, -4269, -11695, -11696, -5361, -11697, -3660, -11698, -3044, -3621, -3037, -11699, - -11700, -8523, -3624, -3735, -3199, -11701, -4372, -11702, -427, -428, -656, -664, -665, -9077, -668, -695, - -719, -767, -8609, -932, -940, -11703, -943, -958, -960, -965, -968, -1026, -10960, -1047, -11704, -1315, -1371, - -1442, -1461, -11705, -1547, -1548, -1609, -1654, -1770, -1771, -1826, -5883, -1864, -1942, -1959, -11706, - -11689, -2124, -2125, -5405, -2177, -11707, -2198, -2210, -2234, -7744, -2269, -2379, -2410, -11708, -2430, - -2433, -11709, -2466, -11710, -11711, -6859, -2552 - ], - [0, -3015, -1764, -10484, -10674, -11712, -11713], - [1, 3, 6524], - [0, 6525, 29, 7, 5], - [0, -1315, -1957, -2177, -2450], - [1, 3, 6527], - [0, 6528, 6529, 6530, 6], - [ - 0, -469, -3907, -668, -755, -812, -1111, -1353, -1395, -1461, -1574, -1630, -1877, -2177, -2218, -2271, -2400, - -2450 - ], - [ - 0, -3136, -3037, -427, -428, -928, -11714, -932, -11715, -11716, -954, -958, -959, -967, -978, -1040, -1415, - -7357, -11717, -1942, -2375, -2410 - ], - [0, -7148, -8170, -10484, -5879, -11718, -1768], - [1, 3, 6532], - [0, 6533, 6534, 7, 8], - [0, -6770, -1957], - [0, -280, -4298, -4300, -11719, -2319], - [1, 3, 6536], - [0, 6537, 6538, 6539, 10], - [0, -4285, -10335, -10521, -9084, -11720, -11721, -1767, -1957], - [0, -4298, -4300, -4287, -1722, -11542, -2247, -2319], - [0, -1764, -11722, -4213], - [1, 3, 6541], - [0, 6542, 6543, 233, 4], - [0, -668, -11084, -2060, -1645, -482, -769, -2194, -1627, -11723], - [0, -1788, -2552, -1654, -932, -2125, -708, -1827, -1077, -3037, -1938, -566, -11724, -6018, -545], - [1, 3, 6545], - [0, 6546, 6547, 233, 11], - [0, -2518, -11084, -1864, -482, -769, -2194, -1627, -11728], - [0, -652, -1498, -2552, -1446, -1654, -932, -9774, -2884, -516, -3781], - [1, 3, 6549], - [0, 6550, 14, 6551, 5], - [0, -7087, -8803], - [0, -1764, -11727, -1847, -5897, -8425, -7304, -8426, -11729, -687, -3958, -7096, -7237], - [1, 3, 6553], - [0, 0, 6554, 6555, 5], - [0, -3136, -3037, -427, -428, -3267, -932, -940, -1415, -1534, -10652, -2125, -2127, -2375, -2410], - [0, -11730, -856, -11731], - [1, 3, 6557], - [0, 6558, 6559, 6560, 4], - [0, -668, -691, -719, -812, -1376, -1965], - [0, -664, -1654, -1663, -2250], - [0, -7865, -1764, -11732], - [1, 3, 6562], - [0, 6563, 6564, 6565, 6], - [0, -1376, -1993], - [0, -526, -541, -551, -11733, -566, -1771], - [0, -1764, -687, -7095, -3957, -9408, -4043, -9845, -1776, -11734], - [1, 3, 6567], - [0, 6568, 6569, 6570, 6], - [0, -1285, -1646], - [0, -5834, -516, -5835, -932, -1365, -1431, -1788, -2156, -2322], - [0, -1777, -9100], - [1, 3, 6572], - [0, 6573, 6574, 7, 6], - [0, -4700, -10515, -11735, -4716], - [0, -2319, -4300, -4298], - [1, 3, 6576], - [0, 0, 6577, 7, 4], - [0, -664, -1437, -1449, -1654, -11736], - [1, 3, 6579], - [0, 6580, 6581, 6582, 4], - [0, -668, -694, -11737, -1343, -1376, -11738, -2177, -9564, -2550], - [0, -619, -707, -8326, -1277, -1510, -1658], - [0, -7107, -1780, -8327], - [1, 3, 6584], - [0, 6585, 6586, 6587, 5], - [0, -11739], - [0, -3136, -3037, -427, -428, -749, -932, -940, -967, -1344, -1415, -1942, -1952, -2125, -2375, -2379, -2410], - [0, -1781, -11740, -687, -3578, -3871, -7864, -2006, -3966, -2410, -3214, -2501, -1415, -3100, -3445, -5407], - [1, 3, 6589], - [0, 0, 6590, 6591, 6], - [0, -664, -1138, -1146, -1155, -1156, -9545, -1471, -1474, -1475, -1479, -1482, -1483, -1488, -1542, -1654], - [0, -1782, -6240, -3276, -4123, -11741, -11742], - [1, 3, 6593], - [0, 6594, 6595, 6596, 5], - [0, -11743, -11744, -719], - [ - 0, -21, -23, -40, -43, -534, -539, -541, -729, -753, -767, -932, -934, -958, -1004, -1077, -1098, -11745, - -11746, -11747, -11748, -1788, -1860, -2187, -2416, -2417, -2501 - ], - [0, -3110, -7651], - [1, 3, 6598], - [0, 0, 0, 6599, 5], - [0, -8427, -3966], - [1, 3, 6601], - [0, 0, 6602, 6603, 10], - [0, -2832, -5834, -8084, -8096, -516, -652, -5835, -932, -1431, -1365, -1777, -2156, -2322], - [0, -1784, -1785, -5874], - [1, 3, 6605], - [0, 0, 0, 6606, 10], - [0, -775, -5180, -11749, -5912, -3585], - [1, 3, 6608], - [0, 6609, 0, 6610, 4], - [ - 0, -888, -1816, -2359, -1055, -1805, -2548, -523, -701, -2387, -2550, -865, -1353, -2177, -1040, -910, -1418, - -1645, -2369, -690, -1863, -2325, -692, -1075, -1461, -1773, -2267, -2551, -866, -2383, -11750, -11751, -11752, - -4341, -10789, -11753, -11754 - ], - [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -4339, -4340, -4347, -4343, -4344, -11755], - [1, 3, 6612], - [0, 6613, 6614, 6615, 4], - [ - 0, -6028, -4003, -11756, -742, -813, -1046, -1047, -6475, -1097, -1107, -5086, -11757, -6029, -11758, -5087, - -5088, -5089, -1591, -11759, -1826, -11760, -2115, -2125, -2202, -11761, -6030, -2550 - ], - [0, -11762, -5607, -2111, -2234, -2250, -2251, -2319, -2446, -2518], - [0, -4005, -6863, -8422, -3634], - [1, 3, 6617], - [0, 6618, 6619, 6620, 5], - [0, -11763, -4049, -3424, -11619, -10873, -5969, -5263, -1851, -11764], - [0, -11765, -11766, -11767, -3037, -2391, -2410, -2469], - [0, -3690, -11768, -3438, -11769, -11770, -11771, -11772, -11773, -1789, -489, -11148, -856], - [1, 3, 6622], - [0, 6623, 6624, 6625, 4], - [0, -11763, -11774, -1442, -5263, -3792], - [0, -11765, -3660, -11775, -1722, -2391, -2410, -2469], - [0, -3690, -489, -11768, -856, -11148, -11773, -1789, -3438, -11772, -11769, -11771, -11770, -11410, -4847], - [1, 3, 6627], - [0, 0, 84, 7, 8], - [1, 3, 6629], - [0, 0, 6630, 6631, 5], - [0, -2541, -519, -1548, -1612], - [0, -7208, -7370, -1015, -3589, -4795, -3217, -3207, -6989, -11776, -3582, -5396, -4865], - [1, 3, 6633], - [0, 0, 6634, 6635, 4], - [ - 0, -633, -1168, -1177, -11117, -11777, -1220, -1224, -1231, -1243, -1244, -1262, -1452, -1453, -1471, -1475, - -1482, -1654 - ], - [0, -7208, -6131, -2191, -1616], - [1, 3, 6637], - [0, 0, 6638, 6639, 6], - [ - 0, -5834, -11778, -516, -753, -11779, -921, -932, -1065, -1083, -1107, -11780, -1283, -11781, -1365, -1408, - -8082, -1659, -1777, -1788, -2156, -9786, -2177, -8310, -2322 - ], - [0, -4676, -11782, -7208, -6231, -3240], - [1, 3, 6641], - [0, 0, 6642, 6643, 4], - [0, -5834, -8487, -932, -6283, -11783, -1391, -2322], - [0, -11784, -7373, -6947, -5396], - [1, 3, 6645], - [0, 0, 6646, 6647, 8], - [0, -1788, -664, -1654, -756, -1657, -11785], - [0, -6545, -1847, -11786, -11787, -9052, -7153, -864, -7375, -7208, -7369, -11788, -11789, -5846, -8893, -7372], - [1, 3, 6649], - [0, 6650, 6651, 6652, 6], - [0, -655, -6511, -5830, -11790, -1283, -1795], - [0, -5833, -5834, -633, -932, -1065, -1083, -5836, -1285, -1659, -1777, -1788, -2156, -5942, -2322], - [0, -11791, -7370, -6948, -1015, -11792, -11594, -11793, -11794, -5843, -3582, -5396], - [1, 3, 6654], - [0, 6655, 6656, 6657, 6], - [0, -655, -6511, -5830, -11790], - [0, -5833, -5834, -8569, -516, -5835, -932, -1083, -5836, -1365, -1777, -1788, -2156, -2322], - [0, -11795, -11796, -11784, -11797, -7374, -6949, -11798, -6952, -5396, -7208, -7373, -3582, -5843], - [1, 3, 6659], - [0, 6660, 6661, 7, 9], - [0, -11799], - [0, -1788, -1654, -932, -966, -958, -968, -943, -963, -974], - [1, 3, 6663], - [0, 6664, 71, 6665, 4], - [0, -11800], - [0, -1801, -5924, -6812, -6814], - [1, 3, 6667], - [0, 6668, 6669, 6670, 4], - [0, -11801, -11802, -502, -679, -769, -1353, -2369], - [0, -7080, -3037, -1344, -1534, -1942, -2125, -2410], - [0, -1107, -2490, -5888], - [1, 3, 6672], - [0, 6673, 6674, 6675, 5], - [0, -11803, -1553], - [0, -3621, -11804, -708, -1452, -1654, -1658, -1660, -1788, -2379, -2410], - [0, -11805, -11573, -11806, -11807, -11808, -10226, -11809, -11810, -11811, -9261], - [1, 3, 6677], - [0, 6678, 115, 234, 5], - [0, -11812, -11813, -11814, -9981, -6756, -11815], - [1, 3, 6680], - [0, 6681, 6682, 6683, 5], - [0, -1043, -1099, -1630, -1805, -2331], - [0, -519, -999, -2541], - [ - 0, -5732, -687, -3994, -1805, -1810, -11816, -11817, -11818, -11819, -11820, -11821, -7095, -4865, -3496, -7237, - -7863, -2435, -11822, -7303, -7091, -8421, -6599, -1958, -3258, -6656 - ], - [1, 3, 6685], - [0, 6686, 6687, 6688, 6], - [0, -11823, -11824, -5263], - [0, -3136, -3660, -4049, -523, -11825, -1415, -1456, -11826, -1683, -1942, -2234, -2375, -2379, -2410], - [0, -3438, -4847, -3323, -523, -3100, -4865, -4215, -2410], - [1, 3, 6690], - [0, 6691, 6692, 6693, 5], - [0, -813, -1326, -1459, -1600, -1967, -2006, -2019, -2451], - [ - 0, -32, -204, -526, -552, -9968, -756, -932, -933, -934, -958, -962, -968, -969, -1108, -1320, -1415, -1753, - -1771, -2105, -2106, -5331 - ], - [0, -4847, -3438, -11827, -3264, -856, -3262], - [1, 3, 6695], - [0, 6696, 6697, 6698, 11], - [0, -6280, -1696], - [0, -1107, -2105, -2322], - [0, -1809, -11828, -9565, -11829], - [1, 3, 6700], - [0, 0, 38, 7, 6], - [1, 3, 6702], - [0, 6703, 6704, 7, 8], - [0, -11830, -2105], - [0, -526, -559, -932, -933, -958, -962, -969], - [1, 3, 6706], - [0, 6707, 55, 234, 9], - [0, -1401], - [1, 3, 6709], - [0, 6710, 6711, 235, 4], - [0, -2525, -1646], - [0, -11831, -2319], - [1, 3, 6713], - [0, 6714, 6715, 6716, 8], - [0, -784, -11832, -1889], - [0, -527, -533, -551, -556, -558, -778, -1415, -2275, -2501], - [0, -7198, -10435, -1017, -7173, -7175, -6694, -2501], - [1, 3, 6718], - [0, 6719, 6720, 6721, 11], - [0, -11833, -11834, -2524, -8437, -11835, -10579], - [0, -11836, -1654], - [0, -6792, -5272, -11837, -687], - [1, 3, 6723], - [0, 6724, 6725, 6726, 8], - [0, -668, -690, -692, -11652, -6861, -1574, -11838, -2267], - [0, -3037, -519, -1100, -11839, -2384, -2541], - [0, -687, -6716, -6717, -3974, -4110, -4000, -4111, -4112, -4113, -4114, -1959, -4115, -4116, -4117], - [1, 3, 6728], - [0, 6729, 6730, 6731, 10], - [0, -908, -11840, -11841], - [0, -994, -1262, -1452, -1597, -1632, -1654, -1980, -2198, -2462], - [0, -510, -4107, -5921, -10462], - [1, 3, 6733], - [0, 6734, 6735, 6736, 11], - [0, -510, -615, -7840, -10358, -1548, -1850, -11842, -11843], - [0, -652, -668, -1107, -1654, -1671, -1691, -1857, -2177, -2198, -2210, -2245], - [0, -1818, -11221, -7685, -1691, -10425, -11844, -3742, -1671], - [1, 3, 6738], - [0, 0, 0, 6739, 4], - [0, -3966, -1819, -3103, -3551], - [1, 3, 6741], - [0, 6742, 71, 6743, 6], - [0, -8383, -10383], - [0, -5558, -3833, -11845, -11846, -1847, -1965, -11847], - [1, 3, 6745], - [0, 0, 6746, 6747, 4], - [0, -3035, -3048, -3621, -3037, -3046, -10755, -664, -999, -1077, -1654, -1763, -2379, -2501, -2518], - [0, -3184, -4795, -11848, -11849, -7728, -2265, -3110, -6806], - [1, 3, 6749], - [0, 0, 0, 6750, 5], - [0, -1823, -3586, -11850, -11851, -11852, -11853, -3100, -4865], - [1, 3, 6752], - [0, 6753, 6754, 6755, 5], - [0, -11854, -719, -1063, -1392, -1526, -2177, -2359, -11855], - [0, -3244, -190, -3748, -4200, -11856, -3037, -3199, -3628, -11857, -427, -428, -932, -11858, -2125, -2410], - [0, -687, -11859, -8109, -8403], - [1, 3, 6757], - [0, 6758, 6759, 6760, 5], - [0, -1828], - [0, -3037, -519, -826, -2384, -2541], - [ - 0, -1961, -997, -5389, -6820, -8397, -10670, -6821, -8401, -6822, -8124, -11860, -11861, -4116, -11862, -8402, - -4865, -5092, -510, -5867, -5923, -615 - ], - [1, 3, 6762], - [0, 0, 6763, 6764, 5], - [0, -519, -668, -826, -7426, -7424, -7427, -2384, -2541], - [ - 0, -1961, -6917, -11863, -4116, -7558, -9029, -9027, -11864, -11865, -510, -5867, -5923, -726, -11866, -5921, - -615 - ], - [1, 3, 6766], - [0, 6767, 6768, 6769, 4], - [0, -996, -1828], - [0, -5918, -3268, -3037, -589, -825, -826, -7426, -7963, -7424, -7427, -2384, -2392, -2410, -2541], - [ - 0, -1961, -1986, -11450, -6729, -7331, -11866, -7329, -11685, -7333, -7334, -11867, -11038, -11033, -11868, - -5418, -4107, -510, -5867, -5923, -615 - ], - [1, 3, 6771], - [0, 0, 6772, 6773, 11], - [0, -519, -826, -7426, -9161, -2210, -7427, -2384, -2541], - [0, -1961, -7430, -6324, -11869, -510, -5867, -5923, -4123, -11870, -5391, -615], - [1, 3, 6775], - [0, 6776, 6777, 6778, 4], - [0, -1107], - [0, -1415, -1942, -4701], - [0, -856, -2299, -11871, -11872], - [1, 3, 6780], - [0, 6781, 6782, 6783, 5], - [0, -11873, -522, -594, -719, -914, -1496, -1689, -1750, -1978, -2177], - [0, -652, -932, -11874, -1654, -11875, -4654, -2210], - [ - 0, -4665, -4666, -10432, -11876, -5879, -4864, -5986, -522, -7144, -687, -11877, -11878, -11879, -10770, -1830, - -1978, -9246, -11880, -3634, -2451, -11881 - ], - [1, 3, 6785], - [0, 6786, 6787, 6788, 4], - [ - 0, -11678, -4280, -4283, -4306, -283, -4287, -11666, -9084, -1767, -1769, -4291, -1770, -1957, -10592, -11882, - -2247, -2323 - ], - [0, -280, -4298, -4300, -1315, -11719, -1722, -11883, -2125, -2319], - [0, -7442, -1764, -5889], - [1, 3, 6790], - [0, 6791, 6792, 6793, 8], - [0, -9491, -9492, -11884, -807, -7731, -11885, -1548, -1574, -1591, -1826, -1877, -2400, -11886], - [0, -5918, -5033, -3044, -3037, -11887, -743, -825, -1043, -1098, -9810, -1849, -11888, -2392, -2410, -2541], - [ - 0, -11889, -3258, -9204, -3578, -2435, -9804, -8799, -9711, -11890, -11891, -5566, -4045, -9552, -3576, -7419, - -1978, -10366, -6527, -3839, -7650, -3264, -11878, -9712, -8633, -8634, -7715, -8640, -9235 - ], - [1, 3, 6795], - [0, 0, 6796, 6797, 4], - [0, -3037, -3664, -6593, -7653, -7654, -932, -958, -960, -1449, -2410, -2466, -2469], - [0, -3100, -3445, -3261, -3098, -3160, -6107, -9975, -9612, -11074], - [1, 3, 6799], - [0, 0, 6800, 6801, 11], - [0, -40, -3326, -350, -351, -932, -1103, -1654, -1687, -10835, -1788, -2127, -2140, -2195], - [0, -9506, -6827, -10350, -6826], - [1, 3, 6803], - [0, 6804, 38, 6805, 6], - [ - 0, -11064, -668, -6842, -1000, -1039, -1099, -1111, -1333, -1465, -1630, -1641, -1836, -2114, -11892, -2433, - -2551 - ], - [0, -11893, -3445, -687, -10810, -3690], - [1, 3, 6807], - [0, 6808, 6809, 6810, 5], - [0, -11197, -1582, -2291], - [0, -190, -865, -932, -940, -958, -965, -967, -968, -1110, -1548, -1654, -1942, -2340, -2892, -2410], - [0, -11893, -3323, -4725, -11894, -3844, -3445, -3690, -3691, -4055], - [1, 3, 6812], - [0, 0, 6813, 6814, 6], - [0, -615, -664, -710, -1654], - [0, -5921, -5550], - [1, 3, 6816], - [0, 6817, 6818, 6819, 9], - [0, -44, -3345, -772, -11895, -11896, -2531], - [ - 0, -23, -26, -38, -40, -41, -42, -190, -3266, -11897, -3470, -7040, -3471, -3472, -7041, -7042, -11898, -533, - -8580, -11899, -708, -753, -767, -932, -8147, -960, -1004, -1168, -1174, -1268, -1412, -10034, -11900, -1415, - -1419, -1446, -11901, -1534, -4375, -3156, -11220, -11902, -1978, -2082, -2174, -2411, -2466, -11903, -10092 - ], - [0, -5801, -3162, -3690], - [1, 3, 6821], - [0, 6822, 0, 6823, 5], - [0, -3223], - [0, -3264, -3215, -5177, -11904, -4681, -5922, -11905, -11906, -6595, -1839, -4142, -11907, -11908, -1838, -6233], - [1, 3, 6825], - [0, 0, 6826, 7, 6], - [0, -1654, -932, -1405, -589, -11909, -585, -966, -958, -968, -943, -974], - [1, 3, 6828], - [0, 6829, 6830, 6831, 10], - [0, -11910, -2445, -1846], - [0, -664, -1654, -1592, -1972, -666, -11911], - [0, -1004, -729, -6120, -8449, -3173], - [1, 3, 6833], - [0, 6834, 6835, 6836, 8], - [0, -1845], - [0, -1592, -1654, -664, -666], - [0, -1841, -4038, -6120, -8449, -3173, -9795], - [1, 3, 6838], - [0, 6839, 236, 6840, 4], - [0, -1846], - [0, -1841, -8427, -6120, -8449, -3173, -11912, -5110], - [1, 3, 6842], - [0, 6843, 236, 237, 8], - [0, -11913, -1845], - [1, 3, 6845], - [0, 6846, 6847, 237, 5], - [0, -11914, -1791, -1846, -10686, -2445], - [0, -1592, -1654, -664, -1972, -666], - [1, 3, 6849], - [0, 0, 114, 6850, 4], - [0, -1841, -6539], - [1, 3, 6852], - [0, 6853, 0, 6854, 5], - [0, -1958, -2444], - [0, -11153, -1847], - [1, 3, 6856], - [0, 0, 31, 6857, 8], - [0, -4865, -633, -1847], - [1, 3, 6859], - [0, 0, 238, 6860, 5], - [0, -1847, -6788, -11915, -6656, -7693, -1076, -7422, -7000, -11786, -9330], - [1, 3, 6862], - [0, 0, 118, 6863, 4], - [ - 0, -1847, -9098, -6656, -11070, -11634, -11916, -11917, -6441, -2444, -5260, -3103, -6989, -3582, -5396, -1391, - -6659, -7440 - ], - [1, 3, 6865], - [0, 0, 6866, 6867, 8], - [0, -6918, -5295, -3037, -3199, -3664, -10880, -2214, -2410, -2469], - [0, -1004, -5570, -10470, -9843], - [1, 3, 6869], - [0, 0, 6870, 7, 5], - [0, -3037, -3664, -672, -928, -932, -944, -1431, -1942, -2410, -2423, -2469, -11918], - [1, 3, 6872], - [0, 6873, 6874, 57, 4], - [0, -1406, -1460, -7885], - [0, -1078, -1654, -1941], - [1, 3, 6876], - [0, 6877, 6878, 6879, 4], - [0, -11919, -11920, -1834, -2062, -9789, -2446], - [0, -3037, -640, -997, -1942, -2322, -2410], - [0, -6528, -3262], - [1, 3, 6881], - [0, 6882, 6883, 6884, 10], - [0, -772, -4702, -11921, -11922, -11923], - [ - 0, -23, -3840, -40, -190, -3326, -533, -11924, -11925, -627, -633, -659, -709, -932, -1103, -1110, -1415, -1419, - -4981, -1599, -11926, -1942, -1974, -2127, -4063 - ], - [0, -6528, -11927, -11928, -6524, -10855, -9472], - [1, 3, 6886], - [0, 0, 6887, 7, 4], - [0, -615, -11929, -664, -11930, -710, -1654, -1939], - [1, 3, 6889], - [0, 6890, 6891, 6892, 4], - [0, -10416, -11931, -11932, -11933, -11934, -11935], - [0, -11936, -11937, -510, -615, -705, -11938, -2410, -2469, -9667], - [0, -7685, -11939, -1857, -11940, -10425, -6321, -11941], - [1, 3, 6894], - [0, 6895, 6896, 6897, 5], - [0, -1860, -2239, -2520], - [ - 0, -526, -527, -528, -556, -558, -559, -6089, -932, -934, -956, -958, -1059, -11942, -1415, -1417, -11943, - -9913, -2125 - ], - [0, -1858, -1859, -9879], - [1, 3, 6899], - [0, 6900, 6901, 239, 11], - [0, -1018, -1077, -7234, -9423, -1959, -2105, -7241, -2518], - [0, -932, -1754], - [1, 3, 6903], - [0, 6904, 6905, 239, 5], - [0, -925, -1018, -1077, -7234, -9423, -1959, -2105, -7241, -2518], - [0, -932, -1754, -4881], - [1, 3, 6907], - [0, 6908, 6909, 6910, 5], - [ - 0, -501, -714, -728, -11944, -752, -9012, -1412, -1646, -1810, -1812, -3547, -11945, -1878, -1965, -1982, -2105, - -2195, -2433 - ], - [0, -7672, -932, -942, -943, -958, -966, -968, -974, -1405], - [0, -687, -752, -1861, -11946, -11947], - [1, 3, 6912], - [0, 0, 70, 7, 11], - [1, 3, 6914], - [0, 0, 0, 6915, 8], - [0, -3974, -714, -5538, -687, -4000], - [1, 3, 6917], - [0, 0, 6918, 6919, 5], - [0, -932, -10999, -1202, -1654, -1788], - [0, -1107, -5572, -1864], - [0, 44, 15, 16, 8], - [1, 3, 6922], - [0, 0, 6923, 6924, 9], - [0, -519, -11948, -2384, -11135, -2541], - [ - 0, -8124, -5865, -1961, -5923, -11949, -5500, -3966, -11301, -11300, -5845, -6408, -4001, -8911, -6509, -510, - -5867, -4795, -615 - ], - [1, 3, 6926], - [0, 6927, 6928, 6929, 10], - [0, -11950, -11951, -11952, -11953, -8543, -11954, -11955, -7967, -11956, -11957, -11958], - [ - 0, -2832, -11419, -11959, -3037, -468, -11960, -2917, -648, -812, -2758, -932, -958, -965, -966, -968, -999, - -11961, -11962, -1362, -1415, -1573, -1577, -11963, -2884, -11964, -1939, -1972, -1976, -2125, -2177, -2240, - -11965, -2269, -2322, -2347, -2379, -2384, -2410, -2520 - ], - [0, -5922, -3444, -5827, -4055], - [1, 3, 6931], - [0, 0, 6932, 6933, 4], - [0, -932, -940, -8177, -966, -967, -1344, -1415, -1942, -2331], - [0, -1764, -11966, -11967, -7646, -11968], - [1, 3, 6935], - [0, 6936, 6937, 6938, 5], - [0, -1880], - [0, -932, -10497, -2410], - [0, -6527, -10588, -834], - [1, 3, 6940], - [0, 6941, 6942, 6943, 6], - [0, -8341], - [0, -2541, -519, -2384, -2331], - [ - 0, -5897, -4055, -5756, -1764, -11969, -5573, -8804, -1047, -5504, -8805, -8806, -6656, -7282, -5572, -2114, - -8807, -6370, -7420, -7421, -2487, -8808, -1847 - ], - [1, 3, 6945], - [0, 175, 14, 6946, 5], - [ - 0, -7861, -5897, -6656, -5573, -8804, -1047, -5504, -8805, -8806, -7282, -5572, -2114, -8807, -6370, -7420, - -7421, -2487, -8808, -1847 - ], - [1, 3, 6948], - [0, 0, 84, 6949, 5], - [0, -8041, -3674, -10484], - [1, 3, 6951], - [0, 6952, 0, 7, 5], - [0, -3982], - [1, 3, 6954], - [0, 6955, 6956, 6957, 11], - [0, -4733, -578, -2538], - [0, -633, -1654, -6810, -2568], - [0, -5736, -4865, -8995, -1875, -3215, -6597], - [1, 3, 6959], - [0, 6960, 6961, 6962, 4], - [0, -479], - [0, -932, -937, -966, -1001, -1654, -1788, -2410], - [0, -6324, -3862, -1266], - [1, 3, 6964], - [0, 6965, 14, 6966, 8], - [0, -11970], - [0, -9757, -11971, -1878, -9756, -11972, -10781, -2265, -11973, -11974, -11975], - [1, 3, 6968], - [0, 0, 6969, 6970, 9], - [0, -664, -1405, -1654, -2176], - [0, -9757, -11971, -1878, -9756, -9763, -1369], - [1, 3, 6972], - [0, 6973, 70, 6974, 8], - [ - 0, -11976, -11977, -11978, -11979, -483, -510, -11980, -679, -11981, -719, -764, -809, -812, -910, -995, -11982, - -1650, -1708, -11983, -11984, -11985, -11986, -11987, -3968, -2177, -2234, -2243, -11988, -1442 - ], - [ - 0, -687, -8947, -8948, -3674, -1879, -11989, -1573, -4055, -1004, -1277, -11990, -11492, -11991, -11992, -11993, - -11994, -11995, -11996, -11997, -9466, -11998, -11148, -5731, -3207, -11999, -12000, -12001, -12002, -12003, - -8901, -8902, -11586, -2295, -12004, -1753, -12005, -7662, -12006, -11230, -12001, -12007, -1066, -11429, - -12008, -5805, -11486, -8944, -12009, -12010, -12011, -12012, -9844, -7606, -763, -8904, -12013 - ], - [1, 3, 6976], - [0, 0, 6977, 6978, 4], - [0, -633, -641, -729, -932, -940, -1788, -1942, -1978, -2187, -12014, -2322], - [0, -12015, -6116, -6117, -12016, -12017, -3215, -7715, -11923, -12018, -1880], - [1, 3, 6980], - [0, 6981, 6982, 6983, 9], - [0, -2381], - [0, -909, -1415, -1421, -1425, -2231], - [0, -2501, -2552, -10054, -10055], - [1, 3, 6985], - [0, 0, 0, 6986, 4], - [ - 0, -1882, -12019, -3015, -12020, -11037, -5922, -12021, -1380, -7856, -10606, -5880, -3209, -10440, -10527, - -1764, -11683, -10484, -7442, -12022, -12023, -6694, -5881, -12024, -12025, -10444 - ], - [1, 3, 6988], - [0, 241, 6989, 6990, 5], - [0, -2334, -2379, -2410], - [ - 0, -12026, -12027, -12028, -12029, -12030, -12031, -12032, -12033, -3690, -12034, -12035, -12036, -12037, -3445, - -3100, -2410 - ], - [1, 3, 6992], - [0, 39, 6993, 6994, 4], - [ - 0, -21, -23, -32, -38, -39, -40, -6056, -3326, -351, -3561, -528, -533, -535, -12038, -767, -796, -856, -932, - -934, -958, -1059, -11942, -1344, -1415, -1534, -11943, -1942, -12039, -1993, -2127, -2139, -2140, -2174, -2200, - -12040, -2410, -2449 - ], - [0, -2278, -1885, -906, -12041, -3771, -12042, -2006, -5411, -2410, -12043, -12044, -12045, -712, -5535], - [1, 3, 6996], - [0, 0, 6997, 6998, 5], - [0, -12046, -12047, -12048, -12049, -932, -12050, -2410], - [0, -12051, -3095, -7582, -3821, -3822, -12052, -12053], - [1, 3, 7000], - [0, 7001, 7002, 7003, 6], - [0, -510, -812], - [0, -1415], - [0, -1334, -12054, -8113], - [1, 3, 7005], - [0, 7006, 0, 7007, 8], - [0, -1699, -1863, -2232], - [0, -775, -1889, -9336, -3277, -3215, -12055, -6408, -12056, -3186], - [1, 3, 7009], - [0, 7010, 7011, 7012, 8], - [0, -1931, -1934], - [0, -3037, -932, -940, -12057, -1889, -1942, -2410], - [0, -775, -1889, -3583, -12058, -12059], - [1, 3, 7014], - [0, 7015, 7016, 7017, 4], - [0, -679, -3227, -1077, -1863, -1907, -12060, -6467, -12061, -2218, -2654, -2550], - [0, -519, -652, -756, -932, -12062, -1110, -1889, -1906, -1942, -2289, -2446], - [0, -687, -1889, -9300], - [1, 3, 7019], - [0, 7020, 0, 7021, 6], - [0, -2953, -93, -94, -97, -12063], - [0, -712, -12064, -775, -3099, -5112, -12065, -12066, -12067, -11788, -1889, -3583, -5549, -12068, -7451, -4132], - [1, 3, 7023], - [0, 7024, 7025, 7026, 6], - [0, -635, -12069, -2840, -1934], - [0, -12070, -1889], - [0, -712, -714, -724, -775, -1644, -1889, -3583], - [1, 3, 7028], - [0, 242, 22, 7029, 9], - [0, -775, -7193, -1889, -3583], - [1, 3, 7031], - [0, 7032, 7033, 7034, 5], - [ - 0, -518, -12069, -668, -12071, -12072, -1889, -12073, -12074, -1890, -12075, -12076, -12077, -12078, -12079, - -12080, -12081, -12082, -1896, -1897, -1898, -12083, -12084, -12085, -12086, -12087, -1917, -12088, -12089, - -12090, -12091, -12092 - ], - [ - 0, -526, -527, -534, -558, -560, -565, -8161, -682, -778, -12093, -12094, -12095, -12096, -12097, -932, -12098, - -949, -969, -1017, -1041, -1304, -12099, -1442, -1455, -1600, -12100, -1633, -12101, -12102, -12103, -12104, - -12105, -12106, -12107, -12108, -12109, -11748, -1762, -12110, -1792, -1812, -12111, -1906, -1908, -12060, - -7033, -1967, -2006, -2019, -12112, -2125, -2269, -2275, -2322, -12113, -2501, -2505, -12114 - ], - [0, -1889, -3583, -775, -5387, -12115], - [1, 3, 7036], - [0, 7037, 0, 7038, 5], - [0, -12116, -93, -94, -95], - [0, -12117, -12118, -775, -12119, -3586, -12120, -1889, -3583, -12121, -5101, -4681, -5387], - [1, 3, 7040], - [0, 7041, 0, 7042, 4], - [0, -12116, -93, -94, -12063, -1934], - [0, -775, -12119, -3586, -3587, -1889, -3583, -3589, -4681, -3591, -3592, -5387], - [1, 3, 7044], - [0, 7045, 0, 7046, 4], - [0, -12116, -93, -94, -1931], - [0, -12117, -12118, -775, -12119, -3586, -12122, -8109, -1889, -3583, -11315, -12123, -4681, -5387], - [1, 3, 7048], - [0, 90, 7049, 7050, 6], - [0, -1889, -1930, -10815], - [0, -775, -3485, -1889, -3583], - [1, 3, 7052], - [0, 0, 22, 7053, 9], - [0, -775, -816, -7192, -1889, -3583], - [1, 3, 7055], - [0, 0, 22, 7056, 4], - [0, -6454, -775, -12124, -1644, -7193, -1889, -3583], - [1, 3, 7058], - [0, 0, 7059, 7060, 6], - [0, -834, -1863, -1889], - [0, -1889, -775, -3583, -12125, -12126, -12127], - [1, 3, 7062], - [0, 0, 7063, 7064, 8], - [0, -664, -1168, -1197, -1231], - [0, -1889, -775, -3583, -12128, -6445, -12129], - [1, 3, 7066], - [0, 7067, 7068, 7069, 9], - [0, -1333, -3187, -1889, -1929], - [ - 0, -8281, -518, -664, -708, -932, -940, -954, -8286, -961, -965, -8287, -967, -971, -980, -7355, -1654, -8324, - -1788, -12130, -1930, -12131, -1942, -2281, -2282, -2289 - ], - [0, -1889, -4132, -3264, -2476, -12132, -12133, -775, -1521, -2162, -3754, -12134, -2289], - [1, 3, 7071], - [0, 7072, 0, 7073, 10], - [0, -12063, -1934], - [0, -5182, -775, -6527, -12135, -5399, -7036, -1889, -3583, -9804, -3576], - [1, 3, 7075], - [0, 7076, 7077, 7078, 10], - [0, -1934, -12061, -2114], - [0, -519, -652, -932, -12062, -967, -1110, -1889, -1930, -1942, -2289], - [0, -775, -1889, -3583, -6024, -12136, -1764], - [1, 3, 7080], - [0, 7081, 0, 7082, 4], - [0, -1532], - [0, -1889, -12137, -12138], - [1, 3, 7084], - [0, 7085, 7086, 7087, 5], - [0, -1431, -2177, -755], - [ - 0, -824, -1415, -1521, -2162, -1344, -1623, -12139, -774, -932, -784, -825, -1110, -1889, -2289, -2375, -2379, - -2501, -1942, -767, -21, -190, -533, -2790, -2269, -23, -1522, -1534, -1771, -2163, -12140, -1906, -1916, -86, - -965, -3560, -2251, -40, -2411, -959, -1907, -958, -6929, -978, -940, -967, -3748, -12141, -3307 - ], - [0, -775, -1889, -9300, -2501, -5050], - [1, 3, 7089], - [0, 7090, 22, 7091, 6], - [0, -1934, -2280], - [0, -775, -1644, -7192, -1889, -3583], - [1, 3, 7093], - [0, 7094, 7095, 7096, 8], - [0, -635, -12069, -1931, -12142], - [0, -12070, -1889, -10815, -1899], - [0, -775, -7192, -1889, -3583], - [1, 3, 7098], - [0, 60, 22, 7099, 5], - [0, -775, -3827, -12143, -12144, -7192, -3583], - [1, 3, 7101], - [0, 7102, 22, 50, 10], - [0, -2840, -1934, -12142], - [1, 3, 7104], - [0, 7105, 22, 7106, 10], - [0, -635, -1934, -12142], - [0, -1889, -775, -3583, -1644, -7192, -5154], - [1, 3, 7108], - [0, 7109, 7110, 7111, 4], - [0, -783, -1931], - [0, -12145, -1889], - [0, -775, -1644, -7192, -1889, -3583, -12123], - [1, 3, 7113], - [0, 7114, 130, 7115, 10], - [0, -2773, -1931, -1934], - [0, -12146, -1889, -775, -3583], - [1, 3, 7117], - [0, 90, 0, 7118, 11], - [0, -1889, -775, -3583, -2162, -8893], - [1, 3, 7120], - [0, 7121, 0, 7122, 11], - [0, -12147, -98, -1931], - [ - 0, -12148, -6599, -12149, -775, -12115, -12119, -8893, -12150, -1889, -3583, -8199, -12123, -4682, -4683, -4132, - -5387 - ], - [1, 3, 7124], - [0, 7125, 7126, 7127, 5], - [0, -12151, -12152, -12153], - [0, -12154, -635, -1889, -1906, -2127], - [0, -1889, -775, -3583, -12155, -6413, -12156], - [1, 3, 7129], - [0, 0, 22, 7130, 6], - [0, -1889, -775, -3583, -9791], - [0, 60, 22, 50, 4], - [1, 3, 7133], - [0, 60, 22, 50, 11], - [1, 3, 7135], - [0, 242, 22, 50, 8], - [1, 3, 7137], - [0, 60, 22, 7138, 4], - [0, -775, -6811, -7192, -7193, -1889, -3583, -2435], - [1, 3, 7140], - [0, 7141, 22, 50, 5], - [0, -1934, -12142], - [1, 3, 7143], - [0, 0, 7144, 7145, 4], - [0, -1344, -1654, -1889, -1405, -1942, -1534, -1916], - [0, -1889, -5899, -12123, -3583, -775, -3585, -3862], - [1, 3, 7147], - [0, 7148, 0, 7149, 5], - [ - 0, -12157, -5297, -12158, -12159, -12160, -12161, -12162, -12163, -12164, -12165, -12166, -12167, -12168, - -12169, -12170, -96, -12171, -12172, -12173, -12174, -12175, -12176, -12177, -12178, -12179, -12180, -12181, - -12182, -12183, -97, -12184, -12185, -12186, -12187, -12188, -12189, -12190, -12191, -12192, -12193, -12194, - -518, -635, -12195, -12196, -12197, -782, -12074, -12198, -1892, -12077, -12080, -1896, -1897, -1898, -12199, - -12200, -2579, -12201, -12084, -12202, -1905, -12203, -12204, -1917, -2635, -12205, -12206, -12207, -12088, - -12090, -12092 - ], - [0, -775, -12119, -7186, -6309, -12208, -2634, -1889, -3583, -4682, -4683, -7187, -5387], - [1, 3, 7151], - [0, 7152, 7153, 50, 8], - [0, -635, -12069], - [0, -12070, -1329, -1889], - [1, 3, 7155], - [0, 0, 0, 7156, 4], - [0, -775, -1889, -12209, -3215, -8947], - [1, 3, 7158], - [0, 0, 0, 7159, 4], - [0, -775, -1889, -12209, -3215, -3754, -2162], - [1, 3, 7161], - [0, 7162, 7163, 7, 11], - [0, -783, -9649], - [ - 0, -21, -23, -32, -4952, -26, -40, -43, -519, -535, -6831, -825, -932, -958, -1107, -1646, -1788, -1889, -2177, - -2410 - ], - [1, 3, 7165], - [0, 7166, 7167, 7168, 8], - [0, -1934, -2303], - [0, -12072, -1889], - [0, -775, -1644, -7192, -1889, -3583, -3839, -2303], - [1, 3, 7170], - [0, 90, 22, 50, 4], - [1, 3, 7172], - [0, 0, 7173, 7174, 4], - [0, -932, -1344, -1534, -1942, -2320, -2322], - [0, -1889, -5846, -3215], - [1, 3, 7176], - [0, 7177, 0, 7178, 4], - [0, -12210, -12211, -12212, -12213, -12214, -12215, -12216, -2387], - [0, -6321, -10425, -11940, -1857, -7685, -7773, -9879, -3323, -3445, -11941, -10424, -2410, -3018, -985], - [1, 3, 7180], - [0, 7181, 7182, 7183, 4], - [0, -4256, -4255], - [0, -86, -9404, -652, -664, -665, -667, -740, -1344, -1448, -1534, -1654, -2250], - [0, -3264, -6597, -9727, -3215, -6408, -12217, -12056, -3277, -12218], - [1, 3, 7185], - [0, 7186, 0, 7187, 5], - [0, -12219, -2446, -1523, -1525, -2347, -12220, -1524, -12221, -1729, -12222, -12223, -2062, -12224, -12225], - [0, -7773, -11304, -1937], - [1, 3, 7189], - [0, 7190, 7191, 7192, 4], - [0, -5830, -12226, -12227, -12228, -2546], - [ - 0, -526, -566, -3067, -551, -558, -633, -3346, -12229, -1003, -1471, -1475, -10495, -1479, -1482, -12230, -1654, - -12231, -7718, -1991, -2111, -2177 - ], - [0, -1938, -507, -5855, -4004, -3634, -3217, -3272], - [1, 3, 7194], - [0, 7195, 7196, 7197, 6], - [0, -769, -9798, -2518], - [0, -509, -1405, -1654], - [0, -5889, -3322, -1764, -1939, -12232, -11727, -4004, -3113], - [1, 3, 7199], - [0, 0, 7200, 7201, 11], - [ - 0, -12233, -12234, -23, -3408, -5321, -40, -43, -2581, -3035, -3621, -3037, -4372, -5286, -3899, -12235, -664, - -756, -767, -12236, -928, -1344, -12237, -1637, -1654, -1772, -8065, -10105, -1967, -5037, -2210, -2211, -2334, - -2410, -2426, -2466, -2469, -4881 - ], - [0, -1940, -2006, -3160, -3477, -12238, -9613, -3098, -12239, -3577, -3161], - [1, 3, 7203], - [0, 7204, 27, 57, 5], - [0, -668, -679, -1078, -7885], - [1, 3, 7206], - [0, 7207, 7208, 7209, 4], - [0, -12240, -3896, -1618], - [ - 0, -8918, -3307, -350, -4062, -351, -3136, -4251, -427, -428, -721, -932, -940, -967, -1344, -1415, -12241, - -12242, -1942, -2127, -2251, -2334, -2379, -2410 - ], - [0, -1942, -3862, -1446, -8222], - [1, 3, 7211], - [0, 0, 7212, 7213, 6], - [0, -3037, -12243, -519, -1942, -2410, -5627], - [0, -1942, -12244, -2410, -12245, -12246], - [1, 3, 7215], - [0, 7216, 7217, 7218, 8], - [0, -7969], - [0, -1772, -1942], - [0, -10484, -3862, -1942], - [1, 3, 7220], - [0, 0, 7221, 7222, 6], - [0, -4066, -350, -351, -3037, -519, -1942, -2127, -2141, -2299, -2379, -2387, -2410], - [0, -1942, -2299], - [1, 3, 7224], - [0, 7225, 0, 7226, 6], - [0, -12247, -1548, -2001], - [0, -1942, -727], - [1, 3, 7228], - [0, 0, 14, 7229, 4], - [0, -3240, -651, -6472, -1044, -8799, -6656, -8574, -12248, -8800, -12249, -6582, -12250, -9782, -12251], - [1, 3, 7231], - [0, 7232, 7233, 7234, 8], - [0, -1548, -12252], - [0, -664, -710, -711, -12253, -1654], - [0, -3240, -6324, -12254, -812, -12255, -8800, -5598, -9361, -3276, -8574], - [1, 3, 7236], - [0, 7237, 7238, 7, 5], - [0, -4046, -482, -2029], - [0, -3040, -6633, -3081, -1361, -1427, -2006, -2019, -2052], - [1, 3, 7240], - [0, 7241, 14, 7242, 6], - [0, -12256], - [ - 0, -3240, -9361, -8574, -9854, -12248, -8800, -4123, -1681, -12257, -7219, -12258, -7434, -5554, -2265, -6240, - -12259 - ], - [1, 3, 7244], - [0, 7245, 0, 7246, 6], - [0, -3446, -2387, -1353, -3535, -1864, -12260, -1863], - [0, -5889, -12261, -12262, -1942, -1952, -5538, -707, -12263, -12232], - [1, 3, 7248], - [0, 7249, 7250, 7251, 5], - [0, -714, -1646], - [0, -1654, -1452, -2198, -1405, -756, -1657], - [0, -4055, -687, -5538, -714], - [1, 3, 7253], - [0, 7254, 7255, 7256, 5], - [0, -1692, -10425, -2961, -12264, -12265, -12266], - [ - 0, -1816, -2564, -1313, -1415, -1805, -999, -1496, -12267, -1852, -865, -3913, -6570, -679, -1077, -367, -7043, - -5672, -1424, -1575, -1729, -12268, -2269, -12269, -2410, -3136, -3037, -10624, -12270, -511, -1101, -12271, - -1769, -12272, -12273, -12274, -12275, -12276, -10419, -12277, -3048, -12278, -4835, -4106, -12279, -12280, - -12281, -5038, -12282, -12283, -12284, -12285, -12286, -8863, -12287, -12288, -12289, -5782, -12290, -12291 - ], - [ - 0, -4340, -12292, -12293, -12294, -12295, -7685, -7773, -7485, -12296, -4165, -12297, -12298, -12299, -1857, - -12300, -12301, -12302, -12303, -12304, -12305, -12306, -12307, -12308, -12309 - ], - [1, 3, 7258], - [0, 0, 7259, 7260, 4], - [ - 0, -4201, -589, -664, -12310, -824, -12311, -932, -960, -971, -1168, -1184, -1187, -1208, -2915, -1243, -1244, - -12312, -1273, -1333, -1339, -1449, -1654, -1729, -1771, -1942, -1976, -8318, -8319, -12313, -2091, -8320, - -2205, -12314, -2550 - ], - [0, -12315, -4131], - [1, 3, 7262], - [0, 7263, 7264, 7265, 8], - [0, -615, -617, -714, -1004, -1576, -1650, -1666, -12316, -1813, -1850, -12317], - [0, -664, -1168, -1231, -1663, -2150, -2210, -2211, -2291], - [0, -622, -6011, -11722, -7737, -7736, -3324, -5889, -12318, -5897], - [1, 3, 7267], - [0, 0, 29, 7, 4], - [1, 3, 7269], - [0, 0, 7270, 7271, 6], - [0, -2568, -1654], - [0, -1958], - [1, 3, 7273], - [0, 0, 0, 7274, 7275], - [0, -687, -1959], - 1769904000000, - [1, 3, 7277], - [0, 7278, 0, 7279, 4], - [0, -668, -1959], - [0, -2501, -3862, -1959, -10677], - [1, 3, 7281], - [0, 7282, 7283, 7, 8], - [0, -11744], - [0, -461, -2125, -1405], - [1, 3, 7285], - [0, 0, 7286, 7287, 6], - [ - 0, -633, -767, -932, -4693, -1344, -1471, -1472, -1475, -1482, -1534, -1654, -1771, -1942, -2125, -2127, -2143, - -2210, -2491, -2410 - ], - [0, -1961, -1962, -6948, -6306], - [1, 3, 7289], - [0, 7290, 226, 7291, 4], - [0, -1654, -2210, -2424], - [0, -5923, -6306], - [1, 3, 7293], - [0, 89, 7294, 57, 6], - [0, -891, -1050, -1654, -1941], - [1, 3, 7296], - [0, 7297, 7298, 7299, 6], - [0, -5758, -510, -2059, -5975, -2520], - [0, -932, -2471], - [0, -1965, -3958, -12319, -3926], - [0, 7301, 7302, 7303, 6], - [0, -1496, -12320], - [0, -21, -23, -36, -40, -2320, -2322], - [0, -3160, -1966, -687, -1965, -3964, -3958, -3962, -3957, -3972, -3824, -3955, -12321], - [1, 3, 7305], - [0, 7306, 7307, 41, 5], - [0, -1580, -1792, -2029], - [0, -533, -560, -633, -647, -932, -1365, -1415, -2006, -12322, -12323], - [1, 3, 7309], - [0, 0, 7310, 7311, 11], - [ - 0, -4251, -3037, -12324, -652, -1318, -12325, -12326, -1942, -2094, -2100, -12327, -12328, -2399, -2410, -7669, - -2541 - ], - [0, -11876, -9681, -3264, -4675, -8041, -7153, -3839], - [1, 3, 7313], - [0, 7314, 7315, 7316, 5], - [0, -12329, -12330, -12331, -12332, -12333, -12334, -12335, -12336, -12337, -12338, -3037, -1578], - [ - 0, -589, -633, -12339, -647, -668, -931, -932, -986, -988, -1103, -11426, -12340, -9208, -1168, -1208, -1212, - -1252, -1262, -1446, -1646, -1788, -2080, -2322, -2388, -2410, -2416, -2461, -2462, -2463 - ], - [0, -12341, -12342, -12343, -2410], - [1, 3, 7318], - [0, 7319, 7320, 7321, 5], - [0, -12344, -11458, -2729, -2734, -668, -1107, -1412, -2779, -1980, -5471, -2173, -2234, -2818, -2819, -2550], - [ - 0, -3711, -3036, -9705, -12345, -8566, -3037, -617, -664, -665, -11477, -1003, -1004, -1168, -12346, -1260, - -1452, -1548, -1610, -1654, -12347, -2125, -2150, -2177, -2388, -12348, -2410, -12349 - ], - [0, -475, -4004, -3634, -11468, -12350, -11467], - [1, 3, 7323], - [0, 7324, 7325, 7326, 4], - [0, -4377, -12351, -812], - [0, -12352, -3198, -3136, -3037, -511, -1415, -2375, -2410, -9056], - [0, -1334, -1342, -1971, -729, -7680, -12353, -12354, -7827, -12355, -12356, -12357], - [1, 3, 7328], - [0, 7329, 7330, 231, 4], - [0, -12358, -12359, -2114], - [0, -1654, -12360, -2198, -2210, -2250], - [1, 3, 7332], - [0, 7333, 7334, 7335, 5], - [0, -668, -12361, -12362, -1376, -1392, -1548, -1639, -1728, -1820, -2177], - [0, -526, -555, -558, -824, -932, -940, -1362, -1405, -1650, -1654, -1661, -1942, -2125, -2198], - [0, -1168, -1764, -8403, -5897, -3551], - [1, 3, 7337], - [0, 7338, 7339, 7340, 10], - [0, -12363, -12364, -12365, -12366, -12367, -12368, -12369, -12370], - [0, -1650, -2125, -10011, -10009, -10013, -10014, -12371, -12372, -10010], - [0, -3264, -1409, -1974, -3110], - [1, 3, 7342], - [0, 0, 7343, 7, 4], - [0, -589, -11080, -1021, -1948, -12373, -2320, -2322], - [1, 3, 7345], - [0, 7346, 0, 7347, 4], - [0, -908, -1801], - [0, -8027, -11441, -7412, -5865], - [1, 3, 7349], - [0, 0, 7350, 7351, 4], - [0, -708, -1788, -1654], - [0, -1977, -4112, -12374, -12375, -12376, -2435, -12377], - [1, 3, 7353], - [0, 7354, 91, 7355, 5], - [0, -7591, -12378, -755, -11460, -12379, -12380], - [0, -1978, -10366, -11878, -4864], - [1, 3, 7357], - [0, 7358, 0, 7359, 8], - [0, -719, -1026, -1889, -1931], - [0, -7175, -7036, -6694, -7441, -775, -3264, -8199, -12381, -9487, -7725], - [1, 3, 7361], - [0, 0, 7362, 7363, 9], - [0, -1127, -1452, -1612, -1132, -1414, -1148, -1963], - [0, -1980, -1961, -5923, -6305, -6306, -6307, -6309, -510, -6310, -12382, -4865, -3966], - [1, 3, 7365], - [0, 0, 0, 7366, 10], - [0, -6935, -12383, -6934, -7715, -3839, -6527], - [1, 3, 7368], - [0, 0, 0, 7369, 4], - [0, -5514, -4111, -6935, -4000], - [1, 3, 7371], - [0, 7372, 7373, 7374, 4], - [0, -7397], - [ - 0, -12384, -12385, -5834, -633, -647, -12386, -887, -921, -932, -993, -1065, -1107, -8080, -12387, -11104, - -7402, -1283, -1351, -1365, -1408, -1431, -1650, -1659, -6374, -1777, -1788, -1794, -8385, -2156, -9786, -2322, - -12388 - ], - [0, -1985, -1983, -5101, -2435, -1838, -6231], - [1, 3, 7376], - [0, 7377, 7378, 7379, 4], - [0, -12389, -12390, -12391], - [0, -519, -589, -821, -1023, -2384, -2541], - [0, -4865, -1985, -5101, -2265, -1983, -12392, -12393, -2435, -1838, -6231, -6422, -6420, -12394, -7724], - [1, 3, 7381], - [0, 0, 7382, 7383, 4], - [0, -4004, -12395, -2322], - [0, -4791, -5101, -1985], - [1, 3, 7385], - [0, 0, 7386, 7387, 4], - [0, -652, -1339, -12396], - [0, -1986, -510, -6235, -12397, -5418, -4107, -11866, -5920], - [1, 3, 7389], - [0, 119, 120, 7390, 4], - [ - 0, -1986, -11868, -12398, -12399, -12400, -3214, -7484, -7485, -3756, -2410, -7486, -4165, -3018, -5418, -12401, - -1986, -12402, -12403, -12404, -10587, -11866, -12405, -11049, -7530, -7283, -12406, -6582, -7534, -7535, -7536, - -7537, -7538, -7539, -7540, -7541, -7542, -7543, -7544, -7545, -7503, -12407, -7547, -7548, -6948, -7549, -7550, - -7551, -7552, -7553, -7554, -7555, -7556, -7557, -2444, -7558, -7559, -5063, -7560, -1980, -12408, -5839, - -11450, -12409, -5737, -12410, -2634, -3966, -12411, -11052, -6187, -7563, -856, -7275 - ], - [1, 3, 7392], - [0, 7393, 7394, 7395, 4], - [0, -1549, -12412, -12413, -996], - [ - 0, -1107, -2303, -1449, -932, -2286, -2469, -2379, -2501, -1942, -2376, -21, -778, -2410, -23, -3037, -1322, - -2503, -534, -1304, -2275, -2287, -2508, -3046, -5286, -3983, -3164, -40, -2233, -2505, -12414, -1331, -958, - -2335, -940, -962, -967, -1643, -42, -12415, -428, -8561, -12416, -427, -4011, -948 - ], - [0, -1988, -3496, -3495, -3494, -3505, -3506, -3161], - [1, 3, 7397], - [0, 7398, 7399, 7400, 11], - [0, -719, -10988, -1747], - [ - 0, -1788, -1127, -1496, -932, -2125, -2127, -2177, -589, -1054, -12417, -2111, -1972, -8573, -23, -12418, -40, - -957, -966, -1138, -8022, -9544, -3326, -952, -958, -12419, -968, -1137, -3561, -943, -963, -350, -942, -351, - -12420, -3840 - ], - [0, -3634, -5119, -507, -5855, -2319, -2322, -1471, -1437], - [1, 3, 7402], - [0, 7403, 7404, 7405, 8], - [0, -12421], - [ - 0, -2832, -12422, -427, -428, -3664, -549, -558, -726, -932, -940, -967, -6726, -8011, -1942, -2910, -1989, - -2091, -12423, -2127, -4063, -2142, -2410, -2469, -2501 - ], - [0, -4865, -5092, -3264, -1989, -12424, -3634], - [1, 3, 7407], - [0, 7408, 7409, 7410, 4], - [0, -679, -719, -12425, -1048, -12426, -2114, -2488], - [ - 0, -510, -537, -559, -12427, -705, -10255, -10260, -957, -8022, -999, -1054, -1077, -1127, -1132, -1133, -1137, - -1138, -9544, -1149, -9240, -1152, -10257, -9241, -10644, -12418, -1542, -1972, -2111, -2128, -2177 - ], - [0, -3634, -5119, -1437], - [1, 3, 7412], - [0, 7413, 7414, 7415, 9], - [0, -1856], - [0, -12428, -633, -2322], - [0, -12429, -3582], - [1, 3, 7417], - [0, 0, 7418, 7419, 5], - [ - 0, -21, -23, -40, -43, -47, -3326, -10022, -12430, -571, -589, -693, -767, -12431, -932, -958, -1023, -1276, - -1442, -1654, -1771, -1788, -2125, -2127, -2143, -12432, -12433, -2210, -2342, -12434 - ], - [0, -1993, -5112, -5260, -8113, -3481, -11639, -12435, -12436, -12437, -9976, -12438], - [1, 3, 7421], - [0, 7422, 27, 7423, 6], - [0, -2172], - [0, -6555, -12439, -12439, -10781, -3262, -12440, -5554], - [1, 3, 7425], - [0, 177, 7426, 7427, 5], - [0, -1859, -2250, -2320, -2322, -2568], - [0, -770, -6555], - [1, 3, 7429], - [0, 7430, 27, 7, 10], - [0, -1995], - [1, 3, 7432], - [0, 0, 172, 7433, 9], - [0, -7434, -3215, -1334], - [1, 3, 7435], - [0, 7436, 7437, 7438, 6], - [0, -1616, -2446, -743, -12441, -2249], - [0, -1107, -1722, -1654, -2210, -932, -2198, -1405, -1942, -710, -940], - [0, -11428, -8980, -12442, -5545, -1998, -12443], - [1, 3, 7440], - [0, 7441, 7442, 7, 5], - [0, -651, -12444, -1351, -1335], - [0, -1788, -1654, -932, -615, -2884, -2155, -2062, -3748, -5029], - [1, 3, 7444], - [0, 205, 7445, 48, 5], - [ - 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -767, -824, -825, -932, -940, -958, -967, -1344, -1415, -1534, - -1623, -1771, -1942, -2251, -2501 - ], - [1, 3, 7447], - [0, 7448, 0, 7449, 4], - [0, -1371, -1646, -822, -2271], - [0, -727, -2001, -11642, -10659], - [1, 3, 7451], - [0, 7452, 7453, 7454, 5], - [0, -44, -682, -2004], - [ - 0, -12445, -407, -409, -3059, -3136, -3037, -3040, -3052, -6265, -767, -881, -932, -959, -978, -1031, -12446, - -1103, -1107, -1521, -1763, -12447, -2003, -4946, -2006, -2019, -2082, -2410 - ], - [0, -2006, -3159, -12448, -12449, -3962, -7434], - [1, 3, 7456], - [0, 7457, 7458, 7459, 5], - [0, -44, -5650, -682, -2004], - [ - 0, -12445, -409, -3136, -3040, -3052, -4972, -767, -881, -932, -978, -1031, -1103, -1521, -1763, -12447, -2006, - -2019, -2410 - ], - [0, -2006, -3159, -12450, -3821], - [1, 3, 7461], - [0, 7462, 7463, 7464, 5], - [0, -44, -2029], - [ - 0, -12445, -409, -3136, -3037, -3040, -3052, -6633, -12451, -4972, -6265, -761, -767, -881, -932, -959, -978, - -1031, -1107, -1344, -1534, -1763, -1942, -12447, -2006, -2019, -2410 - ], - [0, -2006, -2444], - [1, 3, 7466], - [0, 0, 0, 41, 10], - [1, 3, 7468], - [0, 7469, 0, 245, 10], - [0, -2055], - [1, 3, 7471], - [0, 7472, 7473, 245, 5], - [0, -1792], - [0, -1415, -2006, -2019, -2501], - [1, 3, 7475], - [0, 7476, 7477, 7478, 5], - [0, -12453, -12454, -12455, -12456, -12457], - [0, -2127, -2410], - [0, -3321, -1122, -2006, -3322, -8977, -3098], - [1, 3, 7480], - [0, 7481, 0, 7, 11], - [0, -1992, -753, -1961, -2516, -1792, -2082], - [1, 3, 7483], - [0, 7484, 0, 7485, 4], - [0, -2489, -1384, -682, -1967, -12458, -860, -44, -12459, -12460, -12461, -3140, -2055, -3024], - [0, -620, -2006, -3095, -3098, -12462, -3159], - [1, 3, 7487], - [0, 7488, 7489, 7490, 5], - [0, -12463, -1548, -1549, -12464, -1967, -12465, -2355], - [ - 0, -12466, -12467, -6263, -6264, -4749, -526, -527, -533, -534, -12468, -559, -560, -562, -566, -664, -12469, - -778, -915, -994, -1033, -1304, -1322, -1331, -1347, -1415, -1417, -12470, -1654, -1762, -1764, -1792, -2006, - -8934, -12471, -2019, -2024, -12472, -2052, -2102, -2109, -2125, -2275, -12473, -2501, -2505 - ], - [0, -2006, -12474, -3159, -8597, -4122, -12475, -10366, -12476, -3119, -3825], - [1, 3, 7492], - [0, 7493, 7494, 7495, 9], - [0, -747, -1967], - [ - 0, -21, -23, -32, -26, -36, -40, -41, -43, -534, -553, -778, -827, -932, -933, -958, -962, -969, -970, -1103, - -1331, -12477, -1643, -2006, -2019, -2275, -2322, -2501, -2503, -2505 - ], - [0, -3095, -3159, -2006, -12478, -699], - [1, 3, 7497], - [0, 7498, 7499, 7500, 9], - [0, -2852, -703, -807], - [ - 0, -23, -32, -3192, -3840, -26, -40, -41, -42, -190, -12479, -3326, -350, -351, -3266, -3267, -406, -409, -410, - -3330, -3136, -4961, -3037, -3040, -3052, -427, -428, -522, -533, -553, -753, -12480, -932, -940, -958, -959, - -969, -970, -9724, -1344, -1415, -4980, -1416, -1419, -1534, -1548, -1942, -2006, -2019, -2127, -5090, -2162, - -2223, -2281, -2282, -3436, -2285, -2375, -2387, -2410, -2411 - ], - [0, -2006, -4222, -4120, -4121, -3159], - [1, 3, 7502], - [0, 7503, 7504, 7, 5], - [ - 0, -1805, -668, -1359, -1111, -1872, -6558, -1047, -12481, -1966, -1044, -1273, -2269, -2343, -769, -2194, -635, - -1543, -6197, -12482, -22, -2070, -2021, -930, -1067 - ], - [0, -1415, -767], - [1, 3, 7506], - [0, 7507, 7508, 7, 6], - [0, -12483, -12484, -12485, -1025, -1311], - [0, -4010, -367, -409, -5220, -3136, -3037, -3040, -3052, -1415, -5129, -1771, -2006, -2019, -2200, -2410], - [1, 3, 7510], - [0, 7511, 7512, 7, 8], - [0, -12485], - [0, -4010, -367, -3136, -1771, -2200, -2410], - [1, 3, 7514], - [0, 7515, 0, 7516, 4], - [0, -2114, -8245, -23, -47, -4096, -3200, -46, -12486, -4776, -10101], - [0, -2006, -856, -12487], - [1, 3, 7518], - [0, 7519, 0, 41, 4], - [0, -2166], - [1, 3, 7521], - [0, 7522, 7523, 7524, 4], - [0, -12488, -12489, -1967], - [ - 0, -21, -23, -32, -3840, -12490, -34, -12491, -6065, -5584, -12492, -38, -40, -41, -43, -86, -9404, -12493, - -10709, -3326, -350, -351, -3470, -7040, -3472, -7041, -7042, -5295, -4774, -12494, -406, -407, -409, -2622, - -3040, -3052, -427, -428, -533, -535, -536, -720, -767, -932, -940, -958, -962, -966, -967, -969, -970, -1344, - -12495, -1357, -1415, -1534, -1609, -1868, -1942, -2006, -2019, -2049, -2052, -2125, -2127, -2140, -2174, -2214, - -2275, -2278, -2410, -2501, -12496 - ], - [0, -3159, -2006, -7581, -7582, -7764], - [1, 3, 7526], - [0, 0, 7527, 7528, 4], - [ - 0, -22, -23, -2624, -533, -534, -561, -668, -679, -767, -1059, -1320, -1415, -12497, -1792, -1961, -2000, -2006, - -2010, -2019, -2125, -12498, -2231, -2501 - ], - [0, -12499, -4132, -6324, -5547, -6335, -12500, -12501, -2489], - [1, 3, 7530], - [0, 7531, 7532, 7533, 4], - [0, -1792, -1967, -2798, -12502], - [ - 0, -527, -528, -537, -539, -546, -551, -558, -560, -664, -708, -740, -796, -932, -12503, -940, -958, -962, -964, - -967, -969, -1405, -1471, -1474, -12504, -1475, -1476, -1479, -12505, -1482, -1486, -1490, -1491, -11508, -1654, - -1942, -2006, -2019, -2125, -2127, -2128, -2131, -2137, -2138, -2210, -2211 - ], - [0, -2022, -12506, -2006, -10855, -12507, -12508, -12509, -10606, -11729, -3956, -12510, -5553], - [1, 3, 7535], - [0, 0, 7536, 7537, 4], - [ - 0, -3615, -262, -350, -351, -3266, -367, -7043, -407, -409, -3136, -3037, -3040, -3052, -3563, -795, -932, -940, - -3071, -967, -969, -970, -4814, -1344, -1415, -1419, -12511, -2781, -1534, -1942, -2006, -2019, -2125, -2127, - -2142, -2384, -2410, -2411, -2516, -2564 - ], - [0, -2006, -3322, -4053, -4054, -12512, -3926, -2410, -4124], - [1, 3, 7539], - [0, 7540, 7541, 7542, 6], - [0, -10579, -1109, -1311, -1543, -1967, -2030, -2192, -2231], - [ - 0, -3795, -3040, -3807, -526, -527, -528, -533, -536, -537, -546, -551, -556, -558, -560, -708, -6019, -761, - -767, -915, -12513, -916, -932, -933, -940, -958, -962, -969, -1344, -1415, -1534, -1942, -2006, -2019, -12514, - -2052, -2069, -2125, -2127, -2128, -2131, -2133, -2137, -2138, -2143, -2251, -12515 - ], - [0, -2006, -3214, -2501, -6211, -1540, -12516, -10589, -12517, -5932, -11492], - [1, 3, 7544], - [0, 7545, 7546, 7547, 6], - [0, -44, -2770, -12518], - [ - 0, -21, -23, -32, -12519, -36, -3204, -38, -39, -40, -41, -43, -3326, -350, -351, -3561, -3266, -406, -407, - -409, -3136, -3040, -3664, -7465, -527, -3766, -6046, -756, -757, -767, -932, -933, -940, -958, -12520, -962, - -969, -976, -1278, -1344, -1349, -1534, -1650, -1942, -2006, -2019, -2052, -2125, -2127, -2410, -2469, -2550 - ], - [0, -1349, -9780, -1348, -9781, -9782, -9772, -9783, -2006, -3476], - [1, 3, 7549], - [0, 0, 7550, 7551, 10], - [ - 0, -2832, -2581, -5295, -407, -409, -3037, -3040, -3052, -440, -2970, -3899, -8349, -1534, -1637, -1771, -1874, - -2910, -2006, -2019, -3246, -2214, -2391, -2410, -2469 - ], - [0, -2006, -3095, -3322, -12521, -12522, -12523, -12524, -12525, -12526, -12527], - [1, 3, 7553], - [0, 7554, 0, 7555, 4], - [0, -5220, -1311, -2387, -12528, -12529, -12530, -12531], - [0, -3276, -5538, -9783, -1348, -9780, -1382, -12250, -9782, -2006, -3476, -3940, -9781], - [1, 3, 7557], - [0, 0, 0, 41, 6], - [1, 3, 7559], - [0, 0, 7560, 7, 5], - [0, -656, -668, -932, -12532, -1415, -1417, -1942, -2127, -2138, -2143], - [1, 3, 7562], - [0, 7563, 7564, 7565, 6], - [0, -5334, -4251, -9596, -1291, -2632, -1619, -2098, -2101, -2427, -2429, -5358], - [ - 0, -409, -3037, -3040, -3052, -652, -725, -928, -969, -4652, -1942, -2006, -2019, -2088, -12533, -2094, -2095, - -2100, -4656, -2399, -2410, -2541 - ], - [0, -3272, -8630, -3095, -4329, -1599, -2006, -3159, -2093, -2427], - [1, 3, 7567], - [0, 7568, 7569, 7570, 5], - [0, -12534, -1967, -2030, -2489], - [ - 0, -12535, -526, -527, -528, -534, -535, -558, -560, -564, -756, -767, -932, -940, -12416, -958, -962, -967, - -969, -5997, -1471, -1475, -1476, -1479, -1482, -1483, -1490, -1492, -1654, -1771, -1942, -2006, -2019, -2043, - -2044, -2198, -2416, -2501, -2503, -2505 - ], - [0, -2006, -3159, -4126, -12536], - [1, 3, 7572], - [0, 7573, 7574, 7575, 5], - [0, -1856, -1967, -1992], - [ - 0, -525, -12537, -527, -528, -534, -709, -778, -932, -933, -949, -958, -962, -969, -1059, -11942, -12538, - -12539, -1413, -1471, -1476, -1481, -12540, -1484, -1492, -12541, -1859, -2024, -2275, -2501, -2505 - ], - [0, -2006, -3095, -3159, -12542, -12543, -12544, -12545, -5176, -12546, -3160], - [1, 3, 7577], - [0, 7578, 0, 246, 4], - [ - 0, -2531, -2624, -2550, -2177, -1961, -578, -719, -1384, -2166, -481, -533, -12547, -2654, -1624, -2516, -12548, - -1950, -2041, -12549, -458, -12550, -11463, -12551, -9870, -2082, -12552, -1421, -12553, -12554, -12555, -12556, - -12557, -12558, -12559, -12560 - ], - [1, 3, 7580], - [0, 0, 7581, 7582, 4], - [0, -12563, -12564, -12565, -932, -967, -1942, -2006, -2034, -12566, -2410], - [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -12568], - [1, 3, 7584], - [0, 7585, 7586, 7587, 6], - [0, -2550, -1967], - [ - 0, -2006, -932, -12569, -12570, -1387, -1942, -4731, -21, -12571, -23, -528, -1064, -12572, -9081, -12573, - -12574, -12575, -12576, -12577, -969, -933, -958, -940, -962, -967, -970, -3156 - ], - [ - 0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -12578, -7084, -12579, -3160, -3167, -3843, -9472, -9474, - -3827 - ], - [1, 3, 7589], - [0, 0, 7590, 7591, 9], - [ - 0, -21, -23, -26, -36, -3203, -40, -41, -43, -12580, -2685, -8471, -261, -6429, -3267, -407, -409, -410, -3040, - -428, -528, -534, -535, -3090, -682, -703, -767, -932, -940, -949, -958, -969, -1103, -1449, -1613, -6519, - -1942, -4130, -2006, -2019, -12581, -2127, -2128, -2131, -5090, -2134, -2137, -2138, -2143, -2376, -2410, -2469, - -2501, -2503, -2505 - ], - [0, -3159, -2006, -12582, -3962, -6240, -12583, -6769], - [1, 3, 7593], - [0, 0, 7594, 7595, 4], - [ - 0, -23, -26, -36, -40, -6035, -3326, -528, -534, -664, -932, -1344, -1534, -1654, -1771, -1942, -2006, -2019, - -2052, -12584, -2125, -2127, -2501 - ], - [0, -2006, -12585, -12586, -12587], - [1, 3, 7597], - [0, 0, 7598, 7599, 4], - [0, -4066, -12588, -932, -12589, -967, -12590, -1415, -1942, -2127, -2410], - [0, -2039, -3264, -3839, -5092, -7153, -9681, -727, -2006, -2019], - [1, 3, 7601], - [0, 7602, 7603, 7604, 5], - [0, -12591, -12518], - [ - 0, -262, -349, -406, -407, -409, -3037, -3140, -3040, -3052, -708, -767, -932, -940, -948, -958, -967, -969, - -1449, -1942, -2006, -2019, -2074, -2125, -2391, -2410, -2411, -2469 - ], - [0, -2006, -3476, -2074], - [0, 0, 0, 41, 4], - [1, 3, 7607], - [0, 7608, 7609, 7610, 4], - [0, -1346, -12592, -1967, -5582], - [ - 0, -3267, -3035, -12593, -4647, -12594, -12595, -3621, -3040, -3052, -4372, -427, -428, -664, -767, -932, -952, - -1103, -1449, -12596, -1654, -1942, -2006, -2019, -2125, -2127, -5405, -2198, -2210, -2387, -2392, -2402, -2410 - ], - [0, -775, -3159, -12521, -2006, -3162, -12597, -12598, -3580, -12599, -3576, -3095], - [1, 3, 7612], - [0, 7613, 7614, 248, 6], - [0, -743, -3169], - [0, -2391, -2006, -2426, -12600, -12601, -2019, -2410, -2052, -409, -1419, -3172, -407, -410], - [1, 3, 7616], - [0, 7617, 7618, 248, 10], - [0, -2043], - [0, -2391, -2006, -12600, -2019, -2410], - [1, 3, 7620], - [0, 0, 7621, 7622, 4], - [ - 0, -526, -527, -528, -534, -9887, -9888, -556, -559, -560, -563, -566, -932, -941, -956, -958, -962, -969, - -1001, -1306, -9413, -12539, -1471, -1476, -1479, -1482, -1483, -1490, -1492, -1654, -2006, -2019, -2040, -2043, - -2074, -12602, -12603, -12604, -2501 - ], - [0, -2006, -2074, -3122], - [1, 3, 7624], - [0, 7625, 28, 7, 4], - [ - 0, -594, -1415, -865, -932, -2177, -1889, -1966, -2114, -2501, -1077, -1080, -656, -533, -778, -23, -1041, - -2163, -2318, -534, -635, -1426, -2275, -366, -866, -2041, -1908, -2015, -1918, -2233, -1352, -1927, -2010, - -2116, -2505, -1331, -1428, -10049, -2335, -561, -1903, -2526, -941, -1643, -2507, -779, -542, -661, -2695 - ], - [1, 3, 7627], - [0, 7628, 7629, 7630, 11], - [0, -44, -3772, -3778, -3819, -3024, -1624, -1967, -2055, -3820], - [0, -5131, -915, -2760, -5116, -2006, -2019], - [0, -12605, -4053, -3962, -12606, -2006, -3159, -6750, -3160], - [1, 3, 7632], - [0, 7633, 7634, 7635, 5], - [0, -682, -12607, -1553, -2113], - [ - 0, -21, -23, -32, -26, -39, -40, -41, -12608, -407, -409, -410, -3037, -518, -527, -533, -534, -557, -778, -823, - -824, -923, -932, -958, -969, -1004, -12609, -1168, -1243, -1344, -1415, -1419, -1440, -1455, -1534, -1812, - -1908, -1942, -1992, -2006, -2019, -2082, -2210, -12610, -2275, -2417, -2501, -2503, -2505, -12611 - ], - [0, -12612, -12613, -12614, -12615, -12449, -3159], - [1, 3, 7637], - [0, 7638, 7639, 7640, 5], - [ - 0, -12616, -3081, -12617, -461, -6426, -507, -5223, -639, -684, -12618, -703, -12619, -748, -753, -8245, -12620, - -925, -930, -931, -989, -11676, -5504, -12621, -3649, -1107, -12622, -1284, -1395, -12623, -12624, -12625, - -12626, -12627, -12628, -12629, -12630, -1496, -12631, -1548, -9160, -1606, -12632, -3446, -1816, -1955, -1967, - -12633, -12634, -2015, -2018, -12635, -12636, -12637, -2026, -5351, -2066, -2093, -12638, -2335, -8299, -12639, - -2429, -2505, -2508 - ], - [ - 0, -21, -23, -26, -40, -6056, -41, -42, -407, -409, -12640, -12641, -12486, -12642, -426, -12643, -3136, -12644, - -3044, -12645, -3037, -3803, -3040, -3052, -12646, -12647, -3046, -12648, -3806, -427, -428, -527, -528, -533, - -534, -778, -12310, -12649, -12650, -12651, -932, -12652, -948, -952, -958, -962, -969, -1041, -1077, -1344, - -1415, -12653, -1534, -1623, -1942, -1992, -2006, -2019, -2052, -12654, -2275, -2410, -2437, -2501, -2503 - ], - [0, -2006, -4146, -4900, -4901, -856, -3671, -3262, -3095, -3098], - [1, 3, 7642], - [0, 7643, 7644, 7645, 4], - [0, -44, -401, -3140, -1967], - [ - 0, -23, -38, -40, -41, -190, -6486, -3326, -350, -351, -3561, -3266, -409, -3136, -4647, -3037, -3040, -3052, - -3714, -553, -2745, -932, -940, -969, -970, -4814, -1110, -1415, -1419, -1722, -1772, -1942, -2006, -2019, - -2127, -2195, -2200, -5091, -2375, -2379, -2410, -2411 - ], - [0, -5092, -3264, -5093, -5094, -3214, -2006, -12655, -3839, -12656, -2410], - [1, 3, 7647], - [0, 7648, 0, 7649, 6], - [0, -1033], - [0, -12657, -2006, -2363, -826, -12658, -2051], - [1, 3, 7651], - [0, 7652, 0, 7653, 8], - [0, -2029, -2166], - [0, -2006, -2034, -12659], - [1, 3, 7655], - [0, 108, 7656, 7657, 5], - [ - 0, -12660, -11184, -234, -405, -3037, -3040, -3052, -440, -756, -795, -2926, -1534, -1889, -1942, -2006, -2019, - -2391, -2410, -2466, -12661 - ], - [0, -2006, -4127, -12662, -3159, -2053, -5737, -12663, -12664, -12665], - [1, 3, 7659], - [0, 7660, 7661, 7662, 5], - [0, -12666, -12667], - [ - 0, -589, -633, -647, -710, -12668, -3346, -913, -12669, -923, -932, -12670, -1127, -1132, -10258, -1134, -7849, - -1137, -1144, -12671, -10265, -12672, -1417, -1813, -1859, -6184, -12673, -2066, -9266, -2359, -2410, -2416, - -12322, -2493 - ], - [0, -2006, -4146, -8530, -6107], - [1, 3, 7664], - [0, 7665, 0, 7666, 10], - [0, -44, -860, -1580, -1967], - [0, -2006, -12546, -8111, -12674, -5176, -775, -12675], - [1, 3, 7668], - [0, 7669, 7670, 7671, 6], - [0, -703, -1967, -860, -1580, -44, -2030], - [ - 0, -1415, -1344, -2006, -2490, -932, -2125, -2127, -708, -1889, -2501, -1059, -1103, -1942, -767, -1361, -1978, - -2019, -21, -533, -709, -778, -23, -1041, -1534, -1891, -2503, -518, -528, -534, -1952, -2043, -2275, -1908, - -39, -11942, -12676, -2044, -40, -6056, -7748, -2505, -41, -12677, -951, -969, -12678, -1331, -2052, -2128, - -2143, -12679, -2138, -940, -956, -962, -967, -2131, -12680, -2137, -1017, -3840, -38, -6057, -12681, -26, - -3204, -553 - ], - [0, -2006, -3476, -3159, -9614, -4108, -12682, -12683, -12684, -4002, -12685, -5147, -12129, -6445, -4672, -9133], - [1, 3, 7673], - [0, 7674, 7675, 7676, 10], - [0, -2346, -2054], - [0, -1654, -1452, -2177, -6398, -633, -725, -12686], - [0, -2006, -633, -6340, -4146, -3756, -3862, -6408], - [1, 3, 7678], - [0, 7679, 7680, 7681, 5], - [0, -44, -2997, -682, -1967, -2804, -2055], - [ - 0, -21, -23, -32, -34, -35, -36, -3204, -40, -41, -4757, -4762, -4754, -12687, -4749, -407, -409, -410, -3040, - -528, -533, -534, -561, -620, -726, -740, -10524, -767, -12688, -879, -888, -932, -933, -940, -956, -958, -962, - -969, -4756, -12689, -1415, -1419, -1449, -1455, -1637, -1942, -2006, -2019, -2022, -12690, -2043, -2052, -2410, - -2501 - ], - [0, -2058, -620, -2006, -3095, -3098, -3159, -3160], - [1, 3, 7683], - [0, 7684, 7685, 7, 4], - [0, -3950], - [0, -4298, -4300, -3952, -5866, -428, -652, -948, -2319, -2379, -2386, -2410], - [1, 3, 7687], - [0, 7688, 118, 7689, 8], - [0, -6902, -6904, -6990, -2400, -8803], - [0, -4055, -2059, -1838, -6656, -1076, -11998, -6994, -5897, -6811], - [1, 3, 7691], - [0, 7692, 14, 7693, 4], - [0, -8341, -2060, -2400], - [ - 0, -4055, -2059, -1838, -6656, -1076, -11998, -6994, -5897, -5573, -8804, -1047, -5504, -8805, -8806, -7282, - -5572, -2114, -8807, -6370, -7420, -7421, -2487, -8808, -1847 - ], - [1, 3, 7695], - [0, 7696, 7697, 7698, 9], - [0, -458, -640, -997, -1958, -6383], - [ - 0, -23, -6065, -5584, -3244, -350, -6572, -351, -357, -633, -652, -928, -12691, -932, -943, -958, -965, -968, - -1874, -1942, -2127, -9701, -2319, -12692, -2322, -2323, -2426, -2501, -2503 - ], - [0, -8800, -5827, -11441], - [1, 3, 7700], - [0, 0, 7701, 7702, 8], - [0, -2319, -1351], - [0, -2063, -12693, -6656], - [1, 3, 7704], - [0, 0, 0, 7705, 9], - [0, -2063, -12397, -9845, -1965, -3969, -5110, -687, -3975, -3957, -12694, -10394, -4116, -6301], - [0, 68, 15, 16, 5], - [1, 3, 7708], - [0, 7709, 7710, 7711, 5], - [0, -5223, -987, -2231, -12695, -2387], - [ - 0, -23, -25, -40, -12696, -3036, -3621, -3037, -428, -932, -12670, -12697, -1107, -1534, -1654, -1942, -9880, - -2410 - ], - [0, -3272, -9306, -12698, -9308, -4132, -9307, -6747, -12699], - [0, 67, 15, 16, 8], - [1, 3, 7714], - [0, 7715, 125, 7716, 4], - [0, -2114], - [0, -4792, -5932, -5195, -8109, -12700], - [1, 3, 7718], - [0, 7719, 0, 7720, 4], - [0, -44, -12701, -1033, -1311, -2030, -5746], - [0, -2006, -12702, -3098, -12703, -3481, -8113, -12704], - [1, 3, 7722], - [0, 124, 27, 7723, 8], - [0, -7421, -12705], - [1, 3, 7725], - [0, 7726, 0, 7727, 6], - [0, -12706, -12707, -12708, -12709, -12710], - [0, -2071], - [1, 3, 7729], - [0, 7730, 7731, 150, 10], - [ - 0, -3544, -3786, -1610, -3788, -1955, -2223, -1885, -863, -682, -1653, -1967, -3790, -3791, -3787, -3793, -996, - -3789, -1848, -3792, -2680, -12711 - ], - [ - 0, -1992, -2435, -1415, -1652, -1344, -2006, -2387, -915, -932, -2125, -753, -795, -1442, -1821, -2195, -2375, - -2379, -3811, -2501, -1942, -2019, -778, -2214, -2410, -3035, -3136, -3800, -3037, -3810, -2503, -3040, -3041, - -1952, -2275, -3043, -3802, -3801, -3803, -3805, -3046, -2760, -3808, -3809, -4773, -3797, -3052, -3140, -2278, - -3806, -585, -2505, -3799, -748, -969, -1331, -958, -3798, -1419, -2509, -3804, -428, -970, -740, -3794, -1067, - -427, -12712 - ], - [1, 3, 7733], - [0, 7734, 7735, 7736, 4], - [0, -12713, -12714], - [0, -2006, -2501, -2019, -2410, -3040, -3052, -3859, -12715], - [0, -2072, -3438, -3690, -4847, -856, -12716, -858, -12717], - [1, 3, 7738], - [0, 0, 7739, 7740, 5], - [ - 0, -23, -3037, -427, -428, -767, -4780, -932, -941, -948, -958, -969, -970, -1107, -12718, -1942, -2125, -2153, - -2391, -2410, -2469 - ], - [0, -2074, -4782, -4125, -12719, -5112, -1361, -12517, -12516, -12720, -1062, -12721], - [1, 3, 7742], - [0, 7743, 7744, 7745, 5], - [0, -12722, -12723], - [0, -12724, -12725, -12726, -1344, -1534, -1771, -1942, -2466, -2469, -2541], - [0, -1062, -2074, -10951, -12727], - [1, 3, 7747], - [0, 7748, 7749, 7750, 5], - [0, -1548, -2029, -924, -1384, -1398, -1967, -44, -1311], - [ - 0, -2359, -1415, -1344, -2006, -2074, -932, -2125, -708, -2501, -1059, -1942, -767, -1361, -2019, -21, -821, - -2214, -23, -12728, -1534, -2040, -2503, -528, -534, -12729, -40, -41, -540, -951, -969, -6040, -2052, -958, - -12726, -12730, -956, -962, -941, -2502, -970, -5295, -12416, -38, -26, -3203 - ], - [0, -2006, -3476, -1062, -2074, -2040, -2076, -4053, -11313], - [1, 3, 7752], - [0, 7753, 7754, 7755, 6], - [0, -819], - [ - 0, -527, -537, -11899, -559, -664, -708, -932, -933, -958, -962, -969, -1339, -1344, -1654, -1788, -2074, -2125, - -2127, -2128, -2131, -2137, -2143, -2210 - ], - [0, -2074, -3444, -2077, -5401], - [1, 3, 7757], - [0, 7758, 7759, 7760, 10], - [0, -12731], - [0, -23, -38, -39, -40], - [0, -3214, -2074, -5401, -12732, -12733, -12734], - [1, 3, 7762], - [0, 0, 7763, 7764, 5], - [0, -427, -428, -767, -932, -940, -1942, -2074, -2125, -2391, -2410, -2469], - [0, -2074, -12735, -5401, -12736, -1062], - [1, 3, 7766], - [0, 0, 7767, 7768, 4], - [0, -3035, -3621, -3037, -664, -824, -12737, -1168, -12738, -12739, -1231, -1243, -12740, -1259, -1654, -2410], - [0, -11313, -11872, -3214, -12741], - [1, 3, 7770], - [0, 0, 7771, 7772, 8], - [0, -708, -1127, -1162, -1405, -6186, -1991, -2111], - [0, -5569, -5570, -3214, -4112, -3262, -3673], - [1, 3, 7774], - [0, 0, 0, 7775, 4], - [0, -12742, -11997, -3262, -510], - [1, 3, 7777], - [0, 7778, 0, 7779, 6], - [0, -5334, -2087, -2090, -2427], - [0, -12743, -3272, -3264, -1838, -1958, -2083, -6233, -6231, -4132, -10919, -2427], - [1, 3, 7781], - [0, 7782, 7783, 7784, 5], - [0, -5334, -9581, -4264, -2766, -2427, -2429], - [0, -3037, -9586, -652, -12744, -1942, -2083, -2094, -2100, -2399, -2410, -2541], - [0, -2427, -2083, -12745, -3862, -10857, -10606, -3264], - [1, 3, 7786], - [0, 7787, 7788, 7789, 4], - [0, -5334, -9581, -2766, -12746, -2235, -2429], - [0, -3037, -9586, -652, -1942, -2083, -2094, -2100, -2399, -2410, -2541], - [0, -2427, -2083, -12745, -3862, -9589, -3264, -1599, -12747, -10606, -2435], - [1, 3, 7791], - [0, 7792, 7793, 7794, 11], - [0, -5334, -12748, -1618, -5204, -5205, -2427, -5356], - [0, -4228, -3037, -3040, -652, -932, -12749, -962, -969, -9602, -1942, -2094, -11167, -12750, -2410], - [0, -9589, -3264, -1599, -4147, -2083, -12745, -2427], - [1, 3, 7796], - [0, 7797, 0, 7798, 5], - [0, -5334, -2586, -2427], - [0, -12743, -3272, -3264, -1838, -3862, -2083, -12745, -4132, -10919, -2427], - [1, 3, 7800], - [0, 7801, 7802, 7803, 8], - [0, -5334, -1286, -5358], - [0, -3037, -652, -1942, -2090, -2094, -2098, -2100, -2101, -2399, -2410, -2427, -2429, -2541], - [0, -3264, -3862, -9591, -2083, -12745, -2427], - [1, 3, 7805], - [0, 7806, 7807, 7808, 4], - [0, -5334, -3649, -4264, -1292, -2429], - [0, -3037, -652, -1942, -2083, -2094, -2100, -2399, -2410, -2541], - [0, -10857, -3264, -7231, -3862, -2083, -12745, -2222, -2427], - [1, 3, 7810], - [0, 7811, 0, 7812, 6], - [0, -5334, -1290, -2427], - [0, -12743, -3272, -7644, -3264, -3862, -2083, -12745, -6233, -6231, -4132, -10919, -2427], - [1, 3, 7814], - [0, 7815, 7816, 7817, 5], - [ - 0, -12751, -305, -12752, -512, -6563, -680, -6869, -4236, -1376, -12753, -1566, -1641, -11656, -1805, -1816, - -3547, -8874, -2177, -2654, -2426, -2436, -12754, -2551 - ], - [0, -190, -12755, -3037, -932, -8339, -1110, -3781, -1498, -12756, -12757, -1942, -2094, -12758, -2323, -2410], - [ - 0, -7641, -5887, -5890, -12759, -5889, -1105, -7661, -9845, -6657, -1764, -8403, -5737, -9244, -2091, -7737, - -11729, -5550, -6818, -3673, -9318, -2177, -3862 - ], - [1, 3, 7819], - [0, 7820, 7821, 7822, 4], - [0, -1405, -1645, -1876, -2231, -2347], - [0, -932, -934, -958, -1127, -1168, -12760, -2125], - [0, -7841, -9219, -2231, -1405, -4005], - [1, 3, 7824], - [0, 7825, 0, 7826, 4], - [0, -2427, -4251, -2098, -5616], - [0, -12743, -3272, -7644, -1599, -10918, -1838, -1958, -2093, -6233, -6231, -4132, -10919, -2427], - [1, 3, 7828], - [0, 7829, 0, 7830, 11], - [0, -3190, -12761, -2093, -12762], - [0, -8425, -687, -1599, -10918, -2093, -2427], - [1, 3, 7832], - [0, 7833, 7834, 7835, 10], - [0, -4251, -10922, -10923, -2098, -5616, -2427], - [0, -3037, -652, -12744, -1942, -2093, -2094, -2100, -2267, -7699, -2399, -2410, -2541], - [0, -10604, -12763, -4329, -1105, -1599, -10918, -3862, -2093, -12764, -5552, -4002, -4109, -2427], - [1, 3, 7837], - [0, 7838, 7839, 7840, 4], - [0, -4251, -1287, -1619, -1290, -2427], - [ - 0, -5334, -3037, -652, -10915, -2586, -1942, -2094, -4242, -2095, -4655, -2098, -2100, -12765, -4656, -2399, - -2410, -5358, -2541 - ], - [0, -7644, -3264, -1599, -10918, -3862, -2093, -12764, -6231, -2427], - [1, 3, 7842], - [0, 7843, 7844, 7845, 9], - [0, -5358, -2427, -4251, -12766, -5356, -12767], - [0, -652, -932, -2093, -1942, -1874, -2094, -2410, -5334, -2101, -2090, -12750, -12749, -11167], - [0, -856, -5670, -12768, -3862, -2093, -12764, -2427], - [1, 3, 7847], - [0, 7848, 0, 7849, 5], - [0, -4251, -1618, -10869, -2427], - [0, -12743, -3272, -1599, -10918, -1838, -3862, -2093, -12764, -4132, -10919, -2427], - [1, 3, 7851], - [0, 7852, 7853, 7854, 9], - [ - 0, -12769, -12770, -2095, -12771, -12772, -9514, -9515, -9516, -9517, -9518, -12773, -9519, -12774, -9520, - -12775, -12776, -12777, -12778, -9524, -12779, -9527, -12780, -12781, -12782, -12783, -12784, -12785, -9528, - -12786, -12787, -12788, -12789, -12790, -12791, -12792, -12793, -9532, -9533, -9534, -12794, -9535, -9536, - -4995, -12795, -4656, -12796, -12797, -2427 - ], - [0, -86, -3307, -932, -946, -1053, -1344, -1534, -1942, -2094, -2541], - [0, -1105, -6913, -2093], - [1, 3, 7856], - [0, 7857, 7858, 7859, 4], - [ - 0, -12769, -2095, -4655, -9514, -9515, -9516, -9517, -12798, -9518, -12799, -12773, -9519, -12774, -9520, - -12775, -12776, -12777, -9522, -12778, -12800, -12801, -12802, -12803, -12804, -12805, -12806, -12807, -12808, - -12809, -12779, -12810, -9527, -12811, -12780, -12812, -12781, -12782, -12783, -12784, -12785, -9528, -12786, - -12813, -12814, -12815, -12788, -12789, -12816, -12817, -12790, -12791, -12792, -12818, -12819, -12793, -9532, - -9533, -9534, -12794, -9535, -9536, -4995, -12795, -5616, -4656, -9537, -12796, -12820, -2267, -2427 - ], - [0, -1942, -2094, -2399, -2410, -2541], - [0, -6913, -2093, -12821], - [1, 3, 7861], - [0, 7862, 7863, 7864, 8], - [0, -5334, -4251, -1619, -2427, -5358], - [0, -3037, -652, -1942, -2089, -2090, -2094, -2098, -2100, -5616, -2399, -2410, -2541], - [0, -9589, -3264, -1599, -10918, -3862, -12745, -2083, -12764, -2093, -2427], - [1, 3, 7866], - [0, 7867, 7868, 7869, 6], - [0, -503, -12822], - [0, -5514, -589, -8630, -932, -953, -985, -1202, -1304, -1610, -1654, -1788, -2127, -2133, -2137, -2140, -2184], - [0, -8630, -1599, -3437, -1838, -3215, -1958, -2102, -7650, -4065, -5554], - [1, 3, 7871], - [0, 0, 125, 7872, 5], - [0, -1168, -8109, -7693, -3866], - [1, 3, 7874], - [0, 7875, 7876, 7877, 4], - [0, -668, -1107, -2550], - [0, -190, -652, -664, -665, -932, -1654], - [0, -8276, -5554, -7002, -6656], - [1, 3, 7879], - [0, 7880, 7881, 7882, 10], - [ - 0, -1983, -11197, -2446, -1015, -12823, -6397, -12824, -1069, -1641, -12825, -2155, -2364, -12826, -12827, - -12828, -12829, -12830, -8956, -1856, -1459 - ], - [ - 0, -1788, -2322, -1471, -12831, -2125, -708, -615, -2250, -756, -12832, -8375, -633, -641, -9573, -1476, -2188, - -1472, -1860, -8958, -1484 - ], - [0, -1334, -5493, -2444, -3590], - [1, 3, 7884], - [0, 7885, 7886, 7887, 4], - [0, -615, -2364, -12833, -12834], - [0, -664, -1168, -668, -1548, -2125, -2105, -1231, -617, -1197, -2150, -1220, -11117, -1973], - [0, -2533, -1334, -1342, -1961, -2105, -11301, -12835, -615], - [1, 3, 7889], - [0, 7890, 7891, 7892, 9], - [0, -12834, -12833, -2364], - [0, -617, -664, -668, -1168, -11117, -1197, -1220, -1231, -1548, -1973, -2105, -2125, -2150], - [0, -2533, -1334, -1342, -1961, -2105, -11301, -12835, -5269], - [1, 3, 7894], - [0, 0, 7895, 7, 10], - [0, -2379, -2410, -710], - [1, 3, 7897], - [0, 0, 7898, 7899, 4], - [0, -5856], - [0, -4792, -9409, -12836], - [1, 3, 7901], - [0, 0, 7902, 7903, 5], - [ - 0, -349, -409, -3044, -3040, -3052, -3714, -427, -12837, -428, -12838, -932, -969, -12839, -1449, -1548, -1565, - -1624, -12840, -12718, -1942, -2006, -2019, -2040, -2125, -2195, -2391, -2410, -2469 - ], - [0, -2006, -2074], - [1, 3, 7905], - [0, 0, 7906, 7907, 4], - [ - 0, -528, -757, -932, -1412, -1413, -1471, -1475, -1479, -1481, -3569, -1486, -1488, -1490, -1491, -1962, -2127, - -2141, -2410 - ], - [0, -12841, -10095, -12523, -2444, -3323, -4865, -3582, -6989], - [1, 3, 7909], - [0, 7910, 7911, 7912, 10], - [0, -12842, -7437, -12843], - [0, -6455, -2319, -2359, -2322, -887, -932, -1650, -2125, -2177, -12844, -1777, -1365, -1795, -8569, -2156, -5834], - [0, -2114, -4792, -3966, -3551], - [1, 3, 7914], - [0, 0, 14, 7915, 5], - [0, -4792, -2114, -1847, -3551, -8388, -6546, -6024], - [1, 3, 7917], - [0, 7918, 0, 7919, 10], - [0, -12845, -742, -1543, -1889, -2231], - [0, -2501, -5932, -775, -6811, -6043, -2114, -2435, -2162, -9358, -6656], - [1, 3, 7921], - [0, 7922, 7923, 7924, 5], - [0, -12846, -3780, -1077, -1276, -1442, -12847, -2446], - [ - 0, -21, -23, -5870, -26, -33, -36, -5584, -39, -40, -44, -86, -3531, -3470, -3471, -519, -523, -528, -539, -541, - -617, -664, -12848, -756, -12310, -834, -4088, -932, -12849, -12850, -958, -963, -964, -12851, -966, -968, -971, - -12852, -972, -973, -978, -1004, -12853, -1344, -1444, -1457, -1547, -1654, -1656, -12854, -1788, -2174, -12855, - -2293, -12856 - ], - [0, -3960, -489, -3262, -856, -12857, -3636, -12858, -3691, -3690, -1334], - [1, 3, 7926], - [0, 7927, 7928, 7929, 4], - [ - 0, -1983, -788, -12859, -1640, -1801, -1867, -2178, -12860, -2446, -1548, -2177, -2454, -11983, -1582, -1070, - -5397, -508, -8541, -12830, -12861, -6456, -12862 - ], - [ - 0, -1788, -1816, -664, -1107, -1654, -2210, -932, -1650, -2125, -1376, -1754, -1942, -756, -2451, -12863, -8549, - -1939, -1972, -856, -12864, -12865, -960, -940, -967 - ], - [0, -3817, -3161, -1004, -12866], - [1, 3, 7931], - [0, 7932, 83, 7, 4], - [0, -1983, -2536, -2548, -1351], - [1, 3, 7934], - [0, 7935, 251, 7936, 8], - [0, -9050, -2202], - [ - 0, -1000, -12867, -1958, -11998, -12868, -12869, -12870, -12871, -12872, -10018, -687, -5564, -5514, -6713, - -4110, -3974, -4000, -3975, -5550, -3958 - ], - [1, 3, 7938], - [0, 7939, 0, 7940, 8], - [0, -615], - [0, -7685, -12873, -12874, -12875], - [1, 3, 7942], - [0, 0, 7943, 7, 5], - [0, -8959, -1405, -2322], - [1, 3, 7945], - [0, 7946, 7947, 7948, 5], - [0, -932, -3414], - [0, -3037, -1003, -1654, -1788, -2379, -2410], - [0, -6137, -6138, -4215, -5396, -3551, -5119, -4004, -12876, -4676, -8959, -4792], - [1, 3, 7950], - [0, 0, 7951, 7952, 4], - [0, -3415, -708, -12877, -12878, -11961, -12879, -1552, -12880, -12881, -1993, -2250, -2319, -2384], - [ - 0, -7208, -7369, -3589, -702, -6351, -6545, -7371, -7372, -7373, -7374, -7375, -12882, -12883, -12877, -12884, - -5922, -6187, -12885, -12886, -12887, -12888, -12889, -12878, -12890 - ], - [1, 3, 7954], - [0, 7955, 7956, 7957, 4], - [0, -1107, -12891], - [0, -3037, -1650, -1942, -2319, -2386, -2402], - [0, -6695, -12892, -12893, -6694, -7421, -687, -7418, -7371], - [1, 3, 7959], - [0, 7960, 7961, 7962, 4], - [0, -1696, -3846, -6521], - [0, -1412, -12894, -12895, -12896], - [ - 0, -12897, -11189, -12898, -10394, -9711, -6527, -12899, -11321, -2126, -5566, -12900, -12901, -12902, -12903, - -712 - ], - [1, 3, 7964], - [0, 202, 7965, 7966, 4], - [ - 0, -6779, -11174, -6780, -6778, -6777, -6776, -190, -4106, -3115, -12904, -5053, -4066, -6429, -350, -4062, - -351, -3561, -3266, -3267, -4785, -12905, -3621, -3037, -8523, -3199, -9146, -12906, -461, -12907, -6426, -639, - -644, -679, -726, -753, -767, -12908, -923, -927, -932, -940, -967, -978, -980, -1054, -12909, -1077, -4706, - -1110, -1344, -4788, -1534, -4789, -1588, -1623, -1654, -1753, -12910, -1788, -4916, -1863, -1864, -2851, -1942, - -1944, -1948, -1951, -2111, -2127, -2134, -2177, -2200, -2202, -2231, -2234, -2314, -2334, -2387, -2410, -2411, - -2466, -2468, -2476, -2478, -5627, -12911, -2551 - ], - [0, -3209, -7882, -12912, -3184, -7176], - [1, 3, 7968], - [0, 7969, 7970, 7971, 4], - [0, -3341, -2145], - [ - 0, -23, -3840, -33, -38, -40, -639, -932, -940, -967, -1344, -1534, -1654, -1942, -2127, -2129, -2133, -2231, - -2234 - ], - [0, -12913, -525, -4795, -3184], - [1, 3, 7973], - [0, 7974, 7975, 7, 11], - [0, -639, -2145], - [0, -932, -1654, -2127], - [1, 3, 7977], - [0, 7978, 7979, 7980, 5], - [0, -12914, -2145], - [0, -6429, -932, -1001, -1654, -1788, -2125, -2127, -12915, -12916], - [0, -2127, -12913, -3214, -3184, -3209, -3485, -12917, -7416], - [1, 3, 7982], - [0, 7983, 7984, 7, 4], - [0, -989, -4788, -1588, -2114, -2145], - [ - 0, -23, -40, -43, -461, -932, -958, -1344, -1534, -4789, -1654, -1942, -4790, -2127, -2128, -2133, -2137, -2200, - -2231, -2234, -2410 - ], - [1, 3, 7986], - [0, 7987, 7988, 7989, 4], - [0, -1588], - [0, -22, -8355, -12918, -426, -3037, -3040, -652, -2127, -2410], - [0, -12913, -2410, -4160, -12919], - [1, 3, 7991], - [0, 7992, 7993, 7, 11], - [0, -2145], - [0, -932, -958, -1344, -1534, -1654, -1942, -2127, -2129, -2137, -2234], - [1, 3, 7995], - [0, 7996, 7997, 7998, 5], - [0, -12920, -4787, -1548, -1588, -1666, -12921, -12922, -12923], - [ - 0, -23, -40, -43, -3326, -350, -351, -3989, -427, -428, -479, -535, -932, -934, -958, -1022, -1077, -11780, - -1168, -12924, -1222, -1412, -1413, -1942, -2125, -2127, -12925, -12926, -2359, -2410 - ], - [0, -2127, -12913], - [1, 3, 8000], - [0, 8001, 8002, 252, 6], - [0, -12927, -12928, -771, -12929], - [0, -9889, -812, -1654, -2127, -2128, -2136, -2184], - [1, 3, 8004], - [0, 8005, 8006, 252, 6], - [0, -461, -12928, -989, -1588, -12929, -2145], - [0, -527, -558, -633, -1415, -1650, -1654, -2125, -2127, -2128, -2137], - [1, 3, 8008], - [0, 8009, 8010, 253, 5], - [0, -3200, -644, -4793, -2114, -2145], - [0, -23, -40, -43, -922, -932, -1654, -2127, -2128, -2131, -2133, -4794, -2410], - [1, 3, 8012], - [0, 8013, 8014, 253, 9], - [0, -1588, -2145], - [0, -932, -958, -1344, -1534, -4789, -1654, -1942, -2127, -2129, -2200, -2231, -2410], - [1, 3, 8016], - [0, 8017, 8018, 8019, 10], - [0, -4785, -7149], - [0, -3267, -3037, -427, -428, -932, -940, -967, -1415, -1942, -2125, -2127, -2375, -2410], - [0, -2127, -12913, -6915, -2231, -12930], - [1, 3, 8021], - [0, 8022, 8023, 8024, 6], - [0, -22, -1429, -2182, -2334], - [0, -23, -1415, -1942, -2127], - [0, -2127, -12913, -2334, -1644], - [1, 3, 8026], - [0, 8027, 8028, 8029, 5], - [0, -2114, -2145], - [0, -639, -932, -1654, -2125, -2127, -2129, -2131, -2387, -2410], - [0, -12913, -2410, -4795], - [1, 3, 8031], - [0, 8032, 8033, 8034, 4], - [0, -4785, -1046, -1077, -2177, -2387], - [ - 0, -5121, -350, -351, -12931, -3048, -12932, -3136, -3044, -3037, -4067, -3199, -427, -428, -714, -932, -12933, - -1415, -1548, -1793, -2125, -2127, -12934, -2142, -2375, -2410 - ], - [0, -2142, -2141, -12913, -2410, -4795, -2127, -1764], - [1, 3, 8036], - [0, 8037, 8038, 8039, 6], - [0, -22, -1429, -2182, -2416], - [0, -23, -40, -533, -1415, -1942, -2127], - [0, -2127, -12913, -9216, -1644], - [1, 3, 8041], - [0, 8042, 8043, 8044, 4], - [0, -1805, -1864, -2231, -2550], - [ - 0, -350, -351, -3266, -3267, -3269, -12935, -12936, -12937, -12938, -12939, -12940, -3037, -8523, -3041, -651, - -798, -6258, -7259, -7268, -799, -801, -825, -1771, -8065, -1889, -7033, -1940, -1942, -2923, -2127, -4753, - -2162, -2387, -2410, -2466, -2469 - ], - [0, -12913, -12941, -5150, -12942, -12943, -12944], - [1, 3, 8046], - [0, 8047, 8048, 8049, 5], - [0, -989], - [ - 0, -426, -3136, -4036, -3037, -1344, -1415, -1534, -1639, -1942, -2127, -2131, -2137, -2141, -2200, -2375, - -2388, -2410, -8256 - ], - [0, -2127, -5260], - [1, 3, 8051], - [0, 0, 8052, 7, 5], - [0, -633], - [1, 3, 8054], - [0, 8055, 8056, 254, 10], - [0, -2694, -4007, -649, -658, -1119, -1889, -2234, -2279, -10098, -909, -2193], - [ - 0, -12945, -22, -23, -32, -3194, -26, -35, -6062, -36, -12946, -37, -3368, -3077, -3204, -38, -40, -41, -42, - -44, -46, -47, -12947, -12948, -12949, -12950, -3872, -4020, -237, -269, -12951, -12952, -12953, -12954, -12955, - -5038, -3983, -367, -5052, -12956, -12957, -12958, -8355, -4776, -12959, -10100, -10101, -3269, -12960, -3732, - -12961, -5085, -5033, -7080, -3198, -12962, -12963, -3036, -4035, -3850, -3044, -12964, -5587, -12965, -8523, - -12966, -3040, -3052, -6633, -3199, -12967, -6832, -5673, -12968, -12969, -4204, -8559, -5900, -461, -12970, - -2624, -502, -507, -512, -12971, -8561, -553, -6386, -635, -640, -651, -12972, -2740, -719, -12973, -724, -6842, - -6394, -736, -737, -743, -769, -771, -2745, -7189, -7026, -812, -5034, -6381, -12974, -997, -1047, -1072, -1107, - -1273, -1336, -1337, -6388, -1343, -2773, -12975, -1354, -10697, -1401, -1429, -1460, -1465, -8562, -12976, - -1582, -1643, -1683, -1699, -12977, -9548, -1734, -1816, -6378, -3447, -1827, -1848, -1851, -1864, -6184, -1903, - -7164, -1915, -7165, -2791, -1927, -1929, -1930, -1934, -1958, -1977, -6387, -1999, -2041, -2082, -2163, -2177, - -2178, -12978, -8578, -2194, -2231, -2233, -11463, -6390, -6375, -4195, -12979, -6383, -2269, -3921, -2323, - -12980, -2334, -2335, -2343, -6391, -6384, -2594, -12981, -2444, -6380, -12982, -10052, -2501, -2531, -2564 - ], - [1, 3, 8058], - [0, 0, 8059, 8060, 9], - [ - 0, -6068, -548, -6070, -6071, -8122, -6072, -6081, -6082, -6083, -550, -558, -8121, -7993, -7938, -628, -629, - -8116, -7945, -8119, -8118, -902, -8003, -8004, -12983, -8117, -1654, -1963 - ], - [0, -8123, -5923], - [1, 3, 8062], - [0, 8063, 8064, 8065, 5], - [0, -10415, -1863, -1889, -2271], - [0, -652, -1654, -2250], - [0, -12984, -775, -12985, -2149, -3161, -5553, -10733, -10732, -5845, -6408], - [1, 3, 8067], - [0, 8068, 8069, 8070, 8], - [0, -668, -1022, -1876], - [0, -1168, -1654, -2198], - [0, -7419, -11441, -5562, -1168, -1817], - [1, 3, 8072], - [0, 0, 8073, 8074, 5], - [0, -468, -2322], - [0, -9291, -510, -5924, -5865, -6235, -11727, -5839, -12986], - [1, 3, 8076], - [0, 0, 0, 8077, 4], - [0, -12987, -12988, -12989, -8408, -12990, -12991], - [1, 3, 8079], - [0, 33, 8080, 8081, 9], - [ - 0, -12992, -3, -367, -4007, -3035, -3044, -3621, -3037, -3714, -4372, -3625, -12993, -427, -428, -556, -664, - -12994, -712, -714, -767, -796, -7653, -930, -932, -10031, -1069, -1077, -1107, -6783, -1344, -5726, -1534, - -1548, -1646, -1654, -1753, -1771, -4099, -6184, -1942, -1961, -2127, -12995, -12996, -2137, -2195, -2200, - -2210, -2211, -2234, -2314, -2379, -2388, -2389, -12997, -12998, -12999, -2410, -2449, -13000, -2501 - ], - [0, -12990, -12991, -13001, -13002, -13003, -13004, -6980, -13005, -6948, -6950], - [1, 3, 8083], - [0, 0, 31, 8084, 9], - [0, -640, -13006, -13007, -9594, -2155, -7107, -13008], - [1, 3, 8086], - [0, 8087, 8088, 8089, 4], - [0, -1365, -2177, -2550], - [0, -5834, -515, -516, -887, -932, -13009, -1788, -2322], - [0, -8403, -10483, -1764, -13010, -6818, -9594, -13011], - [1, 3, 8091], - [0, 8092, 8093, 8094, 4], - [ - 0, -13012, -13013, -510, -13014, -668, -719, -13015, -724, -729, -743, -744, -746, -13016, -888, -1004, -1010, - -13017, -1107, -13018, -13019, -12902, -13020, -13021, -13022, -13023, -13024, -1646, -13025, -1840, -1851, - -1878, -1965, -13026, -13027, -13028, -2177, -2185, -2187, -13029, -13030, -2418, -2453, -13031 - ], - [ - 0, -589, -733, -932, -1003, -1077, -13032, -1654, -1783, -1888, -13033, -13034, -13035, -13036, -13037, -13038, - -2198, -2229, -2293, -2359 - ], - [0, -13039, -13040, -1004, -13041, -13042, -3817, -3816, -1818, -2228], - [1, 3, 8096], - [0, 8097, 8098, 8099, 5], - [0, -13043], - [0, -2322, -468, -13044, -633, -725], - [0, -6656, -6557, -13045, -7723, -5874, -5559], - [1, 3, 8101], - [0, 8102, 8103, 8104, 8], - [0, -823, -930, -1333, -1396, -13046, -1889], - [0, -932, -1654, -2210, -13047], - [0, -3264, -3215, -7722, -7723], - [1, 3, 8106], - [0, 8107, 0, 8108, 5], - [0, -679, -1361, -2232], - [0, -5553, -3754, -2162, -3277, -775], - [1, 3, 8110], - [0, 8111, 8112, 8113, 5], - [0, -9548], - [ - 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -621, -767, -774, -778, -824, -825, -909, -932, -940, -6929, - -958, -959, -960, -965, -967, -978, -1041, -2629, -1110, -1344, -1415, -1534, -13048, -1623, -1743, -13049, - -1771, -1942, -2162, -3572, -2177, -2251, -2275, -2410, -2411, -2501, -2503, -2505 - ], - [0, -2162, -9264, -2501, -5932], - [0, 44, 15, 16, 9], - [1, 3, 8116], - [0, 0, 8117, 7, 8], - [0, -1942, -2319], - [1, 3, 8119], - [0, 8120, 8121, 8122, 9], - [0, -13050], - [0, -13051, -652, -13052, -932, -1446], - [0, -4058, -856], - [1, 3, 8124], - [0, 8125, 8126, 48, 4], - [0, -469, -470, -5329, -4049], - [ - 0, -824, -1415, -1344, -932, -825, -1110, -2501, -1942, -21, -190, -533, -2410, -23, -3037, -1534, -1771, -86, - -965, -3560, -2251, -40, -959, -960, -958, -6929, -978, -940, -967, -3748, -3307 - ], - [1, 3, 8128], - [0, 8129, 8130, 8131, 5], - [0, -2006, -2019, -2634], - [0, -2410, -3037, -3040, -3052, -518, -1889, -2318, -932, -10813], - [ - 0, -13053, -13054, -1072, -5375, -770, -13055, -5375, -3634, -8576, -13056, -3551, -13057, -13058, -5376, - -13059, -11152, -5150 - ], - [1, 3, 8133], - [0, 8134, 0, 8135, 5], - [0, -899, -1723, -6127], - [0, -13060, -13061, -13062, -2171], - [1, 3, 8137], - [0, 0, 0, 8138, 4], - [0, -13063, -6555, -770], - [1, 3, 8140], - [0, 8141, 8142, 8143, 8], - [0, -13064, -1468, -2359, -2531], - [ - 0, -190, -5980, -932, -940, -964, -965, -7353, -967, -1004, -1110, -1281, -1446, -1654, -1656, -1685, -1942, - -2186, -2210, -2297 - ], - [0, -4864, -11467, -3634, -11468, -12350], - [1, 3, 8145], - [0, 8146, 8147, 8148, 5], - [ - 0, -7040, -13065, -3472, -7041, -7042, -13066, -755, -812, -13067, -999, -1040, -13068, -1100, -13069, -9464, - -1315, -13070, -1549, -1610, -6294, -1639, -13071, -10507, -3609, -2115, -2177, -3642, -2550 - ], - [ - 0, -3037, -3639, -519, -652, -686, -796, -851, -13072, -1077, -1116, -1442, -1547, -8314, -13073, -1722, -1772, - -13074, -1942, -2910, -2210, -13075, -2331, -2341 - ], - [0, -13076, -4864, -5887, -3551, -5897, -8403, -9244, -2177, -9318], - [1, 3, 8150], - [0, 8151, 8152, 7, 4], - [0, -44, -13077, -13078, -2997, -13079, -703, -13080, -1548, -1549, -1967, -2029, -2804, -2192], - [ - 0, -13081, -21, -23, -26, -34, -35, -37, -38, -40, -41, -43, -13082, -4227, -13083, -13084, -4773, -3040, -427, - -428, -3807, -13085, -528, -534, -13086, -539, -540, -13087, -553, -12468, -13088, -664, -13089, -747, -767, - -795, -812, -838, -855, -8245, -915, -932, -933, -940, -3071, -958, -962, -964, -969, -970, -1021, -1103, -1168, - -1228, -1266, -1344, -6273, -1471, -1475, -12832, -1476, -1482, -1483, -1492, -1526, -1534, -1654, -1942, -1955, - -1978, -2000, -2006, -13090, -13091, -2018, -2019, -2024, -2027, -2043, -2044, -13092, -13093, -13094, -2052, - -13095, -2125, -13096, -13097, -7708, -2210, -2211, -2214, -2253, -13098, -2335, -13099, -2347, -2410, -2460, - -2501, -2502, -2503, -2504 - ], - [1, 3, 8154], - [0, 8155, 8156, 8157, 4], - [0, -932, -942, -943, -13100, -958, -965, -968, -969, -13101], - [0, -3781, -1631, -1650, -2125, -2151, -2322], - [ - 0, -8180, -13102, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8175, -1445, -1452, -7148, - -8184, -8169, -13103, -5493, -2250, -8185, -5553, -8186, -8187, -8174 - ], - [1, 3, 8159], - [0, 0, 8160, 7, 5], - [0, -4298, -4300, -589, -2319], - [1, 3, 8162], - [0, 8163, 191, 8164, 4], - [0, -812, -907, -929, -990, -1072, -1335, -1641, -1681, -1800, -1997, -2255], - [0, -5142, -6656, -3844], - [1, 3, 8166], - [0, 8167, 8168, 8169, 5], - [ - 0, -13104, -3895, -13105, -13106, -13107, -13108, -13109, -13110, -1555, -1572, -1646, -9375, -13111, -13112, - -13113, -1983, -13114, -13115, -13116 - ], - [ - 0, -3890, -3893, -13117, -3037, -510, -13118, -756, -13119, -1276, -13120, -8936, -1942, -13121, -13122, -13123, - -13124, -13125, -2410 - ], - [ - 0, -11151, -5196, -11148, -13126, -6209, -13127, -11150, -6210, -13128, -3161, -13129, -13130, -13131, -3481, - -10809 - ], - [1, 3, 8171], - [0, 0, 8172, 8173, 11], - [0, -13132, -510, -589, -932, -1660, -2319], - [0, -2180, -10432, -13133, -11385], - [1, 3, 8175], - [0, 8176, 8177, 8178, 5], - [ - 0, -13134, -2446, -812, -13135, -1548, -1666, -2177, -2451, -1369, -3198, -13136, -13137, -1667, -6109, -13138, - -10416 - ], - [ - 0, -1857, -1788, -664, -461, -826, -2763, -1344, -1654, -1826, -2210, -932, -13139, -1692, -2125, -674, -928, - -13140, -13141, -2245, -10417, -10418, -13142, -749, -767, -1026, -13143, -1828, -13144, -12846, -1078, -2211, - -2410, -3035, -3037, -1002, -1534, -3621, -4372, -11747, -305, -3044, -13145, -13146, -13147, -86, -665, -13148, - -1609, -2174, -7382, -2234, -960, -964, -13149, -428, -13150, -9404, -427, -13151, -13152 - ], - [ - 0, -1691, -13140, -3742, -6321, -10425, -1857, -1682, -13153, -13139, -10424, -10418, -10704, -13154, -1818, - -3967, -13155, -7685, -7773 - ], - [1, 3, 8180], - [0, 0, 8181, 8182, 4], - [0, -589], - [0, -6233, -12343, -3214, -3756, -4055], - [1, 3, 8184], - [0, 8185, 37, 8186, 6], - [0, -812, -13156, -13157, -13158, -13159, -13160, -13161, -13162, -13163, -13164, -13165, -13166, -13167, -13168], - [ - 0, -13169, -13170, -13171, -13172, -13173, -11573, -1434, -13174, -13175, -13176, -10225, -13177, -13178, - -10227, -2183, -13179, -13180, -5827, -3975, -13181 - ], - [1, 3, 8188], - [0, 8189, 8190, 8191, 4], - [0, -469, -502, -623, -668, -700, -724, -13182, -13183, -5977, -6793, -13184], - [0, -1116, -2392, -2391, -1344, -932, -2469, -1942, -2410, -1534, -50, -3732, -13185, -3664, -13186], - [0, -2455, -2184, -11151, -1339], - [1, 3, 8193], - [0, 8194, 8195, 8196, 6], - [0, -990, -1072, -1681, -1840, -2155], - [0, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -2293, -13187], - [0, -1004, -13188, -5401], - [1, 3, 8198], - [0, 8199, 8200, 7, 11], - [0, -459, -7334, -812, -929, -1335, -1641, -1840], - [0, -465, -932, -963, -1654, -1788, -2293], - [1, 3, 8202], - [0, 8203, 81, 7, 5], - [0, -907, -929, -1840, -2178], - [1, 3, 8205], - [0, 8206, 8207, 8208, 4], - [0, -13189, -1640, -1645], - [ - 0, -86, -3307, -13190, -13191, -521, -664, -665, -720, -932, -940, -1077, -1344, -1534, -1573, -5969, -1654, - -1729, -1788, -1942, -1972, -13192, -2210, -2211, -2323 - ], - [0, -13192, -13193, -5819, -5817, -13194, -5937, -13195, -5940, -3258, -3100, -13196], - [1, 3, 8210], - [0, 8211, 8212, 8213, 5], - [ - 0, -13197, -13198, -13199, -13200, -3698, -13201, -13202, -13203, -11209, -13204, -5810, -13205, -13206, -13207, - -11197, -620, -4735, -13208, -5813, -13209, -1805, -7223, -2531 - ], - [ - 0, -13210, -4171, -13211, -3136, -3037, -3738, -4204, -427, -428, -13206, -5813, -928, -13212, -932, -940, - -8246, -948, -958, -967, -1344, -1415, -13213, -13214, -13215, -13216, -1456, -1766, -1942, -5815, -2251, -2375, - -2379, -2892, -2410, -2446 - ], - [0, -3112, -5817, -3634, -1415, -13192, -4216, -2469, -5819, -5941, -5943, -5951, -13217], - [1, 3, 8215], - [0, 8216, 0, 7, 4], - [0, -10906, -6130], - [1, 3, 8218], - [0, 0, 8219, 8220, 11], - [0, -528, -558, -566, -664, -932, -1059, -13218, -1344, -1534, -1654, -1942], - [0, -2192, -8495, -6439, -10661, -7378, -13219], - [1, 3, 8222], - [0, 8223, 8224, 8225, 4], - [0, -2177, -13220, -8612], - [ - 0, -8771, -2384, -13221, -2324, -1733, -13222, -1018, -13223, -2581, -1723, -13224, -1448, -13225, -13226, - -13227, -13228, -13229 - ], - [ - 0, -9235, -7715, -5315, -5316, -9807, -8642, -3839, -8707, -13230, -6527, -10095, -13231, -7066, -10711, -13232, - -13233 - ], - [1, 3, 8227], - [0, 0, 8228, 8229, 5], - [0, -5834, -516, -5835, -932, -993, -1365, -1408, -1777, -1788, -2156, -2322], - [0, -3957, -1838, -13234, -5550], - [1, 3, 8231], - [0, 8232, 8233, 8234, 4], - [0, -999, -1026], - [0, -519, -668, -710, -932, -934, -958, -1442, -1788, -13235, -13236, -2200, -13237], - [0, -2195, -6836, -11642, -5550, -13238, -9218, -1410, -12397], - [1, 3, 8236], - [0, 8237, 8238, 8239, 8], - [0, -1699], - [ - 0, -664, -1127, -1654, -913, -1132, -10682, -2351, -1158, -13239, -9256, -1130, -1156, -1542, -1136, -1144, - -1148, -5295 - ], - [0, -13240, -13241, -7231, -2446, -13242, -13243, -3005, -2197, -13244], - [1, 3, 8241], - [0, 8242, 8243, 8244, 4], - [0, -13245, -13246, -13247, -13248, -13249], - [0, -615, -932, -13250, -1654, -1942, -2127, -2137, -2388, -2410], - [0, -4004, -3440, -507, -2198], - [1, 3, 8246], - [0, 75, 8247, 8248, 4], - [ - 0, -1127, -1134, -1136, -1144, -1148, -1150, -1151, -13251, -1152, -1163, -1449, -1542, -1856, -13252, -2177, - -13253, -2234 - ], - [0, -1599, -6473], - [1, 3, 8250], - [0, 8251, 8252, 8253, 8], - [0, -1646, -2195], - [0, -526, -558, -566, -932, -934, -8246, -958, -1442, -1654, -1788, -2125, -13235, -13254, -13236, -2198], - [0, -2195, -5550, -11642, -6836, -6837, -8421, -687, -3977], - [1, 3, 8255], - [0, 0, 8256, 8257, 9], - [0, -7080, -3037, -9867, -5866, -652, -1942, -2319, -2379, -2402, -2410], - [0, -5395, -1000], - [1, 3, 8259], - [0, 8260, 8261, 8262, 5], - [0, -474], - [0, -1273, -1948, -2127, -2129, -2416], - [0, -5176, -13255, -10724, -659], - [1, 3, 8264], - [0, 8265, 8266, 8267, 8], - [0, -13256, -13257, -812], - [0, -13258, -13259, -3198, -3136, -3037, -928, -11714, -1415, -2379, -2410], - [0, -5889, -13260, -12263], - [1, 3, 8269], - [0, 0, 8270, 8271, 5], - [ - 0, -2384, -1415, -1344, -1868, -932, -2125, -2127, -1942, -767, -533, -23, -3136, -726, -13261, -1952, -44, -50, - -40, -953, -13262, -32, -3326, -2140, -3561, -13263, -350, -351, -8280, -13264, -536, -37 - ], - [0, -5070, -6814, -11889, -9668, -3161, -2006, -475, -2476, -3122, -6209, -3100], - [1, 3, 8273], - [0, 8274, 8275, 8276, 4], - [0, -4884, -357, -13265, -834, -2297], - [ - 0, -23, -4885, -4886, -4887, -4888, -13266, -11471, -13267, -539, -812, -829, -928, -13268, -10877, -1099, - -1534, -1654, -1788, -1942, -1978, -2125, -2177, -2195 - ], - [0, -2210, -4004, -3634, -5119, -8611, -4216, -8959, -4123, -13269, -4215, -2533, -507], - [1, 3, 8278], - [0, 0, 8279, 8280, 9], - [0, -190, -652, -664, -932, -1654, -1942, -2210], - [0, -664, -6537, -4865, -13270, -13271, -2210, -3634, -7244, -7245, -7243], - [1, 3, 8282], - [0, 8283, 8284, 8285, 5], - [ - 0, -4166, -3544, -510, -648, -13272, -13273, -1650, -2177, -6920, -1004, -1442, -2105, -927, -719, -1645, -1464, - -1276, -617, -724, -1335, -1304, -13274, -13275, -2062, -13276 - ], - [0, -1654, -615, -633, -13277], - [0, -6011, -5897, -7737, -11722, -3209, -1971, -3844], - [1, 3, 8287], - [0, 8288, 0, 7, 6], - [0, -13278, -5036, -13279], - [1, 3, 8290], - [0, 8291, 0, 8292, 11], - [0, -13280, -1532, -13281, -1863, -2654], - [0, -2214, -687, -985, -6187, -13282, -13283], - [1, 3, 8294], - [0, 89, 56, 8295, 5], - [0, -13284, -13285, -13286, -3445, -3100, -7566], - [1, 3, 8297], - [0, 8298, 8299, 8300, 10], - [0, -13287, -13288], - [0, -2501, -2376, -2410, -2503, -13289, -2502], - [0, -3445, -13290, -3690, -13192, -7685], - [1, 3, 8302], - [0, 0, 14, 8303, 5], - [0, -1847, -13291, -2218, -11635, -7084, -5845], - [1, 3, 8305], - [0, 8306, 8307, 8308, 4], - [0, -482, -13292], - [0, -519, -668, -13293, -2269, -2541], - [ - 0, -4783, -2265, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -3975, -5559, -5538, -5549, -5513, -5550, - -2547, -1573, -5545, -3958, -5554 - ], - [1, 3, 8310], - [0, 8311, 86, 8312, 4], - [0, -9371, -677, -5500, -13294, -13295, -10347, -13296, -1705, -1856, -13297, -1951, -1959, -13298, -2330, -2550], - [0, -13299, -3015, -9460, -1764, -1380], - [1, 3, 8314], - [0, 0, 8315, 8316, 5], - [0, -11254, -3470, -3471, -3311, -652, -1654, -2174, -2250], - [0, -2223, -2222, -2265, -2443, -9312, -4112, -2435], - [1, 3, 8318], - [0, 0, 8319, 8320, 4], - [0, -756, -13300, -1654, -1788], - [0, -2223, -2222, -2435, -13301], - [0, 44, 15, 16, 11], - [1, 3, 8323], - [0, 8324, 0, 8325, 4], - [0, -668, -1370, -1646, -2062, -13302, -2269, -2343], - [0, -3240, -13303, -13304, -2250, -13305, -10317, -13306, -13307, -13308, -13309], - [1, 3, 8327], - [0, 8328, 8329, 8330, 5], - [0, -523, -13310, -812, -1063, -1070, -1100, -1548, -2165, -2270, -6587, -13311], - [ - 0, -190, -3198, -3734, -3044, -3037, -13312, -6594, -617, -714, -834, -855, -883, -932, -1004, -1045, -1107, - -1654, -1788, -1942, -2062, -2177, -2187, -2198, -2210, -2234, -10402, -2402, -2410, -2411 - ], - [0, -2227], - [1, 3, 8332], - [0, 8333, 0, 8334, 4], - [0, -459, -13313, -754, -812, -5454, -13314, -4208], - [0, -8841, -3161, -2512, -9043, -997, -9005, -13315], - [1, 3, 8336], - [0, 8337, 0, 8338, 4], - [0, -13316, -812, -5455, -4208], - [0, -8841, -3161, -2512, -9043, -997, -3323], - [1, 3, 8340], - [0, 8341, 8342, 8343, 4], - [0, -812, -13317, -10622, -1370, -2438], - [ - 0, -633, -913, -932, -1003, -1168, -1208, -1243, -1244, -1252, -1262, -1471, -1472, -1473, -1475, -1482, -1654, - -1972, -1976, -2187, -13318, -2461, -2463 - ], - [0, -6224, -2512], - [1, 3, 8345], - [0, 0, 8346, 7, 8], - [0, -652, -855, -932, -1942, -940], - [1, 3, 8348], - [0, 0, 8349, 7, 6], - [0, -13239, -855, -2501], - [1, 3, 8351], - [0, 8352, 8353, 48, 6], - [0, -1351, -2232], - [ - 0, -21, -23, -40, -86, -3307, -7166, -533, -767, -774, -824, -825, -932, -940, -958, -1344, -1415, -1534, -1623, - -1771, -1942, -2251, -2501 - ], - [1, 3, 8355], - [0, 8356, 8357, 7, 4], - [0, -6829, -2231], - [0, -633, -711, -1339, -1654, -2501], - [1, 3, 8359], - [0, 0, 92, 8360, 5], - [0, -5092, -3264, -7451, -13319, -7205, -1838, -6231], - [1, 3, 8362], - [0, 8363, 8364, 8365, 8], - [ - 0, -13320, -13321, -13322, -9193, -13323, -674, -711, -719, -1026, -1119, -1122, -13324, -1127, -1134, -1136, - -1137, -1138, -1140, -1148, -1149, -1160, -1276, -1304, -1333, -1440, -1442, -13325, -1460, -1548, -1610, - -13326, -1889, -2162, -2312, -2359 - ], - [ - 0, -21, -23, -40, -43, -4710, -13327, -664, -665, -3629, -932, -964, -966, -974, -1654, -1753, -1942, -2123, - -2125, -2210, -2211 - ], - [0, -1122, -3671, -856, -13328, -13329, -3690, -4258, -3262], - [1, 3, 8367], - [0, 8368, 8369, 7, 8], - [0, -2346], - [0, -994, -8392, -8393, -8394, -13330], - [1, 3, 8371], - [0, 0, 8372, 7, 5], - [0, -13331, -13332, -11961, -1788, -1939, -2250, -2322], - [0, 0, 83, 7, 5], - [1, 3, 8375], - [0, 0, 8376, 7, 4], - [0, -1168, -1654, -932, -589, -1231, -1197, -1208, -1243, -1262, -13333, -1252], - [1, 3, 8378], - [0, 8379, 8380, 8381, 5], - [ - 0, -615, -712, -714, -783, -1077, -1276, -13334, -3999, -1548, -1757, -7667, -13335, -9395, -2347, -2460, -2462, - -13336, -13337 - ], - [0, -664, -756, -1405, -1654, -1657, -13338, -13339], - [0, -13340, -9278, -13341, -775, -3754, -1521, -2162, -2244, -13342, -7419], - [1, 3, 8383], - [0, 8384, 8385, 8386, 4], - [0, -596, -1723, -6521, -2323], - [0, -932, -1654, -12894], - [0, -10424, -3742, -2245, -7685], - [1, 3, 8388], - [0, 8389, 8390, 8391, 5], - [0, -13343, -13344], - [0, -932, -6461], - [0, -8905, -2246, -9456, -7721, -5550, -8421, -8908, -3323], - [1, 3, 8393], - [0, 8394, 8395, 8396, 10], - [0, -9084], - [0, -4298, -4300, -589], - [0, -5387, -3578, -7107, -13345, -10908, -10930, -13346, -13347, -13348, -13349, -13350, -3264], - [1, 3, 8398], - [0, 8399, 91, 8400, 9], - [0, -2548], - [ - 0, -2248, -4055, -2548, -9886, -10410, -7773, -6129, -13351, -13352, -3689, -7685, -856, -3445, -6857, -1671, - -1050, -1691, -2245, -6597, -13353, -10425, -4055, -6917, -13354 - ], - [1, 3, 8402], - [0, 0, 8403, 7, 11], - [0, -40, -533, -1415, -13355], - [1, 3, 8405], - [0, 8406, 8407, 8408, 6], - [0, -932, -943, -13100, -958, -965, -968, -969, -13101, -13356], - [0, -769, -1274, -1646, -13357, -2151, -5470, -2322], - [ - 0, -8180, -7440, -7144, -707, -8181, -8182, -8183, -8172, -7840, -932, -8175, -1445, -1452, -7148, -8184, -8169, - -5493, -2250, -8185, -5553, -8186, -8187, -8174 - ], - [1, 3, 8410], - [0, 8411, 8412, 8413, 5], - [0, -668, -739, -13358, -741, -10524, -831, -8888, -13359, -1040, -1047, -12340, -2177, -13360, -2550], - [0, -664, -932, -943, -958, -966, -968, -1654, -1658, -1663, -1788, -2195, -13361], - [0, -739, -13362, -5887, -5886, -5962, -9318, -475, -2250], - [1, 3, 8415], - [0, 8416, 8417, 8418, 4], - [0, -502, -615, -13363, -812, -999, -13364, -4703, -2648], - [ - 0, -3037, -13365, -664, -767, -829, -13366, -13367, -13368, -1116, -1457, -3809, -1646, -1654, -13369, -10652, - -2174, -13370, -2210, -2211, -8527, -2250 - ], - [0, -6657, -5921, -3844, -11818, -4004, -3590, -4116], - [1, 3, 8420], - [0, 8421, 8422, 8423, 5], - [0, -13371, -10926, -1093, -13372], - [0, -2330, -1754, -2424], - [0, -2254, -13373, -13374, -13375, -8841], - [1, 3, 8425], - [0, 0, 8426, 8427, 5], - [0, -790, -932, -943, -958, -963, -966, -968, -974, -1654, -1788, -1999, -9374], - [0, -1334, -9745, -707], - [1, 3, 8429], - [0, 8430, 8431, 8432, 4], - [0, -2531, -1805, -2066, -2177, -928, -6488, -13376, -4890, -13377, -12518, -407, -410], - [ - 0, -888, -2564, -664, -834, -1107, -1431, -2213, -999, -1526, -1623, -3548, -2006, -2218, -8609, -1111, -1699, - -1778, -13378, -928, -13379, -1085, -1442, -3447, -2114, -2358, -13380, -1885, -1942, -4893, -4204, -656, -719, - -2578, -1864, -13381, -2019, -3654, -2400, -12982, -2528, -4370, -3517, -13382, -1863, -2231, -2269, -2410, -23, - -9939, -3037, -769, -832, -13383, -47, -6192, -4894, -4918, -25, -13384, -3199, -13385, -831, -13386, -6467, - -13387, -6447, -3772, -3778, -3660, -3735, -13388, -6744, -13389, -3896, -13390, -12695, -2383, -46, -163, - -6630, -13391, -13392, -13393, -11751, -3194, -13394, -8523, -13395, -2044, -13396, -747, -13397, -7080, -13398, - -4239, -13399, -13400, -13401, -13402, -13403, -13404, -5474, -2271, -13405, -13406, -13407, -13408, -406, - -13409, -13410, -5322, -13411, -3776, -409, -13412, -13413, -4008, -8273, -2641, -13414, -3459, -13415, -13416, - -13417, -5296, -13418, -13419, -13420 - ], - [0, -2257, -3095, -3098, -13421, -13422, -2006, -2634, -9736, -2034, -3138, -2476, -475, -2299, -3176, -4902], - [1, 3, 8434], - [0, 8435, 8436, 8437, 8], - [0, -1338], - [ - 0, -13423, -4762, -4763, -4754, -13424, -13425, -13426, -13427, -4749, -4758, -13428, -407, -409, -3136, -4961, - -3040, -932, -13429, -1415, -4980, -1419, -1942, -1967, -1978, -2006, -2019, -2162, -2163, -2257, -2375, -2410, - -2516, -2548 - ], - [0, -4900, -2257, -13430, -3098, -856, -3100, -13431, -13432, -13433, -13434, -13435, -1783], - [1, 3, 8439], - [0, 8440, 0, 147, 5], - [ - 0, -3, -23, -40, -3538, -3539, -668, -674, -679, -714, -719, -755, -3542, -1022, -13436, -1077, -1107, -1276, - -1320, -1349, -13437, -1460, -1548, -1577, -3543, -3544, -1610, -1646, -3546, -3547, -11926, -9151, -2177, - -2368, -2378, -2446 - ], - [1, 3, 8442], - [0, 68, 15, 16, 11], - [1, 3, 8444], - [0, 212, 8445, 8446, 5], - [0, -13438, -13439, -1654, -2198], - [0, -13440, -5827], - [1, 3, 8448], - [0, 0, 8449, 8450, 4], - [0, -351, -3621, -3037, -789, -885, -1654, -7210, -1942, -2127, -2135, -2136, -2198, -2379, -2392, -2410], - [0, -5827, -6408, -788, -7208, -3445, -3100], - [1, 3, 8452], - [0, 8453, 56, 8454, 5], - [0, -7590, -305, -7565, -1061, -1406, -13441, -5721], - [0, -13442, -13443, -3445], - [1, 3, 8456], - [0, 0, 0, 8457, 9], - [0, -2264, -3276, -2265, -4123, -4121], - [1, 3, 8459], - [0, 0, 8460, 8461, 4], - [0, -1168, -1177, -1231, -1243, -13444, -1262, -11473, -2416], - [ - 0, -2265, -6816, -13445, -13446, -13447, -13448, -788, -3264, -3223, -1838, -3264, -9702, -6817, -11647, -6422, - -6420, -5559, -9692 - ], - [1, 3, 8463], - [0, 8464, 8465, 8466, 4], - [0, -3164, -13449, -1320, -1549, -13450, -13451, -13452], - [0, -13453, -13454, -12508], - [0, -707, -7347, -8388, -3264, -13455, -13456, -6694, -9357, -13457, -2265, -6817, -9702, -7651, -5554, -13458], - [1, 3, 8468], - [0, 8469, 14, 8470, 4], - [0, -13459, -2269], - [ - 0, -2265, -7472, -4112, -6730, -13460, -6787, -13461, -13462, -13463, -6786, -13464, -13465, -5514, -5559, - -5563, -687, -3958, -3974, -4000, -13466, -13467, -13468, -13469, -13470, -13471 - ], - [1, 3, 8472], - [0, 8473, 8474, 8475, 5], - [0, -2737, -2738], - [0, -3037, -652, -2736, -1942, -2094, -2100, -2399, -2410, -2541], - [0, -6231, -6422, -5559, -3264, -7472, -4846, -8034, -3223], - [1, 3, 8477], - [0, 8478, 238, 8479, 4], - [0, -481], - [ - 0, -6817, -11647, -6694, -5514, -3770, -712, -5535, -714, -3974, -4000, -2265, -3975, -5559, -5538, -5549, - -5513, -5550, -2547, -1573, -5545, -3958, -5554 - ], - [1, 3, 8481], - [0, 0, 14, 8482, 4], - [0, -6817, -9310, -6472, -7154, -9311, -4112, -2443, -9312, -6694, -6693, -11647, -5554, -2265], - [1, 3, 8484], - [0, 0, 8485, 8486, 4], - [0, -519, -1612, -2384, -2541], - [0, -4055, -6817, -3485, -6694, -6693, -11647, -6810, -1838, -727, -3870, -6849, -2444, -6845, -5558, -8292], - [1, 3, 8488], - [0, 0, 8489, 8490, 4], - [ - 0, -1788, -664, -1722, -1654, -932, -2379, -1942, -1729, -2410, -3035, -3037, -3621, -13472, -665, -958, -1656, - -940, -967, -4269, -428, -4628, -427 - ], - [0, -2272, -13473, -13474, -3690], - [1, 3, 8492], - [0, 8493, 8494, 8495, 5], - [ - 0, -510, -812, -13475, -13476, -1735, -13477, -1758, -1813, -2059, -13478, -13479, -13480, -13481, -13482, - -12003, -13483, -13484, -13485, -2518, -1464, -642, -13486, -797, -1298, -1370, -1521, -1548, -1579, -10695, - -11015, -13372, -1666, -2062, -9798, -2245, -13487, -10690, -13488, -13489, -13490, -11800, -2531 - ], - [0, -932, -1445, -2319], - [ - 0, -4344, -13491, -11755, -13492, -10705, -13493, -5804, -9733, -5805, -7641, -4161, -9844, -727, -3015, -8901, - -8904, -13494, -1066, -5889, -11021, -13495, -5545, -10706, -9800, -13496, -10412, -13497, -11230, -13498, - -1764, -13499, -13500, -13501, -6187, -13502, -1958, -6479, -11429, -11722, -13503, -4043, -5196, -13504, - -13505, -8027, -13478, -13506, -13507, -12003, -13485, -2273, -13508, -2295, -7307, -4123, -13509 - ], - [1, 3, 8497], - [0, 8498, 8499, 8500, 4], - [0, -13510, -13511, -13512, -13513, -668, -671, -5971, -719, -1395, -1460, -13514, -1942, -2355], - [ - 0, -6327, -2843, -50, -86, -3307, -13515, -13516, -3989, -13517, -3035, -3037, -5011, -3738, -428, -3311, - -13518, -3312, -461, -2834, -664, -932, -964, -969, -989, -1077, -13519, -1344, -13520, -1448, -13521, -1521, - -1534, -5273, -10918, -5670, -1654, -9002, -1771, -4916, -2162, -2177, -2193, -13522, -2286, -2410, -2429, - -2446, -2548 - ], - [0, -13523, -5553, -13524, -775, -3099, -7205, -2162, -3754, -5739, -13525, -2006, -3163, -4901], - [1, 3, 8502], - [0, 0, 8503, 48, 4], - [ - 0, -1415, -2162, -1344, -1449, -1623, -774, -932, -2177, -825, -2501, -920, -1942, -767, -21, -533, -778, -23, - -1041, -1534, -1771, -2163, -2503, -86, -2251, -40, -2505, -958, -940, -1419, -3307, -7166 - ], - [1, 3, 8505], - [0, 8506, 8507, 8508, 5], - [0, -2277], - [ - 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -3136, -427, -428, -932, -967, -4814, -1110, -1344, -1415, - -1534, -1942, -2127, -2375, -2379, -2410 - ], - [0, -2276, -775, -5553, -3214, -7208, -9680], - [1, 3, 8510], - [0, 8511, 8512, 8513, 6], - [0, -1374], - [ - 0, -86, -3307, -3615, -3244, -190, -350, -351, -3266, -3267, -3136, -3037, -427, -428, -932, -967, -4814, -1110, - -1344, -1415, -1534, -1771, -1942, -2910, -2127, -2375, -2379, -2387, -2410 - ], - [0, -2277, -9339, -5553, -3215, -775, -7208, -9680], - [1, 3, 8515], - [0, 8516, 8517, 8518, 11], - [0, -3776, -5577, -13526, -13527, -786, -1889, -2192, -3768, -2387], - [ - 0, -23, -3341, -3840, -26, -36, -3203, -40, -41, -42, -3267, -406, -407, -409, -410, -3043, -3136, -13528, - -3037, -3040, -3052, -13529, -3141, -3081, -13530, -533, -535, -8560, -6046, -3563, -1415, -1419, -3667, -1428, - -1440, -1942, -1967, -2006, -2019, -13531, -2034, -2052, -2127, -2131, -2133, -2137, -2138, -2139, -2140, - -13532, -13533, -2410 - ], - [0, -2006, -775, -3771, -2278, -4134], - [1, 3, 8520], - [0, 8521, 8522, 8523, 11], - [0, -2740], - [ - 0, -21, -23, -36, -3077, -3373, -3204, -38, -40, -41, -43, -44, -47, -3040, -519, -3766, -9723, -742, -932, - -940, -1344, -1543, -1942, -1952, -2006, -2019, -2174, -2231, -12979, -3768, -13534, -2410 - ], - [0, -3766, -2455, -13535, -3771, -775], - [1, 3, 8525], - [0, 8526, 22, 8527, 10], - [0, -635, -1931], - [0, -6413, -775, -13536, -13537, -7192, -1889, -3583, -2280], - [1, 3, 8529], - [0, 8530, 8531, 8532, 6], - [ - 0, -93, -7195, -94, -95, -12147, -98, -9352, -2840, -755, -777, -781, -812, -1026, -11676, -8142, -6197, -1111, - -13538, -1327, -1353, -3190, -8143, -1396, -1499, -13539, -1630, -1639, -1759, -1863, -1889, -1929, -1931, - -1934, -2267, -2591, -13540, -4002, -2530 - ], - [ - 0, -50, -13541, -5121, -13542, -13543, -13544, -5685, -3198, -13545, -13546, -13547, -13548, -4036, -6928, - -13549, -8335, -13550, -9284, -589, -722, -823, -932, -13551, -958, -959, -1344, -1415, -13552, -1428, -1534, - -4984, -1771, -4916, -1904, -1906, -12130, -13553, -1930, -1942, -2094, -2289, -2410 - ], - [0, -3771, -775, -1521, -7148, -8170, -1599, -2162, -3754, -2281, -2289], - [1, 3, 8534], - [0, 8535, 8536, 8537, 9], - [0, -3085], - [0, -13542, -13543, -932, -13551, -1344, -1534, -1771, -1942, -2094, -2281], - [0, -2281, -13554, -2250], - [1, 3, 8539], - [0, 0, 8540, 8541, 5], - [ - 0, -1788, -1415, -1344, -1868, -855, -932, -708, -2402, -1942, -13555, -767, -2281, -21, -533, -13556, -5128, - -2410, -23, -5870, -1534, -1637, -43, -86, -2174, -40, -13557, -959, -977, -958, -3471, -13552, -3842, -940, - -967, -2405, -42, -428, -3470, -3307, -935, -427, -3363, -5585, -26, -36 - ], - [0, -13558, -2281, -775, -3754, -1521, -7148, -13559, -3833, -5924, -13560, -712, -13561], - [1, 3, 8543], - [0, 8544, 8545, 8546, 4], - [0, -1889, -13562], - [ - 0, -932, -13563, -940, -1110, -1344, -1415, -12241, -13552, -1428, -1534, -1904, -12130, -13564, -1942, -13565, - -2281 - ], - [0, -13558, -2281, -775, -7148, -7154], - [1, 3, 8548], - [0, 8549, 8550, 8551, 4], - [0, -781, -1396, -1499, -1620, -13566, -13567, -1931, -1934], - [0, -722, -767, -932, -13568, -1344, -1415, -13552, -1534, -1763, -1889, -12130, -1930, -1942, -2281], - [0, -775, -9231, -7148, -8170, -3754, -2281, -13558], - [1, 3, 8553], - [0, 8554, 128, 8555, 6], - [0, -28, -812, -1107, -2165, -2231], - [0, -775, -3215, -5553, -9406, -1409, -6784], - [1, 3, 8557], - [0, 8558, 8559, 8560, 6], - [0, -1026, -1759], - [ - 0, -21, -23, -40, -86, -3307, -190, -3560, -3748, -589, -13569, -767, -774, -778, -824, -825, -932, -940, -6929, - -958, -959, -960, -965, -967, -978, -1110, -1344, -1415, -1534, -1623, -1717, -1771, -1942, -2000, -2251, -2275, - -2286, -2411, -2501 - ], - [0, -2501, -5932, -2286], - [1, 3, 8562], - [0, 0, 0, 8563, 11], - [0, -775, -1889, -12209, -4132, -6806, -3215], - [1, 3, 8565], - [0, 8566, 8567, 8568, 5], - [0, -723, -13570, -812, -13106, -1069, -1070, -1636, -1640, -1983], - [ - 0, -21, -23, -38, -40, -44, -86, -3307, -571, -7124, -11178, -617, -633, -744, -767, -932, -946, -952, -966, - -1004, -1010, -1053, -1098, -1344, -1534, -1610, -1654, -1685, -1788, -2094, -2099, -2125, -2198, -13571, - -13572, -2541, -2568 - ], - [ - 0, -9733, -5998, -5998, -3690, -510, -5867, -523, -5391, -3323, -13573, -1116, -1334, -1334, -1342, -9128, - -1961, -1961, -5923, -2105, -2105, -9176, -13503, -3691, -2122, -13574, -2291, -7430, -6408, -2533, -2540 - ], - [1, 3, 8570], - [0, 8571, 8572, 7, 6], - [0, -10528], - [0, -3198, -11232, -3037, -589, -10300, -1671, -8973, -2410, -2469], - [1, 3, 8574], - [0, 8575, 8576, 8577, 5], - [0, -1636, -2291, -746], - [0, -1788, -1722, -1654, -2210, -932, -2198, -1004, -1972, -617, -744, -86, -958, -934, -3307], - [0, -3440, -1334, -2105, -2291, -4873, -4004, -3634], - [1, 3, 8579], - [0, 8580, 8581, 8582, 4], - [0, -615, -1636], - [0, -664, -665, -2123, -2517, -617, -744, -1004, -1654, -2198], - [0, -2293, -2291, -2105, -4873, -3440, -1334, -4004, -3634, -1961, -13575], - [1, 3, 8584], - [0, 0, 8585, 8586, 5], - [0, -2541, -519, -2384, -3037], - [ - 0, -712, -5535, -714, -3974, -4000, -687, -5514, -3770, -3975, -5549, -5513, -5550, -2547, -3958, -6520, -13576, - -13577, -6659, -13578, -13579 - ], - [1, 3, 8588], - [0, 8589, 8590, 8591, 6], - [0, -3195, -3115, -5032, -426, -461, -5113, -8294, -703, -5034, -5035, -13580, -4788, -4789, -1588, -13581], - [0, -3180, -3983, -350, -351, -3266, -3989, -5114, -3037, -5040, -928, -2127, -2231, -2654, -2410, -2469], - [0, -2299, -11193, -3161, -3261, -7651], - [1, 3, 8593], - [0, 8594, 8595, 8596, 4], - [0, -3180, -679, -4787, -1863, -5037], - [ - 0, -350, -4062, -351, -3561, -3267, -13582, -644, -2127, -2130, -4063, -2299, -2410, -13583, -13584, -11164, - -11165, -13585, -13586 - ], - [0, -2299, -687], - [1, 3, 8598], - [0, 0, 8599, 8600, 4], - [ - 0, -23, -40, -86, -3307, -13587, -13588, -4776, -3037, -13589, -8336, -518, -5859, -711, -740, -932, -1521, - -1889, -13590, -1907, -1942, -1974, -2162, -2286, -2289, -2299, -2410, -2469 - ], - [0, -2299, -9263, -2410, -1521, -2286, -2162, -3754, -1974, -711], - [1, 3, 8602], - [0, 8603, 8604, 8605, 4], - [ - 0, -2746, -1107, -2303, -510, -10310, -2460, -2542, -2550, -1442, -2520, -1689, -13591, -1566, -8054, -4733, - -13592, -5981 - ], - [0, -2541, -1415, -1521, -2162, -1880, -2286, -1870, -959, -960, -13593, -13594], - [ - 0, -3167, -3843, -3839, -7715, -9278, -9279, -9471, -3262, -775, -2162, -1521, -2286, -3271, -9339, -3264, - -9472, -9473, -9474, -1689, -7419 - ], - [1, 3, 8607], - [0, 8608, 8609, 8610, 4], - [0, -719, -780, -781, -2888, -2746, -1863, -2165], - [ - 0, -190, -5121, -350, -351, -3266, -5685, -7169, -3136, -3037, -13312, -3715, -767, -932, -1110, -1415, -1870, - -1874, -1880, -1942, -2125, -2127, -2325, -2384, -2410 - ], - [0, -2303, -3839, -7175, -1644], - [1, 3, 8612], - [0, 8613, 8614, 8615, 4], - [0, -824, -1570, -13595, -2415], - [0, -519, -526, -528, -556, -11733, -562, -566, -615, -932, -13596, -1626, -1650, -2210, -2501], - [0, -2501, -3862, -13597, -13595, -5196, -8615], - [1, 3, 8617], - [0, 8618, 8619, 8620, 8], - [0, -461, -823, -1107, -1460], - [0, -932, -1942, -2322, -13598], - [0, -4847, -13599, -3696, -8442, -856, -2305, -5885, -5886, -3262, -3960, -8443, -8444, -8445, -3438], - [1, 3, 8622], - [0, 8623, 8624, 8625, 4], - [0, -1111, -1442, -719, -13600, -13601], - [0, -932, -2469, -1942, -3664, -13602], - [0, -4847, -3671, -13603, -856, -3690, -9339, -3485], - [1, 3, 8627], - [0, 0, 131, 8628, 4], - [0, -3812, -4847, -3160, -2308, -1004, -856, -3671, -13604, -5406, -2307, -4101, -13605, -13606], - [1, 3, 8630], - [0, 8631, 8632, 8633, 4], - [0, -3434], - [0, -927, -1004, -13607, -1654, -1788, -1978], - [0, -4847, -1004, -3160, -4055, -856], - [1, 3, 8635], - [0, 8636, 8637, 8638, 6], - [0, -2416, -1813], - [0, -1548, -1004, -13608, -1654, -1003, -13609, -1521, -13610, -600, -13611, -1859, -633, -6656, -1446], - [0, -3110, -7651, -3264, -13432, -13612, -6876, -1004, -6301], - [1, 3, 8640], - [0, 0, 0, 8641, 9], - [ - 0, -2311, -13613, -12449, -2363, -5270, -3162, -752, -1861, -3994, -3161, -13614, -12613, -13615, -3862, -2006, - -2476, -13616 - ], - [1, 3, 8643], - [0, 8644, 8645, 8646, 4], - [0, -13617, -13618, -13619], - [0, -617, -767, -1004, -13620, -1415, -1676, -2125, -2410], - [0, -2105, -1334, -1342, -3324, -633, -12397, -6367], - [1, 3, 8648], - [0, 0, 0, 8649, 9], - [ - 0, -13621, -13622, -1673, -11230, -1819, -9261, -12578, -7084, -13623, -13624, -13625, -13626, -13627, -13628, - -13629, -12218, -13630, -3708, -13631, -10412, -8801, -13632, -13633, -13634, -13635, -5150, -13636, -13637, - -13638, -13639, -13640, -13641, -13642, -13643, -13644, -7606, -13645, -13646, -6524, -13647, -13648, -13649, - -6712, -13650, -13651, -10245, -13652, -13653, -13654, -13655, -13656, -13657, -13658, -3445, -13173, -13659, - -13660 - ], - [1, 3, 8651], - [0, 0, 8652, 7, 4], - [ - 0, -1805, -1496, -1654, -1650, -2125, -2127, -2334, -615, -1729, -13661, -8559, -2516, -2234, -4062, -2140, - -3561, -13662, -351, -13663 - ], - [1, 3, 8654], - [0, 8655, 8656, 8657, 4], - [ - 0, -2531, -469, -754, -13664, -13665, -13666, -13667, -1548, -1676, -13668, -13669, -13670, -13671, -1004, - -13672, -13673, -13674, -13675, -13676, -512, -617, -724, -737, -13677, -496, -44, -13678 - ], - [0, -1708, -473, -13679, -13680, -2195, -13681, -722, -13682], - [0, -13683, -13684], - [1, 3, 8659], - [0, 0, 8660, 8661, 9], - [ - 0, -5369, -2387, -932, -1111, -2127, -2469, -1942, -2410, -23, -3037, -40, -2132, -2411, -3664, -3326, -958, - -5122, -6593, -13685, -3267, -351, -10022, -3344 - ], - [0, -2318, -2316, -775, -3205, -13686, -13687, -1631, -9342, -13688], - [1, 3, 8663], - [0, 0, 8664, 7, 4], - [0, -815, -3037, -3751, -1588, -2232, -13689, -3195], - [1, 3, 8666], - [0, 8667, 0, 8668, 10], - [ - 0, -13690, -13691, -13692, -13693, -13694, -13695, -13696, -13697, -13698, -13699, -13700, -13701, -13702, - -13703, -13704, -13705, -13706, -13707, -13708, -13709 - ], - [0, -507, -2319, -4004, -3634, -3161, -687, -13710, -13711], - [1, 3, 8670], - [0, 8671, 8672, 8673, 9], - [0, -668, -883, -1040, -1548, -1951, -10854, -13712, -2347], - [0, -13713], - [0, -2322, -2319, -1654, -4679, -6863], - [1, 3, 8675], - [0, 0, 8676, 7, 6], - [0, -1415, -932, -1110, -1942, -190, -533, -23, -965, -3560, -40, -959, -958, -6929, -978, -940, -967, -3748], - [1, 3, 8678], - [0, 8679, 8680, 8681, 9], - [ - 0, -13714, -13715, -13716, -655, -821, -6369, -13717, -1065, -1097, -1107, -13718, -1285, -1370, -7394, -1646, - -1659, -1794, -5849, -1795, -1797, -2114, -8057 - ], - [ - 0, -5834, -505, -516, -725, -767, -887, -13719, -5835, -921, -932, -6282, -1408, -1442, -13720, -1777, -1788, - -2156, -2177, -2319, -8573 - ], - [0, -2319, -4004, -13721, -507, -4865], - [1, 3, 8683], - [0, 8684, 8685, 7, 5], - [0, -13722, -13723, -9084, -11721, -13724], - [0, -2319, -1722, -2386, -13725, -2125, -2402, -1942, -11719, -3037, -908, -13726], - [1, 3, 8687], - [0, 8688, 8689, 8690, 5], - [0, -1976, -2325], - [0, -2125, -13727, -2250], - [0, -2323, -1076, -6656, -7738, -7421, -5827], - [1, 3, 8692], - [0, 8693, 8694, 7, 6], - [0, -13728, -13729, -13730], - [0, -13727, -2250, -725], - [1, 3, 8696], - [0, 33, 8697, 8698, 6], - [0, -6486, -6627, -3136, -3037, -427, -428, -756, -928, -932, -943, -958, -966, -968, -1415, -1942, -2375, -2410], - [0, -13731, -3555, -13732, -13733, -3100, -13734, -3445, -13735, -11074, -6235], - [1, 3, 8700], - [0, 0, 8701, 8702, 4], - [ - 0, -6486, -13736, -13737, -3617, -6627, -3136, -3037, -4203, -427, -428, -617, -720, -796, -13738, -932, -943, - -958, -966, -968, -1344, -1415, -1534, -1753, -7760, -1942, -2293, -2375, -2410 - ], - [0, -13731, -3555, -13732, -13733, -3445, -13735, -6367, -1004], - [1, 3, 8704], - [0, 8705, 0, 8706, 8], - [0, -812, -1723, -6127], - [0, -13739, -13740, -13741, -13742, -13743, -596, -13744, -3445], - [1, 3, 8708], - [0, 8709, 8710, 8711, 8], - [0, -812, -1723], - [ - 0, -190, -3561, -3198, -3037, -8612, -865, -932, -940, -972, -978, -1733, -1942, -2402, -2405, -2410, -2411, - -2466, -6859, -2469 - ], - [0, -13739, -13742, -2328, -3966, -3445], - [1, 3, 8713], - [0, 8714, 27, 258, 5], - [0, -2125, -1650], - [1, 3, 8716], - [0, 8717, 8718, 8719, 4], - [0, -1399, -5917, -2400, -13387], - [0, -3037, -519, -1849, -2363, -2384, -2541], - [0, -2330, -9214, -1847, -6656, -7421, -7420, -6909, -13745, -11846, -13746, -6555, -13747], - [1, 3, 8721], - [0, 8722, 0, 8723, 9], - [0, -10893, -13748, -13749, -13750, -13751, -13752, -13753, -13754], - [ - 0, -3974, -4000, -5514, -687, -2547, -712, -13755, -13756, -5553, -3962, -13757, -12898, -13758, -5564, -3824, - -6716, -6765, -13759, -13760, -13761, -12704, -6527, -7715, -9235, -8642 - ], - [1, 3, 8725], - [0, 8726, 0, 8727, 11], - [0, -13762, -6372, -1370, -13763, -2347, -13764], - [0, -3824, -3974, -5514, -13765, -13766], - [1, 3, 8729], - [0, 8730, 8731, 8732, 6], - [0, -13767, -461, -719, -2234], - [0, -13768, -13769, -932, -8150, -985, -1654, -1939, -2127, -2177, -2231], - [ - 0, -9216, -2334, -2415, -2416, -1644, -6684, -3214, -3217, -8108, -3184, -6052, -13770, -4795, -8165, -6434, - -510, -5867 - ], - [1, 3, 8734], - [0, 8735, 8736, 8737, 5], - [0, -2334, -1429, -2168, -2182, -3180], - [ - 0, -824, -1415, -1344, -1623, -774, -932, -825, -928, -2501, -1942, -367, -767, -2416, -21, -190, -2410, -23, - -3037, -1041, -1534, -1771, -2503, -11510, -86, -965, -3560, -13771, -2251, -40, -2411, -959, -748, -960, -958, - -6929, -978, -940, -967, -3748, -6930, -3307 - ], - [0, -9216, -2416, -2415, -2334, -2501, -7172, -6059, -6454, -9696, -9234, -6059, -6684, -1644, -7175, -7176], - [1, 3, 8739], - [0, 8740, 8741, 8742, 4], - [0, -13772, -13773, -13774, -13775, -13776, -717, -718, -10293, -1026, -10745, -7576], - [0, -1448, -1729], - [0, -2337, -4004, -4043, -687, -5119, -3634, -3673, -2322, -2319, -519, -1654], - [1, 3, 8744], - [0, 8745, 8746, 8747, 11], - [0, -615, -668, -1107, -1548, -1610, -1650, -13777, -13778], - [ - 0, -3244, -190, -5294, -5767, -3036, -3044, -3037, -4372, -427, -428, -3664, -827, -932, -6611, -13779, -2210, - -13780, -13781, -2391, -2392, -2410, -13782, -2469 - ], - [0, -1599, -4004, -5119, -13783, -856, -3671], - [1, 3, 8749], - [0, 8750, 8751, 8752, 4], - [ - 0, -23, -33, -37, -10983, -3395, -3383, -3376, -3384, -3393, -3350, -3385, -3374, -38, -40, -6056, -41, -44, - -13784, -13785, -3037, -6558, -3442, -541, -6067, -13786, -7435, -664, -668, -13787, -711, -719, -812, -815, - -824, -13788, -11460, -834, -13789, -11328, -5910, -3606, -999, -13790, -1111, -1119, -12933, -1341, -5458, - -13791, -1366, -1392, -10697, -1393, -13792, -1399, -1460, -1548, -13793, -1591, -11015, -1666, -13794, -1689, - -1699, -13795, -1839, -1866, -13796, -1880, -6467, -13797, -1966, -1982, -13798, -13799, -5915, -2115, -2160, - -2177, -3169, -2234, -2270, -13800, -13801, -13802, -13803, -13804, -13805, -13806, -13807, -13808, -13809, - -2359, -2369, -2410, -13810, -13811 - ], - [ - 0, -13812, -7590, -13813, -4066, -350, -6572, -351, -13814, -13815, -3035, -3198, -13816, -9939, -9283, -11011, - -3622, -3735, -3199, -3172, -9660, -13817, -427, -428, -535, -579, -617, -13818, -13819, -665, -9077, -3050, - -729, -754, -767, -13820, -930, -932, -13821, -7353, -1004, -13822, -1168, -1174, -13823, -1196, -1197, -1226, - -13824, -13825, -8498, -1243, -13826, -1262, -3809, -1608, -1632, -1646, -13827, -1685, -13828, -1972, -2006, - -13829, -2127, -2142, -2187, -2210, -7220, -2269, -13830, -2387, -2416 - ], - [ - 0, -13831, -5112, -4865, -6413, -3258, -3995, -3634, -4864, -4004, -4043, -4873, -507, -5855, -13832, -6948, - -6950, -510, -5867 - ], - [1, 3, 8754], - [0, 8755, 8756, 8757, 6], - [0, -7602, -13833, -501, -8864, -8898, -812, -13834, -851, -1098, -7772, -13835, -13836, -2324, -2359, -2426], - [0, -11344, -13837, -11339, -3198, -11347, -13838, -13839, -3628], - [0, -2340, -7606, -3634], - [1, 3, 8759], - [0, 8760, 8761, 8762, 5], - [0, -1548, -4654, -13840, -10846], - [ - 0, -3037, -427, -428, -633, -13841, -13842, -767, -815, -13843, -13844, -1398, -1650, -1771, -1788, -2125, - -2250, -13845, -13846, -2341, -2379, -5482, -2410 - ], - [0, -4873, -3440, -4215, -8611, -4216, -13847, -11378], - [1, 3, 8764], - [0, 8765, 8766, 8767, 4], - [ - 0, -4733, -573, -615, -13762, -719, -724, -735, -999, -1004, -13848, -1107, -1336, -1442, -1548, -1650, -1689, - -1737, -1778, -13849, -2125, -2228, -13850, -13851, -8573, -2359 - ], - [ - 0, -13852, -633, -664, -7976, -13853, -674, -838, -932, -7979, -964, -1654, -2105, -13854, -2195, -2210, -2211, - -2229, -2322 - ], - [0, -3214, -3634, -11116, -4865], - [1, 3, 8769], - [0, 0, 8770, 8771, 4], - [0, -2319, -2322, -689], - [0, -5554, -4002, -9846, -4111, -10844, -6724], - [1, 3, 8773], - [0, 0, 8774, 8775, 4], - [ - 0, -190, -351, -3266, -932, -13855, -952, -957, -960, -1110, -13856, -1446, -1588, -1880, -1978, -1989, -2127, - -2393 - ], - [0, -2344, -13857, -3214, -13858, -13859, -13860, -13861, -13862, -13863, -13864, -13865, -659, -3839, -5177], - [1, 3, 8777], - [0, 0, 8778, 8779, 4], - [ - 0, -21, -23, -38, -40, -44, -3326, -534, -7156, -753, -932, -7157, -940, -967, -985, -1098, -13866, -7158, - -1344, -1471, -1473, -1475, -1479, -1483, -1485, -1490, -1492, -1534, -1646, -13867, -1763, -1942, -1991, -2127, - -7161, -2501 - ], - [0, -811, -7329], - [1, 3, 8781], - [0, 0, 8782, 8783, 9], - [0, -8388, -2322, -8393], - [0, -5827, -8027, -13868, -11441], - [1, 3, 8785], - [0, 8786, 8787, 8788, 4], - [0, -2062], - [0, -599, -640, -664, -13869, -1654, -13870, -2250, -13871], - [0, -5827, -13872, -2346, -6408], - [1, 3, 8790], - [0, 0, 0, 8791, 11], - [0, -12735, -705, -3262, -5925, -1961], - [1, 3, 8793], - [0, 0, 14, 8794, 6], - [0, -13873, -13874, -13875, -2350, -13876, -1847, -11845, -7421, -2440, -7727, -5845], - [1, 3, 8796], - [0, 8797, 210, 8798, 4], - [0, -668, -12908, -1040, -9236, -13877, -1951, -2343], - [0, -1127, -8906, -9460, -4123, -13878, -9330, -13879, -9225, -6187, -8906], - [1, 3, 8800], - [0, 8801, 8802, 8803, 4], - [ - 0, -13880, -13881, -13882, -13883, -13884, -13885, -13886, -13887, -13888, -13889, -13890, -13891, -13892, - -13893, -13894, -13895, -13896, -13897, -13898, -13899, -13900, -13901, -13902, -13903, -13904, -13905, -13906, - -13907, -13908, -13909, -13910, -13911, -13912, -13913, -13914, -13915, -13916, -13917, -13918, -13919, -13920, - -13921, -13922, -13923, -13924, -13925, -13926, -13927, -13928, -13929, -13930, -13931, -13932, -13933, -13934, - -13935, -13936, -13937, -13938, -13939, -13940, -13941, -13942, -13943, -13944, -13945 - ], - [ - 0, -1076, -1107, -1168, -1847, -2162, -1654, -2006, -932, -1548, -2125, -784, -1889, -2501, -923, -1077, -1405, - -767, -1003, -1248, -1743, -2019, -778, -1183, -1967, -1187, -2163, -518, -1238, -1244, -2275, -13946, -13947, - -1792, -2508, -1184, -1514, -1908, -13948, -3054, -969, -933, -958, -962, -10533, -13949, -796, -1017 - ], - [0, -2006, -3159, -3095, -3098, -3160, -3161, -3100, -13950, -2352, -13951], - [1, 3, 8805], - [0, 8806, 8807, 7, 6], - [0, -10459, -812, -10622, -10623, -1792, -1983], - [0, -526, -535, -554, -559, -932, -943, -968, -974, -1004, -1088, -1654, -11943, -2251, -2293], - [1, 3, 8809], - [0, 0, 0, 8810, 5], - [0, -589, -13952, -13241], - [1, 3, 8812], - [0, 0, 8813, 8814, 5], - [0, -13953], - [0, -712, -3215, -13954], - [1, 3, 8816], - [0, 0, 0, 8817, 11], - [0, -3494, -2356, -7754, -3214, -3264, -5554, -10109, -10110, -10114, -3495, -10111, -3498], - [1, 3, 8819], - [0, 0, 8820, 8821, 4], - [0, -3037, -13239, -932, -940, -967, -978, -1942, -2892, -2410, -2411, -2466, -2469], - [0, -5922, -13955, -13956], - [1, 3, 8823], - [0, 0, 0, 8824, 8], - [0, -4216, -4215, -2410, -13957], - [1, 3, 8826], - [0, 0, 8827, 258, 4], - [0, -1654, -932, -1405, -6726, -964], - [1, 3, 8829], - [0, 8830, 8831, 8832, 4], - [0, -2036], - [0, -23, -13958, -3156, -1942, -2410], - [ - 0, -2006, -3159, -13959, -12662, -3825, -13960, -13961, -2034, -2053, -13962, -13963, -2360, -4127, -4122, - -13964, -687, -3162, -5270, -5271, -3578, -13965 - ], - [1, 3, 8834], - [0, 0, 8835, 8836, 10], - [ - 0, -21, -23, -37, -40, -41, -2581, -11254, -3311, -534, -664, -932, -1004, -1077, -1103, -1111, -1442, -1449, - -1610, -1650, -1654, -2634, -13966, -1771, -13967, -2006, -2019, -2162, -2250, -2501, -2503 - ], - [0, -2361, -3214, -4002, -13968, -7002, -3960, -3264, -7534, -9975], - [1, 3, 8838], - [0, 0, 8839, 8840, 6], - [0, -1754, -11358], - [0, -2362, -3215], - [1, 3, 8842], - [0, 0, 8843, 7, 6], - [0, -11719, -2319], - [1, 3, 8845], - [0, 8846, 8847, 8848, 6], - [0, -13969], - [ - 0, -2832, -190, -4139, -262, -3037, -6593, -932, -940, -948, -958, -967, -3631, -1110, -1942, -2391, -2410, - -2411, -2469 - ], - [0, -4181, -743, -6920, -13970, -13570, -8792, -13971, -13972], - [1, 3, 8850], - [0, 8851, 8852, 8853, 4], - [0, -714, -808, -1650, -13973], - [0, -3035, -3621, -664, -689, -879, -932, -1654, -1788, -2379, -2388, -2410], - [0, -1573, -3444, -13974, -812], - [1, 3, 8855], - [0, 8856, 8857, 8858, 5], - [0, -11103, -13975, -7400], - [0, -5834, -516, -5835, -921, -932, -1365, -1777, -2156, -2322], - [0, -2368, -2487, -7371, -6917, -13976, -6545, -702], - [1, 3, 8860], - [0, 0, 27, 8861, 5], - [0, -10919, -10336, -1958, -13641, -12872, -5395], - [1, 3, 8863], - [0, 241, 8864, 7, 5], - [0, -3732, -4198, -3617, -3136, -724, -754, -1004, -1415, -1753, -1942, -2375, -2410, -2564], - [1, 3, 8866], - [0, 8867, 8868, 8869, 4], - [0, -1370, -2347, -6372, -13977, -13978, -2062], - [0, -2322, -2346, -725], - [0, -3264, -9292, -3215, -6408, -12123, -775], - [1, 3, 8871], - [0, 8872, 8873, 8874, 4], - [0, -3851, -3199, -1388, -1681, -2177, -9444], - [0, -2581, -3037, -3664, -637, -11187, -1672, -1806, -5326, -3246, -2410, -2469], - [ - 0, -3445, -6857, -1671, -1672, -3862, -4058, -7773, -7684, -3018, -2410, -3324, -2071, -4634, -10412, -6495, - -5101, -13979 - ], - [1, 3, 8876], - [0, 0, 8877, 161, 11], - [ - 0, -21, -23, -26, -35, -36, -40, -42, -50, -86, -3307, -4139, -262, -3268, -3136, -3044, -3738, -427, -428, - -533, -589, -753, -932, -940, -967, -977, -1344, -1415, -1548, -1771, -1942, -2082, -2379, -2402, -2405, -2410, - -2446 - ], - [1, 3, 8879], - [0, 8880, 8881, 8882, 5], - [0, -13980, -7141, -1276, -1460, -1565, -13981, -2177, -2400, -2551], - [ - 0, -86, -9404, -3615, -3244, -190, -5121, -4020, -237, -4776, -3048, -3136, -3660, -3759, -8216, -7211, -4036, - -3037, -3199, -3041, -9146, -427, -428, -533, -10525, -739, -928, -932, -940, -958, -959, -960, -967, -999, - -1026, -1077, -1110, -1344, -1415, -1442, -1534, -1623, -1942, -2125, -2379, -2410, -2411 - ], - [0, -1415, -2410, -6915, -2006, -3634], - [1, 3, 8884], - [0, 8885, 8886, 8887, 5], - [0, -668, -909, -1639, -2177, -2231], - [ - 0, -4036, -3199, -427, -428, -525, -527, -534, -556, -559, -13982, -560, -930, -932, -940, -966, -967, -1077, - -1107, -1344, -1413, -1471, -1475, -1481, -1483, -1490, -1492, -1534, -1607, -1650, -1654, -1942, -2125, -2410, - -2501, -2503 - ], - [0, -2376, -13983, -2501, -5932, -2410, -3018], - [1, 3, 8889], - [0, 8890, 8891, 8892, 9], - [0, -4106, -719, -865, -1672, -2392], - [0, -2581, -3037, -3664, -11187, -1763, -1806, -5326, -3246, -2410, -2469], - [ - 0, -3445, -13984, -13985, -13986, -1672, -1671, -6857, -4058, -7773, -7684, -3018, -2410, -687, -5732, -13987, - -5731 - ], - [1, 3, 8894], - [0, 8895, 8896, 8897, 6], - [0, -13988, -13989], - [0, -3267, -3035, -9939, -3621, -3037, -664, -11072, -767, -834, -1654, -2125, -2127, -2379, -2410], - [0, -2410, -3272, -13990, -3107, -13991], - [1, 3, 8899], - [0, 8900, 8901, 8902, 5], - [0, -2558, -502, -834, -461, -462, -13981, -13992, -13993, -13994, -13995, -8214, -13996, -13997], - [ - 0, -519, -1788, -523, -2006, -13998, -1001, -1548, -2125, -2177, -11685, -1821, -2402, -367, -13999, -1100, - -1972, -2410, -9939, -3037, -14000, -3040, -3044, -8890, -3199, -6744, -14001, -7772, -4364, -11347, -11708, - -262 - ], - [0, -2410, -3966, -11997, -5558, -3018, -3116], - [1, 3, 8904], - [0, 8905, 8906, 8907, 5], - [0, -3044, -3851, -3199, -14002, -1548, -1681, -14003, -14004, -2177], - [0, -2581, -3037, -3664, -11187, -1672, -1806, -5326, -3246, -2410, -2469], - [ - 0, -3445, -1672, -3862, -6857, -4058, -7773, -7684, -3018, -2410, -7460, -1306, -5389, -6821, -8990, -10674, - -6693, -5879, -1573 - ], - [1, 3, 8909], - [0, 0, 37, 8910, 8], - [0, -2410, -2552, -10054, -10055], - [1, 3, 8912], - [0, 8913, 8914, 8915, 5], - [0, -1548, -3044], - [0, -2581, -3037, -3664, -1806, -5326, -3246, -2410, -2469], - [0, -3445, -3018, -2410, -14005, -14006, -11315, -8199, -6899, -14007, -14008, -14009, -14010, -14011], - [1, 3, 8917], - [0, 8918, 8919, 7, 9], - [0, -1460, -1646, -2270], - [ - 0, -1415, -1344, -932, -2125, -2375, -2379, -1942, -2410, -3136, -3037, -1534, -5686, -14012, -960, -958, -940, - -428, -7770, -427 - ], - [1, 3, 8921], - [0, 8922, 8923, 8924, 5], - [0, -14013, -3686, -1111, -1418, -1630, -1849, -2061], - [0, -5028, -3037, -3040, -427, -428, -519, -757, -825, -932, -945, -14014, -999, -2006, -2115, -2153, -2410], - [0, -2410, -2384, -7440, -2414, -3694, -14015, -14016], - [1, 3, 8926], - [0, 0, 8927, 8928, 4], - [0, -23, -40, -42, -5121, -8214, -14013, -3037, -427, -428, -533, -774, -932, -940, -1415, -1942, -2410], - [0, -2410, -2384, -4037, -7440, -7144, -4004, -2414, -3694], - [1, 3, 8930], - [0, 8931, 8932, 8933, 10], - [0, -8200, -668, -679, -6475, -14017, -1645, -1650, -14018, -13709, -2125, -14019, -2410, -4297], - [0, -3037, -928, -1942, -2319, -2402], - [0, -2410, -5058, -9946, -985, -4791, -7641], - [1, 3, 8935], - [0, 0, 0, 8936, 6], - [0, -4165, -14020, -3116, -6784, -3214, -2387, -11997], - [1, 3, 8938], - [0, 8939, 8940, 8941, 8], - [0, -22, -644, -668, -719, -834, -1107, -1442, -1645, -1650, -2114, -2177, -2387, -7765], - [ - 0, -305, -8355, -3035, -9939, -3036, -3660, -8566, -4811, -3621, -3037, -3200, -8890, -3199, -664, -1344, - -13325, -1654, -1771, -1788, -1942, -2125, -2379, -2388, -2389, -6355, -2410, -12515 - ], - [0, -687, -2410, -8170], - [1, 3, 8943], - [0, 0, 8944, 8945, 5], - [ - 0, -1415, -1344, -1548, -2125, -2388, -2375, -1591, -1942, -14021, -720, -2410, -3136, -3037, -14022, -2390, - -14023, -6630, -2174, -14024, -14025, -12348, -2449, -12349, -14026, -796, -14027 - ], - [0, -7148, -2388, -14028, -1942, -727, -2410], - [1, 3, 8947], - [0, 8948, 8949, 7, 6], - [0, -7765], - [0, -3036, -3037, -714, -1107, -1771, -1847, -2388, -14029, -2410], - [1, 3, 8951], - [0, 8952, 8953, 7, 4], - [ - 0, -13389, -653, -679, -734, -812, -928, -14030, -14031, -1863, -1907, -2115, -2127, -2231, -5354, -3535, -2654, - -2369 - ], - [ - 0, -262, -4062, -367, -3198, -3037, -3200, -8349, -1055, -1889, -10815, -1942, -2114, -2132, -2162, -2271, - -2299, -2301, -2334, -14032, -2391, -2410, -2469, -2817 - ], - [1, 3, 8955], - [0, 8956, 0, 8957, 4], - [0, -928, -1101], - [0, -687, -11997, -3966, -8930, -4791, -985, -2410, -14033], - [1, 3, 8959], - [0, 8960, 8961, 8962, 6], - [0, -14034], - [0, -350, -351, -3561, -633, -2123, -2127, -2250, -14035], - [0, -6473, -3264, -1599], - [1, 3, 8964], - [0, 0, 8965, 8966, 10], - [ - 0, -1127, -1654, -11875, -1132, -2111, -14036, -14037, -1156, -14038, -1138, -14039, -2234, -1134, -14040, - -1144, -1148, -14041, -14042, -14043 - ], - [0, -1456, -4058, -2451, -2394], - [1, 3, 8968], - [0, 0, 8969, 8970, 5], - [0, -633, -932, -1032, -14044, -2322, -14045, -2416], - [0, -770, -5374, -14046, -14047, -13351, -6131, -7372, -14048, -14049, -14050, -14051, -14052], - [1, 3, 8972], - [0, 8973, 8974, 8975, 5], - [0, -1077, -1462, -14053, -8984], - [0, -1771, -1860, -2416], - [0, -10838, -14054, -3215, -5093, -9474, -14055, -4112], - [1, 3, 8977], - [0, 8978, 8979, 8980, 9], - [0, -615, -1640, -2105], - [0, -510, -714, -719, -1654, -2123, -2210], - [0, -2398, -3690, -3691, -5827, -9292, -1791], - [1, 3, 8982], - [0, 8983, 8984, 8985, 11], - [0, -2105, -822], - [0, -1722, -1654, -932], - [0, -2398, -9292, -1791], - [1, 3, 8987], - [0, 8988, 0, 7, 4], - [0, -1646, -14056, -668], - [1, 3, 8990], - [0, 8991, 8992, 8993, 9], - [0, -14057], - [0, -5918, -428, -932, -14058, -815, -1002, -1772, -2384, -2410, -2411, -2541], - [0, -2410, -3018, -3694, -3590, -2444, -8113, -10665, -1631, -4055, -14059], - [1, 3, 8995], - [0, 8996, 129, 8997, 4], - [0, -737, -14060, -1641], - [0, -5398, -8038, -14061], - [1, 3, 8999], - [0, 9000, 9001, 259, 4], - [0, -14062, -3544, -1600, -1645, -2548], - [0, -190, -3800, -3661, -3621, -3037, -652, -13998, -928, -932, -1654, -1978, -2177, -2392, -2410, -2411], - [1, 3, 9003], - [0, 9004, 9005, 9006, 11], - [0, -14063], - [0, -3037, -2402, -2410], - [0, -14064, -14065, -3118, -14066, -14067, -14068, -2410, -856], - [1, 3, 9008], - [0, 0, 131, 9009, 6], - [0, -4121, -4123, -13188, -2410, -856, -14068, -2402], - [1, 3, 9011], - [0, 0, 0, 9012, 4], - [0, -3690, -856, -1599, -2402, -2410, -14065], - [1, 3, 9014], - [0, 9015, 9016, 9017, 4], - [0, -1610, -2410], - [0, -3802, -3621, -3037, -3628, -756, -1405, -1654, -1657, -2359], - [0, -4165, -856, -14069, -3214], - [1, 3, 9019], - [0, 9020, 9021, 9022, 4], - [0, -719, -2536, -1705, -6455, -14070, -510, -714, -1666, -1650, -7418, -14071], - [0, -664], - [0, -14072, -1599, -14073, -14074, -14075, -8676, -3110, -6473, -3262], - [1, 3, 9024], - [0, 106, 9025, 7, 5], - [ - 0, -234, -3035, -4269, -3621, -14076, -3037, -664, -665, -756, -1654, -14077, -1672, -14078, -1942, -14079, - -2234, -2379, -2389, -12348 - ], - [1, 3, 9027], - [0, 9028, 9029, 7, 10], - [0, -1107, -2446, -483, -809, -812, -2387, -2550, -640, -815, -865, -7023, -496, -14080, -2080, -14081], - [ - 0, -652, -1857, -664, -1168, -1344, -1392, -1654, -1682, -1691, -2071, -2210, -932, -1692, -2125, -3729, -1110, - -1671, -2245, -2379, -10418, -1942, -14082, -190, -1250, -8436, -2211, -2410, -3035, -3037, -1243, -1534, -3198, - -3621, -4372, -3041, -1244, -14083, -10419, -1252, -1261, -10420, -14084, -8214, -665, -3625, -3910, -7969, - -2411, -14085, -2234, -14086, -960, -14087, -14088, -4269, -9660 - ], - [1, 3, 9031], - [0, 0, 9032, 9033, 5], - [ - 0, -652, -1681, -664, -834, -1107, -1498, -1654, -2387, -2518, -13998, -932, -8526, -928, -1110, -679, -1646, - -3851, -190, -1863, -1874, -2410, -3035, -9939, -3621, -10755, -1461, -305, -5686, -1028, -14089, -14090, -2411, - -14091, -2234, -971, -14092, -429, -9660, -14093, -5201, -5206, -14094, -14095 - ], - [0, -4165, -14020, -3116, -6784, -3214], - [1, 3, 9035], - [0, 9036, 112, 9037, 4], - [0, -429, -428, -427, -5209], - [0, -3272, -3217, -3214, -2410, -3215, -4132, -932, -5208, -3784], - [1, 3, 9039], - [0, 9040, 9041, 9042, 10], - [0, -14096, -7829], - [0, -4811, -3621, -3037, -14097, -740, -14098, -1650, -1654, -1938, -2388, -2410, -2412], - [0, -4165], - [1, 3, 9044], - [0, 9045, 9046, 9047, 6], - [ - 0, -14099, -14100, -865, -2773, -1521, -1551, -1889, -1907, -7164, -1915, -7165, -10283, -2162, -2232, -2383, - -2286 - ], - [ - 0, -14101, -3136, -8334, -3759, -3037, -14102, -14103, -8336, -427, -428, -620, -932, -940, -1344, -1415, - -14104, -1534, -14105, -1916, -1927, -1942, -14106, -2375, -2410 - ], - [0, -775, -3754, -2162, -1521, -2286, -3209, -3862, -1889, -2410], - [1, 3, 9049], - [0, 9050, 9051, 9052, 8], - [0, -11661, -615, -668, -696, -715, -13789, -10511, -12631, -1575, -1646, -14107, -14108, -2433, -2525, -2546], - [0, -829, -1722, -2125, -2379, -2388, -14109, -2410], - [0, -2414, -2410, -14110, -4159, -5897, -9800, -9069], - [1, 3, 9054], - [0, 9055, 9056, 9057, 8], - [0, -719, -2231], - [0, -461, -1654, -2177], - [0, -9216, -2415, -2416, -1644, -6684, -3214, -3217, -8108, -3184, -6052, -13770, -4795, -8165, -6434, -510, -5867], - [1, 3, 9059], - [0, 0, 9060, 9061, 11], - [0, -461, -2177], - [ - 0, -687, -6454, -9696, -14111, -3217, -6505, -8108, -3214, -3756, -14112, -9234, -6059, -6684, -1644, -7175, - -7176, -7858, -9697, -1838, -3215, -9698, -9216 - ], - [1, 3, 9063], - [0, 9064, 9065, 9066, 9], - [0, -4287, -1046, -1401, -2168, -2182, -2231, -2416, -2510, -10059], - [ - 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -8206, -767, -824, -825, -932, -940, -958, -1344, -1415, - -1424, -1534, -1626, -1771, -1942, -2251, -2334, -2501 - ], - [0, -9216, -2416, -2415, -2501, -7172], - [1, 3, 9068], - [0, 9069, 9070, 9071, 5], - [0, -14113], - [0, -1654, -932, -615, -1405, -966, -958, -968, -943, -974], - [0, -6555, -3262, -7232, -9594], - [1, 3, 9073], - [0, 9074, 0, 9075, 4], - [ - 0, -44, -3040, -3052, -14114, -14115, -14116, -14117, -14118, -14119, -14120, -14121, -432, -14122, -14123, - -14124, -14125, -14126, -14127, -14128, -14129, -14130, -14131, -14132, -14133, -14134, -14135, -14136, -14137, - -14138, -14139, -433, -434, -14140, -14141, -14142, -14143, -14144, -14145, -14146, -14147, -5257, -435, -14148, - -14149, -14150, -14151, -14152, -14153, -14154, -14155, -14156, -14157, -14158, -14159, -14160, -14161, -14162, - -14163, -14164, -14165, -14166, -14167, -14168, -14169, -14170 - ], - [0, -3099, -2419, -5250, -5251, -2006, -3159, -3095, -3098, -3160, -775, -5252, -5253, -3161, -3577, -3100], - [1, 3, 9077], - [0, 9078, 9079, 174, 10], - [0, -1107, -1351, -1548, -2177, -2529], - [0, -1452, -1600, -1654, -1766, -2198], - [1, 3, 9081], - [0, 0, 9082, 7, 10], - [0, -4066, -350, -351, -3267, -3037, -589, -1942, -2127, -2387, -2410, -2469], - [1, 3, 9084], - [0, 0, 9085, 9086, 5], - [0, -2581, -50, -13526, -668, -5382, -928, -1111, -1273, -1600, -14171, -1771, -14172, -1948, -3768, -2469], - [0, -3264, -3110, -7723], - [1, 3, 9088], - [0, 9089, 9090, 7, 5], - [ - 0, -4066, -350, -4062, -351, -3561, -4785, -14173, -734, -6860, -928, -14030, -14174, -1431, -1588, -14175, - -1651, -1852, -6568, -1948, -2127, -2132, -6569, -2654, -14176 - ], - [0, -3376, -3037, -3664, -8189, -672, -932, -944, -1942, -2410, -2469], - [1, 3, 9092], - [0, 0, 9093, 9094, 4], - [ - 0, -1788, -1107, -849, -1344, -1471, -1989, -932, -2127, -2334, -757, -756, -1485, -7324, -4916, -14177, -958, - -1488 - ], - [0, -2444, -5112, -3844, -3323, -4865], - [1, 3, 9096], - [0, 9097, 9098, 9099, 4], - [0, -2243, -9649], - [0, -633, -14178, -932, -1405, -1654, -1657, -8276, -12323, -2424], - [0, -2424, -2265], - [1, 3, 9101], - [0, 0, 9102, 9103, 5], - [ - 0, -8843, -11419, -14179, -357, -3037, -458, -2917, -652, -767, -14180, -928, -932, -1023, -1344, -1415, -14181, - -2884, -1730, -1971, -2384, -2410, -2531 - ], - [0, -4213, -1334, -1342, -1961, -2105, -9172, -9173, -2533, -5388], - [1, 3, 9105], - [0, 9106, 9107, 9108, 4], - [0, -4231, -14182, -9596, -1015, -1395, -14183, -5358], - [0, -14184, -5334, -4251, -3037, -652, -1942, -2094, -2100, -2384, -2399, -2410, -2541], - [0, -3272, -7644, -5398, -10280, -1838, -1958, -2083, -2093, -14185, -6233, -6231, -4132, -6408, -10919, -2427], - [1, 3, 9110], - [0, 9111, 14, 9112, 4], - [0, -14186], - [0, -13747, -6555, -6240, -6814, -3960, -14187, -5839, -12411, -9682], - [1, 3, 9114], - [0, 9115, 9116, 9117, 5], - [0, -4231, -7700, -5356], - [0, -4251, -3037, -652, -1618, -10922, -10923, -1942, -2094, -2100, -2384, -2399, -2410, -2541], - [ - 0, -9590, -14188, -2444, -3590, -2093, -14185, -2083, -10918, -9589, -14189, -14190, -1703, -6784, -1599, -3264, - -6597, -10919, -3272, -3966, -14191, -2487 - ], - [1, 3, 9119], - [0, 0, 222, 9120, 5], - [0, -13875, -11002, -7727, -2430, -1847, -11845, -7421, -2440, -5550, -6836], - [1, 3, 9122], - [0, 9123, 0, 9124, 8], - [0, -7304, -1081, -14192, -14193, -8578, -2062], - [0, -5408, -2432, -9506, -14194, -5409, -5827, -7347], - [1, 3, 9126], - [0, 9127, 9128, 9129, 6], - [0, -14195, -623, -668, -14196, -2177, -8418, -728, -6848, -1514, -1394], - [0, -2541, -519, -9982, -2269, -686, -14197], - [0, -1764, -10674, -11693, -9258, -14198, -7440, -7144, -687, -3551, -5897, -9318], - [1, 3, 9131], - [0, 0, 0, 9132, 4], - [ - 0, -9171, -2435, -14199, -14200, -14201, -14202, -14203, -14204, -14205, -14206, -14207, -14208, -14209, -14210, - -14211, -14212, -14213, -14214 - ], - [1, 3, 9134], - [0, 9135, 9136, 9137, 10], - [0, -1983, -1977], - [0, -515, -1788, -2568, -461, -1654, -932, -5834], - [0, -6747, -2435, -10433], - [1, 3, 9139], - [0, 0, 9140, 9141, 5], - [0, -739, -1654, -2198], - [0, -2435, -8396], - [1, 3, 9143], - [0, 9144, 9145, 48, 10], - [0, -1543, -1641, -2168], - [ - 0, -21, -23, -40, -86, -3307, -8205, -7166, -533, -767, -824, -825, -932, -940, -958, -1041, -1344, -1415, - -1534, -1623, -8913, -1771, -1942, -2251, -2501 - ], - [1, 3, 9147], - [0, 9148, 9149, 9150, 5], - [0, -6614, -9730], - [0, -509, -633, -652, -1654, -1939, -14215, -14216, -2416], - [0, -6984, -3215, -9171, -2435, -1838, -5101, -2265, -1985, -6231], - [1, 3, 9152], - [0, 9153, 9154, 9155, 9], - [0, -1069, -14217, -1641, -1983, -2400, -2426, -14218], - [ - 0, -2832, -14219, -7453, -14220, -8317, -14221, -3713, -3037, -14222, -4966, -14223, -3715, -8200, -9581, -3664, - -649, -767, -1351, -2987, -8065, -1971, -3727, -14224, -2325, -2386, -7457, -2410, -2469 - ], - [0, -2439, -1334, -14225, -9172, -9173, -2105, -1342, -2426, -4213], - [1, 3, 9157], - [0, 9158, 9159, 9160, 4], - [0, -10383], - [0, -1849], - [0, -2440, -11845, -13874, -10383, -11070, -7421, -7420, -1847, -6845, -3592, -5558, -3591, -14226], - [1, 3, 9162], - [0, 9163, 9164, 9165, 6], - [0, -1582, -2359], - [0, -509, -1654, -1939, -2105, -2177, -14227], - [0, -9733, -4865, -14228, -1819, -1838, -3215, -14229, -14230, -14231, -14232, -2440, -14233, -2442, -9318], - [1, 3, 9167], - [0, 0, 9168, 9169, 4], - [0, -756, -1405, -6186, -1991], - [0, -9791, -5835, -4112, -2443], - [1, 3, 9171], - [0, 9172, 9173, 260, 5], - [0, -1370, -7391, -14234, -14235, -7400], - [0, -468, -753, -14236, -1797, -1798, -2151, -2155, -2322], - [1, 3, 9175], - [0, 0, 183, 260, 8], - [1, 3, 9177], - [0, 0, 9178, 9179, 4], - [ - 0, -32, -86, -3307, -190, -3563, -719, -932, -940, -967, -1110, -1344, -1415, -1534, -2884, -1771, -1942, - -11013, -11014, -2251, -2410, -2411 - ], - [0, -2446, -7230, -11582, -14237], - [1, 3, 9181], - [0, 9182, 9183, 9184, 10], - [0, -8609, -834, -1496, -5037], - [0, -14238, -985, -11747, -13279], - [0, -507, -14239, -4043, -4045, -4004], - [1, 3, 9186], - [0, 0, 9187, 9188, 5], - [0, -2319, -1452], - [0, -2435, -3926, -7440, -7144, -5574], - [1, 3, 9190], - [0, 9191, 9192, 9193, 5], - [0, -7247, -14240, -5504, -10482], - [0, -7465, -664, -6774, -720, -796, -1344, -1405, -1650, -1654, -9075, -2125, -2174, -2210], - [0, -14241, -5890, -12665, -5889, -6908, -5887], - [1, 3, 9195], - [0, 0, 9196, 9197, 8], - [0, -4298, -4300], - [0, -1764, -5897, -6444, -3926], - [1, 3, 9199], - [0, 0, 9200, 9201, 4], - [0, -21, -23, -40, -43, -528, -535, -932, -934, -958, -1654, -1771, -1788, -2125, -2127, -2128, -11290, -2416], - [0, -2451, -3926, -5874, -8472, -7723, -14242, -14243, -507], - [1, 3, 9203], - [0, 9204, 9205, 9206, 11], - [0, -14244, -14245, -14246], - [ - 0, -3037, -4837, -5589, -3899, -14247, -4838, -786, -14248, -1449, -2410, -2466, -2469, -14249, -2476, -2483, - -14250, -14251, -14252, -14253 - ], - [0, -3160, -2476, -3944, -3162, -3100, -3095, -3098], - [1, 3, 9208], - [0, 0, 9209, 9210, 5], - [0, -1654, -932, -1405, -589, -2293, -585, -966, -958, -968, -943, -963, -974], - [0, -1334, -4616, -2453], - [1, 3, 9212], - [0, 9213, 9214, 7, 4], - [0, -2456], - [0, -2319, -1754], - [1, 3, 9216], - [0, 9217, 9218, 7, 6], - [ - 0, -5193, -928, -679, -1069, -14254, -14255, -14256, -14257, -14258, -14259, -14260, -14261, -14262, -14263, - -14264, -14265, -14266, -14267, -14268, -14269, -14270, -14271, -14272, -14273, -14274, -14275 - ], - [ - 0, -1681, -469, -502, -864, -985, -1371, -1816, -1805, -2466, -651, -668, -812, -999, -1623, -1971, -12508, - -13969, -2518, -669, -865, -1001, -1400, -2125, -2177, -2240, -2324, -2469, -680, -708, -1004, -1047, -1658, - -2379, -807, -1077, -1098, -1981, -1999, -2694, -367, -3851, -4966, -14276, -10697, -11705, -1645, -1878, -2369, - -11697, -12324, -481, -12971, -695, -1424, -1641, -1729, -2269, -2410, -3136, -3037, -512, -929, -14277, -8874, - -7982, -14278, -3269, -3198, -14279, -10755, -480, -511, -14280, -14281, -14282, -3199, -9941, -13839, -5977, - -3124, -12274, -11855, -3637, -14283, -13376, -10519, -14284, -4105, -3048, -11328, -1025, -14285, -1767, -7162, - -2991, -14286, -2992, -8566, -5363, -2946, -14287, -3713, -4201, -14288, -13184, -14289, -14290, -9750, -10046, - -14291, -5124, -14292, -14293, -2591, -11857, -14294, -3234, -14295, -14296, -14297, -11702, -14298, -14299, - -14300, -14301, -14302, -14303, -14304, -14305, -14306 - ], - [1, 3, 9220], - [0, 9221, 0, 9222, 4], - [0, -14307, -508, -13486], - [0, -6324, -8980, -14308, -12254, -12442, -3586], - [1, 3, 9224], - [0, 0, 9225, 7, 4], - [0, -1654, -1405, -2293], - [1, 3, 9227], - [0, 0, 9228, 9229, 4], - [ - 0, -23, -40, -86, -3307, -3326, -539, -664, -671, -708, -757, -14309, -784, -825, -932, -934, -958, -1344, - -1471, -1474, -1475, -3568, -1482, -1483, -1486, -1534, -1654, -1771, -1889, -1891, -14310, -1906, -1927, -7033, - -1978, -2127, -2281, -2282, -2284, -2416 - ], - [0, -6527, -14311, -2459, -14312, -3264, -775, -3214, -3577, -3578], - [1, 3, 9231], - [0, 9232, 9233, 9234, 5], - [0, -14313, -702, -2103, -14314], - [0, -1788, -1654, -932, -1001, -13729, -2062, -937, -966], - [0, -9614, -7422, -6656, -7421, -9330, -1847], - [1, 3, 9236], - [0, 9237, 9238, 9239, 4], - [0, -599, -2347], - [0, -2322, -2463], - [0, -2460, -7419, -5845, -640, -5827], - [1, 3, 9241], - [0, 9242, 9243, 9244, 11], - [0, -14315, -9092, -1119, -1351, -14316, -14317, -1759, -14318, -14319, -13729, -14320, -14321, -2460, -14322], - [0, -932, -937, -1001, -1654, -1788, -2062, -2125, -2210], - [0, -1168, -14323, -2460, -6656, -8801, -1076, -8027], - [1, 3, 9246], - [0, 9247, 9248, 9249, 9], - [0, -2460, -2347], - [0, -1243, -2322, -2462], - [0, -2460, -1168, -7419, -9975, -5827, -2265, -5554, -14324], - [1, 3, 9251], - [0, 185, 0, 9252, 4], - [0, -2460, -9455, -9466, -1168], - [1, 3, 9254], - [0, 9255, 9256, 9257, 5], - [0, -14325, -6324, -14326, -1109, -9977, -8104, -14327, -14328], - [0, -633, -1405, -9088, -1812, -14329, -12014, -2320, -2322, -2568], - [0, -9614, -5092, -9613, -14330, -834, -7460, -4865], - [1, 3, 9259], - [0, 9260, 9261, 261, 6], - [0, -4787, -2127, -928, -1889, -1864, -2654], - [ - 0, -2531, -653, -11071, -754, -990, -1651, -5042, -1805, -2162, -2213, -1852, -865, -5036, -1699, -1839, -2334, - -729, -12601, -679, -2923, -3027, -14331, -14332, -1863, -769, -929, -14333, -3751, -1588, -25, -4371, -866, - -989, -3572, -14334, -1906, -14335, -14336, -11751, -14337, -13397, -10046, -742, -4785, -1907, -7160, -4066, - -3195, -5322, -2134, -350, -6410, -7897, -3180, -14338, -7151 - ], - [1, 3, 9263], - [0, 9264, 9265, 9266, 4], - [0, -14341, -1026, -1077, -14342, -14343], - [0, -3617, -3048, -3037, -1004, -2391, -2410, -2466], - [ - 0, -2466, -3690, -14344, -14345, -14346, -14347, -1004, -14348, -3844, -14349, -9843, -14350, -14351, -3862, - -3816, -2146, -3445, -14352, -14353 - ], - [1, 3, 9268], - [0, 9269, 9270, 9271, 4], - [ - 0, -2476, -2466, -4245, -3788, -14354, -3726, -14244, -4817, -3559, -14355, -3558, -14356, -14357, -3661, -4837, - -14358, -4229, -14359 - ], - [ - 0, -1816, -2213, -812, -999, -1826, -3548, -1699, -2125, -2127, -2177, -2469, -928, -1871, -1966, -3728, -2653, - -5627, -2648, -679, -1077, -1098, -1646, -1942, -1977, -1582, -1639, -1863, -2654, -2410, -3037, -769, -1125, - -1534, -1600, -3198, -6447, -14360, -3801, -3735, -1851, -3048, -5686, -1570, -14361, -3246, -4036, -3425, - -1603, -2132, -13397, -7080, -1601, -4062, -13593, -14362, -14363, -4066, -14364, -1602, -6483, -14365, -3561, - -9458, -350, -1926, -14366, -3662, -14367, -14368, -740, -351, -14369, -14370, -14371 - ], - [0, -2466, -2476, -2468], - [1, 3, 9273], - [0, 9274, 9275, 9276, 8], - [ - 0, -5042, -2466, -1852, -6570, -3535, -1864, -2354, -2654, -6488, -1002, -14372, -1588, -13385, -13376, -13388, - -14373, -14335, -14374, -14375, -14376 - ], - [ - 0, -2531, -653, -1640, -14377, -1449, -7142, -1966, -13380, -1278, -14378, -462, -3037, -4647, -426, -14334, - -3735, -14379, -8523, -14380, -5038, -357, -4048, -3180, -3626, -4047 - ], - [0, -2466, -2469, -4004, -1415], - [1, 3, 9278], - [0, 9279, 9280, 9281, 5], - [0, -668, -1548, -1376, -1646, -2528, -1365, -1575, -2269, -556, -14381], - [ - 0, -2541, -1168, -525, -1654, -1666, -2198, -14382, -2105, -615, -527, -1174, -1197, -14383, -14384, -1182, - -14385, -559 - ], - [0, -3690, -687, -12694, -5550, -4039, -3161, -3994, -9668, -3957, -719, -13831, -1965, -1376], - [1, 3, 9283], - [0, 9284, 0, 9285, 4], - [0, -834, -14386, -1107], - [0, -3634, -4679, -4004, -14387], - [1, 3, 9287], - [0, 9288, 9289, 9290, 6], - [ - 0, -2359, -1107, -1640, -2059, -9498, -668, -1526, -2555, -14388, -2177, -2536, -674, -2436, -719, -1645, -1600, - -14389, -1315, -14390, -14092 - ], - [ - 0, -1344, -1654, -2379, -1942, -3628, -2410, -3036, -6325, -3037, -14391, -14392, -1771, -3621, -8497, -1952, - -3199, -11343, -14393, -86, -14394, -8566, -2174, -3661, -2234, -5361, -3307 - ], - [0, -11859, -2472, -5195], - [1, 3, 9292], - [0, 0, 37, 7, 4], - [1, 3, 9294], - [0, 9295, 9296, 7, 4], - [0, -479, -702, -994, -1022, -1107, -1351, -1391, -2231, -2410, -2460, -2536, -2550], - [ - 0, -9478, -14395, -9457, -3036, -14396, -8566, -3621, -3037, -12993, -9476, -7837, -3046, -11343, -3041, -427, - -428, -932, -1654, -2125 - ], - [1, 3, 9298], - [0, 0, 9299, 7, 9], - [0, -1654, -1650, -2501, -2410, -3037, -2503, -3621, -14397, -748, -262], - [1, 3, 9301], - [0, 9302, 0, 9303, 6], - [0, -14244, -14398, -9631, -7438, -3250], - [0, -2476], - [1, 3, 9305], - [0, 0, 9306, 9307, 5], - [ - 0, -23, -26, -33, -3077, -40, -3035, -3621, -3037, -428, -532, -534, -7890, -664, -778, -932, -14399, -1654, - -2080, -2125, -2127, -2128, -2138, -2341, -2376, -2410, -2415, -2476, -2481, -2485, -2816, -2486, -2501, -2503 - ], - [0, -2476, -7711, -525, -2410], - [1, 3, 9309], - [0, 9310, 9311, 7, 9], - [0, -812, -982, -983, -986, -8141, -2177], - [ - 0, -23, -32, -3332, -14400, -6484, -3244, -190, -3198, -426, -3037, -3199, -427, -428, -3664, -3665, -932, - -8230, -961, -965, -8287, -967, -978, -7356, -1942, -2379, -2892, -2410, -2466, -2469 - ], - [1, 3, 9313], - [0, 0, 9314, 9315, 5], - [0, -639, -1415, -2476], - [0, -2476, -12517, -11492], - [1, 3, 9317], - [0, 9318, 9319, 9320, 6], - [0, -14401, -14357, -14402], - [0, -14403], - [0, -1348, -9780, -14404, -3862, -2476, -3527], - [1, 3, 9322], - [0, 9323, 9324, 7, 4], - [0, -668, -1284, -12982], - [ - 0, -23, -40, -14405, -426, -12643, -3136, -4647, -14406, -14407, -534, -14408, -740, -778, -1041, -1331, -1415, - -1449, -1534, -14409, -1623, -1643, -7034, -7846, -1908, -1942, -1974, -14410, -2231, -2275, -2286, -2287, - -2289, -2375, -2376, -2410, -2437, -2476, -2480, -2501, -2503, -2505, -2508, -8160 - ], - [1, 3, 9326], - [0, 0, 9327, 9328, 4], - [0, -3136, -3037, -1415, -2080, -2127, -2375, -2410, -2476, -2477], - [0, -2476, -2410, -11313], - [1, 3, 9330], - [0, 9331, 9332, 7, 5], - [ - 0, -3194, -14411, -14357, -14412, -679, -1460, -14378, -1588, -1651, -14413, -1852, -1864, -6569, -2654, -2981, - -14414, -2548 - ], - [ - 0, -47, -14415, -3983, -350, -351, -3561, -3266, -12959, -14416, -8523, -8200, -4837, -7438, -14417, -3250, - -4838, -10363, -14418, -731, -865, -14419, -7595, -1278, -1719, -14420, -2851, -2125, -2127, -2142, -2892, - -2391, -2466, -2476 - ], - [1, 3, 9334], - [0, 9335, 9336, 7, 9], - [0, -1284, -1543], - [0, -527, -533, -549, -740, -1415], - [1, 3, 9338], - [0, 9339, 0, 9340, 4], - [0, -14421, -1297], - [0, -2476, -3116], - [1, 3, 9342], - [0, 262, 9343, 7, 8], - [ - 0, -2476, -1415, -668, -999, -6828, -932, -2127, -2177, -1004, -2501, -910, -1077, -767, -1978, -2468, -533, - -778, -2410, -2481, -23, -3037, -534, -14422, -2484, -40, -7438, -2082, -6429, -2140, -2253, -3561, -14399, - -2504, -2506, -350, -740, -351 - ], - [1, 3, 9345], - [0, 9346, 0, 9347, 5], - [0, -14423], - [0, -2444, -1819, -14424, -1076, -2487, -14425], - [1, 3, 9349], - [0, 9350, 9351, 7, 4], - [0, -8566, -7955, -8891, -1645], - [0, -3136, -3037, -1107, -1415, -1623, -2125, -2375, -2410], - [1, 3, 9353], - [0, 220, 9354, 9355, 4], - [0, -86, -3307, -633, -720, -796, -1344, -1415, -2416], - [0, -2489, -4038, -2006, -1384], - [1, 3, 9357], - [0, 9358, 0, 9359, 8], - [0, -14426, -1646], - [0, -2444, -3590, -1076, -6999], - [1, 3, 9361], - [0, 9362, 9363, 9364, 6], - [0, -9501, -633, -679, -6369, -14427, -2347, -2546], - [0, -627, -1650, -2239, -2322, -2416, -14428], - [0, -633, -10362, -2490, -4161, -7641, -4865], - [1, 3, 9366], - [0, 9367, 123, 9368, 4], - [0, -13012, -10837, -510, -14429, -13017, -14430, -13025, -13026, -14431, -14432], - [0, -13039, -1818, -1691, -6321, -2071, -1671, -14433, -2492, -2157, -13042], - [1, 3, 9370], - [0, 9371, 9372, 9373, 8], - [0, -501, -510, -1548, -1650, -1980, -2105, -14434], - [ - 0, -14435, -664, -665, -714, -7743, -1004, -1022, -1168, -14436, -1197, -1212, -1231, -1296, -1336, -13334, - -1405, -1654, -14437, -1722, -14438, -2150, -14439, -14440, -14441, -2425, -2446, -2550 - ], - [0, -3634, -4864, -11468, -12350, -11467], - [1, 3, 9375], - [0, 9376, 9377, 9378, 4], - [ - 0, -14442, -14443, -14444, -14445, -14446, -14447, -14448, -14449, -14450, -14451, -14452, -14453, -14454, - -14455, -14456, -14457, -14458 - ], - [ - 0, -14459, -1415, -932, -14460, -4271, -2375, -1942, -589, -2410, -3136, -1422, -3268, -14461, -958, -8378, - -940, -14462, -428, -14463, -427 - ], - [0, -14464, -7485, -3816], - [1, 3, 9380], - [0, 9381, 194, 9382, 8], - [0, -14465, -14466, -597, -636, -14467, -14468, -14469, -14470, -14471, -14472, -2550], - [0, -2494, -3673, -687, -14473, -4270], - [1, 3, 9384], - [0, 9385, 9386, 7, 11], - [ - 0, -8231, -426, -4049, -14474, -14475, -14476, -461, -14477, -635, -14478, -909, -14335, -982, -997, -8610, - -1119, -11677, -8562, -1641, -9548, -2168, -2321, -2335, -12982, -2510 - ], - [ - 0, -23, -41, -50, -13541, -14479, -8608, -4035, -3136, -3713, -14480, -3037, -14481, -14482, -534, -14483, - -14484, -711, -753, -774, -778, -807, -922, -3068, -932, -6929, -1041, -1067, -1110, -14485, -1322, -1344, - -1405, -1415, -8950, -1417, -1418, -1421, -1424, -1455, -1460, -1521, -1522, -1534, -1548, -1549, -1623, -14486, - -1643, -8913, -1733, -1788, -1806, -8436, -1942, -1950, -1974, -9720, -2000, -2006, -2019, -14487, -2090, -4242, - -2095, -2098, -2101, -2125, -5508, -2205, -2269, -2275, -2334, -2344, -2354, -2362, -2376, -2410, -2427, -2437, - -14488, -14489, -2503, -14490, -2549 - ], - [1, 3, 9388], - [0, 9389, 9390, 9391, 10], - [0, -2531, -2213, -461, -1810, -811, -719, -462, -1863, -1321, -930, -13410], - [ - 0, -824, -664, -1168, -1415, -1652, -932, -1111, -1940, -753, -784, -1889, -2501, -1044, -1978, -682, -778, - -1174, -1653, -2437, -23, -667, -2503, -518, -528, -534, -1566, -2275, -44, -1565, -14491, -1908, -9422, -40, - -14492, -2505, -41, -540, -969, -14493, -2335, -14494, -14495, -38, -33, -3376 - ], - [0, -2501, -4161, -14496, -3209, -8799, -9845, -14497, -12942, -14498, -7067], - [1, 3, 9393], - [0, 9394, 9395, 9396, 10], - [0, -914, -2068, -713, -719, -1381, -769, -1363, -2508, -14499, -5594, -11676, -13410, -14500], - [0, -14501], - [0, -2501, -687, -3108, -3551, -7882, -3578], - [1, 3, 9398], - [0, 9399, 9400, 9401, 9], - [0, -1623, -713, -1641, -1800, -1997, -2168], - [ - 0, -1501, -1313, -1415, -999, -1344, -774, -932, -3122, -729, -825, -1004, -1030, -1110, -2501, -1942, -767, - -823, -2293, -21, -190, -204, -533, -2410, -23, -3037, -1041, -1534, -1771, -1045, -5039, -3617, -86, -965, - -3560, -14502, -2251, -40, -4835, -3713, -14503, -959, -960, -958, -6929, -978, -940, -967, -3748, -3307 - ], - [0, -2501, -5401, -3113], - [1, 3, 9403], - [0, 9404, 9405, 7, 9], - [ - 0, -2531, -1805, -12860, -13318, -1004, -13074, -679, -4204, -713, -11121, -3727, -724, -1119, -2186, -2168, - -14504, -13386, -14505, -3617, -14506, -14507, -14508, -14509, -1338, -2504, -731, -12962, -14510 - ], - [ - 0, -1313, -1415, -1521, -461, -999, -1344, -14511, -1623, -774, -932, -1610, -2125, -729, -753, -2501, -1942, - -1978, -2293, -21, -533, -778, -1336, -2410, -23, -3037, -1522, -1534, -1771, -2503, -534, -2275, -2230, -4356, - -2508, -44, -86, -965, -2062, -2817, -3560, -2251, -40, -4835, -8477, -2411, -3732, -4035, -959, -960, -1331, - -5474, -32, -14512, -7716, -958, -6929, -940, -1419, -38, -3307, -5585 - ], - [1, 3, 9407], - [0, 9408, 9409, 9410, 5], - [0, -2269, -1320, -14509], - [0, -1788, -1654, -2210, -932, -1004, -2501, -1942, -2293, -967, -2504], - [0, -2501, -6211, -12517, -3551, -14513, -14514, -5401, -1004], - [1, 3, 9412], - [0, 9413, 9414, 7, 5], - [0, -2321, -2510], - [ - 0, -366, -3037, -3046, -14515, -3750, -748, -824, -932, -14516, -948, -1041, -1344, -1534, -1626, -1939, -1942, - -14517, -2006, -2275, -2387, -2410, -2469, -2501, -2508 - ], - [1, 3, 9416], - [0, 9417, 9418, 9419, 5], - [0, -1055, -9087, -3415], - [0, -1344, -2387, -14518, -2501, -1942, -2410, -14519, -426], - [0, -2501, -1631], - [1, 3, 9421], - [0, 0, 9422, 9423, 5], - [0, -664, -932, -958, -1654, -1658, -1705, -2501], - [0, -2501, -5757, -3966, -4161, -14520], - [1, 3, 9425], - [0, 0, 9426, 9427, 5], - [ - 0, -1415, -932, -1110, -2501, -1405, -1942, -756, -190, -2231, -2410, -3136, -965, -3560, -959, -960, -12916, - -958, -6929, -978, -940, -967, -3748 - ], - [0, -2501, -2231], - [1, 3, 9429], - [0, 9430, 0, 9431, 4], - [0, -1119, -769, -2359, -1860], - [0, -9711, -11891], - [1, 3, 9433], - [0, 9434, 9435, 9436, 8], - [0, -642, -812, -922, -14521, -13490, -14522], - [0, -641, -1168, -1224, -1453, -1452, -2322], - [0, -2512, -6224, -9005, -14523, -14524, -5737, -14525, -8841, -3844, -3323], - [1, 3, 9438], - [0, 9439, 9440, 9441, 5], - [ - 0, -14526, -14527, -14528, -14529, -14530, -14531, -14532, -14533, -14534, -14535, -14536, -14537, -812, -929, - -14538, -14539, -14540, -14541, -14542, -14543, -14544, -1640, -1801, -14545, -1976, -10570, -14546, -1997, - -10576, -13357, -14547, -13729, -14548, -14549, -14550, -14551, -14552, -14553, -14554 - ], - [ - 0, -23, -32, -3367, -40, -14555, -468, -14556, -10575, -14557, -571, -14558, -640, -14559, -771, -14560, -932, - -943, -958, -965, -968, -1045, -14561, -1834, -14562, -1985, -2151, -2174, -2187, -6390, -8573, -2320, -2322, - -2335, -6391, -2501, -2503, -14563 - ], - [0, -14564, -14565, -867, -14566, -14567, -14568, -14569, -9292, -14570, -14571, -14572, -6471, -14573, -2513], - [1, 3, 9443], - [0, 9444, 9445, 9446, 10], - [0, -596, -1696], - [0, -11836, -2319], - [0, -3708, -14574, -14575], - [1, 3, 9448], - [0, 9449, 9450, 7, 5], - [0, -1004, -1758, -2424], - [0, -710], - [1, 3, 9452], - [0, 0, 9453, 7, 4], - [ - 0, -664, -1471, -1654, -932, -2127, -1942, -1474, -1482, -516, -1962, -14576, -1475, -1477, -1487, -1479, -5993, - -8365 - ], - [1, 3, 9455], - [0, 0, 9456, 9457, 6], - [ - 0, -2493, -1107, -14577, -3691, -1460, -14578, -1452, -1650, -14579, -1813, -589, -14580, -2416, -633, -1963, - -14439 - ], - [0, -14581, -14582, -6306, -1961, -5923, -6307, -6308, -2517, -510, -6235, -11153], - [1, 3, 9459], - [0, 9460, 29, 7, 5], - [0, -14583], - [1, 3, 9462], - [0, 0, 9463, 9464, 10], - [0, -2778, -1446, -1654, -1666, -14584, -14585], - [0, -7084, -11722], - [1, 3, 9466], - [0, 9467, 9468, 9469, 8], - [0, -14586, -5758, -510, -1399, -14587, -14588, -2062, -7967, -2249, -8879, -2522], - [0, -21, -23, -40, -14589, -3037, -14590, -509, -14591, -932, -14592, -1415, -2125, -2240, -13361, -2347, -14593], - [0, -2520, -3444, -5545, -11989, -8948, -648, -1867, -1577, -3674, -4055, -5827], - [1, 3, 9471], - [0, 9472, 9473, 9474, 6], - [0, -14594, -1793, -8879, -2522], - [0, -14595, -14596, -664, -932, -966, -1654, -2125, -3708], - [0, -2520, -14597, -14598, -14599], - [1, 3, 9476], - [0, 9477, 9478, 9479, 4], - [0, -14587, -2062, -8879], - [0, -3037, -509, -526, -558, -821, -932, -14589, -1654, -1788, -2125, -14593], - [0, -2520, -3443, -14600], - [1, 3, 9481], - [0, 9482, 9483, 9484, 4], - [0, -14601, -1107, -1548, -14602, -2347, -14603], - [0, -664, -1077, -1405], - [0, -622, -5897, -4633, -9405, -11729, -3015], - [1, 3, 9486], - [0, 0, 88, 9487, 11], - [0, -14604, -14605, -6722, -14606, -14607, -14608, -14609, -5554, -10781, -2524, -12439, -4001], - [1, 3, 9489], - [0, 0, 31, 9490, 8], - [0, -10781, -4001, -11315, -3276, -6787], - [1, 3, 9492], - [0, 9493, 9494, 9495, 9], - [0, -7141, -1948, -4701, -2510, -14610], - [0, -3037, -3046], - [0, -14611, -14612, -2501, -14613, -6491, -14614, -14615, -14616], - [1, 3, 9497], - [0, 9498, 9499, 9500, 4], - [0, -482, -2267, -2269], - [0, -519, -668, -756, -3607, -1788, -2384, -2541], - [ - 0, -4001, -14604, -2525, -14617, -14618, -5514, -3770, -712, -5535, -714, -3974, -4000, -687, -2265, -3975, - -5559, -5538, -5549, -5513, -5550, -2547, -1573, -5545, -3958, -5554 - ], - [1, 3, 9502], - [0, 9503, 29, 9504, 6], - [0, -8143, -2202], - [0, -14619, -14620], - [1, 3, 9506], - [0, 0, 9507, 9508, 4], - [0, -589, -642, -932, -940, -967, -1110, -1654, -1788, -1942, -13490], - [0, -14621, -14622, -14525, -14623, -14624, -3509], - [1, 3, 9510], - [0, 9511, 9512, 9513, 9], - [0, -7334, -615, -668, -674, -812, -14625, -1400, -1403, -1792, -3633, -14626, -14627], - [0, -756, -1405, -1654, -1657, -6810, -2125, -2210, -2250], - [0, -3690, -674, -14628, -6596, -7534, -3578], - [1, 3, 9515], - [0, 9516, 9517, 9518, 8], - [0, -1109, -14629, -14630, -2546], - [0, -1065, -1939, -2320, -2322], - [0, -2533, -1334, -2540, -3120, -633], - [1, 3, 9520], - [0, 9521, 9522, 9523, 6], - [0, -8696, -14631, -14632, -10781, -14633, -14634, -14635], - [ - 0, -7746, -461, -1449, -1654, -2210, -932, -14636, -600, -879, -719, -2410, -3037, -14637, -14638, -957, -7894, - -14639 - ], - [0, -11592, -11593, -2534, -14640, -8787, -8713, -788, -14641, -14642, -14643, -10780, -9133], - [1, 3, 9525], - [0, 9526, 9527, 9528, 4], - [0, -2165], - [ - 0, -527, -534, -558, -11550, -632, -14644, -14645, -13841, -708, -756, -767, -932, -14646, -1405, -1412, -1415, - -1417, -14647, -1753, -1771, -1955, -2410, -14648, -2490, -2501 - ], - [ - 0, -14649, -6597, -3756, -4182, -4055, -14650, -14651, -14652, -14653, -14654, -8531, -8532, -2536, -2537, - -6408, -8530, -14655, -9307, -5845, -14656, -14657, -14658, -1838, -3215, -6747 - ], - [1, 3, 9530], - [0, 9531, 9532, 9533, 8], - [0, -2165, -2538], - [0, -756], - [0, -6597, -4055], - [1, 3, 9535], - [0, 9536, 219, 7, 4], - [0, -1309, -1435, -14659], - [1, 3, 9538], - [0, 0, 192, 9539, 4], - [0, -6597, -2538], - [1, 3, 9541], - [0, 0, 9542, 9543, 4], - [0, -1415, -2555, -14660, -932, -1753, -14661, -1942, -1100, -1771, -953, -7055, -940, -967], - [0, -5387, -5092, -6597, -3215, -3214, -14662, -14663], - [1, 3, 9545], - [0, 0, 0, 9546, 4], - [0, -2533, -5998], - [1, 3, 9548], - [0, 9549, 9550, 9551, 4], - [ - 0, -1630, -506, -932, -1111, -1110, -1942, -1099, -2400, -1639, -755, -8275, -1849, -1101, -965, -11813, -950, - -2411, -14664, -968, -978, -5918, -940, -9869, -8339, -967, -3686, -3748, -428, -14014, -9486, -8230 - ], - [0, -1763, -519, -999, -1344, -815, -5917, -1534, -3330, -86, -6630, -4036, -1768, -1945, -3307, -7357], - [ - 0, -5732, -687, -2541, -8193, -8196, -8197, -707, -8169, -5553, -7148, -8170, -1452, -8171, -932, -5874, -8172, - -2250, -8173, -7440, -7144, -8174, -7840, -8175, -5493, -3214, -2410 - ], - [1, 3, 9553], - [0, 0, 9554, 9555, 4], - [0, -4733, -920, -14665, -1654], - [0, -2542, -6597], - [1, 3, 9557], - [0, 9558, 9559, 9560, 10], - [0, -3345], - [0, -21, -23, -14666, -38, -40, -14667, -535, -14668, -14669, -633, -932, -1412, -1451, -1788, -14670], - [0, -5569, -5570, -14671, -4112], - [1, 3, 9562], - [0, 9563, 9564, 9565, 4], - [0, -719, -2858], - [0, -1788, -812, -1654, -932, -756, -2416, -633], - [0, -8472, -2544, -7723, -14242, -3962, -7107, -5559, -6422, -7724, -2451, -3264, -6138, -14672], - [1, 3, 9567], - [0, 0, 9568, 9569, 4], - [0, -14673, -469, -1872, -2153, -2535], - [0, -14674, -14675, -14676, -14677, -14678, -4125, -14679, -3552], - [1, 3, 9571], - [0, 0, 31, 9572, 10], - [0, -1015, -1631, -6792, -6696, -7208, -5839], - [1, 3, 9574], - [0, 0, 9575, 9576, 5], - [ - 0, -3983, -3035, -3198, -14680, -3617, -14681, -3036, -4647, -3621, -3037, -14682, -3046, -4204, -427, -428, - -664, -767, -821, -932, -960, -1004, -11616, -1107, -1449, -1654, -1689, -1741, -1788, -2233, -2234, -2376, - -2410, -2443, -2501, -2503, -2531, -14683 - ], - [0, -687, -3958, -4000, -11564, -5550, -8905, -3770, -14684, -3974, -3975, -5561, -13861, -2547], - [1, 3, 9578], - [0, 0, 9579, 9580, 8], - [ - 0, -1415, -2387, -932, -2127, -1942, -190, -533, -1023, -2410, -23, -3136, -3037, -1426, -40, -2411, -3326, - -3561, -940, -3267, -14685, -3412 - ], - [0, -14686, -3215, -3270], - [1, 3, 9582], - [0, 9583, 9584, 9585, 10], - [0, -1107, -503], - [0, -589, -6398, -1414], - [0, -2548, -4055, -14687, -14688], - [1, 3, 9587], - [0, 9588, 9589, 235, 5], - [0, -701, -10415, -5505, -2267, -10751, -2551], - [ - 0, -32, -42, -3035, -3621, -3037, -427, -14689, -652, -664, -668, -10480, -767, -769, -932, -967, -1166, -11831, - -1654, -2125, -2410, -2518, -14690 - ], - [1, 3, 9591], - [0, 0, 9592, 9593, 4], - [ - 0, -32, -42, -3035, -3621, -3037, -427, -428, -652, -664, -767, -932, -1166, -1654, -1978, -2125, -2184, -2253, - -2410 - ], - [0, -6748, -3215, -2550, -3957, -687, -6747, -5829, -4377, -6748], - [1, 3, 9595], - [0, 9596, 9597, 7, 4], - [ - 0, -14691, -567, -651, -656, -668, -10506, -719, -14692, -812, -10659, -834, -1105, -1371, -1384, -5894, -1526, - -14693, -1645, -1650, -1728, -1733, -1796, -7772, -2059, -14694, -2105, -14695, -2125, -14696, -2177, -2270, - -2323, -2325, -2441, -10523 - ], - [ - 0, -527, -528, -533, -534, -6085, -555, -559, -14697, -14698, -560, -562, -572, -932, -14699, -7748, -14700, - -951, -14701, -956, -14702, -969, -1059, -1168, -1174, -1232, -1237, -1266, -1268, -1415, -1455, -1661, -2330, - -2501 - ], - [1, 3, 9599], - [0, 0, 0, 9600, 8], - [0, -2552, -2554, -3590, -5550, -1764, -13499], - [1, 3, 9602], - [0, 9603, 9604, 9605, 11], - [0, -5822, -11280], - [0, -599], - [0, -2432, -5408, -5827, -5409, -6656], - [1, 3, 9607], - [0, 9608, 9609, 263, 5], - [ - 0, -14703, -14704, -14705, -14706, -14707, -506, -668, -719, -812, -999, -14708, -1111, -14709, -8802, -1549, - -14710, -14711, -2177, -2218, -2430, -14712 - ], - [ - 0, -3198, -3164, -3037, -3199, -14713, -652, -757, -932, -14714, -1077, -1446, -1942, -1945, -2125, -2210, - -14715, -2269, -2410, -9011, -9010 - ], - [1, 3, 9611], - [0, 9612, 9613, 263, 6], - [0, -668, -812, -999, -2177, -1646, -1549, -9444, -2205, -2343, -1456, -14711, -1514, -14716, -3609, -3164, -14705], - [ - 0, -888, -1446, -2210, -2469, -757, -1376, -1942, -2400, -4370, -2410, -9010, -3198, -4372, -3199, -9011, - -14713, -5686, -14703, -12968, -14706, -4049, -2556, -3664, -1945 - ], - [1, 3, 9615], - [0, 0, 14, 9616, 4], - [0, -2558, -14717, -14718, -687, -1965, -5874, -3962, -3953, -14719, -14720, -1838, -14721], - [1, 3, 9618], - [0, 9619, 9620, 9621, 11], - [ - 0, -1630, -1805, -668, -2562, -1548, -1040, -10325, -14722, -14723, -9764, -14724, -14725, -728, -769, -14726, - -10388, -5895, -14707, -6715, -14727, -14703, -14728, -3609, -2433, -14729, -2556 - ], - [0, -652, -2541, -1722, -2210, -14714, -1110, -756, -14730], - [0, -5732, -687, -3577, -3113, -7646, -7641, -3578, -3673, -3970, -9471, -3976, -3262, -3960, -3994, -3871], - [1, 3, 9623], - [0, 0, 9624, 9625, 4], - [0, -14731, -479, -519, -668, -689, -713, -1496, -10962, -1863, -2384, -2541], - [ - 0, -712, -5535, -714, -3974, -4000, -687, -2265, -5514, -5553, -3770, -3975, -5538, -5550, -2547, -1573, -5545, - -3958, -5554 - ], - [1, 3, 9627], - [0, 9628, 101, 9629, 6], - [0, -719, -1376], - [0, -2561, -3690, -3844, -3445], - [1, 3, 9631], - [0, 9632, 9633, 9634, 4], - [0, -1630, -668, -688, -2528, -481, -2269, -482, -2267, -14732], - [0, -2541, -1654], - [0, -5732, -687, -3976, -2559, -14733, -14734, -6335, -12665, -5514], - [1, 3, 9636], - [0, 218, 9637, 9638, 5], - [0, -2198, -2177, -1654], - [0, -14735, -2563, -14736, -14737, -14738, -5269, -14739, -6249], - [1, 3, 9640], - [0, 0, 0, 9641, 11], - [0, -2410, -4058, -3926, -8038, -8910], - [1, 3, 9643], - [0, 9644, 9645, 9646, 6], - [0, -523, -1004, -1851, -2564], - [ - 0, -3731, -3035, -4269, -3732, -14740, -3617, -14741, -3621, -14742, -617, -664, -665, -720, -724, -744, -796, - -932, -14743, -1380, -1654, -1676, -1764, -1942, -2251, -2379, -2410 - ], - [0, -2564, -1004, -3690, -14744, -14745, -3445], - [1, 3, 9648], - [0, 9649, 9650, 9651, 10], - [0, -567, -615, -812, -13317, -1351, -1449, -1548, -1640, -1681, -2105, -2364, -2531], - [ - 0, -526, -528, -555, -558, -617, -744, -824, -932, -1004, -1168, -1174, -1197, -11777, -1235, -1252, -1266, - -1654, -1676, -1687, -12720, -2111 - ], - [ - 0, -4004, -3636, -3634, -9249, -4679, -4683, -14387, -11878, -4865, -3264, -5177, -5092, -775, -3214, -4868, - -5998, -10640, -14746 - ], - [1, 3, 9653], - [0, 0, 9654, 7, 4], - [ - 0, -2934, -2953, -14747, -9705, -3037, -14748, -615, -10877, -1419, -1421, -1415, -1654, -1660, -1412, -2234, - -1413, -10034, -2153, -2314, -2387, -2469 - ], - [1, 3, 9656], - [0, 9657, 9658, 9659, 8], - [ - 0, -14749, -7334, -633, -8958, -14750, -714, -719, -724, -742, -812, -1004, -14751, -5456, -14752, -5457, -1296, - -1304, -1336, -5458, -14753, -5459, -1548, -1810, -1820, -14754, -2194, -14755, -7222, -2291, -14756, -8573, - -2491, -2493, -2546, -2549, -14757 - ], - [0, -465, -14758, -14759, -1654, -1860, -2322, -2347, -14760], - [0, -2568, -3634, -4865, -1989, -1654, -5471], - [1, 3, 9661], - [0, 9662, 40, 9663, 5], - [0, -293, -295, -297, -14761, -832, -2177, -2369, -2387], - [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -4339, -4340, -4343, -4347], - [1, 3, 9665], - [0, 9666, 40, 164, 6], - [0, -668, -2387, -297, -2177, -1110, -293, -7356, -429, -14761, -8167, -5201], - [1, 3, 9668], - [0, 9669, 40, 9670, 4], - [0, -2387, -297, -2177, -1427, -1645, -293, -1863, -4023, -1426, -2551, -4018, -11751, -4019, -1352, -14761], - [0, -4332, -4333, -4334, -4335, -4336, -4337, -4338, -14762, -4340, -4347], - [1, 3, 9672], - [0, 9673, 9674, 9675, 9], - [0, -2387, -297, -2177, -293, -295, -2569, -14761], - [0, -1787, -2257], - [0, -4333, -4334, -4335, -14763, -4339, -4340, -4343, -4347], - [1, 3, 9677], - [0, 9678, 9679, 9680, 11], - [0, -14764, -14765, -2387], - [0, -14766, -14767, -4745, -2344], - [0, -14768, -2006, -14769, -14770, -5176, -9547, -7581, -12543, -14771, -14772, -14773], - [1, 3, 9682], - [0, 9683, 9684, 9685, 11], - [0, -14774, -2634, -2006, -2019, -14775, -2170, -14776], - [0, -3037, -3040, -3052, -932, -10813, -1889, -2318, -2410], - [0, -5375, -770, -13055, -5375, -3634, -8576, -13056, -3551, -13057, -13058, -5376, -13059, -11152, -5150], - [1, 3, 9687], - [0, 9688, 0, 9689, 4], - [0, -786, -1967, -44, -3772, -3773, -3765], - [0, -2006, -3159, -4217, -906], - [1, 3, 9691], - [0, 9692, 190, 9693, 11], - [0, -6789, -6790, -14777], - [0, -3214, -1446, -1838, -10855, -856], - [1, 3, 9695], - [0, 9696, 9697, 264, 4], - [0, -44, -3345], - [0, -3136, -1415], - [1, 3, 9699], - [0, 9700, 9701, 9702, 4], - [0, -44, -14778, -1967, -2029, -2387], - [ - 0, -3192, -6093, -3394, -3794, -2685, -14779, -8471, -261, -3326, -350, -405, -406, -407, -14780, -409, -410, - -3136, -3140, -3040, -427, -428, -3766, -14781, -14782, -639, -757, -767, -795, -932, -3071, -969, -1059, - -14783, -14784, -5111, -8158, -1771, -1940, -4130, -2006, -2019, -2029, -2034, -2052, -2184, -2253, -2410 - ], - [0, -14785, -2006, -6701, -14786, -14787, -3823, -6750, -12605, -14788, -4666, -14789, -12606, -14790], - [1, 3, 9704], - [0, 90, 0, 9705, 9], - [ - 0, -4665, -4666, -5248, -10111, -775, -5564, -14791, -3962, -3214, -3756, -14792, -14793, -12898, -14794, - -14795, -1889, -3583, -14796, -14797, -6750, -12123, -14798, -2363, -14799 - ], - [1, 3, 9707], - [0, 9708, 9709, 9710, 9], - [0, -2857, -14800, -14801, -482, -14802, -1460, -2400, -14803], - [0, -14804, -3311, -3312, -14805, -14806, -14807, -2410], - [0, -14808, -4187, -2444, -3966, -4865, -3445, -3100, -14809, -14810], - [1, 3, 9712], - [0, 0, 0, 9713, 8], - [0, -3276, -7148, -14811, -7485, -4165, -4182, -14812, -14813, -14814, -7198, -14815], - [1, 3, 9715], - [0, 9716, 9717, 264, 5], - [ - 0, -23, -12490, -44, -3345, -14816, -14817, -14818, -14819, -2577, -14820, -14821, -14822, -160, -14823, -2695, - -14824, -4785, -14825, -2699, -366, -3735, -9947, -14826, -440, -14827, -518, -534, -14828, -5323, -635, -668, - -719, -753, -778, -779, -865, -866, -1077, -1107, -1122, -14829, -1123, -1331, -1455, -1469, -1548, -1643, - -1666, -14830, -1729, -1805, -1889, -1896, -1897, -1906, -1908, -12060, -1942, -1966, -6387, -2015, -2041, - -2144, -5977, -2193, -2195, -2275, -14831, -2335, -14832, -2435, -2466, -11710, -2501, -2502, -2505, -5628 - ], - [0, -14833, -3758, -3048, -3044, -14834, -4201, -6630, -13186, -5129, -1623, -1683, -1978, -2125], - [1, 3, 9719], - [0, 34, 9720, 9721, 5], - [ - 0, -234, -350, -4062, -351, -3561, -3043, -3136, -3040, -427, -428, -3807, -748, -915, -932, -940, -958, -967, - -969, -1415, -1419, -1449, -1788, -1942, -2006, -2019, -2125, -2127, -2130, -4063, -4064, -2142, -2144, -2233, - -2375, -2376, -2379, -2387, -2402, -2501, -2503, -2505, -238, -240 - ], - [0, -9975, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], - [1, 3, 9723], - [0, 34, 9724, 9725, 4], - [ - 0, -23, -40, -42, -4066, -3136, -3037, -427, -428, -14835, -14836, -14837, -441, -4838, -5593, -753, -767, -932, - -940, -958, -14838, -980, -1415, -1419, -1942, -2125, -2127, -2128, -2130, -2142, -2144, -14839, -2375, -2387, - -2402, -2410, -2476, -238 - ], - [ - 0, -2476, -3944, -14840, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, - -4060 - ], - [1, 3, 9727], - [0, 34, 9728, 9729, 8], - [ - 0, -23, -40, -42, -3035, -3136, -3621, -3037, -427, -428, -14835, -14836, -14841, -14837, -441, -4838, -5593, - -664, -767, -932, -940, -958, -14838, -980, -1771, -1942, -2125, -2127, -2128, -2130, -2142, -2144, -14839, - -14842, -2387, -2402, -2410, -2476, -238, -2584 - ], - [ - 0, -2476, -3944, -14840, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, - -4060, -5177, -775, -2316 - ], - [1, 3, 9731], - [0, 9732, 9733, 9734, 5], - [0, -5334, -9596, -9582, -1839, -5358, -6648], - [0, -4251, -3037, -652, -12326, -1942, -2094, -2100, -7699, -2399, -2400, -2410, -7669, -2541], - [0, -9590, -9589, -9588, -2444, -3590, -3264, -1838, -14843], - [1, 3, 9736], - [0, 0, 9737, 9738, 4], - [0, -932, -1654, -1788, -2210], - [0, -2254, -14844, -14845, -13497, -14846, -3445], - [1, 3, 9740], - [0, 0, 0, 9741, 4], - [0, -14847, -14848, -14849, -14850, -14851, -14852, -14853, -14854, -856, -1599], - [1, 3, 9743], - [0, 9744, 9745, 9746, 6], - [0, -9929, -9936, -14855, -812, -9927, -1371, -1875, -2240, -2347, -2387, -2555], - [ - 0, -3986, -3988, -3470, -3471, -3198, -9943, -11697, -3136, -3037, -11337, -9941, -7836, -8497, -932, -1415, - -1942, -2174, -2375, -2410 - ], - [0, -5271, -5270, -687, -3162, -3994, -9946, -5269], - [1, 3, 9748], - [0, 9749, 0, 9750, 5], - [0, -5334, -14856, -12767, -1293, -14857, -5356, -5358], - [0, -9589, -3264, -14857, -14075, -1599, -10684, -10918, -3862, -2083, -12745, -2093, -14858, -2427], - [1, 3, 9752], - [0, 9753, 9754, 9755, 5], - [0, -1281, -2297], - [0, -519, -708, -2410, -2541], - [0, -10606, -3974, -14859, -687, -6659, -7440, -5514, -5560, -4000], - [1, 3, 9757], - [0, 9758, 9759, 9760, 11], - [0, -8609, -12518], - [ - 0, -2832, -11432, -3615, -3244, -190, -3983, -367, -7043, -406, -407, -409, -14860, -3136, -3037, -3040, -12591, - -427, -428, -9723, -932, -940, -12520, -969, -970, -976, -1110, -1344, -1415, -1419, -1534, -2634, -1942, -2006, - -2019, -2965, -2125, -2177, -2410, -2411 - ], - [0, -2592, -2006, -3322, -2105, -3324, -4213], - [1, 3, 9762], - [0, 0, 9763, 9764, 5], - [0, -3037, -2228, -2229, -2391, -2410], - [ - 0, -2410, -8038, -3694, -9069, -7304, -8425, -6582, -7534, -4058, -3445, -3577, -4055, -6435, -640, -5835, - -6421, -10227, -6233, -12343, -14861, -14862 - ], - [1, 3, 9766], - [0, 9767, 9768, 9769, 4], - [0, -14863, -14864, -14865], - [0, -25, -46, -3983, -932, -1452, -1547, -1654, -2111, -8325, -2384, -2416], - [ - 0, -14233, -14866, -4865, -6899, -1819, -14867, -13626, -2594, -14868, -14869, -14870, -14871, -14872, -14873, - -14874 - ], - [1, 3, 9771], - [0, 0, 9772, 9773, 4], - [0, -1449, -2105, -2106], - [0, -3264, -9703, -9566], - [1, 3, 9775], - [0, 9776, 9777, 9778, 4], - [ - 0, -1297, -14875, -9684, -2267, -14876, -14877, -14878, -6467, -14879, -14880, -14881, -14882, -14883, -14884, - -14885, -14886, -14887, -14888, -14889, -9154, -14380, -14890, -14891, -14892, -8965, -14893, -14894, -14895 - ], - [ - 0, -652, -999, -2210, -14896, -581, -932, -825, -14897, -1098, -1942, -367, -749, -767, -2293, -2091, -10402, - -2410, -3037, -14898, -14899, -4372, -3906, -11098, -14900, -4203, -14901, -14902, -14903, -14904, -14905, - -14906, -13409, -14907, -14908, -4646 - ], - [0, -14909, -3161, -13039], - [1, 3, 9780], - [0, 9781, 9782, 9783, 4], - [0, -14910, -14911, -865, -1461, -1729, -4389], - [0, -14912, -14913, -3037, -4201, -932, -7060, -1942, -2125, -2392, -2410, -2469], - [0, -4344, -7547, -4165], - [1, 3, 9785], - [0, 9786, 9787, 9788, 8], - [0, -812, -2193, -2387, -2550, -1077, -719, -1729, -14914, -9929, -1734, -9931, -14915], - [ - 0, -1763, -1415, -1344, -2331, -932, -2125, -2375, -1942, -2410, -3136, -3037, -3198, -11337, -8890, -50, -3048, - -4201, -14916, -3986, -3988, -427 - ], - [0, -1386, -3996, -14917, -3162, -5269, -3167, -14918], - [0, 25, 9790], - 1753574400000, - [1, 3, 9792], - [0, 9793, 0, 93, 4], - [0, -682, -1384, -1967, -1993, -2006, -2019, -2029, -2489], - [1, 3, 9795], - [0, 9796, 0, 9797, 10], - [0, -2387, -14920, -14921, -14922], - [0, -5818, -1122, -3844, -3161, -3966, -3967, -2410], - [1, 3, 9799], - [0, 9800, 9801, 221, 5], - [ - 0, -9933, -14923, -9938, -9931, -9929, -9934, -9935, -9932, -9937, -9936, -668, -812, -834, -9927, -9925, -1548, - -1805, -3547, -8874, -2177, -2240, -9926, -9422, -2291, -2323, -2387 - ], - [ - 0, -3198, -9939, -9943, -3136, -3044, -3037, -3199, -9941, -4202, -5673, -1415, -1417, -1534, -2125, -2231, - -2375, -2410 - ], - [1, 3, 9803], - [0, 34, 9804, 9805, 5], - [ - 0, -14924, -14925, -14926, -8250, -7, -8, -9, -10, -427, -428, -519, -748, -932, -940, -958, -967, -14927, - -1788, -1942, -2125, -2153, -2234, -2387, -2402, -2410, -238 - ], - [0, -475, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], - [1, 3, 9807], - [0, 9808, 9809, 9810, 4], - [0, -8547, -1548], - [0, -3037, -427, -428, -932, -940, -958, -967, -1942, -2125, -2127, -2130, -2142, -2144, -2387, -2402, -2410, -238], - [0, -4053, -4054, -4055, -4056, -3100, -3262, -3962, -4057, -1463, -4058, -4059, -3999, -4060], - [1, 3, 9812], - [0, 9813, 9814, 65, 5], - [0, -712, -2544], - [0, -4597, -2391, -2423], - [1, 24, 9816], - [0, 25, 9817], - 1738454400000, - [1, 3, 9819], - [0, 9820, 9821, 9822, 4], - [0, -44, -2965], - [ - 0, -14928, -2006, -932, -708, -2379, -1942, -767, -2019, -14929, -2410, -5111, -3040, -14784, -3052, -14930, - -2052, -7465, -428, -3081, -427 - ], - [0, -3634, -2006, -3322, -5119, -4868], - [1, 3, 9824], - [0, 9825, 0, 9826, 8], - [0, -14931, -14932, -14933], - [ - 0, -10543, -9745, -11796, -9753, -6955, -9030, -2322, -14934, -4132, -14935, -3277, -14647, -11069, -6129, - -11037, -5880, -7375, -14936, -14937, -6656, -14938, -14939, -10545, -3018, -3210, -14940, -1015, -3756, -3116, - -14770, -6960, -11113, -12877, -4058, -14941, -14942, -6695, -14769, -12869, -6324, -4213, -2564, -6052, -9772, - -6821, -5998, -8988, -14943, -11582, -14944, -6511, -5837, -1985, -3103, -14945, -14946, -5550, -1631, -1000, - -8808, -8127, -3590, -1959, -7333, -2487, -7420, -5856, -9571, -6011, -3921, -10838, -14947, -2265, -11784, - -6953, -4111, -14948, -10366, -9054, -6510, -3612, -11685, -6787, -11798, -12255, -14949, -7863, -14950, -12343, - -5176, -719, -3272, -5831, -7373, -14773, -8411, -9027, -11822, -6849, -6962, -7199, -3690, -5846, -687, -14604, - -14951, -7856, -7581, -14952, -5827, -14953, -3215, -5195, -3911, -14954, -2387, -3015, -9980, -6281, -4784, - -14955, -6548, -10547, -6951, -6964, -6599, -13466, -10527, -11866, -5924, -1435, -13003, -1463, -8038, -3578, - -5514, -4782, -7558, -5572, -8410, -4110, -6120, -6968, -503, -14956, -14957, -6434, -6958, -6917, -3258, -6107, - -1640, -3994, -1471, -13469, -12991, -14958, -3186, -5272, -14959, -14960, -6233, -12342, -8910, -10537, -581, - -6187, -3206, -5112, -2368, -6932, -7283, -14961, -11872, -11791, -3931, -6970, -6845, -510, -5874, -14962, - -3771, -4113, -11792, -14963, -3815, -11112, -6717, -7331, -8027, -3634, -8163, -6977, -6280, -14964, -3322, - -12020, -10549, -14965, -5210, -2547, -10544, -8108, -14966, -11153, -5092, -8989, -7822, -1361, -1415, -1412, - -3481, -6370, -655, -3207, -2344, -6972, -8166, -11782, -7459, -1764, -770, -2059, -7091, -4053, -4792, -6946, - -8412, -3582, -6508, -14967, -14968, -4795, -14969, -12893, -6506, -8164, -5554, -635, -6956, -682, -6557, - -14970, -14622, -14971, -11070, -14972, -3930, -13770, -6987, -7334, -5842, -13468, -14525, -14973, -1080, - -10539, -2518, -6947, -10440, -12892, -8132, -8421, -7404, -2451, -13467, -14974, -1961, -4142, -1122, -6966, - -13234, -4679, -12883, -5549, -5395, -9918, -6971, -14975, -8996, -12543, -5829, -11797, -1810, -6655, -14976, - -14977, -14978, -14979, -12888, -7370, -8616, -7237, -2319, -6748, -14980, -6439, -1076, -2074, -5569, -3173, - -7230, -1983, -14981, -3770, -1993, -11793, -4107, -13465, -1039, -10413, -12437, -7303, -9173, -6989, -12990, - -14982, -6978, -5553, -3270, -3185, -10330, -3217, -14983, -1030, -9172, -9917, -4055, -4665, -11821, -3324, - -5563, -6784, -6965, -7421, -1359, -1654, -4676, -2105, -14984, -6545, -3175, -10541, -6130, -6957, -3276, - -14985, -12025, -7200, -14986, -2489, -1666, -9261, -775, -6543, -7442, -12912, -13471, -14987, -4781, -13005, - -615, -3966, -1449, -4115, -12889, -3925, -14988, -6654, -14989, -8388, -8472, -6948, -9048, -14624, -14772, - -12512, -8806, -3975, -3209, -14990, -4783, -6975, -14991, -6509, -6444, -9847, -11867, -6985, -14992, -11639, - -14993, -3926, -6188, -3162, -6555, -11049, -753, -3184, -14994, -664, -6986, -8128, -14995, -6131, -6852, - -12435, -7372, -14996, -1573, -12021, -14997, -14998, -1456, -14999, -3923, -15000, -4134, -5562, -5101, -8047, - -9826, -15001, -2525, -15002, -15003, -9577, -15004, -15005, -5396, -5208, -15006, -10548, -2114, -13872, - -12438, -729, -7369, -5484, -6351, -8618, -714, -4117, -9572, -12885, -13858, -6983, -11820, -15007, -15008, - -1047, -11997, -1342, -727, -15009, -5260, -15010, -8990, -4182, -8130, -6952, -518, -12878, -1986, -15011, - -11817, -891, -1801, -6976, -5841, -11483, -7440, -15012, -15013, -6980 - ], - [1, 3, 9828], - [0, 0, 9829, 9830, 4], - [0, -1452, -8171, -1654], - [0, -5514, -3264], - [1, 3, 9832], - [0, 9833, 9834, 9835, 5], - [0, -4372, -2210, -2387], - [0, -13198, -3698, -13201, -13202, -13204, -13205, -15014, -2402], - [0, -5817, -521, -3634, -4215, -8466, -15015], - [1, 3, 9837], - [0, 0, 9838, 9839, 8], - [ - 0, -3561, -668, -15016, -1077, -1107, -1168, -1190, -15017, -2125, -2127, -2132, -2142, -2334, -2387, -2388, - -2410 - ], - [0, -3994, -4126, -15018, -15019, -3578, -5270, -11536, -3214, -2363, -15020, -3162, -752, -3862, -2494, -3588], - [1, 3, 9841], - [0, 0, 0, 9842, 5], - [0, -4000, -3162, -812], - [1, 3, 9844], - [0, 9845, 9846, 9847, 8], - [0, -617, -724, -812, -832, -5035, -996, -1496, -2213, -2564], - [ - 0, -3983, -15021, -3171, -364, -3170, -365, -3865, -3330, -518, -803, -932, -940, -975, -1110, -1889, -1942, - -1946, -2910, -2299, -2300, -2318, -2410, -2466, -2469 - ], - [0, -3690, -3445, -1334, -2512, -2531, -3691, -3967], - [1, 3, 9849], - [0, 0, 9850, 9851, 6], - [ - 0, -23, -40, -86, -3307, -518, -534, -632, -12427, -664, -15022, -699, -15023, -796, -15024, -1168, -15025, - -1174, -15026, -15027, -1184, -1187, -1197, -1199, -1212, -1228, -1232, -1237, -1238, -1243, -1244, -1248, - -15028, -1252, -1262, -1271, -15029, -1344, -15030, -1442, -1496, -1654, -1655, -15031, -4916, -1889, -1953, - -2109, -2111, -2127, -2128, -3572, -3031, -15032, -2210, -4096, -15033, -2460, -15034, -2501, -7752 - ], - [0, -775, -3754, -2162, -3756, -3576, -3575, -3161, -6334, -15035, -15036], - [1, 3, 9853], - [0, 9854, 9855, 9856, 9], - [0, -668, -15037], - [0, -15038, -3664, -1344, -1534, -1942, -2410, -2469], - [0, -687, -712, -714, -5535, -3958, -4000, -5538, -15039, -15040, -1573, -5545, -5550, -2265, -5553, -3770, -3974], - [1, 3, 9858], - [0, 9859, 9860, 9861, 8], - [0, -3776, -15041, -1606, -1967], - [ - 0, -21, -23, -32, -5870, -26, -12490, -34, -12492, -3376, -3400, -3398, -3380, -40, -41, -15042, -3615, -3244, - -190, -15043, -12687, -15044, -15045, -15046, -4749, -4758, -15047, -406, -407, -409, -15048, -410, -3136, - -4961, -3037, -3040, -3052, -3804, -527, -533, -534, -8560, -15049, -4976, -15050, -684, -748, -749, -753, -767, - -824, -932, -933, -940, -951, -958, -962, -967, -969, -970, -976, -1077, -1110, -15051, -1415, -4980, -1417, - -1419, -15052, -1449, -1889, -1939, -1942, -1952, -2006, -2015, -2019, -2029, -15053, -2082, -2205, -2257, - -2278, -15054, -2339, -15055, -13807, -2375, -2376, -2410, -2501, -2503, -2505 - ], - [ - 0, -2631, -15056, -15057, -3095, -3482, -4189, -3161, -2006, -4101, -15058, -3261, -15059, -15060, -15061, - -15062, -4666, -15063, -15064, -15065, -712, -8038, -3999, -4684, -15066, -3160, -3477, -4727, -15067, -2278 - ], - [1, 3, 9863], - [0, 0, 0, 9864, 4], - [0, -9681, -9681, -3264, -7153, -2435], - [1, 3, 9866], - [0, 0, 9867, 9868, 4], - [0, -15068, -1127, -1134, -1136, -1138, -1140, -1144, -1148, -1149, -15069, -1160], - [0, -14214, -14213, -15070, -15071, -3825, -4126, -6409, -12536, -13615, -1437, -8635, -3576, -3162], - [1, 3, 9870], - [0, 9871, 9872, 254, 11], - [0, -1889, -2694, -2279, -4007, -658, -6410], - [ - 0, -2531, -502, -1683, -1816, -2323, -2564, -6842, -1107, -2178, -2444, -461, -2624, -651, -812, -1072, -1460, - -12980, -507, -640, -649, -743, -997, -1401, -1699, -2066, -2177, -2334, -5034, -1047, -3447, -1827, -1958, - -2501, -1977, -1999, -12981, -12955, -367, -4204, -719, -767, -1273, -11121, -10697, -9548, -1864, -2257, - -12982, -15072, -5052, -5673, -12971, -12972, -778, -2745, -1336, -2773, -1354, -12977, -2231, -2269, -2343, - -2410, -10052, -23, -237, -3036, -12967, -8559, -5900, -512, -2740, -724, -769, -1429, -2163, -12978, -2194, - -6375, -12979, -3921, -47, -3872, -10098, -12956, -3269, -3198, -12963, -3040, -534, -635, -12973, -737, -12974, - -1465, -12976, -1930, -8578, -2275, -2594, -12957, -5033, -3044, -3199, -12975, -8562, -6378, -2041, -5977, - -6380, -44, -12960, -15073, -6381, -1851, -6383, -6384, -46, -4020, -13428, -12966, -6633, -6386, -1848, -6387, - -3194, -12951, -3983, -4749, -8523, -3052, -1337, -6388, -1734, -22, -40, -13427, -12968, -771, -1343, -2233, - -11463, -6390, -6391, -5038, -4776, -3732, -7080, -6832, -7026, -1927, -41, -12947, -269, -5085, -3850, -12964, - -12969, -736, -1929, -2082, -32, -13186, -6394, -1934, -4195, -3251, -12948, -12952, -15043, -12965, -14296, - -7165, -7967, -2335, -12949, -15074, -10100, -10101, -7189, -1903, -2791, -12953, -12959, -1643, -3077, -42, - -12950, -8355, -15075, -8863, -12954, -4758, -12961, -12946, -4762, -5323, -4763, -8561, -6484, -38, -7164, - -12962, -1915, -37, -3368, -15076, -3376, -3204, -3379, -3385, -3389, -553 - ], - [1, 3, 9874], - [0, 0, 9875, 9876, 10], - [0, -652, -13239, -1344, -1534, -1889, -2541], - [0, -1889, -775, -3583, -10739], - [1, 3, 9878], - [0, 9879, 9880, 9881, 9], - [0, -674, -3050, -15077, -1630, -1641, -1863, -3240, -12379, -2218], - [ - 0, -86, -3307, -190, -3470, -7040, -3471, -3472, -7041, -7042, -3713, -3037, -5675, -15078, -427, -428, -767, - -932, -965, -999, -1110, -1344, -13856, -1534, -1870, -1942, -2125, -2174, -2410, -2469 - ], - [ - 0, -3998, -1978, -15079, -3167, -15080, -5270, -5271, -15081, -15082, -15083, -6527, -1594, -3162, -13188, - -15084, -15085 - ], - [1, 3, 9883], - [0, 9884, 9885, 9886, 9], - [0, -15086, -15087, -640, -5273, -1610, -1955, -4620, -15088], - [ - 0, -23, -32, -40, -534, -15089, -684, -9994, -778, -932, -933, -12416, -958, -10049, -1041, -3867, -1331, - -15090, -2275, -2335, -14648, -2501, -2502, -2503, -2505 - ], - [ - 0, -3812, -3813, -3814, -3815, -3816, -3817, -856, -15091, -15092, -2637, -4847, -15093, -15094, -15095, -15096, - -15097, -15098, -15099 - ], - [1, 3, 9888], - [0, 94, 9889, 9890, 5], - [0, -23, -32, -44, -932, -933, -940, -958, -962, -967, -969, -970, -1415, -3156, -1942, -2006, -2034], - [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -10738, -9556, -15020, -15100, -12546, -5176], - [1, 3, 9892], - [0, 0, 9893, 9894, 5], - [0, -23, -40, -44, -15101, -12564, -932, -1344, -1534, -2006, -2034, -2410], - [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -13876, -15102, -6711, -15103], - [1, 3, 9896], - [0, 0, 9897, 9898, 11], - [ - 0, -23, -32, -26, -3204, -38, -40, -41, -3326, -350, -351, -407, -409, -518, -703, -796, -932, -940, -12520, - -967, -969, -970, -976, -1344, -1352, -1415, -1534, -1889, -1942, -1967, -2006, -2019, -2127, -4063, -15104, - -3474, -4753, -2281, -2282 - ], - [0, -2006, -13613, -15105, -4108, -2006, -3095, -15106, -3162, -5270, -5271, -15107, -15108, -15109, -15110], - [1, 3, 9900], - [0, 9901, 9902, 9903, 9], - [0, -44, -15111, -15112], - [ - 0, -23, -36, -38, -40, -41, -42, -8280, -50, -15113, -407, -409, -3040, -3052, -427, -428, -440, -528, -651, - -767, -932, -940, -967, -969, -1344, -1415, -1419, -1534, -1942, -2006, -2019, -2125, -2410, -2466 - ], - [0, -15114, -15115, -2006, -3159, -14798], - [1, 3, 9905], - [0, 9906, 9907, 9908, 6], - [0, -656, -15116, -2400], - [ - 0, -2832, -3615, -190, -15117, -9705, -652, -668, -716, -722, -928, -932, -940, -967, -999, -1110, -1344, -1412, - -1534, -1574, -1942, -2125, -7969, -2410, -2411 - ], - [0, -8630, -3671, -856, -3262, -1599, -3437, -4328], - [1, 3, 9910], - [0, 9911, 9912, 9913, 11], - [0, -349, -703, -15118, -3517, -996, -1359, -2040, -2112, -12695, -12518, -15119], - [ - 0, -21, -23, -40, -41, -42, -44, -15042, -10791, -8230, -3615, -190, -12608, -15120, -349, -3562, -15043, -358, - -4754, -13424, -2948, -15121, -4890, -15122, -15123, -15124, -407, -409, -410, -15125, -12940, -15126, -3037, - -3040, -3052, -6633, -440, -5286, -3664, -534, -15127, -8561, -635, -15050, -767, -7272, -7254, -7271, -834, - -932, -15128, -940, -948, -958, -960, -962, -967, -969, -970, -15129, -4756, -1107, -1110, -1344, -1449, -1534, - -1610, -1874, -1942, -2006, -2019, -2029, -2040, -2125, -2257, -2335, -2376, -2378, -2410, -2411, -6412, -2469, - -15130, -2501, -2502, -2503 - ], - [0, -2006, -3476, -14497, -3159], - [1, 3, 9915], - [0, 9916, 9917, 9918, 4], - [0, -15131], - [ - 0, -15132, -15133, -15134, -15135, -350, -351, -410, -4875, -4877, -15136, -15137, -4878, -15138, -15139, -652, - -664, -15140, -15141, -932, -15142, -958, -1449, -11472, -1654, -1942, -2127, -15143, -2184, -2210, -2211, - -2253, -2334, -2410 - ], - [ - 0, -15144, -5072, -5065, -12238, -5073, -14939, -15145, -5495, -3161, -12122, -7651, -3110, -15146, -13039, - -6106, -6107, -5394, -15147, -15148 - ], - [1, 3, 9920], - [0, 0, 9921, 9922, 6], - [0, -23, -5585, -40, -2127, -2128, -2133, -2137, -2339, -15149, -13807, -2416], - [0, -15150, -15151, -7581, -1634, -475, -15152, -2006, -2476, -3755], - [1, 3, 9924], - [0, 9925, 9926, 9927, 4], - [0, -44, -15153, -4817, -809, -1549, -15154, -2355, -2451], - [ - 0, -3341, -26, -38, -40, -42, -86, -3307, -2997, -3326, -350, -15155, -4062, -351, -3561, -15156, -15157, - -15158, -15159, -3164, -3037, -3803, -5011, -6109, -427, -428, -4837, -5589, -3664, -3665, -5590, -441, -14247, - -14244, -4838, -518, -523, -656, -5339, -720, -726, -767, -795, -796, -812, -15160, -928, -932, -934, -940, - -958, -967, -980, -1125, -1344, -1449, -1521, -1534, -1551, -15161, -1662, -1889, -1942, -1955, -15162, -2082, - -2125, -2127, -13263, -4063, -5122, -6483, -15163, -6746, -4753, -15164, -15165, -2140, -14839, -2145, -15166, - -2387, -2410, -2466, -15167, -2469, -2476, -2478, -2483, -5627 - ], - [0, -2476, -3162, -15168], - [1, 3, 9929], - [0, 9930, 9931, 9932, 5], - [0, -5277, -929, -1437], - [ - 0, -23, -40, -9678, -4964, -518, -521, -15169, -757, -767, -784, -795, -7758, -865, -932, -940, -943, -958, - -966, -967, -968, -974, -1753, -1889, -1890, -1891, -15170, -1896, -1903, -15171, -1906, -1916, -15172, -12060, - -1942, -2125, -2127, -2128, -2131, -2133, -8895, -15173, -2137, -8896, -15174, -2140, -5281, -2214, -2281, - -3085, -2302 - ], - [ - 0, -5298, -6656, -15175, -15176, -15177, -7581, -7582, -6527, -15178, -5069, -3162, -12536, -7764, -4634, - -12217, -8883, -1437 - ], - [1, 3, 9934], - [0, 9935, 9936, 9937, 5], - [0, -523, -1435, -1548, -1646, -2153], - [0, -664, -932, -4628, -1650, -1654, -2330], - [ - 0, -4116, -826, -687, -6999, -9043, -12054, -15179, -1334, -11915, -15180, -9041, -5730, -7085, -11642, -9261, - -7084, -15181, -12578 - ], - [1, 3, 9939], - [0, 0, 9940, 9941, 4], - [ - 0, -518, -632, -1168, -15182, -1194, -1208, -1226, -1238, -1243, -1244, -1252, -7832, -15183, -1899, -2281, - -2282, -2550 - ], - [0, -2649, -15184, -15185, -775, -1521, -3162], - [1, 3, 9943], - [0, 0, 0, 9944, 6], - [0, -2006, -4125, -9800, -4633, -2074, -4634], - [1, 24, 9946], - [0, 25, 9947], - 1731196800000, - [1, 3, 9949], - [0, 9950, 9951, 7, 8], - [ - 0, -15186, -4225, -4228, -15187, -15188, -15189, -4230, -15190, -703, -5342, -15191, -1026, -3649, -1289, - -14857, -1618, -10922, -1619, -5397, -15192, -15193, -2590, -4241, -2088, -4242, -2095, -15194, -15195, -15196, - -12978, -4245, -2218, -12508, -2378, -15197, -2429, -15198, -2548, -2564 - ], - [ - 0, -5048, -409, -426, -5334, -4251, -15199, -3040, -3046, -440, -15200, -9602, -9603, -2634, -2006, -2019, - -2427, -2469, -15201 - ], - [1, 3, 9953], - [0, 9954, 0, 9955, 4], - [0, -12260], - [0, -810, -15202, -15203, -6367, -5896, -13618, -15204, -15205, -2653], - [1, 3, 9957], - [0, 9958, 9959, 204, 4], - [0, -4787, -1864], - [0, -2581, -3037, -8523, -1026, -15206, -1107, -2354, -2892, -2410], - [1, 3, 9961], - [0, 0, 0, 9962, 8], - [0, -2410, -3694, -4004, -4043, -1001], - [1, 3, 9964], - [0, 9965, 37, 9966, 4], - [0, -15207, -2387], - [ - 0, -15208, -15209, -15210, -15211, -15212, -2410, -5210, -3215, -6478, -9471, -15213, -8130, -3756, -8386, - -15214, -3445, -3577 - ], - [1, 3, 9968], - [0, 0, 28, 9969, 10], - [0, -12613, -3098, -3100, -3482, -2634, -1713, -2006, -12612, -12449, -3160, -4119], - [1, 3, 9971], - [0, 108, 28, 9972, 8], - [0, -707, -3098, -3100, -4131, -3482, -2634, -1713, -2006, -4132, -4133, -3160, -4119], - [1, 3, 9974], - [0, 9975, 28, 9976, 5], - [0, -2020], - [0, -3098, -7761, -878, -3100, -3482, -2634, -1713, -2006, -3160, -4119, -7764], - [1, 3, 9978], - [0, 266, 28, 9979, 8], - [0, -3098, -3100, -3482, -2634, -1713, -1779, -1959, -2006, -3160, -4119], - [1, 3, 9981], - [0, 266, 28, 9982, 4], - [0, -15215, -3098, -3100, -3482, -2634, -1713, -2006, -7282, -3160, -4119], - [1, 3, 9984], - [0, 0, 28, 9985, 4], - [0, -3098, -3100, -3482, -2634, -1713, -2006, -15216, -10114, -15217, -3160, -4119], - [1, 3, 9987], - [0, 9988, 9989, 9990, 4], - [0, -1616], - [ - 0, -21, -23, -3204, -40, -42, -3748, -4776, -15218, -3330, -3032, -3037, -427, -428, -932, -940, -958, -960, - -965, -15219, -5863, -1772, -2125, -2410, -2469 - ], - [ - 0, -15220, -1874, -795, -1654, -2469, -1415, -1412, -1710, -11410, -15221, -11100, -4004, -9246, -6863, -3634, - -15222 - ], - [1, 3, 9992], - [0, 9993, 9994, 9995, 6], - [0, -15223, -15224, -15225, -15226, -12846, -15227], - [0, -15228, -3617, -3037, -15229, -15230, -15231, -1004, -2125, -2892, -2410, -2469], - [0, -15227, -1004, -3445, -6324, -3690, -9668, -2410, -3214, -5401], - [1, 3, 9997], - [0, 0, 9998, 9999, 11], - [0, -1763, -10652, -2250, -4004, -15232], - [0, -3162, -11321, -7440, -4865], - [1, 3, 10001], - [0, 10002, 10003, 10004, 5], - [0, -5358, -2427, -5334, -1293, -8913, -12766, -2235, -5356, -12767], - [0, -652, -932, -2083, -1942, -1874, -2094, -2410, -3037, -6648, -12750, -12749, -11167, -15233], - [0, -856, -4147, -5670, -3862, -2083, -12745, -2093, -2427], - [1, 3, 10006], - [0, 10007, 10008, 10009, 5], - [0, -15234, -15235, -15236, -15237, -15238, -15239, -15240, -15241, -15242, -15243, -15244, -15245], - [0, -21, -2388, -2410], - [0, -15246, -3163, -12254, -6324, -3214, -11230, -8043, -15247, -3162], - [1, 3, 10011], - [0, 10012, 0, 93, 11], - [0, -2606, -15248, -682, -15249, -1384, -1967, -1993, -2006, -2019, -2029, -2489], - [1, 3, 10014], - [0, 10015, 0, 93, 10], - [0, -2006, -2019, -1967, -2606], - [1, 3, 10017], - [0, 10018, 0, 10019, 8], - [0, -2387, -1387, -232, -1461], - [0, -1386, -3161, -475, -3162, -3994, -3995, -3996, -752, -3997, -3998], - [1, 24, 10021], - [0, 25, 10022], - 1733616000000, - [0, 25, 10024], - 1733961600000, - [1, 24, 10026], - [0, 25, 10027], - 1734220800000, - [1, 3, 10029], - [0, 0, 10030, 10031, 4], - [ - 0, -2200, -2162, -2834, -2387, -932, -2125, -2127, -2149, -2334, -1753, -1889, -1077, -1942, -620, -767, -2281, - -2410, -3563, -1771, -1891, -6326, -518, -726, -3564, -1547, -6327, -945, -15250, -958, -978, -6331, -3267, - -428, -14014, -3573, -427 - ], - [0, -775, -2162, -3576, -8856, -3110, -4101, -3161, -15251, -11229], - [1, 3, 10033], - [0, 10034, 10035, 10036, 4], - [0, -44, -15252, -15253], - [ - 0, -21, -23, -26, -33, -5585, -38, -39, -40, -43, -3035, -3621, -3037, -528, -534, -539, -571, -15254, -15255, - -633, -664, -665, -12469, -767, -932, -1004, -4652, -1449, -1654, -1788, -2105, -2125, -2228, -2335, -2410, - -2490, -2491, -2501, -2503 - ], - [0, -5801, -3162, -3690, -10810, -15256], - [1, 3, 10038], - [0, 0, 10039, 10040, 11], - [0, -652, -664, -726, -756, -928, -932, -1449, -1544, -1654, -2162], - [0, -3214, -3162, -5270, -5271, -8617], - [1, 3, 10042], - [0, 10043, 10044, 10045, 6], - [0, -1992, -712, -809, -15257, -1548, -682, -15258, -1762, -15259, -15260, -15261, -6640, -2055, -15262], - [0, -4977, -2006, -2019, -3040, -3044, -44, -3052, -15263, -409, -407, -410, -2622, -3024], - [0, -2006, -5253, -3159, -2678, -15264, -15265, -3095, -3098, -3160, -3161, -3100, -3162], - [1, 3, 10047], - [0, 10048, 10049, 93, 4], - [0, -2606, -15248, -15266, -2669, -2670, -682, -1384, -1967, -1993, -2006, -2019, -2489, -15249], - [0, -15267, -15268, -15269], - [1, 3, 10051], - [0, 0, 10052, 10053, 4], - [0, -3473, -1942, -2127, -2128, -5384, -2129], - [0, -3100, -11853, -11851], - [1, 3, 10055], - [0, 10056, 10057, 10058, 4], - [0, -6815], - [0, -409, -3040, -3052, -778, -1071, -1344, -2006, -2019, -2049, -2275, -2376, -8973, -2387, -2410, -2501, -3612], - [0, -6750, -15270, -15271, -15272, -3095, -3576, -3162, -2363, -6750, -3823, -15273, -12606], - [1, 3, 10060], - [0, 10061, 10062, 10063, 10], - [0, -4733, -668, -719, -999, -1077, -1948, -1966, -2177, -2426, -2518, -2528, -2542, -2555], - [0, -15274, -3899, -652, -1107, -1110, -6295, -8065, -1971], - [0, -2682, -15275, -15276, -3162, -5270, -15277, -5271], - [1, 3, 10065], - [0, 10066, 0, 10067, 4], - [0, -1867, -11957, -11964, -15278], - [0, -15279, -3444, -5545, -3262, -856, -15280, -15281], - [1, 3, 10069], - [0, 10070, 10071, 10072, 9], - [ - 0, -15282, -15283, -15284, -31, -15285, -3325, -280, -11671, -469, -719, -7731, -15286, -15287, -5934, -1442, - -10584, -1577, -1645, -1729, -15288, -2115, -10624, -2177, -2205, -2379, -2410 - ], - [0, -932, -959, -969, -973, -1077, -1415, -1448, -1607, -2125, -15289], - [0, -3328, -856, -3262, -1599, -9308], - [1, 3, 10074], - [0, 10075, 10076, 10077, 5], - [ - 0, -6869, -8386, -1805, -623, -668, -999, -1526, -1826, -2387, -1548, -2177, -753, -1966, -2501, -679, -1077, - -2357, -719, -1327, -695, -832, -929, -2043, -5977, -2508, -15290, -2433, -15291, -2044, -15292, -3859, -15293, - -4239, -2505, -15294, -1331, -15295, -15296, -2502, -15297, -15298, -15299 - ], - [0, -7982, -7688, -3052, -3861, -13398, -2052, -13186, -11702, -15300, -15301, -14826, -14779], - [0, -2006, -5371, -2501, -856, -7695, -7696, -858], - [1, 3, 10079], - [0, 10080, 10081, 268, 11], - [0, -2387, -1387, -232], - [ - 0, -1763, -1415, -2006, -932, -2125, -2127, -2375, -1077, -1942, -2019, -2410, -3136, -3037, -3040, -3052, - -3986, -3988, -409, -1419, -3267, -407, -428, -2622, -427 - ], - [1, 3, 10083], - [0, 0, 10084, 10085, 4], - [0, -3136, -427, -428, -753, -756, -784, -932, -1415, -1417, -1424, -1449, -15302, -2127, -2375, -2410], - [ - 0, -12841, -3582, -6989, -5389, -10095, -12523, -2410, -3214, -9682, -3095, -11486, -12121, -5065, -3577, -3264, - -4333, -4334, -15303 - ], - [1, 3, 10087], - [0, 10088, 0, 10089, 4], - [0, -703, -2825, -2690, -1967, -44, -2997, -192], - [0, -2006, -3159, -4217, -15304, -4665], - [1, 3, 10091], - [0, 10092, 0, 10093, 6], - [0, -2690, -1967, -44], - [0, -2006, -3159, -4217, -4101], - [1, 3, 10095], - [0, 10096, 0, 10097, 8], - [0, -703, -2029, -2825, -1967, -44, -3140], - [0, -2006, -3159, -4217, -5260], - [1, 3, 10099], - [0, 10100, 0, 95, 5], - [0, -15305, -15306, -823, -1878], - [1, 3, 10102], - [0, 269, 0, 95, 5], - [1, 3, 10104], - [0, 10105, 10106, 10107, 4], - [0, -469, -2177, -1047, -15310, -15311, -12390, -8802, -1395, -3609], - [0, -6997, -2466, -2469, -757, -1026, -2410, -7982, -1772, -10267], - [ - 0, -15312, -15313, -8902, -3184, -3161, -1168, -3214, -3264, -3482, -1599, -3967, -15314, -15315, -3995, -5372, - -3255, -3256, -15316, -15317, -15318 - ], - [1, 3, 10109], - [0, 0, 10110, 10111, 5], - [0, -865, -8559, -866], - [0, -2006, -2634, -9736, -865], - [1, 3, 10113], - [0, 10114, 10115, 10116, 4], - [0, -2624, -2231, -15319, -2168, -1320, -3606], - [ - 0, -2558, -1415, -1623, -932, -1699, -825, -2501, -1077, -1098, -1942, -767, -1978, -2400, -1424, -2410, -23, - -3136, -3037, -769, -2503, -534, -11747, -1772, -2041, -3046, -3048, -7080, -4049, -15320, -2505, -15321, - -12916, -15322, -1421, -2335, -940, -967, -1419, -2506, -3204 - ], - [0, -2006, -3214, -2501, -10675, -6211, -15323, -1540, -12516, -10589, -12517, -11492], - [1, 3, 10118], - [0, 0, 10119, 10120, 11], - [0, -13324, -1123, -15324], - [0, -15325, -1122, -4058, -3694, -2410, -4258, -3161, -3862], - [1, 3, 10122], - [0, 10123, 10124, 10125, 5], - [ - 0, -1816, -3612, -2466, -15326, -623, -668, -999, -865, -1548, -1872, -2177, -680, -1753, -1821, -2501, -679, - -1077, -1376, -1942, -719, -749, -695, -778, -2410, -2061, -15327, -15328, -635, -5676, -726, -2115, -2275, - -15329, -15330, -15331, -15332, -4236, -2041, -15333, -15334, -15335, -3808, -15336, -15337, -4805, -15338, - -15339, -15340, -15341, -1331, -15342, -2504, -2506, -15343, -5319, -1643, -2502, -15344, -15345, -15346, - -14827, -15347, -1067, -2695 - ], - [0, -1415, -2006, -9056, -2019, -3136, -3037, -3044, -15348, -3048, -15349, -15350, -14826], - [ - 0, -15351, -7643, -15352, -7645, -15353, -15354, -11229, -3690, -6120, -3161, -1334, -4055, -1501, -15355, - -13039, -1791, -11437, -1818, -3691, -5728, -7107, -15356, -5372, -3214, -11878, -12303, -12304, -12301, -12299, - -15357, -15358, -3445, -7696, -15359, -1520, -15360, -2006, -3476 - ], - [1, 3, 10127], - [0, 10128, 10129, 10130, 4], - [0, -23, -14825, -656, -755, -15361], - [0, -2303], - [0, -5049, -3839, -2006, -3103, -3690], - [1, 3, 10132], - [0, 10133, 10134, 10135, 4], - [0, -47, -3223], - [0, -15362], - [0, -3264, -9589, -525, -9588, -14188, -9590], - [1, 3, 10137], - [0, 0, 0, 10138, 4], - [0, -5141, -4601, -4602, -3578, -3445, -754], - [1, 3, 10140], - [0, 10141, 10142, 168, 5], - [0, -809, -713, -15363], - [0, -1344, -2469, -2410, -3037, -411, -2581, -86, -5144, -3664, -3307], - [0, 23, 0, 97, 5], - [1, 3, 10145], - [0, 23, 0, 10146, 9], - [ - 0, -3577, -3100, -2808, -5155, -5156, -5157, -5158, -659, -5159, -5160, -5161, -5162, -5163, -5164, -5165, - -5166, -5167, -5168, -2006, -3476, -5169, -5170, -5171, -5172, -2476, -5173, -1940, -5174, -1437, -5175, -475, - -2410, -3214, -5176, -3578, -5177, -5178, -5179, -775, -3264, -5180, -5181, -5182, -5183, -659, -5184, -5185, - -5186, -5187, -5188, -5189, -15364, -15366 - ], - [1, 3, 10148], - [0, 23, 0, 98, 9], - [1, 3, 10150], - [0, 23, 0, 99, 4], - [0, 23, 0, 99, 5], - [1, 3, 10153], - [0, 23, 0, 99, 11], - [1, 3, 10155], - [0, 10156, 10157, 10158, 6], - [ - 0, -3698, -13203, -15369, -15370, -11418, -617, -722, -733, -736, -744, -754, -2762, -930, -1004, -15371, - -15372, -1010, -13106, -5989, -1116, -15373, -1299, -1388, -11121, -1465, -1548, -1641, -1666, -1667, -1676, - -1681, -1744, -1826, -5262, -7223, -2182, -2297, -15374, -2451, -15375, -2531 - ], - [ - 0, -3732, -14740, -4198, -3330, -3733, -4623, -3850, -3044, -14742, -3851, -3037, -8852, -3046, -4204, -999, - -1336, -1722, -2293, -2410, -2469 - ], - [0, -5300, -1959, -15176, -15376, -15377, -5940, -9139, -15378, -6335, -3445, -2512, -1004, -8841], - [1, 3, 10160], - [0, 10161, 0, 271, 9], - [ - 0, -2476, -2362, -753, -928, -1442, -2501, -679, -1582, -778, -1888, -2437, -2481, -2483, -5628, -23, -769, - -1041, -518, -534, -14408, -15379, -2508, -13389, -1908, -15380, -2711, -2505, -748, -1929, -15381, -15382, - -2485, -2718, -1643, -2712, -15383, -731, -15384, -2714, -1814, -2716 - ], - [1, 3, 10163], - [0, 10164, 0, 10165, 6], - [0, -1955, -1600, -7898, -1603, -1601, -2718, -5614], - [0, -856, -3262, -1599, -2476, -2816], - [1, 3, 10167], - [0, 10168, 0, 42, 5], - [0, -2711, -1543, -1582], - [1, 3, 10170], - [0, 10171, 0, 42, 9], - [0, -15380, -1553], - [1, 3, 10173], - [0, 10174, 0, 42, 9], - [0, -15380, -769], - [1, 3, 10176], - [0, 10177, 0, 42, 8], - [0, -1779, -15380], - [1, 3, 10179], - [0, 10180, 0, 42, 5], - [0, -15380, -2718], - [1, 3, 10182], - [0, 10183, 0, 42, 4], - [0, -15380], - [1, 3, 10185], - [0, 10186, 10187, 42, 5], - [0, -668, -929, -1077, -1111, -1125, -1284, -2177, -2362, -4701], - [0, -15385], - [1, 3, 10189], - [0, 10190, 0, 42, 4], - [0, -1548, -2286, -5602, -2287, -15380, -2717, -15383, -2715, -15386, -2713], - [1, 3, 10192], - [0, 10193, 10194, 58, 4], - [0, -15387, -15388, -15389, -15390, -15391], - [ - 0, -664, -1654, -2379, -2501, -21, -23, -5870, -3035, -3136, -3037, -1771, -2503, -3621, -39, -43, -40, -15392, - -15393, -42 - ], - [1, 3, 10196], - [0, 10197, 132, 58, 8], - [0, -15388, -15399, -15400], - [1, 3, 10199], - [0, 10200, 10201, 58, 9], - [0, -1940, -6935, -747, -15401, -15402], - [ - 0, -664, -1654, -932, -753, -2379, -2501, -2376, -21, -778, -2410, -23, -5870, -3035, -3136, -3037, -1637, - -1771, -2503, -3621, -3040, -2275, -15403, -14831, -39, -43, -40, -966, -969, -958, -968, -940, -943, -967, - -974, -42 - ], - [1, 3, 10203], - [0, 10204, 10205, 58, 11], - [0, -2722, -15401, -15402, -15404, -15405, -15406], - [ - 0, -664, -2494, -1654, -932, -4270, -753, -2379, -2501, -1942, -21, -2410, -23, -5870, -3035, -3136, -3037, - -1771, -2503, -3621, -39, -43, -40, -966, -969, -958, -968, -15407, -940, -943, -967, -974, -42 - ], - [1, 3, 10207], - [0, 10208, 132, 58, 11], - [0, -2531, -15388, -15399], - [1, 3, 10210], - [0, 10211, 0, 10212, 6], - [0, -703, -15408], - [0, -15409, -15410, -3162, -6184], - [1, 3, 10214], - [0, 0, 0, 173, 4], - [1, 3, 10216], - [0, 0, 0, 10217, 5], - [0, -475, -3161, -4865, -7243, -3634, -5495], - [1, 3, 10219], - [0, 117, 10220, 10221, 4], - [0, -519, -668, -756, -1788, -2250, -2251], - [0, -5514, -9846, -687, -15411, -7210], - [1, 3, 10223], - [0, 228, 10224, 10225, 5], - [ - 0, -9705, -5686, -4624, -3037, -8890, -11458, -617, -11477, -1168, -12346, -1260, -1412, -15412, -15413, -1452, - -1722, -2125, -2150, -15414, -2173, -2379, -2388, -12348, -2410, -12349, -2819 - ], - [0, -4004, -3634, -11468, -12350, -11467], - [1, 3, 10227], - [0, 0, 10228, 272, 5], - [ - 0, -526, -528, -6104, -558, -6089, -562, -932, -934, -6013, -940, -956, -958, -1059, -1344, -1415, -1534, -1942, - -2125, -2416 - ], - [1, 3, 10230], - [0, 10231, 10232, 10233, 8], - [ - 0, -7226, -15425, -7944, -719, -729, -7949, -1048, -1276, -6343, -7959, -1641, -15426, -2125, -7968, -2359, - -7971, -2425, -7972 - ], - [ - 0, -190, -3035, -4269, -15427, -15428, -3617, -15429, -3713, -3037, -15430, -3628, -15431, -427, -428, -15432, - -664, -665, -749, -932, -940, -964, -966, -967, -999, -1054, -1116, -5487, -1654, -1888, -1942, -7981, -2148, - -2177, -2210, -2211, -7970, -2379, -2410 - ], - [0, -6342, -4865, -7641, -4258, -3100, -9290], - [1, 3, 10235], - [0, 10236, 10237, 273, 4], - [0, -15425, -6343, -7964, -7966, -2125, -2148, -5509], - [0, -664, -665, -1654, -15433], - [1, 3, 10239], - [0, 10240, 10241, 273, 4], - [0, -7226, -1276, -3607, -1641], - [0, -664, -7979, -1004, -1452, -1654, -6347, -2106, -2148], - [1, 3, 10243], - [0, 10244, 10245, 10246, 4], - [0, -1343], - [0, -1445, -1452, -1654, -2198], - [0, -4864, -4865, -2734, -9711, -3634], - [1, 3, 10248], - [0, 0, 10249, 10250, 4], - [0, -526, -527, -15434, -558, -664, -1654], - [0, -656, -6514, -775, -5092], - [1, 3, 10252], - [0, 0, 133, 10253, 4], - [0, -3264, -8034, -3223, -7472, -4846, -6557, -15435], - [1, 3, 10255], - [0, 0, 133, 10256, 5], - [0, -3264, -15436, -8034, -3223, -7472, -4846, -6557, -15435], - [1, 3, 10258], - [0, 0, 133, 10259, 4], - [0, -3264, -8034, -3223, -7472, -4846, -6557], - [1, 3, 10261], - [0, 0, 10262, 10263, 4], - [0, -8096, -14182, -652, -725, -1288, -1292, -1942, -2087, -2094, -2100, -2125, -2322, -2399, -2410, -2427, -2541], - [0, -3264, -8034, -10902, -7472, -4846, -15435, -15437, -6557], - [1, 3, 10265], - [0, 0, 0, 41, 9], - [1, 3, 10267], - [0, 10268, 251, 10269, 4], - [0, -15438], - [0, -712, -5535, -5549, -775], - [1, 3, 10271], - [0, 0, 92, 10272, 5], - [0, -5092, -3264, -12064, -13319, -7205, -1838, -6231], - [1, 3, 10274], - [0, 10275, 88, 10276, 4], - [0, -1016, -15439, -8493], - [0, -3671, -856, -3960, -3262, -1599, -3261, -15440], - [1, 3, 10278], - [0, 0, 10279, 10280, 5], - [0, -1654, -664, -1405], - [0, -775, -12120, -5101, -15441, -3162, -1838, -5572], - [1, 3, 10282], - [0, 0, 10283, 10284, 6], - [0, -756, -1405], - [0, -2265, -4112, -7188, -775, -10310, -3582], - [1, 3, 10286], - [0, 10287, 10288, 10289, 4], - [0, -781], - [0, -652, -928, -932, -1654, -2127, -2232], - [0, -775, -6454, -6684, -1644, -7192, -7193, -15442], - [1, 3, 10291], - [0, 10292, 10293, 10294, 4], - [0, -508], - [0, -932, -940, -967, -1942, -2319], - [0, -5829, -3215, -6747, -687, -3957, -4377, -6836, -15443], - [1, 3, 10296], - [0, 10297, 0, 10298, 8], - [0, -492, -493, -15444, -495, -722, -1122, -1123, -1439, -7679], - [0, -15445, -3445, -1105, -15446], - [1, 3, 10300], - [0, 10301, 0, 10302, 4], - [0, -1439, -1848, -7679], - [0, -15445, -3445, -5800, -8904], - [1, 3, 10304], - [0, 10305, 0, 10306, 4], - [0, -722, -1439, -1645, -1848, -7679, -15447], - [0, -15445, -3445, -7660], - [1, 3, 10308], - [0, 10309, 0, 10310, 4], - [0, -15448, -1371, -1469, -1645], - [0, -15445, -3445, -15449, -15450], - [1, 3, 10312], - [0, 10313, 0, 10314, 5], - [0, -492, -493, -15444, -495, -722, -1122, -1123, -1439, -1848, -7679], - [0, -15445, -3445, -1105], - [1, 3, 10316], - [0, 10317, 0, 10318, 4], - [0, -492, -493, -15444, -495, -1439, -1848, -7679], - [0, -15445, -3445, -7661], - [1, 3, 10320], - [0, 0, 0, 274, 4], - [1, 3, 10322], - [0, 10323, 0, 274, 10], - [0, -1848], - [1, 3, 10325], - [0, 0, 10326, 10327, 9], - [0, -3136, -3037, -756, -1107, -1415, -1442, -15451, -2375, -2388, -2389, -12348, -2410], - [0, -14233, -6747, -3215, -14867, -3162, -15423, -9918, -11321, -1819, -7572, -4865, -15452], - [1, 3, 10329], - [0, 10330, 10331, 10332, 6], - [0, -1610, -1955, -15453, -15454, -15455, -4096, -3546], - [ - 0, -1415, -523, -1344, -1520, -932, -1650, -2125, -2127, -2286, -784, -679, -12844, -1942, -5002, -767, -533, - -23, -722, -1534, -1539, -1771, -632, -5977, -3983, -40, -959, -15456, -15457, -2129, -32, -958, -2143, -2138, - -940, -967, -2131, -15458, -740, -2137 - ], - [0, -4100, -3671, -856, -15459, -3262], - [1, 3, 10334], - [0, 10335, 10336, 10337, 10], - [ - 0, -1805, -668, -2550, -729, -15460, -2757, -910, -1077, -1098, -1582, -15461, -1540, -2187, -2433, -9229, - -15462, -731 - ], - [0, -519, -754, -999, -1344, -932, -2125, -2127, -1534, -15463, -2251, -8177, -15464], - [0, -2757, -4100, -3671, -856, -15459, -3262, -687], - [1, 3, 10339], - [0, 10340, 0, 10341, 5], - [0, -15465], - [0, -5092, -2759, -1437, -3162, -13614], - [1, 3, 10343], - [0, 10344, 10345, 10346, 4], - [0, -14393, -1548, -2029], - [ - 0, -21, -23, -40, -41, -533, -708, -915, -916, -932, -940, -943, -15466, -958, -966, -968, -969, -974, -1415, - -1942, -15467, -1967, -1992, -2006, -2019, -2052 - ], - [0, -915, -1415, -4045, -8911, -1950, -674, -5845, -3634, -5119, -4004], - [1, 3, 10348], - [0, 10349, 0, 10350, 5], - [0, -464, -15468, -615, -15469, -2387, -2536], - [ - 0, -5409, -510, -15470, -15471, -15472, -15473, -8676, -15474, -15475, -7347, -6656, -6527, -1594, -11872, - -3162, -15476, -15477, -1838, -1961, -9591, -15478, -5408 - ], - [1, 3, 10352], - [0, 0, 14, 10353, 9], - [ - 0, -5559, -9692, -3264, -8034, -3223, -15479, -7723, -8472, -3590, -3110, -9681, -5846, -15480, -2544, -15481, - -15482 - ], - [1, 3, 10355], - [0, 10356, 10357, 10358, 5], - [0, -674, -15483, -929, -572, -529, -569, -1077, -15484, -1610, -1646, -14584], - [0, -526, -539, -549, -566, -708, -15485, -932, -1654, -1788], - [ - 0, -1446, -3690, -10855, -856, -6948, -15486, -6950, -15487, -6949, -15488, -6951, -15489, -11798, -15490, - -6952, -15491, -15492 - ], - [1, 3, 10360], - [0, 0, 55, 10361, 4], - [0, -932, -5208, -3784, -3862, -9420, -11315, -8199, -4100, -856], - [1, 3, 10363], - [0, 0, 10364, 10365, 4], - [0, -1116, -2251, -2322], - [0, -856, -10858, -15493, -10925, -15494, -15411, -3966], - [1, 3, 10367], - [0, 87, 275, 10368, 4], - [0, -9590, -9589, -9588, -2444, -3590, -3264, -1391, -9682], - [1, 3, 10370], - [0, 87, 275, 10371, 6], - [0, -9590, -9589, -9588, -2444, -3590, -3264, -775, -3585, -1838], - [1, 3, 10373], - [0, 10374, 10375, 10376, 4], - [0, -5334, -2742, -9596, -1968, -2235, -9584, -9585], - [0, -3705, -3037, -652, -1459, -1839, -1942, -2094, -2100, -2399, -2410, -2541], - [0, -9590, -9589, -9588, -2444, -3590, -3264, -1839, -3272, -10919], - [1, 3, 10378], - [0, 87, 92, 10379, 5], - [0, -9590, -9589, -9588, -2444, -3590, -3264, -3830, -9682, -15495, -15496, -15497], - [1, 3, 10381], - [0, 10382, 10383, 10384, 8], - [0, -2595], - [0, -985, -1637, -1942, -2320, -2322], - [0, -3272, -3264, -1838, -6231], - [1, 3, 10386], - [0, 0, 10387, 10388, 5], - [0, -3037, -652, -2586, -1288, -1292, -1729, -1942, -2094, -2100, -2399, -2410, -2541], - [0, -3264, -9703, -6818, -6557, -9682, -15498, -5387, -5388], - [1, 3, 10390], - [0, 10391, 0, 10392, 5], - [0, -812], - [ - 0, -1334, -1342, -1501, -1004, -1030, -12868, -11998, -15499, -15500, -15501, -15502, -12868, -11994, -15503, - -3445 - ], - [1, 3, 10394], - [0, 0, 130, 10395, 4], - [0, -775, -3209, -15504, -1889], - [1, 3, 10397], - [0, 276, 10398, 277, 4], - [0, -9848, -2776], - [1, 3, 10400], - [0, 276, 10401, 277, 6], - [0, -2774, -15505, -9848, -2776], - [1, 3, 10403], - [0, 0, 0, 10404, 4], - [0, -525, -2006, -1368, -3161, -4729, -9850, -3264, -9851, -3844, -5092, -4865, -2127, -15506, -15507, -5272], - [1, 3, 10406], - [0, 0, 10407, 10408, 4], - [0, -824, -1168, -784, -1889, -1243, -15508, -1238, -1270, -15509], - [0, -775, -3576, -3577, -3161, -3578, -15510], - [1, 3, 10410], - [0, 10411, 10412, 10413, 4], - [0, -1666, -2161], - [0, -510, -1127, -1138, -1145, -1148, -1162, -1446, -1548, -2105], - [0, -620, -15511, -15512, -856, -1446, -7674, -4101], - [1, 3, 10415], - [0, 0, 10416, 10417, 6], - [0, -9705, -3037, -11458, -1412, -1452, -2173, -2388, -12348, -2410, -12349], - [0, -4004, -3634, -11468, -12350, -11467, -1412], - [1, 3, 10419], - [0, 10420, 10421, 10422, 5], - [0, -10041, -13980, -3740, -1427, -1950, -2375], - [ - 0, -15513, -4, -5, -6, -7, -8, -9, -10, -12, -13, -14, -23, -40, -86, -9404, -3244, -190, -10041, -4020, -237, - -3048, -3136, -3037, -3199, -427, -428, -15514, -533, -668, -10525, -740, -767, -4805, -932, -940, -958, -959, - -960, -967, -999, -1077, -15515, -1107, -1110, -1344, -1415, -1419, -1449, -1868, -1942, -2125, -2153, -2177, - -2387, -2392, -2400, -2410, -2411, -2567 - ], - [0, -1415, -2410, -475, -3634], - [1, 3, 10424], - [0, 10425, 10426, 10427, 5], - [0, -2699, -656, -668, -679, -719, -729, -6798, -1805, -1906, -1907, -2213, -2218, -12979, -2433, -2531], - [ - 0, -23, -162, -3778, -163, -237, -350, -351, -15516, -367, -7043, -406, -407, -409, -410, -5039, -3136, -8334, - -3037, -3040, -3052, -9947, -4764, -4204, -427, -428, -440, -15517, -4734, -518, -767, -932, -940, -943, -958, - -965, -968, -969, -1415, -1428, -1521, -1753, -1771, -1889, -14336, -15518, -1942, -2006, -2019, -2029, -2125, - -2127, -4063, -2132, -6483, -2162, -2278, -2318, -2410, -2466, -15519 - ], - [0, -3634, -1415, -3100, -7566, -812, -15520], - [1, 3, 10429], - [0, 10430, 10431, 10432, 8], - [0, -1403, -15521], - [0, -15522, -15523, -1202, -1276, -1654, -3261], - [ - 0, -9198, -6515, -812, -3671, -856, -6899, -3960, -3262, -1276, -4187, -8453, -4676, -15524, -15525, -1548, - -5545, -1599, -3110, -3261, -15440 - ], - [1, 3, 10434], - [0, 10435, 10436, 10437, 10], - [0, -15526], - [0, -1586, -1729, -2337], - [0, -1586, -15527, -9409, -3844, -3445], - [1, 3, 10439], - [0, 10440, 10441, 10442, 8], - [0, -10869], - [0, -3037, -652, -1638, -1942, -2094, -2100, -2399, -2410, -2541], - [0, -1638, -15528, -15529, -6818, -7724, -15530, -3264, -4329, -1599, -2427], - [1, 3, 10444], - [0, 0, 0, 10445, 4], - [0, -1638, -2444, -3590, -3264, -6422], - [1, 3, 10447], - [0, 0, 0, 10448, 10], - [0, -1638, -2444, -3590, -3264, -6818, -6557], - [1, 3, 10450], - [0, 0, 10451, 10452, 4], - [0, -6874, -1127, -1452, -1666, -2525, -2416, -10264, -1154, -15531, -1149, -1136, -1144, -1148], - [0, -2442, -3162, -9918, -15423, -6659, -14867, -4865, -9318, -15532, -15533], - [1, 3, 10454], - [0, 10455, 10456, 10457, 4], - [0, -7177], - [0, -1415, -932, -2375, -1942, -2410, -3136, -3037, -7178, -940, -428, -427], - [0, -15534, -15535, -775], - [1, 3, 10459], - [0, 10460, 92, 10461, 6], - [0, -4231, -2738, -2739, -10909, -15536, -15537, -15538], - [0, -1838, -3264, -7472, -4846, -8034, -3223], - [1, 3, 10463], - [0, 0, 0, 10464, 4], - [0, -1889, -9300, -3756, -9339, -2006, -775, -15539], - [1, 3, 10466], - [0, 10467, 130, 10468, 5], - [0, -2773], - [0, -775, -3209, -1889], - [1, 3, 10470], - [0, 0, 10471, 10472, 9], - [ - 0, -23, -40, -15540, -4690, -15541, -932, -1412, -1471, -1475, -1476, -1479, -1481, -1486, -1491, -11943, -1970, - -1978, -2127, -2128, -3571, -2139, -2140, -10312, -4881 - ], - [0, -9407, -1978, -1874, -4864, -15542, -15543, -4902, -3634, -11468, -1970, -11467, -4881, -15221], - [1, 3, 10474], - [0, 10475, 10476, 10477, 9], - [0, -567, -1275, -1967], - [0, -633, -634, -668, -824, -1168, -1179, -1205, -1243, -15544, -1262, -1266, -1632, -15545, -2006, -2019, -2463], - [0, -2006, -3159, -2319, -15546, -2363, -15547, -1275, -3162], - [1, 3, 10479], - [0, 10480, 10481, 10482, 8], - [ - 0, -15548, -303, -15549, -304, -4360, -6448, -469, -470, -668, -680, -728, -812, -1125, -1353, -1442, -5265, - -1641, -1789, -1790, -1816, -1966, -2177, -2205, -2223, -3610, -4002, -7982, -15550, -2426, -5721 - ], - [ - 0, -2581, -86, -3307, -4368, -15551, -11765, -15552, -350, -4062, -351, -3561, -3198, -3660, -3713, -3735, - -3199, -15553, -15554, -3664, -13376, -1344, -1498, -1722, -4362, -5263, -1942, -2127, -6483, -2392, -2400, - -2410, -2469 - ], - [0, -3690, -489, -11768, -856, -11148, -11773, -1789, -3438, -11772, -11769, -11771, -11770, -11410, -4328, -4847], - [1, 3, 10484], - [0, 0, 10485, 10486, 11], - [ - 0, -5295, -409, -3136, -3040, -3052, -13529, -427, -428, -757, -825, -932, -940, -967, -969, -970, -1103, - -15555, -1415, -15556, -1637, -15302, -15557, -1942, -2006, -2019, -13531, -2214, -2375, -2410, -15558 - ], - [0, -2006, -12474, -3159, -8597, -13241, -15559, -712, -3577, -15560, -15273, -2012, -4666, -11876, -4665, -15561], - [1, 3, 10488], - [0, 10489, 10490, 10491, 4], - [0, -2594], - [0, -40, -41, -3040, -915, -916, -1415, -1992, -2052, -2127, -2128, -2131, -2137], - [0, -2442, -3162, -9918, -15423, -6659, -14867, -4865, -15562, -15563, -9318, -6106, -4000], - [1, 3, 10493], - [0, 0, 10494, 10495, 4], - [ - 0, -86, -3037, -3040, -3052, -3075, -427, -9700, -932, -940, -9106, -958, -965, -967, -968, -969, -1344, -1415, - -1534, -1637, -1942, -1952, -2006, -2019, -2044, -2046 - ], - [0, -2006, -9843, -3122, -2043, -2044, -15564, -2634], - [1, 3, 10497], - [0, 0, 10498, 10499, 4], - [ - 0, -1788, -1449, -1471, -1654, -2006, -2074, -2210, -507, -932, -1548, -1940, -2334, -4258, -708, -753, -1958, - -2501, -589, -2019, -15565, -2410, -23, -3037, -1482, -2040, -3040, -534, -11472, -1492, -50, -1025, -3052, -40, - -3062, -969, -2052, -15566, -406, -1483, -1475, -1487, -1479, -14780, -428, -5030 - ], - [0, -5922, -6439, -2006, -7378, -15567, -821], - [1, 3, 10501], - [0, 0, 0, 10502, 4], - [0, -2034, -3162, -5270, -5271, -7084, -6656, -14311, -15176, -15568, -6528, -4100], - [1, 3, 10504], - [0, 0, 10505, 10506, 4], - [0, -44, -3040, -3141, -2006, -2034, -2410], - [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -15071, -13615, -15569, -6527, -15570], - [1, 3, 10508], - [0, 94, 10509, 10510, 5], - [0, -528, -932, -933, -940, -958, -962, -967, -969, -1942, -15571], - [ - 0, -2034, -3159, -12567, -2006, -3162, -5270, -3160, -1959, -15572, -15573, -15574, -10677, -15575, -15576, - -6716, -5176 - ], - [1, 3, 10512], - [0, 10513, 10514, 10515, 4], - [0, -798, -15577, -799, -801, -1967], - [ - 0, -15578, -4757, -6263, -4754, -15579, -528, -533, -14782, -807, -932, -943, -958, -966, -968, -969, -15580, - -974, -1344, -1415, -1534, -1942, -1952, -2006, -2034, -15571, -2052 - ], - [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -9472, -6581, -14497, -797], - [1, 3, 10517], - [0, 10518, 10519, 10520, 6], - [0, -997], - [0, -3157, -932, -12566], - [0, -2034, -3159, -12567, -2006, -3163, -3162, -5270, -5271, -3160, -10028, -15581, -15582], - [1, 3, 10522], - [0, 10523, 10524, 10525, 8], - [0, -2798, -2489], - [ - 0, -15583, -21, -23, -3204, -39, -40, -6056, -41, -161, -163, -2997, -350, -351, -3561, -409, -2622, -3040, - -528, -533, -767, -932, -940, -956, -959, -968, -969, -970, -1059, -11942, -1103, -15584, -1415, -15302, -1942, - -1952, -2006, -2019, -15585, -2052, -2125, -2127, -2128, -2140, -2410 - ], - [0, -2006, -2804, -12051, -3095, -7582, -3821, -3822], - [1, 3, 10527], - [0, 10528, 10529, 10530, 8], - [0, -15586, -2730, -682], - [ - 0, -15587, -5295, -406, -407, -409, -15588, -3059, -3037, -3040, -3052, -440, -3899, -795, -1449, -2910, -2006, - -2019, -2214, -2892, -2387, -2410, -2469 - ], - [0, -2006, -3576, -4126, -3162, -12129], - [1, 3, 10532], - [0, 10533, 10534, 10535, 10], - [0, -2387, -15589], - [0, -15590, -5295, -2214, -2006, -2019], - [0, -2006, -5553, -775], - [1, 3, 10537], - [0, 0, 10538, 10539, 4], - [0, -509, -1654, -1939], - [0, -775, -712, -15559, -5554], - [1, 3, 10541], - [0, 10542, 0, 77, 5], - [0, -2869, -424, -15591, -15592, -15593, -15594, -15595, -15596, -15597, -15598, -15599, -15600, -15601], - [1, 3, 10544], - [0, 0, 10545, 272, 5], - [ - 0, -23, -40, -42, -86, -3307, -3326, -15155, -3561, -3266, -3136, -3037, -427, -428, -441, -7465, -528, -533, - -8349, -726, -767, -932, -943, -958, -966, -968, -980, -1103, -1344, -1392, -1415, -1419, -1534, -2125, -2127, - -2142, -2410, -2478 - ], - [1, 3, 10547], - [0, 0, 10548, 259, 8], - [ - 0, -3800, -684, -748, -778, -1041, -3544, -1643, -1942, -2116, -2162, -2163, -2376, -2410, -2437, -2501, -2503, - -2508 - ], - [1, 3, 10550], - [0, 33, 10551, 10552, 4], - [0, -5295, -2214, -407, -409, -15590, -1419], - [0, -2006, -9080, -15602, -15603, -15604], - [1, 3, 10554], - [0, 10555, 10556, 10557, 6], - [0, -15605, -2387], - [0, -5295, -2214, -15590, -15606, -916, -2006, -2019], - [0, -15607, -2006, -15608], - [1, 3, 10559], - [0, 10560, 10561, 10562, 5], - [0, -753, -44, -15609, -15610], - [ - 0, -1521, -2299, -2501, -778, -2410, -23, -1522, -2503, -534, -2275, -15611, -2508, -40, -2301, -2505, -42, -38, - -535, -3362, -26, -36, -35 - ], - [0, -4000, -812, -3162], - [1, 3, 10564], - [0, 0, 10565, 10566, 10], - [0, -3037, -4371, -2447, -2466], - [0, -2466, -3161, -8113], - [1, 3, 10568], - [0, 0, 10569, 10570, 5], - [ - 0, -527, -534, -559, -767, -778, -1041, -1743, -2680, -2163, -15612, -2275, -2476, -2481, -2483, -2484, -2485, - -2501, -2505 - ], - [0, -11853, -11851, -15613, -15614, -15615, -15616, -15617, -3100, -15618], - [1, 3, 10572], - [0, 10573, 0, 271, 8], - [0, -653, -914, -2710, -15380, -2433, -2719, -3546], - [1, 3, 10575], - [0, 0, 10576, 10577, 5], - [ - 0, -21, -23, -26, -36, -40, -42, -3330, -15619, -3136, -3037, -6630, -427, -428, -527, -533, -535, -932, -934, - -940, -958, -967, -1415, -5133, -1942, -2174, -2410 - ], - [0, -1415, -1001, -4116, -510, -5867, -1961, -4868, -3634, -5119], - [1, 3, 10579], - [0, 10580, 10581, 10582, 5], - [0, -11458, -2173], - [0, -9705, -11477, -1168, -12346, -1412, -1888, -15414, -2410], - [0, -3634, -11468, -12350, -11467, -5769], - [1, 3, 10584], - [0, 10585, 10586, 10587, 4], - [0, -464, -668, -824, -1107, -1371, -1646, -1980, -2105, -2125, -2177, -2536], - [ - 0, -5682, -3711, -15620, -3036, -11697, -9705, -8566, -5686, -3037, -12344, -8852, -8890, -11458, -3199, -11343, - -11477, -1168, -12346, -1412, -2150, -2173, -2410 - ], - [0, -475, -4004, -3634, -1970, -11468, -12350, -11467, -2173], - [1, 3, 10589], - [0, 117, 55, 10590, 4], - [ - 0, -2265, -7472, -4112, -6730, -13460, -6787, -13461, -13462, -13463, -13465, -5514, -5559, -5563, -687, -3958, - -3974, -4000, -13466, -13467, -13468, -13469, -13470 - ], - [1, 3, 10592], - [0, 169, 10593, 10594, 5], - [0, -3037, -928, -15621, -1496, -15622, -2410, -2447], - [0, -15623, -9669, -3161, -9670, -8615, -1334, -3690], - [1, 3, 10596], - [0, 10597, 0, 10598, 8], - [0, -1460, -15624, -1442, -3241], - [0, -15279, -15625, -727, -856, -15280, -15281], - [1, 3, 10600], - [0, 0, 10601, 278, 6], - [0, -664, -3035, -3037, -15626], - [1, 3, 10603], - [0, 10604, 0, 95, 10], - [0, -15631, -15632, -823, -1878], - [1, 3, 10606], - [0, 39, 0, 10607, 5], - [0, -2006, -3159, -4217, -3694], - [0, 23, 0, 98, 4], - [0, 23, 0, 99, 6], - [1, 3, 10611], - [0, 10612, 10613, 10614, 4], - [0, -15633, -10576], - [0, -5859, -633, -13719, -2322], - [0, -7581, -7582, -7580, -7762, -15634, -5177, -15635, -3100, -633], - [1, 3, 10616], - [0, 10617, 10618, 10619, 4], - [ - 0, -15636, -15637, -15638, -15639, -15640, -640, -668, -671, -865, -866, -997, -1026, -14636, -1098, -1116, - -1353, -1376, -7408, -1460, -15641, -15642, -5895, -1958, -2177, -2193, -2331, -2410, -15643, -15644, -15645 - ], - [0, -2476, -15646, -15647, -15648, -15649], - [0, -2830, -15650, -3161], - [1, 3, 10621], - [0, 10622, 10623, 10624, 9], - [0, -44, -15651], - [ - 0, -1415, -2162, -1344, -2006, -915, -932, -2501, -1942, -767, -2019, -21, -778, -2095, -2410, -23, -1534, - -1771, -2163, -2503, -3040, -534, -2275, -15652, -15653, -4227, -15654, -4749, -40, -13427, -41, -969, -358, - -15655, -940, -962, -967, -1419, -42, -4757, -15656, -4758, -428, -4762, -38, -427, -12712, -15045 - ], - [0, -2006, -3095, -15657, -13652, -15658, -3162, -15106, -2410, -15659, -15660], - [1, 3, 10626], - [0, 10627, 10628, 7, 4], - [0, -668, -695, -719, -1610, -6294, -2177, -15661], - [0, -3802, -11346, -3037, -3199, -15662], - [1, 3, 10630], - [0, 10631, 10632, 7, 4], - [ - 0, -15663, -2564, -703, -834, -15664, -2303, -2466, -461, -623, -812, -4245, -5358, -743, -783, -5036, -2083, - -2177, -2814, -680, -5034, -928, -15665, -15666, -1442, -3447, -1827, -1966, -15667, -15668, -3535, -3027, - -15669, -1864, -10430, -2422, -15670, -15671, -5113, -2654, -3545, -15672, -1321, -1588, -2551, -989, -15673, - -8294, -3649, -14335, -15674, -2429, -15675, -15676, -15677, -8882, -4785, -3190, -4288, -15678, -6332, -3459, - -15679, -15680 - ], - [ - 0, -9740, -2162, -2127, -2426, -2469, -674, -2427, -15681, -15206, -15682, -2410, -5334, -1002, -2089, -3198, - -13046, -12145, -3199, -15683, -6327, -3660, -3735, -5204, -1736, -3983, -8523, -5114, -9602, -15684, -3712, - -9146, -2084, -15685, -15686 - ], - [1, 3, 10634], - [0, 10635, 0, 7, 5], - [0, -710, -15687, -1813, -2416], - [1, 3, 10637], - [0, 10638, 10639, 10640, 10], - [0, -714, -1077, -1376], - [0, -932, -959, -1415], - [0, -3871, -3262, -3976, -687, -11487], - [1, 3, 10642], - [0, 0, 10643, 10644, 10], - [ - 0, -350, -351, -668, -910, -932, -940, -958, -15688, -6099, -1343, -1344, -1534, -1654, -3446, -1942, -2125, - -2127, -2131, -15689, -2234, -2323, -10988 - ], - [0, -3108, -3110, -5889], - [1, 3, 10646], - [0, 0, 10647, 7, 8], - [0, -427, -428, -932, -935, -940, -948, -958, -962, -967, -969, -970, -1344, -1534, -1942, -2006, -2410], - [1, 3, 10649], - [0, 10650, 10651, 10652, 4], - [0, -15690], - [0, -3621, -823, -1654], - [0, -3578, -4004, -4043, -15691, -1654, -3161], - [1, 3, 10654], - [0, 0, 10655, 10656, 4], - [ - 0, -5295, -3136, -427, -428, -15692, -10529, -13751, -712, -932, -940, -967, -1107, -1415, -1942, -2127, -2140, - -2142, -2214, -2355, -2375, -2379, -2387, -2410 - ], - [ - 0, -712, -3215, -5845, -13241, -15559, -5549, -12065, -15693, -12067, -1510, -15694, -12434, -775, -15695, - -4665, -15696, -15697, -1644, -15698 - ], - [1, 3, 10658], - [0, 106, 10659, 280, 6], - [ - 0, -15587, -86, -3307, -2845, -4646, -3617, -3136, -3037, -427, -428, -932, -940, -1344, -1415, -1942, -2091, - -2375, -2410 - ], - [0, 23, 0, 97, 8], - [1, 3, 10662], - [0, 10663, 10664, 10665, 8], - [ - 0, -6332, -6326, -6329, -15702, -5334, -3660, -4251, -2854, -15703, -2586, -1288, -1292, -1294, -1349, -1442, - -14511, -1588, -15704, -10749, -5348, -2918, -2083, -4262, -5353, -2422, -2427, -2429, -5358 - ], - [0, -3983, -3037, -3664, -2834, -15705, -2469], - [0, -3671, -856, -2834, -15706, -15707], - [1, 3, 10667], - [0, 10668, 10669, 280, 4], - [0, -1004, -2080], - [ - 0, -15587, -86, -3307, -2841, -2845, -4646, -3617, -3136, -3037, -427, -428, -932, -940, -1344, -1415, -1942, - -2091, -2375, -2410 - ], - [1, 3, 10671], - [0, 10672, 10673, 10674, 4], - [0, -2080, -2379], - [0, -86, -3307, -4646, -3617, -3136, -3037, -427, -428, -668, -932, -940, -1344, -1415, -1942, -2091, -2375, -2410], - [0, -15699, -3967, -2410, -15700, -15701, -3161, -11894, -3445, -3482], - [1, 3, 10676], - [0, 23, 0, 97, 4], - [0, 23, 0, 98, 11], - [1, 3, 10679], - [0, 262, 10680, 10681, 4], - [0, -262, -4838], - [0, -2476, -2486, -4634, -2851, -15708, -15709, -12704, -3690, -7864, -9069, -2410, -3018, -8038, -9594], - [1, 3, 10683], - [0, 10684, 10685, 151, 5], - [0, -15710, -192, -15711], - [ - 0, -41, -15712, -15713, -407, -409, -410, -3040, -3052, -440, -703, -2006, -2019, -2042, -2044, -2113, -3820, - -15714, -727 - ], - [1, 3, 10687], - [0, 10688, 10689, 10690, 8], - [0, -2856], - [0, -2834, -999, -15715], - [0, -15707, -15716, -856, -15717, -4245, -15718, -15706], - [0, 0, 0, 10692, 5], - [0, -15318, -15719, -3445], - [1, 3, 10694], - [0, 10695, 10696, 10697, 9], - [0, -15717], - [0, -4251, -4231, -9602, -2090, -2098, -2101, -4245, -2427, -5358, -15715], - [0, -15716, -856, -15717, -4245, -15718], - [1, 3, 10699], - [0, 10700, 10701, 10702, 8], - [0, -14800, -14801, -820, -1002, -2400], - [0, -15720, -14804, -3311, -3312, -652, -14806, -2410], - [0, -14808, -4187, -2444, -3966, -4865, -3445, -3100, -507, -4004, -664, -14809, -14810], - [1, 3, 10704], - [0, 0, 10705, 10706, 5], - [0, -600, -633, -756, -1405, -1654, -2198, -2416], - [0, -8472, -2544, -7723, -14242, -3962, -7107, -5559, -6422, -7724, -2451, -3264, -775, -6138, -14672], - [1, 3, 10708], - [0, 10709, 0, 10710, 5], - [0, -15721], - [ - 0, -3843, -3118, -14066, -2006, -3100, -3577, -3445, -4725, -3578, -4865, -3214, -3756, -2410, -3966, -3967, - -3482, -15722, -5260 - ], - [1, 3, 10712], - [0, 10713, 0, 73, 9], - [0, -2984, -2885, -5766, -2400], - [1, 3, 10715], - [0, 269, 0, 95, 10], - [1, 3, 10717], - [0, 10718, 0, 77, 4], - [0, -424, -2704, -2826, -2863, -2706, -2707, -2902, -2903, -2940, -2708], - [1, 3, 10720], - [0, 0, 0, 10721, 4], - [ - 0, -3843, -3118, -14066, -2006, -3100, -3577, -3445, -4725, -3578, -4865, -3214, -3756, -2410, -3966, -3967, - -3482, -15724, -5260 - ], - [0, 23, 0, 97, 6], - [1, 3, 10724], - [0, 10725, 0, 246, 4], - [ - 0, -2531, -1107, -2624, -2550, -2177, -1961, -578, -719, -1384, -2166, -481, -533, -12547, -1624, -2516, -12548, - -1950, -2041, -458, -12550, -11463, -12551, -9870, -2082, -12552, -1421, -12553, -12554, -12555, -12556, -12557, - -12559, -12560, -15725 - ], - [1, 3, 10727], - [0, 10728, 0, 77, 10], - [ - 0, -2862, -424, -2976, -2872, -2705, -2853, -2850, -2827, -2848, -2849, -2828, -15726, -15727, -2865, -2703, - -2975, -15728, -2846, -15729, -2847, -2842, -15730, -15731, -2868, -2996, -2866 - ], - [1, 3, 10730], - [0, 10731, 10732, 268, 5], - [0, -2387, -2686], - [ - 0, -2006, -932, -2125, -2127, -1942, -2019, -2410, -3037, -3040, -2043, -3052, -2044, -15732, -3986, -3988, - -3075, -3267, -428, -427 - ], - [1, 3, 10734], - [0, 10735, 10736, 10737, 9], - [0, -15733, -15734, -15735, -617, -1004, -15736, -1338, -2520, -2558], - [0, -15737, -15738, -15739, -15740, -15741, -3617, -4203, -1683, -2293], - [0, -15742, -7661, -15743, -15744, -15745, -3445], - [1, 3, 10739], - [0, 23, 0, 98, 5], - [1, 3, 10741], - [0, 0, 10742, 10743, 4], - [0, -509, -1654], - [0, -2873, -5514, -712, -5535, -668, -775, -15559, -5549, -15746], - [1, 3, 10745], - [0, 10746, 10747, 10748, 10], - [0, -4843], - [0, -3037, -3040, -3052, -440, -2634, -2006, -2019, -2466, -6859, -2469, -4842], - [0, -3690, -856, -9736, -1713, -3438, -4847], - [1, 3, 10750], - [0, 10751, 0, 10752, 5], - [0, -1439, -7679, -722, -15447], - [0, -15318, -15719, -3445, -7660], - [1, 3, 10754], - [0, 0, 10755, 10756, 4], - [0, -8096, -652, -1942, -2094, -2100, -2125, -2322, -2399, -2410, -2541], - [0, -775, -3264, -5092, -3578, -6184, -13270, -5899, -9299], - [1, 3, 10758], - [0, 10759, 10760, 285, 10], - [0, -1313, -2564], - [ - 0, -15747, -86, -3307, -4835, -15748, -3036, -3037, -427, -428, -4627, -928, -932, -934, -940, -15749, -948, - -958, -967, -1107, -1344, -1534, -1942, -15750, -2125, -2383, -2392, -2410 - ], - [1, 3, 10762], - [0, 10763, 10764, 285, 4], - [0, -679, -2877], - [ - 0, -502, -2392, -1107, -1344, -932, -2125, -928, -1942, -2410, -3036, -3037, -1534, -15748, -2383, -86, -15750, - -958, -4627, -940, -967, -428, -934, -3307, -427, -948, -15749 - ], - [1, 3, 10766], - [0, 10767, 10768, 10769, 6], - [ - 0, -2531, -469, -2392, -5193, -1867, -2446, -649, -764, -15753, -2426, -680, -1646, -2694, -823, -1043, -11121, - -1878, -15754, -1354, -1340, -11964, -1101, -1997, -14221, -15755, -14032, -1851, -2160, -15756, -15757, -8274 - ], - [ - 0, -2193, -2125, -2127, -928, -4204, -749, -767, -3738, -15758, -5686, -5363, -2014, -11433, -2132, -4049, - -15759, -15760, -15761, -15762 - ], - [0, -15354, -3690, -7643, -15763, -11229, -3161, -15764, -11878, -3214, -9736, -3966, -2879, -2006, -15359, -2410], - [1, 24, 10771], - [0, 25, 10772], - 1743292800000, - [1, 3, 10774], - [0, 10775, 10776, 10777, 9], - [0, -15765, -15766, -15767, -15768, -15769], - [ - 0, -40, -15770, -15771, -15772, -3326, -350, -351, -3561, -3048, -3037, -15773, -427, -12837, -428, -518, -534, - -558, -726, -753, -756, -4809, -15774, -932, -958, -960, -5863, -1077, -1103, -3566, -15775, -15776, -1344, - -15777, -15778, -1771, -15779, -1891, -15780, -15781, -15782, -2127, -8895, -4753, -15783, -8896, -2140, -2142, - -2144, -2162, -5896, -15784, -5013, -2387, -2388, -15785, -2410, -8564 - ], - [ - 0, -12613, -15786, -12449, -12898, -2363, -11321, -3162, -2006, -2476, -475, -1940, -13615, -13616, -13613, - -15787 - ], - [1, 3, 10779], - [0, 0, 10780, 10781, 4], - [0, -50, -2410, -2466, -4840, -6859], - [ - 0, -15415, -15416, -15788, -15417, -15418, -11853, -10655, -15419, -6711, -15420, -15421, -4126, -15071, -2006, - -15422, -475, -2476, -5270, -3162, -11321, -15423, -15424 - ], - [1, 3, 10783], - [0, 10784, 10785, 10786, 5], - [0, -15789], - [0, -15790, -3136, -3037, -664, -12469, -1002], - [0, -15791, -6121, -460, -15792, -15793, -15794, -15795], - [1, 3, 10788], - [0, 10789, 10790, 7, 4], - [0, -15796, -3748, -948, -8339, -965, -968, -969, -1047, -1110, -15797, -2411], - [0, -3037, -10557, -932, -1344, -3781, -1498, -15798, -1772, -2399, -2410], - [1, 3, 10792], - [0, 10793, 0, 73, 4], - [0, -1456], - [1, 3, 10795], - [0, 10796, 10797, 286, 4], - [0, -4007, -658, -3190, -1548, -1549, -15799], - [0, -15800, -3037, -1278, -2410, -15801, -15802, -15803], - [1, 3, 10799], - [0, 10800, 0, 7, 6], - [0, -4231], - [1, 3, 10802], - [0, 0, 10803, 7, 8], - [0, -2386, -932, -2469, -1942, -2410, -3037, -965, -3664, -978, -940, -428, -427], - [1, 3, 10805], - [0, 10806, 10807, 10808, 9], - [0, -668, -1574, -1948, -2303], - [0, -1127, -1132, -1134, -1163, -2541], - [0, -9219, -3839, -9472, -6523, -6527, -7175, -1644], - [1, 3, 10810], - [0, 10811, 10812, 286, 5], - [0, -928, -4007, -2886], - [0, -1415, -2410, -3136, -3037, -15806, -15807], - [1, 3, 10814], - [0, 10815, 10816, 10817, 5], - [0, -522], - [0, -1788, -664, -2391, -1654, -2125, -1004, -2379, -2410, -3035, -3037, -3621, -511, -3617, -3983], - [0, -4665, -5119, -3634, -4873, -3440, -4666, -5986, -1874, -522], - [1, 3, 10819], - [0, 10820, 10821, 7, 5], - [ - 0, -483, -653, -6860, -13380, -14174, -15808, -5042, -1864, -2923, -7160, -2177, -3535, -2654, -2369, -15809, - -15810 - ], - [ - 0, -15661, -15811, -15812, -15813, -15814, -3037, -8523, -3199, -8200, -15815, -15816, -3664, -3665, -4817, - -8349, -815, -932, -8418, -3751, -1623, -3459, -6568, -1942, -2910, -15817, -15818, -2410, -15819, -15820, - -15821, -15822, -2466, -2469 - ], - [1, 3, 10823], - [0, 10824, 10825, 10826, 4], - [0, -812, -814, -1077, -1116, -7408, -2331], - [0, -3198, -15823, -3048, -664, -932, -1654], - [0, -867, -7347, -10908, -6131, -6656, -1334, -2435, -7107, -3445], - [1, 3, 10828], - [0, 0, 10829, 10830, 4], - [0, -3983, -3037, -3040, -9723, -1942, -2006, -2019, -3682, -2410], - [0, -2006, -5741, -12662, -12664, -12665], - [1, 3, 10832], - [0, 10833, 0, 10834, 5], - [0, -834, -3222, -681, -3620, -81, -66, -73, -74, -3502, -83, -68, -85, -15824, -6672, -15825], - [ - 0, -15826, -681, -3489, -15827, -15828, -5554, -15829, -7754, -3496, -3498, -3264, -3505, -3506, -3507, -3508, - -3509, -8841, -6217, -3161 - ], - [1, 3, 10836], - [0, 0, 287, 134, 4], - [1, 3, 10838], - [0, 10839, 10840, 10841, 11], - [0, -15830, -1967, -2055], - [ - 0, -21, -23, -32, -26, -33, -34, -35, -6034, -36, -38, -40, -41, -44, -406, -407, -409, -534, -753, -767, -932, - -933, -940, -958, -962, -967, -969, -1415, -1419, -1455, -1939, -1942, -2006, -2019, -2501, -2502, -2503, -2505 - ], - [0, -2006, -3476, -5176, -3159], - [1, 3, 10843], - [0, 0, 122, 10844, 5], - [0, -1107, -5569, -5570, -3215, -15831, -3116], - [1, 3, 10846], - [0, 10847, 0, 10848, 5], - [0, -681, -3517, -81, -15832, -66, -83, -68, -15824, -6672, -15825, -65, -15833, -3526, -15834, -15835], - [ - 0, -15826, -681, -3489, -15827, -15828, -5554, -15829, -7754, -3496, -3498, -3264, -3505, -3506, -3507, -3508, - -3509, -8841, -3161 - ], - [1, 3, 10850], - [0, 0, 37, 288, 8], - [1, 3, 10852], - [0, 10853, 10854, 10855, 4], - [0, -15836, -458, -812, -1729], - [0, -3198, -3037, -4201, -15837], - [0, -13739, -7572, -3690, -3323, -3161, -3482, -2901], - [1, 3, 10857], - [0, 23, 0, 289, 4], - [0, 23, 0, 289, 5], - [1, 3, 10860], - [0, 10861, 0, 170, 5], - [0, -5240, -5241, -431, -15838, -5244, -5245], - [1, 3, 10863], - [0, 10864, 0, 10865, 9], - [0, -15839, -15840, -15841, -15842, -15843, -15844, -15845, -15846], - [0, -15847, -2257, -15848, -3634, -4004, -15849, -15849, -2034, -2006, -3162, -5270, -5271, -3578], - [1, 3, 10867], - [0, 10868, 0, 10869, 6], - [0, -1439, -7679, -493, -495, -15444, -492], - [0, -15318, -15719, -3445, -7661], - [1, 3, 10871], - [0, 0, 10872, 10873, 5], - [0, -633, -1339, -2491], - [0, -2319, -8533, -3162, -2363, -5389, -6822], - [1, 3, 10875], - [0, 10876, 10877, 10878, 9], - [0, -15850, -2324], - [0, -1413, -1471, -1475, -1476, -1481, -11285, -1645, -1978, -2416], - [0, -10838, -10840, -3162, -4865], - [1, 3, 10880], - [0, 10881, 10882, 7, 4], - [0, -8535, -15851, -11270, -4848, -15852, -15853, -1826, -3653, -2062, -7967, -8544, -15854, -15855, -2531], - [ - 0, -13322, -9193, -13323, -15856, -357, -15857, -3037, -4204, -8549, -2917, -726, -2758, -932, -1030, -1122, - -1123, -15858, -2884, -1939, -1972, -2177, -2210, -2240, -2384, -2410, -2426, -2648 - ], - [1, 3, 10884], - [0, 10885, 10886, 10887, 11], - [0, -3459, -1863, -5037, -15811], - [0, -3735, -15206, -1966, -2469], - [0, -8403, -7148], - [1, 3, 10889], - [0, 10890, 10891, 7, 4], - [0, -25, -668, -2066, -2114, -2550], - [0, -528, -15859, -15860, -10445, -1978, -2070, -2226, -2250, -2322, -2359], - [1, 3, 10893], - [0, 10894, 132, 58, 5], - [0, -15861, -996, -15388, -15399], - [1, 3, 10896], - [0, 0, 0, 10897, 4], - [0, -15862, -3445, -13986, -11867, -7685, -2006], - [1, 3, 10899], - [0, 0, 0, 10900, 6], - [0, -932, -3784, -2006, -2041, -5324], - [1, 3, 10902], - [0, 10903, 10904, 10905, 8], - [0, -479, -9493, -812, -1022, -2778, -1446, -1597, -2359], - [ - 0, -23, -40, -43, -528, -664, -756, -932, -951, -1168, -1174, -1197, -1212, -1220, -1231, -1252, -1654, -15863, - -1788, -1939 - ], - [0, -1168, -1446, -7674, -3214, -7841, -856], - [1, 3, 10907], - [0, 10908, 0, 10909, 4], - [0, -1371, -15448, -1645, -1469], - [0, -15318, -15719, -3445, -15449, -15450], - [1, 3, 10911], - [0, 10912, 10913, 7, 4], - [0, -15274, -652, -999, -1047, -1107, -2548], - [0, -15864, -11419, -15865, -357, -3037, -15866, -2177, -932, -2884, -2410], - [1, 3, 10915], - [0, 0, 91, 10916, 10], - [0, -5372, -5142, -7282, -2918, -11889, -5573], - [1, 3, 10918], - [0, 0, 10919, 10920, 10], - [0, -2391, -2851], - [0, -2476, -2486, -4634, -2851, -3636, -4215, -3634], - [1, 3, 10922], - [0, 0, 10923, 10924, 4], - [0, -527, -1168, -1171, -15867, -1187, -1229, -1243, -1248, -1252, -1262, -1942, -2128], - [0, -15868, -15869, -15870, -15871, -15872, -15873, -3162, -11853], - [1, 3, 10926], - [0, 10927, 10928, 7, 4], - [0, -15874], - [0, -2476, -4838, -15875], - [1, 3, 10930], - [0, 0, 10931, 10932, 6], - [ - 0, -15661, -190, -15876, -15877, -3037, -3664, -6593, -932, -940, -960, -978, -1431, -7060, -1534, -8436, -1942, - -15878, -15879, -2910, -2174, -2892, -2400, -2410, -2411, -2469 - ], - [ - 0, -15880, -10587, -12437, -11639, -5112, -14059, -1548, -1993, -10656, -3481, -3018, -3694, -2410, -2424, - -2444, -8113, -3590, -5260 - ], - [1, 3, 10934], - [0, 10935, 10936, 10937, 6], - [0, -14337, -5322], - [ - 0, -5053, -11754, -15881, -4062, -639, -734, -999, -1107, -9665, -1852, -2922, -7160, -2127, -2202, -2231, - -2410, -2924, -2923 - ], - [0, -7882, -928, -7760, -2923, -2127, -2501], - [1, 3, 10939], - [0, 0, 10940, 10941, 5], - [0, -190, -3664, -932, -958, -960, -15882, -971, -972, -1449, -2892, -15883, -2410, -2411, -2466, -2469], - [0, -9022, -2410, -4058, -3926, -6747, -15884, -8461, -11997], - [1, 3, 10943], - [0, 0, 0, 10944, 6], - [0, -5889, -9080, -9800], - [1, 3, 10946], - [0, 10947, 10948, 10949, 10], - [ - 0, -3819, -15885, -15886, -15887, -15888, -15889, -15890, -15891, -15892, -3117, -8915, -4836, -15893, -15874, - -15894, -15895, -15896, -15897, -15898, -15899, -15900, -15901, -15902, -15903, -15904, -15905, -15906, -15907, - -15908, -15909, -15910, -4816, -4817, -14358, -15911, -15912, -734, -6860, -15913, -15914, -15915, -15916, - -15917, -15918, -15919, -1085, -14174, -15920, -1588, -1651, -15921, -12267, -1852, -15922, -6569, -2317, - -15923, -2318, -2654, -11071, -2981, -15924, -15925, -15926, -15927 - ], - [ - 0, -15928, -15929, -15930, -4646, -15931, -4837, -4838, -15932, -2932, -932, -1278, -7300, -2091, -2423, -2469, - -15130, -15933, -2476, -5627 - ], - [0, -15934, -7300, -3944, -2318, -5511, -2476, -5173, -3527, -2410, -4591, -3160, -2316, -3161, -15935], - [1, 3, 10951], - [0, 0, 10952, 10953, 11], - [0, -3136, -1415, -2375, -2379, -2391, -2410], - [ - 0, -3445, -4791, -9915, -15936, -15937, -15938, -15939, -15940, -15941, -15942, -15943, -775, -5272, -3100, - -15944, -15945, -15946, -15947, -15948, -15949, -15950, -15951, -15952, -15953, -15954, -15955, -2410, -15956, - -15957, -15958, -15959, -15960, -15961, -15962, -15963, -15964 - ], - [1, 3, 10955], - [0, 10956, 10957, 134, 6], - [0, -2932, -2896], - [0, -1415, -932, -2127, -2375, -1942, -2410, -3136, -3040, -940, -967, -1419, -428, -427], - [1, 3, 10959], - [0, 0, 10960, 10961, 5], - [0, -3040, -3052, -2006, -2019, -2410], - [0, -2006, -8785, -3962, -15273], - [1, 3, 10963], - [0, 10964, 10965, 10966, 5], - [0, -15965, -15966, -15967], - [ - 0, -15968, -15969, -15970, -15971, -15972, -15973, -15974, -15975, -15976, -15977, -15978, -15979, -15980, - -15981, -15982, -15983, -15984, -15985, -15986, -15987, -15988, -15989, -15990 - ], - [0, -2931, -4004, -3634, -10817, -4873, -664, -507, -856, -15991, -15992, -15993, -1446, -6024, -8257], - [1, 3, 10968], - [0, 0, 287, 134, 5], - [1, 3, 10970], - [0, 10971, 10972, 10973, 5], - [ - 0, -15994, -15995, -15996, -15997, -15998, -15999, -16000, -16001, -16002, -13406, -16003, -16004, -16005, - -1699, -2641, -2564, -2650 - ], - [0, -4049, -3037, -3040, -3052, -2006, -2019, -2469, -16006], - [ - 0, -16007, -1713, -2455, -16008, -2006, -3098, -3160, -3100, -2316, -2955, -16009, -16010, -15932, -3475, - -16011, -16012, -16013, -16014, -16015, -16016, -16017, -16018, -16019, -16020, -16021 - ], - [1, 3, 10975], - [0, 0, 0, 10976, 4], - [0, -12059, -775], - [1, 3, 10978], - [0, 10979, 10980, 10981, 4], - [0, -10782, -10784, -10786, -10793, -10788, -1691], - [0, -3136, -3037, -756, -1415, -1942, -2080, -2091, -2153, -2375, -2379, -2892, -2409, -2410], - [0, -5406, -4847, -856], - [1, 3, 10983], - [0, 10984, 10985, 10986, 5], - [0, -2650, -4225], - [0, -2466, -2006, -1122, -2019, -6859, -406, -440, -409, -407, -5323], - [0, -2006, -1122, -16022, -3862, -856, -10446], - [1, 3, 10988], - [0, 10989, 10990, 10991, 5], - [ - 0, -1313, -1826, -865, -16023, -13074, -1582, -16024, -1125, -16025, -1456, -15672, -16026, -16027, -16028, - -16029, -16030, -16031, -16032, -3234, -16033, -16034, -8863 - ], - [ - 0, -2564, -2391, -932, -1111, -2127, -2469, -2378, -3665, -2410, -23, -3037, -16035, -16036, -16037, -16038, - -1025, -4776, -4049, -16039, -16040, -3664, -16041, -16042, -16043 - ], - [0, -15932, -16044, -16045, -9733, -16046, -16047, -16048, -16049, -16050, -10412, -3674, -2410, -16051, -3161], - [1, 3, 10993], - [0, 0, 10994, 10995, 5], - [0, -50, -409, -3136, -855, -1415, -2634, -1942, -2006, -2019, -2052, -2125, -2375, -2410], - [0, -2006, -2634, -9736, -1713, -3122, -4215, -4004, -3634], - [1, 3, 10997], - [0, 0, 10998, 10999, 6], - [ - 0, -262, -4066, -350, -351, -3561, -5295, -16052, -3136, -4647, -16053, -4837, -7438, -4838, -5593, -708, -740, - -767, -1415, -1419, -1449, -1534, -6518, -1942, -2127, -2140, -2142, -2214, -2645, -2318, -2375, -2410, -2466, - -2476, -2483, -2486, -8160 - ], - [ - 0, -2476, -3944, -16054, -16055, -16056, -15150, -2645, -16057, -2939, -7580, -15151, -16058, -2410, -16059, - -2363, -3162, -3214, -3095, -3160 - ], - [1, 3, 11001], - [0, 94, 0, 11002, 4], - [0, -2034, -3159, -12567, -2006, -3162, -5270, -5271, -3160, -15071, -13615, -6527], - [1, 3, 11004], - [0, 11005, 11006, 261, 6], - [0, -16060, -4787, -3751, -1864, -1889, -2923, -2654], - [ - 0, -25, -3195, -3180, -14337, -13397, -5322, -4066, -350, -7151, -4785, -10046, -4371, -14331, -6410, -653, - -679, -729, -742, -754, -769, -5042, -865, -866, -14335, -928, -929, -989, -990, -14338, -14333, -7897, -1588, - -1651, -5036, -1699, -1805, -1839, -1852, -14332, -1863, -1906, -1907, -14336, -12601, -11751, -7160, -2127, - -2134, -2162, -3572, -2213, -14334, -2334, -3027, -11071, -2531 - ], - [1, 3, 11008], - [0, 0, 0, 11009, 4], - [0, -2034, -3159, -5270, -5271, -11511, -770, -3162, -510, -2191, -11524, -11526, -7103, -16061, -16062, -2446], - [1, 3, 11011], - [0, 0, 37, 288, 9], - [1, 3, 11013], - [0, 11014, 11015, 11016, 9], - [ - 0, -3165, -16063, -16064, -3168, -3698, -11418, -16065, -5772, -16066, -16067, -16068, -16069, -5702, -16070, - -8859, -3778, -16071, -16072, -16073, -16074, -16075, -16076, -16077, -16078, -16079, -16080, -16081, -16082, - -16083, -16084, -16085, -16086, -16087, -16088, -16089, -16090, -16091, -16092, -16093, -16094, -16095, -16096, - -16097, -16098, -16099, -16100, -8863, -16101, -16102, -16103, -16104, -16105, -16106, -16107, -16108, -16109, - -402, -16110, -16111, -16112, -15748, -16113, -16114, -16115, -16116, -16117, -16118, -15257, -485, -5674, - -16119, -13751, -743, -16120, -809, -812, -16121, -834, -16122, -16123, -2761, -1025, -14636, -1043, -2573, - -16124, -1125, -1329, -1349, -9775, -16125, -11895, -1359, -5193, -16126, -16127, -1495, -16128, -16129, -16130, - -1549, -16131, -1593, -16132, -1610, -10749, -16133, -16134, -1699, -2634, -1712, -16135, -16136, -11750, -1782, - -16137, -16138, -16139, -16140, -16010, -12273, -16141, -16142, -16143, -11926, -1855, -1857, -1867, -16144, - -1885, -16145, -8504, -16146, -1984, -1994, -2006, -16147, -2019, -4988, -16148, -2025, -16149, -6620, -16150, - -2042, -16151, -2044, -16152, -16153, -16154, -2093, -2095, -2096, -16155, -16156, -2177, -2193, -4245, -16157, - -2272, -2292, -16158, -2592, -2314, -16159, -16160, -2594, -16161, -2436, -16162, -2446, -16163, -2531, -2548, - -2564, -2650, -16164 - ], - [ - 0, -86, -14379, -16165, -16166, -16167, -16168, -16169, -16170, -10811, -16171, -3983, -5681, -3842, -407, -409, - -410, -16172, -16173, -3198, -3048, -16174, -4049, -3044, -3164, -3037, -16175, -16176, -16177, -16178, -3040, - -3052, -16179, -3199, -14748, -12969, -4231, -4204, -8200, -3664, -5329, -721, -734, -767, -772, -16180, -865, - -866, -16181, -16182, -16183, -932, -16184, -16185, -1077, -1107, -1278, -1344, -11415, -16186, -1534, -1548, - -1605, -16187, -1640, -1729, -1733, -12282, -1826, -1942, -2094, -4242, -16188, -2098, -11417, -2174, -16189, - -2281, -2392, -2400, -2410, -2427, -2429, -2466, -2469 - ], - [0, -3161, -16011, -16017, -1713, -16190, -16010, -16191, -16192, -16193, -16194], - [1, 3, 11018], - [0, 291, 135, 63, 5], - [1, 3, 11020], - [0, 11021, 131, 11022, 5], - [0, -8863, -3617, -719, -1004, -5193, -2426, -2564], - [0, -16195, -16196, -16197, -16198, -16199, -856, -10817], - [1, 3, 11024], - [0, 11025, 11026, 11027, 4], - [0, -4890, -13377], - [ - 0, -2213, -1852, -2006, -2218, -2177, -2469, -13380, -2019, -2369, -3654, -3517, -1639, -1863, -2654, -2410, - -3037, -3199, -14373, -4036, -5087, -16200, -2970 - ], - [0, -2257, -4895, -2469, -3634, -4004, -3095, -3098, -13422, -2006, -2476, -2299, -4902], - [1, 3, 11029], - [0, 11030, 11031, 11032, 5], - [0, -997, -16201, -16202], - [0, -2501, -3136, -3037, -2503], - [0, -4123, -8503, -4004, -3634, -16203, -5858], - [1, 3, 11034], - [0, 0, 11035, 11036, 4], - [ - 0, -526, -527, -534, -559, -562, -566, -567, -16204, -664, -16205, -13261, -796, -812, -829, -932, -943, -968, - -974, -1017, -1041, -1077, -1322, -1331, -1471, -1474, -1475, -1479, -16206, -7707, -1480, -1482, -1483, -16207, - -1484, -1487, -1488, -1492, -1654, -1753, -1860, -2125, -14439, -5471, -2174, -2416, -14648, -2437, -2501, -2505 - ], - [0, -3576, -8897, -16208, -12613, -12449, -2363, -13616, -11594, -3162], - [1, 3, 11038], - [0, 11039, 11040, 11041, 5], - [0, -16209, -16210], - [ - 0, -3040, -3052, -3804, -427, -428, -726, -932, -940, -967, -969, -16211, -16212, -1942, -2127, -2142, -2379, - -2387, -2410 - ], - [0, -16213, -16214, -16215, -2006, -5270, -5271, -3162, -16216], - [1, 3, 11043], - [0, 0, 11044, 11045, 6], - [0, -2006, -2034, -12566, -16217], - [ - 0, -2034, -9021, -5270, -5271, -16218, -16219, -16220, -16221, -3161, -2006, -16222, -5269, -3209, -5922, - -16223, -3682, -3970, -3110, -9437 - ], - [1, 3, 11047], - [0, 11048, 0, 11049, 6], - [0, -2954, -2934], - [0, -712, -775, -3215], - [1, 3, 11051], - [0, 0, 0, 11052, 9], - [0, -714, -775], - [1, 3, 11054], - [0, 11055, 11056, 11057, 6], - [ - 0, -16224, -23, -25, -3412, -42, -16225, -8863, -16226, -635, -719, -755, -815, -823, -834, -999, -1026, -1077, - -12417, -1343, -1496, -1683, -1729, -1805, -1816, -1889, -1931, -1966, -2066, -16227, -2317, -2378, -2383, - -2450, -2564, -8882 - ], - [0, -4776, -3048, -3735, -16228, -2125, -2391, -2400, -2410], - [0, -3098, -3160, -2316, -16007, -2955], - [1, 3, 11059], - [0, 0, 0, 11060, 6], - [0, -2006, -2476, -9608, -9614, -16229, -16230], - [1, 3, 11062], - [0, 0, 11063, 11064, 6], - [ - 0, -3136, -3037, -427, -428, -932, -936, -940, -958, -967, -968, -972, -978, -1107, -1415, -1942, -2125, -2127, - -2130, -12925, -2142, -2375, -2379, -2402, -2405, -7322, -2410 - ], - [0, -16231, -8785, -16232, -16233, -16234, -16235, -16236, -16237, -3173, -16238, -3966, -4865, -3100, -3445], - [1, 3, 11066], - [0, 0, 0, 11067, 6], - [ - 0, -16239, -4053, -16240, -16241, -16242, -16243, -16244, -16245, -16246, -16247, -16248, -16249, -16250, - -16251, -12512, -16252, -16253, -4055, -1456, -16254, -16244, -5495, -3100, -3214, -2410 - ], - [1, 3, 11069], - [0, 11070, 0, 73, 4], - [ - 0, -2984, -5766, -2860, -5758, -501, -523, -16255, -615, -16256, -14855, -1069, -1100, -1107, -9362, -8985, - -5880, -1548, -1574, -1666, -1705, -10270, -1875, -1878, -2060, -2115, -2160, -2177, -2194, -2297, -5764, -2400, - -2446, -2518, -2555 - ], - [1, 3, 11072], - [0, 11073, 11074, 11075, 4], - [0, -15224, -15226], - [0, -3037, -15229, -15230, -15231, -2125, -2892, -2410, -2469], - [0, -15227, -9668, -3690, -3445, -1348, -9780], - [1, 3, 11077], - [0, 11078, 11079, 11080, 4], - [ - 0, -1313, -1852, -2922, -6570, -2924, -11918, -12278, -7772, -6475, -4835, -1341, -16257, -8859, -12284, -8860, - -16258, -16259 - ], - [0, -2391, -2469, -5672, -6568, -2410, -3037, -8321, -16260, -2832, -11347], - [0, -1954, -10425, -16261, -8427, -3113, -7646, -3634], - [1, 3, 11082], - [0, 11083, 11084, 11085, 6], - [0, -16262, -16263], - [0, -16264, -767, -932, -1641, -16265, -1788, -1972, -16266, -2322], - [0, -5817, -5819, -5937, -13192, -5801, -16267, -16268, -5951, -5940, -5943, -16269, -3161], - [1, 3, 11087], - [0, 11088, 11089, 7, 4], - [0, -16270], - [0, -879, -2410, -7768], - [1, 3, 11091], - [0, 11092, 11093, 11094, 10], - [0, -2006, -2019, -16271], - [0, -1992, -2125, -2388, -2376, -1967, -2410, -23, -3037, -3040, -534, -3052, -3140, -520], - [0, -2356, -3488, -16272, -2006, -3496, -3264, -3494, -13460, -11889, -4258], - [1, 3, 11096], - [0, 0, 11097, 11098, 5], - [ - 0, -12182, -190, -4225, -16273, -16274, -4836, -16275, -407, -409, -410, -3269, -3732, -3661, -3037, -3040, - -3052, -16276, -14827, -651, -703, -724, -786, -932, -970, -2914, -1110, -1344, -1449, -1534, -1600, -1610, - -1889, -1942, -8918, -2006, -16277, -2019, -2965, -16278, -2044, -2140, -2144, -16279, -2193, -2213, -2317, - -2318, -2334, -16280, -2379, -2392, -2410, -2411, -11708, -2466, -6859, -15519, -2469, -16281, -2650 - ], - [0, -2006, -3476, -9614, -6409, -16282, -4108, -12682, -12683, -12684, -4002, -4672, -9133], - [1, 3, 11100], - [0, 11101, 11102, 11103, 5], - [0, -4785, -12535, -462, -674, -742, -812, -14335, -1026, -1077, -1451, -1588, -1852, -1863, -2041, -2127, -2153], - [ - 0, -16283, -16284, -4066, -350, -4062, -351, -365, -8894, -16285, -3202, -3198, -3048, -4963, -16286, -3037, - -3040, -3052, -427, -428, -440, -4837, -679, -928, -13212, -932, -969, -4981, -1771, -13593, -2006, -2019, - -2125, -2132, -6483, -2299, -2400, -2410, -2466, -16287, -2469, -2476 - ], - [0, -12913, -5044, -10366, -16288, -5195, -16289, -16290, -4865, -16291], - [1, 3, 11105], - [0, 11106, 11107, 7, 5], - [0, -797, -16292, -16293], - [ - 0, -652, -16294, -2392, -2466, -1449, -1654, -659, -932, -2127, -1110, -1942, -2378, -16295, -2468, -190, -2410, - -3037, -1440, -3621, -16296, -7273, -3244, -16297, -4062, -16298, -7274, -3266, -1602, -940, -350, -428, -351, - -427 - ], - [1, 3, 11109], - [0, 11110, 11111, 11112, 6], - [0, -8612, -1063, -1343, -16299], - [0, -4835, -3037, -16300, -1313, -1722, -2359], - [ - 0, -659, -13649, -16301, -16302, -11878, -6523, -6524, -6527, -5093, -16303, -7650, -16304, -16305, -6528, - -3839, -5057 - ], - [1, 3, 11114], - [0, 11115, 11116, 11117, 8], - [0, -16306], - [0, -2376, -2410, -2501, -2503, -2006, -2019, -3040, -3052], - [0, -2006, -16306, -6656, -6999, -9800, -16307, -6527, -3496, -7764, -16308, -5937, -5940, -5800, -8624], - [1, 3, 11119], - [0, 11120, 11121, 11122, 5], - [0, -14372, -13388, -5286], - [0, -2469, -1874], - [0, -4865, -1874, -3095, -7243, -4004, -3634], - [1, 3, 11124], - [0, 11125, 11126, 11127, 4], - [0, -502, -668, -679, -1098, -1099, -1125, -1304, -1351, -1535, -1610, -1978, -2177, -5977], - [0, -16309, -3802, -3199, -13186, -519, -659, -1788, -11926, -1942, -1944, -11491, -2379, -2384, -2410, -2541], - [0, -16310, -687, -16311, -856, -16312, -16313, -1599, -6528, -1978, -11096, -16314], - [1, 3, 11129], - [0, 11130, 11131, 278, 5], - [0, -668, -2550, -16315, -2823, -16316], - [0, -3037, -16317], - [1, 3, 11133], - [0, 11134, 91, 11135, 5], - [0, -2177, -2823, -16316, -16318], - [0, -15627, -15629, -15630, -4864, -3634, -3636], - [1, 3, 11137], - [0, 11138, 11139, 11140, 4], - [0, -16319, -16316, -16318, -2823], - [0, -2973, -16320, -15626, -5769, -1870, -11468], - [0, -15627, -15629, -15630, -4864, -3634, -3636, -11890], - [1, 3, 11142], - [0, 11143, 11144, 11145, 4], - [0, -719, -2683, -2822, -16321], - [0, -15624, -16322, -16323, -2983], - [0, -15279, -687, -3262, -856, -15280, -15281], - [1, 3, 11147], - [0, 11148, 0, 11149, 4], - [0, -16324], - [0, -15279, -15625, -16325, -16326, -856, -15280, -15281], - [1, 3, 11151], - [0, 94, 11152, 11153, 8], - [ - 0, -3307, -12564, -4646, -3136, -3044, -3040, -3141, -427, -428, -721, -932, -940, -967, -1344, -1415, -16327, - -1942, -2006, -2034, -12566, -2091, -2410 - ], - [0, -2034, -3159, -5270, -5271, -16328, -16329, -3162, -5269, -3095, -6107, -7067, -14498, -11378, -2319], - [1, 3, 11155], - [0, 11156, 11157, 11158, 10], - [0, -2340], - [0, -16178, -1857], - [0, -10425, -6321, -3634, -7606, -2340], - [1, 3, 11160], - [0, 11161, 11162, 7, 6], - [0, -3195, -1864, -4247], - [ - 0, -5694, -16224, -16330, -16331, -10097, -10098, -3037, -8523, -8200, -483, -8349, -16332, -928, -932, -16333, - -1431, -1534, -1588, -2923, -2127, -3246, -2892, -2410, -16334, -15822, -2466, -2469, -2501, -2503, -2981 - ], - [1, 3, 11164], - [0, 72, 0, 11165, 6], - [0, -15279, -15625, -16335, -856, -15280, -15281], - [1, 3, 11167], - [0, 11168, 0, 11169, 10], - [0, -16336], - [0, -15279, -15625, -16337, -6999, -856, -15280, -15281], - [1, 3, 11171], - [0, 11172, 0, 73, 5], - [0, -4716, -1548, -1582, -10515], - [1, 3, 11174], - [0, 0, 11175, 11176, 5], - [ - 0, -50, -190, -3035, -3664, -469, -932, -940, -1942, -2125, -2134, -2210, -2334, -2384, -2387, -2402, -2405, - -2411, -2466, -16338, -16339, -16340, -16341, -2468, -2469 - ], - [0, -16342, -5177, -3214, -2410, -16343, -16344, -6899, -16345, -3162], - [1, 3, 11178], - [0, 0, 11179, 11180, 5], - [ - 0, -50, -3037, -427, -428, -7438, -932, -940, -1003, -1654, -1942, -16346, -2134, -16347, -2210, -2402, -2405, - -2410, -2466, -16338, -16339, -16340 - ], - [0, -5177, -16343, -9475, -3999, -6899, -16345, -659, -7085, -3578, -3162], - [1, 3, 11182], - [0, 11183, 0, 11184, 4], - [0, -2357], - [0, -4144, -3214, -16348, -2987, -1942, -2410], - [1, 3, 11186], - [0, 0, 0, 11187, 4], - [ - 0, -3015, -16349, -1520, -15360, -10440, -1764, -1787, -5895, -7442, -1882, -2177, -7969, -3682, -16350, -16351, - -11713, -4304, -2552 - ], - [1, 3, 11189], - [0, 0, 11190, 7, 4], - [ - 0, -16352, -16353, -280, -16354, -16355, -350, -4062, -351, -7155, -4007, -11348, -16356, -16357, -11752, -719, - -831, -16358, -3459, -1863, -2144, -16359, -16360 - ], - [1, 3, 11192], - [0, 11193, 0, 73, 11], - [ - 0, -2959, -2860, -5758, -8864, -5761, -523, -615, -617, -1004, -11676, -1341, -1548, -1582, -1635, -1676, -1851, - -2185, -2400 - ], - [1, 3, 11195], - [0, 291, 135, 63, 11], - [1, 3, 11197], - [0, 11198, 135, 63, 11], - [0, -3947, -231, -2944, -2900], - [1, 3, 11200], - [0, 11201, 11202, 11203, 10], - [ - 0, -2564, -6860, -6415, -16361, -16362, -16363, -2292, -16364, -16365, -16122, -16366, -16367, -16368, -16369, - -16370, -5038, -16371, -5779, -5782 - ], - [0, -1683, -16178, -3631, -2410, -3037, -16372, -3617, -16373, -8859, -16374, -12285, -16375], - [ - 0, -16376, -16377, -14981, -16378, -16379, -3445, -16380, -16381, -16382, -11877, -16383, -16384, -16385, - -16386, -16387 - ], - [1, 3, 11205], - [0, 11206, 11207, 11208, 10], - [0, -1047, -1863, -1875], - [0, -11337, -3040, -825, -1802, -12566, -2410], - [ - 0, -2034, -5270, -5271, -12578, -7084, -12579, -3159, -12567, -2006, -3162, -3160, -3167, -3843, -9472, -9474, - -3827 - ], - [1, 3, 11210], - [0, 11211, 0, 11212, 8], - [0, -2460, -1641, -2683, -16324], - [0, -15279, -15625, -5398, -856, -15280, -15281], - [1, 3, 11214], - [0, 0, 11215, 11216, 9], - [ - 0, -16388, -15583, -21, -23, -3203, -38, -40, -16389, -16390, -3326, -3561, -528, -533, -10056, -10022, -15127, - -16391, -11899, -726, -865, -932, -956, -958, -9724, -1059, -11942, -13866, -1344, -1415, -5123, -12680, -4981, - -4982, -1868, -16392, -1942, -1952, -1978, -16346, -2127, -16393, -2134, -2140, -2144, -2184, -2410 - ], - [0, -3821, -3822, -3823, -3825, -16394, -16395], - [1, 3, 11218], - [0, 0, 11219, 11220, 9], - [0, -3266, -3621, -3037, -632, -664, -1654, -1753, -2127, -2344, -2410], - [ - 0, -16396, -2998, -16397, -7049, -5176, -16398, -15100, -16055, -15213, -6899, -11853, -16399, -16400, -12543, - -16401, -7198, -10724, -16402, -16403, -16404 - ], - [1, 3, 11222], - [0, 0, 70, 11223, 9], - [0, -13351, -16405], - [1, 3, 11225], - [0, 11226, 11227, 11228, 9], - [0, -16406, -16407, -16408, -16409, -16410], - [0, -683, -932, -16411, -16412, -1989, -2281, -2282, -2334], - [0, -2363, -3576, -16413, -12449, -12613, -13615, -14054, -4865], - [1, 3, 11230], - [0, 0, 11231, 11232, 9], - [0, -664, -824, -1168, -1187, -9293, -1208, -1224, -1243, -1262, -16414, -1654], - [0, -4123, -11154, -11158, -1666, -1667, -4121], - [1, 3, 11234], - [0, 0, 0, 11235, 9], - [0, -3003, -7184, -5493, -11151, -16415, -8451, -3579, -8590, -3215], - [0, 25, 9], - [1, 3, 11238], - [0, 11239, 0, 7, 9], - [0, -637], - [1, 3, 11241], - [0, 0, 11242, 11243, 9], - [0, -1032, -2322], - [0, -3006, -10504, -10684, -16416, -11972], - [1, 3, 11245], - [0, 0, 11246, 11247, 9], - [0, -1654, -1003, -6851, -16417, -16418, -1818, -510], - [0, -6106, -1818, -16418, -6851], - [1, 3, 11249], - [0, 0, 0, 11250, 9], - [0, -16419, -14311], - [1, 3, 11252], - [0, 11253, 0, 7, 9], - [0, -1980, -10802, -2550, -2520, -1691, -2424, -693, -7109, -714, -2525], - [1, 3, 11255], - [0, 11256, 11257, 11258, 9], - [0, -1967, -16420], - [ - 0, -21, -23, -36, -40, -41, -43, -509, -756, -915, -916, -932, -16421, -7894, -964, -969, -1449, -1654, -1788, - -2006, -2019, -15571, -16422 - ], - [0, -3839, -2034, -3010, -16423, -9682, -2006], - [1, 3, 11260], - [0, 0, 11261, 7, 9], - [ - 0, -23, -40, -350, -5995, -351, -535, -571, -633, -1413, -1471, -1472, -1475, -1476, -1481, -3569, -1491, -1978, - -2127, -2128, -16424, -8895, -16425, -8896, -2140, -2491 - ], - [1, 3, 11263], - [0, 0, 11264, 7, 9], - [0, -2125, -1650, -16426, -16427], - [1, 3, 11266], - [0, 0, 11267, 11268, 9], - [0, -21, -23, -40, -528, -557, -932, -934, -940, -958, -967, -1415, -1942], - [ - 0, -5845, -8799, -651, -16428, -3215, -16429, -7304, -6241, -8574, -12248, -6582, -1044, -6656, -8800, -3590, - -5845, -6473, -3240 - ] +"Flatpack JSON v2", +[128,"@alifd/next","@angular-devkit/core","@angular-devkit/schematics","@angular/animations","@angular/cdk", +"@angular/common","@angular/compiler","@angular/compiler-cli","@angular/core","@angular/forms","@angular/http", +"@angular/material","@angular/platform-browser","@angular/platform-browser-dynamic","@angular/platform-server", +"@angular/router","@ant-design/react-native","@ant-design/web3-common","@ant-design/web3-icons","@auth/sveltekit", +"@babel/cli","@babel/code-frame","@babel/core","@babel/helper-plugin-utils","@babel/parser", +"@babel/plugin-proposal-class-properties","@11ty/eleventy","@adobe/css-tools","@api-components/api-method-documentation", +"@apollo/client","@asyncapi/generator-react-sdk","@babel/eslint-parser","@babel/plugin-proposal-decorators", +"@babel/plugin-proposal-export-default-from","@babel/plugin-proposal-export-namespace-from", +"@babel/plugin-proposal-object-rest-spread","@babel/plugin-syntax-dynamic-import","@babel/plugin-transform-runtime", +"@babel/polyfill","@babel/preset-env","@babel/preset-react","@babel/preset-typescript","@babel/register", +"@babel/runtime","@babel/runtime-corejs2","@babel/traverse","@babel/types","@biz-dev-ops/md-docs","@bwcr_/winston-loki", +"@changesets/cli","@chatscope/chat-ui-kit-react","@ckeditor/ckeditor5-adapter-ckfinder","@ckeditor/ckeditor5-angular", +"@ckeditor/ckeditor5-autoformat","@ckeditor/ckeditor5-basic-styles","@ckeditor/ckeditor5-block-quote", +"@ckeditor/ckeditor5-build-balloon","@ckeditor/ckeditor5-build-balloon-block","@ckeditor/ckeditor5-build-classic", +"@ckeditor/ckeditor5-build-decoupled-document","@ckeditor/ckeditor5-build-inline","@ckeditor/ckeditor5-ckbox", +"@ckeditor/ckeditor5-ckfinder", +"@ckeditor/ckeditor5-clipboard","@ckeditor/ckeditor5-cloud-services","@ckeditor/ckeditor5-core", +"@ckeditor/ckeditor5-easy-image","@ckeditor/ckeditor5-engine","@ckeditor/ckeditor5-essentials", +"@ckeditor/ckeditor5-heading","@ckeditor/ckeditor5-image","@ckeditor/ckeditor5-indent","@ckeditor/ckeditor5-link", +"@ckeditor/ckeditor5-list","@ckeditor/ckeditor5-media-embed","@ckeditor/ckeditor5-paragraph", +"@ckeditor/ckeditor5-paste-from-office","@ckeditor/ckeditor5-react","@ckeditor/ckeditor5-table", +"@ckeditor/ckeditor5-typing","@ckeditor/ckeditor5-ui","@ckeditor/ckeditor5-upload","@ckeditor/ckeditor5-utils", +"@ckeditor/ckeditor5-vue","@ckeditor/ckeditor5-widget","@commitlint/cli","@compodoc/compodoc","@comunica/core", +"@contenthook/browser","@contenthook/cli","@contenthook/node","@coreui/coreui","@csstools/css-parser-algorithms", +"@csstools/css-tokenizer","@csstools/media-query-list-parser","@csstools/postcss-is-pseudo-class", +"@csstools/postcss-progressive-custom-properties","@csstools/selector-specificity","@cucumber/cucumber", +"@deven-org/documentation-skeleton","@devtea2026/aspernatur-ea-non-porro","@devtea2026/consectetur-ab-unde-quisquam", +"@devtea2026/cupiditate-dolorem-excepturi-impedit","@devtea2026/distinctio-soluta-illo-eaque", +"@devtea2026/eum-ullam-est-distinctio","@devtea2026/explicabo-alias-architecto-sed","@devtea2026/improved-journey", +"@devtea2026/inventore-facilis-corporis-cum","@devtea2026/ipsa-omnis-in-molestiae", +"@devtea2026/literate-computing-machine","@devtea2026/maxime-sequi-est-rem", +"@devtea2026/necessitatibus-dolorem-esse-atque","@devtea2026/odit-enim-reiciendis-pariatur", +"@devtea2026/odit-maxime-porro-asperiores","@devtea2026/possimus-ipsa-sint-consequuntur", +"@devtea2026/qui-quos-laborum-amet","@devtea2026/quia-ducimus-placeat-minima", +"@devtea2026/quidem-voluptate-repudiandae-necessitatibus","@devtea2026/rerum-quaerat-porro-animi", +"@devtea2026/ubiquitous-octo-memory","@diotoborg/adipisci-placeat-iure","@diotoborg/amet-architecto-est", +"@diotoborg/at-totam-perspiciatis","@diotoborg/commodi-voluptatum-libero", +"@diotoborg/delectus-necessitatibus-voluptatum","@diotoborg/deserunt-illo-tempora","@diotoborg/dicta-recusandae-veniam", +"@diotoborg/dolor-earum-quia","@diotoborg/dolor-tempora-fuga","@diotoborg/dolores-praesentium-assumenda", +"@diotoborg/eligendi-est-unde","@diotoborg/esse-accusantium-ratione","@diotoborg/illo-amet-architecto", +"@diotoborg/laudantium-itaque-esse","@diotoborg/libero-asperiores-at","@diotoborg/neque-inventore-corporis", +"@diotoborg/nostrum-eveniet-officiis","@diotoborg/odio-dolores-officia","@diotoborg/porro-modi-accusamus", +"@diotoborg/psychic-bassoon","@diotoborg/quasi-repellat-odit","@diotoborg/qui-ullam-ipsum", +"@diotoborg/quo-dolorem-ducimus","@diotoborg/ratione-error-odio","@diotoborg/repellat-blanditiis-quis", +"@diotoborg/tempora-voluptas-distinctio","@diotoborg/ullam-dignissimos-repudiandae","@diotoborg/velit-reiciendis-velit", +"@diotoborg/verbose-robot","@diplodoc/transform","@discordjs/rest","@disqada/workspace","@doc-tools/docs", +"@doc-tools/transform","@dramaorg/esse-praesentium-eligendi","@dramaorg/quae-dolore-nostrum","@eas-framework/server", +"@eightshift/frontend-libs","@electron/docs-parser","@emotion/babel-plugin","@emotion/core","@emotion/css", +"@emotion/styled","@erboladaiorg/ad-exercitationem-ducimus","@erboladaiorg/asperiores-earum-quaerat", +"@erboladaiorg/asperiores-fuga-sint","@erboladaiorg/asperiores-nam-adipisci","@erboladaiorg/autem-dolores-ipsam", +"@erboladaiorg/cupiditate-consectetur-porro","@erboladaiorg/cupiditate-pariatur-optio", +"@erboladaiorg/distinctio-tempora-quis","@erboladaiorg/error-atque-ea","@erboladaiorg/esse-ipsa-numquam", +"@erboladaiorg/ex-hic-molestias","@erboladaiorg/explicabo-eius-adipisci", +"@erboladaiorg/molestiae-voluptatibus-perferendis","@erboladaiorg/molestias-nulla-dolor","@erboladaiorg/nisi-culpa-cum", +"@erboladaiorg/officia-illum-aperiam","@erboladaiorg/perspiciatis-magni-ut","@erboladaiorg/quae-in-veniam", +"@erboladaiorg/quaerat-mollitia-adipisci","@erboladaiorg/quibusdam-itaque-tempora","@erboladaiorg/sint-deleniti-dolorem", +"@erboladaiorg/sit-nesciunt-amet","@erboladaiorg/tenetur-architecto-dolore","@erboladaiorg/ut-dignissimos-laborum", +"@erboladaiorg/velit-fugit-harum","@eslint-community/eslint-utils","@eslint/js","@fakeyanss/redoc", +"@floating-ui/react-dom","@fontsource/inter","@fontsource/roboto","@fortawesome/fontawesome-svg-core", +"@fortawesome/free-solid-svg-icons","@fortawesome/react-fontawesome","@grandlinex/core","@grandlinex/e-kernel", +"@grandlinex/kernel","@graphql-markdown/core","@graphql-markdown/docusaurus","@hajtech/webpack-config","@hapi/hapi", +"@hishprorg/aliquid-ad-vero","@hishprorg/autem-sint-quas","@hishprorg/cum-rem-consequuntur", +"@hishprorg/earum-sint-veritatis","@hishprorg/eius-vero-dicta","@hishprorg/est-dicta-quis", +"@hishprorg/incidunt-quibusdam-tempore","@hishprorg/itaque-esse-accusamus","@hishprorg/iure-optio-nihil", +"@hishprorg/magni-amet-id","@hishprorg/magni-nisi-aperiam","@hishprorg/maxime-voluptates-enim", +"@hishprorg/nihil-ad-ratione","@hishprorg/perspiciatis-ratione-unde","@hishprorg/quis-perferendis-culpa", +"@hishprorg/reprehenderit-excepturi-sed","@hishprorg/sint-nam-consequuntur","@hishprorg/sunt-officia-eligendi", +"@hishprorg/sunt-voluptatem-nobis","@hishprorg/unde-vitae-reprehenderit","@hishprorg/wafflejs", +"@homer0/prettier-plugin-jsdoc","@hookform/resolvers","@iamtraction/google-translate","@idux/cdk","@idux/components", +"@inquirer/core","@ionic/core","@isaacs/cliui","@istanbuljs/nyc-config-typescript","@itwin/itwinui-react","@jest/core", +"@jest/types","@jsonforms/core","@jsonforms/material-renderers","@jsonforms/react","@juigorg/nisi-molestiae-ut", +"@juigorg/sit-nam-neque","@jupyterlab/application","@kobedevi/sassdoc","@kollorg/dicta-itaque-nemo", +"@kollorg/nihil-veniam-deserunt","@libphamton/chatfanpage","@libphamton/fb-group","@listr2/prompt-adapter-inquirer", +"@mantine/core","@mantine/dates","@mantine/hooks","@mantine/modals","@mantine/notifications","@mantine/prism", +"@mantine/styles","@mantine/utils","@material-ui/core","@material-ui/icons","@mathematikoi/jsonapi","@mdx-js/react", +"@microsoft/api-extractor","@microsoft/tsdoc","@microsoft/tsdoc-config","@middy/core","@middy/http-json-body-parser", +"@middy/util","@ministryofjustice/frontend","@mswjs/interceptors","@mui/icons-material","@mui/lab","@mui/material", +"@mui/system","@mui/x-date-pickers","@neato/guider","@ng-doc/core","@ng-doc/ui-kit","@ng-doc/utils", +"@nomicfoundation/hardhat-chai-matchers","@npmcli/arborist","@npmcli/map-workspaces","@npmcli/node-gyp", +"@npmcli/run-script","@npmcorp/marky-markdown","@npmtuanmap/ex-vel-expedita-impedit","@npmtuanmap/psychic-guide", +"@npmtuanmap/recusandae-recusandae-nam-et","@npmtuanmap/sed-quo-nemo-rerum","@npmtuanmap/velit-esse-velit-magnam", +"@nrwl/devkit","@nrwl/tao","@nrwl/workspace","@nx/devkit","@nx/esbuild","@nx/eslint","@nx/express","@nx/js","@nx/nest", +"@nx/node","@nx/workspace","@oclif/command","@oclif/config","@oclif/core","@oclif/plugin-help","@octokit/rest", +"@opentiny/vue","@opentiny/vue-renderless","@opentiny/vue-theme","@opentiny/vue-theme-mobile","@otterhttp/cookie", +"@otterhttp/request","@otterhttp/response","@otterhttp/send","@pact-foundation/pact","@patrtorg/a-ad-expedita", +"@patrtorg/a-ut-amet","@patrtorg/asperiores-vel-accusantium","@patrtorg/aspernatur-dolorum-ducimus", +"@patrtorg/autem-et-hic", +"@patrtorg/consectetur-culpa-non","@patrtorg/consectetur-repudiandae-consequuntur", +"@patrtorg/consequatur-voluptatum-officiis","@patrtorg/ducimus-magni-quibusdam","@patrtorg/enim-magni-hic", +"@patrtorg/est-corrupti-deleniti","@patrtorg/eveniet-tempore-maiores","@patrtorg/illum-sapiente-quos", +"@patrtorg/laborum-doloribus-voluptate","@patrtorg/libero-doloribus-omnis","@patrtorg/libero-voluptas-sequi", +"@patrtorg/magnam-aut-adipisci","@patrtorg/maiores-quidem-quo","@patrtorg/molestias-molestias-ut", +"@patrtorg/nam-eius-unde","@patrtorg/pariatur-deleniti-quaerat","@patrtorg/porro-labore-eos","@patrtorg/quae-earum-eius", +"@patrtorg/quos-quasi-ipsa","@patrtorg/sapiente-eos-magnam","@patrtorg/sapiente-exercitationem-sit", +"@patrtorg/tenetur-animi-reprehenderit","@perseid/store","@phosphor/widgets","@phun-ky/speccer","@polymer/polymer", +"@qooxdoo/framework","@quasar/extras","@readyplayerme/visage","@reduxjs/toolkit","@rollup/plugin-commonjs", +"@rollup/plugin-node-resolve","@sanity/tsdoc","@scalar/api-reference","@scalar/fastify-api-reference", +"@serenity-js/protractor","@serenity-js/webdriverio","@sinonjs/fake-timers","@storybook/addon-docs", +"@subwallet/react-ui","@supernovaio/sdk","@supernovaio/sdk-exporters","@supernovaio/supernova-sdk", +"@sveltejs/eslint-config","@sveltejs/kit","@sveltejs/vite-plugin-svelte","@svgr/webpack","@swc/core", +"@swenkerorg/maiores-voluptatibus-nemo","@swenkerorg/modi-dolorum-provident","@swenkerorg/nulla-voluptates-voluptates", +"@swisspost/design-system-styles","@symbiotejs/symbiote","@synion/md-docs","@taktikorg/aut-distinctio-repellat", +"@taktikorg/consectetur-quo-quos","@taktikorg/corporis-nihil-odit","@taktikorg/deleniti-qui-dolorem", +"@taktikorg/dolor-ratione-quibusdam","@taktikorg/harum-reprehenderit-perferendis","@taktikorg/illum-accusamus-possimus", +"@taktikorg/ipsa-totam-aperiam","@taktikorg/iste-ex-tempore","@taktikorg/itaque-nam-eos", +"@taktikorg/itaque-tempore-exercitationem","@taktikorg/maiores-dolores-aut","@taktikorg/molestias-fuga-possimus", +"@taktikorg/nam-esse-animi","@taktikorg/necessitatibus-repudiandae-officia","@taktikorg/nisi-reprehenderit-amet", +"@taktikorg/placeat-voluptates-dolorum","@taktikorg/praesentium-dolorum-quis","@taktikorg/praesentium-neque-ipsam", +"@taktikorg/quo-reiciendis-quibusdam","@taktikorg/recusandae-ratione-veniam","@taktikorg/similique-natus-officia", +"@taktikorg/suscipit-modi-ratione","@taktikorg/tempore-veniam-in","@taktikorg/unde-animi-omnis", +"@taktikorg/velit-nobis-blanditiis","@taktikorg/voluptatem-pariatur-tenetur","@tanem/svg-injector", +"@tanstack/react-query","@tanstack/svelte-query","@teamhanko/hanko-frontend-sdk","@testing-library/cypress", +"@testing-library/dom","@testing-library/jest-dom","@testing-library/jest-native","@testing-library/react", +"@testing-library/user-event","@tinyhttp/app","@tinyhttp/cookie","@tinyhttp/cookie-signature","@tinyhttp/cors", +"@tinyhttp/etag","@tinyhttp/forwarded","@tinyhttp/proxy-addr","@tinyhttp/req","@tinyhttp/res","@tinyhttp/router", +"@tinyhttp/send","@tinyhttp/type-is","@tinyhttp/url","@tsparticles/engine","@twurple/ebs-helper","@types/estree", +"@typescript-eslint/eslint-plugin","@typescript-eslint/parser","@typescript-eslint/utils","@ucloud-fe/react-components", +"@udecode/plate-core","@uiw/react-button","@uiw/react-icon","@uiw/react-input","@uiw/react-overlay-trigger","@uiw/utils", +"@unleash/proxy","@uploadcare/file-uploader","@vitejs/plugin-legacy","@vitejs/plugin-react", +"@vue/eslint-config-typescript","@wesleytodd/openapi","@wuxh/dumi","@zitterorg/adipisci-quae-eius", +"@zitterorg/aspernatur-pariatur-occaecati","@zitterorg/at-esse-odit","@zitterorg/cum-ipsum-beatae", +"@zitterorg/doloremque-ut-omnis","@zitterorg/est-sunt-quos","@zitterorg/eum-veritatis-placeat", +"@zitterorg/fluffy-waddle","@zitterorg/glowing-barnacle","@zitterorg/illum-perferendis-consectetur", +"@zitterorg/itaque-nisi-veritatis","@zitterorg/probable-octo","@zitterorg/upgraded-fishstick", +"@zkportal/aleo-oracle-sdk","abort-controller","accepts","acl","acorn","acorn-walk","action-cli","adm-zip","after", +"agenda","aid-guard1","airtap","ajv","ajv-formats","although-line-wall-corn","amqp","amqplib","analsorhost-simple-bs", +"angular","angular-animate","angular-cli","angular-material","ansi-colors","ansi-escapes","ansi-regex","ansi-styles", +"ansis","ant-design-vue","antd","antfu","anyway-south-boy-pilot","api-console","apidoc","apidoc-markdown","apn", +"apollo-cache-inmemory","apollo-client","apollo-link","apollo-link-http","app-root-path","appium-android-driver", +"apple-transportation-web3-locate","applicationinsights","appsync-client-node","archiver","arg","argparse", +"arrangement-tell-arrange","array.prototype.flatmap","arrify","assert","assert-plus","assume","async","async-listen", +"async-retry","async-validator","atob","aud","auto-changelog","auto-install","autoprefixer","ava", +"awesome-typescript-loader","aws-sdk","axe-core","axios","azure-storage","babel","babel-cli","babel-core","babel-eslint", +"babel-generator","babel-helper-fixtures","babel-helper-plugin-test-runner","babel-helper-vue-jsx-merge-props", +"babel-jest","babel-loader","babel-plugin-add-module-exports","babel-plugin-dynamic-import-node", +"babel-plugin-external-helpers","babel-plugin-import","babel-plugin-istanbul","babel-plugin-lodash", +"babel-plugin-module-resolver","babel-plugin-named-asset-import","babel-plugin-syntax-dynamic-import", +"babel-plugin-syntax-jsx","babel-plugin-transform-async-to-generator","babel-plugin-transform-class-properties", +"babel-plugin-transform-decorators-legacy","babel-plugin-transform-es2015-block-scoping", +"babel-plugin-transform-es2015-modules-commonjs","babel-plugin-transform-es2015-template-literals", +"babel-plugin-transform-object-rest-spread","babel-plugin-transform-react-jsx", +"babel-plugin-transform-react-remove-prop-types","babel-plugin-transform-regenerator","babel-plugin-transform-runtime", +"babel-polyfill","babel-preset-airbnb","babel-preset-env","babel-preset-es2015","babel-preset-react", +"babel-preset-react-app","babel-preset-stage-0","babel-preset-stage-1","babel-preset-stage-2","babel-preset-stage-3", +"babel-register","babel-runtime","babel-template","babel-traverse","babel-types","babelify","babylon","backbone", +"baqend","bark-needs-visit4", +"base-64","base-individual-comfortable-crop","base64-js","basic-auth","batuta","bcrypt","bcrypt-nodejs","bcryptjs", +"bearcat","beautify-benchmark","beauty-foot-compass5","beefy","believed-usually-greater-passage","benchmark", +"best-lips-shoulder","best-valley2","between-cry-additional","beyond","bfj","bignumber.js","bindings","bip39", +"bizcharts","bl","blanket","blessed","blessed-contrib","blockchain-am5","blockchain-baby","blockchain-back1", +"blockchain-closely","blockchain-directly","blockchain-egg","blockchain-happily","blockchain-language","blockchain-own8", +"blockchain-record","blockchain-scientist","blocked","bluebird","bn.js","body-parser","bookshelf","boom","bootstrap", +"bootstrap-sass","bower","boxen","brain","branch-body-web3-feel","branch-camera-web3-organization","brfs", +"broccoli-funnel","broccoli-merge-trees","broccoli-test-helper","brought-tried-whether8","browser-sync","browserify", +"browserify-shim","browserslist","bs58","bson","btoa","buble", +"buffer","buffer-equal","bufferutil","built-who-entire","builtin-modules","bulma","bump-cli","bundle-collapser","bunyan", +"busboy","bytebuffer","bytes","c8","cac","cache-manager","call-bind","camelcase","caniuse","caniuse-lite","canvas", +"careful-faster-dirty-matter","case-sensitive-paths-webpack-plugin","casperjs","caught-brain-service0","chai", +"chai-as-promised","chai-passport-strategy","chai-subset","chalk","chance","chance-able-necessary-bell","change-case", +"changelogen","chart.js","cheerio","chicken-fell-spread","child_process","child-process-promise","choerodon-ui", +"chokidar","ci-info","ckeditor5","classnames","clean-css","clean-webpack-plugin","clear","clear-module","cli", +"cli-boxes","cli-color","cli-cursor","cli-spinner","cli-spinners","cli-table","cli-table2","cli-table3","cli-truncate", +"cli-ux","clipanion","clipboard","clipboardy","cliui","clone","clsx", +"clui","co","co-prompt","code","codecov","codemirror","coffee-script","coffeescript","color","colorette","colors", +"columnify","command-exists","command-line-args","command-line-usage","commander","commitizen","commitlint", +"common-tags","component-emitter","compression","concat-stream","concurrently","config","configstore","connect", +"connect-flash","connect-history-api-fallback","connect-mongo","connect-redis","consola","consolidate", +"content-disposition","content-type","contenthook","conventional-changelog","conventional-changelog-cli", +"conventional-changelog-conventionalcommits","convert-source-map","cookie","cookie-parser","cookie-session", +"cookie-signature","copy-to-clipboard","copy-webpack-plugin","copyfiles","corcojs-qrcode","corcojs-qrcode-logo", +"cordova","core-js","cors","cosmiconfig","coveralls","cpy-cli","crawler","crc","create-hash","create-react-class", +"critical","cron","croner","cronnor","cropperjs","cross-env", +"cross-fetch","cross-spawn","crypto","crypto-browserify","crypto-js","cson-parser","cspell","css", +"css-declaration-sorter","css-functions-list","css-loader","css-minimizer-webpack-plugin","css-select","css-tree", +"cssdb","cssesc","cssnano","cssstyle","csstype","csurf","csv","csv-generate","csv-parse","csv-stringify","csvtojson", +"cucumber","cuid","cypress","cz-conventional-changelog","d3","d3-array","d3-scale","d3-selection","d3-shape", +"dable-effect","daisyui","dance-you-thou","dargs","datafire","date-fns","dateformat","dayjs","deasync","debounce", +"debug","decamelize","decompress","dedent","dedupe","deep-assign","deep-consist-ability3","deep-diff","deep-eql", +"deep-equal","deep-extend","deepmerge","del","del-cli","delay","depcheck","depd","dependency-check","depth-clay-tax7", +"detect-indent", +"detect-port","did-enter-lay","diff","diff2html","difference-mile-pocket5","directed-graph-typed","dirty-chai", +"discord-backend-manager","discord.js","dist","distance-its-clear-rate","dmd","dmd-grunt-jsdoc2md","dnd-multi-backend", +"dnode","doc-detective","doc-detective-core","docco","docgen","dockerode","docpad","docschema","docsify-tabs","doctoc", +"documentation","documentdb","docusaurus","docusaurus-lunr-search","dom-helpers","dom-serializer","dom-to-image-more", +"dompurify","dot","dotenv","dotenv-expand","download","download-git-repo","doxdox","doxdox-cli","doxdox-core", +"doxdox-parser-dox","doxdox-parser-jsdoc","doxdox-renderer-bootstrap","doxdox-renderer-json","doxdox-renderer-markdown", +"draft-js","dropzone","dtslint","dubnium","dumi","dumi-cm","duplexer","dw-neit-antd","each","echarts","eclint","ejs", +"elasticsearch","electricity-death-web3-story","electron","electron-builder","electron-packager","electron-prebuilt", +"electron-rebuilder", +"element-resize-detector","element-ui","eleventy","elliptic","email-templates","emailjs","ember-cli","ember-cli-babel", +"ember-cli-htmlbars","emmet","emotion","encodeurl","end-of-stream","enhanced-resolve","enquirer","ent","enumtype", +"envify","envinfo","enzyme","enzyme-adapter-react-16","enzyme-adapter-utils","enzyme-shallow-equal","errorhandler", +"es-check","es-value-fixtures","es5-ext","es5-shim","es6-error","es6-promise","es6-promisify","es6-shim","esbuild", +"escape-html","escape-string-regexp","escodegen","eslint","eslint-config-airbnb","eslint-config-airbnb-base", +"eslint-config-airbnb-typescript","eslint-config-google","eslint-config-gulp","eslint-config-oclif", +"eslint-config-oclif-typescript","eslint-config-prettier","eslint-config-react-app","eslint-config-semistandard", +"eslint-config-standard","eslint-config-unjs","eslint-config-xo","eslint-config-xo-lass","eslint-doc-generator", +"eslint-import-resolver-typescript","eslint-loader","eslint-plugin-ava","eslint-plugin-babel","eslint-plugin-compat", +"eslint-plugin-es5","eslint-plugin-eslint-comments","eslint-plugin-eslint-plugin","eslint-plugin-flowtype", +"eslint-plugin-html","eslint-plugin-import","eslint-plugin-jest", +"eslint-plugin-jsdoc","eslint-plugin-jsonc","eslint-plugin-jsx-a11y","eslint-plugin-markdown","eslint-plugin-mocha", +"eslint-plugin-n","eslint-plugin-node","eslint-plugin-prettier","eslint-plugin-promise","eslint-plugin-react", +"eslint-plugin-react-hooks","eslint-plugin-regexp","eslint-plugin-security","eslint-plugin-sonarjs", +"eslint-plugin-standard","eslint-plugin-svelte","eslint-plugin-testing-library","eslint-plugin-tsdoc", +"eslint-plugin-unicorn","eslint-plugin-vitest","eslint-plugin-vue","eslint-remote-tester","eslint-scope", +"eslint-visitor-keys","eslintrc","esm","espree","esprima","estraverse","estree-walker","etag","ethereumjs-tx", +"ethereumjs-util","evalmd","event-stream","eventemitter2","eventemitter3","events","excellent-difficult-good","execa", +"exit","expect","expect-type","expect.js","express","express-adexe","express-autodoc","express-generator", +"express-handlebars","express-jwt","express-session","express-tools","express-typed-rpc","express-validator", +"express-zod-api","extend","extend-shallow","extract-text-webpack-plugin","extract-zip","facing-cook", +"fair-tower-web3-store","faker","fancy-log","fast-check", +"fast-csv","fast-deep-equal","fast-glob","fast-plist","fast-xml-parser","fastclick","fastify","father","faucet","fbjs", +"fe-pilot","feature-rising-small7","femo","fetch-mock","fibers","figlet","figures","file-loader","file-saver", +"file-type","filesize","finalhandler","find-cache-dir","find-up","findup-sync","firan-logging","firebase", +"firebase-admin","firebase-tools","fixpack","fixturify","flat","flatpak-bundler","flatpickr","flightplan","flow-bin", +"flowbite","fluent-ffmpeg","flux","follow-redirects","font-awesome","for-each","forever", +"fork-ts-checker-webpack-plugin","fork-ts-checker-webpack-plugin-alt","form-data","formidable","formik","fresh", +"fresh-dangerous","friendly-errors-webpack-plugin","front-matter","fs","fs-extra","fs-jetpack","fs-promise","fsevents", +"fstream","ftp","functions-have-names","fur-race-web3-pale","fuse.js","futen","fuzzy", +"gaze","gc-signals","generator-angular","generator-gulp-angular","generator-nitro","generic-pool","gensequence", +"gentle-party-other","geolib","get-package-type","get-port","get-stdin","get-stream","get-tsconfig","getmac","gh-pages", +"ghooks","github","github-buttons","glob","glob-parent","global","globals","globby","gm","gmll","google-spreadsheet", +"googleapis","got","government-letter-web3-till","govuk-frontend","graceful-fs","gradually-current-chief","graph-these", +"graphql","graphql-tag","graphql-tools","gray-matter","grpc","grunt","grunt-angular-templates","grunt-auto-release", +"grunt-browserify","grunt-bump","grunt-cli","grunt-concurrent","grunt-contrib-clean","grunt-contrib-compass", +"grunt-contrib-concat","grunt-contrib-connect","grunt-contrib-copy","grunt-contrib-csslint","grunt-contrib-cssmin", +"grunt-contrib-htmlmin","grunt-contrib-imagemin","grunt-contrib-internal","grunt-contrib-jshint","grunt-contrib-less", +"grunt-contrib-nodeunit","grunt-contrib-sass","grunt-contrib-uglify","grunt-contrib-watch", +"grunt-conventional-changelog","grunt-conventional-github-releaser", +"grunt-eslint","grunt-jscs","grunt-jsdoc","grunt-karma","grunt-mocha-test","grunt-newer","grunt-notify","grunt-npm", +"grunt-sass","grunt-saucelabs","grunt-shell","grunt-simple-mocha","grunt-spritesmith","grunt-usemin","gts","guarapi", +"gulp","gulp-angular-templatecache","gulp-atom-electron","gulp-autoprefixer","gulp-awspublish","gulp-azure-storage", +"gulp-babel","gulp-bom","gulp-bower","gulp-browserify","gulp-buffer","gulp-bump","gulp-cache","gulp-cached", +"gulp-changed","gulp-clean","gulp-clean-css","gulp-coffee","gulp-compass","gulp-concat","gulp-concat-css", +"gulp-conflict","gulp-connect","gulp-copy","gulp-csscomb","gulp-csslint","gulp-cssnano","gulp-csso","gulp-data", +"gulp-eslint","gulp-file-include","gulp-filter","gulp-flatmap","gulp-flatten","gulp-format-md","gulp-ftp", +"gulp-gh-pages","gulp-git","gulp-gzip","gulp-handlebars","gulp-header","gulp-html-replace","gulp-htmlmin", +"gulp-iconfont","gulp-if","gulp-ignore","gulp-image-resize","gulp-imagemin", +"gulp-include","gulp-inject","gulp-inline-css","gulp-install","gulp-istanbul","gulp-jade","gulp-jasmine","gulp-jscs", +"gulp-jshint","gulp-json-editor","gulp-less","gulp-livereload","gulp-load-plugins","gulp-minify-css","gulp-minify-html", +"gulp-mocha","gulp-newer","gulp-ng-annotate","gulp-nodemon","gulp-notify","gulp-plugin-extras","gulp-plumber", +"gulp-postcss","gulp-preprocess","gulp-prompt","gulp-react","gulp-remote-src","gulp-rename","gulp-replace","gulp-rev", +"gulp-rev-replace","gulp-ruby-sass","gulp-sass","gulp-sftp","gulp-shell","gulp-size","gulp-sourcemaps", +"gulp-strip-debug","gulp-stylus","gulp-svg-sprite","gulp-svgmin","gulp-svgstore","gulp-template","gulp-tsb", +"gulp-tslint","gulp-typescript","gulp-uglify","gulp-uncss","gulp-usemin","gulp-useref","gulp-util","gulp-vinyl-zip", +"gulp-watch","gulp-webpack","gulp-webserver","gulp-zip","gulp.spritesmith","gzip-size","hallmark","hammerjs", +"handlebars","hapi","happy-dom","happy-meant", +"hard-cool-rhythm-continued","has-flag","has-parts-ice-fact","has-symbols","hash-sum","hasown","hast-util-raw", +"hast-util-sanitize","hast-util-select","hast-util-to-estree","hast-util-to-html","hast-util-to-jsx-runtime", +"hast-util-to-string","hast-util-to-text","hastscript","hay-against-any-hurry","hbs","he","heapdump","helmet", +"heroicons","hexlet-pairs","hexo","highland","highlight.js","hiredis","history","history-brass-sound", +"hit-running-special8","hoek","hogan.js","hoist-non-react-statics","homebridge","hono","hope-slight-walk1", +"hosted-git-info","how-to-npm","html-dom-parser","html-element-attributes","html-encoding-sniffer","html-entities", +"html-escaper","html-loader","html-minifier","html-minifier-terser","html-pdf","html-react-parser","html-tags", +"html-to-image","html-to-text","html-validate","html-webpack-plugin","htmlnano","htmlparser2","http","http-errors", +"http-proxy","http-proxy-agent","http-proxy-middleware","http-server","http-status","http-status-codes","https", +"https-proxy-agent", +"husky","hyperquest","hyphenate-style-name","i","i18n","i18next","i18next-gridly-backend","iconv-lite", +"identity-obj-proxy","ignore","image-size","imagemagick","imagemin","imagemin-pngquant","imap","immer", +"immutability-helper","immutable","import-fresh","import-local","impress","in-publish","indent-string","inert","inferno", +"inflection","inherits","ini","iniparser","ink","inline-style-parser","innosetup-compiler","inquirer", +"inquirer-autocomplete-prompt","inside-throw","instagram-node","install","interpret","intl","intl-tel-input","invariant", +"inversify","ionic","ionicons","ioredis","ip","irc","is","is-ci","is-glob","is-installed-globally","is-plain-obj", +"is-plain-object","is-potential-custom-element-name","is-promise","is-stream","is-url","is-wsl","isarray","isobject", +"isomorphic-fetch","istanbul","itwcw-package-analytics","iview", +"jackspeak","jade","jake","jarallax","jasmine","jasmine-core","jasmine-node","jest","jest-canvas-mock","jest-cli", +"jest-diff","jest-environment-jsdom","jest-environment-jsdom-fourteen","jest-environment-node","jest-extended", +"jest-html-reporters","jest-junit","jest-pnp-resolver","jest-resolve","jest-util","jest-watch-typeahead","jest-worker", +"jimp","jiti","jodit","jodit-react","johnny-five","joi","jotai","jquery","jquery-ui","js-base64","js-beautify", +"js-cookie","js-yaml","jsarch","jscpd","jscs","jsdoc","jsdoc-api","jsdoc-to-markdown","jsdom","jsdom-no-contextify", +"jsesc","jshint","jshint-stylish","json-2-csv","json-loader","json-schema","json-server","json-stable-stringify", +"json-stringify-safe","json5","jsonc-parser","jsonfile","jsonschema","JSONStream","jsonwebtoken","jspm","jstates", +"jszip","jwt-decode","jwt-simple","karma", +"karma-browserify","karma-browserstack-launcher","karma-chai","karma-chrome-launcher","karma-coverage", +"karma-detect-browsers","karma-edge-launcher","karma-firefox-launcher","karma-ie-launcher","karma-jasmine","karma-mocha", +"karma-mocha-reporter","karma-phantomjs-launcher","karma-qunit","karma-rollup-preprocessor","karma-safari-launcher", +"karma-sauce-launcher","karma-sinon","karma-sourcemap-loader","karma-spec-reporter","karma-webpack","keycode","keypress", +"keyv","kleur","knex","knip","known-css-properties","knox","koa","koa-body","koa-bodyparser","koa-compose","koa-logger", +"koa-mount","koa-router","koa-static","kue","lab","label-lungs-court4","language-perfectly-blow-series", +"late-dress-mail5","latest-version","lazy.js","lead-alike-web3-applied","leaflet","left-pad","leftpad","lerna","less", +"less-loader","level","leveldown","levelup","leven","libnpmdiff","libnpmexec","libnpmfund","libphonenumber-js","liftoff", +"lilconfig","linkifyjs","lint-staged","listr", +"listr2","lit-element","lite-server","live-server","livereload","load-grunt-config","load-grunt-tasks","loader-utils", +"local-web-server","localforage","localtunnel","lockfile-lint","lodash","lodash-es","lodash.assign","lodash.camelcase", +"lodash.clonedeep","lodash.debounce","lodash.defaults","lodash.flatten","lodash.foreach","lodash.get","lodash.isempty", +"lodash.isequal","lodash.isfunction","lodash.isobject","lodash.isplainobject","lodash.isstring","lodash.map", +"lodash.memoize","lodash.merge","lodash.omit","lodash.pick","lodash.set","lodash.template","lodash.throttle", +"lodash.uniq","log","log-symbols","log-update","log4js","loglevel","long","loopback","loose-envify","lowdb","lru-cache", +"lucide","luck-rubber-do","lwip","lws","madwizard","magic-string","magmastream","main-bower-files","make-dir", +"make-node","mammoth","manifest","mantine-contextmenu","many-favorite6","map-stream","mapboxgl-legend","markdown", +"markdown-it","markdown-it-anchor","markdown-it-container","markdown-it-emoji","markdown-pdf","markdown-table", +"markdown-to-jsx","markdown-toc","markdownlint","markdownlint-cli","marked","marky-markdown","matcha","material-ui", +"mathjs","matter-view-web3-fence","md5","md5-file","mdast-util-from-markdown","mdast-util-to-hast","mdn-data","mdxts", +"memcached","memfs","memoize-one","memory-cache","memory-fs","memorystream","memwatch","mental-oxygen-dozen","meow", +"merge","merge-stream","metalsmith","meteor","method-override","methods","microbundle","micromark","micromatch","mime", +"mime-types","min-heap-typed","mini-css-extract-plugin","minify","minimatch","minimist","mirror-jet-printed-supper", +"missing-sport-living","mkcert","mkdirp","mlly","mobx","mobx-react","mocha","mocha-headless-chrome", +"mocha-junit-reporter","mocha-lcov-reporter","mock-fs","mock-property","mock-require","mock-stdin","mockdate","mockery", +"mockjs","moleculer","moment","moment-timezone","monaco-yaml","monads-io","mongo-express","mongodb","mongoose","monitor", +"monitor-dashboard","monk","morgan","motor-positive-spirit","move-wolf-throughout","movie-obtain-tail-prepare","mqtt", +"ms","mssql","msw","mud-slowly-five3","multer","multimatch","multiparty","multiple-cucumber-html-reporter","mustache", +"muuri","mysql","mysql2","mz","n","nails-wild-interest-garden","nan","nano","nano-css","nanoid","native-keymap", +"nativefier","nativescript","natural","nconf","ncp","near-social-bridge","nedb","needle","nest-commander","newman", +"newrelic","next-auth","nextjs","ng-mocks","ng-zorro-antd","ngrok","nib","nightmare","nightwatch","nine-yes-merely6", +"nise","nock","node-addon-api","node-cache","node-containerpattern","node-dev","node-dir", +"node-emoji","node-fetch","node-forge","node-gcm","node-geocoder","node-gyp","node-html-parser","node-inspector", +"node-mocks-http","node-notifier","node-oauth2-server","node-powertools","node-pre-gyp","node-pty","node-red", +"node-sass","node-schedule","node-static","node-uuid","node-watch","node-windows","node-xlsx","node.extend","nodegit", +"nodemailer","nodemon","nodeunit","nodewebkit","nolangjs","nomnom","nopt","normalize-path","normalize-url", +"normalize-wheel","normalize.css","np","npm","npm-check","npm-check-updates","npm-package-arg","npm-package-json-lint", +"npm-packlist","npm-registry-fetch","npm-run-all","npm-run-all2","npm-run-path","npm-to-yarn","npm-windows-upgrade", +"npmcli","npmignore","npmlog","nprogress","nsp","nuke-cli","numeral","nunjucks","nvm","nvmrc","nwsapi","nx","nyc","oas", +"oas-normalize","oauth", +"object-assign","object-hash","object-inspect","object-keys","object-path","object.assign","object.entries", +"observe-food-motion-hidden","on-finished","once","onchange","one-how-hand","onoff","open","open-cli", +"openapi-client-axios","openapi2html","opencv","opener","openweather","opn","optimist", +"optimize-css-assets-webpack-plugin","optionator","ora","orchestrator","orm","os","osenv","outdent","outline-slowly", +"overlayscrollbars","ovsx","p-event","p-map","p-queue","p-timeout","p23","pa11y","pacote","pageres","paintor","pako", +"para-cli","para-client-js","parallelshell","parse","parse5","parseurl","passport","passport-facebook","passport-local", +"passport-oauth","passport-oauth2","passport-strategy","path","path-browserify","path-exists","path-is-absolute", +"path-to-regexp","pathe","paypal-server-api","pdfjs","pdfkit", +"performance-now","pg","phantom","phantomjs","phantomjs-prebuilt","phonegap","pi-gpio","picocolors","picomatch", +"pie-case-nor-great","pify","pino","pinst","pitch-somehow-earth-brave","pixelmatch","pkg-dir","pkg-up","pkginfo", +"playwright","plist","plugin-error","plur","pluralize","pm2","pngjs","pnp-webpack-plugin","pnpm","pnpx", +"poe-api-manager","polished","political-plan-careful","popper.js","portfinder","postcss","postcss-calc","postcss-cli", +"postcss-color-functional-notation","postcss-colormin","postcss-convert-values","postcss-cssnext","postcss-custom-media", +"postcss-custom-properties","postcss-custom-selectors","postcss-discard-comments","postcss-discard-duplicates", +"postcss-discard-empty","postcss-discard-overridden","postcss-flexbugs-fixes","postcss-html", +"postcss-image-set-function","postcss-import","postcss-load-config","postcss-loader","postcss-merge-longhand", +"postcss-merge-rules","postcss-minify-font-values","postcss-minify-gradients","postcss-minify-params", +"postcss-minify-selectors","postcss-modules-local-by-default","postcss-nested","postcss-nesting","postcss-normalize", +"postcss-normalize-charset", +"postcss-normalize-positions","postcss-normalize-string","postcss-normalize-unicode","postcss-normalize-url", +"postcss-normalize-whitespace","postcss-ordered-values","postcss-prefix-selector","postcss-preset-env", +"postcss-reduce-initial","postcss-safe-parser","postcss-scss","postcss-selector-parser","postcss-svgo", +"postcss-unique-selectors","postcss-value-parser","postgrejs","posthtml","pouchdb","power-assert","pre-commit","preact", +"prepare-package","prettier","prettier-plugin-jsdoc","prettier-plugin-organize-imports","prettier-plugin-packagejson", +"prettier-plugin-svelte","prettierrc","pretty-bytes","pretty-error","pretty-format","pretty-ms","pretty-quick", +"prettyjson","prisma","prismjs","private-bower","proc-log","process","progress","progress-bar-webpack-plugin","promise", +"promise-polyfill","promises-aplus-tests","promo-server","prompt","prompts","prop-types","property-information", +"protobufjs","protractor","proxy","proxyquire","publish-please","pug","pull-stream","pump","punycode","puppeteer", +"purgecss","q","qr-image","qrcode-terminal","qs", +"query-string","querystring","queue","queue-typed","quill","qunit","qunit-dom","qunitjs","raf","ramda","random-words", +"randombytes","randomstring","range-parser","raven","raw-body","raw-loader","rc","rc-slider","rc-tooltip","rc-util", +"rcw-plugin","react","react-addons-css-transition-group","react-addons-shallow-compare","react-apollo", +"react-app-polyfill","react-bootstrap","react-color","react-copy-to-clipboard","react-datepicker","react-dev-utils", +"react-dnd","react-dnd-html5-backend","react-docgen","react-dom","react-dropzone","react-error-overlay","react-helmet", +"react-hook-form","react-hot-loader","react-i18next","react-icons","react-intersection-observer","react-intl","react-is", +"react-lifecycles-compat","react-markdown","react-modal","react-motion","react-native","react-native-keychain", +"react-native-vector-icons","react-number-format","react-onclickoutside","react-property","react-redux","react-refresh", +"react-responsive","react-router","react-router-dom","react-router-redux","react-scripts","react-select", +"react-slick","react-styleguidist","react-svg","react-tap-event-plugin","react-test-renderer","react-toastify", +"react-tools","react-transition-group","react-virtualized","reactify","reactstrap","read","read-pkg","read-pkg-up", +"readable-stream","readline","readline-sync","recall-shut-say","recast","recently-building-save","rechoir","recompose", +"recursive-readdir","redis","redoc","redocusaurus","redux","redux-actions","redux-form","redux-logger","redux-saga", +"redux-thunk","reflect-metadata","regenerate","regenerator-runtime","rehype","rehype-autolink-headings", +"rehype-external-links","rehype-mdx-code-props","rehype-parse","rehype-raw","rehype-slug","rehype-stringify", +"release-it","remap-istanbul","remark","remark-cli","remark-gfm","remark-html","remark-mermaidjs","remark-parse", +"remark-preset-github","remark-preset-wooorm","remark-rehype","remarkable","replace-ext","replace-in-file","request", +"request-promise","request-promise-native","require-all","require-dir","requireindex","requirejs", +"reselect","resize-observer-polyfill","resolve","resolve-from","resolve-url-loader","rest-chronicle","restify","restler", +"restore-cursor","rethinkdb","retry","rewire","rfdc","rimraf","robotjs","rollup","rollup-plugin-babel", +"rollup-plugin-buble","rollup-plugin-cleanup","rollup-plugin-commonjs","rollup-plugin-dts","rollup-plugin-json", +"rollup-plugin-license","rollup-plugin-node-builtins","rollup-plugin-node-globals","rollup-plugin-node-resolve", +"rollup-plugin-replace","rollup-plugin-sourcemaps","rollup-plugin-terser","rollup-plugin-typescript", +"rollup-plugin-typescript2","rollup-plugin-uglify","rollup-plugin-visualizer","rollup-pluginutils","routes","rsnext", +"rsvp","rtlcss","run-sequence","run-series","rx","rxjs","rxjs-compat","safe-buffer","safe-publish-latest","sails", +"salt-type-oldest-faster","sand-have-metal6","sanitize-filename","sanitize-html","sass","sass-loader","sat-local","sax", +"scheduler","schema-markdown-doc","schema-utils","science-knowledge-truth","seblakhotspicy","secp256k1","seedrandom", +"selenium-webdriver","semantic-release","semantic-ui-react", +"semistandard","semver","send","seneca","sentiment","sequelize","serialize-javascript","serialport","serve", +"serve-favicon","serve-index","serve-static","server-destroy","serverless-finch","serverless-spy","sha1","shallowequal", +"sharp","shell-quote","shelljs","shinning-continued-becoming","shortid","should","showdown","shx","sick-typical-court7", +"signal-exit","similar-cheese-loss","simple-assi-animation","simple-git","simple-prompts-web3","single-spa", +"sink-mighty-orbit0","sink-rod-lamp","sinon","sinon-chai","sinopia","sirv","size-limit","sizeitup","skapi-js", +"sky-buy-web3-rock","slash","slice-ansi","slow-deps","slow-voice-spell-pass","slug","slugify","small-grow-mix4", +"snake-seven-recall-interior","snazzy","soap","socket.io","socket.io-client","sockjs-client","source-map", +"source-map-js","source-map-loader","source-map-support","space-separated-tokens","spectaql", +"speech-section-part-frozen","spirit-labor-cheese","split", +"split2","spring-dust-wall-size","sprintf","sprintf-js","sprity","sqlite3","ssh2","ssri","st.db","stack-trace", +"standard","standard-version","star-location","start-server-and-test","statsd","statuses","stock-independent-balloon", +"storybook","storybook-django","straiforos-compodoc","strange-lady-riding9","stream-assert","stream-transform", +"streamii","strftime","string","string-strip-html","string-width","stringify-entities","strip-ansi","strip-bom", +"strip-json-comments","stripe","strongloop","style-dictionary","style-loader","style-to-js","style-to-object", +"styled-components","styled-jsx","stylehacks","stylelint","stylelint-config-standard", +"stylelint-declaration-strict-value","stylelint-order","stylelint-scss","stylus","stylus-loader", +"sugar-policeman-entire","sugarss","sun-grass-circle0","superagent","superjson","supertest","supertest-as-promised", +"supervisor","support-vessels-web3-vessels","supports-color","surrounded-characteristic-or-rain","svelte","svelte-check", +"svelte-preprocess","svg-sprite","svgo", +"sw-precache-webpack-plugin","swagger-autogen","swagger-inline","swagger-themes","swagger-ui-express", +"swam-darkness-weak","swig","swiper","sync-request","systeminformation","systemjs","tail-iron-became5","tailwind", +"tailwind-merge","tailwindcss","tap","tap-spec","tapable","tape","tar","tar-fs","tar-stream","tarant", +"tarant-sync-router-express","tdl","tdlib-native","temp","tempy","terminal-kit","terminal-menu","terser", +"terser-webpack-plugin","test-cutting","test-runner","test-snippets","testcafe","testcontainers","testdouble","testem", +"text-table","three","throttle-debounce","through","through2","throw-did-darkness4","thunkify","tildify","time-grunt", +"tinper-bee","tiny-lr","tinybench","tinycolor2","tinymce","tinypool","tinyspy","tmp","toastify-react-native","tocbot", +"toml","touch","tough-cookie","tracer","traffic-carry-opinion","train-stick-swept7", +"traverse","tree-kill","tribe-leaving-basket","trpc","trumpet","ts-cache-mongoose","ts-japi","ts-jest","ts-loader", +"ts-migrate-mongoose","ts-morph","ts-node","ts-patch-mongoose","ts-pnp","ts-rule-engine","tsconfig-paths","tsd", +"tsd-lite","tshy","tslib","tslint","tslint-config-prettier","tslint-react","tsup","tsx","turndown","tv4","tweetnacl", +"twemoji","twit","twitter","type-coverage","type-fest","type-is","typedoc","typedoc-material-theme", +"typedoc-plugin-extras","typedoc-plugin-markdown","typedocs","typegen","typegoose","typeorm","typescript", +"typescript-eslint","typescript-formatter","typescript-plugin-css-modules","typings","uglify-es","uglify-js", +"uglifyjs-webpack-plugin","uid-safe","uiw","uj-apidoc-core","ulid","ultrahtml","unbuild","underscore", +"underscore.string","undici","unified","unique-random-array","unist-util-visit","untildify","unusual-rope", +"unzip","update-notifier","urijs","url","url-join","url-loader","url-parse","urllib","user","user-home","useragent", +"utf8","util","utils-merge","uuid","uvu","valid-url","validate-commit-msg","validate-npm-package-name","validator", +"vant","vary","vasync","vercel","verror","vhost","victory-mouth","viewerjs","vinyl","vinyl-buffer","vinyl-fs", +"vinyl-source-stream","vinyl-sourcemaps-apply","virtual-dom","vite","vite-plugin-api-routes","vitepress","vitest", +"vorpal","vows","vsce","vscode-debugprotocol","vscode-nls-dev","vscode-textmate","vue","vue-class-component", +"vue-eslint-parser","vue-hot-reload-api","vue-i18n","vue-loader","vue-property-decorator","vue-router", +"vue-style-loader","vue-template-compiler","vuex","walk","walk-sync","warning","watch","watchify","waterline","wd", +"web3","web3-be", +"web3-capital","web3-compass","web3-eve-cli","web3-exactly6","web3-fruit","webpack","webpack-bundle-analyzer", +"webpack-cli","webpack-dev-middleware","webpack-dev-server","webpack-hot-middleware","webpack-manifest-plugin", +"webpack-merge","webpack-node-externals","webpack-sources","webshot","websocket","webtorrent","webworker-threads", +"weinre","whatwg-fetch","when","which","winreg","winston","winston-daily-rotate-file","winston-transport","wiredep", +"word-wrap","wordwrap","workbox-webpack-plugin","world-toy-kill","wrap-ansi","wrench","write-file-atomic","ws","x-ray", +"xhr","xlsx","xml-js","xml2js","xml2json","xmlbuilder","xmldom","xmlhttprequest","xo","xpath","xregexp","xss","xstate", +"xtend","xterm","yaml","yamljs","yargs","yargs-parser","yarn","yarnpkg","yarnrc","yauzl","yeoman-environment", +"yeoman-generator","yn","yo", +"yoctocolors-cjs","yonode","yosay","zmq","zod","zod-http-schemas","zombie","zone.js","zuul","@nx/cypress", +"@nx/eslint-plugin","@nx/jest","@nx/storybook","framer-motion","teajusgula","@mui/styled-engine","jsdoc-parse", +"@commercetools-frontend/constants","downshift","postcss-focus-visible","@augment-vir/common","@biomejs/biome", +"@commercetools-frontend/mc-scripts","@jsonforms/vanilla-renderers","@jsonforms/vue","@jsonforms/vue-vanilla", +"hast-util-from-html","hot-shots","madr","native-run","rehype-katex","supports-hyperlinks","swr","typed-binary", +"ua-parser-js","void-elements","@adonisjs/core","@aneuhold/be-ts-lib","@capacitor/assets", +"@devtea2025/blanditiis-numquam-expedita-neque","@devtea2025/doloremque-voluptas-facere-nemo", +"@devtea2025/quisquam-quod-ab-aut","@devtea2025/suscipit-assumenda-a-assumenda", +"@devtea2025/voluptatibus-vero-magni-rerum","@diahkomalasarinpm/odio-facilis-beatae", +"@diahkomalasarinpm/praesentium-sint-dolorem","@enact/core","@envelop/core","@ionic/cli","@jsonforms/angular", +"@jsonforms/examples","@npmtea2024/quasi-nisi-doloremque-fugit","@ptkhanh94npm/iusto-libero-aperiam", +"@ptkhanh94npm/quis-saepe-velit","@renyii/vue-renderless","@teamteanpm2024/aperiam-fugit-error", +"@teamteanpm2024/architecto-alias-quod","@teamteanpm2024/aut-voluptatum-vero","@teamteanpm2024/beatae-aliquid-id", +"@teamteanpm2024/expedita-labore-ipsum","@teamteanpm2024/odio-fugiat-in", +"@teamteanpm2024/voluptatibus-reprehenderit-odit","@testing-library/react-hooks","@zibuthe7j11/deserunt-quasi-impedit", +"anser","aws-sdk-client-mock","cupertino-pane","eruda","fasteejs","foundation-sites","gradient-string","grommet", +"html-url-attributes","magnific-popup","next","postcss-opacity-percentage","pwa-asset-generator","rapidoc", +"react-native-animatable","react-native-collapsible","react-swipeable-list","react-textarea-autosize","readme-md", +"recharts","riot","sortablejs","tdesign-mobile-vue","uploadcare-widget","wait-on","weui","zustand","fontsource","nextra", +"synckit","tinyglobby","tstyche","@ibyar/expressions","@mantine/carousel","@mantine/code-highlight","@mantine/dropzone", +"@mantine/nprogress","@mantine/spotlight","@mantine/store","@mantine/tiptap","allure-js-commons","express-intlayer", +"is-mobile","rehype-mermaid","@bugsnag/react-native","@enact/ui","@enact/webos","@ionic/angular", +"@npmtuanmap/velit-nobis-nostrum-nam","@skylernpm/hic-inventore-dolores","@skylernpm/reiciendis-non-corrupti", +"admin-lte","backendless","smartbanner.js","zarm","@enact/sandstone","perfect-scrollbar","react-responsive-select", +"titanium","@antora/logger","@asyncapi/generator","@docusaurus/core","@ionic/react","@juggle/resize-observer", +"@mui/base","@mui/private-theming","@mui/utils","@nestjsx/crud","@nestjsx/crud-typeorm","@netlify/framework-info", +"@next/env","@pmmmwh/react-refresh-webpack-plugin","@pothos/core","@storybook/addon-backgrounds","@strapi/strapi", +"@svgr/core","@svgr/hast-util-to-babel-ast","@tinyhttp/encode-url","@tinyhttp/logger", +"@tsparticles/interaction-external-push","@tsparticles/move-base","@tsparticles/shape-emoji", +"@tsparticles/updater-color","@tsparticles/updater-opacity","@tsparticles/updater-out-modes","@uppy/companion", +"@vuepress/core","@vuepress/markdown","@vuepress/markdown-loader","@vuepress/plugin-active-header-links", +"@vuepress/plugin-last-updated","@vuepress/plugin-nprogress","@vuepress/plugin-register-components", +"@vuepress/plugin-search","@vuepress/shared-utils","@vuepress/theme-default","@walletconnect/browser-utils", +"@walletconnect/iso-crypto","@walletconnect/legacy-modal","@walletconnect/legacy-provider", +"@walletconnect/socket-transport","@wordpress/primitives","angular-messages","angular-mocks","ansi-align", +"blocking-proxy","body-scroll-lock","broccoli","broccoli-builder","broccoli-middleware","browserstack","camelcase-css", +"character-entities","character-entities-html4","character-entities-legacy","character-reference-invalid","client-only", +"color-string","comma-separated-tokens","condense-newlines","css-mediaquery","css.escape","csso","dashdash", +"decap-cms-backend-aws-cognito-github-proxy","decap-cms-backend-azure","decap-cms-backend-bitbucket", +"decap-cms-backend-git-gateway", +"decap-cms-backend-github","decap-cms-backend-gitlab","decap-cms-backend-proxy","decap-cms-backend-test", +"device-detector-js","docsify","docsify-cli","dom7","enzyme-to-json","epub2","escape-goat","esdoc", +"eslint-rule-documentation","globals-docs","hast-util-is-element","hast-util-parse-selector","hast-util-to-parse5", +"hast-util-whitespace","html-parse-stringify","html-void-elements","http-graceful-shutdown","icss-utils", +"inferno-create-element","inferno-hydrate","inferno-vnode-flags","infima","ink-docstrap","jasminewd2", +"jest-preset-angular","jest-preview","logging-helpers","lws-index","micromark-extension-gfm-tagfilter", +"micromark-util-encode","micromark-util-html-tag-name","mobile-detect","nth-check","parse-entities","postcss-js", +"postcss-modules-values","query-selector-shadow-dom","rc-hammerjs","rdme","react-colorful","react-device-detect", +"react-easy-router","react-fast-compare","react-native-file-viewer","react-native-lightbox-v2","react-native-progress", +"react-native-svg-charts","react-native-youtube-iframe","react-popper","react-responsive-modal","react-style-singleton", +"text-hex","tsparticles","tua-body-scroll-lock","typedoc-default-themes","use-callback-ref","use-sidecar","vconsole", +"vitefu","vue-perfect-scrollbar", +"vuepress","wait-for-expect","webdriver-js-extender","webdriver-manager","widest-line","worktop", +"@antora/playbook-builder","@applitools/utils","@dataui/crud","@mui/types","@tsparticles/shape-circle", +"@tsparticles/updater-life","@tsparticles/updater-rotate","drag-drop","plasmo","react-h5-audio-player", +"@arethetypeswrong/cli","arethetypeswrong","astro","astrojs","cookiecutter","degit","tseslint","@web/test-runner-mocha", +"colord","@expressots/core","@tsparticles/interaction-particles-links","@astrojs/starlight", +"@expressots/adapter-express","@expressots/shared","@tsparticles/interaction-external-bounce", +"@tsparticles/interaction-external-remove","@tsparticles/move-parallax","@tsparticles/shape-polygon", +"@tsparticles/shape-square","pinia","@floating-ui/react","@tsparticles/shape-image","astro-expressive-code", +"netlify-cms-backend-test","rehype-expressive-code","@augment-vir/assert","cssfilter", +"@amaui/icons-material-rounded-react","@appium/types","@dataui/crud-typeorm","@tsparticles/basic", +"@tsparticles/updater-size","@onesy/icons-material-rounded-react","@tsparticles/interaction-external-grab", +"@tsparticles/interaction-particles-collisions","react-native-macos","@tsparticles/interaction-external-repulse", +"@tsparticles/slim","@ionic/react-router","@immobiliarelabs/backstage-plugin-gitlab-backend","@tsparticles/shape-star", +"kuler","@scalar/nextjs-api-reference","netlify-cms-backend-bitbucket","vendors","@busy-hour/blaze", +"@busy-hour/blaze-types","payload", +"attw","@egjs/flicking","body-scroll-lock-upgrade","@casl/ability","neostandard","@appium/schema","@modern-js/utils", +"@types/xast","css-what","grunt-svgmin","@modern-js/node-bundle-require","@axe-core/playwright","tsdown", +"careful-downloader","sonner","@ckeditor/ckeditor5-collaboration-core","embla-carousel-reactive-utils","react-smooth", +"globrex","@ckeditor/ckeditor5-real-time-collaboration","@inquirer/type","grammy","@tsparticles/plugin-hex-color", +"@tsparticles/plugin-hsl-color","@udecode/plate","loki","netlify-cms-backend-gitlab","teeny-tap","emoji-js","mercurius", +"publint","unbundle","@walletconnect/http-connection","convex-helpers","eslint-plugin-react-refresh","gulp-jsdoc3", +"netlify-cms-backend-git-gateway","borp","pagefind","@pinia/testing","leaflet-gesture-handling","@headlessui/vue", +"remeda","rolldown","valibot","netlify-cms-backend-proxy","lefthook","@nuxt/ui","country-codes-flags-phone-codes", +"embla-carousel-react","input-otp","zoroaster","embla-carousel","@assistant-ui/react","@csstools/css-calc", +"@globalart/nestjs-swagger","@graphiql/plugin-doc-explorer","@mastra/core","next-router-mock","vue-draggable-next", +"@tsparticles/plugin-rgb-color","react-native-lightbox","rolldown-vite","react-native-aes-crypto", +"@inquirer/figures","@lobehub/chat","@inquirer/confirm","@upstash/context7-mcp","@storybook/addon-vitest", +"@walletconnect/heartbeat","lory.js","react-camera-pro","react-native-nitro-modules","@csstools/css-color-parser", +"@csstools/color-helpers","shadcn","@tanstack/virtual-core","otp-io","survey-core","@appium/support","@intlayer/api", +"@prisma/dev","@architect/asap","canvaskit-wasm","@edsdk/n1ed-react","react-error-boundary","@crxjs/vite-plugin", +"@observablehq/plot","skia-canvas","@flmngr/flmngr-react","@vitest/browser-playwright","md-to-pdf","@applitools/eyes", +"@applitools/driver","@applitools/screenshoter","@tsparticles/interaction-external-slow","@tsparticles/shape-line", +"@antora/cli","@antora/navigation-builder","@openspacelabs/react-native-zoomable-view","@testcontainers/postgresql", +"unplugin","@antora/redirect-producer","@antora/site-publisher","@appium/logger","planck","stage-js","oxfmt","syncpack", +"nolyfill","@appium/base-driver","@inquirer/expand","@inquirer/select","@c15t/backend", +"@react-native-vector-icons/common","@antora/content-classifier","@tsparticles/interaction-particles-attract", +"@popperjs/core","animejs","blurup","encryptor","flickity","jstz","lexxy","mapboxgl","mongoid","nums","orms", +"pannellum","psql","svgs","swiperjs","tributejs","twbs","xbytes","dependencies","devDependencies","keywords","ts", +"big.js","@alifd/field","@alifd/overlay","@alifd/validate","shallow-element-equals","@types/react-transition-group", +"jsonp","ts-mocha","tsconfck","@types/co","html5shiv","react-axe","sass-true","@types/md5","react-live","solarlunar", +"@types/chai","@types/glob","@types/node","mochawesome","@types/jsonp","@types/react","@types/yargs","@types/big.js", +"@types/enzyme","@types/lodash","react-cropper","@types/webpack","simulate-event","@types/fs-extra","@types/inquirer", +"chrome-launcher","react-draggable","@types/react-dom","@types/stylelint","console-polyfill","fast-sass-loader", +"@alifd/doc-parser","@alifd/meet-react","@types/babel-core","@types/classnames","markdown-it-prism","@alifd/sass-mapper", +"@types/react-redux","@alifd/sass-tracker","@types/postcss-calc","@alifd/api-extractor","@alifd/dts-generator", +"babel-plugin-espower","es6-promise-polyfill","@alifd/adaptor-helper","@alifd/sassdoc-parser","eslint-plugin-cypress", +"cypress-image-snapshot","@alifd/adaptor-generate","@types/lodash.clonedeep","@types/react-router-dom", +"@alifd/babel-preset-next","@babel/plugin-syntax-jsx","css-split-webpack-plugin","karma-webdriver-launcher", +"@alifd/eslint-config-next","@types/react-test-renderer","node-sass-package-importer","stylelint-csstree-validator", +"@alifd/stylelint-config-next","stylelint-config-recommended","@types/cypress-image-snapshot", +"@types/react-copy-to-clipboard","babel-plugin-generator-prettier","@types/postcss-custom-properties", +"babel-plugin-transform-object-assign","babel-plugin-transform-proto-to-assign", +"babel-plugin-transform-react-es6-displayname","fusion","fusion design","component","ui toolkit","react-components", +"components","design","frontend","Angular CLI","Angular DevKit","core","devkit","sdk","blueprints","code generation", +"scaffolding","schematics","template","tooling","cdk","development","kit","@jridgewell/sourcemap-codec","compiler", +"@standard-schema/spec","material","material design","xhr2","@types/dom-navigation","router","rc-field-form", +"utility-types","lodash.mergewith","lodash.assignwith","normalize-css-color","react-native-codegen", +"@floating-ui/react-native","@rc-component/mini-decimal","react-native-modal-popover", +"@bang88/react-native-ultimate-listview","bisheng","jsonml.js","enquire.js", +"@types/jest","shell-utils","react-native-web","@ant-design/tools","@types/prop-types","@types/react-native", +"ant-design-palettes","react-github-button","react-native-mocker","react-document-title","react-native-screens", +"antd-mobile-demo-data","@react-navigation/stack","@types/lodash.mergewith","react-native-reanimated", +"@react-navigation/native","react-native-gesture-handler","@testing-library/react-native", +"@ant-design/icons-react-native","react-native-safe-area-context","metro-react-native-babel-preset", +"@react-native-community/eslint-config","ant","react-component","ui","framework","mobile","react native", +"@types/lodash-es","@ant-design/icons","@inline-svg-unique-id/react","icon","@auth/core","set-cookie-parser", +"@sveltejs/package","@sveltejs/adapter-auto","@types/set-cookie-parser","authentication","authjs","jwt","sveltekit", +"oidc","passwordless","fs-readdir-recursive","@jridgewell/trace-mapping","@types/fs-readdir-recursive", +"@babel/helper-transform-fixture-test-runner","6to5","es6","transpile","transpiler","js-tokens", +"@babel/helper-validator-identifier","charcodes","import-meta-resolve","gensync","@babel/helpers","@babel/template", +"@babel/generator","@jridgewell/remapping","@babel/helper-module-transforms","@babel/helper-compilation-targets", +"@types/debug","@types/semver", +"@types/resolve","@babel/plugin-syntax-flow","@types/convert-source-map","@babel/plugin-transform-flow-strip-types", +"@babel/plugin-transform-modules-commonjs","classes","const","harmony","let","modules","var","@babel/helper-fixtures", +"@babel/helper-string-parser","@babel/helper-check-duplicate-nodes","javascript","parser","tc39","ecmascript", +"@babel/helper-create-class-features-plugin","@babel/helper-plugin-test-runner","babel-plugin","moo","luxon","entities", +"liquidjs","iso-639-1","bcp-47-normalize","dependency-graph","@11ty/lodash-custom","@11ty/posthtml-urls", +"please-upgrade-node","@11ty/eleventy-utils","@11ty/recursive-copy","@11ty/dependency-tree","@sindresorhus/slugify", +"node-retrieve-globals","posthtml-match-helper","@11ty/dependency-tree-esm","@11ty/eleventy-dev-server", +"@11ty/eleventy-plugin-bundle","pretty","@iarna/toml","nano-staged","@zachleat/noop","@eslint/eslintrc", +"markdown-it-abbr","simple-git-hooks","jsx-async-runtime","@11ty/eleventy-img","@mdx-js/node-loader", +"@vue/server-renderer","zod-validation-error","@11ty/eleventy-plugin-rss","@11ty/eleventy-plugin-webc", +"@11ty/eleventy-plugin-syntaxhighlight","static-site-generator","static-site","ssg","website","jekyll","blog", +"templates","generator","11ty", +"html","liquid","@rollup/plugin-terser","@rollup/plugin-typescript","@types/benchmark","@types/bytes","stringifier", +"stylesheet","ast","css-parser","css-ast","css-tools","format","preprocessor","@advanced-rest-client/arc-icons", +"@advanced-rest-client/arc-marked","@advanced-rest-client/clipboard-copy","@advanced-rest-client/http-code-snippets", +"@advanced-rest-client/markdown-styles","@anypoint-web-components/anypoint-button", +"@anypoint-web-components/anypoint-collapse","@anypoint-web-components/anypoint-dropdown", +"@anypoint-web-components/anypoint-item","@anypoint-web-components/anypoint-listbox","@api-components/amf-helper-mixin", +"@api-components/api-annotation-document","@api-components/api-body-document","@api-components/api-example-generator", +"@api-components/api-headers-document","@api-components/api-parameters-document", +"@api-components/api-responses-document","@api-components/api-security-documentation", +"@api-components/http-method-label","lit-html","@advanced-rest-client/arc-demo-helper", +"@advanced-rest-client/oauth-authorization","@anypoint-web-components/anypoint-checkbox", +"@anypoint-web-components/anypoint-input","@anypoint-web-components/anypoint-styles", +"@api-components/api-model-generator","@api-components/api-navigation","@api-components/api-request", +"@api-components/api-server-selector","@commitlint/config-conventional","@open-wc/eslint-config","@open-wc/testing", +"@web/dev-server","@web/test-runner","@web/test-runner-playwright","typescript-lit-html-plugin","api-components", +"method-documentation","@graphql-typed-document-node/core","@wry/caches","@wry/equality","@wry/trie","optimism","apollo", +"hooks","client","cache","@asyncapi/parser","@rollup/plugin-babel","babel-plugin-source-map-support", +"asyncapi","@nicolo-ribaudo/eslint-scope-5-internals","@types/eslint","@typescript-eslint/scope-manager", +"@babel/plugin-syntax-decorators","array.prototype.concat","babel-plugin-polyfill-es-shims", +"object.getownpropertydescriptors","decorators","@babel/plugin-syntax-export-namespace-from","@babel/compat-data", +"@babel/plugin-syntax-object-rest-spread","@babel/plugin-transform-parameters","@babel/helper-module-imports", +"babel-plugin-polyfill-corejs2","babel-plugin-polyfill-corejs3","babel-plugin-polyfill-regenerator", +"@babel/runtime-corejs3","derequire","core-js-compat","@babel/preset-modules","@babel/helper-validator-option", +"@babel/plugin-transform-for-of","@babel/plugin-transform-spread","@babel/plugin-transform-classes", +"@babel/plugin-transform-literals","@babel/plugin-transform-new-target","@babel/plugin-transform-modules-amd", +"@babel/plugin-transform-modules-umd","@babel/plugin-transform-regenerator","@babel/plugin-transform-dotall-regex", +"@babel/plugin-transform-json-strings","@babel/plugin-transform-object-super","@babel/plugin-transform-sticky-regex", +"@babel/plugin-transform-block-scoping","@babel/plugin-transform-destructuring","@babel/plugin-transform-function-name", +"@babel/plugin-transform-typeof-symbol","@babel/plugin-transform-unicode-regex","@babel/plugin-syntax-import-assertions", +"@babel/plugin-syntax-import-attributes","@babel/plugin-transform-duplicate-keys", +"@babel/plugin-transform-dynamic-import","@babel/plugin-transform-reserved-words", +"@babel/plugin-syntax-unicode-sets-regex","@babel/plugin-transform-arrow-functions", +"@babel/plugin-transform-private-methods","@babel/plugin-transform-unicode-escapes", +"@babel/plugin-transform-class-properties","@babel/plugin-transform-modules-systemjs", +"@babel/plugin-transform-regexp-modifiers","@babel/plugin-transform-numeric-separator", +"@babel/plugin-transform-optional-chaining","@babel/plugin-transform-property-literals", +"@babel/plugin-transform-template-literals","@babel/plugin-transform-async-to-generator", +"@babel/plugin-transform-class-static-block","@babel/plugin-transform-object-rest-spread", +"@babel/plugin-transform-unicode-sets-regex","@babel/plugin-transform-computed-properties", +"@babel/plugin-transform-shorthand-properties","@babel/plugin-transform-export-namespace-from", +"@babel/plugin-transform-block-scoped-functions","@babel/plugin-transform-optional-catch-binding", +"@babel/plugin-transform-unicode-property-regex","@babel/plugin-transform-exponentiation-operator", +"@babel/plugin-proposal-private-property-in-object","@babel/plugin-transform-async-generator-functions", +"@babel/plugin-transform-member-expression-literals","@babel/plugin-transform-private-property-in-object", +"@babel/plugin-transform-nullish-coalescing-operator","@babel/plugin-transform-explicit-resource-management", +"@babel/plugin-transform-logical-assignment-operators","@babel/plugin-transform-named-capturing-groups-regex", +"@babel/plugin-bugfix-firefox-class-in-computed-class-key","@babel/plugin-bugfix-safari-class-field-initializer-scope", +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", +"@babel/plugin-transform-duplicate-named-capturing-groups-regex", +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression","@babel/plugin-transform-react-jsx", +"@babel/plugin-transform-react-display-name","@babel/plugin-transform-react-jsx-development", +"@babel/plugin-transform-react-pure-annotations","@babel/plugin-transform-typescript","babel-preset","pirates", +"clone-deep","@babel/helper-globals","@apidevtools/json-schema-ref-parser","@biz-dev-ops/web-components", +"@cucumber/gherkin-streams","@iframe-resizer/child","@iframe-resizer/parent","awilix","bpmn-js", +"json-schema-merge-allof","markdown-it-attrs","markdown-it-codetabs","markdown-it-footnote","markdown-it-multimd-table", +"markdown-it-plantuml-ex","markdown-it-task-lists","pdfjs-viewer-element","prince","svg-pan-zoom","swagger-ui-dist", +"web-resource-inliner","stylelint-config-standard-scss","md","openapi","bpmn","bdd","feature","async-exit-hook", +"transport","logger","backend","mri","p-limit","term-size","spawndamnit","@changesets/git","@changesets/pre", +"@changesets/read","@changesets/types","@changesets/write","@changesets/config", +"@changesets/errors","@changesets/logger","@manypkg/get-packages","package-manager-detector","@changesets/changelog-git", +"@inquirer/external-editor","@changesets/get-release-plan","@changesets/apply-release-plan", +"@changesets/should-skip-package","@changesets/get-dependents-graph","@changesets/assemble-release-plan","human-id", +"@chatscope/chat-ui-kit-styles","@fortawesome/fontawesome-free","@semantic-release/changelog","@semantic-release/git", +"@semantic-release/github","chokidar-cli","rollup-plugin-peer-deps-external","chat","reactjs","user interface","ui kit", +"communication","conversation","toolkit","library","reusable","feed","comments","social","talk","ckeditor","ckeditor 5", +"ckeditor5-feature","ckeditor5-plugin","ckeditor5-dll","@ckeditor/ckeditor5-integrations-common","wysiwyg","rich text", +"editor","contentEditable","editing","angular2","angular 5","ng","@ckeditor/ckeditor5-icons","@ckeditor/ckeditor5-enter", +"@ckeditor/ckeditor5-editor-balloon","operational transformation","ot","collaboration","collaborative","real-time", +"ckeditor5-build","@ckeditor/ckeditor5-editor-classic","@ckeditor/ckeditor5-font","@ckeditor/ckeditor5-alignment", +"@ckeditor/ckeditor5-editor-decoupled","@ckeditor/ckeditor5-editor-inline","blurhash","es-toolkit","ckeditor5-lib", +"@ckeditor/ckeditor5-watchdog", +"@ckeditor/ckeditor5-undo","@ckeditor/ckeditor5-select-all","color-parse","color-convert","vanilla-colorful", +"@types/color-convert","@ckeditor/ckeditor5-editor-multi-root","vue.js","vue component","vue.js component", +"@commitlint/format","@commitlint/lint","@commitlint/load","@commitlint/read","@commitlint/types","tinyexec", +"@commitlint/test","@commitlint/utils","@compodoc/live-server","@compodoc/ngd-transformer","@polka/send-type", +"bootstrap.native","decache","loglevel-plugin-prefix","lunr","neotraverse","opencollective-postinstall","os-name", +"polka","tablesort","vis-network","module","graph","@comunica/types","semantic","actor","messages","nf","@docsearch/css", +"@docsearch/js","@eslint/markdown","@rollup/plugin-replace","@stackblitz/sdk","bundlewatch","clean-css-cli", +"find-unused-sass-variables","hammer-simulator","hugo-bin","karma-coverage-istanbul-reporter", +"karma-jasmine-html-reporter","postcss-combine-duplicated-selectors","rollup-plugin-istanbul","sass-embedded", +"stylelint-config-twbs-bootstrap","vnu-jar","mobile-first","responsive","front-end","web","tokenizer","media query", +"matches","polyfill","postcss-plugin", +"pseudo","selector","custom","declarations","progressive","properties","utility","variables","vars","specificity", +"@cucumber/ci-environment","@cucumber/cucumber-expressions","@cucumber/gherkin","@cucumber/gherkin-utils", +"@cucumber/html-formatter","@cucumber/junit-xml-formatter","@cucumber/message-streams","@cucumber/messages", +"@cucumber/pretty-formatter","@cucumber/tag-expressions","assertion-error-formatter","capital-case","error-stack-parser", +"has-ansi","knuth-shuffle-seeded","read-package-up","string-argv","util-arity","yup","@cucumber/compatibility-kit", +"@cucumber/query","@eslint/compat","@types/dirty-chai","@types/express","@types/has-ansi","@types/lodash.merge", +"@types/luxon","@types/mocha","@types/mustache","@types/mz","@types/progress","@types/sinon-chai", +"@types/sinonjs__fake-timers","@types/stream-buffers","@types/tmp","chai-exclude","dependency-lint","genversion", +"reindent-template-literals","stream-to-string","testing","gherkin","tests","@types/mock-fs","@types/semver-compare", +"@types/signale","jest-mock-process","semver-compare","signale","deven","@diplodoc/cut-extension", +"@diplodoc/file-extension","@diplodoc/tabs-extension","@diplodoc/utils", +"get-root-node-polyfill","github-slugger","markdown-it-deflist","markdown-it-sup","markdownlint-rule-helpers", +"quick-lru","ts-dedent","@diplodoc/babel-preset","@diplodoc/lint","@diplodoc/tsconfig","@types/css", +"@types/github-slugger","@types/js-yaml","@types/markdown-it","@types/markdown-it-attrs","@types/sanitize-html", +"@vitest/coverage-v8","@vitest/ui","esbuild-sass-plugin","jest-serializer-html","markdown-it-testgen","terminal-link", +"yandex","docs","yfm","tool","tools","magic-bytes.js","@discordjs/util","discord-api-types","@sapphire/snowflake", +"@discordjs/collection","@sapphire/async-queue","@vladfrangu/async_event_emitter","turbo","@discordjs/scripts", +"eslint-config-neon","@favware/cliff-jumper","eslint-formatter-pretty","@discordjs/api-extractor", +"esbuild-plugin-version-injector","discord","api","rest","discordapp","discordjs","types","tsdoc","generated", +"@apidevtools/swagger-parser","@aws-sdk/client-s3","@diplodoc/client","@diplodoc/markdown-translation", +"@diplodoc/mermaid-extension","@diplodoc/openapi-extension","@doc-tools/yfm2xliff","@octokit/core", +"@types/json-stringify-safe","@yandex-cloud/nodejs-sdk","bem-cn-lite","threads","threads-plugin","@types/async", +"@types/chalk", +"@types/html-escaper","@types/mime-types","@types/shelljs","@types/tar-stream","markdown-it-meta","@types/markdownlint", +"@yandex-cloud/eslint-config","@yandex-cloud/prettier-config","@yandex-cloud/tsconfig","@tinyhttp/cookie-parser", +"cookie-encrypter","github-markdown-css","greenlock-express","memorystore","minisearch","selfsigned","sitemap","sql.js", +"workerpool","@types/body-parser","@types/compression","@types/express-session","@types/formidable","@types/prompts", +"@types/sass","@types/sql.js","@types/uuid","@types/workerpool","esbuild-wasm","razor","sqlite","aspx","@dnd-kit/core", +"@dnd-kit/modifiers","@dnd-kit/sortable","@dnd-kit/utilities","@stylistic/eslint-plugin","@stylistic/stylelint-plugin", +"@wordpress/dependency-extraction-webpack-plugin","lightningcss","swc-loader","@wordpress/api-fetch","scss","mixin","js", +"WordPress","@tsconfig/node22","@types/lodash.camelcase","@types/pretty-ms",".d.ts","definitions","@emotion/hash", +"@emotion/memoize","@emotion/serialize","babel-plugin-macros","find-root","stylis","babel-check-duplicated-nodes", +"styles","css-in-js","@emotion/cache","@emotion/sheet","@emotion/utils","@definitelytyped/dtslint", +"@emotion/is-prop-valid","@emotion/use-insertion-effect-with-fallbacks","@emotion/react","warun","dot-prop", +"installed-check","@typescript-eslint/types","@eslint-community/eslint-plugin-mysticatea","eslint-plugin", +"@fakeyanss/redocly-openapi-core","decko","json-pointer","mark.js","openapi-sampler","react-tabs","stickyfill", +"swagger2openapi","url-template","@cypress/webpack-preprocessor","@hot-loader/react-dom","@size-limit/preset-app", +"@types/dompurify","@types/enzyme-to-json","@types/json-pointer","@types/lunr","@types/mark.js","@types/marked", +"@types/prismjs","@types/styled-components","@types/tapable","@types/webpack-env","@wojtekmaj/enzyme-adapter-react-17", +"esbuild-loader","license-checker","lodash.noop","unfetch","OpenAPI","OpenAPI Specification","Swagger","JSON-Schema", +"API","REST","React.js","@floating-ui/dom","use-isomorphic-layout-effect","tooltip","popover","dropdown","menu","popup", +"positioning","font","font family","google fonts","inter","Inter","typeface","variable","roboto","Roboto", +"@fortawesome/fontawesome-common-types","awesome","fontawesome","svg", +"@babel/plugin-external-helpers","@fortawesome/free-brands-svg-icons","@semantic-release/exec","icons","server", +"@electron/rebuild","node-abi","@electron-forge/cli","electron-devtools-installer","@grandlinex/swagger-mate", +"@types/jsonwebtoken","@types/ms","@fastify/deepmerge","@graphql-markdown/graphql","@graphql-markdown/logger", +"@graphql-markdown/utils","@graphql-markdown/types","graphql-schema","graphql-markdown","@docusaurus/utils", +"@graphql-markdown/cli","@docusaurus/types","plugin","@tailwindcss/aspect-ratio","@tailwindcss/forms", +"@tailwindcss/typography","basename","filemanager-webpack-plugin","remove-files-webpack-plugin","sass-lint", +"configuration","boilerplate","@hapi/accept","@hapi/ammo","@hapi/boom","@hapi/bounce","@hapi/call","@hapi/catbox", +"@hapi/catbox-memory","@hapi/heavy","@hapi/hoek","@hapi/mimos","@hapi/podium","@hapi/shot","@hapi/somever", +"@hapi/statehood","@hapi/subtext","@hapi/teamwork","@hapi/topo","@hapi/validate","@hapi/code","@hapi/eslint-plugin", +"@hapi/inert","@hapi/lab","@hapi/vision","@hapi/wreck","comment-parser","@homer0/eslint-plugin", +"@homer0/prettier-config","@vitest/coverage-istanbul","leasot","@standard-schema/utils","@sinclair/typebox", +"@typeschema/core", +"@typeschema/main","@typeschema/zod","@vinejs/vine","ajv-errors","arktype","check-export-map","class-transformer", +"class-validator","computed-types","effect","fluentvalidation-ts","fp-ts","io-ts","io-ts-types","monocle-ts", +"newtype-ts","nope-validator","superstruct","typanion","vest","vite-tsconfig-paths","scheme","validation", +"scheme-validation","hookform","effect-ts","nope","TypeBox","typeschema","vine","standard-schema","google translate api", +"google translate","google api","translate api","google","translate","@atlaskit/pragmatic-drag-and-drop", +"@atlaskit/pragmatic-drag-and-drop-auto-scroll","@atlaskit/pragmatic-drag-and-drop-hitbox","vue3","vue 3.x", +"@ctrl/tinycolor","@inquirer/ansi","cli-width","fast-wrap-ansi","mute-stream","@inquirer/testing","@types/mute-stream", +"answer","answers","ask","base","command","command-line","confirm","generate","hyper","input","inquire","interface", +"iterm","node","nodejs", +"promptly","question","scaffold","scaffolder","stdin","stdout","terminal","tty","yeoman","zsh","@stencil/core","domino", +"@stencil/sass","@capacitor/core","playwright-core","@playwright/test","@capacitor/haptics","@capacitor/keyboard", +"@ionic/eslint-config","@capacitor/status-bar","@ionic/prettier-config","@rollup/plugin-virtual", +"@stencil/vue-output-target","@stencil/react-output-target","@stencil/angular-output-target","stencil","app","webapp", +"capacitor","progressive web app","pwa","layout","console","wrap","table","@istanbuljs/schema","test","coverage", +"@itwin/itwinui-illustrations-react","@swc/helpers","@tanstack/react-virtual","react-table","@swc/cli", +"eslint-plugin-require-extensions","design-system","itwin","itwinui","ux","@jest/console","@jest/pattern", +"@jest/reporters","@jest/test-result","@jest/transform","exit-x","jest-changed-files","jest-config","jest-haste-map", +"jest-message-util","jest-regex-util","jest-resolve-dependencies","jest-runner","jest-runtime","jest-snapshot", +"jest-validate", +"jest-watcher","@jest/test-sequencer","@jest/test-utils","@types/graceful-fs","@types/micromatch","easy","facebook", +"immersive","instant","mocking","painless","runner","sandboxed","snapshot","@jest/schemas", +"@types/istanbul-lib-coverage","@types/istanbul-reports","@types/json-schema","@types/redux-mock-store", +"document-register-element","redux-mock-store","form","forms","json","jsonforms","renderengine","schema","uischema", +"customization","@date-io/dayjs","@rollup/plugin-json","rollup-plugin-copy","rollup-plugin-import-css","renderer", +"@rollup/plugin-alias","@types/object-hash","@jupyterlab/apputils","@jupyterlab/coreutils","@jupyterlab/docregistry", +"@jupyterlab/rendermime","@jupyterlab/rendermime-interfaces","@jupyterlab/services","@jupyterlab/statedb", +"@jupyterlab/translation","@jupyterlab/ui-components","@lumino/algorithm","@lumino/application","@lumino/commands", +"@lumino/coreutils","@lumino/disposable","@lumino/messaging","@lumino/polling","@lumino/properties","@lumino/signaling", +"@lumino/widgets","@jupyterlab/testing","docopt","glob2base","lodash.difference","multipipe","safe-wipe","sass-convert", +"@kobedevi/sassdoc-theme-default","scss-comment-parser", +"strip-indent","vinyl-string","babel-plugin-transform-builtin-extend","opn-cli","doc","theme","chatfanpage", +"api-connect-x","api-connect-tiwtter","@inquirer/input","@inquirer/prompts","task","list","tasklist","term","ascii", +"unicode","loading","indicator","busy","wait","idle","react-remove-scroll","ui-kit","calendar","date","picker","time", +"react-hooks","state","modal","notification","notification-manager","notification-system","prism-react-renderer", +"highlight","syntax","syntax-highlight","styling","@material-ui/types","@material-ui/utils","@material-ui/styles", +"@material-ui/system","@microsoft/api-documenter","json-api","json:api","serializer","normalizer","formatter", +"@types/mdx","jsx","mdx","@rushstack/node-core-library","@microsoft/api-extractor-model","@rushstack/terminal", +"@rushstack/ts-command-line","@rushstack/rig-package","@rushstack/heft","decoupled-local-node-rig","local-eslint-config", +"JSDoc","AEDoc","TSDoc","declaration", +"dts","bundle","alpha","beta","tsdoc-build-rig","TypeScript","jju","@types/jju","@aws/durable-execution-sdk-js", +"@aws/durable-execution-sdk-js-testing","@datastream/core","@types/aws-lambda","Lambda","Middleware","Serverless", +"Framework","AWS","AWS Lambda","Function URL","Durable function","Middy","HTTP","JSON","Body Parser","JSON Body Parser", +"@aws-sdk/client-ssm","aws-xray-sdk","helper","moj","design system","@open-draft/deferred-promise","@open-draft/logger", +"@open-draft/until","is-node-process","outvariant","strict-event-emitter","@open-draft/test-server","@ossjs/release", +"@types/cors","@types/express-fileupload","@types/follow-redirects","@types/node-fetch","@types/superagent", +"@types/supertest","@types/ws","engine.io-parser","express-fileupload","express-rate-limit","socket.io-parser", +"vitest-environment-miniflare","web-encoding","webpack-http-server","intercept","fetch","low-level","mock","spy","mui", +"@mui/core-downloads-tracker","system","@mui/x-internals","mui-x","datepicker","timepicker", +"datetimepicker","@headlessui/react","@iconify-icon/react","@mdx-js/loader","@mdx-js/mdx","@shikijs/transformers", +"@theguild/remark-npm2yarn","@types/unist","@vcarl/remark-headings","approximate-number","extra-watch-webpack-plugin", +"flexsearch","git-url-parse","mdast-util-phrasing","next-seo","react-helmet-async","rehype-extract-excerpt", +"rehype-pretty-code","remark-frontmatter","remark-heading-id","remark-link-rewrite","shiki","tailwindcss-themer", +"webpack-virtual-modules","@types/color","@types/extra-watch-webpack-plugin","@types/git-url-parse","@types/mdast", +"@repo/eslint-config","@repo/typescript-config","@repo/prettier-config","posthtml-render","posthtml-parser","esthetic", +"builder","guides","demo","ng-doc","rehype-format","hast-util-has-property","hast-util-heading-rank", +"rehype-minify-whitespace","unist-util-filter","@shikijs/rehype","ordinal","@types/chai-as-promised","ethers","hardhat", +"@types/bn.js","@nomicfoundation/hardhat-ethers","@nomicfoundation/eslint-plugin-slow-imports", +"@nomicfoundation/eslint-plugin-hardhat-internal-rules","ethereum","smart-contracts","@isaacs/string-locale-compare", +"@npmcli/fs","@npmcli/installed-package-contents","@npmcli/metavuln-calculator","@npmcli/name-from-folder", +"@npmcli/package-json","@npmcli/query","@npmcli/redact","bin-links","cacache", +"common-ancestor-path","json-stringify-nice","npm-install-checks","npm-pick-manifest","parse-conflict-json","proggy", +"promise-all-reject-late","promise-call-limit","treeverse","walk-up-path","@npmcli/eslint-config", +"@npmcli/mock-registry","@npmcli/template-oss","minify-registry-metadata","tcompare","libnpm","workspaces", +"map-workspaces","@npmcli/promise-spawn","spawk","innertext","highlights","similarity","language-ini","property-ttl", +"language-dart","language-glsl","language-haxe","language-rust","lodash.pickby","language-erlang","language-stylus", +"highlights-tokens","atom-language-diff","atom-language-nginx","github-url-to-object","markdown-it-expand-tabs", +"markdown-it-lazy-headers","oniguruma","intercept-stdout","readme","gfm","formatted","syntax highlighting","Monorepo", +"Angular","React","Web","Node","Nest","Jest","Cypress","CLI","@zkochan/js-yaml","EsBuild","Front-end","Backend","Lint", +"ESLint","Testing","Express","babel-plugin-const-enum","babel-plugin-transform-typescript-metadata","Swc", +"Tsc","@nestjs/schematics","kill-port","@nx/docker","tcp-port-used","@oclif/errors","@oclif/parser","@oclif/help", +"@oclif/plugin-plugins","fancy-test","oclif","@types/indent-string","@types/proxyquire","@types/wrap-ansi","clean-stack", +"@oclif/prettier-config","@oclif/test","@types/clean-stack","@types/ejs","@types/pnpapi","@types/sinon", +"@types/supports-color","@types/wordwrap","madge","command line","args","argv","oclif-plugin", +"@octokit/plugin-paginate-rest","@octokit/plugin-request-log","@octokit/plugin-rest-endpoint-methods", +"@octokit/auth-action","@octokit/auth-app","@octokit/fixtures-server","@octokit/request","@octokit/tsconfig", +"semantic-release-plugin-update-version-in-files","octokit","api-client","@opentiny/vue-action-menu", +"@opentiny/vue-action-sheet","@opentiny/vue-alert","@opentiny/vue-amount","@opentiny/vue-anchor","@opentiny/vue-area", +"@opentiny/vue-async-flowchart","@opentiny/vue-autocomplete","@opentiny/vue-badge","@opentiny/vue-base-select", +"@opentiny/vue-breadcrumb","@opentiny/vue-breadcrumb-item","@opentiny/vue-bulletin-board","@opentiny/vue-button", +"@opentiny/vue-button-group","@opentiny/vue-calendar","@opentiny/vue-calendar-bar","@opentiny/vue-calendar-view", +"@opentiny/vue-card","@opentiny/vue-card-group","@opentiny/vue-card-template","@opentiny/vue-carousel", +"@opentiny/vue-carousel-item","@opentiny/vue-cascader","@opentiny/vue-cascader-menu", +"@opentiny/vue-cascader-mobile","@opentiny/vue-cascader-node","@opentiny/vue-cascader-panel", +"@opentiny/vue-cascader-select","@opentiny/vue-cascader-view","@opentiny/vue-cell","@opentiny/vue-checkbox", +"@opentiny/vue-checkbox-button","@opentiny/vue-checkbox-group","@opentiny/vue-col","@opentiny/vue-collapse", +"@opentiny/vue-collapse-item","@opentiny/vue-collapse-transition","@opentiny/vue-color-picker", +"@opentiny/vue-color-select-panel","@opentiny/vue-column-list-group","@opentiny/vue-column-list-item", +"@opentiny/vue-company","@opentiny/vue-config-provider","@opentiny/vue-container","@opentiny/vue-country", +"@opentiny/vue-crop","@opentiny/vue-currency","@opentiny/vue-date-panel","@opentiny/vue-date-picker", +"@opentiny/vue-date-picker-mobile-first","@opentiny/vue-date-range","@opentiny/vue-date-table","@opentiny/vue-dept", +"@opentiny/vue-dialog-box","@opentiny/vue-dialog-select","@opentiny/vue-divider","@opentiny/vue-drawer", +"@opentiny/vue-drop-roles","@opentiny/vue-drop-times","@opentiny/vue-dropdown","@opentiny/vue-dropdown-item", +"@opentiny/vue-dropdown-menu","@opentiny/vue-dynamic-scroller","@opentiny/vue-dynamic-scroller-item", +"@opentiny/vue-espace","@opentiny/vue-exception","@opentiny/vue-fall-menu","@opentiny/vue-file-upload", +"@opentiny/vue-filter","@opentiny/vue-filter-bar","@opentiny/vue-filter-box","@opentiny/vue-filter-panel", +"@opentiny/vue-float-button","@opentiny/vue-floatbar","@opentiny/vue-floating-button","@opentiny/vue-flowchart", +"@opentiny/vue-fluent-editor","@opentiny/vue-form","@opentiny/vue-form-item","@opentiny/vue-fullscreen", +"@opentiny/vue-grid","@opentiny/vue-grid-column","@opentiny/vue-grid-manager","@opentiny/vue-grid-select", +"@opentiny/vue-grid-toolbar","@opentiny/vue-guide","@opentiny/vue-hrapprover","@opentiny/vue-image", +"@opentiny/vue-image-viewer","@opentiny/vue-input","@opentiny/vue-ip-address","@opentiny/vue-layout", +"@opentiny/vue-link","@opentiny/vue-link-menu","@opentiny/vue-load-list","@opentiny/vue-loading","@opentiny/vue-locales", +"@opentiny/vue-logon-user","@opentiny/vue-logout","@opentiny/vue-menu","@opentiny/vue-message","@opentiny/vue-milestone", +"@opentiny/vue-mind-map","@opentiny/vue-modal","@opentiny/vue-month-range","@opentiny/vue-month-table", +"@opentiny/vue-nav-menu","@opentiny/vue-notify","@opentiny/vue-number-animation","@opentiny/vue-numeric", +"@opentiny/vue-option","@opentiny/vue-option-group","@opentiny/vue-pager","@opentiny/vue-pager-item", +"@opentiny/vue-panel","@opentiny/vue-picker","@opentiny/vue-pop-upload","@opentiny/vue-popconfirm", +"@opentiny/vue-popeditor","@opentiny/vue-popover","@opentiny/vue-popup","@opentiny/vue-progress", +"@opentiny/vue-pull-refresh","@opentiny/vue-qr-code","@opentiny/vue-quarter-panel","@opentiny/vue-query-builder", +"@opentiny/vue-radio","@opentiny/vue-radio-button","@opentiny/vue-radio-group","@opentiny/vue-rate", +"@opentiny/vue-record","@opentiny/vue-recycle-scroller","@opentiny/vue-river","@opentiny/vue-roles","@opentiny/vue-row", +"@opentiny/vue-scroll-text","@opentiny/vue-scrollbar","@opentiny/vue-search","@opentiny/vue-select", +"@opentiny/vue-select-dropdown","@opentiny/vue-select-mobile","@opentiny/vue-select-view","@opentiny/vue-select-wrapper", +"@opentiny/vue-selected-box","@opentiny/vue-signature","@opentiny/vue-skeleton","@opentiny/vue-skeleton-item", +"@opentiny/vue-slider","@opentiny/vue-slider-button","@opentiny/vue-slider-button-group","@opentiny/vue-space", +"@opentiny/vue-split", +"@opentiny/vue-standard-list-item","@opentiny/vue-statistic","@opentiny/vue-steps","@opentiny/vue-sticky", +"@opentiny/vue-switch","@opentiny/vue-tab-item","@opentiny/vue-tabbar","@opentiny/vue-tabbar-item","@opentiny/vue-table", +"@opentiny/vue-tabs","@opentiny/vue-tag","@opentiny/vue-tag-group","@opentiny/vue-tag-input","@opentiny/vue-text-popup", +"@opentiny/vue-time","@opentiny/vue-time-line","@opentiny/vue-time-panel","@opentiny/vue-time-picker", +"@opentiny/vue-time-picker-mobile","@opentiny/vue-time-range","@opentiny/vue-time-select","@opentiny/vue-time-spinner", +"@opentiny/vue-timeline-item","@opentiny/vue-toggle-menu","@opentiny/vue-tooltip","@opentiny/vue-top-box", +"@opentiny/vue-transfer","@opentiny/vue-transfer-panel","@opentiny/vue-tree","@opentiny/vue-tree-menu", +"@opentiny/vue-tree-select","@opentiny/vue-upload","@opentiny/vue-upload-dragger","@opentiny/vue-upload-list", +"@opentiny/vue-user","@opentiny/vue-user-account","@opentiny/vue-user-contact","@opentiny/vue-user-head", +"@opentiny/vue-user-head-group","@opentiny/vue-user-link","@opentiny/vue-virtual-scroll-box", +"@opentiny/vue-virtual-tree","@opentiny/vue-watermark","@opentiny/vue-wizard","@opentiny/vue-year-range", +"@opentiny/vue-year-table","component-library","vue-components","opentiny","renderless-components","headless-components", +"@opentiny/utils","@opentiny/vue-hooks","esno","gulp-svg-inline","gulp-transform","otterhttp","node.js","web framework", +"header-range-parser","@otterhttp/accepts","@otterhttp/content-type","@otterhttp/proxy-address","@otterhttp/type-is", +"@otterhttp/url","@otterhttp/router","req","es-escape-html","@otterhttp/content-disposition","@otterhttp/encode-url", +"@otterhttp/errors","@otterhttp/vary","res","@otterhttp/etag","send-file","@pact-foundation/pact-core","randexp", +"stack-utils","@pact-foundation/pact-js-prettier-config","@types/http-proxy","@types/nock","@types/ramda", +"@types/stack-utils","commit-and-tag-version","eslint-plugin-chai-friendly","pact","pact-js","contract testing", +"consumer driven testing","management","store","@phosphor/algorithm","@phosphor/commands","@phosphor/coreutils", +"@phosphor/disposable","@phosphor/domutils","@phosphor/dragdrop","@phosphor/keyboard","@phosphor/messaging", +"@phosphor/properties","@phosphor/signaling","@phosphor/virtualdom","@release-it/conventional-changelog","@types/jsdom", +"cobertura","eslint-config-phun-ky","git-cz","glob-bin","global-jsdom","putout","quibble","remark-github","remark-toc", +"typedoc-plugin-frontmatter","typedoc-plugin-mdn-links","typedoc-plugin-no-inherit","typedoc-plugin-remark", +"typedoc-plugin-rename-defaults","typedoc-vitepress-theme","unified-prettier","vitepress-plugin-group-icons","a11y", +"accessibility","anatomy","annotate","annotation","dissect","dissection", +"grid","grid-layout","html-elements","information","inspect","pin","spacing","spec","speccer","specification", +"specifications","specs","typography","stories","@webcomponents/shadycss","@polymer/gen-closure-declarations", +"@polymer/iron-component-page","@polymer/test-fixture","@webcomponents/webcomponentsjs","babel-preset-minify","dom5", +"google-closure-compiler","gulp-vulcanize","lazypipe","polymer-build","polymer-cli","wct-browser-legacy","cldr","gauge", +"upath","fontkit","ps-tree","get-value","set-value","github-api","unset-value","tap-colorize","core-js-bundle", +"app-module-path","es6-promise-pool","better-ajv-errors","jstransformer-dot","@metalsmith/layouts", +"@metalsmith/markdown","console-control-strings","@qooxdoo/eslint-config-qx","@qooxdoo/eslint-plugin-qx", +"eslint-formatter-codeframe","@qooxdoo/eslint-config-jsdoc-disable","@babel/plugin-proposal-optional-chaining-assign", +"dirsum","qooxdoo","fontend","back-end","widgets","gui","databinding","interfaces","mixins","@mdi/font","@mdi/svg", +"@xmldom/xmldom","animate.css","bootstrap-icons", +"eva-icons","line-awesome","eslint-config-quasar","quasar","fonts","animations","gltfpack","detect-gpu","r3f-perf", +"@types/three","three-stdlib","suspend-react","postprocessing","@storybook/react","@react-three/drei", +"@react-three/fiber","cypress-image-diff-js","rollup-plugin-postcss","@storybook/addon-links","@storybook/node-logger", +"eslint-plugin-storybook","@storybook/addon-actions","@storybook/react-webpack5","@react-three/test-renderer", +"@storybook/testing-library","@react-three/postprocessing","@storybook/addon-essentials","@storybook/addon-interactions", +"@types/testing-library__jest-dom","@storybook/preset-create-react-app","threejs","react-three-fiber","ready-player-me", +"3D","avatars","glb","@phryneas/ts-version","@size-limit/file","@size-limit/webpack", +"@testing-library/react-render-stream","@types/babel__core","@types/babel__helper-module-imports","@types/nanoid", +"@types/query-string","esbuild-extra","starter","reducer","slice","redux-toolkit","@rollup/pluginutils","commondir", +"fdir","is-reference","locate-character","require-relative","commonjs","require","is-module","string-capitalize", +"es2015","groq-js","refractor","@sanity/ui","@types/cpx", +"dotenv-flow","@sanity/color","@sanity/icons","@sanity/client","react-refractor","esbuild-register","@sanity/pkg-utils", +"@portabletext/react","@portabletext/toolkit","cpx","sanity","@types/mkdirp","@sanity/ui-workshop", +"@sanity/semantic-release-preset","eslint-plugin-simple-import-sort","API reference","@unhead/vue","@vueuse/core", +"microdiff","@scalar/agent-chat","@scalar/code-highlight","@scalar/api-client","@scalar/icons","@scalar/components", +"@scalar/helpers","@scalar/openapi-parser","@scalar/oas-utils","@scalar/openapi-types","@scalar/sidebar","@scalar/types", +"@scalar/snippetz","@scalar/use-hooks","@scalar/themes","@scalar/use-toasts","@scalar/workspace-store", +"@hono/node-server","@tailwindcss/vite","@vitejs/plugin-vue","@vue/test-utils","rollup-plugin-webpack-stats", +"vite-plugin-banner","vite-plugin-css-injected-by-js","@scalar/build-tooling","@scalar/core","@scalar/galaxy", +"@scalar/react-renderer","reference","swagger","fastify-plugin","@fastify/basic-auth","@fastify/http-proxy", +"@fastify/swagger","@serenity-js/core","@serenity-js/rest","@serenity-js/web","tiny-types","@integration/testing-tools", +"@serenity-js/assertions","@serenity-js/cucumber","@serenity-js/jasmine","@serenity-js/local-server", +"@serenity-js/mocha","@types/html-minifier","mocha-multi", +"automation","browser","e2e","end-to-end","integration","serenity","serenity-js","screenplay","screenplay-pattern","tdd", +"@wdio/reporter","@wdio/cli","@wdio/dot-reporter","@wdio/local-runner","@wdio/spec-reporter","@wdio/types", +"mocha-testdata","webdriverio","wdio","wdio-reporter","@sinonjs/commons","@mochify/cli","@mochify/driver-puppeteer", +"@mochify/driver-webdriver","@sinonjs/eslint-config","@sinonjs/referee-sinon","@storybook/icons","@storybook/csf-plugin", +"@storybook/react-dom-shim","telejson","memoizerific","storybook-addon","essentials","organize","MDX","autodocs", +"styleguide","style guide","web-components","@ant-design/colors","@ant-design/cssinjs","@ant-design/react-slick", +"@fortawesome/free-regular-svg-icons","@polkadot/react-identicon","@polkadot/util-crypto","@polkadot/wasm-crypto", +"@rc-component/tour","@zxing/browser","@zxing/library","boring-avatars","flatlist-react","jsqr","patch-package", +"phosphor-react","qrcode.react","rc-cascader","rc-checkbox","rc-collapse","rc-dialog","rc-drawer","rc-dropdown", +"rc-image","rc-input","rc-input-number", +"rc-mentions","rc-menu","rc-motion","rc-notification","rc-pagination","rc-picker","rc-progress","rc-rate", +"rc-resize-observer","rc-segmented","rc-select","rc-steps","rc-switch","rc-table","rc-tabs","rc-textarea","rc-tree", +"rc-tree-select","rc-trigger","rc-upload","react-pin-input","react-qrcode-logo","react-superellipse", +"scroll-into-view-if-needed","@babel/eslint-plugin","@emotion/babel-preset-css-prop","@emotion/server", +"@qixian.cs/github-contributors-list","@storybook/addons","@storybook/builder-webpack5","@storybook/manager-webpack5", +"@storybook/theming","@types/gtag.js","@types/jest-axe","@types/jest-environment-puppeteer","@types/jest-image-snapshot", +"@types/jquery","@types/puppeteer","@types/qs","@types/react-color","@types/react-highlight-words", +"@types/react-resizable","@types/react-window","@types/throttle-debounce","@types/warning","antd-img-crop", +"antd-token-previewer","array-move","bundlesize2","dekko","duplicate-package-checker-webpack-plugin","fetch-jsonp", +"jest-axe","jest-image-snapshot","jest-puppeteer","jsonml-to-react-element","lz-string","rc-footer","rc-tween-one", +"rc-virtual-list","react-fast-marquee","react-highlight-words","react-infinite-scroll-component","react-resizable", +"react-sticky-box","react-window","remark-lint","remark-preset-lint-recommended","rome","stylelint-config-prettier", +"stylelint-config-rational-order","stylelint-declaration-block-no-ignored-properties","sylvanas","vanilla-jsoneditor", +"xhr-mock","yaml-front-matter","@supernova-studio/client","@supernova-studio/model","abab","async-mutex","color2k", +"parse-color","string.prototype.matchall","@types/tinycolor2","trash-cli","tsconfig-paths-webpack-plugin","Supernova", +"Design Systems","Supernovaio","SDK","Design Tokens","Tokens","Assets","Components","Documentation","Markdown","CMS", +"expr-eval-fork","ml-matrix","postcss-calc-ast-parser","@ava/typescript","@stylistic/eslint-plugin-js", +"@svitejs/changesets-changelog-github-compact","eslint-config","@sveltejs/acorn-typescript","@types/cookie","devalue", +"esm-env","mrmime","sade","@opentelemetry/api","@types/connect","dts-buddy","official","obug", +"@sveltejs/vite-plugin-svelte-inspector","vite-plugin","vite plugin","@babel/plugin-transform-react-constant-elements", +"@svgr/plugin-jsx","@svgr/plugin-svgo","svgr","webpack-loader","@swc/counter","@swc/types","@napi-rs/cli","@rstest/core", +"swc", +"swcpack","rust","tsc","stylelint-prettier","@swisspost/design-system-icons","@swisspost/design-system-tokens", +"stylelint-config-sass-guidelines","collections","patterns","web components","ui library","symbiote.js","symbiote", +"widget","microfrontends","meta application","custom elements","shadow dom","shadow root","constructable stylesheets", +"adopted stylesheets","css custom properties","pubsub","import maps","cdn imports","https imports", +"reactive html attributes","MIT","JSDA","@types/content-type","istanbul-lib-coverage","istanbul-lib-report", +"istanbul-lib-source-maps","istanbul-reports","rollup-plugin-filesize","tanem-scripts","dom","images","img", +"scalable-vector-graphics","@tanstack/query-core","@tanstack/query-persist-client-core","@tanstack/query-test-utils", +"@testing-library/svelte","tanstack","query","@types/js-cookie","@github/webauthn-json","better-docs", +"eslint-config-preact","hanko","passkey","webauthn","passcode","password","kcd-scripts","functional","aria-query", +"@types/aria-query","dom-accessibility-api","jest-in-case","jest-watch-select-projects","jest-snapshot-serializer-ansi", +"unit", +"redent","@jest/globals","rollup-plugin-delete","jest-environment-jsdom-sixteen","jest-matcher-utils", +"@callstack/eslint-config","@relmify/jest-serializer-strip-ansi","testing-library","dotenv-cli","jest-mock", +"shared-scripts","@types/jest-in-case","@ph.fritsche/toolbox","jest-serializer-ansi","esbuild-plugin-globals", +"eslint-plugin-local-rules","@ph.fritsche/scripts-config","@esbuild-plugins/node-modules-polyfill", +"react-testing-library","dom-testing-library","regexparam","tinyhttp","static","@tinyhttp/vary","supertest-fetch", +"forwarded","headers","header","proxy-addr","net","network","@tinyhttp/accepts","@tinyhttp/content-disposition", +"@tinyhttp/content-type","params","particles.js","particlesjs","particles","particle","jsparticles","xparticles", +"particles-js","particles-bg","particles-bg-vue","particles-ts","particles.ts","react-particles-js","react-particles.js", +"react-particles","vue-particles","ngx-particles","angular-particles","particleground","vuejs","preactjs","angularjs", +"animation","html5","web-design","webdesign","css3","animated","background","confetti", +"fireworks","fireworks-js","confetti-js","confettijs","fireworksjs","canvas-confetti","@d-fischer/shared-utils", +"@twurple/api-call","@twurple/common","jose","twitch","extension","service","ebs","ts-api-utils","natural-compare", +"@eslint-community/regexpp","@typescript-eslint/type-utils","@typescript-eslint/visitor-keys","title-case", +"mdast-util-mdx","micromark-extension-mdxjs","@typescript-eslint/rule-tester", +"@typescript-eslint/rule-schema-to-typescript-types","eslintplugin","@typescript-eslint/typescript-estree","estree", +"@ucloud-fe/calendar","component-classes","create-react-context","emotion-theming","file-bytes-formatter","mini-store", +"rc-animate","rc-form","z-use-drag","@types/hoist-non-react-statics","@types/raf","@ucloud-fe/recodo-gen","ast-types", +"babel-plugin-emotion","babel-plugin-typescript-to-proptypes","babel-plugin-webpack-alias","css-hot-loader", +"jest-emotion","jsdom-screenshot","stylelint-config-styled-components","stylelint-processor-styled-components", +"tsc-alias","ucloud","jotai-x","is-hotkey","optics-ts","zustand-x","slate-react","jotai-optics","@udecode/slate", +"@udecode/utils","use-deep-compare","slate-hyperscript","@udecode/react-utils","@udecode/react-hotkeys","plate","slate", +"button","react-button","uiw-react","react.js","uikit","react-ui","@uiw/icons","react-icon","react-input", +"@uiw/react-overlay","overlay-trigger","react-overlay-trigger","utils","react-utils","prom-client","openapi-types", +"unleash-client","json-schema-to-ts","ts-node-dev","@types/type-is","Unleash","native","ios","android","flags","lit", +"keyux","nanostores","@lit/context","@uploadcare/cname-prefix","@uploadcare/image-shrink","@uploadcare/upload-client", +"@uploadcare/quality-insights","shipjs","render-jsx","lit-analyzer","ts-lit-plugin","@biomejs/js-api","@vitest/browser", +"eslint-plugin-wc","@types/svg-sprite","eslint-plugin-lit","vitest-browser-lit","@biomejs/wasm-nodejs", +"@size-limit/esbuild-why","esbuild-minify-templates","@total-typescript/ts-reset","@size-limit/preset-small-lib", +"@happy-dom/global-registrator","@csstools/postcss-cascade-layers","uploadcare","lighter","file uploader", +"adaptive image","image optimization","image editing","image size","cloud image editor","upload api client", +"building blocks","blocks","lr-blocks","uc-blocks","integrations", +"smart cdn","cloud file platform","transformation api","webp","avif","css context properties","meta applications", +"browserslist-to-esbuild","@babel/plugin-transform-react-jsx-self","@babel/plugin-transform-react-jsx-source", +"@rolldown/pluginutils","babel-plugin-react-compiler","fast refresh","@tsconfig/node20","pkgroll","create-vue", +"create-eslint-config","ajv-keywords","merge-deep","swagger-parser","@ant-design/icons-svg","@makotot/ghostui", +"@types/hast","@umijs/bundler-utils","@umijs/core","@umijs/utils","animated-scroll-to","codesandbox","comlink", +"dumi-afx-deps","estree-util-to-js","estree-util-visit","file-system-cache","heti","html2sketch", +"mdast-util-find-and-replace","mdast-util-to-string","prism-themes","react-loading-skeleton","react-simple-code-editor", +"rehype-remove-comments","remark-directive","sucrase","umi","unist-util-visit-parents","v8-compile-cache","vfile", +"dumi-assets-types","@types/highlight-words-core","@types/hosted-git-info","@types/lodash.throttle","@types/pluralize", +"@umijs/lint","@umijs/plugins","codesandbox-import-utils","git-repo-info","highlight-words-core","zx", +"dumi-theme-mobile","static site generator","jamstack","aleo","cryptography","blockchain", +"decentralized","zero-knowledge","oracle","event-target-shim","@mysticatea/eslint-plugin","@mysticatea/spy", +"dts-bundle-generator","karma-growl-reporter","rollup-plugin-babel-minify","rollup-watch","type-tester","w3c","whatwg", +"event","abort","cancel","abortcontroller","abortsignal","controller","signal","shim","negotiator","content", +"negotiation","accept","middleware","progress-estimator","@types/figlet","@types/git-clone", +"rollup-plugin-node-externals","nestjs","fullstack","zip","archive","flowcontrol","flow","control","arch","cron-parser", +"date.js","human-interval","@types/human-interval","job","jobs","delayed","blockchain-bend4","blockchain-meat7", +"bow-swam-troops-care","cent-matter-to","closer-composed-particularly-shout","coach-organized-notice", +"correct-home-silent7","course-whenever-merely","crop-birthday-web3-children","exchange-known-bend", +"face-eventually-bound","grass-dollar-crew-floating","information-fruit-web3-perfect","lay-rest-hour", +"material-balance-trade-solar","meat-think-stove8","office-deal-mostly1","product-slight-adult-settlers", +"recently-done-should-moon", +"scientific-exist-event2","sentence-won-little-western","speed-wing-eat","stay-including","supper-term-including-snake", +"truck-hospital-equator-hurt","trunk-darkness-believed-corner","typical-recall-industry-exchange","warn-clothing-whose0", +"weigh-flew-web3-farm","@airtap/browserify-istanbul","airtap-default","airtap-multi","bruce-millis-option","engine.io", +"engine.io-client","find-nearest-file","globs-to-files","humanize-duration","load-script","make-promises-safe", +"maybe-combine-errors","nanoresource","nanoresource-collection","on-stream-close","run-parallel-settled","tap-completed", +"thunky-with-args","transient-error","abstract-browser","simple-get","saucelabs","fast-uri","json-schema-traverse", +"require-from-string","@ajv-validator/config","@types/require-from-string","dayjs-plugin-utc","if-node-version", +"json-schema-test","module-from-string","re2","tsify","uri-js","json-schema-validator","json-schema-validation","Ajv", +"longjohn","buffer-more-ints","claire","AMQP","AMQP 0-9-1","RabbitMQ","simple","ux bootstrap","client-side", +"@angular-cli/ast-tools","@angular-cli/base-href-webpack","@ngtools/json-schema","@ngtools/webpack","denodeify", +"ember-cli-normalize-entity-name","ember-cli-string-utils","exists-sync", +"findup","get-caller-file","isbinaryfile","node-modules-path","script-loader","silent-error", +"sourcemap-istanbul-instrumenter-loader","component library","justified","256","ansi","bgblack","bgBlack","bgblue", +"bgBlue","bgcyan","bgCyan","bggreen","bgGreen","bgmagenta","bgMagenta","bgred","bgRed","bgwhite","bgWhite","bgyellow", +"bgYellow","black","blue","bold","clorox","colour","cyan","dim","formatting","gray","green","grey","hidden","inverse", +"italic","logging","magenta","red","reset","rgb","shell","str","strikethrough","style","text","underline","white", +"yellow","environment","escape","escapes","vt100","sequence","codes","cursor","iterm2","screen","erase", +"scrollback","regex","regexp","re","match","find","pattern","svg-term-cli","@ant-design/icons-vue","@emotion/unitless", +"@simonwep/pickr","array-tree-filter","dom-align","dom-scroll-into-view","shallow-equal","vue-types", +"@babel/plugin-proposal-optional-chaining","@babel/plugin-transform-object-assign","@types/koa","@types/lru-cache", +"@types/postcss-load-config","@vitejs/plugin-vue-jsx","@vue/babel-plugin-jsx","@vue/cli-plugin-eslint", +"@vue/eslint-config-prettier","@vue/vue3-jest","@webpack-cli/serve","ali-oss","babel-plugin-inline-import-data-uri", +"babel-plugin-transform-require-context","colorful","compare-versions","cz-git","diacritics","docsearch.js","enquire-js", +"eslint-plugin-no-explicit-type-exports","gulp-strip-code","ignore-emit-webpack-plugin","is-windows", +"jest-serializer-vue","jest-transform-stub","json-templater","less-plugin-npm-import","less-vars-to-js","majo", +"markdown-it-table-of-contents","merge2","remark-stringify","remark-yaml-config","reqwest","rucksack-css", +"selenium-server","string-replace-loader","umi-request","vue-clipboard2","vue-drag-resize","vue-infinite-scroll", +"vue-request","vue-tsc","webpackbar","vueComponent","@rc-component/form","@rc-component/menu", +"@rc-component/rate","@rc-component/tabs","@rc-component/tree","@rc-component/util","@rc-component/image", +"@rc-component/input","@rc-component/steps","@rc-component/table","@rc-component/dialog","@rc-component/drawer", +"@rc-component/motion","@rc-component/picker","@rc-component/qrcode","@rc-component/select","@rc-component/slider", +"@rc-component/switch","@rc-component/upload","@rc-component/tooltip","@rc-component/trigger","@ant-design/fast-color", +"@rc-component/cascader","@rc-component/checkbox","@rc-component/collapse","@rc-component/dropdown", +"@rc-component/mentions","@rc-component/progress","@rc-component/textarea","@rc-component/segmented", +"@rc-component/pagination","@ant-design/cssinjs-utils","@rc-component/tree-select","@rc-component/color-picker", +"@rc-component/input-number","@rc-component/notification","@rc-component/mutate-observer", +"@rc-component/resize-observer","p-all","runes2","mermaid","spinnies","env-paths","@types/tar","antd-style", +"@types/pngjs","cli-progress","domparser-rs","vanilla-tilt","@ant-design/x","react-countup","@prettier/sync", +"@types/adm-zip","@types/ali-oss","@blazediff/core","@types/css-tree","@types/minimist","@types/spinnies", +"@types/nprogress","lunar-typescript","@ant-design/x-sdk","csstree-validator","@types/http-server","@types/cli-progress", +"@antfu/eslint-config","@ant-design/compatible", +"@codecov/webpack-plugin","@types/isomorphic-fetch","dumi-plugin-color-chunk","@microflash/rehype-figure", +"@rc-component/virtual-list","circular-dependency-plugin","@codesandbox/sandpack-react","@eslint-react/eslint-plugin", +"@ant-design/happy-work-theme","cypress-image-diff-html-report","@ianvs/prettier-plugin-sort-imports", +"remark-lint-no-undefined-references","@madccc/duplicate-package-checker-webpack-plugin", +"@api-components/api-console-ext-comm","@api-components/api-documentation","@api-components/api-summary", +"@polymer/app-layout","@polymer/iron-media-query","@polymer/paper-toast","@anypoint-web-components/anypoint-menu-mixin", +"@open-wc/building-rollup","@polymer/iron-test-helpers","@web/test-runner-visual-regression","amf-client-js", +"rollup-plugin-cpy","unzipper","raml","amf","diff-match-patch","expose-loader","klaw-sync","eslint-config-recommended", +"restful","apidoc-light","portable","programmatic","cli-app","api-documentation","markdown-documentation","http2", +"apple","push","push notifications","iOS","apns","notifications","apollo-cache","apollo-utilities","ts-invariant", +"@types/zen-observable","symbol-observable","zen-observable","jsnext","relay","zen-observable-ts","@types/graphql", +"apollo-link-http-common","apollo-fetch","object-to-querystring","cracks","root","node_modules","@colors/colors", +"appium-adb", +"appium-chromedriver","asyncbox","io.appium.settings","portscanner","teen_process","@appium/eslint-config-appium-ts", +"@appium/tsconfig","@types/bluebird","@types/portscanner","appium","mobile testing","@azure/identity","@azure/core-auth", +"@azure/functions","diagnostic-channel","@opentelemetry/core","@azure/functions-old","@opentelemetry/api-logs", +"@opentelemetry/sdk-logs","@opentelemetry/resources","@opentelemetry/sdk-metrics","@azure/monitor-opentelemetry", +"@opentelemetry/sdk-trace-base","@opentelemetry/sdk-trace-node","diagnostic-channel-publishers", +"@opentelemetry/otlp-exporter-base","@opentelemetry/semantic-conventions","@azure/monitor-opentelemetry-exporter", +"@opentelemetry/exporter-logs-otlp-http","@opentelemetry/exporter-trace-otlp-http", +"@opentelemetry/exporter-metrics-otlp-http","@opentelemetry/exporter-metrics-otlp-proto", +"@azure/opentelemetry-instrumentation-azure-sdk","@types/long","@types/microsoft__typescript-etw","exception monitoring", +"request monitoring","performance monitoring","application insights","microsoft","azure","cloud","tracing","telemetry", +"analytics","apm","@aws-sdk/credential-provider-node","@aws-sdk/hash-node","@aws-sdk/protocol-http", +"@aws-sdk/signature-v4","@aws-sdk/types","aws-xray-sdk-core","@aws-amplify/amplify-appsync-simulator","constructs", +"prettier-plugin-organize-attributes","projen","appsync","aws","gql","lambda","xray","archiver-utils","buffer-crc32", +"readdir-glob", +"zip-stream","archiver-jsdoc-theme","stream-bench","stream","@babel/plugin-syntax-class-properties","option", +"define-properties","es-abstract","es-shim-unscopables","@es-shims/api","@ljharb/eslint-config","encoding", +"has-strict-mode","Array.prototype.flatMap","flatMap","array","ESnext","flatten","Array.prototype.flatten","es-shim API", +"arrayify","convert","value","ensure","is-nan","object-is","array-fill","fn.name","is-buffer","propget","pruddy-error", +"assertion","asserts","shouldjs","unit testing","babel-minify","rollup-plugin-npm","babel-preset-es2017", +"native-promise-only","eslint-plugin-prefer-arrow","babel-plugin-syntax-async-generators","callback","@types/tap", +"await","listen","then-sleep","@babel/node","@pika/pack","pika-plugin-build-web-babel","pika-plugin-ts-types","validate", +"libnpx","node-cleanup","npm-lockfile","find-package-json","audit","lockfile","shrinkwrap","import-cwd", +"parse-github-url","babel-plugin-rewire","auto","automatic","changelog", +"change","git","commit","commits","detective","detective-es6","is-builtin-module","package-json","sync-exec","package", +"fraction.js","prefix","@vercel/nft","arrgv","callsites","cbor","chunkd","ci-parallel-vars","code-excerpt", +"common-path-prefix","concordance","currently-unhandled","emittery","ignore-by-default","matcher","memoize", +"package-config","resolve-cwd","supertap","temp-dir","@sindresorhus/tsconfig","🦄","concurrent","parallel","fast", +"promises","function","generators","yield","observable","observables","webpack-log","empty-module","ps-node","loader", +"ieee754","jmespath","hash-test-vectors","insert-module-globals","amazon","ec2","simpledb","s3","sqs","ses","sns", +"route53","rds","elasticache","cloudfront","fps","cloudformation","cloudwatch","dynamodb", +"iam","swf","autoscaling","cloudsearch","elb","loadbalancing","emr","mapreduce","importexport","storagegateway", +"workflow","vpc","beanstalk","glacier","kinesis","cloudtrail","waf","memoizee","@deque/dot","colorjs.io","typedarray", +"emoji-regex","grunt-babel","revalidator","sri-toolbox","serve-handler","grunt-bytesize","weakmap-polyfill", +"clean-jsdoc-theme","css-selector-parser","@axe-core/webdriverjs","conventional-commits-parser", +"eslint-plugin-mocha-no-only","Accessibility","axe","proxy-from-env","dev-null","formdata-node","stream-throttle", +"karma-jasmine-ajax","string-replace-async","abortcontroller-polyfill","rollup-plugin-bundle-size", +"@rollup/plugin-multi-entry","rollup-plugin-auto-external","istanbul-instrumenter-loader","ajax","browserify-mime", +"json-edm-parser","md5.js","batchflow","factor-bundle","karma-env-preprocessor","storage","output-file-sync","v8flags", +"babel-code-frame","babel-helpers","babel-messages","private","babel-helper-transform-fixture-test-runner", +"eslint-config-babel","trim-right","try-resolve", +"babel-preset-jest","babel-plugin-transform-export-extensions","babel-preset-power-assert", +"conventional-github-releaser","module.exports","airbnb-js-shims","babel-plugin-transform-replace-object-assign", +"dynamic","import","@umijs/test","babel-preset-umi","react-toolbox","@istanbuljs/load-nyc-config", +"istanbul-lib-instrument","test-exclude","pmock","instrumentation","require-package-name", +"@babel/plugin-proposal-function-bind","@babel/preset-stage-0","lodash-bound","lodash-compat","cherry-pick", +"find-babel-config","prettier-eslint-cli","resolver","alias","rewrite","rename","mapping","babel-plugin-tester", +"babel-helper-remap-async-to-generator","babel-plugin-syntax-async-functions","babel-helper-function-name", +"babel-plugin-syntax-class-properties","babel-plugin-syntax-decorators","es7","babel-plugin-transform-strict-mode", +"babel-plugin-syntax-object-rest-spread","babel-helper-builder-react-jsx","@babel/preset-flow", +"babel-plugin-flow-react-proptypes","pkgfiles","minification","propTypes","regenerator-transform", +"@babel/plugin-proposal-numeric-separator","@babel/plugin-transform-property-mutators", +"@babel/plugin-proposal-optional-catch-binding","@babel/plugin-proposal-nullish-coalescing-operator", +"babel-plugin-check-es2015-constants","babel-plugin-syntax-trailing-function-commas", +"babel-plugin-transform-es2015-arrow-functions","babel-plugin-transform-es2015-block-scoped-functions", +"babel-plugin-transform-es2015-classes","babel-plugin-transform-es2015-computed-properties", +"babel-plugin-transform-es2015-destructuring","babel-plugin-transform-es2015-duplicate-keys", +"babel-plugin-transform-es2015-for-of","babel-plugin-transform-es2015-function-name", +"babel-plugin-transform-es2015-literals","babel-plugin-transform-es2015-modules-amd", +"babel-plugin-transform-es2015-modules-systemjs","babel-plugin-transform-es2015-modules-umd", +"babel-plugin-transform-es2015-object-super","babel-plugin-transform-es2015-parameters", +"babel-plugin-transform-es2015-shorthand-properties","babel-plugin-transform-es2015-spread", +"babel-plugin-transform-es2015-sticky-regex","babel-plugin-transform-es2015-typeof-symbol", +"babel-plugin-transform-es2015-unicode-regex","babel-plugin-transform-exponentiation-operator","electron-to-chromium", +"babel-preset-flow","babel-plugin-transform-react-display-name","babel-plugin-transform-react-jsx-source", +"babel-plugin-transform-react-jsx-self","@babel/plugin-proposal-private-methods","babel-plugin-transform-do-expressions", +"babel-plugin-transform-function-bind","babel-plugin-transform-class-constructor-call", +"babel-plugin-transform-decorators","babel-plugin-transform-async-generator-functions","home-or-tmp","esutils", +"to-fast-properties","lodash.zipobject","babel-plugin-transform-node-env-inline", +"babel-plugin-transform-flow-strip-types","unicode-9.0.0","model","view","@purtuga/esm-webpack-plugin", +"@types/validator","@web/test-runner-browserstack","@web/test-runner-junit-reporter","otpauth","backend-as-a-service", +"grunt-template","codec","decoder","encoder","base64","basic","auth","authorization","basicauth","sorted-object", +"ministructure","sinatra","orange sms","node-gyp-build","prebuildify","encryption","crypt","hash","esm2umd", +"pomelo-logger","di","IoC","AOP","dependency","injection","consistent","hot reload","front-backend","sharable codes", +"dependency injection", +"asynchronous script loading","magic, self-described javaScript objects","beautify","art-near-room-catch","blanket-line", +"born-greatly-explain3","bring-water-silence","brush-bigger-afternoon0","column-wore-meet-war","compare-breeze-mad2", +"did-straight-sister-sail","excitement-tonight-dead","gain-pleasant-prepare","industrial-public-immediately-until", +"is-straight-web3-attack","known-wet-thirty-gave","listen-private-thee6","mainly-cent","mountain-quarter-sit8", +"mouse-bat-web3-present","needs-supper-anything","percent-impossible-score","rocket-location-calm-valley", +"seldom-fire-web3-running","shade-swim-shells1","spider-melted-chemical","stretch-onto-driver7","tiny-dream-supply5", +"tool-invented-girl-jungle","we-hunt-process","web3-automobile7","whether-dangerous","ansicolors","ignorepatterns", +"response-stream","script-injector","find-global-packages","jsl","dotpathlookup","simplehttpserver","platform","docdown", +"qunit-extras","performance","speed","@beyond-js/specifier-parser","@beyond-js/fs","@beyond-js/bee","ansi-to-html", +"concat-with-sourcemaps","json-format","resolve-package-path","uimport","global-modules","universal", +"universal javascript","universal typescript","isomorphic","isomorphic javascript","isomorphic typescript","sigle page", +"spa","modular development","microfrontend", +"micro frontend","microservices","micro services","hmr","hot module replacement","ssr","server side rendering", +"typescript packager","JAMStack","real time","react framework","ssr react framework","vue framework","ssr vue framework", +"svelte framework","ssr svelte framework","websockets","check-types","hoopy","tryer","please-release-me","spooks", +"streamify","stringify","serialise","serialize","write","asynchronous","arbitrary","precision","arithmetic","big", +"number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum","file-uri-to-path","addon","gyp","c", +"c++","@noble/hashes","@antv/component","@antv/g2","@antv/g2plot","@antv/util","d3-color","react-reconciler", +"@antv/data-set","@babel/preset-es2015","@storybook/addon-info","@storybook/addon-knobs","@storybook/addon-options", +"@umijs/fabric","@welldone-software/why-did-you-render","aphrodite","babel-plugin-inline-react-svg", +"babel-plugin-inline-svg","bx-jest-electron","declaration-bundler-webpack-plugin", +"git-directory-deploy","imports-loader","moment-jalaali","react-with-styles-interface-aphrodite", +"react-with-styles-interface-css-compiler","snapshot-diff","g2","@types/readable-stream","buffers","awesomesauce", +"falafel","foreach","coffee-react","uglify-save-license","curses","tui","tput","terminfo","termcap","ansi-term", +"drawille-canvas-blessed-contrib","map-canvas","marked-terminal","memory-streams","picture-tuber","sparkline", +"term-canvas","x256","@types/blessed","block","loop","kefir","baconjs","promises-a","promises-aplus","deferred", +"deferreds","future","flow control","dsl","fluent interface","standardx","BN","Big number","BigNum","Modulo", +"Montgomery","create-error","bookshelf-jsdoc-theme","postgresql","datamapper","active record","error","@types/mime", +"@astrojs/mdx","@astrojs/check","@astrojs/prism","@astrojs/sitemap","astro-auto-import","prettier-plugin-astro", +"@astrojs/markdown-remark","mincer","eyeglass-module","box", +"boxes","border","quote-stream","static-module","browserify-transform","readFileSync","asset","heimdalljs","array-equal", +"fs-tree-diff","broccoli-plugin","mocha-eslint","release-it-lerna-changelog","merge-trees","broccoli-fixture","copy", +"broccoli-fixturify","multidep","ts-docs-gen","tslint-plugin-prettier","browser-sync-client","browser-sync-ui", +"bs-recipes","dev-ip","easy-extender","eazy-logger","resp-modifier","bs-snippet-injector","generate-changelog", +"browser sync","live reload","sync","subarg","defined","parents","deps-sort","duplexer2","htmlescape","module-deps", +"stream-http","browser-pack","syntax-error","os-browserify","shasum-object","vm-browserify","domain-browser", +"mkdirp-classic","string_decoder","tty-browserify","browser-resolve","browserify-zlib","querystring-es3", +"https-browserify","read-only-stream","stream-browserify","timers-browserify","console-browserify", +"cached-path-relative","constants-browserify","labeled-stream-splicer","seq","isstream","coffeeify","browser-unpack", +"has-object-spread","has-template-literals","make-generator-function","commonj-esque","exposify","mothership", +"rename-function-calls","test-peer-range","transform","window","baseline-browser-mapping","node-releases", +"update-browserslist-db","browsers","target","base-x","ts-standard","base58","bitcoin","crytography","decode","decoding", +"encode","litecoin","typescript-cached-transpile","acorn-dynamic-import","acorn-jsx","regexpu-core","console-group", +"@rollup/plugin-buble","test262-stream","transpilation","compilation","esnext","es2017","arraybuffer","compatible", +"dataview","uint8array","equal","builtin","built-in","builtins","bundled","names","flexbox","@asyncapi/specs", +"@clack/prompts","@oclif/plugin-warn-if-update-available","@stoplight/yaml","jsonpathly","mergician","@types/jsonpath", +"bump","compress","mv","dtrace-provider","safe-json-stringify","ben","log4j","streamsearch","@mscdex/eslint-config", +"uploads","multipart", +"closurecompiler","lxiv","metascript","pretty-hrtime","testjs","utfx","typed array","webrtc","byte","converter", +"@bcoe/v8-coverage","foreground-child","v8-to-istanbul","chai-jest-snapshot","v8","profiler","inspector","@types/mri", +"eslint-config-rem","rollup-plugin-esbuild","@babel/plugin-syntax-typescript","@cacheable/utils","@faker-js/faker", +"@keyv/redis","@vitest/spy","cache-manager-redis-yet","cacheable","caching","cache manager","in-memory cache", +"multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper", +"call-bind-apply-helpers","es-define-property","get-intrinsic","set-function-length","es","callbind","callbound","call", +"bind","bound","call-bound","camel-case","camel","case","dash","hyphen","separator","pascalcase","pascal-case","support", +"prebuild-install","assert-rejects","graphic","graphics","pixman","cairo","image", +"pdf","case sensitive","slimerjs","scraping","loupe","pathval","check-error","assertion-error","@web/dev-server-rollup", +"chai-plugin","assertions","strategy","@debitoor/eslint-config-debitoor","objects","subset","contains","containSubset", +"deep","like","similar","includes","superset","yoctodelay","docpress","git-update-ghpages","gulp-ava","gulp-uglify-es", +"random","mersenne","name","address","dice","param-case","kebab-case","header-case","c12","confbox","convert-gitmoji", +"node-fetch-native","ofetch","pkg-types","scule","std-env","@kurkle/color","@rollup/plugin-inject", +"@types/offscreencanvas","chartjs-adapter-luxon","chartjs-adapter-moment","chartjs-test-utils","eslint-config-chartjs", +"eslint-plugin-es","karma-safari-private-launcher","rollup-plugin-swc3","charts","data","graphs","domutils","domhandler", +"cheerio-select","whatwg-mimetype","encoding-sniffer","parse5-parser-stream","parse5-htmlparser2-tree-adapter", +"@imgix/js-core", +"@octokit/graphql","@vitest/eslint-plugin","@types/whatwg-mimetype","htmlparser","scraper","xml","node-version","child", +"@better-scroll/core","add-dom-event-listener","choerodon-ui-font","css-animation","css-unit-converter","dom-closest", +"dom-lib","element-resize-event","htmlhint","insert-css","jsbarcode","jsonlint","jsonlint-mod","mutationobserver-shim", +"querystringify","quill-delta-to-html","react-beautiful-dnd","react-codemirror2","react-easy-crop", +"react-image-lightbox","react-lazy-load","react-quill","rmc-feedback","smooth-scroll-into-view-if-needed", +"@babel/plugin-transform-proto-to-assign","@types/codemirror","@types/element-resize-event","@types/faker", +"@types/insert-css","@types/jsbarcode","@types/prettier","@types/qrcode.react","@types/react-beautiful-dnd", +"@types/react-is","@types/react-slick","bisheng-plugin-choerodon-ui","bisheng-plugin-description","bisheng-plugin-react", +"bisheng-plugin-toc","eslint-tinker","intersection-observer","mark-twain","rc-queue-anim","rc-scroll-anim", +"react-infinite-scroller","react-sublime-video","scrollama","values.js","vfile-message","webpack-filter-warnings-plugin", +"choerodon","readdirp","@paulmillr/jsbt","watchFile","watcher","watching", +"file","ci","continuous","detect","@ckeditor/ckeditor5-emoji","@ckeditor/ckeditor5-style","@ckeditor/ckeditor5-mention", +"@ckeditor/ckeditor5-minimap","@ckeditor/ckeditor5-autosave","@ckeditor/ckeditor5-bookmark", +"@ckeditor/ckeditor5-language","@ckeditor/ckeditor5-highlight","@ckeditor/ckeditor5-code-block", +"@ckeditor/ckeditor5-fullscreen","@ckeditor/ckeditor5-html-embed","@ckeditor/ckeditor5-page-break", +"@ckeditor/ckeditor5-theme-lark","@ckeditor/ckeditor5-word-count","@ckeditor/ckeditor5-show-blocks", +"@ckeditor/ckeditor5-html-support","@ckeditor/ckeditor5-markdown-gfm","@ckeditor/ckeditor5-remove-format", +"@ckeditor/ckeditor5-source-editing","@ckeditor/ckeditor5-horizontal-line","@ckeditor/ckeditor5-find-and-replace", +"@ckeditor/ckeditor5-restricted-editing","@ckeditor/ckeditor5-special-characters","classname","minifier", +"@chrisblossom/eslint-config","@types/read-pkg-up","temp-sandbox","clean","parent-module","uncache","uncached", +"unrequire","delete","remove","rm","opts","parseopt","opt","argsparse","optparse","autocomplete","autocompletion","d", +"es6-iterator","timers-ext","eslint-config-medikoo","git-list-updated","github-release-from-cc-changelog", +"prettier-elastic","tad","toggle","display","show","hide","string-length","spinner","spinners","expresso", +"ansi-256-colors", +"git-rev","growl","line","tables","tabular","jest-runner-eslint","lerna-changelog","truncate","ellipsis","limit","width", +"cardinal","hyperlinker","@oclif/screen","extract-stack","object-treeify","@oclif/linewrap","natural-orderby", +"password-prompt","@types/strip-ansi","@types/ansi-styles","@types/extract-stack","@types/rollup","@yarnpkg/core", +"@yarnpkg/fslib","eslint-plugin-arca","rollup-plugin-multi-input","parsing","argument","good-listener","select", +"tiny-emitter","cut","clipboard-image","is-wayland","is64bit","powershell-utils","paste","copy-paste","pasteboard", +"pbcopy","clip","xclip","xsel","command line interface","progress bar","istanbul-harmony","coro","coroutine","mask", +"ignore-walk","teeny-request","urlgrey","code-coverage","codecov.io","@codemirror/lint","@codemirror/view", +"@codemirror/state","@codemirror/search","@codemirror/commands","@codemirror/language","@codemirror/autocomplete", +"@codemirror/buildhelper","google-closure-compiler-js", +"language","jison","wcwidth","column","exists","array-back","find-replace","typical","options","chalk-template", +"table-layout","usage","is-utf8","cachedir","find-node-modules","mocha-multi-reporters","@istanbuljs/nyc-config-babel", +"cz-conventional-changelog-default-export","conventional changelog","es2015-tag","es6-tag","heredoc","indent","indents", +"literal","multi","multiline","normalize","one","oneline","single","singleline","strings","strip","tag","tagged", +"emitter","emit","listener","observe","compressible","on-headers","gzip","deflate","brotli","buffer-from", +"ctrlc-wrapper","coveralls-next","@types/shell-quote","@hirez_io/observer-spy","eslint-plugin-import-lite", +"eslint-config-flat-gitignore","bash","sh","cson","faceoff","hjson","x2js","conf","node-config","config-node","env", +"atomically","is-safe-filename", +"xdg-basedir","settings","preferences","persist","persistent","save","rack","flash","kruptein","mongo","session", +"vite-plugin-dts","defu","is-unicode-supported","sentencer","reporter","elegant","clack","stacktrace","eco","ect","eta", +"slm","dust","jazz","just","mote","qejs","twig","vash","jqtpl","twing","hamlet","hamljs","liquor","plates","teacup", +"toffee","walrus","htmling","ractive","whiskers","tinyliquid","velocityjs","haml-coffee","liquid-node","arc-templates", +"dustjs-helpers","swig-templates","dustjs-linkedin","bracket-template","engine","rfc6266","rfc7231", +"@types/normalize-package-data","fd-package-json","normalize-package-data","@conventional-changelog/git-client", +"conventional-changelog-writer","conventional-changelog-preset-loader","conventional","tempfile","add-stream", +"compare-func", +"conventionalcommits.org","preset","inline-source-map","sourcemap","source","map","@borderless/ts-scripts","top-sites", +"cookies","sign","unsign","toggle-selection","@brettz9/node-static","selenium-server-standalone-jar","is-gzip", +"@types/glob-parent","@types/normalize-path","eslint-config-webpack","@types/serialize-javascript","transfer","move", +"noms","qr","qrcode","simple qr","npm qr JavaScript","js qr code","corcojs-qrcode-sample","logo","simple qrcode", +"cordova-common","cordova-create","cordova-lib","@cordova/eslint-config","ES3","ES5","ES6","ES7","ES2015","ES2016", +"ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6", +"ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019", +"ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set", +"WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams", +"queueMicrotask","setImmediate","structuredClone","ponyfill","parse-json","@types/parse-json", +"eslint-config-davidtheclark-node","remark-preset-davidtheclark","load","lcov-parse","log-driver","cpy","cp","files", +"file-system","quick","contents","tslog","hpagent","seenreq","http2-wrapper","@types/got","spider","crc16ccitt", +"crc16kermit","crc16modbus","crc16","crc16xmodem","crc1","crc24","crc32","crc81wire","crc8","crc8dvbs2","crcjam", +"cipher-base","ripemd160","sha.js","async-traverse-tree","css-url-parser","data-uri-to-buffer","group-args", +"inline-critical","oust","penthouse","postcss-discard","postcss-image-inliner","postcss-url","normalize-newline", +"stream-array","optimization","@fast-check/jest","@insurgent/commitlint-config", +"@insurgent/conventional-changelog-preset", +"@semantic-release/commit-analyzer","@semantic-release/npm","@semantic-release/release-notes-generator","@swc/jest", +"node cron","node-cron","schedule","cronjob","cron job","timer","crontab","@prantlf/jsonlint","@prettier/plugin-xml", +"@secretlint/secretlint-rule-github","@secretlint/secretlint-rule-npm","@stryker-mutator/core", +"@stryker-mutator/tap-runner","@types/bun","eslint-plugin-array-func","eslint-plugin-no-unsanitized","jsr","metalint", +"secretlint","yaml-lint","@cropper/elements","@cropper/utils","crop","zoom","rotate","scale","cropper","cropper.js", +"image-cropping","image-viewing","image-processing","cropper-element","custom-element","web-component", +"@epic-web/invariant","@epic-web/config","@types/cross-spawn","zshy","cross-environment","environment variable", +"windows","cross-platform","rollup-plugin-esbuild-minify","path-key","shebang-command","babel-preset-moxy", +"eslint-config-moxy","spawn","spawnSync","path-ext","shebang","cmd","execute","browserify-cipher","browserify-sign", +"create-ecdh","create-hmac","diffie-hellman","hash-base","pbkdf2", +"public-encrypt","randomfill","pseudorandombytes","security","Hash","MD5","SHA1","SHA-1","SHA256","SHA-256","RC4", +"Rabbit","AES","DES","PBKDF2","HMAC","OFB","CFB","CTR","CBC","Base64","Base64url","eslint-config-groupon","nlm", +"@cspell/cspell-json-reporter","@cspell/cspell-performance-monitor","@cspell/cspell-pipe","@cspell/cspell-types", +"@cspell/cspell-worker","@cspell/dynamic-import","@cspell/url","cspell-config-lib","cspell-dictionary", +"cspell-gitignore","cspell-glob","cspell-io","cspell-lib","fast-json-stable-stringify","flatted","spell","checker", +"spelling","spell checker","spelling checker","lint","source-map-resolve","@mdn/browser-compat-data", +"@rollup/plugin-dynamic-import-vars","sorter","property","order","@swc-node/register","changelog-verify", +"eslint-config-nitpick","github-release-from-changelog","isomorphic-unfetch","rolldown-plugin-dts","version-changelog", +"write-json-file","functions","postcss-modules-extract-imports","postcss-modules-scope", +"@webpack-contrib/eslint-config-webpack","@swc/css", +"@parcel/css","@types/csso","@types/clean-css","cssnano-preset-simple","webpack-plugin","minimize","minimizer", +"optimize","optimizer","boolbase","@types/boolbase","cheerio-soupselect","sizzle","clap","json-to-ast","walker","lexer", +"web-features","features","stages","identifier","cssnano-preset-default","cssnano-preset-advanced","cssnano-preset-lite", +"optimise","optimisation","@asamuzakjp/css-color","@csstools/css-syntax-patches-for-csstree","@domenic/eslint-config", +"@webref/css","CSS","CSSStyleDeclaration","StyleSheet","@tsconfig/node24","@types/chokidar","@types/turndown","csrf", +"tokens","tsv","generation","object","csv-spectrum","pad","@types/lodash.set","csv parser","parse csv","csv to json", +"csv convert","tojson","convert csv to json","csv-json","duration","stack-chain","is-generator","stacktrace-js", +"serialize-error","cucumber-expressions","cucumber-tag-expressions","ansi-html","eslint-plugin-testcafe","riteway", +"updtr","guid","id", +"uid","unique id","hasha","ospath","blob-util","executable","@cypress/xvfb","@types/sizzle","@cypress/request", +"request-progress","cypress.io","mocks","spies","stubs","longest","conventional-commit-types","d3-dsv","d3-geo", +"d3-axis","d3-drag","d3-ease","d3-path","d3-time","d3-zoom","d3-brush","d3-chord","d3-fetch","d3-force","d3-timer", +"d3-format","d3-random","d3-contour","d3-polygon","d3-delaunay","d3-dispatch","d3-quadtree","d3-hierarchy", +"d3-transition","d3-interpolate","d3-time-format","d3-scale-chromatic","topojson-client","@observablehq/runtime", +"visualization","internmap","d3-module","histogram","bisect","shuffle","statistics","search","sort","selection", +"data-join","dable","tailwind css","tailwind react","tailwind vue","tailwind plugin","tailwind component", +"tailwind next","tailwind nuxt","tailwind svelte","tailwind css plugin", +"tailwind astro","tailwind laravel","tailwind rails","laravel","nuxt","css library","reverse","arguments","binary", +"opposite","invert","switch","construct","@captemulation/get-parameter-names","json-schema-faker-bb","request-debug", +"rss-parser","swagger-express-middleware","bun","cloc","js-fns","jscodeshift","@date-fns/tz","@date-fns/utc", +"@date-fns/docs","@size-limit/esbuild","typedoc-plugin-missing-exports","babel-plugin-replace-import-extension", +"gzip-size-cli","require-directory","sleep","async wrapper","debouncing","throttle","invoke","limited","interval","rate", +"batch","rate-limit","debugger","decamelcase","lowercase","decompress-tar","decompress-tarbz2","decompress-targz", +"decompress-unzip","strip-dirs","is-jpg","bz2","bzip2","extract","tar.bz","tar.gz","@types/babel-plugin-macros", +"console-fail-test","eslint-plugin-deprecation","eslint-plugin-no-only-tests","eslint-plugin-perfectionist", +"eslint-plugin-yml","jsonc-eslint-parser","npm-package-json-lint-config-default","prettier-plugin-curly", +"should-semantic-release", +"yaml-eslint-parser","multi-line string","duplicates","dupes","remove duplicates","distinct","deduplicate", +"deduplication","is-obj","obj","assign","recursive","key","keys","values","prop","json-ptr","difference","compare", +"change-tracking","kewlr","simple-assert","lcov-result-merger","eslint-config-strict","@js-temporal/polyfill", +"eslint-plugin-filenames","chai util","deep equal","object equal","array-buffer-byte-length","es-get-iterator", +"is-arguments","is-array-buffer","is-date-object","is-regex","is-shared-array-buffer","regexp.prototype.flags", +"side-channel","which-boxed-primitive","which-collection","which-typed-array","available-typed-arrays","has-proto", +"has-typed-arrays","equality","is-mergeable-object","jsmd","is-path-cwd","is-path-inside","presentable-error","folders", +"directories","destroy","trash","unlink","cleaning","cleanup","rmrf","rmdir","gulpfriendly","folder","directory", +"filesystem","temp-write", +"random-int","unlimited-timeout","in-range","time-span","defer","stall","timeout","settimeout","tick","threshold", +"range","callsite","deps-regex","is-core-module","@vue/compiler-sfc","patch-version","check","unused","packages", +"deprecate","deprecated","is-relative","read-package-json","detective-cjs","indentation","infer","identify","space", +"tab","@eggjs/tsconfig","egg-bin","eslint-config-egg","mm","tshy-after","port","jsdiff","patch","@profoundlogic/hogan", +"@eslint/json","@types/hogan.js","@types/nopt","all-contributors-cli","handlebars-loader","image-webpack-loader", +"is-ci-cli","side","side-by-side","line-by-line","character","difftohtml","colorized","data-structure-typed", +"eslint-import-resolver-alias","Directed Graph","directed graph","directedgraph","directed-graph","directed","Directed", +"digraph","java script","JavaScript","type script","vertex", +"Vertex","edge","Edge","graph theory","Graph Theory","graph structure","weighted","Weighted","unweighted","Unweighted", +"adjacency","Adjacency","connectivity","cycle","acyclic","traversal","depth","Depth","breadth","Breadth","first", +"depth first search","dfs","DFS","breadth first search","breadth-first search","bfs","BFS","graph algorithms", +"graph representation","connectivity matrix","adjacency list","adjacency matrix","matrix","node degree","sparse graph", +"dense graph","directed cycle","directed acyclic graph","DAG","topologic","topological","sorting", +"strongly connected components","weighted digraph","directed weighted edge","structure","structures","data structure", +"datastructure","data-structure","data structures","datastructures","data-structures","in data structures", +"in data structure","DataStructure","DataStructures","iterative","Node.js","CommonJS","UMD","esmodule","java.util", +"c++ stl","c++ std","Python collections","System.Collections.Generic","STL","stl","collection","Collection", +"Collections","insertion","deletion","OOP","@discordjs/voice","backend-manager","productivity","@discordjs/ws", +"lodash.snakecase","@discordjs/builders","@discordjs/formatters","@discordjs/docgen","bot","cache-point", +"common-sequence","file-set","walk-back","dmd-plugin-example","jsdoc2md","agnostic","dnd","drag","drop","dnode-protocol", +"jsonify","weak","rpc","callbacks","doc-detective-common","doc-detective-resolver","@ffmpeg-installer/ffmpeg", +"@puppeteer/browsers","appium-chromium-driver","appium-geckodriver","appium-safari-driver","geckodriver","jq-web", +"json-schema-faker","posthog-node","literate","mecano","parameters","@balena/dockerignore","@grpc/grpc-js", +"@grpc/proto-loader","docker-modem","docker","docker.io","@bevry/pluginloader","ambi","ansistyles","bal-util", +"caterpillar","docmatter","docpad-baseplugin","eachr", +"envfile","errlop","event-emitter-grouped","extendr","extract-opts","ignorefs","istextorbinary","jschardet", +"lazy-require","progress-title","query-engine","rfc-log-levels","safefs","safeps","scandirectory","taskgroup", +"typechecker","unbounded","watchr","@bevry/update-contributors","assert-helpers","coffeelint","kava","projectz", +"valid-directory","build","build and deployment","cms","compile","content management system","dev","dms", +"document management system","language agnostic","render","templating","web development","dependency-cruiser","dpdm", +"docsify.js","tabs","@textlint/markdown-to-ast","anchor-markdown-header","update-section","bitbucket","gitlab","ghost", +"doctrine-temporary-fork","konan","mdast-util-inject","micromark-util-character","parse-filepath", +"remark-reference-links","unist-builder","vfile-reporter","vfile-sort","chdir","documentation-schema","jsdoc3", +"big-integer","binary-search-bounds","int64-buffer","priorityqueuejs","semaphore", +"tunnel","cosmosdb","cosmos db","document database","nosql","database","crowdin-cli","imagemin-svgo","tree-node-cli", +"truncate-html","imagemin-optipng","imagemin-gifsicle","imagemin-jpegtran","filepath","glob-promise","websites", +"open source","autocomplete.js","lunr-languages","to-vfile","unist-util-is","offline-search","@4c/rollout", +"@4c/tsconfig","@react-bootstrap/babel-preset","@react-bootstrap/eslint-config", +"@react-bootstrap/eslint-config-typescript","karma-html2js-preprocessor","simulant","cross-browser","height","class", +"classlist","domelementtype","raster","png","@types/trusted-types","lodash.sample","qunit-tap", +"rollup-plugin-includepaths","mathml","secure","sanitizer","sanitize","filter","purify",".env","expand","interpolation", +"substitution","ext-name","filenamify","archive-type","is-zip","random-buffer","git-clone","repo","repository","tarball", +"import-from","parse-cmd-args","simple-update-notifier","ts-jest-resolver","dox", +"spawn-please","@types/temp","alex","babel-preset-fbjs","eslint-config-fbjs","fbjs-scripts","gulp-derequire", +"stats-webpack-plugin","webpack-stream","draftjs","richtext","just-extend","@parcel/transformer-inline-string", +"@parcel/transformer-sass","cypress-file-upload","karma-sinon-chai","parcel","dragndrop","drag and drop","file upload", +"upload","tsutils","dts-critic","@definitelytyped/utils","@definitelytyped/header-parser", +"@definitelytyped/typescript-versions","@types/strip-json-comments","@types/json-stable-stringify","proper-lockfile", +"db","elementscript","dw-neit-colors","dw-neit-cssinjs","dw-neit-cssinjs-utils","dw-neit-icons", +"dw-neit-ant-design-react-slick","dw-neit-rc-component-color-picker","dw-neit-rc-component-mutate-observer", +"dw-neit-rc-component-qrcode","dw-neit-rc-component-tour","dw-neit-rc-component-trigger","dw-neit-rc-cascader", +"dw-neit-rc-checkbox","dw-neit-rc-collapse","dw-neit-rc-dialog","dw-neit-rc-drawer","dw-neit-rc-dropdown", +"dw-neit-rc-field-form","dw-neit-rc-image","dw-neit-rc-input","dw-neit-rc-input-number","dw-neit-rc-mentions", +"dw-neit-rc-menu","dw-neit-rc-motion","dw-neit-rc-notification","dw-neit-rc-pagination","dw-neit-rc-picker", +"dw-neit-rc-progress","dw-neit-rc-rate","dw-neit-rc-resize-observer","dw-neit-rc-segmented","dw-neit-rc-select", +"dw-neit-rc-slider","dw-neit-rc-steps", +"dw-neit-rc-switch","dw-neit-rc-tabs","dw-neit-rc-textarea","dw-neit-rc-tree","dw-neit-rc-util","dw-neit-rc-table", +"dw-neit-rc-tooltip","dw-neit-rc-tree-select","dw-neit-rc-upload","@antv/g6","@types/pixelmatch","eslint-plugin-lodash", +"@eslint/core","control flow","iteration","zrender","@lang/rollup-plugin-dts","data-visualization","charting-library", +"apache","data-viz","editorconfig","gulp-exclude-gitignore","gulp-reporter","gulp-tap","linez","os-locale", +"@types/get-stream","@types/through2","@types/vinyl","@types/vinyl-fs","fix","enforce","gulpplugin","agentkeepalive", +"aliasify","backport","grunt-run","null-loader","through2-map","grunt-webpack","grunt-contrib-compress","@electron/get", +"lazy-val","dmg-builder","builder-util","app-builder-lib","builder-util-runtime","installer","packager","pack","nsis", +"dmg","pkg","msi","exe","setup","Windows","OS X","MacOS","Mac","appx","snap","flatpak", +"@electron/asar","@electron/notarize","@electron/osx-sign","@electron/universal","cross-spawn-windows-exe","galactus", +"get-package-info","junk","parse-author","rcedit","bundler","electron-download","home-path","wonderful-fetch", +"batch-processor","grunt-banner","@vue/component-compiler-utils","algoliasearch","babel-plugin-transform-vue-jsx", +"babel-regenerator-runtime","cp-cli","eslint-config-elemefe","eslint-plugin-json","file-save","gulp-cssmin", +"launch-editor-middleware","markdown-it-chain","select-version-cli","transliteration","uppercamelcase", +"vue-template-es2015-compiler","eleme","brorand","hash.js","hmac-drbg","minimalistic-assert","minimalistic-crypto-utils", +"grunt-mocha-istanbul","EC","Elliptic","curve","Cryptography","@ladjs/consolidate","@ladjs/i18n","get-paths","juice", +"nodemailer-sendgrid","preview-email","email","lad","lass","mailchimp","mailgun","mandrill","moonmail","postmark", +"sendgrid","@types/mailparser","@types/smtp-server","mailparser","smtp-server","@ember-tooling/blueprint-blueprint", +"@ember-tooling/blueprint-model","@ember/app-blueprint", +"@pnpm/find-workspace-dir","babel-remove-types","broccoli-concat","broccoli-config-loader","broccoli-config-replace", +"broccoli-debug","broccoli-funnel-reducer","broccoli-slow-trees","broccoli-source","broccoli-stew", +"calculate-cache-key-for-tree","capture-exit","clean-base-url","console-ui","content-tag","core-object","dag-map", +"ember-cli-is-package-missing","ember-cli-preprocess-registry","ensure-posix-path","find-yarn-workspace-root", +"heimdalljs-fs-monitor","heimdalljs-graph","heimdalljs-logger","is-git-url","is-language-code","markdown-it-terminal", +"p-defer","promise-map-series","promise.hash.helper","quick-temp","safe-stable-stringify","sane","sort-package-json", +"symlink-or-copy","tree-sync","watch-detector","yam","@ember-tooling/classic-build-addon-blueprint", +"@ember-tooling/classic-build-app-blueprint","chai-files","ember-cli-blueprint-test-helpers", +"ember-cli-internal-test-helpers","eslint-plugin-chai-expect","fixturify-project","release-plan","tmp-promise", +"yuidoc-ember-cli-theme","yuidocjs","app-kit","ember","ember-app-kit","ember.js","amd-name-resolver", +"babel-plugin-debug-macros","babel-plugin-ember-data-packages-polyfill","babel-plugin-ember-modules-api-polyfill", +"broccoli-babel-transpiler","ember-cli-babel-plugin-helpers","ember-cli-version-checker","@ember/optional-features", +"@ember/string","@ember/test-helpers","@glimmer/component", +"@glimmer/tracking","code-equality-assertions","ember-auto-import","ember-cli-dependency-checker", +"ember-cli-inject-live-reload","ember-load-initializers","ember-qunit","ember-resolver","ember-source", +"ember-source-channel-url","eslint-plugin-ember","loader.js","ember-addon","@ember/edition-utils", +"babel-plugin-ember-template-compilation","broccoli-persistent-filter","js-string-escape","@embroider/test-setup", +"ember-cli-clean-css","ember-styleguide","ember-template-lint","ember-try","eslint-plugin-qunit","@emmetio/abbreviation", +"@emmetio/css-abbreviation","snippets","coding","streams","finish","close","end","es-errors","safe-regex-test", +"entitify","entity","enum","enumeration","datatype","type","github-release-cli","yamlify-object","info","issues", +"reporting","diagnostics","array.prototype.flat","function.prototype.name","has","html-element-map","is-boolean-object", +"is-callable","is-number-object","is-string","is-subset","lodash.escape","object.values","rst-selector-parser", +"string.prototype.trim","shallow rendering","shallowRender","test utils","assertion helpers","airbnb-prop-types", +"object.fromentries", +"codependence","oxlint","pastoralist","check for es6","check for modules","es check","es matching","es version", +"ecmascript check","ecmascript matching","ecmascript version","js version","js version check","js version matching", +"test js version","test ecmascript version","has-bigints","intl-fallback-symbol","make-arrow-function", +"make-async-function","@ljharb/tsconfig","@types/array.prototype.flatmap","@types/call-bind","@types/foreach", +"@types/has-bigints","@types/has-symbols","@types/isarray","@types/make-arrow-function","@types/make-async-function", +"@types/make-generator-function","@types/object.assign","@types/reflect.ownkeys","@types/tape","reflect.ownkeys", +"symbol.prototype.description","well-known-symbols","fixture","fixtures","es6-symbol","esniff","next-tick", +"plain-promise","ecmascript5","ecmascript6","es5","extensions","ext","addons","extras","utilities","es5 shim","json3", +"broccoli-rollup","git-repo-version","broccoli-watchify","broccoli-uglify-js","promises-aplus-tests-phantom", +"babel6-plugin-strip-class-callcheck","babel-plugin-transform-es2015-constants","futures","promisify", +"promises-es6-tests","setPrototypeOf","set", +"__proto__","regular","expression","special","characters","bower-registry-client","commonjs-everywhere", +"@eslint/config-array","@eslint/config-helpers","@eslint/plugin-kit","@humanfs/node","@humanwhocodes/module-importer", +"@humanwhocodes/retry","esquery","file-entry-cache","imurmurhash","json-stable-stringify-without-jsonify", +"@trunkio/launcher","@types/esquery","eslint-plugin-expect-type","eslint-release","eslint-rule-extender","eslump", +"fs-teardown","metascraper","metascraper-description","metascraper-image","metascraper-logo","metascraper-logo-favicon", +"metascraper-title","node-polyfill-webpack-plugin","npm-license","yorkie","babel-tape-runner","eslint-find-rules", +"eslintconfig","airbnb","es2016","es2018","confusing-browser-globals","prettier-package-json","quality","linter", +"jslint","code style","strict","verify","hint","eslint config","eslint-config-xo-space","eslint-prettier", +"@rushstack/eslint-patch","JavaScript Standard Style","code checker","code linter","code standards","policy", +"standard style","style checker","style linter","@eslint/config-inspector","automd","eslint-typegen","obuild", +"@eslint/css","xoxo","hugs","kisses","happy","happiness","cabin","rules","@typescript/native-preview", +"eslint-import-context","is-bun-module","stable-hash-x","unrs-resolver","@webpack-contrib/defaults", +"commitlint-azure-pipelines-cli","eslint-friendly-formatter","enhance-visitors","espurify","micro-spelling-correcter", +"eslint-ava-rule-tester","eslint-rule-composer","ast-metadata-inferer","@tsconfig/node16","@types/caniuse-lite", +"@types/lodash.memoize","browserslist-config-erb","kangax","@vuepress/plugin-pwa","eslint4b","vue-eslint-editor", +"comment","directive","exported","eslint-env","eslint-enable","eslint-disable","eslint-disable-line", +"eslint-disable-next-line","@eslint-community/eslint-plugin-eslint-comments","@types/eslint-scope","@types/espree", +"@types/estraverse","eslint-config-not-an-aardvark","string-natural-compare","gitdown","eslint-config-canonical", +"flowtype","@html-eslint/eslint-plugin","@html-eslint/parser","markdown-link-check","@rtsao/scc","array-includes", +"array.prototype.findlastindex","doctrine","eslint-import-resolver-node","eslint-module-utils","object.groupby", +"string.prototype.trimend","@angular-eslint/template-parser","escope","fs-copy-file-sync","linklocal","lodash.isarray", +"npm-which", +"typescript-eslint-parser","export","@schemastore/package","babel-plugin-replace-ts-export-assignment", +"eslint-remote-tester-repositories","@es-joy/jsdoccomment","@es-joy/resolve.exports","are-docs-informative", +"object-deep-merge","parse-imports-exports","spdx-expression-parse","to-valid-identifier","@es-joy/escodegen", +"@es-joy/jsdoc-eslint-parser","@hkdobrev/run-if-changed","@types/spdx-expression-parse", +"babel-plugin-transform-import-meta","jsdoc-type-pratt-parser","json-schema-to-typescript","open-editor","replace", +"@ota-meshi/ast-token-store","diff-sequences","eslint-json-compat-utils","@changesets/changelog-github", +"@ota-meshi/eslint-plugin","@ota-meshi/site-kit-eslint-editor-vue","@types/natural-compare","env-cmd", +"eslint-plugin-eslint-rule-tester","eslint-plugin-json-schema-validator","eslint-plugin-node-dependencies", +"stylelint-config-recommended-vue","stylelint-config-standard-vue","stylelint-stylus","vite-plugin-eslint4b","jsonc", +"ast-types-flow","axobject-query","damerau-levenshtein","jsx-ast-utils","language-tags","string.prototype.includes", +"to-ast","eslint-config-eslint","eslint-plugin-es-x","ts-declaration-location","@types/globrex","ts-ignore-import", +"eslint-utils","prettier-linter-helpers","array.prototype.findlast","array.prototype.tosorted","es-iterator-helpers", +"string.prototype.repeat","@babel/plugin-syntax-do-expressions","@babel/plugin-syntax-function-bind","gfm-footnotes", +"ls-engines","hermes-parser","@types/estree-jsx","@tsconfig/strictest","refa","regexp-ast-analysis", +"scslre","@types/pako","eslint-plugin-pere","eslint-snapshot-rule-tester","mocha-chai-jest-snapshot","safe-regex", +"eslint-config-nodesecurity","nodesecurity","jsx-ast-utils-x","functional-red-black-tree","sonarjs", +"svelte-eslint-parser","@types/eslint-utils","@types/esutils","@types/less","@types/postcss-safe-parser","@types/stylus", +"svelte-i18n","sveltejs","eslint-plugin-import-x","clean-regexp","find-up-simple","regexp-tree","regjsparser", +"@lubien/fixture-beta-package","nano-spawn","node-style-text","unicorn","@veritem/eslint-config","bumpp", +"vitest eslint plugin","eslint plugin","xml-name-validator","@types/xml-name-validator", +"eslint-plugin-markdown-preferences","@types/babel__code-frame","importx","ink-testing-library","eslint-test", +"@types/esrecurse","esrecurse","eslint-plugin-requirejs","escomplex-js","everything.js","json-diff", +"karma-safaritechpreview-launcher","node-tick-processor","unicode-8.0.0","gulp-tag-version","ethereumjs-common", +"@ethereumjs/config-nyc","@ethereumjs/config-prettier","@ethereumjs/config-tsc","@ethereumjs/config-tslint", +"contributor","karma-tap","typestrict","transactions","ethereum-cryptography","rlp","@types/assert","@types/secp256k1", +"karma-typescript","os-tmpdir", +"es-lookup-scope","qs-iconv","eval","evaulate","from","pause-stream","stream-combiner","asynct","it-is","stream-spec", +"ubelt","flatmap","join","eventemitter","addEventListener","addListener","pub/sub","emits","on","publish","subscribe", +"EventEmitter","EventEmitter2","EventEmitter3","Events","reactor","eventEmitter","eventDispatcher","listeners", +"@sindresorhus/merge-streams","human-signals","strip-final-newline","yoctocolors","get-node","is-in-ci","is-running", +"log-process-errors","exec","subprocess","fork","execfile","bin","binaries","local","stdio","stderr","drain","flush", +"3584","@jest/expect-utils","@jest/get-type","eslint-plugin-mmkal","pkg-pr-new","type-check","merge-descriptors", +"pbkdf2-password","array-flatten","setprototypeof","automatically","autogenerate","autogenerator","autogenerated", +"express3","partials", +"express-unless","authn","authz","token","expressjs","helpers","hoare","cjs-mock","tRPC","RPC","express.js", +"code-generation","fully-typed","type-safe","typed-api","express-api","http-api","client-server","unit-testing", +"browser-client","web-development","web-api","@docusaurus/plugin-client-redirects","@docusaurus/preset-classic", +"sanitization","openapi3-ts","@express-zod-api/zod-plugin","@types/depd","@types/http-errors","@types/node-forge", +"camelize-ts","snakify-ts","dts-plugin","handler","documentation-tool","schema-validation","endpoint", +"openapi-specification","swagger-documentation","covert","assign-symbols","is-extendable","array-slice","benchmarked", +"for-own","kind-of","props","shallow","webpack-defaults","@types/yauzl","gulp-mustache","vinyl-transform", +"color-support","parse-node-version","console.log","timestamp","pure-rand","@fast-check/expect-type", +"@fast-check/poisoning","property-based testing","end-to-end testing","quickcheck","jscheck","jsverify", +"fuzzer","fuzz","@fast-csv/parse","@fast-csv/format","writer","csv writer","CSV","@nodelib/fs.stat","@nodelib/fs.walk", +"@nodelib/fs.macchiato","@types/merge2","@types/picomatch","bencho","eslint-config-mrmlnc","hereby","snap-shot-it", +"implementation","strnum","transformer","js2xml","json2xml","click","@fastify/ajv-compiler","@fastify/error", +"@fastify/fast-json-stringify-compiler","@fastify/proxy-addr","abstract-logging","avvio","fast-json-stringify", +"find-my-way","light-my-request","process-warning","secure-json-parse","toad-cache","@jsumners/line-reporter","ajv-i18n", +"ajv-merge-patch","autocannon","branch-comparer","fast-json-body","fluent-json-schema","h2url","markdownlint-cli2", +"@umijs/babel-preset-umi","@umijs/bundler-webpack","@umijs/case-sensitive-paths-webpack-plugin","@utoo/pack", +"@vercel/ncc","babel-plugin-styled-components","babel-plugin-transform-define","loader-runner","piscina", +"typescript-transform-paths","@types/loader-runner","@types/minimatch","array.prototype.foreach","array.prototype.join", +"array.prototype.map","array.prototype.push","array.prototype.slice","string.prototype.split","tap-parser","human", +"anything", +"protocol","fbjs-css-vars","setimmediate","@skypack/package-check","babel-plugin-minify-dead-code-elimination","in web", +"in javascript","in react","Plug & Play","web component","react components","ui component","advanced component", +"advanced feature","scanner","phonebook","voice","autofillotp","share","livelocationtracking","detectmylocation", +"colorpicker","wakelock","WhatsappShare","NetworkConnection","TextToSpeech","VoiceRecognition","SnapScanner", +"NetworkMonitor","View360","functional program","data management","@types/glob-to-regexp","dequal","glob-to-regexp", +"stub","detect-libc","fiber","thread","worker","art","banner","symbol","symbols","figure","fallback","filesaver", +"saveas","blob","@tokenizer/inflate","strtok3","token-types","uint8array-extras","@tokenizer/token","commonmark", +"noop-stream","magic","pic","picture","photo","video","exif","elf","macho", +"jpg","apng","gif","flif","xcf","cr2","cr3","orf","arw","dng","nef","rw2","tif","bmp","icns","jxr","psd","indd","rar", +"gz","7z","mp4","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","epub","mobi", +"rtf","woff","woff2","eot","ttf","otf","ttc","ico","flv","ps","xz","xpi","cab","deb","ar","rpm","Z","lz","cfb","mxf", +"mts","wasm","webassembly","blend","bpg","docx", +"pptx","3gp","j2c","jp2","jpm","jpx","mj2","aif","odt","ods","odp","heic","ics","pcap","dsf","lnk","voc","ac3","3g2", +"m4b","m4p","m4v","f4a","f4b","f4p","f4v","mie","qcp","asf","ogv","ogm","oga","spx","ogx","ape","wv","cur","nes","crx", +"ktx","dcm","mpc","arrow","shp","aac","mp1","it","s3m","xm","skp","eps","lzh","pgp","asar","chm","3mf","zst","jxl","vcf", +"jls","pst","dwg","parquet","arj", +"cpio","ace","avro","icc","fbx","vsdx","vtt","apk","drc","lz4","potx","xltx","dotx","xltm","ots","odg","otg","otp","ott", +"xlsm","docm","dotm","potm","pptm","jar","jmp","sav","ppsm","ppsx","reg","dat","size","readable","file system", +"locate-path","unicorn-magic","up","look-up","look","parent","walking","detect-file","resolve-dir","homedir-polyfill", +"@firebase/ai","@firebase/app","@firebase/auth","@firebase/util","@firebase/storage","@firebase/database", +"@firebase/analytics","@firebase/app-check","@firebase/app-types","@firebase/firestore","@firebase/functions", +"@firebase/messaging","@firebase/app-compat","@firebase/auth-compat","@firebase/performance","@firebase/data-connect", +"@firebase/installations","@firebase/remote-config","@firebase/storage-compat","@firebase/database-compat", +"@firebase/analytics-compat","@firebase/app-check-compat","@firebase/firestore-compat","@firebase/functions-compat", +"@firebase/messaging-compat","@firebase/performance-compat","@firebase/installations-compat", +"@firebase/remote-config-compat","Firebase","realtime","remote-config","@fastify/busboy","@firebase/database-types", +"farmhash-modern","google-auth-library","jwks-rsa","@firebase/api-documenter","@firebase/auth-types","@types/bcrypt", +"@types/firebase-token-generator","@types/request","@types/request-promise","firebase-token-generator", +"http-message-parser","admin","@apphosting/build","@apphosting/common","@electric-sql/pglite", +"@electric-sql/pglite-tools","@google-cloud/cloud-sql-connector","@google-cloud/pubsub","@modelcontextprotocol/sdk", +"async-lock","cjson","deep-equal-in-any-order","exegesis","exegesis-express","gaxios","libsodium-wrappers","lsofi", +"pg-gateway","pglite-2","proxy-agent","sql-formatter","stream-chain","stream-json","superstatic","triple-beam", +"universal-analytics","update-notifier-cjs","zod-to-json-schema","cdn","ssl","hosting","synchronization","alce", +"detect-newline","extend-object","@types/rimraf","matcher-collection","unflatten","nested","@types/acorn", +"rollup-plugin-livereload", +"rollup-plugin-serve","lightweight","byline","util-extend","markdox","deploy","deployment","commands","devops","ssh", +"tasks","sequential","remote","fabric","inference","wrapper","flowbite-datepicker","mini-svg-data-uri", +"@tailwindcss/cli","@tailwindcss/postcss","eslint-plugin-tailwindcss","flowbite-typography", +"prettier-plugin-tailwindcss","windicss","ui components","tailwind components","tailwind elements","tailwind library", +"tailwind sections","tailwind ui","tailwind angular","tailwind django","tailwind ruby on rails","tailwind flask","cjs", +"umd","ffmpeg","fbemitter","react-addons-test-utils","dispatcher","lolex","redirect","location","@types/is-callable", +"cliff","shush","flatiron","nssocket","forever-monitor","getopts","cli-testlab","fault tolerant","sysadmin", +"node-abort-controller","jest-circus","karton","typecheck","@types/babel-code-frame","increment","asynckit", +"combined-stream","es-set-tostringtag","browserify-istanbul","fake", +"far","is-node-modern","js-randomness-predictor","obake","dezalgo","@paralleldrive/cuid2","formdata-polyfill", +"prettier-plugin-pkgjson","@tunnckocore/prettier-config","www","ulpoad","tiny-warning","just-debounce-it","tsdx", +"react hooks","render props","higher order component","hoc","conditional","friendly","errors","check-dts","front matter", +"meta data","universalify","klaw","read-dir-files","extra","mkdir","mkdirs","create","output","release-assist", +"any-promise","thenify-all","mac","ie","@monaco-editor/loader","@sapphire/stopwatch","@sapphire/utilities", +"@snippetors/vuepress-plugin-tabs","@vuepress/plugin-google-analytics","monaco-editor","vuepress-plugin-google-adsense2", +"bitap","socket","sublime","sublime text","globule","grunt-benchmark","yeoman-test","yeoman-assert","insight", +"restangular","ui-router","foundation","traceur","haml","git-config","find-git-root","@merkle-open/eslint-config", +"nitro","modular","pool", +"pooling","inject-markdown","ts2mjs","iterator","iterators","iterable","reduce","@werkzeugkiste/eslint-config", +"@werkzeugkiste/release-config","install-deps-postmerge","semantic-release-conventional-commits","@cfware/lint", +"@cfware/nyc","if-ver","libtap","finder","free","available","connection","tcp","scan","preferred","chosen","std", +"concat","@sec-ant/readable-stream","onetime","precise-now","get","consume","readablestream","resolve-pkg-maps", +"tsconfig","tsconfig.json","eslint-config-bevry","make-deno-edition","deno","deno-edition","deno-entry","denoland", +"es2022","export-default","ifconfig","ipconfig","mac-address","typed","email-addresses","dir-compare", +"eslint-config-tschaub","lodash.clone","manage-path","opt-cli","spawn-command","chai-string","eslint-config-kentcdodds", +"travis-after-all","hook","@primer/octicons","@primer/primitives","@rollup/plugin-html","minipass","path-scurry", +"dirname","wildcard", +"min-document","is-identifier","identifiers","environments","glob-stream","all","fnmatch","globbing","globs","multiple", +"paths","wildcards","gitignore","array-series","array-parallel","magick","graphicsmagick","gfsl", +"eslint-config-standard-with-typescript","msmc","mc","minecraft","launcher","java","java edition","arm","arm-support", +"forge","instances-management","instances","mod","mods","mc-mod","mc-mods","modpack","modpack-api","extendable","nbt", +"jarmods","skin fix","ky","eslint-plugin-no-floating-promise","varlock","google spreadsheets","google sheets", +"spreadsheet","spreadsheets","sheets","gdata","drive","google docs","google drive","googleapis-common","@types/execa", +"@types/mv","@types/ncp","@types/nunjucks","@types/url-template","@types/yargs-parser","js-green-licenses","jsdoc-fresh", +"jsdoc-region-tag","linkinator","pdfmake", +"google apis","client library","@sindresorhus/is","byte-counter","cacheable-lookup","cacheable-request", +"decompress-response","form-data-encoder","lowercase-keys","p-cancelable","responselike","@hapi/bourne","@types/pem", +"chunk-data","create-cert","create-test-server","pem","slow-stream","then-busboy","uri","curl","wget","zstd","zstandard", +"requests","human-friendly","sassdoc","gulp-cli","sass-color-helpers","govuk-prototype-kit","govuk","reading","retries", +"handling","EMFILE","EAGAIN","EINVAL","EPERM","EACCESS","graphql-js","test-all-versions","@graphql-tools/schema", +"section-matter","strip-bom-string","ansi-green","delimiter-regex","assemble","coffee","extracting","front", +"frontmatter","matter","site","@mapbox/node-pre-gyp","@types/bytebuffer","electron-mocha","google-protobuf", +"poisson-process","grunt-legacy-log","grunt-legacy-util","grunt-known-options","difflet","temporary", +"eslint-config-grunt", +"uglify","init","make","gruntplugin","browserify-incremental","liftup","pad-stream","grunt-nodemon","simultaneous", +"perf","faster","bin-version-check","compass","connect-livereload","file-sync-cmp","csslint","maxmin","cssmin","min", +"jpeg","hooker","less-plugin-clean-css","nodeunit-x","uri-path","grunt-coveralls","grunt-istanbul", +"grunt-github-remove-all-releases","gh","release","releases","report","vow","@commitlint/travis-cli","TDD", +"grunt-continue","grunt-env","grunt-istanbul-coverage","grunt-cafe-mocha","newer","stack-parser","grunt-release", +"grunt-templates-dylang","notify","mountain lion","mavericks","linux","notify-send","preprocess","libsass", +"requestretry","sauce-tunnel","grunt-sauce-tunnel","yui","spritesheet-templates","spritesmith","url2", +"eslint-config-twolfson","foundry","foundry-release-git","foundry-release-npm","get-pixels","gmsmith","sprite", +"spritesheet", +"grunt-mocha-cli","usemin","@npm/types","@types/json5","@types/write-file-atomic","inline-fixtures", +"@guarapi/eslint-config-guarapi","@swc/register","glob-watcher","undertaker","pipeline","series","streaming", +"gulp-footer","html2js","templatecache","gulp-symdest","atom","atom-shell","prefixes","postcss-runner","lodash.chunk", +"concurrent-transform","@azure/storage-blob","delayed-stream","streamifier","rewriting","transformation","codegen", +"desugaring","bom","mark","utf-8","add","prepend","gulp-codecov.io","bump-regex","plugin-log","version","versioning", +"gulp-version","gulp-plugin","cache-swap","object.pick","change-file-extension","changed","modified","modification", +"updated","mtime","stat","cached","passthrough","minify-css","jshint-reporter-jscs","parse-import","rework", +"rework-import","rework-plugin-url","inline","slush","dest","conflict","webserver", +"csscomb","rcloader","csslint-stylish","node-version-check","from2-string","@shinnn/eslint-config-node","warnings", +"flatnest","balanced-match","include","streamfilter","to-absolute-glob","divide","separate","relative", +"pretty-remarkable","sections","prettify","jsftp","jsftp-mkdirp","ftp-test-server","gift","wrap-promise","octonode", +"read-remove-file","@shinnn/eslint-config-node-legacy","branch","any-shell-escape","strip-bom-stream","gulpgit", +"stream-to-array","nid","gulp-declare","gulp-define-module","gulp-wrap","nsdeclare","eventstream","istanbul-coveralls", +"htm","htmlmin","gulp-spawn","gulp-svg2ttf","gulp-ttf2eot","gulp-ttf2woff","gulp-ttf2woff2","gulp-svgicons2svgfont", +"metapak","streamtest","@types/gulp","metapak-nfroidure","gulp-match","ternary-stream","stream-exhaust","if","ternary", +"exclude","gulp-gm","imagemin-webp","group-array","strip-color","@commitlint/config-angular","inject","stylesheets", +"webcomponents", +"scripts","index","inline-css","lodash.groupby","istanbul-threshold-checker","isparta","unit test", +"jasmine-terminal-reporter","gulplog","has-gulplog","array-unique","capture-stream","plugins","vinyl-bufferstream", +"stream-combiner2","kew","bufferstreams","ng-annotate","develop","restart","windows notification","mac notification", +"notify-osd","easy-transform-stream","ENV","echo","ifdef","ifndef","eslint-watch","views","precompile","src", +"replacestream","modify-filename","rev-hash","rev-path","sort-keys","vinyl-file","rev","revving","revision","expire", +"assets","each-async","md5-hex","ruby","source-maps","sourcemaps","sftp","@types/fancy-log","@types/lodash.template", +"brotli-size","measure","@gulp-sourcemaps/identity-map","@gulp-sourcemaps/map-sources","debug-fabulous","hook-std", +"mississippi","source maps","strip-debug","accord","looks-same","svg2png","stack", +"vector","rwd","retina","rendering","@types/through","incremental","@types/ansi-colors","gulp-diff", +"@types/plugin-error","incremental compilation","array-each","make-error-cause","tape-catch","source-list-map", +"eslint-plugin-no-use-extend-native","uncss","useref","async-once","mock-gulp-dest","array-differ","array-uniq","beeper", +"lodash._reescape","lodash._reevaluate","lodash._reinterpolate","lodash.templatesettings","yazl","yazul","vinyl-zip", +"anymatch","proxy-middleware","vinyl-assign","pngparse","phantomjssmith","zlib","compressed","catering","deglob", +"find-file-up","find-githost","remark-autolink-references","remark-common-changelog", +"remark-lint-blockquote-indentation","remark-lint-checkbox-character-style","remark-lint-checkbox-content-indent", +"remark-lint-code-block-style","remark-lint-definition-case","remark-lint-emphasis-marker", +"remark-lint-fenced-code-marker","remark-lint-final-newline","remark-lint-hard-break-spaces", +"remark-lint-list-item-bullet-indent","remark-lint-list-item-indent","remark-lint-no-auto-link-without-protocol", +"remark-lint-no-blockquote-without-marker","remark-lint-no-duplicate-definitions", +"remark-lint-no-heading-content-indent","remark-lint-no-inline-padding","remark-lint-no-literal-urls", +"remark-lint-no-unused-definitions","remark-lint-rule-style","remark-lint-strong-marker", +"remark-lint-table-cell-padding","remark-lint-table-pipes", +"remark-lint-unordered-list-marker-style","remark-validate-links","unified-engine","vfile-reporter-shiny", +"git-pull-or-clone","fixer","changelogplease","git-tags","grunt-contrib-qunit","grunt-string-replace","jquery-hammerjs", +"gestures","neo-async","chai-diff","grunt-contrib-requirejs","ammo","shot","topo","heavy","mimos","bounce","catbox", +"podium","somever","subtext","teamwork","statehood","catbox-memory","wreck","vision","elements","flag","getopt", +"@types/core-js","get-own-property-symbols","typeof","sham","function-bind","@types/function-bind", +"@types/mock-property","hasOwnProperty","hasOwn","has-own","own","in","@ungap/structured-clone","hast-util-from-parse5", +"unist-util-position","web-namespaces","zwitch","@types/ungap__structured-clone","remark-api","hast-util","hast","unist", +"raw","aria-attributes","html-tag-names","safe","bcp-47-match","devlop","direction","selectall", +"estree-util-attach-comments", +"estree-util-is-identifier-name","mdast-util-mdx-expression","mdast-util-mdx-jsx","mdast-util-mdxjs-esm", +"esast-util-from-js","ccount","tostring","sval","solid","unist-util-find-after","estree-util-build-jsx","svg-tag-names", +"hyperscript","vdom","virtual","regexgen","sort-object","content-security-policy","cross-origin-embedder-policy", +"cross-origin-opener-policy","cross-origin-resource-policy","origin-agent-cluster","referrer-policy", +"strict-transport-security","x-content-type-options","x-dns-prefetch-control","x-download-options","x-frame-options", +"x-permitted-cross-domain-policies","x-powered-by","x-xss-protection","@vue/compiler-dom","abbrev","fast-archy", +"fast-text-table","hexo-cli","hexo-front-matter","hexo-fs","hexo-i18n","hexo-log","hexo-util","js-yaml-js-types","moize", +"titlecase","warehouse","@types/abbrev","0x","eslint-config-hexo","hexo-renderer-marked","util-deprecate", +"grunt-gh-pages","scrawl","transducers-js","tiny-worker","wcag-contrast","css-color-names","deep-freeze-es6", +"dependency-resolver","step","hap-nodejs","@types/source-map-support","eslint-plugin-import-newlines", +"@hono/eslint-config","bun-types", +"editorconfig-checker","oxc-parser","vite-plugin-fastly-js-compute","wrangler","application","cloudflare","workers", +"fastly","compute","workshopper-adventure","workshop","adventure","tutorial","tutor","@size-limit/preset-big-lib", +"@types/jscodeshift","pojo","attribute","element","@exodus/bytes","@types/he","flowgen","html entities", +"html entities encode","html entities decode","entities encode","entities decode","ascjs","unescape","posthtml-webp", +"unescape-unicode","relateurl","compressor","packer","uglifier","alpinejs","commitlint-config-non-conventional", +"rollup-plugin-polyfill-node","tags","void","self-closing","@types/jasmine","@bubkoo/tsconfig","@bubkoo/eslint-config", +"@bubkoo/rollup-config","@bubkoo/commitlint-config","@bubkoo/semantic-release-config","screenshot","capture", +"@selderee/plugin-htmlparser2","selderee","mail","plain","@html-validate/stylish","@sidvind/better-ajv-errors", +"@types/html-minifier-terser","pug-loader","webpack-recompilation-simulator","@types/relateurl","bunchee", +"eslint-plugin-unused-imports","srcset","posthtml-plugin","postproccessor", +"rss","toidentifier","requires-port","sse","agent-base","agent","@types/is-glob","mockttp","next.js","union","corser", +"secure-compare","eol","eslint-config-populist","https-server","@types/should","@types/eslint__js","status", +"@types/markdown-table","HttpStatus","httpclient","mediation","@types/async-retry","post","put","duplex", +"eslint-config-sanity","hyphenate","singular","plural","camelize","dasherize","demodulize","ordinalize","uncountable", +"singularize","titleize","tableize","classify","foreign_key","@messageformat/core","fast-printf","make-plural", +"math-interval-parser","l10n","@arktype/attest","gh-release","i18next-browser-languagedetector","i18next-fs-backend", +"i18next-http-backend","i18next-localstorage-cache","i18next-sprintf-postprocessor","internationalization","translation", +"localization","globalization","gettext","gridly","safer-buffer","errto","iconv","unorm","bench-node","charset", +"icu","harmony-reflect","proxies","identity","eslint-config-ostai","pre-suf","spawn-sync",".gitignore","manager", +"asterisks","regular-expression","dimensions","resolution","heif","tga","tiff","ow","p-pipe","image-dimensions","is-png", +"pngquant-bin","imageminplugin","pngquant","utf7","reader","cpx2","deep-freeze","import-size","seamless-immutable", +"type-plus","mutable","copy-on-write","@types/invariant","immutability","lazy","stateless","bypass","prefer","metacom", +"metaconfiguration","metalog","metaschema","metautil","metavm","metawatch","eslint-config-metarhia","isolation", +"enterprise","scalable","soa","stateful","routing","cluster","interactive","align","every","inferno-shared", +"inferno-utils","user interfaces","renderToString","inflections","inflection-js","humanize","capitalize", +"inheritance","klass","oop","object-oriented","@alcalzone/ansi-tokenize","auto-bind","patch-console","terminal-size", +"yoga-layout","@types/react-reconciler","@types/scheduler","@types/signal-exit","@vdemedes/prettier-config", +"eslint-config-xo-react","react-devtools-core","print","inline-style","inno","innosetup","run-async","fwk","instagram", +"ig","driver","reify","exports","packaging","remark-code-import","coffee.md","litcoffee","yml", +"babel-plugin-transform-es3-member-expression-literals","babel-plugin-transform-es3-property-literals", +"babel-preset-es2015-rollup","cldr-cal-buddhist-full","cldr-cal-chinese-full","cldr-cal-coptic-full", +"cldr-cal-dangi-full","cldr-cal-ethiopic-full","cldr-cal-hebrew-full","cldr-cal-indian-full","cldr-cal-islamic-full", +"cldr-cal-japanese-full","cldr-cal-persian-full","cldr-cal-roc-full","cldr-core","cldr-dates-full","cldr-numbers-full", +"estraverse-fb","grunt-curl","grunt-zip","rollup-plugin-memory","ecma402","@vue/tsconfig","flag-icons", +"google-closure-library","grunt-replace","prettier-eslint","international","country","dial code","telephone","phone", +"@inversifyjs/common", +"@inversifyjs/container","@inversifyjs/core","dependency inversion","inversion of control container","ioc","leek", +"ssh-config","elementtree","@ionic/discover","@ionic/utils-fs","superagent-proxy","@ionic/utils-array", +"@ionic/utils-stream","@ionic/cli-framework","@ionic/utils-network","@ionic/utils-process","@ionic/utils-terminal", +"@ionic/utils-subprocess","@ionic/cli-framework-prompts","@types/diff","@types/open","@types/split2","@types/os-name", +"@types/elementtree","ionic framework","ionicframework","hybrid","@types/svgo","jest-stencil-runner","icon pack", +"custom element","@ioredis/commands","cluster-key-slot","denque","lodash.isarguments","redis-errors","redis-parser", +"standard-as-callback","@ioredis/interface-generator","@types/lodash.defaults","@types/lodash.isarguments", +"@types/redis-errors","sentinel","pipelining","irc-colors","node-icu-charset-detector","ansi-color","is-extglob", +"braces","extglob","globstar","global-directory","globally","installed","locally","vanilla","pure","is-object","kind", +"custom element name","writable","is-inside-container","esmock","wsl", +"subsystem","kindof","lintspaces-cli","code coverage","JS code coverage","JS coverage","js-calendar","v-click-outside-x", +"autoprefixer-loader","babel-plugin-transform-es5-property-mutators","compression-webpack-plugin","vue-html-loader", +"character-parser","constantinople","jstransformer","transformers","with","browserify-middleware","code-mirror", +"github-basic","handle","highlight-codemirror","inconsolata","jade-code-mirror","jade-highlighter","jstransformer-cdata", +"jstransformer-coffee-script","jstransformer-less","jstransformer-marked","jstransformer-stylus", +"jstransformer-verbatim","less-file","lsr","pull-request","stop","filelist","rake","video-worker", +"babel-plugin-annotate-pure-calls","browserslist-config-nk","eslint-config-nk","json-file","prettier-config-nk", +"parallax","youtube","vimeo","@jasminejs/reporters","eslint-plugin-jasmine","css-url-embed","walkdir", +"jasmine-reporters","jasmine-growl-reporter","cssfontparser","moo-color","babel-plugin-version","@jest/diff-sequences", +"@jest/environment","@jest/environment-jsdom-abstract","@jest/fake-timers","jest-serializer-ansi-escapes","matchers", +"extended","@types/escape-html","@types/jump.js", +"@types/randomcolor","eslint-webpack-plugin","jump.js","randomcolor","web-vitals","libxmljs2","plugnplay","pnp", +"babel-plugin-add-import-extension","@types/merge-stream","jest-leak-detector","worker-farm","@jimp/core","@jimp/diff", +"@jimp/js-bmp","@jimp/js-gif","@jimp/js-jpeg","@jimp/js-png","@jimp/js-tiff","@jimp/plugin-blit","@jimp/plugin-blur", +"@jimp/plugin-circle","@jimp/plugin-color","@jimp/plugin-contain","@jimp/plugin-cover","@jimp/plugin-crop", +"@jimp/plugin-displace","@jimp/plugin-dither","@jimp/plugin-fisheye","@jimp/plugin-flip","@jimp/plugin-hash", +"@jimp/plugin-mask","@jimp/plugin-print","@jimp/plugin-quantize","@jimp/plugin-resize","@jimp/plugin-rotate", +"@jimp/plugin-threshold","@jimp/types","@jimp/utils","@jimp/config-eslint","@jimp/config-typescript", +"@jimp/config-vitest","@jimp/test-utils","node-self","vite-plugin-node-polyfills","image processing", +"image manipulation","resize","@babel/helper-simple-access","@rspack/cli","@rspack/core", +"@types/babel__helper-plugin-utils","@types/babel__template","@types/babel__traverse","babel-plugin-parameter-decorator", +"destr","nano-jsx","preact-render-to-string","solid-js","wysiwyg editor","wysiwyg html editor","rich editor", +"rich text editor","contenteditable", +"vanillajs","wysisyg","rte","firmata","temporal","nanotimer","browser-serialport","grunt-jsbeautifier","0A02","0A21", +"16x2 LCD","20x4 LCD","2D120X","2Y0A02","2Y0A21","74HC595","ADXL335","ADXL345","ALS-PT19","ALSPT19","ANALOG","arduino", +"Ardumoto","AT42QT1070","BLINKM","BMP180","Continuous Rotation","DEFAULT","Diffused LED","DS18B20", +"Edison Arduino Block","Edison GPIO Block","Edison I2C Block","Edison PWM Block","edison","ESPLORA","EV3","galileo-io", +"galileo","GP2D120XJ00F","GP2Y0A02YK0F","GP2Y0A21YK","GP2Y0A41SK0F","GY-521","GY521","HD44780","High Torque", +"Hitec HS-35HD","Hitec HS-422","Hitec HS-425BB","Hitec HS-625MG","Hitec HS-646WP","Hitec HS-755HB","Hitec HS-805BB", +"Hitec HS-85MG","HMC5883L","HMC6352","Hobby Motor","HRLV-MaxSonar-EZ0","HT16K33","HTU21D","i2c", +"Infrared Proximity Sensor","Infrared Sensor", +"intel edison","intel galileo","ISL29125","JHD1313M1","Joystick","LCD1602","LCD2004","LCM1602","LED","LIDAR-Lite v2", +"Ludus Protoshield Wireless","Ludus Protoshield","LV-MaxSonar-EZ0","LV-MaxSonar-EZ3","MCP23008","MCP23017","MCP9808", +"Metal Gear","MJKDZ","MMA7361","MMA7660","MMA8462Q","MPL115A2","MPL3115A2","MPR121","MPR121QR2","MPU-6050","MPU6050", +"MUXSHIELD2","NXT","OA41SK","PARALLEL","PCA9685","pcduino","PCF8574","PCF8574A","PCF8574AT","PCF8574T","PCF8575", +"PCF8591","photon","PIR Motion Sensor","QTOUCH","raspberry pi","raspberrypi","raspi-io","RedBoard","RGB LED","robot", +"robotics","rpi","serial","Servo","Shift Register 8-Bit SN74HC595","Shift Register","SI7020","spark core","spark-io", +"spark","SparkFun Essential Sensor Kit","SparkFun Sensor Kit","Speed controller","Temperature","tessel 2", +"Thumb Joystick","TINKERKIT","TMP36","TSL2561","Ultrasonic Range Finder","usb","VKEY","Weather Shield Arduino", +"Weather Shield Photon","@hapi/address","@hapi/formula","@hapi/pinpoint","@hapi/tlds","recoil","grunt-html", +"commitplease","grunt-bowercopy","grunt-git-authors","grunt-compare-size","jquery-test-runner","eslint-config-jquery", +"config-chain","beautifier","code-quality","grunt-exec","gzip-js","amd","rollup-plugin-node-polyfills","pyyaml", +"knifecycle","package-directory","yerror","architecture","gitignore-to-glob","@jscpd/badge-reporter","@jscpd/core", +"@jscpd/finder","@jscpd/tokenizer","@jscpd/html-reporter","jscpd-sarif-reporter","cst","jscs-jsdoc", +"jscs-preset-wikimedia","reserved-words","to-double-quotes","to-single-quotes","vow-fs","unicode-7.0.0","unit-coverage", +"@jsdoc/salty","catharsis","js2xmlparser","requizzle","current-module-paths","object-to-spawn-args","config-master", +"@acemir/cssom","@asamuzakjp/dom-selector","@bramus/specificity","data-urls","decimal.js","saxes","symbol-tree", +"w3c-xmlserializer", +"webidl-conversions","whatwg-url","mocha-sugar-free","webidl2","webidl2js","browser-request","cssom","nwmatcher", +"selenium-standalone","unicode-13.0.0","results-interpreter","unicode-5.2.0","unicode-11.0.0","stylish","deeks", +"doc-path","to","json2csv","csv2json","csv-2-json","milliparsec","sort-on","prototyping","dummy","@types/object-keys", +"deterministic","stable","circular","unicode-10.0.0","@stryker-mutator/mocha-runner","json-metaschema","jsonparse", +"trees","jws","lodash.once","lodash.includes","lodash.isnumber","lodash.isboolean","lodash.isinteger","@jspm/generator", +"@jspm/plugin-rollup","amaro","states","lie","jszip-utils","package-json-versionify","inflate","qjobs","dom-serialize", +"timer-shim","karma-junit-reporter","karma-script-launcher","spectacular","execution","hat","os-shim","karma-plugin", +"karma-preprocessor","browserify-tool","browserstack-local","karma-launcher","browser-stack","chrome","ibrik", +"karma-coffee-preprocessor","karma-requirejs","karma-reporter","Safari","Safari Tech Preview","SafariTechPreview","IE", +"Chrome","Chrome Canary","Chrome Headless","Chromium","Firefox","Opera","edge-launcher","chai-fs","os-homedir","firefox", +"karma-adapter","karma-rollup","safari","global-agent","@types/global-agent","sauce","labs","karma-brief-reporter", +"rollup-sourcemap-path-transform","keyboard","keyboardevent","keydown","keyup","metakey","keyname","@keyv/serialize", +"lru.min","timekeeper","@keyv/compress-gzip","@keyv/sqlite","@keyv/test-suite","@keyv/mongo","@keyv/compress-brotli", +"@keyv/compress-lz4","@keyv/memcache","key-value","adapter","memory","lru","tarn","escalade","pg-connection-string", +"tedious","oracledb","better-sqlite3","pg-query-stream","chai-subset-in-order","@tsconfig/recommended", +"toxiproxy-node-client","sql","postgres","cockroachdb","querybuilder","formatly","oxc-resolver","smol-toml", +"codeclimate-types", +"analysis","analyze","dead code","duplicate","entropy","maintenance","members","missing","monorepo","namespace", +"unreferenced","unresolved","workspace","lodash.sortby","explorer","opera","samsung-internet","uc-browser", +"stream-counter","delegates","http-assert","gen-esm-wrapper","@types/co-body","co-body","@koa/router", +"@types/koa__router","urlencoded","body","copy-to","bodyParser","compose","humanize-number","passthrough-counter", +"koa-compress","koa-route","mount","mounting","@ladjs/env","route","koa-send","sendfile","reds","node-redis-warlock", +"bossy","eslint-config-hapi","eslint-plugin-hapi","find-rc","will-call","cpr","lab-event-reporter","semver-regex", +"latest","package.json","current","autodoc","deft","jasmine-async","race.js","string-table","happen","leafdoc", +"bundlemon","git-rev-sync","karma-expect", +"prosthetic-hand","eslint-config-mourner","rollup-plugin-git-version","@mapbox/eslint-plugin-script-tags","gis","left", +"padding","repeat","numbers","aproba","cmd-shim","p-reduce","byte-size","write-pkg","wide-align","has-unicode", +"p-waterfall","libnpmaccess","p-map-series","set-blocking","@lerna/create","libnpmpublish","read-cmd-shim", +"load-json-file","init-package-json","make-fetch-happen","conventional-changelog-core","validate-npm-package-license", +"conventional-recommended-bump","conventional-changelog-angular","@octokit/plugin-enterprise-rest","multi-package", +"copy-anything","benny","bootstrap-less-port","html-template-tag","jit-grunt","less-plugin-autoprefix", +"mocha-teamcity-reporter","phin","read-glob","compile less","css nesting","css variable","gradients css", +"gradients css3","less compiler","less css","less mixins","less.js","lesscss","nested css","bootstrap css", +"bootstrap less","variables in css","css less","less-plugin-glob","browser-level","classic-level","abstract-level", +"airtap-playwright","@voxpelli/tsconfig","leveldb","napi-macros", +"abstract-leveldown","du","async-each","mkfiletree","readfiletree","prebuildify-ci","prebuildify-cross", +"level-concat-iterator","level-errors","level-supports","queue-microtask","deferred-leveldown","level-iterator-stream", +"memdown","trickle","airtap-sauce","run-parallel","encoding-down","simple-concat","fast-levenshtein","ld","levdist", +"levenshtein","levenshtein-component","levenshtein-edit-distance","talisman","distance","algorithm","comparison","edit", +"matching","binary-extensions","promise-retry","just-safe-set","fund","gitfund","crlf","gmail-send","jest-codemods", +"libphonenumber-metadata-generator","renamer","libphonenumber","fined","flagged-respawn","autolink","hashtag","link", +"mention","consolemock","staged","@samverschueren/stream-to-observable","is-observable","listr-silent-renderer", +"listr-update-renderer","listr-verbose-renderer","@lit-labs/ssr-dom-shim","@lit/reactive-element", +"@lit-internal/scripts","@lit-labs/testing","@webcomponents/template","connect-logger","http-auth","faye-websocket", +"livereload-js", +"resolve-pkg","matchdep","lws-basic-auth","lws-blacklist","lws-body-parser","lws-compress","lws-conditional-get", +"lws-cors","lws-json","lws-log","lws-mime","lws-range","lws-request-monitor","lws-rewrite","lws-spa","lws-static", +"full-stack","babel-preset-es2015-loose","browserify-derequire","grunt-es3-safe-recast","grunt-rollup","grunt-ts", +"rollupify","indexeddb","localstorage","websql","openurl","lockfile-lint-api","prettier-standard","lockfile check", +"lockfile lint","lock","stdlib","lodash-modularized","clonedeep","defaults","isempty","isequal","isfunction", +"isplainobject","isstring","omit","pick","uniq","uni-global","sprintf-kit","event-emitter","ncjsm","tape-index", +"terminal.js","update","refresh","overwrite","bar","date-format","streamroller","@log4js-node/sandboxed-module", +"grunt-contrib-jasmine","grunt-open","grunt-preprocess","math","int64","uid2","isemail", +"canonical-json","loopback-phase","strong-remoting","loopback-filters","strong-globalize","loopback-connector-remote", +"nodemailer-stub-transport","loopback-datasource-juggler","nodemailer-direct-transport","is-docker","loopback-boot", +"karma-es6-shim","loopback-context","strong-task-emitter","strong-error-handler","eslint-config-loopback","sqlserver", +"StrongLoop","mBaaS","steno","express-async-handler","@commitlint/prompt-cli","@typicode/eslint-config","embed", +"embedded","localStorage","sessionStorage","mru","@lucide/build-icons","@lucide/shared","@lucide/rollup-plugins", +"Lucide","HTML","Feather","Icons","Icon","SVG","Feather Icons","Fontawesome","Font Awesome","decree","manipulate","blur", +"sharpen","flip","mirror","hue","saturation","lightness","transparency","fade","opacity","contain","cover", +"@75lb/deep-merge","ansi-escape-sequences","create-mixin","load-module","sleep-anywhere","expand-home-dir", +"hast-util-to-mdast","mdast-util-to-markdown","short-unique-id","y18n", +"@types/columnify","@types/json-diff","@types/make-fetch-happen","@types/which","wizard","task graph", +"string manipulation","@favware/rollup-type-bundler","lavalink client","audio streaming","music bot","voice chat", +"discord integration","high performance","easy-to-use","feature-rich","seamless integration","community support", +"open-source","lavalink","path-type","intermediate","recursively","dingbat-to-unicode","lop", +"browserify-prepend-licenses","duck","hamjest","office","word","@nestjs/common","@nestjs/config","@nestjs/core", +"@nestjs/platform-express","@nestjs/swagger","@nestjs/throttler","@nestjs/typeorm","@yarnpkg/lockfile","uniqid", +"@codecov/bundle-analyzer","@nestjs/cli","@nestjs/testing","@testcontainers/mysql","@types/dasherize","crud", +"admin-panel","headless-cms","backend-framework","micro-backend","rapid-development","yaml-config","file-upload", +"api-generator","low-code","no-code","prototype","mvp","startup","baas","@next/eslint-plugin-next","@tabler/icons-react", +"eslint-config-next","postcss-preset-mantine","postcss-simple-vars", +"mantine","context","context-menu","context menu","react server components","user experience","usability","mapbox-gl", +"mapbox","legend","text processing","linkify-it","mdurl","punycode.js","uc.micro","markdown-it-for-inline", +"markdown-it-ins","markdown-it-mark","markdown-it-sub","ndoc","markdown-it-plugin","anchor","emoji","emojies","emoticon", +"emoticons","stream-from-to","pdf-text","rows","bunup","theredoc","markdown parser","solidjs","diacritics-map", +"lazy-cache","list-item","markdown-link","mixin-deep","repeat-string","document","glossary","heading","links", +"remarkableplugin","table of contents","table-of-contents","toc","micromark-core-commonmark", +"micromark-extension-directive","micromark-extension-gfm-autolink-literal","micromark-extension-gfm-footnote", +"micromark-extension-gfm-table","micromark-extension-math","micromark-util-types","gemoji", +"markdownlint-rule-extended-ascii","CommonMark","jsonpointer","run-con","@markedjs/eslint-config","@markedjs/testutils", +"esbuild-plugin-umd-wrapper","marked-highlight","marked-man", +"recheck","markup","v8-argv","inline-style-prefixer","react-event-listener","simple-assign","complex.js","escape-latex", +"javascript-natural-sort","typed-function","eigen","expr-eval","jsep","ndarray","ndarray-determinant","ndarray-gemm", +"ndarray-ops","ndarray-pack","numericjs","sylvester","zeros","mathematics","numeric","algebra","complex","fraction", +"charenc","md5sum","checksum","decode-named-character-reference","micromark-util-decode-numeric-character-reference", +"micromark-util-decode-string","micromark-util-normalize-identifier","micromark-util-symbol", +"unist-util-stringify-position","commonmark.json","micromark-build","mdast-util","mdast","tree", +"micromark-util-sanitize-uri","trim-lines","mdast-util-gfm","micromark-extension-gfm","mdn","mozilla","hashring", +"jackpot","InnoDB memcached API","failover","hashing","membase","memcache","nMemcached","@jsonjoy.com/fs-core", +"@jsonjoy.com/fs-fsa","@jsonjoy.com/fs-node","@jsonjoy.com/fs-node-builtins","@jsonjoy.com/fs-node-to-fsa", +"@jsonjoy.com/fs-node-utils","@jsonjoy.com/fs-print","@jsonjoy.com/fs-snapshot","@jsonjoy.com/json-pack", +"@jsonjoy.com/util", +"glob-to-regex.js","thingies","tree-dump","isomorphic-git","tslint-config-common","fs.js","in-memory","fsa", +"file system access","native file system","webfs","crudfs","opfs","casfs","content addressable storage", +"@types/lodash.isequal","fast-memoize","mem","nanocolors","memoization","gulp-exit","ram","errno","camelcase-keys", +"decamelize-keys","delete_comments","minimist-options","trim-newlines","cat","kitten","from2","lodash.clonedeepwith", +"stat-mode","ware","@metalsmith/drafts","assert-dir-equal","7zip-bin","node-7z","node-downloader-helper", +"@babel/plugin-syntax-import-meta","@surma/rollup-plugin-off-main-thread","asyncro", +"babel-plugin-transform-async-to-promises","babel-plugin-transform-replace-expressions","tiny-glob", +"@babel/plugin-proposal-throw-expressions","directory-tree","eslint-config-developit","npm-merge-driver-install", +"micro library","micromark-factory-space","micromark-util-chunked","micromark-util-combine-extensions", +"micromark-util-resolve-all","micromark-util-subtokenize","fill-range","bracket","character-class","expansion", +"extglobs","lookahead","lookaround","lookbehind","negate", +"negation","posix","star","@types/mime-db","mime-score","release-please","runmd","mime-db","mimetypes","Min Heap", +"min heap","maxheap","min-heap","heap","Binary Heap","binary-heap","heap data structure","min heap data structure", +"complete binary tree","heapify","heap sort","heapify up","heapify down","Priority Queue","priority queue", +"priorityqueue","priority-queue","priority q","priorityQ","efficient","priority","complete binary","extract min", +"min priority queue","efficient priority","ordering property","dynamic resizing","priority-based", +"priority-based processing","element priority","queue priority","sorted","decrease key","increase key","searching", +"@putout/minify","css-b64-images","html-minifier-next","montag","readjson","try-catch","try-to-catch","escover", +"eslint-plugin-putout","madrun","supertape","brace-expansion","signed","certificate","cert","@types/brace-expansion", +"make dir","dir","ufo", +"conditional-type-checks","mobservable","reactive","frp","functional-reactive-programming","state management", +"data flow","mobx-react-lite","expose-gc","browser-stdout","yargs-unparser","uslug","pidtree","rewiremock","unexpected", +"@mocha/docdash","jsdoc-ts-utils","unexpected-map","unexpected-set","unexpected-sinon","remark-inline-links", +"unexpected-eventemitter","fail-on-errors-webpack-plugin","@11ty/eleventy-plugin-inclusive-language","headless-chrome", +"chai-xml","test-console","xmllint","junit","lcov","define-data-property","gopd","has-property-descriptors", +"@types/es-value-fixtures","@types/for-each","@types/functions-have-names","@types/get-intrinsic","@types/gopd", +"@types/has-property-descriptors","@types/object-inspect","descriptor","define","swap","unix-dgram","unittest", +"gulp-coveralls","gulp-mocha-phantomjs","mockJSON","mockAjax","ipaddr.js","recursive-watch","fastest-validator","avsc", +"nats","etcd3","cbor-x","thrift","redlock","dd-trace","gc-stats","msgpack5","fakerator","kafka-node","v8-natives", +"@types/pino","notepack.io","benchmarkify","rhea-promise","@types/bunyan","jaeger-client","@types/ioredis", +"moleculer-repl","winston-context","event-loop-stats","node-nats-streaming","@icebob/node-memwatch","microservice", +"messagebus","services","micro","distributed","ender","timezone","olson","iana","zone","tz", +"monaco-languageserver-types","monaco-marker-data-provider","monaco-types","monaco-worker-manager", +"vscode-languageserver-textdocument","vscode-languageserver-types","vscode-uri","@remcohaszing/eslint", +"remark-preset-remcohaszing","yaml-language-server","monaco","monads","either","maybe","result", +"@codemirror/lang-javascript","@codemirror/theme-one-dark","@json2csv/plainjs","@lezer/highlight","basic-auth-connect", +"bootstrap-paginator-2","free-swig","gridfs-stream","mongodb-query-parser","renderjson-2","@cypress/code-coverage", +"assets-webpack-plugin","express-openid-connect","mongodb-memory-server","administration","GUI","manage","manage-mongo", +"phpmyadmin","UI","web-based","@mongodb-js/saslprep","mongodb-connection-string-url","aws4","socks","snappy", +"mocha-sinon","gcp-metadata","@types/kerberos","@types/saslprep","v8-heapsnapshot","@mongodb-js/zstd", +"@types/whatwg-url","@types/chai-subset","mongodb-client-encryption","@aws-sdk/credential-providers","kareem","mpath", +"mquery","sift","@ark/attest","@mongodb-js/mongodb-downloader","acquit","acquit-ignore","acquit-require", +"lodash.isequalwith","mongodb-runner","odm","datastore","backbone-callbacks","node-monitor","remote control","probe", +"JMX","core-monitor","dashboard","monitoring","control panel","@types/mongodb","monk-middleware-cast-ids", +"monk-middleware-fields","monk-middleware-handle-callback","monk-middleware-options","monk-middleware-query", +"monk-middleware-wait-for-connection","gitbook-cli","gitbook-plugin-anker-enable","gitbook-plugin-custom-favicon", +"gitbook-plugin-edit-link","gitbook-plugin-github","gitbook-plugin-prism","monk-middleware-debug","commist","help-me", +"mqtt-packet","worker-timers","number-allocator","aedes-cli","leaked-handles","mqtt-connection","@esm-bundle/chai", +"mqtt-level-store","esbuild-plugin-polyfill-node","publish/subscribe","@tediousjs/connection-string","msnodesql","tds", +"node-tds","node-sqlserver","msnodesqlv8", +"node-mssql","@types/statuses","headers-polyfill","rettime","until-async","@epic-web/test-server","@fastify/websocket", +"@types/json-bigint","@types/serviceworker","json-bigint","page-with","append-field","fs-temp","testdata-w3c-json-form", +"formdata","array-union","pend","release-it-pnpm","test report","html report","json to html","karma-story-reporter", +"mezr","web-animations-js","bin-packing","sqlstring","timezone-mock","urun","utest","sql-escaper","aws-ssl-profiles", +"generate-function","named-placeholders","poku","assert-diff","eslint-plugin-async-await","thenify","then","bats", +"switcher","couchdb","fastest-stable-stringify","rtl-css-js","iconista","libreact","pico","lite","in-js","styled", +"decorator","jsxstyle","rule","gitcloud","hasbin","page-icon","@types/hasbin","@types/page-icon","desktop","proxy-lib", +"font-finder","pbxproj-dom","@foxt/js-srp","simple-plist","ios-device-lib", +"email-validator","ios-sim-portable","plist-merge-patch","@nativescript/hook","@nativescript/doctor", +"nativescript-dev-xcode","ios-mobileprovision-finder","@nstudio/trapezedev-project","@rigor789/resolve-package-path", +"@types/plist","@types/retry","@types/byline","@types/pacote","@types/tabtab","@types/tunnel","@types/xml2js", +"@types/archiver","@types/qr-image","@types/marked-terminal","@types/proper-lockfile","@types/npmcli__arborist", +"@types/universal-analytics","afinn-165","afinn-165-financialmarketnews","apparatus","memjs","stopwords-iso", +"wordnet-db","browserfs","gulp-jasmine-browser","pegjs","uubench","natural language processing","artifical intelligence", +"Porter stemmer","Lancaster stemmer","bigram","trigram","quadgram","ngram","stemmer","bayes","classifier","phonetic", +"metaphone","inflector","Wordnet","tf-idf","logistic regression","doublemetaphone","double","jaro-winkler distance", +"levenshtein distance","string distance","part-of-speech tagger","Eric Brill","Brill tagger","sentiment analysis", +"maximum entropy modelling","secure-keys","nconf-yaml","key value store","plugabble","near social", +"bridge","near","binary-search-tree","exec-time","@fig/complete-commander","@golevelup/nestjs-discovery","nest", +"@postman/tough-cookie","chardet","liquid-json","postman-collection","postman-collection-transformer","postman-request", +"postman-runtime","serialised-error","@postman/shipit","dockerfile_lint","parse-gitignore","postman","rest-client", +"@apm-js-collab/tracing-hooks","@newrelic/security-agent","@tyriar/fibonacci-heap","import-in-the-middle", +"module-details-from-path","require-in-the-middle","@aws-sdk/s3-request-presigner","@matteo.collina/tspl", +"@newrelic/eslint-config","@newrelic/newrelic-oss-cli","@newrelic/test-utilities","@slack/bolt", +"@smithy/eventstream-codec","@smithy/util-utf8","git-raw-commits","self-cert","debugging","profiling","@panva/hkdf", +"openid-client","@edge-runtime/jest-environment","@types/nodemailer","@types/oauth","babel-plugin-jsx-pragmatic", +"babel-preset-preact","oauth2","nextauth","async handler","async functions","pipe","provider","TestBed","how-to", +"@ant-design/icons-angular","localhost","tunneling","webhook","deep-defaults","enqueue","function-source","minstache", +"sliced","mocha-generators","@nightwatch/chai", +"@nightwatch/html-reporter-template","@nightwatch/nightwatch-inspector","@types/selenium-webdriver","chai-nightwatch", +"devtools-protocol","didyoumean","nightwatch-axe-verbose","stacktrace-parser","mochawesome-merge", +"mochawesome-report-generator","nightwatchjs","selenium","webdriver","automated-testing","@sinonjs/text-encoding", +"@sinonjs/referee","jsdom-global","mochify","proxyquire-universal","proxyquireify","propagate","clang-format","n-api", +"napi","coffee-coverage","grunt-contrib-coffee","grunt-include-replace","internal","check-version-modules", +"used-deps-analyzer","container","skeleton","formate","dynamic-dedupe","filewatcher","tap-xunit","reload","subdir", +"char-regex","emojilib","skin-tone","sentences-per-line","emojis","smiley","smileys","smilies","ideogram","ideograms", +"fetch-blob","chai-iterator","stream-consumers","eslint-config-digitalbazaar","karma-tap-reporter","nodejs-websocket", +"worker-loader","aes","asn","asn.1","cbc","csr","des","gcm","hmac","pkcs", +"pki","prng","rc2","rsa","sha256","sha384","sha512","tls","x.509","x509","c2dm","fcm","messaging","geocoder","geocoding", +"geo","maps","mapquest","agol","arcgis","tomtom","exponential-backoff","require-inject","high5","html-parser", +"html5parser","htmljs-parser","htmlparser-benchmark","mocha-each","neutron-html5parser","biased-opener", +"strong-data-uri","v8-debug","v8-profiler","http mock","growly","shellwords","nexe","notification center", +"mac os x 10.8","terminal-notifier","windows 8 notification","toaster","ps-list","pty","pseudoterminal","forkpty", +"openpty","@node-red/editor-api","@node-red/runtime","@node-red/util","@node-red/nodes","node-red-admin","iot", +"sass-graph","async-foreach","stdout-stream","true-case-path","unique-temp-dir","long-timeout","sorted-array-functions", +"recurrent","rfc4122","fs.watch", +"watchfile","ngn","daemon","event logging","elevate","sudo","@mgcrea/eslint-config-node","@tsconfig/node-lts","excel", +"xls","jQuery","jQuery extend","inherit","combyne","clean-for-publish","libgit2","git2","@aws-sdk/client-sesv2", +"libbase64","libmime","libqp","nodemailer-ntlm-auth","proxy-test-server","Nodemailer","pstree.remy","undefsafe", +"autoload","multimeter","node-webkit","webkit","async-redis","express-ipfilter","express-ws","json-logic-js","json-sql", +"jsonpath-plus","line-reader","mocker-data-generator","node-ipc","promise-mysql","stjs","uuid-random","nolang", +"Programming","programming language","descriptive","5GL","json schema","Mehdi Salartayefeh","option parser","absolute", +"backslash","delimiter","file-path","forward","fp","slashes","trailing","unix","urix","normalization","normalisation", +"simplify","trim", +"canonical","mouse wheel","exit-hook","github-url-from-git","is-interactive","is-scoped","issue-regex","listr-input", +"new-github-release-url","npm-name","p-memoize","map-obj","write-package","archy","is-cidr","libnpmorg","libnpmpack", +"libnpmteam","fs-minipass","npm-profile","libnpmsearch","@sigstore/tuf","libnpmversion","@npmcli/config", +"npm-audit-report","minipass-pipeline","npm-user-validate","tiny-relative-date","fastest-levenshtein", +"json-parse-even-better-errors","@npmcli/git","@npmcli/docs","@tufjs/repo-mock","@npmcli/mock-globals", +"ajv-formats-draft2019","package manager","giturl","throat","semver-diff","preferred-pm","callsite-record", +"rc-config-loader","outdated","updates","updating","updater","@trivago/prettier-plugin-sort-imports", +"@types/chai-string","@types/cli-table","@types/ini","@types/jsonlines","@types/npm-registry-fetch", +"@types/parse-github-url","@types/semver-utils","@types/update-notifier","eslint-config-raine","fp-and-or","jsonlines", +"prompts-ncu","semver-utils","typescript-json-schema","verdaccio","vite-bundle-analyzer","vite-node", +"upgrade","versions","esbuild-node-externals","eslint-config-tc","eslint-config-typescript-tc", +"npm-package-json-lint-config-tc","auditor","mutate-fs","minipass-fetch","minizlib","registry","string.prototype.padend", +"eslint-config-mysticatea","commandline","npm-scripts","run","read-package-json-fast","script","string convert", +"yarn to npm","npm upgrade","babel-preset-latest","npm-cli","are-we-there-yet","mocha-jsdom","cvss", +"nodesecurity-npm-utils","gluegun","nuke","money","percentage","a-sync-waterfall","asap","mocha-phantomjs-core", +"mocha-phantomjs-istanbul","module-alias","node-libs-browser","css4","node-machine-id","resolve.exports", +"@yarnpkg/parsers","lines-and-columns","@napi-rs/wasm-runtime","Mobile","caching-transform","istanbul-lib-hook", +"istanbul-lib-processinfo","node-preload","process-on-spawn","spawn-wrap","any-path","@readme/openapi-parser", +"remove-undefined-objects","@readme/oas-examples","@types/json-schema-merge-allof","@types/memoizee","apis", +"openapi initiative","openapi specification","openapi spec","openapi document","oai","@readme/postman-to-openapi", +"@types/swagger2openapi", +"prollyfill","gulp-exec","@pkgjs/support","error-cause","globalthis","has-tostringtag","util.inspect","indexof", +"Object.keys","@mariocasciaro/benchpress","access","bean","notation","segment","es-object-atoms","Object.assign", +"$.extend","_.extend","Underscore","Object.entries","Object.values","entries","ES8","ee-first","wrappy", +"@blakeembrey/deque","@blakeembrey/template","epoll","@types/mock-require","gpio","interrupt","raspberry","raspi","pi", +"beaglebone","beaglebone-black","default-browser","define-lazy-prop","is-in-ssh","wsl-utils","opens","launch","start", +"xdg-open","xdg","default","urls","bath-es5","dereference-json-schema","axios-mock-adapter","json-schema-deref-sync", +"open api","computer","quadrocopter","countrynames","hashish","last-call-webpack-plugin","prelude-ls","deep-is","levn", +"livescript","option parsing","stdin-discarder","transform-tty", +"sequencify","stream-consume","sql-ddl-sync","sql-query","redshift","home","tmpdir","ps1","template string", +"template literal","styleable","scrollbar","scrollbars","scroll","@vscode/vsce","yauzl-promise","@types/is-ci", +"@types/yauzl-promise","limiter","vscode","addlistener","addeventlistener","waits","resolved","race","fulfilled", +"concurrency","ratelimit","fifo","invalidate","out","plunder","metadata","@pa11y/html_codesniffer","eslint-config-pa11y", +"proclaim","aria","compliance","headless","htmlcs","standards","WCAG","sigstore","npm-registry-mock","capture-website", +"filenamify-url","unused-filename","@types/png.js","png.js","page","screenshots","screengrab","striptags","para", +"server-side","idb-keyval","react-native-crypto-js","@saithodev/semantic-release-backmerge","@types/facebook-js-sdk", +"babel-plugin-transform-inline-environment-variables","jasmine-spec-reporter","jsdoc-babel","parse-server", +"vite-plugin-commonjs", +"WHATWG","html parser","html5 parser","html serializer","htmlserializer","fast-url-parser","pause", +"chai-connect-middleware","username","passport-oauth1","base64url","exist","isabsolute","is-absolute","zeptomatch", +"@rkusa/linebreak","opentype.js","jpeg-exif","linebreak","png-js","blob-stream","brace","pdfjs-dist","pdf writer", +"pdf generator","call-delayed","chai-increasing","pg-pool","pg-protocol","pg-types","pgpass","pg-cloudflare", +"@cloudflare/vitest-pool-workers","@cloudflare/workers-types","pg-copy-streams","libpq","postgre","rdbms", +"flow-copy-source","npm-watch","connect-phonegap","phonegap-build","phonegap build","phonegap/build","pinkie-promise", +"denodify","atomic-sleep","on-exit-leak-free","pino-abstract-transport","pino-std-serializers","quick-format-unescaped", +"real-require","@pinojs/redact","sonic-boom","thread-stream","@types/flush-write-stream","bole","fastbench", +"flush-write-stream","midnight-smoker","pino-pretty","steed","postinstall","lifecycle", +"devpostinstall","entry","irregular-plurals","plurals","count","irregular","noun","nouns","@pm2/agent","@pm2/js-api", +"@pm2/io","@pm2/pm2-version-check","@pm2/blessed","cli-tableau","fclone","pidusage","pm2-axon","pm2-axon-rpc", +"pm2-deploy","pm2-multimeter","vizion","logs","kraken","load balancer","lb","load-balancer","kubernetes","k8s", +"pm2-docker","runtime","graceful","node-pm2","production","keymetrics","node.js monitoring","strong-pm","supervisord", +"pm2.io","ghost production","process manager","probes","keep process alive","process configuration","clustering", +"cluster cli","dev ops","tap-dot","PNG","js-png","node-png","png-parse","pnpm10","dependency manager","hardlinks", +"prune","rapid","symlinks","uninstall","poe","economy","ninja","poe.ninja","poe economy","path of exile", +"path of exile economy","path of exile ninja","poe economy api","path of exile api","poe.watch api","poe.ninja api", +"babel-plugin-preval","pushstate-server","tsgen","glamor","inline-styles","color manipulate","color manipulation", +"curried color manipulation","@popperjs/bundle","@popperjs/eslint-config-popper","@popperjs/test","@popperjs/test-utils", +"nuget-publish","popperjs","position","attached","ports","source map","manipulation","jison-gho","calculation","calc", +"postcss-reporter","read-cache","eslint-config-problems","@csstools/utilities","comma","hsl","hsla","hwb","rgba", +"caniuse-api","@types/caniuse-api","pixrem","pleeease-filters","postcss-apply","postcss-attribute-case-insensitive", +"postcss-color-function","postcss-color-gray","postcss-color-hex-alpha","postcss-color-hsl","postcss-color-hwb", +"postcss-color-rebeccapurple","postcss-color-rgb","postcss-color-rgba-fallback","postcss-font-family-system-ui", +"postcss-font-variant","postcss-image-set-polyfill","postcss-initial","postcss-media-minmax", +"postcss-pseudo-class-any-link","postcss-pseudoelements","postcss-replace-overflow-wrap","postcss-selector-matches", +"postcss-selector-not","cssrecipes-custom-media-queries","cssrecipes-defaults","cssrecipes-grid", +"cssrecipes-utils","cssrecipes-vertical-rhythm","eslint-config-i-am-meticulous","isogram","markdown-it-toc-and-anchor", +"metalsmith-collections","metalsmith-filenames","metalsmith-md","metalsmith-react","metalsmith-rename","metalsmith-rss", +"metalsmith-url","metalsmith-watch","nano-logger","npmpub","postcss-browser-reporter","react-svg-inline","to-slug-case", +"webpack-nano-logs","cssnext","@csstools/cascade-layer-name-parser","at-rule","atrule","csswg","media","queries", +"declarative","selectors","empty","at-rules","@keyframes","@counter-style","flexbugs","flex","postcss-less", +"postcss-styl","quickapp","PHP","sss","image-set","node modules","postcssrc","postcss.config.js","midas","postcss-short", +"postcss-dark-theme-class","cssnano-utils","font-family","font-weight","@types/cssesc","css-modules", +"@csstools/selector-resolve-nested","atrules","children","nestings","@csstools/normalize.css","postcss-browser-comments", +"sanitize.css","@csstools/postcss-tape","normalizes","fixes","@csstools/postcss-alpha-function", +"@csstools/postcss-color-function","@csstools/postcss-color-function-display-p3-linear", +"@csstools/postcss-color-mix-function","@csstools/postcss-color-mix-variadic-function-arguments", +"@csstools/postcss-content-alt-text","@csstools/postcss-contrast-color-function", +"@csstools/postcss-exponential-functions","@csstools/postcss-font-format-keywords","@csstools/postcss-gamut-mapping", +"@csstools/postcss-gradients-interpolation-method","@csstools/postcss-hwb-function","@csstools/postcss-ic-unit", +"@csstools/postcss-initial","@csstools/postcss-light-dark-function","@csstools/postcss-logical-float-and-clear", +"@csstools/postcss-logical-overflow","@csstools/postcss-logical-overscroll-behavior","@csstools/postcss-logical-resize", +"@csstools/postcss-logical-viewport-units","@csstools/postcss-media-minmax", +"@csstools/postcss-media-queries-aspect-ratio-number-values","@csstools/postcss-mixins","@csstools/postcss-nested-calc", +"@csstools/postcss-normalize-display-values","@csstools/postcss-oklab-function", +"@csstools/postcss-position-area-property","@csstools/postcss-property-rule-prelude-list", +"@csstools/postcss-random-function","@csstools/postcss-relative-color-syntax","@csstools/postcss-scope-pseudo-class", +"@csstools/postcss-sign-functions","@csstools/postcss-stepped-value-functions", +"@csstools/postcss-syntax-descriptor-syntax-production","@csstools/postcss-system-ui-font-family", +"@csstools/postcss-text-decoration-shorthand","@csstools/postcss-trigonometric-functions", +"@csstools/postcss-unset-value","css-blank-pseudo","css-has-pseudo","css-prefers-color-scheme","postcss-clamp", +"postcss-dir-pseudo-class","postcss-double-position-gradients","postcss-focus-within","postcss-gap-properties", +"postcss-lab-function","postcss-logical","postcss-overflow-shorthand","postcss-page-break","postcss-place","lists", +"postcss-syntax","@jsopen/objects","doublylinked","lightning-pool","postgres-bytea","power-tasks","putil-promisify", +"putil-varhelpers","transformations","processor","ltgt","vuvuzela","spark-md5","level-codec","fetch-cookie", +"double-ended-queue","level-write-stream","empower","power-assert-formatter","universal-deep-strict-equal","dereserve", +"licensify","package-json-filterify","precommit","@actions/github","@actions/glob", +"babel-plugin-transform-rename-properties","errorstacks","kolorist","virtual dom","dom diff","binary-searching", +"jest-light-runner","jest-specific-snapshot","@vue/language-plugin-pug","prettier-plugin","imports","organize-imports", +"glob-fs","humanized","si","locale","localized","renderkid","jitter","exception","error-handling","parse-ms", +"milliseconds","period","hrtime","@pkgr/core","mercurial","hg","vcs","@prisma/config","@prisma/engines", +"@prisma/studio-core","ohash","package-up","ts-pattern","@prisma/dmmf","line-replace","@prisma/debug","openapi-fetch", +"xdg-app-paths","@libsql/client","@prisma/client","@prisma/migrate","get-port-please","@prisma/generator", +"@prisma/internals","checkpoint-client","openapi-typescript","@prisma/fetch-engine","@prisma/get-platform", +"@types/better-sqlite3","@prisma/adapter-libsql","@prisma/credentials-store", +"@prisma/management-api-sdk","@prisma/driver-adapter-utils","@prisma/client-generator-registry", +"@opentelemetry/context-async-hooks","ORM","Prisma","Prisma CLI","prisma2","JS","TS","SQL","SQLite","Postgres", +"PostgreSQL","CockroachDB","MySQL","MariaDB","MSSQL","SQL Server","SQLServer","MongoDB","MCP","danger","docdash", +"gulp-terser","regexpp","webfont","prism","node-rest-client","URIjs","svn","customize","sisteransi","interact", +"uglifyify","uglifyjs","alpha-sort","html-event-attributes","mdast-zone","svg-element-attributes","svg-event-attributes", +"@protobufjs/aspromise","@protobufjs/base64","@protobufjs/codegen","@protobufjs/eventemitter","@protobufjs/fetch", +"@protobufjs/float","@protobufjs/inquire","@protobufjs/path","@protobufjs/pool","@protobufjs/utf8","browserify-wrap", +"git-semver-tags","protobuf","protocol-buffers","serialization","@types/q","@types/jasminewd2","gulp-clang-format", +"natives","tslint-eslint-rules","vrsource-tslint-rules","webdriverjs","basic-auth-parser", +"@types/args","squid","privoxy","mod_proxy","via","x-forwarded-for","fill-keys","module-not-found-error", +"native-hello-world","cp-sugar","elegant-status","pug-load","pug-lexer","pug-linker","pug-parser","pug-filters", +"pug-runtime","pug-code-gen","pug-strip-comments","jstransformer-uglify-js","jstransformer-markdown-it","tap-bail","idn", +"idna","dns","domain","chromium-bidi","puppeteer-core","typed-query-selector","purge","fluent","qr code", +"@browserify/envify","@browserify/uglifyify","common-shakeify","has-override-mistake","unassertify", +"decode-uri-component","filter-obj","split-on-first","param","parameter","searchparams","retape","tap-esm","synchronous", +"FIFO","lifo","LIFO","work","queue js","job queue","job scheduling","task queue","ordered","iterate","linked list", +"dequeue","shift","item","parchment","quill-delta","@types/highlight.js","transpile-webpack-plugin", +"eslint-import-resolver-webpack","fuzzysort","grunt-search","eslint-plugin-json-es","@qunitjs/browserstack-runner", +"dom-element-descriptors","@types/qunit","@release-it-plugins/lerna-changelog","qunit-plugin","exists-stat", +"js-reporters","browserstack-runner","testling","requestAnimationFrame","babel-plugin-import-export-rename","envvar", +"sanctuary","sanctuary-identity","xyz","tacit","point-free","curried","fantasy-land","words","sample","timed-out", +"exceptions","sentry","unpipe","@rc-component/father-plugin","father-build","rc-test","react-slider","slider", +"react-tooltip","@types/responselike","react-addon","@apollo/react-common","@apollo/react-components", +"@apollo/react-hoc","@apollo/react-hooks","@apollo/react-ssr","@restart/ui","@restart/hooks","uncontrollable", +"prop-types-extra","ecosystem-react","@icons/material","material-colors","reactcss","@case/eslint-config", +"@storybook/addon-centered","babel-plugin-transform-rename-import","chai-spies","jsx-loader","react-context", +"react-mark","testdom","color picker","sketch","photoshop","html-webpack-tags-plugin","copy to clipboard", +"@react-docgen/cli", +"date-fns-tz","is-root","detect-port-alt","@react-dnd/invariant","@react-dnd/shallowequal","dnd-core","@types/doctrine", +"documentation-generation","attr-accept","file-selector","@babel/plugin-proposal-do-expressions", +"@babel/plugin-proposal-logical-assignment-operators","@babel/plugin-proposal-pipeline-operator","@commitlint/prompt", +"@size-limit/webpack-why","imagemin-cli","webpack-blocks","jest-fetch-mock","settle-promise","overlay","redbox","crash", +"react-side-effect","eslint-config-nfl","karma-chai-sinon","karma-html-reporter","nfl","head","title","meta","noscript", +"jest-fixed-jsdom","form-validation","enzyme-adapter-react-15","react-mount","yarn-deduplicate","live","hot", +"use-sync-external-store","@babel/plugin-proposal-async-generator-functions","eslint-plugin-jest-dom","viewport", +"intersection","observer","lazy load","inview","useInView","useIntersectionObserver","@formatjs/ecma402-abstract", +"@formatjs/icu-messageformat-parser","@formatjs/intl","intl-messageformat","eslint-config-es5","rehype-starry-night", +"exenv","@webcomponents/custom-elements","dialog","babel-browser-transform","inject-loader","isparta-loader", +"karma-jasmine-diff-reporter","lodash.range","transitiongroup","spring", +"tween","motion","transition","nullthrows","metro-runtime","hermes-compiler","metro-source-map","flow-enums-runtime", +"@react-native/codegen","@react-native/js-polyfills","@react-native/gradle-plugin","@react-native/assets-registry", +"@react-native/normalize-colors","@jest/create-cache-key-function","@react-native/virtualized-lists", +"babel-plugin-syntax-hermes-parser","@react-native/community-cli-plugin","app-framework","mobile-development", +"@react-native-community/cli","@react-native/eslint-config","@react-native/typescript-config","react-native-builder-bob", +"react-native-component","keychain","svg2ttf","fontisto","evil-icons","feather-icons","oslllo-svg-fixer", +"svgicons2svgfont","simple-line-icons","@entypo-icons/core","css-social-buttons","osx","macos", +"@cmfcmf/docusaurus-search-local","react-transform-hmr","currency","number-format","require-hijack","onclick","outside", +"onclickoutside","@rollup/plugin-sucrase","eslint-plugin-ft-flow","hermes-eslint","@types/use-sync-external-store", +"matchmediaquery","@types/hyphenate-style-name","@types/match-media-mock","@types/matchmediaquery","match-media-mock", +"media queries","respond","matchMedia","wireit","premove","redux-devtools","redux-devtools-dock-monitor", +"redux-devtools-log-monitor","combobox","multiselect","json2mq", +"@playwright/experimental-ct-react","foundation-apps","slick-carousel","why-did-you-update","slick","carousel", +"Image slider","orbit","@tippyjs/react","@vxna/mini-html-webpack-template","clipboard-copy","common-dir", +"es6-object-assign","function.name-polyfill","glogg","javascript-stringify","jss","jss-plugin-camel-case", +"jss-plugin-compose","jss-plugin-default-unit","jss-plugin-global","jss-plugin-isolate","jss-plugin-nested","listify", +"mini-html-webpack-plugin","q-i","qss","react-docgen-annotation-resolver","react-docgen-displayname-handler", +"react-group","strip-html-comments","type-detect","@types/buble","@types/copy-webpack-plugin","@types/escodegen", +"@types/hash-sum","@types/keymirror","@types/markdown-to-jsx","@types/terser-webpack-plugin","@types/type-detect", +"@types/webpack-dev-server","deabsdeep","deepfreeze","dog-names","eslint-config-tamia","keymirror","strip-shebang", +"scalable vector graphics","svginjector","TapEventPlugin","300ms","react-testing","@4tw/cypress-drag-drop", +"vite-plugin-istanbul","toast","alert","snackbar","message","commoner","jstransform","coverify","es3ify","esprima-fb", +"grunt-jest", +"jasmine-tapreporter","populist","transition-group","transitions","react-codemirror","eslint-config-react", +"eslint-plugin-relay","@babel/preset-stage-2","jest-environment-puppeteer","@babel/plugin-transform-flow-comments", +"scrolling","infinite","virtualized","fixed","es6-module-jstransform","@storybook/addon-storysource","customize-cra", +"holderjs","react-prism","esbuild-plugin-alias","tap-mocha-reporter","line by line","repl","tiny-invariant", +"@types/esprima","flow-parser","refactoring","pretty-printing","prepare","change-emitter","higher-order", +"microcomponentization","composition","lister","@redis/bloom","@redis/client","@redis/json","@redis/search", +"@redis/time-series","@redocly/openapi-core","@cfaester/enzyme-adapter-react-18","docusaurus-theme-redoc", +"docusaurus-plugin-redoc","@docusaurus/theme-common","api-doc","docusaurus-preset","netlify-plugin-cache","predictable", +"replay","elm","just-curry-it","reduce-reducers","@vitest/coverage-c8","eslint-config-unicorn-camelcase", +"flux-standard-action","actions","insert-line","redux-immutable","lodash-webpack-plugin","@redux-saga/core","saga", +"effects","side effects","thunk", +"redux-middleware","ecmarkup","gulp-emu","gulp-live-server","gulp-sequence","reflect","regenerator","abstract", +"is-hidden","rehype-plugin","is-absolute-url","external","hast-util-properties-to-mdx-jsx-attributes", +"eslint-config-remcohaszing","snapshot-fixtures","@nodeutils/defaults-deep","@phun-ky/typeof","issue-parser", +"wildcard-match","@octokit/request-error","mentoss","mock-stdio","remark-preset-webpro","distribution","intern", +"markdown-extensions","unified-args","footnote","remark-plugin","remark-slug","mermaid-isomorphic", +"hast-util-from-html-isomorphic","mermaidjs","remark-comment-config","remark-contributors","remark-heading-gap", +"remark-license","remark-lint-definition-spacing","remark-lint-fenced-code-flag","remark-lint-file-extension", +"remark-lint-final-definition","remark-lint-first-heading-level","remark-lint-heading-style", +"remark-lint-no-consecutive-blank-lines","remark-lint-no-emphasis-as-heading","remark-lint-no-file-name-articles", +"remark-lint-no-file-name-consecutive-dashes","remark-lint-no-file-name-irregular-characters", +"remark-lint-no-file-name-mixed-case","remark-lint-no-file-name-outer-dashes","remark-lint-no-heading-indent", +"remark-lint-no-heading-punctuation","remark-lint-no-missing-blank-lines","remark-lint-no-multiple-toplevel-headings", +"remark-lint-no-shell-dollars","remark-lint-no-table-indentation","remark-lint-no-tabs", +"remark-lint-ordered-list-marker-value","remark-lint-table-pipe-alignment","remark-retext","retext-english", +"retext-preset-github","remark-lint-correct-media-syntax","remark-lint-definition-sort", +"remark-lint-link-title-style","remark-lint-maximum-heading-length","remark-lint-maximum-line-length", +"remark-lint-mdx-jsx-attribute-sort","remark-lint-mdx-jsx-no-void-children","remark-lint-mdx-jsx-quote-style", +"remark-lint-mdx-jsx-self-close","remark-lint-mdx-jsx-shorthand-attribute","remark-lint-mdx-jsx-unique-attribute-name", +"remark-lint-media-style","remark-lint-no-duplicate-defined-urls","remark-lint-no-duplicate-headings-in-section", +"remark-lint-no-empty-url","remark-lint-no-heading-like-paragraph","remark-lint-no-hidden-table-cell", +"remark-lint-no-html","remark-lint-no-paragraph-content-indent","remark-lint-no-reference-like-url", +"remark-lint-no-unneeded-full-reference-image","remark-lint-no-unneeded-full-reference-link","retext-preset-wooorm", +"wooorm","autolinker","caseless","aws-sign2","oauth-sign","tunnel-agent","forever-agent","har-validator","is-typedarray", +"http-signature","taper","karma-cli","stealthy-require","request-promise-core","thenable","index.js", +"@typescript-eslint/eslint-plugin-tslint","@typescript/analyze-trace","eslint-plugin-typescript","micro-memoize", +"ResizeObserver","path-parse","supports-preserve-symlinks-flag","copy-dir","adjust-sourcemap-loader","cls-hooked", +"myrmidon","conventional-changelog-eslint","eslint-config-incredible","eslint-plugin-censor","eslint-plugin-no-secrets", +"eslint-plugin-scanjs-rules","fatum","node-package-tester","semantic-release-telegram","vesta","documentate", +"autodocumentate","ewma","spdy","restify-errors","escape-regexp-component","watershed", +"restify-clients","autocannon-compare","DTrace","quit","shutdown","sigterm","sigint","terminate","kill","NoSQL","reql", +"query language","leak","deep-copy","fast-copy","fastest-json-copy","nano-copy","plain-object-clone","deep-clone", +"deepclone","deepcopy","performant","fastclone","fastcopy","fast-clone","fast-deep-clone","fast-deep-copy", +"package-json-from-dist","rm -rf","rm -fr","prebuild","run-script-os","targetpractice","Automation","mouse","pixel", +"recognition","autohotkey","machine","learning","@mermaid-js/mermaid-cli","@shikijs/vitepress-twoslash", +"@vue/language-server","acorn-import-assertions","date-time","flru","npm-audit-resolver","wasm-pack","bundling", +"rollup-plugin","js-cleanup","rollup-plugin-jsx","sourcemap-validator","removal","@types/d3-drag","@types","commenting", +"package-name-regex","spdx-expression-validate","spdx-satisfies","gulp-conventional-changelog","rollup-plugin-prettier", +"rollup-plugin-strip-banner","browserify-fs", +"buffer-es6","process-es6","sourceMappingURL","@types/find-cache-dir","@types/graphlib","graphlib","rollup-plugin-re", +"@types/d3-array","@types/d3-color","@types/d3-force","@types/d3-hierarchy","@types/d3-scale","@types/d3-shape", +"visualizer","treemap","sunburst","diagram","@ampproject/toolbox-optimizer","@babel/plugin-syntax-bigint", +"@capsizecss/metrics","@edge-runtime/cookies","@edge-runtime/ponyfill","@edge-runtime/primitives","@napi-rs/triples", +"@next/polyfill-module","@next/polyfill-nomodule","@next/react-refresh-utils","@next/swc","@taskr/clear","@taskr/esnext", +"@types/amphtml-validator","@types/babel__generator","@types/ci-info","@types/content-disposition", +"@types/express-serve-static-core","@types/fresh","@types/lodash.curry","@types/path-to-regexp","@types/platform", +"@types/send","@types/text-table","@types/ua-parser-js","amphtml-validator","async-sema","cli-select","comment-json", +"edge-runtime","ignore-loader","lodash.curry","native-url","server-only","string-hash","taskr","unistore","watchpack", +"ember-cli-progress","rtl","ltr","run series","LINQ","FRP","Reactive","Rx","RxJS", +"@angular-devkit/build-optimizer","@types/source-map","check-side-effects","rollup-plugin-alias","rollup-plugin-inject", +"tslint-etc","tslint-no-toplevel-property-access","tslint-no-unused-expression-chai","web-streams-polyfill","ReactiveX", +"ReactiveExtensions","Streams","Observables","Stream","buffer allocate","node security","uninitialized","mock-env", +"dist-tag","prepublish","@sailshq/lodash","@sailshq/router","captains-log","common-js-file-extensions","@sailshq/csurf", +"flaverr","i18n-2","include-all","machine-as-action","machinepack-process","machinepack-redis","merge-defaults", +"merge-dictionaries","parley","rttc","sails-generate","sails-stringfile","skipper","sort-route-addresses","whelk", +"machinepack-fs","@sailshq/request","root-require","sails-hook-orm","sails-hook-sockets","sails.io.js", +"session-file-store","mvc","web-framework","sailsjs","sails.js","truncate-utf8-bytes","mktemp","filename","parse-srcset", +"eslint-config-apostrophe","material-components-web","node-sass-glob-importer","markdown-model","bare-script", +"element-model","food","drink","helpful", +"opensourcesoftware","teaching","experimentation","applications","ec","ecdh","ecdsa","seed","@bazel/runfiles", +"@semantic-release/error","aggregate-error","env-ci","find-versions","git-log-parser","import-from-esm","p-each-series", +"file-url","mockserver-client","p-retry","stream-buffers","author","@fluentui/react-component-event-listener", +"@fluentui/react-component-ref","@semantic-ui-react/event-stack","keyboard-key","@artsy/fresnel","@babel/standalone", +"@percy/cli","@percy/cypress","anchor-js","babel-plugin-filter-imports","babel-plugin-transform-react-handled-props", +"babel-plugin-universal-import","chai-enzyme","react-ace","react-codesandboxer","react-source-render","react-static", +"react-static-routes","react-universal-component","satisfied","semantic-ui-css","ta-scripts", +"terser-webpack-plugin-legacy","eslint-config-standard-jsx","standard-engine","bikeshed","semicolon","@hapi/joi","eraro", +"fast-safe-stringify","gate-executor","gubu","jsonic","lodash.defaultsdeep","optioner","ordu","patrun","rolling-stats", +"seneca-transport","use-plugin","@seneca/test-plugin","bench","gex", +"lab-transform-typescript","seneca-entity","seneca-error-test","seneca-joi","seneca-promisify","summary","micro-service", +"micro-services","micro service","minimum","viable","product","Sentimental","nlp","wkx","dottie","sequelize-pool", +"toposort-class","retry-as-promised","ibm_db","mariadb","p-props","p-settle","node-hook","pg-hstore","chai-datetime", +"snowflake-sdk","@octokit/types","js-combinatorics","esdoc-standard-plugin","esdoc-inject-style-plugin", +"esdoc-ecmascript-proposal-plugin","semantic-release-fail-on-major-bump","db2","snowflake","object relational mapper", +"@serialport/stream","@serialport/binding-mock","@serialport/bindings-cpp","@serialport/parser-ready", +"@serialport/parser-regex","@serialport/parser-cctalk","@serialport/parser-readline","@serialport/parser-delimiter", +"@serialport/parser-byte-length","@serialport/parser-spacepacket","@serialport/parser-slip-encoder", +"@serialport/parser-packet-length","@serialport/parser-inter-byte-timeout","ccTalk","com port","COM","data logging", +"hardware","modem","nodebots","RFID","sensor","serial port","sms gateway","sms","UART","update-check","@zeit/schemas", +"is-port-reachable","@vercel/style-guide","@types/serve-handler","temp-path","favicon","@serverless/utils", +"@commitlint/cz-commitlint","@serverless/test","serverless","serverless plugins","aws lambda","amazon web services", +"serverless.com","@aws-cdk/aws-lambda-python-alpha","@aws-sdk/client-dynamodb","@aws-sdk/client-eventbridge", +"@aws-sdk/client-lambda","@aws-sdk/client-sns","@aws-sdk/client-sqs","@aws-sdk/client-sts","@aws-sdk/lib-dynamodb", +"@aws-sdk/util-dynamodb","aws-cdk-lib","aws-iot-device-sdk","caporal","json-format-highlight", +"@types/aws-iot-device-sdk","@types/aws4","esbuild-runner","jsii","jsii-diff","jsii-docgen","jsii-pacmak","eventbridge", +"flow-remove-types","isequalwith","@img/colour","emnapi","exif-reader","@cpplint/cli","@emnapi/runtime", +"@img/sharp-libvips-dev","@img/sharp-libvips-win32-x64","@img/sharp-libvips-dev-wasm32","@img/sharp-libvips-win32-ia32", +"@img/sharp-libvips-win32-arm64","dzi","thumbnail","libvips","vips","quote","shelljs-changelog","shelljs-release", +"travis-check-changes","makefile","clean-publish","short","tiny","bitly","shorten","tinyid","should-equal", +"should-format","should-type", +"should-type-adaptors","should-util","eslint-config-shouldjs","grunt-endline","quiet-grunt","semver-sort", +"shelljs-plugin-open","transforms","@kwsites/file-exists","@kwsites/promise-deferred","@kwsites/promise-result", +"@simple-git/babel-config","source control","custom-event","js-correct-lockfile","rollup-plugin-analyzer", +"eslint-config-important-stuff","@sinonjs/samsam","@sinonjs/eslint-plugin-no-prototype-methods","@studio/changes", +"esbuild-plugin-istanbul","clock","vendor","mocks-and-spies","crypt3","fs-ext","express-json5","render-readme", +"sinopia-htpasswd","browserify-handlebars","@polka/url","totalist","bytes-iec","nanospinner","budget", +"performance budget","file size","directory size","get size","qpass","amazon-cognito-identity-js","basic-node-server", +"skapi","seperator","is-fullwidth-code-point","random-item","get-folder-size","js-extend","math-sum","prettier-bytes", +"tablify","slow","github-changes","urlify","standard-json","pretty output","snazzy standard","standard pretty", +"stylish for standard","stylish formatter","stylish reporter","stylish standard","axios-ntlm","xml-crypto", +"@types/sax","base64id","socket.io-adapter","io","@socket.io/component-emitter","eventsource","sockjs","separated", +"@anvilco/apollo-server-plugin-introspection-metadata","@graphql-tools/load-files","@graphql-tools/merge", +"@graphql-tools/utils","graphql-scalars","json-stringify-pretty-compact","microfiber","bdd-lazy-var","introspection", +"introspection-query","string-to-stream","binary-split","callback-stream","gulp-benchmark","imageinfo","prettydiff", +"sprity-css","sprity-lwip","object-stream","through2-spy","sprites","coordinates","css-sprite","asn1","bcrypt-pbkdf", +"integrity","subresource integrity","sri","sri hash","sri string","sri generator","encrypt","st","firestore", +"shuruhatik","long-stack-traces","version-guard","run-parallel-limit","conventional-changelog-config-spec", +"dotgitignore","stringify-package","std-mocks","recommended","check-more-types","lazy-ass","ban-sensitive-files", +"deps-ok","dont-crack","git-issues","pre-git","simple-commit-message","winser","modern-syslog","etsy","metric", +"aggregation", +"@vitest/expect","@storybook/global","store2","exsolve","empathic","picoquery","modern-tar","fetch-retry", +"@types/npmlog","@vitest/utils","launch-editor","unique-string","@vitest/mocker","bundle-require","flush-promises", +"@yarnpkg/libzip","browser-dtector","react-inspector","@react-aria/tabs","deep-object-diff","@react-aria/utils", +"@polka/compression","@types/detect-port","@ngard/tiny-isequal","@react-aria/toolbar","@react-stately/tabs", +"@react-types/shared","@storybook/docs-mdx","get-npm-tarball-url","use-resize-observer","@radix-ui/react-slot", +"@react-aria/landmark","@react-aria/overlays","@types/pretty-hrtime","@discoveryjs/json-ext","lazy-universal-dotenv", +"react-transition-state","@react-stately/overlays","@react-aria/interactions","react-syntax-highlighter", +"@radix-ui/react-scroll-area","@devtools-ds/object-inspector","@types/react-syntax-highlighter", +"@aw-web-design/x-default-browser","@fal-works/esbuild-plugin-global-externals","design-systems","component-testing", +"@glen/jest-raw-loader","@storybook/addon-onboarding","@storybook/addon-storyshots", +"@storybook/addon-storyshots-puppeteer","@storybook/blocks","@storybook/test","eslint-config-torchbox","storybookjs", +"patternlab","django","django-pattern-library","django-templates","jinja2","findit2","inside","funsert","into-stream", +"Assert","music-metadata","livestream","livestreaming","gulp-rimraf","string.js","stringjs","S","s","codsen-utils", +"ranges-apply","ranges-push","string-left-right","ast-monkey-traverse","ranges-invert","jsp","mixed","stri","xhtml", +"get-east-asian-width","visual","columns","fullwidth","full-width","wcswidth","full","cjk","chinese","japanese","korean", +"fixed-width","east-asian-width","undici-types","payment processing","credit cards","generator-loopback", +"loopback-sdk-angular-cli","nodefly-register","strong-agent","strong-arc","strong-build","strong-deploy", +"strong-mesh-models","strong-registry","strong-start","strong-supervisor","core-util-is","strong-debugger", +"strong-swagger-ui","swagger-ui","utf-8-validate","LoopBack","Platform","alerts","event loop","heroku","master", +"metrics","nodeops","npmrc","openshift","ops","pm","response", +"slc","slowest functions","strong-cli","strong-cluster-control","strongops","upstart","@bundled-es-modules/deepmerge", +"@bundled-es-modules/glob","@bundled-es-modules/memfs","@zip.js/zip.js","path-unified","@esm-bundle/chai-as-promised", +"@rollup/browser","@shoelace-style/shoelace","@web/test-runner-commands","hanbi","jsdoc-escape-at", +"jsdoc-tsimport-plugin","starlight-links-validator","style dictionary","dictionary","Android","@types/stylis", +"css-to-react-native","@types/js-beautify","@types/react-frame-component","@types/shallowequal","react-frame-component", +"stylis-plugin-rtl","ts-toolbelt","stylis-rule-sheet","zeit","hack","hacks","globjoin","mathml-tag-names","svg-tags", +"@changesets/get-github-info","@stylelint/prettier-config","@stylelint/remark-preset","@types/balanced-match", +"@types/file-entry-cache","@types/global-modules","@types/globjoin","@types/imurmurhash","@types/postcss-less", +"@types/svg-tags","eslint-config-stylelint","jest-preset-stylelint","postcss-sass","stylelint-config","shortcss", +"css-values","babel-register-ts","stylelint-plugin","delaration-strict-value","keyword","z-index","postcss-sorting", +"eslint-config-hudochenkov","postcss-styled-syntax","prettier-config-hudochenkov","postcss-media-query-parser", +"postcss-resolve-nested-selector", +"github-contributors-list","bootstrap-styl","cookiejar","should-http","tinyify","frisbee","super","promised","supports", +"capability","truecolor","16m","esrap","zimmerframe","@types/sade","vscode-languageserver", +"vscode-languageserver-protocol","svelte2tsx","svelte-language-server","@kiwi/eslint-config","@kiwi/prettier-config", +"@types/pug","postcss-easy-import","prettysize","@resvg/resvg-js","playwright-chromium","eslint-plugin-jest-formatting", +"sw-precache","git-release-notes","precache","tape-promise","autogen","promise.any","multilang-extract-comments", +"@readme/eslint-config","readmeio","swagger-nestjs","swagger-templates","swagger UI","istanbul-badges-readme","nodelint", +"still","mocha-phantomjs","travis-cov","jinja","swipe","framework7","gallery","slideshow","http-response-object", +"sync-rpc","then-request","flowgen2","system information","sysinfo","freebsd","openbsd","netbsd","cpu","cpuload", +"physical cores","logical cores","cores","socket type", +"fsstats","diskio","block devices","netstats","network interfaces","network connections","network stats","iface", +"printer","processes","users","internet","battery","docker stats","docker processes","graphic card","graphic controller", +"gpu","smart","disk layout","audio","bluetooth","wifi","wifinetworks","virtual box","virtualbox","vm","BIOS","chassis", +"symbol-es6","@jsenv/file-size-impact","construct-style-sheets-polyfill","hase","draht","limes","lusca","partof", +"timer2","uuidv4","crypto2","nocache","datasette","json-lines","processenv","stethoskop","flaschenpost", +"commands-events","nodeenv","roboter","assertthat","json-lines-client","cqs","cqrs","@codspeed/vitest-plugin", +"className","classList","override","@tailwindcss/oxide","@tapjs/after","@tapjs/after-each","@tapjs/asserts", +"@tapjs/before","@tapjs/before-each","@tapjs/chdir", +"@tapjs/core","@tapjs/filter","@tapjs/fixture","@tapjs/intercept","@tapjs/mock","@tapjs/node-serialize","@tapjs/run", +"@tapjs/snapshot","@tapjs/spawn","@tapjs/stdin","@tapjs/test","@tapjs/typescript","@tapjs/worker","resolve-import", +"tapjs","tapjs plugin","tap-out","tapes","@ljharb/resumer","@ljharb/through","array.prototype.every","dotignore", +"has-dynamic-import","ecstatic","npm-run-posix-or-windows","harness","chownr","yallist","@isaacs/fs-minipass","chmodr", +"events-to-array","brittle","b4a","streamx","fast-fifo","actor system","DDD","actor-system","front end","back end", +"@parcel/packager-ts","@parcel/transformer-typescript-types","cz-format-extension","telegram","telegram-api", +"telegram-client-api","tdlib","tglib","node-addon","tempdir","tmpfile","unique","seventh","lazyness","tree-kit", +"chroma-js","string-kit","nextgen-events","@cronvel/get-pixels","256 colors","true color","input field","gpm", +"screenbuffer", +"textbuffer","32-bit","charm","resumer","visualwidth","80s","ibm","@jridgewell/source-map","@ls-lint/ls-lint","astring", +"es8","@types/uglify-js","@test-runner/core","@test-runner/default-view","@test-runner/live-view", +"@test-runner/oneline-view","@test-runner/tom","multiline-ts","spawn-process","only-allow","sinon-assert-stub", +"sinon-mocha-test","unlinted","example","@devexpress/bin-v8-flags-filter","@devexpress/callsite-record","bowser", +"chrome-remote-interface","device-specs","elegant-spinner","get-os-info","import-lazy","is-podman", +"log-update-async-hook","moment-duration-format-commonjs","os-family","pinkie","promisify-event","read-file-relative", +"replicator","testcafe-browser-tools","testcafe-hammerhead","testcafe-legacy-api","testcafe-reporter-json", +"testcafe-reporter-list","testcafe-reporter-minimal","testcafe-reporter-spec","testcafe-reporter-xunit", +"testcafe-selector-generator","time-limit-promise","unquote","url-to-options","@devexpress/gulp-qunit-harness", +"@ffprobe-installer/ffprobe","@testcafe/publish-please","@types/callsite","@types/dedent","@types/useragent", +"browserstack-connector","caller","dom-walk","eslint-plugin-hammerhead","express-ntlm","gulp-clone", +"gulp-ll-next","gulp-mocha-simple","gulp-step","mocha-reporter-spec-with-retries","openssl-self-signed-certificate", +"recursive-copy","testcafe-browser-provider-browserstack","automated","QA","@types/dockerode","docker-compose", +"properties-reader","ssh-remote-port-forward","@types/async-lock","@types/properties-reader","@types/tar-fs", +"stringify-object-es5","codeclimate-test-reporter","cross-conf-env","headerify","is-number","teenytest", +"teenytest-promise","test double","fireworm","printf","spawn-args","styled_string","bluebird-retry", +"chai-shallow-deep-equal","saucie","eslint-config-mdcs","jpeg-js","three.js","3d","virtual-reality","augmented-reality", +"webgl","webgl2","webaudio","webgpu","webxr","get-port-cli","node-stdlib-browser","user-streams","hundreds","polendina", +"stream-spigot","streams2","unexpand","homedir","tilde","collapse","number-is-nan","profile","stats","bee-dnd","bee-tag", +"bee-form","bee-icon","bee-rate","bee-step","bee-tabs","bee-tile", +"bee-tree","bee-affix","bee-alert","bee-badge","bee-label","bee-menus","bee-modal","bee-panel","bee-radio","bee-table", +"bee-anchor","bee-button","bee-drawer","bee-layout","bee-locale","bee-navbar","bee-select","bee-slider","bee-switch", +"bee-upload","bee-animate","bee-backtop","bee-loading","bee-message","bee-overlay","bee-popover","bee-svgicon", +"bee-tooltip","bee-calendar","bee-carousel","bee-cascader","bee-checkbox","bee-collapse","bee-dropdown","bee-timeline", +"bee-transfer","bee-clipboard","bee-breadcrumb","bee-datepicker","bee-form-group","bee-pagination","bee-popconfirm", +"bee-timepicker","bee-transition","bee-colorpicker","bee-input-group","bee-page-layout","bee-tree-select", +"bee-autocomplete","bee-button-group","bee-complex-grid","bee-form-control","bee-input-number","bee-notification", +"bee-progress-bar","bee-search-panel","bee-loading-state","bee-input-group-addon","gulp-cleancss","gulp-css-wrap", +"tinper-bee-core","less-plugin-inline-urls","tinper","bee", +"tinylibs","@deno/shim-deno-test","tinycolor","worker threads","thread pool","method","@types/react-native-vector-icons", +"pushalert","react-native toast","react-native-toastify","toastify","react-native-notification","expo","Typescript", +"node-resemble-js","processmd","of","tldts","set-cookie","RFC6265","RFC2965","tinytim","trace", +"typedarray.prototype.slice","forEach","html-select","html-tokenize","aggregate","bs-logger","make-error", +"babel-preset-es2016","typescript-loader","migrate","migration","migrations","cli-tool","@ts-morph/common", +"code-block-writer","static analysis","code refactor","create-require","@tsconfig/node10","@tsconfig/node12", +"@tsconfig/node14","v8-compile-cache-lib","@cspotcode/source-map-support","dprint","@swc/wasm","ntypescript", +"util.promisify","fast-json-patch","omit-deep","power-assign","bre","rete","rule engine","rules engine", +"javascript rule engine","js rule engine","inference system","@types/strip-bom","@tsd/typescript", +"eslint-config-xo-typescript","typedefs", +"typedefinitions","jsonc-simple-parser","polite-json","sync-content","Microsoft","codelyzer","tslint-divid", +"@types/make-dir","tslint-immutable","tslint-misc-rules","tslint-microsoft-contrib","tslint-consistent-codestyle", +"ts-lint","typescript-tslint-plugin","fix-dts-default-cjs-exports","joycon","ts-essentials","typescript runner", +"@mixmark-io/domino","turndown-attendant","grunt-mocha","grunt-markdown","grunt-component-io","grunt-push-release", +"grunt-regex-replace","jshint-path-reporter","mocha-unfunk-reporter","grunt-concat-sourcemap","tap-browser-color", +"tweetnacl-util","curve25519","ed25519","nacl","poly1305","public","salsa20","signatures","twemoji-parser","DOM", +"Twitter","type-coverage-core","tagged-tag","@typescript/vfs","generics","media-typer","checking","@gerrit0/mini-shiki", +"@material/material-color-utilities","typedoc-theme","typedoc-plugin","material-design","material-3","typedocplugin", +"JsDocs","cli-prompt","concatenate","ebook","pandoc","kindlegen","latex","@types/mongoose", +"mongodb-memory-server-global","mongoose-findorcreate","prettier-tslint", +"sql-highlight","@sqltools/formatter","gulpclass","@types/sha.js","@sap/hana-client","@types/gulp-rename", +"standard-changelog","@google-cloud/spanner","@types/gulp-sourcemaps","@dprint/formatter","@esfx/canceltoken", +"@dprint/typescript","azure-devops-node-api","monocart-coverage-reports","mocha-fivemat-progress-reporter", +"eslint-formatter-autolinkable-stylish","commandpost","@types/power-assert","intelli-espower-loader", +"@types/postcss-modules-local-by-default","@types/postcss-modules-scope","@types/icss-utils", +"@types/postcss-modules-extract-imports","@types/reserved-words","jest-environment-node-single-context", +"postcss-import-sync2","sass-svg","promise-finally","typings-core","tslint-config-standard","definition","ecma","jsmin", +"random-bytes","@uiw/formatter","@uiw/react-affix","@uiw/react-alert","@uiw/react-auto-link","@uiw/react-avatar", +"@uiw/react-back-top","@uiw/react-badge","@uiw/react-breadcrumb","@uiw/react-button-group","@uiw/react-calendar", +"@uiw/react-card","@uiw/react-carousel","@uiw/react-cascader","@uiw/react-checkbox","@uiw/react-collapse", +"@uiw/react-copy-to-clipboard","@uiw/react-date-input","@uiw/react-date-picker","@uiw/react-descriptions", +"@uiw/react-divider","@uiw/react-drawer","@uiw/react-dropdown","@uiw/react-empty","@uiw/react-file-input", +"@uiw/react-form","@uiw/react-grid","@uiw/react-layout","@uiw/react-list","@uiw/react-loader","@uiw/react-menu", +"@uiw/react-message","@uiw/react-modal","@uiw/react-month-picker","@uiw/react-notify","@uiw/react-pagination", +"@uiw/react-pin-code","@uiw/react-popover","@uiw/react-portal","@uiw/react-progress","@uiw/react-radio", +"@uiw/react-rate","@uiw/react-search-select","@uiw/react-search-tree","@uiw/react-select","@uiw/react-slider", +"@uiw/react-split","@uiw/react-steps","@uiw/react-switch","@uiw/react-table","@uiw/react-tabs","@uiw/react-tag", +"@uiw/react-textarea","@uiw/react-time-picker","@uiw/react-tooltip","@uiw/react-transfer","@uiw/react-tree", +"@uiw/react-tree-checked","media-query-fns","parsel-js","citty","hookable","mkdist","untyped","pretty-bytes-cli", +"browserify-header","@metcoder95/https-pem","dns-packet","jsondiffpatch","bail","trough","@types/extend","retext", +"unique-random","non-repeating","unist-util","xast","nlcst","visit","pullstream","match-stream","uncompress","pupa", +"is-npm","fixture-stdout","notifier","urn","uri mutation","url mutation","uri manipulation","url manipulation", +"uri template","url template","unified resource locator","unified resource identifier", +"query string","RFC 3986","RFC3986","RFC 6570","RFC6570","jquery-plugin","ecosystem:jquery","sauce-browsers", +"sauce-test","formstream","ylru","@eggjs/oxlint-config","@tsconfig/node18","@types/busboy","@types/proxy", +"@types/selfsigned","string.prototype.towellformed","urlopen","userprofile","yamlparser","browserscope","ua","ua-parse", +"ua-parser","user agent","user-agent","is-generator-function","is-typed-array","is-async-supported","rfc9562","bundt", +"diffs","find-parent-dir","githook","sanitisation","sanitise","@vue/shared","@vant/use","@vant/popperjs", +"@vue/runtime-core","diffable-html","vitest-canvas-mock","@vant/area-data","@vant/cli","@vant/eslint-config", +"@vant/icons","@vercel/go","@vercel/h3","@vercel/fun","@vercel/koa","@vercel/blob","@vercel/hono","@vercel/next", +"@vercel/node","@vercel/ruby","@vercel/rust","@vercel/elysia","@vercel/nestjs","@vercel/python","@vercel/express", +"@vercel/fastify","@vercel/redwood","@vercel/backends","@vercel/hydrogen", +"@vercel/build-utils","@vercel/detect-agent","@vercel/static-build","@vercel/remix-builder","epipebomb","promisepipe", +"@sentry/node","@types/title","jaro-winkler","@types/chance","@types/dotenv","@vercel/client","pcre-to-regexp", +"git-last-commit","@inquirer/search","@tootallnate/once","http-proxy-node16","@inquirer/checkbox","@inquirer/password", +"@vercel/frameworks","@vercel/error-utils","line-async-iterator","@vercel/fs-detectors","@types/load-json-file", +"@vercel/routing-utils","@types/npm-package-arg","@types/write-json-file","@vercel-internals/types", +"@edge-runtime/node-utils","json-parse-better-errors","@types/jest-expect-message","@vercel-internals/constants", +"@alex_neo/jest-expect-message","@types/json-parse-better-errors","@vercel-internals/get-package-json","extsprintf", +"err","create-banner","postcss-header","viewer","viewer.js","teex","remove-trailing-separator","fs-mkdirp-stream", +"is-valid-glob","lead","resolve-options","stream-composer","to-through","value-or-function","vinyl-sourcemap", +"vinyl-adapter","classic","browser-split","ev-store","x-is-array","x-is-string","run-browser","vtree","artichokie", +"periscopic","http-proxy-3","strip-literal","es-module-lexer", +"postcss-modules","@oxc-project/types","host-validation-middleware","dev-server","build-tool","dotenv-local", +"slash-path","vite-plugin-builder","api-router","api-routers","vite-plugin-api","vite-plugin-rest-api","express-router", +"file-system-based","rest-api","api-rest","Remix","Next.js","focus-trap","@shikijs/core","@shikijs/types", +"@vue/devtools-api","@vueuse/integrations","@iconify-json/simple-icons","@iconify/utils","@mdit-vue/shared", +"@mdit-vue/plugin-sfc","@mdit-vue/plugin-toc","markdown-it-mathjax3","@mdit-vue/plugin-title","@mdit-vue/plugin-headers", +"@types/markdown-it-emoji","@mdit-vue/plugin-component","@mdit-vue/plugin-frontmatter","@types/markdown-it-container", +"@types/postcss-prefix-selector","tinyrainbow","@vitest/runner","@vitest/snapshot","why-is-node-running", +"@vitest/pretty-format","birpc","local-pkg","@edge-runtime/vm","@antfu/install-pkg","node-localstorage","gulp-xo", +"vorpal-less","vorpal-repl","load-plugins","eyes","BDD","keytar","parse-semver","typed-rest-client","@types/read", +"@types/yazl","@types/cheerio","@types/url-join","@types/clone","@types/iconv-lite","vscode-oniguruma", +"@vue/runtime-dom","eslint-plugin-vue-libs", +"@babel/plugin-syntax-pipeline-operator","@intlify/shared","@intlify/core-base","@intlify/devtools-types","intlify", +"@intlify/vue-i18n-loader","@types/mini-css-extract-plugin","@types/webpack-merge","cache-loader","markdown-loader", +"pug-plain-loader","@vue-macros/common","ast-walker-scope","muggle-string","unplugin-utils","@pinia/colada", +"@types/nightwatch","@vue/language-core","chromedriver","faked-promise","nightwatch-helpers","de-indent", +"todomvc-app-css","foreachasync","sys","walkSync","exec-sh","outpipe","win-spawn","encrypted-attr", +"lodash.issafeinteger","waterline-schema","waterline-utils","active-record","vargs","bdd-with-opts","gulp-debug","mu2", +"promise-simple","sauce-connect-launcher","spawn-mocha-parallel","sv-selenium","web3-eth","web3-net","web3-core", +"web3-types","web3-utils","web3-errors","web3-eth-abi","web3-eth-ens","web3-eth-iban","web3-validator", +"web3-rpc-methods","web3-eth-accounts","web3-eth-contract","web3-eth-personal","web3-providers-ws","web3-rpc-providers", +"web3-providers-http","in3","ganache","web3-providers-ipc","eslint-config-base-web3","@truffle/hdwallet-provider", +"Ethereum","@solana/spl-token","@solana/web3.js","kva-email-service","micro-ed25519-hdkey","ssl-http-with-docker", +"tailwind-animation-extension","telegram-assistant","web3-react-task","sol","@webassemblyjs/ast", +"@webassemblyjs/wasm-edit","@webassemblyjs/wasm-parser","acorn-import-phases","chrome-trace-event","@codspeed/core", +"@types/neo-async","@types/xxhashjs","assemblyscript","bundle-loader","coffee-loader","hash-wasm","meriyah", +"rehype-sanitize","wast-loader","webassembly-feature","xxhashjs","lodash.partial","eslint-config-th0r", +"postcss-icss-values","@carrotsearch/foamtree","eslint-config-th0r-react","analyzer","chart","zoomable", +"@webpack-cli/info","@webpack-cli/configtest","@types/envinfo","@fastify/express","@types/on-finished","@types/sockjs", +"@types/bonjour","bonjour-service","@types/serve-index","@types/serve-static","ansi-html-community", +"@types/connect-history-api-fallback","klona","@types/sockjs-client","reloading","hot-reloading", +"@types/webpack-sources","eslint-config-shellscape","prettier-plugin-package","dts-cli","@types/flat","externals", +"typedarray-to-buffer","yaeti","networking","comet","RFC-6455","@silentbot1/nat-api","@thaunknown/simple-peer", +"@webtorrent/http-node","addr-to-ip-port","bitfield","bittorrent-dht","bittorrent-protocol","cache-chunk-store", +"chunk-store-iterator","cpus","create-torrent","cross-fetch-ponyfill","fs-chunk-store","fsa-chunk-store", +"immediate-chunk-store","join-async-iterator","load-ip-set","lt_donthave","memory-chunk-store","parse-torrent", +"random-iterate","speed-limiter","throughput","torrent-discovery","torrent-piece","uint8-util","unordered-array-remove", +"ut_metadata","ut_pex","@webtorrent/semantic-release-config","airtap-manual","airtap-system","bittorrent-tracker", +"chrome-net","disc","network-address","path-esm","webtorrent-fixtures","bittorrent","bittorrent client","mad science", +"p2p","peer-to-peer","peers","swarm","torrent","web torrent","webrtc data","web worker","a gogo","url-search-params", +"poly","buster","exorcist","microtime","cujo","Promises/A+","isexe","taffydb","unit.js","@dabh/diagnostics","logform", +"one-time","@dabh/eslint-config-populist","abstract-winston-transport","cross-spawn-async", +"hock","winston-compat","file-stream-rotator","@alcalzone/release-script","@alcalzone/release-script-plugin-license", +"daily-rotate-file","log-rotate","logrotate","winston3","bower-config","propprop","wiredep-cli","break","carriage", +"new-line","newline","return","soft","workbox-build","workbox","workboxjs","service worker","fetch requests","offline", +"file manifest","wordbreak","linewrap","writeFile","atomic","HyBi","Push","WebSocket","WebSockets","enstore", +"x-ray-crawler","x-ray-parse","scrape","is-function","parse-headers","ssf","wmf","crc-32","adler-32","codepage","fflate", +"exit-on-epipe","@sheetjs/uglify-js","markdown-spellcheck","xlsb","dbf","dif","sylk","cash-cat","codacy-coverage", +"globify","jsonpath","unminified-webpack-plugin","XML","cdata","CDATA","doctype","processing instruction","Javascript", +"transforming", +"convertor","converting","conversion","node-expat","dom-js","xmltest","DOMParser","XMLSerializer","find-cache-directory", +"func-xml","@babel/plugin-proposal-unicode-property-regex","@unicode/unicode-14.0.0","babel-plugin-array-includes", +"babel-plugin-transform-xregexp","unicode-property-value-aliases","regular expression","whitelist", +"@scion-scxml/test-framework","statechart","state machine","finite state machine","finite automata","scxml", +"interpreter","@types/deep-equal","@types/express-ws","@types/utf8","xterm-benchmark","terminal-emulator", +"jest-ts-webcompat-resolver","YAML","yaml2json","json2yaml","browserslist-generator","yargs-test-extends", +"babel-plugin-transform-inline-imports-commonjs","death","loud-rejection","repeating","request-capture-har","roadrunner", +"babel-preset-es2015-node4","babel-preset-node5","eslint-config-fb-strict","eslint-config-kittens", +"eslint-plugin-flow-vars","eslint-plugin-no-async-without-await","@yeoman/adapter","@yeoman/conflicter", +"@yeoman/namespace","@yeoman/transform","@yeoman/types","fly-import","grouped-queue","mem-fs","mem-fs-editor", +"which-package-manager","@yeoman/eslint","esmocha","sinon-test","github-username","yes","no","true", +"false","lenient","cli-list","fullname","parse-help","root-check","npm-keyword","yeoman-doctor","humanize-string", +"yeoman-character","registry-url","@jonahsnider/benchmark","pad-component","cowsay","say","zeromq","0mq","ømq","libzmq", +"binding","@types/cookie-parser","@types/express-useragent","@types/morgan","express-useragent","schemas", +"runtime types","DSL","@externs/nodejs","@types/systemjs","JSON2","char-split","express-state","firefox-profile", +"istanbul-middleware","shallow-copy","stack-mapper","tap-finished","zuul-localtunnel","browzers","bulk-require", +"zuul-ngrok","@phenomnomnominal/tsquery","Unit Testing","Storybook","motion-dom","motion-utils","@radix-ui/react-dialog", +"@thednp/dommatrix","react animation","pose","react pose","popmotion","framer","waapi","belalangkayu","rengginangbasi", +"tehtarik3","sort-array","compute-scroll-into-view","@docusaurus/module-type-aliases","@testing-library/preact", +"babel-plugin-no-side-effect-class-properties","babel-preset-react-native","flow-coverage-report", +"get-pkg-repo","enhanced input","autosuggest","typeahead","omnibox","WAI-ARIA","multiple selection","focus","keyboards", +"mice","pen","pointer","pseudos","ring","textarea","trackpad","@augment-vir/core","@date-vir/duration","deepcopy-esm", +"typed-event-target","@web/dev-server-esbuild","execute-in-browser","istanbul-smart-text-reporter","runstorm","augment", +"vir","augment-vir","toolchain","JSONC","JSX","TSX","GraphQL","@commercetools-frontend/application-components", +"@commercetools-frontend/application-config","@commercetools-frontend/assets", +"@commercetools-frontend/babel-preset-mc-app","@commercetools-frontend/mc-dev-authentication", +"@commercetools-frontend/mc-html-template","@commercetools/http-user-agent","@formatjs/cli-lib","@rollup/plugin-graphql", +"@svgr/babel-preset","@types/webpack-bundle-analyzer","@vitejs/plugin-react-swc","babel-plugin-formatjs", +"graphql-request","moment-locales-webpack-plugin","svg-url-loader","thread-loader", +"@commercetools/composable-commerce-test-data","@types/moment-locales-webpack-plugin","@vue/cli-plugin-babel", +"@vue/cli-plugin-typescript","@vue/cli-service","eslint-plugin-prettier-vue","rollup-plugin-vue","vue 3", +"@vue/cli-plugin-unit-mocha","symlink-dir","tokenize","dogstatsd","datadog","telegraf","adr", +"decision record","any decision record","architectural decision","architectural decision record","architecture decision", +"architecture decision record","software quality","bplist-parser","@types/katex","katex","tex","hyperlink", +"@type-challenges/utils","deserialization","deserialize","detect-europe-js","is-standalone-pwa","ua-is-frozen", +"client-hints","device","browser-detection","device-detection","os-detection","bot-detection","ai-detection", +"app-detection","crawler-detection","youch","@adonisjs/ace","@adonisjs/env","parse-imports","@adonisjs/fold", +"@adonisjs/hash","@adonisjs/repl","youch-terminal","@poppinss/utils","@adonisjs/config","@adonisjs/events", +"@adonisjs/health","@adonisjs/logger","@poppinss/colors","@poppinss/dumper","@poppinss/macroable","@adonisjs/bodyparser", +"@adonisjs/encryption","@adonisjs/application","@adonisjs/http-server","error-stack-parser-es","argon2","edge.js", +"@japa/assert","@japa/runner","@japa/snapshot","@japa/expect-type","@japa/file-system","@adonisjs/tsconfig", +"ts-node-maintained","@adonisjs/assembler","@types/test-console","@adonisjs/eslint-config","@adonisjs/prettier-config", +"adonisjs","@aneuhold/core-ts-api-lib","@aneuhold/core-ts-lib", +"@aneuhold/local-npm-registry","@aneuhold/main-scripts","@capacitor/cli","@trapezedev/project","@types/slice-ansi", +"resources","splash screen","webOS","@envelop/types","@envelop/instrumentation","@whatwg-node/promise-helpers", +"@ionic/cli-framework-output","@angular-eslint/eslint-plugin","@angular-eslint/eslint-plugin-template", +"@angular-eslint/schematics","ng-packagr","docz","docz-utils","docz-theme-default", +"@asdfgertyjhnpm/nesciunt-molestias-reprehenderit-occaecati","@drftgyhuji7npm/rem-sint-necessitatibus-possimus", +"@drftgyhuji7npm/repellendus-eum-et-itaque","typeerror","Reflect.getPrototypeOf","Int8Array","Array","configurable", +"minimal","descriptors","channel","matchAll","Uint32Array","Array.prototype.filter","setter","Uint16Array","exit-code", +"isConcatSpreadable","weakmap","syntaxerror","sharedarraybuffer","Object","Array.prototype.flat","toSorted","typesafe", +"preserve-symlinks","negative zero","[[Prototype]]","tester","ArrayBuffer.prototype.slice","byteOffset","zero", +"ArrayBuffer#slice","trimRight","getter","Array.prototype.contains","findLastIndex","last","Int16Array","Int32Array", +"rangeerror","Float32Array","take","workspace:*","byteLength", +"censor","Symbol.toStringTag","operating-system","coercible","Function.prototype.name","gdpr","ArrayBuffer", +"private data","Object.fromEntries","0","tostringtag","-0","negative","Array.prototype.findLast","enumerable","toobject", +"interrupts","groupBy","handlers","reuse","Float64Array","group","some","collection.es6","sameValueZero","positive", +"code points","regular expressions","findLast","robust","description","Uint8ClampedArray","pnpm9","length", +"defineProperty","RegExp#flags","valid","accessor","@smithy/types","aws-lambda","elapsed-time-logger","gulp-open", +"cupertino","pane","slide","@pouchlab/ui","chai-jquery","corejs-typeahead","doiuse","gulp-add-src","gulp-cache-bust", +"gulp-check-deps","gulp-sass-lint","gulp4-run-sequence","is-empty-object","motion-ui","sassy-lists", +"undertaker-forward-reference","vinyl-named","handlebars-helper-rel","handlebars-helper-slugify","tinygradient", +"@bokub/prettier-config","gradient", +"gradients","grommet-icons","@chromatic-com/storybook","@storybook/addon-a11y","@storybook/addon-toolbars", +"@storybook/addon-webpack5-compiler-babel","@storybook/manager-api","@storybook/source-loader", +"@testing-library/testcafe","babel-plugin-transform-imports","chromatic","grommet-theme-hpe","jest-styled-components", +"react-shadow","tarball-extract","testcafe-react-selectors","grommet.io","grommetux","theming","sticker sheets", +"design patterns","app templates","atomic design","WCAG 2.1","keyboard navigation","screen reader tags","interaction", +"graphical user interface","dart-sass","grunt-jekyll","zepto","lightbox","@next/font","axe-playwright", +"@storybook/test-runner","@base-ui-components/react","@storybook/addon-webpack5-compiler-swc","find-process", +"@types/pretty","chromium","launch-image","splashscreen","splash-screen","image-generation","mstile","pwa-assets", +"@apitools/openapi-parser","base64-arraybuffer","xml-but-prettier","babel-plugin-template-html-minifier","inspectpack", +"Custom Element","Web Component","swagger ui","openapi ui","openapi themes","openapi viewer","openapi renderer", +"openapi explorer","swagger themes","animatable","@react-native/babel-preset","collapsible","accordion", +"rollup-plugin-local-resolve","swipeable","customizable","touchscreen","listview","swipe-to-delete","swipe-actions", +"use-composed-ref","use-latest","@preconstruct/cli","autosize","grow","md-writer","@types/common-tags", +"decimal.js-light","victory-vendor","@recharts/devtools","@storybook/builder-vite","@storybook/react-vite", +"@stryker-mutator/typescript-checker","@stryker-mutator/vitest-runner","@types/d3-interpolate","@types/d3-time-format", +"babel-plugin-dev-expression","eslint-config-airbnb-extended","eslint-plugin-react-perf","vitest-axe", +"@riotjs/dom-bindings","@riotjs/compiler","@riotjs/prettier-config","@riotjs/register","@riotjs/util", +"@wdio/mocha-framework","@wdio/sauce-service","bianco.attr","bianco.query","cumpa","curri","eslint-config-riot", +"rollup-plugin-riot","custom tags","minimalist","data binding","riotjs","riot.js","testcafe-browser-provider-saucelabs", +"sortable","reorder","ng-sortable","@use-gesture/vanilla","tdesign-icons-vue-next","@rollup/plugin-eslint", +"@rollup/plugin-url","@soerenmartius/vue3-clipboard","@tdesign/site-components","@tdesign/theme-generator","dom-parser", +"lodash.upperfirst","qrcode.vue","rollup-plugin-ignore-import","rollup-plugin-static-import","rollup-plugin-styles", +"tdesign-publish-cli","vite-plugin-tdoc", +"tdesign","babel-plugin-html-tag","postcss-css-variables","postcss-hexrgba","postcss-prefixer", +"rollup-plugin-module-replacement","rollup-plugin-string","uploader","preview","chunk","image-edit","sockets","ready", +"win32","gulp-convert-css-var","picklog","wechat","weixin","@formatjs/intl-localematcher","@napi-rs/simple-git", +"@shikijs/twoslash","@theguild/remark-mermaid","better-react-mathjax","estree-util-value-to-estree", +"react-compiler-runtime","react-medium-image-zoom","remark-math","remark-reading-time","remark-smartypants", +"unist-util-remove","unist-util-visit-children","@types/negotiator","esbuild-plugin-svgr", +"esbuild-react-compiler-plugin","make-synchronized","make-synchronous","sync-threads","synchronize","fs-fixture", +"@ibyar/decorators","aurora","ibyar","expressions","template-syntax","template-expression","scope","evaluation", +"command-center","rich-text-editor","tiptap","@types/babel__preset-env","eslint-plugin-no-null","allure","codeceptjs", +"testops","@intlayer/chokidar","@intlayer/config","@intlayer/core","@intlayer/types","intlayer","@types/cls-hooked", +"@utils/ts-config","@utils/ts-config-types","@utils/tsdown-config", +"user-agents","unist-util-remove-position","@bugsnag/core","@bugsnag/delivery-react-native", +"@bugsnag/plugin-console-breadcrumbs","@bugsnag/plugin-network-breadcrumbs","@bugsnag/plugin-react", +"@bugsnag/plugin-react-native-client-sync","@bugsnag/plugin-react-native-event-sync", +"@bugsnag/plugin-react-native-global-error-handler","@bugsnag/plugin-react-native-hermes", +"@bugsnag/plugin-react-native-session","@bugsnag/plugin-react-native-unhandled-rejection","iserror","bugsnag", +"stability","@enact/i18n","ilib","eslint-plugin-astro","control-panel","backendless-request","backendless-rt-client", +"backendless-console-sdk","bannerize","backendless.com","ahooks","better-scroll","@zarm-design/bem","@use-gesture/react", +"@zarm-design/icons","@floating-ui/react-dom-interactions","@zarm-design/cli","zarm-ui","zarm-mobile","@enact/spotlight", +"@enact/docs-utils","@enact/ui-test-utils","eslint-config-enact-proxy","react select","react dropdown", +"accessible react select","accessible","@reporters/github","titanium-sdk","tidev","iphone","@antora/expand-path-helper", +"antora","static site","web publishing","@asyncapi/generator-components","@asyncapi/generator-helpers", +"@asyncapi/generator-hooks","@asyncapi/multi-parser","fs.extra","global-dirs","requireg","unixify","react-loadable", +"combine-promises","@docusaurus/babel","@docusaurus/logger","@docusaurus/bundler","react-router-config", +"@docusaurus/mdx-loader","@docusaurus/utils-common","@docusaurus/utils-validation","react-loadable-ssr-addon-v5-slorber", +"@total-typescript/shoehorn","@types/react-router-config","parcel-bundler","Vue","unstyled","@nestjsx/crud-request", +"@nestjsx/util","crud-generator","frameworks","@zmotivat0r/o0","p-filter","p-locate","dependency-management", +"continuous-integration","npmjs","package-manager","gatsby","hugo","netlify","core-js-pure","jest-location-mock", +"@types/module-alias","webpack-plugin-serve","hotreload","@pothos/test-utils","pothos","yalc","@strapi/core", +"@strapi/i18n","@strapi/admin","@strapi/email","@strapi/types","@strapi/utils","@strapi/logger","@strapi/upload", +"@types/nodemon","@strapi/openapi","@strapi/database","@strapi/cloud-cli","@strapi/generators","get-latest-version", +"@strapi/permissions","@strapi/data-transfer","@strapi/content-manager","@strapi/content-releases", +"@strapi/review-workflows","@strapi/typescript-utils","@strapi/content-type-builder","@strapi/ts-zen", +"eslint-config-custom","@types/webpack-hot-middleware","strapi","cmf","content management framework","admin panel", +"koajs","jam","graphqL","infrastructure","self hosted", +"lernajs","snake-case","@types/svg-parser","http-status-emojis","tsparticles-plugin","@tsparticles/interaction", +"@tsparticles/move","tsparticles-shape","@tsparticles/updater","@aws-sdk/lib-storage","@aws-sdk/s3-presigned-post", +"express-interceptor","express-prom-bundle","grant","tus-js-client","webdav","resumable uploads","tus","dropbox", +"webpack-chain","@vuepress/types","vue-server-renderer","@vue/babel-preset-app","vuepress-plugin-container", +"vuepress-html-webpack-plugin","@types/diacritics","vuepress-plugin-smooth-scroll","detect-browser", +"@walletconnect/types","@walletconnect/safe-json","@walletconnect/window-getters","@walletconnect/window-metadata", +"@ethersproject/address","@types/lodash.isnumber","wallet","walletconnect","jsonrpc","cryptocurrency","dapp", +"@walletconnect/utils","@walletconnect/crypto","@walletconnect/legacy-types","@walletconnect/legacy-utils", +"@types/qrcode","@walletconnect/legacy-client","@walletconnect/jsonrpc-provider", +"@walletconnect/jsonrpc-http-connection","ethereum-test-network","@wordpress/element","wordpress","gutenberg","center", +"jasmine-co","jasmine-ts","selenium-mock","body scroll","body scroll lock","react scroll lock","react scroll","freeze", +"disable","overflow","vanilla-js","tablet", +"bsl","broccoli-node-info","resolve-path","@types/console-ui","@types/esm","@types/findup-sync","@types/sane", +"@types/underscore.string","broccoli-node-api","mocha-jshint","babel-plugin-optimize-starts-with","replacement","html4", +"invalid","color-name","is-whitespace","verb","mediaquery","csstree","completion","apollo-link-context","decap-cms", +"aws-cognito","what-the-diff","gotrue-js","git-gateway","gateway","napa","detector","tinydate","tweezer.js", +"medium-zoom","autoprefixer-stylus","rollup-plugin-async","eslint-plugin-playwright","creator","cp-file","yargonaut", +"docsify-server-renderer","cli-prompts-test","rollup-plugin-executable","ssr-window","eslint-config-standard-react", +"prettier-check","array-hyper-unique","crlf-normalize","book","books","chapter","comic","epub-maker","epub-maker2", +"node-novel","novel","volume","escaping","interpolate","goat","🐐","color-logger","ice-cap","esdoc-importpath-plugin", +"ECMAScript6","ECMAScript2015", +"ECMAScript7","ECMAScript2016","ECMAScript8","ECMAScript2017","proposal","mdc","developer","inter-element","white-space", +"whitespace","tagname","force","graceful-shutdown","http-shutdown","http-terminate","prometheus","icss", +"inferno-hyperscript","vnode","createVNode","gulp-rtlcss","postcss-preset-infima","dark mode","bootswatch","docstrap", +"@angular-devkit/build-angular","angular-eslint","github-files-fetcher","@stitches/react","animate-sass", +"postcss-trolling","vite-plugin-svgr","preview jest","log-utils","engine-base","engine-handlebars","lo","lo-dash", +"serve-index-75lb","lws-middleware","micromark-extension","tagfilter","dangerous","grunt-jasmine-node","mobilegrade", +"sniff","nth-child","nth","is-alphanumerical","is-decimal","is-hexadecimal","cssinjs", +"@wdio/selenium-standalone-service","babelrc-rollup","queryselector","shadowdom","gulp-streamify","rc-tools","tappable", +"hammer","@actions/core","@oclif/plugin-autocomplete","toposort","@readme/better-ajv-errors", +"@readme/standards","@types/toposort","@types/unzipper","goober","jest-esm-jsx-transform","parcel-plugin-css-to-string", +"use-throttled-effect","hex","color-picker","wai-aria","smart-tv","smarttv","simple-routing","nano-equal", +"shallow-equal-fuzzy","shouldComponentUpdate","quicklook","image-gallery","image-viewer","react-native-svg", +"progressindicator","circle","pie","progressbar","indeterminate","d3-interpolate-path","@react-native-community/bob", +"@storybook/react-native","eslint-plugin-react-native","youtube-iframe","iframe","@atomico/rollup-plugin-sizes", +"git-branch-is","react-spring","@bedrock-layout/use-forwarded-ref","@codecov/vite-plugin","@types/body-scroll-lock", +"get-nonce","@theuiteam/lib-builder","@tsparticles/shape-text","@tsparticles/updater-roll","@tsparticles/updater-tilt", +"@tsparticles/updater-wobble","@tsparticles/plugin-emitters","@tsparticles/updater-destroy", +"@tsparticles/updater-twinkle","@tsparticles/plugin-absorbers","@tsparticles/interaction-external-trail", +"@tsparticles/plugin-emitters-shape-circle","@tsparticles/plugin-emitters-shape-square","useRef","createRef", +"merge refs","detect-node-es","@types/enzyme-adapter-react-16","code spliting","sidecar","mutation-observer", +"copy-text-to-clipboard","svelte-loader","scss-loader","perfect-scroll","vue-perfect-scroll","vue-scroll", +"vue-scrollbar","vue-plugin","滚动条","@types/eslint-plugin-prettier","@types/form-data","is-uuid","rewrite-imports", +"serviceworker","convict","antora-component","@applitools/test-utils","applitools","eyes-sdk","test automation", +"visual regression","@dataui/crud-request","@dataui/crud-util","blob-to-buffer","drag drop","drag & drop", +"@expo/spawn-async","@parcel/core","@parcel/fs","@parcel/package-manager","@parcel/watcher","mnemonic-id", +"node-object-hash","@plasmohq/parcel-config","@plasmohq/parcel-core","@plasmohq/init","@plasmo/config", +"@plasmo/constants","@plasmo/utils","@plasmo/framework-shared","browser-extensions","@iconify/react","@types/events", +"static-server","@storybook/cli","less-plugin-sass2less","@storybook/addon-mdx-gfm","music","player","mse","eme", +"@arethetypeswrong/core","ts-expose-internals","dlv","dset","flattie","fontace","unifont","magicast","piccolore", +"unstorage","zod-to-ts","xxhash-wasm","yocto-spinner","@oslojs/encoding","@astrojs/compiler","@astrojs/telemetry", +"@capsizecss/unpack","http-cache-semantics","@astrojs/internal-helpers", +"deterministic-object-hash","@types/dlv","rehype-toc","astro-scripts","remark-code-titles","@types/common-ancestor-path", +"@types/http-cache-semantics","strata","fuzzysearch","sander","@web/test-runner-core","testrunner","ac-colors","hsv", +"lch","color-names","cmyk","mix","harmonies","expressots","clean-architecture","typescript-framework", +"@pagefind/default-ui","bcp-47","mdast-util-directive","linkedom","withastro","astro-integration","piña","pigna", +"tabbable","@floating-ui/utils","@radix-ui/react-checkbox","@radix-ui/react-icons","vitest-browser-react", +"@internal/test-utils","code-blocks","expressive-code","syntax-highlighting","netlify-cms","@types/deep-eql", +"@amaui/ui-react","amaui","firefoxos","onesy","@react-native-macos/virtualized-lists","@tsparticles/plugin-easing-quad", +"@tsparticles/updater-stroke-color","@tsparticles/interaction-external-pause","@tsparticles/interaction-external-bubble", +"@tsparticles/interaction-external-attract","@tsparticles/interaction-external-connect","@types/react-router", +"@backstage/backend-plugin-api","@backstage/config","@backstage/integration","express-promise-router", +"@backstage/backend-test-utils","@backstage/catalog-model","@backstage/cli","@backstage/plugin-catalog-common", +"@backstage/plugin-catalog-node","backstage","ci/cd", +"immobiliare","immobiliarelabs","rgv","@asteasolutions/zod-to-openapi","@trpc/server", +"eslint-import-resolver-custom-alias","resolve-tspaths","event-driven","blaze","qs-esm","dataloader","bson-objectid", +"console-table-printer","@payloadcms/translations","graphql-http","@types/range-parser","@monaco-editor/react", +"@payloadcms/eslint-config","@hyrious/esbuild-plugin-commonjs","content management","graphQL","@cfcs/core","@egjs/axes", +"@egjs/component","@egjs/imready","@egjs/list-differ","@daybrush/jsdoc","@egjs/flicking-plugins","@egjs/release-helper", +"@types/resize-observer-browser","egjs-jsdoc-template","html-to-react","http-serve","jsdoc-to-mdx", +"karma-typescript-es6-transform","postcss-clean","print-coveralls","print-sizes","pvu","rollup-plugin-prototype-minify", +"ts-mock-imports","ttypescript","flicking","egjs","body scroll lock upgrade","@ucast/mongo2js","@casl/dx","permissions", +"abac","rbac","ibac","cancan","@humanwhocodes/gitignore-to-minimatch","peowly","list-dependents-cli","rslog", +"@rslib/core","@modern-js/rslib","@modern-js/types","@scripts/rstest-config","modern","modern.js","@scripts/build", +"@scripts/jest-config", +"import-without-cache","unconfig-core","unrun","@publint/pack","@sxzz/eslint-config","@sxzz/prettier-config", +"@sxzz/test-utils","@unocss/eslint-plugin","@vitejs/devtools","rolldown-plugin-dts-snapshot", +"rolldown-plugin-require-cjs","unocss","unplugin-ast","unplugin-lightningcss","unplugin-unused","@types/decompress", +"@ckeditor/ckeditor5-comments","@ckeditor/ckeditor5-track-changes","CKEditor","WYSIWYG","WYSIWYW","rich-text", +"fast-equals","glob2regx","ckeditor5-collaboration","@ckeditor/ckeditor5-revision-history", +"@ckeditor/ckeditor5-operations-compressor","@ckeditor/ckeditor-cloud-services-collaboration","@grammyjs/types", +"deno2node","@udecode/plate-utils","@loki/integration-react","@loki/integration-react-native","@loki/integration-vue", +"@loki/runner","@loki/target-chrome-app","@loki/target-chrome-docker","@loki/target-native-android-emulator", +"@loki/target-native-ios-simulator","storybook-addons","react-storybook","visual testing","emoji-datasource", +"@fastify/static","graphql-jit","mqemitter","single-user-cache","tiny-lru","@matteo.collina/snap", +"@types/isomorphic-form-data","graphql-ws","blue-tape","events.once","xhr2-cookies","convex","mock-spawn", +"@fastify/pre-commit","@reporters/silent","desm","gulp-better-rollup","Leaflet","Maps","Gesture","Handling", +"two","fingers","@tanstack/vue-virtual","@testing-library/vue","@fast-check/vitest","@types/eslint-config-prettier", +"prettier-plugin-pkg","prettier-plugin-sh","algo","@oxc-node/cli","eslint-plugin-redos-detector","tsm","bundle-size", +"@iconify/vue","@internationalized/date","@internationalized/number","@nuxt/fonts","@nuxt/icon","@nuxt/kit", +"@nuxt/schema","@nuxtjs/color-mode","@tanstack/vue-table","@tiptap/core","@tiptap/extension-bubble-menu", +"@tiptap/extension-code","@tiptap/extension-collaboration","@tiptap/extension-drag-handle", +"@tiptap/extension-drag-handle-vue-3","@tiptap/extension-floating-menu","@tiptap/extension-horizontal-rule", +"@tiptap/extension-image","@tiptap/extension-mention","@tiptap/extension-node-range","@tiptap/extension-placeholder", +"@tiptap/markdown","@tiptap/pm","@tiptap/starter-kit","@tiptap/suggestion","@tiptap/vue-3","@vueuse/shared", +"colortranslator","embla-carousel-auto-height","embla-carousel-auto-scroll","embla-carousel-autoplay", +"embla-carousel-class-names","embla-carousel-fade","embla-carousel-vue","embla-carousel-wheel-gestures","knitwork", +"motion-v","reka-ui","tailwind-variants","unplugin-auto-import","unplugin-vue-components","vaul-vue", +"vue-component-type-helpers","@nuxt/eslint-config","@nuxt/module-builder","@nuxt/test-utils","@tanstack/table-core","ai", +"vitest-environment-nuxt","nuxt-ui","ui-framework", +"country-code","country-codes","country-flags","country-names","country-telephone-codes","country-telephone-prefixes", +"countries","country-iso-codes","iso","iso-codes","iso-country-codes","iso-country-names","iso-country-telephone-codes", +"iso-country-telephone-prefixes","iso-countries","emoji-flags","phone-codes","phone-prefixes","telephone-codes", +"telephone-prefixes","world-countries","world-country-codes","world-country-flags","world-country-names", +"world-country-telephone-codes","world-country-telephone-prefixes","world-iso-codes","world-iso-country-codes", +"world-iso-country-names","@zoroaster/assert","@zoroaster/mask","alamode","@a-la/fixture-alamode","@a-la/fixture-babel", +"@artdeco/clean-stack","@artdeco/erte","@artdeco/scripts.json","@depack/render","@wrote/exists","@wrote/rm", +"@zoroaster/reducer","@zoroaster/types","argufy","catchment","documentary","erotic","eslint-config-artdeco", +"makepromise","promto","reloquent","snapshot-context","spawncommand","temp-context","usually","yarn-s","IDE", +"suggestions","intellisense","assistant-cloud","@assistant-ui/tap","@assistant-ui/store","@radix-ui/primitive", +"@radix-ui/react-compose-refs","@radix-ui/react-context", +"@radix-ui/react-dropdown-menu","@radix-ui/react-popover","@radix-ui/react-primitive","@radix-ui/react-use-callback-ref", +"@radix-ui/react-use-escape-keydown","assistant-stream","@assistant-ui/x-buildutils","radix-ui","ai-sdk","assistant", +"openai","chatbot","copilot","ai-chat","ai-chatbot","ai-assistant","ai-copilot","chatgpt","gpt4","gpt-4", +"conversational-ui","conversational-ai","graphiql","radash","@a2a-js/sdk","js-tiktoken","@lukeed/uuid","hono-openapi", +"@isaacs/ttlcache","@ai-sdk/provider-v5","@ai-sdk/provider-v6","@ai-sdk/ui-utils-v5","@mastra/schema-compat", +"@ai-sdk/provider-utils-v5","@ai-sdk/provider-utils-v6","@ai-sdk/azure","@ai-sdk/openai","@internal/lint", +"@internal/ai-v6","@internal/ai-sdk-v4","@internal/ai-sdk-v5","@internal/types-builder","@internal/external-types", +"@openrouter/ai-sdk-provider","llm","llms","agents","vectorstore","embeddings","rag","evals","otel","@tailwindcss/ui", +"@types/sortablejs","vue-next","draggable","drag-and-drop","vue-draggable","kanban","composition-api", +"@oxc-project/runtime","hmac256","hmac512","@ant-design/pro-components", +"@anthropic-ai/sdk","@azure-rest/ai-inference","@cfworker/json-schema","@clerk/localizations","@clerk/nextjs", +"@clerk/themes","@cyntler/react-doc-viewer","@fal-ai/client","@formkit/auto-animate","@google/genai", +"@huggingface/inference","@icons-pack/react-simple-icons","@khmyznikov/pwa-install","@langchain/community", +"@lobechat/agent-runtime","@lobechat/const","@lobechat/context-engine","@lobechat/database", +"@lobechat/electron-client-ipc","@lobechat/electron-server-ipc","@lobechat/fetch-sse","@lobechat/file-loaders", +"@lobechat/model-runtime","@lobechat/observability-otel","@lobechat/prompts","@lobechat/python-interpreter", +"@lobechat/utils","@lobechat/web-crawler","@lobehub/analytics","@lobehub/charts","@lobehub/chat-plugin-sdk", +"@lobehub/chat-plugins-gateway","@lobehub/editor","@lobehub/icons","@lobehub/market-sdk","@lobehub/tts","@lobehub/ui", +"@neondatabase/serverless","@next/third-parties","@opentelemetry/exporter-jaeger","@opentelemetry/winston-transport", +"@react-pdf/renderer","@react-spring/web","@saintno/comfyui-sdk","@serwist/next","@t3-oss/env-nextjs","@trpc/client", +"@trpc/next","@trpc/react-query","@vercel/analytics","@vercel/edge-config","@vercel/functions","@vercel/speed-insights", +"@virtuoso.dev/masonry","@xterm/xterm","brotli-wasm","countries-and-timezones","dexie","drizzle-orm","drizzle-zod", +"gpt-tokenizer","i18next-resources-to-backend","js-sha256","jsonl-parse-stringify", +"langchain","langfuse","langfuse-core","lucide-react","markdown-to-txt","model-bank","modern-screenshot", +"next-mdx-remote","nextjs-toploader","nuqs","officeparser","oidc-provider","ollama","partial-json","path-browserify-esm", +"pdf-parse","plaiceholder","posthog-js","pwa-install-handler","react-confetti","react-hotkeys-hook","react-layout-kit", +"react-pdf","react-rnd","react-scan","react-virtuoso","react-wrap-balancer","resolve-accept-language","rtl-detect", +"ssrf-safe-fetch","svix","tokenx","ts-md5","unstructured-client","use-merge-value","word-extractor","zustand-utils", +"@huggingface/tasks","@lobehub/i18n-cli","@lobehub/lint","@lobehub/market-types","@lobehub/seo-cli", +"@next/bundle-analyzer","@peculiar/webcrypto","@types/chroma-js","@types/crypto-js","@types/ip","@types/numeral", +"@types/oidc-provider","@types/pdfkit","@types/pg","@types/rtl-detect","dbdocs","dpdm-fast","drizzle-dbml-generator", +"drizzle-kit","eslint-plugin-mdx","fake-indexeddb","just-diff","mcp-hello-world","remark-mdx","serwist","vercel-ai", +"azure-openai", +"visual-model","tts","stt","modelcontextprotocol","mcp","context7","vibe-coding","developer tools", +"@types/istanbul-lib-report","@walletconnect/time","@walletconnect/events","label","better-npm-run","clamp.js", +"karma-fixture","karma-opera-launcher","minimalistic","@types/webrtc","detectrtc","install-peers-cli","prepend-file", +"camera","webcam","cam","webRTC","react-native-worklets","visionOS","tvOS","macOS","cpp","swift","jsi","@antfu/ni", +"@dotenvx/dotenvx","@types/validate-npm-package-name","stringify-object","@types/stringify-object","virtual-core", +"datagrid","2fa","hotp","topt","google authenticator","authenticator","one time password","one-time-password","2 factor", +"survey","surveyjs","survey-library","form-component","form-rendering","survey-renderer","dynamic-form", +"interactive-form","form-library","form-management","questionnaire","data-collection","data-validation", +"input-validation","ui-component","schema-form","base64-stream", +"bplist-creator","@mrleebo/prisma-ast","@electric-sql/pglite-socket","@prisma/query-plan-executor","common-stuff", +"accelerate","@aws-lite/client","@aws-lite/s3","@architect/eslint-config","mock-tmp","tap-arc","cloudfunctions", +"apigateway","api gateway","@webgpu/types","@tinymce/tinymce-react","n1ed","@headlessui/tailwindcss","@heroicons/react", +"@tailwindplus/elements","@types/sharp","react-docgen-typescript","react-lib-tools","rollup-preserve-directives", +"ts-blank-space","vitest-fail-on-console","windowed","@extend-chrome/messages","@extend-chrome/storage","@types/chrome", +"@types/jsesc","vite-plugin-inspect","chrome-extension","webext","webextension","browser-extension","isoformat", +"interval-tree-1d","htl","@types/d3","apache-arrow","d3-geo-projection","@observablehq/stdlib","string-split-by", +"cargo-cp-artifact","skia","offscreen","compositing","vulkan","metal","flmngr","imgpen","unsplash","@types/listr", +"markdown-to-pdf","pdf-generation","assignments","homework","html-to-pdf","@applitools/core","@applitools/logger", +"@applitools/req","@applitools/snippets","@applitools/image", +"@applitools/spec-driver-webdriver","@antora/user-require-helper","kapok-js","@asciidoctor/core", +"@antora/asciidoc-loader","navigation","asciidoc","pod-install","pinch-to-zoom","pinch","@farmfe/cli","@farmfe/core", +"bun-types-no-globals","eslint-plugin-format","unloader","redirects","@antora/file-publisher","publisher", +"vite-plugin-dts-bundle-generator","vite-plugin-pages","vite-plugin-typescript","vite-plugin-typescript-transform", +"box2d","game","physics","2d","replace-in-files-cli","sandboxed-module","oxc","exact-versions","turborepo", +"version-linter","@jsdevtools/ez-spawn","@napi-rs/magic-string","@pnpm/list","@pnpm/workspace.find-packages", +"@types/treeverse","@types/yarnpkg__lockfile","fast-npm-meta","@nolyfill/internal","@nolyfill/promise.any","fumadb", +"kysely","@orpc/zod","@orpc/otel","neverthrow","@c15t/logger","@orpc/server","@orpc/openapi","@orpc/contract", +"@c15t/translations","@opentelemetry/sdk-node","kysely-pglite","@c15t/vitest-config","@libsql/kysely-libsql", +"@c15t/typescript-config","consent","privacy","ccpa","lgpd","self-host","consent-management","user-privacy", +"data-protection", +"cookie-banner","consent-management-platform","cmp","consent-banner","@ampproject/rollup-plugin-closure-compiler", +"@fezvrasta/tsc-silent","@khanacademy/flow-to-ts","babel-plugin-inline-replace-variables","poster", +"rollup-plugin-flow-entry","popper","positioning engine","anime","anime.js","timeline","easings","cubic-bezier", +"splitText","WAAPI","Canvas","WebGL","decrypt","ev-emitter","fizzy-ui-utils","get-size","imagesloaded","unidragger", +"eslint-plugin-metafizzy","jquery-bridget","flick","gulp-wrap-commonjs","lex","maths","persist-schema","jugglingdb", +"panorama","rip-out","eslint-config-godaddy-react","setup-env","compatiblity","rollup-plugin-eslint", +"rollup-plugin-sass","testit","gethub","bits","iec"], +[5,293,294], +[0,-3015,-3016,-3017,-3018], +1771718400000, +1771113600000, +1770508800000, +[0], +1772323200000, +1772409600000, +1772064000000, +1771804800000, +[1,24,619], +[1,3,621], +[0,-519,-2384,-2541], +[0,-3040,-3052,-1031,-2006,-2019,-2410], +[0,-3095,-3098,-3099,-3161,-3100,-2006,-3159,-3160,-2494], +[1,3,440], +[1,3,1832], +[0,-3488,-681,-3489,-3490,-3491,-3492], +[1,3,1826], +[0,-3220], +[0,-1889], +[0,-424], +[0,-3557,-3018], +true, +[1,3,622], +[0,-1654], +[0,-2006,-2019], +[0,-4298,-4300,-2319], +[1,3,1783], +[0,-2322], +[1,24,585], +[0,-2387], +[0,-1548], +[0,-531], +[0,-7841], +[0,-2410], +[0,-932], +[0,-44], +[0,-1787], +[0,-2006], +[0,-856,-3262,-2476,-2816], +[1,3,674], +[0,-18,-19,-471,-487,-498,-504,-577,-588,-590,-591,-592,-603,-604,-605,-5421,-606,-607,-608,-609,-610,-5422,-611,-612, +-613,-5423,-626,-631,-643,-660,-663,-5424,-670,-676,-5425,-5426,-5427,-5428,-5429,-804,-830,-833,-836,-998,-5430,-5431, +-1019,-1020,-1095,-1121,-5432,-1280,-1282,-1307,-1308,-5433,-1378,-1511,-1512,-1513,-5434,-1516,-1584,-1596, +-5435,-1615,-5436,-1648,-1679,-1684,-1695,-1720,-1799,-5437,-1803,-1822,-1869,-1886,-5438,-1994,-2067,-5439,-2158,-2169, +-5440,-5441,-2196,-2201,-2203,-2209,-2217,-2237,-5442,-2238,-2252,-5443,-2256,-2290,-5444,-2296,-2298,-2309,-2348,-2366, +-2370,-5445,-5446,-5447,-2426,-5448,-5449,-2527], +[0,-18,-19,-676,-1994,-2426], +[1,3,1519], +[1,3,2972], +[0,-2501], +[0,-9219], +[0,-775,-1889,-3583], +[0,-23,-3219], +[1,3,1044], +[1,3,1396], +[1,3,1875], +[0,-519,-2541], +[0,-1654,-1941], +[0,-4633,-3445,-3100,-7566], +[0,-15394,-15395,-4276,-15396,-3162,-6935,-2494,-770,-15397,-15398], +[0,-3488,-681,-3489,-3518,-3492], +[0,-1934], +[1,3,623], +[1,24,645], +[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3960,-3262,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966, +-3967,-1965,-3968,-1966,-3969,-2063,-3970,-3971,-3108,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], +[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340], +[0,-2476,-3944,-3100,-4590,-3098,-4591,-4592,-4593,-4594], +[1,3,1380], +[0,-18,-19,-471,-498,-504,-577,-588,-590,-591,-592,-603,-604,-605,-606,-607,-608,-609,-5423,-626,-631,-660,-663,-670,-676, +-5426,-5429,-804,-830,-833,-836,-998,-5431,-1095,-1121,-5432,-1280,-1282,-1308,-5433,-1511,-1512,-1513,-1516,-1584,-1596, +-1615,-1648,-1679,-1684,-1695,-1720,-1799,-5437,-1803,-1822,-1869,-1886,-5438,-1994,-2169,-5441,-2201,-2203, +-2209,-2217,-2237,-5442,-2238,-2252,-2256,-2290,-5444,-2296,-2298,-2309,-2348,-2366,-2370,-5445,-5446,-5447,-2426,-5448, +-5449], +[0,-18,-19,-467,-471,-487,-498,-504,-6147,-575,-577,-588,-590,-591,-592,-6148,-603,-604,-605,-5421,-606,-607,-608,-609, +-610,-5422,-611,-612,-613,-6149,-5423,-625,-626,-6150,-631,-6151,-643,-660,-663,-5424,-670,-675,-676,-5425,-5426,-6152, +-6153,-5427,-5428,-5429,-804,-830,-833,-6154,-836,-842,-890,-998,-5430,-6155,-5431,-1019,-1020,-1035, +-1073,-1084,-6156,-1095,-1117,-1120,-1121,-5432,-1279,-1280,-1282,-1295,-1307,-1308,-1314,-6157,-5433,-1378,-6158,-6159, +-1511,-1512,-1513,-5434,-1516,-6160,-1584,-6161,-1596,-5435,-1615,-5436,-1648,-1677,-6162,-6163,-1678,-1679,-1684,-1695, +-6164,-1720,-1799,-5437,-1803,-1822,-6165,-1865,-1869,-1886,-5438,-1994,-2067,-5439,-6166,-2158,-2159,-2164,-2169,-5440, +-6167,-5441,-6168,-2196, +-2201,-2203,-2208,-2209,-2217,-2221,-2224,-2225,-2237,-5442,-6169,-2238,-2241,-2252,-5443,-2256,-6170,-2288,-2290,-5444, +-2296,-2298,-2309,-2315,-2348,-6171,-6172,-2366,-2370,-5445,-5446,-5447,-2426,-2431,-2458,-5448,-6173,-6174,-2496,-2497, +-5449,-6175,-2527], +[1,3,2681], +[0,-1654,-2198], +[0,-2319], +[0,-2460], +[0,-4864,-3214,-11467,-11468,-5270,-5271,-15723,-3634], +[1,3,308], +[0,-719], +[0,-4362], +[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, +-5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, +-5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189], +[1,3,1342], +[1,3,1453], +[1,3,1877], +[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], +[1,3,2054], +[0,-1754], +[0,-2471], +[0,-3214,-8058,-8059,-4004,-3476,-2006,-1062,-3634,-8060,-8061,-4873,-1654], +[0,-2250], +[0,-5334], +[0,-1202,-1654], +[0,-1406], +[0,-1931], +[0,-3037], +[0,-3037,-652,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-3161,-3481,-3098,-3162,-14919], +[0,-1967], +[0,-2410,-2409,-11398,-5406,-3691,-5728,-3690,-10796,-15307,-3445,-15308], +[1,3,10143], +[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, +-5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, +-5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15365], +[0,-3577,-3100,-2808,-5157,-5158,-659,-5159,-5160,-5161,-5155,-5164,-5165,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775, +-3264,-5180,-5181,-5182,-15367], +[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, +-5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, +-5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15368], +[1,3,10608], +[0,-23], +[0,-3510,-3488,-681,-3489,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161], +[1,24,583], +[0,-1599,-3670,-3671,-3672,-856,-3673,-3674,-3262], +[0,-3770,-906,-2006,-775,-3771], +[0,-2080], +[0,-519,-525,-4005,-4037,-1001,-4038,-4039,-4040,-1412,-1415,-1449,-1654,-4041,-4042,-1989,-4043,-4044,-4045,-2319,-2322, +-4004,-3634,-2410,-2490], +[0,-703], +[0,-475,-856,-3262,-4258,-4259,-3690,-4260,-4261], +[0,-3158,-3095,-3098,-3099,-3161,-3100,-2006,-3159,-3160], +[0,-5014,-5015,-5016,-5017,-5018,-5019,-5020,-5021,-5022,-5023,-5024], +[0,-2469,-3664], +[0,-3262,-5355,-2501,-2006,-5371,-5372,-1599,-3098,-856], +[0,-1654,-664], +[0,-3037,-519,-2384,-2541], +[0,-567], +[0,-2267], +[0,-2541], +[0,-7475], +[0,-3136,-3037,-427,-428,-932,-940,-7476,-948,-958,-1415,-1942,-2375,-2391,-2402,-2410], +[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-427], +[0,-2320,-2322], +[0,-932,-1654], +[0,-1645], +[0,-932,-937,-1001,-1654,-1788], +[0,-1127,-1134,-1144,-1143,-1146], +[0,-1127,-1134,-1143,-1144,-1146], +[0,-664,-1654], +[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788], +[0,-756,-932,-940,-1344,-1415,-1534,-1889,-1942], +[0,-3037,-2410], +[0,-664,-1654,-2379,-2501,-21,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40,-15393,-42], +[0,-8096,-14182,-652,-725,-1942,-2094,-2100,-2125,-2322,-2399,-2410,-2541], +[0,-12449,-12613,-13616,-13615,-8897,-2363,-3214,-2410,-2006,-2476,-2299,-9608], +[0,-3951,-2410], +[1,3,313], +[0,-3183,-525,-3184,-3185,-3186,-526,-3116], +[0,-3183,-525,-3205,-3206,-3184,-3207,-3208,-3209,-3185,-3186,-3210,-527,-3116], +[0,-24], +[0,-753,-2082], +[0,-3417,-3418,-3419,-3420,-3421,-3422,-3423,-714,-1028,-1039,-1107,-1442,-1449,-3424,-1600,-3245,-1601,-3425,-3426,-1602, +-3427,-3428,-3429,-3430,-1616,-1689,-3431,-3432,-1955,-1974,-1978,-3433,-3434,-2446,-3435,-2550], +[0,-2281,-3436,-2284], +[0,-687,-1599,-3437,-3438,-3328,-3439,-3440,-3441,-856,-3262], +[0,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161,-3510,-3488,-681,-3489], +[0,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161,-3488,-681,-3489,-3518,-3492], +[0,-739,-721,-687], +[0,-3499,-475,-856,-3098,-3551,-3552,-3015,-1599], +[0,-775,-2162,-3575,-3576,-3577,-3161,-3578], +[0,-3634,-3440,-793,-3635,-3636], +[0,-3812,-3813,-3814,-3815,-3816,-3817,-856,-3818], +[0,-3821,-3822,-3823,-3824,-3825,-3826,-2006,-2019], +[0,-3836], +[0,-3827,-3837,-3838,-3167,-3839,-620], +[0,-3136,-3037,-427,-428,-932,-933,-935,-940,-958,-959,-962,-967,-1415,-1424,-1942,-2375,-2376,-2379,-2402,-2410], +[0,-3161,-1334,-3690,-3578], +[0,-3037,-928,-1942,-2319,-2386,-2402], +[0,-687,-3958,-3999,-3099,-4000,-4001,-4002], +[0,-1535,-1536,-687,-4107,-4108,-4109,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], +[1,3,825], +[0,-2006,-3159,-3119,-1613], +[0,-4055,-3690,-4140,-4141,-4142,-4143,-4144,-2410,-3018,-3445,-3577], +[0,-4165,-856,-4100,-3485,-4156,-3215,-2250], +[0,-4328,-4329,-1105,-4330,-1599,-3437,-856,-4331,-3264,-1764], +[0,-4332,-4335,-4345,-4346,-4340,-4347], +[0,-4332,-4336,-4337,-4338,-4339,-4340,-4344], +[0,-234,-3044,-5011,-3738,-865,-985,-1771,-1788,-5012,-2376,-5013,-2392,-2469,-2503,-2509], +[0,-5096], +[0,-5141,-4601,-4602,-3578,-3445], +[0,-5140], +[0,-3497,-3496,-3161,-3264,-5246,-3862,-3495,-5247,-3494], +[0,-433,-436], +[0,-1788,-1654,-932,-821,-966,-958,-968,-943,-963,-974], +[0,-475,-3161,-4865,-5495], +[0,-3690,-489,-4100,-856,-3691,-5728], +[0,-1047], +[1,3,1788], +[0,-2155], +[0,-581,-5110,-6120,-3173,-6129,-6130,-770], +[1,3,1820], +[1,3,1876], +[1,3,1878], +[0,-1309], +[0,-1592,-1654,-664], +[0,-6657,-6658,-4868,-4004,-6659], +[0,-2231], +[0,-6689,-2115], +[0,-714], +[0,-3966,-3957,-6722,-687,-4002,-6723,-6724,-4112,-714,-4672], +[0,-3214,-6784,-711,-3116], +[0,-2337], +[0,-465,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], +[0,-711], +[0,-856,-1599], +[0,-865], +[0,-891], +[0,-5558,-3591,-633,-6340,-6408,-6916,-3870], +[0,-932,-8163,-727,-8164,-3214,-4900,-4795,-8165,-6434,-8166], +[0,-932,-5208,-3784], +[0,-429], +[0,-932,-5208,-3784,-3966,-3967,-3217,-7094,-6656,-1847,-6024,-4792], +[0,-932,-3784,-5208,-2006], +[0,-426], +[0,-1004,-3161,-6125,-3578,-1334,-3691,-5728,-3122,-3994,-3690], +[0,-1107,-5064,-5922,-8528], +[0,-1543,-2168], +[0,-1654,-2125,-2250], +[0,-1127,-1144], +[0,-510,-2125], +[0,-9219,-1654,-4004], +[0,-1127,-1132,-2541], +[0,-519,-1168,-1825,-2460,-2541], +[0,-2347], +[0,-1252,-1654,-2198,-2460], +[0,-2347,-1876], +[0,-1876,-2347], +[0,-519,-1825,-2460,-2541], +[0,-3037,-652,-1294,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-1696,-596], +[0,-707,-1510], +[0,-1580], +[0,-1386,-9944,-9945,-3162,-3994,-9946,-752,-5269,-1861], +[0,-519,-9982,-2384,-2541], +[0,-4004,-3634,-1412,-4873,-3440], +[0,-4034], +[0,-5092,-3264,-5388,-5387], +[0,-1452], +[0,-2518], +[0,-1646], +[0,-1523,-10558,-5827,-7685,-7773,-4634,-6005,-4055], +[0,-3326,-351,-3266,-652,-932,-943,-1600,-3668,-1654,-2127], +[0,-4792,-6137,-6138,-6134,-9405,-11114,-4004,-4215,-8611], +[0,-1127], +[0,-687,-3957,-11725,-3673,-1764,-11726,-11727,-8907,-10227,-5921,-4107], +[0,-3994,-1805,-1810,-11816,-11817,-11818,-11819,-11820,-11821,-7095,-4865,-3496,-7237,-7863,-2435,-11822,-7303,-4377, +-7091,-8421,-6599,-1958,-3258,-6656], +[0,-6748,-4377,-5829,-3215,-6747,-687,-3957], +[0,-1654,-664,-666], +[0,-1841,-6120,-8449,-3173,-8450,-6121,-1791,-11437], +[0,-2541,-519,-2384], +[0,-1859,-11878,-11613], +[1,3,6920], +[0,-523], +[0,-635,-1934], +[1,3,7131], +[1,3,7300], +[0,-2006,-12452], +[0,-2006,-2034,-5271,-5270,-3162,-7085,-12561,-12562], +[1,3,7605], +[0,-2006,-3122,-10470,-9843,-1306,-10606], +[1,3,7706], +[1,3,7712], +[0,-2384,-2541], +[0,-12913], +[0,-2127,-12913,-4795,-1764,-3209], +[0,-2006,-3161,-1713,-3578,-3844,-3966,-3577,-3445,-687,-2455], +[1,3,8114], +[1,3,8321], +[1,3,8373], +[0,-9214,-2359,-2330,-13745,-6909,-11846,-13746], +[0,-2410,-856,-3262], +[0,-2444], +[0,-3100,-3161,-6211,-14339,-14340,-2466], +[0,-14357], +[0,-3113,-7646,-7641,-3673,-687,-3970,-3108,-3960,-3262,-3976,-3994], +[0,-3214,-3100,-2006,-3481], +[1,24,9789], +[0,-2662], +[1,24,10023], +[0,-1386,-3161,-2006,-3162,-3994,-9946,-3995,-752,-3997,-3998], +[0,-15309], +[1,3,10151], +[0,-856,-3262,-2476], +[0,-15415,-15416,-15417,-15418,-11853,-10655,-15419,-6711,-15420,-15421,-4126,-15071,-2006,-15422,-475,-2476,-5270,-3162, +-11321,-15423,-15424], +[0,-4258,-7641,-3100,-4865,-6342,-9290], +[0,-15445,-3445], +[0,-3037,-652,-1942,-2094,-2100,-2384,-2399,-2410,-2541], +[0,-1368], +[0,-525,-2006,-1368,-3161,-4729,-9850,-9613], +[0,-15627,-14386,-15628,-15629,-15630,-4864,-3634,-3636], +[1,3,10609], +[0,-15699,-3967,-6209,-2410,-15700,-15701,-3161,-11894], +[1,3,10660], +[1,3,10677], +[1,3,10691], +[1,3,10722], +[0,-1313,-3445,-15751,-15752,-3161,-9840], +[0,-2006,-3161,-15804,-15805], +[0,-1415,-932,-2127,-2375,-1942,-2410,-3136,-940,-967,-1419,-428,-427], +[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3960,-3262,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966, +-3967,-1965,-3968,-1966,-3969,-2063,-3970,-3971,-3108,-3972,-3973,-3974,-3975,-3694,-2410,-3160,-3976,-2559,-3977], +[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, +-5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, +-5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364], +[1,3,10858], +[0,-231,-2900], +[1,24,11236], +[0,-1,-2,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-23,-24,-25,-26,-27,-28,-29,-30,-31,-32, +-33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62, +-63, +-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93, +-94,-95,-96,-97,-98,-99,-100,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-113,-114,-115,-116,-117,-118, +-119,-120,-121,-122,-123,-124,-125,-126,-127, +-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139,-140,-141,-142,-143,-144,-145,-146,-147,-148,-149,-150,-151, +-152,-153,-154,-155,-156,-157,-158,-159,-160,-161,-162,-163,-164,-165,-166,-167,-168,-169,-170,-171,-172,-173,-174,-175, +-176,-177,-178,-179,-180,-181,-182,-183,-184,-185,-186,-187,-188,-189,-190,-191, +-192,-193,-194,-195,-196,-197,-198,-199,-200,-201,-202,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-215, +-216,-217,-218,-219,-220,-221,-222,-223,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,-235,-236,-237,-238,-239, +-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255, +-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-274,-275,-276,-277,-278,-279, +-280,-281,-282,-283,-284,-285,-286,-287,-288,-289,-290,-291,-292,-293,-294,-295,-296,-297,-298,-299,-300,-301,-302,-303, +-304,-305,-306,-307,-308,-309,-310,-311,-312,-313,-314,-315,-316,-317,-318,-319, +-320,-321,-322,-323,-324,-325,-326,-327,-328,-329,-330,-331,-332,-333,-334,-335,-336,-337,-338,-339,-340,-341,-342,-343, +-344,-345,-346,-347,-348,-349,-350,-351,-352,-353,-354,-355,-356,-357,-358,-359,-360,-361,-362,-363,-364,-365,-366,-367, +-368,-369,-370,-371,-372,-373,-374,-375,-376,-377,-378,-379,-380,-381,-382,-383, +-384,-385,-386,-387,-388,-389,-390,-391,-392,-393,-394,-395,-396,-397,-398,-399,-400,-401,-402,-403,-404,-405,-406,-407, +-408,-409,-410,-411,-412,-413,-414,-415,-416,-417,-418,-419,-420,-421,-422,-423,-424,-425,-426,-427,-428,-429,-430,-431, +-432,-433,-434,-435,-436,-437,-438,-439,-440,-441,-442,-443,-444,-445,-446,-447, +-448,-449,-450,-451,-452,-453,-454,-455,-456,-457,-458,-459,-460,-461,-462,-463,-464,-465,-466,-467,-468,-469,-470,-471, +-472,-473,-474,-475,-476,-477,-478,-479,-480,-481,-482,-483,-484,-485,-486,-487,-488,-489,-490,-491,-492,-493,-494,-495, +-496,-497,-498,-499,-500,-501,-502,-503,-504,-505,-506,-507,-508,-509,-510,-511, +-512,-513,-514,-515,-516,-517,-518,-519,-520,-521,-522,-523,-524,-525,-526,-527,-528,-529,-530,-531,-532,-533,-534,-535, +-536,-537,-538,-539,-540,-541,-542,-543,-544,-545,-546,-547,-548,-549,-550,-551,-552,-553,-554,-555,-556,-557,-558,-559, +-560,-561,-562,-563,-564,-565,-566,-567,-568,-569,-570,-571,-572,-573,-574,-575, +-576,-577,-578,-579,-580,-581,-582,-583,-584,-585,-586,-587,-588,-589,-590,-591,-592,-593,-594,-595,-596,-597,-598,-599, +-600,-601,-602,-603,-604,-605,-606,-607,-608,-609,-610,-611,-612,-613,-614,-615,-616,-617,-618,-619,-620,-621,-622,-623, +-624,-625,-626,-627,-628,-629,-630,-631,-632,-633,-634,-635,-636,-637,-638,-639, +-640,-641,-642,-643,-644,-645,-646,-647,-648,-649,-650,-651,-652,-653,-654,-655,-656,-657,-658,-659,-660,-661,-662,-663, +-664,-665,-666,-667,-668,-669,-670,-671,-672,-673,-674,-675,-676,-677,-678,-679,-680,-681,-682,-683,-684,-685,-686,-687, +-688,-689,-690,-691,-692,-693,-694,-695,-696,-697,-698,-699,-700,-701,-702,-703, +-704,-705,-706,-707,-708,-709,-710,-711,-712,-713,-714,-715,-716,-717,-718,-719,-720,-721,-722,-723,-724,-725,-726,-727, +-728,-729,-730,-731,-732,-733,-734,-735,-736,-737,-738,-739,-740,-741,-742,-743,-744,-745,-746,-747,-748,-749,-750,-751, +-752,-753,-754,-755,-756,-757,-758,-759,-760,-761,-762,-763,-764,-765,-766,-767, +-768,-769,-770,-771,-772,-773,-774,-775,-776,-777,-778,-779,-780,-781,-782,-783,-784,-785,-786,-787,-788,-789,-790,-791, +-792,-793,-794,-795,-796,-797,-798,-799,-800,-801,-802,-803,-804,-805,-806,-807,-808,-809,-810,-811,-812,-813,-814,-815, +-816,-817,-818,-819,-820,-821,-822,-823,-824,-825,-826,-827,-828,-829,-830,-831, +-832,-833,-834,-835,-836,-837,-838,-839,-840,-841,-842,-843,-844,-845,-846,-847,-848,-849,-850,-851,-852,-853,-854,-855, +-856,-857,-858,-859,-860,-861,-862,-863,-864,-865,-866,-867,-868,-869,-870,-871,-872,-873,-874,-875,-876,-877,-878,-879, +-880,-881,-882,-883,-884,-885,-886,-887,-888,-889,-890,-891,-892,-893,-894,-895, +-896,-897,-898,-899,-900,-901,-902,-903,-904,-905,-906,-907,-908,-909,-910,-911,-912,-913,-914,-915,-916,-917,-918,-919, +-920,-921,-922,-923,-924,-925,-926,-927,-928,-929,-930,-931,-932,-933,-934,-935,-936,-937,-938,-939,-940,-941,-942,-943, +-944,-945,-946,-947,-948,-949,-950,-951,-952,-953,-954,-955,-956,-957,-958,-959, +-960,-961,-962,-963,-964,-965,-966,-967,-968,-969,-970,-971,-972,-973,-974,-975,-976,-977,-978,-979,-980,-981,-982,-983, +-984,-985,-986,-987,-988,-989,-990,-991,-992,-993,-994,-995,-996,-997,-998,-999,-1000,-1001,-1002,-1003,-1004,-1005, +-1006,-1007,-1008,-1009,-1010,-1011,-1012,-1013,-1014,-1015,-1016,-1017,-1018,-1019,-1020,-1021,-1022,-1023, +-1024,-1025,-1026,-1027,-1028,-1029,-1030,-1031,-1032,-1033,-1034,-1035,-1036,-1037,-1038,-1039,-1040,-1041,-1042,-1043, +-1044,-1045,-1046,-1047,-1048,-1049,-1050,-1051,-1052,-1053,-1054,-1055,-1056,-1057,-1058,-1059,-1060,-1061,-1062,-1063, +-1064,-1065,-1066,-1067,-1068,-1069,-1070,-1071,-1072,-1073,-1074,-1075,-1076,-1077,-1078,-1079,-1080,-1081,-1082,-1083, +-1084,-1085,-1086,-1087, +-1088,-1089,-1090,-1091,-1092,-1093,-1094,-1095,-1096,-1097,-1098,-1099,-1100,-1101,-1102,-1103,-1104,-1105,-1106,-1107, +-1108,-1109,-1110,-1111,-1112,-1113,-1114,-1115,-1116,-1117,-1118,-1119,-1120,-1121,-1122,-1123,-1124,-1125,-1126,-1127, +-1128,-1129,-1130,-1131,-1132,-1133,-1134,-1135,-1136,-1137,-1138,-1139,-1140,-1141,-1142,-1143,-1144,-1145,-1146,-1147, +-1148,-1149,-1150,-1151, +-1152,-1153,-1154,-1155,-1156,-1157,-1158,-1159,-1160,-1161,-1162,-1163,-1164,-1165,-1166,-1167,-1168,-1169,-1170,-1171, +-1172,-1173,-1174,-1175,-1176,-1177,-1178,-1179,-1180,-1181,-1182,-1183,-1184,-1185,-1186,-1187,-1188,-1189,-1190,-1191, +-1192,-1193,-1194,-1195,-1196,-1197,-1198,-1199,-1200,-1201,-1202,-1203,-1204,-1205,-1206,-1207,-1208,-1209,-1210,-1211, +-1212,-1213,-1214,-1215, +-1216,-1217,-1218,-1219,-1220,-1221,-1222,-1223,-1224,-1225,-1226,-1227,-1228,-1229,-1230,-1231,-1232,-1233,-1234,-1235, +-1236,-1237,-1238,-1239,-1240,-1241,-1242,-1243,-1244,-1245,-1246,-1247,-1248,-1249,-1250,-1251,-1252,-1253,-1254,-1255, +-1256,-1257,-1258,-1259,-1260,-1261,-1262,-1263,-1264,-1265,-1266,-1267,-1268,-1269,-1270,-1271,-1272,-1273,-1274,-1275, +-1276,-1277,-1278,-1279, +-1280,-1281,-1282,-1283,-1284,-1285,-1286,-1287,-1288,-1289,-1290,-1291,-1292,-1293,-1294,-1295,-1296,-1297,-1298,-1299, +-1300,-1301,-1302,-1303,-1304,-1305,-1306,-1307,-1308,-1309,-1310,-1311,-1312,-1313,-1314,-1315,-1316,-1317,-1318,-1319, +-1320,-1321,-1322,-1323,-1324,-1325,-1326,-1327,-1328,-1329,-1330,-1331,-1332,-1333,-1334,-1335,-1336,-1337,-1338,-1339, +-1340,-1341,-1342,-1343, +-1344,-1345,-1346,-1347,-1348,-1349,-1350,-1351,-1352,-1353,-1354,-1355,-1356,-1357,-1358,-1359,-1360,-1361,-1362,-1363, +-1364,-1365,-1366,-1367,-1368,-1369,-1370,-1371,-1372,-1373,-1374,-1375,-1376,-1377,-1378,-1379,-1380,-1381,-1382,-1383, +-1384,-1385,-1386,-1387,-1388,-1389,-1390,-1391,-1392,-1393,-1394,-1395,-1396,-1397,-1398,-1399,-1400,-1401,-1402,-1403, +-1404,-1405,-1406,-1407, +-1408,-1409,-1410,-1411,-1412,-1413,-1414,-1415,-1416,-1417,-1418,-1419,-1420,-1421,-1422,-1423,-1424,-1425,-1426,-1427, +-1428,-1429,-1430,-1431,-1432,-1433,-1434,-1435,-1436,-1437,-1438,-1439,-1440,-1441,-1442,-1443,-1444,-1445,-1446,-1447, +-1448,-1449,-1450,-1451,-1452,-1453,-1454,-1455,-1456,-1457,-1458,-1459,-1460,-1461,-1462,-1463,-1464,-1465,-1466,-1467, +-1468,-1469,-1470,-1471, +-1472,-1473,-1474,-1475,-1476,-1477,-1478,-1479,-1480,-1481,-1482,-1483,-1484,-1485,-1486,-1487,-1488,-1489,-1490,-1491, +-1492,-1493,-1494,-1495,-1496,-1497,-1498,-1499,-1500,-1501,-1502,-1503,-1504,-1505,-1506,-1507,-1508,-1509,-1510,-1511, +-1512,-1513,-1514,-1515,-1516,-1517,-1518,-1519,-1520,-1521,-1522,-1523,-1524,-1525,-1526,-1527,-1528,-1529,-1530,-1531, +-1532,-1533,-1534,-1535, +-1536,-1537,-1538,-1539,-1540,-1541,-1542,-1543,-1544,-1545,-1546,-1547,-1548,-1549,-1550,-1551,-1552,-1553,-1554,-1555, +-1556,-1557,-1558,-1559,-1560,-1561,-1562,-1563,-1564,-1565,-1566,-1567,-1568,-1569,-1570,-1571,-1572,-1573,-1574,-1575, +-1576,-1577,-1578,-1579,-1580,-1581,-1582,-1583,-1584,-1585,-1586,-1587,-1588,-1589,-1590,-1591,-1592,-1593,-1594,-1595, +-1596,-1597,-1598,-1599, +-1600,-1601,-1602,-1603,-1604,-1605,-1606,-1607,-1608,-1609,-1610,-1611,-1612,-1613,-1614,-1615,-1616,-1617,-1618,-1619, +-1620,-1621,-1622,-1623,-1624,-1625,-1626,-1627,-1628,-1629,-1630,-1631,-1632,-1633,-1634,-1635,-1636,-1637,-1638,-1639, +-1640,-1641,-1642,-1643,-1644,-1645,-1646,-1647,-1648,-1649,-1650,-1651,-1652,-1653,-1654,-1655,-1656,-1657,-1658,-1659, +-1660,-1661,-1662,-1663, +-1664,-1665,-1666,-1667,-1668,-1669,-1670,-1671,-1672,-1673,-1674,-1675,-1676,-1677,-1678,-1679,-1680,-1681,-1682,-1683, +-1684,-1685,-1686,-1687,-1688,-1689,-1690,-1691,-1692,-1693,-1694,-1695,-1696,-1697,-1698,-1699,-1700,-1701,-1702,-1703, +-1704,-1705,-1706,-1707,-1708,-1709,-1710,-1711,-1712,-1713,-1714,-1715,-1716,-1717,-1718,-1719,-1720,-1721,-1722,-1723, +-1724,-1725,-1726,-1727, +-1728,-1729,-1730,-1731,-1732,-1733,-1734,-1735,-1736,-1737,-1738,-1739,-1740,-1741,-1742,-1743,-1744,-1745,-1746,-1747, +-1748,-1749,-1750,-1751,-1752,-1753,-1754,-1755,-1756,-1757,-1758,-1759,-1760,-1761,-1762,-1763,-1764,-1765,-1766,-1767, +-1768,-1769,-1770,-1771,-1772,-1773,-1774,-1775,-1776,-1777,-1778,-1779,-1780,-1781,-1782,-1783,-1784,-1785,-1786,-1787, +-1788,-1789,-1790,-1791, +-1792,-1793,-1794,-1795,-1796,-1797,-1798,-1799,-1800,-1801,-1802,-1803,-1804,-1805,-1806,-1807,-1808,-1809,-1810,-1811, +-1812,-1813,-1814,-1815,-1816,-1817,-1818,-1819,-1820,-1821,-1822,-1823,-1824,-1825,-1826,-1827,-1828,-1829,-1830,-1831, +-1832,-1833,-1834,-1835,-1836,-1837,-1838,-1839,-1840,-1841,-1842,-1843,-1844,-1845,-1846,-1847,-1848,-1849,-1850,-1851, +-1852,-1853,-1854,-1855, +-1856,-1857,-1858,-1859,-1860,-1861,-1862,-1863,-1864,-1865,-1866,-1867,-1868,-1869,-1870,-1871,-1872,-1873,-1874,-1875, +-1876,-1877,-1878,-1879,-1880,-1881,-1882,-1883,-1884,-1885,-1886,-1887,-1888,-1889,-1890,-1891,-1892,-1893,-1894,-1895, +-1896,-1897,-1898,-1899,-1900,-1901,-1902,-1903,-1904,-1905,-1906,-1907,-1908,-1909,-1910,-1911,-1912,-1913,-1914,-1915, +-1916,-1917,-1918,-1919, +-1920,-1921,-1922,-1923,-1924,-1925,-1926,-1927,-1928,-1929,-1930,-1931,-1932,-1933,-1934,-1935,-1936,-1937,-1938,-1939, +-1940,-1941,-1942,-1943,-1944,-1945,-1946,-1947,-1948,-1949,-1950,-1951,-1952,-1953,-1954,-1955,-1956,-1957,-1958,-1959, +-1960,-1961,-1962,-1963,-1964,-1965,-1966,-1967,-1968,-1969,-1970,-1971,-1972,-1973,-1974,-1975,-1976,-1977,-1978,-1979, +-1980,-1981,-1982,-1983, +-1984,-1985,-1986,-1987,-1988,-1989,-1990,-1991,-1992,-1993,-1994,-1995,-1996,-1997,-1998,-1999,-2000,-2001,-2002,-2003, +-2004,-2005,-2006,-2007,-2008,-2009,-2010,-2011,-2012,-2013,-2014,-2015,-2016,-2017,-2018,-2019,-2020,-2021,-2022,-2023, +-2024,-2025,-2026,-2027,-2028,-2029,-2030,-2031,-2032,-2033,-2034,-2035,-2036,-2037,-2038,-2039,-2040,-2041,-2042,-2043, +-2044,-2045,-2046,-2047, +-2048,-2049,-2050,-2051,-2052,-2053,-2054,-2055,-2056,-2057,-2058,-2059,-2060,-2061,-2062,-2063,-2064,-2065,-2066,-2067, +-2068,-2069,-2070,-2071,-2072,-2073,-2074,-2075,-2076,-2077,-2078,-2079,-2080,-2081,-2082,-2083,-2084,-2085,-2086,-2087, +-2088,-2089,-2090,-2091,-2092,-2093,-2094,-2095,-2096,-2097,-2098,-2099,-2100,-2101,-2102,-2103,-2104,-2105,-2106,-2107, +-2108,-2109,-2110,-2111, +-2112,-2113,-2114,-2115,-2116,-2117,-2118,-2119,-2120,-2121,-2122,-2123,-2124,-2125,-2126,-2127,-2128,-2129,-2130,-2131, +-2132,-2133,-2134,-2135,-2136,-2137,-2138,-2139,-2140,-2141,-2142,-2143,-2144,-2145,-2146,-2147,-2148,-2149,-2150,-2151, +-2152,-2153,-2154,-2155,-2156,-2157,-2158,-2159,-2160,-2161,-2162,-2163,-2164,-2165,-2166,-2167,-2168,-2169,-2170,-2171, +-2172,-2173,-2174,-2175, +-2176,-2177,-2178,-2179,-2180,-2181,-2182,-2183,-2184,-2185,-2186,-2187,-2188,-2189,-2190,-2191,-2192,-2193,-2194,-2195, +-2196,-2197,-2198,-2199,-2200,-2201,-2202,-2203,-2204,-2205,-2206,-2207,-2208,-2209,-2210,-2211,-2212,-2213,-2214,-2215, +-2216,-2217,-2218,-2219,-2220,-2221,-2222,-2223,-2224,-2225,-2226,-2227,-2228,-2229,-2230,-2231,-2232,-2233,-2234,-2235, +-2236,-2237,-2238,-2239, +-2240,-2241,-2242,-2243,-2244,-2245,-2246,-2247,-2248,-2249,-2250,-2251,-2252,-2253,-2254,-2255,-2256,-2257,-2258,-2259, +-2260,-2261,-2262,-2263,-2264,-2265,-2266,-2267,-2268,-2269,-2270,-2271,-2272,-2273,-2274,-2275,-2276,-2277,-2278,-2279, +-2280,-2281,-2282,-2283,-2284,-2285,-2286,-2287,-2288,-2289,-2290,-2291,-2292,-2293,-2294,-2295,-2296,-2297,-2298,-2299, +-2300,-2301,-2302,-2303, +-2304,-2305,-2306,-2307,-2308,-2309,-2310,-2311,-2312,-2313,-2314,-2315,-2316,-2317,-2318,-2319,-2320,-2321,-2322,-2323, +-2324,-2325,-2326,-2327,-2328,-2329,-2330,-2331,-2332,-2333,-2334,-2335,-2336,-2337,-2338,-2339,-2340,-2341,-2342,-2343, +-2344,-2345,-2346,-2347,-2348,-2349,-2350,-2351,-2352,-2353,-2354,-2355,-2356,-2357,-2358,-2359,-2360,-2361,-2362,-2363, +-2364,-2365,-2366,-2367, +-2368,-2369,-2370,-2371,-2372,-2373,-2374,-2375,-2376,-2377,-2378,-2379,-2380,-2381,-2382,-2383,-2384,-2385,-2386,-2387, +-2388,-2389,-2390,-2391,-2392,-2393,-2394,-2395,-2396,-2397,-2398,-2399,-2400,-2401,-2402,-2403,-2404,-2405,-2406,-2407, +-2408,-2409,-2410,-2411,-2412,-2413,-2414,-2415,-2416,-2417,-2418,-2419,-2420,-2421,-2422,-2423,-2424,-2425,-2426,-2427, +-2428,-2429,-2430,-2431, +-2432,-2433,-2434,-2435,-2436,-2437,-2438,-2439,-2440,-2441,-2442,-2443,-2444,-2445,-2446,-2447,-2448,-2449,-2450,-2451, +-2452,-2453,-2454,-2455,-2456,-2457,-2458,-2459,-2460,-2461,-2462,-2463,-2464,-2465,-2466,-2467,-2468,-2469,-2470,-2471, +-2472,-2473,-2474,-2475,-2476,-2477,-2478,-2479,-2480,-2481,-2482,-2483,-2484,-2485,-2486,-2487,-2488,-2489,-2490,-2491, +-2492,-2493,-2494,-2495, +-2496,-2497,-2498,-2499,-2500,-2501,-2502,-2503,-2504,-2505,-2506,-2507,-2508,-2509,-2510,-2511,-2512,-2513,-2514,-2515, +-2516,-2517,-2518,-2519,-2520,-2521,-2522,-2523,-2524,-2525,-2526,-2527,-2528,-2529,-2530,-2531,-2532,-2533,-2534,-2535, +-2536,-2537,-2538,-2539,-2540,-2541,-2542,-2543,-2544,-2545,-2546,-2547,-2548,-2549,-2550,-2551,-2552,-2553,-2554,-2555, +-2556,-2557,-2558,-2559, +-2560,-2561,-2562,-2563,-2564,-2565,-2566,-2567,-2568,-2569,-2570,-2571,-2572,-2573,-2574,-2575,-2576,-2577,-2578,-2579, +-2580,-2581,-2582,-2583,-2584,-2585,-2586,-2587,-2588,-2589,-2590,-2591,-2592,-2593,-2594,-2595,-2596,-2597,-2598,-2599, +-2600,-2601,-2602,-2603,-2604,-2605,-2606,-2607,-2608,-2609,-2610,-2611,-2612,-2613,-2614,-2615,-2616,-2617,-2618,-2619, +-2620,-2621,-2622,-2623, +-2624,-2625,-2626,-2627,-2628,-2629,-2630,-2631,-2632,-2633,-2634,-2635,-2636,-2637,-2638,-2639,-2640,-2641,-2642,-2643, +-2644,-2645,-2646,-2647,-2648,-2649,-2650,-2651,-2652,-2653,-2654,-2655,-2656,-2657,-2658,-2659,-2660,-2661,-2662,-2663, +-2664,-2665,-2666,-2667,-2668,-2669,-2670,-2671,-2672,-2673,-2674,-2675,-2676,-2677,-2678,-2679,-2680,-2681,-2682,-2683, +-2684,-2685,-2686,-2687, +-2688,-2689,-2690,-2691,-2692,-2693,-2694,-2695,-2696,-2697,-2698,-2699,-2700,-2701,-2702,-2703,-2704,-2705,-2706,-2707, +-2708,-2709,-2710,-2711,-2712,-2713,-2714,-2715,-2716,-2717,-2718,-2719,-2720,-2721,-2722,-2723,-2724,-2725,-2726,-2727, +-2728,-2729,-2730,-2731,-2732,-2733,-2734,-2735,-2736,-2737,-2738,-2739,-2740,-2741,-2742,-2743,-2744,-2745,-2746,-2747, +-2748,-2749,-2750,-2751, +-2752,-2753,-2754,-2755,-2756,-2757,-2758,-2759,-2760,-2761,-2762,-2763,-2764,-2765,-2766,-2767,-2768,-2769,-2770,-2771, +-2772,-2773,-2774,-2775,-2776,-2777,-2778,-2779,-2780,-2781,-2782,-2783,-2784,-2785,-2786,-2787,-2788,-2789,-2790,-2791, +-2792,-2793,-2794,-2795,-2796,-2797,-2798,-2799,-2800,-2801,-2802,-2803,-2804,-2805,-2806,-2807,-2808,-2809,-2810,-2811, +-2812,-2813,-2814,-2815, +-2816,-2817,-2818,-2819,-2820,-2821,-2822,-2823,-2824,-2825,-2826,-2827,-2828,-2829,-2830,-2831,-2832,-2833,-2834,-2835, +-2836,-2837,-2838,-2839,-2840,-2841,-2842,-2843,-2844,-2845,-2846,-2847,-2848,-2849,-2850,-2851,-2852,-2853,-2854,-2855, +-2856,-2857,-2858,-2859,-2860,-2861,-2862,-2863,-2864,-2865,-2866,-2867,-2868,-2869,-2870,-2871,-2872,-2873,-2874,-2875, +-2876,-2877,-2878,-2879, +-2880,-2881,-2882,-2883,-2884,-2885,-2886,-2887,-2888,-2889,-2890,-2891,-2892,-2893,-2894,-2895,-2896,-2897,-2898,-2899, +-2900,-2901,-2902,-2903,-2904,-2905,-2906,-2907,-2908,-2909,-2910,-2911,-2912,-2913,-2914,-2915,-2916,-2917,-2918,-2919, +-2920,-2921,-2922,-2923,-2924,-2925,-2926,-2927,-2928,-2929,-2930,-2931,-2932,-2933,-2934,-2935,-2936,-2937,-2938,-2939, +-2940,-2941,-2942,-2943, +-2944,-2945,-2946,-2947,-2948,-2949,-2950,-2951,-2952,-2953,-2954,-2955,-2956,-2957,-2958,-2959,-2960,-2961,-2962,-2963, +-2964,-2965,-2966,-2967,-2968,-2969,-2970,-2971,-2972,-2973,-2974,-2975,-2976,-2977,-2978,-2979,-2980,-2981,-2982,-2983, +-2984,-2985,-2986,-2987,-2988,-2989,-2990,-2991,-2992,-2993,-2994,-2995,-2996,-2997,-2998,-2999,-3000,-3001,-3002,-3003, +-3004,-3005,-3006,-3007, +-3008,-3009,-3010,-3011,-3012,-3013,-3014], +[0,295,300,304,74,309,136,136,314,74,318,74,321,324,74,326,329,333,338,343,348,353,357,361,365,367,372,375,380,384,389, +393,398,402,407,409,412,416,418,422,425,429,432,436,17,441,444,447,451,453,458,462,467,470,474,477,480,483,486,489,492, +495,498,501, +504,507,510,513,516,519,522,525,528,531,534,537,540,543,546,550,553,556,559,562,565,569,572,576,579,103,32,103,587,591, +594,597,600,604,607,610,614,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,13,13,12,17, +12,12,26,17,13,12,12,12,12,12,12,13,13,13,61,17,12,12,17,12,17,13,624,628,633,637,641,62,17,647,652,657,662,13,666,670, +12,12,12,26,12,12,12,12,12,26,12,12,12,17,43,12,12,12,26,12,12,12,26,12,13,675,679,682, +686,690,693,696,698,700,704,707,712,716,721,726,730,12,12,12,12,734,12,12,12,12,26,13,12,12,12,12,12,12,12,12,17,12,737, +742,747,751,756,761,765,770,772,776,781,785,788,793,798,12,61,802,806,26,13,811,32,814,818,822,159,827,830,834, +838,842,845,848,851,854,858,863,866,870,874,879,883,886,891,894,898,902,906,910,915,918,921,924,929,933,937,940,944,32, +948,32,62,32,951,954,957,960,964,968,971,975,979,982,985,988,992,996,1001,1006,1011,1014,1018,1021,1024,1027,1031,1035, +1039,12,12,13,12,13, +17,12,12,52,12,12,43,12,17,12,12,12,12,12,12,52,12,26,26,12,12,12,1045,1049,1053,1057,1061,1066,1070,1075,1080,1085,1090, +1095,1100,1105,1110,1115,1119,1124,1128,1131,1134,1138,1143,1148,1153,1158,17,17,13,1163,1168,1171,12,12,12,12,12,12,12, +12,12,12, +12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,1173,1178,1181,1185,1190,1195,1200,1205,1210,1214,1218,1222,1225,1228, +1232,1235,1238,1242,1246,1250,1253,1257,1261,1264,1266,52,1270,1275,1279,1283,1288,1291,1294,1298,1301,1305,1308,1313, +1318,1323,1328,1333,1338,12,12,12,78, +13,17,26,12,13,12,12,78,17,1343,1347,1352,1356,43,1360,1363,1368,1372,1375,66,1381,1386,1391,53,1397,1401,1406,1410,1412, +1415,1419,1422,1426,1430,1434,1438,1441,1446,1450,79,1454,1459,1463,1468,1473,1476,1480,1484,1488,1492,53,1497,1502,1507, +1512,1515,46,1520,1525,1528,1533,1536,1541,1545, +1549,1553,1557,1560,1565,1570,1575,1579,1584,1589,1594,1598,1603,13,1608,1612,1616,1620,1624,1627,1630,1633,1637,1641, +1645,1650,1652,1657,1662,1667,1672,1675,1677,1679,1682,1685,1690,1693,1697,1699,1702,1705,1709,1712,1714,1717,1722,1726, +1730,1733,1736,1739,1742,1745,1748,1752,1755,1758,1762,1766,1769,1773,1778,30, +1784,176,1789,1793,1797,1802,1806,1809,1812,1817,179,1821,20,1827,18,46,18,1833,1837,1842,1845,1849,1853,1858,1863,1868, +1871,46,20,20,46,53,53,54,180,80,181,80,1879,1883,1887,1891,1894,1899,1903,1906,1910,1913,17,30,20,1918,1923,1928,1933, +20,1937,1942,1947,1952,1956,1961,1965,1968, +1973,1978,1982,80,1987,1990,1994,1999,2003,2008,2013,2018,2022,2027,2030,2035,2040,2043,2046,2049,82,2055,2059,18,2062, +2066,2071,2074,2078,2082,46,2086,2089,2093,2098,30,13,2103,2108,2113,2118,2121,2125,2129,2133,2138,2141,2144,2148,2152, +2157,2162,2165,2169,2173,2177,2180,2184,2188,2193,2198,2202,2206,2208, +2212,2216,2220,2225,2229,2234,2239,2242,2245,2250,2253,2257,2262,2266,2270,2275,2279,2284,2288,2292,2295,2299,2302,2307, +2312,2316,2321,2324,2327,2332,2336,2340,2344,2348,103,2352,2356,2360,2364,2368,2372,2376,2381,2384,2389,2394,2398,2401, +2406,2411,2414,2419,2424,2429,2434,2439,2442,2447,2451,2456,2461,2464,2468,2472, +2477,2482,13,2487,2491,2494,2498,2503,2508,2512,2516,2521,2526,2531,2536,2540,2544,2549,2554,2558,2563,2568,2572,2576, +2580,2584,2588,2592,2596,2600,2605,2610,2615,2619,2624,2628,82,2631,2634,2638,2641,2644,2648,2653,2656,2661,2664,2669, +2673,2677,69,2682,2686,2690,2695,2698,2702,2707,2712,2717,2722,2726,54,2730, +2733,20,2738,2742,20,2747,2750,2754,2757,2762,30,2765,2769,2773,2776,2780,2785,2790,2794,2797,2802,2807,2811,2815,2819, +2824,2829,2834,2838,2843,2848,2852,2857,2861,2865,2869,2874,2879,2884,2889,2894,2898,2903,2908,2911,2915,2920,2925,2929, +2933,2937,2941,2944,2948,2952,2957,2962,2967,47,2973,2976,2981,2986,2990, +2993,2997,26,3002,3007,3012,3015,3020,3025,3030,3035,3037,3041,3045,3049,3054,3059,3063,3066,3070,3074,3078,3082,3086, +3090,3095,3100,3105,3109,3113,3117,3121,52,3125,3129,3132,3136,3141,3145,3149,3154,3157,3161,3166,3170,3173,3176,3180, +3184,3188,3193,3197,3202,3206,3211,3216,3221,3226,3229,3234,3238,3243,3248,3253, +3256,3261,3266,3271,3276,3280,3284,3288,3292,3297,3301,3305,3310,3315,3319,3322,3327,3332,3337,3342,3346,3351,3356,3360, +3363,3367,3370,3375,3379,3382,3385,3389,3394,3399,3404,3409,3413,3417,54,3421,3426,3430,3434,13,3438,3442,3446,3451,3456, +3461,3466,3470,3475,3479,3484,3489,3493,3498,3502,79,79,3507,3510,3515, +3520,3524,3528,3532,3535,3540,3543,3548,3552,3557,3561,47,3565,3569,3573,3577,3581,3585,3588,3592,3597,3601,3604,3609, +3614,12,3619,3624,3629,3633,3637,3641,3644,3648,3652,3657,3660,3665,3670,3675,3679,3682,3686,3691,3696,3701,3705,3710, +3715,30,3719,3724,13,3729,3734,3738,3743,3747,3751,3755,47,3759,3763,3767, +3770,3775,3778,3783,3788,3793,3797,18,3801,3804,3807,3810,3814,3819,3823,3827,3832,43,3837,3841,3845,3849,3852,3856,3861, +3866,3871,3876,3881,66,3886,3890,66,20,3894,3897,3900,3903,3908,3912,3917,3922,3925,3930,3934,3937,3942,3946,3951,3954, +3959,3963,3967,3971,3975,3980,3983,3987,3991,3996,4000,4003,4008,4013, +4018,4023,4028,4033,4037,4041,4045,4050,4053,4057,4062,4066,4069,4074,4079,4084,4088,4093,4097,4102,4107,4112,4116,4121, +4125,4130,4135,4139,4143,4147,4151,4156,4160,4165,4168,4173,4177,4181,4185,4190,4194,4199,4204,4209,4214,4219,4224,4229, +4234,4237,4241,4245,4250,4255,4260,4265,4270,4275,4280,4285,4290,4295,4300,4304, +4309,4313,4318,4323,4328,4333,4338,4343,4348,4352,4357,4362,4367,4372,4376,4381,4385,4390,4394,4399,4404,4409,4413,4418, +4423,4428,4433,4438,4441,4446,4451,4455,4460,4465,4469,4474,4478,4483,4487,4491,4496,4501,4506,4511,4516,4521,4526,4530, +4534,4539,4544,4548,4553,4558,4562,4567,4572,4577,4582,4587,4591,4596,4600,47, +18,4605,18,4608,4612,4615,4620,4625,4630,4635,4640,4644,4649,4652,4656,30,4661,4665,4669,4673,4676,4679,4682,4687,4691, +4695,4697,180,18,4700,4703,4708,4712,4716,30,4720,4724,4728,4733,4737,4742,4746,4750,4755,4760,4765,4770,4775,4779,4783, +4787,4791,4796,4801,13,4806,4810,4814,4819,4824,4829,4833,4837,4840, +4845,4848,4852,4856,4859,4864,4868,4872,4877,4882,4886,43,4890,4895,4900,4904,4908,4912,4915,4919,4924,13,4929,4932,4937, +4942,4946,4949,26,4951,4956,4960,4963,4967,80,4972,4976,4980,4984,4988,4992,4996,5001,5005,5010,5015,5018,5022,5026,5030, +5034,5039,5042,5046,17,5050,17,5054,5058,5061,5065,5069,5074,5077, +5082,5086,5090,5095,5100,5104,5107,5111,5114,5119,5123,5126,5129,5133,5137,5142,5147,5151,5154,5158,5162,5166,5170,5175, +5178,5181,5186,5191,5196,5199,5202,5206,5210,5215,5219,5224,5229,5233,5238,5243,5247,5251,5255,5259,5263,5267,5271,5276, +5279,5282,5287,5292,5295,5299,5302,5306,5310,5315,5320,5324,5328,5333,5337,5341, +5346,5351,5356,5359,5363,5368,5372,5377,5382,5386,5391,5395,5400,5405,5409,5414,5418,5423,5426,5431,5435,5439,5442,5445, +5450,5454,5459,5464,5468,5472,5477,5482,5487,5491,5496,5501,5506,5511,5516,46,20,54,5521,5526,20,5530,5534,5538,5542, +5546,5551,5555,5559,5564,5568,5572,5576,5581,5585,5589,5594,5598,5601,5606, +5611,5615,5619,5624,5629,5633,5638,5643,5646,5651,5656,5659,5664,5667,5670,5673,5676,5679,5682,5685,5688,5691,5694,5697, +5700,5703,5706,5709,5712,5715,5718,5721,5724,5727,5730,5734,5737,5740,5745,5750,5755,5760,5764,5768,5773,5777,5782,5786, +18,5790,5795,5800,5805,5810,5815,5820,5824,5827,5832,5837,20,5841,5844,5848, +5852,5857,5861,5864,5867,5872,5876,5880,5884,5889,5894,5898,5902,5905,5908,18,5913,5917,5921,5926,5931,13,5935,5939,5944, +5948,5952,5957,5961,5964,5966,5970,5974,5977,5982,5985,5989,5993,5998,6002,6007,6011,6015,6018,6023,6028,6032,69,20,6036, +6041,6045,6049,6053,6058,6063,6068,6073,6076,6080,6085,6089,6092,6096, +6100,6104,6109,6113,6118,6123,6127,6132,6137,6142,6146,6150,6155,47,6160,20,6162,6167,6170,6175,82,6180,6185,6189,6194, +6199,6203,6207,6211,6216,6221,53,6225,6228,6232,6237,26,6240,6245,6250,6255,6260,6264,6268,6273,6278,6282,6287,6292,6297, +6300,6303,6307,6312,6315,6320,82,6325,6330,6334,6338,6343,6347,6352, +6355,6360,6365,6369,6374,6379,6384,6389,6394,6399,6404,6409,6411,6416,6421,6425,6430,6435,6439,6443,6447,6451,6456,6461, +6466,6470,6475,6478,6483,6487,6491,6494,6498,6501,61,6504,6509,6514,6519,6523,6526,6531,6535,6540,6544,6548,6552,6556, +6561,6566,6571,6575,6578,6583,6588,6592,6597,6600,6604,6607,6611,6616,6621,6626, +6628,6632,6636,6640,6644,6648,6653,18,6658,6662,6666,18,6671,6676,6679,6684,6689,6694,6699,6701,6705,6708,6712,6717,6722, +6727,6732,6737,6740,6744,20,6748,6751,6756,6761,6765,6770,6774,6779,6784,6789,6794,6798,6802,6806,6811,6815,6820,6824, +6827,6832,6837,6841,6844,6848,6851,6855,6858,6861,6864,6868,6871,6875,6880, +6885,6888,6893,6898,6902,6906,6911,6913,6916,240,6921,6925,6930,18,6934,6939,6944,6947,6950,6953,6958,6963,6967,6971, +6975,6979,6984,78,6987,6991,18,6995,6999,7004,7008,7013,7018,7022,7027,7030,7035,7039,7043,7047,7051,7054,7057,7061,7065, +7070,7074,7079,7083,7088,7092,7097,7100,7103,7107,7112,7116,7119,7123,7128, +243,7132,7134,7136,243,7139,7142,7146,7150,7154,7157,7160,7164,7169,7171,7175,7179,7184,7188,7193,7198,7202,52,7205,7210, +7214,7219,7223,7227,7230,7235,7239,7243,7247,7252,7257,7261,7266,7268,7272,7276,7280,7284,7288,7292,7295,244,7304,7308, +7312,7317,7322,7327,7331,7336,7341,7344,7348,7352,7356,7360,7364,7367,7370, +7375,7380,7384,7388,7391,7396,7401,7406,7411,7416,7420,7424,7428,7431,7434,7439,7443,7446,7450,7455,7460,12,7465,7467, +7470,7474,7479,7482,7486,7491,7496,7501,7505,7509,7513,7517,7520,7525,7529,7534,7538,7543,13,7548,7552,7556,7558,7561, +7566,7571,7576,7579,7583,7588,7592,7596,7600,247,7606,7611,7615,7619,7623,7626, +7631,7636,7641,7646,7650,7654,7658,7663,7667,7672,7677,7682,7686,7690,7694,7699,7703,249,7707,250,7713,7717,7721,7724, +7728,7732,7737,7741,7746,7751,7756,7761,7765,7769,7773,7776,7780,7785,7790,7795,7799,7804,7809,7813,7818,7823,7827,7831, +7836,7841,7846,7850,7855,7860,7865,7870,7873,7878,7883,7888,17,7893,7896,17, +7900,7904,7908,7913,7916,7920,7925,7930,7933,7937,7941,7944,7949,7953,7958,7963,7967,7972,7976,7981,7985,7990,7994,7999, +8003,8007,8011,8015,8020,8025,8030,8035,8040,8045,8050,8053,8057,8061,8066,8071,8075,8078,61,8082,8085,8090,181,47,8095, +8100,8105,8109,255,8115,247,8118,8123,18,8127,8132,8136,8139,8144,8149, +8153,8158,8161,8165,8170,8174,8179,8183,8187,8192,8197,8201,13,8204,8209,8214,8217,8221,8226,8230,250,8235,8240,8245, +8249,18,8254,18,8258,8263,244,8268,240,20,8272,8277,8281,8286,8289,8293,8296,20,8301,8304,8309,30,8313,8317,256,47,8322, +8326,8331,8335,8339,8344,8347,8350,8354,8358,8361,20,18,8366, +8370,30,257,8374,8377,8382,8387,8392,8397,8401,8404,8409,46,8414,8419,8424,18,8428,8433,8438,8441,8443,8447,8451,8455, +8458,8462,8467,8471,8476,8480,8483,8487,8491,8496,8501,8504,8509,8514,8519,8524,8528,8533,8538,8542,8547,8552,8556,30, +8561,20,8564,8569,8573,8578,257,54,8583,18,8587,8592,8597,8601,8606, +8611,8616,8621,8626,8629,54,8634,8639,8642,8647,8650,255,8653,8658,8662,8665,8669,8674,8677,8682,8686,8691,8695,8699, +8703,8707,8712,8715,8720,8724,8728,8733,249,8738,8743,8748,8753,8758,8763,8768,8772,8776,8780,8784,176,8789,8792,8795, +8799,8804,8808,8811,8815,8818,8822,8825,8828,8833,8837,8841,8844,8849,18,69, +8854,8859,53,8862,8865,8870,8875,8878,8883,8888,8893,8898,8903,8908,8911,8916,8920,8925,8929,8934,8937,8942,8946,8950, +8954,8958,8963,8967,8971,8976,8981,8986,8989,8994,8998,9002,9007,9010,9013,9018,9023,9026,9030,9034,9038,9043,9048,9053, +9058,9062,9067,9072,9076,9080,9083,9087,9091,9095,9100,9104,9109,9113,9118,30, +9121,9125,9130,9133,9138,9142,9146,9151,43,9156,9161,9166,9170,9174,9176,9180,9185,9189,9194,9198,9202,9207,9211,9215, +9219,9223,66,9226,9230,9235,9240,9245,9250,9253,9258,9262,9267,9272,9277,9282,9286,9291,9293,9297,9300,9304,9308,9312, +9316,9321,9325,9329,9333,9337,9341,9344,9348,9352,9356,9360,9365,9369,9374,69, +66,256,9379,179,69,9383,9387,9392,9397,9402,9406,9411,9415,9420,9424,9428,9432,9437,9442,9447,9451,9454,9458,9461,9465, +9470,9475,9480,9485,9488,9491,79,9496,17,9501,9505,9509,9514,9519,9524,9529,9534,9537,9540,9544,9547,9552,9556,9561,9566, +9570,9573,9577,9581,9586,9590,52,9594,9598,9601,9606,9610,9614,9617, +9622,9626,9630,9635,9639,9642,9647,9652,9655,9660,9664,9667,9671,9676,9681,9686,9690,9694,9698,9703,9706,9711,9714,9718, +9722,9726,9730,9735,9739,9742,9747,9751,9756,9761,9765,9770,9774,9779,9784,32,32,32,62,32,265,265,9791,9794,9798,9802, +9806,62,62,32,9811,13,17,13,26,9815,13,61,9818,9823, +9827,9831,9836,9840,9843,9848,9852,9857,9862,9865,9869,9873,9877,9882,9887,9891,9895,9899,9904,9909,9914,9919,9923,9928, +9933,9938,9942,9945,9948,9952,9956,9960,9963,9967,9970,9973,9977,9980,159,9983,9986,9991,9996,10000,10005,10010,10013, +10016,10020,267,10025,10028,10032,10037,10041,10046,10050,10054,10059,10064,10068,10073,10078,10082, +10086,10090,10094,10098,10101,10103,10108,10112,10117,43,10121,10126,10131,10136,10139,96,10144,10147,10149,270,10152, +10154,10159,10162,10166,10169,10172,10175,10178,10181,10184,10188,10191,10195,10198,10202,10206,10209,10213,10215,10218, +10222,10226,10229,10234,10238,10242,10247,10251,10254,10257,10260,10264,10266,10270,10273,10277,10281,10285,10290,10295, +10299,10303,10307, +10311,10315,10319,10321,10324,10328,10333,10338,10342,10347,10351,10354,10359,10362,10366,10369,10372,10377,10380,10385, +10389,10393,10396,10399,10402,10405,10409,10414,10418,10423,10428,10433,10438,10443,10446,10449,10453,10458,10462,10465, +10469,10473,10478,10483,10487,10492,10496,10500,10503,10507,10511,10516,10521,10526,10531,10536,10540,10543,10546,10549, +10553,10558,10563,10567, +10571,10574,10578,10583,10588,10591,10595,10599,10602,10605,100,279,270,10610,10615,10620,10625,267,10629,10633,10636, +10641,10645,10648,10653,10657,281,10661,10666,10670,96,10675,282,282,100,10678,10682,100,10686,283,10693,10698,10703, +10707,10711,10714,10716,279,10719,284,284,10723,96,10726,10729,10733,10738,10740,10744,10749,10753,10757,10761,10765, +10770,10773,10778,10782,10787,10791,10794,10798,10801,10804,10809,10813,10818,10822,10827,10831,10835,10837,10842,10845, +10849,10851,10856,290,10859,10862,10866,10870,10874,10879,10883,10888,10892,10895,10898,10901,10906,10910,10914,10917, +10921,10925,10929,10933,10938,283,10942,10945,10950,10954,10958,10962,10967,10969,10974,10977,10982,10987,10992,10996, +290,11000,11003,11007, +11010,11012,11017,11019,11023,11028,11033,11037,11042,11046,11050,11053,11058,11061,11065,11068,11071,11076,11081,11086, +11090,11095,11099,11104,11108,11113,11118,11123,11128,11132,11136,96,100,11141,11146,11150,11154,11159,11163,11166,11170, +11173,11177,11181,11185,11188,11191,11194,11196,11199,11204,11209,281,11213,11217,78,11221,11224,11229,11233,292,11237, +11240,11244, +11248,11251,11254,292,11259,11262,11265], +[1,3,296], +[0,297,298,299,10], +[0,-809,-2387,-3019,-682,-1967,-3020,-567,-3021,-3022,-1552,-2055,-3023,-1311,-2030,-2113,-3024], +[0,-705,-888,-1616,-664,-1107,-1521,-2162,-2466,-668,-1344,-3025,-1471,-1654,-2006,-2074,-2210,-2550,-915,-932,-1548, +-1666,-2093,-2177,-2388,-2439,-674,-795,-928,-1889,-2379,-2501,-522,-679,-923,-1077,-1376,-1646,-1783,-1942,-3026,-2378, +-3027,-3028,-1003,-3029,-1978,-3030,-2016,-2019,-3031,-2281,-2376,-3032,-527,-778,-3033,-3034,-2410,-23,-3035,-3036, +-3037,-1482, +-1534,-1600,-3038,-2040,-3039,-3040,-3041,-518,-528,-534,-1543,-1588,-1890,-1938,-2043,-2275,-2516,-305,-3042,-3043, +-3044,-1492,-3045,-3046,-556,-1906,-1908,-3047,-2285,-86,-3048,-3049,-3050,-2015,-3051,-263,-3052,-3053,-558,-3054,-3055, +-1962,-2044,-3056,-3057,-3058,-3059,-3060,-3061,-3062,-560,-1601,-2505,-3063,-3064,-969,-977,-1491,-2052,-3065,-3066, +-440,-3067,-562, +-3068,-958,-3069,-3070,-539,-3071,-1475,-739,-3072,-940,-962,-963,-1490,-3073,-3074,-3075,-916,-2013,-2017,-3076,-3077, +-3078,-3079,-1899,-3080,-428,-1897,-3081,-3082,-1017,-3083,-3084,-3085,-3086,-3087,-555,-535,-3088,-3089,-427,-661,-3090, +-3091,-26,-547,-741,-3092], +[0,-3093,-3094,-2634,-3095,-3096,-2006,-3097,-3098,-3099,-3100], +[1,3,301], +[0,302,0,303,11], +[0,-469,-2153,-1864,-2231,-470,-1461], +[0,-3101,-3102,-475,-3103,-3104,-3105], +[1,3,305], +[0,306,0,307,9], +[0,-1816,-2153,-1461,-1588,-2], +[0,-3101,-3102,-475,-3106,-3107,-3104,-3108,-3109,-3105,-3110,-3111], +[0,33,0,7,5], +[1,3,310], +[0,311,0,312,4], +[0,-2387,-1839], +[0,-475,-3112,-3095,-3113,-3114], +[0,33,0,7,4], +[1,3,315], +[0,316,37,317,4], +[0,-2387,-2550,-2177,-679,-23,-2080,-742,-3115], +[0,-475,-3116], +[1,3,319], +[0,320,0,7,11], +[0,-2387,-3117], +[1,3,322], +[0,33,0,323,9], +[0,-475,-3118,-3119,-3098], +[1,3,325], +[0,33,0,7,6], +[1,3,327], +[0,328,0,7,4], +[0,-3120,-2387], +[1,3,330], +[0,33,331,332,10], +[0,-3121], +[0,-475,-3122], +[1,3,334], +[0,335,336,337,5], +[0,-809,-2004,-682,-567,-3123,-3124,-3125,-3126,-3127,-3128,-2639,-3129,-3130,-3131,-3132], +[0,-485,-1107,-1415,-2006,-932,-2388,-3133,-2375,-1662,-767,-3134,-2019,-533,-3135,-1939,-2028,-2410,-23,-3136,-1534, +-3137,-3040,-528,-726,-2034,-44,-3138,-3139,-3140,-3141,-3142,-3143,-3144,-2052,-3145,-3146,-3147,-3148,-3149,-2013, +-3150,-3151,-428,-408,-3152,-3153,-3154,-3155,-3156,-3157], +[0,-3158,-3099,-2006,-3159,-3095,-3098,-3160,-3161,-3100,-3162,-3163], +[1,3,339], +[0,340,341,342,4], +[0,-1549], +[0,-485,-2006,-1031,-2019,-2410,-3040,-3164,-3052], +[0,-3158,-3099,-2494,-485,-3095,-3098,-3161,-3100,-2006,-3159,-3160], +[1,3,344], +[0,345,346,347,5], +[0,-682,-3165,-3166], +[0,-485,-1107,-2006,-1031,-2019,-2410,-3040,-3052], +[0,-3158,-3099,-2494,-485,-3095,-3098,-3161,-3100,-2006,-3159,-3160,-3167], +[1,3,349], +[0,350,351,352,4], +[0,-3168,-3169], +[0,-2387,-2299,-2402,-2300,-364,-3170,-3171,-2405,-3172,-365], +[0,-3173,-3174,-3175,-3176,-1791,-3177,-3178,-2299], +[1,3,354], +[0,355,356,137,4], +[0,-1107,-2218,-1591,-719,-742,-3179,-3180], +[0,-2177,-23,-3036,-3181,-3182], +[1,3,358], +[0,359,360,7,4], +[0,-3187,-1863,-3188], +[0,-3189,-2269,-3190], +[1,3,362], +[0,363,364,138,4], +[0,-812,-1460,-2177,-3191,-47,-25,-3192,-3193,-46,-3194,-22,-742,-3195,-3196,-3197], +[0,-2392,-2125,-2379,-3198,-3199,-3200,-40,-42,-3201,-3180,-3202,-3203,-3204,-3182], +[1,3,366], +[0,0,101,7,5], +[1,3,368], +[0,369,370,371,5], +[0,-47], +[0,-3189,-22,-3211,-3212,-3188,-3213], +[0,-525,-3214,-3215,-3216,-3217,-25], +[1,3,373], +[0,374,51,21,4], +[0,-3218,-24], +[1,3,376], +[0,377,378,379,5], +[0,-3221,-812,-1496,-3222,-2177,-1442,-2223,-679,-3223,-1044,-3224,-1646,-1783,-1936,-3225,-1864,-2654,-1125,-1600,-3226, +-3227,-3228,-3229,-3230,-3231,-3232,-3233,-3234,-3235,-3236,-3237,-3238,-3239], +[0,-652,-519,-2392,-2476,-2564,-2162,-2006,-932,-1610,-3240,-2125,-1110,-1942,-2019,-190,-2410,-3241,-3037,-3242,-3243, +-3244,-3245,-3246,-3247,-1603,-3248,-3249,-3250,-3251,-940,-3252,-3253,-3254], +[0,-3255,-3256,-3257,-856,-3258,-3259,-3260,-3261,-3262,-3161,-898,-3263,-3264,-1599,-3265,-1783], +[1,3,381], +[0,0,382,383,4], +[0,-2832,-2581,-350,-351,-3266,-3267,-3268,-3269,-3136,-3037,-589,-651,-1415,-2127,-2132,-2375,-2387,-2410], +[0,-775,-3215,-3270,-3271,-3272,-2410,-3273,-3274,-3275,-1644,-3276,-3277], +[1,3,385], +[0,386,387,388,4], +[0,-3278,-3279,-3280,-3281,-3282,-3283,-3284,-3285,-3286,-3287,-3288,-3289,-3290,-3291,-3292,-3293,-3294,-3295,-3296, +-1537,-3297], +[0,-3298,-3299,-3300,-3301,-3302,-3303,-3304,-3305,-3306,-86,-3307,-3308,-3309,-3310,-3311,-3312,-932,-940,-1344,-1534, +-2210,-2410,-3313], +[0,-3314,-488,-856,-3315], +[1,3,390], +[0,391,0,392,9], +[0,-3316,-3317,-3318,-3319,-1123,-3320,-2387], +[0,-3321,-1122,-2006,-3322,-3323,-3324], +[1,3,394], +[0,395,396,397,6], +[0,-2006,-2127,-1967,-23,-3325,-40,-2234,-41,-3326,-3327], +[0,-1415,-932,-2375,-767,-2410,-3136,-3040,-1448,-969,-973,-972], +[0,-3328,-856,-3262,-2006,-3105,-3110], +[1,3,399], +[0,400,401,7,10], +[0,-2177,-983,-3329], +[0,-815,-932,-23,-3330,-426,-2411,-3211,-3331], +[1,3,403], +[0,404,405,406,5], +[0,-24,-3332,-3218], +[0,-23,-46,-3333,-3334,-3219,-3335], +[0,-525,-3220,-3336], +[1,3,408], +[0,139,51,21,10], +[1,3,410], +[0,411,51,21,11], +[0,-24,-3337], +[1,3,413], +[0,414,415,21,4], +[0,-3338,-3197,-24,-3339,-3340], +[0,-23,-3219,-25], +[1,3,417], +[0,139,101,21,5], +[1,3,419], +[0,420,421,21,10], +[0,-2177,-24,-3341,-3342,-3343,-3344], +[0,-1591,-23,-3192,-44,-40,-3345,-3343,-3219], +[1,3,423], +[0,140,424,7,8], +[0,-633,-647,-3346,-2416], +[1,3,426], +[0,427,428,7,4], +[0,-2177,-3347,-3338,-3348,-24,-3342,-3343,-3349,-3350,-3351,-3352,-3353,-3197,-3344,-3354,-3340,-3355,-3356,-3357,-3358, +-3359,-3360,-3361,-3362,-3363,-3364,-3365,-3366,-3367,-3368,-3369,-3370,-3371,-3372,-3373,-3374,-3375,-3376,-3204,-3377, +-3378,-3379,-3380,-3381,-3382,-3383,-3384,-3385,-3386,-3387,-3388,-3389,-3390,-3391,-3392,-3393,-3394,-3395,-3396,-3397, +-3398,-3399,-3400, +-3401,-3402,-3403,-3404,-3405,-3406,-3407], +[0,-23,-46,-3219], +[1,3,430], +[0,431,51,7,4], +[0,-24,-3349,-3408,-3409,-3410,-3411], +[1,3,433], +[0,434,51,435,8], +[0,-3077,-24,-3349,-3412,-3204], +[0,-3413,-2410], +[1,3,437], +[0,438,439,7,4], +[0,-3414,-1591,-3415,-1046,-2234], +[0,-633,-23,-3373,-3204], +[0,0,0,7,5], +[1,3,442], +[0,443,0,7,5], +[0,-753], +[1,3,445], +[0,446,51,7,4], +[0,-812,-47,-25,-3193,-3194,-22,-3416], +[1,3,448], +[0,449,450,7,6], +[0,-3212,-3188], +[0,-25,-3194,-3211], +[1,3,452], +[0,141,142,143,8], +[1,3,454], +[0,455,456,457,4], +[0,-3442,-1116,-1666,-1969,-2522], +[0,-756,-932,-940,-943,-958,-966,-967,-968,-974,-2250], +[0,-2520,-2905,-3443,-3444,-3445], +[1,3,459], +[0,460,461,7,4], +[0,-3446,-2177,-680,-3447,-910,-1077,-3448,-1863,-479,-3449,-2115,-3450,-3451,-3452,-3453,-3454,-3455,-3456,-3457,-3458, +-3459,-3460,-3461,-3462,-3463,-3464,-3465,-3466], +[0,-1821,-3467,-2269,-3199], +[1,3,463], +[0,464,465,466,4], +[0,-3468,-3469,-195,-196,-197,-682,-1967], +[0,-21,-23,-26,-40,-41,-86,-3307,-3326,-350,-351,-3470,-3471,-3472,-427,-428,-528,-553,-3473,-932,-962,-969,-970,-1344, +-1534,-1942,-2006,-2019,-2127,-3474,-2140,-2174,-2410], +[0,-3475,-2006,-3476,-3160,-3477,-3098,-3478,-3479,-3480,-3481,-3482,-3100,-3483,-3484,-3485,-3486,-3487], +[1,3,468], +[0,469,0,19,4], +[0,-681,-66,-82], +[1,3,471], +[0,472,0,473,6], +[0,-3493,-2387], +[0,-3494,-3495,-3496,-3264,-3497,-3498,-475,-3499,-3500,-3501,-3095,-3488,-681,-3489], +[1,3,475], +[0,476,0,19,5], +[0,-681,-66,-83,-68,-80,-70], +[1,3,478], +[0,479,0,19,5], +[0,-681,-81,-66,-3502,-83,-68,-80], +[1,3,481], +[0,482,0,19,4], +[0,-681,-81,-66,-3503,-3502,-83,-80], +[1,3,484], +[0,485,0,144,5], +[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3504,-52,-77], +[1,3,487], +[0,488,0,144,4], +[0,-81,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3504,-52,-77], +[1,3,490], +[0,491,0,102,4], +[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3511,-52,-77], +[1,3,493], +[0,494,0,102,8], +[0,-3512,-73,-74,-62,-71,-79,-72,-80,-70,-63,-3513,-76,-54,-67,-69,-56,-75,-55,-65,-52,-3514,-77], +[1,3,496], +[0,497,0,102,8], +[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-3515,-65,-52,-77], +[1,3,499], +[0,500,0,19,6], +[0,-3516,-681,-3517,-81,-66,-3502,-71,-83,-68,-82,-65], +[1,3,502], +[0,503,0,19,4], +[0,-681,-81,-66,-3502,-71,-83], +[1,3,505], +[0,506,0,19,8], +[0,-3517,-81,-66,-83,-68,-85], +[1,3,508], +[0,509,0,59,6], +[0,-681,-66,-83], +[1,3,511], +[0,512,0,145,11], +[0,-3517,-81,-83,-68,-3519], +[1,3,514], +[0,515,0,19,8], +[0,-681,-66,-83,-82,-65], +[1,3,517], +[0,518,0,145,10], +[0,-3517,-83], +[1,3,520], +[0,521,0,19,4], +[0,-681,-81,-66,-3520,-3503,-80,-64,-3521], +[1,3,523], +[0,524,0,19,10], +[0,-681,-81,-66,-3502,-83,-68,-76], +[1,3,526], +[0,527,0,19,5], +[0,-681,-3517,-81,-66,-3520,-3502,-83,-68,-80,-82,-85,-64], +[1,3,529], +[0,530,0,19,8], +[0,-681,-81,-66,-74,-3502,-83,-68,-70], +[1,3,532], +[0,533,0,19,11], +[0,-681,-3517,-81,-66,-3502,-71,-83,-68,-80,-85,-64], +[1,3,535], +[0,536,0,19,4], +[0,-681,-81,-66,-3512,-3503,-3502,-83,-68,-80,-64], +[1,3,538], +[0,539,0,19,4], +[0,-681,-81,-66,-3520,-3502,-83,-68,-80,-85,-64], +[1,3,541], +[0,542,0,19,4], +[0,-81,-66,-3502,-83,-68], +[1,3,544], +[0,545,0,19,6], +[0,-681,-66,-68,-64], +[1,3,547], +[0,548,0,549,8], +[0,-3493], +[0,-3494,-3495,-3496,-3264,-3497,-3498,-2006,-3159,-3488,-681,-3489], +[1,3,551], +[0,552,0,19,6], +[0,-681,-3517,-81,-66,-3502,-83,-68,-85,-64], +[1,3,554], +[0,555,0,19,11], +[0,-3517,-66,-83,-68], +[1,3,557], +[0,558,0,59,11], +[0,-3517,-3522,-3523,-3524,-3525,-66,-3502,-83,-68,-3526], +[1,3,560], +[0,561,0,59,11], +[0,-66,-83], +[1,3,563], +[0,564,0,59,4], +[0,-3517,-81], +[1,3,566], +[0,567,0,568,4], +[0,-3493,-1549], +[0,-3494,-3495,-3496,-3264,-3497,-3498,-2476,-3527,-3528,-3529,-3488,-681,-3489], +[1,3,570], +[0,571,0,59,4], +[0,-3517,-81,-66,-3503,-3502,-83,-68,-80], +[1,3,573], +[0,574,575,146,5], +[0,-3530,-3531,-3532,-3533,-3534,-3535,-2550], +[0,-3536,-3537,-3149,-3037,-3041,-1077,-3125], +[1,3,577], +[0,578,0,147,5], +[0,-3,-23,-3374,-40,-3538,-3539,-3540,-617,-3541,-674,-679,-714,-719,-755,-3542,-927,-1022,-1026,-1077,-1107,-1276,-1320, +-1349,-1460,-1548,-1577,-3543,-3544,-1610,-1646,-3545,-3546,-3547,-1863,-3548,-1955,-2177,-2213,-3433,-3549,-2378,-2446, +-3550], +[1,3,580], +[0,581,0,582,4], +[0,-3553,-1361], +[0,-3554,-3555,-3161,-997,-3556], +[0,25,584], +1732406400000, +[0,25,586], +1733011200000, +[1,3,588], +[0,589,590,148,9], +[0,-1320], +[0,-21,-23,-40,-3558,-3559,-3560,-2997,-3326,-350,-351,-3561,-3562,-518,-620,-3563,-3564,-699,-767,-932,-945,-957,-958, +-978,-3565,-1110,-1111,-3566,-1320,-3567,-1389,-1412,-1437,-1471,-1473,-1475,-3568,-1477,-1479,-1481,-3569,-1486,-1547, +-1753,-1771,-1889,-1891,-3570,-2125,-2127,-3571,-3572,-3031,-2195,-2281,-3573,-2334,-3574], +[1,3,592], +[0,0,0,593,4], +[0,-775,-3215], +[1,3,595], +[0,0,0,596,6], +[0,-775,-3579], +[1,3,598], +[0,0,0,599,4], +[0,-775,-3580,-3215], +[1,3,601], +[0,602,0,603,4], +[0,-98,-1931], +[0,-775,-1391,-3581,-3582,-1889,-3583,-3584,-3585], +[1,3,605], +[0,60,0,606,9], +[0,-775,-3586,-3587,-1889,-3583,-3588,-3589,-3590,-3591,-3592], +[1,3,608], +[0,0,0,609,4], +[0,-775,-1931,-3593], +[1,3,611], +[0,612,613,149,5], +[0,-3594,-3595,-3596,-3419,-3597,-3598,-3599,-3600,-3601,-3602,-3603,-3604,-3605,-668,-695,-719,-812,-3606,-1040,-1107, +-3607,-1366,-1394,-1399,-3608,-1566,-3125,-3222,-1640,-1650,-1693,-1959,-3609,-2177,-3610,-2297,-2400,-3611,-2548,-3612], +[0,-3613,-3614,-3615,-3244,-190,-262,-357,-3035,-3198,-3616,-3617,-3048,-3618,-3619,-3149,-3620,-3621,-3622,-3623,-3037, +-3624,-3199,-3625,-3626,-3627,-3628,-427,-428,-664,-3629,-711,-3630,-838,-932,-958,-965,-978,-1004,-1077,-3631,-1654, +-1689,-1788,-1942,-3632,-2200,-2210,-2211,-3633,-2359,-2379,-2384,-2402,-2410], +[1,3,615], +[0,616,617,618,4], +[0,-653,-668,-685,-695,-1077,-2375], +[0,-86,-3307,-3048,-3049,-3136,-3637,-3638,-3639,-427,-428,-481,-693,-910,-932,-940,-967,-1344,-1415,-3640,-1637,-1658, +-1847,-1942,-3641,-3642,-2410], +[0,-3643,-856], +[0,25,620], +1730419200000, +[0,0,0,7,4], +[0,0,0,7,6], +[0,0,0,7,11], +[1,3,625], +[0,626,627,104,8], +[0,-3644,-3645,-3646,-3647,-668,-674,-775,-2858,-3648,-3649,-1442,-1548,-1600,-3425,-3650,-3651,-1608,-3652,-3653,-2161, +-2223,-2303,-3654], +[0,-3655,-3656,-3657,-3658,-3659,-3660,-3044,-3661,-3662,-3037,-3663,-3664,-3665,-518,-928,-3666,-1304,-3667,-3668,-1771, +-1889,-1927,-2162,-3669,-2410,-2469], +[1,3,629], +[0,630,631,632,9], +[0,-2387,-2426,-3675,-3676,-3677,-3678,-3679,-3680,-3681], +[0,-2391,-3682,-932,-2469,-1942,-767,-2410,-3037,-3683,-3684,-3664,-3685,-3686,-3687,-3688], +[0,-3689,-3690,-3691,-3692,-3693], +[1,3,634], +[0,75,635,636,4], +[0,-1654,-1942], +[0,-3694,-2414,-1446,-3695,-2402,-3671,-856,-3696], +[1,3,638], +[0,639,640,104,5], +[0,-3697,-3698,-3699,-3700,-3701,-3702,-154,-3703,-3704,-3036,-3705,-3706,-469,-510,-521,-3707,-668,-865,-1028,-1107, +-1304,-1321,-1341,-1442,-1459,-1641,-1645,-1734,-2195,-2205,-2223,-2325,-3708,-3709,-2488,-2550], +[0,-3710,-3711,-3712,-3660,-3044,-3713,-3037,-3714,-3715,-3041,-427,-428,-528,-928,-932,-972,-1344,-1534,-1548,-2375, +-2379,-2410], +[1,3,642], +[0,643,644,104,6], +[0,-3646,-668,-3648,-3649,-1442,-1548,-1600,-3425,-3650,-3716,-3651,-1608,-3652,-2161,-2223], +[0,-23,-3204,-40,-3659,-3136,-3660,-3044,-3661,-3662,-3717,-3037,-3663,-3718,-3719,-3720,-518,-528,-928,-3666,-932,-972, +-1304,-1415,-3668,-1889,-1927,-1942,-2082,-2375,-2410], +[0,25,646], +1734825600000, +[1,3,648], +[0,649,650,651,4], +[0,-3234,-367,-411,-3721,-617,-668,-686,-724,-3722,-1010,-1028,-1070,-3723,-3724,-1304,-1460,-1600,-3245,-1601,-3425, +-3725,-3726,-1734,-1966,-2162,-3727,-3728,-2231,-2232,-2234,-3729,-2299,-2446,-3730], +[0,-86,-3307,-3470,-3471,-3731,-3732,-3733,-3734,-3048,-3661,-3662,-3037,-3735,-3736,-3737,-3738,-3739,-427,-428,-652, +-3740,-1077,-1344,-1978,-2080,-2174,-2410], +[0,-3122,-3445,-1334,-3161,-3741,-3742,-3743], +[1,3,653], +[0,654,655,656,10], +[0,-3744,-3745,-3746,-3747,-3748,-3749,-367,-3750,-518,-635,-778,-779,-932,-940,-967,-969,-970,-1110,-1344,-3751,-1643, +-1889,-1908,-1930,-2162,-2163,-2275,-2281,-2282,-3436,-3752,-2335,-2501,-2503,-2507,-2508], +[0,-3753,-1534], +[0,-3100,-3754,-3755,-3756,-3590,-3551,-3757], +[1,3,658], +[0,659,660,661,9], +[0,-3661,-664,-668,-1551,-1600,-1816,-1951], +[0,-3758,-3035,-3759,-3037,-3760,-1344,-1534,-1942,-2410,-2469], +[0,-891,-3671,-856,-3690,-2410,-3761,-3762], +[1,3,663], +[0,664,665,105,5], +[0,-3341,-44,-3763,-3764,-3765,-3766,-742,-930,-3767,-2231,-3768], +[0,-23,-3769], +[1,3,667], +[0,668,669,105,4], +[0,-160,-3772,-3765,-3773,-3774], +[0,-3775,-2410], +[1,3,671], +[0,672,673,7,5], +[0,-44,-160,-3776,-3765,-3777,-3774], +[0,-3775,-3778,-2006,-2410], +[0,0,0,7,8], +[1,3,676], +[0,677,678,38,5], +[0,-983], +[0,-652,-1498,-1654,-3779,-932,-1810,-2125,-2127,-2177,-3780,-1942,-2468,-2410,-1772,-3330,-426,-3781,-2132,-3782,-2139, +-428,-3783], +[1,3,680], +[0,0,0,681,5], +[0,-3214,-3784,-932], +[1,3,683], +[0,684,685,150,4], +[0,-3785,-682,-3786,-863,-996,-3787,-3544,-3788,-1610,-1653,-3789,-1848,-2680,-1885,-1955,-1967,-3790,-2223,-3791,-3792, +-3793], +[0,-3794,-3795,-3796,-3035,-3797,-3043,-3798,-3136,-3799,-3800,-3801,-3802,-3037,-3803,-3140,-3040,-3052,-3804,-3805, +-3046,-3806,-3041,-427,-428,-3807,-585,-740,-748,-753,-756,-778,-795,-915,-2760,-3808,-932,-958,-969,-970,-1067,-1331, +-1344,-1415,-1442,-3809,-3810,-1652,-1821,-1942,-1952,-1992,-2006,-2019,-2024,-2125,-2195,-2214,-2275,-2278,-2375,-2379, +-2387,-2410, +-3811,-2435,-2501,-2503,-2505,-2509], +[1,3,687], +[0,688,689,151,4], +[0,-3819], +[0,-41,-409,-3040,-3052,-440,-2006,-2019,-3820,-727], +[1,3,691], +[0,0,0,692,4], +[0,-2651,-3827,-3828,-3829,-3830,-3831,-775,-2162,-3577,-3578,-3832,-3833], +[1,3,694], +[0,0,0,695,9], +[0,-2651,-3827,-3828,-3829,-3834,-3835,-775,-2162,-3577,-3578,-3832,-3833], +[1,3,697], +[0,152,0,153,8], +[1,3,699], +[0,152,0,153,4], +[1,3,701], +[0,0,702,703,6], +[0,-23,-3840,-40,-41,-42,-86,-3307,-190,-195,-3841,-196,-3470,-3842,-3471,-406,-407,-409,-3136,-3040,-3052,-635,-658,-741, +-767,-932,-940,-958,-959,-962,-967,-969,-970,-976,-978,-1110,-1344,-1415,-1419,-1942,-1952,-2006,-2019,-2125,-2174,-2375, +-2379,-2391,-2410,-2411], +[0,-3838,-1064,-2006,-3214,-3839,-3843], +[1,3,705], +[0,106,154,706,9], +[0,-2410,-3161,-3844,-3445,-1818], +[1,3,708], +[0,709,710,711,8], +[0,-3845,-198,-891,-3846], +[0,-3847,-3037,-427,-428,-767,-891,-3848,-932,-933,-935,-940,-958,-962,-967,-1942,-2376,-2379,-2402,-2410], +[0,-2410,-3161,-891,-3844,-3445], +[1,3,713], +[0,714,154,715,9], +[0,-198,-3849,-3850,-3851,-617,-1465,-2080], +[0,-2410,-3161,-1004,-1818,-3844,-3445], +[1,3,717], +[0,718,719,720,6], +[0,-3852,-3853,-3854,-3855], +[0,-3856], +[0,-1122,-3857,-856,-1599,-3858], +[1,3,722], +[0,723,724,725,5], +[0,-3859,-3860,-3855,-3854], +[0,-3861,-3856], +[0,-858,-1122,-3857,-856,-3862,-1599,-3858], +[1,3,727], +[0,728,0,729,4], +[0,-23,-40,-3863,-3864,-3865,-518,-534,-3866,-753,-767,-778,-779,-1041,-3867,-1643,-1889,-1908,-3868,-2162,-3869,-2163, +-2318,-2437,-2501,-2503], +[0,-2501,-3870,-3871,-3100], +[1,3,731], +[0,732,733,155,6], +[0,-3872,-3873,-3874,-3875,-3876,-3877,-3878,-3879,-3880,-3881,-3882,-3883,-3884,-3885,-3886,-3887,-3888,-3889], +[0,-3890,-3891,-3892,-3893,-3894,-3895,-3037,-1276,-1435,-2410], +[1,24,735], +[0,25,736], +1724872768784, +[1,3,738], +[0,739,740,741,5], +[0,-3896,-1993], +[0,-86,-3307,-3897,-3898,-3470,-3471,-3899,-932,-1344,-1392,-3900,-1534,-1942,-2174,-2469], +[0,-1446,-1942,-3485,-856,-3214], +[1,3,743], +[0,744,745,746,4], +[0,-3901], +[0,-2581,-3902,-3117,-406,-407,-409,-410,-3037,-3040,-3903,-3904,-3905,-3906,-440,-469,-3907,-470,-3908,-3909,-3910,-3911, +-3912,-767,-3913,-3914,-3915,-3916,-3917,-1435,-1449,-2926,-1637,-3918,-3919,-3920,-1771,-2006,-2019,-2023,-2080,-3921, +-3922,-2410,-2924,-3923,-2466,-3924,-2469,-3612,-2564], +[0,-3925,-3926,-3927,-3928,-2023,-3612,-1435,-3921,-2410,-2564,-3923,-3911,-3916,-3929,-3930,-3912,-3922,-469,-3931,-3908, +-3932,-3933,-3914,-3934], +[1,3,748], +[0,749,38,750,4], +[0,-2426], +[0,-3935,-3936,-3937,-3938,-3939,-3940,-3690], +[1,3,752], +[0,753,754,755,5], +[0,-3941,-3942,-3943,-3819,-1549], +[0,-2125,-2476,-2483], +[0,-2476,-3944,-3945,-3100,-3161,-3160,-3112,-3095,-3098,-3113,-3114], +[1,3,757], +[0,758,759,760,4], +[0,-3763,-229,-807,-1549], +[0,-3946,-2125,-2476,-2483], +[0,-2476,-3944,-3945,-3100,-3161,-3160,-3095,-3098], +[1,3,762], +[0,763,764,63,4], +[0,-3947,-2944,-2900,-3948,-3949,-3950,-2202], +[0,-3951,-3952,-3037,-2410], +[1,3,766], +[0,767,768,769,10], +[0,-2387,-1387,-3978], +[0,-1415,-2162,-668,-999,-2184,-3979,-932,-2127,-1077,-1417,-1942,-2281,-3136,-3037,-3980,-3564,-3981,-3982,-2284,-3983, +-3984,-3985,-2891,-3986,-3987,-3988,-3989,-940,-428,-3990,-351,-3991,-3992,-427], +[0,-1386,-3161,-3993,-3162,-3994,-3995,-3996,-752,-891,-3997,-3998], +[1,3,771], +[0,0,156,157,4], +[1,3,773], +[0,774,0,775,4], +[0,-4003], +[0,-2410,-727,-1788,-4004,-4005], +[1,3,777], +[0,778,779,780,4], +[0,-2852,-4006,-4007,-4008,-682,-4009], +[0,-4010,-367,-407,-409,-410,-3664,-932,-940,-4011,-1449,-2006,-2019,-2410,-2466,-2469], +[0,-3095,-3098,-4012,-3099,-3161,-3100,-4013,-4014,-3159,-2006,-3160,-4015], +[1,3,782], +[0,783,784,107,4], +[0,-4016,-4017,-4018,-4019,-4020,-237,-3037,-480,-668,-680,-4021,-1119,-4022,-4023,-4024,-4025,-4026,-1426,-4027,-4028, +-4029,-4030,-1427,-4031,-4032,-1639,-1950,-2218], +[0,-4033,-4034,-4035,-4036], +[1,3,786], +[0,787,0,7,4], +[0,-4017,-4046,-4047,-4048,-3037,-3041,-668], +[1,3,789], +[0,790,791,792,6], +[0,-4049,-469,-470,-1548], +[0,-234,-4050,-427,-428,-519,-4051,-932,-940,-958,-967,-1449,-1788,-1942,-2074,-4052,-2125,-2127,-2130,-2142,-2144,-2234, +-2379,-2387,-2402,-2410], +[0,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-3926,-4057,-1463,-4058,-4059,-3999,-4060], +[1,3,794], +[0,795,796,797,5], +[0,-4061,-809,-1548], +[0,-3778,-163,-270,-272,-274,-350,-4062,-351,-3561,-3043,-3136,-3040,-3052,-427,-428,-3807,-748,-915,-932,-940,-958,-967, +-969,-1415,-1419,-1449,-1788,-1942,-2006,-2019,-2125,-2127,-2130,-4063,-4064,-2142,-2144,-2233,-2375,-2376,-2387,-2402, +-2410,-2501,-2503,-2505,-238,-240], +[0,-3118,-4065,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[1,3,799], +[0,34,800,801,6], +[0,-4066,-3043,-3136,-4067,-3040,-3062,-427,-428,-3807,-767,-915,-932,-940,-958,-967,-969,-1415,-1449,-1788,-1942,-2006, +-2019,-2040,-2074,-4052,-2125,-2127,-2130,-2142,-2144,-2375,-2387,-2402,-2410,-238], +[0,-2006,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[1,3,803], +[0,804,805,7,4], +[0,-3469,-4068,-4069,-4070,-4071,-4072,-4073,-4074,-4075,-4076,-4077,-4078,-4079,-4080,-4081,-4082,-4083,-4084,-4085, +-4086], +[0,-4087,-3136,-1415,-2125,-2410], +[1,3,807], +[0,808,809,810,9], +[0,-482,-567,-668,-725,-4088,-1107,-4089,-1442,-4090,-1572,-1645,-1650,-4091,-2125,-4092,-4093,-4094,-4095,-4096,-2347, +-2433,-2462,-2463,-4097], +[0,-526,-4098,-555,-558,-756,-808,-1451,-1654,-1788,-4099,-2155,-2210,-2250,-2460], +[0,-2162,-3754,-775,-4100,-856,-3485,-4101], +[1,3,812], +[0,0,0,813,10], +[0,-4102,-4103,-4104], +[1,3,815], +[0,816,817,158,5], +[0,-2900], +[0,-231,-4105,-4106,-1536], +[1,3,819], +[0,820,28,821,6], +[0,-2852,-703,-2037,-4118,-2641,-2400], +[0,-3098,-3099,-3100,-3482,-2634,-1713,-2006,-3160,-4119], +[1,3,823], +[0,108,28,824,8], +[0,-4120,-3098,-4121,-3100,-3482,-2634,-1713,-4122,-2006,-4123,-3160,-4119], +[0,0,0,826,5], +[0,-3100,-3322,-3482,-2634,-1713,-2006,-4124,-4125], +[1,3,828], +[0,0,28,829,6], +[0,-3098,-3959,-3100,-3482,-4126,-2634,-1713,-2006,-3160,-4119], +[1,3,831], +[0,832,28,833,6], +[0,-2662,-2055], +[0,-3098,-3100,-3482,-2634,-1713,-4127,-4128,-4129,-2006,-3160,-4119], +[1,3,835], +[0,836,0,837,4], +[0,-4130,-257], +[0,-2006,-2634,-1713,-3160,-3098,-4119,-3482,-3100,-707,-4131,-4132,-4133], +[1,3,839], +[0,840,0,841,10], +[0,-703,-786], +[0,-2006,-2634,-1713,-3160,-3482,-3100,-906,-3771,-4134], +[1,3,843], +[0,0,0,844,5], +[0,-2006,-2634,-1713,-3482,-3100,-4124,-3322,-4125], +[1,3,846], +[0,847,0,160,4], +[0,-703,-2029,-1887,-1967,-44,-4135,-4136,-4137,-4138,-2055,-1311,-3024], +[1,3,849], +[0,39,0,850,4], +[0,-2006,-3159,-3119,-1613,-3843], +[1,3,852], +[0,0,853,161,4], +[0,-1415,-2446,-1344,-932,-1548,-753,-2379,-2402,-1942,-589,-21,-533,-2410,-23,-3136,-3738,-1771,-3044,-50,-86,-3268,-40, +-977,-2082,-940,-967,-2405,-42,-262,-4139,-428,-3307,-427,-26,-36,-35], +[1,3,855], +[0,856,0,857,5], +[0,-4145], +[0,-4146,-1599,-4147,-2006,-2093], +[1,3,859], +[0,860,861,862,10], +[0,-264,-263,-834,-1548,-1645,-2114,-2177,-2231,-2410,-4148,-4149,-4150,-4151,-4152], +[0,-4153,-3044,-3200,-3199,-932,-4154,-4155], +[0,-2410,-3816,-4156,-4157,-4158,-3960,-856,-4159,-4160,-3761,-2127,-4161,-3116,-4162,-4163], +[1,3,864], +[0,0,865,162,4], +[0,-932,-4153,-4164], +[1,3,867], +[0,868,869,162,4], +[0,-469,-4166,-2114,-263], +[0,-932,-4167,-3200,-4153,-4164], +[1,3,871], +[0,0,872,873,5], +[0,-4168,-4169,-4170,-4171,-3037], +[0,-4172,-4173,-4174,-4175,-4176,-4177,-4178,-4179], +[1,3,875], +[0,876,877,878,8], +[0,-267], +[0,-265,-4171,-2400], +[0,-4172,-4173,-4174,-4175,-4176,-4177,-4180,-4181,-3816,-4182,-4183,-4184], +[1,3,880], +[0,0,881,882,4], +[0,-4185,-265,-4171,-3037,-4186], +[0,-4172,-4173,-4174,-4175,-4176,-4177,-4187,-2444], +[1,3,884], +[0,0,0,885,5], +[0,-4188,-3100,-4189,-3110], +[1,3,887], +[0,888,889,890,4], +[0,-4190,-4191,-4192,-4193,-4194,-4195], +[0,-86,-3307,-4196,-4197,-3983,-4198,-3617,-4199,-4200,-3037,-4201,-4202,-4203,-4204,-523,-617,-720,-754,-767,-796,-4205, +-1004,-4206,-4207,-1063,-1116,-1278,-1449,-1729,-3246,-2228,-2229,-4208,-2291,-2293,-2892,-2410,-2426,-2469,-4209,-2817, +-4210,-2501,-4211,-2531], +[0,-2105,-4212,-1334,-1342,-2540,-2533,-4213,-4214,-4215,-4216,-3634], +[1,3,892], +[0,39,0,893,4], +[0,-2006,-3159,-4217,-1613,-3119,-3843], +[1,3,895], +[0,896,0,897,6], +[0,-703,-2825,-2690,-1967,-273,-44], +[0,-2006,-3159,-4217,-1613,-3119,-1510], +[1,3,899], +[0,900,0,901,4], +[0,-703,-786,-2029,-2825,-2690,-1967,-273,-44,-2997,-2055,-4218,-3024], +[0,-2006,-3159,-4217,-1613,-3119], +[1,3,903], +[0,904,0,905,9], +[0,-703,-786,-2825,-2690,-1967,-44,-2575,-2689], +[0,-2006,-3159,-4217,-4219], +[1,3,907], +[0,908,0,909,4], +[0,-44,-2690,-3024,-703,-1967,-2055,-4220], +[0,-2006,-3159,-4217,-4221,-1613,-3119,-4222,-4223,-4224], +[1,3,911], +[0,912,913,914,5], +[0,-4225,-4226,-4227,-4228,-4229,-4230,-4231,-4232,-4233,-682,-712,-4234,-4235,-4236,-1107,-1125,-4237,-4238,-4239,-4240, +-4241,-4242,-2095,-4243,-4244,-4245,-4246,-2400,-2427,-2429,-2501,-4247,-2650], +[0,-4248,-4249,-4250,-4251,-3040,-3046,-518,-726,-2634,-1906,-2006,-2019,-2083,-2318,-2391,-2410,-4252,-4253,-4254], +[0,-4147,-856,-1713,-1599], +[1,3,916], +[0,917,0,109,9], +[0,-4255,-4256,-2888,-4257], +[1,3,919], +[0,920,0,109,11], +[0,-2387,-276], +[1,3,922], +[0,923,0,109,5], +[0,-2083,-4262,-2087,-2090,-3649,-4263,-4264,-1292,-2429,-4265,-4266,-4267,-668,-4245,-2427,-2268], +[1,3,925], +[0,926,927,928,5], +[0,-4268,-820,-665,-4269], +[0,-664,-616,-1654,-932,-4270,-2125,-4271,-2379,-1098,-1942,-2410,-3035,-3037,-4272,-595,-964,-958,-940,-967,-428,-4273, +-427,-279,-4274,-4275], +[0,-4276,-4277,-4271,-3634], +[1,3,930], +[0,931,932,7,5], +[0,-4278,-4279,-4280,-281,-4281,-4282,-282,-4283,-4284,-4285,-283,-4286,-4287,-4288,-1315,-4289,-1582,-1645,-1758,-4290, +-1767,-4291,-1770,-1831,-4292,-1957,-4293,-4294,-4295,-2177,-2247,-4296,-4297], +[0,-4298,-4299,-4300,-589,-4301,-1722,-2319,-2325,-4302], +[1,3,934], +[0,935,29,936,5], +[0,-4282,-4283,-1107,-1645], +[0,-1764,-1776,-4303,-687,-4304,-4305], +[1,3,938], +[0,0,29,939,10], +[0,-1764,-687,-1733], +[1,3,941], +[0,942,943,7,6], +[0,-282,-4283,-4306,-1733,-1957,-2518], +[0,-4298,-4300,-4307,-2319], +[1,3,945], +[0,946,947,163,5], +[0,-4308,-4309,-4310,-1600,-1395,-4311,-4312,-4313,-4314,-4315,-4316,-1550,-4317,-2161,-3649,-4318,-4319,-1554,-4320, +-1603,-4321,-4322,-4323,-3430,-4324,-4325], +[0,-1107,-1654,-674,-2250,-4326,-633,-4327,-2251], +[1,24,949], +[0,25,950], +1734998400000, +[1,3,952], +[0,953,0,64,4], +[0,-293], +[1,3,955], +[0,956,0,64,10], +[0,-1787,-2387], +[1,3,958], +[0,959,0,64,4], +[0,-300], +[1,3,961], +[0,962,963,64,5], +[0,-4341,-888,-2387,-2177,-2551,-1645,-910], +[0,-1415,-1787], +[1,3,965], +[0,966,40,967,4], +[0,-2387,-297,-293,-1863,-2654,-2383], +[0,-4332,-4342,-4335,-4340,-4343,-4344], +[1,3,969], +[0,970,40,164,4], +[0,-2387,-297,-2177,-293,-2410], +[1,3,972], +[0,973,0,974,9], +[0,-2387,-297,-299,-293], +[0,-4332,-4336,-4348,-4338,-4339,-4340,-4344], +[1,3,976], +[0,977,40,978,11], +[0,-668,-2387,-1353,-2177,-715,-3187,-1864,-293,-1863,-2654,-23,-832,-1461,-1773,-300,-44,-4341,-40,-2234,-3766,-4349,-42, +-38,-33,-3376,-4350], +[0,-4332,-4335,-4336,-4351,-4352,-4340,-4343,-4344], +[1,3,980], +[0,981,0,165,4], +[0,-2387,-297,-299,-293,-295,-4353], +[1,3,983], +[0,984,40,165,8], +[0,-2387,-297,-2571,-4354,-293,-4355,-295,-4356], +[1,3,986], +[0,987,40,64,9], +[0,-1787,-668,-2387,-2177,-910,-1864,-293,-2551,-4341], +[1,3,989], +[0,990,991,76,4], +[0,-302,-4357,-4358,-4359,-812,-2177], +[0,-4360,-3035,-3621,-3037,-3199,-664,-697,-740,-932,-938,-939,-4361,-1111,-1654,-2210,-2379,-2410], +[1,3,993], +[0,994,995,76,5], +[0,-4357,-4358,-812,-1111,-1401,-2387], +[0,-3035,-4363,-3044,-3621,-3037,-4364,-4365,-664,-740,-932,-938,-939,-4361,-1548,-1654,-1972,-2379,-2410], +[1,3,997], +[0,998,999,1000,4], +[0,-480,-483,-4366,-692,-812,-888,-1097,-1366,-1401,-1532,-1645,-2177,-2267,-2297,-2654,-2820,-2525,-2528], +[0,-3307,-3615,-304,-4360,-4367,-4368,-3268,-3035,-4269,-4369,-3198,-4370,-4363,-3621,-3037,-4371,-4372,-4373,-4374,-4365, +-589,-664,-665,-721,-767,-932,-938,-940,-1344,-1534,-4375,-1654,-1788,-1942,-2200,-2210,-2379,-2384,-2410], +[0,-4362,-687,-3957,-4376,-3215,-4377,-4378], +[1,3,1002], +[0,1003,1004,1005,6], +[0,-303], +[0,-3307,-3615,-4367,-4368,-3035,-3621,-3037,-664,-721,-932,-938,-940,-1344,-1534,-1654,-4362,-1942,-2200,-2379,-2410], +[0,-4379], +[1,3,1007], +[0,1008,1009,1010,4], +[0,-3704,-4380,-4381,-4382], +[0,-4383,-4384,-4385,-4386,-4387,-3037,-3664,-928,-1037,-1107,-1722,-1942,-4388,-2410,-2426,-2469], +[0,-4389,-1105,-3691,-4390], +[1,3,1012], +[0,1013,0,65,4], +[0,-4391,-4392,-4393,-4394,-4395,-4396,-4397,-4398,-4399,-4400,-4401,-4402,-4403,-4404,-4405,-4406,-4407,-4408,-4409, +-4410,-4411,-4412,-4413,-4414,-4415,-4416,-4417,-4418,-4419,-4420,-4421,-4422,-4423,-4424,-4425,-4426,-4427,-4428,-4429, +-4430,-4431,-4432,-4433,-4434,-4435,-4436,-4437,-4438,-4439,-4440,-4441,-4442,-4443,-4444,-4445,-4446,-4447,-4448,-4449, +-4450,-4451,-4452,-4453, +-4454,-4455,-4456,-4457,-4458,-4459,-4460,-4461,-4462,-4463,-4464,-4465,-4466,-4467,-4468,-4469,-4470,-4471,-4472,-4473, +-4474,-4475,-4476,-4477,-4478,-4479,-4480,-4481,-4482,-4483,-4484,-4485,-4486,-4487,-4488,-4489,-4490,-4491,-4492,-4493, +-4494,-4495,-4496,-4497,-4498,-4499,-4500,-4501,-4502,-4503,-4504,-4505,-4506,-4507,-4508,-4509,-4510,-4511,-4512,-4513, +-4514,-4515,-4516,-4517, +-4518,-4519,-4520,-4521,-4522,-4523,-4524,-4525,-4526,-4527,-4528,-4529,-4530,-4531,-4532,-4533,-4534,-4535,-4536,-4537, +-4538,-4539,-4540,-4541,-4542,-4543,-4544,-4545,-4546,-4547,-4548,-4549,-4550,-4551,-4552,-4553,-4554,-4555,-4556,-4557, +-4558,-4559,-4560,-4561,-4562,-4563,-4564,-4565,-4566,-4567,-4568,-4569,-4570,-4571,-4572,-4573,-4574,-4575,-4576,-4577, +-4578,-4579,-4580,-4581, +-4582,-4583,-4584,-4585,-4586,-4587,-4588,-4589], +[1,3,1015], +[0,1016,1017,65,5], +[0,-4595,-4596,-712], +[0,-4597,-2391], +[1,3,1019], +[0,0,1020,65,8], +[0,-21,-23,-40,-1026,-1168,-1171,-1184,-1187,-1226,-4598,-4599,-2125,-2281,-2282,-2303], +[1,3,1022], +[0,0,1023,65,8], +[0,-21,-23,-40,-1168,-1171,-1184,-1226,-2125,-2281,-2282], +[1,3,1025], +[0,0,0,1026,4], +[0,-4600,-4601,-4602,-3578,-3445,-743], +[1,3,1028], +[0,1029,0,1030,4], +[0,-4603,-4604,-310,-4605,-4606,-4607,-4608,-4609], +[0,-4600,-4601,-4602,-3578,-3445,-4610,-2105], +[1,3,1032], +[0,1033,0,1034,5], +[0,-4611,-1640,-4612,-4605,-310,-4613,-4614,-311,-313,-4615], +[0,-4600,-4601,-4602,-3578,-3445,-4616], +[1,3,1036], +[0,1037,0,1038,4], +[0,-1640,-4617,-4614], +[0,-4600,-4601,-4602,-3578,-3445,-4616,-2178,-4618], +[1,3,1040], +[0,1041,1042,1043,4], +[0,-4619,-523,-617,-668,-1004,-1122,-1123,-1336,-1343,-1439,-1548,-1993,-4620,-3122,-4621], +[0,-21,-23,-40,-4622,-3035,-4269,-3617,-4623,-3044,-3621,-4624,-3037,-4625,-4372,-3625,-4626,-427,-428,-664,-665,-4627, +-749,-932,-934,-935,-940,-948,-4628,-958,-964,-1654,-1722,-1788,-1942,-1972,-2125,-2210,-2211,-2234,-2392,-2410], +[0,-4629,-4630,-3214,-4631,-3634,-4632], +[0,0,0,7,10], +[1,3,1046], +[0,1047,0,1048,6], +[0,-1851], +[0,-4125,-4633,-2006,-2476,-2299,-4634,-2410,-3214,-3100,-3445,-1109,-3160,-1062,-3122], +[1,3,1050], +[0,1051,1052,7,4], +[0,-4635,-4636,-4637,-4638,-4639,-4640,-4641,-4642,-4643,-4644,-4645], +[0,-3035,-3621,-664,-778,-925,-1471,-1475,-1479,-1480,-1482,-1483,-1654,-2125,-3047,-2275,-2402,-2410,-2501], +[1,3,1054], +[0,0,1055,1056,4], +[0,-3983,-4646,-351,-3266,-406,-407,-4647,-3037,-4648,-784,-932,-4649,-4650,-4651,-4652,-1110,-1449,-1889,-1891,-1942, +-4653,-4654,-2091,-4655,-4656,-2127,-2132,-2142,-2286,-2379,-2387,-2392,-2402,-4657,-2405,-4658,-4659,-4660,-4661,-4662, +-2410,-4663,-2468,-4664], +[0,-4665,-4666,-4667,-4668,-4669,-775,-3099,-4189,-4670,-4671,-856,-4672,-4673,-3264,-4674,-4675,-4676,-3214,-4677,-4678, +-4679,-4680,-4681,-4682,-4683,-2410,-4684,-2257,-4685,-2006,-3322], +[1,3,1058], +[0,1059,1060,7,4], +[0,-4686], +[0,-4687,-4688,-4689,-4690,-528,-4691,-824,-4692,-957,-1077,-4693,-1168,-1174,-1197,-1212,-1244,-1251,-4694,-4695,-1632, +-1839,-4696,-4697,-2347,-2410,-4698], +[1,3,1062], +[0,1063,1064,1065,8], +[0,-469,-864,-2359,-4699,-1107,-2162,-510,-4700,-4701,-2550,-932,-2125,-2177,-2334,-2536,-1004,-4702,-4703,-571,-679,-867, +-1376,-1942,-2199,-715,-4704,-4705,-633,-4706,-1354,-1633,-1729,-23,-1793,-4707,-47,-4708,-25,-305,-2232,-4709,-46,-4710, +-2104,-2433,-3194,-4711,-40,-4712,-4713,-41,-4714,-960,-2082,-32,-4715,-1458,-4716,-3077,-42,-4717,-4718,-4719, +-3408,-4720,-3362,-4721,-3398], +[0,-2322,-4722,-2234], +[0,-4723,-3116,-687,-3161,-3577,-4724,-3162,-4725,-3445,-4726,-4727,-4728,-3205,-4729,-4730,-3186], +[1,3,1067], +[0,0,1068,1069,9], +[0,-932,-3469,-4731,-4732,-4733,-4734,-4735,-768,-769,-4736,-1077,-1387,-4737,-2654,-4738], +[0,-4739,-3161,-4740,-3843,-4741], +[1,3,1071], +[0,1072,1073,1074,9], +[0,-1983,-1436,-4742,-4743,-1416], +[0,-1344,-2006,-2344,-932,-2127,-795,-2501,-1942,-4744,-2019,-2257,-2410,-3136,-3037,-3040,-4745,-4746,-2046,-4747,-4748, +-86,-4749,-3052,-2044,-4750,-2132,-4751,-1352,-969,-933,-958,-2140,-4752,-4753,-4754,-4755,-409,-940,-962,-967,-350, +-4756,-4757,-2113,-3267,-4758,-407,-428,-970,-4759,-4760,-4761,-351,-4762,-410,-4763,-2413,-3307,-935,-4764,-427,-3474, +-4765, +-3394], +[0,-2006,-2344,-4766,-4767,-4768,-4769,-4770,-4771,-3100], +[1,3,1076], +[0,1077,1078,1079,5], +[0,-3117,-3901,-1359,-2074,-2079,-2112], +[0,-2832,-23,-3341,-262,-4772,-4773,-4774,-406,-409,-4775,-410,-4776,-4777,-3705,-4778,-3037,-4779,-3040,-3052,-3041,-427, +-428,-523,-928,-4780,-932,-940,-941,-956,-958,-962,-967,-969,-970,-1077,-1384,-1449,-1459,-1683,-1729,-1942,-1984,-2006, +-2019,-2125,-2214,-2387,-2391,-2392,-2410,-2924,-3924,-2469,-2550], +[0,-2074,-2006,-4781,-3481,-4782,-4783,-1359,-1361,-4784], +[1,3,1081], +[0,1082,1083,1084,4], +[0,-4785,-4786,-989,-4787,-4788,-1588,-1864], +[0,-4062,-351,-4789,-4790,-2127,-2231,-2234,-2410], +[0,-2127,-3862,-1764,-3209,-4791,-4792], +[1,3,1086], +[0,1087,1088,1089,10], +[0,-4785,-3200,-823,-4793,-2114], +[0,-23,-3412,-3326,-350,-4062,-922,-2127,-2231,-4794], +[0,-2127,-3862,-4795,-1764,-3209], +[1,3,1091], +[0,1092,1093,1094,4], +[0,-653,-2359,-754,-2466,-668,-1111,-1650,-1872,-928,-1004,-4796,-1306,-2223,-679,-4797,-4798,-4799,-4800,-1461,-4801, +-4802,-4803,-4804,-263,-4805,-4806,-4807,-440,-4808,-264,-262,-4149], +[0,-4809,-2446,-2006,-932,-2125,-4810,-2469,-1942,-2019,-3628,-2410,-4198,-3037,-3738,-1534,-3040,-3041,-1772,-4811,-3617, +-3052,-2174,-2278,-4812,-969,-940,-962,-967,-428,-970,-1945,-4813,-427,-4814], +[0,-4810,-4158,-4165,-3816,-4815,-3960,-856], +[1,3,1096], +[0,1097,1098,1099,5], +[0,-2921,-4816,-4817,-1085,-3649,-4818,-1699,-2476,-4819,-4820,-4821,-4822,-4823,-4824,-4825,-4826,-4827,-4828,-4829, +-4830,-4831,-4832,-4833,-4834], +[0,-4835,-3983,-4836,-4837,-3250,-4838,-1313,-1449,-2006,-4839,-2318,-2466,-4840,-4841,-2469,-4842,-4843,-4844,-4845], +[0,-3095,-856,-3438,-4846,-4679,-4847,-2476,-3944], +[1,3,1101], +[0,1102,1103,1104,4], +[0,-4848,-3649,-4825,-4827,-4843], +[0,-4849,-4850,-4851,-1030,-2466,-2469,-2548,-353,-4842], +[0,-3690,-856,-1030,-3438,-4847], +[1,3,1106], +[0,1107,1108,1109,4], +[0,-4852,-4853,-4854,-823,-2792,-4855], +[0,-4856,-4857,-4858,-4859,-4860,-4861,-3035,-3617,-4862,-3621,-523,-617,-652,-767,-1004,-1323,-1654,-4863,-1970,-2253, +-2379,-2410], +[0,-4864,-4865,-4866,-4867,-4868,-4869,-4870,-4871,-4872,-4043,-3160,-3100,-475,-2006,-2476,-3440,-4873,-4004,-3634], +[1,3,1111], +[0,1112,1113,1114,10], +[0,-4852,-4853,-4854,-4874,-823,-4855], +[0,-4856,-3621,-4875,-4876,-4877,-4878,-4879,-523,-652,-767,-1654,-4863,-4880,-2253,-4881], +[0,-4864,-4865,-4866,-4867,-4868,-4869,-4870,-4871,-4872,-4043,-3160,-3100,-3440,-4873,-4004,-3634,-4881,-4882,-4883], +[1,3,1116], +[0,1117,1118,7,4], +[0,-4884], +[0,-4885,-4886,-4887,-4888,-4889,-928,-1344,-1449,-1534,-1654,-1788,-1942], +[1,3,1120], +[0,1121,1122,1123,4], +[0,-2006,-2019,-3654,-261,-4890,-4891,-4892], +[0,-2466,-2006,-2361,-1885,-4893,-2019,-3517,-2410,-4228,-2089,-3040,-4894,-3523,-3649,-2795,-1606,-4785,-3525,-2085], +[0,-3671,-856,-2257,-4895,-4896,-4897,-4898,-1599,-4899,-4900,-4901,-3095,-3098,-2006,-2476,-475,-2299,-4902], +[1,3,1125], +[0,1126,1127,110,6], +[0,-4903,-4904,-3165,-4905,-44,-3946,-195,-4906,-196,-197,-4907,-4908,-4909,-4910,-4911,-4912,-595,-4913,-682,-747,-809, +-4914,-4915,-4916,-4917,-4918,-4919,-4920,-4921,-4922,-4923,-4924,-3123,-4925,-4926,-4927,-4928,-4929,-4930,-4931,-4932, +-4933,-4934,-4935,-4936,-4937,-4938,-2002,-4939,-4940,-4941,-4942,-4943,-2003,-4944,-4945,-4946,-4947,-2004,-2013,-4948, +-4949,-4950, +-2053,-4951,-2344,-2345], +[0,-3139,-23,-4952,-4953,-162,-3778,-4954,-4955,-4773,-3562,-4757,-4762,-4763,-4754,-4956,-4957,-4958,-4749,-4760,-4959, +-406,-407,-409,-410,-4960,-3136,-4961,-4962,-4963,-4964,-3044,-3803,-4965,-4966,-3040,-4967,-3087,-3052,-4968,-4969, +-4970,-4971,-4972,-427,-428,-4973,-4974,-4975,-534,-4976,-668,-674,-767,-4977,-881,-4978,-3808,-932,-933,-940,-948,-952, +-958, +-959,-962,-963,-969,-970,-4756,-978,-1026,-4979,-1077,-1103,-1107,-1339,-1344,-1352,-1359,-1360,-1376,-1404,-1415,-4980, +-1416,-1419,-1421,-4981,-4982,-1437,-1449,-4983,-3134,-1534,-1548,-4984,-1662,-1805,-1942,-1943,-1950,-1955,-1959,-1983, +-4985,-4986,-4987,-2006,-2012,-2016,-2017,-2019,-3051,-4988,-4989,-4990,-4991,-2044,-4992,-4993,-2093,-2094,-4994,-4995, +-4996,-2177,-2205, +-2214,-2281,-4997,-4998,-2282,-4999,-5000,-2334,-2379,-2402,-2410,-5001,-2502,-5002,-5003], +[1,3,1129], +[0,1130,166,111,4], +[0,-5004,-5005,-5006,-5007,-2741,-5008,-1085,-1548,-5009,-5010,-2355,-2446], +[1,3,1132], +[0,1133,166,111,5], +[0,-5004,-5005], +[1,3,1135], +[0,1136,1137,111,4], +[0,-5006,-5007,-2741,-5008,-5025,-1085,-1343,-1548,-5026,-1729,-5009,-5027,-5010,-2355,-2446], +[0,-5028,-3044,-3037,-5011,-3738,-519,-865,-1771,-1942,-5012,-2376,-2379,-5013,-2388,-2389,-2410,-2501,-2503,-2509], +[1,3,1139], +[0,1140,1141,1142,6], +[0,-1110], +[0,-50,-5029,-5030,-932,-940,-965,-975,-2299,-2410,-2411], +[0,-932,-727,-5031,-2299], +[1,3,1144], +[0,1145,1146,1147,5], +[0,-3117,-5032,-5033,-461,-743,-5034,-5035,-1496,-1588,-5036,-5037,-3169,-2213], +[0,-5038,-3983,-365,-5039,-3037,-3172,-5040,-2127,-2299,-2301,-2410,-2466,-2469], +[0,-3161,-5041,-2299,-3176,-2466], +[1,3,1149], +[0,1150,1151,1152,5], +[0,-5042,-2814,-823,-1588,-5043], +[0,-2162,-2466,-2299,-3198], +[0,-5044,-5045,-2466,-2299], +[1,3,1154], +[0,1155,1156,1157,5], +[0,-23,-5046,-40,-41,-42,-2699,-5047,-5048], +[0,-534,-1626,-2437,-2501], +[0,-5049,-3839,-2006,-2501,-5050], +[1,3,1159], +[0,1160,1161,1162,5], +[0,-5051,-5052], +[0,-5053,-5054,-767,-2410], +[0,-5055,-5056,-525,-2410,-5057,-2501,-5058], +[1,3,1164], +[0,1165,1166,1167,5], +[0,-620,-2997], +[0,-1107,-1168,-1415,-2162,-2125,-1889,-1942,-749,-1248,-2281,-1232,-2410,-3037,-518,-1238,-1930,-2285,-5059,-5060,-5061, +-5062], +[0,-3754,-3098,-4902,-5063,-5064,-3482,-4012,-3160,-3100], +[1,3,1169], +[0,0,37,1170,10], +[0,-5065,-5066,-5067,-5068,-5069,-5070,-5071,-3100,-2410,-3214,-5072,-5073,-5074,-5075,-5076,-5077,-5078,-5079,-5080, +-5081,-5082,-5083,-5084], +[1,3,1172], +[0,141,142,143,4], +[1,3,1174], +[0,1175,1176,1177,9], +[0,-44,-737,-2387], +[0,-23,-38,-40,-42,-3244,-190,-3983,-3326,-350,-351,-3561,-3266,-5085,-3037,-427,-428,-539,-932,-940,-5086,-5087,-5088, +-5089,-1772,-1942,-2127,-5090,-2200,-5091,-2410], +[0,-5092,-3264,-5093,-5094,-3214,-5095,-3839,-2410], +[1,3,1179], +[0,167,1180,7,4], +[0,-409,-4775,-3040,-3052,-440,-757,-1772,-2006,-2019,-2965,-5097,-5098], +[1,3,1182], +[0,167,1183,1184,5], +[0,-2299,-2300,-3170,-975,-5099,-428,-5098,-365], +[0,-5100,-5101,-2299], +[1,3,1186], +[0,1187,1188,1189,4], +[0,-5102], +[0,-5103,-3136,-427,-5104,-932,-936,-5105,-940,-967,-968,-1415,-1419,-1441,-1446,-1637,-2375,-2376,-2410], +[0,-5106,-5107,-5108,-5109,-5110,-3100,-3323,-3105], +[1,3,1191], +[0,1192,1193,1194,5], +[0,-44,-406], +[0,-795,-2410,-5111,-1771], +[0,-3634,-795,-3160,-5092,-4868,-5112,-4867,-4866], +[1,3,1196], +[0,1197,1198,1199,4], +[0,-4984,-5113,-1863,-1950,-44,-22,-5114,-5115], +[0,-1449,-2410,-5111,-635,-658,-5116,-407,-5117,-5118], +[0,-3634,-3160,-5092,-1449,-5119,-4868,-5112,-4867,-4866], +[1,3,1201], +[0,1202,1203,1204,4], +[0,-5120,-5113,-2745,-1863,-28,-5115], +[0,-1449,-1001,-2127,-2469,-2410,-5111,-5121,-1950,-5122,-350,-5117,-5123], +[0,-3634,-5092,-1415,-1449], +[1,3,1206], +[0,1207,1208,1209,10], +[0,-668,-5120,-1418,-1950,-5124], +[0,-1415,-1344,-2006,-932,-1942,-21,-720,-2410,-23,-3136,-3040,-1952,-2034,-44,-2174,-3141,-2052,-5125,-796,-3081,-3153, +-3156,-5126], +[0,-3634,-5127,-1415,-2034], +[1,3,1211], +[0,39,1212,1213,5], +[0,-406,-407,-3040,-3052,-668,-5128,-1418,-5111,-1772,-2006,-2019,-2125,-2410], +[0,-3634,-2006,-3160,-5092,-1449,-5119,-4868,-5112,-4867,-4866], +[1,3,1215], +[0,0,1216,1217,4], +[0,-1392,-1449,-2006,-1001,-928,-2379,-5129,-2019,-2745,-2410,-5111,-3040,-5116,-5130,-5089,-5131,-5087,-5132,-406,-5133, +-5086,-409,-5134,-5088,-407,-5135,-5136,-3626,-948,-5137], +[0,-5138,-5139,-2006,-3634], +[1,3,1219], +[0,1220,0,1221,6], +[0,-4603,-5140,-412,-417,-418,-419,-420], +[0,-5141,-3122,-3445,-1334,-3161,-3690], +[1,3,1223], +[0,0,0,1224,9], +[0,-5141,-4601,-4602,-3578,-3445,-743], +[1,3,1226], +[0,0,0,1227,11], +[0,-5141,-4601,-4602,-3578,-3445,-5142,-743], +[1,3,1229], +[0,1230,1231,168,4], +[0,-5143], +[0,-652,-2392,-1344,-2410,-3037,-411,-2581,-86,-5144,-3307], +[1,3,1233], +[0,0,0,1234,6], +[0,-5141,-4601,-4602,-3578,-3445,-990], +[1,3,1236], +[0,0,0,1237,9], +[0,-5141,-4601,-4602,-3578,-3445,-5145,-5146,-5147], +[1,3,1239], +[0,1240,0,1241,4], +[0,-416], +[0,-5141,-4601,-4602,-3578,-3445,-5148,-1389,-5149,-5150], +[1,3,1243], +[0,1244,0,1245,6], +[0,-4603,-5151,-422,-423], +[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105], +[1,3,1247], +[0,1248,0,1249,4], +[0,-5143,-1640,-5152,-412,-413,-2701,-418,-421], +[0,-5141,-4601,-4602,-3578,-3445,-4616], +[1,3,1251], +[0,169,0,1252,8], +[0,-5141,-4601,-4602,-3578,-3445,-3122], +[1,3,1254], +[0,1255,0,1256,5], +[0,-1640,-415,-5153], +[0,-5141,-4601,-4602,-3578,-3445,-4616,-2178,-4618], +[1,3,1258], +[0,1259,0,1260,9], +[0,-1640,-5153], +[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105,-2401,-3214], +[1,3,1262], +[0,0,0,1263,6], +[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105,-2435,-5154,-5101], +[1,3,1265], +[0,0,0,77,5], +[1,3,1267], +[0,1268,0,1269,9], +[0,-5190,-5191,-5192,-5193,-2387], +[0,-5194,-5195,-3445,-5196,-5197,-3690], +[1,3,1271], +[0,1272,1273,1274,11], +[0,-1353,-5198,-5199,-429,-5200,-5201,-5202,-3331], +[0,-469,-1610,-2469,-1942,-5203,-4251,-3040,-1605,-5204,-2429,-4049,-3664,-1618,-5205,-5206,-5207], +[0,-932,-5208,-3784,-2410], +[1,3,1276], +[0,1277,112,1278,6], +[0,-812,-3782,-5202,-3331,-5209], +[0,-3272,-3217,-3214,-2410,-3215,-4132,-932], +[1,3,1280], +[0,1281,112,1282,5], +[0,-3782,-189,-3331,-5209], +[0,-932,-2410,-5210], +[1,3,1284], +[0,1285,1286,1287,8], +[0,-161,-163,-5211,-682,-5212,-5213,-906,-5214,-5215,-1311,-1548,-5216,-1666,-1967,-5217,-4922,-5218,-4929,-4934,-2002, +-2004,-2030,-4991,-2055,-2113,-2192,-2489,-5219], +[0,-21,-23,-26,-33,-38,-39,-40,-41,-42,-86,-3307,-407,-409,-3059,-5220,-3044,-5221,-3040,-3052,-427,-428,-5222,-5223,-523, +-528,-533,-534,-5224,-540,-5225,-5226,-720,-5227,-778,-796,-915,-916,-2760,-932,-969,-970,-1041,-1077,-1331,-1344,-1415, +-5228,-4981,-5229,-1534,-1643,-1667,-1814,-1942,-2000,-2006,-2019,-2049,-2052,-2251,-2275,-2281,-3085, +-5230,-5231,-5232,-2410,-2417,-2437,-2501,-2502,-2503], +[0,-2006,-3159,-3095,-3098,-3100,-5233], +[1,3,1289], +[0,1290,0,170,5], +[0,-703,-1436,-1548,-1699,-5234,-2650,-5235,-5236,-5237,-5238,-5239,-1320,-5240,-5241,-5242,-5243,-5244,-5245], +[1,3,1292], +[0,171,0,1293,5], +[0,-5248,-5249,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[1,3,1295], +[0,1296,0,1297,4], +[0,-5254], +[0,-3167,-5255,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[1,3,1299], +[0,171,0,1300,4], +[0,-3962,-5256,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[1,3,1302], +[0,1303,0,1304,8], +[0,-5257,-436], +[0,-5258,-5259,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[1,3,1306], +[0,0,0,1307,6], +[0,-5260,-5261,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[1,3,1309], +[0,1310,1311,1312,5], +[0,-1983,-754,-1004,-2401,-724,-5262,-5263,-5264,-5265,-442], +[0,-1415,-2177,-2375,-2293,-533,-2410,-23,-4198,-3136,-3037,-5266,-2581,-3617,-5267,-4203,-3732,-3697], +[0,-5268,-3100,-5269,-5270,-5271,-3441,-5272], +[1,3,1314], +[0,1315,1316,1317,4], +[0,-5273,-5274,-5275,-5276,-5277,-5278,-5279,-5280], +[0,-2384,-2392,-2391,-2466,-1344,-932,-2125,-5281,-2469,-928,-1889,-2910,-2281,-1747,-1874,-5282,-2214,-2302,-2410,-3037, +-1534,-1771,-3040,-5283,-5284,-2581,-5285,-5286,-2284,-5287,-5288,-5289,-2411,-5290,-3664,-5291,-2832,-5292,-5293,-2282, +-5294,-2970,-5295,-5296,-5297,-4999], +[0,-5065,-5298,-5299,-5300,-5301,-5302,-5303,-5304,-5305,-5067,-5306,-5307,-5308,-5309,-5310,-5069,-5311,-3100,-2410, +-5312,-5313,-5314,-5315,-5316,-5072,-5073,-5074,-5317,-5318,-5083], +[1,3,1319], +[0,1320,1321,1322,5], +[0,-753,-2314,-23,-635,-1588,-40,-2082,-5319,-3343,-3344,-3370,-3377], +[0,-4787,-2466,-461,-2892,-1863], +[0,-3100,-2466,-5044,-439], +[1,3,1324], +[0,1325,1326,1327,6], +[0,-23,-5320,-5321,-5322,-4776,-2041], +[0,-5323,-2006,-2019,-2923,-2892], +[0,-525,-5324,-2006,-2041,-2466,-5044], +[1,3,1329], +[0,1330,1331,1332,5], +[0,-429,-1026,-2411,-2478], +[0,-5325,-3037,-932,-980,-999,-5326,-1942,-2392,-2410,-2469,-2476], +[0,-2476,-5327,-5328,-932,-2410], +[1,3,1334], +[0,1335,1336,1337,10], +[0,-469,-470,-5329,-1335,-5330,-1851,-3122,-2187,-5331,-3434,-2548], +[0,-1004,-1654,-2250,-2293], +[0,-1004,-3438,-4847,-856], +[1,3,1339], +[0,1340,1341,113,5], +[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5339,-5340,-747,-823,-5341,-909,-5342,-5343,-5344, +-3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, +-4942,-2003,-4944,-2004,-2013,-2965,-2028,-5350,-5351,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5354, +-5355,-2427,-2429, +-5356,-2435,-5357,-5358,-5359], +[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3803,-3040,-3087,-3052,-5364,-5365,-5366,-932,-4597,-1026,-1031, +-5367,-5368,-1344,-1534,-1942,-1944,-1945,-2006,-2019,-2281,-2379,-2410,-2469,-5369,-5370], +[0,0,0,7,9], +[1,3,1344], +[0,0,1345,1346,4], +[0,-3037,-427,-428,-932,-934,-958,-2125,-2127,-2142,-2410], +[0,-3445,-5373,-5374,-5375,-5376,-5377,-5378], +[1,3,1348], +[0,1349,1350,1351,4], +[0,-5379], +[0,-23,-3204,-40,-43,-5380,-5381,-3621,-3037,-507,-708,-5382,-932,-1471,-1475,-1476,-1479,-5383,-1480,-1482,-1486,-1654, +-1771,-1788,-1810,-2125,-2127,-2128,-5384,-2131,-2137,-2139,-2141,-5385,-2379,-5386,-2410], +[0,-5387,-5388,-5389,-997,-5390,-5391,-5392,-5393,-5394,-5395,-5396], +[1,3,1353], +[0,1354,172,1355,5], +[0,-1641,-5397], +[0,-5398,-5399,-5400,-459], +[1,3,1357], +[0,1358,114,1359,5], +[0,-510,-615,-1548,-1671,-2071], +[0,-5401,-460,-3578], +[1,3,1361], +[0,1362,0,7,10], +[0,-461], +[1,3,1364], +[0,1365,1366,1367,8], +[0,-523,-668,-719,-1039,-1077,-1376,-1816,-5402,-2205], +[0,-350,-4062,-351,-3266,-5403,-3048,-5404,-3049,-3037,-2125,-2127,-4063,-5405,-2142,-5232,-2387,-2388,-2410], +[0,-687,-463,-2476,-2006,-5406,-5407,-2410,-3967], +[1,3,1369], +[0,0,1370,1371,4], +[0,-664,-1351,-1654,-1942,-2125], +[0,-5408,-1636,-5409,-2432], +[1,3,1373], +[0,0,27,1374,5], +[0,-5410,-465,-5411,-5412,-5413], +[1,3,1376], +[0,1377,1378,1379,8], +[0,-5414,-5415,-812,-5416,-3222], +[0,-3198,-5417,-3620,-3037,-3664,-2210,-2379,-2392,-2469], +[0,-5418,-5419,-763,-5420,-2166,-4043], +[0,44,15,16,6], +[1,3,1382], +[0,1383,1384,1385,4], +[0,-5450,-5451,-5452,-633,-5453,-724,-812,-5454,-5455,-1004,-5456,-5457,-1336,-5458,-1442,-5459,-5460,-5461,-1646,-5462, +-5463,-5464,-2062,-5465,-2188,-2194,-5466,-5467,-5468,-2446,-2491], +[0,-5469,-767,-1274,-1788,-5470,-2250,-2322,-2331], +[0,-468,-4865,-5471,-2319,-2322,-3634], +[1,3,1387], +[0,1388,1389,1390,5], +[0,-1025,-5472,-5473,-5474], +[0,-5475,-350,-4062,-351,-3267,-3035,-3621,-3037,-5476,-427,-428,-470,-633,-664,-767,-809,-5477,-932,-940,-1107,-1344, +-5478,-1430,-1440,-5479,-1471,-1475,-1482,-1534,-1654,-5480,-1729,-1788,-1942,-5481,-2127,-2140,-2379,-5482,-2410,-5483], +[0,-4182,-4058,-2451,-3926,-1463,-1456,-5484,-5485], +[1,3,1392], +[0,1393,1394,1395,4], +[0,-469], +[0,-5475,-3136,-3037,-427,-428,-469,-932,-940,-1344,-1415,-5479,-1534,-1942,-2375,-2410], +[0,-5486,-3815,-3276,-3926], +[0,45,15,16,10], +[1,3,1398], +[0,34,1399,1400,6], +[0,-1813,-5487], +[0,-472], +[1,3,1402], +[0,1403,1404,1405,4], +[0,-5488,-2438], +[0,-5489,-1654,-1788,-2416], +[0,-5490,-5491,-5492], +[1,3,1407], +[0,0,1408,1409,6], +[0,-2162], +[0,-775,-2162,-3160,-3576,-3577,-5493,-5494], +[1,3,1411], +[0,0,0,173,5], +[1,3,1413], +[0,0,0,1414,5], +[0,-475,-3161,-4865,-5176,-5495], +[1,3,1416], +[0,1417,0,1418,5], +[0,-5496,-5497,-7,-8,-9,-5498,-5499,-510,-518,-668,-722,-778,-784,-812,-5500,-834,-5501,-5502,-5503,-1017,-1041,-5504, +-1077,-5505,-1107,-1331,-1369,-1376,-5506,-1455,-1490,-1492,-1521,-1522,-1548,-1645,-5507,-1743,-1758,-1812,-1816,-1888, +-1908,-2000,-2092,-2114,-2125,-2148,-2163,-5508,-2177,-5509,-2233,-5510,-2275,-2286,-2287,-2330,-2346,-2410,-2437,-2488, +-2501, +-2505,-2508,-2510,-2567], +[0,-475,-477], +[1,3,1420], +[0,0,0,1421,4], +[0,-5175,-3118,-4865,-5495,-3119,-5511,-3098], +[1,3,1423], +[0,0,1424,1425,9], +[0,-3542,-1202,-5512,-1654,-2343], +[0,-5513,-5514,-5515,-5516,-5517,-5518,-5519,-5520,-5521,-5522,-5523,-5524,-5525,-5526,-5527,-5528,-5529,-5530,-5531, +-5532,-5533,-687,-5534,-712,-714,-5535,-4376,-3958,-4000,-5536,-5537,-5538,-5539,-5540,-5541,-5542,-5543,-5544,-1496, +-1573,-5545,-5546,-5547,-5548,-5549,-5550,-5551,-5552,-2265,-5553,-3770,-3974,-5554,-3975,-5555,-5556,-2547,-5557], +[1,3,1427], +[0,1428,115,1429,6], +[0,-5558], +[0,-5514,-3974,-4000,-687,-2265,-3975,-5559,-5560,-5538,-5550,-2547,-1573,-5545,-3958,-5554,-5561,-5562,-5412,-707,-5563, +-5564,-3965,-5565,-685,-5566,-5567,-5568], +[1,3,1431], +[0,0,1432,1433,10], +[0,-2541,-519,-2384,-480], +[0,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-3958,-5554,-5569,-5570, +-5571,-5572,-4004,-5573,-5574], +[1,3,1435], +[0,0,1436,1437,5], +[0,-2541,-519,-2384,-5575], +[0,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958,-5554], +[1,3,1439], +[0,0,0,1440,6], +[0,-5514,-714,-687], +[1,3,1442], +[0,1443,1444,1445,11], +[0,-4903,-5576,-44,-3946,-3763,-5577,-5578,-5579,-513,-786,-809,-5580,-5581,-1548,-1549,-2113,-4951,-5582,-3768,-2345, +-5583,-2489], +[0,-21,-23,-26,-34,-35,-36,-5584,-37,-3396,-5585,-3381,-38,-3382,-3412,-39,-40,-42,-86,-3307,-305,-3326,-3732,-3048,-3136, +-5586,-3164,-5587,-3661,-3037,-5588,-427,-428,-439,-4837,-5589,-5590,-5591,-5592,-441,-4838,-5593,-4817,-5594,-461,-5595, +-518,-523,-528,-533,-534,-538,-5596,-539,-5597,-661,-668,-674,-708,-5339,-5598,-719,-5599,-767, +-778,-779,-5600,-807,-5601,-5602,-4978,-5603,-928,-3808,-929,-932,-940,-957,-958,-959,-963,-5604,-967,-980,-1026,-4979, +-1077,-1107,-1111,-1125,-1168,-1174,-5605,-1261,-1331,-1344,-5606,-5607,-1415,-1419,-1421,-5608,-5609,-1439,-5610,-3025, +-1521,-1522,-5611,-5612,-1534,-5613,-1600,-1601,-1602,-1603,-5614,-1610,-5615,-1643,-1646,-1650,-1662,-1666,-1779,-1889, +-1908,-1942, +-1952,-1955,-1959,-2000,-4242,-2098,-5616,-5617,-3868,-5618,-2125,-5619,-5620,-2177,-2218,-5621,-2275,-2281,-4997,-4998, +-2282,-4999,-2284,-2335,-2347,-2355,-2375,-2376,-2392,-2402,-2410,-5622,-2427,-2437,-5001,-2466,-2476,-5623,-5624,-2478, +-2480,-5625,-2481,-5626,-2483,-2484,-5627,-2486,-2501,-2502,-2503,-2505,-2508,-5628,-5002], +[0,-2476,-3944,-3158,-3099,-485,-5629,-3095,-3098,-3160,-3161,-3100], +[1,3,1447], +[0,1448,1449,110,4], +[0,-703,-809,-44,-3165,-2345,-4903,-5630,-5631,-5632,-5633,-4910,-5634,-5635,-4904,-5636,-5637,-5638,-5639,-5640,-5641, +-5642,-5643,-5644,-5645,-5646,-5647,-5648,-5649,-5650,-5651,-5652,-5653,-5654,-5655,-5656,-5657,-5658,-4905,-5659,-5660, +-5661,-5662,-5663,-5664,-5665,-4951,-5666,-5667], +[0,-469,-1816,-2592,-2323,-2392,-881,-1107,-1415,-1805,-523,-668,-4977,-1344,-1359,-1392,-1449,-5668,-1880,-2006,-2193, +-865,-932,-1031,-1437,-1548,-2093,-2125,-5669,-2177,-464,-5595,-5670,-1955,-2402,-2501,-781,-1077,-1103,-4980,-1646, +-1662,-1942,-5671,-5002,-767,-5672,-1026,-3134,-4984,-1978,-4985,-2019,-5673,-5674,-1729,-1888,-2094,-2095,-2205,-2214, +-2410,-3136,-3037, +-5346,-1339,-1534,-2026,-4994,-162,-4647,-5675,-3040,-5676,-5677,-4986,-5678,-5679,-3744,-305,-4964,-3044,-3199,-4973, +-1737,-1950,-5680,-2101,-2581,-3778,-5681,-5682,-5683,-4960,-3803,-4972,-3649,-4982,-5684,-4954,-3562,-5685,-3048,-4961, +-5686,-3624,-5687,-3051,-4773,-5688,-3052,-1404,-1416,-5689,-2044,-4992,-2090,-3139,-5690,-3746,-4106,-5691,-3745,-3747, +-283,-5692,-959,-1352, +-4988,-5001,-5693,-1292,-4981,-5694,-406,-4974,-952,-1421,-4989,-5695,-409,-962,-1419,-5696,-5697,-5698,-4983,-2502, +-4971,-3459,-5699,-407,-970,-5700,-4963,-5701,-5702,-5703,-410,-2914,-5704,-4968,-5705,-4995,-4990,-4962,-5706,-4955, +-5707,-5708], +[1,3,1451], +[0,1452,0,7,5], +[0,-1805], +[0,67,15,16,4], +[1,3,1455], +[0,1456,1457,1458,9], +[0,-3278,-3279,-3299,-3283,-3288,-5709,-5710,-3304,-3305,-5711,-5712,-5713,-5714,-1537,-3297], +[0,-3285,-3286,-3287,-5715,-3302,-3303,-86,-3307,-5716,-3308,-3309,-5717,-3310,-3311,-3312,-5718,-5719,-617,-823,-932, +-940,-985,-1004,-1077,-1344,-1442,-1534,-1685,-1724,-1889,-2125,-2127,-5720,-4753,-2210,-2359,-2410,-3313,-2416,-5721, +-2446], +[0,-4902,-5722,-3690,-488,-856,-5723,-1789], +[1,3,1460], +[0,1461,1462,174,4], +[0,-620,-719,-5724,-3808,-5725,-1077,-1107,-1276,-1351,-1437,-5726,-1548,-1600,-1753,-1955,-2177,-2275,-2501,-2503,-2520], +[0,-3044,-3621,-3037,-932,-5727,-943,-958,-966,-968,-1654], +[1,3,1464], +[0,1465,1466,1467,4], +[0,-5729,-888,-2177,-2433,-2550], +[0,-4370,-3037,-3199,-3041,-519,-1077,-2410], +[0,-489,-1599,-5730,-3690,-4100,-856,-3262,-5731,-687,-5732,-3958,-3691,-5728,-5733,-5734], +[1,3,1469], +[0,1470,1471,1472,5], +[0,-812,-5735,-1730,-1465,-2456], +[0,-664,-665,-1654,-2210,-2211], +[0,-5736,-5737,-5738,-5739,-5740,-5741], +[1,3,1474], +[0,1475,0,7,4], +[0,-5742,-5743,-3320,-5744,-2387], +[1,3,1477], +[0,1478,0,1479,8], +[0,-5745,-5742,-494,-5743,-5746,-5744,-2387,-5747], +[0,-3217,-4795,-5748,-3214,-5749,-1764,-2006], +[1,3,1481], +[0,1482,1483,7,6], +[0,-5743,-5744,-2387,-5750], +[0,-5751,-3136,-3037,-1122,-1123,-1415,-2125,-2127,-2375,-2388,-2410], +[1,3,1485], +[0,1486,1487,7,6], +[0,-494,-5752,-2387], +[0,-5751,-3136,-5753,-1037,-1122,-1123,-1415,-5754,-2125,-2127,-2375,-2388,-2410], +[1,3,1489], +[0,0,1490,1491,5], +[0,-708,-756,-5755,-796,-1104,-1405,-1654,-1657,-1663,-1788,-2174,-2449], +[0,-5756,-1847,-3590,-2444,-3966,-3551,-3209,-5757,-4792,-3994], +[1,3,1493], +[0,1494,1495,1496,4], +[0,-2959,-5758,-5759,-5760,-5761,-523,-615,-5762,-1548,-1582,-1666,-1667,-5763,-2177,-5764,-2531], +[0,-5765,-5766,-2860,-3470,-3471,-5767,-3044,-3621,-3037,-5768,-3199,-4204,-4733,-664,-665,-741,-1654,-1942,-2174,-2210, +-2379,-2410,-2542], +[0,-5769,-5271,-3634,-4864,-3162,-5770], +[1,3,1498], +[0,1499,1500,1501,10], +[0,-5771,-5772,-5773,-5038,-5774,-5775,-5776,-5777,-5778,-5779,-5780,-5781,-5782,-5783,-5784,-5785,-5786,-5787,-5788, +-5789,-5790,-5791,-5792], +[0,-1788,-1722,-1654,-2210,-932,-1942,-2410,-5793,-3037,-3621,-4372,-3199,-966,-428,-5794,-427], +[0,-5795,-5796,-5797,-5798,-5799,-5800,-5801,-5802,-5803,-5804,-5805], +[1,3,1503], +[0,1504,1505,1506,5], +[0,-5806,-5807,-5808,-5809,-5810,-5811], +[0,-5812,-3136,-3037,-427,-428,-5813,-932,-940,-948,-958,-967,-1122,-1415,-1942,-5814,-1944,-5815,-2251,-2375,-2379,-2410], +[0,-5816,-5817,-3445,-5818,-1122,-5819,-3967,-2410,-5820], +[1,3,1508], +[0,1509,1510,1511,4], +[0,-5821,-510,-5822,-2062,-5823,-2325,-5824], +[0,-5825,-664,-1446,-1650,-1654,-2125,-5826,-2323,-2555], +[0,-5409,-501,-5827,-5408,-2323], +[1,3,1513], +[0,0,1514,7,8], +[0,-664,-1415,-1942], +[1,3,1516], +[0,0,1517,1518,10], +[0,-32,-5828,-932,-1654,-1788], +[0,-687,-3215,-503,-5829,-4377], +[0,45,15,16,6], +[1,3,1521], +[0,1522,1523,1524,6], +[0,-655,-5830,-5831,-5832], +[0,-5833,-5834,-516,-5835,-932,-993,-1065,-5836,-1365,-1777,-1788,-1794,-2156,-2322], +[0,-5837,-5838,-5839,-5840,-5396,-3582,-5841,-5842,-5843], +[1,3,1526], +[0,0,14,1527,6], +[0,-5839,-506,-5844,-5845,-5846,-5847], +[1,3,1529], +[0,1530,1531,1532,5], +[0,-2444,-5848,-655,-5849,-1797], +[0,-2322,-468,-753,-767,-21,-5850,-23,-1798,-40,-3335], +[0,-507,-4865], +[1,3,1534], +[0,0,1535,7,4], +[0,-2322,-1032], +[1,3,1537], +[0,1538,1539,1540,4], +[0,-820,-5851,-5852,-1794,-5853,-5854], +[0,-633,-1405,-1654,-1939], +[0,-507,-5855,-5856,-509,-3440,-1001,-1003,-2198,-5857,-4679,-4873,-4004,-3634,-3636,-5858,-5119], +[1,3,1542], +[0,0,1543,1544,4], +[0,-1788,-664,-2148,-1446,-1471,-1654,-2550,-932,-2127,-2177,-674,-571,-615,-1077,-589,-633,-23,-925,-1482,-5859,-566, +-1472,-5860,-559,-5861,-5862,-32,-1483,-539,-1487,-1479,-5863,-2137,-535,-5864,-549], +[0,-510,-5865,-3551,-3590], +[1,3,1546], +[0,0,1547,1548,9], +[0,-3037,-5866,-2319,-2379,-2410], +[0,-510,-5867,-3184,-1334,-5868,-5149,-1961,-3844], +[1,3,1550], +[0,1551,1552,7,4], +[0,-2122], +[0,-519,-932,-1942,-1729,-1939,-5869,-1534,-969,-933,-958,-940,-962], +[1,3,1554], +[0,0,1555,1556,4], +[0,-23,-5870,-40,-42,-5871,-3136,-533,-756,-1415,-1534,-1763,-5872,-5873,-1939,-1942,-2379,-2410], +[0,-2451,-5874,-510], +[1,3,1558], +[0,0,0,1559,5], +[0,-514,-4865], +[1,3,1561], +[0,1562,1563,1564,6], +[0,-2359,-714,-5875,-2177,-5876,-5877,-5878], +[0,-1788,-2322,-932,-1777,-516,-2156,-5834], +[0,-5879,-5880,-5881,-1764,-5879], +[1,3,1566], +[0,1567,1568,1569,6], +[0,-719,-1276,-5882,-1729,-5883,-2177], +[0,-23,-43,-539,-5884,-664,-708,-767,-1609,-1654,-1788,-2226,-2250], +[0,-5885,-5886,-5887,-5888,-1573,-3262,-5889,-5890,-5891,-1306], +[1,3,1571], +[0,1572,1573,1574,5], +[0,-679,-714,-5892,-5893,-1107,-5894,-1574,-1816,-5895,-2105,-5896,-2550], +[0,-526,-559,-664,-932,-933,-958,-962,-969,-1654], +[0,-5885,-3015,-1380,-5897,-2490], +[1,3,1576], +[0,1577,0,1578,10], +[0,-635,-658,-5898,-1863,-1934], +[0,-518,-775,-5899,-1889,-3583], +[1,3,1580], +[0,1581,1582,1583,8], +[0,-5900,-461,-462,-482,-5901,-506,-5902,-5903,-668,-5904,-680,-5905,-696,-5906,-5907,-5908,-5909,-812,-5910,-1040,-1111, +-5911,-1366,-1396,-1398,-5912,-5913,-1681,-1826,-5914,-1864,-1877,-1951,-5915,-4621,-5916,-5917,-2530,-2550], +[0,-5028,-5918,-3037,-480,-652,-999,-1001,-2210,-2319,-2331,-2384,-2410,-2541,-5747], +[0,-5919,-4004,-4043,-3634,-519,-5920,-5921,-5922,-4873,-5732,-687,-1415,-1654,-2322,-2319,-1989,-1412,-507,-5855,-1961, +-5923,-510,-5924,-5867,-3262,-5925,-5926,-5927,-5928,-5119,-4045,-1001,-2410], +[1,3,1585], +[0,1586,1587,1588,4], +[0,-668,-909,-1543,-1548,-1639,-1650,-2234,-5929], +[0,-3035,-3044,-4036,-3621,-3037,-3714,-4372,-3046,-615,-664,-5930,-1077,-1344,-1534,-1654,-1942,-5931,-2125,-2195,-2251, +-2330,-2388,-2410,-2501,-2503], +[0,-2501,-5932,-5050,-2410], +[1,3,1590], +[0,1591,1592,1593,5], +[0,-2165,-2435,-2444,-2446,-640,-997,-2536,-5933,-5934,-1985], +[0,-664,-1471,-1654,-932,-708,-1412,-2501,-793,-2416,-633,-2410,-3037,-1455,-711,-1413,-1481,-5935,-5936,-1475], +[0,-3690,-5937,-5817,-5938,-5939,-5940,-5941,-5942,-5943,-5944,-5945,-5946,-5947,-5948,-5949,-5950,-5951,-5952,-5953, +-5954,-5955,-5956,-5957,-5958,-5959,-5960,-5961,-5962,-5197,-5963,-5964,-5965,-5966,-5967,-5968], +[1,3,1595], +[0,0,1596,1597,4], +[0,-664,-1107,-668,-702,-999,-1127,-1344,-1446,-1449,-1471,-1654,-2210,-932,-1437,-753,-928,-1110,-1821,-1376,-5969,-1942, +-2416,-5970,-5113,-5971,-1474,-5972,-2410,-23,-3037,-5973,-925,-5974,-1339,-1482,-1489,-1534,-1771,-5975,-5976,-1320, +-1737,-4916,-5977,-5978,-2251,-5979,-40,-5980,-1480,-2173,-5981,-1134,-1149,-1491,-1136,-1148,-5982,-1475,-2253,-3345, +-940,-1479, +-5983,-5984,-36], +[0,-5985,-4665,-3634,-5119,-4873,-3440,-5986], +[1,3,1599], +[0,1600,1601,1602,4], +[0,-1069,-5987,-1063], +[0,-652,-1168,-668,-1344,-1471,-1654,-2210,-932,-1685,-1831,-2127,-1004,-5988,-1077,-5969,-1646,-756,-767,-1070,-1100, +-1276,-3727,-2325,-2410,-23,-617,-925,-1489,-1413,-1948,-5989,-1481,-516,-86,-5990,-40,-5991,-4062,-4066,-3326,-1488, +-2140,-5992,-1475,-1487,-1479,-1490,-350,-5993,-1486,-5994,-5995,-351,-5996,-5997,-3307], +[0,-2533,-1334,-5998,-1961,-3966,-4865,-4213,-3691,-3690,-3323], +[1,3,1604], +[0,1605,1606,1607,4], +[0,-5999,-1015,-6000,-6001,-2062,-2105,-2424,-2446,-2451,-2536,-2538,-1456], +[0,-6002,-633,-756,-6003,-1127,-1154,-2778,-1405,-1471,-1475,-1478,-6004,-1479,-1480,-1482,-1483,-1654,-1657,-1722,-2198, +-2416,-2491], +[0,-3966,-5800,-6005], +[1,3,1609], +[0,1610,1611,137,4], +[0,-527,-556,-566,-567,-719,-742,-3179,-1107,-1548,-6006,-1850,-2218,-2231,-6007,-679], +[0,-530], +[1,3,1613], +[0,1614,1615,138,9], +[0,-6008,-529,-6009,-6010,-566,-567,-568,-569,-570,-572,-742,-812,-1460,-1548,-1645,-1850,-6011,-2218,-2231], +[0,-530,-6012,-556], +[1,3,1617], +[0,1618,1619,7,5], +[0,-2114,-47,-25,-46,-22,-983], +[0,-1344,-1654,-815,-932,-986,-1942,-1534,-528,-6013,-958,-956,-967], +[1,3,1621], +[0,1622,1623,7,5], +[0,-6010,-567,-570,-831,-1451,-1548,-2231,-6014], +[0,-530,-572], +[1,3,1625], +[0,1626,0,7,4], +[0,-567,-1548,-6015,-2177], +[1,3,1628], +[0,1629,0,7,5], +[0,-567,-6012], +[1,3,1631], +[0,0,0,1632,6], +[0,-525,-2476,-4146], +[1,3,1634], +[0,1635,1636,7,4], +[0,-4020,-4776,-539,-6016,-668,-1119,-2218], +[0,-23,-4034,-4035], +[1,3,1638], +[0,175,1639,1640,8], +[0,-21,-23,-32,-40,-652,-932,-940,-967,-1110,-1344,-1534,-1942,-2501], +[0,-2501,-5932,-525,-3184,-3186,-3551], +[1,3,1642], +[0,0,1643,1644,8], +[0,-23,-34,-40,-526,-527,-528,-5884,-6017,-558,-6018,-560,-568,-570,-6019,-932,-940,-943,-958,-966,-967,-968,-974,-1654, +-1938,-1942,-2125,-2156], +[0,-3220,-6020], +[1,3,1646], +[0,1647,1648,1649,4], +[0,-1797], +[0,-2322,-932,-2125,-526,-527,-1365,-23,-528,-566,-6021,-40,-557,-559,-2156,-958,-934,-537,-3840,-535,-3382,-6022,-550], +[0,-525,-3862,-6023,-6024,-3966], +[1,3,1651], +[0,116,35,21,5], +[1,3,1653], +[0,1654,1655,1656,10], +[0,-3341], +[0,-23,-41,-6025,-527,-6026,-756,-932,-933,-940,-958,-967,-1031,-1344,-1534,-1613,-1763,-1942,-6027], +[0,-3220,-485], +[1,3,1658], +[0,1659,1660,1661,4], +[0,-24,-6028,-4003,-6029,-6030], +[0,-21,-23,-3362,-3204,-43,-664,-756,-767,-1654,-1788,-6031,-2250], +[0,-1405,-525,-3862,-6032], +[1,3,1663], +[0,1664,1665,1666,4], +[0,-3341,-47,-1107,-1548,-6033], +[0,-21,-23,-6034,-36,-3201,-3077,-38,-40,-41,-6035,-43,-4754,-510,-535,-540,-664,-6036,-6037,-1549,-1654,-1993,-2011], +[0,-3220,-6038,-1548,-3209], +[1,3,1668], +[0,1669,1670,1671,6], +[0,-6039,-1107,-1872,-2112,-2114], +[0,-21,-23,-37,-3204,-40,-527,-533,-722,-932,-934,-940,-958,-1344,-1415,-1534,-6040,-2251], +[0,-525,-3220,-3551,-6041,-6042,-6043,-2114,-6044,-6045,-4792,-6024], +[1,3,1673], +[0,0,1674,7,5], +[0,-1415,-6046], +[1,3,1676], +[0,0,0,21,5], +[1,3,1678], +[0,0,0,21,4], +[1,3,1680], +[0,1681,35,21,5], +[0,-6047,-6048,-567], +[1,3,1683], +[0,1684,35,21,5], +[0,-6049,-6050,-567,-568], +[1,3,1686], +[0,1687,1688,1689,6], +[0,-6051,-567,-568], +[0,-526,-546,-555,-559,-664,-1654], +[0,-525,-3220,-6052,-3336], +[1,3,1691], +[0,1692,35,21,5], +[0,-567,-568,-569,-570,-1548], +[1,3,1694], +[0,1695,1696,21,6], +[0,-6053,-567,-568,-570], +[0,-531,-6054], +[1,3,1698], +[0,116,35,21,10], +[1,3,1700], +[0,1701,35,21,4], +[0,-6054,-567], +[1,3,1703], +[0,1704,35,21,5], +[0,-567,-6055,-544], +[1,3,1706], +[0,0,1707,1708,4], +[0,-21,-23,-3194,-3840,-26,-3203,-40,-6056,-41,-43,-528,-6057,-664,-932,-933,-951,-956,-958,-962,-964,-967,-969,-1111, +-1654,-6058,-1942], +[0,-525,-3220,-2006,-6059,-6060], +[1,3,1710], +[0,1711,35,7,4], +[0,-6061], +[1,3,1713], +[0,116,35,21,4], +[1,3,1715], +[0,1716,0,7,6], +[0,-567,-753,-2082], +[1,3,1718], +[0,1719,1720,1721,6], +[0,-40,-41,-24,-3352,-38,-6062,-5584,-36,-3381,-6063,-3382,-6064,-553,-3393,-6065,-3396], +[0,-932,-23,-44,-2156,-958,-934], +[0,-525,-3184,-4795,-3214], +[1,3,1723], +[0,1724,1725,7,5], +[0,-6066,-6067,-545,-6068,-6069,-548,-6070,-6071,-6072,-6073,-6074,-6075,-6076,-6077,-549,-6078,-6079,-6080,-6081,-6082, +-6083,-6084,-550,-6085,-6086,-6087,-554,-635,-1384,-2177], +[0,-526,-528,-530,-531,-539,-558,-566,-664,-708,-932,-6013,-956,-1077,-1548,-1654,-1788,-6088,-2125], +[1,3,1727], +[0,1728,1729,7,6], +[0,-6066,-6068,-6069,-548,-6070,-6071,-6072,-6073,-6074,-6075,-6076,-6077,-549,-6078,-6079,-6080,-6081,-6082,-6083,-6084, +-550,-6085,-6086,-554], +[0,-6012,-531], +[1,3,1731], +[0,1732,0,7,8], +[0,-6089,-544,-6090,-552,-6091,-6092], +[1,3,1734], +[0,1735,0,7,4], +[0,-23,-26,-33,-6065,-6062,-5584,-6093,-3394,-3203,-3409,-38,-40,-41,-42,-44,-3766,-553], +[1,3,1737], +[0,1738,0,7,9], +[0,-6094,-6095,-563], +[1,3,1740], +[0,1741,0,7,5], +[0,-6096,-6017,-564], +[1,3,1743], +[0,1744,0,7,4], +[0,-565,-6097,-543,-546], +[1,3,1746], +[0,1747,0,7,5], +[0,-6067,-6098,-545,-6087,-551], +[1,3,1749], +[0,1750,1751,7,4], +[0,-527,-567,-753,-6099,-1548,-1650,-2234], +[0,-3542], +[1,3,1753], +[0,140,1754,7,8], +[0,-6009,-555], +[1,3,1756], +[0,1757,0,7,4], +[0,-567,-569,-570,-572,-1548], +[1,3,1759], +[0,1760,1761,7,5], +[0,-6008,-6010,-567,-570,-572,-812,-1110,-1384,-1548], +[0,-529], +[1,3,1763], +[0,1764,1765,7,6], +[0,-567,-6100,-1548,-6101], +[0,-529,-572], +[1,3,1767], +[0,0,1768,7,5], +[0,-2319,-633,-23,-6102,-40,-6056,-742,-41,-6103,-3381,-3409], +[1,3,1770], +[0,0,1771,1772,6], +[0,-519,-526,-528,-530,-537,-539,-6104,-559,-562,-668,-708,-767,-932,-6013,-956,-1059,-1788,-2125,-2127,-2128,-2137,-5385, +-6105], +[0,-525,-3214,-3215,-572], +[1,3,1774], +[0,1775,1776,1777,4], +[0,-2424], +[0,-711,-757,-849,-932,-958,-1471,-1485,-1989,-2104,-2127,-2416], +[0,-6106,-6107,-5394,-3122,-3844,-3323,-4865], +[1,3,1779], +[0,1780,1781,1782,11], +[0,-719,-1107,-1376,-1805,-2125,-2387,-2446,-2451], +[0,-6108,-3036,-3049,-3037,-3738,-6109,-3046,-427,-428,-3311,-6110,-6111,-3312,-664,-932,-958,-966,-1654,-1656,-6112, +-2195,-2200,-2335,-2376,-2379,-2402,-2410,-5260,-2501,-2503], +[0,-3445,-574,-1671,-3105,-6113], +[0,44,15,16,4], +[1,3,1785], +[0,0,1786,1787,5], +[0,-756,-1127,-1132,-1162,-6114,-1405,-1654,-2081], +[0,-6115,-6116,-6117,-6118,-514,-638], +[0,45,15,16,11], +[1,3,1790], +[0,0,1791,1792,8], +[0,-5859,-589,-633,-2322], +[0,-6118], +[1,3,1794], +[0,177,1795,1796,5], +[0,-1654,-932,-1405,-966,-958,-968,-943,-963,-974], +[0,-6119,-6120,-6121,-6122], +[1,3,1798], +[0,1799,1800,1801,4], +[0,-888,-1645,-1646,-1650,-6123], +[0,-932,-943,-958,-966,-968,-974,-1654,-2125,-2293,-2369,-2418,-2450], +[0,-1004,-3161,-6124,-6125,-6126,-1752,-3578,-3691,-5728,-3122,-3994,-1954,-3445,-3690], +[1,3,1803], +[0,1804,1805,178,4], +[0,-1723,-6127], +[0,-1415,-6128], +[1,3,1807], +[0,0,0,1808,4], +[0,-581,-3214,-3756,-6131,-5110,-6120,-3173,-6129,-6130,-770], +[1,3,1810], +[0,0,1811,178,8], +[0,-581,-6132,-1942,-2410], +[1,3,1813], +[0,1814,1815,1816,9], +[0,-6133,-719,-679], +[0,-1003,-1127,-600,-1130,-1156,-1134,-1148], +[0,-6134,-6135,-6136,-6137,-6138,-6139,-3870,-6140,-6141,-6142,-6143,-6144,-6145], +[1,3,1818], +[0,0,0,1819,5], +[0,-589,-6146], +[0,68,15,16,8], +[1,3,1822], +[0,1823,1824,1825,8], +[0,-1640,-1805,-2518,-2546,-1519,-2114,-2346,-679,-1646,-6176,-1888,-1948,-725,-6177,-2062,-6178,-6179,-6180], +[0,-6181,-4215,-2322,-2363,-1405,-2491,-633,-6182], +[0,-6183,-633], +[0,45,15,16,4], +[1,3,1828], +[0,1829,1830,1831,11], +[0,-1548,-6184], +[0,-756,-6185,-1405,-6186,-1991,-2111], +[0,-589,-6187,-6188], +[0,45,15,16,5], +[1,3,1834], +[0,1835,0,1836,9], +[0,-6189,-6190,-6191,-23,-3194,-25,-26,-6093,-5828,-3355,-3204,-3408,-40,-42,-46,-4228,-4145,-3037,-469,-6192,-501,-510, +-674,-679,-683,-714,-6193,-742,-1070,-1323,-6194,-1729,-1847,-1942,-6195,-2162,-2228,-2231,-2245,-2299,-2410,-2416,-6196, +-2476,-2550,-1376,-6197], +[0,-6198,-6199,-6200,-6201,-6202,-6203,-3161,-2410,-3214,-3018,-5065,-4726,-3445,-6204,-6205,-6206,-6207,-6208,-6209, +-6210,-6211,-6212,-6213,-6214,-6215,-4160,-6216,-6217,-2006,-6218,-6219,-2476,-6220,-6221,-4726,-2299,-6222,-6223,-2228, +-6224], +[1,3,1838], +[0,1839,1840,1841,10], +[0,-6225,-6226,-6227], +[0,-523,-664,-932,-1654,-6228,-1972,-6229], +[0,-4055,-6230,-6231,-2487,-1838,-3215,-6232,-6233,-2059,-6234,-510,-6235], +[1,3,1843], +[0,0,0,1844,5], +[0,-6236,-6237,-6238,-6239,-6240,-6241,-6242,-6243,-6244,-6245,-6246,-6247], +[1,3,1846], +[0,1847,0,1848,8], +[0,-6248], +[0,-5269,-6249,-596,-6250,-5968,-6251,-6252], +[1,3,1850], +[0,1851,1852,7,4], +[0,-6253], +[0,-1788,-2322,-2388,-1942,-1729,-1972,-2410,-3037], +[1,3,1854], +[0,1855,1856,1857,9], +[0,-6254,-6255,-6256,-6257,-3204,-38,-2687,-6022,-6258,-2965,-6259,-2489], +[0,-6260,-21,-23,-3204,-40,-6261,-43,-44,-4757,-2697,-358,-6262,-6263,-4754,-6264,-4956,-4749,-4959,-409,-3136,-3052, +-6265,-6266,-6021,-6267,-533,-534,-6268,-6269,-539,-557,-560,-6026,-567,-6270,-683,-756,-767,-799,-6271,-932,-6272,-1168, +-1261,-1266,-6273,-1365,-1415,-1422,-1440,-1666,-6274,-1743,-1763,-1771,-1782,-1788,-1939,-1942,-2000,-2006,-2019,-6275, +-6276,-2125,-2156,-2163,-6277,-2275,-2375,-2376,-2410,-2501,-2502,-2503], +[0,-598,-6278], +[1,3,1859], +[0,1860,1861,1862,8], +[0,-6279,-640,-1370,-2062], +[0,-1032,-2250,-2322,-2410], +[0,-640,-6280,-5827,-6281], +[1,3,1864], +[0,1865,1866,1867,5], +[0,-461,-6282,-6283,-1402,-1795,-2546], +[0,-510,-6284,-710,-1127,-1132,-1134,-1136,-1144,-1148,-1542,-1654,-1859,-2111,-2006,-6285], +[0,-4005], +[1,3,1869], +[0,0,0,1870,5], +[0,-6286,-6287,-6288,-6289,-6290], +[1,3,1872], +[0,1873,1874,7,6], +[0,-6291,-668,-6292,-1548,-6293,-1610,-6294,-6295,-1627,-6296,-6297,-2269,-6298,-6299], +[0,-6300,-601,-714,-932,-943,-958,-966,-968,-974], +[0,45,15,16,8], +[0,67,15,16,10], +[0,67,15,16,5], +[0,67,15,16,6], +[1,3,1880], +[0,0,1881,1882,5], +[0,-1405], +[0,-6301,-5389,-6302,-6187], +[1,3,1884], +[0,0,1885,1886,5], +[0,-705,-2152,-1107,-1805,-461,-6303,-1654,-2210,-1452,-1650,-2125,-6304,-615,-1303,-1405,-1813,-693,-2416,-462,-633,-617, +-769,-2187,-1453,-1161], +[0,-1961,-6187,-5923,-6305,-6306,-510,-5867,-6307,-6308,-6309,-6310,-6311,-6312], +[1,3,1888], +[0,0,1889,1890,6], +[0,-1654,-6313,-953], +[0,-6314,-6315,-6316,-6317,-6318], +[1,3,1892], +[0,1893,81,7,6], +[0,-651,-737,-812,-1335,-1351,-1800,-1983,-1999,-2401], +[1,3,1895], +[0,1896,1897,1898,4], +[0,-615,-6319,-1369,-1548], +[0,-6320,-664,-932,-940,-967,-1344,-1446,-1497,-1534,-1654,-1691,-1788,-1857,-1942,-2210,-2211,-2245,-2446], +[0,-1818,-1691,-6321,-3742,-6322,-6323], +[1,3,1900], +[0,182,1901,1902,4], +[0,-707,-1510,-1607], +[0,-6324,-1334], +[1,3,1904], +[0,0,1905,148,4], +[0,-1389,-2564,-1640,-2162,-2834,-1471,-932,-1111,-1437,-2093,-2127,-2149,-2334,-1412,-1442,-1753,-1889,-2195,-3574,-1942, +-699,-767,-3031,-2281,-21,-1354,-23,-6325,-3563,-1333,-1891,-2096,-6326,-518,-1772,-3559,-3564,-1481,-1547,-6327,-6328, +-2997,-3660,-3803,-3649,-3562,-6329,-945,-3566,-2429,-40,-6330,-957,-3326,-958,-978,-1475,-1477,-6331,-3561,-963,-1479, +-3571, +-350,-6332,-2084,-1486,-3565,-351,-1473,-3569,-3573,-3568], +[1,3,1907], +[0,0,1908,1909,4], +[0,-2162,-6333,-888], +[0,-620,-2162,-775,-6334], +[1,3,1911], +[0,0,0,1912,4], +[0,-622], +[1,3,1914], +[0,1915,1916,1917,8], +[0,-2728,-656,-668,-688,-2267,-2400,-2820,-2528], +[0,-519,-1788,-2384,-2541], +[0,-687,-6335,-6336,-3974,-4110,-4000,-4111,-4112,-6337,-5554], +[1,3,1919], +[0,1920,1921,1922,4], +[0,-6338,-2114,-6339,-2347], +[0,-633,-725,-2319,-2346], +[0,-633,-6340,-1076,-6341,-3862,-5142,-6342,-4161,-6118], +[1,3,1924], +[0,1925,1926,1927,4], +[0,-812,-1645,-2488,-6343,-6344,-6345,-6346], +[0,-664,-1654,-2125,-1077,-2091,-6347,-964,-630,-6348], +[0,-6346,-3214], +[1,3,1929], +[0,1930,1931,1932,4], +[0,-6346,-6349], +[0,-6350,-630,-664,-1654,-6347], +[0,-6346,-1631,-6351], +[1,3,1934], +[0,1935,1936,7,6], +[0,-3628,-2731,-1054,-6345,-2359,-2488], +[0,-3035,-3621,-3037,-6352,-664,-726,-1654,-6353,-1788,-1942,-6354,-2388,-2389,-6355,-2410], +[1,3,1938], +[0,1939,1940,1941,6], +[0,-6356,-6357,-6358,-668,-679,-729,-731,-6359,-6360,-6361,-990,-1072,-1077,-1336,-1361,-1639,-1812,-5763,-1999,-6362, +-2152,-2178,-2186,-2187,-2188,-2228,-2594,-2550], +[0,-3037,-6363,-664,-6364,-1119,-5735,-1654,-1942,-1980,-2105,-2111,-2125,-2210,-2229,-2234,-2269,-2293,-2410,-2460], +[0,-6365,-775,-6366,-6367], +[1,3,1943], +[0,1944,1945,1946,5], +[0,-2435,-1107,-2444,-2546,-507,-640,-997,-1285,-6368,-6369,-6370,-1958,-2114,-1370,-1977,-2347,-6371,-6372,-1464,-6373, +-6374,-2194,-6375,-6376,-6377,-725,-6378,-6379,-6380,-6381,-6382,-6383,-6384,-6385,-6386,-1848,-6387,-2062,-6388,-6389, +-771,-6390,-6391,-6392,-6393,-6394,-5936,-6395], +[0,-6396,-2319,-2330,-2177,-2346,-573,-6397,-6398,-710,-6399,-6400,-6401,-6402], +[0,-4865,-4792,-4791,-6403,-4161,-1764,-3214], +[1,3,1948], +[0,1949,1950,1951,9], +[0,-6404,-6405,-6406,-2114,-2346], +[0,-1449,-1705,-1972,-2105,-2125,-2319,-6407], +[0,-633,-6340,-5396,-1109,-1110,-6408,-6409,-4791], +[1,3,1953], +[0,1954,0,1955,9], +[0,-6410,-658,-6088,-6411,-6412], +[0,-657,-6413,-6414], +[1,3,1957], +[0,1958,1959,1960,11], +[0,-6415], +[0,-2322,-2125,-2410,-3037,-6416], +[0,-6417,-6418,-770,-6419,-6420,-6421,-6422,-5835,-6423], +[1,3,1962], +[0,0,1963,1964,10], +[0,-1788,-2323,-2384,-664,-2446,-668,-1654,-2210,-932,-2127,-2379,-1942,-589,-1729,-2211,-2410,-3035,-3037,-3621,-4372, +-1588,-3625,-2234,-977,-940,-967,-262,-3267,-428,-351,-6424,-427,-234], +[0,-1671,-637,-3215], +[1,3,1966], +[0,0,0,1967,6], +[0,-638,-4865], +[1,3,1969], +[0,1970,1971,1972,8], +[0,-461,-6425,-6426,-668,-1588,-1646,-6427], +[0,-6428,-932,-1107,-1654,-2125,-2127,-6429,-350,-4062,-351,-2231,-2234,-6430], +[0,-3214,-6431,-6432,-6433,-4795,-6434,-3184,-6052], +[1,3,1974], +[0,1975,1976,1977,11], +[0,-578,-5933], +[0,-468,-589,-633,-725,-1345,-5852,-5848,-2239,-2322,-2347,-2416], +[0,-6435,-4865,-633,-640,-6436,-6437,-6438], +[1,3,1979], +[0,0,1980,1981,4], +[0,-5834,-515,-516,-932,-1365,-1777,-2156,-2322], +[0,-640,-6439], +[1,3,1983], +[0,1984,1985,1986,4], +[0,-6127], +[0,-1654,-1733,-6128], +[0,-642], +[1,3,1988], +[0,0,14,1989,5], +[0,-6440,-6441,-6442,-3966,-3209,-3103,-6443,-4108,-5839,-6444], +[1,3,1991], +[0,0,1992,1993,5], +[0,-784,-1891,-1942,-2125,-2162], +[0,-775,-2162,-3754,-6445,-4672,-3576,-3161], +[1,3,1995], +[0,1996,1997,1998,5], +[0,-3417,-6446,-6447,-303,-304,-6448,-6449,-5007,-523,-668,-812,-6450,-6451,-1805], +[0,-4367,-4368,-3035,-3198,-6452,-3621,-3037,-4372,-427,-664,-932,-938,-939,-940,-967,-1654,-1661,-1722,-1763,-1788,-4362, +-2200,-2210,-2379,-2410], +[0,-3690,-856,-3438,-3328,-6453,-687], +[1,3,2000], +[0,2001,31,2002,5], +[0,-6376,-6399,-725,-6282,-1646,-2347], +[0,-633,-4161,-6454,-1644,-4792], +[1,3,2004], +[0,2005,2006,2007,6], +[0,-6455,-1666,-6456,-6457], +[0,-6458,-2319,-2454,-2456,-1607], +[0,-1573,-5545,-6459,-4055,-648], +[1,3,2009], +[0,2010,2011,2012,6], +[0,-6460], +[0,-6461,-932], +[0,-6462,-4054,-6463,-1069], +[1,3,2014], +[0,2015,2016,2017,4], +[0,-1578], +[0,-6464,-6465,-6466,-6467,-6468,-6469], +[0,-5149,-5839,-640,-6435,-6470,-650,-4055,-2512,-6471], +[1,3,2019], +[0,0,2020,2021,4], +[0,-932,-963,-1654,-1788], +[0,-6472,-651,-3590,-1838,-3215,-5845,-6473], +[1,3,2023], +[0,2024,2025,2026,4], +[0,-6474,-4003,-1047,-6475,-5086,-5087,-5089,-6030,-6476,-2550,-2551], +[0,-3037,-664,-6477,-767,-1654,-2250,-2379,-2410], +[0,-4005,-6478,-4004,-1405,-6479,-6480,-3966], +[1,3,2028], +[0,0,2029,7,5], +[0,-3446,-1415,-999,-1344,-1111,-2127,-928,-5354,-2375,-2379,-2402,-1077,-1942,-6481,-2410,-23,-3136,-1534,-1607,-3048, +-2174,-6482,-2132,-6483,-350,-796,-351,-6484], +[1,3,2031], +[0,2032,2033,2034,11], +[0,-1495,-6485], +[0,-2581,-6486,-6487,-3037,-3664,-6488,-6489,-2125,-2391,-2410,-2469,-6490], +[0,-3324,-6491,-6492,-3966,-4601,-6493,-2071,-1622,-6494,-6495,-6496,-6497,-6498,-6499,-6500], +[1,3,2036], +[0,2037,2038,2039,4], +[0,-6501,-6502,-6503,-6504], +[0,-5834,-516,-5835,-921,-932,-993,-1065,-5836,-1365,-1777,-1788,-1794,-2156,-2322], +[0,-3214,-3217,-6505,-3756,-6506,-6507,-6508,-6509,-6510,-655,-6511,-5924,-5831], +[1,3,2041], +[0,0,14,2042,4], +[0,-656,-6512,-6513,-6514,-6515,-6516,-864,-2424,-6517,-2265,-5554,-5845,-6518,-6519], +[1,3,2044], +[0,0,0,2045,4], +[0,-5180,-5177,-3839,-4865], +[1,3,2047], +[0,0,0,2048,5], +[0,-6520], +[1,3,2050], +[0,2051,2052,2053,9], +[0,-1723,-6521], +[0,-3037,-6522,-1004,-1442,-1654,-1870,-2250,-2384,-2410], +[0,-659,-6523,-6524,-6525,-6526,-6527,-5093,-6528], +[0,45,15,16,9], +[1,3,2056], +[0,0,2057,2058,4], +[0,-516,-932,-934,-958,-1077,-1654,-2501], +[0,-2501,-3862,-6529,-6024,-4792], +[1,3,2060], +[0,0,0,2061,5], +[0,-1859,-6530,-4004,-3634,-6531], +[1,3,2063], +[0,0,2064,2065,5], +[0,-652,-6532,-1654,-932,-928,-1110,-6533,-820,-1942,-190,-2410,-6534,-6535,-3311,-960,-6536,-350,-3312], +[0,-4004,-5855,-507,-3634,-664], +[1,3,2067], +[0,2068,2069,2070,5], +[0,-6534], +[0,-652,-664,-1654,-932,-1110,-1942,-190], +[0,-664,-6537,-4865,-510,-3634,-6538,-5923,-6306], +[1,3,2072], +[0,0,183,2073,9], +[0,-664,-1841,-6539], +[1,3,2075], +[0,0,2076,2077,9], +[0,-664,-1654,-1405,-756,-6347,-6540], +[0,-664,-6537,-6541,-6542,-6543,-3862,-6544,-6545,-6546,-5572,-6547,-6548,-6549], +[1,3,2079], +[0,0,2080,2081,8], +[0,-652,-2541,-519,-2384,-999,-1612,-1575,-6550,-3037,-3523], +[0,-712,-5535,-714,-3974,-4000,-687,-2265,-5514,-5553,-3770,-3975,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958,-5554], +[1,3,2083], +[0,0,2084,2085,10], +[0,-519,-528,-756,-6551,-932,-6552,-1168,-6553,-1197,-1243,-1252,-6554,-1548,-1788,-1976], +[0,-669,-6555,-3262,-4004,-6556,-6557,-6558,-6559], +[1,3,2087], +[0,0,0,2088,5], +[0,-5888,-6514,-5845,-6408,-6512,-6519,-6560,-6561,-6562], +[1,3,2090], +[0,2091,2092,7,4], +[0,-6563,-6564,-734,-6565,-3446,-6566,-6567,-1805,-1852,-6568,-6569,-2177,-6570], +[0,-3037,-3199,-3664,-932,-944,-1431,-1942,-2251,-2410,-2423,-2469], +[1,3,2094], +[0,2095,2096,2097,4], +[0,-6571], +[0,-350,-6572,-4062,-351,-367,-426,-6573,-427,-428,-6574,-6575,-6576,-726,-756,-767,-932,-6577,-6578,-957,-963,-985,-1107, +-1412,-1413,-1471,-1475,-1476,-1478,-1479,-1481,-3569,-1486,-6579,-1491,-3222,-1666,-1667,-1870,-2127,-2130,-3571,-6580, +-2140,-2410,-2550], +[0,-659,-6581,-6582,-6583,-5177,-3576], +[1,3,2099], +[0,2100,2101,2102,11], +[0,-1839,-2426,-6584,-6585,-1333,-6586,-861,-6587,-6588,-6589,-6590], +[0,-2392,-2386,-1344,-1449,-932,-1437,-2469,-1110,-1942,-2354,-190,-2410,-3037,-1534,-4647,-3615,-6591,-965,-6592,-2411, +-3664,-960,-6593,-978,-1943,-6594,-940], +[0,-6595,-1437,-3585,-6596,-3215,-5092,-6597,-3264], +[1,3,2104], +[0,2105,2106,2107,5], +[0,-769,-6598,-1962], +[0,-526,-6066,-548,-559,-664,-932,-1452,-1654], +[0,-6599,-1958,-5923], +[1,3,2109], +[0,2110,2111,2112,4], +[0,-44,-6600,-3946,-6601,-5579,-513,-595,-6602,-682,-709,-5212,-747,-753,-761,-6603,-6604,-6605,-6606,-5581,-6607,-3135, +-6608,-6609,-1398,-1442,-6610,-1452,-6611,-6612,-5216,-1666,-6613,-1942,-4918,-6614,-6615,-1992,-4930,-4987,-6616,-6617, +-6618,-6619,-2027,-2029,-6620,-6621,-2040,-2048,-2056,-2113,-6622,-4951,-2192,-6623,-2387,-2424,-2489,-2446], +[0,-23,-26,-33,-34,-35,-36,-3396,-5585,-3381,-6624,-38,-3351,-3382,-40,-41,-3744,-3746,-3747,-3562,-3059,-6625,-6626, +-3043,-6627,-6628,-3136,-6629,-3044,-6630,-6631,-5221,-3040,-6632,-3052,-6633,-6634,-4972,-427,-428,-482,-518,-523,-527, +-528,-533,-534,-538,-5596,-3133,-6635,-6636,-6637,-6638,-661,-668,-5598,-719,-767,-778,-3078,-786,-4977,-5603, +-915,-916,-2760,-932,-933,-940,-951,-958,-959,-962,-963,-969,-6639,-1017,-1021,-4979,-1041,-1074,-1103,-1107,-1168,-1174, +-1252,-5605,-1261,-1344,-1352,-1360,-6640,-1415,-1449,-3134,-1521,-5611,-1534,-1548,-4984,-5613,-6641,-5615,-1643,-1646, +-1650,-1652,-1653,-1662,-1664,-1667,-1792,-1814,-1889,-1908,-1952,-4923,-6642,-6643,-4986,-2006,-2012,-2013,-2016,-2017, +-3145,-3143, +-6644,-2028,-6645,-4242,-2098,-5616,-5617,-3868,-5618,-2125,-5619,-6646,-2281,-4997,-4998,-2282,-4999,-2284,-2335,-2347, +-2376,-2410,-2427,-2437,-6647,-6648,-2501,-6649,-2508,-5628,-5002,-3120,-2534], +[0,-6650,-3099,-2006,-3159,-3095,-3098,-3160,-3161,-3100], +[1,3,2114], +[0,2115,2116,2117,4], +[0,-6651], +[0,-6652,-3037,-1942,-2358,-2410,-4701], +[0,-1076,-2490,-6653,-6654,-6655,-6656,-1080], +[1,3,2119], +[0,0,2120,184,5], +[0,-686,-1344,-2910,-2250,-2322], +[1,3,2122], +[0,2123,0,2124,5], +[0,-81,-66,-3512,-73,-74,-3520,-62,-6660,-3503,-3502,-71,-6661,-79,-83,-68,-72,-80,-82,-85,-70,-6662,-6663,-6664,-6665, +-63,-6666,-3519,-3513,-64,-6667,-76,-54,-6668,-67,-69,-6669,-6670,-6671,-3521,-6672,-6673,-56,-75,-6674,-55,-6675,-6676, +-3515,-6677,-65,-3504,-3511,-6678,-6679,-52,-3514,-6680,-3526,-77,-6681,-6682], +[0,-3488,-681,-3489,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161], +[1,3,2126], +[0,0,2127,2128,5], +[0,-2384,-2127,-2354,-1339,-1605,-4062,-350,-351], +[0,-2006,-775,-3205,-6683,-682,-2444,-3590], +[1,3,2130], +[0,185,2131,2132,5], +[0,-633,-932,-934,-1336,-1722,-2188,-2471], +[0,-775,-6684], +[1,3,2134], +[0,2135,2136,2137,10], +[0,-824], +[0,-21,-23,-40,-42,-6685,-3136,-3037,-6686,-533,-708,-767,-825,-932,-999,-1344,-1415,-1534,-1535,-1763,-1942,-2061,-2177, +-6687,-2410,-2501], +[0,-2501,-3862,-6688,-3966], +[1,3,2139], +[0,0,0,2140,5], +[0,-5514,-685,-3974], +[1,3,2142], +[0,186,14,2143,8], +[0,-685,-3551,-4792,-6024,-3324,-6690,-6691,-6692,-3346,-6693,-6694,-6695,-1072], +[1,3,2145], +[0,2146,0,2147,5], +[0,-1107,-1000], +[0,-687,-4376,-6696,-6697,-6698,-4377,-4000,-6699,-6700,-6701,-3957,-6702], +[1,3,2149], +[0,0,2150,2151,8], +[0,-519,-2410,-2541], +[0,-687,-6335,-6336,-3974,-4110,-4000,-4111,-4112,-6337,-5554,-4055], +[1,3,2153], +[0,2154,2155,2156,4], +[0,-6703,-922,-6704,-5969,-6705], +[0,-932,-6706,-6707,-6708,-1344,-1534,-1788,-6709,-6710], +[0,-5514,-712,-4000,-3974,-687,-5550,-1573,-5545,-2547], +[1,3,2158], +[0,2159,2160,2161,11], +[0,-2120], +[0,-3037,-519,-2410,-2541], +[0,-687,-5564,-5514,-6711,-6712,-6713,-6714,-4110,-3974,-4000,-3975,-5550,-3958], +[1,3,2163], +[0,0,0,2164,9], +[0,-687], +[1,3,2166], +[0,0,2167,2168,4], +[0,-519,-1575,-6715,-2410,-2541], +[0,-687,-6716,-6717,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117,-4055], +[1,3,2170], +[0,187,2171,2172,10], +[0,-2198,-6718], +[0,-687,-714,-4002], +[1,3,2174], +[0,2175,2176,188,5], +[0,-1548,-2267,-714], +[0,-6719,-664,-693,-756,-6720,-6721,-1168,-1220,-1231,-1266,-2210,-2211], +[1,3,2178], +[0,117,2179,188,10], +[0,-693,-932,-940,-967,-1415,-6725,-6726,-1942], +[1,3,2181], +[0,2182,14,2183,10], +[0,-2219,-2267], +[0,-6727,-6728,-5554,-6729,-4783,-687,-3974,-4110,-5550,-6730,-5514,-2265], +[1,3,2185], +[0,2186,2187,76,4], +[0,-668,-2387,-1401,-1548,-2177,-1442,-6731,-1077,-2269,-303,-482,-4366,-6732,-480,-5676,-2267,-6733,-6734,-1366,-6735, +-2297,-6736,-6737,-6738,-2591], +[0,-664,-523,-1654,-932,-2379,-4361,-2410,-3035,-3037,-3621,-3044,-3199,-3660,-3048,-665,-6739,-6740,-4369,-938,-6741, +-4373,-4269,-939], +[1,3,2189], +[0,2190,2191,2192,5], +[0,-3922], +[0,-351,-3267,-3136,-3044,-3037,-6742,-427,-428,-6743,-6744,-932,-6745,-969,-1100,-1415,-1548,-2127,-6746,-2375,-2379, +-2410], +[0,-687,-2410,-3215,-6747,-6748,-4377,-5829,-3957], +[1,3,2194], +[0,2195,2196,2197,5], +[0,-6749,-6750,-6751], +[0,-23,-40,-534,-664,-767,-932,-934,-940,-958,-967,-1344,-1471,-1474,-1475,-1482,-1489,-1492,-1534,-1654,-1942,-2210, +-2384,-2417,-2501,-2503], +[0,-699,-6351,-6752], +[1,3,2199], +[0,2200,55,2201,4], +[0,-6753,-999,-6754,-1401,-6755,-6756], +[0,-699,-6351,-6757,-6758,-6759,-2059,-6234,-6760,-6761,-6762,-6763], +[1,3,2203], +[0,2204,2205,157,4], +[0,-2267,-2269,-2528], +[0,-3037,-427,-428,-652,-664,-668,-767,-932,-958,-965,-1166,-1654,-2125,-6313,-2410], +[1,3,2207], +[0,0,83,7,6], +[1,3,2209], +[0,0,2210,2211,10], +[0,-985,-2447,-2334], +[0,-3205,-6683,-682], +[1,3,2213], +[0,2214,0,2215,5], +[0,-689], +[0,-6764,-4340,-6297,-6765,-6716,-4700,-6722,-4000,-640], +[1,3,2217], +[0,0,2218,2219,6], +[0,-633,-6766,-1654,-1693], +[0,-510,-5411,-3262,-6767,-6768], +[1,3,2221], +[0,2222,2223,2224,4], +[0,-1494], +[0,-2198,-1654,-705], +[0,-3974,-4000,-1965,-3959,-5110,-6769,-705], +[1,3,2226], +[0,182,2227,2228,5], +[0,-1510,-1607], +[0,-4004,-1001,-5855], +[1,3,2230], +[0,2231,2232,2233,11], +[0,-4378,-6770,-1442,-6771,-6772], +[0,-932,-940,-1344,-1415,-1534,-1658,-1942], +[0,-4005,-6773,-6774,-708], +[1,3,2235], +[0,2236,2237,2238,6], +[0,-6775,-6776,-6777,-6778,-6779,-6780,-6781], +[0,-6782], +[0,-3496,-707], +[1,3,2240], +[0,0,2241,189,10], +[0,-849,-6783,-1304,-1600,-2424], +[1,3,2243], +[0,0,2244,189,4], +[0,-23,-40,-4691,-709,-849,-1304,-6785,-1600,-1978,-2424,-2501], +[1,3,2246], +[0,2247,2248,2249,4], +[0,-3523,-2741], +[0,-1654,-2384,-2541], +[0,-712,-5535,-775], +[1,3,2251], +[0,0,0,2252,5], +[0,-3974,-3770,-712,-5514], +[1,3,2254], +[0,0,2255,2256,5], +[0,-932,-936], +[0,-5514,-3974,-714], +[1,3,2258], +[0,2259,2260,2261,11], +[0,-2269,-6786], +[0,-526,-559,-668,-2320,-2322], +[0,-6787,-5554,-5514,-4000,-3974,-4001,-4002], +[1,3,2263], +[0,0,2264,2265,6], +[0,-1003,-1452,-1654], +[0,-687,-3957,-6788], +[1,3,2267], +[0,2268,190,2269,11], +[0,-6789,-6790,-1551,-6791], +[0,-4378,-1838,-6748,-4377,-5829,-6792,-3215,-6747,-687,-3957,-6722], +[1,3,2271], +[0,2272,2273,2274,4], +[0,-6789,-6793,-6794,-6791], +[0,-350,-351,-1448,-2127,-2337], +[0,-3974,-4376,-6795,-3262], +[1,3,2276], +[0,0,2277,2278,4], +[0,-2384,-1415,-932,-1110,-2375,-1942,-190,-2410,-3136,-3037,-2411,-959,-940], +[0,-719,-3957,-5829,-3215,-687,-6748,-4377,-4378], +[1,3,2280], +[0,2281,2282,2283,5], +[0,-1107,-815,-1548,-6796,-6797,-1077,-1376,-1646,-3767,-2270,-831,-6798,-2271,-796], +[0,-1788,-664,-2446,-1654,-2210,-1104,-2177,-708,-1753,-21,-1365,-1972,-23,-43,-2174,-40,-1656,-539,-6799,-6800,-6801,-36, +-741], +[0,-5890,-3240,-3276,-6802,-720], +[1,3,2285], +[0,2286,2287,146,4], +[0,-86,-3534], +[0,-3536,-3537,-3535], +[1,3,2289], +[0,0,2290,2291,6], +[0,-526,-528,-535,-546,-6017,-558,-566,-708,-767,-855,-932,-940,-967,-1415,-1639,-1942,-2125,-2127,-2128,-2137,-2143, +-2517], +[0,-5839,-525,-4795,-6803,-3184,-6804,-6805,-3264,-6806,-6807,-6722,-6808,-6809,-6810,-6811,-6812,-6813,-6814,-6815,-2265, +-6816,-6817,-6818,-6819,-3110], +[1,3,2293], +[0,0,55,2294,6], +[0,-5389,-6820,-997,-6821,-6822,-5078,-6823], +[1,3,2296], +[0,2297,191,2298,5], +[0,-651,-6824,-812,-5397,-6825,-2155,-2453], +[0,-724,-6826,-6827,-5401,-1004,-6828,-1334,-5827], +[1,3,2300], +[0,2301,31,7,4], +[0,-6829,-1370,-2062,-5972], +[1,3,2303], +[0,2304,2305,2306,4], +[0,-2153,-668,-2550,-2369,-2194,-2297], +[0,-1344,-932,-2469,-928,-1110,-1942,-190,-2410,-3037,-1534,-3610,-3041,-6830,-6831,-2411,-6832,-3664,-2156,-4373,-6593, +-6833,-940,-967,-6834,-6835,-4814], +[0,-6836,-5920,-5921,-726,-3957,-6837], +[1,3,2308], +[0,2309,2310,2311,4], +[0,-1460], +[0,-3037,-652,-711,-6838,-6839,-6840,-3589,-2105,-2177,-2362,-2379,-2410,-2424,-6841,-2548], +[0,-6842,-727,-3870,-6843,-6844,-6845,-5558], +[1,3,2313], +[0,2314,55,2315,4], +[0,-6846,-3780,-1119,-6847,-6848], +[0,-727,-4634,-6005,-3870,-6849,-6850,-4055,-6582,-6851,-6852,-6853], +[1,3,2317], +[0,2318,2319,2320,4], +[0,-812,-1045,-1840,-2445], +[0,-932,-1654,-1788,-2293], +[0,-3161,-3578,-5401,-729,-6854], +[1,3,2322], +[0,0,84,2323,11], +[0,-729,-1004,-6855,-3556], +[1,3,2325], +[0,0,2326,7,4], +[0,-932,-1415,-2210], +[1,3,2328], +[0,2329,2330,2331,4], +[0,-812,-6856], +[0,-5028,-86,-3307,-3244,-190,-3198,-3617,-3733,-3037,-4203,-427,-428,-519,-652,-708,-932,-940,-954,-967,-1004,-1010, +-1103,-1344,-1534,-1671,-1771,-1806,-1942,-2251,-2293,-2892,-2402,-2410], +[0,-729,-6857,-1671,-6858,-1004], +[1,3,2333], +[0,0,2334,2335,5], +[0,-2581,-3733,-3037,-3664,-1010,-2379,-2410,-2466,-6859,-2469], +[0,-729,-2071,-6858,-1004], +[1,3,2337], +[0,0,2338,2339,8], +[0,-6447,-3037,-3664,-672,-6860,-932,-944,-6861,-1942,-6862,-6570,-2267,-2410,-2423,-2469], +[0,-4000,-3444,-6863,-6864,-687,-6198,-2427,-1965,-6865,-3276,-6324,-6866], +[1,3,2341], +[0,0,2342,2343,5], +[0,-2541,-519,-864,-6867,-6868,-888,-6869,-1974,-6870,-6871,-6872,-6873,-6874,-6875,-2310,-6876,-6877,-1344,-6878,-2006, +-6879,-932,-6880,-6881,-6882,-1548,-6883,-2177,-6884,-6885,-6886,-1053,-6887,-6888,-1310,-1689,-1783,-6889,-2019,-1276, +-2094,-6890,-2424,-6891,-23,-6892,-1534,-6893,-6894,-710,-6895,-6896,-6897,-6898,-41,-2099,-946], +[0,-6899,-3110,-6107], +[1,3,2345], +[0,0,2346,2347,6], +[0,-652,-932,-943,-958,-963,-966,-968,-974], +[0,-736,-1334,-6900,-4616], +[1,3,2349], +[0,0,2350,2351,5], +[0,-1788,-1654,-932,-821,-966,-958,-968,-943,-974], +[0,-737,-1334,-4610,-4616,-6901], +[1,3,2353], +[0,2354,0,2355,4], +[0,-6902,-6903,-1630,-6904,-6905,-5983,-6906,-6907], +[0,-739,-6908,-5887,-1573,-687], +[1,3,2357], +[0,2358,0,2359,9], +[0,-1630,-6909,-6910,-739], +[0,-687,-5732,-739,-6908,-5887,-1573], +[1,3,2361], +[0,2362,0,2363,11], +[0,-6911], +[0,-739,-6912,-6913], +[1,3,2365], +[0,0,2366,2367,4], +[0,-6914,-2319], +[0,-5845,-6915,-6916,-6917,-4865,-812], +[1,3,2369], +[0,0,2370,2371,5], +[0,-6918,-3664,-6919,-2410,-2469], +[0,-743,-6920], +[1,3,2373], +[0,2374,81,2375,4], +[0,-743,-746], +[0,-743,-5401], +[1,3,2377], +[0,2378,2379,2380,10], +[0,-6920,-812,-6825,-2155], +[0,-729,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], +[0,-729,-1004,-5401,-6858], +[1,3,2382], +[0,0,0,2383,4], +[0,-743,-6921,-6922], +[1,3,2385], +[0,2386,2387,2388,4], +[0,-6923], +[0,-633,-1646,-1719,-6924,-1813,-6925,-2416], +[0,-699,-6351,-4865], +[1,3,2390], +[0,2391,2392,2393,4], +[0,-2654,-1108,-2168,-1759,-2182], +[0,-824,-1415,-1344,-1623,-774,-932,-825,-1110,-6926,-2501,-1942,-767,-21,-190,-533,-2410,-23,-3037,-1041,-1534,-1771,-86, +-965,-3560,-2251,-40,-2411,-6927,-959,-960,-32,-958,-6928,-6929,-978,-940,-967,-3748,-6930,-3307], +[0,-2501,-3862,-6931,-6932,-6351], +[1,3,2395], +[0,2396,2397,7,4], +[0,-1107,-1645,-1650,-6933,-2347,-2430,-2550], +[0,-2125,-2322,-2320], +[1,3,2399], +[0,0,27,2400,4], +[0,-6934,-6935,-3262,-6936,-6937,-6938], +[1,3,2402], +[0,2403,2404,2405,4], +[0,-1559,-750,-6939], +[0,-3040,-3052,-2410,-2006,-2019], +[0,-2006,-2410,-6935,-6940,-6941], +[1,3,2407], +[0,2408,2409,2410,4], +[0,-728,-6942,-6943,-6944,-3496,-999,-1758,-2177,-2313], +[0,-6945,-652,-1412,-2123], +[0,-752,-3323,-687], +[1,3,2412], +[0,0,0,2413,5], +[0,-6946,-6947,-6948,-6949,-6950,-6951,-6952,-6953,-6954,-6955,-6956,-6957,-6958,-6959,-6960,-6961,-6962,-6963,-6964, +-6965,-6966,-6967,-6968,-6969,-6970,-6971,-6972,-6973,-6974,-6975,-6976,-6977,-6978,-6979,-6980,-6981,-6982,-6983,-6984, +-6985,-6986,-6987,-6988,-3582,-6989,-5396], +[1,3,2415], +[0,2416,2417,2418,4], +[0,-1792,-2453], +[0,-465,-932,-1004,-1654,-1788,-2293], +[0,-754,-1004,-729,-5401], +[1,3,2420], +[0,2421,2422,2423,6], +[0,-5672,-1362,-1442,-6990], +[0,-3660,-3037,-6991,-427,-428,-3899,-767,-932,-6992,-940,-948,-958,-966,-979,-1344,-1534,-6689,-1942,-6993,-2410,-2469], +[0,-6994,-3870,-727], +[1,3,2425], +[0,2426,2427,2428,4], +[0,-1442,-6995,-6996,-1646,-2105], +[0,-1654,-1788,-2198,-2200,-2210,-2541], +[0,-4005,-756], +[1,3,2430], +[0,2431,2432,2433,4], +[0,-6997,-1111,-1630], +[0,-519,-999,-1849,-6909,-2541], +[0,-5732,-687,-6351,-6998,-6997,-6656,-6999,-702,-1076,-5827,-1107,-7000,-1705,-5922,-7001,-6582,-5398,-7002], +[1,3,2435], +[0,2436,2437,2438,4], +[0,-1116,-7003,-674,-7004,-7005,-1351,-7006], +[0,-652,-519,-2392,-1722,-2210,-932,-1110,-190,-7007,-2410,-3037,-2364,-2411], +[0,-3214,-758,-7008,-6596,-6531,-1437,-3967,-1334,-1342,-5735,-1116,-2105,-2435,-5150,-6826], +[1,3,2440], +[0,0,0,2441,11], +[0,-759,-7009,-7010,-7011,-7012,-7013,-7014,-7015,-7016,-7017,-7018,-7019,-7020], +[1,3,2443], +[0,2444,2445,2446,5], +[0,-7021,-1370,-6001,-7022,-7023], +[0,-5935,-2155,-2250,-2320,-2322], +[0,-770], +[1,3,2448], +[0,2449,2450,41,5], +[0,-1580,-1792], +[0,-1415,-1967,-2006,-2019,-2501], +[1,3,2452], +[0,2453,2454,2455,10], +[0,-28,-7024,-683,-722,-7025,-7026,-812,-1047,-1099,-1111,-1116,-7027,-1366,-7028,-1393,-1435,-1548,-1549,-1591,-1630, +-7029,-5668,-7030,-1863,-1876,-1889,-7031,-7032,-7033,-2103,-2218,-2331,-2347,-2460], +[0,-510,-767,-1045,-1098,-1415,-1722,-7034,-2187,-7035,-2261,-2463,-2541], +[0,-762,-1847,-775,-7036], +[1,3,2457], +[0,2458,2459,2460,8], +[0,-3620,-3222], +[0,-86,-190,-7037,-7038,-7039,-3470,-7040,-3471,-3472,-7041,-7042,-367,-7043,-3136,-3037,-4372,-767,-932,-940,-959,-967, +-1344,-1415,-1534,-1942,-2174,-2210,-2410,-2411], +[0,-763,-7044,-7045,-7046,-2166,-7047,-7048], +[1,3,2462], +[0,0,0,2463,4], +[0,-763,-3577,-3445,-3215,-764,-7046,-2166,-7049,-4107,-5418,-6201,-7050], +[1,3,2465], +[0,0,2466,2467,4], +[0,-5285,-5291,-7051,-7052,-7053,-7054,-7055,-7056,-7057,-3037,-932,-7058,-954,-958,-960,-964,-965,-7059,-968,-971,-978, +-1110,-7060,-1608,-7061,-1768,-1942,-2910,-7062,-2402,-2410,-7063], +[0,-763,-7050,-2166,-765,-3577,-3445], +[1,3,2469], +[0,2470,0,2471,4], +[0,-7064,-7065], +[0,-6527,-7066,-6932,-7067,-7068,-7069,-7070,-7071,-7072,-7073,-7074,-7075,-7076,-7077,-3264,-775,-3214,-3577,-3578], +[1,3,2473], +[0,2474,2475,2476,5], +[0,-7078,-769], +[0,-7079,-7080,-3037,-3664,-3665,-932,-1942,-2410,-2469,-7081], +[0,-7082,-7083,-7084,-7085], +[1,3,2478], +[0,2479,2480,2481,5], +[0,-1729], +[0,-1788,-664,-1722,-1344,-1654,-2550,-2125,-2127,-2177,-708,-1004,-2501,-2250,-720,-2410,-3035,-3037,-617,-1534,-2186, +-2503,-3621,-2516,-86,-2251,-4063,-1655,-6483,-796,-7086,-3307], +[0,-4213,-1334,-2435,-1961,-510,-5867,-6201,-6198,-3966,-2006,-5269,-4865,-6989,-5388,-2533,-5998], +[1,3,2483], +[0,2484,2485,2486,6], +[0,-2518,-7087,-7088], +[0,-1415,-1344,-932,-1650,-2125,-527,-533,-1534,-86,-2251,-7089,-7090,-3307], +[0,-7091,-7092,-7084,-7085,-7093,-7094,-7095,-7096], +[1,3,2488], +[0,2489,2490,7,5], +[0,-7097,-7098,-7099,-760,-7100,-7101,-7102,-1370,-7103,-7104,-1995,-7105], +[0,-5834,-932,-5935,-1788,-1798,-7106,-2155,-2177,-2322], +[1,3,2492], +[0,0,0,2493,5], +[0,-7107,-770,-7108,-7109,-7110,-7111,-7112,-7113,-7114,-7115,-7116,-7117,-7118,-7119,-7120,-7121,-7122,-7123,-7124,-7125], +[1,3,2495], +[0,192,2496,2497,4], +[0,-652,-932,-7126,-958,-964,-966,-967,-1654,-7127,-1771,-1942], +[0,-6838,-3215], +[1,3,2499], +[0,2500,2501,2502,4], +[0,-7128,-7129,-7130,-7131,-7132,-7133,-7134,-481,-668,-6793,-719,-7135,-7136,-7137,-7138,-7139,-7140,-7141,-7142,-2177, +-2654], +[0,-4036,-3199,-1639,-1645], +[0,-7143,-7144,-707,-6513,-6514,-7145,-7146,-7147,-7148], +[1,3,2504], +[0,2505,2506,2507,4], +[0,-1370,-2231,-7149], +[0,-1654,-2198,-1612,-651], +[0,-775,-3215,-3270,-3271], +[1,3,2509], +[0,0,2510,2511,9], +[0,-190,-7150,-7151,-932,-1889,-2127,-2447], +[0,-1889,-3583,-775,-4159,-7152,-7153,-7154], +[1,3,2513], +[0,0,2514,2515,5], +[0,-7155,-4647,-3621,-3037,-4201,-7156,-932,-7157,-940,-967,-7158,-1344,-7159,-1449,-1534,-1654,-1763,-1942,-2923,-7160, +-2410,-7161,-7162], +[0,-775,-7163,-4108], +[1,3,2517], +[0,2518,2519,2520,4], +[0,-2773,-1889,-7164,-1915,-7165,-2791,-1934,-2177], +[0,-21,-23,-40,-86,-3307,-7166,-533,-767,-774,-825,-920,-932,-940,-958,-1041,-1344,-1415,-1419,-1521,-1522,-1534,-1623, +-1643,-1771,-1908,-1927,-1942,-2162,-2163,-2251,-2269,-2275,-2286,-2287,-2437,-2501], +[0,-2501,-775,-5932,-2435,-6024], +[1,3,2522], +[0,2523,2524,2525,5], +[0,-784,-1889,-1429,-2168,-2182,-3180], +[0,-824,-2746,-1415,-2162,-1344,-1623,-774,-932,-825,-928,-1110,-2289,-2501,-7167,-1942,-683,-767,-21,-190,-533,-778, +-2410,-23,-7168,-7169,-3037,-1534,-1771,-2163,-3751,-86,-965,-3560,-7170,-2251,-40,-959,-748,-960,-958,-7171,-6929,-978, +-940,-967,-1643,-3748,-6930,-3307], +[0,-784,-775,-2746,-683,-5055,-928,-2501,-7172,-7173,-7174,-1644,-6684,-7175,-7176], +[1,3,2527], +[0,2528,2529,2530,4], +[0,-7177,-2888,-6584,-2788,-6585], +[0,-2386,-2469,-2410,-3037,-1333,-2581,-7178,-7179,-3664], +[0,-775,-3585,-7180], +[1,3,2532], +[0,2533,2534,2535,4], +[0,-1620,-2232], +[0,-652,-7181,-928,-932,-7182,-1654,-2127], +[0,-775,-3272,-3579,-3215,-7183,-7184,-3262,-5260,-4132,-3926], +[1,3,2537], +[0,0,2538,2539,4], +[0,-7150,-635,-1107,-1889,-1891,-1927,-2177,-2281,-2282,-7185], +[0,-775,-7186,-4682,-7187], +[1,3,2541], +[0,0,2542,2543,4], +[0,-526,-558,-708,-1127,-6114,-1405,-1654,-2081,-2111], +[0,-775,-5559,-7188,-2265,-3673], +[1,3,2545], +[0,2546,2547,2548,4], +[0,-1532,-7189], +[0,-518,-1889,-7190,-7191], +[0,-775,-6454,-1644,-7192,-7193,-1889,-3583], +[1,3,2550], +[0,2551,2552,2553,11], +[0,-7194,-7195,-781,-1582], +[0,-7196,-7197,-932,-940,-967,-1110,-1942], +[0,-7198,-7199,-7200], +[1,3,2555], +[0,0,2556,2557,4], +[0,-23,-40,-42,-190,-7150,-7201,-7202,-5685,-3136,-4647,-3037,-6630,-7203,-533,-668,-679,-781,-940,-967,-1059,-1415,-1449, +-1620,-1942,-2091,-2392,-2393,-2410,-2411], +[0,-775,-5553,-2410,-5411,-2414,-3694,-3762], +[1,3,2559], +[0,2560,2561,2562,5], +[0,-7204,-743,-1335,-746], +[0,-1788,-1654,-932,-729,-2293,-617,-744,-745,-966,-958,-968,-943,-963,-974], +[0,-7204,-7205,-5401,-1004], +[1,3,2564], +[0,2565,2566,2567,4], +[0,-789,-790,-791,-2262], +[0,-351,-3621,-3037,-885,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], +[0,-3966,-788,-7206,-3215,-1838,-3270,-6231,-6408,-5827,-3960,-7207,-3445,-3100], +[1,3,2569], +[0,0,2570,2571,5], +[0,-351,-3621,-3037,-815,-885,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], +[0,-5827,-3960,-788,-7208,-3445,-3100], +[1,3,2573], +[0,0,2574,2575,5], +[0,-351,-3621,-3037,-789,-7209,-815,-885,-1654,-7210,-1942,-2127,-2135,-2136,-2198,-2262,-2379,-2410], +[0,-788,-1838,-3215,-5845,-7206,-5827,-3445,-3100], +[1,3,2577], +[0,0,2578,2579,9], +[0,-351,-3621,-3037,-789,-815,-885,-1004,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], +[0,-788,-6231,-3270,-3445,-3100], +[1,3,2581], +[0,34,2582,2583,4], +[0,-7211,-3621,-3037,-543,-756,-1646,-1654,-1788,-2210,-2375,-2379,-2410,-2417,-2501,-2503], +[0,-788,-7212,-7213,-792,-4055,-7214,-7215,-7216,-7217,-7218], +[1,3,2585], +[0,2586,2587,149,8], +[0,-1693,-1107,-714,-1548,-2456,-1040,-3635,-2114,-615,-7219,-1959,-719,-1399,-695,-5203,-3611,-7220,-3610,-7221,-1366, +-7222,-7223,-7224,-930,-3608,-7225,-3604], +[0,-1788,-2359,-664,-1654,-2210,-932,-729,-753,-571,-1077,-1689,-1942,-7226,-756,-21,-633,-2211,-23,-528,-711,-2187,-43, +-3630,-3633,-40,-966,-951,-2082,-958,-539,-968,-940,-943,-967,-974,-6034], +[1,3,2589], +[0,0,2590,2591,4], +[0,-556,-558,-566,-633,-932,-7227,-1339,-1650,-7228,-2322,-2339,-2416,-7229,-2491], +[0,-7230,-7231,-7232,-7233,-2446], +[1,3,2593], +[0,2594,0,2595,4], +[0,-2359,-5413,-668,-809,-812,-999,-7234,-2555,-640,-1536,-1548,-7235,-680,-1040,-1958,-615,-6797,-910,-1077,-1646,-7236, +-719,-2369,-2430,-3628,-690,-695,-7237,-722,-1018,-1574,-1948,-7238,-7239,-995,-5987,-2297,-7240,-7241,-2313,-1394,-3626], +[0,-4864,-4865,-795,-7242,-4866,-4867,-4868,-3095,-7243,-4043,-7244,-7245,-4004,-3634], +[1,3,2597], +[0,2598,2599,7,5], +[0,-668,-7246,-2524,-720,-1564,-3532,-7247], +[0,-664,-1654,-2177,-1942,-3035,-755,-3621,-1660,-2174], +[1,3,2601], +[0,2602,2603,2604,5], +[0,-7248,-7249,-7250,-7251,-7252,-7253,-7254,-7255,-798,-7256,-7257,-6258,-7258,-7259,-799,-801,-7260,-7261,-7262,-7263, +-7264,-7265,-7266,-7267,-7268,-800,-7269,-7270,-7271,-7272], +[0,-1654,-932,-2127,-2468,-7273,-2967,-4062,-7274,-3266,-351], +[0,-797,-5092,-7275,-3839,-5176,-659], +[1,3,2606], +[0,2607,2608,2609,8], +[0,-7276], +[0,-351,-7248,-7262,-932,-1449,-1654,-2127,-2140], +[0,-797,-7277,-7278,-7279,-7280,-7281,-7282,-7283,-5839], +[1,3,2611], +[0,2612,2613,2614,10], +[0,-798,-7261,-7270,-7254,-7271], +[0,-6258,-932,-1654,-2127,-2140], +[0,-797,-7277,-7069,-7275], +[1,3,2616], +[0,0,2617,2618,5], +[0,-932,-1449,-1654,-2127,-2140], +[0,-797,-7277,-5092,-7284,-7285], +[1,3,2620], +[0,2621,2622,2623,6], +[0,-7253], +[0,-7264,-932,-1654,-2127,-2140], +[0,-797,-7277,-6524,-7275,-659,-3839], +[1,3,2625], +[0,2626,0,2627,5], +[0,-1049], +[0,-3577,-7286,-5176,-3913], +[1,3,2629], +[0,0,0,2630,4], +[0,-803,-2316,-2318,-7287,-7288,-7289,-7290,-7291,-7292,-7293,-7294,-7295,-7296,-7297,-7298,-2006,-775,-3160,-2476,-3095, +-3161,-1713,-3577,-7299,-4101,-7300,-2299,-2834,-5511,-7301], +[1,3,2632], +[0,0,14,2633,9], +[0,-7302,-1646,-6792,-7303,-4377,-5272,-687,-1758,-719,-7304,-3957,-5543,-7305,-7306,-7307,-7308,-1838,-3215,-4378], +[1,3,2635], +[0,2636,2637,7,4], +[0,-7309,-469,-510,-668,-715,-754,-763,-1004,-1376,-7310,-1625,-1666,-1953,-2105,-7311,-7312,-7313,-2549,-2550], +[0,-526,-556,-559,-664,-1654,-2106,-5331], +[1,3,2639], +[0,0,2640,7,10], +[0,-7314,-2392,-7315,-3915,-2210,-932,-7316,-1548,-2469,-2402,-1050,-1942,-756,-21,-7057,-1874,-2205,-2214,-2410,-23, +-3037,-7317,-7318,-4372,-7319,-3704,-3044,-7320,-5286,-4773,-40,-7321,-3664,-2832,-42,-428,-7322,-427,-7323], +[1,3,2642], +[0,0,2643,7,5], +[0,-1654,-2416,-21,-23,-40], +[1,3,2645], +[0,0,2646,2647,5], +[0,-21,-23,-5870,-40,-3472,-527,-533,-537,-767,-932,-934,-958,-959,-7324,-1413,-1415,-1471,-1481,-1488,-1662,-1666,-1667, +-1705,-1939,-1942,-2127,-2128,-2140,-2214,-2410], +[0,-809,-4121,-4123,-1361,-1666], +[1,3,2649], +[0,2650,2651,2652,4], +[0,-596,-1723], +[0,-7325], +[0,-510,-6367,-7326,-7327], +[1,3,2654], +[0,0,118,2655,5], +[0,-811,-7328,-5924,-7329,-7330,-6729,-7331,-7332,-7333,-7334,-7335], +[1,3,2657], +[0,2658,2659,2660,4], +[0,-1681], +[0,-627,-633,-756,-1471,-1472,-1475,-1482,-1654,-1657,-2210,-2541], +[0,-812,-1573,-7336], +[1,3,2662], +[0,0,14,2663,4], +[0,-813,-7337,-656,-7338,-6514,-6515,-6516,-2265,-5554,-5845], +[1,3,2665], +[0,2666,2667,2668,10], +[0,-7339,-7340,-7341,-7342,-1119,-1591,-1866,-7343], +[0,-985,-7344,-1849,-1866,-2125], +[0,-7345,-7346,-814,-7347,-2323,-7348,-7349,-5408,-2432], +[1,3,2670], +[0,0,2671,2672,8], +[0,-21,-40,-42,-4646,-7350,-7057,-3330,-3136,-427,-428,-535,-6046,-7351,-774,-932,-7352,-954,-959,-960,-961,-963,-965, +-7353,-7354,-971,-7355,-1344,-1415,-7356,-1498,-1534,-1608,-1609,-1768,-7357,-1942,-7358,-1945,-2091,-7359,-2391,-2410, +-7360], +[0,-815,-6818,-7361,-3184], +[1,3,2674], +[0,0,2675,2676,5], +[0,-3136,-1637,-2375], +[0,-7362,-7363,-5839,-7364,-7365,-7366,-7367], +[1,3,2678], +[0,2679,0,2680,8], +[0,-7368], +[0,-7208,-7369,-7370,-1015,-3589,-1631,-702,-6351,-3755,-6545,-7371,-7372,-7373,-7374,-7375,-3589], +[0,68,15,16,4], +[1,3,2683], +[0,0,2684,2685,5], +[0,-4055,-1654,-932,-1548,-2125,-1753,-615,-7376,-1003,-2416,-821,-964,-1656], +[0,-834,-7377,-7378,-7379], +[1,3,2687], +[0,0,2688,2689,5], +[0,-7380,-1654,-932,-1405,-589,-756,-7381,-1559,-3311,-7382,-7383,-7384,-350,-7385], +[0,-7386,-7387,-7388,-3634], +[1,3,2691], +[0,2692,2693,2694,10], +[0,-7389,-655,-7390,-6503,-7391,-7392,-7393,-7394,-7395,-1402,-5849,-1795,-1797,-7396,-7397,-7398,-7399,-7400], +[0,-5834,-515,-516,-7401,-932,-1065,-7402,-1283,-7403,-1365,-1777,-1788,-3335,-2156,-2177,-2322], +[0,-7404,-6439,-7378], +[1,3,2696], +[0,0,70,2697,4], +[0,-822,-1015,-6545,-7371,-2546,-702,-1631,-4055], +[1,3,2699], +[0,0,2700,2701,9], +[0,-3037,-7405,-1396,-7406,-2127,-2131,-2137,-2322,-2379,-2410,-2416], +[0,-1631,-6545,-1015,-6351,-702,-7371], +[1,3,2703], +[0,2704,2705,2706,5], +[0,-1111,-1393,-7407,-7408,-1826,-7409,-2218], +[0,-519,-589,-2331,-2384,-2541], +[0,-6693,-6999,-7410,-7411,-6694,-7412,-7413,-7414,-6688,-7415,-7416,-6695,-7417,-2125,-7418,-1107,-7419,-6656,-7420, +-7421,-1076,-7422], +[1,3,2708], +[0,2709,2710,2711,10], +[0,-824,-1630,-7409], +[0,-519,-999,-7423,-2541], +[0,-5732,-687,-6693,-824,-6694,-7412,-7413,-7414,-6688,-7415,-7416,-6695,-7417,-2125,-7418,-1107,-6656,-6999,-7420,-7421, +-1076,-7422,-7085], +[1,3,2713], +[0,2714,2715,2716,6], +[0,-7424,-7425], +[0,-7426,-7427,-2384,-2541], +[0,-1961,-2114,-826,-7428,-4116,-7429,-7430,-7431,-5389,-6302,-2634,-7432,-826,-510,-5867,-5923,-615,-7433,-7434,-6555], +[1,3,2718], +[0,2719,2720,2721,10], +[0,-812,-1460,-2550,-1353,-1548,-2177,-1442,-2114,-7435,-6651,-656,-1645,-7436,-1686,-755,-1048,-2115,-25,-7437,-46,-7438, +-3230,-6033], +[0,-1788,-1654,-932,-2198,-2299,-1077,-1942,-767,-21,-1972,-2410,-23,-528,-7439,-39,-43,-40,-964,-969,-933,-958,-539,-940, +-962,-967,-535,-5585], +[0,-7440,-7441,-5897,-7442,-827,-6137,-3015,-3016], +[1,3,2723], +[0,0,2724,2725,6], +[0,-589,-585,-932,-943,-958,-963,-966,-968,-974,-1405,-1654,-2155,-2418], +[0,-7443,-7444], +[1,3,2727], +[0,2728,2729,7,4], +[0,-812,-5892,-1111,-7445,-1639,-1646,-1872,-7446,-2114], +[0,-7447,-1344,-3781,-1771,-2250], +[1,3,2731], +[0,0,14,2732,10], +[0,-6806,-7448,-6659,-7449,-7450,-707,-2265,-5554,-6916,-7451,-7452], +[1,3,2734], +[0,2735,2736,2737,5], +[0,-6558], +[0,-7453,-3621,-3037,-7454,-932,-7455,-999,-7456,-2269,-2386,-7457,-2410], +[0,-6659,-7458], +[1,3,2739], +[0,0,2740,2741,6], +[0,-1788,-2384,-664,-1471,-1654,-932,-2127,-1110,-2501,-767,-2416,-190,-2410,-23,-1482,-534,-1492,-5758,-43,-40,-2411, +-2505,-1483,-2832,-539,-1490], +[0,-834,-7459,-7378,-7460,-5554,-4055,-775,-3214], +[1,3,2743], +[0,2744,2745,2746,8], +[0,-834,-7461], +[0,-190,-7462,-7463,-3136,-3037,-7464,-7465,-518,-645,-699,-748,-778,-784,-932,-959,-968,-1041,-1110,-1276,-7466,-1331, +-1344,-7467,-7468,-1415,-1534,-1607,-1643,-1650,-1758,-1889,-1891,-1906,-1908,-1927,-1942,-2375,-2376,-2379,-2410,-2411, +-2437,-2501,-2503,-2505,-2516], +[0,-5889,-834,-3240,-7469,-6722,-7470,-7471,-7472,-4131,-3240,-712,-3264,-835,-7473,-7474], +[1,3,2748], +[0,119,120,2749,4], +[0,-7477,-7478,-7479,-7480,-7481,-7482,-7483,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-7487,-7488,-3966,-4336, +-7489,-7490,-7491,-7492,-7493,-7494,-7495,-7496,-7497,-3552,-7498,-7499,-7500,-1847,-7501,-7502,-7503,-7504,-7505,-7506, +-7507,-7508,-7282,-7509,-7510,-7511,-7512,-7513,-7514,-7515,-7516,-7517,-7518,-7519,-7520,-7521,-5150,-7522,-7523,-7524, +-7525,-7526,-7527,-7528, +-7529,-7530,-7531,-7532,-7533,-6582,-7534,-7535,-7536,-7537,-7538,-7539,-7540,-7541,-7542,-7543,-7544,-7545,-7546,-7547, +-7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558,-7559,-5063,-7560,-7561,-7562,-6187,-7563, +-856,-7275], +[1,3,2751], +[0,0,2752,2753,6], +[0,-664,-665,-1127,-1144,-1149,-1156,-1452,-1453,-1542,-1654], +[0,-664,-6537,-4865,-3634], +[1,3,2755], +[0,2756,56,57,4], +[0,-7564,-7565,-840,-1406,-1744], +[1,3,2758], +[0,2759,2760,2761,6], +[0,-2387,-2426,-7567,-3675,-151,-3676,-1025,-7568,-3677,-7569,-3678,-3679,-7570], +[0,-2384,-1415,-3682,-932,-2388,-879,-1942,-767,-2410,-3037,-7571,-3683,-3685,-3686,-3687,-428,-427], +[0,-3689,-3690,-7572,-3323,-3966,-3692], +[1,3,2763], +[0,2764,0,7,4], +[0,-2416,-1044,-1813], +[1,3,2766], +[0,2767,2768,193,8], +[0,-6789,-7573,-7574,-7575,-1276,-1610,-7576], +[0,-7577], +[1,3,2770], +[0,2771,0,2772,6], +[0,-1448], +[0,-843,-856,-1446,-7578,-1599,-3862], +[1,3,2774], +[0,0,0,2775,9], +[0,-7579,-7580,-7581,-7582,-3445,-6809], +[1,3,2777], +[0,2778,31,2779,10], +[0,-7583,-7584,-7585], +[0,-7586,-7587], +[1,3,2781], +[0,2782,2783,2784,8], +[0,-523,-2550,-848,-7588,-7589,-7590], +[0,-664,-1654,-1004,-617], +[0,-856,-5119,-4004,-4100,-3671], +[1,3,2786], +[0,2787,2788,2789,10], +[0,-3417,-7590,-7591,-469,-5769,-7592,-7593,-7594,-523,-7588,-7589,-865,-7595,-7596,-7597,-1870,-1880,-7598,-2369,-4881], +[0,-827,-1004,-1654,-2177], +[0,-856,-4004,-4100,-3671], +[1,3,2791], +[0,2792,0,2793,9], +[0,-719,-1610,-1077,-2424,-1304], +[0,-856,-3671,-3262,-7599,-711], +[1,3,2795], +[0,2796,0,193,4], +[0,-885,-7600,-7601], +[1,3,2798], +[0,2799,2800,2801,10], +[0,-7602,-7603,-7604,-7605,-1969,-2324,-2446], +[0,-615,-664,-1627,-1654], +[0,-7606,-7607], +[1,3,2803], +[0,2804,2805,2806,4], +[0,-7608,-7609,-7610,-573,-7611,-653,-7612,-6838,-7613,-7614,-7615,-5835,-7616,-7617,-7618,-7619,-7620,-7621,-1376,-7622, +-7623,-7624,-1640,-1729,-7625,-7626,-7627,-2125,-7628,-7629,-7630,-2177,-7631,-7632,-7633,-2424,-7634,-2549], +[0,-7635,-7636,-7637,-711,-7638,-1666,-7639,-7640], +[0,-3260,-7641,-7642,-4258,-687,-7643,-711,-7644,-3116,-7645,-7646,-3113,-7647,-7648,-6433,-3161,-3262,-7649,-3966,-1838, +-3215,-7650,-4065,-3970,-5371,-3261,-7651,-3673,-3590,-3578,-7652,-4602], +[1,3,2808], +[0,0,2809,2810,5], +[0,-3268,-3037,-3664,-6593,-589,-7653,-7654,-932,-958,-960,-2410,-2469], +[0,-3100,-3445,-4058,-3926,-1446], +[1,3,2812], +[0,0,2813,2814,6], +[0,-23,-40,-190,-3326,-350,-4062,-351,-3266,-518,-632,-724,-920,-932,-940,-1110,-1609,-6451,-1771,-1889,-1897,-1903,-1906, +-1942,-2125,-2127,-4753,-2162], +[0,-3671,-2757,-7655,-856,-3262,-3214,-3756,-1599,-3437,-3862,-7452,-7656], +[1,3,2816], +[0,2817,71,2818,8], +[0,-7657,-7658,-1333,-1646,-2424,-7659], +[0,-1105,-1599,-856,-4328,-3215,-7660,-7661,-7662], +[1,3,2820], +[0,2821,2822,2823,8], +[0,-23,-3194,-25,-46,-47,-668,-679,-834,-7663,-4236,-3649,-1107,-2765,-1304,-1371,-1442,-7664,-1548,-5347,-7665,-7666, +-7667,-1866,-2061,-2093,-2095,-2096,-7668,-4656,-2114,-2271,-7669,-2429,-5358,-7670,-7671,-2550], +[0,-7672,-796,-7673,-932,-940,-1077,-1344,-1415,-1456,-1534,-1658,-1942,-2251,-2359], +[0,-856,-4144,-1446,-7674,-3215,-3258], +[1,3,2825], +[0,2826,2827,2828,5], +[0,-7675,-7676,-812,-7677,-7678,-7679,-7680,-2424], +[0,-3037,-1127,-1152,-1156,-1542,-1656,-6799,-2210,-2351], +[0,-7681,-7682,-857,-7683,-5800,-7684,-7685,-5801], +[1,3,2830], +[0,2831,2832,2833,4], +[0,-3484,-1088,-1107,-668,-2006,-915,-1548,-1650,-572,-784,-1004,-1889,-1955,-2105,-2195,-3728,-2353,-1077,-1356,-719, +-2019,-682,-1888,-2102,-23,-7686,-47,-518,-1304,-1607,-7687,-4356,-7688,-7689,-3649,-39,-43,-46,-2015,-7690,-40,-7691, +-7692,-41,-930,-916,-26,-36], +[0,-2125,-7693,-1075,-7694], +[0,-856,-7695,-7696,-858], +[1,3,2835], +[0,2836,27,2837,5], +[0,-7697,-703,-4700,-1288,-1293,-1310,-3544,-7698,-3788,-1645,-2087,-7699,-2427,-7700], +[0,-858,-3544,-7701,-856], +[1,3,2839], +[0,2840,2841,2842,6], +[0,-44,-786], +[0,-7702,-7703,-21,-23,-42,-7704,-7705,-7706,-427,-428,-528,-534,-932,-958,-962,-964,-969,-1003,-1107,-1437,-1471,-1475, +-1479,-7707,-1482,-1483,-1489,-1490,-1492,-1654,-2125,-7708,-2210,-2410,-2501], +[0,-860,-3159,-5092,-3690,-7709,-5553,-5389,-7710,-6730,-860,-7711,-7712,-775], +[1,3,2844], +[0,2845,2846,2847,4], +[0,-3223,-6585,-7713], +[0,-1415,-932,-674,-2375,-1942,-2410,-3136,-3037,-1333,-940,-428,-427], +[0,-3264,-6597,-7650], +[1,3,2849], +[0,0,2850,2851,8], +[0,-664,-932,-1127,-1132,-1144,-1148,-1149,-1155,-1442,-1471,-1474,-1475,-1479,-1482,-1483,-1654,-1942,-2177], +[0,-5092,-6527,-7714,-7650,-3264,-659,-3839,-7715], +[1,3,2853], +[0,2854,2855,2856,6], +[0,-7716], +[0,-23,-40,-3326,-351,-3561,-3266,-426,-3037,-767,-940,-967,-1437,-1449,-1471,-1473,-1475,-1479,-1485,-1486,-7717,-1646, +-1771,-1939,-1942,-1989,-7718,-2125,-2127,-2132,-7719,-2142,-2387,-2410,-2541], +[0,-5092,-2544,-3264,-3839,-7720,-7107,-7721,-7722,-7723,-7724,-7725], +[1,3,2858], +[0,0,2859,2860,10], +[0,-1788,-932,-756,-1939,-5478], +[0,-3110,-5922,-5493,-7651], +[1,3,2862], +[0,0,2863,2864,4], +[0,-3037,-3542,-2210,-2250,-2251,-2319,-2410], +[0,-865,-6845,-7726,-5558,-3591,-727,-6849], +[1,3,2866], +[0,194,2867,2868,5], +[0,-3037,-2250,-2251,-2319,-2410], +[0,-865,-7727,-3591,-7728,-7729,-6845,-7726], +[1,3,2870], +[0,2871,2872,2873,4], +[0,-1116,-1866,-1825,-7730,-1591,-1043,-814,-7731,-1100,-7732,-736], +[0,-2541,-519,-1722,-7733,-2125,-1849,-7734], +[0,-867,-7347,-1334,-2105,-2435], +[1,3,2875], +[0,2876,2877,2878,9], +[0,-867,-7735,-2125], +[0,-3179,-1344,-1654,-2226,-2250], +[0,-867,-1105,-7661,-7660,-7736,-7737,-2323,-7347,-7738], +[1,3,2880], +[0,2881,2882,2883,4], +[0,-870,-871,-873,-875,-876,-874], +[0,-932,-2125,-190,-2410,-3037,-2411,-428,-427], +[0,-869,-856,-687,-1446,-620,-1599,-4055], +[1,3,2885], +[0,2886,2887,2888,8], +[0,-1111,-871,-7739,-7740,-873,-875,-7741,-876,-874], +[0,-1415,-932,-2125,-1753,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-427], +[0,-869,-856,-687], +[1,3,2890], +[0,2891,2892,2893,4], +[0,-6904], +[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-6902,-427], +[0,-869,-856], +[1,3,2895], +[0,2896,121,2897,4], +[0,-7743], +[0,-869,-856,-3110], +[1,3,2899], +[0,2900,2901,2902,4], +[0,-2330,-1446,-7744], +[0,-1415,-932,-2125,-2375,-749,-190,-2410,-3136,-3037,-7745,-7742,-2411,-428,-427], +[0,-869,-856,-1446], +[1,3,2904], +[0,2905,2906,2907,4], +[0,-1600,-1304,-1605], +[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-3661,-428,-427], +[0,-869,-856,-620], +[1,3,2909], +[0,0,121,2910,8], +[0,-869,-856,-4055], +[1,3,2912], +[0,2913,121,2914,5], +[0,-1605], +[0,-869,-856,-1599], +[1,3,2916], +[0,2917,2918,2919,4], +[0,-1033,-1361,-1792], +[0,-23,-6065,-5584,-7746,-528,-7747,-767,-824,-927,-932,-7748,-940,-951,-956,-962,-967,-969,-7749,-1059,-1168,-1174,-1184, +-1188,-7750,-1201,-1208,-1212,-1243,-1266,-1415,-1942,-2006,-2019,-2052,-7751,-2347,-2417,-7752], +[0,-7753,-3496,-2006,-7754], +[1,3,2921], +[0,2922,2923,2924,5], +[0,-4007,-7755], +[0,-7756,-7757,-664,-795,-7758,-1471,-1475,-1482,-7759,-1491,-1654,-1655,-1745,-7760,-2162,-2210,-2211], +[0,-7761,-7762,-7763,-7764], +[1,3,2926], +[0,2927,2928,7,5], +[0,-2550,-2388,-7765,-1077,-7766,-2271,-1458,-7767,-7768,-7769], +[0,-932,-3037,-3041,-3048,-428,-7770,-7771,-427], +[1,3,2930], +[0,2931,0,2932,4], +[0,-7772], +[0,-7773,-880,-6582,-7685,-3445,-687,-7774,-5401], +[1,3,2934], +[0,2935,2936,113,4], +[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5366,-5340,-747,-823,-5341,-909,-5342,-5343,-5344, +-3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, +-4942,-2003,-4944,-2004,-2013,-2965,-2028,-5350,-5351,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5354, +-5355,-2427,-2429, +-5356,-2435,-5357,-5358,-5359], +[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3803,-3040,-3087,-3052,-5364,-5365,-932,-4597,-1026,-1031,-5367, +-5368,-1344,-1534,-1942,-1944,-1945,-2006,-2019,-2281,-2379,-2410,-2469,-5369,-5370], +[1,3,2938], +[0,2939,2940,113,6], +[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5339,-747,-823,-5341,-5359,-909,-5342,-5343,-5344, +-3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, +-4942,-4944,-2013,-2965,-2028,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5355,-2427,-2429,-5356,-2435, +-5357,-5358], +[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3040,-3087,-5364,-5365,-932,-1026,-1031,-5368,-1344,-1534,-1942, +-1944,-1945,-2006,-2281,-2379,-2410,-2469], +[1,3,2942], +[0,0,2943,7,5], +[0,-2322,-2346], +[1,3,2945], +[0,2946,2947,110,8], +[0,-7775,-7776,-7777,-7778,-7779,-44,-3946,-7780,-7781,-7782,-7783,-7784,-682,-747,-809,-7785,-7786,-7787,-7788,-7789, +-7790,-7791,-7792,-7793,-7794,-7795,-7796,-7797,-7798,-7799,-7800,-7801,-7802,-7803,-7804,-7805,-7806,-7807,-7808,-7809, +-7810,-7811,-7812,-7813,-7814,-7815,-7816,-4951,-2345], +[0,-5695,-5704,-3139,-7817,-4952,-2581,-5702,-3744,-3745,-3746,-3747,-162,-3778,-4954,-5706,-4106,-5708,-5699,-283,-305, +-4955,-4773,-3562,-406,-407,-409,-410,-5682,-5683,-5693,-3048,-4960,-5692,-5697,-3136,-4961,-4962,-4963,-4964,-4647, +-3044,-5686,-3037,-5688,-7818,-5675,-3803,-3624,-4966,-3040,-3087,-3052,-4968,-4969,-3199,-5687,-5673,-4971,-4972,-427, +-428,-464,-5595, +-4973,-5674,-4974,-523,-668,-674,-5701,-5676,-767,-768,-4977,-865,-881,-5698,-3808,-932,-933,-940,-948,-952,-958,-959, +-962,-7819,-963,-969,-970,-978,-1026,-4979,-1077,-1103,-1107,-5346,-1339,-1352,-1359,-1392,-1404,-1415,-4980,-1416,-1419, +-1421,-4981,-4982,-1437,-1449,-4983,-3134,-1534,-1548,-5689,-4984,-1646,-1662,-1729,-1737,-1779,-1805,-1816,-5668,-1870, +-1880, +-1942,-1943,-1950,-1955,-1978,-1983,-4985,-4986,-4987,-2006,-2013,-5680,-2019,-3051,-4988,-4989,-4990,-2027,-4991,-2044, +-4992,-2082,-2090,-2093,-2094,-2095,-4994,-5707,-4995,-2101,-2125,-5669,-2177,-2193,-2205,-2214,-5671,-5000,-2323,-2324, +-2334,-2392,-2402,-2410,-5001,-5678,-2501,-2502,-5002], +[1,3,2949], +[0,0,2950,2951,10], +[0,-86,-3307,-7820,-190,-932,-940,-964,-967,-1344,-1534,-1654,-1942,-2127,-2198,-2251], +[0,-5839,-510,-6235,-7821,-885,-7208,-1961,-7822,-6302,-3445,-3100], +[1,3,2953], +[0,2954,2955,2956,11], +[0,-2387,-7823], +[0,-22,-23,-47,-7769,-7767,-7824,-262,-350,-351,-3561,-3136,-427,-428,-668,-719,-879,-928,-932,-1077,-1111,-1344,-1415, +-1416,-1452,-1588,-1805,-2127,-2140,-2172,-2177,-2334,-2375,-2410], +[0,-886,-7825,-6581,-7826,-7275,-7827,-7828,-659,-3839], +[1,3,2958], +[0,2959,2960,2961,4], +[0,-7829,-1043,-7830,-1199,-7831,-7832,-7833,-1548,-1645,-7834,-1876,-2347,-2460,-2462,-2550], +[0,-3035,-3048,-7835,-3044,-3621,-3037,-4364,-4372,-3625,-7836,-7837,-7838,-3041,-664,-994,-1077,-1100,-1654,-1788,-1972, +-2125,-2210,-2211,-2379,-2388,-2410], +[0,-7829,-3674,-5874,-7839,-7840,-7449,-7841], +[1,3,2963], +[0,2964,2965,2966,4], +[0,-1410], +[0,-2410,-32,-633,-932,-6272,-1446,-1582,-1654,-2416], +[0,-3110,-7651,-6899,-888], +[1,3,2968], +[0,2969,2970,2971,4], +[0,-668,-1548,-7842], +[0,-1722,-461,-510,-1127,-1654,-2210,-2239,-932,-1437,-1666,-2177,-521,-600,-2501,-7843,-7844,-615,-1813,-1942,-2347, +-1003,-1026,-3767,-1132,-7845,-633,-23,-7846,-528,-534,-7847,-7848,-40,-966,-1138,-1134,-958,-1136,-1148,-968,-940,-943, +-967,-974,-7849], +[0,-889,-6045,-3817], +[0,44,15,16,5], +[1,3,2974], +[0,2975,0,195,6], +[0,-3037,-1018,-7850], +[1,3,2977], +[0,2978,2979,2980,4], +[0,-668,-2550,-680,-1077,-7851,-7852,-7853,-7854,-7855,-7741], +[0,-3041,-3048], +[0,-891,-4258,-7641,-7856,-1380,-7857,-7858,-7859,-3994,-7860,-7861,-7862,-7863,-7864,-7865,-7866,-7867,-7868,-7869,-7870, +-7871,-5730], +[1,3,2982], +[0,2983,2984,2985,4], +[0,-7872,-7850,-7873,-7874,-7875,-7876,-812,-1018,-7731,-1077,-7877,-7878,-7879,-7880,-1875,-7881,-2114,-2177,-2551], +[0,-427,-428,-519,-641,-708,-932,-943,-950,-958,-966,-968,-1788,-1872,-2210,-2384,-2402,-2410], +[0,-891,-7857,-7882,-3994], +[1,3,2987], +[0,2988,2989,195,10], +[0,-1018,-7883], +[0,-2322,-2250,-7884,-1849], +[1,3,2991], +[0,2992,56,57,6], +[0,-668,-1078,-1406,-7885], +[1,3,2994], +[0,2995,2996,7,8], +[0,-7886], +[0,-1127,-7887,-1130,-1144,-1148,-1155,-1413,-1437,-1471,-1475,-1479,-1481,-1487,-1542,-1548], +[1,3,2998], +[0,2999,3000,3001,5], +[0,-513,-532,-823,-1761,-2113,-2345], +[0,-7888,-7889,-526,-527,-534,-535,-539,-541,-544,-7890,-558,-564,-7891,-664,-679,-748,-756,-7892,-767,-778,-925,-932, +-7893,-949,-957,-7894,-1041,-7895,-1168,-1171,-7896,-1248,-1304,-1331,-1455,-5610,-1471,-1475,-1476,-1482,-7759,-1490, +-1491,-1492,-7897,-1600,-1601,-7898,-1602,-1643,-1654,-1743,-1814,-1889,-1960,-2125,-2163,-7899,-2210,-2211,-2275,-7900, +-2417, +-7901,-2437,-2476,-2481,-2483,-2485,-7902,-2501,-2503,-2505,-2509], +[0,-7903,-2476,-3098], +[1,3,3003], +[0,3004,3005,3006,4], +[0,-616,-7904,-7905,-7906,-1370,-7907,-7908], +[0,-627,-756,-932,-1127,-1130,-1132,-1137,-1138,-1148,-7909,-1161,-1405,-1654], +[0,-7910,-7911,-7912,-7913], +[1,3,3008], +[0,3009,3010,3011,4], +[0,-7914,-7915,-7916,-1329,-7917,-1548,-1752], +[0,-86,-3307,-519,-674,-767,-888,-932,-946,-1053,-1344,-1534,-7918,-1788,-7919,-1974,-2094,-2099,-2541], +[0,-735,-7920,-6899,-1501,-7921,-7922,-7923,-7924,-7925,-7926,-1752,-7927,-1974,-7928,-3110,-3261,-3443], +[1,3,3013], +[0,0,3014,7,5], +[0,-190,-7929,-3037,-7930,-3664,-932,-940,-967,-7931,-1942,-7932,-2379,-2410,-2411,-2469], +[1,3,3016], +[0,3017,3018,3019,10], +[0,-7933,-7934,-7935,-7936,-7937,-2731,-7938,-7939,-7940,-7941,-628,-7942,-629,-2733,-7943,-7944,-7945,-7946,-7947,-668, +-680,-7948,-724,-728,-7949,-7950,-7951,-7952,-834,-7953,-5501,-7954,-5502,-7955,-999,-1000,-1004,-1044,-1047,-7956,-1077, +-6345,-5505,-5367,-1107,-6343,-7957,-7958,-7959,-1336,-1369,-1376,-7960,-7961,-1548,-1600,-7962,-1645,-1676,-1758,-1767, +-7834,-7963, +-1888,-7964,-7965,-7966,-2114,-6195,-7967,-7968,-2177,-5509,-7969,-7970,-2330,-2342,-2353,-7971,-2488,-7972,-3730,-7973, +-7974,-7975], +[0,-6346,-630,-664,-665,-7976,-6477,-726,-7977,-7978,-932,-940,-7979,-964,-965,-1054,-7980,-1449,-1514,-1654,-1722,-1788, +-1942,-7981,-2269,-2293,-2341,-2359,-7982,-2512,-2518,-7983,-7984], +[0,-3994,-7985,-5375,-687,-7986,-7987,-7988,-3114], +[1,3,3021], +[0,3022,3023,3024,4], +[0,-3197,-33,-3376,-3384,-3355,-3374,-3397,-38,-3412,-40,-44,-7989,-7990,-7991,-7992,-541,-7993,-7941,-628,-7944,-7946, +-702,-7994,-7995,-7955,-6195,-2177], +[0,-23,-7996,-7997,-7998,-7999,-8000,-528,-630,-664,-705,-8001,-722,-7949,-753,-7951,-8002,-902,-8003,-904,-8004,-8005, +-8006,-8007,-8008,-8009,-932,-8010,-966,-7980,-8011,-1654,-1989,-2082,-7981,-2114,-2125,-2501], +[0,-525,-7986,-8012,-902,-3185,-3186], +[1,3,3026], +[0,3027,3028,3029,6], +[0,-8013,-8014,-7941,-8015,-6346,-6345,-7959,-8016,-5509,-2488], +[0,-23,-32,-33,-3376,-38,-3412,-44,-7996,-7998,-8017,-7990,-629,-630,-664,-8001,-726,-8002,-902,-903,-8018,-8003,-8004, +-8005,-8006,-8007,-8008,-8009,-8019,-8020,-8021,-932,-940,-8010,-964,-965,-967,-8022,-1054,-8011,-1654,-1942,-1989,-1990, +-2091,-6348,-2281,-2282,-5059,-2501], +[0,-8012,-902], +[1,3,3031], +[0,3032,3033,3034,8], +[0,-8023,-8024], +[0,-351,-3267,-3037,-1520,-2125,-2127,-2392,-2410], +[0,-905,-3264,-775,-8025,-8026], +[1,3,3036], +[0,0,0,105,8], +[1,3,3038], +[0,0,3039,3040,8], +[0,-1654,-932,-1405,-966,-958,-968,-943,-974], +[0,-6422,-907,-2435], +[1,3,3042], +[0,3043,31,3044,4], +[0,-1801], +[0,-5827,-8027,-5865,-8028,-8029,-8030,-4116], +[1,3,3046], +[0,3047,3048,7,4], +[0,-1119,-2321], +[0,-4035,-3136,-3037,-774,-932,-6929,-1344,-1415,-1534,-1623,-1942,-2410], +[1,3,3050], +[0,3051,3052,3053,4], +[0,-479,-2269], +[0,-3037,-1202,-1376,-1654,-1788,-1966,-2410], +[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3262,-3960,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3966,-3967, +-1965,-1966,-3968,-3969,-2063,-3970,-3108,-3971,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], +[1,3,3055], +[0,3056,3057,3058,8], +[0,-6511,-8031,-1977,-8032], +[0,-5834,-516,-5835,-932,-993,-1365,-1777,-1788,-2156,-2322], +[0,-3223,-8033,-8034,-3264,-6422,-6420], +[1,3,3060], +[0,0,3061,3062,9], +[0,-664,-1344,-1654,-2176], +[0,-8035,-8036,-8037,-8038,-7534], +[1,3,3064], +[0,3065,122,196,5], +[0,-987,-2346], +[1,3,3067], +[0,0,3068,3069,4], +[0,-23,-5584,-39,-40,-86,-3307,-7465,-527,-528,-533,-534,-932,-934,-940,-958,-967,-8039,-1107,-1344,-1415,-1646,-3547, +-7861,-1942,-6040,-2501,-2503,-2518,-8040], +[0,-3113,-6845,-5558,-8041,-8042,-8043,-8044], +[1,3,3071], +[0,3072,3073,85,4], +[0,-8045,-674,-918,-8046,-8047,-8048,-8049,-8050,-8051,-7394,-8052,-8053,-8054,-1559,-1794,-5849,-1797,-1798,-8055,-1992, +-8056,-8057], +[0,-526,-6022,-557,-932,-933,-958,-962,-969,-1365,-1449,-2125,-2156], +[1,3,3075], +[0,3076,3077,85,11], +[0,-1285,-2177,-2029,-1967,-1797,-8055,-2052,-917,-918], +[0,-915,-932,-2125,-1777,-21,-1365,-23,-557,-969,-2156,-32,-933,-958,-962,-970,-535,-6022], +[1,3,3079], +[0,3080,3081,85,4], +[0,-1285,-2177,-1967,-1797,-8062,-8063,-8046], +[0,-932,-2125,-1777,-21,-1365,-23,-557,-969,-2156,-32,-933,-958,-962,-970,-535,-6022], +[1,3,3083], +[0,3084,3085,85,6], +[0,-1285,-5849], +[0,-932,-2125,-1777,-21,-1365,-23,-557,-2156,-32,-958,-934,-535,-6022], +[1,3,3087], +[0,3088,3089,7,9], +[0,-459,-929], +[0,-465,-932,-943,-958,-963,-966,-968,-1654,-1788,-2293], +[1,3,3091], +[0,3092,3093,3094,4], +[0,-461,-1026], +[0,-7150,-635,-8064,-3347,-8065,-8066,-1942,-2091], +[0,-8067,-8068,-6505,-8069,-8070,-8071,-3217,-8072,-8073,-8074,-3756,-8075,-8076,-8077,-8078,-8079], +[1,3,3096], +[0,3097,3098,3099,4], +[0,-8080,-1283,-8081,-8082,-8083,-6402,-1797], +[0,-2832,-5834,-8084,-8085,-8086,-8087,-8088,-8089,-8090,-8091,-8092,-8093,-8094,-8095,-8096,-505,-516,-5835,-932,-6283, +-6503,-1402,-1777,-1788,-8097,-2156,-8098,-2322,-8099], +[0,-3214,-3217,-6505,-3756,-7374,-5846,-8100,-8101,-5831], +[1,3,3101], +[0,3102,3103,3104,11], +[0,-6704,-8102,-8103,-8104], +[0,-932,-6706,-6707,-6708,-1344,-1534,-1788,-8105,-6709,-6710], +[0,-3217,-8106,-8107,-8108,-3184,-8109,-8110,-8111,-8112,-3207,-3214,-3582,-5396,-2444,-5260,-8113], +[1,3,3106], +[0,0,3107,3108,4], +[0,-5834,-515,-932,-1365,-1414,-1788,-2156,-2416], +[0,-5396,-8108,-8114,-3214,-3217,-3582], +[1,3,3110], +[0,0,3111,3112,5], +[0,-526,-527,-535,-4098,-558,-664,-767,-1654,-2125], +[0,-3184,-6324,-525], +[1,3,3114], +[0,0,3115,3116,9], +[0,-8115,-1654,-902,-7945,-7938,-8116,-8117,-8118,-8119,-629,-7993,-8003,-8120,-8121,-6083,-6070,-8122,-6081,-548,-6072, +-6068,-550,-6071,-6082], +[0,-8123,-3582,-1961,-5923], +[1,3,3118], +[0,0,3119,3120,4], +[0,-21,-23,-40,-4691,-925,-932,-940,-943,-958,-966,-968,-1344,-1788,-1942,-2210,-2322], +[0,-1961,-5923,-3184,-8124,-926], +[1,3,3122], +[0,0,3123,3124,8], +[0,-5834,-515,-664,-923,-932,-993,-1127,-1137,-1149,-1161,-1365,-1654,-1788,-1963,-8125,-2156,-2322,-2416], +[0,-3217,-3207,-3184,-5396,-1961,-5923,-8126,-6917,-8127,-8128], +[1,3,3126], +[0,0,3127,3128,5], +[0,-589,-585], +[0,-5559,-3264,-3590], +[1,3,3130], +[0,0,14,3131,10], +[0,-5559,-5569,-5570,-8129,-8130,-2265,-8131,-8132], +[1,3,3133], +[0,3134,3135,7,4], +[0,-988,-6100,-987,-2231], +[0,-461,-615,-8133,-664,-3629,-8134,-1168,-1197,-1231,-1646,-1815,-2177], +[1,3,3137], +[0,3138,3139,3140,5], +[0,-189,-5200,-8135,-8136,-7820,-8137,-8138,-8139,-8140,-426,-469,-769,-812,-930,-982,-983,-986,-8141,-6100,-1025,-8142, +-1047,-1108,-1353,-8143,-1393,-8144,-1645,-5199,-1815], +[0,-2832,-23,-40,-3794,-7462,-3244,-8145,-8146,-3037,-428,-534,-652,-664,-674,-722,-753,-795,-888,-955,-8147,-7355,-8148, +-8149,-8150,-987,-8151,-1107,-1110,-1116,-1125,-1431,-1498,-1534,-1600,-1602,-1610,-8152,-8153,-8154,-8155,-8156,-8157, +-1654,-8158,-8159,-1942,-1959,-1972,-2066,-2082,-2177,-2195,-2210,-2410,-2501,-2503,-8160], +[0,-3272,-7148,-3214,-3217,-986], +[1,3,3142], +[0,3143,3144,197,5], +[0,-1797,-1798,-934], +[0,-2322,-887,-932,-1365,-44,-8161,-8162,-557,-969,-2156,-958,-962,-970], +[1,3,3146], +[0,3147,3148,197,4], +[0,-2177,-1797,-1798,-8167], +[0,-2322,-887,-932,-1365,-44,-8161,-8162,-557,-2156,-958], +[1,3,3150], +[0,3151,3152,3153,10], +[0,-934], +[0,-427,-428,-855,-932,-940,-958,-1344,-1534,-1771,-1942,-8168,-2410], +[0,-8164,-727,-4795,-8165,-6434,-8166,-932,-8163,-3214,-4900,-2410], +[1,3,3155], +[0,0,38,3156,8], +[0,-3939,-707,-8169,-5553,-7148,-8170,-1445,-1452,-8171,-932,-5874,-8172,-8173,-7440,-7144,-8174,-7840,-8175], +[1,3,3158], +[0,3159,38,3160,4], +[0,-190,-1110], +[0,-932,-5031,-8176], +[1,3,3162], +[0,3163,3164,3165,4], +[0,-3615,-3244,-190,-3748,-427,-428,-938,-945,-8177,-948,-958,-960,-964,-965,-7354,-978,-2411], +[0,-4367,-932,-2410], +[0,-4362,-932,-5031,-8176], +[1,3,3167], +[0,3168,3169,76,11], +[0,-965,-964,-958,-8177,-428,-7354,-427,-948], +[0,-932,-2410,-4367], +[1,3,3171], +[0,0,0,3172,6], +[0,-932,-8163,-5031,-8178,-1942], +[1,3,3174], +[0,3175,0,7,5], +[0,-23,-959,-969,-32,-958,-561,-956,-962,-8179,-428,-8167,-970,-976,-427], +[1,3,3177], +[0,0,3178,3179,5], +[0,-932,-943,-958,-965,-968,-2322], +[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8163,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2176,-2250, +-8185,-5553,-8186,-8187,-8174], +[1,3,3181], +[0,0,3182,3183,4], +[0,-3330,-8096,-932,-958,-965,-968,-2322], +[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8163,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2250,-8185, +-5553,-8186,-8187,-8174], +[1,3,3185], +[0,3186,3187,7,9], +[0,-190,-3560,-978,-1110,-2411], +[0,-8188,-3330,-3037,-8189,-672,-932,-8190,-8191,-1942,-2410], +[1,3,3189], +[0,3190,3191,3192,4], +[0,-8192,-7462,-3748,-8167,-1110], +[0,-519,-932], +[0,-8163,-2541,-8193,-8194,-8195,-8196,-8197,-707,-8169,-5553,-7148,-8170,-1445,-1452,-8171,-932,-5874,-8172,-2250,-8173, +-7440,-7144,-8174,-7840,-8175,-5493], +[1,3,3194], +[0,0,3195,3196,10], +[0,-86,-3307,-767,-1344,-1534,-2094,-2099,-2541], +[0,-8198,-727,-932,-7921,-7922,-8199,-2541], +[1,3,3198], +[0,3199,3200,3201,4], +[0,-429,-469,-671,-719,-755,-823,-3780,-7829,-1418,-1456,-5473,-1605,-2400], +[0,-190,-3037,-4372,-8200,-3899,-6593,-932,-940,-958,-965,-967,-978,-1609,-1768,-1771,-1821,-1942,-2210,-7969,-2410,-2411, +-2469], +[0,-4100,-3671,-856,-932,-3262,-3862], +[1,3,3203], +[0,3204,0,3205,8], +[0,-812,-8201,-1101,-8202,-8203,-2654,-8204], +[0,-2410,-932,-6024,-6041,-3862], +[1,3,3207], +[0,3208,3209,3210,5], +[0,-1046,-1077,-1543,-1793,-2168], +[0,-21,-23,-40,-86,-3307,-8205,-7166,-528,-533,-679,-8206,-767,-824,-825,-932,-940,-8207,-958,-1344,-1415,-1424,-1534, +-1771,-1942,-2251,-2501], +[0,-932,-7148,-8170,-5932,-2501], +[1,3,3212], +[0,3213,3214,3215,4], +[0,-189,-7462,-8208,-986,-8209,-8210,-2115], +[0,-428,-519,-652,-668,-932,-8211,-947,-955,-999,-1771,-1821,-1866,-2410,-2541], +[0,-932,-5208,-3784,-519,-4004,-4043,-507,-5856,-5855,-1654], +[1,3,3217], +[0,3218,3219,3220,9], +[0,-8212], +[0,-1654,-932,-528,-1552], +[0,-525,-932,-5208,-3784,-528], +[1,3,3222], +[0,3223,3224,3225,5], +[0,-7150,-8213,-635,-658,-1047,-1110,-1565,-2177], +[0,-23,-32,-86,-3307,-3615,-190,-3470,-3471,-8214,-3268,-8215,-3330,-3136,-8216,-3199,-589,-8217,-891,-932,-940,-955,-967, +-1002,-1344,-1415,-1942,-2174,-2205,-2375,-2379,-2410,-2411], +[0,-932,-4865,-6520,-3690,-7148,-657,-8218], +[1,3,3227], +[0,0,123,3228,5], +[0,-932,-5208,-8108,-4795], +[1,3,3230], +[0,3231,3232,3233,4], +[0,-930,-1353], +[0,-5380,-3037,-8219,-528,-708,-769,-932,-8220,-1077,-1654,-1788,-1810,-2125,-2177,-5621,-8221,-2816], +[0,-932,-5208,-3784,-3862,-8222,-3485,-8223,-1109,-1110,-8224,-8225,-8226,-8227,-8228,-8229], +[1,3,3235], +[0,3236,3237,198,11], +[0,-189,-988], +[0,-86,-3307,-3534,-8230,-3244,-190,-3560,-8231,-8232,-8233,-426,-3044,-3037,-428,-429,-3899,-932,-8234,-940,-947,-965, +-978,-981,-982,-986,-1344,-1431,-1534,-1548,-1609,-1768,-1772,-1942,-2892,-2410,-2411,-2469], +[1,3,3239], +[0,3240,3241,3242,4], +[0,-1548,-8235], +[0,-469,-1107,-1344,-1654,-932,-2125,-8236,-6611,-21,-23,-5870,-43,-2174,-40,-32,-8237,-3201,-955,-535,-3408,-36], +[0,-932,-3862,-8238], +[1,3,3244], +[0,3245,3246,3247,8], +[0,-1333], +[0,-8239,-8240,-932,-940,-8241,-1942,-2177], +[0,-3784,-5208,-932,-3264], +[1,3,3249], +[0,3250,3251,3252,9], +[0,-8242,-8243,-8244,-8045,-505,-812,-8245,-8246,-8247,-1285,-7437,-1393,-1645,-8063,-8248,-8055,-2177,-8249,-2383], +[0,-8250,-3330,-428,-526,-527,-528,-539,-541,-557,-6089,-566,-572,-664,-767,-8251,-932,-947,-948,-955,-958,-7894,-6039, +-8252,-1107,-1365,-1408,-1461,-8253,-8254,-1609,-1654,-8255,-1788,-2074,-2125,-2156,-2210,-2359,-2410,-8256], +[0,-932,-5208,-3784,-3184,-5748,-3209,-6024,-8257], +[1,3,3254], +[0,199,3255,198,6], +[0,-21,-23,-40,-42,-86,-3307,-8230,-8258,-3470,-3471,-5325,-3330,-3136,-3037,-3199,-427,-428,-429,-533,-8259,-815,-932, +-940,-947,-955,-958,-965,-967,-981,-8260,-1344,-1392,-1415,-6725,-1534,-8241,-1868,-1942,-2125,-2174,-2177,-2379,-2410], +[1,3,3257], +[0,3258,3259,3260,4], +[0,-8261,-8262,-8263,-3896,-812,-930,-986,-8141,-1320,-8264,-8265,-2177,-8266,-8267], +[0,-2832,-21,-23,-32,-3203,-40,-8268,-8269,-7820,-8270,-351,-7040,-3472,-7041,-3035,-3198,-8232,-8146,-426,-4049,-3621, +-3037,-3199,-8271,-3782,-535,-539,-8272,-652,-656,-664,-813,-932,-8237,-8236,-1107,-1110,-1344,-8273,-1456,-8274,-1534, +-1654,-8275,-1874,-8276,-2125,-2127,-2174,-2210,-5198,-2410,-2411], +[0,-932,-3862,-1446], +[1,3,3262], +[0,3263,3264,3265,9], +[0,-189,-7820,-8137,-8277,-8278,-8279,-7356,-5199,-2653], +[0,-32,-8280,-50,-8230,-7462,-8281,-8282,-3748,-7155,-3621,-8283,-3037,-3199,-427,-428,-652,-8284,-928,-932,-940,-955, +-8285,-960,-8286,-961,-963,-965,-8287,-967,-971,-980,-7355,-982,-997,-1110,-1654,-1834,-1942,-2177,-2281,-8288,-2282, +-8289,-8290,-2892,-2392,-2410,-2411,-8291,-2468,-2478], +[0,-932,-5208,-3784,-7148,-8292,-1460,-4055], +[1,3,3267], +[0,3268,3269,3270,4], +[0,-5113,-8243,-505,-8293,-522,-8294,-8295,-5973,-1285,-8296,-8297,-1645,-8063,-8032,-8298], +[0,-21,-23,-32,-3203,-43,-516,-535,-557,-932,-934,-947,-955,-956,-958,-988,-1059,-1365,-1408,-7317,-1646,-1777,-1797, +-1798,-2125,-2156,-2177,-2322,-8299], +[0,-932,-5208,-3784,-4665,-4666,-4146], +[1,3,3272], +[0,3273,3274,3275,4], +[0,-1618], +[0,-1788,-664,-1654,-932,-1110,-190,-8148,-8300], +[0,-932,-5208,-1599,-7148,-8170], +[1,3,3277], +[0,3278,0,3279,10], +[0,-1110,-189], +[0,-932,-5208,-3784,-1654], +[1,3,3281], +[0,3282,3283,200,9], +[0,-189,-909,-8301,-1101,-1110,-2898,-1353,-2177,-8302], +[0,-190,-3330,-426,-8303,-3037,-428,-5209,-932,-940,-947,-955,-1026,-1344,-1534,-1609,-1654,-1772,-1788,-1810,-1942,-1977, +-2091,-2125,-8304,-2400,-2410], +[1,3,3285], +[0,3286,3287,200,6], +[0,-6578,-8305,-1353,-1645,-2114,-2177], +[0,-5380,-708,-932,-1026,-1110,-1654,-1788,-1810,-1977,-2125], +[1,3,3289], +[0,3290,0,3291,10], +[0,-8306,-2653], +[0,-932,-5208,-3784,-1942], +[1,3,3293], +[0,3294,3295,3296,4], +[0,-189], +[0,-428,-855,-932,-940,-947,-955,-959,-965,-967,-1110,-1344,-1415,-1534,-1772,-1942,-2410], +[0,-932,-5208,-3784,-1961,-5923], +[1,3,3298], +[0,3299,3300,201,5], +[0,-8243,-8307,-505,-8308,-8245,-8309,-988,-1285,-8296,-1645,-1798,-8063,-8055,-1967,-2114,-2177,-5010,-8310], +[0,-23,-32,-3332,-8311,-8312,-41,-3330,-426,-3037,-428,-528,-932,-934,-947,-955,-958,-981,-8260,-982,-986,-8313,-1107, +-1405,-1408,-8314,-1609,-1654,-1777,-2210,-2410,-8256], +[1,3,3302], +[0,3303,3304,201,5], +[0,-2564,-23,-25,-8315,-3251], +[0,-1415,-2410,-3037,-47,-528,-3330,-426,-8316,-8317,-32,-42], +[1,3,3306], +[0,3307,3308,3309,6], +[0,-189,-5200,-3896,-8273,-8318,-8319,-8320], +[0,-50,-3462,-8230,-3244,-190,-8281,-8282,-5030,-3035,-3330,-8231,-426,-3621,-3037,-8321,-427,-428,-507,-664,-8284,-932, +-940,-947,-948,-955,-958,-960,-8286,-961,-963,-965,-8322,-967,-971,-978,-980,-7355,-8323,-1609,-1654,-8324,-1588,-1772, +-1788,-1834,-1942,-2177,-2281,-3085,-8288,-2892,-2392,-2410,-2411,-8291,-2468,-2478], +[0,-932,-5208,-3784,-5570,-5569], +[1,3,3311], +[0,3312,3313,3314,5], +[0,-8325], +[0,-190,-5887,-932,-8326,-940,-947,-955,-1534,-1609,-1654,-1771,-1942,-2174,-8160], +[0,-932,-7107,-8327], +[1,3,3316], +[0,3317,0,3318,9], +[0,-2410,-2177,-8328,-1566,-8329,-5200,-1645,-5198,-8320,-651,-644,-1110], +[0,-8330,-932,-5208], +[1,3,3320], +[0,0,123,3321,11], +[0,-932,-5208], +[1,3,3323], +[0,3324,3325,3326,9], +[0,-189,-3115,-6100,-1110,-1499,-1889,-1907,-1929,-2177,-8331], +[0,-23,-32,-6034,-8230,-4776,-8332,-8333,-4049,-8334,-3621,-3037,-8335,-3199,-8336,-3331,-3782,-461,-507,-928,-982,-8190, +-983,-986,-1431,-1521,-1654,-1916,-1931,-2162,-2232,-2286,-2299,-8337,-2392,-2399,-2548], +[0,-932,-3784,-5208,-2299,-8338], +[1,3,3328], +[0,3329,3330,3331,5], +[0,-3331,-429], +[0,-86,-3307,-3244,-190,-3037,-5206,-3664,-6593,-3665,-932,-940,-947,-948,-8339,-965,-968,-981,-8260,-1110,-1344,-1431, +-1534,-1942,-2910,-2174,-2892,-2410,-2411,-2469], +[0,-932,-5208,-3784,-7148,-5127,-3634], +[1,3,3333], +[0,3334,3335,3336,4], +[0,-429,-264,-263], +[0,-4153,-3330,-426,-932,-4164], +[0,-4165,-856,-4100,-3485,-4156,-4158,-4346,-3862], +[1,3,3338], +[0,3339,3340,3341,9], +[0,-3188,-189,-671,-680,-8340,-3347,-8341,-1110,-1366,-5894,-1451,-1878,-8342,-8343,-2177,-4096], +[0,-22,-23,-32,-3244,-8344,-428,-3782,-519,-652,-910,-932,-8211,-945,-947,-955,-960,-978,-981,-8260,-982,-986,-1536,-1609, +-8345,-8346,-1768,-1772,-8275,-1821,-1951,-2410,-2478,-2548], +[0,-932,-5208,-3784,-8347,-8170,-7148,-5553,-2541], +[1,3,3343], +[0,199,3344,3345,4], +[0,-3748,-3330,-3621,-3037,-427,-428,-5206,-8348,-8349,-726,-932,-947,-955,-979,-981,-8260,-2379,-2392,-2410,-2423,-2469], +[0,-932,-5208,-3784,-8350,-2469,-8351], +[1,3,3347], +[0,3348,3349,3350,5], +[0,-189,-5199,-2788,-1931,-2177,-8352], +[0,-50,-3560,-8282,-3748,-5030,-3330,-8283,-3037,-3199,-8353,-427,-428,-3782,-3664,-507,-8284,-928,-932,-6835,-940,-955, +-958,-961,-8354,-8287,-967,-978,-8190,-983,-986,-997,-1110,-1449,-1609,-1852,-1942,-2892,-2410,-8291,-2468,-2469,-2478], +[0,-932,-3784,-5031,-2476,-5173,-8199], +[1,3,3352], +[0,3353,3354,3355,6], +[0,-22,-1464,-668,-1373,-1793,-2006,-2205], +[0,-3244,-8355,-3330,-3037,-4067,-3040,-740,-932,-5135,-8356,-8357,-1431,-1741,-2269,-2410,-2469], +[0,-932,-8358], +[1,3,3357], +[0,3358,3359,38,9], +[0,-8359,-426,-8360,-988], +[0,-428,-664,-983,-986,-8159,-2195], +[1,3,3361], +[0,0,3362,38,5], +[0,-1810,-2127,-2132,-2384,-2410], +[1,3,3364], +[0,3365,0,3366,4], +[0,-941,-8361], +[0,-984], +[1,3,3368], +[0,0,0,3369,9], +[0,-4791,-3217,-8257,-6024,-3209,-3966,-4792], +[1,3,3371], +[0,3372,3373,3374,5], +[0,-461,-6426,-983], +[0,-2832,-2127,-2195,-2384,-2410], +[0,-3272,-3217,-3214,-3215,-4132,-461], +[1,3,3376], +[0,0,3377,3378,5], +[0,-6774,-8362,-8363,-1107,-1405,-8364,-1471,-1475,-1477,-1478,-1479,-1480,-1482,-1487,-8365,-1488,-1548,-1654,-8366, +-2081,-2330,-2388,-2410,-2412,-8367,-2501], +[0,-3272,-3217,-987,-3214,-3215,-4132], +[1,3,3380], +[0,0,3381,7,5], +[0,-558,-566,-664,-986,-1168,-1179,-1199,-1205,-8368,-1452,-1654], +[1,3,3383], +[0,202,3384,7,6], +[0,-2410,-2447], +[1,3,3386], +[0,0,3387,3388,6], +[0,-1654,-932,-1405,-589,-2172,-2155,-585,-966,-958,-968,-943,-963,-974], +[0,-990,-1334,-4616], +[1,3,3390], +[0,3391,3392,3393,8], +[0,-8369,-992], +[0,-8370,-8371,-8372,-8373,-4272,-5686,-3037,-8096,-633,-8374,-756,-1344,-1405,-1471,-1472,-1477,-1479,-8375,-1646,-1788, +-1942,-2322,-2379,-2388,-2402,-2405,-2410,-8376], +[0,-4276,-8377], +[1,3,3395], +[0,3396,3397,3398,5], +[0,-4272,-616,-760,-8378,-8379], +[0,-8380,-3037,-8381,-8096,-932,-1471,-1475,-1479,-8375,-8382,-1788,-1942,-2322,-2379,-2410], +[0,-4276,-8113,-5260], +[1,3,3400], +[0,3401,3402,3403,5], +[0,-461,-668,-2550,-1548,-615,-1077,-8383,-988,-1600,-8384,-2425], +[0,-1983,-8385,-2410,-3037], +[0,-8386,-8387,-3214,-1599,-4004], +[1,3,3405], +[0,3406,3407,3408,5], +[0,-883,-8388,-1597,-8389,-2239,-8390,-2346], +[0,-8391,-8392,-8393,-2322,-8394], +[0,-5827,-6917,-8395,-7724,-2239,-8396,-1631,-8276], +[1,3,3410], +[0,0,3411,3412,9], +[0,-589,-615,-756,-1654,-1788], +[0,-5389,-997,-6820,-8397,-8398,-8399,-8400,-6821,-8401,-8402,-1801,-8403,-8404], +[1,3,3414], +[0,0,3415,3416,4], +[0,-350,-3266,-509,-652,-1654,-2127], +[0,-8405,-8406,-8407,-8408,-8398,-8399,-6821,-8401,-6820,-5389,-1801,-8400,-8403,-8409,-8404], +[1,3,3418], +[0,0,3419,3420,5], +[0,-468,-1083,-8047,-1283,-1402,-2322], +[0,-997,-8410,-8411,-8412], +[1,3,3422], +[0,3423,3424,3425,4], +[0,-8413,-769,-1040,-1100,-8414,-1395,-1399,-1773,-1951,-2202,-8415,-8416], +[0,-3037,-519,-652,-8417,-8418,-8419,-8420,-1849,-7087,-6909,-2384,-2410,-2518,-2541], +[0,-8421,-6599,-1958,-8422,-7096,-8423,-8424,-7091,-6656,-5550,-8425,-7304,-8426,-1764,-1847,-8427,-5369], +[1,3,3427], +[0,0,3428,3429,6], +[0,-1144,-1146,-1149,-1127,-2518], +[0,-1000,-1958,-8428,-3973,-8429,-8430,-8431,-8432], +[1,3,3431], +[0,3432,3433,7,4], +[0,-8433,-8434,-5124,-4025,-5129,-1427], +[0,-7037,-4034,-668,-1361], +[1,3,3435], +[0,0,3436,3437,4], +[0,-2832,-3037,-8200,-3665,-932,-8435,-1763,-8436,-2269,-2378,-2410,-2469], +[0,-2410,-8437,-507,-3694,-2414,-4004,-3634], +[1,3,3439], +[0,3440,3441,203,4], +[0,-1983,-828,-990,-1801,-2178,-2453,-812,-1072,-743,-3122,-459,-2401,-1840,-2255,-907,-1641,-5148,-617,-929,-1335,-1800, +-737,-1045,-1997,-2187,-746,-8438,-736], +[0,-888,-1296,-1788,-465,-1654,-2457,-932,-1610,-1676,-2293,-733,-744,-745,-1010,-1635,-8439], +[1,3,3443], +[0,3444,3445,203,4], +[0,-459,-8440,-617,-736,-737,-743,-746,-812,-828,-907,-929,-990,-1045,-1072,-1335,-8438,-1636,-1800,-1840,-1851,-5148, +-1983,-1997,-2155,-2178,-2187,-8441,-2255,-2401,-2445,-2453], +[0,-465,-733,-744,-745,-888,-932,-1010,-1296,-1610,-1635,-1654,-1676,-1788,-8439,-2293,-2457], +[1,3,3447], +[0,3448,3449,3450,6], +[0,-23,-25,-46,-8245,-1851], +[0,-3136,-932,-1415], +[0,-4847,-1004,-1446,-4100,-3696,-8442,-856,-2305,-5886,-3262,-3960,-8443,-8444,-8445], +[1,3,3452], +[0,3453,3454,3455,4], +[0,-888,-1650,-719,-1645,-6123], +[0,-1654,-932,-2125,-2418,-2293,-2369,-966,-958,-968,-943,-974,-2450], +[0,-1004,-3161,-6125,-3578,-3691,-5728,-3122,-3994,-3690], +[1,3,3457], +[0,3458,3459,3460,5], +[0,-1107,-1119,-1276], +[0,-190,-3470,-7040,-3471,-3472,-7041,-7042,-3136,-3037,-932,-1110,-1417,-2174,-2375,-2410,-2411], +[0,-1004,-8446,-1276,-6107,-3999,-8447,-3261], +[1,3,3462], +[0,3463,3464,3465,5], +[0,-1465,-8448,-3850], +[0,-1654,-932,-1004,-2379,-1942,-2410,-3621,-3617,-739,-428,-427], +[0,-6120,-8449,-3173,-8450,-6121,-1334,-3175,-8451,-1791,-1004], +[1,3,3467], +[0,3468,3469,7,5], +[0,-743,-746,-812,-828,-6825,-1840,-2155,-2418], +[0,-465,-744,-932,-963,-1004,-1654,-1788,-2293], +[1,3,3471], +[0,3472,3473,3474,5], +[0,-469,-668,-719,-724,-754,-865,-1004,-1435,-2127,-2132,-2410,-2564], +[0,-190,-3732,-4198,-3617,-3037,-427,-428,-932,-966,-1110,-1753,-1942,-2125,-2379,-2383,-2411], +[0,-3690,-3445,-6491,-3113,-6129,-1004,-8452,-3161,-8453,-5545,-3844,-3926], +[1,3,3476], +[0,0,3477,3478,5], +[0,-652,-8454,-2210,-932,-1004,-2379,-8455,-2410,-3037,-4372,-3617,-428,-427], +[0,-8456,-8457,-4055,-2410,-3690,-1334,-1004,-8458,-8459,-2410,-5401,-8038,-8460,-8461,-8462,-8463,-8464,-4140,-4601, +-3445,-8465,-8466,-2006,-8467,-8468,-8469], +[1,3,3480], +[0,3481,3482,3483,4], +[0,-1548,-2451], +[0,-2685,-8470,-8471,-3136,-3044,-427,-428,-932,-940,-958,-967,-1415,-1942,-2375,-2410], +[0,-1004,-2451,-3926,-5874,-7723,-8472,-2544], +[1,3,3485], +[0,3486,3487,3488,5], +[0,-483,-1736,-8473,-1993,-8474], +[0,-3732,-4198,-8475,-3617,-4199,-8476,-8477,-4625,-8478,-724,-754,-828,-1004,-4206,-1335,-1730,-8479,-2410,-2426,-2564, +-8480], +[0,-3967,-3690,-1334,-5401,-856,-4055,-1004,-2410,-4058,-3844,-8481,-4847,-8482,-3438,-8483,-8484,-8485,-8486,-2564,-3926], +[1,3,3490], +[0,0,3491,3492,8], +[0,-5834,-8487,-932,-1445,-2322], +[0,-1015,-702,-1631], +[1,3,3494], +[0,3495,3496,3497,8], +[0,-8488,-8489], +[0,-8490,-8491,-8492,-1202,-1396,-8493,-1646,-1654,-1792], +[0,-7370,-702,-1015,-1631,-7369,-7208,-1792,-1797,-7375,-3589,-7153,-8494,-8495,-2444,-3590,-5260,-5846], +[1,3,3499], +[0,3500,3501,7,5], +[0,-510,-1543,-2168,-2510], +[0,-526,-533,-551,-556,-558,-767,-778,-825,-932,-6929,-958,-1041,-1415,-1534,-1780,-1939,-2000,-2251,-2275,-2501,-8496], +[1,3,3503], +[0,3504,3505,3506,10], +[0,-812,-1100,-2555,-8497], +[0,-427,-428,-519,-932,-943,-950,-958,-966,-968,-974,-1077,-1344,-1534,-1788,-2384,-2410], +[0,-2432,-5408,-7347], +[1,3,3508], +[0,0,3509,7,9], +[0,-1788,-1168,-1446,-1654,-2210,-932,-1548,-1813,-2347,-756,-633,-2915,-1243,-1262,-1534,-2778,-2461,-1204,-8498,-8499, +-2463], +[1,3,3511], +[0,3512,3513,3514,4], +[0,-8500], +[0,-932,-937,-966,-1001,-1654,-1788,-8501,-2210], +[0,-8502,-1573,-3444,-5545,-3240,-8503], +[1,3,3516], +[0,3517,3518,3519,4], +[0,-8504], +[0,-262,-3037,-767,-1107,-8342,-2104,-2402,-2410,-2469,-8505,-8506,-1023], +[0,-8507,-8508,-5858,-3634,-8509,-8510,-8511,-1021,-8512,-8513,-1415], +[1,3,3521], +[0,3522,0,3523,8], +[0,-8514,-8515], +[0,-788,-3215,-5922,-8516,-8517,-8518], +[1,3,3525], +[0,0,3526,3527,4], +[0,-756,-864,-932,-1654,-1788,-1939,-2006,-2052,-2210,-2410], +[0,-5922,-6439,-821], +[1,3,3529], +[0,3530,3531,204,4], +[0,-8519,-8520,-1108,-5615,-1639], +[0,-8521,-6927,-8522,-4036,-3621,-3037,-8523,-4372,-8524,-932,-8525,-999,-1026,-4787,-1107,-8526,-1654,-2125,-2210,-8527, +-2410], +[1,3,3533], +[0,0,3534,7,5], +[0,-3621,-3037,-1654,-2165,-2410], +[1,3,3536], +[0,3537,3538,3539,11], +[0,-8529], +[0,-23,-38,-40,-43,-3037,-534,-652,-932,-1297,-1412,-1942,-1973,-2410,-2501,-2503], +[0,-5922,-6597,-4055,-3215,-2536,-6841,-2537,-3756,-2451,-5874,-8530,-507,-8531,-8532,-3264], +[1,3,3541], +[0,0,0,3542,10], +[0,-1029,-3162,-2363,-2319,-8533,-826], +[1,3,3544], +[0,3545,3546,3547,4], +[0,-8534,-8535,-8536,-8537,-8538,-8539,-8540,-8541,-8542,-1867,-8543,-2124,-8544,-2177,-8545], +[0,-8546,-3902,-357,-3748,-5029,-3037,-469,-3907,-470,-8547,-8548,-8549,-2917,-8550,-726,-767,-932,-8551,-4848,-8552, +-8553,-1335,-1435,-5265,-1464,-8554,-2884,-1730,-1972,-2240,-2384,-2410,-2426,-2453,-3612], +[0,-3578,-3161,-4055,-4058,-1805,-3690], +[1,3,3549], +[0,3550,3551,7,5], +[0,-262,-8555,-5335,-8556,-8557,-5336,-5337,-8558,-8559,-536,-541,-8560,-8561,-909,-928,-1026,-5344,-8562,-1645,-8563, +-2383,-2410,-8564], +[0,-86,-3307,-367,-3136,-8565,-8566,-3037,-6025,-5367,-1344,-1415,-3640,-1534,-1942,-1944,-1945,-2125,-2379,-2392,-5369], +[1,3,3553], +[0,3554,3555,3556,10], +[0,-8567,-8568,-8569,-8570,-8571,-6369,-883,-1646,-8255,-2062,-8032,-2243,-8572,-8057,-8573,-2322,-2347], +[0,-5834,-515,-516,-932,-1365,-1777,-2156], +[0,-2319,-8574,-4004,-8575,-8576,-3240], +[1,3,3558], +[0,3559,3560,7,5], +[0,-768,-8577,-1580,-1792,-1961,-8578,-2594], +[0,-23,-824,-1059,-1168,-1174,-1201,-1243,-1361,-1417,-1632], +[1,3,3562], +[0,28,3563,3564,9], +[0,-21,-23,-40,-41,-3470,-3471,-8579,-5859,-8580,-553,-796,-932,-933,-1534,-1650,-2174], +[0,-8581,-8582,-8583,-8584,-3098,-8585,-3100,-3482,-2006,-8586,-8587,-5066,-3578,-8588,-8589,-8590,-8591,-8592,-8593, +-8594,-8595,-8596,-8597,-8598,-8599,-8600,-8601,-8602,-8603,-8604,-8605], +[1,3,3566], +[0,39,3567,3568,4], +[0,-21,-23,-38,-40,-41,-42,-3326,-350,-351,-3267,-407,-409,-2622,-3136,-3040,-3052,-427,-428,-708,-726,-767,-932,-934, +-940,-7476,-958,-959,-969,-970,-1415,-2006,-2019,-2082,-2127,-2140,-2375,-2387,-2410], +[0,-8606,-3100,-8607,-2074], +[1,3,3570], +[0,3571,0,3572,8], +[0,-8608,-8609,-8610,-5140], +[0,-4213,-1334,-4215,-3634,-4216,-8611], +[1,3,3574], +[0,3575,0,3576,10], +[0,-8612], +[0,-8613,-1038,-6768,-8614,-510,-5921,-8615,-6309,-1961], +[1,3,3578], +[0,75,3579,3580,4], +[0,-3037,-3665,-510,-1344,-1534,-2410,-2466,-6859,-2469], +[0,-1039,-4111,-8616,-8617,-5514], +[1,3,3582], +[0,3583,14,3584,9], +[0,-6861], +[0,-4112,-687,-7095,-3958,-8132,-8618,-8619,-8620,-1040,-8621], +[1,3,3586], +[0,205,3587,48,4], +[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-1344,-1415,-1534,-1623,-1771,-1942,-2251,-2437, +-2501], +[1,3,3589], +[0,0,3590,3591,8], +[0,-21,-23,-4691,-3356], +[0,-8622,-8623,-8624], +[1,3,3593], +[0,3594,3595,3596,4], +[0,-8625,-8626,-8627,-8628], +[0,-8629,-3037,-519,-8630,-1100,-8631,-2384,-2541], +[0,-1640,-6656,-8038,-8632,-5409,-6527,-5094,-8633,-8634,-6855,-8635,-8636,-6659,-7440,-1391,-8637,-8638,-8639,-7863, +-7304,-640,-6438,-8640,-7715,-8641,-8642,-5315,-8643,-8644,-8645,-8646,-8647,-8648,-8649,-8650,-8651,-1992,-8652,-8653, +-8654,-8655,-8656,-8657,-5408,-2323,-8658,-8659,-7345,-8660,-7860,-8661,-8662,-8663,-8664,-8665,-8666,-8667,-8668,-8669, +-8670,-8671,-8672,-8673, +-8674,-8675,-6528,-8676,-8677,-5953,-8678,-8679,-8680,-8681,-8682,-8683,-8684,-8685,-8686,-8687,-8688,-3742,-8689,-8690, +-8691,-8692,-8693,-8694,-8695,-8696,-8697,-8698,-8699,-8700,-8701,-8702,-8703,-8704,-2534,-8705,-8706,-8707,-8708,-8709, +-8710,-8711,-8712,-8713,-8714,-6597,-8715,-8716,-4771,-8717,-8718,-8719,-6042,-8720,-8721,-8722,-8723,-8724,-8725,-8726, +-8727,-8728,-8729,-8730, +-8731,-8732,-8733,-8734,-8735,-8736,-8737,-8738,-8739,-8740,-8741,-8742,-8743,-8744,-8745,-8746,-8747,-8748,-8749,-8750, +-8751,-8752,-8753,-5316,-8754,-8755,-8756,-8757,-7557,-8758,-8759,-8760,-8761,-8762,-8763,-8764,-8765,-8766,-7711,-8767, +-8768,-8769,-8770,-8771,-8772,-8773,-8774,-8775,-8776,-8777,-8778,-8779,-8780,-8781,-8782,-8783,-8784,-8785,-8786,-8787, +-8788,-8789,-8790,-8791, +-8792,-8793,-6695,-8794,-8795,-8796,-7349,-8797,-8798], +[1,3,3598], +[0,0,3599,3600,9], +[0,-3266,-516,-652,-932,-1344,-1654,-2127], +[0,-6656,-1044,-8799,-8800,-8801,-651,-834], +[1,3,3602], +[0,3603,81,7,6], +[0,-812,-907,-929,-1800,-1840,-2255], +[1,3,3605], +[0,3606,3607,3608,5], +[0,-1871,-5907], +[0,-2541,-519,-824,-2384,-2331], +[0,-3324,-7421,-6491,-5573,-7282], +[1,3,3610], +[0,3611,3612,3613,4], +[0,-8802,-8803], +[0,-519,-7408,-2331,-2384,-2541], +[0,-5573,-8804,-1047,-5504,-8805,-8806,-6656,-7282,-5572,-5897,-2114,-8807,-6370,-7420,-7421,-2487,-8808,-1847], +[1,3,3615], +[0,3616,3617,3618,4], +[0,-8809,-1393,-1639,-8810], +[0,-932,-937,-966,-1001,-8811,-1654,-1759,-1788,-2114], +[0,-6656,-5573,-1047,-5504,-1107,-5572,-5574,-2114,-7282], +[1,3,3620], +[0,3621,3622,3623,4], +[0,-8812,-8813,-8814,-8815,-8816,-8817,-8818,-8819,-8820,-8821,-8822,-8823,-8824,-8825,-8826,-8827,-8828,-8829,-8830, +-8831,-8832,-8833,-8834,-8835,-8836,-8837,-8838,-8839], +[0,-1168,-2127,-2410,-1244,-1252,-2143,-3266,-2134,-350,-2139,-2142,-351], +[0,-3173,-7685,-8840,-1050,-8841,-6005,-6187,-8842], +[1,3,3625], +[0,3626,3627,3628,10], +[0,-8843,-8831,-8844,-3037,-8845,-1025,-8846,-1465,-8847,-1730,-2446], +[0,-8848,-8824,-8825,-8849,-262,-8850,-3035,-4269,-8851,-3850,-3044,-5686,-3621,-4624,-8852,-8853,-4372,-3625,-3738,-427, +-428,-581,-664,-665,-3629,-668,-677,-824,-932,-8854,-1168,-1199,-1208,-1261,-8855,-1548,-1646,-1654,-1693,-1722,-1771, +-1788,-2105,-2106,-2150,-2210,-2211,-2379,-2410,-2550], +[0,-8856,-7685,-8840,-8841,-3173], +[1,3,3630], +[0,3631,0,3632,10], +[0,-8857,-8858,-8859,-8860,-8861,-8862,-4106,-8863,-458,-469,-470,-501,-8864,-617,-679,-8865,-695,-713,-719,-728,-754, +-767,-769,-790,-8866,-8867,-8868,-1004,-1044,-1069,-1077,-1087,-8869,-1107,-8846,-1353,-1442,-1465,-1526,-8870,-1548, +-8871,-1610,-6294,-1640,-1645,-1676,-1729,-1805,-1816,-3447,-1857,-8872,-8873,-1888,-1959,-8874,-2122,-2177,-8875,-8876, +-8877,-8878, +-4356,-2359,-8879,-8880,-8881,-2446,-2520,-2522,-2531,-2548,-2564,-8882], +[0,-8883,-687,-8884,-5801,-8885,-1050,-8841,-6224,-8886], +[1,3,3634], +[0,3635,86,3636,9], +[0,-8887,-668,-831,-8888,-8889,-2001], +[0,-7416,-5897], +[1,3,3638], +[0,3639,3640,7,5], +[0,-3048,-8566,-8890,-1077,-8891,-2488], +[0,-3037,-2125,-2319,-2410], +[1,3,3642], +[0,0,86,3643,5], +[0,-1055,-4055,-5841,-8892,-2239,-7208,-8893], +[1,3,3645], +[0,3646,206,3647,5], +[0,-812,-926,-1077,-1548,-2359], +[0,-7871], +[1,3,3649], +[0,0,3650,3651,4], +[0,-23,-36,-6064,-40,-8894,-3048,-3036,-3136,-4964,-3037,-8336,-551,-679,-756,-1077,-1107,-1415,-1942,-2125,-2127,-2128, +-8895,-8896,-2141,-2334,-2375,-2379,-2387,-2410], +[0,-3214,-4224,-4120,-4121,-4123,-4122,-8897], +[1,3,3653], +[0,3654,3655,3656,9], +[0,-8898,-668,-1038,-1381,-1531,-1758,-6467,-1965,-2177,-2246,-8899,-6007], +[0,-664,-756,-932,-1405,-8900,-1654,-1939,-1972,-2210], +[0,-8901,-8902,-8903,-8904,-8421,-5550,-6836,-8905,-8906,-5921,-8907,-8908,-8427,-5801,-8909], +[1,3,3658], +[0,0,0,3659,4], +[0,-5732,-687,-8425,-7304,-5411,-4038,-8038,-8910,-7440,-7144,-3214,-3756,-8911], +[1,3,3661], +[0,3662,3663,3664,11], +[0,-2997,-8912,-8913,-1889,-2318], +[0,-23,-40,-3559,-8914,-8915,-427,-428,-518,-534,-749,-753,-767,-778,-779,-784,-932,-940,-967,-8916,-1041,-8917,-1643, +-1771,-1942,-8918,-4245,-2200,-2233,-2275,-2335,-2376,-2410,-2501,-2503,-2505,-8919,-2552], +[0,-1060,-2410,-3214,-2501,-3264,-775,-5511,-8920,-2316,-7287,-8921,-8922,-8923,-8924,-7287,-8925,-7288,-7289,-8926,-7294, +-8927,-8928,-7297,-7293,-7292,-7296,-8929,-932,-1942,-8930,-985,-8931], +[1,3,3666], +[0,3667,3668,3669,4], +[0,-510,-2518], +[0,-1788,-1446,-1654,-2198], +[0,-8932], +[1,3,3671], +[0,3672,3673,3674,4], +[0,-8933,-1033], +[0,-23,-534,-7747,-824,-1168,-1174,-1201,-1208,-1243,-1266,-1361,-1415,-1419,-1792,-2006,-8934,-2019,-2463,-2501,-7752], +[0,-1062,-2006,-4038,-8935], +[1,3,3676], +[0,0,3677,3678,4], +[0,-725,-932,-1004,-8936,-1654,-1788], +[0,-1334,-1342,-2435,-8937,-3323,-8938,-3590], +[1,3,3680], +[0,0,0,3681,9], +[0,-3827,-3837,-3838,-3167,-3827,-620], +[1,3,3683], +[0,3684,3685,7,11], +[0,-8050], +[0,-2832,-5834,-8084,-8939,-8096,-516,-932,-1777,-1788,-2322], +[1,3,3687], +[0,3688,3689,3690,11], +[0,-510,-8940,-702,-8941,-714,-1650,-2520,-8942,-8943,-1953,-728,-995,-1792,-8944], +[0,-664,-2471,-1654,-932,-1666,-8945,-2105,-1942,-8946,-940,-967], +[0,-687,-8947,-8948,-3674], +[1,3,3692], +[0,3693,3694,3695,8], +[0,-22,-668,-679,-755,-823,-1077,-1623,-1645,-8949,-2168,-2177,-2321], +[0,-3307,-7040,-3842,-3472,-7041,-7042,-8355,-7080,-3048,-3136,-4049,-8566,-3637,-3037,-8890,-3199,-427,-428,-721,-767, +-932,-958,-966,-967,-4650,-1344,-1415,-8950,-1421,-1456,-8951,-1534,-1658,-1942,-2125,-2174,-2269,-2375,-2410,-2501], +[0,-2501,-3862,-2410,-8952,-2376,-2501,-8423,-5922], +[1,3,3697], +[0,3698,3699,3700,5], +[0,-6008,-668,-679,-1548,-1639,-1645,-2114,-2321], +[0,-8953,-7202,-3044,-4036,-8566,-3037,-3200,-3046,-664,-778,-932,-1344,-1405,-1534,-1654,-1658,-1660,-1942,-2125,-2210, +-2376,-2388,-2389,-2410,-2476,-2477,-2481,-2485,-2501], +[0,-2501,-3862,-2410,-8038,-7144,-8170,-8423,-5922,-6188,-2376,-520,-8954,-7172], +[1,3,3702], +[0,3703,3704,7,6], +[0,-8955,-8956,-8957,-1285,-1641], +[0,-5834,-516,-633,-8958,-756,-769,-932,-8959,-8960,-1070,-1365,-8961,-1405,-8962,-8963,-6058,-1939,-1978,-2105,-2125, +-2177,-2322], +[1,3,3706], +[0,3707,3708,3709,4], +[0,-1801,-8964,-8965], +[0,-1501,-1788,-1415,-932,-2127,-1004,-1942,-2293,-8966,-958,-3234,-940,-967,-350,-8967,-934,-351,-8968], +[0,-6463,-4053,-6582,-1985,-8969,-4055,-8970,-6656], +[1,3,3711], +[0,3712,3713,3714,9], +[0,-5220,-823,-1311,-1548,-1549,-2798,-8971,-2387], +[0,-409,-3044,-3040,-3052,-4972,-8972,-2006,-2019,-8973,-2410,-3612], +[0,-1071,-4053,-4054,-2006,-2019,-3322,-8974,-3926,-8975,-3926,-8976,-8977], +[1,3,3716], +[0,0,3717,3718,6], +[0,-1654,-932,-1405,-589,-585,-966,-958,-968,-943,-963,-974], +[0,-1072,-1334,-8978,-3324], +[1,3,3720], +[0,3721,3722,3723,4], +[0,-668,-3606,-2267], +[0,-527,-528,-534,-545,-560,-932,-949,-1001,-1415,-1626,-2501], +[0,-8979,-8980,-2501,-3862], +[1,3,3725], +[0,3726,3727,3728,4], +[0,-1442], +[0,-627,-8981,-756,-1405,-2250,-2322,-2568], +[0,-2548,-8982,-8983], +[1,3,3730], +[0,3731,3732,3733,8], +[0,-1119,-1462,-8984], +[0,-8985,-5726,-1646,-1654,-1788,-1972,-8986,-2250], +[0,-1076,-6656,-8801,-6351,-7421,-8987,-1650,-8988,-8989,-7371,-4055,-2059,-6234,-8987,-6693,-6694,-2363,-8990,-5554, +-8991,-6932,-1961], +[1,3,3735], +[0,124,3736,3737,4], +[0,-3035,-3048,-3621,-3037,-664,-1077,-1405,-1654,-1788,-1942,-1948,-8992,-2379,-2410], +[0,-1076,-8801], +[1,3,3739], +[0,3740,3741,3742,4], +[0,-8993,-1077,-1693,-8994], +[0,-3048,-3623,-1654,-925,-2148,-615,-2517,-1980], +[0,-1961,-1076,-6656,-8801], +[1,3,3744], +[0,0,3745,3746,5], +[0,-1733], +[0,-1080,-8995], +[1,3,3748], +[0,3749,3750,7,11], +[0,-1650,-2125,-1370,-1119], +[0,-2319,-2250], +[1,3,3752], +[0,3753,0,3754,8], +[0,-2543,-2062], +[0,-1082,-3323,-6931], +[1,3,3756], +[0,0,3757,3758,5], +[0,-5834,-515,-516,-932,-1788,-2156,-2322], +[0,-5924,-6557,-8108,-6444,-7163,-8996], +[1,3,3760], +[0,0,3761,3762,4], +[0,-21,-23,-32,-36,-3367,-40,-42,-86,-3307,-8997,-3326,-351,-3561,-8998,-8999,-9000,-9001,-8219,-2716,-2717,-534,-932, +-940,-1344,-9002,-1942,-2104,-2127,-2132,-2251,-2334,-2410,-2469,-2816,-9003], +[0,-1087,-7282,-9004], +[1,3,3764], +[0,0,3765,3766,11], +[0,-3748,-3268,-427,-428,-367,-589,-932,-943,-948,-958,-965,-968,-1344,-2391], +[0,-7314,-3578,-1334,-3844,-9005,-3445,-3161], +[1,3,3768], +[0,0,0,3769,8], +[0,-1087,-7282,-7724,-9006,-9007], +[1,3,3771], +[0,3772,3773,3774,6], +[0,-9008], +[0,-510,-1127,-9009,-1132,-1144,-1146,-2125,-2176], +[0,-2490,-1107], +[1,3,3776], +[0,0,3777,7,6], +[0,-2410,-3037], +[1,3,3779], +[0,3780,3781,3782,5], +[0,-668,-2562,-2523,-2557], +[0,-1127,-1131,-9010,-9011,-1542,-2425,-1144,-1151], +[0,-2557,-3970,-3161,-3095,-3577,-3994,-475], +[1,3,3784], +[0,3785,3786,3787,5], +[0,-668,-2218,-2562,-1548,-9012,-2557,-2425], +[0,-1693,-888,-664,-622,-1654,-2210,-932,-1650,-615,-1405,-719,-2211,-769,-1440,-665,-2070,-1657], +[0,-2557,-475,-1168,-9013,-9014,-620,-478,-9015,-2162,-1521,-3184,-525,-9016,-2410,-711,-1409,-9017,-2501,-932], +[1,3,3789], +[0,3790,3791,3792,4], +[0,-1116,-1107,-2562,-727,-1548,-689,-9018,-9019,-2557], +[0,-888,-932,-1412,-1077,-9010,-9011,-958,-9020], +[0,-2557,-3970,-3100,-3994,-9021,-3095,-5574,-9022], +[1,3,3794], +[0,0,3795,3796,5], +[0,-3037,-932,-940,-967,-968,-1942,-2319,-2410], +[0,-9023,-9024,-7329], +[1,3,3798], +[0,0,3799,3800,10], +[0,-5325,-3037,-3899,-9025,-1942,-2200,-9026,-2410,-2469], +[0,-5925,-3262,-9027,-9028,-9029,-5112,-6917,-9030], +[1,3,3802], +[0,0,3803,7,11], +[0,-21,-23,-40,-42,-3470,-3471,-7041,-3136,-3037,-427,-428,-9031,-9032,-528,-533,-534,-8167,-932,-940,-948,-951,-958,-967, +-969,-970,-972,-978,-1344,-9033,-1415,-1534,-1942,-2125,-2174,-9034,-2410,-2501,-2503], +[1,3,3805], +[0,0,3806,7,4], +[0,-9035,-9036,-9037,-9038,-1788], +[1,3,3808], +[0,0,115,3809,5], +[0,-7458,-5573,-9039,-1888,-9040,-9041,-9042,-729,-1805,-5149,-9043,-9044,-6555,-9045,-9046], +[1,3,3811], +[0,0,3812,3813,4], +[0,-3037,-826,-2541], +[0,-9047,-3972,-8428,-9048,-640,-5827,-1958,-2059], +[1,3,3815], +[0,3816,3817,3818,9], +[0,-9049,-1399], +[0,-3037,-519,-9050,-9051,-8877,-2384,-2541], +[0,-9052,-5827,-1961,-9048,-2265,-5554,-640,-2059,-6582,-9053,-8800,-9054,-7208,-9048], +[1,3,3820], +[0,3821,0,3822,4], +[0,-9055], +[0,-1101,-9052,-2410,-9056,-9057], +[1,3,3824], +[0,0,3825,3826,5], +[0,-3037,-427,-428,-7636,-932,-9058,-940,-967,-7638,-9059,-1942,-7639,-2402,-2410,-7640], +[0,-9060,-9061,-9062,-9063,-9064,-9065,-1102,-9066,-9067,-8995,-9068,-3966,-9069,-3694,-2410], +[1,3,3828], +[0,3829,3830,3831,8], +[0,-510,-1111,-1077,-719,-7731,-1046,-9070], +[0,-2359,-664,-1654,-2210,-932,-9071,-9072], +[0,-5889,-1103,-1105], +[1,3,3833], +[0,3834,3835,3836,5], +[0,-5504,-9073,-9074,-9075,-1849,-9076], +[0,-528,-664,-9077,-708,-720,-796,-932,-9078,-951,-958,-964,-1654,-1658,-1788,-1972,-2174,-2210,-2211,-9079,-2449], +[0,-5889,-3322,-9080], +[1,3,3838], +[0,0,3839,3840,8], +[0,-5870,-40,-9081,-9082,-9083,-4062,-351,-3561,-3266,-4785,-664,-932,-943,-958,-966,-968,-1471,-1474,-1475,-1476,-1479, +-1482,-1483,-1486,-1487,-1489,-7759,-1654,-2127,-3571,-2162,-2210,-2211], +[0,-1105,-5248,-3100,-3095], +[1,3,3842], +[0,3843,3844,7,4], +[0,-1645,-9084,-9085], +[0,-3037,-928,-1623,-1650,-1942,-2125,-2319,-2386,-2402], +[1,3,3846], +[0,3847,125,3848,9], +[0,-1393], +[0,-1107,-8807,-6817,-1847,-9086,-7421,-3956,-9087], +[1,3,3850], +[0,3851,31,7,8], +[0,-9088,-1958], +[1,3,3853], +[0,0,3854,3855,4], +[0,-6593,-519,-674,-959,-1098,-9089,-8345,-1772,-1821,-1978,-2195,-2384,-2400,-2541], +[0,-1110,-1109,-9090,-3591,-3592,-1452,-932,-9091], +[1,3,3857], +[0,3858,3859,3860,8], +[0,-8413,-1026,-1353,-7408,-2218,-8803], +[0,-3037,-519,-589,-9092,-2331,-2384,-2541], +[0,-9093,-5839,-7411,-7727,-6999,-7422,-7724,-5573,-9094,-7410,-1076,-1107,-9095,-9096,-7419,-5572,-5912,-1645,-6809, +-9097,-9098,-5574,-5064,-2368,-2444,-3590,-9087,-9099,-1961,-9100,-5889], +[1,3,3862], +[0,3863,3864,3865,11], +[0,-812,-769,-9101,-9102], +[0,-510], +[0,-6524,-9103,-6527,-9104,-1355,-1112,-5845,-7450,-7378], +[1,3,3867], +[0,3868,3869,3870,4], +[0,-1729,-9105,-2387], +[0,-3037,-4201,-427,-428,-932,-9106,-958,-965,-968,-1942,-2402,-2410], +[0,-9107,-9108,-9109,-9110,-9111,-9112,-3184,-4791,-1113,-9113,-9114,-8909,-9115,-4633,-9116,-9117,-9118,-9119,-9120, +-9121,-9122,-9123,-3445,-9124,-9125,-9126,-9127], +[1,3,3872], +[0,3873,3874,3875,9], +[0,-3517,-9128], +[0,-50,-3037,-427,-428,-2758,-932,-934,-935,-958,-9129,-8846,-1722,-2892,-2410,-9130,-2469], +[0,-9131,-9132,-3939,-9133,-9134,-9135,-9136,-3690,-1115,-9137,-9138,-9139], +[1,3,3877], +[0,3878,3879,3880,8], +[0,-8846,-9140], +[0,-9141,-3621,-9142,-9143,-3037,-9144,-6630,-4364,-4966,-4372,-3628,-9145,-9146,-652,-708,-767,-999,-8869,-1166,-9147, +-1446,-9148,-9149,-9150,-1654,-6455,-1705,-1722,-1783,-1805,-1827,-9151,-1942,-1972,-2125,-2188,-2210,-2359,-2410,-2551], +[0,-3939,-3690,-9152,-3323,-9153], +[1,3,3882], +[0,3883,3884,3885,5], +[0,-9154,-9155,-9156,-9157,-9158,-9159,-7006,-1495,-9160,-9161,-9162,-2400], +[0,-9163,-5918,-357,-3268,-3617,-3037,-9164,-6279,-8852,-4372,-3626,-519,-523,-589,-615,-617,-652,-9165,-9166,-9167,-825, +-826,-1002,-1004,-1069,-5989,-1100,-1722,-1729,-1763,-1825,-9168,-1866,-3653,-2062,-2105,-2210,-9169,-2331,-9170,-2364, +-2392,-2410,-2541], +[0,-1334,-1342,-5735,-9052,-1116,-2435,-9171,-2105,-5493,-9172,-9173,-4213,-5149,-5150,-6826,-6828,-9174,-9175,-9176, +-9177,-523,-2291,-1729,-9128], +[1,3,3887], +[0,0,3888,3889,4], +[0,-1168,-2218,-2127,-784,-1821,-1889,-9178,-9179,-1783,-1978,-2281,-23,-518,-1930,-1330,-3572,-40,-9180,-9181,-3326, +-3266,-3561,-7189], +[0,-9182,-3100,-4189,-3110], +[1,3,3891], +[0,0,3892,3893,4], +[0,-1362,-1650,-2125,-2319], +[0,-1076,-3551,-9183,-2122,-9184,-1986,-6324,-8980,-9185,-9186,-9187,-9188,-9189,-9190], +[1,3,3895], +[0,0,0,3896,8], +[0,-1122,-9191], +[1,3,3898], +[0,33,3899,7,5], +[0,-3035,-3621,-3037,-664,-1122,-1654,-2125,-2127,-2139,-2234,-9192,-2410], +[1,3,3901], +[0,3902,0,7,9], +[0,-9193,-2387], +[1,3,3904], +[0,3905,3906,3907,8], +[0,-1442,-8493,-9194,-9195], +[0,-9196,-8491,-711,-9197,-1016,-1075,-1202,-1646,-1654,-2362,-2460,-6234], +[0,-9198,-9199,-710,-6582,-3671,-856,-7347,-9200,-9201,-1075,-9202,-3960,-3262,-1103,-5539,-3214,-3259,-3756,-4182,-1599, +-9203,-1838,-3215,-6747,-9204,-5142,-3110,-2362,-2548,-3672], +[1,3,3909], +[0,3910,3911,7,9], +[0,-9205,-9206,-1551,-9073,-1696,-1969], +[0,-617,-9207,-1004,-9208,-1405,-1548,-1646,-1730,-9209], +[1,3,3913], +[0,3914,3915,3916,11], +[0,-1000,-1107,-1758,-1442,-1132,-1645,-808,-1351,-1048,-995,-9210,-9211,-9212], +[0,-9213,-2347,-9214,-1152,-9215,-1149,-1146], +[0,-4107,-510,-687,-1644,-9216,-7641,-1548,-5119,-4004,-1989,-1754,-3844,-9217,-3970,-9218,-1410,-3673], +[1,3,3918], +[0,3919,3920,3921,5], +[0,-1323], +[0,-1127,-1132,-1140,-1134,-1136,-1144,-1146,-1148,-1165,-1138], +[0,-9219,-475,-3110,-3261,-9048], +[1,3,3923], +[0,0,3924,49,4], +[0,-1127,-1159,-1131,-1163,-664], +[1,3,3926], +[0,3927,3928,3929,9], +[0,-510,-633,-9220,-1107,-1548,-2114,-2491], +[0,-1127,-1132,-1134,-1144,-1654,-2210], +[0,-9219,-633,-1127], +[1,3,3931], +[0,3932,3933,49,6], +[0,-2177], +[0,-1127,-1129,-1134,-1144,-1146,-1150,-1159,-1542], +[1,3,3935], +[0,3936,207,7,4], +[0,-1758,-9221,-6007,-1381,-9212], +[1,3,3938], +[0,3939,3940,3941,5], +[0,-510,-506,-9222,-1366], +[0,-2541,-1127,-1753,-1132,-769,-1849,-9223,-2297,-1163,-1134,-1149], +[0,-9219,-5920,-5921,-9224,-7175,-6188,-9225,-6187,-5922,-9226], +[1,3,3943], +[0,208,3944,3945,10], +[0,-1127,-9071,-1144,-1143,-1146], +[0,-9219,-6688,-7416,-6694,-6693,-824,-6695,-7417,-2125], +[1,3,3947], +[0,3948,3949,3950,8], +[0,-510,-9227,-805,-9050,-2359,-2518], +[0,-1127,-1132,-1134,-1143,-1144,-1146,-1162], +[0,-9219,-9228,-3754,-2162,-775,-7644,-3277,-5553], +[1,3,3952], +[0,3953,126,49,4], +[0,-668,-2231], +[1,3,3955], +[0,3956,3957,3958,4], +[0,-1805,-510,-1676,-729,-5763,-2186,-2187,-7006,-9229], +[0,-1127,-1144,-1143,-1146], +[0,-9219,-3844,-729,-1334], +[1,3,3960], +[0,3961,3962,49,4], +[0,-668,-9230], +[0,-1127,-1132,-1134,-1143,-1144,-1146], +[1,3,3964], +[0,3965,127,3966,5], +[0,-668,-9231,-1548,-2271], +[0,-9219,-775,-7148,-9231], +[1,3,3968], +[0,3969,127,3970,8], +[0,-668,-683,-9232], +[0,-9219,-9233,-775,-5553,-3770,-3271,-1644,-6454], +[1,3,3972], +[0,3973,126,3974,4], +[0,-668,-1948,-1323], +[0,-9219,-3264,-9234,-1644,-6454,-7175], +[1,3,3976], +[0,3977,3978,3979,8], +[0,-668,-1356,-1826,-1877,-1948,-7691,-7692,-7690,-7687], +[0,-519,-825,-1127,-2541], +[0,-9219,-6454,-8642,-6527,-5094,-9235,-8640,-1644,-7715,-3839], +[1,3,3981], +[0,3982,207,7,5], +[0,-7446], +[1,3,3984], +[0,3985,3986,49,8], +[0,-668,-9236,-1452], +[0,-1127,-1143,-1146], +[1,3,3988], +[0,3989,3990,49,6], +[0,-1521,-510,-668,-1548], +[0,-1127,-1134,-1144,-9237,-1143,-1146], +[1,3,3992], +[0,3993,3994,3995,6], +[0,-9238], +[0,-1127,-1134,-1143,-1144,-2319], +[0,-9219,-1754,-4004,-4043], +[1,3,3997], +[0,3998,127,3999,8], +[0,-510,-668,-769,-805,-2518], +[0,-9219,-3754,-2162,-775,-7644,-3277,-5553], +[1,3,4001], +[0,4002,126,49,4], +[0,-668,-9232,-9239,-2416], +[1,3,4004], +[0,4005,4006,4007,6], +[0,-1088,-510,-1548,-2353], +[0,-1127,-1132,-1153,-2425,-1144,-1143,-1146], +[0,-9219,-2490,-1540], +[1,3,4009], +[0,4010,4011,4012,4], +[0,-668,-725,-739,-1877,-1980], +[0,-1127,-1131,-1132,-1134,-1138,-1144,-1146,-1151,-9240,-9241,-1153,-1159,-1542], +[0,-1127,-9219,-739,-6908,-5887,-1573], +[1,3,4014], +[0,4015,4016,4017,10], +[0,-668,-6019,-1877], +[0,-1127,-1131,-1132,-1134,-1144,-1146,-9240,-9242,-9241,-1153,-1159,-1542], +[0,-1127,-9219,-6019,-1105,-9243,-9244,-9245,-739,-6908,-5887,-1573], +[1,3,4019], +[0,4020,4021,4022,5], +[0,-668,-932], +[0,-190,-1127,-1132,-1162], +[0,-9219,-932,-7148,-5874,-9246], +[1,3,4024], +[0,4025,4026,4027,4], +[0,-9236,-1445,-1548,-9247], +[0,-1127,-1144,-1146,-1542,-2351], +[0,-9219,-1445,-8172,-7144], +[1,3,4029], +[0,4030,4031,4032,8], +[0,-769,-1446], +[0,-1127,-1134,-1146,-1152,-2778,-1542], +[0,-9219,-1127,-856,-4100,-1446,-7674], +[1,3,4034], +[0,34,4035,4036,11], +[0,-86,-9248,-3307,-3470,-3471,-7041,-932,-943,-958,-966,-968,-974,-1003,-1127,-1131,-1149,-1150,-1151,-1152,-1159,-1344, +-1471,-1475,-1479,-1482,-1542,-1654,-2174], +[0,-9219,-1471,-1127,-4004,-5119,-4043,-9249], +[1,3,4038], +[0,4039,4040,209,10], +[0,-9236,-1650], +[0,-664,-710,-1127,-1132,-9250,-1134,-1138,-1144,-9240,-9251,-9241,-9252,-1654,-2125], +[1,3,4042], +[0,208,4043,4044,10], +[0,-664,-1127,-9253,-1132,-1134,-1144,-1149,-1658,-2359,-2529], +[0,-6999,-1127,-9219,-9254], +[1,3,4046], +[0,4047,4048,4049,11], +[0,-2177,-9255,-2518], +[0,-664,-1132,-1144,-1149,-1156,-9256,-9257,-1542,-1654,-1972,-2351], +[0,-9219,-4127,-9258,-6721,-9259,-9260,-9261,-9262,-6324,-2489,-5886], +[1,3,4051], +[0,0,4052,7,10], +[0,-1127,-1131], +[1,3,4054], +[0,0,4055,4056,5], +[0,-1127,-1132,-1134,-1146,-2162,-2541], +[0,-9219,-775,-2162,-3754,-5553,-7644,-9263,-9264], +[1,3,4058], +[0,4059,4060,4061,4], +[0,-714,-1548,-1980,-9265,-9266,-5471], +[0,-1127,-1137,-1144,-1149,-1153,-9267,-1541,-1631,-8403], +[0,-9219,-1127,-5471,-4004,-1412,-1654,-1989,-9268], +[1,3,4063], +[0,4064,210,4065,11], +[0,-668,-1773,-2269], +[0,-9219,-5550,-3957,-7095,-8421,-7091,-6599,-1958,-687], +[1,3,4067], +[0,27,4068,209,9], +[0,-1127,-1144,-1654], +[1,3,4070], +[0,4071,4072,4073,11], +[0,-510,-9269,-9270,-2424,-9271], +[0,-932,-9272,-9273,-9274,-9275,-9276,-9277,-1127,-1132,-1157,-1654,-2125,-2194], +[0,-1127,-9219,-9278,-6527,-9279,-775,-9270,-7085], +[1,3,4075], +[0,4076,4077,4078,4], +[0,-668,-812,-1548,-1849], +[0,-1127,-1650,-2125,-1132,-1153,-9280,-1144], +[0,-9219,-9281,-3976,-3264,-775,-7175], +[1,3,4080], +[0,4081,4082,4083,5], +[0,-190,-427,-428,-668,-932,-940,-965,-967,-999,-1376,-1460,-1630,-1705,-1942,-2411,-2530], +[0,-9282,-7080,-3330,-3048,-3049,-9283,-3621,-9143,-3037,-4372,-3628,-9284,-652,-769,-1077,-9285,-9147,-1654,-2210,-2359, +-2410], +[0,-2410,-8170,-4144,-3939], +[1,3,4085], +[0,0,4086,4087,5], +[0,-9286,-4010,-367,-7043,-9287,-3136,-3037,-8477,-4203,-932,-1415,-1730,-1942,-2125,-2293,-2410], +[0,-1167,-3578,-3161,-3967,-1334,-3690,-3445], +[1,3,4089], +[0,4090,4091,4092,6], +[0,-9288,-9179,-9289,-2462], +[0,-932,-937,-966,-1001,-1650,-1654,-1788,-2125], +[0,-7641,-5827,-4219,-9218,-3673,-6342,-9290,-9291,-5921,-9292], +[1,3,4094], +[0,4095,72,4096,4], +[0,-1187,-9293,-1208,-1451,-1570,-1597,-8390,-2347], +[0,-7841,-1168,-475,-5175,-3501,-9294,-9295], +[1,3,4098], +[0,4099,4100,4101,4], +[0,-7850,-305,-994,-1199,-1243,-9296,-1267,-1650,-1875,-1959,-7881,-2125,-2177,-2330,-2460,-2462], +[0,-1178,-1654], +[0,-7841,-9297,-5550,-9298,-891,-1105], +[1,3,4103], +[0,4104,4105,4106,4], +[0,-518,-1236,-1889,-2464], +[0,-519,-1252,-1825,-2460,-2541], +[0,-7841,-518,-1889,-775,-5899,-9299,-3271,-9263,-9300], +[1,3,4108], +[0,4109,4110,4111,4], +[0,-3698,-479,-671,-1022,-9301,-1641,-1876,-2460], +[0,-664,-9302,-932,-1168,-1243,-1654,-1942], +[0,-7841,-5817,-5940,-8403], +[1,3,4113], +[0,4114,0,4115,4], +[0,-9303,-9304,-994,-1640,-1959,-1986,-9305,-2460,-2462,-2550], +[0,-7841,-5800,-8624,-6005], +[1,3,4117], +[0,4118,4119,4120,6], +[0,-2347,-2103,-1876,-2464], +[0,-2541,-1654,-2460,-1939,-23,-1252,-3352,-3362,-3373], +[0,-7841,-525,-3186,-4795,-8165,-6434,-9306,-9307,-4132,-9308,-9309,-3214,-3116], +[1,3,4122], +[0,4123,211,4124,5], +[0,-1236], +[0,-7841,-9310,-6472,-7154,-9311,-2443,-9312,-9313,-9314], +[1,3,4126], +[0,4127,4128,4129,4], +[0,-479,-622,-1022,-1376,-1876,-2347,-2460,-2487], +[0,-664,-994,-9315,-1220,-1231,-1452,-1654,-2125,-2210,-2211,-2261], +[0,-7841,-622], +[1,3,4131], +[0,4132,4133,4134,5], +[0,-633,-1266,-634,-2062,-2347], +[0,-1654,-664,-6398], +[0,-7841,-7419,-633], +[1,3,4136], +[0,212,4137,4138,4], +[0,-1654,-2460], +[0,-1168,-7841], +[1,3,4140], +[0,4141,72,4142,10], +[0,-9316,-1876,-9317,-2177,-2347], +[0,-1168,-6453,-2177,-7841,-9318,-9319,-9320,-9321], +[1,3,4144], +[0,4145,0,4146,8], +[0,-44,-9322,-753,-9323,-1876,-2347,-2460], +[0,-7841,-1168,-3324], +[1,3,4148], +[0,4149,4150,36,4], +[0,-2347,-1554], +[0,-1654,-2460,-2198], +[1,3,4152], +[0,4153,4154,4155,9], +[0,-9324,-1236,-2363], +[0,-519,-668,-824,-1040,-1100,-1168,-2460,-2541], +[0,-7841,-6656,-6999,-9325,-9254,-9326,-9327,-9328,-4123,-9329,-9330,-3324,-9331,-9332], +[1,3,4157], +[0,4158,114,4159,6], +[0,-1022,-1876,-2125,-2347,-2460], +[0,-7841,-6688,-6694,-6693], +[1,3,4161], +[0,4162,4163,4164,6], +[0,-683,-1876,-2347,-2464], +[0,-664,-9077,-756,-1004,-1022,-1168,-1187,-1243,-1248,-1252,-1654,-1788,-2460], +[0,-775,-6688,-1644,-9216,-683,-9333,-1229,-1184,-7841,-7419], +[1,3,4166], +[0,4167,213,36,10], +[0,-711,-1876,-2103,-2347,-2464], +[1,3,4169], +[0,4170,4171,4172,8], +[0,-1266,-2347,-2518], +[0,-756,-824,-1168,-1220,-1223,-1224,-1228,-1231,-1351,-9334,-1597,-1654,-2198], +[0,-1168,-7841,-9228,-3754,-2162,-775,-7644,-3277,-5553], +[1,3,4174], +[0,4175,4176,36,4], +[0,-2460,-2347,-6193], +[0,-1168,-1654,-2198,-1405,-7035,-2261,-1252,-1657], +[1,3,4178], +[0,4179,128,4180,4], +[0,-1554,-9335,-1876,-9336,-9337,-9338,-2347,-2460], +[0,-7841,-9048,-775,-6024,-1631,-9339], +[1,3,4182], +[0,4183,128,4184,9], +[0,-2347,-1266,-1376,-834], +[0,-7841,-3976,-9340,-9341,-3959,-3955,-9342], +[1,3,4186], +[0,4187,4188,4189,4], +[0,-2178,-729,-2353,-1022,-1597,-479,-2186,-2187,-9229], +[0,-1168,-1654,-2293,-1254,-710], +[0,-7419,-729,-1540,-9343,-3844], +[1,3,4191], +[0,214,4192,4193,4], +[0,-1168,-1415,-1942,-9078], +[0,-7841,-6351,-1168], +[1,3,4195], +[0,4196,4197,4198,4], +[0,-479,-9344,-1022,-1876,-2347], +[0,-1452,-1654,-2460], +[0,-7841,-775,-9344,-7148,-8170,-3277], +[1,3,4200], +[0,4201,4202,4203,4], +[0,-2460,-9231,-9345,-2347,-1022,-1876], +[0,-1788,-1654,-2210,-932,-2125,-2198,-756,-9346,-9347,-968,-943,-974,-942], +[0,-9231,-7841], +[1,3,4205], +[0,4206,4207,4208,4], +[0,-784,-6829,-1876,-1792,-2464], +[0,-2322,-2460,-2320,-1252], +[0,-784,-1644,-6059,-7192,-7193,-775,-7841,-1889], +[1,3,4210], +[0,4211,4212,4213,4], +[0,-2746,-1876,-2464], +[0,-2322,-2460,-2320], +[0,-7841,-1644,-775], +[1,3,4215], +[0,4216,4217,4218,5], +[0,-1876,-2347,-8899], +[0,-1452,-1980,-2198,-2460], +[0,-7841,-6582,-4055,-1168], +[1,3,4220], +[0,4221,4222,4223,9], +[0,-932,-1022,-1876], +[0,-1168,-1654,-2460,-2198,-1405,-528,-9348,-9349], +[0,-7841,-932,-1168,-8980,-9350,-7440,-6916,-707,-4144,-3756,-3214,-4107,-7148,-3862], +[1,3,4225], +[0,4226,4227,4228,8], +[0,-1460,-2460,-1015,-9351,-2347,-1876,-725,-9352], +[0,-1168,-1654,-2198,-1405,-1599], +[0,-7841,-6656,-9353,-8276,-1168,-3862], +[1,3,4230], +[0,4231,4232,4233,6], +[0,-2218,-1686,-1876,-9354,-9355], +[0,-2541,-519,-1168,-2460,-1825], +[0,-7841,-7724,-1353,-6656,-6999,-5572,-1645,-1107,-9095,-2460], +[1,3,4235], +[0,215,72,4236,5], +[0,-7841,-8395,-2239,-8423,-9356,-9357,-6917,-1168], +[1,3,4238], +[0,214,4239,4240,4], +[0,-1168,-1654,-2460,-2198,-1939,-933], +[0,-7841,-1168,-5841,-9358,-1847], +[1,3,4242], +[0,4243,27,4244,4], +[0,-9359,-2102,-9360,-2347], +[0,-6146,-3276,-4144,-1168,-7841,-1599,-3437,-3862,-9361,-3240,-2102], +[1,3,4246], +[0,4247,4248,4249,8], +[0,-668,-1266,-9362,-9363,-1792,-6370,-1877,-2347], +[0,-9364,-1849], +[0,-7841,-1082,-9362,-6656,-6999,-6931,-8576,-3844,-3323,-7764,-8901,-8902], +[1,3,4251], +[0,4252,4253,4254,4], +[0,-9365,-2125,-2462,-1266,-9366,-2062], +[0,-1654,-2460,-932,-1405,-9367,-1746,-1119,-1574,-9368,-9369], +[0,-5889,-5737,-5890,-9370,-8901,-8902,-8403,-9204,-3258,-1168,-7841,-1103,-841,-1105], +[1,3,4256], +[0,4257,4258,4259,5], +[0,-9371,-1022,-1548,-1876,-2109,-9372,-2460], +[0,-932,-1654,-1660,-2125,-2198], +[0,-1168,-5889,-9373,-7841,-9321], +[1,3,4261], +[0,4262,4263,4264,9], +[0,-479,-651,-1022,-1876,-9374,-2347], +[0,-1168,-1183,-1199,-1224,-1231,-1243,-7832,-1268,-1453,-1654,-9375,-2198], +[0,-6454,-7841,-6826], +[1,3,4266], +[0,4267,4268,4269,5], +[0,-1276,-1876,-2103,-2347], +[0,-2460,-1168,-1187,-9376,-9377,-9378,-1654,-9379,-2198], +[0,-7841,-1276], +[1,3,4271], +[0,4272,4273,4274,4], +[0,-6193,-1548,-1597,-2347], +[0,-664,-1168], +[0,-5147,-7841,-9380], +[1,3,4276], +[0,4277,4278,4279,10], +[0,-702,-2218,-615,-2461,-1792,-2062], +[0,-1654,-2460,-1405,-1266,-9348,-725,-9381,-2463], +[0,-7841,-3264,-8276], +[1,3,4281], +[0,4282,4283,4284,8], +[0,-2347,-1876,-1323], +[0,-1168,-1654,-2460,-1202], +[0,-3276,-1168,-7841,-9382,-3264,-9383,-6059,-6684,-1644], +[1,3,4286], +[0,4287,4288,4289,5], +[0,-4091,-9384,-7837,-9385,-9386,-9354,-9387,-9388,-9389], +[0,-1168,-1415,-932,-2125,-9390,-4010,-1942,-367,-7043,-190,-720,-9391,-2410,-9392,-4007,-9393,-2411,-959,-940,-967,-796, +-740], +[0,-7841,-1168,-3167,-3827], +[1,3,4291], +[0,4292,4293,4294,9], +[0,-2347,-9394,-9395], +[0,-1654,-1452,-1650,-2125,-2198,-2462,-1119,-908,-9396], +[0,-7841,-8978,-9397,-9398], +[1,3,4296], +[0,4297,4298,4299,11], +[0,-2347,-9394], +[0,-1452,-1654,-2198], +[0,-7841,-7724,-1645,-9353,-9399,-1199], +[1,3,4301], +[0,4302,4303,36,4], +[0,-510,-1548,-9400,-2347], +[0,-1112,-1168,-1183,-1231,-1224,-2150,-1453], +[1,3,4305], +[0,4306,4307,4308,4], +[0,-668,-1236,-1356,-1877,-1948], +[0,-519,-1357,-9401,-2460,-2541], +[0,-7841,-1356,-6527,-5094,-8634,-8635,-1644,-6684,-6454,-7715,-8640,-9235,-8642,-3839], +[1,3,4310], +[0,4311,4312,36,8], +[0,-479,-994,-1107,-1876,-2231,-2270,-2460,-2464], +[0,-1168,-1252,-1654,-2198,-2261], +[1,3,4314], +[0,4315,4316,4317,4], +[0,-506,-2347,-1022,-479,-9402,-1876,-9374,-930], +[0,-2541,-1344,-1654,-2460,-2198,-9403,-994,-86,-2174,-9404], +[0,-7841,-9405,-9406,-9407,-9408,-9409], +[1,3,4319], +[0,4320,4321,4322,4], +[0,-9410,-1876,-2347], +[0,-528,-756,-994,-1168,-1197,-1231,-1654,-1788,-2460], +[0,-7841,-9339,-775,-3264,-7920], +[1,3,4324], +[0,4325,4326,4327,9], +[0,-805,-1266,-9411,-1827,-2347,-2518], +[0,-664,-1654,-2251,-2541], +[0,-7841,-622,-1764,-1380], +[1,3,4329], +[0,4330,4331,4332,9], +[0,-1405,-9412,-1548,-1876,-2347,-2464], +[0,-1168,-1231,-1252,-9413,-1452,-1654,-2125,-2460], +[0,-7841,-4005,-1405,-9414], +[1,3,4334], +[0,4335,4336,4337,10], +[0,-1266,-1409,-2347], +[0,-1168,-2319,-1224], +[0,-1409,-7841,-5827,-7644], +[1,3,4339], +[0,4340,4341,4342,10], +[0,-506,-1412,-9415,-1876,-2347], +[0,-1168,-2460], +[0,-3440,-3161,-7841,-1412,-1989,-4043,-4679,-2319,-4873,-4004,-3634,-5119], +[1,3,4344], +[0,4345,4346,4347,4], +[0,-1445,-1876,-2347,-2350], +[0,-2261,-7423,-2460], +[0,-7841,-1445,-3214,-3217,-3756,-707,-5553,-5874,-7148,-3272,-7440,-7144], +[1,3,4349], +[0,4350,4351,36,8], +[0,-1548,-1645,-1876,-9345,-2347], +[0,-1168,-1452,-1654,-2198,-2460], +[1,3,4353], +[0,4354,4355,4356,5], +[0,-823,-831,-1440,-1876,-2347], +[0,-932,-937,-1168,-1654,-2198,-2460], +[0,-7841,-1168,-4055], +[1,3,4358], +[0,4359,4360,4361,5], +[0,-1521,-1792,-1876,-2103,-2347,-2464], +[0,-1452,-1654,-2198,-2460], +[0,-7841,-1168,-1521], +[1,3,4363], +[0,4364,4365,4366,8], +[0,-668,-812,-2460,-2353,-1022,-1550,-2062], +[0,-1654,-2210], +[0,-7841,-1540], +[1,3,4368], +[0,4369,4370,4371,5], +[0,-9416,-2114,-1022,-1639,-1048,-9417,-9418], +[0,-1654,-2210,-932,-1972,-9419,-965,-966,-958,-968,-943,-974], +[0,-7419,-1168,-4792,-6994,-9420], +[1,3,4373], +[0,4374,4375,7,10], +[0,-683,-1266,-1792,-2062,-9421,-2464], +[0,-664,-1654,-2460,-932,-1405,-1254,-9348,-1252,-9422,-9381,-9369], +[1,3,4377], +[0,4378,4379,4380,4], +[0,-7173,-2347,-1266], +[0,-664,-1168,-1654], +[0,-7841,-1644,-7175,-7192,-6454,-3264,-7173], +[1,3,4382], +[0,4383,211,4384,5], +[0,-805,-999,-1236,-1654,-2297], +[0,-7841,-1654,-4004,-3634,-5119,-3161,-4043,-4873,-3440,-1989,-4679,-2319], +[1,3,4386], +[0,4387,4388,4389,10], +[0,-9423,-1107,-1876], +[0,-664,-1168,-1654,-2460,-932,-1658,-9072], +[0,-1168,-7841,-9254,-9329], +[1,3,4391], +[0,4392,72,4393,5], +[0,-9424,-1631,-9425,-1876,-2347,-2464], +[0,-7841,-475,-5175,-4668,-9425], +[1,3,4395], +[0,4396,4397,4398,11], +[0,-714,-1168,-1753], +[0,-710,-1224,-1231,-8419,-1452,-2198], +[0,-1168,-1753,-9426,-3844,-9427,-8442,-2490,-7419,-7841], +[1,3,4400], +[0,4401,4402,4403,10], +[0,-1548,-2347,-1022,-479,-1750,-1876,-1737], +[0,-1168,-1654,-2460,-2198,-1237], +[0,-7841,-9258,-1168,-4127,-6863,-9428,-9429,-9262,-9430,-6721], +[1,3,4405], +[0,4406,4407,4408,4], +[0,-7837,-668,-9431], +[0,-519,-1825,-2410,-2460,-2541], +[0,-1168,-3862,-8112,-8113], +[1,3,4410], +[0,4411,4412,36,9], +[0,-668,-2347,-1022,-1876], +[0,-2541,-1168,-1654,-2198,-2346,-1405,-756,-994,-1657], +[1,3,4414], +[0,4415,4416,4417,9], +[0,-1022,-1876,-1907,-2464], +[0,-1788,-1654,-2210,-2460,-932,-1889,-1972,-1252], +[0,-7841,-1889,-9300,-775], +[1,3,4419], +[0,4420,4421,4422,4], +[0,-9263], +[0,-1654,-2987,-8065,-2460], +[0,-9432,-711,-8978,-812,-9433,-5558,-9399,-9321,-7841,-3264,-9434,-9435,-9353,-3214,-3277], +[1,3,4424], +[0,4425,4426,4427,5], +[0,-994,-1376,-1570], +[0,-507,-932,-9436,-1376,-1654,-1972,-2463], +[0,-7841,-1965], +[1,3,4429], +[0,4430,4431,4432,10], +[0,-1266,-1792,-2054,-2347,-2464], +[0,-1252], +[0,-7841,-2006,-4146,-6408,-8530,-3110,-3261,-6107,-9437,-9438,-7644], +[1,3,4434], +[0,4435,4436,4437,11], +[0,-994,-1750,-2105,-2347,-2460], +[0,-1168,-1262,-1183], +[0,-7841,-8908,-9439], +[1,3,4439], +[0,0,4440,36,10], +[0,-1168,-1252,-1597,-1654,-1942,-2198,-2460], +[1,3,4442], +[0,4443,4444,4445,9], +[0,-3037,-7837,-2551,-9440,-7622], +[0,-1654,-2460,-2198,-2379,-8255,-2410,-725], +[0,-7841,-8276], +[1,3,4447], +[0,4448,4449,4450,8], +[0,-1236,-9441,-9442,-9443,-9444,-2460,-9445], +[0,-519,-1825,-2541], +[0,-7841,-9446,-9447,-9448,-6131,-7175,-9318,-9319,-3324,-9449,-5142,-6342,-9450], +[1,3,4452], +[0,215,4453,4454,4], +[0,-994,-1199,-1245,-1654,-2460], +[0,-7841,-9446,-9448,-9318,-8276,-6342], +[1,3,4456], +[0,4457,4458,4459,5], +[0,-668,-742,-769,-805,-9451,-930,-1022,-1107,-4089,-9452,-1849,-1876,-2103,-2125,-2460], +[0,-1168,-1252,-9445], +[0,-7841,-3754,-2162,-775,-7644,-3277,-5553,-9453,-2231,-9454,-6915,-9455], +[1,3,4461], +[0,4462,4463,4464,6], +[0,-1863,-2269,-2103,-1876,-1552,-2464], +[0,-1168,-2162,-1654,-2460,-932,-2125,-9008,-1889,-7832,-1743,-518,-1238,-3572,-1252,-958,-934], +[0,-7841,-2162,-1168], +[1,3,4466], +[0,4467,0,4468,5], +[0,-510,-1266,-1792,-6370,-2246,-2347], +[0,-7841,-9456,-6656,-6999,-6931,-8576,-3844,-3323,-7764,-8901,-8902], +[1,3,4470], +[0,4471,4472,4473,5], +[0,-668,-1022,-1570,-1876,-2347,-2387], +[0,-9457,-9392,-3136,-9458,-3037,-7836,-427,-428,-756,-932,-940,-959,-1168,-1415,-1942,-2375,-2379,-2410,-2460], +[0,-7841,-1168,-5550,-3957], +[1,3,4475], +[0,4476,216,4477,10], +[0,-9459,-668,-1022,-1236,-1273,-1948], +[0,-7841,-1044,-6656,-8799,-1573,-9460,-4676,-812,-6826,-6828], +[1,3,4479], +[0,4480,4481,4482,4], +[0,-9461,-9462,-461,-742,-775,-9463,-8888,-1119,-2231,-9195,-2347], +[0,-620,-932,-937,-1001,-1168,-1187,-1212,-1226,-1228,-9464,-1405,-9381,-9465,-1654,-1792,-2125,-2460], +[0,-7841,-1168,-9466,-9455], +[1,3,4484], +[0,4485,216,4486,4], +[0,-23,-1236,-9467], +[0,-7841,-6817,-6694,-6693,-6688,-812,-7336,-4000,-1573,-5545,-3756,-3214,-3217,-3272,-987], +[1,3,4488], +[0,4489,213,4490,4], +[0,-9468,-1550,-1876,-2103,-2286,-2347,-2464], +[0,-1168,-2286,-775,-3277,-7841,-9321], +[1,3,4492], +[0,4493,4494,4495,4], +[0,-1876,-2302], +[0,-1107,-1168,-9469,-1654,-9470,-2460,-2541], +[0,-7841,-3167,-3843,-3839,-7715,-9278,-9279,-9471,-3262,-775,-2162,-1521,-2286,-3271,-9339,-3264,-9472,-9473,-9474,-1689], +[1,3,4497], +[0,4498,4499,4500,5], +[0,-1552,-1876,-2303], +[0,-21,-23,-40,-43,-519,-756,-767,-825,-1788,-1942,-2460,-2541], +[0,-7841,-1644,-3839,-2303], +[1,3,4502], +[0,4503,4504,4505,4], +[0,-674,-1022,-1876,-2460], +[0,-1045,-1168,-1217,-1654,-1978,-2187,-2210], +[0,-7841,-3839,-3167,-9278], +[1,3,4507], +[0,4508,4509,4510,9], +[0,-1236,-1548], +[0,-519,-1196,-2460,-2541], +[0,-7841,-1548,-2424,-3110,-7644,-3264,-7650,-9475,-9438], +[1,3,4512], +[0,4513,4514,4515,4], +[0,-479,-1022,-2346,-2460], +[0,-9392,-3037,-9476,-7837,-8890,-9457,-2125,-1168,-1231,-2410], +[0,-7841,-2410,-3214,-9477], +[1,3,4517], +[0,4518,4519,4520,9], +[0,-9457,-479,-1022,-1597,-1876,-2346], +[0,-9478,-3037,-9476,-1168,-1187,-1261,-2388,-2410], +[0,-1168,-2410,-3862,-3018,-7841,-7419,-2388,-8170,-7148], +[1,3,4522], +[0,4523,4524,4525,4], +[0,-2460,-2347,-2462,-2231,-479,-1876], +[0,-1168,-2125,-9479,-2410,-3037,-1187,-1208,-7837,-1237,-1632,-7836,-7838,-1252,-9480], +[0,-2410,-7841,-9481,-3018,-5058,-7644,-3116,-3185], +[1,3,4527], +[0,4528,4529,36,9], +[0,-9416,-1403,-2347,-2416,-9482,-9417,-2155,-1016,-9483,-2464], +[0,-2322,-2460,-932,-1942,-9484,-2341,-1938,-9485,-945,-978,-940,-967,-9486], +[1,3,4531], +[0,4532,122,4533,5], +[0,-1266,-1792,-9487], +[0,-7441,-775,-7841], +[1,3,4535], +[0,4536,4537,4538,5], +[0,-1107,-1187,-1876,-2347,-2460], +[0,-994,-2462,-1168,-1224,-1231,-1262,-1210,-1184,-1245,-1226,-1452], +[0,-7841,-9281,-1264], +[1,3,4540], +[0,4541,4542,4543,4], +[0,-1107,-1015,-9488,-1212,-2347,-2462,-1187,-994,-1876], +[0,-1788,-1168,-1654,-2460,-756,-9489,-1231,-1197,-1243,-528,-9490], +[0,-7841,-3264,-9408,-775,-7175,-9048], +[1,3,4545], +[0,4546,4547,7,6], +[0,-9491,-9492,-9493,-668,-808,-1022,-9416,-9417,-9494,-9495,-9496,-1570,-1646,-4091,-1792,-2103,-2347,-2460], +[0,-641,-756,-994,-1405,-9381,-1452,-9497,-1654,-2125,-2198], +[1,3,4549], +[0,4550,4551,4552,8], +[0,-1986,-2346,-2347,-2460,-2462,-2555,-9498], +[0,-1654,-2250,-2330], +[0,-1168,-7841,-9498,-9499,-5408,-8027,-2460,-9500], +[1,3,4554], +[0,4555,4556,4557,4], +[0,-479,-9501,-679,-1022,-1108,-1792,-1850,-1876,-2062,-2218,-2460,-9445], +[0,-756,-1405,-1654,-1657,-1972,-2125,-2198,-2210,-2261,-2269,-2541], +[0,-1168,-2490,-7841], +[1,3,4559], +[0,4560,0,4561,4], +[0,-1626,-2460,-2346,-2501,-1266], +[0,-7841,-2501], +[1,3,4563], +[0,4564,4565,4566,8], +[0,-729,-9229,-1266,-1402,-1750,-1805,-9502,-2186,-2187,-2347,-2353,-2490], +[0,-1654,-2293], +[0,-7841,-9343,-729,-1540], +[1,3,4568], +[0,4569,4570,4571,5], +[0,-1100,-1236,-2460,-9498], +[0,-519,-7342,-9431,-1168,-1825,-9503,-9445,-2541], +[0,-7841,-5408,-5409,-501,-6454,-724,-6656], +[1,3,4573], +[0,4574,4575,4576,5], +[0,-9271,-510,-2460,-2347,-1645,-2424,-9270,-9269], +[0,-1168,-1654,-932,-2125,-9273,-9504,-1195,-1632,-2461,-1215,-9505,-9274,-9275,-9272], +[0,-7841,-9270,-9278,-9279], +[1,3,4578], +[0,4579,4580,4581,11], +[0,-883], +[0,-519,-1825,-2384,-2541], +[0,-3994,-3673,-9506,-6826,-9507,-8799,-2265,-640], +[1,3,4583], +[0,4584,4585,4586,4], +[0,-9508,-9509,-9510,-9511,-2093,-9512,-9513,-2095,-4655,-4994,-9514,-9515,-9516,-9517,-9518,-9519,-9520,-9521,-9522, +-9523,-9524,-9525,-9526,-9527,-9528,-9529,-9530,-5707,-9531,-9532,-9533,-9534,-9535,-9536,-9537,-6368,-2297,-9538,-9539], +[0,-350,-4062,-351,-3266,-827,-9540,-2127,-2250,-2322,-2331], +[0,-1599,-856,-3671,-4328,-5887,-7440,-9541,-8170,-7148,-8169,-1274,-2093,-2427], +[1,3,4588], +[0,0,4589,4590,10], +[0,-9542,-9543,-1127,-7887,-1136,-1137,-1144,-9544,-1148,-1149,-1153,-9545,-9546], +[0,-2363,-9547], +[1,3,4592], +[0,4593,4594,4595,8], +[0,-1646,-9548,-2231,-2525,-2416], +[0,-3983,-521,-534,-567,-589,-664,-9549,-726,-838,-879,-6897,-6867,-932,-940,-952,-953,-1077,-1127,-5974,-1132,-1134, +-1136,-1137,-1138,-9550,-1148,-1149,-1162,-7848,-1344,-6785,-1534,-1654,-1661,-1689,-1788,-1942,-2177,-2210,-2410,-2424, +-2501,-2505], +[0,-1276,-1689,-3110,-3264], +[1,3,4597], +[0,4598,4599,155,5], +[0,-1435,-9551,-619,-6508,-1309,-9552,-9553,-9554,-9555,-5400,-9556,-9557,-9558,-9559,-9560,-9561,-9562,-9563], +[0,-1510,-707,-1367,-9564,-9565,-1276], +[1,3,4601], +[0,4602,4603,4604,6], +[0,-6594,-3037,-4204,-3223,-6587,-2531], +[0,-3665,-7197,-2410,-2469,-4375], +[0,-1449,-5092,-4865,-3586,-9566,-3578,-3098,-3264,-5388,-5387], +[1,3,4606], +[0,0,14,4607,4], +[0,-8047,-7440,-6659,-6543,-5573,-9567,-687,-3958,-4378,-1958,-502,-4377,-6748,-7303,-9568,-1646,-1813], +[1,3,4609], +[0,0,4610,4611,4], +[0,-2832,-5834,-8084,-9569,-8096,-516,-753,-5835,-932,-9570,-1365,-1777,-1788,-2156,-2322], +[0,-6981,-8619,-9571,-9572,-3582,-5269,-753,-6948], +[1,3,4613], +[0,0,4614,7,5], +[0,-1452,-1453,-1548,-2322], +[1,3,4616], +[0,4617,4618,4619,10], +[0,-9573], +[0,-2832,-5834,-8084,-9574,-9575,-8096,-515,-516,-932,-993,-1365,-1659,-1777,-1788,-2156,-2322], +[0,-8047,-9576,-9577,-9578,-9579,-8047,-7153,-9580,-3214,-3217], +[1,3,4621], +[0,4622,4623,4624,8], +[0,-5334,-4231,-9581,-9582,-2768,-2771,-1619,-1839,-9583,-2429,-5358,-9584,-9585], +[0,-3037,-9586,-652,-1290,-1294,-1618,-1942,-9587,-2094,-2100,-2399,-2410,-7669,-2541], +[0,-9588,-9589,-3264,-9590,-3590,-2444,-1838,-9591], +[1,3,4626], +[0,4627,4628,4629,4], +[0,-5334,-9581,-9583], +[0,-3037,-9586,-9592,-652,-823,-2586,-1290,-1294,-1318,-9593,-1942,-2094,-2100,-2399,-2410,-7669,-2429,-2541], +[0,-6688,-9588,-9589,-3264,-9594,-7723,-3590,-2444,-9590,-2544], +[1,3,4631], +[0,4632,4633,4634,9], +[0,-5334,-4231,-9595,-2742,-5981,-9596,-9597,-4263,-1292,-2769,-2788,-1968,-2235,-2429,-9585], +[0,-3037,-652,-1294,-1942,-2094,-2100,-2399,-2410,-7669,-2541], +[0,-775,-9588,-9589,-3264,-5572,-3581,-5101,-9598,-3585,-6750,-9590,-3590,-2444], +[1,3,4636], +[0,4637,4638,4639,5], +[0,-426,-8316,-5334,-2742,-9596,-9599,-9600,-2769,-9601,-9602,-9603,-1968,-2235,-2276,-9583,-9585], +[0,-3037,-6426,-652,-9604,-5342,-989,-1294,-1618,-5204,-1619,-5205,-1942,-2094,-2100,-2399,-2410,-2429,-2541], +[0,-5888,-3217,-5210,-9588,-9589,-3264,-3214,-4146,-4147,-2083,-6408,-9590,-3590,-2444], +[1,3,4641], +[0,4642,217,4643,6], +[0,-5334,-4231,-9605,-2742,-2769,-2771,-1619,-1968,-2235,-2268,-9585], +[0,-9588,-9589,-3264,-6233,-6231,-9606,-9590,-3590,-2444], +[1,3,4645], +[0,4646,4647,4648,4], +[0,-426,-5334,-4231,-2742,-9596,-9600,-2769,-9601,-9602,-9603,-1968,-2235,-2276,-9583,-6648], +[0,-3037,-3040,-3052,-652,-928,-5343,-1294,-1942,-2006,-2019,-2094,-2100,-9607,-2399,-2410,-2541], +[0,-9588,-9589,-3264,-1940,-2006,-9608,-2299,-9590,-3590,-2444,-2476], +[1,3,4650], +[0,87,0,4651,4], +[0,-5398,-9589,-9588,-3264,-6233,-2265,-6231,-5554,-9590,-2444,-3590], +[1,3,4653], +[0,4654,217,4655,4], +[0,-5334,-4231,-2766,-9609], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-2265,-5398,-5554,-4308], +[1,3,4657], +[0,4658,4659,4660,4], +[0,-5334,-2742,-2767,-1968,-2235], +[0,-3037,-6426,-652,-9604,-9610,-5342,-1942,-2094,-2100,-9611,-2384,-2399,-2410,-2541], +[0,-5092,-6311,-9588,-9589,-3264,-9612,-2083,-9590,-3590,-2444,-9613,-9614], +[1,3,4662], +[0,4663,4664,7,8], +[0,-2487,-1276], +[0,-1788,-1654,-932,-2125,-2293,-963], +[1,3,4666], +[0,0,4667,4668,5], +[0,-6774,-1127,-1132,-1162,-6114,-1405,-1451,-1548,-6186,-1991,-2081,-9615,-2111,-9616], +[0,-2265,-3223,-8034,-3264,-6422,-6420,-4112], +[1,3,4670], +[0,4671,4672,7,4], +[0,-1696], +[0,-2195,-2319], +[1,3,4674], +[0,0,0,4675,4], +[0,-1004,-7107,-5146,-3445,-9617,-9618,-9619,-9620,-9621,-9622,-9623,-9624,-9625,-9626,-9627,-9628,-9629,-9630], +[1,3,4677], +[0,0,4678,7,9], +[0,-2303,-2125,-1942,-656,-2699,-23,-9631,-3408], +[1,3,4680], +[0,0,4681,7,11], +[0,-43,-40,-6056,-6035,-527,-21,-23,-528,-533,-856,-932,-956,-958,-959,-1415,-1417], +[1,3,4683], +[0,4684,4685,4686,5], +[0,-9632,-615,-9633,-9634,-9635,-9636,-9637,-9638,-9639,-9640,-1442,-9641,-1639,-9642,-1666,-1667,-1783,-1863,-6467,-2269, +-2350,-9643,-9644], +[0,-9645,-5767,-3035,-4035,-3660,-4036,-3621,-3037,-9144,-4372,-9646,-652,-664,-674,-3542,-932,-9647,-9648,-1344,-1534, +-1654,-2210,-2379,-2410], +[0,-3258,-3260,-7643,-3161,-1302], +[1,3,4688], +[0,4689,4690,7,8], +[0,-9649], +[0,-615,-633,-634,-725,-932,-1127,-1130,-1131,-1146,-1148,-1149,-1152,-9650,-1159,-1276,-1754,-2148,-9651,-2199,-2210, +-7035,-9652,-2416], +[1,3,4692], +[0,0,4693,4694,4], +[0,-775,-824,-1107,-8318,-1449,-1654,-932,-1548,-2127,-2198,-2334,-683,-693,-719,-1276,-2410,-1339,-9653,-3621,-7694, +-9654,-5758,-9655,-9656,-966,-4062,-9657,-958,-968,-943,-350,-428,-351,-427], +[0,-4131,-4132], +[1,3,4696], +[0,218,0,7,4], +[1,3,4698], +[0,39,0,4699,5], +[0,-1306,-8938], +[1,3,4701], +[0,0,219,4702,4], +[0,-8113], +[1,3,4704], +[0,4705,4706,4707,5], +[0,-1758,-1650], +[0,-2416,-1449,-9658,-2125], +[0,-1689,-3110], +[1,3,4709], +[0,4710,4711,41,10], +[0,-2029], +[0,-23,-26,-40,-41,-43,-664,-756,-761,-932,-1654,-1788,-1939,-1967,-2006,-2125,-2127,-2128,-2131,-2137,-2140], +[1,3,4713], +[0,4714,4715,7,8], +[0,-668,-2177,-1077,-719,-9659,-1982,-2234], +[0,-1415,-932,-2125,-1753,-2375,-2379,-2402,-2410,-3136,-3037,-3198,-3199,-3048,-959,-958,-9660,-428,-9661,-427], +[1,3,4717], +[0,0,4718,4719,5], +[0,-9662,-4835,-3036,-4647,-3037,-8200,-3664,-502,-9663,-9664,-928,-932,-1107,-1449,-1683,-1763,-9665,-8436,-1942,-2910, +-2410,-2426,-9666,-2469,-9667,-2531,-2564], +[0,-1313,-3578,-3994,-1334,-9668,-3161,-3122,-9669,-9670,-9671,-9672,-9060,-7314,-5819,-3967], +[1,3,4721], +[0,4722,29,4723,6], +[0,-1582], +[0,-5889,-1105,-7660,-7661], +[1,3,4725], +[0,4726,86,4727,6], +[0,-725,-1650,-2125,-2177,-2433,-2518,-9673], +[0,-9674,-9675,-9676,-9677,-1764], +[1,3,4729], +[0,4730,4731,4732,6], +[0,-6585,-1333], +[0,-86,-3307,-3615,-190,-4066,-350,-351,-3266,-3267,-9678,-4862,-9679,-3037,-5286,-2970,-3664,-932,-967,-4814,-977,-1110, +-1323,-1344,-7317,-1449,-1534,-1772,-1874,-1942,-2910,-2127,-2214,-2379,-2410,-2411,-2469], +[0,-1317,-3264,-5092,-3215,-1333,-9680], +[1,3,4734], +[0,0,4735,4736,9], +[0,-3037,-652,-2586,-1288,-1292,-1942,-2094,-2100,-2399,-2410,-2426,-2541], +[0,-9681,-9682,-3264,-6557,-7153,-6818,-5387,-5388], +[1,3,4738], +[0,4739,4740,4741,4], +[0,-9683], +[0,-7196,-932,-1110], +[0,-5835,-3264], +[1,3,4743], +[0,0,4744,4745,5], +[0,-86,-3307,-3268,-9684,-3136,-3037,-589,-3223,-932,-940,-958,-9685,-1297,-1344,-1942,-2251,-2375,-2386,-2392,-2410, +-2411], +[0,-3264,-9686,-9687,-9688,-3223,-9689,-9690], +[1,3,4747], +[0,0,4748,4749,11], +[0,-9691,-652,-756,-2127,-2415], +[0,-3264,-5559,-6422,-9692,-6420,-3223], +[1,3,4751], +[0,4752,4753,4754,5], +[0,-1839,-1324], +[0,-824,-1415,-1344,-1623,-774,-932,-825,-2501,-920,-1936,-1942,-767,-21,-533,-1276,-23,-1534,-1771,-9693,-86,-2251,-9694, +-40,-1331,-958,-940,-3307,-7166], +[0,-2501,-3264,-5932], +[1,3,4756], +[0,4757,4758,4759,5], +[0,-6512,-683,-719,-1297,-6560,-9695,-2416], +[0,-1127,-1130,-1148,-1152,-1860,-1989], +[0,-687,-6454,-9696,-775,-3264,-9383,-3214,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838,-3215,-9698,-9216], +[1,3,4761], +[0,4762,4763,4764,4], +[0,-6512,-683,-719,-3223,-6560,-9695,-2334], +[0,-86,-5121,-350,-4062,-351,-3266,-9699,-9700,-932,-943,-1344,-1392,-1415,-1419,-1534,-2127,-9701,-2466], +[0,-687,-6454,-9696,-775,-3264,-9383,-3214,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838,-3215,-2334,-9698,-9216], +[1,3,4766], +[0,4767,4768,4769,9], +[0,-1860], +[0,-2322,-2250,-2320,-1860], +[0,-3264,-6528,-1858,-1859,-3967], +[1,3,4771], +[0,4772,4773,4774,4], +[0,-6585,-1317,-2039,-2276], +[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3267,-9678,-3268,-3037,-3040,-3052,-5286,-2970,-3664,-589,-932,-967,-4814, +-977,-1110,-1344,-1534,-1874,-1940,-2910,-2006,-2019,-2127,-2214,-2379,-2410,-2411,-2469], +[0,-1326,-3264,-2006,-3215,-5092], +[1,3,4776], +[0,0,4777,4778,5], +[0,-519,-674,-2541], +[0,-3264,-5177,-9702,-9566,-4108,-5388,-5387,-9703,-9704], +[1,3,4780], +[0,0,4781,4782,10], +[0,-1344,-1392,-1471,-2387,-932,-2125,-2127,-1942,-756,-1870,-2410,-1771,-1413,-1952,-1481,-9705,-1476,-9706,-8382,-7818, +-1491,-9707,-9708,-1475,-9709,-3469,-9710], +[0,-9711,-9712,-659,-3264,-5092,-6527,-9472,-3839], +[1,3,4784], +[0,4785,0,4786,5], +[0,-9713,-823,-861,-1333,-9714], +[0,-3264,-3966,-5554,-9715,-9716,-6473], +[1,3,4788], +[0,4789,0,4790,5], +[0,-9717,-9718,-469,-1107,-1496,-1646,-1966,-2177], +[0,-3264,-7148,-2451,-1330], +[1,3,4792], +[0,4793,4794,4795,9], +[0,-9719,-1324,-1548,-1949,-2321], +[0,-86,-3307,-3037,-767,-774,-778,-796,-9071,-932,-7466,-1322,-1344,-1415,-1534,-1643,-1771,-1942,-1974,-9720,-2000,-2125, +-2251,-2275,-2410,-2501,-2503,-9721], +[0,-2501,-3862,-3264,-1331], +[1,3,4797], +[0,4798,4799,4800,4], +[0,-9722,-719,-755,-1936], +[0,-190,-3748,-7155,-3621,-3037,-9723,-652,-784,-932,-6835,-958,-8339,-9724,-1001,-1110,-1654,-1889,-1979,-9695,-2125, +-9725,-2303,-2334,-2410,-2411,-9487], +[0,-1936,-9726,-3264,-9727,-6684], +[1,3,4802], +[0,4803,4804,4805,5], +[0,-7713,-6585,-6584,-3223], +[0,-190,-3037,-3664,-932,-940,-965,-978,-1110,-1942,-2386,-2410,-2411,-2469], +[0,-3264,-3215,-8027,-6597,-5092,-9728,-3484,-9297], +[1,3,4807], +[0,4808,129,4809,6], +[0,-828,-1370,-8441,-2255,-9729], +[0,-1334,-6324], +[1,3,4811], +[0,4812,4813,7,10], +[0,-996,-9730,-1063], +[0,-2531,-1788,-9731,-510,-1654,-2177,-1003,-2228,-725,-516,-2229], +[1,3,4815], +[0,4816,4817,4818,5], +[0,-9732,-812], +[0,-3198,-3136,-3037,-511,-1415,-2375,-2410,-1971,-9056], +[0,-1334,-1971,-8484,-9733], +[1,3,4820], +[0,4821,4822,4823,4], +[0,-4623,-812,-1336,-1393,-1396,-1639], +[0,-86,-3307,-190,-3198,-3330,-3617,-9734,-3136,-4036,-3037,-4203,-4204,-617,-932,-940,-967,-1004,-1098,-1110,-1344,-1415, +-1534,-9735,-1805,-4916,-8436,-1942,-2293,-2375,-2410,-2411,-2531], +[0,-7302,-1971,-5401,-1334,-1342,-729,-1004,-1030,-3548,-9736,-632,-1168,-1137,-2512,-2531,-754], +[1,3,4825], +[0,4826,4827,4828,4], +[0,-1297,-1640,-668,-9737,-9738,-1810,-1646,-2436,-579,-1336,-1888,-9739,-1319], +[0,-9740,-2319,-932,-1004,-2105,-9741], +[0,-687,-3957,-5142,-1334,-1342,-1339,-9742,-3844], +[1,3,4830], +[0,0,4831,4832,4], +[0,-2391,-1344,-1654,-932,-2198,-2379,-1942,-190,-721,-2410,-3037,-1534,-7820,-3621,-9743,-86,-2251,-9744,-2411,-964,-940, +-967,-3307], +[0,-1334,-729,-3100,-9745,-1004], +[1,3,4834], +[0,0,4835,4836,8], +[0,-3048,-3136,-9746,-427,-428,-932,-935,-958,-1077,-1415,-1605,-2375,-2378,-2379,-2410], +[0,-3966,-1334,-7827,-9747,-9748,-9745,-5563], +[1,3,4838], +[0,0,0,4839,4], +[0,-1342,-9749], +[1,3,4841], +[0,4842,4843,4844,4], +[0,-812,-9732], +[0,-1415,-1971,-2375,-9056,-2410,-3136,-3037,-512,-3198,-511,-9750], +[0,-1342,-1971,-8484,-9733], +[1,3,4846], +[0,0,0,4847,10], +[0,-5889,-3322,-1939], +[1,3,4849], +[0,4850,31,4851,11], +[0,-6829,-6372,-2347], +[0,-5827,-1334,-3443,-2105,-9052,-9751,-9752,-6693,-9753,-9024], +[1,3,4853], +[0,0,4854,4855,5], +[0,-3470,-3842,-3471,-741,-932,-940,-9754,-1942,-2127,-2174,-2322], +[0,-9755,-5553,-775,-656], +[1,3,4857], +[0,0,84,4858,5], +[0,-9756,-9757,-9758,-2424,-9759,-9760,-9761,-9762,-1878,-9763,-9764,-9765,-9766,-9767], +[1,3,4860], +[0,4861,4862,4863,4], +[0,-9768,-812,-9769,-9770,-9771,-1689], +[0,-510,-744,-932,-940,-943,-958,-966,-967,-968,-974,-1004,-1344,-1534,-1654,-1788,-1942,-2198,-2210,-2548,-2293], +[0,-3110,-1348,-9772], +[1,3,4865], +[0,39,4866,4867,5], +[0,-9773,-23,-3395,-3204,-38,-39,-40,-41,-43,-3326,-350,-351,-3266,-3037,-427,-428,-3664,-571,-756,-757,-932,-934,-940, +-948,-958,-9774,-1344,-9775,-9776,-9777,-9778,-9779,-1534,-1942,-2125,-2127,-2210,-2410,-2469], +[0,-1349,-9780,-1348,-9781,-9782,-9772,-9783,-9784], +[1,3,4869], +[0,0,4870,4871,4], +[0,-190,-3267,-3470,-3471,-427,-428,-932,-940,-967,-1110,-1942,-2127,-2132,-2174,-2410], +[0,-1349,-9785,-3445,-3862], +[1,3,4873], +[0,4874,4875,4876,4], +[0,-9786], +[0,-1788,-510,-9787,-9788,-1654,-9789,-932,-2177,-2105,-9790,-2410,-3037,-1002,-2884,-2832,-3748,-5029], +[0,-9788,-5845,-9791,-9792], +[1,3,4878], +[0,4879,4880,4881,5], +[0,-9793], +[0,-527,-533,-559,-562,-756,-932,-934,-958,-1417], +[0,-1971,-9794,-9795,-1415,-4215], +[1,3,4883], +[0,0,4884,4885,4], +[0,-21,-23,-40,-427,-812,-932,-9796,-958,-1650,-9797,-2125,-9798,-2319,-2359,-2379,-2410], +[0,-1353,-9799,-9100,-1777,-8199,-9800,-7724,-5570,-5569,-9094,-1107,-9801,-9802], +[1,3,4887], +[0,0,4888,4889,6], +[0,-652,-1107,-2391,-2379,-2402,-2410,-3036,-3037,-2581], +[0,-6527,-8799,-9803,-9804,-6730,-7710,-5316,-8653,-8740,-8642,-8715,-9805,-8654,-8685,-9235,-8761,-7715,-8656,-3839, +-9806,-9807,-5315], +[1,3,4891], +[0,4892,4893,4894,5], +[0,-9808,-7879,-2218,-1111,-9809,-1043,-5558,-9810,-8628,-9324], +[0,-2541,-519,-824,-2331,-7687,-9401,-7692], +[0,-1644,-6454,-6527,-5093,-9235,-8640,-7715,-8642,-3839], +[1,3,4896], +[0,4897,4898,4899,5], +[0,-9808,-999,-9811,-5558,-9812,-8628], +[0,-652,-2541,-519,-2410,-3037], +[0,-6454,-6527,-9813,-1644,-7175,-7715,-9814], +[1,3,4901], +[0,4902,0,4903,10], +[0,-9815,-2062], +[0,-1358,-9715,-7920,-9816,-3323], +[1,3,4905], +[0,0,4906,4907,9], +[0,-23,-3037,-3664,-756,-9817,-9818,-1059,-1344,-1361,-9819,-1548,-1552,-1942,-1952,-2074,-2125,-9820,-2174,-2391,-9821, +-2410,-2466,-2469], +[0,-1361,-9822,-9823], +[1,3,4909], +[0,0,4910,4911,8], +[0,-9824,-3136,-756,-1415,-2125,-2375,-2388,-2410], +[0,-9825], +[1,3,4913], +[0,0,0,4914,4], +[0,-1361,-6852,-9826,-6582,-7537,-5112,-7558,-9827,-5562,-7822], +[1,3,4916], +[0,186,4917,4918,5], +[0,-519,-1298,-2384,-2541], +[0,-4792,-3324,-6690,-6691,-3551,-1072,-9828], +[1,3,4920], +[0,4921,4922,4923,6], +[0,-1871,-5915], +[0,-519,-6997,-824,-999,-2541], +[0,-6024,-8427,-4792,-2114,-1109,-9318,-9829,-687], +[1,3,4925], +[0,4926,4927,4928,5], +[0,-9830,-9831,-9832,-9833,-9834,-9835,-9836], +[0,-3037,-4204,-932,-9837,-1942,-2410], +[0,-9668,-3844,-9838,-9839,-7107,-8897,-9840,-3690,-7586,-9841,-5196,-9842,-3691,-5728,-3578,-3161,-3122,-9843,-9844, +-6011,-5801,-1334,-1342,-2512,-6224,-9845,-3994,-3445,-5407], +[1,3,4930], +[0,0,14,4931,10], +[0,-6806,-2265,-7210,-9846,-6722,-5554,-885,-9847], +[1,3,4933], +[0,4934,4935,4936,8], +[0,-9551,-619,-9556,-1309,-1435,-1582], +[0,-707,-1277,-1510], +[0,-6656,-7421,-8481,-1277,-3862], +[1,3,4938], +[0,4939,4940,4941,6], +[0,-786,-2776,-3546], +[0,-9848,-9849], +[0,-1368,-6187,-3161,-4729,-9850,-3264,-9851,-3844,-5092,-4865,-2127,-9613], +[1,3,4943], +[0,0,4944,4945,4], +[0,-2410,-2469], +[0,-1369,-9852,-9853,-1878,-9763,-9758,-2424,-9854,-9855,-9759,-9764,-9760,-9765,-9766,-9767,-9761], +[1,3,4947], +[0,0,71,4948,10], +[0,-9856,-7711,-9857,-9858,-9859,-1370,-4865,-633], +[1,3,4950], +[0,0,29,7,5], +[1,3,4952], +[0,4953,4954,4955,5], +[0,-9860,-480,-482,-9861,-668,-688,-690,-696,-5906,-3517,-1366,-8418,-9862,-6259,-2166,-2202,-2219,-4621,-2267,-9863, +-2400,-2820,-2528,-2531,-9864], +[0,-6486,-5918,-357,-3851,-3037,-3040,-9865,-9866,-9867,-4372,-4626,-4204,-9868,-519,-623,-826,-9869,-969,-970,-1681, +-1741,-1827,-1942,-2006,-9870,-2210,-2269,-2379,-2410,-2541], +[0,-2006,-687,-4146,-3973,-3098,-3958,-1940,-2074,-9871,-7650,-714,-5554], +[1,3,4957], +[0,0,4958,4959,11], +[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-775,-932,-967,-4814,-1110,-1344,-1415,-1534,-1771,-1942,-2910,-2127], +[0,-1374,-9872,-5553,-3215,-775], +[1,3,4961], +[0,0,0,4962,6], +[0,-9873,-9874,-7864,-7084,-7856,-9219,-3966,-687], +[1,3,4964], +[0,4965,4966,63,4], +[0,-3947,-231,-4106,-2900,-3950,-9875,-2153], +[0,-3952,-2410], +[1,3,4968], +[0,4969,4970,4971,11], +[0,-480,-1040,-1863,-9875,-2153], +[0,-1059,-1087,-1376], +[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-910,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966,-3967,-1965,-3968,-1966, +-3969,-2063,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], +[1,3,4973], +[0,4974,0,4975,8], +[0,-9876,-714], +[0,-9877,-3966,-9878,-9879], +[1,3,4977], +[0,0,4978,4979,6], +[0,-849,-1654,-9880,-2334], +[0,-3209,-4792,-4791,-9881,-4865,-9882,-7857,-1380], +[1,3,4981], +[0,0,4982,4983,8], +[0,-932,-937,-966,-1001,-1442,-1654,-1788,-8501,-2068,-2094,-9883,-2195], +[0,-9199,-9884,-711,-6505,-3184,-3756,-4055,-1460,-4146,-2006,-9885,-2362,-3018,-2410,-6597,-2548,-9886], +[1,3,4985], +[0,0,4986,4987,8], +[0,-510,-526,-528,-549,-9887,-9888,-551,-556,-559,-9889,-566,-9890,-9891,-9892,-9893,-9894,-9895,-9896,-9897,-9898,-9899, +-9900,-9901,-9902,-9903,-689,-704,-932,-9904,-1045,-1107,-1127,-1132,-1134,-1138,-9905,-9906,-1452,-1650,-1797,-2125, +-2127,-2128,-2131,-9907,-5860,-2138,-2143,-9266,-2187,-2493], +[0,-1382,-1348,-9780,-9908,-3582], +[1,3,4989], +[0,0,4990,4991,4], +[0,-7,-8,-9,-10,-13,-3204,-42,-3983,-365,-407,-410,-3037,-3040,-3052,-427,-428,-4837,-9909,-535,-774,-928,-932,-948,-958, +-959,-969,-970,-1028,-9910,-4693,-9911,-1127,-1131,-1132,-1134,-1137,-1140,-1149,-9912,-1160,-1162,-1339,-1415,-1419, +-1437,-1541,-1874,-1942,-9913,-2006,-2019,-2162,-2193,-2299,-2351,-2379,-2410,-2466,-6859,-2476,-5627,-2567], +[0,-9914,-9915,-9916,-9917,-9918,-3162,-3962,-9567,-3823,-3214,-3862,-775,-3264,-3926,-5538,-2006,-2476,-475,-2299,-3095, +-2410], +[1,3,4993], +[0,220,4994,4995,5], +[0,-633,-1059,-2319], +[0,-4004,-1384], +[1,3,4997], +[0,4998,4999,5000,6], +[0,-9919,-9920,-9921], +[0,-3037,-3664,-932,-1942,-2080,-2125,-2127,-2376,-2387,-2410,-2469], +[0,-6143,-9922,-6134,-9923,-9924,-3214,-3966,-2410], +[1,3,5002], +[0,5003,5004,221,5], +[0,-2323,-834,-9925,-1805,-2446,-668,-812,-2387,-1548,-2177,-2240,-3547,-2347,-9926,-2291,-9927,-9928,-9929,-9422,-9930, +-9931,-9932,-9933,-9934,-9935,-9936,-9937,-9938], +[0,-1415,-2125,-2388,-2375,-1417,-5673,-2231,-2410,-9939,-3136,-3037,-9940,-3738,-1534,-3198,-3044,-3199,-9941,-9942, +-7836,-4202,-9943], +[1,3,5006], +[0,5007,5008,5009,5], +[0,-3978], +[0,-3983,-3048,-3136,-3037,-9947,-1077,-1415,-1417,-9948,-1772,-1942,-1978,-2125,-2177,-2184,-2303,-2392,-2410], +[0,-9949,-1386,-3167,-3839,-3162,-8585,-3095,-9950,-3119,-5270], +[1,3,5011], +[0,5012,5013,5014,4], +[0,-9951,-9952,-812,-9953,-1554,-9954,-9955,-9956,-9957], +[0,-9958,-3470,-7040,-3471,-3035,-4269,-3198,-9959,-9960,-3621,-3037,-9961,-4372,-427,-428,-664,-665,-932,-940,-1654, +-1788,-1942,-2174,-2188,-2210,-2379,-2384,-2402,-2410,-2446], +[0,-2071,-9844,-9962,-9963], +[1,3,5016], +[0,0,5017,7,8], +[0,-1654,-932], +[1,3,5019], +[0,5020,5021,7,5], +[0,-9964,-9788,-9965], +[0,-9966,-1032,-1445,-2322], +[1,3,5023], +[0,0,5024,5025,4], +[0,-515,-1788,-2322,-932,-6283,-1365,-2156,-5834,-6402], +[0,-2444,-8038,-4004], +[1,3,5027], +[0,5028,5029,184,9], +[0,-680], +[0,-686,-2250], +[1,3,5031], +[0,5032,88,5033,4], +[0,-9967], +[0,-6836,-9968,-7440,-8421,-8130,-9969,-1107,-9095,-9970,-1391,-5572,-3581,-5574,-5569,-8129,-2265,-4004], +[1,3,5035], +[0,5036,5037,5038,11], +[0,-9971,-7408], +[0,-519,-6997,-824,-999,-1591,-2384,-2541], +[0,-1109,-5897,-9972,-3551,-1380,-9973,-1764,-2552,-1391,-7440,-6659,-8427,-9974,-687,-8425,-7304], +[1,3,5040], +[0,0,14,5041,6], +[0,-7208,-1391,-7440,-4004,-8038,-9716,-9975,-9976,-5493], +[1,3,5043], +[0,0,5044,5045,9], +[0,-664,-985,-1202,-1654,-1655,-2127], +[0,-7440,-1391,-9977,-1403,-3214,-9978,-8493,-7208,-9716,-8038,-9571,-5846], +[1,3,5047], +[0,0,5048,5049,5], +[0,-1654,-2081], +[0,-3264,-9950,-9979,-5065], +[1,3,5051], +[0,0,5052,5053,5], +[0,-3037,-519,-2331,-2384,-2541], +[0,-5827,-8038,-8027,-9980,-8800,-9753,-6408,-7440,-6659,-1391], +[1,3,5055], +[0,5056,222,5057,5], +[0,-9981], +[0,-7440,-9983,-7084,-9984,-9261,-6659,-6836,-1958,-4000,-3974,-1391], +[1,3,5059], +[0,0,31,5060,11], +[0,-4865,-1402,-5839], +[1,3,5062], +[0,0,5063,5064,11], +[0,-985,-1202,-1654,-2127], +[0,-7440,-1391,-9977,-1403,-9978,-8493,-9985,-5269,-7208,-8038,-9571,-5846], +[1,3,5066], +[0,5067,5068,7,5], +[0,-1729,-2516], +[0,-664,-1452,-9986,-1654,-1722], +[1,3,5070], +[0,5071,5072,5073,4], +[0,-1107,-1758,-1801,-510,-2518,-9632,-1650,-987,-1442,-2114,-2525,-931,-1276,-2297], +[0,-1452,-2125,-1754,-756,-2111], +[0,-4005,-9987,-9988,-9989], +[1,3,5075], +[0,5076,56,89,4], +[0,-1078,-2446,-7885], +[1,3,5078], +[0,5079,5080,5081,5], +[0,-513,-823,-896,-9990,-1571,-1887,-2355,-9991], +[0,-9992,-526,-527,-532,-534,-536,-544,-546,-9993,-551,-555,-7890,-558,-565,-567,-664,-9994,-748,-767,-778,-932,-980, +-1017,-1041,-1074,-1168,-1171,-1184,-1226,-1243,-1322,-1331,-1471,-1475,-1476,-1482,-7759,-1490,-1491,-1492,-1521,-1522, +-8936,-1654,-2210,-2211,-2275,-2388,-2410,-2417,-2437,-2476,-2479,-9995,-2481,-2483,-2484,-2485,-2501,-2505,-2508], +[0,-1407,-2476,-3527,-3095,-3098,-3160,-3161], +[1,3,5083], +[0,5084,156,5085,4], +[0,-233], +[0,-6748,-3215,-4377,-5829,-9567,-687,-3957,-6722,-1838,-6747], +[1,3,5087], +[0,5088,5089,7,4], +[0,-9996,-683,-719,-9997,-9998,-1650,-9999,-2416,-2595,-10000], +[0,-10001,-10002,-756,-1004,-10003,-10004,-10005,-10006,-10007,-10008,-10009,-10010,-10011,-10012,-10013,-10014,-10015, +-10016,-1610,-1810,-10017,-2125,-10018,-3013], +[1,3,5091], +[0,5092,5093,5094,5], +[0,-510,-10019,-1863], +[0,-190,-932,-4719,-1110,-1654,-1980], +[0,-7641,-687,-9218,-10020], +[1,3,5096], +[0,5097,5098,5099,4], +[0,-10021], +[0,-3326,-351,-3561,-3266,-4964,-10022,-10023,-683,-767,-10024,-1344,-1437,-10025,-1534,-1639,-10026,-2127,-4063,-8896], +[0,-10027,-6527,-5182,-10028,-10029,-8636], +[1,3,5101], +[0,5102,5103,223,6], +[0,-1107,-1413,-10030], +[0,-932,-10031], +[1,3,5105], +[0,0,5106,223,5], +[0,-3244,-190,-501,-10032,-888,-932,-952,-1107,-1110,-1449,-1942,-2162], +[1,3,5108], +[0,5109,0,5110,5], +[0,-1088,-1650,-10033,-2111,-2424,-711,-10034,-10035], +[0,-3634,-3440], +[1,3,5112], +[0,5113,0,107,4], +[0,-236,-237,-1363,-1417], +[1,3,5115], +[0,5116,5117,5118,6], +[0,-10036,-10037], +[0,-6256,-21,-23,-26,-40,-86,-9404,-533,-10038,-756,-1344,-1415,-1942], +[0,-4215,-1415,-5129,-886,-659,-4004,-5119], +[1,3,5120], +[0,5121,5122,107,6], +[0,-236,-4019,-237,-668,-4021,-1363,-4023,-1427,-4031,-2550], +[0,-3041], +[1,3,5124], +[0,5125,224,7,6], +[0,-10039,-8434,-668,-1950], +[1,3,5127], +[0,5128,224,7,5], +[0,-10040,-10041,-4647,-3037,-1449], +[1,3,5130], +[0,5131,5132,7,4], +[0,-10040,-10042,-237,-5129,-1427,-1449], +[0,-3136,-4647,-3037,-1344,-1415,-1650,-1942,-1952,-2125,-2375,-2410], +[1,3,5134], +[0,5135,5136,7,9], +[0,-10040,-10042,-237,-3037,-5129,-1427,-4031], +[0,-4034,-703], +[1,3,5138], +[0,5139,5140,5141,5], +[0,-1418], +[0,-50,-3615,-3244,-190,-8433,-3136,-427,-428,-932,-940,-948,-958,-959,-967,-1110,-1344,-1415,-10043,-1428,-1534,-1942, +-2375,-5232,-2410], +[0,-1415,-10044,-1015,-10045,-4004,-3634,-6538], +[1,3,5143], +[0,5144,5145,5146,4], +[0,-1077,-1805], +[0,-23,-2695,-366,-407,-409,-410,-10046,-3136,-10047,-3037,-10048,-3040,-3052,-6192,-485,-533,-534,-542,-561,-594,-635, +-656,-661,-747,-778,-779,-796,-865,-866,-929,-932,-941,-10049,-1017,-1041,-1077,-1331,-1352,-1415,-1426,-1428,-10050, +-1643,-1762,-1889,-1903,-1908,-1918,-1927,-1966,-10051,-2006,-2010,-2015,-2019,-2041,-2643,-2114,-2116,-2162,-2163,-2177, +-2233, +-2275,-2318,-2335,-2410,-2437,-10052,-2501,-2502,-2505,-2507,-2526], +[0,-1415,-3264,-6863,-9246,-3862], +[1,3,5148], +[0,5149,5150,7,4], +[0,-1650,-2269,-2446,-6597], +[0,-1415,-10053,-2218], +[1,3,5152], +[0,0,0,5153,5], +[0,-1415,-2552,-10054,-10055], +[1,3,5155], +[0,5156,5157,7,6], +[0,-668,-1119,-4024,-1425,-1427,-4031,-2218,-8204], +[0,-4035,-2435], +[1,3,5159], +[0,5160,5161,7,8], +[0,-237,-3037,-668,-680,-1119,-1864], +[0,-4035,-8523,-1548], +[1,3,5163], +[0,5164,5165,7,5], +[0,-480,-668,-4026,-4032,-2218,-6715,-2269], +[0,-21,-23,-40,-42,-190,-5121,-237,-3470,-3471,-3037,-533,-10056,-767,-932,-940,-948,-8339,-959,-967,-1110,-1415,-10043, +-1942,-2125,-2174,-2177,-2410,-2411], +[1,3,5167], +[0,5168,5169,7,6], +[0,-3037,-9581,-1427,-1632,-2297], +[0,-23,-10057,-4373,-9586,-1100,-10058,-10059], +[1,3,5171], +[0,5172,5173,5174,4], +[0,-10060,-10061,-10062,-10063,-10064,-10065,-10066,-10067,-10068,-10069,-10070,-10071,-10072,-10073,-10074,-10075,-10076, +-10077,-10078,-10079,-10080,-10081,-10082,-10083,-10084,-10085,-10086], +[0,-10087,-10088,-10089,-10090,-4066,-350,-6572,-351,-3266,-5286,-932,-10091,-1848,-2127,-2132,-6483,-9701,-2386,-2410, +-10092,-2469], +[0,-6527,-10093,-10094,-7715,-8640,-9235,-8653,-10095,-7069,-7066], +[1,3,5176], +[0,0,5177,7,6], +[0,-23,-3341,-3196,-24,-10096,-33,-5828,-3367,-3077,-3389,-3408,-3412,-42,-3193,-46,-47,-10097,-10098,-4776,-4777,-10099, +-10100,-10101,-3037,-3664,-461,-10102,-672,-727,-734,-6860,-10103,-930,-932,-944,-989,-990,-1026,-1394,-1640,-1651,-1667, +-10104,-1852,-6568,-1940,-10105,-1942,-2006,-2019,-2080,-10106,-6570,-2335,-3535,-2376,-2410,-2469,-2476,-8416,-2564], +[1,3,5179], +[0,0,0,5180,6], +[0,-3494,-10107,-10108,-3495,-10109,-10110,-3264,-5554,-3496,-10111,-3214,-2410,-10112,-1432], +[1,3,5182], +[0,5183,5184,5185,4], +[0,-1432], +[0,-3615,-7155,-367,-406,-409,-410,-3040,-3052,-427,-428,-767,-778,-932,-940,-967,-969,-970,-979,-1331,-1449,-1942,-2006, +-2019,-8276,-2275,-3752,-2379,-2391,-2410,-2469,-2501,-2503,-2505], +[0,-2006,-1432,-3264,-5554,-3496,-10113,-10109,-10110,-10114], +[1,3,5187], +[0,5188,5189,5190,4], +[0,-668,-10115,-10116,-10117,-2183,-3523,-1553,-1552,-10118], +[0,-1788,-510,-1127,-2210,-1813,-756,-1132,-6758,-1153,-722,-10119,-1149,-1144,-1146], +[0,-10120,-10121,-10122,-10123,-10124,-10125,-10126,-10127,-10128,-10129,-10130,-10131,-10132,-10133,-10134,-10135,-10136, +-10137,-10138,-10139,-10140,-10141,-10142,-10143,-10144,-10145,-10146,-10147,-10148,-10115,-10149,-10150,-10151,-10152, +-10153,-10154,-10155,-10156,-10157,-10158,-10159,-10160,-10161,-10162,-10163,-10164,-10165,-10166,-10167,-10168,-10169, +-10170,-10171,-10172,-10173,-10174,-10175,-10176,-10177,-10178,-10179,-10180,-10180, +-10181,-10182,-10183,-10184,-10185,-10186,-10187,-10188,-10189,-10190,-10191,-10192,-10193,-10194,-10195,-10196,-10197, +-10198,-10199,-10200,-10201,-10202,-10203,-10204,-10205,-10206,-10207,-5158,-10208,-10209,-10210,-10211,-10212,-10213, +-10214,-10215,-10216,-10217,-10218,-10219,-10219,-10220,-10221,-10222,-10223,-10224,-10225,-10226,-10227,-2183,-10228, +-10229,-10230,-10231,-10232,-10233,-10234,-10235,-10236,-10237,-10238,-10239,-10240,-10241, +-10242,-10243,-10244,-10245,-10246,-10247,-10248], +[1,3,5192], +[0,5193,5194,5195,4], +[0,-10249,-10250,-3880,-10251,-10252,-3888,-3117], +[0,-9163,-3890,-3891,-3893,-3037,-2410], +[0,-4058,-3926], +[1,3,5197], +[0,0,0,5198,5], +[0,-2006,-4125,-9800,-4633,-10253,-4634], +[1,3,5200], +[0,0,0,5201,10], +[0,-1437,-3214,-4865,-3482], +[1,3,5203], +[0,5204,5205,7,4], +[0,-1437], +[0,-1127,-2125,-1110,-367,-10254,-10255,-1152,-10256,-1542,-10257,-10258,-10259,-10260,-1136,-1139,-9550], +[1,3,5207], +[0,0,5208,5209,11], +[0,-3037,-1654,-2410], +[0,-6118,-7304], +[1,3,5211], +[0,5212,5213,5214,4], +[0,-10261,-7829,-1107,-1441,-1758], +[0,-481,-589,-709,-1437,-1452,-1646,-1654,-1689,-2111,-2184,-2269,-2501,-2503], +[0,-6146,-10262,-10263], +[1,3,5216], +[0,0,5217,5218,4], +[0,-3266,-932,-943,-957,-963,-1127,-10258,-1137,-1146,-9544,-1149,-10264,-10265,-1942,-1989,-2091,-2127,-5090,-2134,-2250], +[0,-743,-6920,-4865,-10266,-4791,-3323,-1441,-633], +[1,3,5220], +[0,5221,5222,5223,8], +[0,-503], +[0,-1788,-5514,-1654,-932,-2127,-2195,-1103,-589,-709,-1023,-2140,-350,-351,-10267], +[0,-2548,-3215,-4142,-10268], +[1,3,5225], +[0,5226,5227,5228,10], +[0,-25,-5223,-719,-812,-822,-1107,-10269,-10270,-2001,-10271], +[0,-190,-4010,-367,-4007,-7043,-3037,-720,-740,-796,-932,-940,-959,-967,-1415,-1448,-9390,-9393,-1942,-2125,-2410,-2411], +[0,-10272,-856], +[1,3,5230], +[0,5231,5232,7,4], +[0,-714,-719,-1077,-10273,-10274,-10275,-10276,-10277,-10278,-10279], +[0,-5325,-3048,-3037,-3664,-1753,-2379,-2391,-2410,-2469], +[1,3,5234], +[0,5235,5236,5237,6], +[0,-668,-693,-719,-10280,-988,-1000,-1107,-1333,-1442,-10281,-10282,-6611,-1548,-1645,-5199,-6533,-1965,-10283,-2114, +-2270,-2271,-10284,-10285,-9247,-10286,-2538], +[0,-664,-756,-3607,-1452,-1654,-2081,-2123,-2210,-2211,-10287,-10288,-2536], +[0,-8172,-4144,-7148,-8170,-4901,-5874], +[1,3,5239], +[0,5240,5241,5242,4], +[0,-25,-10289,-3661,-615,-10290,-930,-10291,-8985,-1600,-1601,-1610,-1650,-10292,-2271,-2424], +[0,-469,-1168,-1197,-1225,-1788], +[0,-856,-3214], +[1,3,5244], +[0,5245,0,5246,4], +[0,-6789,-7573,-10293,-7575,-1446,-10294,-7576], +[0,-1446,-3690,-5731,-3964,-3214,-856], +[1,3,5248], +[0,5249,0,5250,5], +[0,-6789,-717,-718,-10295,-843,-1447,-2576,-7576], +[0,-1446,-1599,-3690,-3262,-3214,-3756,-856], +[1,3,5252], +[0,5253,5254,225,5], +[0,-10296,-10297,-10298,-9683,-785,-10299,-10300,-1319,-1337,-1343,-1397,-1839,-10301,-10302,-2364,-2426,-10303,-10304, +-6587,-10305,-8352], +[0,-7196,-932,-957,-965,-1110,-1442,-1645,-1654,-10306,-1772,-1810,-1880,-2177,-2188,-2354,-10307,-10308], +[1,3,5256], +[0,5257,5258,225,5], +[0,-10309,-10310,-785,-1333,-10311,-1839,-2105,-8352,-2540], +[0,-633,-714,-1339,-1452,-6810,-1754,-1888,-1980,-10312,-2493], +[1,3,5260], +[0,0,5261,5262,4], +[0,-756,-1127,-1132,-6114,-1405,-1654,-2081,-2111,-10313], +[0,-640,-5559,-3214,-4055,-6917,-8127,-2265,-6231,-3673], +[1,3,5264], +[0,5265,5266,7,8], +[0,-687,-6392,-1000,-1333,-1548,-1645,-2271], +[0,-510,-633,-739,-6019,-756,-1405,-1445,-1661,-1754,-1978,-2081,-10314,-2210,-6430,-10315,-10316], +[1,3,5268], +[0,5269,226,5270,5], +[0,-668,-1574,-1877,-6715,-2343,-9493], +[0,-1452,-6863,-4144,-3276,-7148,-5874,-10317,-6864,-3240], +[1,3,5272], +[0,5273,5274,5275,4], +[0,-10318,-10319], +[0,-3621,-3037,-427,-428,-932,-936,-958,-1654,-1788,-2379,-2410], +[0,-4055,-10320,-788,-6473,-8257,-10321,-10322,-1838,-3215,-1454,-10323,-687], +[1,3,5277], +[0,0,5278,7,8], +[0,-2251], +[1,3,5280], +[0,0,0,5281,9], +[0,-4055,-4058], +[1,3,5283], +[0,5284,5285,5286,4], +[0,-411,-414,-2702,-668,-679,-3780,-6869,-1369,-1460,-1581,-10324,-2213,-10325], +[0,-3037,-726,-1098,-1344,-2987,-8065,-2331,-2400,-2410], +[0,-4182,-3844,-8959,-3817,-3816,-10326,-4215,-4041,-4004,-3634,-3691,-6582,-10327], +[1,3,5288], +[0,5289,5290,5291,10], +[0,-655,-6511,-1402,-7584,-1795], +[0,-2832,-5834,-8084,-8086,-8090,-10328,-8096,-516,-5835,-932,-1365,-1777,-2156,-2322], +[0,-4055,-6231,-10329,-6131,-7283,-10330], +[1,3,5293], +[0,0,0,5294,5], +[0,-4055,-6231,-10331,-9594], +[1,3,5296], +[0,0,5297,5298,11], +[0,-753,-932,-943,-958,-966,-968,-974,-1771,-2081,-2127,-2129,-2131,-2137,-2140,-2210,-2319,-10332], +[0,-4055,-1460,-8108,-4795,-3217], +[1,3,5300], +[0,0,5301,7,4], +[0,-1654,-932,-2125,-2410,-3037,-3621,-428,-427], +[1,3,5303], +[0,5304,206,5305,4], +[0,-8984], +[0,-2059,-6234,-6656,-4055,-1076,-1077], +[1,3,5307], +[0,0,5308,5309,5], +[0,-7055,-10333,-664,-932,-10334,-1654], +[0,-4055,-4058,-1463,-2451,-3926], +[1,3,5311], +[0,5312,5313,5314,5], +[0,-2346,-10335], +[0,-2322,-8392,-10336,-7650,-6538,-994], +[0,-4055,-5827,-9292,-3215,-510,-6747], +[1,3,5316], +[0,5317,5318,5319,8], +[0,-1681,-10337,-2177,-10338,-10339,-10340,-1563,-10341,-10342,-1562], +[0,-1780,-1788,-514,-664,-1654,-2210,-932,-739], +[0,-3175], +[1,3,5321], +[0,5322,5323,7,5], +[0,-23,-10343,-10344,-1816,-1863], +[0,-5694,-3037,-10345,-653,-928,-932,-940,-1640,-1645,-1805,-1942,-2127,-2358,-2410], +[1,3,5325], +[0,0,5326,5327,4], +[0,-3037,-3664,-8436,-2391,-2410,-2469], +[0,-4125,-3967,-3445,-10346,-2006,-5269,-3578,-2034,-3138], +[1,3,5329], +[0,5330,5331,5332,6], +[0,-10347,-1834,-8578,-2062], +[0,-2359,-1127,-1989,-932,-589,-1132,-633,-1874,-2410,-1339,-10348,-1130,-1148,-10349], +[0,-5408,-6827,-10350], +[1,3,5334], +[0,0,5335,5336,6], +[0,-2200,-1415,-1344,-932,-2910,-2375,-2379,-1942,-2410,-23,-1534,-632,-726,-958,-940,-967,-1419,-428,-427,-948], +[0,-3175,-4865], +[1,3,5338], +[0,0,5339,5340,4], +[0,-1003,-1405,-1654], +[0,-3175,-6422,-6420], +[1,3,5342], +[0,5343,5344,5345,6], +[0,-6134,-2359,-1107,-1640,-10351,-2550,-9968,-1548,-1576,-1650,-2125,-729,-679,-1645,-2228,-1336,-2231,-617,-1119,-5506, +-1997,-2594,-10352,-5758], +[0,-664,-5735,-1654,-7243,-2210,-2518,-932,-793,-2491,-1978,-2293,-633,-1474,-1972,-2211,-10353,-667,-1482,-1413,-1481, +-86,-665,-1472,-2174,-966,-958,-10354,-1483,-3471,-968,-1475,-10355,-943,-974,-1479,-9404,-3470,-1473], +[0,-1471,-10356,-4043,-1471,-3756,-3214,-3634,-4004,-8908,-10357], +[1,3,5347], +[0,5348,5349,5350,6], +[0,-10358,-1548,-10359,-1645,-8016,-742], +[0,-1763,-627,-664,-1471,-1654,-2210,-2363,-5482,-932,-2114,-2491,-633,-2211,-2410,-1771,-1413,-1481,-6399,-964,-1475], +[0,-10360,-10361,-10362,-633], +[1,3,5352], +[0,5353,5354,5355,4], +[0,-1980,-2734,-10363], +[0,-1127,-932,-1159,-1131,-1152,-1542,-966,-1129,-958,-968,-943,-974,-1150,-1151], +[0,-10360,-10364,-2734,-10365], +[1,3,5357], +[0,0,0,5358,4], +[0,-1471,-10360,-664,-1654,-2198], +[1,3,5360], +[0,227,5361,5362,9], +[0,-664,-1471,-1654,-2210,-2250,-1482,-86,-2174,-3471,-9404,-3470], +[0,-10360,-10364,-10366], +[1,3,5364], +[0,5365,5366,5367,5], +[0,-5086,-6029,-5087,-5088,-5089,-1645], +[0,-86,-3307,-9248,-3470,-3471,-7041,-664,-711,-932,-943,-958,-966,-968,-974,-1127,-1132,-1155,-1159,-1344,-10367,-1471, +-10368,-1479,-1482,-10369,-1654,-7243,-2111,-2174,-2210,-2211], +[0,-10360,-10361,-10370,-4005,-1405], +[1,3,5369], +[0,227,5370,5371,4], +[0,-1127,-1138,-1144,-1155,-1413,-1471,-1481,-1860], +[0,-10360,-10364,-4865,-6413,-10371,-10372,-10373,-10374,-7490,-10375,-10376,-10377,-10378,-10379,-10380], +[1,3,5373], +[0,5374,5375,5376,5], +[0,-10381], +[0,-664,-10382,-6134,-932,-943,-968,-974,-1127,-1131,-1132,-1152,-1159,-1163,-1471,-1542,-10383,-1972], +[0,-10360,-10364,-5799,-7489], +[1,3,5378], +[0,5379,5380,5381,4], +[0,-1401,-2518], +[0,-86,-3307,-3470,-3471,-7041,-1344,-1471,-1482,-1654,-1868,-2174,-2250], +[0,-1471,-3634,-10360,-10364,-10384], +[1,3,5383], +[0,34,5384,5385,5], +[0,-664,-6134,-932,-943,-968,-969,-974,-1127,-1129,-1131,-1149,-1150,-1151,-1152,-1159,-1163,-1471,-1542,-7243,-2210, +-2211], +[0,-10360,-10364,-8996], +[1,3,5387], +[0,5388,5389,5390,5], +[0,-1413], +[0,-1127,-1344,-1471,-932,-1412,-86,-2174,-966,-958,-3471,-7041,-968,-943,-974,-1479,-3472,-9404,-3470], +[0,-10360,-10385,-1412], +[1,3,5392], +[0,228,5393,5394,6], +[0,-664,-932,-943,-968,-969,-974,-1127,-1129,-1131,-1150,-1152,-1155,-1159,-1471,-1474,-1475,-1479,-1489,-1542,-1654, +-1658,-2210,-3470,-3471,-2174,-86,-3307,-1344], +[0,-10360,-10385,-1654], +[1,3,5396], +[0,5397,5398,5399,4], +[0,-668,-1574,-2269], +[0,-664,-1127,-1131,-1138,-1144,-1150,-1155,-1162,-1413,-1474,-1477,-1542,-1654,-1860], +[0,-10360,-10370,-1654,-664,-834,-8619], +[1,3,5401], +[0,5402,5403,5404,4], +[0,-1548,-1860], +[0,-932,-943,-969,-974,-1127,-1129,-1131,-1150,-1152,-1155,-1159,-1413,-1471,-1481,-1542], +[0,-10360,-10364,-1859], +[1,3,5406], +[0,0,5407,5408,10], +[0,-664,-1127,-1471,-1654,-1989,-932,-1159,-1131,-1481,-966,-958,-968,-943,-974,-1479], +[0,-1471,-10360,-10385,-1989], +[1,3,5410], +[0,5411,5412,5413,6], +[0,-679,-811], +[0,-23,-3412,-40,-932,-1413,-1471,-1475,-1481,-1483,-2127,-2128,-2129,-2131,-2137], +[0,-6505,-4795,-1471,-3209,-6024,-8257,-3862,-3277,-10361,-10360,-10386,-2127], +[1,3,5415], +[0,0,5416,5417,8], +[0,-1159,-1127,-1131,-1129], +[0,-10360,-10364,-10387], +[1,3,5419], +[0,5420,5421,5422,4], +[0,-10388,-5471,-4881], +[0,-86,-3307,-3470,-3471,-7041,-3048,-10389,-3037,-1344,-1412,-1471,-1481,-2174,-2410], +[0,-10360,-10364,-10390,-10391,-5471], +[1,3,5424], +[0,0,0,5425,4], +[0,-1471,-10360,-2210,-4215], +[1,3,5427], +[0,5428,5429,5430,5], +[0,-1119], +[0,-4035,-652,-932,-1413,-1471,-10392,-1475,-1481,-1942,-2127,-10393], +[0,-10360,-10361,-9454,-3214], +[1,3,5432], +[0,187,5433,5434,11], +[0,-664,-756,-1654,-1771,-1788,-2210,-2211], +[0,-10360,-6863], +[1,3,5436], +[0,5437,5438,48,8], +[0,-1107,-1645,-2508], +[0,-21,-23,-39,-40,-86,-3307,-7166,-533,-664,-665,-767,-932,-958,-967,-1344,-1405,-1412,-1415,-1471,-1474,-1475,-1482, +-1491,-1534,-1626,-1654,-1939,-1942,-1978,-2251,-2501], +[1,3,5440], +[0,0,27,5441,8], +[0,-10394,-1493,-10395,-4111,-10396,-10397,-10398,-10399,-1494], +[1,3,5443], +[0,0,0,5444,6], +[0,-1494,-2063,-3103], +[1,3,5446], +[0,5447,5448,5449,6], +[0,-10400], +[0,-10401,-3653,-2581,-6486,-3664,-2125,-10402,-2384,-2469,-10403,-10404,-10405,-10406,-10407,-10408,-10409], +[0,-7372,-5846,-4634,-3324,-6495,-10410,-6005,-3445,-10411,-2071,-1671,-3742,-1691,-6321,-10412,-1724,-1582,-10413,-654], +[1,3,5451], +[0,0,5452,5453,4], +[0,-985,-2447], +[0,-5514,-687,-712,-714,-4000,-3974], +[1,3,5455], +[0,5456,5457,5458,5], +[0,-985,-10414,-812,-1548,-8945,-2068,-2350,-10415,-713,-719,-1381,-2115,-1097,-10416], +[0,-1857,-1788,-2384,-664,-1410,-2322,-1344,-1654,-1691,-2210,-932,-1692,-2125,-879,-1658,-2245,-10417,-2379,-10418,-1942, +-2320,-756,-767,-1464,-2211,-2410,-3037,-8946,-1534,-10419,-10420,-665,-2234,-10421,-958,-10422,-10423,-940,-967,-5984], +[0,-10424,-5101,-6321,-10425,-1691,-10426,-2245,-5378,-1682,-4258,-10427,-7641,-7773,-7685], +[1,3,5460], +[0,5461,5462,5463,4], +[0,-8520,-1026,-10428,-1431,-1442,-1646,-10429,-1863,-1864,-10430,-2271,-2564], +[0,-237,-7057,-3660,-5686,-8523,-3046,-4879,-10431,-4651,-2392,-2410], +[0,-10432,-10433,-7711,-687,-10434,-3015,-6659,-3016,-10435,-10436,-8035,-8257,-6999,-5573,-3214,-7148,-10437,-10438, +-10439,-10440,-10441,-5897,-9044,-3694,-2410,-10442,-10443,-7441,-10444], +[1,3,5465], +[0,0,5466,5467,6], +[0,-932,-1111,-10445,-1572], +[0,-775,-3589,-5387,-10366,-10384,-10446,-7489,-10387,-10447,-10448,-10449], +[1,3,5469], +[0,5470,0,5471,4], +[0,-1640,-2536,-812,-10450,-1801], +[0,-5817,-5937,-5940], +[1,3,5473], +[0,5474,5475,5476,4], +[0,-459,-736,-737,-6920,-10451,-7412,-907,-929,-1072,-10452,-1335,-1504,-1641,-1800,-1840,-2255,-2401,-2453], +[0,-652,-10453,-2226,-2250,-2293], +[0,-3578,-3994,-1334,-9668,-3161,-5401,-6854], +[1,3,5478], +[0,5479,5480,5481,5], +[0,-10454,-3734,-5586,-10455,-1070,-2400,-2564], +[0,-2832,-2581,-50,-8280,-10456,-3758,-8317,-10457,-4203,-1501,-2293,-2386,-7457,-2392,-2410], +[0,-1501,-10458,-6463,-4055,-10459,-3215,-4053], +[1,3,5483], +[0,5484,5485,5486,11], +[0,-10455,-10460,-2401], +[0,-946,-1344,-1501,-1654,-1788,-2198,-2293,-2541], +[0,-10461,-4055,-10458,-1501,-10459], +[1,3,5488], +[0,0,5489,5490,5], +[0,-708,-1415,-1612,-2250], +[0,-1501,-5401,-10462], +[1,3,5492], +[0,5493,5494,5495,6], +[0,-651,-668,-10463,-1800,-10464], +[0,-619,-652,-946,-1501,-10465,-10466,-2210,-2293,-2541], +[0,-1501,-5401,-3444,-1573], +[1,3,5497], +[0,5498,5499,5500,4], +[0,-812,-1504], +[0,-932,-943,-968,-974,-1405,-1501,-1508,-1654,-2198,-2293], +[0,-1501,-5401,-10467,-10468], +[1,3,5502], +[0,5503,5504,5505,10], +[0,-812,-1335,-1504,-1851], +[0,-1501,-1788,-668,-1344,-1654,-932,-1053,-2293,-10469,-2094,-1534,-86,-1448,-2099,-978,-3307], +[0,-1501,-5401,-10470,-3122], +[1,3,5507], +[0,5508,5509,5510,11], +[0,-812,-10471], +[0,-932,-943,-958,-966,-968,-974,-1405,-1501,-1654,-2293], +[0,-1501,-5401,-6656,-5142,-10472], +[1,3,5512], +[0,5513,5514,5515,4], +[0,-1717,-1974,-10473,-2071,-2550,-1548,-2286,-1004,-617,-10474], +[0,-664,-510,-1654,-2210,-2198,-2293,-710], +[0,-5418,-1986,-8615,-2071], +[1,3,5517], +[0,5518,5519,5520,4], +[0,-10475,-834,-932,-10476,-10477,-986,-10478,-1276,-1309,-1458,-1459,-1650,-2172,-2231,-2234,-2297,-10479], +[0,-707,-10480,-963,-10481,-2125,-2177], +[0,-4004], +[1,3,5522], +[0,5523,5524,5525,5], +[0,-5895], +[0,-519,-2177,-10482,-2384,-2541], +[0,-10483,-9318,-1764,-7861,-5897,-10484,-10485,-3551], +[1,3,5527], +[0,0,5528,5529,4], +[0,-1464,-10486,-589,-10487,-10488,-1414,-1446,-1548,-1627,-1963,-10489,-2111,-10490,-2424], +[0,-9826,-5112,-6187,-6188,-2444], +[1,3,5531], +[0,0,5532,5533,9], +[0,-2247,-1344,-1471,-1654,-2210,-932,-10491,-2127,-10492,-10493,-2416,-1482,-1489,-1534,-10494,-10495,-10496,-1480,-4062, +-1478,-10497,-1475,-1487,-1479,-1486,-10498,-10499], +[0,-10500,-6917], +[1,3,5535], +[0,0,5536,5537,10], +[0,-589,-1023], +[0,-1519,-10501,-7210,-10502,-2265,-10503], +[1,3,5539], +[0,0,5540,5541,6], +[0,-8511], +[0,-7210,-10504,-5538,-3276], +[1,3,5543], +[0,5544,0,5545,8], +[0,-1787,-1371,-2323,-1866,-2247,-2446,-668,-999,-1392,-1826,-2218,-4701,-2550,-10505,-815,-9809,-1831,-2125,-2177,-914, +-1442,-1827,-2346,-10506,-1077,-1098,-1376,-1591,-10507,-5917,-10508,-715,-1399,-1418,-1645,-10509,-293,-1100,-1686, +-2654,-2410,-10510,-755,-1108,-10511,-10512,-2202,-1363,-10513,-1769,-10514,-2115,-10515,-2267,-2551,-10516,-305,-8500, +-4236,-10517,-10518,-10519,-1767, +-280,-10520,-10521,-2530,-283,-1770,-4283,-4716,-2450,-10522,-10523,-10524,-10525,-10526], +[0,-1520,-10440,-10527], +[1,3,5547], +[0,5548,5549,5550,6], +[0,-10528,-8501,-2387], +[0,-350,-4062,-351,-427,-428,-10529,-10530,-664,-652,-668,-755,-767,-932,-1077,-6720,-1107,-1111,-1127,-1132,-1134,-1137, +-1152,-1161,-1162,-10531,-1418,-10532,-10533,-9237,-1646,-1654,-10534,-1771,-1856,-10535,-1874,-1961,-10536,-2114,-2127, +-2140,-2142,-2177,-2200,-2351,-2379,-2410,-5252], +[0,-10537,-10538,-10539,-775,-10540,-10541,-10542,-10543,-10544,-1521,-10545,-10546,-4730,-10547,-3215,-3277,-10548, +-10549,-5553,-3770,-3271,-10550,-10551], +[1,3,5552], +[0,0,5553,5554,4], +[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-533,-767,-774,-824,-825,-932,-940,-6929,-958,-959,-965,-967,-978,-1110,-1344, +-1415,-1521,-10552,-1534,-1623,-1771,-1942,-2251,-2269,-2411,-2501], +[0,-2501,-5932,-1521,-10546,-10545,-775,-3277], +[1,3,5556], +[0,5557,5558,229,4], +[0,-10553,-10554,-10555], +[0,-1788,-2322,-2446,-468,-571,-1274,-2250,-2410,-3037,-40,-10556,-10557], +[1,3,5560], +[0,5561,5562,5563,8], +[0,-10559,-6127,-10560], +[0,-10561,-1788,-1107,-2322,-2331,-1032,-2125,-5420,-891,-1274,-1733,-2250,-767,-10562,-10563,-6128,-10564,-10565,-829, +-10566,-10567], +[0,-10558,-1523], +[1,3,5565], +[0,5566,5567,229,11], +[0,-9508,-10568,-10569,-10570,-10571,-10572], +[0,-1788,-2322,-465,-2210,-468,-1032,-5420,-10573,-10574,-1274,-2250,-10562,-633,-2151,-10575,-10576,-725,-10577,-10578, +-829,-10556,-10567], +[1,3,5569], +[0,0,5570,5571,11], +[0,-519,-10579,-10580,-10581,-10582,-10583,-10584,-1703,-10585,-2354,-2541], +[0,-1526,-10582,-10586,-10587,-2265,-7377,-834,-5922,-1087,-6547,-4310,-7378,-10588,-10589,-5554,-5572,-10590], +[1,3,5573], +[0,5574,29,5575,10], +[0,-280,-4280,-10591,-834,-1645,-1767,-1831,-2323], +[0,-1764,-1776,-4303,-687,-834], +[1,3,5577], +[0,5578,5579,5580,5], +[0,-280,-4283,-283,-680,-1767,-1831,-1957,-10592,-2059,-2177,-2202,-4297], +[0,-4298,-4299,-4300,-4286,-668,-7755,-10593,-2319], +[0,-1764,-1776,-4303,-687,-4304,-1528], +[1,3,5582], +[0,5583,29,5584,5], +[0,-280], +[0,-1764,-1776,-4303,-687,-5889,-10594,-10595], +[1,3,5586], +[0,0,5587,5588,4], +[0,-21,-23,-3367,-3350,-40,-43,-4062,-3266,-539,-664,-757,-10596,-767,-10597,-1405,-1415,-10598,-10599,-1646,-1654,-1771, +-1788,-10600,-2104,-2125,-2127,-2387], +[0,-9917,-9918,-6240,-3962,-3162,-10601], +[1,3,5590], +[0,5591,5592,5593,6], +[0,-1015,-1048,-10602,-10603,-1396,-2068,-2114], +[0,-711,-932,-937,-940,-966,-1001,-1654,-1788,-2210], +[0,-4376], +[1,3,5595], +[0,0,5596,5597,4], +[0,-2581,-3136,-3037,-3806,-755,-1415,-2410,-2447], +[0,-755,-727,-3870,-7282], +[1,3,5599], +[0,0,0,5600,6], +[0,-10604,-7920,-10605,-3264,-1437,-10606,-10607,-2006,-2398,-2435], +[1,3,5602], +[0,5603,5604,5605,8], +[0,-719,-1536,-1639,-3610,-3535,-2548], +[0,-8280,-50,-86,-3307,-190,-3664,-6593,-10608,-767,-932,-940,-965,-967,-4814,-1344,-1661,-1942,-2177,-2410,-2469], +[0,-7148,-5889,-10609,-932,-1942,-2281,-707,-8169,-7440,-3276,-5874], +[1,3,5607], +[0,5608,5609,5610,4], +[0,-10610,-10611,-1398,-1399,-10612,-10613,-10614,-1826,-2153], +[0,-708,-826,-9464,-1534,-1574,-1788,-1939,-2239,-5747], +[0,-687,-4107,-4108,-4109,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], +[1,3,5612], +[0,5613,5614,158,6], +[0,-696,-713,-996,-1575,-2124,-2528], +[0,-5745,-2153,-5747], +[1,3,5616], +[0,5617,5618,7,8], +[0,-10615,-10616,-3297], +[0,-10617,-10618,-4686,-10619,-4690,-2387], +[1,3,5620], +[0,5621,5622,5623,5], +[0,-1548,-1646,-632,-10620,-731], +[0,-1654,-2210,-932,-1663,-1405], +[0,-475,-6205,-5142,-3844,-3113], +[1,3,5625], +[0,5626,5627,5628,6], +[0,-1812,-754,-2178,-714,-1676,-729,-679,-10621,-2186,-994,-1792,-10622,-9502], +[0,-1654,-932,-1452,-2293], +[0,-3577,-3113,-3673,-3844,-1334,-687], +[1,3,5630], +[0,5631,5632,7,4], +[0,-679,-10623,-6696,-2531], +[0,-711,-1654,-2198,-2210], +[1,3,5634], +[0,5635,5636,5637,4], +[0,-6838,-1107,-10532,-1442,-9641,-1542,-1548], +[0,-1127,-1144,-1149,-9650,-9280,-1158,-1972,-2210], +[0,-9219,-2548,-6838,-1127,-727], +[1,3,5639], +[0,5640,5641,5642,4], +[0,-506,-1686,-1872,-10624], +[0,-1127,-1132,-2889,-2541], +[0,-3015,-1107,-1127,-6994,-5572,-10625,-5574,-4792,-8906], +[1,3,5644], +[0,0,5645,7,6], +[0,-756,-932,-966,-1415,-1942,-2251], +[1,3,5647], +[0,5648,5649,5650,4], +[0,-10293,-1586,-10626,-10627,-10628,-10629,-10630,-10631,-2783,-10632,-10633,-10634,-10635,-10636,-10637,-10638,-10639], +[0,-1729,-2337], +[0,-7646,-3844,-3578,-3673,-3577,-3113,-754,-1640,-3691,-4215,-3690,-1971,-1586,-3445,-3100,-10640,-1339,-1334,-5735, +-1342], +[1,3,5652], +[0,5653,5654,5655,4], +[0,-10347], +[0,-527,-528,-534,-535,-6079,-559,-10641,-571,-10642,-647,-754,-940,-1127,-5974,-1130,-1136,-1137,-1148,-1149,-10643, +-1152,-1655,-10644,-7845,-1161,-10645,-7848,-1344,-1534,-1542,-1654,-1942,-10646,-5508,-2410,-2416,-2501,-2505], +[0,-10647,-10648,-6005,-10649], +[1,3,5657], +[0,5658,27,7,11], +[0,-523,-812,-10650,-2550], +[1,3,5660], +[0,5661,5662,5663,4], +[0,-755,-812,-1026,-10651,-2550], +[0,-528,-6048,-554,-558,-559,-849,-869,-932,-943,-958,-959,-966,-968,-972,-974,-1415,-1806,-10652,-2177], +[0,-10653,-10654,-5880,-10655,-7148,-2552,-1764,-8170,-7107,-1838], +[1,3,5665], +[0,0,0,5666,4], +[0,-3209,-10656,-2444], +[1,3,5668], +[0,0,0,5669,4], +[0,-3184,-3209,-10656,-2444], +[1,3,5671], +[0,0,0,5672,10], +[0,-10657,-7370], +[1,3,5674], +[0,0,0,5675,4], +[0,-10657,-656], +[1,3,5677], +[0,0,0,5678,5], +[0,-10657,-10658], +[1,3,5680], +[0,0,0,5681,4], +[0,-10657,-811], +[1,3,5683], +[0,0,0,5684,5], +[0,-10657,-10659], +[1,3,5686], +[0,0,0,5687,5], +[0,-10657,-5841], +[1,3,5689], +[0,0,0,5690,5], +[0,-10657,-6283], +[1,3,5692], +[0,0,0,5693,9], +[0,-10657,-9052], +[1,3,5695], +[0,0,0,5696,9], +[0,-10657,-10660], +[1,3,5698], +[0,0,0,5699,4], +[0,-10657,-10661], +[1,3,5701], +[0,0,0,5702,4], +[0,-10657,-10662], +[1,3,5704], +[0,0,0,5705,4], +[0,-1548,-10657,-10656,-2444], +[1,3,5707], +[0,0,0,5708,5], +[0,-10657,-10663], +[1,3,5710], +[0,0,0,5711,4], +[0,-10657,-10664], +[1,3,5713], +[0,0,0,5714,4], +[0,-10657,-6917], +[1,3,5716], +[0,0,0,5717,10], +[0,-10657,-5913], +[1,3,5719], +[0,0,0,5720,4], +[0,-10657,-1631], +[1,3,5722], +[0,0,0,5723,4], +[0,-10657,-10665], +[1,3,5725], +[0,0,0,5726,5], +[0,-10657,-10666], +[1,3,5728], +[0,0,0,5729,5], +[0,-10657,-8127], +[1,3,5731], +[0,5732,0,5733,4], +[0,-9496,-9497], +[0,-10657,-3110], +[1,3,5735], +[0,0,0,5736,5], +[0,-10657,-7329], +[1,3,5738], +[0,0,0,5739,4], +[0,-10657,-10667], +[1,3,5741], +[0,5742,5743,5744,5], +[0,-6703,-8038,-922,-7219,-10668,-10669,-10670], +[0,-1788,-2322,-1344,-10671,-932,-4896,-10672,-1534,-6707,-6709,-6706,-6708], +[0,-1573,-3444,-812,-648,-2520], +[1,3,5746], +[0,5747,5748,5749,5], +[0,-8416,-6861], +[0,-2541,-519,-2384,-2269], +[0,-4112,-687,-7095,-3958,-8132,-8618,-8619,-8620,-1040,-8621,-7084,-1573,-5545,-3974,-3973], +[1,3,5751], +[0,5752,5753,5754,4], +[0,-480,-690,-2219,-2269,-2528], +[0,-3037,-2267,-10673,-2384,-6786,-2541], +[0,-1573,-3444,-5545,-687,-3974,-4110,-4000,-5550,-10674,-10675,-10676,-8991,-3973,-1959,-10677,-5176], +[1,3,5756], +[0,5757,5758,5759,5], +[0,-10678,-812,-7142,-2124,-10679], +[0,-86,-3307,-10680,-5902,-9818,-932,-934,-940,-8246,-958,-967,-1077,-1344,-1392,-1788,-1942,-1972,-2319,-2410], +[0,-5545,-1573,-6459,-3966], +[1,3,5761], +[0,0,5762,5763,5], +[0,-9569,-3037,-1127,-1132,-1134,-1136,-1137,-10681,-1144,-1148,-1149,-10682,-10683,-1412,-2379,-2410], +[0,-1573,-3444,-5545,-4865], +[1,3,5765], +[0,0,5766,5767,10], +[0,-6132,-1942,-2410], +[0,-10684,-1578,-10685], +[1,3,5769], +[0,5770,5771,5772,6], +[0,-888,-828,-10686,-510,-812,-10330,-1004,-10687,-583,-615,-1369,-1752,-617,-2185,-10688,-10689,-10690,-10691,-10692, +-2425,-10693,-10694,-10695,-10696], +[0,-1788,-664,-1127,-1471,-1654,-2210,-2518,-932,-756,-1132,-10697,-2293,-633,-838,-2211,-1155,-1482,-1152,-744,-10698, +-10699,-1010,-1130,-1156,-1472,-10700,-1149,-10701,-1148,-10354,-10702,-1475,-10355,-10703,-1479,-7707], +[0,-3578,-5728,-3691,-3690,-1004,-2118,-1501,-6120,-7107,-5378,-1691,-7684,-6857,-1671,-10704,-1682,-10425,-6321,-2227, +-10705,-3161,-3162,-10706], +[1,3,5774], +[0,5775,5776,196,5], +[0,-3187], +[0,-633,-913,-2319], +[1,3,5778], +[0,5779,5780,5781,9], +[0,-10707], +[0,-2392,-1344,-2331,-932,-1548,-825,-2379,-2410,-3037,-3044,-3617,-86,-10708,-10709,-5918,-10710,-3307], +[0,-7685,-7773,-891,-10711,-10712,-1055,-4182,-8427,-10713,-10714,-4865,-985], +[1,3,5783], +[0,0,5784,5785,5], +[0,-3037,-589,-928,-1610,-1650,-1942,-2319,-2386,-2402], +[0,-10715,-10413,-3324], +[1,3,5787], +[0,0,5788,5789,10], +[0,-3561,-407,-3667,-2127,-2132,-2410,-2466,-2469,-10716,-10717,-10718], +[0,-10719,-10720,-10721,-10722,-10723,-10724,-10725,-10726,-10727], +[1,3,5791], +[0,5792,5793,5794,9], +[0,-510,-596,-10728,-1696], +[0,-756,-1405,-1650,-1654,-1657,-2198], +[0,-6527,-640,-10729,-1958,-10095,-7069,-7068,-9235,-8640,-7715,-8642,-7066,-10730,-10731,-7334,-10732,-10733,-6337, +-10502,-10734,-10735,-10736,-4162,-10737,-10738,-10739,-10740,-10741], +[1,3,5796], +[0,5797,5798,5799,5], +[0,-10742,-10743,-6789,-10508,-717,-718,-10744,-10293,-1501,-10745,-1805,-1982,-6791,-7576], +[0,-1448,-10639,-1729,-10746,-2337], +[0,-1586,-3844,-1334,-5735,-1342,-3445,-1339,-7646,-3578], +[1,3,5801], +[0,5802,5803,5804,8], +[0,-668,-715,-812,-910,-5672,-10415,-10747,-1040,-1075,-1286,-10748,-1292,-1380,-1442,-10521,-10749,-1650,-1816,-1951, +-5353,-4242,-2098,-2101,-10750,-3669,-2359,-7699,-2427,-7669,-2429,-5356,-2446,-5358,-2518,-2530,-10751,-2550], +[0,-10752,-3198,-5334,-3660,-10753,-10754,-3037,-3628,-4231,-3738,-10755,-9284,-3041,-767,-8364,-2218,-2269,-2410,-2447], +[0,-1599,-10756,-10757,-3634,-856], +[1,3,5806], +[0,5807,5808,5809,8], +[0,-3115], +[0,-190,-351,-3561,-589,-8349,-740,-932,-1942,-2910,-2127,-2232,-2234,-2469], +[0,-2265,-10758,-6915,-7651,-6431], +[1,3,5811], +[0,5812,5813,5814,6], +[0,-2531,-523,-1449,-2387,-997,-1548,-1388,-3679,-7967], +[0,-932,-2402,-4204,-2410,-3037,-1771,-4647,-3044,-428,-4659,-10759,-427], +[0,-10760,-8911,-2410,-840,-4601,-9111,-3214,-10761,-10762,-10763,-10764,-10765,-9840,-10766,-10767,-7085,-10768,-10769, +-856,-10770,-10771,-1589], +[1,3,5816], +[0,5817,5818,5819,4], +[0,-668,-1015,-1111,-2462,-1686,-1849,-2271], +[0,-1127,-1654,-2198,-1132], +[0,-622,-1168,-7419,-9219], +[1,3,5821], +[0,0,5822,5823,4], +[0,-4035,-3037,-519,-1119,-10772,-2331,-2384,-2541], +[0,-8988,-1650,-9218,-7411,-7410,-7421,-7420,-1847,-8807,-6370,-10773,-10774,-7371,-8990,-1076,-7422,-7000], +[1,3,5825], +[0,0,0,5826,5], +[0,-9218], +[1,3,5828], +[0,5829,5830,5831,4], +[0,-4733,-503,-578,-615,-10775,-1468,-10776,-1850,-2424,-2538], +[0,-3037,-633,-10777,-10778,-932,-10779,-1654,-2330,-2410,-2416], +[0,-8703,-3264,-10780,-10781,-1599,-3437], +[1,3,5833], +[0,5834,5835,5836,6], +[0,-3698,-6486,-10782,-10783,-10784,-10785,-10786,-10787,-10788,-10789,-469,-583,-668,-3910,-3911,-693,-9229,-9759,-1442, +-1465,-1540,-1658,-1692,-1729,-1753,-1851,-1857,-1878,-2080,-2153,-2193,-2223,-2245,-2409,-10790,-2435], +[0,-10791,-10792,-4353,-10793,-10794,-2980,-8850,-10795,-3617,-3660,-4201,-5363,-4203,-427,-428,-932,-940,-967,-1076, +-1415,-1847,-1942,-2234,-2293,-2375,-2376,-2383,-2410], +[0,-3445,-3690,-3691,-3967,-2410,-7685,-10796,-10797,-7643,-10798,-10799,-10800,-10801,-10802,-3742,-10425,-1691,-2409, +-5406,-6120,-3173,-10803,-6005,-5940,-10804,-10805,-10806,-10807,-10808,-10809,-6113,-10810,-1594], +[1,3,5838], +[0,0,5839,5840,5], +[0,-3244,-2658,-250,-252,-254,-10811,-10812,-3044,-3037,-3040,-3052,-427,-428,-703,-784,-932,-10813,-970,-1548,-2634, +-1889,-1891,-1906,-10814,-10815,-1942,-2006,-2019,-2193,-4245,-2592,-2391,-2410], +[0,-3160,-10816,-10817,-3824,-10818,-10819,-2006,-10820,-2410,-3214,-3577,-3100,-3477,-3160,-10821,-4015,-7566,-10822, +-3095], +[1,3,5842], +[0,0,5843,7,5], +[0,-8392,-8394,-8393,-994,-8388], +[1,3,5845], +[0,0,5846,5847,6], +[0,-3037,-427,-428,-3664,-518,-652,-932,-935,-948,-1449,-10823,-2162,-2281,-3436,-2410,-2466,-6859,-2469], +[0,-10824,-3004,-3862,-10825,-5553], +[1,3,5849], +[0,5850,71,5851,4], +[0,-1758], +[0,-1599,-10826,-3272], +[1,3,5853], +[0,5854,5855,5856,5], +[0,-503,-3223,-10827,-10828,-10829,-10830], +[0,-3326,-350,-351,-3266,-5514,-589,-652,-664,-932,-943,-1004,-1103,-1304,-1429,-3245,-1602,-3650,-1603,-3427,-10831, +-10832,-10833,-10834,-3651,-3668,-1654,-10835,-1708,-2127,-2195,-2293], +[0,-1599,-3215,-8630,-1600,-10836], +[1,3,5858], +[0,0,5859,5860,8], +[0,-3234,-519,-3425,-1637,-2234,-2250], +[0,-1599,-1600,-10836,-5147,-10837], +[1,3,5862], +[0,0,230,5863,5], +[0,-10836,-1600,-1599], +[1,3,5865], +[0,0,230,5866,8], +[0,-10836,-1600,-1599,-10838,-10839,-10840,-10841], +[1,3,5868], +[0,5869,5870,5871,4], +[0,-719,-883,-1015,-1304,-1860,-2102,-10842,-2347,-2359], +[0,-756,-1405,-10843,-2250,-2322], +[0,-1599,-6528,-5845,-3110], +[1,3,5873], +[0,0,5874,5875,4], +[0,-3037,-652,-668,-1942,-2094,-2100,-2269,-2399,-2410,-2541], +[0,-9846,-1599,-10844,-4002,-6724,-5554], +[1,3,5877], +[0,0,5878,5879,11], +[0,-7057,-3037,-3040,-3052,-10845,-928,-2006,-2019,-2034,-10106,-10846,-2410,-2476], +[0,-1599,-10847,-2006,-1940,-4146,-2476,-5173,-3944,-9608,-10848,-2034,-3264], +[1,3,5881], +[0,5882,88,5883,4], +[0,-725,-10849,-1125,-10850,-10851,-10852,-1646,-10853,-9323,-2102,-10854,-9403], +[0,-10837,-8630,-3671,-10855,-856,-10856,-10857,-9409,-10858,-1599,-3437,-3862,-4328,-4846,-2102,-10859,-7650,-4065,-4002, +-10860,-10861,-10862,-6234], +[1,3,5885], +[0,5886,5887,5888,5], +[0,-1638,-10863,-10864,-10865,-10866,-10867,-10868,-10869,-2267], +[0,-190,-3748,-469,-519,-652,-2736,-932,-960,-965,-971,-978,-10870,-1111,-1442,-8274,-1461,-1600,-10831,-10834,-3651, +-10871,-8345,-1771,-2335,-2362,-2410,-2501,-2503], +[0,-1599,-7148,-3437,-10872,-1608], +[1,3,5890], +[0,5891,5892,5893,10], +[0,-719,-822,-1353,-1442,-1461,-10873,-1608,-1600,-1645,-10874,-10430,-2654], +[0,-519,-8345,-2541], +[0,-1599,-1608,-687,-5732], +[1,3,5895], +[0,0,5896,5897,4], +[0,-2832,-10875,-10876,-7040,-3471,-3472,-7041,-7042,-674,-8630,-767,-5382,-928,-10877,-932,-1304,-1600,-10878,-10879, +-10880,-2125,-2174,-9764,-2387,-2410], +[0,-1599,-10881,-3264], +[1,3,5899], +[0,5900,5901,163,4], +[0,-4321,-4322,-3649,-4323,-4309,-4320,-4308,-1395,-4313,-4318,-4314,-4315,-4311,-4316,-4319,-1550,-1554,-4317,-1600, +-1603,-4324,-4325,-3430,-4312,-2161,-4310], +[0,-633,-674,-1107,-4327,-1654,-4326,-2250,-2251], +[1,3,5903], +[0,5904,0,7,4], +[0,-891,-10882], +[1,3,5906], +[0,5907,0,160,10], +[0,-567,-10883,-1493,-1566,-1571,-1967,-10884,-2055,-2069,-10885,-2489], +[1,3,5909], +[0,5910,5911,5912,8], +[0,-44,-10886,-10300,-10887,-5898,-10888,-2172,-6751,-10889], +[0,-23,-5585,-3391,-38,-40,-43,-8380,-3621,-427,-428,-507,-534,-652,-708,-824,-10890,-920,-932,-940,-943,-958,-964,-965, +-967,-968,-1002,-10891,-1022,-1107,-1168,-1174,-1276,-10892,-1471,-1479,-1482,-1483,-1491,-3079,-1492,-1650,-1654,-1656, +-10893,-10894,-10895,-10896,-10897,-10898,-1942,-1958,-2210,-10899,-2354,-2379,-2410,-2501,-10900], +[0,-10684,-10901,-7163,-10902,-10903,-3215,-8130,-6240,-6245,-10904,-10905,-7521,-5119], +[1,3,5914], +[0,5915,5916,7,10], +[0,-6130,-10906,-5852], +[0,-1654,-2501], +[1,3,5918], +[0,0,5919,5920,9], +[0,-1654,-2250], +[0,-1616,-10907,-10908], +[1,3,5922], +[0,5923,5924,5925,4], +[0,-4251,-4231,-10909,-9596,-5348,-1638,-10910,-10911,-10912,-10913,-10869,-10914], +[0,-3037,-652,-10915,-928,-7324,-2586,-1290,-1619,-10916,-1942,-2094,-2100,-2334,-2399,-2410,-2541], +[0,-3272,-1599,-10881,-10917,-10918,-1838,-4132,-10919,-9590,-3590,-2444], +[1,3,5927], +[0,5928,5929,5930,5], +[0,-5334,-4251,-9581,-9596,-10920,-10921,-9583,-2429,-5358], +[0,-3037,-9586,-652,-1290,-1294,-1618,-10922,-10923,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-9590,-10918,-10917,-9589,-9588,-2444,-3590,-1599,-3264], +[1,3,5932], +[0,0,5933,5934,6], +[0,-469,-4712], +[0,-6582,-10924,-10925,-775], +[1,3,5936], +[0,5937,0,5938,5], +[0,-10926,-10927], +[0,-10928,-3324,-3323,-9844,-10929,-10930,-10931,-10932,-1622,-10933,-7684], +[1,3,5940], +[0,5941,5942,5943,4], +[0,-10934,-10935,-10936,-10937,-10938,-10939,-10940,-10941,-10942,-10943,-10944,-10945,-10946,-2387], +[0,-3136,-6325,-3037,-496,-507,-640,-1331,-1344,-10947,-1415,-1848,-1942,-1958,-2062,-2125,-2325,-2375,-2376,-2379,-2388, +-10948,-2410,-2435,-2444,-2501,-2503,-2505], +[0,-1076,-7422,-10949,-1626,-1623,-6656,-8801,-10467,-10412,-10950,-9614,-4004,-3634,-4215,-10951,-10952,-10953,-10954, +-10955,-10956,-10957,-10958], +[1,3,5945], +[0,0,5946,5947,5], +[0,-5295,-3268,-3136,-10959,-8216,-3037,-427,-428,-589,-767,-932,-940,-959,-967,-1002,-10960,-1415,-1559,-1565,-1605, +-10961,-5969,-9642,-10962,-1816,-1942,-2125,-2127,-2138,-2140,-2141,-2214,-2375,-2379,-2387,-2410], +[0,-5913,-10963,-3324,-6187], +[1,3,5949], +[0,0,5950,5951,5], +[0,-664,-1168,-2210,-10964,-1231,-2211,-1224,-1220,-1453], +[0,-3324,-10965,-5493,-6005], +[1,3,5953], +[0,5954,5955,5956,8], +[0,-10966,-2062], +[0,-599,-6774,-756,-932,-1405,-1654,-2198], +[0,-1076,-10412], +[1,3,5958], +[0,0,5959,5960,5], +[0,-1003,-1654,-1127,-1132,-1156,-1144,-1980], +[0,-10412,-4004,-5827,-3674,-8027,-640], +[1,3,5962], +[0,0,5963,7,4], +[0,-1654,-2198,-1733], +[1,3,5965], +[0,68,15,16,6], +[1,3,5967], +[0,0,5968,5969,5], +[0,-350,-4062,-351,-5918,-5686,-519,-10967,-722,-813,-10968,-10969,-999,-1111,-1366,-10970,-6904,-3609,-2060,-5120,-2127, +-2132,-2134,-4621,-10971,-2384,-2400,-2410,-2541,-2551], +[0,-687,-8425,-2444,-3590,-4187,-4378,-3957,-6722,-1630,-10972,-10973,-3215,-5829,-5272,-3962,-7095,-4000], +[1,3,5971], +[0,0,5972,5973,4], +[0,-3035,-3621,-3037,-664,-726,-1654,-2410,-2501,-2503], +[0,-1631,-7371,-1015,-702,-7208,-4865], +[1,3,5975], +[0,0,5976,7,4], +[0,-10974,-1405], +[1,3,5978], +[0,5979,5980,5981,4], +[0,-679,-719,-812,-1125,-6796,-10975,-1639,-10976,-10977], +[0,-3244,-190,-10978,-4715,-3198,-4036,-3037,-10979,-652,-932,-958,-965,-1110,-1654,-1942,-2091,-2362,-2410], +[0,-5142,-5372,-6656,-9204,-3258,-3260,-3262,-1599,-3259,-1633,-2548], +[1,3,5983], +[0,5984,0,7,10], +[0,-10980,-5676,-1343,-10981,-10982,-2125,-2177,-2323,-2359], +[1,3,5986], +[0,5987,5988,7,8], +[0,-2453,-812,-1636,-1840], +[0,-1654,-932,-1405,-2293,-966,-958,-968,-943,-963,-974], +[1,3,5990], +[0,0,5991,5992,5], +[0,-1654,-1405], +[0,-1334,-1636], +[1,3,5994], +[0,5995,5996,5997,11], +[0,-23,-26,-10983,-3077,-3203,-3408,-3357,-40,-6056,-41,-4066,-3326,-350,-4062,-351,-10984,-10985,-518,-3766,-10986, +-10987,-9459,-644,-656,-930,-1044,-1273,-1496,-1566,-1889,-1948,-2127,-5994,-4753,-2140,-2142,-2144,-5037,-2334,-10988, +-2387,-2410], +[0,-21,-5870,-10989,-8280,-50,-533,-767,-10990,-932,-10991,-940,-967,-985,-1077,-1344,-1415,-1534,-10992,-1942,-2082, +-2125,-2194,-2269], +[0,-4161,-2127,-10993], +[1,3,5999], +[0,6000,0,6001,4], +[0,-3198,-812,-10909,-9596,-10863,-10994,-7666,-10995,-10996,-10910,-2785,-10912,-10997,-10920,-10998,-10913,-10869], +[0,-8630,-3116,-4329,-3264,-7184,-1599,-10881,-3437,-2427,-1838,-3215,-3862,-1958,-2093,-7650,-4065,-8451,-3579], +[1,3,6003], +[0,6004,6005,6006,5], +[0,-9968,-1864], +[0,-1654,-1645,-10999,-1202], +[0,-6836,-11000,-11001,-7727,-11002,-8130,-9969,-11003,-6656,-6999,-7724,-5573,-1107,-9095,-9096,-9970,-11004,-11005, +-11006,-5572,-5912,-3581,-10590,-1639,-1645,-1686,-11007,-11008,-1847,-5574,-5064,-11009,-5569,-5570,-8129,-5550,-11010, +-9087], +[1,3,6008], +[0,0,6009,6010,4], +[0,-11011,-3713,-3037,-427,-428,-668,-11012,-1641,-1942,-11013,-11014,-2410], +[0,-5195,-6656,-1640,-11015,-11016,-2444], +[1,3,6012], +[0,6013,129,6014,10], +[0,-11015], +[0,-1640,-3694], +[1,3,6016], +[0,119,120,6017,4], +[0,-11017,-11018,-11019,-11020,-11021,-11022,-11023,-11024,-11025,-11018,-11026,-11027,-11028,-11029,-11030,-11031,-11032, +-11033,-11034,-11035,-11036,-9234,-11037,-11038,-11039,-11040,-11041,-11042,-11043,-11044,-11045,-11046,-7530,-11047, +-11048,-7561,-7562,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-11049,-7283,-6582,-7534,-7535,-7536,-7537,-7538, +-7539,-7540,-7541,-7542,-7543,-7544,-7545,-8807,-6599,-5756, +-11050,-11051,-7503,-7371,-7546,-7547,-7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558, +-7559,-5063,-7560,-11052,-6187,-7563,-856,-7275], +[1,3,6019], +[0,6020,6021,6022,11], +[0,-2168,-2321], +[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-3037,-620,-767,-774,-778,-824,-825,-920,-932,-940,-6929,-958,-959,-960,-965, +-967,-978,-1041,-1110,-1344,-1415,-1419,-1449,-1534,-1623,-1771,-1942,-2162,-2163,-2251,-2410,-2411,-2501,-2503,-2505], +[0,-2501,-775,-7347,-6211], +[1,3,6024], +[0,6025,6026,6027,5], +[0,-11053,-367,-683,-11054,-812,-928,-1047,-11055,-3751,-11056,-11057,-2334,-11058,-11059], +[0,-11060,-932,-11061,-11062,-4653,-11063], +[0,-1644,-7173,-3756,-775,-5094,-3264,-6118], +[1,3,6029], +[0,6030,6031,7,11], +[0,-11064], +[0,-2319,-2386,-1650,-2402,-1942,-3037], +[1,3,6033], +[0,0,6034,6035,4], +[0,-515,-1788,-2322,-932,-1777,-1365,-516,-2156,-5834], +[0,-4378,-9568,-3215,-1813], +[1,3,6037], +[0,6038,6039,6040,4], +[0,-719,-1730], +[0,-8477,-1415,-1942,-2375,-2410], +[0,-11065,-11066,-11067], +[1,3,6042], +[0,0,6043,6044,9], +[0,-11068,-3037,-5866,-652,-940,-1942,-2319,-2379,-2402,-2410], +[0,-8988,-7421,-11069,-9218,-11070,-7371,-5269], +[1,3,6046], +[0,6047,6048,7,5], +[0,-461,-1852,-6568,-11071], +[0,-3037,-3664,-672,-932,-944,-3190,-1431,-1942,-6570,-2410,-2423,-2469], +[1,3,6050], +[0,0,6051,6052,4], +[0,-23,-26,-33,-38,-40,-42,-44,-11072,-1059], +[0,-1652,-11073,-5927,-3159,-2006,-3476,-11074,-6106,-11075,-11076,-11077,-11078], +[1,3,6054], +[0,6055,6056,6057,5], +[0,-11079], +[0,-1652,-11079,-11080], +[0,-1652,-11073,-3159,-2006,-3476,-11074], +[1,3,6059], +[0,6060,6061,6062,4], +[0,-1297,-1681,-834,-1107,-812,-2550,-1047,-1442,-679,-1645,-1863,-3730,-1574,-2551,-11081,-7408,-2297,-11082,-2271,-930, +-2182], +[0,-1788,-664,-1498,-1446,-1471,-2210,-11083,-932,-1708,-2093,-2125,-2127,-2177,-1110,-11084,-2501,-1942,-767,-190,-11085, +-2410,-11086,-3037,-1339,-1482,-1600,-2503,-3041,-711,-1607,-1772,-4655,-27,-11087,-11088,-11089,-11090,-965,-3781,-1609, +-11091,-3425,-1603,-3060,-1601,-4062,-11092,-4066,-1483,-1488,-1475,-350,-11093,-2144,-5995,-2136,-351,-9701,-11094, +-11095], +[0,-1654,-4004,-3440,-4873,-2319,-3634,-664,-5855,-519,-1415,-2322,-1412,-1471], +[1,3,6064], +[0,6065,6066,6067,6], +[0,-4377,-1978], +[0,-664,-1654,-10534,-2410], +[0,-1654,-3636,-1978,-11096], +[1,3,6069], +[0,6070,6071,6072,5], +[0,-812,-1616,-1650,-2269,-6597], +[0,-357,-664,-11097,-932,-1654,-2125,-11098,-11099], +[0,-1654,-11100,-6863], +[1,3,6074], +[0,0,0,6075,11], +[0,-1654,-6863,-11101,-4005], +[1,3,6077], +[0,0,6078,6079,5], +[0,-664,-932,-9072,-1654,-2125,-2177], +[0,-4215,-1076,-4004,-8101,-8801,-10412], +[1,3,6081], +[0,6082,6083,6084,8], +[0,-11102,-1083,-11103,-11104,-1285,-1402,-1794], +[0,-2832,-5834,-8084,-11105,-11106,-11107,-11108,-11109,-8088,-11110,-8089,-8939,-8090,-8091,-8092,-8093,-3037,-11111, +-8094,-8096,-516,-5835,-921,-932,-993,-1065,-1283,-1365,-1777,-1788,-2156,-2322], +[0,-3634,-4215,-7208,-7153,-5846,-11112,-4004,-6693,-11113], +[1,3,6086], +[0,6087,6088,231,4], +[0,-5505,-1759], +[0,-767,-932,-1654], +[1,3,6090], +[0,0,27,6091,6], +[0,-4004,-4215,-3966,-1076,-3972], +[1,3,6093], +[0,0,6094,6095,5], +[0,-1654,-2127,-2142,-2198,-2410], +[0,-4121,-4215,-4004], +[1,3,6097], +[0,0,6098,6099,6], +[0,-1405,-1452,-2210,-11115,-2471], +[0,-4215,-8611,-4792,-3551,-3324,-5119,-4004,-11116,-3634,-4873], +[1,3,6101], +[0,75,6102,6103,5], +[0,-1168,-1190,-11117,-1220,-1224,-1231,-11118,-1452,-1453,-2501], +[0,-4215,-11119,-11120], +[1,3,6105], +[0,6106,6107,6108,4], +[0,-4377,-1107,-1496,-1548,-11121,-1582,-1729,-995,-11122,-11123], +[0,-1435,-2384,-11124,-1415,-1680,-11125,-1867,-812,-11126,-648,-11127,-865,-932,-1576,-11128,-473,-1388,-1753,-11129, +-2379,-2520,-11130,-11131,-1417,-11132,-1942,-756,-11133,-1418,-1765,-2293,-11134,-1969,-2410,-11135,-3037,-11136,-11137, +-11138,-11139,-11140,-11141,-11142,-11143,-10453,-11144,-11145,-966,-11146,-357,-11147,-968,-940,-967,-972], +[0,-11148,-6209,-3161,-3445,-11149,-7586,-11150,-11151,-5078,-9840,-11152], +[1,3,6110], +[0,0,6111,6112,5], +[0,-1989,-2127,-767,-2410,-3037,-1488], +[0,-1666,-4121,-4123,-1838,-3276,-5874,-1348,-9772,-11153], +[1,3,6114], +[0,6115,6116,6117,4], +[0,-1666], +[0,-1127,-1134,-1144,-1146,-1148,-10264,-2410], +[0,-1666,-4121,-4123,-11154,-11155,-11156,-11157,-11158], +[1,3,6119], +[0,6120,6121,6122,5], +[0,-1461,-11159,-11160,-11161,-11162,-1848,-1942,-11163,-11164,-11165,-2548], +[0,-11166,-2970,-3664,-928,-9002,-1874,-2094,-11167,-2410,-2469,-11168], +[0,-3496,-3100,-3577,-11169,-9002,-2548], +[1,3,6124], +[0,0,6125,6126,10], +[0,-190,-3037,-3664,-932,-940,-972,-978,-1942,-2125,-2402,-2405,-7322,-2410,-2411,-2466,-6859,-2469], +[0,-11170,-11171,-11172,-5829,-11173,-3577,-3445], +[1,3,6128], +[0,6129,6130,6131,8], +[0,-6779,-11174,-6780,-6777,-11175,-6776,-8843,-11176,-11177,-2997,-11178,-617,-620,-11179,-637,-709,-719,-744,-767,-787, +-865,-919,-1004,-4206,-1010,-1055,-11180,-11181,-1320,-1437,-3725,-1635,-1671,-11182,-1676,-1863,-11183,-2185], +[0,-23,-32,-40,-11184,-11185,-534,-664,-684,-726,-748,-778,-795,-932,-934,-958,-978,-11186,-1041,-1344,-1654,-11187,-1734, +-1753,-2275,-2293,-2501,-2503], +[0,-8856,-11188,-7558,-7685,-11189,-3964,-11190,-11191,-6857,-1671,-11192,-11193,-11194], +[1,3,6133], +[0,6134,6135,6136,8], +[0,-637,-11195,-11196], +[0,-1788,-2384,-11197,-664,-668,-1654,-2210,-11198,-2550,-932,-2177,-11199,-1004,-1442,-2379,-1942,-2211,-2410,-3241, +-3035,-3037,-667,-11200,-3621,-4372,-11201,-3199,-3617,-11202,-11203,-11204,-11205,-3625,-11206,-11207,-2234,-964,-977, +-940,-967,-264,-262,-428,-11208,-6424,-9724,-11209,-427,-4814,-234], +[0,-1671,-9879,-5041], +[1,3,6138], +[0,6139,6140,6141,10], +[0,-11210,-1671,-11211,-11212,-1681,-11213], +[0,-11214,-11215,-3037,-11216,-11217,-11218,-469,-652,-674,-7743,-932,-5984,-1004,-1077,-1304,-9150,-1559,-11219,-8554, +-1610,-1650,-1654,-1666,-11208,-11187,-11220,-1705,-1974,-2210,-2655,-2410,-2411,-2446], +[0,-1671,-10855,-6106,-4058,-7685,-11221,-6582,-11222,-5101,-7684,-1818,-7773], +[1,3,6143], +[0,6144,232,6145,5], +[0,-763,-727,-573,-2228,-2424,-2229,-11223], +[0,-1673,-11224,-11225,-8841,-11226,-11227], +[1,3,6147], +[0,6148,232,6149,5], +[0,-727,-729,-1673,-11228,-11223], +[0,-1673,-11229,-11224,-11225,-11230,-5412,-8841,-11231], +[1,3,6151], +[0,6152,6153,6154,8], +[0,-11232,-812,-1671,-11233,-11234,-11235,-11236,-11237,-11238,-1792], +[0,-519,-708,-932,-943,-950,-958,-966,-968,-974,-11239,-11240,-11241,-11242,-11243,-11244,-11245,-1788], +[0,-1675,-1671,-6857,-9879], +[1,3,6156], +[0,6157,6158,6159,5], +[0,-579,-812,-828,-1800,-6825], +[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2239,-2293], +[0,-1004,-1334,-3444,-5401], +[1,3,6161], +[0,44,15,16,10], +[1,3,6163], +[0,6164,6165,6166,10], +[0,-2531,-2124,-812,-11198,-2240,-11246,-11247,-1646,-4204,-1582,-11248,-725,-11249,-2062,-11250,-6279], +[0,-1788,-664,-2322,-2210,-932,-1109,-1650,-2125,-2198,-2226,-928,-1110,-2379,-679,-1942,-11251,-190,-1939,-2091,-2410, +-3035,-3037,-8096,-4372,-908,-11252,-11253,-3244,-11254,-5325,-3311,-4805,-11255,-958,-940,-967,-428,-740,-3312,-11256, +-427,-4646], +[0,-1680,-11257,-8403,-8404], +[1,3,6168], +[0,0,6169,7,8], +[0,-1344,-1654,-932,-1942,-1003,-1534], +[1,3,6171], +[0,6172,6173,6174,10], +[0,-11258,-719,-812,-10414,-10417], +[0,-86,-3307,-7040,-3472,-7041,-7042,-1654,-2174,-2250], +[0,-7685,-1682,-10424,-3844,-11259,-10704,-11260,-11261,-10417,-11262,-10704,-11263,-5800,-11264], +[1,3,6176], +[0,6177,6178,6179,11], +[0,-2946,-269,-4190,-11265,-743,-1122,-11266,-4193,-4194,-1851,-1863,-11267,-2255,-4195,-2364,-2400,-11268,-2550], +[0,-86,-3307,-11269,-3244,-190,-11270,-3316,-4196,-4197,-3983,-3617,-11271,-3037,-11272,-427,-428,-3310,-523,-5859,-720, +-767,-768,-796,-928,-3808,-932,-940,-967,-1004,-1030,-8151,-1107,-1449,-11273,-1498,-1534,-11274,-1942,-2910,-2082,-2125, +-3246,-2391,-2410,-2411,-2426,-2437,-2469,-4209,-2501,-4211,-1683], +[0,-3690,-4215,-4041,-8615,-10807,-3844,-5196,-8481,-3634,-3577,-4725], +[1,3,6181], +[0,6182,6183,6184,4], +[0,-11275,-649,-725,-1650,-1792,-2401,-2546], +[0,-821,-1004,-1069,-11276,-1654,-1788,-2125,-2250,-11277], +[0,-4053,-9751,-6463,-1069,-11278,-1004,-5401], +[1,3,6186], +[0,6187,14,6188,4], +[0,-9491,-11279,-1645], +[0,-7727,-5573,-1107,-9095,-9096,-5572,-5912,-1645,-5574,-5064,-9087], +[1,3,6190], +[0,6191,6192,6193,5], +[0,-2418,-1335,-2155], +[0,-1788,-11280,-1654,-932,-1650,-2125,-2291,-2108,-963], +[0,-6656,-7764,-1070,-5827,-5940], +[1,3,6195], +[0,6196,6197,6198,4], +[0,-5573,-1077,-1462,-1548,-3222,-1805,-2446], +[0,-1412,-1788,-11281,-2091], +[0,-793,-3264,-11282,-1688,-11283,-11284], +[1,3,6200], +[0,0,6201,6202,4], +[0,-985,-664,-2568,-1654,-932,-1452,-2127,-1978,-2416], +[0,-1689,-3110,-3261,-888], +[1,3,6204], +[0,0,6205,6206,10], +[0,-865,-1168,-1197,-1251,-1344,-1471,-1475,-1485,-1488,-11285,-11286,-1942,-10496,-1989,-2125,-2127,-2334,-11287], +[0,-4672,-3999,-11288,-7724,-7283,-7581], +[1,3,6208], +[0,6209,6210,7,11], +[0,-595,-2062,-2155,-11289], +[0,-465,-932,-2172,-11290,-11291,-11292], +[1,3,6212], +[0,6213,6214,6215,4], +[0,-1578,-9953,-10401,-1351,-11293,-11294,-11295,-11296], +[0,-652,-2392,-11297,-1110,-1942,-589,-767,-190,-1888,-2410,-3037,-11298,-3244,-3560,-3606,-940,-967,-428,-11299,-427, +-5706], +[0,-1691,-3323,-3844], +[1,3,6217], +[0,6218,6219,6220,11], +[0,-8993,-1792,-8994], +[0,-1405,-615,-1654], +[0,-8124,-1961,-11300,-11301,-3184], +[1,3,6222], +[0,0,6223,6224,4], +[0,-11302], +[0,-1784,-3966,-9318,-9800,-11303,-3966,-7304,-6845], +[1,3,6226], +[0,0,6227,7,4], +[0,-596,-719,-1107,-2105,-2062,-2319,-2546], +[1,3,6229], +[0,0,6230,6231,4], +[0,-2426,-3037,-2410], +[0,-11304,-6582,-2105,-4055,-7684,-11151,-1697,-7685], +[1,3,6233], +[0,6234,6235,6236,5], +[0,-3115,-781,-786,-11305,-10883,-11306,-7222,-3768], +[0,-4757,-4754,-4749,-3136,-3037,-3140,-3040,-932,-4650,-1344,-11307,-1415,-1520,-11308,-1534,-1942,-1967,-2006,-2019, +-2052,-2125,-2234,-2376,-2387,-2410,-2501,-2502,-2505,-2552], +[0,-775,-5553,-3770,-11309,-1697,-11310,-2006,-3756,-11311,-3771,-11312,-11313,-3095,-2278,-11314,-11315,-3271], +[1,3,6238], +[0,0,0,6239,8], +[0,-2446,-6555,-7231,-2435], +[1,3,6241], +[0,6242,6243,6244,4], +[0,-7872,-523,-893,-1077,-11316,-11317,-1577,-1705,-11318,-2160,-2234,-2359,-2550], +[0,-3198,-3048,-11319,-3136,-9143,-3037,-11320,-3628,-3041,-427,-428,-891,-932,-940,-967,-1415,-1874,-1942,-2125,-2376, +-2410,-2501,-2503], +[0,-11321,-891,-3994,-5269,-8911], +[1,3,6246], +[0,6247,6248,6249,6], +[0,-2531,-1816,-2323,-1430,-1805,-2446,-523,-712,-1875,-2550,-8898,-1548,-1576,-1610,-1650,-1831,-2177,-7680,-2519,-2536, +-987,-1966,-2195,-501,-679,-1942,-1981,-2378,-1645,-11322,-695,-2205,-2231,-2410,-11323,-3950,-11324,-11325,-11326,-8888, +-11327,-11328,-6294,-7772,-1982,-280,-11329,-11330,-11331,-742,-8880,-11332,-11333,-11334,-11335,-11336], +[0,-664,-1127,-1344,-1654,-2210,-10645,-1405,-4204,-5673,-3035,-3037,-3738,-1162,-1534,-4248,-11337,-11338,-4372,-3041, +-11339,-3044,-11340,-3199,-11341,-11342,-11343,-3735,-3714,-6114,-11344,-11345,-665,-1138,-2234,-1134,-1149,-11346, +-11347,-4269,-11348,-3202,-11349,-740], +[0,-1702,-2410,-3214], +[1,3,6251], +[0,6252,6253,6254,6], +[0,-11350,-11351,-11352,-865,-1339,-11353,-1672,-1857,-2071,-7967,-11354,-10899,-2424,-2446,-11355], +[0,-350,-4062,-351,-9705,-3037,-427,-11356,-767,-932,-9106,-958,-965,-968,-1168,-1222,-11357,-1412,-1413,-7148,-1705, +-1788,-11358,-1972,-2125,-2127,-2210,-2234,-2250,-2379,-6416,-2410,-11359,-2501,-7752], +[0,-11360,-11361,-7281,-11362,-11363,-3579,-11364,-11365,-11366,-11367,-11368,-11369,-11370,-11371,-11372,-11373,-11374, +-11375,-11376,-11377,-11378,-11379,-11380,-11381,-11382,-11383,-11384,-11385,-11386], +[1,3,6256], +[0,6257,6258,6259,9], +[0,-1371,-510,-2550,-11387], +[0,-1788,-2471,-932,-756,-11388,-2091,-4646], +[0,-3870,-11389,-11390], +[1,3,6261], +[0,0,6262,6263,5], +[0,-1654,-2125,-8986], +[0,-687,-6351], +[1,3,6265], +[0,0,6266,6267,5], +[0,-3037,-3040,-427,-428,-749,-932,-940,-967,-969,-970,-1380,-1942,-2387,-2410], +[0,-11391,-3486,-2006,-3994,-11392,-11393,-5069,-3445], +[1,3,6269], +[0,6270,6271,6272,4], +[0,-510,-1650,-2424,-1545,-11394], +[0,-664,-1654,-2210,-2105,-719,-11395], +[0,-7685,-11222,-10712], +[1,3,6274], +[0,6275,6276,6277,5], +[0,-1351,-2165], +[0,-1464,-7623,-1654,-1976,-1980,-2198,-2210,-2536], +[0,-1334,-1342,-5493,-2105,-3323,-6463,-7764,-1971,-6827,-7430,-9791,-9788,-743,-8937], +[1,3,6279], +[0,6280,0,6281,5], +[0,-11396,-11397,-719,-755,-1376], +[0,-687,-5406,-9668,-3957,-3958,-11398,-11313], +[1,3,6283], +[0,6284,6285,6286,8], +[0,-11399,-510,-11400,-5676,-695,-714,-719,-790,-1044,-11401,-1548,-1650,-11402,-11403,-11404,-11405,-1951,-2177,-11406, +-2524,-2538], +[0,-11407,-664,-829,-11408,-7829,-932,-960,-7819,-964,-972,-1442,-1654,-1722,-1788,-11409,-2070,-2188,-2195,-2210,-2536], +[0,-1710,-11410,-3690,-3634,-6657,-11411,-3691], +[1,3,6288], +[0,6289,6290,6291,4], +[0,-11412,-7603,-7604,-11413,-5038,-5777,-5775,-5791,-5779,-5778,-5780,-5782,-11414,-725,-1343,-11415,-11273,-1459,-11416, +-2062,-11417,-2177,-2522], +[0,-3698,-11418,-11419,-11420,-11421,-11422,-305,-11423,-11424,-11425,-469,-510,-521,-2917,-652,-5980,-719,-741,-6906, +-5983,-932,-960,-11426,-1107,-1116,-1344,-1446,-1534,-1547,-1722,-1969,-1972,-2125,-11427,-2210,-2291], +[0,-5805,-6187,-11230,-6032,-11428,-11429], +[1,3,6293], +[0,6294,6295,6296,5], +[0,-44,-11430,-743,-5193,-1791,-11431,-1940,-10105,-2446], +[0,-3168,-21,-23,-6064,-38,-40,-41,-42,-11432,-367,-7043,-406,-407,-409,-2622,-410,-3136,-3037,-11433,-11434,-3040,-3052, +-518,-11435,-11436,-726,-784,-1415,-1419,-1428,-1683,-2634,-1889,-1891,-1916,-2006,-2019,-2516], +[0,-2006,-3967,-1791,-3175,-11437,-3173,-1713,-7204,-3177,-11438], +[1,3,6298], +[0,0,0,6299,5], +[0,-2634,-510,-11439,-11440], +[1,3,6301], +[0,0,0,6302,10], +[0,-475,-4004,-3634,-4215,-4041,-3095,-8223,-11441,-11442,-5196,-11443,-11444,-3100,-3577,-1415,-1412,-915,-8611,-6137], +[1,3,6304], +[0,6305,0,6306,4], +[0,-5,-11445,-3946,-807,-2387], +[0,-3158,-3099,-475,-3160,-3161,-3100], +[1,3,6308], +[0,6309,6310,6311,4], +[0,-1116,-2446,-2548,-7004,-1018,-1552], +[0,-664,-668,-1654,-2210,-3037], +[0,-1716,-11446,-11447,-1546,-11448], +[1,3,6313], +[0,0,6314,7,10], +[0,-664,-729,-1654,-1974,-2187,-2286], +[1,3,6316], +[0,6317,6318,6319,6], +[0,-812,-11449,-10659,-891,-11450,-11451,-1451,-11452,-1650,-6810,-1801,-2125,-11453,-2240], +[0,-510,-579,-11178,-615,-664,-665,-932,-940,-967,-1004,-1344,-1654,-11454,-1685,-1880,-1942,-2187,-2239], +[0,-1718,-891], +[1,3,6321], +[0,6322,6323,6324,6], +[0,-11455,-11456,-11457,-3035,-11458,-6192,-5113,-6535,-623,-11459,-668,-680,-695,-11460,-11461,-865,-888,-914,-1107, +-1449,-1548,-1645,-1646,-1654,-11462,-1805,-1816,-8563,-2173,-2177,-11463,-2269,-2430,-2446], +[0,-99,-367,-3037,-427,-428,-749,-767,-932,-1344,-1392,-1442,-1534,-1656,-3038,-11464,-11465,-1663,-1722,-1788,-2006, +-2019,-2125,-2184,-2379,-2384,-2648], +[0,-1719,-11466,-11467,-3634,-11468,-2734,-4867,-11469,-4866,-3095,-4868,-4004,-4865,-3162,-4043,-5769,-793,-1654,-4864], +[1,3,6326], +[0,6327,6328,6329,8], +[0,-4884,-357,-11470,-7755,-1851], +[0,-4888,-11471,-633,-1344,-1449,-11472,-1534,-1654,-11473,-1788,-1942,-1972,-11474,-11475], +[0,-4004,-3634,-8959,-4215,-2533,-3844], +[1,3,6331], +[0,6332,6333,7,4], +[0,-11476,-269,-1459], +[0,-1116,-1788,-664,-1415,-1654,-2210,-932,-2125,-1942,-1069,-838,-1972,-2211,-2410,-1771,-6522,-2174,-966,-964,-357,-958, +-968,-940,-943,-3775], +[1,3,6335], +[0,0,6336,6337,11], +[0,-589,-596,-11477,-932,-1077,-2884,-1939,-2177], +[0,-11478,-11479,-6249,-5269,-596,-6251,-6252,-1696,-1723], +[1,3,6339], +[0,6340,6341,6342,4], +[0,-702], +[0,-1788,-1127,-1654,-2198,-756,-1132,-7845,-2410,-3037,-7887,-710,-11480,-9280,-1134,-1149,-11481,-11482], +[0,-3324,-6491,-8427,-3833,-6809,-10412,-11483,-3966,-1622,-7208], +[1,3,6344], +[0,0,6345,6346,4], +[0,-3037,-11484,-1077,-1344,-1654,-1788,-2125,-2410,-11485], +[0,-3966,-11486,-5574,-7534,-11487,-7371,-6974,-6582,-5847,-11488,-856], +[1,3,6348], +[0,6349,6350,6351,6], +[0,-808,-11489,-11490,-1097,-1646,-1737,-2114,-2177], +[0,-3037,-932,-958,-1344,-1534,-1942,-2319,-11491,-2363,-2379,-2410], +[0,-9427,-11492,-2295,-1673,-2490], +[1,3,6353], +[0,124,70,6354,11], +[0,-1727,-7421,-11070,-11493,-6656,-6235,-7547,-1076], +[1,3,6356], +[0,6357,6358,6359,4], +[0,-9154,-11494,-11495,-11496], +[0,-4646,-367,-3330,-427,-428,-3664,-7351,-774,-932,-7352,-954,-960,-961,-963,-965,-7353,-7354,-971,-979,-7355,-1344, +-7356,-1498,-1534,-1608,-1609,-1768,-7357,-1942,-7358,-1945,-2091,-11497,-7359,-2391,-2410,-2469,-7360], +[0,-10838,-5493,-10841,-10840,-11498,-11499,-11500,-11501,-11502,-11503], +[1,3,6361], +[0,6362,6363,6364,4], +[0,-7026,-11504,-8966], +[0,-458,-5993,-649,-652,-664,-665,-11505,-9077,-756,-1069,-5989,-1654,-1828,-11506,-2384,-2541], +[0,-4213,-1334,-1961,-2105,-9172,-9173,-2533,-5388], +[1,3,6366], +[0,0,6367,6368,6], +[0,-633,-719,-767,-932,-11507,-1004,-1471,-1472,-1475,-1478,-1479,-1480,-1482,-1483,-1487,-1488,-1490,-11508,-1492,-1654, +-1657,-11509,-1788,-6696,-2501,-2503,-11510], +[0,-11511,-11512,-11513,-11514,-770,-5374,-11515,-11516,-11517,-11518,-1334,-1342,-1616,-5150,-11519,-11520,-11521,-11522, +-11523,-2191,-11524,-11525,-11526,-8905,-11527,-11528,-11529], +[1,3,6370], +[0,6371,6372,6373,9], +[0,-523,-812,-1548], +[0,-664,-1654,-1972,-2210], +[0,-3939,-5801,-5737,-5741,-5271,-11530,-11517,-11531,-1050,-5270,-491,-11532], +[1,3,6375], +[0,6376,6377,6378,9], +[0,-615,-1729], +[0,-664,-932,-1415,-2210], +[0,-11533,-11534,-11535,-3939,-11536,-11537,-11538,-11539,-11540], +[1,3,6380], +[0,6381,6382,6383,4], +[0,-5672,-11541,-1119,-10521,-1758,-1957,-2177,-2323,-2654,-2518], +[0,-596,-767,-932,-1654,-1696,-2884,-11542], +[0,-5269,-6249,-3551,-6251,-6252,-596,-6250], +[1,3,6385], +[0,6386,6387,6388,5], +[0,-780,-1297], +[0,-7177,-674,-767,-932,-11543,-1317,-11544,-11545,-11546,-6595,-11547,-1333,-11548,-11549,-1839,-2125,-10301,-2251,-2379, +-2552], +[0,-3264,-3215,-3967,-2410], +[1,3,6390], +[0,6391,6392,6393,5], +[0,-510,-11550,-812,-1004,-1107,-1850,-2001,-2177,-2185,-11551,-11552,-11553,-2518,-2531,-2550], +[0,-664,-1077,-1380,-1452,-1654,-1764,-1961,-2125], +[0,-812,-7336,-6480,-6479], +[1,3,6395], +[0,6396,6397,6398,11], +[0,-459,-736,-828,-1072,-8438,-1636,-1640,-1840,-1997,-2401], +[0,-3035,-3621,-427,-428,-664,-932,-934,-940,-958,-1344,-1654,-1788,-1942,-2210,-2211,-2379,-2384,-2410], +[0,-4215,-8611,-10327,-3967,-3756,-3634,-4004,-1334,-11554], +[1,3,6400], +[0,6401,6402,6403,10], +[0,-11555,-1401,-2177,-11556,-2446,-2518], +[0,-749,-767,-932,-942,-943,-958,-966,-968,-1344,-1415,-1534,-11557,-1942,-2125], +[0,-11558,-11559,-9258,-11560,-9262,-6721,-11561,-11562,-4127], +[1,3,6405], +[0,6406,6407,6408,5], +[0,-579], +[0,-617,-1004,-1654,-2198,-2293], +[0,-1791,-11437], +[1,3,6410], +[0,89,56,57,8], +[1,3,6412], +[0,6413,6414,6415,8], +[0,-8612,-1650,-1708,-1758,-1769,-1778,-2001,-2125,-2177,-2323], +[0,-521,-1452,-1722,-2322], +[0,-5269,-6249,-3551,-6251,-6252,-596,-7304], +[1,3,6417], +[0,6418,6419,6420,4], +[0,-1723], +[0,-1654,-932,-11563,-1733,-767,-2410,-3037,-3621,-428,-427], +[0,-11564,-3975,-3974,-11565,-11566,-11567], +[1,3,6422], +[0,6423,0,6424,8], +[0,-11568,-11569,-11570,-11571,-579,-583,-754,-1004,-1077,-11572,-1758,-2177], +[0,-3496,-11532,-11573,-5411], +[1,3,6426], +[0,6427,6428,6429,10], +[0,-1696,-1088,-1107,-1630,-668,-1548,-1733,-1099,-11574,-769,-11575,-11576,-11577,-10521], +[0,-1788,-1654,-932,-2125,-1077,-11578], +[0,-775,-9264,-3277,-2162,-3754,-5553], +[1,3,6431], +[0,6432,6433,6434,4], +[0,-5414,-11579,-11580], +[0,-1788,-2322,-2210,-468,-932], +[0,-7046,-4107,-5418,-763,-11581,-10950], +[1,3,6436], +[0,6437,0,6438,4], +[0,-1813,-714,-1640], +[0,-1334,-5142,-6656,-3844], +[1,3,6440], +[0,0,6441,6442,5], +[0,-1788], +[0,-7230,-11582,-2446], +[1,3,6444], +[0,0,6445,6446,10], +[0,-1077,-1654], +[0,-11583,-2490,-11584], +[1,3,6448], +[0,6449,0,6450,8], +[0,-6597,-2550], +[0,-11585,-7084,-5196,-11586,-5545,-5389,-11587,-11588,-11589,-4107], +[1,3,6452], +[0,6453,6454,6455,4], +[0,-2534], +[0,-11590,-11591,-3037,-932,-1942,-1944,-2391,-2410,-3924,-2469], +[0,-11592,-3215,-4258,-2534,-11593], +[1,3,6457], +[0,6458,6459,6460,11], +[0,-1285,-1391], +[0,-5834,-515,-932,-1365,-7393,-1777,-1788,-1797,-2156,-2322], +[0,-1015,-11594,-11595,-702,-6351,-11596], +[1,3,6462], +[0,6463,6464,6465,5], +[0,-1116,-1696,-1460,-1993,-1548,-2324,-1077,-1733,-1740], +[0,-2487,-1654,-1452,-521,-674,-11597,-1405,-526,-756,-1440,-11598,-7382,-559], +[0,-11599,-11600,-5889,-5269], +[1,3,6467], +[0,0,6468,6469,6], +[0,-11601,-648,-652,-932,-940,-1110,-11602,-11603,-11604,-11605,-1942,-1971,-11606,-7932], +[0,-11607], +[1,3,6471], +[0,6472,6473,6474,5], +[0,-679,-812,-5911,-1645,-11608,-2177,-7741,-2297,-2363,-11609], +[0,-86,-3307,-510,-710,-932,-1344,-1654,-1788,-1972,-2174,-2198], +[0,-687,-1673,-1673,-3113,-9427,-11610,-11492,-3974], +[1,3,6476], +[0,6477,0,7,5], +[0,-888,-2319], +[1,3,6479], +[0,6480,6481,6482,4], +[0,-2125,-867,-11611,-2550,-2177], +[0,-2105,-2322], +[0,-11612,-11613,-7856,-11321,-9668], +[1,3,6484], +[0,6485,0,6486,5], +[0,-7603,-469,-470,-8547,-5329,-473,-11614,-523,-617,-679,-744,-754,-792,-1004,-4206,-11615,-11616,-1107,-1299,-11617, +-11618,-1460,-11619,-1465,-11620,-1581,-5460,-11621,-1671,-1680,-1707,-7045,-11622,-1752,-1805,-1857,-11623,-2071,-11492, +-2107,-11624,-11625,-2520,-3730,-2548,-2550], +[0,-11626,-1756,-3214,-3967,-3161,-3445,-3100,-5407,-11627,-11628,-11629,-11630,-4055,-11631,-4058,-1460,-2548,-3994, +-11632], +[1,3,6488], +[0,6489,83,6490,4], +[0,-2424,-668], +[0,-7303,-11633,-4376,-6792,-3215], +[1,3,6492], +[0,6493,29,7,5], +[0,-9632], +[1,3,6495], +[0,0,6496,6497,8], +[0,-1202,-1646,-1654], +[0,-11634,-11635,-11636,-6656,-11637,-7693,-7839,-11638,-11639,-1076,-6811,-1847,-9358,-6517,-2218,-11640,-11641,-11642, +-11643], +[1,3,6499], +[0,0,14,6500,4], +[0,-6811,-2435,-9171,-6558,-2265,-11644,-11645,-5101,-1985,-11646,-6817,-11647,-11648], +[1,3,6502], +[0,0,0,6503,5], +[0,-11649,-11644,-4865], +[1,3,6505], +[0,6506,6507,6508,4], +[0,-668,-6793,-700,-755,-824,-2762,-930,-999,-11650,-11651,-1315,-6770,-1363,-1376,-1394,-11652,-11653,-11654,-1535, +-11655,-1574,-1630,-11656,-11657,-9050,-1805,-11658,-10270,-1849,-3609,-2060,-2153,-2177,-5746,-3669,-2433], +[0,-9154,-3199,-519,-722,-9982,-1077,-11659,-2210,-2269,-2331,-11660,-2541], +[0,-5732,-687,-1764,-8403,-5889,-5737,-9318,-6453,-5890], +[1,3,6510], +[0,6511,6512,6513,4], +[0,-1681,-1371,-2323,-1107,-1758,-2059,-2247,-11661,-668,-1826,-2518,-9632,-1831,-2177,-4287,-680,-11662,-9084,-1733, +-1957,-11663,-1645,-4296,-4279,-1527,-1528,-1529,-11664,-11665,-2343,-11666,-1119,-11667,-10513,-11668,-11669,-10517, +-11670,-11671,-4285,-2297,-1315,-1767,-1982,-280,-11672,-10520,-10521,-11673,-4291,-11674,-283,-4290,-1770,-11675,-11676, +-4292,-4283,-4306,-8266,-281,-2450,-4281, +-4278,-11677], +[0,-469,-2319,-834,-1722,-4307,-2093,-2125,-695,-2095,-11678,-470,-11679,-1769,-4655,-11680,-11681,-4300,-4298,-4299, +-11682], +[0,-1380,-3209,-11683,-10484], +[1,3,6515], +[0,6516,6517,6518,4], +[0,-705,-1816,-1630,-668,-999,-1392,-2546,-11684,-1111,-1548,-2177,-11685,-1871,-827,-1376,-1645,-1728,-2269,-2343,-1849, +-11686,-5895,-11687,-6197,-11688,-2433,-11689], +[0,-2541,-526,-567,-559,-555,-551], +[0,-1764,-11690,-3015,-7441,-5887,-7440,-11691,-3690,-9845,-687,-9594,-11692,-11693,-7856,-3016], +[1,3,6520], +[0,0,6521,6522,4], +[0,-11694,-7057,-3035,-4269,-11695,-11696,-5361,-11697,-3660,-11698,-3044,-3621,-3037,-11699,-11700,-8523,-3624,-3735, +-3199,-11701,-4372,-11702,-427,-428,-656,-664,-665,-9077,-668,-695,-719,-767,-8609,-932,-940,-11703,-943,-958,-960,-965, +-968,-1026,-10960,-1047,-11704,-1315,-1371,-1442,-1461,-11705,-1547,-1548,-1609,-1654,-1770,-1771,-1826,-5883,-1864, +-1942,-1959,-11706,-11689, +-2124,-2125,-5405,-2177,-11707,-2198,-2210,-2234,-7744,-2269,-2379,-2410,-11708,-2430,-2433,-11709,-2466,-11710,-11711, +-6859,-2552], +[0,-3015,-1764,-10484,-10674,-11712,-11713], +[1,3,6524], +[0,6525,29,7,5], +[0,-1315,-1957,-2177,-2450], +[1,3,6527], +[0,6528,6529,6530,6], +[0,-469,-3907,-668,-755,-812,-1111,-1353,-1395,-1461,-1574,-1630,-1877,-2177,-2218,-2271,-2400,-2450], +[0,-3136,-3037,-427,-428,-928,-11714,-932,-11715,-11716,-954,-958,-959,-967,-978,-1040,-1415,-7357,-11717,-1942,-2375, +-2410], +[0,-7148,-8170,-10484,-5879,-11718,-1768], +[1,3,6532], +[0,6533,6534,7,8], +[0,-6770,-1957], +[0,-280,-4298,-4300,-11719,-2319], +[1,3,6536], +[0,6537,6538,6539,10], +[0,-4285,-10335,-10521,-9084,-11720,-11721,-1767,-1957], +[0,-4298,-4300,-4287,-1722,-11542,-2247,-2319], +[0,-1764,-11722,-4213], +[1,3,6541], +[0,6542,6543,233,4], +[0,-668,-11084,-2060,-1645,-482,-769,-2194,-1627,-11723], +[0,-1788,-2552,-1654,-932,-2125,-708,-1827,-1077,-3037,-1938,-566,-11724,-6018,-545], +[1,3,6545], +[0,6546,6547,233,11], +[0,-2518,-11084,-1864,-482,-769,-2194,-1627,-11728], +[0,-652,-1498,-2552,-1446,-1654,-932,-9774,-2884,-516,-3781], +[1,3,6549], +[0,6550,14,6551,5], +[0,-7087,-8803], +[0,-1764,-11727,-1847,-5897,-8425,-7304,-8426,-11729,-687,-3958,-7096,-7237], +[1,3,6553], +[0,0,6554,6555,5], +[0,-3136,-3037,-427,-428,-3267,-932,-940,-1415,-1534,-10652,-2125,-2127,-2375,-2410], +[0,-11730,-856,-11731], +[1,3,6557], +[0,6558,6559,6560,4], +[0,-668,-691,-719,-812,-1376,-1965], +[0,-664,-1654,-1663,-2250], +[0,-7865,-1764,-11732], +[1,3,6562], +[0,6563,6564,6565,6], +[0,-1376,-1993], +[0,-526,-541,-551,-11733,-566,-1771], +[0,-1764,-687,-7095,-3957,-9408,-4043,-9845,-1776,-11734], +[1,3,6567], +[0,6568,6569,6570,6], +[0,-1285,-1646], +[0,-5834,-516,-5835,-932,-1365,-1431,-1788,-2156,-2322], +[0,-1777,-9100], +[1,3,6572], +[0,6573,6574,7,6], +[0,-4700,-10515,-11735,-4716], +[0,-2319,-4300,-4298], +[1,3,6576], +[0,0,6577,7,4], +[0,-664,-1437,-1449,-1654,-11736], +[1,3,6579], +[0,6580,6581,6582,4], +[0,-668,-694,-11737,-1343,-1376,-11738,-2177,-9564,-2550], +[0,-619,-707,-8326,-1277,-1510,-1658], +[0,-7107,-1780,-8327], +[1,3,6584], +[0,6585,6586,6587,5], +[0,-11739], +[0,-3136,-3037,-427,-428,-749,-932,-940,-967,-1344,-1415,-1942,-1952,-2125,-2375,-2379,-2410], +[0,-1781,-11740,-687,-3578,-3871,-7864,-2006,-3966,-2410,-3214,-2501,-1415,-3100,-3445,-5407], +[1,3,6589], +[0,0,6590,6591,6], +[0,-664,-1138,-1146,-1155,-1156,-9545,-1471,-1474,-1475,-1479,-1482,-1483,-1488,-1542,-1654], +[0,-1782,-6240,-3276,-4123,-11741,-11742], +[1,3,6593], +[0,6594,6595,6596,5], +[0,-11743,-11744,-719], +[0,-21,-23,-40,-43,-534,-539,-541,-729,-753,-767,-932,-934,-958,-1004,-1077,-1098,-11745,-11746,-11747,-11748,-1788,-1860, +-2187,-2416,-2417,-2501], +[0,-3110,-7651], +[1,3,6598], +[0,0,0,6599,5], +[0,-8427,-3966], +[1,3,6601], +[0,0,6602,6603,10], +[0,-2832,-5834,-8084,-8096,-516,-652,-5835,-932,-1431,-1365,-1777,-2156,-2322], +[0,-1784,-1785,-5874], +[1,3,6605], +[0,0,0,6606,10], +[0,-775,-5180,-11749,-5912,-3585], +[1,3,6608], +[0,6609,0,6610,4], +[0,-888,-1816,-2359,-1055,-1805,-2548,-523,-701,-2387,-2550,-865,-1353,-2177,-1040,-910,-1418,-1645,-2369,-690,-1863, +-2325,-692,-1075,-1461,-1773,-2267,-2551,-866,-2383,-11750,-11751,-11752,-4341,-10789,-11753,-11754], +[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340,-4347,-4343,-4344,-11755], +[1,3,6612], +[0,6613,6614,6615,4], +[0,-6028,-4003,-11756,-742,-813,-1046,-1047,-6475,-1097,-1107,-5086,-11757,-6029,-11758,-5087,-5088,-5089,-1591,-11759, +-1826,-11760,-2115,-2125,-2202,-11761,-6030,-2550], +[0,-11762,-5607,-2111,-2234,-2250,-2251,-2319,-2446,-2518], +[0,-4005,-6863,-8422,-3634], +[1,3,6617], +[0,6618,6619,6620,5], +[0,-11763,-4049,-3424,-11619,-10873,-5969,-5263,-1851,-11764], +[0,-11765,-11766,-11767,-3037,-2391,-2410,-2469], +[0,-3690,-11768,-3438,-11769,-11770,-11771,-11772,-11773,-1789,-489,-11148,-856], +[1,3,6622], +[0,6623,6624,6625,4], +[0,-11763,-11774,-1442,-5263,-3792], +[0,-11765,-3660,-11775,-1722,-2391,-2410,-2469], +[0,-3690,-489,-11768,-856,-11148,-11773,-1789,-3438,-11772,-11769,-11771,-11770,-11410,-4847], +[1,3,6627], +[0,0,84,7,8], +[1,3,6629], +[0,0,6630,6631,5], +[0,-2541,-519,-1548,-1612], +[0,-7208,-7370,-1015,-3589,-4795,-3217,-3207,-6989,-11776,-3582,-5396,-4865], +[1,3,6633], +[0,0,6634,6635,4], +[0,-633,-1168,-1177,-11117,-11777,-1220,-1224,-1231,-1243,-1244,-1262,-1452,-1453,-1471,-1475,-1482,-1654], +[0,-7208,-6131,-2191,-1616], +[1,3,6637], +[0,0,6638,6639,6], +[0,-5834,-11778,-516,-753,-11779,-921,-932,-1065,-1083,-1107,-11780,-1283,-11781,-1365,-1408,-8082,-1659,-1777,-1788, +-2156,-9786,-2177,-8310,-2322], +[0,-4676,-11782,-7208,-6231,-3240], +[1,3,6641], +[0,0,6642,6643,4], +[0,-5834,-8487,-932,-6283,-11783,-1391,-2322], +[0,-11784,-7373,-6947,-5396], +[1,3,6645], +[0,0,6646,6647,8], +[0,-1788,-664,-1654,-756,-1657,-11785], +[0,-6545,-1847,-11786,-11787,-9052,-7153,-864,-7375,-7208,-7369,-11788,-11789,-5846,-8893,-7372], +[1,3,6649], +[0,6650,6651,6652,6], +[0,-655,-6511,-5830,-11790,-1283,-1795], +[0,-5833,-5834,-633,-932,-1065,-1083,-5836,-1285,-1659,-1777,-1788,-2156,-5942,-2322], +[0,-11791,-7370,-6948,-1015,-11792,-11594,-11793,-11794,-5843,-3582,-5396], +[1,3,6654], +[0,6655,6656,6657,6], +[0,-655,-6511,-5830,-11790], +[0,-5833,-5834,-8569,-516,-5835,-932,-1083,-5836,-1365,-1777,-1788,-2156,-2322], +[0,-11795,-11796,-11784,-11797,-7374,-6949,-11798,-6952,-5396,-7208,-7373,-3582,-5843], +[1,3,6659], +[0,6660,6661,7,9], +[0,-11799], +[0,-1788,-1654,-932,-966,-958,-968,-943,-963,-974], +[1,3,6663], +[0,6664,71,6665,4], +[0,-11800], +[0,-1801,-5924,-6812,-6814], +[1,3,6667], +[0,6668,6669,6670,4], +[0,-11801,-11802,-502,-679,-769,-1353,-2369], +[0,-7080,-3037,-1344,-1534,-1942,-2125,-2410], +[0,-1107,-2490,-5888], +[1,3,6672], +[0,6673,6674,6675,5], +[0,-11803,-1553], +[0,-3621,-11804,-708,-1452,-1654,-1658,-1660,-1788,-2379,-2410], +[0,-11805,-11573,-11806,-11807,-11808,-10226,-11809,-11810,-11811,-9261], +[1,3,6677], +[0,6678,115,234,5], +[0,-11812,-11813,-11814,-9981,-6756,-11815], +[1,3,6680], +[0,6681,6682,6683,5], +[0,-1043,-1099,-1630,-1805,-2331], +[0,-519,-999,-2541], +[0,-5732,-687,-3994,-1805,-1810,-11816,-11817,-11818,-11819,-11820,-11821,-7095,-4865,-3496,-7237,-7863,-2435,-11822, +-7303,-7091,-8421,-6599,-1958,-3258,-6656], +[1,3,6685], +[0,6686,6687,6688,6], +[0,-11823,-11824,-5263], +[0,-3136,-3660,-4049,-523,-11825,-1415,-1456,-11826,-1683,-1942,-2234,-2375,-2379,-2410], +[0,-3438,-4847,-3323,-523,-3100,-4865,-4215,-2410], +[1,3,6690], +[0,6691,6692,6693,5], +[0,-813,-1326,-1459,-1600,-1967,-2006,-2019,-2451], +[0,-32,-204,-526,-552,-9968,-756,-932,-933,-934,-958,-962,-968,-969,-1108,-1320,-1415,-1753,-1771,-2105,-2106,-5331], +[0,-4847,-3438,-11827,-3264,-856,-3262], +[1,3,6695], +[0,6696,6697,6698,11], +[0,-6280,-1696], +[0,-1107,-2105,-2322], +[0,-1809,-11828,-9565,-11829], +[1,3,6700], +[0,0,38,7,6], +[1,3,6702], +[0,6703,6704,7,8], +[0,-11830,-2105], +[0,-526,-559,-932,-933,-958,-962,-969], +[1,3,6706], +[0,6707,55,234,9], +[0,-1401], +[1,3,6709], +[0,6710,6711,235,4], +[0,-2525,-1646], +[0,-11831,-2319], +[1,3,6713], +[0,6714,6715,6716,8], +[0,-784,-11832,-1889], +[0,-527,-533,-551,-556,-558,-778,-1415,-2275,-2501], +[0,-7198,-10435,-1017,-7173,-7175,-6694,-2501], +[1,3,6718], +[0,6719,6720,6721,11], +[0,-11833,-11834,-2524,-8437,-11835,-10579], +[0,-11836,-1654], +[0,-6792,-5272,-11837,-687], +[1,3,6723], +[0,6724,6725,6726,8], +[0,-668,-690,-692,-11652,-6861,-1574,-11838,-2267], +[0,-3037,-519,-1100,-11839,-2384,-2541], +[0,-687,-6716,-6717,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], +[1,3,6728], +[0,6729,6730,6731,10], +[0,-908,-11840,-11841], +[0,-994,-1262,-1452,-1597,-1632,-1654,-1980,-2198,-2462], +[0,-510,-4107,-5921,-10462], +[1,3,6733], +[0,6734,6735,6736,11], +[0,-510,-615,-7840,-10358,-1548,-1850,-11842,-11843], +[0,-652,-668,-1107,-1654,-1671,-1691,-1857,-2177,-2198,-2210,-2245], +[0,-1818,-11221,-7685,-1691,-10425,-11844,-3742,-1671], +[1,3,6738], +[0,0,0,6739,4], +[0,-3966,-1819,-3103,-3551], +[1,3,6741], +[0,6742,71,6743,6], +[0,-8383,-10383], +[0,-5558,-3833,-11845,-11846,-1847,-1965,-11847], +[1,3,6745], +[0,0,6746,6747,4], +[0,-3035,-3048,-3621,-3037,-3046,-10755,-664,-999,-1077,-1654,-1763,-2379,-2501,-2518], +[0,-3184,-4795,-11848,-11849,-7728,-2265,-3110,-6806], +[1,3,6749], +[0,0,0,6750,5], +[0,-1823,-3586,-11850,-11851,-11852,-11853,-3100,-4865], +[1,3,6752], +[0,6753,6754,6755,5], +[0,-11854,-719,-1063,-1392,-1526,-2177,-2359,-11855], +[0,-3244,-190,-3748,-4200,-11856,-3037,-3199,-3628,-11857,-427,-428,-932,-11858,-2125,-2410], +[0,-687,-11859,-8109,-8403], +[1,3,6757], +[0,6758,6759,6760,5], +[0,-1828], +[0,-3037,-519,-826,-2384,-2541], +[0,-1961,-997,-5389,-6820,-8397,-10670,-6821,-8401,-6822,-8124,-11860,-11861,-4116,-11862,-8402,-4865,-5092,-510,-5867, +-5923,-615], +[1,3,6762], +[0,0,6763,6764,5], +[0,-519,-668,-826,-7426,-7424,-7427,-2384,-2541], +[0,-1961,-6917,-11863,-4116,-7558,-9029,-9027,-11864,-11865,-510,-5867,-5923,-726,-11866,-5921,-615], +[1,3,6766], +[0,6767,6768,6769,4], +[0,-996,-1828], +[0,-5918,-3268,-3037,-589,-825,-826,-7426,-7963,-7424,-7427,-2384,-2392,-2410,-2541], +[0,-1961,-1986,-11450,-6729,-7331,-11866,-7329,-11685,-7333,-7334,-11867,-11038,-11033,-11868,-5418,-4107,-510,-5867, +-5923,-615], +[1,3,6771], +[0,0,6772,6773,11], +[0,-519,-826,-7426,-9161,-2210,-7427,-2384,-2541], +[0,-1961,-7430,-6324,-11869,-510,-5867,-5923,-4123,-11870,-5391,-615], +[1,3,6775], +[0,6776,6777,6778,4], +[0,-1107], +[0,-1415,-1942,-4701], +[0,-856,-2299,-11871,-11872], +[1,3,6780], +[0,6781,6782,6783,5], +[0,-11873,-522,-594,-719,-914,-1496,-1689,-1750,-1978,-2177], +[0,-652,-932,-11874,-1654,-11875,-4654,-2210], +[0,-4665,-4666,-10432,-11876,-5879,-4864,-5986,-522,-7144,-687,-11877,-11878,-11879,-10770,-1830,-1978,-9246,-11880,-3634, +-2451,-11881], +[1,3,6785], +[0,6786,6787,6788,4], +[0,-11678,-4280,-4283,-4306,-283,-4287,-11666,-9084,-1767,-1769,-4291,-1770,-1957,-10592,-11882,-2247,-2323], +[0,-280,-4298,-4300,-1315,-11719,-1722,-11883,-2125,-2319], +[0,-7442,-1764,-5889], +[1,3,6790], +[0,6791,6792,6793,8], +[0,-9491,-9492,-11884,-807,-7731,-11885,-1548,-1574,-1591,-1826,-1877,-2400,-11886], +[0,-5918,-5033,-3044,-3037,-11887,-743,-825,-1043,-1098,-9810,-1849,-11888,-2392,-2410,-2541], +[0,-11889,-3258,-9204,-3578,-2435,-9804,-8799,-9711,-11890,-11891,-5566,-4045,-9552,-3576,-7419,-1978,-10366,-6527,-3839, +-7650,-3264,-11878,-9712,-8633,-8634,-7715,-8640,-9235], +[1,3,6795], +[0,0,6796,6797,4], +[0,-3037,-3664,-6593,-7653,-7654,-932,-958,-960,-1449,-2410,-2466,-2469], +[0,-3100,-3445,-3261,-3098,-3160,-6107,-9975,-9612,-11074], +[1,3,6799], +[0,0,6800,6801,11], +[0,-40,-3326,-350,-351,-932,-1103,-1654,-1687,-10835,-1788,-2127,-2140,-2195], +[0,-9506,-6827,-10350,-6826], +[1,3,6803], +[0,6804,38,6805,6], +[0,-11064,-668,-6842,-1000,-1039,-1099,-1111,-1333,-1465,-1630,-1641,-1836,-2114,-11892,-2433,-2551], +[0,-11893,-3445,-687,-10810,-3690], +[1,3,6807], +[0,6808,6809,6810,5], +[0,-11197,-1582,-2291], +[0,-190,-865,-932,-940,-958,-965,-967,-968,-1110,-1548,-1654,-1942,-2340,-2892,-2410], +[0,-11893,-3323,-4725,-11894,-3844,-3445,-3690,-3691,-4055], +[1,3,6812], +[0,0,6813,6814,6], +[0,-615,-664,-710,-1654], +[0,-5921,-5550], +[1,3,6816], +[0,6817,6818,6819,9], +[0,-44,-3345,-772,-11895,-11896,-2531], +[0,-23,-26,-38,-40,-41,-42,-190,-3266,-11897,-3470,-7040,-3471,-3472,-7041,-7042,-11898,-533,-8580,-11899,-708,-753,-767, +-932,-8147,-960,-1004,-1168,-1174,-1268,-1412,-10034,-11900,-1415,-1419,-1446,-11901,-1534,-4375,-3156,-11220,-11902, +-1978,-2082,-2174,-2411,-2466,-11903,-10092], +[0,-5801,-3162,-3690], +[1,3,6821], +[0,6822,0,6823,5], +[0,-3223], +[0,-3264,-3215,-5177,-11904,-4681,-5922,-11905,-11906,-6595,-1839,-4142,-11907,-11908,-1838,-6233], +[1,3,6825], +[0,0,6826,7,6], +[0,-1654,-932,-1405,-589,-11909,-585,-966,-958,-968,-943,-974], +[1,3,6828], +[0,6829,6830,6831,10], +[0,-11910,-2445,-1846], +[0,-664,-1654,-1592,-1972,-666,-11911], +[0,-1004,-729,-6120,-8449,-3173], +[1,3,6833], +[0,6834,6835,6836,8], +[0,-1845], +[0,-1592,-1654,-664,-666], +[0,-1841,-4038,-6120,-8449,-3173,-9795], +[1,3,6838], +[0,6839,236,6840,4], +[0,-1846], +[0,-1841,-8427,-6120,-8449,-3173,-11912,-5110], +[1,3,6842], +[0,6843,236,237,8], +[0,-11913,-1845], +[1,3,6845], +[0,6846,6847,237,5], +[0,-11914,-1791,-1846,-10686,-2445], +[0,-1592,-1654,-664,-1972,-666], +[1,3,6849], +[0,0,114,6850,4], +[0,-1841,-6539], +[1,3,6852], +[0,6853,0,6854,5], +[0,-1958,-2444], +[0,-11153,-1847], +[1,3,6856], +[0,0,31,6857,8], +[0,-4865,-633,-1847], +[1,3,6859], +[0,0,238,6860,5], +[0,-1847,-6788,-11915,-6656,-7693,-1076,-7422,-7000,-11786,-9330], +[1,3,6862], +[0,0,118,6863,4], +[0,-1847,-9098,-6656,-11070,-11634,-11916,-11917,-6441,-2444,-5260,-3103,-6989,-3582,-5396,-1391,-6659,-7440], +[1,3,6865], +[0,0,6866,6867,8], +[0,-6918,-5295,-3037,-3199,-3664,-10880,-2214,-2410,-2469], +[0,-1004,-5570,-10470,-9843], +[1,3,6869], +[0,0,6870,7,5], +[0,-3037,-3664,-672,-928,-932,-944,-1431,-1942,-2410,-2423,-2469,-11918], +[1,3,6872], +[0,6873,6874,57,4], +[0,-1406,-1460,-7885], +[0,-1078,-1654,-1941], +[1,3,6876], +[0,6877,6878,6879,4], +[0,-11919,-11920,-1834,-2062,-9789,-2446], +[0,-3037,-640,-997,-1942,-2322,-2410], +[0,-6528,-3262], +[1,3,6881], +[0,6882,6883,6884,10], +[0,-772,-4702,-11921,-11922,-11923], +[0,-23,-3840,-40,-190,-3326,-533,-11924,-11925,-627,-633,-659,-709,-932,-1103,-1110,-1415,-1419,-4981,-1599,-11926,-1942, +-1974,-2127,-4063], +[0,-6528,-11927,-11928,-6524,-10855,-9472], +[1,3,6886], +[0,0,6887,7,4], +[0,-615,-11929,-664,-11930,-710,-1654,-1939], +[1,3,6889], +[0,6890,6891,6892,4], +[0,-10416,-11931,-11932,-11933,-11934,-11935], +[0,-11936,-11937,-510,-615,-705,-11938,-2410,-2469,-9667], +[0,-7685,-11939,-1857,-11940,-10425,-6321,-11941], +[1,3,6894], +[0,6895,6896,6897,5], +[0,-1860,-2239,-2520], +[0,-526,-527,-528,-556,-558,-559,-6089,-932,-934,-956,-958,-1059,-11942,-1415,-1417,-11943,-9913,-2125], +[0,-1858,-1859,-9879], +[1,3,6899], +[0,6900,6901,239,11], +[0,-1018,-1077,-7234,-9423,-1959,-2105,-7241,-2518], +[0,-932,-1754], +[1,3,6903], +[0,6904,6905,239,5], +[0,-925,-1018,-1077,-7234,-9423,-1959,-2105,-7241,-2518], +[0,-932,-1754,-4881], +[1,3,6907], +[0,6908,6909,6910,5], +[0,-501,-714,-728,-11944,-752,-9012,-1412,-1646,-1810,-1812,-3547,-11945,-1878,-1965,-1982,-2105,-2195,-2433], +[0,-7672,-932,-942,-943,-958,-966,-968,-974,-1405], +[0,-687,-752,-1861,-11946,-11947], +[1,3,6912], +[0,0,70,7,11], +[1,3,6914], +[0,0,0,6915,8], +[0,-3974,-714,-5538,-687,-4000], +[1,3,6917], +[0,0,6918,6919,5], +[0,-932,-10999,-1202,-1654,-1788], +[0,-1107,-5572,-1864], +[0,44,15,16,8], +[1,3,6922], +[0,0,6923,6924,9], +[0,-519,-11948,-2384,-11135,-2541], +[0,-8124,-5865,-1961,-5923,-11949,-5500,-3966,-11301,-11300,-5845,-6408,-4001,-8911,-6509,-510,-5867,-4795,-615], +[1,3,6926], +[0,6927,6928,6929,10], +[0,-11950,-11951,-11952,-11953,-8543,-11954,-11955,-7967,-11956,-11957,-11958], +[0,-2832,-11419,-11959,-3037,-468,-11960,-2917,-648,-812,-2758,-932,-958,-965,-966,-968,-999,-11961,-11962,-1362,-1415, +-1573,-1577,-11963,-2884,-11964,-1939,-1972,-1976,-2125,-2177,-2240,-11965,-2269,-2322,-2347,-2379,-2384,-2410,-2520], +[0,-5922,-3444,-5827,-4055], +[1,3,6931], +[0,0,6932,6933,4], +[0,-932,-940,-8177,-966,-967,-1344,-1415,-1942,-2331], +[0,-1764,-11966,-11967,-7646,-11968], +[1,3,6935], +[0,6936,6937,6938,5], +[0,-1880], +[0,-932,-10497,-2410], +[0,-6527,-10588,-834], +[1,3,6940], +[0,6941,6942,6943,6], +[0,-8341], +[0,-2541,-519,-2384,-2331], +[0,-5897,-4055,-5756,-1764,-11969,-5573,-8804,-1047,-5504,-8805,-8806,-6656,-7282,-5572,-2114,-8807,-6370,-7420,-7421, +-2487,-8808,-1847], +[1,3,6945], +[0,175,14,6946,5], +[0,-7861,-5897,-6656,-5573,-8804,-1047,-5504,-8805,-8806,-7282,-5572,-2114,-8807,-6370,-7420,-7421,-2487,-8808,-1847], +[1,3,6948], +[0,0,84,6949,5], +[0,-8041,-3674,-10484], +[1,3,6951], +[0,6952,0,7,5], +[0,-3982], +[1,3,6954], +[0,6955,6956,6957,11], +[0,-4733,-578,-2538], +[0,-633,-1654,-6810,-2568], +[0,-5736,-4865,-8995,-1875,-3215,-6597], +[1,3,6959], +[0,6960,6961,6962,4], +[0,-479], +[0,-932,-937,-966,-1001,-1654,-1788,-2410], +[0,-6324,-3862,-1266], +[1,3,6964], +[0,6965,14,6966,8], +[0,-11970], +[0,-9757,-11971,-1878,-9756,-11972,-10781,-2265,-11973,-11974,-11975], +[1,3,6968], +[0,0,6969,6970,9], +[0,-664,-1405,-1654,-2176], +[0,-9757,-11971,-1878,-9756,-9763,-1369], +[1,3,6972], +[0,6973,70,6974,8], +[0,-11976,-11977,-11978,-11979,-483,-510,-11980,-679,-11981,-719,-764,-809,-812,-910,-995,-11982,-1650,-1708,-11983, +-11984,-11985,-11986,-11987,-3968,-2177,-2234,-2243,-11988,-1442], +[0,-687,-8947,-8948,-3674,-1879,-11989,-1573,-4055,-1004,-1277,-11990,-11492,-11991,-11992,-11993,-11994,-11995,-11996, +-11997,-9466,-11998,-11148,-5731,-3207,-11999,-12000,-12001,-12002,-12003,-8901,-8902,-11586,-2295,-12004,-1753,-12005, +-7662,-12006,-11230,-12001,-12007,-1066,-11429,-12008,-5805,-11486,-8944,-12009,-12010,-12011,-12012,-9844,-7606,-763, +-8904,-12013], +[1,3,6976], +[0,0,6977,6978,4], +[0,-633,-641,-729,-932,-940,-1788,-1942,-1978,-2187,-12014,-2322], +[0,-12015,-6116,-6117,-12016,-12017,-3215,-7715,-11923,-12018,-1880], +[1,3,6980], +[0,6981,6982,6983,9], +[0,-2381], +[0,-909,-1415,-1421,-1425,-2231], +[0,-2501,-2552,-10054,-10055], +[1,3,6985], +[0,0,0,6986,4], +[0,-1882,-12019,-3015,-12020,-11037,-5922,-12021,-1380,-7856,-10606,-5880,-3209,-10440,-10527,-1764,-11683,-10484,-7442, +-12022,-12023,-6694,-5881,-12024,-12025,-10444], +[1,3,6988], +[0,241,6989,6990,5], +[0,-2334,-2379,-2410], +[0,-12026,-12027,-12028,-12029,-12030,-12031,-12032,-12033,-3690,-12034,-12035,-12036,-12037,-3445,-3100,-2410], +[1,3,6992], +[0,39,6993,6994,4], +[0,-21,-23,-32,-38,-39,-40,-6056,-3326,-351,-3561,-528,-533,-535,-12038,-767,-796,-856,-932,-934,-958,-1059,-11942,-1344, +-1415,-1534,-11943,-1942,-12039,-1993,-2127,-2139,-2140,-2174,-2200,-12040,-2410,-2449], +[0,-2278,-1885,-906,-12041,-3771,-12042,-2006,-5411,-2410,-12043,-12044,-12045,-712,-5535], +[1,3,6996], +[0,0,6997,6998,5], +[0,-12046,-12047,-12048,-12049,-932,-12050,-2410], +[0,-12051,-3095,-7582,-3821,-3822,-12052,-12053], +[1,3,7000], +[0,7001,7002,7003,6], +[0,-510,-812], +[0,-1415], +[0,-1334,-12054,-8113], +[1,3,7005], +[0,7006,0,7007,8], +[0,-1699,-1863,-2232], +[0,-775,-1889,-9336,-3277,-3215,-12055,-6408,-12056,-3186], +[1,3,7009], +[0,7010,7011,7012,8], +[0,-1931,-1934], +[0,-3037,-932,-940,-12057,-1889,-1942,-2410], +[0,-775,-1889,-3583,-12058,-12059], +[1,3,7014], +[0,7015,7016,7017,4], +[0,-679,-3227,-1077,-1863,-1907,-12060,-6467,-12061,-2218,-2654,-2550], +[0,-519,-652,-756,-932,-12062,-1110,-1889,-1906,-1942,-2289,-2446], +[0,-687,-1889,-9300], +[1,3,7019], +[0,7020,0,7021,6], +[0,-2953,-93,-94,-97,-12063], +[0,-712,-12064,-775,-3099,-5112,-12065,-12066,-12067,-11788,-1889,-3583,-5549,-12068,-7451,-4132], +[1,3,7023], +[0,7024,7025,7026,6], +[0,-635,-12069,-2840,-1934], +[0,-12070,-1889], +[0,-712,-714,-724,-775,-1644,-1889,-3583], +[1,3,7028], +[0,242,22,7029,9], +[0,-775,-7193,-1889,-3583], +[1,3,7031], +[0,7032,7033,7034,5], +[0,-518,-12069,-668,-12071,-12072,-1889,-12073,-12074,-1890,-12075,-12076,-12077,-12078,-12079,-12080,-12081,-12082,-1896, +-1897,-1898,-12083,-12084,-12085,-12086,-12087,-1917,-12088,-12089,-12090,-12091,-12092], +[0,-526,-527,-534,-558,-560,-565,-8161,-682,-778,-12093,-12094,-12095,-12096,-12097,-932,-12098,-949,-969,-1017,-1041, +-1304,-12099,-1442,-1455,-1600,-12100,-1633,-12101,-12102,-12103,-12104,-12105,-12106,-12107,-12108,-12109,-11748,-1762, +-12110,-1792,-1812,-12111,-1906,-1908,-12060,-7033,-1967,-2006,-2019,-12112,-2125,-2269,-2275,-2322,-12113,-2501,-2505, +-12114], +[0,-1889,-3583,-775,-5387,-12115], +[1,3,7036], +[0,7037,0,7038,5], +[0,-12116,-93,-94,-95], +[0,-12117,-12118,-775,-12119,-3586,-12120,-1889,-3583,-12121,-5101,-4681,-5387], +[1,3,7040], +[0,7041,0,7042,4], +[0,-12116,-93,-94,-12063,-1934], +[0,-775,-12119,-3586,-3587,-1889,-3583,-3589,-4681,-3591,-3592,-5387], +[1,3,7044], +[0,7045,0,7046,4], +[0,-12116,-93,-94,-1931], +[0,-12117,-12118,-775,-12119,-3586,-12122,-8109,-1889,-3583,-11315,-12123,-4681,-5387], +[1,3,7048], +[0,90,7049,7050,6], +[0,-1889,-1930,-10815], +[0,-775,-3485,-1889,-3583], +[1,3,7052], +[0,0,22,7053,9], +[0,-775,-816,-7192,-1889,-3583], +[1,3,7055], +[0,0,22,7056,4], +[0,-6454,-775,-12124,-1644,-7193,-1889,-3583], +[1,3,7058], +[0,0,7059,7060,6], +[0,-834,-1863,-1889], +[0,-1889,-775,-3583,-12125,-12126,-12127], +[1,3,7062], +[0,0,7063,7064,8], +[0,-664,-1168,-1197,-1231], +[0,-1889,-775,-3583,-12128,-6445,-12129], +[1,3,7066], +[0,7067,7068,7069,9], +[0,-1333,-3187,-1889,-1929], +[0,-8281,-518,-664,-708,-932,-940,-954,-8286,-961,-965,-8287,-967,-971,-980,-7355,-1654,-8324,-1788,-12130,-1930,-12131, +-1942,-2281,-2282,-2289], +[0,-1889,-4132,-3264,-2476,-12132,-12133,-775,-1521,-2162,-3754,-12134,-2289], +[1,3,7071], +[0,7072,0,7073,10], +[0,-12063,-1934], +[0,-5182,-775,-6527,-12135,-5399,-7036,-1889,-3583,-9804,-3576], +[1,3,7075], +[0,7076,7077,7078,10], +[0,-1934,-12061,-2114], +[0,-519,-652,-932,-12062,-967,-1110,-1889,-1930,-1942,-2289], +[0,-775,-1889,-3583,-6024,-12136,-1764], +[1,3,7080], +[0,7081,0,7082,4], +[0,-1532], +[0,-1889,-12137,-12138], +[1,3,7084], +[0,7085,7086,7087,5], +[0,-1431,-2177,-755], +[0,-824,-1415,-1521,-2162,-1344,-1623,-12139,-774,-932,-784,-825,-1110,-1889,-2289,-2375,-2379,-2501,-1942,-767,-21,-190, +-533,-2790,-2269,-23,-1522,-1534,-1771,-2163,-12140,-1906,-1916,-86,-965,-3560,-2251,-40,-2411,-959,-1907,-958,-6929, +-978,-940,-967,-3748,-12141,-3307], +[0,-775,-1889,-9300,-2501,-5050], +[1,3,7089], +[0,7090,22,7091,6], +[0,-1934,-2280], +[0,-775,-1644,-7192,-1889,-3583], +[1,3,7093], +[0,7094,7095,7096,8], +[0,-635,-12069,-1931,-12142], +[0,-12070,-1889,-10815,-1899], +[0,-775,-7192,-1889,-3583], +[1,3,7098], +[0,60,22,7099,5], +[0,-775,-3827,-12143,-12144,-7192,-3583], +[1,3,7101], +[0,7102,22,50,10], +[0,-2840,-1934,-12142], +[1,3,7104], +[0,7105,22,7106,10], +[0,-635,-1934,-12142], +[0,-1889,-775,-3583,-1644,-7192,-5154], +[1,3,7108], +[0,7109,7110,7111,4], +[0,-783,-1931], +[0,-12145,-1889], +[0,-775,-1644,-7192,-1889,-3583,-12123], +[1,3,7113], +[0,7114,130,7115,10], +[0,-2773,-1931,-1934], +[0,-12146,-1889,-775,-3583], +[1,3,7117], +[0,90,0,7118,11], +[0,-1889,-775,-3583,-2162,-8893], +[1,3,7120], +[0,7121,0,7122,11], +[0,-12147,-98,-1931], +[0,-12148,-6599,-12149,-775,-12115,-12119,-8893,-12150,-1889,-3583,-8199,-12123,-4682,-4683,-4132,-5387], +[1,3,7124], +[0,7125,7126,7127,5], +[0,-12151,-12152,-12153], +[0,-12154,-635,-1889,-1906,-2127], +[0,-1889,-775,-3583,-12155,-6413,-12156], +[1,3,7129], +[0,0,22,7130,6], +[0,-1889,-775,-3583,-9791], +[0,60,22,50,4], +[1,3,7133], +[0,60,22,50,11], +[1,3,7135], +[0,242,22,50,8], +[1,3,7137], +[0,60,22,7138,4], +[0,-775,-6811,-7192,-7193,-1889,-3583,-2435], +[1,3,7140], +[0,7141,22,50,5], +[0,-1934,-12142], +[1,3,7143], +[0,0,7144,7145,4], +[0,-1344,-1654,-1889,-1405,-1942,-1534,-1916], +[0,-1889,-5899,-12123,-3583,-775,-3585,-3862], +[1,3,7147], +[0,7148,0,7149,5], +[0,-12157,-5297,-12158,-12159,-12160,-12161,-12162,-12163,-12164,-12165,-12166,-12167,-12168,-12169,-12170,-96,-12171, +-12172,-12173,-12174,-12175,-12176,-12177,-12178,-12179,-12180,-12181,-12182,-12183,-97,-12184,-12185,-12186,-12187, +-12188,-12189,-12190,-12191,-12192,-12193,-12194,-518,-635,-12195,-12196,-12197,-782,-12074,-12198,-1892,-12077,-12080, +-1896,-1897,-1898,-12199,-12200,-2579,-12201,-12084,-12202,-1905,-12203, +-12204,-1917,-2635,-12205,-12206,-12207,-12088,-12090,-12092], +[0,-775,-12119,-7186,-6309,-12208,-2634,-1889,-3583,-4682,-4683,-7187,-5387], +[1,3,7151], +[0,7152,7153,50,8], +[0,-635,-12069], +[0,-12070,-1329,-1889], +[1,3,7155], +[0,0,0,7156,4], +[0,-775,-1889,-12209,-3215,-8947], +[1,3,7158], +[0,0,0,7159,4], +[0,-775,-1889,-12209,-3215,-3754,-2162], +[1,3,7161], +[0,7162,7163,7,11], +[0,-783,-9649], +[0,-21,-23,-32,-4952,-26,-40,-43,-519,-535,-6831,-825,-932,-958,-1107,-1646,-1788,-1889,-2177,-2410], +[1,3,7165], +[0,7166,7167,7168,8], +[0,-1934,-2303], +[0,-12072,-1889], +[0,-775,-1644,-7192,-1889,-3583,-3839,-2303], +[1,3,7170], +[0,90,22,50,4], +[1,3,7172], +[0,0,7173,7174,4], +[0,-932,-1344,-1534,-1942,-2320,-2322], +[0,-1889,-5846,-3215], +[1,3,7176], +[0,7177,0,7178,4], +[0,-12210,-12211,-12212,-12213,-12214,-12215,-12216,-2387], +[0,-6321,-10425,-11940,-1857,-7685,-7773,-9879,-3323,-3445,-11941,-10424,-2410,-3018,-985], +[1,3,7180], +[0,7181,7182,7183,4], +[0,-4256,-4255], +[0,-86,-9404,-652,-664,-665,-667,-740,-1344,-1448,-1534,-1654,-2250], +[0,-3264,-6597,-9727,-3215,-6408,-12217,-12056,-3277,-12218], +[1,3,7185], +[0,7186,0,7187,5], +[0,-12219,-2446,-1523,-1525,-2347,-12220,-1524,-12221,-1729,-12222,-12223,-2062,-12224,-12225], +[0,-7773,-11304,-1937], +[1,3,7189], +[0,7190,7191,7192,4], +[0,-5830,-12226,-12227,-12228,-2546], +[0,-526,-566,-3067,-551,-558,-633,-3346,-12229,-1003,-1471,-1475,-10495,-1479,-1482,-12230,-1654,-12231,-7718,-1991,-2111, +-2177], +[0,-1938,-507,-5855,-4004,-3634,-3217,-3272], +[1,3,7194], +[0,7195,7196,7197,6], +[0,-769,-9798,-2518], +[0,-509,-1405,-1654], +[0,-5889,-3322,-1764,-1939,-12232,-11727,-4004,-3113], +[1,3,7199], +[0,0,7200,7201,11], +[0,-12233,-12234,-23,-3408,-5321,-40,-43,-2581,-3035,-3621,-3037,-4372,-5286,-3899,-12235,-664,-756,-767,-12236,-928, +-1344,-12237,-1637,-1654,-1772,-8065,-10105,-1967,-5037,-2210,-2211,-2334,-2410,-2426,-2466,-2469,-4881], +[0,-1940,-2006,-3160,-3477,-12238,-9613,-3098,-12239,-3577,-3161], +[1,3,7203], +[0,7204,27,57,5], +[0,-668,-679,-1078,-7885], +[1,3,7206], +[0,7207,7208,7209,4], +[0,-12240,-3896,-1618], +[0,-8918,-3307,-350,-4062,-351,-3136,-4251,-427,-428,-721,-932,-940,-967,-1344,-1415,-12241,-12242,-1942,-2127,-2251, +-2334,-2379,-2410], +[0,-1942,-3862,-1446,-8222], +[1,3,7211], +[0,0,7212,7213,6], +[0,-3037,-12243,-519,-1942,-2410,-5627], +[0,-1942,-12244,-2410,-12245,-12246], +[1,3,7215], +[0,7216,7217,7218,8], +[0,-7969], +[0,-1772,-1942], +[0,-10484,-3862,-1942], +[1,3,7220], +[0,0,7221,7222,6], +[0,-4066,-350,-351,-3037,-519,-1942,-2127,-2141,-2299,-2379,-2387,-2410], +[0,-1942,-2299], +[1,3,7224], +[0,7225,0,7226,6], +[0,-12247,-1548,-2001], +[0,-1942,-727], +[1,3,7228], +[0,0,14,7229,4], +[0,-3240,-651,-6472,-1044,-8799,-6656,-8574,-12248,-8800,-12249,-6582,-12250,-9782,-12251], +[1,3,7231], +[0,7232,7233,7234,8], +[0,-1548,-12252], +[0,-664,-710,-711,-12253,-1654], +[0,-3240,-6324,-12254,-812,-12255,-8800,-5598,-9361,-3276,-8574], +[1,3,7236], +[0,7237,7238,7,5], +[0,-4046,-482,-2029], +[0,-3040,-6633,-3081,-1361,-1427,-2006,-2019,-2052], +[1,3,7240], +[0,7241,14,7242,6], +[0,-12256], +[0,-3240,-9361,-8574,-9854,-12248,-8800,-4123,-1681,-12257,-7219,-12258,-7434,-5554,-2265,-6240,-12259], +[1,3,7244], +[0,7245,0,7246,6], +[0,-3446,-2387,-1353,-3535,-1864,-12260,-1863], +[0,-5889,-12261,-12262,-1942,-1952,-5538,-707,-12263,-12232], +[1,3,7248], +[0,7249,7250,7251,5], +[0,-714,-1646], +[0,-1654,-1452,-2198,-1405,-756,-1657], +[0,-4055,-687,-5538,-714], +[1,3,7253], +[0,7254,7255,7256,5], +[0,-1692,-10425,-2961,-12264,-12265,-12266], +[0,-1816,-2564,-1313,-1415,-1805,-999,-1496,-12267,-1852,-865,-3913,-6570,-679,-1077,-367,-7043,-5672,-1424,-1575,-1729, +-12268,-2269,-12269,-2410,-3136,-3037,-10624,-12270,-511,-1101,-12271,-1769,-12272,-12273,-12274,-12275,-12276,-10419, +-12277,-3048,-12278,-4835,-4106,-12279,-12280,-12281,-5038,-12282,-12283,-12284,-12285,-12286,-8863,-12287,-12288,-12289, +-5782,-12290,-12291], +[0,-4340,-12292,-12293,-12294,-12295,-7685,-7773,-7485,-12296,-4165,-12297,-12298,-12299,-1857,-12300,-12301,-12302, +-12303,-12304,-12305,-12306,-12307,-12308,-12309], +[1,3,7258], +[0,0,7259,7260,4], +[0,-4201,-589,-664,-12310,-824,-12311,-932,-960,-971,-1168,-1184,-1187,-1208,-2915,-1243,-1244,-12312,-1273,-1333,-1339, +-1449,-1654,-1729,-1771,-1942,-1976,-8318,-8319,-12313,-2091,-8320,-2205,-12314,-2550], +[0,-12315,-4131], +[1,3,7262], +[0,7263,7264,7265,8], +[0,-615,-617,-714,-1004,-1576,-1650,-1666,-12316,-1813,-1850,-12317], +[0,-664,-1168,-1231,-1663,-2150,-2210,-2211,-2291], +[0,-622,-6011,-11722,-7737,-7736,-3324,-5889,-12318,-5897], +[1,3,7267], +[0,0,29,7,4], +[1,3,7269], +[0,0,7270,7271,6], +[0,-2568,-1654], +[0,-1958], +[1,3,7273], +[0,0,0,7274,7275], +[0,-687,-1959], +1769904000000, +[1,3,7277], +[0,7278,0,7279,4], +[0,-668,-1959], +[0,-2501,-3862,-1959,-10677], +[1,3,7281], +[0,7282,7283,7,8], +[0,-11744], +[0,-461,-2125,-1405], +[1,3,7285], +[0,0,7286,7287,6], +[0,-633,-767,-932,-4693,-1344,-1471,-1472,-1475,-1482,-1534,-1654,-1771,-1942,-2125,-2127,-2143,-2210,-2491,-2410], +[0,-1961,-1962,-6948,-6306], +[1,3,7289], +[0,7290,226,7291,4], +[0,-1654,-2210,-2424], +[0,-5923,-6306], +[1,3,7293], +[0,89,7294,57,6], +[0,-891,-1050,-1654,-1941], +[1,3,7296], +[0,7297,7298,7299,6], +[0,-5758,-510,-2059,-5975,-2520], +[0,-932,-2471], +[0,-1965,-3958,-12319,-3926], +[0,7301,7302,7303,6], +[0,-1496,-12320], +[0,-21,-23,-36,-40,-2320,-2322], +[0,-3160,-1966,-687,-1965,-3964,-3958,-3962,-3957,-3972,-3824,-3955,-12321], +[1,3,7305], +[0,7306,7307,41,5], +[0,-1580,-1792,-2029], +[0,-533,-560,-633,-647,-932,-1365,-1415,-2006,-12322,-12323], +[1,3,7309], +[0,0,7310,7311,11], +[0,-4251,-3037,-12324,-652,-1318,-12325,-12326,-1942,-2094,-2100,-12327,-12328,-2399,-2410,-7669,-2541], +[0,-11876,-9681,-3264,-4675,-8041,-7153,-3839], +[1,3,7313], +[0,7314,7315,7316,5], +[0,-12329,-12330,-12331,-12332,-12333,-12334,-12335,-12336,-12337,-12338,-3037,-1578], +[0,-589,-633,-12339,-647,-668,-931,-932,-986,-988,-1103,-11426,-12340,-9208,-1168,-1208,-1212,-1252,-1262,-1446,-1646, +-1788,-2080,-2322,-2388,-2410,-2416,-2461,-2462,-2463], +[0,-12341,-12342,-12343,-2410], +[1,3,7318], +[0,7319,7320,7321,5], +[0,-12344,-11458,-2729,-2734,-668,-1107,-1412,-2779,-1980,-5471,-2173,-2234,-2818,-2819,-2550], +[0,-3711,-3036,-9705,-12345,-8566,-3037,-617,-664,-665,-11477,-1003,-1004,-1168,-12346,-1260,-1452,-1548,-1610,-1654, +-12347,-2125,-2150,-2177,-2388,-12348,-2410,-12349], +[0,-475,-4004,-3634,-11468,-12350,-11467], +[1,3,7323], +[0,7324,7325,7326,4], +[0,-4377,-12351,-812], +[0,-12352,-3198,-3136,-3037,-511,-1415,-2375,-2410,-9056], +[0,-1334,-1342,-1971,-729,-7680,-12353,-12354,-7827,-12355,-12356,-12357], +[1,3,7328], +[0,7329,7330,231,4], +[0,-12358,-12359,-2114], +[0,-1654,-12360,-2198,-2210,-2250], +[1,3,7332], +[0,7333,7334,7335,5], +[0,-668,-12361,-12362,-1376,-1392,-1548,-1639,-1728,-1820,-2177], +[0,-526,-555,-558,-824,-932,-940,-1362,-1405,-1650,-1654,-1661,-1942,-2125,-2198], +[0,-1168,-1764,-8403,-5897,-3551], +[1,3,7337], +[0,7338,7339,7340,10], +[0,-12363,-12364,-12365,-12366,-12367,-12368,-12369,-12370], +[0,-1650,-2125,-10011,-10009,-10013,-10014,-12371,-12372,-10010], +[0,-3264,-1409,-1974,-3110], +[1,3,7342], +[0,0,7343,7,4], +[0,-589,-11080,-1021,-1948,-12373,-2320,-2322], +[1,3,7345], +[0,7346,0,7347,4], +[0,-908,-1801], +[0,-8027,-11441,-7412,-5865], +[1,3,7349], +[0,0,7350,7351,4], +[0,-708,-1788,-1654], +[0,-1977,-4112,-12374,-12375,-12376,-2435,-12377], +[1,3,7353], +[0,7354,91,7355,5], +[0,-7591,-12378,-755,-11460,-12379,-12380], +[0,-1978,-10366,-11878,-4864], +[1,3,7357], +[0,7358,0,7359,8], +[0,-719,-1026,-1889,-1931], +[0,-7175,-7036,-6694,-7441,-775,-3264,-8199,-12381,-9487,-7725], +[1,3,7361], +[0,0,7362,7363,9], +[0,-1127,-1452,-1612,-1132,-1414,-1148,-1963], +[0,-1980,-1961,-5923,-6305,-6306,-6307,-6309,-510,-6310,-12382,-4865,-3966], +[1,3,7365], +[0,0,0,7366,10], +[0,-6935,-12383,-6934,-7715,-3839,-6527], +[1,3,7368], +[0,0,0,7369,4], +[0,-5514,-4111,-6935,-4000], +[1,3,7371], +[0,7372,7373,7374,4], +[0,-7397], +[0,-12384,-12385,-5834,-633,-647,-12386,-887,-921,-932,-993,-1065,-1107,-8080,-12387,-11104,-7402,-1283,-1351,-1365,-1408, +-1431,-1650,-1659,-6374,-1777,-1788,-1794,-8385,-2156,-9786,-2322,-12388], +[0,-1985,-1983,-5101,-2435,-1838,-6231], +[1,3,7376], +[0,7377,7378,7379,4], +[0,-12389,-12390,-12391], +[0,-519,-589,-821,-1023,-2384,-2541], +[0,-4865,-1985,-5101,-2265,-1983,-12392,-12393,-2435,-1838,-6231,-6422,-6420,-12394,-7724], +[1,3,7381], +[0,0,7382,7383,4], +[0,-4004,-12395,-2322], +[0,-4791,-5101,-1985], +[1,3,7385], +[0,0,7386,7387,4], +[0,-652,-1339,-12396], +[0,-1986,-510,-6235,-12397,-5418,-4107,-11866,-5920], +[1,3,7389], +[0,119,120,7390,4], +[0,-1986,-11868,-12398,-12399,-12400,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-5418,-12401,-1986,-12402,-12403, +-12404,-10587,-11866,-12405,-11049,-7530,-7283,-12406,-6582,-7534,-7535,-7536,-7537,-7538,-7539,-7540,-7541,-7542,-7543, +-7544,-7545,-7503,-12407,-7547,-7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558,-7559,-5063, +-7560,-1980,-12408,-5839,-11450,-12409, +-5737,-12410,-2634,-3966,-12411,-11052,-6187,-7563,-856,-7275], +[1,3,7392], +[0,7393,7394,7395,4], +[0,-1549,-12412,-12413,-996], +[0,-1107,-2303,-1449,-932,-2286,-2469,-2379,-2501,-1942,-2376,-21,-778,-2410,-23,-3037,-1322,-2503,-534,-1304,-2275,-2287, +-2508,-3046,-5286,-3983,-3164,-40,-2233,-2505,-12414,-1331,-958,-2335,-940,-962,-967,-1643,-42,-12415,-428,-8561,-12416, +-427,-4011,-948], +[0,-1988,-3496,-3495,-3494,-3505,-3506,-3161], +[1,3,7397], +[0,7398,7399,7400,11], +[0,-719,-10988,-1747], +[0,-1788,-1127,-1496,-932,-2125,-2127,-2177,-589,-1054,-12417,-2111,-1972,-8573,-23,-12418,-40,-957,-966,-1138,-8022, +-9544,-3326,-952,-958,-12419,-968,-1137,-3561,-943,-963,-350,-942,-351,-12420,-3840], +[0,-3634,-5119,-507,-5855,-2319,-2322,-1471,-1437], +[1,3,7402], +[0,7403,7404,7405,8], +[0,-12421], +[0,-2832,-12422,-427,-428,-3664,-549,-558,-726,-932,-940,-967,-6726,-8011,-1942,-2910,-1989,-2091,-12423,-2127,-4063, +-2142,-2410,-2469,-2501], +[0,-4865,-5092,-3264,-1989,-12424,-3634], +[1,3,7407], +[0,7408,7409,7410,4], +[0,-679,-719,-12425,-1048,-12426,-2114,-2488], +[0,-510,-537,-559,-12427,-705,-10255,-10260,-957,-8022,-999,-1054,-1077,-1127,-1132,-1133,-1137,-1138,-9544,-1149,-9240, +-1152,-10257,-9241,-10644,-12418,-1542,-1972,-2111,-2128,-2177], +[0,-3634,-5119,-1437], +[1,3,7412], +[0,7413,7414,7415,9], +[0,-1856], +[0,-12428,-633,-2322], +[0,-12429,-3582], +[1,3,7417], +[0,0,7418,7419,5], +[0,-21,-23,-40,-43,-47,-3326,-10022,-12430,-571,-589,-693,-767,-12431,-932,-958,-1023,-1276,-1442,-1654,-1771,-1788,-2125, +-2127,-2143,-12432,-12433,-2210,-2342,-12434], +[0,-1993,-5112,-5260,-8113,-3481,-11639,-12435,-12436,-12437,-9976,-12438], +[1,3,7421], +[0,7422,27,7423,6], +[0,-2172], +[0,-6555,-12439,-12439,-10781,-3262,-12440,-5554], +[1,3,7425], +[0,177,7426,7427,5], +[0,-1859,-2250,-2320,-2322,-2568], +[0,-770,-6555], +[1,3,7429], +[0,7430,27,7,10], +[0,-1995], +[1,3,7432], +[0,0,172,7433,9], +[0,-7434,-3215,-1334], +[1,3,7435], +[0,7436,7437,7438,6], +[0,-1616,-2446,-743,-12441,-2249], +[0,-1107,-1722,-1654,-2210,-932,-2198,-1405,-1942,-710,-940], +[0,-11428,-8980,-12442,-5545,-1998,-12443], +[1,3,7440], +[0,7441,7442,7,5], +[0,-651,-12444,-1351,-1335], +[0,-1788,-1654,-932,-615,-2884,-2155,-2062,-3748,-5029], +[1,3,7444], +[0,205,7445,48,5], +[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-967,-1344,-1415,-1534,-1623,-1771,-1942,-2251, +-2501], +[1,3,7447], +[0,7448,0,7449,4], +[0,-1371,-1646,-822,-2271], +[0,-727,-2001,-11642,-10659], +[1,3,7451], +[0,7452,7453,7454,5], +[0,-44,-682,-2004], +[0,-12445,-407,-409,-3059,-3136,-3037,-3040,-3052,-6265,-767,-881,-932,-959,-978,-1031,-12446,-1103,-1107,-1521,-1763, +-12447,-2003,-4946,-2006,-2019,-2082,-2410], +[0,-2006,-3159,-12448,-12449,-3962,-7434], +[1,3,7456], +[0,7457,7458,7459,5], +[0,-44,-5650,-682,-2004], +[0,-12445,-409,-3136,-3040,-3052,-4972,-767,-881,-932,-978,-1031,-1103,-1521,-1763,-12447,-2006,-2019,-2410], +[0,-2006,-3159,-12450,-3821], +[1,3,7461], +[0,7462,7463,7464,5], +[0,-44,-2029], +[0,-12445,-409,-3136,-3037,-3040,-3052,-6633,-12451,-4972,-6265,-761,-767,-881,-932,-959,-978,-1031,-1107,-1344,-1534, +-1763,-1942,-12447,-2006,-2019,-2410], +[0,-2006,-2444], +[1,3,7466], +[0,0,0,41,10], +[1,3,7468], +[0,7469,0,245,10], +[0,-2055], +[1,3,7471], +[0,7472,7473,245,5], +[0,-1792], +[0,-1415,-2006,-2019,-2501], +[1,3,7475], +[0,7476,7477,7478,5], +[0,-12453,-12454,-12455,-12456,-12457], +[0,-2127,-2410], +[0,-3321,-1122,-2006,-3322,-8977,-3098], +[1,3,7480], +[0,7481,0,7,11], +[0,-1992,-753,-1961,-2516,-1792,-2082], +[1,3,7483], +[0,7484,0,7485,4], +[0,-2489,-1384,-682,-1967,-12458,-860,-44,-12459,-12460,-12461,-3140,-2055,-3024], +[0,-620,-2006,-3095,-3098,-12462,-3159], +[1,3,7487], +[0,7488,7489,7490,5], +[0,-12463,-1548,-1549,-12464,-1967,-12465,-2355], +[0,-12466,-12467,-6263,-6264,-4749,-526,-527,-533,-534,-12468,-559,-560,-562,-566,-664,-12469,-778,-915,-994,-1033,-1304, +-1322,-1331,-1347,-1415,-1417,-12470,-1654,-1762,-1764,-1792,-2006,-8934,-12471,-2019,-2024,-12472,-2052,-2102,-2109, +-2125,-2275,-12473,-2501,-2505], +[0,-2006,-12474,-3159,-8597,-4122,-12475,-10366,-12476,-3119,-3825], +[1,3,7492], +[0,7493,7494,7495,9], +[0,-747,-1967], +[0,-21,-23,-32,-26,-36,-40,-41,-43,-534,-553,-778,-827,-932,-933,-958,-962,-969,-970,-1103,-1331,-12477,-1643,-2006,-2019, +-2275,-2322,-2501,-2503,-2505], +[0,-3095,-3159,-2006,-12478,-699], +[1,3,7497], +[0,7498,7499,7500,9], +[0,-2852,-703,-807], +[0,-23,-32,-3192,-3840,-26,-40,-41,-42,-190,-12479,-3326,-350,-351,-3266,-3267,-406,-409,-410,-3330,-3136,-4961,-3037, +-3040,-3052,-427,-428,-522,-533,-553,-753,-12480,-932,-940,-958,-959,-969,-970,-9724,-1344,-1415,-4980,-1416,-1419,-1534, +-1548,-1942,-2006,-2019,-2127,-5090,-2162,-2223,-2281,-2282,-3436,-2285,-2375,-2387,-2410,-2411], +[0,-2006,-4222,-4120,-4121,-3159], +[1,3,7502], +[0,7503,7504,7,5], +[0,-1805,-668,-1359,-1111,-1872,-6558,-1047,-12481,-1966,-1044,-1273,-2269,-2343,-769,-2194,-635,-1543,-6197,-12482,-22, +-2070,-2021,-930,-1067], +[0,-1415,-767], +[1,3,7506], +[0,7507,7508,7,6], +[0,-12483,-12484,-12485,-1025,-1311], +[0,-4010,-367,-409,-5220,-3136,-3037,-3040,-3052,-1415,-5129,-1771,-2006,-2019,-2200,-2410], +[1,3,7510], +[0,7511,7512,7,8], +[0,-12485], +[0,-4010,-367,-3136,-1771,-2200,-2410], +[1,3,7514], +[0,7515,0,7516,4], +[0,-2114,-8245,-23,-47,-4096,-3200,-46,-12486,-4776,-10101], +[0,-2006,-856,-12487], +[1,3,7518], +[0,7519,0,41,4], +[0,-2166], +[1,3,7521], +[0,7522,7523,7524,4], +[0,-12488,-12489,-1967], +[0,-21,-23,-32,-3840,-12490,-34,-12491,-6065,-5584,-12492,-38,-40,-41,-43,-86,-9404,-12493,-10709,-3326,-350,-351,-3470, +-7040,-3472,-7041,-7042,-5295,-4774,-12494,-406,-407,-409,-2622,-3040,-3052,-427,-428,-533,-535,-536,-720,-767,-932,-940, +-958,-962,-966,-967,-969,-970,-1344,-12495,-1357,-1415,-1534,-1609,-1868,-1942,-2006,-2019,-2049,-2052,-2125, +-2127,-2140,-2174,-2214,-2275,-2278,-2410,-2501,-12496], +[0,-3159,-2006,-7581,-7582,-7764], +[1,3,7526], +[0,0,7527,7528,4], +[0,-22,-23,-2624,-533,-534,-561,-668,-679,-767,-1059,-1320,-1415,-12497,-1792,-1961,-2000,-2006,-2010,-2019,-2125,-12498, +-2231,-2501], +[0,-12499,-4132,-6324,-5547,-6335,-12500,-12501,-2489], +[1,3,7530], +[0,7531,7532,7533,4], +[0,-1792,-1967,-2798,-12502], +[0,-527,-528,-537,-539,-546,-551,-558,-560,-664,-708,-740,-796,-932,-12503,-940,-958,-962,-964,-967,-969,-1405,-1471, +-1474,-12504,-1475,-1476,-1479,-12505,-1482,-1486,-1490,-1491,-11508,-1654,-1942,-2006,-2019,-2125,-2127,-2128,-2131, +-2137,-2138,-2210,-2211], +[0,-2022,-12506,-2006,-10855,-12507,-12508,-12509,-10606,-11729,-3956,-12510,-5553], +[1,3,7535], +[0,0,7536,7537,4], +[0,-3615,-262,-350,-351,-3266,-367,-7043,-407,-409,-3136,-3037,-3040,-3052,-3563,-795,-932,-940,-3071,-967,-969,-970, +-4814,-1344,-1415,-1419,-12511,-2781,-1534,-1942,-2006,-2019,-2125,-2127,-2142,-2384,-2410,-2411,-2516,-2564], +[0,-2006,-3322,-4053,-4054,-12512,-3926,-2410,-4124], +[1,3,7539], +[0,7540,7541,7542,6], +[0,-10579,-1109,-1311,-1543,-1967,-2030,-2192,-2231], +[0,-3795,-3040,-3807,-526,-527,-528,-533,-536,-537,-546,-551,-556,-558,-560,-708,-6019,-761,-767,-915,-12513,-916,-932, +-933,-940,-958,-962,-969,-1344,-1415,-1534,-1942,-2006,-2019,-12514,-2052,-2069,-2125,-2127,-2128,-2131,-2133,-2137, +-2138,-2143,-2251,-12515], +[0,-2006,-3214,-2501,-6211,-1540,-12516,-10589,-12517,-5932,-11492], +[1,3,7544], +[0,7545,7546,7547,6], +[0,-44,-2770,-12518], +[0,-21,-23,-32,-12519,-36,-3204,-38,-39,-40,-41,-43,-3326,-350,-351,-3561,-3266,-406,-407,-409,-3136,-3040,-3664,-7465, +-527,-3766,-6046,-756,-757,-767,-932,-933,-940,-958,-12520,-962,-969,-976,-1278,-1344,-1349,-1534,-1650,-1942,-2006, +-2019,-2052,-2125,-2127,-2410,-2469,-2550], +[0,-1349,-9780,-1348,-9781,-9782,-9772,-9783,-2006,-3476], +[1,3,7549], +[0,0,7550,7551,10], +[0,-2832,-2581,-5295,-407,-409,-3037,-3040,-3052,-440,-2970,-3899,-8349,-1534,-1637,-1771,-1874,-2910,-2006,-2019,-3246, +-2214,-2391,-2410,-2469], +[0,-2006,-3095,-3322,-12521,-12522,-12523,-12524,-12525,-12526,-12527], +[1,3,7553], +[0,7554,0,7555,4], +[0,-5220,-1311,-2387,-12528,-12529,-12530,-12531], +[0,-3276,-5538,-9783,-1348,-9780,-1382,-12250,-9782,-2006,-3476,-3940,-9781], +[1,3,7557], +[0,0,0,41,6], +[1,3,7559], +[0,0,7560,7,5], +[0,-656,-668,-932,-12532,-1415,-1417,-1942,-2127,-2138,-2143], +[1,3,7562], +[0,7563,7564,7565,6], +[0,-5334,-4251,-9596,-1291,-2632,-1619,-2098,-2101,-2427,-2429,-5358], +[0,-409,-3037,-3040,-3052,-652,-725,-928,-969,-4652,-1942,-2006,-2019,-2088,-12533,-2094,-2095,-2100,-4656,-2399,-2410, +-2541], +[0,-3272,-8630,-3095,-4329,-1599,-2006,-3159,-2093,-2427], +[1,3,7567], +[0,7568,7569,7570,5], +[0,-12534,-1967,-2030,-2489], +[0,-12535,-526,-527,-528,-534,-535,-558,-560,-564,-756,-767,-932,-940,-12416,-958,-962,-967,-969,-5997,-1471,-1475,-1476, +-1479,-1482,-1483,-1490,-1492,-1654,-1771,-1942,-2006,-2019,-2043,-2044,-2198,-2416,-2501,-2503,-2505], +[0,-2006,-3159,-4126,-12536], +[1,3,7572], +[0,7573,7574,7575,5], +[0,-1856,-1967,-1992], +[0,-525,-12537,-527,-528,-534,-709,-778,-932,-933,-949,-958,-962,-969,-1059,-11942,-12538,-12539,-1413,-1471,-1476,-1481, +-12540,-1484,-1492,-12541,-1859,-2024,-2275,-2501,-2505], +[0,-2006,-3095,-3159,-12542,-12543,-12544,-12545,-5176,-12546,-3160], +[1,3,7577], +[0,7578,0,246,4], +[0,-2531,-2624,-2550,-2177,-1961,-578,-719,-1384,-2166,-481,-533,-12547,-2654,-1624,-2516,-12548,-1950,-2041,-12549,-458, +-12550,-11463,-12551,-9870,-2082,-12552,-1421,-12553,-12554,-12555,-12556,-12557,-12558,-12559,-12560], +[1,3,7580], +[0,0,7581,7582,4], +[0,-12563,-12564,-12565,-932,-967,-1942,-2006,-2034,-12566,-2410], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-12568], +[1,3,7584], +[0,7585,7586,7587,6], +[0,-2550,-1967], +[0,-2006,-932,-12569,-12570,-1387,-1942,-4731,-21,-12571,-23,-528,-1064,-12572,-9081,-12573,-12574,-12575,-12576,-12577, +-969,-933,-958,-940,-962,-967,-970,-3156], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-12578,-7084,-12579,-3160,-3167,-3843,-9472,-9474,-3827], +[1,3,7589], +[0,0,7590,7591,9], +[0,-21,-23,-26,-36,-3203,-40,-41,-43,-12580,-2685,-8471,-261,-6429,-3267,-407,-409,-410,-3040,-428,-528,-534,-535,-3090, +-682,-703,-767,-932,-940,-949,-958,-969,-1103,-1449,-1613,-6519,-1942,-4130,-2006,-2019,-12581,-2127,-2128,-2131,-5090, +-2134,-2137,-2138,-2143,-2376,-2410,-2469,-2501,-2503,-2505], +[0,-3159,-2006,-12582,-3962,-6240,-12583,-6769], +[1,3,7593], +[0,0,7594,7595,4], +[0,-23,-26,-36,-40,-6035,-3326,-528,-534,-664,-932,-1344,-1534,-1654,-1771,-1942,-2006,-2019,-2052,-12584,-2125,-2127, +-2501], +[0,-2006,-12585,-12586,-12587], +[1,3,7597], +[0,0,7598,7599,4], +[0,-4066,-12588,-932,-12589,-967,-12590,-1415,-1942,-2127,-2410], +[0,-2039,-3264,-3839,-5092,-7153,-9681,-727,-2006,-2019], +[1,3,7601], +[0,7602,7603,7604,5], +[0,-12591,-12518], +[0,-262,-349,-406,-407,-409,-3037,-3140,-3040,-3052,-708,-767,-932,-940,-948,-958,-967,-969,-1449,-1942,-2006,-2019,-2074, +-2125,-2391,-2410,-2411,-2469], +[0,-2006,-3476,-2074], +[0,0,0,41,4], +[1,3,7607], +[0,7608,7609,7610,4], +[0,-1346,-12592,-1967,-5582], +[0,-3267,-3035,-12593,-4647,-12594,-12595,-3621,-3040,-3052,-4372,-427,-428,-664,-767,-932,-952,-1103,-1449,-12596,-1654, +-1942,-2006,-2019,-2125,-2127,-5405,-2198,-2210,-2387,-2392,-2402,-2410], +[0,-775,-3159,-12521,-2006,-3162,-12597,-12598,-3580,-12599,-3576,-3095], +[1,3,7612], +[0,7613,7614,248,6], +[0,-743,-3169], +[0,-2391,-2006,-2426,-12600,-12601,-2019,-2410,-2052,-409,-1419,-3172,-407,-410], +[1,3,7616], +[0,7617,7618,248,10], +[0,-2043], +[0,-2391,-2006,-12600,-2019,-2410], +[1,3,7620], +[0,0,7621,7622,4], +[0,-526,-527,-528,-534,-9887,-9888,-556,-559,-560,-563,-566,-932,-941,-956,-958,-962,-969,-1001,-1306,-9413,-12539,-1471, +-1476,-1479,-1482,-1483,-1490,-1492,-1654,-2006,-2019,-2040,-2043,-2074,-12602,-12603,-12604,-2501], +[0,-2006,-2074,-3122], +[1,3,7624], +[0,7625,28,7,4], +[0,-594,-1415,-865,-932,-2177,-1889,-1966,-2114,-2501,-1077,-1080,-656,-533,-778,-23,-1041,-2163,-2318,-534,-635,-1426, +-2275,-366,-866,-2041,-1908,-2015,-1918,-2233,-1352,-1927,-2010,-2116,-2505,-1331,-1428,-10049,-2335,-561,-1903,-2526, +-941,-1643,-2507,-779,-542,-661,-2695], +[1,3,7627], +[0,7628,7629,7630,11], +[0,-44,-3772,-3778,-3819,-3024,-1624,-1967,-2055,-3820], +[0,-5131,-915,-2760,-5116,-2006,-2019], +[0,-12605,-4053,-3962,-12606,-2006,-3159,-6750,-3160], +[1,3,7632], +[0,7633,7634,7635,5], +[0,-682,-12607,-1553,-2113], +[0,-21,-23,-32,-26,-39,-40,-41,-12608,-407,-409,-410,-3037,-518,-527,-533,-534,-557,-778,-823,-824,-923,-932,-958,-969, +-1004,-12609,-1168,-1243,-1344,-1415,-1419,-1440,-1455,-1534,-1812,-1908,-1942,-1992,-2006,-2019,-2082,-2210,-12610, +-2275,-2417,-2501,-2503,-2505,-12611], +[0,-12612,-12613,-12614,-12615,-12449,-3159], +[1,3,7637], +[0,7638,7639,7640,5], +[0,-12616,-3081,-12617,-461,-6426,-507,-5223,-639,-684,-12618,-703,-12619,-748,-753,-8245,-12620,-925,-930,-931,-989, +-11676,-5504,-12621,-3649,-1107,-12622,-1284,-1395,-12623,-12624,-12625,-12626,-12627,-12628,-12629,-12630,-1496,-12631, +-1548,-9160,-1606,-12632,-3446,-1816,-1955,-1967,-12633,-12634,-2015,-2018,-12635,-12636,-12637,-2026,-5351,-2066,-2093, +-12638,-2335,-8299,-12639,-2429,-2505, +-2508], +[0,-21,-23,-26,-40,-6056,-41,-42,-407,-409,-12640,-12641,-12486,-12642,-426,-12643,-3136,-12644,-3044,-12645,-3037,-3803, +-3040,-3052,-12646,-12647,-3046,-12648,-3806,-427,-428,-527,-528,-533,-534,-778,-12310,-12649,-12650,-12651,-932,-12652, +-948,-952,-958,-962,-969,-1041,-1077,-1344,-1415,-12653,-1534,-1623,-1942,-1992,-2006,-2019,-2052,-12654,-2275,-2410, +-2437,-2501, +-2503], +[0,-2006,-4146,-4900,-4901,-856,-3671,-3262,-3095,-3098], +[1,3,7642], +[0,7643,7644,7645,4], +[0,-44,-401,-3140,-1967], +[0,-23,-38,-40,-41,-190,-6486,-3326,-350,-351,-3561,-3266,-409,-3136,-4647,-3037,-3040,-3052,-3714,-553,-2745,-932,-940, +-969,-970,-4814,-1110,-1415,-1419,-1722,-1772,-1942,-2006,-2019,-2127,-2195,-2200,-5091,-2375,-2379,-2410,-2411], +[0,-5092,-3264,-5093,-5094,-3214,-2006,-12655,-3839,-12656,-2410], +[1,3,7647], +[0,7648,0,7649,6], +[0,-1033], +[0,-12657,-2006,-2363,-826,-12658,-2051], +[1,3,7651], +[0,7652,0,7653,8], +[0,-2029,-2166], +[0,-2006,-2034,-12659], +[1,3,7655], +[0,108,7656,7657,5], +[0,-12660,-11184,-234,-405,-3037,-3040,-3052,-440,-756,-795,-2926,-1534,-1889,-1942,-2006,-2019,-2391,-2410,-2466,-12661], +[0,-2006,-4127,-12662,-3159,-2053,-5737,-12663,-12664,-12665], +[1,3,7659], +[0,7660,7661,7662,5], +[0,-12666,-12667], +[0,-589,-633,-647,-710,-12668,-3346,-913,-12669,-923,-932,-12670,-1127,-1132,-10258,-1134,-7849,-1137,-1144,-12671,-10265, +-12672,-1417,-1813,-1859,-6184,-12673,-2066,-9266,-2359,-2410,-2416,-12322,-2493], +[0,-2006,-4146,-8530,-6107], +[1,3,7664], +[0,7665,0,7666,10], +[0,-44,-860,-1580,-1967], +[0,-2006,-12546,-8111,-12674,-5176,-775,-12675], +[1,3,7668], +[0,7669,7670,7671,6], +[0,-703,-1967,-860,-1580,-44,-2030], +[0,-1415,-1344,-2006,-2490,-932,-2125,-2127,-708,-1889,-2501,-1059,-1103,-1942,-767,-1361,-1978,-2019,-21,-533,-709,-778, +-23,-1041,-1534,-1891,-2503,-518,-528,-534,-1952,-2043,-2275,-1908,-39,-11942,-12676,-2044,-40,-6056,-7748,-2505,-41, +-12677,-951,-969,-12678,-1331,-2052,-2128,-2143,-12679,-2138,-940,-956,-962,-967,-2131,-12680,-2137,-1017,-3840,-38, +-6057, +-12681,-26,-3204,-553], +[0,-2006,-3476,-3159,-9614,-4108,-12682,-12683,-12684,-4002,-12685,-5147,-12129,-6445,-4672,-9133], +[1,3,7673], +[0,7674,7675,7676,10], +[0,-2346,-2054], +[0,-1654,-1452,-2177,-6398,-633,-725,-12686], +[0,-2006,-633,-6340,-4146,-3756,-3862,-6408], +[1,3,7678], +[0,7679,7680,7681,5], +[0,-44,-2997,-682,-1967,-2804,-2055], +[0,-21,-23,-32,-34,-35,-36,-3204,-40,-41,-4757,-4762,-4754,-12687,-4749,-407,-409,-410,-3040,-528,-533,-534,-561,-620, +-726,-740,-10524,-767,-12688,-879,-888,-932,-933,-940,-956,-958,-962,-969,-4756,-12689,-1415,-1419,-1449,-1455,-1637, +-1942,-2006,-2019,-2022,-12690,-2043,-2052,-2410,-2501], +[0,-2058,-620,-2006,-3095,-3098,-3159,-3160], +[1,3,7683], +[0,7684,7685,7,4], +[0,-3950], +[0,-4298,-4300,-3952,-5866,-428,-652,-948,-2319,-2379,-2386,-2410], +[1,3,7687], +[0,7688,118,7689,8], +[0,-6902,-6904,-6990,-2400,-8803], +[0,-4055,-2059,-1838,-6656,-1076,-11998,-6994,-5897,-6811], +[1,3,7691], +[0,7692,14,7693,4], +[0,-8341,-2060,-2400], +[0,-4055,-2059,-1838,-6656,-1076,-11998,-6994,-5897,-5573,-8804,-1047,-5504,-8805,-8806,-7282,-5572,-2114,-8807,-6370, +-7420,-7421,-2487,-8808,-1847], +[1,3,7695], +[0,7696,7697,7698,9], +[0,-458,-640,-997,-1958,-6383], +[0,-23,-6065,-5584,-3244,-350,-6572,-351,-357,-633,-652,-928,-12691,-932,-943,-958,-965,-968,-1874,-1942,-2127,-9701, +-2319,-12692,-2322,-2323,-2426,-2501,-2503], +[0,-8800,-5827,-11441], +[1,3,7700], +[0,0,7701,7702,8], +[0,-2319,-1351], +[0,-2063,-12693,-6656], +[1,3,7704], +[0,0,0,7705,9], +[0,-2063,-12397,-9845,-1965,-3969,-5110,-687,-3975,-3957,-12694,-10394,-4116,-6301], +[0,68,15,16,5], +[1,3,7708], +[0,7709,7710,7711,5], +[0,-5223,-987,-2231,-12695,-2387], +[0,-23,-25,-40,-12696,-3036,-3621,-3037,-428,-932,-12670,-12697,-1107,-1534,-1654,-1942,-9880,-2410], +[0,-3272,-9306,-12698,-9308,-4132,-9307,-6747,-12699], +[0,67,15,16,8], +[1,3,7714], +[0,7715,125,7716,4], +[0,-2114], +[0,-4792,-5932,-5195,-8109,-12700], +[1,3,7718], +[0,7719,0,7720,4], +[0,-44,-12701,-1033,-1311,-2030,-5746], +[0,-2006,-12702,-3098,-12703,-3481,-8113,-12704], +[1,3,7722], +[0,124,27,7723,8], +[0,-7421,-12705], +[1,3,7725], +[0,7726,0,7727,6], +[0,-12706,-12707,-12708,-12709,-12710], +[0,-2071], +[1,3,7729], +[0,7730,7731,150,10], +[0,-3544,-3786,-1610,-3788,-1955,-2223,-1885,-863,-682,-1653,-1967,-3790,-3791,-3787,-3793,-996,-3789,-1848,-3792,-2680, +-12711], +[0,-1992,-2435,-1415,-1652,-1344,-2006,-2387,-915,-932,-2125,-753,-795,-1442,-1821,-2195,-2375,-2379,-3811,-2501,-1942, +-2019,-778,-2214,-2410,-3035,-3136,-3800,-3037,-3810,-2503,-3040,-3041,-1952,-2275,-3043,-3802,-3801,-3803,-3805,-3046, +-2760,-3808,-3809,-4773,-3797,-3052,-3140,-2278,-3806,-585,-2505,-3799,-748,-969,-1331,-958,-3798,-1419,-2509,-3804,-428, +-970,-740, +-3794,-1067,-427,-12712], +[1,3,7733], +[0,7734,7735,7736,4], +[0,-12713,-12714], +[0,-2006,-2501,-2019,-2410,-3040,-3052,-3859,-12715], +[0,-2072,-3438,-3690,-4847,-856,-12716,-858,-12717], +[1,3,7738], +[0,0,7739,7740,5], +[0,-23,-3037,-427,-428,-767,-4780,-932,-941,-948,-958,-969,-970,-1107,-12718,-1942,-2125,-2153,-2391,-2410,-2469], +[0,-2074,-4782,-4125,-12719,-5112,-1361,-12517,-12516,-12720,-1062,-12721], +[1,3,7742], +[0,7743,7744,7745,5], +[0,-12722,-12723], +[0,-12724,-12725,-12726,-1344,-1534,-1771,-1942,-2466,-2469,-2541], +[0,-1062,-2074,-10951,-12727], +[1,3,7747], +[0,7748,7749,7750,5], +[0,-1548,-2029,-924,-1384,-1398,-1967,-44,-1311], +[0,-2359,-1415,-1344,-2006,-2074,-932,-2125,-708,-2501,-1059,-1942,-767,-1361,-2019,-21,-821,-2214,-23,-12728,-1534,-2040, +-2503,-528,-534,-12729,-40,-41,-540,-951,-969,-6040,-2052,-958,-12726,-12730,-956,-962,-941,-2502,-970,-5295,-12416,-38, +-26,-3203], +[0,-2006,-3476,-1062,-2074,-2040,-2076,-4053,-11313], +[1,3,7752], +[0,7753,7754,7755,6], +[0,-819], +[0,-527,-537,-11899,-559,-664,-708,-932,-933,-958,-962,-969,-1339,-1344,-1654,-1788,-2074,-2125,-2127,-2128,-2131,-2137, +-2143,-2210], +[0,-2074,-3444,-2077,-5401], +[1,3,7757], +[0,7758,7759,7760,10], +[0,-12731], +[0,-23,-38,-39,-40], +[0,-3214,-2074,-5401,-12732,-12733,-12734], +[1,3,7762], +[0,0,7763,7764,5], +[0,-427,-428,-767,-932,-940,-1942,-2074,-2125,-2391,-2410,-2469], +[0,-2074,-12735,-5401,-12736,-1062], +[1,3,7766], +[0,0,7767,7768,4], +[0,-3035,-3621,-3037,-664,-824,-12737,-1168,-12738,-12739,-1231,-1243,-12740,-1259,-1654,-2410], +[0,-11313,-11872,-3214,-12741], +[1,3,7770], +[0,0,7771,7772,8], +[0,-708,-1127,-1162,-1405,-6186,-1991,-2111], +[0,-5569,-5570,-3214,-4112,-3262,-3673], +[1,3,7774], +[0,0,0,7775,4], +[0,-12742,-11997,-3262,-510], +[1,3,7777], +[0,7778,0,7779,6], +[0,-5334,-2087,-2090,-2427], +[0,-12743,-3272,-3264,-1838,-1958,-2083,-6233,-6231,-4132,-10919,-2427], +[1,3,7781], +[0,7782,7783,7784,5], +[0,-5334,-9581,-4264,-2766,-2427,-2429], +[0,-3037,-9586,-652,-12744,-1942,-2083,-2094,-2100,-2399,-2410,-2541], +[0,-2427,-2083,-12745,-3862,-10857,-10606,-3264], +[1,3,7786], +[0,7787,7788,7789,4], +[0,-5334,-9581,-2766,-12746,-2235,-2429], +[0,-3037,-9586,-652,-1942,-2083,-2094,-2100,-2399,-2410,-2541], +[0,-2427,-2083,-12745,-3862,-9589,-3264,-1599,-12747,-10606,-2435], +[1,3,7791], +[0,7792,7793,7794,11], +[0,-5334,-12748,-1618,-5204,-5205,-2427,-5356], +[0,-4228,-3037,-3040,-652,-932,-12749,-962,-969,-9602,-1942,-2094,-11167,-12750,-2410], +[0,-9589,-3264,-1599,-4147,-2083,-12745,-2427], +[1,3,7796], +[0,7797,0,7798,5], +[0,-5334,-2586,-2427], +[0,-12743,-3272,-3264,-1838,-3862,-2083,-12745,-4132,-10919,-2427], +[1,3,7800], +[0,7801,7802,7803,8], +[0,-5334,-1286,-5358], +[0,-3037,-652,-1942,-2090,-2094,-2098,-2100,-2101,-2399,-2410,-2427,-2429,-2541], +[0,-3264,-3862,-9591,-2083,-12745,-2427], +[1,3,7805], +[0,7806,7807,7808,4], +[0,-5334,-3649,-4264,-1292,-2429], +[0,-3037,-652,-1942,-2083,-2094,-2100,-2399,-2410,-2541], +[0,-10857,-3264,-7231,-3862,-2083,-12745,-2222,-2427], +[1,3,7810], +[0,7811,0,7812,6], +[0,-5334,-1290,-2427], +[0,-12743,-3272,-7644,-3264,-3862,-2083,-12745,-6233,-6231,-4132,-10919,-2427], +[1,3,7814], +[0,7815,7816,7817,5], +[0,-12751,-305,-12752,-512,-6563,-680,-6869,-4236,-1376,-12753,-1566,-1641,-11656,-1805,-1816,-3547,-8874,-2177,-2654, +-2426,-2436,-12754,-2551], +[0,-190,-12755,-3037,-932,-8339,-1110,-3781,-1498,-12756,-12757,-1942,-2094,-12758,-2323,-2410], +[0,-7641,-5887,-5890,-12759,-5889,-1105,-7661,-9845,-6657,-1764,-8403,-5737,-9244,-2091,-7737,-11729,-5550,-6818,-3673, +-9318,-2177,-3862], +[1,3,7819], +[0,7820,7821,7822,4], +[0,-1405,-1645,-1876,-2231,-2347], +[0,-932,-934,-958,-1127,-1168,-12760,-2125], +[0,-7841,-9219,-2231,-1405,-4005], +[1,3,7824], +[0,7825,0,7826,4], +[0,-2427,-4251,-2098,-5616], +[0,-12743,-3272,-7644,-1599,-10918,-1838,-1958,-2093,-6233,-6231,-4132,-10919,-2427], +[1,3,7828], +[0,7829,0,7830,11], +[0,-3190,-12761,-2093,-12762], +[0,-8425,-687,-1599,-10918,-2093,-2427], +[1,3,7832], +[0,7833,7834,7835,10], +[0,-4251,-10922,-10923,-2098,-5616,-2427], +[0,-3037,-652,-12744,-1942,-2093,-2094,-2100,-2267,-7699,-2399,-2410,-2541], +[0,-10604,-12763,-4329,-1105,-1599,-10918,-3862,-2093,-12764,-5552,-4002,-4109,-2427], +[1,3,7837], +[0,7838,7839,7840,4], +[0,-4251,-1287,-1619,-1290,-2427], +[0,-5334,-3037,-652,-10915,-2586,-1942,-2094,-4242,-2095,-4655,-2098,-2100,-12765,-4656,-2399,-2410,-5358,-2541], +[0,-7644,-3264,-1599,-10918,-3862,-2093,-12764,-6231,-2427], +[1,3,7842], +[0,7843,7844,7845,9], +[0,-5358,-2427,-4251,-12766,-5356,-12767], +[0,-652,-932,-2093,-1942,-1874,-2094,-2410,-5334,-2101,-2090,-12750,-12749,-11167], +[0,-856,-5670,-12768,-3862,-2093,-12764,-2427], +[1,3,7847], +[0,7848,0,7849,5], +[0,-4251,-1618,-10869,-2427], +[0,-12743,-3272,-1599,-10918,-1838,-3862,-2093,-12764,-4132,-10919,-2427], +[1,3,7851], +[0,7852,7853,7854,9], +[0,-12769,-12770,-2095,-12771,-12772,-9514,-9515,-9516,-9517,-9518,-12773,-9519,-12774,-9520,-12775,-12776,-12777,-12778, +-9524,-12779,-9527,-12780,-12781,-12782,-12783,-12784,-12785,-9528,-12786,-12787,-12788,-12789,-12790,-12791,-12792, +-12793,-9532,-9533,-9534,-12794,-9535,-9536,-4995,-12795,-4656,-12796,-12797,-2427], +[0,-86,-3307,-932,-946,-1053,-1344,-1534,-1942,-2094,-2541], +[0,-1105,-6913,-2093], +[1,3,7856], +[0,7857,7858,7859,4], +[0,-12769,-2095,-4655,-9514,-9515,-9516,-9517,-12798,-9518,-12799,-12773,-9519,-12774,-9520,-12775,-12776,-12777,-9522, +-12778,-12800,-12801,-12802,-12803,-12804,-12805,-12806,-12807,-12808,-12809,-12779,-12810,-9527,-12811,-12780,-12812, +-12781,-12782,-12783,-12784,-12785,-9528,-12786,-12813,-12814,-12815,-12788,-12789,-12816,-12817,-12790,-12791,-12792, +-12818,-12819,-12793,-9532,-9533,-9534,-12794,-9535,-9536,-4995,-12795, +-5616,-4656,-9537,-12796,-12820,-2267,-2427], +[0,-1942,-2094,-2399,-2410,-2541], +[0,-6913,-2093,-12821], +[1,3,7861], +[0,7862,7863,7864,8], +[0,-5334,-4251,-1619,-2427,-5358], +[0,-3037,-652,-1942,-2089,-2090,-2094,-2098,-2100,-5616,-2399,-2410,-2541], +[0,-9589,-3264,-1599,-10918,-3862,-12745,-2083,-12764,-2093,-2427], +[1,3,7866], +[0,7867,7868,7869,6], +[0,-503,-12822], +[0,-5514,-589,-8630,-932,-953,-985,-1202,-1304,-1610,-1654,-1788,-2127,-2133,-2137,-2140,-2184], +[0,-8630,-1599,-3437,-1838,-3215,-1958,-2102,-7650,-4065,-5554], +[1,3,7871], +[0,0,125,7872,5], +[0,-1168,-8109,-7693,-3866], +[1,3,7874], +[0,7875,7876,7877,4], +[0,-668,-1107,-2550], +[0,-190,-652,-664,-665,-932,-1654], +[0,-8276,-5554,-7002,-6656], +[1,3,7879], +[0,7880,7881,7882,10], +[0,-1983,-11197,-2446,-1015,-12823,-6397,-12824,-1069,-1641,-12825,-2155,-2364,-12826,-12827,-12828,-12829,-12830,-8956, +-1856,-1459], +[0,-1788,-2322,-1471,-12831,-2125,-708,-615,-2250,-756,-12832,-8375,-633,-641,-9573,-1476,-2188,-1472,-1860,-8958,-1484], +[0,-1334,-5493,-2444,-3590], +[1,3,7884], +[0,7885,7886,7887,4], +[0,-615,-2364,-12833,-12834], +[0,-664,-1168,-668,-1548,-2125,-2105,-1231,-617,-1197,-2150,-1220,-11117,-1973], +[0,-2533,-1334,-1342,-1961,-2105,-11301,-12835,-615], +[1,3,7889], +[0,7890,7891,7892,9], +[0,-12834,-12833,-2364], +[0,-617,-664,-668,-1168,-11117,-1197,-1220,-1231,-1548,-1973,-2105,-2125,-2150], +[0,-2533,-1334,-1342,-1961,-2105,-11301,-12835,-5269], +[1,3,7894], +[0,0,7895,7,10], +[0,-2379,-2410,-710], +[1,3,7897], +[0,0,7898,7899,4], +[0,-5856], +[0,-4792,-9409,-12836], +[1,3,7901], +[0,0,7902,7903,5], +[0,-349,-409,-3044,-3040,-3052,-3714,-427,-12837,-428,-12838,-932,-969,-12839,-1449,-1548,-1565,-1624,-12840,-12718,-1942, +-2006,-2019,-2040,-2125,-2195,-2391,-2410,-2469], +[0,-2006,-2074], +[1,3,7905], +[0,0,7906,7907,4], +[0,-528,-757,-932,-1412,-1413,-1471,-1475,-1479,-1481,-3569,-1486,-1488,-1490,-1491,-1962,-2127,-2141,-2410], +[0,-12841,-10095,-12523,-2444,-3323,-4865,-3582,-6989], +[1,3,7909], +[0,7910,7911,7912,10], +[0,-12842,-7437,-12843], +[0,-6455,-2319,-2359,-2322,-887,-932,-1650,-2125,-2177,-12844,-1777,-1365,-1795,-8569,-2156,-5834], +[0,-2114,-4792,-3966,-3551], +[1,3,7914], +[0,0,14,7915,5], +[0,-4792,-2114,-1847,-3551,-8388,-6546,-6024], +[1,3,7917], +[0,7918,0,7919,10], +[0,-12845,-742,-1543,-1889,-2231], +[0,-2501,-5932,-775,-6811,-6043,-2114,-2435,-2162,-9358,-6656], +[1,3,7921], +[0,7922,7923,7924,5], +[0,-12846,-3780,-1077,-1276,-1442,-12847,-2446], +[0,-21,-23,-5870,-26,-33,-36,-5584,-39,-40,-44,-86,-3531,-3470,-3471,-519,-523,-528,-539,-541,-617,-664,-12848,-756, +-12310,-834,-4088,-932,-12849,-12850,-958,-963,-964,-12851,-966,-968,-971,-12852,-972,-973,-978,-1004,-12853,-1344,-1444, +-1457,-1547,-1654,-1656,-12854,-1788,-2174,-12855,-2293,-12856], +[0,-3960,-489,-3262,-856,-12857,-3636,-12858,-3691,-3690,-1334], +[1,3,7926], +[0,7927,7928,7929,4], +[0,-1983,-788,-12859,-1640,-1801,-1867,-2178,-12860,-2446,-1548,-2177,-2454,-11983,-1582,-1070,-5397,-508,-8541,-12830, +-12861,-6456,-12862], +[0,-1788,-1816,-664,-1107,-1654,-2210,-932,-1650,-2125,-1376,-1754,-1942,-756,-2451,-12863,-8549,-1939,-1972,-856,-12864, +-12865,-960,-940,-967], +[0,-3817,-3161,-1004,-12866], +[1,3,7931], +[0,7932,83,7,4], +[0,-1983,-2536,-2548,-1351], +[1,3,7934], +[0,7935,251,7936,8], +[0,-9050,-2202], +[0,-1000,-12867,-1958,-11998,-12868,-12869,-12870,-12871,-12872,-10018,-687,-5564,-5514,-6713,-4110,-3974,-4000,-3975, +-5550,-3958], +[1,3,7938], +[0,7939,0,7940,8], +[0,-615], +[0,-7685,-12873,-12874,-12875], +[1,3,7942], +[0,0,7943,7,5], +[0,-8959,-1405,-2322], +[1,3,7945], +[0,7946,7947,7948,5], +[0,-932,-3414], +[0,-3037,-1003,-1654,-1788,-2379,-2410], +[0,-6137,-6138,-4215,-5396,-3551,-5119,-4004,-12876,-4676,-8959,-4792], +[1,3,7950], +[0,0,7951,7952,4], +[0,-3415,-708,-12877,-12878,-11961,-12879,-1552,-12880,-12881,-1993,-2250,-2319,-2384], +[0,-7208,-7369,-3589,-702,-6351,-6545,-7371,-7372,-7373,-7374,-7375,-12882,-12883,-12877,-12884,-5922,-6187,-12885,-12886, +-12887,-12888,-12889,-12878,-12890], +[1,3,7954], +[0,7955,7956,7957,4], +[0,-1107,-12891], +[0,-3037,-1650,-1942,-2319,-2386,-2402], +[0,-6695,-12892,-12893,-6694,-7421,-687,-7418,-7371], +[1,3,7959], +[0,7960,7961,7962,4], +[0,-1696,-3846,-6521], +[0,-1412,-12894,-12895,-12896], +[0,-12897,-11189,-12898,-10394,-9711,-6527,-12899,-11321,-2126,-5566,-12900,-12901,-12902,-12903,-712], +[1,3,7964], +[0,202,7965,7966,4], +[0,-6779,-11174,-6780,-6778,-6777,-6776,-190,-4106,-3115,-12904,-5053,-4066,-6429,-350,-4062,-351,-3561,-3266,-3267,-4785, +-12905,-3621,-3037,-8523,-3199,-9146,-12906,-461,-12907,-6426,-639,-644,-679,-726,-753,-767,-12908,-923,-927,-932,-940, +-967,-978,-980,-1054,-12909,-1077,-4706,-1110,-1344,-4788,-1534,-4789,-1588,-1623,-1654,-1753,-12910,-1788,-4916,-1863, +-1864,-2851, +-1942,-1944,-1948,-1951,-2111,-2127,-2134,-2177,-2200,-2202,-2231,-2234,-2314,-2334,-2387,-2410,-2411,-2466,-2468,-2476, +-2478,-5627,-12911,-2551], +[0,-3209,-7882,-12912,-3184,-7176], +[1,3,7968], +[0,7969,7970,7971,4], +[0,-3341,-2145], +[0,-23,-3840,-33,-38,-40,-639,-932,-940,-967,-1344,-1534,-1654,-1942,-2127,-2129,-2133,-2231,-2234], +[0,-12913,-525,-4795,-3184], +[1,3,7973], +[0,7974,7975,7,11], +[0,-639,-2145], +[0,-932,-1654,-2127], +[1,3,7977], +[0,7978,7979,7980,5], +[0,-12914,-2145], +[0,-6429,-932,-1001,-1654,-1788,-2125,-2127,-12915,-12916], +[0,-2127,-12913,-3214,-3184,-3209,-3485,-12917,-7416], +[1,3,7982], +[0,7983,7984,7,4], +[0,-989,-4788,-1588,-2114,-2145], +[0,-23,-40,-43,-461,-932,-958,-1344,-1534,-4789,-1654,-1942,-4790,-2127,-2128,-2133,-2137,-2200,-2231,-2234,-2410], +[1,3,7986], +[0,7987,7988,7989,4], +[0,-1588], +[0,-22,-8355,-12918,-426,-3037,-3040,-652,-2127,-2410], +[0,-12913,-2410,-4160,-12919], +[1,3,7991], +[0,7992,7993,7,11], +[0,-2145], +[0,-932,-958,-1344,-1534,-1654,-1942,-2127,-2129,-2137,-2234], +[1,3,7995], +[0,7996,7997,7998,5], +[0,-12920,-4787,-1548,-1588,-1666,-12921,-12922,-12923], +[0,-23,-40,-43,-3326,-350,-351,-3989,-427,-428,-479,-535,-932,-934,-958,-1022,-1077,-11780,-1168,-12924,-1222,-1412,-1413, +-1942,-2125,-2127,-12925,-12926,-2359,-2410], +[0,-2127,-12913], +[1,3,8000], +[0,8001,8002,252,6], +[0,-12927,-12928,-771,-12929], +[0,-9889,-812,-1654,-2127,-2128,-2136,-2184], +[1,3,8004], +[0,8005,8006,252,6], +[0,-461,-12928,-989,-1588,-12929,-2145], +[0,-527,-558,-633,-1415,-1650,-1654,-2125,-2127,-2128,-2137], +[1,3,8008], +[0,8009,8010,253,5], +[0,-3200,-644,-4793,-2114,-2145], +[0,-23,-40,-43,-922,-932,-1654,-2127,-2128,-2131,-2133,-4794,-2410], +[1,3,8012], +[0,8013,8014,253,9], +[0,-1588,-2145], +[0,-932,-958,-1344,-1534,-4789,-1654,-1942,-2127,-2129,-2200,-2231,-2410], +[1,3,8016], +[0,8017,8018,8019,10], +[0,-4785,-7149], +[0,-3267,-3037,-427,-428,-932,-940,-967,-1415,-1942,-2125,-2127,-2375,-2410], +[0,-2127,-12913,-6915,-2231,-12930], +[1,3,8021], +[0,8022,8023,8024,6], +[0,-22,-1429,-2182,-2334], +[0,-23,-1415,-1942,-2127], +[0,-2127,-12913,-2334,-1644], +[1,3,8026], +[0,8027,8028,8029,5], +[0,-2114,-2145], +[0,-639,-932,-1654,-2125,-2127,-2129,-2131,-2387,-2410], +[0,-12913,-2410,-4795], +[1,3,8031], +[0,8032,8033,8034,4], +[0,-4785,-1046,-1077,-2177,-2387], +[0,-5121,-350,-351,-12931,-3048,-12932,-3136,-3044,-3037,-4067,-3199,-427,-428,-714,-932,-12933,-1415,-1548,-1793,-2125, +-2127,-12934,-2142,-2375,-2410], +[0,-2142,-2141,-12913,-2410,-4795,-2127,-1764], +[1,3,8036], +[0,8037,8038,8039,6], +[0,-22,-1429,-2182,-2416], +[0,-23,-40,-533,-1415,-1942,-2127], +[0,-2127,-12913,-9216,-1644], +[1,3,8041], +[0,8042,8043,8044,4], +[0,-1805,-1864,-2231,-2550], +[0,-350,-351,-3266,-3267,-3269,-12935,-12936,-12937,-12938,-12939,-12940,-3037,-8523,-3041,-651,-798,-6258,-7259,-7268, +-799,-801,-825,-1771,-8065,-1889,-7033,-1940,-1942,-2923,-2127,-4753,-2162,-2387,-2410,-2466,-2469], +[0,-12913,-12941,-5150,-12942,-12943,-12944], +[1,3,8046], +[0,8047,8048,8049,5], +[0,-989], +[0,-426,-3136,-4036,-3037,-1344,-1415,-1534,-1639,-1942,-2127,-2131,-2137,-2141,-2200,-2375,-2388,-2410,-8256], +[0,-2127,-5260], +[1,3,8051], +[0,0,8052,7,5], +[0,-633], +[1,3,8054], +[0,8055,8056,254,10], +[0,-2694,-4007,-649,-658,-1119,-1889,-2234,-2279,-10098,-909,-2193], +[0,-12945,-22,-23,-32,-3194,-26,-35,-6062,-36,-12946,-37,-3368,-3077,-3204,-38,-40,-41,-42,-44,-46,-47,-12947,-12948, +-12949,-12950,-3872,-4020,-237,-269,-12951,-12952,-12953,-12954,-12955,-5038,-3983,-367,-5052,-12956,-12957,-12958,-8355, +-4776,-12959,-10100,-10101,-3269,-12960,-3732,-12961,-5085,-5033,-7080,-3198,-12962,-12963,-3036,-4035,-3850,-3044, +-12964,-5587,-12965, +-8523,-12966,-3040,-3052,-6633,-3199,-12967,-6832,-5673,-12968,-12969,-4204,-8559,-5900,-461,-12970,-2624,-502,-507,-512, +-12971,-8561,-553,-6386,-635,-640,-651,-12972,-2740,-719,-12973,-724,-6842,-6394,-736,-737,-743,-769,-771,-2745,-7189, +-7026,-812,-5034,-6381,-12974,-997,-1047,-1072,-1107,-1273,-1336,-1337,-6388,-1343,-2773,-12975,-1354,-10697,-1401,-1429, +-1460,-1465,-8562, +-12976,-1582,-1643,-1683,-1699,-12977,-9548,-1734,-1816,-6378,-3447,-1827,-1848,-1851,-1864,-6184,-1903,-7164,-1915, +-7165,-2791,-1927,-1929,-1930,-1934,-1958,-1977,-6387,-1999,-2041,-2082,-2163,-2177,-2178,-12978,-8578,-2194,-2231,-2233, +-11463,-6390,-6375,-4195,-12979,-6383,-2269,-3921,-2323,-12980,-2334,-2335,-2343,-6391,-6384,-2594,-12981,-2444,-6380, +-12982,-10052,-2501,-2531,-2564], +[1,3,8058], +[0,0,8059,8060,9], +[0,-6068,-548,-6070,-6071,-8122,-6072,-6081,-6082,-6083,-550,-558,-8121,-7993,-7938,-628,-629,-8116,-7945,-8119,-8118, +-902,-8003,-8004,-12983,-8117,-1654,-1963], +[0,-8123,-5923], +[1,3,8062], +[0,8063,8064,8065,5], +[0,-10415,-1863,-1889,-2271], +[0,-652,-1654,-2250], +[0,-12984,-775,-12985,-2149,-3161,-5553,-10733,-10732,-5845,-6408], +[1,3,8067], +[0,8068,8069,8070,8], +[0,-668,-1022,-1876], +[0,-1168,-1654,-2198], +[0,-7419,-11441,-5562,-1168,-1817], +[1,3,8072], +[0,0,8073,8074,5], +[0,-468,-2322], +[0,-9291,-510,-5924,-5865,-6235,-11727,-5839,-12986], +[1,3,8076], +[0,0,0,8077,4], +[0,-12987,-12988,-12989,-8408,-12990,-12991], +[1,3,8079], +[0,33,8080,8081,9], +[0,-12992,-3,-367,-4007,-3035,-3044,-3621,-3037,-3714,-4372,-3625,-12993,-427,-428,-556,-664,-12994,-712,-714,-767,-796, +-7653,-930,-932,-10031,-1069,-1077,-1107,-6783,-1344,-5726,-1534,-1548,-1646,-1654,-1753,-1771,-4099,-6184,-1942,-1961, +-2127,-12995,-12996,-2137,-2195,-2200,-2210,-2211,-2234,-2314,-2379,-2388,-2389,-12997,-12998,-12999,-2410,-2449,-13000, +-2501], +[0,-12990,-12991,-13001,-13002,-13003,-13004,-6980,-13005,-6948,-6950], +[1,3,8083], +[0,0,31,8084,9], +[0,-640,-13006,-13007,-9594,-2155,-7107,-13008], +[1,3,8086], +[0,8087,8088,8089,4], +[0,-1365,-2177,-2550], +[0,-5834,-515,-516,-887,-932,-13009,-1788,-2322], +[0,-8403,-10483,-1764,-13010,-6818,-9594,-13011], +[1,3,8091], +[0,8092,8093,8094,4], +[0,-13012,-13013,-510,-13014,-668,-719,-13015,-724,-729,-743,-744,-746,-13016,-888,-1004,-1010,-13017,-1107,-13018,-13019, +-12902,-13020,-13021,-13022,-13023,-13024,-1646,-13025,-1840,-1851,-1878,-1965,-13026,-13027,-13028,-2177,-2185,-2187, +-13029,-13030,-2418,-2453,-13031], +[0,-589,-733,-932,-1003,-1077,-13032,-1654,-1783,-1888,-13033,-13034,-13035,-13036,-13037,-13038,-2198,-2229,-2293,-2359], +[0,-13039,-13040,-1004,-13041,-13042,-3817,-3816,-1818,-2228], +[1,3,8096], +[0,8097,8098,8099,5], +[0,-13043], +[0,-2322,-468,-13044,-633,-725], +[0,-6656,-6557,-13045,-7723,-5874,-5559], +[1,3,8101], +[0,8102,8103,8104,8], +[0,-823,-930,-1333,-1396,-13046,-1889], +[0,-932,-1654,-2210,-13047], +[0,-3264,-3215,-7722,-7723], +[1,3,8106], +[0,8107,0,8108,5], +[0,-679,-1361,-2232], +[0,-5553,-3754,-2162,-3277,-775], +[1,3,8110], +[0,8111,8112,8113,5], +[0,-9548], +[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-621,-767,-774,-778,-824,-825,-909,-932,-940,-6929,-958,-959,-960,-965,-967, +-978,-1041,-2629,-1110,-1344,-1415,-1534,-13048,-1623,-1743,-13049,-1771,-1942,-2162,-3572,-2177,-2251,-2275,-2410,-2411, +-2501,-2503,-2505], +[0,-2162,-9264,-2501,-5932], +[0,44,15,16,9], +[1,3,8116], +[0,0,8117,7,8], +[0,-1942,-2319], +[1,3,8119], +[0,8120,8121,8122,9], +[0,-13050], +[0,-13051,-652,-13052,-932,-1446], +[0,-4058,-856], +[1,3,8124], +[0,8125,8126,48,4], +[0,-469,-470,-5329,-4049], +[0,-824,-1415,-1344,-932,-825,-1110,-2501,-1942,-21,-190,-533,-2410,-23,-3037,-1534,-1771,-86,-965,-3560,-2251,-40,-959, +-960,-958,-6929,-978,-940,-967,-3748,-3307], +[1,3,8128], +[0,8129,8130,8131,5], +[0,-2006,-2019,-2634], +[0,-2410,-3037,-3040,-3052,-518,-1889,-2318,-932,-10813], +[0,-13053,-13054,-1072,-5375,-770,-13055,-5375,-3634,-8576,-13056,-3551,-13057,-13058,-5376,-13059,-11152,-5150], +[1,3,8133], +[0,8134,0,8135,5], +[0,-899,-1723,-6127], +[0,-13060,-13061,-13062,-2171], +[1,3,8137], +[0,0,0,8138,4], +[0,-13063,-6555,-770], +[1,3,8140], +[0,8141,8142,8143,8], +[0,-13064,-1468,-2359,-2531], +[0,-190,-5980,-932,-940,-964,-965,-7353,-967,-1004,-1110,-1281,-1446,-1654,-1656,-1685,-1942,-2186,-2210,-2297], +[0,-4864,-11467,-3634,-11468,-12350], +[1,3,8145], +[0,8146,8147,8148,5], +[0,-7040,-13065,-3472,-7041,-7042,-13066,-755,-812,-13067,-999,-1040,-13068,-1100,-13069,-9464,-1315,-13070,-1549,-1610, +-6294,-1639,-13071,-10507,-3609,-2115,-2177,-3642,-2550], +[0,-3037,-3639,-519,-652,-686,-796,-851,-13072,-1077,-1116,-1442,-1547,-8314,-13073,-1722,-1772,-13074,-1942,-2910,-2210, +-13075,-2331,-2341], +[0,-13076,-4864,-5887,-3551,-5897,-8403,-9244,-2177,-9318], +[1,3,8150], +[0,8151,8152,7,4], +[0,-44,-13077,-13078,-2997,-13079,-703,-13080,-1548,-1549,-1967,-2029,-2804,-2192], +[0,-13081,-21,-23,-26,-34,-35,-37,-38,-40,-41,-43,-13082,-4227,-13083,-13084,-4773,-3040,-427,-428,-3807,-13085,-528,-534, +-13086,-539,-540,-13087,-553,-12468,-13088,-664,-13089,-747,-767,-795,-812,-838,-855,-8245,-915,-932,-933,-940,-3071, +-958,-962,-964,-969,-970,-1021,-1103,-1168,-1228,-1266,-1344,-6273,-1471,-1475,-12832,-1476,-1482,-1483,-1492, +-1526,-1534,-1654,-1942,-1955,-1978,-2000,-2006,-13090,-13091,-2018,-2019,-2024,-2027,-2043,-2044,-13092,-13093,-13094, +-2052,-13095,-2125,-13096,-13097,-7708,-2210,-2211,-2214,-2253,-13098,-2335,-13099,-2347,-2410,-2460,-2501,-2502,-2503, +-2504], +[1,3,8154], +[0,8155,8156,8157,4], +[0,-932,-942,-943,-13100,-958,-965,-968,-969,-13101], +[0,-3781,-1631,-1650,-2125,-2151,-2322], +[0,-8180,-13102,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8175,-1445,-1452,-7148,-8184,-8169,-13103,-5493, +-2250,-8185,-5553,-8186,-8187,-8174], +[1,3,8159], +[0,0,8160,7,5], +[0,-4298,-4300,-589,-2319], +[1,3,8162], +[0,8163,191,8164,4], +[0,-812,-907,-929,-990,-1072,-1335,-1641,-1681,-1800,-1997,-2255], +[0,-5142,-6656,-3844], +[1,3,8166], +[0,8167,8168,8169,5], +[0,-13104,-3895,-13105,-13106,-13107,-13108,-13109,-13110,-1555,-1572,-1646,-9375,-13111,-13112,-13113,-1983,-13114, +-13115,-13116], +[0,-3890,-3893,-13117,-3037,-510,-13118,-756,-13119,-1276,-13120,-8936,-1942,-13121,-13122,-13123,-13124,-13125,-2410], +[0,-11151,-5196,-11148,-13126,-6209,-13127,-11150,-6210,-13128,-3161,-13129,-13130,-13131,-3481,-10809], +[1,3,8171], +[0,0,8172,8173,11], +[0,-13132,-510,-589,-932,-1660,-2319], +[0,-2180,-10432,-13133,-11385], +[1,3,8175], +[0,8176,8177,8178,5], +[0,-13134,-2446,-812,-13135,-1548,-1666,-2177,-2451,-1369,-3198,-13136,-13137,-1667,-6109,-13138,-10416], +[0,-1857,-1788,-664,-461,-826,-2763,-1344,-1654,-1826,-2210,-932,-13139,-1692,-2125,-674,-928,-13140,-13141,-2245,-10417, +-10418,-13142,-749,-767,-1026,-13143,-1828,-13144,-12846,-1078,-2211,-2410,-3035,-3037,-1002,-1534,-3621,-4372,-11747, +-305,-3044,-13145,-13146,-13147,-86,-665,-13148,-1609,-2174,-7382,-2234,-960,-964,-13149,-428,-13150,-9404,-427,-13151, +-13152], +[0,-1691,-13140,-3742,-6321,-10425,-1857,-1682,-13153,-13139,-10424,-10418,-10704,-13154,-1818,-3967,-13155,-7685,-7773], +[1,3,8180], +[0,0,8181,8182,4], +[0,-589], +[0,-6233,-12343,-3214,-3756,-4055], +[1,3,8184], +[0,8185,37,8186,6], +[0,-812,-13156,-13157,-13158,-13159,-13160,-13161,-13162,-13163,-13164,-13165,-13166,-13167,-13168], +[0,-13169,-13170,-13171,-13172,-13173,-11573,-1434,-13174,-13175,-13176,-10225,-13177,-13178,-10227,-2183,-13179,-13180, +-5827,-3975,-13181], +[1,3,8188], +[0,8189,8190,8191,4], +[0,-469,-502,-623,-668,-700,-724,-13182,-13183,-5977,-6793,-13184], +[0,-1116,-2392,-2391,-1344,-932,-2469,-1942,-2410,-1534,-50,-3732,-13185,-3664,-13186], +[0,-2455,-2184,-11151,-1339], +[1,3,8193], +[0,8194,8195,8196,6], +[0,-990,-1072,-1681,-1840,-2155], +[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293,-13187], +[0,-1004,-13188,-5401], +[1,3,8198], +[0,8199,8200,7,11], +[0,-459,-7334,-812,-929,-1335,-1641,-1840], +[0,-465,-932,-963,-1654,-1788,-2293], +[1,3,8202], +[0,8203,81,7,5], +[0,-907,-929,-1840,-2178], +[1,3,8205], +[0,8206,8207,8208,4], +[0,-13189,-1640,-1645], +[0,-86,-3307,-13190,-13191,-521,-664,-665,-720,-932,-940,-1077,-1344,-1534,-1573,-5969,-1654,-1729,-1788,-1942,-1972, +-13192,-2210,-2211,-2323], +[0,-13192,-13193,-5819,-5817,-13194,-5937,-13195,-5940,-3258,-3100,-13196], +[1,3,8210], +[0,8211,8212,8213,5], +[0,-13197,-13198,-13199,-13200,-3698,-13201,-13202,-13203,-11209,-13204,-5810,-13205,-13206,-13207,-11197,-620,-4735, +-13208,-5813,-13209,-1805,-7223,-2531], +[0,-13210,-4171,-13211,-3136,-3037,-3738,-4204,-427,-428,-13206,-5813,-928,-13212,-932,-940,-8246,-948,-958,-967,-1344, +-1415,-13213,-13214,-13215,-13216,-1456,-1766,-1942,-5815,-2251,-2375,-2379,-2892,-2410,-2446], +[0,-3112,-5817,-3634,-1415,-13192,-4216,-2469,-5819,-5941,-5943,-5951,-13217], +[1,3,8215], +[0,8216,0,7,4], +[0,-10906,-6130], +[1,3,8218], +[0,0,8219,8220,11], +[0,-528,-558,-566,-664,-932,-1059,-13218,-1344,-1534,-1654,-1942], +[0,-2192,-8495,-6439,-10661,-7378,-13219], +[1,3,8222], +[0,8223,8224,8225,4], +[0,-2177,-13220,-8612], +[0,-8771,-2384,-13221,-2324,-1733,-13222,-1018,-13223,-2581,-1723,-13224,-1448,-13225,-13226,-13227,-13228,-13229], +[0,-9235,-7715,-5315,-5316,-9807,-8642,-3839,-8707,-13230,-6527,-10095,-13231,-7066,-10711,-13232,-13233], +[1,3,8227], +[0,0,8228,8229,5], +[0,-5834,-516,-5835,-932,-993,-1365,-1408,-1777,-1788,-2156,-2322], +[0,-3957,-1838,-13234,-5550], +[1,3,8231], +[0,8232,8233,8234,4], +[0,-999,-1026], +[0,-519,-668,-710,-932,-934,-958,-1442,-1788,-13235,-13236,-2200,-13237], +[0,-2195,-6836,-11642,-5550,-13238,-9218,-1410,-12397], +[1,3,8236], +[0,8237,8238,8239,8], +[0,-1699], +[0,-664,-1127,-1654,-913,-1132,-10682,-2351,-1158,-13239,-9256,-1130,-1156,-1542,-1136,-1144,-1148,-5295], +[0,-13240,-13241,-7231,-2446,-13242,-13243,-3005,-2197,-13244], +[1,3,8241], +[0,8242,8243,8244,4], +[0,-13245,-13246,-13247,-13248,-13249], +[0,-615,-932,-13250,-1654,-1942,-2127,-2137,-2388,-2410], +[0,-4004,-3440,-507,-2198], +[1,3,8246], +[0,75,8247,8248,4], +[0,-1127,-1134,-1136,-1144,-1148,-1150,-1151,-13251,-1152,-1163,-1449,-1542,-1856,-13252,-2177,-13253,-2234], +[0,-1599,-6473], +[1,3,8250], +[0,8251,8252,8253,8], +[0,-1646,-2195], +[0,-526,-558,-566,-932,-934,-8246,-958,-1442,-1654,-1788,-2125,-13235,-13254,-13236,-2198], +[0,-2195,-5550,-11642,-6836,-6837,-8421,-687,-3977], +[1,3,8255], +[0,0,8256,8257,9], +[0,-7080,-3037,-9867,-5866,-652,-1942,-2319,-2379,-2402,-2410], +[0,-5395,-1000], +[1,3,8259], +[0,8260,8261,8262,5], +[0,-474], +[0,-1273,-1948,-2127,-2129,-2416], +[0,-5176,-13255,-10724,-659], +[1,3,8264], +[0,8265,8266,8267,8], +[0,-13256,-13257,-812], +[0,-13258,-13259,-3198,-3136,-3037,-928,-11714,-1415,-2379,-2410], +[0,-5889,-13260,-12263], +[1,3,8269], +[0,0,8270,8271,5], +[0,-2384,-1415,-1344,-1868,-932,-2125,-2127,-1942,-767,-533,-23,-3136,-726,-13261,-1952,-44,-50,-40,-953,-13262,-32,-3326, +-2140,-3561,-13263,-350,-351,-8280,-13264,-536,-37], +[0,-5070,-6814,-11889,-9668,-3161,-2006,-475,-2476,-3122,-6209,-3100], +[1,3,8273], +[0,8274,8275,8276,4], +[0,-4884,-357,-13265,-834,-2297], +[0,-23,-4885,-4886,-4887,-4888,-13266,-11471,-13267,-539,-812,-829,-928,-13268,-10877,-1099,-1534,-1654,-1788,-1942,-1978, +-2125,-2177,-2195], +[0,-2210,-4004,-3634,-5119,-8611,-4216,-8959,-4123,-13269,-4215,-2533,-507], +[1,3,8278], +[0,0,8279,8280,9], +[0,-190,-652,-664,-932,-1654,-1942,-2210], +[0,-664,-6537,-4865,-13270,-13271,-2210,-3634,-7244,-7245,-7243], +[1,3,8282], +[0,8283,8284,8285,5], +[0,-4166,-3544,-510,-648,-13272,-13273,-1650,-2177,-6920,-1004,-1442,-2105,-927,-719,-1645,-1464,-1276,-617,-724,-1335, +-1304,-13274,-13275,-2062,-13276], +[0,-1654,-615,-633,-13277], +[0,-6011,-5897,-7737,-11722,-3209,-1971,-3844], +[1,3,8287], +[0,8288,0,7,6], +[0,-13278,-5036,-13279], +[1,3,8290], +[0,8291,0,8292,11], +[0,-13280,-1532,-13281,-1863,-2654], +[0,-2214,-687,-985,-6187,-13282,-13283], +[1,3,8294], +[0,89,56,8295,5], +[0,-13284,-13285,-13286,-3445,-3100,-7566], +[1,3,8297], +[0,8298,8299,8300,10], +[0,-13287,-13288], +[0,-2501,-2376,-2410,-2503,-13289,-2502], +[0,-3445,-13290,-3690,-13192,-7685], +[1,3,8302], +[0,0,14,8303,5], +[0,-1847,-13291,-2218,-11635,-7084,-5845], +[1,3,8305], +[0,8306,8307,8308,4], +[0,-482,-13292], +[0,-519,-668,-13293,-2269,-2541], +[0,-4783,-2265,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958, +-5554], +[1,3,8310], +[0,8311,86,8312,4], +[0,-9371,-677,-5500,-13294,-13295,-10347,-13296,-1705,-1856,-13297,-1951,-1959,-13298,-2330,-2550], +[0,-13299,-3015,-9460,-1764,-1380], +[1,3,8314], +[0,0,8315,8316,5], +[0,-11254,-3470,-3471,-3311,-652,-1654,-2174,-2250], +[0,-2223,-2222,-2265,-2443,-9312,-4112,-2435], +[1,3,8318], +[0,0,8319,8320,4], +[0,-756,-13300,-1654,-1788], +[0,-2223,-2222,-2435,-13301], +[0,44,15,16,11], +[1,3,8323], +[0,8324,0,8325,4], +[0,-668,-1370,-1646,-2062,-13302,-2269,-2343], +[0,-3240,-13303,-13304,-2250,-13305,-10317,-13306,-13307,-13308,-13309], +[1,3,8327], +[0,8328,8329,8330,5], +[0,-523,-13310,-812,-1063,-1070,-1100,-1548,-2165,-2270,-6587,-13311], +[0,-190,-3198,-3734,-3044,-3037,-13312,-6594,-617,-714,-834,-855,-883,-932,-1004,-1045,-1107,-1654,-1788,-1942,-2062, +-2177,-2187,-2198,-2210,-2234,-10402,-2402,-2410,-2411], +[0,-2227], +[1,3,8332], +[0,8333,0,8334,4], +[0,-459,-13313,-754,-812,-5454,-13314,-4208], +[0,-8841,-3161,-2512,-9043,-997,-9005,-13315], +[1,3,8336], +[0,8337,0,8338,4], +[0,-13316,-812,-5455,-4208], +[0,-8841,-3161,-2512,-9043,-997,-3323], +[1,3,8340], +[0,8341,8342,8343,4], +[0,-812,-13317,-10622,-1370,-2438], +[0,-633,-913,-932,-1003,-1168,-1208,-1243,-1244,-1252,-1262,-1471,-1472,-1473,-1475,-1482,-1654,-1972,-1976,-2187,-13318, +-2461,-2463], +[0,-6224,-2512], +[1,3,8345], +[0,0,8346,7,8], +[0,-652,-855,-932,-1942,-940], +[1,3,8348], +[0,0,8349,7,6], +[0,-13239,-855,-2501], +[1,3,8351], +[0,8352,8353,48,6], +[0,-1351,-2232], +[0,-21,-23,-40,-86,-3307,-7166,-533,-767,-774,-824,-825,-932,-940,-958,-1344,-1415,-1534,-1623,-1771,-1942,-2251,-2501], +[1,3,8355], +[0,8356,8357,7,4], +[0,-6829,-2231], +[0,-633,-711,-1339,-1654,-2501], +[1,3,8359], +[0,0,92,8360,5], +[0,-5092,-3264,-7451,-13319,-7205,-1838,-6231], +[1,3,8362], +[0,8363,8364,8365,8], +[0,-13320,-13321,-13322,-9193,-13323,-674,-711,-719,-1026,-1119,-1122,-13324,-1127,-1134,-1136,-1137,-1138,-1140,-1148, +-1149,-1160,-1276,-1304,-1333,-1440,-1442,-13325,-1460,-1548,-1610,-13326,-1889,-2162,-2312,-2359], +[0,-21,-23,-40,-43,-4710,-13327,-664,-665,-3629,-932,-964,-966,-974,-1654,-1753,-1942,-2123,-2125,-2210,-2211], +[0,-1122,-3671,-856,-13328,-13329,-3690,-4258,-3262], +[1,3,8367], +[0,8368,8369,7,8], +[0,-2346], +[0,-994,-8392,-8393,-8394,-13330], +[1,3,8371], +[0,0,8372,7,5], +[0,-13331,-13332,-11961,-1788,-1939,-2250,-2322], +[0,0,83,7,5], +[1,3,8375], +[0,0,8376,7,4], +[0,-1168,-1654,-932,-589,-1231,-1197,-1208,-1243,-1262,-13333,-1252], +[1,3,8378], +[0,8379,8380,8381,5], +[0,-615,-712,-714,-783,-1077,-1276,-13334,-3999,-1548,-1757,-7667,-13335,-9395,-2347,-2460,-2462,-13336,-13337], +[0,-664,-756,-1405,-1654,-1657,-13338,-13339], +[0,-13340,-9278,-13341,-775,-3754,-1521,-2162,-2244,-13342,-7419], +[1,3,8383], +[0,8384,8385,8386,4], +[0,-596,-1723,-6521,-2323], +[0,-932,-1654,-12894], +[0,-10424,-3742,-2245,-7685], +[1,3,8388], +[0,8389,8390,8391,5], +[0,-13343,-13344], +[0,-932,-6461], +[0,-8905,-2246,-9456,-7721,-5550,-8421,-8908,-3323], +[1,3,8393], +[0,8394,8395,8396,10], +[0,-9084], +[0,-4298,-4300,-589], +[0,-5387,-3578,-7107,-13345,-10908,-10930,-13346,-13347,-13348,-13349,-13350,-3264], +[1,3,8398], +[0,8399,91,8400,9], +[0,-2548], +[0,-2248,-4055,-2548,-9886,-10410,-7773,-6129,-13351,-13352,-3689,-7685,-856,-3445,-6857,-1671,-1050,-1691,-2245,-6597, +-13353,-10425,-4055,-6917,-13354], +[1,3,8402], +[0,0,8403,7,11], +[0,-40,-533,-1415,-13355], +[1,3,8405], +[0,8406,8407,8408,6], +[0,-932,-943,-13100,-958,-965,-968,-969,-13101,-13356], +[0,-769,-1274,-1646,-13357,-2151,-5470,-2322], +[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2250,-8185,-5553, +-8186,-8187,-8174], +[1,3,8410], +[0,8411,8412,8413,5], +[0,-668,-739,-13358,-741,-10524,-831,-8888,-13359,-1040,-1047,-12340,-2177,-13360,-2550], +[0,-664,-932,-943,-958,-966,-968,-1654,-1658,-1663,-1788,-2195,-13361], +[0,-739,-13362,-5887,-5886,-5962,-9318,-475,-2250], +[1,3,8415], +[0,8416,8417,8418,4], +[0,-502,-615,-13363,-812,-999,-13364,-4703,-2648], +[0,-3037,-13365,-664,-767,-829,-13366,-13367,-13368,-1116,-1457,-3809,-1646,-1654,-13369,-10652,-2174,-13370,-2210,-2211, +-8527,-2250], +[0,-6657,-5921,-3844,-11818,-4004,-3590,-4116], +[1,3,8420], +[0,8421,8422,8423,5], +[0,-13371,-10926,-1093,-13372], +[0,-2330,-1754,-2424], +[0,-2254,-13373,-13374,-13375,-8841], +[1,3,8425], +[0,0,8426,8427,5], +[0,-790,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-1999,-9374], +[0,-1334,-9745,-707], +[1,3,8429], +[0,8430,8431,8432,4], +[0,-2531,-1805,-2066,-2177,-928,-6488,-13376,-4890,-13377,-12518,-407,-410], +[0,-888,-2564,-664,-834,-1107,-1431,-2213,-999,-1526,-1623,-3548,-2006,-2218,-8609,-1111,-1699,-1778,-13378,-928,-13379, +-1085,-1442,-3447,-2114,-2358,-13380,-1885,-1942,-4893,-4204,-656,-719,-2578,-1864,-13381,-2019,-3654,-2400,-12982,-2528, +-4370,-3517,-13382,-1863,-2231,-2269,-2410,-23,-9939,-3037,-769,-832,-13383,-47,-6192,-4894,-4918,-25,-13384,-3199, +-13385,-831,-13386, +-6467,-13387,-6447,-3772,-3778,-3660,-3735,-13388,-6744,-13389,-3896,-13390,-12695,-2383,-46,-163,-6630,-13391,-13392, +-13393,-11751,-3194,-13394,-8523,-13395,-2044,-13396,-747,-13397,-7080,-13398,-4239,-13399,-13400,-13401,-13402,-13403, +-13404,-5474,-2271,-13405,-13406,-13407,-13408,-406,-13409,-13410,-5322,-13411,-3776,-409,-13412,-13413,-4008,-8273, +-2641,-13414,-3459,-13415,-13416,-13417,-5296,-13418,-13419, +-13420], +[0,-2257,-3095,-3098,-13421,-13422,-2006,-2634,-9736,-2034,-3138,-2476,-475,-2299,-3176,-4902], +[1,3,8434], +[0,8435,8436,8437,8], +[0,-1338], +[0,-13423,-4762,-4763,-4754,-13424,-13425,-13426,-13427,-4749,-4758,-13428,-407,-409,-3136,-4961,-3040,-932,-13429,-1415, +-4980,-1419,-1942,-1967,-1978,-2006,-2019,-2162,-2163,-2257,-2375,-2410,-2516,-2548], +[0,-4900,-2257,-13430,-3098,-856,-3100,-13431,-13432,-13433,-13434,-13435,-1783], +[1,3,8439], +[0,8440,0,147,5], +[0,-3,-23,-40,-3538,-3539,-668,-674,-679,-714,-719,-755,-3542,-1022,-13436,-1077,-1107,-1276,-1320,-1349,-13437,-1460, +-1548,-1577,-3543,-3544,-1610,-1646,-3546,-3547,-11926,-9151,-2177,-2368,-2378,-2446], +[1,3,8442], +[0,68,15,16,11], +[1,3,8444], +[0,212,8445,8446,5], +[0,-13438,-13439,-1654,-2198], +[0,-13440,-5827], +[1,3,8448], +[0,0,8449,8450,4], +[0,-351,-3621,-3037,-789,-885,-1654,-7210,-1942,-2127,-2135,-2136,-2198,-2379,-2392,-2410], +[0,-5827,-6408,-788,-7208,-3445,-3100], +[1,3,8452], +[0,8453,56,8454,5], +[0,-7590,-305,-7565,-1061,-1406,-13441,-5721], +[0,-13442,-13443,-3445], +[1,3,8456], +[0,0,0,8457,9], +[0,-2264,-3276,-2265,-4123,-4121], +[1,3,8459], +[0,0,8460,8461,4], +[0,-1168,-1177,-1231,-1243,-13444,-1262,-11473,-2416], +[0,-2265,-6816,-13445,-13446,-13447,-13448,-788,-3264,-3223,-1838,-3264,-9702,-6817,-11647,-6422,-6420,-5559,-9692], +[1,3,8463], +[0,8464,8465,8466,4], +[0,-3164,-13449,-1320,-1549,-13450,-13451,-13452], +[0,-13453,-13454,-12508], +[0,-707,-7347,-8388,-3264,-13455,-13456,-6694,-9357,-13457,-2265,-6817,-9702,-7651,-5554,-13458], +[1,3,8468], +[0,8469,14,8470,4], +[0,-13459,-2269], +[0,-2265,-7472,-4112,-6730,-13460,-6787,-13461,-13462,-13463,-6786,-13464,-13465,-5514,-5559,-5563,-687,-3958,-3974,-4000, +-13466,-13467,-13468,-13469,-13470,-13471], +[1,3,8472], +[0,8473,8474,8475,5], +[0,-2737,-2738], +[0,-3037,-652,-2736,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-6231,-6422,-5559,-3264,-7472,-4846,-8034,-3223], +[1,3,8477], +[0,8478,238,8479,4], +[0,-481], +[0,-6817,-11647,-6694,-5514,-3770,-712,-5535,-714,-3974,-4000,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545, +-3958,-5554], +[1,3,8481], +[0,0,14,8482,4], +[0,-6817,-9310,-6472,-7154,-9311,-4112,-2443,-9312,-6694,-6693,-11647,-5554,-2265], +[1,3,8484], +[0,0,8485,8486,4], +[0,-519,-1612,-2384,-2541], +[0,-4055,-6817,-3485,-6694,-6693,-11647,-6810,-1838,-727,-3870,-6849,-2444,-6845,-5558,-8292], +[1,3,8488], +[0,0,8489,8490,4], +[0,-1788,-664,-1722,-1654,-932,-2379,-1942,-1729,-2410,-3035,-3037,-3621,-13472,-665,-958,-1656,-940,-967,-4269,-428, +-4628,-427], +[0,-2272,-13473,-13474,-3690], +[1,3,8492], +[0,8493,8494,8495,5], +[0,-510,-812,-13475,-13476,-1735,-13477,-1758,-1813,-2059,-13478,-13479,-13480,-13481,-13482,-12003,-13483,-13484,-13485, +-2518,-1464,-642,-13486,-797,-1298,-1370,-1521,-1548,-1579,-10695,-11015,-13372,-1666,-2062,-9798,-2245,-13487,-10690, +-13488,-13489,-13490,-11800,-2531], +[0,-932,-1445,-2319], +[0,-4344,-13491,-11755,-13492,-10705,-13493,-5804,-9733,-5805,-7641,-4161,-9844,-727,-3015,-8901,-8904,-13494,-1066,-5889, +-11021,-13495,-5545,-10706,-9800,-13496,-10412,-13497,-11230,-13498,-1764,-13499,-13500,-13501,-6187,-13502,-1958,-6479, +-11429,-11722,-13503,-4043,-5196,-13504,-13505,-8027,-13478,-13506,-13507,-12003,-13485,-2273,-13508,-2295,-7307,-4123, +-13509], +[1,3,8497], +[0,8498,8499,8500,4], +[0,-13510,-13511,-13512,-13513,-668,-671,-5971,-719,-1395,-1460,-13514,-1942,-2355], +[0,-6327,-2843,-50,-86,-3307,-13515,-13516,-3989,-13517,-3035,-3037,-5011,-3738,-428,-3311,-13518,-3312,-461,-2834,-664, +-932,-964,-969,-989,-1077,-13519,-1344,-13520,-1448,-13521,-1521,-1534,-5273,-10918,-5670,-1654,-9002,-1771,-4916,-2162, +-2177,-2193,-13522,-2286,-2410,-2429,-2446,-2548], +[0,-13523,-5553,-13524,-775,-3099,-7205,-2162,-3754,-5739,-13525,-2006,-3163,-4901], +[1,3,8502], +[0,0,8503,48,4], +[0,-1415,-2162,-1344,-1449,-1623,-774,-932,-2177,-825,-2501,-920,-1942,-767,-21,-533,-778,-23,-1041,-1534,-1771,-2163, +-2503,-86,-2251,-40,-2505,-958,-940,-1419,-3307,-7166], +[1,3,8505], +[0,8506,8507,8508,5], +[0,-2277], +[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3136,-427,-428,-932,-967,-4814,-1110,-1344,-1415,-1534,-1942,-2127,-2375, +-2379,-2410], +[0,-2276,-775,-5553,-3214,-7208,-9680], +[1,3,8510], +[0,8511,8512,8513,6], +[0,-1374], +[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3267,-3136,-3037,-427,-428,-932,-967,-4814,-1110,-1344,-1415,-1534,-1771, +-1942,-2910,-2127,-2375,-2379,-2387,-2410], +[0,-2277,-9339,-5553,-3215,-775,-7208,-9680], +[1,3,8515], +[0,8516,8517,8518,11], +[0,-3776,-5577,-13526,-13527,-786,-1889,-2192,-3768,-2387], +[0,-23,-3341,-3840,-26,-36,-3203,-40,-41,-42,-3267,-406,-407,-409,-410,-3043,-3136,-13528,-3037,-3040,-3052,-13529,-3141, +-3081,-13530,-533,-535,-8560,-6046,-3563,-1415,-1419,-3667,-1428,-1440,-1942,-1967,-2006,-2019,-13531,-2034,-2052,-2127, +-2131,-2133,-2137,-2138,-2139,-2140,-13532,-13533,-2410], +[0,-2006,-775,-3771,-2278,-4134], +[1,3,8520], +[0,8521,8522,8523,11], +[0,-2740], +[0,-21,-23,-36,-3077,-3373,-3204,-38,-40,-41,-43,-44,-47,-3040,-519,-3766,-9723,-742,-932,-940,-1344,-1543,-1942,-1952, +-2006,-2019,-2174,-2231,-12979,-3768,-13534,-2410], +[0,-3766,-2455,-13535,-3771,-775], +[1,3,8525], +[0,8526,22,8527,10], +[0,-635,-1931], +[0,-6413,-775,-13536,-13537,-7192,-1889,-3583,-2280], +[1,3,8529], +[0,8530,8531,8532,6], +[0,-93,-7195,-94,-95,-12147,-98,-9352,-2840,-755,-777,-781,-812,-1026,-11676,-8142,-6197,-1111,-13538,-1327,-1353,-3190, +-8143,-1396,-1499,-13539,-1630,-1639,-1759,-1863,-1889,-1929,-1931,-1934,-2267,-2591,-13540,-4002,-2530], +[0,-50,-13541,-5121,-13542,-13543,-13544,-5685,-3198,-13545,-13546,-13547,-13548,-4036,-6928,-13549,-8335,-13550,-9284, +-589,-722,-823,-932,-13551,-958,-959,-1344,-1415,-13552,-1428,-1534,-4984,-1771,-4916,-1904,-1906,-12130,-13553,-1930, +-1942,-2094,-2289,-2410], +[0,-3771,-775,-1521,-7148,-8170,-1599,-2162,-3754,-2281,-2289], +[1,3,8534], +[0,8535,8536,8537,9], +[0,-3085], +[0,-13542,-13543,-932,-13551,-1344,-1534,-1771,-1942,-2094,-2281], +[0,-2281,-13554,-2250], +[1,3,8539], +[0,0,8540,8541,5], +[0,-1788,-1415,-1344,-1868,-855,-932,-708,-2402,-1942,-13555,-767,-2281,-21,-533,-13556,-5128,-2410,-23,-5870,-1534,-1637, +-43,-86,-2174,-40,-13557,-959,-977,-958,-3471,-13552,-3842,-940,-967,-2405,-42,-428,-3470,-3307,-935,-427,-3363,-5585, +-26,-36], +[0,-13558,-2281,-775,-3754,-1521,-7148,-13559,-3833,-5924,-13560,-712,-13561], +[1,3,8543], +[0,8544,8545,8546,4], +[0,-1889,-13562], +[0,-932,-13563,-940,-1110,-1344,-1415,-12241,-13552,-1428,-1534,-1904,-12130,-13564,-1942,-13565,-2281], +[0,-13558,-2281,-775,-7148,-7154], +[1,3,8548], +[0,8549,8550,8551,4], +[0,-781,-1396,-1499,-1620,-13566,-13567,-1931,-1934], +[0,-722,-767,-932,-13568,-1344,-1415,-13552,-1534,-1763,-1889,-12130,-1930,-1942,-2281], +[0,-775,-9231,-7148,-8170,-3754,-2281,-13558], +[1,3,8553], +[0,8554,128,8555,6], +[0,-28,-812,-1107,-2165,-2231], +[0,-775,-3215,-5553,-9406,-1409,-6784], +[1,3,8557], +[0,8558,8559,8560,6], +[0,-1026,-1759], +[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-589,-13569,-767,-774,-778,-824,-825,-932,-940,-6929,-958,-959,-960,-965,-967, +-978,-1110,-1344,-1415,-1534,-1623,-1717,-1771,-1942,-2000,-2251,-2275,-2286,-2411,-2501], +[0,-2501,-5932,-2286], +[1,3,8562], +[0,0,0,8563,11], +[0,-775,-1889,-12209,-4132,-6806,-3215], +[1,3,8565], +[0,8566,8567,8568,5], +[0,-723,-13570,-812,-13106,-1069,-1070,-1636,-1640,-1983], +[0,-21,-23,-38,-40,-44,-86,-3307,-571,-7124,-11178,-617,-633,-744,-767,-932,-946,-952,-966,-1004,-1010,-1053,-1098,-1344, +-1534,-1610,-1654,-1685,-1788,-2094,-2099,-2125,-2198,-13571,-13572,-2541,-2568], +[0,-9733,-5998,-5998,-3690,-510,-5867,-523,-5391,-3323,-13573,-1116,-1334,-1334,-1342,-9128,-1961,-1961,-5923,-2105,-2105, +-9176,-13503,-3691,-2122,-13574,-2291,-7430,-6408,-2533,-2540], +[1,3,8570], +[0,8571,8572,7,6], +[0,-10528], +[0,-3198,-11232,-3037,-589,-10300,-1671,-8973,-2410,-2469], +[1,3,8574], +[0,8575,8576,8577,5], +[0,-1636,-2291,-746], +[0,-1788,-1722,-1654,-2210,-932,-2198,-1004,-1972,-617,-744,-86,-958,-934,-3307], +[0,-3440,-1334,-2105,-2291,-4873,-4004,-3634], +[1,3,8579], +[0,8580,8581,8582,4], +[0,-615,-1636], +[0,-664,-665,-2123,-2517,-617,-744,-1004,-1654,-2198], +[0,-2293,-2291,-2105,-4873,-3440,-1334,-4004,-3634,-1961,-13575], +[1,3,8584], +[0,0,8585,8586,5], +[0,-2541,-519,-2384,-3037], +[0,-712,-5535,-714,-3974,-4000,-687,-5514,-3770,-3975,-5549,-5513,-5550,-2547,-3958,-6520,-13576,-13577,-6659,-13578, +-13579], +[1,3,8588], +[0,8589,8590,8591,6], +[0,-3195,-3115,-5032,-426,-461,-5113,-8294,-703,-5034,-5035,-13580,-4788,-4789,-1588,-13581], +[0,-3180,-3983,-350,-351,-3266,-3989,-5114,-3037,-5040,-928,-2127,-2231,-2654,-2410,-2469], +[0,-2299,-11193,-3161,-3261,-7651], +[1,3,8593], +[0,8594,8595,8596,4], +[0,-3180,-679,-4787,-1863,-5037], +[0,-350,-4062,-351,-3561,-3267,-13582,-644,-2127,-2130,-4063,-2299,-2410,-13583,-13584,-11164,-11165,-13585,-13586], +[0,-2299,-687], +[1,3,8598], +[0,0,8599,8600,4], +[0,-23,-40,-86,-3307,-13587,-13588,-4776,-3037,-13589,-8336,-518,-5859,-711,-740,-932,-1521,-1889,-13590,-1907,-1942, +-1974,-2162,-2286,-2289,-2299,-2410,-2469], +[0,-2299,-9263,-2410,-1521,-2286,-2162,-3754,-1974,-711], +[1,3,8602], +[0,8603,8604,8605,4], +[0,-2746,-1107,-2303,-510,-10310,-2460,-2542,-2550,-1442,-2520,-1689,-13591,-1566,-8054,-4733,-13592,-5981], +[0,-2541,-1415,-1521,-2162,-1880,-2286,-1870,-959,-960,-13593,-13594], +[0,-3167,-3843,-3839,-7715,-9278,-9279,-9471,-3262,-775,-2162,-1521,-2286,-3271,-9339,-3264,-9472,-9473,-9474,-1689,-7419], +[1,3,8607], +[0,8608,8609,8610,4], +[0,-719,-780,-781,-2888,-2746,-1863,-2165], +[0,-190,-5121,-350,-351,-3266,-5685,-7169,-3136,-3037,-13312,-3715,-767,-932,-1110,-1415,-1870,-1874,-1880,-1942,-2125, +-2127,-2325,-2384,-2410], +[0,-2303,-3839,-7175,-1644], +[1,3,8612], +[0,8613,8614,8615,4], +[0,-824,-1570,-13595,-2415], +[0,-519,-526,-528,-556,-11733,-562,-566,-615,-932,-13596,-1626,-1650,-2210,-2501], +[0,-2501,-3862,-13597,-13595,-5196,-8615], +[1,3,8617], +[0,8618,8619,8620,8], +[0,-461,-823,-1107,-1460], +[0,-932,-1942,-2322,-13598], +[0,-4847,-13599,-3696,-8442,-856,-2305,-5885,-5886,-3262,-3960,-8443,-8444,-8445,-3438], +[1,3,8622], +[0,8623,8624,8625,4], +[0,-1111,-1442,-719,-13600,-13601], +[0,-932,-2469,-1942,-3664,-13602], +[0,-4847,-3671,-13603,-856,-3690,-9339,-3485], +[1,3,8627], +[0,0,131,8628,4], +[0,-3812,-4847,-3160,-2308,-1004,-856,-3671,-13604,-5406,-2307,-4101,-13605,-13606], +[1,3,8630], +[0,8631,8632,8633,4], +[0,-3434], +[0,-927,-1004,-13607,-1654,-1788,-1978], +[0,-4847,-1004,-3160,-4055,-856], +[1,3,8635], +[0,8636,8637,8638,6], +[0,-2416,-1813], +[0,-1548,-1004,-13608,-1654,-1003,-13609,-1521,-13610,-600,-13611,-1859,-633,-6656,-1446], +[0,-3110,-7651,-3264,-13432,-13612,-6876,-1004,-6301], +[1,3,8640], +[0,0,0,8641,9], +[0,-2311,-13613,-12449,-2363,-5270,-3162,-752,-1861,-3994,-3161,-13614,-12613,-13615,-3862,-2006,-2476,-13616], +[1,3,8643], +[0,8644,8645,8646,4], +[0,-13617,-13618,-13619], +[0,-617,-767,-1004,-13620,-1415,-1676,-2125,-2410], +[0,-2105,-1334,-1342,-3324,-633,-12397,-6367], +[1,3,8648], +[0,0,0,8649,9], +[0,-13621,-13622,-1673,-11230,-1819,-9261,-12578,-7084,-13623,-13624,-13625,-13626,-13627,-13628,-13629,-12218,-13630, +-3708,-13631,-10412,-8801,-13632,-13633,-13634,-13635,-5150,-13636,-13637,-13638,-13639,-13640,-13641,-13642,-13643, +-13644,-7606,-13645,-13646,-6524,-13647,-13648,-13649,-6712,-13650,-13651,-10245,-13652,-13653,-13654,-13655,-13656, +-13657,-13658,-3445,-13173,-13659,-13660], +[1,3,8651], +[0,0,8652,7,4], +[0,-1805,-1496,-1654,-1650,-2125,-2127,-2334,-615,-1729,-13661,-8559,-2516,-2234,-4062,-2140,-3561,-13662,-351,-13663], +[1,3,8654], +[0,8655,8656,8657,4], +[0,-2531,-469,-754,-13664,-13665,-13666,-13667,-1548,-1676,-13668,-13669,-13670,-13671,-1004,-13672,-13673,-13674,-13675, +-13676,-512,-617,-724,-737,-13677,-496,-44,-13678], +[0,-1708,-473,-13679,-13680,-2195,-13681,-722,-13682], +[0,-13683,-13684], +[1,3,8659], +[0,0,8660,8661,9], +[0,-5369,-2387,-932,-1111,-2127,-2469,-1942,-2410,-23,-3037,-40,-2132,-2411,-3664,-3326,-958,-5122,-6593,-13685,-3267, +-351,-10022,-3344], +[0,-2318,-2316,-775,-3205,-13686,-13687,-1631,-9342,-13688], +[1,3,8663], +[0,0,8664,7,4], +[0,-815,-3037,-3751,-1588,-2232,-13689,-3195], +[1,3,8666], +[0,8667,0,8668,10], +[0,-13690,-13691,-13692,-13693,-13694,-13695,-13696,-13697,-13698,-13699,-13700,-13701,-13702,-13703,-13704,-13705,-13706, +-13707,-13708,-13709], +[0,-507,-2319,-4004,-3634,-3161,-687,-13710,-13711], +[1,3,8670], +[0,8671,8672,8673,9], +[0,-668,-883,-1040,-1548,-1951,-10854,-13712,-2347], +[0,-13713], +[0,-2322,-2319,-1654,-4679,-6863], +[1,3,8675], +[0,0,8676,7,6], +[0,-1415,-932,-1110,-1942,-190,-533,-23,-965,-3560,-40,-959,-958,-6929,-978,-940,-967,-3748], +[1,3,8678], +[0,8679,8680,8681,9], +[0,-13714,-13715,-13716,-655,-821,-6369,-13717,-1065,-1097,-1107,-13718,-1285,-1370,-7394,-1646,-1659,-1794,-5849,-1795, +-1797,-2114,-8057], +[0,-5834,-505,-516,-725,-767,-887,-13719,-5835,-921,-932,-6282,-1408,-1442,-13720,-1777,-1788,-2156,-2177,-2319,-8573], +[0,-2319,-4004,-13721,-507,-4865], +[1,3,8683], +[0,8684,8685,7,5], +[0,-13722,-13723,-9084,-11721,-13724], +[0,-2319,-1722,-2386,-13725,-2125,-2402,-1942,-11719,-3037,-908,-13726], +[1,3,8687], +[0,8688,8689,8690,5], +[0,-1976,-2325], +[0,-2125,-13727,-2250], +[0,-2323,-1076,-6656,-7738,-7421,-5827], +[1,3,8692], +[0,8693,8694,7,6], +[0,-13728,-13729,-13730], +[0,-13727,-2250,-725], +[1,3,8696], +[0,33,8697,8698,6], +[0,-6486,-6627,-3136,-3037,-427,-428,-756,-928,-932,-943,-958,-966,-968,-1415,-1942,-2375,-2410], +[0,-13731,-3555,-13732,-13733,-3100,-13734,-3445,-13735,-11074,-6235], +[1,3,8700], +[0,0,8701,8702,4], +[0,-6486,-13736,-13737,-3617,-6627,-3136,-3037,-4203,-427,-428,-617,-720,-796,-13738,-932,-943,-958,-966,-968,-1344,-1415, +-1534,-1753,-7760,-1942,-2293,-2375,-2410], +[0,-13731,-3555,-13732,-13733,-3445,-13735,-6367,-1004], +[1,3,8704], +[0,8705,0,8706,8], +[0,-812,-1723,-6127], +[0,-13739,-13740,-13741,-13742,-13743,-596,-13744,-3445], +[1,3,8708], +[0,8709,8710,8711,8], +[0,-812,-1723], +[0,-190,-3561,-3198,-3037,-8612,-865,-932,-940,-972,-978,-1733,-1942,-2402,-2405,-2410,-2411,-2466,-6859,-2469], +[0,-13739,-13742,-2328,-3966,-3445], +[1,3,8713], +[0,8714,27,258,5], +[0,-2125,-1650], +[1,3,8716], +[0,8717,8718,8719,4], +[0,-1399,-5917,-2400,-13387], +[0,-3037,-519,-1849,-2363,-2384,-2541], +[0,-2330,-9214,-1847,-6656,-7421,-7420,-6909,-13745,-11846,-13746,-6555,-13747], +[1,3,8721], +[0,8722,0,8723,9], +[0,-10893,-13748,-13749,-13750,-13751,-13752,-13753,-13754], +[0,-3974,-4000,-5514,-687,-2547,-712,-13755,-13756,-5553,-3962,-13757,-12898,-13758,-5564,-3824,-6716,-6765,-13759,-13760, +-13761,-12704,-6527,-7715,-9235,-8642], +[1,3,8725], +[0,8726,0,8727,11], +[0,-13762,-6372,-1370,-13763,-2347,-13764], +[0,-3824,-3974,-5514,-13765,-13766], +[1,3,8729], +[0,8730,8731,8732,6], +[0,-13767,-461,-719,-2234], +[0,-13768,-13769,-932,-8150,-985,-1654,-1939,-2127,-2177,-2231], +[0,-9216,-2334,-2415,-2416,-1644,-6684,-3214,-3217,-8108,-3184,-6052,-13770,-4795,-8165,-6434,-510,-5867], +[1,3,8734], +[0,8735,8736,8737,5], +[0,-2334,-1429,-2168,-2182,-3180], +[0,-824,-1415,-1344,-1623,-774,-932,-825,-928,-2501,-1942,-367,-767,-2416,-21,-190,-2410,-23,-3037,-1041,-1534,-1771, +-2503,-11510,-86,-965,-3560,-13771,-2251,-40,-2411,-959,-748,-960,-958,-6929,-978,-940,-967,-3748,-6930,-3307], +[0,-9216,-2416,-2415,-2334,-2501,-7172,-6059,-6454,-9696,-9234,-6059,-6684,-1644,-7175,-7176], +[1,3,8739], +[0,8740,8741,8742,4], +[0,-13772,-13773,-13774,-13775,-13776,-717,-718,-10293,-1026,-10745,-7576], +[0,-1448,-1729], +[0,-2337,-4004,-4043,-687,-5119,-3634,-3673,-2322,-2319,-519,-1654], +[1,3,8744], +[0,8745,8746,8747,11], +[0,-615,-668,-1107,-1548,-1610,-1650,-13777,-13778], +[0,-3244,-190,-5294,-5767,-3036,-3044,-3037,-4372,-427,-428,-3664,-827,-932,-6611,-13779,-2210,-13780,-13781,-2391,-2392, +-2410,-13782,-2469], +[0,-1599,-4004,-5119,-13783,-856,-3671], +[1,3,8749], +[0,8750,8751,8752,4], +[0,-23,-33,-37,-10983,-3395,-3383,-3376,-3384,-3393,-3350,-3385,-3374,-38,-40,-6056,-41,-44,-13784,-13785,-3037,-6558, +-3442,-541,-6067,-13786,-7435,-664,-668,-13787,-711,-719,-812,-815,-824,-13788,-11460,-834,-13789,-11328,-5910,-3606, +-999,-13790,-1111,-1119,-12933,-1341,-5458,-13791,-1366,-1392,-10697,-1393,-13792,-1399,-1460,-1548,-13793,-1591,-11015, +-1666,-13794,-1689, +-1699,-13795,-1839,-1866,-13796,-1880,-6467,-13797,-1966,-1982,-13798,-13799,-5915,-2115,-2160,-2177,-3169,-2234,-2270, +-13800,-13801,-13802,-13803,-13804,-13805,-13806,-13807,-13808,-13809,-2359,-2369,-2410,-13810,-13811], +[0,-13812,-7590,-13813,-4066,-350,-6572,-351,-13814,-13815,-3035,-3198,-13816,-9939,-9283,-11011,-3622,-3735,-3199,-3172, +-9660,-13817,-427,-428,-535,-579,-617,-13818,-13819,-665,-9077,-3050,-729,-754,-767,-13820,-930,-932,-13821,-7353,-1004, +-13822,-1168,-1174,-13823,-1196,-1197,-1226,-13824,-13825,-8498,-1243,-13826,-1262,-3809,-1608,-1632,-1646,-13827,-1685, +-13828,-1972,-2006,-13829, +-2127,-2142,-2187,-2210,-7220,-2269,-13830,-2387,-2416], +[0,-13831,-5112,-4865,-6413,-3258,-3995,-3634,-4864,-4004,-4043,-4873,-507,-5855,-13832,-6948,-6950,-510,-5867], +[1,3,8754], +[0,8755,8756,8757,6], +[0,-7602,-13833,-501,-8864,-8898,-812,-13834,-851,-1098,-7772,-13835,-13836,-2324,-2359,-2426], +[0,-11344,-13837,-11339,-3198,-11347,-13838,-13839,-3628], +[0,-2340,-7606,-3634], +[1,3,8759], +[0,8760,8761,8762,5], +[0,-1548,-4654,-13840,-10846], +[0,-3037,-427,-428,-633,-13841,-13842,-767,-815,-13843,-13844,-1398,-1650,-1771,-1788,-2125,-2250,-13845,-13846,-2341, +-2379,-5482,-2410], +[0,-4873,-3440,-4215,-8611,-4216,-13847,-11378], +[1,3,8764], +[0,8765,8766,8767,4], +[0,-4733,-573,-615,-13762,-719,-724,-735,-999,-1004,-13848,-1107,-1336,-1442,-1548,-1650,-1689,-1737,-1778,-13849,-2125, +-2228,-13850,-13851,-8573,-2359], +[0,-13852,-633,-664,-7976,-13853,-674,-838,-932,-7979,-964,-1654,-2105,-13854,-2195,-2210,-2211,-2229,-2322], +[0,-3214,-3634,-11116,-4865], +[1,3,8769], +[0,0,8770,8771,4], +[0,-2319,-2322,-689], +[0,-5554,-4002,-9846,-4111,-10844,-6724], +[1,3,8773], +[0,0,8774,8775,4], +[0,-190,-351,-3266,-932,-13855,-952,-957,-960,-1110,-13856,-1446,-1588,-1880,-1978,-1989,-2127,-2393], +[0,-2344,-13857,-3214,-13858,-13859,-13860,-13861,-13862,-13863,-13864,-13865,-659,-3839,-5177], +[1,3,8777], +[0,0,8778,8779,4], +[0,-21,-23,-38,-40,-44,-3326,-534,-7156,-753,-932,-7157,-940,-967,-985,-1098,-13866,-7158,-1344,-1471,-1473,-1475,-1479, +-1483,-1485,-1490,-1492,-1534,-1646,-13867,-1763,-1942,-1991,-2127,-7161,-2501], +[0,-811,-7329], +[1,3,8781], +[0,0,8782,8783,9], +[0,-8388,-2322,-8393], +[0,-5827,-8027,-13868,-11441], +[1,3,8785], +[0,8786,8787,8788,4], +[0,-2062], +[0,-599,-640,-664,-13869,-1654,-13870,-2250,-13871], +[0,-5827,-13872,-2346,-6408], +[1,3,8790], +[0,0,0,8791,11], +[0,-12735,-705,-3262,-5925,-1961], +[1,3,8793], +[0,0,14,8794,6], +[0,-13873,-13874,-13875,-2350,-13876,-1847,-11845,-7421,-2440,-7727,-5845], +[1,3,8796], +[0,8797,210,8798,4], +[0,-668,-12908,-1040,-9236,-13877,-1951,-2343], +[0,-1127,-8906,-9460,-4123,-13878,-9330,-13879,-9225,-6187,-8906], +[1,3,8800], +[0,8801,8802,8803,4], +[0,-13880,-13881,-13882,-13883,-13884,-13885,-13886,-13887,-13888,-13889,-13890,-13891,-13892,-13893,-13894,-13895,-13896, +-13897,-13898,-13899,-13900,-13901,-13902,-13903,-13904,-13905,-13906,-13907,-13908,-13909,-13910,-13911,-13912,-13913, +-13914,-13915,-13916,-13917,-13918,-13919,-13920,-13921,-13922,-13923,-13924,-13925,-13926,-13927,-13928,-13929,-13930, +-13931,-13932,-13933,-13934,-13935,-13936,-13937,-13938,-13939,-13940,-13941,-13942, +-13943,-13944,-13945], +[0,-1076,-1107,-1168,-1847,-2162,-1654,-2006,-932,-1548,-2125,-784,-1889,-2501,-923,-1077,-1405,-767,-1003,-1248,-1743, +-2019,-778,-1183,-1967,-1187,-2163,-518,-1238,-1244,-2275,-13946,-13947,-1792,-2508,-1184,-1514,-1908,-13948,-3054,-969, +-933,-958,-962,-10533,-13949,-796,-1017], +[0,-2006,-3159,-3095,-3098,-3160,-3161,-3100,-13950,-2352,-13951], +[1,3,8805], +[0,8806,8807,7,6], +[0,-10459,-812,-10622,-10623,-1792,-1983], +[0,-526,-535,-554,-559,-932,-943,-968,-974,-1004,-1088,-1654,-11943,-2251,-2293], +[1,3,8809], +[0,0,0,8810,5], +[0,-589,-13952,-13241], +[1,3,8812], +[0,0,8813,8814,5], +[0,-13953], +[0,-712,-3215,-13954], +[1,3,8816], +[0,0,0,8817,11], +[0,-3494,-2356,-7754,-3214,-3264,-5554,-10109,-10110,-10114,-3495,-10111,-3498], +[1,3,8819], +[0,0,8820,8821,4], +[0,-3037,-13239,-932,-940,-967,-978,-1942,-2892,-2410,-2411,-2466,-2469], +[0,-5922,-13955,-13956], +[1,3,8823], +[0,0,0,8824,8], +[0,-4216,-4215,-2410,-13957], +[1,3,8826], +[0,0,8827,258,4], +[0,-1654,-932,-1405,-6726,-964], +[1,3,8829], +[0,8830,8831,8832,4], +[0,-2036], +[0,-23,-13958,-3156,-1942,-2410], +[0,-2006,-3159,-13959,-12662,-3825,-13960,-13961,-2034,-2053,-13962,-13963,-2360,-4127,-4122,-13964,-687,-3162,-5270, +-5271,-3578,-13965], +[1,3,8834], +[0,0,8835,8836,10], +[0,-21,-23,-37,-40,-41,-2581,-11254,-3311,-534,-664,-932,-1004,-1077,-1103,-1111,-1442,-1449,-1610,-1650,-1654,-2634, +-13966,-1771,-13967,-2006,-2019,-2162,-2250,-2501,-2503], +[0,-2361,-3214,-4002,-13968,-7002,-3960,-3264,-7534,-9975], +[1,3,8838], +[0,0,8839,8840,6], +[0,-1754,-11358], +[0,-2362,-3215], +[1,3,8842], +[0,0,8843,7,6], +[0,-11719,-2319], +[1,3,8845], +[0,8846,8847,8848,6], +[0,-13969], +[0,-2832,-190,-4139,-262,-3037,-6593,-932,-940,-948,-958,-967,-3631,-1110,-1942,-2391,-2410,-2411,-2469], +[0,-4181,-743,-6920,-13970,-13570,-8792,-13971,-13972], +[1,3,8850], +[0,8851,8852,8853,4], +[0,-714,-808,-1650,-13973], +[0,-3035,-3621,-664,-689,-879,-932,-1654,-1788,-2379,-2388,-2410], +[0,-1573,-3444,-13974,-812], +[1,3,8855], +[0,8856,8857,8858,5], +[0,-11103,-13975,-7400], +[0,-5834,-516,-5835,-921,-932,-1365,-1777,-2156,-2322], +[0,-2368,-2487,-7371,-6917,-13976,-6545,-702], +[1,3,8860], +[0,0,27,8861,5], +[0,-10919,-10336,-1958,-13641,-12872,-5395], +[1,3,8863], +[0,241,8864,7,5], +[0,-3732,-4198,-3617,-3136,-724,-754,-1004,-1415,-1753,-1942,-2375,-2410,-2564], +[1,3,8866], +[0,8867,8868,8869,4], +[0,-1370,-2347,-6372,-13977,-13978,-2062], +[0,-2322,-2346,-725], +[0,-3264,-9292,-3215,-6408,-12123,-775], +[1,3,8871], +[0,8872,8873,8874,4], +[0,-3851,-3199,-1388,-1681,-2177,-9444], +[0,-2581,-3037,-3664,-637,-11187,-1672,-1806,-5326,-3246,-2410,-2469], +[0,-3445,-6857,-1671,-1672,-3862,-4058,-7773,-7684,-3018,-2410,-3324,-2071,-4634,-10412,-6495,-5101,-13979], +[1,3,8876], +[0,0,8877,161,11], +[0,-21,-23,-26,-35,-36,-40,-42,-50,-86,-3307,-4139,-262,-3268,-3136,-3044,-3738,-427,-428,-533,-589,-753,-932,-940,-967, +-977,-1344,-1415,-1548,-1771,-1942,-2082,-2379,-2402,-2405,-2410,-2446], +[1,3,8879], +[0,8880,8881,8882,5], +[0,-13980,-7141,-1276,-1460,-1565,-13981,-2177,-2400,-2551], +[0,-86,-9404,-3615,-3244,-190,-5121,-4020,-237,-4776,-3048,-3136,-3660,-3759,-8216,-7211,-4036,-3037,-3199,-3041,-9146, +-427,-428,-533,-10525,-739,-928,-932,-940,-958,-959,-960,-967,-999,-1026,-1077,-1110,-1344,-1415,-1442,-1534,-1623,-1942, +-2125,-2379,-2410,-2411], +[0,-1415,-2410,-6915,-2006,-3634], +[1,3,8884], +[0,8885,8886,8887,5], +[0,-668,-909,-1639,-2177,-2231], +[0,-4036,-3199,-427,-428,-525,-527,-534,-556,-559,-13982,-560,-930,-932,-940,-966,-967,-1077,-1107,-1344,-1413,-1471, +-1475,-1481,-1483,-1490,-1492,-1534,-1607,-1650,-1654,-1942,-2125,-2410,-2501,-2503], +[0,-2376,-13983,-2501,-5932,-2410,-3018], +[1,3,8889], +[0,8890,8891,8892,9], +[0,-4106,-719,-865,-1672,-2392], +[0,-2581,-3037,-3664,-11187,-1763,-1806,-5326,-3246,-2410,-2469], +[0,-3445,-13984,-13985,-13986,-1672,-1671,-6857,-4058,-7773,-7684,-3018,-2410,-687,-5732,-13987,-5731], +[1,3,8894], +[0,8895,8896,8897,6], +[0,-13988,-13989], +[0,-3267,-3035,-9939,-3621,-3037,-664,-11072,-767,-834,-1654,-2125,-2127,-2379,-2410], +[0,-2410,-3272,-13990,-3107,-13991], +[1,3,8899], +[0,8900,8901,8902,5], +[0,-2558,-502,-834,-461,-462,-13981,-13992,-13993,-13994,-13995,-8214,-13996,-13997], +[0,-519,-1788,-523,-2006,-13998,-1001,-1548,-2125,-2177,-11685,-1821,-2402,-367,-13999,-1100,-1972,-2410,-9939,-3037, +-14000,-3040,-3044,-8890,-3199,-6744,-14001,-7772,-4364,-11347,-11708,-262], +[0,-2410,-3966,-11997,-5558,-3018,-3116], +[1,3,8904], +[0,8905,8906,8907,5], +[0,-3044,-3851,-3199,-14002,-1548,-1681,-14003,-14004,-2177], +[0,-2581,-3037,-3664,-11187,-1672,-1806,-5326,-3246,-2410,-2469], +[0,-3445,-1672,-3862,-6857,-4058,-7773,-7684,-3018,-2410,-7460,-1306,-5389,-6821,-8990,-10674,-6693,-5879,-1573], +[1,3,8909], +[0,0,37,8910,8], +[0,-2410,-2552,-10054,-10055], +[1,3,8912], +[0,8913,8914,8915,5], +[0,-1548,-3044], +[0,-2581,-3037,-3664,-1806,-5326,-3246,-2410,-2469], +[0,-3445,-3018,-2410,-14005,-14006,-11315,-8199,-6899,-14007,-14008,-14009,-14010,-14011], +[1,3,8917], +[0,8918,8919,7,9], +[0,-1460,-1646,-2270], +[0,-1415,-1344,-932,-2125,-2375,-2379,-1942,-2410,-3136,-3037,-1534,-5686,-14012,-960,-958,-940,-428,-7770,-427], +[1,3,8921], +[0,8922,8923,8924,5], +[0,-14013,-3686,-1111,-1418,-1630,-1849,-2061], +[0,-5028,-3037,-3040,-427,-428,-519,-757,-825,-932,-945,-14014,-999,-2006,-2115,-2153,-2410], +[0,-2410,-2384,-7440,-2414,-3694,-14015,-14016], +[1,3,8926], +[0,0,8927,8928,4], +[0,-23,-40,-42,-5121,-8214,-14013,-3037,-427,-428,-533,-774,-932,-940,-1415,-1942,-2410], +[0,-2410,-2384,-4037,-7440,-7144,-4004,-2414,-3694], +[1,3,8930], +[0,8931,8932,8933,10], +[0,-8200,-668,-679,-6475,-14017,-1645,-1650,-14018,-13709,-2125,-14019,-2410,-4297], +[0,-3037,-928,-1942,-2319,-2402], +[0,-2410,-5058,-9946,-985,-4791,-7641], +[1,3,8935], +[0,0,0,8936,6], +[0,-4165,-14020,-3116,-6784,-3214,-2387,-11997], +[1,3,8938], +[0,8939,8940,8941,8], +[0,-22,-644,-668,-719,-834,-1107,-1442,-1645,-1650,-2114,-2177,-2387,-7765], +[0,-305,-8355,-3035,-9939,-3036,-3660,-8566,-4811,-3621,-3037,-3200,-8890,-3199,-664,-1344,-13325,-1654,-1771,-1788,-1942, +-2125,-2379,-2388,-2389,-6355,-2410,-12515], +[0,-687,-2410,-8170], +[1,3,8943], +[0,0,8944,8945,5], +[0,-1415,-1344,-1548,-2125,-2388,-2375,-1591,-1942,-14021,-720,-2410,-3136,-3037,-14022,-2390,-14023,-6630,-2174,-14024, +-14025,-12348,-2449,-12349,-14026,-796,-14027], +[0,-7148,-2388,-14028,-1942,-727,-2410], +[1,3,8947], +[0,8948,8949,7,6], +[0,-7765], +[0,-3036,-3037,-714,-1107,-1771,-1847,-2388,-14029,-2410], +[1,3,8951], +[0,8952,8953,7,4], +[0,-13389,-653,-679,-734,-812,-928,-14030,-14031,-1863,-1907,-2115,-2127,-2231,-5354,-3535,-2654,-2369], +[0,-262,-4062,-367,-3198,-3037,-3200,-8349,-1055,-1889,-10815,-1942,-2114,-2132,-2162,-2271,-2299,-2301,-2334,-14032, +-2391,-2410,-2469,-2817], +[1,3,8955], +[0,8956,0,8957,4], +[0,-928,-1101], +[0,-687,-11997,-3966,-8930,-4791,-985,-2410,-14033], +[1,3,8959], +[0,8960,8961,8962,6], +[0,-14034], +[0,-350,-351,-3561,-633,-2123,-2127,-2250,-14035], +[0,-6473,-3264,-1599], +[1,3,8964], +[0,0,8965,8966,10], +[0,-1127,-1654,-11875,-1132,-2111,-14036,-14037,-1156,-14038,-1138,-14039,-2234,-1134,-14040,-1144,-1148,-14041,-14042, +-14043], +[0,-1456,-4058,-2451,-2394], +[1,3,8968], +[0,0,8969,8970,5], +[0,-633,-932,-1032,-14044,-2322,-14045,-2416], +[0,-770,-5374,-14046,-14047,-13351,-6131,-7372,-14048,-14049,-14050,-14051,-14052], +[1,3,8972], +[0,8973,8974,8975,5], +[0,-1077,-1462,-14053,-8984], +[0,-1771,-1860,-2416], +[0,-10838,-14054,-3215,-5093,-9474,-14055,-4112], +[1,3,8977], +[0,8978,8979,8980,9], +[0,-615,-1640,-2105], +[0,-510,-714,-719,-1654,-2123,-2210], +[0,-2398,-3690,-3691,-5827,-9292,-1791], +[1,3,8982], +[0,8983,8984,8985,11], +[0,-2105,-822], +[0,-1722,-1654,-932], +[0,-2398,-9292,-1791], +[1,3,8987], +[0,8988,0,7,4], +[0,-1646,-14056,-668], +[1,3,8990], +[0,8991,8992,8993,9], +[0,-14057], +[0,-5918,-428,-932,-14058,-815,-1002,-1772,-2384,-2410,-2411,-2541], +[0,-2410,-3018,-3694,-3590,-2444,-8113,-10665,-1631,-4055,-14059], +[1,3,8995], +[0,8996,129,8997,4], +[0,-737,-14060,-1641], +[0,-5398,-8038,-14061], +[1,3,8999], +[0,9000,9001,259,4], +[0,-14062,-3544,-1600,-1645,-2548], +[0,-190,-3800,-3661,-3621,-3037,-652,-13998,-928,-932,-1654,-1978,-2177,-2392,-2410,-2411], +[1,3,9003], +[0,9004,9005,9006,11], +[0,-14063], +[0,-3037,-2402,-2410], +[0,-14064,-14065,-3118,-14066,-14067,-14068,-2410,-856], +[1,3,9008], +[0,0,131,9009,6], +[0,-4121,-4123,-13188,-2410,-856,-14068,-2402], +[1,3,9011], +[0,0,0,9012,4], +[0,-3690,-856,-1599,-2402,-2410,-14065], +[1,3,9014], +[0,9015,9016,9017,4], +[0,-1610,-2410], +[0,-3802,-3621,-3037,-3628,-756,-1405,-1654,-1657,-2359], +[0,-4165,-856,-14069,-3214], +[1,3,9019], +[0,9020,9021,9022,4], +[0,-719,-2536,-1705,-6455,-14070,-510,-714,-1666,-1650,-7418,-14071], +[0,-664], +[0,-14072,-1599,-14073,-14074,-14075,-8676,-3110,-6473,-3262], +[1,3,9024], +[0,106,9025,7,5], +[0,-234,-3035,-4269,-3621,-14076,-3037,-664,-665,-756,-1654,-14077,-1672,-14078,-1942,-14079,-2234,-2379,-2389,-12348], +[1,3,9027], +[0,9028,9029,7,10], +[0,-1107,-2446,-483,-809,-812,-2387,-2550,-640,-815,-865,-7023,-496,-14080,-2080,-14081], +[0,-652,-1857,-664,-1168,-1344,-1392,-1654,-1682,-1691,-2071,-2210,-932,-1692,-2125,-3729,-1110,-1671,-2245,-2379,-10418, +-1942,-14082,-190,-1250,-8436,-2211,-2410,-3035,-3037,-1243,-1534,-3198,-3621,-4372,-3041,-1244,-14083,-10419,-1252, +-1261,-10420,-14084,-8214,-665,-3625,-3910,-7969,-2411,-14085,-2234,-14086,-960,-14087,-14088,-4269,-9660], +[1,3,9031], +[0,0,9032,9033,5], +[0,-652,-1681,-664,-834,-1107,-1498,-1654,-2387,-2518,-13998,-932,-8526,-928,-1110,-679,-1646,-3851,-190,-1863,-1874, +-2410,-3035,-9939,-3621,-10755,-1461,-305,-5686,-1028,-14089,-14090,-2411,-14091,-2234,-971,-14092,-429,-9660,-14093, +-5201,-5206,-14094,-14095], +[0,-4165,-14020,-3116,-6784,-3214], +[1,3,9035], +[0,9036,112,9037,4], +[0,-429,-428,-427,-5209], +[0,-3272,-3217,-3214,-2410,-3215,-4132,-932,-5208,-3784], +[1,3,9039], +[0,9040,9041,9042,10], +[0,-14096,-7829], +[0,-4811,-3621,-3037,-14097,-740,-14098,-1650,-1654,-1938,-2388,-2410,-2412], +[0,-4165], +[1,3,9044], +[0,9045,9046,9047,6], +[0,-14099,-14100,-865,-2773,-1521,-1551,-1889,-1907,-7164,-1915,-7165,-10283,-2162,-2232,-2383,-2286], +[0,-14101,-3136,-8334,-3759,-3037,-14102,-14103,-8336,-427,-428,-620,-932,-940,-1344,-1415,-14104,-1534,-14105,-1916, +-1927,-1942,-14106,-2375,-2410], +[0,-775,-3754,-2162,-1521,-2286,-3209,-3862,-1889,-2410], +[1,3,9049], +[0,9050,9051,9052,8], +[0,-11661,-615,-668,-696,-715,-13789,-10511,-12631,-1575,-1646,-14107,-14108,-2433,-2525,-2546], +[0,-829,-1722,-2125,-2379,-2388,-14109,-2410], +[0,-2414,-2410,-14110,-4159,-5897,-9800,-9069], +[1,3,9054], +[0,9055,9056,9057,8], +[0,-719,-2231], +[0,-461,-1654,-2177], +[0,-9216,-2415,-2416,-1644,-6684,-3214,-3217,-8108,-3184,-6052,-13770,-4795,-8165,-6434,-510,-5867], +[1,3,9059], +[0,0,9060,9061,11], +[0,-461,-2177], +[0,-687,-6454,-9696,-14111,-3217,-6505,-8108,-3214,-3756,-14112,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838, +-3215,-9698,-9216], +[1,3,9063], +[0,9064,9065,9066,9], +[0,-4287,-1046,-1401,-2168,-2182,-2231,-2416,-2510,-10059], +[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-8206,-767,-824,-825,-932,-940,-958,-1344,-1415,-1424,-1534,-1626,-1771,-1942, +-2251,-2334,-2501], +[0,-9216,-2416,-2415,-2501,-7172], +[1,3,9068], +[0,9069,9070,9071,5], +[0,-14113], +[0,-1654,-932,-615,-1405,-966,-958,-968,-943,-974], +[0,-6555,-3262,-7232,-9594], +[1,3,9073], +[0,9074,0,9075,4], +[0,-44,-3040,-3052,-14114,-14115,-14116,-14117,-14118,-14119,-14120,-14121,-432,-14122,-14123,-14124,-14125,-14126,-14127, +-14128,-14129,-14130,-14131,-14132,-14133,-14134,-14135,-14136,-14137,-14138,-14139,-433,-434,-14140,-14141,-14142, +-14143,-14144,-14145,-14146,-14147,-5257,-435,-14148,-14149,-14150,-14151,-14152,-14153,-14154,-14155,-14156,-14157, +-14158,-14159,-14160,-14161,-14162,-14163,-14164,-14165,-14166,-14167,-14168, +-14169,-14170], +[0,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[1,3,9077], +[0,9078,9079,174,10], +[0,-1107,-1351,-1548,-2177,-2529], +[0,-1452,-1600,-1654,-1766,-2198], +[1,3,9081], +[0,0,9082,7,10], +[0,-4066,-350,-351,-3267,-3037,-589,-1942,-2127,-2387,-2410,-2469], +[1,3,9084], +[0,0,9085,9086,5], +[0,-2581,-50,-13526,-668,-5382,-928,-1111,-1273,-1600,-14171,-1771,-14172,-1948,-3768,-2469], +[0,-3264,-3110,-7723], +[1,3,9088], +[0,9089,9090,7,5], +[0,-4066,-350,-4062,-351,-3561,-4785,-14173,-734,-6860,-928,-14030,-14174,-1431,-1588,-14175,-1651,-1852,-6568,-1948, +-2127,-2132,-6569,-2654,-14176], +[0,-3376,-3037,-3664,-8189,-672,-932,-944,-1942,-2410,-2469], +[1,3,9092], +[0,0,9093,9094,4], +[0,-1788,-1107,-849,-1344,-1471,-1989,-932,-2127,-2334,-757,-756,-1485,-7324,-4916,-14177,-958,-1488], +[0,-2444,-5112,-3844,-3323,-4865], +[1,3,9096], +[0,9097,9098,9099,4], +[0,-2243,-9649], +[0,-633,-14178,-932,-1405,-1654,-1657,-8276,-12323,-2424], +[0,-2424,-2265], +[1,3,9101], +[0,0,9102,9103,5], +[0,-8843,-11419,-14179,-357,-3037,-458,-2917,-652,-767,-14180,-928,-932,-1023,-1344,-1415,-14181,-2884,-1730,-1971,-2384, +-2410,-2531], +[0,-4213,-1334,-1342,-1961,-2105,-9172,-9173,-2533,-5388], +[1,3,9105], +[0,9106,9107,9108,4], +[0,-4231,-14182,-9596,-1015,-1395,-14183,-5358], +[0,-14184,-5334,-4251,-3037,-652,-1942,-2094,-2100,-2384,-2399,-2410,-2541], +[0,-3272,-7644,-5398,-10280,-1838,-1958,-2083,-2093,-14185,-6233,-6231,-4132,-6408,-10919,-2427], +[1,3,9110], +[0,9111,14,9112,4], +[0,-14186], +[0,-13747,-6555,-6240,-6814,-3960,-14187,-5839,-12411,-9682], +[1,3,9114], +[0,9115,9116,9117,5], +[0,-4231,-7700,-5356], +[0,-4251,-3037,-652,-1618,-10922,-10923,-1942,-2094,-2100,-2384,-2399,-2410,-2541], +[0,-9590,-14188,-2444,-3590,-2093,-14185,-2083,-10918,-9589,-14189,-14190,-1703,-6784,-1599,-3264,-6597,-10919,-3272, +-3966,-14191,-2487], +[1,3,9119], +[0,0,222,9120,5], +[0,-13875,-11002,-7727,-2430,-1847,-11845,-7421,-2440,-5550,-6836], +[1,3,9122], +[0,9123,0,9124,8], +[0,-7304,-1081,-14192,-14193,-8578,-2062], +[0,-5408,-2432,-9506,-14194,-5409,-5827,-7347], +[1,3,9126], +[0,9127,9128,9129,6], +[0,-14195,-623,-668,-14196,-2177,-8418,-728,-6848,-1514,-1394], +[0,-2541,-519,-9982,-2269,-686,-14197], +[0,-1764,-10674,-11693,-9258,-14198,-7440,-7144,-687,-3551,-5897,-9318], +[1,3,9131], +[0,0,0,9132,4], +[0,-9171,-2435,-14199,-14200,-14201,-14202,-14203,-14204,-14205,-14206,-14207,-14208,-14209,-14210,-14211,-14212,-14213, +-14214], +[1,3,9134], +[0,9135,9136,9137,10], +[0,-1983,-1977], +[0,-515,-1788,-2568,-461,-1654,-932,-5834], +[0,-6747,-2435,-10433], +[1,3,9139], +[0,0,9140,9141,5], +[0,-739,-1654,-2198], +[0,-2435,-8396], +[1,3,9143], +[0,9144,9145,48,10], +[0,-1543,-1641,-2168], +[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-1041,-1344,-1415,-1534,-1623,-8913,-1771,-1942, +-2251,-2501], +[1,3,9147], +[0,9148,9149,9150,5], +[0,-6614,-9730], +[0,-509,-633,-652,-1654,-1939,-14215,-14216,-2416], +[0,-6984,-3215,-9171,-2435,-1838,-5101,-2265,-1985,-6231], +[1,3,9152], +[0,9153,9154,9155,9], +[0,-1069,-14217,-1641,-1983,-2400,-2426,-14218], +[0,-2832,-14219,-7453,-14220,-8317,-14221,-3713,-3037,-14222,-4966,-14223,-3715,-8200,-9581,-3664,-649,-767,-1351,-2987, +-8065,-1971,-3727,-14224,-2325,-2386,-7457,-2410,-2469], +[0,-2439,-1334,-14225,-9172,-9173,-2105,-1342,-2426,-4213], +[1,3,9157], +[0,9158,9159,9160,4], +[0,-10383], +[0,-1849], +[0,-2440,-11845,-13874,-10383,-11070,-7421,-7420,-1847,-6845,-3592,-5558,-3591,-14226], +[1,3,9162], +[0,9163,9164,9165,6], +[0,-1582,-2359], +[0,-509,-1654,-1939,-2105,-2177,-14227], +[0,-9733,-4865,-14228,-1819,-1838,-3215,-14229,-14230,-14231,-14232,-2440,-14233,-2442,-9318], +[1,3,9167], +[0,0,9168,9169,4], +[0,-756,-1405,-6186,-1991], +[0,-9791,-5835,-4112,-2443], +[1,3,9171], +[0,9172,9173,260,5], +[0,-1370,-7391,-14234,-14235,-7400], +[0,-468,-753,-14236,-1797,-1798,-2151,-2155,-2322], +[1,3,9175], +[0,0,183,260,8], +[1,3,9177], +[0,0,9178,9179,4], +[0,-32,-86,-3307,-190,-3563,-719,-932,-940,-967,-1110,-1344,-1415,-1534,-2884,-1771,-1942,-11013,-11014,-2251,-2410,-2411], +[0,-2446,-7230,-11582,-14237], +[1,3,9181], +[0,9182,9183,9184,10], +[0,-8609,-834,-1496,-5037], +[0,-14238,-985,-11747,-13279], +[0,-507,-14239,-4043,-4045,-4004], +[1,3,9186], +[0,0,9187,9188,5], +[0,-2319,-1452], +[0,-2435,-3926,-7440,-7144,-5574], +[1,3,9190], +[0,9191,9192,9193,5], +[0,-7247,-14240,-5504,-10482], +[0,-7465,-664,-6774,-720,-796,-1344,-1405,-1650,-1654,-9075,-2125,-2174,-2210], +[0,-14241,-5890,-12665,-5889,-6908,-5887], +[1,3,9195], +[0,0,9196,9197,8], +[0,-4298,-4300], +[0,-1764,-5897,-6444,-3926], +[1,3,9199], +[0,0,9200,9201,4], +[0,-21,-23,-40,-43,-528,-535,-932,-934,-958,-1654,-1771,-1788,-2125,-2127,-2128,-11290,-2416], +[0,-2451,-3926,-5874,-8472,-7723,-14242,-14243,-507], +[1,3,9203], +[0,9204,9205,9206,11], +[0,-14244,-14245,-14246], +[0,-3037,-4837,-5589,-3899,-14247,-4838,-786,-14248,-1449,-2410,-2466,-2469,-14249,-2476,-2483,-14250,-14251,-14252, +-14253], +[0,-3160,-2476,-3944,-3162,-3100,-3095,-3098], +[1,3,9208], +[0,0,9209,9210,5], +[0,-1654,-932,-1405,-589,-2293,-585,-966,-958,-968,-943,-963,-974], +[0,-1334,-4616,-2453], +[1,3,9212], +[0,9213,9214,7,4], +[0,-2456], +[0,-2319,-1754], +[1,3,9216], +[0,9217,9218,7,6], +[0,-5193,-928,-679,-1069,-14254,-14255,-14256,-14257,-14258,-14259,-14260,-14261,-14262,-14263,-14264,-14265,-14266, +-14267,-14268,-14269,-14270,-14271,-14272,-14273,-14274,-14275], +[0,-1681,-469,-502,-864,-985,-1371,-1816,-1805,-2466,-651,-668,-812,-999,-1623,-1971,-12508,-13969,-2518,-669,-865,-1001, +-1400,-2125,-2177,-2240,-2324,-2469,-680,-708,-1004,-1047,-1658,-2379,-807,-1077,-1098,-1981,-1999,-2694,-367,-3851, +-4966,-14276,-10697,-11705,-1645,-1878,-2369,-11697,-12324,-481,-12971,-695,-1424,-1641,-1729,-2269,-2410,-3136,-3037, +-512,-929,-14277, +-8874,-7982,-14278,-3269,-3198,-14279,-10755,-480,-511,-14280,-14281,-14282,-3199,-9941,-13839,-5977,-3124,-12274,-11855, +-3637,-14283,-13376,-10519,-14284,-4105,-3048,-11328,-1025,-14285,-1767,-7162,-2991,-14286,-2992,-8566,-5363,-2946, +-14287,-3713,-4201,-14288,-13184,-14289,-14290,-9750,-10046,-14291,-5124,-14292,-14293,-2591,-11857,-14294,-3234,-14295, +-14296,-14297,-11702,-14298,-14299,-14300,-14301,-14302,-14303, +-14304,-14305,-14306], +[1,3,9220], +[0,9221,0,9222,4], +[0,-14307,-508,-13486], +[0,-6324,-8980,-14308,-12254,-12442,-3586], +[1,3,9224], +[0,0,9225,7,4], +[0,-1654,-1405,-2293], +[1,3,9227], +[0,0,9228,9229,4], +[0,-23,-40,-86,-3307,-3326,-539,-664,-671,-708,-757,-14309,-784,-825,-932,-934,-958,-1344,-1471,-1474,-1475,-3568,-1482, +-1483,-1486,-1534,-1654,-1771,-1889,-1891,-14310,-1906,-1927,-7033,-1978,-2127,-2281,-2282,-2284,-2416], +[0,-6527,-14311,-2459,-14312,-3264,-775,-3214,-3577,-3578], +[1,3,9231], +[0,9232,9233,9234,5], +[0,-14313,-702,-2103,-14314], +[0,-1788,-1654,-932,-1001,-13729,-2062,-937,-966], +[0,-9614,-7422,-6656,-7421,-9330,-1847], +[1,3,9236], +[0,9237,9238,9239,4], +[0,-599,-2347], +[0,-2322,-2463], +[0,-2460,-7419,-5845,-640,-5827], +[1,3,9241], +[0,9242,9243,9244,11], +[0,-14315,-9092,-1119,-1351,-14316,-14317,-1759,-14318,-14319,-13729,-14320,-14321,-2460,-14322], +[0,-932,-937,-1001,-1654,-1788,-2062,-2125,-2210], +[0,-1168,-14323,-2460,-6656,-8801,-1076,-8027], +[1,3,9246], +[0,9247,9248,9249,9], +[0,-2460,-2347], +[0,-1243,-2322,-2462], +[0,-2460,-1168,-7419,-9975,-5827,-2265,-5554,-14324], +[1,3,9251], +[0,185,0,9252,4], +[0,-2460,-9455,-9466,-1168], +[1,3,9254], +[0,9255,9256,9257,5], +[0,-14325,-6324,-14326,-1109,-9977,-8104,-14327,-14328], +[0,-633,-1405,-9088,-1812,-14329,-12014,-2320,-2322,-2568], +[0,-9614,-5092,-9613,-14330,-834,-7460,-4865], +[1,3,9259], +[0,9260,9261,261,6], +[0,-4787,-2127,-928,-1889,-1864,-2654], +[0,-2531,-653,-11071,-754,-990,-1651,-5042,-1805,-2162,-2213,-1852,-865,-5036,-1699,-1839,-2334,-729,-12601,-679,-2923, +-3027,-14331,-14332,-1863,-769,-929,-14333,-3751,-1588,-25,-4371,-866,-989,-3572,-14334,-1906,-14335,-14336,-11751, +-14337,-13397,-10046,-742,-4785,-1907,-7160,-4066,-3195,-5322,-2134,-350,-6410,-7897,-3180,-14338,-7151], +[1,3,9263], +[0,9264,9265,9266,4], +[0,-14341,-1026,-1077,-14342,-14343], +[0,-3617,-3048,-3037,-1004,-2391,-2410,-2466], +[0,-2466,-3690,-14344,-14345,-14346,-14347,-1004,-14348,-3844,-14349,-9843,-14350,-14351,-3862,-3816,-2146,-3445,-14352, +-14353], +[1,3,9268], +[0,9269,9270,9271,4], +[0,-2476,-2466,-4245,-3788,-14354,-3726,-14244,-4817,-3559,-14355,-3558,-14356,-14357,-3661,-4837,-14358,-4229,-14359], +[0,-1816,-2213,-812,-999,-1826,-3548,-1699,-2125,-2127,-2177,-2469,-928,-1871,-1966,-3728,-2653,-5627,-2648,-679,-1077, +-1098,-1646,-1942,-1977,-1582,-1639,-1863,-2654,-2410,-3037,-769,-1125,-1534,-1600,-3198,-6447,-14360,-3801,-3735,-1851, +-3048,-5686,-1570,-14361,-3246,-4036,-3425,-1603,-2132,-13397,-7080,-1601,-4062,-13593,-14362,-14363,-4066,-14364,-1602, +-6483,-14365,-3561,-9458, +-350,-1926,-14366,-3662,-14367,-14368,-740,-351,-14369,-14370,-14371], +[0,-2466,-2476,-2468], +[1,3,9273], +[0,9274,9275,9276,8], +[0,-5042,-2466,-1852,-6570,-3535,-1864,-2354,-2654,-6488,-1002,-14372,-1588,-13385,-13376,-13388,-14373,-14335,-14374, +-14375,-14376], +[0,-2531,-653,-1640,-14377,-1449,-7142,-1966,-13380,-1278,-14378,-462,-3037,-4647,-426,-14334,-3735,-14379,-8523,-14380, +-5038,-357,-4048,-3180,-3626,-4047], +[0,-2466,-2469,-4004,-1415], +[1,3,9278], +[0,9279,9280,9281,5], +[0,-668,-1548,-1376,-1646,-2528,-1365,-1575,-2269,-556,-14381], +[0,-2541,-1168,-525,-1654,-1666,-2198,-14382,-2105,-615,-527,-1174,-1197,-14383,-14384,-1182,-14385,-559], +[0,-3690,-687,-12694,-5550,-4039,-3161,-3994,-9668,-3957,-719,-13831,-1965,-1376], +[1,3,9283], +[0,9284,0,9285,4], +[0,-834,-14386,-1107], +[0,-3634,-4679,-4004,-14387], +[1,3,9287], +[0,9288,9289,9290,6], +[0,-2359,-1107,-1640,-2059,-9498,-668,-1526,-2555,-14388,-2177,-2536,-674,-2436,-719,-1645,-1600,-14389,-1315,-14390, +-14092], +[0,-1344,-1654,-2379,-1942,-3628,-2410,-3036,-6325,-3037,-14391,-14392,-1771,-3621,-8497,-1952,-3199,-11343,-14393,-86, +-14394,-8566,-2174,-3661,-2234,-5361,-3307], +[0,-11859,-2472,-5195], +[1,3,9292], +[0,0,37,7,4], +[1,3,9294], +[0,9295,9296,7,4], +[0,-479,-702,-994,-1022,-1107,-1351,-1391,-2231,-2410,-2460,-2536,-2550], +[0,-9478,-14395,-9457,-3036,-14396,-8566,-3621,-3037,-12993,-9476,-7837,-3046,-11343,-3041,-427,-428,-932,-1654,-2125], +[1,3,9298], +[0,0,9299,7,9], +[0,-1654,-1650,-2501,-2410,-3037,-2503,-3621,-14397,-748,-262], +[1,3,9301], +[0,9302,0,9303,6], +[0,-14244,-14398,-9631,-7438,-3250], +[0,-2476], +[1,3,9305], +[0,0,9306,9307,5], +[0,-23,-26,-33,-3077,-40,-3035,-3621,-3037,-428,-532,-534,-7890,-664,-778,-932,-14399,-1654,-2080,-2125,-2127,-2128,-2138, +-2341,-2376,-2410,-2415,-2476,-2481,-2485,-2816,-2486,-2501,-2503], +[0,-2476,-7711,-525,-2410], +[1,3,9309], +[0,9310,9311,7,9], +[0,-812,-982,-983,-986,-8141,-2177], +[0,-23,-32,-3332,-14400,-6484,-3244,-190,-3198,-426,-3037,-3199,-427,-428,-3664,-3665,-932,-8230,-961,-965,-8287,-967, +-978,-7356,-1942,-2379,-2892,-2410,-2466,-2469], +[1,3,9313], +[0,0,9314,9315,5], +[0,-639,-1415,-2476], +[0,-2476,-12517,-11492], +[1,3,9317], +[0,9318,9319,9320,6], +[0,-14401,-14357,-14402], +[0,-14403], +[0,-1348,-9780,-14404,-3862,-2476,-3527], +[1,3,9322], +[0,9323,9324,7,4], +[0,-668,-1284,-12982], +[0,-23,-40,-14405,-426,-12643,-3136,-4647,-14406,-14407,-534,-14408,-740,-778,-1041,-1331,-1415,-1449,-1534,-14409,-1623, +-1643,-7034,-7846,-1908,-1942,-1974,-14410,-2231,-2275,-2286,-2287,-2289,-2375,-2376,-2410,-2437,-2476,-2480,-2501,-2503, +-2505,-2508,-8160], +[1,3,9326], +[0,0,9327,9328,4], +[0,-3136,-3037,-1415,-2080,-2127,-2375,-2410,-2476,-2477], +[0,-2476,-2410,-11313], +[1,3,9330], +[0,9331,9332,7,5], +[0,-3194,-14411,-14357,-14412,-679,-1460,-14378,-1588,-1651,-14413,-1852,-1864,-6569,-2654,-2981,-14414,-2548], +[0,-47,-14415,-3983,-350,-351,-3561,-3266,-12959,-14416,-8523,-8200,-4837,-7438,-14417,-3250,-4838,-10363,-14418,-731, +-865,-14419,-7595,-1278,-1719,-14420,-2851,-2125,-2127,-2142,-2892,-2391,-2466,-2476], +[1,3,9334], +[0,9335,9336,7,9], +[0,-1284,-1543], +[0,-527,-533,-549,-740,-1415], +[1,3,9338], +[0,9339,0,9340,4], +[0,-14421,-1297], +[0,-2476,-3116], +[1,3,9342], +[0,262,9343,7,8], +[0,-2476,-1415,-668,-999,-6828,-932,-2127,-2177,-1004,-2501,-910,-1077,-767,-1978,-2468,-533,-778,-2410,-2481,-23,-3037, +-534,-14422,-2484,-40,-7438,-2082,-6429,-2140,-2253,-3561,-14399,-2504,-2506,-350,-740,-351], +[1,3,9345], +[0,9346,0,9347,5], +[0,-14423], +[0,-2444,-1819,-14424,-1076,-2487,-14425], +[1,3,9349], +[0,9350,9351,7,4], +[0,-8566,-7955,-8891,-1645], +[0,-3136,-3037,-1107,-1415,-1623,-2125,-2375,-2410], +[1,3,9353], +[0,220,9354,9355,4], +[0,-86,-3307,-633,-720,-796,-1344,-1415,-2416], +[0,-2489,-4038,-2006,-1384], +[1,3,9357], +[0,9358,0,9359,8], +[0,-14426,-1646], +[0,-2444,-3590,-1076,-6999], +[1,3,9361], +[0,9362,9363,9364,6], +[0,-9501,-633,-679,-6369,-14427,-2347,-2546], +[0,-627,-1650,-2239,-2322,-2416,-14428], +[0,-633,-10362,-2490,-4161,-7641,-4865], +[1,3,9366], +[0,9367,123,9368,4], +[0,-13012,-10837,-510,-14429,-13017,-14430,-13025,-13026,-14431,-14432], +[0,-13039,-1818,-1691,-6321,-2071,-1671,-14433,-2492,-2157,-13042], +[1,3,9370], +[0,9371,9372,9373,8], +[0,-501,-510,-1548,-1650,-1980,-2105,-14434], +[0,-14435,-664,-665,-714,-7743,-1004,-1022,-1168,-14436,-1197,-1212,-1231,-1296,-1336,-13334,-1405,-1654,-14437,-1722, +-14438,-2150,-14439,-14440,-14441,-2425,-2446,-2550], +[0,-3634,-4864,-11468,-12350,-11467], +[1,3,9375], +[0,9376,9377,9378,4], +[0,-14442,-14443,-14444,-14445,-14446,-14447,-14448,-14449,-14450,-14451,-14452,-14453,-14454,-14455,-14456,-14457,-14458], +[0,-14459,-1415,-932,-14460,-4271,-2375,-1942,-589,-2410,-3136,-1422,-3268,-14461,-958,-8378,-940,-14462,-428,-14463,-427], +[0,-14464,-7485,-3816], +[1,3,9380], +[0,9381,194,9382,8], +[0,-14465,-14466,-597,-636,-14467,-14468,-14469,-14470,-14471,-14472,-2550], +[0,-2494,-3673,-687,-14473,-4270], +[1,3,9384], +[0,9385,9386,7,11], +[0,-8231,-426,-4049,-14474,-14475,-14476,-461,-14477,-635,-14478,-909,-14335,-982,-997,-8610,-1119,-11677,-8562,-1641, +-9548,-2168,-2321,-2335,-12982,-2510], +[0,-23,-41,-50,-13541,-14479,-8608,-4035,-3136,-3713,-14480,-3037,-14481,-14482,-534,-14483,-14484,-711,-753,-774,-778, +-807,-922,-3068,-932,-6929,-1041,-1067,-1110,-14485,-1322,-1344,-1405,-1415,-8950,-1417,-1418,-1421,-1424,-1455,-1460, +-1521,-1522,-1534,-1548,-1549,-1623,-14486,-1643,-8913,-1733,-1788,-1806,-8436,-1942,-1950,-1974,-9720,-2000,-2006,-2019, +-14487,-2090,-4242, +-2095,-2098,-2101,-2125,-5508,-2205,-2269,-2275,-2334,-2344,-2354,-2362,-2376,-2410,-2427,-2437,-14488,-14489,-2503, +-14490,-2549], +[1,3,9388], +[0,9389,9390,9391,10], +[0,-2531,-2213,-461,-1810,-811,-719,-462,-1863,-1321,-930,-13410], +[0,-824,-664,-1168,-1415,-1652,-932,-1111,-1940,-753,-784,-1889,-2501,-1044,-1978,-682,-778,-1174,-1653,-2437,-23,-667, +-2503,-518,-528,-534,-1566,-2275,-44,-1565,-14491,-1908,-9422,-40,-14492,-2505,-41,-540,-969,-14493,-2335,-14494,-14495, +-38,-33,-3376], +[0,-2501,-4161,-14496,-3209,-8799,-9845,-14497,-12942,-14498,-7067], +[1,3,9393], +[0,9394,9395,9396,10], +[0,-914,-2068,-713,-719,-1381,-769,-1363,-2508,-14499,-5594,-11676,-13410,-14500], +[0,-14501], +[0,-2501,-687,-3108,-3551,-7882,-3578], +[1,3,9398], +[0,9399,9400,9401,9], +[0,-1623,-713,-1641,-1800,-1997,-2168], +[0,-1501,-1313,-1415,-999,-1344,-774,-932,-3122,-729,-825,-1004,-1030,-1110,-2501,-1942,-767,-823,-2293,-21,-190,-204, +-533,-2410,-23,-3037,-1041,-1534,-1771,-1045,-5039,-3617,-86,-965,-3560,-14502,-2251,-40,-4835,-3713,-14503,-959,-960, +-958,-6929,-978,-940,-967,-3748,-3307], +[0,-2501,-5401,-3113], +[1,3,9403], +[0,9404,9405,7,9], +[0,-2531,-1805,-12860,-13318,-1004,-13074,-679,-4204,-713,-11121,-3727,-724,-1119,-2186,-2168,-14504,-13386,-14505,-3617, +-14506,-14507,-14508,-14509,-1338,-2504,-731,-12962,-14510], +[0,-1313,-1415,-1521,-461,-999,-1344,-14511,-1623,-774,-932,-1610,-2125,-729,-753,-2501,-1942,-1978,-2293,-21,-533,-778, +-1336,-2410,-23,-3037,-1522,-1534,-1771,-2503,-534,-2275,-2230,-4356,-2508,-44,-86,-965,-2062,-2817,-3560,-2251,-40, +-4835,-8477,-2411,-3732,-4035,-959,-960,-1331,-5474,-32,-14512,-7716,-958,-6929,-940,-1419,-38,-3307,-5585], +[1,3,9407], +[0,9408,9409,9410,5], +[0,-2269,-1320,-14509], +[0,-1788,-1654,-2210,-932,-1004,-2501,-1942,-2293,-967,-2504], +[0,-2501,-6211,-12517,-3551,-14513,-14514,-5401,-1004], +[1,3,9412], +[0,9413,9414,7,5], +[0,-2321,-2510], +[0,-366,-3037,-3046,-14515,-3750,-748,-824,-932,-14516,-948,-1041,-1344,-1534,-1626,-1939,-1942,-14517,-2006,-2275,-2387, +-2410,-2469,-2501,-2508], +[1,3,9416], +[0,9417,9418,9419,5], +[0,-1055,-9087,-3415], +[0,-1344,-2387,-14518,-2501,-1942,-2410,-14519,-426], +[0,-2501,-1631], +[1,3,9421], +[0,0,9422,9423,5], +[0,-664,-932,-958,-1654,-1658,-1705,-2501], +[0,-2501,-5757,-3966,-4161,-14520], +[1,3,9425], +[0,0,9426,9427,5], +[0,-1415,-932,-1110,-2501,-1405,-1942,-756,-190,-2231,-2410,-3136,-965,-3560,-959,-960,-12916,-958,-6929,-978,-940,-967, +-3748], +[0,-2501,-2231], +[1,3,9429], +[0,9430,0,9431,4], +[0,-1119,-769,-2359,-1860], +[0,-9711,-11891], +[1,3,9433], +[0,9434,9435,9436,8], +[0,-642,-812,-922,-14521,-13490,-14522], +[0,-641,-1168,-1224,-1453,-1452,-2322], +[0,-2512,-6224,-9005,-14523,-14524,-5737,-14525,-8841,-3844,-3323], +[1,3,9438], +[0,9439,9440,9441,5], +[0,-14526,-14527,-14528,-14529,-14530,-14531,-14532,-14533,-14534,-14535,-14536,-14537,-812,-929,-14538,-14539,-14540, +-14541,-14542,-14543,-14544,-1640,-1801,-14545,-1976,-10570,-14546,-1997,-10576,-13357,-14547,-13729,-14548,-14549, +-14550,-14551,-14552,-14553,-14554], +[0,-23,-32,-3367,-40,-14555,-468,-14556,-10575,-14557,-571,-14558,-640,-14559,-771,-14560,-932,-943,-958,-965,-968,-1045, +-14561,-1834,-14562,-1985,-2151,-2174,-2187,-6390,-8573,-2320,-2322,-2335,-6391,-2501,-2503,-14563], +[0,-14564,-14565,-867,-14566,-14567,-14568,-14569,-9292,-14570,-14571,-14572,-6471,-14573,-2513], +[1,3,9443], +[0,9444,9445,9446,10], +[0,-596,-1696], +[0,-11836,-2319], +[0,-3708,-14574,-14575], +[1,3,9448], +[0,9449,9450,7,5], +[0,-1004,-1758,-2424], +[0,-710], +[1,3,9452], +[0,0,9453,7,4], +[0,-664,-1471,-1654,-932,-2127,-1942,-1474,-1482,-516,-1962,-14576,-1475,-1477,-1487,-1479,-5993,-8365], +[1,3,9455], +[0,0,9456,9457,6], +[0,-2493,-1107,-14577,-3691,-1460,-14578,-1452,-1650,-14579,-1813,-589,-14580,-2416,-633,-1963,-14439], +[0,-14581,-14582,-6306,-1961,-5923,-6307,-6308,-2517,-510,-6235,-11153], +[1,3,9459], +[0,9460,29,7,5], +[0,-14583], +[1,3,9462], +[0,0,9463,9464,10], +[0,-2778,-1446,-1654,-1666,-14584,-14585], +[0,-7084,-11722], +[1,3,9466], +[0,9467,9468,9469,8], +[0,-14586,-5758,-510,-1399,-14587,-14588,-2062,-7967,-2249,-8879,-2522], +[0,-21,-23,-40,-14589,-3037,-14590,-509,-14591,-932,-14592,-1415,-2125,-2240,-13361,-2347,-14593], +[0,-2520,-3444,-5545,-11989,-8948,-648,-1867,-1577,-3674,-4055,-5827], +[1,3,9471], +[0,9472,9473,9474,6], +[0,-14594,-1793,-8879,-2522], +[0,-14595,-14596,-664,-932,-966,-1654,-2125,-3708], +[0,-2520,-14597,-14598,-14599], +[1,3,9476], +[0,9477,9478,9479,4], +[0,-14587,-2062,-8879], +[0,-3037,-509,-526,-558,-821,-932,-14589,-1654,-1788,-2125,-14593], +[0,-2520,-3443,-14600], +[1,3,9481], +[0,9482,9483,9484,4], +[0,-14601,-1107,-1548,-14602,-2347,-14603], +[0,-664,-1077,-1405], +[0,-622,-5897,-4633,-9405,-11729,-3015], +[1,3,9486], +[0,0,88,9487,11], +[0,-14604,-14605,-6722,-14606,-14607,-14608,-14609,-5554,-10781,-2524,-12439,-4001], +[1,3,9489], +[0,0,31,9490,8], +[0,-10781,-4001,-11315,-3276,-6787], +[1,3,9492], +[0,9493,9494,9495,9], +[0,-7141,-1948,-4701,-2510,-14610], +[0,-3037,-3046], +[0,-14611,-14612,-2501,-14613,-6491,-14614,-14615,-14616], +[1,3,9497], +[0,9498,9499,9500,4], +[0,-482,-2267,-2269], +[0,-519,-668,-756,-3607,-1788,-2384,-2541], +[0,-4001,-14604,-2525,-14617,-14618,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513, +-5550,-2547,-1573,-5545,-3958,-5554], +[1,3,9502], +[0,9503,29,9504,6], +[0,-8143,-2202], +[0,-14619,-14620], +[1,3,9506], +[0,0,9507,9508,4], +[0,-589,-642,-932,-940,-967,-1110,-1654,-1788,-1942,-13490], +[0,-14621,-14622,-14525,-14623,-14624,-3509], +[1,3,9510], +[0,9511,9512,9513,9], +[0,-7334,-615,-668,-674,-812,-14625,-1400,-1403,-1792,-3633,-14626,-14627], +[0,-756,-1405,-1654,-1657,-6810,-2125,-2210,-2250], +[0,-3690,-674,-14628,-6596,-7534,-3578], +[1,3,9515], +[0,9516,9517,9518,8], +[0,-1109,-14629,-14630,-2546], +[0,-1065,-1939,-2320,-2322], +[0,-2533,-1334,-2540,-3120,-633], +[1,3,9520], +[0,9521,9522,9523,6], +[0,-8696,-14631,-14632,-10781,-14633,-14634,-14635], +[0,-7746,-461,-1449,-1654,-2210,-932,-14636,-600,-879,-719,-2410,-3037,-14637,-14638,-957,-7894,-14639], +[0,-11592,-11593,-2534,-14640,-8787,-8713,-788,-14641,-14642,-14643,-10780,-9133], +[1,3,9525], +[0,9526,9527,9528,4], +[0,-2165], +[0,-527,-534,-558,-11550,-632,-14644,-14645,-13841,-708,-756,-767,-932,-14646,-1405,-1412,-1415,-1417,-14647,-1753,-1771, +-1955,-2410,-14648,-2490,-2501], +[0,-14649,-6597,-3756,-4182,-4055,-14650,-14651,-14652,-14653,-14654,-8531,-8532,-2536,-2537,-6408,-8530,-14655,-9307, +-5845,-14656,-14657,-14658,-1838,-3215,-6747], +[1,3,9530], +[0,9531,9532,9533,8], +[0,-2165,-2538], +[0,-756], +[0,-6597,-4055], +[1,3,9535], +[0,9536,219,7,4], +[0,-1309,-1435,-14659], +[1,3,9538], +[0,0,192,9539,4], +[0,-6597,-2538], +[1,3,9541], +[0,0,9542,9543,4], +[0,-1415,-2555,-14660,-932,-1753,-14661,-1942,-1100,-1771,-953,-7055,-940,-967], +[0,-5387,-5092,-6597,-3215,-3214,-14662,-14663], +[1,3,9545], +[0,0,0,9546,4], +[0,-2533,-5998], +[1,3,9548], +[0,9549,9550,9551,4], +[0,-1630,-506,-932,-1111,-1110,-1942,-1099,-2400,-1639,-755,-8275,-1849,-1101,-965,-11813,-950,-2411,-14664,-968,-978, +-5918,-940,-9869,-8339,-967,-3686,-3748,-428,-14014,-9486,-8230], +[0,-1763,-519,-999,-1344,-815,-5917,-1534,-3330,-86,-6630,-4036,-1768,-1945,-3307,-7357], +[0,-5732,-687,-2541,-8193,-8196,-8197,-707,-8169,-5553,-7148,-8170,-1452,-8171,-932,-5874,-8172,-2250,-8173,-7440,-7144, +-8174,-7840,-8175,-5493,-3214,-2410], +[1,3,9553], +[0,0,9554,9555,4], +[0,-4733,-920,-14665,-1654], +[0,-2542,-6597], +[1,3,9557], +[0,9558,9559,9560,10], +[0,-3345], +[0,-21,-23,-14666,-38,-40,-14667,-535,-14668,-14669,-633,-932,-1412,-1451,-1788,-14670], +[0,-5569,-5570,-14671,-4112], +[1,3,9562], +[0,9563,9564,9565,4], +[0,-719,-2858], +[0,-1788,-812,-1654,-932,-756,-2416,-633], +[0,-8472,-2544,-7723,-14242,-3962,-7107,-5559,-6422,-7724,-2451,-3264,-6138,-14672], +[1,3,9567], +[0,0,9568,9569,4], +[0,-14673,-469,-1872,-2153,-2535], +[0,-14674,-14675,-14676,-14677,-14678,-4125,-14679,-3552], +[1,3,9571], +[0,0,31,9572,10], +[0,-1015,-1631,-6792,-6696,-7208,-5839], +[1,3,9574], +[0,0,9575,9576,5], +[0,-3983,-3035,-3198,-14680,-3617,-14681,-3036,-4647,-3621,-3037,-14682,-3046,-4204,-427,-428,-664,-767,-821,-932,-960, +-1004,-11616,-1107,-1449,-1654,-1689,-1741,-1788,-2233,-2234,-2376,-2410,-2443,-2501,-2503,-2531,-14683], +[0,-687,-3958,-4000,-11564,-5550,-8905,-3770,-14684,-3974,-3975,-5561,-13861,-2547], +[1,3,9578], +[0,0,9579,9580,8], +[0,-1415,-2387,-932,-2127,-1942,-190,-533,-1023,-2410,-23,-3136,-3037,-1426,-40,-2411,-3326,-3561,-940,-3267,-14685,-3412], +[0,-14686,-3215,-3270], +[1,3,9582], +[0,9583,9584,9585,10], +[0,-1107,-503], +[0,-589,-6398,-1414], +[0,-2548,-4055,-14687,-14688], +[1,3,9587], +[0,9588,9589,235,5], +[0,-701,-10415,-5505,-2267,-10751,-2551], +[0,-32,-42,-3035,-3621,-3037,-427,-14689,-652,-664,-668,-10480,-767,-769,-932,-967,-1166,-11831,-1654,-2125,-2410,-2518, +-14690], +[1,3,9591], +[0,0,9592,9593,4], +[0,-32,-42,-3035,-3621,-3037,-427,-428,-652,-664,-767,-932,-1166,-1654,-1978,-2125,-2184,-2253,-2410], +[0,-6748,-3215,-2550,-3957,-687,-6747,-5829,-4377,-6748], +[1,3,9595], +[0,9596,9597,7,4], +[0,-14691,-567,-651,-656,-668,-10506,-719,-14692,-812,-10659,-834,-1105,-1371,-1384,-5894,-1526,-14693,-1645,-1650,-1728, +-1733,-1796,-7772,-2059,-14694,-2105,-14695,-2125,-14696,-2177,-2270,-2323,-2325,-2441,-10523], +[0,-527,-528,-533,-534,-6085,-555,-559,-14697,-14698,-560,-562,-572,-932,-14699,-7748,-14700,-951,-14701,-956,-14702,-969, +-1059,-1168,-1174,-1232,-1237,-1266,-1268,-1415,-1455,-1661,-2330,-2501], +[1,3,9599], +[0,0,0,9600,8], +[0,-2552,-2554,-3590,-5550,-1764,-13499], +[1,3,9602], +[0,9603,9604,9605,11], +[0,-5822,-11280], +[0,-599], +[0,-2432,-5408,-5827,-5409,-6656], +[1,3,9607], +[0,9608,9609,263,5], +[0,-14703,-14704,-14705,-14706,-14707,-506,-668,-719,-812,-999,-14708,-1111,-14709,-8802,-1549,-14710,-14711,-2177,-2218, +-2430,-14712], +[0,-3198,-3164,-3037,-3199,-14713,-652,-757,-932,-14714,-1077,-1446,-1942,-1945,-2125,-2210,-14715,-2269,-2410,-9011, +-9010], +[1,3,9611], +[0,9612,9613,263,6], +[0,-668,-812,-999,-2177,-1646,-1549,-9444,-2205,-2343,-1456,-14711,-1514,-14716,-3609,-3164,-14705], +[0,-888,-1446,-2210,-2469,-757,-1376,-1942,-2400,-4370,-2410,-9010,-3198,-4372,-3199,-9011,-14713,-5686,-14703,-12968, +-14706,-4049,-2556,-3664,-1945], +[1,3,9615], +[0,0,14,9616,4], +[0,-2558,-14717,-14718,-687,-1965,-5874,-3962,-3953,-14719,-14720,-1838,-14721], +[1,3,9618], +[0,9619,9620,9621,11], +[0,-1630,-1805,-668,-2562,-1548,-1040,-10325,-14722,-14723,-9764,-14724,-14725,-728,-769,-14726,-10388,-5895,-14707,-6715, +-14727,-14703,-14728,-3609,-2433,-14729,-2556], +[0,-652,-2541,-1722,-2210,-14714,-1110,-756,-14730], +[0,-5732,-687,-3577,-3113,-7646,-7641,-3578,-3673,-3970,-9471,-3976,-3262,-3960,-3994,-3871], +[1,3,9623], +[0,0,9624,9625,4], +[0,-14731,-479,-519,-668,-689,-713,-1496,-10962,-1863,-2384,-2541], +[0,-712,-5535,-714,-3974,-4000,-687,-2265,-5514,-5553,-3770,-3975,-5538,-5550,-2547,-1573,-5545,-3958,-5554], +[1,3,9627], +[0,9628,101,9629,6], +[0,-719,-1376], +[0,-2561,-3690,-3844,-3445], +[1,3,9631], +[0,9632,9633,9634,4], +[0,-1630,-668,-688,-2528,-481,-2269,-482,-2267,-14732], +[0,-2541,-1654], +[0,-5732,-687,-3976,-2559,-14733,-14734,-6335,-12665,-5514], +[1,3,9636], +[0,218,9637,9638,5], +[0,-2198,-2177,-1654], +[0,-14735,-2563,-14736,-14737,-14738,-5269,-14739,-6249], +[1,3,9640], +[0,0,0,9641,11], +[0,-2410,-4058,-3926,-8038,-8910], +[1,3,9643], +[0,9644,9645,9646,6], +[0,-523,-1004,-1851,-2564], +[0,-3731,-3035,-4269,-3732,-14740,-3617,-14741,-3621,-14742,-617,-664,-665,-720,-724,-744,-796,-932,-14743,-1380,-1654, +-1676,-1764,-1942,-2251,-2379,-2410], +[0,-2564,-1004,-3690,-14744,-14745,-3445], +[1,3,9648], +[0,9649,9650,9651,10], +[0,-567,-615,-812,-13317,-1351,-1449,-1548,-1640,-1681,-2105,-2364,-2531], +[0,-526,-528,-555,-558,-617,-744,-824,-932,-1004,-1168,-1174,-1197,-11777,-1235,-1252,-1266,-1654,-1676,-1687,-12720, +-2111], +[0,-4004,-3636,-3634,-9249,-4679,-4683,-14387,-11878,-4865,-3264,-5177,-5092,-775,-3214,-4868,-5998,-10640,-14746], +[1,3,9653], +[0,0,9654,7,4], +[0,-2934,-2953,-14747,-9705,-3037,-14748,-615,-10877,-1419,-1421,-1415,-1654,-1660,-1412,-2234,-1413,-10034,-2153,-2314, +-2387,-2469], +[1,3,9656], +[0,9657,9658,9659,8], +[0,-14749,-7334,-633,-8958,-14750,-714,-719,-724,-742,-812,-1004,-14751,-5456,-14752,-5457,-1296,-1304,-1336,-5458,-14753, +-5459,-1548,-1810,-1820,-14754,-2194,-14755,-7222,-2291,-14756,-8573,-2491,-2493,-2546,-2549,-14757], +[0,-465,-14758,-14759,-1654,-1860,-2322,-2347,-14760], +[0,-2568,-3634,-4865,-1989,-1654,-5471], +[1,3,9661], +[0,9662,40,9663,5], +[0,-293,-295,-297,-14761,-832,-2177,-2369,-2387], +[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340,-4343,-4347], +[1,3,9665], +[0,9666,40,164,6], +[0,-668,-2387,-297,-2177,-1110,-293,-7356,-429,-14761,-8167,-5201], +[1,3,9668], +[0,9669,40,9670,4], +[0,-2387,-297,-2177,-1427,-1645,-293,-1863,-4023,-1426,-2551,-4018,-11751,-4019,-1352,-14761], +[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-14762,-4340,-4347], +[1,3,9672], +[0,9673,9674,9675,9], +[0,-2387,-297,-2177,-293,-295,-2569,-14761], +[0,-1787,-2257], +[0,-4333,-4334,-4335,-14763,-4339,-4340,-4343,-4347], +[1,3,9677], +[0,9678,9679,9680,11], +[0,-14764,-14765,-2387], +[0,-14766,-14767,-4745,-2344], +[0,-14768,-2006,-14769,-14770,-5176,-9547,-7581,-12543,-14771,-14772,-14773], +[1,3,9682], +[0,9683,9684,9685,11], +[0,-14774,-2634,-2006,-2019,-14775,-2170,-14776], +[0,-3037,-3040,-3052,-932,-10813,-1889,-2318,-2410], +[0,-5375,-770,-13055,-5375,-3634,-8576,-13056,-3551,-13057,-13058,-5376,-13059,-11152,-5150], +[1,3,9687], +[0,9688,0,9689,4], +[0,-786,-1967,-44,-3772,-3773,-3765], +[0,-2006,-3159,-4217,-906], +[1,3,9691], +[0,9692,190,9693,11], +[0,-6789,-6790,-14777], +[0,-3214,-1446,-1838,-10855,-856], +[1,3,9695], +[0,9696,9697,264,4], +[0,-44,-3345], +[0,-3136,-1415], +[1,3,9699], +[0,9700,9701,9702,4], +[0,-44,-14778,-1967,-2029,-2387], +[0,-3192,-6093,-3394,-3794,-2685,-14779,-8471,-261,-3326,-350,-405,-406,-407,-14780,-409,-410,-3136,-3140,-3040,-427,-428, +-3766,-14781,-14782,-639,-757,-767,-795,-932,-3071,-969,-1059,-14783,-14784,-5111,-8158,-1771,-1940,-4130,-2006,-2019, +-2029,-2034,-2052,-2184,-2253,-2410], +[0,-14785,-2006,-6701,-14786,-14787,-3823,-6750,-12605,-14788,-4666,-14789,-12606,-14790], +[1,3,9704], +[0,90,0,9705,9], +[0,-4665,-4666,-5248,-10111,-775,-5564,-14791,-3962,-3214,-3756,-14792,-14793,-12898,-14794,-14795,-1889,-3583,-14796, +-14797,-6750,-12123,-14798,-2363,-14799], +[1,3,9707], +[0,9708,9709,9710,9], +[0,-2857,-14800,-14801,-482,-14802,-1460,-2400,-14803], +[0,-14804,-3311,-3312,-14805,-14806,-14807,-2410], +[0,-14808,-4187,-2444,-3966,-4865,-3445,-3100,-14809,-14810], +[1,3,9712], +[0,0,0,9713,8], +[0,-3276,-7148,-14811,-7485,-4165,-4182,-14812,-14813,-14814,-7198,-14815], +[1,3,9715], +[0,9716,9717,264,5], +[0,-23,-12490,-44,-3345,-14816,-14817,-14818,-14819,-2577,-14820,-14821,-14822,-160,-14823,-2695,-14824,-4785,-14825, +-2699,-366,-3735,-9947,-14826,-440,-14827,-518,-534,-14828,-5323,-635,-668,-719,-753,-778,-779,-865,-866,-1077,-1107, +-1122,-14829,-1123,-1331,-1455,-1469,-1548,-1643,-1666,-14830,-1729,-1805,-1889,-1896,-1897,-1906,-1908,-12060,-1942, +-1966,-6387,-2015,-2041,-2144, +-5977,-2193,-2195,-2275,-14831,-2335,-14832,-2435,-2466,-11710,-2501,-2502,-2505,-5628], +[0,-14833,-3758,-3048,-3044,-14834,-4201,-6630,-13186,-5129,-1623,-1683,-1978,-2125], +[1,3,9719], +[0,34,9720,9721,5], +[0,-234,-350,-4062,-351,-3561,-3043,-3136,-3040,-427,-428,-3807,-748,-915,-932,-940,-958,-967,-969,-1415,-1419,-1449, +-1788,-1942,-2006,-2019,-2125,-2127,-2130,-4063,-4064,-2142,-2144,-2233,-2375,-2376,-2379,-2387,-2402,-2501,-2503,-2505, +-238,-240], +[0,-9975,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[1,3,9723], +[0,34,9724,9725,4], +[0,-23,-40,-42,-4066,-3136,-3037,-427,-428,-14835,-14836,-14837,-441,-4838,-5593,-753,-767,-932,-940,-958,-14838,-980, +-1415,-1419,-1942,-2125,-2127,-2128,-2130,-2142,-2144,-14839,-2375,-2387,-2402,-2410,-2476,-238], +[0,-2476,-3944,-14840,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[1,3,9727], +[0,34,9728,9729,8], +[0,-23,-40,-42,-3035,-3136,-3621,-3037,-427,-428,-14835,-14836,-14841,-14837,-441,-4838,-5593,-664,-767,-932,-940,-958, +-14838,-980,-1771,-1942,-2125,-2127,-2128,-2130,-2142,-2144,-14839,-14842,-2387,-2402,-2410,-2476,-238,-2584], +[0,-2476,-3944,-14840,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060,-5177,-775,-2316], +[1,3,9731], +[0,9732,9733,9734,5], +[0,-5334,-9596,-9582,-1839,-5358,-6648], +[0,-4251,-3037,-652,-12326,-1942,-2094,-2100,-7699,-2399,-2400,-2410,-7669,-2541], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-1838,-14843], +[1,3,9736], +[0,0,9737,9738,4], +[0,-932,-1654,-1788,-2210], +[0,-2254,-14844,-14845,-13497,-14846,-3445], +[1,3,9740], +[0,0,0,9741,4], +[0,-14847,-14848,-14849,-14850,-14851,-14852,-14853,-14854,-856,-1599], +[1,3,9743], +[0,9744,9745,9746,6], +[0,-9929,-9936,-14855,-812,-9927,-1371,-1875,-2240,-2347,-2387,-2555], +[0,-3986,-3988,-3470,-3471,-3198,-9943,-11697,-3136,-3037,-11337,-9941,-7836,-8497,-932,-1415,-1942,-2174,-2375,-2410], +[0,-5271,-5270,-687,-3162,-3994,-9946,-5269], +[1,3,9748], +[0,9749,0,9750,5], +[0,-5334,-14856,-12767,-1293,-14857,-5356,-5358], +[0,-9589,-3264,-14857,-14075,-1599,-10684,-10918,-3862,-2083,-12745,-2093,-14858,-2427], +[1,3,9752], +[0,9753,9754,9755,5], +[0,-1281,-2297], +[0,-519,-708,-2410,-2541], +[0,-10606,-3974,-14859,-687,-6659,-7440,-5514,-5560,-4000], +[1,3,9757], +[0,9758,9759,9760,11], +[0,-8609,-12518], +[0,-2832,-11432,-3615,-3244,-190,-3983,-367,-7043,-406,-407,-409,-14860,-3136,-3037,-3040,-12591,-427,-428,-9723,-932, +-940,-12520,-969,-970,-976,-1110,-1344,-1415,-1419,-1534,-2634,-1942,-2006,-2019,-2965,-2125,-2177,-2410,-2411], +[0,-2592,-2006,-3322,-2105,-3324,-4213], +[1,3,9762], +[0,0,9763,9764,5], +[0,-3037,-2228,-2229,-2391,-2410], +[0,-2410,-8038,-3694,-9069,-7304,-8425,-6582,-7534,-4058,-3445,-3577,-4055,-6435,-640,-5835,-6421,-10227,-6233,-12343, +-14861,-14862], +[1,3,9766], +[0,9767,9768,9769,4], +[0,-14863,-14864,-14865], +[0,-25,-46,-3983,-932,-1452,-1547,-1654,-2111,-8325,-2384,-2416], +[0,-14233,-14866,-4865,-6899,-1819,-14867,-13626,-2594,-14868,-14869,-14870,-14871,-14872,-14873,-14874], +[1,3,9771], +[0,0,9772,9773,4], +[0,-1449,-2105,-2106], +[0,-3264,-9703,-9566], +[1,3,9775], +[0,9776,9777,9778,4], +[0,-1297,-14875,-9684,-2267,-14876,-14877,-14878,-6467,-14879,-14880,-14881,-14882,-14883,-14884,-14885,-14886,-14887, +-14888,-14889,-9154,-14380,-14890,-14891,-14892,-8965,-14893,-14894,-14895], +[0,-652,-999,-2210,-14896,-581,-932,-825,-14897,-1098,-1942,-367,-749,-767,-2293,-2091,-10402,-2410,-3037,-14898,-14899, +-4372,-3906,-11098,-14900,-4203,-14901,-14902,-14903,-14904,-14905,-14906,-13409,-14907,-14908,-4646], +[0,-14909,-3161,-13039], +[1,3,9780], +[0,9781,9782,9783,4], +[0,-14910,-14911,-865,-1461,-1729,-4389], +[0,-14912,-14913,-3037,-4201,-932,-7060,-1942,-2125,-2392,-2410,-2469], +[0,-4344,-7547,-4165], +[1,3,9785], +[0,9786,9787,9788,8], +[0,-812,-2193,-2387,-2550,-1077,-719,-1729,-14914,-9929,-1734,-9931,-14915], +[0,-1763,-1415,-1344,-2331,-932,-2125,-2375,-1942,-2410,-3136,-3037,-3198,-11337,-8890,-50,-3048,-4201,-14916,-3986,-3988, +-427], +[0,-1386,-3996,-14917,-3162,-5269,-3167,-14918], +[0,25,9790], +1753574400000, +[1,3,9792], +[0,9793,0,93,4], +[0,-682,-1384,-1967,-1993,-2006,-2019,-2029,-2489], +[1,3,9795], +[0,9796,0,9797,10], +[0,-2387,-14920,-14921,-14922], +[0,-5818,-1122,-3844,-3161,-3966,-3967,-2410], +[1,3,9799], +[0,9800,9801,221,5], +[0,-9933,-14923,-9938,-9931,-9929,-9934,-9935,-9932,-9937,-9936,-668,-812,-834,-9927,-9925,-1548,-1805,-3547,-8874,-2177, +-2240,-9926,-9422,-2291,-2323,-2387], +[0,-3198,-9939,-9943,-3136,-3044,-3037,-3199,-9941,-4202,-5673,-1415,-1417,-1534,-2125,-2231,-2375,-2410], +[1,3,9803], +[0,34,9804,9805,5], +[0,-14924,-14925,-14926,-8250,-7,-8,-9,-10,-427,-428,-519,-748,-932,-940,-958,-967,-14927,-1788,-1942,-2125,-2153,-2234, +-2387,-2402,-2410,-238], +[0,-475,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[1,3,9807], +[0,9808,9809,9810,4], +[0,-8547,-1548], +[0,-3037,-427,-428,-932,-940,-958,-967,-1942,-2125,-2127,-2130,-2142,-2144,-2387,-2402,-2410,-238], +[0,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[1,3,9812], +[0,9813,9814,65,5], +[0,-712,-2544], +[0,-4597,-2391,-2423], +[1,24,9816], +[0,25,9817], +1738454400000, +[1,3,9819], +[0,9820,9821,9822,4], +[0,-44,-2965], +[0,-14928,-2006,-932,-708,-2379,-1942,-767,-2019,-14929,-2410,-5111,-3040,-14784,-3052,-14930,-2052,-7465,-428,-3081,-427], +[0,-3634,-2006,-3322,-5119,-4868], +[1,3,9824], +[0,9825,0,9826,8], +[0,-14931,-14932,-14933], +[0,-10543,-9745,-11796,-9753,-6955,-9030,-2322,-14934,-4132,-14935,-3277,-14647,-11069,-6129,-11037,-5880,-7375,-14936, +-14937,-6656,-14938,-14939,-10545,-3018,-3210,-14940,-1015,-3756,-3116,-14770,-6960,-11113,-12877,-4058,-14941,-14942, +-6695,-14769,-12869,-6324,-4213,-2564,-6052,-9772,-6821,-5998,-8988,-14943,-11582,-14944,-6511,-5837,-1985,-3103,-14945, +-14946,-5550,-1631,-1000,-8808,-8127,-3590,-1959, +-7333,-2487,-7420,-5856,-9571,-6011,-3921,-10838,-14947,-2265,-11784,-6953,-4111,-14948,-10366,-9054,-6510,-3612,-11685, +-6787,-11798,-12255,-14949,-7863,-14950,-12343,-5176,-719,-3272,-5831,-7373,-14773,-8411,-9027,-11822,-6849,-6962,-7199, +-3690,-5846,-687,-14604,-14951,-7856,-7581,-14952,-5827,-14953,-3215,-5195,-3911,-14954,-2387,-3015,-9980,-6281,-4784, +-14955,-6548,-10547,-6951,-6964,-6599,-13466, +-10527,-11866,-5924,-1435,-13003,-1463,-8038,-3578,-5514,-4782,-7558,-5572,-8410,-4110,-6120,-6968,-503,-14956,-14957, +-6434,-6958,-6917,-3258,-6107,-1640,-3994,-1471,-13469,-12991,-14958,-3186,-5272,-14959,-14960,-6233,-12342,-8910,-10537, +-581,-6187,-3206,-5112,-2368,-6932,-7283,-14961,-11872,-11791,-3931,-6970,-6845,-510,-5874,-14962,-3771,-4113,-11792, +-14963,-3815,-11112,-6717,-7331,-8027,-3634, +-8163,-6977,-6280,-14964,-3322,-12020,-10549,-14965,-5210,-2547,-10544,-8108,-14966,-11153,-5092,-8989,-7822,-1361,-1415, +-1412,-3481,-6370,-655,-3207,-2344,-6972,-8166,-11782,-7459,-1764,-770,-2059,-7091,-4053,-4792,-6946,-8412,-3582,-6508, +-14967,-14968,-4795,-14969,-12893,-6506,-8164,-5554,-635,-6956,-682,-6557,-14970,-14622,-14971,-11070,-14972,-3930, +-13770,-6987,-7334,-5842,-13468,-14525,-14973, +-1080,-10539,-2518,-6947,-10440,-12892,-8132,-8421,-7404,-2451,-13467,-14974,-1961,-4142,-1122,-6966,-13234,-4679,-12883, +-5549,-5395,-9918,-6971,-14975,-8996,-12543,-5829,-11797,-1810,-6655,-14976,-14977,-14978,-14979,-12888,-7370,-8616, +-7237,-2319,-6748,-14980,-6439,-1076,-2074,-5569,-3173,-7230,-1983,-14981,-3770,-1993,-11793,-4107,-13465,-1039,-10413, +-12437,-7303,-9173,-6989,-12990,-14982,-6978,-5553, +-3270,-3185,-10330,-3217,-14983,-1030,-9172,-9917,-4055,-4665,-11821,-3324,-5563,-6784,-6965,-7421,-1359,-1654,-4676, +-2105,-14984,-6545,-3175,-10541,-6130,-6957,-3276,-14985,-12025,-7200,-14986,-2489,-1666,-9261,-775,-6543,-7442,-12912, +-13471,-14987,-4781,-13005,-615,-3966,-1449,-4115,-12889,-3925,-14988,-6654,-14989,-8388,-8472,-6948,-9048,-14624,-14772, +-12512,-8806,-3975,-3209,-14990,-4783,-6975, +-14991,-6509,-6444,-9847,-11867,-6985,-14992,-11639,-14993,-3926,-6188,-3162,-6555,-11049,-753,-3184,-14994,-664,-6986, +-8128,-14995,-6131,-6852,-12435,-7372,-14996,-1573,-12021,-14997,-14998,-1456,-14999,-3923,-15000,-4134,-5562,-5101, +-8047,-9826,-15001,-2525,-15002,-15003,-9577,-15004,-15005,-5396,-5208,-15006,-10548,-2114,-13872,-12438,-729,-7369, +-5484,-6351,-8618,-714,-4117,-9572,-12885,-13858,-6983, +-11820,-15007,-15008,-1047,-11997,-1342,-727,-15009,-5260,-15010,-8990,-4182,-8130,-6952,-518,-12878,-1986,-15011,-11817, +-891,-1801,-6976,-5841,-11483,-7440,-15012,-15013,-6980], +[1,3,9828], +[0,0,9829,9830,4], +[0,-1452,-8171,-1654], +[0,-5514,-3264], +[1,3,9832], +[0,9833,9834,9835,5], +[0,-4372,-2210,-2387], +[0,-13198,-3698,-13201,-13202,-13204,-13205,-15014,-2402], +[0,-5817,-521,-3634,-4215,-8466,-15015], +[1,3,9837], +[0,0,9838,9839,8], +[0,-3561,-668,-15016,-1077,-1107,-1168,-1190,-15017,-2125,-2127,-2132,-2142,-2334,-2387,-2388,-2410], +[0,-3994,-4126,-15018,-15019,-3578,-5270,-11536,-3214,-2363,-15020,-3162,-752,-3862,-2494,-3588], +[1,3,9841], +[0,0,0,9842,5], +[0,-4000,-3162,-812], +[1,3,9844], +[0,9845,9846,9847,8], +[0,-617,-724,-812,-832,-5035,-996,-1496,-2213,-2564], +[0,-3983,-15021,-3171,-364,-3170,-365,-3865,-3330,-518,-803,-932,-940,-975,-1110,-1889,-1942,-1946,-2910,-2299,-2300, +-2318,-2410,-2466,-2469], +[0,-3690,-3445,-1334,-2512,-2531,-3691,-3967], +[1,3,9849], +[0,0,9850,9851,6], +[0,-23,-40,-86,-3307,-518,-534,-632,-12427,-664,-15022,-699,-15023,-796,-15024,-1168,-15025,-1174,-15026,-15027,-1184, +-1187,-1197,-1199,-1212,-1228,-1232,-1237,-1238,-1243,-1244,-1248,-15028,-1252,-1262,-1271,-15029,-1344,-15030,-1442, +-1496,-1654,-1655,-15031,-4916,-1889,-1953,-2109,-2111,-2127,-2128,-3572,-3031,-15032,-2210,-4096,-15033,-2460,-15034, +-2501,-7752], +[0,-775,-3754,-2162,-3756,-3576,-3575,-3161,-6334,-15035,-15036], +[1,3,9853], +[0,9854,9855,9856,9], +[0,-668,-15037], +[0,-15038,-3664,-1344,-1534,-1942,-2410,-2469], +[0,-687,-712,-714,-5535,-3958,-4000,-5538,-15039,-15040,-1573,-5545,-5550,-2265,-5553,-3770,-3974], +[1,3,9858], +[0,9859,9860,9861,8], +[0,-3776,-15041,-1606,-1967], +[0,-21,-23,-32,-5870,-26,-12490,-34,-12492,-3376,-3400,-3398,-3380,-40,-41,-15042,-3615,-3244,-190,-15043,-12687,-15044, +-15045,-15046,-4749,-4758,-15047,-406,-407,-409,-15048,-410,-3136,-4961,-3037,-3040,-3052,-3804,-527,-533,-534,-8560, +-15049,-4976,-15050,-684,-748,-749,-753,-767,-824,-932,-933,-940,-951,-958,-962,-967,-969,-970,-976,-1077,-1110,-15051, +-1415,-4980,-1417,-1419,-15052,-1449,-1889,-1939,-1942,-1952,-2006,-2015,-2019,-2029,-15053,-2082,-2205,-2257,-2278, +-15054,-2339,-15055,-13807,-2375,-2376,-2410,-2501,-2503,-2505], +[0,-2631,-15056,-15057,-3095,-3482,-4189,-3161,-2006,-4101,-15058,-3261,-15059,-15060,-15061,-15062,-4666,-15063,-15064, +-15065,-712,-8038,-3999,-4684,-15066,-3160,-3477,-4727,-15067,-2278], +[1,3,9863], +[0,0,0,9864,4], +[0,-9681,-9681,-3264,-7153,-2435], +[1,3,9866], +[0,0,9867,9868,4], +[0,-15068,-1127,-1134,-1136,-1138,-1140,-1144,-1148,-1149,-15069,-1160], +[0,-14214,-14213,-15070,-15071,-3825,-4126,-6409,-12536,-13615,-1437,-8635,-3576,-3162], +[1,3,9870], +[0,9871,9872,254,11], +[0,-1889,-2694,-2279,-4007,-658,-6410], +[0,-2531,-502,-1683,-1816,-2323,-2564,-6842,-1107,-2178,-2444,-461,-2624,-651,-812,-1072,-1460,-12980,-507,-640,-649,-743, +-997,-1401,-1699,-2066,-2177,-2334,-5034,-1047,-3447,-1827,-1958,-2501,-1977,-1999,-12981,-12955,-367,-4204,-719,-767, +-1273,-11121,-10697,-9548,-1864,-2257,-12982,-15072,-5052,-5673,-12971,-12972,-778,-2745,-1336,-2773,-1354,-12977,-2231, +-2269,-2343,-2410, +-10052,-23,-237,-3036,-12967,-8559,-5900,-512,-2740,-724,-769,-1429,-2163,-12978,-2194,-6375,-12979,-3921,-47,-3872, +-10098,-12956,-3269,-3198,-12963,-3040,-534,-635,-12973,-737,-12974,-1465,-12976,-1930,-8578,-2275,-2594,-12957,-5033, +-3044,-3199,-12975,-8562,-6378,-2041,-5977,-6380,-44,-12960,-15073,-6381,-1851,-6383,-6384,-46,-4020,-13428,-12966,-6633, +-6386,-1848,-6387,-3194,-12951, +-3983,-4749,-8523,-3052,-1337,-6388,-1734,-22,-40,-13427,-12968,-771,-1343,-2233,-11463,-6390,-6391,-5038,-4776,-3732, +-7080,-6832,-7026,-1927,-41,-12947,-269,-5085,-3850,-12964,-12969,-736,-1929,-2082,-32,-13186,-6394,-1934,-4195,-3251, +-12948,-12952,-15043,-12965,-14296,-7165,-7967,-2335,-12949,-15074,-10100,-10101,-7189,-1903,-2791,-12953,-12959,-1643, +-3077,-42,-12950,-8355,-15075,-8863, +-12954,-4758,-12961,-12946,-4762,-5323,-4763,-8561,-6484,-38,-7164,-12962,-1915,-37,-3368,-15076,-3376,-3204,-3379,-3385, +-3389,-553], +[1,3,9874], +[0,0,9875,9876,10], +[0,-652,-13239,-1344,-1534,-1889,-2541], +[0,-1889,-775,-3583,-10739], +[1,3,9878], +[0,9879,9880,9881,9], +[0,-674,-3050,-15077,-1630,-1641,-1863,-3240,-12379,-2218], +[0,-86,-3307,-190,-3470,-7040,-3471,-3472,-7041,-7042,-3713,-3037,-5675,-15078,-427,-428,-767,-932,-965,-999,-1110,-1344, +-13856,-1534,-1870,-1942,-2125,-2174,-2410,-2469], +[0,-3998,-1978,-15079,-3167,-15080,-5270,-5271,-15081,-15082,-15083,-6527,-1594,-3162,-13188,-15084,-15085], +[1,3,9883], +[0,9884,9885,9886,9], +[0,-15086,-15087,-640,-5273,-1610,-1955,-4620,-15088], +[0,-23,-32,-40,-534,-15089,-684,-9994,-778,-932,-933,-12416,-958,-10049,-1041,-3867,-1331,-15090,-2275,-2335,-14648,-2501, +-2502,-2503,-2505], +[0,-3812,-3813,-3814,-3815,-3816,-3817,-856,-15091,-15092,-2637,-4847,-15093,-15094,-15095,-15096,-15097,-15098,-15099], +[1,3,9888], +[0,94,9889,9890,5], +[0,-23,-32,-44,-932,-933,-940,-958,-962,-967,-969,-970,-1415,-3156,-1942,-2006,-2034], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-10738,-9556,-15020,-15100,-12546,-5176], +[1,3,9892], +[0,0,9893,9894,5], +[0,-23,-40,-44,-15101,-12564,-932,-1344,-1534,-2006,-2034,-2410], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-13876,-15102,-6711,-15103], +[1,3,9896], +[0,0,9897,9898,11], +[0,-23,-32,-26,-3204,-38,-40,-41,-3326,-350,-351,-407,-409,-518,-703,-796,-932,-940,-12520,-967,-969,-970,-976,-1344, +-1352,-1415,-1534,-1889,-1942,-1967,-2006,-2019,-2127,-4063,-15104,-3474,-4753,-2281,-2282], +[0,-2006,-13613,-15105,-4108,-2006,-3095,-15106,-3162,-5270,-5271,-15107,-15108,-15109,-15110], +[1,3,9900], +[0,9901,9902,9903,9], +[0,-44,-15111,-15112], +[0,-23,-36,-38,-40,-41,-42,-8280,-50,-15113,-407,-409,-3040,-3052,-427,-428,-440,-528,-651,-767,-932,-940,-967,-969,-1344, +-1415,-1419,-1534,-1942,-2006,-2019,-2125,-2410,-2466], +[0,-15114,-15115,-2006,-3159,-14798], +[1,3,9905], +[0,9906,9907,9908,6], +[0,-656,-15116,-2400], +[0,-2832,-3615,-190,-15117,-9705,-652,-668,-716,-722,-928,-932,-940,-967,-999,-1110,-1344,-1412,-1534,-1574,-1942,-2125, +-7969,-2410,-2411], +[0,-8630,-3671,-856,-3262,-1599,-3437,-4328], +[1,3,9910], +[0,9911,9912,9913,11], +[0,-349,-703,-15118,-3517,-996,-1359,-2040,-2112,-12695,-12518,-15119], +[0,-21,-23,-40,-41,-42,-44,-15042,-10791,-8230,-3615,-190,-12608,-15120,-349,-3562,-15043,-358,-4754,-13424,-2948,-15121, +-4890,-15122,-15123,-15124,-407,-409,-410,-15125,-12940,-15126,-3037,-3040,-3052,-6633,-440,-5286,-3664,-534,-15127, +-8561,-635,-15050,-767,-7272,-7254,-7271,-834,-932,-15128,-940,-948,-958,-960,-962,-967,-969,-970,-15129,-4756,-1107, +-1110,-1344, +-1449,-1534,-1610,-1874,-1942,-2006,-2019,-2029,-2040,-2125,-2257,-2335,-2376,-2378,-2410,-2411,-6412,-2469,-15130,-2501, +-2502,-2503], +[0,-2006,-3476,-14497,-3159], +[1,3,9915], +[0,9916,9917,9918,4], +[0,-15131], +[0,-15132,-15133,-15134,-15135,-350,-351,-410,-4875,-4877,-15136,-15137,-4878,-15138,-15139,-652,-664,-15140,-15141,-932, +-15142,-958,-1449,-11472,-1654,-1942,-2127,-15143,-2184,-2210,-2211,-2253,-2334,-2410], +[0,-15144,-5072,-5065,-12238,-5073,-14939,-15145,-5495,-3161,-12122,-7651,-3110,-15146,-13039,-6106,-6107,-5394,-15147, +-15148], +[1,3,9920], +[0,0,9921,9922,6], +[0,-23,-5585,-40,-2127,-2128,-2133,-2137,-2339,-15149,-13807,-2416], +[0,-15150,-15151,-7581,-1634,-475,-15152,-2006,-2476,-3755], +[1,3,9924], +[0,9925,9926,9927,4], +[0,-44,-15153,-4817,-809,-1549,-15154,-2355,-2451], +[0,-3341,-26,-38,-40,-42,-86,-3307,-2997,-3326,-350,-15155,-4062,-351,-3561,-15156,-15157,-15158,-15159,-3164,-3037,-3803, +-5011,-6109,-427,-428,-4837,-5589,-3664,-3665,-5590,-441,-14247,-14244,-4838,-518,-523,-656,-5339,-720,-726,-767,-795, +-796,-812,-15160,-928,-932,-934,-940,-958,-967,-980,-1125,-1344,-1449,-1521,-1534,-1551,-15161,-1662,-1889,-1942,-1955, +-15162,-2082,-2125,-2127,-13263,-4063,-5122,-6483,-15163,-6746,-4753,-15164,-15165,-2140,-14839,-2145,-15166,-2387,-2410, +-2466,-15167,-2469,-2476,-2478,-2483,-5627], +[0,-2476,-3162,-15168], +[1,3,9929], +[0,9930,9931,9932,5], +[0,-5277,-929,-1437], +[0,-23,-40,-9678,-4964,-518,-521,-15169,-757,-767,-784,-795,-7758,-865,-932,-940,-943,-958,-966,-967,-968,-974,-1753, +-1889,-1890,-1891,-15170,-1896,-1903,-15171,-1906,-1916,-15172,-12060,-1942,-2125,-2127,-2128,-2131,-2133,-8895,-15173, +-2137,-8896,-15174,-2140,-5281,-2214,-2281,-3085,-2302], +[0,-5298,-6656,-15175,-15176,-15177,-7581,-7582,-6527,-15178,-5069,-3162,-12536,-7764,-4634,-12217,-8883,-1437], +[1,3,9934], +[0,9935,9936,9937,5], +[0,-523,-1435,-1548,-1646,-2153], +[0,-664,-932,-4628,-1650,-1654,-2330], +[0,-4116,-826,-687,-6999,-9043,-12054,-15179,-1334,-11915,-15180,-9041,-5730,-7085,-11642,-9261,-7084,-15181,-12578], +[1,3,9939], +[0,0,9940,9941,4], +[0,-518,-632,-1168,-15182,-1194,-1208,-1226,-1238,-1243,-1244,-1252,-7832,-15183,-1899,-2281,-2282,-2550], +[0,-2649,-15184,-15185,-775,-1521,-3162], +[1,3,9943], +[0,0,0,9944,6], +[0,-2006,-4125,-9800,-4633,-2074,-4634], +[1,24,9946], +[0,25,9947], +1731196800000, +[1,3,9949], +[0,9950,9951,7,8], +[0,-15186,-4225,-4228,-15187,-15188,-15189,-4230,-15190,-703,-5342,-15191,-1026,-3649,-1289,-14857,-1618,-10922,-1619, +-5397,-15192,-15193,-2590,-4241,-2088,-4242,-2095,-15194,-15195,-15196,-12978,-4245,-2218,-12508,-2378,-15197,-2429, +-15198,-2548,-2564], +[0,-5048,-409,-426,-5334,-4251,-15199,-3040,-3046,-440,-15200,-9602,-9603,-2634,-2006,-2019,-2427,-2469,-15201], +[1,3,9953], +[0,9954,0,9955,4], +[0,-12260], +[0,-810,-15202,-15203,-6367,-5896,-13618,-15204,-15205,-2653], +[1,3,9957], +[0,9958,9959,204,4], +[0,-4787,-1864], +[0,-2581,-3037,-8523,-1026,-15206,-1107,-2354,-2892,-2410], +[1,3,9961], +[0,0,0,9962,8], +[0,-2410,-3694,-4004,-4043,-1001], +[1,3,9964], +[0,9965,37,9966,4], +[0,-15207,-2387], +[0,-15208,-15209,-15210,-15211,-15212,-2410,-5210,-3215,-6478,-9471,-15213,-8130,-3756,-8386,-15214,-3445,-3577], +[1,3,9968], +[0,0,28,9969,10], +[0,-12613,-3098,-3100,-3482,-2634,-1713,-2006,-12612,-12449,-3160,-4119], +[1,3,9971], +[0,108,28,9972,8], +[0,-707,-3098,-3100,-4131,-3482,-2634,-1713,-2006,-4132,-4133,-3160,-4119], +[1,3,9974], +[0,9975,28,9976,5], +[0,-2020], +[0,-3098,-7761,-878,-3100,-3482,-2634,-1713,-2006,-3160,-4119,-7764], +[1,3,9978], +[0,266,28,9979,8], +[0,-3098,-3100,-3482,-2634,-1713,-1779,-1959,-2006,-3160,-4119], +[1,3,9981], +[0,266,28,9982,4], +[0,-15215,-3098,-3100,-3482,-2634,-1713,-2006,-7282,-3160,-4119], +[1,3,9984], +[0,0,28,9985,4], +[0,-3098,-3100,-3482,-2634,-1713,-2006,-15216,-10114,-15217,-3160,-4119], +[1,3,9987], +[0,9988,9989,9990,4], +[0,-1616], +[0,-21,-23,-3204,-40,-42,-3748,-4776,-15218,-3330,-3032,-3037,-427,-428,-932,-940,-958,-960,-965,-15219,-5863,-1772,-2125, +-2410,-2469], +[0,-15220,-1874,-795,-1654,-2469,-1415,-1412,-1710,-11410,-15221,-11100,-4004,-9246,-6863,-3634,-15222], +[1,3,9992], +[0,9993,9994,9995,6], +[0,-15223,-15224,-15225,-15226,-12846,-15227], +[0,-15228,-3617,-3037,-15229,-15230,-15231,-1004,-2125,-2892,-2410,-2469], +[0,-15227,-1004,-3445,-6324,-3690,-9668,-2410,-3214,-5401], +[1,3,9997], +[0,0,9998,9999,11], +[0,-1763,-10652,-2250,-4004,-15232], +[0,-3162,-11321,-7440,-4865], +[1,3,10001], +[0,10002,10003,10004,5], +[0,-5358,-2427,-5334,-1293,-8913,-12766,-2235,-5356,-12767], +[0,-652,-932,-2083,-1942,-1874,-2094,-2410,-3037,-6648,-12750,-12749,-11167,-15233], +[0,-856,-4147,-5670,-3862,-2083,-12745,-2093,-2427], +[1,3,10006], +[0,10007,10008,10009,5], +[0,-15234,-15235,-15236,-15237,-15238,-15239,-15240,-15241,-15242,-15243,-15244,-15245], +[0,-21,-2388,-2410], +[0,-15246,-3163,-12254,-6324,-3214,-11230,-8043,-15247,-3162], +[1,3,10011], +[0,10012,0,93,11], +[0,-2606,-15248,-682,-15249,-1384,-1967,-1993,-2006,-2019,-2029,-2489], +[1,3,10014], +[0,10015,0,93,10], +[0,-2006,-2019,-1967,-2606], +[1,3,10017], +[0,10018,0,10019,8], +[0,-2387,-1387,-232,-1461], +[0,-1386,-3161,-475,-3162,-3994,-3995,-3996,-752,-3997,-3998], +[1,24,10021], +[0,25,10022], +1733616000000, +[0,25,10024], +1733961600000, +[1,24,10026], +[0,25,10027], +1734220800000, +[1,3,10029], +[0,0,10030,10031,4], +[0,-2200,-2162,-2834,-2387,-932,-2125,-2127,-2149,-2334,-1753,-1889,-1077,-1942,-620,-767,-2281,-2410,-3563,-1771,-1891, +-6326,-518,-726,-3564,-1547,-6327,-945,-15250,-958,-978,-6331,-3267,-428,-14014,-3573,-427], +[0,-775,-2162,-3576,-8856,-3110,-4101,-3161,-15251,-11229], +[1,3,10033], +[0,10034,10035,10036,4], +[0,-44,-15252,-15253], +[0,-21,-23,-26,-33,-5585,-38,-39,-40,-43,-3035,-3621,-3037,-528,-534,-539,-571,-15254,-15255,-633,-664,-665,-12469,-767, +-932,-1004,-4652,-1449,-1654,-1788,-2105,-2125,-2228,-2335,-2410,-2490,-2491,-2501,-2503], +[0,-5801,-3162,-3690,-10810,-15256], +[1,3,10038], +[0,0,10039,10040,11], +[0,-652,-664,-726,-756,-928,-932,-1449,-1544,-1654,-2162], +[0,-3214,-3162,-5270,-5271,-8617], +[1,3,10042], +[0,10043,10044,10045,6], +[0,-1992,-712,-809,-15257,-1548,-682,-15258,-1762,-15259,-15260,-15261,-6640,-2055,-15262], +[0,-4977,-2006,-2019,-3040,-3044,-44,-3052,-15263,-409,-407,-410,-2622,-3024], +[0,-2006,-5253,-3159,-2678,-15264,-15265,-3095,-3098,-3160,-3161,-3100,-3162], +[1,3,10047], +[0,10048,10049,93,4], +[0,-2606,-15248,-15266,-2669,-2670,-682,-1384,-1967,-1993,-2006,-2019,-2489,-15249], +[0,-15267,-15268,-15269], +[1,3,10051], +[0,0,10052,10053,4], +[0,-3473,-1942,-2127,-2128,-5384,-2129], +[0,-3100,-11853,-11851], +[1,3,10055], +[0,10056,10057,10058,4], +[0,-6815], +[0,-409,-3040,-3052,-778,-1071,-1344,-2006,-2019,-2049,-2275,-2376,-8973,-2387,-2410,-2501,-3612], +[0,-6750,-15270,-15271,-15272,-3095,-3576,-3162,-2363,-6750,-3823,-15273,-12606], +[1,3,10060], +[0,10061,10062,10063,10], +[0,-4733,-668,-719,-999,-1077,-1948,-1966,-2177,-2426,-2518,-2528,-2542,-2555], +[0,-15274,-3899,-652,-1107,-1110,-6295,-8065,-1971], +[0,-2682,-15275,-15276,-3162,-5270,-15277,-5271], +[1,3,10065], +[0,10066,0,10067,4], +[0,-1867,-11957,-11964,-15278], +[0,-15279,-3444,-5545,-3262,-856,-15280,-15281], +[1,3,10069], +[0,10070,10071,10072,9], +[0,-15282,-15283,-15284,-31,-15285,-3325,-280,-11671,-469,-719,-7731,-15286,-15287,-5934,-1442,-10584,-1577,-1645,-1729, +-15288,-2115,-10624,-2177,-2205,-2379,-2410], +[0,-932,-959,-969,-973,-1077,-1415,-1448,-1607,-2125,-15289], +[0,-3328,-856,-3262,-1599,-9308], +[1,3,10074], +[0,10075,10076,10077,5], +[0,-6869,-8386,-1805,-623,-668,-999,-1526,-1826,-2387,-1548,-2177,-753,-1966,-2501,-679,-1077,-2357,-719,-1327,-695,-832, +-929,-2043,-5977,-2508,-15290,-2433,-15291,-2044,-15292,-3859,-15293,-4239,-2505,-15294,-1331,-15295,-15296,-2502,-15297, +-15298,-15299], +[0,-7982,-7688,-3052,-3861,-13398,-2052,-13186,-11702,-15300,-15301,-14826,-14779], +[0,-2006,-5371,-2501,-856,-7695,-7696,-858], +[1,3,10079], +[0,10080,10081,268,11], +[0,-2387,-1387,-232], +[0,-1763,-1415,-2006,-932,-2125,-2127,-2375,-1077,-1942,-2019,-2410,-3136,-3037,-3040,-3052,-3986,-3988,-409,-1419,-3267, +-407,-428,-2622,-427], +[1,3,10083], +[0,0,10084,10085,4], +[0,-3136,-427,-428,-753,-756,-784,-932,-1415,-1417,-1424,-1449,-15302,-2127,-2375,-2410], +[0,-12841,-3582,-6989,-5389,-10095,-12523,-2410,-3214,-9682,-3095,-11486,-12121,-5065,-3577,-3264,-4333,-4334,-15303], +[1,3,10087], +[0,10088,0,10089,4], +[0,-703,-2825,-2690,-1967,-44,-2997,-192], +[0,-2006,-3159,-4217,-15304,-4665], +[1,3,10091], +[0,10092,0,10093,6], +[0,-2690,-1967,-44], +[0,-2006,-3159,-4217,-4101], +[1,3,10095], +[0,10096,0,10097,8], +[0,-703,-2029,-2825,-1967,-44,-3140], +[0,-2006,-3159,-4217,-5260], +[1,3,10099], +[0,10100,0,95,5], +[0,-15305,-15306,-823,-1878], +[1,3,10102], +[0,269,0,95,5], +[1,3,10104], +[0,10105,10106,10107,4], +[0,-469,-2177,-1047,-15310,-15311,-12390,-8802,-1395,-3609], +[0,-6997,-2466,-2469,-757,-1026,-2410,-7982,-1772,-10267], +[0,-15312,-15313,-8902,-3184,-3161,-1168,-3214,-3264,-3482,-1599,-3967,-15314,-15315,-3995,-5372,-3255,-3256,-15316, +-15317,-15318], +[1,3,10109], +[0,0,10110,10111,5], +[0,-865,-8559,-866], +[0,-2006,-2634,-9736,-865], +[1,3,10113], +[0,10114,10115,10116,4], +[0,-2624,-2231,-15319,-2168,-1320,-3606], +[0,-2558,-1415,-1623,-932,-1699,-825,-2501,-1077,-1098,-1942,-767,-1978,-2400,-1424,-2410,-23,-3136,-3037,-769,-2503,-534, +-11747,-1772,-2041,-3046,-3048,-7080,-4049,-15320,-2505,-15321,-12916,-15322,-1421,-2335,-940,-967,-1419,-2506,-3204], +[0,-2006,-3214,-2501,-10675,-6211,-15323,-1540,-12516,-10589,-12517,-11492], +[1,3,10118], +[0,0,10119,10120,11], +[0,-13324,-1123,-15324], +[0,-15325,-1122,-4058,-3694,-2410,-4258,-3161,-3862], +[1,3,10122], +[0,10123,10124,10125,5], +[0,-1816,-3612,-2466,-15326,-623,-668,-999,-865,-1548,-1872,-2177,-680,-1753,-1821,-2501,-679,-1077,-1376,-1942,-719,-749, +-695,-778,-2410,-2061,-15327,-15328,-635,-5676,-726,-2115,-2275,-15329,-15330,-15331,-15332,-4236,-2041,-15333,-15334, +-15335,-3808,-15336,-15337,-4805,-15338,-15339,-15340,-15341,-1331,-15342,-2504,-2506,-15343,-5319,-1643,-2502,-15344, +-15345,-15346,-14827,-15347,-1067, +-2695], +[0,-1415,-2006,-9056,-2019,-3136,-3037,-3044,-15348,-3048,-15349,-15350,-14826], +[0,-15351,-7643,-15352,-7645,-15353,-15354,-11229,-3690,-6120,-3161,-1334,-4055,-1501,-15355,-13039,-1791,-11437,-1818, +-3691,-5728,-7107,-15356,-5372,-3214,-11878,-12303,-12304,-12301,-12299,-15357,-15358,-3445,-7696,-15359,-1520,-15360, +-2006,-3476], +[1,3,10127], +[0,10128,10129,10130,4], +[0,-23,-14825,-656,-755,-15361], +[0,-2303], +[0,-5049,-3839,-2006,-3103,-3690], +[1,3,10132], +[0,10133,10134,10135,4], +[0,-47,-3223], +[0,-15362], +[0,-3264,-9589,-525,-9588,-14188,-9590], +[1,3,10137], +[0,0,0,10138,4], +[0,-5141,-4601,-4602,-3578,-3445,-754], +[1,3,10140], +[0,10141,10142,168,5], +[0,-809,-713,-15363], +[0,-1344,-2469,-2410,-3037,-411,-2581,-86,-5144,-3664,-3307], +[0,23,0,97,5], +[1,3,10145], +[0,23,0,10146,9], +[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, +-5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, +-5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15366], +[1,3,10148], +[0,23,0,98,9], +[1,3,10150], +[0,23,0,99,4], +[0,23,0,99,5], +[1,3,10153], +[0,23,0,99,11], +[1,3,10155], +[0,10156,10157,10158,6], +[0,-3698,-13203,-15369,-15370,-11418,-617,-722,-733,-736,-744,-754,-2762,-930,-1004,-15371,-15372,-1010,-13106,-5989, +-1116,-15373,-1299,-1388,-11121,-1465,-1548,-1641,-1666,-1667,-1676,-1681,-1744,-1826,-5262,-7223,-2182,-2297,-15374, +-2451,-15375,-2531], +[0,-3732,-14740,-4198,-3330,-3733,-4623,-3850,-3044,-14742,-3851,-3037,-8852,-3046,-4204,-999,-1336,-1722,-2293,-2410, +-2469], +[0,-5300,-1959,-15176,-15376,-15377,-5940,-9139,-15378,-6335,-3445,-2512,-1004,-8841], +[1,3,10160], +[0,10161,0,271,9], +[0,-2476,-2362,-753,-928,-1442,-2501,-679,-1582,-778,-1888,-2437,-2481,-2483,-5628,-23,-769,-1041,-518,-534,-14408,-15379, +-2508,-13389,-1908,-15380,-2711,-2505,-748,-1929,-15381,-15382,-2485,-2718,-1643,-2712,-15383,-731,-15384,-2714,-1814, +-2716], +[1,3,10163], +[0,10164,0,10165,6], +[0,-1955,-1600,-7898,-1603,-1601,-2718,-5614], +[0,-856,-3262,-1599,-2476,-2816], +[1,3,10167], +[0,10168,0,42,5], +[0,-2711,-1543,-1582], +[1,3,10170], +[0,10171,0,42,9], +[0,-15380,-1553], +[1,3,10173], +[0,10174,0,42,9], +[0,-15380,-769], +[1,3,10176], +[0,10177,0,42,8], +[0,-1779,-15380], +[1,3,10179], +[0,10180,0,42,5], +[0,-15380,-2718], +[1,3,10182], +[0,10183,0,42,4], +[0,-15380], +[1,3,10185], +[0,10186,10187,42,5], +[0,-668,-929,-1077,-1111,-1125,-1284,-2177,-2362,-4701], +[0,-15385], +[1,3,10189], +[0,10190,0,42,4], +[0,-1548,-2286,-5602,-2287,-15380,-2717,-15383,-2715,-15386,-2713], +[1,3,10192], +[0,10193,10194,58,4], +[0,-15387,-15388,-15389,-15390,-15391], +[0,-664,-1654,-2379,-2501,-21,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40,-15392,-15393,-42], +[1,3,10196], +[0,10197,132,58,8], +[0,-15388,-15399,-15400], +[1,3,10199], +[0,10200,10201,58,9], +[0,-1940,-6935,-747,-15401,-15402], +[0,-664,-1654,-932,-753,-2379,-2501,-2376,-21,-778,-2410,-23,-5870,-3035,-3136,-3037,-1637,-1771,-2503,-3621,-3040,-2275, +-15403,-14831,-39,-43,-40,-966,-969,-958,-968,-940,-943,-967,-974,-42], +[1,3,10203], +[0,10204,10205,58,11], +[0,-2722,-15401,-15402,-15404,-15405,-15406], +[0,-664,-2494,-1654,-932,-4270,-753,-2379,-2501,-1942,-21,-2410,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40, +-966,-969,-958,-968,-15407,-940,-943,-967,-974,-42], +[1,3,10207], +[0,10208,132,58,11], +[0,-2531,-15388,-15399], +[1,3,10210], +[0,10211,0,10212,6], +[0,-703,-15408], +[0,-15409,-15410,-3162,-6184], +[1,3,10214], +[0,0,0,173,4], +[1,3,10216], +[0,0,0,10217,5], +[0,-475,-3161,-4865,-7243,-3634,-5495], +[1,3,10219], +[0,117,10220,10221,4], +[0,-519,-668,-756,-1788,-2250,-2251], +[0,-5514,-9846,-687,-15411,-7210], +[1,3,10223], +[0,228,10224,10225,5], +[0,-9705,-5686,-4624,-3037,-8890,-11458,-617,-11477,-1168,-12346,-1260,-1412,-15412,-15413,-1452,-1722,-2125,-2150,-15414, +-2173,-2379,-2388,-12348,-2410,-12349,-2819], +[0,-4004,-3634,-11468,-12350,-11467], +[1,3,10227], +[0,0,10228,272,5], +[0,-526,-528,-6104,-558,-6089,-562,-932,-934,-6013,-940,-956,-958,-1059,-1344,-1415,-1534,-1942,-2125,-2416], +[1,3,10230], +[0,10231,10232,10233,8], +[0,-7226,-15425,-7944,-719,-729,-7949,-1048,-1276,-6343,-7959,-1641,-15426,-2125,-7968,-2359,-7971,-2425,-7972], +[0,-190,-3035,-4269,-15427,-15428,-3617,-15429,-3713,-3037,-15430,-3628,-15431,-427,-428,-15432,-664,-665,-749,-932,-940, +-964,-966,-967,-999,-1054,-1116,-5487,-1654,-1888,-1942,-7981,-2148,-2177,-2210,-2211,-7970,-2379,-2410], +[0,-6342,-4865,-7641,-4258,-3100,-9290], +[1,3,10235], +[0,10236,10237,273,4], +[0,-15425,-6343,-7964,-7966,-2125,-2148,-5509], +[0,-664,-665,-1654,-15433], +[1,3,10239], +[0,10240,10241,273,4], +[0,-7226,-1276,-3607,-1641], +[0,-664,-7979,-1004,-1452,-1654,-6347,-2106,-2148], +[1,3,10243], +[0,10244,10245,10246,4], +[0,-1343], +[0,-1445,-1452,-1654,-2198], +[0,-4864,-4865,-2734,-9711,-3634], +[1,3,10248], +[0,0,10249,10250,4], +[0,-526,-527,-15434,-558,-664,-1654], +[0,-656,-6514,-775,-5092], +[1,3,10252], +[0,0,133,10253,4], +[0,-3264,-8034,-3223,-7472,-4846,-6557,-15435], +[1,3,10255], +[0,0,133,10256,5], +[0,-3264,-15436,-8034,-3223,-7472,-4846,-6557,-15435], +[1,3,10258], +[0,0,133,10259,4], +[0,-3264,-8034,-3223,-7472,-4846,-6557], +[1,3,10261], +[0,0,10262,10263,4], +[0,-8096,-14182,-652,-725,-1288,-1292,-1942,-2087,-2094,-2100,-2125,-2322,-2399,-2410,-2427,-2541], +[0,-3264,-8034,-10902,-7472,-4846,-15435,-15437,-6557], +[1,3,10265], +[0,0,0,41,9], +[1,3,10267], +[0,10268,251,10269,4], +[0,-15438], +[0,-712,-5535,-5549,-775], +[1,3,10271], +[0,0,92,10272,5], +[0,-5092,-3264,-12064,-13319,-7205,-1838,-6231], +[1,3,10274], +[0,10275,88,10276,4], +[0,-1016,-15439,-8493], +[0,-3671,-856,-3960,-3262,-1599,-3261,-15440], +[1,3,10278], +[0,0,10279,10280,5], +[0,-1654,-664,-1405], +[0,-775,-12120,-5101,-15441,-3162,-1838,-5572], +[1,3,10282], +[0,0,10283,10284,6], +[0,-756,-1405], +[0,-2265,-4112,-7188,-775,-10310,-3582], +[1,3,10286], +[0,10287,10288,10289,4], +[0,-781], +[0,-652,-928,-932,-1654,-2127,-2232], +[0,-775,-6454,-6684,-1644,-7192,-7193,-15442], +[1,3,10291], +[0,10292,10293,10294,4], +[0,-508], +[0,-932,-940,-967,-1942,-2319], +[0,-5829,-3215,-6747,-687,-3957,-4377,-6836,-15443], +[1,3,10296], +[0,10297,0,10298,8], +[0,-492,-493,-15444,-495,-722,-1122,-1123,-1439,-7679], +[0,-15445,-3445,-1105,-15446], +[1,3,10300], +[0,10301,0,10302,4], +[0,-1439,-1848,-7679], +[0,-15445,-3445,-5800,-8904], +[1,3,10304], +[0,10305,0,10306,4], +[0,-722,-1439,-1645,-1848,-7679,-15447], +[0,-15445,-3445,-7660], +[1,3,10308], +[0,10309,0,10310,4], +[0,-15448,-1371,-1469,-1645], +[0,-15445,-3445,-15449,-15450], +[1,3,10312], +[0,10313,0,10314,5], +[0,-492,-493,-15444,-495,-722,-1122,-1123,-1439,-1848,-7679], +[0,-15445,-3445,-1105], +[1,3,10316], +[0,10317,0,10318,4], +[0,-492,-493,-15444,-495,-1439,-1848,-7679], +[0,-15445,-3445,-7661], +[1,3,10320], +[0,0,0,274,4], +[1,3,10322], +[0,10323,0,274,10], +[0,-1848], +[1,3,10325], +[0,0,10326,10327,9], +[0,-3136,-3037,-756,-1107,-1415,-1442,-15451,-2375,-2388,-2389,-12348,-2410], +[0,-14233,-6747,-3215,-14867,-3162,-15423,-9918,-11321,-1819,-7572,-4865,-15452], +[1,3,10329], +[0,10330,10331,10332,6], +[0,-1610,-1955,-15453,-15454,-15455,-4096,-3546], +[0,-1415,-523,-1344,-1520,-932,-1650,-2125,-2127,-2286,-784,-679,-12844,-1942,-5002,-767,-533,-23,-722,-1534,-1539,-1771, +-632,-5977,-3983,-40,-959,-15456,-15457,-2129,-32,-958,-2143,-2138,-940,-967,-2131,-15458,-740,-2137], +[0,-4100,-3671,-856,-15459,-3262], +[1,3,10334], +[0,10335,10336,10337,10], +[0,-1805,-668,-2550,-729,-15460,-2757,-910,-1077,-1098,-1582,-15461,-1540,-2187,-2433,-9229,-15462,-731], +[0,-519,-754,-999,-1344,-932,-2125,-2127,-1534,-15463,-2251,-8177,-15464], +[0,-2757,-4100,-3671,-856,-15459,-3262,-687], +[1,3,10339], +[0,10340,0,10341,5], +[0,-15465], +[0,-5092,-2759,-1437,-3162,-13614], +[1,3,10343], +[0,10344,10345,10346,4], +[0,-14393,-1548,-2029], +[0,-21,-23,-40,-41,-533,-708,-915,-916,-932,-940,-943,-15466,-958,-966,-968,-969,-974,-1415,-1942,-15467,-1967,-1992, +-2006,-2019,-2052], +[0,-915,-1415,-4045,-8911,-1950,-674,-5845,-3634,-5119,-4004], +[1,3,10348], +[0,10349,0,10350,5], +[0,-464,-15468,-615,-15469,-2387,-2536], +[0,-5409,-510,-15470,-15471,-15472,-15473,-8676,-15474,-15475,-7347,-6656,-6527,-1594,-11872,-3162,-15476,-15477,-1838, +-1961,-9591,-15478,-5408], +[1,3,10352], +[0,0,14,10353,9], +[0,-5559,-9692,-3264,-8034,-3223,-15479,-7723,-8472,-3590,-3110,-9681,-5846,-15480,-2544,-15481,-15482], +[1,3,10355], +[0,10356,10357,10358,5], +[0,-674,-15483,-929,-572,-529,-569,-1077,-15484,-1610,-1646,-14584], +[0,-526,-539,-549,-566,-708,-15485,-932,-1654,-1788], +[0,-1446,-3690,-10855,-856,-6948,-15486,-6950,-15487,-6949,-15488,-6951,-15489,-11798,-15490,-6952,-15491,-15492], +[1,3,10360], +[0,0,55,10361,4], +[0,-932,-5208,-3784,-3862,-9420,-11315,-8199,-4100,-856], +[1,3,10363], +[0,0,10364,10365,4], +[0,-1116,-2251,-2322], +[0,-856,-10858,-15493,-10925,-15494,-15411,-3966], +[1,3,10367], +[0,87,275,10368,4], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-1391,-9682], +[1,3,10370], +[0,87,275,10371,6], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-775,-3585,-1838], +[1,3,10373], +[0,10374,10375,10376,4], +[0,-5334,-2742,-9596,-1968,-2235,-9584,-9585], +[0,-3705,-3037,-652,-1459,-1839,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-1839,-3272,-10919], +[1,3,10378], +[0,87,92,10379,5], +[0,-9590,-9589,-9588,-2444,-3590,-3264,-3830,-9682,-15495,-15496,-15497], +[1,3,10381], +[0,10382,10383,10384,8], +[0,-2595], +[0,-985,-1637,-1942,-2320,-2322], +[0,-3272,-3264,-1838,-6231], +[1,3,10386], +[0,0,10387,10388,5], +[0,-3037,-652,-2586,-1288,-1292,-1729,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-3264,-9703,-6818,-6557,-9682,-15498,-5387,-5388], +[1,3,10390], +[0,10391,0,10392,5], +[0,-812], +[0,-1334,-1342,-1501,-1004,-1030,-12868,-11998,-15499,-15500,-15501,-15502,-12868,-11994,-15503,-3445], +[1,3,10394], +[0,0,130,10395,4], +[0,-775,-3209,-15504,-1889], +[1,3,10397], +[0,276,10398,277,4], +[0,-9848,-2776], +[1,3,10400], +[0,276,10401,277,6], +[0,-2774,-15505,-9848,-2776], +[1,3,10403], +[0,0,0,10404,4], +[0,-525,-2006,-1368,-3161,-4729,-9850,-3264,-9851,-3844,-5092,-4865,-2127,-15506,-15507,-5272], +[1,3,10406], +[0,0,10407,10408,4], +[0,-824,-1168,-784,-1889,-1243,-15508,-1238,-1270,-15509], +[0,-775,-3576,-3577,-3161,-3578,-15510], +[1,3,10410], +[0,10411,10412,10413,4], +[0,-1666,-2161], +[0,-510,-1127,-1138,-1145,-1148,-1162,-1446,-1548,-2105], +[0,-620,-15511,-15512,-856,-1446,-7674,-4101], +[1,3,10415], +[0,0,10416,10417,6], +[0,-9705,-3037,-11458,-1412,-1452,-2173,-2388,-12348,-2410,-12349], +[0,-4004,-3634,-11468,-12350,-11467,-1412], +[1,3,10419], +[0,10420,10421,10422,5], +[0,-10041,-13980,-3740,-1427,-1950,-2375], +[0,-15513,-4,-5,-6,-7,-8,-9,-10,-12,-13,-14,-23,-40,-86,-9404,-3244,-190,-10041,-4020,-237,-3048,-3136,-3037,-3199,-427, +-428,-15514,-533,-668,-10525,-740,-767,-4805,-932,-940,-958,-959,-960,-967,-999,-1077,-15515,-1107,-1110,-1344,-1415, +-1419,-1449,-1868,-1942,-2125,-2153,-2177,-2387,-2392,-2400,-2410,-2411,-2567], +[0,-1415,-2410,-475,-3634], +[1,3,10424], +[0,10425,10426,10427,5], +[0,-2699,-656,-668,-679,-719,-729,-6798,-1805,-1906,-1907,-2213,-2218,-12979,-2433,-2531], +[0,-23,-162,-3778,-163,-237,-350,-351,-15516,-367,-7043,-406,-407,-409,-410,-5039,-3136,-8334,-3037,-3040,-3052,-9947, +-4764,-4204,-427,-428,-440,-15517,-4734,-518,-767,-932,-940,-943,-958,-965,-968,-969,-1415,-1428,-1521,-1753,-1771,-1889, +-14336,-15518,-1942,-2006,-2019,-2029,-2125,-2127,-4063,-2132,-6483,-2162,-2278,-2318,-2410,-2466,-15519], +[0,-3634,-1415,-3100,-7566,-812,-15520], +[1,3,10429], +[0,10430,10431,10432,8], +[0,-1403,-15521], +[0,-15522,-15523,-1202,-1276,-1654,-3261], +[0,-9198,-6515,-812,-3671,-856,-6899,-3960,-3262,-1276,-4187,-8453,-4676,-15524,-15525,-1548,-5545,-1599,-3110,-3261, +-15440], +[1,3,10434], +[0,10435,10436,10437,10], +[0,-15526], +[0,-1586,-1729,-2337], +[0,-1586,-15527,-9409,-3844,-3445], +[1,3,10439], +[0,10440,10441,10442,8], +[0,-10869], +[0,-3037,-652,-1638,-1942,-2094,-2100,-2399,-2410,-2541], +[0,-1638,-15528,-15529,-6818,-7724,-15530,-3264,-4329,-1599,-2427], +[1,3,10444], +[0,0,0,10445,4], +[0,-1638,-2444,-3590,-3264,-6422], +[1,3,10447], +[0,0,0,10448,10], +[0,-1638,-2444,-3590,-3264,-6818,-6557], +[1,3,10450], +[0,0,10451,10452,4], +[0,-6874,-1127,-1452,-1666,-2525,-2416,-10264,-1154,-15531,-1149,-1136,-1144,-1148], +[0,-2442,-3162,-9918,-15423,-6659,-14867,-4865,-9318,-15532,-15533], +[1,3,10454], +[0,10455,10456,10457,4], +[0,-7177], +[0,-1415,-932,-2375,-1942,-2410,-3136,-3037,-7178,-940,-428,-427], +[0,-15534,-15535,-775], +[1,3,10459], +[0,10460,92,10461,6], +[0,-4231,-2738,-2739,-10909,-15536,-15537,-15538], +[0,-1838,-3264,-7472,-4846,-8034,-3223], +[1,3,10463], +[0,0,0,10464,4], +[0,-1889,-9300,-3756,-9339,-2006,-775,-15539], +[1,3,10466], +[0,10467,130,10468,5], +[0,-2773], +[0,-775,-3209,-1889], +[1,3,10470], +[0,0,10471,10472,9], +[0,-23,-40,-15540,-4690,-15541,-932,-1412,-1471,-1475,-1476,-1479,-1481,-1486,-1491,-11943,-1970,-1978,-2127,-2128,-3571, +-2139,-2140,-10312,-4881], +[0,-9407,-1978,-1874,-4864,-15542,-15543,-4902,-3634,-11468,-1970,-11467,-4881,-15221], +[1,3,10474], +[0,10475,10476,10477,9], +[0,-567,-1275,-1967], +[0,-633,-634,-668,-824,-1168,-1179,-1205,-1243,-15544,-1262,-1266,-1632,-15545,-2006,-2019,-2463], +[0,-2006,-3159,-2319,-15546,-2363,-15547,-1275,-3162], +[1,3,10479], +[0,10480,10481,10482,8], +[0,-15548,-303,-15549,-304,-4360,-6448,-469,-470,-668,-680,-728,-812,-1125,-1353,-1442,-5265,-1641,-1789,-1790,-1816, +-1966,-2177,-2205,-2223,-3610,-4002,-7982,-15550,-2426,-5721], +[0,-2581,-86,-3307,-4368,-15551,-11765,-15552,-350,-4062,-351,-3561,-3198,-3660,-3713,-3735,-3199,-15553,-15554,-3664, +-13376,-1344,-1498,-1722,-4362,-5263,-1942,-2127,-6483,-2392,-2400,-2410,-2469], +[0,-3690,-489,-11768,-856,-11148,-11773,-1789,-3438,-11772,-11769,-11771,-11770,-11410,-4328,-4847], +[1,3,10484], +[0,0,10485,10486,11], +[0,-5295,-409,-3136,-3040,-3052,-13529,-427,-428,-757,-825,-932,-940,-967,-969,-970,-1103,-15555,-1415,-15556,-1637, +-15302,-15557,-1942,-2006,-2019,-13531,-2214,-2375,-2410,-15558], +[0,-2006,-12474,-3159,-8597,-13241,-15559,-712,-3577,-15560,-15273,-2012,-4666,-11876,-4665,-15561], +[1,3,10488], +[0,10489,10490,10491,4], +[0,-2594], +[0,-40,-41,-3040,-915,-916,-1415,-1992,-2052,-2127,-2128,-2131,-2137], +[0,-2442,-3162,-9918,-15423,-6659,-14867,-4865,-15562,-15563,-9318,-6106,-4000], +[1,3,10493], +[0,0,10494,10495,4], +[0,-86,-3037,-3040,-3052,-3075,-427,-9700,-932,-940,-9106,-958,-965,-967,-968,-969,-1344,-1415,-1534,-1637,-1942,-1952, +-2006,-2019,-2044,-2046], +[0,-2006,-9843,-3122,-2043,-2044,-15564,-2634], +[1,3,10497], +[0,0,10498,10499,4], +[0,-1788,-1449,-1471,-1654,-2006,-2074,-2210,-507,-932,-1548,-1940,-2334,-4258,-708,-753,-1958,-2501,-589,-2019,-15565, +-2410,-23,-3037,-1482,-2040,-3040,-534,-11472,-1492,-50,-1025,-3052,-40,-3062,-969,-2052,-15566,-406,-1483,-1475,-1487, +-1479,-14780,-428,-5030], +[0,-5922,-6439,-2006,-7378,-15567,-821], +[1,3,10501], +[0,0,0,10502,4], +[0,-2034,-3162,-5270,-5271,-7084,-6656,-14311,-15176,-15568,-6528,-4100], +[1,3,10504], +[0,0,10505,10506,4], +[0,-44,-3040,-3141,-2006,-2034,-2410], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-15071,-13615,-15569,-6527,-15570], +[1,3,10508], +[0,94,10509,10510,5], +[0,-528,-932,-933,-940,-958,-962,-967,-969,-1942,-15571], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-3160,-1959,-15572,-15573,-15574,-10677,-15575,-15576,-6716,-5176], +[1,3,10512], +[0,10513,10514,10515,4], +[0,-798,-15577,-799,-801,-1967], +[0,-15578,-4757,-6263,-4754,-15579,-528,-533,-14782,-807,-932,-943,-958,-966,-968,-969,-15580,-974,-1344,-1415,-1534, +-1942,-1952,-2006,-2034,-15571,-2052], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-9472,-6581,-14497,-797], +[1,3,10517], +[0,10518,10519,10520,6], +[0,-997], +[0,-3157,-932,-12566], +[0,-2034,-3159,-12567,-2006,-3163,-3162,-5270,-5271,-3160,-10028,-15581,-15582], +[1,3,10522], +[0,10523,10524,10525,8], +[0,-2798,-2489], +[0,-15583,-21,-23,-3204,-39,-40,-6056,-41,-161,-163,-2997,-350,-351,-3561,-409,-2622,-3040,-528,-533,-767,-932,-940,-956, +-959,-968,-969,-970,-1059,-11942,-1103,-15584,-1415,-15302,-1942,-1952,-2006,-2019,-15585,-2052,-2125,-2127,-2128,-2140, +-2410], +[0,-2006,-2804,-12051,-3095,-7582,-3821,-3822], +[1,3,10527], +[0,10528,10529,10530,8], +[0,-15586,-2730,-682], +[0,-15587,-5295,-406,-407,-409,-15588,-3059,-3037,-3040,-3052,-440,-3899,-795,-1449,-2910,-2006,-2019,-2214,-2892,-2387, +-2410,-2469], +[0,-2006,-3576,-4126,-3162,-12129], +[1,3,10532], +[0,10533,10534,10535,10], +[0,-2387,-15589], +[0,-15590,-5295,-2214,-2006,-2019], +[0,-2006,-5553,-775], +[1,3,10537], +[0,0,10538,10539,4], +[0,-509,-1654,-1939], +[0,-775,-712,-15559,-5554], +[1,3,10541], +[0,10542,0,77,5], +[0,-2869,-424,-15591,-15592,-15593,-15594,-15595,-15596,-15597,-15598,-15599,-15600,-15601], +[1,3,10544], +[0,0,10545,272,5], +[0,-23,-40,-42,-86,-3307,-3326,-15155,-3561,-3266,-3136,-3037,-427,-428,-441,-7465,-528,-533,-8349,-726,-767,-932,-943, +-958,-966,-968,-980,-1103,-1344,-1392,-1415,-1419,-1534,-2125,-2127,-2142,-2410,-2478], +[1,3,10547], +[0,0,10548,259,8], +[0,-3800,-684,-748,-778,-1041,-3544,-1643,-1942,-2116,-2162,-2163,-2376,-2410,-2437,-2501,-2503,-2508], +[1,3,10550], +[0,33,10551,10552,4], +[0,-5295,-2214,-407,-409,-15590,-1419], +[0,-2006,-9080,-15602,-15603,-15604], +[1,3,10554], +[0,10555,10556,10557,6], +[0,-15605,-2387], +[0,-5295,-2214,-15590,-15606,-916,-2006,-2019], +[0,-15607,-2006,-15608], +[1,3,10559], +[0,10560,10561,10562,5], +[0,-753,-44,-15609,-15610], +[0,-1521,-2299,-2501,-778,-2410,-23,-1522,-2503,-534,-2275,-15611,-2508,-40,-2301,-2505,-42,-38,-535,-3362,-26,-36,-35], +[0,-4000,-812,-3162], +[1,3,10564], +[0,0,10565,10566,10], +[0,-3037,-4371,-2447,-2466], +[0,-2466,-3161,-8113], +[1,3,10568], +[0,0,10569,10570,5], +[0,-527,-534,-559,-767,-778,-1041,-1743,-2680,-2163,-15612,-2275,-2476,-2481,-2483,-2484,-2485,-2501,-2505], +[0,-11853,-11851,-15613,-15614,-15615,-15616,-15617,-3100,-15618], +[1,3,10572], +[0,10573,0,271,8], +[0,-653,-914,-2710,-15380,-2433,-2719,-3546], +[1,3,10575], +[0,0,10576,10577,5], +[0,-21,-23,-26,-36,-40,-42,-3330,-15619,-3136,-3037,-6630,-427,-428,-527,-533,-535,-932,-934,-940,-958,-967,-1415,-5133, +-1942,-2174,-2410], +[0,-1415,-1001,-4116,-510,-5867,-1961,-4868,-3634,-5119], +[1,3,10579], +[0,10580,10581,10582,5], +[0,-11458,-2173], +[0,-9705,-11477,-1168,-12346,-1412,-1888,-15414,-2410], +[0,-3634,-11468,-12350,-11467,-5769], +[1,3,10584], +[0,10585,10586,10587,4], +[0,-464,-668,-824,-1107,-1371,-1646,-1980,-2105,-2125,-2177,-2536], +[0,-5682,-3711,-15620,-3036,-11697,-9705,-8566,-5686,-3037,-12344,-8852,-8890,-11458,-3199,-11343,-11477,-1168,-12346, +-1412,-2150,-2173,-2410], +[0,-475,-4004,-3634,-1970,-11468,-12350,-11467,-2173], +[1,3,10589], +[0,117,55,10590,4], +[0,-2265,-7472,-4112,-6730,-13460,-6787,-13461,-13462,-13463,-13465,-5514,-5559,-5563,-687,-3958,-3974,-4000,-13466, +-13467,-13468,-13469,-13470], +[1,3,10592], +[0,169,10593,10594,5], +[0,-3037,-928,-15621,-1496,-15622,-2410,-2447], +[0,-15623,-9669,-3161,-9670,-8615,-1334,-3690], +[1,3,10596], +[0,10597,0,10598,8], +[0,-1460,-15624,-1442,-3241], +[0,-15279,-15625,-727,-856,-15280,-15281], +[1,3,10600], +[0,0,10601,278,6], +[0,-664,-3035,-3037,-15626], +[1,3,10603], +[0,10604,0,95,10], +[0,-15631,-15632,-823,-1878], +[1,3,10606], +[0,39,0,10607,5], +[0,-2006,-3159,-4217,-3694], +[0,23,0,98,4], +[0,23,0,99,6], +[1,3,10611], +[0,10612,10613,10614,4], +[0,-15633,-10576], +[0,-5859,-633,-13719,-2322], +[0,-7581,-7582,-7580,-7762,-15634,-5177,-15635,-3100,-633], +[1,3,10616], +[0,10617,10618,10619,4], +[0,-15636,-15637,-15638,-15639,-15640,-640,-668,-671,-865,-866,-997,-1026,-14636,-1098,-1116,-1353,-1376,-7408,-1460, +-15641,-15642,-5895,-1958,-2177,-2193,-2331,-2410,-15643,-15644,-15645], +[0,-2476,-15646,-15647,-15648,-15649], +[0,-2830,-15650,-3161], +[1,3,10621], +[0,10622,10623,10624,9], +[0,-44,-15651], +[0,-1415,-2162,-1344,-2006,-915,-932,-2501,-1942,-767,-2019,-21,-778,-2095,-2410,-23,-1534,-1771,-2163,-2503,-3040,-534, +-2275,-15652,-15653,-4227,-15654,-4749,-40,-13427,-41,-969,-358,-15655,-940,-962,-967,-1419,-42,-4757,-15656,-4758,-428, +-4762,-38,-427,-12712,-15045], +[0,-2006,-3095,-15657,-13652,-15658,-3162,-15106,-2410,-15659,-15660], +[1,3,10626], +[0,10627,10628,7,4], +[0,-668,-695,-719,-1610,-6294,-2177,-15661], +[0,-3802,-11346,-3037,-3199,-15662], +[1,3,10630], +[0,10631,10632,7,4], +[0,-15663,-2564,-703,-834,-15664,-2303,-2466,-461,-623,-812,-4245,-5358,-743,-783,-5036,-2083,-2177,-2814,-680,-5034,-928, +-15665,-15666,-1442,-3447,-1827,-1966,-15667,-15668,-3535,-3027,-15669,-1864,-10430,-2422,-15670,-15671,-5113,-2654, +-3545,-15672,-1321,-1588,-2551,-989,-15673,-8294,-3649,-14335,-15674,-2429,-15675,-15676,-15677,-8882,-4785,-3190,-4288, +-15678,-6332,-3459,-15679,-15680], +[0,-9740,-2162,-2127,-2426,-2469,-674,-2427,-15681,-15206,-15682,-2410,-5334,-1002,-2089,-3198,-13046,-12145,-3199,-15683, +-6327,-3660,-3735,-5204,-1736,-3983,-8523,-5114,-9602,-15684,-3712,-9146,-2084,-15685,-15686], +[1,3,10634], +[0,10635,0,7,5], +[0,-710,-15687,-1813,-2416], +[1,3,10637], +[0,10638,10639,10640,10], +[0,-714,-1077,-1376], +[0,-932,-959,-1415], +[0,-3871,-3262,-3976,-687,-11487], +[1,3,10642], +[0,0,10643,10644,10], +[0,-350,-351,-668,-910,-932,-940,-958,-15688,-6099,-1343,-1344,-1534,-1654,-3446,-1942,-2125,-2127,-2131,-15689,-2234, +-2323,-10988], +[0,-3108,-3110,-5889], +[1,3,10646], +[0,0,10647,7,8], +[0,-427,-428,-932,-935,-940,-948,-958,-962,-967,-969,-970,-1344,-1534,-1942,-2006,-2410], +[1,3,10649], +[0,10650,10651,10652,4], +[0,-15690], +[0,-3621,-823,-1654], +[0,-3578,-4004,-4043,-15691,-1654,-3161], +[1,3,10654], +[0,0,10655,10656,4], +[0,-5295,-3136,-427,-428,-15692,-10529,-13751,-712,-932,-940,-967,-1107,-1415,-1942,-2127,-2140,-2142,-2214,-2355,-2375, +-2379,-2387,-2410], +[0,-712,-3215,-5845,-13241,-15559,-5549,-12065,-15693,-12067,-1510,-15694,-12434,-775,-15695,-4665,-15696,-15697,-1644, +-15698], +[1,3,10658], +[0,106,10659,280,6], +[0,-15587,-86,-3307,-2845,-4646,-3617,-3136,-3037,-427,-428,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], +[0,23,0,97,8], +[1,3,10662], +[0,10663,10664,10665,8], +[0,-6332,-6326,-6329,-15702,-5334,-3660,-4251,-2854,-15703,-2586,-1288,-1292,-1294,-1349,-1442,-14511,-1588,-15704,-10749, +-5348,-2918,-2083,-4262,-5353,-2422,-2427,-2429,-5358], +[0,-3983,-3037,-3664,-2834,-15705,-2469], +[0,-3671,-856,-2834,-15706,-15707], +[1,3,10667], +[0,10668,10669,280,4], +[0,-1004,-2080], +[0,-15587,-86,-3307,-2841,-2845,-4646,-3617,-3136,-3037,-427,-428,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], +[1,3,10671], +[0,10672,10673,10674,4], +[0,-2080,-2379], +[0,-86,-3307,-4646,-3617,-3136,-3037,-427,-428,-668,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], +[0,-15699,-3967,-2410,-15700,-15701,-3161,-11894,-3445,-3482], +[1,3,10676], +[0,23,0,97,4], +[0,23,0,98,11], +[1,3,10679], +[0,262,10680,10681,4], +[0,-262,-4838], +[0,-2476,-2486,-4634,-2851,-15708,-15709,-12704,-3690,-7864,-9069,-2410,-3018,-8038,-9594], +[1,3,10683], +[0,10684,10685,151,5], +[0,-15710,-192,-15711], +[0,-41,-15712,-15713,-407,-409,-410,-3040,-3052,-440,-703,-2006,-2019,-2042,-2044,-2113,-3820,-15714,-727], +[1,3,10687], +[0,10688,10689,10690,8], +[0,-2856], +[0,-2834,-999,-15715], +[0,-15707,-15716,-856,-15717,-4245,-15718,-15706], +[0,0,0,10692,5], +[0,-15318,-15719,-3445], +[1,3,10694], +[0,10695,10696,10697,9], +[0,-15717], +[0,-4251,-4231,-9602,-2090,-2098,-2101,-4245,-2427,-5358,-15715], +[0,-15716,-856,-15717,-4245,-15718], +[1,3,10699], +[0,10700,10701,10702,8], +[0,-14800,-14801,-820,-1002,-2400], +[0,-15720,-14804,-3311,-3312,-652,-14806,-2410], +[0,-14808,-4187,-2444,-3966,-4865,-3445,-3100,-507,-4004,-664,-14809,-14810], +[1,3,10704], +[0,0,10705,10706,5], +[0,-600,-633,-756,-1405,-1654,-2198,-2416], +[0,-8472,-2544,-7723,-14242,-3962,-7107,-5559,-6422,-7724,-2451,-3264,-775,-6138,-14672], +[1,3,10708], +[0,10709,0,10710,5], +[0,-15721], +[0,-3843,-3118,-14066,-2006,-3100,-3577,-3445,-4725,-3578,-4865,-3214,-3756,-2410,-3966,-3967,-3482,-15722,-5260], +[1,3,10712], +[0,10713,0,73,9], +[0,-2984,-2885,-5766,-2400], +[1,3,10715], +[0,269,0,95,10], +[1,3,10717], +[0,10718,0,77,4], +[0,-424,-2704,-2826,-2863,-2706,-2707,-2902,-2903,-2940,-2708], +[1,3,10720], +[0,0,0,10721,4], +[0,-3843,-3118,-14066,-2006,-3100,-3577,-3445,-4725,-3578,-4865,-3214,-3756,-2410,-3966,-3967,-3482,-15724,-5260], +[0,23,0,97,6], +[1,3,10724], +[0,10725,0,246,4], +[0,-2531,-1107,-2624,-2550,-2177,-1961,-578,-719,-1384,-2166,-481,-533,-12547,-1624,-2516,-12548,-1950,-2041,-458,-12550, +-11463,-12551,-9870,-2082,-12552,-1421,-12553,-12554,-12555,-12556,-12557,-12559,-12560,-15725], +[1,3,10727], +[0,10728,0,77,10], +[0,-2862,-424,-2976,-2872,-2705,-2853,-2850,-2827,-2848,-2849,-2828,-15726,-15727,-2865,-2703,-2975,-15728,-2846,-15729, +-2847,-2842,-15730,-15731,-2868,-2996,-2866], +[1,3,10730], +[0,10731,10732,268,5], +[0,-2387,-2686], +[0,-2006,-932,-2125,-2127,-1942,-2019,-2410,-3037,-3040,-2043,-3052,-2044,-15732,-3986,-3988,-3075,-3267,-428,-427], +[1,3,10734], +[0,10735,10736,10737,9], +[0,-15733,-15734,-15735,-617,-1004,-15736,-1338,-2520,-2558], +[0,-15737,-15738,-15739,-15740,-15741,-3617,-4203,-1683,-2293], +[0,-15742,-7661,-15743,-15744,-15745,-3445], +[1,3,10739], +[0,23,0,98,5], +[1,3,10741], +[0,0,10742,10743,4], +[0,-509,-1654], +[0,-2873,-5514,-712,-5535,-668,-775,-15559,-5549,-15746], +[1,3,10745], +[0,10746,10747,10748,10], +[0,-4843], +[0,-3037,-3040,-3052,-440,-2634,-2006,-2019,-2466,-6859,-2469,-4842], +[0,-3690,-856,-9736,-1713,-3438,-4847], +[1,3,10750], +[0,10751,0,10752,5], +[0,-1439,-7679,-722,-15447], +[0,-15318,-15719,-3445,-7660], +[1,3,10754], +[0,0,10755,10756,4], +[0,-8096,-652,-1942,-2094,-2100,-2125,-2322,-2399,-2410,-2541], +[0,-775,-3264,-5092,-3578,-6184,-13270,-5899,-9299], +[1,3,10758], +[0,10759,10760,285,10], +[0,-1313,-2564], +[0,-15747,-86,-3307,-4835,-15748,-3036,-3037,-427,-428,-4627,-928,-932,-934,-940,-15749,-948,-958,-967,-1107,-1344,-1534, +-1942,-15750,-2125,-2383,-2392,-2410], +[1,3,10762], +[0,10763,10764,285,4], +[0,-679,-2877], +[0,-502,-2392,-1107,-1344,-932,-2125,-928,-1942,-2410,-3036,-3037,-1534,-15748,-2383,-86,-15750,-958,-4627,-940,-967,-428, +-934,-3307,-427,-948,-15749], +[1,3,10766], +[0,10767,10768,10769,6], +[0,-2531,-469,-2392,-5193,-1867,-2446,-649,-764,-15753,-2426,-680,-1646,-2694,-823,-1043,-11121,-1878,-15754,-1354,-1340, +-11964,-1101,-1997,-14221,-15755,-14032,-1851,-2160,-15756,-15757,-8274], +[0,-2193,-2125,-2127,-928,-4204,-749,-767,-3738,-15758,-5686,-5363,-2014,-11433,-2132,-4049,-15759,-15760,-15761,-15762], +[0,-15354,-3690,-7643,-15763,-11229,-3161,-15764,-11878,-3214,-9736,-3966,-2879,-2006,-15359,-2410], +[1,24,10771], +[0,25,10772], +1743292800000, +[1,3,10774], +[0,10775,10776,10777,9], +[0,-15765,-15766,-15767,-15768,-15769], +[0,-40,-15770,-15771,-15772,-3326,-350,-351,-3561,-3048,-3037,-15773,-427,-12837,-428,-518,-534,-558,-726,-753,-756,-4809, +-15774,-932,-958,-960,-5863,-1077,-1103,-3566,-15775,-15776,-1344,-15777,-15778,-1771,-15779,-1891,-15780,-15781,-15782, +-2127,-8895,-4753,-15783,-8896,-2140,-2142,-2144,-2162,-5896,-15784,-5013,-2387,-2388,-15785,-2410,-8564], +[0,-12613,-15786,-12449,-12898,-2363,-11321,-3162,-2006,-2476,-475,-1940,-13615,-13616,-13613,-15787], +[1,3,10779], +[0,0,10780,10781,4], +[0,-50,-2410,-2466,-4840,-6859], +[0,-15415,-15416,-15788,-15417,-15418,-11853,-10655,-15419,-6711,-15420,-15421,-4126,-15071,-2006,-15422,-475,-2476,-5270, +-3162,-11321,-15423,-15424], +[1,3,10783], +[0,10784,10785,10786,5], +[0,-15789], +[0,-15790,-3136,-3037,-664,-12469,-1002], +[0,-15791,-6121,-460,-15792,-15793,-15794,-15795], +[1,3,10788], +[0,10789,10790,7,4], +[0,-15796,-3748,-948,-8339,-965,-968,-969,-1047,-1110,-15797,-2411], +[0,-3037,-10557,-932,-1344,-3781,-1498,-15798,-1772,-2399,-2410], +[1,3,10792], +[0,10793,0,73,4], +[0,-1456], +[1,3,10795], +[0,10796,10797,286,4], +[0,-4007,-658,-3190,-1548,-1549,-15799], +[0,-15800,-3037,-1278,-2410,-15801,-15802,-15803], +[1,3,10799], +[0,10800,0,7,6], +[0,-4231], +[1,3,10802], +[0,0,10803,7,8], +[0,-2386,-932,-2469,-1942,-2410,-3037,-965,-3664,-978,-940,-428,-427], +[1,3,10805], +[0,10806,10807,10808,9], +[0,-668,-1574,-1948,-2303], +[0,-1127,-1132,-1134,-1163,-2541], +[0,-9219,-3839,-9472,-6523,-6527,-7175,-1644], +[1,3,10810], +[0,10811,10812,286,5], +[0,-928,-4007,-2886], +[0,-1415,-2410,-3136,-3037,-15806,-15807], +[1,3,10814], +[0,10815,10816,10817,5], +[0,-522], +[0,-1788,-664,-2391,-1654,-2125,-1004,-2379,-2410,-3035,-3037,-3621,-511,-3617,-3983], +[0,-4665,-5119,-3634,-4873,-3440,-4666,-5986,-1874,-522], +[1,3,10819], +[0,10820,10821,7,5], +[0,-483,-653,-6860,-13380,-14174,-15808,-5042,-1864,-2923,-7160,-2177,-3535,-2654,-2369,-15809,-15810], +[0,-15661,-15811,-15812,-15813,-15814,-3037,-8523,-3199,-8200,-15815,-15816,-3664,-3665,-4817,-8349,-815,-932,-8418,-3751, +-1623,-3459,-6568,-1942,-2910,-15817,-15818,-2410,-15819,-15820,-15821,-15822,-2466,-2469], +[1,3,10823], +[0,10824,10825,10826,4], +[0,-812,-814,-1077,-1116,-7408,-2331], +[0,-3198,-15823,-3048,-664,-932,-1654], +[0,-867,-7347,-10908,-6131,-6656,-1334,-2435,-7107,-3445], +[1,3,10828], +[0,0,10829,10830,4], +[0,-3983,-3037,-3040,-9723,-1942,-2006,-2019,-3682,-2410], +[0,-2006,-5741,-12662,-12664,-12665], +[1,3,10832], +[0,10833,0,10834,5], +[0,-834,-3222,-681,-3620,-81,-66,-73,-74,-3502,-83,-68,-85,-15824,-6672,-15825], +[0,-15826,-681,-3489,-15827,-15828,-5554,-15829,-7754,-3496,-3498,-3264,-3505,-3506,-3507,-3508,-3509,-8841,-6217,-3161], +[1,3,10836], +[0,0,287,134,4], +[1,3,10838], +[0,10839,10840,10841,11], +[0,-15830,-1967,-2055], +[0,-21,-23,-32,-26,-33,-34,-35,-6034,-36,-38,-40,-41,-44,-406,-407,-409,-534,-753,-767,-932,-933,-940,-958,-962,-967,-969, +-1415,-1419,-1455,-1939,-1942,-2006,-2019,-2501,-2502,-2503,-2505], +[0,-2006,-3476,-5176,-3159], +[1,3,10843], +[0,0,122,10844,5], +[0,-1107,-5569,-5570,-3215,-15831,-3116], +[1,3,10846], +[0,10847,0,10848,5], +[0,-681,-3517,-81,-15832,-66,-83,-68,-15824,-6672,-15825,-65,-15833,-3526,-15834,-15835], +[0,-15826,-681,-3489,-15827,-15828,-5554,-15829,-7754,-3496,-3498,-3264,-3505,-3506,-3507,-3508,-3509,-8841,-3161], +[1,3,10850], +[0,0,37,288,8], +[1,3,10852], +[0,10853,10854,10855,4], +[0,-15836,-458,-812,-1729], +[0,-3198,-3037,-4201,-15837], +[0,-13739,-7572,-3690,-3323,-3161,-3482,-2901], +[1,3,10857], +[0,23,0,289,4], +[0,23,0,289,5], +[1,3,10860], +[0,10861,0,170,5], +[0,-5240,-5241,-431,-15838,-5244,-5245], +[1,3,10863], +[0,10864,0,10865,9], +[0,-15839,-15840,-15841,-15842,-15843,-15844,-15845,-15846], +[0,-15847,-2257,-15848,-3634,-4004,-15849,-15849,-2034,-2006,-3162,-5270,-5271,-3578], +[1,3,10867], +[0,10868,0,10869,6], +[0,-1439,-7679,-493,-495,-15444,-492], +[0,-15318,-15719,-3445,-7661], +[1,3,10871], +[0,0,10872,10873,5], +[0,-633,-1339,-2491], +[0,-2319,-8533,-3162,-2363,-5389,-6822], +[1,3,10875], +[0,10876,10877,10878,9], +[0,-15850,-2324], +[0,-1413,-1471,-1475,-1476,-1481,-11285,-1645,-1978,-2416], +[0,-10838,-10840,-3162,-4865], +[1,3,10880], +[0,10881,10882,7,4], +[0,-8535,-15851,-11270,-4848,-15852,-15853,-1826,-3653,-2062,-7967,-8544,-15854,-15855,-2531], +[0,-13322,-9193,-13323,-15856,-357,-15857,-3037,-4204,-8549,-2917,-726,-2758,-932,-1030,-1122,-1123,-15858,-2884,-1939, +-1972,-2177,-2210,-2240,-2384,-2410,-2426,-2648], +[1,3,10884], +[0,10885,10886,10887,11], +[0,-3459,-1863,-5037,-15811], +[0,-3735,-15206,-1966,-2469], +[0,-8403,-7148], +[1,3,10889], +[0,10890,10891,7,4], +[0,-25,-668,-2066,-2114,-2550], +[0,-528,-15859,-15860,-10445,-1978,-2070,-2226,-2250,-2322,-2359], +[1,3,10893], +[0,10894,132,58,5], +[0,-15861,-996,-15388,-15399], +[1,3,10896], +[0,0,0,10897,4], +[0,-15862,-3445,-13986,-11867,-7685,-2006], +[1,3,10899], +[0,0,0,10900,6], +[0,-932,-3784,-2006,-2041,-5324], +[1,3,10902], +[0,10903,10904,10905,8], +[0,-479,-9493,-812,-1022,-2778,-1446,-1597,-2359], +[0,-23,-40,-43,-528,-664,-756,-932,-951,-1168,-1174,-1197,-1212,-1220,-1231,-1252,-1654,-15863,-1788,-1939], +[0,-1168,-1446,-7674,-3214,-7841,-856], +[1,3,10907], +[0,10908,0,10909,4], +[0,-1371,-15448,-1645,-1469], +[0,-15318,-15719,-3445,-15449,-15450], +[1,3,10911], +[0,10912,10913,7,4], +[0,-15274,-652,-999,-1047,-1107,-2548], +[0,-15864,-11419,-15865,-357,-3037,-15866,-2177,-932,-2884,-2410], +[1,3,10915], +[0,0,91,10916,10], +[0,-5372,-5142,-7282,-2918,-11889,-5573], +[1,3,10918], +[0,0,10919,10920,10], +[0,-2391,-2851], +[0,-2476,-2486,-4634,-2851,-3636,-4215,-3634], +[1,3,10922], +[0,0,10923,10924,4], +[0,-527,-1168,-1171,-15867,-1187,-1229,-1243,-1248,-1252,-1262,-1942,-2128], +[0,-15868,-15869,-15870,-15871,-15872,-15873,-3162,-11853], +[1,3,10926], +[0,10927,10928,7,4], +[0,-15874], +[0,-2476,-4838,-15875], +[1,3,10930], +[0,0,10931,10932,6], +[0,-15661,-190,-15876,-15877,-3037,-3664,-6593,-932,-940,-960,-978,-1431,-7060,-1534,-8436,-1942,-15878,-15879,-2910, +-2174,-2892,-2400,-2410,-2411,-2469], +[0,-15880,-10587,-12437,-11639,-5112,-14059,-1548,-1993,-10656,-3481,-3018,-3694,-2410,-2424,-2444,-8113,-3590,-5260], +[1,3,10934], +[0,10935,10936,10937,6], +[0,-14337,-5322], +[0,-5053,-11754,-15881,-4062,-639,-734,-999,-1107,-9665,-1852,-2922,-7160,-2127,-2202,-2231,-2410,-2924,-2923], +[0,-7882,-928,-7760,-2923,-2127,-2501], +[1,3,10939], +[0,0,10940,10941,5], +[0,-190,-3664,-932,-958,-960,-15882,-971,-972,-1449,-2892,-15883,-2410,-2411,-2466,-2469], +[0,-9022,-2410,-4058,-3926,-6747,-15884,-8461,-11997], +[1,3,10943], +[0,0,0,10944,6], +[0,-5889,-9080,-9800], +[1,3,10946], +[0,10947,10948,10949,10], +[0,-3819,-15885,-15886,-15887,-15888,-15889,-15890,-15891,-15892,-3117,-8915,-4836,-15893,-15874,-15894,-15895,-15896, +-15897,-15898,-15899,-15900,-15901,-15902,-15903,-15904,-15905,-15906,-15907,-15908,-15909,-15910,-4816,-4817,-14358, +-15911,-15912,-734,-6860,-15913,-15914,-15915,-15916,-15917,-15918,-15919,-1085,-14174,-15920,-1588,-1651,-15921,-12267, +-1852,-15922,-6569,-2317,-15923,-2318,-2654,-11071,-2981,-15924,-15925, +-15926,-15927], +[0,-15928,-15929,-15930,-4646,-15931,-4837,-4838,-15932,-2932,-932,-1278,-7300,-2091,-2423,-2469,-15130,-15933,-2476, +-5627], +[0,-15934,-7300,-3944,-2318,-5511,-2476,-5173,-3527,-2410,-4591,-3160,-2316,-3161,-15935], +[1,3,10951], +[0,0,10952,10953,11], +[0,-3136,-1415,-2375,-2379,-2391,-2410], +[0,-3445,-4791,-9915,-15936,-15937,-15938,-15939,-15940,-15941,-15942,-15943,-775,-5272,-3100,-15944,-15945,-15946,-15947, +-15948,-15949,-15950,-15951,-15952,-15953,-15954,-15955,-2410,-15956,-15957,-15958,-15959,-15960,-15961,-15962,-15963, +-15964], +[1,3,10955], +[0,10956,10957,134,6], +[0,-2932,-2896], +[0,-1415,-932,-2127,-2375,-1942,-2410,-3136,-3040,-940,-967,-1419,-428,-427], +[1,3,10959], +[0,0,10960,10961,5], +[0,-3040,-3052,-2006,-2019,-2410], +[0,-2006,-8785,-3962,-15273], +[1,3,10963], +[0,10964,10965,10966,5], +[0,-15965,-15966,-15967], +[0,-15968,-15969,-15970,-15971,-15972,-15973,-15974,-15975,-15976,-15977,-15978,-15979,-15980,-15981,-15982,-15983,-15984, +-15985,-15986,-15987,-15988,-15989,-15990], +[0,-2931,-4004,-3634,-10817,-4873,-664,-507,-856,-15991,-15992,-15993,-1446,-6024,-8257], +[1,3,10968], +[0,0,287,134,5], +[1,3,10970], +[0,10971,10972,10973,5], +[0,-15994,-15995,-15996,-15997,-15998,-15999,-16000,-16001,-16002,-13406,-16003,-16004,-16005,-1699,-2641,-2564,-2650], +[0,-4049,-3037,-3040,-3052,-2006,-2019,-2469,-16006], +[0,-16007,-1713,-2455,-16008,-2006,-3098,-3160,-3100,-2316,-2955,-16009,-16010,-15932,-3475,-16011,-16012,-16013,-16014, +-16015,-16016,-16017,-16018,-16019,-16020,-16021], +[1,3,10975], +[0,0,0,10976,4], +[0,-12059,-775], +[1,3,10978], +[0,10979,10980,10981,4], +[0,-10782,-10784,-10786,-10793,-10788,-1691], +[0,-3136,-3037,-756,-1415,-1942,-2080,-2091,-2153,-2375,-2379,-2892,-2409,-2410], +[0,-5406,-4847,-856], +[1,3,10983], +[0,10984,10985,10986,5], +[0,-2650,-4225], +[0,-2466,-2006,-1122,-2019,-6859,-406,-440,-409,-407,-5323], +[0,-2006,-1122,-16022,-3862,-856,-10446], +[1,3,10988], +[0,10989,10990,10991,5], +[0,-1313,-1826,-865,-16023,-13074,-1582,-16024,-1125,-16025,-1456,-15672,-16026,-16027,-16028,-16029,-16030,-16031,-16032, +-3234,-16033,-16034,-8863], +[0,-2564,-2391,-932,-1111,-2127,-2469,-2378,-3665,-2410,-23,-3037,-16035,-16036,-16037,-16038,-1025,-4776,-4049,-16039, +-16040,-3664,-16041,-16042,-16043], +[0,-15932,-16044,-16045,-9733,-16046,-16047,-16048,-16049,-16050,-10412,-3674,-2410,-16051,-3161], +[1,3,10993], +[0,0,10994,10995,5], +[0,-50,-409,-3136,-855,-1415,-2634,-1942,-2006,-2019,-2052,-2125,-2375,-2410], +[0,-2006,-2634,-9736,-1713,-3122,-4215,-4004,-3634], +[1,3,10997], +[0,0,10998,10999,6], +[0,-262,-4066,-350,-351,-3561,-5295,-16052,-3136,-4647,-16053,-4837,-7438,-4838,-5593,-708,-740,-767,-1415,-1419,-1449, +-1534,-6518,-1942,-2127,-2140,-2142,-2214,-2645,-2318,-2375,-2410,-2466,-2476,-2483,-2486,-8160], +[0,-2476,-3944,-16054,-16055,-16056,-15150,-2645,-16057,-2939,-7580,-15151,-16058,-2410,-16059,-2363,-3162,-3214,-3095, +-3160], +[1,3,11001], +[0,94,0,11002,4], +[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-15071,-13615,-6527], +[1,3,11004], +[0,11005,11006,261,6], +[0,-16060,-4787,-3751,-1864,-1889,-2923,-2654], +[0,-25,-3195,-3180,-14337,-13397,-5322,-4066,-350,-7151,-4785,-10046,-4371,-14331,-6410,-653,-679,-729,-742,-754,-769, +-5042,-865,-866,-14335,-928,-929,-989,-990,-14338,-14333,-7897,-1588,-1651,-5036,-1699,-1805,-1839,-1852,-14332,-1863, +-1906,-1907,-14336,-12601,-11751,-7160,-2127,-2134,-2162,-3572,-2213,-14334,-2334,-3027,-11071,-2531], +[1,3,11008], +[0,0,0,11009,4], +[0,-2034,-3159,-5270,-5271,-11511,-770,-3162,-510,-2191,-11524,-11526,-7103,-16061,-16062,-2446], +[1,3,11011], +[0,0,37,288,9], +[1,3,11013], +[0,11014,11015,11016,9], +[0,-3165,-16063,-16064,-3168,-3698,-11418,-16065,-5772,-16066,-16067,-16068,-16069,-5702,-16070,-8859,-3778,-16071,-16072, +-16073,-16074,-16075,-16076,-16077,-16078,-16079,-16080,-16081,-16082,-16083,-16084,-16085,-16086,-16087,-16088,-16089, +-16090,-16091,-16092,-16093,-16094,-16095,-16096,-16097,-16098,-16099,-16100,-8863,-16101,-16102,-16103,-16104,-16105, +-16106,-16107,-16108,-16109,-402,-16110,-16111,-16112,-15748,-16113,-16114, +-16115,-16116,-16117,-16118,-15257,-485,-5674,-16119,-13751,-743,-16120,-809,-812,-16121,-834,-16122,-16123,-2761,-1025, +-14636,-1043,-2573,-16124,-1125,-1329,-1349,-9775,-16125,-11895,-1359,-5193,-16126,-16127,-1495,-16128,-16129,-16130, +-1549,-16131,-1593,-16132,-1610,-10749,-16133,-16134,-1699,-2634,-1712,-16135,-16136,-11750,-1782,-16137,-16138,-16139, +-16140,-16010,-12273,-16141,-16142,-16143,-11926,-1855,-1857, +-1867,-16144,-1885,-16145,-8504,-16146,-1984,-1994,-2006,-16147,-2019,-4988,-16148,-2025,-16149,-6620,-16150,-2042, +-16151,-2044,-16152,-16153,-16154,-2093,-2095,-2096,-16155,-16156,-2177,-2193,-4245,-16157,-2272,-2292,-16158,-2592, +-2314,-16159,-16160,-2594,-16161,-2436,-16162,-2446,-16163,-2531,-2548,-2564,-2650,-16164], +[0,-86,-14379,-16165,-16166,-16167,-16168,-16169,-16170,-10811,-16171,-3983,-5681,-3842,-407,-409,-410,-16172,-16173, +-3198,-3048,-16174,-4049,-3044,-3164,-3037,-16175,-16176,-16177,-16178,-3040,-3052,-16179,-3199,-14748,-12969,-4231, +-4204,-8200,-3664,-5329,-721,-734,-767,-772,-16180,-865,-866,-16181,-16182,-16183,-932,-16184,-16185,-1077,-1107,-1278, +-1344,-11415,-16186,-1534,-1548,-1605,-16187, +-1640,-1729,-1733,-12282,-1826,-1942,-2094,-4242,-16188,-2098,-11417,-2174,-16189,-2281,-2392,-2400,-2410,-2427,-2429, +-2466,-2469], +[0,-3161,-16011,-16017,-1713,-16190,-16010,-16191,-16192,-16193,-16194], +[1,3,11018], +[0,291,135,63,5], +[1,3,11020], +[0,11021,131,11022,5], +[0,-8863,-3617,-719,-1004,-5193,-2426,-2564], +[0,-16195,-16196,-16197,-16198,-16199,-856,-10817], +[1,3,11024], +[0,11025,11026,11027,4], +[0,-4890,-13377], +[0,-2213,-1852,-2006,-2218,-2177,-2469,-13380,-2019,-2369,-3654,-3517,-1639,-1863,-2654,-2410,-3037,-3199,-14373,-4036, +-5087,-16200,-2970], +[0,-2257,-4895,-2469,-3634,-4004,-3095,-3098,-13422,-2006,-2476,-2299,-4902], +[1,3,11029], +[0,11030,11031,11032,5], +[0,-997,-16201,-16202], +[0,-2501,-3136,-3037,-2503], +[0,-4123,-8503,-4004,-3634,-16203,-5858], +[1,3,11034], +[0,0,11035,11036,4], +[0,-526,-527,-534,-559,-562,-566,-567,-16204,-664,-16205,-13261,-796,-812,-829,-932,-943,-968,-974,-1017,-1041,-1077, +-1322,-1331,-1471,-1474,-1475,-1479,-16206,-7707,-1480,-1482,-1483,-16207,-1484,-1487,-1488,-1492,-1654,-1753,-1860, +-2125,-14439,-5471,-2174,-2416,-14648,-2437,-2501,-2505], +[0,-3576,-8897,-16208,-12613,-12449,-2363,-13616,-11594,-3162], +[1,3,11038], +[0,11039,11040,11041,5], +[0,-16209,-16210], +[0,-3040,-3052,-3804,-427,-428,-726,-932,-940,-967,-969,-16211,-16212,-1942,-2127,-2142,-2379,-2387,-2410], +[0,-16213,-16214,-16215,-2006,-5270,-5271,-3162,-16216], +[1,3,11043], +[0,0,11044,11045,6], +[0,-2006,-2034,-12566,-16217], +[0,-2034,-9021,-5270,-5271,-16218,-16219,-16220,-16221,-3161,-2006,-16222,-5269,-3209,-5922,-16223,-3682,-3970,-3110, +-9437], +[1,3,11047], +[0,11048,0,11049,6], +[0,-2954,-2934], +[0,-712,-775,-3215], +[1,3,11051], +[0,0,0,11052,9], +[0,-714,-775], +[1,3,11054], +[0,11055,11056,11057,6], +[0,-16224,-23,-25,-3412,-42,-16225,-8863,-16226,-635,-719,-755,-815,-823,-834,-999,-1026,-1077,-12417,-1343,-1496,-1683, +-1729,-1805,-1816,-1889,-1931,-1966,-2066,-16227,-2317,-2378,-2383,-2450,-2564,-8882], +[0,-4776,-3048,-3735,-16228,-2125,-2391,-2400,-2410], +[0,-3098,-3160,-2316,-16007,-2955], +[1,3,11059], +[0,0,0,11060,6], +[0,-2006,-2476,-9608,-9614,-16229,-16230], +[1,3,11062], +[0,0,11063,11064,6], +[0,-3136,-3037,-427,-428,-932,-936,-940,-958,-967,-968,-972,-978,-1107,-1415,-1942,-2125,-2127,-2130,-12925,-2142,-2375, +-2379,-2402,-2405,-7322,-2410], +[0,-16231,-8785,-16232,-16233,-16234,-16235,-16236,-16237,-3173,-16238,-3966,-4865,-3100,-3445], +[1,3,11066], +[0,0,0,11067,6], +[0,-16239,-4053,-16240,-16241,-16242,-16243,-16244,-16245,-16246,-16247,-16248,-16249,-16250,-16251,-12512,-16252,-16253, +-4055,-1456,-16254,-16244,-5495,-3100,-3214,-2410], +[1,3,11069], +[0,11070,0,73,4], +[0,-2984,-5766,-2860,-5758,-501,-523,-16255,-615,-16256,-14855,-1069,-1100,-1107,-9362,-8985,-5880,-1548,-1574,-1666, +-1705,-10270,-1875,-1878,-2060,-2115,-2160,-2177,-2194,-2297,-5764,-2400,-2446,-2518,-2555], +[1,3,11072], +[0,11073,11074,11075,4], +[0,-15224,-15226], +[0,-3037,-15229,-15230,-15231,-2125,-2892,-2410,-2469], +[0,-15227,-9668,-3690,-3445,-1348,-9780], +[1,3,11077], +[0,11078,11079,11080,4], +[0,-1313,-1852,-2922,-6570,-2924,-11918,-12278,-7772,-6475,-4835,-1341,-16257,-8859,-12284,-8860,-16258,-16259], +[0,-2391,-2469,-5672,-6568,-2410,-3037,-8321,-16260,-2832,-11347], +[0,-1954,-10425,-16261,-8427,-3113,-7646,-3634], +[1,3,11082], +[0,11083,11084,11085,6], +[0,-16262,-16263], +[0,-16264,-767,-932,-1641,-16265,-1788,-1972,-16266,-2322], +[0,-5817,-5819,-5937,-13192,-5801,-16267,-16268,-5951,-5940,-5943,-16269,-3161], +[1,3,11087], +[0,11088,11089,7,4], +[0,-16270], +[0,-879,-2410,-7768], +[1,3,11091], +[0,11092,11093,11094,10], +[0,-2006,-2019,-16271], +[0,-1992,-2125,-2388,-2376,-1967,-2410,-23,-3037,-3040,-534,-3052,-3140,-520], +[0,-2356,-3488,-16272,-2006,-3496,-3264,-3494,-13460,-11889,-4258], +[1,3,11096], +[0,0,11097,11098,5], +[0,-12182,-190,-4225,-16273,-16274,-4836,-16275,-407,-409,-410,-3269,-3732,-3661,-3037,-3040,-3052,-16276,-14827,-651, +-703,-724,-786,-932,-970,-2914,-1110,-1344,-1449,-1534,-1600,-1610,-1889,-1942,-8918,-2006,-16277,-2019,-2965,-16278, +-2044,-2140,-2144,-16279,-2193,-2213,-2317,-2318,-2334,-16280,-2379,-2392,-2410,-2411,-11708,-2466,-6859,-15519,-2469, +-16281,-2650], +[0,-2006,-3476,-9614,-6409,-16282,-4108,-12682,-12683,-12684,-4002,-4672,-9133], +[1,3,11100], +[0,11101,11102,11103,5], +[0,-4785,-12535,-462,-674,-742,-812,-14335,-1026,-1077,-1451,-1588,-1852,-1863,-2041,-2127,-2153], +[0,-16283,-16284,-4066,-350,-4062,-351,-365,-8894,-16285,-3202,-3198,-3048,-4963,-16286,-3037,-3040,-3052,-427,-428,-440, +-4837,-679,-928,-13212,-932,-969,-4981,-1771,-13593,-2006,-2019,-2125,-2132,-6483,-2299,-2400,-2410,-2466,-16287,-2469, +-2476], +[0,-12913,-5044,-10366,-16288,-5195,-16289,-16290,-4865,-16291], +[1,3,11105], +[0,11106,11107,7,5], +[0,-797,-16292,-16293], +[0,-652,-16294,-2392,-2466,-1449,-1654,-659,-932,-2127,-1110,-1942,-2378,-16295,-2468,-190,-2410,-3037,-1440,-3621,-16296, +-7273,-3244,-16297,-4062,-16298,-7274,-3266,-1602,-940,-350,-428,-351,-427], +[1,3,11109], +[0,11110,11111,11112,6], +[0,-8612,-1063,-1343,-16299], +[0,-4835,-3037,-16300,-1313,-1722,-2359], +[0,-659,-13649,-16301,-16302,-11878,-6523,-6524,-6527,-5093,-16303,-7650,-16304,-16305,-6528,-3839,-5057], +[1,3,11114], +[0,11115,11116,11117,8], +[0,-16306], +[0,-2376,-2410,-2501,-2503,-2006,-2019,-3040,-3052], +[0,-2006,-16306,-6656,-6999,-9800,-16307,-6527,-3496,-7764,-16308,-5937,-5940,-5800,-8624], +[1,3,11119], +[0,11120,11121,11122,5], +[0,-14372,-13388,-5286], +[0,-2469,-1874], +[0,-4865,-1874,-3095,-7243,-4004,-3634], +[1,3,11124], +[0,11125,11126,11127,4], +[0,-502,-668,-679,-1098,-1099,-1125,-1304,-1351,-1535,-1610,-1978,-2177,-5977], +[0,-16309,-3802,-3199,-13186,-519,-659,-1788,-11926,-1942,-1944,-11491,-2379,-2384,-2410,-2541], +[0,-16310,-687,-16311,-856,-16312,-16313,-1599,-6528,-1978,-11096,-16314], +[1,3,11129], +[0,11130,11131,278,5], +[0,-668,-2550,-16315,-2823,-16316], +[0,-3037,-16317], +[1,3,11133], +[0,11134,91,11135,5], +[0,-2177,-2823,-16316,-16318], +[0,-15627,-15629,-15630,-4864,-3634,-3636], +[1,3,11137], +[0,11138,11139,11140,4], +[0,-16319,-16316,-16318,-2823], +[0,-2973,-16320,-15626,-5769,-1870,-11468], +[0,-15627,-15629,-15630,-4864,-3634,-3636,-11890], +[1,3,11142], +[0,11143,11144,11145,4], +[0,-719,-2683,-2822,-16321], +[0,-15624,-16322,-16323,-2983], +[0,-15279,-687,-3262,-856,-15280,-15281], +[1,3,11147], +[0,11148,0,11149,4], +[0,-16324], +[0,-15279,-15625,-16325,-16326,-856,-15280,-15281], +[1,3,11151], +[0,94,11152,11153,8], +[0,-3307,-12564,-4646,-3136,-3044,-3040,-3141,-427,-428,-721,-932,-940,-967,-1344,-1415,-16327,-1942,-2006,-2034,-12566, +-2091,-2410], +[0,-2034,-3159,-5270,-5271,-16328,-16329,-3162,-5269,-3095,-6107,-7067,-14498,-11378,-2319], +[1,3,11155], +[0,11156,11157,11158,10], +[0,-2340], +[0,-16178,-1857], +[0,-10425,-6321,-3634,-7606,-2340], +[1,3,11160], +[0,11161,11162,7,6], +[0,-3195,-1864,-4247], +[0,-5694,-16224,-16330,-16331,-10097,-10098,-3037,-8523,-8200,-483,-8349,-16332,-928,-932,-16333,-1431,-1534,-1588,-2923, +-2127,-3246,-2892,-2410,-16334,-15822,-2466,-2469,-2501,-2503,-2981], +[1,3,11164], +[0,72,0,11165,6], +[0,-15279,-15625,-16335,-856,-15280,-15281], +[1,3,11167], +[0,11168,0,11169,10], +[0,-16336], +[0,-15279,-15625,-16337,-6999,-856,-15280,-15281], +[1,3,11171], +[0,11172,0,73,5], +[0,-4716,-1548,-1582,-10515], +[1,3,11174], +[0,0,11175,11176,5], +[0,-50,-190,-3035,-3664,-469,-932,-940,-1942,-2125,-2134,-2210,-2334,-2384,-2387,-2402,-2405,-2411,-2466,-16338,-16339, +-16340,-16341,-2468,-2469], +[0,-16342,-5177,-3214,-2410,-16343,-16344,-6899,-16345,-3162], +[1,3,11178], +[0,0,11179,11180,5], +[0,-50,-3037,-427,-428,-7438,-932,-940,-1003,-1654,-1942,-16346,-2134,-16347,-2210,-2402,-2405,-2410,-2466,-16338,-16339, +-16340], +[0,-5177,-16343,-9475,-3999,-6899,-16345,-659,-7085,-3578,-3162], +[1,3,11182], +[0,11183,0,11184,4], +[0,-2357], +[0,-4144,-3214,-16348,-2987,-1942,-2410], +[1,3,11186], +[0,0,0,11187,4], +[0,-3015,-16349,-1520,-15360,-10440,-1764,-1787,-5895,-7442,-1882,-2177,-7969,-3682,-16350,-16351,-11713,-4304,-2552], +[1,3,11189], +[0,0,11190,7,4], +[0,-16352,-16353,-280,-16354,-16355,-350,-4062,-351,-7155,-4007,-11348,-16356,-16357,-11752,-719,-831,-16358,-3459,-1863, +-2144,-16359,-16360], +[1,3,11192], +[0,11193,0,73,11], +[0,-2959,-2860,-5758,-8864,-5761,-523,-615,-617,-1004,-11676,-1341,-1548,-1582,-1635,-1676,-1851,-2185,-2400], +[1,3,11195], +[0,291,135,63,11], +[1,3,11197], +[0,11198,135,63,11], +[0,-3947,-231,-2944,-2900], +[1,3,11200], +[0,11201,11202,11203,10], +[0,-2564,-6860,-6415,-16361,-16362,-16363,-2292,-16364,-16365,-16122,-16366,-16367,-16368,-16369,-16370,-5038,-16371, +-5779,-5782], +[0,-1683,-16178,-3631,-2410,-3037,-16372,-3617,-16373,-8859,-16374,-12285,-16375], +[0,-16376,-16377,-14981,-16378,-16379,-3445,-16380,-16381,-16382,-11877,-16383,-16384,-16385,-16386,-16387], +[1,3,11205], +[0,11206,11207,11208,10], +[0,-1047,-1863,-1875], +[0,-11337,-3040,-825,-1802,-12566,-2410], +[0,-2034,-5270,-5271,-12578,-7084,-12579,-3159,-12567,-2006,-3162,-3160,-3167,-3843,-9472,-9474,-3827], +[1,3,11210], +[0,11211,0,11212,8], +[0,-2460,-1641,-2683,-16324], +[0,-15279,-15625,-5398,-856,-15280,-15281], +[1,3,11214], +[0,0,11215,11216,9], +[0,-16388,-15583,-21,-23,-3203,-38,-40,-16389,-16390,-3326,-3561,-528,-533,-10056,-10022,-15127,-16391,-11899,-726,-865, +-932,-956,-958,-9724,-1059,-11942,-13866,-1344,-1415,-5123,-12680,-4981,-4982,-1868,-16392,-1942,-1952,-1978,-16346, +-2127,-16393,-2134,-2140,-2144,-2184,-2410], +[0,-3821,-3822,-3823,-3825,-16394,-16395], +[1,3,11218], +[0,0,11219,11220,9], +[0,-3266,-3621,-3037,-632,-664,-1654,-1753,-2127,-2344,-2410], +[0,-16396,-2998,-16397,-7049,-5176,-16398,-15100,-16055,-15213,-6899,-11853,-16399,-16400,-12543,-16401,-7198,-10724, +-16402,-16403,-16404], +[1,3,11222], +[0,0,70,11223,9], +[0,-13351,-16405], +[1,3,11225], +[0,11226,11227,11228,9], +[0,-16406,-16407,-16408,-16409,-16410], +[0,-683,-932,-16411,-16412,-1989,-2281,-2282,-2334], +[0,-2363,-3576,-16413,-12449,-12613,-13615,-14054,-4865], +[1,3,11230], +[0,0,11231,11232,9], +[0,-664,-824,-1168,-1187,-9293,-1208,-1224,-1243,-1262,-16414,-1654], +[0,-4123,-11154,-11158,-1666,-1667,-4121], +[1,3,11234], +[0,0,0,11235,9], +[0,-3003,-7184,-5493,-11151,-16415,-8451,-3579,-8590,-3215], +[0,25,9], +[1,3,11238], +[0,11239,0,7,9], +[0,-637], +[1,3,11241], +[0,0,11242,11243,9], +[0,-1032,-2322], +[0,-3006,-10504,-10684,-16416,-11972], +[1,3,11245], +[0,0,11246,11247,9], +[0,-1654,-1003,-6851,-16417,-16418,-1818,-510], +[0,-6106,-1818,-16418,-6851], +[1,3,11249], +[0,0,0,11250,9], +[0,-16419,-14311], +[1,3,11252], +[0,11253,0,7,9], +[0,-1980,-10802,-2550,-2520,-1691,-2424,-693,-7109,-714,-2525], +[1,3,11255], +[0,11256,11257,11258,9], +[0,-1967,-16420], +[0,-21,-23,-36,-40,-41,-43,-509,-756,-915,-916,-932,-16421,-7894,-964,-969,-1449,-1654,-1788,-2006,-2019,-15571,-16422], +[0,-3839,-2034,-3010,-16423,-9682,-2006], +[1,3,11260], +[0,0,11261,7,9], +[0,-23,-40,-350,-5995,-351,-535,-571,-633,-1413,-1471,-1472,-1475,-1476,-1481,-3569,-1491,-1978,-2127,-2128,-16424,-8895, +-16425,-8896,-2140,-2491], +[1,3,11263], +[0,0,11264,7,9], +[0,-2125,-1650,-16426,-16427], +[1,3,11266], +[0,0,11267,11268,9], +[0,-21,-23,-40,-528,-557,-932,-934,-940,-958,-967,-1415,-1942], +[0,-5845,-8799,-651,-16428,-3215,-16429,-7304,-6241,-8574,-12248,-6582,-1044,-6656,-8800,-3590,-5845,-6473,-3240] ] From 8f26c1937b12ca8a1bac7a6b03e5cbe73c854866 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Wed, 11 Mar 2026 17:24:27 +0100 Subject: [PATCH 14/26] Update proxy.mts --- packages/flatpack-json/src/proxy.mts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/flatpack-json/src/proxy.mts b/packages/flatpack-json/src/proxy.mts index a46764328923..ad3bea32972f 100644 --- a/packages/flatpack-json/src/proxy.mts +++ b/packages/flatpack-json/src/proxy.mts @@ -154,7 +154,6 @@ export function proxyMap( set(key: K, value: V): this { const r = super.set(key, value); - console.log('set', key, value); onUpdate?.(this, key, value); return r; } From 88466c78fcd7a6833ecc7c810b6bce54d385bbce Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Wed, 11 Mar 2026 17:24:42 +0100 Subject: [PATCH 15/26] Add tests --- packages/flatpack-json/src/stringTable.mts | 172 ++++++++++-------- .../flatpack-json/src/stringTable.test.mts | 107 +++++++++++ 2 files changed, 201 insertions(+), 78 deletions(-) create mode 100644 packages/flatpack-json/src/stringTable.test.mts diff --git a/packages/flatpack-json/src/stringTable.mts b/packages/flatpack-json/src/stringTable.mts index dc40893dc163..fe3ac6c8f518 100644 --- a/packages/flatpack-json/src/stringTable.mts +++ b/packages/flatpack-json/src/stringTable.mts @@ -1,139 +1,155 @@ -import { Trie } from './Trie.mjs'; import { ElementType, type StringTableElement, type StringTableEntry } from './types.mjs'; export class StringTable { constructor(readonly stringTableElement: StringTableElement) {} - get(index: number): string { + get(index: number): string | undefined { if (!index) return ''; index = index < 0 ? -index : index; + if (index >= this.stringTableElement.length) return undefined; return this.#getCompoundString(index); } + *entries(): Iterable<[number, string]> { + for (let i = 1; i < this.stringTableElement.length; i++) { + yield [i, this.#getCompoundString(i)]; + } + } + + *values(): Iterable { + for (const entry of this.entries()) { + yield entry[1]; + } + } + + get size(): number { + return this.stringTableElement.length; + } + #getCompoundString(index: number, visited = new Set()): string { if (visited.has(index)) { throw new Error(`Circular reference in string table at index ${index}`); } - visited.add(index); const entry = this.stringTableElement[index]; if (typeof entry === 'string') { return entry; } if (Array.isArray(entry)) { - return entry.map((i) => this.#getCompoundString(i, visited)).join(''); + visited.add(index); + const value = entry.map((i) => this.#getCompoundString(i, visited)).join(''); + visited.delete(index); + return value; } throw new Error(`Invalid string table entry at index ${index}`); } } -interface TrieData { - idx: number; - value: string; -} - interface BuilderEntry { value: string; entry: StringTableEntry; + refCount: number; } -const useSplits = false; - export class StringTableBuilder { + splitStrings: boolean = false; private stringToIndex = new Map(); - private entries: BuilderEntry[] = [{ value: '', entry: '' }]; - private knownStrings = new Trie(); + private entries: BuilderEntry[] = [{ value: '', entry: '', refCount: 0 }]; + private availableIndexes: number[] = []; + + constructor(stringTableElement?: StringTableElement) { + if (!stringTableElement) return; + + const st = new StringTable(stringTableElement); + for (const [idx, value] of st.entries()) { + if (!idx) continue; + const entry = stringTableElement[idx] as StringTableEntry; + this.entries[idx] = { value, entry, refCount: 0 }; + if (this.stringToIndex.has(value)) continue; + if (Array.isArray(entry) && !entry.length) { + this.availableIndexes.push(idx); + continue; + } + this.stringToIndex.set(value, idx); + } + } add(str: string): number { const found = this.stringToIndex.get(str); if (found !== undefined) { + const entry = this.entries[found]; + entry.refCount++; return found; } if (!str) { return this.#append(''); } - const foundInTrie = this.knownStrings.find(str); - if (!foundInTrie) { - const idx = this.#append(str); - return idx; - } - const idx = this.#append(str); - this.#splitStrings(foundInTrie.found); - return idx; + return this.#append(str); } - get(str: string): number | undefined { + getIndex(str: string): number | undefined { return this.stringToIndex.get(str); } - #append(str: string): number { - const found = this.stringToIndex.get(str); - if (found !== undefined) { - return found; - } - const entry: BuilderEntry = { value: str, entry: str }; - const idx = this.entries.push(entry) - 1; - this.stringToIndex.set(str, idx); - this.knownStrings.add(str, { idx, value: str }); - return idx; + get(index: number): string | undefined { + const entry = this.#getEntry(index); + return entry?.value; } - #splitStrings(prefix: string): void { - if (!prefix) return; - console.log(`Splitting strings with prefix: ${prefix}`); - if (!useSplits) return; - const indexes = stringIndexesToSplit(this.knownStrings, prefix); - for (const idx of indexes) { - const entry = this.entries[idx]; - if (entry.value === prefix) { - continue; - } - this.#splitEntry(this.entries[idx], prefix); + /** + * Increments the reference count for the given index. + * @param index - The index of the string in the string table. The absolute value is used. + * @returns the new reference count for the string at the given index. + */ + addRef(index: number): number { + const entry = this.#getEntryCheckBounds(index); + const count = ++entry.refCount; + if (count === 1 && Array.isArray(entry.entry)) { + entry.entry.forEach((i) => this.addRef(i)); } + return count; } - #splitEntry(entry: BuilderEntry, prefix: string): void { - let prefixIdx = this.stringToIndex.get(prefix) ?? this.entries.length; - const suffix = entry.value.slice(prefix.length); + getRefCount(index: number): number { + const entry = this.#getEntryCheckBounds(index); + return entry.refCount; + } - const currentCost = entryCost(entry.entry); - const suffixCost = this.stringToIndex.get(suffix) ? 0 : entryCost(suffix); - const prefixCost = this.stringToIndex.get(prefix) ? 0 : entryCost(prefix); + #getEntry(index: number): BuilderEntry | undefined { + index = index < 0 ? -index : index; + return this.entries[index]; + } - if (typeof entry.entry === 'string') { - const cost = entryCost([prefixIdx, this.entries.length]) + suffixCost + prefixCost; - if (cost > currentCost) return; - prefixIdx = this.#append(prefix); - const suffixIdx = this.add(suffix); - entry.entry = [prefixIdx, suffixIdx]; - return; + #getEntryCheckBounds(index: number): BuilderEntry { + const entry = this.#getEntry(index); + if (!entry) { + throw new Error(`Invalid string table index: ${index}`); } - - const cost = entryCost([prefixIdx, ...entry.entry]) + suffixCost; - if (cost > currentCost) return; - // @todo: split concatenated entries. + return entry; } - build(): StringTableElement { - return [ElementType.StringTable, ...this.entries.slice(1).map((e) => e.entry)]; + #append(str: string): number { + const found = this.stringToIndex.get(str); + if (found !== undefined) { + return found; + } + const entry: BuilderEntry = { value: str, entry: str, refCount: 1 }; + const idx = this.availableIndexes.shift() ?? this.entries.length; + this.entries[idx] = entry; + this.stringToIndex.set(str, idx); + return idx; } -} -function entryCost(entry: StringTableEntry): number { - if (typeof entry === 'string') { - return entry.length + 2; - } - let cost = 1 + entry.length; // array overhead + index size - for (const idx of entry) { - cost += Math.log10(idx); // index size + clearUnusedEntries(): void { + for (let i = 1; i < this.entries.length; i++) { + const entry = this.entries[i]; + if (entry.refCount > 0) continue; + this.stringToIndex.delete(entry.value); + this.entries[i] = { value: '', entry: [], refCount: 0 }; + this.availableIndexes.push(i); + } } - return cost; -} -function stringIndexesToSplit(trie: Trie, prefix: string): number[] { - const result: number[] = []; - for (const { node, found } of trie.walk(prefix)) { - if (node.d?.value !== found) continue; - result.push(node.d.idx); + build(): StringTableElement { + return [ElementType.StringTable, ...this.entries.slice(1).map((e) => e.entry)]; } - return result; } diff --git a/packages/flatpack-json/src/stringTable.test.mts b/packages/flatpack-json/src/stringTable.test.mts new file mode 100644 index 000000000000..4faba46c09b2 --- /dev/null +++ b/packages/flatpack-json/src/stringTable.test.mts @@ -0,0 +1,107 @@ +import { describe, expect, test } from 'vitest'; + +import { StringTable, StringTableBuilder } from './stringTable.mjs'; +import type { StringTableElement } from './types.mjs'; + +describe('StringTable', () => { + test('StringTableBuilder', () => { + const builder = new StringTableBuilder(); + const idx1 = builder.add('apple'); + const idx2 = builder.add('banana'); + const idx3 = builder.add('apple'); + expect(idx1).toBe(idx3); + expect(builder.get(idx1)).toBe('apple'); + expect(builder.get(idx2)).toBe('banana'); + const stringTableElement = builder.build(); + const stringTable = new StringTable(stringTableElement); + expect([...stringTable.entries()]).toEqual([ + [1, 'apple'], + [2, 'banana'], + ]); + expect([...stringTable.values()]).toEqual(['apple', 'banana']); + + expect(builder.getRefCount(idx1)).toBe(2); + expect(builder.getRefCount(idx2)).toBe(1); + }); + + test('StringTableBuilder', () => { + const builder = new StringTableBuilder(); + const idx1 = builder.add('apple'); + const idx2 = builder.add('banana'); + const idx3 = builder.add('apple'); + expect(idx1).toBe(idx3); + expect(builder.get(idx1)).toBe('apple'); + expect(builder.get(idx2)).toBe('banana'); + const stringTableElement = builder.build(); + const stringTable = new StringTable(stringTableElement); + expect([...stringTable.entries()]).toEqual([ + [1, 'apple'], + [2, 'banana'], + ]); + expect([...stringTable.values()]).toEqual(['apple', 'banana']); + + expect(builder.getRefCount(idx1)).toBe(2); + expect(builder.getRefCount(idx2)).toBe(1); + }); + + test('StringTableBuilder with empty string', () => { + const builder = new StringTableBuilder(); + const idx1 = builder.add(''); + const idx2 = builder.add('banana'); + expect(idx1).toBe(1); + expect(builder.get(idx1)).toBe(''); + expect(builder.get(idx2)).toBe('banana'); + expect(builder.getIndex('')).toBe(idx1); + expect(builder.getIndex('banana')).toBe(idx2); + const stringTableElement = builder.build(); + const stringTable = new StringTable(stringTableElement); + expect([...stringTable.entries()]).toEqual([ + [1, ''], + [2, 'banana'], + ]); + expect([...stringTable.values()]).toEqual(['', 'banana']); + }); + + test('StringTableBuilder addRef/clearUnusedEntries selected', () => { + const stringTableElement: StringTableElement = [128, 'apple', 'banana', [1, 4, 2], '-', 'unused']; + const builder = new StringTableBuilder(stringTableElement); + builder.addRef(1); + builder.addRef(2); + builder.clearUnusedEntries(); + expect(builder.build()).toEqual([128, 'apple', 'banana', [], [], []]); + builder.add('orange'); + expect(builder.build()).toEqual([128, 'apple', 'banana', 'orange', [], []]); + }); + + test('StringTableBuilder addRef/clearUnusedEntries', () => { + const stringTableElement: StringTableElement = [128, 'apple', 'banana', [1, 4, 2], '-', 'unused']; + const builder = new StringTableBuilder(stringTableElement); + builder.addRef(3); + builder.clearUnusedEntries(); + const newStringTableElement = builder.build(); + expect(newStringTableElement).toEqual([128, 'apple', 'banana', [1, 4, 2], '-', []]); + }); +}); + +describe('StringTable', () => { + test('StringTable', () => { + const stringTableElement: StringTableElement = [128, 'apple', 'banana', [1, 4, 2], '-']; + const stringTable = new StringTable(stringTableElement); + expect(stringTable.get(1)).toBe('apple'); + expect(stringTable.get(2)).toBe('banana'); + expect(stringTable.get(3)).toBe('apple-banana'); + expect(stringTable.get(4)).toBe('-'); + }); + + test('StringTable circular reference', () => { + const stringTableElement: StringTableElement = [128, 'apple', 'banana', [1, 3, 2], '-']; + const stringTable = new StringTable(stringTableElement); + expect(() => stringTable.get(3)).toThrow('Circular reference in string table at index 3'); + }); + + test('StringTable compound used multiple times', () => { + const stringTableElement: StringTableElement = [128, 'apple', 'banana', [1, 4, 2], '-', [3, 4, 3, 4, 3]]; + const stringTable = new StringTable(stringTableElement); + expect(stringTable.get(5)).toBe('apple-banana-apple-banana-apple-banana'); + }); +}); From 3c38edd97dea3c10099135992c0ecc841c0357ef Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Wed, 11 Mar 2026 18:21:25 +0100 Subject: [PATCH 16/26] sort string table by refcount --- .../fixtures/.npm-packages-info-v2.json | 19244 ++++++++-------- .../src/__snapshots__/storage.test.mts.snap | 88 +- .../flatpack-json/src/optimizeFlatpacked.mts | 15 +- packages/flatpack-json/src/stringTable.mts | 42 +- .../flatpack-json/src/stringTable.test.mts | 41 + 5 files changed, 9641 insertions(+), 9789 deletions(-) diff --git a/packages/flatpack-json/fixtures/.npm-packages-info-v2.json b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json index 87d0fd123795..472faec6a36d 100644 --- a/packages/flatpack-json/fixtures/.npm-packages-info-v2.json +++ b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json @@ -1,32 +1,1012 @@ [ "Flatpack JSON v2", -[128,"@alifd/next","@angular-devkit/core","@angular-devkit/schematics","@angular/animations","@angular/cdk", -"@angular/common","@angular/compiler","@angular/compiler-cli","@angular/core","@angular/forms","@angular/http", -"@angular/material","@angular/platform-browser","@angular/platform-browser-dynamic","@angular/platform-server", -"@angular/router","@ant-design/react-native","@ant-design/web3-common","@ant-design/web3-icons","@auth/sveltekit", -"@babel/cli","@babel/code-frame","@babel/core","@babel/helper-plugin-utils","@babel/parser", -"@babel/plugin-proposal-class-properties","@11ty/eleventy","@adobe/css-tools","@api-components/api-method-documentation", -"@apollo/client","@asyncapi/generator-react-sdk","@babel/eslint-parser","@babel/plugin-proposal-decorators", -"@babel/plugin-proposal-export-default-from","@babel/plugin-proposal-export-namespace-from", -"@babel/plugin-proposal-object-rest-spread","@babel/plugin-syntax-dynamic-import","@babel/plugin-transform-runtime", -"@babel/polyfill","@babel/preset-env","@babel/preset-react","@babel/preset-typescript","@babel/register", -"@babel/runtime","@babel/runtime-corejs2","@babel/traverse","@babel/types","@biz-dev-ops/md-docs","@bwcr_/winston-loki", -"@changesets/cli","@chatscope/chat-ui-kit-react","@ckeditor/ckeditor5-adapter-ckfinder","@ckeditor/ckeditor5-angular", -"@ckeditor/ckeditor5-autoformat","@ckeditor/ckeditor5-basic-styles","@ckeditor/ckeditor5-block-quote", -"@ckeditor/ckeditor5-build-balloon","@ckeditor/ckeditor5-build-balloon-block","@ckeditor/ckeditor5-build-classic", -"@ckeditor/ckeditor5-build-decoupled-document","@ckeditor/ckeditor5-build-inline","@ckeditor/ckeditor5-ckbox", -"@ckeditor/ckeditor5-ckfinder", -"@ckeditor/ckeditor5-clipboard","@ckeditor/ckeditor5-cloud-services","@ckeditor/ckeditor5-core", -"@ckeditor/ckeditor5-easy-image","@ckeditor/ckeditor5-engine","@ckeditor/ckeditor5-essentials", -"@ckeditor/ckeditor5-heading","@ckeditor/ckeditor5-image","@ckeditor/ckeditor5-indent","@ckeditor/ckeditor5-link", -"@ckeditor/ckeditor5-list","@ckeditor/ckeditor5-media-embed","@ckeditor/ckeditor5-paragraph", -"@ckeditor/ckeditor5-paste-from-office","@ckeditor/ckeditor5-react","@ckeditor/ckeditor5-table", -"@ckeditor/ckeditor5-typing","@ckeditor/ckeditor5-ui","@ckeditor/ckeditor5-upload","@ckeditor/ckeditor5-utils", -"@ckeditor/ckeditor5-vue","@ckeditor/ckeditor5-widget","@commitlint/cli","@compodoc/compodoc","@comunica/core", -"@contenthook/browser","@contenthook/cli","@contenthook/node","@coreui/coreui","@csstools/css-parser-algorithms", -"@csstools/css-tokenizer","@csstools/media-query-list-parser","@csstools/postcss-is-pseudo-class", -"@csstools/postcss-progressive-custom-properties","@csstools/selector-specificity","@cucumber/cucumber", -"@deven-org/documentation-skeleton","@devtea2026/aspernatur-ea-non-porro","@devtea2026/consectetur-ab-unde-quisquam", +[128,"eslint","typescript","mocha","prettier","@types/node","react","rimraf","jest","eslint-plugin-import","husky", +"@babel/core","eslint-config-prettier","chai","rollup","nyc","semver","lint-staged","webpack", +"@typescript-eslint/parser","chalk","@babel/preset-env","@typescript-eslint/eslint-plugin","lodash","css", +"eslint-plugin-prettier","cross-env","sinon","glob","@types/jest","vitest","html","gulp","ts-node","xo","debug", +"react-dom","cli","postcss","tape","express","fs-extra","documentation","c8","tslib","javascript","backend", +"@types/react","@babel/cli","@commitlint/cli","@eslint/js","ava","frontend","framework","grunt","coveralls","globals", +"ts-jest","commander","async","browserify","testing","@rollup/plugin-node-resolve","@commitlint/config-conventional", +"eslint-plugin-react","npm-run-all","istanbul","eslint-plugin-promise","gulpplugin","through2","vinyl","@types/mocha", +"mkdirp","vue","parser","eslint-plugin-node","test","@rollup/plugin-commonjs","jsdom","karma","sass","should","tsd", +"eslint-config-standard","typescript-eslint","tap","babel-jest","esbuild","minimist","@types/react-dom","@babel/runtime", +"babel-eslint","minimatch","webpack-cli","browser","mobile","babel-loader","standard","yargs","markdown","api","js-yaml", +"ui","http","vite","@vitest/coverage-v8","react-component","plugin","json","@types/chai","benchmark","request", +"uglify-js","web","bluebird","eslint-plugin-n","generator","chokidar","execa","jshint","@testing-library/react", +"prop-types","semantic-release","supertest","typedoc","uuid","resolve","components", +"file","eslint-plugin-standard","source-map","component","@babel/preset-react","colors","standard-version","unified", +"util","@babel/preset-typescript","karma-chrome-launcher","strip-ansi","@types/semver","css-loader","plugin-error", +"@types/lodash","node","eslint-plugin-jest","remark-cli","source-map-support","eslint-plugin-jsx-a11y","codecov","del", +"eslint-plugin-unicorn","open","@testing-library/jest-dom","style-loader","tsx","@babel/eslint-parser","autoprefixer", +"core-js","npm","puppeteer","tmp","babel-core","body-parser","grunt-cli","jsdoc","parse","picocolors","string", +"@types/debug","@babel/plugin-transform-runtime","promise","tsup","webpack-dev-server","@babel/register", +"grunt-contrib-jshint","jest-environment-jsdom","terser","terminal","babel-cli","eslint-plugin-jsdoc","proxyquire", +"stylelint","ajv","angular","eslint-config-airbnb-base","eslint-plugin-react-hooks","karma-mocha","node-fetch", +"safe-publish-latest","sinon-chai","@types/fs-extra", +"front-end","text","axios","inquirer","jasmine","nock","readable-stream","tslint","url","console","acorn","diff", +"globby","ws","@rollup/plugin-terser","@rollup/plugin-babel","utility","@babel/plugin-proposal-class-properties", +"dotenv","eslint-plugin-markdown","in-publish","karma-firefox-launcher","ts-loader","type-fest","server","color", +"connect","less","markdown-it","svelte","which","postcss-plugin","lint","cross-spawn","fast-glob","marked","minify", +"rollup-plugin-terser","style","cheerio","del-cli","moment","pre-commit","react-native","type-coverage", +"@rollup/plugin-replace","@rollup/plugin-json","chai-as-promised","grunt-contrib-clean","object-assign","next","ansi", +"@ljharb/eslint-config","@swc/core","eslint-import-resolver-typescript","handlebars","jquery","path","underscore", +"@types/hast","stream","babel-preset-env","classnames","eslint-config-airbnb", +"eslint-plugin-mocha","fancy-log","log","memfs","mime","remark-preset-wooorm","yaml","zod","@types/express","svg","dom", +"shell","gruntplugin","auto-changelog","babel-plugin-add-module-exports","file-loader","json5","npmignore","remark", +"rollup-plugin-babel","shelljs","template","js","@types/sinon","assert","babel","babel-runtime","ckeditor5", +"concurrently","nodemon","process","react-test-renderer","slash","undici","@eslint/eslintrc","ios","image","check", +"buffer","cz-conventional-changelog","magic-string","@semantic-release/changelog","@semantic-release/git","command-line", +"@babel/plugin-proposal-object-rest-spread","browserslist","clsx","fs","grunt-contrib-watch","rollup-plugin-typescript2", +"app","@testing-library/user-event","coffeescript","concat-stream","gulp-rename","gulp-sourcemaps","tar","tinyglobby", +"@arethetypeswrong/cli","@stylistic/eslint-plugin","command","mock","@ckeditor/ckeditor5-core","@testing-library/dom", +"@types/estree","babel-preset-es2015","canvas","deepmerge","graceful-fs","ora","picomatch","redux","size-limit", +"@biomejs/biome","@rollup/plugin-typescript","schema","@ckeditor/ckeditor5-utils","babel-plugin-istanbul","code", +"config","cookie","ejs","expect","find-up","gh-pages","grunt-contrib-uglify","html-webpack-plugin","load-grunt-tasks", +"mime-types","npm-run-all2","regenerator-runtime","rollup-plugin-node-resolve","unist-util-visit","es6","ecmascript", +"client","input","nodejs","eslintplugin","android","middleware","@changesets/cli","grunt-contrib-nodeunit","gulp-mocha", +"gulp-util","micromatch","progress","ast","@types/eslint","module","@playwright/test","compression","cors","cssnano", +"esm","graphql","highlight.js","jasmine-core","mini-css-extract-plugin","mongodb","qunit","rehype","release-it","tempy", +"tsdown","modules","library","eslint-plugin", +"logging","conventional-changelog-cli","cosmiconfig","got","https","karma-jasmine","nextjs","playwright","prompts", +"serve-static","shx","string-width","stylus","terser-webpack-plugin","@babel/plugin-transform-modules-commonjs","docs", +"syntax","unit","git","database","lodash-modularized","@babel/parser","@ckeditor/ckeditor5-ui","cspell", +"escape-string-regexp","event-stream","events","expect.js","flow-bin","http-server","karma-mocha-reporter","np", +"requirejs","rollup-plugin-dts","touch","@types/yargs","editor","@types/js-yaml","rest","validation","@types/mdast", +"require","object","directory","@ckeditor/ckeditor5-engine","babel-register","camelcase","enzyme","extend","koa", +"lru-cache","pretty-quick","prismjs","react-is","url-loader","validator","ts","design","router","cache","scss","tty", +"es2015","stringify", +"hast","@babel/polyfill","@babel/types","@microsoft/api-extractor","ansi-colors","bootstrap","bytes","coffee-script", +"common-tags","convert-source-map","electron","iconv-lite","ignore","lodash-es","meow","nopt","postcss-value-parser", +"qs","rollup-plugin-commonjs","sass-loader","supports-color","through","publint","@types/glob","entities","runner", +"unicode","@types/ws","node.js","convert","package","data","karma-plugin","ci-info","commitizen","cypress","escape-html", +"eslint-plugin-flowtype","get-port","get-stream","htmlparser2","jest-cli","kleur","merge","path-exists","postcss-loader", +"preact","prompt","rxjs","safe-buffer","@eslint/compat","github-slugger","animation","native","vfile","escape", +"promises","@babel/code-frame","@vitejs/plugin-react","clone","copy-webpack-plugin","dedent","figures", +"grunt-contrib-copy", +"grunt-eslint","gulp-eslint","immutable","inherits","jiti","karma-webpack","markdownlint-cli","mustache","pretty-bytes", +"q","remark-gfm","webpack-bundle-analyzer","webpack-merge","yargs-parser","@types/webpack","reactjs","es-toolkit", +"@eslint/markdown","@rollup/plugin-alias","web framework","match","encoding","validate","fast","transform","xml","unist", +"@babel/traverse","clean-css","conventional-changelog","dayjs","enquirer","eslint-plugin-eslint-plugin","github", +"grunt-bump","is-ci","mock-fs","ms","mysql","optimist","p-map","path-to-regexp","pluralize","postcss-import", +"postcss-selector-parser","react-router-dom","stylelint-config-standard","tailwindcss","tap-spec","tshy","vinyl-fs", +"vinyl-sourcemaps-apply","winston","xml2js","format","polyfill","styles","generate","form","swagger","automation","tdd", +"performance","compress", +"type","linter","@babel/plugin-proposal-decorators","@ckeditor/ckeditor5-typing","babel-polyfill","cookie-parser", +"cpy-cli","espree","grunt-contrib-connect","gulp-babel","http-proxy","jscs","karma-coverage","mocha-lcov-reporter", +"node-gyp","object.assign","opener","parse5","pathe","pg","proxy","read","reflect-metadata","remark-parse","simple-git", +"strip-json-comments","svgo","temp","update-notifier","warning","watch","compiler","preprocessor","bdd", +"@ckeditor/ckeditor5-icons","tool","time","args","@types/jsdom","html5","formatting","eslint-config-webpack", +"@semantic-release/npm","checker","optimize","png","hast-util","@sinonjs/fake-timers","cli-table3","copyfiles","crypto", +"delay","form-data","grunt-contrib-concat","grunt-npm","gulp-concat","gulp-uglify","http-errors","is","json-schema", +"jsonc-parser","karma-sourcemap-loader","log-symbols","nanoid", +"phantomjs-prebuilt","portfinder","pug","ramda","resolve-from","rollup-plugin-visualizer","schema-utils","xterm", +"pretty","responsive","types","@types/micromatch","@types/json-schema","w3c","simple","find","await","import","error", +"remove","files","gulpfriendly","@types/picomatch","@jest/types","@nx/devkit","@octokit/rest","babel-preset-react", +"bindings","eslint-doc-generator","fresh","gray-matter","gulp-format-md","hasown","html-entities","invariant", +"karma-chai","karma-spec-reporter","microbundle","morgan","nodeunit","once","path-browserify","postcss-cli", +"pretty-format","raf","raw-loader","react-refresh","react-transition-group","redis","sharp","superagent","tree-kill", +"yarn","dependencies","development","authentication","hooks","openapi","@types/uuid","layout","doc","@types/unist", +"query","tinyhttp", +"utils","@size-limit/preset-small-lib","shim","colour","array","copy","detect","security","build","compile", +"@types/tape","version","@babel/helper-plugin-utils","@eslint-community/eslint-utils","airtap","ansi-styles","aud", +"babel-preset-airbnb","csstype","eslint-plugin-html","eslint-plugin-security","filesize","hast-util-to-string", +"https-proxy-agent","ini","install","joi","karma-rollup-preprocessor","loader-utils","make-dir","ncp","parseurl", +"rehype-stringify","shell-quote","sirv","slugify","storybook","walk","watchify","xhr","xtend","icon","templates", +"@types/benchmark","logger","@semantic-release/github","@types/tmp","@types/compression","table","TypeScript", +"@types/chai-as-promised","@npmcli/eslint-config","@npmcli/template-oss","@types/babel__core","@rollup/pluginutils", +"functional","rgb","@types/minimist","cli-app","parsing","windows","optimise","search","filter", +"db","publish","rollup-plugin","@typescript-eslint/utils","after","ajv-formats","arg", +"babel-plugin-transform-object-rest-spread","babel-plugin-transform-react-remove-prop-types","babelify", +"copy-to-clipboard","csv","deep-equal","enhanced-resolve","eslint-config-gulp","eslint-plugin-babel", +"eslint-plugin-regexp","eslint-plugin-vue","estree-walker","expect-type","father","grunt-shell","gulp-header", +"gulp-jshint","hosted-git-info","indent-string","jest-environment-node","jsdoc-to-markdown","jsonschema","jsonwebtoken", +"karma-sauce-launcher","knip","msw","nan","orm","outdent","pngjs","postcss-preset-env","remark-rehype", +"rollup-plugin-uglify","send","serve","socket.io","source-map-js","split","sqlite3","ts-morph","tsconfig-paths", +"typedoc-plugin-markdown","vitepress","whatwg-fetch","neostandard","@popperjs/core","wysiwyg","@types/prompts", +"coverage","task","wait","CLI","event","environment","@babel/node","changelog","loader", +"auth","encode","minifier","delete","map","binary","recursive","realtime","@npmcli/arborist","ansi-escapes","archiver", +"assume","babylon","cac","content-type","eslint-plugin-compat","etag","exit","express-session", +"extract-text-webpack-plugin","global","grunt-contrib-internal","gulp-plugin-extras","hono","is-wsl","jest-diff", +"jest-util","json-loader","karma-browserify","karma-safari-launcher","mdast-util-from-markdown","moment-timezone", +"node-addon-api","oauth","p-event","phantomjs","postcss-load-config","postcss-scss","prettier-plugin-packagejson", +"pretty-ms","react-redux","react-router","replace-ext","rollup-plugin-cleanup","rollup-plugin-license", +"rollup-plugin-replace","rollup-pluginutils","signal-exit","source-map-loader","split2","styled-components","sugarss", +"tar-stream","text-table","toml","vinyl-source-stream","vue-router","websocket","wrap-ansi","@babel/generator","website", +"@web/test-runner","ckeditor 5","rich text", +"@types/markdown-it","vue3","@types/graceful-fs","forms","rollup-plugin-copy","term","ascii","ui-kit","jsx","fetch", +"remark-frontmatter","shiki","builder","@release-it/conventional-changelog","commonjs", +"eslint-plugin-simple-import-sort","@vue/test-utils","integration","static","zip","option","value","parallel", +"serialize","random","name","@vitest/eslint-plugin","vite-plugin-dts","ES6","@semantic-release/commit-analyzer","render", +"@types/minimatch","postgres","mdast","webdriver","@babel/plugin-proposal-export-namespace-from", +"@ckeditor/ckeditor5-cloud-services","@ckeditor/ckeditor5-image","@nx/js","antd","aws-sdk", +"babel-plugin-transform-runtime","browser-sync","call-bind","cli-table","co","content-disposition","cordova","doctoc", +"dotenv-expand","doxdox","enzyme-adapter-react-16","es6-promise","eslint-config-airbnb-typescript","eslint-visitor-keys", +"eventemitter3","fast-deep-equal","finalhandler","for-each","formidable","graphql-tag","grunt-browserify","grunt-karma", +"grunt-mocha-test", +"gulp-clean-css","gulp-istanbul","gulp-replace","hoist-non-react-statics","identity-obj-proxy","immer","is-stream", +"js-base64","js-beautify","jshint-stylish","map-stream","markdown-it-anchor","markdown-toc","markdownlint", +"mocha-junit-reporter","npm-package-arg","nunjucks","on-finished","pixelmatch","plur","proc-log","punycode", +"querystring","queue","regenerate","rollup-plugin-buble","run-sequence","scheduler","type-is","vary","vue-eslint-parser", +"wordwrap","yauzl","zuul","rolldown","@babel/plugin-syntax-jsx","material design","@types/prop-types", +"@babel/plugin-transform-flow-strip-types","simple-git-hooks","md","comments","ckeditor","editing","@stackblitz/sdk", +"@vitest/ui","@types/prismjs","@babel/plugin-external-helpers","icons","@vitest/coverage-istanbul","scaffold","yeoman", +"@swc/helpers","date","@types/node-fetch","@types/supertest","mui","store","a11y","@storybook/react", +"@vitejs/plugin-vue","regex","pattern","reporter", +"@types/cross-spawn","@webpack-contrib/eslint-config-webpack","extract","folder","sanitize","streams","utilities", +"uglify","@commitlint/config-angular","devlop","memory","tree","selenium","react-native-component","rehype-plugin", +"@babel/plugin-proposal-export-default-from","@babel/plugin-syntax-dynamic-import","@ckeditor/ckeditor5-clipboard", +"@ckeditor/ckeditor5-heading","@ckeditor/ckeditor5-list","accepts","ansi-regex","arrify","babel-plugin-module-resolver", +"babel-preset-stage-0","beautify-benchmark","bower","buble","caniuse-lite","clipboard","codemirror","colorette", +"commitlint","configstore","cron","css-tree","d3","date-fns","depd","dtslint","each","eslint-plugin-tsdoc", +"eslint-scope","esprima","estraverse","evalmd","extract-zip","fastify","grunt-conventional-changelog","gulp-filter", +"gulp-if","gzip-size","hastscript","he","i18n","i18next","inflection","is-glob","is-plain-obj","is-plain-object", +"isarray","jest-junit","jest-watch-typeahead","jsesc", +"json-stringify-safe","JSONStream","karma-ie-launcher","lab","less-loader","leven","livereload","lockfile-lint", +"lodash.clonedeep","markdown-it-emoji","markdown-table","material-ui","md5","mdast-util-to-hast","memory-fs", +"merge-stream","methods","mockdate","mongoose","node-forge","npm-package-json-lint","object.entries","p-queue","pify", +"pkg-up","prettier-plugin-organize-imports","range-parser","react-copy-to-clipboard","remarkable", +"resize-observer-polyfill","rollup-plugin-json","sax","selenium-webdriver","serialize-javascript","serve-index", +"server-destroy","space-separated-tokens","start-server-and-test","three","tinybench","tinycolor2","tough-cookie", +"uglifyjs-webpack-plugin","uvu","vue-loader","walk-sync","ua-parser-js","react-error-boundary", +"@jridgewell/trace-mapping","@types/resolve","@babel/helper-module-imports","@babel/plugin-transform-class-properties", +"@babel/plugin-transform-typescript","toolkit","tinyexec","lunr","properties","tests","@types/mime-types", +"@emotion/react","API","font","configuration","bundle", +"Monorepo","spec","@storybook/addon-links","network","@vitest/browser","unist-util-visit-parents","whatwg","findup", +"regexp","restful","cloud","assertion","@sindresorhus/tsconfig","s3","storage","@babel/preset-flow","view","postgresql", +"parents","pdf","line","argument","strip","bash","engine","@semantic-release/release-notes-generator","@swc/jest", +"property","character","templating","upload","enforce","entity","es5","quality","code style", +"@typescript/native-preview","replace","exec","local","commonmark","jpeg","application","@types/jasmine", +"karma-launcher","@ckeditor/ckeditor5-link","@ckeditor/ckeditor5-paragraph","@ckeditor/ckeditor5-widget", +"@istanbuljs/nyc-config-typescript","@jsonforms/core","@npmcli/run-script","abort-controller","argparse","axe-core", +"babel-plugin-external-helpers","babel-plugin-transform-es2015-modules-commonjs","babel-types","boxen","bunyan", +"consola","conventional-changelog-conventionalcommits","cookie-signature","css-minimizer-webpack-plugin", +"dependency-check", +"detect-indent","download","encodeurl","es-check","eslint-config-oclif","eslint-config-react-app","eslint-config-xo", +"eslint-plugin-jsonc","fast-check","faucet","file-type","fixturify","flux","get-stdin","get-tsconfig","grunt-jscs", +"gulp-less","happy-dom","has-symbols","jackspeak","jest-worker","karma-sinon","lodash.merge","markdown-it-container", +"mobx","monitor","node-sass","nprogress","nx","object-inspect","open-cli","opn","pacote","path-is-absolute","pino", +"pinst","plist","pump","rc-util","react-dev-utils","readline","recast","rollup-plugin-node-globals", +"rollup-plugin-sourcemaps","rollup-plugin-typescript","rsvp","socket.io-client","statuses","strip-bom","tailwind", +"tapable","tar-fs","tslint-config-prettier","uglify-es","unbuild","underscore.string","validate-npm-package-name","web3", +"xmlbuilder","xss","hast-util-from-html","astro","@types/enzyme","@types/lodash-es", +"transpiler","babel-plugin","stylesheet","@web/test-runner-playwright","@babel/plugin-transform-react-jsx", +"contentEditable","yup","@types/sinon-chai","tools","@aws-sdk/client-s3","sqlite","babel-plugin-macros","css-in-js", +"esbuild-loader","menu","stdout","jsonforms","renderengine","uischema","customization","@inquirer/prompts","list", +"state","formatter","JSON","Web","Node","argv","res","accessibility","@xmldom/xmldom","rollup-plugin-postcss","fdir", +"@hono/node-server","reference","webdriverio","patch-package","@opentelemetry/api","@jest/globals","vuejs","angularjs", +"css3","background","service","saucelabs","256","@babel/plugin-proposal-optional-chaining", +"@babel/plugin-transform-object-assign","push","@colors/colors","aws","function","serve-handler","minification", +"rollup-plugin-esbuild","deep","child","@types/prettier","clean","tag","env","mongo","cross-platform","cmd", +"structure","drag","semaphore","nosql","@eslint-community/eslint-plugin-eslint-comments","gif","size","readable", +"file system","@types/rimraf","vector","manager","@types/diff","desktop","headless","slider","@vuepress/types", +"@ckeditor/ckeditor5-adapter-ckfinder","@ckeditor/ckeditor5-autoformat","@ckeditor/ckeditor5-basic-styles", +"@ckeditor/ckeditor5-block-quote","@ckeditor/ckeditor5-ckbox","@ckeditor/ckeditor5-ckfinder", +"@ckeditor/ckeditor5-easy-image","@ckeditor/ckeditor5-essentials","@ckeditor/ckeditor5-indent", +"@ckeditor/ckeditor5-media-embed","@ckeditor/ckeditor5-paste-from-office","@ckeditor/ckeditor5-table", +"@sveltejs/vite-plugin-svelte","acorn-walk","ansis","apidoc","async-listen","async-retry", +"babel-plugin-transform-class-properties","babel-template","basic-auth","bcrypt","brfs","builtin-modules", +"bundle-collapser","busboy","change-case","changelogen","cli-color","columnify","connect-history-api-fallback", +"depcheck","dirty-chai","docco","dot","dumi","duplexer","eclint","ember-cli","es-value-fixtures","es5-ext","es5-shim", +"eslint-config-unjs","eslint-config-xo-lass","eslint-plugin-eslint-comments","eslint-plugin-testing-library", +"eslint-remote-tester", +"find-cache-dir","findup-sync","firebase","flat","follow-redirects","glob-parent","grunt-auto-release", +"grunt-conventional-github-releaser","grunt-simple-mocha","gulp-postcss","gulp-sass","gulp-typescript","hallmark", +"hast-util-to-html","history","html-loader","html-minifier","html-to-text","ionic","jest-canvas-mock", +"karma-browserstack-launcher","karma-detect-browsers","lerna","lodash.template","log-update","loglevel","loose-envify", +"matcha","micromark","mlly","mock-require","mock-stdin","mockery","multer","multimatch","mz","node-html-parser", +"node-notifier","normalize-path","object-keys","os","performance-now","polished","postcss-flexbugs-fixes", +"postcss-nested","postcss-safe-parser","power-assert","property-information","qrcode-terminal","qunitjs","raw-body","rc", +"react-lifecycles-compat","rewire","seedrandom","shallowequal","ssri","stream-assert","stylelint-order","test-runner", +"time-grunt","tiny-lr","typings","uid-safe", +"uiw","untildify","vows","vue-template-compiler","webpack-sources","yeoman-generator","@testing-library/react-hooks", +"anser","zustand","@mui/utils","comma-separated-tokens","hast-util-is-element","icss-utils","tsparticles", +"@vitest/browser-playwright","@types/react-transition-group","core","scaffolding","jwt","luxon","markdown-it-attrs", +"package-manager-detector","operational transformation","ot","real-time","os-name","sass-embedded","selector","custom", +"variables","read-package-up","lightningcss","installed-check","@typescript-eslint/types","@types/ms","google", +"interface","stdin","theme","modal","@types/cors","@npmcli/package-json","Backend","@storybook/addon-actions", +"@size-limit/file","e2e","end-to-end","@types/warning","jest-image-snapshot","kcd-scripts","aria-query","jest-mock", +"particle","uikit","react-ui","flags","content","archive","job","vue-tsc","@types/tar","http2","azure","ajax", +"hash","asynchronous","number","decode","es2017","pretty-hrtime","converter","@faker-js/faker","std-env","rm","select", +"array-back","gzip","ponyfill","mocks","visualization","batch","compare","is-path-inside","filesystem","collection", +"dev","gitlab","unist-builder","@types/vinyl","safe-stable-stringify","oxlint","@ljharb/tsconfig","eslintconfig", +"verify","hint","rules","bumpp","bin","pkg-pr-new","stub","jpg","parent","@modelcontextprotocol/sdk","concat","make", +"inline","@ungap/structured-clone","safe","virtual","element","chrome","package.json","link","reload","scroll","runtime", +"webdriverjs","carousel","gallery","antora","static site","web publishing","decap-cms","@ckeditor/ckeditor5-upload", +"@csstools/css-parser-algorithms","@csstools/css-tokenizer","@emotion/styled","@microsoft/tsdoc", +"@vue/eslint-config-typescript","array.prototype.flatmap","babel-helper-fixtures","babel-plugin-dynamic-import-node", +"babel-plugin-lodash","babel-plugin-transform-es2015-block-scoping","babel-plugin-transform-es2015-template-literals", +"babel-preset-react-app","base64-js","blanket","broccoli-test-helper","bson","buffer-equal", +"case-sensitive-paths-webpack-plugin","clean-webpack-plugin","clear-module","cli-cursor","crypto-browserify","cucumber", +"dargs","dateformat","debounce","decamelize","deep-extend","detect-port","docusaurus","dom-helpers","emotion", +"end-of-stream","envinfo","es6-shim","eslint-config-semistandard","eslint-loader","eslint-plugin-es5","eventemitter2", +"fast-xml-parser","fbjs","figlet","fixpack","fork-ts-checker-webpack-plugin","front-matter","fs-jetpack", +"functions-have-names","fuse.js","fuzzy","gaze","get-package-type","grunt-saucelabs","gulp-autoprefixer","hast-util-raw", +"hast-util-select","hoek","image-size","import-local","ionicons","is-installed-globally","is-promise","isobject", +"itwcw-package-analytics","jade","jest-resolve","karma-edge-launcher","karma-qunit","listr2", +"lodash.camelcase","lodash.defaults","lodash.isequal","lodash.memoize","lodash.throttle","lws","memorystream", +"mocha-headless-chrome","mock-property","mssql","mysql2","needle","nodemailer","npm-packlist","npm-registry-fetch", +"npmcli","oas","object-hash","pako","passport","postcss-custom-properties","promise-polyfill","promises-aplus-tests", +"protobufjs","random-words","react-intl","read-pkg","rehype-autolink-headings","remark-preset-github","replace-in-file", +"request-promise","rfdc","rollup-plugin-node-builtins","run-series","sanitize-html","serve-favicon","snazzy", +"stylus-loader","systemjs","testdouble","throttle-debounce","unzip","utf8","validate-commit-msg","vinyl-buffer","vuex", +"wd","webpack-dev-middleware","webpack-node-externals","winston-transport","write-file-atomic","xlsx","yo", +"browserstack","css.escape","csso","enzyme-to-json","ink-docstrap","vuepress","@mui/types","pinia","@inquirer/type", +"borp","@types/react-test-renderer", +"@types/react-copy-to-clipboard","@jridgewell/sourcemap-codec","@standard-schema/spec","material", +"metro-react-native-babel-preset","ant","import-meta-resolve","@jridgewell/remapping","harmony","@sindresorhus/slugify", +"@types/bytes","stringifier","@typescript-eslint/scope-manager","@babel/runtime-corejs3","mri","p-limit","collaboration", +"collaborative","decache","bundlewatch","@types/shelljs","sitemap","stylis","@wojtekmaj/enzyme-adapter-react-17","REST", +"@types/jsonwebtoken","@ctrl/tinycolor","ask","base","confirm","wrap","@swc/cli","@jest/transform","notification", +"prism-react-renderer","spy","readme","Angular","React","Jest","Cypress","oclif","command line","management", +"remark-github","remark-toc","grid","inspect","upath","@storybook/addon-essentials","@vueuse/core","web-components", +"@types/jest-axe","@types/jquery","jest-axe","lz-string","xhr-mock","sade","web components","istanbul-lib-report", +"images","img","password","particles.js", +"particles","jsparticles","xparticles","particles-js","particles-ts","particles.ts","web-design","webdesign","animated", +"jose","extension","uiw-react","react.js","estree-util-to-js","@types/pluralize","blockchain","nestjs","flow", +"client-side","remark-stringify","env-paths","cli-progress","babel-minify","commit","package-json","memoizee", +"babel-plugin-transform-replace-object-assign","model","di","platform","hmr","write","promises-aplus","asset", +"broccoli-plugin","acorn-jsx","equal","es","call-bound","graphics","pkg-types","domhandler","@types/react-is","language", +"multiline","normalize","emit","defu","cookies","qrcode","@types/bun","spawn","optimizer","optimisation","pad","sort", +"arguments","eslint-plugin-yml","assign","key","@vue/compiler-sfc","all-contributors-cli","JavaScript","drop", +"expand","proper-lockfile","editorconfig","installer","sort-package-json","has","expression","doctrine","export", +"@changesets/changelog-github","eslint-plugin-import-x","@types/babel__code-frame","from","sanitization","tap-parser", +"deploy","deployment","fake","get","minipass","min","linux","sprite","streaming","@types/ungap__structured-clone", +"mdast-util-mdx-jsx","attribute","agent","next.js","internationalization","interactive","phone","make-fetch-happen", +"word","document","microservice","monitoring","@types/selenium-webdriver","flow-copy-source","selectors", +"tslint-eslint-rules","es-module-lexer","@angular/compiler","@angular/compiler-cli","@angular/core", +"@ant-design/web3-common","@ant-design/web3-icons","@emotion/css","@inquirer/core","@microsoft/tsdoc-config", +"@mswjs/interceptors","@nx/eslint","@oclif/core","@reduxjs/toolkit","@svgr/webpack","@tinyhttp/app", +"@tsparticles/engine","adm-zip","apollo-cache-inmemory","apollo-client","apollo-link-http","async-validator", +"babel-generator","babel-helper-plugin-test-runner", +"babel-plugin-syntax-jsx","babel-plugin-transform-async-to-generator","babel-plugin-transform-regenerator", +"babel-traverse","backbone","bignumber.js","bl","boom","broccoli-merge-trees","bufferutil","chai-passport-strategy", +"chai-subset","child_process","clear","cli-truncate","connect-redis","create-react-class","cross-fetch","cssesc", +"csv-generate","csv-parse","d3-array","d3-scale","deep-eql","envify","eslint-config-google", +"eslint-config-oclif-typescript","eslint-plugin-ava","eslint-plugin-vitest","faker","fsevents","grunt-contrib-cssmin", +"gts","gulp-clean","gulp-load-plugins","gulp-plumber","hapi","hash-sum","hast-util-to-estree","hbs","http-status-codes", +"imagemin","import-fresh","inferno","interpret","ioredis","jake","jasmine-node","latest-version","lilconfig","listr", +"lodash.assign","lodash.debounce","log4js","long","make-node","memoize-one","method-override","mobx-react","node.extend", +"normalize.css","npm-run-path","optimize-css-assets-webpack-plugin","p-timeout", +"pkg-dir","postcss-custom-media","postcss-modules-local-by-default","posthtml","protractor","rc-tooltip", +"react-hot-loader","read-pkg-up","rechoir","recursive-readdir","rehype-parse","retry","sanitize-filename","semistandard", +"style-to-js","testcontainers","tildify","traverse","typeorm","url-join","user","utils-merge","vercel","verror", +"vue-style-loader","when","word-wrap","xmlhttprequest","xpath","yamljs","yn","yosay","swr","wait-on","synckit", +"@next/env","@pmmmwh/react-refresh-webpack-plugin","@svgr/core","hast-util-whitespace","valibot","oxfmt", +"@types/inquirer","@types/classnames","stylelint-config-recommended","sdk","jsonml.js","@types/react-native","transpile", +"classes","@babel/helper-plugin-test-runner","@babel/plugin-transform-block-scoping", +"@babel/plugin-syntax-import-assertions","@babel/plugin-transform-property-literals", +"@babel/plugin-transform-template-literals","@ckeditor/ckeditor5-enter","color-convert","opencollective-postinstall", +"karma-jasmine-html-reporter","rollup-plugin-istanbul","tokenizer","error-stack-parser","string-argv", +"@types/sinonjs__fake-timers","@types/github-slugger", +"turbo","dot-prop","@types/marked","tooltip","dropdown","popup","variable","@semantic-release/exec","comment-parser", +"superstruct","answer","iterm","promptly","question","zsh","@ionic/eslint-config","@ionic/prettier-config","webapp", +"@jest/test-utils","facebook","snapshot","renderer","strip-indent","loading","busy","idle","highlight","mdx","helper", +"@mdx-js/mdx","git-url-parse","cacache","gfm","Nest","Front-end","Testing","@oclif/prettier-config","req", +"specification","back-end","@storybook/react-webpack5","locate-character","styleguide","rc-motion", +"scroll-into-view-if-needed","@types/qs","dekko","remark-preset-lint-recommended","eslint-config","devalue","mrmime", +"obug","patterns","istanbul-lib-coverage","istanbul-reports","net","particlesjs","particles-bg","particles-bg-vue", +"react-particles-js","react-particles.js","react-particles","vue-particles","ngx-particles", +"angular-particles","particleground","preactjs","confetti","fireworks","fireworks-js","confetti-js","confettijs", +"fireworksjs","canvas-confetti","natural-compare","openapi-types","@rolldown/pluginutils","@tsconfig/node20","pkgroll", +"html2sketch","mdast-util-to-string","remark-directive","@types/hosted-git-info","zx","jamstack","codes","cursor", +"appium","lambda","flatten","object-is","callback","audit","lockfile","automatic","matcher","amazon","private", +"conventional-github-releaser","es7","@babel/plugin-proposal-nullish-coalescing-operator","grunt-template","base64", +"node-gyp-build","encryption","crypt","dependency","injection","speed","microservices","websockets","addon","foreach", +"marked-terminal","box","sync","browsers","@rollup/plugin-buble","multipart","caching","case","address","spinner", +"width","codecov.io","column","options","indent", +"cson","conventional","tempfile","sourcemap","load","cpy","@mdn/browser-compat-data","@swc-node/register", +"rolldown-plugin-dts","minimize","executable","throttle","jsonc-eslint-parser","obj","keys","prop","cleanup","unused", +"packages","@eslint/json","Node.js","walk-back","docker","cms","bitbucket","class","filenamify","ts-jest-resolver", +"@eslint/core","@types/through2","exe","tmp-promise","extensions","es2016","confusing-browser-globals", +"@webpack-contrib/defaults","eslint-remote-tester-repositories","authn","kind-of","@vercel/ncc", +"babel-plugin-transform-define","human","protocol","setimmediate","dequal","detect-libc","worker","look","walking", +"rollup-plugin-serve","wrapper","errors","tsconfig","chai-string","wildcard","globbing","curl","wget", +"connect-livereload","csslint","postcss-runner","retina","neo-async","unist-util-position", +"zwitch","vdom","screenshot","l10n","routing","cluster","driver","vanilla","resize","sql","monorepo","is-docker","emoji", +"micromark-util-types","dir","ipaddr.js","micro","mongodb-memory-server","decorator","rule","pipe","stacktrace-parser", +"clang-format","unix","trim","fastest-levenshtein","registry","resolve.exports","concurrency","graceful","csswg","hot", +"use-sync-external-store","react-native-builder-bob","abstract","remark-plugin","watchpack","mvc","@types/serve-handler", +"serverless","lightbox","netlify","tablet","antora-component","@angular-devkit/schematics","@angular/forms", +"@adobe/css-tools","@csstools/selector-specificity","@emotion/babel-plugin","@fortawesome/fontawesome-svg-core", +"@fortawesome/free-solid-svg-icons","@mdx-js/react","@oclif/plugin-help","@storybook/addon-docs", +"although-line-wall-corn","amqplib","app-root-path","apple-transportation-web3-locate","arrangement-tell-arrange", +"assert-plus","atob","babel-helper-vue-jsx-merge-props","babel-preset-stage-2","babel-preset-stage-3", +"base-individual-comfortable-crop","bcryptjs","believed-usually-greater-passage","best-lips-shoulder","best-valley2", +"between-cry-additional","bfj","blockchain-am5","blockchain-baby","blockchain-back1","blockchain-closely", +"blockchain-directly","blockchain-egg","blockchain-happily","bn.js","branch-camera-web3-organization","broccoli-funnel", +"brought-tried-whether8","browserify-shim","careful-faster-dirty-matter","caught-brain-service0", +"chance-able-necessary-bell","cli-boxes","cli-spinners","command-line-args","command-line-usage","cookie-session", +"croner","crypto-js","d3-shape","dance-you-thou","decompress","depth-clay-tax7","did-enter-lay", +"difference-mile-pocket5","escodegen","eslint-plugin-sonarjs","eslint-plugin-svelte","excellent-difficult-good", +"extend-shallow","gentle-party-other","graph-these","grunt-sass","gulp-flatten","gulp-newer","gulp-watch", +"hard-cool-rhythm-continued","has-parts-ice-fact","hast-util-to-text","hit-running-special8","html-dom-parser", +"html-escaper","http-proxy-agent","http-proxy-middleware","ip","isomorphic-fetch","jodit","js-cookie", +"json-stable-stringify","jsonfile","jwt-decode","karma-phantomjs-launcher","keypress","keyv", +"known-css-properties","koa-compose","label-lungs-court4","language-perfectly-blow-series","late-dress-mail5", +"lead-alike-web3-applied","level","lodash.uniq","luck-rubber-do","manifest","many-favorite6","markdown-to-jsx", +"matter-view-web3-fence","mdn-data","memcached","metalsmith","missing-sport-living","movie-obtain-tail-prepare","mqtt", +"mud-slowly-five3","nails-wild-interest-garden","nightwatch","nine-yes-merely6","node-emoji","node-pty","npmlog","nsp", +"numeral","observe-food-motion-hidden","one-how-hand","outline-slowly","passport-strategy","phonegap", +"pitch-somehow-earth-brave","political-plan-careful","postcss-calc","postcss-discard-comments","prepare-package", +"prettier-plugin-jsdoc","prettyjson","publish-please","react-app-polyfill","react-color","react-dnd", +"react-dnd-html5-backend","react-intersection-observer","react-styleguidist","react-toastify","rehype-slug", +"remark-html","require-dir","reselect","resolve-url-loader","rtlcss","science-knowledge-truth","serialport","sha1", +"sick-typical-court7","similar-cheese-loss","sink-rod-lamp","sky-buy-web3-rock","slice-ansi","slug", +"speech-section-part-frozen", +"spirit-labor-cheese","sprintf-js","ssh2","star-location","stock-independent-balloon","stylelint-scss", +"sun-grass-circle0","supervisor","support-vessels-web3-vessels","surrounded-characteristic-or-rain","svelte-check", +"svelte-preprocess","svg-sprite","swam-darkness-weak","tailwind-merge","testcafe","throw-did-darkness4","tinyspy", +"traffic-carry-opinion","tribe-leaving-basket","twitter","useragent","webpack-hot-middleware","webpack-manifest-plugin", +"zone.js","supports-hyperlinks","@enact/core","react-textarea-autosize","perfect-scrollbar","@docusaurus/core", +"@vuepress/shared-utils","client-only","color-string","docsify","docsify-cli","inferno-vnode-flags","nth-check", +"postcss-modules-values","react-fast-compare","react-popper","wait-for-expect","widest-line","@applitools/utils", +"colord","@floating-ui/react","@appium/types","css-what","unplugin","devDependencies","tsconfck","sass-true", +"react-draggable","eslint-plugin-cypress","@ant-design/tools","react native","@ant-design/icons","set-cookie-parser", +"@types/set-cookie-parser","js-tokens","@babel/helper-validator-identifier","@babel/helpers", +"@babel/helper-compilation-targets","markdown-it-abbr","@vue/server-renderer", +"blog","asyncapi","babel-plugin-polyfill-corejs3","babel-plugin-polyfill-regenerator","derequire", +"@babel/plugin-transform-arrow-functions","@babel/plugin-transform-private-methods", +"@babel/plugin-proposal-private-property-in-object","@babel/plugin-transform-member-expression-literals", +"stylelint-config-standard-scss","transport","@fortawesome/fontawesome-free","user interface","@ckeditor/ckeditor5-undo", +"vue.js","polka","@docsearch/js","clean-css-cli","matches","vars","has-ansi","@types/luxon","@types/progress", +"chai-exclude","markdown-it-sup","quick-lru","ts-dedent","@types/markdown-it-attrs","markdown-it-testgen", +"eslint-formatter-pretty","threads","selfsigned","workerpool","@types/express-session","@dnd-kit/core", +"@dnd-kit/sortable","@dnd-kit/utilities","@emotion/serialize","@emotion/cache","@emotion/is-prop-valid","mark.js", +"@cypress/webpack-preprocessor","@types/lunr","@types/styled-components","@types/webpack-env","license-checker", +"JSON-Schema","@floating-ui/dom","popover","boilerplate","class-validator","mute-stream","answers","inquire", +"@rollup/plugin-virtual","pwa","@istanbuljs/schema","jest-validate","mocking","indicator","picker","serializer", +"@rushstack/heft","@types/aws-lambda", +"design system","strict-event-emitter","express-fileupload","@headlessui/react","ethereum","libnpm","@zkochan/js-yaml", +"tcp-port-used","@types/proxyquire","@oclif/test","@types/ejs","@types/pnpapi","@types/supports-color","esno", +"otterhttp","stack-utils","specifications","specs","babel-preset-minify","gauge","console-control-strings","interfaces", +"eslint-plugin-storybook","@storybook/addon-interactions","slice","is-reference","esbuild-register","@storybook/icons", +"style guide","rc-tabs","rc-tree","@types/jest-image-snapshot","fetch-jsonp","jest-puppeteer","rc-tween-one", +"react-fast-marquee","remark-lint","stylelint-declaration-block-no-ignored-properties","vanilla-jsoneditor", +"@types/tinycolor2","@ava/typescript","@stylistic/eslint-plugin-js","@svitejs/changesets-changelog-github-compact", +"@types/cookie","vite-plugin","collections","widget","istanbul-lib-source-maps","rollup-plugin-filesize","header", +"@eslint-community/regexpp","mdast-util-mdx","@typescript-eslint/rule-tester","@typescript-eslint/typescript-estree", +"estree","@types/hoist-non-react-statics","ast-types","webp","avif","babel-plugin-react-compiler","ajv-keywords", +"@umijs/bundler-utils","@umijs/core","@umijs/utils", +"codesandbox","estree-util-visit","file-system-cache","mdast-util-find-and-replace","sucrase","umi","git-repo-info", +"signal","negotiator","fullstack","get-caller-file","silent-error","component library","sequence","@vue/vue3-jest", +"webpackbar","mermaid","@types/css-tree","programmatic","zen-observable","@opentelemetry/sdk-trace-base","apm", +"define-properties","es-abstract","has-strict-mode","asserts","@types/tap","change","prefix","temp-dir","concurrent", +"formdata-node","eslint-config-babel","@babel/plugin-proposal-function-bind","babel-plugin-tester", +"babel-plugin-transform-es2015-arrow-functions","babel-plugin-transform-es2015-classes", +"babel-plugin-transform-es2015-computed-properties","babel-plugin-transform-es2015-destructuring", +"babel-plugin-transform-es2015-parameters","babel-plugin-transform-es2015-shorthand-properties", +"babel-plugin-transform-es2015-spread","babel-preset-flow","esutils","authorization","qunit-extras","ansi-to-html", +"global-modules","c","c++","d3-color","future","@astrojs/check","browserify-transform","heimdalljs","fs-tree-diff", +"mocha-eslint","defined","duplexer2","string_decoder","querystring-es3","stream-browserify","timers-browserify", +"coffeeify", +"baseline-browser-mapping","names","@clack/prompts","mv","byte","foreground-child","camel-case","chai-plugin","scule", +"@rollup/plugin-inject","whatwg-mimetype","jsonlint","vfile-message","ci","opts","toggle","string-length","growl", +"chalk-template","multi","single","emitter","on-headers","deflate","brotli","buffer-from","conf","settings", +"is-unicode-supported","eta","normalize-package-data","source","transfer","move","ES2015","ES2017","data-uri-to-buffer", +"postcss-url","crop","scale","order","postcss-modules-extract-imports","postcss-modules-scope","webpack-plugin", +"cssnano-preset-default","CSS","tokens","guid","id","d3-module","eslint-plugin-no-only-tests", +"eslint-plugin-perfectionist","npm-package-json-lint-config-default","values","destroy","rmdir","in-range","time-span", +"timeout","range","datastructure","stl","productivity","@ffmpeg-installer/ffmpeg", +"jsdoc3","filepath","to-vfile","repository","webpack-stream","richtext","karma-sinon-chai","gulp-tap","pack","pkg", +"setup","bundler","wonderful-fetch","eslint-plugin-json","email","ember-cli-dependency-checker","object.values", +"object.fromentries","promisify","set","characters","yorkie","jslint","eslint-config-xo-space", +"JavaScript Standard Style","code checker","code linter","code standards","policy","standard style","style checker", +"style linter","@tsconfig/node16","eslint-import-resolver-node","eslint-plugin-node-dependencies","@types/stylus", +"nano-spawn","it-is","stream-spec","is-in-ci","fork","@types/node-forge","transformer","loader-runner","symbols", +"unicorn-magic","up","look-up","google-auth-library","@types/request","@electric-sql/pglite","proxy-agent","triple-beam", +"detect-newline","nested","rollup-plugin-livereload","lightweight","devops","ssh","tasks","remote","mini-svg-data-uri", +"mkdir","create", +"monaco-editor","yeoman-test","yeoman-assert","tcp","onetime","typed","spreadsheet","@types/yargs-parser", +"@sindresorhus/is","uri","site","hooker","grunt-coveralls","grunt-istanbul","report","notify","preprocess","spritesmith", +"spritesheet","gulp-plugin","stat","istanbul-coveralls","index","stream-combiner2","vinyl-file","@types/fancy-log", +"stack","yazl","grunt-contrib-qunit","typeof","solid","abbrev","@types/source-map-support","compressor", +"rollup-plugin-polyfill-node","bunchee","eslint-plugin-unused-imports","status","titleize","localization","iconv", +"charset","scalable","align","@ionic/utils-fs","@types/split2","hybrid","braces","babel-plugin-annotate-pure-calls", +"@types/escape-html","@rspack/core","@types/babel__traverse","serial","current-module-paths","karma-preprocessor", +"os-homedir","escalade","tedious","oracledb","prettier-standard","stdlib","defaults","update","math", +"sqlserver","@types/which","postcss-simple-vars","markdown-it-plugin","mdast-util-gfm","mime-db","ufo","reactive", +"gulp-coveralls","ender","remark-preset-remcohaszing","aws4","dashboard","then","@types/plist","@types/xml2js", +"@types/proper-lockfile","postman","@matteo.collina/tspl","oauth2","fp","throat","@types/ini","mutate-fs","run","script", +"module-alias","home","metadata","page","pdfjs-dist","npm-watch","postcss-reporter","caniuse-api","postcss-less", +"cssnano-utils","serialization","gulp-clang-format","vrsource-tslint-rules","synchronous", +"eslint-import-resolver-webpack","title","spring","osx","message","mouse","string-hash","clean-publish","tiny", +"@vitest/expect","empathic","@polka/compression","jest-preset-stylelint","slideshow","streamx","@vue/shared", +"@vue/devtools-api","@phenomnomnominal/tsquery","device","tsparticles-plugin","@walletconnect/types", +"apollo-link-context","hex","netlify-cms", +"@angular/cdk","@angular/platform-browser","@csstools/media-query-list-parser", +"@csstools/postcss-progressive-custom-properties","@emotion/core","@floating-ui/react-dom", +"@fortawesome/react-fontawesome","@grandlinex/core","@hapi/hapi","@ionic/core","@jest/core","@jsonforms/react", +"@middy/core","@mui/system","@npmcli/map-workspaces","@npmcli/node-gyp","@nx/node","@nx/workspace","@otterhttp/cookie", +"@sveltejs/kit","@testing-library/cypress","@tinyhttp/cookie","@tinyhttp/req","@uiw/react-icon","@uiw/utils", +"@vitejs/plugin-legacy","acl","anyway-south-boy-pilot","api-console","apollo-link","awesome-typescript-loader", +"babel-plugin-import","babel-plugin-named-asset-import","babel-plugin-syntax-dynamic-import", +"babel-plugin-transform-react-jsx","babel-preset-stage-1","blockchain-language","blockchain-own8","blockchain-record", +"blockchain-scientist","btoa","built-who-entire","caniuse","chance","child-process-promise","clipboardy","cliui", +"consolidate","create-hash","css-select","cssstyle","csvtojson","daisyui","discord.js","dmd","dockerode", +"dom-serializer","dompurify","doxdox-core","doxdox-parser-jsdoc","doxdox-renderer-bootstrap","doxdox-renderer-json", +"doxdox-renderer-markdown","echarts", +"enzyme-shallow-equal","es6-promisify","facing-cook","fair-tower-web3-store","fetch-mock","fibers","font-awesome", +"forever","formik","friendly-errors-webpack-plugin","ftp","ghooks","gm","grunt-jsdoc","grunt-notify","gulp-browserify", +"gulp-bump","gulp-connect","gulp-data","gulp-git","gulp-jasmine","gulp-minify-css","gulp-rev","gulp-size","gulp-stylus", +"gulp-tslint","hammerjs","has-flag","heapdump","helmet","history-brass-sound","hogan.js","html-element-attributes", +"html-encoding-sniffer","html-minifier-terser","html-react-parser","html-tags","html-validate","imagemin-pngquant", +"immutability-helper","inline-style-parser","inside-throw","intl","is-url","jest-extended","jest-pnp-resolver","jimp", +"jotai","json-server","jszip","keycode","leftpad","libnpmexec","lit-element","load-grunt-config","lowdb","multiparty", +"nano","natural","newman","nib","node-cache","node-mocks-http","node-schedule", +"node-watch","npm-check-updates","nvm","optionator","osenv","passport-oauth2","phantom","pnpm","popper.js", +"postcss-custom-selectors","postcss-html","postcss-nesting","postcss-normalize","prisma","qr-image","query-string", +"randombytes","rc-slider","react-docgen","react-helmet","react-hook-form","react-icons","react-property", +"react-responsive","react-scripts","react-tools","recently-building-save","recompose","rehype-raw","rx", +"salt-type-oldest-faster","shinning-continued-becoming","showdown","soap","stack-trace","statsd","stream-transform", +"stringify-entities","stripe","style-to-object","styled-jsx","stylehacks","superjson","swagger-autogen", +"systeminformation","testem","tinymce","tinypool","tocbot","turndown","typescript-formatter","ultrahtml","url-parse", +"urllib","vasync","vhost","vue-class-component","vue-i18n","workbox-webpack-plugin","world-toy-kill","wrench","xml2json", +"yeoman-environment","void-elements", +"sortablejs","fontsource","@mantine/store","@antora/logger","@vuepress/markdown","@vuepress/plugin-register-components", +"@vuepress/plugin-search","broccoli","character-entities","character-entities-legacy","escape-goat","html-void-elements", +"vitefu","webdriver-manager","@expressots/shared","cssfilter","eslint-plugin-react-refresh","gulp-jsdoc3","pagefind", +"remeda","lefthook","embla-carousel","@csstools/css-calc","@inquirer/figures","@inquirer/confirm", +"@csstools/css-color-parser","shadcn","@appium/support","@appium/logger","chrome-launcher","@types/react-redux", +"@types/react-router-dom","cdk","kit","xhr2","lodash.mergewith","react-native-web","@types/lodash.mergewith", +"@auth/core","@sveltejs/package","sveltekit","fs-readdir-recursive","@babel/template","@babel/plugin-syntax-flow", +"@types/convert-source-map","@babel/helper-fixtures","@iarna/toml","zod-validation-error","jekyll","lit-html", +"@web/dev-server","@babel/plugin-syntax-decorators","object.getownpropertydescriptors","core-js-compat", +"@babel/helper-validator-option","@babel/plugin-transform-for-of","@babel/plugin-transform-classes", +"@babel/plugin-transform-modules-amd","@babel/plugin-syntax-import-attributes", +"@babel/plugin-transform-class-static-block","@babel/plugin-transform-object-rest-spread", +"@babel/plugin-transform-export-namespace-from","@babel/plugin-transform-exponentiation-operator", +"@babel/plugin-transform-async-generator-functions", +"@babel/plugin-transform-nullish-coalescing-operator","@babel/plugin-transform-react-display-name","clone-deep", +"@apidevtools/json-schema-ref-parser","markdown-it-task-lists","swagger-ui-dist","rollup-plugin-peer-deps-external", +"feed","ckeditor5-dll","@ckeditor/ckeditor5-integrations-common","@ckeditor/ckeditor5-editor-balloon", +"@ckeditor/ckeditor5-font","@ckeditor/ckeditor5-editor-multi-root","@commitlint/types","graph","actor", +"hammer-simulator","karma-coverage-istanbul-reporter","stylelint-config-twbs-bootstrap","genversion","stream-to-string", +"@types/mock-fs","markdown-it-deflist","jest-serializer-html","terminal-link","@discordjs/collection","discord", +"generated","@octokit/core","@types/json-stringify-safe","@types/chalk","@types/tar-stream","@types/formidable", +"@dnd-kit/modifiers","mixin","@tsconfig/node22","@types/lodash.camelcase","@emotion/hash","find-root", +"@definitelytyped/dtslint","swagger2openapi","@types/mark.js","OpenAPI","use-isomorphic-layout-effect","fontawesome", +"@docusaurus/utils","remove-files-webpack-plugin","@hapi/accept","@hapi/code","@hapi/lab","ajv-errors", +"class-transformer","effect","typanion","vest","vite-tsconfig-paths","@inquirer/ansi","@types/mute-stream","hyper", +"scaffolder","capacitor","progressive web app","@jest/test-result","jest-config", +"@types/object-hash","multipipe","tasklist","calendar","react-hooks","styling","@microsoft/api-documenter","JSDoc", +"TSDoc","declaration","dts","tsdoc-build-rig","Lambda","Middleware","Serverless","Framework","AWS","AWS Lambda", +"@types/superagent","socket.io-parser","@mdx-js/loader","react-helmet-async","hast-util-heading-rank","ethers","hardhat", +"@types/bn.js","@npmcli/installed-package-contents","@npmcli/redact","npm-pick-manifest","walk-up-path", +"@npmcli/mock-registry","workspaces","@npmcli/promise-spawn","innertext","similarity","@oclif/plugin-plugins", +"fancy-test","madge","header-range-parser","@types/http-proxy","@types/nock","commit-and-tag-version", +"eslint-plugin-chai-friendly","git-cz","global-jsdom","quibble","@webcomponents/webcomponentsjs", +"google-closure-compiler","widgets","reducer","@types/mkdirp","@tailwindcss/vite","@scalar/build-tooling","@scalar/core", +"fastify-plugin","@sinonjs/commons","@sinonjs/eslint-config","@ant-design/colors","qrcode.react","@babel/eslint-plugin", +"@emotion/server","@qixian.cs/github-contributors-list","@types/gtag.js","@types/jest-environment-puppeteer", +"@types/react-highlight-words","@types/throttle-debounce","antd-img-crop","antd-token-previewer", +"jsonml-to-react-element","rc-footer","rc-virtual-list","react-highlight-words","react-infinite-scroll-component", +"react-resizable","react-sticky-box","stylelint-config-prettier","stylelint-config-rational-order","async-mutex", +"string.prototype.matchall","tsconfig-paths-webpack-plugin","esm-env","@types/connect","webpack-loader","@swc/types", +"@napi-rs/cli","tsc","custom elements","shadow dom","pubsub","@types/content-type","@types/aria-query","jest-in-case", +"redent","rollup-plugin-delete","jest-matcher-utils","regexparam","proxy-addr","ts-api-utils", +"@typescript-eslint/type-utils","micromark-extension-mdxjs","tsc-alias","button","json-schema-to-ts","lit", +"swagger-parser","@ant-design/icons-svg","@makotot/ghostui","animated-scroll-to","dumi-afx-deps","heti","prism-themes", +"react-simple-code-editor","rehype-remove-comments","v8-compile-cache","dumi-assets-types","@types/highlight-words-core", +"@types/lodash.throttle","@umijs/lint","@umijs/plugins","highlight-words-core","static site generator","cryptography", +"decentralized","oracle","@mysticatea/eslint-plugin","dts-bundle-generator","cancel","controller", +"rollup-plugin-node-externals","control","delayed","bow-swam-troops-care","coach-organized-notice", +"crop-birthday-web3-children","face-eventually-bound","grass-dollar-crew-floating","information-fruit-web3-perfect", +"office-deal-mostly1","product-slight-adult-settlers","sentence-won-little-western","speed-wing-eat", +"supper-term-including-snake","truck-hospital-equator-hurt","trunk-darkness-believed-corner", +"typical-recall-industry-exchange","warn-clothing-whose0","weigh-flew-web3-farm","humanize-duration", +"require-from-string","tsify","denodeify","script-loader","screen","@vitejs/plugin-vue-jsx","ali-oss","colorful", +"merge2","p-all","antd-style","@types/pngjs","@types/adm-zip","@antfu/eslint-config","@codesandbox/sandpack-react", +"@ianvs/prettier-plugin-sort-imports","remark-lint-no-undefined-references","unzipper","klaw-sync","portable", +"notifications","apollo-utilities","ts-invariant","symbol-observable","root","portscanner","@appium/tsconfig", +"@types/bluebird","@opentelemetry/resources","constructs","@babel/plugin-syntax-class-properties","@es-shims/api", +"es-shim API","is-buffer","unit testing","eslint-plugin-prefer-arrow","auto","is-builtin-module","sync-exec", +"@vercel/nft","memoize","resolve-cwd","generators","hash-test-vectors", +"sns","dynamodb","grunt-babel","clean-jsdoc-theme","css-selector-parser","conventional-commits-parser", +"eslint-plugin-mocha-no-only","axe","abortcontroller-polyfill","@rollup/plugin-multi-entry","v8flags","babel-code-frame", +"babel-messages","babel-helper-transform-fixture-test-runner","babel-plugin-transform-export-extensions", +"istanbul-lib-instrument","test-exclude","@babel/preset-stage-0","prettier-eslint-cli", +"@babel/plugin-proposal-numeric-separator","@babel/plugin-proposal-optional-catch-binding", +"babel-plugin-check-es2015-constants","babel-plugin-syntax-trailing-function-commas", +"babel-plugin-transform-es2015-modules-umd","babel-plugin-transform-es2015-typeof-symbol", +"@babel/plugin-proposal-private-methods","@types/validator","sinatra","prebuildify","beautify","concat-with-sourcemaps", +"resolve-package-path","universal","isomorphic","@storybook/addon-knobs","@umijs/fabric","@types/readable-stream", +"buffers","falafel","block","loop","deferred","@types/mime","@astrojs/mdx","@astrojs/markdown-remark","border", +"stream-http","os-browserify","vm-browserify","domain-browser","tty-browserify","browserify-zlib","https-browserify", +"constants-browserify","browser-unpack","make-generator-function","window","arraybuffer","flexbox","bump","profiler", +"@babel/plugin-syntax-typescript","@vitest/spy","ttl", +"get-intrinsic","call","bind","dash","pascal-case","support","prebuild-install","graphic","assertions","contains", +"param-case","charts","domutils","@types/whatwg-mimetype","htmlparser","scraper","@types/faker", +"@ckeditor/ckeditor5-theme-lark","eslint-config-medikoo","git-list-updated","github-release-from-cc-changelog", +"prettier-elastic","spinners","tabular","lerna-changelog","limit","@yarnpkg/fslib","ignore-walk","@codemirror/view", +"@codemirror/state","@codemirror/commands","@codemirror/language","wcwidth","typical","listener","@types/shell-quote", +"eslint-config-flat-gitignore","persist","persistent","session","@types/normalize-package-data","preset", +"@types/serialize-javascript","ES5","ES7","ES2016","Observable","file-system","contents","http2-wrapper","stream-array", +"optimization","schedule","@stryker-mutator/core","jsr","zoom","path-key","execute","fast-json-stable-stringify", +"flatted","@rollup/plugin-dynamic-import-vars","functions","boolbase","lexer", +"@domenic/eslint-config","csrf","duration","stacktrace-js","serialize-error","ansi-html","hasha","request-progress", +"d3-time","d3-time-format","tailwind css","nuxt","bun","jscodeshift","typedoc-plugin-missing-exports","gzip-size-cli", +"limited","rate","debugger","lcov-result-merger","is-regex","which-typed-array","folders","directories","rmrf", +"random-int","is-core-module","space","tshy-after","patch","java script","type script","edge","traversal","sorting", +"structures","data structure","data-structure","data structures","datastructures","data-structures","in data structures", +"in data structure","DataStructure","DataStructures","CommonJS","UMD","esmodule","java.util","c++ stl","c++ std", +"Python collections","System.Collections.Generic","STL","Collection","Collections","OOP","bot","dnd","rpc", +"@grpc/grpc-js","dependency-cruiser","tunnel","imagemin-svgo", +"imagemin-jpegtran","open source","karma-html2js-preprocessor","simple-update-notifier","dox","eslint-config-fbjs", +"just-extend","parcel","tsutils","iteration","apache","grunt-run","grunt-webpack","@electron/get","packager", +"grunt-banner","babel-plugin-transform-vue-jsx","launch-editor-middleware","broccoli-concat","broccoli-debug", +"broccoli-source","broccoli-stew","console-ui","ensure-posix-path","heimdalljs-logger","eslint-plugin-chai-expect", +"release-plan","broccoli-babel-transpiler","ember-cli-inject-live-reload","loader.js","eslint-plugin-qunit", +"safe-regex-test","info","string.prototype.trim","@types/isarray","regular","esquery","imurmurhash","babel-tape-runner", +"airbnb","es2018","strict","eslint-typegen","@types/lodash.memoize","@types/eslint-scope","array-includes","npm-which", +"typescript-eslint-parser","jsdoc-type-pratt-parser","json-schema-to-typescript","open-editor", +"@ota-meshi/eslint-plugin","@ota-meshi/site-kit-eslint-editor-vue","env-cmd","eslint-plugin-json-schema-validator", +"vite-plugin-eslint4b","axobject-query","@tsconfig/strictest","refa","scslre","@types/less","find-up-simple", +"xml-name-validator","karma-tap", +"eval","ubelt","emits","subscribe","yoctocolors","merge-descriptors","automatically","token", +"@docusaurus/preset-classic","handler","endpoint","@types/yauzl","parse-node-version","ajv-i18n","autocannon", +"babel-plugin-styled-components","array.prototype.map","colorpicker","symbol","blob","uint8array-extras","picture", +"photo","bmp","epub","otp","locate-path","@fastify/busboy","admin","async-lock","zod-to-json-schema","byline", +"inference","prettier-plugin-tailwindcss","lolex","fault tolerant","sysadmin","browserify-istanbul","tsdx","conditional", +"universalify","klaw","mac","ie","socket","iterator","dir-compare","eslint-config-tschaub","hook","globs","gitignore", +"eslint-config-standard-with-typescript","ky","@types/ncp","@graphql-tools/schema","temporary","release","newer", +"notify-send","libsass","sauce-tunnel","grunt-mocha-cli","@types/write-file-atomic","pipeline", +"transformation","codegen","utf-8","from2-string","include","relative","prettify","jsftp","stream-to-array","htmlmin", +"@types/gulp","inject","scripts","gulplog","has-gulplog","kew","restart","sort-keys","sourcemaps","measure","hook-std", +"source maps","@types/through","uncss","array-differ","beeper","zlib","remark-lint-blockquote-indentation", +"remark-lint-checkbox-character-style","remark-lint-checkbox-content-indent","remark-lint-code-block-style", +"remark-lint-definition-case","remark-lint-emphasis-marker","remark-lint-fenced-code-marker", +"remark-lint-no-duplicate-definitions","remark-lint-no-heading-content-indent","remark-lint-rule-style", +"remark-lint-strong-marker","remark-lint-table-cell-padding","remark-lint-table-pipes", +"remark-lint-unordered-list-marker-style","bounce","elements","flag","raw","mdast-util-mdxjs-esm","util-deprecate", +"@size-limit/preset-big-lib","pojo","unescape","relateurl","packer","uglifier","tags","void","plain","duplex","singular", +"plural","dasherize","singularize","translation","globalization","safer-buffer", +"spawn-sync","resolution","lazy","inferno-shared","user interfaces","react-devtools-core","telephone","elementtree", +"@ionic/utils-array","@ionic/utils-terminal","@types/elementtree","@types/svgo","is-object","esmock","jasmine-reporters", +"@jest/environment","@jest/environment-jsdom-abstract","eslint-webpack-plugin","web-vitals","plugnplay","pnp", +"@types/babel__template","preact-render-to-string","rich editor","rich text editor","contenteditable","rte", +"grunt-compare-size","grunt-exec","package-directory","decimal.js","cssom","stable","lie","karma-adapter","keyboard", +"timekeeper","lru","pg-connection-string","better-sqlite3","smol-toml","analysis","body","route","set-blocking", +"conventional-recommended-bump","conventional-changelog-angular","multi-package","less.js","run-parallel", +"fast-levenshtein","algorithm","edit","faye-websocket","resolve-pkg","lock","bar","SVG","mdast-util-to-markdown","baas", +"eslint-config-next","context","anchor","emoticon", +"heading","esbuild-plugin-umd-wrapper","markup","checksum","decode-named-character-reference","micromark-extension-gfm", +"tiny-glob","efficient","sorted","pidtree","distributed","basic-auth-connect","@esm-bundle/chai","email-validator", +"double","@aws-sdk/s3-request-presigner","profiling","enqueue","devtools-protocol","jsdom-global","container","iot", +"rfc4122","jQuery","@types/update-notifier","typescript-json-schema","@readme/oas-examples","apis","openapi initiative", +"openapi specification","openapi spec","openapi document","oai","Object.keys","ES8","launch","start","xdg","default", +"urls","tmpdir","scrollbar","ratelimit","aria","server-side","babel-plugin-transform-inline-environment-variables", +"fastbench","pino-pretty","strong-pm","@csstools/utilities","@types/caniuse-api","@csstools/cascade-layer-name-parser", +"flex","postcss-syntax","humanized","exception","danger","curried","words","@rc-component/father-plugin","rc-test", +"chai-spies","@babel/plugin-proposal-do-expressions","form-validation", +"live","eslint-plugin-jest-dom","observer","dialog","transition","@react-native/eslint-config","premove","multiselect", +"toast","tiny-invariant","composition","eslint-config-remcohaszing","snapshot-fixtures","hast-util-from-html-isomorphic", +"cls-hooked","shutdown","deep-copy","fast-copy","sourcemap-validator","@types/babel__generator", +"@types/express-serve-static-core","@types/text-table","@types/ua-parser-js","async-sema","server-only","Rx","RxJS", +"p-retry","fast-safe-stringify","favicon","encrypt","@vitest/mocker","bundle-require","@discoveryjs/json-ext", +"@storybook/blocks","visual","full","cjk","chinese","japanese","korean","utf-8-validate","stylelint-plugin", +"playwright-chromium","swipe","telegram","chroma-js","es8","testcafe-reporter-xunit","dprint", +"eslint-config-xo-typescript","material-design","hookable","bail","user-agent","sanitisation","viewer","strip-literal", +"postcss-modules","@oxc-project/types","sauce-connect-launcher","chart","RFC-6455","break", +"fflate","unminified-webpack-plugin","@yeoman/adapter","@types/webpack-bundle-analyzer","@vitejs/plugin-react-swc", +"rollup-plugin-vue","katex","@storybook/addon-a11y","preview","fs-fixture","intlayer","accessible","parcel-bundler", +"@walletconnect/utils","replacement","react-native-svg","@codecov/vite-plugin","@theuiteam/lib-builder","applitools", +"test automation","visual regression","@arethetypeswrong/core","expressive-code","@trpc/server","ai","openai", +"@types/pg","@applitools/logger","@angular-devkit/core","@angular/animations","@angular/common","@angular/material", +"@angular/platform-browser-dynamic","@11ty/eleventy","@asyncapi/generator-react-sdk","@csstools/postcss-is-pseudo-class", +"@cucumber/cucumber","@discordjs/rest","@doc-tools/transform","@idux/cdk","@isaacs/cliui","@mantine/core", +"@mantine/hooks","@mantine/notifications","@mantine/utils","@middy/util","@mui/icons-material","@mui/material", +"@mui/x-date-pickers","@ng-doc/core","@nomicfoundation/hardhat-chai-matchers","@oclif/config","@otterhttp/request", +"@otterhttp/send","@scalar/api-reference","@tanem/svg-injector","@tanstack/react-query","@testing-library/jest-native", +"@tinyhttp/cookie-signature","@tinyhttp/cors","@tinyhttp/etag","@tinyhttp/forwarded","@tinyhttp/proxy-addr", +"@tinyhttp/res", +"@tinyhttp/router","@tinyhttp/send","@tinyhttp/type-is","@tinyhttp/url","@udecode/plate-core","@uiw/react-button", +"@uiw/react-input","@uiw/react-overlay-trigger","@wesleytodd/openapi","action-cli","aid-guard1","amqp", +"analsorhost-simple-bs","angular-cli","angular-material","apn","babel-plugin-transform-decorators-legacy","baqend", +"bark-needs-visit4","bip39","bizcharts","blessed","bootstrap-sass","branch-body-web3-feel","bs58","bulma","bytebuffer", +"cache-manager","chicken-fell-spread","cli-spinner","cli-table2","cli-ux","clui","command-exists","component-emitter", +"corcojs-qrcode","crawler","crc","critical","cronnor","css-functions-list","cssdb","csurf","csv-stringify", +"d3-selection","deasync","dedupe","deep-diff","diff2html","dist","distance-its-clear-rate","doc-detective-core", +"documentdb","doxdox-cli","dropzone","dubnium","elasticsearch","electricity-death-web3-story","electron-packager", +"element-resize-detector","eleventy","elliptic","ember-cli-babel","ember-cli-htmlbars", +"emmet","enzyme-adapter-utils","errorhandler","es6-error","eslintrc","ethereumjs-util","fastclick", +"feature-rising-small7","firan-logging","flowbite","fluent-ffmpeg","fresh-dangerous","fstream","fur-race-web3-pale", +"generic-pool","getmac","gmll","googleapis","government-letter-web3-till","gradually-current-chief","grunt-concurrent", +"grunt-contrib-csslint","grunt-contrib-less","grunt-newer","grunt-usemin","guarapi","gulp-buffer","gulp-changed", +"gulp-concat-css","gulp-cssnano","gulp-csso","gulp-gh-pages","gulp-htmlmin","gulp-imagemin","gulp-inject","gulp-jscs", +"gulp-json-editor","gulp-notify","gulp-shell","gulp-tsb","gulp-usemin","gulp-vinyl-zip","gulp-webserver","gulp-zip", +"happy-meant","hast-util-sanitize","hast-util-to-jsx-runtime","hay-against-any-hurry","hexo","highland", +"hope-slight-walk1","http-status","hyperquest","hyphenate-style-name","i","imagemagick","imap","inert","ink", +"is-potential-custom-element-name","iview","johnny-five","jscpd","jsdoc-api", +"json-2-csv","knex","koa-static","leveldown","levelup","libnpmdiff","libnpmfund","liftoff","live-server", +"local-web-server","localforage","localtunnel","lodash.flatten","lodash.isplainobject","lodash.isstring","lodash.map", +"loopback","magmastream","mammoth","memory-cache","meteor","mockjs","monk","motor-positive-spirit", +"move-wolf-throughout","multiple-cucumber-html-reporter","nativescript","nedb","next-auth","ngrok","nightmare", +"node-dir","node-inspector","node-pre-gyp","node-static","node-uuid","nolangjs","nomnom","normalize-wheel","npm-check", +"nuke-cli","nvmrc","oas-normalize","object-path","onchange","opencv","orchestrator","overlayscrollbars","pa11y", +"para-client-js","pdfkit","pie-case-nor-great","pm2","postcss-color-functional-notation","postcss-image-set-function", +"postcss-prefix-selector","pouchdb","prettier-plugin-svelte","pretty-error","progress-bar-webpack-plugin","purgecss", +"quill","qunit-dom","raven", +"react-bootstrap","react-datepicker","react-dropzone","react-error-overlay","react-i18next","react-native-vector-icons", +"react-number-format","react-slick","react-tap-event-plugin","react-virtualized","reactstrap","redoc","redux-form", +"redux-logger","redux-thunk","rehype-external-links","remap-istanbul","request-promise-native","require-all","restify", +"restore-cursor","robotjs","routes","sails","sand-have-metal6","sat-local","seblakhotspicy","secp256k1","sentiment", +"shortid","sink-mighty-orbit0","slow-voice-spell-pass","small-grow-mix4","snake-seven-recall-interior","sockjs-client", +"spring-dust-wall-size","sprity","st.db","strftime","strongloop","sugar-policeman-entire","swagger-themes", +"swagger-ui-express","swig","swiper","sync-request","tail-iron-became5","tdl","tinper-bee","toastify-react-native", +"ts-pnp","tslint-react","tv4","typescript-plugin-css-modules","unusual-rope","user-home","victory-mouth","viewerjs", +"vsce","vue-hot-reload-api","waterline","web3-capital","web3-compass","webtorrent", +"winreg","wiredep","xml-js","xregexp","yarnrc","yonode","zmq","@nx/cypress","@nx/jest","framer-motion", +"@mui/styled-engine","jsdoc-parse","@commercetools-frontend/constants","downshift","postcss-focus-visible", +"@jsonforms/vue","rehype-katex","foundation-sites","grommet","html-url-attributes","postcss-opacity-percentage", +"rapidoc","react-native-collapsible","recharts","weui","tstyche","@mantine/code-highlight","@enact/ui","@enact/webos", +"zarm","titanium","@ionic/react","@juggle/resize-observer","@mui/private-theming","@storybook/addon-backgrounds", +"@tinyhttp/encode-url","@tinyhttp/logger","@tsparticles/interaction-external-push","@tsparticles/move-base", +"@tsparticles/shape-emoji","@tsparticles/updater-color","@tsparticles/updater-opacity","@tsparticles/updater-out-modes", +"@vuepress/core","@vuepress/markdown-loader","@vuepress/plugin-active-header-links","@vuepress/plugin-last-updated", +"@vuepress/plugin-nprogress","@vuepress/theme-default","@walletconnect/legacy-modal","ansi-align","blocking-proxy", +"body-scroll-lock","broccoli-middleware","character-entities-html4","character-reference-invalid","dom7","epub2","esdoc", +"globals-docs","hast-util-parse-selector","hast-util-to-parse5","html-parse-stringify","inferno-create-element", +"jasminewd2","jest-preview","lws-index","micromark-util-encode","postcss-js","query-selector-shadow-dom", +"react-colorful","webdriver-js-extender","@antora/playbook-builder","@tsparticles/shape-circle", +"@tsparticles/updater-life","@tsparticles/updater-rotate","plasmo","@expressots/core", +"@tsparticles/interaction-particles-links","@astrojs/starlight","@tsparticles/interaction-external-bounce", +"@tsparticles/interaction-external-remove","@tsparticles/move-parallax","@tsparticles/shape-polygon", +"@tsparticles/shape-square","@tsparticles/shape-image","astro-expressive-code","rehype-expressive-code", +"@augment-vir/assert","@tsparticles/basic","@tsparticles/updater-size","@tsparticles/interaction-external-grab", +"@tsparticles/interaction-particles-collisions","@tsparticles/interaction-external-repulse","@tsparticles/slim", +"@tsparticles/shape-star","kuler","@busy-hour/blaze","payload","@appium/schema","@modern-js/utils","grunt-svgmin", +"@axe-core/playwright","embla-carousel-reactive-utils","globrex","grammy","@tsparticles/plugin-hex-color", +"@tsparticles/plugin-hsl-color","loki","@headlessui/vue","zoroaster","vue-draggable-next", +"@tsparticles/plugin-rgb-color","@storybook/addon-vitest","@csstools/color-helpers","@prisma/dev","@observablehq/plot", +"@applitools/driver","@tsparticles/interaction-external-slow","@tsparticles/shape-line","@testcontainers/postgresql", +"@antora/site-publisher","@inquirer/expand","@inquirer/select","@tsparticles/interaction-particles-attract","animejs", +"lexxy","mapboxgl", +"mongoid","nums","svgs","twbs","jsonp","@types/md5","mochawesome","simulate-event","console-polyfill", +"markdown-it-prism","babel-plugin-espower","es6-promise-polyfill","css-split-webpack-plugin","karma-webdriver-launcher", +"babel-plugin-transform-object-assign","Angular CLI","Angular DevKit","devkit","code generation","rc-field-form", +"utility-types","bisheng","enquire.js","react-github-button","react-document-title","@testing-library/react-native", +"@react-native-community/eslint-config","@sveltejs/adapter-auto","oidc","@babel/helper-transform-fixture-test-runner", +"6to5","charcodes","@babel/helper-module-transforms","const","var","@babel/helper-string-parser", +"@babel/helper-create-class-features-plugin","dependency-graph","please-upgrade-node","static-site-generator", +"static-site","@advanced-rest-client/arc-icons","@advanced-rest-client/arc-marked", +"@anypoint-web-components/anypoint-button","@anypoint-web-components/anypoint-dropdown", +"@anypoint-web-components/anypoint-item","@anypoint-web-components/anypoint-listbox","@api-components/amf-helper-mixin", +"@advanced-rest-client/oauth-authorization","@anypoint-web-components/anypoint-styles", +"@api-components/api-model-generator","@api-components/api-navigation","@api-components/api-request", +"@open-wc/eslint-config","@open-wc/testing","typescript-lit-html-plugin","@graphql-typed-document-node/core","optimism", +"apollo","@asyncapi/parser","decorators","@babel/compat-data","@babel/plugin-transform-parameters", +"babel-plugin-polyfill-corejs2", +"@babel/plugin-transform-spread","@babel/plugin-transform-modules-umd","@babel/plugin-transform-regenerator", +"@babel/plugin-transform-destructuring","@babel/plugin-transform-dynamic-import", +"@babel/plugin-transform-modules-systemjs","@babel/plugin-transform-numeric-separator", +"@babel/plugin-transform-optional-chaining","@babel/plugin-transform-async-to-generator", +"@babel/plugin-transform-optional-catch-binding","@babel/plugin-transform-private-property-in-object", +"@babel/plugin-transform-logical-assignment-operators","pirates","@cucumber/gherkin-streams","json-schema-merge-allof", +"markdown-it-footnote","svg-pan-zoom","feature","async-exit-hook","@changesets/get-release-plan","chokidar-cli","chat", +"social","angular2","ng","ckeditor5-build","@ckeditor/ckeditor5-editor-classic","@ckeditor/ckeditor5-alignment", +"@ckeditor/ckeditor5-editor-decoupled","@ckeditor/ckeditor5-editor-inline","ckeditor5-lib", +"@ckeditor/ckeditor5-watchdog","@ckeditor/ckeditor5-select-all","@types/color-convert","@commitlint/lint", +"@commitlint/load","@commitlint/test","@commitlint/utils","@compodoc/live-server","@compodoc/ngd-transformer", +"loglevel-plugin-prefix","neotraverse","messages","@docsearch/css","find-unused-sass-variables","vnu-jar","mobile-first", +"media query","declarations","progressive","assertion-error-formatter","knuth-shuffle-seeded","util-arity", +"@types/mustache","@types/mz","dependency-lint","gherkin","@types/signale","jest-mock-process","signale", +"@diplodoc/tabs-extension","get-root-node-polyfill","markdownlint-rule-helpers","@types/sanitize-html", +"esbuild-sass-plugin","yfm","magic-bytes.js","@discordjs/util","discord-api-types","@sapphire/snowflake", +"@discordjs/scripts","@favware/cliff-jumper","@discordjs/api-extractor","discordapp","@apidevtools/swagger-parser", +"@types/html-escaper","memorystore","minisearch","sql.js","@types/body-parser","esbuild-wasm", +"@wordpress/dependency-extraction-webpack-plugin","swc-loader",".d.ts","definitions","@emotion/sheet","@emotion/utils", +"decko","json-pointer","openapi-sampler","react-tabs","stickyfill","url-template","@hot-loader/react-dom", +"@types/dompurify","@types/enzyme-to-json","@types/json-pointer","@types/tapable","lodash.noop","unfetch", +"OpenAPI Specification","Swagger","font family","google fonts","inter","typeface","awesome","node-abi", +"@graphql-markdown/logger","@graphql-markdown/utils","@graphql-markdown/types","graphql-schema","graphql-markdown", +"@docusaurus/types","@tailwindcss/typography","basename","filemanager-webpack-plugin","@hapi/hoek","@hapi/topo", +"@hapi/eslint-plugin","@hapi/wreck","@standard-schema/utils","@sinclair/typebox","@vinejs/vine","arktype", +"computed-types","fluentvalidation-ts","fp-ts", +"io-ts","scheme","nope","TypeBox","translate","vue 3.x","@inquirer/testing","@stencil/core","playwright-core", +"@tanstack/react-virtual","eslint-plugin-require-extensions","design-system","ux","@jest/pattern","@jest/reporters", +"exit-x","jest-haste-map","jest-message-util","jest-regex-util","jest-watcher","easy","immersive","@jest/schemas", +"@types/istanbul-lib-coverage","@types/istanbul-reports","redux-mock-store","rollup-plugin-import-css","docopt", +"glob2base","babel-plugin-transform-builtin-extend","opn-cli","@inquirer/input","syntax-highlight","json-api", +"@types/mdx","@microsoft/api-extractor-model","alpha","jju","HTTP","@open-draft/deferred-promise","is-node-process", +"outvariant","@open-draft/test-server","@ossjs/release","@types/express-fileupload","@types/follow-redirects", +"vitest-environment-miniflare","webpack-http-server","system","datepicker","datetimepicker","@shikijs/transformers", +"@theguild/remark-npm2yarn","rehype-pretty-code","webpack-virtual-modules","@types/color","posthtml-render", +"posthtml-parser","rehype-format","hast-util-has-property","@isaacs/string-locale-compare","@npmcli/fs", +"@npmcli/metavuln-calculator","@npmcli/name-from-folder", +"bin-links","common-ancestor-path","npm-install-checks","parse-conflict-json","treeverse","spawk","highlights", +"language-ini","property-ttl","language-dart","language-glsl","language-haxe","language-rust","lodash.pickby", +"language-erlang","language-stylus","highlights-tokens","atom-language-diff","atom-language-nginx", +"github-url-to-object","markdown-it-expand-tabs","markdown-it-lazy-headers","oniguruma","intercept-stdout","ESLint", +"@nestjs/schematics","@oclif/errors","@oclif/parser","@types/indent-string","@types/wrap-ansi","clean-stack", +"@types/clean-stack","octokit","vue-components","@otterhttp/content-type","@otterhttp/errors","send-file","randexp", +"@types/ramda","@types/stack-utils","glob-bin","putout","typedoc-plugin-no-inherit","annotate","information", +"typography","@webcomponents/shadycss","fontkit","ps-tree","github-api","app-module-path","better-ajv-errors", +"@metalsmith/markdown","eslint-formatter-codeframe","gui","mixins","@mdi/font","animate.css","bootstrap-icons", +"@types/three","@storybook/testing-library","@types/testing-library__jest-dom","glb","@size-limit/webpack", +"@testing-library/react-render-stream","@types/babel__helper-module-imports","esbuild-extra","starter","redux-toolkit", +"require-relative","is-module","string-capitalize","cpx","sanity","@unhead/vue","@scalar/openapi-parser", +"@scalar/openapi-types","vite-plugin-banner","@serenity-js/core","@serenity-js/rest","@serenity-js/web","tiny-types", +"@integration/testing-tools","@types/html-minifier","mocha-multi","serenity","serenity-js","screenplay", +"screenplay-pattern","@wdio/cli","@wdio/local-runner","@wdio/spec-reporter","@wdio/types","@mochify/cli", +"@mochify/driver-puppeteer","@mochify/driver-webdriver","telejson","memoizerific","storybook-addon","essentials", +"@ant-design/cssinjs","@ant-design/react-slick","@rc-component/tour","rc-dialog","rc-drawer","rc-menu","rc-progress", +"rc-trigger","@storybook/addons","@storybook/theming","@types/react-resizable","bundlesize2", +"duplicate-package-checker-webpack-plugin","sylvanas","@supernova-studio/client","@supernova-studio/model","abab", +"color2k","parse-color","trash-cli","@sveltejs/acorn-typescript","dts-buddy","official","@svgr/plugin-svgo","svgr","swc", +"rust","stylelint-prettier", +"ui library","symbiote.js","microfrontends","shadow root","MIT","tanem-scripts","@tanstack/query-test-utils", +"dom-accessibility-api","jest-watch-select-projects","jest-environment-jsdom-sixteen","testing-library","dotenv-cli", +"@types/jest-in-case","jest-serializer-ansi","eslint-plugin-local-rules","@tinyhttp/vary","supertest-fetch","headers", +"@tinyhttp/content-type","params","ebs","@typescript-eslint/visitor-keys","title-case","component-classes","mini-store", +"@types/raf","@udecode/slate","@udecode/utils","@udecode/react-utils","@udecode/react-hotkeys","@uiw/react-overlay", +"prom-client","@uploadcare/cname-prefix","shipjs","@biomejs/js-api","@biomejs/wasm-nodejs","@total-typescript/ts-reset", +"@happy-dom/global-registrator","@csstools/postcss-cascade-layers","uploadcare","file uploader", +"browserslist-to-esbuild","@babel/plugin-transform-react-jsx-source","fast refresh","comlink","react-loading-skeleton", +"codesandbox-import-utils","dumi-theme-mobile","rollup-plugin-babel-minify","rollup-watch","negotiation","accept","arch", +"cron-parser","blockchain-bend4","blockchain-meat7","cent-matter-to","closer-composed-particularly-shout", +"correct-home-silent7","course-whenever-merely","exchange-known-bend","lay-rest-hour","material-balance-trade-solar", +"meat-think-stove8", +"recently-done-should-moon","scientific-exist-event2","stay-including","engine.io","engine.io-client", +"find-nearest-file","globs-to-files","load-script","make-promises-safe","simple-get","json-schema-traverse", +"@ajv-validator/config","if-node-version","json-schema-test","json-schema-validator","longjohn", +"ember-cli-normalize-entity-name","ember-cli-string-utils","isbinaryfile","gray","inverse","red","strikethrough", +"escapes","vt100","@emotion/unitless","array-tree-filter","dom-scroll-into-view","shallow-equal","@types/koa", +"@types/lru-cache","@vue/babel-plugin-jsx","@webpack-cli/serve","babel-plugin-inline-import-data-uri","docsearch.js", +"enquire-js","gulp-strip-code","is-windows","json-templater","less-plugin-npm-import","majo", +"markdown-it-table-of-contents","remark-yaml-config","reqwest","rucksack-css","string-replace-loader", +"@rc-component/trigger","runes2","spinnies","vanilla-tilt","react-countup","@prettier/sync","@types/ali-oss", +"@types/spinnies","@types/nprogress","lunar-typescript","@types/http-server","@types/cli-progress", +"@ant-design/compatible","@types/isomorphic-fetch","dumi-plugin-color-chunk","@microflash/rehype-figure", +"circular-dependency-plugin","@ant-design/happy-work-theme", +"@madccc/duplicate-package-checker-webpack-plugin","apple","iOS","apollo-cache","@types/zen-observable","jsnext", +"@types/graphql","node_modules","asyncbox","teen_process","@azure/core-auth","@opentelemetry/core", +"@opentelemetry/api-logs","@opentelemetry/sdk-logs","@opentelemetry/sdk-metrics", +"@opentelemetry/exporter-metrics-otlp-proto","microsoft","analytics","@aws-sdk/types","projen","gql","buffer-crc32", +"Array.prototype.flatMap","Array.prototype.flatten","ensure","is-nan","rollup-plugin-npm","shrinkwrap", +"parse-github-url","babel-plugin-rewire","detective","fraction.js","callsites","code-excerpt","common-path-prefix", +"emittery","ignore-by-default","observable","ieee754","jmespath","insert-module-globals","sqs","ses","swf","workflow", +"waf","colorjs.io","typedarray","emoji-regex","revalidator","proxy-from-env","rollup-plugin-bundle-size", +"istanbul-instrumenter-loader","md5.js","babel-helpers","babel-preset-power-assert","airbnb-js-shims","@umijs/test", +"babel-preset-umi","@istanbuljs/load-nyc-config","instrumentation","require-package-name","find-babel-config","resolver", +"alias","rewrite","mapping","babel-plugin-syntax-async-functions","babel-plugin-syntax-object-rest-spread", +"babel-plugin-flow-react-proptypes","pkgfiles","babel-plugin-transform-es2015-block-scoped-functions", +"babel-plugin-transform-es2015-duplicate-keys","babel-plugin-transform-es2015-for-of", +"babel-plugin-transform-es2015-function-name","babel-plugin-transform-es2015-literals", +"babel-plugin-transform-es2015-modules-amd","babel-plugin-transform-es2015-modules-systemjs", +"babel-plugin-transform-es2015-object-super","babel-plugin-transform-es2015-sticky-regex", +"babel-plugin-transform-es2015-unicode-regex","babel-plugin-transform-exponentiation-operator","electron-to-chromium", +"home-or-tmp","babel-plugin-transform-flow-strip-types","backend-as-a-service","decoder","encoder","sorted-object", +"esm2umd","dependency injection","spa","micro services","real time","decimal","bignumber","gyp","@antv/g2plot", +"react-reconciler","@storybook/addon-options","git-directory-deploy","imports-loader","awesomesauce","memory-streams", +"sparkline","promises-a","deferreds","flow control","dsl","standardx","@astrojs/sitemap","prettier-plugin-astro", +"eyeglass-module","boxes","release-it-lerna-changelog","tslint-plugin-prettier","subarg","module-deps","browser-pack", +"console-browserify","isstream","update-browserslist-db","base-x","ts-standard","decoding","typescript-cached-transpile", +"test262-stream","transpilation", +"esnext","uint8array","built-in","@oclif/plugin-warn-if-update-available","mergician","dtrace-provider","log4j", +"@mscdex/eslint-config","webrtc","chai-jest-snapshot","v8","inspector","callbind","bound","camel","hyphen","separator", +"pascalcase","assert-rejects","scraping","pathval","check-error","assertion-error","strategy","like","similar", +"includes","c12","eslint-plugin-es","querystringify","react-lazy-load","intersection-observer","readdirp","watcher", +"watching","classname","parent-module","uncache","uncached","autocomplete","d","es6-iterator","tad","display","show", +"git-rev","jest-runner-eslint","rollup-plugin-multi-input","tiny-emitter","powershell-utils","copy-paste","progress bar", +"coroutine","mask","@codemirror/search","google-closure-compiler-js","jison","exists","find-replace","is-utf8", +"cachedir","find-node-modules","mocha-multi-reporters","one", +"singleline","strings","coveralls-next","sh","x2js","xdg-basedir","rack","flash","elegant","eco","mote","twig", +"dustjs-linkedin","conventional-changelog-writer","@borderless/ts-scripts","@types/glob-parent","@types/normalize-path", +"qr","ES3","ES2018","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 6","ECMAScript 2015", +"ECMAScript 2016","ECMAScript 2017","ECMAScript 2019","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set", +"WeakMap","WeakSet","TypedArray","Symbol","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate", +"parse-json","hpagent","sha.js","normalize-newline","@fast-check/jest","node-cron","timer","crontab","rotate","shebang", +"pbkdf2","MD5","Base64","source-map-resolve","changelog-verify","eslint-config-nitpick","github-release-from-changelog", +"version-changelog","write-json-file","@types/csso", +"@types/boolbase","features","stages","identifier","@csstools/css-syntax-patches-for-csstree","@webref/css", +"CSSStyleDeclaration","StyleSheet","@types/chokidar","tsv","@types/lodash.set","stack-chain","uid","spies","stubs", +"conventional-commit-types","d3-dsv","d3-path","d3-force","d3-format","d3-random","d3-polygon","d3-hierarchy", +"d3-interpolate","d3-scale-chromatic","topojson-client","@observablehq/runtime","statistics","tailwind react", +"tailwind vue","tailwind next","tailwind nuxt","tailwind svelte","tailwind astro","tailwind laravel","reverse","switch", +"decompress-unzip","bz2","tar.gz","console-fail-test","eslint-plugin-deprecation","prettier-plugin-curly", +"should-semantic-release","yaml-eslint-parser","difference","is-arguments","is-date-object","side-channel","has-proto", +"equality","presentable-error","trash","unlink","cleaning","temp-write","callsite","read-package-json","infer", +"identify","tab","@eggjs/tsconfig","port","jsdiff", +"handlebars-loader","eslint-import-resolver-alias","Edge","matrix","iterative","insertion","deletion","backend-manager", +"cache-point","file-set","jsonify","doc-detective-common","doc-detective-resolver","@puppeteer/browsers","geckodriver", +"@balena/dockerignore","@grpc/proto-loader","istextorbinary","jschardet","assert-helpers","kava","projectz", +"valid-directory","content management system","dpdm","ghost","micromark-util-character","parse-filepath","chdir", +"tree-node-cli","imagemin-optipng","imagemin-gifsicle","glob-promise","websites","unist-util-is","simulant","height", +"domelementtype","@types/trusted-types","qunit-tap","secure","sanitizer","purify",".env","interpolation","repo", +"tarball","spawn-please","alex","babel-preset-fbjs","cypress-file-upload","dragndrop","drag and drop", +"@definitelytyped/utils","@definitelytyped/header-parser","@definitelytyped/typescript-versions", +"@types/strip-json-comments","@types/pixelmatch","eslint-plugin-lodash","os-locale","@types/vinyl-fs","fix", +"null-loader","grunt-contrib-compress", +"dmg","Windows","flatpak","@electron/asar","junk","rcedit","markdown-it-chain","lad","lass","smtp-server", +"calculate-cache-key-for-tree","core-object","p-defer","promise-map-series","quick-temp","sane","symlink-or-copy", +"tree-sync","watch-detector","chai-files","fixturify-project","ember","babel-plugin-debug-macros", +"@ember/optional-features","@ember/test-helpers","code-equality-assertions","ember-auto-import", +"ember-load-initializers","ember-qunit","ember-resolver","ember-source","ember-source-channel-url","eslint-plugin-ember", +"ember-addon","js-string-escape","enum","reporting","array.prototype.flat","function.prototype.name","is-callable", +"lodash.escape","has-bigints","make-arrow-function","@types/call-bind","@types/has-bigints","@types/has-symbols", +"@types/make-arrow-function","@types/make-async-function","@types/make-generator-function","@types/object.assign", +"fixtures","next-tick","addons","extras","broccoli-rollup","git-repo-version","broccoli-watchify","broccoli-uglify-js", +"babel6-plugin-strip-class-callcheck","babel-plugin-transform-es2015-constants","futures","__proto__", +"@eslint/plugin-kit","file-entry-cache", +"@types/esquery","eslint-plugin-expect-type","eslint-release","eslump","fs-teardown","node-polyfill-webpack-plugin", +"npm-license","eslint-find-rules","eslint config","automd","xoxo","happy","happiness","unrs-resolver", +"commitlint-azure-pipelines-cli","eslint-ava-rule-tester","@vuepress/plugin-pwa","comment","directive","@types/espree", +"gitdown","eslint-config-canonical","markdown-link-check","@angular-eslint/template-parser","spdx-expression-parse", +"@types/natural-compare","stylelint-config-recommended-vue","jsonc","jsx-ast-utils","to-ast","string.prototype.repeat", +"ls-engines","@types/estree-jsx","regexp-ast-analysis","@types/pako","mocha-chai-jest-snapshot","safe-regex", +"eslint-config-nodesecurity","nodesecurity","@types/postcss-safe-parser","regexp-tree","json-diff", +"karma-safaritechpreview-launcher","ethereum-cryptography","@types/assert","karma-typescript","os-tmpdir","qs-iconv", +"stream-combiner","flatmap","join","eventemitter","addEventListener","addListener","pub/sub","on","Events", +"eventEmitter","eventDispatcher","listeners","@sindresorhus/merge-streams","is-running","subprocess","binaries", +"stdio","@jest/expect-utils","@jest/get-type","type-check","pbkdf2-password","setprototypeof","autogenerate", +"autogenerator","autogenerated","authz","helpers","type-safe","unit-testing","covert","benchmarked","shallow", +"gulp-mustache","color-support","timestamp","pure-rand","jsverify","@nodelib/fs.walk","hereby","snap-shot-it","js2xml", +"json2xml","click","@fastify/error","find-my-way","process-warning","secure-json-parse","markdownlint-cli2","piscina", +"typescript-transform-paths","babel-plugin-minify-dead-code-elimination","web component","scanner", +"@types/glob-to-regexp","glob-to-regexp","art","banner","figure","fallback","pic","video","icns","psd","ico","cfb", +"docx","jp2","ods","heic","cur","jxl","icc","xlsm","jar","@firebase/app-compat","@firebase/auth-compat", +"@firebase/database-compat","Firebase","@types/bcrypt","@electric-sql/pglite-tools", +"gaxios","stream-json","universal-analytics","cdn","matcher-collection","@types/acorn","util-extend","sequential", +"fabric","@tailwindcss/postcss","cjs","react-addons-test-utils","redirect","location","@types/is-callable", +"forever-monitor","getopts","cli-testlab","jest-circus","combined-stream","@paralleldrive/cuid2","formdata-polyfill", +"hoc","read-dir-files","extra","mkdirs","output","any-promise","thenify-all","globule","insight","nitro","modular", +"pooling","iterable","reduce","available","scan","readablestream","deno","lodash.clone","opt-cli", +"eslint-config-kentcdodds","@primer/octicons","min-document","glob-stream","fnmatch","paths","java","google drive", +"@types/nunjucks","js-green-licenses","linkinator","pdfmake","lowercase-keys","p-cancelable","@hapi/bourne","requests", +"gulp-cli","strip-bom-string","assemble","coffee","google-protobuf","grunt-known-options", +"perf","compass","maxmin","less-plugin-clean-css","vow","@commitlint/travis-cli","TDD","grunt-release", +"spritesheet-templates","url2","eslint-config-twolfson","foundry","foundry-release-git","foundry-release-npm","usemin", +"@types/json5","series","gulp-footer","atom","prefixes","rewriting","bom","mark","versioning","object.pick", +"change-file-extension","mtime","rework","conflict","webserver","csscomb","rcloader","balanced-match","streamfilter", +"separate","@shinnn/eslint-config-node-legacy","any-shell-escape","nid","metapak","metapak-nfroidure","gulp-match", +"ternary-stream","exclude","imagemin-webp","strip-color","stylesheets","webcomponents","isparta","plugins","ng-annotate", +"easy-transform-stream","views","precompile","rev","revision","source-maps","sftp","@types/lodash.template", +"brotli-size","rwd","rendering","@types/ansi-colors","eslint-plugin-no-use-extend-native","array-uniq", +"lodash._reinterpolate","lodash.templatesettings","anymatch","proxy-middleware","catering", +"remark-lint-hard-break-spaces","remark-lint-list-item-indent","remark-validate-links","grunt-string-replace","gestures", +"grunt-contrib-requirejs","ammo","shot","wreck","vision","getopt","@types/core-js","sham","function-bind","hasOwn", +"hast-util-from-parse5","web-namespaces","estree-util-is-identifier-name","mdast-util-mdx-expression", +"esast-util-from-js","hyperscript","@vue/compiler-dom","js-yaml-js-types","moize","grunt-gh-pages","oxc-parser", +"wrangler","cloudflare","workers","@exodus/bytes","@types/he","commitlint-config-non-conventional","capture","mail", +"pug-loader","postproccessor","requires-port","agent-base","eol","@types/async-retry","post","camelize","demodulize", +"ordinalize","tableize","classify","foreign_key","gh-release","i18next-browser-languagedetector","unorm","identity", +"tiff","ow","p-pipe","image-dimensions","deep-freeze","every","renderToString","humanize", +"@types/signal-exit","eslint-config-xo-react","run-async","reify","yml", +"babel-plugin-transform-es3-member-expression-literals","babel-plugin-transform-es3-property-literals", +"babel-preset-es2015-rollup","prettier-eslint","country","leek","ssh-config","@ionic/utils-stream", +"@ionic/cli-framework","@ionic/utils-network","@ionic/utils-process","@ionic/utils-subprocess", +"@ionic/cli-framework-prompts","custom element","denque","extglob","globstar","pure","kind","writable", +"is-inside-container","compression-webpack-plugin","jstransformer-cdata","jstransformer-coffee-script", +"jstransformer-less","jstransformer-stylus","jstransformer-verbatim","stop","youtube","eslint-plugin-jasmine", +"@jest/fake-timers","jest-serializer-ansi-escapes","babel-plugin-add-import-extension","worker-farm", +"vite-plugin-node-polyfills","@rspack/cli","solid-js","firmata","Joystick","raspberry pi","robotics","rpi","usb", +"commitplease","grunt-git-authors","eslint-config-jquery","gzip-js","rollup-plugin-node-polyfills","cst", +"reserved-words","saxes","selenium-standalone","stylish","sort-on","dummy","jsonparse","trees","inflate", +"karma-junit-reporter", +"karma-script-launcher","hat","browserify-tool","browserstack-local","karma-reporter","firefox","safari","global-agent", +"lru.min","key-value","tarn","pg-query-stream","analyze","duplicate","workspace","lodash.sortby","explorer", +"gen-esm-wrapper","co-body","urlencoded","compose","mount","cpr","semver-regex","latest","karma-expect", +"prosthetic-hand","eslint-config-mourner","padding","numbers","cmd-shim","p-reduce","byte-size","has-unicode", +"libnpmaccess","libnpmpublish","load-json-file","init-package-json","validate-npm-package-license","copy-anything", +"benny","jit-grunt","less-plugin-autoprefix","mocha-teamcity-reporter","compile less","css variable","gradients css3", +"less css","less mixins","lesscss","nested css","bootstrap css","bootstrap less","airtap-playwright", +"@voxpelli/tsconfig","leveldb","async-each","level-concat-iterator","queue-microtask","airtap-sauce","levenshtein", +"levenshtein-edit-distance","comparison","matching", +"promise-retry","autolink","livereload-js","lws-static","full-stack","grunt-rollup","grunt-ts","isequal","omit", +"event-emitter","refresh","grunt-open","uid2","strong-remoting","loopback-datasource-juggler","StrongLoop","mBaaS", +"@commitlint/prompt-cli","embed","embedded","flip","mirror","fade","opacity","load-module","y18n","open-source","office", +"@nestjs/common","@nestjs/core","@nestjs/swagger","@nestjs/typeorm","@yarnpkg/lockfile","@codecov/bundle-analyzer", +"@nestjs/testing","crud","yaml-config","prototype","startup","@next/eslint-plugin-next","markdown-it-for-inline", +"markdown-it-sub","ndoc","emoticons","rows","theredoc","repeat-string","links","micromark-core-commonmark","jsonpointer", +"recheck","inline-style-prefixer","ndarray","sylvester","numeric","charenc", +"micromark-util-decode-numeric-character-reference","micromark-util-normalize-identifier","micromark-util-symbol", +"commonmark.json","mdast-util","micromark-util-sanitize-uri","mozilla","hashring", +"hashing","in-memory","fsa","fast-memoize","nanocolors","@babel/plugin-syntax-import-meta","fill-range","expansion", +"@types/mime-db","release-please","runmd","min heap","heap","priorityqueue","priority","searching","brace-expansion", +"make dir","conditional-type-checks","mobservable","mobx-react-lite","expose-gc","headless-chrome","test-console", +"junit","gopd","has-property-descriptors","descriptor","define","unittest","v8-natives","services","timezone","tz", +"vscode-languageserver-types","vscode-uri","@codemirror/lang-javascript","@cypress/code-coverage","GUI","UI","socks", +"mongodb-client-encryption","@aws-sdk/credential-providers","mongodb-runner","odm","datastore","backbone-callbacks", +"node-monitor","remote control","@types/mongodb","@fastify/websocket","json-bigint","pend","karma-story-reporter", +"timezone-mock","thenify","couchdb","@types/byline","@types/archiver","@types/marked-terminal","@types/npmcli__arborist", +"pegjs","sentiment analysis","nest", +"import-in-the-middle","require-in-the-middle","git-raw-commits","debugging","@edge-runtime/jest-environment", +"@types/nodemailer","@sinonjs/referee","mochify","internal","skeleton","tap-xunit","karma-tap-reporter","worker-loader", +"aes","gcm","sha256","sha512","messaging","maps","require-inject","biased-opener","pty","daemon","excel","xls","webkit", +"express-ws","jsonpath-plus","absolute","backslash","normalization","is-interactive","new-github-release-url","archy", +"fs-minipass","@npmcli/config","json-parse-even-better-errors","@npmcli/git","package manager","rc-config-loader", +"updater","jsonlines","vite-bundle-analyzer","versions","esbuild-node-externals","minizlib","babel-preset-latest","asap", +"node-libs-browser","node-machine-id","@yarnpkg/parsers","@napi-rs/wasm-runtime","Mobile","@readme/openapi-parser", +"gulp-exec","globalthis","util.inspect","access","notation","es-object-atoms","Object.assign","$.extend","_.extend", +"Object.values", +"entries","wrappy","define-lazy-prop","opens","xdg-open","hashish","livescript","yauzl-promise","@types/yauzl-promise", +"vscode","fifo","proclaim","compliance","screenshots","screengrab","para","idb-keyval","exist","zeptomatch","png-js", +"postgre","rdbms","sonic-boom","plurals","count","pidusage","logs","kubernetes","keymetrics","tap-dot", +"dependency manager","hardlinks","uninstall","popperjs","ports","manipulation","calc","read-cache", +"eslint-config-problems","comma","hsl","hwb","pleeease-filters","postcss-attribute-case-insensitive", +"postcss-color-hex-alpha","postcss-color-rebeccapurple","postcss-font-variant","postcss-pseudo-class-any-link", +"postcss-replace-overflow-wrap","postcss-selector-not","cssnext","at-rule","atrule","media","queries","declarative", +"@types/cssesc","@csstools/selector-resolve-nested","@csstools/postcss-oklab-function","transformations","processor", +"precommit","virtual dom","jest-light-runner", +"locale","error-handling","@pkgr/core","vcs","ohash","openapi-fetch","xdg-app-paths","get-port-please", +"openapi-typescript","@prisma/get-platform","@types/better-sqlite3","SQLite","PostgreSQL","MySQL","MariaDB","uglifyify", +"uglifyjs","alpha-sort","mdast-zone","git-semver-tags","protocol-buffers","@types/q","puppeteer-core","filter-obj", +"item","fuzzysort","grunt-search","browserstack-runner","xyz","tacit","fantasy-land","exceptions", +"babel-plugin-transform-rename-import","color picker","dnd-core","@types/doctrine", +"@babel/plugin-proposal-pipeline-operator","yarn-deduplicate","viewport","@webcomponents/custom-elements", +"isparta-loader","nullthrows","metro-runtime","metro-source-map","flow-enums-runtime","@react-native/codegen", +"@react-native/js-polyfills","@react-native/gradle-plugin","@react-native/assets-registry", +"@react-native/normalize-colors","@jest/create-cache-key-function","babel-plugin-syntax-hermes-parser", +"@react-native/community-cli-plugin","macos","@types/use-sync-external-store","wireit","combobox", +"@playwright/experimental-ct-react","slick","listify","@types/hash-sum","snackbar","esprima-fb", +"jest-environment-puppeteer", +"scrolling","infinite","virtualized","@storybook/addon-storysource","repl","@cfaester/enzyme-adapter-react-18", +"netlify-plugin-cache","replay","flux-standard-action","thunk","is-hidden","mermaid-isomorphic","remark-comment-config", +"remark-lint-definition-spacing","remark-lint-fenced-code-flag","remark-lint-file-extension", +"remark-lint-final-definition","remark-lint-first-heading-level","remark-lint-heading-style", +"remark-lint-no-consecutive-blank-lines","remark-lint-no-emphasis-as-heading","remark-lint-no-file-name-articles", +"remark-lint-no-file-name-consecutive-dashes","remark-lint-no-file-name-irregular-characters", +"remark-lint-no-file-name-mixed-case","remark-lint-no-file-name-outer-dashes","remark-lint-no-heading-indent", +"remark-lint-no-missing-blank-lines","remark-lint-no-multiple-toplevel-headings","remark-lint-no-shell-dollars", +"remark-lint-no-table-indentation","remark-lint-no-tabs","remark-lint-ordered-list-marker-value", +"remark-lint-table-pipe-alignment","remark-retext","retext-english","http-signature","karma-cli","stealthy-require", +"request-promise-core","thenable","@typescript-eslint/eslint-plugin-tslint","ResizeObserver","copy-dir","spdy","sigterm", +"kill","deepclone","performant","fast-clone","fast-deep-clone","rm -rf","rm -fr","prebuild","machine","date-time", +"bundling","rollup-plugin-prettier","buffer-es6","process-es6","graphlib","@types/d3-shape","treemap", +"@babel/plugin-syntax-bigint", +"@capsizecss/metrics","@edge-runtime/cookies","@edge-runtime/ponyfill","@edge-runtime/primitives","@napi-rs/triples", +"@next/polyfill-module","@next/polyfill-nomodule","@next/react-refresh-utils","@next/swc","@taskr/clear","@taskr/esnext", +"@types/ci-info","@types/content-disposition","@types/fresh","@types/lodash.curry","@types/path-to-regexp", +"@types/platform","@types/send","cli-select","comment-json","edge-runtime","ignore-loader","lodash.curry","native-url", +"taskr","unistore","@types/source-map","Streams","Stream","@sailshq/lodash","flaverr","parley","rttc","sails.js", +"parse-srcset","helpful","opensourcesoftware","teaching","experimentation","applications","eslint-config-standard-jsx", +"standard-engine","ibm_db","mariadb","hardware","is-port-reachable","@aws-sdk/client-dynamodb","@aws-sdk/client-sns", +"@aws-sdk/client-sqs","@aws-sdk/client-sts","@aws-sdk/lib-dynamodb","@aws-sdk/util-dynamodb","aws-cdk-lib", +"esbuild-runner","quote","shelljs-changelog","shelljs-release","custom-event","rollup-plugin-analyzer","vendor", +"totalist","@types/sax","eventsource","sockjs", +"separated","@graphql-tools/merge","@graphql-tools/utils","graphql-scalars","json-stringify-pretty-compact","imageinfo", +"run-parallel-limit","std-mocks","modern-syslog","@storybook/global","@vitest/utils","launch-editor","unique-string", +"@types/detect-port","@radix-ui/react-slot","@types/pretty-hrtime","component-testing","@storybook/addon-onboarding", +"@storybook/test","django","columns","fullwidth","full-width","fixed-width","east-asian-width","strong-agent", +"strong-supervisor","core-util-is","metrics","npmrc","response","@types/stylis","@types/react-frame-component", +"react-frame-component","@changesets/get-github-info","@stylelint/prettier-config","@stylelint/remark-preset", +"eslint-config-stylelint","cookiejar","sw-precache","framework7","sync-rpc","cpu","processes","gpu","audio", +"resolve-import","ecstatic","brittle","actor system","DDD","actor-system","back end","tdlib","tempdir","tmpfile", +"unique","charm","elegant-spinner","automated","@types/tar-fs","codeclimate-test-reporter","jpeg-js","3d", +"webgl","get-port-cli","streams2","homedir","tilde","collapse","tldts","bs-logger","make-error","migrations", +"@tsd/typescript","Microsoft","fix-dts-default-cjs-exports","ts-essentials","DOM","generics","typedoc-plugin", +"typedocplugin","latex","azure-devops-node-api","retext","unist-util","jquery-plugin","ecosystem:jquery","@types/busboy", +"@vue/runtime-core","@vercel/routing-utils","artichokie","periscopic","http-proxy-3","host-validation-middleware", +"@vueuse/integrations","tinyrainbow","@vitest/runner","local-pkg","@edge-runtime/vm","@antfu/install-pkg","eyes","BDD", +"@types/cheerio","eslint-plugin-vue-libs","cache-loader","zoomable","ansi-html-community","klona","taffydb","logform", +"@dabh/eslint-config-populist","winston-compat","Push","WebSockets","jsonpath","whitelist","@yeoman/namespace", +"@yeoman/transform","@yeoman/types","mem-fs-editor","@yeoman/eslint","esmocha","@types/cookie-parser","@types/morgan", +"@types/systemjs","pose","react pose", +"framer","waapi","@docusaurus/module-type-aliases","@testing-library/preact","babel-preset-react-native","get-pkg-repo", +"textarea","@augment-vir/core","@date-vir/duration","@web/dev-server-esbuild","istanbul-smart-text-reporter","augment", +"vir","augment-vir","@svgr/babel-preset","svg-url-loader","@vue/cli-plugin-babel","@vue/cli-plugin-typescript", +"@vue/cli-service","eslint-plugin-prettier-vue","vue 3","bplist-parser","minimal","gdpr","slide", +"@chromatic-com/storybook","@storybook/addon-webpack5-compiler-babel","chromatic","animatable","customizable", +"babel-plugin-dev-expression","vitest-axe","sortable","reorder","@rollup/plugin-eslint","scope","codeceptjs", +"@intlayer/config","@intlayer/types","@utils/ts-config","@utils/ts-config-types","@utils/tsdown-config","@enact/i18n", +"ilib","ahooks","@reporters/github","admin panel","self hosted","lernajs","vuepress-plugin-container", +"@types/lodash.isnumber","@walletconnect/legacy-types","@walletconnect/legacy-utils","center","selenium-mock", +"body scroll","body scroll lock","react scroll lock","react scroll","freeze","disable","overflow","vanilla-js","bsl", +"broccoli-node-info","verb","what-the-diff","gotrue-js","git-gateway","gateway","creator","vite-plugin-svgr", +"@atomico/rollup-plugin-sizes","convict","@applitools/test-utils","xxhash-wasm","expressots","clean-architecture", +"typescript-framework","withastro","astro-integration","@internal/test-utils","code-blocks","syntax-highlighting", +"eslint-import-resolver-custom-alias","resolve-tspaths","@publint/pack","unplugin-unused","@ckeditor/ckeditor5-comments", +"@ckeditor/ckeditor5-track-changes","CKEditor","WYSIWYG","WYSIWYW","rich-text","visual testing","@tanstack/vue-virtual", +"radix-ui","chatbot","chatgpt","draggable","drizzle-orm","@antfu/ni","survey-renderer","flmngr","@applitools/snippets", +"@antora/asciidoc-loader","vite-plugin-dts-bundle-generator","vite-plugin-pages","vite-plugin-typescript","game","2d", +"replace-in-files-cli","jugglingdb","@alifd/next","@angular/http","@angular/platform-server","@angular/router", +"@ant-design/react-native","@auth/sveltekit","@api-components/api-method-documentation","@apollo/client", +"@babel/runtime-corejs2","@biz-dev-ops/md-docs","@bwcr_/winston-loki","@chatscope/chat-ui-kit-react", +"@ckeditor/ckeditor5-angular","@ckeditor/ckeditor5-build-balloon","@ckeditor/ckeditor5-build-balloon-block", +"@ckeditor/ckeditor5-build-classic","@ckeditor/ckeditor5-build-decoupled-document","@ckeditor/ckeditor5-build-inline", +"@ckeditor/ckeditor5-react","@ckeditor/ckeditor5-vue","@compodoc/compodoc","@comunica/core","@contenthook/browser", +"@contenthook/cli","@contenthook/node","@coreui/coreui","@deven-org/documentation-skeleton", +"@devtea2026/aspernatur-ea-non-porro","@devtea2026/consectetur-ab-unde-quisquam", "@devtea2026/cupiditate-dolorem-excepturi-impedit","@devtea2026/distinctio-soluta-illo-eaque", "@devtea2026/eum-ullam-est-distinctio","@devtea2026/explicabo-alias-architecto-sed","@devtea2026/improved-journey", "@devtea2026/inventore-facilis-corporis-cum","@devtea2026/ipsa-omnis-in-molestiae", @@ -45,22 +1025,19 @@ "@diotoborg/psychic-bassoon","@diotoborg/quasi-repellat-odit","@diotoborg/qui-ullam-ipsum", "@diotoborg/quo-dolorem-ducimus","@diotoborg/ratione-error-odio","@diotoborg/repellat-blanditiis-quis", "@diotoborg/tempora-voluptas-distinctio","@diotoborg/ullam-dignissimos-repudiandae","@diotoborg/velit-reiciendis-velit", -"@diotoborg/verbose-robot","@diplodoc/transform","@discordjs/rest","@disqada/workspace","@doc-tools/docs", -"@doc-tools/transform","@dramaorg/esse-praesentium-eligendi","@dramaorg/quae-dolore-nostrum","@eas-framework/server", -"@eightshift/frontend-libs","@electron/docs-parser","@emotion/babel-plugin","@emotion/core","@emotion/css", -"@emotion/styled","@erboladaiorg/ad-exercitationem-ducimus","@erboladaiorg/asperiores-earum-quaerat", -"@erboladaiorg/asperiores-fuga-sint","@erboladaiorg/asperiores-nam-adipisci","@erboladaiorg/autem-dolores-ipsam", -"@erboladaiorg/cupiditate-consectetur-porro","@erboladaiorg/cupiditate-pariatur-optio", -"@erboladaiorg/distinctio-tempora-quis","@erboladaiorg/error-atque-ea","@erboladaiorg/esse-ipsa-numquam", -"@erboladaiorg/ex-hic-molestias","@erboladaiorg/explicabo-eius-adipisci", +"@diotoborg/verbose-robot","@diplodoc/transform","@disqada/workspace","@doc-tools/docs", +"@dramaorg/esse-praesentium-eligendi","@dramaorg/quae-dolore-nostrum","@eas-framework/server", +"@eightshift/frontend-libs","@electron/docs-parser","@erboladaiorg/ad-exercitationem-ducimus", +"@erboladaiorg/asperiores-earum-quaerat","@erboladaiorg/asperiores-fuga-sint","@erboladaiorg/asperiores-nam-adipisci", +"@erboladaiorg/autem-dolores-ipsam","@erboladaiorg/cupiditate-consectetur-porro", +"@erboladaiorg/cupiditate-pariatur-optio","@erboladaiorg/distinctio-tempora-quis","@erboladaiorg/error-atque-ea", +"@erboladaiorg/esse-ipsa-numquam","@erboladaiorg/ex-hic-molestias","@erboladaiorg/explicabo-eius-adipisci", "@erboladaiorg/molestiae-voluptatibus-perferendis","@erboladaiorg/molestias-nulla-dolor","@erboladaiorg/nisi-culpa-cum", "@erboladaiorg/officia-illum-aperiam","@erboladaiorg/perspiciatis-magni-ut","@erboladaiorg/quae-in-veniam", "@erboladaiorg/quaerat-mollitia-adipisci","@erboladaiorg/quibusdam-itaque-tempora","@erboladaiorg/sint-deleniti-dolorem", "@erboladaiorg/sit-nesciunt-amet","@erboladaiorg/tenetur-architecto-dolore","@erboladaiorg/ut-dignissimos-laborum", -"@erboladaiorg/velit-fugit-harum","@eslint-community/eslint-utils","@eslint/js","@fakeyanss/redoc", -"@floating-ui/react-dom","@fontsource/inter","@fontsource/roboto","@fortawesome/fontawesome-svg-core", -"@fortawesome/free-solid-svg-icons","@fortawesome/react-fontawesome","@grandlinex/core","@grandlinex/e-kernel", -"@grandlinex/kernel","@graphql-markdown/core","@graphql-markdown/docusaurus","@hajtech/webpack-config","@hapi/hapi", +"@erboladaiorg/velit-fugit-harum","@fakeyanss/redoc","@fontsource/inter","@fontsource/roboto","@grandlinex/e-kernel", +"@grandlinex/kernel","@graphql-markdown/core","@graphql-markdown/docusaurus","@hajtech/webpack-config", "@hishprorg/aliquid-ad-vero","@hishprorg/autem-sint-quas","@hishprorg/cum-rem-consequuntur", "@hishprorg/earum-sint-veritatis","@hishprorg/eius-vero-dicta","@hishprorg/est-dicta-quis", "@hishprorg/incidunt-quibusdam-tempore","@hishprorg/itaque-esse-accusamus","@hishprorg/iure-optio-nihil", @@ -68,38 +1045,29 @@ "@hishprorg/nihil-ad-ratione","@hishprorg/perspiciatis-ratione-unde","@hishprorg/quis-perferendis-culpa", "@hishprorg/reprehenderit-excepturi-sed","@hishprorg/sint-nam-consequuntur","@hishprorg/sunt-officia-eligendi", "@hishprorg/sunt-voluptatem-nobis","@hishprorg/unde-vitae-reprehenderit","@hishprorg/wafflejs", -"@homer0/prettier-plugin-jsdoc","@hookform/resolvers","@iamtraction/google-translate","@idux/cdk","@idux/components", -"@inquirer/core","@ionic/core","@isaacs/cliui","@istanbuljs/nyc-config-typescript","@itwin/itwinui-react","@jest/core", -"@jest/types","@jsonforms/core","@jsonforms/material-renderers","@jsonforms/react","@juigorg/nisi-molestiae-ut", -"@juigorg/sit-nam-neque","@jupyterlab/application","@kobedevi/sassdoc","@kollorg/dicta-itaque-nemo", -"@kollorg/nihil-veniam-deserunt","@libphamton/chatfanpage","@libphamton/fb-group","@listr2/prompt-adapter-inquirer", -"@mantine/core","@mantine/dates","@mantine/hooks","@mantine/modals","@mantine/notifications","@mantine/prism", -"@mantine/styles","@mantine/utils","@material-ui/core","@material-ui/icons","@mathematikoi/jsonapi","@mdx-js/react", -"@microsoft/api-extractor","@microsoft/tsdoc","@microsoft/tsdoc-config","@middy/core","@middy/http-json-body-parser", -"@middy/util","@ministryofjustice/frontend","@mswjs/interceptors","@mui/icons-material","@mui/lab","@mui/material", -"@mui/system","@mui/x-date-pickers","@neato/guider","@ng-doc/core","@ng-doc/ui-kit","@ng-doc/utils", -"@nomicfoundation/hardhat-chai-matchers","@npmcli/arborist","@npmcli/map-workspaces","@npmcli/node-gyp", -"@npmcli/run-script","@npmcorp/marky-markdown","@npmtuanmap/ex-vel-expedita-impedit","@npmtuanmap/psychic-guide", -"@npmtuanmap/recusandae-recusandae-nam-et","@npmtuanmap/sed-quo-nemo-rerum","@npmtuanmap/velit-esse-velit-magnam", -"@nrwl/devkit","@nrwl/tao","@nrwl/workspace","@nx/devkit","@nx/esbuild","@nx/eslint","@nx/express","@nx/js","@nx/nest", -"@nx/node","@nx/workspace","@oclif/command","@oclif/config","@oclif/core","@oclif/plugin-help","@octokit/rest", -"@opentiny/vue","@opentiny/vue-renderless","@opentiny/vue-theme","@opentiny/vue-theme-mobile","@otterhttp/cookie", -"@otterhttp/request","@otterhttp/response","@otterhttp/send","@pact-foundation/pact","@patrtorg/a-ad-expedita", +"@homer0/prettier-plugin-jsdoc","@hookform/resolvers","@iamtraction/google-translate","@idux/components", +"@itwin/itwinui-react", +"@jsonforms/material-renderers","@juigorg/nisi-molestiae-ut","@juigorg/sit-nam-neque","@jupyterlab/application", +"@kobedevi/sassdoc","@kollorg/dicta-itaque-nemo","@kollorg/nihil-veniam-deserunt","@libphamton/chatfanpage", +"@libphamton/fb-group","@listr2/prompt-adapter-inquirer","@mantine/dates","@mantine/modals","@mantine/prism", +"@mantine/styles","@material-ui/core","@material-ui/icons","@mathematikoi/jsonapi","@middy/http-json-body-parser", +"@ministryofjustice/frontend","@mui/lab","@neato/guider","@ng-doc/ui-kit","@ng-doc/utils","@npmcorp/marky-markdown", +"@npmtuanmap/ex-vel-expedita-impedit","@npmtuanmap/psychic-guide","@npmtuanmap/recusandae-recusandae-nam-et", +"@npmtuanmap/sed-quo-nemo-rerum","@npmtuanmap/velit-esse-velit-magnam","@nrwl/devkit","@nrwl/tao","@nrwl/workspace", +"@nx/esbuild","@nx/express","@nx/nest","@oclif/command","@opentiny/vue","@opentiny/vue-renderless","@opentiny/vue-theme", +"@opentiny/vue-theme-mobile","@otterhttp/response","@pact-foundation/pact","@patrtorg/a-ad-expedita", "@patrtorg/a-ut-amet","@patrtorg/asperiores-vel-accusantium","@patrtorg/aspernatur-dolorum-ducimus", -"@patrtorg/autem-et-hic", -"@patrtorg/consectetur-culpa-non","@patrtorg/consectetur-repudiandae-consequuntur", +"@patrtorg/autem-et-hic","@patrtorg/consectetur-culpa-non","@patrtorg/consectetur-repudiandae-consequuntur", "@patrtorg/consequatur-voluptatum-officiis","@patrtorg/ducimus-magni-quibusdam","@patrtorg/enim-magni-hic", "@patrtorg/est-corrupti-deleniti","@patrtorg/eveniet-tempore-maiores","@patrtorg/illum-sapiente-quos", "@patrtorg/laborum-doloribus-voluptate","@patrtorg/libero-doloribus-omnis","@patrtorg/libero-voluptas-sequi", "@patrtorg/magnam-aut-adipisci","@patrtorg/maiores-quidem-quo","@patrtorg/molestias-molestias-ut", -"@patrtorg/nam-eius-unde","@patrtorg/pariatur-deleniti-quaerat","@patrtorg/porro-labore-eos","@patrtorg/quae-earum-eius", -"@patrtorg/quos-quasi-ipsa","@patrtorg/sapiente-eos-magnam","@patrtorg/sapiente-exercitationem-sit", -"@patrtorg/tenetur-animi-reprehenderit","@perseid/store","@phosphor/widgets","@phun-ky/speccer","@polymer/polymer", -"@qooxdoo/framework","@quasar/extras","@readyplayerme/visage","@reduxjs/toolkit","@rollup/plugin-commonjs", -"@rollup/plugin-node-resolve","@sanity/tsdoc","@scalar/api-reference","@scalar/fastify-api-reference", -"@serenity-js/protractor","@serenity-js/webdriverio","@sinonjs/fake-timers","@storybook/addon-docs", -"@subwallet/react-ui","@supernovaio/sdk","@supernovaio/sdk-exporters","@supernovaio/supernova-sdk", -"@sveltejs/eslint-config","@sveltejs/kit","@sveltejs/vite-plugin-svelte","@svgr/webpack","@swc/core", +"@patrtorg/nam-eius-unde","@patrtorg/pariatur-deleniti-quaerat","@patrtorg/porro-labore-eos", +"@patrtorg/quae-earum-eius","@patrtorg/quos-quasi-ipsa","@patrtorg/sapiente-eos-magnam", +"@patrtorg/sapiente-exercitationem-sit","@patrtorg/tenetur-animi-reprehenderit","@perseid/store","@phosphor/widgets", +"@phun-ky/speccer","@polymer/polymer","@qooxdoo/framework","@quasar/extras","@readyplayerme/visage","@sanity/tsdoc", +"@scalar/fastify-api-reference","@serenity-js/protractor","@serenity-js/webdriverio","@subwallet/react-ui", +"@supernovaio/sdk","@supernovaio/sdk-exporters","@supernovaio/supernova-sdk","@sveltejs/eslint-config", "@swenkerorg/maiores-voluptatibus-nemo","@swenkerorg/modi-dolorum-provident","@swenkerorg/nulla-voluptates-voluptates", "@swisspost/design-system-styles","@symbiotejs/symbiote","@synion/md-docs","@taktikorg/aut-distinctio-repellat", "@taktikorg/consectetur-quo-quos","@taktikorg/corporis-nihil-odit","@taktikorg/deleniti-qui-dolorem", @@ -110,1871 +1078,994 @@ "@taktikorg/placeat-voluptates-dolorum","@taktikorg/praesentium-dolorum-quis","@taktikorg/praesentium-neque-ipsam", "@taktikorg/quo-reiciendis-quibusdam","@taktikorg/recusandae-ratione-veniam","@taktikorg/similique-natus-officia", "@taktikorg/suscipit-modi-ratione","@taktikorg/tempore-veniam-in","@taktikorg/unde-animi-omnis", -"@taktikorg/velit-nobis-blanditiis","@taktikorg/voluptatem-pariatur-tenetur","@tanem/svg-injector", -"@tanstack/react-query","@tanstack/svelte-query","@teamhanko/hanko-frontend-sdk","@testing-library/cypress", -"@testing-library/dom","@testing-library/jest-dom","@testing-library/jest-native","@testing-library/react", -"@testing-library/user-event","@tinyhttp/app","@tinyhttp/cookie","@tinyhttp/cookie-signature","@tinyhttp/cors", -"@tinyhttp/etag","@tinyhttp/forwarded","@tinyhttp/proxy-addr","@tinyhttp/req","@tinyhttp/res","@tinyhttp/router", -"@tinyhttp/send","@tinyhttp/type-is","@tinyhttp/url","@tsparticles/engine","@twurple/ebs-helper","@types/estree", -"@typescript-eslint/eslint-plugin","@typescript-eslint/parser","@typescript-eslint/utils","@ucloud-fe/react-components", -"@udecode/plate-core","@uiw/react-button","@uiw/react-icon","@uiw/react-input","@uiw/react-overlay-trigger","@uiw/utils", -"@unleash/proxy","@uploadcare/file-uploader","@vitejs/plugin-legacy","@vitejs/plugin-react", -"@vue/eslint-config-typescript","@wesleytodd/openapi","@wuxh/dumi","@zitterorg/adipisci-quae-eius", -"@zitterorg/aspernatur-pariatur-occaecati","@zitterorg/at-esse-odit","@zitterorg/cum-ipsum-beatae", -"@zitterorg/doloremque-ut-omnis","@zitterorg/est-sunt-quos","@zitterorg/eum-veritatis-placeat", -"@zitterorg/fluffy-waddle","@zitterorg/glowing-barnacle","@zitterorg/illum-perferendis-consectetur", -"@zitterorg/itaque-nisi-veritatis","@zitterorg/probable-octo","@zitterorg/upgraded-fishstick", -"@zkportal/aleo-oracle-sdk","abort-controller","accepts","acl","acorn","acorn-walk","action-cli","adm-zip","after", -"agenda","aid-guard1","airtap","ajv","ajv-formats","although-line-wall-corn","amqp","amqplib","analsorhost-simple-bs", -"angular","angular-animate","angular-cli","angular-material","ansi-colors","ansi-escapes","ansi-regex","ansi-styles", -"ansis","ant-design-vue","antd","antfu","anyway-south-boy-pilot","api-console","apidoc","apidoc-markdown","apn", -"apollo-cache-inmemory","apollo-client","apollo-link","apollo-link-http","app-root-path","appium-android-driver", -"apple-transportation-web3-locate","applicationinsights","appsync-client-node","archiver","arg","argparse", -"arrangement-tell-arrange","array.prototype.flatmap","arrify","assert","assert-plus","assume","async","async-listen", -"async-retry","async-validator","atob","aud","auto-changelog","auto-install","autoprefixer","ava", -"awesome-typescript-loader","aws-sdk","axe-core","axios","azure-storage","babel","babel-cli","babel-core","babel-eslint", -"babel-generator","babel-helper-fixtures","babel-helper-plugin-test-runner","babel-helper-vue-jsx-merge-props", -"babel-jest","babel-loader","babel-plugin-add-module-exports","babel-plugin-dynamic-import-node", -"babel-plugin-external-helpers","babel-plugin-import","babel-plugin-istanbul","babel-plugin-lodash", -"babel-plugin-module-resolver","babel-plugin-named-asset-import","babel-plugin-syntax-dynamic-import", -"babel-plugin-syntax-jsx","babel-plugin-transform-async-to-generator","babel-plugin-transform-class-properties", -"babel-plugin-transform-decorators-legacy","babel-plugin-transform-es2015-block-scoping", -"babel-plugin-transform-es2015-modules-commonjs","babel-plugin-transform-es2015-template-literals", -"babel-plugin-transform-object-rest-spread","babel-plugin-transform-react-jsx", -"babel-plugin-transform-react-remove-prop-types","babel-plugin-transform-regenerator","babel-plugin-transform-runtime", -"babel-polyfill","babel-preset-airbnb","babel-preset-env","babel-preset-es2015","babel-preset-react", -"babel-preset-react-app","babel-preset-stage-0","babel-preset-stage-1","babel-preset-stage-2","babel-preset-stage-3", -"babel-register","babel-runtime","babel-template","babel-traverse","babel-types","babelify","babylon","backbone", -"baqend","bark-needs-visit4", -"base-64","base-individual-comfortable-crop","base64-js","basic-auth","batuta","bcrypt","bcrypt-nodejs","bcryptjs", -"bearcat","beautify-benchmark","beauty-foot-compass5","beefy","believed-usually-greater-passage","benchmark", -"best-lips-shoulder","best-valley2","between-cry-additional","beyond","bfj","bignumber.js","bindings","bip39", -"bizcharts","bl","blanket","blessed","blessed-contrib","blockchain-am5","blockchain-baby","blockchain-back1", -"blockchain-closely","blockchain-directly","blockchain-egg","blockchain-happily","blockchain-language","blockchain-own8", -"blockchain-record","blockchain-scientist","blocked","bluebird","bn.js","body-parser","bookshelf","boom","bootstrap", -"bootstrap-sass","bower","boxen","brain","branch-body-web3-feel","branch-camera-web3-organization","brfs", -"broccoli-funnel","broccoli-merge-trees","broccoli-test-helper","brought-tried-whether8","browser-sync","browserify", -"browserify-shim","browserslist","bs58","bson","btoa","buble", -"buffer","buffer-equal","bufferutil","built-who-entire","builtin-modules","bulma","bump-cli","bundle-collapser","bunyan", -"busboy","bytebuffer","bytes","c8","cac","cache-manager","call-bind","camelcase","caniuse","caniuse-lite","canvas", -"careful-faster-dirty-matter","case-sensitive-paths-webpack-plugin","casperjs","caught-brain-service0","chai", -"chai-as-promised","chai-passport-strategy","chai-subset","chalk","chance","chance-able-necessary-bell","change-case", -"changelogen","chart.js","cheerio","chicken-fell-spread","child_process","child-process-promise","choerodon-ui", -"chokidar","ci-info","ckeditor5","classnames","clean-css","clean-webpack-plugin","clear","clear-module","cli", -"cli-boxes","cli-color","cli-cursor","cli-spinner","cli-spinners","cli-table","cli-table2","cli-table3","cli-truncate", -"cli-ux","clipanion","clipboard","clipboardy","cliui","clone","clsx", -"clui","co","co-prompt","code","codecov","codemirror","coffee-script","coffeescript","color","colorette","colors", -"columnify","command-exists","command-line-args","command-line-usage","commander","commitizen","commitlint", -"common-tags","component-emitter","compression","concat-stream","concurrently","config","configstore","connect", -"connect-flash","connect-history-api-fallback","connect-mongo","connect-redis","consola","consolidate", -"content-disposition","content-type","contenthook","conventional-changelog","conventional-changelog-cli", -"conventional-changelog-conventionalcommits","convert-source-map","cookie","cookie-parser","cookie-session", -"cookie-signature","copy-to-clipboard","copy-webpack-plugin","copyfiles","corcojs-qrcode","corcojs-qrcode-logo", -"cordova","core-js","cors","cosmiconfig","coveralls","cpy-cli","crawler","crc","create-hash","create-react-class", -"critical","cron","croner","cronnor","cropperjs","cross-env", -"cross-fetch","cross-spawn","crypto","crypto-browserify","crypto-js","cson-parser","cspell","css", -"css-declaration-sorter","css-functions-list","css-loader","css-minimizer-webpack-plugin","css-select","css-tree", -"cssdb","cssesc","cssnano","cssstyle","csstype","csurf","csv","csv-generate","csv-parse","csv-stringify","csvtojson", -"cucumber","cuid","cypress","cz-conventional-changelog","d3","d3-array","d3-scale","d3-selection","d3-shape", -"dable-effect","daisyui","dance-you-thou","dargs","datafire","date-fns","dateformat","dayjs","deasync","debounce", -"debug","decamelize","decompress","dedent","dedupe","deep-assign","deep-consist-ability3","deep-diff","deep-eql", -"deep-equal","deep-extend","deepmerge","del","del-cli","delay","depcheck","depd","dependency-check","depth-clay-tax7", -"detect-indent", -"detect-port","did-enter-lay","diff","diff2html","difference-mile-pocket5","directed-graph-typed","dirty-chai", -"discord-backend-manager","discord.js","dist","distance-its-clear-rate","dmd","dmd-grunt-jsdoc2md","dnd-multi-backend", -"dnode","doc-detective","doc-detective-core","docco","docgen","dockerode","docpad","docschema","docsify-tabs","doctoc", -"documentation","documentdb","docusaurus","docusaurus-lunr-search","dom-helpers","dom-serializer","dom-to-image-more", -"dompurify","dot","dotenv","dotenv-expand","download","download-git-repo","doxdox","doxdox-cli","doxdox-core", -"doxdox-parser-dox","doxdox-parser-jsdoc","doxdox-renderer-bootstrap","doxdox-renderer-json","doxdox-renderer-markdown", -"draft-js","dropzone","dtslint","dubnium","dumi","dumi-cm","duplexer","dw-neit-antd","each","echarts","eclint","ejs", -"elasticsearch","electricity-death-web3-story","electron","electron-builder","electron-packager","electron-prebuilt", -"electron-rebuilder", -"element-resize-detector","element-ui","eleventy","elliptic","email-templates","emailjs","ember-cli","ember-cli-babel", -"ember-cli-htmlbars","emmet","emotion","encodeurl","end-of-stream","enhanced-resolve","enquirer","ent","enumtype", -"envify","envinfo","enzyme","enzyme-adapter-react-16","enzyme-adapter-utils","enzyme-shallow-equal","errorhandler", -"es-check","es-value-fixtures","es5-ext","es5-shim","es6-error","es6-promise","es6-promisify","es6-shim","esbuild", -"escape-html","escape-string-regexp","escodegen","eslint","eslint-config-airbnb","eslint-config-airbnb-base", -"eslint-config-airbnb-typescript","eslint-config-google","eslint-config-gulp","eslint-config-oclif", -"eslint-config-oclif-typescript","eslint-config-prettier","eslint-config-react-app","eslint-config-semistandard", -"eslint-config-standard","eslint-config-unjs","eslint-config-xo","eslint-config-xo-lass","eslint-doc-generator", -"eslint-import-resolver-typescript","eslint-loader","eslint-plugin-ava","eslint-plugin-babel","eslint-plugin-compat", -"eslint-plugin-es5","eslint-plugin-eslint-comments","eslint-plugin-eslint-plugin","eslint-plugin-flowtype", -"eslint-plugin-html","eslint-plugin-import","eslint-plugin-jest", -"eslint-plugin-jsdoc","eslint-plugin-jsonc","eslint-plugin-jsx-a11y","eslint-plugin-markdown","eslint-plugin-mocha", -"eslint-plugin-n","eslint-plugin-node","eslint-plugin-prettier","eslint-plugin-promise","eslint-plugin-react", -"eslint-plugin-react-hooks","eslint-plugin-regexp","eslint-plugin-security","eslint-plugin-sonarjs", -"eslint-plugin-standard","eslint-plugin-svelte","eslint-plugin-testing-library","eslint-plugin-tsdoc", -"eslint-plugin-unicorn","eslint-plugin-vitest","eslint-plugin-vue","eslint-remote-tester","eslint-scope", -"eslint-visitor-keys","eslintrc","esm","espree","esprima","estraverse","estree-walker","etag","ethereumjs-tx", -"ethereumjs-util","evalmd","event-stream","eventemitter2","eventemitter3","events","excellent-difficult-good","execa", -"exit","expect","expect-type","expect.js","express","express-adexe","express-autodoc","express-generator", -"express-handlebars","express-jwt","express-session","express-tools","express-typed-rpc","express-validator", -"express-zod-api","extend","extend-shallow","extract-text-webpack-plugin","extract-zip","facing-cook", -"fair-tower-web3-store","faker","fancy-log","fast-check", -"fast-csv","fast-deep-equal","fast-glob","fast-plist","fast-xml-parser","fastclick","fastify","father","faucet","fbjs", -"fe-pilot","feature-rising-small7","femo","fetch-mock","fibers","figlet","figures","file-loader","file-saver", -"file-type","filesize","finalhandler","find-cache-dir","find-up","findup-sync","firan-logging","firebase", -"firebase-admin","firebase-tools","fixpack","fixturify","flat","flatpak-bundler","flatpickr","flightplan","flow-bin", -"flowbite","fluent-ffmpeg","flux","follow-redirects","font-awesome","for-each","forever", -"fork-ts-checker-webpack-plugin","fork-ts-checker-webpack-plugin-alt","form-data","formidable","formik","fresh", -"fresh-dangerous","friendly-errors-webpack-plugin","front-matter","fs","fs-extra","fs-jetpack","fs-promise","fsevents", -"fstream","ftp","functions-have-names","fur-race-web3-pale","fuse.js","futen","fuzzy", -"gaze","gc-signals","generator-angular","generator-gulp-angular","generator-nitro","generic-pool","gensequence", -"gentle-party-other","geolib","get-package-type","get-port","get-stdin","get-stream","get-tsconfig","getmac","gh-pages", -"ghooks","github","github-buttons","glob","glob-parent","global","globals","globby","gm","gmll","google-spreadsheet", -"googleapis","got","government-letter-web3-till","govuk-frontend","graceful-fs","gradually-current-chief","graph-these", -"graphql","graphql-tag","graphql-tools","gray-matter","grpc","grunt","grunt-angular-templates","grunt-auto-release", -"grunt-browserify","grunt-bump","grunt-cli","grunt-concurrent","grunt-contrib-clean","grunt-contrib-compass", -"grunt-contrib-concat","grunt-contrib-connect","grunt-contrib-copy","grunt-contrib-csslint","grunt-contrib-cssmin", -"grunt-contrib-htmlmin","grunt-contrib-imagemin","grunt-contrib-internal","grunt-contrib-jshint","grunt-contrib-less", -"grunt-contrib-nodeunit","grunt-contrib-sass","grunt-contrib-uglify","grunt-contrib-watch", -"grunt-conventional-changelog","grunt-conventional-github-releaser", -"grunt-eslint","grunt-jscs","grunt-jsdoc","grunt-karma","grunt-mocha-test","grunt-newer","grunt-notify","grunt-npm", -"grunt-sass","grunt-saucelabs","grunt-shell","grunt-simple-mocha","grunt-spritesmith","grunt-usemin","gts","guarapi", -"gulp","gulp-angular-templatecache","gulp-atom-electron","gulp-autoprefixer","gulp-awspublish","gulp-azure-storage", -"gulp-babel","gulp-bom","gulp-bower","gulp-browserify","gulp-buffer","gulp-bump","gulp-cache","gulp-cached", -"gulp-changed","gulp-clean","gulp-clean-css","gulp-coffee","gulp-compass","gulp-concat","gulp-concat-css", -"gulp-conflict","gulp-connect","gulp-copy","gulp-csscomb","gulp-csslint","gulp-cssnano","gulp-csso","gulp-data", -"gulp-eslint","gulp-file-include","gulp-filter","gulp-flatmap","gulp-flatten","gulp-format-md","gulp-ftp", -"gulp-gh-pages","gulp-git","gulp-gzip","gulp-handlebars","gulp-header","gulp-html-replace","gulp-htmlmin", -"gulp-iconfont","gulp-if","gulp-ignore","gulp-image-resize","gulp-imagemin", -"gulp-include","gulp-inject","gulp-inline-css","gulp-install","gulp-istanbul","gulp-jade","gulp-jasmine","gulp-jscs", -"gulp-jshint","gulp-json-editor","gulp-less","gulp-livereload","gulp-load-plugins","gulp-minify-css","gulp-minify-html", -"gulp-mocha","gulp-newer","gulp-ng-annotate","gulp-nodemon","gulp-notify","gulp-plugin-extras","gulp-plumber", -"gulp-postcss","gulp-preprocess","gulp-prompt","gulp-react","gulp-remote-src","gulp-rename","gulp-replace","gulp-rev", -"gulp-rev-replace","gulp-ruby-sass","gulp-sass","gulp-sftp","gulp-shell","gulp-size","gulp-sourcemaps", -"gulp-strip-debug","gulp-stylus","gulp-svg-sprite","gulp-svgmin","gulp-svgstore","gulp-template","gulp-tsb", -"gulp-tslint","gulp-typescript","gulp-uglify","gulp-uncss","gulp-usemin","gulp-useref","gulp-util","gulp-vinyl-zip", -"gulp-watch","gulp-webpack","gulp-webserver","gulp-zip","gulp.spritesmith","gzip-size","hallmark","hammerjs", -"handlebars","hapi","happy-dom","happy-meant", -"hard-cool-rhythm-continued","has-flag","has-parts-ice-fact","has-symbols","hash-sum","hasown","hast-util-raw", -"hast-util-sanitize","hast-util-select","hast-util-to-estree","hast-util-to-html","hast-util-to-jsx-runtime", -"hast-util-to-string","hast-util-to-text","hastscript","hay-against-any-hurry","hbs","he","heapdump","helmet", -"heroicons","hexlet-pairs","hexo","highland","highlight.js","hiredis","history","history-brass-sound", -"hit-running-special8","hoek","hogan.js","hoist-non-react-statics","homebridge","hono","hope-slight-walk1", -"hosted-git-info","how-to-npm","html-dom-parser","html-element-attributes","html-encoding-sniffer","html-entities", -"html-escaper","html-loader","html-minifier","html-minifier-terser","html-pdf","html-react-parser","html-tags", -"html-to-image","html-to-text","html-validate","html-webpack-plugin","htmlnano","htmlparser2","http","http-errors", -"http-proxy","http-proxy-agent","http-proxy-middleware","http-server","http-status","http-status-codes","https", -"https-proxy-agent", -"husky","hyperquest","hyphenate-style-name","i","i18n","i18next","i18next-gridly-backend","iconv-lite", -"identity-obj-proxy","ignore","image-size","imagemagick","imagemin","imagemin-pngquant","imap","immer", -"immutability-helper","immutable","import-fresh","import-local","impress","in-publish","indent-string","inert","inferno", -"inflection","inherits","ini","iniparser","ink","inline-style-parser","innosetup-compiler","inquirer", -"inquirer-autocomplete-prompt","inside-throw","instagram-node","install","interpret","intl","intl-tel-input","invariant", -"inversify","ionic","ionicons","ioredis","ip","irc","is","is-ci","is-glob","is-installed-globally","is-plain-obj", -"is-plain-object","is-potential-custom-element-name","is-promise","is-stream","is-url","is-wsl","isarray","isobject", -"isomorphic-fetch","istanbul","itwcw-package-analytics","iview", -"jackspeak","jade","jake","jarallax","jasmine","jasmine-core","jasmine-node","jest","jest-canvas-mock","jest-cli", -"jest-diff","jest-environment-jsdom","jest-environment-jsdom-fourteen","jest-environment-node","jest-extended", -"jest-html-reporters","jest-junit","jest-pnp-resolver","jest-resolve","jest-util","jest-watch-typeahead","jest-worker", -"jimp","jiti","jodit","jodit-react","johnny-five","joi","jotai","jquery","jquery-ui","js-base64","js-beautify", -"js-cookie","js-yaml","jsarch","jscpd","jscs","jsdoc","jsdoc-api","jsdoc-to-markdown","jsdom","jsdom-no-contextify", -"jsesc","jshint","jshint-stylish","json-2-csv","json-loader","json-schema","json-server","json-stable-stringify", -"json-stringify-safe","json5","jsonc-parser","jsonfile","jsonschema","JSONStream","jsonwebtoken","jspm","jstates", -"jszip","jwt-decode","jwt-simple","karma", -"karma-browserify","karma-browserstack-launcher","karma-chai","karma-chrome-launcher","karma-coverage", -"karma-detect-browsers","karma-edge-launcher","karma-firefox-launcher","karma-ie-launcher","karma-jasmine","karma-mocha", -"karma-mocha-reporter","karma-phantomjs-launcher","karma-qunit","karma-rollup-preprocessor","karma-safari-launcher", -"karma-sauce-launcher","karma-sinon","karma-sourcemap-loader","karma-spec-reporter","karma-webpack","keycode","keypress", -"keyv","kleur","knex","knip","known-css-properties","knox","koa","koa-body","koa-bodyparser","koa-compose","koa-logger", -"koa-mount","koa-router","koa-static","kue","lab","label-lungs-court4","language-perfectly-blow-series", -"late-dress-mail5","latest-version","lazy.js","lead-alike-web3-applied","leaflet","left-pad","leftpad","lerna","less", -"less-loader","level","leveldown","levelup","leven","libnpmdiff","libnpmexec","libnpmfund","libphonenumber-js","liftoff", -"lilconfig","linkifyjs","lint-staged","listr", -"listr2","lit-element","lite-server","live-server","livereload","load-grunt-config","load-grunt-tasks","loader-utils", -"local-web-server","localforage","localtunnel","lockfile-lint","lodash","lodash-es","lodash.assign","lodash.camelcase", -"lodash.clonedeep","lodash.debounce","lodash.defaults","lodash.flatten","lodash.foreach","lodash.get","lodash.isempty", -"lodash.isequal","lodash.isfunction","lodash.isobject","lodash.isplainobject","lodash.isstring","lodash.map", -"lodash.memoize","lodash.merge","lodash.omit","lodash.pick","lodash.set","lodash.template","lodash.throttle", -"lodash.uniq","log","log-symbols","log-update","log4js","loglevel","long","loopback","loose-envify","lowdb","lru-cache", -"lucide","luck-rubber-do","lwip","lws","madwizard","magic-string","magmastream","main-bower-files","make-dir", -"make-node","mammoth","manifest","mantine-contextmenu","many-favorite6","map-stream","mapboxgl-legend","markdown", -"markdown-it","markdown-it-anchor","markdown-it-container","markdown-it-emoji","markdown-pdf","markdown-table", -"markdown-to-jsx","markdown-toc","markdownlint","markdownlint-cli","marked","marky-markdown","matcha","material-ui", -"mathjs","matter-view-web3-fence","md5","md5-file","mdast-util-from-markdown","mdast-util-to-hast","mdn-data","mdxts", -"memcached","memfs","memoize-one","memory-cache","memory-fs","memorystream","memwatch","mental-oxygen-dozen","meow", -"merge","merge-stream","metalsmith","meteor","method-override","methods","microbundle","micromark","micromatch","mime", -"mime-types","min-heap-typed","mini-css-extract-plugin","minify","minimatch","minimist","mirror-jet-printed-supper", -"missing-sport-living","mkcert","mkdirp","mlly","mobx","mobx-react","mocha","mocha-headless-chrome", -"mocha-junit-reporter","mocha-lcov-reporter","mock-fs","mock-property","mock-require","mock-stdin","mockdate","mockery", -"mockjs","moleculer","moment","moment-timezone","monaco-yaml","monads-io","mongo-express","mongodb","mongoose","monitor", -"monitor-dashboard","monk","morgan","motor-positive-spirit","move-wolf-throughout","movie-obtain-tail-prepare","mqtt", -"ms","mssql","msw","mud-slowly-five3","multer","multimatch","multiparty","multiple-cucumber-html-reporter","mustache", -"muuri","mysql","mysql2","mz","n","nails-wild-interest-garden","nan","nano","nano-css","nanoid","native-keymap", -"nativefier","nativescript","natural","nconf","ncp","near-social-bridge","nedb","needle","nest-commander","newman", -"newrelic","next-auth","nextjs","ng-mocks","ng-zorro-antd","ngrok","nib","nightmare","nightwatch","nine-yes-merely6", -"nise","nock","node-addon-api","node-cache","node-containerpattern","node-dev","node-dir", -"node-emoji","node-fetch","node-forge","node-gcm","node-geocoder","node-gyp","node-html-parser","node-inspector", -"node-mocks-http","node-notifier","node-oauth2-server","node-powertools","node-pre-gyp","node-pty","node-red", -"node-sass","node-schedule","node-static","node-uuid","node-watch","node-windows","node-xlsx","node.extend","nodegit", -"nodemailer","nodemon","nodeunit","nodewebkit","nolangjs","nomnom","nopt","normalize-path","normalize-url", -"normalize-wheel","normalize.css","np","npm","npm-check","npm-check-updates","npm-package-arg","npm-package-json-lint", -"npm-packlist","npm-registry-fetch","npm-run-all","npm-run-all2","npm-run-path","npm-to-yarn","npm-windows-upgrade", -"npmcli","npmignore","npmlog","nprogress","nsp","nuke-cli","numeral","nunjucks","nvm","nvmrc","nwsapi","nx","nyc","oas", -"oas-normalize","oauth", -"object-assign","object-hash","object-inspect","object-keys","object-path","object.assign","object.entries", -"observe-food-motion-hidden","on-finished","once","onchange","one-how-hand","onoff","open","open-cli", -"openapi-client-axios","openapi2html","opencv","opener","openweather","opn","optimist", -"optimize-css-assets-webpack-plugin","optionator","ora","orchestrator","orm","os","osenv","outdent","outline-slowly", -"overlayscrollbars","ovsx","p-event","p-map","p-queue","p-timeout","p23","pa11y","pacote","pageres","paintor","pako", -"para-cli","para-client-js","parallelshell","parse","parse5","parseurl","passport","passport-facebook","passport-local", -"passport-oauth","passport-oauth2","passport-strategy","path","path-browserify","path-exists","path-is-absolute", -"path-to-regexp","pathe","paypal-server-api","pdfjs","pdfkit", -"performance-now","pg","phantom","phantomjs","phantomjs-prebuilt","phonegap","pi-gpio","picocolors","picomatch", -"pie-case-nor-great","pify","pino","pinst","pitch-somehow-earth-brave","pixelmatch","pkg-dir","pkg-up","pkginfo", -"playwright","plist","plugin-error","plur","pluralize","pm2","pngjs","pnp-webpack-plugin","pnpm","pnpx", -"poe-api-manager","polished","political-plan-careful","popper.js","portfinder","postcss","postcss-calc","postcss-cli", -"postcss-color-functional-notation","postcss-colormin","postcss-convert-values","postcss-cssnext","postcss-custom-media", -"postcss-custom-properties","postcss-custom-selectors","postcss-discard-comments","postcss-discard-duplicates", -"postcss-discard-empty","postcss-discard-overridden","postcss-flexbugs-fixes","postcss-html", -"postcss-image-set-function","postcss-import","postcss-load-config","postcss-loader","postcss-merge-longhand", -"postcss-merge-rules","postcss-minify-font-values","postcss-minify-gradients","postcss-minify-params", -"postcss-minify-selectors","postcss-modules-local-by-default","postcss-nested","postcss-nesting","postcss-normalize", -"postcss-normalize-charset", -"postcss-normalize-positions","postcss-normalize-string","postcss-normalize-unicode","postcss-normalize-url", -"postcss-normalize-whitespace","postcss-ordered-values","postcss-prefix-selector","postcss-preset-env", -"postcss-reduce-initial","postcss-safe-parser","postcss-scss","postcss-selector-parser","postcss-svgo", -"postcss-unique-selectors","postcss-value-parser","postgrejs","posthtml","pouchdb","power-assert","pre-commit","preact", -"prepare-package","prettier","prettier-plugin-jsdoc","prettier-plugin-organize-imports","prettier-plugin-packagejson", -"prettier-plugin-svelte","prettierrc","pretty-bytes","pretty-error","pretty-format","pretty-ms","pretty-quick", -"prettyjson","prisma","prismjs","private-bower","proc-log","process","progress","progress-bar-webpack-plugin","promise", -"promise-polyfill","promises-aplus-tests","promo-server","prompt","prompts","prop-types","property-information", -"protobufjs","protractor","proxy","proxyquire","publish-please","pug","pull-stream","pump","punycode","puppeteer", -"purgecss","q","qr-image","qrcode-terminal","qs", -"query-string","querystring","queue","queue-typed","quill","qunit","qunit-dom","qunitjs","raf","ramda","random-words", -"randombytes","randomstring","range-parser","raven","raw-body","raw-loader","rc","rc-slider","rc-tooltip","rc-util", -"rcw-plugin","react","react-addons-css-transition-group","react-addons-shallow-compare","react-apollo", -"react-app-polyfill","react-bootstrap","react-color","react-copy-to-clipboard","react-datepicker","react-dev-utils", -"react-dnd","react-dnd-html5-backend","react-docgen","react-dom","react-dropzone","react-error-overlay","react-helmet", -"react-hook-form","react-hot-loader","react-i18next","react-icons","react-intersection-observer","react-intl","react-is", -"react-lifecycles-compat","react-markdown","react-modal","react-motion","react-native","react-native-keychain", -"react-native-vector-icons","react-number-format","react-onclickoutside","react-property","react-redux","react-refresh", -"react-responsive","react-router","react-router-dom","react-router-redux","react-scripts","react-select", -"react-slick","react-styleguidist","react-svg","react-tap-event-plugin","react-test-renderer","react-toastify", -"react-tools","react-transition-group","react-virtualized","reactify","reactstrap","read","read-pkg","read-pkg-up", -"readable-stream","readline","readline-sync","recall-shut-say","recast","recently-building-save","rechoir","recompose", -"recursive-readdir","redis","redoc","redocusaurus","redux","redux-actions","redux-form","redux-logger","redux-saga", -"redux-thunk","reflect-metadata","regenerate","regenerator-runtime","rehype","rehype-autolink-headings", -"rehype-external-links","rehype-mdx-code-props","rehype-parse","rehype-raw","rehype-slug","rehype-stringify", -"release-it","remap-istanbul","remark","remark-cli","remark-gfm","remark-html","remark-mermaidjs","remark-parse", -"remark-preset-github","remark-preset-wooorm","remark-rehype","remarkable","replace-ext","replace-in-file","request", -"request-promise","request-promise-native","require-all","require-dir","requireindex","requirejs", -"reselect","resize-observer-polyfill","resolve","resolve-from","resolve-url-loader","rest-chronicle","restify","restler", -"restore-cursor","rethinkdb","retry","rewire","rfdc","rimraf","robotjs","rollup","rollup-plugin-babel", -"rollup-plugin-buble","rollup-plugin-cleanup","rollup-plugin-commonjs","rollup-plugin-dts","rollup-plugin-json", -"rollup-plugin-license","rollup-plugin-node-builtins","rollup-plugin-node-globals","rollup-plugin-node-resolve", -"rollup-plugin-replace","rollup-plugin-sourcemaps","rollup-plugin-terser","rollup-plugin-typescript", -"rollup-plugin-typescript2","rollup-plugin-uglify","rollup-plugin-visualizer","rollup-pluginutils","routes","rsnext", -"rsvp","rtlcss","run-sequence","run-series","rx","rxjs","rxjs-compat","safe-buffer","safe-publish-latest","sails", -"salt-type-oldest-faster","sand-have-metal6","sanitize-filename","sanitize-html","sass","sass-loader","sat-local","sax", -"scheduler","schema-markdown-doc","schema-utils","science-knowledge-truth","seblakhotspicy","secp256k1","seedrandom", -"selenium-webdriver","semantic-release","semantic-ui-react", -"semistandard","semver","send","seneca","sentiment","sequelize","serialize-javascript","serialport","serve", -"serve-favicon","serve-index","serve-static","server-destroy","serverless-finch","serverless-spy","sha1","shallowequal", -"sharp","shell-quote","shelljs","shinning-continued-becoming","shortid","should","showdown","shx","sick-typical-court7", -"signal-exit","similar-cheese-loss","simple-assi-animation","simple-git","simple-prompts-web3","single-spa", -"sink-mighty-orbit0","sink-rod-lamp","sinon","sinon-chai","sinopia","sirv","size-limit","sizeitup","skapi-js", -"sky-buy-web3-rock","slash","slice-ansi","slow-deps","slow-voice-spell-pass","slug","slugify","small-grow-mix4", -"snake-seven-recall-interior","snazzy","soap","socket.io","socket.io-client","sockjs-client","source-map", -"source-map-js","source-map-loader","source-map-support","space-separated-tokens","spectaql", -"speech-section-part-frozen","spirit-labor-cheese","split", -"split2","spring-dust-wall-size","sprintf","sprintf-js","sprity","sqlite3","ssh2","ssri","st.db","stack-trace", -"standard","standard-version","star-location","start-server-and-test","statsd","statuses","stock-independent-balloon", -"storybook","storybook-django","straiforos-compodoc","strange-lady-riding9","stream-assert","stream-transform", -"streamii","strftime","string","string-strip-html","string-width","stringify-entities","strip-ansi","strip-bom", -"strip-json-comments","stripe","strongloop","style-dictionary","style-loader","style-to-js","style-to-object", -"styled-components","styled-jsx","stylehacks","stylelint","stylelint-config-standard", -"stylelint-declaration-strict-value","stylelint-order","stylelint-scss","stylus","stylus-loader", -"sugar-policeman-entire","sugarss","sun-grass-circle0","superagent","superjson","supertest","supertest-as-promised", -"supervisor","support-vessels-web3-vessels","supports-color","surrounded-characteristic-or-rain","svelte","svelte-check", -"svelte-preprocess","svg-sprite","svgo", -"sw-precache-webpack-plugin","swagger-autogen","swagger-inline","swagger-themes","swagger-ui-express", -"swam-darkness-weak","swig","swiper","sync-request","systeminformation","systemjs","tail-iron-became5","tailwind", -"tailwind-merge","tailwindcss","tap","tap-spec","tapable","tape","tar","tar-fs","tar-stream","tarant", -"tarant-sync-router-express","tdl","tdlib-native","temp","tempy","terminal-kit","terminal-menu","terser", -"terser-webpack-plugin","test-cutting","test-runner","test-snippets","testcafe","testcontainers","testdouble","testem", -"text-table","three","throttle-debounce","through","through2","throw-did-darkness4","thunkify","tildify","time-grunt", -"tinper-bee","tiny-lr","tinybench","tinycolor2","tinymce","tinypool","tinyspy","tmp","toastify-react-native","tocbot", -"toml","touch","tough-cookie","tracer","traffic-carry-opinion","train-stick-swept7", -"traverse","tree-kill","tribe-leaving-basket","trpc","trumpet","ts-cache-mongoose","ts-japi","ts-jest","ts-loader", -"ts-migrate-mongoose","ts-morph","ts-node","ts-patch-mongoose","ts-pnp","ts-rule-engine","tsconfig-paths","tsd", -"tsd-lite","tshy","tslib","tslint","tslint-config-prettier","tslint-react","tsup","tsx","turndown","tv4","tweetnacl", -"twemoji","twit","twitter","type-coverage","type-fest","type-is","typedoc","typedoc-material-theme", -"typedoc-plugin-extras","typedoc-plugin-markdown","typedocs","typegen","typegoose","typeorm","typescript", -"typescript-eslint","typescript-formatter","typescript-plugin-css-modules","typings","uglify-es","uglify-js", -"uglifyjs-webpack-plugin","uid-safe","uiw","uj-apidoc-core","ulid","ultrahtml","unbuild","underscore", -"underscore.string","undici","unified","unique-random-array","unist-util-visit","untildify","unusual-rope", -"unzip","update-notifier","urijs","url","url-join","url-loader","url-parse","urllib","user","user-home","useragent", -"utf8","util","utils-merge","uuid","uvu","valid-url","validate-commit-msg","validate-npm-package-name","validator", -"vant","vary","vasync","vercel","verror","vhost","victory-mouth","viewerjs","vinyl","vinyl-buffer","vinyl-fs", -"vinyl-source-stream","vinyl-sourcemaps-apply","virtual-dom","vite","vite-plugin-api-routes","vitepress","vitest", -"vorpal","vows","vsce","vscode-debugprotocol","vscode-nls-dev","vscode-textmate","vue","vue-class-component", -"vue-eslint-parser","vue-hot-reload-api","vue-i18n","vue-loader","vue-property-decorator","vue-router", -"vue-style-loader","vue-template-compiler","vuex","walk","walk-sync","warning","watch","watchify","waterline","wd", -"web3","web3-be", -"web3-capital","web3-compass","web3-eve-cli","web3-exactly6","web3-fruit","webpack","webpack-bundle-analyzer", -"webpack-cli","webpack-dev-middleware","webpack-dev-server","webpack-hot-middleware","webpack-manifest-plugin", -"webpack-merge","webpack-node-externals","webpack-sources","webshot","websocket","webtorrent","webworker-threads", -"weinre","whatwg-fetch","when","which","winreg","winston","winston-daily-rotate-file","winston-transport","wiredep", -"word-wrap","wordwrap","workbox-webpack-plugin","world-toy-kill","wrap-ansi","wrench","write-file-atomic","ws","x-ray", -"xhr","xlsx","xml-js","xml2js","xml2json","xmlbuilder","xmldom","xmlhttprequest","xo","xpath","xregexp","xss","xstate", -"xtend","xterm","yaml","yamljs","yargs","yargs-parser","yarn","yarnpkg","yarnrc","yauzl","yeoman-environment", -"yeoman-generator","yn","yo", -"yoctocolors-cjs","yonode","yosay","zmq","zod","zod-http-schemas","zombie","zone.js","zuul","@nx/cypress", -"@nx/eslint-plugin","@nx/jest","@nx/storybook","framer-motion","teajusgula","@mui/styled-engine","jsdoc-parse", -"@commercetools-frontend/constants","downshift","postcss-focus-visible","@augment-vir/common","@biomejs/biome", -"@commercetools-frontend/mc-scripts","@jsonforms/vanilla-renderers","@jsonforms/vue","@jsonforms/vue-vanilla", -"hast-util-from-html","hot-shots","madr","native-run","rehype-katex","supports-hyperlinks","swr","typed-binary", -"ua-parser-js","void-elements","@adonisjs/core","@aneuhold/be-ts-lib","@capacitor/assets", +"@taktikorg/velit-nobis-blanditiis","@taktikorg/voluptatem-pariatur-tenetur","@tanstack/svelte-query", +"@teamhanko/hanko-frontend-sdk","@twurple/ebs-helper","@ucloud-fe/react-components","@unleash/proxy", +"@uploadcare/file-uploader","@wuxh/dumi","@zitterorg/adipisci-quae-eius","@zitterorg/aspernatur-pariatur-occaecati", +"@zitterorg/at-esse-odit", +"@zitterorg/cum-ipsum-beatae","@zitterorg/doloremque-ut-omnis","@zitterorg/est-sunt-quos", +"@zitterorg/eum-veritatis-placeat","@zitterorg/fluffy-waddle","@zitterorg/glowing-barnacle", +"@zitterorg/illum-perferendis-consectetur","@zitterorg/itaque-nisi-veritatis","@zitterorg/probable-octo", +"@zitterorg/upgraded-fishstick","@zkportal/aleo-oracle-sdk","agenda","angular-animate","ant-design-vue","antfu", +"apidoc-markdown","appium-android-driver","applicationinsights","appsync-client-node","auto-install","azure-storage", +"base-64","batuta","bcrypt-nodejs","bearcat","beauty-foot-compass5","beefy","beyond","blessed-contrib","blocked", +"bookshelf","brain","bump-cli","casperjs","chart.js","choerodon-ui","clipanion","co-prompt","connect-flash", +"connect-mongo","contenthook","corcojs-qrcode-logo","cropperjs","cson-parser","css-declaration-sorter","cuid", +"dable-effect","datafire","deep-assign","deep-consist-ability3","directed-graph-typed","discord-backend-manager", +"dmd-grunt-jsdoc2md","dnd-multi-backend","dnode","doc-detective","docgen","docpad","docschema","docsify-tabs", +"docusaurus-lunr-search","dom-to-image-more","download-git-repo","doxdox-parser-dox", +"draft-js","dumi-cm","dw-neit-antd","electron-builder","electron-prebuilt","electron-rebuilder","element-ui", +"email-templates","emailjs","ent","enumtype","ethereumjs-tx","express-adexe","express-autodoc","express-generator", +"express-handlebars","express-jwt","express-tools","express-typed-rpc","express-validator","express-zod-api","fast-csv", +"fast-plist","fe-pilot","femo","file-saver","firebase-admin","firebase-tools","flatpak-bundler","flatpickr","flightplan", +"fork-ts-checker-webpack-plugin-alt","fs-promise","futen","gc-signals","generator-angular","generator-gulp-angular", +"generator-nitro","gensequence","geolib","github-buttons","google-spreadsheet","govuk-frontend","graphql-tools","grpc", +"grunt-angular-templates","grunt-contrib-compass","grunt-contrib-htmlmin","grunt-contrib-imagemin","grunt-contrib-sass", +"grunt-spritesmith","gulp-angular-templatecache","gulp-atom-electron","gulp-awspublish","gulp-azure-storage","gulp-bom", +"gulp-bower","gulp-cache","gulp-cached","gulp-coffee","gulp-compass","gulp-conflict","gulp-copy","gulp-csscomb", +"gulp-csslint","gulp-file-include","gulp-flatmap","gulp-ftp","gulp-gzip","gulp-handlebars","gulp-html-replace", +"gulp-iconfont","gulp-ignore","gulp-image-resize","gulp-include","gulp-inline-css","gulp-install","gulp-jade", +"gulp-livereload","gulp-minify-html","gulp-ng-annotate","gulp-nodemon","gulp-preprocess","gulp-prompt","gulp-react", +"gulp-remote-src","gulp-rev-replace","gulp-ruby-sass","gulp-sftp","gulp-strip-debug","gulp-svg-sprite","gulp-svgmin", +"gulp-svgstore","gulp-template","gulp-uncss","gulp-useref","gulp-webpack","gulp.spritesmith","heroicons","hexlet-pairs", +"hiredis","homebridge","how-to-npm","html-pdf","html-to-image","htmlnano","i18next-gridly-backend","impress","iniparser", +"innosetup-compiler","inquirer-autocomplete-prompt","instagram-node","intl-tel-input","inversify","irc","jarallax", +"jest-environment-jsdom-fourteen","jest-html-reporters","jodit-react","jquery-ui","jsarch","jsdom-no-contextify","jspm", +"jstates","jwt-simple","knox","koa-body","koa-bodyparser", +"koa-logger","koa-mount","koa-router","kue","lazy.js","leaflet","left-pad","libphonenumber-js","linkifyjs","lite-server", +"lodash.foreach","lodash.get","lodash.isempty","lodash.isfunction","lodash.isobject","lodash.omit","lodash.pick", +"lodash.set","lucide","lwip","madwizard","main-bower-files","mantine-contextmenu","mapboxgl-legend","markdown-pdf", +"marky-markdown","mathjs","md5-file","mdxts","memwatch","mental-oxygen-dozen","min-heap-typed", +"mirror-jet-printed-supper","mkcert","moleculer","monaco-yaml","monads-io","mongo-express","monitor-dashboard","muuri", +"n","nano-css","native-keymap","nativefier","nconf","near-social-bridge","nest-commander","newrelic","ng-mocks", +"ng-zorro-antd","nise","node-containerpattern","node-dev","node-gcm","node-geocoder","node-oauth2-server", +"node-powertools","node-red","node-windows","node-xlsx","nodegit","nodewebkit","normalize-url","npm-to-yarn", +"npm-windows-upgrade","nwsapi","onoff","openapi-client-axios","openapi2html","openweather","ovsx","p23","pageres", +"paintor","para-cli","parallelshell","passport-facebook","passport-local","passport-oauth","paypal-server-api","pdfjs", +"pi-gpio","pkginfo","pnp-webpack-plugin","pnpx","poe-api-manager","postcss-colormin","postcss-convert-values", +"postcss-cssnext","postcss-discard-duplicates","postcss-discard-empty","postcss-discard-overridden", +"postcss-merge-longhand","postcss-merge-rules","postcss-minify-font-values","postcss-minify-gradients", +"postcss-minify-params","postcss-minify-selectors","postcss-normalize-charset","postcss-normalize-positions", +"postcss-normalize-string","postcss-normalize-unicode","postcss-normalize-url","postcss-normalize-whitespace", +"postcss-ordered-values","postcss-reduce-initial","postcss-svgo","postcss-unique-selectors","postgrejs","prettierrc", +"private-bower","promo-server","pull-stream","queue-typed","randomstring","rcw-plugin", +"react-addons-css-transition-group","react-addons-shallow-compare","react-apollo","react-markdown","react-modal", +"react-motion","react-native-keychain","react-onclickoutside","react-router-redux","react-select","react-svg","reactify", +"readline-sync","recall-shut-say","redocusaurus","redux-actions","redux-saga","rehype-mdx-code-props","remark-mermaidjs", +"requireindex","rest-chronicle","restler","rethinkdb","rsnext","rxjs-compat","schema-markdown-doc","semantic-ui-react", +"seneca","sequelize","serverless-finch","serverless-spy","simple-assi-animation","simple-prompts-web3","single-spa", +"sinopia","sizeitup","skapi-js","slow-deps","spectaql","sprintf","storybook-django","straiforos-compodoc", +"strange-lady-riding9","streamii","string-strip-html","style-dictionary","stylelint-declaration-strict-value", +"supertest-as-promised","sw-precache-webpack-plugin","swagger-inline","tarant","tarant-sync-router-express", +"tdlib-native","terminal-kit","terminal-menu","test-cutting","test-snippets","thunkify","tracer","train-stick-swept7", +"trpc","trumpet","ts-cache-mongoose","ts-japi","ts-migrate-mongoose","ts-patch-mongoose","ts-rule-engine","tsd-lite", +"tweetnacl","twemoji","twit","typedoc-material-theme","typedoc-plugin-extras","typedocs","typegen","typegoose", +"uj-apidoc-core","ulid","unique-random-array","urijs","valid-url","vant","virtual-dom","vite-plugin-api-routes","vorpal", +"vscode-debugprotocol","vscode-nls-dev","vscode-textmate","vue-property-decorator","web3-be","web3-eve-cli", +"web3-exactly6","web3-fruit","webshot","webworker-threads","weinre","winston-daily-rotate-file","x-ray","xmldom", +"xstate","yarnpkg","yoctocolors-cjs","zod-http-schemas","zombie","@nx/eslint-plugin","@nx/storybook","teajusgula", +"@augment-vir/common","@commercetools-frontend/mc-scripts","@jsonforms/vanilla-renderers","@jsonforms/vue-vanilla", +"hot-shots","madr","native-run","typed-binary","@adonisjs/core","@aneuhold/be-ts-lib","@capacitor/assets", "@devtea2025/blanditiis-numquam-expedita-neque","@devtea2025/doloremque-voluptas-facere-nemo", "@devtea2025/quisquam-quod-ab-aut","@devtea2025/suscipit-assumenda-a-assumenda", "@devtea2025/voluptatibus-vero-magni-rerum","@diahkomalasarinpm/odio-facilis-beatae", -"@diahkomalasarinpm/praesentium-sint-dolorem","@enact/core","@envelop/core","@ionic/cli","@jsonforms/angular", -"@jsonforms/examples","@npmtea2024/quasi-nisi-doloremque-fugit","@ptkhanh94npm/iusto-libero-aperiam", -"@ptkhanh94npm/quis-saepe-velit","@renyii/vue-renderless","@teamteanpm2024/aperiam-fugit-error", -"@teamteanpm2024/architecto-alias-quod","@teamteanpm2024/aut-voluptatum-vero","@teamteanpm2024/beatae-aliquid-id", -"@teamteanpm2024/expedita-labore-ipsum","@teamteanpm2024/odio-fugiat-in", -"@teamteanpm2024/voluptatibus-reprehenderit-odit","@testing-library/react-hooks","@zibuthe7j11/deserunt-quasi-impedit", -"anser","aws-sdk-client-mock","cupertino-pane","eruda","fasteejs","foundation-sites","gradient-string","grommet", -"html-url-attributes","magnific-popup","next","postcss-opacity-percentage","pwa-asset-generator","rapidoc", -"react-native-animatable","react-native-collapsible","react-swipeable-list","react-textarea-autosize","readme-md", -"recharts","riot","sortablejs","tdesign-mobile-vue","uploadcare-widget","wait-on","weui","zustand","fontsource","nextra", -"synckit","tinyglobby","tstyche","@ibyar/expressions","@mantine/carousel","@mantine/code-highlight","@mantine/dropzone", -"@mantine/nprogress","@mantine/spotlight","@mantine/store","@mantine/tiptap","allure-js-commons","express-intlayer", -"is-mobile","rehype-mermaid","@bugsnag/react-native","@enact/ui","@enact/webos","@ionic/angular", -"@npmtuanmap/velit-nobis-nostrum-nam","@skylernpm/hic-inventore-dolores","@skylernpm/reiciendis-non-corrupti", -"admin-lte","backendless","smartbanner.js","zarm","@enact/sandstone","perfect-scrollbar","react-responsive-select", -"titanium","@antora/logger","@asyncapi/generator","@docusaurus/core","@ionic/react","@juggle/resize-observer", -"@mui/base","@mui/private-theming","@mui/utils","@nestjsx/crud","@nestjsx/crud-typeorm","@netlify/framework-info", -"@next/env","@pmmmwh/react-refresh-webpack-plugin","@pothos/core","@storybook/addon-backgrounds","@strapi/strapi", -"@svgr/core","@svgr/hast-util-to-babel-ast","@tinyhttp/encode-url","@tinyhttp/logger", -"@tsparticles/interaction-external-push","@tsparticles/move-base","@tsparticles/shape-emoji", -"@tsparticles/updater-color","@tsparticles/updater-opacity","@tsparticles/updater-out-modes","@uppy/companion", -"@vuepress/core","@vuepress/markdown","@vuepress/markdown-loader","@vuepress/plugin-active-header-links", -"@vuepress/plugin-last-updated","@vuepress/plugin-nprogress","@vuepress/plugin-register-components", -"@vuepress/plugin-search","@vuepress/shared-utils","@vuepress/theme-default","@walletconnect/browser-utils", -"@walletconnect/iso-crypto","@walletconnect/legacy-modal","@walletconnect/legacy-provider", -"@walletconnect/socket-transport","@wordpress/primitives","angular-messages","angular-mocks","ansi-align", -"blocking-proxy","body-scroll-lock","broccoli","broccoli-builder","broccoli-middleware","browserstack","camelcase-css", -"character-entities","character-entities-html4","character-entities-legacy","character-reference-invalid","client-only", -"color-string","comma-separated-tokens","condense-newlines","css-mediaquery","css.escape","csso","dashdash", -"decap-cms-backend-aws-cognito-github-proxy","decap-cms-backend-azure","decap-cms-backend-bitbucket", -"decap-cms-backend-git-gateway", -"decap-cms-backend-github","decap-cms-backend-gitlab","decap-cms-backend-proxy","decap-cms-backend-test", -"device-detector-js","docsify","docsify-cli","dom7","enzyme-to-json","epub2","escape-goat","esdoc", -"eslint-rule-documentation","globals-docs","hast-util-is-element","hast-util-parse-selector","hast-util-to-parse5", -"hast-util-whitespace","html-parse-stringify","html-void-elements","http-graceful-shutdown","icss-utils", -"inferno-create-element","inferno-hydrate","inferno-vnode-flags","infima","ink-docstrap","jasminewd2", -"jest-preset-angular","jest-preview","logging-helpers","lws-index","micromark-extension-gfm-tagfilter", -"micromark-util-encode","micromark-util-html-tag-name","mobile-detect","nth-check","parse-entities","postcss-js", -"postcss-modules-values","query-selector-shadow-dom","rc-hammerjs","rdme","react-colorful","react-device-detect", -"react-easy-router","react-fast-compare","react-native-file-viewer","react-native-lightbox-v2","react-native-progress", -"react-native-svg-charts","react-native-youtube-iframe","react-popper","react-responsive-modal","react-style-singleton", -"text-hex","tsparticles","tua-body-scroll-lock","typedoc-default-themes","use-callback-ref","use-sidecar","vconsole", -"vitefu","vue-perfect-scrollbar", -"vuepress","wait-for-expect","webdriver-js-extender","webdriver-manager","widest-line","worktop", -"@antora/playbook-builder","@applitools/utils","@dataui/crud","@mui/types","@tsparticles/shape-circle", -"@tsparticles/updater-life","@tsparticles/updater-rotate","drag-drop","plasmo","react-h5-audio-player", -"@arethetypeswrong/cli","arethetypeswrong","astro","astrojs","cookiecutter","degit","tseslint","@web/test-runner-mocha", -"colord","@expressots/core","@tsparticles/interaction-particles-links","@astrojs/starlight", -"@expressots/adapter-express","@expressots/shared","@tsparticles/interaction-external-bounce", -"@tsparticles/interaction-external-remove","@tsparticles/move-parallax","@tsparticles/shape-polygon", -"@tsparticles/shape-square","pinia","@floating-ui/react","@tsparticles/shape-image","astro-expressive-code", -"netlify-cms-backend-test","rehype-expressive-code","@augment-vir/assert","cssfilter", -"@amaui/icons-material-rounded-react","@appium/types","@dataui/crud-typeorm","@tsparticles/basic", -"@tsparticles/updater-size","@onesy/icons-material-rounded-react","@tsparticles/interaction-external-grab", -"@tsparticles/interaction-particles-collisions","react-native-macos","@tsparticles/interaction-external-repulse", -"@tsparticles/slim","@ionic/react-router","@immobiliarelabs/backstage-plugin-gitlab-backend","@tsparticles/shape-star", -"kuler","@scalar/nextjs-api-reference","netlify-cms-backend-bitbucket","vendors","@busy-hour/blaze", -"@busy-hour/blaze-types","payload", -"attw","@egjs/flicking","body-scroll-lock-upgrade","@casl/ability","neostandard","@appium/schema","@modern-js/utils", -"@types/xast","css-what","grunt-svgmin","@modern-js/node-bundle-require","@axe-core/playwright","tsdown", -"careful-downloader","sonner","@ckeditor/ckeditor5-collaboration-core","embla-carousel-reactive-utils","react-smooth", -"globrex","@ckeditor/ckeditor5-real-time-collaboration","@inquirer/type","grammy","@tsparticles/plugin-hex-color", -"@tsparticles/plugin-hsl-color","@udecode/plate","loki","netlify-cms-backend-gitlab","teeny-tap","emoji-js","mercurius", -"publint","unbundle","@walletconnect/http-connection","convex-helpers","eslint-plugin-react-refresh","gulp-jsdoc3", -"netlify-cms-backend-git-gateway","borp","pagefind","@pinia/testing","leaflet-gesture-handling","@headlessui/vue", -"remeda","rolldown","valibot","netlify-cms-backend-proxy","lefthook","@nuxt/ui","country-codes-flags-phone-codes", -"embla-carousel-react","input-otp","zoroaster","embla-carousel","@assistant-ui/react","@csstools/css-calc", -"@globalart/nestjs-swagger","@graphiql/plugin-doc-explorer","@mastra/core","next-router-mock","vue-draggable-next", -"@tsparticles/plugin-rgb-color","react-native-lightbox","rolldown-vite","react-native-aes-crypto", -"@inquirer/figures","@lobehub/chat","@inquirer/confirm","@upstash/context7-mcp","@storybook/addon-vitest", -"@walletconnect/heartbeat","lory.js","react-camera-pro","react-native-nitro-modules","@csstools/css-color-parser", -"@csstools/color-helpers","shadcn","@tanstack/virtual-core","otp-io","survey-core","@appium/support","@intlayer/api", -"@prisma/dev","@architect/asap","canvaskit-wasm","@edsdk/n1ed-react","react-error-boundary","@crxjs/vite-plugin", -"@observablehq/plot","skia-canvas","@flmngr/flmngr-react","@vitest/browser-playwright","md-to-pdf","@applitools/eyes", -"@applitools/driver","@applitools/screenshoter","@tsparticles/interaction-external-slow","@tsparticles/shape-line", -"@antora/cli","@antora/navigation-builder","@openspacelabs/react-native-zoomable-view","@testcontainers/postgresql", -"unplugin","@antora/redirect-producer","@antora/site-publisher","@appium/logger","planck","stage-js","oxfmt","syncpack", -"nolyfill","@appium/base-driver","@inquirer/expand","@inquirer/select","@c15t/backend", -"@react-native-vector-icons/common","@antora/content-classifier","@tsparticles/interaction-particles-attract", -"@popperjs/core","animejs","blurup","encryptor","flickity","jstz","lexxy","mapboxgl","mongoid","nums","orms", -"pannellum","psql","svgs","swiperjs","tributejs","twbs","xbytes","dependencies","devDependencies","keywords","ts", -"big.js","@alifd/field","@alifd/overlay","@alifd/validate","shallow-element-equals","@types/react-transition-group", -"jsonp","ts-mocha","tsconfck","@types/co","html5shiv","react-axe","sass-true","@types/md5","react-live","solarlunar", -"@types/chai","@types/glob","@types/node","mochawesome","@types/jsonp","@types/react","@types/yargs","@types/big.js", -"@types/enzyme","@types/lodash","react-cropper","@types/webpack","simulate-event","@types/fs-extra","@types/inquirer", -"chrome-launcher","react-draggable","@types/react-dom","@types/stylelint","console-polyfill","fast-sass-loader", -"@alifd/doc-parser","@alifd/meet-react","@types/babel-core","@types/classnames","markdown-it-prism","@alifd/sass-mapper", -"@types/react-redux","@alifd/sass-tracker","@types/postcss-calc","@alifd/api-extractor","@alifd/dts-generator", -"babel-plugin-espower","es6-promise-polyfill","@alifd/adaptor-helper","@alifd/sassdoc-parser","eslint-plugin-cypress", -"cypress-image-snapshot","@alifd/adaptor-generate","@types/lodash.clonedeep","@types/react-router-dom", -"@alifd/babel-preset-next","@babel/plugin-syntax-jsx","css-split-webpack-plugin","karma-webdriver-launcher", -"@alifd/eslint-config-next","@types/react-test-renderer","node-sass-package-importer","stylelint-csstree-validator", -"@alifd/stylelint-config-next","stylelint-config-recommended","@types/cypress-image-snapshot", -"@types/react-copy-to-clipboard","babel-plugin-generator-prettier","@types/postcss-custom-properties", -"babel-plugin-transform-object-assign","babel-plugin-transform-proto-to-assign", -"babel-plugin-transform-react-es6-displayname","fusion","fusion design","component","ui toolkit","react-components", -"components","design","frontend","Angular CLI","Angular DevKit","core","devkit","sdk","blueprints","code generation", -"scaffolding","schematics","template","tooling","cdk","development","kit","@jridgewell/sourcemap-codec","compiler", -"@standard-schema/spec","material","material design","xhr2","@types/dom-navigation","router","rc-field-form", -"utility-types","lodash.mergewith","lodash.assignwith","normalize-css-color","react-native-codegen", +"@diahkomalasarinpm/praesentium-sint-dolorem","@envelop/core","@ionic/cli","@jsonforms/angular","@jsonforms/examples", +"@npmtea2024/quasi-nisi-doloremque-fugit","@ptkhanh94npm/iusto-libero-aperiam","@ptkhanh94npm/quis-saepe-velit", +"@renyii/vue-renderless","@teamteanpm2024/aperiam-fugit-error","@teamteanpm2024/architecto-alias-quod", +"@teamteanpm2024/aut-voluptatum-vero","@teamteanpm2024/beatae-aliquid-id","@teamteanpm2024/expedita-labore-ipsum", +"@teamteanpm2024/odio-fugiat-in","@teamteanpm2024/voluptatibus-reprehenderit-odit", +"@zibuthe7j11/deserunt-quasi-impedit","aws-sdk-client-mock","cupertino-pane","eruda","fasteejs","gradient-string", +"magnific-popup","pwa-asset-generator","react-native-animatable","react-swipeable-list","readme-md","riot", +"tdesign-mobile-vue","uploadcare-widget","nextra","@ibyar/expressions","@mantine/carousel","@mantine/dropzone", +"@mantine/nprogress","@mantine/spotlight","@mantine/tiptap","allure-js-commons","express-intlayer","is-mobile", +"rehype-mermaid","@bugsnag/react-native","@ionic/angular","@npmtuanmap/velit-nobis-nostrum-nam", +"@skylernpm/hic-inventore-dolores","@skylernpm/reiciendis-non-corrupti","admin-lte","backendless","smartbanner.js", +"@enact/sandstone","react-responsive-select","@asyncapi/generator","@mui/base","@nestjsx/crud","@nestjsx/crud-typeorm", +"@netlify/framework-info","@pothos/core","@strapi/strapi","@svgr/hast-util-to-babel-ast","@uppy/companion", +"@walletconnect/browser-utils","@walletconnect/iso-crypto","@walletconnect/legacy-provider", +"@walletconnect/socket-transport","@wordpress/primitives","angular-messages","angular-mocks","broccoli-builder", +"camelcase-css","condense-newlines","css-mediaquery","dashdash","decap-cms-backend-aws-cognito-github-proxy", +"decap-cms-backend-azure","decap-cms-backend-bitbucket","decap-cms-backend-git-gateway","decap-cms-backend-github", +"decap-cms-backend-gitlab","decap-cms-backend-proxy","decap-cms-backend-test", +"device-detector-js","eslint-rule-documentation","http-graceful-shutdown","inferno-hydrate","infima", +"jest-preset-angular","logging-helpers","micromark-extension-gfm-tagfilter","micromark-util-html-tag-name", +"mobile-detect","parse-entities","rc-hammerjs","rdme","react-device-detect","react-easy-router", +"react-native-file-viewer","react-native-lightbox-v2","react-native-progress","react-native-svg-charts", +"react-native-youtube-iframe","react-responsive-modal","react-style-singleton","text-hex","tua-body-scroll-lock", +"typedoc-default-themes","use-callback-ref","use-sidecar","vconsole","vue-perfect-scrollbar","worktop","@dataui/crud", +"drag-drop","react-h5-audio-player","arethetypeswrong","astrojs","cookiecutter","degit","tseslint", +"@web/test-runner-mocha","@expressots/adapter-express","netlify-cms-backend-test","@amaui/icons-material-rounded-react", +"@dataui/crud-typeorm","@onesy/icons-material-rounded-react","react-native-macos","@ionic/react-router", +"@immobiliarelabs/backstage-plugin-gitlab-backend","@scalar/nextjs-api-reference","netlify-cms-backend-bitbucket", +"vendors","@busy-hour/blaze-types","attw","@egjs/flicking","body-scroll-lock-upgrade","@casl/ability","@types/xast", +"@modern-js/node-bundle-require","careful-downloader","sonner","@ckeditor/ckeditor5-collaboration-core","react-smooth", +"@ckeditor/ckeditor5-real-time-collaboration","@udecode/plate","netlify-cms-backend-gitlab", +"teeny-tap","emoji-js","mercurius","unbundle","@walletconnect/http-connection","convex-helpers", +"netlify-cms-backend-git-gateway","@pinia/testing","leaflet-gesture-handling","netlify-cms-backend-proxy","@nuxt/ui", +"country-codes-flags-phone-codes","embla-carousel-react","input-otp","@assistant-ui/react","@globalart/nestjs-swagger", +"@graphiql/plugin-doc-explorer","@mastra/core","next-router-mock","react-native-lightbox","rolldown-vite", +"react-native-aes-crypto","@lobehub/chat","@upstash/context7-mcp","@walletconnect/heartbeat","lory.js", +"react-camera-pro","react-native-nitro-modules","@tanstack/virtual-core","otp-io","survey-core","@intlayer/api", +"@architect/asap","canvaskit-wasm","@edsdk/n1ed-react","@crxjs/vite-plugin","skia-canvas","@flmngr/flmngr-react", +"md-to-pdf","@applitools/eyes","@applitools/screenshoter","@antora/cli","@antora/navigation-builder", +"@openspacelabs/react-native-zoomable-view","@antora/redirect-producer","planck","stage-js","syncpack","nolyfill", +"@appium/base-driver","@c15t/backend","@react-native-vector-icons/common","@antora/content-classifier","blurup", +"encryptor","flickity","jstz","orms","pannellum","psql","swiperjs","tributejs","xbytes","keywords", +"big.js","@alifd/field","@alifd/overlay","@alifd/validate","shallow-element-equals","ts-mocha","@types/co","html5shiv", +"react-axe","react-live","solarlunar","@types/jsonp","@types/big.js","react-cropper","@types/stylelint", +"fast-sass-loader","@alifd/doc-parser","@alifd/meet-react","@types/babel-core","@alifd/sass-mapper", +"@alifd/sass-tracker","@types/postcss-calc","@alifd/api-extractor","@alifd/dts-generator","@alifd/adaptor-helper", +"@alifd/sassdoc-parser","cypress-image-snapshot","@alifd/adaptor-generate","@types/lodash.clonedeep", +"@alifd/babel-preset-next","@alifd/eslint-config-next","node-sass-package-importer","stylelint-csstree-validator", +"@alifd/stylelint-config-next","@types/cypress-image-snapshot","babel-plugin-generator-prettier", +"@types/postcss-custom-properties","babel-plugin-transform-proto-to-assign", +"babel-plugin-transform-react-es6-displayname","fusion","fusion design","ui toolkit","react-components","blueprints", +"schematics","tooling","@types/dom-navigation","lodash.assignwith","normalize-css-color","react-native-codegen", "@floating-ui/react-native","@rc-component/mini-decimal","react-native-modal-popover", -"@bang88/react-native-ultimate-listview","bisheng","jsonml.js","enquire.js", -"@types/jest","shell-utils","react-native-web","@ant-design/tools","@types/prop-types","@types/react-native", -"ant-design-palettes","react-github-button","react-native-mocker","react-document-title","react-native-screens", -"antd-mobile-demo-data","@react-navigation/stack","@types/lodash.mergewith","react-native-reanimated", -"@react-navigation/native","react-native-gesture-handler","@testing-library/react-native", -"@ant-design/icons-react-native","react-native-safe-area-context","metro-react-native-babel-preset", -"@react-native-community/eslint-config","ant","react-component","ui","framework","mobile","react native", -"@types/lodash-es","@ant-design/icons","@inline-svg-unique-id/react","icon","@auth/core","set-cookie-parser", -"@sveltejs/package","@sveltejs/adapter-auto","@types/set-cookie-parser","authentication","authjs","jwt","sveltekit", -"oidc","passwordless","fs-readdir-recursive","@jridgewell/trace-mapping","@types/fs-readdir-recursive", -"@babel/helper-transform-fixture-test-runner","6to5","es6","transpile","transpiler","js-tokens", -"@babel/helper-validator-identifier","charcodes","import-meta-resolve","gensync","@babel/helpers","@babel/template", -"@babel/generator","@jridgewell/remapping","@babel/helper-module-transforms","@babel/helper-compilation-targets", -"@types/debug","@types/semver", -"@types/resolve","@babel/plugin-syntax-flow","@types/convert-source-map","@babel/plugin-transform-flow-strip-types", -"@babel/plugin-transform-modules-commonjs","classes","const","harmony","let","modules","var","@babel/helper-fixtures", -"@babel/helper-string-parser","@babel/helper-check-duplicate-nodes","javascript","parser","tc39","ecmascript", -"@babel/helper-create-class-features-plugin","@babel/helper-plugin-test-runner","babel-plugin","moo","luxon","entities", -"liquidjs","iso-639-1","bcp-47-normalize","dependency-graph","@11ty/lodash-custom","@11ty/posthtml-urls", -"please-upgrade-node","@11ty/eleventy-utils","@11ty/recursive-copy","@11ty/dependency-tree","@sindresorhus/slugify", +"@bang88/react-native-ultimate-listview","shell-utils","ant-design-palettes","react-native-mocker", +"react-native-screens","antd-mobile-demo-data","@react-navigation/stack","react-native-reanimated", +"@react-navigation/native","react-native-gesture-handler","@ant-design/icons-react-native", +"react-native-safe-area-context","@inline-svg-unique-id/react","authjs","passwordless","@types/fs-readdir-recursive", +"gensync","let","@babel/helper-check-duplicate-nodes","tc39","moo","liquidjs","iso-639-1","bcp-47-normalize", +"@11ty/lodash-custom","@11ty/posthtml-urls","@11ty/eleventy-utils","@11ty/recursive-copy","@11ty/dependency-tree", "node-retrieve-globals","posthtml-match-helper","@11ty/dependency-tree-esm","@11ty/eleventy-dev-server", -"@11ty/eleventy-plugin-bundle","pretty","@iarna/toml","nano-staged","@zachleat/noop","@eslint/eslintrc", -"markdown-it-abbr","simple-git-hooks","jsx-async-runtime","@11ty/eleventy-img","@mdx-js/node-loader", -"@vue/server-renderer","zod-validation-error","@11ty/eleventy-plugin-rss","@11ty/eleventy-plugin-webc", -"@11ty/eleventy-plugin-syntaxhighlight","static-site-generator","static-site","ssg","website","jekyll","blog", -"templates","generator","11ty", -"html","liquid","@rollup/plugin-terser","@rollup/plugin-typescript","@types/benchmark","@types/bytes","stringifier", -"stylesheet","ast","css-parser","css-ast","css-tools","format","preprocessor","@advanced-rest-client/arc-icons", -"@advanced-rest-client/arc-marked","@advanced-rest-client/clipboard-copy","@advanced-rest-client/http-code-snippets", -"@advanced-rest-client/markdown-styles","@anypoint-web-components/anypoint-button", -"@anypoint-web-components/anypoint-collapse","@anypoint-web-components/anypoint-dropdown", -"@anypoint-web-components/anypoint-item","@anypoint-web-components/anypoint-listbox","@api-components/amf-helper-mixin", -"@api-components/api-annotation-document","@api-components/api-body-document","@api-components/api-example-generator", -"@api-components/api-headers-document","@api-components/api-parameters-document", -"@api-components/api-responses-document","@api-components/api-security-documentation", -"@api-components/http-method-label","lit-html","@advanced-rest-client/arc-demo-helper", -"@advanced-rest-client/oauth-authorization","@anypoint-web-components/anypoint-checkbox", -"@anypoint-web-components/anypoint-input","@anypoint-web-components/anypoint-styles", -"@api-components/api-model-generator","@api-components/api-navigation","@api-components/api-request", -"@api-components/api-server-selector","@commitlint/config-conventional","@open-wc/eslint-config","@open-wc/testing", -"@web/dev-server","@web/test-runner","@web/test-runner-playwright","typescript-lit-html-plugin","api-components", -"method-documentation","@graphql-typed-document-node/core","@wry/caches","@wry/equality","@wry/trie","optimism","apollo", -"hooks","client","cache","@asyncapi/parser","@rollup/plugin-babel","babel-plugin-source-map-support", -"asyncapi","@nicolo-ribaudo/eslint-scope-5-internals","@types/eslint","@typescript-eslint/scope-manager", -"@babel/plugin-syntax-decorators","array.prototype.concat","babel-plugin-polyfill-es-shims", -"object.getownpropertydescriptors","decorators","@babel/plugin-syntax-export-namespace-from","@babel/compat-data", -"@babel/plugin-syntax-object-rest-spread","@babel/plugin-transform-parameters","@babel/helper-module-imports", -"babel-plugin-polyfill-corejs2","babel-plugin-polyfill-corejs3","babel-plugin-polyfill-regenerator", -"@babel/runtime-corejs3","derequire","core-js-compat","@babel/preset-modules","@babel/helper-validator-option", -"@babel/plugin-transform-for-of","@babel/plugin-transform-spread","@babel/plugin-transform-classes", -"@babel/plugin-transform-literals","@babel/plugin-transform-new-target","@babel/plugin-transform-modules-amd", -"@babel/plugin-transform-modules-umd","@babel/plugin-transform-regenerator","@babel/plugin-transform-dotall-regex", -"@babel/plugin-transform-json-strings","@babel/plugin-transform-object-super","@babel/plugin-transform-sticky-regex", -"@babel/plugin-transform-block-scoping","@babel/plugin-transform-destructuring","@babel/plugin-transform-function-name", -"@babel/plugin-transform-typeof-symbol","@babel/plugin-transform-unicode-regex","@babel/plugin-syntax-import-assertions", -"@babel/plugin-syntax-import-attributes","@babel/plugin-transform-duplicate-keys", -"@babel/plugin-transform-dynamic-import","@babel/plugin-transform-reserved-words", -"@babel/plugin-syntax-unicode-sets-regex","@babel/plugin-transform-arrow-functions", -"@babel/plugin-transform-private-methods","@babel/plugin-transform-unicode-escapes", -"@babel/plugin-transform-class-properties","@babel/plugin-transform-modules-systemjs", -"@babel/plugin-transform-regexp-modifiers","@babel/plugin-transform-numeric-separator", -"@babel/plugin-transform-optional-chaining","@babel/plugin-transform-property-literals", -"@babel/plugin-transform-template-literals","@babel/plugin-transform-async-to-generator", -"@babel/plugin-transform-class-static-block","@babel/plugin-transform-object-rest-spread", +"@11ty/eleventy-plugin-bundle","nano-staged","@zachleat/noop","jsx-async-runtime","@11ty/eleventy-img", +"@mdx-js/node-loader","@11ty/eleventy-plugin-rss","@11ty/eleventy-plugin-webc","@11ty/eleventy-plugin-syntaxhighlight", +"ssg","11ty","liquid","css-parser","css-ast","css-tools","@advanced-rest-client/clipboard-copy", +"@advanced-rest-client/http-code-snippets","@advanced-rest-client/markdown-styles", +"@anypoint-web-components/anypoint-collapse","@api-components/api-annotation-document", +"@api-components/api-body-document","@api-components/api-example-generator","@api-components/api-headers-document", +"@api-components/api-parameters-document","@api-components/api-responses-document", +"@api-components/api-security-documentation","@api-components/http-method-label","@advanced-rest-client/arc-demo-helper", +"@anypoint-web-components/anypoint-checkbox","@anypoint-web-components/anypoint-input", +"@api-components/api-server-selector","api-components","method-documentation","@wry/caches","@wry/equality","@wry/trie", +"babel-plugin-source-map-support","@nicolo-ribaudo/eslint-scope-5-internals","array.prototype.concat", +"babel-plugin-polyfill-es-shims","@babel/plugin-syntax-export-namespace-from","@babel/plugin-syntax-object-rest-spread", +"@babel/preset-modules","@babel/plugin-transform-literals","@babel/plugin-transform-new-target", +"@babel/plugin-transform-dotall-regex","@babel/plugin-transform-json-strings","@babel/plugin-transform-object-super", +"@babel/plugin-transform-sticky-regex","@babel/plugin-transform-function-name","@babel/plugin-transform-typeof-symbol", +"@babel/plugin-transform-unicode-regex","@babel/plugin-transform-duplicate-keys", +"@babel/plugin-transform-reserved-words","@babel/plugin-syntax-unicode-sets-regex", +"@babel/plugin-transform-unicode-escapes","@babel/plugin-transform-regexp-modifiers", "@babel/plugin-transform-unicode-sets-regex","@babel/plugin-transform-computed-properties", -"@babel/plugin-transform-shorthand-properties","@babel/plugin-transform-export-namespace-from", -"@babel/plugin-transform-block-scoped-functions","@babel/plugin-transform-optional-catch-binding", -"@babel/plugin-transform-unicode-property-regex","@babel/plugin-transform-exponentiation-operator", -"@babel/plugin-proposal-private-property-in-object","@babel/plugin-transform-async-generator-functions", -"@babel/plugin-transform-member-expression-literals","@babel/plugin-transform-private-property-in-object", -"@babel/plugin-transform-nullish-coalescing-operator","@babel/plugin-transform-explicit-resource-management", -"@babel/plugin-transform-logical-assignment-operators","@babel/plugin-transform-named-capturing-groups-regex", -"@babel/plugin-bugfix-firefox-class-in-computed-class-key","@babel/plugin-bugfix-safari-class-field-initializer-scope", +"@babel/plugin-transform-shorthand-properties","@babel/plugin-transform-block-scoped-functions", +"@babel/plugin-transform-unicode-property-regex","@babel/plugin-transform-explicit-resource-management", +"@babel/plugin-transform-named-capturing-groups-regex","@babel/plugin-bugfix-firefox-class-in-computed-class-key", +"@babel/plugin-bugfix-safari-class-field-initializer-scope", "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", "@babel/plugin-transform-duplicate-named-capturing-groups-regex", -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression","@babel/plugin-transform-react-jsx", -"@babel/plugin-transform-react-display-name","@babel/plugin-transform-react-jsx-development", -"@babel/plugin-transform-react-pure-annotations","@babel/plugin-transform-typescript","babel-preset","pirates", -"clone-deep","@babel/helper-globals","@apidevtools/json-schema-ref-parser","@biz-dev-ops/web-components", -"@cucumber/gherkin-streams","@iframe-resizer/child","@iframe-resizer/parent","awilix","bpmn-js", -"json-schema-merge-allof","markdown-it-attrs","markdown-it-codetabs","markdown-it-footnote","markdown-it-multimd-table", -"markdown-it-plantuml-ex","markdown-it-task-lists","pdfjs-viewer-element","prince","svg-pan-zoom","swagger-ui-dist", -"web-resource-inliner","stylelint-config-standard-scss","md","openapi","bpmn","bdd","feature","async-exit-hook", -"transport","logger","backend","mri","p-limit","term-size","spawndamnit","@changesets/git","@changesets/pre", -"@changesets/read","@changesets/types","@changesets/write","@changesets/config", -"@changesets/errors","@changesets/logger","@manypkg/get-packages","package-manager-detector","@changesets/changelog-git", -"@inquirer/external-editor","@changesets/get-release-plan","@changesets/apply-release-plan", +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", +"@babel/plugin-transform-react-jsx-development","@babel/plugin-transform-react-pure-annotations","babel-preset", +"@babel/helper-globals","@biz-dev-ops/web-components","@iframe-resizer/child","@iframe-resizer/parent","awilix", +"bpmn-js","markdown-it-codetabs","markdown-it-multimd-table","markdown-it-plantuml-ex","pdfjs-viewer-element","prince", +"web-resource-inliner","bpmn","term-size","spawndamnit","@changesets/git","@changesets/pre","@changesets/read", +"@changesets/types","@changesets/write","@changesets/config","@changesets/errors","@changesets/logger", +"@manypkg/get-packages","@changesets/changelog-git","@inquirer/external-editor","@changesets/apply-release-plan", "@changesets/should-skip-package","@changesets/get-dependents-graph","@changesets/assemble-release-plan","human-id", -"@chatscope/chat-ui-kit-styles","@fortawesome/fontawesome-free","@semantic-release/changelog","@semantic-release/git", -"@semantic-release/github","chokidar-cli","rollup-plugin-peer-deps-external","chat","reactjs","user interface","ui kit", -"communication","conversation","toolkit","library","reusable","feed","comments","social","talk","ckeditor","ckeditor 5", -"ckeditor5-feature","ckeditor5-plugin","ckeditor5-dll","@ckeditor/ckeditor5-integrations-common","wysiwyg","rich text", -"editor","contentEditable","editing","angular2","angular 5","ng","@ckeditor/ckeditor5-icons","@ckeditor/ckeditor5-enter", -"@ckeditor/ckeditor5-editor-balloon","operational transformation","ot","collaboration","collaborative","real-time", -"ckeditor5-build","@ckeditor/ckeditor5-editor-classic","@ckeditor/ckeditor5-font","@ckeditor/ckeditor5-alignment", -"@ckeditor/ckeditor5-editor-decoupled","@ckeditor/ckeditor5-editor-inline","blurhash","es-toolkit","ckeditor5-lib", -"@ckeditor/ckeditor5-watchdog", -"@ckeditor/ckeditor5-undo","@ckeditor/ckeditor5-select-all","color-parse","color-convert","vanilla-colorful", -"@types/color-convert","@ckeditor/ckeditor5-editor-multi-root","vue.js","vue component","vue.js component", -"@commitlint/format","@commitlint/lint","@commitlint/load","@commitlint/read","@commitlint/types","tinyexec", -"@commitlint/test","@commitlint/utils","@compodoc/live-server","@compodoc/ngd-transformer","@polka/send-type", -"bootstrap.native","decache","loglevel-plugin-prefix","lunr","neotraverse","opencollective-postinstall","os-name", -"polka","tablesort","vis-network","module","graph","@comunica/types","semantic","actor","messages","nf","@docsearch/css", -"@docsearch/js","@eslint/markdown","@rollup/plugin-replace","@stackblitz/sdk","bundlewatch","clean-css-cli", -"find-unused-sass-variables","hammer-simulator","hugo-bin","karma-coverage-istanbul-reporter", -"karma-jasmine-html-reporter","postcss-combine-duplicated-selectors","rollup-plugin-istanbul","sass-embedded", -"stylelint-config-twbs-bootstrap","vnu-jar","mobile-first","responsive","front-end","web","tokenizer","media query", -"matches","polyfill","postcss-plugin", -"pseudo","selector","custom","declarations","progressive","properties","utility","variables","vars","specificity", -"@cucumber/ci-environment","@cucumber/cucumber-expressions","@cucumber/gherkin","@cucumber/gherkin-utils", -"@cucumber/html-formatter","@cucumber/junit-xml-formatter","@cucumber/message-streams","@cucumber/messages", -"@cucumber/pretty-formatter","@cucumber/tag-expressions","assertion-error-formatter","capital-case","error-stack-parser", -"has-ansi","knuth-shuffle-seeded","read-package-up","string-argv","util-arity","yup","@cucumber/compatibility-kit", -"@cucumber/query","@eslint/compat","@types/dirty-chai","@types/express","@types/has-ansi","@types/lodash.merge", -"@types/luxon","@types/mocha","@types/mustache","@types/mz","@types/progress","@types/sinon-chai", -"@types/sinonjs__fake-timers","@types/stream-buffers","@types/tmp","chai-exclude","dependency-lint","genversion", -"reindent-template-literals","stream-to-string","testing","gherkin","tests","@types/mock-fs","@types/semver-compare", -"@types/signale","jest-mock-process","semver-compare","signale","deven","@diplodoc/cut-extension", -"@diplodoc/file-extension","@diplodoc/tabs-extension","@diplodoc/utils", -"get-root-node-polyfill","github-slugger","markdown-it-deflist","markdown-it-sup","markdownlint-rule-helpers", -"quick-lru","ts-dedent","@diplodoc/babel-preset","@diplodoc/lint","@diplodoc/tsconfig","@types/css", -"@types/github-slugger","@types/js-yaml","@types/markdown-it","@types/markdown-it-attrs","@types/sanitize-html", -"@vitest/coverage-v8","@vitest/ui","esbuild-sass-plugin","jest-serializer-html","markdown-it-testgen","terminal-link", -"yandex","docs","yfm","tool","tools","magic-bytes.js","@discordjs/util","discord-api-types","@sapphire/snowflake", -"@discordjs/collection","@sapphire/async-queue","@vladfrangu/async_event_emitter","turbo","@discordjs/scripts", -"eslint-config-neon","@favware/cliff-jumper","eslint-formatter-pretty","@discordjs/api-extractor", -"esbuild-plugin-version-injector","discord","api","rest","discordapp","discordjs","types","tsdoc","generated", -"@apidevtools/swagger-parser","@aws-sdk/client-s3","@diplodoc/client","@diplodoc/markdown-translation", -"@diplodoc/mermaid-extension","@diplodoc/openapi-extension","@doc-tools/yfm2xliff","@octokit/core", -"@types/json-stringify-safe","@yandex-cloud/nodejs-sdk","bem-cn-lite","threads","threads-plugin","@types/async", -"@types/chalk", -"@types/html-escaper","@types/mime-types","@types/shelljs","@types/tar-stream","markdown-it-meta","@types/markdownlint", -"@yandex-cloud/eslint-config","@yandex-cloud/prettier-config","@yandex-cloud/tsconfig","@tinyhttp/cookie-parser", -"cookie-encrypter","github-markdown-css","greenlock-express","memorystore","minisearch","selfsigned","sitemap","sql.js", -"workerpool","@types/body-parser","@types/compression","@types/express-session","@types/formidable","@types/prompts", -"@types/sass","@types/sql.js","@types/uuid","@types/workerpool","esbuild-wasm","razor","sqlite","aspx","@dnd-kit/core", -"@dnd-kit/modifiers","@dnd-kit/sortable","@dnd-kit/utilities","@stylistic/eslint-plugin","@stylistic/stylelint-plugin", -"@wordpress/dependency-extraction-webpack-plugin","lightningcss","swc-loader","@wordpress/api-fetch","scss","mixin","js", -"WordPress","@tsconfig/node22","@types/lodash.camelcase","@types/pretty-ms",".d.ts","definitions","@emotion/hash", -"@emotion/memoize","@emotion/serialize","babel-plugin-macros","find-root","stylis","babel-check-duplicated-nodes", -"styles","css-in-js","@emotion/cache","@emotion/sheet","@emotion/utils","@definitelytyped/dtslint", -"@emotion/is-prop-valid","@emotion/use-insertion-effect-with-fallbacks","@emotion/react","warun","dot-prop", -"installed-check","@typescript-eslint/types","@eslint-community/eslint-plugin-mysticatea","eslint-plugin", -"@fakeyanss/redocly-openapi-core","decko","json-pointer","mark.js","openapi-sampler","react-tabs","stickyfill", -"swagger2openapi","url-template","@cypress/webpack-preprocessor","@hot-loader/react-dom","@size-limit/preset-app", -"@types/dompurify","@types/enzyme-to-json","@types/json-pointer","@types/lunr","@types/mark.js","@types/marked", -"@types/prismjs","@types/styled-components","@types/tapable","@types/webpack-env","@wojtekmaj/enzyme-adapter-react-17", -"esbuild-loader","license-checker","lodash.noop","unfetch","OpenAPI","OpenAPI Specification","Swagger","JSON-Schema", -"API","REST","React.js","@floating-ui/dom","use-isomorphic-layout-effect","tooltip","popover","dropdown","menu","popup", -"positioning","font","font family","google fonts","inter","Inter","typeface","variable","roboto","Roboto", -"@fortawesome/fontawesome-common-types","awesome","fontawesome","svg", -"@babel/plugin-external-helpers","@fortawesome/free-brands-svg-icons","@semantic-release/exec","icons","server", -"@electron/rebuild","node-abi","@electron-forge/cli","electron-devtools-installer","@grandlinex/swagger-mate", -"@types/jsonwebtoken","@types/ms","@fastify/deepmerge","@graphql-markdown/graphql","@graphql-markdown/logger", -"@graphql-markdown/utils","@graphql-markdown/types","graphql-schema","graphql-markdown","@docusaurus/utils", -"@graphql-markdown/cli","@docusaurus/types","plugin","@tailwindcss/aspect-ratio","@tailwindcss/forms", -"@tailwindcss/typography","basename","filemanager-webpack-plugin","remove-files-webpack-plugin","sass-lint", -"configuration","boilerplate","@hapi/accept","@hapi/ammo","@hapi/boom","@hapi/bounce","@hapi/call","@hapi/catbox", -"@hapi/catbox-memory","@hapi/heavy","@hapi/hoek","@hapi/mimos","@hapi/podium","@hapi/shot","@hapi/somever", -"@hapi/statehood","@hapi/subtext","@hapi/teamwork","@hapi/topo","@hapi/validate","@hapi/code","@hapi/eslint-plugin", -"@hapi/inert","@hapi/lab","@hapi/vision","@hapi/wreck","comment-parser","@homer0/eslint-plugin", -"@homer0/prettier-config","@vitest/coverage-istanbul","leasot","@standard-schema/utils","@sinclair/typebox", -"@typeschema/core", -"@typeschema/main","@typeschema/zod","@vinejs/vine","ajv-errors","arktype","check-export-map","class-transformer", -"class-validator","computed-types","effect","fluentvalidation-ts","fp-ts","io-ts","io-ts-types","monocle-ts", -"newtype-ts","nope-validator","superstruct","typanion","vest","vite-tsconfig-paths","scheme","validation", -"scheme-validation","hookform","effect-ts","nope","TypeBox","typeschema","vine","standard-schema","google translate api", -"google translate","google api","translate api","google","translate","@atlaskit/pragmatic-drag-and-drop", -"@atlaskit/pragmatic-drag-and-drop-auto-scroll","@atlaskit/pragmatic-drag-and-drop-hitbox","vue3","vue 3.x", -"@ctrl/tinycolor","@inquirer/ansi","cli-width","fast-wrap-ansi","mute-stream","@inquirer/testing","@types/mute-stream", -"answer","answers","ask","base","command","command-line","confirm","generate","hyper","input","inquire","interface", -"iterm","node","nodejs", -"promptly","question","scaffold","scaffolder","stdin","stdout","terminal","tty","yeoman","zsh","@stencil/core","domino", -"@stencil/sass","@capacitor/core","playwright-core","@playwright/test","@capacitor/haptics","@capacitor/keyboard", -"@ionic/eslint-config","@capacitor/status-bar","@ionic/prettier-config","@rollup/plugin-virtual", -"@stencil/vue-output-target","@stencil/react-output-target","@stencil/angular-output-target","stencil","app","webapp", -"capacitor","progressive web app","pwa","layout","console","wrap","table","@istanbuljs/schema","test","coverage", -"@itwin/itwinui-illustrations-react","@swc/helpers","@tanstack/react-virtual","react-table","@swc/cli", -"eslint-plugin-require-extensions","design-system","itwin","itwinui","ux","@jest/console","@jest/pattern", -"@jest/reporters","@jest/test-result","@jest/transform","exit-x","jest-changed-files","jest-config","jest-haste-map", -"jest-message-util","jest-regex-util","jest-resolve-dependencies","jest-runner","jest-runtime","jest-snapshot", -"jest-validate", -"jest-watcher","@jest/test-sequencer","@jest/test-utils","@types/graceful-fs","@types/micromatch","easy","facebook", -"immersive","instant","mocking","painless","runner","sandboxed","snapshot","@jest/schemas", -"@types/istanbul-lib-coverage","@types/istanbul-reports","@types/json-schema","@types/redux-mock-store", -"document-register-element","redux-mock-store","form","forms","json","jsonforms","renderengine","schema","uischema", -"customization","@date-io/dayjs","@rollup/plugin-json","rollup-plugin-copy","rollup-plugin-import-css","renderer", -"@rollup/plugin-alias","@types/object-hash","@jupyterlab/apputils","@jupyterlab/coreutils","@jupyterlab/docregistry", +"@chatscope/chat-ui-kit-styles","ui kit", +"communication","conversation","reusable","talk","ckeditor5-feature","ckeditor5-plugin","angular 5","blurhash", +"color-parse","vanilla-colorful","vue component","vue.js component","@commitlint/format","@commitlint/read", +"@polka/send-type","bootstrap.native","tablesort","vis-network","@comunica/types","semantic","nf","hugo-bin", +"postcss-combine-duplicated-selectors","pseudo","specificity","@cucumber/ci-environment", +"@cucumber/cucumber-expressions","@cucumber/gherkin","@cucumber/gherkin-utils","@cucumber/html-formatter", +"@cucumber/junit-xml-formatter","@cucumber/message-streams","@cucumber/messages","@cucumber/pretty-formatter", +"@cucumber/tag-expressions","capital-case","@cucumber/compatibility-kit","@cucumber/query","@types/dirty-chai", +"@types/has-ansi","@types/lodash.merge","@types/stream-buffers","reindent-template-literals","@types/semver-compare", +"semver-compare","deven","@diplodoc/cut-extension","@diplodoc/file-extension","@diplodoc/utils","@diplodoc/babel-preset", +"@diplodoc/lint","@diplodoc/tsconfig","@types/css","yandex","@sapphire/async-queue","@vladfrangu/async_event_emitter", +"eslint-config-neon","esbuild-plugin-version-injector","discordjs","tsdoc","@diplodoc/client", +"@diplodoc/markdown-translation","@diplodoc/mermaid-extension","@diplodoc/openapi-extension", +"@doc-tools/yfm2xliff","@yandex-cloud/nodejs-sdk","bem-cn-lite","threads-plugin","@types/async","markdown-it-meta", +"@types/markdownlint","@yandex-cloud/eslint-config","@yandex-cloud/prettier-config","@yandex-cloud/tsconfig", +"@tinyhttp/cookie-parser","cookie-encrypter","github-markdown-css","greenlock-express","@types/sass","@types/sql.js", +"@types/workerpool","razor","aspx","@stylistic/stylelint-plugin","@wordpress/api-fetch","WordPress","@types/pretty-ms", +"@emotion/memoize","babel-check-duplicated-nodes","@emotion/use-insertion-effect-with-fallbacks","warun", +"@eslint-community/eslint-plugin-mysticatea","@fakeyanss/redocly-openapi-core","@size-limit/preset-app","React.js", +"positioning","Inter","roboto","Roboto","@fortawesome/fontawesome-common-types","@fortawesome/free-brands-svg-icons", +"@electron/rebuild","@electron-forge/cli","electron-devtools-installer","@grandlinex/swagger-mate","@fastify/deepmerge", +"@graphql-markdown/graphql","@graphql-markdown/cli","@tailwindcss/aspect-ratio","@tailwindcss/forms","sass-lint", +"@hapi/ammo","@hapi/boom","@hapi/bounce","@hapi/call","@hapi/catbox","@hapi/catbox-memory","@hapi/heavy","@hapi/mimos", +"@hapi/podium","@hapi/shot","@hapi/somever","@hapi/statehood","@hapi/subtext","@hapi/teamwork","@hapi/validate", +"@hapi/inert","@hapi/vision", +"@homer0/eslint-plugin","@homer0/prettier-config","leasot","@typeschema/core","@typeschema/main","@typeschema/zod", +"check-export-map","io-ts-types","monocle-ts","newtype-ts","nope-validator","scheme-validation","hookform","effect-ts", +"typeschema","vine","standard-schema","google translate api","google translate","google api","translate api", +"@atlaskit/pragmatic-drag-and-drop","@atlaskit/pragmatic-drag-and-drop-auto-scroll", +"@atlaskit/pragmatic-drag-and-drop-hitbox","cli-width","fast-wrap-ansi","domino","@stencil/sass","@capacitor/core", +"@capacitor/haptics","@capacitor/keyboard","@capacitor/status-bar","@stencil/vue-output-target", +"@stencil/react-output-target","@stencil/angular-output-target","stencil","@itwin/itwinui-illustrations-react", +"react-table","itwin","itwinui","@jest/console","jest-changed-files","jest-resolve-dependencies","jest-runner", +"jest-runtime","jest-snapshot","@jest/test-sequencer","instant","painless","sandboxed","@types/redux-mock-store", +"document-register-element","@date-io/dayjs","@jupyterlab/apputils","@jupyterlab/coreutils","@jupyterlab/docregistry", "@jupyterlab/rendermime","@jupyterlab/rendermime-interfaces","@jupyterlab/services","@jupyterlab/statedb", -"@jupyterlab/translation","@jupyterlab/ui-components","@lumino/algorithm","@lumino/application","@lumino/commands", -"@lumino/coreutils","@lumino/disposable","@lumino/messaging","@lumino/polling","@lumino/properties","@lumino/signaling", -"@lumino/widgets","@jupyterlab/testing","docopt","glob2base","lodash.difference","multipipe","safe-wipe","sass-convert", -"@kobedevi/sassdoc-theme-default","scss-comment-parser", -"strip-indent","vinyl-string","babel-plugin-transform-builtin-extend","opn-cli","doc","theme","chatfanpage", -"api-connect-x","api-connect-tiwtter","@inquirer/input","@inquirer/prompts","task","list","tasklist","term","ascii", -"unicode","loading","indicator","busy","wait","idle","react-remove-scroll","ui-kit","calendar","date","picker","time", -"react-hooks","state","modal","notification","notification-manager","notification-system","prism-react-renderer", -"highlight","syntax","syntax-highlight","styling","@material-ui/types","@material-ui/utils","@material-ui/styles", -"@material-ui/system","@microsoft/api-documenter","json-api","json:api","serializer","normalizer","formatter", -"@types/mdx","jsx","mdx","@rushstack/node-core-library","@microsoft/api-extractor-model","@rushstack/terminal", -"@rushstack/ts-command-line","@rushstack/rig-package","@rushstack/heft","decoupled-local-node-rig","local-eslint-config", -"JSDoc","AEDoc","TSDoc","declaration", -"dts","bundle","alpha","beta","tsdoc-build-rig","TypeScript","jju","@types/jju","@aws/durable-execution-sdk-js", -"@aws/durable-execution-sdk-js-testing","@datastream/core","@types/aws-lambda","Lambda","Middleware","Serverless", -"Framework","AWS","AWS Lambda","Function URL","Durable function","Middy","HTTP","JSON","Body Parser","JSON Body Parser", -"@aws-sdk/client-ssm","aws-xray-sdk","helper","moj","design system","@open-draft/deferred-promise","@open-draft/logger", -"@open-draft/until","is-node-process","outvariant","strict-event-emitter","@open-draft/test-server","@ossjs/release", -"@types/cors","@types/express-fileupload","@types/follow-redirects","@types/node-fetch","@types/superagent", -"@types/supertest","@types/ws","engine.io-parser","express-fileupload","express-rate-limit","socket.io-parser", -"vitest-environment-miniflare","web-encoding","webpack-http-server","intercept","fetch","low-level","mock","spy","mui", -"@mui/core-downloads-tracker","system","@mui/x-internals","mui-x","datepicker","timepicker", -"datetimepicker","@headlessui/react","@iconify-icon/react","@mdx-js/loader","@mdx-js/mdx","@shikijs/transformers", -"@theguild/remark-npm2yarn","@types/unist","@vcarl/remark-headings","approximate-number","extra-watch-webpack-plugin", -"flexsearch","git-url-parse","mdast-util-phrasing","next-seo","react-helmet-async","rehype-extract-excerpt", -"rehype-pretty-code","remark-frontmatter","remark-heading-id","remark-link-rewrite","shiki","tailwindcss-themer", -"webpack-virtual-modules","@types/color","@types/extra-watch-webpack-plugin","@types/git-url-parse","@types/mdast", -"@repo/eslint-config","@repo/typescript-config","@repo/prettier-config","posthtml-render","posthtml-parser","esthetic", -"builder","guides","demo","ng-doc","rehype-format","hast-util-has-property","hast-util-heading-rank", -"rehype-minify-whitespace","unist-util-filter","@shikijs/rehype","ordinal","@types/chai-as-promised","ethers","hardhat", -"@types/bn.js","@nomicfoundation/hardhat-ethers","@nomicfoundation/eslint-plugin-slow-imports", -"@nomicfoundation/eslint-plugin-hardhat-internal-rules","ethereum","smart-contracts","@isaacs/string-locale-compare", -"@npmcli/fs","@npmcli/installed-package-contents","@npmcli/metavuln-calculator","@npmcli/name-from-folder", -"@npmcli/package-json","@npmcli/query","@npmcli/redact","bin-links","cacache", -"common-ancestor-path","json-stringify-nice","npm-install-checks","npm-pick-manifest","parse-conflict-json","proggy", -"promise-all-reject-late","promise-call-limit","treeverse","walk-up-path","@npmcli/eslint-config", -"@npmcli/mock-registry","@npmcli/template-oss","minify-registry-metadata","tcompare","libnpm","workspaces", -"map-workspaces","@npmcli/promise-spawn","spawk","innertext","highlights","similarity","language-ini","property-ttl", -"language-dart","language-glsl","language-haxe","language-rust","lodash.pickby","language-erlang","language-stylus", -"highlights-tokens","atom-language-diff","atom-language-nginx","github-url-to-object","markdown-it-expand-tabs", -"markdown-it-lazy-headers","oniguruma","intercept-stdout","readme","gfm","formatted","syntax highlighting","Monorepo", -"Angular","React","Web","Node","Nest","Jest","Cypress","CLI","@zkochan/js-yaml","EsBuild","Front-end","Backend","Lint", -"ESLint","Testing","Express","babel-plugin-const-enum","babel-plugin-transform-typescript-metadata","Swc", -"Tsc","@nestjs/schematics","kill-port","@nx/docker","tcp-port-used","@oclif/errors","@oclif/parser","@oclif/help", -"@oclif/plugin-plugins","fancy-test","oclif","@types/indent-string","@types/proxyquire","@types/wrap-ansi","clean-stack", -"@oclif/prettier-config","@oclif/test","@types/clean-stack","@types/ejs","@types/pnpapi","@types/sinon", -"@types/supports-color","@types/wordwrap","madge","command line","args","argv","oclif-plugin", -"@octokit/plugin-paginate-rest","@octokit/plugin-request-log","@octokit/plugin-rest-endpoint-methods", -"@octokit/auth-action","@octokit/auth-app","@octokit/fixtures-server","@octokit/request","@octokit/tsconfig", -"semantic-release-plugin-update-version-in-files","octokit","api-client","@opentiny/vue-action-menu", -"@opentiny/vue-action-sheet","@opentiny/vue-alert","@opentiny/vue-amount","@opentiny/vue-anchor","@opentiny/vue-area", -"@opentiny/vue-async-flowchart","@opentiny/vue-autocomplete","@opentiny/vue-badge","@opentiny/vue-base-select", +"@jupyterlab/translation","@jupyterlab/ui-components","@lumino/algorithm","@lumino/application", +"@lumino/commands","@lumino/coreutils","@lumino/disposable","@lumino/messaging","@lumino/polling","@lumino/properties", +"@lumino/signaling","@lumino/widgets","@jupyterlab/testing","lodash.difference","safe-wipe","sass-convert", +"@kobedevi/sassdoc-theme-default","scss-comment-parser","vinyl-string","chatfanpage","api-connect-x", +"api-connect-tiwtter","react-remove-scroll","notification-manager","notification-system","@material-ui/types", +"@material-ui/utils","@material-ui/styles","@material-ui/system","json:api","normalizer","@rushstack/node-core-library", +"@rushstack/terminal","@rushstack/ts-command-line","@rushstack/rig-package","decoupled-local-node-rig", +"local-eslint-config","AEDoc","beta","@types/jju","@aws/durable-execution-sdk-js", +"@aws/durable-execution-sdk-js-testing","@datastream/core","Function URL","Durable function","Middy","Body Parser", +"JSON Body Parser","@aws-sdk/client-ssm","aws-xray-sdk","moj","@open-draft/logger","@open-draft/until", +"engine.io-parser","express-rate-limit","web-encoding","intercept","low-level","@mui/core-downloads-tracker", +"@mui/x-internals","mui-x","timepicker","@iconify-icon/react","@vcarl/remark-headings","approximate-number", +"extra-watch-webpack-plugin","flexsearch","mdast-util-phrasing", +"next-seo","rehype-extract-excerpt","remark-heading-id","remark-link-rewrite","tailwindcss-themer", +"@types/extra-watch-webpack-plugin","@types/git-url-parse","@repo/eslint-config","@repo/typescript-config", +"@repo/prettier-config","esthetic","guides","demo","ng-doc","rehype-minify-whitespace","unist-util-filter", +"@shikijs/rehype","ordinal","@nomicfoundation/hardhat-ethers","@nomicfoundation/eslint-plugin-slow-imports", +"@nomicfoundation/eslint-plugin-hardhat-internal-rules","smart-contracts","@npmcli/query","json-stringify-nice","proggy", +"promise-all-reject-late","promise-call-limit","minify-registry-metadata","tcompare","map-workspaces","formatted", +"syntax highlighting","EsBuild","Lint","Express","babel-plugin-const-enum","babel-plugin-transform-typescript-metadata", +"Swc","Tsc","kill-port","@nx/docker","@oclif/help","@types/wordwrap","oclif-plugin","@octokit/plugin-paginate-rest", +"@octokit/plugin-request-log","@octokit/plugin-rest-endpoint-methods","@octokit/auth-action","@octokit/auth-app", +"@octokit/fixtures-server","@octokit/request","@octokit/tsconfig","semantic-release-plugin-update-version-in-files", +"api-client","@opentiny/vue-action-menu","@opentiny/vue-action-sheet","@opentiny/vue-alert","@opentiny/vue-amount", +"@opentiny/vue-anchor","@opentiny/vue-area","@opentiny/vue-async-flowchart","@opentiny/vue-autocomplete", +"@opentiny/vue-badge","@opentiny/vue-base-select", "@opentiny/vue-breadcrumb","@opentiny/vue-breadcrumb-item","@opentiny/vue-bulletin-board","@opentiny/vue-button", "@opentiny/vue-button-group","@opentiny/vue-calendar","@opentiny/vue-calendar-bar","@opentiny/vue-calendar-view", "@opentiny/vue-card","@opentiny/vue-card-group","@opentiny/vue-card-template","@opentiny/vue-carousel", -"@opentiny/vue-carousel-item","@opentiny/vue-cascader","@opentiny/vue-cascader-menu", -"@opentiny/vue-cascader-mobile","@opentiny/vue-cascader-node","@opentiny/vue-cascader-panel", -"@opentiny/vue-cascader-select","@opentiny/vue-cascader-view","@opentiny/vue-cell","@opentiny/vue-checkbox", -"@opentiny/vue-checkbox-button","@opentiny/vue-checkbox-group","@opentiny/vue-col","@opentiny/vue-collapse", -"@opentiny/vue-collapse-item","@opentiny/vue-collapse-transition","@opentiny/vue-color-picker", -"@opentiny/vue-color-select-panel","@opentiny/vue-column-list-group","@opentiny/vue-column-list-item", -"@opentiny/vue-company","@opentiny/vue-config-provider","@opentiny/vue-container","@opentiny/vue-country", -"@opentiny/vue-crop","@opentiny/vue-currency","@opentiny/vue-date-panel","@opentiny/vue-date-picker", -"@opentiny/vue-date-picker-mobile-first","@opentiny/vue-date-range","@opentiny/vue-date-table","@opentiny/vue-dept", -"@opentiny/vue-dialog-box","@opentiny/vue-dialog-select","@opentiny/vue-divider","@opentiny/vue-drawer", -"@opentiny/vue-drop-roles","@opentiny/vue-drop-times","@opentiny/vue-dropdown","@opentiny/vue-dropdown-item", -"@opentiny/vue-dropdown-menu","@opentiny/vue-dynamic-scroller","@opentiny/vue-dynamic-scroller-item", -"@opentiny/vue-espace","@opentiny/vue-exception","@opentiny/vue-fall-menu","@opentiny/vue-file-upload", -"@opentiny/vue-filter","@opentiny/vue-filter-bar","@opentiny/vue-filter-box","@opentiny/vue-filter-panel", -"@opentiny/vue-float-button","@opentiny/vue-floatbar","@opentiny/vue-floating-button","@opentiny/vue-flowchart", -"@opentiny/vue-fluent-editor","@opentiny/vue-form","@opentiny/vue-form-item","@opentiny/vue-fullscreen", -"@opentiny/vue-grid","@opentiny/vue-grid-column","@opentiny/vue-grid-manager","@opentiny/vue-grid-select", -"@opentiny/vue-grid-toolbar","@opentiny/vue-guide","@opentiny/vue-hrapprover","@opentiny/vue-image", -"@opentiny/vue-image-viewer","@opentiny/vue-input","@opentiny/vue-ip-address","@opentiny/vue-layout", -"@opentiny/vue-link","@opentiny/vue-link-menu","@opentiny/vue-load-list","@opentiny/vue-loading","@opentiny/vue-locales", -"@opentiny/vue-logon-user","@opentiny/vue-logout","@opentiny/vue-menu","@opentiny/vue-message","@opentiny/vue-milestone", -"@opentiny/vue-mind-map","@opentiny/vue-modal","@opentiny/vue-month-range","@opentiny/vue-month-table", -"@opentiny/vue-nav-menu","@opentiny/vue-notify","@opentiny/vue-number-animation","@opentiny/vue-numeric", -"@opentiny/vue-option","@opentiny/vue-option-group","@opentiny/vue-pager","@opentiny/vue-pager-item", -"@opentiny/vue-panel","@opentiny/vue-picker","@opentiny/vue-pop-upload","@opentiny/vue-popconfirm", -"@opentiny/vue-popeditor","@opentiny/vue-popover","@opentiny/vue-popup","@opentiny/vue-progress", -"@opentiny/vue-pull-refresh","@opentiny/vue-qr-code","@opentiny/vue-quarter-panel","@opentiny/vue-query-builder", -"@opentiny/vue-radio","@opentiny/vue-radio-button","@opentiny/vue-radio-group","@opentiny/vue-rate", -"@opentiny/vue-record","@opentiny/vue-recycle-scroller","@opentiny/vue-river","@opentiny/vue-roles","@opentiny/vue-row", -"@opentiny/vue-scroll-text","@opentiny/vue-scrollbar","@opentiny/vue-search","@opentiny/vue-select", -"@opentiny/vue-select-dropdown","@opentiny/vue-select-mobile","@opentiny/vue-select-view","@opentiny/vue-select-wrapper", -"@opentiny/vue-selected-box","@opentiny/vue-signature","@opentiny/vue-skeleton","@opentiny/vue-skeleton-item", -"@opentiny/vue-slider","@opentiny/vue-slider-button","@opentiny/vue-slider-button-group","@opentiny/vue-space", -"@opentiny/vue-split", -"@opentiny/vue-standard-list-item","@opentiny/vue-statistic","@opentiny/vue-steps","@opentiny/vue-sticky", -"@opentiny/vue-switch","@opentiny/vue-tab-item","@opentiny/vue-tabbar","@opentiny/vue-tabbar-item","@opentiny/vue-table", -"@opentiny/vue-tabs","@opentiny/vue-tag","@opentiny/vue-tag-group","@opentiny/vue-tag-input","@opentiny/vue-text-popup", -"@opentiny/vue-time","@opentiny/vue-time-line","@opentiny/vue-time-panel","@opentiny/vue-time-picker", -"@opentiny/vue-time-picker-mobile","@opentiny/vue-time-range","@opentiny/vue-time-select","@opentiny/vue-time-spinner", -"@opentiny/vue-timeline-item","@opentiny/vue-toggle-menu","@opentiny/vue-tooltip","@opentiny/vue-top-box", -"@opentiny/vue-transfer","@opentiny/vue-transfer-panel","@opentiny/vue-tree","@opentiny/vue-tree-menu", -"@opentiny/vue-tree-select","@opentiny/vue-upload","@opentiny/vue-upload-dragger","@opentiny/vue-upload-list", -"@opentiny/vue-user","@opentiny/vue-user-account","@opentiny/vue-user-contact","@opentiny/vue-user-head", -"@opentiny/vue-user-head-group","@opentiny/vue-user-link","@opentiny/vue-virtual-scroll-box", -"@opentiny/vue-virtual-tree","@opentiny/vue-watermark","@opentiny/vue-wizard","@opentiny/vue-year-range", -"@opentiny/vue-year-table","component-library","vue-components","opentiny","renderless-components","headless-components", -"@opentiny/utils","@opentiny/vue-hooks","esno","gulp-svg-inline","gulp-transform","otterhttp","node.js","web framework", -"header-range-parser","@otterhttp/accepts","@otterhttp/content-type","@otterhttp/proxy-address","@otterhttp/type-is", -"@otterhttp/url","@otterhttp/router","req","es-escape-html","@otterhttp/content-disposition","@otterhttp/encode-url", -"@otterhttp/errors","@otterhttp/vary","res","@otterhttp/etag","send-file","@pact-foundation/pact-core","randexp", -"stack-utils","@pact-foundation/pact-js-prettier-config","@types/http-proxy","@types/nock","@types/ramda", -"@types/stack-utils","commit-and-tag-version","eslint-plugin-chai-friendly","pact","pact-js","contract testing", -"consumer driven testing","management","store","@phosphor/algorithm","@phosphor/commands","@phosphor/coreutils", -"@phosphor/disposable","@phosphor/domutils","@phosphor/dragdrop","@phosphor/keyboard","@phosphor/messaging", -"@phosphor/properties","@phosphor/signaling","@phosphor/virtualdom","@release-it/conventional-changelog","@types/jsdom", -"cobertura","eslint-config-phun-ky","git-cz","glob-bin","global-jsdom","putout","quibble","remark-github","remark-toc", -"typedoc-plugin-frontmatter","typedoc-plugin-mdn-links","typedoc-plugin-no-inherit","typedoc-plugin-remark", -"typedoc-plugin-rename-defaults","typedoc-vitepress-theme","unified-prettier","vitepress-plugin-group-icons","a11y", -"accessibility","anatomy","annotate","annotation","dissect","dissection", -"grid","grid-layout","html-elements","information","inspect","pin","spacing","spec","speccer","specification", -"specifications","specs","typography","stories","@webcomponents/shadycss","@polymer/gen-closure-declarations", -"@polymer/iron-component-page","@polymer/test-fixture","@webcomponents/webcomponentsjs","babel-preset-minify","dom5", -"google-closure-compiler","gulp-vulcanize","lazypipe","polymer-build","polymer-cli","wct-browser-legacy","cldr","gauge", -"upath","fontkit","ps-tree","get-value","set-value","github-api","unset-value","tap-colorize","core-js-bundle", -"app-module-path","es6-promise-pool","better-ajv-errors","jstransformer-dot","@metalsmith/layouts", -"@metalsmith/markdown","console-control-strings","@qooxdoo/eslint-config-qx","@qooxdoo/eslint-plugin-qx", -"eslint-formatter-codeframe","@qooxdoo/eslint-config-jsdoc-disable","@babel/plugin-proposal-optional-chaining-assign", -"dirsum","qooxdoo","fontend","back-end","widgets","gui","databinding","interfaces","mixins","@mdi/font","@mdi/svg", -"@xmldom/xmldom","animate.css","bootstrap-icons", -"eva-icons","line-awesome","eslint-config-quasar","quasar","fonts","animations","gltfpack","detect-gpu","r3f-perf", -"@types/three","three-stdlib","suspend-react","postprocessing","@storybook/react","@react-three/drei", -"@react-three/fiber","cypress-image-diff-js","rollup-plugin-postcss","@storybook/addon-links","@storybook/node-logger", -"eslint-plugin-storybook","@storybook/addon-actions","@storybook/react-webpack5","@react-three/test-renderer", -"@storybook/testing-library","@react-three/postprocessing","@storybook/addon-essentials","@storybook/addon-interactions", -"@types/testing-library__jest-dom","@storybook/preset-create-react-app","threejs","react-three-fiber","ready-player-me", -"3D","avatars","glb","@phryneas/ts-version","@size-limit/file","@size-limit/webpack", -"@testing-library/react-render-stream","@types/babel__core","@types/babel__helper-module-imports","@types/nanoid", -"@types/query-string","esbuild-extra","starter","reducer","slice","redux-toolkit","@rollup/pluginutils","commondir", -"fdir","is-reference","locate-character","require-relative","commonjs","require","is-module","string-capitalize", -"es2015","groq-js","refractor","@sanity/ui","@types/cpx", -"dotenv-flow","@sanity/color","@sanity/icons","@sanity/client","react-refractor","esbuild-register","@sanity/pkg-utils", -"@portabletext/react","@portabletext/toolkit","cpx","sanity","@types/mkdirp","@sanity/ui-workshop", -"@sanity/semantic-release-preset","eslint-plugin-simple-import-sort","API reference","@unhead/vue","@vueuse/core", +"@opentiny/vue-carousel-item","@opentiny/vue-cascader","@opentiny/vue-cascader-menu","@opentiny/vue-cascader-mobile", +"@opentiny/vue-cascader-node","@opentiny/vue-cascader-panel","@opentiny/vue-cascader-select", +"@opentiny/vue-cascader-view","@opentiny/vue-cell","@opentiny/vue-checkbox","@opentiny/vue-checkbox-button", +"@opentiny/vue-checkbox-group","@opentiny/vue-col","@opentiny/vue-collapse","@opentiny/vue-collapse-item", +"@opentiny/vue-collapse-transition","@opentiny/vue-color-picker","@opentiny/vue-color-select-panel", +"@opentiny/vue-column-list-group","@opentiny/vue-column-list-item","@opentiny/vue-company", +"@opentiny/vue-config-provider","@opentiny/vue-container","@opentiny/vue-country","@opentiny/vue-crop", +"@opentiny/vue-currency","@opentiny/vue-date-panel","@opentiny/vue-date-picker","@opentiny/vue-date-picker-mobile-first", +"@opentiny/vue-date-range","@opentiny/vue-date-table","@opentiny/vue-dept","@opentiny/vue-dialog-box", +"@opentiny/vue-dialog-select","@opentiny/vue-divider","@opentiny/vue-drawer","@opentiny/vue-drop-roles", +"@opentiny/vue-drop-times","@opentiny/vue-dropdown","@opentiny/vue-dropdown-item","@opentiny/vue-dropdown-menu", +"@opentiny/vue-dynamic-scroller","@opentiny/vue-dynamic-scroller-item","@opentiny/vue-espace","@opentiny/vue-exception", +"@opentiny/vue-fall-menu","@opentiny/vue-file-upload","@opentiny/vue-filter","@opentiny/vue-filter-bar", +"@opentiny/vue-filter-box","@opentiny/vue-filter-panel","@opentiny/vue-float-button", +"@opentiny/vue-floatbar","@opentiny/vue-floating-button","@opentiny/vue-flowchart","@opentiny/vue-fluent-editor", +"@opentiny/vue-form","@opentiny/vue-form-item","@opentiny/vue-fullscreen","@opentiny/vue-grid", +"@opentiny/vue-grid-column","@opentiny/vue-grid-manager","@opentiny/vue-grid-select","@opentiny/vue-grid-toolbar", +"@opentiny/vue-guide","@opentiny/vue-hrapprover","@opentiny/vue-image","@opentiny/vue-image-viewer", +"@opentiny/vue-input","@opentiny/vue-ip-address","@opentiny/vue-layout","@opentiny/vue-link","@opentiny/vue-link-menu", +"@opentiny/vue-load-list","@opentiny/vue-loading","@opentiny/vue-locales","@opentiny/vue-logon-user", +"@opentiny/vue-logout","@opentiny/vue-menu","@opentiny/vue-message","@opentiny/vue-milestone","@opentiny/vue-mind-map", +"@opentiny/vue-modal","@opentiny/vue-month-range","@opentiny/vue-month-table","@opentiny/vue-nav-menu", +"@opentiny/vue-notify","@opentiny/vue-number-animation","@opentiny/vue-numeric","@opentiny/vue-option", +"@opentiny/vue-option-group","@opentiny/vue-pager","@opentiny/vue-pager-item","@opentiny/vue-panel", +"@opentiny/vue-picker","@opentiny/vue-pop-upload","@opentiny/vue-popconfirm","@opentiny/vue-popeditor", +"@opentiny/vue-popover","@opentiny/vue-popup","@opentiny/vue-progress","@opentiny/vue-pull-refresh", +"@opentiny/vue-qr-code","@opentiny/vue-quarter-panel","@opentiny/vue-query-builder","@opentiny/vue-radio", +"@opentiny/vue-radio-button","@opentiny/vue-radio-group","@opentiny/vue-rate","@opentiny/vue-record", +"@opentiny/vue-recycle-scroller","@opentiny/vue-river","@opentiny/vue-roles","@opentiny/vue-row", +"@opentiny/vue-scroll-text","@opentiny/vue-scrollbar", +"@opentiny/vue-search","@opentiny/vue-select","@opentiny/vue-select-dropdown","@opentiny/vue-select-mobile", +"@opentiny/vue-select-view","@opentiny/vue-select-wrapper","@opentiny/vue-selected-box","@opentiny/vue-signature", +"@opentiny/vue-skeleton","@opentiny/vue-skeleton-item","@opentiny/vue-slider","@opentiny/vue-slider-button", +"@opentiny/vue-slider-button-group","@opentiny/vue-space","@opentiny/vue-split","@opentiny/vue-standard-list-item", +"@opentiny/vue-statistic","@opentiny/vue-steps","@opentiny/vue-sticky","@opentiny/vue-switch","@opentiny/vue-tab-item", +"@opentiny/vue-tabbar","@opentiny/vue-tabbar-item","@opentiny/vue-table","@opentiny/vue-tabs","@opentiny/vue-tag", +"@opentiny/vue-tag-group","@opentiny/vue-tag-input","@opentiny/vue-text-popup","@opentiny/vue-time", +"@opentiny/vue-time-line","@opentiny/vue-time-panel","@opentiny/vue-time-picker","@opentiny/vue-time-picker-mobile", +"@opentiny/vue-time-range","@opentiny/vue-time-select","@opentiny/vue-time-spinner","@opentiny/vue-timeline-item", +"@opentiny/vue-toggle-menu","@opentiny/vue-tooltip","@opentiny/vue-top-box","@opentiny/vue-transfer", +"@opentiny/vue-transfer-panel","@opentiny/vue-tree","@opentiny/vue-tree-menu","@opentiny/vue-tree-select", +"@opentiny/vue-upload","@opentiny/vue-upload-dragger","@opentiny/vue-upload-list","@opentiny/vue-user", +"@opentiny/vue-user-account","@opentiny/vue-user-contact","@opentiny/vue-user-head","@opentiny/vue-user-head-group", +"@opentiny/vue-user-link","@opentiny/vue-virtual-scroll-box","@opentiny/vue-virtual-tree","@opentiny/vue-watermark", +"@opentiny/vue-wizard","@opentiny/vue-year-range","@opentiny/vue-year-table","component-library","opentiny", +"renderless-components", +"headless-components","@opentiny/utils","@opentiny/vue-hooks","gulp-svg-inline","gulp-transform","@otterhttp/accepts", +"@otterhttp/proxy-address","@otterhttp/type-is","@otterhttp/url","@otterhttp/router","es-escape-html", +"@otterhttp/content-disposition","@otterhttp/encode-url","@otterhttp/vary","@otterhttp/etag", +"@pact-foundation/pact-core","@pact-foundation/pact-js-prettier-config","pact","pact-js","contract testing", +"consumer driven testing","@phosphor/algorithm","@phosphor/commands","@phosphor/coreutils","@phosphor/disposable", +"@phosphor/domutils","@phosphor/dragdrop","@phosphor/keyboard","@phosphor/messaging","@phosphor/properties", +"@phosphor/signaling","@phosphor/virtualdom","cobertura","eslint-config-phun-ky","typedoc-plugin-frontmatter", +"typedoc-plugin-mdn-links","typedoc-plugin-remark","typedoc-plugin-rename-defaults","typedoc-vitepress-theme", +"unified-prettier","vitepress-plugin-group-icons","anatomy","annotation","dissect","dissection","grid-layout", +"html-elements","pin","spacing","speccer","stories","@polymer/gen-closure-declarations","@polymer/iron-component-page", +"@polymer/test-fixture","dom5","gulp-vulcanize","lazypipe","polymer-build","polymer-cli","wct-browser-legacy","cldr", +"get-value","set-value","unset-value", +"tap-colorize","core-js-bundle","es6-promise-pool","jstransformer-dot","@metalsmith/layouts","@qooxdoo/eslint-config-qx", +"@qooxdoo/eslint-plugin-qx","@qooxdoo/eslint-config-jsdoc-disable","@babel/plugin-proposal-optional-chaining-assign", +"dirsum","qooxdoo","fontend","databinding","@mdi/svg","eva-icons","line-awesome","eslint-config-quasar","quasar","fonts", +"animations","gltfpack","detect-gpu","r3f-perf","three-stdlib","suspend-react","postprocessing","@react-three/drei", +"@react-three/fiber","cypress-image-diff-js","@storybook/node-logger","@react-three/test-renderer", +"@react-three/postprocessing","@storybook/preset-create-react-app","threejs","react-three-fiber","ready-player-me","3D", +"avatars","@phryneas/ts-version","@types/nanoid","@types/query-string","commondir","groq-js","refractor","@sanity/ui", +"@types/cpx","dotenv-flow","@sanity/color","@sanity/icons","@sanity/client","react-refractor","@sanity/pkg-utils", +"@portabletext/react","@portabletext/toolkit","@sanity/ui-workshop","@sanity/semantic-release-preset","API reference", "microdiff","@scalar/agent-chat","@scalar/code-highlight","@scalar/api-client","@scalar/icons","@scalar/components", -"@scalar/helpers","@scalar/openapi-parser","@scalar/oas-utils","@scalar/openapi-types","@scalar/sidebar","@scalar/types", -"@scalar/snippetz","@scalar/use-hooks","@scalar/themes","@scalar/use-toasts","@scalar/workspace-store", -"@hono/node-server","@tailwindcss/vite","@vitejs/plugin-vue","@vue/test-utils","rollup-plugin-webpack-stats", -"vite-plugin-banner","vite-plugin-css-injected-by-js","@scalar/build-tooling","@scalar/core","@scalar/galaxy", -"@scalar/react-renderer","reference","swagger","fastify-plugin","@fastify/basic-auth","@fastify/http-proxy", -"@fastify/swagger","@serenity-js/core","@serenity-js/rest","@serenity-js/web","tiny-types","@integration/testing-tools", +"@scalar/helpers", +"@scalar/oas-utils","@scalar/sidebar","@scalar/types","@scalar/snippetz","@scalar/use-hooks","@scalar/themes", +"@scalar/use-toasts","@scalar/workspace-store","rollup-plugin-webpack-stats","vite-plugin-css-injected-by-js", +"@scalar/galaxy","@scalar/react-renderer","@fastify/basic-auth","@fastify/http-proxy","@fastify/swagger", "@serenity-js/assertions","@serenity-js/cucumber","@serenity-js/jasmine","@serenity-js/local-server", -"@serenity-js/mocha","@types/html-minifier","mocha-multi", -"automation","browser","e2e","end-to-end","integration","serenity","serenity-js","screenplay","screenplay-pattern","tdd", -"@wdio/reporter","@wdio/cli","@wdio/dot-reporter","@wdio/local-runner","@wdio/spec-reporter","@wdio/types", -"mocha-testdata","webdriverio","wdio","wdio-reporter","@sinonjs/commons","@mochify/cli","@mochify/driver-puppeteer", -"@mochify/driver-webdriver","@sinonjs/eslint-config","@sinonjs/referee-sinon","@storybook/icons","@storybook/csf-plugin", -"@storybook/react-dom-shim","telejson","memoizerific","storybook-addon","essentials","organize","MDX","autodocs", -"styleguide","style guide","web-components","@ant-design/colors","@ant-design/cssinjs","@ant-design/react-slick", +"@serenity-js/mocha","@wdio/reporter","@wdio/dot-reporter","mocha-testdata","wdio","wdio-reporter", +"@sinonjs/referee-sinon","@storybook/csf-plugin","@storybook/react-dom-shim","organize","MDX","autodocs", "@fortawesome/free-regular-svg-icons","@polkadot/react-identicon","@polkadot/util-crypto","@polkadot/wasm-crypto", -"@rc-component/tour","@zxing/browser","@zxing/library","boring-avatars","flatlist-react","jsqr","patch-package", -"phosphor-react","qrcode.react","rc-cascader","rc-checkbox","rc-collapse","rc-dialog","rc-drawer","rc-dropdown", -"rc-image","rc-input","rc-input-number", -"rc-mentions","rc-menu","rc-motion","rc-notification","rc-pagination","rc-picker","rc-progress","rc-rate", -"rc-resize-observer","rc-segmented","rc-select","rc-steps","rc-switch","rc-table","rc-tabs","rc-textarea","rc-tree", -"rc-tree-select","rc-trigger","rc-upload","react-pin-input","react-qrcode-logo","react-superellipse", -"scroll-into-view-if-needed","@babel/eslint-plugin","@emotion/babel-preset-css-prop","@emotion/server", -"@qixian.cs/github-contributors-list","@storybook/addons","@storybook/builder-webpack5","@storybook/manager-webpack5", -"@storybook/theming","@types/gtag.js","@types/jest-axe","@types/jest-environment-puppeteer","@types/jest-image-snapshot", -"@types/jquery","@types/puppeteer","@types/qs","@types/react-color","@types/react-highlight-words", -"@types/react-resizable","@types/react-window","@types/throttle-debounce","@types/warning","antd-img-crop", -"antd-token-previewer","array-move","bundlesize2","dekko","duplicate-package-checker-webpack-plugin","fetch-jsonp", -"jest-axe","jest-image-snapshot","jest-puppeteer","jsonml-to-react-element","lz-string","rc-footer","rc-tween-one", -"rc-virtual-list","react-fast-marquee","react-highlight-words","react-infinite-scroll-component","react-resizable", -"react-sticky-box","react-window","remark-lint","remark-preset-lint-recommended","rome","stylelint-config-prettier", -"stylelint-config-rational-order","stylelint-declaration-block-no-ignored-properties","sylvanas","vanilla-jsoneditor", -"xhr-mock","yaml-front-matter","@supernova-studio/client","@supernova-studio/model","abab","async-mutex","color2k", -"parse-color","string.prototype.matchall","@types/tinycolor2","trash-cli","tsconfig-paths-webpack-plugin","Supernova", -"Design Systems","Supernovaio","SDK","Design Tokens","Tokens","Assets","Components","Documentation","Markdown","CMS", -"expr-eval-fork","ml-matrix","postcss-calc-ast-parser","@ava/typescript","@stylistic/eslint-plugin-js", -"@svitejs/changesets-changelog-github-compact","eslint-config","@sveltejs/acorn-typescript","@types/cookie","devalue", -"esm-env","mrmime","sade","@opentelemetry/api","@types/connect","dts-buddy","official","obug", -"@sveltejs/vite-plugin-svelte-inspector","vite-plugin","vite plugin","@babel/plugin-transform-react-constant-elements", -"@svgr/plugin-jsx","@svgr/plugin-svgo","svgr","webpack-loader","@swc/counter","@swc/types","@napi-rs/cli","@rstest/core", -"swc", -"swcpack","rust","tsc","stylelint-prettier","@swisspost/design-system-icons","@swisspost/design-system-tokens", -"stylelint-config-sass-guidelines","collections","patterns","web components","ui library","symbiote.js","symbiote", -"widget","microfrontends","meta application","custom elements","shadow dom","shadow root","constructable stylesheets", -"adopted stylesheets","css custom properties","pubsub","import maps","cdn imports","https imports", -"reactive html attributes","MIT","JSDA","@types/content-type","istanbul-lib-coverage","istanbul-lib-report", -"istanbul-lib-source-maps","istanbul-reports","rollup-plugin-filesize","tanem-scripts","dom","images","img", -"scalable-vector-graphics","@tanstack/query-core","@tanstack/query-persist-client-core","@tanstack/query-test-utils", -"@testing-library/svelte","tanstack","query","@types/js-cookie","@github/webauthn-json","better-docs", -"eslint-config-preact","hanko","passkey","webauthn","passcode","password","kcd-scripts","functional","aria-query", -"@types/aria-query","dom-accessibility-api","jest-in-case","jest-watch-select-projects","jest-snapshot-serializer-ansi", -"unit", -"redent","@jest/globals","rollup-plugin-delete","jest-environment-jsdom-sixteen","jest-matcher-utils", -"@callstack/eslint-config","@relmify/jest-serializer-strip-ansi","testing-library","dotenv-cli","jest-mock", -"shared-scripts","@types/jest-in-case","@ph.fritsche/toolbox","jest-serializer-ansi","esbuild-plugin-globals", -"eslint-plugin-local-rules","@ph.fritsche/scripts-config","@esbuild-plugins/node-modules-polyfill", -"react-testing-library","dom-testing-library","regexparam","tinyhttp","static","@tinyhttp/vary","supertest-fetch", -"forwarded","headers","header","proxy-addr","net","network","@tinyhttp/accepts","@tinyhttp/content-disposition", -"@tinyhttp/content-type","params","particles.js","particlesjs","particles","particle","jsparticles","xparticles", -"particles-js","particles-bg","particles-bg-vue","particles-ts","particles.ts","react-particles-js","react-particles.js", -"react-particles","vue-particles","ngx-particles","angular-particles","particleground","vuejs","preactjs","angularjs", -"animation","html5","web-design","webdesign","css3","animated","background","confetti", -"fireworks","fireworks-js","confetti-js","confettijs","fireworksjs","canvas-confetti","@d-fischer/shared-utils", -"@twurple/api-call","@twurple/common","jose","twitch","extension","service","ebs","ts-api-utils","natural-compare", -"@eslint-community/regexpp","@typescript-eslint/type-utils","@typescript-eslint/visitor-keys","title-case", -"mdast-util-mdx","micromark-extension-mdxjs","@typescript-eslint/rule-tester", -"@typescript-eslint/rule-schema-to-typescript-types","eslintplugin","@typescript-eslint/typescript-estree","estree", -"@ucloud-fe/calendar","component-classes","create-react-context","emotion-theming","file-bytes-formatter","mini-store", -"rc-animate","rc-form","z-use-drag","@types/hoist-non-react-statics","@types/raf","@ucloud-fe/recodo-gen","ast-types", -"babel-plugin-emotion","babel-plugin-typescript-to-proptypes","babel-plugin-webpack-alias","css-hot-loader", -"jest-emotion","jsdom-screenshot","stylelint-config-styled-components","stylelint-processor-styled-components", -"tsc-alias","ucloud","jotai-x","is-hotkey","optics-ts","zustand-x","slate-react","jotai-optics","@udecode/slate", -"@udecode/utils","use-deep-compare","slate-hyperscript","@udecode/react-utils","@udecode/react-hotkeys","plate","slate", -"button","react-button","uiw-react","react.js","uikit","react-ui","@uiw/icons","react-icon","react-input", -"@uiw/react-overlay","overlay-trigger","react-overlay-trigger","utils","react-utils","prom-client","openapi-types", -"unleash-client","json-schema-to-ts","ts-node-dev","@types/type-is","Unleash","native","ios","android","flags","lit", -"keyux","nanostores","@lit/context","@uploadcare/cname-prefix","@uploadcare/image-shrink","@uploadcare/upload-client", -"@uploadcare/quality-insights","shipjs","render-jsx","lit-analyzer","ts-lit-plugin","@biomejs/js-api","@vitest/browser", -"eslint-plugin-wc","@types/svg-sprite","eslint-plugin-lit","vitest-browser-lit","@biomejs/wasm-nodejs", -"@size-limit/esbuild-why","esbuild-minify-templates","@total-typescript/ts-reset","@size-limit/preset-small-lib", -"@happy-dom/global-registrator","@csstools/postcss-cascade-layers","uploadcare","lighter","file uploader", -"adaptive image","image optimization","image editing","image size","cloud image editor","upload api client", -"building blocks","blocks","lr-blocks","uc-blocks","integrations", -"smart cdn","cloud file platform","transformation api","webp","avif","css context properties","meta applications", -"browserslist-to-esbuild","@babel/plugin-transform-react-jsx-self","@babel/plugin-transform-react-jsx-source", -"@rolldown/pluginutils","babel-plugin-react-compiler","fast refresh","@tsconfig/node20","pkgroll","create-vue", -"create-eslint-config","ajv-keywords","merge-deep","swagger-parser","@ant-design/icons-svg","@makotot/ghostui", -"@types/hast","@umijs/bundler-utils","@umijs/core","@umijs/utils","animated-scroll-to","codesandbox","comlink", -"dumi-afx-deps","estree-util-to-js","estree-util-visit","file-system-cache","heti","html2sketch", -"mdast-util-find-and-replace","mdast-util-to-string","prism-themes","react-loading-skeleton","react-simple-code-editor", -"rehype-remove-comments","remark-directive","sucrase","umi","unist-util-visit-parents","v8-compile-cache","vfile", -"dumi-assets-types","@types/highlight-words-core","@types/hosted-git-info","@types/lodash.throttle","@types/pluralize", -"@umijs/lint","@umijs/plugins","codesandbox-import-utils","git-repo-info","highlight-words-core","zx", -"dumi-theme-mobile","static site generator","jamstack","aleo","cryptography","blockchain", -"decentralized","zero-knowledge","oracle","event-target-shim","@mysticatea/eslint-plugin","@mysticatea/spy", -"dts-bundle-generator","karma-growl-reporter","rollup-plugin-babel-minify","rollup-watch","type-tester","w3c","whatwg", -"event","abort","cancel","abortcontroller","abortsignal","controller","signal","shim","negotiator","content", -"negotiation","accept","middleware","progress-estimator","@types/figlet","@types/git-clone", -"rollup-plugin-node-externals","nestjs","fullstack","zip","archive","flowcontrol","flow","control","arch","cron-parser", -"date.js","human-interval","@types/human-interval","job","jobs","delayed","blockchain-bend4","blockchain-meat7", -"bow-swam-troops-care","cent-matter-to","closer-composed-particularly-shout","coach-organized-notice", -"correct-home-silent7","course-whenever-merely","crop-birthday-web3-children","exchange-known-bend", -"face-eventually-bound","grass-dollar-crew-floating","information-fruit-web3-perfect","lay-rest-hour", -"material-balance-trade-solar","meat-think-stove8","office-deal-mostly1","product-slight-adult-settlers", -"recently-done-should-moon", -"scientific-exist-event2","sentence-won-little-western","speed-wing-eat","stay-including","supper-term-including-snake", -"truck-hospital-equator-hurt","trunk-darkness-believed-corner","typical-recall-industry-exchange","warn-clothing-whose0", -"weigh-flew-web3-farm","@airtap/browserify-istanbul","airtap-default","airtap-multi","bruce-millis-option","engine.io", -"engine.io-client","find-nearest-file","globs-to-files","humanize-duration","load-script","make-promises-safe", -"maybe-combine-errors","nanoresource","nanoresource-collection","on-stream-close","run-parallel-settled","tap-completed", -"thunky-with-args","transient-error","abstract-browser","simple-get","saucelabs","fast-uri","json-schema-traverse", -"require-from-string","@ajv-validator/config","@types/require-from-string","dayjs-plugin-utc","if-node-version", -"json-schema-test","module-from-string","re2","tsify","uri-js","json-schema-validator","json-schema-validation","Ajv", -"longjohn","buffer-more-ints","claire","AMQP","AMQP 0-9-1","RabbitMQ","simple","ux bootstrap","client-side", -"@angular-cli/ast-tools","@angular-cli/base-href-webpack","@ngtools/json-schema","@ngtools/webpack","denodeify", -"ember-cli-normalize-entity-name","ember-cli-string-utils","exists-sync", -"findup","get-caller-file","isbinaryfile","node-modules-path","script-loader","silent-error", -"sourcemap-istanbul-instrumenter-loader","component library","justified","256","ansi","bgblack","bgBlack","bgblue", -"bgBlue","bgcyan","bgCyan","bggreen","bgGreen","bgmagenta","bgMagenta","bgred","bgRed","bgwhite","bgWhite","bgyellow", -"bgYellow","black","blue","bold","clorox","colour","cyan","dim","formatting","gray","green","grey","hidden","inverse", -"italic","logging","magenta","red","reset","rgb","shell","str","strikethrough","style","text","underline","white", -"yellow","environment","escape","escapes","vt100","sequence","codes","cursor","iterm2","screen","erase", -"scrollback","regex","regexp","re","match","find","pattern","svg-term-cli","@ant-design/icons-vue","@emotion/unitless", -"@simonwep/pickr","array-tree-filter","dom-align","dom-scroll-into-view","shallow-equal","vue-types", -"@babel/plugin-proposal-optional-chaining","@babel/plugin-transform-object-assign","@types/koa","@types/lru-cache", -"@types/postcss-load-config","@vitejs/plugin-vue-jsx","@vue/babel-plugin-jsx","@vue/cli-plugin-eslint", -"@vue/eslint-config-prettier","@vue/vue3-jest","@webpack-cli/serve","ali-oss","babel-plugin-inline-import-data-uri", -"babel-plugin-transform-require-context","colorful","compare-versions","cz-git","diacritics","docsearch.js","enquire-js", -"eslint-plugin-no-explicit-type-exports","gulp-strip-code","ignore-emit-webpack-plugin","is-windows", -"jest-serializer-vue","jest-transform-stub","json-templater","less-plugin-npm-import","less-vars-to-js","majo", -"markdown-it-table-of-contents","merge2","remark-stringify","remark-yaml-config","reqwest","rucksack-css", -"selenium-server","string-replace-loader","umi-request","vue-clipboard2","vue-drag-resize","vue-infinite-scroll", -"vue-request","vue-tsc","webpackbar","vueComponent","@rc-component/form","@rc-component/menu", -"@rc-component/rate","@rc-component/tabs","@rc-component/tree","@rc-component/util","@rc-component/image", -"@rc-component/input","@rc-component/steps","@rc-component/table","@rc-component/dialog","@rc-component/drawer", -"@rc-component/motion","@rc-component/picker","@rc-component/qrcode","@rc-component/select","@rc-component/slider", -"@rc-component/switch","@rc-component/upload","@rc-component/tooltip","@rc-component/trigger","@ant-design/fast-color", +"@zxing/browser","@zxing/library","boring-avatars","flatlist-react","jsqr","phosphor-react","rc-cascader","rc-checkbox", +"rc-collapse","rc-dropdown","rc-image","rc-input","rc-input-number","rc-mentions","rc-notification","rc-pagination", +"rc-picker","rc-rate","rc-resize-observer","rc-segmented","rc-select","rc-steps","rc-switch","rc-table","rc-textarea", +"rc-tree-select","rc-upload","react-pin-input","react-qrcode-logo", +"react-superellipse","@emotion/babel-preset-css-prop","@storybook/builder-webpack5","@storybook/manager-webpack5", +"@types/puppeteer","@types/react-color","@types/react-window","array-move","react-window","rome","yaml-front-matter", +"Supernova","Design Systems","Supernovaio","SDK","Design Tokens","Tokens","Assets","Components","Documentation", +"Markdown","CMS","expr-eval-fork","ml-matrix","postcss-calc-ast-parser","@sveltejs/vite-plugin-svelte-inspector", +"vite plugin","@babel/plugin-transform-react-constant-elements","@svgr/plugin-jsx","@swc/counter","@rstest/core", +"swcpack","@swisspost/design-system-icons","@swisspost/design-system-tokens","stylelint-config-sass-guidelines", +"symbiote","meta application","constructable stylesheets","adopted stylesheets","css custom properties","import maps", +"cdn imports","https imports","reactive html attributes","JSDA","scalable-vector-graphics","@tanstack/query-core", +"@tanstack/query-persist-client-core","@testing-library/svelte","tanstack","@types/js-cookie","@github/webauthn-json", +"better-docs","eslint-config-preact","hanko","passkey","webauthn","passcode","jest-snapshot-serializer-ansi", +"@callstack/eslint-config","@relmify/jest-serializer-strip-ansi","shared-scripts","@ph.fritsche/toolbox", +"esbuild-plugin-globals", +"@ph.fritsche/scripts-config","@esbuild-plugins/node-modules-polyfill","react-testing-library","dom-testing-library", +"forwarded","@tinyhttp/accepts","@tinyhttp/content-disposition","@d-fischer/shared-utils","@twurple/api-call", +"@twurple/common","twitch","@typescript-eslint/rule-schema-to-typescript-types","@ucloud-fe/calendar", +"create-react-context","emotion-theming","file-bytes-formatter","rc-animate","rc-form","z-use-drag", +"@ucloud-fe/recodo-gen","babel-plugin-emotion","babel-plugin-typescript-to-proptypes","babel-plugin-webpack-alias", +"css-hot-loader","jest-emotion","jsdom-screenshot","stylelint-config-styled-components", +"stylelint-processor-styled-components","ucloud","jotai-x","is-hotkey","optics-ts","zustand-x","slate-react", +"jotai-optics","use-deep-compare","slate-hyperscript","plate","slate","react-button","@uiw/icons","react-icon", +"react-input","overlay-trigger","react-overlay-trigger","react-utils","unleash-client","ts-node-dev","@types/type-is", +"Unleash","keyux","nanostores","@lit/context","@uploadcare/image-shrink","@uploadcare/upload-client", +"@uploadcare/quality-insights","render-jsx","lit-analyzer","ts-lit-plugin","eslint-plugin-wc","@types/svg-sprite", +"eslint-plugin-lit","vitest-browser-lit","@size-limit/esbuild-why", +"esbuild-minify-templates","lighter","adaptive image","image optimization","image editing","image size", +"cloud image editor","upload api client","building blocks","blocks","lr-blocks","uc-blocks","integrations","smart cdn", +"cloud file platform","transformation api","css context properties","meta applications", +"@babel/plugin-transform-react-jsx-self","create-vue","create-eslint-config","merge-deep","aleo","zero-knowledge", +"event-target-shim","@mysticatea/spy","karma-growl-reporter","type-tester","abort","abortcontroller","abortsignal", +"progress-estimator","@types/figlet","@types/git-clone","flowcontrol","date.js","human-interval","@types/human-interval", +"jobs","@airtap/browserify-istanbul","airtap-default","airtap-multi","bruce-millis-option","maybe-combine-errors", +"nanoresource","nanoresource-collection","on-stream-close","run-parallel-settled","tap-completed","thunky-with-args", +"transient-error","abstract-browser","fast-uri","@types/require-from-string","dayjs-plugin-utc","module-from-string", +"re2","uri-js","json-schema-validation","Ajv","buffer-more-ints","claire","AMQP","AMQP 0-9-1", +"RabbitMQ","ux bootstrap","@angular-cli/ast-tools","@angular-cli/base-href-webpack","@ngtools/json-schema", +"@ngtools/webpack","exists-sync","node-modules-path","sourcemap-istanbul-instrumenter-loader","justified","bgblack", +"bgBlack","bgblue","bgBlue","bgcyan","bgCyan","bggreen","bgGreen","bgmagenta","bgMagenta","bgred","bgRed","bgwhite", +"bgWhite","bgyellow","bgYellow","black","blue","bold","clorox","cyan","dim","green","grey","hidden","italic","magenta", +"reset","str","underline","white","yellow","iterm2","erase","scrollback","re","svg-term-cli","@ant-design/icons-vue", +"@simonwep/pickr","dom-align","vue-types","@types/postcss-load-config","@vue/cli-plugin-eslint", +"@vue/eslint-config-prettier","babel-plugin-transform-require-context","compare-versions","cz-git","diacritics", +"eslint-plugin-no-explicit-type-exports","ignore-emit-webpack-plugin","jest-serializer-vue","jest-transform-stub", +"less-vars-to-js","selenium-server", +"umi-request","vue-clipboard2","vue-drag-resize","vue-infinite-scroll","vue-request","vueComponent","@rc-component/form", +"@rc-component/menu","@rc-component/rate","@rc-component/tabs","@rc-component/tree","@rc-component/util", +"@rc-component/image","@rc-component/input","@rc-component/steps","@rc-component/table","@rc-component/dialog", +"@rc-component/drawer","@rc-component/motion","@rc-component/picker","@rc-component/qrcode","@rc-component/select", +"@rc-component/slider","@rc-component/switch","@rc-component/upload","@rc-component/tooltip","@ant-design/fast-color", "@rc-component/cascader","@rc-component/checkbox","@rc-component/collapse","@rc-component/dropdown", "@rc-component/mentions","@rc-component/progress","@rc-component/textarea","@rc-component/segmented", "@rc-component/pagination","@ant-design/cssinjs-utils","@rc-component/tree-select","@rc-component/color-picker", "@rc-component/input-number","@rc-component/notification","@rc-component/mutate-observer", -"@rc-component/resize-observer","p-all","runes2","mermaid","spinnies","env-paths","@types/tar","antd-style", -"@types/pngjs","cli-progress","domparser-rs","vanilla-tilt","@ant-design/x","react-countup","@prettier/sync", -"@types/adm-zip","@types/ali-oss","@blazediff/core","@types/css-tree","@types/minimist","@types/spinnies", -"@types/nprogress","lunar-typescript","@ant-design/x-sdk","csstree-validator","@types/http-server","@types/cli-progress", -"@antfu/eslint-config","@ant-design/compatible", -"@codecov/webpack-plugin","@types/isomorphic-fetch","dumi-plugin-color-chunk","@microflash/rehype-figure", -"@rc-component/virtual-list","circular-dependency-plugin","@codesandbox/sandpack-react","@eslint-react/eslint-plugin", -"@ant-design/happy-work-theme","cypress-image-diff-html-report","@ianvs/prettier-plugin-sort-imports", -"remark-lint-no-undefined-references","@madccc/duplicate-package-checker-webpack-plugin", +"@rc-component/resize-observer","domparser-rs","@ant-design/x","@blazediff/core","@ant-design/x-sdk","csstree-validator", +"@codecov/webpack-plugin","@rc-component/virtual-list","@eslint-react/eslint-plugin","cypress-image-diff-html-report", "@api-components/api-console-ext-comm","@api-components/api-documentation","@api-components/api-summary", "@polymer/app-layout","@polymer/iron-media-query","@polymer/paper-toast","@anypoint-web-components/anypoint-menu-mixin", "@open-wc/building-rollup","@polymer/iron-test-helpers","@web/test-runner-visual-regression","amf-client-js", -"rollup-plugin-cpy","unzipper","raml","amf","diff-match-patch","expose-loader","klaw-sync","eslint-config-recommended", -"restful","apidoc-light","portable","programmatic","cli-app","api-documentation","markdown-documentation","http2", -"apple","push","push notifications","iOS","apns","notifications","apollo-cache","apollo-utilities","ts-invariant", -"@types/zen-observable","symbol-observable","zen-observable","jsnext","relay","zen-observable-ts","@types/graphql", -"apollo-link-http-common","apollo-fetch","object-to-querystring","cracks","root","node_modules","@colors/colors", -"appium-adb", -"appium-chromedriver","asyncbox","io.appium.settings","portscanner","teen_process","@appium/eslint-config-appium-ts", -"@appium/tsconfig","@types/bluebird","@types/portscanner","appium","mobile testing","@azure/identity","@azure/core-auth", -"@azure/functions","diagnostic-channel","@opentelemetry/core","@azure/functions-old","@opentelemetry/api-logs", -"@opentelemetry/sdk-logs","@opentelemetry/resources","@opentelemetry/sdk-metrics","@azure/monitor-opentelemetry", -"@opentelemetry/sdk-trace-base","@opentelemetry/sdk-trace-node","diagnostic-channel-publishers", -"@opentelemetry/otlp-exporter-base","@opentelemetry/semantic-conventions","@azure/monitor-opentelemetry-exporter", -"@opentelemetry/exporter-logs-otlp-http","@opentelemetry/exporter-trace-otlp-http", -"@opentelemetry/exporter-metrics-otlp-http","@opentelemetry/exporter-metrics-otlp-proto", +"rollup-plugin-cpy", +"raml","amf","diff-match-patch","expose-loader","eslint-config-recommended","apidoc-light","api-documentation", +"markdown-documentation","push notifications","apns","relay","zen-observable-ts","apollo-link-http-common", +"apollo-fetch","object-to-querystring","cracks","appium-adb","appium-chromedriver","io.appium.settings", +"@appium/eslint-config-appium-ts","@types/portscanner","mobile testing","@azure/identity","@azure/functions", +"diagnostic-channel","@azure/functions-old","@azure/monitor-opentelemetry","@opentelemetry/sdk-trace-node", +"diagnostic-channel-publishers","@opentelemetry/otlp-exporter-base","@opentelemetry/semantic-conventions", +"@azure/monitor-opentelemetry-exporter","@opentelemetry/exporter-logs-otlp-http", +"@opentelemetry/exporter-trace-otlp-http","@opentelemetry/exporter-metrics-otlp-http", "@azure/opentelemetry-instrumentation-azure-sdk","@types/long","@types/microsoft__typescript-etw","exception monitoring", -"request monitoring","performance monitoring","application insights","microsoft","azure","cloud","tracing","telemetry", -"analytics","apm","@aws-sdk/credential-provider-node","@aws-sdk/hash-node","@aws-sdk/protocol-http", -"@aws-sdk/signature-v4","@aws-sdk/types","aws-xray-sdk-core","@aws-amplify/amplify-appsync-simulator","constructs", -"prettier-plugin-organize-attributes","projen","appsync","aws","gql","lambda","xray","archiver-utils","buffer-crc32", -"readdir-glob", -"zip-stream","archiver-jsdoc-theme","stream-bench","stream","@babel/plugin-syntax-class-properties","option", -"define-properties","es-abstract","es-shim-unscopables","@es-shims/api","@ljharb/eslint-config","encoding", -"has-strict-mode","Array.prototype.flatMap","flatMap","array","ESnext","flatten","Array.prototype.flatten","es-shim API", -"arrayify","convert","value","ensure","is-nan","object-is","array-fill","fn.name","is-buffer","propget","pruddy-error", -"assertion","asserts","shouldjs","unit testing","babel-minify","rollup-plugin-npm","babel-preset-es2017", -"native-promise-only","eslint-plugin-prefer-arrow","babel-plugin-syntax-async-generators","callback","@types/tap", -"await","listen","then-sleep","@babel/node","@pika/pack","pika-plugin-build-web-babel","pika-plugin-ts-types","validate", -"libnpx","node-cleanup","npm-lockfile","find-package-json","audit","lockfile","shrinkwrap","import-cwd", -"parse-github-url","babel-plugin-rewire","auto","automatic","changelog", -"change","git","commit","commits","detective","detective-es6","is-builtin-module","package-json","sync-exec","package", -"fraction.js","prefix","@vercel/nft","arrgv","callsites","cbor","chunkd","ci-parallel-vars","code-excerpt", -"common-path-prefix","concordance","currently-unhandled","emittery","ignore-by-default","matcher","memoize", -"package-config","resolve-cwd","supertap","temp-dir","@sindresorhus/tsconfig","🦄","concurrent","parallel","fast", -"promises","function","generators","yield","observable","observables","webpack-log","empty-module","ps-node","loader", -"ieee754","jmespath","hash-test-vectors","insert-module-globals","amazon","ec2","simpledb","s3","sqs","ses","sns", -"route53","rds","elasticache","cloudfront","fps","cloudformation","cloudwatch","dynamodb", -"iam","swf","autoscaling","cloudsearch","elb","loadbalancing","emr","mapreduce","importexport","storagegateway", -"workflow","vpc","beanstalk","glacier","kinesis","cloudtrail","waf","memoizee","@deque/dot","colorjs.io","typedarray", -"emoji-regex","grunt-babel","revalidator","sri-toolbox","serve-handler","grunt-bytesize","weakmap-polyfill", -"clean-jsdoc-theme","css-selector-parser","@axe-core/webdriverjs","conventional-commits-parser", -"eslint-plugin-mocha-no-only","Accessibility","axe","proxy-from-env","dev-null","formdata-node","stream-throttle", -"karma-jasmine-ajax","string-replace-async","abortcontroller-polyfill","rollup-plugin-bundle-size", -"@rollup/plugin-multi-entry","rollup-plugin-auto-external","istanbul-instrumenter-loader","ajax","browserify-mime", -"json-edm-parser","md5.js","batchflow","factor-bundle","karma-env-preprocessor","storage","output-file-sync","v8flags", -"babel-code-frame","babel-helpers","babel-messages","private","babel-helper-transform-fixture-test-runner", -"eslint-config-babel","trim-right","try-resolve", -"babel-preset-jest","babel-plugin-transform-export-extensions","babel-preset-power-assert", -"conventional-github-releaser","module.exports","airbnb-js-shims","babel-plugin-transform-replace-object-assign", -"dynamic","import","@umijs/test","babel-preset-umi","react-toolbox","@istanbuljs/load-nyc-config", -"istanbul-lib-instrument","test-exclude","pmock","instrumentation","require-package-name", -"@babel/plugin-proposal-function-bind","@babel/preset-stage-0","lodash-bound","lodash-compat","cherry-pick", -"find-babel-config","prettier-eslint-cli","resolver","alias","rewrite","rename","mapping","babel-plugin-tester", -"babel-helper-remap-async-to-generator","babel-plugin-syntax-async-functions","babel-helper-function-name", -"babel-plugin-syntax-class-properties","babel-plugin-syntax-decorators","es7","babel-plugin-transform-strict-mode", -"babel-plugin-syntax-object-rest-spread","babel-helper-builder-react-jsx","@babel/preset-flow", -"babel-plugin-flow-react-proptypes","pkgfiles","minification","propTypes","regenerator-transform", -"@babel/plugin-proposal-numeric-separator","@babel/plugin-transform-property-mutators", -"@babel/plugin-proposal-optional-catch-binding","@babel/plugin-proposal-nullish-coalescing-operator", -"babel-plugin-check-es2015-constants","babel-plugin-syntax-trailing-function-commas", -"babel-plugin-transform-es2015-arrow-functions","babel-plugin-transform-es2015-block-scoped-functions", -"babel-plugin-transform-es2015-classes","babel-plugin-transform-es2015-computed-properties", -"babel-plugin-transform-es2015-destructuring","babel-plugin-transform-es2015-duplicate-keys", -"babel-plugin-transform-es2015-for-of","babel-plugin-transform-es2015-function-name", -"babel-plugin-transform-es2015-literals","babel-plugin-transform-es2015-modules-amd", -"babel-plugin-transform-es2015-modules-systemjs","babel-plugin-transform-es2015-modules-umd", -"babel-plugin-transform-es2015-object-super","babel-plugin-transform-es2015-parameters", -"babel-plugin-transform-es2015-shorthand-properties","babel-plugin-transform-es2015-spread", -"babel-plugin-transform-es2015-sticky-regex","babel-plugin-transform-es2015-typeof-symbol", -"babel-plugin-transform-es2015-unicode-regex","babel-plugin-transform-exponentiation-operator","electron-to-chromium", -"babel-preset-flow","babel-plugin-transform-react-display-name","babel-plugin-transform-react-jsx-source", -"babel-plugin-transform-react-jsx-self","@babel/plugin-proposal-private-methods","babel-plugin-transform-do-expressions", -"babel-plugin-transform-function-bind","babel-plugin-transform-class-constructor-call", -"babel-plugin-transform-decorators","babel-plugin-transform-async-generator-functions","home-or-tmp","esutils", -"to-fast-properties","lodash.zipobject","babel-plugin-transform-node-env-inline", -"babel-plugin-transform-flow-strip-types","unicode-9.0.0","model","view","@purtuga/esm-webpack-plugin", -"@types/validator","@web/test-runner-browserstack","@web/test-runner-junit-reporter","otpauth","backend-as-a-service", -"grunt-template","codec","decoder","encoder","base64","basic","auth","authorization","basicauth","sorted-object", -"ministructure","sinatra","orange sms","node-gyp-build","prebuildify","encryption","crypt","hash","esm2umd", -"pomelo-logger","di","IoC","AOP","dependency","injection","consistent","hot reload","front-backend","sharable codes", -"dependency injection", -"asynchronous script loading","magic, self-described javaScript objects","beautify","art-near-room-catch","blanket-line", -"born-greatly-explain3","bring-water-silence","brush-bigger-afternoon0","column-wore-meet-war","compare-breeze-mad2", -"did-straight-sister-sail","excitement-tonight-dead","gain-pleasant-prepare","industrial-public-immediately-until", -"is-straight-web3-attack","known-wet-thirty-gave","listen-private-thee6","mainly-cent","mountain-quarter-sit8", -"mouse-bat-web3-present","needs-supper-anything","percent-impossible-score","rocket-location-calm-valley", -"seldom-fire-web3-running","shade-swim-shells1","spider-melted-chemical","stretch-onto-driver7","tiny-dream-supply5", -"tool-invented-girl-jungle","we-hunt-process","web3-automobile7","whether-dangerous","ansicolors","ignorepatterns", -"response-stream","script-injector","find-global-packages","jsl","dotpathlookup","simplehttpserver","platform","docdown", -"qunit-extras","performance","speed","@beyond-js/specifier-parser","@beyond-js/fs","@beyond-js/bee","ansi-to-html", -"concat-with-sourcemaps","json-format","resolve-package-path","uimport","global-modules","universal", -"universal javascript","universal typescript","isomorphic","isomorphic javascript","isomorphic typescript","sigle page", -"spa","modular development","microfrontend", -"micro frontend","microservices","micro services","hmr","hot module replacement","ssr","server side rendering", -"typescript packager","JAMStack","real time","react framework","ssr react framework","vue framework","ssr vue framework", -"svelte framework","ssr svelte framework","websockets","check-types","hoopy","tryer","please-release-me","spooks", -"streamify","stringify","serialise","serialize","write","asynchronous","arbitrary","precision","arithmetic","big", -"number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum","file-uri-to-path","addon","gyp","c", -"c++","@noble/hashes","@antv/component","@antv/g2","@antv/g2plot","@antv/util","d3-color","react-reconciler", -"@antv/data-set","@babel/preset-es2015","@storybook/addon-info","@storybook/addon-knobs","@storybook/addon-options", -"@umijs/fabric","@welldone-software/why-did-you-render","aphrodite","babel-plugin-inline-react-svg", -"babel-plugin-inline-svg","bx-jest-electron","declaration-bundler-webpack-plugin", -"git-directory-deploy","imports-loader","moment-jalaali","react-with-styles-interface-aphrodite", -"react-with-styles-interface-css-compiler","snapshot-diff","g2","@types/readable-stream","buffers","awesomesauce", -"falafel","foreach","coffee-react","uglify-save-license","curses","tui","tput","terminfo","termcap","ansi-term", -"drawille-canvas-blessed-contrib","map-canvas","marked-terminal","memory-streams","picture-tuber","sparkline", -"term-canvas","x256","@types/blessed","block","loop","kefir","baconjs","promises-a","promises-aplus","deferred", -"deferreds","future","flow control","dsl","fluent interface","standardx","BN","Big number","BigNum","Modulo", -"Montgomery","create-error","bookshelf-jsdoc-theme","postgresql","datamapper","active record","error","@types/mime", -"@astrojs/mdx","@astrojs/check","@astrojs/prism","@astrojs/sitemap","astro-auto-import","prettier-plugin-astro", -"@astrojs/markdown-remark","mincer","eyeglass-module","box", -"boxes","border","quote-stream","static-module","browserify-transform","readFileSync","asset","heimdalljs","array-equal", -"fs-tree-diff","broccoli-plugin","mocha-eslint","release-it-lerna-changelog","merge-trees","broccoli-fixture","copy", -"broccoli-fixturify","multidep","ts-docs-gen","tslint-plugin-prettier","browser-sync-client","browser-sync-ui", -"bs-recipes","dev-ip","easy-extender","eazy-logger","resp-modifier","bs-snippet-injector","generate-changelog", -"browser sync","live reload","sync","subarg","defined","parents","deps-sort","duplexer2","htmlescape","module-deps", -"stream-http","browser-pack","syntax-error","os-browserify","shasum-object","vm-browserify","domain-browser", -"mkdirp-classic","string_decoder","tty-browserify","browser-resolve","browserify-zlib","querystring-es3", -"https-browserify","read-only-stream","stream-browserify","timers-browserify","console-browserify", -"cached-path-relative","constants-browserify","labeled-stream-splicer","seq","isstream","coffeeify","browser-unpack", -"has-object-spread","has-template-literals","make-generator-function","commonj-esque","exposify","mothership", -"rename-function-calls","test-peer-range","transform","window","baseline-browser-mapping","node-releases", -"update-browserslist-db","browsers","target","base-x","ts-standard","base58","bitcoin","crytography","decode","decoding", -"encode","litecoin","typescript-cached-transpile","acorn-dynamic-import","acorn-jsx","regexpu-core","console-group", -"@rollup/plugin-buble","test262-stream","transpilation","compilation","esnext","es2017","arraybuffer","compatible", -"dataview","uint8array","equal","builtin","built-in","builtins","bundled","names","flexbox","@asyncapi/specs", -"@clack/prompts","@oclif/plugin-warn-if-update-available","@stoplight/yaml","jsonpathly","mergician","@types/jsonpath", -"bump","compress","mv","dtrace-provider","safe-json-stringify","ben","log4j","streamsearch","@mscdex/eslint-config", -"uploads","multipart", -"closurecompiler","lxiv","metascript","pretty-hrtime","testjs","utfx","typed array","webrtc","byte","converter", -"@bcoe/v8-coverage","foreground-child","v8-to-istanbul","chai-jest-snapshot","v8","profiler","inspector","@types/mri", -"eslint-config-rem","rollup-plugin-esbuild","@babel/plugin-syntax-typescript","@cacheable/utils","@faker-js/faker", -"@keyv/redis","@vitest/spy","cache-manager-redis-yet","cacheable","caching","cache manager","in-memory cache", -"multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper", -"call-bind-apply-helpers","es-define-property","get-intrinsic","set-function-length","es","callbind","callbound","call", -"bind","bound","call-bound","camel-case","camel","case","dash","hyphen","separator","pascalcase","pascal-case","support", -"prebuild-install","assert-rejects","graphic","graphics","pixman","cairo","image", -"pdf","case sensitive","slimerjs","scraping","loupe","pathval","check-error","assertion-error","@web/dev-server-rollup", -"chai-plugin","assertions","strategy","@debitoor/eslint-config-debitoor","objects","subset","contains","containSubset", -"deep","like","similar","includes","superset","yoctodelay","docpress","git-update-ghpages","gulp-ava","gulp-uglify-es", -"random","mersenne","name","address","dice","param-case","kebab-case","header-case","c12","confbox","convert-gitmoji", -"node-fetch-native","ofetch","pkg-types","scule","std-env","@kurkle/color","@rollup/plugin-inject", -"@types/offscreencanvas","chartjs-adapter-luxon","chartjs-adapter-moment","chartjs-test-utils","eslint-config-chartjs", -"eslint-plugin-es","karma-safari-private-launcher","rollup-plugin-swc3","charts","data","graphs","domutils","domhandler", -"cheerio-select","whatwg-mimetype","encoding-sniffer","parse5-parser-stream","parse5-htmlparser2-tree-adapter", -"@imgix/js-core", -"@octokit/graphql","@vitest/eslint-plugin","@types/whatwg-mimetype","htmlparser","scraper","xml","node-version","child", -"@better-scroll/core","add-dom-event-listener","choerodon-ui-font","css-animation","css-unit-converter","dom-closest", -"dom-lib","element-resize-event","htmlhint","insert-css","jsbarcode","jsonlint","jsonlint-mod","mutationobserver-shim", -"querystringify","quill-delta-to-html","react-beautiful-dnd","react-codemirror2","react-easy-crop", -"react-image-lightbox","react-lazy-load","react-quill","rmc-feedback","smooth-scroll-into-view-if-needed", -"@babel/plugin-transform-proto-to-assign","@types/codemirror","@types/element-resize-event","@types/faker", -"@types/insert-css","@types/jsbarcode","@types/prettier","@types/qrcode.react","@types/react-beautiful-dnd", -"@types/react-is","@types/react-slick","bisheng-plugin-choerodon-ui","bisheng-plugin-description","bisheng-plugin-react", -"bisheng-plugin-toc","eslint-tinker","intersection-observer","mark-twain","rc-queue-anim","rc-scroll-anim", -"react-infinite-scroller","react-sublime-video","scrollama","values.js","vfile-message","webpack-filter-warnings-plugin", -"choerodon","readdirp","@paulmillr/jsbt","watchFile","watcher","watching", -"file","ci","continuous","detect","@ckeditor/ckeditor5-emoji","@ckeditor/ckeditor5-style","@ckeditor/ckeditor5-mention", -"@ckeditor/ckeditor5-minimap","@ckeditor/ckeditor5-autosave","@ckeditor/ckeditor5-bookmark", -"@ckeditor/ckeditor5-language","@ckeditor/ckeditor5-highlight","@ckeditor/ckeditor5-code-block", -"@ckeditor/ckeditor5-fullscreen","@ckeditor/ckeditor5-html-embed","@ckeditor/ckeditor5-page-break", -"@ckeditor/ckeditor5-theme-lark","@ckeditor/ckeditor5-word-count","@ckeditor/ckeditor5-show-blocks", +"request monitoring","performance monitoring","application insights","tracing","telemetry", +"@aws-sdk/credential-provider-node","@aws-sdk/hash-node","@aws-sdk/protocol-http","@aws-sdk/signature-v4", +"aws-xray-sdk-core","@aws-amplify/amplify-appsync-simulator","prettier-plugin-organize-attributes","appsync","xray", +"archiver-utils","readdir-glob","zip-stream","archiver-jsdoc-theme","stream-bench","es-shim-unscopables","flatMap", +"ESnext","arrayify","array-fill","fn.name", +"propget","pruddy-error","shouldjs","babel-preset-es2017","native-promise-only","babel-plugin-syntax-async-generators", +"listen","then-sleep","@pika/pack","pika-plugin-build-web-babel","pika-plugin-ts-types","libnpx","node-cleanup", +"npm-lockfile","find-package-json","import-cwd","commits","detective-es6","arrgv","cbor","chunkd","ci-parallel-vars", +"concordance","currently-unhandled","package-config","supertap","🦄","yield","observables","webpack-log","empty-module", +"ps-node","ec2","simpledb","route53","rds","elasticache","cloudfront","fps","cloudformation","cloudwatch","iam", +"autoscaling","cloudsearch","elb","loadbalancing","emr","mapreduce","importexport","storagegateway","vpc","beanstalk", +"glacier","kinesis","cloudtrail","@deque/dot","sri-toolbox","grunt-bytesize","weakmap-polyfill","@axe-core/webdriverjs", +"Accessibility","dev-null","stream-throttle","karma-jasmine-ajax", +"string-replace-async","rollup-plugin-auto-external","browserify-mime","json-edm-parser","batchflow","factor-bundle", +"karma-env-preprocessor","output-file-sync","trim-right","try-resolve","babel-preset-jest","module.exports","dynamic", +"react-toolbox","pmock","lodash-bound","lodash-compat","cherry-pick","rename","babel-helper-remap-async-to-generator", +"babel-helper-function-name","babel-plugin-syntax-class-properties","babel-plugin-syntax-decorators", +"babel-plugin-transform-strict-mode","babel-helper-builder-react-jsx","propTypes","regenerator-transform", +"@babel/plugin-transform-property-mutators","babel-plugin-transform-react-display-name", +"babel-plugin-transform-react-jsx-source","babel-plugin-transform-react-jsx-self", +"babel-plugin-transform-do-expressions","babel-plugin-transform-function-bind", +"babel-plugin-transform-class-constructor-call","babel-plugin-transform-decorators", +"babel-plugin-transform-async-generator-functions","to-fast-properties","lodash.zipobject", +"babel-plugin-transform-node-env-inline","unicode-9.0.0","@purtuga/esm-webpack-plugin","@web/test-runner-browserstack", +"@web/test-runner-junit-reporter","otpauth","codec","basic","basicauth","ministructure","orange sms","pomelo-logger", +"IoC","AOP","consistent","hot reload","front-backend","sharable codes","asynchronous script loading", +"magic, self-described javaScript objects","art-near-room-catch","blanket-line","born-greatly-explain3", +"bring-water-silence","brush-bigger-afternoon0","column-wore-meet-war", +"compare-breeze-mad2","did-straight-sister-sail","excitement-tonight-dead","gain-pleasant-prepare", +"industrial-public-immediately-until","is-straight-web3-attack","known-wet-thirty-gave","listen-private-thee6", +"mainly-cent","mountain-quarter-sit8","mouse-bat-web3-present","needs-supper-anything","percent-impossible-score", +"rocket-location-calm-valley","seldom-fire-web3-running","shade-swim-shells1","spider-melted-chemical", +"stretch-onto-driver7","tiny-dream-supply5","tool-invented-girl-jungle","we-hunt-process","web3-automobile7", +"whether-dangerous","ansicolors","ignorepatterns","response-stream","script-injector","find-global-packages","jsl", +"dotpathlookup","simplehttpserver","docdown","@beyond-js/specifier-parser","@beyond-js/fs","@beyond-js/bee", +"json-format","uimport","universal javascript","universal typescript","isomorphic javascript","isomorphic typescript", +"sigle page","modular development","microfrontend","micro frontend","hot module replacement","ssr", +"server side rendering","typescript packager","JAMStack","react framework","ssr react framework","vue framework", +"ssr vue framework","svelte framework","ssr svelte framework","check-types","hoopy","tryer","please-release-me","spooks", +"streamify","serialise","arbitrary", +"precision","arithmetic","big","float","biginteger","bigdecimal","bigint","bignum","file-uri-to-path","@noble/hashes", +"@antv/component","@antv/g2","@antv/util","@antv/data-set","@babel/preset-es2015","@storybook/addon-info", +"@welldone-software/why-did-you-render","aphrodite","babel-plugin-inline-react-svg","babel-plugin-inline-svg", +"bx-jest-electron","declaration-bundler-webpack-plugin","moment-jalaali","react-with-styles-interface-aphrodite", +"react-with-styles-interface-css-compiler","snapshot-diff","g2","coffee-react","uglify-save-license","curses","tui", +"tput","terminfo","termcap","ansi-term","drawille-canvas-blessed-contrib","map-canvas","picture-tuber","term-canvas", +"x256","@types/blessed","kefir","baconjs","fluent interface","BN","Big number","BigNum","Modulo","Montgomery", +"create-error","bookshelf-jsdoc-theme","datamapper","active record","@astrojs/prism","astro-auto-import","mincer", +"quote-stream","static-module","readFileSync","array-equal","merge-trees","broccoli-fixture","broccoli-fixturify", +"multidep", +"ts-docs-gen","browser-sync-client","browser-sync-ui","bs-recipes","dev-ip","easy-extender","eazy-logger", +"resp-modifier","bs-snippet-injector","generate-changelog","browser sync","live reload","deps-sort","htmlescape", +"syntax-error","shasum-object","mkdirp-classic","browser-resolve","read-only-stream","cached-path-relative", +"labeled-stream-splicer","seq","has-object-spread","has-template-literals","commonj-esque","exposify","mothership", +"rename-function-calls","test-peer-range","node-releases","target","base58","bitcoin","crytography","litecoin", +"acorn-dynamic-import","regexpu-core","console-group","compilation","compatible","dataview","builtin","builtins", +"bundled","@asyncapi/specs","@stoplight/yaml","jsonpathly","@types/jsonpath","safe-json-stringify","ben","streamsearch", +"uploads","closurecompiler","lxiv","metascript","testjs","utfx","typed array","@bcoe/v8-coverage","v8-to-istanbul", +"@types/mri","eslint-config-rem","@cacheable/utils","@keyv/redis", +"cache-manager-redis-yet","cacheable","cache manager","in-memory cache","multi-store cache","caching layer", +"cache abstraction","cache middleware","cache strategies","cache wrapper","call-bind-apply-helpers","es-define-property", +"set-function-length","callbound","pixman","cairo","case sensitive","slimerjs","loupe","@web/dev-server-rollup", +"@debitoor/eslint-config-debitoor","objects","subset","containSubset","superset","yoctodelay","docpress", +"git-update-ghpages","gulp-ava","gulp-uglify-es","mersenne","dice","kebab-case","header-case","confbox", +"convert-gitmoji","node-fetch-native","ofetch","@kurkle/color","@types/offscreencanvas","chartjs-adapter-luxon", +"chartjs-adapter-moment","chartjs-test-utils","eslint-config-chartjs","karma-safari-private-launcher", +"rollup-plugin-swc3","graphs","cheerio-select","encoding-sniffer","parse5-parser-stream", +"parse5-htmlparser2-tree-adapter","@imgix/js-core","@octokit/graphql","node-version","@better-scroll/core", +"add-dom-event-listener","choerodon-ui-font","css-animation","css-unit-converter","dom-closest","dom-lib", +"element-resize-event","htmlhint","insert-css", +"jsbarcode","jsonlint-mod","mutationobserver-shim","quill-delta-to-html","react-beautiful-dnd","react-codemirror2", +"react-easy-crop","react-image-lightbox","react-quill","rmc-feedback","smooth-scroll-into-view-if-needed", +"@babel/plugin-transform-proto-to-assign","@types/codemirror","@types/element-resize-event","@types/insert-css", +"@types/jsbarcode","@types/qrcode.react","@types/react-beautiful-dnd","@types/react-slick","bisheng-plugin-choerodon-ui", +"bisheng-plugin-description","bisheng-plugin-react","bisheng-plugin-toc","eslint-tinker","mark-twain","rc-queue-anim", +"rc-scroll-anim","react-infinite-scroller","react-sublime-video","scrollama","values.js", +"webpack-filter-warnings-plugin","choerodon","@paulmillr/jsbt","watchFile","continuous","@ckeditor/ckeditor5-emoji", +"@ckeditor/ckeditor5-style","@ckeditor/ckeditor5-mention","@ckeditor/ckeditor5-minimap","@ckeditor/ckeditor5-autosave", +"@ckeditor/ckeditor5-bookmark","@ckeditor/ckeditor5-language","@ckeditor/ckeditor5-highlight", +"@ckeditor/ckeditor5-code-block","@ckeditor/ckeditor5-fullscreen","@ckeditor/ckeditor5-html-embed", +"@ckeditor/ckeditor5-page-break","@ckeditor/ckeditor5-word-count","@ckeditor/ckeditor5-show-blocks", "@ckeditor/ckeditor5-html-support","@ckeditor/ckeditor5-markdown-gfm","@ckeditor/ckeditor5-remove-format", "@ckeditor/ckeditor5-source-editing","@ckeditor/ckeditor5-horizontal-line","@ckeditor/ckeditor5-find-and-replace", -"@ckeditor/ckeditor5-restricted-editing","@ckeditor/ckeditor5-special-characters","classname","minifier", -"@chrisblossom/eslint-config","@types/read-pkg-up","temp-sandbox","clean","parent-module","uncache","uncached", -"unrequire","delete","remove","rm","opts","parseopt","opt","argsparse","optparse","autocomplete","autocompletion","d", -"es6-iterator","timers-ext","eslint-config-medikoo","git-list-updated","github-release-from-cc-changelog", -"prettier-elastic","tad","toggle","display","show","hide","string-length","spinner","spinners","expresso", -"ansi-256-colors", -"git-rev","growl","line","tables","tabular","jest-runner-eslint","lerna-changelog","truncate","ellipsis","limit","width", +"@ckeditor/ckeditor5-restricted-editing","@ckeditor/ckeditor5-special-characters","@chrisblossom/eslint-config", +"@types/read-pkg-up","temp-sandbox","unrequire","parseopt","opt", +"argsparse","optparse","autocompletion","timers-ext","hide","expresso","ansi-256-colors","tables","truncate","ellipsis", "cardinal","hyperlinker","@oclif/screen","extract-stack","object-treeify","@oclif/linewrap","natural-orderby", "password-prompt","@types/strip-ansi","@types/ansi-styles","@types/extract-stack","@types/rollup","@yarnpkg/core", -"@yarnpkg/fslib","eslint-plugin-arca","rollup-plugin-multi-input","parsing","argument","good-listener","select", -"tiny-emitter","cut","clipboard-image","is-wayland","is64bit","powershell-utils","paste","copy-paste","pasteboard", -"pbcopy","clip","xclip","xsel","command line interface","progress bar","istanbul-harmony","coro","coroutine","mask", -"ignore-walk","teeny-request","urlgrey","code-coverage","codecov.io","@codemirror/lint","@codemirror/view", -"@codemirror/state","@codemirror/search","@codemirror/commands","@codemirror/language","@codemirror/autocomplete", -"@codemirror/buildhelper","google-closure-compiler-js", -"language","jison","wcwidth","column","exists","array-back","find-replace","typical","options","chalk-template", -"table-layout","usage","is-utf8","cachedir","find-node-modules","mocha-multi-reporters","@istanbuljs/nyc-config-babel", -"cz-conventional-changelog-default-export","conventional changelog","es2015-tag","es6-tag","heredoc","indent","indents", -"literal","multi","multiline","normalize","one","oneline","single","singleline","strings","strip","tag","tagged", -"emitter","emit","listener","observe","compressible","on-headers","gzip","deflate","brotli","buffer-from", -"ctrlc-wrapper","coveralls-next","@types/shell-quote","@hirez_io/observer-spy","eslint-plugin-import-lite", -"eslint-config-flat-gitignore","bash","sh","cson","faceoff","hjson","x2js","conf","node-config","config-node","env", -"atomically","is-safe-filename", -"xdg-basedir","settings","preferences","persist","persistent","save","rack","flash","kruptein","mongo","session", -"vite-plugin-dts","defu","is-unicode-supported","sentencer","reporter","elegant","clack","stacktrace","eco","ect","eta", -"slm","dust","jazz","just","mote","qejs","twig","vash","jqtpl","twing","hamlet","hamljs","liquor","plates","teacup", -"toffee","walrus","htmling","ractive","whiskers","tinyliquid","velocityjs","haml-coffee","liquid-node","arc-templates", -"dustjs-helpers","swig-templates","dustjs-linkedin","bracket-template","engine","rfc6266","rfc7231", -"@types/normalize-package-data","fd-package-json","normalize-package-data","@conventional-changelog/git-client", -"conventional-changelog-writer","conventional-changelog-preset-loader","conventional","tempfile","add-stream", -"compare-func", -"conventionalcommits.org","preset","inline-source-map","sourcemap","source","map","@borderless/ts-scripts","top-sites", -"cookies","sign","unsign","toggle-selection","@brettz9/node-static","selenium-server-standalone-jar","is-gzip", -"@types/glob-parent","@types/normalize-path","eslint-config-webpack","@types/serialize-javascript","transfer","move", -"noms","qr","qrcode","simple qr","npm qr JavaScript","js qr code","corcojs-qrcode-sample","logo","simple qrcode", -"cordova-common","cordova-create","cordova-lib","@cordova/eslint-config","ES3","ES5","ES6","ES7","ES2015","ES2016", -"ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6", -"ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019", -"ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set", -"WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams", -"queueMicrotask","setImmediate","structuredClone","ponyfill","parse-json","@types/parse-json", -"eslint-config-davidtheclark-node","remark-preset-davidtheclark","load","lcov-parse","log-driver","cpy","cp","files", -"file-system","quick","contents","tslog","hpagent","seenreq","http2-wrapper","@types/got","spider","crc16ccitt", -"crc16kermit","crc16modbus","crc16","crc16xmodem","crc1","crc24","crc32","crc81wire","crc8","crc8dvbs2","crcjam", -"cipher-base","ripemd160","sha.js","async-traverse-tree","css-url-parser","data-uri-to-buffer","group-args", -"inline-critical","oust","penthouse","postcss-discard","postcss-image-inliner","postcss-url","normalize-newline", -"stream-array","optimization","@fast-check/jest","@insurgent/commitlint-config", -"@insurgent/conventional-changelog-preset", -"@semantic-release/commit-analyzer","@semantic-release/npm","@semantic-release/release-notes-generator","@swc/jest", -"node cron","node-cron","schedule","cronjob","cron job","timer","crontab","@prantlf/jsonlint","@prettier/plugin-xml", -"@secretlint/secretlint-rule-github","@secretlint/secretlint-rule-npm","@stryker-mutator/core", -"@stryker-mutator/tap-runner","@types/bun","eslint-plugin-array-func","eslint-plugin-no-unsanitized","jsr","metalint", -"secretlint","yaml-lint","@cropper/elements","@cropper/utils","crop","zoom","rotate","scale","cropper","cropper.js", -"image-cropping","image-viewing","image-processing","cropper-element","custom-element","web-component", -"@epic-web/invariant","@epic-web/config","@types/cross-spawn","zshy","cross-environment","environment variable", -"windows","cross-platform","rollup-plugin-esbuild-minify","path-key","shebang-command","babel-preset-moxy", -"eslint-config-moxy","spawn","spawnSync","path-ext","shebang","cmd","execute","browserify-cipher","browserify-sign", -"create-ecdh","create-hmac","diffie-hellman","hash-base","pbkdf2", -"public-encrypt","randomfill","pseudorandombytes","security","Hash","MD5","SHA1","SHA-1","SHA256","SHA-256","RC4", -"Rabbit","AES","DES","PBKDF2","HMAC","OFB","CFB","CTR","CBC","Base64","Base64url","eslint-config-groupon","nlm", -"@cspell/cspell-json-reporter","@cspell/cspell-performance-monitor","@cspell/cspell-pipe","@cspell/cspell-types", -"@cspell/cspell-worker","@cspell/dynamic-import","@cspell/url","cspell-config-lib","cspell-dictionary", -"cspell-gitignore","cspell-glob","cspell-io","cspell-lib","fast-json-stable-stringify","flatted","spell","checker", -"spelling","spell checker","spelling checker","lint","source-map-resolve","@mdn/browser-compat-data", -"@rollup/plugin-dynamic-import-vars","sorter","property","order","@swc-node/register","changelog-verify", -"eslint-config-nitpick","github-release-from-changelog","isomorphic-unfetch","rolldown-plugin-dts","version-changelog", -"write-json-file","functions","postcss-modules-extract-imports","postcss-modules-scope", -"@webpack-contrib/eslint-config-webpack","@swc/css", -"@parcel/css","@types/csso","@types/clean-css","cssnano-preset-simple","webpack-plugin","minimize","minimizer", -"optimize","optimizer","boolbase","@types/boolbase","cheerio-soupselect","sizzle","clap","json-to-ast","walker","lexer", -"web-features","features","stages","identifier","cssnano-preset-default","cssnano-preset-advanced","cssnano-preset-lite", -"optimise","optimisation","@asamuzakjp/css-color","@csstools/css-syntax-patches-for-csstree","@domenic/eslint-config", -"@webref/css","CSS","CSSStyleDeclaration","StyleSheet","@tsconfig/node24","@types/chokidar","@types/turndown","csrf", -"tokens","tsv","generation","object","csv-spectrum","pad","@types/lodash.set","csv parser","parse csv","csv to json", -"csv convert","tojson","convert csv to json","csv-json","duration","stack-chain","is-generator","stacktrace-js", -"serialize-error","cucumber-expressions","cucumber-tag-expressions","ansi-html","eslint-plugin-testcafe","riteway", -"updtr","guid","id", -"uid","unique id","hasha","ospath","blob-util","executable","@cypress/xvfb","@types/sizzle","@cypress/request", -"request-progress","cypress.io","mocks","spies","stubs","longest","conventional-commit-types","d3-dsv","d3-geo", -"d3-axis","d3-drag","d3-ease","d3-path","d3-time","d3-zoom","d3-brush","d3-chord","d3-fetch","d3-force","d3-timer", -"d3-format","d3-random","d3-contour","d3-polygon","d3-delaunay","d3-dispatch","d3-quadtree","d3-hierarchy", -"d3-transition","d3-interpolate","d3-time-format","d3-scale-chromatic","topojson-client","@observablehq/runtime", -"visualization","internmap","d3-module","histogram","bisect","shuffle","statistics","search","sort","selection", -"data-join","dable","tailwind css","tailwind react","tailwind vue","tailwind plugin","tailwind component", -"tailwind next","tailwind nuxt","tailwind svelte","tailwind css plugin", -"tailwind astro","tailwind laravel","tailwind rails","laravel","nuxt","css library","reverse","arguments","binary", -"opposite","invert","switch","construct","@captemulation/get-parameter-names","json-schema-faker-bb","request-debug", -"rss-parser","swagger-express-middleware","bun","cloc","js-fns","jscodeshift","@date-fns/tz","@date-fns/utc", -"@date-fns/docs","@size-limit/esbuild","typedoc-plugin-missing-exports","babel-plugin-replace-import-extension", -"gzip-size-cli","require-directory","sleep","async wrapper","debouncing","throttle","invoke","limited","interval","rate", -"batch","rate-limit","debugger","decamelcase","lowercase","decompress-tar","decompress-tarbz2","decompress-targz", -"decompress-unzip","strip-dirs","is-jpg","bz2","bzip2","extract","tar.bz","tar.gz","@types/babel-plugin-macros", -"console-fail-test","eslint-plugin-deprecation","eslint-plugin-no-only-tests","eslint-plugin-perfectionist", -"eslint-plugin-yml","jsonc-eslint-parser","npm-package-json-lint-config-default","prettier-plugin-curly", -"should-semantic-release", -"yaml-eslint-parser","multi-line string","duplicates","dupes","remove duplicates","distinct","deduplicate", -"deduplication","is-obj","obj","assign","recursive","key","keys","values","prop","json-ptr","difference","compare", -"change-tracking","kewlr","simple-assert","lcov-result-merger","eslint-config-strict","@js-temporal/polyfill", -"eslint-plugin-filenames","chai util","deep equal","object equal","array-buffer-byte-length","es-get-iterator", -"is-arguments","is-array-buffer","is-date-object","is-regex","is-shared-array-buffer","regexp.prototype.flags", -"side-channel","which-boxed-primitive","which-collection","which-typed-array","available-typed-arrays","has-proto", -"has-typed-arrays","equality","is-mergeable-object","jsmd","is-path-cwd","is-path-inside","presentable-error","folders", -"directories","destroy","trash","unlink","cleaning","cleanup","rmrf","rmdir","gulpfriendly","folder","directory", -"filesystem","temp-write", -"random-int","unlimited-timeout","in-range","time-span","defer","stall","timeout","settimeout","tick","threshold", -"range","callsite","deps-regex","is-core-module","@vue/compiler-sfc","patch-version","check","unused","packages", -"deprecate","deprecated","is-relative","read-package-json","detective-cjs","indentation","infer","identify","space", -"tab","@eggjs/tsconfig","egg-bin","eslint-config-egg","mm","tshy-after","port","jsdiff","patch","@profoundlogic/hogan", -"@eslint/json","@types/hogan.js","@types/nopt","all-contributors-cli","handlebars-loader","image-webpack-loader", -"is-ci-cli","side","side-by-side","line-by-line","character","difftohtml","colorized","data-structure-typed", -"eslint-import-resolver-alias","Directed Graph","directed graph","directedgraph","directed-graph","directed","Directed", -"digraph","java script","JavaScript","type script","vertex", -"Vertex","edge","Edge","graph theory","Graph Theory","graph structure","weighted","Weighted","unweighted","Unweighted", -"adjacency","Adjacency","connectivity","cycle","acyclic","traversal","depth","Depth","breadth","Breadth","first", -"depth first search","dfs","DFS","breadth first search","breadth-first search","bfs","BFS","graph algorithms", -"graph representation","connectivity matrix","adjacency list","adjacency matrix","matrix","node degree","sparse graph", -"dense graph","directed cycle","directed acyclic graph","DAG","topologic","topological","sorting", -"strongly connected components","weighted digraph","directed weighted edge","structure","structures","data structure", -"datastructure","data-structure","data structures","datastructures","data-structures","in data structures", -"in data structure","DataStructure","DataStructures","iterative","Node.js","CommonJS","UMD","esmodule","java.util", -"c++ stl","c++ std","Python collections","System.Collections.Generic","STL","stl","collection","Collection", -"Collections","insertion","deletion","OOP","@discordjs/voice","backend-manager","productivity","@discordjs/ws", -"lodash.snakecase","@discordjs/builders","@discordjs/formatters","@discordjs/docgen","bot","cache-point", -"common-sequence","file-set","walk-back","dmd-plugin-example","jsdoc2md","agnostic","dnd","drag","drop","dnode-protocol", -"jsonify","weak","rpc","callbacks","doc-detective-common","doc-detective-resolver","@ffmpeg-installer/ffmpeg", -"@puppeteer/browsers","appium-chromium-driver","appium-geckodriver","appium-safari-driver","geckodriver","jq-web", -"json-schema-faker","posthog-node","literate","mecano","parameters","@balena/dockerignore","@grpc/grpc-js", -"@grpc/proto-loader","docker-modem","docker","docker.io","@bevry/pluginloader","ambi","ansistyles","bal-util", -"caterpillar","docmatter","docpad-baseplugin","eachr", -"envfile","errlop","event-emitter-grouped","extendr","extract-opts","ignorefs","istextorbinary","jschardet", -"lazy-require","progress-title","query-engine","rfc-log-levels","safefs","safeps","scandirectory","taskgroup", -"typechecker","unbounded","watchr","@bevry/update-contributors","assert-helpers","coffeelint","kava","projectz", -"valid-directory","build","build and deployment","cms","compile","content management system","dev","dms", -"document management system","language agnostic","render","templating","web development","dependency-cruiser","dpdm", -"docsify.js","tabs","@textlint/markdown-to-ast","anchor-markdown-header","update-section","bitbucket","gitlab","ghost", -"doctrine-temporary-fork","konan","mdast-util-inject","micromark-util-character","parse-filepath", -"remark-reference-links","unist-builder","vfile-reporter","vfile-sort","chdir","documentation-schema","jsdoc3", -"big-integer","binary-search-bounds","int64-buffer","priorityqueuejs","semaphore", -"tunnel","cosmosdb","cosmos db","document database","nosql","database","crowdin-cli","imagemin-svgo","tree-node-cli", -"truncate-html","imagemin-optipng","imagemin-gifsicle","imagemin-jpegtran","filepath","glob-promise","websites", -"open source","autocomplete.js","lunr-languages","to-vfile","unist-util-is","offline-search","@4c/rollout", -"@4c/tsconfig","@react-bootstrap/babel-preset","@react-bootstrap/eslint-config", -"@react-bootstrap/eslint-config-typescript","karma-html2js-preprocessor","simulant","cross-browser","height","class", -"classlist","domelementtype","raster","png","@types/trusted-types","lodash.sample","qunit-tap", -"rollup-plugin-includepaths","mathml","secure","sanitizer","sanitize","filter","purify",".env","expand","interpolation", -"substitution","ext-name","filenamify","archive-type","is-zip","random-buffer","git-clone","repo","repository","tarball", -"import-from","parse-cmd-args","simple-update-notifier","ts-jest-resolver","dox", -"spawn-please","@types/temp","alex","babel-preset-fbjs","eslint-config-fbjs","fbjs-scripts","gulp-derequire", -"stats-webpack-plugin","webpack-stream","draftjs","richtext","just-extend","@parcel/transformer-inline-string", -"@parcel/transformer-sass","cypress-file-upload","karma-sinon-chai","parcel","dragndrop","drag and drop","file upload", -"upload","tsutils","dts-critic","@definitelytyped/utils","@definitelytyped/header-parser", -"@definitelytyped/typescript-versions","@types/strip-json-comments","@types/json-stable-stringify","proper-lockfile", -"db","elementscript","dw-neit-colors","dw-neit-cssinjs","dw-neit-cssinjs-utils","dw-neit-icons", -"dw-neit-ant-design-react-slick","dw-neit-rc-component-color-picker","dw-neit-rc-component-mutate-observer", -"dw-neit-rc-component-qrcode","dw-neit-rc-component-tour","dw-neit-rc-component-trigger","dw-neit-rc-cascader", -"dw-neit-rc-checkbox","dw-neit-rc-collapse","dw-neit-rc-dialog","dw-neit-rc-drawer","dw-neit-rc-dropdown", -"dw-neit-rc-field-form","dw-neit-rc-image","dw-neit-rc-input","dw-neit-rc-input-number","dw-neit-rc-mentions", -"dw-neit-rc-menu","dw-neit-rc-motion","dw-neit-rc-notification","dw-neit-rc-pagination","dw-neit-rc-picker", -"dw-neit-rc-progress","dw-neit-rc-rate","dw-neit-rc-resize-observer","dw-neit-rc-segmented","dw-neit-rc-select", -"dw-neit-rc-slider","dw-neit-rc-steps", -"dw-neit-rc-switch","dw-neit-rc-tabs","dw-neit-rc-textarea","dw-neit-rc-tree","dw-neit-rc-util","dw-neit-rc-table", -"dw-neit-rc-tooltip","dw-neit-rc-tree-select","dw-neit-rc-upload","@antv/g6","@types/pixelmatch","eslint-plugin-lodash", -"@eslint/core","control flow","iteration","zrender","@lang/rollup-plugin-dts","data-visualization","charting-library", -"apache","data-viz","editorconfig","gulp-exclude-gitignore","gulp-reporter","gulp-tap","linez","os-locale", -"@types/get-stream","@types/through2","@types/vinyl","@types/vinyl-fs","fix","enforce","gulpplugin","agentkeepalive", -"aliasify","backport","grunt-run","null-loader","through2-map","grunt-webpack","grunt-contrib-compress","@electron/get", -"lazy-val","dmg-builder","builder-util","app-builder-lib","builder-util-runtime","installer","packager","pack","nsis", -"dmg","pkg","msi","exe","setup","Windows","OS X","MacOS","Mac","appx","snap","flatpak", -"@electron/asar","@electron/notarize","@electron/osx-sign","@electron/universal","cross-spawn-windows-exe","galactus", -"get-package-info","junk","parse-author","rcedit","bundler","electron-download","home-path","wonderful-fetch", -"batch-processor","grunt-banner","@vue/component-compiler-utils","algoliasearch","babel-plugin-transform-vue-jsx", -"babel-regenerator-runtime","cp-cli","eslint-config-elemefe","eslint-plugin-json","file-save","gulp-cssmin", -"launch-editor-middleware","markdown-it-chain","select-version-cli","transliteration","uppercamelcase", -"vue-template-es2015-compiler","eleme","brorand","hash.js","hmac-drbg","minimalistic-assert","minimalistic-crypto-utils", -"grunt-mocha-istanbul","EC","Elliptic","curve","Cryptography","@ladjs/consolidate","@ladjs/i18n","get-paths","juice", -"nodemailer-sendgrid","preview-email","email","lad","lass","mailchimp","mailgun","mandrill","moonmail","postmark", -"sendgrid","@types/mailparser","@types/smtp-server","mailparser","smtp-server","@ember-tooling/blueprint-blueprint", -"@ember-tooling/blueprint-model","@ember/app-blueprint", -"@pnpm/find-workspace-dir","babel-remove-types","broccoli-concat","broccoli-config-loader","broccoli-config-replace", -"broccoli-debug","broccoli-funnel-reducer","broccoli-slow-trees","broccoli-source","broccoli-stew", -"calculate-cache-key-for-tree","capture-exit","clean-base-url","console-ui","content-tag","core-object","dag-map", -"ember-cli-is-package-missing","ember-cli-preprocess-registry","ensure-posix-path","find-yarn-workspace-root", -"heimdalljs-fs-monitor","heimdalljs-graph","heimdalljs-logger","is-git-url","is-language-code","markdown-it-terminal", -"p-defer","promise-map-series","promise.hash.helper","quick-temp","safe-stable-stringify","sane","sort-package-json", -"symlink-or-copy","tree-sync","watch-detector","yam","@ember-tooling/classic-build-addon-blueprint", -"@ember-tooling/classic-build-app-blueprint","chai-files","ember-cli-blueprint-test-helpers", -"ember-cli-internal-test-helpers","eslint-plugin-chai-expect","fixturify-project","release-plan","tmp-promise", -"yuidoc-ember-cli-theme","yuidocjs","app-kit","ember","ember-app-kit","ember.js","amd-name-resolver", -"babel-plugin-debug-macros","babel-plugin-ember-data-packages-polyfill","babel-plugin-ember-modules-api-polyfill", -"broccoli-babel-transpiler","ember-cli-babel-plugin-helpers","ember-cli-version-checker","@ember/optional-features", -"@ember/string","@ember/test-helpers","@glimmer/component", -"@glimmer/tracking","code-equality-assertions","ember-auto-import","ember-cli-dependency-checker", -"ember-cli-inject-live-reload","ember-load-initializers","ember-qunit","ember-resolver","ember-source", -"ember-source-channel-url","eslint-plugin-ember","loader.js","ember-addon","@ember/edition-utils", -"babel-plugin-ember-template-compilation","broccoli-persistent-filter","js-string-escape","@embroider/test-setup", -"ember-cli-clean-css","ember-styleguide","ember-template-lint","ember-try","eslint-plugin-qunit","@emmetio/abbreviation", -"@emmetio/css-abbreviation","snippets","coding","streams","finish","close","end","es-errors","safe-regex-test", -"entitify","entity","enum","enumeration","datatype","type","github-release-cli","yamlify-object","info","issues", -"reporting","diagnostics","array.prototype.flat","function.prototype.name","has","html-element-map","is-boolean-object", -"is-callable","is-number-object","is-string","is-subset","lodash.escape","object.values","rst-selector-parser", -"string.prototype.trim","shallow rendering","shallowRender","test utils","assertion helpers","airbnb-prop-types", -"object.fromentries", -"codependence","oxlint","pastoralist","check for es6","check for modules","es check","es matching","es version", -"ecmascript check","ecmascript matching","ecmascript version","js version","js version check","js version matching", -"test js version","test ecmascript version","has-bigints","intl-fallback-symbol","make-arrow-function", -"make-async-function","@ljharb/tsconfig","@types/array.prototype.flatmap","@types/call-bind","@types/foreach", -"@types/has-bigints","@types/has-symbols","@types/isarray","@types/make-arrow-function","@types/make-async-function", -"@types/make-generator-function","@types/object.assign","@types/reflect.ownkeys","@types/tape","reflect.ownkeys", -"symbol.prototype.description","well-known-symbols","fixture","fixtures","es6-symbol","esniff","next-tick", -"plain-promise","ecmascript5","ecmascript6","es5","extensions","ext","addons","extras","utilities","es5 shim","json3", -"broccoli-rollup","git-repo-version","broccoli-watchify","broccoli-uglify-js","promises-aplus-tests-phantom", -"babel6-plugin-strip-class-callcheck","babel-plugin-transform-es2015-constants","futures","promisify", -"promises-es6-tests","setPrototypeOf","set", -"__proto__","regular","expression","special","characters","bower-registry-client","commonjs-everywhere", -"@eslint/config-array","@eslint/config-helpers","@eslint/plugin-kit","@humanfs/node","@humanwhocodes/module-importer", -"@humanwhocodes/retry","esquery","file-entry-cache","imurmurhash","json-stable-stringify-without-jsonify", -"@trunkio/launcher","@types/esquery","eslint-plugin-expect-type","eslint-release","eslint-rule-extender","eslump", -"fs-teardown","metascraper","metascraper-description","metascraper-image","metascraper-logo","metascraper-logo-favicon", -"metascraper-title","node-polyfill-webpack-plugin","npm-license","yorkie","babel-tape-runner","eslint-find-rules", -"eslintconfig","airbnb","es2016","es2018","confusing-browser-globals","prettier-package-json","quality","linter", -"jslint","code style","strict","verify","hint","eslint config","eslint-config-xo-space","eslint-prettier", -"@rushstack/eslint-patch","JavaScript Standard Style","code checker","code linter","code standards","policy", -"standard style","style checker","style linter","@eslint/config-inspector","automd","eslint-typegen","obuild", -"@eslint/css","xoxo","hugs","kisses","happy","happiness","cabin","rules","@typescript/native-preview", -"eslint-import-context","is-bun-module","stable-hash-x","unrs-resolver","@webpack-contrib/defaults", -"commitlint-azure-pipelines-cli","eslint-friendly-formatter","enhance-visitors","espurify","micro-spelling-correcter", -"eslint-ava-rule-tester","eslint-rule-composer","ast-metadata-inferer","@tsconfig/node16","@types/caniuse-lite", -"@types/lodash.memoize","browserslist-config-erb","kangax","@vuepress/plugin-pwa","eslint4b","vue-eslint-editor", -"comment","directive","exported","eslint-env","eslint-enable","eslint-disable","eslint-disable-line", -"eslint-disable-next-line","@eslint-community/eslint-plugin-eslint-comments","@types/eslint-scope","@types/espree", -"@types/estraverse","eslint-config-not-an-aardvark","string-natural-compare","gitdown","eslint-config-canonical", -"flowtype","@html-eslint/eslint-plugin","@html-eslint/parser","markdown-link-check","@rtsao/scc","array-includes", -"array.prototype.findlastindex","doctrine","eslint-import-resolver-node","eslint-module-utils","object.groupby", -"string.prototype.trimend","@angular-eslint/template-parser","escope","fs-copy-file-sync","linklocal","lodash.isarray", -"npm-which", -"typescript-eslint-parser","export","@schemastore/package","babel-plugin-replace-ts-export-assignment", -"eslint-remote-tester-repositories","@es-joy/jsdoccomment","@es-joy/resolve.exports","are-docs-informative", -"object-deep-merge","parse-imports-exports","spdx-expression-parse","to-valid-identifier","@es-joy/escodegen", -"@es-joy/jsdoc-eslint-parser","@hkdobrev/run-if-changed","@types/spdx-expression-parse", -"babel-plugin-transform-import-meta","jsdoc-type-pratt-parser","json-schema-to-typescript","open-editor","replace", -"@ota-meshi/ast-token-store","diff-sequences","eslint-json-compat-utils","@changesets/changelog-github", -"@ota-meshi/eslint-plugin","@ota-meshi/site-kit-eslint-editor-vue","@types/natural-compare","env-cmd", -"eslint-plugin-eslint-rule-tester","eslint-plugin-json-schema-validator","eslint-plugin-node-dependencies", -"stylelint-config-recommended-vue","stylelint-config-standard-vue","stylelint-stylus","vite-plugin-eslint4b","jsonc", -"ast-types-flow","axobject-query","damerau-levenshtein","jsx-ast-utils","language-tags","string.prototype.includes", -"to-ast","eslint-config-eslint","eslint-plugin-es-x","ts-declaration-location","@types/globrex","ts-ignore-import", -"eslint-utils","prettier-linter-helpers","array.prototype.findlast","array.prototype.tosorted","es-iterator-helpers", -"string.prototype.repeat","@babel/plugin-syntax-do-expressions","@babel/plugin-syntax-function-bind","gfm-footnotes", -"ls-engines","hermes-parser","@types/estree-jsx","@tsconfig/strictest","refa","regexp-ast-analysis", -"scslre","@types/pako","eslint-plugin-pere","eslint-snapshot-rule-tester","mocha-chai-jest-snapshot","safe-regex", -"eslint-config-nodesecurity","nodesecurity","jsx-ast-utils-x","functional-red-black-tree","sonarjs", -"svelte-eslint-parser","@types/eslint-utils","@types/esutils","@types/less","@types/postcss-safe-parser","@types/stylus", -"svelte-i18n","sveltejs","eslint-plugin-import-x","clean-regexp","find-up-simple","regexp-tree","regjsparser", -"@lubien/fixture-beta-package","nano-spawn","node-style-text","unicorn","@veritem/eslint-config","bumpp", -"vitest eslint plugin","eslint plugin","xml-name-validator","@types/xml-name-validator", -"eslint-plugin-markdown-preferences","@types/babel__code-frame","importx","ink-testing-library","eslint-test", -"@types/esrecurse","esrecurse","eslint-plugin-requirejs","escomplex-js","everything.js","json-diff", -"karma-safaritechpreview-launcher","node-tick-processor","unicode-8.0.0","gulp-tag-version","ethereumjs-common", -"@ethereumjs/config-nyc","@ethereumjs/config-prettier","@ethereumjs/config-tsc","@ethereumjs/config-tslint", -"contributor","karma-tap","typestrict","transactions","ethereum-cryptography","rlp","@types/assert","@types/secp256k1", -"karma-typescript","os-tmpdir", -"es-lookup-scope","qs-iconv","eval","evaulate","from","pause-stream","stream-combiner","asynct","it-is","stream-spec", -"ubelt","flatmap","join","eventemitter","addEventListener","addListener","pub/sub","emits","on","publish","subscribe", -"EventEmitter","EventEmitter2","EventEmitter3","Events","reactor","eventEmitter","eventDispatcher","listeners", -"@sindresorhus/merge-streams","human-signals","strip-final-newline","yoctocolors","get-node","is-in-ci","is-running", -"log-process-errors","exec","subprocess","fork","execfile","bin","binaries","local","stdio","stderr","drain","flush", -"3584","@jest/expect-utils","@jest/get-type","eslint-plugin-mmkal","pkg-pr-new","type-check","merge-descriptors", -"pbkdf2-password","array-flatten","setprototypeof","automatically","autogenerate","autogenerator","autogenerated", -"express3","partials", -"express-unless","authn","authz","token","expressjs","helpers","hoare","cjs-mock","tRPC","RPC","express.js", -"code-generation","fully-typed","type-safe","typed-api","express-api","http-api","client-server","unit-testing", -"browser-client","web-development","web-api","@docusaurus/plugin-client-redirects","@docusaurus/preset-classic", -"sanitization","openapi3-ts","@express-zod-api/zod-plugin","@types/depd","@types/http-errors","@types/node-forge", -"camelize-ts","snakify-ts","dts-plugin","handler","documentation-tool","schema-validation","endpoint", -"openapi-specification","swagger-documentation","covert","assign-symbols","is-extendable","array-slice","benchmarked", -"for-own","kind-of","props","shallow","webpack-defaults","@types/yauzl","gulp-mustache","vinyl-transform", -"color-support","parse-node-version","console.log","timestamp","pure-rand","@fast-check/expect-type", -"@fast-check/poisoning","property-based testing","end-to-end testing","quickcheck","jscheck","jsverify", -"fuzzer","fuzz","@fast-csv/parse","@fast-csv/format","writer","csv writer","CSV","@nodelib/fs.stat","@nodelib/fs.walk", -"@nodelib/fs.macchiato","@types/merge2","@types/picomatch","bencho","eslint-config-mrmlnc","hereby","snap-shot-it", -"implementation","strnum","transformer","js2xml","json2xml","click","@fastify/ajv-compiler","@fastify/error", -"@fastify/fast-json-stringify-compiler","@fastify/proxy-addr","abstract-logging","avvio","fast-json-stringify", -"find-my-way","light-my-request","process-warning","secure-json-parse","toad-cache","@jsumners/line-reporter","ajv-i18n", -"ajv-merge-patch","autocannon","branch-comparer","fast-json-body","fluent-json-schema","h2url","markdownlint-cli2", -"@umijs/babel-preset-umi","@umijs/bundler-webpack","@umijs/case-sensitive-paths-webpack-plugin","@utoo/pack", -"@vercel/ncc","babel-plugin-styled-components","babel-plugin-transform-define","loader-runner","piscina", -"typescript-transform-paths","@types/loader-runner","@types/minimatch","array.prototype.foreach","array.prototype.join", -"array.prototype.map","array.prototype.push","array.prototype.slice","string.prototype.split","tap-parser","human", -"anything", -"protocol","fbjs-css-vars","setimmediate","@skypack/package-check","babel-plugin-minify-dead-code-elimination","in web", -"in javascript","in react","Plug & Play","web component","react components","ui component","advanced component", -"advanced feature","scanner","phonebook","voice","autofillotp","share","livelocationtracking","detectmylocation", -"colorpicker","wakelock","WhatsappShare","NetworkConnection","TextToSpeech","VoiceRecognition","SnapScanner", -"NetworkMonitor","View360","functional program","data management","@types/glob-to-regexp","dequal","glob-to-regexp", -"stub","detect-libc","fiber","thread","worker","art","banner","symbol","symbols","figure","fallback","filesaver", -"saveas","blob","@tokenizer/inflate","strtok3","token-types","uint8array-extras","@tokenizer/token","commonmark", -"noop-stream","magic","pic","picture","photo","video","exif","elf","macho", -"jpg","apng","gif","flif","xcf","cr2","cr3","orf","arw","dng","nef","rw2","tif","bmp","icns","jxr","psd","indd","rar", -"gz","7z","mp4","mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","epub","mobi", -"rtf","woff","woff2","eot","ttf","otf","ttc","ico","flv","ps","xz","xpi","cab","deb","ar","rpm","Z","lz","cfb","mxf", -"mts","wasm","webassembly","blend","bpg","docx", -"pptx","3gp","j2c","jp2","jpm","jpx","mj2","aif","odt","ods","odp","heic","ics","pcap","dsf","lnk","voc","ac3","3g2", -"m4b","m4p","m4v","f4a","f4b","f4p","f4v","mie","qcp","asf","ogv","ogm","oga","spx","ogx","ape","wv","cur","nes","crx", -"ktx","dcm","mpc","arrow","shp","aac","mp1","it","s3m","xm","skp","eps","lzh","pgp","asar","chm","3mf","zst","jxl","vcf", -"jls","pst","dwg","parquet","arj", -"cpio","ace","avro","icc","fbx","vsdx","vtt","apk","drc","lz4","potx","xltx","dotx","xltm","ots","odg","otg","otp","ott", -"xlsm","docm","dotm","potm","pptm","jar","jmp","sav","ppsm","ppsx","reg","dat","size","readable","file system", -"locate-path","unicorn-magic","up","look-up","look","parent","walking","detect-file","resolve-dir","homedir-polyfill", -"@firebase/ai","@firebase/app","@firebase/auth","@firebase/util","@firebase/storage","@firebase/database", -"@firebase/analytics","@firebase/app-check","@firebase/app-types","@firebase/firestore","@firebase/functions", -"@firebase/messaging","@firebase/app-compat","@firebase/auth-compat","@firebase/performance","@firebase/data-connect", -"@firebase/installations","@firebase/remote-config","@firebase/storage-compat","@firebase/database-compat", -"@firebase/analytics-compat","@firebase/app-check-compat","@firebase/firestore-compat","@firebase/functions-compat", -"@firebase/messaging-compat","@firebase/performance-compat","@firebase/installations-compat", -"@firebase/remote-config-compat","Firebase","realtime","remote-config","@fastify/busboy","@firebase/database-types", -"farmhash-modern","google-auth-library","jwks-rsa","@firebase/api-documenter","@firebase/auth-types","@types/bcrypt", -"@types/firebase-token-generator","@types/request","@types/request-promise","firebase-token-generator", -"http-message-parser","admin","@apphosting/build","@apphosting/common","@electric-sql/pglite", -"@electric-sql/pglite-tools","@google-cloud/cloud-sql-connector","@google-cloud/pubsub","@modelcontextprotocol/sdk", -"async-lock","cjson","deep-equal-in-any-order","exegesis","exegesis-express","gaxios","libsodium-wrappers","lsofi", -"pg-gateway","pglite-2","proxy-agent","sql-formatter","stream-chain","stream-json","superstatic","triple-beam", -"universal-analytics","update-notifier-cjs","zod-to-json-schema","cdn","ssl","hosting","synchronization","alce", -"detect-newline","extend-object","@types/rimraf","matcher-collection","unflatten","nested","@types/acorn", -"rollup-plugin-livereload", -"rollup-plugin-serve","lightweight","byline","util-extend","markdox","deploy","deployment","commands","devops","ssh", -"tasks","sequential","remote","fabric","inference","wrapper","flowbite-datepicker","mini-svg-data-uri", -"@tailwindcss/cli","@tailwindcss/postcss","eslint-plugin-tailwindcss","flowbite-typography", -"prettier-plugin-tailwindcss","windicss","ui components","tailwind components","tailwind elements","tailwind library", -"tailwind sections","tailwind ui","tailwind angular","tailwind django","tailwind ruby on rails","tailwind flask","cjs", -"umd","ffmpeg","fbemitter","react-addons-test-utils","dispatcher","lolex","redirect","location","@types/is-callable", -"cliff","shush","flatiron","nssocket","forever-monitor","getopts","cli-testlab","fault tolerant","sysadmin", -"node-abort-controller","jest-circus","karton","typecheck","@types/babel-code-frame","increment","asynckit", -"combined-stream","es-set-tostringtag","browserify-istanbul","fake", -"far","is-node-modern","js-randomness-predictor","obake","dezalgo","@paralleldrive/cuid2","formdata-polyfill", -"prettier-plugin-pkgjson","@tunnckocore/prettier-config","www","ulpoad","tiny-warning","just-debounce-it","tsdx", -"react hooks","render props","higher order component","hoc","conditional","friendly","errors","check-dts","front matter", -"meta data","universalify","klaw","read-dir-files","extra","mkdir","mkdirs","create","output","release-assist", -"any-promise","thenify-all","mac","ie","@monaco-editor/loader","@sapphire/stopwatch","@sapphire/utilities", -"@snippetors/vuepress-plugin-tabs","@vuepress/plugin-google-analytics","monaco-editor","vuepress-plugin-google-adsense2", -"bitap","socket","sublime","sublime text","globule","grunt-benchmark","yeoman-test","yeoman-assert","insight", -"restangular","ui-router","foundation","traceur","haml","git-config","find-git-root","@merkle-open/eslint-config", -"nitro","modular","pool", -"pooling","inject-markdown","ts2mjs","iterator","iterators","iterable","reduce","@werkzeugkiste/eslint-config", -"@werkzeugkiste/release-config","install-deps-postmerge","semantic-release-conventional-commits","@cfware/lint", -"@cfware/nyc","if-ver","libtap","finder","free","available","connection","tcp","scan","preferred","chosen","std", -"concat","@sec-ant/readable-stream","onetime","precise-now","get","consume","readablestream","resolve-pkg-maps", -"tsconfig","tsconfig.json","eslint-config-bevry","make-deno-edition","deno","deno-edition","deno-entry","denoland", -"es2022","export-default","ifconfig","ipconfig","mac-address","typed","email-addresses","dir-compare", -"eslint-config-tschaub","lodash.clone","manage-path","opt-cli","spawn-command","chai-string","eslint-config-kentcdodds", -"travis-after-all","hook","@primer/octicons","@primer/primitives","@rollup/plugin-html","minipass","path-scurry", -"dirname","wildcard", -"min-document","is-identifier","identifiers","environments","glob-stream","all","fnmatch","globbing","globs","multiple", -"paths","wildcards","gitignore","array-series","array-parallel","magick","graphicsmagick","gfsl", -"eslint-config-standard-with-typescript","msmc","mc","minecraft","launcher","java","java edition","arm","arm-support", -"forge","instances-management","instances","mod","mods","mc-mod","mc-mods","modpack","modpack-api","extendable","nbt", -"jarmods","skin fix","ky","eslint-plugin-no-floating-promise","varlock","google spreadsheets","google sheets", -"spreadsheet","spreadsheets","sheets","gdata","drive","google docs","google drive","googleapis-common","@types/execa", -"@types/mv","@types/ncp","@types/nunjucks","@types/url-template","@types/yargs-parser","js-green-licenses","jsdoc-fresh", -"jsdoc-region-tag","linkinator","pdfmake", -"google apis","client library","@sindresorhus/is","byte-counter","cacheable-lookup","cacheable-request", -"decompress-response","form-data-encoder","lowercase-keys","p-cancelable","responselike","@hapi/bourne","@types/pem", -"chunk-data","create-cert","create-test-server","pem","slow-stream","then-busboy","uri","curl","wget","zstd","zstandard", -"requests","human-friendly","sassdoc","gulp-cli","sass-color-helpers","govuk-prototype-kit","govuk","reading","retries", -"handling","EMFILE","EAGAIN","EINVAL","EPERM","EACCESS","graphql-js","test-all-versions","@graphql-tools/schema", -"section-matter","strip-bom-string","ansi-green","delimiter-regex","assemble","coffee","extracting","front", -"frontmatter","matter","site","@mapbox/node-pre-gyp","@types/bytebuffer","electron-mocha","google-protobuf", -"poisson-process","grunt-legacy-log","grunt-legacy-util","grunt-known-options","difflet","temporary", -"eslint-config-grunt", -"uglify","init","make","gruntplugin","browserify-incremental","liftup","pad-stream","grunt-nodemon","simultaneous", -"perf","faster","bin-version-check","compass","connect-livereload","file-sync-cmp","csslint","maxmin","cssmin","min", -"jpeg","hooker","less-plugin-clean-css","nodeunit-x","uri-path","grunt-coveralls","grunt-istanbul", -"grunt-github-remove-all-releases","gh","release","releases","report","vow","@commitlint/travis-cli","TDD", -"grunt-continue","grunt-env","grunt-istanbul-coverage","grunt-cafe-mocha","newer","stack-parser","grunt-release", -"grunt-templates-dylang","notify","mountain lion","mavericks","linux","notify-send","preprocess","libsass", -"requestretry","sauce-tunnel","grunt-sauce-tunnel","yui","spritesheet-templates","spritesmith","url2", -"eslint-config-twolfson","foundry","foundry-release-git","foundry-release-npm","get-pixels","gmsmith","sprite", -"spritesheet", -"grunt-mocha-cli","usemin","@npm/types","@types/json5","@types/write-file-atomic","inline-fixtures", -"@guarapi/eslint-config-guarapi","@swc/register","glob-watcher","undertaker","pipeline","series","streaming", -"gulp-footer","html2js","templatecache","gulp-symdest","atom","atom-shell","prefixes","postcss-runner","lodash.chunk", -"concurrent-transform","@azure/storage-blob","delayed-stream","streamifier","rewriting","transformation","codegen", -"desugaring","bom","mark","utf-8","add","prepend","gulp-codecov.io","bump-regex","plugin-log","version","versioning", -"gulp-version","gulp-plugin","cache-swap","object.pick","change-file-extension","changed","modified","modification", -"updated","mtime","stat","cached","passthrough","minify-css","jshint-reporter-jscs","parse-import","rework", -"rework-import","rework-plugin-url","inline","slush","dest","conflict","webserver", -"csscomb","rcloader","csslint-stylish","node-version-check","from2-string","@shinnn/eslint-config-node","warnings", -"flatnest","balanced-match","include","streamfilter","to-absolute-glob","divide","separate","relative", -"pretty-remarkable","sections","prettify","jsftp","jsftp-mkdirp","ftp-test-server","gift","wrap-promise","octonode", -"read-remove-file","@shinnn/eslint-config-node-legacy","branch","any-shell-escape","strip-bom-stream","gulpgit", -"stream-to-array","nid","gulp-declare","gulp-define-module","gulp-wrap","nsdeclare","eventstream","istanbul-coveralls", -"htm","htmlmin","gulp-spawn","gulp-svg2ttf","gulp-ttf2eot","gulp-ttf2woff","gulp-ttf2woff2","gulp-svgicons2svgfont", -"metapak","streamtest","@types/gulp","metapak-nfroidure","gulp-match","ternary-stream","stream-exhaust","if","ternary", -"exclude","gulp-gm","imagemin-webp","group-array","strip-color","@commitlint/config-angular","inject","stylesheets", -"webcomponents", -"scripts","index","inline-css","lodash.groupby","istanbul-threshold-checker","isparta","unit test", -"jasmine-terminal-reporter","gulplog","has-gulplog","array-unique","capture-stream","plugins","vinyl-bufferstream", -"stream-combiner2","kew","bufferstreams","ng-annotate","develop","restart","windows notification","mac notification", -"notify-osd","easy-transform-stream","ENV","echo","ifdef","ifndef","eslint-watch","views","precompile","src", -"replacestream","modify-filename","rev-hash","rev-path","sort-keys","vinyl-file","rev","revving","revision","expire", -"assets","each-async","md5-hex","ruby","source-maps","sourcemaps","sftp","@types/fancy-log","@types/lodash.template", -"brotli-size","measure","@gulp-sourcemaps/identity-map","@gulp-sourcemaps/map-sources","debug-fabulous","hook-std", -"mississippi","source maps","strip-debug","accord","looks-same","svg2png","stack", -"vector","rwd","retina","rendering","@types/through","incremental","@types/ansi-colors","gulp-diff", -"@types/plugin-error","incremental compilation","array-each","make-error-cause","tape-catch","source-list-map", -"eslint-plugin-no-use-extend-native","uncss","useref","async-once","mock-gulp-dest","array-differ","array-uniq","beeper", -"lodash._reescape","lodash._reevaluate","lodash._reinterpolate","lodash.templatesettings","yazl","yazul","vinyl-zip", -"anymatch","proxy-middleware","vinyl-assign","pngparse","phantomjssmith","zlib","compressed","catering","deglob", -"find-file-up","find-githost","remark-autolink-references","remark-common-changelog", -"remark-lint-blockquote-indentation","remark-lint-checkbox-character-style","remark-lint-checkbox-content-indent", -"remark-lint-code-block-style","remark-lint-definition-case","remark-lint-emphasis-marker", -"remark-lint-fenced-code-marker","remark-lint-final-newline","remark-lint-hard-break-spaces", -"remark-lint-list-item-bullet-indent","remark-lint-list-item-indent","remark-lint-no-auto-link-without-protocol", -"remark-lint-no-blockquote-without-marker","remark-lint-no-duplicate-definitions", -"remark-lint-no-heading-content-indent","remark-lint-no-inline-padding","remark-lint-no-literal-urls", -"remark-lint-no-unused-definitions","remark-lint-rule-style","remark-lint-strong-marker", -"remark-lint-table-cell-padding","remark-lint-table-pipes", -"remark-lint-unordered-list-marker-style","remark-validate-links","unified-engine","vfile-reporter-shiny", -"git-pull-or-clone","fixer","changelogplease","git-tags","grunt-contrib-qunit","grunt-string-replace","jquery-hammerjs", -"gestures","neo-async","chai-diff","grunt-contrib-requirejs","ammo","shot","topo","heavy","mimos","bounce","catbox", -"podium","somever","subtext","teamwork","statehood","catbox-memory","wreck","vision","elements","flag","getopt", -"@types/core-js","get-own-property-symbols","typeof","sham","function-bind","@types/function-bind", -"@types/mock-property","hasOwnProperty","hasOwn","has-own","own","in","@ungap/structured-clone","hast-util-from-parse5", -"unist-util-position","web-namespaces","zwitch","@types/ungap__structured-clone","remark-api","hast-util","hast","unist", -"raw","aria-attributes","html-tag-names","safe","bcp-47-match","devlop","direction","selectall", -"estree-util-attach-comments", -"estree-util-is-identifier-name","mdast-util-mdx-expression","mdast-util-mdx-jsx","mdast-util-mdxjs-esm", -"esast-util-from-js","ccount","tostring","sval","solid","unist-util-find-after","estree-util-build-jsx","svg-tag-names", -"hyperscript","vdom","virtual","regexgen","sort-object","content-security-policy","cross-origin-embedder-policy", +"eslint-plugin-arca","good-listener","cut","clipboard-image","is-wayland","is64bit","paste","pasteboard","pbcopy","clip", +"xclip","xsel","command line interface","istanbul-harmony","coro","teeny-request","urlgrey","code-coverage", +"@codemirror/lint","@codemirror/autocomplete","@codemirror/buildhelper","table-layout","usage", +"@istanbuljs/nyc-config-babel","cz-conventional-changelog-default-export","conventional changelog","es2015-tag", +"es6-tag","heredoc","indents","literal","oneline","tagged","observe","compressible","ctrlc-wrapper", +"@hirez_io/observer-spy","eslint-plugin-import-lite","faceoff","hjson","node-config", +"config-node","atomically","is-safe-filename","preferences","save","kruptein","sentencer","clack","stacktrace","ect", +"slm","dust","jazz","just","qejs","vash","jqtpl","twing","hamlet","hamljs","liquor","plates","teacup","toffee","walrus", +"htmling","ractive","whiskers","tinyliquid","velocityjs","haml-coffee","liquid-node","arc-templates","dustjs-helpers", +"swig-templates","bracket-template","rfc6266","rfc7231","fd-package-json","@conventional-changelog/git-client", +"conventional-changelog-preset-loader","add-stream","compare-func","conventionalcommits.org","inline-source-map", +"top-sites","sign","unsign","toggle-selection","@brettz9/node-static","selenium-server-standalone-jar","is-gzip","noms", +"simple qr","npm qr JavaScript","js qr code","corcojs-qrcode-sample","logo","simple qrcode","cordova-common", +"cordova-create","cordova-lib","@cordova/eslint-config","ES2019", +"ES2024","ECMAScript 5","ECMAScript 7","ECMAScript 2018","ECMAScript 2020","ECMAScript 2024","Promise","Iterator", +"structuredClone","@types/parse-json","eslint-config-davidtheclark-node","remark-preset-davidtheclark","lcov-parse", +"log-driver","cp","quick","tslog","seenreq","@types/got","spider","crc16ccitt","crc16kermit","crc16modbus","crc16", +"crc16xmodem","crc1","crc24","crc32","crc81wire","crc8","crc8dvbs2","crcjam","cipher-base","ripemd160", +"async-traverse-tree","css-url-parser","group-args","inline-critical","oust","penthouse","postcss-discard", +"postcss-image-inliner","@insurgent/commitlint-config","@insurgent/conventional-changelog-preset","node cron","cronjob", +"cron job","@prantlf/jsonlint","@prettier/plugin-xml","@secretlint/secretlint-rule-github", +"@secretlint/secretlint-rule-npm","@stryker-mutator/tap-runner","eslint-plugin-array-func", +"eslint-plugin-no-unsanitized","metalint","secretlint","yaml-lint","@cropper/elements","@cropper/utils","cropper", +"cropper.js","image-cropping","image-viewing","image-processing", +"cropper-element","custom-element","web-component","@epic-web/invariant","@epic-web/config","zshy","cross-environment", +"environment variable","rollup-plugin-esbuild-minify","shebang-command","babel-preset-moxy","eslint-config-moxy", +"spawnSync","path-ext","browserify-cipher","browserify-sign","create-ecdh","create-hmac","diffie-hellman","hash-base", +"public-encrypt","randomfill","pseudorandombytes","Hash","SHA1","SHA-1","SHA256","SHA-256","RC4","Rabbit","AES","DES", +"PBKDF2","HMAC","OFB","CFB","CTR","CBC","Base64url","eslint-config-groupon","nlm","@cspell/cspell-json-reporter", +"@cspell/cspell-performance-monitor","@cspell/cspell-pipe","@cspell/cspell-types","@cspell/cspell-worker", +"@cspell/dynamic-import","@cspell/url","cspell-config-lib","cspell-dictionary","cspell-gitignore","cspell-glob", +"cspell-io","cspell-lib","spell","spelling","spell checker","spelling checker","sorter","isomorphic-unfetch","@swc/css", +"@parcel/css","@types/clean-css","cssnano-preset-simple", +"minimizer","cheerio-soupselect","sizzle","clap","json-to-ast","walker","web-features","cssnano-preset-advanced", +"cssnano-preset-lite","@asamuzakjp/css-color","@tsconfig/node24","@types/turndown","generation","csv-spectrum", +"csv parser","parse csv","csv to json","csv convert","tojson","convert csv to json","csv-json","is-generator", +"cucumber-expressions","cucumber-tag-expressions","eslint-plugin-testcafe","riteway","updtr","unique id","ospath", +"blob-util","@cypress/xvfb","@types/sizzle","@cypress/request","cypress.io","longest","d3-geo","d3-axis","d3-drag", +"d3-ease","d3-zoom","d3-brush","d3-chord","d3-fetch","d3-timer","d3-contour","d3-delaunay","d3-dispatch","d3-quadtree", +"d3-transition","internmap","histogram","bisect","shuffle","selection","data-join","dable","tailwind plugin", +"tailwind component","tailwind css plugin","tailwind rails","laravel","css library","opposite","invert", +"construct","@captemulation/get-parameter-names","json-schema-faker-bb","request-debug","rss-parser", +"swagger-express-middleware","cloc","js-fns","@date-fns/tz","@date-fns/utc","@date-fns/docs","@size-limit/esbuild", +"babel-plugin-replace-import-extension","require-directory","sleep","async wrapper","debouncing","invoke","interval", +"rate-limit","decamelcase","lowercase","decompress-tar","decompress-tarbz2","decompress-targz","strip-dirs","is-jpg", +"bzip2","tar.bz","@types/babel-plugin-macros","multi-line string","duplicates","dupes","remove duplicates","distinct", +"deduplicate","deduplication","is-obj","json-ptr","change-tracking","kewlr","simple-assert","eslint-config-strict", +"@js-temporal/polyfill","eslint-plugin-filenames","chai util","deep equal","object equal","array-buffer-byte-length", +"es-get-iterator","is-array-buffer","is-shared-array-buffer","regexp.prototype.flags","which-boxed-primitive", +"which-collection","available-typed-arrays","has-typed-arrays","is-mergeable-object","jsmd","is-path-cwd", +"unlimited-timeout","defer","stall","settimeout", +"tick","threshold","deps-regex","patch-version","deprecate","deprecated","is-relative","detective-cjs","indentation", +"egg-bin","eslint-config-egg","mm","@profoundlogic/hogan","@types/hogan.js","@types/nopt","image-webpack-loader", +"is-ci-cli","side","side-by-side","line-by-line","difftohtml","colorized","data-structure-typed","Directed Graph", +"directed graph","directedgraph","directed-graph","directed","Directed","digraph","vertex","Vertex","graph theory", +"Graph Theory","graph structure","weighted","Weighted","unweighted","Unweighted","adjacency","Adjacency","connectivity", +"cycle","acyclic","depth","Depth","breadth","Breadth","first","depth first search","dfs","DFS","breadth first search", +"breadth-first search","bfs","BFS","graph algorithms","graph representation","connectivity matrix","adjacency list", +"adjacency matrix","node degree","sparse graph","dense graph", +"directed cycle","directed acyclic graph","DAG","topologic","topological","strongly connected components", +"weighted digraph","directed weighted edge","@discordjs/voice","@discordjs/ws","lodash.snakecase","@discordjs/builders", +"@discordjs/formatters","@discordjs/docgen","common-sequence","dmd-plugin-example","jsdoc2md","agnostic", +"dnode-protocol","weak","callbacks","appium-chromium-driver","appium-geckodriver","appium-safari-driver","jq-web", +"json-schema-faker","posthog-node","literate","mecano","parameters","docker-modem","docker.io","@bevry/pluginloader", +"ambi","ansistyles","bal-util","caterpillar","docmatter","docpad-baseplugin","eachr","envfile","errlop", +"event-emitter-grouped","extendr","extract-opts","ignorefs","lazy-require","progress-title","query-engine", +"rfc-log-levels","safefs","safeps","scandirectory","taskgroup","typechecker","unbounded","watchr", +"@bevry/update-contributors","coffeelint","build and deployment","dms","document management system","language agnostic", +"web development", +"docsify.js","tabs","@textlint/markdown-to-ast","anchor-markdown-header","update-section","doctrine-temporary-fork", +"konan","mdast-util-inject","remark-reference-links","vfile-reporter","vfile-sort","documentation-schema","big-integer", +"binary-search-bounds","int64-buffer","priorityqueuejs","cosmosdb","cosmos db","document database","crowdin-cli", +"truncate-html","autocomplete.js","lunr-languages","offline-search","@4c/rollout","@4c/tsconfig", +"@react-bootstrap/babel-preset","@react-bootstrap/eslint-config","@react-bootstrap/eslint-config-typescript", +"cross-browser","classlist","raster","lodash.sample","rollup-plugin-includepaths","mathml","substitution","ext-name", +"archive-type","is-zip","random-buffer","git-clone","import-from","parse-cmd-args","@types/temp","fbjs-scripts", +"gulp-derequire","stats-webpack-plugin","draftjs","@parcel/transformer-inline-string","@parcel/transformer-sass", +"file upload","dts-critic","@types/json-stable-stringify","elementscript","dw-neit-colors","dw-neit-cssinjs", +"dw-neit-cssinjs-utils","dw-neit-icons","dw-neit-ant-design-react-slick","dw-neit-rc-component-color-picker", +"dw-neit-rc-component-mutate-observer","dw-neit-rc-component-qrcode","dw-neit-rc-component-tour", +"dw-neit-rc-component-trigger", +"dw-neit-rc-cascader","dw-neit-rc-checkbox","dw-neit-rc-collapse","dw-neit-rc-dialog","dw-neit-rc-drawer", +"dw-neit-rc-dropdown","dw-neit-rc-field-form","dw-neit-rc-image","dw-neit-rc-input","dw-neit-rc-input-number", +"dw-neit-rc-mentions","dw-neit-rc-menu","dw-neit-rc-motion","dw-neit-rc-notification","dw-neit-rc-pagination", +"dw-neit-rc-picker","dw-neit-rc-progress","dw-neit-rc-rate","dw-neit-rc-resize-observer","dw-neit-rc-segmented", +"dw-neit-rc-select","dw-neit-rc-slider","dw-neit-rc-steps","dw-neit-rc-switch","dw-neit-rc-tabs","dw-neit-rc-textarea", +"dw-neit-rc-tree","dw-neit-rc-util","dw-neit-rc-table","dw-neit-rc-tooltip","dw-neit-rc-tree-select","dw-neit-rc-upload", +"@antv/g6","control flow","zrender","@lang/rollup-plugin-dts","data-visualization","charting-library","data-viz", +"gulp-exclude-gitignore","gulp-reporter","linez","@types/get-stream","agentkeepalive","aliasify","backport", +"through2-map","lazy-val","dmg-builder","builder-util","app-builder-lib","builder-util-runtime","nsis","msi","OS X", +"MacOS","Mac","appx","snap","@electron/notarize","@electron/osx-sign","@electron/universal","cross-spawn-windows-exe", +"galactus", +"get-package-info","parse-author","electron-download","home-path","batch-processor","@vue/component-compiler-utils", +"algoliasearch","babel-regenerator-runtime","cp-cli","eslint-config-elemefe","file-save","gulp-cssmin", +"select-version-cli","transliteration","uppercamelcase","vue-template-es2015-compiler","eleme","brorand","hash.js", +"hmac-drbg","minimalistic-assert","minimalistic-crypto-utils","grunt-mocha-istanbul","EC","Elliptic","curve", +"Cryptography","@ladjs/consolidate","@ladjs/i18n","get-paths","juice","nodemailer-sendgrid","preview-email","mailchimp", +"mailgun","mandrill","moonmail","postmark","sendgrid","@types/mailparser","@types/smtp-server","mailparser", +"@ember-tooling/blueprint-blueprint","@ember-tooling/blueprint-model","@ember/app-blueprint","@pnpm/find-workspace-dir", +"babel-remove-types","broccoli-config-loader","broccoli-config-replace","broccoli-funnel-reducer","broccoli-slow-trees", +"capture-exit","clean-base-url","content-tag","dag-map","ember-cli-is-package-missing","ember-cli-preprocess-registry", +"find-yarn-workspace-root","heimdalljs-fs-monitor","heimdalljs-graph","is-git-url","is-language-code", +"markdown-it-terminal","promise.hash.helper", +"yam","@ember-tooling/classic-build-addon-blueprint","@ember-tooling/classic-build-app-blueprint", +"ember-cli-blueprint-test-helpers","ember-cli-internal-test-helpers","yuidoc-ember-cli-theme","yuidocjs","app-kit", +"ember-app-kit","ember.js","amd-name-resolver","babel-plugin-ember-data-packages-polyfill", +"babel-plugin-ember-modules-api-polyfill","ember-cli-babel-plugin-helpers","ember-cli-version-checker","@ember/string", +"@glimmer/component","@glimmer/tracking","@ember/edition-utils","babel-plugin-ember-template-compilation", +"broccoli-persistent-filter","@embroider/test-setup","ember-cli-clean-css","ember-styleguide","ember-template-lint", +"ember-try","@emmetio/abbreviation","@emmetio/css-abbreviation","snippets","coding","finish","close","end","es-errors", +"entitify","enumeration","datatype","github-release-cli","yamlify-object","issues","diagnostics","html-element-map", +"is-boolean-object","is-number-object","is-string","is-subset","rst-selector-parser","shallow rendering","shallowRender", +"test utils","assertion helpers","airbnb-prop-types","codependence","pastoralist","check for es6","check for modules", +"es check","es matching","es version","ecmascript check","ecmascript matching","ecmascript version","js version", +"js version check", +"js version matching","test js version","test ecmascript version","intl-fallback-symbol","make-async-function", +"@types/array.prototype.flatmap","@types/foreach","@types/reflect.ownkeys","reflect.ownkeys", +"symbol.prototype.description","well-known-symbols","fixture","es6-symbol","esniff","plain-promise","ecmascript5", +"ecmascript6","ext","es5 shim","json3","promises-aplus-tests-phantom","promises-es6-tests","setPrototypeOf","special", +"bower-registry-client","commonjs-everywhere","@eslint/config-array","@eslint/config-helpers","@humanfs/node", +"@humanwhocodes/module-importer","@humanwhocodes/retry","json-stable-stringify-without-jsonify","@trunkio/launcher", +"eslint-rule-extender","metascraper","metascraper-description","metascraper-image","metascraper-logo", +"metascraper-logo-favicon","metascraper-title","prettier-package-json","eslint-prettier","@rushstack/eslint-patch", +"@eslint/config-inspector","obuild","@eslint/css","hugs","kisses","cabin","eslint-import-context","is-bun-module", +"stable-hash-x","eslint-friendly-formatter","enhance-visitors","espurify","micro-spelling-correcter", +"eslint-rule-composer","ast-metadata-inferer","@types/caniuse-lite","browserslist-config-erb","kangax","eslint4b", +"vue-eslint-editor","exported", +"eslint-env","eslint-enable","eslint-disable","eslint-disable-line","eslint-disable-next-line","@types/estraverse", +"eslint-config-not-an-aardvark","string-natural-compare","flowtype","@html-eslint/eslint-plugin","@html-eslint/parser", +"@rtsao/scc","array.prototype.findlastindex","eslint-module-utils","object.groupby","string.prototype.trimend","escope", +"fs-copy-file-sync","linklocal","lodash.isarray","@schemastore/package","babel-plugin-replace-ts-export-assignment", +"@es-joy/jsdoccomment","@es-joy/resolve.exports","are-docs-informative","object-deep-merge","parse-imports-exports", +"to-valid-identifier","@es-joy/escodegen","@es-joy/jsdoc-eslint-parser","@hkdobrev/run-if-changed", +"@types/spdx-expression-parse","babel-plugin-transform-import-meta","@ota-meshi/ast-token-store","diff-sequences", +"eslint-json-compat-utils","eslint-plugin-eslint-rule-tester","stylelint-config-standard-vue","stylelint-stylus", +"ast-types-flow","damerau-levenshtein","language-tags","string.prototype.includes","eslint-config-eslint", +"eslint-plugin-es-x","ts-declaration-location","@types/globrex","ts-ignore-import","eslint-utils", +"prettier-linter-helpers","array.prototype.findlast","array.prototype.tosorted","es-iterator-helpers", +"@babel/plugin-syntax-do-expressions","@babel/plugin-syntax-function-bind","gfm-footnotes","hermes-parser", +"eslint-plugin-pere","eslint-snapshot-rule-tester","jsx-ast-utils-x","functional-red-black-tree","sonarjs", +"svelte-eslint-parser","@types/eslint-utils", +"@types/esutils","svelte-i18n","sveltejs","clean-regexp","regjsparser","@lubien/fixture-beta-package","node-style-text", +"unicorn","@veritem/eslint-config","vitest eslint plugin","eslint plugin","@types/xml-name-validator", +"eslint-plugin-markdown-preferences","importx","ink-testing-library","eslint-test","@types/esrecurse","esrecurse", +"eslint-plugin-requirejs","escomplex-js","everything.js","node-tick-processor","unicode-8.0.0","gulp-tag-version", +"ethereumjs-common","@ethereumjs/config-nyc","@ethereumjs/config-prettier","@ethereumjs/config-tsc", +"@ethereumjs/config-tslint","contributor","typestrict","transactions","rlp","@types/secp256k1","es-lookup-scope", +"evaulate","pause-stream","asynct","EventEmitter","EventEmitter2","EventEmitter3","reactor","human-signals", +"strip-final-newline","get-node","log-process-errors","execfile","stderr","drain","flush","3584","eslint-plugin-mmkal", +"array-flatten","express3","partials","express-unless","expressjs","hoare","cjs-mock","tRPC","RPC","express.js", +"code-generation","fully-typed", +"typed-api","express-api","http-api","client-server","browser-client","web-development","web-api", +"@docusaurus/plugin-client-redirects","openapi3-ts","@express-zod-api/zod-plugin","@types/depd","@types/http-errors", +"camelize-ts","snakify-ts","dts-plugin","documentation-tool","schema-validation","openapi-specification", +"swagger-documentation","assign-symbols","is-extendable","array-slice","for-own","props","webpack-defaults", +"vinyl-transform","console.log","@fast-check/expect-type","@fast-check/poisoning","property-based testing", +"end-to-end testing","quickcheck","jscheck","fuzzer","fuzz","@fast-csv/parse","@fast-csv/format","writer","csv writer", +"CSV","@nodelib/fs.stat","@nodelib/fs.macchiato","@types/merge2","bencho","eslint-config-mrmlnc","implementation", +"strnum","@fastify/ajv-compiler","@fastify/fast-json-stringify-compiler","@fastify/proxy-addr","abstract-logging", +"avvio","fast-json-stringify","light-my-request","toad-cache","@jsumners/line-reporter","ajv-merge-patch", +"branch-comparer","fast-json-body","fluent-json-schema","h2url","@umijs/babel-preset-umi","@umijs/bundler-webpack", +"@umijs/case-sensitive-paths-webpack-plugin", +"@utoo/pack","@types/loader-runner","array.prototype.foreach","array.prototype.join","array.prototype.push", +"array.prototype.slice","string.prototype.split","anything","fbjs-css-vars","@skypack/package-check","in web", +"in javascript","in react","Plug & Play","react components","ui component","advanced component","advanced feature", +"phonebook","voice","autofillotp","share","livelocationtracking","detectmylocation","wakelock","WhatsappShare", +"NetworkConnection","TextToSpeech","VoiceRecognition","SnapScanner","NetworkMonitor","View360","functional program", +"data management","fiber","thread","filesaver","saveas","@tokenizer/inflate","strtok3","token-types","@tokenizer/token", +"noop-stream","magic","exif","elf","macho","apng","flif","xcf","cr2","cr3","orf","arw","dng","nef","rw2","tif","jxr", +"indd","rar","gz","7z","mp4", +"mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","mobi","rtf","woff","woff2","eot", +"ttf","otf","ttc","flv","ps","xz","xpi","cab","deb","ar","rpm","Z","lz","mxf","mts","wasm","webassembly","blend","bpg", +"pptx","3gp","j2c","jpm","jpx","mj2","aif","odt","odp","ics","pcap","dsf","lnk","voc","ac3","3g2","m4b","m4p","m4v", +"f4a","f4b","f4p","f4v","mie","qcp","asf", +"ogv","ogm","oga","spx","ogx","ape","wv","nes","crx","ktx","dcm","mpc","arrow","shp","aac","mp1","it","s3m","xm","skp", +"eps","lzh","pgp","asar","chm","3mf","zst","vcf","jls","pst","dwg","parquet","arj","cpio","ace","avro","fbx","vsdx", +"vtt","apk","drc","lz4","potx","xltx","dotx","xltm","ots","odg","otg","ott","docm","dotm","potm","pptm","jmp","sav", +"ppsm","ppsx","reg","dat","detect-file","resolve-dir","homedir-polyfill","@firebase/ai", +"@firebase/app","@firebase/auth","@firebase/util","@firebase/storage","@firebase/database","@firebase/analytics", +"@firebase/app-check","@firebase/app-types","@firebase/firestore","@firebase/functions","@firebase/messaging", +"@firebase/performance","@firebase/data-connect","@firebase/installations","@firebase/remote-config", +"@firebase/storage-compat","@firebase/analytics-compat","@firebase/app-check-compat","@firebase/firestore-compat", +"@firebase/functions-compat","@firebase/messaging-compat","@firebase/performance-compat", +"@firebase/installations-compat","@firebase/remote-config-compat","remote-config","@firebase/database-types", +"farmhash-modern","jwks-rsa","@firebase/api-documenter","@firebase/auth-types","@types/firebase-token-generator", +"@types/request-promise","firebase-token-generator","http-message-parser","@apphosting/build","@apphosting/common", +"@google-cloud/cloud-sql-connector","@google-cloud/pubsub","cjson","deep-equal-in-any-order","exegesis", +"exegesis-express","libsodium-wrappers","lsofi","pg-gateway","pglite-2","sql-formatter","stream-chain","superstatic", +"update-notifier-cjs","ssl","hosting","synchronization","alce","extend-object","unflatten","markdox","commands", +"flowbite-datepicker","@tailwindcss/cli","eslint-plugin-tailwindcss","flowbite-typography","windicss","ui components", +"tailwind components","tailwind elements","tailwind library","tailwind sections","tailwind ui","tailwind angular", +"tailwind django","tailwind ruby on rails","tailwind flask","umd","ffmpeg","fbemitter","dispatcher","cliff","shush", +"flatiron","nssocket","node-abort-controller","karton","typecheck","@types/babel-code-frame","increment","asynckit", +"es-set-tostringtag","far","is-node-modern","js-randomness-predictor","obake","dezalgo","prettier-plugin-pkgjson", +"@tunnckocore/prettier-config","www","ulpoad","tiny-warning","just-debounce-it","react hooks","render props", +"higher order component","friendly","check-dts","front matter","meta data","release-assist","@monaco-editor/loader", +"@sapphire/stopwatch","@sapphire/utilities","@snippetors/vuepress-plugin-tabs","@vuepress/plugin-google-analytics", +"vuepress-plugin-google-adsense2","bitap","sublime","sublime text","grunt-benchmark","restangular","ui-router", +"foundation","traceur","haml","git-config","find-git-root","@merkle-open/eslint-config","pool","inject-markdown", +"ts2mjs", +"iterators","@werkzeugkiste/eslint-config","@werkzeugkiste/release-config","install-deps-postmerge", +"semantic-release-conventional-commits","@cfware/lint","@cfware/nyc","if-ver","libtap","finder","free","connection", +"preferred","chosen","std","@sec-ant/readable-stream","precise-now","consume","resolve-pkg-maps","tsconfig.json", +"eslint-config-bevry","make-deno-edition","deno-edition","deno-entry","denoland","es2022","export-default","ifconfig", +"ipconfig","mac-address","email-addresses","manage-path","spawn-command","travis-after-all","@primer/primitives", +"@rollup/plugin-html","path-scurry","dirname","is-identifier","identifiers","environments","all","multiple","wildcards", +"array-series","array-parallel","magick","graphicsmagick","gfsl","msmc","mc","minecraft","launcher","java edition","arm", +"arm-support","forge","instances-management","instances","mod","mods","mc-mod","mc-mods","modpack", +"modpack-api","extendable","nbt","jarmods","skin fix","eslint-plugin-no-floating-promise","varlock", +"google spreadsheets","google sheets","spreadsheets","sheets","gdata","drive","google docs","googleapis-common", +"@types/execa","@types/mv","@types/url-template","jsdoc-fresh","jsdoc-region-tag","google apis","client library", +"byte-counter","cacheable-lookup","cacheable-request","decompress-response","form-data-encoder","responselike", +"@types/pem","chunk-data","create-cert","create-test-server","pem","slow-stream","then-busboy","zstd","zstandard", +"human-friendly","sassdoc","sass-color-helpers","govuk-prototype-kit","govuk","reading","retries","handling","EMFILE", +"EAGAIN","EINVAL","EPERM","EACCESS","graphql-js","test-all-versions","section-matter","ansi-green","delimiter-regex", +"extracting","front","frontmatter","matter","@mapbox/node-pre-gyp","@types/bytebuffer","electron-mocha", +"poisson-process","grunt-legacy-log", +"grunt-legacy-util","difflet","eslint-config-grunt","init","browserify-incremental","liftup","pad-stream", +"grunt-nodemon","simultaneous","faster","bin-version-check","file-sync-cmp","cssmin","nodeunit-x","uri-path", +"grunt-github-remove-all-releases","gh","releases","grunt-continue","grunt-env","grunt-istanbul-coverage", +"grunt-cafe-mocha","stack-parser","grunt-templates-dylang","mountain lion","mavericks","requestretry", +"grunt-sauce-tunnel","yui","get-pixels","gmsmith","@npm/types","inline-fixtures","@guarapi/eslint-config-guarapi", +"@swc/register","glob-watcher","undertaker","html2js","templatecache","gulp-symdest","atom-shell","lodash.chunk", +"concurrent-transform","@azure/storage-blob","delayed-stream","streamifier","desugaring","add","prepend", +"gulp-codecov.io","bump-regex","plugin-log","gulp-version","cache-swap","changed","modified","modification","updated", +"cached","passthrough","minify-css","jshint-reporter-jscs","parse-import","rework-import", +"rework-plugin-url","slush","dest","csslint-stylish","node-version-check","@shinnn/eslint-config-node","warnings", +"flatnest","to-absolute-glob","divide","pretty-remarkable","sections","jsftp-mkdirp","ftp-test-server","gift", +"wrap-promise","octonode","read-remove-file","branch","strip-bom-stream","gulpgit","gulp-declare","gulp-define-module", +"gulp-wrap","nsdeclare","eventstream","htm","gulp-spawn","gulp-svg2ttf","gulp-ttf2eot","gulp-ttf2woff","gulp-ttf2woff2", +"gulp-svgicons2svgfont","streamtest","stream-exhaust","if","ternary","gulp-gm","group-array","inline-css", +"lodash.groupby","istanbul-threshold-checker","unit test","jasmine-terminal-reporter","array-unique","capture-stream", +"vinyl-bufferstream","bufferstreams","develop","windows notification","mac notification","notify-osd","ENV","echo", +"ifdef","ifndef","eslint-watch","src","replacestream","modify-filename","rev-hash","rev-path","revving","expire", +"assets","each-async","md5-hex","ruby","@gulp-sourcemaps/identity-map","@gulp-sourcemaps/map-sources","debug-fabulous", +"mississippi","strip-debug","accord","looks-same","svg2png","incremental","gulp-diff","@types/plugin-error", +"incremental compilation","array-each","make-error-cause","tape-catch","source-list-map","useref","async-once", +"mock-gulp-dest","lodash._reescape","lodash._reevaluate","yazul","vinyl-zip","vinyl-assign","pngparse","phantomjssmith", +"compressed","deglob","find-file-up","find-githost","remark-autolink-references","remark-common-changelog", +"remark-lint-final-newline","remark-lint-list-item-bullet-indent","remark-lint-no-auto-link-without-protocol", +"remark-lint-no-blockquote-without-marker","remark-lint-no-inline-padding","remark-lint-no-literal-urls", +"remark-lint-no-unused-definitions","unified-engine","vfile-reporter-shiny","git-pull-or-clone","fixer", +"changelogplease","git-tags","jquery-hammerjs","chai-diff","topo","heavy","mimos","catbox","podium","somever","subtext", +"teamwork","statehood","catbox-memory","get-own-property-symbols","@types/function-bind","@types/mock-property", +"hasOwnProperty","has-own","own","in","remark-api","aria-attributes","html-tag-names","bcp-47-match","direction", +"selectall","estree-util-attach-comments","ccount","tostring","sval","unist-util-find-after","estree-util-build-jsx", +"svg-tag-names","regexgen","sort-object","content-security-policy","cross-origin-embedder-policy", "cross-origin-opener-policy","cross-origin-resource-policy","origin-agent-cluster","referrer-policy", "strict-transport-security","x-content-type-options","x-dns-prefetch-control","x-download-options","x-frame-options", -"x-permitted-cross-domain-policies","x-powered-by","x-xss-protection","@vue/compiler-dom","abbrev","fast-archy", -"fast-text-table","hexo-cli","hexo-front-matter","hexo-fs","hexo-i18n","hexo-log","hexo-util","js-yaml-js-types","moize", -"titlecase","warehouse","@types/abbrev","0x","eslint-config-hexo","hexo-renderer-marked","util-deprecate", -"grunt-gh-pages","scrawl","transducers-js","tiny-worker","wcag-contrast","css-color-names","deep-freeze-es6", -"dependency-resolver","step","hap-nodejs","@types/source-map-support","eslint-plugin-import-newlines", -"@hono/eslint-config","bun-types", -"editorconfig-checker","oxc-parser","vite-plugin-fastly-js-compute","wrangler","application","cloudflare","workers", -"fastly","compute","workshopper-adventure","workshop","adventure","tutorial","tutor","@size-limit/preset-big-lib", -"@types/jscodeshift","pojo","attribute","element","@exodus/bytes","@types/he","flowgen","html entities", -"html entities encode","html entities decode","entities encode","entities decode","ascjs","unescape","posthtml-webp", -"unescape-unicode","relateurl","compressor","packer","uglifier","alpinejs","commitlint-config-non-conventional", -"rollup-plugin-polyfill-node","tags","void","self-closing","@types/jasmine","@bubkoo/tsconfig","@bubkoo/eslint-config", -"@bubkoo/rollup-config","@bubkoo/commitlint-config","@bubkoo/semantic-release-config","screenshot","capture", -"@selderee/plugin-htmlparser2","selderee","mail","plain","@html-validate/stylish","@sidvind/better-ajv-errors", -"@types/html-minifier-terser","pug-loader","webpack-recompilation-simulator","@types/relateurl","bunchee", -"eslint-plugin-unused-imports","srcset","posthtml-plugin","postproccessor", -"rss","toidentifier","requires-port","sse","agent-base","agent","@types/is-glob","mockttp","next.js","union","corser", -"secure-compare","eol","eslint-config-populist","https-server","@types/should","@types/eslint__js","status", -"@types/markdown-table","HttpStatus","httpclient","mediation","@types/async-retry","post","put","duplex", -"eslint-config-sanity","hyphenate","singular","plural","camelize","dasherize","demodulize","ordinalize","uncountable", -"singularize","titleize","tableize","classify","foreign_key","@messageformat/core","fast-printf","make-plural", -"math-interval-parser","l10n","@arktype/attest","gh-release","i18next-browser-languagedetector","i18next-fs-backend", -"i18next-http-backend","i18next-localstorage-cache","i18next-sprintf-postprocessor","internationalization","translation", -"localization","globalization","gettext","gridly","safer-buffer","errto","iconv","unorm","bench-node","charset", -"icu","harmony-reflect","proxies","identity","eslint-config-ostai","pre-suf","spawn-sync",".gitignore","manager", -"asterisks","regular-expression","dimensions","resolution","heif","tga","tiff","ow","p-pipe","image-dimensions","is-png", -"pngquant-bin","imageminplugin","pngquant","utf7","reader","cpx2","deep-freeze","import-size","seamless-immutable", -"type-plus","mutable","copy-on-write","@types/invariant","immutability","lazy","stateless","bypass","prefer","metacom", -"metaconfiguration","metalog","metaschema","metautil","metavm","metawatch","eslint-config-metarhia","isolation", -"enterprise","scalable","soa","stateful","routing","cluster","interactive","align","every","inferno-shared", -"inferno-utils","user interfaces","renderToString","inflections","inflection-js","humanize","capitalize", -"inheritance","klass","oop","object-oriented","@alcalzone/ansi-tokenize","auto-bind","patch-console","terminal-size", -"yoga-layout","@types/react-reconciler","@types/scheduler","@types/signal-exit","@vdemedes/prettier-config", -"eslint-config-xo-react","react-devtools-core","print","inline-style","inno","innosetup","run-async","fwk","instagram", -"ig","driver","reify","exports","packaging","remark-code-import","coffee.md","litcoffee","yml", -"babel-plugin-transform-es3-member-expression-literals","babel-plugin-transform-es3-property-literals", -"babel-preset-es2015-rollup","cldr-cal-buddhist-full","cldr-cal-chinese-full","cldr-cal-coptic-full", +"x-permitted-cross-domain-policies","x-powered-by","x-xss-protection","fast-archy","fast-text-table","hexo-cli", +"hexo-front-matter","hexo-fs","hexo-i18n","hexo-log","hexo-util","titlecase","warehouse","@types/abbrev","0x", +"eslint-config-hexo","hexo-renderer-marked","scrawl","transducers-js","tiny-worker","wcag-contrast","css-color-names", +"deep-freeze-es6","dependency-resolver","step","hap-nodejs","eslint-plugin-import-newlines","@hono/eslint-config", +"bun-types","editorconfig-checker","vite-plugin-fastly-js-compute","fastly","compute","workshopper-adventure", +"workshop","adventure","tutorial","tutor","@types/jscodeshift","flowgen","html entities","html entities encode", +"html entities decode","entities encode","entities decode","ascjs","posthtml-webp","unescape-unicode","alpinejs", +"self-closing","@bubkoo/tsconfig","@bubkoo/eslint-config","@bubkoo/rollup-config","@bubkoo/commitlint-config", +"@bubkoo/semantic-release-config","@selderee/plugin-htmlparser2","selderee","@html-validate/stylish", +"@sidvind/better-ajv-errors","@types/html-minifier-terser","webpack-recompilation-simulator","@types/relateurl","srcset", +"posthtml-plugin","rss","toidentifier","sse","@types/is-glob","mockttp","union","corser","secure-compare", +"eslint-config-populist","https-server","@types/should","@types/eslint__js","@types/markdown-table","HttpStatus", +"httpclient","mediation","put","eslint-config-sanity","hyphenate","uncountable","@messageformat/core","fast-printf", +"make-plural","math-interval-parser","@arktype/attest","i18next-fs-backend","i18next-http-backend", +"i18next-localstorage-cache","i18next-sprintf-postprocessor","gettext","gridly","errto","bench-node","icu", +"harmony-reflect","proxies","eslint-config-ostai","pre-suf",".gitignore","asterisks","regular-expression","dimensions", +"heif","tga","is-png","pngquant-bin","imageminplugin","pngquant","utf7","reader","cpx2","import-size", +"seamless-immutable","type-plus","mutable","copy-on-write","@types/invariant","immutability","stateless","bypass", +"prefer","metacom","metaconfiguration","metalog","metaschema","metautil","metavm","metawatch","eslint-config-metarhia", +"isolation","enterprise","soa","stateful","inferno-utils","inflections","inflection-js","capitalize","inheritance", +"klass","oop","object-oriented","@alcalzone/ansi-tokenize","auto-bind","patch-console","terminal-size","yoga-layout", +"@types/react-reconciler","@types/scheduler","@vdemedes/prettier-config","print","inline-style","inno","innosetup","fwk", +"instagram","ig","exports","packaging", +"remark-code-import","coffee.md","litcoffee","cldr-cal-buddhist-full","cldr-cal-chinese-full","cldr-cal-coptic-full", "cldr-cal-dangi-full","cldr-cal-ethiopic-full","cldr-cal-hebrew-full","cldr-cal-indian-full","cldr-cal-islamic-full", "cldr-cal-japanese-full","cldr-cal-persian-full","cldr-cal-roc-full","cldr-core","cldr-dates-full","cldr-numbers-full", "estraverse-fb","grunt-curl","grunt-zip","rollup-plugin-memory","ecma402","@vue/tsconfig","flag-icons", -"google-closure-library","grunt-replace","prettier-eslint","international","country","dial code","telephone","phone", -"@inversifyjs/common", -"@inversifyjs/container","@inversifyjs/core","dependency inversion","inversion of control container","ioc","leek", -"ssh-config","elementtree","@ionic/discover","@ionic/utils-fs","superagent-proxy","@ionic/utils-array", -"@ionic/utils-stream","@ionic/cli-framework","@ionic/utils-network","@ionic/utils-process","@ionic/utils-terminal", -"@ionic/utils-subprocess","@ionic/cli-framework-prompts","@types/diff","@types/open","@types/split2","@types/os-name", -"@types/elementtree","ionic framework","ionicframework","hybrid","@types/svgo","jest-stencil-runner","icon pack", -"custom element","@ioredis/commands","cluster-key-slot","denque","lodash.isarguments","redis-errors","redis-parser", -"standard-as-callback","@ioredis/interface-generator","@types/lodash.defaults","@types/lodash.isarguments", -"@types/redis-errors","sentinel","pipelining","irc-colors","node-icu-charset-detector","ansi-color","is-extglob", -"braces","extglob","globstar","global-directory","globally","installed","locally","vanilla","pure","is-object","kind", -"custom element name","writable","is-inside-container","esmock","wsl", +"google-closure-library","grunt-replace","international","dial code","@inversifyjs/common","@inversifyjs/container", +"@inversifyjs/core","dependency inversion","inversion of control container","ioc","@ionic/discover","superagent-proxy", +"@types/open","@types/os-name","ionic framework","ionicframework","jest-stencil-runner","icon pack","@ioredis/commands", +"cluster-key-slot","lodash.isarguments","redis-errors","redis-parser","standard-as-callback", +"@ioredis/interface-generator","@types/lodash.defaults","@types/lodash.isarguments","@types/redis-errors","sentinel", +"pipelining","irc-colors","node-icu-charset-detector","ansi-color","is-extglob","global-directory","globally", +"installed","locally","custom element name","wsl", "subsystem","kindof","lintspaces-cli","code coverage","JS code coverage","JS coverage","js-calendar","v-click-outside-x", -"autoprefixer-loader","babel-plugin-transform-es5-property-mutators","compression-webpack-plugin","vue-html-loader", -"character-parser","constantinople","jstransformer","transformers","with","browserify-middleware","code-mirror", -"github-basic","handle","highlight-codemirror","inconsolata","jade-code-mirror","jade-highlighter","jstransformer-cdata", -"jstransformer-coffee-script","jstransformer-less","jstransformer-marked","jstransformer-stylus", -"jstransformer-verbatim","less-file","lsr","pull-request","stop","filelist","rake","video-worker", -"babel-plugin-annotate-pure-calls","browserslist-config-nk","eslint-config-nk","json-file","prettier-config-nk", -"parallax","youtube","vimeo","@jasminejs/reporters","eslint-plugin-jasmine","css-url-embed","walkdir", -"jasmine-reporters","jasmine-growl-reporter","cssfontparser","moo-color","babel-plugin-version","@jest/diff-sequences", -"@jest/environment","@jest/environment-jsdom-abstract","@jest/fake-timers","jest-serializer-ansi-escapes","matchers", -"extended","@types/escape-html","@types/jump.js", -"@types/randomcolor","eslint-webpack-plugin","jump.js","randomcolor","web-vitals","libxmljs2","plugnplay","pnp", -"babel-plugin-add-import-extension","@types/merge-stream","jest-leak-detector","worker-farm","@jimp/core","@jimp/diff", -"@jimp/js-bmp","@jimp/js-gif","@jimp/js-jpeg","@jimp/js-png","@jimp/js-tiff","@jimp/plugin-blit","@jimp/plugin-blur", -"@jimp/plugin-circle","@jimp/plugin-color","@jimp/plugin-contain","@jimp/plugin-cover","@jimp/plugin-crop", -"@jimp/plugin-displace","@jimp/plugin-dither","@jimp/plugin-fisheye","@jimp/plugin-flip","@jimp/plugin-hash", -"@jimp/plugin-mask","@jimp/plugin-print","@jimp/plugin-quantize","@jimp/plugin-resize","@jimp/plugin-rotate", -"@jimp/plugin-threshold","@jimp/types","@jimp/utils","@jimp/config-eslint","@jimp/config-typescript", -"@jimp/config-vitest","@jimp/test-utils","node-self","vite-plugin-node-polyfills","image processing", -"image manipulation","resize","@babel/helper-simple-access","@rspack/cli","@rspack/core", -"@types/babel__helper-plugin-utils","@types/babel__template","@types/babel__traverse","babel-plugin-parameter-decorator", -"destr","nano-jsx","preact-render-to-string","solid-js","wysiwyg editor","wysiwyg html editor","rich editor", -"rich text editor","contenteditable", -"vanillajs","wysisyg","rte","firmata","temporal","nanotimer","browser-serialport","grunt-jsbeautifier","0A02","0A21", -"16x2 LCD","20x4 LCD","2D120X","2Y0A02","2Y0A21","74HC595","ADXL335","ADXL345","ALS-PT19","ALSPT19","ANALOG","arduino", -"Ardumoto","AT42QT1070","BLINKM","BMP180","Continuous Rotation","DEFAULT","Diffused LED","DS18B20", -"Edison Arduino Block","Edison GPIO Block","Edison I2C Block","Edison PWM Block","edison","ESPLORA","EV3","galileo-io", -"galileo","GP2D120XJ00F","GP2Y0A02YK0F","GP2Y0A21YK","GP2Y0A41SK0F","GY-521","GY521","HD44780","High Torque", -"Hitec HS-35HD","Hitec HS-422","Hitec HS-425BB","Hitec HS-625MG","Hitec HS-646WP","Hitec HS-755HB","Hitec HS-805BB", -"Hitec HS-85MG","HMC5883L","HMC6352","Hobby Motor","HRLV-MaxSonar-EZ0","HT16K33","HTU21D","i2c", -"Infrared Proximity Sensor","Infrared Sensor", -"intel edison","intel galileo","ISL29125","JHD1313M1","Joystick","LCD1602","LCD2004","LCM1602","LED","LIDAR-Lite v2", -"Ludus Protoshield Wireless","Ludus Protoshield","LV-MaxSonar-EZ0","LV-MaxSonar-EZ3","MCP23008","MCP23017","MCP9808", -"Metal Gear","MJKDZ","MMA7361","MMA7660","MMA8462Q","MPL115A2","MPL3115A2","MPR121","MPR121QR2","MPU-6050","MPU6050", -"MUXSHIELD2","NXT","OA41SK","PARALLEL","PCA9685","pcduino","PCF8574","PCF8574A","PCF8574AT","PCF8574T","PCF8575", -"PCF8591","photon","PIR Motion Sensor","QTOUCH","raspberry pi","raspberrypi","raspi-io","RedBoard","RGB LED","robot", -"robotics","rpi","serial","Servo","Shift Register 8-Bit SN74HC595","Shift Register","SI7020","spark core","spark-io", -"spark","SparkFun Essential Sensor Kit","SparkFun Sensor Kit","Speed controller","Temperature","tessel 2", -"Thumb Joystick","TINKERKIT","TMP36","TSL2561","Ultrasonic Range Finder","usb","VKEY","Weather Shield Arduino", -"Weather Shield Photon","@hapi/address","@hapi/formula","@hapi/pinpoint","@hapi/tlds","recoil","grunt-html", -"commitplease","grunt-bowercopy","grunt-git-authors","grunt-compare-size","jquery-test-runner","eslint-config-jquery", -"config-chain","beautifier","code-quality","grunt-exec","gzip-js","amd","rollup-plugin-node-polyfills","pyyaml", -"knifecycle","package-directory","yerror","architecture","gitignore-to-glob","@jscpd/badge-reporter","@jscpd/core", -"@jscpd/finder","@jscpd/tokenizer","@jscpd/html-reporter","jscpd-sarif-reporter","cst","jscs-jsdoc", -"jscs-preset-wikimedia","reserved-words","to-double-quotes","to-single-quotes","vow-fs","unicode-7.0.0","unit-coverage", -"@jsdoc/salty","catharsis","js2xmlparser","requizzle","current-module-paths","object-to-spawn-args","config-master", -"@acemir/cssom","@asamuzakjp/dom-selector","@bramus/specificity","data-urls","decimal.js","saxes","symbol-tree", -"w3c-xmlserializer", -"webidl-conversions","whatwg-url","mocha-sugar-free","webidl2","webidl2js","browser-request","cssom","nwmatcher", -"selenium-standalone","unicode-13.0.0","results-interpreter","unicode-5.2.0","unicode-11.0.0","stylish","deeks", -"doc-path","to","json2csv","csv2json","csv-2-json","milliparsec","sort-on","prototyping","dummy","@types/object-keys", -"deterministic","stable","circular","unicode-10.0.0","@stryker-mutator/mocha-runner","json-metaschema","jsonparse", -"trees","jws","lodash.once","lodash.includes","lodash.isnumber","lodash.isboolean","lodash.isinteger","@jspm/generator", -"@jspm/plugin-rollup","amaro","states","lie","jszip-utils","package-json-versionify","inflate","qjobs","dom-serialize", -"timer-shim","karma-junit-reporter","karma-script-launcher","spectacular","execution","hat","os-shim","karma-plugin", -"karma-preprocessor","browserify-tool","browserstack-local","karma-launcher","browser-stack","chrome","ibrik", -"karma-coffee-preprocessor","karma-requirejs","karma-reporter","Safari","Safari Tech Preview","SafariTechPreview","IE", -"Chrome","Chrome Canary","Chrome Headless","Chromium","Firefox","Opera","edge-launcher","chai-fs","os-homedir","firefox", -"karma-adapter","karma-rollup","safari","global-agent","@types/global-agent","sauce","labs","karma-brief-reporter", -"rollup-sourcemap-path-transform","keyboard","keyboardevent","keydown","keyup","metakey","keyname","@keyv/serialize", -"lru.min","timekeeper","@keyv/compress-gzip","@keyv/sqlite","@keyv/test-suite","@keyv/mongo","@keyv/compress-brotli", -"@keyv/compress-lz4","@keyv/memcache","key-value","adapter","memory","lru","tarn","escalade","pg-connection-string", -"tedious","oracledb","better-sqlite3","pg-query-stream","chai-subset-in-order","@tsconfig/recommended", -"toxiproxy-node-client","sql","postgres","cockroachdb","querybuilder","formatly","oxc-resolver","smol-toml", -"codeclimate-types", -"analysis","analyze","dead code","duplicate","entropy","maintenance","members","missing","monorepo","namespace", -"unreferenced","unresolved","workspace","lodash.sortby","explorer","opera","samsung-internet","uc-browser", -"stream-counter","delegates","http-assert","gen-esm-wrapper","@types/co-body","co-body","@koa/router", -"@types/koa__router","urlencoded","body","copy-to","bodyParser","compose","humanize-number","passthrough-counter", -"koa-compress","koa-route","mount","mounting","@ladjs/env","route","koa-send","sendfile","reds","node-redis-warlock", -"bossy","eslint-config-hapi","eslint-plugin-hapi","find-rc","will-call","cpr","lab-event-reporter","semver-regex", -"latest","package.json","current","autodoc","deft","jasmine-async","race.js","string-table","happen","leafdoc", -"bundlemon","git-rev-sync","karma-expect", -"prosthetic-hand","eslint-config-mourner","rollup-plugin-git-version","@mapbox/eslint-plugin-script-tags","gis","left", -"padding","repeat","numbers","aproba","cmd-shim","p-reduce","byte-size","write-pkg","wide-align","has-unicode", -"p-waterfall","libnpmaccess","p-map-series","set-blocking","@lerna/create","libnpmpublish","read-cmd-shim", -"load-json-file","init-package-json","make-fetch-happen","conventional-changelog-core","validate-npm-package-license", -"conventional-recommended-bump","conventional-changelog-angular","@octokit/plugin-enterprise-rest","multi-package", -"copy-anything","benny","bootstrap-less-port","html-template-tag","jit-grunt","less-plugin-autoprefix", -"mocha-teamcity-reporter","phin","read-glob","compile less","css nesting","css variable","gradients css", -"gradients css3","less compiler","less css","less mixins","less.js","lesscss","nested css","bootstrap css", -"bootstrap less","variables in css","css less","less-plugin-glob","browser-level","classic-level","abstract-level", -"airtap-playwright","@voxpelli/tsconfig","leveldb","napi-macros", -"abstract-leveldown","du","async-each","mkfiletree","readfiletree","prebuildify-ci","prebuildify-cross", -"level-concat-iterator","level-errors","level-supports","queue-microtask","deferred-leveldown","level-iterator-stream", -"memdown","trickle","airtap-sauce","run-parallel","encoding-down","simple-concat","fast-levenshtein","ld","levdist", -"levenshtein","levenshtein-component","levenshtein-edit-distance","talisman","distance","algorithm","comparison","edit", -"matching","binary-extensions","promise-retry","just-safe-set","fund","gitfund","crlf","gmail-send","jest-codemods", -"libphonenumber-metadata-generator","renamer","libphonenumber","fined","flagged-respawn","autolink","hashtag","link", -"mention","consolemock","staged","@samverschueren/stream-to-observable","is-observable","listr-silent-renderer", -"listr-update-renderer","listr-verbose-renderer","@lit-labs/ssr-dom-shim","@lit/reactive-element", -"@lit-internal/scripts","@lit-labs/testing","@webcomponents/template","connect-logger","http-auth","faye-websocket", -"livereload-js", -"resolve-pkg","matchdep","lws-basic-auth","lws-blacklist","lws-body-parser","lws-compress","lws-conditional-get", -"lws-cors","lws-json","lws-log","lws-mime","lws-range","lws-request-monitor","lws-rewrite","lws-spa","lws-static", -"full-stack","babel-preset-es2015-loose","browserify-derequire","grunt-es3-safe-recast","grunt-rollup","grunt-ts", -"rollupify","indexeddb","localstorage","websql","openurl","lockfile-lint-api","prettier-standard","lockfile check", -"lockfile lint","lock","stdlib","lodash-modularized","clonedeep","defaults","isempty","isequal","isfunction", -"isplainobject","isstring","omit","pick","uniq","uni-global","sprintf-kit","event-emitter","ncjsm","tape-index", -"terminal.js","update","refresh","overwrite","bar","date-format","streamroller","@log4js-node/sandboxed-module", -"grunt-contrib-jasmine","grunt-open","grunt-preprocess","math","int64","uid2","isemail", -"canonical-json","loopback-phase","strong-remoting","loopback-filters","strong-globalize","loopback-connector-remote", -"nodemailer-stub-transport","loopback-datasource-juggler","nodemailer-direct-transport","is-docker","loopback-boot", -"karma-es6-shim","loopback-context","strong-task-emitter","strong-error-handler","eslint-config-loopback","sqlserver", -"StrongLoop","mBaaS","steno","express-async-handler","@commitlint/prompt-cli","@typicode/eslint-config","embed", -"embedded","localStorage","sessionStorage","mru","@lucide/build-icons","@lucide/shared","@lucide/rollup-plugins", -"Lucide","HTML","Feather","Icons","Icon","SVG","Feather Icons","Fontawesome","Font Awesome","decree","manipulate","blur", -"sharpen","flip","mirror","hue","saturation","lightness","transparency","fade","opacity","contain","cover", -"@75lb/deep-merge","ansi-escape-sequences","create-mixin","load-module","sleep-anywhere","expand-home-dir", -"hast-util-to-mdast","mdast-util-to-markdown","short-unique-id","y18n", -"@types/columnify","@types/json-diff","@types/make-fetch-happen","@types/which","wizard","task graph", -"string manipulation","@favware/rollup-type-bundler","lavalink client","audio streaming","music bot","voice chat", +"autoprefixer-loader","babel-plugin-transform-es5-property-mutators","vue-html-loader","character-parser", +"constantinople","jstransformer","transformers","with","browserify-middleware","code-mirror","github-basic","handle", +"highlight-codemirror","inconsolata","jade-code-mirror","jade-highlighter","jstransformer-marked","less-file","lsr", +"pull-request","filelist","rake","video-worker","browserslist-config-nk","eslint-config-nk","json-file", +"prettier-config-nk","parallax","vimeo","@jasminejs/reporters","css-url-embed","walkdir","jasmine-growl-reporter", +"cssfontparser","moo-color","babel-plugin-version","@jest/diff-sequences","matchers","extended","@types/jump.js", +"@types/randomcolor","jump.js","randomcolor","libxmljs2","@types/merge-stream","jest-leak-detector","@jimp/core", +"@jimp/diff","@jimp/js-bmp","@jimp/js-gif","@jimp/js-jpeg","@jimp/js-png","@jimp/js-tiff","@jimp/plugin-blit", +"@jimp/plugin-blur","@jimp/plugin-circle", +"@jimp/plugin-color","@jimp/plugin-contain","@jimp/plugin-cover","@jimp/plugin-crop","@jimp/plugin-displace", +"@jimp/plugin-dither","@jimp/plugin-fisheye","@jimp/plugin-flip","@jimp/plugin-hash","@jimp/plugin-mask", +"@jimp/plugin-print","@jimp/plugin-quantize","@jimp/plugin-resize","@jimp/plugin-rotate","@jimp/plugin-threshold", +"@jimp/types","@jimp/utils","@jimp/config-eslint","@jimp/config-typescript","@jimp/config-vitest","@jimp/test-utils", +"node-self","image processing","image manipulation","@babel/helper-simple-access","@types/babel__helper-plugin-utils", +"babel-plugin-parameter-decorator","destr","nano-jsx","wysiwyg editor","wysiwyg html editor","vanillajs","wysisyg", +"temporal","nanotimer","browser-serialport","grunt-jsbeautifier","0A02","0A21","16x2 LCD","20x4 LCD","2D120X","2Y0A02", +"2Y0A21","74HC595","ADXL335","ADXL345","ALS-PT19","ALSPT19","ANALOG","arduino","Ardumoto","AT42QT1070","BLINKM","BMP180", +"Continuous Rotation","DEFAULT","Diffused LED","DS18B20","Edison Arduino Block","Edison GPIO Block","Edison I2C Block", +"Edison PWM Block","edison", +"ESPLORA","EV3","galileo-io","galileo","GP2D120XJ00F","GP2Y0A02YK0F","GP2Y0A21YK","GP2Y0A41SK0F","GY-521","GY521", +"HD44780","High Torque","Hitec HS-35HD","Hitec HS-422","Hitec HS-425BB","Hitec HS-625MG","Hitec HS-646WP", +"Hitec HS-755HB","Hitec HS-805BB","Hitec HS-85MG","HMC5883L","HMC6352","Hobby Motor","HRLV-MaxSonar-EZ0","HT16K33", +"HTU21D","i2c","Infrared Proximity Sensor","Infrared Sensor","intel edison","intel galileo","ISL29125","JHD1313M1", +"LCD1602","LCD2004","LCM1602","LED","LIDAR-Lite v2","Ludus Protoshield Wireless","Ludus Protoshield","LV-MaxSonar-EZ0", +"LV-MaxSonar-EZ3","MCP23008","MCP23017","MCP9808","Metal Gear","MJKDZ","MMA7361","MMA7660","MMA8462Q","MPL115A2", +"MPL3115A2","MPR121","MPR121QR2","MPU-6050","MPU6050","MUXSHIELD2","NXT","OA41SK","PARALLEL","PCA9685","pcduino", +"PCF8574","PCF8574A", +"PCF8574AT","PCF8574T","PCF8575","PCF8591","photon","PIR Motion Sensor","QTOUCH","raspberrypi","raspi-io","RedBoard", +"RGB LED","robot","Servo","Shift Register 8-Bit SN74HC595","Shift Register","SI7020","spark core","spark-io","spark", +"SparkFun Essential Sensor Kit","SparkFun Sensor Kit","Speed controller","Temperature","tessel 2","Thumb Joystick", +"TINKERKIT","TMP36","TSL2561","Ultrasonic Range Finder","VKEY","Weather Shield Arduino","Weather Shield Photon", +"@hapi/address","@hapi/formula","@hapi/pinpoint","@hapi/tlds","recoil","grunt-html","grunt-bowercopy", +"jquery-test-runner","config-chain","beautifier","code-quality","amd","pyyaml","knifecycle","yerror","architecture", +"gitignore-to-glob","@jscpd/badge-reporter","@jscpd/core","@jscpd/finder","@jscpd/tokenizer","@jscpd/html-reporter", +"jscpd-sarif-reporter","jscs-jsdoc","jscs-preset-wikimedia","to-double-quotes","to-single-quotes","vow-fs", +"unicode-7.0.0","unit-coverage","@jsdoc/salty","catharsis", +"js2xmlparser","requizzle","object-to-spawn-args","config-master","@acemir/cssom","@asamuzakjp/dom-selector", +"@bramus/specificity","data-urls","symbol-tree","w3c-xmlserializer","webidl-conversions","whatwg-url","mocha-sugar-free", +"webidl2","webidl2js","browser-request","nwmatcher","unicode-13.0.0","results-interpreter","unicode-5.2.0", +"unicode-11.0.0","deeks","doc-path","to","json2csv","csv2json","csv-2-json","milliparsec","prototyping", +"@types/object-keys","deterministic","circular","unicode-10.0.0","@stryker-mutator/mocha-runner","json-metaschema","jws", +"lodash.once","lodash.includes","lodash.isnumber","lodash.isboolean","lodash.isinteger","@jspm/generator", +"@jspm/plugin-rollup","amaro","states","jszip-utils","package-json-versionify","qjobs","dom-serialize","timer-shim", +"spectacular","execution","os-shim","browser-stack","ibrik","karma-coffee-preprocessor","karma-requirejs","Safari", +"Safari Tech Preview","SafariTechPreview","IE","Chrome","Chrome Canary","Chrome Headless", +"Chromium","Firefox","Opera","edge-launcher","chai-fs","karma-rollup","@types/global-agent","sauce","labs", +"karma-brief-reporter","rollup-sourcemap-path-transform","keyboardevent","keydown","keyup","metakey","keyname", +"@keyv/serialize","@keyv/compress-gzip","@keyv/sqlite","@keyv/test-suite","@keyv/mongo","@keyv/compress-brotli", +"@keyv/compress-lz4","@keyv/memcache","adapter","chai-subset-in-order","@tsconfig/recommended","toxiproxy-node-client", +"cockroachdb","querybuilder","formatly","oxc-resolver","codeclimate-types","dead code","entropy","maintenance","members", +"missing","namespace","unreferenced","unresolved","opera","samsung-internet","uc-browser","stream-counter","delegates", +"http-assert","@types/co-body","@koa/router","@types/koa__router","copy-to","bodyParser","humanize-number", +"passthrough-counter","koa-compress","koa-route","mounting","@ladjs/env","koa-send","sendfile","reds", +"node-redis-warlock","bossy","eslint-config-hapi", +"eslint-plugin-hapi","find-rc","will-call","lab-event-reporter","current","autodoc","deft","jasmine-async","race.js", +"string-table","happen","leafdoc","bundlemon","git-rev-sync","rollup-plugin-git-version", +"@mapbox/eslint-plugin-script-tags","gis","left","repeat","aproba","write-pkg","wide-align","p-waterfall","p-map-series", +"@lerna/create","read-cmd-shim","conventional-changelog-core","@octokit/plugin-enterprise-rest","bootstrap-less-port", +"html-template-tag","phin","read-glob","css nesting","gradients css","less compiler","variables in css","css less", +"less-plugin-glob","browser-level","classic-level","abstract-level","napi-macros","abstract-leveldown","du","mkfiletree", +"readfiletree","prebuildify-ci","prebuildify-cross","level-errors","level-supports","deferred-leveldown", +"level-iterator-stream","memdown","trickle","encoding-down","simple-concat","ld","levdist","levenshtein-component", +"talisman","distance","binary-extensions","just-safe-set","fund", +"gitfund","crlf","gmail-send","jest-codemods","libphonenumber-metadata-generator","renamer","libphonenumber","fined", +"flagged-respawn","hashtag","mention","consolemock","staged","@samverschueren/stream-to-observable","is-observable", +"listr-silent-renderer","listr-update-renderer","listr-verbose-renderer","@lit-labs/ssr-dom-shim", +"@lit/reactive-element","@lit-internal/scripts","@lit-labs/testing","@webcomponents/template","connect-logger", +"http-auth","matchdep","lws-basic-auth","lws-blacklist","lws-body-parser","lws-compress","lws-conditional-get", +"lws-cors","lws-json","lws-log","lws-mime","lws-range","lws-request-monitor","lws-rewrite","lws-spa", +"babel-preset-es2015-loose","browserify-derequire","grunt-es3-safe-recast","rollupify","indexeddb","localstorage", +"websql","openurl","lockfile-lint-api","lockfile check","lockfile lint","clonedeep","isempty","isfunction", +"isplainobject","isstring","pick","uniq","uni-global","sprintf-kit","ncjsm","tape-index","terminal.js","overwrite", +"date-format", +"streamroller","@log4js-node/sandboxed-module","grunt-contrib-jasmine","grunt-preprocess","int64","isemail", +"canonical-json","loopback-phase","loopback-filters","strong-globalize","loopback-connector-remote", +"nodemailer-stub-transport","nodemailer-direct-transport","loopback-boot","karma-es6-shim","loopback-context", +"strong-task-emitter","strong-error-handler","eslint-config-loopback","steno","express-async-handler", +"@typicode/eslint-config","localStorage","sessionStorage","mru","@lucide/build-icons","@lucide/shared", +"@lucide/rollup-plugins","Lucide","HTML","Feather","Icons","Icon","Feather Icons","Fontawesome","Font Awesome","decree", +"manipulate","blur","sharpen","hue","saturation","lightness","transparency","contain","cover","@75lb/deep-merge", +"ansi-escape-sequences","create-mixin","sleep-anywhere","expand-home-dir","hast-util-to-mdast","short-unique-id", +"@types/columnify","@types/json-diff","@types/make-fetch-happen","wizard","task graph","string manipulation", +"@favware/rollup-type-bundler","lavalink client","audio streaming","music bot","voice chat", "discord integration","high performance","easy-to-use","feature-rich","seamless integration","community support", -"open-source","lavalink","path-type","intermediate","recursively","dingbat-to-unicode","lop", -"browserify-prepend-licenses","duck","hamjest","office","word","@nestjs/common","@nestjs/config","@nestjs/core", -"@nestjs/platform-express","@nestjs/swagger","@nestjs/throttler","@nestjs/typeorm","@yarnpkg/lockfile","uniqid", -"@codecov/bundle-analyzer","@nestjs/cli","@nestjs/testing","@testcontainers/mysql","@types/dasherize","crud", -"admin-panel","headless-cms","backend-framework","micro-backend","rapid-development","yaml-config","file-upload", -"api-generator","low-code","no-code","prototype","mvp","startup","baas","@next/eslint-plugin-next","@tabler/icons-react", -"eslint-config-next","postcss-preset-mantine","postcss-simple-vars", -"mantine","context","context-menu","context menu","react server components","user experience","usability","mapbox-gl", -"mapbox","legend","text processing","linkify-it","mdurl","punycode.js","uc.micro","markdown-it-for-inline", -"markdown-it-ins","markdown-it-mark","markdown-it-sub","ndoc","markdown-it-plugin","anchor","emoji","emojies","emoticon", -"emoticons","stream-from-to","pdf-text","rows","bunup","theredoc","markdown parser","solidjs","diacritics-map", -"lazy-cache","list-item","markdown-link","mixin-deep","repeat-string","document","glossary","heading","links", -"remarkableplugin","table of contents","table-of-contents","toc","micromark-core-commonmark", -"micromark-extension-directive","micromark-extension-gfm-autolink-literal","micromark-extension-gfm-footnote", -"micromark-extension-gfm-table","micromark-extension-math","micromark-util-types","gemoji", -"markdownlint-rule-extended-ascii","CommonMark","jsonpointer","run-con","@markedjs/eslint-config","@markedjs/testutils", -"esbuild-plugin-umd-wrapper","marked-highlight","marked-man", -"recheck","markup","v8-argv","inline-style-prefixer","react-event-listener","simple-assign","complex.js","escape-latex", -"javascript-natural-sort","typed-function","eigen","expr-eval","jsep","ndarray","ndarray-determinant","ndarray-gemm", -"ndarray-ops","ndarray-pack","numericjs","sylvester","zeros","mathematics","numeric","algebra","complex","fraction", -"charenc","md5sum","checksum","decode-named-character-reference","micromark-util-decode-numeric-character-reference", -"micromark-util-decode-string","micromark-util-normalize-identifier","micromark-util-symbol", -"unist-util-stringify-position","commonmark.json","micromark-build","mdast-util","mdast","tree", -"micromark-util-sanitize-uri","trim-lines","mdast-util-gfm","micromark-extension-gfm","mdn","mozilla","hashring", -"jackpot","InnoDB memcached API","failover","hashing","membase","memcache","nMemcached","@jsonjoy.com/fs-core", -"@jsonjoy.com/fs-fsa","@jsonjoy.com/fs-node","@jsonjoy.com/fs-node-builtins","@jsonjoy.com/fs-node-to-fsa", -"@jsonjoy.com/fs-node-utils","@jsonjoy.com/fs-print","@jsonjoy.com/fs-snapshot","@jsonjoy.com/json-pack", -"@jsonjoy.com/util", -"glob-to-regex.js","thingies","tree-dump","isomorphic-git","tslint-config-common","fs.js","in-memory","fsa", -"file system access","native file system","webfs","crudfs","opfs","casfs","content addressable storage", -"@types/lodash.isequal","fast-memoize","mem","nanocolors","memoization","gulp-exit","ram","errno","camelcase-keys", -"decamelize-keys","delete_comments","minimist-options","trim-newlines","cat","kitten","from2","lodash.clonedeepwith", -"stat-mode","ware","@metalsmith/drafts","assert-dir-equal","7zip-bin","node-7z","node-downloader-helper", -"@babel/plugin-syntax-import-meta","@surma/rollup-plugin-off-main-thread","asyncro", -"babel-plugin-transform-async-to-promises","babel-plugin-transform-replace-expressions","tiny-glob", +"lavalink","path-type","intermediate","recursively","dingbat-to-unicode","lop","browserify-prepend-licenses","duck", +"hamjest","@nestjs/config","@nestjs/platform-express","@nestjs/throttler","uniqid","@nestjs/cli","@testcontainers/mysql", +"@types/dasherize","admin-panel","headless-cms","backend-framework","micro-backend","rapid-development","file-upload", +"api-generator","low-code","no-code","mvp","@tabler/icons-react","postcss-preset-mantine","mantine","context-menu", +"context menu","react server components","user experience","usability","mapbox-gl","mapbox","legend","text processing", +"linkify-it","mdurl","punycode.js","uc.micro","markdown-it-ins","markdown-it-mark","emojies","stream-from-to","pdf-text", +"bunup","markdown parser","solidjs","diacritics-map","lazy-cache","list-item","markdown-link","mixin-deep","glossary", +"remarkableplugin","table of contents", +"table-of-contents","toc","micromark-extension-directive","micromark-extension-gfm-autolink-literal", +"micromark-extension-gfm-footnote","micromark-extension-gfm-table","micromark-extension-math","gemoji", +"markdownlint-rule-extended-ascii","CommonMark","run-con","@markedjs/eslint-config","@markedjs/testutils", +"marked-highlight","marked-man","v8-argv","react-event-listener","simple-assign","complex.js","escape-latex", +"javascript-natural-sort","typed-function","eigen","expr-eval","jsep","ndarray-determinant","ndarray-gemm","ndarray-ops", +"ndarray-pack","numericjs","zeros","mathematics","algebra","complex","fraction","md5sum","micromark-util-decode-string", +"unist-util-stringify-position","micromark-build","trim-lines","mdn","jackpot","InnoDB memcached API","failover", +"membase","memcache","nMemcached","@jsonjoy.com/fs-core","@jsonjoy.com/fs-fsa","@jsonjoy.com/fs-node", +"@jsonjoy.com/fs-node-builtins","@jsonjoy.com/fs-node-to-fsa","@jsonjoy.com/fs-node-utils","@jsonjoy.com/fs-print", +"@jsonjoy.com/fs-snapshot","@jsonjoy.com/json-pack","@jsonjoy.com/util","glob-to-regex.js","thingies","tree-dump", +"isomorphic-git","tslint-config-common","fs.js","file system access", +"native file system","webfs","crudfs","opfs","casfs","content addressable storage","@types/lodash.isequal","mem", +"memoization","gulp-exit","ram","errno","camelcase-keys","decamelize-keys","delete_comments","minimist-options", +"trim-newlines","cat","kitten","from2","lodash.clonedeepwith","stat-mode","ware","@metalsmith/drafts","assert-dir-equal", +"7zip-bin","node-7z","node-downloader-helper","@surma/rollup-plugin-off-main-thread","asyncro", +"babel-plugin-transform-async-to-promises","babel-plugin-transform-replace-expressions", "@babel/plugin-proposal-throw-expressions","directory-tree","eslint-config-developit","npm-merge-driver-install", "micro library","micromark-factory-space","micromark-util-chunked","micromark-util-combine-extensions", -"micromark-util-resolve-all","micromark-util-subtokenize","fill-range","bracket","character-class","expansion", -"extglobs","lookahead","lookaround","lookbehind","negate", -"negation","posix","star","@types/mime-db","mime-score","release-please","runmd","mime-db","mimetypes","Min Heap", -"min heap","maxheap","min-heap","heap","Binary Heap","binary-heap","heap data structure","min heap data structure", -"complete binary tree","heapify","heap sort","heapify up","heapify down","Priority Queue","priority queue", -"priorityqueue","priority-queue","priority q","priorityQ","efficient","priority","complete binary","extract min", -"min priority queue","efficient priority","ordering property","dynamic resizing","priority-based", -"priority-based processing","element priority","queue priority","sorted","decrease key","increase key","searching", +"micromark-util-resolve-all","micromark-util-subtokenize","bracket","character-class","extglobs","lookahead", +"lookaround","lookbehind","negate","negation","posix","star","mime-score","mimetypes","Min Heap","maxheap","min-heap", +"Binary Heap","binary-heap","heap data structure","min heap data structure","complete binary tree","heapify","heap sort", +"heapify up","heapify down","Priority Queue","priority queue","priority-queue","priority q","priorityQ", +"complete binary","extract min","min priority queue","efficient priority","ordering property","dynamic resizing", +"priority-based","priority-based processing","element priority","queue priority","decrease key","increase key", "@putout/minify","css-b64-images","html-minifier-next","montag","readjson","try-catch","try-to-catch","escover", -"eslint-plugin-putout","madrun","supertape","brace-expansion","signed","certificate","cert","@types/brace-expansion", -"make dir","dir","ufo", -"conditional-type-checks","mobservable","reactive","frp","functional-reactive-programming","state management", -"data flow","mobx-react-lite","expose-gc","browser-stdout","yargs-unparser","uslug","pidtree","rewiremock","unexpected", -"@mocha/docdash","jsdoc-ts-utils","unexpected-map","unexpected-set","unexpected-sinon","remark-inline-links", -"unexpected-eventemitter","fail-on-errors-webpack-plugin","@11ty/eleventy-plugin-inclusive-language","headless-chrome", -"chai-xml","test-console","xmllint","junit","lcov","define-data-property","gopd","has-property-descriptors", -"@types/es-value-fixtures","@types/for-each","@types/functions-have-names","@types/get-intrinsic","@types/gopd", -"@types/has-property-descriptors","@types/object-inspect","descriptor","define","swap","unix-dgram","unittest", -"gulp-coveralls","gulp-mocha-phantomjs","mockJSON","mockAjax","ipaddr.js","recursive-watch","fastest-validator","avsc", -"nats","etcd3","cbor-x","thrift","redlock","dd-trace","gc-stats","msgpack5","fakerator","kafka-node","v8-natives", -"@types/pino","notepack.io","benchmarkify","rhea-promise","@types/bunyan","jaeger-client","@types/ioredis", -"moleculer-repl","winston-context","event-loop-stats","node-nats-streaming","@icebob/node-memwatch","microservice", -"messagebus","services","micro","distributed","ender","timezone","olson","iana","zone","tz", +"eslint-plugin-putout","madrun","supertape","signed","certificate","cert","@types/brace-expansion","frp", +"functional-reactive-programming","state management","data flow","browser-stdout","yargs-unparser","uslug","rewiremock", +"unexpected","@mocha/docdash","jsdoc-ts-utils","unexpected-map","unexpected-set","unexpected-sinon", +"remark-inline-links","unexpected-eventemitter","fail-on-errors-webpack-plugin", +"@11ty/eleventy-plugin-inclusive-language","chai-xml","xmllint","lcov","define-data-property","@types/es-value-fixtures", +"@types/for-each","@types/functions-have-names","@types/get-intrinsic","@types/gopd","@types/has-property-descriptors", +"@types/object-inspect","swap", +"unix-dgram","gulp-mocha-phantomjs","mockJSON","mockAjax","recursive-watch","fastest-validator","avsc","nats","etcd3", +"cbor-x","thrift","redlock","dd-trace","gc-stats","msgpack5","fakerator","kafka-node","@types/pino","notepack.io", +"benchmarkify","rhea-promise","@types/bunyan","jaeger-client","@types/ioredis","moleculer-repl","winston-context", +"event-loop-stats","node-nats-streaming","@icebob/node-memwatch","messagebus","olson","iana","zone", "monaco-languageserver-types","monaco-marker-data-provider","monaco-types","monaco-worker-manager", -"vscode-languageserver-textdocument","vscode-languageserver-types","vscode-uri","@remcohaszing/eslint", -"remark-preset-remcohaszing","yaml-language-server","monaco","monads","either","maybe","result", -"@codemirror/lang-javascript","@codemirror/theme-one-dark","@json2csv/plainjs","@lezer/highlight","basic-auth-connect", -"bootstrap-paginator-2","free-swig","gridfs-stream","mongodb-query-parser","renderjson-2","@cypress/code-coverage", -"assets-webpack-plugin","express-openid-connect","mongodb-memory-server","administration","GUI","manage","manage-mongo", -"phpmyadmin","UI","web-based","@mongodb-js/saslprep","mongodb-connection-string-url","aws4","socks","snappy", -"mocha-sinon","gcp-metadata","@types/kerberos","@types/saslprep","v8-heapsnapshot","@mongodb-js/zstd", -"@types/whatwg-url","@types/chai-subset","mongodb-client-encryption","@aws-sdk/credential-providers","kareem","mpath", -"mquery","sift","@ark/attest","@mongodb-js/mongodb-downloader","acquit","acquit-ignore","acquit-require", -"lodash.isequalwith","mongodb-runner","odm","datastore","backbone-callbacks","node-monitor","remote control","probe", -"JMX","core-monitor","dashboard","monitoring","control panel","@types/mongodb","monk-middleware-cast-ids", -"monk-middleware-fields","monk-middleware-handle-callback","monk-middleware-options","monk-middleware-query", -"monk-middleware-wait-for-connection","gitbook-cli","gitbook-plugin-anker-enable","gitbook-plugin-custom-favicon", -"gitbook-plugin-edit-link","gitbook-plugin-github","gitbook-plugin-prism","monk-middleware-debug","commist","help-me", -"mqtt-packet","worker-timers","number-allocator","aedes-cli","leaked-handles","mqtt-connection","@esm-bundle/chai", -"mqtt-level-store","esbuild-plugin-polyfill-node","publish/subscribe","@tediousjs/connection-string","msnodesql","tds", -"node-tds","node-sqlserver","msnodesqlv8", -"node-mssql","@types/statuses","headers-polyfill","rettime","until-async","@epic-web/test-server","@fastify/websocket", -"@types/json-bigint","@types/serviceworker","json-bigint","page-with","append-field","fs-temp","testdata-w3c-json-form", -"formdata","array-union","pend","release-it-pnpm","test report","html report","json to html","karma-story-reporter", -"mezr","web-animations-js","bin-packing","sqlstring","timezone-mock","urun","utest","sql-escaper","aws-ssl-profiles", -"generate-function","named-placeholders","poku","assert-diff","eslint-plugin-async-await","thenify","then","bats", -"switcher","couchdb","fastest-stable-stringify","rtl-css-js","iconista","libreact","pico","lite","in-js","styled", -"decorator","jsxstyle","rule","gitcloud","hasbin","page-icon","@types/hasbin","@types/page-icon","desktop","proxy-lib", -"font-finder","pbxproj-dom","@foxt/js-srp","simple-plist","ios-device-lib", -"email-validator","ios-sim-portable","plist-merge-patch","@nativescript/hook","@nativescript/doctor", -"nativescript-dev-xcode","ios-mobileprovision-finder","@nstudio/trapezedev-project","@rigor789/resolve-package-path", -"@types/plist","@types/retry","@types/byline","@types/pacote","@types/tabtab","@types/tunnel","@types/xml2js", -"@types/archiver","@types/qr-image","@types/marked-terminal","@types/proper-lockfile","@types/npmcli__arborist", -"@types/universal-analytics","afinn-165","afinn-165-financialmarketnews","apparatus","memjs","stopwords-iso", -"wordnet-db","browserfs","gulp-jasmine-browser","pegjs","uubench","natural language processing","artifical intelligence", -"Porter stemmer","Lancaster stemmer","bigram","trigram","quadgram","ngram","stemmer","bayes","classifier","phonetic", -"metaphone","inflector","Wordnet","tf-idf","logistic regression","doublemetaphone","double","jaro-winkler distance", -"levenshtein distance","string distance","part-of-speech tagger","Eric Brill","Brill tagger","sentiment analysis", -"maximum entropy modelling","secure-keys","nconf-yaml","key value store","plugabble","near social", -"bridge","near","binary-search-tree","exec-time","@fig/complete-commander","@golevelup/nestjs-discovery","nest", -"@postman/tough-cookie","chardet","liquid-json","postman-collection","postman-collection-transformer","postman-request", -"postman-runtime","serialised-error","@postman/shipit","dockerfile_lint","parse-gitignore","postman","rest-client", -"@apm-js-collab/tracing-hooks","@newrelic/security-agent","@tyriar/fibonacci-heap","import-in-the-middle", -"module-details-from-path","require-in-the-middle","@aws-sdk/s3-request-presigner","@matteo.collina/tspl", -"@newrelic/eslint-config","@newrelic/newrelic-oss-cli","@newrelic/test-utilities","@slack/bolt", -"@smithy/eventstream-codec","@smithy/util-utf8","git-raw-commits","self-cert","debugging","profiling","@panva/hkdf", -"openid-client","@edge-runtime/jest-environment","@types/nodemailer","@types/oauth","babel-plugin-jsx-pragmatic", -"babel-preset-preact","oauth2","nextauth","async handler","async functions","pipe","provider","TestBed","how-to", -"@ant-design/icons-angular","localhost","tunneling","webhook","deep-defaults","enqueue","function-source","minstache", -"sliced","mocha-generators","@nightwatch/chai", -"@nightwatch/html-reporter-template","@nightwatch/nightwatch-inspector","@types/selenium-webdriver","chai-nightwatch", -"devtools-protocol","didyoumean","nightwatch-axe-verbose","stacktrace-parser","mochawesome-merge", -"mochawesome-report-generator","nightwatchjs","selenium","webdriver","automated-testing","@sinonjs/text-encoding", -"@sinonjs/referee","jsdom-global","mochify","proxyquire-universal","proxyquireify","propagate","clang-format","n-api", -"napi","coffee-coverage","grunt-contrib-coffee","grunt-include-replace","internal","check-version-modules", -"used-deps-analyzer","container","skeleton","formate","dynamic-dedupe","filewatcher","tap-xunit","reload","subdir", -"char-regex","emojilib","skin-tone","sentences-per-line","emojis","smiley","smileys","smilies","ideogram","ideograms", -"fetch-blob","chai-iterator","stream-consumers","eslint-config-digitalbazaar","karma-tap-reporter","nodejs-websocket", -"worker-loader","aes","asn","asn.1","cbc","csr","des","gcm","hmac","pkcs", -"pki","prng","rc2","rsa","sha256","sha384","sha512","tls","x.509","x509","c2dm","fcm","messaging","geocoder","geocoding", -"geo","maps","mapquest","agol","arcgis","tomtom","exponential-backoff","require-inject","high5","html-parser", -"html5parser","htmljs-parser","htmlparser-benchmark","mocha-each","neutron-html5parser","biased-opener", -"strong-data-uri","v8-debug","v8-profiler","http mock","growly","shellwords","nexe","notification center", -"mac os x 10.8","terminal-notifier","windows 8 notification","toaster","ps-list","pty","pseudoterminal","forkpty", -"openpty","@node-red/editor-api","@node-red/runtime","@node-red/util","@node-red/nodes","node-red-admin","iot", +"vscode-languageserver-textdocument","@remcohaszing/eslint","yaml-language-server","monaco","monads","either","maybe", +"result","@codemirror/theme-one-dark","@json2csv/plainjs","@lezer/highlight","bootstrap-paginator-2","free-swig", +"gridfs-stream","mongodb-query-parser","renderjson-2","assets-webpack-plugin","express-openid-connect","administration", +"manage","manage-mongo","phpmyadmin","web-based","@mongodb-js/saslprep","mongodb-connection-string-url","snappy", +"mocha-sinon", +"gcp-metadata","@types/kerberos","@types/saslprep","v8-heapsnapshot","@mongodb-js/zstd","@types/whatwg-url", +"@types/chai-subset","kareem","mpath","mquery","sift","@ark/attest","@mongodb-js/mongodb-downloader","acquit", +"acquit-ignore","acquit-require","lodash.isequalwith","probe","JMX","core-monitor","control panel", +"monk-middleware-cast-ids","monk-middleware-fields","monk-middleware-handle-callback","monk-middleware-options", +"monk-middleware-query","monk-middleware-wait-for-connection","gitbook-cli","gitbook-plugin-anker-enable", +"gitbook-plugin-custom-favicon","gitbook-plugin-edit-link","gitbook-plugin-github","gitbook-plugin-prism", +"monk-middleware-debug","commist","help-me","mqtt-packet","worker-timers","number-allocator","aedes-cli", +"leaked-handles","mqtt-connection","mqtt-level-store","esbuild-plugin-polyfill-node","publish/subscribe", +"@tediousjs/connection-string","msnodesql","tds","node-tds","node-sqlserver","msnodesqlv8","node-mssql", +"@types/statuses","headers-polyfill","rettime","until-async","@epic-web/test-server","@types/json-bigint", +"@types/serviceworker","page-with","append-field","fs-temp","testdata-w3c-json-form","formdata", +"array-union","release-it-pnpm","test report","html report","json to html","mezr","web-animations-js","bin-packing", +"sqlstring","urun","utest","sql-escaper","aws-ssl-profiles","generate-function","named-placeholders","poku", +"assert-diff","eslint-plugin-async-await","bats","switcher","fastest-stable-stringify","rtl-css-js","iconista", +"libreact","pico","lite","in-js","styled","jsxstyle","gitcloud","hasbin","page-icon","@types/hasbin","@types/page-icon", +"proxy-lib","font-finder","pbxproj-dom","@foxt/js-srp","simple-plist","ios-device-lib","ios-sim-portable", +"plist-merge-patch","@nativescript/hook","@nativescript/doctor","nativescript-dev-xcode","ios-mobileprovision-finder", +"@nstudio/trapezedev-project","@rigor789/resolve-package-path","@types/retry","@types/pacote","@types/tabtab", +"@types/tunnel","@types/qr-image","@types/universal-analytics","afinn-165","afinn-165-financialmarketnews","apparatus", +"memjs","stopwords-iso","wordnet-db","browserfs","gulp-jasmine-browser","uubench","natural language processing", +"artifical intelligence","Porter stemmer","Lancaster stemmer","bigram","trigram","quadgram","ngram","stemmer","bayes", +"classifier","phonetic","metaphone","inflector","Wordnet","tf-idf","logistic regression","doublemetaphone", +"jaro-winkler distance","levenshtein distance","string distance","part-of-speech tagger","Eric Brill","Brill tagger", +"maximum entropy modelling","secure-keys","nconf-yaml","key value store","plugabble","near social","bridge","near", +"binary-search-tree","exec-time","@fig/complete-commander","@golevelup/nestjs-discovery","@postman/tough-cookie", +"chardet","liquid-json","postman-collection","postman-collection-transformer","postman-request","postman-runtime", +"serialised-error","@postman/shipit","dockerfile_lint","parse-gitignore","rest-client","@apm-js-collab/tracing-hooks", +"@newrelic/security-agent","@tyriar/fibonacci-heap","module-details-from-path","@newrelic/eslint-config", +"@newrelic/newrelic-oss-cli","@newrelic/test-utilities","@slack/bolt","@smithy/eventstream-codec","@smithy/util-utf8", +"self-cert","@panva/hkdf","openid-client","@types/oauth","babel-plugin-jsx-pragmatic","babel-preset-preact","nextauth", +"async handler","async functions","provider","TestBed","how-to","@ant-design/icons-angular","localhost","tunneling", +"webhook","deep-defaults","function-source","minstache","sliced","mocha-generators","@nightwatch/chai", +"@nightwatch/html-reporter-template","@nightwatch/nightwatch-inspector","chai-nightwatch","didyoumean", +"nightwatch-axe-verbose","mochawesome-merge","mochawesome-report-generator","nightwatchjs","automated-testing", +"@sinonjs/text-encoding","proxyquire-universal","proxyquireify","propagate","n-api","napi","coffee-coverage", +"grunt-contrib-coffee","grunt-include-replace","check-version-modules","used-deps-analyzer","formate","dynamic-dedupe", +"filewatcher","subdir","char-regex","emojilib","skin-tone","sentences-per-line","emojis","smiley","smileys","smilies", +"ideogram","ideograms","fetch-blob","chai-iterator","stream-consumers","eslint-config-digitalbazaar","nodejs-websocket", +"asn","asn.1","cbc","csr","des","hmac","pkcs","pki","prng","rc2", +"rsa","sha384","tls","x.509","x509","c2dm","fcm","geocoder","geocoding","geo","mapquest","agol","arcgis","tomtom", +"exponential-backoff","high5","html-parser","html5parser","htmljs-parser","htmlparser-benchmark","mocha-each", +"neutron-html5parser","strong-data-uri","v8-debug","v8-profiler","http mock","growly","shellwords","nexe", +"notification center","mac os x 10.8","terminal-notifier","windows 8 notification","toaster","ps-list","pseudoterminal", +"forkpty","openpty","@node-red/editor-api","@node-red/runtime","@node-red/util","@node-red/nodes","node-red-admin", "sass-graph","async-foreach","stdout-stream","true-case-path","unique-temp-dir","long-timeout","sorted-array-functions", -"recurrent","rfc4122","fs.watch", -"watchfile","ngn","daemon","event logging","elevate","sudo","@mgcrea/eslint-config-node","@tsconfig/node-lts","excel", -"xls","jQuery","jQuery extend","inherit","combyne","clean-for-publish","libgit2","git2","@aws-sdk/client-sesv2", -"libbase64","libmime","libqp","nodemailer-ntlm-auth","proxy-test-server","Nodemailer","pstree.remy","undefsafe", -"autoload","multimeter","node-webkit","webkit","async-redis","express-ipfilter","express-ws","json-logic-js","json-sql", -"jsonpath-plus","line-reader","mocker-data-generator","node-ipc","promise-mysql","stjs","uuid-random","nolang", -"Programming","programming language","descriptive","5GL","json schema","Mehdi Salartayefeh","option parser","absolute", -"backslash","delimiter","file-path","forward","fp","slashes","trailing","unix","urix","normalization","normalisation", -"simplify","trim", -"canonical","mouse wheel","exit-hook","github-url-from-git","is-interactive","is-scoped","issue-regex","listr-input", -"new-github-release-url","npm-name","p-memoize","map-obj","write-package","archy","is-cidr","libnpmorg","libnpmpack", -"libnpmteam","fs-minipass","npm-profile","libnpmsearch","@sigstore/tuf","libnpmversion","@npmcli/config", -"npm-audit-report","minipass-pipeline","npm-user-validate","tiny-relative-date","fastest-levenshtein", -"json-parse-even-better-errors","@npmcli/git","@npmcli/docs","@tufjs/repo-mock","@npmcli/mock-globals", -"ajv-formats-draft2019","package manager","giturl","throat","semver-diff","preferred-pm","callsite-record", -"rc-config-loader","outdated","updates","updating","updater","@trivago/prettier-plugin-sort-imports", -"@types/chai-string","@types/cli-table","@types/ini","@types/jsonlines","@types/npm-registry-fetch", -"@types/parse-github-url","@types/semver-utils","@types/update-notifier","eslint-config-raine","fp-and-or","jsonlines", -"prompts-ncu","semver-utils","typescript-json-schema","verdaccio","vite-bundle-analyzer","vite-node", -"upgrade","versions","esbuild-node-externals","eslint-config-tc","eslint-config-typescript-tc", -"npm-package-json-lint-config-tc","auditor","mutate-fs","minipass-fetch","minizlib","registry","string.prototype.padend", -"eslint-config-mysticatea","commandline","npm-scripts","run","read-package-json-fast","script","string convert", -"yarn to npm","npm upgrade","babel-preset-latest","npm-cli","are-we-there-yet","mocha-jsdom","cvss", -"nodesecurity-npm-utils","gluegun","nuke","money","percentage","a-sync-waterfall","asap","mocha-phantomjs-core", -"mocha-phantomjs-istanbul","module-alias","node-libs-browser","css4","node-machine-id","resolve.exports", -"@yarnpkg/parsers","lines-and-columns","@napi-rs/wasm-runtime","Mobile","caching-transform","istanbul-lib-hook", -"istanbul-lib-processinfo","node-preload","process-on-spawn","spawn-wrap","any-path","@readme/openapi-parser", -"remove-undefined-objects","@readme/oas-examples","@types/json-schema-merge-allof","@types/memoizee","apis", -"openapi initiative","openapi specification","openapi spec","openapi document","oai","@readme/postman-to-openapi", -"@types/swagger2openapi", -"prollyfill","gulp-exec","@pkgjs/support","error-cause","globalthis","has-tostringtag","util.inspect","indexof", -"Object.keys","@mariocasciaro/benchpress","access","bean","notation","segment","es-object-atoms","Object.assign", -"$.extend","_.extend","Underscore","Object.entries","Object.values","entries","ES8","ee-first","wrappy", -"@blakeembrey/deque","@blakeembrey/template","epoll","@types/mock-require","gpio","interrupt","raspberry","raspi","pi", -"beaglebone","beaglebone-black","default-browser","define-lazy-prop","is-in-ssh","wsl-utils","opens","launch","start", -"xdg-open","xdg","default","urls","bath-es5","dereference-json-schema","axios-mock-adapter","json-schema-deref-sync", -"open api","computer","quadrocopter","countrynames","hashish","last-call-webpack-plugin","prelude-ls","deep-is","levn", -"livescript","option parsing","stdin-discarder","transform-tty", -"sequencify","stream-consume","sql-ddl-sync","sql-query","redshift","home","tmpdir","ps1","template string", -"template literal","styleable","scrollbar","scrollbars","scroll","@vscode/vsce","yauzl-promise","@types/is-ci", -"@types/yauzl-promise","limiter","vscode","addlistener","addeventlistener","waits","resolved","race","fulfilled", -"concurrency","ratelimit","fifo","invalidate","out","plunder","metadata","@pa11y/html_codesniffer","eslint-config-pa11y", -"proclaim","aria","compliance","headless","htmlcs","standards","WCAG","sigstore","npm-registry-mock","capture-website", -"filenamify-url","unused-filename","@types/png.js","png.js","page","screenshots","screengrab","striptags","para", -"server-side","idb-keyval","react-native-crypto-js","@saithodev/semantic-release-backmerge","@types/facebook-js-sdk", -"babel-plugin-transform-inline-environment-variables","jasmine-spec-reporter","jsdoc-babel","parse-server", -"vite-plugin-commonjs", -"WHATWG","html parser","html5 parser","html serializer","htmlserializer","fast-url-parser","pause", -"chai-connect-middleware","username","passport-oauth1","base64url","exist","isabsolute","is-absolute","zeptomatch", -"@rkusa/linebreak","opentype.js","jpeg-exif","linebreak","png-js","blob-stream","brace","pdfjs-dist","pdf writer", -"pdf generator","call-delayed","chai-increasing","pg-pool","pg-protocol","pg-types","pgpass","pg-cloudflare", -"@cloudflare/vitest-pool-workers","@cloudflare/workers-types","pg-copy-streams","libpq","postgre","rdbms", -"flow-copy-source","npm-watch","connect-phonegap","phonegap-build","phonegap build","phonegap/build","pinkie-promise", -"denodify","atomic-sleep","on-exit-leak-free","pino-abstract-transport","pino-std-serializers","quick-format-unescaped", -"real-require","@pinojs/redact","sonic-boom","thread-stream","@types/flush-write-stream","bole","fastbench", -"flush-write-stream","midnight-smoker","pino-pretty","steed","postinstall","lifecycle", -"devpostinstall","entry","irregular-plurals","plurals","count","irregular","noun","nouns","@pm2/agent","@pm2/js-api", -"@pm2/io","@pm2/pm2-version-check","@pm2/blessed","cli-tableau","fclone","pidusage","pm2-axon","pm2-axon-rpc", -"pm2-deploy","pm2-multimeter","vizion","logs","kraken","load balancer","lb","load-balancer","kubernetes","k8s", -"pm2-docker","runtime","graceful","node-pm2","production","keymetrics","node.js monitoring","strong-pm","supervisord", -"pm2.io","ghost production","process manager","probes","keep process alive","process configuration","clustering", -"cluster cli","dev ops","tap-dot","PNG","js-png","node-png","png-parse","pnpm10","dependency manager","hardlinks", -"prune","rapid","symlinks","uninstall","poe","economy","ninja","poe.ninja","poe economy","path of exile", -"path of exile economy","path of exile ninja","poe economy api","path of exile api","poe.watch api","poe.ninja api", -"babel-plugin-preval","pushstate-server","tsgen","glamor","inline-styles","color manipulate","color manipulation", -"curried color manipulation","@popperjs/bundle","@popperjs/eslint-config-popper","@popperjs/test","@popperjs/test-utils", -"nuget-publish","popperjs","position","attached","ports","source map","manipulation","jison-gho","calculation","calc", -"postcss-reporter","read-cache","eslint-config-problems","@csstools/utilities","comma","hsl","hsla","hwb","rgba", -"caniuse-api","@types/caniuse-api","pixrem","pleeease-filters","postcss-apply","postcss-attribute-case-insensitive", -"postcss-color-function","postcss-color-gray","postcss-color-hex-alpha","postcss-color-hsl","postcss-color-hwb", -"postcss-color-rebeccapurple","postcss-color-rgb","postcss-color-rgba-fallback","postcss-font-family-system-ui", -"postcss-font-variant","postcss-image-set-polyfill","postcss-initial","postcss-media-minmax", -"postcss-pseudo-class-any-link","postcss-pseudoelements","postcss-replace-overflow-wrap","postcss-selector-matches", -"postcss-selector-not","cssrecipes-custom-media-queries","cssrecipes-defaults","cssrecipes-grid", -"cssrecipes-utils","cssrecipes-vertical-rhythm","eslint-config-i-am-meticulous","isogram","markdown-it-toc-and-anchor", -"metalsmith-collections","metalsmith-filenames","metalsmith-md","metalsmith-react","metalsmith-rename","metalsmith-rss", -"metalsmith-url","metalsmith-watch","nano-logger","npmpub","postcss-browser-reporter","react-svg-inline","to-slug-case", -"webpack-nano-logs","cssnext","@csstools/cascade-layer-name-parser","at-rule","atrule","csswg","media","queries", -"declarative","selectors","empty","at-rules","@keyframes","@counter-style","flexbugs","flex","postcss-less", -"postcss-styl","quickapp","PHP","sss","image-set","node modules","postcssrc","postcss.config.js","midas","postcss-short", -"postcss-dark-theme-class","cssnano-utils","font-family","font-weight","@types/cssesc","css-modules", -"@csstools/selector-resolve-nested","atrules","children","nestings","@csstools/normalize.css","postcss-browser-comments", +"recurrent","fs.watch","watchfile","ngn","event logging","elevate","sudo","@mgcrea/eslint-config-node", +"@tsconfig/node-lts","jQuery extend","inherit","combyne","clean-for-publish","libgit2", +"git2","@aws-sdk/client-sesv2","libbase64","libmime","libqp","nodemailer-ntlm-auth","proxy-test-server","Nodemailer", +"pstree.remy","undefsafe","autoload","multimeter","node-webkit","async-redis","express-ipfilter","json-logic-js", +"json-sql","line-reader","mocker-data-generator","node-ipc","promise-mysql","stjs","uuid-random","nolang","Programming", +"programming language","descriptive","5GL","json schema","Mehdi Salartayefeh","option parser","delimiter","file-path", +"forward","slashes","trailing","urix","normalisation","simplify","canonical","mouse wheel","exit-hook", +"github-url-from-git","is-scoped","issue-regex","listr-input","npm-name","p-memoize","map-obj","write-package","is-cidr", +"libnpmorg","libnpmpack","libnpmteam","npm-profile","libnpmsearch","@sigstore/tuf","libnpmversion","npm-audit-report", +"minipass-pipeline","npm-user-validate","tiny-relative-date","@npmcli/docs","@tufjs/repo-mock", +"@npmcli/mock-globals","ajv-formats-draft2019","giturl","semver-diff","preferred-pm","callsite-record","outdated", +"updates","updating","@trivago/prettier-plugin-sort-imports","@types/chai-string","@types/cli-table","@types/jsonlines", +"@types/npm-registry-fetch","@types/parse-github-url","@types/semver-utils","eslint-config-raine","fp-and-or", +"prompts-ncu","semver-utils","verdaccio","vite-node","upgrade","eslint-config-tc","eslint-config-typescript-tc", +"npm-package-json-lint-config-tc","auditor","minipass-fetch","string.prototype.padend","eslint-config-mysticatea", +"commandline","npm-scripts","read-package-json-fast","string convert","yarn to npm","npm upgrade","npm-cli", +"are-we-there-yet","mocha-jsdom","cvss","nodesecurity-npm-utils","gluegun","nuke","money","percentage", +"a-sync-waterfall","mocha-phantomjs-core","mocha-phantomjs-istanbul","css4","lines-and-columns","caching-transform", +"istanbul-lib-hook","istanbul-lib-processinfo","node-preload","process-on-spawn","spawn-wrap","any-path", +"remove-undefined-objects","@types/json-schema-merge-allof","@types/memoizee","@readme/postman-to-openapi", +"@types/swagger2openapi","prollyfill","@pkgjs/support", +"error-cause","has-tostringtag","indexof","@mariocasciaro/benchpress","bean","segment","Underscore","Object.entries", +"ee-first","@blakeembrey/deque","@blakeembrey/template","epoll","@types/mock-require","gpio","interrupt","raspberry", +"raspi","pi","beaglebone","beaglebone-black","default-browser","is-in-ssh","wsl-utils","bath-es5", +"dereference-json-schema","axios-mock-adapter","json-schema-deref-sync","open api","computer","quadrocopter", +"countrynames","last-call-webpack-plugin","prelude-ls","deep-is","levn","option parsing","stdin-discarder", +"transform-tty","sequencify","stream-consume","sql-ddl-sync","sql-query","redshift","ps1","template string", +"template literal","styleable","scrollbars","@vscode/vsce","@types/is-ci","limiter","addlistener","addeventlistener", +"waits","resolved","race","fulfilled","invalidate","out","plunder","@pa11y/html_codesniffer","eslint-config-pa11y", +"htmlcs","standards", +"WCAG","sigstore","npm-registry-mock","capture-website","filenamify-url","unused-filename","@types/png.js","png.js", +"striptags","react-native-crypto-js","@saithodev/semantic-release-backmerge","@types/facebook-js-sdk", +"jasmine-spec-reporter","jsdoc-babel","parse-server","vite-plugin-commonjs","WHATWG","html parser","html5 parser", +"html serializer","htmlserializer","fast-url-parser","pause","chai-connect-middleware","username","passport-oauth1", +"base64url","isabsolute","is-absolute","@rkusa/linebreak","opentype.js","jpeg-exif","linebreak","blob-stream","brace", +"pdf writer","pdf generator","call-delayed","chai-increasing","pg-pool","pg-protocol","pg-types","pgpass", +"pg-cloudflare","@cloudflare/vitest-pool-workers","@cloudflare/workers-types","pg-copy-streams","libpq", +"connect-phonegap","phonegap-build","phonegap build","phonegap/build","pinkie-promise","denodify","atomic-sleep", +"on-exit-leak-free","pino-abstract-transport","pino-std-serializers","quick-format-unescaped","real-require", +"@pinojs/redact","thread-stream","@types/flush-write-stream","bole", +"flush-write-stream","midnight-smoker","steed","postinstall","lifecycle","devpostinstall","entry","irregular-plurals", +"irregular","noun","nouns","@pm2/agent","@pm2/js-api","@pm2/io","@pm2/pm2-version-check","@pm2/blessed","cli-tableau", +"fclone","pm2-axon","pm2-axon-rpc","pm2-deploy","pm2-multimeter","vizion","kraken","load balancer","lb","load-balancer", +"k8s","pm2-docker","node-pm2","production","node.js monitoring","supervisord","pm2.io","ghost production", +"process manager","probes","keep process alive","process configuration","clustering","cluster cli","dev ops","PNG", +"js-png","node-png","png-parse","pnpm10","prune","rapid","symlinks","poe","economy","ninja","poe.ninja","poe economy", +"path of exile","path of exile economy","path of exile ninja","poe economy api","path of exile api","poe.watch api", +"poe.ninja api","babel-plugin-preval","pushstate-server", +"tsgen","glamor","inline-styles","color manipulate","color manipulation","curried color manipulation","@popperjs/bundle", +"@popperjs/eslint-config-popper","@popperjs/test","@popperjs/test-utils","nuget-publish","position","attached", +"source map","jison-gho","calculation","hsla","rgba","pixrem","postcss-apply","postcss-color-function", +"postcss-color-gray","postcss-color-hsl","postcss-color-hwb","postcss-color-rgb","postcss-color-rgba-fallback", +"postcss-font-family-system-ui","postcss-image-set-polyfill","postcss-initial","postcss-media-minmax", +"postcss-pseudoelements","postcss-selector-matches","cssrecipes-custom-media-queries","cssrecipes-defaults", +"cssrecipes-grid","cssrecipes-utils","cssrecipes-vertical-rhythm","eslint-config-i-am-meticulous","isogram", +"markdown-it-toc-and-anchor","metalsmith-collections","metalsmith-filenames","metalsmith-md","metalsmith-react", +"metalsmith-rename","metalsmith-rss","metalsmith-url","metalsmith-watch","nano-logger","npmpub", +"postcss-browser-reporter","react-svg-inline","to-slug-case","webpack-nano-logs","empty","at-rules","@keyframes", +"@counter-style","flexbugs","postcss-styl","quickapp","PHP","sss","image-set", +"node modules","postcssrc","postcss.config.js","midas","postcss-short","postcss-dark-theme-class","font-family", +"font-weight","css-modules","atrules","children","nestings","@csstools/normalize.css","postcss-browser-comments", "sanitize.css","@csstools/postcss-tape","normalizes","fixes","@csstools/postcss-alpha-function", "@csstools/postcss-color-function","@csstools/postcss-color-function-display-p3-linear", "@csstools/postcss-color-mix-function","@csstools/postcss-color-mix-variadic-function-arguments", @@ -1985,712 +2076,619 @@ "@csstools/postcss-logical-overflow","@csstools/postcss-logical-overscroll-behavior","@csstools/postcss-logical-resize", "@csstools/postcss-logical-viewport-units","@csstools/postcss-media-minmax", "@csstools/postcss-media-queries-aspect-ratio-number-values","@csstools/postcss-mixins","@csstools/postcss-nested-calc", -"@csstools/postcss-normalize-display-values","@csstools/postcss-oklab-function", -"@csstools/postcss-position-area-property","@csstools/postcss-property-rule-prelude-list", -"@csstools/postcss-random-function","@csstools/postcss-relative-color-syntax","@csstools/postcss-scope-pseudo-class", -"@csstools/postcss-sign-functions","@csstools/postcss-stepped-value-functions", -"@csstools/postcss-syntax-descriptor-syntax-production","@csstools/postcss-system-ui-font-family", -"@csstools/postcss-text-decoration-shorthand","@csstools/postcss-trigonometric-functions", -"@csstools/postcss-unset-value","css-blank-pseudo","css-has-pseudo","css-prefers-color-scheme","postcss-clamp", -"postcss-dir-pseudo-class","postcss-double-position-gradients","postcss-focus-within","postcss-gap-properties", -"postcss-lab-function","postcss-logical","postcss-overflow-shorthand","postcss-page-break","postcss-place","lists", -"postcss-syntax","@jsopen/objects","doublylinked","lightning-pool","postgres-bytea","power-tasks","putil-promisify", -"putil-varhelpers","transformations","processor","ltgt","vuvuzela","spark-md5","level-codec","fetch-cookie", -"double-ended-queue","level-write-stream","empower","power-assert-formatter","universal-deep-strict-equal","dereserve", -"licensify","package-json-filterify","precommit","@actions/github","@actions/glob", -"babel-plugin-transform-rename-properties","errorstacks","kolorist","virtual dom","dom diff","binary-searching", -"jest-light-runner","jest-specific-snapshot","@vue/language-plugin-pug","prettier-plugin","imports","organize-imports", -"glob-fs","humanized","si","locale","localized","renderkid","jitter","exception","error-handling","parse-ms", -"milliseconds","period","hrtime","@pkgr/core","mercurial","hg","vcs","@prisma/config","@prisma/engines", -"@prisma/studio-core","ohash","package-up","ts-pattern","@prisma/dmmf","line-replace","@prisma/debug","openapi-fetch", -"xdg-app-paths","@libsql/client","@prisma/client","@prisma/migrate","get-port-please","@prisma/generator", -"@prisma/internals","checkpoint-client","openapi-typescript","@prisma/fetch-engine","@prisma/get-platform", -"@types/better-sqlite3","@prisma/adapter-libsql","@prisma/credentials-store", -"@prisma/management-api-sdk","@prisma/driver-adapter-utils","@prisma/client-generator-registry", -"@opentelemetry/context-async-hooks","ORM","Prisma","Prisma CLI","prisma2","JS","TS","SQL","SQLite","Postgres", -"PostgreSQL","CockroachDB","MySQL","MariaDB","MSSQL","SQL Server","SQLServer","MongoDB","MCP","danger","docdash", -"gulp-terser","regexpp","webfont","prism","node-rest-client","URIjs","svn","customize","sisteransi","interact", -"uglifyify","uglifyjs","alpha-sort","html-event-attributes","mdast-zone","svg-element-attributes","svg-event-attributes", -"@protobufjs/aspromise","@protobufjs/base64","@protobufjs/codegen","@protobufjs/eventemitter","@protobufjs/fetch", -"@protobufjs/float","@protobufjs/inquire","@protobufjs/path","@protobufjs/pool","@protobufjs/utf8","browserify-wrap", -"git-semver-tags","protobuf","protocol-buffers","serialization","@types/q","@types/jasminewd2","gulp-clang-format", -"natives","tslint-eslint-rules","vrsource-tslint-rules","webdriverjs","basic-auth-parser", +"@csstools/postcss-normalize-display-values","@csstools/postcss-position-area-property", +"@csstools/postcss-property-rule-prelude-list","@csstools/postcss-random-function", +"@csstools/postcss-relative-color-syntax","@csstools/postcss-scope-pseudo-class","@csstools/postcss-sign-functions", +"@csstools/postcss-stepped-value-functions","@csstools/postcss-syntax-descriptor-syntax-production", +"@csstools/postcss-system-ui-font-family","@csstools/postcss-text-decoration-shorthand", +"@csstools/postcss-trigonometric-functions","@csstools/postcss-unset-value","css-blank-pseudo","css-has-pseudo", +"css-prefers-color-scheme","postcss-clamp","postcss-dir-pseudo-class","postcss-double-position-gradients", +"postcss-focus-within","postcss-gap-properties","postcss-lab-function", +"postcss-logical","postcss-overflow-shorthand","postcss-page-break","postcss-place","lists","@jsopen/objects", +"doublylinked","lightning-pool","postgres-bytea","power-tasks","putil-promisify","putil-varhelpers","ltgt","vuvuzela", +"spark-md5","level-codec","fetch-cookie","double-ended-queue","level-write-stream","empower","power-assert-formatter", +"universal-deep-strict-equal","dereserve","licensify","package-json-filterify","@actions/github","@actions/glob", +"babel-plugin-transform-rename-properties","errorstacks","kolorist","dom diff","binary-searching", +"jest-specific-snapshot","@vue/language-plugin-pug","prettier-plugin","imports","organize-imports","glob-fs","si", +"localized","renderkid","jitter","parse-ms","milliseconds","period","hrtime","mercurial","hg","@prisma/config", +"@prisma/engines","@prisma/studio-core","package-up","ts-pattern","@prisma/dmmf","line-replace","@prisma/debug", +"@libsql/client","@prisma/client","@prisma/migrate","@prisma/generator","@prisma/internals","checkpoint-client", +"@prisma/fetch-engine","@prisma/adapter-libsql", +"@prisma/credentials-store","@prisma/management-api-sdk","@prisma/driver-adapter-utils", +"@prisma/client-generator-registry","@opentelemetry/context-async-hooks","ORM","Prisma","Prisma CLI","prisma2","JS","TS", +"SQL","Postgres","CockroachDB","MSSQL","SQL Server","SQLServer","MongoDB","MCP","docdash","gulp-terser","regexpp", +"webfont","prism","node-rest-client","URIjs","svn","customize","sisteransi","interact","html-event-attributes", +"svg-element-attributes","svg-event-attributes","@protobufjs/aspromise","@protobufjs/base64","@protobufjs/codegen", +"@protobufjs/eventemitter","@protobufjs/fetch","@protobufjs/float","@protobufjs/inquire","@protobufjs/path", +"@protobufjs/pool","@protobufjs/utf8","browserify-wrap","protobuf","@types/jasminewd2","natives","basic-auth-parser", "@types/args","squid","privoxy","mod_proxy","via","x-forwarded-for","fill-keys","module-not-found-error", "native-hello-world","cp-sugar","elegant-status","pug-load","pug-lexer","pug-linker","pug-parser","pug-filters", "pug-runtime","pug-code-gen","pug-strip-comments","jstransformer-uglify-js","jstransformer-markdown-it","tap-bail","idn", -"idna","dns","domain","chromium-bidi","puppeteer-core","typed-query-selector","purge","fluent","qr code", -"@browserify/envify","@browserify/uglifyify","common-shakeify","has-override-mistake","unassertify", -"decode-uri-component","filter-obj","split-on-first","param","parameter","searchparams","retape","tap-esm","synchronous", -"FIFO","lifo","LIFO","work","queue js","job queue","job scheduling","task queue","ordered","iterate","linked list", -"dequeue","shift","item","parchment","quill-delta","@types/highlight.js","transpile-webpack-plugin", -"eslint-import-resolver-webpack","fuzzysort","grunt-search","eslint-plugin-json-es","@qunitjs/browserstack-runner", +"idna","dns","domain","chromium-bidi","typed-query-selector","purge","fluent","qr code","@browserify/envify", +"@browserify/uglifyify","common-shakeify","has-override-mistake","unassertify","decode-uri-component","split-on-first", +"param","parameter","searchparams","retape","tap-esm","FIFO","lifo","LIFO","work","queue js","job queue", +"job scheduling","task queue","ordered","iterate","linked list","dequeue","shift","parchment","quill-delta", +"@types/highlight.js","transpile-webpack-plugin","eslint-plugin-json-es","@qunitjs/browserstack-runner", "dom-element-descriptors","@types/qunit","@release-it-plugins/lerna-changelog","qunit-plugin","exists-stat", -"js-reporters","browserstack-runner","testling","requestAnimationFrame","babel-plugin-import-export-rename","envvar", -"sanctuary","sanctuary-identity","xyz","tacit","point-free","curried","fantasy-land","words","sample","timed-out", -"exceptions","sentry","unpipe","@rc-component/father-plugin","father-build","rc-test","react-slider","slider", -"react-tooltip","@types/responselike","react-addon","@apollo/react-common","@apollo/react-components", +"js-reporters","testling","requestAnimationFrame","babel-plugin-import-export-rename","envvar","sanctuary", +"sanctuary-identity","point-free","sample","timed-out","sentry","unpipe","father-build", +"react-slider","react-tooltip","@types/responselike","react-addon","@apollo/react-common","@apollo/react-components", "@apollo/react-hoc","@apollo/react-hooks","@apollo/react-ssr","@restart/ui","@restart/hooks","uncontrollable", "prop-types-extra","ecosystem-react","@icons/material","material-colors","reactcss","@case/eslint-config", -"@storybook/addon-centered","babel-plugin-transform-rename-import","chai-spies","jsx-loader","react-context", -"react-mark","testdom","color picker","sketch","photoshop","html-webpack-tags-plugin","copy to clipboard", -"@react-docgen/cli", -"date-fns-tz","is-root","detect-port-alt","@react-dnd/invariant","@react-dnd/shallowequal","dnd-core","@types/doctrine", -"documentation-generation","attr-accept","file-selector","@babel/plugin-proposal-do-expressions", -"@babel/plugin-proposal-logical-assignment-operators","@babel/plugin-proposal-pipeline-operator","@commitlint/prompt", -"@size-limit/webpack-why","imagemin-cli","webpack-blocks","jest-fetch-mock","settle-promise","overlay","redbox","crash", -"react-side-effect","eslint-config-nfl","karma-chai-sinon","karma-html-reporter","nfl","head","title","meta","noscript", -"jest-fixed-jsdom","form-validation","enzyme-adapter-react-15","react-mount","yarn-deduplicate","live","hot", -"use-sync-external-store","@babel/plugin-proposal-async-generator-functions","eslint-plugin-jest-dom","viewport", -"intersection","observer","lazy load","inview","useInView","useIntersectionObserver","@formatjs/ecma402-abstract", +"@storybook/addon-centered","jsx-loader","react-context","react-mark","testdom","sketch","photoshop", +"html-webpack-tags-plugin","copy to clipboard","@react-docgen/cli","date-fns-tz","is-root","detect-port-alt", +"@react-dnd/invariant","@react-dnd/shallowequal","documentation-generation","attr-accept","file-selector", +"@babel/plugin-proposal-logical-assignment-operators","@commitlint/prompt","@size-limit/webpack-why","imagemin-cli", +"webpack-blocks","jest-fetch-mock","settle-promise","overlay","redbox","crash","react-side-effect","eslint-config-nfl", +"karma-chai-sinon","karma-html-reporter","nfl","head","meta","noscript","jest-fixed-jsdom","enzyme-adapter-react-15", +"react-mount","@babel/plugin-proposal-async-generator-functions","intersection","lazy load","inview","useInView", +"useIntersectionObserver","@formatjs/ecma402-abstract", "@formatjs/icu-messageformat-parser","@formatjs/intl","intl-messageformat","eslint-config-es5","rehype-starry-night", -"exenv","@webcomponents/custom-elements","dialog","babel-browser-transform","inject-loader","isparta-loader", -"karma-jasmine-diff-reporter","lodash.range","transitiongroup","spring", -"tween","motion","transition","nullthrows","metro-runtime","hermes-compiler","metro-source-map","flow-enums-runtime", -"@react-native/codegen","@react-native/js-polyfills","@react-native/gradle-plugin","@react-native/assets-registry", -"@react-native/normalize-colors","@jest/create-cache-key-function","@react-native/virtualized-lists", -"babel-plugin-syntax-hermes-parser","@react-native/community-cli-plugin","app-framework","mobile-development", -"@react-native-community/cli","@react-native/eslint-config","@react-native/typescript-config","react-native-builder-bob", -"react-native-component","keychain","svg2ttf","fontisto","evil-icons","feather-icons","oslllo-svg-fixer", -"svgicons2svgfont","simple-line-icons","@entypo-icons/core","css-social-buttons","osx","macos", +"exenv","babel-browser-transform","inject-loader","karma-jasmine-diff-reporter","lodash.range","transitiongroup","tween", +"motion","hermes-compiler","@react-native/virtualized-lists","app-framework","mobile-development", +"@react-native-community/cli","@react-native/typescript-config","keychain","svg2ttf","fontisto","evil-icons", +"feather-icons","oslllo-svg-fixer","svgicons2svgfont","simple-line-icons","@entypo-icons/core","css-social-buttons", "@cmfcmf/docusaurus-search-local","react-transform-hmr","currency","number-format","require-hijack","onclick","outside", -"onclickoutside","@rollup/plugin-sucrase","eslint-plugin-ft-flow","hermes-eslint","@types/use-sync-external-store", -"matchmediaquery","@types/hyphenate-style-name","@types/match-media-mock","@types/matchmediaquery","match-media-mock", -"media queries","respond","matchMedia","wireit","premove","redux-devtools","redux-devtools-dock-monitor", -"redux-devtools-log-monitor","combobox","multiselect","json2mq", -"@playwright/experimental-ct-react","foundation-apps","slick-carousel","why-did-you-update","slick","carousel", -"Image slider","orbit","@tippyjs/react","@vxna/mini-html-webpack-template","clipboard-copy","common-dir", -"es6-object-assign","function.name-polyfill","glogg","javascript-stringify","jss","jss-plugin-camel-case", -"jss-plugin-compose","jss-plugin-default-unit","jss-plugin-global","jss-plugin-isolate","jss-plugin-nested","listify", -"mini-html-webpack-plugin","q-i","qss","react-docgen-annotation-resolver","react-docgen-displayname-handler", -"react-group","strip-html-comments","type-detect","@types/buble","@types/copy-webpack-plugin","@types/escodegen", -"@types/hash-sum","@types/keymirror","@types/markdown-to-jsx","@types/terser-webpack-plugin","@types/type-detect", -"@types/webpack-dev-server","deabsdeep","deepfreeze","dog-names","eslint-config-tamia","keymirror","strip-shebang", -"scalable vector graphics","svginjector","TapEventPlugin","300ms","react-testing","@4tw/cypress-drag-drop", -"vite-plugin-istanbul","toast","alert","snackbar","message","commoner","jstransform","coverify","es3ify","esprima-fb", -"grunt-jest", -"jasmine-tapreporter","populist","transition-group","transitions","react-codemirror","eslint-config-react", -"eslint-plugin-relay","@babel/preset-stage-2","jest-environment-puppeteer","@babel/plugin-transform-flow-comments", -"scrolling","infinite","virtualized","fixed","es6-module-jstransform","@storybook/addon-storysource","customize-cra", -"holderjs","react-prism","esbuild-plugin-alias","tap-mocha-reporter","line by line","repl","tiny-invariant", -"@types/esprima","flow-parser","refactoring","pretty-printing","prepare","change-emitter","higher-order", -"microcomponentization","composition","lister","@redis/bloom","@redis/client","@redis/json","@redis/search", -"@redis/time-series","@redocly/openapi-core","@cfaester/enzyme-adapter-react-18","docusaurus-theme-redoc", -"docusaurus-plugin-redoc","@docusaurus/theme-common","api-doc","docusaurus-preset","netlify-plugin-cache","predictable", -"replay","elm","just-curry-it","reduce-reducers","@vitest/coverage-c8","eslint-config-unicorn-camelcase", -"flux-standard-action","actions","insert-line","redux-immutable","lodash-webpack-plugin","@redux-saga/core","saga", -"effects","side effects","thunk", -"redux-middleware","ecmarkup","gulp-emu","gulp-live-server","gulp-sequence","reflect","regenerator","abstract", -"is-hidden","rehype-plugin","is-absolute-url","external","hast-util-properties-to-mdx-jsx-attributes", -"eslint-config-remcohaszing","snapshot-fixtures","@nodeutils/defaults-deep","@phun-ky/typeof","issue-parser", +"onclickoutside","@rollup/plugin-sucrase","eslint-plugin-ft-flow","hermes-eslint","matchmediaquery", +"@types/hyphenate-style-name","@types/match-media-mock","@types/matchmediaquery","match-media-mock","media queries", +"respond","matchMedia","redux-devtools","redux-devtools-dock-monitor","redux-devtools-log-monitor","json2mq", +"foundation-apps","slick-carousel","why-did-you-update","Image slider","orbit","@tippyjs/react", +"@vxna/mini-html-webpack-template","clipboard-copy","common-dir","es6-object-assign","function.name-polyfill","glogg", +"javascript-stringify","jss","jss-plugin-camel-case","jss-plugin-compose","jss-plugin-default-unit","jss-plugin-global", +"jss-plugin-isolate","jss-plugin-nested","mini-html-webpack-plugin","q-i","qss","react-docgen-annotation-resolver", +"react-docgen-displayname-handler","react-group","strip-html-comments","type-detect","@types/buble", +"@types/copy-webpack-plugin","@types/escodegen","@types/keymirror","@types/markdown-to-jsx", +"@types/terser-webpack-plugin","@types/type-detect","@types/webpack-dev-server","deabsdeep","deepfreeze","dog-names", +"eslint-config-tamia","keymirror","strip-shebang","scalable vector graphics","svginjector","TapEventPlugin","300ms", +"react-testing","@4tw/cypress-drag-drop","vite-plugin-istanbul","alert","commoner","jstransform","coverify","es3ify", +"grunt-jest","jasmine-tapreporter","populist","transition-group","transitions","react-codemirror","eslint-config-react", +"eslint-plugin-relay","@babel/preset-stage-2","@babel/plugin-transform-flow-comments","fixed","es6-module-jstransform", +"customize-cra","holderjs","react-prism","esbuild-plugin-alias","tap-mocha-reporter","line by line","@types/esprima", +"flow-parser","refactoring","pretty-printing", +"prepare","change-emitter","higher-order","microcomponentization","lister","@redis/bloom","@redis/client","@redis/json", +"@redis/search","@redis/time-series","@redocly/openapi-core","docusaurus-theme-redoc","docusaurus-plugin-redoc", +"@docusaurus/theme-common","api-doc","docusaurus-preset","predictable","elm","just-curry-it","reduce-reducers", +"@vitest/coverage-c8","eslint-config-unicorn-camelcase","actions","insert-line","redux-immutable", +"lodash-webpack-plugin","@redux-saga/core","saga","effects","side effects","redux-middleware","ecmarkup","gulp-emu", +"gulp-live-server","gulp-sequence","reflect","regenerator","is-absolute-url","external", +"hast-util-properties-to-mdx-jsx-attributes","@nodeutils/defaults-deep","@phun-ky/typeof","issue-parser", "wildcard-match","@octokit/request-error","mentoss","mock-stdio","remark-preset-webpro","distribution","intern", -"markdown-extensions","unified-args","footnote","remark-plugin","remark-slug","mermaid-isomorphic", -"hast-util-from-html-isomorphic","mermaidjs","remark-comment-config","remark-contributors","remark-heading-gap", -"remark-license","remark-lint-definition-spacing","remark-lint-fenced-code-flag","remark-lint-file-extension", -"remark-lint-final-definition","remark-lint-first-heading-level","remark-lint-heading-style", -"remark-lint-no-consecutive-blank-lines","remark-lint-no-emphasis-as-heading","remark-lint-no-file-name-articles", -"remark-lint-no-file-name-consecutive-dashes","remark-lint-no-file-name-irregular-characters", -"remark-lint-no-file-name-mixed-case","remark-lint-no-file-name-outer-dashes","remark-lint-no-heading-indent", -"remark-lint-no-heading-punctuation","remark-lint-no-missing-blank-lines","remark-lint-no-multiple-toplevel-headings", -"remark-lint-no-shell-dollars","remark-lint-no-table-indentation","remark-lint-no-tabs", -"remark-lint-ordered-list-marker-value","remark-lint-table-pipe-alignment","remark-retext","retext-english", -"retext-preset-github","remark-lint-correct-media-syntax","remark-lint-definition-sort", -"remark-lint-link-title-style","remark-lint-maximum-heading-length","remark-lint-maximum-line-length", -"remark-lint-mdx-jsx-attribute-sort","remark-lint-mdx-jsx-no-void-children","remark-lint-mdx-jsx-quote-style", -"remark-lint-mdx-jsx-self-close","remark-lint-mdx-jsx-shorthand-attribute","remark-lint-mdx-jsx-unique-attribute-name", -"remark-lint-media-style","remark-lint-no-duplicate-defined-urls","remark-lint-no-duplicate-headings-in-section", -"remark-lint-no-empty-url","remark-lint-no-heading-like-paragraph","remark-lint-no-hidden-table-cell", -"remark-lint-no-html","remark-lint-no-paragraph-content-indent","remark-lint-no-reference-like-url", -"remark-lint-no-unneeded-full-reference-image","remark-lint-no-unneeded-full-reference-link","retext-preset-wooorm", -"wooorm","autolinker","caseless","aws-sign2","oauth-sign","tunnel-agent","forever-agent","har-validator","is-typedarray", -"http-signature","taper","karma-cli","stealthy-require","request-promise-core","thenable","index.js", -"@typescript-eslint/eslint-plugin-tslint","@typescript/analyze-trace","eslint-plugin-typescript","micro-memoize", -"ResizeObserver","path-parse","supports-preserve-symlinks-flag","copy-dir","adjust-sourcemap-loader","cls-hooked", -"myrmidon","conventional-changelog-eslint","eslint-config-incredible","eslint-plugin-censor","eslint-plugin-no-secrets", -"eslint-plugin-scanjs-rules","fatum","node-package-tester","semantic-release-telegram","vesta","documentate", -"autodocumentate","ewma","spdy","restify-errors","escape-regexp-component","watershed", -"restify-clients","autocannon-compare","DTrace","quit","shutdown","sigterm","sigint","terminate","kill","NoSQL","reql", -"query language","leak","deep-copy","fast-copy","fastest-json-copy","nano-copy","plain-object-clone","deep-clone", -"deepclone","deepcopy","performant","fastclone","fastcopy","fast-clone","fast-deep-clone","fast-deep-copy", -"package-json-from-dist","rm -rf","rm -fr","prebuild","run-script-os","targetpractice","Automation","mouse","pixel", -"recognition","autohotkey","machine","learning","@mermaid-js/mermaid-cli","@shikijs/vitepress-twoslash", -"@vue/language-server","acorn-import-assertions","date-time","flru","npm-audit-resolver","wasm-pack","bundling", -"rollup-plugin","js-cleanup","rollup-plugin-jsx","sourcemap-validator","removal","@types/d3-drag","@types","commenting", -"package-name-regex","spdx-expression-validate","spdx-satisfies","gulp-conventional-changelog","rollup-plugin-prettier", -"rollup-plugin-strip-banner","browserify-fs", -"buffer-es6","process-es6","sourceMappingURL","@types/find-cache-dir","@types/graphlib","graphlib","rollup-plugin-re", -"@types/d3-array","@types/d3-color","@types/d3-force","@types/d3-hierarchy","@types/d3-scale","@types/d3-shape", -"visualizer","treemap","sunburst","diagram","@ampproject/toolbox-optimizer","@babel/plugin-syntax-bigint", -"@capsizecss/metrics","@edge-runtime/cookies","@edge-runtime/ponyfill","@edge-runtime/primitives","@napi-rs/triples", -"@next/polyfill-module","@next/polyfill-nomodule","@next/react-refresh-utils","@next/swc","@taskr/clear","@taskr/esnext", -"@types/amphtml-validator","@types/babel__generator","@types/ci-info","@types/content-disposition", -"@types/express-serve-static-core","@types/fresh","@types/lodash.curry","@types/path-to-regexp","@types/platform", -"@types/send","@types/text-table","@types/ua-parser-js","amphtml-validator","async-sema","cli-select","comment-json", -"edge-runtime","ignore-loader","lodash.curry","native-url","server-only","string-hash","taskr","unistore","watchpack", -"ember-cli-progress","rtl","ltr","run series","LINQ","FRP","Reactive","Rx","RxJS", -"@angular-devkit/build-optimizer","@types/source-map","check-side-effects","rollup-plugin-alias","rollup-plugin-inject", -"tslint-etc","tslint-no-toplevel-property-access","tslint-no-unused-expression-chai","web-streams-polyfill","ReactiveX", -"ReactiveExtensions","Streams","Observables","Stream","buffer allocate","node security","uninitialized","mock-env", -"dist-tag","prepublish","@sailshq/lodash","@sailshq/router","captains-log","common-js-file-extensions","@sailshq/csurf", -"flaverr","i18n-2","include-all","machine-as-action","machinepack-process","machinepack-redis","merge-defaults", -"merge-dictionaries","parley","rttc","sails-generate","sails-stringfile","skipper","sort-route-addresses","whelk", -"machinepack-fs","@sailshq/request","root-require","sails-hook-orm","sails-hook-sockets","sails.io.js", -"session-file-store","mvc","web-framework","sailsjs","sails.js","truncate-utf8-bytes","mktemp","filename","parse-srcset", -"eslint-config-apostrophe","material-components-web","node-sass-glob-importer","markdown-model","bare-script", -"element-model","food","drink","helpful", -"opensourcesoftware","teaching","experimentation","applications","ec","ecdh","ecdsa","seed","@bazel/runfiles", -"@semantic-release/error","aggregate-error","env-ci","find-versions","git-log-parser","import-from-esm","p-each-series", -"file-url","mockserver-client","p-retry","stream-buffers","author","@fluentui/react-component-event-listener", -"@fluentui/react-component-ref","@semantic-ui-react/event-stack","keyboard-key","@artsy/fresnel","@babel/standalone", -"@percy/cli","@percy/cypress","anchor-js","babel-plugin-filter-imports","babel-plugin-transform-react-handled-props", -"babel-plugin-universal-import","chai-enzyme","react-ace","react-codesandboxer","react-source-render","react-static", -"react-static-routes","react-universal-component","satisfied","semantic-ui-css","ta-scripts", -"terser-webpack-plugin-legacy","eslint-config-standard-jsx","standard-engine","bikeshed","semicolon","@hapi/joi","eraro", -"fast-safe-stringify","gate-executor","gubu","jsonic","lodash.defaultsdeep","optioner","ordu","patrun","rolling-stats", -"seneca-transport","use-plugin","@seneca/test-plugin","bench","gex", -"lab-transform-typescript","seneca-entity","seneca-error-test","seneca-joi","seneca-promisify","summary","micro-service", -"micro-services","micro service","minimum","viable","product","Sentimental","nlp","wkx","dottie","sequelize-pool", -"toposort-class","retry-as-promised","ibm_db","mariadb","p-props","p-settle","node-hook","pg-hstore","chai-datetime", -"snowflake-sdk","@octokit/types","js-combinatorics","esdoc-standard-plugin","esdoc-inject-style-plugin", -"esdoc-ecmascript-proposal-plugin","semantic-release-fail-on-major-bump","db2","snowflake","object relational mapper", -"@serialport/stream","@serialport/binding-mock","@serialport/bindings-cpp","@serialport/parser-ready", -"@serialport/parser-regex","@serialport/parser-cctalk","@serialport/parser-readline","@serialport/parser-delimiter", -"@serialport/parser-byte-length","@serialport/parser-spacepacket","@serialport/parser-slip-encoder", -"@serialport/parser-packet-length","@serialport/parser-inter-byte-timeout","ccTalk","com port","COM","data logging", -"hardware","modem","nodebots","RFID","sensor","serial port","sms gateway","sms","UART","update-check","@zeit/schemas", -"is-port-reachable","@vercel/style-guide","@types/serve-handler","temp-path","favicon","@serverless/utils", -"@commitlint/cz-commitlint","@serverless/test","serverless","serverless plugins","aws lambda","amazon web services", -"serverless.com","@aws-cdk/aws-lambda-python-alpha","@aws-sdk/client-dynamodb","@aws-sdk/client-eventbridge", -"@aws-sdk/client-lambda","@aws-sdk/client-sns","@aws-sdk/client-sqs","@aws-sdk/client-sts","@aws-sdk/lib-dynamodb", -"@aws-sdk/util-dynamodb","aws-cdk-lib","aws-iot-device-sdk","caporal","json-format-highlight", -"@types/aws-iot-device-sdk","@types/aws4","esbuild-runner","jsii","jsii-diff","jsii-docgen","jsii-pacmak","eventbridge", -"flow-remove-types","isequalwith","@img/colour","emnapi","exif-reader","@cpplint/cli","@emnapi/runtime", -"@img/sharp-libvips-dev","@img/sharp-libvips-win32-x64","@img/sharp-libvips-dev-wasm32","@img/sharp-libvips-win32-ia32", -"@img/sharp-libvips-win32-arm64","dzi","thumbnail","libvips","vips","quote","shelljs-changelog","shelljs-release", -"travis-check-changes","makefile","clean-publish","short","tiny","bitly","shorten","tinyid","should-equal", -"should-format","should-type", -"should-type-adaptors","should-util","eslint-config-shouldjs","grunt-endline","quiet-grunt","semver-sort", +"markdown-extensions","unified-args","footnote","remark-slug","mermaidjs","remark-contributors","remark-heading-gap", +"remark-license","remark-lint-no-heading-punctuation","retext-preset-github","remark-lint-correct-media-syntax", +"remark-lint-definition-sort","remark-lint-link-title-style","remark-lint-maximum-heading-length", +"remark-lint-maximum-line-length","remark-lint-mdx-jsx-attribute-sort","remark-lint-mdx-jsx-no-void-children", +"remark-lint-mdx-jsx-quote-style","remark-lint-mdx-jsx-self-close","remark-lint-mdx-jsx-shorthand-attribute", +"remark-lint-mdx-jsx-unique-attribute-name","remark-lint-media-style","remark-lint-no-duplicate-defined-urls", +"remark-lint-no-duplicate-headings-in-section","remark-lint-no-empty-url","remark-lint-no-heading-like-paragraph", +"remark-lint-no-hidden-table-cell","remark-lint-no-html","remark-lint-no-paragraph-content-indent", +"remark-lint-no-reference-like-url","remark-lint-no-unneeded-full-reference-image", +"remark-lint-no-unneeded-full-reference-link","retext-preset-wooorm","wooorm","autolinker","caseless","aws-sign2", +"oauth-sign","tunnel-agent","forever-agent","har-validator","is-typedarray","taper","index.js", +"@typescript/analyze-trace","eslint-plugin-typescript","micro-memoize","path-parse","supports-preserve-symlinks-flag", +"adjust-sourcemap-loader","myrmidon","conventional-changelog-eslint","eslint-config-incredible","eslint-plugin-censor", +"eslint-plugin-no-secrets","eslint-plugin-scanjs-rules","fatum","node-package-tester","semantic-release-telegram", +"vesta","documentate","autodocumentate","ewma","restify-errors","escape-regexp-component","watershed","restify-clients", +"autocannon-compare","DTrace","quit","sigint","terminate","NoSQL","reql","query language","leak","fastest-json-copy", +"nano-copy", +"plain-object-clone","deep-clone","deepcopy","fastclone","fastcopy","fast-deep-copy","package-json-from-dist", +"run-script-os","targetpractice","Automation","pixel","recognition","autohotkey","learning","@mermaid-js/mermaid-cli", +"@shikijs/vitepress-twoslash","@vue/language-server","acorn-import-assertions","flru","npm-audit-resolver","wasm-pack", +"js-cleanup","rollup-plugin-jsx","removal","@types/d3-drag","@types","commenting","package-name-regex", +"spdx-expression-validate","spdx-satisfies","gulp-conventional-changelog","rollup-plugin-strip-banner","browserify-fs", +"sourceMappingURL","@types/find-cache-dir","@types/graphlib","rollup-plugin-re","@types/d3-array","@types/d3-color", +"@types/d3-force","@types/d3-hierarchy","@types/d3-scale","visualizer","sunburst","diagram", +"@ampproject/toolbox-optimizer","@types/amphtml-validator","amphtml-validator","ember-cli-progress","rtl","ltr", +"run series","LINQ","FRP","Reactive","@angular-devkit/build-optimizer","check-side-effects","rollup-plugin-alias", +"rollup-plugin-inject","tslint-etc","tslint-no-toplevel-property-access","tslint-no-unused-expression-chai", +"web-streams-polyfill","ReactiveX", +"ReactiveExtensions","Observables","buffer allocate","node security","uninitialized","mock-env","dist-tag","prepublish", +"@sailshq/router","captains-log","common-js-file-extensions","@sailshq/csurf","i18n-2","include-all","machine-as-action", +"machinepack-process","machinepack-redis","merge-defaults","merge-dictionaries","sails-generate","sails-stringfile", +"skipper","sort-route-addresses","whelk","machinepack-fs","@sailshq/request","root-require","sails-hook-orm", +"sails-hook-sockets","sails.io.js","session-file-store","web-framework","sailsjs","truncate-utf8-bytes","mktemp", +"filename","eslint-config-apostrophe","material-components-web","node-sass-glob-importer","markdown-model","bare-script", +"element-model","food","drink","ec","ecdh","ecdsa","seed","@bazel/runfiles","@semantic-release/error","aggregate-error", +"env-ci","find-versions","git-log-parser","import-from-esm","p-each-series","file-url","mockserver-client", +"stream-buffers","author","@fluentui/react-component-event-listener","@fluentui/react-component-ref", +"@semantic-ui-react/event-stack","keyboard-key", +"@artsy/fresnel","@babel/standalone","@percy/cli","@percy/cypress","anchor-js","babel-plugin-filter-imports", +"babel-plugin-transform-react-handled-props","babel-plugin-universal-import","chai-enzyme","react-ace", +"react-codesandboxer","react-source-render","react-static","react-static-routes","react-universal-component","satisfied", +"semantic-ui-css","ta-scripts","terser-webpack-plugin-legacy","bikeshed","semicolon","@hapi/joi","eraro","gate-executor", +"gubu","jsonic","lodash.defaultsdeep","optioner","ordu","patrun","rolling-stats","seneca-transport","use-plugin", +"@seneca/test-plugin","bench","gex","lab-transform-typescript","seneca-entity","seneca-error-test","seneca-joi", +"seneca-promisify","summary","micro-service","micro-services","micro service","minimum","viable","product","Sentimental", +"nlp","wkx","dottie","sequelize-pool","toposort-class","retry-as-promised","p-props","p-settle","node-hook","pg-hstore", +"chai-datetime","snowflake-sdk","@octokit/types","js-combinatorics","esdoc-standard-plugin", +"esdoc-inject-style-plugin","esdoc-ecmascript-proposal-plugin","semantic-release-fail-on-major-bump","db2","snowflake", +"object relational mapper","@serialport/stream","@serialport/binding-mock","@serialport/bindings-cpp", +"@serialport/parser-ready","@serialport/parser-regex","@serialport/parser-cctalk","@serialport/parser-readline", +"@serialport/parser-delimiter","@serialport/parser-byte-length","@serialport/parser-spacepacket", +"@serialport/parser-slip-encoder","@serialport/parser-packet-length","@serialport/parser-inter-byte-timeout","ccTalk", +"com port","COM","data logging","modem","nodebots","RFID","sensor","serial port","sms gateway","sms","UART", +"update-check","@zeit/schemas","@vercel/style-guide","temp-path","@serverless/utils","@commitlint/cz-commitlint", +"@serverless/test","serverless plugins","aws lambda","amazon web services","serverless.com", +"@aws-cdk/aws-lambda-python-alpha","@aws-sdk/client-eventbridge","@aws-sdk/client-lambda","aws-iot-device-sdk","caporal", +"json-format-highlight","@types/aws-iot-device-sdk","@types/aws4","jsii","jsii-diff","jsii-docgen","jsii-pacmak", +"eventbridge","flow-remove-types","isequalwith","@img/colour","emnapi","exif-reader","@cpplint/cli","@emnapi/runtime", +"@img/sharp-libvips-dev","@img/sharp-libvips-win32-x64", +"@img/sharp-libvips-dev-wasm32","@img/sharp-libvips-win32-ia32","@img/sharp-libvips-win32-arm64","dzi","thumbnail", +"libvips","vips","travis-check-changes","makefile","short","bitly","shorten","tinyid","should-equal","should-format", +"should-type","should-type-adaptors","should-util","eslint-config-shouldjs","grunt-endline","quiet-grunt","semver-sort", "shelljs-plugin-open","transforms","@kwsites/file-exists","@kwsites/promise-deferred","@kwsites/promise-result", -"@simple-git/babel-config","source control","custom-event","js-correct-lockfile","rollup-plugin-analyzer", -"eslint-config-important-stuff","@sinonjs/samsam","@sinonjs/eslint-plugin-no-prototype-methods","@studio/changes", -"esbuild-plugin-istanbul","clock","vendor","mocks-and-spies","crypt3","fs-ext","express-json5","render-readme", -"sinopia-htpasswd","browserify-handlebars","@polka/url","totalist","bytes-iec","nanospinner","budget", -"performance budget","file size","directory size","get size","qpass","amazon-cognito-identity-js","basic-node-server", -"skapi","seperator","is-fullwidth-code-point","random-item","get-folder-size","js-extend","math-sum","prettier-bytes", -"tablify","slow","github-changes","urlify","standard-json","pretty output","snazzy standard","standard pretty", -"stylish for standard","stylish formatter","stylish reporter","stylish standard","axios-ntlm","xml-crypto", -"@types/sax","base64id","socket.io-adapter","io","@socket.io/component-emitter","eventsource","sockjs","separated", -"@anvilco/apollo-server-plugin-introspection-metadata","@graphql-tools/load-files","@graphql-tools/merge", -"@graphql-tools/utils","graphql-scalars","json-stringify-pretty-compact","microfiber","bdd-lazy-var","introspection", -"introspection-query","string-to-stream","binary-split","callback-stream","gulp-benchmark","imageinfo","prettydiff", -"sprity-css","sprity-lwip","object-stream","through2-spy","sprites","coordinates","css-sprite","asn1","bcrypt-pbkdf", -"integrity","subresource integrity","sri","sri hash","sri string","sri generator","encrypt","st","firestore", -"shuruhatik","long-stack-traces","version-guard","run-parallel-limit","conventional-changelog-config-spec", -"dotgitignore","stringify-package","std-mocks","recommended","check-more-types","lazy-ass","ban-sensitive-files", -"deps-ok","dont-crack","git-issues","pre-git","simple-commit-message","winser","modern-syslog","etsy","metric", -"aggregation", -"@vitest/expect","@storybook/global","store2","exsolve","empathic","picoquery","modern-tar","fetch-retry", -"@types/npmlog","@vitest/utils","launch-editor","unique-string","@vitest/mocker","bundle-require","flush-promises", -"@yarnpkg/libzip","browser-dtector","react-inspector","@react-aria/tabs","deep-object-diff","@react-aria/utils", -"@polka/compression","@types/detect-port","@ngard/tiny-isequal","@react-aria/toolbar","@react-stately/tabs", -"@react-types/shared","@storybook/docs-mdx","get-npm-tarball-url","use-resize-observer","@radix-ui/react-slot", -"@react-aria/landmark","@react-aria/overlays","@types/pretty-hrtime","@discoveryjs/json-ext","lazy-universal-dotenv", -"react-transition-state","@react-stately/overlays","@react-aria/interactions","react-syntax-highlighter", -"@radix-ui/react-scroll-area","@devtools-ds/object-inspector","@types/react-syntax-highlighter", -"@aw-web-design/x-default-browser","@fal-works/esbuild-plugin-global-externals","design-systems","component-testing", -"@glen/jest-raw-loader","@storybook/addon-onboarding","@storybook/addon-storyshots", -"@storybook/addon-storyshots-puppeteer","@storybook/blocks","@storybook/test","eslint-config-torchbox","storybookjs", -"patternlab","django","django-pattern-library","django-templates","jinja2","findit2","inside","funsert","into-stream", -"Assert","music-metadata","livestream","livestreaming","gulp-rimraf","string.js","stringjs","S","s","codsen-utils", -"ranges-apply","ranges-push","string-left-right","ast-monkey-traverse","ranges-invert","jsp","mixed","stri","xhtml", -"get-east-asian-width","visual","columns","fullwidth","full-width","wcswidth","full","cjk","chinese","japanese","korean", -"fixed-width","east-asian-width","undici-types","payment processing","credit cards","generator-loopback", -"loopback-sdk-angular-cli","nodefly-register","strong-agent","strong-arc","strong-build","strong-deploy", -"strong-mesh-models","strong-registry","strong-start","strong-supervisor","core-util-is","strong-debugger", -"strong-swagger-ui","swagger-ui","utf-8-validate","LoopBack","Platform","alerts","event loop","heroku","master", -"metrics","nodeops","npmrc","openshift","ops","pm","response", -"slc","slowest functions","strong-cli","strong-cluster-control","strongops","upstart","@bundled-es-modules/deepmerge", -"@bundled-es-modules/glob","@bundled-es-modules/memfs","@zip.js/zip.js","path-unified","@esm-bundle/chai-as-promised", -"@rollup/browser","@shoelace-style/shoelace","@web/test-runner-commands","hanbi","jsdoc-escape-at", -"jsdoc-tsimport-plugin","starlight-links-validator","style dictionary","dictionary","Android","@types/stylis", -"css-to-react-native","@types/js-beautify","@types/react-frame-component","@types/shallowequal","react-frame-component", -"stylis-plugin-rtl","ts-toolbelt","stylis-rule-sheet","zeit","hack","hacks","globjoin","mathml-tag-names","svg-tags", -"@changesets/get-github-info","@stylelint/prettier-config","@stylelint/remark-preset","@types/balanced-match", -"@types/file-entry-cache","@types/global-modules","@types/globjoin","@types/imurmurhash","@types/postcss-less", -"@types/svg-tags","eslint-config-stylelint","jest-preset-stylelint","postcss-sass","stylelint-config","shortcss", -"css-values","babel-register-ts","stylelint-plugin","delaration-strict-value","keyword","z-index","postcss-sorting", +"@simple-git/babel-config","source control","js-correct-lockfile","eslint-config-important-stuff","@sinonjs/samsam", +"@sinonjs/eslint-plugin-no-prototype-methods","@studio/changes","esbuild-plugin-istanbul","clock","mocks-and-spies", +"crypt3","fs-ext","express-json5","render-readme","sinopia-htpasswd","browserify-handlebars","@polka/url","bytes-iec", +"nanospinner","budget","performance budget","file size","directory size","get size","qpass","amazon-cognito-identity-js", +"basic-node-server","skapi","seperator","is-fullwidth-code-point","random-item","get-folder-size","js-extend","math-sum", +"prettier-bytes","tablify","slow", +"github-changes","urlify","standard-json","pretty output","snazzy standard","standard pretty","stylish for standard", +"stylish formatter","stylish reporter","stylish standard","axios-ntlm","xml-crypto","base64id","socket.io-adapter","io", +"@socket.io/component-emitter","@anvilco/apollo-server-plugin-introspection-metadata","@graphql-tools/load-files", +"microfiber","bdd-lazy-var","introspection","introspection-query","string-to-stream","binary-split","callback-stream", +"gulp-benchmark","prettydiff","sprity-css","sprity-lwip","object-stream","through2-spy","sprites","coordinates", +"css-sprite","asn1","bcrypt-pbkdf","integrity","subresource integrity","sri","sri hash","sri string","sri generator", +"st","firestore","shuruhatik","long-stack-traces","version-guard","conventional-changelog-config-spec","dotgitignore", +"stringify-package","recommended","check-more-types","lazy-ass","ban-sensitive-files","deps-ok","dont-crack", +"git-issues","pre-git","simple-commit-message","winser","etsy","metric","aggregation","store2", +"exsolve","picoquery","modern-tar","fetch-retry","@types/npmlog","flush-promises","@yarnpkg/libzip","browser-dtector", +"react-inspector","@react-aria/tabs","deep-object-diff","@react-aria/utils","@ngard/tiny-isequal","@react-aria/toolbar", +"@react-stately/tabs","@react-types/shared","@storybook/docs-mdx","get-npm-tarball-url","use-resize-observer", +"@react-aria/landmark","@react-aria/overlays","lazy-universal-dotenv","react-transition-state","@react-stately/overlays", +"@react-aria/interactions","react-syntax-highlighter","@radix-ui/react-scroll-area","@devtools-ds/object-inspector", +"@types/react-syntax-highlighter","@aw-web-design/x-default-browser","@fal-works/esbuild-plugin-global-externals", +"design-systems","@glen/jest-raw-loader","@storybook/addon-storyshots","@storybook/addon-storyshots-puppeteer", +"eslint-config-torchbox","storybookjs","patternlab","django-pattern-library","django-templates","jinja2","findit2", +"inside","funsert","into-stream","Assert","music-metadata","livestream","livestreaming","gulp-rimraf","string.js", +"stringjs","S","s","codsen-utils","ranges-apply","ranges-push","string-left-right","ast-monkey-traverse","ranges-invert", +"jsp","mixed","stri","xhtml", +"get-east-asian-width","wcswidth","undici-types","payment processing","credit cards","generator-loopback", +"loopback-sdk-angular-cli","nodefly-register","strong-arc","strong-build","strong-deploy","strong-mesh-models", +"strong-registry","strong-start","strong-debugger","strong-swagger-ui","swagger-ui","LoopBack","Platform","alerts", +"event loop","heroku","master","nodeops","openshift","ops","pm","slc","slowest functions","strong-cli", +"strong-cluster-control","strongops","upstart","@bundled-es-modules/deepmerge","@bundled-es-modules/glob", +"@bundled-es-modules/memfs","@zip.js/zip.js","path-unified","@esm-bundle/chai-as-promised","@rollup/browser", +"@shoelace-style/shoelace","@web/test-runner-commands","hanbi","jsdoc-escape-at","jsdoc-tsimport-plugin", +"starlight-links-validator","style dictionary","dictionary","Android","css-to-react-native","@types/js-beautify", +"@types/shallowequal","stylis-plugin-rtl","ts-toolbelt","stylis-rule-sheet","zeit","hack","hacks","globjoin", +"mathml-tag-names","svg-tags","@types/balanced-match","@types/file-entry-cache","@types/global-modules", +"@types/globjoin","@types/imurmurhash","@types/postcss-less","@types/svg-tags","postcss-sass","stylelint-config", +"shortcss","css-values","babel-register-ts","delaration-strict-value","keyword","z-index","postcss-sorting", "eslint-config-hudochenkov","postcss-styled-syntax","prettier-config-hudochenkov","postcss-media-query-parser", -"postcss-resolve-nested-selector", -"github-contributors-list","bootstrap-styl","cookiejar","should-http","tinyify","frisbee","super","promised","supports", -"capability","truecolor","16m","esrap","zimmerframe","@types/sade","vscode-languageserver", +"postcss-resolve-nested-selector","github-contributors-list","bootstrap-styl","should-http","tinyify","frisbee","super", +"promised","supports","capability","truecolor","16m","esrap","zimmerframe","@types/sade","vscode-languageserver", "vscode-languageserver-protocol","svelte2tsx","svelte-language-server","@kiwi/eslint-config","@kiwi/prettier-config", -"@types/pug","postcss-easy-import","prettysize","@resvg/resvg-js","playwright-chromium","eslint-plugin-jest-formatting", -"sw-precache","git-release-notes","precache","tape-promise","autogen","promise.any","multilang-extract-comments", -"@readme/eslint-config","readmeio","swagger-nestjs","swagger-templates","swagger UI","istanbul-badges-readme","nodelint", -"still","mocha-phantomjs","travis-cov","jinja","swipe","framework7","gallery","slideshow","http-response-object", -"sync-rpc","then-request","flowgen2","system information","sysinfo","freebsd","openbsd","netbsd","cpu","cpuload", -"physical cores","logical cores","cores","socket type", -"fsstats","diskio","block devices","netstats","network interfaces","network connections","network stats","iface", -"printer","processes","users","internet","battery","docker stats","docker processes","graphic card","graphic controller", -"gpu","smart","disk layout","audio","bluetooth","wifi","wifinetworks","virtual box","virtualbox","vm","BIOS","chassis", -"symbol-es6","@jsenv/file-size-impact","construct-style-sheets-polyfill","hase","draht","limes","lusca","partof", -"timer2","uuidv4","crypto2","nocache","datasette","json-lines","processenv","stethoskop","flaschenpost", -"commands-events","nodeenv","roboter","assertthat","json-lines-client","cqs","cqrs","@codspeed/vitest-plugin", -"className","classList","override","@tailwindcss/oxide","@tapjs/after","@tapjs/after-each","@tapjs/asserts", -"@tapjs/before","@tapjs/before-each","@tapjs/chdir", -"@tapjs/core","@tapjs/filter","@tapjs/fixture","@tapjs/intercept","@tapjs/mock","@tapjs/node-serialize","@tapjs/run", -"@tapjs/snapshot","@tapjs/spawn","@tapjs/stdin","@tapjs/test","@tapjs/typescript","@tapjs/worker","resolve-import", -"tapjs","tapjs plugin","tap-out","tapes","@ljharb/resumer","@ljharb/through","array.prototype.every","dotignore", -"has-dynamic-import","ecstatic","npm-run-posix-or-windows","harness","chownr","yallist","@isaacs/fs-minipass","chmodr", -"events-to-array","brittle","b4a","streamx","fast-fifo","actor system","DDD","actor-system","front end","back end", -"@parcel/packager-ts","@parcel/transformer-typescript-types","cz-format-extension","telegram","telegram-api", -"telegram-client-api","tdlib","tglib","node-addon","tempdir","tmpfile","unique","seventh","lazyness","tree-kit", -"chroma-js","string-kit","nextgen-events","@cronvel/get-pixels","256 colors","true color","input field","gpm", -"screenbuffer", -"textbuffer","32-bit","charm","resumer","visualwidth","80s","ibm","@jridgewell/source-map","@ls-lint/ls-lint","astring", -"es8","@types/uglify-js","@test-runner/core","@test-runner/default-view","@test-runner/live-view", +"@types/pug","postcss-easy-import","prettysize","@resvg/resvg-js","eslint-plugin-jest-formatting","git-release-notes", +"precache","tape-promise","autogen","promise.any","multilang-extract-comments","@readme/eslint-config","readmeio", +"swagger-nestjs","swagger-templates","swagger UI","istanbul-badges-readme","nodelint","still","mocha-phantomjs", +"travis-cov","jinja","http-response-object","then-request","flowgen2","system information", +"sysinfo","freebsd","openbsd","netbsd","cpuload","physical cores","logical cores","cores","socket type","fsstats", +"diskio","block devices","netstats","network interfaces","network connections","network stats","iface","printer","users", +"internet","battery","docker stats","docker processes","graphic card","graphic controller","smart","disk layout", +"bluetooth","wifi","wifinetworks","virtual box","virtualbox","vm","BIOS","chassis","symbol-es6", +"@jsenv/file-size-impact","construct-style-sheets-polyfill","hase","draht","limes","lusca","partof","timer2","uuidv4", +"crypto2","nocache","datasette","json-lines","processenv","stethoskop","flaschenpost","commands-events","nodeenv", +"roboter","assertthat","json-lines-client","cqs","cqrs","@codspeed/vitest-plugin","className","classList","override", +"@tailwindcss/oxide", +"@tapjs/after","@tapjs/after-each","@tapjs/asserts","@tapjs/before","@tapjs/before-each","@tapjs/chdir","@tapjs/core", +"@tapjs/filter","@tapjs/fixture","@tapjs/intercept","@tapjs/mock","@tapjs/node-serialize","@tapjs/run","@tapjs/snapshot", +"@tapjs/spawn","@tapjs/stdin","@tapjs/test","@tapjs/typescript","@tapjs/worker","tapjs","tapjs plugin","tap-out","tapes", +"@ljharb/resumer","@ljharb/through","array.prototype.every","dotignore","has-dynamic-import","npm-run-posix-or-windows", +"harness","chownr","yallist","@isaacs/fs-minipass","chmodr","events-to-array","b4a","fast-fifo","front end", +"@parcel/packager-ts","@parcel/transformer-typescript-types","cz-format-extension","telegram-api","telegram-client-api", +"tglib","node-addon","seventh","lazyness","tree-kit","string-kit","nextgen-events","@cronvel/get-pixels","256 colors", +"true color","input field","gpm","screenbuffer","textbuffer","32-bit","resumer","visualwidth","80s","ibm", +"@jridgewell/source-map","@ls-lint/ls-lint", +"astring","@types/uglify-js","@test-runner/core","@test-runner/default-view","@test-runner/live-view", "@test-runner/oneline-view","@test-runner/tom","multiline-ts","spawn-process","only-allow","sinon-assert-stub", "sinon-mocha-test","unlinted","example","@devexpress/bin-v8-flags-filter","@devexpress/callsite-record","bowser", -"chrome-remote-interface","device-specs","elegant-spinner","get-os-info","import-lazy","is-podman", -"log-update-async-hook","moment-duration-format-commonjs","os-family","pinkie","promisify-event","read-file-relative", -"replicator","testcafe-browser-tools","testcafe-hammerhead","testcafe-legacy-api","testcafe-reporter-json", -"testcafe-reporter-list","testcafe-reporter-minimal","testcafe-reporter-spec","testcafe-reporter-xunit", -"testcafe-selector-generator","time-limit-promise","unquote","url-to-options","@devexpress/gulp-qunit-harness", -"@ffprobe-installer/ffprobe","@testcafe/publish-please","@types/callsite","@types/dedent","@types/useragent", -"browserstack-connector","caller","dom-walk","eslint-plugin-hammerhead","express-ntlm","gulp-clone", -"gulp-ll-next","gulp-mocha-simple","gulp-step","mocha-reporter-spec-with-retries","openssl-self-signed-certificate", -"recursive-copy","testcafe-browser-provider-browserstack","automated","QA","@types/dockerode","docker-compose", -"properties-reader","ssh-remote-port-forward","@types/async-lock","@types/properties-reader","@types/tar-fs", -"stringify-object-es5","codeclimate-test-reporter","cross-conf-env","headerify","is-number","teenytest", -"teenytest-promise","test double","fireworm","printf","spawn-args","styled_string","bluebird-retry", -"chai-shallow-deep-equal","saucie","eslint-config-mdcs","jpeg-js","three.js","3d","virtual-reality","augmented-reality", -"webgl","webgl2","webaudio","webgpu","webxr","get-port-cli","node-stdlib-browser","user-streams","hundreds","polendina", -"stream-spigot","streams2","unexpand","homedir","tilde","collapse","number-is-nan","profile","stats","bee-dnd","bee-tag", -"bee-form","bee-icon","bee-rate","bee-step","bee-tabs","bee-tile", +"chrome-remote-interface","device-specs","get-os-info","import-lazy","is-podman","log-update-async-hook", +"moment-duration-format-commonjs","os-family","pinkie","promisify-event","read-file-relative","replicator", +"testcafe-browser-tools","testcafe-hammerhead","testcafe-legacy-api","testcafe-reporter-json","testcafe-reporter-list", +"testcafe-reporter-minimal","testcafe-reporter-spec","testcafe-selector-generator","time-limit-promise","unquote", +"url-to-options","@devexpress/gulp-qunit-harness","@ffprobe-installer/ffprobe","@testcafe/publish-please", +"@types/callsite","@types/dedent","@types/useragent","browserstack-connector","caller","dom-walk", +"eslint-plugin-hammerhead","express-ntlm","gulp-clone","gulp-ll-next","gulp-mocha-simple","gulp-step", +"mocha-reporter-spec-with-retries","openssl-self-signed-certificate","recursive-copy", +"testcafe-browser-provider-browserstack","QA","@types/dockerode","docker-compose","properties-reader", +"ssh-remote-port-forward", +"@types/async-lock","@types/properties-reader","stringify-object-es5","cross-conf-env","headerify","is-number", +"teenytest","teenytest-promise","test double","fireworm","printf","spawn-args","styled_string","bluebird-retry", +"chai-shallow-deep-equal","saucie","eslint-config-mdcs","three.js","virtual-reality","augmented-reality","webgl2", +"webaudio","webgpu","webxr","node-stdlib-browser","user-streams","hundreds","polendina","stream-spigot","unexpand", +"number-is-nan","profile","stats","bee-dnd","bee-tag","bee-form","bee-icon","bee-rate","bee-step","bee-tabs","bee-tile", "bee-tree","bee-affix","bee-alert","bee-badge","bee-label","bee-menus","bee-modal","bee-panel","bee-radio","bee-table", "bee-anchor","bee-button","bee-drawer","bee-layout","bee-locale","bee-navbar","bee-select","bee-slider","bee-switch", -"bee-upload","bee-animate","bee-backtop","bee-loading","bee-message","bee-overlay","bee-popover","bee-svgicon", -"bee-tooltip","bee-calendar","bee-carousel","bee-cascader","bee-checkbox","bee-collapse","bee-dropdown","bee-timeline", -"bee-transfer","bee-clipboard","bee-breadcrumb","bee-datepicker","bee-form-group","bee-pagination","bee-popconfirm", -"bee-timepicker","bee-transition","bee-colorpicker","bee-input-group","bee-page-layout","bee-tree-select", -"bee-autocomplete","bee-button-group","bee-complex-grid","bee-form-control","bee-input-number","bee-notification", -"bee-progress-bar","bee-search-panel","bee-loading-state","bee-input-group-addon","gulp-cleancss","gulp-css-wrap", -"tinper-bee-core","less-plugin-inline-urls","tinper","bee", +"bee-upload","bee-animate","bee-backtop","bee-loading", +"bee-message","bee-overlay","bee-popover","bee-svgicon","bee-tooltip","bee-calendar","bee-carousel","bee-cascader", +"bee-checkbox","bee-collapse","bee-dropdown","bee-timeline","bee-transfer","bee-clipboard","bee-breadcrumb", +"bee-datepicker","bee-form-group","bee-pagination","bee-popconfirm","bee-timepicker","bee-transition","bee-colorpicker", +"bee-input-group","bee-page-layout","bee-tree-select","bee-autocomplete","bee-button-group","bee-complex-grid", +"bee-form-control","bee-input-number","bee-notification","bee-progress-bar","bee-search-panel","bee-loading-state", +"bee-input-group-addon","gulp-cleancss","gulp-css-wrap","tinper-bee-core","less-plugin-inline-urls","tinper","bee", "tinylibs","@deno/shim-deno-test","tinycolor","worker threads","thread pool","method","@types/react-native-vector-icons", "pushalert","react-native toast","react-native-toastify","toastify","react-native-notification","expo","Typescript", -"node-resemble-js","processmd","of","tldts","set-cookie","RFC6265","RFC2965","tinytim","trace", -"typedarray.prototype.slice","forEach","html-select","html-tokenize","aggregate","bs-logger","make-error", -"babel-preset-es2016","typescript-loader","migrate","migration","migrations","cli-tool","@ts-morph/common", -"code-block-writer","static analysis","code refactor","create-require","@tsconfig/node10","@tsconfig/node12", -"@tsconfig/node14","v8-compile-cache-lib","@cspotcode/source-map-support","dprint","@swc/wasm","ntypescript", +"node-resemble-js","processmd","of","set-cookie","RFC6265","RFC2965","tinytim","trace","typedarray.prototype.slice", +"forEach","html-select","html-tokenize","aggregate","babel-preset-es2016","typescript-loader","migrate","migration", +"cli-tool","@ts-morph/common","code-block-writer","static analysis","code refactor","create-require","@tsconfig/node10", +"@tsconfig/node12","@tsconfig/node14","v8-compile-cache-lib","@cspotcode/source-map-support","@swc/wasm","ntypescript", "util.promisify","fast-json-patch","omit-deep","power-assign","bre","rete","rule engine","rules engine", -"javascript rule engine","js rule engine","inference system","@types/strip-bom","@tsd/typescript", -"eslint-config-xo-typescript","typedefs", -"typedefinitions","jsonc-simple-parser","polite-json","sync-content","Microsoft","codelyzer","tslint-divid", -"@types/make-dir","tslint-immutable","tslint-misc-rules","tslint-microsoft-contrib","tslint-consistent-codestyle", -"ts-lint","typescript-tslint-plugin","fix-dts-default-cjs-exports","joycon","ts-essentials","typescript runner", -"@mixmark-io/domino","turndown-attendant","grunt-mocha","grunt-markdown","grunt-component-io","grunt-push-release", -"grunt-regex-replace","jshint-path-reporter","mocha-unfunk-reporter","grunt-concat-sourcemap","tap-browser-color", -"tweetnacl-util","curve25519","ed25519","nacl","poly1305","public","salsa20","signatures","twemoji-parser","DOM", -"Twitter","type-coverage-core","tagged-tag","@typescript/vfs","generics","media-typer","checking","@gerrit0/mini-shiki", -"@material/material-color-utilities","typedoc-theme","typedoc-plugin","material-design","material-3","typedocplugin", -"JsDocs","cli-prompt","concatenate","ebook","pandoc","kindlegen","latex","@types/mongoose", -"mongodb-memory-server-global","mongoose-findorcreate","prettier-tslint", -"sql-highlight","@sqltools/formatter","gulpclass","@types/sha.js","@sap/hana-client","@types/gulp-rename", -"standard-changelog","@google-cloud/spanner","@types/gulp-sourcemaps","@dprint/formatter","@esfx/canceltoken", -"@dprint/typescript","azure-devops-node-api","monocart-coverage-reports","mocha-fivemat-progress-reporter", -"eslint-formatter-autolinkable-stylish","commandpost","@types/power-assert","intelli-espower-loader", -"@types/postcss-modules-local-by-default","@types/postcss-modules-scope","@types/icss-utils", +"javascript rule engine","js rule engine","inference system","@types/strip-bom","typedefs","typedefinitions", +"jsonc-simple-parser","polite-json","sync-content","codelyzer","tslint-divid","@types/make-dir","tslint-immutable", +"tslint-misc-rules","tslint-microsoft-contrib","tslint-consistent-codestyle","ts-lint","typescript-tslint-plugin", +"joycon","typescript runner","@mixmark-io/domino","turndown-attendant","grunt-mocha","grunt-markdown", +"grunt-component-io","grunt-push-release","grunt-regex-replace","jshint-path-reporter","mocha-unfunk-reporter", +"grunt-concat-sourcemap","tap-browser-color","tweetnacl-util","curve25519","ed25519","nacl", +"poly1305","public","salsa20","signatures","twemoji-parser","Twitter","type-coverage-core","tagged-tag", +"@typescript/vfs","media-typer","checking","@gerrit0/mini-shiki","@material/material-color-utilities","typedoc-theme", +"material-3","JsDocs","cli-prompt","concatenate","ebook","pandoc","kindlegen","@types/mongoose", +"mongodb-memory-server-global","mongoose-findorcreate","prettier-tslint","sql-highlight","@sqltools/formatter", +"gulpclass","@types/sha.js","@sap/hana-client","@types/gulp-rename","standard-changelog","@google-cloud/spanner", +"@types/gulp-sourcemaps","@dprint/formatter","@esfx/canceltoken","@dprint/typescript","monocart-coverage-reports", +"mocha-fivemat-progress-reporter","eslint-formatter-autolinkable-stylish","commandpost","@types/power-assert", +"intelli-espower-loader","@types/postcss-modules-local-by-default","@types/postcss-modules-scope","@types/icss-utils", "@types/postcss-modules-extract-imports","@types/reserved-words","jest-environment-node-single-context", "postcss-import-sync2","sass-svg","promise-finally","typings-core","tslint-config-standard","definition","ecma","jsmin", "random-bytes","@uiw/formatter","@uiw/react-affix","@uiw/react-alert","@uiw/react-auto-link","@uiw/react-avatar", -"@uiw/react-back-top","@uiw/react-badge","@uiw/react-breadcrumb","@uiw/react-button-group","@uiw/react-calendar", -"@uiw/react-card","@uiw/react-carousel","@uiw/react-cascader","@uiw/react-checkbox","@uiw/react-collapse", -"@uiw/react-copy-to-clipboard","@uiw/react-date-input","@uiw/react-date-picker","@uiw/react-descriptions", -"@uiw/react-divider","@uiw/react-drawer","@uiw/react-dropdown","@uiw/react-empty","@uiw/react-file-input", -"@uiw/react-form","@uiw/react-grid","@uiw/react-layout","@uiw/react-list","@uiw/react-loader","@uiw/react-menu", -"@uiw/react-message","@uiw/react-modal","@uiw/react-month-picker","@uiw/react-notify","@uiw/react-pagination", -"@uiw/react-pin-code","@uiw/react-popover","@uiw/react-portal","@uiw/react-progress","@uiw/react-radio", -"@uiw/react-rate","@uiw/react-search-select","@uiw/react-search-tree","@uiw/react-select","@uiw/react-slider", -"@uiw/react-split","@uiw/react-steps","@uiw/react-switch","@uiw/react-table","@uiw/react-tabs","@uiw/react-tag", -"@uiw/react-textarea","@uiw/react-time-picker","@uiw/react-tooltip","@uiw/react-transfer","@uiw/react-tree", -"@uiw/react-tree-checked","media-query-fns","parsel-js","citty","hookable","mkdist","untyped","pretty-bytes-cli", -"browserify-header","@metcoder95/https-pem","dns-packet","jsondiffpatch","bail","trough","@types/extend","retext", -"unique-random","non-repeating","unist-util","xast","nlcst","visit","pullstream","match-stream","uncompress","pupa", -"is-npm","fixture-stdout","notifier","urn","uri mutation","url mutation","uri manipulation","url manipulation", -"uri template","url template","unified resource locator","unified resource identifier", -"query string","RFC 3986","RFC3986","RFC 6570","RFC6570","jquery-plugin","ecosystem:jquery","sauce-browsers", -"sauce-test","formstream","ylru","@eggjs/oxlint-config","@tsconfig/node18","@types/busboy","@types/proxy", +"@uiw/react-back-top", +"@uiw/react-badge","@uiw/react-breadcrumb","@uiw/react-button-group","@uiw/react-calendar","@uiw/react-card", +"@uiw/react-carousel","@uiw/react-cascader","@uiw/react-checkbox","@uiw/react-collapse","@uiw/react-copy-to-clipboard", +"@uiw/react-date-input","@uiw/react-date-picker","@uiw/react-descriptions","@uiw/react-divider","@uiw/react-drawer", +"@uiw/react-dropdown","@uiw/react-empty","@uiw/react-file-input","@uiw/react-form","@uiw/react-grid","@uiw/react-layout", +"@uiw/react-list","@uiw/react-loader","@uiw/react-menu","@uiw/react-message","@uiw/react-modal", +"@uiw/react-month-picker","@uiw/react-notify","@uiw/react-pagination","@uiw/react-pin-code","@uiw/react-popover", +"@uiw/react-portal","@uiw/react-progress","@uiw/react-radio","@uiw/react-rate","@uiw/react-search-select", +"@uiw/react-search-tree","@uiw/react-select","@uiw/react-slider","@uiw/react-split","@uiw/react-steps", +"@uiw/react-switch","@uiw/react-table","@uiw/react-tabs","@uiw/react-tag","@uiw/react-textarea","@uiw/react-time-picker", +"@uiw/react-tooltip","@uiw/react-transfer","@uiw/react-tree","@uiw/react-tree-checked","media-query-fns","parsel-js", +"citty","mkdist","untyped","pretty-bytes-cli","browserify-header","@metcoder95/https-pem","dns-packet","jsondiffpatch", +"trough","@types/extend","unique-random", +"non-repeating","xast","nlcst","visit","pullstream","match-stream","uncompress","pupa","is-npm","fixture-stdout", +"notifier","urn","uri mutation","url mutation","uri manipulation","url manipulation","uri template","url template", +"unified resource locator","unified resource identifier","query string","RFC 3986","RFC3986","RFC 6570","RFC6570", +"sauce-browsers","sauce-test","formstream","ylru","@eggjs/oxlint-config","@tsconfig/node18","@types/proxy", "@types/selfsigned","string.prototype.towellformed","urlopen","userprofile","yamlparser","browserscope","ua","ua-parse", -"ua-parser","user agent","user-agent","is-generator-function","is-typed-array","is-async-supported","rfc9562","bundt", -"diffs","find-parent-dir","githook","sanitisation","sanitise","@vue/shared","@vant/use","@vant/popperjs", -"@vue/runtime-core","diffable-html","vitest-canvas-mock","@vant/area-data","@vant/cli","@vant/eslint-config", -"@vant/icons","@vercel/go","@vercel/h3","@vercel/fun","@vercel/koa","@vercel/blob","@vercel/hono","@vercel/next", -"@vercel/node","@vercel/ruby","@vercel/rust","@vercel/elysia","@vercel/nestjs","@vercel/python","@vercel/express", -"@vercel/fastify","@vercel/redwood","@vercel/backends","@vercel/hydrogen", +"ua-parser","user agent","is-generator-function","is-typed-array","is-async-supported","rfc9562","bundt","diffs", +"find-parent-dir","githook","sanitise","@vant/use","@vant/popperjs","diffable-html","vitest-canvas-mock", +"@vant/area-data","@vant/cli","@vant/eslint-config","@vant/icons","@vercel/go","@vercel/h3","@vercel/fun","@vercel/koa", +"@vercel/blob", +"@vercel/hono","@vercel/next","@vercel/node","@vercel/ruby","@vercel/rust","@vercel/elysia","@vercel/nestjs", +"@vercel/python","@vercel/express","@vercel/fastify","@vercel/redwood","@vercel/backends","@vercel/hydrogen", "@vercel/build-utils","@vercel/detect-agent","@vercel/static-build","@vercel/remix-builder","epipebomb","promisepipe", "@sentry/node","@types/title","jaro-winkler","@types/chance","@types/dotenv","@vercel/client","pcre-to-regexp", "git-last-commit","@inquirer/search","@tootallnate/once","http-proxy-node16","@inquirer/checkbox","@inquirer/password", "@vercel/frameworks","@vercel/error-utils","line-async-iterator","@vercel/fs-detectors","@types/load-json-file", -"@vercel/routing-utils","@types/npm-package-arg","@types/write-json-file","@vercel-internals/types", -"@edge-runtime/node-utils","json-parse-better-errors","@types/jest-expect-message","@vercel-internals/constants", -"@alex_neo/jest-expect-message","@types/json-parse-better-errors","@vercel-internals/get-package-json","extsprintf", -"err","create-banner","postcss-header","viewer","viewer.js","teex","remove-trailing-separator","fs-mkdirp-stream", -"is-valid-glob","lead","resolve-options","stream-composer","to-through","value-or-function","vinyl-sourcemap", -"vinyl-adapter","classic","browser-split","ev-store","x-is-array","x-is-string","run-browser","vtree","artichokie", -"periscopic","http-proxy-3","strip-literal","es-module-lexer", -"postcss-modules","@oxc-project/types","host-validation-middleware","dev-server","build-tool","dotenv-local", +"@types/npm-package-arg","@types/write-json-file","@vercel-internals/types","@edge-runtime/node-utils", +"json-parse-better-errors","@types/jest-expect-message","@vercel-internals/constants","@alex_neo/jest-expect-message", +"@types/json-parse-better-errors","@vercel-internals/get-package-json","extsprintf","err","create-banner", +"postcss-header","viewer.js","teex","remove-trailing-separator","fs-mkdirp-stream","is-valid-glob","lead", +"resolve-options","stream-composer","to-through","value-or-function","vinyl-sourcemap","vinyl-adapter","classic", +"browser-split","ev-store","x-is-array","x-is-string","run-browser","vtree","dev-server","build-tool","dotenv-local", "slash-path","vite-plugin-builder","api-router","api-routers","vite-plugin-api","vite-plugin-rest-api","express-router", "file-system-based","rest-api","api-rest","Remix","Next.js","focus-trap","@shikijs/core","@shikijs/types", -"@vue/devtools-api","@vueuse/integrations","@iconify-json/simple-icons","@iconify/utils","@mdit-vue/shared", -"@mdit-vue/plugin-sfc","@mdit-vue/plugin-toc","markdown-it-mathjax3","@mdit-vue/plugin-title","@mdit-vue/plugin-headers", -"@types/markdown-it-emoji","@mdit-vue/plugin-component","@mdit-vue/plugin-frontmatter","@types/markdown-it-container", -"@types/postcss-prefix-selector","tinyrainbow","@vitest/runner","@vitest/snapshot","why-is-node-running", -"@vitest/pretty-format","birpc","local-pkg","@edge-runtime/vm","@antfu/install-pkg","node-localstorage","gulp-xo", -"vorpal-less","vorpal-repl","load-plugins","eyes","BDD","keytar","parse-semver","typed-rest-client","@types/read", -"@types/yazl","@types/cheerio","@types/url-join","@types/clone","@types/iconv-lite","vscode-oniguruma", -"@vue/runtime-dom","eslint-plugin-vue-libs", +"@iconify-json/simple-icons","@iconify/utils","@mdit-vue/shared","@mdit-vue/plugin-sfc","@mdit-vue/plugin-toc", +"markdown-it-mathjax3","@mdit-vue/plugin-title","@mdit-vue/plugin-headers","@types/markdown-it-emoji", +"@mdit-vue/plugin-component","@mdit-vue/plugin-frontmatter","@types/markdown-it-container", +"@types/postcss-prefix-selector","@vitest/snapshot","why-is-node-running","@vitest/pretty-format","birpc", +"node-localstorage","gulp-xo","vorpal-less","vorpal-repl","load-plugins","keytar","parse-semver","typed-rest-client", +"@types/read","@types/yazl","@types/url-join","@types/clone","@types/iconv-lite","vscode-oniguruma","@vue/runtime-dom", "@babel/plugin-syntax-pipeline-operator","@intlify/shared","@intlify/core-base","@intlify/devtools-types","intlify", -"@intlify/vue-i18n-loader","@types/mini-css-extract-plugin","@types/webpack-merge","cache-loader","markdown-loader", -"pug-plain-loader","@vue-macros/common","ast-walker-scope","muggle-string","unplugin-utils","@pinia/colada", -"@types/nightwatch","@vue/language-core","chromedriver","faked-promise","nightwatch-helpers","de-indent", +"@intlify/vue-i18n-loader","@types/mini-css-extract-plugin","@types/webpack-merge", +"markdown-loader","pug-plain-loader","@vue-macros/common","ast-walker-scope","muggle-string","unplugin-utils", +"@pinia/colada","@types/nightwatch","@vue/language-core","chromedriver","faked-promise","nightwatch-helpers","de-indent", "todomvc-app-css","foreachasync","sys","walkSync","exec-sh","outpipe","win-spawn","encrypted-attr", "lodash.issafeinteger","waterline-schema","waterline-utils","active-record","vargs","bdd-with-opts","gulp-debug","mu2", -"promise-simple","sauce-connect-launcher","spawn-mocha-parallel","sv-selenium","web3-eth","web3-net","web3-core", -"web3-types","web3-utils","web3-errors","web3-eth-abi","web3-eth-ens","web3-eth-iban","web3-validator", -"web3-rpc-methods","web3-eth-accounts","web3-eth-contract","web3-eth-personal","web3-providers-ws","web3-rpc-providers", -"web3-providers-http","in3","ganache","web3-providers-ipc","eslint-config-base-web3","@truffle/hdwallet-provider", -"Ethereum","@solana/spl-token","@solana/web3.js","kva-email-service","micro-ed25519-hdkey","ssl-http-with-docker", -"tailwind-animation-extension","telegram-assistant","web3-react-task","sol","@webassemblyjs/ast", -"@webassemblyjs/wasm-edit","@webassemblyjs/wasm-parser","acorn-import-phases","chrome-trace-event","@codspeed/core", -"@types/neo-async","@types/xxhashjs","assemblyscript","bundle-loader","coffee-loader","hash-wasm","meriyah", -"rehype-sanitize","wast-loader","webassembly-feature","xxhashjs","lodash.partial","eslint-config-th0r", -"postcss-icss-values","@carrotsearch/foamtree","eslint-config-th0r-react","analyzer","chart","zoomable", -"@webpack-cli/info","@webpack-cli/configtest","@types/envinfo","@fastify/express","@types/on-finished","@types/sockjs", -"@types/bonjour","bonjour-service","@types/serve-index","@types/serve-static","ansi-html-community", -"@types/connect-history-api-fallback","klona","@types/sockjs-client","reloading","hot-reloading", -"@types/webpack-sources","eslint-config-shellscape","prettier-plugin-package","dts-cli","@types/flat","externals", -"typedarray-to-buffer","yaeti","networking","comet","RFC-6455","@silentbot1/nat-api","@thaunknown/simple-peer", -"@webtorrent/http-node","addr-to-ip-port","bitfield","bittorrent-dht","bittorrent-protocol","cache-chunk-store", -"chunk-store-iterator","cpus","create-torrent","cross-fetch-ponyfill","fs-chunk-store","fsa-chunk-store", -"immediate-chunk-store","join-async-iterator","load-ip-set","lt_donthave","memory-chunk-store","parse-torrent", -"random-iterate","speed-limiter","throughput","torrent-discovery","torrent-piece","uint8-util","unordered-array-remove", -"ut_metadata","ut_pex","@webtorrent/semantic-release-config","airtap-manual","airtap-system","bittorrent-tracker", -"chrome-net","disc","network-address","path-esm","webtorrent-fixtures","bittorrent","bittorrent client","mad science", -"p2p","peer-to-peer","peers","swarm","torrent","web torrent","webrtc data","web worker","a gogo","url-search-params", -"poly","buster","exorcist","microtime","cujo","Promises/A+","isexe","taffydb","unit.js","@dabh/diagnostics","logform", -"one-time","@dabh/eslint-config-populist","abstract-winston-transport","cross-spawn-async", -"hock","winston-compat","file-stream-rotator","@alcalzone/release-script","@alcalzone/release-script-plugin-license", -"daily-rotate-file","log-rotate","logrotate","winston3","bower-config","propprop","wiredep-cli","break","carriage", -"new-line","newline","return","soft","workbox-build","workbox","workboxjs","service worker","fetch requests","offline", -"file manifest","wordbreak","linewrap","writeFile","atomic","HyBi","Push","WebSocket","WebSockets","enstore", -"x-ray-crawler","x-ray-parse","scrape","is-function","parse-headers","ssf","wmf","crc-32","adler-32","codepage","fflate", -"exit-on-epipe","@sheetjs/uglify-js","markdown-spellcheck","xlsb","dbf","dif","sylk","cash-cat","codacy-coverage", -"globify","jsonpath","unminified-webpack-plugin","XML","cdata","CDATA","doctype","processing instruction","Javascript", -"transforming", +"promise-simple","spawn-mocha-parallel","sv-selenium","web3-eth","web3-net","web3-core","web3-types","web3-utils", +"web3-errors","web3-eth-abi","web3-eth-ens","web3-eth-iban","web3-validator","web3-rpc-methods","web3-eth-accounts", +"web3-eth-contract","web3-eth-personal","web3-providers-ws","web3-rpc-providers","web3-providers-http","in3","ganache", +"web3-providers-ipc","eslint-config-base-web3","@truffle/hdwallet-provider","Ethereum","@solana/spl-token", +"@solana/web3.js","kva-email-service","micro-ed25519-hdkey","ssl-http-with-docker","tailwind-animation-extension", +"telegram-assistant","web3-react-task","sol", +"@webassemblyjs/ast","@webassemblyjs/wasm-edit","@webassemblyjs/wasm-parser","acorn-import-phases","chrome-trace-event", +"@codspeed/core","@types/neo-async","@types/xxhashjs","assemblyscript","bundle-loader","coffee-loader","hash-wasm", +"meriyah","rehype-sanitize","wast-loader","webassembly-feature","xxhashjs","lodash.partial","eslint-config-th0r", +"postcss-icss-values","@carrotsearch/foamtree","eslint-config-th0r-react","analyzer","@webpack-cli/info", +"@webpack-cli/configtest","@types/envinfo","@fastify/express","@types/on-finished","@types/sockjs","@types/bonjour", +"bonjour-service","@types/serve-index","@types/serve-static","@types/connect-history-api-fallback", +"@types/sockjs-client","reloading","hot-reloading","@types/webpack-sources","eslint-config-shellscape", +"prettier-plugin-package","dts-cli","@types/flat","externals","typedarray-to-buffer","yaeti","networking","comet", +"@silentbot1/nat-api","@thaunknown/simple-peer","@webtorrent/http-node","addr-to-ip-port","bitfield","bittorrent-dht", +"bittorrent-protocol","cache-chunk-store","chunk-store-iterator","cpus","create-torrent","cross-fetch-ponyfill", +"fs-chunk-store","fsa-chunk-store","immediate-chunk-store","join-async-iterator","load-ip-set", +"lt_donthave","memory-chunk-store","parse-torrent","random-iterate","speed-limiter","throughput","torrent-discovery", +"torrent-piece","uint8-util","unordered-array-remove","ut_metadata","ut_pex","@webtorrent/semantic-release-config", +"airtap-manual","airtap-system","bittorrent-tracker","chrome-net","disc","network-address","path-esm", +"webtorrent-fixtures","bittorrent","bittorrent client","mad science","p2p","peer-to-peer","peers","swarm","torrent", +"web torrent","webrtc data","web worker","a gogo","url-search-params","poly","buster","exorcist","microtime","cujo", +"Promises/A+","isexe","unit.js","@dabh/diagnostics","one-time","abstract-winston-transport","cross-spawn-async","hock", +"file-stream-rotator","@alcalzone/release-script","@alcalzone/release-script-plugin-license","daily-rotate-file", +"log-rotate","logrotate","winston3","bower-config","propprop","wiredep-cli","carriage","new-line","newline","return", +"soft","workbox-build","workbox", +"workboxjs","service worker","fetch requests","offline","file manifest","wordbreak","linewrap","writeFile","atomic", +"HyBi","WebSocket","enstore","x-ray-crawler","x-ray-parse","scrape","is-function","parse-headers","ssf","wmf","crc-32", +"adler-32","codepage","exit-on-epipe","@sheetjs/uglify-js","markdown-spellcheck","xlsb","dbf","dif","sylk","cash-cat", +"codacy-coverage","globify","XML","cdata","CDATA","doctype","processing instruction","Javascript","transforming", "convertor","converting","conversion","node-expat","dom-js","xmltest","DOMParser","XMLSerializer","find-cache-directory", "func-xml","@babel/plugin-proposal-unicode-property-regex","@unicode/unicode-14.0.0","babel-plugin-array-includes", -"babel-plugin-transform-xregexp","unicode-property-value-aliases","regular expression","whitelist", -"@scion-scxml/test-framework","statechart","state machine","finite state machine","finite automata","scxml", -"interpreter","@types/deep-equal","@types/express-ws","@types/utf8","xterm-benchmark","terminal-emulator", -"jest-ts-webcompat-resolver","YAML","yaml2json","json2yaml","browserslist-generator","yargs-test-extends", -"babel-plugin-transform-inline-imports-commonjs","death","loud-rejection","repeating","request-capture-har","roadrunner", -"babel-preset-es2015-node4","babel-preset-node5","eslint-config-fb-strict","eslint-config-kittens", -"eslint-plugin-flow-vars","eslint-plugin-no-async-without-await","@yeoman/adapter","@yeoman/conflicter", -"@yeoman/namespace","@yeoman/transform","@yeoman/types","fly-import","grouped-queue","mem-fs","mem-fs-editor", -"which-package-manager","@yeoman/eslint","esmocha","sinon-test","github-username","yes","no","true", -"false","lenient","cli-list","fullname","parse-help","root-check","npm-keyword","yeoman-doctor","humanize-string", -"yeoman-character","registry-url","@jonahsnider/benchmark","pad-component","cowsay","say","zeromq","0mq","ømq","libzmq", -"binding","@types/cookie-parser","@types/express-useragent","@types/morgan","express-useragent","schemas", -"runtime types","DSL","@externs/nodejs","@types/systemjs","JSON2","char-split","express-state","firefox-profile", -"istanbul-middleware","shallow-copy","stack-mapper","tap-finished","zuul-localtunnel","browzers","bulk-require", -"zuul-ngrok","@phenomnomnominal/tsquery","Unit Testing","Storybook","motion-dom","motion-utils","@radix-ui/react-dialog", -"@thednp/dommatrix","react animation","pose","react pose","popmotion","framer","waapi","belalangkayu","rengginangbasi", -"tehtarik3","sort-array","compute-scroll-into-view","@docusaurus/module-type-aliases","@testing-library/preact", -"babel-plugin-no-side-effect-class-properties","babel-preset-react-native","flow-coverage-report", -"get-pkg-repo","enhanced input","autosuggest","typeahead","omnibox","WAI-ARIA","multiple selection","focus","keyboards", -"mice","pen","pointer","pseudos","ring","textarea","trackpad","@augment-vir/core","@date-vir/duration","deepcopy-esm", -"typed-event-target","@web/dev-server-esbuild","execute-in-browser","istanbul-smart-text-reporter","runstorm","augment", -"vir","augment-vir","toolchain","JSONC","JSX","TSX","GraphQL","@commercetools-frontend/application-components", +"babel-plugin-transform-xregexp","unicode-property-value-aliases","regular expression","@scion-scxml/test-framework", +"statechart","state machine","finite state machine","finite automata","scxml","interpreter","@types/deep-equal", +"@types/express-ws", +"@types/utf8","xterm-benchmark","terminal-emulator","jest-ts-webcompat-resolver","YAML","yaml2json","json2yaml", +"browserslist-generator","yargs-test-extends","babel-plugin-transform-inline-imports-commonjs","death","loud-rejection", +"repeating","request-capture-har","roadrunner","babel-preset-es2015-node4","babel-preset-node5", +"eslint-config-fb-strict","eslint-config-kittens","eslint-plugin-flow-vars","eslint-plugin-no-async-without-await", +"@yeoman/conflicter","fly-import","grouped-queue","mem-fs","which-package-manager","sinon-test","github-username","yes", +"no","true","false","lenient","cli-list","fullname","parse-help","root-check","npm-keyword","yeoman-doctor", +"humanize-string","yeoman-character","registry-url","@jonahsnider/benchmark","pad-component","cowsay","say","zeromq", +"0mq","ømq","libzmq","binding","@types/express-useragent","express-useragent","schemas","runtime types","DSL", +"@externs/nodejs","JSON2","char-split","express-state","firefox-profile","istanbul-middleware","shallow-copy", +"stack-mapper", +"tap-finished","zuul-localtunnel","browzers","bulk-require","zuul-ngrok","Unit Testing","Storybook","motion-dom", +"motion-utils","@radix-ui/react-dialog","@thednp/dommatrix","react animation","popmotion","belalangkayu", +"rengginangbasi","tehtarik3","sort-array","compute-scroll-into-view","babel-plugin-no-side-effect-class-properties", +"flow-coverage-report","enhanced input","autosuggest","typeahead","omnibox","WAI-ARIA","multiple selection","focus", +"keyboards","mice","pen","pointer","pseudos","ring","trackpad","deepcopy-esm","typed-event-target","execute-in-browser", +"runstorm","toolchain","JSONC","JSX","TSX","GraphQL","@commercetools-frontend/application-components", "@commercetools-frontend/application-config","@commercetools-frontend/assets", "@commercetools-frontend/babel-preset-mc-app","@commercetools-frontend/mc-dev-authentication", "@commercetools-frontend/mc-html-template","@commercetools/http-user-agent","@formatjs/cli-lib","@rollup/plugin-graphql", -"@svgr/babel-preset","@types/webpack-bundle-analyzer","@vitejs/plugin-react-swc","babel-plugin-formatjs", -"graphql-request","moment-locales-webpack-plugin","svg-url-loader","thread-loader", -"@commercetools/composable-commerce-test-data","@types/moment-locales-webpack-plugin","@vue/cli-plugin-babel", -"@vue/cli-plugin-typescript","@vue/cli-service","eslint-plugin-prettier-vue","rollup-plugin-vue","vue 3", -"@vue/cli-plugin-unit-mocha","symlink-dir","tokenize","dogstatsd","datadog","telegraf","adr", -"decision record","any decision record","architectural decision","architectural decision record","architecture decision", -"architecture decision record","software quality","bplist-parser","@types/katex","katex","tex","hyperlink", +"babel-plugin-formatjs","graphql-request","moment-locales-webpack-plugin","thread-loader", +"@commercetools/composable-commerce-test-data","@types/moment-locales-webpack-plugin","@vue/cli-plugin-unit-mocha", +"symlink-dir","tokenize","dogstatsd","datadog","telegraf", +"adr","decision record","any decision record","architectural decision","architectural decision record", +"architecture decision","architecture decision record","software quality","@types/katex","tex","hyperlink", "@type-challenges/utils","deserialization","deserialize","detect-europe-js","is-standalone-pwa","ua-is-frozen", -"client-hints","device","browser-detection","device-detection","os-detection","bot-detection","ai-detection", -"app-detection","crawler-detection","youch","@adonisjs/ace","@adonisjs/env","parse-imports","@adonisjs/fold", -"@adonisjs/hash","@adonisjs/repl","youch-terminal","@poppinss/utils","@adonisjs/config","@adonisjs/events", -"@adonisjs/health","@adonisjs/logger","@poppinss/colors","@poppinss/dumper","@poppinss/macroable","@adonisjs/bodyparser", +"client-hints","browser-detection","device-detection","os-detection","bot-detection","ai-detection","app-detection", +"crawler-detection","youch","@adonisjs/ace","@adonisjs/env","parse-imports","@adonisjs/fold","@adonisjs/hash", +"@adonisjs/repl","youch-terminal","@poppinss/utils","@adonisjs/config","@adonisjs/events","@adonisjs/health", +"@adonisjs/logger","@poppinss/colors","@poppinss/dumper","@poppinss/macroable","@adonisjs/bodyparser", "@adonisjs/encryption","@adonisjs/application","@adonisjs/http-server","error-stack-parser-es","argon2","edge.js", "@japa/assert","@japa/runner","@japa/snapshot","@japa/expect-type","@japa/file-system","@adonisjs/tsconfig", "ts-node-maintained","@adonisjs/assembler","@types/test-console","@adonisjs/eslint-config","@adonisjs/prettier-config", -"adonisjs","@aneuhold/core-ts-api-lib","@aneuhold/core-ts-lib", -"@aneuhold/local-npm-registry","@aneuhold/main-scripts","@capacitor/cli","@trapezedev/project","@types/slice-ansi", -"resources","splash screen","webOS","@envelop/types","@envelop/instrumentation","@whatwg-node/promise-helpers", -"@ionic/cli-framework-output","@angular-eslint/eslint-plugin","@angular-eslint/eslint-plugin-template", -"@angular-eslint/schematics","ng-packagr","docz","docz-utils","docz-theme-default", -"@asdfgertyjhnpm/nesciunt-molestias-reprehenderit-occaecati","@drftgyhuji7npm/rem-sint-necessitatibus-possimus", -"@drftgyhuji7npm/repellendus-eum-et-itaque","typeerror","Reflect.getPrototypeOf","Int8Array","Array","configurable", -"minimal","descriptors","channel","matchAll","Uint32Array","Array.prototype.filter","setter","Uint16Array","exit-code", -"isConcatSpreadable","weakmap","syntaxerror","sharedarraybuffer","Object","Array.prototype.flat","toSorted","typesafe", -"preserve-symlinks","negative zero","[[Prototype]]","tester","ArrayBuffer.prototype.slice","byteOffset","zero", -"ArrayBuffer#slice","trimRight","getter","Array.prototype.contains","findLastIndex","last","Int16Array","Int32Array", -"rangeerror","Float32Array","take","workspace:*","byteLength", -"censor","Symbol.toStringTag","operating-system","coercible","Function.prototype.name","gdpr","ArrayBuffer", -"private data","Object.fromEntries","0","tostringtag","-0","negative","Array.prototype.findLast","enumerable","toobject", -"interrupts","groupBy","handlers","reuse","Float64Array","group","some","collection.es6","sameValueZero","positive", -"code points","regular expressions","findLast","robust","description","Uint8ClampedArray","pnpm9","length", -"defineProperty","RegExp#flags","valid","accessor","@smithy/types","aws-lambda","elapsed-time-logger","gulp-open", -"cupertino","pane","slide","@pouchlab/ui","chai-jquery","corejs-typeahead","doiuse","gulp-add-src","gulp-cache-bust", -"gulp-check-deps","gulp-sass-lint","gulp4-run-sequence","is-empty-object","motion-ui","sassy-lists", -"undertaker-forward-reference","vinyl-named","handlebars-helper-rel","handlebars-helper-slugify","tinygradient", -"@bokub/prettier-config","gradient", -"gradients","grommet-icons","@chromatic-com/storybook","@storybook/addon-a11y","@storybook/addon-toolbars", -"@storybook/addon-webpack5-compiler-babel","@storybook/manager-api","@storybook/source-loader", -"@testing-library/testcafe","babel-plugin-transform-imports","chromatic","grommet-theme-hpe","jest-styled-components", -"react-shadow","tarball-extract","testcafe-react-selectors","grommet.io","grommetux","theming","sticker sheets", -"design patterns","app templates","atomic design","WCAG 2.1","keyboard navigation","screen reader tags","interaction", -"graphical user interface","dart-sass","grunt-jekyll","zepto","lightbox","@next/font","axe-playwright", -"@storybook/test-runner","@base-ui-components/react","@storybook/addon-webpack5-compiler-swc","find-process", -"@types/pretty","chromium","launch-image","splashscreen","splash-screen","image-generation","mstile","pwa-assets", -"@apitools/openapi-parser","base64-arraybuffer","xml-but-prettier","babel-plugin-template-html-minifier","inspectpack", -"Custom Element","Web Component","swagger ui","openapi ui","openapi themes","openapi viewer","openapi renderer", -"openapi explorer","swagger themes","animatable","@react-native/babel-preset","collapsible","accordion", -"rollup-plugin-local-resolve","swipeable","customizable","touchscreen","listview","swipe-to-delete","swipe-actions", -"use-composed-ref","use-latest","@preconstruct/cli","autosize","grow","md-writer","@types/common-tags", -"decimal.js-light","victory-vendor","@recharts/devtools","@storybook/builder-vite","@storybook/react-vite", -"@stryker-mutator/typescript-checker","@stryker-mutator/vitest-runner","@types/d3-interpolate","@types/d3-time-format", -"babel-plugin-dev-expression","eslint-config-airbnb-extended","eslint-plugin-react-perf","vitest-axe", -"@riotjs/dom-bindings","@riotjs/compiler","@riotjs/prettier-config","@riotjs/register","@riotjs/util", -"@wdio/mocha-framework","@wdio/sauce-service","bianco.attr","bianco.query","cumpa","curri","eslint-config-riot", -"rollup-plugin-riot","custom tags","minimalist","data binding","riotjs","riot.js","testcafe-browser-provider-saucelabs", -"sortable","reorder","ng-sortable","@use-gesture/vanilla","tdesign-icons-vue-next","@rollup/plugin-eslint", -"@rollup/plugin-url","@soerenmartius/vue3-clipboard","@tdesign/site-components","@tdesign/theme-generator","dom-parser", -"lodash.upperfirst","qrcode.vue","rollup-plugin-ignore-import","rollup-plugin-static-import","rollup-plugin-styles", -"tdesign-publish-cli","vite-plugin-tdoc", -"tdesign","babel-plugin-html-tag","postcss-css-variables","postcss-hexrgba","postcss-prefixer", -"rollup-plugin-module-replacement","rollup-plugin-string","uploader","preview","chunk","image-edit","sockets","ready", -"win32","gulp-convert-css-var","picklog","wechat","weixin","@formatjs/intl-localematcher","@napi-rs/simple-git", -"@shikijs/twoslash","@theguild/remark-mermaid","better-react-mathjax","estree-util-value-to-estree", -"react-compiler-runtime","react-medium-image-zoom","remark-math","remark-reading-time","remark-smartypants", -"unist-util-remove","unist-util-visit-children","@types/negotiator","esbuild-plugin-svgr", -"esbuild-react-compiler-plugin","make-synchronized","make-synchronous","sync-threads","synchronize","fs-fixture", -"@ibyar/decorators","aurora","ibyar","expressions","template-syntax","template-expression","scope","evaluation", -"command-center","rich-text-editor","tiptap","@types/babel__preset-env","eslint-plugin-no-null","allure","codeceptjs", -"testops","@intlayer/chokidar","@intlayer/config","@intlayer/core","@intlayer/types","intlayer","@types/cls-hooked", -"@utils/ts-config","@utils/ts-config-types","@utils/tsdown-config", -"user-agents","unist-util-remove-position","@bugsnag/core","@bugsnag/delivery-react-native", -"@bugsnag/plugin-console-breadcrumbs","@bugsnag/plugin-network-breadcrumbs","@bugsnag/plugin-react", -"@bugsnag/plugin-react-native-client-sync","@bugsnag/plugin-react-native-event-sync", +"adonisjs","@aneuhold/core-ts-api-lib","@aneuhold/core-ts-lib","@aneuhold/local-npm-registry","@aneuhold/main-scripts", +"@capacitor/cli","@trapezedev/project","@types/slice-ansi","resources","splash screen","webOS","@envelop/types", +"@envelop/instrumentation","@whatwg-node/promise-helpers","@ionic/cli-framework-output","@angular-eslint/eslint-plugin", +"@angular-eslint/eslint-plugin-template","@angular-eslint/schematics","ng-packagr","docz","docz-utils", +"docz-theme-default","@asdfgertyjhnpm/nesciunt-molestias-reprehenderit-occaecati", +"@drftgyhuji7npm/rem-sint-necessitatibus-possimus","@drftgyhuji7npm/repellendus-eum-et-itaque","typeerror", +"Reflect.getPrototypeOf","Int8Array","Array","configurable","descriptors","channel","matchAll","Uint32Array", +"Array.prototype.filter","setter","Uint16Array","exit-code","isConcatSpreadable","weakmap","syntaxerror", +"sharedarraybuffer","Object","Array.prototype.flat","toSorted","typesafe","preserve-symlinks","negative zero", +"[[Prototype]]","tester","ArrayBuffer.prototype.slice","byteOffset","zero","ArrayBuffer#slice","trimRight","getter", +"Array.prototype.contains","findLastIndex","last","Int16Array","Int32Array","rangeerror","Float32Array","take", +"workspace:*","byteLength","censor","Symbol.toStringTag","operating-system", +"coercible","Function.prototype.name","ArrayBuffer","private data","Object.fromEntries","0","tostringtag","-0", +"negative","Array.prototype.findLast","enumerable","toobject","interrupts","groupBy","handlers","reuse","Float64Array", +"group","some","collection.es6","sameValueZero","positive","code points","regular expressions","findLast","robust", +"description","Uint8ClampedArray","pnpm9","length","defineProperty","RegExp#flags","valid","accessor","@smithy/types", +"aws-lambda","elapsed-time-logger","gulp-open","cupertino","pane","@pouchlab/ui","chai-jquery","corejs-typeahead", +"doiuse","gulp-add-src","gulp-cache-bust","gulp-check-deps","gulp-sass-lint","gulp4-run-sequence","is-empty-object", +"motion-ui","sassy-lists","undertaker-forward-reference","vinyl-named","handlebars-helper-rel", +"handlebars-helper-slugify","tinygradient","@bokub/prettier-config","gradient","gradients","grommet-icons", +"@storybook/addon-toolbars","@storybook/manager-api","@storybook/source-loader", +"@testing-library/testcafe","babel-plugin-transform-imports","grommet-theme-hpe","jest-styled-components","react-shadow", +"tarball-extract","testcafe-react-selectors","grommet.io","grommetux","theming","sticker sheets","design patterns", +"app templates","atomic design","WCAG 2.1","keyboard navigation","screen reader tags","interaction", +"graphical user interface","dart-sass","grunt-jekyll","zepto","@next/font","axe-playwright","@storybook/test-runner", +"@base-ui-components/react","@storybook/addon-webpack5-compiler-swc","find-process","@types/pretty","chromium", +"launch-image","splashscreen","splash-screen","image-generation","mstile","pwa-assets","@apitools/openapi-parser", +"base64-arraybuffer","xml-but-prettier","babel-plugin-template-html-minifier","inspectpack","Custom Element", +"Web Component","swagger ui","openapi ui","openapi themes","openapi viewer","openapi renderer","openapi explorer", +"swagger themes","@react-native/babel-preset","collapsible","accordion","rollup-plugin-local-resolve","swipeable", +"touchscreen","listview","swipe-to-delete","swipe-actions","use-composed-ref","use-latest","@preconstruct/cli", +"autosize","grow", +"md-writer","@types/common-tags","decimal.js-light","victory-vendor","@recharts/devtools","@storybook/builder-vite", +"@storybook/react-vite","@stryker-mutator/typescript-checker","@stryker-mutator/vitest-runner","@types/d3-interpolate", +"@types/d3-time-format","eslint-config-airbnb-extended","eslint-plugin-react-perf","@riotjs/dom-bindings", +"@riotjs/compiler","@riotjs/prettier-config","@riotjs/register","@riotjs/util","@wdio/mocha-framework", +"@wdio/sauce-service","bianco.attr","bianco.query","cumpa","curri","eslint-config-riot","rollup-plugin-riot", +"custom tags","minimalist","data binding","riotjs","riot.js","testcafe-browser-provider-saucelabs","ng-sortable", +"@use-gesture/vanilla","tdesign-icons-vue-next","@rollup/plugin-url","@soerenmartius/vue3-clipboard", +"@tdesign/site-components","@tdesign/theme-generator","dom-parser","lodash.upperfirst","qrcode.vue", +"rollup-plugin-ignore-import","rollup-plugin-static-import","rollup-plugin-styles","tdesign-publish-cli", +"vite-plugin-tdoc","tdesign","babel-plugin-html-tag","postcss-css-variables","postcss-hexrgba","postcss-prefixer", +"rollup-plugin-module-replacement","rollup-plugin-string","uploader","chunk","image-edit","sockets","ready","win32", +"gulp-convert-css-var","picklog","wechat","weixin", +"@formatjs/intl-localematcher","@napi-rs/simple-git","@shikijs/twoslash","@theguild/remark-mermaid", +"better-react-mathjax","estree-util-value-to-estree","react-compiler-runtime","react-medium-image-zoom","remark-math", +"remark-reading-time","remark-smartypants","unist-util-remove","unist-util-visit-children","@types/negotiator", +"esbuild-plugin-svgr","esbuild-react-compiler-plugin","make-synchronized","make-synchronous","sync-threads", +"synchronize","@ibyar/decorators","aurora","ibyar","expressions","template-syntax","template-expression","evaluation", +"command-center","rich-text-editor","tiptap","@types/babel__preset-env","eslint-plugin-no-null","allure","testops", +"@intlayer/chokidar","@intlayer/core","@types/cls-hooked","user-agents","unist-util-remove-position","@bugsnag/core", +"@bugsnag/delivery-react-native","@bugsnag/plugin-console-breadcrumbs","@bugsnag/plugin-network-breadcrumbs", +"@bugsnag/plugin-react","@bugsnag/plugin-react-native-client-sync","@bugsnag/plugin-react-native-event-sync", "@bugsnag/plugin-react-native-global-error-handler","@bugsnag/plugin-react-native-hermes", "@bugsnag/plugin-react-native-session","@bugsnag/plugin-react-native-unhandled-rejection","iserror","bugsnag", -"stability","@enact/i18n","ilib","eslint-plugin-astro","control-panel","backendless-request","backendless-rt-client", -"backendless-console-sdk","bannerize","backendless.com","ahooks","better-scroll","@zarm-design/bem","@use-gesture/react", -"@zarm-design/icons","@floating-ui/react-dom-interactions","@zarm-design/cli","zarm-ui","zarm-mobile","@enact/spotlight", -"@enact/docs-utils","@enact/ui-test-utils","eslint-config-enact-proxy","react select","react dropdown", -"accessible react select","accessible","@reporters/github","titanium-sdk","tidev","iphone","@antora/expand-path-helper", -"antora","static site","web publishing","@asyncapi/generator-components","@asyncapi/generator-helpers", -"@asyncapi/generator-hooks","@asyncapi/multi-parser","fs.extra","global-dirs","requireg","unixify","react-loadable", -"combine-promises","@docusaurus/babel","@docusaurus/logger","@docusaurus/bundler","react-router-config", -"@docusaurus/mdx-loader","@docusaurus/utils-common","@docusaurus/utils-validation","react-loadable-ssr-addon-v5-slorber", -"@total-typescript/shoehorn","@types/react-router-config","parcel-bundler","Vue","unstyled","@nestjsx/crud-request", -"@nestjsx/util","crud-generator","frameworks","@zmotivat0r/o0","p-filter","p-locate","dependency-management", -"continuous-integration","npmjs","package-manager","gatsby","hugo","netlify","core-js-pure","jest-location-mock", -"@types/module-alias","webpack-plugin-serve","hotreload","@pothos/test-utils","pothos","yalc","@strapi/core", -"@strapi/i18n","@strapi/admin","@strapi/email","@strapi/types","@strapi/utils","@strapi/logger","@strapi/upload", -"@types/nodemon","@strapi/openapi","@strapi/database","@strapi/cloud-cli","@strapi/generators","get-latest-version", -"@strapi/permissions","@strapi/data-transfer","@strapi/content-manager","@strapi/content-releases", -"@strapi/review-workflows","@strapi/typescript-utils","@strapi/content-type-builder","@strapi/ts-zen", -"eslint-config-custom","@types/webpack-hot-middleware","strapi","cmf","content management framework","admin panel", -"koajs","jam","graphqL","infrastructure","self hosted", -"lernajs","snake-case","@types/svg-parser","http-status-emojis","tsparticles-plugin","@tsparticles/interaction", -"@tsparticles/move","tsparticles-shape","@tsparticles/updater","@aws-sdk/lib-storage","@aws-sdk/s3-presigned-post", -"express-interceptor","express-prom-bundle","grant","tus-js-client","webdav","resumable uploads","tus","dropbox", -"webpack-chain","@vuepress/types","vue-server-renderer","@vue/babel-preset-app","vuepress-plugin-container", +"stability","eslint-plugin-astro","control-panel","backendless-request","backendless-rt-client", +"backendless-console-sdk","bannerize","backendless.com","better-scroll","@zarm-design/bem","@use-gesture/react", +"@zarm-design/icons", +"@floating-ui/react-dom-interactions","@zarm-design/cli","zarm-ui","zarm-mobile","@enact/spotlight","@enact/docs-utils", +"@enact/ui-test-utils","eslint-config-enact-proxy","react select","react dropdown","accessible react select", +"titanium-sdk","tidev","iphone","@antora/expand-path-helper","@asyncapi/generator-components", +"@asyncapi/generator-helpers","@asyncapi/generator-hooks","@asyncapi/multi-parser","fs.extra","global-dirs","requireg", +"unixify","react-loadable","combine-promises","@docusaurus/babel","@docusaurus/logger","@docusaurus/bundler", +"react-router-config","@docusaurus/mdx-loader","@docusaurus/utils-common","@docusaurus/utils-validation", +"react-loadable-ssr-addon-v5-slorber","@total-typescript/shoehorn","@types/react-router-config","Vue","unstyled", +"@nestjsx/crud-request","@nestjsx/util","crud-generator","frameworks","@zmotivat0r/o0","p-filter","p-locate", +"dependency-management","continuous-integration","npmjs","package-manager","gatsby","hugo","core-js-pure", +"jest-location-mock","@types/module-alias","webpack-plugin-serve","hotreload","@pothos/test-utils","pothos","yalc", +"@strapi/core","@strapi/i18n","@strapi/admin","@strapi/email","@strapi/types","@strapi/utils", +"@strapi/logger","@strapi/upload","@types/nodemon","@strapi/openapi","@strapi/database","@strapi/cloud-cli", +"@strapi/generators","get-latest-version","@strapi/permissions","@strapi/data-transfer","@strapi/content-manager", +"@strapi/content-releases","@strapi/review-workflows","@strapi/typescript-utils","@strapi/content-type-builder", +"@strapi/ts-zen","eslint-config-custom","@types/webpack-hot-middleware","strapi","cmf","content management framework", +"koajs","jam","graphqL","infrastructure","snake-case","@types/svg-parser","http-status-emojis", +"@tsparticles/interaction","@tsparticles/move","tsparticles-shape","@tsparticles/updater","@aws-sdk/lib-storage", +"@aws-sdk/s3-presigned-post","express-interceptor","express-prom-bundle","grant","tus-js-client","webdav", +"resumable uploads","tus","dropbox","webpack-chain","vue-server-renderer","@vue/babel-preset-app", "vuepress-html-webpack-plugin","@types/diacritics","vuepress-plugin-smooth-scroll","detect-browser", -"@walletconnect/types","@walletconnect/safe-json","@walletconnect/window-getters","@walletconnect/window-metadata", -"@ethersproject/address","@types/lodash.isnumber","wallet","walletconnect","jsonrpc","cryptocurrency","dapp", -"@walletconnect/utils","@walletconnect/crypto","@walletconnect/legacy-types","@walletconnect/legacy-utils", -"@types/qrcode","@walletconnect/legacy-client","@walletconnect/jsonrpc-provider", -"@walletconnect/jsonrpc-http-connection","ethereum-test-network","@wordpress/element","wordpress","gutenberg","center", -"jasmine-co","jasmine-ts","selenium-mock","body scroll","body scroll lock","react scroll lock","react scroll","freeze", -"disable","overflow","vanilla-js","tablet", -"bsl","broccoli-node-info","resolve-path","@types/console-ui","@types/esm","@types/findup-sync","@types/sane", -"@types/underscore.string","broccoli-node-api","mocha-jshint","babel-plugin-optimize-starts-with","replacement","html4", -"invalid","color-name","is-whitespace","verb","mediaquery","csstree","completion","apollo-link-context","decap-cms", -"aws-cognito","what-the-diff","gotrue-js","git-gateway","gateway","napa","detector","tinydate","tweezer.js", -"medium-zoom","autoprefixer-stylus","rollup-plugin-async","eslint-plugin-playwright","creator","cp-file","yargonaut", -"docsify-server-renderer","cli-prompts-test","rollup-plugin-executable","ssr-window","eslint-config-standard-react", -"prettier-check","array-hyper-unique","crlf-normalize","book","books","chapter","comic","epub-maker","epub-maker2", -"node-novel","novel","volume","escaping","interpolate","goat","🐐","color-logger","ice-cap","esdoc-importpath-plugin", -"ECMAScript6","ECMAScript2015", -"ECMAScript7","ECMAScript2016","ECMAScript8","ECMAScript2017","proposal","mdc","developer","inter-element","white-space", -"whitespace","tagname","force","graceful-shutdown","http-shutdown","http-terminate","prometheus","icss", -"inferno-hyperscript","vnode","createVNode","gulp-rtlcss","postcss-preset-infima","dark mode","bootswatch","docstrap", -"@angular-devkit/build-angular","angular-eslint","github-files-fetcher","@stitches/react","animate-sass", -"postcss-trolling","vite-plugin-svgr","preview jest","log-utils","engine-base","engine-handlebars","lo","lo-dash", -"serve-index-75lb","lws-middleware","micromark-extension","tagfilter","dangerous","grunt-jasmine-node","mobilegrade", -"sniff","nth-child","nth","is-alphanumerical","is-decimal","is-hexadecimal","cssinjs", +"@walletconnect/safe-json","@walletconnect/window-getters","@walletconnect/window-metadata","@ethersproject/address", +"wallet","walletconnect","jsonrpc","cryptocurrency","dapp","@walletconnect/crypto","@types/qrcode", +"@walletconnect/legacy-client","@walletconnect/jsonrpc-provider","@walletconnect/jsonrpc-http-connection", +"ethereum-test-network", +"@wordpress/element","wordpress","gutenberg","jasmine-co","jasmine-ts","resolve-path","@types/console-ui","@types/esm", +"@types/findup-sync","@types/sane","@types/underscore.string","broccoli-node-api","mocha-jshint", +"babel-plugin-optimize-starts-with","html4","invalid","color-name","is-whitespace","mediaquery","csstree","completion", +"aws-cognito","napa","detector","tinydate","tweezer.js","medium-zoom","autoprefixer-stylus","rollup-plugin-async", +"eslint-plugin-playwright","cp-file","yargonaut","docsify-server-renderer","cli-prompts-test","rollup-plugin-executable", +"ssr-window","eslint-config-standard-react","prettier-check","array-hyper-unique","crlf-normalize","book","books", +"chapter","comic","epub-maker","epub-maker2","node-novel","novel","volume","escaping","interpolate","goat","🐐", +"color-logger","ice-cap","esdoc-importpath-plugin","ECMAScript6","ECMAScript2015","ECMAScript7","ECMAScript2016", +"ECMAScript8","ECMAScript2017","proposal","mdc", +"developer","inter-element","white-space","whitespace","tagname","force","graceful-shutdown","http-shutdown", +"http-terminate","prometheus","icss","inferno-hyperscript","vnode","createVNode","gulp-rtlcss","postcss-preset-infima", +"dark mode","bootswatch","docstrap","@angular-devkit/build-angular","angular-eslint","github-files-fetcher", +"@stitches/react","animate-sass","postcss-trolling","preview jest","log-utils","engine-base","engine-handlebars","lo", +"lo-dash","serve-index-75lb","lws-middleware","micromark-extension","tagfilter","dangerous","grunt-jasmine-node", +"mobilegrade","sniff","nth-child","nth","is-alphanumerical","is-decimal","is-hexadecimal","cssinjs", "@wdio/selenium-standalone-service","babelrc-rollup","queryselector","shadowdom","gulp-streamify","rc-tools","tappable", -"hammer","@actions/core","@oclif/plugin-autocomplete","toposort","@readme/better-ajv-errors", -"@readme/standards","@types/toposort","@types/unzipper","goober","jest-esm-jsx-transform","parcel-plugin-css-to-string", -"use-throttled-effect","hex","color-picker","wai-aria","smart-tv","smarttv","simple-routing","nano-equal", -"shallow-equal-fuzzy","shouldComponentUpdate","quicklook","image-gallery","image-viewer","react-native-svg", -"progressindicator","circle","pie","progressbar","indeterminate","d3-interpolate-path","@react-native-community/bob", -"@storybook/react-native","eslint-plugin-react-native","youtube-iframe","iframe","@atomico/rollup-plugin-sizes", -"git-branch-is","react-spring","@bedrock-layout/use-forwarded-ref","@codecov/vite-plugin","@types/body-scroll-lock", -"get-nonce","@theuiteam/lib-builder","@tsparticles/shape-text","@tsparticles/updater-roll","@tsparticles/updater-tilt", -"@tsparticles/updater-wobble","@tsparticles/plugin-emitters","@tsparticles/updater-destroy", -"@tsparticles/updater-twinkle","@tsparticles/plugin-absorbers","@tsparticles/interaction-external-trail", -"@tsparticles/plugin-emitters-shape-circle","@tsparticles/plugin-emitters-shape-square","useRef","createRef", -"merge refs","detect-node-es","@types/enzyme-adapter-react-16","code spliting","sidecar","mutation-observer", -"copy-text-to-clipboard","svelte-loader","scss-loader","perfect-scroll","vue-perfect-scroll","vue-scroll", -"vue-scrollbar","vue-plugin","滚动条","@types/eslint-plugin-prettier","@types/form-data","is-uuid","rewrite-imports", -"serviceworker","convict","antora-component","@applitools/test-utils","applitools","eyes-sdk","test automation", -"visual regression","@dataui/crud-request","@dataui/crud-util","blob-to-buffer","drag drop","drag & drop", -"@expo/spawn-async","@parcel/core","@parcel/fs","@parcel/package-manager","@parcel/watcher","mnemonic-id", -"node-object-hash","@plasmohq/parcel-config","@plasmohq/parcel-core","@plasmohq/init","@plasmo/config", +"hammer","@actions/core","@oclif/plugin-autocomplete","toposort","@readme/better-ajv-errors","@readme/standards", +"@types/toposort","@types/unzipper","goober","jest-esm-jsx-transform","parcel-plugin-css-to-string", +"use-throttled-effect", +"color-picker","wai-aria","smart-tv","smarttv","simple-routing","nano-equal","shallow-equal-fuzzy", +"shouldComponentUpdate","quicklook","image-gallery","image-viewer","progressindicator","circle","pie","progressbar", +"indeterminate","d3-interpolate-path","@react-native-community/bob","@storybook/react-native", +"eslint-plugin-react-native","youtube-iframe","iframe","git-branch-is","react-spring", +"@bedrock-layout/use-forwarded-ref","@types/body-scroll-lock","get-nonce","@tsparticles/shape-text", +"@tsparticles/updater-roll","@tsparticles/updater-tilt","@tsparticles/updater-wobble","@tsparticles/plugin-emitters", +"@tsparticles/updater-destroy","@tsparticles/updater-twinkle","@tsparticles/plugin-absorbers", +"@tsparticles/interaction-external-trail","@tsparticles/plugin-emitters-shape-circle", +"@tsparticles/plugin-emitters-shape-square","useRef","createRef","merge refs","detect-node-es", +"@types/enzyme-adapter-react-16","code spliting","sidecar","mutation-observer","copy-text-to-clipboard","svelte-loader", +"scss-loader","perfect-scroll","vue-perfect-scroll","vue-scroll","vue-scrollbar","vue-plugin","滚动条", +"@types/eslint-plugin-prettier","@types/form-data","is-uuid","rewrite-imports","serviceworker","eyes-sdk", +"@dataui/crud-request","@dataui/crud-util","blob-to-buffer", +"drag drop","drag & drop","@expo/spawn-async","@parcel/core","@parcel/fs","@parcel/package-manager","@parcel/watcher", +"mnemonic-id","node-object-hash","@plasmohq/parcel-config","@plasmohq/parcel-core","@plasmohq/init","@plasmo/config", "@plasmo/constants","@plasmo/utils","@plasmo/framework-shared","browser-extensions","@iconify/react","@types/events", "static-server","@storybook/cli","less-plugin-sass2less","@storybook/addon-mdx-gfm","music","player","mse","eme", -"@arethetypeswrong/core","ts-expose-internals","dlv","dset","flattie","fontace","unifont","magicast","piccolore", -"unstorage","zod-to-ts","xxhash-wasm","yocto-spinner","@oslojs/encoding","@astrojs/compiler","@astrojs/telemetry", -"@capsizecss/unpack","http-cache-semantics","@astrojs/internal-helpers", -"deterministic-object-hash","@types/dlv","rehype-toc","astro-scripts","remark-code-titles","@types/common-ancestor-path", -"@types/http-cache-semantics","strata","fuzzysearch","sander","@web/test-runner-core","testrunner","ac-colors","hsv", -"lch","color-names","cmyk","mix","harmonies","expressots","clean-architecture","typescript-framework", -"@pagefind/default-ui","bcp-47","mdast-util-directive","linkedom","withastro","astro-integration","piña","pigna", -"tabbable","@floating-ui/utils","@radix-ui/react-checkbox","@radix-ui/react-icons","vitest-browser-react", -"@internal/test-utils","code-blocks","expressive-code","syntax-highlighting","netlify-cms","@types/deep-eql", -"@amaui/ui-react","amaui","firefoxos","onesy","@react-native-macos/virtualized-lists","@tsparticles/plugin-easing-quad", -"@tsparticles/updater-stroke-color","@tsparticles/interaction-external-pause","@tsparticles/interaction-external-bubble", +"ts-expose-internals","dlv","dset","flattie","fontace","unifont","magicast","piccolore","unstorage","zod-to-ts", +"yocto-spinner","@oslojs/encoding","@astrojs/compiler","@astrojs/telemetry","@capsizecss/unpack","http-cache-semantics", +"@astrojs/internal-helpers","deterministic-object-hash","@types/dlv","rehype-toc","astro-scripts","remark-code-titles", +"@types/common-ancestor-path","@types/http-cache-semantics","strata","fuzzysearch","sander","@web/test-runner-core", +"testrunner","ac-colors","hsv","lch","color-names","cmyk","mix","harmonies","@pagefind/default-ui", +"bcp-47","mdast-util-directive","linkedom","piña","pigna","tabbable","@floating-ui/utils","@radix-ui/react-checkbox", +"@radix-ui/react-icons","vitest-browser-react","@types/deep-eql","@amaui/ui-react","amaui","firefoxos","onesy", +"@react-native-macos/virtualized-lists","@tsparticles/plugin-easing-quad","@tsparticles/updater-stroke-color", +"@tsparticles/interaction-external-pause","@tsparticles/interaction-external-bubble", "@tsparticles/interaction-external-attract","@tsparticles/interaction-external-connect","@types/react-router", "@backstage/backend-plugin-api","@backstage/config","@backstage/integration","express-promise-router", "@backstage/backend-test-utils","@backstage/catalog-model","@backstage/cli","@backstage/plugin-catalog-common", -"@backstage/plugin-catalog-node","backstage","ci/cd", -"immobiliare","immobiliarelabs","rgv","@asteasolutions/zod-to-openapi","@trpc/server", -"eslint-import-resolver-custom-alias","resolve-tspaths","event-driven","blaze","qs-esm","dataloader","bson-objectid", -"console-table-printer","@payloadcms/translations","graphql-http","@types/range-parser","@monaco-editor/react", -"@payloadcms/eslint-config","@hyrious/esbuild-plugin-commonjs","content management","graphQL","@cfcs/core","@egjs/axes", -"@egjs/component","@egjs/imready","@egjs/list-differ","@daybrush/jsdoc","@egjs/flicking-plugins","@egjs/release-helper", -"@types/resize-observer-browser","egjs-jsdoc-template","html-to-react","http-serve","jsdoc-to-mdx", -"karma-typescript-es6-transform","postcss-clean","print-coveralls","print-sizes","pvu","rollup-plugin-prototype-minify", -"ts-mock-imports","ttypescript","flicking","egjs","body scroll lock upgrade","@ucast/mongo2js","@casl/dx","permissions", -"abac","rbac","ibac","cancan","@humanwhocodes/gitignore-to-minimatch","peowly","list-dependents-cli","rslog", -"@rslib/core","@modern-js/rslib","@modern-js/types","@scripts/rstest-config","modern","modern.js","@scripts/build", -"@scripts/jest-config", -"import-without-cache","unconfig-core","unrun","@publint/pack","@sxzz/eslint-config","@sxzz/prettier-config", -"@sxzz/test-utils","@unocss/eslint-plugin","@vitejs/devtools","rolldown-plugin-dts-snapshot", -"rolldown-plugin-require-cjs","unocss","unplugin-ast","unplugin-lightningcss","unplugin-unused","@types/decompress", -"@ckeditor/ckeditor5-comments","@ckeditor/ckeditor5-track-changes","CKEditor","WYSIWYG","WYSIWYW","rich-text", -"fast-equals","glob2regx","ckeditor5-collaboration","@ckeditor/ckeditor5-revision-history", +"@backstage/plugin-catalog-node","backstage","ci/cd","immobiliare","immobiliarelabs","rgv", +"@asteasolutions/zod-to-openapi","event-driven","blaze","qs-esm","dataloader","bson-objectid","console-table-printer", +"@payloadcms/translations","graphql-http","@types/range-parser","@monaco-editor/react","@payloadcms/eslint-config", +"@hyrious/esbuild-plugin-commonjs","content management","graphQL","@cfcs/core","@egjs/axes","@egjs/component", +"@egjs/imready","@egjs/list-differ","@daybrush/jsdoc","@egjs/flicking-plugins","@egjs/release-helper", +"@types/resize-observer-browser","egjs-jsdoc-template","html-to-react","http-serve", +"jsdoc-to-mdx","karma-typescript-es6-transform","postcss-clean","print-coveralls","print-sizes","pvu", +"rollup-plugin-prototype-minify","ts-mock-imports","ttypescript","flicking","egjs","body scroll lock upgrade", +"@ucast/mongo2js","@casl/dx","permissions","abac","rbac","ibac","cancan","@humanwhocodes/gitignore-to-minimatch", +"peowly","list-dependents-cli","rslog","@rslib/core","@modern-js/rslib","@modern-js/types","@scripts/rstest-config", +"modern","modern.js","@scripts/build","@scripts/jest-config","import-without-cache","unconfig-core","unrun", +"@sxzz/eslint-config","@sxzz/prettier-config","@sxzz/test-utils","@unocss/eslint-plugin","@vitejs/devtools", +"rolldown-plugin-dts-snapshot","rolldown-plugin-require-cjs","unocss","unplugin-ast","unplugin-lightningcss", +"@types/decompress","fast-equals","glob2regx","ckeditor5-collaboration","@ckeditor/ckeditor5-revision-history", "@ckeditor/ckeditor5-operations-compressor","@ckeditor/ckeditor-cloud-services-collaboration","@grammyjs/types", "deno2node","@udecode/plate-utils","@loki/integration-react","@loki/integration-react-native","@loki/integration-vue", "@loki/runner","@loki/target-chrome-app","@loki/target-chrome-docker","@loki/target-native-android-emulator", -"@loki/target-native-ios-simulator","storybook-addons","react-storybook","visual testing","emoji-datasource", -"@fastify/static","graphql-jit","mqemitter","single-user-cache","tiny-lru","@matteo.collina/snap", +"@loki/target-native-ios-simulator","storybook-addons","react-storybook", +"emoji-datasource","@fastify/static","graphql-jit","mqemitter","single-user-cache","tiny-lru","@matteo.collina/snap", "@types/isomorphic-form-data","graphql-ws","blue-tape","events.once","xhr2-cookies","convex","mock-spawn", -"@fastify/pre-commit","@reporters/silent","desm","gulp-better-rollup","Leaflet","Maps","Gesture","Handling", -"two","fingers","@tanstack/vue-virtual","@testing-library/vue","@fast-check/vitest","@types/eslint-config-prettier", -"prettier-plugin-pkg","prettier-plugin-sh","algo","@oxc-node/cli","eslint-plugin-redos-detector","tsm","bundle-size", -"@iconify/vue","@internationalized/date","@internationalized/number","@nuxt/fonts","@nuxt/icon","@nuxt/kit", -"@nuxt/schema","@nuxtjs/color-mode","@tanstack/vue-table","@tiptap/core","@tiptap/extension-bubble-menu", -"@tiptap/extension-code","@tiptap/extension-collaboration","@tiptap/extension-drag-handle", -"@tiptap/extension-drag-handle-vue-3","@tiptap/extension-floating-menu","@tiptap/extension-horizontal-rule", -"@tiptap/extension-image","@tiptap/extension-mention","@tiptap/extension-node-range","@tiptap/extension-placeholder", -"@tiptap/markdown","@tiptap/pm","@tiptap/starter-kit","@tiptap/suggestion","@tiptap/vue-3","@vueuse/shared", -"colortranslator","embla-carousel-auto-height","embla-carousel-auto-scroll","embla-carousel-autoplay", -"embla-carousel-class-names","embla-carousel-fade","embla-carousel-vue","embla-carousel-wheel-gestures","knitwork", -"motion-v","reka-ui","tailwind-variants","unplugin-auto-import","unplugin-vue-components","vaul-vue", -"vue-component-type-helpers","@nuxt/eslint-config","@nuxt/module-builder","@nuxt/test-utils","@tanstack/table-core","ai", -"vitest-environment-nuxt","nuxt-ui","ui-framework", -"country-code","country-codes","country-flags","country-names","country-telephone-codes","country-telephone-prefixes", -"countries","country-iso-codes","iso","iso-codes","iso-country-codes","iso-country-names","iso-country-telephone-codes", +"@fastify/pre-commit","@reporters/silent","desm","gulp-better-rollup","Leaflet","Maps","Gesture","Handling","two", +"fingers","@testing-library/vue","@fast-check/vitest","@types/eslint-config-prettier","prettier-plugin-pkg", +"prettier-plugin-sh","algo","@oxc-node/cli","eslint-plugin-redos-detector","tsm","bundle-size","@iconify/vue", +"@internationalized/date","@internationalized/number","@nuxt/fonts","@nuxt/icon","@nuxt/kit","@nuxt/schema", +"@nuxtjs/color-mode","@tanstack/vue-table","@tiptap/core","@tiptap/extension-bubble-menu","@tiptap/extension-code", +"@tiptap/extension-collaboration","@tiptap/extension-drag-handle","@tiptap/extension-drag-handle-vue-3", +"@tiptap/extension-floating-menu","@tiptap/extension-horizontal-rule","@tiptap/extension-image", +"@tiptap/extension-mention","@tiptap/extension-node-range","@tiptap/extension-placeholder","@tiptap/markdown", +"@tiptap/pm","@tiptap/starter-kit","@tiptap/suggestion","@tiptap/vue-3","@vueuse/shared","colortranslator", +"embla-carousel-auto-height","embla-carousel-auto-scroll", +"embla-carousel-autoplay","embla-carousel-class-names","embla-carousel-fade","embla-carousel-vue", +"embla-carousel-wheel-gestures","knitwork","motion-v","reka-ui","tailwind-variants","unplugin-auto-import", +"unplugin-vue-components","vaul-vue","vue-component-type-helpers","@nuxt/eslint-config","@nuxt/module-builder", +"@nuxt/test-utils","@tanstack/table-core","vitest-environment-nuxt","nuxt-ui","ui-framework","country-code", +"country-codes","country-flags","country-names","country-telephone-codes","country-telephone-prefixes","countries", +"country-iso-codes","iso","iso-codes","iso-country-codes","iso-country-names","iso-country-telephone-codes", "iso-country-telephone-prefixes","iso-countries","emoji-flags","phone-codes","phone-prefixes","telephone-codes", "telephone-prefixes","world-countries","world-country-codes","world-country-flags","world-country-names", "world-country-telephone-codes","world-country-telephone-prefixes","world-iso-codes","world-iso-country-codes", "world-iso-country-names","@zoroaster/assert","@zoroaster/mask","alamode","@a-la/fixture-alamode","@a-la/fixture-babel", "@artdeco/clean-stack","@artdeco/erte","@artdeco/scripts.json","@depack/render","@wrote/exists","@wrote/rm", -"@zoroaster/reducer","@zoroaster/types","argufy","catchment","documentary","erotic","eslint-config-artdeco", -"makepromise","promto","reloquent","snapshot-context","spawncommand","temp-context","usually","yarn-s","IDE", -"suggestions","intellisense","assistant-cloud","@assistant-ui/tap","@assistant-ui/store","@radix-ui/primitive", -"@radix-ui/react-compose-refs","@radix-ui/react-context", +"@zoroaster/reducer","@zoroaster/types","argufy","catchment", +"documentary","erotic","eslint-config-artdeco","makepromise","promto","reloquent","snapshot-context","spawncommand", +"temp-context","usually","yarn-s","IDE","suggestions","intellisense","assistant-cloud","@assistant-ui/tap", +"@assistant-ui/store","@radix-ui/primitive","@radix-ui/react-compose-refs","@radix-ui/react-context", "@radix-ui/react-dropdown-menu","@radix-ui/react-popover","@radix-ui/react-primitive","@radix-ui/react-use-callback-ref", -"@radix-ui/react-use-escape-keydown","assistant-stream","@assistant-ui/x-buildutils","radix-ui","ai-sdk","assistant", -"openai","chatbot","copilot","ai-chat","ai-chatbot","ai-assistant","ai-copilot","chatgpt","gpt4","gpt-4", -"conversational-ui","conversational-ai","graphiql","radash","@a2a-js/sdk","js-tiktoken","@lukeed/uuid","hono-openapi", -"@isaacs/ttlcache","@ai-sdk/provider-v5","@ai-sdk/provider-v6","@ai-sdk/ui-utils-v5","@mastra/schema-compat", -"@ai-sdk/provider-utils-v5","@ai-sdk/provider-utils-v6","@ai-sdk/azure","@ai-sdk/openai","@internal/lint", -"@internal/ai-v6","@internal/ai-sdk-v4","@internal/ai-sdk-v5","@internal/types-builder","@internal/external-types", -"@openrouter/ai-sdk-provider","llm","llms","agents","vectorstore","embeddings","rag","evals","otel","@tailwindcss/ui", -"@types/sortablejs","vue-next","draggable","drag-and-drop","vue-draggable","kanban","composition-api", -"@oxc-project/runtime","hmac256","hmac512","@ant-design/pro-components", -"@anthropic-ai/sdk","@azure-rest/ai-inference","@cfworker/json-schema","@clerk/localizations","@clerk/nextjs", -"@clerk/themes","@cyntler/react-doc-viewer","@fal-ai/client","@formkit/auto-animate","@google/genai", -"@huggingface/inference","@icons-pack/react-simple-icons","@khmyznikov/pwa-install","@langchain/community", -"@lobechat/agent-runtime","@lobechat/const","@lobechat/context-engine","@lobechat/database", -"@lobechat/electron-client-ipc","@lobechat/electron-server-ipc","@lobechat/fetch-sse","@lobechat/file-loaders", -"@lobechat/model-runtime","@lobechat/observability-otel","@lobechat/prompts","@lobechat/python-interpreter", -"@lobechat/utils","@lobechat/web-crawler","@lobehub/analytics","@lobehub/charts","@lobehub/chat-plugin-sdk", +"@radix-ui/react-use-escape-keydown","assistant-stream","@assistant-ui/x-buildutils","ai-sdk","assistant","copilot", +"ai-chat","ai-chatbot","ai-assistant","ai-copilot","gpt4","gpt-4","conversational-ui","conversational-ai","graphiql", +"radash","@a2a-js/sdk","js-tiktoken","@lukeed/uuid","hono-openapi","@isaacs/ttlcache","@ai-sdk/provider-v5", +"@ai-sdk/provider-v6","@ai-sdk/ui-utils-v5","@mastra/schema-compat","@ai-sdk/provider-utils-v5", +"@ai-sdk/provider-utils-v6","@ai-sdk/azure","@ai-sdk/openai","@internal/lint","@internal/ai-v6","@internal/ai-sdk-v4", +"@internal/ai-sdk-v5","@internal/types-builder","@internal/external-types","@openrouter/ai-sdk-provider","llm","llms", +"agents","vectorstore", +"embeddings","rag","evals","otel","@tailwindcss/ui","@types/sortablejs","vue-next","drag-and-drop","vue-draggable", +"kanban","composition-api","@oxc-project/runtime","hmac256","hmac512","@ant-design/pro-components","@anthropic-ai/sdk", +"@azure-rest/ai-inference","@cfworker/json-schema","@clerk/localizations","@clerk/nextjs","@clerk/themes", +"@cyntler/react-doc-viewer","@fal-ai/client","@formkit/auto-animate","@google/genai","@huggingface/inference", +"@icons-pack/react-simple-icons","@khmyznikov/pwa-install","@langchain/community","@lobechat/agent-runtime", +"@lobechat/const","@lobechat/context-engine","@lobechat/database","@lobechat/electron-client-ipc", +"@lobechat/electron-server-ipc","@lobechat/fetch-sse","@lobechat/file-loaders","@lobechat/model-runtime", +"@lobechat/observability-otel","@lobechat/prompts","@lobechat/python-interpreter","@lobechat/utils", +"@lobechat/web-crawler","@lobehub/analytics","@lobehub/charts","@lobehub/chat-plugin-sdk", "@lobehub/chat-plugins-gateway","@lobehub/editor","@lobehub/icons","@lobehub/market-sdk","@lobehub/tts","@lobehub/ui", "@neondatabase/serverless","@next/third-parties","@opentelemetry/exporter-jaeger","@opentelemetry/winston-transport", "@react-pdf/renderer","@react-spring/web","@saintno/comfyui-sdk","@serwist/next","@t3-oss/env-nextjs","@trpc/client", -"@trpc/next","@trpc/react-query","@vercel/analytics","@vercel/edge-config","@vercel/functions","@vercel/speed-insights", -"@virtuoso.dev/masonry","@xterm/xterm","brotli-wasm","countries-and-timezones","dexie","drizzle-orm","drizzle-zod", -"gpt-tokenizer","i18next-resources-to-backend","js-sha256","jsonl-parse-stringify", -"langchain","langfuse","langfuse-core","lucide-react","markdown-to-txt","model-bank","modern-screenshot", -"next-mdx-remote","nextjs-toploader","nuqs","officeparser","oidc-provider","ollama","partial-json","path-browserify-esm", -"pdf-parse","plaiceholder","posthog-js","pwa-install-handler","react-confetti","react-hotkeys-hook","react-layout-kit", -"react-pdf","react-rnd","react-scan","react-virtuoso","react-wrap-balancer","resolve-accept-language","rtl-detect", -"ssrf-safe-fetch","svix","tokenx","ts-md5","unstructured-client","use-merge-value","word-extractor","zustand-utils", -"@huggingface/tasks","@lobehub/i18n-cli","@lobehub/lint","@lobehub/market-types","@lobehub/seo-cli", -"@next/bundle-analyzer","@peculiar/webcrypto","@types/chroma-js","@types/crypto-js","@types/ip","@types/numeral", -"@types/oidc-provider","@types/pdfkit","@types/pg","@types/rtl-detect","dbdocs","dpdm-fast","drizzle-dbml-generator", -"drizzle-kit","eslint-plugin-mdx","fake-indexeddb","just-diff","mcp-hello-world","remark-mdx","serwist","vercel-ai", -"azure-openai", -"visual-model","tts","stt","modelcontextprotocol","mcp","context7","vibe-coding","developer tools", -"@types/istanbul-lib-report","@walletconnect/time","@walletconnect/events","label","better-npm-run","clamp.js", -"karma-fixture","karma-opera-launcher","minimalistic","@types/webrtc","detectrtc","install-peers-cli","prepend-file", -"camera","webcam","cam","webRTC","react-native-worklets","visionOS","tvOS","macOS","cpp","swift","jsi","@antfu/ni", -"@dotenvx/dotenvx","@types/validate-npm-package-name","stringify-object","@types/stringify-object","virtual-core", -"datagrid","2fa","hotp","topt","google authenticator","authenticator","one time password","one-time-password","2 factor", -"survey","surveyjs","survey-library","form-component","form-rendering","survey-renderer","dynamic-form", -"interactive-form","form-library","form-management","questionnaire","data-collection","data-validation", -"input-validation","ui-component","schema-form","base64-stream", -"bplist-creator","@mrleebo/prisma-ast","@electric-sql/pglite-socket","@prisma/query-plan-executor","common-stuff", -"accelerate","@aws-lite/client","@aws-lite/s3","@architect/eslint-config","mock-tmp","tap-arc","cloudfunctions", -"apigateway","api gateway","@webgpu/types","@tinymce/tinymce-react","n1ed","@headlessui/tailwindcss","@heroicons/react", -"@tailwindplus/elements","@types/sharp","react-docgen-typescript","react-lib-tools","rollup-preserve-directives", -"ts-blank-space","vitest-fail-on-console","windowed","@extend-chrome/messages","@extend-chrome/storage","@types/chrome", -"@types/jsesc","vite-plugin-inspect","chrome-extension","webext","webextension","browser-extension","isoformat", -"interval-tree-1d","htl","@types/d3","apache-arrow","d3-geo-projection","@observablehq/stdlib","string-split-by", -"cargo-cp-artifact","skia","offscreen","compositing","vulkan","metal","flmngr","imgpen","unsplash","@types/listr", -"markdown-to-pdf","pdf-generation","assignments","homework","html-to-pdf","@applitools/core","@applitools/logger", -"@applitools/req","@applitools/snippets","@applitools/image", -"@applitools/spec-driver-webdriver","@antora/user-require-helper","kapok-js","@asciidoctor/core", -"@antora/asciidoc-loader","navigation","asciidoc","pod-install","pinch-to-zoom","pinch","@farmfe/cli","@farmfe/core", -"bun-types-no-globals","eslint-plugin-format","unloader","redirects","@antora/file-publisher","publisher", -"vite-plugin-dts-bundle-generator","vite-plugin-pages","vite-plugin-typescript","vite-plugin-typescript-transform", -"box2d","game","physics","2d","replace-in-files-cli","sandboxed-module","oxc","exact-versions","turborepo", -"version-linter","@jsdevtools/ez-spawn","@napi-rs/magic-string","@pnpm/list","@pnpm/workspace.find-packages", -"@types/treeverse","@types/yarnpkg__lockfile","fast-npm-meta","@nolyfill/internal","@nolyfill/promise.any","fumadb", -"kysely","@orpc/zod","@orpc/otel","neverthrow","@c15t/logger","@orpc/server","@orpc/openapi","@orpc/contract", -"@c15t/translations","@opentelemetry/sdk-node","kysely-pglite","@c15t/vitest-config","@libsql/kysely-libsql", -"@c15t/typescript-config","consent","privacy","ccpa","lgpd","self-host","consent-management","user-privacy", -"data-protection", -"cookie-banner","consent-management-platform","cmp","consent-banner","@ampproject/rollup-plugin-closure-compiler", -"@fezvrasta/tsc-silent","@khanacademy/flow-to-ts","babel-plugin-inline-replace-variables","poster", -"rollup-plugin-flow-entry","popper","positioning engine","anime","anime.js","timeline","easings","cubic-bezier", -"splitText","WAAPI","Canvas","WebGL","decrypt","ev-emitter","fizzy-ui-utils","get-size","imagesloaded","unidragger", -"eslint-plugin-metafizzy","jquery-bridget","flick","gulp-wrap-commonjs","lex","maths","persist-schema","jugglingdb", -"panorama","rip-out","eslint-config-godaddy-react","setup-env","compatiblity","rollup-plugin-eslint", -"rollup-plugin-sass","testit","gethub","bits","iec"], +"@trpc/next","@trpc/react-query", +"@vercel/analytics","@vercel/edge-config","@vercel/functions","@vercel/speed-insights","@virtuoso.dev/masonry", +"@xterm/xterm","brotli-wasm","countries-and-timezones","dexie","drizzle-zod","gpt-tokenizer", +"i18next-resources-to-backend","js-sha256","jsonl-parse-stringify","langchain","langfuse","langfuse-core","lucide-react", +"markdown-to-txt","model-bank","modern-screenshot","next-mdx-remote","nextjs-toploader","nuqs","officeparser", +"oidc-provider","ollama","partial-json","path-browserify-esm","pdf-parse","plaiceholder","posthog-js", +"pwa-install-handler","react-confetti","react-hotkeys-hook","react-layout-kit","react-pdf","react-rnd","react-scan", +"react-virtuoso","react-wrap-balancer","resolve-accept-language","rtl-detect","ssrf-safe-fetch","svix","tokenx","ts-md5", +"unstructured-client","use-merge-value","word-extractor","zustand-utils","@huggingface/tasks","@lobehub/i18n-cli", +"@lobehub/lint","@lobehub/market-types","@lobehub/seo-cli","@next/bundle-analyzer","@peculiar/webcrypto", +"@types/chroma-js","@types/crypto-js","@types/ip","@types/numeral","@types/oidc-provider","@types/pdfkit", +"@types/rtl-detect","dbdocs","dpdm-fast","drizzle-dbml-generator","drizzle-kit","eslint-plugin-mdx","fake-indexeddb", +"just-diff","mcp-hello-world","remark-mdx","serwist","vercel-ai","azure-openai","visual-model","tts","stt", +"modelcontextprotocol","mcp","context7","vibe-coding","developer tools","@types/istanbul-lib-report", +"@walletconnect/time","@walletconnect/events","label","better-npm-run","clamp.js","karma-fixture","karma-opera-launcher", +"minimalistic","@types/webrtc","detectrtc","install-peers-cli","prepend-file","camera","webcam","cam","webRTC", +"react-native-worklets","visionOS","tvOS","macOS","cpp","swift","jsi","@dotenvx/dotenvx", +"@types/validate-npm-package-name","stringify-object","@types/stringify-object","virtual-core","datagrid","2fa","hotp", +"topt","google authenticator","authenticator","one time password","one-time-password","2 factor","survey","surveyjs", +"survey-library","form-component","form-rendering", +"dynamic-form","interactive-form","form-library","form-management","questionnaire","data-collection","data-validation", +"input-validation","ui-component","schema-form","base64-stream","bplist-creator","@mrleebo/prisma-ast", +"@electric-sql/pglite-socket","@prisma/query-plan-executor","common-stuff","accelerate","@aws-lite/client", +"@aws-lite/s3","@architect/eslint-config","mock-tmp","tap-arc","cloudfunctions","apigateway","api gateway", +"@webgpu/types","@tinymce/tinymce-react","n1ed","@headlessui/tailwindcss","@heroicons/react","@tailwindplus/elements", +"@types/sharp","react-docgen-typescript","react-lib-tools","rollup-preserve-directives","ts-blank-space", +"vitest-fail-on-console","windowed","@extend-chrome/messages","@extend-chrome/storage","@types/chrome","@types/jsesc", +"vite-plugin-inspect","chrome-extension","webext","webextension","browser-extension","isoformat","interval-tree-1d", +"htl","@types/d3","apache-arrow","d3-geo-projection","@observablehq/stdlib","string-split-by","cargo-cp-artifact","skia", +"offscreen","compositing","vulkan","metal","imgpen","unsplash","@types/listr", +"markdown-to-pdf","pdf-generation","assignments","homework","html-to-pdf","@applitools/core","@applitools/req", +"@applitools/image","@applitools/spec-driver-webdriver","@antora/user-require-helper","kapok-js","@asciidoctor/core", +"navigation","asciidoc","pod-install","pinch-to-zoom","pinch","@farmfe/cli","@farmfe/core","bun-types-no-globals", +"eslint-plugin-format","unloader","redirects","@antora/file-publisher","publisher","vite-plugin-typescript-transform", +"box2d","physics","sandboxed-module","oxc","exact-versions","turborepo","version-linter","@jsdevtools/ez-spawn", +"@napi-rs/magic-string","@pnpm/list","@pnpm/workspace.find-packages","@types/treeverse","@types/yarnpkg__lockfile", +"fast-npm-meta","@nolyfill/internal","@nolyfill/promise.any","fumadb","kysely","@orpc/zod","@orpc/otel","neverthrow", +"@c15t/logger","@orpc/server","@orpc/openapi","@orpc/contract","@c15t/translations","@opentelemetry/sdk-node", +"kysely-pglite","@c15t/vitest-config","@libsql/kysely-libsql","@c15t/typescript-config","consent","privacy","ccpa", +"lgpd","self-host","consent-management","user-privacy", +"data-protection","cookie-banner","consent-management-platform","cmp","consent-banner", +"@ampproject/rollup-plugin-closure-compiler","@fezvrasta/tsc-silent","@khanacademy/flow-to-ts", +"babel-plugin-inline-replace-variables","poster","rollup-plugin-flow-entry","popper","positioning engine","anime", +"anime.js","timeline","easings","cubic-bezier","splitText","WAAPI","Canvas","WebGL","decrypt","ev-emitter", +"fizzy-ui-utils","get-size","imagesloaded","unidragger","eslint-plugin-metafizzy","jquery-bridget","flick", +"gulp-wrap-commonjs","lex","maths","persist-schema","panorama","rip-out","eslint-config-godaddy-react","setup-env", +"compatiblity","rollup-plugin-eslint","rollup-plugin-sass","testit","gethub","bits","iec"], [5,293,294], -[0,-3015,-3016,-3017,-3018], +[0,-693,-2480,-7487,-440], 1771718400000, 1771113600000, 1770508800000, @@ -2701,491 +2699,496 @@ 1771804800000, [1,24,619], [1,3,621], -[0,-519,-2384,-2541], -[0,-3040,-3052,-1031,-2006,-2019,-2410], -[0,-3095,-3098,-3099,-3161,-3100,-2006,-3159,-3160,-2494], +[0,-51,-82,-34], +[0,-47,-89,-788,-6,-36,-2], +[0,-131,-127,-441,-53,-52,-6,-106,-102,-1273], [1,3,440], [1,3,1832], -[0,-3488,-681,-3489,-3490,-3491,-3492], +[0,-1002,-283,-894,-7684,-7685,-3208], [1,3,1826], -[0,-3220], -[0,-1889], -[0,-424], -[0,-3557,-3018], +[0,-1281], +[0,-38], +[0,-1912], +[0,-7700,-440], true, [1,3,622], -[0,-1654], -[0,-2006,-2019], -[0,-4298,-4300,-2319], +[0,-3], +[0,-6,-36], +[0,-755,-756,-85], [1,3,1783], -[0,-2322], +[0,-39], [1,24,585], -[0,-2387], -[0,-1548], -[0,-531], -[0,-7841], -[0,-2410], -[0,-932], [0,-44], -[0,-1787], -[0,-2006], -[0,-856,-3262,-2476,-2816], +[0,-23], +[0,-1919], +[0,-68], +[0,-2], +[0,-1], +[0,-90], +[0,-1244], +[0,-6], +[0,-42,-116,-73,-1722], [1,3,674], -[0,-18,-19,-471,-487,-498,-504,-577,-588,-590,-591,-592,-603,-604,-605,-5421,-606,-607,-608,-609,-610,-5422,-611,-612, --613,-5423,-626,-631,-643,-660,-663,-5424,-670,-676,-5425,-5426,-5427,-5428,-5429,-804,-830,-833,-836,-998,-5430,-5431, --1019,-1020,-1095,-1121,-5432,-1280,-1282,-1307,-1308,-5433,-1378,-1511,-1512,-1513,-5434,-1516,-1584,-1596, --5435,-1615,-5436,-1648,-1679,-1684,-1695,-1720,-1799,-5437,-1803,-1822,-1869,-1886,-5438,-1994,-2067,-5439,-2158,-2169, --5440,-5441,-2196,-2201,-2203,-2209,-2217,-2237,-5442,-2238,-2252,-5443,-2256,-2290,-5444,-2296,-2298,-2309,-2348,-2366, --2370,-5445,-5446,-5447,-2426,-5448,-5449,-2527], -[0,-18,-19,-676,-1994,-2426], +[0,-1901,-1902,-2294,-2971,-2297,-2298,-2304,-2306,-2307,-2308,-2309,-2311,-2312,-2313,-4918,-2314,-2315,-2316,-2317, +-2980,-4919,-2981,-2982,-2983,-3395,-2319,-2321,-2985,-2323,-2324,-4920,-2325,-1932,-4921,-3396,-4922,-4923,-3397,-2334, +-2336,-2337,-2338,-2342,-4924,-3398,-3010,-3011,-2344,-2345,-3399,-2350,-2351,-3038,-2353,-3400,-3049,-2370,-2371,-2372, +-4925,-2373,-2376,-2378, +-4926,-2380,-4927,-2384,-2385,-2387,-2388,-2390,-2396,-3401,-2397,-2398,-2401,-2402,-3402,-1688,-3098,-4928,-3102,-2422, +-4929,-3403,-3103,-2425,-2426,-2427,-2428,-2431,-3404,-2432,-2435,-4930,-2436,-2438,-3405,-2440,-2441,-2445,-2448,-2450, +-2451,-3406,-3407,-3408,-289,-3409,-3410,-3131], +[0,-1901,-1902,-1932,-1688,-289], [1,3,1519], [1,3,2972], -[0,-2501], -[0,-9219], -[0,-775,-1889,-3583], -[0,-23,-3219], +[0,-18], +[0,-268], +[0,-24,-38,-223], +[0,-11,-2033], [1,3,1044], [1,3,1396], [1,3,1875], -[0,-519,-2541], -[0,-1654,-1941], -[0,-4633,-3445,-3100,-7566], -[0,-15394,-15395,-4276,-15396,-3162,-6935,-2494,-770,-15397,-15398], -[0,-3488,-681,-3489,-3518,-3492], -[0,-1934], +[0,-51,-34], +[0,-3,-2405], +[0,-1771,-46,-52,-2750], +[0,-15477,-15478,-2564,-15479,-95,-1841,-1273,-626,-15480,-15481], +[0,-1002,-283,-894,-4574,-3208], +[0,-464], [1,3,623], [1,24,645], -[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3960,-3262,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966, --3967,-1965,-3968,-1966,-3969,-2063,-3970,-3971,-3108,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], -[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340], -[0,-2476,-3944,-3100,-4590,-3098,-4591,-4592,-4593,-4594], +[0,-2058,-2548,-1755,-1756,-37,-316,-299,-1757,-543,-569,-116,-3258,-352,-2549,-195,-1508,-2059,-45,-1294,-144,-353,-495, +-2060,-392,-2061,-1256,-1010,-3259,-1489,-1509,-1295,-178,-445,-102,-1011,-1716,-2062], +[0,-1152,-1765,-1766,-1305,-1306,-2081,-1767,-1768,-826], +[0,-73,-897,-52,-8189,-127,-4769,-8190,-8191,-8192], [1,3,1380], -[0,-18,-19,-471,-498,-504,-577,-588,-590,-591,-592,-603,-604,-605,-606,-607,-608,-609,-5423,-626,-631,-660,-663,-670,-676, --5426,-5429,-804,-830,-833,-836,-998,-5431,-1095,-1121,-5432,-1280,-1282,-1308,-5433,-1511,-1512,-1513,-1516,-1584,-1596, --1615,-1648,-1679,-1684,-1695,-1720,-1799,-5437,-1803,-1822,-1869,-1886,-5438,-1994,-2169,-5441,-2201,-2203, --2209,-2217,-2237,-5442,-2238,-2252,-2256,-2290,-5444,-2296,-2298,-2309,-2348,-2366,-2370,-5445,-5446,-5447,-2426,-5448, --5449], -[0,-18,-19,-467,-471,-487,-498,-504,-6147,-575,-577,-588,-590,-591,-592,-6148,-603,-604,-605,-5421,-606,-607,-608,-609, --610,-5422,-611,-612,-613,-6149,-5423,-625,-626,-6150,-631,-6151,-643,-660,-663,-5424,-670,-675,-676,-5425,-5426,-6152, --6153,-5427,-5428,-5429,-804,-830,-833,-6154,-836,-842,-890,-998,-5430,-6155,-5431,-1019,-1020,-1035, --1073,-1084,-6156,-1095,-1117,-1120,-1121,-5432,-1279,-1280,-1282,-1295,-1307,-1308,-1314,-6157,-5433,-1378,-6158,-6159, --1511,-1512,-1513,-5434,-1516,-6160,-1584,-6161,-1596,-5435,-1615,-5436,-1648,-1677,-6162,-6163,-1678,-1679,-1684,-1695, --6164,-1720,-1799,-5437,-1803,-1822,-6165,-1865,-1869,-1886,-5438,-1994,-2067,-5439,-6166,-2158,-2159,-2164,-2169,-5440, --6167,-5441,-6168,-2196, --2201,-2203,-2208,-2209,-2217,-2221,-2224,-2225,-2237,-5442,-6169,-2238,-2241,-2252,-5443,-2256,-6170,-2288,-2290,-5444, --2296,-2298,-2309,-2315,-2348,-6171,-6172,-2366,-2370,-5445,-5446,-5447,-2426,-2431,-2458,-5448,-6173,-6174,-2496,-2497, --5449,-6175,-2527], +[0,-1901,-1902,-2294,-2297,-2298,-2304,-2306,-2307,-2308,-2309,-2311,-2312,-2313,-2314,-2315,-2316,-2317,-3395,-2319, +-2321,-2323,-2324,-2325,-1932,-3396,-3397,-2334,-2336,-2337,-2338,-2342,-3398,-2344,-2345,-3399,-2350,-2351,-2353,-3400, +-2370,-2371,-2372,-2373,-2376,-2378,-2380,-2384,-2385,-2387,-2388,-2390,-2396,-3401,-2397,-2398,-2401,-2402,-3402,-1688, +-2422,-3403,-2425,-2426, +-2427,-2428,-2431,-3404,-2432,-2435,-2436,-2438,-3405,-2440,-2441,-2445,-2448,-2450,-2451,-3406,-3407,-3408,-289,-3409, +-3410], +[0,-1901,-1902,-4106,-2294,-2971,-2297,-2298,-8890,-4114,-2304,-2306,-2307,-2308,-2309,-8891,-2311,-2312,-2313,-4918, +-2314,-2315,-2316,-2317,-2980,-4919,-2981,-2982,-2983,-8892,-3395,-4119,-2319,-8893,-2321,-8894,-2985,-2323,-2324,-4920, +-2325,-4124,-1932,-4921,-3396,-8895,-8896,-4922,-4923,-3397,-2334,-2336,-2337,-8897,-2338,-4146,-4153,-2342,-4924,-8898, +-3398,-3010,-3011,-4167, +-4171,-4173,-8899,-2344,-4178,-4179,-2345,-3399,-4204,-2350,-2351,-4207,-3038,-2353,-4210,-8900,-3400,-3049,-8901,-8902, +-2370,-2371,-2372,-4925,-2373,-8903,-2376,-8904,-2378,-4926,-2380,-4927,-2384,-4247,-8905,-8906,-4248,-2385,-2387,-2388, +-8907,-2390,-2396,-3401,-2397,-2398,-8908,-4275,-2401,-2402,-3402,-1688,-3098,-4928,-8909,-3102,-4312,-4313,-2422,-4929, +-8910,-3403,-8911,-3103, +-2425,-2426,-4318,-2427,-2428,-4319,-4320,-4321,-2431,-3404,-8912,-2432,-4323,-2435,-4930,-2436,-8913,-4328,-2438,-3405, +-2440,-2441,-2445,-4334,-2448,-8914,-8915,-2450,-2451,-3406,-3407,-3408,-289,-4342,-4344,-3409,-8916,-8917,-4349,-4350, +-3410,-8918,-3131], [1,3,2681], -[0,-1654,-2198], -[0,-2319], -[0,-2460], -[0,-4864,-3214,-11467,-11468,-5270,-5271,-15723,-3634], +[0,-3,-81], +[0,-85], +[0,-70], +[0,-572,-45,-1036,-930,-291,-355,-15757,-61], [1,3,308], -[0,-719], -[0,-4362], -[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, --5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, --5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189], +[0,-58], +[0,-1769], +[0,-192,-52,-1485,-1791,-2104,-1792,-1524,-322,-1793,-1794,-1795,-2105,-2106,-1796,-1797,-2107,-2108,-2109,-6,-527,-2110, +-2111,-2112,-2113,-73,-1319,-494,-2114,-248,-1320,-184,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-2115, +-322,-2116,-2117,-2118,-2119,-2120,-2121], [1,3,1342], [1,3,1453], [1,3,1877], -[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], +[0,-1,-83,-9,-211,-75,-67,-129,-3,-15,-123], [1,3,2054], -[0,-1754], -[0,-2471], -[0,-3214,-8058,-8059,-4004,-3476,-2006,-1062,-3634,-8060,-8061,-4873,-1654], -[0,-2250], -[0,-5334], -[0,-1202,-1654], -[0,-1406], -[0,-1931], -[0,-3037], -[0,-3037,-652,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-3161,-3481,-3098,-3162,-14919], -[0,-1967], -[0,-2410,-2409,-11398,-5406,-3691,-5728,-3690,-10796,-15307,-3445,-15308], +[0,-679], +[0,-1474], +[0,-45,-9967,-9968,-76,-527,-6,-1228,-61,-9969,-9970,-573,-3], +[0,-97], +[0,-251], +[0,-671,-3], +[0,-1658], +[0,-556], +[0,-5], +[0,-5,-43,-4,-146,-261,-236,-2,-34], +[0,-53,-1141,-127,-95,-15045], +[0,-121], +[0,-2,-2002,-6015,-1808,-422,-1161,-100,-5923,-15399,-46,-15400], [1,3,10143], -[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, --5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, --5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15365], -[0,-3577,-3100,-2808,-5157,-5158,-659,-5159,-5160,-5161,-5155,-5164,-5165,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775, --3264,-5180,-5181,-5182,-15367], -[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, --5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, --5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15368], +[0,-192,-52,-1485,-1791,-2104,-1792,-1524,-322,-1793,-1794,-1795,-2105,-2106,-1796,-1797,-2107,-2108,-2109,-6,-527,-2110, +-2111,-2112,-2113,-73,-1319,-494,-2114,-248,-1320,-184,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-2115, +-322,-2116,-2117,-2118,-2119,-2120,-2121,-2939,-15452], +[0,-192,-52,-1485,-1792,-1524,-322,-1793,-1794,-1795,-1791,-1796,-1797,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321, +-1800,-1322,-15454], +[0,-192,-52,-1485,-1791,-2104,-1792,-1524,-322,-1793,-1794,-1795,-2105,-2106,-1796,-1797,-2107,-2108,-2109,-6,-527,-2110, +-2111,-2112,-2113,-73,-1319,-494,-2114,-248,-1320,-184,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-2115, +-322,-2116,-2117,-2118,-2119,-2120,-2121,-2939,-15455], [1,3,10608], -[0,-23], -[0,-3510,-3488,-681,-3489,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161], +[0,-11], +[0,-4569,-1002,-283,-894,-821,-895,-420,-31,-1285,-1003,-1494,-1495,-1744,-1745,-1496,-53], [1,24,583], -[0,-1599,-3670,-3671,-3672,-856,-3673,-3674,-3262], -[0,-3770,-906,-2006,-775,-3771], -[0,-2080], -[0,-519,-525,-4005,-4037,-1001,-4038,-4039,-4040,-1412,-1415,-1449,-1654,-4041,-4042,-1989,-4043,-4044,-4045,-2319,-2322, --4004,-3634,-2410,-2490], -[0,-703], -[0,-475,-856,-3262,-4258,-4259,-3690,-4260,-4261], -[0,-3158,-3095,-3098,-3099,-3161,-3100,-2006,-3159,-3160], -[0,-5014,-5015,-5016,-5017,-5018,-5019,-5020,-5021,-5022,-5023,-5024], -[0,-2469,-3664], -[0,-3262,-5355,-2501,-2006,-5371,-5372,-1599,-3098,-856], -[0,-1654,-664], -[0,-3037,-519,-2384,-2541], -[0,-567], -[0,-2267], -[0,-2541], -[0,-7475], -[0,-3136,-3037,-427,-428,-932,-940,-7476,-948,-958,-1415,-1942,-2375,-2391,-2402,-2410], -[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-427], -[0,-2320,-2322], -[0,-932,-1654], -[0,-1645], -[0,-932,-937,-1001,-1654,-1788], -[0,-1127,-1134,-1144,-1143,-1146], -[0,-1127,-1134,-1143,-1144,-1146], -[0,-664,-1654], -[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788], -[0,-756,-932,-940,-1344,-1415,-1534,-1889,-1942], -[0,-3037,-2410], -[0,-664,-1654,-2379,-2501,-21,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40,-15393,-42], -[0,-8096,-14182,-652,-725,-1942,-2094,-2100,-2125,-2322,-2399,-2410,-2541], -[0,-12449,-12613,-13616,-13615,-8897,-2363,-3214,-2410,-2006,-2476,-2299,-9608], -[0,-3951,-2410], +[0,-99,-7733,-399,-4609,-42,-611,-1288,-116], +[0,-568,-1627,-6,-24,-1292], +[0,-598], +[0,-51,-281,-823,-4692,-338,-2067,-4693,-7855,-196,-8,-78,-3,-2554,-7856,-376,-473,-7857,-2068,-85,-39,-76,-61,-2,-606], +[0,-302], +[0,-184,-42,-116,-908,-7947,-100,-7948,-7949], +[0,-1733,-131,-127,-441,-53,-52,-6,-106,-102], +[0,-8395,-8396,-8397,-8398,-8399,-8400,-8401,-8402,-8403,-8404,-8405], +[0,-30,-105], +[0,-116,-2629,-18,-6,-3384,-2132,-99,-127,-42], +[0,-3,-13], +[0,-5,-51,-82,-34], +[0,-282], +[0,-395], +[0,-34], +[0,-9622], +[0,-29,-5,-22,-19,-1,-12,-5313,-246,-9,-8,-4,-57,-172,-124,-2], +[0,-8,-1,-7,-57,-50,-2,-29,-5,-2203,-84,-19,-22], +[0,-560,-39], +[0,-1,-3], +[0,-92], +[0,-1,-782,-338,-3,-15], +[0,-54,-240,-175,-853,-358], +[0,-54,-240,-853,-175,-358], +[0,-13,-3], +[0,-1,-83,-9,-211,-75,-67,-129,-3,-15], +[0,-55,-1,-12,-10,-8,-17,-38,-4], +[0,-5,-2], +[0,-13,-3,-33,-18,-48,-11,-829,-109,-29,-5,-65,-93,-71,-449,-174,-21,-6514,-137], +[0,-714,-4021,-43,-309,-4,-146,-261,-7,-39,-236,-2,-34], +[0,-1359,-1589,-2933,-1590,-2808,-418,-45,-2,-6,-73,-221,-2846], +[0,-4678,-2], [1,3,313], -[0,-3183,-525,-3184,-3185,-3186,-526,-3116], -[0,-3183,-525,-3205,-3206,-3184,-3207,-3208,-3209,-3185,-3186,-3210,-527,-3116], -[0,-24], -[0,-753,-2082], -[0,-3417,-3418,-3419,-3420,-3421,-3422,-3423,-714,-1028,-1039,-1107,-1442,-1449,-3424,-1600,-3245,-1601,-3425,-3426,-1602, --3427,-3428,-3429,-3430,-1616,-1689,-3431,-3432,-1955,-1974,-1978,-3433,-3434,-2446,-3435,-2550], -[0,-2281,-3436,-2284], -[0,-687,-1599,-3437,-3438,-3328,-3439,-3440,-3441,-856,-3262], -[0,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161,-3510,-3488,-681,-3489], -[0,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161,-3488,-681,-3489,-3518,-3492], -[0,-739,-721,-687], -[0,-3499,-475,-856,-3098,-3551,-3552,-3015,-1599], -[0,-775,-2162,-3575,-3576,-3577,-3161,-3578], -[0,-3634,-3440,-793,-3635,-3636], -[0,-3812,-3813,-3814,-3815,-3816,-3817,-856,-3818], -[0,-3821,-3822,-3823,-3824,-3825,-3826,-2006,-2019], -[0,-3836], -[0,-3827,-3837,-3838,-3167,-3839,-620], -[0,-3136,-3037,-427,-428,-932,-933,-935,-940,-958,-959,-962,-967,-1415,-1424,-1942,-2375,-2376,-2379,-2402,-2410], -[0,-3161,-1334,-3690,-3578], -[0,-3037,-928,-1942,-2319,-2386,-2402], -[0,-687,-3958,-3999,-3099,-4000,-4001,-4002], -[0,-1535,-1536,-687,-4107,-4108,-4109,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], +[0,-4510,-281,-349,-2031,-1280,-179,-607], +[0,-4510,-281,-2032,-4513,-349,-1736,-7558,-381,-2031,-1280,-4514,-162,-607], +[0,-716], +[0,-158,-346], +[0,-3203,-7648,-4557,-7649,-7650,-7651,-7652,-133,-1635,-1637,-28,-101,-78,-4558,-220,-2494,-971,-1492,-7653,-1239,-4559, +-7654,-7655,-3204,-1100,-519,-7656,-7657,-436,-642,-160,-4560,-3205,-125,-7658,-98], +[0,-182,-2505,-1466], +[0,-37,-99,-1000,-697,-2497,-7659,-609,-4561,-42,-116], +[0,-821,-895,-420,-31,-1285,-1003,-1494,-1495,-1744,-1745,-1496,-53,-4569,-1002,-283,-894], +[0,-821,-895,-420,-31,-1285,-1003,-1494,-1495,-1744,-1745,-1496,-53,-1002,-283,-894,-4574,-3208], +[0,-541,-1056,-37], +[0,-4567,-184,-42,-127,-365,-3214,-693,-99], +[0,-24,-80,-4590,-649,-192,-53,-113], +[0,-61,-609,-1618,-4600,-1145], +[0,-3242,-4644,-4645,-2542,-1148,-1752,-42,-7774], +[0,-2051,-2544,-2052,-1294,-2053,-7775,-6,-36], +[0,-7779], +[0,-1149,-4650,-3244,-745,-265,-453], +[0,-29,-5,-22,-19,-1,-255,-949,-12,-9,-145,-148,-25,-8,-1085,-4,-57,-214,-33,-124,-2], +[0,-53,-103,-100,-113], +[0,-5,-87,-4,-85,-561,-124], +[0,-37,-299,-699,-441,-201,-1758,-752], +[0,-1970,-1663,-37,-824,-1301,-3266,-178,-901,-201,-902,-474,-2071,-2555,-362,-2072,-825,-2073], [1,3,825], -[0,-2006,-3159,-3119,-1613], -[0,-4055,-3690,-4140,-4141,-4142,-4143,-4144,-2410,-3018,-3445,-3577], -[0,-4165,-856,-4100,-3485,-4156,-3215,-2250], -[0,-4328,-4329,-1105,-4330,-1599,-3437,-856,-4331,-3264,-1764], -[0,-4332,-4335,-4345,-4346,-4340,-4347], -[0,-4332,-4336,-4337,-4338,-4339,-4340,-4344], -[0,-234,-3044,-5011,-3738,-865,-985,-1771,-1788,-5012,-2376,-5013,-2392,-2469,-2503,-2509], -[0,-5096], -[0,-5141,-4601,-4602,-3578,-3445], -[0,-5140], -[0,-3497,-3496,-3161,-3264,-5246,-3862,-3495,-5247,-3494], -[0,-433,-436], -[0,-1788,-1654,-932,-821,-966,-958,-968,-943,-963,-974], -[0,-475,-3161,-4865,-5495], -[0,-3690,-489,-4100,-856,-3691,-5728], -[0,-1047], +[0,-6,-106,-996,-1099], +[0,-108,-100,-4705,-7897,-2557,-7898,-1303,-2,-440,-46,-192], +[0,-753,-42,-700,-1001,-3271,-74,-97], +[0,-1764,-2080,-545,-7966,-99,-1000,-42,-7967,-31,-159], +[0,-1152,-1305,-7969,-4760,-826,-2083], +[0,-1152,-1306,-2081,-1767,-1768,-826,-1514], +[0,-1200,-143,-2599,-698,-210,-370,-65,-15,-4855,-214,-3343,-155,-30,-93,-1712], +[0,-8430], +[0,-703,-476,-531,-113,-46], +[0,-3359], +[0,-1285,-420,-53,-31,-8485,-107,-895,-8486,-821], +[0,-2967,-2968], +[0,-15,-3,-1,-780,-75,-9,-67,-83,-211,-129], +[0,-184,-53,-94,-1810], +[0,-100,-1376,-700,-42,-422,-1161], +[0,-339], [1,3,1788], -[0,-2155], -[0,-581,-5110,-6120,-3173,-6129,-6130,-770], +[0,-497], +[0,-1382,-1790,-832,-695,-2152,-2153,-626], [1,3,1820], [1,3,1876], [1,3,1878], -[0,-1309], -[0,-1592,-1654,-664], -[0,-6657,-6658,-4868,-4004,-6659], -[0,-2231], -[0,-6689,-2115], -[0,-714], -[0,-3966,-3957,-6722,-687,-4002,-6723,-6724,-4112,-714,-4672], -[0,-3214,-6784,-711,-3116], -[0,-2337], -[0,-465,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], -[0,-711], -[0,-856,-1599], -[0,-865], -[0,-891], -[0,-5558,-3591,-633,-6340,-6408,-6916,-3870], -[0,-932,-8163,-727,-8164,-3214,-4900,-4795,-8165,-6434,-8166], -[0,-932,-5208,-3784], -[0,-429], -[0,-932,-5208,-3784,-3966,-3967,-3217,-7094,-6656,-1847,-6024,-4792], -[0,-932,-3784,-5208,-2006], -[0,-426], -[0,-1004,-3161,-6125,-3578,-1334,-3691,-5728,-3122,-3994,-3690], -[0,-1107,-5064,-5922,-8528], -[0,-1543,-2168], -[0,-1654,-2125,-2250], -[0,-1127,-1144], -[0,-510,-2125], -[0,-9219,-1654,-4004], -[0,-1127,-1132,-2541], -[0,-519,-1168,-1825,-2460,-2541], -[0,-2347], -[0,-1252,-1654,-2198,-2460], -[0,-2347,-1876], -[0,-1876,-2347], -[0,-519,-1825,-2460,-2541], -[0,-3037,-652,-1294,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-1696,-596], -[0,-707,-1510], -[0,-1580], -[0,-1386,-9944,-9945,-3162,-3994,-9946,-752,-5269,-1861], -[0,-519,-9982,-2384,-2541], -[0,-4004,-3634,-1412,-4873,-3440], -[0,-4034], -[0,-5092,-3264,-5388,-5387], -[0,-1452], -[0,-2518], -[0,-1646], -[0,-1523,-10558,-5827,-7685,-7773,-4634,-6005,-4055], -[0,-3326,-351,-3266,-652,-932,-943,-1600,-3668,-1654,-2127], -[0,-4792,-6137,-6138,-6134,-9405,-11114,-4004,-4215,-8611], -[0,-1127], -[0,-687,-3957,-11725,-3673,-1764,-11726,-11727,-8907,-10227,-5921,-4107], -[0,-3994,-1805,-1810,-11816,-11817,-11818,-11819,-11820,-11821,-7095,-4865,-3496,-7237,-7863,-2435,-11822,-7303,-4377, --7091,-8421,-6599,-1958,-3258,-6656], -[0,-6748,-4377,-5829,-3215,-6747,-687,-3957], -[0,-1654,-664,-666], -[0,-1841,-6120,-8449,-3173,-8450,-6121,-1791,-11437], -[0,-2541,-519,-2384], -[0,-1859,-11878,-11613], +[0,-1651], +[0,-1975,-3,-13], +[0,-2701,-9187,-913,-76,-710], +[0,-130], +[0,-5156,-644], +[0,-133], +[0,-144,-316,-1172,-37,-752,-9223,-3543,-474,-133,-1774], +[0,-45,-1835,-308,-607], +[0,-1467], +[0,-772,-1,-83,-9,-211,-75,-67,-129,-3,-15,-123], +[0,-308], +[0,-42,-99], +[0,-210], +[0,-458], +[0,-828,-1501,-60,-2677,-536,-2719,-1150], +[0,-1,-1564,-335,-3687,-45,-2090,-446,-2209,-1540,-3688], +[0,-1,-354,-383], +[0,-771], +[0,-1,-354,-383,-144,-353,-350,-5237,-128,-249,-657,-425], +[0,-1,-383,-354,-6], +[0,-320], +[0,-40,-53,-3483,-113,-103,-422,-1161,-442,-306,-100], +[0,-28,-2100,-535,-10221], +[0,-732,-646], +[0,-3,-7,-97], +[0,-54,-175], +[0,-59,-7], +[0,-268,-3,-76], +[0,-54,-164,-34], +[0,-51,-32,-866,-70,-34], +[0,-69], +[0,-311,-3,-81,-70], +[0,-69,-142], +[0,-142,-69], +[0,-51,-866,-70,-34], +[0,-5,-43,-1076,-4,-146,-261,-236,-2,-34], +[0,-801,-667], +[0,-334,-1091], +[0,-1434], +[0,-1426,-11110,-11111,-95,-306,-2862,-943,-501,-2400], +[0,-51,-3853,-82,-34], +[0,-76,-61,-196,-573,-609], +[0,-2066], +[0,-266,-31,-1158,-653], +[0,-119], +[0,-222], +[0,-88], +[0,-2374,-5879,-252,-403,-768,-1017,-1166,-108], +[0,-207,-62,-206,-43,-1,-83,-220,-2524,-3,-14], +[0,-425,-2154,-2155,-1820,-3787,-11967,-76,-317,-1571], +[0,-54], +[0,-37,-316,-12446,-611,-159,-12447,-2904,-5575,-2868,-918,-824], +[0,-306,-152,-592,-6083,-3939,-3940,-6084,-3941,-3942,-1343,-94,-420,-2186,-2206,-200,-3943,-1848,-613,-1843,-1190,-1336, +-286,-892,-128], +[0,-1173,-613,-916,-74,-763,-37,-316], +[0,-3,-13,-1930], +[0,-1683,-832,-2213,-695,-5513,-2668,-865,-2899], +[0,-34,-51,-82], +[0,-867,-1358,-6041], [1,3,6920], -[0,-523], -[0,-635,-1934], +[0,-194], +[0,-301,-464], [1,3,7131], [1,3,7300], -[0,-2006,-12452], -[0,-2006,-2034,-5271,-5270,-3162,-7085,-12561,-12562], +[0,-6,-12995], +[0,-6,-235,-355,-291,-95,-1342,-13071,-13072], [1,3,7605], -[0,-2006,-3122,-10470,-9843,-1306,-10606], +[0,-6,-442,-3883,-2244,-1422,-1584], [1,3,7706], [1,3,7712], -[0,-2384,-2541], -[0,-12913], -[0,-2127,-12913,-4795,-1764,-3209], -[0,-2006,-3161,-1713,-3578,-3844,-3966,-3577,-3445,-687,-2455], +[0,-82,-34], +[0,-770], +[0,-14,-770,-446,-159,-381], +[0,-6,-53,-390,-113,-216,-144,-192,-46,-37,-2006], [1,3,8114], [1,3,8321], [1,3,8373], -[0,-9214,-2359,-2330,-13745,-6909,-11846,-13746], -[0,-2410,-856,-3262], -[0,-2444], -[0,-3100,-3161,-6211,-14339,-14340,-2466], -[0,-14357], -[0,-3113,-7646,-7641,-3673,-687,-3970,-3108,-3960,-3262,-3976,-3994], -[0,-3214,-3100,-2006,-3481], +[0,-3767,-161,-603,-6390,-2178,-3944,-6391], +[0,-2,-42,-116], +[0,-136], +[0,-52,-53,-1822,-14534,-14535,-104], +[0,-2936], +[0,-694,-1557,-712,-611,-37,-1010,-1489,-569,-116,-1011,-306], +[0,-45,-52,-6,-1141], [1,24,9789], -[0,-2662], +[0,-3138], [1,24,10023], -[0,-1386,-3161,-2006,-3162,-3994,-9946,-3995,-752,-3997,-3998], -[0,-15309], +[0,-1426,-53,-6,-95,-306,-2862,-2065,-943,-3261,-2551], +[0,-15401], [1,3,10151], -[0,-856,-3262,-2476], -[0,-15415,-15416,-15417,-15418,-11853,-10655,-15419,-6711,-15420,-15421,-4126,-15071,-2006,-15422,-475,-2476,-5270,-3162, --11321,-15423,-15424], -[0,-4258,-7641,-3100,-4865,-6342,-9290], -[0,-15445,-3445], -[0,-3037,-652,-1942,-2094,-2100,-2384,-2399,-2410,-2541], -[0,-1368], -[0,-525,-2006,-1368,-3161,-4729,-9850,-9613], -[0,-15627,-14386,-15628,-15629,-15630,-4864,-3634,-3636], +[0,-42,-116,-73], +[0,-6519,-6520,-6521,-6522,-1586,-3895,-6523,-2703,-6524,-6525,-1511,-2280,-6,-6526,-184,-73,-291,-95,-1357,-2282,-6527], +[0,-908,-712,-52,-94,-1825,-3775], +[0,-1594,-46], +[0,-5,-43,-4,-146,-261,-82,-236,-2,-34], +[0,-1963], +[0,-281,-6,-1963,-53,-2581,-3844,-2241], +[0,-4050,-6437,-15676,-4051,-4052,-572,-61,-1145], [1,3,10609], -[0,-15699,-3967,-6209,-2410,-15700,-15701,-3161,-11894], +[0,-6540,-353,-2157,-2,-6541,-6542,-53,-3948], [1,3,10660], [1,3,10677], [1,3,10691], [1,3,10722], -[0,-1313,-3445,-15751,-15752,-3161,-9840], -[0,-2006,-3161,-15804,-15805], -[0,-1415,-932,-2127,-2375,-1942,-2410,-3136,-940,-967,-1419,-428,-427], -[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3960,-3262,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966, --3967,-1965,-3968,-1966,-3969,-2063,-3970,-3971,-3108,-3972,-3973,-3974,-3975,-3694,-2410,-3160,-3976,-2559,-3977], -[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, --5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, --5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364], +[0,-855,-46,-15782,-15783,-53,-2858], +[0,-6,-53,-15835,-15836], +[0,-8,-1,-14,-57,-4,-2,-29,-12,-25,-176,-19,-22], +[0,-2058,-2548,-1755,-1756,-37,-316,-299,-1757,-543,-569,-116,-3258,-352,-2549,-195,-1508,-2059,-45,-1294,-144,-353,-495, +-2060,-392,-2061,-1256,-1010,-3259,-1489,-1509,-1295,-178,-445,-650,-2,-102,-1011,-1716,-2062], +[0,-192,-52,-1485,-1791,-2104,-1792,-1524,-322,-1793,-1794,-1795,-2105,-2106,-1796,-1797,-2107,-2108,-2109,-6,-527,-2110, +-2111,-2112,-2113,-73,-1319,-494,-2114,-248,-1320,-184,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-2115, +-322,-2116,-2117,-2118,-2119,-2120,-2121,-2939], [1,3,10858], -[0,-231,-2900], +[0,-1904,-1725], [1,24,11236], -[0,-1,-2,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-23,-24,-25,-26,-27,-28,-29,-30,-31,-32, --33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62, --63, --64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93, --94,-95,-96,-97,-98,-99,-100,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-113,-114,-115,-116,-117,-118, --119,-120,-121,-122,-123,-124,-125,-126,-127, --128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139,-140,-141,-142,-143,-144,-145,-146,-147,-148,-149,-150,-151, --152,-153,-154,-155,-156,-157,-158,-159,-160,-161,-162,-163,-164,-165,-166,-167,-168,-169,-170,-171,-172,-173,-174,-175, --176,-177,-178,-179,-180,-181,-182,-183,-184,-185,-186,-187,-188,-189,-190,-191, --192,-193,-194,-195,-196,-197,-198,-199,-200,-201,-202,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-215, --216,-217,-218,-219,-220,-221,-222,-223,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,-235,-236,-237,-238,-239, --240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255, --256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-274,-275,-276,-277,-278,-279, --280,-281,-282,-283,-284,-285,-286,-287,-288,-289,-290,-291,-292,-293,-294,-295,-296,-297,-298,-299,-300,-301,-302,-303, --304,-305,-306,-307,-308,-309,-310,-311,-312,-313,-314,-315,-316,-317,-318,-319, --320,-321,-322,-323,-324,-325,-326,-327,-328,-329,-330,-331,-332,-333,-334,-335,-336,-337,-338,-339,-340,-341,-342,-343, --344,-345,-346,-347,-348,-349,-350,-351,-352,-353,-354,-355,-356,-357,-358,-359,-360,-361,-362,-363,-364,-365,-366,-367, --368,-369,-370,-371,-372,-373,-374,-375,-376,-377,-378,-379,-380,-381,-382,-383, --384,-385,-386,-387,-388,-389,-390,-391,-392,-393,-394,-395,-396,-397,-398,-399,-400,-401,-402,-403,-404,-405,-406,-407, --408,-409,-410,-411,-412,-413,-414,-415,-416,-417,-418,-419,-420,-421,-422,-423,-424,-425,-426,-427,-428,-429,-430,-431, --432,-433,-434,-435,-436,-437,-438,-439,-440,-441,-442,-443,-444,-445,-446,-447, --448,-449,-450,-451,-452,-453,-454,-455,-456,-457,-458,-459,-460,-461,-462,-463,-464,-465,-466,-467,-468,-469,-470,-471, --472,-473,-474,-475,-476,-477,-478,-479,-480,-481,-482,-483,-484,-485,-486,-487,-488,-489,-490,-491,-492,-493,-494,-495, --496,-497,-498,-499,-500,-501,-502,-503,-504,-505,-506,-507,-508,-509,-510,-511, --512,-513,-514,-515,-516,-517,-518,-519,-520,-521,-522,-523,-524,-525,-526,-527,-528,-529,-530,-531,-532,-533,-534,-535, --536,-537,-538,-539,-540,-541,-542,-543,-544,-545,-546,-547,-548,-549,-550,-551,-552,-553,-554,-555,-556,-557,-558,-559, --560,-561,-562,-563,-564,-565,-566,-567,-568,-569,-570,-571,-572,-573,-574,-575, --576,-577,-578,-579,-580,-581,-582,-583,-584,-585,-586,-587,-588,-589,-590,-591,-592,-593,-594,-595,-596,-597,-598,-599, --600,-601,-602,-603,-604,-605,-606,-607,-608,-609,-610,-611,-612,-613,-614,-615,-616,-617,-618,-619,-620,-621,-622,-623, --624,-625,-626,-627,-628,-629,-630,-631,-632,-633,-634,-635,-636,-637,-638,-639, --640,-641,-642,-643,-644,-645,-646,-647,-648,-649,-650,-651,-652,-653,-654,-655,-656,-657,-658,-659,-660,-661,-662,-663, --664,-665,-666,-667,-668,-669,-670,-671,-672,-673,-674,-675,-676,-677,-678,-679,-680,-681,-682,-683,-684,-685,-686,-687, --688,-689,-690,-691,-692,-693,-694,-695,-696,-697,-698,-699,-700,-701,-702,-703, --704,-705,-706,-707,-708,-709,-710,-711,-712,-713,-714,-715,-716,-717,-718,-719,-720,-721,-722,-723,-724,-725,-726,-727, --728,-729,-730,-731,-732,-733,-734,-735,-736,-737,-738,-739,-740,-741,-742,-743,-744,-745,-746,-747,-748,-749,-750,-751, --752,-753,-754,-755,-756,-757,-758,-759,-760,-761,-762,-763,-764,-765,-766,-767, --768,-769,-770,-771,-772,-773,-774,-775,-776,-777,-778,-779,-780,-781,-782,-783,-784,-785,-786,-787,-788,-789,-790,-791, --792,-793,-794,-795,-796,-797,-798,-799,-800,-801,-802,-803,-804,-805,-806,-807,-808,-809,-810,-811,-812,-813,-814,-815, --816,-817,-818,-819,-820,-821,-822,-823,-824,-825,-826,-827,-828,-829,-830,-831, --832,-833,-834,-835,-836,-837,-838,-839,-840,-841,-842,-843,-844,-845,-846,-847,-848,-849,-850,-851,-852,-853,-854,-855, --856,-857,-858,-859,-860,-861,-862,-863,-864,-865,-866,-867,-868,-869,-870,-871,-872,-873,-874,-875,-876,-877,-878,-879, --880,-881,-882,-883,-884,-885,-886,-887,-888,-889,-890,-891,-892,-893,-894,-895, --896,-897,-898,-899,-900,-901,-902,-903,-904,-905,-906,-907,-908,-909,-910,-911,-912,-913,-914,-915,-916,-917,-918,-919, --920,-921,-922,-923,-924,-925,-926,-927,-928,-929,-930,-931,-932,-933,-934,-935,-936,-937,-938,-939,-940,-941,-942,-943, --944,-945,-946,-947,-948,-949,-950,-951,-952,-953,-954,-955,-956,-957,-958,-959, --960,-961,-962,-963,-964,-965,-966,-967,-968,-969,-970,-971,-972,-973,-974,-975,-976,-977,-978,-979,-980,-981,-982,-983, --984,-985,-986,-987,-988,-989,-990,-991,-992,-993,-994,-995,-996,-997,-998,-999,-1000,-1001,-1002,-1003,-1004,-1005, --1006,-1007,-1008,-1009,-1010,-1011,-1012,-1013,-1014,-1015,-1016,-1017,-1018,-1019,-1020,-1021,-1022,-1023, --1024,-1025,-1026,-1027,-1028,-1029,-1030,-1031,-1032,-1033,-1034,-1035,-1036,-1037,-1038,-1039,-1040,-1041,-1042,-1043, --1044,-1045,-1046,-1047,-1048,-1049,-1050,-1051,-1052,-1053,-1054,-1055,-1056,-1057,-1058,-1059,-1060,-1061,-1062,-1063, --1064,-1065,-1066,-1067,-1068,-1069,-1070,-1071,-1072,-1073,-1074,-1075,-1076,-1077,-1078,-1079,-1080,-1081,-1082,-1083, --1084,-1085,-1086,-1087, --1088,-1089,-1090,-1091,-1092,-1093,-1094,-1095,-1096,-1097,-1098,-1099,-1100,-1101,-1102,-1103,-1104,-1105,-1106,-1107, --1108,-1109,-1110,-1111,-1112,-1113,-1114,-1115,-1116,-1117,-1118,-1119,-1120,-1121,-1122,-1123,-1124,-1125,-1126,-1127, --1128,-1129,-1130,-1131,-1132,-1133,-1134,-1135,-1136,-1137,-1138,-1139,-1140,-1141,-1142,-1143,-1144,-1145,-1146,-1147, --1148,-1149,-1150,-1151, --1152,-1153,-1154,-1155,-1156,-1157,-1158,-1159,-1160,-1161,-1162,-1163,-1164,-1165,-1166,-1167,-1168,-1169,-1170,-1171, --1172,-1173,-1174,-1175,-1176,-1177,-1178,-1179,-1180,-1181,-1182,-1183,-1184,-1185,-1186,-1187,-1188,-1189,-1190,-1191, --1192,-1193,-1194,-1195,-1196,-1197,-1198,-1199,-1200,-1201,-1202,-1203,-1204,-1205,-1206,-1207,-1208,-1209,-1210,-1211, --1212,-1213,-1214,-1215, --1216,-1217,-1218,-1219,-1220,-1221,-1222,-1223,-1224,-1225,-1226,-1227,-1228,-1229,-1230,-1231,-1232,-1233,-1234,-1235, --1236,-1237,-1238,-1239,-1240,-1241,-1242,-1243,-1244,-1245,-1246,-1247,-1248,-1249,-1250,-1251,-1252,-1253,-1254,-1255, --1256,-1257,-1258,-1259,-1260,-1261,-1262,-1263,-1264,-1265,-1266,-1267,-1268,-1269,-1270,-1271,-1272,-1273,-1274,-1275, --1276,-1277,-1278,-1279, --1280,-1281,-1282,-1283,-1284,-1285,-1286,-1287,-1288,-1289,-1290,-1291,-1292,-1293,-1294,-1295,-1296,-1297,-1298,-1299, --1300,-1301,-1302,-1303,-1304,-1305,-1306,-1307,-1308,-1309,-1310,-1311,-1312,-1313,-1314,-1315,-1316,-1317,-1318,-1319, --1320,-1321,-1322,-1323,-1324,-1325,-1326,-1327,-1328,-1329,-1330,-1331,-1332,-1333,-1334,-1335,-1336,-1337,-1338,-1339, --1340,-1341,-1342,-1343, --1344,-1345,-1346,-1347,-1348,-1349,-1350,-1351,-1352,-1353,-1354,-1355,-1356,-1357,-1358,-1359,-1360,-1361,-1362,-1363, --1364,-1365,-1366,-1367,-1368,-1369,-1370,-1371,-1372,-1373,-1374,-1375,-1376,-1377,-1378,-1379,-1380,-1381,-1382,-1383, --1384,-1385,-1386,-1387,-1388,-1389,-1390,-1391,-1392,-1393,-1394,-1395,-1396,-1397,-1398,-1399,-1400,-1401,-1402,-1403, --1404,-1405,-1406,-1407, --1408,-1409,-1410,-1411,-1412,-1413,-1414,-1415,-1416,-1417,-1418,-1419,-1420,-1421,-1422,-1423,-1424,-1425,-1426,-1427, --1428,-1429,-1430,-1431,-1432,-1433,-1434,-1435,-1436,-1437,-1438,-1439,-1440,-1441,-1442,-1443,-1444,-1445,-1446,-1447, --1448,-1449,-1450,-1451,-1452,-1453,-1454,-1455,-1456,-1457,-1458,-1459,-1460,-1461,-1462,-1463,-1464,-1465,-1466,-1467, --1468,-1469,-1470,-1471, --1472,-1473,-1474,-1475,-1476,-1477,-1478,-1479,-1480,-1481,-1482,-1483,-1484,-1485,-1486,-1487,-1488,-1489,-1490,-1491, --1492,-1493,-1494,-1495,-1496,-1497,-1498,-1499,-1500,-1501,-1502,-1503,-1504,-1505,-1506,-1507,-1508,-1509,-1510,-1511, --1512,-1513,-1514,-1515,-1516,-1517,-1518,-1519,-1520,-1521,-1522,-1523,-1524,-1525,-1526,-1527,-1528,-1529,-1530,-1531, --1532,-1533,-1534,-1535, --1536,-1537,-1538,-1539,-1540,-1541,-1542,-1543,-1544,-1545,-1546,-1547,-1548,-1549,-1550,-1551,-1552,-1553,-1554,-1555, --1556,-1557,-1558,-1559,-1560,-1561,-1562,-1563,-1564,-1565,-1566,-1567,-1568,-1569,-1570,-1571,-1572,-1573,-1574,-1575, --1576,-1577,-1578,-1579,-1580,-1581,-1582,-1583,-1584,-1585,-1586,-1587,-1588,-1589,-1590,-1591,-1592,-1593,-1594,-1595, --1596,-1597,-1598,-1599, --1600,-1601,-1602,-1603,-1604,-1605,-1606,-1607,-1608,-1609,-1610,-1611,-1612,-1613,-1614,-1615,-1616,-1617,-1618,-1619, --1620,-1621,-1622,-1623,-1624,-1625,-1626,-1627,-1628,-1629,-1630,-1631,-1632,-1633,-1634,-1635,-1636,-1637,-1638,-1639, --1640,-1641,-1642,-1643,-1644,-1645,-1646,-1647,-1648,-1649,-1650,-1651,-1652,-1653,-1654,-1655,-1656,-1657,-1658,-1659, --1660,-1661,-1662,-1663, --1664,-1665,-1666,-1667,-1668,-1669,-1670,-1671,-1672,-1673,-1674,-1675,-1676,-1677,-1678,-1679,-1680,-1681,-1682,-1683, --1684,-1685,-1686,-1687,-1688,-1689,-1690,-1691,-1692,-1693,-1694,-1695,-1696,-1697,-1698,-1699,-1700,-1701,-1702,-1703, --1704,-1705,-1706,-1707,-1708,-1709,-1710,-1711,-1712,-1713,-1714,-1715,-1716,-1717,-1718,-1719,-1720,-1721,-1722,-1723, --1724,-1725,-1726,-1727, --1728,-1729,-1730,-1731,-1732,-1733,-1734,-1735,-1736,-1737,-1738,-1739,-1740,-1741,-1742,-1743,-1744,-1745,-1746,-1747, --1748,-1749,-1750,-1751,-1752,-1753,-1754,-1755,-1756,-1757,-1758,-1759,-1760,-1761,-1762,-1763,-1764,-1765,-1766,-1767, --1768,-1769,-1770,-1771,-1772,-1773,-1774,-1775,-1776,-1777,-1778,-1779,-1780,-1781,-1782,-1783,-1784,-1785,-1786,-1787, --1788,-1789,-1790,-1791, --1792,-1793,-1794,-1795,-1796,-1797,-1798,-1799,-1800,-1801,-1802,-1803,-1804,-1805,-1806,-1807,-1808,-1809,-1810,-1811, --1812,-1813,-1814,-1815,-1816,-1817,-1818,-1819,-1820,-1821,-1822,-1823,-1824,-1825,-1826,-1827,-1828,-1829,-1830,-1831, --1832,-1833,-1834,-1835,-1836,-1837,-1838,-1839,-1840,-1841,-1842,-1843,-1844,-1845,-1846,-1847,-1848,-1849,-1850,-1851, --1852,-1853,-1854,-1855, --1856,-1857,-1858,-1859,-1860,-1861,-1862,-1863,-1864,-1865,-1866,-1867,-1868,-1869,-1870,-1871,-1872,-1873,-1874,-1875, --1876,-1877,-1878,-1879,-1880,-1881,-1882,-1883,-1884,-1885,-1886,-1887,-1888,-1889,-1890,-1891,-1892,-1893,-1894,-1895, --1896,-1897,-1898,-1899,-1900,-1901,-1902,-1903,-1904,-1905,-1906,-1907,-1908,-1909,-1910,-1911,-1912,-1913,-1914,-1915, --1916,-1917,-1918,-1919, --1920,-1921,-1922,-1923,-1924,-1925,-1926,-1927,-1928,-1929,-1930,-1931,-1932,-1933,-1934,-1935,-1936,-1937,-1938,-1939, --1940,-1941,-1942,-1943,-1944,-1945,-1946,-1947,-1948,-1949,-1950,-1951,-1952,-1953,-1954,-1955,-1956,-1957,-1958,-1959, --1960,-1961,-1962,-1963,-1964,-1965,-1966,-1967,-1968,-1969,-1970,-1971,-1972,-1973,-1974,-1975,-1976,-1977,-1978,-1979, --1980,-1981,-1982,-1983, --1984,-1985,-1986,-1987,-1988,-1989,-1990,-1991,-1992,-1993,-1994,-1995,-1996,-1997,-1998,-1999,-2000,-2001,-2002,-2003, --2004,-2005,-2006,-2007,-2008,-2009,-2010,-2011,-2012,-2013,-2014,-2015,-2016,-2017,-2018,-2019,-2020,-2021,-2022,-2023, --2024,-2025,-2026,-2027,-2028,-2029,-2030,-2031,-2032,-2033,-2034,-2035,-2036,-2037,-2038,-2039,-2040,-2041,-2042,-2043, --2044,-2045,-2046,-2047, --2048,-2049,-2050,-2051,-2052,-2053,-2054,-2055,-2056,-2057,-2058,-2059,-2060,-2061,-2062,-2063,-2064,-2065,-2066,-2067, --2068,-2069,-2070,-2071,-2072,-2073,-2074,-2075,-2076,-2077,-2078,-2079,-2080,-2081,-2082,-2083,-2084,-2085,-2086,-2087, --2088,-2089,-2090,-2091,-2092,-2093,-2094,-2095,-2096,-2097,-2098,-2099,-2100,-2101,-2102,-2103,-2104,-2105,-2106,-2107, --2108,-2109,-2110,-2111, --2112,-2113,-2114,-2115,-2116,-2117,-2118,-2119,-2120,-2121,-2122,-2123,-2124,-2125,-2126,-2127,-2128,-2129,-2130,-2131, --2132,-2133,-2134,-2135,-2136,-2137,-2138,-2139,-2140,-2141,-2142,-2143,-2144,-2145,-2146,-2147,-2148,-2149,-2150,-2151, --2152,-2153,-2154,-2155,-2156,-2157,-2158,-2159,-2160,-2161,-2162,-2163,-2164,-2165,-2166,-2167,-2168,-2169,-2170,-2171, --2172,-2173,-2174,-2175, --2176,-2177,-2178,-2179,-2180,-2181,-2182,-2183,-2184,-2185,-2186,-2187,-2188,-2189,-2190,-2191,-2192,-2193,-2194,-2195, --2196,-2197,-2198,-2199,-2200,-2201,-2202,-2203,-2204,-2205,-2206,-2207,-2208,-2209,-2210,-2211,-2212,-2213,-2214,-2215, --2216,-2217,-2218,-2219,-2220,-2221,-2222,-2223,-2224,-2225,-2226,-2227,-2228,-2229,-2230,-2231,-2232,-2233,-2234,-2235, --2236,-2237,-2238,-2239, --2240,-2241,-2242,-2243,-2244,-2245,-2246,-2247,-2248,-2249,-2250,-2251,-2252,-2253,-2254,-2255,-2256,-2257,-2258,-2259, --2260,-2261,-2262,-2263,-2264,-2265,-2266,-2267,-2268,-2269,-2270,-2271,-2272,-2273,-2274,-2275,-2276,-2277,-2278,-2279, --2280,-2281,-2282,-2283,-2284,-2285,-2286,-2287,-2288,-2289,-2290,-2291,-2292,-2293,-2294,-2295,-2296,-2297,-2298,-2299, --2300,-2301,-2302,-2303, --2304,-2305,-2306,-2307,-2308,-2309,-2310,-2311,-2312,-2313,-2314,-2315,-2316,-2317,-2318,-2319,-2320,-2321,-2322,-2323, --2324,-2325,-2326,-2327,-2328,-2329,-2330,-2331,-2332,-2333,-2334,-2335,-2336,-2337,-2338,-2339,-2340,-2341,-2342,-2343, --2344,-2345,-2346,-2347,-2348,-2349,-2350,-2351,-2352,-2353,-2354,-2355,-2356,-2357,-2358,-2359,-2360,-2361,-2362,-2363, --2364,-2365,-2366,-2367, --2368,-2369,-2370,-2371,-2372,-2373,-2374,-2375,-2376,-2377,-2378,-2379,-2380,-2381,-2382,-2383,-2384,-2385,-2386,-2387, --2388,-2389,-2390,-2391,-2392,-2393,-2394,-2395,-2396,-2397,-2398,-2399,-2400,-2401,-2402,-2403,-2404,-2405,-2406,-2407, --2408,-2409,-2410,-2411,-2412,-2413,-2414,-2415,-2416,-2417,-2418,-2419,-2420,-2421,-2422,-2423,-2424,-2425,-2426,-2427, --2428,-2429,-2430,-2431, --2432,-2433,-2434,-2435,-2436,-2437,-2438,-2439,-2440,-2441,-2442,-2443,-2444,-2445,-2446,-2447,-2448,-2449,-2450,-2451, --2452,-2453,-2454,-2455,-2456,-2457,-2458,-2459,-2460,-2461,-2462,-2463,-2464,-2465,-2466,-2467,-2468,-2469,-2470,-2471, --2472,-2473,-2474,-2475,-2476,-2477,-2478,-2479,-2480,-2481,-2482,-2483,-2484,-2485,-2486,-2487,-2488,-2489,-2490,-2491, --2492,-2493,-2494,-2495, --2496,-2497,-2498,-2499,-2500,-2501,-2502,-2503,-2504,-2505,-2506,-2507,-2508,-2509,-2510,-2511,-2512,-2513,-2514,-2515, --2516,-2517,-2518,-2519,-2520,-2521,-2522,-2523,-2524,-2525,-2526,-2527,-2528,-2529,-2530,-2531,-2532,-2533,-2534,-2535, --2536,-2537,-2538,-2539,-2540,-2541,-2542,-2543,-2544,-2545,-2546,-2547,-2548,-2549,-2550,-2551,-2552,-2553,-2554,-2555, --2556,-2557,-2558,-2559, --2560,-2561,-2562,-2563,-2564,-2565,-2566,-2567,-2568,-2569,-2570,-2571,-2572,-2573,-2574,-2575,-2576,-2577,-2578,-2579, --2580,-2581,-2582,-2583,-2584,-2585,-2586,-2587,-2588,-2589,-2590,-2591,-2592,-2593,-2594,-2595,-2596,-2597,-2598,-2599, --2600,-2601,-2602,-2603,-2604,-2605,-2606,-2607,-2608,-2609,-2610,-2611,-2612,-2613,-2614,-2615,-2616,-2617,-2618,-2619, --2620,-2621,-2622,-2623, --2624,-2625,-2626,-2627,-2628,-2629,-2630,-2631,-2632,-2633,-2634,-2635,-2636,-2637,-2638,-2639,-2640,-2641,-2642,-2643, --2644,-2645,-2646,-2647,-2648,-2649,-2650,-2651,-2652,-2653,-2654,-2655,-2656,-2657,-2658,-2659,-2660,-2661,-2662,-2663, --2664,-2665,-2666,-2667,-2668,-2669,-2670,-2671,-2672,-2673,-2674,-2675,-2676,-2677,-2678,-2679,-2680,-2681,-2682,-2683, --2684,-2685,-2686,-2687, --2688,-2689,-2690,-2691,-2692,-2693,-2694,-2695,-2696,-2697,-2698,-2699,-2700,-2701,-2702,-2703,-2704,-2705,-2706,-2707, --2708,-2709,-2710,-2711,-2712,-2713,-2714,-2715,-2716,-2717,-2718,-2719,-2720,-2721,-2722,-2723,-2724,-2725,-2726,-2727, --2728,-2729,-2730,-2731,-2732,-2733,-2734,-2735,-2736,-2737,-2738,-2739,-2740,-2741,-2742,-2743,-2744,-2745,-2746,-2747, --2748,-2749,-2750,-2751, --2752,-2753,-2754,-2755,-2756,-2757,-2758,-2759,-2760,-2761,-2762,-2763,-2764,-2765,-2766,-2767,-2768,-2769,-2770,-2771, --2772,-2773,-2774,-2775,-2776,-2777,-2778,-2779,-2780,-2781,-2782,-2783,-2784,-2785,-2786,-2787,-2788,-2789,-2790,-2791, --2792,-2793,-2794,-2795,-2796,-2797,-2798,-2799,-2800,-2801,-2802,-2803,-2804,-2805,-2806,-2807,-2808,-2809,-2810,-2811, --2812,-2813,-2814,-2815, --2816,-2817,-2818,-2819,-2820,-2821,-2822,-2823,-2824,-2825,-2826,-2827,-2828,-2829,-2830,-2831,-2832,-2833,-2834,-2835, --2836,-2837,-2838,-2839,-2840,-2841,-2842,-2843,-2844,-2845,-2846,-2847,-2848,-2849,-2850,-2851,-2852,-2853,-2854,-2855, --2856,-2857,-2858,-2859,-2860,-2861,-2862,-2863,-2864,-2865,-2866,-2867,-2868,-2869,-2870,-2871,-2872,-2873,-2874,-2875, --2876,-2877,-2878,-2879, --2880,-2881,-2882,-2883,-2884,-2885,-2886,-2887,-2888,-2889,-2890,-2891,-2892,-2893,-2894,-2895,-2896,-2897,-2898,-2899, --2900,-2901,-2902,-2903,-2904,-2905,-2906,-2907,-2908,-2909,-2910,-2911,-2912,-2913,-2914,-2915,-2916,-2917,-2918,-2919, --2920,-2921,-2922,-2923,-2924,-2925,-2926,-2927,-2928,-2929,-2930,-2931,-2932,-2933,-2934,-2935,-2936,-2937,-2938,-2939, --2940,-2941,-2942,-2943, --2944,-2945,-2946,-2947,-2948,-2949,-2950,-2951,-2952,-2953,-2954,-2955,-2956,-2957,-2958,-2959,-2960,-2961,-2962,-2963, --2964,-2965,-2966,-2967,-2968,-2969,-2970,-2971,-2972,-2973,-2974,-2975,-2976,-2977,-2978,-2979,-2980,-2981,-2982,-2983, --2984,-2985,-2986,-2987,-2988,-2989,-2990,-2991,-2992,-2993,-2994,-2995,-2996,-2997,-2998,-2999,-3000,-3001,-3002,-3003, --3004,-3005,-3006,-3007, --3008,-3009,-3010,-3011,-3012,-3013,-3014], +[0,-6577,-4060,-2284,-4061,-2944,-4062,-1898,-1899,-1900,-2285,-6578,-4063,-2945,-4064,-6579,-6580,-6581,-1901,-1902, +-6582,-48,-505,-11,-716,-405,-209,-4065,-2286,-6583,-6584,-4066,-156,-578,-1039,-931,-300,-1040,-170,-449,-21,-132,-137, +-174,-90,-6585,-539,-450,-6586,-6587,-357,-6588,-1361,-6589,-1362,-1363,-1364,-6590,-6591,-6592,-6593,-6594,-1365,-1366, +-1041,-932,-318,-1367,-428,-1368,-1042,-933,-1369,-1197,-1043,-1370,-1198,-1371,-6595,-1372,-579,-406,-1595,-332,-6596, +-1199,-49,-6597,-6598,-6599,-6600,-6601,-6602,-1596,-1597,-2946,-4067,-2947,-2287,-4068,-6603,-6604,-6605,-6606,-6607, +-6608,-6609,-6610,-6611,-6612,-6613,-6614,-6615,-6616,-6617,-6618,-6619,-6620,-6621,-6622,-6623,-6624,-6625,-6626,-6627, +-6628,-6629,-6630, +-6631,-6632,-6633,-6634,-6635,-6636,-6637,-6638,-6639,-6640,-6641,-6642,-6643,-6644,-6645,-6646,-6647,-6648,-6649,-6650, +-6651,-6652,-6653,-4069,-6654,-6655,-4070,-6656,-6657,-6658,-6659,-6660,-2288,-2948,-1903,-1598,-6661,-6662,-6663,-6664, +-6665,-6666,-6667,-6668,-6669,-6670,-6671,-6672,-6673,-6674,-6675,-6676,-6677,-6678,-6679,-6680,-6681,-6682,-6683,-6684, +-6685,-717,-50,-6686, +-2949,-6687,-6688,-2289,-2290,-2950,-2951,-6689,-6690,-6691,-6692,-6693,-2952,-6694,-6695,-6696,-6697,-6698,-6699,-6700, +-6701,-6702,-6703,-6704,-6705,-6706,-6707,-6708,-6709,-6710,-6711,-6712,-6713,-6714,-6715,-6716,-6717,-4071,-6718,-1904, +-2953,-4072,-1200,-6719,-2954,-663,-1201,-6720,-2955,-6721,-6722,-6723,-6724,-6725,-6726,-6727,-6728,-6729,-4073,-6730, +-4074,-6731,-4075,-6732, +-6733,-4076,-6734,-6735,-6736,-2291,-451,-1599,-1905,-2956,-6737,-4077,-6738,-1906,-4078,-6739,-4079,-2957,-4080,-6740, +-4081,-6741,-6742,-4082,-840,-2958,-2959,-1202,-6743,-6744,-6745,-6746,-6747,-6748,-6749,-6750,-6751,-664,-6752,-1907, +-6753,-934,-6754,-2960,-2961,-6755,-4083,-1908,-2292,-665,-6756,-6757,-6758,-6759,-2962,-4084,-6760,-4085,-6761,-6762, +-6763,-6764,-6765,-6766, +-6767,-6768,-6769,-6770,-6771,-6772,-6773,-6774,-6775,-6776,-6777,-6778,-6779,-6780,-6781,-6782,-6783,-6784,-6785,-6786, +-6787,-6788,-6789,-6790,-6791,-6792,-6793,-6794,-6795,-1909,-77,-62,-6796,-4086,-6797,-6798,-6799,-623,-2293,-6800,-6801, +-6802,-6803,-6804,-2963,-1373,-1910,-245,-6805,-6806,-6807,-6808,-6809,-6810,-6811,-6812,-6813,-6814,-6815,-6816,-6817, +-6818,-6819,-6820, +-6821,-6822,-6823,-6824,-6825,-6826,-6827,-6828,-6829,-6830,-6831,-6832,-6833,-6834,-6835,-6836,-6837,-4087,-4088,-6838, +-6839,-2964,-319,-153,-4089,-120,-307,-1911,-2965,-4090,-4091,-4092,-4093,-4094,-2966,-4095,-4096,-4097,-4098,-4099, +-1912,-6840,-320,-22,-19,-771,-6841,-4100,-4101,-2967,-4102,-4103,-2968,-6842,-6843,-2969,-506,-1600,-4104,-6844,-6845, +-6846,-6847,-6848, +-6849,-6850,-6851,-6852,-6853,-6854,-6855,-6856,-6857,-6858,-1203,-1044,-2970,-202,-1374,-4105,-1913,-772,-6859,-4106, +-718,-183,-773,-2294,-4107,-2295,-4108,-184,-6860,-4109,-4110,-452,-841,-1045,-719,-1375,-6861,-935,-6862,-2971,-2972, +-1376,-6863,-4111,-1914,-1915,-2973,-1916,-2296,-6864,-2297,-6865,-6866,-842,-774,-1204,-2298,-1601,-1046,-280,-2299, +-843,-59,-1377, +-1378,-1917,-2300,-720,-269,-6867,-157,-51,-2974,-936,-1205,-194,-6868,-281,-179,-162,-91,-1918,-1602,-1919,-2301,-86, +-96,-270,-1603,-1206,-2975,-333,-1604,-1047,-2976,-2977,-1920,-1921,-1379,-4112,-1605,-1207,-1606,-775,-2978,-776,-1922, +-937,-580,-721,-253,-321,-666,-1607,-1048,-2979,-2302,-2303,-429,-282,-1380,-1923,-1208,-777,-844,-1924,-4113,-4114, +-6869,-2304,-1608,-1381,-6870,-1382,-6871,-2305,-6872,-1049,-6873,-6874,-2306,-110,-2307,-2308,-2309,-6875,-2310,-1925, +-667,-4115,-4116,-1926,-1609,-4117,-6876,-2311,-2312,-2313,-2314,-2315,-2316,-2317,-2980,-2981,-2982,-2983,-6877,-114, +-2318,-163,-6878,-1927,-453,-4118,-1050,-1209,-6879,-4119,-2319,-1383,-2320,-1928,-1610,-2321,-938,-60,-2322,-301,-4120, +-1611,-2984,-1051, +-294,-1612,-1929,-2985,-1384,-4121,-6880,-1385,-1210,-1386,-4122,-454,-43,-845,-4123,-939,-430,-2986,-1052,-322,-2323, +-1613,-6881,-2324,-13,-239,-1930,-1931,-20,-2987,-2325,-1387,-1388,-6882,-231,-4124,-1932,-2988,-6883,-117,-481,-283, +-254,-540,-1614,-1933,-1615,-37,-2326,-1389,-1616,-4125,-2327,-940,-4126,-624,-1934,-4127,-6884,-1053,-2989,-2990,-507, +-302, +-4128,-941,-6885,-334,-149,-1054,-455,-308,-217,-1055,-133,-1390,-4129,-2328,-2329,-58,-482,-1056,-456,-4130,-367,-309, +-284,-335,-1057,-218,-6886,-1391,-6887,-1935,-1211,-2991,-942,-846,-6888,-541,-385,-1212,-457,-336,-581,-2330,-1213,-778, +-508,-625,-4131,-6889,-943,-158,-368,-386,-55,-582,-4132,-4133,-2992,-1936,-4134,-1058,-2331,-4135,-6890,-26, +-1937,-225,-626,-1617,-2332,-6891,-407,-24,-6892,-4136,-141,-1214,-2993,-1059,-4137,-1938,-369,-2994,-722,-4138,-779, +-1939,-1940,-4139,-2995,-1618,-6893,-483,-295,-1060,-1941,-1942,-4140,-2333,-6894,-2996,-2334,-1619,-6895,-1061,-1620, +-542,-4141,-1621,-35,-1622,-2335,-509,-4142,-6896,-6897,-4143,-1943,-780,-1623,-323,-150,-232,-627,-1392,-1062,-1215, +-2336,-1216, +-1624,-2337,-203,-4144,-2338,-6898,-1393,-6899,-2997,-4145,-4146,-2998,-6900,-6901,-6902,-6903,-4147,-1394,-6904,-2999, +-6905,-6906,-6907,-944,-42,-4148,-1625,-6908,-1626,-3000,-6909,-3001,-1395,-210,-945,-1217,-6910,-946,-4149,-3002,-6911, +-3003,-3004,-3005,-3006,-6912,-4150,-1063,-4151,-1396,-6913,-1397,-6914,-1064,-3007,-1398,-337,-4152,-4153,-458,-6915, +-4154,-6916,-6917, +-4155,-6918,-4156,-4157,-6919,-6920,-1399,-4158,-4159,-4160,-1627,-1218,-1628,-781,-543,-6921,-6922,-1944,-1629,-431, +-947,-4161,-3008,-4162,-1219,-1400,-1401,-1402,-4163,-948,-3009,-1630,-87,-484,-408,-2339,-1,-255,-185,-949,-1945,-782, +-1220,-1946,-12,-1221,-1631,-83,-1403,-1222,-1404,-668,-246,-1632,-1947,-783,-847,-1633,-1405,-544,-485,-723,-9,-145, +-180,-1223,-148,-211,-256,-115,-75,-25,-67,-64,-186,-784,-724,-2340,-129,-2341,-1406,-1065,-151,-1948,-785,-1407,-1066, +-950,-4164,-370,-583,-1067,-1068,-786,-848,-6923,-4165,-1069,-409,-1634,-951,-410,-2342,-118,-849,-338,-787,-411,-40, +-6924,-6925,-6926,-6927,-6928,-850,-6929,-6930,-6931,-6932,-432,-2343,-851,-1070,-3010,-3011,-1949,-257,-1224, +-6933,-952,-226,-6934,-1635,-4166,-1071,-788,-1225,-1636,-6935,-4167,-6936,-3012,-3013,-1637,-510,-271,-6937,-1226,-725, +-953,-1408,-339,-1409,-4168,-1410,-6938,-6939,-1638,-1227,-1411,-6940,-6941,-6942,-412,-4169,-4170,-1228,-1412,-3014, +-954,-3015,-1639,-6943,-628,-955,-3016,-669,-4171,-3017,-1640,-303,-41,-1641,-6944,-1950,-4172,-3018,-1642,-4173,-1643, +-6945,-1644, +-1645,-6946,-6947,-6948,-6949,-4174,-6950,-2344,-6951,-1646,-486,-1229,-487,-1230,-4175,-340,-3019,-545,-6952,-28,-1413, +-852,-56,-204,-3020,-4176,-6953,-4177,-387,-4178,-6954,-324,-4179,-2345,-371,-956,-6955,-670,-6956,-54,-6957,-1414,-957, +-546,-164,-4180,-240,-6958,-629,-584,-511,-4181,-1951,-6959,-6960,-853,-175,-4182,-358,-6961,-341,-304,-1072,-1415, +-512,-1231,-3021,-958,-959,-4183,-3022,-630,-2346,-1647,-789,-1416,-6962,-4184,-1952,-4185,-32,-6963,-6964,-1648,-6965, +-6966,-585,-6967,-6968,-3023,-4186,-3024,-6969,-6970,-4187,-1953,-960,-6971,-6972,-631,-4188,-6973,-3025,-6974,-6975, +-6976,-4189,-4190,-3026,-513,-6977,-1073,-6978,-2347,-671,-6979,-4191,-3027,-6980,-6981,-790,-6982,-4192,-6983,-1074, +-6984,-6985,-4193, +-6986,-4194,-6987,-6988,-961,-6989,-3028,-4195,-791,-4196,-1232,-6990,-1954,-3029,-6991,-359,-2348,-6992,-6993,-4197, +-854,-1955,-1417,-6994,-6995,-6996,-6997,-310,-962,-3030,-6998,-6999,-1418,-7000,-4198,-3031,-311,-7001,-3032,-7002, +-7003,-7004,-7005,-4199,-3033,-1419,-632,-7006,-4200,-7007,-360,-4201,-2349,-7008,-4202,-4203,-7009,-1075,-1420,-3034, +-247,-1956,-1233,-4204, +-2350,-3035,-2351,-1234,-1957,-672,-1649,-4205,-1650,-1958,-1421,-4206,-726,-2352,-1076,-4207,-1959,-1077,-3036,-3037, +-7010,-7011,-4208,-4209,-372,-7012,-1422,-3038,-2353,-1651,-3039,-963,-7013,-855,-4210,-792,-7014,-2354,-3040,-3041,-673, +-2355,-1423,-1424,-3042,-7015,-3043,-3044,-7016,-1425,-3045,-342,-7017,-488,-103,-633,-586,-2356,-2357,-413,-4211,-1960, +-388,-727, +-10,-4212,-4213,-4214,-1078,-1079,-7018,-459,-964,-460,-1652,-4215,-1961,-3046,-4216,-965,-3047,-514,-1962,-1653,-7019, +-212,-793,-4217,-1963,-1080,-515,-728,-7020,-4218,-3048,-7021,-195,-7022,-3049,-7023,-729,-1964,-3050,-7024,-674,-7025, +-1426,-1654,-1965,-2358,-7026,-634,-547,-1081,-1655,-1082,-1083,-4219,-1656,-966,-3051,-856,-1084,-1657,-2359,-66,-1658, +-4220, +-1235,-1659,-1966,-7027,-196,-373,-1967,-8,-1427,-489,-857,-176,-7028,-794,-3052,-7029,-1085,-3053,-1660,-858,-1086, +-1236,-3054,-516,-2360,-7030,-4221,-730,-3055,-248,-7031,-967,-968,-2361,-101,-7032,-4222,-587,-165,-4223,-795,-78,-7033, +-1087,-119,-969,-4224,-859,-635,-3056,-2362,-1088,-272,-636,-2363,-796,-1089,-797,-7034,-7035,-3057,-2364,-7036,-79, +-860,-1428,-675,-138,-588,-1429,-1661,-213,-1090,-389,-187,-414,-2365,-1662,-731,-861,-798,-1237,-637,-676,-517,-3058, +-2366,-2367,-490,-4225,-799,-2368,-7037,-433,-7038,-7039,-2369,-7040,-7041,-7042,-4226,-7043,-1091,-2370,-2371,-2372, +-1968,-7044,-2373,-7045,-7046,-3059,-1430,-219,-1092,-2374,-4227,-4228,-1093,-4229,-3060,-4230,-7047,-4231,-1969,-7048, +-17,-1970, +-1663,-3061,-7049,-4232,-1094,-3062,-343,-732,-4233,-4234,-4235,-1095,-23,-461,-1971,-1664,-1096,-1972,-1665,-4236,-7050, +-7051,-7052,-1666,-7053,-7054,-4237,-4238,-4239,-1667,-1238,-7055,-7056,-7057,-1431,-1668,-2375,-258,-638,-1432,-1973, +-1433,-1974,-4240,-1434,-3063,-434,-7058,-2376,-7059,-1669,-7060,-296,-4241,-7061,-733,-1975,-4242,-2377,-7062,-2378, +-970,-7063,-99, +-220,-971,-1239,-1097,-7064,-1098,-2379,-972,-973,-518,-227,-7065,-1435,-1099,-7066,-2380,-1100,-7067,-862,-1101,-2381, +-7068,-2382,-259,-1976,-4243,-1102,-1670,-7069,-7070,-462,-491,-1103,-2383,-4244,-1977,-1104,-677,-1436,-361,-260,-344, +-7071,-374,-228,-92,-88,-7072,-2384,-7073,-72,-1437,-1240,-1978,-3,-1671,-974,-589,-548,-1672,-1438,-1439,-1105,-1440, +-4245,-7074,-233,-863,-7075,-7076,-7077,-375,-1106,-1241,-7078,-4246,-678,-4247,-4248,-2385,-2386,-549,-1673,-800,-2387, +-1441,-1442,-3064,-4249,-519,-7079,-550,-1674,-1443,-7080,-2388,-801,-3065,-7081,-639,-7082,-7083,-4250,-3066,-7084,-734, +-7085,-4251,-1675,-7086,-3067,-7087,-4252,-390,-7088,-7089,-4253,-3068,-4254,-2389,-2390,-7090,-197,-864,-3069,-7091, +-7092,-4255, +-2391,-188,-1107,-7093,-7094,-590,-1444,-4256,-3070,-1445,-7095,-7096,-4257,-2392,-7097,-1242,-3071,-4258,-4259,-3072, +-7098,-7099,-1979,-7100,-1676,-285,-679,-7101,-4260,-4261,-463,-1446,-7102,-4262,-1980,-415,-159,-4263,-3073,-975,-1108, +-1677,-1678,-65,-345,-1981,-7103,-7104,-1679,-273,-2393,-1243,-2394,-4264,-2395,-976,-3074,-4265,-7105,-1244,-15,-1680, +-4266,-865, +-241,-1681,-1245,-1447,-4267,-591,-1109,-2396,-977,-680,-4268,-2397,-7106,-152,-1246,-7107,-7108,-4269,-592,-7109,-1247, +-551,-1982,-3075,-325,-4270,-802,-1448,-3076,-803,-2398,-4271,-7110,-866,-552,-1110,-1983,-7111,-4272,-1248,-7112,-7113, +-1682,-7114,-4273,-7115,-166,-593,-735,-1683,-7116,-7117,-7118,-3077,-2399,-249,-681,-492,-1249,-553,-594,-7119,-7120, +-4274, +-1449,-595,-3078,-867,-640,-2400,-7121,-167,-326,-4275,-1111,-1250,-1251,-2401,-978,-1984,-1112,-7122,-391,-1252,-142, +-979,-554,-4276,-804,-7123,-3079,-7124,-7125,-1450,-2402,-3080,-641,-38,-2403,-682,-4277,-7126,-7127,-7128,-1985,-1684, +-3081,-2404,-7129,-7130,-7131,-1451,-3082,-4278,-555,-868,-493,-7132,-7133,-7134,-7135,-7136,-7137,-1986,-1452,-3083, +-3084,-7138, +-7139,-7140,-7141,-7142,-7143,-7144,-4279,-805,-7145,-1453,-869,-556,-7146,-7147,-464,-7148,-1987,-4280,-1454,-234,-494, +-2405,-4,-2406,-1113,-870,-4281,-7149,-520,-4282,-683,-871,-435,-2407,-3085,-436,-7150,-980,-286,-362,-4283,-171,-1685, +-1686,-7151,-495,-392,-121,-1455,-1687,-1988,-596,-181,-2408,-642,-7152,-1253,-981,-160,-4284,-521,-3086,-1456,-465, +-3087,-982,-983,-7153,-4285,-376,-4286,-1457,-684,-643,-1688,-3088,-7154,-1114,-4287,-1458,-685,-1459,-3089,-1989,-1254, +-7155,-6,-7156,-7157,-7158,-2409,-4288,-2410,-1115,-4289,-1255,-2411,-2412,-3090,-36,-4290,-4291,-3091,-3092,-1990,-4292, +-3093,-2413,-1689,-437,-1460,-7159,-7160,-7161,-235,-7162,-4293,-4294,-7163,-3094,-872,-686,-3095,-873,-557,-7164,-3096, +-7165, +-4295,-2414,-7166,-4296,-287,-2415,-3097,-687,-4297,-7167,-4298,-597,-1690,-1991,-198,-1256,-7168,-7169,-1257,-3098, +-1992,-3099,-1993,-688,-4299,-7170,-327,-7171,-4300,-4301,-7172,-4302,-598,-984,-346,-377,-1691,-4303,-7173,-1994,-3100, +-2416,-736,-378,-4304,-274,-146,-522,-2417,-7174,-599,-1692,-261,-806,-1116,-874,-1693,-111,-1694,-4305,-4306,-2418, +-7175,-416, +-2419,-1117,-126,-644,-2420,-7176,-4307,-7177,-4308,-7178,-1995,-1461,-1695,-7,-4309,-14,-275,-985,-875,-466,-417,-1118, +-876,-1696,-1258,-347,-877,-1259,-229,-1260,-305,-807,-645,-878,-4310,-7179,-1261,-2421,-986,-1697,-3101,-496,-7180,-497, +-189,-4311,-3102,-4312,-1996,-1698,-80,-467,-4313,-1119,-987,-7181,-646,-2422,-4314,-4315,-1462,-1120,-122,-7182, +-1997,-16,-808,-7183,-4316,-7184,-1121,-2423,-809,-1699,-1122,-393,-1123,-7185,-7186,-2424,-1463,-689,-737,-276,-3103, +-4317,-81,-3104,-394,-2425,-879,-2426,-7187,-600,-7188,-7189,-4318,-2427,-27,-190,-7190,-738,-328,-7191,-7192,-2428,-288, +-2429,-7193,-4319,-2430,-739,-4320,-4321,-1700,-3105,-810,-1262,-4322,-130,-811,-880,-147,-1124,-7194,-2431,-2432,-812, +-881,-4323,-7195,-2433,-4324,-813,-2434,-1464,-4325,-3106,-97,-134,-2435,-1125,-3107,-1263,-2436,-740,-7196,-7197,-7198, +-1465,-3108,-7199,-4326,-168,-7200,-395,-3109,-139,-1264,-601,-3110,-4327,-7201,-154,-1998,-3111,-882,-3112,-3113,-182, +-558,-7202,-1466,-2437,-396,-1701,-4328,-883,-2438,-690,-3114,-123,-7203,-2439,-2440,-468,-2441,-221,-2442,-2443,-2444, +-602, +-7204,-3115,-7205,-4329,-4330,-2445,-4331,-4332,-4333,-3116,-1702,-4334,-1265,-2446,-559,-85,-560,-1266,-39,-312,-1267, +-884,-7206,-7207,-4335,-7208,-603,-379,-7209,-7210,-177,-397,-7211,-1467,-7212,-2447,-1999,-1703,-3117,-885,-1126,-1704, +-469,-69,-2448,-7213,-2000,-1468,-4336,-1469,-1127,-1128,-3118,-3119,-2449,-161,-4337,-3120,-886,-418,-1129,-7214,-2450, +-7215, +-2001,-691,-2451,-7216,-7217,-7218,-7219,-57,-214,-7220,-814,-33,-7221,-4338,-7222,-815,-82,-7223,-561,-44,-199,-1268, +-4339,-172,-155,-3121,-4340,-7224,-7225,-7226,-2452,-236,-215,-988,-124,-7227,-7228,-816,-7229,-7230,-7231,-2002,-2,-84, +-3122,-4341,-1470,-1269,-112,-1130,-1471,-1472,-7232,-7233,-3123,-1270,-250,-1271,-289,-135,-7234,-348,-1473,-4342, +-1705,-604,-7235,-200,-2003,-438,-3124,-3125,-2004,-4343,-2453,-1706,-136,-2005,-125,-1131,-7236,-1707,-1272,-439,-7237, +-989,-3126,-2006,-2007,-3127,-4344,-4345,-70,-1708,-562,-887,-563,-7238,-104,-7239,-817,-30,-7240,-1474,-4346,-7241, +-7242,-7243,-73,-3128,-990,-4347,-3129,-1132,-7244,-888,-2008,-1475,-1709,-741,-1133,-605,-606,-742,-4348,-1710,-1273, +-7245, +-4349,-4350,-7246,-7247,-7248,-18,-523,-93,-1711,-173,-2454,-2455,-524,-1712,-1476,-7249,-889,-4351,-7250,-7251,-818, +-2009,-222,-4352,-564,-7252,-1713,-4353,-2010,-991,-3130,-3131,-890,-3132,-1714,-205,-7253,-743,-1715,-4354,-565,-3133, +-1274,-7254,-2011,-34,-2012,-4355,-1275,-7255,-744,-647,-262,-2013,-98,-525,-692,-7256,-4356,-992,-3134,-1477,-2014, +-1716, +-7257,-4357,-2015,-4358,-263,-7258,-7259,-2456,-993,-4359,-7260,-4360,-7261,-4361,-7262,-4362,-4363,-4364,-4365,-4366, +-7263,-329,-7264,-7265,-4367,-7266,-1276,-7267,-7268,-7269,-4368,-2457,-2016,-7270,-1134,-3135,-7271,-7272,-7273,-7274, +-7275,-7276,-7277,-7278,-7279,-7280,-2458,-7281,-7282,-7283,-7284,-7285,-7286,-7287,-7288,-7289,-7290,-7291,-7292,-7293, +-7294,-7295,-1478,-7296, +-1479,-7297,-7298,-7299,-7300,-4369,-7301,-4370,-4371,-7302,-242,-4372,-7303,-4373,-7304,-4374,-7305,-2459,-7306,-4375, +-7307,-3136,-7308,-7309,-2017,-4376,-1480,-3137,-7310,-2018,-313,-4377,-7311,-7312,-4378,-7313,-7314,-7315,-3138,-7316, +-7317,-7318,-7319,-7320,-7321,-4379,-4380,-7322,-7323,-7324,-7325,-7326,-7327,-7328,-4381,-7329,-2460,-7330,-4382,-3139, +-7331,-2461,-4383,-4384, +-7332,-4385,-1481,-7333,-7334,-7335,-2019,-2020,-7336,-4386,-7337,-2021,-7338,-4387,-4388,-4389,-4390,-4391,-4392,-4393, +-4394,-7339,-4395,-3140,-4396,-4397,-4398,-4399,-3141,-3142,-2462,-4400,-7340,-7341,-4401,-7342,-7343,-7344,-7345,-7346, +-4402,-4403,-4404,-3143,-7347,-4405,-1717,-7348,-3144,-4406,-3145,-4407,-2463,-2464,-1482,-7349,-7350,-1718,-1719,-7351, +-7352,-7353,-7354,-7355, +-7356,-7357,-7358,-7359,-7360,-2465,-2466,-4408,-1720,-4409,-3146,-4410,-7361,-4411,-1483,-4412,-4413,-2022,-4414,-3147, +-7362,-1484,-4415,-7363,-2467,-7364,-1721,-4416,-7365,-4417,-7366,-4418,-7367,-4419,-7368,-7369,-2468,-7370,-4420,-2469, +-4421,-7371,-7372,-4422,-7373,-7374,-2470,-7375,-7376,-7377,-7378,-7379,-2471,-7380,-7381,-7382,-1485,-7383,-7384,-7385, +-7386,-7387,-3148,-7388, +-1722,-2472,-4423,-3149,-2473,-7389,-4424,-2474,-7390,-1723,-4425,-4426,-4427,-7391,-4428,-7392,-314,-7393,-1277,-7394, +-7395,-7396,-7397,-7398,-2475,-4429,-4430,-4431,-7399,-3150,-4432,-4433,-4434,-4435,-4436,-1724,-2476,-4437,-4438,-7400, +-4439,-4440,-3151,-7401,-2477,-7402,-4441,-4442,-7403,-4443,-4444,-7404,-4445,-4446,-7405,-7406,-4447,-4448,-7407,-7408, +-7409,-4449,-7410,-4450, +-7411,-7412,-7413,-7414,-819,-4451,-4452,-7415,-2478,-4453,-7416,-4454,-380,-7417,-7418,-7419,-4455,-7420,-4456,-7421, +-1725,-4457,-4458,-4459,-7422,-4460,-7423,-7424,-7425,-7426,-470,-7427,-7428,-7429,-3152,-3153,-7430,-1726,-3154,-7431, +-7432,-4461,-3155,-994,-2023,-7433,-3156,-7434,-7435,-7436,-7437,-4462,-3157,-7438,-3158,-7439,-7440,-7441,-7442,-4463, +-4464,-7443,-7444,-7445, +-3159,-7446,-3160,-7447,-4465,-7448,-7449,-7450,-7451,-3161,-4466,-3162,-7452,-7453,-7454,-3163,-7455,-4467,-7456,-7457, +-7458,-1135,-7459,-4468,-7460,-7461,-1486,-7462,-7463,-4469,-7464,-4470,-4471,-7465,-7466,-7467,-4472,-2479,-7468,-4473, +-3164,-7469,-7470,-2024,-7471,-7472,-7473,-4474,-4475,-7474,-7475,-7476,-4476,-820,-4477,-7477,-7478,-7479,-7480,-4478, +-4479,-4480,-4481,-7481, +-7482,-7483,-4482,-7484,-7485,-4483,-7486], [0,295,300,304,74,309,136,136,314,74,318,74,321,324,74,326,329,333,338,343,348,353,357,361,365,367,372,375,380,384,389, 393,398,402,407,409,412,416,418,422,425,429,432,436,17,441,444,447,451,453,458,462,467,470,474,477,480,483,486,489,492, 495,498,501, @@ -3331,358 +3334,356 @@ true, 11248,11251,11254,292,11259,11262,11265], [1,3,296], [0,297,298,299,10], -[0,-809,-2387,-3019,-682,-1967,-3020,-567,-3021,-3022,-1552,-2055,-3023,-1311,-2030,-2113,-3024], -[0,-705,-888,-1616,-664,-1107,-1521,-2162,-2466,-668,-1344,-3025,-1471,-1654,-2006,-2074,-2210,-2550,-915,-932,-1548, --1666,-2093,-2177,-2388,-2439,-674,-795,-928,-1889,-2379,-2501,-522,-679,-923,-1077,-1376,-1646,-1783,-1942,-3026,-2378, --3027,-3028,-1003,-3029,-1978,-3030,-2016,-2019,-3031,-2281,-2376,-3032,-527,-778,-3033,-3034,-2410,-23,-3035,-3036, --3037,-1482, --1534,-1600,-3038,-2040,-3039,-3040,-3041,-518,-528,-534,-1543,-1588,-1890,-1938,-2043,-2275,-2516,-305,-3042,-3043, --3044,-1492,-3045,-3046,-556,-1906,-1908,-3047,-2285,-86,-3048,-3049,-3050,-2015,-3051,-263,-3052,-3053,-558,-3054,-3055, --1962,-2044,-3056,-3057,-3058,-3059,-3060,-3061,-3062,-560,-1601,-2505,-3063,-3064,-969,-977,-1491,-2052,-3065,-3066, --440,-3067,-562, --3068,-958,-3069,-3070,-539,-3071,-1475,-739,-3072,-940,-962,-963,-1490,-3073,-3074,-3075,-916,-2013,-2017,-3076,-3077, --3078,-3079,-1899,-3080,-428,-1897,-3081,-3082,-1017,-3083,-3084,-3085,-3086,-3087,-555,-535,-3088,-3089,-427,-661,-3090, --3091,-26,-547,-741,-3092], -[0,-3093,-3094,-2634,-3095,-3096,-2006,-3097,-3098,-3099,-3100], +[0,-542,-44,-7488,-254,-121,-7489,-282,-7490,-7491,-1096,-687,-7492,-963,-1460,-1117,-1487], +[0,-941,-337,-1100,-13,-28,-219,-80,-104,-20,-10,-4484,-79,-3,-6,-327,-27,-98,-431,-1,-23,-233,-274,-16,-199,-3125,-231, +-483,-87,-38,-33,-18,-1205,-117,-1402,-41,-195,-88,-976,-4,-7493,-814,-2481,-7494,-411,-7495,-160,-7496,-2411,-36,-2482, +-182,-214,-4485,-162,-141,-7497,-7498,-2,-11,-109,-471,-5,-187, +-17,-220,-4486,-872,-7499,-47,-419,-157,-91,-96,-732,-296,-2403,-1454,-873,-154,-818,-665,-7500,-1278,-143,-517,-7501, +-526,-580,-555,-493,-4487,-2437,-49,-191,-2025,-3165,-1255,-2483,-1599,-89,-7502,-253,-4488,-7503,-1685,-557,-7504,-7505, +-7506,-2026,-4489,-7507,-3166,-666,-971,-173,-7508,-7509,-64,-1065,-676,-287,-7510,-7511,-506,-4490,-1048, +-4491,-9,-7512,-7513,-333,-2484,-138,-541,-7514,-12,-148,-211,-637,-7515,-7516,-3167,-947,-1115,-2412,-7517,-995,-4492, +-4493,-2404,-7518,-19,-1684,-1727,-7519,-851,-7520,-7521,-2027,-7522,-1728,-937,-270,-7523,-7524,-22,-1613,-4494,-7525, +-209,-4112,-1212,-7526], +[0,-7527,-7528,-242,-131,-7529,-6,-7530,-127,-441,-52], [1,3,301], [0,302,0,303,11], -[0,-469,-2153,-1864,-2231,-470,-1461], -[0,-3101,-3102,-475,-3103,-3104,-3105], +[0,-183,-496,-326,-130,-773,-636], +[0,-4495,-4496,-184,-1488,-4497,-2028], [1,3,305], [0,306,0,307,9], -[0,-1816,-2153,-1461,-1588,-2], -[0,-3101,-3102,-475,-3106,-3107,-3104,-3108,-3109,-3105,-3110,-3111], +[0,-325,-496,-636,-296,-4060], +[0,-4495,-4496,-184,-7531,-4498,-4497,-1489,-7532,-2028,-277,-7533], [0,33,0,7,5], [1,3,310], [0,311,0,312,4], -[0,-2387,-1839], -[0,-475,-3112,-3095,-3113,-3114], +[0,-44,-593], +[0,-184,-3168,-131,-694,-3169], [0,33,0,7,4], [1,3,315], [0,316,37,317,4], -[0,-2387,-2550,-2177,-679,-23,-2080,-742,-3115], -[0,-475,-3116], +[0,-44,-98,-16,-117,-11,-598,-457,-1729], +[0,-184,-607], [1,3,319], [0,320,0,7,11], -[0,-2387,-3117], +[0,-44,-1730], [1,3,322], [0,33,0,323,9], -[0,-475,-3118,-3119,-3098], +[0,-184,-1731,-996,-127], [1,3,325], [0,33,0,7,6], [1,3,327], [0,328,0,7,4], -[0,-3120,-2387], +[0,-3170,-44], [1,3,330], [0,33,331,332,10], -[0,-3121], -[0,-475,-3122], +[0,-7534], +[0,-184,-442], [1,3,334], [0,335,336,337,5], -[0,-809,-2004,-682,-567,-3123,-3124,-3125,-3126,-3127,-3128,-2639,-3129,-3130,-3131,-3132], -[0,-485,-1107,-1415,-2006,-932,-2388,-3133,-2375,-1662,-767,-3134,-2019,-533,-3135,-1939,-2028,-2410,-23,-3136,-1534, --3137,-3040,-528,-726,-2034,-44,-3138,-3139,-3140,-3141,-3142,-3143,-3144,-2052,-3145,-3146,-3147,-3148,-3149,-2013, --3150,-3151,-428,-408,-3152,-3153,-3154,-3155,-3156,-3157], -[0,-3158,-3099,-2006,-3159,-3095,-3098,-3160,-3161,-3100,-3162,-3163], +[0,-542,-1254,-254,-282,-4499,-4500,-3171,-7535,-7536,-7537,-4374,-7538,-7539,-7540,-7541], +[0,-935,-28,-8,-6,-1,-199,-4501,-57,-1105,-26,-2029,-36,-86,-4502,-234,-1689,-2,-11,-29,-17,-7542,-47,-91,-284,-235,-90, +-3172,-2485,-997,-2030,-7543,-4503,-7544,-287,-4504,-7545,-7546,-7547,-3173,-1115,-7548,-7549,-19,-4089,-7550,-4505, +-7551,-7552,-1732,-4506], +[0,-1733,-441,-6,-106,-131,-127,-102,-53,-52,-95,-2486], [1,3,339], [0,340,341,342,4], -[0,-1549], -[0,-485,-2006,-1031,-2019,-2410,-3040,-3164,-3052], -[0,-3158,-3099,-2494,-485,-3095,-3098,-3161,-3100,-2006,-3159,-3160], +[0,-461], +[0,-935,-6,-788,-36,-2,-47,-1279,-89], +[0,-1733,-441,-1273,-935,-131,-127,-53,-52,-6,-106,-102], [1,3,344], [0,345,346,347,5], -[0,-682,-3165,-3166], -[0,-485,-1107,-2006,-1031,-2019,-2410,-3040,-3052], -[0,-3158,-3099,-2494,-485,-3095,-3098,-3161,-3100,-2006,-3159,-3160,-3167], +[0,-254,-2487,-7553], +[0,-935,-28,-6,-788,-36,-2,-47,-89], +[0,-1733,-441,-1273,-935,-131,-127,-53,-52,-6,-106,-102,-745], [1,3,349], [0,350,351,352,4], -[0,-3168,-3169], -[0,-2387,-2299,-2402,-2300,-364,-3170,-3171,-2405,-3172,-365], -[0,-3173,-3174,-3175,-3176,-1791,-3177,-3178,-2299], +[0,-3174,-2488], +[0,-44,-221,-124,-2442,-2963,-3175,-4507,-816,-2489,-1373], +[0,-695,-7554,-1490,-3176,-865,-4508,-7555,-221], [1,3,354], [0,355,356,137,4], -[0,-1107,-2218,-1591,-719,-742,-3179,-3180], -[0,-2177,-23,-3036,-3181,-3182], +[0,-28,-288,-733,-58,-457,-3177,-1136], +[0,-16,-11,-471,-7556,-4509], [1,3,358], [0,359,360,7,4], -[0,-3187,-1863,-3188], -[0,-3189,-2269,-3190], +[0,-2490,-167,-2491], +[0,-4511,-139,-1734], [1,3,362], [0,363,364,138,4], -[0,-812,-1460,-2177,-3191,-47,-25,-3192,-3193,-46,-3194,-22,-742,-3195,-3196,-3197], -[0,-2392,-2125,-2379,-3198,-3199,-3200,-40,-42,-3201,-3180,-3202,-3203,-3204,-3182], +[0,-35,-272,-16,-7557,-450,-405,-2492,-3178,-539,-891,-505,-457,-1735,-4512,-2493], +[0,-155,-7,-33,-169,-140,-1137,-21,-137,-3179,-1136,-3180,-998,-398,-4509], [1,3,366], [0,0,101,7,5], [1,3,368], [0,369,370,371,5], -[0,-47], -[0,-3189,-22,-3211,-3212,-3188,-3213], -[0,-525,-3214,-3215,-3216,-3217,-25], +[0,-450], +[0,-4511,-505,-3181,-4515,-2491,-7559], +[0,-281,-45,-74,-7560,-350,-405], [1,3,373], [0,374,51,21,4], -[0,-3218,-24], +[0,-4516,-716], [1,3,376], [0,377,378,379,5], -[0,-3221,-812,-1496,-3222,-2177,-1442,-2223,-679,-3223,-1044,-3224,-1646,-1783,-1936,-3225,-1864,-2654,-1125,-1600,-3226, --3227,-3228,-3229,-3230,-3231,-3232,-3233,-3234,-3235,-3236,-3237,-3238,-3239], -[0,-652,-519,-2392,-2476,-2564,-2162,-2006,-932,-1610,-3240,-2125,-1110,-1942,-2019,-190,-2410,-3241,-3037,-3242,-3243, --3244,-3245,-3246,-3247,-1603,-3248,-3249,-3250,-3251,-940,-3252,-3253,-3254], -[0,-3255,-3256,-3257,-856,-3258,-3259,-3260,-3261,-3262,-3161,-898,-3263,-3264,-1599,-3265,-1783], +[0,-7561,-35,-490,-1491,-16,-101,-739,-117,-472,-725,-7562,-88,-976,-1987,-7563,-326,-313,-670,-220,-7564,-4517,-7565, +-7566,-4518,-7567,-7568,-7569,-1737,-7570,-7571,-7572,-7573,-7574], +[0,-43,-51,-155,-73,-263,-80,-6,-1,-227,-648,-7,-56,-4,-36,-50,-2,-3182,-5,-7575,-7576,-290,-2494,-999,-7577,-1097,-7578, +-7579,-2495,-3183,-12,-7580,-7581,-7582], +[0,-4519,-4520,-7583,-42,-892,-3184,-2496,-746,-116,-53,-4156,-7584,-31,-99,-7585,-976], [1,3,381], [0,0,382,383,4], -[0,-2832,-2581,-350,-351,-3266,-3267,-3268,-3269,-3136,-3037,-589,-651,-1415,-2127,-2132,-2375,-2387,-2410], -[0,-775,-3215,-3270,-3271,-3272,-2410,-3273,-3274,-3275,-1644,-3276,-3277], +[0,-314,-329,-77,-62,-206,-330,-747,-1738,-29,-5,-110,-454,-8,-14,-417,-57,-44,-2], +[0,-24,-74,-1739,-1282,-363,-2,-7586,-7587,-7588,-228,-566,-608], [1,3,385], [0,386,387,388,4], -[0,-3278,-3279,-3280,-3281,-3282,-3283,-3284,-3285,-3286,-3287,-3288,-3289,-3290,-3291,-3292,-3293,-3294,-3295,-3296, --1537,-3297], -[0,-3298,-3299,-3300,-3301,-3302,-3303,-3304,-3305,-3306,-86,-3307,-3308,-3309,-3310,-3311,-3312,-932,-940,-1344,-1534, --2210,-2410,-3313], -[0,-3314,-488,-856,-3315], +[0,-4521,-4522,-7589,-7590,-7591,-4523,-7592,-4524,-4525,-4526,-4527,-7593,-7594,-7595,-7596,-7597,-7598,-7599,-7600, +-3061,-3185], +[0,-7601,-4528,-7602,-7603,-4529,-4530,-4531,-4532,-7604,-49,-63,-4533,-4534,-3186,-893,-1283,-1,-12,-10,-17,-27,-2,-4535], +[0,-7605,-2972,-42,-7606], [1,3,390], [0,391,0,392,9], -[0,-3316,-3317,-3318,-3319,-1123,-3320,-2387], -[0,-3321,-1122,-2006,-3322,-3323,-3324], +[0,-4536,-7607,-7608,-7609,-956,-4537,-44], +[0,-4538,-371,-6,-696,-351,-443], [1,3,394], [0,395,396,397,6], -[0,-2006,-2127,-1967,-23,-3325,-40,-2234,-41,-3326,-3327], -[0,-1415,-932,-2375,-767,-2410,-3136,-3040,-1448,-969,-973,-972], -[0,-3328,-856,-3262,-2006,-3105,-3110], +[0,-6,-14,-121,-11,-4539,-21,-147,-132,-207,-7610], +[0,-8,-1,-57,-26,-2,-29,-47,-795,-64,-2340,-724], +[0,-2497,-42,-116,-6,-2028,-277], [1,3,399], [0,400,401,7,10], -[0,-2177,-983,-3329], -[0,-815,-932,-23,-3330,-426,-2411,-3211,-3331], +[0,-16,-950,-7611], +[0,-509,-1,-11,-364,-320,-84,-3181,-1740], [1,3,403], [0,404,405,406,5], -[0,-24,-3332,-3218], -[0,-23,-46,-3333,-3334,-3219,-3335], -[0,-525,-3220,-3336], +[0,-716,-3187,-4516], +[0,-11,-539,-7612,-7613,-2033,-3188], +[0,-281,-1281,-4540], [1,3,408], [0,139,51,21,10], [1,3,410], [0,411,51,21,11], -[0,-24,-3337], +[0,-716,-7614], [1,3,413], [0,414,415,21,4], -[0,-3338,-3197,-24,-3339,-3340], -[0,-23,-3219,-25], +[0,-4541,-2493,-716,-7615,-4542], +[0,-11,-2033,-405], [1,3,417], [0,139,101,21,5], [1,3,419], [0,420,421,21,10], -[0,-2177,-24,-3341,-3342,-3343,-3344], -[0,-1591,-23,-3192,-44,-40,-3345,-3343,-3219], +[0,-16,-716,-1138,-4543,-2498,-2499], +[0,-733,-11,-2492,-90,-21,-1741,-2498,-2033], [1,3,423], [0,140,424,7,8], -[0,-633,-647,-3346,-2416], +[0,-60,-1385,-2500,-112], [1,3,426], [0,427,428,7,4], -[0,-2177,-3347,-3338,-3348,-24,-3342,-3343,-3349,-3350,-3351,-3352,-3353,-3197,-3344,-3354,-3340,-3355,-3356,-3357,-3358, --3359,-3360,-3361,-3362,-3363,-3364,-3365,-3366,-3367,-3368,-3369,-3370,-3371,-3372,-3373,-3374,-3375,-3376,-3204,-3377, --3378,-3379,-3380,-3381,-3382,-3383,-3384,-3385,-3386,-3387,-3388,-3389,-3390,-3391,-3392,-3393,-3394,-3395,-3396,-3397, --3398,-3399,-3400, --3401,-3402,-3403,-3404,-3405,-3406,-3407], -[0,-23,-46,-3219], +[0,-16,-3189,-4541,-7616,-716,-4543,-2498,-3190,-3191,-4544,-3192,-7617,-2493,-2499,-7618,-4542,-3193,-4545,-4546,-7619, +-7620,-7621,-7622,-2034,-4547,-7623,-7624,-7625,-2035,-3194,-7626,-4548,-7627,-7628,-2501,-2502,-7629,-1139,-398,-4549, +-7630,-4550,-4551,-2036,-2037,-4552,-3195,-3196,-7631,-7632,-7633,-3197,-7634,-4553,-7635,-3198,-2503,-3199,-2504,-4554, +-3200,-7636,-4555, +-7637,-7638,-7639,-7640,-7641,-7642,-7643], +[0,-11,-539,-2033], [1,3,430], [0,431,51,7,4], -[0,-24,-3349,-3408,-3409,-3410,-3411], +[0,-716,-3190,-1284,-3201,-7644,-7645], [1,3,433], [0,434,51,435,8], -[0,-3077,-24,-3349,-3412,-3204], -[0,-3413,-2410], +[0,-995,-716,-3190,-1140,-398], +[0,-7646,-2], [1,3,437], [0,438,439,7,4], -[0,-3414,-1591,-3415,-1046,-2234], -[0,-633,-23,-3373,-3204], +[0,-4556,-733,-3202,-1408,-147], +[0,-60,-11,-2501,-398], [0,0,0,7,5], [1,3,442], [0,443,0,7,5], -[0,-753], +[0,-158], [1,3,445], [0,446,51,7,4], -[0,-812,-47,-25,-3193,-3194,-22,-3416], +[0,-35,-450,-405,-3178,-891,-505,-7647], [1,3,448], [0,449,450,7,6], -[0,-3212,-3188], -[0,-25,-3194,-3211], +[0,-4515,-2491], +[0,-405,-891,-3181], [1,3,452], [0,141,142,143,8], [1,3,454], [0,455,456,457,4], -[0,-3442,-1116,-1666,-1969,-2522], -[0,-756,-932,-940,-943,-958,-966,-967,-968,-974,-2250], -[0,-2520,-2905,-3443,-3444,-3445], +[0,-4562,-387,-233,-1687,-1713], +[0,-55,-1,-12,-83,-9,-75,-25,-67,-129,-97], +[0,-564,-4460,-2506,-748,-46], [1,3,459], [0,460,461,7,4], -[0,-3446,-2177,-680,-3447,-910,-1077,-3448,-1863,-479,-3449,-2115,-3450,-3451,-3452,-3453,-3454,-3455,-3456,-3457,-3458, --3459,-3460,-3461,-3462,-3463,-3464,-3465,-3466], -[0,-1821,-3467,-2269,-3199], +[0,-1742,-16,-481,-1743,-543,-41,-7660,-167,-452,-7661,-644,-7662,-7663,-7664,-7665,-7666,-7667,-7668,-7669,-7670,-1493, +-7671,-7672,-4563,-7673,-7674,-7675,-7676], +[0,-803,-7677,-139,-140], [1,3,463], [0,464,465,466,4], -[0,-3468,-3469,-195,-196,-197,-682,-1967], -[0,-21,-23,-26,-40,-41,-86,-3307,-3326,-350,-351,-3470,-3471,-3472,-427,-428,-528,-553,-3473,-932,-962,-969,-970,-1344, --1534,-1942,-2006,-2019,-2127,-3474,-2140,-2174,-2410], -[0,-3475,-2006,-3476,-3160,-3477,-3098,-3478,-3479,-3480,-3481,-3482,-3100,-3483,-3484,-3485,-3486,-3487], +[0,-7678,-2507,-2289,-2290,-2950,-254,-121], +[0,-48,-11,-209,-21,-132,-49,-63,-207,-77,-62,-297,-298,-749,-22,-19,-91,-776,-4564,-1,-148,-64,-186,-10,-17,-4,-6,-36, +-14,-3206,-229,-122,-2], +[0,-4565,-6,-527,-102,-2508,-127,-7679,-7680,-7681,-1141,-382,-52,-7682,-3207,-1001,-4566,-7683], [1,3,468], [0,469,0,19,4], -[0,-681,-66,-82], +[0,-283,-318,-1595], [1,3,471], [0,472,0,473,6], -[0,-3493,-2387], -[0,-3494,-3495,-3496,-3264,-3497,-3498,-475,-3499,-3500,-3501,-3095,-3488,-681,-3489], +[0,-3209,-44], +[0,-821,-895,-420,-31,-1285,-1003,-184,-4567,-7686,-4568,-131,-1002,-283,-894], [1,3,475], [0,476,0,19,5], -[0,-681,-66,-83,-68,-80,-70], +[0,-283,-318,-332,-428,-579,-1042], [1,3,478], [0,479,0,19,5], -[0,-681,-81,-66,-3502,-83,-68,-80], +[0,-283,-406,-318,-610,-332,-428,-579], [1,3,481], [0,482,0,19,4], -[0,-681,-81,-66,-3503,-3502,-83,-80], +[0,-283,-406,-318,-2038,-610,-332,-579], [1,3,484], [0,485,0,144,5], -[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3504,-52,-77], +[0,-1197,-1043,-1365,-933,-1372,-1369,-579,-1042,-1366,-1198,-1362,-1367,-1368,-1364,-1370,-1363,-932,-3210,-1361,-1371], [1,3,487], [0,488,0,144,4], -[0,-81,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3504,-52,-77], +[0,-406,-1197,-1043,-1365,-933,-1372,-1369,-579,-1042,-1366,-1198,-1362,-1367,-1368,-1364,-1370,-1363,-932,-3210,-1361, +-1371], [1,3,490], [0,491,0,102,4], -[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-65,-3511,-52,-77], +[0,-1197,-1043,-1365,-933,-1372,-1369,-579,-1042,-1366,-1198,-1362,-1367,-1368,-1364,-1370,-1363,-932,-4570,-1361,-1371], [1,3,493], [0,494,0,102,8], -[0,-3512,-73,-74,-62,-71,-79,-72,-80,-70,-63,-3513,-76,-54,-67,-69,-56,-75,-55,-65,-52,-3514,-77], +[0,-3211,-1197,-1043,-1365,-933,-1372,-1369,-579,-1042,-1366,-4571,-1198,-1362,-1367,-1368,-1364,-1370,-1363,-932,-1361, +-4572,-1371], [1,3,496], [0,497,0,102,8], -[0,-73,-74,-62,-71,-79,-72,-80,-70,-63,-76,-54,-67,-69,-56,-75,-55,-3515,-65,-52,-77], +[0,-1197,-1043,-1365,-933,-1372,-1369,-579,-1042,-1366,-1198,-1362,-1367,-1368,-1364,-1370,-1363,-4573,-932,-1361,-1371], [1,3,499], [0,500,0,19,6], -[0,-3516,-681,-3517,-81,-66,-3502,-71,-83,-68,-82,-65], +[0,-7687,-283,-528,-406,-318,-610,-933,-332,-428,-1595,-932], [1,3,502], [0,503,0,19,4], -[0,-681,-81,-66,-3502,-71,-83], +[0,-283,-406,-318,-610,-933,-332], [1,3,505], [0,506,0,19,8], -[0,-3517,-81,-66,-83,-68,-85], +[0,-528,-406,-318,-332,-428,-1199], [1,3,508], [0,509,0,59,6], -[0,-681,-66,-83], +[0,-283,-318,-332], [1,3,511], [0,512,0,145,11], -[0,-3517,-81,-83,-68,-3519], +[0,-528,-406,-332,-428,-4575], [1,3,514], [0,515,0,19,8], -[0,-681,-66,-83,-82,-65], +[0,-283,-318,-332,-1595,-932], [1,3,517], [0,518,0,145,10], -[0,-3517,-83], +[0,-528,-332], [1,3,520], [0,521,0,19,4], -[0,-681,-81,-66,-3520,-3503,-80,-64,-3521], +[0,-283,-406,-318,-2509,-2038,-579,-1041,-4576], [1,3,523], [0,524,0,19,10], -[0,-681,-81,-66,-3502,-83,-68,-76], +[0,-283,-406,-318,-610,-332,-428,-1198], [1,3,526], [0,527,0,19,5], -[0,-681,-3517,-81,-66,-3520,-3502,-83,-68,-80,-82,-85,-64], +[0,-283,-528,-406,-318,-2509,-610,-332,-428,-579,-1595,-1199,-1041], [1,3,529], [0,530,0,19,8], -[0,-681,-81,-66,-74,-3502,-83,-68,-70], +[0,-283,-406,-318,-1043,-610,-332,-428,-1042], [1,3,532], [0,533,0,19,11], -[0,-681,-3517,-81,-66,-3502,-71,-83,-68,-80,-85,-64], +[0,-283,-528,-406,-318,-610,-933,-332,-428,-579,-1199,-1041], [1,3,535], [0,536,0,19,4], -[0,-681,-81,-66,-3512,-3503,-3502,-83,-68,-80,-64], +[0,-283,-406,-318,-3211,-2038,-610,-332,-428,-579,-1041], [1,3,538], [0,539,0,19,4], -[0,-681,-81,-66,-3520,-3502,-83,-68,-80,-85,-64], +[0,-283,-406,-318,-2509,-610,-332,-428,-579,-1199,-1041], [1,3,541], [0,542,0,19,4], -[0,-81,-66,-3502,-83,-68], +[0,-406,-318,-610,-332,-428], [1,3,544], [0,545,0,19,6], -[0,-681,-66,-68,-64], +[0,-283,-318,-428,-1041], [1,3,547], [0,548,0,549,8], -[0,-3493], -[0,-3494,-3495,-3496,-3264,-3497,-3498,-2006,-3159,-3488,-681,-3489], +[0,-3209], +[0,-821,-895,-420,-31,-1285,-1003,-6,-106,-1002,-283,-894], [1,3,551], [0,552,0,19,6], -[0,-681,-3517,-81,-66,-3502,-83,-68,-85,-64], +[0,-283,-528,-406,-318,-610,-332,-428,-1199,-1041], [1,3,554], [0,555,0,19,11], -[0,-3517,-66,-83,-68], +[0,-528,-318,-332,-428], [1,3,557], [0,558,0,59,11], -[0,-3517,-3522,-3523,-3524,-3525,-66,-3502,-83,-68,-3526], +[0,-528,-7688,-2039,-7689,-4577,-318,-610,-332,-428,-3212], [1,3,560], [0,561,0,59,11], -[0,-66,-83], +[0,-318,-332], [1,3,563], [0,564,0,59,4], -[0,-3517,-81], +[0,-528,-406], [1,3,566], [0,567,0,568,4], -[0,-3493,-1549], -[0,-3494,-3495,-3496,-3264,-3497,-3498,-2476,-3527,-3528,-3529,-3488,-681,-3489], +[0,-3209,-461], +[0,-821,-895,-420,-31,-1285,-1003,-73,-2510,-7690,-7691,-1002,-283,-894], [1,3,570], [0,571,0,59,4], -[0,-3517,-81,-66,-3503,-3502,-83,-68,-80], +[0,-528,-406,-318,-2038,-610,-332,-428,-579], [1,3,573], [0,574,575,146,5], -[0,-3530,-3531,-3532,-3533,-3534,-3535,-2550], -[0,-3536,-3537,-3149,-3037,-3041,-1077,-3125], +[0,-7692,-4578,-4579,-7693,-3213,-1142,-98], +[0,-4580,-4581,-3173,-5,-419,-41,-3171], [1,3,577], [0,578,0,147,5], -[0,-3,-23,-3374,-40,-3538,-3539,-3540,-617,-3541,-674,-679,-714,-719,-755,-3542,-927,-1022,-1026,-1077,-1107,-1276,-1320, --1349,-1460,-1548,-1577,-3543,-3544,-1610,-1646,-3545,-3546,-3547,-1863,-3548,-1955,-2177,-2213,-3433,-3549,-2378,-2446, --3550], +[0,-2284,-11,-2502,-21,-4582,-4583,-7694,-163,-7695,-231,-117,-133,-58,-386,-1746,-1630,-257,-226,-41,-28,-247,-673,-1079, +-272,-23,-1433,-4584,-1143,-227,-88,-4585,-2040,-1497,-167,-2511,-436,-16,-738,-4560,-7696,-814,-125,-7697], [1,3,580], [0,581,0,582,4], -[0,-3553,-1361], -[0,-3554,-3555,-3161,-997,-3556], +[0,-7698,-514], +[0,-7699,-3215,-53,-410,-4586], [0,25,584], 1732406400000, [0,25,586], 1733011200000, [1,3,588], [0,589,590,148,9], -[0,-1320], -[0,-21,-23,-40,-3558,-3559,-3560,-2997,-3326,-350,-351,-3561,-3562,-518,-620,-3563,-3564,-699,-767,-932,-945,-957,-958, --978,-3565,-1110,-1111,-3566,-1320,-3567,-1389,-1412,-1437,-1471,-1473,-1475,-3568,-1477,-1479,-1481,-3569,-1486,-1547, --1753,-1771,-1889,-1891,-3570,-2125,-2127,-3571,-3572,-3031,-2195,-2281,-3573,-2334,-3574], +[0,-673], +[0,-48,-11,-21,-4587,-2512,-529,-820,-207,-77,-62,-237,-1004,-157,-453,-1747,-2513,-1053,-26,-1,-1222,-723,-9,-151,-4588, +-56,-204,-3216,-673,-7701,-2358,-196,-248,-79,-1428,-138,-3217,-1429,-213,-389,-2041,-731,-1095,-285,-65,-38,-682,-7702, +-7,-14,-2042,-1498,-2482,-276,-182,-3218,-177,-4589], [1,3,592], [0,0,0,593,4], -[0,-775,-3215], +[0,-24,-74], [1,3,595], [0,0,0,596,6], -[0,-775,-3579], +[0,-24,-2043], [1,3,598], [0,0,0,599,4], -[0,-775,-3580,-3215], +[0,-24,-4591,-74], [1,3,601], [0,602,0,603,4], -[0,-98,-1931], -[0,-775,-1391,-3581,-3582,-1889,-3583,-3584,-3585], +[0,-2287,-556], +[0,-24,-634,-2514,-567,-38,-223,-7703,-1499], [1,3,605], [0,60,0,606,9], -[0,-775,-3586,-3587,-1889,-3583,-3588,-3589,-3590,-3591,-3592], +[0,-24,-1500,-4592,-38,-223,-4593,-1144,-208,-1501,-2515], [1,3,608], [0,0,0,609,4], -[0,-775,-1931,-3593], +[0,-24,-556,-7704], [1,3,611], [0,612,613,149,5], -[0,-3594,-3595,-3596,-3419,-3597,-3598,-3599,-3600,-3601,-3602,-3603,-3604,-3605,-668,-695,-719,-812,-3606,-1040,-1107, --3607,-1366,-1394,-1399,-3608,-1566,-3125,-3222,-1640,-1650,-1693,-1959,-3609,-2177,-3610,-2297,-2400,-3611,-2548,-3612], -[0,-3613,-3614,-3615,-3244,-190,-262,-357,-3035,-3198,-3616,-3617,-3048,-3618,-3619,-3149,-3620,-3621,-3622,-3623,-3037, --3624,-3199,-3625,-3626,-3627,-3628,-427,-428,-664,-3629,-711,-3630,-838,-932,-958,-965,-978,-1004,-1077,-3631,-1654, --1689,-1788,-1942,-3632,-2200,-2210,-2211,-3633,-2359,-2379,-2384,-2402,-2410], +[0,-7705,-7706,-7707,-4557,-7708,-7709,-7710,-7711,-7712,-7713,-7714,-4594,-7715,-20,-624,-58,-35,-2044,-510,-28,-2516, +-793,-1655,-966,-4595,-1238,-3171,-1491,-260,-72,-1443,-362,-1502,-16,-2045,-468,-215,-4596,-262,-1286], +[0,-7716,-7717,-498,-290,-50,-451,-623,-109,-169,-7718,-264,-191,-7719,-7720,-3173,-2517,-71,-4597,-4598,-5,-2518,-140, +-1287,-2046,-7721,-750,-22,-19,-13,-2519,-308,-4599,-1393,-1,-9,-115,-151,-40,-41,-3219,-3,-519,-15,-4,-7722,-394,-27, +-190,-3220,-161,-33,-82,-124,-2], [1,3,615], [0,616,617,618,4], -[0,-653,-668,-685,-695,-1077,-2375], -[0,-86,-3307,-3048,-3049,-3136,-3637,-3638,-3639,-427,-428,-481,-693,-910,-932,-940,-967,-1344,-1415,-3640,-1637,-1658, --1847,-1942,-3641,-3642,-2410], -[0,-3643,-856], +[0,-845,-20,-1933,-624,-41,-57], +[0,-49,-63,-191,-2025,-29,-3221,-7723,-4601,-22,-19,-1045,-940,-543,-1,-12,-25,-10,-8,-4602,-677,-548,-249,-4,-7724,-4603, +-2], +[0,-7725,-42], [0,25,620], 1730419200000, [0,0,0,7,4], @@ -3690,7065 +3691,6959 @@ true, [0,0,0,7,11], [1,3,625], [0,626,627,104,8], -[0,-3644,-3645,-3646,-3647,-668,-674,-775,-2858,-3648,-3649,-1442,-1548,-1600,-3425,-3650,-3651,-1608,-3652,-3653,-2161, --2223,-2303,-3654], -[0,-3655,-3656,-3657,-3658,-3659,-3660,-3044,-3661,-3662,-3037,-3663,-3664,-3665,-518,-928,-3666,-1304,-3667,-3668,-1771, --1889,-1927,-2162,-3669,-2410,-2469], +[0,-7726,-7727,-4604,-7728,-20,-231,-24,-3151,-4605,-499,-101,-23,-220,-1492,-3222,-2520,-973,-4606,-2521,-1698,-739,-602, +-2522], +[0,-7729,-7730,-7731,-7732,-2047,-421,-143,-896,-2523,-5,-4607,-105,-1005,-157,-87,-4608,-372,-3223,-2524,-65,-38,-805, +-80,-3224,-2,-30], [1,3,629], [0,630,631,632,9], -[0,-2387,-2426,-3675,-3676,-3677,-3678,-3679,-3680,-3681], -[0,-2391,-3682,-932,-2469,-1942,-767,-2410,-3037,-3683,-3684,-3664,-3685,-3686,-3687,-3688], -[0,-3689,-3690,-3691,-3692,-3693], +[0,-44,-289,-4610,-4611,-4612,-4613,-3225,-7734,-7735], +[0,-172,-2048,-1,-30,-4,-26,-2,-5,-4614,-7736,-105,-4615,-2525,-4616,-7737], +[0,-3226,-100,-422,-4617,-7738], [1,3,634], [0,75,635,636,4], -[0,-1654,-1942], -[0,-3694,-2414,-1446,-3695,-2402,-3671,-856,-3696], +[0,-3,-4], +[0,-650,-1470,-165,-7739,-124,-399,-42,-3227], [1,3,638], [0,639,640,104,5], -[0,-3697,-3698,-3699,-3700,-3701,-3702,-154,-3703,-3704,-3036,-3705,-3706,-469,-510,-521,-3707,-668,-865,-1028,-1107, --1304,-1321,-1341,-1442,-1459,-1641,-1645,-1734,-2195,-2205,-2223,-2325,-3708,-3709,-2488,-2550], -[0,-3710,-3711,-3712,-3660,-3044,-3713,-3037,-3714,-3715,-3041,-427,-428,-528,-928,-932,-972,-1344,-1534,-1548,-2375, --2379,-2410], +[0,-4618,-1289,-7740,-7741,-7742,-7743,-4070,-7744,-3228,-471,-3229,-7745,-183,-59,-936,-7746,-20,-210,-1635,-28,-372, +-2355,-1960,-101,-1088,-344,-92,-1444,-276,-600,-739,-884,-2526,-7747,-1133,-98], +[0,-7748,-3230,-4619,-421,-143,-1146,-5,-1748,-3231,-419,-22,-19,-91,-87,-1,-724,-10,-17,-23,-57,-33,-2], [1,3,642], [0,643,644,104,6], -[0,-3646,-668,-3648,-3649,-1442,-1548,-1600,-3425,-3650,-3716,-3651,-1608,-3652,-2161,-2223], -[0,-23,-3204,-40,-3659,-3136,-3660,-3044,-3661,-3662,-3717,-3037,-3663,-3718,-3719,-3720,-518,-528,-928,-3666,-932,-972, --1304,-1415,-3668,-1889,-1927,-1942,-2082,-2375,-2410], +[0,-4604,-20,-4605,-499,-101,-23,-220,-1492,-3222,-7749,-2520,-973,-4606,-1698,-739], +[0,-11,-398,-21,-2047,-29,-421,-143,-896,-2523,-7750,-5,-4607,-7751,-7752,-7753,-157,-91,-87,-4608,-1,-724,-372,-8,-2524, +-38,-805,-4,-346,-57,-2], [0,25,646], 1734825600000, [1,3,648], [0,649,650,651,4], -[0,-3234,-367,-411,-3721,-617,-668,-686,-724,-3722,-1010,-1028,-1070,-3723,-3724,-1304,-1460,-1600,-3245,-1601,-3425, --3725,-3726,-1734,-1966,-2162,-3727,-3728,-2231,-2232,-2234,-3729,-2299,-2446,-3730], -[0,-86,-3307,-3470,-3471,-3731,-3732,-3733,-3734,-3048,-3661,-3662,-3037,-3735,-3736,-3737,-3738,-3739,-427,-428,-652, --3740,-1077,-1344,-1978,-2080,-2174,-2410], -[0,-3122,-3445,-1334,-3161,-3741,-3742,-3743], +[0,-1737,-245,-1911,-7754,-163,-20,-1615,-367,-7755,-850,-1635,-955,-7756,-7757,-372,-272,-220,-2494,-971,-1492,-4620, +-4621,-1444,-392,-80,-2527,-1749,-130,-811,-147,-4622,-221,-125,-2528], +[0,-49,-63,-297,-298,-4623,-751,-2529,-3232,-191,-896,-2523,-5,-822,-7758,-7759,-698,-7760,-22,-19,-43,-4624,-41,-10,-160, +-598,-122,-2], +[0,-442,-46,-103,-53,-7761,-1290,-7762], [1,3,653], [0,654,655,656,10], -[0,-3744,-3745,-3746,-3747,-3748,-3749,-367,-3750,-518,-635,-778,-779,-932,-940,-967,-969,-970,-1110,-1344,-3751,-1643, --1889,-1908,-1930,-2162,-2163,-2275,-2281,-2282,-3436,-3752,-2335,-2501,-2503,-2507,-2508], -[0,-3753,-1534], -[0,-3100,-3754,-3755,-3756,-3590,-3551,-3757], +[0,-2530,-3233,-2531,-2532,-315,-7763,-245,-4625,-157,-301,-141,-1214,-1,-12,-25,-64,-186,-56,-10,-1503,-374,-38,-493, +-869,-80,-467,-154,-182,-558,-2505,-4626,-397,-18,-93,-2455,-524], +[0,-7764,-17], +[0,-52,-444,-3234,-278,-208,-365,-7765], [1,3,658], [0,659,660,661,9], -[0,-3661,-664,-668,-1551,-1600,-1816,-1951], -[0,-3758,-3035,-3759,-3037,-3760,-1344,-1534,-1942,-2410,-2469], -[0,-891,-3671,-856,-3690,-2410,-3761,-3762], +[0,-896,-13,-20,-1664,-220,-325,-871], +[0,-3235,-109,-3236,-5,-7766,-10,-17,-4,-2,-30], +[0,-458,-399,-42,-100,-2,-4627,-4628], [1,3,663], [0,664,665,105,5], -[0,-3341,-44,-3763,-3764,-3765,-3766,-742,-930,-3767,-2231,-3768], -[0,-23,-3769], +[0,-1138,-90,-3237,-7767,-2533,-1291,-457,-408,-3238,-130,-1750], +[0,-11,-7768], [1,3,667], [0,668,669,105,4], -[0,-160,-3772,-3765,-3773,-3774], -[0,-3775,-2410], +[0,-2288,-2534,-2533,-4629,-4630], +[0,-3239,-2], [1,3,671], [0,672,673,7,5], -[0,-44,-160,-3776,-3765,-3777,-3774], -[0,-3775,-3778,-2006,-2410], +[0,-90,-2288,-2535,-2533,-7769,-4630], +[0,-3239,-1147,-6,-2], [0,0,0,7,8], [1,3,676], [0,677,678,38,5], -[0,-983], -[0,-652,-1498,-1654,-3779,-932,-1810,-2125,-2127,-2177,-3780,-1942,-2468,-2410,-1772,-3330,-426,-3781,-2132,-3782,-2139, --428,-3783], +[0,-950], +[0,-43,-799,-3,-7770,-1,-592,-7,-14,-16,-2049,-4,-817,-2,-345,-364,-320,-1504,-417,-1505,-1259,-19,-7771], [1,3,680], [0,0,0,681,5], -[0,-3214,-3784,-932], +[0,-45,-383,-1], [1,3,683], [0,684,685,150,4], -[0,-3785,-682,-3786,-863,-996,-3787,-3544,-3788,-1610,-1653,-3789,-1848,-2680,-1885,-1955,-1967,-3790,-2223,-3791,-3792, --3793], -[0,-3794,-3795,-3796,-3035,-3797,-3043,-3798,-3136,-3799,-3800,-3801,-3802,-3037,-3803,-3140,-3040,-3052,-3804,-3805, --3046,-3806,-3041,-427,-428,-3807,-585,-740,-748,-753,-756,-778,-795,-915,-2760,-3808,-932,-958,-969,-970,-1067,-1331, --1344,-1415,-1442,-3809,-3810,-1652,-1821,-1942,-1952,-1992,-2006,-2019,-2024,-2125,-2195,-2214,-2275,-2278,-2375,-2379, --2387,-2410, --3811,-2435,-2501,-2503,-2505,-2509], +[0,-7772,-254,-4631,-3001,-951,-4632,-1143,-2536,-227,-1978,-4633,-681,-2460,-1450,-436,-121,-4634,-739,-4635,-3240,-4636], +[0,-2537,-4637,-7773,-109,-4638,-1278,-4639,-29,-4640,-2538,-3241,-2050,-5,-1006,-997,-47,-89,-2539,-4641,-526,-2540,-419, +-22,-19,-1751,-1049,-385,-508,-158,-55,-141,-483,-431,-1720,-1293,-1,-9,-64,-186,-1639,-342,-10,-8,-101,-2541,-4642, +-1240,-803,-4,-435,-684,-6,-36,-1990,-7,-276,-328,-154,-882,-57,-33,-44,-2, +-4643,-200,-18,-93,-173,-1712], [1,3,687], [0,688,689,151,4], -[0,-3819], -[0,-41,-409,-3040,-3052,-440,-2006,-2019,-3820,-727], +[0,-2543], +[0,-132,-120,-47,-89,-506,-6,-36,-3243,-335], [1,3,691], [0,0,0,692,4], -[0,-2651,-3827,-3828,-3829,-3830,-3831,-775,-2162,-3577,-3578,-3832,-3833], +[0,-3137,-1149,-4646,-4647,-4648,-7776,-24,-80,-192,-113,-4649,-2054], [1,3,694], [0,0,0,695,9], -[0,-2651,-3827,-3828,-3829,-3834,-3835,-775,-2162,-3577,-3578,-3832,-3833], +[0,-3137,-1149,-4646,-4647,-7777,-7778,-24,-80,-192,-113,-4649,-2054], [1,3,697], [0,152,0,153,8], [1,3,699], [0,152,0,153,4], [1,3,701], [0,0,702,703,6], -[0,-23,-3840,-40,-41,-42,-86,-3307,-190,-195,-3841,-196,-3470,-3842,-3471,-406,-407,-409,-3136,-3040,-3052,-635,-658,-741, --767,-932,-940,-958,-959,-962,-967,-969,-970,-976,-978,-1110,-1344,-1415,-1419,-1942,-1952,-2006,-2019,-2125,-2174,-2375, --2379,-2391,-2410,-2411], -[0,-3838,-1064,-2006,-3214,-3839,-3843], +[0,-11,-1007,-21,-132,-137,-49,-63,-50,-2289,-7780,-2290,-297,-2055,-298,-319,-153,-120,-29,-47,-89,-301,-1052,-1212,-26, +-1,-12,-9,-145,-148,-25,-64,-186,-1406,-151,-56,-10,-8,-176,-4,-435,-6,-36,-7,-122,-57,-33,-172,-2,-84], +[0,-3244,-3014,-6,-45,-265,-1008], [1,3,705], [0,106,154,706,9], -[0,-2410,-3161,-3844,-3445,-1818], +[0,-2,-53,-216,-46,-802], [1,3,708], [0,709,710,711,8], -[0,-3845,-198,-891,-3846], -[0,-3847,-3037,-427,-428,-767,-891,-3848,-932,-933,-935,-940,-958,-962,-967,-1942,-2376,-2379,-2402,-2410], -[0,-2410,-3161,-891,-3844,-3445], +[0,-7781,-2951,-458,-4651], +[0,-7782,-5,-22,-19,-26,-458,-7783,-1,-255,-949,-12,-9,-148,-25,-4,-214,-33,-124,-2], +[0,-2,-53,-458,-216,-46], [1,3,713], [0,714,154,715,9], -[0,-198,-3849,-3850,-3851,-617,-1465,-2080], -[0,-2410,-3161,-1004,-1818,-3844,-3445], +[0,-2951,-7784,-1753,-1506,-163,-797,-598], +[0,-2,-53,-40,-802,-216,-46], [1,3,717], [0,718,719,720,6], -[0,-3852,-3853,-3854,-3855], -[0,-3856], -[0,-1122,-3857,-856,-1599,-3858], +[0,-7785,-7786,-4652,-4653], +[0,-4654], +[0,-371,-4655,-42,-99,-4656], [1,3,722], [0,723,724,725,5], -[0,-3859,-3860,-3855,-3854], -[0,-3861,-3856], -[0,-858,-1122,-3857,-856,-3862,-1599,-3858], +[0,-3245,-7787,-4653,-4652], +[0,-4657,-4654], +[0,-1625,-371,-4655,-42,-107,-99,-4656], [1,3,727], [0,728,0,729,4], -[0,-23,-40,-3863,-3864,-3865,-518,-534,-3866,-753,-767,-778,-779,-1041,-3867,-1643,-1889,-1908,-3868,-2162,-3869,-2163, --2318,-2437,-2501,-2503], -[0,-2501,-3870,-3871,-3100], +[0,-11,-21,-7788,-7789,-4658,-157,-96,-4659,-158,-26,-141,-1214,-271,-4660,-374,-38,-493,-3246,-80,-7790,-467,-559,-438, +-18,-93], +[0,-18,-1150,-2545,-52], [1,3,731], [0,732,733,155,6], -[0,-3872,-3873,-3874,-3875,-3876,-3877,-3878,-3879,-3880,-3881,-3882,-3883,-3884,-3885,-3886,-3887,-3888,-3889], -[0,-3890,-3891,-3892,-3893,-3894,-3895,-3037,-1276,-1435,-2410], +[0,-3247,-7791,-7792,-7793,-7794,-7795,-7796,-7797,-4661,-7798,-7799,-7800,-7801,-7802,-7803,-7804,-4662,-7805], +[0,-3248,-4663,-7806,-3249,-7807,-4664,-5,-247,-730,-2], [1,24,735], [0,25,736], 1724872768784, [1,3,738], [0,739,740,741,5], -[0,-3896,-1993], -[0,-86,-3307,-3897,-3898,-3470,-3471,-3899,-932,-1344,-1392,-3900,-1534,-1942,-2174,-2469], -[0,-1446,-1942,-3485,-856,-3214], +[0,-2056,-643], +[0,-49,-63,-7808,-7809,-297,-298,-1009,-1,-10,-547,-7810,-17,-4,-122,-30], +[0,-165,-4,-1001,-42,-45], [1,3,743], [0,744,745,746,4], -[0,-3901], -[0,-2581,-3902,-3117,-406,-407,-409,-410,-3037,-3040,-3903,-3904,-3905,-3906,-440,-469,-3907,-470,-3908,-3909,-3910,-3911, --3912,-767,-3913,-3914,-3915,-3916,-3917,-1435,-1449,-2926,-1637,-3918,-3919,-3920,-1771,-2006,-2019,-2023,-2080,-3921, --3922,-2410,-2924,-3923,-2466,-3924,-2469,-3612,-2564], -[0,-3925,-3926,-3927,-3928,-2023,-3612,-1435,-3921,-2410,-2564,-3923,-3911,-3916,-3929,-3930,-3912,-3922,-469,-3931,-3908, --3932,-3933,-3914,-3934], +[0,-4665], +[0,-329,-4666,-1730,-319,-153,-120,-307,-5,-47,-7811,-7812,-7813,-4667,-506,-183,-3250,-773,-4668,-7814,-3251,-2546,-4669, +-26,-3252,-4670,-4671,-4672,-7815,-730,-78,-3156,-677,-7816,-7817,-7818,-65,-6,-36,-3092,-598,-2057,-3253,-2,-2023,-3254, +-104,-3255,-30,-1286,-263], +[0,-4673,-423,-7819,-7820,-3092,-1286,-730,-2057,-2,-263,-3254,-2546,-4672,-7821,-4674,-4669,-3253,-183,-4675,-4668,-7822, +-7823,-4670,-7824], [1,3,748], [0,749,38,750,4], -[0,-2426], -[0,-3935,-3936,-3937,-3938,-3939,-3940,-3690], +[0,-289], +[0,-7825,-7826,-7827,-7828,-1507,-4676,-100], [1,3,752], [0,753,754,755,5], -[0,-3941,-3942,-3943,-3819,-1549], -[0,-2125,-2476,-2483], -[0,-2476,-3944,-3945,-3100,-3161,-3160,-3112,-3095,-3098,-3113,-3114], +[0,-7829,-7830,-7831,-2543,-461], +[0,-7,-73,-888], +[0,-73,-897,-4677,-52,-53,-102,-3168,-131,-127,-694,-3169], [1,3,757], [0,758,759,760,4], -[0,-3763,-229,-807,-1549], -[0,-3946,-2125,-2476,-2483], -[0,-2476,-3944,-3945,-3100,-3161,-3160,-3095,-3098], +[0,-3237,-4071,-1061,-461], +[0,-1754,-7,-73,-888], +[0,-73,-897,-4677,-52,-53,-102,-131,-127], [1,3,762], [0,763,764,63,4], -[0,-3947,-2944,-2900,-3948,-3949,-3950,-2202], -[0,-3951,-3952,-3037,-2410], +[0,-3256,-3159,-1725,-7832,-7833,-2547,-879], +[0,-4678,-3257,-5,-2], [1,3,766], [0,767,768,769,10], -[0,-2387,-1387,-3978], -[0,-1415,-2162,-668,-999,-2184,-3979,-932,-2127,-1077,-1417,-1942,-2281,-3136,-3037,-3980,-3564,-3981,-3982,-2284,-3983, --3984,-3985,-2891,-3986,-3987,-3988,-3989,-940,-428,-3990,-351,-3991,-3992,-427], -[0,-1386,-3161,-3993,-3162,-3994,-3995,-3996,-752,-891,-3997,-3998], +[0,-44,-1654,-4679], +[0,-8,-80,-20,-118,-809,-7834,-1,-14,-41,-489,-4,-182,-29,-5,-7835,-2513,-7836,-4680,-1466,-366,-7837,-7838,-4454,-2063, +-7839,-2064,-2550,-12,-19,-7840,-62,-7841,-7842,-22], +[0,-1426,-53,-7843,-95,-306,-2065,-3260,-943,-458,-3261,-2551], [1,3,771], [0,0,156,157,4], [1,3,773], [0,774,0,775,4], -[0,-4003], -[0,-2410,-727,-1788,-4004,-4005], +[0,-2552], +[0,-2,-335,-15,-76,-823], [1,3,777], [0,778,779,780,4], -[0,-2852,-4006,-4007,-4008,-682,-4009], -[0,-4010,-367,-407,-409,-410,-3664,-932,-940,-4011,-1449,-2006,-2019,-2410,-2466,-2469], -[0,-3095,-3098,-4012,-3099,-3161,-3100,-4013,-4014,-3159,-2006,-3160,-4015], +[0,-2476,-7844,-1012,-4681,-254,-7845], +[0,-1759,-245,-153,-120,-307,-105,-1,-12,-4682,-78,-6,-36,-2,-104,-30], +[0,-131,-127,-4683,-441,-53,-52,-7846,-7847,-106,-6,-102,-4684], [1,3,782], [0,783,784,107,4], -[0,-4016,-4017,-4018,-4019,-4020,-237,-3037,-480,-668,-680,-4021,-1119,-4022,-4023,-4024,-4025,-4026,-1426,-4027,-4028, --4029,-4030,-1427,-4031,-4032,-1639,-1950,-2218], -[0,-4033,-4034,-4035,-4036], +[0,-7848,-4685,-4686,-3262,-1760,-663,-5,-841,-20,-481,-4687,-324,-7849,-3263,-4688,-4689,-4690,-1660,-7850,-7851,-7852, +-7853,-858,-2553,-4691,-361,-683,-288], +[0,-7854,-2066,-898,-651], [1,3,786], [0,787,0,7,4], -[0,-4017,-4046,-4047,-4048,-3037,-3041,-668], +[0,-4685,-4694,-4695,-4696,-5,-419,-20], [1,3,789], [0,790,791,792,6], -[0,-4049,-469,-470,-1548], -[0,-234,-4050,-427,-428,-519,-4051,-932,-940,-958,-967,-1449,-1788,-1942,-2074,-4052,-2125,-2127,-2130,-2142,-2144,-2234, --2379,-2387,-2402,-2410], -[0,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-3926,-4057,-1463,-4058,-4059,-3999,-4060], +[0,-652,-183,-773,-23], +[0,-1200,-7858,-22,-19,-51,-7859,-1,-12,-9,-25,-78,-15,-4,-327,-4697,-7,-14,-875,-305,-645,-147,-33,-44,-124,-2], +[0,-570,-899,-108,-1296,-52,-116,-352,-423,-1297,-796,-331,-1298,-699,-1299], [1,3,794], [0,795,796,797,5], -[0,-4061,-809,-1548], -[0,-3778,-163,-270,-272,-274,-350,-4062,-351,-3561,-3043,-3136,-3040,-3052,-427,-428,-3807,-748,-915,-932,-940,-958,-967, --969,-1415,-1419,-1449,-1788,-1942,-2006,-2019,-2125,-2127,-2130,-4063,-4064,-2142,-2144,-2233,-2375,-2376,-2387,-2402, --2410,-2501,-2503,-2505,-238,-240], -[0,-3118,-4065,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[0,-7860,-542,-23], +[0,-1147,-1598,-4078,-4079,-4080,-77,-238,-62,-237,-1278,-29,-47,-89,-22,-19,-1751,-508,-431,-1,-12,-9,-25,-64,-8,-176, +-78,-15,-4,-6,-36,-7,-14,-875,-900,-4698,-305,-645,-880,-57,-214,-44,-124,-2,-18,-93,-173,-1201,-2955], +[0,-1731,-2069,-570,-899,-108,-1296,-52,-116,-352,-1297,-796,-331,-1298,-699,-1299], [1,3,799], [0,34,800,801,6], -[0,-4066,-3043,-3136,-4067,-3040,-3062,-427,-428,-3807,-767,-915,-932,-940,-958,-967,-969,-1415,-1449,-1788,-1942,-2006, --2019,-2040,-2074,-4052,-2125,-2127,-2130,-2142,-2144,-2375,-2387,-2402,-2410,-238], -[0,-2006,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[0,-530,-1278,-29,-3264,-47,-3166,-22,-19,-1751,-26,-431,-1,-12,-9,-25,-64,-8,-78,-15,-4,-6,-36,-872,-327,-4697,-7,-14, +-875,-305,-645,-57,-44,-124,-2,-1201], +[0,-6,-570,-899,-108,-1296,-52,-116,-352,-1297,-796,-331,-1298,-699,-1299], [1,3,803], [0,804,805,7,4], -[0,-3469,-4068,-4069,-4070,-4071,-4072,-4073,-4074,-4075,-4076,-4077,-4078,-4079,-4080,-4081,-4082,-4083,-4084,-4085, --4086], -[0,-4087,-3136,-1415,-2125,-2410], +[0,-2507,-7861,-7862,-7863,-7864,-7865,-7866,-7867,-7868,-7869,-7870,-7871,-7872,-7873,-7874,-7875,-7876,-7877,-7878, +-7879], +[0,-7880,-29,-8,-7,-2], [1,3,807], [0,808,809,810,9], -[0,-482,-567,-668,-725,-4088,-1107,-4089,-1442,-4090,-1572,-1645,-1650,-4091,-2125,-4092,-4093,-4094,-4095,-4096,-2347, --2433,-2462,-2463,-4097], -[0,-526,-4098,-555,-558,-756,-808,-1451,-1654,-1788,-4099,-2155,-2210,-2250,-2460], -[0,-2162,-3754,-775,-4100,-856,-3485,-4101], +[0,-719,-282,-20,-309,-4699,-28,-4700,-101,-7881,-2375,-92,-72,-3265,-7,-7882,-7883,-7884,-7885,-2070,-69,-604,-562,-887, +-7886], +[0,-179,-4701,-937,-253,-55,-1620,-1087,-3,-15,-4702,-497,-27,-97,-70], +[0,-80,-444,-24,-700,-42,-1001,-1510], [1,3,812], [0,0,0,813,10], -[0,-4102,-4103,-4104], +[0,-7887,-7888,-7889], [1,3,815], [0,816,817,158,5], -[0,-2900], -[0,-231,-4105,-4106,-1536], +[0,-1725], +[0,-1904,-4703,-1300,-1663], [1,3,819], [0,820,28,821,6], -[0,-2852,-703,-2037,-4118,-2641,-2400], -[0,-3098,-3099,-3100,-3482,-2634,-1713,-2006,-3160,-4119], +[0,-2476,-302,-4294,-7890,-2459,-215], +[0,-127,-441,-52,-382,-242,-390,-6,-102,-903], [1,3,823], [0,108,28,824,8], -[0,-4120,-3098,-4121,-3100,-3482,-2634,-1713,-4122,-2006,-4123,-3160,-4119], +[0,-3267,-127,-1013,-52,-382,-242,-390,-2556,-6,-612,-102,-903], [0,0,0,826,5], -[0,-3100,-3322,-3482,-2634,-1713,-2006,-4124,-4125], +[0,-52,-696,-382,-242,-390,-6,-3268,-1302], [1,3,828], [0,0,28,829,6], -[0,-3098,-3959,-3100,-3482,-4126,-2634,-1713,-2006,-3160,-4119], +[0,-127,-1757,-52,-382,-1511,-242,-390,-6,-102,-903], [1,3,831], [0,832,28,833,6], -[0,-2662,-2055], -[0,-3098,-3100,-3482,-2634,-1713,-4127,-4128,-4129,-2006,-3160,-4119], +[0,-3138,-687], +[0,-127,-52,-382,-242,-390,-1761,-7891,-7892,-6,-102,-903], [1,3,835], [0,836,0,837,4], -[0,-4130,-257], -[0,-2006,-2634,-1713,-3160,-3098,-4119,-3482,-3100,-707,-4131,-4132,-4133], +[0,-1762,-4076], +[0,-6,-242,-390,-102,-127,-903,-382,-52,-334,-2074,-400,-4704], [1,3,839], [0,840,0,841,10], -[0,-703,-786], -[0,-2006,-2634,-1713,-3160,-3482,-3100,-906,-3771,-4134], +[0,-302,-722], +[0,-6,-242,-390,-102,-382,-52,-1627,-1292,-3269], [1,3,843], [0,0,0,844,5], -[0,-2006,-2634,-1713,-3482,-3100,-4124,-3322,-4125], +[0,-6,-242,-390,-382,-52,-3268,-696,-1302], [1,3,846], [0,847,0,160,4], -[0,-703,-2029,-1887,-1967,-44,-4135,-4136,-4137,-4138,-2055,-1311,-3024], +[0,-302,-437,-3080,-121,-90,-7893,-7894,-7895,-7896,-687,-963,-1487], [1,3,849], [0,39,0,850,4], -[0,-2006,-3159,-3119,-1613,-3843], +[0,-6,-106,-996,-1099,-1008], [1,3,852], [0,0,853,161,4], -[0,-1415,-2446,-1344,-932,-1548,-753,-2379,-2402,-1942,-589,-21,-533,-2410,-23,-3136,-3738,-1771,-3044,-50,-86,-3268,-40, --977,-2082,-940,-967,-2405,-42,-262,-4139,-428,-3307,-427,-26,-36,-35], +[0,-8,-125,-10,-1,-23,-158,-33,-124,-4,-110,-48,-86,-2,-11,-29,-698,-65,-143,-357,-49,-747,-21,-1065,-346,-12,-25,-816, +-137,-451,-3270,-19,-63,-22,-209,-300,-931], [1,3,855], [0,856,0,857,5], -[0,-4145], -[0,-4146,-1599,-4147,-2006,-2093], +[0,-4706], +[0,-904,-99,-2075,-6,-274], [1,3,859], [0,860,861,862,10], -[0,-264,-263,-834,-1548,-1645,-2114,-2177,-2231,-2410,-4148,-4149,-4150,-4151,-4152], -[0,-4153,-3044,-3200,-3199,-932,-4154,-4155], -[0,-2410,-3816,-4156,-4157,-4158,-3960,-856,-4159,-4160,-3761,-2127,-4161,-3116,-4162,-4163], +[0,-1905,-1599,-203,-23,-92,-126,-16,-130,-2,-7899,-4707,-7900,-7901,-7902], +[0,-2558,-143,-1137,-140,-1,-7903,-7904], +[0,-2,-1148,-3271,-7905,-3272,-569,-42,-3273,-3274,-4627,-14,-1151,-607,-4708,-7906], [1,3,864], [0,0,865,162,4], -[0,-932,-4153,-4164], +[0,-1,-2558,-3275], [1,3,867], [0,868,869,162,4], -[0,-469,-4166,-2114,-263], -[0,-932,-4167,-3200,-4153,-4164], +[0,-183,-4709,-126,-1599], +[0,-1,-7907,-1137,-2558,-3275], [1,3,871], [0,0,872,873,5], -[0,-4168,-4169,-4170,-4171,-3037], -[0,-4172,-4173,-4174,-4175,-4176,-4177,-4178,-4179], +[0,-7908,-7909,-7910,-2559,-5], +[0,-3276,-3277,-3278,-3279,-3280,-3281,-7911,-7912], [1,3,875], [0,876,877,878,8], -[0,-267], -[0,-265,-4171,-2400], -[0,-4172,-4173,-4174,-4175,-4176,-4177,-4180,-4181,-3816,-4182,-4183,-4184], +[0,-4077], +[0,-2956,-2559,-215], +[0,-3276,-3277,-3278,-3279,-3280,-3281,-7913,-4710,-1148,-1304,-7914,-7915], [1,3,880], [0,0,881,882,4], -[0,-4185,-265,-4171,-3037,-4186], -[0,-4172,-4173,-4174,-4175,-4176,-4177,-4187,-2444], +[0,-7916,-2956,-2559,-5,-7917], +[0,-3276,-3277,-3278,-3279,-3280,-3281,-2076,-136], [1,3,884], [0,0,0,885,5], -[0,-4188,-3100,-4189,-3110], +[0,-7918,-52,-2560,-277], [1,3,887], [0,888,889,890,4], -[0,-4190,-4191,-4192,-4193,-4194,-4195], -[0,-86,-3307,-4196,-4197,-3983,-4198,-3617,-4199,-4200,-3037,-4201,-4202,-4203,-4204,-523,-617,-720,-754,-767,-796,-4205, --1004,-4206,-4207,-1063,-1116,-1278,-1449,-1729,-3246,-2228,-2229,-4208,-2291,-2293,-2892,-2410,-2426,-2469,-4209,-2817, --4210,-2501,-4211,-2531], -[0,-2105,-4212,-1334,-1342,-2540,-2533,-4213,-4214,-4215,-4216,-3634], +[0,-4711,-7919,-7920,-4712,-4713,-2561], +[0,-49,-63,-4714,-4715,-366,-1512,-264,-4716,-4717,-5,-1014,-3282,-1015,-475,-194,-163,-482,-368,-26,-295,-7921,-40,-2562, +-7922,-1412,-387,-1233,-78,-188,-999,-810,-1262,-3283,-690,-123,-380,-2,-289,-30,-4718,-2472,-7923,-18,-4719,-205], +[0,-111,-7924,-103,-388,-2011,-743,-905,-7925,-317,-1763,-61], [1,3,892], [0,39,0,893,4], -[0,-2006,-3159,-4217,-1613,-3119,-3843], +[0,-6,-106,-1016,-1099,-996,-1008], [1,3,895], [0,896,0,897,6], -[0,-703,-2825,-2690,-1967,-273,-44], -[0,-2006,-3159,-4217,-1613,-3119,-1510], +[0,-302,-1723,-1481,-121,-2957,-90], +[0,-6,-106,-1016,-1099,-996,-1091], [1,3,899], [0,900,0,901,4], -[0,-703,-786,-2029,-2825,-2690,-1967,-273,-44,-2997,-2055,-4218,-3024], -[0,-2006,-3159,-4217,-1613,-3119], +[0,-302,-722,-437,-1723,-1481,-121,-2957,-90,-820,-687,-7926,-1487], +[0,-6,-106,-1016,-1099,-996], [1,3,903], [0,904,0,905,9], -[0,-703,-786,-2825,-2690,-1967,-44,-2575,-2689], -[0,-2006,-3159,-4217,-4219], +[0,-302,-722,-1723,-1481,-121,-90,-4362,-4385], +[0,-6,-106,-1016,-4720], [1,3,907], [0,908,0,909,4], -[0,-44,-2690,-3024,-703,-1967,-2055,-4220], -[0,-2006,-3159,-4217,-4221,-1613,-3119,-4222,-4223,-4224], +[0,-90,-1481,-1487,-302,-121,-687,-7927], +[0,-6,-106,-1016,-7928,-1099,-996,-4721,-7929,-4722], [1,3,911], [0,912,913,914,5], -[0,-4225,-4226,-4227,-4228,-4229,-4230,-4231,-4232,-4233,-682,-712,-4234,-4235,-4236,-1107,-1125,-4237,-4238,-4239,-4240, --4241,-4242,-2095,-4243,-4244,-4245,-4246,-2400,-2427,-2429,-2501,-4247,-2650], -[0,-4248,-4249,-4250,-4251,-3040,-3046,-518,-726,-2634,-1906,-2006,-2019,-2083,-2318,-2391,-2410,-4252,-4253,-4254], -[0,-4147,-856,-1713,-1599], +[0,-2563,-7930,-3284,-2077,-4723,-4724,-701,-7931,-7932,-254,-217,-7933,-7934,-2078,-28,-670,-7935,-7936,-3285,-7937, +-4725,-906,-522,-7938,-7939,-907,-7940,-215,-135,-348,-18,-4726,-1480], +[0,-4727,-7941,-7942,-424,-47,-526,-157,-284,-242,-555,-6,-36,-377,-559,-172,-2,-7943,-7944,-7945], +[0,-2075,-42,-390,-99], [1,3,916], [0,917,0,109,9], -[0,-4255,-4256,-2888,-4257], +[0,-4728,-4729,-2478,-7946], [1,3,919], [0,920,0,109,11], -[0,-2387,-276], +[0,-44,-4081], [1,3,922], [0,923,0,109,5], -[0,-2083,-4262,-2087,-2090,-3649,-4263,-4264,-1292,-2429,-4265,-4266,-4267,-668,-4245,-2427,-2268], +[0,-377,-4730,-1994,-736,-499,-4731,-3286,-726,-348,-7950,-7951,-7952,-20,-907,-135,-3109], [1,3,925], [0,926,927,928,5], -[0,-4268,-820,-665,-4269], -[0,-664,-616,-1654,-932,-4270,-2125,-4271,-2379,-1098,-1942,-2410,-3035,-3037,-4272,-595,-964,-958,-940,-967,-428,-4273, --427,-279,-4274,-4275], -[0,-4276,-4277,-4271,-3634], +[0,-7953,-1943,-239,-754], +[0,-13,-2318,-3,-1,-3287,-7,-3288,-33,-486,-4,-2,-109,-5,-3289,-1925,-256,-9,-12,-25,-19,-7954,-22,-4082,-7955,-7956], +[0,-2564,-7957,-3288,-61], [1,3,930], [0,931,932,7,5], -[0,-4278,-4279,-4280,-281,-4281,-4282,-282,-4283,-4284,-4285,-283,-4286,-4287,-4288,-1315,-4289,-1582,-1645,-1758,-4290, --1767,-4291,-1770,-1831,-4292,-1957,-4293,-4294,-4295,-2177,-2247,-4296,-4297], -[0,-4298,-4299,-4300,-589,-4301,-1722,-2319,-2325,-4302], +[0,-4732,-4733,-3290,-2958,-4734,-4735,-2959,-1513,-7958,-3291,-1202,-4736,-2079,-4737,-792,-7959,-434,-92,-463,-4738, +-975,-3292,-1678,-1248,-4739,-980,-7960,-7961,-7962,-16,-1464,-4740,-3293], +[0,-755,-3294,-756,-110,-7963,-197,-85,-884,-7964], [1,3,934], [0,935,29,936,5], -[0,-4282,-4283,-1107,-1645], -[0,-1764,-1776,-4303,-687,-4304,-4305], +[0,-4735,-1513,-28,-92], +[0,-159,-1679,-2565,-37,-3295,-7965], [1,3,938], [0,0,29,939,10], -[0,-1764,-687,-1733], +[0,-159,-37,-590], [1,3,941], [0,942,943,7,6], -[0,-282,-4283,-4306,-1733,-1957,-2518], -[0,-4298,-4300,-4307,-2319], +[0,-2959,-1513,-3296,-590,-980,-222], +[0,-755,-756,-4741,-85], [1,3,945], [0,946,947,163,5], -[0,-4308,-4309,-4310,-1600,-1395,-4311,-4312,-4313,-4314,-4315,-4316,-1550,-4317,-2161,-3649,-4318,-4319,-1554,-4320, --1603,-4321,-4322,-4323,-3430,-4324,-4325], -[0,-1107,-1654,-674,-2250,-4326,-633,-4327,-2251], +[0,-3297,-4742,-3298,-220,-1082,-4743,-4744,-4745,-4746,-4747,-4748,-1971,-4749,-1698,-499,-4750,-4751,-1665,-4752,-1097, +-4753,-4754,-4755,-3204,-4756,-4757], +[0,-28,-3,-231,-97,-4758,-60,-4759,-134], [1,24,949], [0,25,950], 1734998400000, [1,3,952], [0,953,0,64,4], -[0,-293], +[0,-664], [1,3,955], [0,956,0,64,10], -[0,-1787,-2387], +[0,-1244,-44], [1,3,958], [0,959,0,64,4], -[0,-300], +[0,-2961], [1,3,961], [0,962,963,64,5], -[0,-4341,-888,-2387,-2177,-2551,-1645,-910], -[0,-1415,-1787], +[0,-2566,-337,-44,-16,-525,-92,-543], +[0,-8,-1244], [1,3,965], [0,966,40,967,4], -[0,-2387,-297,-293,-1863,-2654,-2383], -[0,-4332,-4342,-4335,-4340,-4343,-4344], +[0,-44,-934,-664,-167,-313,-815], +[0,-1152,-7968,-1305,-826,-2082,-1514], [1,3,969], [0,970,40,164,4], -[0,-2387,-297,-2177,-293,-2410], +[0,-44,-934,-16,-664,-2], [1,3,972], [0,973,0,974,9], -[0,-2387,-297,-299,-293], -[0,-4332,-4336,-4348,-4338,-4339,-4340,-4344], +[0,-44,-934,-2960,-664], +[0,-1152,-1306,-7970,-1767,-1768,-826,-1514], [1,3,976], [0,977,40,978,11], -[0,-668,-2387,-1353,-2177,-715,-3187,-1864,-293,-1863,-2654,-23,-832,-1461,-1773,-300,-44,-4341,-40,-2234,-3766,-4349,-42, --38,-33,-3376,-4350], -[0,-4332,-4335,-4336,-4351,-4352,-4340,-4343,-4344], +[0,-20,-44,-460,-16,-1390,-2490,-326,-664,-167,-313,-11,-1624,-636,-1981,-2961,-90,-2566,-21,-147,-1291,-7971,-137,-170, +-578,-1139,-7972], +[0,-1152,-1305,-1306,-7973,-7974,-826,-2082,-1514], [1,3,980], [0,981,0,165,4], -[0,-2387,-297,-299,-293,-295,-4353], +[0,-44,-934,-2960,-664,-1907,-4761], [1,3,983], [0,984,40,165,8], -[0,-2387,-297,-2571,-4354,-293,-4355,-295,-4356], +[0,-44,-934,-4360,-7975,-664,-7976,-1907,-2567], [1,3,986], [0,987,40,64,9], -[0,-1787,-668,-2387,-2177,-910,-1864,-293,-2551,-4341], +[0,-1244,-20,-44,-16,-543,-326,-664,-525,-2566], [1,3,989], [0,990,991,76,4], -[0,-302,-4357,-4358,-4359,-812,-2177], -[0,-4360,-3035,-3621,-3037,-3199,-664,-697,-740,-932,-938,-939,-4361,-1111,-1654,-2210,-2379,-2410], +[0,-4083,-4762,-4763,-7977,-35,-16], +[0,-3299,-109,-71,-5,-140,-13,-4127,-385,-1,-1220,-1946,-3300,-204,-3,-27,-33,-2], [1,3,993], [0,994,995,76,5], -[0,-4357,-4358,-812,-1111,-1401,-2387], -[0,-3035,-4363,-3044,-3621,-3037,-4364,-4365,-664,-740,-932,-938,-939,-4361,-1548,-1654,-1972,-2379,-2410], +[0,-4762,-4763,-35,-204,-856,-44], +[0,-109,-4764,-143,-71,-5,-2568,-4765,-13,-385,-1,-1220,-1946,-3300,-23,-3,-181,-33,-2], [1,3,997], [0,998,999,1000,4], -[0,-480,-483,-4366,-692,-812,-888,-1097,-1366,-1401,-1532,-1645,-2177,-2267,-2297,-2654,-2820,-2525,-2528], -[0,-3307,-3615,-304,-4360,-4367,-4368,-3268,-3035,-4269,-4369,-3198,-4370,-4363,-3621,-3037,-4371,-4372,-4373,-4374,-4365, --589,-664,-665,-721,-767,-932,-938,-940,-1344,-1534,-4375,-1654,-1788,-1942,-2200,-2210,-2379,-2384,-2410], -[0,-4362,-687,-3957,-4376,-3215,-4377,-4378], +[0,-841,-1375,-4766,-2327,-35,-337,-1646,-793,-856,-1969,-92,-16,-395,-468,-313,-2473,-991,-890], +[0,-63,-498,-2292,-3299,-2084,-2569,-747,-109,-754,-4767,-169,-2570,-4764,-71,-5,-2571,-279,-2572,-7978,-4765,-110,-13, +-239,-1056,-26,-1,-1220,-12,-10,-17,-3301,-3,-15,-4,-394,-27,-33,-82,-2], +[0,-1769,-37,-316,-1770,-74,-613,-1307], [1,3,1002], [0,1003,1004,1005,6], -[0,-303], -[0,-3307,-3615,-4367,-4368,-3035,-3621,-3037,-664,-721,-932,-938,-940,-1344,-1534,-1654,-4362,-1942,-2200,-2379,-2410], -[0,-4379], +[0,-1908], +[0,-63,-498,-2084,-2569,-109,-71,-5,-13,-1056,-1,-1220,-12,-10,-17,-3,-1769,-4,-394,-33,-2], +[0,-7979], [1,3,1007], [0,1008,1009,1010,4], -[0,-3704,-4380,-4381,-4382], -[0,-4383,-4384,-4385,-4386,-4387,-3037,-3664,-928,-1037,-1107,-1722,-1942,-4388,-2410,-2426,-2469], -[0,-4389,-1105,-3691,-4390], +[0,-3228,-7980,-7981,-7982], +[0,-7983,-7984,-7985,-7986,-7987,-5,-105,-87,-3012,-28,-197,-4,-7988,-2,-289,-30], +[0,-4768,-545,-422,-7989], [1,3,1012], [0,1013,0,65,4], -[0,-4391,-4392,-4393,-4394,-4395,-4396,-4397,-4398,-4399,-4400,-4401,-4402,-4403,-4404,-4405,-4406,-4407,-4408,-4409, --4410,-4411,-4412,-4413,-4414,-4415,-4416,-4417,-4418,-4419,-4420,-4421,-4422,-4423,-4424,-4425,-4426,-4427,-4428,-4429, --4430,-4431,-4432,-4433,-4434,-4435,-4436,-4437,-4438,-4439,-4440,-4441,-4442,-4443,-4444,-4445,-4446,-4447,-4448,-4449, --4450,-4451,-4452,-4453, --4454,-4455,-4456,-4457,-4458,-4459,-4460,-4461,-4462,-4463,-4464,-4465,-4466,-4467,-4468,-4469,-4470,-4471,-4472,-4473, --4474,-4475,-4476,-4477,-4478,-4479,-4480,-4481,-4482,-4483,-4484,-4485,-4486,-4487,-4488,-4489,-4490,-4491,-4492,-4493, --4494,-4495,-4496,-4497,-4498,-4499,-4500,-4501,-4502,-4503,-4504,-4505,-4506,-4507,-4508,-4509,-4510,-4511,-4512,-4513, --4514,-4515,-4516,-4517, --4518,-4519,-4520,-4521,-4522,-4523,-4524,-4525,-4526,-4527,-4528,-4529,-4530,-4531,-4532,-4533,-4534,-4535,-4536,-4537, --4538,-4539,-4540,-4541,-4542,-4543,-4544,-4545,-4546,-4547,-4548,-4549,-4550,-4551,-4552,-4553,-4554,-4555,-4556,-4557, --4558,-4559,-4560,-4561,-4562,-4563,-4564,-4565,-4566,-4567,-4568,-4569,-4570,-4571,-4572,-4573,-4574,-4575,-4576,-4577, --4578,-4579,-4580,-4581, --4582,-4583,-4584,-4585,-4586,-4587,-4588,-4589], +[0,-7990,-7991,-7992,-7993,-7994,-7995,-7996,-7997,-7998,-7999,-8000,-8001,-8002,-8003,-8004,-8005,-8006,-8007,-8008, +-8009,-8010,-8011,-8012,-8013,-8014,-8015,-8016,-8017,-8018,-8019,-8020,-8021,-8022,-8023,-8024,-8025,-8026,-8027,-8028, +-8029,-8030,-8031,-8032,-8033,-8034,-8035,-8036,-8037,-8038,-8039,-8040,-8041,-8042,-8043,-8044,-8045,-8046,-8047,-8048, +-8049,-8050,-8051,-8052, +-8053,-8054,-8055,-8056,-8057,-8058,-8059,-8060,-8061,-8062,-8063,-8064,-8065,-8066,-8067,-8068,-8069,-8070,-8071,-8072, +-8073,-8074,-8075,-8076,-8077,-8078,-8079,-8080,-8081,-8082,-8083,-8084,-8085,-8086,-8087,-8088,-8089,-8090,-8091,-8092, +-8093,-8094,-8095,-8096,-8097,-8098,-8099,-8100,-8101,-8102,-8103,-8104,-8105,-8106,-8107,-8108,-8109,-8110,-8111,-8112, +-8113,-8114,-8115,-8116, +-8117,-8118,-8119,-8120,-8121,-8122,-8123,-8124,-8125,-8126,-8127,-8128,-8129,-8130,-8131,-8132,-8133,-8134,-8135,-8136, +-8137,-8138,-8139,-8140,-8141,-8142,-8143,-8144,-8145,-8146,-8147,-8148,-8149,-8150,-8151,-8152,-8153,-8154,-8155,-8156, +-8157,-8158,-8159,-8160,-8161,-8162,-8163,-8164,-8165,-8166,-8167,-8168,-8169,-8170,-8171,-8172,-8173,-8174,-8175,-8176, +-8177,-8178,-8179,-8180, +-8181,-8182,-8183,-8184,-8185,-8186,-8187,-8188], [1,3,1015], [0,1016,1017,65,5], -[0,-4595,-4596,-712], -[0,-4597,-2391], +[0,-8193,-8194,-217], +[0,-2573,-172], [1,3,1019], [0,0,1020,65,8], -[0,-21,-23,-40,-1026,-1168,-1171,-1184,-1187,-1226,-4598,-4599,-2125,-2281,-2282,-2303], +[0,-48,-11,-21,-226,-32,-1648,-960,-631,-1232,-8195,-8196,-7,-182,-558,-602], [1,3,1022], [0,0,1023,65,8], -[0,-21,-23,-40,-1168,-1171,-1184,-1226,-2125,-2281,-2282], +[0,-48,-11,-21,-32,-1648,-960,-1232,-7,-182,-558], [1,3,1025], [0,0,0,1026,4], -[0,-4600,-4601,-4602,-3578,-3445,-743], +[0,-2574,-476,-531,-113,-46,-336], [1,3,1028], [0,1029,0,1030,4], -[0,-4603,-4604,-310,-4605,-4606,-4607,-4608,-4609], -[0,-4600,-4601,-4602,-3578,-3445,-4610,-2105], +[0,-3302,-8197,-2962,-4770,-8198,-8199,-8200,-8201], +[0,-2574,-476,-531,-113,-46,-2085,-111], [1,3,1032], [0,1033,0,1034,5], -[0,-4611,-1640,-4612,-4605,-310,-4613,-4614,-311,-313,-4615], -[0,-4600,-4601,-4602,-3578,-3445,-4616], +[0,-8202,-260,-8203,-4770,-2962,-8204,-4771,-4084,-4085,-8205], +[0,-2574,-476,-531,-113,-46,-1308], [1,3,1036], [0,1037,0,1038,4], -[0,-1640,-4617,-4614], -[0,-4600,-4601,-4602,-3578,-3445,-4616,-2178,-4618], +[0,-260,-8206,-4771], +[0,-2574,-476,-531,-113,-46,-1308,-808,-4772], [1,3,1040], [0,1041,1042,1043,4], -[0,-4619,-523,-617,-668,-1004,-1122,-1123,-1336,-1343,-1439,-1548,-1993,-4620,-3122,-4621], -[0,-21,-23,-40,-4622,-3035,-4269,-3617,-4623,-3044,-3621,-4624,-3037,-4625,-4372,-3625,-4626,-427,-428,-664,-665,-4627, --749,-932,-934,-935,-940,-948,-4628,-958,-964,-1654,-1722,-1788,-1942,-1972,-2125,-2210,-2211,-2234,-2392,-2410], -[0,-4629,-4630,-3214,-4631,-3634,-4632], +[0,-8207,-194,-163,-20,-40,-371,-956,-586,-727,-967,-23,-643,-4773,-442,-2575], +[0,-48,-11,-21,-8208,-109,-754,-264,-3303,-143,-71,-3304,-5,-4774,-279,-1287,-4775,-22,-19,-13,-239,-3305,-625,-1,-185, +-949,-12,-246,-3306,-9,-256,-3,-197,-15,-4,-181,-7,-27,-190,-147,-155,-2], +[0,-8209,-8210,-45,-8211,-61,-8212], [0,0,0,7,10], [1,3,1046], [0,1047,0,1048,6], -[0,-1851], -[0,-4125,-4633,-2006,-2476,-2299,-4634,-2410,-3214,-3100,-3445,-1109,-3160,-1062,-3122], +[0,-553], +[0,-1302,-1771,-6,-73,-221,-1017,-2,-45,-52,-46,-852,-102,-1228,-442], [1,3,1050], [0,1051,1052,7,4], -[0,-4635,-4636,-4637,-4638,-4639,-4640,-4641,-4642,-4643,-4644,-4645], -[0,-3035,-3621,-664,-778,-925,-1471,-1475,-1479,-1480,-1482,-1483,-1654,-2125,-3047,-2275,-2402,-2410,-2501], +[0,-8213,-8214,-8215,-8216,-8217,-8218,-8219,-8220,-8221,-8222,-8223], +[0,-109,-71,-13,-141,-948,-79,-138,-213,-1090,-187,-414,-3,-7,-4487,-154,-124,-2,-18], [1,3,1054], [0,0,1055,1056,4], -[0,-3983,-4646,-351,-3266,-406,-407,-4647,-3037,-4648,-784,-932,-4649,-4650,-4651,-4652,-1110,-1449,-1889,-1891,-1942, --4653,-4654,-2091,-4655,-4656,-2127,-2132,-2142,-2286,-2379,-2387,-2392,-2402,-4657,-2405,-4658,-4659,-4660,-4661,-4662, --2410,-4663,-2468,-4664], -[0,-4665,-4666,-4667,-4668,-4669,-775,-3099,-4189,-4670,-4671,-856,-4672,-4673,-3264,-4674,-4675,-4676,-3214,-4677,-4678, --4679,-4680,-4681,-4682,-4683,-2410,-4684,-2257,-4685,-2006,-3322], +[0,-366,-909,-62,-206,-319,-153,-614,-5,-8224,-369,-1,-8225,-3307,-4776,-3308,-56,-78,-38,-682,-4,-4777,-3309,-378,-1772, +-1773,-14,-417,-305,-396,-33,-44,-155,-124,-8226,-816,-8227,-4778,-8228,-8229,-8230,-2,-8231,-817,-8232], +[0,-1018,-1309,-8233,-4779,-8234,-24,-441,-2560,-8235,-8236,-42,-1774,-8237,-31,-8238,-4780,-1775,-45,-8239,-8240,-1153, +-8241,-2086,-2576,-2577,-2,-4781,-740,-8242,-6,-696], [1,3,1058], [0,1059,1060,7,4], -[0,-4686], -[0,-4687,-4688,-4689,-4690,-528,-4691,-824,-4692,-957,-1077,-4693,-1168,-1174,-1197,-1212,-1244,-1251,-4694,-4695,-1632, --1839,-4696,-4697,-2347,-2410,-4698], +[0,-4782], +[0,-8243,-8244,-8245,-3310,-91,-2578,-150,-8246,-723,-41,-3311,-32,-585,-513,-1074,-962,-3031,-8247,-8248,-1103,-593, +-8249,-8250,-69,-2,-8251], [1,3,1062], [0,1063,1064,1065,8], -[0,-469,-864,-2359,-4699,-1107,-2162,-510,-4700,-4701,-2550,-932,-2125,-2177,-2334,-2536,-1004,-4702,-4703,-571,-679,-867, --1376,-1942,-2199,-715,-4704,-4705,-633,-4706,-1354,-1633,-1729,-23,-1793,-4707,-47,-4708,-25,-305,-2232,-4709,-46,-4710, --2104,-2433,-3194,-4711,-40,-4712,-4713,-41,-4714,-960,-2082,-32,-4715,-1458,-4716,-3077,-42,-4717,-4718,-4719, --3408,-4720,-3362,-4721,-3398], -[0,-2322,-4722,-2234], -[0,-4723,-3116,-687,-3161,-3577,-4724,-3162,-4725,-3445,-4726,-4727,-4728,-3205,-4729,-4730,-3186], +[0,-183,-1395,-161,-8252,-28,-80,-59,-2579,-1776,-98,-1,-7,-16,-177,-565,-40,-4783,-4784,-777,-117,-1217,-195,-4,-3104, +-1390,-8253,-8254,-60,-4785,-1652,-2383,-188,-11,-1681,-8255,-450,-8256,-405,-665,-811,-8257,-539,-4786,-1693,-604,-891, +-8258,-21,-4787,-8259,-132,-8260,-180,-346,-156,-4788,-2362,-2580,-995,-137,-8261,-8262,-4789, +-1284,-8263,-2034,-8264,-3200], +[0,-39,-8265,-147], +[0,-8266,-607,-37,-53,-192,-8267,-95,-2087,-46,-3312,-4790,-8268,-2032,-2581,-4791,-1280], [1,3,1067], [0,0,1068,1069,9], -[0,-932,-3469,-4731,-4732,-4733,-4734,-4735,-768,-769,-4736,-1077,-1387,-4737,-2654,-4738], -[0,-4739,-3161,-4740,-3843,-4741], +[0,-1,-2507,-4792,-8269,-1310,-4793,-4794,-1937,-225,-8270,-41,-1654,-8271,-313,-8272], +[0,-8273,-53,-8274,-1008,-8275], [1,3,1071], [0,1072,1073,1074,9], -[0,-1983,-1436,-4742,-4743,-1416], -[0,-1344,-2006,-2344,-932,-2127,-795,-2501,-1942,-4744,-2019,-2257,-2410,-3136,-3037,-3040,-4745,-4746,-2046,-4747,-4748, --86,-4749,-3052,-2044,-4750,-2132,-4751,-1352,-969,-933,-958,-2140,-4752,-4753,-4754,-4755,-409,-940,-962,-967,-350, --4756,-4757,-2113,-3267,-4758,-407,-428,-970,-4759,-4760,-4761,-351,-4762,-410,-4763,-2413,-3307,-935,-4764,-427,-3474, --4765, --3394], -[0,-2006,-2344,-4766,-4767,-4768,-4769,-4770,-4771,-3100], +[0,-465,-3055,-8276,-8277,-1427], +[0,-10,-6,-1126,-1,-14,-483,-18,-4,-8278,-36,-740,-2,-29,-5,-47,-4795,-8279,-3096,-8280,-8281,-49,-1019,-89,-557,-8282, +-417,-8283,-964,-64,-255,-9,-229,-8284,-1311,-1154,-8285,-120,-12,-148,-25,-77,-2582,-1515,-1117,-330,-2088,-153,-19, +-186,-8286,-4796,-8287,-62,-1777,-307,-2583,-4341,-63,-949,-4797,-22,-3206,-8288, +-2503], +[0,-6,-1126,-8289,-8290,-8291,-8292,-8293,-4798,-52], [1,3,1076], [0,1077,1078,1079,5], -[0,-3117,-3901,-1359,-2074,-2079,-2112], -[0,-2832,-23,-3341,-262,-4772,-4773,-4774,-406,-409,-4775,-410,-4776,-4777,-3705,-4778,-3037,-4779,-3040,-3052,-3041,-427, --428,-523,-928,-4780,-932,-940,-941,-956,-958,-962,-967,-969,-970,-1077,-1384,-1449,-1459,-1683,-1729,-1942,-1984,-2006, --2019,-2125,-2214,-2387,-2391,-2392,-2410,-2924,-3924,-2469,-2550], -[0,-2074,-2006,-4781,-3481,-4782,-4783,-1359,-1361,-4784], +[0,-1730,-4665,-965,-327,-4302,-2419], +[0,-314,-11,-1138,-451,-8294,-1516,-4799,-319,-120,-4800,-307,-757,-4801,-3229,-8295,-5,-8296,-47,-89,-419,-22,-19,-194, +-87,-4802,-1,-12,-1221,-485,-9,-148,-25,-64,-186,-41,-674,-78,-1088,-800,-188,-4,-3087,-6,-36,-7,-328,-44,-172,-155,-2, +-2023,-3255,-30,-98], +[0,-327,-6,-4803,-1141,-3313,-2584,-965,-514,-4804], [1,3,1081], [0,1082,1083,1084,4], -[0,-4785,-4786,-989,-4787,-4788,-1588,-1864], -[0,-4062,-351,-4789,-4790,-2127,-2231,-2234,-2410], -[0,-2127,-3862,-1764,-3209,-4791,-4792], +[0,-758,-8297,-786,-1312,-2585,-296,-326], +[0,-238,-62,-2089,-4805,-14,-130,-147,-2], +[0,-14,-107,-159,-381,-910,-425], [1,3,1086], [0,1087,1088,1089,10], -[0,-4785,-3200,-823,-4793,-2114], -[0,-23,-3412,-3326,-350,-4062,-922,-2127,-2231,-4794], -[0,-2127,-3862,-4795,-1764,-3209], +[0,-758,-1137,-323,-4806,-126], +[0,-11,-1140,-207,-77,-238,-1401,-14,-130,-4807], +[0,-14,-107,-446,-159,-381], [1,3,1091], [0,1092,1093,1094,4], -[0,-653,-2359,-754,-2466,-668,-1111,-1650,-1872,-928,-1004,-4796,-1306,-2223,-679,-4797,-4798,-4799,-4800,-1461,-4801, --4802,-4803,-4804,-263,-4805,-4806,-4807,-440,-4808,-264,-262,-4149], -[0,-4809,-2446,-2006,-932,-2125,-4810,-2469,-1942,-2019,-3628,-2410,-4198,-3037,-3738,-1534,-3040,-3041,-1772,-4811,-3617, --3052,-2174,-2278,-4812,-969,-940,-962,-967,-428,-970,-1945,-4813,-427,-4814], -[0,-4810,-4158,-4165,-3816,-4815,-3960,-856], +[0,-845,-161,-368,-104,-20,-204,-72,-1112,-87,-40,-8298,-1422,-739,-117,-8299,-8300,-8301,-8302,-636,-8303,-8304,-8305, +-8306,-1599,-2586,-8307,-8308,-506,-8309,-1905,-451,-4707], +[0,-4808,-125,-6,-1,-7,-4809,-30,-4,-36,-750,-2,-1512,-5,-698,-17,-47,-419,-345,-3314,-264,-89,-122,-882,-8310,-64,-12, +-148,-25,-19,-186,-870,-8311,-22,-911], +[0,-4809,-3272,-753,-1148,-8312,-569,-42], [1,3,1096], [0,1097,1098,1099,5], -[0,-2921,-4816,-4817,-1085,-3649,-4818,-1699,-2476,-4819,-4820,-4821,-4822,-4823,-4824,-4825,-4826,-4827,-4828,-4829, --4830,-4831,-4832,-4833,-4834], -[0,-4835,-3983,-4836,-4837,-3250,-4838,-1313,-1449,-2006,-4839,-2318,-2466,-4840,-4841,-2469,-4842,-4843,-4844,-4845], -[0,-3095,-856,-3438,-4846,-4679,-4847,-2476,-3944], +[0,-4461,-4810,-1778,-1643,-499,-8313,-639,-73,-8314,-8315,-8316,-8317,-8318,-8319,-4811,-8320,-4812,-8321,-8322,-8323, +-8324,-8325,-8326,-8327], +[0,-1313,-366,-3315,-1020,-2495,-912,-855,-78,-6,-8328,-559,-104,-4813,-8329,-30,-3316,-3317,-8330,-8331], +[0,-131,-42,-697,-1314,-1153,-571,-73,-897], [1,3,1101], [0,1102,1103,1104,4], -[0,-4848,-3649,-4825,-4827,-4843], -[0,-4849,-4850,-4851,-1030,-2466,-2469,-2548,-353,-4842], -[0,-3690,-856,-1030,-3438,-4847], +[0,-3318,-499,-4811,-4812,-3317], +[0,-8332,-8333,-8334,-1071,-104,-30,-262,-4086,-3316], +[0,-100,-42,-1071,-697,-571], [1,3,1106], [0,1107,1108,1109,4], -[0,-4852,-4853,-4854,-823,-2792,-4855], -[0,-4856,-4857,-4858,-4859,-4860,-4861,-3035,-3617,-4862,-3621,-523,-617,-652,-767,-1004,-1323,-1654,-4863,-1970,-2253, --2379,-2410], -[0,-4864,-4865,-4866,-4867,-4868,-4869,-4870,-4871,-4872,-4043,-3160,-3100,-475,-2006,-2476,-3440,-4873,-4004,-3634], +[0,-4814,-4815,-4816,-323,-4421,-4817], +[0,-4818,-8335,-8336,-8337,-8338,-8339,-109,-264,-4819,-71,-194,-163,-43,-26,-40,-1424,-3,-4820,-1988,-1125,-33,-2], +[0,-572,-94,-1517,-1518,-913,-4821,-4822,-4823,-4824,-473,-102,-52,-184,-6,-73,-609,-573,-76,-61], [1,3,1111], [0,1112,1113,1114,10], -[0,-4852,-4853,-4854,-4874,-823,-4855], -[0,-4856,-3621,-4875,-4876,-4877,-4878,-4879,-523,-652,-767,-1654,-4863,-4880,-2253,-4881], -[0,-4864,-4865,-4866,-4867,-4868,-4869,-4870,-4871,-4872,-4043,-3160,-3100,-3440,-4873,-4004,-3634,-4881,-4882,-4883], +[0,-4814,-4815,-4816,-8340,-323,-4817], +[0,-4818,-71,-4825,-8341,-4826,-4827,-4828,-194,-43,-26,-3,-4820,-8342,-1125,-1315], +[0,-572,-94,-1517,-1518,-913,-4821,-4822,-4823,-4824,-473,-102,-52,-609,-573,-76,-61,-1315,-8343,-8344], [1,3,1116], [0,1117,1118,7,4], -[0,-4884], -[0,-4885,-4886,-4887,-4888,-4889,-928,-1344,-1449,-1534,-1654,-1788,-1942], +[0,-3319], +[0,-4829,-4830,-4831,-3320,-8345,-87,-10,-78,-17,-3,-15,-4], [1,3,1120], [0,1121,1122,1123,4], -[0,-2006,-2019,-3654,-261,-4890,-4891,-4892], -[0,-2466,-2006,-2361,-1885,-4893,-2019,-3517,-2410,-4228,-2089,-3040,-4894,-3523,-3649,-2795,-1606,-4785,-3525,-2085], -[0,-3671,-856,-2257,-4895,-4896,-4897,-4898,-1599,-4899,-4900,-4901,-3095,-3098,-2006,-2476,-475,-2299,-4902], +[0,-6,-36,-2522,-2291,-2587,-8346,-8347], +[0,-104,-6,-3120,-1450,-4832,-36,-528,-2,-2077,-2416,-47,-4833,-2039,-499,-4422,-2379,-758,-4577,-4303], +[0,-399,-42,-740,-4834,-4835,-8348,-8349,-99,-8350,-2090,-2588,-131,-127,-6,-73,-184,-221,-1779], [1,3,1125], [0,1126,1127,110,6], -[0,-4903,-4904,-3165,-4905,-44,-3946,-195,-4906,-196,-197,-4907,-4908,-4909,-4910,-4911,-4912,-595,-4913,-682,-747,-809, --4914,-4915,-4916,-4917,-4918,-4919,-4920,-4921,-4922,-4923,-4924,-3123,-4925,-4926,-4927,-4928,-4929,-4930,-4931,-4932, --4933,-4934,-4935,-4936,-4937,-4938,-2002,-4939,-4940,-4941,-4942,-4943,-2003,-4944,-4945,-4946,-4947,-2004,-2013,-4948, --4949,-4950, --2053,-4951,-2344,-2345], -[0,-3139,-23,-4952,-4953,-162,-3778,-4954,-4955,-4773,-3562,-4757,-4762,-4763,-4754,-4956,-4957,-4958,-4749,-4760,-4959, --406,-407,-409,-410,-4960,-3136,-4961,-4962,-4963,-4964,-3044,-3803,-4965,-4966,-3040,-4967,-3087,-3052,-4968,-4969, --4970,-4971,-4972,-427,-428,-4973,-4974,-4975,-534,-4976,-668,-674,-767,-4977,-881,-4978,-3808,-932,-933,-940,-948,-952, --958, --959,-962,-963,-969,-970,-4756,-978,-1026,-4979,-1077,-1103,-1107,-1339,-1344,-1352,-1359,-1360,-1376,-1404,-1415,-4980, --1416,-1419,-1421,-4981,-4982,-1437,-1449,-4983,-3134,-1534,-1548,-4984,-1662,-1805,-1942,-1943,-1950,-1955,-1959,-1983, --4985,-4986,-4987,-2006,-2012,-2016,-2017,-2019,-3051,-4988,-4989,-4990,-4991,-2044,-4992,-4993,-2093,-2094,-4994,-4995, --4996,-2177,-2205, --2214,-2281,-4997,-4998,-2282,-4999,-5000,-2334,-2379,-2402,-2410,-5001,-2502,-5002,-5003], +[0,-3321,-4836,-2487,-4837,-90,-1754,-2289,-8351,-2290,-2950,-8352,-8353,-8354,-4838,-8355,-8356,-1925,-8357,-254,-778, +-542,-8358,-8359,-1316,-8360,-3322,-8361,-8362,-8363,-4839,-4840,-8364,-4499,-8365,-8366,-8367,-8368,-4841,-2091,-8369, +-8370,-8371,-4842,-8372,-8373,-8374,-8375,-3089,-8376,-8377,-8378,-2589,-8379,-1989,-2590,-8380,-4843,-8381,-1254,-1115, +-8382,-8383,-8384, +-2415,-2092,-1126,-1704], +[0,-2485,-11,-3323,-8385,-1903,-1147,-3324,-3325,-1516,-1004,-1515,-1777,-2583,-1154,-4844,-8386,-8387,-1019,-4796,-4845, +-319,-153,-120,-307,-3326,-29,-1780,-3327,-2591,-1781,-143,-1006,-8388,-2093,-47,-8389,-1728,-89,-3328,-4846,-8390,-3329, +-1519,-22,-19,-3330,-3331,-8391,-96,-4847,-20,-231,-26,-2094,-1396,-4848,-1293,-1,-255,-12,-246,-847,-9, +-145,-148,-211,-64,-186,-2582,-151,-226,-2592,-41,-340,-28,-413,-10,-964,-965,-3047,-195,-2359,-8,-1782,-1427,-176,-794, +-1520,-2593,-248,-78,-3332,-2029,-17,-23,-1783,-1105,-152,-4,-2406,-683,-436,-362,-465,-3333,-2594,-3334,-6,-2410,-2411, +-2412,-36,-2483,-2595,-3335,-3336,-3337,-557,-3338,-8392,-274,-146,-2596,-2095,-8393,-16,-600, +-328,-182,-3339,-3340,-558,-2597,-4849,-177,-33,-124,-2,-2598,-523,-1784,-8394], [1,3,1129], [0,1130,166,111,4], -[0,-5004,-5005,-5006,-5007,-2741,-5008,-1085,-1548,-5009,-5010,-2355,-2446], +[0,-4850,-4851,-4852,-3341,-2464,-4853,-1643,-23,-4854,-3342,-1128,-125], [1,3,1132], [0,1133,166,111,5], -[0,-5004,-5005], +[0,-4850,-4851], [1,3,1135], [0,1136,1137,111,4], -[0,-5006,-5007,-2741,-5008,-5025,-1085,-1343,-1548,-5026,-1729,-5009,-5027,-5010,-2355,-2446], -[0,-5028,-3044,-3037,-5011,-3738,-519,-865,-1771,-1942,-5012,-2376,-2379,-5013,-2388,-2389,-2410,-2501,-2503,-2509], +[0,-4852,-3341,-2464,-4853,-8406,-1643,-727,-23,-8407,-188,-4854,-8408,-3342,-1128,-125], +[0,-2600,-143,-5,-2599,-698,-51,-210,-65,-4,-4855,-214,-33,-3343,-199,-1268,-2,-18,-93,-1712], [1,3,1139], [0,1140,1141,1142,6], -[0,-1110], -[0,-50,-5029,-5030,-932,-940,-965,-975,-2299,-2410,-2411], -[0,-932,-727,-5031,-2299], +[0,-56], +[0,-357,-2601,-2602,-1,-12,-115,-2341,-221,-2,-84], +[0,-1,-335,-2096,-221], [1,3,1144], [0,1145,1146,1147,5], -[0,-3117,-5032,-5033,-461,-743,-5034,-5035,-1496,-1588,-5036,-5037,-3169,-2213], -[0,-5038,-3983,-365,-5039,-3037,-3172,-5040,-2127,-2299,-2301,-2410,-2466,-2469], -[0,-3161,-5041,-2299,-3176,-2466], +[0,-1730,-4856,-2603,-202,-336,-2097,-3344,-490,-296,-2098,-1785,-2488,-738], +[0,-1317,-366,-1373,-3345,-5,-2489,-4857,-14,-221,-2443,-2,-104,-30], +[0,-53,-4858,-221,-3176,-104], [1,3,1149], [0,1150,1151,1152,5], -[0,-5042,-2814,-823,-1588,-5043], -[0,-2162,-2466,-2299,-3198], -[0,-5044,-5045,-2466,-2299], +[0,-2099,-3148,-323,-296,-8409], +[0,-80,-104,-221,-169], +[0,-2604,-8410,-104,-221], [1,3,1154], [0,1155,1156,1157,5], -[0,-23,-5046,-40,-41,-42,-2699,-5047,-5048], -[0,-534,-1626,-2437,-2501], -[0,-5049,-3839,-2006,-2501,-5050], +[0,-11,-8411,-21,-132,-137,-2021,-8412,-4859], +[0,-96,-1102,-438,-18], +[0,-4860,-265,-6,-18,-3346], [1,3,1159], [0,1160,1161,1162,5], -[0,-5051,-5052], -[0,-5053,-5054,-767,-2410], -[0,-5055,-5056,-525,-2410,-5057,-2501,-5058], +[0,-8413,-3347], +[0,-3348,-8414,-26,-2], +[0,-4861,-8415,-281,-2,-4862,-18,-3349], [1,3,1164], [0,1165,1166,1167,5], -[0,-620,-2997], -[0,-1107,-1168,-1415,-2162,-2125,-1889,-1942,-749,-1248,-2281,-1232,-2410,-3037,-518,-1238,-1930,-2285,-5059,-5060,-5061, --5062], -[0,-3754,-3098,-4902,-5063,-5064,-3482,-4012,-3160,-3100], +[0,-453,-820], +[0,-28,-32,-8,-80,-7,-38,-4,-625,-1418,-182,-2348,-2,-5,-157,-1417,-869,-2437,-4863,-8416,-8417,-8418], +[0,-444,-127,-1779,-2605,-2100,-382,-4683,-102,-52], [1,3,1169], [0,0,37,1170,10], -[0,-5065,-5066,-5067,-5068,-5069,-5070,-5071,-3100,-2410,-3214,-5072,-5073,-5074,-5075,-5076,-5077,-5078,-5079,-5080, --5081,-5082,-5083,-5084], +[0,-1786,-4864,-4865,-8419,-2606,-4866,-8420,-52,-2,-45,-3350,-3351,-4867,-8421,-8422,-8423,-3352,-8424,-8425,-8426,-8427, +-4868,-8428], [1,3,1172], [0,141,142,143,4], [1,3,1174], [0,1175,1176,1177,9], -[0,-44,-737,-2387], -[0,-23,-38,-40,-42,-3244,-190,-3983,-3326,-350,-351,-3561,-3266,-5085,-3037,-427,-428,-539,-932,-940,-5086,-5087,-5088, --5089,-1772,-1942,-2127,-5090,-2200,-5091,-2410], -[0,-5092,-3264,-5093,-5094,-3214,-5095,-3839,-2410], +[0,-90,-846,-44], +[0,-11,-170,-21,-137,-290,-50,-366,-207,-77,-62,-237,-206,-3353,-5,-22,-19,-333,-1,-12,-2101,-1787,-2607,-2102,-345,-4, +-14,-2608,-394,-4869,-2], +[0,-266,-31,-1788,-1789,-45,-8429,-265,-2], [1,3,1179], [0,167,1180,7,4], -[0,-409,-4775,-3040,-3052,-440,-757,-1772,-2006,-2019,-2965,-5097,-5098], +[0,-120,-4800,-47,-89,-506,-582,-345,-6,-36,-1135,-8431,-4870], [1,3,1182], [0,167,1183,1184,5], -[0,-2299,-2300,-3170,-975,-5099,-428,-5098,-365], -[0,-5100,-5101,-2299], +[0,-221,-2442,-3175,-2341,-8432,-19,-4870,-1373], +[0,-8433,-702,-221], [1,3,1186], [0,1187,1188,1189,4], -[0,-5102], -[0,-5103,-3136,-427,-5104,-932,-936,-5105,-940,-967,-968,-1415,-1419,-1441,-1446,-1637,-2375,-2376,-2410], -[0,-5106,-5107,-5108,-5109,-5110,-3100,-3323,-3105], +[0,-8434], +[0,-8435,-29,-22,-8436,-1,-1945,-8437,-12,-25,-67,-8,-176,-2361,-165,-677,-57,-214,-2], +[0,-8438,-8439,-8440,-8441,-1790,-52,-351,-2028], [1,3,1191], [0,1192,1193,1194,5], -[0,-44,-406], -[0,-795,-2410,-5111,-1771], -[0,-3634,-795,-3160,-5092,-4868,-5112,-4867,-4866], +[0,-90,-319], +[0,-483,-2,-1521,-65], +[0,-61,-483,-102,-266,-913,-759,-1518,-1517], [1,3,1196], [0,1197,1198,1199,4], -[0,-4984,-5113,-1863,-1950,-44,-22,-5114,-5115], -[0,-1449,-2410,-5111,-635,-658,-5116,-407,-5117,-5118], -[0,-3634,-3160,-5092,-1449,-5119,-4868,-5112,-4867,-4866], +[0,-1783,-1522,-167,-683,-90,-505,-3354,-4871], +[0,-78,-2,-1521,-301,-1052,-3355,-153,-4872,-8442], +[0,-61,-102,-266,-78,-401,-913,-759,-1518,-1517], [1,3,1201], [0,1202,1203,1204,4], -[0,-5120,-5113,-2745,-1863,-28,-5115], -[0,-1449,-1001,-2127,-2469,-2410,-5111,-5121,-1950,-5122,-350,-5117,-5123], -[0,-3634,-5092,-1415,-1449], +[0,-3356,-1522,-1718,-167,-2286,-4871], +[0,-78,-338,-14,-30,-2,-1521,-1318,-683,-3357,-77,-4872,-4873], +[0,-61,-266,-8,-78], [1,3,1206], [0,1207,1208,1209,10], -[0,-668,-5120,-1418,-1950,-5124], -[0,-1415,-1344,-2006,-932,-1942,-21,-720,-2410,-23,-3136,-3040,-1952,-2034,-44,-2174,-3141,-2052,-5125,-796,-3081,-3153, --3156,-5126], -[0,-3634,-5127,-1415,-2034], +[0,-20,-3356,-857,-683,-3358], +[0,-8,-10,-6,-1,-4,-48,-482,-2,-11,-29,-47,-435,-235,-90,-122,-2030,-287,-8443,-295,-1727,-4505,-1732,-8444], +[0,-61,-4874,-8,-235], [1,3,1211], [0,39,1212,1213,5], -[0,-406,-407,-3040,-3052,-668,-5128,-1418,-5111,-1772,-2006,-2019,-2125,-2410], -[0,-3634,-2006,-3160,-5092,-1449,-5119,-4868,-5112,-4867,-4866], +[0,-319,-153,-47,-89,-20,-4875,-857,-1521,-345,-6,-36,-7,-2], +[0,-61,-6,-102,-266,-78,-401,-913,-759,-1518,-1517], [1,3,1215], [0,0,1216,1217,4], -[0,-1392,-1449,-2006,-1001,-928,-2379,-5129,-2019,-2745,-2410,-5111,-3040,-5116,-5130,-5089,-5131,-5087,-5132,-406,-5133, --5086,-409,-5134,-5088,-407,-5135,-5136,-3626,-948,-5137], -[0,-5138,-5139,-2006,-3634], +[0,-547,-78,-6,-338,-87,-33,-1523,-36,-1718,-2,-1521,-47,-3355,-8445,-2102,-4876,-1787,-8446,-319,-4877,-2101,-120,-8447, +-2607,-153,-4878,-8448,-2046,-246,-8449], +[0,-8450,-8451,-6,-61], [1,3,1219], [0,1220,0,1221,6], -[0,-4603,-5140,-412,-417,-418,-419,-420], -[0,-5141,-3122,-3445,-1334,-3161,-3690], +[0,-3302,-3359,-2965,-4094,-2966,-4095,-4096], +[0,-703,-442,-46,-103,-53,-100], [1,3,1223], [0,0,0,1224,9], -[0,-5141,-4601,-4602,-3578,-3445,-743], +[0,-703,-476,-531,-113,-46,-336], [1,3,1226], [0,0,0,1227,11], -[0,-5141,-4601,-4602,-3578,-3445,-5142,-743], +[0,-703,-476,-531,-113,-46,-914,-336], [1,3,1229], [0,1230,1231,168,4], -[0,-5143], -[0,-652,-2392,-1344,-2410,-3037,-411,-2581,-86,-5144,-3307], +[0,-4879], +[0,-43,-155,-10,-2,-5,-1911,-329,-49,-4880,-63], [1,3,1233], [0,0,0,1234,6], -[0,-5141,-4601,-4602,-3578,-3445,-990], +[0,-703,-476,-531,-113,-46,-848], [1,3,1236], [0,0,0,1237,9], -[0,-5141,-4601,-4602,-3578,-3445,-5145,-5146,-5147], +[0,-703,-476,-531,-113,-46,-8452,-4881,-2609], [1,3,1239], [0,1240,0,1241,4], -[0,-416], -[0,-5141,-4601,-4602,-3578,-3445,-5148,-1389,-5149,-5150], +[0,-4093], +[0,-703,-476,-531,-113,-46,-3360,-2358,-2103,-1155], [1,3,1243], [0,1244,0,1245,6], -[0,-4603,-5151,-422,-423], -[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105], +[0,-3302,-8453,-4098,-4099], +[0,-703,-476,-531,-113,-46,-2085,-111], [1,3,1247], [0,1248,0,1249,4], -[0,-5143,-1640,-5152,-412,-413,-2701,-418,-421], -[0,-5141,-4601,-4602,-3578,-3445,-4616], +[0,-4879,-260,-8454,-2965,-4090,-4387,-2966,-4097], +[0,-703,-476,-531,-113,-46,-1308], [1,3,1251], [0,169,0,1252,8], -[0,-5141,-4601,-4602,-3578,-3445,-3122], +[0,-703,-476,-531,-113,-46,-442], [1,3,1254], [0,1255,0,1256,5], -[0,-1640,-415,-5153], -[0,-5141,-4601,-4602,-3578,-3445,-4616,-2178,-4618], +[0,-260,-4092,-4882], +[0,-703,-476,-531,-113,-46,-1308,-808,-4772], [1,3,1258], [0,1259,0,1260,9], -[0,-1640,-5153], -[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105,-2401,-3214], +[0,-260,-4882], +[0,-703,-476,-531,-113,-46,-2085,-111,-988,-45], [1,3,1262], [0,0,0,1263,6], -[0,-5141,-4601,-4602,-3578,-3445,-4610,-2105,-2435,-5154,-5101], +[0,-703,-476,-531,-113,-46,-2085,-111,-200,-4883,-702], [1,3,1265], [0,0,0,77,5], [1,3,1267], [0,1268,0,1269,9], -[0,-5190,-5191,-5192,-5193,-2387], -[0,-5194,-5195,-3445,-5196,-5197,-3690], +[0,-8455,-8456,-8457,-1801,-44], +[0,-8458,-1802,-46,-1323,-4884,-100], [1,3,1271], [0,1272,1273,1274,11], -[0,-1353,-5198,-5199,-429,-5200,-5201,-5202,-3331], -[0,-469,-1610,-2469,-1942,-5203,-4251,-3040,-1605,-5204,-2429,-4049,-3664,-1618,-5205,-5206,-5207], -[0,-932,-5208,-3784,-2410], +[0,-460,-3361,-2122,-771,-2610,-3362,-4885,-1740], +[0,-183,-227,-30,-4,-4886,-424,-47,-1098,-2611,-348,-652,-105,-862,-3363,-2612,-8459], +[0,-1,-354,-383,-2], [1,3,1276], [0,1277,112,1278,6], -[0,-812,-3782,-5202,-3331,-5209], -[0,-3272,-3217,-3214,-2410,-3215,-4132,-932], +[0,-35,-1505,-4885,-1740,-2613], +[0,-363,-350,-45,-2,-74,-400,-1], [1,3,1280], [0,1281,112,1282,5], -[0,-3782,-189,-3331,-5209], -[0,-932,-2410,-5210], +[0,-1505,-717,-1740,-2613], +[0,-1,-2,-2614], [1,3,1284], [0,1285,1286,1287,8], -[0,-161,-163,-5211,-682,-5212,-5213,-906,-5214,-5215,-1311,-1548,-5216,-1666,-1967,-5217,-4922,-5218,-4929,-4934,-2002, --2004,-2030,-4991,-2055,-2113,-2192,-2489,-5219], -[0,-21,-23,-26,-33,-38,-39,-40,-41,-42,-86,-3307,-407,-409,-3059,-5220,-3044,-5221,-3040,-3052,-427,-428,-5222,-5223,-523, --528,-533,-534,-5224,-540,-5225,-5226,-720,-5227,-778,-796,-915,-916,-2760,-932,-969,-970,-1041,-1077,-1331,-1344,-1415, --5228,-4981,-5229,-1534,-1643,-1667,-1814,-1942,-2000,-2006,-2019,-2049,-2052,-2251,-2275,-2281,-3085, --5230,-5231,-5232,-2410,-2417,-2437,-2501,-2502,-2503], -[0,-2006,-3159,-3095,-3098,-3100,-5233], +[0,-2948,-1598,-8460,-254,-4887,-8461,-1627,-8462,-8463,-963,-23,-4888,-233,-121,-8464,-4839,-8465,-4841,-4842,-3089, +-1254,-1460,-3337,-687,-1117,-1463,-605,-8466], +[0,-48,-11,-209,-578,-170,-449,-21,-132,-137,-49,-63,-153,-120,-2026,-2615,-143,-4889,-47,-89,-22,-19,-8467,-2616,-194, +-91,-86,-96,-8468,-1604,-8469,-8470,-482,-8471,-141,-295,-431,-947,-1720,-1,-64,-186,-271,-41,-342,-10,-8,-8472,-1520, +-8473,-17,-374,-863,-1982,-4,-685,-6,-36,-2414,-287,-134,-154,-182,-2027, +-8474,-8475,-3364,-2,-1130,-438,-18,-523,-93], +[0,-6,-106,-131,-127,-52,-8476], [1,3,1289], [0,1290,0,170,5], -[0,-703,-1436,-1548,-1699,-5234,-2650,-5235,-5236,-5237,-5238,-5239,-1320,-5240,-5241,-5242,-5243,-5244,-5245], +[0,-302,-3055,-23,-639,-8477,-1480,-8478,-8479,-8480,-8481,-8482,-673,-4890,-4891,-8483,-8484,-4892,-4893], [1,3,1292], [0,171,0,1293,5], -[0,-5248,-5249,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[0,-3365,-8487,-441,-1472,-1803,-1804,-6,-106,-131,-127,-102,-24,-1525,-1526,-53,-192,-52], [1,3,1295], [0,1296,0,1297,4], -[0,-5254], -[0,-3167,-5255,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[0,-8488], +[0,-745,-8489,-441,-1472,-1803,-1804,-6,-106,-131,-127,-102,-24,-1525,-1526,-53,-192,-52], [1,3,1299], [0,171,0,1300,4], -[0,-3962,-5256,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[0,-352,-8490,-441,-1472,-1803,-1804,-6,-106,-131,-127,-102,-24,-1525,-1526,-53,-192,-52], [1,3,1302], [0,1303,0,1304,8], -[0,-5257,-436], -[0,-5258,-5259,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[0,-4894,-2968], +[0,-8491,-8492,-441,-1472,-1803,-1804,-6,-106,-131,-127,-102,-24,-1525,-1526,-53,-192,-52], [1,3,1306], [0,0,0,1307,6], -[0,-5260,-5261,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[0,-704,-8493,-441,-1472,-1803,-1804,-6,-106,-131,-127,-102,-24,-1525,-1526,-53,-192,-52], [1,3,1309], [0,1310,1311,1312,5], -[0,-1983,-754,-1004,-2401,-724,-5262,-5263,-5264,-5265,-442], -[0,-1415,-2177,-2375,-2293,-533,-2410,-23,-4198,-3136,-3037,-5266,-2581,-3617,-5267,-4203,-3732,-3697], -[0,-5268,-3100,-5269,-5270,-5271,-3441,-5272], +[0,-465,-368,-40,-988,-367,-4895,-2123,-8494,-3366,-4104], +[0,-8,-16,-57,-123,-86,-2,-11,-1512,-29,-5,-8495,-329,-264,-8496,-1015,-751,-4618], +[0,-8497,-52,-501,-291,-355,-4561,-1527], [1,3,1314], [0,1315,1316,1317,4], -[0,-5273,-5274,-5275,-5276,-5277,-5278,-5279,-5280], -[0,-2384,-2392,-2391,-2466,-1344,-932,-2125,-5281,-2469,-928,-1889,-2910,-2281,-1747,-1874,-5282,-2214,-2302,-2410,-3037, --1534,-1771,-3040,-5283,-5284,-2581,-5285,-5286,-2284,-5287,-5288,-5289,-2411,-5290,-3664,-5291,-2832,-5292,-5293,-2282, --5294,-2970,-5295,-5296,-5297,-4999], -[0,-5065,-5298,-5299,-5300,-5301,-5302,-5303,-5304,-5305,-5067,-5306,-5307,-5308,-5309,-5310,-5069,-5311,-3100,-2410, --5312,-5313,-5314,-5315,-5316,-5072,-5073,-5074,-5317,-5318,-5083], +[0,-3367,-8498,-8499,-8500,-4896,-8501,-8502,-8503], +[0,-82,-155,-172,-104,-10,-1,-7,-4897,-30,-87,-38,-470,-182,-3072,-391,-8504,-328,-2444,-2,-5,-17,-65,-47,-8505,-8506, +-329,-4898,-1156,-1466,-8507,-8508,-8509,-84,-8510,-105,-4899,-314,-8511,-8512,-558,-4900,-1486,-705,-4901,-4902,-2597], +[0,-1786,-4903,-8513,-4904,-8514,-8515,-8516,-8517,-8518,-4865,-8519,-8520,-8521,-8522,-8523,-2606,-8524,-52,-2,-8525, +-8526,-8527,-2617,-2618,-3350,-3351,-4867,-8528,-8529,-4868], [1,3,1319], [0,1320,1321,1322,5], -[0,-753,-2314,-23,-635,-1588,-40,-2082,-5319,-3343,-3344,-3370,-3377], -[0,-4787,-2466,-461,-2892,-1863], -[0,-3100,-2466,-5044,-439], +[0,-158,-1702,-11,-301,-296,-21,-346,-4905,-2498,-2499,-4548,-4549], +[0,-1312,-104,-202,-380,-167], +[0,-52,-104,-2604,-2969], [1,3,1324], [0,1325,1326,1327,6], -[0,-23,-5320,-5321,-5322,-4776,-2041], -[0,-5323,-2006,-2019,-2923,-2892], -[0,-525,-5324,-2006,-2041,-2466,-5044], +[0,-11,-8530,-4906,-2124,-757,-686], +[0,-2619,-6,-36,-994,-380], +[0,-281,-4907,-6,-686,-104,-2604], [1,3,1329], [0,1330,1331,1332,5], -[0,-429,-1026,-2411,-2478], -[0,-5325,-3037,-932,-980,-999,-5326,-1942,-2392,-2410,-2469,-2476], -[0,-2476,-5327,-5328,-932,-2410], +[0,-771,-226,-84,-990], +[0,-2125,-5,-1,-785,-118,-2126,-4,-155,-2,-30,-73], +[0,-73,-8531,-8532,-1,-2], [1,3,1334], [0,1335,1336,1337,10], -[0,-469,-470,-5329,-1335,-5330,-1851,-3122,-2187,-5331,-3434,-2548], -[0,-1004,-1654,-2250,-2293], -[0,-1004,-3438,-4847,-856], +[0,-183,-773,-2620,-633,-8533,-553,-442,-393,-3368,-3205,-262], +[0,-40,-3,-97,-123], +[0,-40,-697,-571,-42], [1,3,1339], [0,1340,1341,113,5], -[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5339,-5340,-747,-823,-5341,-909,-5342,-5343,-5344, --3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, --4942,-2003,-4944,-2004,-2013,-2965,-2028,-5350,-5351,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5354, --5355,-2427,-2429, --5356,-2435,-5357,-5358,-5359], -[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3803,-3040,-3087,-3052,-5364,-5365,-5366,-932,-4597,-1026,-1031, --5367,-5368,-1344,-1534,-1942,-1944,-1945,-2006,-2019,-2281,-2379,-2410,-2469,-5369,-5370], +[0,-3369,-3370,-1004,-245,-251,-424,-2621,-2622,-2623,-3371,-254,-2624,-4908,-778,-323,-3372,-781,-1805,-2625,-2626,-499, +-1483,-1649,-1958,-726,-3373,-792,-1425,-2127,-101,-1668,-2627,-2128,-1243,-554,-1762,-3374,-436,-685,-2091,-2589,-1989, +-2590,-1254,-1115,-1135,-1689,-4909,-3375,-1691,-3376,-736,-2129,-906,-522,-599,-806,-80,-1749,-2628,-2629,-135,-348, +-1157,-200,-3377,-502,-3378], +[0,-49,-63,-2047,-3379,-2130,-421,-3380,-5,-1806,-1006,-47,-1728,-89,-3381,-3382,-4910,-1,-2573,-226,-788,-2630,-3383,-10, +-17,-4,-1113,-870,-6,-36,-182,-33,-2,-30,-2131,-4911], [0,0,0,7,9], [1,3,1344], [0,0,1345,1346,4], -[0,-3037,-427,-428,-932,-934,-958,-2125,-2127,-2142,-2410], -[0,-3445,-5373,-5374,-5375,-5376,-5377,-5378], +[0,-5,-22,-19,-1,-185,-9,-7,-14,-305,-2], +[0,-46,-8534,-3385,-1807,-3386,-8535,-3387], [1,3,1348], [0,1349,1350,1351,4], -[0,-5379], -[0,-23,-3204,-40,-43,-5380,-5381,-3621,-3037,-507,-708,-5382,-932,-1471,-1475,-1476,-1479,-5383,-1480,-1482,-1486,-1654, --1771,-1788,-1810,-2125,-2127,-2128,-5384,-2131,-2137,-2139,-2141,-5385,-2379,-5386,-2410], -[0,-5387,-5388,-5389,-997,-5390,-5391,-5392,-5393,-5394,-5395,-5396], +[0,-8536], +[0,-11,-398,-21,-174,-3388,-8537,-71,-5,-280,-149,-3389,-1,-79,-138,-588,-213,-8538,-1090,-187,-731,-3,-65,-15,-592,-7, +-14,-275,-4912,-466,-347,-1259,-1260,-4913,-33,-8539,-2], +[0,-653,-1158,-827,-410,-8540,-3390,-8541,-8542,-3391,-2631,-706], [1,3,1353], [0,1354,172,1355,5], -[0,-1641,-5397], -[0,-5398,-5399,-5400,-459], +[0,-344,-2632], +[0,-1528,-4914,-4915,-1044], [1,3,1357], [0,1358,114,1359,5], -[0,-510,-615,-1548,-1671,-2071], -[0,-5401,-460,-3578], +[0,-59,-114,-23,-375,-688], +[0,-356,-2970,-113], [1,3,1361], [0,1362,0,7,10], -[0,-461], +[0,-202], [1,3,1364], [0,1365,1366,1367,8], -[0,-523,-668,-719,-1039,-1077,-1376,-1816,-5402,-2205], -[0,-350,-4062,-351,-3266,-5403,-3048,-5404,-3049,-3037,-2125,-2127,-4063,-5405,-2142,-5232,-2387,-2388,-2410], -[0,-687,-463,-2476,-2006,-5406,-5407,-2410,-3967], +[0,-194,-20,-58,-1637,-41,-195,-325,-8543,-600], +[0,-77,-238,-62,-206,-8544,-191,-8545,-2025,-5,-7,-14,-900,-3392,-305,-3364,-44,-199,-2], +[0,-37,-4105,-73,-6,-1808,-2633,-2,-353], [1,3,1369], [0,0,1370,1371,4], -[0,-664,-1351,-1654,-1942,-2125], -[0,-5408,-1636,-5409,-2432], +[0,-13,-459,-3,-4,-7], +[0,-915,-1104,-1529,-1705], [1,3,1373], [0,0,27,1374,5], -[0,-5410,-465,-5411,-5412,-5413], +[0,-8546,-772,-1809,-3393,-4916], [1,3,1376], [0,1377,1378,1379,8], -[0,-5414,-5415,-812,-5416,-3222], -[0,-3198,-5417,-3620,-3037,-3664,-2210,-2379,-2392,-2469], -[0,-5418,-5419,-763,-5420,-2166,-4043], +[0,-4917,-8547,-35,-8548,-1491], +[0,-169,-8549,-2517,-5,-105,-27,-33,-155,-30], +[0,-1530,-8550,-1058,-3394,-987,-473], [0,44,15,16,6], [1,3,1382], [0,1383,1384,1385,4], -[0,-5450,-5451,-5452,-633,-5453,-724,-812,-5454,-5455,-1004,-5456,-5457,-1336,-5458,-1442,-5459,-5460,-5461,-1646,-5462, --5463,-5464,-2062,-5465,-2188,-2194,-5466,-5467,-5468,-2446,-2491], -[0,-5469,-767,-1274,-1788,-5470,-2250,-2322,-2331], -[0,-468,-4865,-5471,-2319,-2322,-3634], +[0,-8551,-8552,-8553,-60,-8554,-367,-35,-4931,-4932,-40,-4933,-4934,-586,-3411,-101,-4935,-4936,-8555,-88,-8556,-8557, +-8558,-198,-8559,-1123,-737,-8560,-8561,-8562,-125,-742], +[0,-8563,-26,-1420,-15,-4937,-97,-39,-379], +[0,-718,-94,-1324,-85,-39,-61], [1,3,1387], [0,1388,1389,1390,5], -[0,-1025,-5472,-5473,-5474], -[0,-5475,-350,-4062,-351,-3267,-3035,-3621,-3037,-5476,-427,-428,-470,-633,-664,-767,-809,-5477,-932,-940,-1107,-1344, --5478,-1430,-1440,-5479,-1471,-1475,-1482,-1534,-1654,-5480,-1729,-1788,-1942,-5481,-2127,-2140,-2379,-5482,-2410,-5483], -[0,-4182,-4058,-2451,-3926,-1463,-1456,-5484,-5485], +[0,-952,-8564,-4938,-3412], +[0,-4939,-77,-238,-62,-330,-109,-71,-5,-8565,-22,-19,-773,-60,-13,-26,-542,-8566,-1,-12,-28,-10,-4940,-3054,-968,-4941, +-79,-138,-187,-17,-3,-8567,-188,-15,-4,-8568,-14,-229,-33,-3413,-2,-8569], +[0,-1304,-331,-439,-423,-796,-635,-4942,-8570], [1,3,1392], [0,1393,1394,1395,4], -[0,-469], -[0,-5475,-3136,-3037,-427,-428,-469,-932,-940,-1344,-1415,-5479,-1534,-1942,-2375,-2410], -[0,-5486,-3815,-3276,-3926], +[0,-183], +[0,-4939,-29,-5,-22,-19,-183,-1,-12,-10,-8,-4941,-17,-4,-57,-2], +[0,-8571,-2542,-566,-423], [0,45,15,16,10], [1,3,1398], [0,34,1399,1400,6], -[0,-1813,-5487], -[0,-472], +[0,-551,-4943], +[0,-4107], [1,3,1402], [0,1403,1404,1405,4], -[0,-5488,-2438], -[0,-5489,-1654,-1788,-2416], -[0,-5490,-5491,-5492], +[0,-8572,-3124], +[0,-8573,-3,-15,-112], +[0,-8574,-8575,-8576], [1,3,1407], [0,0,1408,1409,6], -[0,-2162], -[0,-775,-2162,-3160,-3576,-3577,-5493,-5494], +[0,-80], +[0,-24,-80,-102,-649,-192,-654,-8577], [1,3,1411], [0,0,0,173,5], [1,3,1413], [0,0,0,1414,5], -[0,-475,-3161,-4865,-5176,-5495], +[0,-184,-53,-94,-500,-1810], [1,3,1416], [0,1417,0,1418,5], -[0,-5496,-5497,-7,-8,-9,-5498,-5499,-510,-518,-668,-722,-778,-784,-812,-5500,-834,-5501,-5502,-5503,-1017,-1041,-5504, --1077,-5505,-1107,-1331,-1369,-1376,-5506,-1455,-1490,-1492,-1521,-1522,-1548,-1645,-5507,-1743,-1758,-1812,-1816,-1888, --1908,-2000,-2092,-2114,-2125,-2148,-2163,-5508,-2177,-5509,-2233,-5510,-2275,-2286,-2287,-2330,-2346,-2410,-2437,-2488, --2501, --2505,-2508,-2510,-2567], -[0,-475,-477], +[0,-8578,-8579,-1898,-1899,-1900,-8580,-8581,-59,-157,-20,-456,-141,-369,-35,-3414,-203,-4944,-4945,-8582,-851,-271,-1159, +-41,-2634,-28,-342,-1080,-195,-4946,-859,-637,-517,-219,-1092,-23,-92,-8583,-1242,-463,-1247,-325,-641,-493,-685,-4304, +-126,-7,-1261,-467,-3415,-16,-2635,-880,-8584,-154,-396,-1701,-603,-469,-2,-438,-1133,-18, +-173,-524,-1476,-2456], +[0,-184,-4109], [1,3,1420], [0,0,0,1421,4], -[0,-5175,-3118,-4865,-5495,-3119,-5511,-3098], +[0,-1320,-1731,-94,-1810,-996,-2636,-127], [1,3,1423], [0,0,1424,1425,9], -[0,-3542,-1202,-5512,-1654,-2343], -[0,-5513,-5514,-5515,-5516,-5517,-5518,-5519,-5520,-5521,-5522,-5523,-5524,-5525,-5526,-5527,-5528,-5529,-5530,-5531, --5532,-5533,-687,-5534,-712,-714,-5535,-4376,-3958,-4000,-5536,-5537,-5538,-5539,-5540,-5541,-5542,-5543,-5544,-1496, --1573,-5545,-5546,-5547,-5548,-5549,-5550,-5551,-5552,-2265,-5553,-3770,-3974,-5554,-3975,-5555,-5556,-2547,-5557], +[0,-1746,-671,-8585,-3,-885], +[0,-1325,-243,-8586,-8587,-8588,-8589,-8590,-8591,-8592,-8593,-8594,-8595,-8596,-8597,-8598,-8599,-8600,-8601,-8602,-8603, +-8604,-37,-8605,-217,-133,-707,-1770,-299,-201,-8606,-8607,-616,-4947,-8608,-8609,-8610,-4948,-8611,-490,-258,-384,-8612, +-4949,-8613,-760,-267,-8614,-4950,-168,-230,-568,-178,-193,-445,-8615,-8616,-647,-8617], [1,3,1427], [0,1428,115,1429,6], -[0,-5558], -[0,-5514,-3974,-4000,-687,-2265,-3975,-5559,-5560,-5538,-5550,-2547,-1573,-5545,-3958,-5554,-5561,-5562,-5412,-707,-5563, --5564,-3965,-5565,-685,-5566,-5567,-5568], +[0,-828], +[0,-243,-178,-201,-37,-168,-445,-503,-4951,-616,-267,-647,-258,-384,-299,-193,-4952,-2637,-3393,-334,-2133,-2134,-2059, +-8618,-1933,-3416,-8619,-8620], [1,3,1431], [0,0,1432,1433,10], -[0,-2541,-519,-2384,-480], -[0,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-3958,-5554,-5569,-5570, --5571,-5572,-4004,-5573,-5574], +[0,-34,-51,-82,-841], +[0,-243,-568,-217,-707,-133,-178,-201,-37,-168,-445,-503,-616,-760,-1325,-267,-647,-299,-193,-1021,-1160,-8621,-532,-76, +-655,-1022], [1,3,1435], [0,0,1436,1437,5], -[0,-2541,-519,-2384,-5575], -[0,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958,-5554], +[0,-34,-51,-82,-8622], +[0,-243,-568,-217,-707,-133,-178,-201,-37,-168,-445,-503,-616,-760,-1325,-267,-647,-258,-384,-299,-193], [1,3,1439], [0,0,0,1440,6], -[0,-5514,-714,-687], +[0,-243,-133,-37], [1,3,1442], [0,1443,1444,1445,11], -[0,-4903,-5576,-44,-3946,-3763,-5577,-5578,-5579,-513,-786,-809,-5580,-5581,-1548,-1549,-2113,-4951,-5582,-3768,-2345, --5583,-2489], -[0,-21,-23,-26,-34,-35,-36,-5584,-37,-3396,-5585,-3381,-38,-3382,-3412,-39,-40,-42,-86,-3307,-305,-3326,-3732,-3048,-3136, --5586,-3164,-5587,-3661,-3037,-5588,-427,-428,-439,-4837,-5589,-5590,-5591,-5592,-441,-4838,-5593,-4817,-5594,-461,-5595, --518,-523,-528,-533,-534,-538,-5596,-539,-5597,-661,-668,-674,-708,-5339,-5598,-719,-5599,-767, --778,-779,-5600,-807,-5601,-5602,-4978,-5603,-928,-3808,-929,-932,-940,-957,-958,-959,-963,-5604,-967,-980,-1026,-4979, --1077,-1107,-1111,-1125,-1168,-1174,-5605,-1261,-1331,-1344,-5606,-5607,-1415,-1419,-1421,-5608,-5609,-1439,-5610,-3025, --1521,-1522,-5611,-5612,-1534,-5613,-1600,-1601,-1602,-1603,-5614,-1610,-5615,-1643,-1646,-1650,-1662,-1666,-1779,-1889, --1908,-1942, --1952,-1955,-1959,-2000,-4242,-2098,-5616,-5617,-3868,-5618,-2125,-5619,-5620,-2177,-2218,-5621,-2275,-2281,-4997,-4998, --2282,-4999,-2284,-2335,-2347,-2355,-2375,-2376,-2392,-2402,-2410,-5622,-2427,-2437,-5001,-2466,-2476,-5623,-5624,-2478, --2480,-5625,-2481,-5626,-2483,-2484,-5627,-2486,-2501,-2502,-2503,-2505,-2508,-5628,-5002], -[0,-2476,-3944,-3158,-3099,-485,-5629,-3095,-3098,-3160,-3161,-3100], +[0,-3321,-8623,-90,-1754,-3237,-4953,-8624,-4954,-1917,-722,-542,-8625,-4955,-23,-461,-1117,-2092,-4956,-1750,-1704,-8626, +-605], +[0,-48,-11,-209,-1039,-931,-300,-1326,-1040,-2504,-1327,-2036,-170,-2037,-1140,-449,-21,-137,-49,-63,-665,-207,-751,-191, +-29,-4957,-1279,-4958,-896,-5,-8627,-22,-19,-2969,-1020,-3417,-4959,-8628,-8629,-1600,-912,-2638,-1778,-4960,-202,-3418, +-157,-194,-91,-86,-96,-2975,-4961,-333,-8630,-1613,-20,-231,-149,-2624,-3419,-58,-8631,-26, +-141,-1214,-8632,-1061,-8633,-4962,-4848,-4963,-87,-1293,-484,-1,-12,-723,-9,-145,-211,-8634,-25,-785,-226,-2592,-41,-28, +-204,-670,-32,-585,-4964,-1419,-342,-10,-8635,-4965,-8,-176,-794,-8636,-8637,-967,-4966,-4484,-219,-1092,-4967,-8638,-17, +-4968,-220,-971,-1239,-1097,-4969,-227,-3420,-374,-88,-72,-1105,-233,-1243,-38,-493,-4, +-435,-436,-362,-685,-906,-599,-1811,-4970,-3246,-4971,-7,-4972,-8639,-16,-288,-4973,-154,-182,-3339,-3340,-558,-2597, +-1466,-397,-69,-1128,-57,-214,-155,-124,-2,-8640,-135,-438,-2598,-104,-73,-8641,-8642,-990,-3129,-8643,-1132,-8644,-888, +-2008,-1531,-1709,-18,-523,-93,-173,-524,-2639,-1784], +[0,-73,-897,-1733,-441,-935,-8645,-131,-127,-102,-53,-52], [1,3,1447], [0,1448,1449,110,4], -[0,-703,-809,-44,-3165,-2345,-4903,-5630,-5631,-5632,-5633,-4910,-5634,-5635,-4904,-5636,-5637,-5638,-5639,-5640,-5641, --5642,-5643,-5644,-5645,-5646,-5647,-5648,-5649,-5650,-5651,-5652,-5653,-5654,-5655,-5656,-5657,-5658,-4905,-5659,-5660, --5661,-5662,-5663,-5664,-5665,-4951,-5666,-5667], -[0,-469,-1816,-2592,-2323,-2392,-881,-1107,-1415,-1805,-523,-668,-4977,-1344,-1359,-1392,-1449,-5668,-1880,-2006,-2193, --865,-932,-1031,-1437,-1548,-2093,-2125,-5669,-2177,-464,-5595,-5670,-1955,-2402,-2501,-781,-1077,-1103,-4980,-1646, --1662,-1942,-5671,-5002,-767,-5672,-1026,-3134,-4984,-1978,-4985,-2019,-5673,-5674,-1729,-1888,-2094,-2095,-2205,-2214, --2410,-3136,-3037, --5346,-1339,-1534,-2026,-4994,-162,-4647,-5675,-3040,-5676,-5677,-4986,-5678,-5679,-3744,-305,-4964,-3044,-3199,-4973, --1737,-1950,-5680,-2101,-2581,-3778,-5681,-5682,-5683,-4960,-3803,-4972,-3649,-4982,-5684,-4954,-3562,-5685,-3048,-4961, --5686,-3624,-5687,-3051,-4773,-5688,-3052,-1404,-1416,-5689,-2044,-4992,-2090,-3139,-5690,-3746,-4106,-5691,-3745,-3747, --283,-5692,-959,-1352, --4988,-5001,-5693,-1292,-4981,-5694,-406,-4974,-952,-1421,-4989,-5695,-409,-962,-1419,-5696,-5697,-5698,-4983,-2502, --4971,-3459,-5699,-407,-970,-5700,-4963,-5701,-5702,-5703,-410,-2914,-5704,-4968,-5705,-4995,-4990,-4962,-5706,-4955, --5707,-5708], +[0,-302,-542,-90,-2487,-1704,-3321,-8646,-8647,-8648,-8649,-4838,-8650,-8651,-4836,-8652,-8653,-8654,-8655,-8656,-8657, +-8658,-8659,-8660,-8661,-8662,-8663,-8664,-8665,-4974,-8666,-8667,-8668,-8669,-8670,-8671,-8672,-8673,-4837,-8674,-8675, +-8676,-8677,-8678,-8679,-8680,-2092,-8681,-8682], +[0,-183,-325,-2016,-312,-155,-1396,-28,-8,-152,-194,-20,-2094,-10,-965,-547,-78,-3421,-804,-6,-689,-210,-1,-788,-248,-23, +-274,-7,-4975,-16,-1913,-3418,-2640,-436,-124,-18,-1059,-41,-340,-1782,-88,-1105,-4,-4976,-1784,-26,-1812,-226,-2029, +-1783,-160,-3333,-36,-1532,-3422,-188,-641,-146,-522,-600,-328,-2,-29,-5, +-2127,-413,-17,-3093,-2596,-1903,-614,-3423,-47,-1813,-8683,-2594,-4977,-8684,-2530,-665,-1781,-143,-140,-3330,-1445, +-683,-4978,-806,-329,-1147,-4979,-3424,-4980,-3326,-1006,-1519,-499,-2593,-8685,-3324,-1004,-2641,-191,-1780,-761,-2518, +-4981,-2483,-1516,-4982,-89,-2359,-1427,-4983,-557,-3338,-736,-2485,-8686,-2531,-1300,-8687,-3233,-2532,-1202,-4984,-145, +-964, +-2595,-2598,-4985,-726,-1520,-3425,-319,-3331,-847,-794,-3335,-4986,-120,-148,-176,-8688,-4987,-4988,-3332,-523,-3329, +-1493,-4989,-153,-186,-8689,-2591,-4990,-3426,-8690,-307,-3152,-4991,-3328,-8691,-2095,-3336,-3327,-3427,-3325,-3428, +-4992], [1,3,1451], [0,1452,0,7,5], -[0,-1805], +[0,-152], [0,67,15,16,4], [1,3,1455], [0,1456,1457,1458,9], -[0,-3278,-3279,-3299,-3283,-3288,-5709,-5710,-3304,-3305,-5711,-5712,-5713,-5714,-1537,-3297], -[0,-3285,-3286,-3287,-5715,-3302,-3303,-86,-3307,-5716,-3308,-3309,-5717,-3310,-3311,-3312,-5718,-5719,-617,-823,-932, --940,-985,-1004,-1077,-1344,-1442,-1534,-1685,-1724,-1889,-2125,-2127,-5720,-4753,-2210,-2359,-2410,-3313,-2416,-5721, --2446], -[0,-4902,-5722,-3690,-488,-856,-5723,-1789], +[0,-4521,-4522,-4528,-4523,-4527,-8692,-8693,-4531,-4532,-8694,-8695,-8696,-8697,-3061,-3185], +[0,-4524,-4525,-4526,-8698,-4529,-4530,-49,-63,-8699,-4533,-4534,-8700,-3186,-893,-1283,-8701,-8702,-163,-323,-1,-12,-370, +-40,-41,-10,-101,-17,-1441,-3069,-38,-7,-14,-8703,-1311,-27,-161,-2,-4535,-112,-3429,-125], +[0,-1779,-8704,-100,-2972,-42,-8705,-1680], [1,3,1460], [0,1461,1462,174,4], -[0,-620,-719,-5724,-3808,-5725,-1077,-1107,-1276,-1351,-1437,-5726,-1548,-1600,-1753,-1955,-2177,-2275,-2501,-2503,-2520], -[0,-3044,-3621,-3037,-932,-5727,-943,-958,-966,-968,-1654], +[0,-453,-58,-8706,-1293,-8707,-41,-28,-247,-459,-248,-3430,-23,-220,-285,-436,-16,-154,-18,-93,-564], +[0,-143,-71,-5,-1,-8708,-83,-9,-75,-67,-3], [1,3,1464], [0,1465,1466,1467,4], -[0,-5729,-888,-2177,-2433,-2550], -[0,-4370,-3037,-3199,-3041,-519,-1077,-2410], -[0,-489,-1599,-5730,-3690,-4100,-856,-3262,-5731,-687,-5732,-3958,-3691,-5728,-5733,-5734], +[0,-8709,-337,-16,-604,-98], +[0,-2570,-5,-140,-419,-51,-41,-2], +[0,-1376,-99,-3431,-100,-700,-42,-116,-2642,-37,-762,-299,-422,-1161,-8710,-8711], [1,3,1469], [0,1470,1471,1472,5], -[0,-812,-5735,-1730,-1465,-2456], -[0,-664,-665,-1654,-2210,-2211], -[0,-5736,-5737,-5738,-5739,-5740,-5741], +[0,-35,-1533,-1107,-797,-2007], +[0,-13,-239,-3,-27,-190], +[0,-4993,-1328,-8712,-4994,-8713,-3432], [1,3,1474], [0,1475,0,7,4], -[0,-5742,-5743,-3320,-5744,-2387], +[0,-4995,-3433,-4537,-3434,-44], [1,3,1477], [0,1478,0,1479,8], -[0,-5745,-5742,-494,-5743,-5746,-5744,-2387,-5747], -[0,-3217,-4795,-5748,-3214,-5749,-1764,-2006], +[0,-4996,-4995,-2973,-3433,-3435,-3434,-44,-2643], +[0,-350,-446,-4997,-45,-8714,-159,-6], [1,3,1481], [0,1482,1483,7,6], -[0,-5743,-5744,-2387,-5750], -[0,-5751,-3136,-3037,-1122,-1123,-1415,-2125,-2127,-2375,-2388,-2410], +[0,-3433,-3434,-44,-8715], +[0,-4998,-29,-5,-371,-956,-8,-7,-14,-57,-199,-2], [1,3,1485], [0,1486,1487,7,6], -[0,-494,-5752,-2387], -[0,-5751,-3136,-5753,-1037,-1122,-1123,-1415,-5754,-2125,-2127,-2375,-2388,-2410], +[0,-2973,-8716,-44], +[0,-4998,-29,-8717,-3012,-371,-956,-8,-8718,-7,-14,-57,-199,-2], [1,3,1489], [0,0,1490,1491,5], -[0,-708,-756,-5755,-796,-1104,-1405,-1654,-1657,-1663,-1788,-2174,-2449], -[0,-5756,-1847,-3590,-2444,-3966,-3551,-3209,-5757,-4792,-3994], +[0,-149,-55,-8719,-295,-3019,-66,-3,-589,-1440,-15,-122,-1707], +[0,-3436,-249,-208,-136,-144,-365,-381,-4999,-425,-306], [1,3,1493], [0,1494,1495,1496,4], -[0,-2959,-5758,-5759,-5760,-5761,-523,-615,-5762,-1548,-1582,-1666,-1667,-5763,-2177,-5764,-2531], -[0,-5765,-5766,-2860,-3470,-3471,-5767,-3044,-3621,-3037,-5768,-3199,-4204,-4733,-664,-665,-741,-1654,-1942,-2174,-2210, --2379,-2410,-2542], -[0,-5769,-5271,-3634,-4864,-3162,-5770], +[0,-3163,-1329,-8720,-8721,-5000,-194,-114,-8722,-23,-434,-233,-863,-3437,-16,-5001,-205], +[0,-8723,-3438,-2477,-297,-298,-3439,-143,-71,-5,-8724,-140,-475,-1310,-13,-239,-1212,-3,-4,-122,-27,-33,-2,-2012], +[0,-2135,-355,-61,-572,-95,-8725], [1,3,1498], [0,1499,1500,1501,10], -[0,-5771,-5772,-5773,-5038,-5774,-5775,-5776,-5777,-5778,-5779,-5780,-5781,-5782,-5783,-5784,-5785,-5786,-5787,-5788, --5789,-5790,-5791,-5792], -[0,-1788,-1722,-1654,-2210,-932,-1942,-2410,-5793,-3037,-3621,-4372,-3199,-966,-428,-5794,-427], -[0,-5795,-5796,-5797,-5798,-5799,-5800,-5801,-5802,-5803,-5804,-5805], +[0,-8726,-5002,-8727,-1317,-8728,-5003,-8729,-5004,-5005,-3440,-5006,-8730,-2644,-8731,-8732,-8733,-8734,-8735,-8736, +-8737,-8738,-5007,-8739], +[0,-15,-197,-3,-27,-1,-4,-2,-8740,-5,-71,-279,-140,-75,-19,-8741,-22], +[0,-8742,-8743,-8744,-8745,-5008,-1534,-1162,-8746,-8747,-5009,-2645], [1,3,1503], [0,1504,1505,1506,5], -[0,-5806,-5807,-5808,-5809,-5810,-5811], -[0,-5812,-3136,-3037,-427,-428,-5813,-932,-940,-948,-958,-967,-1122,-1415,-1942,-5814,-1944,-5815,-2251,-2375,-2379,-2410], -[0,-5816,-5817,-3445,-5818,-1122,-5819,-3967,-2410,-5820], +[0,-8748,-8749,-8750,-8751,-5010,-8752], +[0,-8753,-29,-5,-22,-19,-3441,-1,-12,-246,-9,-25,-371,-8,-4,-8754,-1113,-5011,-134,-57,-33,-2], +[0,-8755,-1330,-46,-5012,-371,-2136,-353,-2,-8756], [1,3,1508], [0,1509,1510,1511,4], -[0,-5821,-510,-5822,-2062,-5823,-2325,-5824], -[0,-5825,-664,-1446,-1650,-1654,-2125,-5826,-2323,-2555], -[0,-5409,-501,-5827,-5408,-2323], +[0,-8757,-59,-5013,-198,-8758,-884,-8759], +[0,-8760,-13,-165,-72,-3,-7,-8761,-312,-992], +[0,-1529,-842,-252,-915,-312], [1,3,1513], [0,0,1514,7,8], -[0,-664,-1415,-1942], +[0,-13,-8,-4], [1,3,1516], [0,0,1517,1518,10], -[0,-32,-5828,-932,-1654,-1788], -[0,-687,-3215,-503,-5829,-4377], +[0,-156,-3442,-1,-3,-15], +[0,-37,-74,-1204,-916,-613], [0,45,15,16,6], [1,3,1521], [0,1522,1523,1524,6], -[0,-655,-5830,-5831,-5832], -[0,-5833,-5834,-516,-5835,-932,-993,-1065,-5836,-1365,-1777,-1788,-1794,-2156,-2322], -[0,-5837,-5838,-5839,-5840,-5396,-3582,-5841,-5842,-5843], +[0,-939,-2646,-2647,-8762], +[0,-3443,-244,-269,-533,-1,-1069,-954,-2648,-212,-273,-15,-1245,-189,-39], +[0,-5014,-8763,-708,-8764,-706,-567,-2137,-5015,-3444], [1,3,1526], [0,0,14,1527,6], -[0,-5839,-506,-5844,-5845,-5846,-5847], +[0,-708,-1046,-8765,-477,-917,-5016], [1,3,1529], [0,1530,1531,1532,5], -[0,-2444,-5848,-655,-5849,-1797], -[0,-2322,-468,-753,-767,-21,-5850,-23,-1798,-40,-3335], -[0,-507,-4865], +[0,-136,-5017,-939,-2138,-591], +[0,-39,-718,-158,-26,-48,-8766,-11,-1109,-21,-3188], +[0,-280,-94], [1,3,1534], [0,0,1535,7,4], -[0,-2322,-1032], +[0,-39,-1225], [1,3,1537], [0,1538,1539,1540,4], -[0,-820,-5851,-5852,-1794,-5853,-5854], -[0,-633,-1405,-1654,-1939], -[0,-507,-5855,-5856,-509,-3440,-1001,-1003,-2198,-5857,-4679,-4873,-4004,-3634,-3636,-5858,-5119], +[0,-1943,-8767,-3445,-1245,-8768,-8769], +[0,-60,-66,-3,-234], +[0,-280,-1163,-2649,-843,-609,-338,-411,-81,-8770,-1153,-573,-76,-61,-1145,-3446,-401], [1,3,1542], [0,0,1543,1544,4], -[0,-1788,-664,-2148,-1446,-1471,-1654,-2550,-932,-2127,-2177,-674,-571,-615,-1077,-589,-633,-23,-925,-1482,-5859,-566, --1472,-5860,-559,-5861,-5862,-32,-1483,-539,-1487,-1479,-5863,-2137,-535,-5864,-549], -[0,-510,-5865,-3551,-3590], +[0,-15,-13,-1261,-165,-79,-3,-98,-1,-14,-16,-231,-777,-114,-41,-110,-60,-11,-948,-187,-1814,-429,-860,-5018,-321,-8771, +-8772,-156,-414,-333,-861,-213,-3447,-347,-270,-8773,-1207], +[0,-59,-2139,-365,-208], [1,3,1546], [0,0,1547,1548,9], -[0,-3037,-5866,-2319,-2379,-2410], -[0,-510,-5867,-3184,-1334,-5868,-5149,-1961,-3844], +[0,-5,-2650,-85,-33,-2], +[0,-59,-656,-349,-103,-8774,-2103,-171,-216], [1,3,1550], [0,1551,1552,7,4], -[0,-2122], -[0,-519,-932,-1942,-1729,-1939,-5869,-1534,-969,-933,-958,-940,-962], +[0,-1995], +[0,-51,-1,-4,-188,-234,-8775,-17,-64,-255,-9,-12,-148], [1,3,1554], [0,0,1555,1556,4], -[0,-23,-5870,-40,-42,-5871,-3136,-533,-756,-1415,-1534,-1763,-5872,-5873,-1939,-1942,-2379,-2410], -[0,-2451,-5874,-510], +[0,-11,-829,-21,-137,-8776,-29,-86,-55,-8,-17,-415,-8777,-8778,-234,-4,-33,-2], +[0,-439,-534,-59], [1,3,1558], [0,0,0,1559,5], -[0,-514,-4865], +[0,-2300,-94], [1,3,1561], [0,1562,1563,1564,6], -[0,-2359,-714,-5875,-2177,-5876,-5877,-5878], -[0,-1788,-2322,-932,-1777,-516,-2156,-5834], -[0,-5879,-5880,-5881,-1764,-5879], +[0,-161,-133,-8779,-16,-8780,-8781,-8782], +[0,-15,-39,-1,-273,-269,-189,-244], +[0,-2140,-2141,-5019,-159,-2140], [1,3,1566], [0,1567,1568,1569,6], -[0,-719,-1276,-5882,-1729,-5883,-2177], -[0,-23,-43,-539,-5884,-664,-708,-767,-1609,-1654,-1788,-2226,-2250], -[0,-5885,-5886,-5887,-5888,-1573,-3262,-5889,-5890,-5891,-1306], +[0,-58,-247,-8783,-188,-5020,-16], +[0,-11,-174,-333,-5021,-13,-149,-26,-518,-3,-15,-1700,-97], +[0,-3448,-2142,-830,-2651,-258,-116,-402,-1815,-8784,-1422], [1,3,1571], [0,1572,1573,1574,5], -[0,-679,-714,-5892,-5893,-1107,-5894,-1574,-1816,-5895,-2105,-5896,-2550], -[0,-526,-559,-664,-932,-933,-958,-962,-969,-1654], -[0,-5885,-3015,-1380,-5897,-2490], +[0,-117,-133,-5022,-8785,-28,-3449,-638,-325,-1816,-111,-3450,-98], +[0,-179,-321,-13,-1,-255,-9,-148,-64,-3], +[0,-3448,-693,-729,-478,-606], [1,3,1576], [0,1577,0,1578,10], -[0,-635,-658,-5898,-1863,-1934], -[0,-518,-775,-5899,-1889,-3583], +[0,-301,-1052,-5023,-167,-464], +[0,-157,-24,-2652,-38,-223], [1,3,1580], [0,1581,1582,1583,8], -[0,-5900,-461,-462,-482,-5901,-506,-5902,-5903,-668,-5904,-680,-5905,-696,-5906,-5907,-5908,-5909,-812,-5910,-1040,-1111, --5911,-1366,-1396,-1398,-5912,-5913,-1681,-1826,-5914,-1864,-1877,-1951,-5915,-4621,-5916,-5917,-2530,-2550], -[0,-5028,-5918,-3037,-480,-652,-999,-1001,-2210,-2319,-2331,-2384,-2410,-2541,-5747], -[0,-5919,-4004,-4043,-3634,-519,-5920,-5921,-5922,-4873,-5732,-687,-1415,-1654,-2322,-2319,-1989,-1412,-507,-5855,-1961, --5923,-510,-5924,-5867,-3262,-5925,-5926,-5927,-5928,-5119,-4045,-1001,-2410], +[0,-3451,-202,-1374,-719,-8786,-1046,-5024,-8787,-20,-8788,-481,-8789,-1934,-5025,-5026,-8790,-8791,-35,-5027,-510,-204, +-5028,-793,-1083,-1656,-2143,-3452,-549,-552,-8792,-326,-979,-871,-3453,-2575,-8793,-2653,-1714,-98], +[0,-2600,-1164,-5,-841,-43,-118,-338,-27,-85,-379,-82,-2,-34,-2643], +[0,-8794,-76,-473,-61,-51,-2654,-918,-535,-573,-762,-37,-8,-3,-39,-85,-376,-196,-280,-1163,-171,-504,-59,-1331,-656,-116, +-3454,-8795,-5029,-8796,-401,-2068,-338,-2], [1,3,1585], [0,1586,1587,1588,4], -[0,-668,-909,-1543,-1548,-1639,-1650,-2234,-5929], -[0,-3035,-3044,-4036,-3621,-3037,-3714,-4372,-3046,-615,-664,-5930,-1077,-1344,-1534,-1654,-1942,-5931,-2125,-2195,-2251, --2330,-2388,-2410,-2501,-2503], -[0,-2501,-5932,-5050,-2410], +[0,-20,-781,-732,-23,-361,-72,-147,-8797], +[0,-109,-143,-651,-71,-5,-1748,-279,-526,-114,-13,-8798,-41,-10,-17,-3,-4,-8799,-7,-276,-134,-603,-199,-2,-18,-93], +[0,-18,-831,-3346,-2], [1,3,1590], [0,1591,1592,1593,5], -[0,-2165,-2435,-2444,-2446,-640,-997,-2536,-5933,-5934,-1985], -[0,-664,-1471,-1654,-932,-708,-1412,-2501,-793,-2416,-633,-2410,-3037,-1455,-711,-1413,-1481,-5935,-5936,-1475], -[0,-3690,-5937,-5817,-5938,-5939,-5940,-5941,-5942,-5943,-5944,-5945,-5946,-5947,-5948,-5949,-5950,-5951,-5952,-5953, --5954,-5955,-5956,-5957,-5958,-5959,-5960,-5961,-5962,-5197,-5963,-5964,-5965,-5966,-5967,-5968], +[0,-1119,-200,-136,-125,-294,-410,-565,-5030,-5031,-982], +[0,-13,-79,-3,-1,-149,-196,-18,-1618,-112,-60,-2,-5,-859,-308,-373,-389,-3455,-5032,-138], +[0,-100,-2144,-1330,-8800,-8801,-1165,-5033,-5034,-3456,-8802,-8803,-8804,-8805,-8806,-8807,-8808,-3457,-8809,-5035,-8810, +-8811,-8812,-8813,-8814,-8815,-8816,-8817,-5036,-4884,-8818,-8819,-8820,-8821,-8822,-5037], [1,3,1595], [0,0,1596,1597,4], -[0,-664,-1107,-668,-702,-999,-1127,-1344,-1446,-1449,-1471,-1654,-2210,-932,-1437,-753,-928,-1110,-1821,-1376,-5969,-1942, --2416,-5970,-5113,-5971,-1474,-5972,-2410,-23,-3037,-5973,-925,-5974,-1339,-1482,-1489,-1534,-1771,-5975,-5976,-1320, --1737,-4916,-5977,-5978,-2251,-5979,-40,-5980,-1480,-2173,-5981,-1134,-1149,-1491,-1136,-1148,-5982,-1475,-2253,-3345, --940,-1479, --5983,-5984,-36], -[0,-5985,-4665,-3634,-5119,-4873,-3440,-5986], +[0,-13,-28,-20,-507,-118,-54,-10,-165,-78,-79,-3,-27,-1,-248,-158,-87,-56,-803,-195,-1817,-4,-112,-8823,-1522,-5038,-675, +-5039,-2,-11,-5,-5040,-948,-3458,-413,-187,-1237,-17,-65,-5041,-8824,-673,-1445,-1316,-1332,-8825,-134,-8826,-21,-3459, +-1090,-1120,-3460,-240,-304,-676,-629,-341,-8827,-138,-1125,-1741,-12,-213, +-3461,-3462,-300], +[0,-8828,-1018,-61,-401,-573,-609,-3463], [1,3,1599], [0,1600,1601,1602,4], -[0,-1069,-5987,-1063], -[0,-652,-1168,-668,-1344,-1471,-1654,-2210,-932,-1685,-1831,-2127,-1004,-5988,-1077,-5969,-1646,-756,-767,-1070,-1100, --1276,-3727,-2325,-2410,-23,-617,-925,-1489,-1413,-1948,-5989,-1481,-516,-86,-5990,-40,-5991,-4062,-4066,-3326,-1488, --2140,-5992,-1475,-1487,-1479,-1490,-350,-5993,-1486,-5994,-5995,-351,-5996,-5997,-3307], -[0,-2533,-1334,-5998,-1961,-3966,-4865,-4213,-3691,-3690,-3323], +[0,-628,-5042,-1412], +[0,-43,-32,-20,-10,-79,-3,-27,-1,-1441,-1248,-14,-40,-8829,-41,-1817,-88,-55,-26,-955,-487,-247,-2527,-884,-2,-11,-163, +-948,-1237,-373,-520,-2655,-389,-269,-49,-8830,-21,-8831,-238,-530,-207,-798,-229,-8832,-138,-861,-213,-637,-77,-3464, +-731,-5043,-3465,-62,-8833,-5044,-63], +[0,-743,-103,-1535,-171,-144,-94,-905,-422,-100,-351], [1,3,1604], [0,1605,1606,1607,4], -[0,-5999,-1015,-6000,-6001,-2062,-2105,-2424,-2446,-2451,-2536,-2538,-1456], -[0,-6002,-633,-756,-6003,-1127,-1154,-2778,-1405,-1471,-1475,-1478,-6004,-1479,-1480,-1482,-1483,-1654,-1657,-1722,-2198, --2416,-2491], -[0,-3966,-5800,-6005], +[0,-8834,-432,-8835,-5045,-198,-111,-250,-125,-439,-565,-1274,-635], +[0,-8836,-60,-55,-8837,-54,-3021,-1721,-66,-79,-138,-1661,-8838,-213,-1090,-187,-414,-3,-589,-197,-81,-112,-742], +[0,-144,-1534,-1166], [1,3,1609], [0,1610,1611,137,4], -[0,-527,-556,-566,-567,-719,-742,-3179,-1107,-1548,-6006,-1850,-2218,-2231,-6007,-679], -[0,-530], +[0,-162,-580,-429,-282,-58,-457,-3177,-28,-23,-8839,-1249,-288,-130,-3466,-117], +[0,-1602], [1,3,1613], [0,1614,1615,138,9], -[0,-6008,-529,-6009,-6010,-566,-567,-568,-569,-570,-572,-742,-812,-1460,-1548,-1645,-1850,-6011,-2218,-2231], -[0,-530,-6012,-556], +[0,-3467,-1918,-5046,-3468,-429,-282,-1380,-1923,-1208,-844,-457,-35,-272,-23,-92,-1249,-2145,-288,-130], +[0,-1602,-3469,-580], [1,3,1617], [0,1618,1619,7,5], -[0,-2114,-47,-25,-46,-22,-983], -[0,-1344,-1654,-815,-932,-986,-1942,-1534,-528,-6013,-958,-956,-967], +[0,-126,-450,-405,-539,-505,-950], +[0,-10,-3,-509,-1,-583,-4,-17,-91,-2656,-9,-485,-25], [1,3,1621], [0,1622,1623,7,5], -[0,-6010,-567,-570,-831,-1451,-1548,-2231,-6014], -[0,-530,-572], +[0,-3468,-282,-1208,-1216,-1087,-23,-130,-8840], +[0,-1602,-844], [1,3,1625], [0,1626,0,7,4], -[0,-567,-1548,-6015,-2177], +[0,-282,-23,-8841,-16], [1,3,1628], [0,1629,0,7,5], -[0,-567,-6012], +[0,-282,-3469], [1,3,1631], [0,0,0,1632,6], -[0,-525,-2476,-4146], +[0,-281,-73,-904], [1,3,1634], [0,1635,1636,7,4], -[0,-4020,-4776,-539,-6016,-668,-1119,-2218], -[0,-23,-4034,-4035], +[0,-1760,-757,-333,-8842,-20,-324,-288], +[0,-11,-2066,-898], [1,3,1638], [0,175,1639,1640,8], -[0,-21,-23,-32,-40,-652,-932,-940,-967,-1110,-1344,-1534,-1942,-2501], -[0,-2501,-5932,-525,-3184,-3186,-3551], +[0,-48,-11,-156,-21,-43,-1,-12,-25,-56,-10,-17,-4,-18], +[0,-18,-831,-281,-349,-1280,-365], [1,3,1642], [0,0,1643,1644,8], -[0,-23,-34,-40,-526,-527,-528,-5884,-6017,-558,-6018,-560,-568,-570,-6019,-932,-940,-943,-958,-966,-967,-968,-974,-1654, --1938,-1942,-2125,-2156], -[0,-3220,-6020], +[0,-11,-1039,-21,-179,-162,-91,-5021,-3470,-253,-5047,-666,-1380,-1208,-2146,-1,-12,-83,-9,-75,-25,-67,-129,-3,-1454,-4, +-7,-189], +[0,-1281,-8843], [1,3,1646], [0,1647,1648,1649,4], -[0,-1797], -[0,-2322,-932,-2125,-526,-527,-1365,-23,-528,-566,-6021,-40,-557,-559,-2156,-958,-934,-537,-3840,-535,-3382,-6022,-550], -[0,-525,-3862,-6023,-6024,-3966], +[0,-591], +[0,-39,-1,-7,-179,-162,-212,-11,-91,-429,-5048,-21,-721,-321,-189,-9,-185,-1206,-1007,-270,-2037,-1818,-1606], +[0,-281,-107,-8844,-657,-144], [1,3,1651], [0,116,35,21,5], [1,3,1653], [0,1654,1655,1656,10], -[0,-3341], -[0,-23,-41,-6025,-527,-6026,-756,-932,-933,-940,-958,-967,-1031,-1344,-1534,-1613,-1763,-1942,-6027], -[0,-3220,-485], +[0,-1138], +[0,-11,-132,-5049,-162,-5050,-55,-1,-255,-12,-9,-25,-788,-10,-17,-1099,-415,-4,-8845], +[0,-1281,-935], [1,3,1658], [0,1659,1660,1661,4], -[0,-24,-6028,-4003,-6029,-6030], -[0,-21,-23,-3362,-3204,-43,-664,-756,-767,-1654,-1788,-6031,-2250], -[0,-1405,-525,-3862,-6032], +[0,-716,-5051,-2552,-3471,-3472], +[0,-48,-11,-2034,-398,-174,-13,-55,-26,-3,-15,-8846,-97], +[0,-66,-281,-107,-5052], [1,3,1663], [0,1664,1665,1666,4], -[0,-3341,-47,-1107,-1548,-6033], -[0,-21,-23,-6034,-36,-3201,-3077,-38,-40,-41,-6035,-43,-4754,-510,-535,-540,-664,-6036,-6037,-1549,-1654,-1993,-2011], -[0,-3220,-6038,-1548,-3209], +[0,-1138,-450,-28,-23,-5053], +[0,-48,-11,-2657,-300,-3179,-995,-170,-21,-132,-3473,-174,-1154,-59,-270,-1604,-13,-8847,-8848,-461,-3,-643,-4288], +[0,-1281,-8849,-23,-381], [1,3,1668], [0,1669,1670,1671,6], -[0,-6039,-1107,-1872,-2112,-2114], -[0,-21,-23,-37,-3204,-40,-527,-533,-722,-932,-934,-940,-958,-1344,-1415,-1534,-6040,-2251], -[0,-525,-3220,-3551,-6041,-6042,-6043,-2114,-6044,-6045,-4792,-6024], +[0,-5054,-28,-1112,-2419,-126], +[0,-48,-11,-1040,-398,-21,-162,-86,-456,-1,-185,-12,-9,-10,-8,-17,-3474,-134], +[0,-281,-1281,-365,-5055,-5056,-5057,-126,-8850,-5058,-425,-657], [1,3,1673], [0,0,1674,7,5], -[0,-1415,-6046], +[0,-8,-2658], [1,3,1676], [0,0,0,21,5], [1,3,1678], [0,0,0,21,4], [1,3,1680], [0,1681,35,21,5], -[0,-6047,-6048,-567], +[0,-8851,-5059,-282], [1,3,1683], [0,1684,35,21,5], -[0,-6049,-6050,-567,-568], +[0,-8852,-8853,-282,-1380], [1,3,1686], [0,1687,1688,1689,6], -[0,-6051,-567,-568], -[0,-526,-546,-555,-559,-664,-1654], -[0,-525,-3220,-6052,-3336], +[0,-8854,-282,-1380], +[0,-179,-1379,-937,-321,-13,-3], +[0,-281,-1281,-2147,-4540], [1,3,1691], [0,1692,35,21,5], -[0,-567,-568,-569,-570,-1548], +[0,-282,-1380,-1923,-1208,-23], [1,3,1694], [0,1695,1696,21,6], -[0,-6053,-567,-568,-570], -[0,-531,-6054], +[0,-8855,-282,-1380,-1208], +[0,-1919,-5060], [1,3,1698], [0,116,35,21,10], [1,3,1700], [0,1701,35,21,4], -[0,-6054,-567], +[0,-5060,-282], [1,3,1703], [0,1704,35,21,5], -[0,-567,-6055,-544], +[0,-282,-8856,-1920], [1,3,1706], [0,0,1707,1708,4], -[0,-21,-23,-3194,-3840,-26,-3203,-40,-6056,-41,-43,-528,-6057,-664,-932,-933,-951,-956,-958,-962,-964,-967,-969,-1111, --1654,-6058,-1942], -[0,-525,-3220,-2006,-6059,-6060], +[0,-48,-11,-891,-1007,-209,-998,-21,-1167,-132,-174,-91,-5061,-13,-1,-255,-783,-485,-9,-148,-256,-25,-64,-204,-3,-5062,-4], +[0,-281,-1281,-6,-1333,-8857], [1,3,1710], [0,1711,35,7,4], -[0,-6061], +[0,-8858], [1,3,1713], [0,116,35,21,4], [1,3,1715], [0,1716,0,7,6], -[0,-567,-753,-2082], +[0,-282,-158,-346], [1,3,1718], [0,1719,1720,1721,6], -[0,-40,-41,-24,-3352,-38,-6062,-5584,-36,-3381,-6063,-3382,-6064,-553,-3393,-6065,-3396], -[0,-932,-23,-44,-2156,-958,-934], -[0,-525,-3184,-4795,-3214], +[0,-21,-132,-716,-3192,-170,-3475,-1326,-300,-2036,-8859,-2037,-3476,-776,-3198,-2148,-2504], +[0,-1,-11,-90,-189,-9,-185], +[0,-281,-349,-446,-45], [1,3,1723], [0,1724,1725,7,5], -[0,-6066,-6067,-545,-6068,-6069,-548,-6070,-6071,-6072,-6073,-6074,-6075,-6076,-6077,-549,-6078,-6079,-6080,-6081,-6082, --6083,-6084,-550,-6085,-6086,-6087,-554,-635,-1384,-2177], -[0,-526,-528,-530,-531,-539,-558,-566,-664,-708,-932,-6013,-956,-1077,-1548,-1654,-1788,-6088,-2125], +[0,-3477,-3478,-1921,-2659,-5063,-1605,-2660,-2661,-2662,-5064,-5065,-5066,-5067,-5068,-1207,-5069,-3479,-5070,-2663, +-2664,-2665,-5071,-1606,-3480,-5072,-5073,-1922,-301,-674,-16], +[0,-179,-91,-1602,-1919,-333,-253,-429,-13,-149,-1,-2656,-485,-41,-23,-3,-15,-5074,-7], [1,3,1727], [0,1728,1729,7,6], -[0,-6066,-6068,-6069,-548,-6070,-6071,-6072,-6073,-6074,-6075,-6076,-6077,-549,-6078,-6079,-6080,-6081,-6082,-6083,-6084, --550,-6085,-6086,-554], -[0,-6012,-531], +[0,-3477,-2659,-5063,-1605,-2660,-2661,-2662,-5064,-5065,-5066,-5067,-5068,-1207,-5069,-3479,-5070,-2663,-2664,-2665, +-5071,-1606,-3480,-5072,-1922], +[0,-3469,-1919], [1,3,1731], [0,1732,0,7,8], -[0,-6089,-544,-6090,-552,-6091,-6092], +[0,-2666,-1920,-8860,-2978,-8861,-8862], [1,3,1734], [0,1735,0,7,4], -[0,-23,-26,-33,-6065,-6062,-5584,-6093,-3394,-3203,-3409,-38,-40,-41,-42,-44,-3766,-553], +[0,-11,-209,-578,-2148,-3475,-1326,-3481,-2503,-998,-3201,-170,-21,-132,-137,-90,-1291,-776], [1,3,1737], [0,1738,0,7,9], -[0,-6094,-6095,-563], +[0,-8863,-8864,-2979], [1,3,1740], [0,1741,0,7,5], -[0,-6096,-6017,-564], +[0,-8865,-3470,-2302], [1,3,1743], [0,1744,0,7,4], -[0,-565,-6097,-543,-546], +[0,-2303,-8866,-2977,-1379], [1,3,1746], [0,1747,0,7,5], -[0,-6067,-6098,-545,-6087,-551], +[0,-3478,-8867,-1921,-5073,-775], [1,3,1749], [0,1750,1751,7,4], -[0,-527,-567,-753,-6099,-1548,-1650,-2234], -[0,-3542], +[0,-162,-282,-158,-5075,-23,-72,-147], +[0,-1746], [1,3,1753], [0,140,1754,7,8], -[0,-6009,-555], +[0,-5046,-937], [1,3,1756], [0,1757,0,7,4], -[0,-567,-569,-570,-572,-1548], +[0,-282,-1923,-1208,-844,-23], [1,3,1759], [0,1760,1761,7,5], -[0,-6008,-6010,-567,-570,-572,-812,-1110,-1384,-1548], -[0,-529], +[0,-3467,-3468,-282,-1208,-844,-35,-56,-674,-23], +[0,-1918], [1,3,1763], [0,1764,1765,7,6], -[0,-567,-6100,-1548,-6101], -[0,-529,-572], +[0,-282,-2667,-23,-8868], +[0,-1918,-844], [1,3,1767], [0,0,1768,7,5], -[0,-2319,-633,-23,-6102,-40,-6056,-742,-41,-6103,-3381,-3409], +[0,-85,-60,-11,-8869,-21,-1167,-457,-132,-8870,-2036,-3201], [1,3,1770], [0,0,1771,1772,6], -[0,-519,-526,-528,-530,-537,-539,-6104,-559,-562,-668,-708,-767,-932,-6013,-956,-1059,-1788,-2125,-2127,-2128,-2137,-5385, --6105], -[0,-525,-3214,-3215,-572], +[0,-51,-179,-91,-1602,-1206,-333,-5076,-321,-1048,-20,-149,-26,-1,-2656,-485,-412,-15,-7,-14,-275,-347,-4913,-8871], +[0,-281,-45,-74,-844], [1,3,1774], [0,1775,1776,1777,4], -[0,-2424], -[0,-711,-757,-849,-932,-958,-1471,-1485,-1989,-2104,-2127,-2416], -[0,-6106,-6107,-5394,-3122,-3844,-3323,-4865], +[0,-250], +[0,-308,-582,-1394,-1,-9,-79,-1662,-376,-1693,-14,-112], +[0,-1819,-1168,-3391,-442,-216,-351,-94], [1,3,1779], [0,1780,1781,1782,11], -[0,-719,-1107,-1376,-1805,-2125,-2387,-2446,-2451], -[0,-6108,-3036,-3049,-3037,-3738,-6109,-3046,-427,-428,-3311,-6110,-6111,-3312,-664,-932,-958,-966,-1654,-1656,-6112, --2195,-2200,-2335,-2376,-2379,-2402,-2410,-5260,-2501,-2503], -[0,-3445,-574,-1671,-3105,-6113], +[0,-58,-28,-195,-152,-7,-44,-125,-439], +[0,-8872,-471,-2025,-5,-698,-3482,-526,-22,-19,-893,-8873,-8874,-1283,-13,-1,-9,-75,-3,-974,-8875,-276,-394,-397,-214,-33, +-124,-2,-704,-18,-93], +[0,-46,-4113,-375,-2028,-5077], [0,44,15,16,4], [1,3,1785], [0,0,1786,1787,5], -[0,-756,-1127,-1132,-1162,-6114,-1405,-1654,-2081], -[0,-6115,-6116,-6117,-6118,-514,-638], +[0,-55,-54,-164,-789,-2149,-66,-3,-984], +[0,-8876,-5078,-5079,-2150,-2300,-2984], [0,45,15,16,11], [1,3,1790], [0,0,1791,1792,8], -[0,-5859,-589,-633,-2322], -[0,-6118], +[0,-1814,-110,-60,-39], +[0,-2150], [1,3,1794], [0,177,1795,1796,5], -[0,-1654,-932,-1405,-966,-958,-968,-943,-963,-974], -[0,-6119,-6120,-6121,-6122], +[0,-3,-1,-66,-75,-9,-67,-83,-211,-129], +[0,-8877,-832,-2668,-8878], [1,3,1798], [0,1799,1800,1801,4], -[0,-888,-1645,-1646,-1650,-6123], -[0,-932,-943,-958,-966,-968,-974,-1654,-2125,-2293,-2369,-2418,-2450], -[0,-1004,-3161,-6124,-6125,-6126,-1752,-3578,-3691,-5728,-3122,-3994,-1954,-3445,-3690], +[0,-337,-92,-88,-72,-5080], +[0,-1,-83,-9,-75,-67,-129,-3,-7,-123,-691,-1471,-1272], +[0,-40,-53,-8879,-3483,-8880,-1676,-113,-422,-1161,-442,-306,-3085,-46,-100], [1,3,1803], [0,1804,1805,178,4], -[0,-1723,-6127], -[0,-1415,-6128], +[0,-864,-2151], +[0,-8,-3484], [1,3,1807], [0,0,0,1808,4], -[0,-581,-3214,-3756,-6131,-5110,-6120,-3173,-6129,-6130,-770], +[0,-1382,-45,-278,-1536,-1790,-832,-695,-2152,-2153,-626], [1,3,1810], [0,0,1811,178,8], -[0,-581,-6132,-1942,-2410], +[0,-1382,-5081,-4,-2], [1,3,1813], [0,1814,1815,1816,9], -[0,-6133,-719,-679], -[0,-1003,-1127,-600,-1130,-1156,-1134,-1148], -[0,-6134,-6135,-6136,-6137,-6138,-6139,-3870,-6140,-6141,-6142,-6143,-6144,-6145], +[0,-8881,-58,-117], +[0,-411,-54,-1609,-957,-959,-240,-341], +[0,-1820,-8882,-8883,-2154,-2155,-8884,-1150,-8885,-8886,-8887,-5082,-8888,-8889], [1,3,1818], [0,0,0,1819,5], -[0,-589,-6146], +[0,-110,-3485], [0,68,15,16,8], [1,3,1822], [0,1823,1824,1825,8], -[0,-1640,-1805,-2518,-2546,-1519,-2114,-2346,-679,-1646,-6176,-1888,-1948,-725,-6177,-2062,-6178,-6179,-6180], -[0,-6181,-4215,-2322,-2363,-1405,-2491,-633,-6182], -[0,-6183,-633], +[0,-260,-152,-222,-744,-3059,-126,-469,-117,-88,-8919,-641,-520,-309,-8920,-198,-8921,-8922,-8923], +[0,-8924,-317,-39,-418,-66,-742,-60,-8925], +[0,-8926,-60], [0,45,15,16,4], [1,3,1828], [0,1829,1830,1831,11], -[0,-1548,-6184], -[0,-756,-6185,-1405,-6186,-1991,-2111], -[0,-589,-6187,-6188], +[0,-23,-1821], +[0,-55,-8927,-66,-2669,-1457,-416], +[0,-110,-574,-2156], [0,45,15,16,5], [1,3,1834], [0,1835,0,1836,9], -[0,-6189,-6190,-6191,-23,-3194,-25,-26,-6093,-5828,-3355,-3204,-3408,-40,-42,-46,-4228,-4145,-3037,-469,-6192,-501,-510, --674,-679,-683,-714,-6193,-742,-1070,-1323,-6194,-1729,-1847,-1942,-6195,-2162,-2228,-2231,-2245,-2299,-2410,-2416,-6196, --2476,-2550,-1376,-6197], -[0,-6198,-6199,-6200,-6201,-6202,-6203,-3161,-2410,-3214,-3018,-5065,-4726,-3445,-6204,-6205,-6206,-6207,-6208,-6209, --6210,-6211,-6212,-6213,-6214,-6215,-4160,-6216,-6217,-2006,-6218,-6219,-2476,-6220,-6221,-4726,-2299,-6222,-6223,-2228, --6224], +[0,-8928,-8929,-8930,-11,-891,-405,-209,-3481,-3442,-3193,-398,-1284,-21,-137,-539,-2077,-4706,-5,-183,-2670,-842,-59, +-231,-117,-540,-133,-3486,-457,-955,-1424,-8931,-188,-249,-4,-3487,-80,-810,-130,-813,-221,-2,-112,-8932,-73,-98,-195, +-2671], +[0,-3488,-8933,-8934,-3489,-8935,-8936,-53,-2,-45,-440,-1786,-3312,-46,-8937,-5083,-8938,-8939,-8940,-2157,-5084,-1822, +-8941,-8942,-8943,-8944,-3274,-8945,-5085,-6,-8946,-8947,-73,-8948,-8949,-3312,-221,-8950,-8951,-810,-2158], [1,3,1838], [0,1839,1840,1841,10], -[0,-6225,-6226,-6227], -[0,-523,-664,-932,-1654,-6228,-1972,-6229], -[0,-4055,-6230,-6231,-2487,-1838,-3215,-6232,-6233,-2059,-6234,-510,-6235], +[0,-8952,-8953,-8954], +[0,-194,-13,-1,-3,-8955,-181,-8956], +[0,-108,-8957,-447,-741,-166,-74,-8958,-919,-597,-1823,-59,-1537], [1,3,1843], [0,0,0,1844,5], -[0,-6236,-6237,-6238,-6239,-6240,-6241,-6242,-6243,-6244,-6245,-6246,-6247], +[0,-8959,-8960,-8961,-8962,-1538,-5086,-8963,-8964,-8965,-5087,-8966,-8967], [1,3,1846], [0,1847,0,1848,8], -[0,-6248], -[0,-5269,-6249,-596,-6250,-5968,-6251,-6252], +[0,-8968], +[0,-501,-2159,-667,-5088,-5037,-2672,-2673], [1,3,1850], [0,1851,1852,7,4], -[0,-6253], -[0,-1788,-2322,-2388,-1942,-1729,-1972,-2410,-3037], +[0,-8969], +[0,-15,-39,-199,-4,-188,-181,-2,-5], [1,3,1854], [0,1855,1856,1857,9], -[0,-6254,-6255,-6256,-6257,-3204,-38,-2687,-6022,-6258,-2965,-6259,-2489], -[0,-6260,-21,-23,-3204,-40,-6261,-43,-44,-4757,-2697,-358,-6262,-6263,-4754,-6264,-4956,-4749,-4959,-409,-3136,-3052, --6265,-6266,-6021,-6267,-533,-534,-6268,-6269,-539,-557,-560,-6026,-567,-6270,-683,-756,-767,-799,-6271,-932,-6272,-1168, --1261,-1266,-6273,-1365,-1415,-1422,-1440,-1666,-6274,-1743,-1763,-1771,-1782,-1788,-1939,-1942,-2000,-2006,-2019,-6275, --6276,-2125,-2156,-2163,-6277,-2275,-2375,-2376,-2410,-2501,-2502,-2503], -[0,-598,-6278], +[0,-8970,-8971,-5089,-8972,-398,-170,-4384,-1818,-2674,-1135,-5090,-605], +[0,-8973,-48,-11,-398,-21,-8974,-174,-90,-1515,-4386,-2293,-8975,-3490,-1154,-5091,-4844,-1019,-4845,-120,-29,-89,-3491, +-8976,-5048,-8977,-86,-96,-8978,-8979,-333,-721,-666,-5050,-282,-8980,-540,-55,-26,-1942,-8981,-1,-5092,-32,-1419,-360, +-5093,-212,-8,-3052,-968,-233,-8982,-1242,-415,-65,-2395,-15,-234,-4,-685,-6,-36,-8983, +-8984,-7,-189,-467,-8985,-154,-57,-214,-2,-18,-523,-93], +[0,-4116,-8986], [1,3,1859], [0,1860,1861,1862,8], -[0,-6279,-640,-1370,-2062], -[0,-1032,-2250,-2322,-2410], -[0,-640,-6280,-5827,-6281], +[0,-3492,-294,-515,-198], +[0,-1225,-97,-39,-2], +[0,-294,-3493,-252,-5094], [1,3,1864], [0,1865,1866,1867,5], -[0,-461,-6282,-6283,-1402,-1795,-2546], -[0,-510,-6284,-710,-1127,-1132,-1134,-1136,-1144,-1148,-1542,-1654,-1859,-2111,-2006,-6285], -[0,-4005], +[0,-202,-3494,-2160,-1084,-1447,-744], +[0,-59,-8987,-455,-54,-164,-240,-629,-175,-341,-343,-3,-867,-416,-6,-8988], +[0,-823], [1,3,1869], [0,0,0,1870,5], -[0,-6286,-6287,-6288,-6289,-6290], +[0,-8989,-8990,-8991,-8992,-8993], [1,3,1872], [0,1873,1874,7,6], -[0,-6291,-668,-6292,-1548,-6293,-1610,-6294,-6295,-1627,-6296,-6297,-2269,-6298,-6299], -[0,-6300,-601,-714,-932,-943,-958,-966,-968,-974], +[0,-8994,-20,-8995,-23,-8996,-227,-2161,-5095,-1670,-8997,-5096,-139,-8998,-8999], +[0,-9000,-4117,-133,-1,-83,-9,-75,-67,-129], [0,45,15,16,8], [0,67,15,16,10], [0,67,15,16,5], [0,67,15,16,6], [1,3,1880], [0,0,1881,1882,5], -[0,-1405], -[0,-6301,-5389,-6302,-6187], +[0,-66], +[0,-3495,-827,-3496,-574], [1,3,1884], [0,0,1885,1886,5], -[0,-705,-2152,-1107,-1805,-461,-6303,-1654,-2210,-1452,-1650,-2125,-6304,-615,-1303,-1405,-1813,-693,-2416,-462,-633,-617, --769,-2187,-1453,-1161], -[0,-1961,-6187,-5923,-6305,-6306,-510,-5867,-6307,-6308,-6309,-6310,-6311,-6312], +[0,-941,-3101,-28,-152,-202,-9001,-3,-27,-119,-72,-7,-9002,-114,-4209,-66,-551,-940,-112,-1374,-60,-163,-225,-393,-969, +-1647], +[0,-171,-574,-504,-5097,-1824,-59,-656,-3497,-5098,-2675,-5099,-5100,-9003], [1,3,1888], [0,0,1889,1890,6], -[0,-1654,-6313,-953], -[0,-6314,-6315,-6316,-6317,-6318], +[0,-3,-5101,-1633], +[0,-9004,-9005,-9006,-9007,-9008], [1,3,1892], [0,1893,81,7,6], -[0,-651,-737,-812,-1335,-1351,-1800,-1983,-1999,-2401], +[0,-454,-846,-35,-633,-459,-977,-465,-1458,-988], [1,3,1895], [0,1896,1897,1898,4], -[0,-615,-6319,-1369,-1548], -[0,-6320,-664,-932,-940,-967,-1344,-1446,-1497,-1534,-1654,-1691,-1788,-1857,-1942,-2210,-2211,-2245,-2446], -[0,-1818,-1691,-6321,-3742,-6322,-6323], +[0,-114,-9009,-1080,-23], +[0,-9010,-13,-1,-12,-25,-10,-165,-4225,-17,-3,-550,-15,-595,-4,-27,-190,-813,-125], +[0,-802,-550,-1169,-1290,-9011,-9012], [1,3,1900], [0,182,1901,1902,4], -[0,-707,-1510,-1607], -[0,-6324,-1334], +[0,-334,-1091,-972], +[0,-658,-103], [1,3,1904], [0,0,1905,148,4], -[0,-1389,-2564,-1640,-2162,-2834,-1471,-932,-1111,-1437,-2093,-2127,-2149,-2334,-1412,-1442,-1753,-1889,-2195,-3574,-1942, --699,-767,-3031,-2281,-21,-1354,-23,-6325,-3563,-1333,-1891,-2096,-6326,-518,-1772,-3559,-3564,-1481,-1547,-6327,-6328, --2997,-3660,-3803,-3649,-3562,-6329,-945,-3566,-2429,-40,-6330,-957,-3326,-958,-978,-1475,-1477,-6331,-3561,-963,-1479, --3571, --350,-6332,-2084,-1486,-3565,-351,-1473,-3569,-3573,-3568], +[0,-2358,-263,-260,-80,-1277,-79,-1,-204,-248,-274,-14,-2421,-177,-196,-101,-285,-38,-276,-4589,-4,-1053,-26,-2482,-182, +-48,-1652,-11,-3498,-1747,-488,-682,-2417,-3499,-157,-345,-2512,-2513,-389,-1095,-2676,-9013,-820,-421,-1006,-499,-1004, +-5102,-1222,-3216,-348,-21,-9014,-723,-207,-9,-151,-138,-1429,-5103,-237,-211,-213,-2042, +-77,-3500,-1691,-731,-4588,-62,-1428,-2041,-3218,-3217], [1,3,1907], [0,0,1908,1909,4], -[0,-2162,-6333,-888], -[0,-620,-2162,-775,-6334], +[0,-80,-9015,-337], +[0,-453,-80,-24,-5104], [1,3,1911], [0,0,0,1912,4], -[0,-622], +[0,-1050], [1,3,1914], [0,1915,1916,1917,8], -[0,-2728,-656,-668,-688,-2267,-2400,-2820,-2528], -[0,-519,-1788,-2384,-2541], -[0,-687,-6335,-6336,-3974,-4110,-4000,-4111,-4112,-6337,-5554], +[0,-4402,-430,-20,-2326,-395,-215,-2473,-890], +[0,-51,-15,-82,-34], +[0,-37,-2162,-5105,-178,-901,-201,-902,-474,-3501,-193], [1,3,1919], [0,1920,1921,1922,4], -[0,-6338,-2114,-6339,-2347], -[0,-633,-725,-2319,-2346], -[0,-633,-6340,-1076,-6341,-3862,-5142,-6342,-4161,-6118], +[0,-9016,-126,-9017,-69], +[0,-60,-309,-85,-469], +[0,-60,-2677,-303,-9018,-107,-914,-1825,-1151,-2150], [1,3,1924], [0,1925,1926,1927,4], -[0,-812,-1645,-2488,-6343,-6344,-6345,-6346], -[0,-664,-1654,-2125,-1077,-2091,-6347,-964,-630,-6348], -[0,-6346,-3214], +[0,-35,-92,-1133,-2678,-9019,-2679,-1826], +[0,-13,-3,-7,-41,-378,-2680,-256,-1610,-5106], +[0,-1826,-45], [1,3,1929], [0,1930,1931,1932,4], -[0,-6346,-6349], -[0,-6350,-630,-664,-1654,-6347], -[0,-6346,-1631,-6351], +[0,-1826,-9020], +[0,-9021,-1610,-13,-3,-2680], +[0,-1826,-491,-709], [1,3,1934], [0,1935,1936,7,6], -[0,-3628,-2731,-1054,-6345,-2359,-2488], -[0,-3035,-3621,-3037,-6352,-664,-726,-1654,-6353,-1788,-1942,-6354,-2388,-2389,-6355,-2410], +[0,-750,-3143,-1227,-2679,-161,-1133], +[0,-109,-71,-5,-9022,-13,-284,-3,-9023,-15,-4,-9024,-199,-1268,-5107,-2], [1,3,1938], [0,1939,1940,1941,6], -[0,-6356,-6357,-6358,-668,-679,-729,-731,-6359,-6360,-6361,-990,-1072,-1077,-1336,-1361,-1639,-1812,-5763,-1999,-6362, --2152,-2178,-2186,-2187,-2188,-2228,-2594,-2550], -[0,-3037,-6363,-664,-6364,-1119,-5735,-1654,-1942,-1980,-2105,-2111,-2125,-2210,-2229,-2234,-2269,-2293,-2410,-2460], -[0,-6365,-775,-6366,-6367], +[0,-9025,-9026,-9027,-20,-117,-218,-1391,-9028,-9029,-9030,-848,-669,-41,-586,-514,-361,-1247,-3437,-1458,-9031,-3101, +-808,-1122,-393,-1123,-810,-1134,-98], +[0,-5,-9032,-13,-9033,-324,-1533,-3,-4,-521,-111,-416,-7,-27,-1262,-147,-139,-123,-2,-70], +[0,-9034,-24,-9035,-2163], [1,3,1943], [0,1944,1945,1946,5], -[0,-2435,-1107,-2444,-2546,-507,-640,-997,-1285,-6368,-6369,-6370,-1958,-2114,-1370,-1977,-2347,-6371,-6372,-1464,-6373, --6374,-2194,-6375,-6376,-6377,-725,-6378,-6379,-6380,-6381,-6382,-6383,-6384,-6385,-6386,-1848,-6387,-2062,-6388,-6389, --771,-6390,-6391,-6392,-6393,-6394,-5936,-6395], -[0,-6396,-2319,-2330,-2177,-2346,-573,-6397,-6398,-710,-6399,-6400,-6401,-6402], -[0,-4865,-4792,-4791,-6403,-4161,-1764,-3214], +[0,-200,-28,-136,-744,-280,-294,-410,-672,-5108,-2681,-1170,-286,-126,-515,-981,-69,-9036,-2682,-1089,-9037,-5109,-737, +-3502,-5110,-9038,-309,-3503,-9039,-3504,-3505,-9040,-2683,-3506,-9041,-3507,-681,-2684,-198,-3508,-9042,-1617,-2685, +-2686,-5111,-9043,-3509,-5032,-9044], +[0,-9045,-85,-603,-16,-469,-1924,-5112,-2687,-455,-3510,-9046,-9047,-3511], +[0,-94,-425,-910,-9048,-1151,-159,-45], [1,3,1948], [0,1949,1950,1951,9], -[0,-6404,-6405,-6406,-2114,-2346], -[0,-1449,-1705,-1972,-2105,-2125,-2319,-6407], -[0,-633,-6340,-5396,-1109,-1110,-6408,-6409,-4791], +[0,-9049,-9050,-9051,-126,-469], +[0,-78,-734,-181,-111,-7,-85,-9052], +[0,-60,-2677,-706,-852,-56,-536,-3512,-910], [1,3,1953], [0,1954,0,1955,9], -[0,-6410,-658,-6088,-6411,-6412], -[0,-657,-6413,-6414], +[0,-2688,-1052,-5074,-9053,-5113], +[0,-2986,-2164,-9054], [1,3,1957], [0,1958,1959,1960,11], -[0,-6415], -[0,-2322,-2125,-2410,-3037,-6416], -[0,-6417,-6418,-770,-6419,-6420,-6421,-6422,-5835,-6423], +[0,-5114], +[0,-39,-7,-2,-5,-5115], +[0,-9055,-9056,-626,-9057,-1539,-5116,-833,-533,-9058], [1,3,1962], [0,0,1963,1964,10], -[0,-1788,-2323,-2384,-664,-2446,-668,-1654,-2210,-932,-2127,-2379,-1942,-589,-1729,-2211,-2410,-3035,-3037,-3621,-4372, --1588,-3625,-2234,-977,-940,-967,-262,-3267,-428,-351,-6424,-427,-234], -[0,-1671,-637,-3215], +[0,-15,-312,-82,-13,-125,-20,-3,-27,-1,-14,-33,-4,-110,-188,-190,-2,-109,-5,-71,-279,-296,-1287,-147,-1065,-12,-25,-451, +-330,-19,-62,-5117,-22,-1200], +[0,-375,-1611,-74], [1,3,1966], [0,0,0,1967,6], -[0,-638,-4865], +[0,-2984,-94], [1,3,1969], [0,1970,1971,1972,8], -[0,-461,-6425,-6426,-668,-1588,-1646,-6427], -[0,-6428,-932,-1107,-1654,-2125,-2127,-6429,-350,-4062,-351,-2231,-2234,-6430], -[0,-3214,-6431,-6432,-6433,-4795,-6434,-3184,-6052], +[0,-202,-9059,-1827,-20,-296,-88,-9060], +[0,-9061,-1,-28,-3,-7,-14,-2165,-77,-238,-62,-130,-147,-5118], +[0,-45,-5119,-9062,-5120,-446,-1540,-349,-2147], [1,3,1974], [0,1975,1976,1977,11], -[0,-578,-5933], -[0,-468,-589,-633,-725,-1345,-5852,-5848,-2239,-2322,-2347,-2416], -[0,-6435,-4865,-633,-640,-6436,-6437,-6438], +[0,-1608,-5030], +[0,-718,-110,-60,-309,-4212,-3445,-5017,-812,-39,-69,-112], +[0,-3513,-94,-60,-294,-9063,-9064,-5121], [1,3,1979], [0,0,1980,1981,4], -[0,-5834,-515,-516,-932,-1365,-1777,-2156,-2322], -[0,-640,-6439], +[0,-244,-720,-269,-1,-212,-273,-189,-39], +[0,-294,-1828], [1,3,1983], [0,1984,1985,1986,4], -[0,-6127], -[0,-1654,-1733,-6128], -[0,-642], +[0,-2151], +[0,-3,-590,-3484], +[0,-1929], [1,3,1988], [0,0,14,1989,5], -[0,-6440,-6441,-6442,-3966,-3209,-3103,-6443,-4108,-5839,-6444], +[0,-9065,-5122,-9066,-144,-381,-1488,-9067,-1301,-708,-2689], [1,3,1991], [0,0,1992,1993,5], -[0,-784,-1891,-1942,-2125,-2162], -[0,-775,-2162,-3754,-6445,-4672,-3576,-3161], +[0,-369,-682,-4,-7,-80], +[0,-24,-80,-444,-3514,-1774,-649,-53], [1,3,1995], [0,1996,1997,1998,5], -[0,-3417,-6446,-6447,-303,-304,-6448,-6449,-5007,-523,-668,-812,-6450,-6451,-1805], -[0,-4367,-4368,-3035,-3198,-6452,-3621,-3037,-4372,-427,-664,-932,-938,-939,-940,-967,-1654,-1661,-1722,-1763,-1788,-4362, --2200,-2210,-2379,-2410], -[0,-3690,-856,-3438,-3328,-6453,-687], +[0,-3203,-9068,-2690,-1908,-2292,-5123,-9069,-3341,-194,-20,-35,-9070,-5124,-152], +[0,-2084,-2569,-109,-169,-9071,-71,-5,-279,-22,-13,-1,-1220,-1946,-12,-25,-3,-1439,-197,-415,-15,-1769,-394,-27,-33,-2], +[0,-100,-42,-697,-2497,-3515,-37], [1,3,2000], [0,2001,31,2002,5], -[0,-6376,-6399,-725,-6282,-1646,-2347], -[0,-633,-4161,-6454,-1644,-4792], +[0,-5110,-3510,-309,-3494,-88,-69], +[0,-60,-1151,-575,-228,-425], [1,3,2004], [0,2005,2006,2007,6], -[0,-6455,-1666,-6456,-6457], -[0,-6458,-2319,-2454,-2456,-1607], -[0,-1573,-5545,-6459,-4055,-648], +[0,-2691,-233,-5125,-9072], +[0,-9073,-85,-3126,-2007,-972], +[0,-258,-384,-5126,-108,-1210], [1,3,2009], [0,2010,2011,2012,6], -[0,-6460], -[0,-6461,-932], -[0,-6462,-4054,-6463,-1069], +[0,-9074], +[0,-5127,-1], +[0,-9075,-899,-2166,-628], [1,3,2014], [0,2015,2016,2017,4], -[0,-1578], -[0,-6464,-6465,-6466,-6467,-6468,-6469], -[0,-5149,-5839,-640,-6435,-6470,-650,-4055,-2512,-6471], +[0,-1974], +[0,-9076,-9077,-9078,-1541,-9079,-9080], +[0,-2103,-708,-294,-3513,-9081,-4122,-108,-889,-5128], [1,3,2019], [0,0,2020,2021,4], -[0,-932,-963,-1654,-1788], -[0,-6472,-651,-3590,-1838,-3215,-5845,-6473], +[0,-1,-211,-3,-15], +[0,-2692,-454,-208,-166,-74,-477,-1542], [1,3,2023], [0,2024,2025,2026,4], -[0,-6474,-4003,-1047,-6475,-5086,-5087,-5089,-6030,-6476,-2550,-2551], -[0,-3037,-664,-6477,-767,-1654,-2250,-2379,-2410], -[0,-4005,-6478,-4004,-1405,-6479,-6480,-3966], +[0,-9082,-2552,-339,-2693,-2101,-1787,-2102,-3472,-9083,-98,-525], +[0,-5,-13,-5129,-26,-3,-97,-33,-2], +[0,-823,-5130,-76,-66,-3516,-5131,-144], [1,3,2028], [0,0,2029,7,5], -[0,-3446,-1415,-999,-1344,-1111,-2127,-928,-5354,-2375,-2379,-2402,-1077,-1942,-6481,-2410,-23,-3136,-1534,-1607,-3048, --2174,-6482,-2132,-6483,-350,-796,-351,-6484], +[0,-1742,-8,-118,-10,-204,-14,-87,-2628,-57,-33,-124,-41,-4,-9084,-2,-11,-29,-17,-972,-191,-122,-9085,-417,-1334,-77,-295, +-62,-3517], [1,3,2031], [0,2032,2033,2034,11], -[0,-1495,-6485], -[0,-2581,-6486,-6487,-3037,-3664,-6488,-6489,-2125,-2391,-2410,-2469,-6490], -[0,-3324,-6491,-6492,-3966,-4601,-6493,-2071,-1622,-6494,-6495,-6496,-6497,-6498,-6499,-6500], +[0,-2367,-9086], +[0,-329,-1543,-9087,-5,-105,-3518,-9088,-7,-172,-2,-30,-9089], +[0,-443,-2167,-9090,-144,-476,-9091,-688,-2382,-9092,-3519,-9093,-9094,-9095,-9096,-9097], [1,3,2036], [0,2037,2038,2039,4], -[0,-6501,-6502,-6503,-6504], -[0,-5834,-516,-5835,-921,-932,-993,-1065,-5836,-1365,-1777,-1788,-1794,-2156,-2322], -[0,-3214,-3217,-6505,-3756,-6506,-6507,-6508,-6509,-6510,-655,-6511,-5924,-5831], +[0,-9098,-9099,-3520,-9100], +[0,-244,-269,-533,-1400,-1,-1069,-954,-2648,-212,-273,-15,-1245,-189,-39], +[0,-45,-350,-1829,-278,-5132,-9101,-3521,-3522,-5133,-939,-1830,-1331,-2647], [1,3,2041], [0,0,14,2042,4], -[0,-656,-6512,-6513,-6514,-6515,-6516,-864,-2424,-6517,-2265,-5554,-5845,-6518,-6519], +[0,-430,-2694,-5134,-2168,-3523,-5135,-1395,-250,-5136,-168,-193,-477,-5137,-3524], [1,3,2044], [0,0,0,2045,4], -[0,-5180,-5177,-3839,-4865], +[0,-1321,-615,-265,-94], [1,3,2047], [0,0,0,2048,5], -[0,-6520], +[0,-3525], [1,3,2050], [0,2051,2052,2053,9], -[0,-1723,-6521], -[0,-3037,-6522,-1004,-1442,-1654,-1870,-2250,-2384,-2410], -[0,-659,-6523,-6524,-6525,-6526,-6527,-5093,-6528], +[0,-864,-3526], +[0,-5,-5138,-40,-101,-3,-978,-97,-82,-2], +[0,-322,-3527,-1831,-9102,-9103,-292,-1788,-1171], [0,45,15,16,9], [1,3,2056], [0,0,2057,2058,4], -[0,-516,-932,-934,-958,-1077,-1654,-2501], -[0,-2501,-3862,-6529,-6024,-4792], +[0,-269,-1,-185,-9,-41,-3,-18], +[0,-18,-107,-9104,-657,-425], [1,3,2060], [0,0,0,2061,5], -[0,-1859,-6530,-4004,-3634,-6531], +[0,-867,-9105,-76,-61,-5139], [1,3,2063], [0,0,2064,2065,5], -[0,-652,-6532,-1654,-932,-928,-1110,-6533,-820,-1942,-190,-2410,-6534,-6535,-3311,-960,-6536,-350,-3312], -[0,-4004,-5855,-507,-3634,-664], +[0,-43,-9106,-3,-1,-87,-56,-5140,-1943,-4,-50,-2,-5141,-5142,-893,-180,-9107,-77,-1283], +[0,-76,-1163,-280,-61,-13], [1,3,2067], [0,2068,2069,2070,5], -[0,-6534], -[0,-652,-664,-1654,-932,-1110,-1942,-190], -[0,-664,-6537,-4865,-510,-3634,-6538,-5923,-6306], +[0,-5141], +[0,-43,-13,-3,-1,-56,-4,-50], +[0,-13,-2695,-94,-59,-61,-3528,-504,-1824], [1,3,2072], [0,0,183,2073,9], -[0,-664,-1841,-6539], +[0,-13,-1683,-5143], [1,3,2075], [0,0,2076,2077,9], -[0,-664,-1654,-1405,-756,-6347,-6540], -[0,-664,-6537,-6541,-6542,-6543,-3862,-6544,-6545,-6546,-5572,-6547,-6548,-6549], +[0,-13,-3,-66,-55,-2680,-9108], +[0,-13,-2695,-9109,-9110,-3529,-107,-9111,-1335,-5144,-532,-5145,-5146,-9112], [1,3,2079], [0,0,2080,2081,8], -[0,-652,-2541,-519,-2384,-999,-1612,-1575,-6550,-3037,-3523], -[0,-712,-5535,-714,-3974,-4000,-687,-2265,-5514,-5553,-3770,-3975,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958,-5554], +[0,-43,-34,-51,-82,-118,-1435,-1432,-9113,-5,-2039], +[0,-217,-707,-133,-178,-201,-37,-168,-243,-230,-568,-445,-616,-760,-1325,-267,-647,-258,-384,-299,-193], [1,3,2083], [0,0,2084,2085,10], -[0,-519,-528,-756,-6551,-932,-6552,-1168,-6553,-1197,-1243,-1252,-6554,-1548,-1788,-1976], -[0,-669,-6555,-3262,-4004,-6556,-6557,-6558,-6559], +[0,-51,-91,-55,-9114,-1,-9115,-32,-9116,-513,-310,-311,-9117,-23,-15,-1253], +[0,-2987,-920,-116,-76,-9118,-921,-2169,-9119], [1,3,2087], [0,0,0,2088,5], -[0,-5888,-6514,-5845,-6408,-6512,-6519,-6560,-6561,-6562], +[0,-2651,-2168,-477,-536,-2694,-3524,-3530,-9120,-9121], [1,3,2090], [0,2091,2092,7,4], -[0,-6563,-6564,-734,-6565,-3446,-6566,-6567,-1805,-1852,-6568,-6569,-2177,-6570], -[0,-3037,-3199,-3664,-932,-944,-1431,-1942,-2251,-2410,-2423,-2469], +[0,-5147,-9122,-1211,-9123,-1742,-9124,-9125,-152,-594,-1832,-2696,-16,-1544], +[0,-5,-140,-105,-1,-1403,-516,-4,-134,-2,-1270,-30], [1,3,2094], [0,2095,2096,2097,4], -[0,-6571], -[0,-350,-6572,-4062,-351,-367,-426,-6573,-427,-428,-6574,-6575,-6576,-726,-756,-767,-932,-6577,-6578,-957,-963,-985,-1107, --1412,-1413,-1471,-1475,-1476,-1478,-1479,-1481,-3569,-1486,-6579,-1491,-3222,-1666,-1667,-1870,-2127,-2130,-3571,-6580, --2140,-2410,-2550], -[0,-659,-6581,-6582,-6583,-5177,-3576], +[0,-9126], +[0,-77,-2697,-238,-62,-245,-320,-9127,-22,-19,-9128,-9129,-9130,-284,-55,-26,-1,-9131,-5148,-723,-211,-370,-28,-196,-373, +-79,-138,-588,-1661,-213,-389,-2041,-731,-9132,-676,-1491,-233,-863,-978,-14,-875,-2042,-9133,-229,-2,-98], +[0,-322,-3531,-479,-9134,-615,-649], [1,3,2099], [0,2100,2101,2102,11], -[0,-1839,-2426,-6584,-6585,-1333,-6586,-861,-6587,-6588,-6589,-6590], -[0,-2392,-2386,-1344,-1449,-932,-1437,-2469,-1110,-1942,-2354,-190,-2410,-3037,-1534,-4647,-3615,-6591,-965,-6592,-2411, --3664,-960,-6593,-978,-1943,-6594,-940], -[0,-6595,-1437,-3585,-6596,-3215,-5092,-6597,-3264], +[0,-593,-289,-3532,-1833,-488,-9135,-3000,-2698,-9136,-9137,-9138], +[0,-155,-561,-10,-78,-1,-248,-30,-56,-4,-1127,-50,-2,-5,-17,-614,-498,-9139,-115,-9140,-84,-105,-180,-922,-151,-2406, +-3533,-12], +[0,-3534,-248,-1499,-3535,-74,-266,-537,-31], [1,3,2104], [0,2105,2106,2107,5], -[0,-769,-6598,-1962], -[0,-526,-6066,-548,-559,-664,-932,-1452,-1654], -[0,-6599,-1958,-5923], +[0,-225,-9141,-1685], +[0,-179,-3477,-1605,-321,-13,-1,-119,-3], +[0,-1336,-286,-504], [1,3,2109], [0,2110,2111,2112,4], -[0,-44,-6600,-3946,-6601,-5579,-513,-595,-6602,-682,-709,-5212,-747,-753,-761,-6603,-6604,-6605,-6606,-5581,-6607,-3135, --6608,-6609,-1398,-1442,-6610,-1452,-6611,-6612,-5216,-1666,-6613,-1942,-4918,-6614,-6615,-1992,-4930,-4987,-6616,-6617, --6618,-6619,-2027,-2029,-6620,-6621,-2040,-2048,-2056,-2113,-6622,-4951,-2192,-6623,-2387,-2424,-2489,-2446], -[0,-23,-26,-33,-34,-35,-36,-3396,-5585,-3381,-6624,-38,-3351,-3382,-40,-41,-3744,-3746,-3747,-3562,-3059,-6625,-6626, --3043,-6627,-6628,-3136,-6629,-3044,-6630,-6631,-5221,-3040,-6632,-3052,-6633,-6634,-4972,-427,-428,-482,-518,-523,-527, --528,-533,-534,-538,-5596,-3133,-6635,-6636,-6637,-6638,-661,-668,-5598,-719,-767,-778,-3078,-786,-4977,-5603, --915,-916,-2760,-932,-933,-940,-951,-958,-959,-962,-963,-969,-6639,-1017,-1021,-4979,-1041,-1074,-1103,-1107,-1168,-1174, --1252,-5605,-1261,-1344,-1352,-1360,-6640,-1415,-1449,-3134,-1521,-5611,-1534,-1548,-4984,-5613,-6641,-5615,-1643,-1646, --1650,-1652,-1653,-1662,-1664,-1667,-1792,-1814,-1889,-1908,-1952,-4923,-6642,-6643,-4986,-2006,-2012,-2013,-2016,-2017, --3145,-3143, --6644,-2028,-6645,-4242,-2098,-5616,-5617,-3868,-5618,-2125,-5619,-6646,-2281,-4997,-4998,-2282,-4999,-2284,-2335,-2347, --2376,-2410,-2427,-2437,-6647,-6648,-2501,-6649,-2508,-5628,-5002,-3120,-2534], -[0,-6650,-3099,-2006,-3159,-3095,-3098,-3160,-3161,-3100], +[0,-90,-9142,-1754,-9143,-4954,-1917,-1925,-9144,-254,-1054,-4887,-778,-158,-1936,-9145,-9146,-9147,-9148,-4955,-9149, +-4502,-9150,-9151,-1656,-101,-9152,-119,-2699,-9153,-4888,-233,-9154,-4,-3322,-5149,-9155,-684,-2091,-3334,-9156,-9157, +-9158,-9159,-2413,-437,-5150,-9160,-872,-4295,-4297,-1117,-9161,-2092,-1463,-9162,-44,-250,-605,-125], +[0,-11,-209,-578,-1039,-931,-300,-2504,-1327,-2036,-9163,-170,-4544,-2037,-21,-132,-2530,-2531,-2532,-1004,-2026,-9164, +-9165,-1278,-3536,-9166,-29,-9167,-143,-1337,-9168,-4889,-47,-9169,-89,-1834,-9170,-1519,-22,-19,-719,-157,-194,-162,-91, +-86,-96,-2975,-4961,-4501,-9171,-9172,-9173,-9174,-1613,-20,-3419,-58,-26,-141,-4492,-722,-2094,-4963, +-431,-947,-1720,-1,-255,-12,-783,-9,-145,-148,-211,-64,-9175,-851,-1949,-2592,-271,-3017,-340,-28,-32,-585,-311,-4964, +-1419,-10,-964,-3047,-5151,-8,-78,-2029,-219,-4967,-17,-23,-1783,-4968,-9176,-3420,-374,-88,-72,-1240,-1978,-1105,-4245, +-863,-241,-1982,-38,-493,-435,-4840,-9177,-9178,-2594,-6,-2410,-1115,-2411,-2412,-4504,-4503, +-9179,-1689,-9180,-906,-599,-1811,-4970,-3246,-4971,-7,-4972,-9181,-182,-3339,-3340,-558,-2597,-1466,-397,-69,-214,-2, +-135,-438,-9182,-2700,-18,-9183,-524,-2639,-1784,-3170,-1715], +[0,-9184,-441,-6,-106,-131,-127,-102,-53,-52], [1,3,2114], [0,2115,2116,2117,4], -[0,-6651], -[0,-6652,-3037,-1942,-2358,-2410,-4701], -[0,-1076,-2490,-6653,-6654,-6655,-6656,-1080], +[0,-5152], +[0,-9185,-5,-4,-2449,-2,-1776], +[0,-303,-606,-9186,-5153,-5154,-128,-1950], [1,3,2119], [0,0,2120,184,5], -[0,-686,-1344,-2910,-2250,-2322], +[0,-1615,-10,-470,-97,-39], [1,3,2122], [0,2123,0,2124,5], -[0,-81,-66,-3512,-73,-74,-3520,-62,-6660,-3503,-3502,-71,-6661,-79,-83,-68,-72,-80,-82,-85,-70,-6662,-6663,-6664,-6665, --63,-6666,-3519,-3513,-64,-6667,-76,-54,-6668,-67,-69,-6669,-6670,-6671,-3521,-6672,-6673,-56,-75,-6674,-55,-6675,-6676, --3515,-6677,-65,-3504,-3511,-6678,-6679,-52,-3514,-6680,-3526,-77,-6681,-6682], -[0,-3488,-681,-3489,-3494,-3495,-3496,-3264,-3497,-3498,-3505,-3506,-3507,-3508,-3509,-3161], +[0,-406,-318,-3211,-1197,-1043,-2509,-1365,-9188,-2038,-610,-933,-9189,-1372,-332,-428,-1369,-579,-1595,-1199,-1042,-9190, +-9191,-9192,-9193,-1366,-9194,-4575,-4571,-1041,-9195,-1198,-1362,-9196,-1367,-1368,-9197,-9198,-9199,-4576,-3537,-9200, +-1364,-1370,-9201,-1363,-9202,-9203,-4573,-9204,-932,-3210,-4570,-9205,-9206,-1361,-4572,-9207,-3212,-1371,-9208,-9209], +[0,-1002,-283,-894,-821,-895,-420,-31,-1285,-1003,-1494,-1495,-1744,-1745,-1496,-53], [1,3,2126], [0,0,2127,2128,5], -[0,-2384,-2127,-2354,-1339,-1605,-4062,-350,-351], -[0,-2006,-775,-3205,-6683,-682,-2444,-3590], +[0,-82,-14,-1127,-413,-1098,-238,-77,-62], +[0,-6,-24,-2032,-5155,-254,-136,-208], [1,3,2130], [0,185,2131,2132,5], -[0,-633,-932,-934,-1336,-1722,-2188,-2471], -[0,-775,-6684], +[0,-60,-1,-185,-586,-197,-1123,-1474], +[0,-24,-834], [1,3,2134], [0,2135,2136,2137,10], -[0,-824], -[0,-21,-23,-40,-42,-6685,-3136,-3037,-6686,-533,-708,-767,-825,-932,-999,-1344,-1415,-1534,-1535,-1763,-1942,-2061,-2177, --6687,-2410,-2501], -[0,-2501,-3862,-6688,-3966], +[0,-150], +[0,-48,-11,-21,-137,-9210,-29,-5,-9211,-86,-149,-26,-232,-1,-118,-10,-8,-17,-1970,-415,-4,-1991,-16,-9212,-2,-18], +[0,-18,-107,-1338,-144], [1,3,2139], [0,0,0,2140,5], -[0,-5514,-685,-3974], +[0,-243,-1933,-178], [1,3,2142], [0,186,14,2143,8], -[0,-685,-3551,-4792,-6024,-3324,-6690,-6691,-6692,-3346,-6693,-6694,-6695,-1072], +[0,-1933,-365,-425,-657,-443,-5157,-5158,-9213,-2500,-835,-659,-1545,-669], [1,3,2145], [0,2146,0,2147,5], -[0,-1107,-1000], -[0,-687,-4376,-6696,-6697,-6698,-4377,-4000,-6699,-6700,-6701,-3957,-6702], +[0,-28,-849], +[0,-37,-1770,-2702,-9214,-9215,-613,-201,-9216,-9217,-5159,-316,-9218], [1,3,2149], [0,0,2150,2151,8], -[0,-519,-2410,-2541], -[0,-687,-6335,-6336,-3974,-4110,-4000,-4111,-4112,-6337,-5554,-4055], +[0,-51,-2,-34], +[0,-37,-2162,-5105,-178,-901,-201,-902,-474,-3501,-193,-108], [1,3,2153], [0,2154,2155,2156,4], -[0,-6703,-922,-6704,-5969,-6705], -[0,-932,-6706,-6707,-6708,-1344,-1534,-1788,-6709,-6710], -[0,-5514,-712,-4000,-3974,-687,-5550,-1573,-5545,-2547], +[0,-5160,-1401,-5161,-1817,-9219], +[0,-1,-3538,-3539,-3540,-10,-17,-15,-3541,-5162], +[0,-243,-217,-201,-178,-37,-267,-258,-384,-647], [1,3,2158], [0,2159,2160,2161,11], -[0,-2120], -[0,-3037,-519,-2410,-2541], -[0,-687,-5564,-5514,-6711,-6712,-6713,-6714,-4110,-3974,-4000,-3975,-5550,-3958], +[0,-4308], +[0,-5,-51,-2,-34], +[0,-37,-2134,-243,-2703,-5163,-5164,-9220,-901,-178,-201,-445,-267,-299], [1,3,2163], [0,0,0,2164,9], -[0,-687], +[0,-37], [1,3,2166], [0,0,2167,2168,4], -[0,-519,-1575,-6715,-2410,-2541], -[0,-687,-6716,-6717,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117,-4055], +[0,-51,-1432,-2704,-2,-34], +[0,-37,-2170,-3542,-178,-901,-201,-902,-474,-2071,-2555,-362,-2072,-825,-2073,-108], [1,3,2170], [0,187,2171,2172,10], -[0,-2198,-6718], -[0,-687,-714,-4002], +[0,-81,-9221], +[0,-37,-133,-752], [1,3,2174], [0,2175,2176,188,5], -[0,-1548,-2267,-714], -[0,-6719,-664,-693,-756,-6720,-6721,-1168,-1220,-1231,-1266,-2210,-2211], +[0,-23,-395,-133], +[0,-9222,-13,-940,-55,-5165,-2705,-32,-961,-359,-360,-27,-190], [1,3,2178], [0,117,2179,188,10], -[0,-693,-932,-940,-967,-1415,-6725,-6726,-1942], +[0,-940,-1,-12,-25,-8,-5166,-3544,-4], [1,3,2181], [0,2182,14,2183,10], -[0,-2219,-2267], -[0,-6727,-6728,-5554,-6729,-4783,-687,-3974,-4110,-5550,-6730,-5514,-2265], +[0,-2429,-395], +[0,-9224,-9225,-193,-3545,-2584,-37,-178,-901,-267,-2171,-243,-168], [1,3,2185], [0,2186,2187,76,4], -[0,-668,-2387,-1401,-1548,-2177,-1442,-6731,-1077,-2269,-303,-482,-4366,-6732,-480,-5676,-2267,-6733,-6734,-1366,-6735, --2297,-6736,-6737,-6738,-2591], -[0,-664,-523,-1654,-932,-2379,-4361,-2410,-3035,-3037,-3621,-3044,-3199,-3660,-3048,-665,-6739,-6740,-4369,-938,-6741, --4373,-4269,-939], +[0,-20,-44,-856,-23,-16,-101,-9226,-41,-139,-1908,-719,-4766,-9227,-841,-1813,-395,-9228,-9229,-793,-9230,-468,-9231, +-9232,-9233,-2457], +[0,-13,-194,-3,-1,-33,-3300,-2,-109,-5,-71,-143,-140,-421,-191,-239,-9234,-9235,-4767,-1220,-9236,-2572,-754,-1946], [1,3,2189], [0,2190,2191,2192,5], -[0,-3922], -[0,-351,-3267,-3136,-3044,-3037,-6742,-427,-428,-6743,-6744,-932,-6745,-969,-1100,-1415,-1548,-2127,-6746,-2375,-2379, --2410], -[0,-687,-2410,-3215,-6747,-6748,-4377,-5829,-3957], +[0,-3253], +[0,-62,-330,-29,-143,-5,-9237,-22,-19,-9238,-3546,-1,-9239,-64,-487,-8,-23,-14,-5167,-57,-33,-2], +[0,-37,-2,-74,-763,-1173,-613,-916,-316], [1,3,2194], [0,2195,2196,2197,5], -[0,-6749,-6750,-6751], -[0,-23,-40,-534,-664,-767,-932,-934,-940,-958,-967,-1344,-1471,-1474,-1475,-1482,-1489,-1492,-1534,-1654,-1942,-2210, --2384,-2417,-2501,-2503], -[0,-699,-6351,-6752], +[0,-9240,-1546,-5168], +[0,-11,-21,-96,-13,-26,-1,-185,-12,-9,-25,-10,-79,-675,-138,-187,-1237,-517,-17,-3,-4,-27,-82,-1130,-18,-93], +[0,-1053,-709,-9241], [1,3,2199], [0,2200,55,2201,4], -[0,-6753,-999,-6754,-1401,-6755,-6756], -[0,-699,-6351,-6757,-6758,-6759,-2059,-6234,-6760,-6761,-6762,-6763], +[0,-9242,-118,-9243,-856,-9244,-5169], +[0,-1053,-709,-9245,-5170,-9246,-597,-1823,-9247,-9248,-9249,-9250], [1,3,2203], [0,2204,2205,157,4], -[0,-2267,-2269,-2528], -[0,-3037,-427,-428,-652,-664,-668,-767,-932,-958,-965,-1166,-1654,-2125,-6313,-2410], +[0,-395,-139,-890], +[0,-5,-22,-19,-43,-13,-20,-26,-1,-9,-115,-1952,-3,-7,-5101,-2], [1,3,2207], [0,0,83,7,6], [1,3,2209], [0,0,2210,2211,10], -[0,-985,-2447,-2334], -[0,-3205,-6683,-682], +[0,-370,-1131,-177], +[0,-2032,-5155,-254], [1,3,2213], [0,2214,0,2215,5], -[0,-689], -[0,-6764,-4340,-6297,-6765,-6716,-4700,-6722,-4000,-640], +[0,-1389], +[0,-9251,-826,-5096,-5171,-2170,-2579,-1172,-201,-294], [1,3,2217], [0,0,2218,2219,6], -[0,-633,-6766,-1654,-1693], -[0,-510,-5411,-3262,-6767,-6768], +[0,-60,-9252,-3,-1443], +[0,-59,-1809,-116,-9253,-5172], [1,3,2221], [0,2222,2223,2224,4], -[0,-1494], -[0,-2198,-1654,-705], -[0,-3974,-4000,-1965,-3959,-5110,-6769,-705], +[0,-2366], +[0,-81,-3,-941], +[0,-178,-201,-495,-1757,-1790,-5173,-941], [1,3,2226], [0,182,2227,2228,5], -[0,-1510,-1607], -[0,-4004,-1001,-5855], +[0,-1091,-972], +[0,-76,-338,-1163], [1,3,2230], [0,2231,2232,2233,11], -[0,-4378,-6770,-1442,-6771,-6772], -[0,-932,-940,-1344,-1415,-1534,-1658,-1942], -[0,-4005,-6773,-6774,-708], +[0,-1307,-3547,-101,-9254,-9255], +[0,-1,-12,-10,-8,-17,-548,-4], +[0,-823,-9256,-2172,-149], [1,3,2235], [0,2236,2237,2238,6], -[0,-6775,-6776,-6777,-6778,-6779,-6780,-6781], -[0,-6782], -[0,-3496,-707], +[0,-9257,-3548,-3549,-5174,-3550,-3551,-9258], +[0,-9259], +[0,-420,-334], [1,3,2240], [0,0,2241,189,10], -[0,-849,-6783,-1304,-1600,-2424], +[0,-1394,-5175,-372,-220,-250], [1,3,2243], [0,0,2244,189,4], -[0,-23,-40,-4691,-709,-849,-1304,-6785,-1600,-1978,-2424,-2501], +[0,-11,-21,-2578,-1054,-1394,-372,-5176,-220,-160,-250,-18], [1,3,2246], [0,2247,2248,2249,4], -[0,-3523,-2741], -[0,-1654,-2384,-2541], -[0,-712,-5535,-775], +[0,-2039,-2464], +[0,-3,-82,-34], +[0,-217,-707,-24], [1,3,2251], [0,0,0,2252,5], -[0,-3974,-3770,-712,-5514], +[0,-178,-568,-217,-243], [1,3,2254], [0,0,2255,2256,5], -[0,-932,-936], -[0,-5514,-3974,-714], +[0,-1,-1945], +[0,-243,-178,-133], [1,3,2258], [0,2259,2260,2261,11], -[0,-2269,-6786], -[0,-526,-559,-668,-2320,-2322], -[0,-6787,-5554,-5514,-4000,-3974,-4001,-4002], +[0,-139,-3552], +[0,-179,-321,-20,-560,-39], +[0,-2173,-193,-243,-201,-178,-1758,-752], [1,3,2263], [0,0,2264,2265,6], -[0,-1003,-1452,-1654], -[0,-687,-3957,-6788], +[0,-411,-119,-3], +[0,-37,-316,-5177], [1,3,2267], [0,2268,190,2269,11], -[0,-6789,-6790,-1551,-6791], -[0,-4378,-1838,-6748,-4377,-5829,-6792,-3215,-6747,-687,-3957,-6722], +[0,-1547,-5178,-1664,-3553], +[0,-1307,-166,-1173,-613,-916,-2174,-74,-763,-37,-316,-1172], [1,3,2271], [0,2272,2273,2274,4], -[0,-6789,-6793,-6794,-6791], -[0,-350,-351,-1448,-2127,-2337], -[0,-3974,-4376,-6795,-3262], +[0,-1547,-2706,-9260,-3553], +[0,-77,-62,-795,-14,-1467], +[0,-178,-1770,-9261,-116], [1,3,2276], [0,0,2277,2278,4], -[0,-2384,-1415,-932,-1110,-2375,-1942,-190,-2410,-3136,-3037,-2411,-959,-940], -[0,-719,-3957,-5829,-3215,-687,-6748,-4377,-4378], +[0,-82,-8,-1,-56,-57,-4,-50,-2,-29,-5,-84,-145,-12], +[0,-58,-316,-916,-74,-37,-1173,-613,-1307], [1,3,2280], [0,2281,2282,2283,5], -[0,-1107,-815,-1548,-6796,-6797,-1077,-1376,-1646,-3767,-2270,-831,-6798,-2271,-796], -[0,-1788,-664,-2446,-1654,-2210,-1104,-2177,-708,-1753,-21,-1365,-1972,-23,-43,-2174,-40,-1656,-539,-6799,-6800,-6801,-36, --741], -[0,-5890,-3240,-3276,-6802,-720], +[0,-28,-509,-23,-5179,-5180,-41,-195,-88,-3238,-1264,-1216,-5181,-601,-295], +[0,-15,-13,-125,-3,-27,-3019,-16,-149,-285,-48,-212,-181,-11,-174,-122,-21,-974,-333,-5182,-9262,-9263,-300,-1212], +[0,-1815,-648,-566,-9264,-482], [1,3,2285], [0,2286,2287,146,4], -[0,-86,-3534], -[0,-3536,-3537,-3535], +[0,-49,-3213], +[0,-4580,-4581,-1142], [1,3,2289], [0,0,2290,2291,6], -[0,-526,-528,-535,-546,-6017,-558,-566,-708,-767,-855,-932,-940,-967,-1415,-1639,-1942,-2125,-2127,-2128,-2137,-2143, --2517], -[0,-5839,-525,-4795,-6803,-3184,-6804,-6805,-3264,-6806,-6807,-6722,-6808,-6809,-6810,-6811,-6812,-6813,-6814,-6815,-2265, --6816,-6817,-6818,-6819,-3110], +[0,-179,-91,-270,-1379,-3470,-253,-429,-149,-26,-944,-1,-12,-25,-8,-361,-4,-7,-14,-275,-347,-807,-2009], +[0,-708,-281,-446,-9265,-349,-9266,-9267,-31,-2175,-9268,-1172,-9269,-2707,-1836,-1837,-5183,-9270,-2708,-5184,-168,-5185, +-1174,-1339,-9271,-277], [1,3,2293], [0,0,55,2294,6], -[0,-5389,-6820,-997,-6821,-6822,-5078,-6823], +[0,-827,-2709,-410,-1838,-3554,-3352,-9272], [1,3,2296], [0,2297,191,2298,5], -[0,-651,-6824,-812,-5397,-6825,-2155,-2453], -[0,-724,-6826,-6827,-5401,-1004,-6828,-1334,-5827], +[0,-454,-9273,-35,-2632,-2710,-497,-989], +[0,-367,-1548,-2711,-356,-40,-2712,-103,-252], [1,3,2300], [0,2301,31,7,4], -[0,-6829,-1370,-2062,-5972], +[0,-2713,-515,-198,-5039], [1,3,2303], [0,2304,2305,2306,4], -[0,-2153,-668,-2550,-2369,-2194,-2297], -[0,-1344,-932,-2469,-928,-1110,-1942,-190,-2410,-3037,-1534,-3610,-3041,-6830,-6831,-2411,-6832,-3664,-2156,-4373,-6593, --6833,-940,-967,-6834,-6835,-4814], -[0,-6836,-5920,-5921,-726,-3957,-6837], +[0,-496,-20,-98,-691,-737,-468], +[0,-10,-1,-30,-87,-56,-4,-50,-2,-5,-17,-2045,-419,-9274,-5186,-84,-3555,-105,-189,-2572,-922,-9275,-12,-25,-9276,-3556, +-911], +[0,-1175,-2654,-918,-284,-316,-5187], [1,3,2308], [0,2309,2310,2311,4], -[0,-1460], -[0,-3037,-652,-711,-6838,-6839,-6840,-3589,-2105,-2177,-2362,-2379,-2410,-2424,-6841,-2548], -[0,-6842,-727,-3870,-6843,-6844,-6845,-5558], +[0,-272], +[0,-5,-43,-308,-2176,-9277,-9278,-1144,-111,-16,-886,-33,-2,-250,-5188,-262], +[0,-2714,-335,-1150,-9279,-9280,-1340,-828], [1,3,2313], [0,2314,55,2315,4], -[0,-6846,-3780,-1119,-6847,-6848], -[0,-727,-4634,-6005,-3870,-6849,-6850,-4055,-6582,-6851,-6852,-6853], +[0,-9281,-2049,-324,-9282,-5189], +[0,-335,-1017,-1166,-1150,-2715,-9283,-108,-479,-3557,-3558,-9284], [1,3,2317], [0,2318,2319,2320,4], -[0,-812,-1045,-1840,-2445], -[0,-932,-1654,-1788,-2293], -[0,-3161,-3578,-5401,-729,-6854], +[0,-35,-953,-735,-2005], +[0,-1,-3,-15,-123], +[0,-53,-113,-356,-218,-5190], [1,3,2322], [0,0,84,2323,11], -[0,-729,-1004,-6855,-3556], +[0,-218,-40,-5191,-4586], [1,3,2325], [0,0,2326,7,4], -[0,-932,-1415,-2210], +[0,-1,-8,-27], [1,3,2328], [0,2329,2330,2331,4], -[0,-812,-6856], -[0,-5028,-86,-3307,-3244,-190,-3198,-3617,-3733,-3037,-4203,-427,-428,-519,-652,-708,-932,-940,-954,-967,-1004,-1010, --1103,-1344,-1534,-1671,-1771,-1806,-1942,-2251,-2293,-2892,-2402,-2410], -[0,-729,-6857,-1671,-6858,-1004], +[0,-35,-9285], +[0,-2600,-49,-63,-290,-50,-169,-264,-2529,-5,-1015,-22,-19,-51,-43,-149,-1,-12,-1405,-25,-40,-850,-340,-10,-17,-375,-65, +-1246,-4,-134,-123,-380,-124,-2], +[0,-218,-1341,-375,-3559,-40], [1,3,2333], [0,0,2334,2335,5], -[0,-2581,-3733,-3037,-3664,-1010,-2379,-2410,-2466,-6859,-2469], -[0,-729,-2071,-6858,-1004], +[0,-329,-2529,-5,-105,-850,-33,-2,-104,-923,-30], +[0,-218,-688,-3559,-40], [1,3,2337], [0,0,2338,2339,8], -[0,-6447,-3037,-3664,-672,-6860,-932,-944,-6861,-1942,-6862,-6570,-2267,-2410,-2423,-2469], -[0,-4000,-3444,-6863,-6864,-687,-6198,-2427,-1965,-6865,-3276,-6324,-6866], +[0,-2690,-5,-105,-1388,-1839,-1,-1403,-2716,-4,-9286,-1544,-395,-2,-1270,-30], +[0,-201,-748,-1023,-5192,-37,-3488,-135,-495,-9287,-566,-658,-9288], [1,3,2341], [0,0,2342,2343,5], -[0,-2541,-519,-864,-6867,-6868,-888,-6869,-1974,-6870,-6871,-6872,-6873,-6874,-6875,-2310,-6876,-6877,-1344,-6878,-2006, --6879,-932,-6880,-6881,-6882,-1548,-6883,-2177,-6884,-6885,-6886,-1053,-6887,-6888,-1310,-1689,-1783,-6889,-2019,-1276, --2094,-6890,-2424,-6891,-23,-6892,-1534,-6893,-6894,-710,-6895,-6896,-6897,-6898,-41,-2099,-946], -[0,-6899,-3110,-6107], +[0,-34,-51,-1395,-5193,-9289,-337,-2717,-642,-9290,-9291,-9292,-9293,-5194,-9294,-4331,-5195,-9295,-10,-9296,-6,-9297,-1, +-9298,-9299,-9300,-23,-9301,-16,-9302,-9303,-9304,-1638,-9305,-9306,-3039,-519,-976,-9307,-36,-247,-146,-9308,-250,-9309, +-11,-9310,-17,-9311,-9312,-455,-9313,-9314,-5196,-9315,-132,-1692,-1404], +[0,-1176,-277,-1168], [1,3,2345], [0,0,2346,2347,6], -[0,-652,-932,-943,-958,-963,-966,-968,-974], -[0,-736,-1334,-6900,-4616], +[0,-43,-1,-83,-9,-211,-75,-67,-129], +[0,-942,-103,-9316,-1308], [1,3,2349], [0,0,2350,2351,5], -[0,-1788,-1654,-932,-821,-966,-958,-968,-943,-974], -[0,-737,-1334,-4610,-4616,-6901], +[0,-15,-3,-1,-780,-75,-9,-67,-83,-129], +[0,-846,-103,-2085,-1308,-9317], [1,3,2353], [0,2354,0,2355,4], -[0,-6902,-6903,-1630,-6904,-6905,-5983,-6906,-6907], -[0,-739,-6908,-5887,-1573,-687], +[0,-3560,-9318,-462,-2718,-9319,-3461,-5197,-9320], +[0,-541,-2177,-830,-258,-37], [1,3,2357], [0,2358,0,2359,9], -[0,-1630,-6909,-6910,-739], -[0,-687,-5732,-739,-6908,-5887,-1573], +[0,-462,-2178,-9321,-541], +[0,-37,-762,-541,-2177,-830,-258], [1,3,2361], [0,2362,0,2363,11], -[0,-6911], -[0,-739,-6912,-6913], +[0,-9322], +[0,-541,-9323,-3561], [1,3,2365], [0,0,2366,2367,4], -[0,-6914,-2319], -[0,-5845,-6915,-6916,-6917,-4865,-812], +[0,-9324,-85], +[0,-477,-2179,-2719,-836,-94,-35], [1,3,2369], [0,0,2370,2371,5], -[0,-6918,-3664,-6919,-2410,-2469], -[0,-743,-6920], +[0,-5198,-105,-9325,-2,-30], +[0,-336,-1840], [1,3,2373], [0,2374,81,2375,4], -[0,-743,-746], -[0,-743,-5401], +[0,-336,-1213], +[0,-336,-356], [1,3,2377], [0,2378,2379,2380,10], -[0,-6920,-812,-6825,-2155], -[0,-729,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293], -[0,-729,-1004,-5401,-6858], +[0,-1840,-35,-2710,-497], +[0,-218,-1,-83,-9,-211,-75,-67,-129,-3,-15,-123], +[0,-218,-40,-356,-3559], [1,3,2382], [0,0,0,2383,4], -[0,-743,-6921,-6922], +[0,-336,-9326,-9327], [1,3,2385], [0,2386,2387,2388,4], -[0,-6923], -[0,-633,-1646,-1719,-6924,-1813,-6925,-2416], -[0,-699,-6351,-4865], +[0,-9328], +[0,-60,-88,-2389,-9329,-551,-9330,-112], +[0,-1053,-709,-94], [1,3,2390], [0,2391,2392,2393,4], -[0,-2654,-1108,-2168,-1759,-2182], -[0,-824,-1415,-1344,-1623,-774,-932,-825,-1110,-6926,-2501,-1942,-767,-21,-190,-533,-2410,-23,-3037,-1041,-1534,-1771,-86, --965,-3560,-2251,-40,-2411,-6927,-959,-960,-32,-958,-6928,-6929,-978,-940,-967,-3748,-6930,-3307], -[0,-2501,-3862,-6931,-6932,-6351], +[0,-313,-1413,-646,-1446,-1121], +[0,-150,-8,-10,-259,-407,-1,-232,-56,-9331,-18,-4,-26,-48,-50,-86,-2,-11,-5,-271,-17,-65,-49,-115,-529,-134,-21,-84,-5199, +-145,-180,-156,-9,-5200,-617,-151,-12,-25,-315,-3562,-63], +[0,-18,-107,-2720,-2721,-709], [1,3,2395], [0,2396,2397,7,4], -[0,-1107,-1645,-1650,-6933,-2347,-2430,-2550], -[0,-2125,-2322,-2320], +[0,-28,-92,-72,-9332,-69,-1473,-98], +[0,-7,-39,-560], [1,3,2399], [0,0,27,2400,4], -[0,-6934,-6935,-3262,-6936,-6937,-6938], +[0,-5201,-1841,-116,-9333,-9334,-9335], [1,3,2402], [0,2403,2404,2405,4], -[0,-1559,-750,-6939], -[0,-3040,-3052,-2410,-2006,-2019], -[0,-2006,-2410,-6935,-6940,-6941], +[0,-1666,-4131,-9336], +[0,-47,-89,-2,-6,-36], +[0,-6,-2,-1841,-9337,-9338], [1,3,2407], [0,2408,2409,2410,4], -[0,-728,-6942,-6943,-6944,-3496,-999,-1758,-2177,-2313], -[0,-6945,-652,-1412,-2123], -[0,-752,-3323,-687], +[0,-1057,-9339,-9340,-9341,-420,-118,-463,-16,-3116], +[0,-9342,-43,-196,-1461], +[0,-943,-351,-37], [1,3,2412], [0,0,0,2413,5], -[0,-6946,-6947,-6948,-6949,-6950,-6951,-6952,-6953,-6954,-6955,-6956,-6957,-6958,-6959,-6960,-6961,-6962,-6963,-6964, --6965,-6966,-6967,-6968,-6969,-6970,-6971,-6972,-6973,-6974,-6975,-6976,-6977,-6978,-6979,-6980,-6981,-6982,-6983,-6984, --6985,-6986,-6987,-6988,-3582,-6989,-5396], +[0,-5202,-3563,-924,-3564,-2722,-3565,-2723,-5203,-9343,-5204,-5205,-5206,-5207,-9344,-5208,-9345,-5209,-9346,-5210,-5211, +-5212,-9347,-5213,-9348,-5214,-5215,-5216,-9349,-5217,-5218,-5219,-5220,-5221,-9350,-3566,-5222,-9351,-5223,-5224,-5225, +-5226,-5227,-9352,-567,-1549,-706], [1,3,2415], [0,2416,2417,2418,4], -[0,-1792,-2453], -[0,-465,-932,-1004,-1654,-1788,-2293], -[0,-754,-1004,-729,-5401], +[0,-241,-989], +[0,-772,-1,-40,-3,-15,-123], +[0,-368,-40,-218,-356], [1,3,2420], [0,2421,2422,2423,6], -[0,-5672,-1362,-1442,-6990], -[0,-3660,-3037,-6991,-427,-428,-3899,-767,-932,-6992,-940,-948,-958,-966,-979,-1344,-1534,-6689,-1942,-6993,-2410,-2469], -[0,-6994,-3870,-727], +[0,-1812,-1962,-101,-5228], +[0,-421,-5,-9353,-22,-19,-1009,-26,-1,-9354,-12,-246,-9,-75,-1948,-10,-17,-5156,-4,-9355,-2,-30], +[0,-2180,-1150,-335], [1,3,2425], [0,2426,2427,2428,4], -[0,-1442,-6995,-6996,-1646,-2105], -[0,-1654,-1788,-2198,-2200,-2210,-2541], -[0,-4005,-756], +[0,-101,-9356,-9357,-88,-111], +[0,-3,-15,-81,-394,-27,-34], +[0,-823,-55], [1,3,2430], [0,2431,2432,2433,4], -[0,-6997,-1111,-1630], -[0,-519,-999,-1849,-6909,-2541], -[0,-5732,-687,-6351,-6998,-6997,-6656,-6999,-702,-1076,-5827,-1107,-7000,-1705,-5922,-7001,-6582,-5398,-7002], +[0,-2181,-204,-462], +[0,-51,-118,-492,-2178,-34], +[0,-762,-37,-709,-9358,-2181,-128,-660,-507,-303,-252,-28,-3567,-734,-535,-9359,-479,-1528,-3568], [1,3,2435], [0,2436,2437,2438,4], -[0,-1116,-7003,-674,-7004,-7005,-1351,-7006], -[0,-652,-519,-2392,-1722,-2210,-932,-1110,-190,-7007,-2410,-3037,-2364,-2411], -[0,-3214,-758,-7008,-6596,-6531,-1437,-3967,-1334,-1342,-5735,-1116,-2105,-2435,-5150,-6826], +[0,-387,-9360,-231,-5229,-9361,-459,-3569], +[0,-43,-51,-155,-197,-27,-1,-56,-50,-9362,-2,-5,-1129,-84], +[0,-45,-4132,-9363,-3535,-5139,-248,-353,-103,-388,-1533,-387,-111,-200,-1155,-1548], [1,3,2440], [0,0,0,2441,11], -[0,-759,-7009,-7010,-7011,-7012,-7013,-7014,-7015,-7016,-7017,-7018,-7019,-7020], +[0,-4133,-9364,-9365,-9366,-9367,-9368,-9369,-9370,-9371,-9372,-9373,-9374,-9375], [1,3,2443], [0,2444,2445,2446,5], -[0,-7021,-1370,-6001,-7022,-7023], -[0,-5935,-2155,-2250,-2320,-2322], -[0,-770], +[0,-9376,-515,-5045,-9377,-5230], +[0,-3455,-497,-97,-560,-39], +[0,-626], [1,3,2448], [0,2449,2450,41,5], -[0,-1580,-1792], -[0,-1415,-1967,-2006,-2019,-2501], +[0,-1434,-241], +[0,-8,-121,-6,-36,-18], [1,3,2452], [0,2453,2454,2455,10], -[0,-28,-7024,-683,-722,-7025,-7026,-812,-1047,-1099,-1111,-1116,-7027,-1366,-7028,-1393,-1435,-1548,-1549,-1591,-1630, --7029,-5668,-7030,-1863,-1876,-1889,-7031,-7032,-7033,-2103,-2218,-2331,-2347,-2460], -[0,-510,-767,-1045,-1098,-1415,-1722,-7034,-2187,-7035,-2261,-2463,-2541], -[0,-762,-1847,-775,-7036], +[0,-2286,-9378,-540,-456,-9379,-2724,-35,-339,-1229,-204,-387,-9380,-793,-9381,-1081,-730,-23,-461,-733,-462,-9382,-3421, +-9383,-167,-142,-38,-9384,-9385,-2725,-874,-288,-379,-69,-70], +[0,-59,-26,-953,-486,-8,-197,-5231,-393,-3570,-1465,-887,-34], +[0,-4134,-249,-24,-3571], [1,3,2457], [0,2458,2459,2460,8], -[0,-3620,-3222], -[0,-86,-190,-7037,-7038,-7039,-3470,-7040,-3471,-3472,-7041,-7042,-367,-7043,-3136,-3037,-4372,-767,-932,-940,-959,-967, --1344,-1415,-1534,-1942,-2174,-2210,-2410,-2411], -[0,-763,-7044,-7045,-7046,-2166,-7047,-7048], +[0,-2517,-1491], +[0,-49,-50,-5232,-9386,-9387,-297,-925,-298,-749,-618,-1177,-245,-1178,-29,-5,-279,-26,-1,-12,-145,-25,-10,-8,-17,-4,-122, +-27,-2,-84], +[0,-1058,-9388,-5233,-3572,-987,-9389,-9390], [1,3,2462], [0,0,0,2463,4], -[0,-763,-3577,-3445,-3215,-764,-7046,-2166,-7049,-4107,-5418,-6201,-7050], +[0,-1058,-192,-46,-74,-2331,-3572,-987,-5234,-824,-1530,-3489,-5235], [1,3,2465], [0,0,2466,2467,4], -[0,-5285,-5291,-7051,-7052,-7053,-7054,-7055,-7056,-7057,-3037,-932,-7058,-954,-958,-960,-964,-965,-7059,-968,-971,-978, --1110,-7060,-1608,-7061,-1768,-1942,-2910,-7062,-2402,-2410,-7063], -[0,-763,-7050,-2166,-765,-3577,-3445], +[0,-4898,-4899,-9391,-9392,-9393,-9394,-3573,-9395,-1842,-5,-1,-9396,-1405,-9,-180,-256,-115,-9397,-67,-784,-151,-56, +-3574,-973,-9398,-1108,-4,-470,-9399,-124,-2,-9400], +[0,-1058,-5235,-987,-4135,-192,-46], [1,3,2469], [0,2470,0,2471,4], -[0,-7064,-7065], -[0,-6527,-7066,-6932,-7067,-7068,-7069,-7070,-7071,-7072,-7073,-7074,-7075,-7076,-7077,-3264,-775,-3214,-3577,-3578], +[0,-9401,-9402], +[0,-292,-2726,-2721,-3575,-5236,-2727,-9403,-9404,-9405,-9406,-9407,-9408,-9409,-9410,-31,-24,-45,-192,-113], [1,3,2473], [0,2474,2475,2476,5], -[0,-7078,-769], -[0,-7079,-7080,-3037,-3664,-3665,-932,-1942,-2410,-2469,-7081], -[0,-7082,-7083,-7084,-7085], +[0,-9411,-225], +[0,-9412,-1024,-5,-105,-1005,-1,-4,-2,-30,-9413], +[0,-9414,-9415,-764,-1342], [1,3,2478], [0,2479,2480,2481,5], -[0,-1729], -[0,-1788,-664,-1722,-1344,-1654,-2550,-2125,-2127,-2177,-708,-1004,-2501,-2250,-720,-2410,-3035,-3037,-617,-1534,-2186, --2503,-3621,-2516,-86,-2251,-4063,-1655,-6483,-796,-7086,-3307], -[0,-4213,-1334,-2435,-1961,-510,-5867,-6201,-6198,-3966,-2006,-5269,-4865,-6989,-5388,-2533,-5998], +[0,-188], +[0,-15,-13,-197,-10,-3,-98,-7,-14,-16,-149,-40,-18,-97,-482,-2,-109,-5,-163,-17,-1122,-93,-71,-818,-49,-134,-900,-1671, +-1334,-295,-9416,-63], +[0,-905,-103,-200,-171,-59,-656,-3489,-3488,-144,-6,-501,-94,-1549,-1158,-743,-1535], [1,3,2483], [0,2484,2485,2486,6], -[0,-2518,-7087,-7088], -[0,-1415,-1344,-932,-1650,-2125,-527,-533,-1534,-86,-2251,-7089,-7090,-3307], -[0,-7091,-7092,-7084,-7085,-7093,-7094,-7095,-7096], +[0,-222,-3576,-9417], +[0,-8,-10,-1,-72,-7,-162,-86,-17,-49,-134,-9418,-9419,-63], +[0,-1843,-9420,-764,-1342,-9421,-5237,-1343,-3577], [1,3,2488], [0,2489,2490,7,5], -[0,-7097,-7098,-7099,-760,-7100,-7101,-7102,-1370,-7103,-7104,-1995,-7105], -[0,-5834,-932,-5935,-1788,-1798,-7106,-2155,-2177,-2322], +[0,-9422,-9423,-9424,-2992,-9425,-9426,-9427,-515,-5238,-9428,-3088,-9429], +[0,-244,-1,-3455,-15,-1109,-9430,-497,-16,-39], [1,3,2492], [0,0,0,2493,5], -[0,-7107,-770,-7108,-7109,-7110,-7111,-7112,-7113,-7114,-7115,-7116,-7117,-7118,-7119,-7120,-7121,-7122,-7123,-7124,-7125], +[0,-711,-626,-9431,-5239,-9432,-9433,-9434,-9435,-9436,-9437,-9438,-9439,-9440,-9441,-9442,-9443,-9444,-9445,-5240,-9446], [1,3,2495], [0,192,2496,2497,4], -[0,-652,-932,-7126,-958,-964,-966,-967,-1654,-7127,-1771,-1942], -[0,-6838,-3215], +[0,-43,-1,-9447,-9,-256,-75,-25,-3,-9448,-65,-4], +[0,-2176,-74], [1,3,2499], [0,2500,2501,2502,4], -[0,-7128,-7129,-7130,-7131,-7132,-7133,-7134,-481,-668,-6793,-719,-7135,-7136,-7137,-7138,-7139,-7140,-7141,-7142,-2177, --2654], -[0,-4036,-3199,-1639,-1645], -[0,-7143,-7144,-707,-6513,-6514,-7145,-7146,-7147,-7148], +[0,-9449,-9450,-9451,-9452,-9453,-9454,-9455,-1045,-20,-2706,-58,-9456,-9457,-9458,-9459,-9460,-9461,-3578,-3579,-16,-313], +[0,-651,-140,-361,-92], +[0,-9462,-619,-334,-5134,-2168,-9463,-9464,-9465,-224], [1,3,2504], [0,2505,2506,2507,4], -[0,-1370,-2231,-7149], -[0,-1654,-2198,-1612,-651], -[0,-775,-3215,-3270,-3271], +[0,-515,-130,-5241], +[0,-3,-81,-1435,-454], +[0,-24,-74,-1739,-1282], [1,3,2509], [0,0,2510,2511,9], -[0,-190,-7150,-7151,-932,-1889,-2127,-2447], -[0,-1889,-3583,-775,-4159,-7152,-7153,-7154], +[0,-50,-2182,-3580,-1,-38,-14,-1131], +[0,-38,-223,-24,-3273,-9466,-1179,-2728], [1,3,2513], [0,0,2514,2515,5], -[0,-7155,-4647,-3621,-3037,-4201,-7156,-932,-7157,-940,-967,-7158,-1344,-7159,-1449,-1534,-1654,-1763,-1942,-2923,-7160, --2410,-7161,-7162], -[0,-775,-7163,-4108], +[0,-2183,-614,-71,-5,-1014,-5242,-1,-5243,-12,-25,-5244,-10,-9467,-78,-17,-3,-415,-4,-994,-2184,-2,-5245,-5246], +[0,-24,-3581,-1301], [1,3,2517], [0,2518,2519,2520,4], -[0,-2773,-1889,-7164,-1915,-7165,-2791,-1934,-2177], -[0,-21,-23,-40,-86,-3307,-7166,-533,-767,-774,-825,-920,-932,-940,-958,-1041,-1344,-1415,-1419,-1521,-1522,-1534,-1623, --1643,-1771,-1908,-1927,-1942,-2162,-2163,-2251,-2269,-2275,-2286,-2287,-2437,-2501], -[0,-2501,-775,-5932,-2435,-6024], +[0,-1484,-38,-2729,-1986,-2730,-2469,-464,-16], +[0,-48,-11,-21,-49,-63,-1025,-86,-26,-407,-232,-1219,-1,-12,-9,-271,-10,-8,-176,-219,-1092,-17,-259,-374,-65,-493,-805,-4, +-80,-467,-134,-139,-154,-396,-1701,-438,-18], +[0,-18,-24,-831,-200,-657], [1,3,2522], [0,2523,2524,2525,5], -[0,-784,-1889,-1429,-2168,-2182,-3180], -[0,-824,-2746,-1415,-2162,-1344,-1623,-774,-932,-825,-928,-1110,-2289,-2501,-7167,-1942,-683,-767,-21,-190,-533,-778, --2410,-23,-7168,-7169,-3037,-1534,-1771,-2163,-3751,-86,-965,-3560,-7170,-2251,-40,-959,-748,-960,-958,-7171,-6929,-978, --940,-967,-1643,-3748,-6930,-3307], -[0,-784,-775,-2746,-683,-5055,-928,-2501,-7172,-7173,-7174,-1644,-6684,-7175,-7176], +[0,-369,-38,-1236,-646,-1121,-1136], +[0,-150,-1719,-8,-80,-10,-259,-407,-1,-232,-87,-56,-883,-18,-9468,-4,-540,-26,-48,-50,-86,-141,-2,-11,-9469,-5247,-5,-17, +-65,-467,-1503,-49,-115,-529,-9470,-134,-21,-145,-508,-180,-9,-9471,-617,-151,-12,-25,-374,-315,-3562,-63], +[0,-369,-24,-1719,-540,-4861,-87,-18,-2731,-2185,-9472,-228,-834,-620,-1844], [1,3,2527], [0,2528,2529,2530,4], -[0,-7177,-2888,-6584,-2788,-6585], -[0,-2386,-2469,-2410,-3037,-1333,-2581,-7178,-7179,-3664], -[0,-775,-3585,-7180], +[0,-3582,-2478,-3532,-2468,-1833], +[0,-561,-30,-2,-5,-488,-329,-5248,-9473,-105], +[0,-24,-1499,-9474], [1,3,2532], [0,2533,2534,2535,4], -[0,-1620,-2232], -[0,-652,-7181,-928,-932,-7182,-1654,-2127], -[0,-775,-3272,-3579,-3215,-7183,-7184,-3262,-5260,-4132,-3926], +[0,-2381,-811], +[0,-43,-9475,-87,-1,-9476,-3,-14], +[0,-24,-363,-2043,-74,-9477,-3583,-116,-704,-400,-423], [1,3,2537], [0,0,2538,2539,4], -[0,-7150,-635,-1107,-1889,-1891,-1927,-2177,-2281,-2282,-7185], -[0,-775,-7186,-4682,-7187], +[0,-2182,-301,-28,-38,-682,-805,-16,-182,-558,-9478], +[0,-24,-5249,-2576,-5250], [1,3,2541], [0,0,2542,2543,4], -[0,-526,-558,-708,-1127,-6114,-1405,-1654,-2081,-2111], -[0,-775,-5559,-7188,-2265,-3673], +[0,-179,-253,-149,-54,-2149,-66,-3,-984,-416], +[0,-24,-503,-5251,-168,-611], [1,3,2545], [0,2546,2547,2548,4], -[0,-1532,-7189], -[0,-518,-1889,-7190,-7191], -[0,-775,-6454,-1644,-7192,-7193,-1889,-3583], +[0,-1969,-2732], +[0,-157,-38,-9479,-9480], +[0,-24,-575,-228,-765,-1845,-38,-223], [1,3,2550], [0,2551,2552,2553,11], -[0,-7194,-7195,-781,-1582], -[0,-7196,-7197,-932,-940,-967,-1110,-1942], -[0,-7198,-7199,-7200], +[0,-9481,-5252,-1059,-434], +[0,-3584,-5253,-1,-12,-25,-56,-4], +[0,-2733,-5254,-5255], [1,3,2555], [0,0,2556,2557,4], -[0,-23,-40,-42,-190,-7150,-7201,-7202,-5685,-3136,-4647,-3037,-6630,-7203,-533,-668,-679,-781,-940,-967,-1059,-1415,-1449, --1620,-1942,-2091,-2392,-2393,-2410,-2411], -[0,-775,-5553,-2410,-5411,-2414,-3694,-3762], +[0,-11,-21,-137,-50,-2182,-9482,-5256,-2641,-29,-614,-5,-1337,-9483,-86,-20,-117,-1059,-12,-25,-412,-8,-78,-2381,-4,-378, +-155,-3121,-2,-84], +[0,-24,-230,-2,-1809,-1470,-650,-4628], [1,3,2559], [0,2560,2561,2562,5], -[0,-7204,-743,-1335,-746], -[0,-1788,-1654,-932,-729,-2293,-617,-744,-745,-966,-958,-968,-943,-963,-974], -[0,-7204,-7205,-5401,-1004], +[0,-3585,-336,-633,-1213], +[0,-15,-3,-1,-218,-123,-163,-581,-2330,-75,-9,-67,-83,-211,-129], +[0,-3585,-2734,-356,-40], [1,3,2564], [0,2565,2566,2567,4], -[0,-789,-790,-791,-2262], -[0,-351,-3621,-3037,-885,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], -[0,-3966,-788,-7206,-3215,-1838,-3270,-6231,-6408,-5827,-3960,-7207,-3445,-3100], +[0,-1939,-1940,-4139,-3108], +[0,-62,-71,-5,-1064,-3,-4,-14,-1696,-1258,-81,-33,-2], +[0,-144,-779,-5257,-74,-166,-1739,-447,-536,-252,-569,-9484,-46,-52], [1,3,2569], [0,0,2570,2571,5], -[0,-351,-3621,-3037,-815,-885,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], -[0,-5827,-3960,-788,-7208,-3445,-3100], +[0,-62,-71,-5,-509,-1064,-3,-4,-14,-1696,-1258,-81,-33,-2], +[0,-252,-569,-779,-426,-46,-52], [1,3,2573], [0,0,2574,2575,5], -[0,-351,-3621,-3037,-789,-7209,-815,-885,-1654,-7210,-1942,-2127,-2135,-2136,-2198,-2262,-2379,-2410], -[0,-788,-1838,-3215,-5845,-7206,-5827,-3445,-3100], +[0,-62,-71,-5,-1939,-9485,-509,-1064,-3,-1846,-4,-14,-1696,-1258,-81,-3108,-33,-2], +[0,-779,-166,-74,-477,-5257,-252,-46,-52], [1,3,2577], [0,0,2578,2579,9], -[0,-351,-3621,-3037,-789,-815,-885,-1004,-1654,-1942,-2127,-2135,-2136,-2198,-2379,-2410], -[0,-788,-6231,-3270,-3445,-3100], +[0,-62,-71,-5,-1939,-509,-1064,-40,-3,-4,-14,-1696,-1258,-81,-33,-2], +[0,-779,-447,-1739,-46,-52], [1,3,2581], [0,34,2582,2583,4], -[0,-7211,-3621,-3037,-543,-756,-1646,-1654,-1788,-2210,-2375,-2379,-2410,-2417,-2501,-2503], -[0,-788,-7212,-7213,-792,-4055,-7214,-7215,-7216,-7217,-7218], +[0,-5258,-71,-5,-2977,-55,-88,-3,-15,-27,-57,-33,-2,-1130,-18,-93], +[0,-779,-9486,-9487,-2995,-108,-9488,-9489,-9490,-9491,-9492], [1,3,2585], [0,2586,2587,149,8], -[0,-1693,-1107,-714,-1548,-2456,-1040,-3635,-2114,-615,-7219,-1959,-719,-1399,-695,-5203,-3611,-7220,-3610,-7221,-1366, --7222,-7223,-7224,-930,-3608,-7225,-3604], -[0,-1788,-2359,-664,-1654,-2210,-932,-729,-753,-571,-1077,-1689,-1942,-7226,-756,-21,-633,-2211,-23,-528,-711,-2187,-43, --3630,-3633,-40,-966,-951,-2082,-958,-539,-968,-940,-943,-967,-974,-6034], +[0,-1443,-28,-133,-23,-2007,-510,-4600,-126,-114,-3586,-362,-58,-966,-624,-4886,-4596,-5259,-2045,-9493,-793,-3587,-3588, +-9494,-408,-4595,-9495,-4594], +[0,-15,-161,-13,-3,-27,-1,-218,-158,-777,-41,-519,-4,-3589,-55,-48,-60,-190,-11,-91,-308,-393,-174,-4599,-3220,-21,-75, +-783,-346,-9,-333,-67,-12,-83,-25,-129,-2657], [1,3,2589], [0,0,2590,2591,4], -[0,-556,-558,-566,-633,-932,-7227,-1339,-1650,-7228,-2322,-2339,-2416,-7229,-2491], -[0,-7230,-7231,-7232,-7233,-2446], +[0,-580,-253,-429,-60,-1,-9496,-413,-72,-9497,-39,-2447,-112,-9498,-742], +[0,-2735,-2736,-5260,-9499,-125], [1,3,2593], [0,2594,0,2595,4], -[0,-2359,-5413,-668,-809,-812,-999,-7234,-2555,-640,-1536,-1548,-7235,-680,-1040,-1958,-615,-6797,-910,-1077,-1646,-7236, --719,-2369,-2430,-3628,-690,-695,-7237,-722,-1018,-1574,-1948,-7238,-7239,-995,-5987,-2297,-7240,-7241,-2313,-1394,-3626], -[0,-4864,-4865,-795,-7242,-4866,-4867,-4868,-3095,-7243,-4043,-7244,-7245,-4004,-3634], +[0,-161,-4916,-20,-542,-35,-118,-3590,-992,-294,-1663,-23,-9500,-481,-510,-286,-114,-5180,-543,-41,-88,-9501,-58,-691, +-1473,-750,-1616,-624,-2186,-456,-1070,-638,-520,-9502,-9503,-1634,-5042,-468,-9504,-3591,-3116,-1655,-2046], +[0,-572,-94,-483,-9505,-1517,-1518,-913,-131,-1550,-473,-5261,-5262,-76,-61], [1,3,2597], [0,2598,2599,7,5], -[0,-668,-7246,-2524,-720,-1564,-3532,-7247], -[0,-664,-1654,-2177,-1942,-3035,-755,-3621,-1660,-2174], +[0,-20,-9506,-2010,-482,-4239,-4579,-5263], +[0,-13,-3,-16,-4,-109,-386,-71,-1438,-122], [1,3,2601], [0,2602,2603,2604,5], -[0,-7248,-7249,-7250,-7251,-7252,-7253,-7254,-7255,-798,-7256,-7257,-6258,-7258,-7259,-799,-801,-7260,-7261,-7262,-7263, --7264,-7265,-7266,-7267,-7268,-800,-7269,-7270,-7271,-7272], -[0,-1654,-932,-2127,-2468,-7273,-2967,-4062,-7274,-3266,-351], -[0,-797,-5092,-7275,-3839,-5176,-659], +[0,-5264,-9507,-9508,-9509,-9510,-5265,-3592,-9511,-1941,-9512,-9513,-2674,-9514,-5266,-1942,-2333,-9515,-5267,-5268, +-9516,-5269,-9517,-9518,-9519,-5270,-4140,-9520,-5271,-3593,-5272], +[0,-3,-1,-14,-817,-5273,-4468,-238,-5274,-206,-62], +[0,-1060,-266,-1551,-265,-500,-322], [1,3,2606], [0,2607,2608,2609,8], -[0,-7276], -[0,-351,-7248,-7262,-932,-1449,-1654,-2127,-2140], -[0,-797,-7277,-7278,-7279,-7280,-7281,-7282,-7283,-5839], +[0,-9521], +[0,-62,-5264,-5268,-1,-78,-3,-14,-229], +[0,-1060,-2737,-9522,-9523,-9524,-5275,-766,-1847,-708], [1,3,2611], [0,2612,2613,2614,10], -[0,-798,-7261,-7270,-7254,-7271], -[0,-6258,-932,-1654,-2127,-2140], -[0,-797,-7277,-7069,-7275], +[0,-1941,-5267,-5271,-3592,-3593], +[0,-2674,-1,-3,-14,-229], +[0,-1060,-2737,-2727,-1551], [1,3,2616], [0,0,2617,2618,5], -[0,-932,-1449,-1654,-2127,-2140], -[0,-797,-7277,-5092,-7284,-7285], +[0,-1,-78,-3,-14,-229], +[0,-1060,-2737,-266,-9525,-9526], [1,3,2620], [0,2621,2622,2623,6], -[0,-7253], -[0,-7264,-932,-1654,-2127,-2140], -[0,-797,-7277,-6524,-7275,-659,-3839], +[0,-5265], +[0,-5269,-1,-3,-14,-229], +[0,-1060,-2737,-1831,-1551,-322,-265], [1,3,2625], [0,2626,0,2627,5], -[0,-1049], -[0,-3577,-7286,-5176,-3913], +[0,-4168], +[0,-192,-9527,-500,-3252], [1,3,2629], [0,0,0,2630,4], -[0,-803,-2316,-2318,-7287,-7288,-7289,-7290,-7291,-7292,-7293,-7294,-7295,-7296,-7297,-7298,-2006,-775,-3160,-2476,-3095, --3161,-1713,-3577,-7299,-4101,-7300,-2299,-2834,-5511,-7301], +[0,-2996,-1265,-559,-3594,-5276,-5277,-9528,-9529,-5278,-5279,-5280,-9530,-5281,-5282,-9531,-6,-24,-102,-73,-131,-53,-390, +-192,-9532,-1510,-3595,-221,-1277,-2636,-9533], [1,3,2632], [0,0,14,2633,9], -[0,-7302,-1646,-6792,-7303,-4377,-5272,-687,-1758,-719,-7304,-3957,-5543,-7305,-7306,-7307,-7308,-1838,-3215,-4378], +[0,-5283,-88,-2174,-1848,-613,-1527,-37,-463,-58,-837,-316,-4948,-9534,-9535,-5284,-9536,-166,-74,-1307], [1,3,2635], [0,2636,2637,7,4], -[0,-7309,-469,-510,-668,-715,-754,-763,-1004,-1376,-7310,-1625,-1666,-1953,-2105,-7311,-7312,-7313,-2549,-2550], -[0,-526,-556,-559,-664,-1654,-2106,-5331], +[0,-9537,-183,-59,-20,-1390,-368,-1058,-40,-195,-9538,-4243,-233,-2407,-111,-9539,-9540,-9541,-2013,-98], +[0,-179,-580,-321,-13,-3,-1694,-3368], [1,3,2639], [0,0,2640,7,10], -[0,-7314,-2392,-7315,-3915,-2210,-932,-7316,-1548,-2469,-2402,-1050,-1942,-756,-21,-7057,-1874,-2205,-2214,-2410,-23, --3037,-7317,-7318,-4372,-7319,-3704,-3044,-7320,-5286,-4773,-40,-7321,-3664,-2832,-42,-428,-7322,-427,-7323], +[0,-3596,-155,-9542,-4671,-27,-1,-9543,-23,-30,-124,-1410,-4,-55,-48,-1842,-391,-600,-328,-2,-11,-5,-3597,-9544,-279, +-9545,-3228,-143,-9546,-1156,-1516,-21,-9547,-105,-314,-137,-19,-3598,-22,-9548], [1,3,2642], [0,0,2643,7,5], -[0,-1654,-2416,-21,-23,-40], +[0,-3,-112,-48,-11,-21], [1,3,2645], [0,0,2646,2647,5], -[0,-21,-23,-5870,-40,-3472,-527,-533,-537,-767,-932,-934,-958,-959,-7324,-1413,-1415,-1471,-1481,-1488,-1662,-1666,-1667, --1705,-1939,-1942,-2127,-2128,-2140,-2214,-2410], -[0,-809,-4121,-4123,-1361,-1666], +[0,-48,-11,-829,-21,-749,-162,-86,-1206,-26,-1,-185,-9,-145,-3599,-373,-8,-79,-389,-798,-1105,-233,-863,-734,-234,-4,-14, +-275,-229,-328,-2], +[0,-542,-1013,-612,-514,-233], [1,3,2649], [0,2650,2651,2652,4], -[0,-596,-1723], -[0,-7325], -[0,-510,-6367,-7326,-7327], +[0,-667,-864], +[0,-9549], +[0,-59,-2163,-9550,-9551], [1,3,2654], [0,0,118,2655,5], -[0,-811,-7328,-5924,-7329,-7330,-6729,-7331,-7332,-7333,-7334,-7335], +[0,-1621,-9552,-1331,-2187,-9553,-3545,-3600,-9554,-3601,-1552,-9555], [1,3,2657], [0,2658,2659,2660,4], -[0,-1681], -[0,-627,-633,-756,-1471,-1472,-1475,-1482,-1654,-1657,-2210,-2541], -[0,-812,-1573,-7336], +[0,-549], +[0,-1383,-60,-55,-79,-860,-138,-187,-3,-589,-27,-34], +[0,-35,-258,-3602], [1,3,2662], [0,0,14,2663,4], -[0,-813,-7337,-656,-7338,-6514,-6515,-6516,-2265,-5554,-5845], +[0,-1622,-9556,-430,-9557,-2168,-3523,-5135,-168,-193,-477], [1,3,2665], [0,2666,2667,2668,10], -[0,-7339,-7340,-7341,-7342,-1119,-1591,-1866,-7343], -[0,-985,-7344,-1849,-1866,-2125], -[0,-7345,-7346,-814,-7347,-2323,-7348,-7349,-5408,-2432], +[0,-9558,-9559,-9560,-5285,-324,-733,-1111,-9561], +[0,-370,-9562,-492,-1111,-7], +[0,-5286,-9563,-2335,-1026,-312,-9564,-5287,-915,-1705], [1,3,2670], [0,0,2671,2672,8], -[0,-21,-40,-42,-4646,-7350,-7057,-3330,-3136,-427,-428,-535,-6046,-7351,-774,-932,-7352,-954,-959,-960,-961,-963,-965, --7353,-7354,-971,-7355,-1344,-1415,-7356,-1498,-1534,-1608,-1609,-1768,-7357,-1942,-7358,-1945,-2091,-7359,-2391,-2410, --7360], -[0,-815,-6818,-7361,-3184], +[0,-48,-21,-137,-909,-9565,-1842,-364,-29,-22,-19,-270,-2658,-5288,-407,-1,-5289,-1405,-145,-180,-1223,-211,-115,-2738, +-2739,-784,-1849,-10,-8,-2188,-799,-17,-973,-518,-1108,-2740,-4,-5290,-870,-378,-5291,-172,-2,-5292], +[0,-509,-1339,-9566,-349], [1,3,2674], [0,0,2675,2676,5], -[0,-3136,-1637,-2375], -[0,-7362,-7363,-5839,-7364,-7365,-7366,-7367], +[0,-29,-677,-57], +[0,-9567,-9568,-708,-9569,-9570,-9571,-9572], [1,3,2678], [0,2679,0,2680,8], -[0,-7368], -[0,-7208,-7369,-7370,-1015,-3589,-1631,-702,-6351,-3755,-6545,-7371,-7372,-7373,-7374,-7375,-3589], +[0,-9573], +[0,-426,-2189,-1850,-432,-1144,-491,-507,-709,-3234,-1335,-838,-1851,-2190,-2741,-2191,-1144], [0,68,15,16,4], [1,3,2683], [0,0,2684,2685,5], -[0,-4055,-1654,-932,-1548,-2125,-1753,-615,-7376,-1003,-2416,-821,-964,-1656], -[0,-834,-7377,-7378,-7379], +[0,-108,-3,-1,-23,-7,-285,-114,-9574,-411,-112,-780,-256,-974], +[0,-203,-5293,-1553,-9575], [1,3,2687], [0,0,2688,2689,5], -[0,-7380,-1654,-932,-1405,-589,-756,-7381,-1559,-3311,-7382,-7383,-7384,-350,-7385], -[0,-7386,-7387,-7388,-3634], +[0,-9576,-3,-1,-66,-110,-55,-9577,-1666,-893,-3603,-9578,-9579,-77,-9580], +[0,-9581,-9582,-9583,-61], [1,3,2691], [0,2692,2693,2694,10], -[0,-7389,-655,-7390,-6503,-7391,-7392,-7393,-7394,-7395,-1402,-5849,-1795,-1797,-7396,-7397,-7398,-7399,-7400], -[0,-5834,-515,-516,-7401,-932,-1065,-7402,-1283,-7403,-1365,-1777,-1788,-3335,-2156,-2177,-2322], -[0,-7404,-6439,-7378], +[0,-9584,-939,-9585,-3520,-5294,-9586,-5295,-3604,-9587,-1084,-2138,-1447,-591,-9588,-5296,-9589,-9590,-3605], +[0,-244,-720,-269,-9591,-1,-954,-5297,-1234,-9592,-212,-273,-15,-3188,-189,-16,-39], +[0,-5298,-1828,-1553], [1,3,2696], [0,0,70,2697,4], -[0,-822,-1015,-6545,-7371,-2546,-702,-1631,-4055], +[0,-1623,-432,-1335,-838,-744,-507,-491,-108], [1,3,2699], [0,0,2700,2701,9], -[0,-3037,-7405,-1396,-7406,-2127,-2131,-2137,-2322,-2379,-2410,-2416], -[0,-1631,-6545,-1015,-6351,-702,-7371], +[0,-5,-9593,-1083,-9594,-14,-466,-347,-39,-33,-2,-112], +[0,-491,-1335,-432,-709,-507,-838], [1,3,2703], [0,2704,2705,2706,5], -[0,-1111,-1393,-7407,-7408,-1826,-7409,-2218], -[0,-519,-589,-2331,-2384,-2541], -[0,-6693,-6999,-7410,-7411,-6694,-7412,-7413,-7414,-6688,-7415,-7416,-6695,-7417,-2125,-7418,-1107,-7419,-6656,-7420, --7421,-1076,-7422], +[0,-204,-1081,-9595,-1554,-552,-5299,-288], +[0,-51,-110,-379,-82,-34], +[0,-835,-660,-3606,-3607,-659,-2742,-5300,-5301,-1338,-5302,-2192,-1545,-3608,-7,-2743,-28,-661,-128,-1027,-427,-303, +-1555], [1,3,2708], [0,2709,2710,2711,10], -[0,-824,-1630,-7409], -[0,-519,-999,-7423,-2541], -[0,-5732,-687,-6693,-824,-6694,-7412,-7413,-7414,-6688,-7415,-7416,-6695,-7417,-2125,-7418,-1107,-6656,-6999,-7420,-7421, --1076,-7422,-7085], +[0,-150,-462,-5299], +[0,-51,-118,-5303,-34], +[0,-762,-37,-835,-150,-659,-2742,-5300,-5301,-1338,-5302,-2192,-1545,-3608,-7,-2743,-28,-128,-660,-1027,-427,-303,-1555, +-1342], [1,3,2713], [0,2714,2715,2716,6], -[0,-7424,-7425], -[0,-7426,-7427,-2384,-2541], -[0,-1961,-2114,-826,-7428,-4116,-7429,-7430,-7431,-5389,-6302,-2634,-7432,-826,-510,-5867,-5923,-615,-7433,-7434,-6555], +[0,-3609,-9596], +[0,-2744,-2745,-82,-34], +[0,-171,-126,-627,-9597,-825,-9598,-2746,-9599,-827,-3496,-242,-9600,-627,-59,-656,-504,-114,-9601,-2747,-920], [1,3,2718], [0,2719,2720,2721,10], -[0,-812,-1460,-2550,-1353,-1548,-2177,-1442,-2114,-7435,-6651,-656,-1645,-7436,-1686,-755,-1048,-2115,-25,-7437,-46,-7438, --3230,-6033], -[0,-1788,-1654,-932,-2198,-2299,-1077,-1942,-767,-21,-1972,-2410,-23,-528,-7439,-39,-43,-40,-964,-969,-933,-958,-539,-940, --962,-967,-535,-5585], -[0,-7440,-7441,-5897,-7442,-827,-6137,-3015,-3016], +[0,-35,-272,-98,-460,-23,-16,-101,-126,-5304,-5152,-430,-92,-9602,-1442,-386,-1409,-644,-405,-3610,-539,-1852,-4518,-5053], +[0,-15,-3,-1,-81,-221,-41,-4,-26,-48,-181,-2,-11,-91,-9603,-449,-174,-21,-256,-64,-255,-9,-333,-12,-148,-25,-270,-1327], +[0,-293,-2193,-478,-2194,-1392,-2154,-693,-2480], [1,3,2723], [0,0,2724,2725,6], -[0,-589,-585,-932,-943,-958,-963,-966,-968,-974,-1405,-1654,-2155,-2418], -[0,-7443,-7444], +[0,-110,-1049,-1,-83,-9,-211,-75,-67,-129,-66,-3,-497,-1471], +[0,-9604,-9605], [1,3,2727], [0,2728,2729,7,4], -[0,-812,-5892,-1111,-7445,-1639,-1646,-1872,-7446,-2114], -[0,-7447,-1344,-3781,-1771,-2250], +[0,-35,-5022,-204,-9606,-361,-88,-1112,-5305,-126], +[0,-9607,-10,-1504,-65,-97], [1,3,2731], [0,0,14,2732,10], -[0,-6806,-7448,-6659,-7449,-7450,-707,-2265,-5554,-6916,-7451,-7452], +[0,-2175,-9608,-710,-5306,-5307,-334,-168,-193,-2719,-3611,-5308], [1,3,2734], [0,2735,2736,2737,5], -[0,-6558], -[0,-7453,-3621,-3037,-7454,-932,-7455,-999,-7456,-2269,-2386,-7457,-2410], -[0,-6659,-7458], +[0,-2169], +[0,-5309,-71,-5,-9609,-1,-9610,-118,-9611,-139,-561,-3612,-2], +[0,-710,-5310], [1,3,2739], [0,0,2740,2741,6], -[0,-1788,-2384,-664,-1471,-1654,-932,-2127,-1110,-2501,-767,-2416,-190,-2410,-23,-1482,-534,-1492,-5758,-43,-40,-2411, --2505,-1483,-2832,-539,-1490], -[0,-834,-7459,-7378,-7460,-5554,-4055,-775,-3214], +[0,-15,-82,-13,-79,-3,-1,-14,-56,-18,-26,-112,-50,-2,-11,-187,-96,-517,-1329,-174,-21,-84,-173,-414,-314,-333,-637], +[0,-203,-5311,-1553,-3613,-193,-108,-24,-45], [1,3,2743], [0,2744,2745,2746,8], -[0,-834,-7461], -[0,-190,-7462,-7463,-3136,-3037,-7464,-7465,-518,-645,-699,-748,-778,-784,-932,-959,-968,-1041,-1110,-1276,-7466,-1331, --1344,-7467,-7468,-1415,-1534,-1607,-1643,-1650,-1758,-1889,-1891,-1906,-1908,-1927,-1942,-2375,-2376,-2379,-2410,-2411, --2437,-2501,-2503,-2505,-2516], -[0,-5889,-834,-3240,-7469,-6722,-7470,-7471,-7472,-4131,-3240,-712,-3264,-835,-7473,-7474], +[0,-203,-9612], +[0,-50,-2195,-9613,-29,-5,-9614,-1853,-157,-4121,-1053,-508,-141,-369,-1,-145,-67,-271,-56,-247,-5312,-342,-10,-9615, +-9616,-8,-17,-972,-374,-72,-463,-38,-682,-555,-493,-805,-4,-57,-214,-33,-2,-84,-438,-18,-93,-173,-818], +[0,-402,-203,-648,-9617,-1172,-9618,-9619,-1180,-2074,-648,-217,-31,-4144,-9620,-9621], [1,3,2748], [0,119,120,2749,4], -[0,-7477,-7478,-7479,-7480,-7481,-7482,-7483,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-7487,-7488,-3966,-4336, --7489,-7490,-7491,-7492,-7493,-7494,-7495,-7496,-7497,-3552,-7498,-7499,-7500,-1847,-7501,-7502,-7503,-7504,-7505,-7506, --7507,-7508,-7282,-7509,-7510,-7511,-7512,-7513,-7514,-7515,-7516,-7517,-7518,-7519,-7520,-7521,-5150,-7522,-7523,-7524, --7525,-7526,-7527,-7528, --7529,-7530,-7531,-7532,-7533,-6582,-7534,-7535,-7536,-7537,-7538,-7539,-7540,-7541,-7542,-7543,-7544,-7545,-7546,-7547, --7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558,-7559,-5063,-7560,-7561,-7562,-6187,-7563, --856,-7275], +[0,-9623,-9624,-9625,-9626,-9627,-9628,-9629,-45,-3614,-1854,-278,-2,-3615,-753,-440,-9630,-9631,-144,-1306,-3616,-5314, +-9632,-9633,-9634,-9635,-9636,-9637,-9638,-3214,-9639,-9640,-9641,-249,-9642,-9643,-3617,-9644,-9645,-9646,-9647,-9648, +-766,-9649,-9650,-9651,-9652,-9653,-9654,-9655,-9656,-9657,-9658,-9659,-9660,-5315,-1155,-9661,-9662,-9663,-9664,-9665, +-9666,-9667, +-9668,-3618,-9669,-9670,-9671,-479,-1344,-3619,-3620,-2748,-3621,-3622,-3623,-3624,-3625,-3626,-3627,-3628,-5316,-2196, +-3629,-924,-3630,-3631,-3632,-3633,-3634,-3635,-3636,-3637,-2749,-136,-1556,-3638,-2605,-3639,-5317,-5318,-574,-3640,-42, +-1551], [1,3,2751], [0,0,2752,2753,6], -[0,-664,-665,-1127,-1144,-1149,-1156,-1452,-1453,-1542,-1654], -[0,-664,-6537,-4865,-3634], +[0,-13,-239,-54,-175,-304,-959,-119,-969,-343,-3], +[0,-13,-2695,-94,-61], [1,3,2755], [0,2756,56,57,4], -[0,-7564,-7565,-840,-1406,-1744], +[0,-9672,-5319,-2997,-1658,-3071], [1,3,2758], [0,2759,2760,2761,6], -[0,-2387,-2426,-7567,-3675,-151,-3676,-1025,-7568,-3677,-7569,-3678,-3679,-7570], -[0,-2384,-1415,-3682,-932,-2388,-879,-1942,-767,-2410,-3037,-7571,-3683,-3685,-3686,-3687,-428,-427], -[0,-3689,-3690,-7572,-3323,-3966,-3692], +[0,-44,-289,-9673,-4610,-4069,-4611,-952,-9674,-4612,-9675,-4613,-3225,-9676], +[0,-82,-8,-2048,-1,-199,-1063,-4,-26,-2,-5,-9677,-4614,-4615,-2525,-4616,-19,-22], +[0,-3226,-100,-3641,-351,-144,-4617], [1,3,2763], [0,2764,0,7,4], -[0,-2416,-1044,-1813], +[0,-112,-725,-551], [1,3,2766], [0,2767,2768,193,8], -[0,-6789,-7573,-7574,-7575,-1276,-1610,-7576], -[0,-7577], +[0,-1547,-5320,-9678,-5321,-247,-227,-2197], +[0,-9679], [1,3,2770], [0,2771,0,2772,6], -[0,-1448], -[0,-843,-856,-1446,-7578,-1599,-3862], +[0,-795], +[0,-2998,-42,-165,-9680,-99,-107], [1,3,2774], [0,0,0,2775,9], -[0,-7579,-7580,-7581,-7582,-3445,-6809], +[0,-9681,-3642,-1345,-1855,-46,-2707], [1,3,2777], [0,2778,31,2779,10], -[0,-7583,-7584,-7585], -[0,-7586,-7587], +[0,-9682,-5322,-9683], +[0,-3643,-9684], [1,3,2781], [0,2782,2783,2784,8], -[0,-523,-2550,-848,-7588,-7589,-7590], -[0,-664,-1654,-1004,-617], -[0,-856,-5119,-4004,-4100,-3671], +[0,-194,-98,-4147,-5323,-5324,-2751], +[0,-13,-3,-40,-163], +[0,-42,-401,-76,-700,-399], [1,3,2786], [0,2787,2788,2789,10], -[0,-3417,-7590,-7591,-469,-5769,-7592,-7593,-7594,-523,-7588,-7589,-865,-7595,-7596,-7597,-1870,-1880,-7598,-2369,-4881], -[0,-827,-1004,-1654,-2177], -[0,-856,-4004,-4100,-3671], +[0,-3203,-2751,-5325,-183,-2135,-9685,-9686,-9687,-194,-5323,-5324,-210,-5326,-9688,-9689,-978,-804,-9690,-691,-1315], +[0,-1392,-40,-3,-16], +[0,-42,-76,-700,-399], [1,3,2791], [0,2792,0,2793,9], -[0,-719,-1610,-1077,-2424,-1304], -[0,-856,-3671,-3262,-7599,-711], +[0,-58,-227,-41,-250,-372], +[0,-42,-399,-116,-9691,-308], [1,3,2795], [0,2796,0,193,4], -[0,-885,-7600,-7601], +[0,-1064,-9692,-9693], [1,3,2798], [0,2799,2800,2801,10], -[0,-7602,-7603,-7604,-7605,-1969,-2324,-2446], -[0,-615,-664,-1627,-1654], -[0,-7606,-7607], +[0,-5327,-3644,-5328,-9694,-1687,-1267,-125], +[0,-114,-13,-1670,-3], +[0,-2198,-9695], [1,3,2803], [0,2804,2805,2806,4], -[0,-7608,-7609,-7610,-573,-7611,-653,-7612,-6838,-7613,-7614,-7615,-5835,-7616,-7617,-7618,-7619,-7620,-7621,-1376,-7622, --7623,-7624,-1640,-1729,-7625,-7626,-7627,-2125,-7628,-7629,-7630,-2177,-7631,-7632,-7633,-2424,-7634,-2549], -[0,-7635,-7636,-7637,-711,-7638,-1666,-7639,-7640], -[0,-3260,-7641,-7642,-4258,-687,-7643,-711,-7644,-3116,-7645,-7646,-3113,-7647,-7648,-6433,-3161,-3262,-7649,-3966,-1838, --3215,-7650,-4065,-3970,-5371,-3261,-7651,-3673,-3590,-3578,-7652,-4602], +[0,-9696,-9697,-9698,-1924,-9699,-845,-9700,-2176,-9701,-9702,-9703,-533,-9704,-9705,-9706,-9707,-9708,-9709,-195,-5329, +-5330,-9710,-260,-188,-9711,-9712,-9713,-7,-9714,-9715,-9716,-16,-9717,-9718,-9719,-250,-9720,-2013], +[0,-9721,-5331,-9722,-308,-5332,-233,-5333,-5334], +[0,-2496,-712,-9723,-908,-37,-2199,-308,-713,-607,-5335,-1557,-694,-9724,-9725,-5120,-53,-116,-9726,-144,-166,-74,-926, +-2069,-1010,-3384,-746,-1181,-611,-208,-113,-9727,-531], [1,3,2808], [0,0,2809,2810,5], -[0,-3268,-3037,-3664,-6593,-589,-7653,-7654,-932,-958,-960,-2410,-2469], -[0,-3100,-3445,-4058,-3926,-1446], +[0,-747,-5,-105,-922,-110,-3645,-5336,-1,-9,-180,-2,-30], +[0,-52,-46,-331,-423,-165], [1,3,2812], [0,0,2813,2814,6], -[0,-23,-40,-190,-3326,-350,-4062,-351,-3266,-518,-632,-724,-920,-932,-940,-1110,-1609,-6451,-1771,-1889,-1897,-1903,-1906, --1942,-2125,-2127,-4753,-2162], -[0,-3671,-2757,-7655,-856,-3262,-3214,-3756,-1599,-3437,-3862,-7452,-7656], +[0,-11,-21,-50,-207,-77,-238,-62,-206,-157,-938,-367,-1219,-1,-12,-56,-518,-5124,-65,-38,-1684,-1451,-555,-4,-7,-14,-1311, +-80], +[0,-399,-2465,-9728,-42,-116,-45,-278,-99,-1000,-107,-5308,-9729], [1,3,2816], [0,2817,71,2818,8], -[0,-7657,-7658,-1333,-1646,-2424,-7659], -[0,-1105,-1599,-856,-4328,-3215,-7660,-7661,-7662], +[0,-9730,-9731,-488,-88,-250,-9732], +[0,-545,-99,-42,-1764,-74,-2200,-1558,-5337], [1,3,2820], [0,2821,2822,2823,8], -[0,-23,-3194,-25,-46,-47,-668,-679,-834,-7663,-4236,-3649,-1107,-2765,-1304,-1371,-1442,-7664,-1548,-5347,-7665,-7666, --7667,-1866,-2061,-2093,-2095,-2096,-7668,-4656,-2114,-2271,-7669,-2429,-5358,-7670,-7671,-2550], -[0,-7672,-796,-7673,-932,-940,-1077,-1344,-1415,-1456,-1534,-1658,-1942,-2251,-2359], -[0,-856,-4144,-1446,-7674,-3215,-3258], +[0,-11,-891,-405,-539,-450,-20,-117,-203,-9733,-2078,-499,-28,-4411,-372,-728,-101,-9734,-23,-2627,-9735,-5338,-5339, +-1111,-1991,-274,-522,-2417,-9736,-1773,-126,-601,-1559,-348,-502,-9737,-9738,-98], +[0,-5340,-295,-9739,-1,-12,-41,-10,-8,-635,-17,-548,-4,-134,-161], +[0,-42,-1303,-165,-2752,-74,-892], [1,3,2825], [0,2826,2827,2828,5], -[0,-7675,-7676,-812,-7677,-7678,-7679,-7680,-2424], -[0,-3037,-1127,-1152,-1156,-1542,-1656,-6799,-2210,-2351], -[0,-7681,-7682,-857,-7683,-5800,-7684,-7685,-5801], +[0,-9740,-9741,-35,-9742,-9743,-1346,-3646,-250], +[0,-5,-54,-512,-959,-343,-974,-5182,-27,-1468], +[0,-9744,-9745,-4148,-9746,-1534,-1347,-403,-1162], [1,3,2830], [0,2831,2832,2833,4], -[0,-3484,-1088,-1107,-668,-2006,-915,-1548,-1650,-572,-784,-1004,-1889,-1955,-2105,-2195,-3728,-2353,-1077,-1356,-719, --2019,-682,-1888,-2102,-23,-7686,-47,-518,-1304,-1607,-7687,-4356,-7688,-7689,-3649,-39,-43,-46,-2015,-7690,-40,-7691, --7692,-41,-930,-916,-26,-36], -[0,-2125,-7693,-1075,-7694], -[0,-856,-7695,-7696,-858], +[0,-3207,-1645,-28,-20,-6,-431,-23,-72,-844,-369,-40,-38,-436,-111,-276,-1749,-1469,-41,-1961,-58,-36,-254,-641,-1116,-11, +-9747,-450,-157,-372,-972,-3647,-2567,-5341,-9748,-499,-449,-174,-539,-1255,-5342,-21,-5343,-3648,-132,-408,-947,-209, +-300], +[0,-7,-2753,-1640,-5344], +[0,-42,-5345,-3649,-1625], [1,3,2835], [0,2836,27,2837,5], -[0,-7697,-703,-4700,-1288,-1293,-1310,-3544,-7698,-3788,-1645,-2087,-7699,-2427,-7700], -[0,-858,-3544,-7701,-856], +[0,-9749,-302,-2579,-1650,-2352,-3039,-1143,-9750,-2536,-92,-1994,-2754,-135,-5346], +[0,-1625,-1143,-9751,-42], [1,3,2839], [0,2840,2841,2842,6], -[0,-44,-786], -[0,-7702,-7703,-21,-23,-42,-7704,-7705,-7706,-427,-428,-528,-534,-932,-958,-962,-964,-969,-1003,-1107,-1437,-1471,-1475, --1479,-7707,-1482,-1483,-1489,-1490,-1492,-1654,-2125,-7708,-2210,-2410,-2501], -[0,-860,-3159,-5092,-3690,-7709,-5553,-5389,-7710,-6730,-860,-7711,-7712,-775], +[0,-90,-722], +[0,-9752,-9753,-48,-11,-137,-9754,-9755,-9756,-22,-19,-91,-96,-1,-9,-148,-256,-64,-411,-28,-248,-79,-138,-213,-3650,-187, +-414,-1237,-637,-517,-3,-7,-5347,-27,-2,-18], +[0,-1626,-106,-266,-100,-9757,-230,-827,-5348,-2171,-1626,-2201,-9758,-24], [1,3,2844], [0,2845,2846,2847,4], -[0,-3223,-6585,-7713], -[0,-1415,-932,-674,-2375,-1942,-2410,-3136,-3037,-1333,-940,-428,-427], -[0,-3264,-6597,-7650], +[0,-472,-1833,-5349], +[0,-8,-1,-231,-57,-4,-2,-29,-5,-488,-12,-19,-22], +[0,-31,-537,-926], [1,3,2849], [0,0,2850,2851,8], -[0,-664,-932,-1127,-1132,-1144,-1148,-1149,-1155,-1442,-1471,-1474,-1475,-1479,-1482,-1483,-1654,-1942,-2177], -[0,-5092,-6527,-7714,-7650,-3264,-659,-3839,-7715], +[0,-13,-1,-54,-164,-175,-341,-304,-958,-101,-79,-675,-138,-213,-187,-414,-3,-4,-16], +[0,-266,-292,-9759,-926,-31,-322,-265,-621], [1,3,2853], [0,2854,2855,2856,6], -[0,-7716], -[0,-23,-40,-3326,-351,-3561,-3266,-426,-3037,-767,-940,-967,-1437,-1449,-1471,-1473,-1475,-1479,-1485,-1486,-7717,-1646, --1771,-1939,-1942,-1989,-7718,-2125,-2127,-2132,-7719,-2142,-2387,-2410,-2541], -[0,-5092,-2544,-3264,-3839,-7720,-7107,-7721,-7722,-7723,-7724,-7725], +[0,-5350], +[0,-11,-21,-207,-62,-237,-206,-320,-5,-26,-12,-25,-248,-78,-79,-1428,-138,-213,-1662,-731,-9760,-88,-65,-234,-4,-376, +-5351,-7,-14,-417,-9761,-305,-44,-2,-34], +[0,-266,-1275,-31,-265,-9762,-711,-5352,-5353,-1028,-767,-5354], [1,3,2858], [0,0,2859,2860,10], -[0,-1788,-932,-756,-1939,-5478], -[0,-3110,-5922,-5493,-7651], +[0,-15,-1,-55,-234,-4940], +[0,-277,-535,-654,-1181], [1,3,2862], [0,0,2863,2864,4], -[0,-3037,-3542,-2210,-2250,-2251,-2319,-2410], -[0,-865,-6845,-7726,-5558,-3591,-727,-6849], +[0,-5,-1746,-27,-97,-134,-85,-2], +[0,-210,-1340,-5355,-828,-1501,-335,-2715], [1,3,2866], [0,194,2867,2868,5], -[0,-3037,-2250,-2251,-2319,-2410], -[0,-865,-7727,-3591,-7728,-7729,-6845,-7726], +[0,-5,-97,-134,-85,-2], +[0,-210,-1856,-1501,-5356,-9763,-1340,-5355], [1,3,2870], [0,2871,2872,2873,4], -[0,-1116,-1866,-1825,-7730,-1591,-1043,-814,-7731,-1100,-7732,-736], -[0,-2541,-519,-1722,-7733,-2125,-1849,-7734], -[0,-867,-7347,-1334,-2105,-2435], +[0,-387,-1111,-866,-9764,-733,-1226,-2335,-2202,-487,-9765,-942], +[0,-34,-51,-197,-9766,-7,-492,-9767], +[0,-1217,-1026,-103,-111,-200], [1,3,2875], [0,2876,2877,2878,9], -[0,-867,-7735,-2125], -[0,-3179,-1344,-1654,-2226,-2250], -[0,-867,-1105,-7661,-7660,-7736,-7737,-2323,-7347,-7738], +[0,-1217,-9768,-7], +[0,-3177,-10,-3,-1700,-97], +[0,-1217,-545,-1558,-2200,-5357,-2755,-312,-1026,-5358], [1,3,2880], [0,2881,2882,2883,4], -[0,-870,-871,-873,-875,-876,-874], -[0,-932,-2125,-190,-2410,-3037,-2411,-428,-427], -[0,-869,-856,-687,-1446,-620,-1599,-4055], +[0,-4149,-3002,-3003,-3005,-3006,-3004], +[0,-1,-7,-50,-2,-5,-84,-19,-22], +[0,-946,-42,-37,-165,-453,-99,-108], [1,3,2885], [0,2886,2887,2888,8], -[0,-1111,-871,-7739,-7740,-873,-875,-7741,-876,-874], -[0,-1415,-932,-2125,-1753,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-427], -[0,-869,-856,-687], +[0,-204,-3002,-9769,-9770,-3003,-3005,-3651,-3006,-3004], +[0,-8,-1,-7,-285,-57,-50,-2,-29,-5,-2203,-84,-19,-22], +[0,-946,-42,-37], [1,3,2890], [0,2891,2892,2893,4], -[0,-6904], -[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-428,-6902,-427], -[0,-869,-856], +[0,-2718], +[0,-8,-1,-7,-57,-50,-2,-29,-5,-2203,-84,-19,-3560,-22], +[0,-946,-42], [1,3,2895], [0,2896,121,2897,4], -[0,-7743], -[0,-869,-856,-3110], +[0,-3652], +[0,-946,-42,-277], [1,3,2899], [0,2900,2901,2902,4], -[0,-2330,-1446,-7744], -[0,-1415,-932,-2125,-2375,-749,-190,-2410,-3136,-3037,-7745,-7742,-2411,-428,-427], -[0,-869,-856,-1446], +[0,-603,-165,-5359], +[0,-8,-1,-7,-57,-625,-50,-2,-29,-5,-9771,-2203,-84,-19,-22], +[0,-946,-42,-165], [1,3,2904], [0,2905,2906,2907,4], -[0,-1600,-1304,-1605], -[0,-1415,-932,-2125,-2375,-190,-2410,-3136,-3037,-7742,-2411,-3661,-428,-427], -[0,-869,-856,-620], +[0,-220,-372,-1098], +[0,-8,-1,-7,-57,-50,-2,-29,-5,-2203,-84,-896,-19,-22], +[0,-946,-42,-453], [1,3,2909], [0,0,121,2910,8], -[0,-869,-856,-4055], +[0,-946,-42,-108], [1,3,2912], [0,2913,121,2914,5], -[0,-1605], -[0,-869,-856,-1599], +[0,-1098], +[0,-946,-42,-99], [1,3,2916], [0,2917,2918,2919,4], -[0,-1033,-1361,-1792], -[0,-23,-6065,-5584,-7746,-528,-7747,-767,-824,-927,-932,-7748,-940,-951,-956,-962,-967,-969,-7749,-1059,-1168,-1174,-1184, --1188,-7750,-1201,-1208,-1212,-1243,-1266,-1415,-1942,-2006,-2019,-2052,-7751,-2347,-2417,-7752], -[0,-7753,-3496,-2006,-7754], +[0,-1636,-514,-241], +[0,-11,-2148,-1326,-5360,-91,-5361,-26,-150,-1630,-1,-3653,-12,-783,-485,-148,-25,-64,-9772,-412,-32,-585,-960,-4188, +-9773,-2347,-790,-1074,-310,-360,-8,-4,-6,-36,-287,-9774,-69,-1130,-2756], +[0,-9775,-420,-6,-2757], [1,3,2921], [0,2922,2923,2924,5], -[0,-4007,-7755], -[0,-7756,-7757,-664,-795,-7758,-1471,-1475,-1482,-7759,-1491,-1654,-1655,-1745,-7760,-2162,-2210,-2211], -[0,-7761,-7762,-7763,-7764], +[0,-1012,-3654], +[0,-9776,-9777,-13,-483,-5362,-79,-138,-187,-2758,-676,-3,-1671,-4258,-3655,-80,-27,-190], +[0,-5363,-5364,-9778,-1182], [1,3,2926], [0,2927,2928,7,5], -[0,-2550,-2388,-7765,-1077,-7766,-2271,-1458,-7767,-7768,-7769], -[0,-932,-3037,-3041,-3048,-428,-7770,-7771,-427], +[0,-98,-199,-3656,-41,-9779,-601,-2362,-5365,-5366,-5367], +[0,-1,-5,-419,-191,-19,-5368,-9780,-22], [1,3,2930], [0,2931,0,2932,4], -[0,-7772], -[0,-7773,-880,-6582,-7685,-3445,-687,-7774,-5401], +[0,-1857], +[0,-768,-4151,-479,-403,-46,-37,-9781,-356], [1,3,2934], [0,2935,2936,113,4], -[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5366,-5340,-747,-823,-5341,-909,-5342,-5343,-5344, --3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, --4942,-2003,-4944,-2004,-2013,-2965,-2028,-5350,-5351,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5354, --5355,-2427,-2429, --5356,-2435,-5357,-5358,-5359], -[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3803,-3040,-3087,-3052,-5364,-5365,-932,-4597,-1026,-1031,-5367, --5368,-1344,-1534,-1942,-1944,-1945,-2006,-2019,-2281,-2379,-2410,-2469,-5369,-5370], +[0,-3369,-3370,-1004,-245,-251,-424,-2621,-2622,-2623,-3371,-254,-4910,-4908,-778,-323,-3372,-781,-1805,-2625,-2626,-499, +-1483,-1649,-1958,-726,-3373,-792,-1425,-2127,-101,-1668,-2627,-2128,-1243,-554,-1762,-3374,-436,-685,-2091,-2589,-1989, +-2590,-1254,-1115,-1135,-1689,-4909,-3375,-1691,-3376,-736,-2129,-906,-522,-599,-806,-80,-1749,-2628,-2629,-135,-348, +-1157,-200,-3377,-502,-3378], +[0,-49,-63,-2047,-3379,-2130,-421,-3380,-5,-1806,-1006,-47,-1728,-89,-3381,-3382,-1,-2573,-226,-788,-2630,-3383,-10,-17, +-4,-1113,-870,-6,-36,-182,-33,-2,-30,-2131,-4911], [1,3,2938], [0,2939,2940,113,6], -[0,-5332,-5333,-3562,-367,-5334,-4251,-5335,-5336,-5337,-5338,-682,-5339,-747,-823,-5341,-5359,-909,-5342,-5343,-5344, --3649,-2766,-1286,-1289,-1292,-5345,-1315,-1329,-5346,-1442,-1571,-5347,-5348,-1779,-1878,-4130,-5349,-1955,-2000,-4930, --4942,-4944,-2013,-2965,-2028,-2084,-5352,-2090,-5353,-4242,-2095,-2098,-2101,-2162,-3728,-5355,-2427,-2429,-5356,-2435, --5357,-5358], -[0,-86,-3307,-3659,-5360,-5361,-3660,-5362,-3037,-5363,-3040,-3087,-5364,-5365,-932,-1026,-1031,-5368,-1344,-1534,-1942, --1944,-1945,-2006,-2281,-2379,-2410,-2469], +[0,-3369,-3370,-1004,-245,-251,-424,-2621,-2622,-2623,-3371,-254,-2624,-778,-323,-3372,-3378,-781,-1805,-2625,-2626,-499, +-1483,-1649,-1958,-726,-3373,-792,-1425,-2127,-101,-1668,-2627,-2128,-1243,-554,-1762,-3374,-436,-685,-2091,-2589,-2590, +-1115,-1135,-1689,-1691,-3376,-736,-2129,-906,-522,-599,-806,-80,-1749,-2629,-135,-348,-1157,-200,-3377,-502], +[0,-49,-63,-2047,-3379,-2130,-421,-3380,-5,-1806,-47,-1728,-3381,-3382,-1,-226,-788,-3383,-10,-17,-4,-1113,-870,-6,-182, +-33,-2,-30], [1,3,2942], [0,0,2943,7,5], -[0,-2322,-2346], +[0,-39,-469], [1,3,2945], [0,2946,2947,110,8], -[0,-7775,-7776,-7777,-7778,-7779,-44,-3946,-7780,-7781,-7782,-7783,-7784,-682,-747,-809,-7785,-7786,-7787,-7788,-7789, --7790,-7791,-7792,-7793,-7794,-7795,-7796,-7797,-7798,-7799,-7800,-7801,-7802,-7803,-7804,-7805,-7806,-7807,-7808,-7809, --7810,-7811,-7812,-7813,-7814,-7815,-7816,-4951,-2345], -[0,-5695,-5704,-3139,-7817,-4952,-2581,-5702,-3744,-3745,-3746,-3747,-162,-3778,-4954,-5706,-4106,-5708,-5699,-283,-305, --4955,-4773,-3562,-406,-407,-409,-410,-5682,-5683,-5693,-3048,-4960,-5692,-5697,-3136,-4961,-4962,-4963,-4964,-4647, --3044,-5686,-3037,-5688,-7818,-5675,-3803,-3624,-4966,-3040,-3087,-3052,-4968,-4969,-3199,-5687,-5673,-4971,-4972,-427, --428,-464,-5595, --4973,-5674,-4974,-523,-668,-674,-5701,-5676,-767,-768,-4977,-865,-881,-5698,-3808,-932,-933,-940,-948,-952,-958,-959, --962,-7819,-963,-969,-970,-978,-1026,-4979,-1077,-1103,-1107,-5346,-1339,-1352,-1359,-1392,-1404,-1415,-4980,-1416,-1419, --1421,-4981,-4982,-1437,-1449,-4983,-3134,-1534,-1548,-5689,-4984,-1646,-1662,-1729,-1737,-1779,-1805,-1816,-5668,-1870, --1880, --1942,-1943,-1950,-1955,-1978,-1983,-4985,-4986,-4987,-2006,-2013,-5680,-2019,-3051,-4988,-4989,-4990,-2027,-4991,-2044, --4992,-2082,-2090,-2093,-2094,-2095,-4994,-5707,-4995,-2101,-2125,-5669,-2177,-2193,-2205,-2214,-5671,-5000,-2323,-2324, --2334,-2392,-2402,-2410,-5001,-5678,-2501,-2502,-5002], +[0,-9782,-9783,-9784,-9785,-9786,-90,-1754,-9787,-9788,-9789,-9790,-9791,-254,-778,-542,-9792,-9793,-9794,-9795,-9796, +-9797,-9798,-9799,-9800,-9801,-9802,-9803,-9804,-9805,-9806,-9807,-9808,-9809,-9810,-9811,-9812,-9813,-9814,-9815,-9816, +-9817,-9818,-9819,-9820,-9821,-9822,-9823,-2092,-1704], +[0,-4986,-4991,-2485,-9824,-3323,-329,-3426,-2530,-3233,-2531,-2532,-1903,-1147,-3324,-3427,-1300,-4992,-4989,-1202,-665, +-3325,-1516,-1004,-319,-153,-120,-307,-3424,-4980,-4985,-191,-3326,-4984,-4987,-29,-1780,-3327,-2591,-1781,-614,-143, +-761,-5,-4982,-5369,-3423,-1006,-2518,-2093,-47,-1728,-89,-3328,-4846,-140,-4981,-1532,-3329,-1519,-22,-19,-1913,-3418, +-3330,-3422,-3331,-194,-20,-231,-4990,-1813,-26,-1937,-2094,-210,-1396,-4988,-1293,-1,-255,-12,-246,-847,-9,-145,-148, +-5370,-211,-64,-186,-151,-226,-2592,-41,-340,-28,-2127,-413,-964,-965,-547,-2359,-8,-1782,-1427,-176,-794,-1520,-2593, +-248,-78,-3332,-2029,-17,-23,-4983,-1783,-88,-1105,-188,-1445,-1243,-152,-325,-3421,-978,-804, +-4,-2406,-683,-436,-160,-465,-3333,-2594,-3334,-6,-1115,-4978,-36,-2483,-2595,-3335,-3336,-2413,-3337,-557,-3338,-346, +-736,-274,-146,-522,-2596,-3428,-2095,-806,-7,-4975,-16,-689,-600,-328,-4976,-4849,-312,-1267,-177,-155,-124,-2,-2598, +-4977,-18,-523,-1784], [1,3,2949], [0,0,2950,2951,10], -[0,-86,-3307,-7820,-190,-932,-940,-964,-967,-1344,-1534,-1654,-1942,-2127,-2198,-2251], -[0,-5839,-510,-6235,-7821,-885,-7208,-1961,-7822,-6302,-3445,-3100], +[0,-49,-63,-2204,-50,-1,-12,-256,-25,-10,-17,-3,-4,-14,-81,-134], +[0,-708,-59,-1537,-9825,-1064,-426,-171,-3657,-3496,-46,-52], [1,3,2953], [0,2954,2955,2956,11], -[0,-2387,-7823], -[0,-22,-23,-47,-7769,-7767,-7824,-262,-350,-351,-3561,-3136,-427,-428,-668,-719,-879,-928,-932,-1077,-1111,-1344,-1415, --1416,-1452,-1588,-1805,-2127,-2140,-2172,-2177,-2334,-2375,-2410], -[0,-886,-7825,-6581,-7826,-7275,-7827,-7828,-659,-3839], +[0,-44,-9826], +[0,-505,-11,-450,-5367,-5365,-9827,-451,-77,-62,-237,-29,-22,-19,-20,-58,-1063,-87,-1,-41,-204,-10,-8,-1427,-119,-296, +-152,-14,-229,-1462,-16,-177,-57,-2], +[0,-3007,-9828,-3531,-9829,-1551,-3658,-9830,-322,-265], [1,3,2958], [0,2959,2960,2961,4], -[0,-7829,-1043,-7830,-1199,-7831,-7832,-7833,-1548,-1645,-7834,-1876,-2347,-2460,-2462,-2550], -[0,-3035,-3048,-7835,-3044,-3621,-3037,-4364,-4372,-3625,-7836,-7837,-7838,-3041,-664,-994,-1077,-1100,-1654,-1788,-1972, --2125,-2210,-2211,-2379,-2388,-2410], -[0,-7829,-3674,-5874,-7839,-7840,-7449,-7841], +[0,-1858,-1226,-9831,-1073,-9832,-2759,-9833,-23,-92,-5371,-142,-69,-70,-562,-98], +[0,-109,-191,-9834,-143,-71,-5,-2568,-279,-1287,-2205,-1560,-5372,-419,-13,-409,-41,-487,-3,-15,-181,-7,-27,-190,-33,-199, +-2], +[0,-1858,-1288,-534,-5373,-1183,-5306,-68], [1,3,2963], [0,2964,2965,2966,4], -[0,-1410], -[0,-2410,-32,-633,-932,-6272,-1446,-1582,-1654,-2416], -[0,-3110,-7651,-6899,-888], +[0,-1966], +[0,-2,-156,-60,-1,-5092,-165,-434,-3,-112], +[0,-277,-1181,-1176,-337], [1,3,2968], [0,2969,2970,2971,4], -[0,-668,-1548,-7842], -[0,-1722,-461,-510,-1127,-1654,-2210,-2239,-932,-1437,-1666,-2177,-521,-600,-2501,-7843,-7844,-615,-1813,-1942,-2347, --1003,-1026,-3767,-1132,-7845,-633,-23,-7846,-528,-534,-7847,-7848,-40,-966,-1138,-1134,-958,-1136,-1148,-968,-940,-943, --967,-974,-7849], -[0,-889,-6045,-3817], +[0,-20,-23,-9835], +[0,-197,-202,-59,-54,-3,-27,-812,-1,-248,-233,-16,-936,-1609,-18,-9836,-9837,-114,-551,-4,-69,-411,-226,-3238,-164,-3659, +-60,-11,-5374,-91,-96,-9838,-3660,-21,-75,-511,-240,-9,-629,-341,-67,-12,-83,-25,-129,-5375], +[0,-4152,-5058,-1752], [0,44,15,16,5], [1,3,2974], [0,2975,0,195,6], -[0,-3037,-1018,-7850], +[0,-5,-1070,-3661], [1,3,2977], [0,2978,2979,2980,4], -[0,-668,-2550,-680,-1077,-7851,-7852,-7853,-7854,-7855,-7741], -[0,-3041,-3048], -[0,-891,-4258,-7641,-7856,-1380,-7857,-7858,-7859,-3994,-7860,-7861,-7862,-7863,-7864,-7865,-7866,-7867,-7868,-7869,-7870, --7871,-5730], +[0,-20,-98,-481,-41,-9839,-9840,-9841,-9842,-9843,-3651], +[0,-419,-191], +[0,-458,-908,-712,-1859,-729,-3662,-2760,-9844,-306,-5376,-2761,-9845,-2206,-2762,-5377,-9846,-9847,-9848,-9849,-9850, +-5378,-3431], [1,3,2982], [0,2983,2984,2985,4], -[0,-7872,-7850,-7873,-7874,-7875,-7876,-812,-1018,-7731,-1077,-7877,-7878,-7879,-7880,-1875,-7881,-2114,-2177,-2551], -[0,-427,-428,-519,-641,-708,-932,-943,-950,-958,-966,-968,-1788,-1872,-2210,-2384,-2402,-2410], -[0,-891,-7857,-7882,-3994], +[0,-5379,-3661,-9851,-9852,-9853,-9854,-35,-1070,-2202,-41,-9855,-9856,-5380,-9857,-1252,-5381,-126,-16,-525], +[0,-22,-19,-51,-1612,-149,-1,-83,-1947,-9,-75,-67,-15,-1112,-27,-82,-124,-2], +[0,-458,-3662,-2763,-306], [1,3,2987], [0,2988,2989,195,10], -[0,-1018,-7883], -[0,-2322,-2250,-7884,-1849], +[0,-1070,-9858], +[0,-39,-97,-9859,-492], [1,3,2991], [0,2992,56,57,6], -[0,-668,-1078,-1406,-7885], +[0,-20,-1641,-1658,-2764], [1,3,2994], [0,2995,2996,7,8], -[0,-7886], -[0,-1127,-7887,-1130,-1144,-1148,-1155,-1413,-1437,-1471,-1475,-1479,-1481,-1487,-1542,-1548], +[0,-9860], +[0,-54,-3663,-957,-175,-341,-958,-373,-248,-79,-138,-213,-389,-861,-343,-23], [1,3,2998], [0,2999,3000,3001,5], -[0,-513,-532,-823,-1761,-2113,-2345], -[0,-7888,-7889,-526,-527,-534,-535,-539,-541,-544,-7890,-558,-564,-7891,-664,-679,-748,-756,-7892,-767,-778,-925,-932, --7893,-949,-957,-7894,-1041,-7895,-1168,-1171,-7896,-1248,-1304,-1331,-1455,-5610,-1471,-1475,-1476,-1482,-7759,-1490, --1491,-1492,-7897,-1600,-1601,-7898,-1602,-1643,-1654,-1743,-1814,-1889,-1960,-2125,-2163,-7899,-2210,-2211,-2275,-7900, --2417, --7901,-2437,-2476,-2481,-2483,-2485,-7902,-2501,-2503,-2505,-2509], -[0,-7903,-2476,-3098], +[0,-1917,-2301,-323,-4262,-1117,-1704], +[0,-9861,-9862,-179,-162,-96,-270,-333,-1047,-1920,-3664,-253,-2302,-9863,-13,-117,-508,-55,-9864,-26,-141,-948,-1,-9865, +-1632,-723,-2765,-271,-9866,-32,-1648,-9867,-1418,-372,-342,-859,-4966,-79,-138,-588,-187,-2758,-637,-676,-517,-3665, +-220,-971,-5382,-1239,-374,-3,-1242,-1982,-38,-4283,-7,-467,-9868,-27,-190,-154,-9869,-1130, +-9870,-438,-73,-1132,-888,-1475,-9871,-18,-93,-173,-1712], +[0,-9872,-73,-127], [1,3,3003], [0,3004,3005,3006,4], -[0,-616,-7904,-7905,-7906,-1370,-7907,-7908], -[0,-627,-756,-932,-1127,-1130,-1132,-1137,-1138,-1148,-7909,-1161,-1405,-1654], -[0,-7910,-7911,-7912,-7913], +[0,-2318,-9873,-9874,-9875,-515,-9876,-9877], +[0,-1383,-55,-1,-54,-957,-164,-584,-511,-341,-9878,-1647,-66,-3], +[0,-9879,-9880,-9881,-9882], [1,3,3008], [0,3009,3010,3011,4], -[0,-7914,-7915,-7916,-1329,-7917,-1548,-1752], -[0,-86,-3307,-519,-674,-767,-888,-932,-946,-1053,-1344,-1534,-7918,-1788,-7919,-1974,-2094,-2099,-2541], -[0,-735,-7920,-6899,-1501,-7921,-7922,-7923,-7924,-7925,-7926,-1752,-7927,-1974,-7928,-3110,-3261,-3443], +[0,-9883,-9884,-9885,-1425,-9886,-23,-1676], +[0,-49,-63,-51,-231,-26,-337,-1,-1404,-1638,-10,-17,-9887,-15,-9888,-642,-146,-1692,-34], +[0,-2991,-2766,-1176,-433,-5383,-5384,-9889,-9890,-9891,-9892,-1676,-9893,-642,-9894,-277,-746,-2506], [1,3,3013], [0,0,3014,7,5], -[0,-190,-7929,-3037,-7930,-3664,-932,-940,-967,-7931,-1942,-7932,-2379,-2410,-2411,-2469], +[0,-50,-9895,-5,-9896,-105,-1,-12,-25,-9897,-4,-5385,-33,-2,-84,-30], [1,3,3016], [0,3017,3018,3019,10], -[0,-7933,-7934,-7935,-7936,-7937,-2731,-7938,-7939,-7940,-7941,-628,-7942,-629,-2733,-7943,-7944,-7945,-7946,-7947,-668, --680,-7948,-724,-728,-7949,-7950,-7951,-7952,-834,-7953,-5501,-7954,-5502,-7955,-999,-1000,-1004,-1044,-1047,-7956,-1077, --6345,-5505,-5367,-1107,-6343,-7957,-7958,-7959,-1336,-1369,-1376,-7960,-7961,-1548,-1600,-7962,-1645,-1676,-1758,-1767, --7834,-7963, --1888,-7964,-7965,-7966,-2114,-6195,-7967,-7968,-2177,-5509,-7969,-7970,-2330,-2342,-2353,-7971,-2488,-7972,-3730,-7973, --7974,-7975], -[0,-6346,-630,-664,-665,-7976,-6477,-726,-7977,-7978,-932,-940,-7979,-964,-965,-1054,-7980,-1449,-1514,-1654,-1722,-1788, --1942,-7981,-2269,-2293,-2341,-2359,-7982,-2512,-2518,-7983,-7984], -[0,-3994,-7985,-5375,-687,-7986,-7987,-7988,-3114], +[0,-9898,-9899,-9900,-9901,-9902,-3143,-3666,-9903,-9904,-3667,-2320,-9905,-1928,-4405,-9906,-3668,-3669,-5386,-9907,-20, +-481,-9908,-367,-1057,-3670,-9909,-5387,-9910,-203,-9911,-4944,-9912,-4945,-3671,-118,-849,-40,-725,-339,-9913,-41,-2679, +-2634,-2630,-28,-2678,-9914,-9915,-3672,-586,-1080,-195,-9916,-9917,-23,-220,-9918,-92,-678,-463,-975,-5371,-5388, +-641,-5389,-9919,-5390,-126,-3487,-1561,-5391,-16,-2635,-1860,-5392,-603,-3117,-1469,-5393,-1133,-5394,-2528,-9920,-9921, +-9922], +[0,-1826,-1610,-13,-239,-5395,-5129,-284,-9923,-9924,-1,-12,-3673,-256,-115,-1227,-5396,-78,-1968,-3,-197,-15,-4,-3674, +-139,-123,-1703,-161,-2207,-889,-222,-9925,-9926], +[0,-306,-9927,-1807,-37,-5397,-9928,-9929,-3169], [1,3,3021], [0,3022,3023,3024,4], -[0,-3197,-33,-3376,-3384,-3355,-3374,-3397,-38,-3412,-40,-44,-7989,-7990,-7991,-7992,-541,-7993,-7941,-628,-7944,-7946, --702,-7994,-7995,-7955,-6195,-2177], -[0,-23,-7996,-7997,-7998,-7999,-8000,-528,-630,-664,-705,-8001,-722,-7949,-753,-7951,-8002,-902,-8003,-904,-8004,-8005, --8006,-8007,-8008,-8009,-932,-8010,-966,-7980,-8011,-1654,-1989,-2082,-7981,-2114,-2125,-2501], -[0,-525,-7986,-8012,-902,-3185,-3186], +[0,-2493,-578,-1139,-3195,-3193,-2502,-4554,-170,-1140,-21,-90,-9930,-5398,-9931,-9932,-1047,-3675,-3667,-2320,-3668, +-5386,-507,-9933,-9934,-3671,-3487,-16], +[0,-11,-5399,-9935,-5400,-9936,-9937,-91,-1610,-13,-941,-5401,-456,-3670,-158,-5387,-5402,-1399,-2767,-4159,-3676,-5403, +-5404,-5405,-5406,-5407,-1,-5408,-75,-5396,-3677,-3,-376,-346,-3674,-126,-7,-18], +[0,-281,-5397,-5409,-1399,-2031,-1280], [1,3,3026], [0,3027,3028,3029,6], -[0,-8013,-8014,-7941,-8015,-6346,-6345,-7959,-8016,-5509,-2488], -[0,-23,-32,-33,-3376,-38,-3412,-44,-7996,-7998,-8017,-7990,-629,-630,-664,-8001,-726,-8002,-902,-903,-8018,-8003,-8004, --8005,-8006,-8007,-8008,-8009,-8019,-8020,-8021,-932,-940,-8010,-964,-965,-967,-8022,-1054,-8011,-1654,-1942,-1989,-1990, --2091,-6348,-2281,-2282,-5059,-2501], -[0,-8012,-902], +[0,-9938,-9939,-3667,-9940,-1826,-2679,-3672,-5410,-2635,-1133], +[0,-11,-156,-578,-1139,-170,-1140,-90,-5399,-5400,-9941,-5398,-1928,-1610,-13,-5401,-284,-5402,-1399,-4158,-9942,-2767, +-3676,-5403,-5404,-5405,-5406,-5407,-9943,-9944,-9945,-1,-12,-5408,-256,-115,-25,-3678,-1227,-3677,-3,-4,-376,-4286,-378, +-5106,-182,-558,-4863,-18], +[0,-5409,-1399], [1,3,3031], [0,3032,3033,3034,8], -[0,-8023,-8024], -[0,-351,-3267,-3037,-1520,-2125,-2127,-2392,-2410], -[0,-905,-3264,-775,-8025,-8026], +[0,-9946,-9947], +[0,-62,-330,-5,-1430,-7,-14,-155,-2], +[0,-4160,-31,-24,-9948,-9949], [1,3,3036], [0,0,0,105,8], [1,3,3038], [0,0,3039,3040,8], -[0,-1654,-932,-1405,-966,-958,-968,-943,-974], -[0,-6422,-907,-2435], +[0,-3,-1,-66,-75,-9,-67,-83,-129], +[0,-833,-1218,-200], [1,3,3042], [0,3043,31,3044,4], -[0,-1801], -[0,-5827,-8027,-5865,-8028,-8029,-8030,-4116], +[0,-680], +[0,-252,-1029,-2139,-9950,-9951,-9952,-825], [1,3,3046], [0,3047,3048,7,4], -[0,-1119,-2321], -[0,-4035,-3136,-3037,-774,-932,-6929,-1344,-1415,-1534,-1623,-1942,-2410], +[0,-324,-1266], +[0,-898,-29,-5,-407,-1,-617,-10,-8,-17,-259,-4,-2], [1,3,3050], [0,3051,3052,3053,4], -[0,-479,-2269], -[0,-3037,-1202,-1376,-1654,-1788,-1966,-2410], -[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-3959,-910,-3262,-3960,-3961,-3962,-3963,-1376,-3964,-3965,-3214,-3966,-3967, --1965,-1966,-3968,-3969,-2063,-3970,-3108,-3971,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], +[0,-452,-139], +[0,-5,-671,-195,-3,-15,-392,-2], +[0,-2058,-2548,-1755,-1756,-37,-316,-299,-1757,-543,-116,-569,-3258,-352,-2549,-195,-1508,-2059,-45,-144,-353,-495,-392, +-2060,-2061,-1256,-1010,-1489,-3259,-1509,-1295,-178,-445,-102,-1011,-1716,-2062], [1,3,3055], [0,3056,3057,3058,8], -[0,-6511,-8031,-1977,-8032], -[0,-5834,-516,-5835,-932,-993,-1365,-1777,-1788,-2156,-2322], -[0,-3223,-8033,-8034,-3264,-6422,-6420], +[0,-1830,-9953,-981,-3679], +[0,-244,-269,-533,-1,-1069,-212,-273,-15,-189,-39], +[0,-472,-9954,-1184,-31,-833,-1539], [1,3,3060], [0,0,3061,3062,9], -[0,-664,-1344,-1654,-2176], -[0,-8035,-8036,-8037,-8038,-7534], +[0,-13,-10,-3,-1997], +[0,-5411,-9955,-9956,-576,-1344], [1,3,3064], [0,3065,122,196,5], -[0,-987,-2346], +[0,-1067,-469], [1,3,3067], [0,0,3068,3069,4], -[0,-23,-5584,-39,-40,-86,-3307,-7465,-527,-528,-533,-534,-932,-934,-940,-958,-967,-8039,-1107,-1344,-1415,-1646,-3547, --7861,-1942,-6040,-2501,-2503,-2518,-8040], -[0,-3113,-6845,-5558,-8041,-8042,-8043,-8044], +[0,-11,-1326,-449,-21,-49,-63,-1853,-162,-91,-86,-96,-1,-185,-12,-9,-25,-9957,-28,-10,-8,-88,-1497,-2761,-4,-3474,-18,-93, +-222,-9958], +[0,-694,-1340,-828,-3680,-9959,-5412,-9960], [1,3,3071], [0,3072,3073,85,4], -[0,-8045,-674,-918,-8046,-8047,-8048,-8049,-8050,-8051,-7394,-8052,-8053,-8054,-1559,-1794,-5849,-1797,-1798,-8055,-1992, --8056,-8057], -[0,-526,-6022,-557,-932,-933,-958,-962,-969,-1365,-1449,-2125,-2156], +[0,-5413,-231,-3008,-5414,-1861,-9961,-9962,-5415,-9963,-3604,-9964,-9965,-5416,-1666,-1245,-2138,-591,-1109,-2768,-684, +-9966,-3681], +[0,-179,-1818,-721,-1,-255,-9,-148,-64,-212,-78,-7,-189], [1,3,3075], [0,3076,3077,85,11], -[0,-1285,-2177,-2029,-1967,-1797,-8055,-2052,-917,-918], -[0,-915,-932,-2125,-1777,-21,-1365,-23,-557,-969,-2156,-32,-933,-958,-962,-970,-535,-6022], +[0,-672,-16,-437,-121,-591,-2768,-287,-4161,-3008], +[0,-431,-1,-7,-273,-48,-212,-11,-721,-64,-189,-156,-255,-9,-148,-186,-270,-1818], [1,3,3079], [0,3080,3081,85,4], -[0,-1285,-2177,-1967,-1797,-8062,-8063,-8046], -[0,-932,-2125,-1777,-21,-1365,-23,-557,-969,-2156,-32,-933,-958,-962,-970,-535,-6022], +[0,-672,-16,-121,-591,-9971,-2769,-5414], +[0,-1,-7,-273,-48,-212,-11,-721,-64,-189,-156,-255,-9,-148,-186,-270,-1818], [1,3,3083], [0,3084,3085,85,6], -[0,-1285,-5849], -[0,-932,-2125,-1777,-21,-1365,-23,-557,-2156,-32,-958,-934,-535,-6022], +[0,-672,-2138], +[0,-1,-7,-273,-48,-212,-11,-721,-189,-156,-9,-185,-270,-1818], [1,3,3087], [0,3088,3089,7,9], -[0,-459,-929], -[0,-465,-932,-943,-958,-963,-966,-968,-1654,-1788,-2293], +[0,-1044,-484], +[0,-772,-1,-83,-9,-211,-75,-67,-3,-15,-123], [1,3,3091], [0,3092,3093,3094,4], -[0,-461,-1026], -[0,-7150,-635,-8064,-3347,-8065,-8066,-1942,-2091], -[0,-8067,-8068,-6505,-8069,-8070,-8071,-3217,-8072,-8073,-8074,-3756,-8075,-8076,-8077,-8078,-8079], +[0,-202,-226], +[0,-2182,-301,-9972,-3189,-1562,-9973,-4,-378], +[0,-9974,-9975,-1829,-9976,-9977,-9978,-350,-9979,-9980,-9981,-278,-9982,-9983,-9984,-9985,-9986], [1,3,3096], [0,3097,3098,3099,4], -[0,-8080,-1283,-8081,-8082,-8083,-6402,-1797], -[0,-2832,-5834,-8084,-8085,-8086,-8087,-8088,-8089,-8090,-8091,-8092,-8093,-8094,-8095,-8096,-505,-516,-5835,-932,-6283, --6503,-1402,-1777,-1788,-8097,-2156,-8098,-2322,-8099], -[0,-3214,-3217,-6505,-3756,-7374,-5846,-8100,-8101,-5831], +[0,-5417,-1234,-9987,-5418,-9988,-3511,-591], +[0,-314,-244,-1563,-9989,-5419,-9990,-5420,-5421,-3682,-5422,-5423,-5424,-5425,-9991,-714,-1601,-269,-533,-1,-2160,-3520, +-1084,-273,-15,-9992,-189,-9993,-39,-9994], +[0,-45,-350,-1829,-278,-2741,-917,-9995,-5426,-2647], [1,3,3101], [0,3102,3103,3104,11], -[0,-6704,-8102,-8103,-8104], -[0,-932,-6706,-6707,-6708,-1344,-1534,-1788,-8105,-6709,-6710], -[0,-3217,-8106,-8107,-8108,-3184,-8109,-8110,-8111,-8112,-3207,-3214,-3582,-5396,-2444,-5260,-8113], +[0,-5161,-9996,-9997,-5427], +[0,-1,-3538,-3539,-3540,-10,-17,-15,-9998,-3541,-5162], +[0,-350,-9999,-10000,-1185,-349,-2208,-10001,-5428,-5429,-1736,-45,-567,-706,-136,-704,-1030], [1,3,3106], [0,0,3107,3108,4], -[0,-5834,-515,-932,-1365,-1414,-1788,-2156,-2416], -[0,-5396,-8108,-8114,-3214,-3217,-3582], +[0,-244,-720,-1,-212,-1967,-15,-189,-112], +[0,-706,-1185,-10002,-45,-350,-567], [1,3,3110], [0,0,3111,3112,5], -[0,-526,-527,-535,-4098,-558,-664,-767,-1654,-2125], -[0,-3184,-6324,-525], +[0,-179,-162,-270,-4701,-253,-13,-26,-3,-7], +[0,-349,-658,-281], [1,3,3114], [0,0,3115,3116,9], -[0,-8115,-1654,-902,-7945,-7938,-8116,-8117,-8118,-8119,-629,-7993,-8003,-8120,-8121,-6083,-6070,-8122,-6081,-548,-6072, --6068,-550,-6071,-6082], -[0,-8123,-3582,-1961,-5923], +[0,-10003,-3,-1399,-3669,-3666,-5430,-5431,-5432,-5433,-1928,-3675,-2767,-10004,-5434,-2665,-2660,-5435,-2663,-1605,-2662, +-2659,-1606,-2661,-2664], +[0,-5436,-567,-171,-504], [1,3,3118], [0,0,3119,3120,4], -[0,-21,-23,-40,-4691,-925,-932,-940,-943,-958,-966,-968,-1344,-1788,-1942,-2210,-2322], -[0,-1961,-5923,-3184,-8124,-926], +[0,-48,-11,-21,-2578,-948,-1,-12,-83,-9,-75,-67,-10,-15,-4,-27,-39], +[0,-171,-504,-349,-2770,-3009], [1,3,3122], [0,0,3123,3124,8], -[0,-5834,-515,-664,-923,-932,-993,-1127,-1137,-1149,-1161,-1365,-1654,-1788,-1963,-8125,-2156,-2322,-2416], -[0,-3217,-3207,-3184,-5396,-1961,-5923,-8126,-6917,-8127,-8128], +[0,-244,-720,-13,-1402,-1,-1069,-54,-584,-304,-1647,-212,-3,-15,-1686,-10005,-189,-39,-112], +[0,-350,-1736,-349,-706,-171,-504,-10006,-836,-2771,-5437], [1,3,3126], [0,0,3127,3128,5], -[0,-589,-585], -[0,-5559,-3264,-3590], +[0,-110,-1049], +[0,-503,-31,-208], [1,3,3130], [0,0,14,3131,10], -[0,-5559,-5569,-5570,-8129,-8130,-2265,-8131,-8132], +[0,-503,-1021,-1160,-3683,-1862,-168,-10007,-2772], [1,3,3133], [0,3134,3135,7,4], -[0,-988,-6100,-987,-2231], -[0,-461,-615,-8133,-664,-3629,-8134,-1168,-1197,-1231,-1646,-1815,-2177], +[0,-1068,-2667,-1067,-130], +[0,-202,-114,-10008,-13,-2519,-10009,-32,-513,-359,-88,-3075,-16], [1,3,3137], [0,3138,3139,3140,5], -[0,-189,-5200,-8135,-8136,-7820,-8137,-8138,-8139,-8140,-426,-469,-769,-812,-930,-982,-983,-986,-8141,-6100,-1025,-8142, --1047,-1108,-1353,-8143,-1393,-8144,-1645,-5199,-1815], -[0,-2832,-23,-40,-3794,-7462,-3244,-8145,-8146,-3037,-428,-534,-652,-664,-674,-722,-753,-795,-888,-955,-8147,-7355,-8148, --8149,-8150,-987,-8151,-1107,-1110,-1116,-1125,-1431,-1498,-1534,-1600,-1602,-1610,-8152,-8153,-8154,-8155,-8156,-8157, --1654,-8158,-8159,-1942,-1959,-1972,-2066,-2082,-2177,-2195,-2210,-2410,-2501,-2503,-8160], -[0,-3272,-7148,-3214,-3217,-986], +[0,-717,-2610,-10010,-10011,-2204,-5438,-10012,-10013,-10014,-320,-183,-225,-35,-408,-1066,-950,-583,-3684,-2667,-952, +-5439,-339,-1413,-460,-3685,-1081,-10015,-92,-2122,-3075], +[0,-314,-11,-21,-2537,-2195,-290,-10016,-5440,-5,-19,-96,-43,-13,-231,-456,-158,-483,-337,-544,-5441,-1849,-5442,-10017, +-5443,-1067,-5444,-28,-56,-387,-670,-516,-799,-17,-220,-1239,-227,-10018,-10019,-10020,-10021,-10022,-10023,-3,-5445, +-5446,-4,-362,-181,-1257,-346,-16,-276,-27,-2,-18,-93,-2773], +[0,-363,-224,-45,-350,-583], [1,3,3142], [0,3143,3144,197,5], -[0,-1797,-1798,-934], -[0,-2322,-887,-932,-1365,-44,-8161,-8162,-557,-969,-2156,-958,-962,-970], +[0,-591,-1109,-185], +[0,-39,-1398,-1,-212,-90,-3686,-5447,-721,-64,-189,-9,-148,-186], [1,3,3146], [0,3147,3148,197,4], -[0,-2177,-1797,-1798,-8167], -[0,-2322,-887,-932,-1365,-44,-8161,-8162,-557,-2156,-958], +[0,-16,-591,-1109,-2210], +[0,-39,-1398,-1,-212,-90,-3686,-5447,-721,-189,-9], [1,3,3150], [0,3151,3152,3153,10], -[0,-934], -[0,-427,-428,-855,-932,-940,-958,-1344,-1534,-1771,-1942,-8168,-2410], -[0,-8164,-727,-4795,-8165,-6434,-8166,-932,-8163,-3214,-4900,-2410], +[0,-185], +[0,-22,-19,-944,-1,-12,-9,-10,-17,-65,-4,-10024,-2], +[0,-3687,-335,-446,-2209,-1540,-3688,-1,-1564,-45,-2090,-2], [1,3,3155], [0,0,38,3156,8], -[0,-3939,-707,-8169,-5553,-7148,-8170,-1445,-1452,-8171,-932,-5874,-8172,-8173,-7440,-7144,-8174,-7840,-8175], +[0,-1507,-334,-1186,-230,-224,-577,-587,-119,-2774,-1,-534,-1187,-3689,-293,-619,-1565,-1183,-1566], [1,3,3158], [0,3159,38,3160,4], -[0,-190,-1110], -[0,-932,-5031,-8176], +[0,-50,-56], +[0,-1,-2096,-5448], [1,3,3162], [0,3163,3164,3165,4], -[0,-3615,-3244,-190,-3748,-427,-428,-938,-945,-8177,-948,-958,-960,-964,-965,-7354,-978,-2411], -[0,-4367,-932,-2410], -[0,-4362,-932,-5031,-8176], +[0,-498,-290,-50,-315,-22,-19,-1220,-1222,-2775,-246,-9,-180,-256,-115,-2739,-151,-84], +[0,-2084,-1,-2], +[0,-1769,-1,-2096,-5448], [1,3,3167], [0,3168,3169,76,11], -[0,-965,-964,-958,-8177,-428,-7354,-427,-948], -[0,-932,-2410,-4367], +[0,-115,-256,-9,-2775,-19,-2739,-22,-246], +[0,-1,-2,-2084], [1,3,3171], [0,0,0,3172,6], -[0,-932,-8163,-5031,-8178,-1942], +[0,-1,-1564,-2096,-10025,-4], [1,3,3174], [0,3175,0,7,5], -[0,-23,-959,-969,-32,-958,-561,-956,-962,-8179,-428,-8167,-970,-976,-427], +[0,-11,-145,-64,-156,-9,-1607,-485,-148,-10026,-19,-2210,-186,-1406,-22], [1,3,3177], [0,0,3178,3179,5], -[0,-932,-943,-958,-965,-968,-2322], -[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8163,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2176,-2250, --8185,-5553,-8186,-8187,-8174], +[0,-1,-83,-9,-115,-67,-39], +[0,-2776,-293,-619,-334,-2777,-2778,-2779,-1187,-1183,-1,-1564,-1566,-587,-119,-224,-2780,-1186,-654,-1997,-97,-2781,-230, +-2782,-2783,-1565], [1,3,3181], [0,0,3182,3183,4], -[0,-3330,-8096,-932,-958,-965,-968,-2322], -[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8163,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2250,-8185, --5553,-8186,-8187,-8174], +[0,-364,-714,-1,-9,-115,-67,-39], +[0,-2776,-293,-619,-334,-2777,-2778,-2779,-1187,-1183,-1,-1564,-1566,-587,-119,-224,-2780,-1186,-654,-97,-2781,-230,-2782, +-2783,-1565], [1,3,3185], [0,3186,3187,7,9], -[0,-190,-3560,-978,-1110,-2411], -[0,-8188,-3330,-3037,-8189,-672,-932,-8190,-8191,-1942,-2410], +[0,-50,-529,-151,-56,-84], +[0,-10027,-364,-5,-5449,-1388,-1,-3690,-10028,-4,-2], [1,3,3189], [0,3190,3191,3192,4], -[0,-8192,-7462,-3748,-8167,-1110], -[0,-519,-932], -[0,-8163,-2541,-8193,-8194,-8195,-8196,-8197,-707,-8169,-5553,-7148,-8170,-1445,-1452,-8171,-932,-5874,-8172,-2250,-8173, --7440,-7144,-8174,-7840,-8175,-5493], +[0,-10029,-2195,-315,-2210,-56], +[0,-51,-1], +[0,-1564,-34,-5450,-10030,-10031,-5451,-5452,-334,-1186,-230,-224,-577,-587,-119,-2774,-1,-534,-1187,-97,-3689,-293,-619, +-1565,-1183,-1566,-654], [1,3,3194], [0,0,3195,3196,10], -[0,-86,-3307,-767,-1344,-1534,-2094,-2099,-2541], -[0,-8198,-727,-932,-7921,-7922,-8199,-2541], +[0,-49,-63,-26,-10,-17,-146,-1692,-34], +[0,-10032,-335,-1,-5383,-5384,-1567,-34], [1,3,3198], [0,3199,3200,3201,4], -[0,-429,-469,-671,-719,-755,-823,-3780,-7829,-1418,-1456,-5473,-1605,-2400], -[0,-190,-3037,-4372,-8200,-3899,-6593,-932,-940,-958,-965,-967,-978,-1609,-1768,-1771,-1821,-1942,-2210,-7969,-2410,-2411, --2469], -[0,-4100,-3671,-856,-932,-3262,-3862], +[0,-771,-183,-1387,-58,-386,-323,-2049,-1858,-857,-635,-4938,-1098,-215], +[0,-50,-5,-279,-1188,-1009,-922,-1,-12,-9,-115,-25,-151,-518,-1108,-65,-803,-4,-27,-1860,-2,-84,-30], +[0,-700,-399,-42,-1,-116,-107], [1,3,3203], [0,3204,0,3205,8], -[0,-812,-8201,-1101,-8202,-8203,-2654,-8204], -[0,-2410,-932,-6024,-6041,-3862], +[0,-35,-10033,-1230,-10034,-10035,-313,-5453], +[0,-2,-1,-657,-5055,-107], [1,3,3207], [0,3208,3209,3210,5], -[0,-1046,-1077,-1543,-1793,-2168], -[0,-21,-23,-40,-86,-3307,-8205,-7166,-528,-533,-679,-8206,-767,-824,-825,-932,-940,-8207,-958,-1344,-1415,-1424,-1534, --1771,-1942,-2251,-2501], -[0,-932,-7148,-8170,-5932,-2501], +[0,-1408,-41,-732,-1681,-646], +[0,-48,-11,-21,-49,-63,-2211,-1025,-91,-86,-117,-5454,-26,-150,-232,-1,-12,-10036,-9,-10,-8,-1085,-17,-65,-4,-134,-18], +[0,-1,-224,-577,-831,-18], [1,3,3212], [0,3213,3214,3215,4], -[0,-189,-7462,-8208,-986,-8209,-8210,-2115], -[0,-428,-519,-652,-668,-932,-8211,-947,-955,-999,-1771,-1821,-1866,-2410,-2541], -[0,-932,-5208,-3784,-519,-4004,-4043,-507,-5856,-5855,-1654], +[0,-717,-2195,-10037,-583,-10038,-10039,-644], +[0,-19,-51,-43,-20,-1,-5455,-668,-544,-118,-65,-803,-1111,-2,-34], +[0,-1,-354,-383,-51,-76,-473,-280,-2649,-1163,-3], [1,3,3217], [0,3218,3219,3220,9], -[0,-8212], -[0,-1654,-932,-528,-1552], -[0,-525,-932,-5208,-3784,-528], +[0,-10040], +[0,-3,-1,-91,-1096], +[0,-281,-1,-354,-383,-91], [1,3,3222], [0,3223,3224,3225,5], -[0,-7150,-8213,-635,-658,-1047,-1110,-1565,-2177], -[0,-23,-32,-86,-3307,-3615,-190,-3470,-3471,-8214,-3268,-8215,-3330,-3136,-8216,-3199,-589,-8217,-891,-932,-940,-955,-967, --1002,-1344,-1415,-1942,-2174,-2205,-2375,-2379,-2410,-2411], -[0,-932,-4865,-6520,-3690,-7148,-657,-8218], +[0,-2182,-10041,-301,-1052,-339,-56,-1667,-16], +[0,-11,-156,-49,-63,-498,-50,-297,-298,-2784,-747,-10042,-364,-29,-3691,-140,-110,-10043,-458,-1,-12,-544,-25,-787,-10,-8, +-4,-122,-600,-57,-33,-2,-84], +[0,-1,-94,-3525,-100,-224,-2986,-10044], [1,3,3227], [0,0,123,3228,5], -[0,-932,-5208,-8108,-4795], +[0,-1,-354,-1185,-446], [1,3,3230], [0,3231,3232,3233,4], -[0,-930,-1353], -[0,-5380,-3037,-8219,-528,-708,-769,-932,-8220,-1077,-1654,-1788,-1810,-2125,-2177,-5621,-8221,-2816], -[0,-932,-5208,-3784,-3862,-8222,-3485,-8223,-1109,-1110,-8224,-8225,-8226,-8227,-8228,-8229], +[0,-408,-460], +[0,-3388,-5,-5456,-91,-149,-225,-1,-10045,-41,-3,-15,-592,-7,-16,-4973,-10046,-1722], +[0,-1,-354,-383,-107,-5457,-1001,-5458,-852,-56,-10047,-10048,-10049,-10050,-10051,-10052], [1,3,3235], [0,3236,3237,198,11], -[0,-189,-988], -[0,-86,-3307,-3534,-8230,-3244,-190,-3560,-8231,-8232,-8233,-426,-3044,-3037,-428,-429,-3899,-932,-8234,-940,-947,-965, --978,-981,-982,-986,-1344,-1431,-1534,-1548,-1609,-1768,-1772,-1942,-2892,-2410,-2411,-2469], +[0,-717,-1068], +[0,-49,-63,-3213,-1348,-290,-50,-529,-3692,-5459,-10053,-320,-143,-5,-19,-771,-1009,-1,-10054,-12,-668,-115,-151,-1407, +-1066,-583,-10,-516,-17,-23,-518,-1108,-345,-4,-380,-2,-84,-30], [1,3,3239], [0,3240,3241,3242,4], -[0,-1548,-8235], -[0,-469,-1107,-1344,-1654,-932,-2125,-8236,-6611,-21,-23,-5870,-43,-2174,-40,-32,-8237,-3201,-955,-535,-3408,-36], -[0,-932,-3862,-8238], +[0,-23,-10055], +[0,-183,-28,-10,-3,-1,-7,-5460,-2699,-48,-11,-829,-174,-122,-21,-156,-5461,-3179,-544,-270,-1284,-300], +[0,-1,-107,-10056], [1,3,3244], [0,3245,3246,3247,8], -[0,-1333], -[0,-8239,-8240,-932,-940,-8241,-1942,-2177], -[0,-3784,-5208,-932,-3264], +[0,-488], +[0,-10057,-10058,-1,-12,-5462,-4,-16], +[0,-383,-354,-1,-31], [1,3,3249], [0,3250,3251,3252,9], -[0,-8242,-8243,-8244,-8045,-505,-812,-8245,-8246,-8247,-1285,-7437,-1393,-1645,-8063,-8248,-8055,-2177,-8249,-2383], -[0,-8250,-3330,-428,-526,-527,-528,-539,-541,-557,-6089,-566,-572,-664,-767,-8251,-932,-947,-948,-955,-958,-7894,-6039, --8252,-1107,-1365,-1408,-1461,-8253,-8254,-1609,-1654,-8255,-1788,-2074,-2125,-2156,-2210,-2359,-2410,-8256], -[0,-932,-5208,-3784,-3184,-5748,-3209,-6024,-8257], +[0,-10059,-3693,-10060,-5413,-1601,-35,-1863,-2785,-10061,-672,-3610,-1081,-92,-2769,-10062,-2768,-16,-10063,-815], +[0,-5463,-364,-19,-179,-162,-91,-333,-1047,-721,-2666,-429,-844,-13,-26,-10064,-1,-668,-246,-544,-9,-2765,-5054,-10065, +-28,-212,-1235,-636,-10066,-10067,-518,-3,-3694,-15,-327,-7,-189,-27,-161,-2,-3695], +[0,-1,-354,-383,-349,-4997,-381,-657,-1864], [1,3,3254], [0,199,3255,198,6], -[0,-21,-23,-40,-42,-86,-3307,-8230,-8258,-3470,-3471,-5325,-3330,-3136,-3037,-3199,-427,-428,-429,-533,-8259,-815,-932, --940,-947,-955,-958,-965,-967,-981,-8260,-1344,-1392,-1415,-6725,-1534,-8241,-1868,-1942,-2125,-2174,-2177,-2379,-2410], +[0,-48,-11,-21,-137,-49,-63,-1348,-10068,-297,-298,-2125,-364,-29,-5,-140,-22,-19,-771,-86,-10069,-509,-1,-12,-668,-544, +-9,-115,-25,-1407,-2212,-10,-547,-8,-5166,-17,-5462,-1251,-4,-7,-122,-16,-33,-2], [1,3,3257], [0,3258,3259,3260,4], -[0,-8261,-8262,-8263,-3896,-812,-930,-986,-8141,-1320,-8264,-8265,-2177,-8266,-8267], -[0,-2832,-21,-23,-32,-3203,-40,-8268,-8269,-7820,-8270,-351,-7040,-3472,-7041,-3035,-3198,-8232,-8146,-426,-4049,-3621, --3037,-3199,-8271,-3782,-535,-539,-8272,-652,-656,-664,-813,-932,-8237,-8236,-1107,-1110,-1344,-8273,-1456,-8274,-1534, --1654,-8275,-1874,-8276,-2125,-2127,-2174,-2210,-5198,-2410,-2411], -[0,-932,-3862,-1446], +[0,-10070,-10071,-10072,-2056,-35,-408,-583,-3684,-673,-10073,-10074,-16,-5464,-10075], +[0,-314,-48,-11,-156,-998,-21,-10076,-10077,-2204,-10078,-62,-925,-749,-618,-109,-169,-5459,-5440,-320,-652,-71,-5,-140, +-10079,-1505,-270,-333,-10080,-43,-430,-13,-1622,-1,-5461,-5460,-28,-56,-10,-3696,-635,-3697,-17,-3,-3698,-391,-1189,-7, +-14,-122,-27,-3361,-2,-84], +[0,-1,-107,-165], [1,3,3262], [0,3263,3264,3265,9], -[0,-189,-7820,-8137,-8277,-8278,-8279,-7356,-5199,-2653], -[0,-32,-8280,-50,-8230,-7462,-8281,-8282,-3748,-7155,-3621,-8283,-3037,-3199,-427,-428,-652,-8284,-928,-932,-940,-955, --8285,-960,-8286,-961,-963,-965,-8287,-967,-971,-980,-7355,-982,-997,-1110,-1654,-1834,-1942,-2177,-2281,-8288,-2282, --8289,-8290,-2892,-2392,-2410,-2411,-8291,-2468,-2478], -[0,-932,-5208,-3784,-7148,-8292,-1460,-4055], +[0,-717,-2204,-5438,-10081,-10082,-10083,-2188,-2122,-2018], +[0,-156,-1865,-357,-1348,-2195,-3699,-3700,-315,-2183,-71,-5465,-5,-140,-22,-19,-43,-3701,-87,-1,-12,-544,-10084,-180, +-3702,-1223,-211,-115,-2786,-25,-784,-785,-1849,-1066,-410,-56,-3,-1682,-4,-16,-182,-5466,-558,-10085,-10086,-380,-155, +-2,-84,-3703,-817,-990], +[0,-1,-354,-383,-224,-5467,-272,-108], [1,3,3267], [0,3268,3269,3270,4], -[0,-5113,-8243,-505,-8293,-522,-8294,-8295,-5973,-1285,-8296,-8297,-1645,-8063,-8032,-8298], -[0,-21,-23,-32,-3203,-43,-516,-535,-557,-932,-934,-947,-955,-956,-958,-988,-1059,-1365,-1408,-7317,-1646,-1777,-1797, --1798,-2125,-2156,-2177,-2322,-8299], -[0,-932,-5208,-3784,-4665,-4666,-4146], +[0,-1522,-3693,-1601,-10087,-1205,-3704,-10088,-5040,-672,-5468,-10089,-92,-2769,-3679,-10090], +[0,-48,-11,-156,-998,-174,-269,-270,-721,-1,-185,-668,-544,-485,-9,-1068,-412,-212,-1235,-3597,-88,-273,-591,-1109,-7, +-189,-16,-39,-5469], +[0,-1,-354,-383,-1018,-1309,-904], [1,3,3272], [0,3273,3274,3275,4], -[0,-1618], -[0,-1788,-664,-1654,-932,-1110,-190,-8148,-8300], -[0,-932,-5208,-1599,-7148,-8170], +[0,-862], +[0,-15,-13,-3,-1,-56,-50,-5442,-10091], +[0,-1,-354,-99,-224,-577], [1,3,3277], [0,3278,0,3279,10], -[0,-1110,-189], -[0,-932,-5208,-3784,-1654], +[0,-56,-717], +[0,-1,-354,-383,-3], [1,3,3281], [0,3282,3283,200,9], -[0,-189,-909,-8301,-1101,-1110,-2898,-1353,-2177,-8302], -[0,-190,-3330,-426,-8303,-3037,-428,-5209,-932,-940,-947,-955,-1026,-1344,-1534,-1609,-1654,-1772,-1788,-1810,-1942,-1977, --2091,-2125,-8304,-2400,-2410], +[0,-717,-781,-10092,-1230,-56,-4456,-460,-16,-10093], +[0,-50,-364,-320,-10094,-5,-19,-2613,-1,-12,-668,-544,-226,-10,-17,-518,-3,-345,-15,-592,-4,-981,-378,-7,-10095,-215,-2], [1,3,3285], [0,3286,3287,200,6], -[0,-6578,-8305,-1353,-1645,-2114,-2177], -[0,-5380,-708,-932,-1026,-1110,-1654,-1788,-1810,-1977,-2125], +[0,-5148,-10096,-460,-92,-126,-16], +[0,-3388,-149,-1,-226,-56,-3,-15,-592,-981,-7], [1,3,3289], [0,3290,0,3291,10], -[0,-8306,-2653], -[0,-932,-5208,-3784,-1942], +[0,-10097,-2018], +[0,-1,-354,-383,-4], [1,3,3293], [0,3294,3295,3296,4], -[0,-189], -[0,-428,-855,-932,-940,-947,-955,-959,-965,-967,-1110,-1344,-1415,-1534,-1772,-1942,-2410], -[0,-932,-5208,-3784,-1961,-5923], +[0,-717], +[0,-19,-944,-1,-12,-668,-544,-145,-115,-25,-56,-10,-8,-17,-345,-4,-2], +[0,-1,-354,-383,-171,-504], [1,3,3298], [0,3299,3300,201,5], -[0,-8243,-8307,-505,-8308,-8245,-8309,-988,-1285,-8296,-1645,-1798,-8063,-8055,-1967,-2114,-2177,-5010,-8310], -[0,-23,-32,-3332,-8311,-8312,-41,-3330,-426,-3037,-428,-528,-932,-934,-947,-955,-958,-981,-8260,-982,-986,-8313,-1107, --1405,-1408,-8314,-1609,-1654,-1777,-2210,-2410,-8256], +[0,-3693,-10098,-1601,-10099,-1863,-10100,-1068,-672,-5468,-92,-1109,-2769,-2768,-121,-126,-16,-3342,-5470], +[0,-11,-156,-3187,-10101,-10102,-132,-364,-320,-5,-19,-91,-1,-185,-668,-544,-9,-1407,-2212,-1066,-583,-10103,-28,-66, +-1235,-5471,-518,-3,-273,-27,-2,-3695], [1,3,3302], [0,3303,3304,201,5], -[0,-2564,-23,-25,-8315,-3251], -[0,-1415,-2410,-3037,-47,-528,-3330,-426,-8316,-8317,-32,-42], +[0,-263,-11,-405,-10104,-3183], +[0,-8,-2,-5,-450,-91,-364,-320,-5472,-3705,-156,-137], [1,3,3306], [0,3307,3308,3309,6], -[0,-189,-5200,-3896,-8273,-8318,-8319,-8320], -[0,-50,-3462,-8230,-3244,-190,-8281,-8282,-5030,-3035,-3330,-8231,-426,-3621,-3037,-8321,-427,-428,-507,-664,-8284,-932, --940,-947,-948,-955,-958,-960,-8286,-961,-963,-965,-8322,-967,-971,-978,-980,-7355,-8323,-1609,-1654,-8324,-1588,-1772, --1788,-1834,-1942,-2177,-2281,-3085,-8288,-2892,-2392,-2410,-2411,-8291,-2468,-2478], -[0,-932,-5208,-3784,-5570,-5569], +[0,-717,-2610,-2056,-3696,-3706,-5473,-3707], +[0,-357,-4563,-1348,-290,-50,-3699,-3700,-2602,-109,-364,-3692,-320,-71,-5,-5474,-22,-19,-280,-13,-3701,-1,-12,-668,-246, +-544,-9,-180,-3702,-1223,-211,-115,-10105,-25,-784,-151,-785,-1849,-10106,-518,-3,-5475,-296,-345,-15,-1682,-4,-16,-182, +-2027,-5466,-380,-155,-2,-84,-3703,-817,-990], +[0,-1,-354,-383,-1160,-1021], [1,3,3311], [0,3312,3313,3314,5], -[0,-8325], -[0,-190,-5887,-932,-8326,-940,-947,-955,-1534,-1609,-1654,-1771,-1942,-2174,-8160], -[0,-932,-7107,-8327], +[0,-5476], +[0,-50,-830,-1,-5477,-12,-668,-544,-17,-518,-3,-65,-4,-122,-2773], +[0,-1,-711,-5478], [1,3,3316], [0,3317,0,3318,9], -[0,-2410,-2177,-8328,-1566,-8329,-5200,-1645,-5198,-8320,-651,-644,-1110], -[0,-8330,-932,-5208], +[0,-2,-16,-10107,-1238,-10108,-2610,-92,-3361,-3707,-454,-1384,-56], +[0,-10109,-1,-354], [1,3,3320], [0,0,123,3321,11], -[0,-932,-5208], +[0,-1,-354], [1,3,3323], [0,3324,3325,3326,9], -[0,-189,-3115,-6100,-1110,-1499,-1889,-1907,-1929,-2177,-8331], -[0,-23,-32,-6034,-8230,-4776,-8332,-8333,-4049,-8334,-3621,-3037,-8335,-3199,-8336,-3331,-3782,-461,-507,-928,-982,-8190, --983,-986,-1431,-1521,-1654,-1916,-1931,-2162,-2232,-2286,-2299,-8337,-2392,-2399,-2548], -[0,-932,-3784,-5208,-2299,-8338], +[0,-717,-1729,-2667,-56,-2368,-38,-868,-1453,-16,-10110], +[0,-11,-156,-2657,-1348,-757,-10111,-10112,-652,-3708,-71,-5,-5479,-140,-2787,-1740,-1505,-202,-280,-87,-1066,-3690,-950, +-583,-516,-219,-3,-1452,-556,-80,-811,-396,-221,-10113,-155,-236,-262], +[0,-1,-383,-354,-221,-10114], [1,3,3328], [0,3329,3330,3331,5], -[0,-3331,-429], -[0,-86,-3307,-3244,-190,-3037,-5206,-3664,-6593,-3665,-932,-940,-947,-948,-8339,-965,-968,-981,-8260,-1110,-1344,-1431, --1534,-1942,-2910,-2174,-2892,-2410,-2411,-2469], -[0,-932,-5208,-3784,-7148,-5127,-3634], +[0,-1740,-771], +[0,-49,-63,-290,-50,-5,-2612,-105,-922,-1005,-1,-12,-668,-246,-1866,-115,-67,-1407,-2212,-56,-10,-516,-17,-4,-470,-122, +-380,-2,-84,-30], +[0,-1,-354,-383,-224,-4874,-61], [1,3,3333], [0,3334,3335,3336,4], -[0,-429,-264,-263], -[0,-4153,-3330,-426,-932,-4164], -[0,-4165,-856,-4100,-3485,-4156,-4158,-4346,-3862], +[0,-771,-1905,-1599], +[0,-2558,-364,-320,-1,-3275], +[0,-753,-42,-700,-1001,-3271,-3272,-4760,-107], [1,3,3338], [0,3339,3340,3341,9], -[0,-3188,-189,-671,-680,-8340,-3347,-8341,-1110,-1366,-5894,-1451,-1878,-8342,-8343,-2177,-4096], -[0,-22,-23,-32,-3244,-8344,-428,-3782,-519,-652,-910,-932,-8211,-945,-947,-955,-960,-978,-981,-8260,-982,-986,-1536,-1609, --8345,-8346,-1768,-1772,-8275,-1821,-1951,-2410,-2478,-2548], -[0,-932,-5208,-3784,-8347,-8170,-7148,-5553,-2541], +[0,-2491,-717,-1387,-481,-10115,-3189,-3709,-56,-793,-3449,-1087,-554,-5480,-10116,-16,-2070], +[0,-505,-11,-156,-290,-10117,-19,-1505,-51,-43,-543,-1,-5455,-1222,-668,-544,-180,-151,-1407,-2212,-1066,-583,-1663,-518, +-2788,-10118,-1108,-345,-3698,-803,-871,-2,-990,-262], +[0,-1,-354,-383,-10119,-577,-224,-230,-34], [1,3,3343], [0,199,3344,3345,4], -[0,-3748,-3330,-3621,-3037,-427,-428,-5206,-8348,-8349,-726,-932,-947,-955,-979,-981,-8260,-2379,-2392,-2410,-2423,-2469], -[0,-932,-5208,-3784,-8350,-2469,-8351], +[0,-315,-364,-71,-5,-22,-19,-2612,-10120,-1568,-284,-1,-668,-544,-1948,-1407,-2212,-33,-155,-2,-1270,-30], +[0,-1,-354,-383,-10121,-30,-10122], [1,3,3347], [0,3348,3349,3350,5], -[0,-189,-5199,-2788,-1931,-2177,-8352], -[0,-50,-3560,-8282,-3748,-5030,-3330,-8283,-3037,-3199,-8353,-427,-428,-3782,-3664,-507,-8284,-928,-932,-6835,-940,-955, --958,-961,-8354,-8287,-967,-978,-8190,-983,-986,-997,-1110,-1449,-1609,-1852,-1942,-2892,-2410,-8291,-2468,-2469,-2478], -[0,-932,-3784,-5031,-2476,-5173,-8199], +[0,-717,-2122,-2468,-556,-16,-3710], +[0,-357,-529,-3700,-315,-2602,-364,-5465,-5,-140,-10123,-22,-19,-1505,-105,-280,-3701,-87,-1,-3556,-12,-544,-9,-1223, +-10124,-2786,-25,-151,-3690,-950,-583,-410,-56,-78,-518,-594,-4,-380,-2,-3703,-817,-30,-990], +[0,-1,-383,-2096,-73,-1319,-1567], [1,3,3352], [0,3353,3354,3355,6], -[0,-22,-1464,-668,-1373,-1793,-2006,-2205], -[0,-3244,-8355,-3330,-3037,-4067,-3040,-740,-932,-5135,-8356,-8357,-1431,-1741,-2269,-2410,-2469], -[0,-932,-8358], +[0,-505,-1089,-20,-4218,-1681,-6,-600], +[0,-290,-1867,-364,-5,-3264,-47,-385,-1,-4878,-10125,-10126,-516,-2392,-139,-2,-30], +[0,-1,-10127], [1,3,3357], [0,3358,3359,38,9], -[0,-8359,-426,-8360,-988], -[0,-428,-664,-983,-986,-8159,-2195], +[0,-10128,-320,-10129,-1068], +[0,-19,-13,-950,-583,-5446,-276], [1,3,3361], [0,0,3362,38,5], -[0,-1810,-2127,-2132,-2384,-2410], +[0,-592,-14,-417,-82,-2], [1,3,3364], [0,3365,0,3366,4], -[0,-941,-8361], -[0,-984], +[0,-1221,-10130], +[0,-4164], [1,3,3368], [0,0,0,3369,9], -[0,-4791,-3217,-8257,-6024,-3209,-3966,-4792], +[0,-910,-350,-1864,-657,-381,-144,-425], [1,3,3371], [0,3372,3373,3374,5], -[0,-461,-6426,-983], -[0,-2832,-2127,-2195,-2384,-2410], -[0,-3272,-3217,-3214,-3215,-4132,-461], +[0,-202,-1827,-950], +[0,-314,-14,-276,-82,-2], +[0,-363,-350,-45,-74,-400,-202], [1,3,3376], [0,0,3377,3378,5], -[0,-6774,-8362,-8363,-1107,-1405,-8364,-1471,-1475,-1477,-1478,-1479,-1480,-1482,-1487,-8365,-1488,-1548,-1654,-8366, --2081,-2330,-2388,-2410,-2412,-8367,-2501], -[0,-3272,-3217,-987,-3214,-3215,-4132], +[0,-2172,-10131,-10132,-28,-66,-5481,-79,-138,-1429,-1661,-213,-1090,-187,-861,-5482,-798,-23,-3,-10133,-984,-603,-199,-2, +-3122,-10134,-18], +[0,-363,-350,-1067,-45,-74,-400], [1,3,3380], [0,0,3381,7,5], -[0,-558,-566,-664,-986,-1168,-1179,-1199,-1205,-8368,-1452,-1654], +[0,-253,-429,-13,-583,-32,-3024,-1073,-3027,-10135,-119,-3], [1,3,3383], [0,202,3384,7,6], -[0,-2410,-2447], +[0,-2,-1131], [1,3,3386], [0,0,3387,3388,6], -[0,-1654,-932,-1405,-589,-2172,-2155,-585,-966,-958,-968,-943,-963,-974], -[0,-990,-1334,-4616], +[0,-3,-1,-66,-110,-1462,-497,-1049,-75,-9,-67,-83,-211,-129], +[0,-848,-103,-1308], [1,3,3390], [0,3391,3392,3393,8], -[0,-8369,-992], -[0,-8370,-8371,-8372,-8373,-4272,-5686,-3037,-8096,-633,-8374,-756,-1344,-1405,-1471,-1472,-1477,-1479,-8375,-1646,-1788, --1942,-2322,-2379,-2388,-2402,-2405,-2410,-8376], -[0,-4276,-8377], +[0,-10136,-4165], +[0,-10137,-10138,-10139,-10140,-3289,-761,-5,-714,-60,-10141,-55,-10,-66,-79,-860,-1429,-213,-3711,-88,-15,-4,-39,-33, +-199,-124,-816,-2,-10142], +[0,-2564,-10143], [1,3,3395], [0,3396,3397,3398,5], -[0,-4272,-616,-760,-8378,-8379], -[0,-8380,-3037,-8381,-8096,-932,-1471,-1475,-1479,-8375,-8382,-1788,-1942,-2322,-2379,-2410], -[0,-4276,-8113,-5260], +[0,-3289,-2318,-2992,-5483,-10144], +[0,-5484,-5,-10145,-714,-1,-79,-138,-213,-3711,-5485,-15,-4,-39,-33,-2], +[0,-2564,-1030,-704], [1,3,3400], [0,3401,3402,3403,5], -[0,-461,-668,-2550,-1548,-615,-1077,-8383,-988,-1600,-8384,-2425], -[0,-1983,-8385,-2410,-3037], -[0,-8386,-8387,-3214,-1599,-4004], +[0,-202,-20,-98,-23,-114,-41,-5486,-1068,-220,-10146,-1271], +[0,-465,-5487,-2,-5], +[0,-3712,-10147,-45,-99,-76], [1,3,3405], [0,3406,3407,3408,5], -[0,-883,-8388,-1597,-8389,-2239,-8390,-2346], -[0,-8391,-8392,-8393,-2322,-8394], -[0,-5827,-6917,-8395,-7724,-2239,-8396,-1631,-8276], +[0,-1397,-1868,-970,-10148,-812,-5488,-469], +[0,-10149,-2789,-2790,-39,-3713], +[0,-252,-836,-5489,-767,-812,-5490,-491,-1189], [1,3,3410], [0,0,3411,3412,9], -[0,-589,-615,-756,-1654,-1788], -[0,-5389,-997,-6820,-8397,-8398,-8399,-8400,-6821,-8401,-8402,-1801,-8403,-8404], +[0,-110,-114,-55,-3,-15], +[0,-827,-410,-2709,-5491,-5492,-5493,-5494,-1838,-3714,-5495,-680,-769,-3715], [1,3,3414], [0,0,3415,3416,4], -[0,-350,-3266,-509,-652,-1654,-2127], -[0,-8405,-8406,-8407,-8408,-8398,-8399,-6821,-8401,-6820,-5389,-1801,-8400,-8403,-8409,-8404], +[0,-77,-206,-843,-43,-3,-14], +[0,-10150,-10151,-10152,-5496,-5492,-5493,-1838,-3714,-2709,-827,-680,-5494,-769,-10153,-3715], [1,3,3418], [0,0,3419,3420,5], -[0,-468,-1083,-8047,-1283,-1402,-2322], -[0,-997,-8410,-8411,-8412], +[0,-718,-1642,-1861,-1234,-1084,-39], +[0,-410,-5497,-5498,-5499], [1,3,3422], [0,3423,3424,3425,4], -[0,-8413,-769,-1040,-1100,-8414,-1395,-1399,-1773,-1951,-2202,-8415,-8416], -[0,-3037,-519,-652,-8417,-8418,-8419,-8420,-1849,-7087,-6909,-2384,-2410,-2518,-2541], -[0,-8421,-6599,-1958,-8422,-7096,-8423,-8424,-7091,-6656,-5550,-8425,-7304,-8426,-1764,-1847,-8427,-5369], +[0,-5500,-225,-510,-487,-10154,-1082,-966,-1981,-871,-879,-10155,-3716], +[0,-5,-51,-43,-10156,-2791,-5501,-10157,-492,-3576,-2178,-82,-2,-222,-34], +[0,-1190,-1336,-286,-5502,-3577,-2792,-10158,-1843,-128,-267,-1569,-837,-5503,-159,-249,-1191,-2131], [1,3,3427], [0,0,3428,3429,6], -[0,-1144,-1146,-1149,-1127,-2518], -[0,-1000,-1958,-8428,-3973,-8429,-8430,-8431,-8432], +[0,-175,-358,-304,-54,-222], +[0,-849,-286,-5504,-1295,-10159,-10160,-10161,-10162], [1,3,3431], [0,3432,3433,7,4], -[0,-8433,-8434,-5124,-4025,-5129,-1427], -[0,-7037,-4034,-668,-1361], +[0,-5505,-5506,-3358,-4689,-1523,-858], +[0,-5232,-2066,-20,-514], [1,3,3435], [0,0,3436,3437,4], -[0,-2832,-3037,-8200,-3665,-932,-8435,-1763,-8436,-2269,-2378,-2410,-2469], -[0,-2410,-8437,-507,-3694,-2414,-4004,-3634], +[0,-314,-5,-1188,-1005,-1,-10163,-415,-1570,-139,-814,-2,-30], +[0,-2,-5507,-280,-650,-1470,-76,-61], [1,3,3439], [0,3440,3441,203,4], -[0,-1983,-828,-990,-1801,-2178,-2453,-812,-1072,-743,-3122,-459,-2401,-1840,-2255,-907,-1641,-5148,-617,-929,-1335,-1800, --737,-1045,-1997,-2187,-746,-8438,-736], -[0,-888,-1296,-1788,-465,-1654,-2457,-932,-1610,-1676,-2293,-733,-744,-745,-1010,-1635,-8439], +[0,-465,-1062,-848,-680,-808,-989,-35,-669,-336,-442,-1044,-988,-735,-1263,-1218,-344,-3360,-163,-484,-633,-977,-846,-953, +-1114,-393,-1213,-3717,-942], +[0,-337,-1959,-15,-772,-3,-3127,-1,-227,-678,-123,-1935,-581,-2330,-850,-1977,-5508], [1,3,3443], [0,3444,3445,203,4], -[0,-459,-8440,-617,-736,-737,-743,-746,-812,-828,-907,-929,-990,-1045,-1072,-1335,-8438,-1636,-1800,-1840,-1851,-5148, --1983,-1997,-2155,-2178,-2187,-8441,-2255,-2401,-2445,-2453], -[0,-465,-733,-744,-745,-888,-932,-1010,-1296,-1610,-1635,-1654,-1676,-1788,-8439,-2293,-2457], +[0,-1044,-10164,-163,-942,-846,-336,-1213,-35,-1062,-1218,-484,-848,-953,-669,-633,-3717,-1104,-977,-735,-553,-3360,-465, +-1114,-497,-808,-393,-5509,-1263,-988,-2005,-989], +[0,-772,-1935,-581,-2330,-337,-1,-850,-1959,-227,-1977,-3,-678,-15,-5508,-123,-3127], [1,3,3447], [0,3448,3449,3450,6], -[0,-23,-25,-46,-8245,-1851], -[0,-3136,-932,-1415], -[0,-4847,-1004,-1446,-4100,-3696,-8442,-856,-2305,-5886,-3262,-3960,-8443,-8444,-8445], +[0,-11,-405,-539,-1863,-553], +[0,-29,-1,-8], +[0,-571,-40,-165,-700,-3227,-3718,-42,-3115,-2142,-116,-569,-5510,-5511,-5512], [1,3,3452], [0,3453,3454,3455,4], -[0,-888,-1650,-719,-1645,-6123], -[0,-1654,-932,-2125,-2418,-2293,-2369,-966,-958,-968,-943,-974,-2450], -[0,-1004,-3161,-6125,-3578,-3691,-5728,-3122,-3994,-3690], +[0,-337,-72,-58,-92,-5080], +[0,-3,-1,-7,-1471,-123,-691,-75,-9,-67,-83,-129,-1272], +[0,-40,-53,-3483,-113,-422,-1161,-442,-306,-100], [1,3,3457], [0,3458,3459,3460,5], -[0,-1107,-1119,-1276], -[0,-190,-3470,-7040,-3471,-3472,-7041,-7042,-3136,-3037,-932,-1110,-1417,-2174,-2375,-2410,-2411], -[0,-1004,-8446,-1276,-6107,-3999,-8447,-3261], +[0,-28,-324,-247], +[0,-50,-297,-925,-298,-749,-618,-1177,-29,-5,-1,-56,-489,-122,-57,-2,-84], +[0,-40,-10165,-247,-1168,-699,-10166,-746], [1,3,3462], [0,3463,3464,3465,5], -[0,-1465,-8448,-3850], -[0,-1654,-932,-1004,-2379,-1942,-2410,-3621,-3617,-739,-428,-427], -[0,-6120,-8449,-3173,-8450,-6121,-1334,-3175,-8451,-1791,-1004], +[0,-797,-10167,-1753], +[0,-3,-1,-40,-33,-4,-2,-71,-264,-541,-19,-22], +[0,-832,-2213,-695,-5513,-2668,-103,-1490,-3719,-865,-40], [1,3,3467], [0,3468,3469,7,5], -[0,-743,-746,-812,-828,-6825,-1840,-2155,-2418], -[0,-465,-744,-932,-963,-1004,-1654,-1788,-2293], +[0,-336,-1213,-35,-1062,-2710,-735,-497,-1471], +[0,-772,-581,-1,-211,-40,-3,-15,-123], [1,3,3471], [0,3472,3473,3474,5], -[0,-469,-668,-719,-724,-754,-865,-1004,-1435,-2127,-2132,-2410,-2564], -[0,-190,-3732,-4198,-3617,-3037,-427,-428,-932,-966,-1110,-1753,-1942,-2125,-2379,-2383,-2411], -[0,-3690,-3445,-6491,-3113,-6129,-1004,-8452,-3161,-8453,-5545,-3844,-3926], +[0,-183,-20,-58,-367,-368,-210,-40,-730,-14,-417,-2,-263], +[0,-50,-751,-1512,-264,-5,-22,-19,-1,-75,-56,-285,-4,-7,-33,-815,-84], +[0,-100,-46,-2167,-694,-2152,-40,-10168,-53,-5514,-384,-216,-423], [1,3,3476], [0,0,3477,3478,5], -[0,-652,-8454,-2210,-932,-1004,-2379,-8455,-2410,-3037,-4372,-3617,-428,-427], -[0,-8456,-8457,-4055,-2410,-3690,-1334,-1004,-8458,-8459,-2410,-5401,-8038,-8460,-8461,-8462,-8463,-8464,-4140,-4601, --3445,-8465,-8466,-2006,-8467,-8468,-8469], +[0,-43,-10169,-27,-1,-40,-33,-10170,-2,-5,-279,-264,-19,-22], +[0,-10171,-10172,-108,-2,-100,-103,-40,-10173,-10174,-2,-356,-576,-10175,-5515,-10176,-10177,-10178,-4705,-476,-46,-10179, +-5516,-6,-10180,-10181,-10182], [1,3,3480], [0,3481,3482,3483,4], -[0,-1548,-2451], -[0,-2685,-8470,-8471,-3136,-3044,-427,-428,-932,-940,-958,-967,-1415,-1942,-2375,-2410], -[0,-1004,-2451,-3926,-5874,-7723,-8472,-2544], +[0,-23,-439], +[0,-2461,-10183,-3720,-29,-143,-22,-19,-1,-12,-9,-25,-8,-4,-57,-2], +[0,-40,-439,-423,-534,-1028,-1869,-1275], [1,3,3485], [0,3486,3487,3488,5], -[0,-483,-1736,-8473,-1993,-8474], -[0,-3732,-4198,-8475,-3617,-4199,-8476,-8477,-4625,-8478,-724,-754,-828,-1004,-4206,-1335,-1730,-8479,-2410,-2426,-2564, --8480], -[0,-3967,-3690,-1334,-5401,-856,-4055,-1004,-2410,-4058,-3844,-8481,-4847,-8482,-3438,-8483,-8484,-8485,-8486,-2564,-3926], +[0,-1375,-3070,-10184,-643,-10185], +[0,-751,-1512,-10186,-264,-4716,-10187,-2793,-4774,-10188,-367,-368,-1062,-40,-2562,-633,-1107,-10189,-2,-289,-263,-10190], +[0,-353,-100,-103,-356,-42,-108,-40,-2,-331,-216,-3721,-571,-10191,-697,-10192,-3722,-10193,-10194,-263,-423], [1,3,3490], [0,0,3491,3492,8], -[0,-5834,-8487,-932,-1445,-2322], -[0,-1015,-702,-1631], +[0,-244,-5517,-1,-587,-39], +[0,-432,-507,-491], [1,3,3494], [0,3495,3496,3497,8], -[0,-8488,-8489], -[0,-8490,-8491,-8492,-1202,-1396,-8493,-1646,-1654,-1792], -[0,-7370,-702,-1015,-1631,-7369,-7208,-1792,-1797,-7375,-3589,-7153,-8494,-8495,-2444,-3590,-5260,-5846], +[0,-10195,-10196], +[0,-10197,-5518,-10198,-671,-1083,-2214,-88,-3,-241], +[0,-1850,-507,-432,-491,-2189,-426,-241,-591,-2191,-1144,-1179,-10199,-5519,-136,-208,-704,-917], [1,3,3499], [0,3500,3501,7,5], -[0,-510,-1543,-2168,-2510], -[0,-526,-533,-551,-556,-558,-767,-778,-825,-932,-6929,-958,-1041,-1415,-1534,-1780,-1939,-2000,-2251,-2275,-2501,-8496], +[0,-59,-732,-646,-1476], +[0,-179,-86,-775,-580,-253,-26,-141,-232,-1,-617,-9,-271,-8,-17,-2394,-234,-685,-134,-154,-18,-10200], [1,3,3503], [0,3504,3505,3506,10], -[0,-812,-1100,-2555,-8497], -[0,-427,-428,-519,-932,-943,-950,-958,-966,-968,-974,-1077,-1344,-1534,-1788,-2384,-2410], -[0,-2432,-5408,-7347], +[0,-35,-487,-992,-3723], +[0,-22,-19,-51,-1,-83,-1947,-9,-75,-67,-129,-41,-10,-17,-15,-82,-2], +[0,-1705,-915,-1026], [1,3,3508], [0,0,3509,7,9], -[0,-1788,-1168,-1446,-1654,-2210,-932,-1548,-1813,-2347,-756,-633,-2915,-1243,-1262,-1534,-2778,-2461,-1204,-8498,-8499, --2463], +[0,-15,-32,-165,-3,-27,-1,-23,-551,-69,-55,-60,-3153,-310,-632,-17,-1721,-1708,-4191,-5520,-10201,-887], [1,3,3511], [0,3512,3513,3514,4], -[0,-8500], -[0,-932,-937,-966,-1001,-1654,-1788,-8501,-2210], -[0,-8502,-1573,-3444,-5545,-3240,-8503], +[0,-5521], +[0,-1,-782,-75,-338,-3,-15,-3724,-27], +[0,-10202,-258,-748,-384,-648,-5522], [1,3,3516], [0,3517,3518,3519,4], -[0,-8504], -[0,-262,-3037,-767,-1107,-8342,-2104,-2402,-2410,-2469,-8505,-8506,-1023], -[0,-8507,-8508,-5858,-3634,-8509,-8510,-8511,-1021,-8512,-8513,-1415], +[0,-5523], +[0,-451,-5,-26,-28,-5480,-1693,-124,-2,-30,-10203,-10204,-1224], +[0,-10205,-10206,-3446,-61,-10207,-10208,-5524,-1949,-10209,-10210,-8], [1,3,3521], [0,3522,0,3523,8], -[0,-8514,-8515], -[0,-788,-3215,-5922,-8516,-8517,-8518], +[0,-10211,-10212], +[0,-779,-74,-535,-10213,-10214,-10215], [1,3,3525], [0,0,3526,3527,4], -[0,-756,-864,-932,-1654,-1788,-1939,-2006,-2052,-2210,-2410], -[0,-5922,-6439,-821], +[0,-55,-1395,-1,-3,-15,-234,-6,-287,-27,-2], +[0,-535,-1828,-780], [1,3,3529], [0,3530,3531,204,4], -[0,-8519,-8520,-1108,-5615,-1639], -[0,-8521,-6927,-8522,-4036,-3621,-3037,-8523,-4372,-8524,-932,-8525,-999,-1026,-4787,-1107,-8526,-1654,-2125,-2210,-8527, --2410], +[0,-10216,-5525,-1413,-3420,-361], +[0,-10217,-5199,-10218,-651,-71,-5,-662,-279,-10219,-1,-10220,-118,-226,-1312,-28,-5526,-3,-7,-27,-5527,-2], [1,3,3533], [0,0,3534,7,5], -[0,-3621,-3037,-1654,-2165,-2410], +[0,-71,-5,-3,-1119,-2], [1,3,3536], [0,3537,3538,3539,11], -[0,-8529], -[0,-23,-38,-40,-43,-3037,-534,-652,-932,-1297,-1412,-1942,-1973,-2410,-2501,-2503], -[0,-5922,-6597,-4055,-3215,-2536,-6841,-2537,-3756,-2451,-5874,-8530,-507,-8531,-8532,-3264], +[0,-10222], +[0,-11,-170,-21,-174,-5,-96,-43,-1,-1077,-196,-4,-2408,-2,-18,-93], +[0,-535,-537,-108,-74,-565,-5188,-3133,-278,-439,-534,-2794,-280,-5528,-5529,-31], [1,3,3541], [0,0,0,3542,10], -[0,-1029,-3162,-2363,-2319,-8533,-826], +[0,-4166,-95,-418,-85,-5530,-627], [1,3,3544], [0,3545,3546,3547,4], -[0,-8534,-8535,-8536,-8537,-8538,-8539,-8540,-8541,-8542,-1867,-8543,-2124,-8544,-2177,-8545], -[0,-8546,-3902,-357,-3748,-5029,-3037,-469,-3907,-470,-8547,-8548,-8549,-2917,-8550,-726,-767,-932,-8551,-4848,-8552, --8553,-1335,-1435,-5265,-1464,-8554,-2884,-1730,-1972,-2240,-2384,-2410,-2426,-2453,-3612], -[0,-3578,-3161,-4055,-4058,-1805,-3690], +[0,-10223,-5531,-10224,-10225,-10226,-10227,-10228,-5532,-10229,-1250,-5533,-1695,-5534,-16,-10230], +[0,-10231,-4666,-623,-315,-2601,-5,-183,-3250,-773,-3725,-10232,-3726,-1726,-10233,-284,-26,-1,-10234,-3318,-10235,-10236, +-633,-730,-3366,-1089,-5535,-819,-1107,-181,-881,-82,-2,-289,-989,-1286], +[0,-113,-53,-108,-331,-152,-100], [1,3,3549], [0,3550,3551,7,5], -[0,-262,-8555,-5335,-8556,-8557,-5336,-5337,-8558,-8559,-536,-541,-8560,-8561,-909,-928,-1026,-5344,-8562,-1645,-8563, --2383,-2410,-8564], -[0,-86,-3307,-367,-3136,-8565,-8566,-3037,-6025,-5367,-1344,-1415,-3640,-1534,-1942,-1944,-1945,-2125,-2379,-2392,-5369], +[0,-451,-10237,-2621,-10238,-10239,-2622,-2623,-10240,-2215,-1603,-1047,-3727,-2216,-781,-87,-226,-2626,-2795,-92,-5536, +-815,-2,-5537], +[0,-49,-63,-245,-29,-10241,-927,-5,-5049,-2630,-10,-8,-4602,-17,-4,-1113,-870,-7,-33,-155,-2131], [1,3,3553], [0,3554,3555,3556,10], -[0,-8567,-8568,-8569,-8570,-8571,-6369,-883,-1646,-8255,-2062,-8032,-2243,-8572,-8057,-8573,-2322,-2347], -[0,-5834,-515,-516,-932,-1365,-1777,-2156], -[0,-2319,-8574,-4004,-8575,-8576,-3240], +[0,-10242,-10243,-3728,-10244,-10245,-2681,-1397,-88,-3694,-198,-3679,-2433,-10246,-3681,-1870,-39,-69], +[0,-244,-720,-269,-1,-212,-273,-189], +[0,-85,-2217,-76,-10247,-2218,-648], [1,3,3558], [0,3559,3560,7,5], -[0,-768,-8577,-1580,-1792,-1961,-8578,-2594], -[0,-23,-824,-1059,-1168,-1174,-1201,-1243,-1361,-1417,-1632], +[0,-1937,-10248,-1434,-241,-171,-2219,-1134], +[0,-11,-150,-412,-32,-585,-2347,-310,-514,-489,-1103], [1,3,3562], [0,28,3563,3564,9], -[0,-21,-23,-40,-41,-3470,-3471,-8579,-5859,-8580,-553,-796,-932,-933,-1534,-1650,-2174], -[0,-8581,-8582,-8583,-8584,-3098,-8585,-3100,-3482,-2006,-8586,-8587,-5066,-3578,-8588,-8589,-8590,-8591,-8592,-8593, --8594,-8595,-8596,-8597,-8598,-8599,-8600,-8601,-8602,-8603,-8604,-8605], +[0,-48,-11,-21,-132,-297,-298,-10249,-1814,-5538,-776,-295,-1,-255,-17,-72,-122], +[0,-10250,-10251,-10252,-10253,-127,-5539,-52,-382,-6,-10254,-10255,-4864,-113,-10256,-10257,-5540,-10258,-10259,-10260, +-10261,-10262,-10263,-3729,-10264,-10265,-10266,-10267,-10268,-10269,-10270,-10271], [1,3,3566], [0,39,3567,3568,4], -[0,-21,-23,-38,-40,-41,-42,-3326,-350,-351,-3267,-407,-409,-2622,-3136,-3040,-3052,-427,-428,-708,-726,-767,-932,-934, --940,-7476,-958,-959,-969,-970,-1415,-2006,-2019,-2082,-2127,-2140,-2375,-2387,-2410], -[0,-8606,-3100,-8607,-2074], +[0,-48,-11,-170,-21,-132,-137,-207,-77,-62,-330,-153,-120,-1478,-29,-47,-89,-22,-19,-149,-284,-26,-1,-185,-12,-5313,-9, +-145,-64,-186,-8,-6,-36,-346,-14,-229,-57,-44,-2], +[0,-10272,-52,-10273,-327], [1,3,3570], [0,3571,0,3572,8], -[0,-8608,-8609,-8610,-5140], -[0,-4213,-1334,-4215,-3634,-4216,-8611], +[0,-5541,-2220,-5542,-3359], +[0,-905,-103,-317,-61,-1763,-1571], [1,3,3574], [0,3575,0,3576,10], -[0,-8612], -[0,-8613,-1038,-6768,-8614,-510,-5921,-8615,-6309,-1961], +[0,-2221], +[0,-10274,-3013,-5172,-10275,-59,-918,-2222,-2675,-171], [1,3,3578], [0,75,3579,3580,4], -[0,-3037,-3665,-510,-1344,-1534,-2410,-2466,-6859,-2469], -[0,-1039,-4111,-8616,-8617,-5514], +[0,-5,-1005,-59,-10,-17,-2,-104,-923,-30], +[0,-1637,-902,-5543,-5544,-243], [1,3,3582], [0,3583,14,3584,9], -[0,-6861], -[0,-4112,-687,-7095,-3958,-8132,-8618,-8619,-8620,-1040,-8621], +[0,-2716], +[0,-474,-37,-1343,-299,-2772,-3730,-2796,-5545,-510,-5546], [1,3,3586], [0,205,3587,48,4], -[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-1344,-1415,-1534,-1623,-1771,-1942,-2251,-2437, --2501], +[0,-48,-11,-21,-49,-63,-2211,-1025,-86,-26,-150,-232,-1,-12,-9,-10,-8,-17,-259,-65,-4,-134,-438,-18], [1,3,3589], [0,0,3590,3591,8], -[0,-21,-23,-4691,-3356], -[0,-8622,-8623,-8624], +[0,-48,-11,-2578,-4545], +[0,-10276,-10277,-3731], [1,3,3593], [0,3594,3595,3596,4], -[0,-8625,-8626,-8627,-8628], -[0,-8629,-3037,-519,-8630,-1100,-8631,-2384,-2541], -[0,-1640,-6656,-8038,-8632,-5409,-6527,-5094,-8633,-8634,-6855,-8635,-8636,-6659,-7440,-1391,-8637,-8638,-8639,-7863, --7304,-640,-6438,-8640,-7715,-8641,-8642,-5315,-8643,-8644,-8645,-8646,-8647,-8648,-8649,-8650,-8651,-1992,-8652,-8653, --8654,-8655,-8656,-8657,-5408,-2323,-8658,-8659,-7345,-8660,-7860,-8661,-8662,-8663,-8664,-8665,-8666,-8667,-8668,-8669, --8670,-8671,-8672,-8673, --8674,-8675,-6528,-8676,-8677,-5953,-8678,-8679,-8680,-8681,-8682,-8683,-8684,-8685,-8686,-8687,-8688,-3742,-8689,-8690, --8691,-8692,-8693,-8694,-8695,-8696,-8697,-8698,-8699,-8700,-8701,-8702,-8703,-8704,-2534,-8705,-8706,-8707,-8708,-8709, --8710,-8711,-8712,-8713,-8714,-6597,-8715,-8716,-4771,-8717,-8718,-8719,-6042,-8720,-8721,-8722,-8723,-8724,-8725,-8726, --8727,-8728,-8729,-8730, --8731,-8732,-8733,-8734,-8735,-8736,-8737,-8738,-8739,-8740,-8741,-8742,-8743,-8744,-8745,-8746,-8747,-8748,-8749,-8750, --8751,-8752,-8753,-5316,-8754,-8755,-8756,-8757,-7557,-8758,-8759,-8760,-8761,-8762,-8763,-8764,-8765,-8766,-7711,-8767, --8768,-8769,-8770,-8771,-8772,-8773,-8774,-8775,-8776,-8777,-8778,-8779,-8780,-8781,-8782,-8783,-8784,-8785,-8786,-8787, --8788,-8789,-8790,-8791, --8792,-8793,-6695,-8794,-8795,-8796,-7349,-8797,-8798], +[0,-10278,-10279,-10280,-3732], +[0,-10281,-5,-51,-1192,-487,-10282,-82,-34], +[0,-260,-128,-576,-10283,-1529,-292,-1789,-5547,-3733,-5191,-3734,-5548,-710,-293,-634,-10284,-10285,-10286,-2206,-837, +-294,-5121,-1572,-621,-10287,-1349,-2617,-10288,-10289,-10290,-10291,-10292,-10293,-10294,-10295,-10296,-684,-10297, +-3735,-5549,-10298,-5550,-10299,-915,-312,-10300,-10301,-5286,-10302,-5376,-10303,-10304,-10305,-10306,-10307,-10308, +-10309,-10310,-10311,-10312,-10313,-10314,-10315, +-10316,-10317,-1171,-3736,-10318,-5035,-10319,-10320,-10321,-10322,-10323,-10324,-10325,-5551,-10326,-10327,-10328,-1290, +-10329,-10330,-10331,-10332,-10333,-10334,-10335,-5552,-10336,-10337,-10338,-10339,-10340,-10341,-5553,-10342,-1715, +-10343,-10344,-5554,-10345,-10346,-10347,-10348,-10349,-5555,-10350,-537,-5556,-10351,-4798,-10352,-10353,-10354,-5056, +-10355,-10356,-10357,-10358,-10359,-10360,-10361,-10362,-10363,-10364,-10365, +-10366,-10367,-10368,-10369,-10370,-10371,-10372,-10373,-10374,-5557,-10375,-10376,-10377,-10378,-10379,-10380,-10381, +-10382,-10383,-10384,-10385,-10386,-10387,-2618,-10388,-10389,-10390,-10391,-2749,-10392,-10393,-10394,-5558,-10395, +-10396,-10397,-10398,-10399,-2201,-10400,-10401,-10402,-10403,-5559,-10404,-10405,-10406,-10407,-10408,-10409,-10410, +-10411,-10412,-10413,-10414,-10415,-10416,-3737,-10417,-5560,-10418,-10419,-10420,-10421, +-5561,-10422,-1545,-10423,-10424,-10425,-5287,-10426,-10427], [1,3,3598], [0,0,3599,3600,9], -[0,-3266,-516,-652,-932,-1344,-1654,-2127], -[0,-6656,-1044,-8799,-8800,-8801,-651,-834], +[0,-206,-269,-43,-1,-10,-3,-14], +[0,-128,-725,-1350,-1351,-1352,-454,-203], [1,3,3602], [0,3603,81,7,6], -[0,-812,-907,-929,-1800,-1840,-2255], +[0,-35,-1218,-484,-977,-735,-1263], [1,3,3605], [0,3606,3607,3608,5], -[0,-1871,-5907], -[0,-2541,-519,-824,-2384,-2331], -[0,-3324,-7421,-6491,-5573,-7282], +[0,-1984,-5026], +[0,-34,-51,-150,-82,-379], +[0,-443,-427,-2167,-655,-766], [1,3,3610], [0,3611,3612,3613,4], -[0,-8802,-8803], -[0,-519,-7408,-2331,-2384,-2541], -[0,-5573,-8804,-1047,-5504,-8805,-8806,-6656,-7282,-5572,-5897,-2114,-8807,-6370,-7420,-7421,-2487,-8808,-1847], +[0,-3738,-2797], +[0,-51,-1554,-379,-82,-34], +[0,-655,-2798,-339,-1159,-2799,-2223,-128,-766,-532,-478,-126,-1573,-1170,-1027,-427,-741,-2224,-249], [1,3,3615], [0,3616,3617,3618,4], -[0,-8809,-1393,-1639,-8810], -[0,-932,-937,-966,-1001,-8811,-1654,-1759,-1788,-2114], -[0,-6656,-5573,-1047,-5504,-1107,-5572,-5574,-2114,-7282], +[0,-10428,-1081,-361,-10429], +[0,-1,-782,-75,-338,-10430,-3,-1446,-15,-126], +[0,-128,-655,-339,-1159,-28,-532,-1022,-126,-766], [1,3,3620], [0,3621,3622,3623,4], -[0,-8812,-8813,-8814,-8815,-8816,-8817,-8818,-8819,-8820,-8821,-8822,-8823,-8824,-8825,-8826,-8827,-8828,-8829,-8830, --8831,-8832,-8833,-8834,-8835,-8836,-8837,-8838,-8839], -[0,-1168,-2127,-2410,-1244,-1252,-2143,-3266,-2134,-350,-2139,-2142,-351], -[0,-3173,-7685,-8840,-1050,-8841,-6005,-6187,-8842], +[0,-10431,-10432,-10433,-10434,-10435,-10436,-10437,-10438,-10439,-10440,-10441,-10442,-5562,-5563,-10443,-10444,-10445, +-10446,-10447,-5564,-10448,-10449,-10450,-10451,-10452,-10453,-10454,-10455], +[0,-32,-14,-2,-962,-311,-807,-206,-876,-77,-1259,-305,-62], +[0,-695,-403,-5565,-1410,-839,-1166,-574,-10456], [1,3,3625], [0,3626,3627,3628,10], -[0,-8843,-8831,-8844,-3037,-8845,-1025,-8846,-1465,-8847,-1730,-2446], -[0,-8848,-8824,-8825,-8849,-262,-8850,-3035,-4269,-8851,-3850,-3044,-5686,-3621,-4624,-8852,-8853,-4372,-3625,-3738,-427, --428,-581,-664,-665,-3629,-668,-677,-824,-932,-8854,-1168,-1199,-1208,-1261,-8855,-1548,-1646,-1654,-1693,-1722,-1771, --1788,-2105,-2106,-2150,-2210,-2211,-2379,-2410,-2550], -[0,-8856,-7685,-8840,-8841,-3173], +[0,-3739,-5564,-10457,-5,-10458,-952,-2800,-797,-10459,-1107,-125], +[0,-10460,-5562,-5563,-10461,-451,-5566,-109,-754,-10462,-1753,-143,-761,-71,-3304,-2801,-10463,-279,-1287,-698,-22,-19, +-1382,-13,-239,-2519,-20,-2988,-150,-1,-10464,-32,-1073,-790,-1419,-10465,-23,-88,-3,-1443,-197,-65,-15,-111,-1694,-986, +-27,-190,-33,-2,-98], +[0,-3740,-403,-5565,-839,-695], [1,3,3630], [0,3631,0,3632,10], -[0,-8857,-8858,-8859,-8860,-8861,-8862,-4106,-8863,-458,-469,-470,-501,-8864,-617,-679,-8865,-695,-713,-719,-728,-754, --767,-769,-790,-8866,-8867,-8868,-1004,-1044,-1069,-1077,-1087,-8869,-1107,-8846,-1353,-1442,-1465,-1526,-8870,-1548, --8871,-1610,-6294,-1640,-1645,-1676,-1729,-1805,-1816,-3447,-1857,-8872,-8873,-1888,-1959,-8874,-2122,-2177,-8875,-8876, --8877,-8878, --4356,-2359,-8879,-8880,-8881,-2446,-2520,-2522,-2531,-2548,-2564,-8882], -[0,-8883,-687,-8884,-5801,-8885,-1050,-8841,-6224,-8886], +[0,-10466,-10467,-2802,-5567,-10468,-10469,-1300,-1574,-1203,-183,-773,-842,-3741,-163,-117,-10470,-624,-1055,-58,-1057, +-368,-26,-225,-1940,-10471,-10472,-10473,-40,-725,-628,-41,-1644,-5568,-28,-2800,-460,-101,-797,-1093,-10474,-23,-10475, +-227,-2161,-260,-92,-678,-188,-152,-325,-1743,-595,-10476,-10477,-641,-362,-2803,-1995,-16,-10478,-10479,-5569,-10480, +-2567,-161,-2804,-5570,-10481,-125,-564,-1713,-205,-262,-263,-3742], +[0,-5571,-37,-10482,-1162,-10483,-1410,-839,-2158,-10484], [1,3,3634], [0,3635,86,3636,9], -[0,-8887,-668,-831,-8888,-8889,-2001], -[0,-7416,-5897], +[0,-10485,-20,-1216,-2805,-10486,-1459], +[0,-2192,-478], [1,3,3638], [0,3639,3640,7,5], -[0,-3048,-8566,-8890,-1077,-8891,-2488], -[0,-3037,-2125,-2319,-2410], +[0,-191,-927,-1353,-41,-5572,-1133], +[0,-5,-7,-85,-2], [1,3,3642], [0,0,86,3643,5], -[0,-1055,-4055,-5841,-8892,-2239,-7208,-8893], +[0,-1411,-108,-2137,-10487,-812,-426,-2806], [1,3,3645], [0,3646,206,3647,5], -[0,-812,-926,-1077,-1548,-2359], -[0,-7871], +[0,-35,-3009,-41,-23,-161], +[0,-5378], [1,3,3649], [0,0,3650,3651,4], -[0,-23,-36,-6064,-40,-8894,-3048,-3036,-3136,-4964,-3037,-8336,-551,-679,-756,-1077,-1107,-1415,-1942,-2125,-2127,-2128, --8895,-8896,-2141,-2334,-2375,-2379,-2387,-2410], -[0,-3214,-4224,-4120,-4121,-4123,-4122,-8897], +[0,-11,-300,-3476,-21,-5573,-191,-471,-29,-1781,-5,-2787,-775,-117,-55,-41,-28,-8,-4,-7,-14,-275,-2807,-2225,-1260,-177, +-57,-33,-44,-2], +[0,-45,-4722,-3267,-1013,-612,-2556,-2808], [1,3,3653], [0,3654,3655,3656,9], -[0,-8898,-668,-1038,-1381,-1531,-1758,-6467,-1965,-2177,-2246,-8899,-6007], -[0,-664,-756,-932,-1405,-8900,-1654,-1939,-1972,-2210], -[0,-8901,-8902,-8903,-8904,-8421,-5550,-6836,-8905,-8906,-5921,-8907,-8908,-8427,-5801,-8909], +[0,-3743,-20,-3013,-1964,-4231,-463,-1541,-495,-16,-2434,-5574,-3466], +[0,-13,-55,-1,-66,-10488,-3,-234,-181,-27], +[0,-1871,-1872,-10489,-2809,-1190,-267,-1175,-2810,-2811,-918,-5575,-2812,-1191,-1162,-5576], [1,3,3658], [0,0,0,3659,4], -[0,-5732,-687,-8425,-7304,-5411,-4038,-8038,-8910,-7440,-7144,-3214,-3756,-8911], +[0,-762,-37,-1569,-837,-1809,-2067,-576,-3744,-293,-619,-45,-278,-2226], [1,3,3661], [0,3662,3663,3664,11], -[0,-2997,-8912,-8913,-1889,-2318], -[0,-23,-40,-3559,-8914,-8915,-427,-428,-518,-534,-749,-753,-767,-778,-779,-784,-932,-940,-967,-8916,-1041,-8917,-1643, --1771,-1942,-8918,-4245,-2200,-2233,-2275,-2335,-2376,-2410,-2501,-2503,-2505,-8919,-2552], -[0,-1060,-2410,-3214,-2501,-3264,-775,-5511,-8920,-2316,-7287,-8921,-8922,-8923,-8924,-7287,-8925,-7288,-7289,-8926,-7294, --8927,-8928,-7297,-7293,-7292,-7296,-8929,-932,-1942,-8930,-985,-8931], +[0,-820,-10490,-2813,-38,-559], +[0,-11,-21,-2512,-10491,-5577,-22,-19,-157,-96,-625,-158,-26,-141,-1214,-369,-1,-12,-25,-10492,-271,-10493,-374,-65,-4, +-3745,-907,-394,-880,-154,-397,-214,-2,-18,-93,-173,-10494,-692], +[0,-4169,-2,-45,-18,-31,-24,-2636,-10495,-1265,-3594,-10496,-10497,-10498,-10499,-3594,-10500,-5276,-5277,-10501,-5280, +-10502,-10503,-5282,-5279,-5278,-5281,-10504,-1,-4,-5578,-370,-10505], [1,3,3666], [0,3667,3668,3669,4], -[0,-510,-2518], -[0,-1788,-1446,-1654,-2198], -[0,-8932], +[0,-59,-222], +[0,-15,-165,-3,-81], +[0,-10506], [1,3,3671], [0,3672,3673,3674,4], -[0,-8933,-1033], -[0,-23,-534,-7747,-824,-1168,-1174,-1201,-1208,-1243,-1266,-1361,-1415,-1419,-1792,-2006,-8934,-2019,-2463,-2501,-7752], -[0,-1062,-2006,-4038,-8935], +[0,-10507,-1636], +[0,-11,-96,-5361,-150,-32,-585,-2347,-790,-310,-360,-514,-8,-176,-241,-6,-5579,-36,-887,-18,-2756], +[0,-1228,-6,-2067,-10508], [1,3,3676], [0,0,3677,3678,4], -[0,-725,-932,-1004,-8936,-1654,-1788], -[0,-1334,-1342,-2435,-8937,-3323,-8938,-3590], +[0,-309,-1,-40,-3746,-3,-15], +[0,-103,-388,-200,-5580,-351,-5581,-208], [1,3,3680], [0,0,0,3681,9], -[0,-3827,-3837,-3838,-3167,-3827,-620], +[0,-1149,-4650,-3244,-745,-1149,-453], [1,3,3683], [0,3684,3685,7,11], -[0,-8050], -[0,-2832,-5834,-8084,-8939,-8096,-516,-932,-1777,-1788,-2322], +[0,-5415], +[0,-314,-244,-1563,-5582,-714,-269,-1,-273,-15,-39], [1,3,3687], [0,3688,3689,3690,11], -[0,-510,-8940,-702,-8941,-714,-1650,-2520,-8942,-8943,-1953,-728,-995,-1792,-8944], -[0,-664,-2471,-1654,-932,-1666,-8945,-2105,-1942,-8946,-940,-967], -[0,-687,-8947,-8948,-3674], +[0,-59,-10509,-507,-10510,-133,-72,-564,-10511,-10512,-2407,-1057,-1634,-241,-5583], +[0,-13,-1474,-3,-1,-233,-5584,-111,-4,-5585,-12,-25], +[0,-37,-3747,-3748,-1288], [1,3,3692], [0,3693,3694,3695,8], -[0,-22,-668,-679,-755,-823,-1077,-1623,-1645,-8949,-2168,-2177,-2321], -[0,-3307,-7040,-3842,-3472,-7041,-7042,-8355,-7080,-3048,-3136,-4049,-8566,-3637,-3037,-8890,-3199,-427,-428,-721,-767, --932,-958,-966,-967,-4650,-1344,-1415,-8950,-1421,-1456,-8951,-1534,-1658,-1942,-2125,-2174,-2269,-2375,-2410,-2501], -[0,-2501,-3862,-2410,-8952,-2376,-2501,-8423,-5922], +[0,-505,-20,-117,-386,-323,-41,-259,-92,-10513,-646,-16,-1266], +[0,-63,-925,-2055,-749,-618,-1177,-1867,-1024,-191,-29,-652,-927,-3221,-5,-1353,-140,-22,-19,-1056,-26,-1,-9,-75,-25, +-3307,-10,-8,-5586,-794,-635,-10514,-17,-548,-4,-7,-122,-139,-57,-2,-18], +[0,-18,-107,-2,-10515,-214,-18,-2792,-535], [1,3,3697], [0,3698,3699,3700,5], -[0,-6008,-668,-679,-1548,-1639,-1645,-2114,-2321], -[0,-8953,-7202,-3044,-4036,-8566,-3037,-3200,-3046,-664,-778,-932,-1344,-1405,-1534,-1654,-1658,-1660,-1942,-2125,-2210, --2376,-2388,-2389,-2410,-2476,-2477,-2481,-2485,-2501], -[0,-2501,-3862,-2410,-8038,-7144,-8170,-8423,-5922,-6188,-2376,-520,-8954,-7172], +[0,-3467,-20,-117,-23,-361,-92,-126,-1266], +[0,-10516,-5256,-143,-651,-927,-5,-1137,-526,-13,-141,-1,-10,-66,-17,-3,-548,-1438,-4,-7,-27,-214,-199,-1268,-2,-73,-3128, +-1132,-1475,-18], +[0,-18,-107,-2,-576,-619,-577,-2792,-535,-2156,-214,-2974,-10517,-2731], [1,3,3702], [0,3703,3704,7,6], -[0,-8955,-8956,-8957,-1285,-1641], -[0,-5834,-516,-633,-8958,-756,-769,-932,-8959,-8960,-1070,-1365,-8961,-1405,-8962,-8963,-6058,-1939,-1978,-2105,-2125, --2177,-2322], +[0,-10518,-5587,-10519,-672,-344], +[0,-244,-269,-60,-3749,-55,-225,-1,-1873,-10520,-955,-212,-10521,-66,-10522,-10523,-5062,-234,-160,-111,-7,-16,-39], [1,3,3706], [0,3707,3708,3709,4], -[0,-1801,-8964,-8965], -[0,-1501,-1788,-1415,-932,-2127,-1004,-1942,-2293,-8966,-958,-3234,-940,-967,-350,-8967,-934,-351,-8968], -[0,-6463,-4053,-6582,-1985,-8969,-4055,-8970,-6656], +[0,-680,-10524,-5588], +[0,-433,-15,-8,-1,-14,-40,-4,-123,-5589,-9,-1737,-12,-25,-77,-10525,-185,-62,-10526], +[0,-2166,-570,-479,-982,-10527,-108,-10528,-128], [1,3,3711], [0,3712,3713,3714,9], -[0,-5220,-823,-1311,-1548,-1549,-2798,-8971,-2387], -[0,-409,-3044,-3040,-3052,-4972,-8972,-2006,-2019,-8973,-2410,-3612], -[0,-1071,-4053,-4054,-2006,-2019,-3322,-8974,-3926,-8975,-3926,-8976,-8977], +[0,-2615,-323,-963,-23,-461,-2470,-10529,-44], +[0,-120,-143,-47,-89,-1519,-10530,-6,-36,-3750,-2,-1286], +[0,-3016,-570,-899,-6,-36,-696,-10531,-423,-10532,-423,-10533,-5590], [1,3,3716], [0,0,3717,3718,6], -[0,-1654,-932,-1405,-589,-585,-966,-958,-968,-943,-963,-974], -[0,-1072,-1334,-8978,-3324], +[0,-3,-1,-66,-110,-1049,-75,-9,-67,-83,-211,-129], +[0,-669,-103,-3751,-443], [1,3,3720], [0,3721,3722,3723,4], -[0,-668,-3606,-2267], -[0,-527,-528,-534,-545,-560,-932,-949,-1001,-1415,-1626,-2501], -[0,-8979,-8980,-2501,-3862], +[0,-20,-2044,-395], +[0,-162,-91,-96,-1921,-666,-1,-1632,-338,-8,-1102,-18], +[0,-10534,-2227,-18,-107], [1,3,3725], [0,3726,3727,3728,4], -[0,-1442], -[0,-627,-8981,-756,-1405,-2250,-2322,-2568], -[0,-2548,-8982,-8983], +[0,-101], +[0,-1383,-10535,-55,-66,-97,-39,-993], +[0,-262,-10536,-10537], [1,3,3730], [0,3731,3732,3733,8], -[0,-1119,-1462,-8984], -[0,-8985,-5726,-1646,-1654,-1788,-1972,-8986,-2250], -[0,-1076,-6656,-8801,-6351,-7421,-8987,-1650,-8988,-8989,-7371,-4055,-2059,-6234,-8987,-6693,-6694,-2363,-8990,-5554, --8991,-6932,-1961], +[0,-324,-2363,-3752], +[0,-3753,-3430,-88,-3,-15,-181,-5591,-97], +[0,-303,-128,-1352,-709,-427,-5592,-72,-2814,-5593,-838,-108,-597,-1823,-5592,-835,-659,-418,-2815,-193,-5594,-2721,-171], [1,3,3735], [0,124,3736,3737,4], -[0,-3035,-3048,-3621,-3037,-664,-1077,-1405,-1654,-1788,-1942,-1948,-8992,-2379,-2410], -[0,-1076,-8801], +[0,-109,-191,-71,-5,-13,-41,-66,-3,-15,-4,-520,-10538,-33,-2], +[0,-303,-1352], [1,3,3739], [0,3740,3741,3742,4], -[0,-8993,-1077,-1693,-8994], -[0,-3048,-3623,-1654,-925,-2148,-615,-2517,-1980], -[0,-1961,-1076,-6656,-8801], +[0,-5595,-41,-1443,-5596], +[0,-191,-4598,-3,-948,-1261,-114,-2009,-521], +[0,-171,-303,-128,-1352], [1,3,3744], [0,0,3745,3746,5], -[0,-1733], -[0,-1080,-8995], +[0,-590], +[0,-1950,-3754], [1,3,3748], [0,3749,3750,7,11], -[0,-1650,-2125,-1370,-1119], -[0,-2319,-2250], +[0,-72,-7,-515,-324], +[0,-85,-97], [1,3,3752], [0,3753,0,3754,8], -[0,-2543,-2062], -[0,-1082,-3323,-6931], +[0,-4355,-198], +[0,-3018,-351,-2720], [1,3,3756], [0,0,3757,3758,5], -[0,-5834,-515,-516,-932,-1788,-2156,-2322], -[0,-5924,-6557,-8108,-6444,-7163,-8996], +[0,-244,-720,-269,-1,-15,-189,-39], +[0,-1331,-921,-1185,-2689,-3581,-3755], [1,3,3760], [0,0,3761,3762,4], -[0,-21,-23,-32,-36,-3367,-40,-42,-86,-3307,-8997,-3326,-351,-3561,-8998,-8999,-9000,-9001,-8219,-2716,-2717,-534,-932, --940,-1344,-9002,-1942,-2104,-2127,-2132,-2251,-2334,-2410,-2469,-2816,-9003], -[0,-1087,-7282,-9004], +[0,-48,-11,-156,-300,-2035,-21,-137,-49,-63,-10539,-207,-62,-237,-10540,-10541,-10542,-10543,-5456,-3141,-3142,-96,-1,-12, +-10,-2816,-4,-1693,-14,-417,-134,-177,-2,-30,-1722,-10544], +[0,-1644,-766,-10545], [1,3,3764], [0,0,3765,3766,11], -[0,-3748,-3268,-427,-428,-367,-589,-932,-943,-948,-958,-965,-968,-1344,-2391], -[0,-7314,-3578,-1334,-3844,-9005,-3445,-3161], +[0,-315,-747,-22,-19,-245,-110,-1,-83,-246,-9,-115,-67,-10,-172], +[0,-3596,-113,-103,-216,-3756,-46,-53], [1,3,3768], [0,0,0,3769,8], -[0,-1087,-7282,-7724,-9006,-9007], +[0,-1644,-766,-767,-10546,-10547], [1,3,3771], [0,3772,3773,3774,6], -[0,-9008], -[0,-510,-1127,-9009,-1132,-1144,-1146,-2125,-2176], -[0,-2490,-1107], +[0,-5597], +[0,-59,-54,-10548,-164,-175,-358,-7,-1997], +[0,-606,-28], [1,3,3776], [0,0,3777,7,6], -[0,-2410,-3037], +[0,-2,-5], [1,3,3779], [0,3780,3781,3782,5], -[0,-668,-2562,-2523,-2557], -[0,-1127,-1131,-9010,-9011,-1542,-2425,-1144,-1151], -[0,-2557,-3970,-3161,-3095,-3577,-3994,-475], +[0,-20,-2015,-4353,-1477], +[0,-54,-546,-2817,-2818,-343,-1271,-175,-1415], +[0,-1477,-1010,-53,-131,-192,-306,-184], [1,3,3784], [0,3785,3786,3787,5], -[0,-668,-2218,-2562,-1548,-9012,-2557,-2425], -[0,-1693,-888,-664,-622,-1654,-2210,-932,-1650,-615,-1405,-719,-2211,-769,-1440,-665,-2070,-1657], -[0,-2557,-475,-1168,-9013,-9014,-620,-478,-9015,-2162,-1521,-3184,-525,-9016,-2410,-711,-1409,-9017,-2501,-932], +[0,-20,-288,-2015,-23,-5598,-1477,-1271], +[0,-1443,-337,-13,-1050,-3,-27,-1,-72,-114,-66,-58,-190,-225,-968,-239,-1993,-589], +[0,-1477,-184,-32,-10549,-10550,-453,-4110,-10551,-80,-219,-349,-281,-10552,-2,-308,-1659,-10553,-18,-1], [1,3,3789], [0,3790,3791,3792,4], -[0,-1116,-1107,-2562,-727,-1548,-689,-9018,-9019,-2557], -[0,-888,-932,-1412,-1077,-9010,-9011,-958,-9020], -[0,-2557,-3970,-3100,-3994,-9021,-3095,-5574,-9022], +[0,-387,-28,-2015,-335,-23,-1389,-10554,-10555,-1477], +[0,-337,-1,-196,-41,-2817,-2818,-9,-10556], +[0,-1477,-1010,-52,-306,-5599,-131,-1022,-5600], [1,3,3794], [0,0,3795,3796,5], -[0,-3037,-932,-940,-967,-968,-1942,-2319,-2410], -[0,-9023,-9024,-7329], +[0,-5,-1,-12,-25,-67,-4,-85,-2], +[0,-10557,-5601,-2187], [1,3,3798], [0,0,3799,3800,10], -[0,-5325,-3037,-3899,-9025,-1942,-2200,-9026,-2410,-2469], -[0,-5925,-3262,-9027,-9028,-9029,-5112,-6917,-9030], +[0,-2125,-5,-1009,-10558,-4,-394,-10559,-2,-30], +[0,-3454,-116,-3757,-10560,-5602,-759,-836,-5603], [1,3,3802], [0,0,3803,7,11], -[0,-21,-23,-40,-42,-3470,-3471,-7041,-3136,-3037,-427,-428,-9031,-9032,-528,-533,-534,-8167,-932,-940,-948,-951,-958,-967, --969,-970,-972,-978,-1344,-9033,-1415,-1534,-1942,-2125,-2174,-9034,-2410,-2501,-2503], +[0,-48,-11,-21,-137,-297,-298,-618,-29,-5,-22,-19,-10561,-10562,-91,-86,-96,-2210,-1,-12,-246,-783,-9,-25,-64,-186,-724, +-151,-10,-10563,-8,-17,-4,-7,-122,-10564,-2,-18,-93], [1,3,3805], [0,0,3806,7,4], -[0,-9035,-9036,-9037,-9038,-1788], +[0,-10565,-10566,-10567,-10568,-15], [1,3,3808], [0,0,115,3809,5], -[0,-7458,-5573,-9039,-1888,-9040,-9041,-9042,-729,-1805,-5149,-9043,-9044,-6555,-9045,-9046], +[0,-5310,-655,-10569,-641,-10570,-5604,-10571,-218,-152,-2103,-2819,-5605,-920,-10572,-10573], [1,3,3811], [0,0,3812,3813,4], -[0,-3037,-826,-2541], -[0,-9047,-3972,-8428,-9048,-640,-5827,-1958,-2059], +[0,-5,-627,-34], +[0,-10574,-1509,-5504,-1575,-294,-252,-286,-597], [1,3,3815], [0,3816,3817,3818,9], -[0,-9049,-1399], -[0,-3037,-519,-9050,-9051,-8877,-2384,-2541], -[0,-9052,-5827,-1961,-9048,-2265,-5554,-640,-2059,-6582,-9053,-8800,-9054,-7208,-9048], +[0,-10575,-966], +[0,-5,-51,-2820,-10576,-5569,-82,-34], +[0,-1874,-252,-171,-1575,-168,-193,-294,-597,-479,-10577,-1351,-5606,-426,-1575], [1,3,3820], [0,3821,0,3822,4], -[0,-9055], -[0,-1101,-9052,-2410,-9056,-9057], +[0,-10578], +[0,-1230,-1874,-2,-2228,-10579], [1,3,3824], [0,0,3825,3826,5], -[0,-3037,-427,-428,-7636,-932,-9058,-940,-967,-7638,-9059,-1942,-7639,-2402,-2410,-7640], -[0,-9060,-9061,-9062,-9063,-9064,-9065,-1102,-9066,-9067,-8995,-9068,-3966,-9069,-3694,-2410], +[0,-5,-22,-19,-5331,-1,-10580,-12,-25,-5332,-10581,-4,-5333,-124,-2,-5334], +[0,-5607,-10582,-10583,-10584,-10585,-10586,-4175,-10587,-10588,-3754,-10589,-144,-2821,-650,-2], [1,3,3828], [0,3829,3830,3831,8], -[0,-510,-1111,-1077,-719,-7731,-1046,-9070], -[0,-2359,-664,-1654,-2210,-932,-9071,-9072], -[0,-5889,-1103,-1105], +[0,-59,-204,-41,-58,-2202,-1408,-10590], +[0,-161,-13,-3,-27,-1,-3758,-3759], +[0,-402,-340,-545], [1,3,3833], [0,3834,3835,3836,5], -[0,-5504,-9073,-9074,-9075,-1849,-9076], -[0,-528,-664,-9077,-708,-720,-796,-932,-9078,-951,-958,-964,-1654,-1658,-1788,-1972,-2174,-2210,-2211,-9079,-2449], -[0,-5889,-3322,-9080], +[0,-1159,-5608,-10591,-5609,-492,-10592], +[0,-91,-13,-2229,-149,-482,-295,-1,-5610,-783,-9,-256,-3,-548,-15,-181,-122,-27,-190,-10593,-1707], +[0,-402,-696,-3760], [1,3,3838], [0,0,3839,3840,8], -[0,-5870,-40,-9081,-9082,-9083,-4062,-351,-3561,-3266,-4785,-664,-932,-943,-958,-966,-968,-1471,-1474,-1475,-1476,-1479, --1482,-1483,-1486,-1487,-1489,-7759,-1654,-2127,-3571,-2162,-2210,-2211], -[0,-1105,-5248,-3100,-3095], +[0,-829,-21,-5611,-10594,-10595,-238,-62,-237,-206,-758,-13,-1,-83,-9,-75,-67,-79,-675,-138,-588,-213,-187,-414,-731,-861, +-1237,-2758,-3,-14,-2042,-80,-27,-190], +[0,-545,-3365,-52,-131], [1,3,3842], [0,3843,3844,7,4], -[0,-1645,-9084,-9085], -[0,-3037,-928,-1623,-1650,-1942,-2125,-2319,-2386,-2402], +[0,-92,-1875,-10596], +[0,-5,-87,-259,-72,-4,-7,-85,-561,-124], [1,3,3846], [0,3847,125,3848,9], -[0,-1393], -[0,-1107,-8807,-6817,-1847,-9086,-7421,-3956,-9087], +[0,-1081], +[0,-28,-1573,-1174,-249,-10597,-427,-1756,-2230], [1,3,3850], [0,3851,31,7,8], -[0,-9088,-1958], +[0,-5612,-286], [1,3,3853], [0,0,3854,3855,4], -[0,-6593,-519,-674,-959,-1098,-9089,-8345,-1772,-1821,-1978,-2195,-2384,-2400,-2541], -[0,-1110,-1109,-9090,-3591,-3592,-1452,-932,-9091], +[0,-922,-51,-231,-145,-486,-10598,-2788,-345,-803,-160,-276,-82,-215,-34], +[0,-56,-852,-10599,-1501,-2515,-119,-1,-10600], [1,3,3857], [0,3858,3859,3860,8], -[0,-8413,-1026,-1353,-7408,-2218,-8803], -[0,-3037,-519,-589,-9092,-2331,-2384,-2541], -[0,-9093,-5839,-7411,-7727,-6999,-7422,-7724,-5573,-9094,-7410,-1076,-1107,-9095,-9096,-7419,-5572,-5912,-1645,-6809, --9097,-9098,-5574,-5064,-2368,-2444,-3590,-9087,-9099,-1961,-9100,-5889], +[0,-5500,-226,-460,-1554,-288,-2797], +[0,-5,-51,-110,-5613,-379,-82,-34], +[0,-10601,-708,-3607,-1856,-660,-1555,-767,-655,-5614,-3606,-303,-28,-2231,-3761,-661,-532,-2143,-92,-2707,-10602,-5615, +-1022,-2100,-2001,-136,-208,-2230,-10603,-171,-3762,-402], [1,3,3862], [0,3863,3864,3865,11], -[0,-812,-769,-9101,-9102], -[0,-510], -[0,-6524,-9103,-6527,-9104,-1355,-1112,-5845,-7450,-7378], +[0,-35,-225,-10604,-10605], +[0,-59], +[0,-1831,-10606,-292,-10607,-4215,-3020,-477,-5307,-1553], [1,3,3867], [0,3868,3869,3870,4], -[0,-1729,-9105,-2387], -[0,-3037,-4201,-427,-428,-932,-9106,-958,-965,-968,-1942,-2402,-2410], -[0,-9107,-9108,-9109,-9110,-9111,-9112,-3184,-4791,-1113,-9113,-9114,-8909,-9115,-4633,-9116,-9117,-9118,-9119,-9120, --9121,-9122,-9123,-3445,-9124,-9125,-9126,-9127], +[0,-188,-10608,-44], +[0,-5,-1014,-22,-19,-1,-3763,-9,-115,-67,-4,-124,-2], +[0,-10609,-10610,-10611,-10612,-5616,-10613,-349,-910,-4176,-10614,-10615,-5576,-10616,-1771,-10617,-10618,-10619,-10620, +-10621,-10622,-10623,-10624,-46,-10625,-10626,-10627,-10628], [1,3,3872], [0,3873,3874,3875,9], -[0,-3517,-9128], -[0,-50,-3037,-427,-428,-2758,-932,-934,-935,-958,-9129,-8846,-1722,-2892,-2410,-9130,-2469], -[0,-9131,-9132,-3939,-9133,-9134,-9135,-9136,-3690,-1115,-9137,-9138,-9139], +[0,-528,-3764], +[0,-357,-5,-22,-19,-2466,-1,-185,-949,-9,-10629,-2800,-197,-380,-2,-10630,-30], +[0,-10631,-10632,-1507,-2822,-10633,-10634,-10635,-100,-4177,-10636,-10637,-5617], [1,3,3877], [0,3878,3879,3880,8], -[0,-8846,-9140], -[0,-9141,-3621,-9142,-9143,-3037,-9144,-6630,-4364,-4966,-4372,-3628,-9145,-9146,-652,-708,-767,-999,-8869,-1166,-9147, --1446,-9148,-9149,-9150,-1654,-6455,-1705,-1722,-1783,-1805,-1827,-9151,-1942,-1972,-2125,-2188,-2210,-2359,-2410,-2551], -[0,-3939,-3690,-9152,-3323,-9153], +[0,-2800,-10638], +[0,-10639,-71,-10640,-3765,-5,-5618,-1337,-2568,-2093,-279,-750,-10641,-2823,-43,-149,-26,-118,-5568,-1952,-5619,-165, +-10642,-10643,-5620,-3,-2691,-734,-197,-976,-152,-1110,-5621,-4,-181,-7,-1123,-27,-161,-2,-525], +[0,-1507,-100,-10644,-351,-10645], [1,3,3882], [0,3883,3884,3885,5], -[0,-9154,-9155,-9156,-9157,-9158,-9159,-7006,-1495,-9160,-9161,-9162,-2400], -[0,-9163,-5918,-357,-3268,-3617,-3037,-9164,-6279,-8852,-4372,-3626,-519,-523,-589,-615,-617,-652,-9165,-9166,-9167,-825, --826,-1002,-1004,-1069,-5989,-1100,-1722,-1729,-1763,-1825,-9168,-1866,-3653,-2062,-2105,-2210,-9169,-2331,-9170,-2364, --2392,-2410,-2541], -[0,-1334,-1342,-5735,-9052,-1116,-2435,-9171,-2105,-5493,-9172,-9173,-4213,-5149,-5150,-6826,-6828,-9174,-9175,-9176, --9177,-523,-2291,-1729,-9128], +[0,-2824,-10646,-10647,-10648,-10649,-10650,-3569,-2367,-5622,-5623,-10651,-215], +[0,-5624,-1164,-623,-747,-264,-5,-10652,-3492,-2801,-279,-2046,-51,-194,-110,-114,-163,-43,-10653,-10654,-10655,-232,-627, +-787,-40,-628,-2655,-487,-197,-188,-415,-866,-10656,-1111,-2521,-198,-111,-27,-10657,-379,-10658,-1129,-155,-2,-34], +[0,-103,-388,-1533,-1874,-387,-200,-2825,-111,-654,-2232,-2233,-905,-2103,-1155,-1548,-2712,-10659,-10660,-5625,-10661, +-194,-690,-188,-3764], [1,3,3887], [0,0,3888,3889,4], -[0,-1168,-2218,-2127,-784,-1821,-1889,-9178,-9179,-1783,-1978,-2281,-23,-518,-1930,-1330,-3572,-40,-9180,-9181,-3326, --3266,-3561,-7189], -[0,-9182,-3100,-4189,-3110], +[0,-32,-288,-14,-369,-803,-38,-10662,-5626,-976,-160,-182,-11,-157,-869,-3045,-1498,-21,-10663,-10664,-207,-206,-237, +-2732], +[0,-10665,-52,-2560,-277], [1,3,3891], [0,0,3892,3893,4], -[0,-1362,-1650,-2125,-2319], -[0,-1076,-3551,-9183,-2122,-9184,-1986,-6324,-8980,-9185,-9186,-9187,-9188,-9189,-9190], +[0,-1962,-72,-7,-85], +[0,-303,-365,-10666,-1995,-10667,-983,-658,-2227,-10668,-10669,-10670,-10671,-10672,-10673], [1,3,3895], [0,0,0,3896,8], -[0,-1122,-9191], +[0,-371,-10674], [1,3,3898], [0,33,3899,7,5], -[0,-3035,-3621,-3037,-664,-1122,-1654,-2125,-2127,-2139,-2234,-9192,-2410], +[0,-109,-71,-5,-13,-371,-3,-7,-14,-1259,-147,-10675,-2], [1,3,3901], [0,3902,0,7,9], -[0,-9193,-2387], +[0,-3766,-44], [1,3,3904], [0,3905,3906,3907,8], -[0,-1442,-8493,-9194,-9195], -[0,-9196,-8491,-711,-9197,-1016,-1075,-1202,-1646,-1654,-2362,-2460,-6234], -[0,-9198,-9199,-710,-6582,-3671,-856,-7347,-9200,-9201,-1075,-9202,-3960,-3262,-1103,-5539,-3214,-3259,-3756,-4182,-1599, --9203,-1838,-3215,-6747,-9204,-5142,-3110,-2362,-2548,-3672], +[0,-101,-2214,-10676,-5627], +[0,-10677,-5518,-308,-10678,-2343,-1640,-671,-88,-3,-886,-70,-1823], +[0,-5628,-5629,-455,-479,-399,-42,-1026,-10679,-10680,-1640,-10681,-569,-116,-340,-4947,-45,-3184,-278,-1304,-99,-10682, +-166,-74,-763,-2826,-914,-277,-886,-262,-4609], [1,3,3909], [0,3910,3911,7,9], -[0,-9205,-9206,-1551,-9073,-1696,-1969], -[0,-617,-9207,-1004,-9208,-1405,-1548,-1646,-1730,-9209], +[0,-10683,-10684,-1664,-5608,-801,-1687], +[0,-163,-10685,-40,-5630,-66,-23,-88,-1107,-10686], [1,3,3913], [0,3914,3915,3916,11], -[0,-1000,-1107,-1758,-1442,-1132,-1645,-808,-1351,-1048,-995,-9210,-9211,-9212], -[0,-9213,-2347,-9214,-1152,-9215,-1149,-1146], -[0,-4107,-510,-687,-1644,-9216,-7641,-1548,-5119,-4004,-1989,-1754,-3844,-9217,-3970,-9218,-1410,-3673], +[0,-849,-28,-463,-101,-164,-92,-1620,-459,-1409,-1634,-10687,-10688,-5631], +[0,-10689,-69,-3767,-512,-10690,-304,-358], +[0,-824,-59,-37,-228,-1031,-712,-23,-401,-76,-376,-679,-216,-10691,-1010,-1576,-1966,-611], [1,3,3918], [0,3919,3920,3921,5], -[0,-1323], -[0,-1127,-1132,-1140,-1134,-1136,-1144,-1146,-1148,-1165,-1138], -[0,-9219,-475,-3110,-3261,-9048], +[0,-1424], +[0,-54,-164,-1951,-240,-629,-175,-358,-341,-4184,-511], +[0,-268,-184,-277,-746,-1575], [1,3,3923], [0,0,3924,49,4], -[0,-1127,-1159,-1131,-1163,-664], +[0,-54,-630,-546,-1416,-13], [1,3,3926], [0,3927,3928,3929,9], -[0,-510,-633,-9220,-1107,-1548,-2114,-2491], -[0,-1127,-1132,-1134,-1144,-1654,-2210], -[0,-9219,-633,-1127], +[0,-59,-60,-10692,-28,-23,-126,-742], +[0,-54,-164,-240,-175,-3,-27], +[0,-268,-60,-54], [1,3,3931], [0,3932,3933,49,6], -[0,-2177], -[0,-1127,-1129,-1134,-1144,-1146,-1150,-1159,-1542], +[0,-16], +[0,-54,-1414,-240,-175,-358,-1072,-630,-343], [1,3,3935], [0,3936,207,7,4], -[0,-1758,-9221,-6007,-1381,-9212], +[0,-463,-10693,-3466,-1964,-5631], [1,3,3938], [0,3939,3940,3941,5], -[0,-510,-506,-9222,-1366], -[0,-2541,-1127,-1753,-1132,-769,-1849,-9223,-2297,-1163,-1134,-1149], -[0,-9219,-5920,-5921,-9224,-7175,-6188,-9225,-6187,-5922,-9226], +[0,-59,-1046,-10694,-793], +[0,-34,-54,-285,-164,-225,-492,-10695,-468,-1416,-240,-304], +[0,-268,-2654,-918,-10696,-620,-2156,-5632,-574,-535,-10697], [1,3,3943], [0,208,3944,3945,10], -[0,-1127,-9071,-1144,-1143,-1146], -[0,-9219,-6688,-7416,-6694,-6693,-824,-6695,-7417,-2125], +[0,-54,-3758,-175,-853,-358], +[0,-268,-1338,-2192,-659,-835,-150,-1545,-3608,-7], [1,3,3947], [0,3948,3949,3950,8], -[0,-510,-9227,-805,-9050,-2359,-2518], -[0,-1127,-1132,-1134,-1143,-1144,-1146,-1162], -[0,-9219,-9228,-3754,-2162,-775,-7644,-3277,-5553], +[0,-59,-10698,-1619,-2820,-161,-222], +[0,-54,-164,-240,-853,-175,-358,-789], +[0,-268,-5633,-444,-80,-24,-713,-608,-230], [1,3,3952], [0,3953,126,49,4], -[0,-668,-2231], +[0,-20,-130], [1,3,3955], [0,3956,3957,3958,4], -[0,-1805,-510,-1676,-729,-5763,-2186,-2187,-7006,-9229], -[0,-1127,-1144,-1143,-1146], -[0,-9219,-3844,-729,-1334], +[0,-152,-59,-678,-218,-3437,-1122,-393,-3569,-2234], +[0,-54,-175,-853,-358], +[0,-268,-216,-218,-103], [1,3,3960], [0,3961,3962,49,4], -[0,-668,-9230], -[0,-1127,-1132,-1134,-1143,-1144,-1146], +[0,-20,-10699], +[0,-54,-164,-240,-853,-175,-358], [1,3,3964], [0,3965,127,3966,5], -[0,-668,-9231,-1548,-2271], -[0,-9219,-775,-7148,-9231], +[0,-20,-2235,-23,-601], +[0,-268,-24,-224,-2235], [1,3,3968], [0,3969,127,3970,8], -[0,-668,-683,-9232], -[0,-9219,-9233,-775,-5553,-3770,-3271,-1644,-6454], +[0,-20,-540,-5634], +[0,-268,-10700,-24,-230,-568,-1282,-228,-575], [1,3,3972], [0,3973,126,3974,4], -[0,-668,-1948,-1323], -[0,-9219,-3264,-9234,-1644,-6454,-7175], +[0,-20,-520,-1424], +[0,-268,-31,-1876,-228,-575,-620], [1,3,3976], [0,3977,3978,3979,8], -[0,-668,-1356,-1826,-1877,-1948,-7691,-7692,-7690,-7687], -[0,-519,-825,-1127,-2541], -[0,-9219,-6454,-8642,-6527,-5094,-9235,-8640,-1644,-7715,-3839], +[0,-20,-1961,-552,-979,-520,-5343,-3648,-5342,-3647], +[0,-51,-232,-54,-34], +[0,-268,-575,-1349,-292,-1789,-1193,-1572,-228,-621,-265], [1,3,3981], [0,3982,207,7,5], -[0,-7446], +[0,-5305], [1,3,3984], [0,3985,3986,49,8], -[0,-668,-9236,-1452], -[0,-1127,-1143,-1146], +[0,-20,-2827,-119], +[0,-54,-853,-358], [1,3,3988], [0,3989,3990,49,6], -[0,-1521,-510,-668,-1548], -[0,-1127,-1134,-1144,-9237,-1143,-1146], +[0,-219,-59,-20,-23], +[0,-54,-240,-175,-5635,-853,-358], [1,3,3992], [0,3993,3994,3995,6], -[0,-9238], -[0,-1127,-1134,-1143,-1144,-2319], -[0,-9219,-1754,-4004,-4043], +[0,-10701], +[0,-54,-240,-853,-175,-85], +[0,-268,-679,-76,-473], [1,3,3997], [0,3998,127,3999,8], -[0,-510,-668,-769,-805,-2518], -[0,-9219,-3754,-2162,-775,-7644,-3277,-5553], +[0,-59,-20,-225,-1619,-222], +[0,-268,-444,-80,-24,-713,-608,-230], [1,3,4001], [0,4002,126,49,4], -[0,-668,-9232,-9239,-2416], +[0,-20,-5634,-10702,-112], [1,3,4004], [0,4005,4006,4007,6], -[0,-1088,-510,-1548,-2353], -[0,-1127,-1132,-1153,-2425,-1144,-1143,-1146], -[0,-9219,-2490,-1540], +[0,-1645,-59,-23,-1469], +[0,-54,-164,-1231,-1271,-175,-853,-358], +[0,-268,-606,-1094], [1,3,4009], [0,4010,4011,4012,4], -[0,-668,-725,-739,-1877,-1980], -[0,-1127,-1131,-1132,-1134,-1138,-1144,-1146,-1151,-9240,-9241,-1153,-1159,-1542], -[0,-1127,-9219,-739,-6908,-5887,-1573], +[0,-20,-309,-541,-979,-521], +[0,-54,-546,-164,-240,-511,-175,-358,-1415,-2828,-2829,-1231,-630,-343], +[0,-54,-268,-541,-2177,-830,-258], [1,3,4014], [0,4015,4016,4017,10], -[0,-668,-6019,-1877], -[0,-1127,-1131,-1132,-1134,-1144,-1146,-9240,-9242,-9241,-1153,-1159,-1542], -[0,-1127,-9219,-6019,-1105,-9243,-9244,-9245,-739,-6908,-5887,-1573], +[0,-20,-2146,-979], +[0,-54,-546,-164,-240,-175,-358,-2828,-10703,-2829,-1231,-630,-343], +[0,-54,-268,-2146,-545,-10704,-3768,-10705,-541,-2177,-830,-258], [1,3,4019], [0,4020,4021,4022,5], -[0,-668,-932], -[0,-190,-1127,-1132,-1162], -[0,-9219,-932,-7148,-5874,-9246], +[0,-20,-1], +[0,-50,-54,-164,-789], +[0,-268,-1,-224,-534,-2830], [1,3,4024], [0,4025,4026,4027,4], -[0,-9236,-1445,-1548,-9247], -[0,-1127,-1144,-1146,-1542,-2351], -[0,-9219,-1445,-8172,-7144], +[0,-2827,-587,-23,-5636], +[0,-54,-175,-358,-343,-1468], +[0,-268,-587,-1187,-619], [1,3,4029], [0,4030,4031,4032,8], -[0,-769,-1446], -[0,-1127,-1134,-1146,-1152,-2778,-1542], -[0,-9219,-1127,-856,-4100,-1446,-7674], +[0,-225,-165], +[0,-54,-240,-358,-512,-1721,-343], +[0,-268,-54,-42,-700,-165,-2752], [1,3,4034], [0,34,4035,4036,11], -[0,-86,-9248,-3307,-3470,-3471,-7041,-932,-943,-958,-966,-968,-974,-1003,-1127,-1131,-1149,-1150,-1151,-1152,-1159,-1344, --1471,-1475,-1479,-1482,-1542,-1654,-2174], -[0,-9219,-1471,-1127,-4004,-5119,-4043,-9249], +[0,-49,-5637,-63,-297,-298,-618,-1,-83,-9,-75,-67,-129,-411,-54,-546,-304,-1072,-1415,-512,-630,-10,-79,-138,-213,-187, +-343,-3,-122], +[0,-268,-79,-54,-76,-401,-473,-5638], [1,3,4038], [0,4039,4040,209,10], -[0,-9236,-1650], -[0,-664,-710,-1127,-1132,-9250,-1134,-1138,-1144,-9240,-9251,-9241,-9252,-1654,-2125], +[0,-2827,-72], +[0,-13,-455,-54,-164,-10706,-240,-511,-175,-2828,-10707,-2829,-10708,-3,-7], [1,3,4042], [0,208,4043,4044,10], -[0,-664,-1127,-9253,-1132,-1134,-1144,-1149,-1658,-2359,-2529], -[0,-6999,-1127,-9219,-9254], +[0,-13,-54,-10709,-164,-240,-175,-304,-548,-161,-3132], +[0,-660,-54,-268,-3769], [1,3,4046], [0,4047,4048,4049,11], -[0,-2177,-9255,-2518], -[0,-664,-1132,-1144,-1149,-1156,-9256,-9257,-1542,-1654,-1972,-2351], -[0,-9219,-4127,-9258,-6721,-9259,-9260,-9261,-9262,-6324,-2489,-5886], +[0,-16,-10710,-222], +[0,-13,-164,-175,-304,-959,-5639,-10711,-343,-3,-181,-1468], +[0,-268,-1761,-2831,-2705,-10712,-10713,-1877,-3770,-658,-605,-2142], [1,3,4051], [0,0,4052,7,10], -[0,-1127,-1131], +[0,-54,-546], [1,3,4054], [0,0,4055,4056,5], -[0,-1127,-1132,-1134,-1146,-2162,-2541], -[0,-9219,-775,-2162,-3754,-5553,-7644,-9263,-9264], +[0,-54,-164,-240,-358,-80,-34], +[0,-268,-24,-80,-444,-230,-713,-2832,-3771], [1,3,4058], [0,4059,4060,4061,4], -[0,-714,-1548,-1980,-9265,-9266,-5471], -[0,-1127,-1137,-1144,-1149,-1153,-9267,-1541,-1631,-8403], -[0,-9219,-1127,-5471,-4004,-1412,-1654,-1989,-9268], +[0,-133,-23,-521,-10714,-3772,-1324], +[0,-54,-584,-175,-304,-1231,-10715,-3062,-491,-769], +[0,-268,-54,-1324,-76,-196,-3,-376,-10716], [1,3,4063], [0,4064,210,4065,11], -[0,-668,-1773,-2269], -[0,-9219,-5550,-3957,-7095,-8421,-7091,-6599,-1958,-687], +[0,-20,-1981,-139], +[0,-268,-267,-316,-1343,-1190,-1843,-1336,-286,-37], [1,3,4067], [0,27,4068,209,9], -[0,-1127,-1144,-1654], +[0,-54,-175,-3], [1,3,4070], [0,4071,4072,4073,11], -[0,-510,-9269,-9270,-2424,-9271], -[0,-932,-9272,-9273,-9274,-9275,-9276,-9277,-1127,-1132,-1157,-1654,-2125,-2194], -[0,-1127,-9219,-9278,-6527,-9279,-775,-9270,-7085], +[0,-59,-5640,-2833,-250,-5641], +[0,-1,-5642,-5643,-5644,-5645,-10717,-10718,-54,-164,-4183,-3,-7,-737], +[0,-54,-268,-1878,-292,-2834,-24,-2833,-1342], [1,3,4075], [0,4076,4077,4078,4], -[0,-668,-812,-1548,-1849], -[0,-1127,-1650,-2125,-1132,-1153,-9280,-1144], -[0,-9219,-9281,-3976,-3264,-775,-7175], +[0,-20,-35,-23,-492], +[0,-54,-72,-7,-164,-1231,-3773,-175], +[0,-268,-5646,-1011,-31,-24,-620], [1,3,4080], [0,4081,4082,4083,5], -[0,-190,-427,-428,-668,-932,-940,-965,-967,-999,-1376,-1460,-1630,-1705,-1942,-2411,-2530], -[0,-9282,-7080,-3330,-3048,-3049,-9283,-3621,-9143,-3037,-4372,-3628,-9284,-652,-769,-1077,-9285,-9147,-1654,-2210,-2359, --2410], -[0,-2410,-8170,-4144,-3939], +[0,-50,-22,-19,-20,-1,-12,-115,-25,-118,-195,-272,-462,-734,-4,-84,-1714], +[0,-10719,-1024,-364,-191,-2025,-5647,-71,-3765,-5,-279,-750,-3774,-43,-225,-41,-10720,-5619,-3,-27,-161,-2], +[0,-2,-577,-1303,-1507], [1,3,4085], [0,0,4086,4087,5], -[0,-9286,-4010,-367,-7043,-9287,-3136,-3037,-8477,-4203,-932,-1415,-1730,-1942,-2125,-2293,-2410], -[0,-1167,-3578,-3161,-3967,-1334,-3690,-3445], +[0,-10721,-1759,-245,-1178,-10722,-29,-5,-2793,-1015,-1,-8,-1107,-4,-7,-123,-2], +[0,-4185,-113,-53,-353,-103,-100,-46], [1,3,4089], [0,4090,4091,4092,6], -[0,-9288,-9179,-9289,-2462], -[0,-932,-937,-966,-1001,-1650,-1654,-1788,-2125], -[0,-7641,-5827,-4219,-9218,-3673,-6342,-9290,-9291,-5921,-9292], +[0,-10723,-5626,-10724,-562], +[0,-1,-782,-75,-338,-72,-3,-15,-7], +[0,-712,-252,-4720,-1576,-611,-1825,-3775,-5648,-918,-1879], [1,3,4094], [0,4095,72,4096,4], -[0,-1187,-9293,-1208,-1451,-1570,-1597,-8390,-2347], -[0,-7841,-1168,-475,-5175,-3501,-9294,-9295], +[0,-631,-5649,-790,-1087,-1431,-970,-5488,-69], +[0,-68,-32,-184,-1320,-4568,-10725,-10726], [1,3,4098], [0,4099,4100,4101,4], -[0,-7850,-305,-994,-1199,-1243,-9296,-1267,-1650,-1875,-1959,-7881,-2125,-2177,-2330,-2460,-2462], -[0,-1178,-1654], -[0,-7841,-9297,-5550,-9298,-891,-1105], +[0,-3661,-665,-409,-1073,-310,-10727,-4201,-72,-1252,-362,-5381,-7,-16,-603,-70,-562], +[0,-4186,-3], +[0,-68,-5650,-267,-10728,-458,-545], [1,3,4103], [0,4104,4105,4106,4], -[0,-518,-1236,-1889,-2464], -[0,-519,-1252,-1825,-2460,-2541], -[0,-7841,-518,-1889,-775,-5899,-9299,-3271,-9263,-9300], +[0,-157,-854,-38,-563], +[0,-51,-311,-866,-70,-34], +[0,-68,-157,-38,-24,-2652,-5651,-1282,-2832,-2236], [1,3,4108], [0,4109,4110,4111,4], -[0,-3698,-479,-671,-1022,-9301,-1641,-1876,-2460], -[0,-664,-9302,-932,-1168,-1243,-1654,-1942], -[0,-7841,-5817,-5940,-8403], +[0,-1289,-452,-1387,-257,-10729,-344,-142,-70], +[0,-13,-10730,-1,-32,-310,-3,-4], +[0,-68,-1330,-1165,-769], [1,3,4113], [0,4114,0,4115,4], -[0,-9303,-9304,-994,-1640,-1959,-1986,-9305,-2460,-2462,-2550], -[0,-7841,-5800,-8624,-6005], +[0,-10731,-10732,-409,-260,-362,-983,-10733,-70,-562,-98], +[0,-68,-1534,-3731,-1166], [1,3,4117], [0,4118,4119,4120,6], -[0,-2347,-2103,-1876,-2464], -[0,-2541,-1654,-2460,-1939,-23,-1252,-3352,-3362,-3373], -[0,-7841,-525,-3186,-4795,-8165,-6434,-9306,-9307,-4132,-9308,-9309,-3214,-3116], +[0,-69,-874,-142,-563], +[0,-34,-3,-70,-234,-11,-311,-3192,-2034,-2501], +[0,-68,-281,-1280,-446,-2209,-1540,-5652,-3776,-400,-3777,-10734,-45,-607], [1,3,4122], [0,4123,211,4124,5], -[0,-1236], -[0,-7841,-9310,-6472,-7154,-9311,-2443,-9312,-9313,-9314], +[0,-854], +[0,-68,-5653,-2692,-2728,-5654,-1706,-3778,-10735,-10736], [1,3,4126], [0,4127,4128,4129,4], -[0,-479,-622,-1022,-1376,-1876,-2347,-2460,-2487], -[0,-664,-994,-9315,-1220,-1231,-1452,-1654,-2125,-2210,-2211,-2261], -[0,-7841,-622], +[0,-452,-1050,-257,-195,-142,-69,-70,-741], +[0,-13,-409,-10737,-961,-359,-119,-3,-7,-27,-190,-1465], +[0,-68,-1050], [1,3,4131], [0,4132,4133,4134,5], -[0,-633,-1266,-634,-2062,-2347], -[0,-1654,-664,-6398], -[0,-7841,-7419,-633], +[0,-60,-360,-2322,-198,-69], +[0,-3,-13,-2687], +[0,-68,-661,-60], [1,3,4136], [0,212,4137,4138,4], -[0,-1654,-2460], -[0,-1168,-7841], +[0,-3,-70], +[0,-32,-68], [1,3,4140], [0,4141,72,4142,10], -[0,-9316,-1876,-9317,-2177,-2347], -[0,-1168,-6453,-2177,-7841,-9318,-9319,-9320,-9321], +[0,-10738,-142,-10739,-16,-69], +[0,-32,-3515,-16,-68,-715,-5655,-10740,-2835], [1,3,4144], [0,4145,0,4146,8], -[0,-44,-9322,-753,-9323,-1876,-2347,-2460], -[0,-7841,-1168,-3324], +[0,-90,-10741,-158,-5656,-142,-69,-70], +[0,-68,-32,-443], [1,3,4148], [0,4149,4150,36,4], -[0,-2347,-1554], -[0,-1654,-2460,-2198], +[0,-69,-1665], +[0,-3,-70,-81], [1,3,4152], [0,4153,4154,4155,9], -[0,-9324,-1236,-2363], -[0,-519,-668,-824,-1040,-1100,-1168,-2460,-2541], -[0,-7841,-6656,-6999,-9325,-9254,-9326,-9327,-9328,-4123,-9329,-9330,-3324,-9331,-9332], +[0,-5657,-854,-418], +[0,-51,-20,-150,-510,-487,-32,-70,-34], +[0,-68,-128,-660,-10742,-3769,-10743,-10744,-10745,-612,-5658,-2836,-443,-10746,-10747], [1,3,4157], [0,4158,114,4159,6], -[0,-1022,-1876,-2125,-2347,-2460], -[0,-7841,-6688,-6694,-6693], +[0,-257,-142,-7,-69,-70], +[0,-68,-1338,-659,-835], [1,3,4161], [0,4162,4163,4164,6], -[0,-683,-1876,-2347,-2464], -[0,-664,-9077,-756,-1004,-1022,-1168,-1187,-1243,-1248,-1252,-1654,-1788,-2460], -[0,-775,-6688,-1644,-9216,-683,-9333,-1229,-1184,-7841,-7419], +[0,-540,-142,-69,-563], +[0,-13,-2229,-55,-40,-257,-32,-631,-310,-1418,-311,-3,-15,-70], +[0,-24,-1338,-228,-1031,-540,-10748,-3029,-960,-68,-661], [1,3,4166], [0,4167,213,36,10], -[0,-711,-1876,-2103,-2347,-2464], +[0,-308,-142,-874,-69,-563], [1,3,4169], [0,4170,4171,4172,8], -[0,-1266,-2347,-2518], -[0,-756,-824,-1168,-1220,-1223,-1224,-1228,-1231,-1351,-9334,-1597,-1654,-2198], -[0,-1168,-7841,-9228,-3754,-2162,-775,-7644,-3277,-5553], +[0,-360,-69,-222], +[0,-55,-150,-32,-961,-4195,-791,-1954,-359,-459,-10749,-970,-3,-81], +[0,-32,-68,-5633,-444,-80,-24,-713,-608,-230], [1,3,4174], [0,4175,4176,36,4], -[0,-2460,-2347,-6193], -[0,-1168,-1654,-2198,-1405,-7035,-2261,-1252,-1657], +[0,-70,-69,-3486], +[0,-32,-3,-81,-66,-3570,-1465,-311,-589], [1,3,4178], [0,4179,128,4180,4], -[0,-1554,-9335,-1876,-9336,-9337,-9338,-2347,-2460], -[0,-7841,-9048,-775,-6024,-1631,-9339], +[0,-1665,-10750,-142,-5659,-10751,-10752,-69,-70], +[0,-68,-1575,-24,-657,-491,-1577], [1,3,4182], [0,4183,128,4184,9], -[0,-2347,-1266,-1376,-834], -[0,-7841,-3976,-9340,-9341,-3959,-3955,-9342], +[0,-69,-360,-195,-203], +[0,-68,-1011,-10753,-10754,-1757,-1755,-5660], [1,3,4186], [0,4187,4188,4189,4], -[0,-2178,-729,-2353,-1022,-1597,-479,-2186,-2187,-9229], -[0,-1168,-1654,-2293,-1254,-710], -[0,-7419,-729,-1540,-9343,-3844], +[0,-808,-218,-1469,-257,-970,-452,-1122,-393,-2234], +[0,-32,-3,-123,-3032,-455], +[0,-661,-218,-1094,-5661,-216], [1,3,4191], [0,214,4192,4193,4], -[0,-1168,-1415,-1942,-9078], -[0,-7841,-6351,-1168], +[0,-32,-8,-4,-5610], +[0,-68,-709,-32], [1,3,4195], [0,4196,4197,4198,4], -[0,-479,-9344,-1022,-1876,-2347], -[0,-1452,-1654,-2460], -[0,-7841,-775,-9344,-7148,-8170,-3277], +[0,-452,-5662,-257,-142,-69], +[0,-119,-3,-70], +[0,-68,-24,-5662,-224,-577,-608], [1,3,4200], [0,4201,4202,4203,4], -[0,-2460,-9231,-9345,-2347,-1022,-1876], -[0,-1788,-1654,-2210,-932,-2125,-2198,-756,-9346,-9347,-968,-943,-974,-942], -[0,-9231,-7841], +[0,-70,-2235,-5663,-69,-257,-142], +[0,-15,-3,-27,-1,-7,-81,-55,-10755,-10756,-67,-83,-129,-1631], +[0,-2235,-68], [1,3,4205], [0,4206,4207,4208,4], -[0,-784,-6829,-1876,-1792,-2464], -[0,-2322,-2460,-2320,-1252], -[0,-784,-1644,-6059,-7192,-7193,-775,-7841,-1889], +[0,-369,-2713,-142,-241,-563], +[0,-39,-70,-560,-311], +[0,-369,-228,-1333,-765,-1845,-24,-68,-38], [1,3,4210], [0,4211,4212,4213,4], -[0,-2746,-1876,-2464], -[0,-2322,-2460,-2320], -[0,-7841,-1644,-775], +[0,-1719,-142,-563], +[0,-39,-70,-560], +[0,-68,-228,-24], [1,3,4215], [0,4216,4217,4218,5], -[0,-1876,-2347,-8899], -[0,-1452,-1980,-2198,-2460], -[0,-7841,-6582,-4055,-1168], +[0,-142,-69,-5574], +[0,-119,-521,-81,-70], +[0,-68,-479,-108,-32], [1,3,4220], [0,4221,4222,4223,9], -[0,-932,-1022,-1876], -[0,-1168,-1654,-2460,-2198,-1405,-528,-9348,-9349], -[0,-7841,-932,-1168,-8980,-9350,-7440,-6916,-707,-4144,-3756,-3214,-4107,-7148,-3862], +[0,-1,-257,-142], +[0,-32,-3,-70,-81,-66,-91,-3779,-10757], +[0,-68,-1,-32,-2227,-10758,-293,-2719,-334,-1303,-278,-45,-824,-224,-107], [1,3,4225], [0,4226,4227,4228,8], -[0,-1460,-2460,-1015,-9351,-2347,-1876,-725,-9352], -[0,-1168,-1654,-2198,-1405,-1599], -[0,-7841,-6656,-9353,-8276,-1168,-3862], +[0,-272,-70,-432,-10759,-69,-142,-309,-5664], +[0,-32,-3,-81,-66,-99], +[0,-68,-128,-3780,-1189,-32,-107], [1,3,4230], [0,4231,4232,4233,6], -[0,-2218,-1686,-1876,-9354,-9355], -[0,-2541,-519,-1168,-2460,-1825], -[0,-7841,-7724,-1353,-6656,-6999,-5572,-1645,-1107,-9095,-2460], +[0,-288,-1442,-142,-5665,-10760], +[0,-34,-51,-32,-70,-866], +[0,-68,-767,-460,-128,-660,-532,-92,-28,-2231,-70], [1,3,4235], [0,215,72,4236,5], -[0,-7841,-8395,-2239,-8423,-9356,-9357,-6917,-1168], +[0,-68,-5489,-812,-2792,-10761,-5666,-836,-32], [1,3,4238], [0,214,4239,4240,4], -[0,-1168,-1654,-2460,-2198,-1939,-933], -[0,-7841,-1168,-5841,-9358,-1847], +[0,-32,-3,-70,-81,-234,-255], +[0,-68,-32,-2137,-3781,-249], [1,3,4242], [0,4243,27,4244,4], -[0,-9359,-2102,-9360,-2347], -[0,-6146,-3276,-4144,-1168,-7841,-1599,-3437,-3862,-9361,-3240,-2102], +[0,-10762,-1116,-10763,-69], +[0,-3485,-566,-1303,-32,-68,-99,-1000,-107,-3782,-648,-1116], [1,3,4246], [0,4247,4248,4249,8], -[0,-668,-1266,-9362,-9363,-1792,-6370,-1877,-2347], -[0,-9364,-1849], -[0,-7841,-1082,-9362,-6656,-6999,-6931,-8576,-3844,-3323,-7764,-8901,-8902], +[0,-20,-360,-3783,-10764,-241,-1170,-979,-69], +[0,-10765,-492], +[0,-68,-3018,-3783,-128,-660,-2720,-2218,-216,-351,-1182,-1871,-1872], [1,3,4251], [0,4252,4253,4254,4], -[0,-9365,-2125,-2462,-1266,-9366,-2062], -[0,-1654,-2460,-932,-1405,-9367,-1746,-1119,-1574,-9368,-9369], -[0,-5889,-5737,-5890,-9370,-8901,-8902,-8403,-9204,-3258,-1168,-7841,-1103,-841,-1105], +[0,-10766,-7,-562,-360,-10767,-198], +[0,-3,-70,-1,-66,-10768,-4259,-324,-638,-10769,-5667], +[0,-402,-1328,-1815,-10770,-1871,-1872,-769,-2826,-892,-32,-68,-340,-4145,-545], [1,3,4256], [0,4257,4258,4259,5], -[0,-9371,-1022,-1548,-1876,-2109,-9372,-2460], -[0,-932,-1654,-1660,-2125,-2198], -[0,-1168,-5889,-9373,-7841,-9321], +[0,-5668,-257,-23,-142,-2418,-10771,-70], +[0,-1,-3,-1438,-7,-81], +[0,-32,-402,-10772,-68,-2835], [1,3,4261], [0,4262,4263,4264,9], -[0,-479,-651,-1022,-1876,-9374,-2347], -[0,-1168,-1183,-1199,-1224,-1231,-1243,-7832,-1268,-1453,-1654,-9375,-2198], -[0,-6454,-7841,-6826], +[0,-452,-454,-257,-142,-3784,-69], +[0,-32,-1953,-1073,-791,-359,-310,-2759,-2349,-969,-3,-5669,-81], +[0,-575,-68,-1548], [1,3,4266], [0,4267,4268,4269,5], -[0,-1276,-1876,-2103,-2347], -[0,-2460,-1168,-1187,-9376,-9377,-9378,-1654,-9379,-2198], -[0,-7841,-1276], +[0,-247,-142,-874,-69], +[0,-70,-32,-631,-10773,-10774,-10775,-3,-10776,-81], +[0,-68,-247], [1,3,4271], [0,4272,4273,4274,4], -[0,-6193,-1548,-1597,-2347], -[0,-664,-1168], -[0,-5147,-7841,-9380], +[0,-3486,-23,-970,-69], +[0,-13,-32], +[0,-2609,-68,-10777], [1,3,4276], [0,4277,4278,4279,10], -[0,-702,-2218,-615,-2461,-1792,-2062], -[0,-1654,-2460,-1405,-1266,-9348,-725,-9381,-2463], -[0,-7841,-3264,-8276], +[0,-507,-288,-114,-1708,-241,-198], +[0,-3,-70,-66,-360,-3779,-309,-2837,-887], +[0,-68,-31,-1189], [1,3,4281], [0,4282,4283,4284,8], -[0,-2347,-1876,-1323], -[0,-1168,-1654,-2460,-1202], -[0,-3276,-1168,-7841,-9382,-3264,-9383,-6059,-6684,-1644], +[0,-69,-142,-1424], +[0,-32,-3,-70,-671], +[0,-566,-32,-68,-10778,-31,-3785,-1333,-834,-228], [1,3,4286], [0,4287,4288,4289,5], -[0,-4091,-9384,-7837,-9385,-9386,-9354,-9387,-9388,-9389], -[0,-1168,-1415,-932,-2125,-9390,-4010,-1942,-367,-7043,-190,-720,-9391,-2410,-9392,-4007,-9393,-2411,-959,-940,-967,-796, --740], -[0,-7841,-1168,-3167,-3827], +[0,-3265,-10779,-1560,-10780,-10781,-5665,-10782,-10783,-10784], +[0,-32,-8,-1,-7,-5670,-1759,-4,-245,-1178,-50,-482,-10785,-2,-3786,-1012,-5671,-84,-145,-12,-25,-295,-385], +[0,-68,-32,-745,-1149], [1,3,4291], [0,4292,4293,4294,9], -[0,-2347,-9394,-9395], -[0,-1654,-1452,-1650,-2125,-2198,-2462,-1119,-908,-9396], -[0,-7841,-8978,-9397,-9398], +[0,-69,-5672,-5673], +[0,-3,-119,-72,-7,-81,-562,-324,-1628,-10786], +[0,-68,-3751,-10787,-10788], [1,3,4296], [0,4297,4298,4299,11], -[0,-2347,-9394], -[0,-1452,-1654,-2198], -[0,-7841,-7724,-1645,-9353,-9399,-1199], +[0,-69,-5672], +[0,-119,-3,-81], +[0,-68,-767,-92,-3780,-5674,-1073], [1,3,4301], [0,4302,4303,36,4], -[0,-510,-1548,-9400,-2347], -[0,-1112,-1168,-1183,-1231,-1224,-2150,-1453], +[0,-59,-23,-10789,-69], +[0,-3020,-32,-1953,-359,-791,-986,-969], [1,3,4305], [0,4306,4307,4308,4], -[0,-668,-1236,-1356,-1877,-1948], -[0,-519,-1357,-9401,-2460,-2541], -[0,-7841,-1356,-6527,-5094,-8634,-8635,-1644,-6684,-6454,-7715,-8640,-9235,-8642,-3839], +[0,-20,-854,-1961,-979,-520], +[0,-51,-3046,-5675,-70,-34], +[0,-68,-1961,-292,-1789,-3733,-3734,-228,-834,-575,-621,-1572,-1193,-1349,-265], [1,3,4310], [0,4311,4312,36,8], -[0,-479,-994,-1107,-1876,-2231,-2270,-2460,-2464], -[0,-1168,-1252,-1654,-2198,-2261], +[0,-452,-409,-28,-142,-130,-1264,-70,-563], +[0,-32,-311,-3,-81,-1465], [1,3,4314], [0,4315,4316,4317,4], -[0,-506,-2347,-1022,-479,-9402,-1876,-9374,-930], -[0,-2541,-1344,-1654,-2460,-2198,-9403,-994,-86,-2174,-9404], -[0,-7841,-9405,-9406,-9407,-9408,-9409], +[0,-1046,-69,-257,-452,-10790,-142,-3784,-408], +[0,-34,-10,-3,-70,-81,-5676,-409,-49,-122,-1032], +[0,-68,-3787,-5677,-5678,-3788,-2838], [1,3,4319], [0,4320,4321,4322,4], -[0,-9410,-1876,-2347], -[0,-528,-756,-994,-1168,-1197,-1231,-1654,-1788,-2460], -[0,-7841,-9339,-775,-3264,-7920], +[0,-10791,-142,-69], +[0,-91,-55,-409,-32,-513,-359,-3,-15,-70], +[0,-68,-1577,-24,-31,-2766], [1,3,4324], [0,4325,4326,4327,9], -[0,-805,-1266,-9411,-1827,-2347,-2518], -[0,-664,-1654,-2251,-2541], -[0,-7841,-622,-1764,-1380], +[0,-1619,-360,-10792,-1110,-69,-222], +[0,-13,-3,-134,-34], +[0,-68,-1050,-159,-729], [1,3,4329], [0,4330,4331,4332,9], -[0,-1405,-9412,-1548,-1876,-2347,-2464], -[0,-1168,-1231,-1252,-9413,-1452,-1654,-2125,-2460], -[0,-7841,-4005,-1405,-9414], +[0,-66,-10793,-23,-142,-69,-563], +[0,-32,-359,-311,-5679,-119,-3,-7,-70], +[0,-68,-823,-66,-10794], [1,3,4334], [0,4335,4336,4337,10], -[0,-1266,-1409,-2347], -[0,-1168,-2319,-1224], -[0,-1409,-7841,-5827,-7644], +[0,-360,-1659,-69], +[0,-32,-85,-791], +[0,-1659,-68,-252,-713], [1,3,4339], [0,4340,4341,4342,10], -[0,-506,-1412,-9415,-1876,-2347], -[0,-1168,-2460], -[0,-3440,-3161,-7841,-1412,-1989,-4043,-4679,-2319,-4873,-4004,-3634,-5119], +[0,-1046,-196,-10795,-142,-69], +[0,-32,-70], +[0,-609,-53,-68,-196,-376,-473,-1153,-85,-573,-76,-61,-401], [1,3,4344], [0,4345,4346,4347,4], -[0,-1445,-1876,-2347,-2350], -[0,-2261,-7423,-2460], -[0,-7841,-1445,-3214,-3217,-3756,-707,-5553,-5874,-7148,-3272,-7440,-7144], +[0,-587,-142,-69,-2000], +[0,-1465,-5303,-70], +[0,-68,-587,-45,-350,-278,-334,-230,-534,-224,-363,-293,-619], [1,3,4349], [0,4350,4351,36,8], -[0,-1548,-1645,-1876,-9345,-2347], -[0,-1168,-1452,-1654,-2198,-2460], +[0,-23,-92,-142,-5663,-69], +[0,-32,-119,-3,-81,-70], [1,3,4353], [0,4354,4355,4356,5], -[0,-823,-831,-1440,-1876,-2347], -[0,-932,-937,-1168,-1654,-2198,-2460], -[0,-7841,-1168,-4055], +[0,-323,-1216,-968,-142,-69], +[0,-1,-782,-32,-3,-81,-70], +[0,-68,-32,-108], [1,3,4358], [0,4359,4360,4361,5], -[0,-1521,-1792,-1876,-2103,-2347,-2464], -[0,-1452,-1654,-2198,-2460], -[0,-7841,-1168,-1521], +[0,-219,-241,-142,-874,-69,-563], +[0,-119,-3,-81,-70], +[0,-68,-32,-219], [1,3,4363], [0,4364,4365,4366,8], -[0,-668,-812,-2460,-2353,-1022,-1550,-2062], -[0,-1654,-2210], -[0,-7841,-1540], +[0,-20,-35,-70,-1469,-257,-1971,-198], +[0,-3,-27], +[0,-68,-1094], [1,3,4368], [0,4369,4370,4371,5], -[0,-9416,-2114,-1022,-1639,-1048,-9417,-9418], -[0,-1654,-2210,-932,-1972,-9419,-965,-966,-958,-968,-943,-974], -[0,-7419,-1168,-4792,-6994,-9420], +[0,-3789,-126,-257,-361,-1409,-3790,-10796], +[0,-3,-27,-1,-181,-10797,-115,-75,-9,-67,-83,-129], +[0,-661,-32,-425,-2180,-5680], [1,3,4373], [0,4374,4375,7,10], -[0,-683,-1266,-1792,-2062,-9421,-2464], -[0,-664,-1654,-2460,-932,-1405,-1254,-9348,-1252,-9422,-9381,-9369], +[0,-540,-360,-241,-198,-10798,-563], +[0,-13,-3,-70,-1,-66,-3032,-3779,-311,-2839,-2837,-5667], [1,3,4377], [0,4378,4379,4380,4], -[0,-7173,-2347,-1266], -[0,-664,-1168,-1654], -[0,-7841,-1644,-7175,-7192,-6454,-3264,-7173], +[0,-2185,-69,-360], +[0,-13,-32,-3], +[0,-68,-228,-620,-765,-575,-31,-2185], [1,3,4382], [0,4383,211,4384,5], -[0,-805,-999,-1236,-1654,-2297], -[0,-7841,-1654,-4004,-3634,-5119,-3161,-4043,-4873,-3440,-1989,-4679,-2319], +[0,-1619,-118,-854,-3,-468], +[0,-68,-3,-76,-61,-401,-53,-473,-573,-609,-376,-1153,-85], [1,3,4386], [0,4387,4388,4389,10], -[0,-9423,-1107,-1876], -[0,-664,-1168,-1654,-2460,-932,-1658,-9072], -[0,-1168,-7841,-9254,-9329], +[0,-3791,-28,-142], +[0,-13,-32,-3,-70,-1,-548,-3759], +[0,-32,-68,-3769,-5658], [1,3,4391], [0,4392,72,4393,5], -[0,-9424,-1631,-9425,-1876,-2347,-2464], -[0,-7841,-475,-5175,-4668,-9425], +[0,-10799,-491,-5681,-142,-69,-563], +[0,-68,-184,-1320,-4779,-5681], [1,3,4395], [0,4396,4397,4398,11], -[0,-714,-1168,-1753], -[0,-710,-1224,-1231,-8419,-1452,-2198], -[0,-1168,-1753,-9426,-3844,-9427,-8442,-2490,-7419,-7841], +[0,-133,-32,-285], +[0,-455,-791,-359,-5501,-119,-81], +[0,-32,-285,-10800,-216,-3792,-3718,-606,-661,-68], [1,3,4400], [0,4401,4402,4403,10], -[0,-1548,-2347,-1022,-479,-1750,-1876,-1737], -[0,-1168,-1654,-2460,-2198,-1237], -[0,-7841,-9258,-1168,-4127,-6863,-9428,-9429,-9262,-9430,-6721], +[0,-23,-69,-257,-452,-1979,-142,-1445], +[0,-32,-3,-70,-81,-1955], +[0,-68,-2831,-32,-1761,-1023,-10801,-10802,-3770,-10803,-2705], [1,3,4405], [0,4406,4407,4408,4], -[0,-7837,-668,-9431], -[0,-519,-1825,-2410,-2460,-2541], -[0,-1168,-3862,-8112,-8113], +[0,-1560,-20,-5682], +[0,-51,-866,-2,-70,-34], +[0,-32,-107,-5429,-1030], [1,3,4410], [0,4411,4412,36,9], -[0,-668,-2347,-1022,-1876], -[0,-2541,-1168,-1654,-2198,-2346,-1405,-756,-994,-1657], +[0,-20,-69,-257,-142], +[0,-34,-32,-3,-81,-469,-66,-55,-409,-589], [1,3,4414], [0,4415,4416,4417,9], -[0,-1022,-1876,-1907,-2464], -[0,-1788,-1654,-2210,-2460,-932,-1889,-1972,-1252], -[0,-7841,-1889,-9300,-775], +[0,-257,-142,-868,-563], +[0,-15,-3,-27,-70,-1,-38,-181,-311], +[0,-68,-38,-2236,-24], [1,3,4419], [0,4420,4421,4422,4], -[0,-9263], -[0,-1654,-2987,-8065,-2460], -[0,-9432,-711,-8978,-812,-9433,-5558,-9399,-9321,-7841,-3264,-9434,-9435,-9353,-3214,-3277], +[0,-2832], +[0,-3,-2024,-1562,-70], +[0,-10804,-308,-3751,-35,-10805,-828,-5674,-2835,-68,-31,-10806,-10807,-3780,-45,-608], [1,3,4424], [0,4425,4426,4427,5], -[0,-994,-1376,-1570], -[0,-507,-932,-9436,-1376,-1654,-1972,-2463], -[0,-7841,-1965], +[0,-409,-195,-1431], +[0,-280,-1,-10808,-195,-3,-181,-887], +[0,-68,-495], [1,3,4429], [0,4430,4431,4432,10], -[0,-1266,-1792,-2054,-2347,-2464], -[0,-1252], -[0,-7841,-2006,-4146,-6408,-8530,-3110,-3261,-6107,-9437,-9438,-7644], +[0,-360,-241,-3097,-69,-563], +[0,-311], +[0,-68,-6,-904,-536,-2794,-277,-746,-1168,-5683,-5684,-713], [1,3,4434], [0,4435,4436,4437,11], -[0,-994,-1750,-2105,-2347,-2460], -[0,-1168,-1262,-1183], -[0,-7841,-8908,-9439], +[0,-409,-1979,-111,-69,-70], +[0,-32,-632,-1953], +[0,-68,-2812,-10809], [1,3,4439], [0,0,4440,36,10], -[0,-1168,-1252,-1597,-1654,-1942,-2198,-2460], +[0,-32,-311,-970,-3,-4,-81,-70], [1,3,4442], [0,4443,4444,4445,9], -[0,-3037,-7837,-2551,-9440,-7622], -[0,-1654,-2460,-2198,-2379,-8255,-2410,-725], -[0,-7841,-8276], +[0,-5,-1560,-525,-10810,-5329], +[0,-3,-70,-81,-33,-3694,-2,-309], +[0,-68,-1189], [1,3,4447], [0,4448,4449,4450,8], -[0,-1236,-9441,-9442,-9443,-9444,-2460,-9445], -[0,-519,-1825,-2541], -[0,-7841,-9446,-9447,-9448,-6131,-7175,-9318,-9319,-3324,-9449,-5142,-6342,-9450], +[0,-854,-10811,-10812,-10813,-3793,-70,-2840], +[0,-51,-866,-34], +[0,-68,-5685,-10814,-5686,-1536,-620,-715,-5655,-443,-10815,-914,-1825,-10816], [1,3,4452], [0,215,4453,4454,4], -[0,-994,-1199,-1245,-1654,-2460], -[0,-7841,-9446,-9448,-9318,-8276,-6342], +[0,-409,-1073,-3030,-3,-70], +[0,-68,-5685,-5686,-715,-1189,-1825], [1,3,4456], [0,4457,4458,4459,5], -[0,-668,-742,-769,-805,-9451,-930,-1022,-1107,-4089,-9452,-1849,-1876,-2103,-2125,-2460], -[0,-1168,-1252,-9445], -[0,-7841,-3754,-2162,-775,-7644,-3277,-5553,-9453,-2231,-9454,-6915,-9455], +[0,-20,-457,-225,-1619,-10817,-408,-257,-28,-4700,-10818,-492,-142,-874,-7,-70], +[0,-32,-311,-2840], +[0,-68,-444,-80,-24,-713,-608,-230,-10819,-130,-5687,-2179,-3794], [1,3,4461], [0,4462,4463,4464,6], -[0,-1863,-2269,-2103,-1876,-1552,-2464], -[0,-1168,-2162,-1654,-2460,-932,-2125,-9008,-1889,-7832,-1743,-518,-1238,-3572,-1252,-958,-934], -[0,-7841,-2162,-1168], +[0,-167,-139,-874,-142,-1096,-563], +[0,-32,-80,-3,-70,-1,-7,-5597,-38,-2759,-1242,-157,-1417,-1498,-311,-9,-185], +[0,-68,-80,-32], [1,3,4466], [0,4467,0,4468,5], -[0,-510,-1266,-1792,-6370,-2246,-2347], -[0,-7841,-9456,-6656,-6999,-6931,-8576,-3844,-3323,-7764,-8901,-8902], +[0,-59,-360,-241,-1170,-2434,-69], +[0,-68,-5688,-128,-660,-2720,-2218,-216,-351,-1182,-1871,-1872], [1,3,4470], [0,4471,4472,4473,5], -[0,-668,-1022,-1570,-1876,-2347,-2387], -[0,-9457,-9392,-3136,-9458,-3037,-7836,-427,-428,-756,-932,-940,-959,-1168,-1415,-1942,-2375,-2379,-2410,-2460], -[0,-7841,-1168,-5550,-3957], +[0,-20,-257,-1431,-142,-69,-44], +[0,-2841,-3786,-29,-5689,-5,-2205,-22,-19,-55,-1,-12,-145,-32,-8,-4,-57,-33,-2,-70], +[0,-68,-32,-267,-316], [1,3,4475], [0,4476,216,4477,10], -[0,-9459,-668,-1022,-1236,-1273,-1948], -[0,-7841,-1044,-6656,-8799,-1573,-9460,-4676,-812,-6826,-6828], +[0,-5690,-20,-257,-854,-1075,-520], +[0,-68,-725,-128,-1350,-258,-3795,-1775,-35,-1548,-2712], [1,3,4479], [0,4480,4481,4482,4], -[0,-9461,-9462,-461,-742,-775,-9463,-8888,-1119,-2231,-9195,-2347], -[0,-620,-932,-937,-1001,-1168,-1187,-1212,-1226,-1228,-9464,-1405,-9381,-9465,-1654,-1792,-2125,-2460], -[0,-7841,-1168,-9466,-9455], +[0,-10820,-10821,-202,-457,-24,-10822,-2805,-324,-130,-5627,-69], +[0,-453,-1,-782,-338,-32,-631,-1074,-1232,-1954,-3796,-66,-2837,-10823,-3,-241,-7,-70], +[0,-68,-32,-3797,-3794], [1,3,4484], [0,4485,216,4486,4], -[0,-23,-1236,-9467], -[0,-7841,-6817,-6694,-6693,-6688,-812,-7336,-4000,-1573,-5545,-3756,-3214,-3217,-3272,-987], +[0,-11,-854,-10824], +[0,-68,-1174,-659,-835,-1338,-35,-3602,-201,-258,-384,-278,-45,-350,-363,-1067], [1,3,4488], [0,4489,213,4490,4], -[0,-9468,-1550,-1876,-2103,-2286,-2347,-2464], -[0,-1168,-2286,-775,-3277,-7841,-9321], +[0,-10825,-1971,-142,-874,-396,-69,-563], +[0,-32,-396,-24,-608,-68,-2835], [1,3,4492], [0,4493,4494,4495,4], -[0,-1876,-2302], -[0,-1107,-1168,-9469,-1654,-9470,-2460,-2541], -[0,-7841,-3167,-3843,-3839,-7715,-9278,-9279,-9471,-3262,-775,-2162,-1521,-2286,-3271,-9339,-3264,-9472,-9473,-9474,-1689], +[0,-142,-2444], +[0,-28,-32,-10826,-3,-10827,-70,-34], +[0,-68,-745,-1008,-265,-621,-1878,-2834,-2842,-116,-24,-80,-219,-396,-1282,-1577,-31,-1354,-5691,-2237,-519], [1,3,4497], [0,4498,4499,4500,5], -[0,-1552,-1876,-2303], -[0,-21,-23,-40,-43,-519,-756,-767,-825,-1788,-1942,-2460,-2541], -[0,-7841,-1644,-3839,-2303], +[0,-1096,-142,-602], +[0,-48,-11,-21,-174,-51,-55,-26,-232,-15,-4,-70,-34], +[0,-68,-228,-265,-602], [1,3,4502], [0,4503,4504,4505,4], -[0,-674,-1022,-1876,-2460], -[0,-1045,-1168,-1217,-1654,-1978,-2187,-2210], -[0,-7841,-3839,-3167,-9278], +[0,-231,-257,-142,-70], +[0,-953,-32,-4194,-3,-160,-393,-27], +[0,-68,-265,-745,-1878], [1,3,4507], [0,4508,4509,4510,9], -[0,-1236,-1548], -[0,-519,-1196,-2460,-2541], -[0,-7841,-1548,-2424,-3110,-7644,-3264,-7650,-9475,-9438], +[0,-854,-23], +[0,-51,-3026,-70,-34], +[0,-68,-23,-250,-277,-713,-31,-926,-5692,-5684], [1,3,4512], [0,4513,4514,4515,4], -[0,-479,-1022,-2346,-2460], -[0,-9392,-3037,-9476,-7837,-8890,-9457,-2125,-1168,-1231,-2410], -[0,-7841,-2410,-3214,-9477], +[0,-452,-257,-469,-70], +[0,-3786,-5,-3798,-1560,-1353,-2841,-7,-32,-359,-2], +[0,-68,-2,-45,-10828], [1,3,4517], [0,4518,4519,4520,9], -[0,-9457,-479,-1022,-1597,-1876,-2346], -[0,-9478,-3037,-9476,-1168,-1187,-1261,-2388,-2410], -[0,-1168,-2410,-3862,-3018,-7841,-7419,-2388,-8170,-7148], +[0,-2841,-452,-257,-970,-142,-469], +[0,-5693,-5,-3798,-32,-631,-1419,-199,-2], +[0,-32,-2,-107,-440,-68,-661,-199,-577,-224], [1,3,4522], [0,4523,4524,4525,4], -[0,-2460,-2347,-2462,-2231,-479,-1876], -[0,-1168,-2125,-9479,-2410,-3037,-1187,-1208,-7837,-1237,-1632,-7836,-7838,-1252,-9480], -[0,-2410,-7841,-9481,-3018,-5058,-7644,-3116,-3185], +[0,-70,-69,-562,-130,-452,-142], +[0,-32,-7,-10829,-2,-5,-631,-790,-1560,-1955,-1103,-2205,-5372,-311,-10830], +[0,-2,-68,-10831,-440,-3349,-713,-607,-2031], [1,3,4527], [0,4528,4529,36,9], -[0,-9416,-1403,-2347,-2416,-9482,-9417,-2155,-1016,-9483,-2464], -[0,-2322,-2460,-932,-1942,-9484,-2341,-1938,-9485,-945,-978,-940,-967,-9486], +[0,-3789,-1657,-69,-112,-10832,-3790,-497,-2343,-10833,-563], +[0,-39,-70,-1,-4,-10834,-1703,-1454,-10835,-1222,-151,-12,-25,-5694], [1,3,4531], [0,4532,122,4533,5], -[0,-1266,-1792,-9487], -[0,-7441,-775,-7841], +[0,-360,-241,-3799], +[0,-2193,-24,-68], [1,3,4535], [0,4536,4537,4538,5], -[0,-1107,-1187,-1876,-2347,-2460], -[0,-994,-2462,-1168,-1224,-1231,-1262,-1210,-1184,-1245,-1226,-1452], -[0,-7841,-9281,-1264], +[0,-28,-631,-142,-69,-70], +[0,-409,-562,-32,-791,-359,-632,-4192,-960,-3030,-1232,-119], +[0,-68,-5646,-4200], [1,3,4540], [0,4541,4542,4543,4], -[0,-1107,-1015,-9488,-1212,-2347,-2462,-1187,-994,-1876], -[0,-1788,-1168,-1654,-2460,-756,-9489,-1231,-1197,-1243,-528,-9490], -[0,-7841,-3264,-9408,-775,-7175,-9048], +[0,-28,-432,-10836,-1074,-69,-562,-631,-409,-142], +[0,-15,-32,-3,-70,-55,-10837,-359,-513,-310,-91,-10838], +[0,-68,-31,-3788,-24,-620,-1575], [1,3,4545], [0,4546,4547,7,6], -[0,-9491,-9492,-9493,-668,-808,-1022,-9416,-9417,-9494,-9495,-9496,-1570,-1646,-4091,-1792,-2103,-2347,-2460], -[0,-641,-756,-994,-1405,-9381,-1452,-9497,-1654,-2125,-2198], +[0,-3800,-5695,-3801,-20,-1620,-257,-3789,-3790,-10839,-10840,-5696,-1431,-88,-3265,-241,-874,-69,-70], +[0,-1612,-55,-409,-66,-2837,-119,-5697,-3,-7,-81], [1,3,4549], [0,4550,4551,4552,8], -[0,-1986,-2346,-2347,-2460,-2462,-2555,-9498], -[0,-1654,-2250,-2330], -[0,-1168,-7841,-9498,-9499,-5408,-8027,-2460,-9500], +[0,-983,-469,-69,-70,-562,-992,-2843], +[0,-3,-97,-603], +[0,-32,-68,-2843,-10841,-915,-1029,-70,-10842], [1,3,4554], [0,4555,4556,4557,4], -[0,-479,-9501,-679,-1022,-1108,-1792,-1850,-1876,-2062,-2218,-2460,-9445], -[0,-756,-1405,-1654,-1657,-1972,-2125,-2198,-2210,-2261,-2269,-2541], -[0,-1168,-2490,-7841], +[0,-452,-5698,-117,-257,-1413,-241,-1249,-142,-198,-288,-70,-2840], +[0,-55,-66,-3,-589,-181,-7,-81,-27,-1465,-139,-34], +[0,-32,-606,-68], [1,3,4559], [0,4560,0,4561,4], -[0,-1626,-2460,-2346,-2501,-1266], -[0,-7841,-2501], +[0,-1102,-70,-469,-18,-360], +[0,-68,-18], [1,3,4563], [0,4564,4565,4566,8], -[0,-729,-9229,-1266,-1402,-1750,-1805,-9502,-2186,-2187,-2347,-2353,-2490], -[0,-1654,-2293], -[0,-7841,-9343,-729,-1540], +[0,-218,-2234,-360,-1084,-1979,-152,-5699,-1122,-393,-69,-1469,-606], +[0,-3,-123], +[0,-68,-5661,-218,-1094], [1,3,4568], [0,4569,4570,4571,5], -[0,-1100,-1236,-2460,-9498], -[0,-519,-7342,-9431,-1168,-1825,-9503,-9445,-2541], -[0,-7841,-5408,-5409,-501,-6454,-724,-6656], +[0,-487,-854,-70,-2843], +[0,-51,-5285,-5682,-32,-866,-10843,-2840,-34], +[0,-68,-915,-1529,-842,-575,-367,-128], [1,3,4573], [0,4574,4575,4576,5], -[0,-9271,-510,-2460,-2347,-1645,-2424,-9270,-9269], -[0,-1168,-1654,-932,-2125,-9273,-9504,-1195,-1632,-2461,-1215,-9505,-9274,-9275,-9272], -[0,-7841,-9270,-9278,-9279], +[0,-5641,-59,-70,-69,-92,-250,-2833,-5640], +[0,-32,-3,-1,-7,-5643,-10844,-4190,-1103,-1708,-4193,-10845,-5644,-5645,-5642], +[0,-68,-2833,-1878,-2834], [1,3,4578], [0,4579,4580,4581,11], -[0,-883], -[0,-519,-1825,-2384,-2541], -[0,-3994,-3673,-9506,-6826,-9507,-8799,-2265,-640], +[0,-1397], +[0,-51,-866,-82,-34], +[0,-306,-611,-3802,-1548,-10846,-1350,-168,-294], [1,3,4583], [0,4584,4585,4586,4], -[0,-9508,-9509,-9510,-9511,-2093,-9512,-9513,-2095,-4655,-4994,-9514,-9515,-9516,-9517,-9518,-9519,-9520,-9521,-9522, --9523,-9524,-9525,-9526,-9527,-9528,-9529,-9530,-5707,-9531,-9532,-9533,-9534,-9535,-9536,-9537,-6368,-2297,-9538,-9539], -[0,-350,-4062,-351,-3266,-827,-9540,-2127,-2250,-2322,-2331], -[0,-1599,-856,-3671,-4328,-5887,-7440,-9541,-8170,-7148,-8169,-1274,-2093,-2427], +[0,-5700,-10847,-10848,-10849,-274,-10850,-10851,-522,-1772,-2596,-3803,-3804,-3805,-3806,-3807,-3808,-3809,-10852,-5701, +-10853,-5702,-10854,-10855,-3810,-3811,-10856,-10857,-3428,-10858,-3812,-3813,-3814,-3815,-3816,-5703,-5108,-468,-10859, +-10860], +[0,-77,-238,-62,-206,-1392,-10861,-14,-97,-39,-379], +[0,-99,-42,-399,-1764,-830,-293,-10862,-577,-224,-1186,-1420,-274,-135], [1,3,4588], [0,0,4589,4590,10], -[0,-9542,-9543,-1127,-7887,-1136,-1137,-1144,-9544,-1148,-1149,-1153,-9545,-9546], -[0,-2363,-9547], +[0,-10863,-10864,-54,-3663,-629,-584,-175,-2844,-341,-304,-1231,-5704,-10865], +[0,-418,-5705], [1,3,4592], [0,4593,4594,4595,8], -[0,-1646,-9548,-2231,-2525,-2416], -[0,-3983,-521,-534,-567,-589,-664,-9549,-726,-838,-879,-6897,-6867,-932,-940,-952,-953,-1077,-1127,-5974,-1132,-1134, --1136,-1137,-1138,-9550,-1148,-1149,-1162,-7848,-1344,-6785,-1534,-1654,-1661,-1689,-1788,-1942,-2177,-2210,-2410,-2424, --2501,-2505], -[0,-1276,-1689,-3110,-3264], +[0,-88,-2238,-130,-991,-112], +[0,-366,-936,-96,-282,-110,-13,-10866,-284,-1393,-1063,-5196,-5193,-1,-12,-847,-1633,-41,-54,-3458,-164,-240,-629,-584, +-511,-5706,-341,-304,-789,-3660,-10,-5176,-17,-3,-1439,-519,-15,-4,-16,-27,-2,-250,-18,-173], +[0,-247,-519,-277,-31], [1,3,4597], [0,4598,4599,155,5], -[0,-1435,-9551,-619,-6508,-1309,-9552,-9553,-9554,-9555,-5400,-9556,-9557,-9558,-9559,-9560,-9561,-9562,-9563], -[0,-1510,-707,-1367,-9564,-9565,-1276], +[0,-730,-5707,-1927,-3521,-1651,-5708,-10867,-10868,-10869,-4915,-3817,-10870,-10871,-10872,-10873,-10874,-10875,-10876], +[0,-1091,-334,-4217,-5709,-5710,-247], [1,3,4601], [0,4602,4603,4604,6], -[0,-6594,-3037,-4204,-3223,-6587,-2531], -[0,-3665,-7197,-2410,-2469,-4375], -[0,-1449,-5092,-4865,-3586,-9566,-3578,-3098,-3264,-5388,-5387], +[0,-3533,-5,-475,-472,-2698,-205], +[0,-1005,-5253,-2,-30,-3301], +[0,-78,-266,-94,-1500,-3818,-113,-127,-31,-1158,-653], [1,3,4606], [0,0,14,4607,4], -[0,-8047,-7440,-6659,-6543,-5573,-9567,-687,-3958,-4378,-1958,-502,-4377,-6748,-7303,-9568,-1646,-1813], +[0,-1861,-293,-710,-3529,-655,-3819,-37,-299,-1307,-286,-774,-613,-1173,-1848,-5711,-88,-551], [1,3,4609], [0,0,4610,4611,4], -[0,-2832,-5834,-8084,-9569,-8096,-516,-753,-5835,-932,-9570,-1365,-1777,-1788,-2156,-2322], -[0,-6981,-8619,-9571,-9572,-3582,-5269,-753,-6948], +[0,-314,-244,-1563,-5712,-714,-269,-158,-533,-1,-10877,-212,-273,-15,-189,-39], +[0,-5222,-2796,-2845,-5713,-567,-501,-158,-924], [1,3,4613], [0,0,4614,7,5], -[0,-1452,-1453,-1548,-2322], +[0,-119,-969,-23,-39], [1,3,4616], [0,4617,4618,4619,10], -[0,-9573], -[0,-2832,-5834,-8084,-9574,-9575,-8096,-515,-516,-932,-993,-1365,-1659,-1777,-1788,-2156,-2322], -[0,-8047,-9576,-9577,-9578,-9579,-8047,-7153,-9580,-3214,-3217], +[0,-5714], +[0,-314,-244,-1563,-10878,-10879,-714,-720,-269,-1,-1069,-212,-1672,-273,-15,-189,-39], +[0,-1861,-10880,-5715,-10881,-10882,-1861,-1179,-10883,-45,-350], [1,3,4621], [0,4622,4623,4624,8], -[0,-5334,-4231,-9581,-9582,-2768,-2771,-1619,-1839,-9583,-2429,-5358,-9584,-9585], -[0,-3037,-9586,-652,-1290,-1294,-1618,-1942,-9587,-2094,-2100,-2399,-2410,-7669,-2541], -[0,-9588,-9589,-3264,-9590,-3590,-2444,-1838,-9591], +[0,-251,-701,-1578,-5716,-4413,-3147,-1101,-593,-2239,-348,-502,-5717,-2240], +[0,-5,-1880,-43,-1421,-1076,-862,-4,-10884,-146,-261,-236,-2,-1559,-34], +[0,-622,-448,-31,-538,-208,-136,-166,-3820], [1,3,4626], [0,4627,4628,4629,4], -[0,-5334,-9581,-9583], -[0,-3037,-9586,-9592,-652,-823,-2586,-1290,-1294,-1318,-9593,-1942,-2094,-2100,-2399,-2410,-7669,-2429,-2541], -[0,-6688,-9588,-9589,-3264,-9594,-7723,-3590,-2444,-9590,-2544], +[0,-251,-1578,-2239], +[0,-5,-1880,-10885,-43,-323,-1276,-1421,-1076,-3040,-10886,-4,-146,-261,-236,-2,-1559,-348,-34], +[0,-1338,-622,-448,-31,-1579,-1028,-208,-136,-538,-1275], [1,3,4631], [0,4632,4633,4634,9], -[0,-5334,-4231,-9595,-2742,-5981,-9596,-9597,-4263,-1292,-2769,-2788,-1968,-2235,-2429,-9585], -[0,-3037,-652,-1294,-1942,-2094,-2100,-2399,-2410,-7669,-2541], -[0,-775,-9588,-9589,-3264,-5572,-3581,-5101,-9598,-3585,-6750,-9590,-3590,-2444], +[0,-251,-701,-10887,-1482,-3460,-1033,-10888,-4731,-726,-2022,-2468,-1455,-1124,-348,-2240], +[0,-5,-43,-1076,-4,-146,-261,-236,-2,-1559,-34], +[0,-24,-622,-448,-31,-532,-2514,-702,-10889,-1499,-1546,-538,-208,-136], [1,3,4636], [0,4637,4638,4639,5], -[0,-426,-8316,-5334,-2742,-9596,-9599,-9600,-2769,-9601,-9602,-9603,-1968,-2235,-2276,-9583,-9585], -[0,-3037,-6426,-652,-9604,-5342,-989,-1294,-1618,-5204,-1619,-5205,-1942,-2094,-2100,-2399,-2410,-2429,-2541], -[0,-5888,-3217,-5210,-9588,-9589,-3264,-3214,-4146,-4147,-2083,-6408,-9590,-3590,-2444], +[0,-320,-5472,-251,-1482,-1033,-10890,-5718,-2022,-5719,-1881,-3821,-1455,-1124,-1998,-2239,-2240], +[0,-5,-1827,-43,-5720,-1805,-786,-1076,-862,-2611,-1101,-3363,-4,-146,-261,-236,-2,-348,-34], +[0,-2651,-350,-2614,-622,-448,-31,-45,-904,-2075,-377,-536,-538,-208,-136], [1,3,4641], [0,4642,217,4643,6], -[0,-5334,-4231,-9605,-2742,-2769,-2771,-1619,-1968,-2235,-2268,-9585], -[0,-9588,-9589,-3264,-6233,-6231,-9606,-9590,-3590,-2444], +[0,-251,-701,-10891,-1482,-2022,-3147,-1101,-1455,-1124,-3109,-2240], +[0,-622,-448,-31,-919,-447,-10892,-538,-208,-136], [1,3,4645], [0,4646,4647,4648,4], -[0,-426,-5334,-4231,-2742,-9596,-9600,-2769,-9601,-9602,-9603,-1968,-2235,-2276,-9583,-6648], -[0,-3037,-3040,-3052,-652,-928,-5343,-1294,-1942,-2006,-2019,-2094,-2100,-9607,-2399,-2410,-2541], -[0,-9588,-9589,-3264,-1940,-2006,-9608,-2299,-9590,-3590,-2444,-2476], +[0,-320,-251,-701,-1482,-1033,-5718,-2022,-5719,-1881,-3821,-1455,-1124,-1998,-2239,-2700], +[0,-5,-47,-89,-43,-87,-2625,-1076,-4,-6,-36,-146,-261,-10893,-236,-2,-34], +[0,-622,-448,-31,-494,-6,-2846,-221,-538,-208,-136,-73], [1,3,4650], [0,87,0,4651,4], -[0,-5398,-9589,-9588,-3264,-6233,-2265,-6231,-5554,-9590,-2444,-3590], +[0,-1528,-448,-622,-31,-919,-168,-447,-193,-538,-136,-208], [1,3,4653], [0,4654,217,4655,4], -[0,-5334,-4231,-2766,-9609], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-2265,-5398,-5554,-4308], +[0,-251,-701,-1483,-10894], +[0,-538,-448,-622,-136,-208,-31,-168,-1528,-193,-3297], [1,3,4657], [0,4658,4659,4660,4], -[0,-5334,-2742,-2767,-1968,-2235], -[0,-3037,-6426,-652,-9604,-9610,-5342,-1942,-2094,-2100,-9611,-2384,-2399,-2410,-2541], -[0,-5092,-6311,-9588,-9589,-3264,-9612,-2083,-9590,-3590,-2444,-9613,-9614], +[0,-251,-1482,-4412,-1455,-1124], +[0,-5,-1827,-43,-5720,-10895,-1805,-4,-146,-261,-10896,-82,-236,-2,-34], +[0,-266,-5100,-622,-448,-31,-5721,-377,-538,-208,-136,-2241,-1580], [1,3,4662], [0,4663,4664,7,8], -[0,-2487,-1276], -[0,-1788,-1654,-932,-2125,-2293,-963], +[0,-741,-247], +[0,-15,-3,-1,-7,-123,-211], [1,3,4666], [0,0,4667,4668,5], -[0,-6774,-1127,-1132,-1162,-6114,-1405,-1451,-1548,-6186,-1991,-2081,-9615,-2111,-9616], -[0,-2265,-3223,-8034,-3264,-6422,-6420,-4112], +[0,-2172,-54,-164,-789,-2149,-66,-1087,-23,-2669,-1457,-984,-10897,-416,-10898], +[0,-168,-472,-1184,-31,-833,-1539,-474], [1,3,4670], [0,4671,4672,7,4], -[0,-1696], -[0,-2195,-2319], +[0,-801], +[0,-276,-85], [1,3,4674], [0,0,0,4675,4], -[0,-1004,-7107,-5146,-3445,-9617,-9618,-9619,-9620,-9621,-9622,-9623,-9624,-9625,-9626,-9627,-9628,-9629,-9630], +[0,-40,-711,-4881,-46,-10899,-10900,-10901,-10902,-10903,-10904,-10905,-10906,-10907,-10908,-10909,-10910,-10911,-10912], [1,3,4677], [0,0,4678,7,9], -[0,-2303,-2125,-1942,-656,-2699,-23,-9631,-3408], +[0,-602,-7,-4,-430,-2021,-11,-5722,-1284], [1,3,4680], [0,0,4681,7,11], -[0,-43,-40,-6056,-6035,-527,-21,-23,-528,-533,-856,-932,-956,-958,-959,-1415,-1417], +[0,-174,-21,-1167,-3473,-162,-48,-11,-91,-86,-42,-1,-485,-9,-145,-8,-489], [1,3,4683], [0,4684,4685,4686,5], -[0,-9632,-615,-9633,-9634,-9635,-9636,-9637,-9638,-9639,-9640,-1442,-9641,-1639,-9642,-1666,-1667,-1783,-1863,-6467,-2269, --2350,-9643,-9644], -[0,-9645,-5767,-3035,-4035,-3660,-4036,-3621,-3037,-9144,-4372,-9646,-652,-664,-674,-3542,-932,-9647,-9648,-1344,-1534, --1654,-2210,-2379,-2410], -[0,-3258,-3260,-7643,-3161,-1302], +[0,-2847,-114,-10913,-10914,-10915,-10916,-10917,-10918,-10919,-10920,-101,-5723,-361,-5724,-233,-863,-976,-167,-1541, +-139,-2000,-10921,-10922], +[0,-10923,-3439,-109,-898,-421,-651,-71,-5,-5618,-279,-10924,-43,-13,-231,-1746,-1,-10925,-10926,-10,-17,-3,-27,-33,-2], +[0,-892,-2496,-2199,-53,-4208], [1,3,4688], [0,4689,4690,7,8], -[0,-9649], -[0,-615,-633,-634,-725,-932,-1127,-1130,-1131,-1146,-1148,-1149,-1152,-9650,-1159,-1276,-1754,-2148,-9651,-2199,-2210, --7035,-9652,-2416], +[0,-3822], +[0,-114,-60,-2322,-309,-1,-54,-957,-546,-358,-341,-304,-512,-5725,-630,-247,-679,-1261,-10927,-3104,-27,-3570,-10928,-112], [1,3,4692], [0,0,4693,4694,4], -[0,-775,-824,-1107,-8318,-1449,-1654,-932,-1548,-2127,-2198,-2334,-683,-693,-719,-1276,-2410,-1339,-9653,-3621,-7694, --9654,-5758,-9655,-9656,-966,-4062,-9657,-958,-968,-943,-350,-428,-351,-427], -[0,-4131,-4132], +[0,-24,-150,-28,-3706,-78,-3,-1,-23,-14,-81,-177,-540,-940,-58,-247,-2,-413,-10929,-71,-5344,-10930,-1329,-10931,-10932, +-75,-238,-10933,-9,-67,-83,-77,-19,-62,-22], +[0,-2074,-400], [1,3,4696], [0,218,0,7,4], [1,3,4698], [0,39,0,4699,5], -[0,-1306,-8938], +[0,-1422,-5581], [1,3,4701], [0,0,219,4702,4], -[0,-8113], +[0,-1030], [1,3,4704], [0,4705,4706,4707,5], -[0,-1758,-1650], -[0,-2416,-1449,-9658,-2125], -[0,-1689,-3110], +[0,-463,-72], +[0,-112,-78,-10934,-7], +[0,-519,-277], [1,3,4709], [0,4710,4711,41,10], -[0,-2029], -[0,-23,-26,-40,-41,-43,-664,-756,-761,-932,-1654,-1788,-1939,-1967,-2006,-2125,-2127,-2128,-2131,-2137,-2140], +[0,-437], +[0,-11,-209,-21,-132,-174,-13,-55,-1936,-1,-3,-15,-234,-121,-6,-7,-14,-275,-466,-347,-229], [1,3,4713], [0,4714,4715,7,8], -[0,-668,-2177,-1077,-719,-9659,-1982,-2234], -[0,-1415,-932,-2125,-1753,-2375,-2379,-2402,-2410,-3136,-3037,-3198,-3199,-3048,-959,-958,-9660,-428,-9661,-427], +[0,-20,-16,-41,-58,-10935,-1456,-147], +[0,-8,-1,-7,-285,-57,-33,-124,-2,-29,-5,-169,-140,-191,-145,-9,-2848,-19,-10936,-22], [1,3,4717], [0,0,4718,4719,5], -[0,-9662,-4835,-3036,-4647,-3037,-8200,-3664,-502,-9663,-9664,-928,-932,-1107,-1449,-1683,-1763,-9665,-8436,-1942,-2910, --2410,-2426,-9666,-2469,-9667,-2531,-2564], -[0,-1313,-3578,-3994,-1334,-9668,-3161,-3122,-9669,-9670,-9671,-9672,-9060,-7314,-5819,-3967], +[0,-10937,-1313,-471,-614,-5,-1188,-105,-774,-10938,-10939,-87,-1,-28,-78,-800,-415,-5726,-1570,-4,-470,-2,-289,-10940, +-30,-5727,-205,-263], +[0,-855,-113,-306,-103,-1194,-53,-442,-5728,-5729,-10941,-10942,-5607,-3596,-2136,-353], [1,3,4721], [0,4722,29,4723,6], -[0,-1582], -[0,-5889,-1105,-7660,-7661], +[0,-434], +[0,-402,-545,-2200,-1558], [1,3,4725], [0,4726,86,4727,6], -[0,-725,-1650,-2125,-2177,-2433,-2518,-9673], -[0,-9674,-9675,-9676,-9677,-1764], +[0,-309,-72,-7,-16,-604,-222,-10943], +[0,-10944,-10945,-10946,-10947,-159], [1,3,4729], [0,4730,4731,4732,6], -[0,-6585,-1333], -[0,-86,-3307,-3615,-190,-4066,-350,-351,-3266,-3267,-9678,-4862,-9679,-3037,-5286,-2970,-3664,-932,-967,-4814,-977,-1110, --1323,-1344,-7317,-1449,-1534,-1772,-1874,-1942,-2910,-2127,-2214,-2379,-2410,-2411,-2469], -[0,-1317,-3264,-5092,-3215,-1333,-9680], +[0,-1833,-488], +[0,-49,-63,-498,-50,-530,-77,-62,-206,-330,-3823,-4819,-10948,-5,-1156,-1486,-105,-1,-25,-911,-1065,-56,-1424,-10,-3597, +-78,-17,-345,-391,-4,-470,-14,-328,-33,-2,-84,-30], +[0,-2354,-31,-266,-74,-488,-3824], [1,3,4734], [0,0,4735,4736,9], -[0,-3037,-652,-2586,-1288,-1292,-1942,-2094,-2100,-2399,-2410,-2426,-2541], -[0,-9681,-9682,-3264,-6557,-7153,-6818,-5387,-5388], +[0,-5,-43,-1276,-1650,-726,-4,-146,-261,-236,-2,-289,-34], +[0,-1882,-1581,-31,-921,-1179,-1339,-653,-1158], [1,3,4738], [0,4739,4740,4741,4], -[0,-9683], -[0,-7196,-932,-1110], -[0,-5835,-3264], +[0,-5730], +[0,-3584,-1,-56], +[0,-533,-31], [1,3,4743], [0,0,4744,4745,5], -[0,-86,-3307,-3268,-9684,-3136,-3037,-589,-3223,-932,-940,-958,-9685,-1297,-1344,-1942,-2251,-2375,-2386,-2392,-2410, --2411], -[0,-3264,-9686,-9687,-9688,-3223,-9689,-9690], +[0,-49,-63,-747,-5731,-29,-5,-110,-472,-1,-12,-9,-10949,-1077,-10,-4,-134,-57,-561,-155,-2,-84], +[0,-31,-10950,-10951,-10952,-472,-10953,-10954], [1,3,4747], [0,0,4748,4749,11], -[0,-9691,-652,-756,-2127,-2415], -[0,-3264,-5559,-6422,-9692,-6420,-3223], +[0,-10955,-43,-55,-14,-1269], +[0,-31,-503,-833,-3825,-1539,-472], [1,3,4751], [0,4752,4753,4754,5], -[0,-1839,-1324], -[0,-824,-1415,-1344,-1623,-774,-932,-825,-2501,-920,-1936,-1942,-767,-21,-533,-1276,-23,-1534,-1771,-9693,-86,-2251,-9694, --40,-1331,-958,-940,-3307,-7166], -[0,-2501,-3264,-5932], +[0,-593,-3042], +[0,-150,-8,-10,-259,-407,-1,-232,-18,-1219,-1987,-4,-26,-48,-86,-247,-11,-17,-65,-10956,-49,-134,-10957,-21,-342,-9,-12, +-63,-1025], +[0,-18,-31,-831], [1,3,4756], [0,4757,4758,4759,5], -[0,-6512,-683,-719,-1297,-6560,-9695,-2416], -[0,-1127,-1130,-1148,-1152,-1860,-1989], -[0,-687,-6454,-9696,-775,-3264,-9383,-3214,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838,-3215,-9698,-9216], +[0,-2694,-540,-58,-1077,-3530,-3826,-112], +[0,-54,-957,-341,-512,-640,-376], +[0,-37,-575,-2849,-24,-31,-3785,-45,-1876,-1333,-834,-228,-620,-1844,-2760,-3827,-166,-74,-3828,-1031], [1,3,4761], [0,4762,4763,4764,4], -[0,-6512,-683,-719,-3223,-6560,-9695,-2334], -[0,-86,-5121,-350,-4062,-351,-3266,-9699,-9700,-932,-943,-1344,-1392,-1415,-1419,-1534,-2127,-9701,-2466], -[0,-687,-6454,-9696,-775,-3264,-9383,-3214,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838,-3215,-2334,-9698,-9216], +[0,-2694,-540,-58,-472,-3530,-3826,-177], +[0,-49,-1318,-77,-238,-62,-206,-10958,-5732,-1,-83,-10,-547,-8,-176,-17,-14,-2850,-104], +[0,-37,-575,-2849,-24,-31,-3785,-45,-1876,-1333,-834,-228,-620,-1844,-2760,-3827,-166,-74,-177,-3828,-1031], [1,3,4766], [0,4767,4768,4769,9], -[0,-1860], -[0,-2322,-2250,-2320,-1860], -[0,-3264,-6528,-1858,-1859,-3967], +[0,-640], +[0,-39,-97,-560,-640], +[0,-31,-1171,-3078,-867,-353], [1,3,4771], [0,4772,4773,4774,4], -[0,-6585,-1317,-2039,-2276], -[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3267,-9678,-3268,-3037,-3040,-3052,-5286,-2970,-3664,-589,-932,-967,-4814, --977,-1110,-1344,-1534,-1874,-1940,-2910,-2006,-2019,-2127,-2214,-2379,-2410,-2411,-2469], -[0,-1326,-3264,-2006,-3215,-5092], +[0,-1833,-2354,-3094,-1998], +[0,-49,-63,-498,-290,-50,-77,-62,-206,-330,-3823,-747,-5,-47,-89,-1156,-1486,-105,-110,-1,-25,-911,-1065,-56,-10,-17,-391, +-494,-470,-6,-36,-14,-328,-33,-2,-84,-30], +[0,-3043,-31,-6,-74,-266], [1,3,4776], [0,0,4777,4778,5], -[0,-519,-674,-2541], -[0,-3264,-5177,-9702,-9566,-4108,-5388,-5387,-9703,-9704], +[0,-51,-231,-34], +[0,-31,-615,-3829,-3818,-1301,-1158,-653,-3830,-10959], [1,3,4780], [0,0,4781,4782,10], -[0,-1344,-1392,-1471,-2387,-932,-2125,-2127,-1942,-756,-1870,-2410,-1771,-1413,-1952,-1481,-9705,-1476,-9706,-8382,-7818, --1491,-9707,-9708,-1475,-9709,-3469,-9710], -[0,-9711,-9712,-659,-3264,-5092,-6527,-9472,-3839], +[0,-10,-547,-79,-44,-1,-7,-14,-4,-55,-978,-2,-65,-373,-435,-389,-1195,-588,-10960,-5485,-5369,-676,-10961,-10962,-138, +-10963,-2507,-10964], +[0,-2242,-5733,-322,-31,-266,-292,-1354,-265], [1,3,4784], [0,4785,0,4786,5], -[0,-9713,-823,-861,-1333,-9714], -[0,-3264,-3966,-5554,-9715,-9716,-6473], +[0,-10965,-323,-3000,-488,-10966], +[0,-31,-144,-193,-5734,-3831,-1542], [1,3,4788], [0,4789,0,4790,5], -[0,-9717,-9718,-469,-1107,-1496,-1646,-1966,-2177], -[0,-3264,-7148,-2451,-1330], +[0,-10967,-10968,-183,-28,-490,-88,-392,-16], +[0,-31,-224,-439,-3045], [1,3,4792], [0,4793,4794,4795,9], -[0,-9719,-1324,-1548,-1949,-2321], -[0,-86,-3307,-3037,-767,-774,-778,-796,-9071,-932,-7466,-1322,-1344,-1415,-1534,-1643,-1771,-1942,-1974,-9720,-2000,-2125, --2251,-2275,-2410,-2501,-2503,-9721], -[0,-2501,-3862,-3264,-1331], +[0,-10969,-3042,-23,-4282,-1266], +[0,-49,-63,-5,-26,-407,-141,-295,-3758,-1,-5312,-1423,-10,-8,-17,-374,-65,-4,-642,-5735,-685,-7,-134,-154,-2,-18,-93, +-10970], +[0,-18,-107,-31,-342], [1,3,4797], [0,4798,4799,4800,4], -[0,-9722,-719,-755,-1936], -[0,-190,-3748,-7155,-3621,-3037,-9723,-652,-784,-932,-6835,-958,-8339,-9724,-1001,-1110,-1654,-1889,-1979,-9695,-2125, --9725,-2303,-2334,-2410,-2411,-9487], -[0,-1936,-9726,-3264,-9727,-6684], +[0,-10971,-58,-386,-1987], +[0,-50,-315,-2183,-71,-5,-2851,-43,-369,-1,-3556,-9,-1866,-2852,-338,-56,-3,-38,-4284,-3826,-7,-10972,-602,-177,-2,-84, +-3799], +[0,-1987,-10973,-31,-5736,-834], [1,3,4802], [0,4803,4804,4805,5], -[0,-7713,-6585,-6584,-3223], -[0,-190,-3037,-3664,-932,-940,-965,-978,-1110,-1942,-2386,-2410,-2411,-2469], -[0,-3264,-3215,-8027,-6597,-5092,-9728,-3484,-9297], +[0,-5349,-1833,-3532,-472], +[0,-50,-5,-105,-1,-12,-115,-151,-56,-4,-561,-2,-84,-30], +[0,-31,-74,-1029,-537,-266,-10974,-3207,-5650], [1,3,4807], [0,4808,129,4809,6], -[0,-828,-1370,-8441,-2255,-9729], -[0,-1334,-6324], +[0,-1062,-515,-5509,-1263,-10975], +[0,-103,-658], [1,3,4811], [0,4812,4813,7,10], -[0,-996,-9730,-1063], -[0,-2531,-1788,-9731,-510,-1654,-2177,-1003,-2228,-725,-516,-2229], +[0,-951,-5737,-1412], +[0,-205,-15,-10976,-59,-3,-16,-411,-810,-309,-269,-1262], [1,3,4815], [0,4816,4817,4818,5], -[0,-9732,-812], -[0,-3198,-3136,-3037,-511,-1415,-2375,-2410,-1971,-9056], -[0,-1334,-1971,-8484,-9733], +[0,-5738,-35], +[0,-169,-29,-5,-1377,-8,-57,-2,-596,-2228], +[0,-103,-596,-3722,-1883], [1,3,4820], [0,4821,4822,4823,4], -[0,-4623,-812,-1336,-1393,-1396,-1639], -[0,-86,-3307,-190,-3198,-3330,-3617,-9734,-3136,-4036,-3037,-4203,-4204,-617,-932,-940,-967,-1004,-1098,-1110,-1344,-1415, --1534,-9735,-1805,-4916,-8436,-1942,-2293,-2375,-2410,-2411,-2531], -[0,-7302,-1971,-5401,-1334,-1342,-729,-1004,-1030,-3548,-9736,-632,-1168,-1137,-2512,-2531,-754], +[0,-3303,-35,-586,-1081,-1083,-361], +[0,-49,-63,-50,-169,-364,-264,-10977,-29,-651,-5,-1015,-475,-163,-1,-12,-25,-40,-486,-56,-10,-8,-17,-10978,-152,-1316, +-1570,-4,-123,-57,-2,-84,-205], +[0,-5283,-596,-356,-103,-388,-218,-40,-1071,-2511,-1884,-938,-32,-584,-889,-205,-368], [1,3,4825], [0,4826,4827,4828,4], -[0,-1297,-1640,-668,-9737,-9738,-1810,-1646,-2436,-579,-1336,-1888,-9739,-1319], -[0,-9740,-2319,-932,-1004,-2105,-9741], -[0,-687,-3957,-5142,-1334,-1342,-1339,-9742,-3844], +[0,-1077,-260,-20,-10979,-10980,-592,-88,-2003,-1381,-586,-641,-10981,-3041], +[0,-5739,-85,-1,-40,-111,-10982], +[0,-37,-316,-914,-103,-388,-413,-10983,-216], [1,3,4830], [0,0,4831,4832,4], -[0,-2391,-1344,-1654,-932,-2198,-2379,-1942,-190,-721,-2410,-3037,-1534,-7820,-3621,-9743,-86,-2251,-9744,-2411,-964,-940, --967,-3307], -[0,-1334,-729,-3100,-9745,-1004], +[0,-172,-10,-3,-1,-81,-33,-4,-50,-1056,-2,-5,-17,-2204,-71,-10984,-49,-134,-10985,-84,-256,-12,-25,-63], +[0,-103,-218,-52,-2853,-40], [1,3,4834], [0,0,4835,4836,8], -[0,-3048,-3136,-9746,-427,-428,-932,-935,-958,-1077,-1415,-1605,-2375,-2378,-2379,-2410], -[0,-3966,-1334,-7827,-9747,-9748,-9745,-5563], +[0,-191,-29,-10986,-22,-19,-1,-949,-9,-41,-8,-1098,-57,-814,-33,-2], +[0,-144,-103,-3658,-10987,-10988,-2853,-2133], [1,3,4838], [0,0,0,4839,4], -[0,-1342,-9749], +[0,-388,-10989], [1,3,4841], [0,4842,4843,4844,4], -[0,-812,-9732], -[0,-1415,-1971,-2375,-9056,-2410,-3136,-3037,-512,-3198,-511,-9750], -[0,-1342,-1971,-8484,-9733], +[0,-35,-5738], +[0,-8,-596,-57,-2228,-2,-29,-5,-1378,-169,-1377,-5740], +[0,-388,-596,-3722,-1883], [1,3,4846], [0,0,0,4847,10], -[0,-5889,-3322,-1939], +[0,-402,-696,-234], [1,3,4849], [0,4850,31,4851,11], -[0,-6829,-6372,-2347], -[0,-5827,-1334,-3443,-2105,-9052,-9751,-9752,-6693,-9753,-9024], +[0,-2713,-2682,-69], +[0,-252,-103,-2506,-111,-1874,-5741,-10990,-835,-3832,-5601], [1,3,4853], [0,0,4854,4855,5], -[0,-3470,-3842,-3471,-741,-932,-940,-9754,-1942,-2127,-2174,-2322], -[0,-9755,-5553,-775,-656], +[0,-297,-2055,-298,-1212,-1,-12,-10991,-4,-14,-122,-39], +[0,-10992,-230,-24,-430], [1,3,4857], [0,0,84,4858,5], -[0,-9756,-9757,-9758,-2424,-9759,-9760,-9761,-9762,-1878,-9763,-9764,-9765,-9766,-9767], +[0,-3833,-3834,-5742,-250,-3835,-5743,-5744,-10993,-554,-3836,-2854,-5745,-5746,-5747], [1,3,4860], [0,4861,4862,4863,4], -[0,-9768,-812,-9769,-9770,-9771,-1689], -[0,-510,-744,-932,-940,-943,-958,-966,-967,-968,-974,-1004,-1344,-1534,-1654,-1788,-1942,-2198,-2210,-2548,-2293], -[0,-3110,-1348,-9772], +[0,-10994,-35,-10995,-10996,-10997,-519], +[0,-59,-581,-1,-12,-83,-9,-75,-25,-67,-129,-40,-10,-17,-3,-15,-4,-81,-27,-262,-123], +[0,-277,-1078,-2243], [1,3,4865], [0,39,4866,4867,5], -[0,-9773,-23,-3395,-3204,-38,-39,-40,-41,-43,-3326,-350,-351,-3266,-3037,-427,-428,-3664,-571,-756,-757,-932,-934,-940, --948,-958,-9774,-1344,-9775,-9776,-9777,-9778,-9779,-1534,-1942,-2125,-2127,-2210,-2410,-2469], -[0,-1349,-9780,-1348,-9781,-9782,-9772,-9783,-9784], +[0,-10998,-11,-3199,-398,-170,-449,-21,-132,-174,-207,-77,-62,-206,-5,-22,-19,-105,-777,-55,-582,-1,-185,-12,-246,-9, +-5748,-10,-5749,-10999,-11000,-11001,-11002,-17,-4,-7,-14,-27,-2,-30], +[0,-1079,-1885,-1078,-3837,-2855,-2243,-3838,-11003], [1,3,4869], [0,0,4870,4871,4], -[0,-190,-3267,-3470,-3471,-427,-428,-932,-940,-967,-1110,-1942,-2127,-2132,-2174,-2410], -[0,-1349,-9785,-3445,-3862], +[0,-50,-330,-297,-298,-22,-19,-1,-12,-25,-56,-4,-14,-417,-122,-2], +[0,-1079,-11004,-46,-107], [1,3,4873], [0,4874,4875,4876,4], -[0,-9786], -[0,-1788,-510,-9787,-9788,-1654,-9789,-932,-2177,-2105,-9790,-2410,-3037,-1002,-2884,-2832,-3748,-5029], -[0,-9788,-5845,-9791,-9792], +[0,-3839], +[0,-15,-59,-11005,-2856,-3,-5750,-1,-16,-111,-11006,-2,-5,-787,-819,-314,-315,-2601], +[0,-2856,-477,-2857,-11007], [1,3,4878], [0,4879,4880,4881,5], -[0,-9793], -[0,-527,-533,-559,-562,-756,-932,-934,-958,-1417], -[0,-1971,-9794,-9795,-1415,-4215], +[0,-11008], +[0,-162,-86,-321,-1048,-55,-1,-185,-9,-489], +[0,-596,-11009,-5751,-8,-317], [1,3,4883], [0,0,4884,4885,4], -[0,-21,-23,-40,-427,-812,-932,-9796,-958,-1650,-9797,-2125,-9798,-2319,-2359,-2379,-2410], -[0,-1353,-9799,-9100,-1777,-8199,-9800,-7724,-5570,-5569,-9094,-1107,-9801,-9802], +[0,-48,-11,-21,-22,-35,-1,-11010,-9,-72,-11011,-7,-3840,-85,-161,-33,-2], +[0,-460,-11012,-3762,-273,-1567,-1355,-767,-1160,-1021,-5614,-28,-11013,-11014], [1,3,4887], [0,0,4888,4889,6], -[0,-652,-1107,-2391,-2379,-2402,-2410,-3036,-3037,-2581], -[0,-6527,-8799,-9803,-9804,-6730,-7710,-5316,-8653,-8740,-8642,-8715,-9805,-8654,-8685,-9235,-8761,-7715,-8656,-3839, --9806,-9807,-5315], +[0,-43,-28,-172,-33,-124,-2,-471,-5,-329], +[0,-292,-1350,-11015,-3841,-2171,-5348,-2618,-3735,-5557,-1349,-5556,-11016,-5549,-5551,-1193,-5558,-621,-5550,-265, +-11017,-5752,-2617], [1,3,4891], [0,4892,4893,4894,5], -[0,-9808,-7879,-2218,-1111,-9809,-1043,-5558,-9810,-8628,-9324], -[0,-2541,-519,-824,-2331,-7687,-9401,-7692], -[0,-1644,-6454,-6527,-5093,-9235,-8640,-7715,-8642,-3839], +[0,-5753,-5380,-288,-204,-5754,-1226,-828,-5755,-3732,-5657], +[0,-34,-51,-150,-379,-3647,-5675,-3648], +[0,-228,-575,-292,-1788,-1193,-1572,-621,-1349,-265], [1,3,4896], [0,4897,4898,4899,5], -[0,-9808,-999,-9811,-5558,-9812,-8628], -[0,-652,-2541,-519,-2410,-3037], -[0,-6454,-6527,-9813,-1644,-7175,-7715,-9814], +[0,-5753,-118,-11018,-828,-11019,-3732], +[0,-43,-34,-51,-2,-5], +[0,-575,-292,-11020,-228,-620,-621,-11021], [1,3,4901], [0,4902,0,4903,10], -[0,-9815,-2062], -[0,-1358,-9715,-7920,-9816,-3323], +[0,-11022,-198], +[0,-4216,-5734,-2766,-11023,-351], [1,3,4905], [0,0,4906,4907,9], -[0,-23,-3037,-3664,-756,-9817,-9818,-1059,-1344,-1361,-9819,-1548,-1552,-1942,-1952,-2074,-2125,-9820,-2174,-2391,-9821, --2410,-2466,-2469], -[0,-1361,-9822,-9823], +[0,-11,-5,-105,-55,-11024,-5756,-412,-10,-514,-11025,-23,-1096,-4,-435,-327,-7,-11026,-122,-172,-11027,-2,-104,-30], +[0,-514,-11028,-11029], [1,3,4909], [0,0,4910,4911,8], -[0,-9824,-3136,-756,-1415,-2125,-2375,-2388,-2410], -[0,-9825], +[0,-11030,-29,-55,-8,-7,-57,-199,-2], +[0,-11031], [1,3,4913], [0,0,0,4914,4], -[0,-1361,-6852,-9826,-6582,-7537,-5112,-7558,-9827,-5562,-7822], +[0,-514,-3558,-3842,-479,-2748,-759,-1556,-11032,-2637,-3657], [1,3,4916], [0,186,4917,4918,5], -[0,-519,-1298,-2384,-2541], -[0,-4792,-3324,-6690,-6691,-3551,-1072,-9828], +[0,-51,-3036,-82,-34], +[0,-425,-443,-5157,-5158,-365,-669,-11033], [1,3,4920], [0,4921,4922,4923,6], -[0,-1871,-5915], -[0,-519,-6997,-824,-999,-2541], -[0,-6024,-8427,-4792,-2114,-1109,-9318,-9829,-687], +[0,-1984,-3453], +[0,-51,-2181,-150,-118,-34], +[0,-657,-1191,-425,-126,-852,-715,-11034,-37], [1,3,4925], [0,4926,4927,4928,5], -[0,-9830,-9831,-9832,-9833,-9834,-9835,-9836], -[0,-3037,-4204,-932,-9837,-1942,-2410], -[0,-9668,-3844,-9838,-9839,-7107,-8897,-9840,-3690,-7586,-9841,-5196,-9842,-3691,-5728,-3578,-3161,-3122,-9843,-9844, --6011,-5801,-1334,-1342,-2512,-6224,-9845,-3994,-3445,-5407], +[0,-11035,-11036,-11037,-11038,-11039,-11040,-11041], +[0,-5,-475,-1,-11042,-4,-2], +[0,-1194,-216,-11043,-11044,-711,-2808,-2858,-100,-3643,-11045,-1323,-11046,-422,-1161,-113,-53,-442,-2244,-2245,-2145, +-1162,-103,-388,-889,-2158,-1886,-306,-46,-2633], [1,3,4930], [0,0,14,4931,10], -[0,-6806,-2265,-7210,-9846,-6722,-5554,-885,-9847], +[0,-2175,-168,-1846,-2859,-1172,-193,-1064,-5757], [1,3,4933], [0,4934,4935,4936,8], -[0,-9551,-619,-9556,-1309,-1435,-1582], -[0,-707,-1277,-1510], -[0,-6656,-7421,-8481,-1277,-3862], +[0,-5707,-1927,-3817,-1651,-730,-434], +[0,-334,-1956,-1091], +[0,-128,-427,-3721,-1956,-107], [1,3,4938], [0,4939,4940,4941,6], -[0,-786,-2776,-3546], -[0,-9848,-9849], -[0,-1368,-6187,-3161,-4729,-9850,-3264,-9851,-3844,-5092,-4865,-2127,-9613], +[0,-722,-2467,-2040], +[0,-3843,-11047], +[0,-1963,-574,-53,-2581,-3844,-31,-5758,-216,-266,-94,-14,-2241], [1,3,4943], [0,0,4944,4945,4], -[0,-2410,-2469], -[0,-1369,-9852,-9853,-1878,-9763,-9758,-2424,-9854,-9855,-9759,-9764,-9760,-9765,-9766,-9767,-9761], +[0,-2,-30], +[0,-1080,-11048,-11049,-554,-3836,-5742,-250,-5759,-11050,-3835,-2854,-5743,-5745,-5746,-5747,-5744], [1,3,4947], [0,0,71,4948,10], -[0,-9856,-7711,-9857,-9858,-9859,-1370,-4865,-633], +[0,-11051,-2201,-11052,-11053,-11054,-515,-94,-60], [1,3,4950], [0,0,29,7,5], [1,3,4952], [0,4953,4954,4955,5], -[0,-9860,-480,-482,-9861,-668,-688,-690,-696,-5906,-3517,-1366,-8418,-9862,-6259,-2166,-2202,-2219,-4621,-2267,-9863, --2400,-2820,-2528,-2531,-9864], -[0,-6486,-5918,-357,-3851,-3037,-3040,-9865,-9866,-9867,-4372,-4626,-4204,-9868,-519,-623,-826,-9869,-969,-970,-1681, --1741,-1827,-1942,-2006,-9870,-2210,-2269,-2379,-2410,-2541], -[0,-2006,-687,-4146,-3973,-3098,-3958,-1940,-2074,-9871,-7650,-714,-5554], +[0,-11055,-841,-719,-11056,-20,-2326,-1616,-1934,-5025,-528,-793,-2791,-11057,-5090,-987,-879,-2429,-2575,-395,-11058, +-215,-2473,-890,-205,-11059], +[0,-1543,-1164,-623,-1506,-5,-47,-11060,-11061,-5760,-279,-4775,-475,-11062,-51,-1209,-627,-5761,-64,-186,-549,-2392, +-1110,-4,-6,-3845,-27,-139,-33,-2,-34], +[0,-6,-37,-904,-1295,-127,-299,-494,-327,-11063,-926,-133,-193], [1,3,4957], [0,0,4958,4959,11], -[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-775,-932,-967,-4814,-1110,-1344,-1415,-1534,-1771,-1942,-2910,-2127], -[0,-1374,-9872,-5553,-3215,-775], +[0,-49,-63,-498,-290,-50,-77,-62,-206,-24,-1,-25,-911,-56,-10,-8,-17,-65,-4,-470,-14], +[0,-3048,-11064,-230,-74,-24], [1,3,4961], [0,0,0,4962,6], -[0,-9873,-9874,-7864,-7084,-7856,-9219,-3966,-687], +[0,-11065,-11066,-2762,-764,-1859,-268,-144,-37], [1,3,4964], [0,4965,4966,63,4], -[0,-3947,-231,-4106,-2900,-3950,-9875,-2153], -[0,-3952,-2410], +[0,-3256,-1904,-1300,-1725,-2547,-5762,-496], +[0,-3257,-2], [1,3,4968], [0,4969,4970,4971,11], -[0,-480,-1040,-1863,-9875,-2153], -[0,-1059,-1087,-1376], -[0,-3953,-3954,-3955,-3956,-687,-3957,-3958,-910,-3962,-3963,-1376,-3964,-3965,-3214,-3824,-3966,-3967,-1965,-3968,-1966, --3969,-2063,-3972,-3973,-3974,-3975,-3160,-3976,-2559,-3977], +[0,-841,-510,-167,-5762,-496], +[0,-412,-1644,-195], +[0,-2058,-2548,-1755,-1756,-37,-316,-299,-543,-352,-2549,-195,-1508,-2059,-45,-1294,-144,-353,-495,-2060,-392,-2061,-1256, +-1509,-1295,-178,-445,-102,-1011,-1716,-2062], [1,3,4973], [0,4974,0,4975,8], -[0,-9876,-714], -[0,-9877,-3966,-9878,-9879], +[0,-11067,-133], +[0,-11068,-144,-11069,-2246], [1,3,4977], [0,0,4978,4979,6], -[0,-849,-1654,-9880,-2334], -[0,-3209,-4792,-4791,-9881,-4865,-9882,-7857,-1380], +[0,-1394,-3,-5763,-177], +[0,-381,-425,-910,-11070,-94,-11071,-3662,-729], [1,3,4981], [0,0,4982,4983,8], -[0,-932,-937,-966,-1001,-1442,-1654,-1788,-8501,-2068,-2094,-9883,-2195], -[0,-9199,-9884,-711,-6505,-3184,-3756,-4055,-1460,-4146,-2006,-9885,-2362,-3018,-2410,-6597,-2548,-9886], +[0,-1,-782,-75,-338,-101,-3,-15,-3724,-1992,-146,-11072,-276], +[0,-5629,-11073,-308,-1829,-349,-278,-108,-272,-904,-6,-11074,-886,-440,-2,-537,-262,-5764], [1,3,4985], [0,0,4986,4987,8], -[0,-510,-526,-528,-549,-9887,-9888,-551,-556,-559,-9889,-566,-9890,-9891,-9892,-9893,-9894,-9895,-9896,-9897,-9898,-9899, --9900,-9901,-9902,-9903,-689,-704,-932,-9904,-1045,-1107,-1127,-1132,-1134,-1138,-9905,-9906,-1452,-1650,-1797,-2125, --2127,-2128,-2131,-9907,-5860,-2138,-2143,-9266,-2187,-2493], -[0,-1382,-1348,-9780,-9908,-3582], +[0,-59,-179,-91,-1207,-5765,-5766,-775,-580,-321,-5767,-429,-11075,-11076,-11077,-11078,-11079,-11080,-11081,-11082, +-11083,-11084,-11085,-11086,-11087,-11088,-1389,-4128,-1,-11089,-953,-28,-54,-164,-240,-511,-11090,-11091,-119,-72,-591, +-7,-14,-275,-466,-11092,-5018,-877,-807,-3772,-393,-1710], +[0,-3050,-1078,-1885,-11093,-567], [1,3,4989], [0,0,4990,4991,4], -[0,-7,-8,-9,-10,-13,-3204,-42,-3983,-365,-407,-410,-3037,-3040,-3052,-427,-428,-4837,-9909,-535,-774,-928,-932,-948,-958, --959,-969,-970,-1028,-9910,-4693,-9911,-1127,-1131,-1132,-1134,-1137,-1140,-1149,-9912,-1160,-1162,-1339,-1415,-1419, --1437,-1541,-1874,-1942,-9913,-2006,-2019,-2162,-2193,-2299,-2351,-2379,-2410,-2466,-6859,-2476,-5627,-2567], -[0,-9914,-9915,-9916,-9917,-9918,-3162,-3962,-9567,-3823,-3214,-3862,-775,-3264,-3926,-5538,-2006,-2476,-475,-2299,-3095, --2410], +[0,-1898,-1899,-1900,-2285,-2945,-398,-137,-366,-1373,-153,-307,-5,-47,-89,-22,-19,-1020,-11094,-270,-407,-87,-1,-246,-9, +-145,-64,-186,-1635,-11095,-3311,-11096,-54,-546,-164,-240,-584,-1951,-304,-11097,-2346,-789,-413,-8,-176,-248,-3062, +-391,-4,-5768,-6,-36,-80,-689,-221,-1468,-33,-2,-104,-923,-73,-1531,-2456], +[0,-11098,-5769,-11099,-3846,-1887,-95,-352,-3819,-2052,-45,-107,-24,-31,-423,-616,-6,-73,-184,-221,-131,-2], [1,3,4993], [0,220,4994,4995,5], -[0,-633,-1059,-2319], -[0,-4004,-1384], +[0,-60,-412,-85], +[0,-76,-674], [1,3,4997], [0,4998,4999,5000,6], -[0,-9919,-9920,-9921], -[0,-3037,-3664,-932,-1942,-2080,-2125,-2127,-2376,-2387,-2410,-2469], -[0,-6143,-9922,-6134,-9923,-9924,-3214,-3966,-2410], +[0,-11100,-11101,-11102], +[0,-5,-105,-1,-4,-598,-7,-14,-214,-44,-2,-30], +[0,-5082,-11103,-1820,-11104,-11105,-45,-144,-2], [1,3,5002], [0,5003,5004,221,5], -[0,-2323,-834,-9925,-1805,-2446,-668,-812,-2387,-1548,-2177,-2240,-3547,-2347,-9926,-2291,-9927,-9928,-9929,-9422,-9930, --9931,-9932,-9933,-9934,-9935,-9936,-9937,-9938], -[0,-1415,-2125,-2388,-2375,-1417,-5673,-2231,-2410,-9939,-3136,-3037,-9940,-3738,-1534,-3198,-3044,-3199,-9941,-9942, --7836,-4202,-9943], +[0,-312,-203,-5770,-152,-125,-20,-35,-44,-23,-16,-881,-1497,-69,-5771,-690,-3847,-11106,-2860,-2839,-11107,-3848,-5772, +-5773,-5774,-5775,-3849,-5776,-5777], +[0,-8,-7,-199,-57,-489,-1532,-130,-2,-1356,-29,-5,-11108,-698,-17,-169,-143,-140,-2861,-11109,-2205,-3282,-3850], [1,3,5006], [0,5007,5008,5009,5], -[0,-3978], -[0,-3983,-3048,-3136,-3037,-9947,-1077,-1415,-1417,-9948,-1772,-1942,-1978,-2125,-2177,-2184,-2303,-2392,-2410], -[0,-9949,-1386,-3167,-3839,-3162,-8585,-3095,-9950,-3119,-5270], +[0,-4679], +[0,-366,-191,-29,-5,-3851,-41,-8,-489,-11112,-345,-4,-160,-7,-16,-809,-602,-155,-2], +[0,-11113,-1426,-745,-265,-95,-5539,-131,-5778,-996,-291], [1,3,5011], [0,5012,5013,5014,4], -[0,-9951,-9952,-812,-9953,-1554,-9954,-9955,-9956,-9957], -[0,-9958,-3470,-7040,-3471,-3035,-4269,-3198,-9959,-9960,-3621,-3037,-9961,-4372,-427,-428,-664,-665,-932,-940,-1654, --1788,-1942,-2174,-2188,-2210,-2379,-2384,-2402,-2410,-2446], -[0,-2071,-9844,-9962,-9963], +[0,-11114,-11115,-35,-5779,-1665,-11116,-11117,-11118,-11119], +[0,-11120,-297,-925,-298,-109,-754,-169,-11121,-11122,-71,-5,-11123,-279,-22,-19,-13,-239,-1,-12,-3,-15,-4,-122,-1123,-27, +-33,-82,-124,-2,-125], +[0,-688,-2245,-11124,-11125], [1,3,5016], [0,0,5017,7,8], -[0,-1654,-932], +[0,-3,-1], [1,3,5019], [0,5020,5021,7,5], -[0,-9964,-9788,-9965], -[0,-9966,-1032,-1445,-2322], +[0,-11126,-2856,-11127], +[0,-11128,-1225,-587,-39], [1,3,5023], [0,0,5024,5025,4], -[0,-515,-1788,-2322,-932,-6283,-1365,-2156,-5834,-6402], -[0,-2444,-8038,-4004], +[0,-720,-15,-39,-1,-2160,-212,-189,-244,-3511], +[0,-136,-576,-76], [1,3,5027], [0,5028,5029,184,9], -[0,-680], -[0,-686,-2250], +[0,-481], +[0,-1615,-97], [1,3,5031], [0,5032,88,5033,4], -[0,-9967], -[0,-6836,-9968,-7440,-8421,-8130,-9969,-1107,-9095,-9970,-1391,-5572,-3581,-5574,-5569,-8129,-2265,-4004], +[0,-11129], +[0,-1175,-2863,-293,-1190,-1862,-5780,-28,-2231,-5781,-634,-532,-2514,-1022,-1021,-3683,-168,-76], [1,3,5035], [0,5036,5037,5038,11], -[0,-9971,-7408], -[0,-519,-6997,-824,-999,-1591,-2384,-2541], -[0,-1109,-5897,-9972,-3551,-1380,-9973,-1764,-2552,-1391,-7440,-6659,-8427,-9974,-687,-8425,-7304], +[0,-11130,-1554], +[0,-51,-2181,-150,-118,-733,-82,-34], +[0,-852,-478,-11131,-365,-729,-11132,-159,-692,-634,-293,-710,-1191,-11133,-37,-1569,-837], [1,3,5040], [0,0,14,5041,6], -[0,-7208,-1391,-7440,-4004,-8038,-9716,-9975,-9976,-5493], +[0,-426,-634,-293,-76,-576,-3831,-2247,-5782,-654], [1,3,5043], [0,0,5044,5045,9], -[0,-664,-985,-1202,-1654,-1655,-2127], -[0,-7440,-1391,-9977,-1403,-3214,-9978,-8493,-7208,-9716,-8038,-9571,-5846], +[0,-13,-370,-671,-3,-1671,-14], +[0,-293,-634,-3852,-1657,-45,-5783,-2214,-426,-3831,-576,-2845,-917], [1,3,5047], [0,0,5048,5049,5], -[0,-1654,-2081], -[0,-3264,-9950,-9979,-5065], +[0,-3,-984], +[0,-31,-5778,-11134,-1786], [1,3,5051], [0,0,5052,5053,5], -[0,-3037,-519,-2331,-2384,-2541], -[0,-5827,-8038,-8027,-9980,-8800,-9753,-6408,-7440,-6659,-1391], +[0,-5,-51,-379,-82,-34], +[0,-252,-576,-1029,-5784,-1351,-3832,-536,-293,-710,-634], [1,3,5055], [0,5056,222,5057,5], -[0,-9981], -[0,-7440,-9983,-7084,-9984,-9261,-6659,-6836,-1958,-4000,-3974,-1391], +[0,-5785], +[0,-293,-11135,-764,-11136,-1877,-710,-1175,-286,-201,-178,-634], [1,3,5059], [0,0,31,5060,11], -[0,-4865,-1402,-5839], +[0,-94,-1084,-708], [1,3,5062], [0,0,5063,5064,11], -[0,-985,-1202,-1654,-2127], -[0,-7440,-1391,-9977,-1403,-9978,-8493,-9985,-5269,-7208,-8038,-9571,-5846], +[0,-370,-671,-3,-14], +[0,-293,-634,-3852,-1657,-5783,-2214,-11137,-501,-426,-576,-2845,-917], [1,3,5066], [0,5067,5068,7,5], -[0,-1729,-2516], -[0,-664,-1452,-9986,-1654,-1722], +[0,-188,-818], +[0,-13,-119,-11138,-3,-197], [1,3,5070], [0,5071,5072,5073,4], -[0,-1107,-1758,-1801,-510,-2518,-9632,-1650,-987,-1442,-2114,-2525,-931,-1276,-2297], -[0,-1452,-2125,-1754,-756,-2111], -[0,-4005,-9987,-9988,-9989], +[0,-28,-463,-680,-59,-222,-2847,-72,-1067,-101,-126,-991,-2339,-247,-468], +[0,-119,-7,-679,-55,-416], +[0,-823,-11139,-11140,-11141], [1,3,5075], [0,5076,56,89,4], -[0,-1078,-2446,-7885], +[0,-1641,-125,-2764], [1,3,5078], [0,5079,5080,5081,5], -[0,-513,-823,-896,-9990,-1571,-1887,-2355,-9991], -[0,-9992,-526,-527,-532,-534,-536,-544,-546,-9993,-551,-555,-7890,-558,-565,-567,-664,-9994,-748,-767,-778,-932,-980, --1017,-1041,-1074,-1168,-1171,-1184,-1226,-1243,-1322,-1331,-1471,-1475,-1476,-1482,-7759,-1490,-1491,-1492,-1521,-1522, --8936,-1654,-2210,-2211,-2275,-2388,-2410,-2417,-2437,-2476,-2479,-9995,-2481,-2483,-2484,-2485,-2501,-2505,-2508], -[0,-1407,-2476,-3527,-3095,-3098,-3160,-3161], +[0,-1917,-323,-4155,-11142,-1668,-3080,-1128,-11143], +[0,-11144,-179,-162,-2301,-96,-1603,-1920,-1379,-11145,-775,-937,-3664,-253,-2303,-282,-13,-5786,-508,-26,-141,-1,-785, +-851,-271,-3017,-32,-1648,-960,-1232,-310,-1423,-342,-79,-138,-588,-187,-2758,-637,-676,-517,-219,-1092,-3746,-3,-27, +-190,-154,-199,-2,-1130,-438,-73,-4347,-11146,-1132,-888,-2008,-1475,-18,-173,-524], +[0,-4220,-73,-2510,-131,-127,-102,-53], [1,3,5083], [0,5084,156,5085,4], -[0,-233], -[0,-6748,-3215,-4377,-5829,-9567,-687,-3957,-6722,-1838,-6747], +[0,-4072], +[0,-1173,-74,-613,-916,-3819,-37,-316,-1172,-166,-763], [1,3,5087], [0,5088,5089,7,4], -[0,-9996,-683,-719,-9997,-9998,-1650,-9999,-2416,-2595,-10000], -[0,-10001,-10002,-756,-1004,-10003,-10004,-10005,-10006,-10007,-10008,-10009,-10010,-10011,-10012,-10013,-10014,-10015, --10016,-1610,-1810,-10017,-2125,-10018,-3013], +[0,-11147,-540,-58,-11148,-11149,-72,-11150,-112,-3135,-11151], +[0,-11152,-11153,-55,-40,-11154,-11155,-11156,-11157,-11158,-11159,-5787,-5788,-5789,-11160,-5790,-5791,-11161,-11162, +-227,-592,-11163,-7,-5792,-4483], [1,3,5091], [0,5092,5093,5094,5], -[0,-510,-10019,-1863], -[0,-190,-932,-4719,-1110,-1654,-1980], -[0,-7641,-687,-9218,-10020], +[0,-59,-11164,-167], +[0,-50,-1,-4789,-56,-3,-521], +[0,-712,-37,-1576,-11165], [1,3,5096], [0,5097,5098,5099,4], -[0,-10021], -[0,-3326,-351,-3561,-3266,-4964,-10022,-10023,-683,-767,-10024,-1344,-1437,-10025,-1534,-1639,-10026,-2127,-4063,-8896], -[0,-10027,-6527,-5182,-10028,-10029,-8636], +[0,-11166], +[0,-207,-62,-237,-206,-1781,-2864,-11167,-540,-26,-11168,-10,-248,-11169,-17,-361,-11170,-14,-900,-2225], +[0,-11171,-292,-1322,-5793,-11172,-5548], [1,3,5101], [0,5102,5103,223,6], -[0,-1107,-1413,-10030], -[0,-932,-10031], +[0,-28,-373,-11173], +[0,-1,-5794], [1,3,5105], [0,0,5106,223,5], -[0,-3244,-190,-501,-10032,-888,-932,-952,-1107,-1110,-1449,-1942,-2162], +[0,-290,-50,-842,-11174,-337,-1,-847,-28,-56,-78,-4,-80], [1,3,5108], [0,5109,0,5110,5], -[0,-1088,-1650,-10033,-2111,-2424,-711,-10034,-10035], -[0,-3634,-3440], +[0,-1645,-72,-11175,-416,-250,-308,-3854,-11176], +[0,-61,-609], [1,3,5112], [0,5113,0,107,4], -[0,-236,-237,-1363,-1417], +[0,-2954,-663,-1653,-489], [1,3,5115], [0,5116,5117,5118,6], -[0,-10036,-10037], -[0,-6256,-21,-23,-26,-40,-86,-9404,-533,-10038,-756,-1344,-1415,-1942], -[0,-4215,-1415,-5129,-886,-659,-4004,-5119], +[0,-11177,-11178], +[0,-5089,-48,-11,-209,-21,-49,-1032,-86,-11179,-55,-10,-8,-4], +[0,-317,-8,-1523,-3007,-322,-76,-401], [1,3,5120], [0,5121,5122,107,6], -[0,-236,-4019,-237,-668,-4021,-1363,-4023,-1427,-4031,-2550], -[0,-3041], +[0,-2954,-3262,-663,-20,-4687,-1653,-3263,-858,-2553,-98], +[0,-419], [1,3,5124], [0,5125,224,7,6], -[0,-10039,-8434,-668,-1950], +[0,-11180,-5506,-20,-683], [1,3,5127], [0,5128,224,7,5], -[0,-10040,-10041,-4647,-3037,-1449], +[0,-3855,-3856,-614,-5,-78], [1,3,5130], [0,5131,5132,7,4], -[0,-10040,-10042,-237,-5129,-1427,-1449], -[0,-3136,-4647,-3037,-1344,-1415,-1650,-1942,-1952,-2125,-2375,-2410], +[0,-3855,-5795,-663,-1523,-858,-78], +[0,-29,-614,-5,-10,-8,-72,-4,-435,-7,-57,-2], [1,3,5134], [0,5135,5136,7,9], -[0,-10040,-10042,-237,-3037,-5129,-1427,-4031], -[0,-4034,-703], +[0,-3855,-5795,-663,-5,-1523,-858,-2553], +[0,-2066,-302], [1,3,5138], [0,5139,5140,5141,5], -[0,-1418], -[0,-50,-3615,-3244,-190,-8433,-3136,-427,-428,-932,-940,-948,-958,-959,-967,-1110,-1344,-1415,-10043,-1428,-1534,-1942, --2375,-5232,-2410], -[0,-1415,-10044,-1015,-10045,-4004,-3634,-6538], +[0,-857], +[0,-357,-498,-290,-50,-5505,-29,-22,-19,-1,-12,-246,-9,-145,-25,-56,-10,-8,-5796,-1086,-17,-4,-57,-3364,-2], +[0,-8,-11181,-432,-11182,-76,-61,-3528], [1,3,5143], [0,5144,5145,5146,4], -[0,-1077,-1805], -[0,-23,-2695,-366,-407,-409,-410,-10046,-3136,-10047,-3037,-10048,-3040,-3052,-6192,-485,-533,-534,-542,-561,-594,-635, --656,-661,-747,-778,-779,-796,-865,-866,-929,-932,-941,-10049,-1017,-1041,-1077,-1331,-1352,-1415,-1426,-1428,-10050, --1643,-1762,-1889,-1903,-1908,-1918,-1927,-1966,-10051,-2006,-2010,-2015,-2019,-2041,-2643,-2114,-2116,-2162,-2163,-2177, --2233, --2275,-2318,-2335,-2410,-2437,-10052,-2501,-2502,-2505,-2507,-2526], -[0,-1415,-3264,-6863,-9246,-3862], +[0,-41,-152], +[0,-11,-2020,-1910,-153,-120,-307,-2865,-29,-11183,-5,-11184,-47,-89,-2670,-935,-86,-96,-2976,-1607,-2310,-301,-430,-1613, +-778,-141,-1214,-295,-210,-945,-484,-1,-1221,-3857,-851,-271,-41,-342,-964,-8,-1660,-1086,-11185,-374,-1980,-38,-1451, +-493,-3084,-805,-392,-11186,-6,-2409,-1255,-36,-686,-4375,-126,-2420,-80,-467,-16,-880, +-154,-559,-397,-2,-438,-3858,-18,-523,-173,-2455,-3130], +[0,-8,-31,-1023,-2830,-107], [1,3,5148], [0,5149,5150,7,4], -[0,-1650,-2269,-2446,-6597], -[0,-1415,-10053,-2218], +[0,-72,-139,-125,-537], +[0,-8,-11187,-288], [1,3,5152], [0,0,0,5153,5], -[0,-1415,-2552,-10054,-10055], +[0,-8,-692,-3859,-3860], [1,3,5155], [0,5156,5157,7,6], -[0,-668,-1119,-4024,-1425,-1427,-4031,-2218,-8204], -[0,-4035,-2435], +[0,-20,-324,-4688,-3053,-858,-2553,-288,-5453], +[0,-898,-200], [1,3,5159], [0,5160,5161,7,8], -[0,-237,-3037,-668,-680,-1119,-1864], -[0,-4035,-8523,-1548], +[0,-663,-5,-20,-481,-324,-326], +[0,-898,-662,-23], [1,3,5163], [0,5164,5165,7,5], -[0,-480,-668,-4026,-4032,-2218,-6715,-2269], -[0,-21,-23,-40,-42,-190,-5121,-237,-3470,-3471,-3037,-533,-10056,-767,-932,-940,-948,-8339,-959,-967,-1110,-1415,-10043, --1942,-2125,-2174,-2177,-2410,-2411], +[0,-841,-20,-4690,-4691,-288,-2704,-139], +[0,-48,-11,-21,-137,-50,-1318,-663,-297,-298,-5,-86,-5797,-26,-1,-12,-246,-1866,-145,-25,-56,-8,-5796,-4,-7,-122,-16,-2, +-84], [1,3,5167], [0,5168,5169,7,6], -[0,-3037,-9581,-1427,-1632,-2297], -[0,-23,-10057,-4373,-9586,-1100,-10058,-10059], +[0,-5,-1578,-858,-1103,-468], +[0,-11,-11188,-2572,-1880,-487,-11189,-5798], [1,3,5171], [0,5172,5173,5174,4], -[0,-10060,-10061,-10062,-10063,-10064,-10065,-10066,-10067,-10068,-10069,-10070,-10071,-10072,-10073,-10074,-10075,-10076, --10077,-10078,-10079,-10080,-10081,-10082,-10083,-10084,-10085,-10086], -[0,-10087,-10088,-10089,-10090,-4066,-350,-6572,-351,-3266,-5286,-932,-10091,-1848,-2127,-2132,-6483,-9701,-2386,-2410, --10092,-2469], -[0,-6527,-10093,-10094,-7715,-8640,-9235,-8653,-10095,-7069,-7066], +[0,-11190,-11191,-11192,-11193,-11194,-11195,-11196,-11197,-11198,-11199,-11200,-11201,-11202,-11203,-11204,-11205,-11206, +-11207,-11208,-11209,-11210,-11211,-11212,-11213,-11214,-11215,-11216], +[0,-11217,-11218,-11219,-11220,-530,-77,-2697,-62,-206,-1156,-1,-11221,-681,-14,-417,-1334,-2850,-561,-2,-5799,-30], +[0,-292,-11222,-11223,-621,-1572,-1193,-3735,-2248,-2727,-2726], [1,3,5176], [0,0,5177,7,6], -[0,-23,-3341,-3196,-24,-10096,-33,-5828,-3367,-3077,-3389,-3408,-3412,-42,-3193,-46,-47,-10097,-10098,-4776,-4777,-10099, --10100,-10101,-3037,-3664,-461,-10102,-672,-727,-734,-6860,-10103,-930,-932,-944,-989,-990,-1026,-1394,-1640,-1651,-1667, --10104,-1852,-6568,-1940,-10105,-1942,-2006,-2019,-2080,-10106,-6570,-2335,-3535,-2376,-2410,-2469,-2476,-8416,-2564], +[0,-11,-1138,-4512,-716,-11224,-578,-3442,-2035,-995,-3197,-1284,-1140,-137,-3178,-539,-450,-5800,-2866,-757,-4801,-11225, +-3861,-2867,-5,-105,-202,-11226,-1388,-335,-1211,-1839,-11227,-408,-1,-1403,-786,-848,-226,-1655,-260,-1437,-863,-11228, +-594,-1832,-494,-3862,-4,-6,-36,-598,-5801,-1544,-397,-1142,-214,-2,-30,-73,-3716,-263], [1,3,5179], [0,0,0,5180,6], -[0,-3494,-10107,-10108,-3495,-10109,-10110,-3264,-5554,-3496,-10111,-3214,-2410,-10112,-1432], +[0,-821,-11229,-11230,-895,-3863,-3864,-31,-193,-420,-3865,-45,-2,-11231,-2360], [1,3,5182], [0,5183,5184,5185,4], -[0,-1432], -[0,-3615,-7155,-367,-406,-409,-410,-3040,-3052,-427,-428,-767,-778,-932,-940,-967,-969,-970,-979,-1331,-1449,-1942,-2006, --2019,-8276,-2275,-3752,-2379,-2391,-2410,-2469,-2501,-2503,-2505], -[0,-2006,-1432,-3264,-5554,-3496,-10113,-10109,-10110,-10114], +[0,-2360], +[0,-498,-2183,-245,-319,-120,-307,-47,-89,-22,-19,-26,-141,-1,-12,-25,-64,-186,-1948,-342,-78,-4,-6,-36,-1189,-154,-4626, +-33,-172,-2,-30,-18,-93,-173], +[0,-6,-2360,-31,-193,-420,-11232,-3863,-3864,-3866], [1,3,5187], [0,5188,5189,5190,4], -[0,-668,-10115,-10116,-10117,-2183,-3523,-1553,-1552,-10118], -[0,-1788,-510,-1127,-2210,-1813,-756,-1132,-6758,-1153,-722,-10119,-1149,-1144,-1146], -[0,-10120,-10121,-10122,-10123,-10124,-10125,-10126,-10127,-10128,-10129,-10130,-10131,-10132,-10133,-10134,-10135,-10136, --10137,-10138,-10139,-10140,-10141,-10142,-10143,-10144,-10145,-10146,-10147,-10148,-10115,-10149,-10150,-10151,-10152, --10153,-10154,-10155,-10156,-10157,-10158,-10159,-10160,-10161,-10162,-10163,-10164,-10165,-10166,-10167,-10168,-10169, --10170,-10171,-10172,-10173,-10174,-10175,-10176,-10177,-10178,-10179,-10180,-10180, --10181,-10182,-10183,-10184,-10185,-10186,-10187,-10188,-10189,-10190,-10191,-10192,-10193,-10194,-10195,-10196,-10197, --10198,-10199,-10200,-10201,-10202,-10203,-10204,-10205,-10206,-10207,-5158,-10208,-10209,-10210,-10211,-10212,-10213, --10214,-10215,-10216,-10217,-10218,-10219,-10219,-10220,-10221,-10222,-10223,-10224,-10225,-10226,-10227,-2183,-10228, --10229,-10230,-10231,-10232,-10233,-10234,-10235,-10236,-10237,-10238,-10239,-10240,-10241, --10242,-10243,-10244,-10245,-10246,-10247,-10248], +[0,-20,-5802,-11233,-11234,-2423,-2039,-1972,-1096,-11235], +[0,-15,-59,-54,-27,-551,-55,-164,-5170,-1231,-456,-11236,-304,-175,-358], +[0,-11237,-11238,-11239,-11240,-11241,-11242,-11243,-11244,-11245,-11246,-11247,-11248,-11249,-11250,-11251,-11252,-11253, +-11254,-11255,-11256,-11257,-11258,-11259,-11260,-11261,-11262,-11263,-11264,-11265,-5802,-11266,-11267,-11268,-11269, +-11270,-11271,-11272,-11273,-11274,-11275,-11276,-11277,-11278,-11279,-11280,-11281,-11282,-11283,-11284,-11285,-11286, +-11287,-11288,-11289,-11290,-11291,-11292,-11293,-11294,-11295,-11296,-5803,-5803, +-11297,-11298,-11299,-11300,-11301,-11302,-11303,-11304,-11305,-11306,-11307,-11308,-11309,-11310,-11311,-11312,-11313, +-11314,-11315,-11316,-11317,-11318,-11319,-11320,-11321,-11322,-11323,-1524,-11324,-11325,-11326,-11327,-11328,-11329, +-11330,-11331,-11332,-11333,-11334,-5804,-5804,-11335,-11336,-11337,-11338,-11339,-5805,-5806,-2868,-2423,-11340,-11341, +-11342,-11343,-11344,-11345,-11346,-11347,-11348,-11349,-11350,-11351,-11352,-11353, +-11354,-11355,-11356,-5807,-11357,-11358,-11359], [1,3,5192], [0,5193,5194,5195,4], -[0,-10249,-10250,-3880,-10251,-10252,-3888,-3117], -[0,-9163,-3890,-3891,-3893,-3037,-2410], -[0,-4058,-3926], +[0,-11360,-11361,-4661,-11362,-11363,-4662,-1730], +[0,-5624,-3248,-4663,-3249,-5,-2], +[0,-331,-423], [1,3,5197], [0,0,0,5198,5], -[0,-2006,-4125,-9800,-4633,-10253,-4634], +[0,-6,-1302,-1355,-1771,-11364,-1017], [1,3,5200], [0,0,0,5201,10], -[0,-1437,-3214,-4865,-3482], +[0,-248,-45,-94,-382], [1,3,5203], [0,5204,5205,7,4], -[0,-1437], -[0,-1127,-2125,-1110,-367,-10254,-10255,-1152,-10256,-1542,-10257,-10258,-10259,-10260,-1136,-1139,-9550], +[0,-248], +[0,-54,-7,-56,-245,-11365,-5808,-512,-11366,-343,-5809,-3867,-11367,-5810,-629,-4181,-5706], [1,3,5207], [0,0,5208,5209,11], -[0,-3037,-1654,-2410], -[0,-6118,-7304], +[0,-5,-3,-2], +[0,-2150,-837], [1,3,5211], [0,5212,5213,5214,4], -[0,-10261,-7829,-1107,-1441,-1758], -[0,-481,-589,-709,-1437,-1452,-1646,-1654,-1689,-2111,-2184,-2269,-2501,-2503], -[0,-6146,-10262,-10263], +[0,-11368,-1858,-28,-2361,-463], +[0,-1045,-110,-1054,-248,-119,-88,-3,-519,-416,-809,-139,-18,-93], +[0,-3485,-11369,-11370], [1,3,5216], [0,0,5217,5218,4], -[0,-3266,-932,-943,-957,-963,-1127,-10258,-1137,-1146,-9544,-1149,-10264,-10265,-1942,-1989,-2091,-2127,-5090,-2134,-2250], -[0,-743,-6920,-4865,-10266,-4791,-3323,-1441,-633], +[0,-206,-1,-83,-723,-211,-54,-3867,-584,-358,-2844,-304,-3868,-5811,-4,-376,-378,-14,-2608,-876,-97], +[0,-336,-1840,-94,-11371,-910,-351,-2361,-60], [1,3,5220], [0,5221,5222,5223,8], -[0,-503], -[0,-1788,-5514,-1654,-932,-2127,-2195,-1103,-589,-709,-1023,-2140,-350,-351,-10267], -[0,-2548,-3215,-4142,-10268], +[0,-1204], +[0,-15,-243,-3,-1,-14,-276,-340,-110,-1054,-1224,-229,-77,-62,-5812], +[0,-262,-74,-2557,-11372], [1,3,5225], [0,5226,5227,5228,10], -[0,-25,-5223,-719,-812,-822,-1107,-10269,-10270,-2001,-10271], -[0,-190,-4010,-367,-4007,-7043,-3037,-720,-740,-796,-932,-940,-959,-967,-1415,-1448,-9390,-9393,-1942,-2125,-2410,-2411], -[0,-10272,-856], +[0,-405,-2616,-58,-35,-1623,-28,-11373,-3869,-1459,-11374], +[0,-50,-1759,-245,-1012,-1178,-5,-482,-385,-295,-1,-12,-145,-25,-8,-795,-5670,-5671,-4,-7,-2,-84], +[0,-11375,-42], [1,3,5230], [0,5231,5232,7,4], -[0,-714,-719,-1077,-10273,-10274,-10275,-10276,-10277,-10278,-10279], -[0,-5325,-3048,-3037,-3664,-1753,-2379,-2391,-2410,-2469], +[0,-133,-58,-41,-11376,-11377,-11378,-11379,-11380,-11381,-11382], +[0,-2125,-191,-5,-105,-285,-33,-172,-2,-30], [1,3,5234], [0,5235,5236,5237,6], -[0,-668,-693,-719,-10280,-988,-1000,-1107,-1333,-1442,-10281,-10282,-6611,-1548,-1645,-5199,-6533,-1965,-10283,-2114, --2270,-2271,-10284,-10285,-9247,-10286,-2538], -[0,-664,-756,-3607,-1452,-1654,-2081,-2123,-2210,-2211,-10287,-10288,-2536], -[0,-8172,-4144,-7148,-8170,-4901,-5874], +[0,-20,-940,-58,-5813,-1068,-849,-28,-488,-101,-11383,-11384,-2699,-23,-92,-2122,-5140,-495,-5814,-126,-1264,-601,-11385, +-11386,-5636,-11387,-1274], +[0,-13,-55,-2516,-119,-3,-984,-1461,-27,-190,-11388,-11389,-565], +[0,-1187,-1303,-224,-577,-2588,-534], [1,3,5239], [0,5240,5241,5242,4], -[0,-25,-10289,-3661,-615,-10290,-930,-10291,-8985,-1600,-1601,-1610,-1650,-10292,-2271,-2424], -[0,-469,-1168,-1197,-1225,-1788], -[0,-856,-3214], +[0,-405,-11390,-896,-114,-11391,-408,-11392,-3753,-220,-971,-227,-72,-11393,-601,-250], +[0,-183,-32,-513,-4196,-15], +[0,-42,-45], [1,3,5244], [0,5245,0,5246,4], -[0,-6789,-7573,-10293,-7575,-1446,-10294,-7576], -[0,-1446,-3690,-5731,-3964,-3214,-856], +[0,-1547,-5320,-2869,-5321,-165,-11394,-2197], +[0,-165,-100,-2642,-1508,-45,-42], [1,3,5248], [0,5249,0,5250,5], -[0,-6789,-717,-718,-10295,-843,-1447,-2576,-7576], -[0,-1446,-1599,-3690,-3262,-3214,-3756,-856], +[0,-1547,-2328,-2329,-11395,-2998,-4223,-4363,-2197], +[0,-165,-99,-100,-116,-45,-278,-42], [1,3,5252], [0,5253,5254,225,5], -[0,-10296,-10297,-10298,-9683,-785,-10299,-10300,-1319,-1337,-1343,-1397,-1839,-10301,-10302,-2364,-2426,-10303,-10304, --6587,-10305,-8352], -[0,-7196,-932,-957,-965,-1110,-1442,-1645,-1654,-10306,-1772,-1810,-1880,-2177,-2188,-2354,-10307,-10308], +[0,-11396,-11397,-11398,-5730,-2994,-11399,-3870,-3041,-2356,-727,-4219,-593,-5815,-11400,-1129,-289,-11401,-11402,-2698, +-11403,-3710], +[0,-3584,-1,-723,-115,-56,-101,-92,-3,-11404,-345,-592,-804,-16,-1123,-1127,-11405,-11406], [1,3,5256], [0,5257,5258,225,5], -[0,-10309,-10310,-785,-1333,-10311,-1839,-2105,-8352,-2540], -[0,-633,-714,-1339,-1452,-6810,-1754,-1888,-1980,-10312,-2493], +[0,-11407,-3871,-2994,-488,-11408,-593,-111,-3710,-2011], +[0,-60,-133,-413,-119,-1836,-679,-641,-521,-5816,-1710], [1,3,5260], [0,0,5261,5262,4], -[0,-756,-1127,-1132,-6114,-1405,-1654,-2081,-2111,-10313], -[0,-640,-5559,-3214,-4055,-6917,-8127,-2265,-6231,-3673], +[0,-55,-54,-164,-2149,-66,-3,-984,-416,-11409], +[0,-294,-503,-45,-108,-836,-2771,-168,-447,-611], [1,3,5264], [0,5265,5266,7,8], -[0,-687,-6392,-1000,-1333,-1548,-1645,-2271], -[0,-510,-633,-739,-6019,-756,-1405,-1445,-1661,-1754,-1978,-2081,-10314,-2210,-6430,-10315,-10316], +[0,-37,-5111,-849,-488,-23,-92,-601], +[0,-59,-60,-541,-2146,-55,-66,-587,-1439,-679,-160,-984,-11410,-27,-5118,-11411,-11412], [1,3,5268], [0,5269,226,5270,5], -[0,-668,-1574,-1877,-6715,-2343,-9493], -[0,-1452,-6863,-4144,-3276,-7148,-5874,-10317,-6864,-3240], +[0,-20,-638,-979,-2704,-885,-3801], +[0,-119,-1023,-1303,-566,-224,-534,-5817,-5192,-648], [1,3,5272], [0,5273,5274,5275,4], -[0,-10318,-10319], -[0,-3621,-3037,-427,-428,-932,-936,-958,-1654,-1788,-2379,-2410], -[0,-4055,-10320,-788,-6473,-8257,-10321,-10322,-1838,-3215,-1454,-10323,-687], +[0,-11413,-11414], +[0,-71,-5,-22,-19,-1,-1945,-9,-3,-15,-33,-2], +[0,-108,-11415,-779,-1542,-1864,-11416,-11417,-166,-74,-4224,-11418,-37], [1,3,5277], [0,0,5278,7,8], -[0,-2251], +[0,-134], [1,3,5280], [0,0,0,5281,9], -[0,-4055,-4058], +[0,-108,-331], [1,3,5283], [0,5284,5285,5286,4], -[0,-411,-414,-2702,-668,-679,-3780,-6869,-1369,-1460,-1581,-10324,-2213,-10325], -[0,-3037,-726,-1098,-1344,-2987,-8065,-2331,-2400,-2410], -[0,-4182,-3844,-8959,-3817,-3816,-10326,-4215,-4041,-4004,-3634,-3691,-6582,-10327], +[0,-1911,-4091,-4388,-20,-117,-2049,-2717,-1080,-272,-3063,-11419,-738,-5818], +[0,-5,-284,-486,-10,-2024,-1562,-379,-215,-2], +[0,-1304,-216,-1873,-1752,-1148,-11420,-317,-2554,-76,-61,-422,-479,-5819], [1,3,5288], [0,5289,5290,5291,10], -[0,-655,-6511,-1402,-7584,-1795], -[0,-2832,-5834,-8084,-8086,-8090,-10328,-8096,-516,-5835,-932,-1365,-1777,-2156,-2322], -[0,-4055,-6231,-10329,-6131,-7283,-10330], +[0,-939,-1830,-1084,-5322,-1447], +[0,-314,-244,-1563,-5419,-3682,-11421,-714,-269,-533,-1,-212,-273,-189,-39], +[0,-108,-447,-11422,-1536,-1847,-3872], [1,3,5293], [0,0,0,5294,5], -[0,-4055,-6231,-10331,-9594], +[0,-108,-447,-11423,-1579], [1,3,5296], [0,0,5297,5298,11], -[0,-753,-932,-943,-958,-966,-968,-974,-1771,-2081,-2127,-2129,-2131,-2137,-2140,-2210,-2319,-10332], -[0,-4055,-1460,-8108,-4795,-3217], +[0,-158,-1,-83,-9,-75,-67,-129,-65,-984,-14,-985,-466,-347,-229,-27,-85,-11424], +[0,-108,-272,-1185,-446,-350], [1,3,5300], [0,0,5301,7,4], -[0,-1654,-932,-2125,-2410,-3037,-3621,-428,-427], +[0,-3,-1,-7,-2,-5,-71,-19,-22], [1,3,5303], [0,5304,206,5305,4], -[0,-8984], -[0,-2059,-6234,-6656,-4055,-1076,-1077], +[0,-3752], +[0,-597,-1823,-128,-108,-303,-41], [1,3,5307], [0,0,5308,5309,5], -[0,-7055,-10333,-664,-932,-10334,-1654], -[0,-4055,-4058,-1463,-2451,-3926], +[0,-3573,-11425,-13,-1,-11426,-3], +[0,-108,-331,-796,-439,-423], [1,3,5311], [0,5312,5313,5314,5], -[0,-2346,-10335], -[0,-2322,-8392,-10336,-7650,-6538,-994], -[0,-4055,-5827,-9292,-3215,-510,-6747], +[0,-469,-5820], +[0,-39,-2789,-5821,-926,-3528,-409], +[0,-108,-252,-1879,-74,-59,-763], [1,3,5316], [0,5317,5318,5319,8], -[0,-1681,-10337,-2177,-10338,-10339,-10340,-1563,-10341,-10342,-1562], -[0,-1780,-1788,-514,-664,-1654,-2210,-932,-739], -[0,-3175], +[0,-549,-11427,-16,-11428,-11429,-11430,-4238,-11431,-11432,-4237], +[0,-2394,-15,-2300,-13,-3,-27,-1,-541], +[0,-1490], [1,3,5321], [0,5322,5323,7,5], -[0,-23,-10343,-10344,-1816,-1863], -[0,-5694,-3037,-10345,-653,-928,-932,-940,-1640,-1645,-1805,-1942,-2127,-2358,-2410], +[0,-11,-11433,-11434,-325,-167], +[0,-3425,-5,-11435,-845,-87,-1,-12,-260,-92,-152,-4,-14,-2449,-2], [1,3,5325], [0,0,5326,5327,4], -[0,-3037,-3664,-8436,-2391,-2410,-2469], -[0,-4125,-3967,-3445,-10346,-2006,-5269,-3578,-2034,-3138], +[0,-5,-105,-1570,-172,-2,-30], +[0,-1302,-353,-46,-11436,-6,-501,-113,-235,-3172], [1,3,5329], [0,5330,5331,5332,6], -[0,-10347,-1834,-8578,-2062], -[0,-2359,-1127,-1989,-932,-589,-1132,-633,-1874,-2410,-1339,-10348,-1130,-1148,-10349], -[0,-5408,-6827,-10350], +[0,-3873,-1682,-2219,-198], +[0,-161,-54,-376,-1,-110,-164,-60,-391,-2,-413,-11437,-957,-341,-11438], +[0,-915,-2711,-5822], [1,3,5334], [0,0,5335,5336,6], -[0,-2200,-1415,-1344,-932,-2910,-2375,-2379,-1942,-2410,-23,-1534,-632,-726,-958,-940,-967,-1419,-428,-427,-948], -[0,-3175,-4865], +[0,-394,-8,-10,-1,-470,-57,-33,-4,-2,-11,-17,-938,-284,-9,-12,-25,-176,-19,-22,-246], +[0,-1490,-94], [1,3,5338], [0,0,5339,5340,4], -[0,-1003,-1405,-1654], -[0,-3175,-6422,-6420], +[0,-411,-66,-3], +[0,-1490,-833,-1539], [1,3,5342], [0,5343,5344,5345,6], -[0,-6134,-2359,-1107,-1640,-10351,-2550,-9968,-1548,-1576,-1650,-2125,-729,-679,-1645,-2228,-1336,-2231,-617,-1119,-5506, --1997,-2594,-10352,-5758], -[0,-664,-5735,-1654,-7243,-2210,-2518,-932,-793,-2491,-1978,-2293,-633,-1474,-1972,-2211,-10353,-667,-1482,-1413,-1481, --86,-665,-1472,-2174,-966,-958,-10354,-1483,-3471,-968,-1475,-10355,-943,-974,-1479,-9404,-3470,-1473], -[0,-1471,-10356,-4043,-1471,-3756,-3214,-3634,-4004,-8908,-10357], +[0,-1820,-161,-28,-260,-11439,-98,-2863,-23,-1973,-72,-7,-218,-117,-92,-810,-586,-130,-163,-324,-4946,-1114,-1134,-11440, +-1329], +[0,-13,-1533,-3,-1550,-27,-222,-1,-1618,-742,-160,-123,-60,-675,-181,-190,-11441,-1931,-187,-373,-389,-49,-239,-860,-122, +-75,-9,-5823,-414,-298,-67,-138,-5824,-83,-129,-213,-1032,-297,-1428], +[0,-79,-11442,-473,-79,-278,-45,-61,-76,-2812,-11443], [1,3,5347], [0,5348,5349,5350,6], -[0,-10358,-1548,-10359,-1645,-8016,-742], -[0,-1763,-627,-664,-1471,-1654,-2210,-2363,-5482,-932,-2114,-2491,-633,-2211,-2410,-1771,-1413,-1481,-6399,-964,-1475], -[0,-10360,-10361,-10362,-633], +[0,-5825,-23,-11444,-92,-5410,-457], +[0,-415,-1383,-13,-79,-3,-27,-418,-3413,-1,-126,-742,-60,-190,-2,-65,-373,-389,-3510,-256,-138], +[0,-480,-2870,-5826,-60], [1,3,5352], [0,5353,5354,5355,4], -[0,-1980,-2734,-10363], -[0,-1127,-932,-1159,-1131,-1152,-1542,-966,-1129,-958,-968,-943,-974,-1150,-1151], -[0,-10360,-10364,-2734,-10365], +[0,-521,-1717,-5827], +[0,-54,-1,-630,-546,-512,-343,-75,-1414,-9,-67,-83,-129,-1072,-1415], +[0,-480,-1196,-1717,-11445], [1,3,5357], [0,0,0,5358,4], -[0,-1471,-10360,-664,-1654,-2198], +[0,-79,-480,-13,-3,-81], [1,3,5360], [0,227,5361,5362,9], -[0,-664,-1471,-1654,-2210,-2250,-1482,-86,-2174,-3471,-9404,-3470], -[0,-10360,-10364,-10366], +[0,-13,-79,-3,-27,-97,-187,-49,-122,-298,-1032,-297], +[0,-480,-1196,-1582], [1,3,5364], [0,5365,5366,5367,5], -[0,-5086,-6029,-5087,-5088,-5089,-1645], -[0,-86,-3307,-9248,-3470,-3471,-7041,-664,-711,-932,-943,-958,-966,-968,-974,-1127,-1132,-1155,-1159,-1344,-10367,-1471, --10368,-1479,-1482,-10369,-1654,-7243,-2111,-2174,-2210,-2211], -[0,-10360,-10361,-10370,-4005,-1405], +[0,-2101,-3471,-1787,-2607,-2102,-92], +[0,-49,-63,-5637,-297,-298,-618,-13,-308,-1,-83,-9,-75,-67,-129,-54,-164,-958,-630,-10,-11446,-79,-11447,-213,-187,-11448, +-3,-1550,-416,-122,-27,-190], +[0,-480,-2870,-5828,-823,-66], [1,3,5369], [0,227,5370,5371,4], -[0,-1127,-1138,-1144,-1155,-1413,-1471,-1481,-1860], -[0,-10360,-10364,-4865,-6413,-10371,-10372,-10373,-10374,-7490,-10375,-10376,-10377,-10378,-10379,-10380], +[0,-54,-511,-175,-958,-373,-79,-389,-640], +[0,-480,-1196,-94,-2164,-11449,-11450,-11451,-11452,-5314,-11453,-11454,-11455,-11456,-11457,-11458], [1,3,5373], [0,5374,5375,5376,5], -[0,-10381], -[0,-664,-10382,-6134,-932,-943,-968,-974,-1127,-1131,-1132,-1152,-1159,-1163,-1471,-1542,-10383,-1972], -[0,-10360,-10364,-5799,-7489], +[0,-11459], +[0,-13,-11460,-1820,-1,-83,-67,-129,-54,-546,-164,-512,-630,-1416,-79,-343,-2871,-181], +[0,-480,-1196,-5008,-3616], [1,3,5378], [0,5379,5380,5381,4], -[0,-1401,-2518], -[0,-86,-3307,-3470,-3471,-7041,-1344,-1471,-1482,-1654,-1868,-2174,-2250], -[0,-1471,-3634,-10360,-10364,-10384], +[0,-856,-222], +[0,-49,-63,-297,-298,-618,-10,-79,-187,-3,-1251,-122,-97], +[0,-79,-61,-480,-1196,-5829], [1,3,5383], [0,34,5384,5385,5], -[0,-664,-6134,-932,-943,-968,-969,-974,-1127,-1129,-1131,-1149,-1150,-1151,-1152,-1159,-1163,-1471,-1542,-7243,-2210, --2211], -[0,-10360,-10364,-8996], +[0,-13,-1820,-1,-83,-67,-64,-129,-54,-1414,-546,-304,-1072,-1415,-512,-630,-1416,-79,-343,-1550,-27,-190], +[0,-480,-1196,-3755], [1,3,5387], [0,5388,5389,5390,5], -[0,-1413], -[0,-1127,-1344,-1471,-932,-1412,-86,-2174,-966,-958,-3471,-7041,-968,-943,-974,-1479,-3472,-9404,-3470], -[0,-10360,-10385,-1412], +[0,-373], +[0,-54,-10,-79,-1,-196,-49,-122,-75,-9,-298,-618,-67,-83,-129,-213,-749,-1032,-297], +[0,-480,-3874,-196], [1,3,5392], [0,228,5393,5394,6], -[0,-664,-932,-943,-968,-969,-974,-1127,-1129,-1131,-1150,-1152,-1155,-1159,-1471,-1474,-1475,-1479,-1489,-1542,-1654, --1658,-2210,-3470,-3471,-2174,-86,-3307,-1344], -[0,-10360,-10385,-1654], +[0,-13,-1,-83,-67,-64,-129,-54,-1414,-546,-1072,-512,-958,-630,-79,-675,-138,-213,-1237,-343,-3,-548,-27,-297,-298,-122, +-49,-63,-10], +[0,-480,-3874,-3], [1,3,5396], [0,5397,5398,5399,4], -[0,-668,-1574,-2269], -[0,-664,-1127,-1131,-1138,-1144,-1150,-1155,-1162,-1413,-1474,-1477,-1542,-1654,-1860], -[0,-10360,-10370,-1654,-664,-834,-8619], +[0,-20,-638,-139], +[0,-13,-54,-546,-511,-175,-1072,-958,-789,-373,-675,-1429,-343,-3,-640], +[0,-480,-5828,-3,-13,-203,-2796], [1,3,5401], [0,5402,5403,5404,4], -[0,-1548,-1860], -[0,-932,-943,-969,-974,-1127,-1129,-1131,-1150,-1152,-1155,-1159,-1413,-1471,-1481,-1542], -[0,-10360,-10364,-1859], +[0,-23,-640], +[0,-1,-83,-64,-129,-54,-1414,-546,-1072,-512,-958,-630,-373,-79,-389,-343], +[0,-480,-1196,-867], [1,3,5406], [0,0,5407,5408,10], -[0,-664,-1127,-1471,-1654,-1989,-932,-1159,-1131,-1481,-966,-958,-968,-943,-974,-1479], -[0,-1471,-10360,-10385,-1989], +[0,-13,-54,-79,-3,-376,-1,-630,-546,-389,-75,-9,-67,-83,-129,-213], +[0,-79,-480,-3874,-376], [1,3,5410], [0,5411,5412,5413,6], -[0,-679,-811], -[0,-23,-3412,-40,-932,-1413,-1471,-1475,-1481,-1483,-2127,-2128,-2129,-2131,-2137], -[0,-6505,-4795,-1471,-3209,-6024,-8257,-3862,-3277,-10361,-10360,-10386,-2127], +[0,-117,-1621], +[0,-11,-1140,-21,-1,-373,-79,-138,-389,-414,-14,-275,-985,-466,-347], +[0,-1829,-446,-79,-381,-657,-1864,-107,-608,-2870,-480,-11461,-14], [1,3,5415], [0,0,5416,5417,8], -[0,-1159,-1127,-1131,-1129], -[0,-10360,-10364,-10387], +[0,-630,-54,-546,-1414], +[0,-480,-1196,-5830], [1,3,5419], [0,5420,5421,5422,4], -[0,-10388,-5471,-4881], -[0,-86,-3307,-3470,-3471,-7041,-3048,-10389,-3037,-1344,-1412,-1471,-1481,-2174,-2410], -[0,-10360,-10364,-10390,-10391,-5471], +[0,-5831,-1324,-1315], +[0,-49,-63,-297,-298,-618,-191,-11462,-5,-10,-196,-79,-389,-122,-2], +[0,-480,-1196,-11463,-11464,-1324], [1,3,5424], [0,0,0,5425,4], -[0,-1471,-10360,-2210,-4215], +[0,-79,-480,-27,-317], [1,3,5427], [0,5428,5429,5430,5], -[0,-1119], -[0,-4035,-652,-932,-1413,-1471,-10392,-1475,-1481,-1942,-2127,-10393], -[0,-10360,-10361,-9454,-3214], +[0,-324], +[0,-898,-43,-1,-373,-79,-11465,-138,-389,-4,-14,-11466], +[0,-480,-2870,-5687,-45], [1,3,5432], [0,187,5433,5434,11], -[0,-664,-756,-1654,-1771,-1788,-2210,-2211], -[0,-10360,-6863], +[0,-13,-55,-3,-65,-15,-27,-190], +[0,-480,-1023], [1,3,5436], [0,5437,5438,48,8], -[0,-1107,-1645,-2508], -[0,-21,-23,-39,-40,-86,-3307,-7166,-533,-664,-665,-767,-932,-958,-967,-1344,-1405,-1412,-1415,-1471,-1474,-1475,-1482, --1491,-1534,-1626,-1654,-1939,-1942,-1978,-2251,-2501], +[0,-28,-92,-524], +[0,-48,-11,-449,-21,-49,-63,-1025,-86,-13,-239,-26,-1,-9,-25,-10,-66,-196,-8,-79,-675,-138,-187,-676,-17,-1102,-3,-234,-4, +-160,-134,-18], [1,3,5440], [0,0,27,5441,8], -[0,-10394,-1493,-10395,-4111,-10396,-10397,-10398,-10399,-1494], +[0,-3875,-3058,-11467,-902,-11468,-11469,-11470,-11471,-2366], [1,3,5443], [0,0,0,5444,6], -[0,-1494,-2063,-3103], +[0,-2366,-1256,-1488], [1,3,5446], [0,5447,5448,5449,6], -[0,-10400], -[0,-10401,-3653,-2581,-6486,-3664,-2125,-10402,-2384,-2469,-10403,-10404,-10405,-10406,-10407,-10408,-10409], -[0,-7372,-5846,-4634,-3324,-6495,-10410,-6005,-3445,-10411,-2071,-1671,-3742,-1691,-6321,-10412,-1724,-1582,-10413,-654], +[0,-11472], +[0,-5832,-2521,-329,-1543,-105,-7,-3876,-82,-30,-11473,-11474,-11475,-11476,-11477,-11478,-11479], +[0,-1851,-917,-1017,-443,-3519,-5833,-1166,-46,-11480,-688,-375,-1290,-550,-1169,-1034,-3069,-434,-3877,-4123], [1,3,5451], [0,0,5452,5453,4], -[0,-985,-2447], -[0,-5514,-687,-712,-714,-4000,-3974], +[0,-370,-1131], +[0,-243,-37,-217,-133,-201,-178], [1,3,5455], [0,5456,5457,5458,5], -[0,-985,-10414,-812,-1548,-8945,-2068,-2350,-10415,-713,-719,-1381,-2115,-1097,-10416], -[0,-1857,-1788,-2384,-664,-1410,-2322,-1344,-1654,-1691,-2210,-932,-1692,-2125,-879,-1658,-2245,-10417,-2379,-10418,-1942, --2320,-756,-767,-1464,-2211,-2410,-3037,-8946,-1534,-10419,-10420,-665,-2234,-10421,-958,-10422,-10423,-940,-967,-5984], -[0,-10424,-5101,-6321,-10425,-1691,-10426,-2245,-5378,-1682,-4258,-10427,-7641,-7773,-7685], +[0,-370,-5834,-35,-23,-5584,-1992,-2000,-2872,-1055,-58,-1964,-644,-1646,-3878], +[0,-595,-15,-82,-13,-1966,-39,-10,-3,-550,-27,-1,-1674,-7,-1063,-548,-813,-2873,-33,-2874,-4,-560,-55,-26,-1089,-190,-2, +-5,-5585,-17,-3879,-5835,-239,-147,-11481,-9,-11482,-11483,-12,-25,-3462], +[0,-2249,-702,-1169,-928,-550,-11484,-813,-3387,-1673,-908,-11485,-712,-768,-403], [1,3,5460], [0,5461,5462,5463,4], -[0,-8520,-1026,-10428,-1431,-1442,-1646,-10429,-1863,-1864,-10430,-2271,-2564], -[0,-237,-7057,-3660,-5686,-8523,-3046,-4879,-10431,-4651,-2392,-2410], -[0,-10432,-10433,-7711,-687,-10434,-3015,-6659,-3016,-10435,-10436,-8035,-8257,-6999,-5573,-3214,-7148,-10437,-10438, --10439,-10440,-10441,-5897,-9044,-3694,-2410,-10442,-10443,-7441,-10444], +[0,-5525,-226,-11486,-516,-101,-88,-11487,-167,-326,-3880,-601,-263], +[0,-663,-1842,-421,-761,-662,-526,-4828,-11488,-4776,-155,-2], +[0,-3881,-5836,-2201,-37,-11489,-693,-710,-2480,-5837,-11490,-5411,-1864,-660,-655,-45,-224,-11491,-11492,-11493,-2250, +-11494,-478,-5605,-650,-2,-11495,-11496,-2193,-5838], [1,3,5465], [0,0,5466,5467,6], -[0,-932,-1111,-10445,-1572], -[0,-775,-3589,-5387,-10366,-10384,-10446,-7489,-10387,-10447,-10448,-10449], +[0,-1,-204,-5839,-2375], +[0,-24,-1144,-653,-1582,-5829,-5840,-3616,-5830,-11497,-11498,-11499], [1,3,5469], [0,5470,0,5471,4], -[0,-1640,-2536,-812,-10450,-1801], -[0,-5817,-5937,-5940], +[0,-260,-565,-35,-11500,-680], +[0,-1330,-2144,-1165], [1,3,5473], [0,5474,5475,5476,4], -[0,-459,-736,-737,-6920,-10451,-7412,-907,-929,-1072,-10452,-1335,-1504,-1641,-1800,-1840,-2255,-2401,-2453], -[0,-652,-10453,-2226,-2250,-2293], -[0,-3578,-3994,-1334,-9668,-3161,-5401,-6854], +[0,-1044,-942,-846,-1840,-11501,-2742,-1218,-484,-669,-11502,-633,-2369,-344,-977,-735,-1263,-988,-989], +[0,-43,-5841,-1700,-97,-123], +[0,-113,-306,-103,-1194,-53,-356,-5190], [1,3,5478], [0,5479,5480,5481,5], -[0,-10454,-3734,-5586,-10455,-1070,-2400,-2564], -[0,-2832,-2581,-50,-8280,-10456,-3758,-8317,-10457,-4203,-1501,-2293,-2386,-7457,-2392,-2410], -[0,-1501,-10458,-6463,-4055,-10459,-3215,-4053], +[0,-11503,-3232,-4957,-5842,-955,-215,-263], +[0,-314,-329,-357,-1865,-11504,-3235,-3705,-11505,-1015,-433,-123,-561,-3612,-155,-2], +[0,-433,-5843,-2166,-108,-3882,-74,-570], [1,3,5483], [0,5484,5485,5486,11], -[0,-10455,-10460,-2401], -[0,-946,-1344,-1501,-1654,-1788,-2198,-2293,-2541], -[0,-10461,-4055,-10458,-1501,-10459], +[0,-5842,-11506,-988], +[0,-1404,-10,-433,-3,-15,-81,-123,-34], +[0,-11507,-108,-5843,-433,-3882], [1,3,5488], [0,0,5489,5490,5], -[0,-708,-1415,-1612,-2250], -[0,-1501,-5401,-10462], +[0,-149,-8,-1435,-97], +[0,-433,-356,-5844], [1,3,5492], [0,5493,5494,5495,6], -[0,-651,-668,-10463,-1800,-10464], -[0,-619,-652,-946,-1501,-10465,-10466,-2210,-2293,-2541], -[0,-1501,-5401,-3444,-1573], +[0,-454,-20,-11508,-977,-11509], +[0,-1927,-43,-1404,-433,-11510,-11511,-27,-123,-34], +[0,-433,-356,-748,-258], [1,3,5497], [0,5498,5499,5500,4], -[0,-812,-1504], -[0,-932,-943,-968,-974,-1405,-1501,-1508,-1654,-2198,-2293], -[0,-1501,-5401,-10467,-10468], +[0,-35,-2369], +[0,-1,-83,-67,-129,-66,-433,-4226,-3,-81,-123], +[0,-433,-356,-5845,-11512], [1,3,5502], [0,5503,5504,5505,10], -[0,-812,-1335,-1504,-1851], -[0,-1501,-1788,-668,-1344,-1654,-932,-1053,-2293,-10469,-2094,-1534,-86,-1448,-2099,-978,-3307], -[0,-1501,-5401,-10470,-3122], +[0,-35,-633,-2369,-553], +[0,-433,-15,-20,-10,-3,-1,-1638,-123,-11513,-146,-17,-49,-795,-1692,-151,-63], +[0,-433,-356,-3883,-442], [1,3,5507], [0,5508,5509,5510,11], -[0,-812,-10471], -[0,-932,-943,-958,-966,-968,-974,-1405,-1501,-1654,-2293], -[0,-1501,-5401,-6656,-5142,-10472], +[0,-35,-11514], +[0,-1,-83,-9,-75,-67,-129,-66,-433,-3,-123], +[0,-433,-356,-128,-914,-11515], [1,3,5512], [0,5513,5514,5515,4], -[0,-1717,-1974,-10473,-2071,-2550,-1548,-2286,-1004,-617,-10474], -[0,-664,-510,-1654,-2210,-2198,-2293,-710], -[0,-5418,-1986,-8615,-2071], +[0,-3068,-642,-11516,-688,-98,-23,-396,-40,-163,-11517], +[0,-13,-59,-3,-27,-81,-123,-455], +[0,-1530,-983,-2222,-688], [1,3,5517], [0,5518,5519,5520,4], -[0,-10475,-834,-932,-10476,-10477,-986,-10478,-1276,-1309,-1458,-1459,-1650,-2172,-2231,-2234,-2297,-10479], -[0,-707,-10480,-963,-10481,-2125,-2177], -[0,-4004], +[0,-11518,-203,-1,-11519,-11520,-583,-11521,-247,-1651,-2362,-1088,-72,-1462,-130,-147,-468,-11522], +[0,-334,-5846,-211,-11523,-7,-16], +[0,-76], [1,3,5522], [0,5523,5524,5525,5], -[0,-5895], -[0,-519,-2177,-10482,-2384,-2541], -[0,-10483,-9318,-1764,-7861,-5897,-10484,-10485,-3551], +[0,-1816], +[0,-51,-16,-5847,-82,-34], +[0,-5848,-715,-159,-2761,-478,-1583,-11524,-365], [1,3,5527], [0,0,5528,5529,4], -[0,-1464,-10486,-589,-10487,-10488,-1414,-1446,-1548,-1627,-1963,-10489,-2111,-10490,-2424], -[0,-9826,-5112,-6187,-6188,-2444], +[0,-1089,-11525,-110,-11526,-11527,-1967,-165,-23,-1670,-1686,-11528,-416,-11529,-250], +[0,-3842,-759,-574,-2156,-136], [1,3,5531], [0,0,5532,5533,9], -[0,-2247,-1344,-1471,-1654,-2210,-932,-10491,-2127,-10492,-10493,-2416,-1482,-1489,-1534,-10494,-10495,-10496,-1480,-4062, --1478,-10497,-1475,-1487,-1479,-1486,-10498,-10499], -[0,-10500,-6917], +[0,-1464,-10,-79,-3,-27,-1,-11530,-14,-11531,-11532,-112,-187,-1237,-17,-11533,-5849,-5850,-1090,-238,-1661,-5851,-138, +-861,-213,-731,-11534,-11535], +[0,-11536,-836], [1,3,5535], [0,0,5536,5537,10], -[0,-589,-1023], -[0,-1519,-10501,-7210,-10502,-2265,-10503], +[0,-110,-1224], +[0,-3059,-11537,-1846,-5852,-168,-11538], [1,3,5539], [0,0,5540,5541,6], -[0,-8511], -[0,-7210,-10504,-5538,-3276], +[0,-5524], +[0,-1846,-5853,-616,-566], [1,3,5543], [0,5544,0,5545,8], -[0,-1787,-1371,-2323,-1866,-2247,-2446,-668,-999,-1392,-1826,-2218,-4701,-2550,-10505,-815,-9809,-1831,-2125,-2177,-914, --1442,-1827,-2346,-10506,-1077,-1098,-1376,-1591,-10507,-5917,-10508,-715,-1399,-1418,-1645,-10509,-293,-1100,-1686, --2654,-2410,-10510,-755,-1108,-10511,-10512,-2202,-1363,-10513,-1769,-10514,-2115,-10515,-2267,-2551,-10516,-305,-8500, --4236,-10517,-10518,-10519,-1767, --280,-10520,-10521,-2530,-283,-1770,-4283,-4716,-2450,-10522,-10523,-10524,-10525,-10526], -[0,-1520,-10440,-10527], +[0,-1244,-728,-312,-1111,-1464,-125,-20,-118,-547,-552,-288,-1776,-98,-11539,-509,-5754,-1248,-7,-16,-1629,-101,-1110, +-469,-5854,-41,-486,-195,-733,-5855,-2653,-5856,-1390,-966,-857,-92,-11540,-664,-487,-1442,-313,-2,-11541,-386,-1413, +-5857,-11542,-879,-1653,-5858,-1677,-11543,-644,-3884,-395,-525,-11544,-665,-5521,-2078,-5859,-11545,-5860,-975, +-840,-5861,-1888,-1714,-1202,-1678,-1513,-2580,-1272,-11546,-5862,-3885,-3886,-11547], +[0,-1430,-2250,-3887], [1,3,5547], [0,5548,5549,5550,6], -[0,-10528,-8501,-2387], -[0,-350,-4062,-351,-427,-428,-10529,-10530,-664,-652,-668,-755,-767,-932,-1077,-6720,-1107,-1111,-1127,-1132,-1134,-1137, --1152,-1161,-1162,-10531,-1418,-10532,-10533,-9237,-1646,-1654,-10534,-1771,-1856,-10535,-1874,-1961,-10536,-2114,-2127, --2140,-2142,-2177,-2200,-2351,-2379,-2410,-5252], -[0,-10537,-10538,-10539,-775,-10540,-10541,-10542,-10543,-10544,-1521,-10545,-10546,-4730,-10547,-3215,-3277,-10548, --10549,-5553,-3770,-3271,-10550,-10551], +[0,-5863,-3724,-44], +[0,-77,-238,-62,-22,-19,-5864,-11548,-13,-43,-20,-386,-26,-1,-41,-5165,-28,-204,-54,-164,-240,-584,-512,-1647,-789,-11549, +-857,-5865,-5866,-5635,-88,-3,-5867,-65,-1449,-11550,-391,-171,-11551,-126,-14,-229,-305,-16,-394,-1468,-33,-2,-1525], +[0,-5868,-11552,-5869,-24,-11553,-5870,-11554,-5871,-5872,-219,-3888,-5873,-4791,-5874,-74,-608,-5875,-5876,-230,-568, +-1282,-11555,-11556], [1,3,5552], [0,0,5553,5554,4], -[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-533,-767,-774,-824,-825,-932,-940,-6929,-958,-959,-965,-967,-978,-1110,-1344, --1415,-1521,-10552,-1534,-1623,-1771,-1942,-2251,-2269,-2411,-2501], -[0,-2501,-5932,-1521,-10546,-10545,-775,-3277], +[0,-48,-11,-21,-49,-63,-50,-529,-315,-86,-26,-407,-150,-232,-1,-12,-617,-9,-145,-115,-25,-151,-56,-10,-8,-219,-11557,-17, +-259,-65,-4,-134,-139,-84,-18], +[0,-18,-831,-219,-5873,-3888,-24,-608], [1,3,5556], [0,5557,5558,229,4], -[0,-10553,-10554,-10555], -[0,-1788,-2322,-2446,-468,-571,-1274,-2250,-2410,-3037,-40,-10556,-10557], +[0,-11558,-11559,-11560], +[0,-15,-39,-125,-718,-777,-1420,-97,-2,-5,-21,-5877,-5878], [1,3,5560], [0,5561,5562,5563,8], -[0,-10559,-6127,-10560], -[0,-10561,-1788,-1107,-2322,-2331,-1032,-2125,-5420,-891,-1274,-1733,-2250,-767,-10562,-10563,-6128,-10564,-10565,-829, --10566,-10567], -[0,-10558,-1523], +[0,-11561,-2151,-11562], +[0,-11563,-15,-28,-39,-379,-1225,-7,-3394,-458,-1420,-590,-97,-26,-5880,-11564,-3484,-11565,-11566,-1215,-11567,-5881], +[0,-5879,-2374], [1,3,5565], [0,5566,5567,229,11], -[0,-9508,-10568,-10569,-10570,-10571,-10572], -[0,-1788,-2322,-465,-2210,-468,-1032,-5420,-10573,-10574,-1274,-2250,-10562,-633,-2151,-10575,-10576,-725,-10577,-10578, --829,-10556,-10567], +[0,-5700,-11568,-11569,-5882,-11570,-11571], +[0,-15,-39,-772,-27,-718,-1225,-3394,-11572,-11573,-1420,-97,-5880,-60,-1697,-5883,-3889,-309,-11574,-11575,-1215,-5877, +-5881], [1,3,5569], [0,0,5570,5571,11], -[0,-519,-10579,-10580,-10581,-10582,-10583,-10584,-1703,-10585,-2354,-2541], -[0,-1526,-10582,-10586,-10587,-2265,-7377,-834,-5922,-1087,-6547,-4310,-7378,-10588,-10589,-5554,-5572,-10590], +[0,-51,-3890,-11576,-11577,-5884,-11578,-5885,-3066,-11579,-1127,-34], +[0,-1093,-5884,-11580,-3891,-168,-5293,-203,-535,-1644,-5145,-3298,-1553,-5886,-3892,-193,-532,-5887], [1,3,5573], [0,5574,29,5575,10], -[0,-280,-4280,-10591,-834,-1645,-1767,-1831,-2323], -[0,-1764,-1776,-4303,-687,-834], +[0,-840,-3290,-11581,-203,-92,-975,-1248,-312], +[0,-159,-1679,-2565,-37,-203], [1,3,5577], [0,5578,5579,5580,5], -[0,-280,-4283,-283,-680,-1767,-1831,-1957,-10592,-2059,-2177,-2202,-4297], -[0,-4298,-4299,-4300,-4286,-668,-7755,-10593,-2319], -[0,-1764,-1776,-4303,-687,-4304,-1528], +[0,-840,-1513,-1202,-481,-975,-1248,-980,-5888,-597,-16,-879,-3293], +[0,-755,-3294,-756,-4736,-20,-3654,-11582,-85], +[0,-159,-1679,-2565,-37,-3295,-3060], [1,3,5582], [0,5583,29,5584,5], -[0,-280], -[0,-1764,-1776,-4303,-687,-5889,-10594,-10595], +[0,-840], +[0,-159,-1679,-2565,-37,-402,-11583,-11584], [1,3,5586], [0,0,5587,5588,4], -[0,-21,-23,-3367,-3350,-40,-43,-4062,-3266,-539,-664,-757,-10596,-767,-10597,-1405,-1415,-10598,-10599,-1646,-1654,-1771, --1788,-10600,-2104,-2125,-2127,-2387], -[0,-9917,-9918,-6240,-3962,-3162,-10601], +[0,-48,-11,-2035,-3191,-21,-174,-238,-206,-333,-13,-582,-11585,-26,-11586,-66,-8,-11587,-11588,-88,-3,-65,-15,-11589, +-1693,-7,-14,-44], +[0,-3846,-1887,-1538,-352,-95,-11590], [1,3,5590], [0,5591,5592,5593,6], -[0,-1015,-1048,-10602,-10603,-1396,-2068,-2114], -[0,-711,-932,-937,-940,-966,-1001,-1654,-1788,-2210], -[0,-4376], +[0,-432,-1409,-11591,-11592,-1083,-1992,-126], +[0,-308,-1,-782,-12,-75,-338,-3,-15,-27], +[0,-1770], [1,3,5595], [0,0,5596,5597,4], -[0,-2581,-3136,-3037,-3806,-755,-1415,-2410,-2447], -[0,-755,-727,-3870,-7282], +[0,-329,-29,-5,-2540,-386,-8,-2,-1131], +[0,-386,-335,-1150,-766], [1,3,5599], [0,0,0,5600,6], -[0,-10604,-7920,-10605,-3264,-1437,-10606,-10607,-2006,-2398,-2435], +[0,-5889,-2766,-11593,-31,-248,-1584,-11594,-6,-2452,-200], [1,3,5602], [0,5603,5604,5605,8], -[0,-719,-1536,-1639,-3610,-3535,-2548], -[0,-8280,-50,-86,-3307,-190,-3664,-6593,-10608,-767,-932,-940,-965,-967,-4814,-1344,-1661,-1942,-2177,-2410,-2469], -[0,-7148,-5889,-10609,-932,-1942,-2281,-707,-8169,-7440,-3276,-5874], +[0,-58,-1663,-361,-2045,-1142,-262], +[0,-1865,-357,-49,-63,-50,-105,-922,-11595,-26,-1,-12,-115,-25,-911,-10,-1439,-4,-16,-2,-30], +[0,-224,-402,-11596,-1,-4,-182,-334,-1186,-293,-566,-534], [1,3,5607], [0,5608,5609,5610,4], -[0,-10610,-10611,-1398,-1399,-10612,-10613,-10614,-1826,-2153], -[0,-708,-826,-9464,-1534,-1574,-1788,-1939,-2239,-5747], -[0,-687,-4107,-4108,-4109,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], +[0,-11597,-11598,-1656,-966,-11599,-11600,-11601,-552,-496], +[0,-149,-627,-3796,-17,-638,-15,-234,-812,-2643], +[0,-37,-824,-1301,-3266,-178,-901,-201,-902,-474,-2071,-2555,-362,-2072,-825,-2073], [1,3,5612], [0,5613,5614,158,6], -[0,-696,-713,-996,-1575,-2124,-2528], -[0,-5745,-2153,-5747], +[0,-1934,-1055,-951,-1432,-1695,-890], +[0,-4996,-496,-2643], [1,3,5616], [0,5617,5618,7,8], -[0,-10615,-10616,-3297], -[0,-10617,-10618,-4686,-10619,-4690,-2387], +[0,-11602,-11603,-3185], +[0,-11604,-11605,-4782,-11606,-3310,-44], [1,3,5620], [0,5621,5622,5623,5], -[0,-1548,-1646,-632,-10620,-731], -[0,-1654,-2210,-932,-1663,-1405], -[0,-475,-6205,-5142,-3844,-3113], +[0,-23,-88,-938,-11607,-1391], +[0,-3,-27,-1,-1440,-66], +[0,-184,-5083,-914,-216,-694], [1,3,5625], [0,5626,5627,5628,6], -[0,-1812,-754,-2178,-714,-1676,-729,-679,-10621,-2186,-994,-1792,-10622,-9502], -[0,-1654,-932,-1452,-2293], -[0,-3577,-3113,-3673,-3844,-1334,-687], +[0,-1247,-368,-808,-133,-678,-218,-117,-11608,-1122,-409,-241,-3893,-5699], +[0,-3,-1,-119,-123], +[0,-192,-694,-611,-216,-103,-37], [1,3,5630], [0,5631,5632,7,4], -[0,-679,-10623,-6696,-2531], -[0,-711,-1654,-2198,-2210], +[0,-117,-5890,-2702,-205], +[0,-308,-3,-81,-27], [1,3,5634], [0,5635,5636,5637,4], -[0,-6838,-1107,-10532,-1442,-9641,-1542,-1548], -[0,-1127,-1144,-1149,-9650,-9280,-1158,-1972,-2210], -[0,-9219,-2548,-6838,-1127,-727], +[0,-2176,-28,-5865,-101,-5723,-343,-23], +[0,-54,-175,-304,-5725,-3773,-3022,-181,-27], +[0,-268,-262,-2176,-54,-335], [1,3,5639], [0,5640,5641,5642,4], -[0,-506,-1686,-1872,-10624], -[0,-1127,-1132,-2889,-2541], -[0,-3015,-1107,-1127,-6994,-5572,-10625,-5574,-4792,-8906], +[0,-1046,-1442,-1112,-3894], +[0,-54,-164,-4453,-34], +[0,-693,-28,-54,-2180,-532,-11609,-1022,-425,-2811], [1,3,5644], [0,0,5645,7,6], -[0,-756,-932,-966,-1415,-1942,-2251], +[0,-55,-1,-75,-8,-4,-134], [1,3,5647], [0,5648,5649,5650,4], -[0,-10293,-1586,-10626,-10627,-10628,-10629,-10630,-10631,-2783,-10632,-10633,-10634,-10635,-10636,-10637,-10638,-10639], -[0,-1729,-2337], -[0,-7646,-3844,-3578,-3673,-3577,-3113,-754,-1640,-3691,-4215,-3690,-1971,-1586,-3445,-3100,-10640,-1339,-1334,-5735, --1342], +[0,-2869,-1669,-11610,-11611,-11612,-11613,-11614,-11615,-4418,-11616,-11617,-11618,-11619,-11620,-11621,-11622,-5891], +[0,-188,-1467], +[0,-1557,-216,-113,-611,-192,-694,-368,-260,-422,-317,-100,-596,-1669,-46,-52,-5892,-413,-103,-1533,-388], [1,3,5652], [0,5653,5654,5655,4], -[0,-10347], -[0,-527,-528,-534,-535,-6079,-559,-10641,-571,-10642,-647,-754,-940,-1127,-5974,-1130,-1136,-1137,-1148,-1149,-10643, --1152,-1655,-10644,-7845,-1161,-10645,-7848,-1344,-1534,-1542,-1654,-1942,-10646,-5508,-2410,-2416,-2501,-2505], -[0,-10647,-10648,-6005,-10649], +[0,-3873], +[0,-162,-91,-96,-270,-3479,-321,-11623,-777,-11624,-1385,-368,-12,-54,-3458,-957,-629,-584,-341,-304,-11625,-512,-1671, +-5893,-3659,-1647,-5894,-3660,-10,-17,-343,-3,-4,-11626,-3415,-2,-112,-18,-173], +[0,-11627,-11628,-1166,-11629], [1,3,5657], [0,5658,27,7,11], -[0,-523,-812,-10650,-2550], +[0,-194,-35,-11630,-98], [1,3,5660], [0,5661,5662,5663,4], -[0,-755,-812,-1026,-10651,-2550], -[0,-528,-6048,-554,-558,-559,-849,-869,-932,-943,-958,-959,-966,-968,-972,-974,-1415,-1806,-10652,-2177], -[0,-10653,-10654,-5880,-10655,-7148,-2552,-1764,-8170,-7107,-1838], +[0,-386,-35,-226,-11631,-98], +[0,-91,-5059,-1922,-253,-321,-1394,-946,-1,-83,-9,-145,-75,-67,-724,-129,-8,-1246,-2875,-16], +[0,-11632,-11633,-2141,-3895,-224,-692,-159,-577,-711,-166], [1,3,5665], [0,0,0,5666,4], -[0,-3209,-10656,-2444], +[0,-381,-2876,-136], [1,3,5668], [0,0,0,5669,4], -[0,-3184,-3209,-10656,-2444], +[0,-349,-381,-2876,-136], [1,3,5671], [0,0,0,5672,10], -[0,-10657,-7370], +[0,-404,-1850], [1,3,5674], [0,0,0,5675,4], -[0,-10657,-656], +[0,-404,-430], [1,3,5677], [0,0,0,5678,5], -[0,-10657,-10658], +[0,-404,-11634], [1,3,5680], [0,0,0,5681,4], -[0,-10657,-811], +[0,-404,-1621], [1,3,5683], [0,0,0,5684,5], -[0,-10657,-10659], +[0,-404,-2877], [1,3,5686], [0,0,0,5687,5], -[0,-10657,-5841], +[0,-404,-2137], [1,3,5689], [0,0,0,5690,5], -[0,-10657,-6283], +[0,-404,-2160], [1,3,5692], [0,0,0,5693,9], -[0,-10657,-9052], +[0,-404,-1874], [1,3,5695], [0,0,0,5696,9], -[0,-10657,-10660], +[0,-404,-11635], [1,3,5698], [0,0,0,5699,4], -[0,-10657,-10661], +[0,-404,-5895], [1,3,5701], [0,0,0,5702,4], -[0,-10657,-10662], +[0,-404,-11636], [1,3,5704], [0,0,0,5705,4], -[0,-1548,-10657,-10656,-2444], +[0,-23,-404,-2876,-136], [1,3,5707], [0,0,0,5708,5], -[0,-10657,-10663], +[0,-404,-11637], [1,3,5710], [0,0,0,5711,4], -[0,-10657,-10664], +[0,-404,-11638], [1,3,5713], [0,0,0,5714,4], -[0,-10657,-6917], +[0,-404,-836], [1,3,5716], [0,0,0,5717,10], -[0,-10657,-5913], +[0,-404,-3452], [1,3,5719], [0,0,0,5720,4], -[0,-10657,-1631], +[0,-404,-491], [1,3,5722], [0,0,0,5723,4], -[0,-10657,-10665], +[0,-404,-5896], [1,3,5725], [0,0,0,5726,5], -[0,-10657,-10666], +[0,-404,-11639], [1,3,5728], [0,0,0,5729,5], -[0,-10657,-8127], +[0,-404,-2771], [1,3,5731], [0,5732,0,5733,4], -[0,-9496,-9497], -[0,-10657,-3110], +[0,-5696,-5697], +[0,-404,-277], [1,3,5735], [0,0,0,5736,5], -[0,-10657,-7329], +[0,-404,-2187], [1,3,5738], [0,0,0,5739,4], -[0,-10657,-10667], +[0,-404,-11640], [1,3,5741], [0,5742,5743,5744,5], -[0,-6703,-8038,-922,-7219,-10668,-10669,-10670], -[0,-1788,-2322,-1344,-10671,-932,-4896,-10672,-1534,-6707,-6709,-6706,-6708], -[0,-1573,-3444,-812,-648,-2520], +[0,-5160,-576,-1401,-3586,-11641,-11642,-5897], +[0,-15,-39,-10,-11643,-1,-4835,-11644,-17,-3539,-3541,-3538,-3540], +[0,-258,-748,-35,-1210,-564], [1,3,5746], [0,5747,5748,5749,5], -[0,-8416,-6861], -[0,-2541,-519,-2384,-2269], -[0,-4112,-687,-7095,-3958,-8132,-8618,-8619,-8620,-1040,-8621,-7084,-1573,-5545,-3974,-3973], +[0,-3716,-2716], +[0,-34,-51,-82,-139], +[0,-474,-37,-1343,-299,-2772,-3730,-2796,-5545,-510,-5546,-764,-258,-384,-178,-1295], [1,3,5751], [0,5752,5753,5754,4], -[0,-480,-690,-2219,-2269,-2528], -[0,-3037,-2267,-10673,-2384,-6786,-2541], -[0,-1573,-3444,-5545,-687,-3974,-4110,-4000,-5550,-10674,-10675,-10676,-8991,-3973,-1959,-10677,-5176], +[0,-841,-1616,-2429,-139,-890], +[0,-5,-395,-11645,-82,-3552,-34], +[0,-258,-748,-384,-37,-178,-901,-201,-267,-2878,-5898,-11646,-5594,-1295,-362,-3896,-500], [1,3,5756], [0,5757,5758,5759,5], -[0,-10678,-812,-7142,-2124,-10679], -[0,-86,-3307,-10680,-5902,-9818,-932,-934,-940,-8246,-958,-967,-1077,-1344,-1392,-1788,-1942,-1972,-2319,-2410], -[0,-5545,-1573,-6459,-3966], +[0,-11647,-35,-3579,-1695,-11648], +[0,-49,-63,-11649,-5024,-5756,-1,-185,-12,-2785,-9,-25,-41,-10,-547,-15,-4,-181,-85,-2], +[0,-384,-258,-5126,-144], [1,3,5761], [0,0,5762,5763,5], -[0,-9569,-3037,-1127,-1132,-1134,-1136,-1137,-10681,-1144,-1148,-1149,-10682,-10683,-1412,-2379,-2410], -[0,-1573,-3444,-5545,-4865], +[0,-5712,-5,-54,-164,-240,-629,-584,-11650,-175,-341,-304,-5899,-11651,-196,-33,-2], +[0,-258,-748,-384,-94], [1,3,5765], [0,0,5766,5767,10], -[0,-6132,-1942,-2410], -[0,-10684,-1578,-10685], +[0,-5081,-4,-2], +[0,-2879,-1974,-11652], [1,3,5769], [0,5770,5771,5772,6], -[0,-888,-828,-10686,-510,-812,-10330,-1004,-10687,-583,-615,-1369,-1752,-617,-2185,-10688,-10689,-10690,-10691,-10692, --2425,-10693,-10694,-10695,-10696], -[0,-1788,-664,-1127,-1471,-1654,-2210,-2518,-932,-756,-1132,-10697,-2293,-633,-838,-2211,-1155,-1482,-1152,-744,-10698, --10699,-1010,-1130,-1156,-1472,-10700,-1149,-10701,-1148,-10354,-10702,-1475,-10355,-10703,-1479,-7707], -[0,-3578,-5728,-3691,-3690,-1004,-2118,-1501,-6120,-7107,-5378,-1691,-7684,-6857,-1671,-10704,-1682,-10425,-6321,-2227, --10705,-3161,-3162,-10706], +[0,-337,-1062,-5900,-59,-35,-3872,-40,-11653,-2305,-114,-1080,-1676,-163,-1699,-11654,-11655,-5901,-11656,-11657,-1271, +-11658,-11659,-5902,-11660], +[0,-15,-13,-54,-79,-3,-27,-222,-1,-55,-164,-2251,-123,-60,-1393,-190,-958,-187,-512,-581,-11661,-11662,-850,-957,-959, +-860,-11663,-304,-11664,-341,-5823,-11665,-138,-5824,-11666,-213,-3650], +[0,-113,-1161,-422,-100,-40,-4307,-433,-832,-711,-3387,-550,-1347,-1341,-375,-2880,-1673,-928,-1169,-3105,-5903,-53,-95, +-5904], [1,3,5774], [0,5775,5776,196,5], -[0,-3187], -[0,-633,-913,-2319], +[0,-2490], +[0,-60,-1944,-85], [1,3,5778], [0,5779,5780,5781,9], -[0,-10707], -[0,-2392,-1344,-2331,-932,-1548,-825,-2379,-2410,-3037,-3044,-3617,-86,-10708,-10709,-5918,-10710,-3307], -[0,-7685,-7773,-891,-10711,-10712,-1055,-4182,-8427,-10713,-10714,-4865,-985], +[0,-11667], +[0,-155,-10,-379,-1,-23,-232,-33,-2,-5,-143,-264,-49,-11668,-5905,-1164,-11669,-63], +[0,-403,-768,-458,-5906,-5907,-1411,-1304,-1191,-11670,-11671,-94,-370], [1,3,5783], [0,0,5784,5785,5], -[0,-3037,-589,-928,-1610,-1650,-1942,-2319,-2386,-2402], -[0,-10715,-10413,-3324], +[0,-5,-110,-87,-227,-72,-4,-85,-561,-124], +[0,-11672,-3877,-443], [1,3,5787], [0,0,5788,5789,10], -[0,-3561,-407,-3667,-2127,-2132,-2410,-2466,-2469,-10716,-10717,-10718], -[0,-10719,-10720,-10721,-10722,-10723,-10724,-10725,-10726,-10727], +[0,-237,-153,-3223,-14,-417,-2,-104,-30,-11673,-11674,-11675], +[0,-11676,-11677,-11678,-11679,-11680,-3897,-11681,-11682,-11683], [1,3,5791], [0,5792,5793,5794,9], -[0,-510,-596,-10728,-1696], -[0,-756,-1405,-1650,-1654,-1657,-2198], -[0,-6527,-640,-10729,-1958,-10095,-7069,-7068,-9235,-8640,-7715,-8642,-7066,-10730,-10731,-7334,-10732,-10733,-6337, --10502,-10734,-10735,-10736,-4162,-10737,-10738,-10739,-10740,-10741], +[0,-59,-667,-11684,-801], +[0,-55,-66,-72,-3,-589,-81], +[0,-292,-294,-11685,-286,-2248,-2727,-5236,-1193,-1572,-621,-1349,-2726,-11686,-11687,-1552,-5908,-5909,-3501,-5852, +-11688,-11689,-11690,-4708,-11691,-5910,-5911,-11692,-11693], [1,3,5796], [0,5797,5798,5799,5], -[0,-10742,-10743,-6789,-10508,-717,-718,-10744,-10293,-1501,-10745,-1805,-1982,-6791,-7576], -[0,-1448,-10639,-1729,-10746,-2337], -[0,-1586,-3844,-1334,-5735,-1342,-3445,-1339,-7646,-3578], +[0,-11694,-11695,-1547,-5856,-2328,-2329,-11696,-2869,-433,-5912,-152,-1456,-3553,-2197], +[0,-795,-5891,-188,-11697,-1467], +[0,-1669,-216,-103,-1533,-388,-46,-413,-1557,-113], [1,3,5801], [0,5802,5803,5804,8], -[0,-668,-715,-812,-910,-5672,-10415,-10747,-1040,-1075,-1286,-10748,-1292,-1380,-1442,-10521,-10749,-1650,-1816,-1951, --5353,-4242,-2098,-2101,-10750,-3669,-2359,-7699,-2427,-7669,-2429,-5356,-2446,-5358,-2518,-2530,-10751,-2550], -[0,-10752,-3198,-5334,-3660,-10753,-10754,-3037,-3628,-4231,-3738,-10755,-9284,-3041,-767,-8364,-2218,-2269,-2410,-2447], -[0,-1599,-10756,-10757,-3634,-856], +[0,-20,-1390,-35,-543,-1812,-2872,-11698,-510,-1640,-1649,-11699,-726,-729,-101,-1888,-3898,-72,-325,-871,-2129,-906,-599, +-806,-11700,-3224,-161,-2754,-135,-1559,-348,-1157,-125,-502,-222,-1714,-5913,-98], +[0,-11701,-169,-251,-421,-11702,-11703,-5,-750,-701,-698,-2881,-3774,-419,-26,-5481,-288,-139,-2,-1131], +[0,-99,-11704,-11705,-61,-42], [1,3,5806], [0,5807,5808,5809,8], -[0,-3115], -[0,-190,-351,-3561,-589,-8349,-740,-932,-1942,-2910,-2127,-2232,-2234,-2469], -[0,-2265,-10758,-6915,-7651,-6431], +[0,-1729], +[0,-50,-62,-237,-110,-1568,-385,-1,-4,-470,-14,-811,-147,-30], +[0,-168,-11706,-2179,-1181,-5119], [1,3,5811], [0,5812,5813,5814,6], -[0,-2531,-523,-1449,-2387,-997,-1548,-1388,-3679,-7967], -[0,-932,-2402,-4204,-2410,-3037,-1771,-4647,-3044,-428,-4659,-10759,-427], -[0,-10760,-8911,-2410,-840,-4601,-9111,-3214,-10761,-10762,-10763,-10764,-10765,-9840,-10766,-10767,-7085,-10768,-10769, --856,-10770,-10771,-1589], +[0,-205,-194,-78,-44,-410,-23,-1965,-3225,-1561], +[0,-1,-124,-475,-2,-5,-65,-614,-143,-19,-4778,-11707,-22], +[0,-11708,-2226,-2,-2997,-476,-5616,-45,-11709,-11710,-11711,-11712,-11713,-2858,-11714,-11715,-1342,-11716,-11717,-42, +-5914,-11718,-4241], [1,3,5816], [0,5817,5818,5819,4], -[0,-668,-1015,-1111,-2462,-1686,-1849,-2271], -[0,-1127,-1654,-2198,-1132], -[0,-622,-1168,-7419,-9219], +[0,-20,-432,-204,-562,-1442,-492,-601], +[0,-54,-3,-81,-164], +[0,-1050,-32,-661,-268], [1,3,5821], [0,0,5822,5823,4], -[0,-4035,-3037,-519,-1119,-10772,-2331,-2384,-2541], -[0,-8988,-1650,-9218,-7411,-7410,-7421,-7420,-1847,-8807,-6370,-10773,-10774,-7371,-8990,-1076,-7422,-7000], +[0,-898,-5,-51,-324,-11719,-379,-82,-34], +[0,-2814,-72,-1576,-3607,-3606,-427,-1027,-249,-1573,-1170,-11720,-11721,-838,-2815,-303,-1555,-3567], [1,3,5825], [0,0,0,5826,5], -[0,-9218], +[0,-1576], [1,3,5828], [0,5829,5830,5831,4], -[0,-4733,-503,-578,-615,-10775,-1468,-10776,-1850,-2424,-2538], -[0,-3037,-633,-10777,-10778,-932,-10779,-1654,-2330,-2410,-2416], -[0,-8703,-3264,-10780,-10781,-1599,-3437], +[0,-1310,-1204,-1608,-114,-11722,-3057,-11723,-1249,-250,-1274], +[0,-5,-60,-11724,-11725,-1,-11726,-3,-603,-2,-112], +[0,-5553,-31,-5915,-1889,-99,-1000], [1,3,5833], [0,5834,5835,5836,6], -[0,-3698,-6486,-10782,-10783,-10784,-10785,-10786,-10787,-10788,-10789,-469,-583,-668,-3910,-3911,-693,-9229,-9759,-1442, --1465,-1540,-1658,-1692,-1729,-1753,-1851,-1857,-1878,-2080,-2153,-2193,-2223,-2245,-2409,-10790,-2435], -[0,-10791,-10792,-4353,-10793,-10794,-2980,-8850,-10795,-3617,-3660,-4201,-5363,-4203,-427,-428,-932,-940,-967,-1076, --1415,-1847,-1942,-2234,-2293,-2375,-2376,-2383,-2410], -[0,-3445,-3690,-3691,-3967,-2410,-7685,-10796,-10797,-7643,-10798,-10799,-10800,-10801,-10802,-3742,-10425,-1691,-2409, --5406,-6120,-3173,-10803,-6005,-5940,-10804,-10805,-10806,-10807,-10808,-10809,-6113,-10810,-1594], +[0,-1289,-1543,-5916,-11727,-5917,-11728,-5918,-11729,-5919,-5920,-183,-2305,-20,-3251,-2546,-940,-2234,-3835,-101,-797, +-1094,-548,-1674,-188,-285,-553,-595,-554,-598,-496,-689,-739,-813,-2002,-11730,-200], +[0,-5921,-11731,-4761,-5922,-11732,-4472,-5566,-11733,-264,-421,-1014,-1806,-1015,-22,-19,-1,-12,-25,-303,-8,-249,-4,-147, +-123,-57,-214,-815,-2], +[0,-46,-100,-422,-353,-2,-403,-5923,-11734,-2199,-11735,-11736,-11737,-11738,-5924,-1290,-928,-550,-2002,-1808,-832,-695, +-11739,-1166,-1165,-11740,-11741,-11742,-5925,-11743,-5926,-5077,-3899,-2377], [1,3,5838], [0,0,5839,5840,5], -[0,-3244,-2658,-250,-252,-254,-10811,-10812,-3044,-3037,-3040,-3052,-427,-428,-703,-784,-932,-10813,-970,-1548,-2634, --1889,-1891,-1906,-10814,-10815,-1942,-2006,-2019,-2193,-4245,-2592,-2391,-2410], -[0,-3160,-10816,-10817,-3824,-10818,-10819,-2006,-10820,-2410,-3214,-3577,-3100,-3477,-3160,-10821,-4015,-7566,-10822, --3095], +[0,-290,-4378,-4073,-4074,-4075,-5927,-11744,-143,-5,-47,-89,-22,-19,-302,-369,-1,-3900,-186,-23,-242,-38,-682,-555, +-11745,-2882,-4,-6,-36,-689,-907,-2016,-172,-2], +[0,-102,-11746,-3901,-1294,-11747,-11748,-6,-11749,-2,-45,-192,-52,-2508,-102,-11750,-4684,-2750,-11751,-131], [1,3,5842], [0,0,5843,7,5], -[0,-8392,-8394,-8393,-994,-8388], +[0,-2789,-3713,-2790,-409,-1868], [1,3,5845], [0,0,5846,5847,6], -[0,-3037,-427,-428,-3664,-518,-652,-932,-935,-948,-1449,-10823,-2162,-2281,-3436,-2410,-2466,-6859,-2469], -[0,-10824,-3004,-3862,-10825,-5553], +[0,-5,-22,-19,-105,-157,-43,-1,-949,-246,-78,-11752,-80,-182,-2505,-2,-104,-923,-30], +[0,-11753,-4479,-107,-11754,-230], [1,3,5849], [0,5850,71,5851,4], -[0,-1758], -[0,-1599,-10826,-3272], +[0,-463], +[0,-99,-11755,-363], [1,3,5853], [0,5854,5855,5856,5], -[0,-503,-3223,-10827,-10828,-10829,-10830], -[0,-3326,-350,-351,-3266,-5514,-589,-652,-664,-932,-943,-1004,-1103,-1304,-1429,-3245,-1602,-3650,-1603,-3427,-10831, --10832,-10833,-10834,-3651,-3668,-1654,-10835,-1708,-2127,-2195,-2293], -[0,-1599,-3215,-8630,-1600,-10836], +[0,-1204,-472,-11756,-11757,-11758,-11759], +[0,-207,-77,-62,-206,-243,-110,-43,-13,-1,-83,-40,-340,-372,-1236,-2494,-1239,-3222,-1097,-4559,-5928,-11760,-11761,-5929, +-2520,-2524,-3,-5930,-1675,-14,-276,-123], +[0,-99,-74,-1192,-220,-2883], [1,3,5858], [0,0,5859,5860,8], -[0,-3234,-519,-3425,-1637,-2234,-2250], -[0,-1599,-1600,-10836,-5147,-10837], +[0,-1737,-51,-1492,-677,-147,-97], +[0,-99,-220,-2883,-2609,-3902], [1,3,5862], [0,0,230,5863,5], -[0,-10836,-1600,-1599], +[0,-2883,-220,-99], [1,3,5865], [0,0,230,5866,8], -[0,-10836,-1600,-1599,-10838,-10839,-10840,-10841], +[0,-2883,-220,-99,-2252,-11762,-3903,-5931], [1,3,5868], [0,5869,5870,5871,4], -[0,-719,-883,-1015,-1304,-1860,-2102,-10842,-2347,-2359], -[0,-756,-1405,-10843,-2250,-2322], -[0,-1599,-6528,-5845,-3110], +[0,-58,-1397,-432,-372,-640,-1116,-11763,-69,-161], +[0,-55,-66,-11764,-97,-39], +[0,-99,-1171,-477,-277], [1,3,5873], [0,0,5874,5875,4], -[0,-3037,-652,-668,-1942,-2094,-2100,-2269,-2399,-2410,-2541], -[0,-9846,-1599,-10844,-4002,-6724,-5554], +[0,-5,-43,-20,-4,-146,-261,-139,-236,-2,-34], +[0,-2859,-99,-5932,-752,-3543,-193], [1,3,5877], [0,0,5878,5879,11], -[0,-7057,-3037,-3040,-3052,-10845,-928,-2006,-2019,-2034,-10106,-10846,-2410,-2476], -[0,-1599,-10847,-2006,-1940,-4146,-2476,-5173,-3944,-9608,-10848,-2034,-3264], +[0,-1842,-5,-47,-89,-11765,-87,-6,-36,-235,-5801,-5933,-2,-73], +[0,-99,-11766,-6,-494,-904,-73,-1319,-897,-2846,-11767,-235,-31], [1,3,5881], [0,5882,88,5883,4], -[0,-725,-10849,-1125,-10850,-10851,-10852,-1646,-10853,-9323,-2102,-10854,-9403], -[0,-10837,-8630,-3671,-10855,-856,-10856,-10857,-9409,-10858,-1599,-3437,-3862,-4328,-4846,-2102,-10859,-7650,-4065,-4002, --10860,-10861,-10862,-6234], +[0,-309,-11768,-670,-11769,-11770,-11771,-88,-11772,-5656,-1116,-5934,-5676], +[0,-3902,-1192,-399,-1890,-42,-11773,-3904,-2838,-5935,-99,-1000,-107,-1764,-1314,-1116,-11774,-926,-2069,-752,-11775, +-11776,-11777,-1823], [1,3,5885], [0,5886,5887,5888,5], -[0,-1638,-10863,-10864,-10865,-10866,-10867,-10868,-10869,-2267], -[0,-190,-3748,-469,-519,-652,-2736,-932,-960,-965,-971,-978,-10870,-1111,-1442,-8274,-1461,-1600,-10831,-10834,-3651, --10871,-8345,-1771,-2335,-2362,-2410,-2501,-2503], -[0,-1599,-7148,-3437,-10872,-1608], +[0,-1436,-5936,-11778,-11779,-11780,-11781,-11782,-2253,-395], +[0,-50,-315,-183,-51,-43,-3144,-1,-180,-115,-784,-151,-11783,-204,-101,-3697,-636,-220,-5928,-5929,-2520,-11784,-2788,-65, +-397,-886,-2,-18,-93], +[0,-99,-224,-1000,-11785,-973], [1,3,5890], [0,5891,5892,5893,10], -[0,-719,-822,-1353,-1442,-1461,-10873,-1608,-1600,-1645,-10874,-10430,-2654], -[0,-519,-8345,-2541], -[0,-1599,-1608,-687,-5732], +[0,-58,-1623,-460,-101,-636,-5937,-973,-220,-92,-11786,-3880,-313], +[0,-51,-2788,-34], +[0,-99,-973,-37,-762], [1,3,5895], [0,0,5896,5897,4], -[0,-2832,-10875,-10876,-7040,-3471,-3472,-7041,-7042,-674,-8630,-767,-5382,-928,-10877,-932,-1304,-1600,-10878,-10879, --10880,-2125,-2174,-9764,-2387,-2410], -[0,-1599,-10881,-3264], +[0,-314,-11787,-11788,-925,-298,-749,-618,-1177,-231,-1192,-26,-3389,-87,-3905,-1,-372,-220,-11789,-11790,-5938,-7,-122, +-2854,-44,-2], +[0,-99,-3906,-31], [1,3,5899], [0,5900,5901,163,4], -[0,-4321,-4322,-3649,-4323,-4309,-4320,-4308,-1395,-4313,-4318,-4314,-4315,-4311,-4316,-4319,-1550,-1554,-4317,-1600, --1603,-4324,-4325,-3430,-4312,-2161,-4310], -[0,-633,-674,-1107,-4327,-1654,-4326,-2250,-2251], +[0,-4753,-4754,-499,-4755,-4742,-4752,-3297,-1082,-4745,-4750,-4746,-4747,-4743,-4748,-4751,-1971,-1665,-4749,-220,-1097, +-4756,-4757,-3204,-4744,-1698,-3298], +[0,-60,-231,-28,-4759,-3,-4758,-97,-134], [1,3,5903], [0,5904,0,7,4], -[0,-891,-10882], +[0,-458,-11791], [1,3,5906], [0,5907,0,160,10], -[0,-567,-10883,-1493,-1566,-1571,-1967,-10884,-2055,-2069,-10885,-2489], +[0,-282,-5939,-3058,-1238,-1668,-121,-11792,-687,-3099,-11793,-605], [1,3,5909], [0,5910,5911,5912,8], -[0,-44,-10886,-10300,-10887,-5898,-10888,-2172,-6751,-10889], -[0,-23,-5585,-3391,-38,-40,-43,-8380,-3621,-427,-428,-507,-534,-652,-708,-824,-10890,-920,-932,-940,-943,-958,-964,-965, --967,-968,-1002,-10891,-1022,-1107,-1168,-1174,-1276,-10892,-1471,-1479,-1482,-1483,-1491,-3079,-1492,-1650,-1654,-1656, --10893,-10894,-10895,-10896,-10897,-10898,-1942,-1958,-2210,-10899,-2354,-2379,-2410,-2501,-10900], -[0,-10684,-10901,-7163,-10902,-10903,-3215,-8130,-6240,-6245,-10904,-10905,-7521,-5119], +[0,-90,-11794,-3870,-11795,-5023,-11796,-1462,-5168,-11797], +[0,-11,-1327,-4553,-170,-21,-174,-5484,-71,-22,-19,-280,-96,-43,-149,-150,-11798,-1219,-1,-12,-83,-9,-256,-115,-25,-67, +-787,-11799,-257,-28,-32,-585,-247,-11800,-79,-213,-187,-414,-676,-4493,-517,-72,-3,-974,-5940,-11801,-11802,-11803, +-11804,-11805,-4,-286,-27,-5941,-1127,-33,-2,-18,-11806], +[0,-2879,-11807,-3581,-5942,-11808,-74,-1862,-1538,-5087,-11809,-11810,-5315,-401], [1,3,5914], [0,5915,5916,7,10], -[0,-6130,-10906,-5852], -[0,-1654,-2501], +[0,-2153,-5943,-3445], +[0,-3,-18], [1,3,5918], [0,0,5919,5920,9], -[0,-1654,-2250], -[0,-1616,-10907,-10908], +[0,-3,-97], +[0,-1100,-11811,-3907], [1,3,5922], [0,5923,5924,5925,4], -[0,-4251,-4231,-10909,-9596,-5348,-1638,-10910,-10911,-10912,-10913,-10869,-10914], -[0,-3037,-652,-10915,-928,-7324,-2586,-1290,-1619,-10916,-1942,-2094,-2100,-2334,-2399,-2410,-2541], -[0,-3272,-1599,-10881,-10917,-10918,-1838,-4132,-10919,-9590,-3590,-2444], +[0,-424,-701,-3908,-1033,-2128,-1436,-5944,-11812,-5945,-5946,-2253,-11813], +[0,-5,-43,-5947,-87,-3599,-1276,-1421,-1101,-11814,-4,-146,-261,-177,-236,-2,-34], +[0,-363,-99,-3906,-5948,-929,-166,-400,-1035,-538,-208,-136], [1,3,5927], [0,5928,5929,5930,5], -[0,-5334,-4251,-9581,-9596,-10920,-10921,-9583,-2429,-5358], -[0,-3037,-9586,-652,-1290,-1294,-1618,-10922,-10923,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-9590,-10918,-10917,-9589,-9588,-2444,-3590,-1599,-3264], +[0,-251,-424,-1578,-1033,-5949,-11815,-2239,-348,-502], +[0,-5,-1880,-43,-1421,-1076,-862,-2884,-3909,-4,-146,-261,-236,-2,-34], +[0,-538,-929,-5948,-448,-622,-136,-208,-99,-31], [1,3,5932], [0,0,5933,5934,6], -[0,-469,-4712], -[0,-6582,-10924,-10925,-775], +[0,-183,-4787], +[0,-479,-11816,-5950,-24], [1,3,5936], [0,5937,0,5938,5], -[0,-10926,-10927], -[0,-10928,-3324,-3323,-9844,-10929,-10930,-10931,-10932,-1622,-10933,-7684], +[0,-5951,-11817], +[0,-11818,-443,-351,-2245,-11819,-5952,-11820,-11821,-2382,-11822,-1347], [1,3,5940], [0,5941,5942,5943,4], -[0,-10934,-10935,-10936,-10937,-10938,-10939,-10940,-10941,-10942,-10943,-10944,-10945,-10946,-2387], -[0,-3136,-6325,-3037,-496,-507,-640,-1331,-1344,-10947,-1415,-1848,-1942,-1958,-2062,-2125,-2325,-2375,-2376,-2379,-2388, --10948,-2410,-2435,-2444,-2501,-2503,-2505], -[0,-1076,-7422,-10949,-1626,-1623,-6656,-8801,-10467,-10412,-10950,-9614,-4004,-3634,-4215,-10951,-10952,-10953,-10954, --10955,-10956,-10957,-10958], +[0,-11823,-11824,-11825,-11826,-11827,-11828,-11829,-11830,-11831,-11832,-11833,-11834,-11835,-44], +[0,-29,-3498,-5,-2296,-280,-294,-342,-10,-11836,-8,-681,-4,-286,-198,-7,-884,-57,-214,-33,-199,-11837,-2,-200,-136,-18, +-93,-173], +[0,-303,-1555,-11838,-1102,-259,-128,-1352,-5845,-1034,-5953,-1580,-76,-61,-317,-5954,-11839,-11840,-11841,-11842,-11843, +-11844,-11845], [1,3,5945], [0,0,5946,5947,5], -[0,-5295,-3268,-3136,-10959,-8216,-3037,-427,-428,-589,-767,-932,-940,-959,-967,-1002,-10960,-1415,-1559,-1565,-1605, --10961,-5969,-9642,-10962,-1816,-1942,-2125,-2127,-2138,-2140,-2141,-2214,-2375,-2379,-2387,-2410], -[0,-5913,-10963,-3324,-6187], +[0,-705,-747,-29,-11846,-3691,-5,-22,-19,-110,-26,-1,-12,-145,-25,-787,-5955,-8,-1666,-1667,-1098,-11847,-1817,-5724, +-5956,-325,-4,-7,-14,-877,-229,-1260,-328,-57,-33,-44,-2], +[0,-3452,-11848,-443,-574], [1,3,5949], [0,0,5950,5951,5], -[0,-664,-1168,-2210,-10964,-1231,-2211,-1224,-1220,-1453], -[0,-3324,-10965,-5493,-6005], +[0,-13,-32,-27,-11849,-359,-190,-791,-961,-969], +[0,-443,-11850,-654,-1166], [1,3,5953], [0,5954,5955,5956,8], -[0,-10966,-2062], -[0,-599,-6774,-756,-932,-1405,-1654,-2198], -[0,-1076,-10412], +[0,-11851,-198], +[0,-1926,-2172,-55,-1,-66,-3,-81], +[0,-303,-1034], [1,3,5958], [0,0,5959,5960,5], -[0,-1003,-1654,-1127,-1132,-1156,-1144,-1980], -[0,-10412,-4004,-5827,-3674,-8027,-640], +[0,-411,-3,-54,-164,-959,-175,-521], +[0,-1034,-76,-252,-1288,-1029,-294], [1,3,5962], [0,0,5963,7,4], -[0,-1654,-2198,-1733], +[0,-3,-81,-590], [1,3,5965], [0,68,15,16,6], [1,3,5967], [0,0,5968,5969,5], -[0,-350,-4062,-351,-5918,-5686,-519,-10967,-722,-813,-10968,-10969,-999,-1111,-1366,-10970,-6904,-3609,-2060,-5120,-2127, --2132,-2134,-4621,-10971,-2384,-2400,-2410,-2541,-2551], -[0,-687,-8425,-2444,-3590,-4187,-4378,-3957,-6722,-1630,-10972,-10973,-3215,-5829,-5272,-3962,-7095,-4000], +[0,-77,-238,-62,-1164,-761,-51,-11852,-456,-1622,-11853,-11854,-118,-204,-793,-11855,-2718,-1502,-1690,-3356,-14,-417, +-876,-2575,-11856,-82,-215,-2,-34,-525], +[0,-37,-1569,-136,-208,-2076,-1307,-316,-1172,-462,-11857,-11858,-74,-916,-1527,-352,-1343,-201], [1,3,5971], [0,0,5972,5973,4], -[0,-3035,-3621,-3037,-664,-726,-1654,-2410,-2501,-2503], -[0,-1631,-7371,-1015,-702,-7208,-4865], +[0,-109,-71,-5,-13,-284,-3,-2,-18,-93], +[0,-491,-838,-432,-507,-426,-94], [1,3,5975], [0,0,5976,7,4], -[0,-10974,-1405], +[0,-11859,-66], [1,3,5978], [0,5979,5980,5981,4], -[0,-679,-719,-812,-1125,-6796,-10975,-1639,-10976,-10977], -[0,-3244,-190,-10978,-4715,-3198,-4036,-3037,-10979,-652,-932,-958,-965,-1110,-1654,-1942,-2091,-2362,-2410], -[0,-5142,-5372,-6656,-9204,-3258,-3260,-3262,-1599,-3259,-1633,-2548], +[0,-117,-58,-35,-670,-5179,-11860,-361,-11861,-11862], +[0,-290,-50,-11863,-4788,-169,-651,-5,-11864,-43,-1,-9,-115,-56,-3,-4,-378,-886,-2], +[0,-914,-2132,-128,-2826,-892,-2496,-116,-99,-3184,-2383,-262], [1,3,5983], [0,5984,0,7,10], -[0,-10980,-5676,-1343,-10981,-10982,-2125,-2177,-2323,-2359], +[0,-11865,-1813,-727,-11866,-11867,-7,-16,-312,-161], [1,3,5986], [0,5987,5988,7,8], -[0,-2453,-812,-1636,-1840], -[0,-1654,-932,-1405,-2293,-966,-958,-968,-943,-963,-974], +[0,-989,-35,-1104,-735], +[0,-3,-1,-66,-123,-75,-9,-67,-83,-211,-129], [1,3,5990], [0,0,5991,5992,5], -[0,-1654,-1405], -[0,-1334,-1636], +[0,-3,-66], +[0,-103,-1104], [1,3,5994], [0,5995,5996,5997,11], -[0,-23,-26,-10983,-3077,-3203,-3408,-3357,-40,-6056,-41,-4066,-3326,-350,-4062,-351,-10984,-10985,-518,-3766,-10986, --10987,-9459,-644,-656,-930,-1044,-1273,-1496,-1566,-1889,-1948,-2127,-5994,-4753,-2140,-2142,-2144,-5037,-2334,-10988, --2387,-2410], -[0,-21,-5870,-10989,-8280,-50,-533,-767,-10990,-932,-10991,-940,-967,-985,-1077,-1344,-1415,-1534,-10992,-1942,-2082, --2125,-2194,-2269], -[0,-4161,-2127,-10993], +[0,-11,-209,-5957,-995,-998,-1284,-4546,-21,-1167,-132,-530,-207,-77,-238,-62,-11868,-11869,-157,-1291,-11870,-11871, +-5690,-1384,-430,-408,-725,-1075,-490,-1238,-38,-520,-14,-5043,-1311,-229,-305,-645,-1785,-177,-3910,-44,-2], +[0,-48,-829,-11872,-1865,-357,-86,-26,-11873,-1,-11874,-12,-25,-370,-41,-10,-8,-17,-11875,-4,-346,-7,-737,-139], +[0,-1151,-14,-11876], [1,3,5999], [0,6000,0,6001,4], -[0,-3198,-812,-10909,-9596,-10863,-10994,-7666,-10995,-10996,-10910,-2785,-10912,-10997,-10920,-10998,-10913,-10869], -[0,-8630,-3116,-4329,-3264,-7184,-1599,-10881,-3437,-2427,-1838,-3215,-3862,-1958,-2093,-7650,-4065,-8451,-3579], +[0,-169,-35,-3908,-1033,-5936,-11877,-5338,-11878,-11879,-5944,-4419,-5945,-11880,-5949,-11881,-5946,-2253], +[0,-1192,-607,-2080,-31,-3583,-99,-3906,-1000,-135,-166,-74,-107,-286,-274,-926,-2069,-3719,-2043], [1,3,6003], [0,6004,6005,6006,5], -[0,-9968,-1864], -[0,-1654,-1645,-10999,-1202], -[0,-6836,-11000,-11001,-7727,-11002,-8130,-9969,-11003,-6656,-6999,-7724,-5573,-1107,-9095,-9096,-9970,-11004,-11005, --11006,-5572,-5912,-3581,-10590,-1639,-1645,-1686,-11007,-11008,-1847,-5574,-5064,-11009,-5569,-5570,-8129,-5550,-11010, --9087], +[0,-2863,-326], +[0,-3,-92,-5958,-671], +[0,-1175,-11882,-11883,-1856,-5959,-1862,-5780,-11884,-128,-660,-767,-655,-28,-2231,-3761,-5781,-11885,-11886,-11887,-532, +-2143,-2514,-5887,-361,-92,-1442,-11888,-11889,-249,-1022,-2100,-11890,-1021,-1160,-3683,-267,-11891,-2230], [1,3,6008], [0,0,6009,6010,4], -[0,-11011,-3713,-3037,-427,-428,-668,-11012,-1641,-1942,-11013,-11014,-2410], -[0,-5195,-6656,-1640,-11015,-11016,-2444], +[0,-5960,-1146,-5,-22,-19,-20,-11892,-344,-4,-5961,-5962,-2], +[0,-1802,-128,-260,-2885,-11893,-136], [1,3,6012], [0,6013,129,6014,10], -[0,-11015], -[0,-1640,-3694], +[0,-2885], +[0,-260,-650], [1,3,6016], [0,119,120,6017,4], -[0,-11017,-11018,-11019,-11020,-11021,-11022,-11023,-11024,-11025,-11018,-11026,-11027,-11028,-11029,-11030,-11031,-11032, --11033,-11034,-11035,-11036,-9234,-11037,-11038,-11039,-11040,-11041,-11042,-11043,-11044,-11045,-11046,-7530,-11047, --11048,-7561,-7562,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-11049,-7283,-6582,-7534,-7535,-7536,-7537,-7538, --7539,-7540,-7541,-7542,-7543,-7544,-7545,-8807,-6599,-5756, --11050,-11051,-7503,-7371,-7546,-7547,-7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558, --7559,-5063,-7560,-11052,-6187,-7563,-856,-7275], +[0,-11894,-5963,-11895,-11896,-5964,-11897,-11898,-11899,-11900,-5963,-11901,-11902,-11903,-11904,-11905,-11906,-11907, +-5965,-11908,-11909,-11910,-1876,-3911,-5966,-11911,-11912,-11913,-11914,-11915,-11916,-11917,-11918,-3618,-11919,-11920, +-5317,-5318,-45,-3614,-1854,-278,-2,-3615,-753,-440,-3912,-1847,-479,-1344,-3619,-3620,-2748,-3621,-3622,-3623,-3624, +-3625,-3626,-3627,-3628,-1573,-1336,-3436, +-11921,-11922,-3617,-838,-5316,-2196,-3629,-924,-3630,-3631,-3632,-3633,-3634,-3635,-3636,-3637,-2749,-136,-1556,-3638, +-2605,-3639,-5967,-574,-3640,-42,-1551], [1,3,6019], [0,6020,6021,6022,11], -[0,-2168,-2321], -[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-3037,-620,-767,-774,-778,-824,-825,-920,-932,-940,-6929,-958,-959,-960,-965, --967,-978,-1041,-1110,-1344,-1415,-1419,-1449,-1534,-1623,-1771,-1942,-2162,-2163,-2251,-2410,-2411,-2501,-2503,-2505], -[0,-2501,-775,-7347,-6211], +[0,-646,-1266], +[0,-48,-11,-21,-49,-63,-50,-529,-315,-5,-453,-26,-407,-141,-150,-232,-1219,-1,-12,-617,-9,-145,-180,-115,-25,-151,-271, +-56,-10,-8,-176,-78,-17,-259,-65,-4,-80,-467,-134,-2,-84,-18,-93,-173], +[0,-18,-24,-1026,-1822], [1,3,6024], [0,6025,6026,6027,5], -[0,-11053,-367,-683,-11054,-812,-928,-1047,-11055,-3751,-11056,-11057,-2334,-11058,-11059], -[0,-11060,-932,-11061,-11062,-4653,-11063], -[0,-1644,-7173,-3756,-775,-5094,-3264,-6118], +[0,-11923,-245,-540,-11924,-35,-87,-339,-11925,-1503,-11926,-11927,-177,-11928,-11929], +[0,-11930,-1,-11931,-11932,-4777,-11933], +[0,-228,-2185,-278,-24,-1789,-31,-2150], [1,3,6029], [0,6030,6031,7,11], -[0,-11064], -[0,-2319,-2386,-1650,-2402,-1942,-3037], +[0,-5968], +[0,-85,-561,-72,-124,-4,-5], [1,3,6033], [0,0,6034,6035,4], -[0,-515,-1788,-2322,-932,-1777,-1365,-516,-2156,-5834], -[0,-4378,-9568,-3215,-1813], +[0,-720,-15,-39,-1,-273,-212,-269,-189,-244], +[0,-1307,-5711,-74,-551], [1,3,6037], [0,6038,6039,6040,4], -[0,-719,-1730], -[0,-8477,-1415,-1942,-2375,-2410], -[0,-11065,-11066,-11067], +[0,-58,-1107], +[0,-2793,-8,-4,-57,-2], +[0,-11934,-11935,-11936], [1,3,6042], [0,0,6043,6044,9], -[0,-11068,-3037,-5866,-652,-940,-1942,-2319,-2379,-2402,-2410], -[0,-8988,-7421,-11069,-9218,-11070,-7371,-5269], +[0,-11937,-5,-2650,-43,-12,-4,-85,-33,-124,-2], +[0,-2814,-427,-5969,-1576,-2254,-838,-501], [1,3,6046], [0,6047,6048,7,5], -[0,-461,-1852,-6568,-11071], -[0,-3037,-3664,-672,-932,-944,-3190,-1431,-1942,-6570,-2410,-2423,-2469], +[0,-202,-594,-1832,-2886], +[0,-5,-105,-1388,-1,-1403,-1734,-516,-4,-1544,-2,-1270,-30], [1,3,6050], [0,0,6051,6052,4], -[0,-23,-26,-33,-38,-40,-42,-44,-11072,-1059], -[0,-1652,-11073,-5927,-3159,-2006,-3476,-11074,-6106,-11075,-11076,-11077,-11078], +[0,-11,-209,-578,-170,-21,-137,-90,-5970,-412], +[0,-1240,-5971,-5029,-106,-6,-527,-2887,-1819,-11938,-11939,-11940,-11941], [1,3,6054], [0,6055,6056,6057,5], -[0,-11079], -[0,-1652,-11079,-11080], -[0,-1652,-11073,-3159,-2006,-3476,-11074], +[0,-5972], +[0,-1240,-5972,-5973], +[0,-1240,-5971,-106,-6,-527,-2887], [1,3,6059], [0,6060,6061,6062,4], -[0,-1297,-1681,-834,-1107,-812,-2550,-1047,-1442,-679,-1645,-1863,-3730,-1574,-2551,-11081,-7408,-2297,-11082,-2271,-930, --2182], -[0,-1788,-664,-1498,-1446,-1471,-2210,-11083,-932,-1708,-2093,-2125,-2127,-2177,-1110,-11084,-2501,-1942,-767,-190,-11085, --2410,-11086,-3037,-1339,-1482,-1600,-2503,-3041,-711,-1607,-1772,-4655,-27,-11087,-11088,-11089,-11090,-965,-3781,-1609, --11091,-3425,-1603,-3060,-1601,-4062,-11092,-4066,-1483,-1488,-1475,-350,-11093,-2144,-5995,-2136,-351,-9701,-11094, --11095], -[0,-1654,-4004,-3440,-4873,-2319,-3634,-664,-5855,-519,-1415,-2322,-1412,-1471], +[0,-1077,-549,-203,-28,-35,-98,-339,-101,-117,-92,-167,-2528,-638,-525,-11942,-1554,-468,-11943,-601,-408,-1121], +[0,-15,-13,-799,-165,-79,-27,-11944,-1,-1675,-274,-7,-14,-16,-56,-3913,-18,-4,-26,-50,-11945,-2,-11946,-5,-413,-187,-220, +-93,-419,-308,-972,-345,-1772,-4065,-11947,-11948,-11949,-11950,-115,-1504,-518,-11951,-1492,-1097,-4489,-971,-238, +-11952,-530,-414,-798,-138,-77,-11953,-645,-3465,-1258,-62,-2850,-11954,-11955], +[0,-3,-76,-609,-573,-85,-61,-13,-1163,-51,-8,-39,-196,-79], [1,3,6064], [0,6065,6066,6067,6], -[0,-4377,-1978], -[0,-664,-1654,-10534,-2410], -[0,-1654,-3636,-1978,-11096], +[0,-613,-160], +[0,-13,-3,-5867,-2], +[0,-3,-1145,-160,-5974], [1,3,6069], [0,6070,6071,6072,5], -[0,-812,-1616,-1650,-2269,-6597], -[0,-357,-664,-11097,-932,-1654,-2125,-11098,-11099], -[0,-1654,-11100,-6863], +[0,-35,-1100,-72,-139,-537], +[0,-623,-13,-11956,-1,-3,-7,-5975,-11957], +[0,-3,-5976,-1023], [1,3,6074], [0,0,0,6075,11], -[0,-1654,-6863,-11101,-4005], +[0,-3,-1023,-11958,-823], [1,3,6077], [0,0,6078,6079,5], -[0,-664,-932,-9072,-1654,-2125,-2177], -[0,-4215,-1076,-4004,-8101,-8801,-10412], +[0,-13,-1,-3759,-3,-7,-16], +[0,-317,-303,-76,-5426,-1352,-1034], [1,3,6081], [0,6082,6083,6084,8], -[0,-11102,-1083,-11103,-11104,-1285,-1402,-1794], -[0,-2832,-5834,-8084,-11105,-11106,-11107,-11108,-11109,-8088,-11110,-8089,-8939,-8090,-8091,-8092,-8093,-3037,-11111, --8094,-8096,-516,-5835,-921,-932,-993,-1065,-1283,-1365,-1777,-1788,-2156,-2322], -[0,-3634,-4215,-7208,-7153,-5846,-11112,-4004,-6693,-11113], +[0,-11959,-1642,-5977,-5978,-672,-1084,-1245], +[0,-314,-244,-1563,-11960,-11961,-11962,-11963,-11964,-5420,-11965,-5421,-5582,-3682,-5422,-5423,-5424,-5,-11966,-5425, +-714,-269,-533,-1400,-1,-1069,-954,-1234,-212,-273,-15,-189,-39], +[0,-61,-317,-426,-1179,-917,-5979,-76,-835,-5980], [1,3,6086], [0,6087,6088,231,4], -[0,-5505,-1759], -[0,-767,-932,-1654], +[0,-2634,-1446], +[0,-26,-1,-3], [1,3,6090], [0,0,27,6091,6], -[0,-4004,-4215,-3966,-1076,-3972], +[0,-76,-317,-144,-303,-1509], [1,3,6093], [0,0,6094,6095,5], -[0,-1654,-2127,-2142,-2198,-2410], -[0,-4121,-4215,-4004], +[0,-3,-14,-305,-81,-2], +[0,-1013,-317,-76], [1,3,6097], [0,0,6098,6099,6], -[0,-1405,-1452,-2210,-11115,-2471], -[0,-4215,-8611,-4792,-3551,-3324,-5119,-4004,-11116,-3634,-4873], +[0,-66,-119,-27,-11968,-1474], +[0,-317,-1571,-425,-365,-443,-401,-76,-5981,-61,-573], [1,3,6101], [0,75,6102,6103,5], -[0,-1168,-1190,-11117,-1220,-1224,-1231,-11118,-1452,-1453,-2501], -[0,-4215,-11119,-11120], +[0,-32,-3025,-2888,-961,-791,-359,-11969,-119,-969,-18], +[0,-317,-11970,-11971], [1,3,6105], [0,6106,6107,6108,4], -[0,-4377,-1107,-1496,-1548,-11121,-1582,-1729,-995,-11122,-11123], -[0,-1435,-2384,-11124,-1415,-1680,-11125,-1867,-812,-11126,-648,-11127,-865,-932,-1576,-11128,-473,-1388,-1753,-11129, --2379,-2520,-11130,-11131,-1417,-11132,-1942,-756,-11133,-1418,-1765,-2293,-11134,-1969,-2410,-11135,-3037,-11136,-11137, --11138,-11139,-11140,-11141,-11142,-11143,-10453,-11144,-11145,-966,-11146,-357,-11147,-968,-940,-967,-972], -[0,-11148,-6209,-3161,-3445,-11149,-7586,-11150,-11151,-5078,-9840,-11152], +[0,-613,-28,-490,-23,-2255,-434,-188,-1634,-11972,-11973], +[0,-730,-82,-11974,-8,-2386,-11975,-1250,-35,-11976,-1210,-11977,-210,-1,-1973,-11978,-2295,-1965,-285,-11979,-33,-564, +-11980,-11981,-489,-11982,-4,-55,-11983,-857,-4263,-123,-11984,-1687,-2,-5982,-5,-11985,-11986,-11987,-11988,-11989, +-11990,-11991,-11992,-5841,-11993,-11994,-75,-11995,-623,-11996,-67,-12,-25,-724], +[0,-1891,-2157,-53,-46,-11997,-3643,-5983,-2256,-3352,-2858,-3914], [1,3,6110], [0,0,6111,6112,5], -[0,-1989,-2127,-767,-2410,-3037,-1488], -[0,-1666,-4121,-4123,-1838,-3276,-5874,-1348,-9772,-11153], +[0,-376,-14,-26,-2,-5,-798], +[0,-233,-1013,-612,-166,-566,-534,-1078,-2243,-2889], [1,3,6114], [0,6115,6116,6117,4], -[0,-1666], -[0,-1127,-1134,-1144,-1146,-1148,-10264,-2410], -[0,-1666,-4121,-4123,-11154,-11155,-11156,-11157,-11158], +[0,-233], +[0,-54,-240,-175,-358,-341,-3868,-2], +[0,-233,-1013,-612,-5984,-11998,-11999,-12000,-5985], [1,3,6119], [0,6120,6121,6122,5], -[0,-1461,-11159,-11160,-11161,-11162,-1848,-1942,-11163,-11164,-11165,-2548], -[0,-11166,-2970,-3664,-928,-9002,-1874,-2094,-11167,-2410,-2469,-11168], -[0,-3496,-3100,-3577,-11169,-9002,-2548], +[0,-636,-12001,-12002,-12003,-12004,-681,-4,-12005,-5986,-5987,-262], +[0,-12006,-1486,-105,-87,-2816,-391,-146,-2890,-2,-30,-12007], +[0,-420,-52,-192,-12008,-2816,-262], [1,3,6124], [0,0,6125,6126,10], -[0,-190,-3037,-3664,-932,-940,-972,-978,-1942,-2125,-2402,-2405,-7322,-2410,-2411,-2466,-6859,-2469], -[0,-11170,-11171,-11172,-5829,-11173,-3577,-3445], +[0,-50,-5,-105,-1,-12,-724,-151,-4,-7,-124,-816,-3598,-2,-84,-104,-923,-30], +[0,-12009,-12010,-12011,-916,-12012,-192,-46], [1,3,6128], [0,6129,6130,6131,8], -[0,-6779,-11174,-6780,-6777,-11175,-6776,-8843,-11176,-11177,-2997,-11178,-617,-620,-11179,-637,-709,-719,-744,-767,-787, --865,-919,-1004,-4206,-1010,-1055,-11180,-11181,-1320,-1437,-3725,-1635,-1671,-11182,-1676,-1863,-11183,-2185], -[0,-23,-32,-40,-11184,-11185,-534,-664,-684,-726,-748,-778,-795,-932,-934,-958,-978,-11186,-1041,-1344,-1654,-11187,-1734, --1753,-2275,-2293,-2501,-2503], -[0,-8856,-11188,-7558,-7685,-11189,-3964,-11190,-11191,-6857,-1671,-11192,-11193,-11194], +[0,-3550,-5988,-3551,-3549,-12013,-3548,-3739,-12014,-12015,-820,-3915,-163,-453,-12016,-1611,-1054,-58,-581,-26,-4138, +-210,-4162,-40,-2562,-850,-1411,-12017,-12018,-673,-248,-4620,-1977,-375,-12019,-678,-167,-12020,-1699], +[0,-11,-156,-21,-5989,-12021,-96,-13,-1614,-284,-508,-141,-483,-1,-185,-9,-151,-12022,-271,-10,-3,-2257,-1444,-285,-154, +-123,-18,-93], +[0,-3740,-12023,-1556,-403,-5990,-1508,-12024,-12025,-1341,-375,-12026,-5991,-12027], [1,3,6133], [0,6134,6135,6136,8], -[0,-637,-11195,-11196], -[0,-1788,-2384,-11197,-664,-668,-1654,-2210,-11198,-2550,-932,-2177,-11199,-1004,-1442,-2379,-1942,-2211,-2410,-3241, --3035,-3037,-667,-11200,-3621,-4372,-11201,-3199,-3617,-11202,-11203,-11204,-11205,-3625,-11206,-11207,-2234,-964,-977, --940,-967,-264,-262,-428,-11208,-6424,-9724,-11209,-427,-4814,-234], -[0,-1671,-9879,-5041], +[0,-1611,-12028,-12029], +[0,-15,-82,-2891,-13,-20,-3,-27,-5992,-98,-1,-16,-12030,-40,-101,-33,-4,-190,-2,-3182,-109,-5,-1931,-12031,-71,-279, +-12032,-140,-264,-12033,-12034,-12035,-12036,-1287,-12037,-12038,-147,-256,-1065,-12,-25,-1905,-451,-19,-5993,-5117, +-2852,-5994,-22,-911,-1200], +[0,-375,-2246,-4858], [1,3,6138], [0,6139,6140,6141,10], -[0,-11210,-1671,-11211,-11212,-1681,-11213], -[0,-11214,-11215,-3037,-11216,-11217,-11218,-469,-652,-674,-7743,-932,-5984,-1004,-1077,-1304,-9150,-1559,-11219,-8554, --1610,-1650,-1654,-1666,-11208,-11187,-11220,-1705,-1974,-2210,-2655,-2410,-2411,-2446], -[0,-1671,-10855,-6106,-4058,-7685,-11221,-6582,-11222,-5101,-7684,-1818,-7773], +[0,-12039,-375,-12040,-12041,-549,-12042], +[0,-12043,-12044,-5,-12045,-12046,-12047,-183,-43,-231,-3652,-1,-3462,-40,-41,-372,-5620,-1666,-12048,-5535,-227,-72,-3, +-233,-5993,-2257,-5995,-734,-642,-27,-4377,-2,-84,-125], +[0,-375,-1890,-1819,-331,-403,-5996,-479,-5997,-702,-1347,-802,-768], [1,3,6143], [0,6144,232,6145,5], -[0,-763,-727,-573,-2228,-2424,-2229,-11223], -[0,-1673,-11224,-11225,-8841,-11226,-11227], +[0,-1058,-335,-1924,-810,-250,-1262,-5998], +[0,-1241,-5999,-6000,-839,-12049,-12050], [1,3,6147], [0,6148,232,6149,5], -[0,-727,-729,-1673,-11228,-11223], -[0,-1673,-11229,-11224,-11225,-11230,-5412,-8841,-11231], +[0,-335,-218,-1241,-12051,-5998], +[0,-1241,-2892,-5999,-6000,-1892,-3393,-839,-12052], [1,3,6151], [0,6152,6153,6154,8], -[0,-11232,-812,-1671,-11233,-11234,-11235,-11236,-11237,-11238,-1792], -[0,-519,-708,-932,-943,-950,-958,-966,-968,-974,-11239,-11240,-11241,-11242,-11243,-11244,-11245,-1788], -[0,-1675,-1671,-6857,-9879], +[0,-6001,-35,-375,-12053,-12054,-12055,-12056,-12057,-12058,-241], +[0,-51,-149,-1,-83,-1947,-9,-75,-67,-129,-12059,-12060,-12061,-12062,-12063,-12064,-12065,-15], +[0,-4246,-375,-1341,-2246], [1,3,6156], [0,6157,6158,6159,5], -[0,-579,-812,-828,-1800,-6825], -[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2239,-2293], -[0,-1004,-1334,-3444,-5401], +[0,-1381,-35,-1062,-977,-2710], +[0,-1,-83,-9,-211,-75,-67,-129,-3,-15,-812,-123], +[0,-40,-103,-748,-356], [1,3,6161], [0,44,15,16,10], [1,3,6163], [0,6164,6165,6166,10], -[0,-2531,-2124,-812,-11198,-2240,-11246,-11247,-1646,-4204,-1582,-11248,-725,-11249,-2062,-11250,-6279], -[0,-1788,-664,-2322,-2210,-932,-1109,-1650,-2125,-2198,-2226,-928,-1110,-2379,-679,-1942,-11251,-190,-1939,-2091,-2410, --3035,-3037,-8096,-4372,-908,-11252,-11253,-3244,-11254,-5325,-3311,-4805,-11255,-958,-940,-967,-428,-740,-3312,-11256, --427,-4646], -[0,-1680,-11257,-8403,-8404], +[0,-205,-1695,-35,-5992,-881,-12066,-12067,-88,-475,-434,-12068,-309,-12069,-198,-12070,-3492], +[0,-15,-13,-39,-27,-1,-852,-72,-7,-81,-1700,-87,-56,-33,-117,-4,-12071,-50,-234,-378,-2,-109,-5,-714,-279,-1628,-12072, +-12073,-290,-3916,-2125,-893,-2586,-12074,-9,-12,-25,-19,-385,-1283,-12075,-22,-909], +[0,-2386,-12076,-769,-3715], [1,3,6168], [0,0,6169,7,8], -[0,-1344,-1654,-932,-1942,-1003,-1534], +[0,-10,-3,-1,-4,-411,-17], [1,3,6171], [0,6172,6173,6174,10], -[0,-11258,-719,-812,-10414,-10417], -[0,-86,-3307,-7040,-3472,-7041,-7042,-1654,-2174,-2250], -[0,-7685,-1682,-10424,-3844,-11259,-10704,-11260,-11261,-10417,-11262,-10704,-11263,-5800,-11264], +[0,-12077,-58,-35,-5834,-2873], +[0,-49,-63,-925,-749,-618,-1177,-3,-122,-97], +[0,-403,-1673,-2249,-216,-12078,-2880,-12079,-12080,-2873,-12081,-2880,-12082,-1534,-12083], [1,3,6176], [0,6177,6178,6179,11], -[0,-2946,-269,-4190,-11265,-743,-1122,-11266,-4193,-4194,-1851,-1863,-11267,-2255,-4195,-2364,-2400,-11268,-2550], -[0,-86,-3307,-11269,-3244,-190,-11270,-3316,-4196,-4197,-3983,-3617,-11271,-3037,-11272,-427,-428,-3310,-523,-5859,-720, --767,-768,-796,-928,-3808,-932,-940,-967,-1004,-1030,-8151,-1107,-1449,-11273,-1498,-1534,-11274,-1942,-2910,-2082,-2125, --3246,-2391,-2410,-2411,-2426,-2437,-2469,-4209,-2501,-4211,-1683], -[0,-3690,-4215,-4041,-8615,-10807,-3844,-5196,-8481,-3634,-3577,-4725], +[0,-3160,-1906,-4711,-12084,-336,-371,-12085,-4712,-4713,-553,-167,-12086,-1263,-2561,-1129,-215,-12087,-98], +[0,-49,-63,-12088,-290,-50,-6002,-4536,-4714,-4715,-366,-264,-12089,-5,-12090,-22,-19,-3186,-194,-1814,-482,-26,-1937, +-295,-87,-1293,-1,-12,-25,-40,-1071,-5444,-28,-78,-6003,-799,-17,-12091,-4,-470,-346,-7,-999,-172,-2,-84,-289,-438,-30, +-4718,-18,-4719,-800], +[0,-100,-317,-2554,-2222,-5925,-216,-1323,-3721,-61,-192,-2087], [1,3,6181], [0,6182,6183,6184,4], -[0,-11275,-649,-725,-1650,-1792,-2401,-2546], -[0,-821,-1004,-1069,-11276,-1654,-1788,-2125,-2250,-11277], -[0,-4053,-9751,-6463,-1069,-11278,-1004,-5401], +[0,-12092,-1386,-309,-72,-241,-988,-744], +[0,-780,-40,-628,-12093,-3,-15,-7,-97,-12094], +[0,-570,-5741,-2166,-628,-12095,-40,-356], [1,3,6186], [0,6187,14,6188,4], -[0,-9491,-11279,-1645], -[0,-7727,-5573,-1107,-9095,-9096,-5572,-5912,-1645,-5574,-5064,-9087], +[0,-3800,-12096,-92], +[0,-1856,-655,-28,-2231,-3761,-532,-2143,-92,-1022,-2100,-2230], [1,3,6190], [0,6191,6192,6193,5], -[0,-2418,-1335,-2155], -[0,-1788,-11280,-1654,-932,-1650,-2125,-2291,-2108,-963], -[0,-6656,-7764,-1070,-5827,-5940], +[0,-1471,-633,-497], +[0,-15,-6004,-3,-1,-72,-7,-690,-4306,-211], +[0,-128,-1182,-955,-252,-1165], [1,3,6195], [0,6196,6197,6198,4], -[0,-5573,-1077,-1462,-1548,-3222,-1805,-2446], -[0,-1412,-1788,-11281,-2091], -[0,-793,-3264,-11282,-1688,-11283,-11284], +[0,-655,-41,-2363,-23,-1491,-152,-125], +[0,-196,-15,-12097,-378], +[0,-1618,-31,-12098,-4249,-12099,-12100], [1,3,6200], [0,0,6201,6202,4], -[0,-985,-664,-2568,-1654,-932,-1452,-2127,-1978,-2416], -[0,-1689,-3110,-3261,-888], +[0,-370,-13,-993,-3,-1,-119,-14,-160,-112], +[0,-519,-277,-746,-337], [1,3,6204], [0,0,6205,6206,10], -[0,-865,-1168,-1197,-1251,-1344,-1471,-1475,-1485,-1488,-11285,-11286,-1942,-10496,-1989,-2125,-2127,-2334,-11287], -[0,-4672,-3999,-11288,-7724,-7283,-7581], +[0,-210,-32,-513,-3031,-10,-79,-138,-1662,-798,-6005,-12101,-4,-5850,-376,-7,-14,-177,-12102], +[0,-1774,-699,-12103,-767,-1847,-1345], [1,3,6208], [0,6209,6210,7,11], -[0,-595,-2062,-2155,-11289], -[0,-465,-932,-2172,-11290,-11291,-11292], +[0,-1925,-198,-497,-12104], +[0,-772,-1,-1462,-6006,-12105,-12106], [1,3,6212], [0,6213,6214,6215,4], -[0,-1578,-9953,-10401,-1351,-11293,-11294,-11295,-11296], -[0,-652,-2392,-11297,-1110,-1942,-589,-767,-190,-1888,-2410,-3037,-11298,-3244,-3560,-3606,-940,-967,-428,-11299,-427, --5706], -[0,-1691,-3323,-3844], +[0,-1974,-5779,-5832,-459,-12107,-12108,-12109,-12110], +[0,-43,-155,-12111,-56,-4,-110,-26,-50,-641,-2,-5,-12112,-290,-529,-2044,-12,-25,-19,-12113,-22,-3427], +[0,-550,-351,-216], [1,3,6217], [0,6218,6219,6220,11], -[0,-8993,-1792,-8994], -[0,-1405,-615,-1654], -[0,-8124,-1961,-11300,-11301,-3184], +[0,-5595,-241,-5596], +[0,-66,-114,-3], +[0,-2770,-171,-6007,-2893,-349], [1,3,6222], [0,0,6223,6224,4], -[0,-11302], -[0,-1784,-3966,-9318,-9800,-11303,-3966,-7304,-6845], +[0,-12114], +[0,-3074,-144,-715,-1355,-12115,-144,-837,-1340], [1,3,6226], [0,0,6227,7,4], -[0,-596,-719,-1107,-2105,-2062,-2319,-2546], +[0,-667,-58,-28,-111,-198,-85,-744], [1,3,6229], [0,0,6230,6231,4], -[0,-2426,-3037,-2410], -[0,-11304,-6582,-2105,-4055,-7684,-11151,-1697,-7685], +[0,-289,-5,-2], +[0,-6008,-479,-111,-108,-1347,-2256,-3065,-403], [1,3,6233], [0,6234,6235,6236,5], -[0,-3115,-781,-786,-11305,-10883,-11306,-7222,-3768], -[0,-4757,-4754,-4749,-3136,-3037,-3140,-3040,-932,-4650,-1344,-11307,-1415,-1520,-11308,-1534,-1942,-1967,-2006,-2019, --2052,-2125,-2234,-2376,-2387,-2410,-2501,-2502,-2505,-2552], -[0,-775,-5553,-3770,-11309,-1697,-11310,-2006,-3756,-11311,-3771,-11312,-11313,-3095,-2278,-11314,-11315,-3271], +[0,-1729,-1059,-722,-12116,-5939,-12117,-3587,-1750], +[0,-1515,-1154,-1019,-29,-5,-997,-47,-1,-3307,-10,-12118,-8,-1430,-12119,-17,-4,-121,-6,-36,-287,-7,-147,-214,-44,-2,-18, +-523,-173,-692], +[0,-24,-230,-568,-12120,-3065,-12121,-6,-278,-12122,-1292,-12123,-2258,-131,-882,-12124,-2259,-1282], [1,3,6238], [0,0,0,6239,8], -[0,-2446,-6555,-7231,-2435], +[0,-125,-920,-2736,-200], [1,3,6241], [0,6242,6243,6244,4], -[0,-7872,-523,-893,-1077,-11316,-11317,-1577,-1705,-11318,-2160,-2234,-2359,-2550], -[0,-3198,-3048,-11319,-3136,-9143,-3037,-11320,-3628,-3041,-427,-428,-891,-932,-940,-967,-1415,-1874,-1942,-2125,-2376, --2410,-2501,-2503], -[0,-11321,-891,-3994,-5269,-8911], +[0,-5379,-194,-4154,-41,-12125,-12126,-1433,-734,-12127,-1996,-147,-161,-98], +[0,-169,-191,-12128,-29,-3765,-5,-12129,-750,-419,-22,-19,-458,-1,-12,-25,-8,-391,-4,-7,-214,-2,-18,-93], +[0,-1357,-458,-306,-501,-2226], [1,3,6246], [0,6247,6248,6249,6], -[0,-2531,-1816,-2323,-1430,-1805,-2446,-523,-712,-1875,-2550,-8898,-1548,-1576,-1610,-1650,-1831,-2177,-7680,-2519,-2536, --987,-1966,-2195,-501,-679,-1942,-1981,-2378,-1645,-11322,-695,-2205,-2231,-2410,-11323,-3950,-11324,-11325,-11326,-8888, --11327,-11328,-6294,-7772,-1982,-280,-11329,-11330,-11331,-742,-8880,-11332,-11333,-11334,-11335,-11336], -[0,-664,-1127,-1344,-1654,-2210,-10645,-1405,-4204,-5673,-3035,-3037,-3738,-1162,-1534,-4248,-11337,-11338,-4372,-3041, --11339,-3044,-11340,-3199,-11341,-11342,-11343,-3735,-3714,-6114,-11344,-11345,-665,-1138,-2234,-1134,-1149,-11346, --11347,-4269,-11348,-3202,-11349,-740], -[0,-1702,-2410,-3214], +[0,-205,-325,-312,-3054,-152,-125,-194,-217,-1252,-98,-3743,-23,-1973,-227,-72,-1248,-16,-3646,-4352,-565,-1067,-392,-276, +-842,-117,-4,-3086,-814,-92,-12130,-624,-600,-130,-2,-12131,-2547,-12132,-12133,-12134,-2805,-12135,-3917,-2161,-1857, +-1456,-840,-12136,-12137,-12138,-457,-5570,-12139,-12140,-12141,-12142,-12143], +[0,-13,-54,-10,-3,-27,-5894,-66,-475,-1532,-109,-5,-698,-789,-17,-4727,-2894,-12144,-279,-419,-6009,-143,-12145,-140, +-12146,-12147,-2895,-822,-1748,-2149,-6010,-12148,-239,-511,-147,-240,-304,-6011,-2896,-754,-6012,-3180,-12149,-385], +[0,-4250,-2,-45], [1,3,6251], [0,6252,6253,6254,6], -[0,-11350,-11351,-11352,-865,-1339,-11353,-1672,-1857,-2071,-7967,-11354,-10899,-2424,-2446,-11355], -[0,-350,-4062,-351,-9705,-3037,-427,-11356,-767,-932,-9106,-958,-965,-968,-1168,-1222,-11357,-1412,-1413,-7148,-1705, --1788,-11358,-1972,-2125,-2127,-2210,-2234,-2250,-2379,-6416,-2410,-11359,-2501,-7752], -[0,-11360,-11361,-7281,-11362,-11363,-3579,-11364,-11365,-11366,-11367,-11368,-11369,-11370,-11371,-11372,-11373,-11374, --11375,-11376,-11377,-11378,-11379,-11380,-11381,-11382,-11383,-11384,-11385,-11386], +[0,-12150,-12151,-12152,-210,-413,-12153,-1106,-595,-688,-1561,-12154,-5941,-250,-125,-12155], +[0,-77,-238,-62,-1195,-5,-22,-12156,-26,-1,-3763,-9,-115,-67,-32,-3028,-12157,-196,-373,-224,-734,-15,-6013,-181,-7,-14, +-27,-147,-97,-33,-5115,-2,-12158,-18,-2756], +[0,-12159,-12160,-5275,-12161,-12162,-2043,-12163,-12164,-12165,-12166,-12167,-12168,-12169,-12170,-12171,-12172,-12173, +-12174,-12175,-12176,-3918,-12177,-12178,-12179,-12180,-12181,-12182,-6014,-12183], [1,3,6256], [0,6257,6258,6259,9], -[0,-1371,-510,-2550,-11387], -[0,-1788,-2471,-932,-756,-11388,-2091,-4646], -[0,-3870,-11389,-11390], +[0,-728,-59,-98,-12184], +[0,-15,-1474,-1,-55,-12185,-378,-909], +[0,-1150,-12186,-12187], [1,3,6261], [0,0,6262,6263,5], -[0,-1654,-2125,-8986], -[0,-687,-6351], +[0,-3,-7,-5591], +[0,-37,-709], [1,3,6265], [0,0,6266,6267,5], -[0,-3037,-3040,-427,-428,-749,-932,-940,-967,-969,-970,-1380,-1942,-2387,-2410], -[0,-11391,-3486,-2006,-3994,-11392,-11393,-5069,-3445], +[0,-5,-47,-22,-19,-625,-1,-12,-25,-64,-186,-729,-4,-44,-2], +[0,-12188,-4566,-6,-306,-12189,-12190,-2606,-46], [1,3,6269], [0,6270,6271,6272,4], -[0,-510,-1650,-2424,-1545,-11394], -[0,-664,-1654,-2210,-2105,-719,-11395], -[0,-7685,-11222,-10712], +[0,-59,-72,-250,-4234,-12191], +[0,-13,-3,-27,-111,-58,-12192], +[0,-403,-5997,-5907], [1,3,6274], [0,6275,6276,6277,5], -[0,-1351,-2165], -[0,-1464,-7623,-1654,-1976,-1980,-2198,-2210,-2536], -[0,-1334,-1342,-5493,-2105,-3323,-6463,-7764,-1971,-6827,-7430,-9791,-9788,-743,-8937], +[0,-459,-1119], +[0,-1089,-5330,-3,-1253,-521,-81,-27,-565], +[0,-103,-388,-654,-111,-351,-2166,-1182,-596,-2711,-2746,-2857,-2856,-336,-5580], [1,3,6279], [0,6280,0,6281,5], -[0,-11396,-11397,-719,-755,-1376], -[0,-687,-5406,-9668,-3957,-3958,-11398,-11313], +[0,-12193,-12194,-58,-386,-195], +[0,-37,-1808,-1194,-316,-299,-6015,-2258], [1,3,6283], [0,6284,6285,6286,8], -[0,-11399,-510,-11400,-5676,-695,-714,-719,-790,-1044,-11401,-1548,-1650,-11402,-11403,-11404,-11405,-1951,-2177,-11406, --2524,-2538], -[0,-11407,-664,-829,-11408,-7829,-932,-960,-7819,-964,-972,-1442,-1654,-1722,-1788,-11409,-2070,-2188,-2195,-2210,-2536], -[0,-1710,-11410,-3690,-3634,-6657,-11411,-3691], +[0,-12195,-59,-12196,-1813,-624,-133,-58,-1940,-725,-12197,-23,-72,-12198,-12199,-12200,-12201,-871,-16,-12202,-2010, +-1274], +[0,-12203,-13,-1215,-12204,-1858,-1,-180,-5370,-256,-724,-101,-3,-197,-15,-12205,-1993,-1123,-276,-27,-565], +[0,-3067,-2897,-100,-61,-2701,-12206,-422], [1,3,6288], [0,6289,6290,6291,4], -[0,-11412,-7603,-7604,-11413,-5038,-5777,-5775,-5791,-5779,-5778,-5780,-5782,-11414,-725,-1343,-11415,-11273,-1459,-11416, --2062,-11417,-2177,-2522], -[0,-3698,-11418,-11419,-11420,-11421,-11422,-305,-11423,-11424,-11425,-469,-510,-521,-2917,-652,-5980,-719,-741,-6906, --5983,-932,-960,-11426,-1107,-1116,-1344,-1446,-1534,-1547,-1722,-1969,-1972,-2125,-11427,-2210,-2291], -[0,-5805,-6187,-11230,-6032,-11428,-11429], +[0,-12207,-3644,-5328,-12208,-1317,-5004,-5003,-5007,-3440,-5005,-5006,-2644,-12209,-309,-727,-6016,-6003,-1088,-12210, +-198,-6017,-16,-1713], +[0,-1289,-3919,-2898,-12211,-12212,-12213,-665,-12214,-12215,-12216,-183,-59,-936,-1726,-43,-3459,-58,-1212,-5197,-3461, +-1,-180,-6018,-28,-387,-10,-165,-17,-1095,-197,-1687,-181,-7,-12217,-27,-690], +[0,-2645,-574,-1892,-5052,-6019,-3920], [1,3,6293], [0,6294,6295,6296,5], -[0,-44,-11430,-743,-5193,-1791,-11431,-1940,-10105,-2446], -[0,-3168,-21,-23,-6064,-38,-40,-41,-42,-11432,-367,-7043,-406,-407,-409,-2622,-410,-3136,-3037,-11433,-11434,-3040,-3052, --518,-11435,-11436,-726,-784,-1415,-1419,-1428,-1683,-2634,-1889,-1891,-1916,-2006,-2019,-2516], -[0,-2006,-3967,-1791,-3175,-11437,-3173,-1713,-7204,-3177,-11438], +[0,-90,-12218,-336,-1801,-865,-12219,-494,-3862,-125], +[0,-3174,-48,-11,-3476,-170,-21,-132,-137,-6020,-245,-1178,-319,-153,-120,-1478,-307,-29,-5,-6021,-12220,-47,-89,-157, +-12221,-12222,-284,-369,-8,-176,-1086,-800,-242,-38,-682,-1452,-6,-36,-818], +[0,-6,-353,-865,-1490,-2899,-695,-390,-3585,-4508,-12223], [1,3,6298], [0,0,0,6299,5], -[0,-2634,-510,-11439,-11440], +[0,-242,-59,-12224,-12225], [1,3,6301], [0,0,0,6302,10], -[0,-475,-4004,-3634,-4215,-4041,-3095,-8223,-11441,-11442,-5196,-11443,-11444,-3100,-3577,-1415,-1412,-915,-8611,-6137], +[0,-184,-76,-61,-317,-2554,-131,-5458,-2260,-12226,-1323,-12227,-12228,-52,-192,-8,-196,-431,-1571,-2154], [1,3,6304], [0,6305,0,6306,4], -[0,-5,-11445,-3946,-807,-2387], -[0,-3158,-3099,-475,-3160,-3161,-3100], +[0,-2944,-12229,-1754,-1061,-44], +[0,-1733,-441,-184,-102,-53,-52], [1,3,6308], [0,6309,6310,6311,4], -[0,-1116,-2446,-2548,-7004,-1018,-1552], -[0,-664,-668,-1654,-2210,-3037], -[0,-1716,-11446,-11447,-1546,-11448], +[0,-387,-125,-262,-5229,-1070,-1096], +[0,-13,-20,-3,-27,-5], +[0,-4253,-12230,-12231,-4235,-12232], [1,3,6313], [0,0,6314,7,10], -[0,-664,-729,-1654,-1974,-2187,-2286], +[0,-13,-218,-3,-642,-393,-396], [1,3,6316], [0,6317,6318,6319,6], -[0,-812,-11449,-10659,-891,-11450,-11451,-1451,-11452,-1650,-6810,-1801,-2125,-11453,-2240], -[0,-510,-579,-11178,-615,-664,-665,-932,-940,-967,-1004,-1344,-1654,-11454,-1685,-1880,-1942,-2187,-2239], -[0,-1718,-891], +[0,-35,-12233,-2877,-458,-3921,-12234,-1087,-12235,-72,-1836,-680,-7,-12236,-881], +[0,-59,-1381,-3915,-114,-13,-239,-1,-12,-25,-40,-10,-3,-12237,-1441,-804,-4,-393,-812], +[0,-4254,-458], [1,3,6321], [0,6322,6323,6324,6], -[0,-11455,-11456,-11457,-3035,-11458,-6192,-5113,-6535,-623,-11459,-668,-680,-695,-11460,-11461,-865,-888,-914,-1107, --1449,-1548,-1645,-1646,-1654,-11462,-1805,-1816,-8563,-2173,-2177,-11463,-2269,-2430,-2446], -[0,-99,-367,-3037,-427,-428,-749,-767,-932,-1344,-1392,-1442,-1534,-1656,-3038,-11464,-11465,-1663,-1722,-1788,-2006, --2019,-2125,-2184,-2379,-2384,-2648], -[0,-1719,-11466,-11467,-3634,-11468,-2734,-4867,-11469,-4866,-3095,-4868,-4004,-4865,-3162,-4043,-5769,-793,-1654,-4864], +[0,-12238,-12239,-12240,-109,-1893,-2670,-1522,-5142,-1209,-12241,-20,-481,-624,-3922,-12242,-210,-337,-1629,-28,-78,-23, +-92,-88,-3,-12243,-152,-325,-5536,-1120,-16,-2261,-139,-1473,-125], +[0,-4068,-245,-5,-22,-19,-625,-26,-1,-10,-547,-101,-17,-974,-4486,-12244,-12245,-1440,-197,-15,-6,-36,-7,-809,-33,-82, +-2017], +[0,-2389,-12246,-1036,-61,-930,-1717,-1518,-12247,-1517,-131,-913,-76,-94,-95,-473,-2135,-1618,-3,-572], [1,3,6326], [0,6327,6328,6329,8], -[0,-4884,-357,-11470,-7755,-1851], -[0,-4888,-11471,-633,-1344,-1449,-11472,-1534,-1654,-11473,-1788,-1942,-1972,-11474,-11475], -[0,-4004,-3634,-8959,-4215,-2533,-3844], +[0,-3319,-623,-12248,-3654,-553], +[0,-3320,-6022,-60,-10,-78,-3923,-17,-3,-6023,-15,-4,-181,-12249,-12250], +[0,-76,-61,-1873,-317,-743,-216], [1,3,6331], [0,6332,6333,7,4], -[0,-11476,-269,-1459], -[0,-1116,-1788,-664,-1415,-1654,-2210,-932,-2125,-1942,-1069,-838,-1972,-2211,-2410,-1771,-6522,-2174,-966,-964,-357,-958, --968,-940,-943,-3775], +[0,-12251,-1906,-1088], +[0,-387,-15,-13,-8,-3,-27,-1,-7,-4,-628,-1393,-181,-190,-2,-65,-5138,-122,-75,-256,-623,-9,-67,-12,-83,-3239], [1,3,6335], [0,0,6336,6337,11], -[0,-589,-596,-11477,-932,-1077,-2884,-1939,-2177], -[0,-11478,-11479,-6249,-5269,-596,-6251,-6252,-1696,-1723], +[0,-110,-667,-2262,-1,-41,-819,-234,-16], +[0,-12252,-12253,-2159,-501,-667,-2672,-2673,-801,-864], [1,3,6339], [0,6340,6341,6342,4], -[0,-702], -[0,-1788,-1127,-1654,-2198,-756,-1132,-7845,-2410,-3037,-7887,-710,-11480,-9280,-1134,-1149,-11481,-11482], -[0,-3324,-6491,-8427,-3833,-6809,-10412,-11483,-3966,-1622,-7208], +[0,-507], +[0,-15,-54,-3,-81,-55,-164,-3659,-2,-5,-3663,-455,-12254,-3773,-240,-304,-12255,-12256], +[0,-443,-2167,-1191,-2054,-2707,-1034,-6024,-144,-2382,-426], [1,3,6344], [0,0,6345,6346,4], -[0,-3037,-11484,-1077,-1344,-1654,-1788,-2125,-2410,-11485], -[0,-3966,-11486,-5574,-7534,-11487,-7371,-6974,-6582,-5847,-11488,-856], +[0,-5,-12257,-41,-10,-3,-15,-7,-2,-12258], +[0,-144,-3924,-1022,-1344,-6025,-838,-5217,-479,-5016,-12259,-42], [1,3,6348], [0,6349,6350,6351,6], -[0,-808,-11489,-11490,-1097,-1646,-1737,-2114,-2177], -[0,-3037,-932,-958,-1344,-1534,-1942,-2319,-11491,-2363,-2379,-2410], -[0,-9427,-11492,-2295,-1673,-2490], +[0,-1620,-12260,-12261,-1646,-88,-1445,-126,-16], +[0,-5,-1,-9,-10,-17,-4,-85,-6026,-418,-33,-2], +[0,-3792,-1585,-2439,-1241,-606], [1,3,6353], [0,124,70,6354,11], -[0,-1727,-7421,-11070,-11493,-6656,-6235,-7547,-1076], +[0,-4255,-427,-2254,-12262,-128,-1537,-2196,-303], [1,3,6356], [0,6357,6358,6359,4], -[0,-9154,-11494,-11495,-11496], -[0,-4646,-367,-3330,-427,-428,-3664,-7351,-774,-932,-7352,-954,-960,-961,-963,-965,-7353,-7354,-971,-979,-7355,-1344, --7356,-1498,-1534,-1608,-1609,-1768,-7357,-1942,-7358,-1945,-2091,-11497,-7359,-2391,-2410,-2469,-7360], -[0,-10838,-5493,-10841,-10840,-11498,-11499,-11500,-11501,-11502,-11503], +[0,-2824,-12263,-12264,-12265], +[0,-909,-245,-364,-22,-19,-105,-5288,-407,-1,-5289,-1405,-180,-1223,-211,-115,-2738,-2739,-784,-1948,-1849,-10,-2188,-799, +-17,-973,-518,-1108,-2740,-4,-5290,-870,-378,-12266,-5291,-172,-2,-30,-5292], +[0,-2252,-654,-5931,-3903,-12267,-12268,-12269,-12270,-12271,-12272], [1,3,6361], [0,6362,6363,6364,4], -[0,-7026,-11504,-8966], -[0,-458,-5993,-649,-652,-664,-665,-11505,-9077,-756,-1069,-5989,-1654,-1828,-11506,-2384,-2541], -[0,-4213,-1334,-1961,-2105,-9172,-9173,-2533,-5388], +[0,-2724,-12273,-5589], +[0,-1203,-3464,-1386,-43,-13,-239,-12274,-2229,-55,-628,-2655,-3,-1983,-12275,-82,-34], +[0,-905,-103,-171,-111,-2232,-2233,-743,-1158], [1,3,6366], [0,0,6367,6368,6], -[0,-633,-719,-767,-932,-11507,-1004,-1471,-1472,-1475,-1478,-1479,-1480,-1482,-1483,-1487,-1488,-1490,-11508,-1492,-1654, --1657,-11509,-1788,-6696,-2501,-2503,-11510], -[0,-11511,-11512,-11513,-11514,-770,-5374,-11515,-11516,-11517,-11518,-1334,-1342,-1616,-5150,-11519,-11520,-11521,-11522, --11523,-2191,-11524,-11525,-11526,-8905,-11527,-11528,-11529], +[0,-60,-58,-26,-1,-12276,-40,-79,-860,-138,-1661,-213,-1090,-187,-414,-861,-798,-637,-6027,-517,-3,-589,-12277,-15,-2702, +-18,-93,-6028], +[0,-6029,-12278,-12279,-12280,-626,-3385,-12281,-12282,-6030,-12283,-103,-388,-1100,-1155,-12284,-12285,-12286,-12287, +-12288,-2424,-6031,-12289,-6032,-2810,-12290,-12291,-12292], [1,3,6370], [0,6371,6372,6373,9], -[0,-523,-812,-1548], -[0,-664,-1654,-1972,-2210], -[0,-3939,-5801,-5737,-5741,-5271,-11530,-11517,-11531,-1050,-5270,-491,-11532], +[0,-194,-35,-23], +[0,-13,-3,-181,-27], +[0,-1507,-1162,-1328,-3432,-355,-12293,-6030,-12294,-1410,-291,-4111,-6033], [1,3,6375], [0,6376,6377,6378,9], -[0,-615,-1729], -[0,-664,-932,-1415,-2210], -[0,-11533,-11534,-11535,-3939,-11536,-11537,-11538,-11539,-11540], +[0,-114,-188], +[0,-13,-1,-8,-27], +[0,-12295,-12296,-12297,-1507,-6034,-12298,-12299,-12300,-12301], [1,3,6380], [0,6381,6382,6383,4], -[0,-5672,-11541,-1119,-10521,-1758,-1957,-2177,-2323,-2654,-2518], -[0,-596,-767,-932,-1654,-1696,-2884,-11542], -[0,-5269,-6249,-3551,-6251,-6252,-596,-6250], +[0,-1812,-12302,-324,-1888,-463,-980,-16,-312,-313,-222], +[0,-667,-26,-1,-3,-801,-819,-6035], +[0,-501,-2159,-365,-2672,-2673,-667,-5088], [1,3,6385], [0,6386,6387,6388,5], -[0,-780,-1297], -[0,-7177,-674,-767,-932,-11543,-1317,-11544,-11545,-11546,-6595,-11547,-1333,-11548,-11549,-1839,-2125,-10301,-2251,-2379, --2552], -[0,-3264,-3215,-3967,-2410], +[0,-2993,-1077], +[0,-3582,-231,-26,-1,-12303,-2354,-12304,-12305,-12306,-3534,-12307,-488,-12308,-12309,-593,-7,-5815,-134,-33,-692], +[0,-31,-74,-353,-2], [1,3,6390], [0,6391,6392,6393,5], -[0,-510,-11550,-812,-1004,-1107,-1850,-2001,-2177,-2185,-11551,-11552,-11553,-2518,-2531,-2550], -[0,-664,-1077,-1380,-1452,-1654,-1764,-1961,-2125], -[0,-812,-7336,-6480,-6479], +[0,-59,-6036,-35,-40,-28,-1249,-1459,-16,-1699,-12310,-12311,-12312,-222,-205,-98], +[0,-13,-41,-729,-119,-3,-159,-171,-7], +[0,-35,-3602,-5131,-3516], [1,3,6395], [0,6396,6397,6398,11], -[0,-459,-736,-828,-1072,-8438,-1636,-1640,-1840,-1997,-2401], -[0,-3035,-3621,-427,-428,-664,-932,-934,-940,-958,-1344,-1654,-1788,-1942,-2210,-2211,-2379,-2384,-2410], -[0,-4215,-8611,-10327,-3967,-3756,-3634,-4004,-1334,-11554], +[0,-1044,-942,-1062,-669,-3717,-1104,-260,-735,-1114,-988], +[0,-109,-71,-22,-19,-13,-1,-185,-12,-9,-10,-3,-15,-4,-27,-190,-33,-82,-2], +[0,-317,-1571,-5819,-353,-278,-61,-76,-103,-12313], [1,3,6400], [0,6401,6402,6403,10], -[0,-11555,-1401,-2177,-11556,-2446,-2518], -[0,-749,-767,-932,-942,-943,-958,-966,-968,-1344,-1415,-1534,-11557,-1942,-2125], -[0,-11558,-11559,-9258,-11560,-9262,-6721,-11561,-11562,-4127], +[0,-12314,-856,-16,-12315,-125,-222], +[0,-625,-26,-1,-1631,-83,-9,-75,-67,-10,-8,-17,-12316,-4,-7], +[0,-12317,-12318,-2831,-12319,-3770,-2705,-12320,-12321,-1761], [1,3,6405], [0,6406,6407,6408,5], -[0,-579], -[0,-617,-1004,-1654,-2198,-2293], -[0,-1791,-11437], +[0,-1381], +[0,-163,-40,-3,-81,-123], +[0,-865,-2899], [1,3,6410], [0,89,56,57,8], [1,3,6412], [0,6413,6414,6415,8], -[0,-8612,-1650,-1708,-1758,-1769,-1778,-2001,-2125,-2177,-2323], -[0,-521,-1452,-1722,-2322], -[0,-5269,-6249,-3551,-6251,-6252,-596,-7304], +[0,-2221,-72,-1675,-463,-1677,-2393,-1459,-7,-16,-312], +[0,-936,-119,-197,-39], +[0,-501,-2159,-365,-2672,-2673,-667,-837], [1,3,6417], [0,6418,6419,6420,4], -[0,-1723], -[0,-1654,-932,-11563,-1733,-767,-2410,-3037,-3621,-428,-427], -[0,-11564,-3975,-3974,-11565,-11566,-11567], +[0,-864], +[0,-3,-1,-12322,-590,-26,-2,-5,-71,-19,-22], +[0,-6037,-445,-178,-12323,-12324,-12325], [1,3,6422], [0,6423,0,6424,8], -[0,-11568,-11569,-11570,-11571,-579,-583,-754,-1004,-1077,-11572,-1758,-2177], -[0,-3496,-11532,-11573,-5411], +[0,-12326,-12327,-12328,-12329,-1381,-2305,-368,-40,-41,-12330,-463,-16], +[0,-420,-6033,-3925,-1809], [1,3,6426], [0,6427,6428,6429,10], -[0,-1696,-1088,-1107,-1630,-668,-1548,-1733,-1099,-11574,-769,-11575,-11576,-11577,-10521], -[0,-1788,-1654,-932,-2125,-1077,-11578], -[0,-775,-9264,-3277,-2162,-3754,-5553], +[0,-801,-1645,-28,-462,-20,-23,-590,-1229,-12331,-225,-12332,-12333,-12334,-1888], +[0,-15,-3,-1,-7,-41,-12335], +[0,-24,-3771,-608,-80,-444,-230], [1,3,6431], [0,6432,6433,6434,4], -[0,-5414,-11579,-11580], -[0,-1788,-2322,-2210,-468,-932], -[0,-7046,-4107,-5418,-763,-11581,-10950], +[0,-4917,-12336,-12337], +[0,-15,-39,-27,-718,-1], +[0,-3572,-824,-1530,-1058,-12338,-5953], [1,3,6436], [0,6437,0,6438,4], -[0,-1813,-714,-1640], -[0,-1334,-5142,-6656,-3844], +[0,-551,-133,-260], +[0,-103,-914,-128,-216], [1,3,6440], [0,0,6441,6442,5], -[0,-1788], -[0,-7230,-11582,-2446], +[0,-15], +[0,-2735,-3926,-125], [1,3,6444], [0,0,6445,6446,10], -[0,-1077,-1654], -[0,-11583,-2490,-11584], +[0,-41,-3], +[0,-12339,-606,-12340], [1,3,6448], [0,6449,0,6450,8], -[0,-6597,-2550], -[0,-11585,-7084,-5196,-11586,-5545,-5389,-11587,-11588,-11589,-4107], +[0,-537,-98], +[0,-12341,-764,-1323,-6038,-384,-827,-12342,-12343,-12344,-824], [1,3,6452], [0,6453,6454,6455,4], -[0,-2534], -[0,-11590,-11591,-3037,-932,-1942,-1944,-2391,-2410,-3924,-2469], -[0,-11592,-3215,-4258,-2534,-11593], +[0,-1715], +[0,-12345,-12346,-5,-1,-4,-1113,-172,-2,-3255,-30], +[0,-6039,-74,-908,-1715,-6040], [1,3,6457], [0,6458,6459,6460,11], -[0,-1285,-1391], -[0,-5834,-515,-932,-1365,-7393,-1777,-1788,-1797,-2156,-2322], -[0,-1015,-11594,-11595,-702,-6351,-11596], +[0,-672,-634], +[0,-244,-720,-1,-212,-5295,-273,-15,-591,-189,-39], +[0,-432,-3927,-12347,-507,-709,-12348], [1,3,6462], [0,6463,6464,6465,5], -[0,-1116,-1696,-1460,-1993,-1548,-2324,-1077,-1733,-1740], -[0,-2487,-1654,-1452,-521,-674,-11597,-1405,-526,-756,-1440,-11598,-7382,-559], -[0,-11599,-11600,-5889,-5269], +[0,-387,-801,-272,-643,-23,-1267,-41,-590,-4257], +[0,-741,-3,-119,-936,-231,-12349,-66,-179,-55,-968,-12350,-3603,-321], +[0,-12351,-12352,-402,-501], [1,3,6467], [0,0,6468,6469,6], -[0,-11601,-648,-652,-932,-940,-1110,-11602,-11603,-11604,-11605,-1942,-1971,-11606,-7932], -[0,-11607], +[0,-12353,-1210,-43,-1,-12,-56,-12354,-12355,-12356,-12357,-4,-596,-12358,-5385], +[0,-12359], [1,3,6471], [0,6472,6473,6474,5], -[0,-679,-812,-5911,-1645,-11608,-2177,-7741,-2297,-2363,-11609], -[0,-86,-3307,-510,-710,-932,-1344,-1654,-1788,-1972,-2174,-2198], -[0,-687,-1673,-1673,-3113,-9427,-11610,-11492,-3974], +[0,-117,-35,-5028,-92,-12360,-16,-3651,-468,-418,-12361], +[0,-49,-63,-59,-455,-1,-10,-3,-15,-181,-122,-81], +[0,-37,-1241,-1241,-694,-3792,-12362,-1585,-178], [1,3,6476], [0,6477,0,7,5], -[0,-888,-2319], +[0,-337,-85], [1,3,6479], [0,6480,6481,6482,4], -[0,-2125,-867,-11611,-2550,-2177], -[0,-2105,-2322], -[0,-11612,-11613,-7856,-11321,-9668], +[0,-7,-1217,-12363,-98,-16], +[0,-111,-39], +[0,-12364,-6041,-1859,-1357,-1194], [1,3,6484], [0,6485,0,6486,5], -[0,-7603,-469,-470,-8547,-5329,-473,-11614,-523,-617,-679,-744,-754,-792,-1004,-4206,-11615,-11616,-1107,-1299,-11617, --11618,-1460,-11619,-1465,-11620,-1581,-5460,-11621,-1671,-1680,-1707,-7045,-11622,-1752,-1805,-1857,-11623,-2071,-11492, --2107,-11624,-11625,-2520,-3730,-2548,-2550], -[0,-11626,-1756,-3214,-3967,-3161,-3445,-3100,-5407,-11627,-11628,-11629,-11630,-4055,-11631,-4058,-1460,-2548,-3994, --11632], +[0,-3644,-183,-773,-3725,-2620,-2295,-12365,-194,-163,-117,-581,-368,-2995,-40,-2562,-12366,-6042,-28,-3037,-12367,-12368, +-272,-6043,-797,-12369,-3063,-4936,-12370,-375,-2386,-4251,-5233,-12371,-1676,-152,-595,-12372,-688,-1585,-4305,-12373, +-12374,-564,-2528,-262,-98], +[0,-12375,-4260,-45,-353,-53,-46,-52,-2633,-12376,-12377,-12378,-12379,-108,-12380,-331,-272,-262,-306,-12381], [1,3,6488], [0,6489,83,6490,4], -[0,-2424,-668], -[0,-7303,-11633,-4376,-6792,-3215], +[0,-250,-20], +[0,-1848,-12382,-1770,-2174,-74], [1,3,6492], [0,6493,29,7,5], -[0,-9632], +[0,-2847], [1,3,6495], [0,0,6496,6497,8], -[0,-1202,-1646,-1654], -[0,-11634,-11635,-11636,-6656,-11637,-7693,-7839,-11638,-11639,-1076,-6811,-1847,-9358,-6517,-2218,-11640,-11641,-11642, --11643], +[0,-671,-88,-3], +[0,-6044,-6045,-12383,-128,-12384,-2753,-5373,-12385,-2900,-303,-1837,-249,-3781,-5136,-288,-12386,-12387,-2263,-12388], [1,3,6499], [0,0,14,6500,4], -[0,-6811,-2435,-9171,-6558,-2265,-11644,-11645,-5101,-1985,-11646,-6817,-11647,-11648], +[0,-1837,-200,-2825,-2169,-168,-6046,-12389,-702,-982,-12390,-1174,-2264,-12391], [1,3,6502], [0,0,0,6503,5], -[0,-11649,-11644,-4865], +[0,-12392,-6046,-94], [1,3,6505], [0,6506,6507,6508,4], -[0,-668,-6793,-700,-755,-824,-2762,-930,-999,-11650,-11651,-1315,-6770,-1363,-1376,-1394,-11652,-11653,-11654,-1535, --11655,-1574,-1630,-11656,-11657,-9050,-1805,-11658,-10270,-1849,-3609,-2060,-2153,-2177,-5746,-3669,-2433], -[0,-9154,-3199,-519,-722,-9982,-1077,-11659,-2210,-2269,-2331,-11660,-2541], -[0,-5732,-687,-1764,-8403,-5889,-5737,-9318,-6453,-5890], +[0,-20,-2706,-2989,-386,-150,-3146,-408,-118,-12393,-12394,-792,-3547,-1653,-195,-1655,-6047,-12395,-12396,-1970,-12397, +-638,-462,-6048,-12398,-2820,-152,-12399,-3869,-492,-1502,-1690,-496,-16,-3435,-3224,-604], +[0,-2824,-140,-51,-456,-3853,-41,-12400,-27,-139,-379,-12401,-34], +[0,-762,-37,-159,-769,-402,-1328,-715,-3515,-1815], [1,3,6510], [0,6511,6512,6513,4], -[0,-1681,-1371,-2323,-1107,-1758,-2059,-2247,-11661,-668,-1826,-2518,-9632,-1831,-2177,-4287,-680,-11662,-9084,-1733, --1957,-11663,-1645,-4296,-4279,-1527,-1528,-1529,-11664,-11665,-2343,-11666,-1119,-11667,-10513,-11668,-11669,-10517, --11670,-11671,-4285,-2297,-1315,-1767,-1982,-280,-11672,-10520,-10521,-11673,-4291,-11674,-283,-4290,-1770,-11675,-11676, --4292,-4283,-4306,-8266,-281,-2450,-4281, --4278,-11677], -[0,-469,-2319,-834,-1722,-4307,-2093,-2125,-695,-2095,-11678,-470,-11679,-1769,-4655,-11680,-11681,-4300,-4298,-4299, --11682], -[0,-1380,-3209,-11683,-10484], +[0,-549,-728,-312,-28,-463,-597,-1464,-6049,-20,-552,-222,-2847,-1248,-16,-2079,-481,-12402,-1875,-590,-980,-12403,-92, +-4740,-4733,-4229,-3060,-4230,-12404,-12405,-885,-6050,-324,-12406,-5858,-12407,-12408,-5859,-12409,-6051,-3291,-468, +-792,-975,-1456,-840,-12410,-5861,-1888,-12411,-3292,-12412,-1202,-4738,-1678,-12413,-2265,-4739,-1513,-3296,-5464,-2958, +-1272,-4734, +-4732,-6052], +[0,-183,-85,-203,-197,-4741,-274,-7,-624,-522,-6053,-773,-12414,-1677,-1772,-12415,-12416,-756,-755,-3294,-12417], +[0,-729,-381,-6054,-1583], [1,3,6515], [0,6516,6517,6518,4], -[0,-705,-1816,-1630,-668,-999,-1392,-2546,-11684,-1111,-1548,-2177,-11685,-1871,-827,-1376,-1645,-1728,-2269,-2343,-1849, --11686,-5895,-11687,-6197,-11688,-2433,-11689], -[0,-2541,-526,-567,-559,-555,-551], -[0,-1764,-11690,-3015,-7441,-5887,-7440,-11691,-3690,-9845,-687,-9594,-11692,-11693,-7856,-3016], +[0,-941,-325,-462,-20,-118,-547,-744,-12418,-204,-23,-16,-2901,-1984,-1392,-195,-92,-2391,-139,-885,-492,-12419,-1816, +-12420,-2671,-12421,-604,-6055], +[0,-34,-179,-282,-321,-937,-775], +[0,-159,-12422,-693,-2193,-830,-293,-12423,-100,-1886,-37,-1579,-12424,-6056,-1859,-2480], [1,3,6520], [0,0,6521,6522,4], -[0,-11694,-7057,-3035,-4269,-11695,-11696,-5361,-11697,-3660,-11698,-3044,-3621,-3037,-11699,-11700,-8523,-3624,-3735, --3199,-11701,-4372,-11702,-427,-428,-656,-664,-665,-9077,-668,-695,-719,-767,-8609,-932,-940,-11703,-943,-958,-960,-965, --968,-1026,-10960,-1047,-11704,-1315,-1371,-1442,-1461,-11705,-1547,-1548,-1609,-1654,-1770,-1771,-1826,-5883,-1864, --1942,-1959,-11706,-11689, --2124,-2125,-5405,-2177,-11707,-2198,-2210,-2234,-7744,-2269,-2379,-2410,-11708,-2430,-2433,-11709,-2466,-11710,-11711, --6859,-2552], -[0,-3015,-1764,-10484,-10674,-11712,-11713], +[0,-12425,-1842,-109,-754,-12426,-12427,-2130,-2902,-421,-12428,-143,-71,-5,-12429,-12430,-662,-2518,-822,-140,-12431, +-279,-3928,-22,-19,-430,-13,-239,-2229,-20,-624,-58,-26,-2220,-1,-12,-12432,-83,-9,-180,-115,-67,-226,-5955,-339,-12433, +-792,-728,-101,-636,-6057,-1095,-23,-518,-3,-1678,-65,-552,-5020,-326,-4,-362,-12434,-6055, +-1695,-7,-3392,-16,-12435,-81,-27,-147,-5359,-139,-33,-2,-3929,-1473,-604,-12436,-104,-6058,-12437,-923,-692], +[0,-693,-159,-1583,-2878,-12438,-6059], [1,3,6524], [0,6525,29,7,5], -[0,-1315,-1957,-2177,-2450], +[0,-792,-980,-16,-1272], [1,3,6527], [0,6528,6529,6530,6], -[0,-469,-3907,-668,-755,-812,-1111,-1353,-1395,-1461,-1574,-1630,-1877,-2177,-2218,-2271,-2400,-2450], -[0,-3136,-3037,-427,-428,-928,-11714,-932,-11715,-11716,-954,-958,-959,-967,-978,-1040,-1415,-7357,-11717,-1942,-2375, --2410], -[0,-7148,-8170,-10484,-5879,-11718,-1768], +[0,-183,-3250,-20,-386,-35,-204,-460,-1082,-636,-638,-462,-979,-16,-288,-601,-215,-1272], +[0,-29,-5,-22,-19,-87,-6060,-1,-12439,-12440,-1405,-9,-145,-25,-151,-510,-8,-2740,-12441,-4,-57,-2], +[0,-224,-577,-1583,-2140,-12442,-1108], [1,3,6532], [0,6533,6534,7,8], -[0,-6770,-1957], -[0,-280,-4298,-4300,-11719,-2319], +[0,-3547,-980], +[0,-840,-755,-756,-2903,-85], [1,3,6536], [0,6537,6538,6539,10], -[0,-4285,-10335,-10521,-9084,-11720,-11721,-1767,-1957], -[0,-4298,-4300,-4287,-1722,-11542,-2247,-2319], -[0,-1764,-11722,-4213], +[0,-3291,-5820,-1888,-1875,-12443,-6061,-975,-980], +[0,-755,-756,-2079,-197,-6035,-1464,-85], +[0,-159,-2266,-905], [1,3,6541], [0,6542,6543,233,4], -[0,-668,-11084,-2060,-1645,-482,-769,-2194,-1627,-11723], -[0,-1788,-2552,-1654,-932,-2125,-708,-1827,-1077,-3037,-1938,-566,-11724,-6018,-545], +[0,-20,-3913,-1690,-92,-719,-225,-737,-1670,-12444], +[0,-15,-692,-3,-1,-7,-149,-1110,-41,-5,-1454,-429,-12445,-5047,-1921], [1,3,6545], [0,6546,6547,233,11], -[0,-2518,-11084,-1864,-482,-769,-2194,-1627,-11728], -[0,-652,-1498,-2552,-1446,-1654,-932,-9774,-2884,-516,-3781], +[0,-222,-3913,-326,-719,-225,-737,-1670,-12448], +[0,-43,-799,-692,-165,-3,-1,-5748,-819,-269,-1504], [1,3,6549], [0,6550,14,6551,5], -[0,-7087,-8803], -[0,-1764,-11727,-1847,-5897,-8425,-7304,-8426,-11729,-687,-3958,-7096,-7237], +[0,-3576,-2797], +[0,-159,-2904,-249,-478,-1569,-837,-5503,-2905,-37,-299,-3577,-2186], [1,3,6553], [0,0,6554,6555,5], -[0,-3136,-3037,-427,-428,-3267,-932,-940,-1415,-1534,-10652,-2125,-2127,-2375,-2410], -[0,-11730,-856,-11731], +[0,-29,-5,-22,-19,-330,-1,-12,-8,-17,-2875,-7,-14,-57,-2], +[0,-12449,-42,-12450], [1,3,6557], [0,6558,6559,6560,4], -[0,-668,-691,-719,-812,-1376,-1965], -[0,-664,-1654,-1663,-2250], -[0,-7865,-1764,-11732], +[0,-20,-4125,-58,-35,-195,-495], +[0,-13,-3,-1440,-97], +[0,-5377,-159,-12451], [1,3,6562], [0,6563,6564,6565,6], -[0,-1376,-1993], -[0,-526,-541,-551,-11733,-566,-1771], -[0,-1764,-687,-7095,-3957,-9408,-4043,-9845,-1776,-11734], +[0,-195,-643], +[0,-179,-1047,-775,-6062,-429,-65], +[0,-159,-37,-1343,-316,-3788,-473,-1886,-1679,-12452], [1,3,6567], [0,6568,6569,6570,6], -[0,-1285,-1646], -[0,-5834,-516,-5835,-932,-1365,-1431,-1788,-2156,-2322], -[0,-1777,-9100], +[0,-672,-88], +[0,-244,-269,-533,-1,-212,-516,-15,-189,-39], +[0,-273,-3762], [1,3,6572], [0,6573,6574,7,6], -[0,-4700,-10515,-11735,-4716], -[0,-2319,-4300,-4298], +[0,-2579,-3884,-12453,-2580], +[0,-85,-756,-755], [1,3,6576], [0,0,6577,7,4], -[0,-664,-1437,-1449,-1654,-11736], +[0,-13,-248,-78,-3,-12454], [1,3,6579], [0,6580,6581,6582,4], -[0,-668,-694,-11737,-1343,-1376,-11738,-2177,-9564,-2550], -[0,-619,-707,-8326,-1277,-1510,-1658], -[0,-7107,-1780,-8327], +[0,-20,-4126,-12455,-727,-195,-12456,-16,-5709,-98], +[0,-1927,-334,-5477,-1956,-1091,-548], +[0,-711,-2394,-5478], [1,3,6584], [0,6585,6586,6587,5], -[0,-11739], -[0,-3136,-3037,-427,-428,-749,-932,-940,-967,-1344,-1415,-1942,-1952,-2125,-2375,-2379,-2410], -[0,-1781,-11740,-687,-3578,-3871,-7864,-2006,-3966,-2410,-3214,-2501,-1415,-3100,-3445,-5407], +[0,-12457], +[0,-29,-5,-22,-19,-625,-1,-12,-25,-10,-8,-4,-435,-7,-57,-33,-2], +[0,-4264,-12458,-37,-113,-2545,-2762,-6,-144,-2,-45,-18,-8,-52,-46,-2633], [1,3,6589], [0,0,6590,6591,6], -[0,-664,-1138,-1146,-1155,-1156,-9545,-1471,-1474,-1475,-1479,-1482,-1483,-1488,-1542,-1654], -[0,-1782,-6240,-3276,-4123,-11741,-11742], +[0,-13,-511,-358,-958,-959,-5704,-79,-675,-138,-213,-187,-414,-798,-343,-3], +[0,-2395,-1538,-566,-612,-12459,-12460], [1,3,6593], [0,6594,6595,6596,5], -[0,-11743,-11744,-719], -[0,-21,-23,-40,-43,-534,-539,-541,-729,-753,-767,-932,-934,-958,-1004,-1077,-1098,-11745,-11746,-11747,-11748,-1788,-1860, --2187,-2416,-2417,-2501], -[0,-3110,-7651], +[0,-12461,-6063,-58], +[0,-48,-11,-21,-174,-96,-333,-1047,-218,-158,-26,-1,-185,-9,-40,-41,-486,-12462,-12463,-2906,-6064,-15,-640,-393,-112, +-1130,-18], +[0,-277,-1181], [1,3,6598], [0,0,0,6599,5], -[0,-8427,-3966], +[0,-1191,-144], [1,3,6601], [0,0,6602,6603,10], -[0,-2832,-5834,-8084,-8096,-516,-652,-5835,-932,-1431,-1365,-1777,-2156,-2322], -[0,-1784,-1785,-5874], +[0,-314,-244,-1563,-714,-269,-43,-533,-1,-516,-212,-273,-189,-39], +[0,-3074,-4265,-534], [1,3,6605], [0,0,0,6606,10], -[0,-775,-5180,-11749,-5912,-3585], +[0,-24,-1321,-12464,-2143,-1499], [1,3,6608], [0,6609,0,6610,4], -[0,-888,-1816,-2359,-1055,-1805,-2548,-523,-701,-2387,-2550,-865,-1353,-2177,-1040,-910,-1418,-1645,-2369,-690,-1863, --2325,-692,-1075,-1461,-1773,-2267,-2551,-866,-2383,-11750,-11751,-11752,-4341,-10789,-11753,-11754], -[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340,-4347,-4343,-4344,-11755], +[0,-337,-325,-161,-1411,-152,-262,-194,-2990,-44,-98,-210,-460,-16,-510,-543,-857,-92,-691,-1616,-167,-884,-2327,-1640, +-636,-1981,-395,-525,-945,-815,-6065,-2267,-6066,-2566,-5920,-12465,-6067], +[0,-1152,-1765,-1766,-1305,-1306,-2081,-1767,-1768,-826,-2083,-2082,-1514,-6068], [1,3,6612], [0,6613,6614,6615,4], -[0,-6028,-4003,-11756,-742,-813,-1046,-1047,-6475,-1097,-1107,-5086,-11757,-6029,-11758,-5087,-5088,-5089,-1591,-11759, --1826,-11760,-2115,-2125,-2202,-11761,-6030,-2550], -[0,-11762,-5607,-2111,-2234,-2250,-2251,-2319,-2446,-2518], -[0,-4005,-6863,-8422,-3634], +[0,-5051,-2552,-12466,-457,-1622,-1408,-339,-2693,-1646,-28,-2101,-12467,-3471,-12468,-1787,-2607,-2102,-733,-12469,-552, +-12470,-644,-7,-879,-12471,-3472,-98], +[0,-12472,-4965,-416,-147,-97,-134,-85,-125,-222], +[0,-823,-1023,-5502,-61], [1,3,6617], [0,6618,6619,6620,5], -[0,-11763,-4049,-3424,-11619,-10873,-5969,-5263,-1851,-11764], -[0,-11765,-11766,-11767,-3037,-2391,-2410,-2469], -[0,-3690,-11768,-3438,-11769,-11770,-11771,-11772,-11773,-1789,-489,-11148,-856], +[0,-6069,-652,-4558,-6043,-5937,-1817,-2123,-553,-12473], +[0,-3930,-12474,-12475,-5,-172,-2,-30], +[0,-100,-3931,-697,-3932,-3933,-3934,-3935,-3936,-1680,-1376,-1891,-42], [1,3,6622], [0,6623,6624,6625,4], -[0,-11763,-11774,-1442,-5263,-3792], -[0,-11765,-3660,-11775,-1722,-2391,-2410,-2469], -[0,-3690,-489,-11768,-856,-11148,-11773,-1789,-3438,-11772,-11769,-11771,-11770,-11410,-4847], +[0,-6069,-12476,-101,-2123,-3240], +[0,-3930,-421,-12477,-197,-172,-2,-30], +[0,-100,-1376,-3931,-42,-1891,-3936,-1680,-697,-3935,-3932,-3934,-3933,-2897,-571], [1,3,6627], [0,0,84,7,8], [1,3,6629], [0,0,6630,6631,5], -[0,-2541,-519,-1548,-1612], -[0,-7208,-7370,-1015,-3589,-4795,-3217,-3207,-6989,-11776,-3582,-5396,-4865], +[0,-34,-51,-23,-1435], +[0,-426,-1850,-432,-1144,-446,-350,-1736,-1549,-12478,-567,-706,-94], [1,3,6633], [0,0,6634,6635,4], -[0,-633,-1168,-1177,-11117,-11777,-1220,-1224,-1231,-1243,-1244,-1262,-1452,-1453,-1471,-1475,-1482,-1654], -[0,-7208,-6131,-2191,-1616], +[0,-60,-32,-3023,-2888,-6070,-961,-791,-359,-310,-962,-632,-119,-969,-79,-138,-187,-3], +[0,-426,-1536,-2424,-1100], [1,3,6637], [0,0,6638,6639,6], -[0,-5834,-11778,-516,-753,-11779,-921,-932,-1065,-1083,-1107,-11780,-1283,-11781,-1365,-1408,-8082,-1659,-1777,-1788, --2156,-9786,-2177,-8310,-2322], -[0,-4676,-11782,-7208,-6231,-3240], +[0,-244,-12479,-269,-158,-12480,-1400,-1,-954,-1642,-28,-6071,-1234,-12481,-212,-1235,-5418,-1672,-273,-15,-189,-3839,-16, +-5470,-39], +[0,-1775,-6072,-426,-447,-648], [1,3,6641], [0,0,6642,6643,4], -[0,-5834,-8487,-932,-6283,-11783,-1391,-2322], -[0,-11784,-7373,-6947,-5396], +[0,-244,-5517,-1,-2160,-12482,-634,-39], +[0,-3937,-2190,-3563,-706], [1,3,6645], [0,0,6646,6647,8], -[0,-1788,-664,-1654,-756,-1657,-11785], -[0,-6545,-1847,-11786,-11787,-9052,-7153,-864,-7375,-7208,-7369,-11788,-11789,-5846,-8893,-7372], +[0,-15,-13,-3,-55,-589,-12483], +[0,-1335,-249,-6073,-12484,-1874,-1179,-1395,-2191,-426,-2189,-6074,-12485,-917,-2806,-1851], [1,3,6649], [0,6650,6651,6652,6], -[0,-655,-6511,-5830,-11790,-1283,-1795], -[0,-5833,-5834,-633,-932,-1065,-1083,-5836,-1285,-1659,-1777,-1788,-2156,-5942,-2322], -[0,-11791,-7370,-6948,-1015,-11792,-11594,-11793,-11794,-5843,-3582,-5396], +[0,-939,-1830,-2646,-6075,-1234,-1447], +[0,-3443,-244,-60,-1,-954,-1642,-2648,-672,-1672,-273,-15,-189,-5034,-39], +[0,-6076,-1850,-924,-432,-6077,-3927,-6078,-12486,-3444,-567,-706], [1,3,6654], [0,6655,6656,6657,6], -[0,-655,-6511,-5830,-11790], -[0,-5833,-5834,-8569,-516,-5835,-932,-1083,-5836,-1365,-1777,-1788,-2156,-2322], -[0,-11795,-11796,-11784,-11797,-7374,-6949,-11798,-6952,-5396,-7208,-7373,-3582,-5843], +[0,-939,-1830,-2646,-6075], +[0,-3443,-244,-3728,-269,-533,-1,-1642,-2648,-212,-273,-15,-189,-39], +[0,-12487,-6079,-3937,-6080,-2741,-3564,-3938,-2723,-706,-426,-2190,-567,-3444], [1,3,6659], [0,6660,6661,7,9], -[0,-11799], -[0,-1788,-1654,-932,-966,-958,-968,-943,-963,-974], +[0,-12488], +[0,-15,-3,-1,-75,-9,-67,-83,-211,-129], [1,3,6663], [0,6664,71,6665,4], -[0,-11800], -[0,-1801,-5924,-6812,-6814], +[0,-6081], +[0,-680,-1331,-5183,-2708], [1,3,6667], [0,6668,6669,6670,4], -[0,-11801,-11802,-502,-679,-769,-1353,-2369], -[0,-7080,-3037,-1344,-1534,-1942,-2125,-2410], -[0,-1107,-2490,-5888], +[0,-12489,-12490,-774,-117,-225,-460,-691], +[0,-1024,-5,-10,-17,-4,-7,-2], +[0,-28,-606,-2651], [1,3,6672], [0,6673,6674,6675,5], -[0,-11803,-1553], -[0,-3621,-11804,-708,-1452,-1654,-1658,-1660,-1788,-2379,-2410], -[0,-11805,-11573,-11806,-11807,-11808,-10226,-11809,-11810,-11811,-9261], +[0,-12491,-1972], +[0,-71,-12492,-149,-119,-3,-548,-1438,-15,-33,-2], +[0,-12493,-3925,-12494,-12495,-12496,-5806,-12497,-12498,-12499,-1877], [1,3,6677], [0,6678,115,234,5], -[0,-11812,-11813,-11814,-9981,-6756,-11815], +[0,-12500,-6082,-12501,-5785,-5169,-12502], [1,3,6680], [0,6681,6682,6683,5], -[0,-1043,-1099,-1630,-1805,-2331], -[0,-519,-999,-2541], -[0,-5732,-687,-3994,-1805,-1810,-11816,-11817,-11818,-11819,-11820,-11821,-7095,-4865,-3496,-7237,-7863,-2435,-11822, --7303,-7091,-8421,-6599,-1958,-3258,-6656], +[0,-1226,-1229,-462,-152,-379], +[0,-51,-118,-34], +[0,-762,-37,-306,-152,-592,-6083,-3939,-3940,-6084,-3941,-3942,-1343,-94,-420,-2186,-2206,-200,-3943,-1848,-1843,-1190, +-1336,-286,-892,-128], [1,3,6685], [0,6686,6687,6688,6], -[0,-11823,-11824,-5263], -[0,-3136,-3660,-4049,-523,-11825,-1415,-1456,-11826,-1683,-1942,-2234,-2375,-2379,-2410], -[0,-3438,-4847,-3323,-523,-3100,-4865,-4215,-2410], +[0,-12503,-12504,-2123], +[0,-29,-421,-652,-194,-12505,-8,-635,-12506,-800,-4,-147,-57,-33,-2], +[0,-697,-571,-351,-194,-52,-94,-317,-2], [1,3,6690], [0,6691,6692,6693,5], -[0,-813,-1326,-1459,-1600,-1967,-2006,-2019,-2451], -[0,-32,-204,-526,-552,-9968,-756,-932,-933,-934,-958,-962,-968,-969,-1108,-1320,-1415,-1753,-1771,-2105,-2106,-5331], -[0,-4847,-3438,-11827,-3264,-856,-3262], +[0,-1622,-3043,-1088,-220,-121,-6,-36,-439], +[0,-156,-2952,-179,-2978,-2863,-55,-1,-255,-185,-9,-148,-67,-64,-1413,-673,-8,-285,-65,-111,-1694,-3368], +[0,-571,-697,-12507,-31,-42,-116], [1,3,6695], [0,6696,6697,6698,11], -[0,-6280,-1696], -[0,-1107,-2105,-2322], -[0,-1809,-11828,-9565,-11829], +[0,-3493,-801], +[0,-28,-111,-39], +[0,-4269,-12508,-5710,-12509], [1,3,6700], [0,0,38,7,6], [1,3,6702], [0,6703,6704,7,8], -[0,-11830,-2105], -[0,-526,-559,-932,-933,-958,-962,-969], +[0,-12510,-111], +[0,-179,-321,-1,-255,-9,-148,-64], [1,3,6706], [0,6707,55,234,9], -[0,-1401], +[0,-856], [1,3,6709], [0,6710,6711,235,4], -[0,-2525,-1646], -[0,-11831,-2319], +[0,-991,-88], +[0,-6085,-85], [1,3,6713], [0,6714,6715,6716,8], -[0,-784,-11832,-1889], -[0,-527,-533,-551,-556,-558,-778,-1415,-2275,-2501], -[0,-7198,-10435,-1017,-7173,-7175,-6694,-2501], +[0,-369,-12511,-38], +[0,-162,-86,-775,-580,-253,-141,-8,-154,-18], +[0,-2733,-5837,-851,-2185,-620,-659,-18], [1,3,6718], [0,6719,6720,6721,11], -[0,-11833,-11834,-2524,-8437,-11835,-10579], -[0,-11836,-1654], -[0,-6792,-5272,-11837,-687], +[0,-12512,-12513,-2010,-5507,-12514,-3890], +[0,-6086,-3], +[0,-2174,-1527,-12515,-37], [1,3,6723], [0,6724,6725,6726,8], -[0,-668,-690,-692,-11652,-6861,-1574,-11838,-2267], -[0,-3037,-519,-1100,-11839,-2384,-2541], -[0,-687,-6716,-6717,-3974,-4110,-4000,-4111,-4112,-4113,-4114,-1959,-4115,-4116,-4117], +[0,-20,-1616,-2327,-6047,-2716,-638,-12516,-395], +[0,-5,-51,-487,-12517,-82,-34], +[0,-37,-2170,-3542,-178,-901,-201,-902,-474,-2071,-2555,-362,-2072,-825,-2073], [1,3,6728], [0,6729,6730,6731,10], -[0,-908,-11840,-11841], -[0,-994,-1262,-1452,-1597,-1632,-1654,-1980,-2198,-2462], -[0,-510,-4107,-5921,-10462], +[0,-1628,-12518,-12519], +[0,-409,-632,-119,-970,-1103,-3,-521,-81,-562], +[0,-59,-824,-918,-5844], [1,3,6733], [0,6734,6735,6736,11], -[0,-510,-615,-7840,-10358,-1548,-1850,-11842,-11843], -[0,-652,-668,-1107,-1654,-1671,-1691,-1857,-2177,-2198,-2210,-2245], -[0,-1818,-11221,-7685,-1691,-10425,-11844,-3742,-1671], +[0,-59,-114,-1183,-5825,-23,-1249,-12520,-12521], +[0,-43,-20,-28,-3,-375,-550,-595,-16,-81,-27,-813], +[0,-802,-5996,-403,-550,-928,-12522,-1290,-375], [1,3,6738], [0,0,0,6739,4], -[0,-3966,-1819,-3103,-3551], +[0,-144,-1448,-1488,-365], [1,3,6741], [0,6742,71,6743,6], -[0,-8383,-10383], -[0,-5558,-3833,-11845,-11846,-1847,-1965,-11847], +[0,-5486,-2871], +[0,-828,-2054,-2907,-3944,-249,-495,-12523], [1,3,6745], [0,0,6746,6747,4], -[0,-3035,-3048,-3621,-3037,-3046,-10755,-664,-999,-1077,-1654,-1763,-2379,-2501,-2518], -[0,-3184,-4795,-11848,-11849,-7728,-2265,-3110,-6806], +[0,-109,-191,-71,-5,-526,-2881,-13,-118,-41,-3,-415,-33,-18,-222], +[0,-349,-446,-12524,-12525,-5356,-168,-277,-2175], [1,3,6749], [0,0,0,6750,5], -[0,-1823,-3586,-11850,-11851,-11852,-11853,-3100,-4865], +[0,-4271,-1500,-12526,-3945,-12527,-1586,-52,-94], [1,3,6752], [0,6753,6754,6755,5], -[0,-11854,-719,-1063,-1392,-1526,-2177,-2359,-11855], -[0,-3244,-190,-3748,-4200,-11856,-3037,-3199,-3628,-11857,-427,-428,-932,-11858,-2125,-2410], -[0,-687,-11859,-8109,-8403], +[0,-12528,-58,-1412,-547,-1093,-16,-161,-6087], +[0,-290,-50,-315,-4717,-12529,-5,-140,-750,-6088,-22,-19,-1,-12530,-7,-2], +[0,-37,-6089,-2208,-769], [1,3,6757], [0,6758,6759,6760,5], -[0,-1828], -[0,-3037,-519,-826,-2384,-2541], -[0,-1961,-997,-5389,-6820,-8397,-10670,-6821,-8401,-6822,-8124,-11860,-11861,-4116,-11862,-8402,-4865,-5092,-510,-5867, --5923,-615], +[0,-1983], +[0,-5,-51,-627,-82,-34], +[0,-171,-410,-827,-2709,-5491,-5897,-1838,-3714,-3554,-2770,-12531,-12532,-825,-12533,-5495,-94,-266,-59,-656,-504,-114], [1,3,6762], [0,0,6763,6764,5], -[0,-519,-668,-826,-7426,-7424,-7427,-2384,-2541], -[0,-1961,-6917,-11863,-4116,-7558,-9029,-9027,-11864,-11865,-510,-5867,-5923,-726,-11866,-5921,-615], +[0,-51,-20,-627,-2744,-3609,-2745,-82,-34], +[0,-171,-836,-12534,-825,-1556,-5602,-3757,-12535,-12536,-59,-656,-504,-284,-2268,-918,-114], [1,3,6766], [0,6767,6768,6769,4], -[0,-996,-1828], -[0,-5918,-3268,-3037,-589,-825,-826,-7426,-7963,-7424,-7427,-2384,-2392,-2410,-2541], -[0,-1961,-1986,-11450,-6729,-7331,-11866,-7329,-11685,-7333,-7334,-11867,-11038,-11033,-11868,-5418,-4107,-510,-5867, --5923,-615], +[0,-951,-1983], +[0,-1164,-747,-5,-110,-232,-627,-2744,-5388,-3609,-2745,-82,-155,-2,-34], +[0,-171,-983,-3921,-3545,-3600,-2268,-2187,-2901,-3601,-1552,-3946,-5966,-5965,-6090,-1530,-824,-59,-656,-504,-114], [1,3,6771], [0,0,6772,6773,11], -[0,-519,-826,-7426,-9161,-2210,-7427,-2384,-2541], -[0,-1961,-7430,-6324,-11869,-510,-5867,-5923,-4123,-11870,-5391,-615], +[0,-51,-627,-2744,-5623,-27,-2745,-82,-34], +[0,-171,-2746,-658,-12537,-59,-656,-504,-612,-12538,-3390,-114], [1,3,6775], [0,6776,6777,6778,4], -[0,-1107], -[0,-1415,-1942,-4701], -[0,-856,-2299,-11871,-11872], +[0,-28], +[0,-8,-4,-1776], +[0,-42,-221,-12539,-2908], [1,3,6780], [0,6781,6782,6783,5], -[0,-11873,-522,-594,-719,-914,-1496,-1689,-1750,-1978,-2177], -[0,-652,-932,-11874,-1654,-11875,-4654,-2210], -[0,-4665,-4666,-10432,-11876,-5879,-4864,-5986,-522,-7144,-687,-11877,-11878,-11879,-10770,-1830,-1978,-9246,-11880,-3634, --2451,-11881], +[0,-12540,-1205,-2310,-58,-1629,-490,-519,-1979,-160,-16], +[0,-43,-1,-12541,-3,-6091,-3309,-27], +[0,-1018,-1309,-3881,-3947,-2140,-572,-3463,-1205,-619,-37,-6092,-1358,-12542,-5914,-4272,-160,-2830,-12543,-61,-439, +-12544], [1,3,6785], [0,6786,6787,6788,4], -[0,-11678,-4280,-4283,-4306,-283,-4287,-11666,-9084,-1767,-1769,-4291,-1770,-1957,-10592,-11882,-2247,-2323], -[0,-280,-4298,-4300,-1315,-11719,-1722,-11883,-2125,-2319], -[0,-7442,-1764,-5889], +[0,-6053,-3290,-1513,-3296,-1202,-2079,-6050,-1875,-975,-1677,-3292,-1678,-980,-5888,-12545,-1464,-312], +[0,-840,-755,-756,-792,-2903,-197,-12546,-7,-85], +[0,-2194,-159,-402], [1,3,6790], [0,6791,6792,6793,8], -[0,-9491,-9492,-11884,-807,-7731,-11885,-1548,-1574,-1591,-1826,-1877,-2400,-11886], -[0,-5918,-5033,-3044,-3037,-11887,-743,-825,-1043,-1098,-9810,-1849,-11888,-2392,-2410,-2541], -[0,-11889,-3258,-9204,-3578,-2435,-9804,-8799,-9711,-11890,-11891,-5566,-4045,-9552,-3576,-7419,-1978,-10366,-6527,-3839, --7650,-3264,-11878,-9712,-8633,-8634,-7715,-8640,-9235], +[0,-3800,-5695,-12547,-1061,-2202,-12548,-23,-638,-733,-552,-979,-215,-12549], +[0,-1164,-2603,-143,-5,-12550,-336,-232,-1226,-486,-5755,-492,-12551,-155,-2,-34], +[0,-2909,-892,-2826,-113,-200,-3841,-1350,-2242,-6093,-6094,-3416,-2068,-5708,-649,-661,-160,-1582,-292,-265,-926,-31, +-1358,-5733,-5547,-3733,-621,-1572,-1193], [1,3,6795], [0,0,6796,6797,4], -[0,-3037,-3664,-6593,-7653,-7654,-932,-958,-960,-1449,-2410,-2466,-2469], -[0,-3100,-3445,-3261,-3098,-3160,-6107,-9975,-9612,-11074], +[0,-5,-105,-922,-3645,-5336,-1,-9,-180,-78,-2,-104,-30], +[0,-52,-46,-746,-127,-102,-1168,-2247,-5721,-2887], [1,3,6799], [0,0,6800,6801,11], -[0,-40,-3326,-350,-351,-932,-1103,-1654,-1687,-10835,-1788,-2127,-2140,-2195], -[0,-9506,-6827,-10350,-6826], +[0,-21,-207,-77,-62,-1,-340,-3,-3064,-5930,-15,-14,-229,-276], +[0,-3802,-2711,-5822,-1548], [1,3,6803], [0,6804,38,6805,6], -[0,-11064,-668,-6842,-1000,-1039,-1099,-1111,-1333,-1465,-1630,-1641,-1836,-2114,-11892,-2433,-2551], -[0,-11893,-3445,-687,-10810,-3690], +[0,-5968,-20,-2714,-849,-1637,-1229,-204,-488,-797,-462,-344,-4273,-126,-12552,-604,-525], +[0,-6095,-46,-37,-3899,-100], [1,3,6807], [0,6808,6809,6810,5], -[0,-11197,-1582,-2291], -[0,-190,-865,-932,-940,-958,-965,-967,-968,-1110,-1548,-1654,-1942,-2340,-2892,-2410], -[0,-11893,-3323,-4725,-11894,-3844,-3445,-3690,-3691,-4055], +[0,-2891,-434,-690], +[0,-50,-210,-1,-12,-9,-115,-25,-67,-56,-23,-3,-4,-1999,-380,-2], +[0,-6095,-351,-2087,-3948,-216,-46,-100,-422,-108], [1,3,6812], [0,0,6813,6814,6], -[0,-615,-664,-710,-1654], -[0,-5921,-5550], +[0,-114,-13,-455,-3], +[0,-918,-267], [1,3,6816], [0,6817,6818,6819,9], -[0,-44,-3345,-772,-11895,-11896,-2531], -[0,-23,-26,-38,-40,-41,-42,-190,-3266,-11897,-3470,-7040,-3471,-3472,-7041,-7042,-11898,-533,-8580,-11899,-708,-753,-767, --932,-8147,-960,-1004,-1168,-1174,-1268,-1412,-10034,-11900,-1415,-1419,-1446,-11901,-1534,-4375,-3156,-11220,-11902, --1978,-2082,-2174,-2411,-2466,-11903,-10092], -[0,-5801,-3162,-3690], +[0,-90,-1741,-2332,-6096,-12553,-205], +[0,-11,-209,-170,-21,-132,-137,-50,-206,-12554,-297,-925,-298,-749,-618,-1177,-12555,-86,-5538,-3949,-149,-158,-26,-1, +-5441,-180,-40,-32,-585,-2349,-196,-3854,-12556,-8,-176,-165,-12557,-17,-3301,-1732,-5995,-12558,-160,-346,-122,-84,-104, +-12559,-5799], +[0,-1162,-95,-100], [1,3,6821], [0,6822,0,6823,5], -[0,-3223], -[0,-3264,-3215,-5177,-11904,-4681,-5922,-11905,-11906,-6595,-1839,-4142,-11907,-11908,-1838,-6233], +[0,-472], +[0,-31,-74,-615,-12560,-2086,-535,-12561,-12562,-3534,-593,-2557,-12563,-12564,-166,-919], [1,3,6825], [0,0,6826,7,6], -[0,-1654,-932,-1405,-589,-11909,-585,-966,-958,-968,-943,-974], +[0,-3,-1,-66,-110,-12565,-1049,-75,-9,-67,-83,-129], [1,3,6828], [0,6829,6830,6831,10], -[0,-11910,-2445,-1846], -[0,-664,-1654,-1592,-1972,-666,-11911], -[0,-1004,-729,-6120,-8449,-3173], +[0,-12566,-2005,-2399], +[0,-13,-3,-1975,-181,-1930,-12567], +[0,-40,-218,-832,-2213,-695], [1,3,6833], [0,6834,6835,6836,8], -[0,-1845], -[0,-1592,-1654,-664,-666], -[0,-1841,-4038,-6120,-8449,-3173,-9795], +[0,-3077], +[0,-1975,-3,-13,-1930], +[0,-1683,-2067,-832,-2213,-695,-5751], [1,3,6838], [0,6839,236,6840,4], -[0,-1846], -[0,-1841,-8427,-6120,-8449,-3173,-11912,-5110], +[0,-2399], +[0,-1683,-1191,-832,-2213,-695,-12568,-1790], [1,3,6842], [0,6843,236,237,8], -[0,-11913,-1845], +[0,-12569,-3077], [1,3,6845], [0,6846,6847,237,5], -[0,-11914,-1791,-1846,-10686,-2445], -[0,-1592,-1654,-664,-1972,-666], +[0,-12570,-865,-2399,-5900,-2005], +[0,-1975,-3,-13,-181,-1930], [1,3,6849], [0,0,114,6850,4], -[0,-1841,-6539], +[0,-1683,-5143], [1,3,6852], [0,6853,0,6854,5], -[0,-1958,-2444], -[0,-11153,-1847], +[0,-286,-136], +[0,-2889,-249], [1,3,6856], [0,0,31,6857,8], -[0,-4865,-633,-1847], +[0,-94,-60,-249], [1,3,6859], [0,0,238,6860,5], -[0,-1847,-6788,-11915,-6656,-7693,-1076,-7422,-7000,-11786,-9330], +[0,-249,-5177,-6097,-128,-2753,-303,-1555,-3567,-6073,-2836], [1,3,6862], [0,0,118,6863,4], -[0,-1847,-9098,-6656,-11070,-11634,-11916,-11917,-6441,-2444,-5260,-3103,-6989,-3582,-5396,-1391,-6659,-7440], +[0,-249,-5615,-128,-2254,-6044,-12571,-12572,-5122,-136,-704,-1488,-1549,-567,-706,-634,-710,-293], [1,3,6865], [0,0,6866,6867,8], -[0,-6918,-5295,-3037,-3199,-3664,-10880,-2214,-2410,-2469], -[0,-1004,-5570,-10470,-9843], +[0,-5198,-705,-5,-140,-105,-5938,-328,-2,-30], +[0,-40,-1160,-3883,-2244], [1,3,6869], [0,0,6870,7,5], -[0,-3037,-3664,-672,-928,-932,-944,-1431,-1942,-2410,-2423,-2469,-11918], +[0,-5,-105,-1388,-87,-1,-1403,-516,-4,-2,-1270,-30,-6098], [1,3,6872], [0,6873,6874,57,4], -[0,-1406,-1460,-7885], -[0,-1078,-1654,-1941], +[0,-1658,-272,-2764], +[0,-1641,-3,-2405], [1,3,6876], [0,6877,6878,6879,4], -[0,-11919,-11920,-1834,-2062,-9789,-2446], -[0,-3037,-640,-997,-1942,-2322,-2410], -[0,-6528,-3262], +[0,-12573,-12574,-1682,-198,-5750,-125], +[0,-5,-294,-410,-4,-39,-2], +[0,-1171,-116], [1,3,6881], [0,6882,6883,6884,10], -[0,-772,-4702,-11921,-11922,-11923], -[0,-23,-3840,-40,-190,-3326,-533,-11924,-11925,-627,-633,-659,-709,-932,-1103,-1110,-1415,-1419,-4981,-1599,-11926,-1942, --1974,-2127,-4063], -[0,-6528,-11927,-11928,-6524,-10855,-9472], +[0,-2332,-4783,-12575,-12576,-6099], +[0,-11,-1007,-21,-50,-207,-86,-12577,-12578,-1383,-60,-322,-1054,-1,-340,-56,-8,-176,-1520,-99,-2910,-4,-642,-14,-900], +[0,-1171,-12579,-12580,-1831,-1890,-1354], [1,3,6886], [0,0,6887,7,4], -[0,-615,-11929,-664,-11930,-710,-1654,-1939], +[0,-114,-12581,-13,-12582,-455,-3,-234], [1,3,6889], [0,6890,6891,6892,4], -[0,-10416,-11931,-11932,-11933,-11934,-11935], -[0,-11936,-11937,-510,-615,-705,-11938,-2410,-2469,-9667], -[0,-7685,-11939,-1857,-11940,-10425,-6321,-11941], +[0,-3878,-12583,-12584,-12585,-12586,-12587], +[0,-12588,-12589,-59,-114,-941,-12590,-2,-30,-5727], +[0,-403,-12591,-595,-6100,-928,-1169,-6101], [1,3,6894], [0,6895,6896,6897,5], -[0,-1860,-2239,-2520], -[0,-526,-527,-528,-556,-558,-559,-6089,-932,-934,-956,-958,-1059,-11942,-1415,-1417,-11943,-9913,-2125], -[0,-1858,-1859,-9879], +[0,-640,-812,-564], +[0,-179,-162,-91,-580,-253,-321,-2666,-1,-185,-485,-9,-412,-1894,-8,-489,-2911,-5768,-7], +[0,-3078,-867,-2246], [1,3,6899], [0,6900,6901,239,11], -[0,-1018,-1077,-7234,-9423,-1959,-2105,-7241,-2518], -[0,-932,-1754], +[0,-1070,-41,-3590,-3791,-362,-111,-3591,-222], +[0,-1,-679], [1,3,6903], [0,6904,6905,239,5], -[0,-925,-1018,-1077,-7234,-9423,-1959,-2105,-7241,-2518], -[0,-932,-1754,-4881], +[0,-948,-1070,-41,-3590,-3791,-362,-111,-3591,-222], +[0,-1,-679,-1315], [1,3,6907], [0,6908,6909,6910,5], -[0,-501,-714,-728,-11944,-752,-9012,-1412,-1646,-1810,-1812,-3547,-11945,-1878,-1965,-1982,-2105,-2195,-2433], -[0,-7672,-932,-942,-943,-958,-966,-968,-974,-1405], -[0,-687,-752,-1861,-11946,-11947], +[0,-842,-133,-1057,-12592,-943,-5598,-196,-88,-592,-1247,-1497,-12593,-554,-495,-1456,-111,-276,-604], +[0,-5340,-1,-1631,-83,-9,-75,-67,-129,-66], +[0,-37,-943,-2400,-12594,-12595], [1,3,6912], [0,0,70,7,11], [1,3,6914], [0,0,0,6915,8], -[0,-3974,-714,-5538,-687,-4000], +[0,-178,-133,-616,-37,-201], [1,3,6917], [0,0,6918,6919,5], -[0,-932,-10999,-1202,-1654,-1788], -[0,-1107,-5572,-1864], +[0,-1,-5958,-671,-3,-15], +[0,-28,-532,-326], [0,44,15,16,8], [1,3,6922], [0,0,6923,6924,9], -[0,-519,-11948,-2384,-11135,-2541], -[0,-8124,-5865,-1961,-5923,-11949,-5500,-3966,-11301,-11300,-5845,-6408,-4001,-8911,-6509,-510,-5867,-4795,-615], +[0,-51,-12596,-82,-5982,-34], +[0,-2770,-2139,-171,-504,-12597,-3414,-144,-2893,-6007,-477,-536,-1758,-2226,-3522,-59,-656,-446,-114], [1,3,6926], [0,6927,6928,6929,10], -[0,-11950,-11951,-11952,-11953,-8543,-11954,-11955,-7967,-11956,-11957,-11958], -[0,-2832,-11419,-11959,-3037,-468,-11960,-2917,-648,-812,-2758,-932,-958,-965,-966,-968,-999,-11961,-11962,-1362,-1415, --1573,-1577,-11963,-2884,-11964,-1939,-1972,-1976,-2125,-2177,-2240,-11965,-2269,-2322,-2347,-2379,-2384,-2410,-2520], -[0,-5922,-3444,-5827,-4055], +[0,-12598,-12599,-12600,-12601,-5533,-12602,-12603,-1561,-12604,-6102,-12605], +[0,-314,-2898,-12606,-5,-718,-12607,-1726,-1210,-35,-2466,-1,-9,-115,-75,-67,-118,-3950,-12608,-1962,-8,-258,-1433,-12609, +-819,-3951,-234,-181,-1253,-7,-16,-881,-12610,-139,-39,-69,-33,-82,-2,-564], +[0,-535,-748,-252,-108], [1,3,6931], [0,0,6932,6933,4], -[0,-932,-940,-8177,-966,-967,-1344,-1415,-1942,-2331], -[0,-1764,-11966,-11967,-7646,-11968], +[0,-1,-12,-2775,-75,-25,-10,-8,-4,-379], +[0,-159,-12611,-12612,-1557,-12613], [1,3,6935], [0,6936,6937,6938,5], -[0,-1880], -[0,-932,-10497,-2410], -[0,-6527,-10588,-834], +[0,-804], +[0,-1,-5851,-2], +[0,-292,-5886,-203], [1,3,6940], [0,6941,6942,6943,6], -[0,-8341], -[0,-2541,-519,-2384,-2331], -[0,-5897,-4055,-5756,-1764,-11969,-5573,-8804,-1047,-5504,-8805,-8806,-6656,-7282,-5572,-2114,-8807,-6370,-7420,-7421, --2487,-8808,-1847], +[0,-3709], +[0,-34,-51,-82,-379], +[0,-478,-108,-3436,-159,-12614,-655,-2798,-339,-1159,-2799,-2223,-128,-766,-532,-126,-1573,-1170,-1027,-427,-741,-2224, +-249], [1,3,6945], [0,175,14,6946,5], -[0,-7861,-5897,-6656,-5573,-8804,-1047,-5504,-8805,-8806,-7282,-5572,-2114,-8807,-6370,-7420,-7421,-2487,-8808,-1847], +[0,-2761,-478,-128,-655,-2798,-339,-1159,-2799,-2223,-766,-532,-126,-1573,-1170,-1027,-427,-741,-2224,-249], [1,3,6948], [0,0,84,6949,5], -[0,-8041,-3674,-10484], +[0,-3680,-1288,-1583], [1,3,6951], [0,6952,0,7,5], -[0,-3982], +[0,-4680], [1,3,6954], [0,6955,6956,6957,11], -[0,-4733,-578,-2538], -[0,-633,-1654,-6810,-2568], -[0,-5736,-4865,-8995,-1875,-3215,-6597], +[0,-1310,-1608,-1274], +[0,-60,-3,-1836,-993], +[0,-4993,-94,-3754,-1252,-74,-537], [1,3,6959], [0,6960,6961,6962,4], -[0,-479], -[0,-932,-937,-966,-1001,-1654,-1788,-2410], -[0,-6324,-3862,-1266], +[0,-452], +[0,-1,-782,-75,-338,-3,-15,-2], +[0,-658,-107,-360], [1,3,6964], [0,6965,14,6966,8], -[0,-11970], -[0,-9757,-11971,-1878,-9756,-11972,-10781,-2265,-11973,-11974,-11975], +[0,-12615], +[0,-3834,-6103,-554,-3833,-6104,-1889,-168,-12616,-12617,-12618], [1,3,6968], [0,0,6969,6970,9], -[0,-664,-1405,-1654,-2176], -[0,-9757,-11971,-1878,-9756,-9763,-1369], +[0,-13,-66,-3,-1997], +[0,-3834,-6103,-554,-3833,-3836,-1080], [1,3,6972], [0,6973,70,6974,8], -[0,-11976,-11977,-11978,-11979,-483,-510,-11980,-679,-11981,-719,-764,-809,-812,-910,-995,-11982,-1650,-1708,-11983, --11984,-11985,-11986,-11987,-3968,-2177,-2234,-2243,-11988,-1442], -[0,-687,-8947,-8948,-3674,-1879,-11989,-1573,-4055,-1004,-1277,-11990,-11492,-11991,-11992,-11993,-11994,-11995,-11996, --11997,-9466,-11998,-11148,-5731,-3207,-11999,-12000,-12001,-12002,-12003,-8901,-8902,-11586,-2295,-12004,-1753,-12005, --7662,-12006,-11230,-12001,-12007,-1066,-11429,-12008,-5805,-11486,-8944,-12009,-12010,-12011,-12012,-9844,-7606,-763, --8904,-12013], +[0,-12619,-12620,-12621,-12622,-1375,-59,-12623,-117,-12624,-58,-2331,-542,-35,-543,-1634,-12625,-72,-1675,-6105,-12626, +-12627,-12628,-12629,-2060,-16,-147,-2433,-12630,-101], +[0,-37,-3747,-3748,-1288,-4276,-6106,-258,-108,-40,-1956,-12631,-1585,-12632,-12633,-12634,-6107,-12635,-12636,-1587, +-3797,-2269,-1891,-2642,-1736,-12637,-12638,-6108,-12639,-3952,-1871,-1872,-6038,-2439,-12640,-285,-12641,-5337,-12642, +-1892,-6108,-12643,-3015,-3920,-12644,-2645,-3924,-5583,-12645,-12646,-12647,-12648,-2245,-2198,-1058,-2809,-12649], [1,3,6976], [0,0,6977,6978,4], -[0,-633,-641,-729,-932,-940,-1788,-1942,-1978,-2187,-12014,-2322], -[0,-12015,-6116,-6117,-12016,-12017,-3215,-7715,-11923,-12018,-1880], +[0,-60,-1612,-218,-1,-12,-15,-4,-160,-393,-6109,-39], +[0,-12650,-5078,-5079,-12651,-12652,-74,-621,-6099,-12653,-804], [1,3,6980], [0,6981,6982,6983,9], -[0,-2381], -[0,-909,-1415,-1421,-1425,-2231], -[0,-2501,-2552,-10054,-10055], +[0,-4338], +[0,-781,-8,-794,-3053,-130], +[0,-18,-692,-3859,-3860], [1,3,6985], [0,0,0,6986,4], -[0,-1882,-12019,-3015,-12020,-11037,-5922,-12021,-1380,-7856,-10606,-5880,-3209,-10440,-10527,-1764,-11683,-10484,-7442, --12022,-12023,-6694,-5881,-12024,-12025,-10444], +[0,-3079,-12654,-693,-6110,-3911,-535,-6111,-729,-1859,-1584,-2141,-381,-2250,-3887,-159,-6054,-1583,-2194,-12655,-12656, +-659,-5019,-12657,-6112,-5838], [1,3,6988], [0,241,6989,6990,5], -[0,-2334,-2379,-2410], -[0,-12026,-12027,-12028,-12029,-12030,-12031,-12032,-12033,-3690,-12034,-12035,-12036,-12037,-3445,-3100,-2410], +[0,-177,-33,-2], +[0,-12658,-12659,-12660,-12661,-12662,-12663,-12664,-12665,-100,-12666,-12667,-12668,-12669,-46,-52,-2], [1,3,6992], [0,39,6993,6994,4], -[0,-21,-23,-32,-38,-39,-40,-6056,-3326,-351,-3561,-528,-533,-535,-12038,-767,-796,-856,-932,-934,-958,-1059,-11942,-1344, --1415,-1534,-11943,-1942,-12039,-1993,-2127,-2139,-2140,-2174,-2200,-12040,-2410,-2449], -[0,-2278,-1885,-906,-12041,-3771,-12042,-2006,-5411,-2410,-12043,-12044,-12045,-712,-5535], +[0,-48,-11,-156,-170,-449,-21,-1167,-207,-62,-237,-91,-86,-270,-12670,-26,-295,-42,-1,-185,-9,-412,-1894,-10,-8,-17,-2911, +-4,-12671,-643,-14,-1259,-229,-122,-394,-12672,-2,-1707], +[0,-882,-1450,-1627,-12673,-1292,-12674,-6,-1809,-2,-12675,-12676,-12677,-217,-707], [1,3,6996], [0,0,6997,6998,5], -[0,-12046,-12047,-12048,-12049,-932,-12050,-2410], -[0,-12051,-3095,-7582,-3821,-3822,-12052,-12053], +[0,-12678,-12679,-12680,-12681,-1,-12682,-2], +[0,-6113,-131,-1855,-2051,-2544,-12683,-12684], [1,3,7000], [0,7001,7002,7003,6], -[0,-510,-812], -[0,-1415], -[0,-1334,-12054,-8113], +[0,-59,-35], +[0,-8], +[0,-103,-6114,-1030], [1,3,7005], [0,7006,0,7007,8], -[0,-1699,-1863,-2232], -[0,-775,-1889,-9336,-3277,-3215,-12055,-6408,-12056,-3186], +[0,-639,-167,-811], +[0,-24,-38,-5659,-608,-74,-12685,-536,-6115,-1280], [1,3,7009], [0,7010,7011,7012,8], -[0,-1931,-1934], -[0,-3037,-932,-940,-12057,-1889,-1942,-2410], -[0,-775,-1889,-3583,-12058,-12059], +[0,-556,-464], +[0,-5,-1,-12,-12686,-38,-4,-2], +[0,-24,-38,-223,-12687,-6116], [1,3,7014], [0,7015,7016,7017,4], -[0,-679,-3227,-1077,-1863,-1907,-12060,-6467,-12061,-2218,-2654,-2550], -[0,-519,-652,-756,-932,-12062,-1110,-1889,-1906,-1942,-2289,-2446], -[0,-687,-1889,-9300], +[0,-117,-4517,-41,-167,-868,-2912,-1541,-6117,-288,-313,-98], +[0,-51,-43,-55,-1,-6118,-56,-38,-555,-4,-883,-125], +[0,-37,-38,-2236], [1,3,7019], [0,7020,0,7021,6], -[0,-2953,-93,-94,-97,-12063], -[0,-712,-12064,-775,-3099,-5112,-12065,-12066,-12067,-11788,-1889,-3583,-5549,-12068,-7451,-4132], +[0,-3161,-1596,-1597,-2947,-3953], +[0,-217,-6119,-24,-441,-759,-6120,-12688,-6121,-6074,-38,-223,-760,-12689,-3611,-400], [1,3,7023], [0,7024,7025,7026,6], -[0,-635,-12069,-2840,-1934], -[0,-12070,-1889], -[0,-712,-714,-724,-775,-1644,-1889,-3583], +[0,-301,-2913,-2475,-464], +[0,-3954,-38], +[0,-217,-133,-367,-24,-228,-38,-223], [1,3,7028], [0,242,22,7029,9], -[0,-775,-7193,-1889,-3583], +[0,-24,-1845,-38,-223], [1,3,7031], [0,7032,7033,7034,5], -[0,-518,-12069,-668,-12071,-12072,-1889,-12073,-12074,-1890,-12075,-12076,-12077,-12078,-12079,-12080,-12081,-12082,-1896, --1897,-1898,-12083,-12084,-12085,-12086,-12087,-1917,-12088,-12089,-12090,-12091,-12092], -[0,-526,-527,-534,-558,-560,-565,-8161,-682,-778,-12093,-12094,-12095,-12096,-12097,-932,-12098,-949,-969,-1017,-1041, --1304,-12099,-1442,-1455,-1600,-12100,-1633,-12101,-12102,-12103,-12104,-12105,-12106,-12107,-12108,-12109,-11748,-1762, --12110,-1792,-1812,-12111,-1906,-1908,-12060,-7033,-1967,-2006,-2019,-12112,-2125,-2269,-2275,-2322,-12113,-2501,-2505, --12114], -[0,-1889,-3583,-775,-5387,-12115], +[0,-157,-2913,-20,-12690,-6122,-38,-12691,-6123,-2403,-12692,-12693,-6124,-12694,-12695,-6125,-12696,-12697,-1985,-1684, +-3081,-12698,-6126,-12699,-12700,-12701,-3083,-6127,-12702,-6128,-12703,-6129], +[0,-179,-162,-96,-253,-666,-2303,-3686,-254,-141,-12704,-12705,-12706,-12707,-12708,-1,-12709,-1632,-64,-851,-271,-372, +-12710,-101,-859,-220,-12711,-2383,-12712,-12713,-12714,-12715,-12716,-12717,-12718,-12719,-12720,-6064,-1980,-12721, +-241,-1247,-12722,-555,-493,-2912,-2725,-121,-6,-36,-12723,-7,-139,-154,-39,-12724,-18,-173,-12725], +[0,-38,-223,-24,-653,-6130], [1,3,7036], [0,7037,0,7038,5], -[0,-12116,-93,-94,-95], -[0,-12117,-12118,-775,-12119,-3586,-12120,-1889,-3583,-12121,-5101,-4681,-5387], +[0,-3955,-1596,-1597,-2946], +[0,-6131,-6132,-24,-2270,-1500,-6133,-38,-223,-6134,-702,-2086,-653], [1,3,7040], [0,7041,0,7042,4], -[0,-12116,-93,-94,-12063,-1934], -[0,-775,-12119,-3586,-3587,-1889,-3583,-3589,-4681,-3591,-3592,-5387], +[0,-3955,-1596,-1597,-3953,-464], +[0,-24,-2270,-1500,-4592,-38,-223,-1144,-2086,-1501,-2515,-653], [1,3,7044], [0,7045,0,7046,4], -[0,-12116,-93,-94,-1931], -[0,-12117,-12118,-775,-12119,-3586,-12122,-8109,-1889,-3583,-11315,-12123,-4681,-5387], +[0,-3955,-1596,-1597,-556], +[0,-6131,-6132,-24,-2270,-1500,-6135,-2208,-38,-223,-2259,-1895,-2086,-653], [1,3,7048], [0,90,7049,7050,6], -[0,-1889,-1930,-10815], -[0,-775,-3485,-1889,-3583], +[0,-38,-869,-2882], +[0,-24,-1001,-38,-223], [1,3,7052], [0,0,22,7053,9], -[0,-775,-816,-7192,-1889,-3583], +[0,-24,-4142,-765,-38,-223], [1,3,7055], [0,0,22,7056,4], -[0,-6454,-775,-12124,-1644,-7193,-1889,-3583], +[0,-575,-24,-12726,-228,-1845,-38,-223], [1,3,7058], [0,0,7059,7060,6], -[0,-834,-1863,-1889], -[0,-1889,-775,-3583,-12125,-12126,-12127], +[0,-203,-167,-38], +[0,-38,-24,-223,-12727,-12728,-12729], [1,3,7062], [0,0,7063,7064,8], -[0,-664,-1168,-1197,-1231], -[0,-1889,-775,-3583,-12128,-6445,-12129], +[0,-13,-32,-513,-359], +[0,-38,-24,-223,-12730,-3514,-3956], [1,3,7066], [0,7067,7068,7069,9], -[0,-1333,-3187,-1889,-1929], -[0,-8281,-518,-664,-708,-932,-940,-954,-8286,-961,-965,-8287,-967,-971,-980,-7355,-1654,-8324,-1788,-12130,-1930,-12131, --1942,-2281,-2282,-2289], -[0,-1889,-4132,-3264,-2476,-12132,-12133,-775,-1521,-2162,-3754,-12134,-2289], +[0,-488,-2490,-38,-1453], +[0,-3699,-157,-13,-149,-1,-12,-1405,-3702,-1223,-115,-2786,-25,-784,-785,-1849,-3,-5475,-15,-2914,-869,-12731,-4,-182, +-558,-883], +[0,-38,-400,-31,-73,-12732,-12733,-24,-219,-80,-444,-12734,-883], [1,3,7071], [0,7072,0,7073,10], -[0,-12063,-1934], -[0,-5182,-775,-6527,-12135,-5399,-7036,-1889,-3583,-9804,-3576], +[0,-3953,-464], +[0,-1322,-24,-292,-12735,-4914,-3571,-38,-223,-3841,-649], [1,3,7075], [0,7076,7077,7078,10], -[0,-1934,-12061,-2114], -[0,-519,-652,-932,-12062,-967,-1110,-1889,-1930,-1942,-2289], -[0,-775,-1889,-3583,-6024,-12136,-1764], +[0,-464,-6117,-126], +[0,-51,-43,-1,-6118,-25,-56,-38,-869,-4,-883], +[0,-24,-38,-223,-657,-12736,-159], [1,3,7080], [0,7081,0,7082,4], -[0,-1532], -[0,-1889,-12137,-12138], +[0,-1969], +[0,-38,-12737,-12738], [1,3,7084], [0,7085,7086,7087,5], -[0,-1431,-2177,-755], -[0,-824,-1415,-1521,-2162,-1344,-1623,-12139,-774,-932,-784,-825,-1110,-1889,-2289,-2375,-2379,-2501,-1942,-767,-21,-190, --533,-2790,-2269,-23,-1522,-1534,-1771,-2163,-12140,-1906,-1916,-86,-965,-3560,-2251,-40,-2411,-959,-1907,-958,-6929, --978,-940,-967,-3748,-12141,-3307], -[0,-775,-1889,-9300,-2501,-5050], +[0,-516,-16,-386], +[0,-150,-8,-219,-80,-10,-259,-12739,-407,-1,-369,-232,-56,-38,-883,-57,-33,-18,-4,-26,-48,-50,-86,-4420,-139,-11,-1092, +-17,-65,-467,-12740,-555,-1452,-49,-115,-529,-134,-21,-84,-145,-868,-9,-617,-151,-12,-25,-315,-12741,-63], +[0,-24,-38,-2236,-18,-3346], [1,3,7089], [0,7090,22,7091,6], -[0,-1934,-2280], -[0,-775,-1644,-7192,-1889,-3583], +[0,-464,-3113], +[0,-24,-228,-765,-38,-223], [1,3,7093], [0,7094,7095,7096,8], -[0,-635,-12069,-1931,-12142], -[0,-12070,-1889,-10815,-1899], -[0,-775,-7192,-1889,-3583], +[0,-301,-2913,-556,-2915], +[0,-3954,-38,-2882,-2404], +[0,-24,-765,-38,-223], [1,3,7098], [0,60,22,7099,5], -[0,-775,-3827,-12143,-12144,-7192,-3583], +[0,-24,-1149,-12742,-12743,-765,-223], [1,3,7101], [0,7102,22,50,10], -[0,-2840,-1934,-12142], +[0,-2475,-464,-2915], [1,3,7104], [0,7105,22,7106,10], -[0,-635,-1934,-12142], -[0,-1889,-775,-3583,-1644,-7192,-5154], +[0,-301,-464,-2915], +[0,-38,-24,-223,-228,-765,-4883], [1,3,7108], [0,7109,7110,7111,4], -[0,-783,-1931], -[0,-12145,-1889], -[0,-775,-1644,-7192,-1889,-3583,-12123], +[0,-1938,-556], +[0,-6136,-38], +[0,-24,-228,-765,-38,-223,-1895], [1,3,7113], [0,7114,130,7115,10], -[0,-2773,-1931,-1934], -[0,-12146,-1889,-775,-3583], +[0,-1484,-556,-464], +[0,-12744,-38,-24,-223], [1,3,7117], [0,90,0,7118,11], -[0,-1889,-775,-3583,-2162,-8893], +[0,-38,-24,-223,-80,-2806], [1,3,7120], [0,7121,0,7122,11], -[0,-12147,-98,-1931], -[0,-12148,-6599,-12149,-775,-12115,-12119,-8893,-12150,-1889,-3583,-8199,-12123,-4682,-4683,-4132,-5387], +[0,-6137,-2287,-556], +[0,-12745,-1336,-12746,-24,-6130,-2270,-2806,-12747,-38,-223,-1567,-1895,-2576,-2577,-400,-653], [1,3,7124], [0,7125,7126,7127,5], -[0,-12151,-12152,-12153], -[0,-12154,-635,-1889,-1906,-2127], -[0,-1889,-775,-3583,-12155,-6413,-12156], +[0,-12748,-12749,-12750], +[0,-12751,-301,-38,-555,-14], +[0,-38,-24,-223,-12752,-2164,-12753], [1,3,7129], [0,0,22,7130,6], -[0,-1889,-775,-3583,-9791], +[0,-38,-24,-223,-2857], [0,60,22,50,4], [1,3,7133], [0,60,22,50,11], @@ -10756,3293 +10651,3200 @@ true, [0,242,22,50,8], [1,3,7137], [0,60,22,7138,4], -[0,-775,-6811,-7192,-7193,-1889,-3583,-2435], +[0,-24,-1837,-765,-1845,-38,-223,-200], [1,3,7140], [0,7141,22,50,5], -[0,-1934,-12142], +[0,-464,-2915], [1,3,7143], [0,0,7144,7145,4], -[0,-1344,-1654,-1889,-1405,-1942,-1534,-1916], -[0,-1889,-5899,-12123,-3583,-775,-3585,-3862], +[0,-10,-3,-38,-66,-4,-17,-1452], +[0,-38,-2652,-1895,-223,-24,-1499,-107], [1,3,7147], [0,7148,0,7149,5], -[0,-12157,-5297,-12158,-12159,-12160,-12161,-12162,-12163,-12164,-12165,-12166,-12167,-12168,-12169,-12170,-96,-12171, --12172,-12173,-12174,-12175,-12176,-12177,-12178,-12179,-12180,-12181,-12182,-12183,-97,-12184,-12185,-12186,-12187, --12188,-12189,-12190,-12191,-12192,-12193,-12194,-518,-635,-12195,-12196,-12197,-782,-12074,-12198,-1892,-12077,-12080, --1896,-1897,-1898,-12199,-12200,-2579,-12201,-12084,-12202,-1905,-12203, --12204,-1917,-2635,-12205,-12206,-12207,-12088,-12090,-12092], -[0,-775,-12119,-7186,-6309,-12208,-2634,-1889,-3583,-4682,-4683,-7187,-5387], +[0,-12754,-4902,-12755,-12756,-12757,-12758,-12759,-12760,-12761,-12762,-12763,-12764,-12765,-12766,-12767,-4067,-12768, +-12769,-12770,-12771,-12772,-12773,-12774,-12775,-12776,-12777,-12778,-6138,-12779,-2947,-12780,-12781,-12782,-12783, +-12784,-12785,-12786,-12787,-12788,-12789,-12790,-157,-301,-12791,-12792,-12793,-4137,-6123,-12794,-4277,-6124,-6125, +-1985,-1684,-3081,-12795,-12796,-4366,-12797,-6126,-12798,-4278,-12799, +-12800,-3083,-4372,-12801,-12802,-12803,-6127,-6128,-6129], +[0,-24,-2270,-5249,-2675,-12804,-242,-38,-223,-2576,-2577,-5250,-653], [1,3,7151], [0,7152,7153,50,8], -[0,-635,-12069], -[0,-12070,-1329,-1889], +[0,-301,-2913], +[0,-3954,-1425,-38], [1,3,7155], [0,0,0,7156,4], -[0,-775,-1889,-12209,-3215,-8947], +[0,-24,-38,-3957,-74,-3747], [1,3,7158], [0,0,0,7159,4], -[0,-775,-1889,-12209,-3215,-3754,-2162], +[0,-24,-38,-3957,-74,-444,-80], [1,3,7161], [0,7162,7163,7,11], -[0,-783,-9649], -[0,-21,-23,-32,-4952,-26,-40,-43,-519,-535,-6831,-825,-932,-958,-1107,-1646,-1788,-1889,-2177,-2410], +[0,-1938,-3822], +[0,-48,-11,-156,-3323,-209,-21,-174,-51,-270,-5186,-232,-1,-9,-28,-88,-15,-38,-16,-2], [1,3,7165], [0,7166,7167,7168,8], -[0,-1934,-2303], -[0,-12072,-1889], -[0,-775,-1644,-7192,-1889,-3583,-3839,-2303], +[0,-464,-602], +[0,-6122,-38], +[0,-24,-228,-765,-38,-223,-265,-602], [1,3,7170], [0,90,22,50,4], [1,3,7172], [0,0,7173,7174,4], -[0,-932,-1344,-1534,-1942,-2320,-2322], -[0,-1889,-5846,-3215], +[0,-1,-10,-17,-4,-560,-39], +[0,-38,-917,-74], [1,3,7176], [0,7177,0,7178,4], -[0,-12210,-12211,-12212,-12213,-12214,-12215,-12216,-2387], -[0,-6321,-10425,-11940,-1857,-7685,-7773,-9879,-3323,-3445,-11941,-10424,-2410,-3018,-985], +[0,-12805,-12806,-12807,-12808,-12809,-12810,-12811,-44], +[0,-1169,-928,-6100,-595,-403,-768,-2246,-351,-46,-6101,-2249,-2,-440,-370], [1,3,7180], [0,7181,7182,7183,4], -[0,-4256,-4255], -[0,-86,-9404,-652,-664,-665,-667,-740,-1344,-1448,-1534,-1654,-2250], -[0,-3264,-6597,-9727,-3215,-6408,-12217,-12056,-3277,-12218], +[0,-4729,-4728], +[0,-49,-1032,-43,-13,-239,-1931,-385,-10,-795,-17,-3,-97], +[0,-31,-537,-5736,-74,-536,-6139,-6115,-608,-6140], [1,3,7185], [0,7186,0,7187,5], -[0,-12219,-2446,-1523,-1525,-2347,-12220,-1524,-12221,-1729,-12222,-12223,-2062,-12224,-12225], -[0,-7773,-11304,-1937], +[0,-12812,-125,-2374,-4228,-69,-12813,-4227,-12814,-188,-12815,-12816,-198,-12817,-12818], +[0,-768,-6008,-4280], [1,3,7189], [0,7190,7191,7192,4], -[0,-5830,-12226,-12227,-12228,-2546], -[0,-526,-566,-3067,-551,-558,-633,-3346,-12229,-1003,-1471,-1475,-10495,-1479,-1482,-12230,-1654,-12231,-7718,-1991,-2111, --2177], -[0,-1938,-507,-5855,-4004,-3634,-3217,-3272], +[0,-2646,-12819,-12820,-12821,-744], +[0,-179,-429,-4490,-775,-253,-60,-2500,-12822,-411,-79,-138,-5849,-213,-187,-12823,-3,-12824,-5351,-1457,-416,-16], +[0,-1454,-280,-1163,-76,-61,-350,-363], [1,3,7194], [0,7195,7196,7197,6], -[0,-769,-9798,-2518], -[0,-509,-1405,-1654], -[0,-5889,-3322,-1764,-1939,-12232,-11727,-4004,-3113], +[0,-225,-3840,-222], +[0,-843,-66,-3], +[0,-402,-696,-159,-234,-6141,-2904,-76,-694], [1,3,7199], [0,0,7200,7201,11], -[0,-12233,-12234,-23,-3408,-5321,-40,-43,-2581,-3035,-3621,-3037,-4372,-5286,-3899,-12235,-664,-756,-767,-12236,-928, --1344,-12237,-1637,-1654,-1772,-8065,-10105,-1967,-5037,-2210,-2211,-2334,-2410,-2426,-2466,-2469,-4881], -[0,-1940,-2006,-3160,-3477,-12238,-9613,-3098,-12239,-3577,-3161], +[0,-12825,-12826,-11,-1284,-4906,-21,-174,-329,-109,-71,-5,-279,-1156,-1009,-12827,-13,-55,-26,-12828,-87,-10,-12829,-677, +-3,-345,-1562,-3862,-121,-1785,-27,-190,-177,-2,-289,-104,-30,-1315], +[0,-494,-6,-102,-2508,-6142,-2241,-127,-12830,-192,-53], [1,3,7203], [0,7204,27,57,5], -[0,-668,-679,-1078,-7885], +[0,-20,-117,-1641,-2764], [1,3,7206], [0,7207,7208,7209,4], -[0,-12240,-3896,-1618], -[0,-8918,-3307,-350,-4062,-351,-3136,-4251,-427,-428,-721,-932,-940,-967,-1344,-1415,-12241,-12242,-1942,-2127,-2251, --2334,-2379,-2410], -[0,-1942,-3862,-1446,-8222], +[0,-12831,-2056,-862], +[0,-3745,-63,-77,-238,-62,-29,-424,-22,-19,-1056,-1,-12,-25,-10,-8,-6143,-12832,-4,-14,-134,-177,-33,-2], +[0,-4,-107,-165,-5457], [1,3,7211], [0,0,7212,7213,6], -[0,-3037,-12243,-519,-1942,-2410,-5627], -[0,-1942,-12244,-2410,-12245,-12246], +[0,-5,-12833,-51,-4,-2,-1531], +[0,-4,-12834,-2,-12835,-12836], [1,3,7215], [0,7216,7217,7218,8], -[0,-7969], -[0,-1772,-1942], -[0,-10484,-3862,-1942], +[0,-1860], +[0,-345,-4], +[0,-1583,-107,-4], [1,3,7220], [0,0,7221,7222,6], -[0,-4066,-350,-351,-3037,-519,-1942,-2127,-2141,-2299,-2379,-2387,-2410], -[0,-1942,-2299], +[0,-530,-77,-62,-5,-51,-4,-14,-1260,-221,-33,-44,-2], +[0,-4,-221], [1,3,7224], [0,7225,0,7226,6], -[0,-12247,-1548,-2001], -[0,-1942,-727], +[0,-12837,-23,-1459], +[0,-4,-335], [1,3,7228], [0,0,14,7229,4], -[0,-3240,-651,-6472,-1044,-8799,-6656,-8574,-12248,-8800,-12249,-6582,-12250,-9782,-12251], +[0,-648,-454,-2692,-725,-1350,-128,-2217,-3958,-1351,-12838,-479,-6144,-2855,-12839], [1,3,7231], [0,7232,7233,7234,8], -[0,-1548,-12252], -[0,-664,-710,-711,-12253,-1654], -[0,-3240,-6324,-12254,-812,-12255,-8800,-5598,-9361,-3276,-8574], +[0,-23,-12840], +[0,-13,-455,-308,-12841,-3], +[0,-648,-658,-3959,-35,-6145,-1351,-3419,-3782,-566,-2217], [1,3,7236], [0,7237,7238,7,5], -[0,-4046,-482,-2029], -[0,-3040,-6633,-3081,-1361,-1427,-2006,-2019,-2052], +[0,-4694,-719,-437], +[0,-47,-1834,-1727,-514,-858,-6,-36,-287], [1,3,7240], [0,7241,14,7242,6], -[0,-12256], -[0,-3240,-9361,-8574,-9854,-12248,-8800,-4123,-1681,-12257,-7219,-12258,-7434,-5554,-2265,-6240,-12259], +[0,-12842], +[0,-648,-3782,-2217,-5759,-3958,-1351,-612,-549,-12843,-3586,-12844,-2747,-193,-168,-1538,-12845], [1,3,7244], [0,7245,0,7246,6], -[0,-3446,-2387,-1353,-3535,-1864,-12260,-1863], -[0,-5889,-12261,-12262,-1942,-1952,-5538,-707,-12263,-12232], +[0,-1742,-44,-460,-1142,-326,-6146,-167], +[0,-402,-12846,-12847,-4,-435,-616,-334,-6147,-6141], [1,3,7248], [0,7249,7250,7251,5], -[0,-714,-1646], -[0,-1654,-1452,-2198,-1405,-756,-1657], -[0,-4055,-687,-5538,-714], +[0,-133,-88], +[0,-3,-119,-81,-66,-55,-589], +[0,-108,-37,-616,-133], [1,3,7253], [0,7254,7255,7256,5], -[0,-1692,-10425,-2961,-12264,-12265,-12266], -[0,-1816,-2564,-1313,-1415,-1805,-999,-1496,-12267,-1852,-865,-3913,-6570,-679,-1077,-367,-7043,-5672,-1424,-1575,-1729, --12268,-2269,-12269,-2410,-3136,-3037,-10624,-12270,-511,-1101,-12271,-1769,-12272,-12273,-12274,-12275,-12276,-10419, --12277,-3048,-12278,-4835,-4106,-12279,-12280,-12281,-5038,-12282,-12283,-12284,-12285,-12286,-8863,-12287,-12288,-12289, --5782,-12290,-12291], -[0,-4340,-12292,-12293,-12294,-12295,-7685,-7773,-7485,-12296,-4165,-12297,-12298,-12299,-1857,-12300,-12301,-12302, --12303,-12304,-12305,-12306,-12307,-12308,-12309], +[0,-1674,-928,-4467,-12848,-12849,-12850], +[0,-325,-263,-855,-8,-152,-118,-490,-6148,-594,-210,-3252,-1544,-117,-41,-245,-1178,-1812,-1085,-1432,-188,-12851,-139, +-12852,-2,-29,-5,-3894,-12853,-1377,-1230,-12854,-1677,-12855,-6149,-6150,-12856,-12857,-3879,-12858,-191,-6151,-1313, +-1300,-12859,-12860,-12861,-1317,-6152,-12862,-6153,-6154,-12863,-1574,-12864,-12865,-12866,-2644,-12867,-12868], +[0,-826,-12869,-12870,-12871,-12872,-403,-768,-1854,-12873,-753,-12874,-12875,-6155,-595,-12876,-6156,-12877,-6157,-6158, +-12878,-12879,-12880,-12881,-12882], [1,3,7258], [0,0,7259,7260,4], -[0,-4201,-589,-664,-12310,-824,-12311,-932,-960,-971,-1168,-1184,-1187,-1208,-2915,-1243,-1244,-12312,-1273,-1333,-1339, --1449,-1654,-1729,-1771,-1942,-1976,-8318,-8319,-12313,-2091,-8320,-2205,-12314,-2550], -[0,-12315,-4131], +[0,-1014,-110,-13,-3960,-150,-12883,-1,-180,-784,-32,-960,-631,-790,-3153,-310,-962,-12884,-1075,-488,-413,-78,-3,-188, +-65,-4,-1253,-3706,-5473,-12885,-378,-3707,-600,-12886,-98], +[0,-12887,-2074], [1,3,7262], [0,7263,7264,7265,8], -[0,-615,-617,-714,-1004,-1576,-1650,-1666,-12316,-1813,-1850,-12317], -[0,-664,-1168,-1231,-1663,-2150,-2210,-2211,-2291], -[0,-622,-6011,-11722,-7737,-7736,-3324,-5889,-12318,-5897], +[0,-114,-163,-133,-40,-1973,-72,-233,-12888,-551,-1249,-12889], +[0,-13,-32,-359,-1440,-986,-27,-190,-690], +[0,-1050,-2145,-2266,-2755,-5357,-443,-402,-12890,-478], [1,3,7267], [0,0,29,7,4], [1,3,7269], [0,0,7270,7271,6], -[0,-2568,-1654], -[0,-1958], +[0,-993,-3], +[0,-286], [1,3,7273], [0,0,0,7274,7275], -[0,-687,-1959], +[0,-37,-362], 1769904000000, [1,3,7277], [0,7278,0,7279,4], -[0,-668,-1959], -[0,-2501,-3862,-1959,-10677], +[0,-20,-362], +[0,-18,-107,-362,-3896], [1,3,7281], [0,7282,7283,7,8], -[0,-11744], -[0,-461,-2125,-1405], +[0,-6063], +[0,-202,-7,-66], [1,3,7285], [0,0,7286,7287,6], -[0,-633,-767,-932,-4693,-1344,-1471,-1472,-1475,-1482,-1534,-1654,-1771,-1942,-2125,-2127,-2143,-2210,-2491,-2410], -[0,-1961,-1962,-6948,-6306], +[0,-60,-26,-1,-3311,-10,-79,-860,-138,-187,-17,-3,-65,-4,-7,-14,-807,-27,-742,-2], +[0,-171,-1685,-924,-1824], [1,3,7289], [0,7290,226,7291,4], -[0,-1654,-2210,-2424], -[0,-5923,-6306], +[0,-3,-27,-250], +[0,-504,-1824], [1,3,7293], [0,89,7294,57,6], -[0,-891,-1050,-1654,-1941], +[0,-458,-1410,-3,-2405], [1,3,7296], [0,7297,7298,7299,6], -[0,-5758,-510,-2059,-5975,-2520], -[0,-932,-2471], -[0,-1965,-3958,-12319,-3926], +[0,-1329,-59,-597,-5041,-564], +[0,-1,-1474], +[0,-495,-299,-12891,-423], [0,7301,7302,7303,6], -[0,-1496,-12320], -[0,-21,-23,-36,-40,-2320,-2322], -[0,-3160,-1966,-687,-1965,-3964,-3958,-3962,-3957,-3972,-3824,-3955,-12321], +[0,-490,-12892], +[0,-48,-11,-300,-21,-560,-39], +[0,-102,-392,-37,-495,-1508,-299,-352,-316,-1509,-1294,-1755,-12893], [1,3,7305], [0,7306,7307,41,5], -[0,-1580,-1792,-2029], -[0,-533,-560,-633,-647,-932,-1365,-1415,-2006,-12322,-12323], +[0,-1434,-241,-437], +[0,-86,-666,-60,-1385,-1,-212,-8,-6,-6159,-6160], [1,3,7309], [0,0,7310,7311,11], -[0,-4251,-3037,-12324,-652,-1318,-12325,-12326,-1942,-2094,-2100,-12327,-12328,-2399,-2410,-7669,-2541], -[0,-11876,-9681,-3264,-4675,-8041,-7153,-3839], +[0,-424,-5,-6161,-43,-3040,-12894,-6162,-4,-146,-261,-12895,-12896,-236,-2,-1559,-34], +[0,-3947,-1882,-31,-4780,-3680,-1179,-265], [1,3,7313], [0,7314,7315,7316,5], -[0,-12329,-12330,-12331,-12332,-12333,-12334,-12335,-12336,-12337,-12338,-3037,-1578], -[0,-589,-633,-12339,-647,-668,-931,-932,-986,-988,-1103,-11426,-12340,-9208,-1168,-1208,-1212,-1252,-1262,-1446,-1646, --1788,-2080,-2322,-2388,-2410,-2416,-2461,-2462,-2463], -[0,-12341,-12342,-12343,-2410], +[0,-12897,-12898,-12899,-12900,-12901,-12902,-12903,-12904,-12905,-12906,-5,-1974], +[0,-110,-60,-12907,-1385,-20,-2339,-1,-583,-1068,-340,-6018,-6163,-5630,-32,-790,-1074,-311,-632,-165,-88,-15,-598,-39, +-199,-2,-112,-1708,-562,-887], +[0,-12908,-6164,-2916,-2], [1,3,7318], [0,7319,7320,7321,5], -[0,-12344,-11458,-2729,-2734,-668,-1107,-1412,-2779,-1980,-5471,-2173,-2234,-2818,-2819,-2550], -[0,-3711,-3036,-9705,-12345,-8566,-3037,-617,-664,-665,-11477,-1003,-1004,-1168,-12346,-1260,-1452,-1548,-1610,-1654, --12347,-2125,-2150,-2177,-2388,-12348,-2410,-12349], -[0,-475,-4004,-3634,-11468,-12350,-11467], +[0,-6165,-1893,-4403,-1717,-20,-28,-196,-4416,-521,-1324,-1120,-147,-4423,-3149,-98], +[0,-3230,-471,-1195,-12909,-927,-5,-163,-13,-239,-2262,-411,-40,-32,-2917,-3033,-119,-23,-227,-3,-12910,-7,-986,-16,-199, +-1896,-2,-2918], +[0,-184,-76,-61,-930,-1588,-1036], [1,3,7323], [0,7324,7325,7326,4], -[0,-4377,-12351,-812], -[0,-12352,-3198,-3136,-3037,-511,-1415,-2375,-2410,-9056], -[0,-1334,-1342,-1971,-729,-7680,-12353,-12354,-7827,-12355,-12356,-12357], +[0,-613,-12911,-35], +[0,-12912,-169,-29,-5,-1377,-8,-57,-2,-2228], +[0,-103,-388,-596,-218,-3646,-12913,-12914,-3658,-12915,-12916,-12917], [1,3,7328], [0,7329,7330,231,4], -[0,-12358,-12359,-2114], -[0,-1654,-12360,-2198,-2210,-2250], +[0,-12918,-12919,-126], +[0,-3,-12920,-81,-27,-97], [1,3,7332], [0,7333,7334,7335,5], -[0,-668,-12361,-12362,-1376,-1392,-1548,-1639,-1728,-1820,-2177], -[0,-526,-555,-558,-824,-932,-940,-1362,-1405,-1650,-1654,-1661,-1942,-2125,-2198], -[0,-1168,-1764,-8403,-5897,-3551], +[0,-20,-12921,-12922,-195,-547,-23,-361,-2391,-3076,-16], +[0,-179,-937,-253,-150,-1,-12,-1962,-66,-72,-3,-1439,-4,-7,-81], +[0,-32,-159,-769,-478,-365], [1,3,7337], [0,7338,7339,7340,10], -[0,-12363,-12364,-12365,-12366,-12367,-12368,-12369,-12370], -[0,-1650,-2125,-10011,-10009,-10013,-10014,-12371,-12372,-10010], -[0,-3264,-1409,-1974,-3110], +[0,-12923,-12924,-12925,-12926,-12927,-12928,-12929,-12930], +[0,-72,-7,-5789,-5787,-5790,-5791,-12931,-12932,-5788], +[0,-31,-1659,-642,-277], [1,3,7342], [0,0,7343,7,4], -[0,-589,-11080,-1021,-1948,-12373,-2320,-2322], +[0,-110,-5973,-1949,-520,-12933,-560,-39], [1,3,7345], [0,7346,0,7347,4], -[0,-908,-1801], -[0,-8027,-11441,-7412,-5865], +[0,-1628,-680], +[0,-1029,-2260,-2742,-2139], [1,3,7349], [0,0,7350,7351,4], -[0,-708,-1788,-1654], -[0,-1977,-4112,-12374,-12375,-12376,-2435,-12377], +[0,-149,-15,-3], +[0,-981,-474,-12934,-12935,-12936,-200,-12937], [1,3,7353], [0,7354,91,7355,5], -[0,-7591,-12378,-755,-11460,-12379,-12380], -[0,-1978,-10366,-11878,-4864], +[0,-5325,-12938,-386,-3922,-6166,-12939], +[0,-160,-1582,-1358,-572], [1,3,7357], [0,7358,0,7359,8], -[0,-719,-1026,-1889,-1931], -[0,-7175,-7036,-6694,-7441,-775,-3264,-8199,-12381,-9487,-7725], +[0,-58,-226,-38,-556], +[0,-620,-3571,-659,-2193,-24,-31,-1567,-12940,-3799,-5354], [1,3,7361], [0,0,7362,7363,9], -[0,-1127,-1452,-1612,-1132,-1414,-1148,-1963], -[0,-1980,-1961,-5923,-6305,-6306,-6307,-6309,-510,-6310,-12382,-4865,-3966], +[0,-54,-119,-1435,-164,-1967,-341,-1686], +[0,-521,-171,-504,-5097,-1824,-3497,-2675,-59,-5099,-12941,-94,-144], [1,3,7365], [0,0,0,7366,10], -[0,-6935,-12383,-6934,-7715,-3839,-6527], +[0,-1841,-12942,-5201,-621,-265,-292], [1,3,7368], [0,0,0,7369,4], -[0,-5514,-4111,-6935,-4000], +[0,-243,-902,-1841,-201], [1,3,7371], [0,7372,7373,7374,4], -[0,-7397], -[0,-12384,-12385,-5834,-633,-647,-12386,-887,-921,-932,-993,-1065,-1107,-8080,-12387,-11104,-7402,-1283,-1351,-1365,-1408, --1431,-1650,-1659,-6374,-1777,-1788,-1794,-8385,-2156,-9786,-2322,-12388], -[0,-1985,-1983,-5101,-2435,-1838,-6231], +[0,-5296], +[0,-12943,-12944,-244,-60,-1385,-12945,-1398,-1400,-1,-1069,-954,-28,-5417,-12946,-5978,-5297,-1234,-459,-212,-1235,-516, +-72,-1672,-5109,-273,-15,-1245,-5487,-189,-3839,-39,-12947], +[0,-982,-465,-702,-200,-166,-447], [1,3,7376], [0,7377,7378,7379,4], -[0,-12389,-12390,-12391], -[0,-519,-589,-821,-1023,-2384,-2541], -[0,-4865,-1985,-5101,-2265,-1983,-12392,-12393,-2435,-1838,-6231,-6422,-6420,-12394,-7724], +[0,-12948,-6167,-12949], +[0,-51,-110,-780,-1224,-82,-34], +[0,-94,-982,-702,-168,-465,-12950,-12951,-200,-166,-447,-833,-1539,-12952,-767], [1,3,7381], [0,0,7382,7383,4], -[0,-4004,-12395,-2322], -[0,-4791,-5101,-1985], +[0,-76,-12953,-39], +[0,-910,-702,-982], [1,3,7385], [0,0,7386,7387,4], -[0,-652,-1339,-12396], -[0,-1986,-510,-6235,-12397,-5418,-4107,-11866,-5920], +[0,-43,-413,-12954], +[0,-983,-59,-1537,-2919,-1530,-824,-2268,-2654], [1,3,7389], [0,119,120,7390,4], -[0,-1986,-11868,-12398,-12399,-12400,-3214,-7484,-7485,-3756,-2410,-7486,-4165,-3018,-5418,-12401,-1986,-12402,-12403, --12404,-10587,-11866,-12405,-11049,-7530,-7283,-12406,-6582,-7534,-7535,-7536,-7537,-7538,-7539,-7540,-7541,-7542,-7543, --7544,-7545,-7503,-12407,-7547,-7548,-6948,-7549,-7550,-7551,-7552,-7553,-7554,-7555,-7556,-7557,-2444,-7558,-7559,-5063, --7560,-1980,-12408,-5839,-11450,-12409, --5737,-12410,-2634,-3966,-12411,-11052,-6187,-7563,-856,-7275], +[0,-983,-6090,-12955,-12956,-12957,-45,-3614,-1854,-278,-2,-3615,-753,-440,-1530,-12958,-983,-12959,-12960,-12961,-3891, +-2268,-12962,-3912,-3618,-1847,-12963,-479,-1344,-3619,-3620,-2748,-3621,-3622,-3623,-3624,-3625,-3626,-3627,-3628,-3617, +-12964,-2196,-3629,-924,-3630,-3631,-3632,-3633,-3634,-3635,-3636,-3637,-2749,-136,-1556,-3638,-2605,-3639,-521,-12965, +-708,-3921,-12966, +-1328,-12967,-242,-144,-6168,-5967,-574,-3640,-42,-1551], [1,3,7392], [0,7393,7394,7395,4], -[0,-1549,-12412,-12413,-996], -[0,-1107,-2303,-1449,-932,-2286,-2469,-2379,-2501,-1942,-2376,-21,-778,-2410,-23,-3037,-1322,-2503,-534,-1304,-2275,-2287, --2508,-3046,-5286,-3983,-3164,-40,-2233,-2505,-12414,-1331,-958,-2335,-940,-962,-967,-1643,-42,-12415,-428,-8561,-12416, --427,-4011,-948], -[0,-1988,-3496,-3495,-3494,-3505,-3506,-3161], +[0,-461,-12968,-12969,-951], +[0,-28,-602,-78,-1,-396,-30,-33,-18,-4,-214,-48,-141,-2,-11,-5,-1423,-93,-96,-372,-154,-1701,-524,-526,-1156,-366,-1279, +-21,-880,-173,-12970,-342,-9,-397,-12,-148,-25,-374,-137,-12971,-19,-2216,-2920,-22,-4682,-246], +[0,-4285,-420,-895,-821,-1494,-1495,-53], [1,3,7397], [0,7398,7399,7400,11], -[0,-719,-10988,-1747], -[0,-1788,-1127,-1496,-932,-2125,-2127,-2177,-589,-1054,-12417,-2111,-1972,-8573,-23,-12418,-40,-957,-966,-1138,-8022, --9544,-3326,-952,-958,-12419,-968,-1137,-3561,-943,-963,-350,-942,-351,-12420,-3840], -[0,-3634,-5119,-507,-5855,-2319,-2322,-1471,-1437], +[0,-58,-3910,-3072], +[0,-15,-54,-490,-1,-7,-14,-16,-110,-1227,-6169,-416,-181,-1870,-11,-6170,-21,-723,-75,-511,-3678,-2844,-207,-847,-9, +-12972,-67,-584,-237,-83,-211,-77,-1631,-62,-12973,-1007], +[0,-61,-401,-280,-1163,-85,-39,-79,-248], [1,3,7402], [0,7403,7404,7405,8], -[0,-12421], -[0,-2832,-12422,-427,-428,-3664,-549,-558,-726,-932,-940,-967,-6726,-8011,-1942,-2910,-1989,-2091,-12423,-2127,-4063, --2142,-2410,-2469,-2501], -[0,-4865,-5092,-3264,-1989,-12424,-3634], +[0,-12974], +[0,-314,-12975,-22,-19,-105,-1207,-253,-284,-1,-12,-25,-3544,-3677,-4,-470,-376,-378,-12976,-14,-900,-305,-2,-30,-18], +[0,-94,-266,-31,-376,-12977,-61], [1,3,7407], [0,7408,7409,7410,4], -[0,-679,-719,-12425,-1048,-12426,-2114,-2488], -[0,-510,-537,-559,-12427,-705,-10255,-10260,-957,-8022,-999,-1054,-1077,-1127,-1132,-1133,-1137,-1138,-9544,-1149,-9240, --1152,-10257,-9241,-10644,-12418,-1542,-1972,-2111,-2128,-2177], -[0,-3634,-5119,-1437], +[0,-117,-58,-12978,-1409,-12979,-126,-1133], +[0,-59,-1206,-321,-6171,-941,-5808,-5810,-723,-3678,-118,-1227,-41,-54,-164,-4180,-584,-511,-2844,-304,-2828,-512,-5809, +-2829,-5893,-6170,-343,-181,-416,-275,-16], +[0,-61,-401,-248], [1,3,7412], [0,7413,7414,7415,9], -[0,-1856], -[0,-12428,-633,-2322], -[0,-12429,-3582], +[0,-1449], +[0,-12980,-60,-39], +[0,-12981,-567], [1,3,7417], [0,0,7418,7419,5], -[0,-21,-23,-40,-43,-47,-3326,-10022,-12430,-571,-589,-693,-767,-12431,-932,-958,-1023,-1276,-1442,-1654,-1771,-1788,-2125, --2127,-2143,-12432,-12433,-2210,-2342,-12434], -[0,-1993,-5112,-5260,-8113,-3481,-11639,-12435,-12436,-12437,-9976,-12438], +[0,-48,-11,-21,-174,-450,-207,-2864,-12982,-777,-110,-940,-26,-12983,-1,-9,-1224,-247,-101,-3,-65,-15,-7,-14,-807,-12984, +-12985,-27,-3117,-6172], +[0,-643,-759,-704,-1030,-1141,-2900,-6173,-12986,-3961,-5782,-6174], [1,3,7421], [0,7422,27,7423,6], -[0,-2172], -[0,-6555,-12439,-12439,-10781,-3262,-12440,-5554], +[0,-1462], +[0,-920,-3962,-3962,-1889,-116,-12987,-193], [1,3,7425], [0,177,7426,7427,5], -[0,-1859,-2250,-2320,-2322,-2568], -[0,-770,-6555], +[0,-867,-97,-560,-39,-993], +[0,-626,-920], [1,3,7429], [0,7430,27,7,10], -[0,-1995], +[0,-3088], [1,3,7432], [0,0,172,7433,9], -[0,-7434,-3215,-1334], +[0,-2747,-74,-103], [1,3,7435], [0,7436,7437,7438,6], -[0,-1616,-2446,-743,-12441,-2249], -[0,-1107,-1722,-1654,-2210,-932,-2198,-1405,-1942,-710,-940], -[0,-11428,-8980,-12442,-5545,-1998,-12443], +[0,-1100,-125,-336,-12988,-3106], +[0,-28,-197,-3,-27,-1,-81,-66,-4,-455,-12], +[0,-6019,-2227,-6175,-384,-4287,-12989], [1,3,7440], [0,7441,7442,7,5], -[0,-651,-12444,-1351,-1335], -[0,-1788,-1654,-932,-615,-2884,-2155,-2062,-3748,-5029], +[0,-454,-12990,-459,-633], +[0,-15,-3,-1,-114,-819,-497,-198,-315,-2601], [1,3,7444], [0,205,7445,48,5], -[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-967,-1344,-1415,-1534,-1623,-1771,-1942,-2251, --2501], +[0,-48,-11,-21,-49,-63,-2211,-1025,-86,-26,-150,-232,-1,-12,-9,-25,-10,-8,-17,-259,-65,-4,-134,-18], [1,3,7447], [0,7448,0,7449,4], -[0,-1371,-1646,-822,-2271], -[0,-727,-2001,-11642,-10659], +[0,-728,-88,-1623,-601], +[0,-335,-1459,-2263,-2877], [1,3,7451], [0,7452,7453,7454,5], -[0,-44,-682,-2004], -[0,-12445,-407,-409,-3059,-3136,-3037,-3040,-3052,-6265,-767,-881,-932,-959,-978,-1031,-12446,-1103,-1107,-1521,-1763, --12447,-2003,-4946,-2006,-2019,-2082,-2410], -[0,-2006,-3159,-12448,-12449,-3962,-7434], +[0,-90,-254,-1254], +[0,-3963,-153,-120,-2026,-29,-5,-47,-89,-3491,-26,-1396,-1,-145,-151,-788,-12991,-340,-28,-219,-415,-3964,-1989,-4843,-6, +-36,-346,-2], +[0,-6,-106,-12992,-1359,-352,-2747], [1,3,7456], [0,7457,7458,7459,5], -[0,-44,-5650,-682,-2004], -[0,-12445,-409,-3136,-3040,-3052,-4972,-767,-881,-932,-978,-1031,-1103,-1521,-1763,-12447,-2006,-2019,-2410], -[0,-2006,-3159,-12450,-3821], +[0,-90,-4974,-254,-1254], +[0,-3963,-120,-29,-47,-89,-1519,-26,-1396,-1,-151,-788,-340,-219,-415,-3964,-6,-36,-2], +[0,-6,-106,-12993,-2051], [1,3,7461], [0,7462,7463,7464,5], -[0,-44,-2029], -[0,-12445,-409,-3136,-3037,-3040,-3052,-6633,-12451,-4972,-6265,-761,-767,-881,-932,-959,-978,-1031,-1107,-1344,-1534, --1763,-1942,-12447,-2006,-2019,-2410], -[0,-2006,-2444], +[0,-90,-437], +[0,-3963,-120,-29,-5,-47,-89,-1834,-12994,-1519,-3491,-1936,-26,-1396,-1,-145,-151,-788,-28,-10,-17,-415,-4,-3964,-6,-36, +-2], +[0,-6,-136], [1,3,7466], [0,0,0,41,10], [1,3,7468], [0,7469,0,245,10], -[0,-2055], +[0,-687], [1,3,7471], [0,7472,7473,245,5], -[0,-1792], -[0,-1415,-2006,-2019,-2501], +[0,-241], +[0,-8,-6,-36,-18], [1,3,7475], [0,7476,7477,7478,5], -[0,-12453,-12454,-12455,-12456,-12457], -[0,-2127,-2410], -[0,-3321,-1122,-2006,-3322,-8977,-3098], +[0,-12996,-12997,-12998,-12999,-13000], +[0,-14,-2], +[0,-4538,-371,-6,-696,-5590,-127], [1,3,7480], [0,7481,0,7,11], -[0,-1992,-753,-1961,-2516,-1792,-2082], +[0,-684,-158,-171,-818,-241,-346], [1,3,7483], [0,7484,0,7485,4], -[0,-2489,-1384,-682,-1967,-12458,-860,-44,-12459,-12460,-12461,-3140,-2055,-3024], -[0,-620,-2006,-3095,-3098,-12462,-3159], +[0,-605,-674,-254,-121,-13001,-1626,-90,-13002,-13003,-13004,-997,-687,-1487], +[0,-453,-6,-131,-127,-13005,-106], [1,3,7487], [0,7488,7489,7490,5], -[0,-12463,-1548,-1549,-12464,-1967,-12465,-2355], -[0,-12466,-12467,-6263,-6264,-4749,-526,-527,-533,-534,-12468,-559,-560,-562,-566,-664,-12469,-778,-915,-994,-1033,-1304, --1322,-1331,-1347,-1415,-1417,-12470,-1654,-1762,-1764,-1792,-2006,-8934,-12471,-2019,-2024,-12472,-2052,-2102,-2109, --2125,-2275,-12473,-2501,-2505], -[0,-2006,-12474,-3159,-8597,-4122,-12475,-10366,-12476,-3119,-3825], +[0,-13006,-23,-461,-13007,-121,-13008,-1128], +[0,-13009,-13010,-3490,-5091,-1019,-179,-162,-86,-96,-6176,-321,-666,-1048,-429,-13,-3965,-141,-431,-409,-1636,-372,-1423, +-342,-4214,-8,-489,-13011,-3,-1980,-159,-241,-6,-5579,-13012,-36,-1990,-13013,-287,-1116,-2418,-7,-154,-13014,-18,-173], +[0,-6,-6177,-106,-3729,-2556,-13015,-1582,-13016,-996,-2053], [1,3,7492], [0,7493,7494,7495,9], -[0,-747,-1967], -[0,-21,-23,-32,-26,-36,-40,-41,-43,-534,-553,-778,-827,-932,-933,-958,-962,-969,-970,-1103,-1331,-12477,-1643,-2006,-2019, --2275,-2322,-2501,-2503,-2505], -[0,-3095,-3159,-2006,-12478,-699], +[0,-778,-121], +[0,-48,-11,-156,-209,-300,-21,-132,-174,-96,-776,-141,-1392,-1,-255,-9,-148,-64,-186,-340,-342,-13017,-374,-6,-36,-154, +-39,-18,-93,-173], +[0,-131,-106,-6,-13018,-1053], [1,3,7497], [0,7498,7499,7500,9], -[0,-2852,-703,-807], -[0,-23,-32,-3192,-3840,-26,-40,-41,-42,-190,-12479,-3326,-350,-351,-3266,-3267,-406,-409,-410,-3330,-3136,-4961,-3037, --3040,-3052,-427,-428,-522,-533,-553,-753,-12480,-932,-940,-958,-959,-969,-970,-9724,-1344,-1415,-4980,-1416,-1419,-1534, --1548,-1942,-2006,-2019,-2127,-5090,-2162,-2223,-2281,-2282,-3436,-2285,-2375,-2387,-2410,-2411], -[0,-2006,-4222,-4120,-4121,-3159], +[0,-2476,-302,-1061], +[0,-11,-156,-2492,-1007,-209,-21,-132,-137,-50,-13019,-207,-77,-62,-206,-330,-319,-120,-307,-364,-29,-1780,-5,-47,-89,-22, +-19,-1205,-86,-776,-158,-13020,-1,-12,-9,-145,-64,-186,-2852,-10,-8,-1782,-1427,-176,-17,-23,-4,-6,-36,-14,-2608,-80, +-739,-182,-558,-2505,-2437,-57,-44,-2,-84], +[0,-6,-4721,-3267,-1013,-106], [1,3,7502], [0,7503,7504,7,5], -[0,-1805,-668,-1359,-1111,-1872,-6558,-1047,-12481,-1966,-1044,-1273,-2269,-2343,-769,-2194,-635,-1543,-6197,-12482,-22, --2070,-2021,-930,-1067], -[0,-1415,-767], +[0,-152,-20,-965,-204,-1112,-2169,-339,-13021,-392,-725,-1075,-139,-885,-225,-737,-301,-732,-2671,-13022,-505,-1993,-4291, +-408,-1639], +[0,-8,-26], [1,3,7506], [0,7507,7508,7,6], -[0,-12483,-12484,-12485,-1025,-1311], -[0,-4010,-367,-409,-5220,-3136,-3037,-3040,-3052,-1415,-5129,-1771,-2006,-2019,-2200,-2410], +[0,-13023,-13024,-6178,-952,-963], +[0,-1759,-245,-120,-2615,-29,-5,-47,-89,-8,-1523,-65,-6,-36,-394,-2], [1,3,7510], [0,7511,7512,7,8], -[0,-12485], -[0,-4010,-367,-3136,-1771,-2200,-2410], +[0,-6178], +[0,-1759,-245,-29,-65,-394,-2], [1,3,7514], [0,7515,0,7516,4], -[0,-2114,-8245,-23,-47,-4096,-3200,-46,-12486,-4776,-10101], -[0,-2006,-856,-12487], +[0,-126,-1863,-11,-450,-2070,-1137,-539,-6179,-757,-2867], +[0,-6,-42,-13025], [1,3,7518], [0,7519,0,41,4], -[0,-2166], +[0,-987], [1,3,7521], [0,7522,7523,7524,4], -[0,-12488,-12489,-1967], -[0,-21,-23,-32,-3840,-12490,-34,-12491,-6065,-5584,-12492,-38,-40,-41,-43,-86,-9404,-12493,-10709,-3326,-350,-351,-3470, --7040,-3472,-7041,-7042,-5295,-4774,-12494,-406,-407,-409,-2622,-3040,-3052,-427,-428,-533,-535,-536,-720,-767,-932,-940, --958,-962,-966,-967,-969,-970,-1344,-12495,-1357,-1415,-1534,-1609,-1868,-1942,-2006,-2019,-2049,-2052,-2125, --2127,-2140,-2174,-2214,-2275,-2278,-2410,-2501,-12496], -[0,-3159,-2006,-7581,-7582,-7764], +[0,-13026,-13027,-121], +[0,-48,-11,-156,-1007,-3966,-1039,-13028,-2148,-1326,-6180,-170,-21,-132,-174,-49,-1032,-13029,-5905,-207,-77,-62,-297, +-925,-749,-618,-1177,-705,-4799,-13030,-319,-153,-120,-1478,-47,-89,-22,-19,-86,-270,-1603,-482,-26,-1,-12,-9,-148,-75, +-25,-64,-186,-10,-13031,-3046,-8,-17,-518,-1251,-4,-6,-36,-2414,-287,-7, +-14,-229,-122,-328,-154,-882,-2,-18,-13032], +[0,-106,-6,-1345,-1855,-1182], [1,3,7526], [0,0,7527,7528,4], -[0,-22,-23,-2624,-533,-534,-561,-668,-679,-767,-1059,-1320,-1415,-12497,-1792,-1961,-2000,-2006,-2010,-2019,-2125,-12498, --2231,-2501], -[0,-12499,-4132,-6324,-5547,-6335,-12500,-12501,-2489], +[0,-505,-11,-1479,-86,-96,-1607,-20,-117,-26,-412,-673,-8,-13033,-241,-171,-685,-6,-2409,-36,-7,-13034,-130,-18], +[0,-13035,-400,-658,-4949,-2162,-13036,-13037,-605], [1,3,7530], [0,7531,7532,7533,4], -[0,-1792,-1967,-2798,-12502], -[0,-527,-528,-537,-539,-546,-551,-558,-560,-664,-708,-740,-796,-932,-12503,-940,-958,-962,-964,-967,-969,-1405,-1471, --1474,-12504,-1475,-1476,-1479,-12505,-1482,-1486,-1490,-1491,-11508,-1654,-1942,-2006,-2019,-2125,-2127,-2128,-2131, --2137,-2138,-2210,-2211], -[0,-2022,-12506,-2006,-10855,-12507,-12508,-12509,-10606,-11729,-3956,-12510,-5553], +[0,-241,-121,-2470,-13038], +[0,-162,-91,-1206,-333,-1379,-775,-253,-666,-13,-149,-385,-295,-1,-13039,-12,-9,-148,-256,-25,-64,-66,-79,-675,-13040, +-138,-588,-213,-13041,-187,-731,-637,-676,-6027,-3,-4,-6,-36,-7,-14,-275,-466,-347,-877,-27,-190], +[0,-3091,-13042,-6,-1890,-13043,-2921,-13044,-1584,-2905,-1756,-13045,-230], [1,3,7535], [0,0,7536,7537,4], -[0,-3615,-262,-350,-351,-3266,-367,-7043,-407,-409,-3136,-3037,-3040,-3052,-3563,-795,-932,-940,-3071,-967,-969,-970, --4814,-1344,-1415,-1419,-12511,-2781,-1534,-1942,-2006,-2019,-2125,-2127,-2142,-2384,-2410,-2411,-2516,-2564], -[0,-2006,-3322,-4053,-4054,-12512,-3926,-2410,-4124], +[0,-498,-451,-77,-62,-206,-245,-1178,-153,-120,-29,-5,-47,-89,-1747,-483,-1,-12,-2484,-25,-64,-186,-911,-10,-8,-176, +-13046,-4417,-17,-4,-6,-36,-7,-14,-305,-82,-2,-84,-818,-263], +[0,-6,-696,-570,-899,-3967,-423,-2,-3268], [1,3,7539], [0,7540,7541,7542,6], -[0,-10579,-1109,-1311,-1543,-1967,-2030,-2192,-2231], -[0,-3795,-3040,-3807,-526,-527,-528,-533,-536,-537,-546,-551,-556,-558,-560,-708,-6019,-761,-767,-915,-12513,-916,-932, --933,-940,-958,-962,-969,-1344,-1415,-1534,-1942,-2006,-2019,-12514,-2052,-2069,-2125,-2127,-2128,-2131,-2133,-2137, --2138,-2143,-2251,-12515], -[0,-2006,-3214,-2501,-6211,-1540,-12516,-10589,-12517,-5932,-11492], +[0,-3890,-852,-963,-732,-121,-1460,-1463,-130], +[0,-4637,-47,-1751,-179,-162,-91,-86,-1603,-1206,-1379,-775,-580,-253,-666,-149,-2146,-1936,-26,-431,-13047,-947,-1,-255, +-12,-9,-148,-64,-10,-8,-17,-4,-6,-36,-13048,-287,-3099,-7,-14,-275,-466,-1118,-347,-877,-807,-134,-6181], +[0,-6,-45,-18,-1822,-1094,-3968,-3892,-2271,-831,-1585], [1,3,7544], [0,7545,7546,7547,6], -[0,-44,-2770,-12518], -[0,-21,-23,-32,-12519,-36,-3204,-38,-39,-40,-41,-43,-3326,-350,-351,-3561,-3266,-406,-407,-409,-3136,-3040,-3664,-7465, --527,-3766,-6046,-756,-757,-767,-932,-933,-940,-958,-12520,-962,-969,-976,-1278,-1344,-1349,-1534,-1650,-1942,-2006, --2019,-2052,-2125,-2127,-2410,-2469,-2550], -[0,-1349,-9780,-1348,-9781,-9782,-9772,-9783,-2006,-3476], +[0,-90,-4414,-2272], +[0,-48,-11,-156,-13049,-300,-398,-170,-449,-21,-132,-174,-207,-77,-62,-237,-206,-319,-153,-120,-29,-47,-105,-1853,-162, +-1291,-2658,-55,-582,-26,-1,-255,-12,-9,-3969,-148,-64,-1406,-1233,-10,-1079,-17,-72,-4,-6,-36,-287,-7,-14,-2,-30,-98], +[0,-1079,-1885,-1078,-3837,-2855,-2243,-3838,-6,-527], [1,3,7549], [0,0,7550,7551,10], -[0,-2832,-2581,-5295,-407,-409,-3037,-3040,-3052,-440,-2970,-3899,-8349,-1534,-1637,-1771,-1874,-2910,-2006,-2019,-3246, --2214,-2391,-2410,-2469], -[0,-2006,-3095,-3322,-12521,-12522,-12523,-12524,-12525,-12526,-12527], +[0,-314,-329,-705,-153,-120,-5,-47,-89,-506,-1486,-1009,-1568,-17,-677,-65,-391,-470,-6,-36,-999,-328,-172,-2,-30], +[0,-6,-131,-696,-6182,-13050,-3970,-13051,-13052,-13053,-13054], [1,3,7553], [0,7554,0,7555,4], -[0,-5220,-1311,-2387,-12528,-12529,-12530,-12531], -[0,-3276,-5538,-9783,-1348,-9780,-1382,-12250,-9782,-2006,-3476,-3940,-9781], +[0,-2615,-963,-44,-13055,-13056,-13057,-13058], +[0,-566,-616,-3838,-1078,-1885,-3050,-6144,-2855,-6,-527,-4676,-3837], [1,3,7557], [0,0,0,41,6], [1,3,7559], [0,0,7560,7,5], -[0,-656,-668,-932,-12532,-1415,-1417,-1942,-2127,-2138,-2143], +[0,-430,-20,-1,-13059,-8,-489,-4,-14,-877,-807], [1,3,7562], [0,7563,7564,7565,6], -[0,-5334,-4251,-9596,-1291,-2632,-1619,-2098,-2101,-2427,-2429,-5358], -[0,-409,-3037,-3040,-3052,-652,-725,-928,-969,-4652,-1942,-2006,-2019,-2088,-12533,-2094,-2095,-2100,-4656,-2399,-2410, --2541], -[0,-3272,-8630,-3095,-4329,-1599,-2006,-3159,-2093,-2427], +[0,-251,-424,-1033,-4206,-4371,-1101,-599,-806,-135,-348,-502], +[0,-120,-5,-47,-89,-43,-309,-87,-64,-3308,-4,-6,-36,-3100,-13060,-146,-522,-261,-1773,-236,-2,-34], +[0,-363,-1192,-131,-2080,-99,-6,-106,-274,-135], [1,3,7567], [0,7568,7569,7570,5], -[0,-12534,-1967,-2030,-2489], -[0,-12535,-526,-527,-528,-534,-535,-558,-560,-564,-756,-767,-932,-940,-12416,-958,-962,-967,-969,-5997,-1471,-1475,-1476, --1479,-1482,-1483,-1490,-1492,-1654,-1771,-1942,-2006,-2019,-2043,-2044,-2198,-2416,-2501,-2503,-2505], -[0,-2006,-3159,-4126,-12536], +[0,-13061,-121,-1460,-605], +[0,-6183,-179,-162,-91,-96,-270,-253,-666,-2302,-55,-26,-1,-12,-2920,-9,-148,-25,-64,-5044,-79,-138,-588,-213,-187,-414, +-637,-517,-3,-65,-4,-6,-36,-873,-557,-81,-112,-18,-93,-173], +[0,-6,-106,-1511,-3971], [1,3,7572], [0,7573,7574,7575,5], -[0,-1856,-1967,-1992], -[0,-525,-12537,-527,-528,-534,-709,-778,-932,-933,-949,-958,-962,-969,-1059,-11942,-12538,-12539,-1413,-1471,-1476,-1481, --12540,-1484,-1492,-12541,-1859,-2024,-2275,-2501,-2505], -[0,-2006,-3095,-3159,-12542,-12543,-12544,-12545,-5176,-12546,-3160], +[0,-1449,-121,-684], +[0,-281,-13062,-162,-91,-96,-1054,-141,-1,-255,-1632,-9,-148,-64,-412,-1894,-13063,-6184,-373,-79,-588,-389,-13064,-2365, +-517,-13065,-867,-1990,-154,-18,-173], +[0,-6,-131,-106,-13066,-2922,-13067,-13068,-500,-3972,-102], [1,3,7577], [0,7578,0,246,4], -[0,-2531,-2624,-2550,-2177,-1961,-578,-719,-1384,-2166,-481,-533,-12547,-2654,-1624,-2516,-12548,-1950,-2041,-12549,-458, --12550,-11463,-12551,-9870,-2082,-12552,-1421,-12553,-12554,-12555,-12556,-12557,-12558,-12559,-12560], +[0,-205,-1479,-98,-16,-171,-1608,-58,-674,-987,-1045,-86,-6185,-313,-1976,-818,-6186,-683,-686,-13069,-1203,-6187,-2261, +-6188,-3845,-346,-6189,-794,-6190,-6191,-6192,-6193,-6194,-13070,-6195,-6196], [1,3,7580], [0,0,7581,7582,4], -[0,-12563,-12564,-12565,-932,-967,-1942,-2006,-2034,-12566,-2410], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-12568], +[0,-13073,-3973,-13074,-1,-25,-4,-6,-235,-2273,-2], +[0,-235,-106,-1037,-6,-95,-291,-355,-13075], [1,3,7584], [0,7585,7586,7587,6], -[0,-2550,-1967], -[0,-2006,-932,-12569,-12570,-1387,-1942,-4731,-21,-12571,-23,-528,-1064,-12572,-9081,-12573,-12574,-12575,-12576,-12577, --969,-933,-958,-940,-962,-967,-970,-3156], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-12578,-7084,-12579,-3160,-3167,-3843,-9472,-9474,-3827], +[0,-98,-121], +[0,-6,-1,-13076,-13077,-1654,-4,-4792,-48,-13078,-11,-91,-3014,-13079,-5611,-13080,-13081,-13082,-13083,-13084,-64,-255, +-9,-12,-148,-25,-186,-1732], +[0,-235,-106,-1037,-6,-95,-291,-355,-2923,-764,-6197,-102,-745,-1008,-1354,-2237,-1149], [1,3,7589], [0,0,7590,7591,9], -[0,-21,-23,-26,-36,-3203,-40,-41,-43,-12580,-2685,-8471,-261,-6429,-3267,-407,-409,-410,-3040,-428,-528,-534,-535,-3090, --682,-703,-767,-932,-940,-949,-958,-969,-1103,-1449,-1613,-6519,-1942,-4130,-2006,-2019,-12581,-2127,-2128,-2131,-5090, --2134,-2137,-2138,-2143,-2376,-2410,-2469,-2501,-2503,-2505], -[0,-3159,-2006,-12582,-3962,-6240,-12583,-6769], +[0,-48,-11,-209,-300,-998,-21,-132,-174,-13085,-2461,-3720,-2291,-2165,-330,-153,-120,-307,-47,-19,-91,-96,-270,-4494, +-254,-302,-26,-1,-12,-1632,-9,-64,-340,-78,-1099,-3524,-4,-1762,-6,-36,-13086,-14,-275,-466,-2608,-876,-347,-877,-807, +-214,-2,-30,-18,-93,-173], +[0,-106,-6,-13087,-352,-1538,-13088,-5173], [1,3,7593], [0,0,7594,7595,4], -[0,-23,-26,-36,-40,-6035,-3326,-528,-534,-664,-932,-1344,-1534,-1654,-1771,-1942,-2006,-2019,-2052,-12584,-2125,-2127, --2501], -[0,-2006,-12585,-12586,-12587], +[0,-11,-209,-300,-21,-3473,-207,-91,-96,-13,-1,-10,-17,-3,-65,-4,-6,-36,-287,-13089,-7,-14,-18], +[0,-6,-13090,-13091,-13092], [1,3,7597], [0,0,7598,7599,4], -[0,-4066,-12588,-932,-12589,-967,-12590,-1415,-1942,-2127,-2410], -[0,-2039,-3264,-3839,-5092,-7153,-9681,-727,-2006,-2019], +[0,-530,-13093,-1,-13094,-25,-13095,-8,-4,-14,-2], +[0,-3094,-31,-265,-266,-1179,-1882,-335,-6,-36], [1,3,7601], [0,7602,7603,7604,5], -[0,-12591,-12518], -[0,-262,-349,-406,-407,-409,-3037,-3140,-3040,-3052,-708,-767,-932,-940,-948,-958,-967,-969,-1449,-1942,-2006,-2019,-2074, --2125,-2391,-2410,-2411,-2469], -[0,-2006,-3476,-2074], +[0,-6198,-2272], +[0,-451,-1909,-319,-153,-120,-5,-997,-47,-89,-149,-26,-1,-12,-246,-9,-25,-64,-78,-4,-6,-36,-327,-7,-172,-2,-84,-30], +[0,-6,-527,-327], [0,0,0,41,4], [1,3,7607], [0,7608,7609,7610,4], -[0,-1346,-12592,-1967,-5582], -[0,-3267,-3035,-12593,-4647,-12594,-12595,-3621,-3040,-3052,-4372,-427,-428,-664,-767,-932,-952,-1103,-1449,-12596,-1654, --1942,-2006,-2019,-2125,-2127,-5405,-2198,-2210,-2387,-2392,-2402,-2410], -[0,-775,-3159,-12521,-2006,-3162,-12597,-12598,-3580,-12599,-3576,-3095], +[0,-4213,-13096,-121,-4956], +[0,-330,-109,-13097,-614,-13098,-13099,-71,-47,-89,-279,-22,-19,-13,-26,-1,-847,-340,-78,-13100,-3,-4,-6,-36,-7,-14,-3392, +-81,-27,-44,-155,-124,-2], +[0,-24,-106,-6182,-6,-95,-13101,-13102,-4591,-13103,-649,-131], [1,3,7612], [0,7613,7614,248,6], -[0,-743,-3169], -[0,-2391,-2006,-2426,-12600,-12601,-2019,-2410,-2052,-409,-1419,-3172,-407,-410], +[0,-336,-2488], +[0,-172,-6,-289,-6199,-3974,-36,-2,-287,-120,-176,-2489,-153,-307], [1,3,7616], [0,7617,7618,248,10], -[0,-2043], -[0,-2391,-2006,-12600,-2019,-2410], +[0,-873], +[0,-172,-6,-6199,-36,-2], [1,3,7620], [0,0,7621,7622,4], -[0,-526,-527,-528,-534,-9887,-9888,-556,-559,-560,-563,-566,-932,-941,-956,-958,-962,-969,-1001,-1306,-9413,-12539,-1471, --1476,-1479,-1482,-1483,-1490,-1492,-1654,-2006,-2019,-2040,-2043,-2074,-12602,-12603,-12604,-2501], -[0,-2006,-2074,-3122], +[0,-179,-162,-91,-96,-5765,-5766,-580,-321,-666,-2979,-429,-1,-1221,-485,-9,-148,-64,-338,-1422,-5679,-6184,-79,-588,-213, +-187,-414,-637,-517,-3,-6,-36,-872,-873,-327,-13104,-13105,-13106,-18], +[0,-6,-327,-442], [1,3,7624], [0,7625,28,7,4], -[0,-594,-1415,-865,-932,-2177,-1889,-1966,-2114,-2501,-1077,-1080,-656,-533,-778,-23,-1041,-2163,-2318,-534,-635,-1426, --2275,-366,-866,-2041,-1908,-2015,-1918,-2233,-1352,-1927,-2010,-2116,-2505,-1331,-1428,-10049,-2335,-561,-1903,-2526, --941,-1643,-2507,-779,-542,-661,-2695], +[0,-2310,-8,-210,-1,-16,-38,-392,-126,-18,-41,-1950,-430,-86,-141,-11,-271,-467,-559,-96,-301,-1660,-154,-1910,-945,-686, +-493,-1255,-3084,-880,-964,-805,-2409,-2420,-173,-342,-1086,-3857,-397,-1607,-1451,-3130,-1221,-374,-2455,-1214,-2976, +-1613,-2020], [1,3,7627], [0,7628,7629,7630,11], -[0,-44,-3772,-3778,-3819,-3024,-1624,-1967,-2055,-3820], -[0,-5131,-915,-2760,-5116,-2006,-2019], -[0,-12605,-4053,-3962,-12606,-2006,-3159,-6750,-3160], +[0,-90,-2534,-1147,-2543,-1487,-1976,-121,-687,-3243], +[0,-4876,-431,-1720,-3355,-6,-36], +[0,-6200,-570,-352,-3975,-6,-106,-1546,-102], [1,3,7632], [0,7633,7634,7635,5], -[0,-682,-12607,-1553,-2113], -[0,-21,-23,-32,-26,-39,-40,-41,-12608,-407,-409,-410,-3037,-518,-527,-533,-534,-557,-778,-823,-824,-923,-932,-958,-969, --1004,-12609,-1168,-1243,-1344,-1415,-1419,-1440,-1455,-1534,-1812,-1908,-1942,-1992,-2006,-2019,-2082,-2210,-12610, --2275,-2417,-2501,-2503,-2505,-12611], -[0,-12612,-12613,-12614,-12615,-12449,-3159], +[0,-254,-13107,-1972,-1117], +[0,-48,-11,-156,-209,-449,-21,-132,-6201,-153,-120,-307,-5,-157,-162,-86,-96,-721,-141,-323,-150,-1402,-1,-9,-64,-40, +-13108,-32,-310,-10,-8,-176,-968,-859,-17,-1247,-493,-4,-684,-6,-36,-346,-27,-13109,-154,-1130,-18,-93,-173,-13110], +[0,-6202,-1589,-13111,-13112,-1359,-106], [1,3,7637], [0,7638,7639,7640,5], -[0,-12616,-3081,-12617,-461,-6426,-507,-5223,-639,-684,-12618,-703,-12619,-748,-753,-8245,-12620,-925,-930,-931,-989, --11676,-5504,-12621,-3649,-1107,-12622,-1284,-1395,-12623,-12624,-12625,-12626,-12627,-12628,-12629,-12630,-1496,-12631, --1548,-9160,-1606,-12632,-3446,-1816,-1955,-1967,-12633,-12634,-2015,-2018,-12635,-12636,-12637,-2026,-5351,-2066,-2093, --12638,-2335,-8299,-12639,-2429,-2505, --2508], -[0,-21,-23,-26,-40,-6056,-41,-42,-407,-409,-12640,-12641,-12486,-12642,-426,-12643,-3136,-12644,-3044,-12645,-3037,-3803, --3040,-3052,-12646,-12647,-3046,-12648,-3806,-427,-428,-527,-528,-533,-534,-778,-12310,-12649,-12650,-12651,-932,-12652, --948,-952,-958,-962,-969,-1041,-1077,-1344,-1415,-12653,-1534,-1623,-1942,-1992,-2006,-2019,-2052,-12654,-2275,-2410, --2437,-2501, --2503], -[0,-2006,-4146,-4900,-4901,-856,-3671,-3262,-3095,-3098], +[0,-13113,-1727,-13114,-202,-1827,-280,-2616,-1051,-1614,-13115,-302,-13116,-508,-158,-1863,-13117,-948,-408,-2339,-786, +-2265,-1159,-13118,-499,-28,-13119,-1957,-1082,-13120,-13121,-13122,-13123,-13124,-13125,-13126,-13127,-490,-6203,-23, +-5622,-2379,-13128,-1742,-325,-436,-121,-13129,-13130,-1255,-3090,-13131,-13132,-13133,-3093,-3375,-1257,-274,-13134, +-397,-5469,-13135,-348,-173, +-524], +[0,-48,-11,-209,-21,-1167,-132,-137,-153,-120,-13136,-13137,-6179,-13138,-320,-6204,-29,-13139,-143,-13140,-5,-1006,-47, +-89,-13141,-13142,-526,-13143,-2540,-22,-19,-162,-91,-86,-96,-141,-3960,-13144,-13145,-13146,-1,-13147,-246,-847,-9,-148, +-64,-271,-41,-10,-8,-13148,-17,-259,-4,-684,-6,-36,-287,-13149,-154,-2,-438,-18, +-93], +[0,-6,-904,-2090,-2588,-42,-399,-116,-131,-127], [1,3,7642], [0,7643,7644,7645,4], -[0,-44,-401,-3140,-1967], -[0,-23,-38,-40,-41,-190,-6486,-3326,-350,-351,-3561,-3266,-409,-3136,-4647,-3037,-3040,-3052,-3714,-553,-2745,-932,-940, --969,-970,-4814,-1110,-1415,-1419,-1722,-1772,-1942,-2006,-2019,-2127,-2195,-2200,-5091,-2375,-2379,-2410,-2411], -[0,-5092,-3264,-5093,-5094,-3214,-2006,-12655,-3839,-12656,-2410], +[0,-90,-4087,-997,-121], +[0,-11,-170,-21,-132,-50,-1543,-207,-77,-62,-237,-206,-120,-29,-614,-5,-47,-89,-1748,-776,-1718,-1,-12,-64,-186,-911,-56, +-8,-176,-197,-345,-4,-6,-36,-14,-276,-394,-4869,-57,-33,-2,-84], +[0,-266,-31,-1788,-1789,-45,-6,-13150,-265,-13151,-2], [1,3,7647], [0,7648,0,7649,6], -[0,-1033], -[0,-12657,-2006,-2363,-826,-12658,-2051], +[0,-1636], +[0,-13152,-6,-418,-627,-13153,-4296], [1,3,7651], [0,7652,0,7653,8], -[0,-2029,-2166], -[0,-2006,-2034,-12659], +[0,-437,-987], +[0,-6,-235,-13154], [1,3,7655], [0,108,7656,7657,5], -[0,-12660,-11184,-234,-405,-3037,-3040,-3052,-440,-756,-795,-2926,-1534,-1889,-1942,-2006,-2019,-2391,-2410,-2466,-12661], -[0,-2006,-4127,-12662,-3159,-2053,-5737,-12663,-12664,-12665], +[0,-13155,-5989,-1200,-2964,-5,-47,-89,-506,-55,-483,-3156,-17,-38,-4,-6,-36,-172,-2,-104,-13156], +[0,-6,-1761,-3976,-106,-2415,-1328,-13157,-6205,-2924], [1,3,7659], [0,7660,7661,7662,5], -[0,-12666,-12667], -[0,-589,-633,-647,-710,-12668,-3346,-913,-12669,-923,-932,-12670,-1127,-1132,-10258,-1134,-7849,-1137,-1144,-12671,-10265, --12672,-1417,-1813,-1859,-6184,-12673,-2066,-9266,-2359,-2410,-2416,-12322,-2493], -[0,-2006,-4146,-8530,-6107], +[0,-13158,-13159], +[0,-110,-60,-1385,-455,-13160,-2500,-1944,-13161,-1402,-1,-6206,-54,-164,-3867,-240,-5375,-584,-175,-13162,-5811,-13163, +-489,-551,-867,-1821,-13164,-1257,-3772,-161,-2,-112,-6159,-1710], +[0,-6,-904,-2794,-1168], [1,3,7664], [0,7665,0,7666,10], -[0,-44,-860,-1580,-1967], -[0,-2006,-12546,-8111,-12674,-5176,-775,-12675], +[0,-90,-1626,-1434,-121], +[0,-6,-3972,-5428,-13165,-500,-24,-13166], [1,3,7668], [0,7669,7670,7671,6], -[0,-703,-1967,-860,-1580,-44,-2030], -[0,-1415,-1344,-2006,-2490,-932,-2125,-2127,-708,-1889,-2501,-1059,-1103,-1942,-767,-1361,-1978,-2019,-21,-533,-709,-778, --23,-1041,-1534,-1891,-2503,-518,-528,-534,-1952,-2043,-2275,-1908,-39,-11942,-12676,-2044,-40,-6056,-7748,-2505,-41, --12677,-951,-969,-12678,-1331,-2052,-2128,-2143,-12679,-2138,-940,-956,-962,-967,-2131,-12680,-2137,-1017,-3840,-38, --6057, --12681,-26,-3204,-553], -[0,-2006,-3476,-3159,-9614,-4108,-12682,-12683,-12684,-4002,-12685,-5147,-12129,-6445,-4672,-9133], +[0,-302,-121,-1626,-1434,-90,-1460], +[0,-8,-10,-6,-606,-1,-7,-14,-149,-38,-18,-412,-340,-4,-26,-514,-160,-36,-48,-86,-1054,-141,-11,-271,-17,-682,-93,-157,-91, +-96,-435,-873,-154,-493,-449,-1894,-13167,-557,-21,-1167,-3653,-173,-132,-13168,-783,-64,-13169,-342,-287,-275,-807, +-13170,-877,-12,-485,-148,-25,-466,-6207,-347,-851,-1007,-170,-5061, +-13171,-209,-398,-776], +[0,-6,-527,-106,-1580,-1301,-6208,-6209,-6210,-752,-13172,-2609,-3956,-3514,-1774,-2822], [1,3,7673], [0,7674,7675,7676,10], -[0,-2346,-2054], -[0,-1654,-1452,-2177,-6398,-633,-725,-12686], -[0,-2006,-633,-6340,-4146,-3756,-3862,-6408], +[0,-469,-3097], +[0,-3,-119,-16,-2687,-60,-309,-13173], +[0,-6,-60,-2677,-904,-278,-107,-536], [1,3,7678], [0,7679,7680,7681,5], -[0,-44,-2997,-682,-1967,-2804,-2055], -[0,-21,-23,-32,-34,-35,-36,-3204,-40,-41,-4757,-4762,-4754,-12687,-4749,-407,-409,-410,-3040,-528,-533,-534,-561,-620, --726,-740,-10524,-767,-12688,-879,-888,-932,-933,-940,-956,-958,-962,-969,-4756,-12689,-1415,-1419,-1449,-1455,-1637, --1942,-2006,-2019,-2022,-12690,-2043,-2052,-2410,-2501], -[0,-2058,-620,-2006,-3095,-3098,-3159,-3160], +[0,-90,-820,-254,-121,-2471,-687], +[0,-48,-11,-156,-1039,-931,-300,-398,-21,-132,-1515,-1777,-1154,-6211,-1019,-153,-120,-307,-47,-91,-86,-96,-1607,-453, +-284,-385,-3885,-26,-13174,-1063,-337,-1,-255,-12,-485,-9,-148,-64,-2582,-13175,-8,-176,-78,-859,-677,-4,-6,-36,-3091, +-13176,-873,-287,-2,-18], +[0,-4298,-453,-6,-131,-127,-106,-102], [1,3,7683], [0,7684,7685,7,4], -[0,-3950], -[0,-4298,-4300,-3952,-5866,-428,-652,-948,-2319,-2379,-2386,-2410], +[0,-2547], +[0,-755,-756,-3257,-2650,-19,-43,-246,-85,-33,-561,-2], [1,3,7687], [0,7688,118,7689,8], -[0,-6902,-6904,-6990,-2400,-8803], -[0,-4055,-2059,-1838,-6656,-1076,-11998,-6994,-5897,-6811], +[0,-3560,-2718,-5228,-215,-2797], +[0,-108,-597,-166,-128,-303,-2269,-2180,-478,-1837], [1,3,7691], [0,7692,14,7693,4], -[0,-8341,-2060,-2400], -[0,-4055,-2059,-1838,-6656,-1076,-11998,-6994,-5897,-5573,-8804,-1047,-5504,-8805,-8806,-7282,-5572,-2114,-8807,-6370, --7420,-7421,-2487,-8808,-1847], +[0,-3709,-1690,-215], +[0,-108,-597,-166,-128,-303,-2269,-2180,-478,-655,-2798,-339,-1159,-2799,-2223,-766,-532,-126,-1573,-1170,-1027,-427,-741, +-2224,-249], [1,3,7695], [0,7696,7697,7698,9], -[0,-458,-640,-997,-1958,-6383], -[0,-23,-6065,-5584,-3244,-350,-6572,-351,-357,-633,-652,-928,-12691,-932,-943,-958,-965,-968,-1874,-1942,-2127,-9701, --2319,-12692,-2322,-2323,-2426,-2501,-2503], -[0,-8800,-5827,-11441], +[0,-1203,-294,-410,-286,-2683], +[0,-11,-2148,-1326,-290,-77,-2697,-62,-623,-60,-43,-87,-13177,-1,-83,-9,-115,-67,-391,-4,-14,-2850,-85,-13178,-39,-312, +-289,-18,-93], +[0,-1351,-252,-2260], [1,3,7700], [0,0,7701,7702,8], -[0,-2319,-1351], -[0,-2063,-12693,-6656], +[0,-85,-459], +[0,-1256,-13179,-128], [1,3,7704], [0,0,0,7705,9], -[0,-2063,-12397,-9845,-1965,-3969,-5110,-687,-3975,-3957,-12694,-10394,-4116,-6301], +[0,-1256,-2919,-1886,-495,-2061,-1790,-37,-445,-316,-6212,-3875,-825,-3495], [0,68,15,16,5], [1,3,7708], [0,7709,7710,7711,5], -[0,-5223,-987,-2231,-12695,-2387], -[0,-23,-25,-40,-12696,-3036,-3621,-3037,-428,-932,-12670,-12697,-1107,-1534,-1654,-1942,-9880,-2410], -[0,-3272,-9306,-12698,-9308,-4132,-9307,-6747,-12699], +[0,-2616,-1067,-130,-3977,-44], +[0,-11,-405,-21,-13180,-471,-71,-5,-19,-1,-6206,-13181,-28,-17,-3,-4,-5763,-2], +[0,-363,-5652,-13182,-3777,-400,-3776,-763,-13183], [0,67,15,16,8], [1,3,7714], [0,7715,125,7716,4], -[0,-2114], -[0,-4792,-5932,-5195,-8109,-12700], +[0,-126], +[0,-425,-831,-1802,-2208,-13184], [1,3,7718], [0,7719,0,7720,4], -[0,-44,-12701,-1033,-1311,-2030,-5746], -[0,-2006,-12702,-3098,-12703,-3481,-8113,-12704], +[0,-90,-13185,-1636,-963,-1460,-3435], +[0,-6,-13186,-127,-13187,-1141,-1030,-3978], [1,3,7722], [0,124,27,7723,8], -[0,-7421,-12705], +[0,-427,-13188], [1,3,7725], [0,7726,0,7727,6], -[0,-12706,-12707,-12708,-12709,-12710], -[0,-2071], +[0,-13189,-13190,-13191,-13192,-13193], +[0,-688], [1,3,7729], [0,7730,7731,150,10], -[0,-3544,-3786,-1610,-3788,-1955,-2223,-1885,-863,-682,-1653,-1967,-3790,-3791,-3787,-3793,-996,-3789,-1848,-3792,-2680, --12711], -[0,-1992,-2435,-1415,-1652,-1344,-2006,-2387,-915,-932,-2125,-753,-795,-1442,-1821,-2195,-2375,-2379,-3811,-2501,-1942, --2019,-778,-2214,-2410,-3035,-3136,-3800,-3037,-3810,-2503,-3040,-3041,-1952,-2275,-3043,-3802,-3801,-3803,-3805,-3046, --2760,-3808,-3809,-4773,-3797,-3052,-3140,-2278,-3806,-585,-2505,-3799,-748,-969,-1331,-958,-3798,-1419,-2509,-3804,-428, --970,-740, --3794,-1067,-427,-12712], +[0,-1143,-4631,-227,-2536,-436,-739,-1450,-3001,-254,-1978,-121,-4634,-4635,-4632,-4636,-951,-4633,-681,-3240,-2460, +-13194], +[0,-684,-200,-8,-1240,-10,-6,-44,-431,-1,-7,-158,-483,-101,-803,-276,-57,-33,-4643,-18,-4,-36,-141,-328,-2,-109,-29,-2538, +-5,-4642,-93,-47,-419,-435,-154,-1278,-2050,-3241,-1006,-4641,-526,-1720,-1293,-2541,-1516,-4638,-89,-997,-882,-2540, +-1049,-173,-4640,-508,-64,-342,-9,-4639,-176,-1712,-2539,-19,-186,-385, +-2537,-1639,-22,-6213], [1,3,7733], [0,7734,7735,7736,4], -[0,-12713,-12714], -[0,-2006,-2501,-2019,-2410,-3040,-3052,-3859,-12715], -[0,-2072,-3438,-3690,-4847,-856,-12716,-858,-12717], +[0,-13195,-13196], +[0,-6,-18,-36,-2,-47,-89,-3245,-13197], +[0,-4299,-697,-100,-571,-42,-13198,-1625,-13199], [1,3,7738], [0,0,7739,7740,5], -[0,-23,-3037,-427,-428,-767,-4780,-932,-941,-948,-958,-969,-970,-1107,-12718,-1942,-2125,-2153,-2391,-2410,-2469], -[0,-2074,-4782,-4125,-12719,-5112,-1361,-12517,-12516,-12720,-1062,-12721], +[0,-11,-5,-22,-19,-26,-4802,-1,-1221,-246,-9,-64,-186,-28,-6214,-4,-7,-496,-172,-2,-30], +[0,-327,-3313,-1302,-13200,-759,-514,-2271,-3968,-6215,-1228,-13201], [1,3,7742], [0,7743,7744,7745,5], -[0,-12722,-12723], -[0,-12724,-12725,-12726,-1344,-1534,-1771,-1942,-2466,-2469,-2541], -[0,-1062,-2074,-10951,-12727], +[0,-13202,-13203], +[0,-13204,-13205,-6216,-10,-17,-65,-4,-104,-30,-34], +[0,-1228,-327,-5954,-13206], [1,3,7747], [0,7748,7749,7750,5], -[0,-1548,-2029,-924,-1384,-1398,-1967,-44,-1311], -[0,-2359,-1415,-1344,-2006,-2074,-932,-2125,-708,-2501,-1059,-1942,-767,-1361,-2019,-21,-821,-2214,-23,-12728,-1534,-2040, --2503,-528,-534,-12729,-40,-41,-540,-951,-969,-6040,-2052,-958,-12726,-12730,-956,-962,-941,-2502,-970,-5295,-12416,-38, --26,-3203], -[0,-2006,-3476,-1062,-2074,-2040,-2076,-4053,-11313], +[0,-23,-437,-4163,-674,-1656,-121,-90,-963], +[0,-161,-8,-10,-6,-327,-1,-7,-149,-18,-412,-4,-26,-514,-36,-48,-780,-328,-11,-13207,-17,-872,-93,-91,-96,-13208,-21,-132, +-1604,-783,-64,-3474,-287,-9,-6216,-13209,-485,-148,-1221,-523,-186,-705,-2920,-170,-209,-998], +[0,-6,-527,-1228,-327,-872,-4300,-570,-2258], [1,3,7752], [0,7753,7754,7755,6], -[0,-819], -[0,-527,-537,-11899,-559,-664,-708,-932,-933,-958,-962,-969,-1339,-1344,-1654,-1788,-2074,-2125,-2127,-2128,-2131,-2137, --2143,-2210], -[0,-2074,-3444,-2077,-5401], +[0,-4143], +[0,-162,-1206,-3949,-321,-13,-149,-1,-255,-9,-148,-64,-413,-10,-3,-15,-327,-7,-14,-275,-466,-347,-807,-27], +[0,-327,-748,-4301,-356], [1,3,7757], [0,7758,7759,7760,10], -[0,-12731], -[0,-23,-38,-39,-40], -[0,-3214,-2074,-5401,-12732,-12733,-12734], +[0,-13210], +[0,-11,-170,-449,-21], +[0,-45,-327,-356,-13211,-13212,-13213], [1,3,7762], [0,0,7763,7764,5], -[0,-427,-428,-767,-932,-940,-1942,-2074,-2125,-2391,-2410,-2469], -[0,-2074,-12735,-5401,-12736,-1062], +[0,-22,-19,-26,-1,-12,-4,-327,-7,-172,-2,-30], +[0,-327,-6217,-356,-13214,-1228], [1,3,7766], [0,0,7767,7768,4], -[0,-3035,-3621,-3037,-664,-824,-12737,-1168,-12738,-12739,-1231,-1243,-12740,-1259,-1654,-2410], -[0,-11313,-11872,-3214,-12741], +[0,-109,-71,-5,-13,-150,-13215,-32,-13216,-13217,-359,-310,-13218,-4199,-3,-2], +[0,-2258,-2908,-45,-13219], [1,3,7770], [0,0,7771,7772,8], -[0,-708,-1127,-1162,-1405,-6186,-1991,-2111], -[0,-5569,-5570,-3214,-4112,-3262,-3673], +[0,-149,-54,-789,-66,-2669,-1457,-416], +[0,-1021,-1160,-45,-474,-116,-611], [1,3,7774], [0,0,0,7775,4], -[0,-12742,-11997,-3262,-510], +[0,-13220,-1587,-116,-59], [1,3,7777], [0,7778,0,7779,6], -[0,-5334,-2087,-2090,-2427], -[0,-12743,-3272,-3264,-1838,-1958,-2083,-6233,-6231,-4132,-10919,-2427], +[0,-251,-1994,-736,-135], +[0,-2274,-363,-31,-166,-286,-377,-919,-447,-400,-1035,-135], [1,3,7781], [0,7782,7783,7784,5], -[0,-5334,-9581,-4264,-2766,-2427,-2429], -[0,-3037,-9586,-652,-12744,-1942,-2083,-2094,-2100,-2399,-2410,-2541], -[0,-2427,-2083,-12745,-3862,-10857,-10606,-3264], +[0,-251,-1578,-3286,-1483,-135,-348], +[0,-5,-1880,-43,-6218,-4,-377,-146,-261,-236,-2,-34], +[0,-135,-377,-1038,-107,-3904,-1584,-31], [1,3,7786], [0,7787,7788,7789,4], -[0,-5334,-9581,-2766,-12746,-2235,-2429], -[0,-3037,-9586,-652,-1942,-2083,-2094,-2100,-2399,-2410,-2541], -[0,-2427,-2083,-12745,-3862,-9589,-3264,-1599,-12747,-10606,-2435], +[0,-251,-1578,-1483,-13221,-1124,-348], +[0,-5,-1880,-43,-4,-377,-146,-261,-236,-2,-34], +[0,-135,-377,-1038,-107,-448,-31,-99,-13222,-1584,-200], [1,3,7791], [0,7792,7793,7794,11], -[0,-5334,-12748,-1618,-5204,-5205,-2427,-5356], -[0,-4228,-3037,-3040,-652,-932,-12749,-962,-969,-9602,-1942,-2094,-11167,-12750,-2410], -[0,-9589,-3264,-1599,-4147,-2083,-12745,-2427], +[0,-251,-13223,-862,-2611,-3363,-135,-1157], +[0,-2077,-5,-47,-43,-1,-3979,-148,-64,-1881,-4,-146,-2890,-3980,-2], +[0,-448,-31,-99,-2075,-377,-1038,-135], [1,3,7796], [0,7797,0,7798,5], -[0,-5334,-2586,-2427], -[0,-12743,-3272,-3264,-1838,-3862,-2083,-12745,-4132,-10919,-2427], +[0,-251,-1276,-135], +[0,-2274,-363,-31,-166,-107,-377,-1038,-400,-1035,-135], [1,3,7800], [0,7801,7802,7803,8], -[0,-5334,-1286,-5358], -[0,-3037,-652,-1942,-2090,-2094,-2098,-2100,-2101,-2399,-2410,-2427,-2429,-2541], -[0,-3264,-3862,-9591,-2083,-12745,-2427], +[0,-251,-1649,-502], +[0,-5,-43,-4,-736,-146,-599,-261,-806,-236,-2,-135,-348,-34], +[0,-31,-107,-3820,-377,-1038,-135], [1,3,7805], [0,7806,7807,7808,4], -[0,-5334,-3649,-4264,-1292,-2429], -[0,-3037,-652,-1942,-2083,-2094,-2100,-2399,-2410,-2541], -[0,-10857,-3264,-7231,-3862,-2083,-12745,-2222,-2427], +[0,-251,-499,-3286,-726,-348], +[0,-5,-43,-4,-377,-146,-261,-236,-2,-34], +[0,-3904,-31,-2736,-107,-377,-1038,-2430,-135], [1,3,7810], [0,7811,0,7812,6], -[0,-5334,-1290,-2427], -[0,-12743,-3272,-7644,-3264,-3862,-2083,-12745,-6233,-6231,-4132,-10919,-2427], +[0,-251,-1421,-135], +[0,-2274,-363,-713,-31,-107,-377,-1038,-919,-447,-400,-1035,-135], [1,3,7814], [0,7815,7816,7817,5], -[0,-12751,-305,-12752,-512,-6563,-680,-6869,-4236,-1376,-12753,-1566,-1641,-11656,-1805,-1816,-3547,-8874,-2177,-2654, --2426,-2436,-12754,-2551], -[0,-190,-12755,-3037,-932,-8339,-1110,-3781,-1498,-12756,-12757,-1942,-2094,-12758,-2323,-2410], -[0,-7641,-5887,-5890,-12759,-5889,-1105,-7661,-9845,-6657,-1764,-8403,-5737,-9244,-2091,-7737,-11729,-5550,-6818,-3673, --9318,-2177,-3862], +[0,-13224,-665,-13225,-1378,-5147,-481,-2717,-2078,-195,-13226,-1238,-344,-6048,-152,-325,-1497,-2803,-16,-313,-289,-2003, +-13227,-525], +[0,-50,-13228,-5,-1,-1866,-56,-1504,-799,-13229,-13230,-4,-146,-13231,-312,-2], +[0,-712,-830,-1815,-13232,-402,-545,-1558,-1886,-2701,-159,-769,-1328,-3768,-378,-2755,-2905,-267,-1339,-611,-715,-16, +-107], [1,3,7819], [0,7820,7821,7822,4], -[0,-1405,-1645,-1876,-2231,-2347], -[0,-932,-934,-958,-1127,-1168,-12760,-2125], -[0,-7841,-9219,-2231,-1405,-4005], +[0,-66,-92,-142,-130,-69], +[0,-1,-185,-9,-54,-32,-13233,-7], +[0,-68,-268,-130,-66,-823], [1,3,7824], [0,7825,0,7826,4], -[0,-2427,-4251,-2098,-5616], -[0,-12743,-3272,-7644,-1599,-10918,-1838,-1958,-2093,-6233,-6231,-4132,-10919,-2427], +[0,-135,-424,-599,-1811], +[0,-2274,-363,-713,-99,-929,-166,-286,-274,-919,-447,-400,-1035,-135], [1,3,7828], [0,7829,0,7830,11], -[0,-3190,-12761,-2093,-12762], -[0,-8425,-687,-1599,-10918,-2093,-2427], +[0,-1734,-13234,-274,-13235], +[0,-1569,-37,-99,-929,-274,-135], [1,3,7832], [0,7833,7834,7835,10], -[0,-4251,-10922,-10923,-2098,-5616,-2427], -[0,-3037,-652,-12744,-1942,-2093,-2094,-2100,-2267,-7699,-2399,-2410,-2541], -[0,-10604,-12763,-4329,-1105,-1599,-10918,-3862,-2093,-12764,-5552,-4002,-4109,-2427], +[0,-424,-2884,-3909,-599,-1811,-135], +[0,-5,-43,-6218,-4,-274,-146,-261,-395,-2754,-236,-2,-34], +[0,-5889,-13236,-2080,-545,-99,-929,-107,-274,-2275,-4950,-752,-3266,-135], [1,3,7837], [0,7838,7839,7840,4], -[0,-4251,-1287,-1619,-1290,-2427], -[0,-5334,-3037,-652,-10915,-2586,-1942,-2094,-4242,-2095,-4655,-2098,-2100,-12765,-4656,-2399,-2410,-5358,-2541], -[0,-7644,-3264,-1599,-10918,-3862,-2093,-12764,-6231,-2427], +[0,-424,-4205,-1101,-1421,-135], +[0,-251,-5,-43,-5947,-1276,-4,-146,-906,-522,-1772,-599,-261,-13237,-1773,-236,-2,-502,-34], +[0,-713,-31,-99,-929,-107,-274,-2275,-447,-135], [1,3,7842], [0,7843,7844,7845,9], -[0,-5358,-2427,-4251,-12766,-5356,-12767], -[0,-652,-932,-2093,-1942,-1874,-2094,-2410,-5334,-2101,-2090,-12750,-12749,-11167], -[0,-856,-5670,-12768,-3862,-2093,-12764,-2427], +[0,-502,-135,-424,-6219,-1157,-3981], +[0,-43,-1,-274,-4,-391,-146,-2,-251,-806,-736,-3980,-3979,-2890], +[0,-42,-2640,-13238,-107,-274,-2275,-135], [1,3,7847], [0,7848,0,7849,5], -[0,-4251,-1618,-10869,-2427], -[0,-12743,-3272,-1599,-10918,-1838,-3862,-2093,-12764,-4132,-10919,-2427], +[0,-424,-862,-2253,-135], +[0,-2274,-363,-99,-929,-166,-107,-274,-2275,-400,-1035,-135], [1,3,7851], [0,7852,7853,7854,9], -[0,-12769,-12770,-2095,-12771,-12772,-9514,-9515,-9516,-9517,-9518,-12773,-9519,-12774,-9520,-12775,-12776,-12777,-12778, --9524,-12779,-9527,-12780,-12781,-12782,-12783,-12784,-12785,-9528,-12786,-12787,-12788,-12789,-12790,-12791,-12792, --12793,-9532,-9533,-9534,-12794,-9535,-9536,-4995,-12795,-4656,-12796,-12797,-2427], -[0,-86,-3307,-932,-946,-1053,-1344,-1534,-1942,-2094,-2541], -[0,-1105,-6913,-2093], +[0,-6220,-13239,-522,-13240,-13241,-3803,-3804,-3805,-3806,-3807,-6221,-3808,-6222,-3809,-6223,-6224,-6225,-6226,-5702, +-6227,-3810,-6228,-6229,-6230,-6231,-6232,-6233,-3811,-6234,-13242,-6235,-6236,-6237,-6238,-6239,-6240,-3812,-3813,-3814, +-6241,-3815,-3816,-2095,-6242,-1773,-6243,-13243,-135], +[0,-49,-63,-1,-1404,-1638,-10,-17,-4,-146,-34], +[0,-545,-3561,-274], [1,3,7856], [0,7857,7858,7859,4], -[0,-12769,-2095,-4655,-9514,-9515,-9516,-9517,-12798,-9518,-12799,-12773,-9519,-12774,-9520,-12775,-12776,-12777,-9522, --12778,-12800,-12801,-12802,-12803,-12804,-12805,-12806,-12807,-12808,-12809,-12779,-12810,-9527,-12811,-12780,-12812, --12781,-12782,-12783,-12784,-12785,-9528,-12786,-12813,-12814,-12815,-12788,-12789,-12816,-12817,-12790,-12791,-12792, --12818,-12819,-12793,-9532,-9533,-9534,-12794,-9535,-9536,-4995,-12795, --5616,-4656,-9537,-12796,-12820,-2267,-2427], -[0,-1942,-2094,-2399,-2410,-2541], -[0,-6913,-2093,-12821], +[0,-6220,-522,-1772,-3803,-3804,-3805,-3806,-13244,-3807,-13245,-6221,-3808,-6222,-3809,-6223,-6224,-6225,-5701,-6226, +-13246,-13247,-13248,-13249,-13250,-13251,-13252,-13253,-13254,-13255,-6227,-13256,-3810,-13257,-6228,-13258,-6229,-6230, +-6231,-6232,-6233,-3811,-6234,-13259,-13260,-13261,-6235,-6236,-13262,-13263,-6237,-6238,-6239,-13264,-13265,-6240,-3812, +-3813,-3814,-6241,-3815,-3816,-2095,-6242, +-1811,-1773,-5703,-6243,-13266,-395,-135], +[0,-4,-146,-236,-2,-34], +[0,-3561,-274,-13267], [1,3,7861], [0,7862,7863,7864,8], -[0,-5334,-4251,-1619,-2427,-5358], -[0,-3037,-652,-1942,-2089,-2090,-2094,-2098,-2100,-5616,-2399,-2410,-2541], -[0,-9589,-3264,-1599,-10918,-3862,-12745,-2083,-12764,-2093,-2427], +[0,-251,-424,-1101,-135,-502], +[0,-5,-43,-4,-2416,-736,-146,-599,-261,-1811,-236,-2,-34], +[0,-448,-31,-99,-929,-107,-1038,-377,-2275,-274,-135], [1,3,7866], [0,7867,7868,7869,6], -[0,-503,-12822], -[0,-5514,-589,-8630,-932,-953,-985,-1202,-1304,-1610,-1654,-1788,-2127,-2133,-2137,-2140,-2184], -[0,-8630,-1599,-3437,-1838,-3215,-1958,-2102,-7650,-4065,-5554], +[0,-1204,-13268], +[0,-243,-110,-1192,-1,-1633,-370,-671,-372,-227,-3,-15,-14,-1118,-347,-229,-809], +[0,-1192,-99,-1000,-166,-74,-286,-1116,-926,-2069,-193], [1,3,7871], [0,0,125,7872,5], -[0,-1168,-8109,-7693,-3866], +[0,-32,-2208,-2753,-4659], [1,3,7874], [0,7875,7876,7877,4], -[0,-668,-1107,-2550], -[0,-190,-652,-664,-665,-932,-1654], -[0,-8276,-5554,-7002,-6656], +[0,-20,-28,-98], +[0,-50,-43,-13,-239,-1,-3], +[0,-1189,-193,-3568,-128], [1,3,7879], [0,7880,7881,7882,10], -[0,-1983,-11197,-2446,-1015,-12823,-6397,-12824,-1069,-1641,-12825,-2155,-2364,-12826,-12827,-12828,-12829,-12830,-8956, --1856,-1459], -[0,-1788,-2322,-1471,-12831,-2125,-708,-615,-2250,-756,-12832,-8375,-633,-641,-9573,-1476,-2188,-1472,-1860,-8958,-1484], -[0,-1334,-5493,-2444,-3590], +[0,-465,-2891,-125,-432,-13269,-5112,-13270,-628,-344,-13271,-497,-1129,-13272,-13273,-13274,-13275,-6244,-5587,-1449, +-1088], +[0,-15,-39,-79,-13276,-7,-149,-114,-97,-55,-6245,-3711,-60,-1612,-5714,-588,-1123,-860,-640,-3749,-2365], +[0,-103,-654,-136,-208], [1,3,7884], [0,7885,7886,7887,4], -[0,-615,-2364,-12833,-12834], -[0,-664,-1168,-668,-1548,-2125,-2105,-1231,-617,-1197,-2150,-1220,-11117,-1973], -[0,-2533,-1334,-1342,-1961,-2105,-11301,-12835,-615], +[0,-114,-1129,-6246,-6247], +[0,-13,-32,-20,-23,-7,-111,-359,-163,-513,-986,-961,-2888,-2408], +[0,-743,-103,-388,-171,-111,-2893,-6248,-114], [1,3,7889], [0,7890,7891,7892,9], -[0,-12834,-12833,-2364], -[0,-617,-664,-668,-1168,-11117,-1197,-1220,-1231,-1548,-1973,-2105,-2125,-2150], -[0,-2533,-1334,-1342,-1961,-2105,-11301,-12835,-5269], +[0,-6247,-6246,-1129], +[0,-163,-13,-20,-32,-2888,-513,-961,-359,-23,-2408,-111,-7,-986], +[0,-743,-103,-388,-171,-111,-2893,-6248,-501], [1,3,7894], [0,0,7895,7,10], -[0,-2379,-2410,-710], +[0,-33,-2,-455], [1,3,7897], [0,0,7898,7899,4], -[0,-5856], -[0,-4792,-9409,-12836], +[0,-2649], +[0,-425,-2838,-13277], [1,3,7901], [0,0,7902,7903,5], -[0,-349,-409,-3044,-3040,-3052,-3714,-427,-12837,-428,-12838,-932,-969,-12839,-1449,-1548,-1565,-1624,-12840,-12718,-1942, --2006,-2019,-2040,-2125,-2195,-2391,-2410,-2469], -[0,-2006,-2074], +[0,-1909,-120,-143,-47,-89,-1748,-22,-6249,-19,-13278,-1,-64,-13279,-78,-23,-1667,-1976,-13280,-6214,-4,-6,-36,-872,-7, +-276,-172,-2,-30], +[0,-6,-327], [1,3,7905], [0,0,7906,7907,4], -[0,-528,-757,-932,-1412,-1413,-1471,-1475,-1479,-1481,-3569,-1486,-1488,-1490,-1491,-1962,-2127,-2141,-2410], -[0,-12841,-10095,-12523,-2444,-3323,-4865,-3582,-6989], +[0,-91,-582,-1,-196,-373,-79,-138,-213,-389,-2041,-731,-798,-637,-676,-1685,-14,-1260,-2], +[0,-6250,-2248,-3970,-136,-351,-94,-567,-1549], [1,3,7909], [0,7910,7911,7912,10], -[0,-12842,-7437,-12843], -[0,-6455,-2319,-2359,-2322,-887,-932,-1650,-2125,-2177,-12844,-1777,-1365,-1795,-8569,-2156,-5834], -[0,-2114,-4792,-3966,-3551], +[0,-13281,-3610,-13282], +[0,-2691,-85,-161,-39,-1398,-1,-72,-7,-16,-6251,-273,-212,-1447,-3728,-189,-244], +[0,-126,-425,-144,-365], [1,3,7914], [0,0,14,7915,5], -[0,-4792,-2114,-1847,-3551,-8388,-6546,-6024], +[0,-425,-126,-249,-365,-1868,-5144,-657], [1,3,7917], [0,7918,0,7919,10], -[0,-12845,-742,-1543,-1889,-2231], -[0,-2501,-5932,-775,-6811,-6043,-2114,-2435,-2162,-9358,-6656], +[0,-13283,-457,-732,-38,-130], +[0,-18,-831,-24,-1837,-5057,-126,-200,-80,-3781,-128], [1,3,7921], [0,7922,7923,7924,5], -[0,-12846,-3780,-1077,-1276,-1442,-12847,-2446], -[0,-21,-23,-5870,-26,-33,-36,-5584,-39,-40,-44,-86,-3531,-3470,-3471,-519,-523,-528,-539,-541,-617,-664,-12848,-756, --12310,-834,-4088,-932,-12849,-12850,-958,-963,-964,-12851,-966,-968,-971,-12852,-972,-973,-978,-1004,-12853,-1344,-1444, --1457,-1547,-1654,-1656,-12854,-1788,-2174,-12855,-2293,-12856], -[0,-3960,-489,-3262,-856,-12857,-3636,-12858,-3691,-3690,-1334], +[0,-3982,-2049,-41,-247,-101,-13284,-125], +[0,-48,-11,-829,-209,-578,-300,-1326,-449,-21,-90,-49,-4578,-297,-298,-51,-194,-91,-333,-1047,-163,-13,-13285,-55,-3960, +-203,-4699,-1,-13286,-13287,-9,-211,-256,-13288,-75,-67,-784,-13289,-724,-2340,-151,-40,-13290,-10,-4222,-3056,-1095,-3, +-974,-13291,-15,-122,-13292,-123,-13293], +[0,-569,-1376,-116,-42,-13294,-1145,-13295,-422,-100,-103], [1,3,7926], [0,7927,7928,7929,4], -[0,-1983,-788,-12859,-1640,-1801,-1867,-2178,-12860,-2446,-1548,-2177,-2454,-11983,-1582,-1070,-5397,-508,-8541,-12830, --12861,-6456,-12862], -[0,-1788,-1816,-664,-1107,-1654,-2210,-932,-1650,-2125,-1376,-1754,-1942,-756,-2451,-12863,-8549,-1939,-1972,-856,-12864, --12865,-960,-940,-967], -[0,-3817,-3161,-1004,-12866], +[0,-465,-779,-13296,-260,-680,-1250,-808,-6252,-125,-23,-16,-3126,-6105,-434,-955,-2632,-2299,-5532,-6244,-13297,-5125, +-13298], +[0,-15,-325,-13,-28,-3,-27,-1,-72,-7,-195,-679,-4,-55,-439,-13299,-3726,-234,-181,-42,-13300,-13301,-180,-12,-25], +[0,-1752,-53,-40,-13302], [1,3,7931], [0,7932,83,7,4], -[0,-1983,-2536,-2548,-1351], +[0,-465,-565,-262,-459], [1,3,7934], [0,7935,251,7936,8], -[0,-9050,-2202], -[0,-1000,-12867,-1958,-11998,-12868,-12869,-12870,-12871,-12872,-10018,-687,-5564,-5514,-6713,-4110,-3974,-4000,-3975, --5550,-3958], +[0,-2820,-879], +[0,-849,-13303,-286,-2269,-3983,-6253,-13304,-13305,-6254,-5792,-37,-2134,-243,-5164,-901,-178,-201,-445,-267,-299], [1,3,7938], [0,7939,0,7940,8], -[0,-615], -[0,-7685,-12873,-12874,-12875], +[0,-114], +[0,-403,-13306,-13307,-13308], [1,3,7942], [0,0,7943,7,5], -[0,-8959,-1405,-2322], +[0,-1873,-66,-39], [1,3,7945], [0,7946,7947,7948,5], -[0,-932,-3414], -[0,-3037,-1003,-1654,-1788,-2379,-2410], -[0,-6137,-6138,-4215,-5396,-3551,-5119,-4004,-12876,-4676,-8959,-4792], +[0,-1,-4556], +[0,-5,-411,-3,-15,-33,-2], +[0,-2154,-2155,-317,-706,-365,-401,-76,-13309,-1775,-1873,-425], [1,3,7950], [0,0,7951,7952,4], -[0,-3415,-708,-12877,-12878,-11961,-12879,-1552,-12880,-12881,-1993,-2250,-2319,-2384], -[0,-7208,-7369,-3589,-702,-6351,-6545,-7371,-7372,-7373,-7374,-7375,-12882,-12883,-12877,-12884,-5922,-6187,-12885,-12886, --12887,-12888,-12889,-12878,-12890], +[0,-3202,-149,-3984,-3985,-3950,-13310,-1096,-13311,-13312,-643,-97,-85,-82], +[0,-426,-2189,-1144,-507,-709,-1335,-838,-1851,-2190,-2741,-2191,-13313,-6255,-3984,-13314,-535,-574,-6256,-13315,-13316, +-6257,-6258,-3985,-13317], [1,3,7954], [0,7955,7956,7957,4], -[0,-1107,-12891], -[0,-3037,-1650,-1942,-2319,-2386,-2402], -[0,-6695,-12892,-12893,-6694,-7421,-687,-7418,-7371], +[0,-28,-13318], +[0,-5,-72,-4,-85,-561,-124], +[0,-1545,-6259,-6260,-659,-427,-37,-2743,-838], [1,3,7959], [0,7960,7961,7962,4], -[0,-1696,-3846,-6521], -[0,-1412,-12894,-12895,-12896], -[0,-12897,-11189,-12898,-10394,-9711,-6527,-12899,-11321,-2126,-5566,-12900,-12901,-12902,-12903,-712], +[0,-801,-4651,-3526], +[0,-196,-6261,-13319,-13320], +[0,-13321,-5990,-2925,-3875,-2242,-292,-13322,-1357,-4309,-3416,-13323,-13324,-6262,-13325,-217], [1,3,7964], [0,202,7965,7966,4], -[0,-6779,-11174,-6780,-6778,-6777,-6776,-190,-4106,-3115,-12904,-5053,-4066,-6429,-350,-4062,-351,-3561,-3266,-3267,-4785, --12905,-3621,-3037,-8523,-3199,-9146,-12906,-461,-12907,-6426,-639,-644,-679,-726,-753,-767,-12908,-923,-927,-932,-940, --967,-978,-980,-1054,-12909,-1077,-4706,-1110,-1344,-4788,-1534,-4789,-1588,-1623,-1654,-1753,-12910,-1788,-4916,-1863, --1864,-2851, --1942,-1944,-1948,-1951,-2111,-2127,-2134,-2177,-2200,-2202,-2231,-2234,-2314,-2334,-2387,-2410,-2411,-2466,-2468,-2476, --2478,-5627,-12911,-2551], -[0,-3209,-7882,-12912,-3184,-7176], +[0,-3550,-5988,-3551,-5174,-3549,-3548,-50,-1300,-1729,-13326,-3348,-530,-2165,-77,-238,-62,-237,-206,-330,-758,-13327, +-71,-5,-662,-140,-2823,-13328,-202,-13329,-1827,-1051,-1384,-117,-284,-158,-26,-6263,-1402,-1630,-1,-12,-25,-151,-785, +-1227,-13330,-41,-4785,-56,-10,-2585,-17,-2089,-296,-259,-3,-285,-13331,-15,-1316,-167,-326,-1724, +-4,-1113,-520,-871,-416,-14,-876,-16,-394,-879,-130,-147,-1702,-177,-44,-2,-84,-104,-817,-73,-990,-1531,-13332,-525], +[0,-381,-2763,-6264,-349,-1844], [1,3,7968], [0,7969,7970,7971,4], -[0,-3341,-2145], -[0,-23,-3840,-33,-38,-40,-639,-932,-940,-967,-1344,-1534,-1654,-1942,-2127,-2129,-2133,-2231,-2234], -[0,-12913,-525,-4795,-3184], +[0,-1138,-878], +[0,-11,-1007,-578,-170,-21,-1051,-1,-12,-25,-10,-17,-3,-4,-14,-985,-1118,-130,-147], +[0,-770,-281,-446,-349], [1,3,7973], [0,7974,7975,7,11], -[0,-639,-2145], -[0,-932,-1654,-2127], +[0,-1051,-878], +[0,-1,-3,-14], [1,3,7977], [0,7978,7979,7980,5], -[0,-12914,-2145], -[0,-6429,-932,-1001,-1654,-1788,-2125,-2127,-12915,-12916], -[0,-2127,-12913,-3214,-3184,-3209,-3485,-12917,-7416], +[0,-13333,-878], +[0,-2165,-1,-338,-3,-15,-7,-14,-13334,-3986], +[0,-14,-770,-45,-349,-381,-1001,-13335,-2192], [1,3,7982], [0,7983,7984,7,4], -[0,-989,-4788,-1588,-2114,-2145], -[0,-23,-40,-43,-461,-932,-958,-1344,-1534,-4789,-1654,-1942,-4790,-2127,-2128,-2133,-2137,-2200,-2231,-2234,-2410], +[0,-786,-2585,-296,-126,-878], +[0,-11,-21,-174,-202,-1,-9,-10,-17,-2089,-3,-4,-4805,-14,-275,-1118,-347,-394,-130,-147,-2], [1,3,7986], [0,7987,7988,7989,4], -[0,-1588], -[0,-22,-8355,-12918,-426,-3037,-3040,-652,-2127,-2410], -[0,-12913,-2410,-4160,-12919], +[0,-296], +[0,-505,-1867,-13336,-320,-5,-47,-43,-14,-2], +[0,-770,-2,-3274,-13337], [1,3,7991], [0,7992,7993,7,11], -[0,-2145], -[0,-932,-958,-1344,-1534,-1654,-1942,-2127,-2129,-2137,-2234], +[0,-878], +[0,-1,-9,-10,-17,-3,-4,-14,-985,-347,-147], [1,3,7995], [0,7996,7997,7998,5], -[0,-12920,-4787,-1548,-1588,-1666,-12921,-12922,-12923], -[0,-23,-40,-43,-3326,-350,-351,-3989,-427,-428,-479,-535,-932,-934,-958,-1022,-1077,-11780,-1168,-12924,-1222,-1412,-1413, --1942,-2125,-2127,-12925,-12926,-2359,-2410], -[0,-2127,-12913], +[0,-13338,-1312,-23,-296,-233,-13339,-13340,-13341], +[0,-11,-21,-174,-207,-77,-62,-2550,-22,-19,-452,-270,-1,-185,-9,-257,-41,-6071,-32,-13342,-3028,-196,-373,-4,-7,-14,-6265, +-13343,-161,-2], +[0,-14,-770], [1,3,8000], [0,8001,8002,252,6], -[0,-12927,-12928,-771,-12929], -[0,-9889,-812,-1654,-2127,-2128,-2136,-2184], +[0,-13344,-6266,-1617,-6267], +[0,-5767,-35,-3,-14,-275,-1258,-809], [1,3,8004], [0,8005,8006,252,6], -[0,-461,-12928,-989,-1588,-12929,-2145], -[0,-527,-558,-633,-1415,-1650,-1654,-2125,-2127,-2128,-2137], +[0,-202,-6266,-786,-296,-6267,-878], +[0,-162,-253,-60,-8,-72,-3,-7,-14,-275,-347], [1,3,8008], [0,8009,8010,253,5], -[0,-3200,-644,-4793,-2114,-2145], -[0,-23,-40,-43,-922,-932,-1654,-2127,-2128,-2131,-2133,-4794,-2410], +[0,-1137,-1384,-4806,-126,-878], +[0,-11,-21,-174,-1401,-1,-3,-14,-275,-466,-1118,-4807,-2], [1,3,8012], [0,8013,8014,253,9], -[0,-1588,-2145], -[0,-932,-958,-1344,-1534,-4789,-1654,-1942,-2127,-2129,-2200,-2231,-2410], +[0,-296,-878], +[0,-1,-9,-10,-17,-2089,-3,-4,-14,-985,-394,-130,-2], [1,3,8016], [0,8017,8018,8019,10], -[0,-4785,-7149], -[0,-3267,-3037,-427,-428,-932,-940,-967,-1415,-1942,-2125,-2127,-2375,-2410], -[0,-2127,-12913,-6915,-2231,-12930], +[0,-758,-5241], +[0,-330,-5,-22,-19,-1,-12,-25,-8,-4,-7,-14,-57,-2], +[0,-14,-770,-2179,-130,-13345], [1,3,8021], [0,8022,8023,8024,6], -[0,-22,-1429,-2182,-2334], -[0,-23,-1415,-1942,-2127], -[0,-2127,-12913,-2334,-1644], +[0,-505,-1236,-1121,-177], +[0,-11,-8,-4,-14], +[0,-14,-770,-177,-228], [1,3,8026], [0,8027,8028,8029,5], -[0,-2114,-2145], -[0,-639,-932,-1654,-2125,-2127,-2129,-2131,-2387,-2410], -[0,-12913,-2410,-4795], +[0,-126,-878], +[0,-1051,-1,-3,-7,-14,-985,-466,-44,-2], +[0,-770,-2,-446], [1,3,8031], [0,8032,8033,8034,4], -[0,-4785,-1046,-1077,-2177,-2387], -[0,-5121,-350,-351,-12931,-3048,-12932,-3136,-3044,-3037,-4067,-3199,-427,-428,-714,-932,-12933,-1415,-1548,-1793,-2125, --2127,-12934,-2142,-2375,-2410], -[0,-2142,-2141,-12913,-2410,-4795,-2127,-1764], +[0,-758,-1408,-41,-16,-44], +[0,-1318,-77,-62,-13346,-191,-13347,-29,-143,-5,-3264,-140,-22,-19,-133,-1,-6268,-8,-23,-1681,-7,-14,-13348,-305,-57,-2], +[0,-305,-1260,-770,-2,-446,-14,-159], [1,3,8036], [0,8037,8038,8039,6], -[0,-22,-1429,-2182,-2416], -[0,-23,-40,-533,-1415,-1942,-2127], -[0,-2127,-12913,-9216,-1644], +[0,-505,-1236,-1121,-112], +[0,-11,-21,-86,-8,-4,-14], +[0,-14,-770,-1031,-228], [1,3,8041], [0,8042,8043,8044,4], -[0,-1805,-1864,-2231,-2550], -[0,-350,-351,-3266,-3267,-3269,-12935,-12936,-12937,-12938,-12939,-12940,-3037,-8523,-3041,-651,-798,-6258,-7259,-7268, --799,-801,-825,-1771,-8065,-1889,-7033,-1940,-1942,-2923,-2127,-4753,-2162,-2387,-2410,-2466,-2469], -[0,-12913,-12941,-5150,-12942,-12943,-12944], +[0,-152,-326,-130,-98], +[0,-77,-62,-206,-330,-1738,-13349,-13350,-13351,-13352,-13353,-6269,-5,-662,-419,-454,-1941,-2674,-5266,-5270,-1942,-2333, +-232,-65,-1562,-38,-2725,-494,-4,-994,-14,-1311,-80,-44,-2,-104,-30], +[0,-770,-13354,-1155,-6270,-13355,-13356], [1,3,8046], [0,8047,8048,8049,5], -[0,-989], -[0,-426,-3136,-4036,-3037,-1344,-1415,-1534,-1639,-1942,-2127,-2131,-2137,-2141,-2200,-2375,-2388,-2410,-8256], -[0,-2127,-5260], +[0,-786], +[0,-320,-29,-651,-5,-10,-8,-17,-361,-4,-14,-466,-347,-1260,-394,-57,-199,-2,-3695], +[0,-14,-704], [1,3,8051], [0,0,8052,7,5], -[0,-633], +[0,-60], [1,3,8054], [0,8055,8056,254,10], -[0,-2694,-4007,-649,-658,-1119,-1889,-2234,-2279,-10098,-909,-2193], -[0,-12945,-22,-23,-32,-3194,-26,-35,-6062,-36,-12946,-37,-3368,-3077,-3204,-38,-40,-41,-42,-44,-46,-47,-12947,-12948, --12949,-12950,-3872,-4020,-237,-269,-12951,-12952,-12953,-12954,-12955,-5038,-3983,-367,-5052,-12956,-12957,-12958,-8355, --4776,-12959,-10100,-10101,-3269,-12960,-3732,-12961,-5085,-5033,-7080,-3198,-12962,-12963,-3036,-4035,-3850,-3044, --12964,-5587,-12965, --8523,-12966,-3040,-3052,-6633,-3199,-12967,-6832,-5673,-12968,-12969,-4204,-8559,-5900,-461,-12970,-2624,-502,-507,-512, --12971,-8561,-553,-6386,-635,-640,-651,-12972,-2740,-719,-12973,-724,-6842,-6394,-736,-737,-743,-769,-771,-2745,-7189, --7026,-812,-5034,-6381,-12974,-997,-1047,-1072,-1107,-1273,-1336,-1337,-6388,-1343,-2773,-12975,-1354,-10697,-1401,-1429, --1460,-1465,-8562, --12976,-1582,-1643,-1683,-1699,-12977,-9548,-1734,-1816,-6378,-3447,-1827,-1848,-1851,-1864,-6184,-1903,-7164,-1915, --7165,-2791,-1927,-1929,-1930,-1934,-1958,-1977,-6387,-1999,-2041,-2082,-2163,-2177,-2178,-12978,-8578,-2194,-2231,-2233, --11463,-6390,-6375,-4195,-12979,-6383,-2269,-3921,-2323,-12980,-2334,-2335,-2343,-6391,-6384,-2594,-12981,-2444,-6380, --12982,-10052,-2501,-2531,-2564], +[0,-2019,-1012,-1386,-1052,-324,-38,-147,-3112,-2866,-781,-689], +[0,-13357,-505,-11,-156,-891,-209,-931,-3475,-300,-6271,-1040,-3194,-995,-398,-170,-21,-132,-137,-90,-539,-450,-6272, +-6273,-6274,-6275,-3247,-1760,-663,-1906,-6276,-6277,-6278,-6279,-6280,-1317,-366,-245,-3347,-6281,-6282,-13358,-1867, +-757,-3987,-3861,-2867,-1738,-6283,-751,-6284,-3353,-2603,-1024,-169,-3988,-6285,-471,-898,-1753,-143,-6286,-4958,-6287, +-662,-6288,-47,-89,-1834,-140,-6289,-3555,-1532,-3989,-3990,-475,-2215,-3451,-202,-13359,-1479,-774,-280,-1378,-3991, +-2216,-776,-3507,-301,-294,-454,-6290,-2463,-58,-6291,-367,-2714,-3509,-942,-846,-336,-225,-1617,-1718,-2732,-2724,-35, +-2097,-3505,-6292,-410,-339,-669,-28,-1075,-586,-2356,-3508,-727,-1484,-6293,-1652,-2251,-856,-1236,-272,-797,-2795, +-6294,-434,-374,-800,-639,-6295,-2238,-1444,-325,-3503,-1743,-1110,-681,-553,-326,-1821,-1451,-2729,-1986,-2730,-2469, +-805,-1453,-869,-464,-286,-981,-2684,-1458,-686,-346,-467,-16,-808,-3992,-2219,-737,-130,-880,-2261,-2685,-3502,-2561, +-2926,-2683,-139,-2057,-312,-6296,-177,-397,-885,-2686,-3506,-1134,-6297,-136,-3504,-2276,-3858,-18,-205,-263], [1,3,8058], [0,0,8059,8060,9], -[0,-6068,-548,-6070,-6071,-8122,-6072,-6081,-6082,-6083,-550,-558,-8121,-7993,-7938,-628,-629,-8116,-7945,-8119,-8118, --902,-8003,-8004,-12983,-8117,-1654,-1963], -[0,-8123,-5923], +[0,-2659,-1605,-2660,-2661,-5435,-2662,-2663,-2664,-2665,-1606,-253,-5434,-3675,-3666,-2320,-1928,-5430,-3669,-5433,-5432, +-1399,-2767,-3676,-13360,-5431,-3,-1686], +[0,-5436,-504], [1,3,8062], [0,8063,8064,8065,5], -[0,-10415,-1863,-1889,-2271], -[0,-652,-1654,-2250], -[0,-12984,-775,-12985,-2149,-3161,-5553,-10733,-10732,-5845,-6408], +[0,-2872,-167,-38,-601], +[0,-43,-3,-97], +[0,-13361,-24,-13362,-2421,-53,-230,-5909,-5908,-477,-536], [1,3,8067], [0,8068,8069,8070,8], -[0,-668,-1022,-1876], -[0,-1168,-1654,-2198], -[0,-7419,-11441,-5562,-1168,-1817], +[0,-20,-257,-142], +[0,-32,-3,-81], +[0,-661,-2260,-2637,-32,-4270], [1,3,8072], [0,0,8073,8074,5], -[0,-468,-2322], -[0,-9291,-510,-5924,-5865,-6235,-11727,-5839,-12986], +[0,-718,-39], +[0,-5648,-59,-1331,-2139,-1537,-2904,-708,-13363], [1,3,8076], [0,0,0,8077,4], -[0,-12987,-12988,-12989,-8408,-12990,-12991], +[0,-13364,-13365,-13366,-5496,-3993,-3994], [1,3,8079], [0,33,8080,8081,9], -[0,-12992,-3,-367,-4007,-3035,-3044,-3621,-3037,-3714,-4372,-3625,-12993,-427,-428,-556,-664,-12994,-712,-714,-767,-796, --7653,-930,-932,-10031,-1069,-1077,-1107,-6783,-1344,-5726,-1534,-1548,-1646,-1654,-1753,-1771,-4099,-6184,-1942,-1961, --2127,-12995,-12996,-2137,-2195,-2200,-2210,-2211,-2234,-2314,-2379,-2388,-2389,-12997,-12998,-12999,-2410,-2449,-13000, --2501], -[0,-12990,-12991,-13001,-13002,-13003,-13004,-6980,-13005,-6948,-6950], +[0,-13367,-2284,-245,-1012,-109,-143,-71,-5,-1748,-279,-1287,-6298,-22,-19,-580,-13,-13368,-217,-133,-26,-295,-3645,-408, +-1,-5794,-628,-41,-28,-5175,-10,-3430,-17,-23,-88,-3,-285,-65,-4702,-1821,-4,-171,-14,-13369,-13370,-347,-276,-394,-27, +-190,-147,-1702,-33,-199,-1268,-13371,-13372,-13373,-2,-1707,-13374,-18], +[0,-3993,-3994,-13375,-13376,-6299,-13377,-3566,-6300,-924,-2722], [1,3,8083], [0,0,31,8084,9], -[0,-640,-13006,-13007,-9594,-2155,-7107,-13008], +[0,-294,-13378,-13379,-1579,-497,-711,-13380], [1,3,8086], [0,8087,8088,8089,4], -[0,-1365,-2177,-2550], -[0,-5834,-515,-516,-887,-932,-13009,-1788,-2322], -[0,-8403,-10483,-1764,-13010,-6818,-9594,-13011], +[0,-212,-16,-98], +[0,-244,-720,-269,-1398,-1,-13381,-15,-39], +[0,-769,-5848,-159,-13382,-1339,-1579,-13383], [1,3,8091], [0,8092,8093,8094,4], -[0,-13012,-13013,-510,-13014,-668,-719,-13015,-724,-729,-743,-744,-746,-13016,-888,-1004,-1010,-13017,-1107,-13018,-13019, --12902,-13020,-13021,-13022,-13023,-13024,-1646,-13025,-1840,-1851,-1878,-1965,-13026,-13027,-13028,-2177,-2185,-2187, --13029,-13030,-2418,-2453,-13031], -[0,-589,-733,-932,-1003,-1077,-13032,-1654,-1783,-1888,-13033,-13034,-13035,-13036,-13037,-13038,-2198,-2229,-2293,-2359], -[0,-13039,-13040,-1004,-13041,-13042,-3817,-3816,-1818,-2228], +[0,-6301,-13384,-59,-13385,-20,-58,-13386,-367,-218,-336,-581,-1213,-13387,-337,-40,-850,-6302,-28,-13388,-13389,-6262, +-13390,-13391,-13392,-13393,-13394,-88,-6303,-735,-553,-554,-495,-6304,-13395,-13396,-16,-1699,-393,-13397,-13398,-1471, +-989,-13399], +[0,-110,-1935,-1,-411,-41,-13400,-3,-976,-641,-13401,-13402,-13403,-13404,-13405,-13406,-81,-1262,-123,-161], +[0,-2277,-13407,-40,-13408,-6305,-1752,-1148,-802,-810], [1,3,8096], [0,8097,8098,8099,5], -[0,-13043], -[0,-2322,-468,-13044,-633,-725], -[0,-6656,-6557,-13045,-7723,-5874,-5559], +[0,-13409], +[0,-39,-718,-13410,-60,-309], +[0,-128,-921,-13411,-1028,-534,-503], [1,3,8101], [0,8102,8103,8104,8], -[0,-823,-930,-1333,-1396,-13046,-1889], -[0,-932,-1654,-2210,-13047], -[0,-3264,-3215,-7722,-7723], +[0,-323,-408,-488,-1083,-6306,-38], +[0,-1,-3,-27,-13412], +[0,-31,-74,-5353,-1028], [1,3,8106], [0,8107,0,8108,5], -[0,-679,-1361,-2232], -[0,-5553,-3754,-2162,-3277,-775], +[0,-117,-514,-811], +[0,-230,-444,-80,-608,-24], [1,3,8110], [0,8111,8112,8113,5], -[0,-9548], -[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-621,-767,-774,-778,-824,-825,-909,-932,-940,-6929,-958,-959,-960,-965,-967, --978,-1041,-2629,-1110,-1344,-1415,-1534,-13048,-1623,-1743,-13049,-1771,-1942,-2162,-3572,-2177,-2251,-2275,-2410,-2411, --2501,-2503,-2505], -[0,-2162,-9264,-2501,-5932], +[0,-2238], +[0,-48,-11,-21,-49,-63,-50,-529,-315,-4118,-26,-407,-141,-150,-232,-781,-1,-12,-617,-9,-145,-180,-115,-25,-151,-271,-4369, +-56,-10,-8,-17,-13413,-259,-1242,-13414,-65,-4,-80,-1498,-16,-134,-154,-2,-84,-18,-93,-173], +[0,-80,-3771,-18,-831], [0,44,15,16,9], [1,3,8116], [0,0,8117,7,8], -[0,-1942,-2319], +[0,-4,-85], [1,3,8119], [0,8120,8121,8122,9], -[0,-13050], -[0,-13051,-652,-13052,-932,-1446], -[0,-4058,-856], +[0,-13415], +[0,-13416,-43,-13417,-1,-165], +[0,-331,-42], [1,3,8124], [0,8125,8126,48,4], -[0,-469,-470,-5329,-4049], -[0,-824,-1415,-1344,-932,-825,-1110,-2501,-1942,-21,-190,-533,-2410,-23,-3037,-1534,-1771,-86,-965,-3560,-2251,-40,-959, --960,-958,-6929,-978,-940,-967,-3748,-3307], +[0,-183,-773,-2620,-652], +[0,-150,-8,-10,-1,-232,-56,-18,-4,-48,-50,-86,-2,-11,-5,-17,-65,-49,-115,-529,-134,-21,-145,-180,-9,-617,-151,-12,-25, +-315,-63], [1,3,8128], [0,8129,8130,8131,5], -[0,-2006,-2019,-2634], -[0,-2410,-3037,-3040,-3052,-518,-1889,-2318,-932,-10813], -[0,-13053,-13054,-1072,-5375,-770,-13055,-5375,-3634,-8576,-13056,-3551,-13057,-13058,-5376,-13059,-11152,-5150], +[0,-6,-36,-242], +[0,-2,-5,-47,-89,-157,-38,-559,-1,-3900], +[0,-13418,-13419,-669,-1807,-626,-6307,-1807,-61,-2218,-6308,-365,-6309,-6310,-3386,-6311,-3914,-1155], [1,3,8133], [0,8134,0,8135,5], -[0,-899,-1723,-6127], -[0,-13060,-13061,-13062,-2171], +[0,-4157,-864,-2151], +[0,-13420,-13421,-13422,-4315], [1,3,8137], [0,0,0,8138,4], -[0,-13063,-6555,-770], +[0,-13423,-920,-626], [1,3,8140], [0,8141,8142,8143,8], -[0,-13064,-1468,-2359,-2531], -[0,-190,-5980,-932,-940,-964,-965,-7353,-967,-1004,-1110,-1281,-1446,-1654,-1656,-1685,-1942,-2186,-2210,-2297], -[0,-4864,-11467,-3634,-11468,-12350], +[0,-13424,-3057,-161,-205], +[0,-50,-3459,-1,-12,-256,-115,-2738,-25,-40,-56,-3035,-165,-3,-974,-1441,-4,-1122,-27,-468], +[0,-572,-1036,-61,-930,-1588], [1,3,8145], [0,8146,8147,8148,5], -[0,-7040,-13065,-3472,-7041,-7042,-13066,-755,-812,-13067,-999,-1040,-13068,-1100,-13069,-9464,-1315,-13070,-1549,-1610, --6294,-1639,-13071,-10507,-3609,-2115,-2177,-3642,-2550], -[0,-3037,-3639,-519,-652,-686,-796,-851,-13072,-1077,-1116,-1442,-1547,-8314,-13073,-1722,-1772,-13074,-1942,-2910,-2210, --13075,-2331,-2341], -[0,-13076,-4864,-5887,-3551,-5897,-8403,-9244,-2177,-9318], +[0,-925,-13425,-749,-618,-1177,-13426,-386,-35,-13427,-118,-510,-13428,-487,-13429,-3796,-792,-13430,-461,-227,-2161,-361, +-13431,-5855,-1502,-644,-16,-4603,-98], +[0,-5,-4601,-51,-43,-1615,-295,-2999,-13432,-41,-387,-101,-1095,-5471,-13433,-197,-345,-3995,-4,-470,-27,-13434,-379, +-1703], +[0,-13435,-572,-830,-365,-478,-769,-3768,-16,-715], [1,3,8150], [0,8151,8152,7,4], -[0,-44,-13077,-13078,-2997,-13079,-703,-13080,-1548,-1549,-1967,-2029,-2804,-2192], -[0,-13081,-21,-23,-26,-34,-35,-37,-38,-40,-41,-43,-13082,-4227,-13083,-13084,-4773,-3040,-427,-428,-3807,-13085,-528,-534, --13086,-539,-540,-13087,-553,-12468,-13088,-664,-13089,-747,-767,-795,-812,-838,-855,-8245,-915,-932,-933,-940,-3071, --958,-962,-964,-969,-970,-1021,-1103,-1168,-1228,-1266,-1344,-6273,-1471,-1475,-12832,-1476,-1482,-1483,-1492, --1526,-1534,-1654,-1942,-1955,-1978,-2000,-2006,-13090,-13091,-2018,-2019,-2024,-2027,-2043,-2044,-13092,-13093,-13094, --2052,-13095,-2125,-13096,-13097,-7708,-2210,-2211,-2214,-2253,-13098,-2335,-13099,-2347,-2410,-2460,-2501,-2502,-2503, --2504], +[0,-90,-13436,-13437,-820,-13438,-302,-13439,-23,-461,-121,-437,-2471,-1463], +[0,-13440,-48,-11,-209,-1039,-931,-1040,-170,-21,-132,-174,-13441,-3284,-13442,-13443,-1516,-47,-22,-19,-1751,-13444,-91, +-96,-13445,-333,-1604,-13446,-776,-6176,-13447,-13,-13448,-778,-26,-483,-35,-1393,-944,-1863,-431,-1,-255,-12,-2484,-9, +-148,-256,-64,-186,-1949,-340,-32,-1954,-360,-10,-5093,-79,-138,-6245,-588,-187,-414,-517, +-1093,-17,-3,-4,-436,-160,-685,-6,-13449,-13450,-3090,-36,-1990,-2413,-873,-557,-13451,-13452,-13453,-287,-13454,-7, +-13455,-13456,-5347,-27,-190,-328,-1125,-13457,-397,-13458,-69,-2,-70,-18,-523,-93,-1711], [1,3,8154], [0,8155,8156,8157,4], -[0,-932,-942,-943,-13100,-958,-965,-968,-969,-13101], -[0,-3781,-1631,-1650,-2125,-2151,-2322], -[0,-8180,-13102,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8175,-1445,-1452,-7148,-8184,-8169,-13103,-5493, --2250,-8185,-5553,-8186,-8187,-8174], +[0,-1,-1631,-83,-6312,-9,-115,-67,-64,-6313], +[0,-1504,-491,-72,-7,-1697,-39], +[0,-2776,-13459,-293,-619,-334,-2777,-2778,-2779,-1187,-1183,-1,-1566,-587,-119,-224,-2780,-1186,-13460,-654,-97,-2781, +-230,-2782,-2783,-1565], [1,3,8159], [0,0,8160,7,5], -[0,-4298,-4300,-589,-2319], +[0,-755,-756,-110,-85], [1,3,8162], [0,8163,191,8164,4], -[0,-812,-907,-929,-990,-1072,-1335,-1641,-1681,-1800,-1997,-2255], -[0,-5142,-6656,-3844], +[0,-35,-1218,-484,-848,-669,-633,-344,-549,-977,-1114,-1263], +[0,-914,-128,-216], [1,3,8166], [0,8167,8168,8169,5], -[0,-13104,-3895,-13105,-13106,-13107,-13108,-13109,-13110,-1555,-1572,-1646,-9375,-13111,-13112,-13113,-1983,-13114, --13115,-13116], -[0,-3890,-3893,-13117,-3037,-510,-13118,-756,-13119,-1276,-13120,-8936,-1942,-13121,-13122,-13123,-13124,-13125,-2410], -[0,-11151,-5196,-11148,-13126,-6209,-13127,-11150,-6210,-13128,-3161,-13129,-13130,-13131,-3481,-10809], +[0,-13461,-4664,-13462,-3996,-13463,-13464,-13465,-13466,-4236,-2375,-88,-5669,-13467,-13468,-13469,-465,-13470,-13471, +-13472], +[0,-3248,-3249,-13473,-5,-59,-13474,-55,-13475,-247,-13476,-3746,-4,-13477,-13478,-13479,-13480,-13481,-2], +[0,-2256,-1323,-1891,-13482,-2157,-13483,-5983,-5084,-13484,-53,-13485,-13486,-13487,-1141,-5926], [1,3,8171], [0,0,8172,8173,11], -[0,-13132,-510,-589,-932,-1660,-2319], -[0,-2180,-10432,-13133,-11385], +[0,-13488,-59,-110,-1,-1438,-85], +[0,-4316,-3881,-13489,-6014], [1,3,8175], [0,8176,8177,8178,5], -[0,-13134,-2446,-812,-13135,-1548,-1666,-2177,-2451,-1369,-3198,-13136,-13137,-1667,-6109,-13138,-10416], -[0,-1857,-1788,-664,-461,-826,-2763,-1344,-1654,-1826,-2210,-932,-13139,-1692,-2125,-674,-928,-13140,-13141,-2245,-10417, --10418,-13142,-749,-767,-1026,-13143,-1828,-13144,-12846,-1078,-2211,-2410,-3035,-3037,-1002,-1534,-3621,-4372,-11747, --305,-3044,-13145,-13146,-13147,-86,-665,-13148,-1609,-2174,-7382,-2234,-960,-964,-13149,-428,-13150,-9404,-427,-13151, --13152], -[0,-1691,-13140,-3742,-6321,-10425,-1857,-1682,-13153,-13139,-10424,-10418,-10704,-13154,-1818,-3967,-13155,-7685,-7773], +[0,-13490,-125,-35,-13491,-23,-233,-16,-439,-1080,-169,-13492,-13493,-863,-3482,-13494,-3878], +[0,-595,-15,-13,-202,-627,-4410,-10,-3,-552,-27,-1,-6314,-1674,-7,-231,-87,-6315,-13495,-813,-2873,-2874,-13496,-625,-26, +-226,-13497,-1983,-13498,-3982,-1641,-190,-2,-109,-5,-787,-17,-71,-279,-2906,-665,-143,-13499,-13500,-13501,-49,-239, +-13502,-518,-122,-3603,-147,-180,-256,-13503,-19,-13504,-1032,-22,-13505,-13506], +[0,-550,-6315,-1290,-1169,-928,-595,-1673,-13507,-6314,-2249,-2874,-2880,-13508,-802,-353,-13509,-403,-768], [1,3,8180], [0,0,8181,8182,4], -[0,-589], -[0,-6233,-12343,-3214,-3756,-4055], +[0,-110], +[0,-919,-2916,-45,-278,-108], [1,3,8184], [0,8185,37,8186,6], -[0,-812,-13156,-13157,-13158,-13159,-13160,-13161,-13162,-13163,-13164,-13165,-13166,-13167,-13168], -[0,-13169,-13170,-13171,-13172,-13173,-11573,-1434,-13174,-13175,-13176,-10225,-13177,-13178,-10227,-2183,-13179,-13180, --5827,-3975,-13181], +[0,-35,-13510,-13511,-13512,-13513,-13514,-13515,-13516,-13517,-13518,-13519,-13520,-13521,-13522], +[0,-13523,-13524,-13525,-13526,-6316,-3925,-4221,-13527,-13528,-13529,-5805,-13530,-13531,-2868,-2423,-13532,-13533,-252, +-445,-13534], [1,3,8188], [0,8189,8190,8191,4], -[0,-469,-502,-623,-668,-700,-724,-13182,-13183,-5977,-6793,-13184], -[0,-1116,-2392,-2391,-1344,-932,-2469,-1942,-2410,-1534,-50,-3732,-13185,-3664,-13186], -[0,-2455,-2184,-11151,-1339], +[0,-183,-774,-1209,-20,-2989,-367,-13535,-13536,-1332,-2706,-6317], +[0,-387,-155,-172,-10,-1,-30,-4,-2,-17,-357,-751,-13537,-105,-2278], +[0,-2006,-809,-2256,-413], [1,3,8193], [0,8194,8195,8196,6], -[0,-990,-1072,-1681,-1840,-2155], -[0,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-2293,-13187], -[0,-1004,-13188,-5401], +[0,-848,-669,-549,-735,-497], +[0,-1,-83,-9,-211,-75,-67,-129,-3,-15,-123,-13538], +[0,-40,-3997,-356], [1,3,8198], [0,8199,8200,7,11], -[0,-459,-7334,-812,-929,-1335,-1641,-1840], -[0,-465,-932,-963,-1654,-1788,-2293], +[0,-1044,-1552,-35,-484,-633,-344,-735], +[0,-772,-1,-211,-3,-15,-123], [1,3,8202], [0,8203,81,7,5], -[0,-907,-929,-1840,-2178], +[0,-1218,-484,-735,-808], [1,3,8205], [0,8206,8207,8208,4], -[0,-13189,-1640,-1645], -[0,-86,-3307,-13190,-13191,-521,-664,-665,-720,-932,-940,-1077,-1344,-1534,-1573,-5969,-1654,-1729,-1788,-1942,-1972, --13192,-2210,-2211,-2323], -[0,-13192,-13193,-5819,-5817,-13194,-5937,-13195,-5940,-3258,-3100,-13196], +[0,-13539,-260,-92], +[0,-49,-63,-13540,-13541,-936,-13,-239,-482,-1,-12,-41,-10,-17,-258,-1817,-3,-188,-15,-4,-181,-2279,-27,-190,-312], +[0,-2279,-13542,-2136,-1330,-13543,-2144,-13544,-1165,-892,-52,-13545], [1,3,8210], [0,8211,8212,8213,5], -[0,-13197,-13198,-13199,-13200,-3698,-13201,-13202,-13203,-11209,-13204,-5810,-13205,-13206,-13207,-11197,-620,-4735, --13208,-5813,-13209,-1805,-7223,-2531], -[0,-13210,-4171,-13211,-3136,-3037,-3738,-4204,-427,-428,-13206,-5813,-928,-13212,-932,-940,-8246,-948,-958,-967,-1344, --1415,-13213,-13214,-13215,-13216,-1456,-1766,-1942,-5815,-2251,-2375,-2379,-2892,-2410,-2446], -[0,-3112,-5817,-3634,-1415,-13192,-4216,-2469,-5819,-5941,-5943,-5951,-13217], +[0,-13546,-6318,-13547,-13548,-1289,-6319,-6320,-6321,-5994,-6322,-5010,-6323,-6324,-13549,-2891,-453,-4794,-13550,-3441, +-13551,-152,-3588,-205], +[0,-13552,-2559,-13553,-29,-5,-698,-475,-22,-19,-6324,-3441,-87,-6325,-1,-12,-2785,-246,-9,-25,-10,-8,-13554,-13555, +-13556,-13557,-635,-3073,-4,-5011,-134,-57,-33,-380,-2,-125], +[0,-3168,-1330,-61,-8,-2279,-1763,-30,-2136,-5033,-3456,-3457,-13558], [1,3,8215], [0,8216,0,7,4], -[0,-10906,-6130], +[0,-5943,-2153], [1,3,8218], [0,0,8219,8220,11], -[0,-528,-558,-566,-664,-932,-1059,-13218,-1344,-1534,-1654,-1942], -[0,-2192,-8495,-6439,-10661,-7378,-13219], +[0,-91,-253,-429,-13,-1,-412,-13559,-10,-17,-3,-4], +[0,-1463,-5519,-1828,-5895,-1553,-13560], [1,3,8222], [0,8223,8224,8225,4], -[0,-2177,-13220,-8612], -[0,-8771,-2384,-13221,-2324,-1733,-13222,-1018,-13223,-2581,-1723,-13224,-1448,-13225,-13226,-13227,-13228,-13229], -[0,-9235,-7715,-5315,-5316,-9807,-8642,-3839,-8707,-13230,-6527,-10095,-13231,-7066,-10711,-13232,-13233], +[0,-16,-13561,-2221], +[0,-5559,-82,-13562,-1267,-590,-13563,-1070,-13564,-329,-864,-13565,-795,-13566,-13567,-13568,-13569,-13570], +[0,-1193,-621,-2617,-2618,-5752,-1349,-265,-5554,-13571,-292,-2248,-13572,-2726,-5906,-13573,-13574], [1,3,8227], [0,0,8228,8229,5], -[0,-5834,-516,-5835,-932,-993,-1365,-1408,-1777,-1788,-2156,-2322], -[0,-3957,-1838,-13234,-5550], +[0,-244,-269,-533,-1,-1069,-212,-1235,-273,-15,-189,-39], +[0,-316,-166,-6326,-267], [1,3,8231], [0,8232,8233,8234,4], -[0,-999,-1026], -[0,-519,-668,-710,-932,-934,-958,-1442,-1788,-13235,-13236,-2200,-13237], -[0,-2195,-6836,-11642,-5550,-13238,-9218,-1410,-12397], +[0,-118,-226], +[0,-51,-20,-455,-1,-185,-9,-101,-15,-6327,-6328,-394,-13575], +[0,-276,-1175,-2263,-267,-13576,-1576,-1966,-2919], [1,3,8236], [0,8237,8238,8239,8], -[0,-1699], -[0,-664,-1127,-1654,-913,-1132,-10682,-2351,-1158,-13239,-9256,-1130,-1156,-1542,-1136,-1144,-1148,-5295], -[0,-13240,-13241,-7231,-2446,-13242,-13243,-3005,-2197,-13244], +[0,-639], +[0,-13,-54,-3,-1944,-164,-5899,-1468,-3022,-2927,-5639,-957,-959,-343,-629,-175,-341,-705], +[0,-13577,-2928,-2736,-125,-13578,-13579,-4480,-4317,-13580], [1,3,8241], [0,8242,8243,8244,4], -[0,-13245,-13246,-13247,-13248,-13249], -[0,-615,-932,-13250,-1654,-1942,-2127,-2137,-2388,-2410], -[0,-4004,-3440,-507,-2198], +[0,-13581,-13582,-13583,-13584,-13585], +[0,-114,-1,-13586,-3,-4,-14,-347,-199,-2], +[0,-76,-609,-280,-81], [1,3,8246], [0,75,8247,8248,4], -[0,-1127,-1134,-1136,-1144,-1148,-1150,-1151,-13251,-1152,-1163,-1449,-1542,-1856,-13252,-2177,-13253,-2234], -[0,-1599,-6473], +[0,-54,-240,-629,-175,-341,-1072,-1415,-13587,-512,-1416,-78,-343,-1449,-13588,-16,-13589,-147], +[0,-99,-1542], [1,3,8250], [0,8251,8252,8253,8], -[0,-1646,-2195], -[0,-526,-558,-566,-932,-934,-8246,-958,-1442,-1654,-1788,-2125,-13235,-13254,-13236,-2198], -[0,-2195,-5550,-11642,-6836,-6837,-8421,-687,-3977], +[0,-88,-276], +[0,-179,-253,-429,-1,-185,-2785,-9,-101,-3,-15,-7,-6327,-13590,-6328,-81], +[0,-276,-267,-2263,-1175,-5187,-1190,-37,-2062], [1,3,8255], [0,0,8256,8257,9], -[0,-7080,-3037,-9867,-5866,-652,-1942,-2319,-2379,-2402,-2410], -[0,-5395,-1000], +[0,-1024,-5,-5760,-2650,-43,-4,-85,-33,-124,-2], +[0,-2631,-849], [1,3,8259], [0,8260,8261,8262,5], -[0,-474], -[0,-1273,-1948,-2127,-2129,-2416], -[0,-5176,-13255,-10724,-659], +[0,-4108], +[0,-1075,-520,-14,-985,-112], +[0,-500,-13591,-3897,-322], [1,3,8264], [0,8265,8266,8267,8], -[0,-13256,-13257,-812], -[0,-13258,-13259,-3198,-3136,-3037,-928,-11714,-1415,-2379,-2410], -[0,-5889,-13260,-12263], +[0,-13592,-13593,-35], +[0,-13594,-13595,-169,-29,-5,-87,-6060,-8,-33,-2], +[0,-402,-13596,-6147], [1,3,8269], [0,0,8270,8271,5], -[0,-2384,-1415,-1344,-1868,-932,-2125,-2127,-1942,-767,-533,-23,-3136,-726,-13261,-1952,-44,-50,-40,-953,-13262,-32,-3326, --2140,-3561,-13263,-350,-351,-8280,-13264,-536,-37], -[0,-5070,-6814,-11889,-9668,-3161,-2006,-475,-2476,-3122,-6209,-3100], +[0,-82,-8,-10,-1251,-1,-7,-14,-4,-26,-86,-11,-29,-284,-6329,-435,-90,-357,-21,-1633,-13597,-156,-207,-229,-237,-6330,-77, +-62,-1865,-13598,-1603,-1040], +[0,-4866,-2708,-2909,-1194,-53,-6,-184,-73,-442,-2157,-52], [1,3,8273], [0,8274,8275,8276,4], -[0,-4884,-357,-13265,-834,-2297], -[0,-23,-4885,-4886,-4887,-4888,-13266,-11471,-13267,-539,-812,-829,-928,-13268,-10877,-1099,-1534,-1654,-1788,-1942,-1978, --2125,-2177,-2195], -[0,-2210,-4004,-3634,-5119,-8611,-4216,-8959,-4123,-13269,-4215,-2533,-507], +[0,-3319,-623,-13599,-203,-468], +[0,-11,-4829,-4830,-4831,-3320,-13600,-6022,-13601,-333,-35,-1215,-87,-13602,-3905,-1229,-17,-3,-15,-4,-160,-7,-16,-276], +[0,-27,-76,-61,-401,-1571,-1763,-1873,-612,-13603,-317,-743,-280], [1,3,8278], [0,0,8279,8280,9], -[0,-190,-652,-664,-932,-1654,-1942,-2210], -[0,-664,-6537,-4865,-13270,-13271,-2210,-3634,-7244,-7245,-7243], +[0,-50,-43,-13,-1,-3,-4,-27], +[0,-13,-2695,-94,-6331,-13604,-27,-61,-5261,-5262,-1550], [1,3,8282], [0,8283,8284,8285,5], -[0,-4166,-3544,-510,-648,-13272,-13273,-1650,-2177,-6920,-1004,-1442,-2105,-927,-719,-1645,-1464,-1276,-617,-724,-1335, --1304,-13274,-13275,-2062,-13276], -[0,-1654,-615,-633,-13277], -[0,-6011,-5897,-7737,-11722,-3209,-1971,-3844], +[0,-4709,-1143,-59,-1210,-13605,-13606,-72,-16,-1840,-40,-101,-111,-1630,-58,-92,-1089,-247,-163,-367,-633,-372,-13607, +-13608,-198,-13609], +[0,-3,-114,-60,-13610], +[0,-2145,-478,-2755,-2266,-381,-596,-216], [1,3,8287], [0,8288,0,7,6], -[0,-13278,-5036,-13279], +[0,-13611,-2098,-6332], [1,3,8290], [0,8291,0,8292,11], -[0,-13280,-1532,-13281,-1863,-2654], -[0,-2214,-687,-985,-6187,-13282,-13283], +[0,-13612,-1969,-13613,-167,-313], +[0,-328,-37,-370,-574,-13614,-13615], [1,3,8294], [0,89,56,8295,5], -[0,-13284,-13285,-13286,-3445,-3100,-7566], +[0,-13616,-13617,-13618,-46,-52,-2750], [1,3,8297], [0,8298,8299,8300,10], -[0,-13287,-13288], -[0,-2501,-2376,-2410,-2503,-13289,-2502], -[0,-3445,-13290,-3690,-13192,-7685], +[0,-13619,-13620], +[0,-18,-214,-2,-93,-13621,-523], +[0,-46,-13622,-100,-2279,-403], [1,3,8302], [0,0,14,8303,5], -[0,-1847,-13291,-2218,-11635,-7084,-5845], +[0,-249,-13623,-288,-6045,-764,-477], [1,3,8305], [0,8306,8307,8308,4], -[0,-482,-13292], -[0,-519,-668,-13293,-2269,-2541], -[0,-4783,-2265,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545,-3958, --5554], +[0,-719,-13624], +[0,-51,-20,-13625,-139,-34], +[0,-2584,-168,-243,-568,-217,-707,-133,-178,-201,-37,-445,-503,-616,-760,-1325,-267,-647,-258,-384,-299,-193], [1,3,8310], [0,8311,86,8312,4], -[0,-9371,-677,-5500,-13294,-13295,-10347,-13296,-1705,-1856,-13297,-1951,-1959,-13298,-2330,-2550], -[0,-13299,-3015,-9460,-1764,-1380], +[0,-5668,-2988,-3414,-13626,-13627,-3873,-13628,-734,-1449,-13629,-871,-362,-13630,-603,-98], +[0,-13631,-693,-3795,-159,-729], [1,3,8314], [0,0,8315,8316,5], -[0,-11254,-3470,-3471,-3311,-652,-1654,-2174,-2250], -[0,-2223,-2222,-2265,-2443,-9312,-4112,-2435], +[0,-3916,-297,-298,-893,-43,-3,-122,-97], +[0,-739,-2430,-168,-1706,-3778,-474,-200], [1,3,8318], [0,0,8319,8320,4], -[0,-756,-13300,-1654,-1788], -[0,-2223,-2222,-2435,-13301], +[0,-55,-13632,-3,-15], +[0,-739,-2430,-200,-13633], [0,44,15,16,11], [1,3,8323], [0,8324,0,8325,4], -[0,-668,-1370,-1646,-2062,-13302,-2269,-2343], -[0,-3240,-13303,-13304,-2250,-13305,-10317,-13306,-13307,-13308,-13309], +[0,-20,-515,-88,-198,-13634,-139,-885], +[0,-648,-13635,-13636,-97,-13637,-5817,-13638,-13639,-13640,-13641], [1,3,8327], [0,8328,8329,8330,5], -[0,-523,-13310,-812,-1063,-1070,-1100,-1548,-2165,-2270,-6587,-13311], -[0,-190,-3198,-3734,-3044,-3037,-13312,-6594,-617,-714,-834,-855,-883,-932,-1004,-1045,-1107,-1654,-1788,-1942,-2062, --2177,-2187,-2198,-2210,-2234,-10402,-2402,-2410,-2411], -[0,-2227], +[0,-194,-13642,-35,-1412,-955,-487,-23,-1119,-1264,-2698,-13643], +[0,-50,-169,-3232,-143,-5,-6333,-3533,-163,-133,-203,-944,-1397,-1,-40,-953,-28,-3,-15,-4,-198,-16,-393,-81,-27,-147, +-3876,-124,-2,-84], +[0,-3105], [1,3,8332], [0,8333,0,8334,4], -[0,-459,-13313,-754,-812,-5454,-13314,-4208], -[0,-8841,-3161,-2512,-9043,-997,-9005,-13315], +[0,-1044,-13644,-368,-35,-4931,-13645,-3283], +[0,-839,-53,-889,-2819,-410,-3756,-13646], [1,3,8336], [0,8337,0,8338,4], -[0,-13316,-812,-5455,-4208], -[0,-8841,-3161,-2512,-9043,-997,-3323], +[0,-13647,-35,-4932,-3283], +[0,-839,-53,-889,-2819,-410,-351], [1,3,8340], [0,8341,8342,8343,4], -[0,-812,-13317,-10622,-1370,-2438], -[0,-633,-913,-932,-1003,-1168,-1208,-1243,-1244,-1252,-1262,-1471,-1472,-1473,-1475,-1482,-1654,-1972,-1976,-2187,-13318, --2461,-2463], -[0,-6224,-2512], +[0,-35,-6334,-3893,-515,-3124], +[0,-60,-1944,-1,-411,-32,-790,-310,-962,-311,-632,-79,-860,-1428,-138,-187,-3,-181,-1253,-393,-6335,-1708,-887], +[0,-2158,-889], [1,3,8345], [0,0,8346,7,8], -[0,-652,-855,-932,-1942,-940], +[0,-43,-944,-1,-4,-12], [1,3,8348], [0,0,8349,7,6], -[0,-13239,-855,-2501], +[0,-2927,-944,-18], [1,3,8351], [0,8352,8353,48,6], -[0,-1351,-2232], -[0,-21,-23,-40,-86,-3307,-7166,-533,-767,-774,-824,-825,-932,-940,-958,-1344,-1415,-1534,-1623,-1771,-1942,-2251,-2501], +[0,-459,-811], +[0,-48,-11,-21,-49,-63,-1025,-86,-26,-407,-150,-232,-1,-12,-9,-10,-8,-17,-259,-65,-4,-134,-18], [1,3,8355], [0,8356,8357,7,4], -[0,-6829,-2231], -[0,-633,-711,-1339,-1654,-2501], +[0,-2713,-130], +[0,-60,-308,-413,-3,-18], [1,3,8359], [0,0,92,8360,5], -[0,-5092,-3264,-7451,-13319,-7205,-1838,-6231], +[0,-266,-31,-3611,-6336,-2734,-166,-447], [1,3,8362], [0,8363,8364,8365,8], -[0,-13320,-13321,-13322,-9193,-13323,-674,-711,-719,-1026,-1119,-1122,-13324,-1127,-1134,-1136,-1137,-1138,-1140,-1148, --1149,-1160,-1276,-1304,-1333,-1440,-1442,-13325,-1460,-1548,-1610,-13326,-1889,-2162,-2312,-2359], -[0,-21,-23,-40,-43,-4710,-13327,-664,-665,-3629,-932,-964,-966,-974,-1654,-1753,-1942,-2123,-2125,-2210,-2211], -[0,-1122,-3671,-856,-13328,-13329,-3690,-4258,-3262], +[0,-13648,-13649,-6337,-3766,-6338,-231,-308,-58,-226,-324,-371,-6339,-54,-240,-629,-584,-511,-1951,-341,-304,-2346,-247, +-372,-488,-968,-101,-6340,-272,-23,-227,-13650,-38,-80,-4333,-161], +[0,-48,-11,-21,-174,-4786,-13651,-13,-239,-2519,-1,-256,-75,-129,-3,-285,-4,-1461,-7,-27,-190], +[0,-371,-399,-42,-13652,-13653,-100,-908,-116], [1,3,8367], [0,8368,8369,7,8], -[0,-2346], -[0,-994,-8392,-8393,-8394,-13330], +[0,-469], +[0,-409,-2789,-2790,-3713,-13654], [1,3,8371], [0,0,8372,7,5], -[0,-13331,-13332,-11961,-1788,-1939,-2250,-2322], +[0,-13655,-13656,-3950,-15,-234,-97,-39], [0,0,83,7,5], [1,3,8375], [0,0,8376,7,4], -[0,-1168,-1654,-932,-589,-1231,-1197,-1208,-1243,-1262,-13333,-1252], +[0,-32,-3,-1,-110,-359,-513,-790,-310,-632,-13657,-311], [1,3,8378], [0,8379,8380,8381,5], -[0,-615,-712,-714,-783,-1077,-1276,-13334,-3999,-1548,-1757,-7667,-13335,-9395,-2347,-2460,-2462,-13336,-13337], -[0,-664,-756,-1405,-1654,-1657,-13338,-13339], -[0,-13340,-9278,-13341,-775,-3754,-1521,-2162,-2244,-13342,-7419], +[0,-114,-217,-133,-1938,-41,-247,-6341,-699,-23,-4261,-5339,-13658,-5673,-69,-70,-562,-13659,-13660], +[0,-13,-55,-66,-3,-589,-13661,-13662], +[0,-13663,-1878,-13664,-24,-444,-219,-80,-4324,-13665,-661], [1,3,8383], [0,8384,8385,8386,4], -[0,-596,-1723,-6521,-2323], -[0,-932,-1654,-12894], -[0,-10424,-3742,-2245,-7685], +[0,-667,-864,-3526,-312], +[0,-1,-3,-6261], +[0,-2249,-1290,-813,-403], [1,3,8388], [0,8389,8390,8391,5], -[0,-13343,-13344], -[0,-932,-6461], -[0,-8905,-2246,-9456,-7721,-5550,-8421,-8908,-3323], +[0,-13666,-13667], +[0,-1,-5127], +[0,-2810,-2434,-5688,-5352,-267,-1190,-2812,-351], [1,3,8393], [0,8394,8395,8396,10], -[0,-9084], -[0,-4298,-4300,-589], -[0,-5387,-3578,-7107,-13345,-10908,-10930,-13346,-13347,-13348,-13349,-13350,-3264], +[0,-1875], +[0,-755,-756,-110], +[0,-653,-113,-711,-13668,-3907,-5952,-13669,-13670,-13671,-13672,-13673,-31], [1,3,8398], [0,8399,91,8400,9], -[0,-2548], -[0,-2248,-4055,-2548,-9886,-10410,-7773,-6129,-13351,-13352,-3689,-7685,-856,-3445,-6857,-1671,-1050,-1691,-2245,-6597, --13353,-10425,-4055,-6917,-13354], +[0,-262], +[0,-4325,-108,-262,-5764,-5833,-768,-2152,-3998,-13674,-3226,-403,-42,-46,-1341,-375,-1410,-550,-813,-537,-13675,-928, +-108,-836,-13676], [1,3,8402], [0,0,8403,7,11], -[0,-40,-533,-1415,-13355], +[0,-21,-86,-8,-13677], [1,3,8405], [0,8406,8407,8408,6], -[0,-932,-943,-13100,-958,-965,-968,-969,-13101,-13356], -[0,-769,-1274,-1646,-13357,-2151,-5470,-2322], -[0,-8180,-7440,-7144,-707,-8181,-8182,-8183,-8172,-7840,-932,-8175,-1445,-1452,-7148,-8184,-8169,-5493,-2250,-8185,-5553, --8186,-8187,-8174], +[0,-1,-83,-6312,-9,-115,-67,-64,-6313,-13678], +[0,-225,-1420,-88,-6342,-1697,-4937,-39], +[0,-2776,-293,-619,-334,-2777,-2778,-2779,-1187,-1183,-1,-1566,-587,-119,-224,-2780,-1186,-654,-97,-2781,-230,-2782,-2783, +-1565], [1,3,8410], [0,8411,8412,8413,5], -[0,-668,-739,-13358,-741,-10524,-831,-8888,-13359,-1040,-1047,-12340,-2177,-13360,-2550], -[0,-664,-932,-943,-958,-966,-968,-1654,-1658,-1663,-1788,-2195,-13361], -[0,-739,-13362,-5887,-5886,-5962,-9318,-475,-2250], +[0,-20,-541,-13679,-1212,-3885,-1216,-2805,-13680,-510,-339,-6163,-16,-13681,-98], +[0,-13,-1,-83,-9,-75,-67,-3,-548,-1440,-15,-276,-6343], +[0,-541,-13682,-830,-2142,-5036,-715,-184,-97], [1,3,8415], [0,8416,8417,8418,4], -[0,-502,-615,-13363,-812,-999,-13364,-4703,-2648], -[0,-3037,-13365,-664,-767,-829,-13366,-13367,-13368,-1116,-1457,-3809,-1646,-1654,-13369,-10652,-2174,-13370,-2210,-2211, --8527,-2250], -[0,-6657,-5921,-3844,-11818,-4004,-3590,-4116], +[0,-774,-114,-13683,-35,-118,-13684,-4784,-2017], +[0,-5,-13685,-13,-26,-1215,-13686,-13687,-13688,-387,-3056,-2541,-88,-3,-13689,-2875,-122,-13690,-27,-190,-5527,-97], +[0,-2701,-918,-216,-3940,-76,-208,-825], [1,3,8420], [0,8421,8422,8423,5], -[0,-13371,-10926,-1093,-13372], -[0,-2330,-1754,-2424], -[0,-2254,-13373,-13374,-13375,-8841], +[0,-13691,-5951,-4174,-6344], +[0,-603,-679,-250], +[0,-3107,-13692,-13693,-13694,-839], [1,3,8425], [0,0,8426,8427,5], -[0,-790,-932,-943,-958,-963,-966,-968,-974,-1654,-1788,-1999,-9374], -[0,-1334,-9745,-707], +[0,-1940,-1,-83,-9,-211,-75,-67,-129,-3,-15,-1458,-3784], +[0,-103,-2853,-334], [1,3,8429], [0,8430,8431,8432,4], -[0,-2531,-1805,-2066,-2177,-928,-6488,-13376,-4890,-13377,-12518,-407,-410], -[0,-888,-2564,-664,-834,-1107,-1431,-2213,-999,-1526,-1623,-3548,-2006,-2218,-8609,-1111,-1699,-1778,-13378,-928,-13379, --1085,-1442,-3447,-2114,-2358,-13380,-1885,-1942,-4893,-4204,-656,-719,-2578,-1864,-13381,-2019,-3654,-2400,-12982,-2528, --4370,-3517,-13382,-1863,-2231,-2269,-2410,-23,-9939,-3037,-769,-832,-13383,-47,-6192,-4894,-4918,-25,-13384,-3199, --13385,-831,-13386, --6467,-13387,-6447,-3772,-3778,-3660,-3735,-13388,-6744,-13389,-3896,-13390,-12695,-2383,-46,-163,-6630,-13391,-13392, --13393,-11751,-3194,-13394,-8523,-13395,-2044,-13396,-747,-13397,-7080,-13398,-4239,-13399,-13400,-13401,-13402,-13403, --13404,-5474,-2271,-13405,-13406,-13407,-13408,-406,-13409,-13410,-5322,-13411,-3776,-409,-13412,-13413,-4008,-8273, --2641,-13414,-3459,-13415,-13416,-13417,-5296,-13418,-13419, --13420], -[0,-2257,-3095,-3098,-13421,-13422,-2006,-2634,-9736,-2034,-3138,-2476,-475,-2299,-3176,-4902], +[0,-205,-152,-1257,-16,-87,-3518,-2929,-2587,-6345,-2272,-153,-307], +[0,-337,-263,-13,-203,-28,-516,-738,-118,-1093,-259,-2511,-6,-288,-2220,-204,-639,-2393,-13695,-87,-13696,-1643,-101, +-1743,-126,-2449,-2930,-1450,-4,-4832,-475,-430,-58,-4365,-326,-13697,-36,-2522,-215,-2276,-890,-2570,-528,-13698,-167, +-130,-139,-2,-11,-1356,-5,-225,-1624,-13699,-450,-2670,-4833,-3322,-405,-13700,-140,-6346,-1216,-6347, +-1541,-6348,-2690,-2534,-1147,-421,-822,-3999,-3546,-4000,-2056,-13701,-3977,-815,-539,-1598,-1337,-13702,-13703,-13704, +-2267,-891,-13705,-662,-13706,-557,-13707,-778,-2931,-1024,-6349,-3285,-13708,-13709,-13710,-13711,-13712,-13713,-3412, +-601,-13714,-6350,-13715,-13716,-319,-6351,-4001,-2124,-13717,-2535,-120,-13718,-13719,-4681,-3696,-2459,-13720,-1493, +-13721,-13722,-13723,-4901,-13724,-13725, +-13726], +[0,-740,-131,-127,-13727,-6352,-6,-242,-1884,-235,-3172,-73,-184,-221,-3176,-1779], [1,3,8434], [0,8435,8436,8437,8], -[0,-1338], -[0,-13423,-4762,-4763,-4754,-13424,-13425,-13426,-13427,-4749,-4758,-13428,-407,-409,-3136,-4961,-3040,-932,-13429,-1415, --4980,-1419,-1942,-1967,-1978,-2006,-2019,-2162,-2163,-2257,-2375,-2410,-2516,-2548], -[0,-4900,-2257,-13430,-3098,-856,-3100,-13431,-13432,-13433,-13434,-13435,-1783], +[0,-2357], +[0,-13728,-1777,-2583,-1154,-6353,-13729,-13730,-4002,-1019,-2088,-6354,-153,-120,-29,-1780,-47,-1,-13731,-8,-1782,-176, +-4,-121,-160,-6,-36,-80,-467,-740,-57,-2,-818,-262], +[0,-2090,-740,-13732,-127,-42,-52,-13733,-6355,-13734,-13735,-13736,-976], [1,3,8439], [0,8440,0,147,5], -[0,-3,-23,-40,-3538,-3539,-668,-674,-679,-714,-719,-755,-3542,-1022,-13436,-1077,-1107,-1276,-1320,-1349,-13437,-1460, --1548,-1577,-3543,-3544,-1610,-1646,-3546,-3547,-11926,-9151,-2177,-2368,-2378,-2446], +[0,-2284,-11,-21,-4582,-4583,-20,-231,-117,-133,-58,-386,-1746,-257,-13737,-41,-28,-247,-673,-1079,-13738,-272,-23,-1433, +-4584,-1143,-227,-88,-2040,-1497,-2910,-5621,-16,-2001,-814,-125], [1,3,8442], [0,68,15,16,11], [1,3,8444], [0,212,8445,8446,5], -[0,-13438,-13439,-1654,-2198], -[0,-13440,-5827], +[0,-13739,-13740,-3,-81], +[0,-13741,-252], [1,3,8448], [0,0,8449,8450,4], -[0,-351,-3621,-3037,-789,-885,-1654,-7210,-1942,-2127,-2135,-2136,-2198,-2379,-2392,-2410], -[0,-5827,-6408,-788,-7208,-3445,-3100], +[0,-62,-71,-5,-1939,-1064,-3,-1846,-4,-14,-1696,-1258,-81,-33,-155,-2], +[0,-252,-536,-779,-426,-46,-52], [1,3,8452], [0,8453,56,8454,5], -[0,-7590,-305,-7565,-1061,-1406,-13441,-5721], -[0,-13442,-13443,-3445], +[0,-2751,-665,-5319,-4170,-1658,-13742,-3429], +[0,-13743,-13744,-46], [1,3,8456], [0,0,0,8457,9], -[0,-2264,-3276,-2265,-4123,-4121], +[0,-4326,-566,-168,-612,-1013], [1,3,8459], [0,0,8460,8461,4], -[0,-1168,-1177,-1231,-1243,-13444,-1262,-11473,-2416], -[0,-2265,-6816,-13445,-13446,-13447,-13448,-788,-3264,-3223,-1838,-3264,-9702,-6817,-11647,-6422,-6420,-5559,-9692], +[0,-32,-3023,-359,-310,-13745,-632,-6023,-112], +[0,-168,-5185,-13746,-13747,-13748,-13749,-779,-31,-472,-166,-31,-3829,-1174,-2264,-833,-1539,-503,-3825], [1,3,8463], [0,8464,8465,8466,4], -[0,-3164,-13449,-1320,-1549,-13450,-13451,-13452], -[0,-13453,-13454,-12508], -[0,-707,-7347,-8388,-3264,-13455,-13456,-6694,-9357,-13457,-2265,-6817,-9702,-7651,-5554,-13458], +[0,-1279,-13750,-673,-461,-13751,-13752,-13753], +[0,-13754,-13755,-2921], +[0,-334,-1026,-1868,-31,-13756,-13757,-659,-5666,-13758,-168,-1174,-3829,-1181,-193,-13759], [1,3,8468], [0,8469,14,8470,4], -[0,-13459,-2269], -[0,-2265,-7472,-4112,-6730,-13460,-6787,-13461,-13462,-13463,-6786,-13464,-13465,-5514,-5559,-5563,-687,-3958,-3974,-4000, --13466,-13467,-13468,-13469,-13470,-13471], +[0,-13760,-139], +[0,-168,-1180,-474,-2171,-4003,-2173,-6356,-6357,-6358,-3552,-13761,-4004,-243,-503,-2133,-37,-299,-178,-201,-4005,-4006, +-4007,-4008,-6359,-6360], [1,3,8472], [0,8473,8474,8475,5], -[0,-2737,-2738], -[0,-3037,-652,-2736,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-6231,-6422,-5559,-3264,-7472,-4846,-8034,-3223], +[0,-4406,-3145], +[0,-5,-43,-3144,-4,-146,-261,-236,-2,-34], +[0,-447,-833,-503,-31,-1180,-1314,-1184,-472], [1,3,8477], [0,8478,238,8479,4], -[0,-481], -[0,-6817,-11647,-6694,-5514,-3770,-712,-5535,-714,-3974,-4000,-2265,-3975,-5559,-5538,-5549,-5513,-5550,-2547,-1573,-5545, --3958,-5554], +[0,-1045], +[0,-1174,-2264,-659,-243,-568,-217,-707,-133,-178,-201,-168,-445,-503,-616,-760,-1325,-267,-647,-258,-384,-299,-193], [1,3,8481], [0,0,14,8482,4], -[0,-6817,-9310,-6472,-7154,-9311,-4112,-2443,-9312,-6694,-6693,-11647,-5554,-2265], +[0,-1174,-5653,-2692,-2728,-5654,-474,-1706,-3778,-659,-835,-2264,-193,-168], [1,3,8484], [0,0,8485,8486,4], -[0,-519,-1612,-2384,-2541], -[0,-4055,-6817,-3485,-6694,-6693,-11647,-6810,-1838,-727,-3870,-6849,-2444,-6845,-5558,-8292], +[0,-51,-1435,-82,-34], +[0,-108,-1174,-1001,-659,-835,-2264,-1836,-166,-335,-1150,-2715,-136,-1340,-828,-5467], [1,3,8488], [0,0,8489,8490,4], -[0,-1788,-664,-1722,-1654,-932,-2379,-1942,-1729,-2410,-3035,-3037,-3621,-13472,-665,-958,-1656,-940,-967,-4269,-428, --4628,-427], -[0,-2272,-13473,-13474,-3690], +[0,-15,-13,-197,-3,-1,-33,-4,-188,-2,-109,-5,-71,-13762,-239,-9,-974,-12,-25,-754,-19,-3306,-22], +[0,-3110,-13763,-13764,-100], [1,3,8492], [0,8493,8494,8495,5], -[0,-510,-812,-13475,-13476,-1735,-13477,-1758,-1813,-2059,-13478,-13479,-13480,-13481,-13482,-12003,-13483,-13484,-13485, --2518,-1464,-642,-13486,-797,-1298,-1370,-1521,-1548,-1579,-10695,-11015,-13372,-1666,-2062,-9798,-2245,-13487,-10690, --13488,-13489,-13490,-11800,-2531], -[0,-932,-1445,-2319], -[0,-4344,-13491,-11755,-13492,-10705,-13493,-5804,-9733,-5805,-7641,-4161,-9844,-727,-3015,-8901,-8904,-13494,-1066,-5889, --11021,-13495,-5545,-10706,-9800,-13496,-10412,-13497,-11230,-13498,-1764,-13499,-13500,-13501,-6187,-13502,-1958,-6479, --11429,-11722,-13503,-4043,-5196,-13504,-13505,-8027,-13478,-13506,-13507,-12003,-13485,-2273,-13508,-2295,-7307,-4123, --13509], +[0,-59,-35,-13765,-13766,-4256,-13767,-463,-551,-597,-6361,-13768,-13769,-13770,-13771,-3952,-13772,-13773,-6362,-222, +-1089,-1929,-6363,-1060,-3036,-515,-219,-23,-4240,-5902,-2885,-6344,-233,-198,-3840,-813,-13774,-5901,-13775,-13776, +-4009,-6081,-205], +[0,-1,-587,-85], +[0,-1514,-13777,-6068,-13778,-5903,-13779,-5009,-1883,-2645,-712,-1151,-2245,-335,-693,-1871,-2809,-13780,-3015,-402, +-5964,-13781,-384,-5904,-1355,-13782,-1034,-6364,-1892,-13783,-159,-6365,-13784,-13785,-574,-13786,-286,-3516,-3920, +-2266,-6366,-473,-1323,-13787,-13788,-1029,-6361,-13789,-13790,-3952,-6362,-4327,-13791,-2439,-5284,-612,-13792], [1,3,8497], [0,8498,8499,8500,4], -[0,-13510,-13511,-13512,-13513,-668,-671,-5971,-719,-1395,-1460,-13514,-1942,-2355], -[0,-6327,-2843,-50,-86,-3307,-13515,-13516,-3989,-13517,-3035,-3037,-5011,-3738,-428,-3311,-13518,-3312,-461,-2834,-664, --932,-964,-969,-989,-1077,-13519,-1344,-13520,-1448,-13521,-1521,-1534,-5273,-10918,-5670,-1654,-9002,-1771,-4916,-2162, --2177,-2193,-13522,-2286,-2410,-2429,-2446,-2548], -[0,-13523,-5553,-13524,-775,-3099,-7205,-2162,-3754,-5739,-13525,-2006,-3163,-4901], +[0,-13793,-13794,-13795,-13796,-20,-1387,-5038,-58,-1082,-272,-13797,-4,-1128], +[0,-2676,-4431,-357,-49,-63,-13798,-13799,-2550,-13800,-109,-5,-2599,-698,-19,-893,-13801,-1283,-202,-1277,-13,-1,-256, +-64,-786,-41,-13802,-10,-13803,-795,-13804,-219,-17,-3367,-929,-2640,-3,-2816,-65,-1316,-80,-16,-689,-13805,-396,-2,-348, +-125,-262], +[0,-13806,-230,-13807,-24,-441,-2734,-80,-444,-4994,-13808,-6,-2486,-2588], [1,3,8502], [0,0,8503,48,4], -[0,-1415,-2162,-1344,-1449,-1623,-774,-932,-2177,-825,-2501,-920,-1942,-767,-21,-533,-778,-23,-1041,-1534,-1771,-2163, --2503,-86,-2251,-40,-2505,-958,-940,-1419,-3307,-7166], +[0,-8,-80,-10,-78,-259,-407,-1,-16,-232,-18,-1219,-4,-26,-48,-86,-141,-11,-271,-17,-65,-467,-93,-49,-134,-21,-173,-9,-12, +-176,-63,-1025], [1,3,8505], [0,8506,8507,8508,5], -[0,-2277], -[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3136,-427,-428,-932,-967,-4814,-1110,-1344,-1415,-1534,-1942,-2127,-2375, --2379,-2410], -[0,-2276,-775,-5553,-3214,-7208,-9680], +[0,-3111], +[0,-49,-63,-498,-290,-50,-77,-62,-206,-29,-22,-19,-1,-25,-911,-56,-10,-8,-17,-4,-14,-57,-33,-2], +[0,-1998,-24,-230,-45,-426,-3824], [1,3,8510], [0,8511,8512,8513,6], -[0,-1374], -[0,-86,-3307,-3615,-3244,-190,-350,-351,-3266,-3267,-3136,-3037,-427,-428,-932,-967,-4814,-1110,-1344,-1415,-1534,-1771, --1942,-2910,-2127,-2375,-2379,-2387,-2410], -[0,-2277,-9339,-5553,-3215,-775,-7208,-9680], +[0,-3048], +[0,-49,-63,-498,-290,-50,-77,-62,-206,-330,-29,-5,-22,-19,-1,-25,-911,-56,-10,-8,-17,-65,-4,-470,-14,-57,-33,-44,-2], +[0,-3111,-1577,-230,-74,-24,-426,-3824], [1,3,8515], [0,8516,8517,8518,11], -[0,-3776,-5577,-13526,-13527,-786,-1889,-2192,-3768,-2387], -[0,-23,-3341,-3840,-26,-36,-3203,-40,-41,-42,-3267,-406,-407,-409,-410,-3043,-3136,-13528,-3037,-3040,-3052,-13529,-3141, --3081,-13530,-533,-535,-8560,-6046,-3563,-1415,-1419,-3667,-1428,-1440,-1942,-1967,-2006,-2019,-13531,-2034,-2052,-2127, --2131,-2133,-2137,-2138,-2139,-2140,-13532,-13533,-2410], -[0,-2006,-775,-3771,-2278,-4134], +[0,-2535,-4953,-6367,-13809,-722,-38,-1463,-1750,-44], +[0,-11,-1138,-1007,-209,-300,-998,-21,-132,-137,-330,-319,-153,-120,-307,-1278,-29,-13810,-5,-47,-89,-6368,-2030,-1727, +-13811,-86,-270,-3727,-2658,-1747,-8,-176,-3223,-1086,-968,-4,-121,-6,-36,-6369,-235,-287,-14,-466,-1118,-347,-877,-1259, +-229,-13812,-13813,-2], +[0,-6,-24,-1292,-882,-3269], [1,3,8520], [0,8521,8522,8523,11], -[0,-2740], -[0,-21,-23,-36,-3077,-3373,-3204,-38,-40,-41,-43,-44,-47,-3040,-519,-3766,-9723,-742,-932,-940,-1344,-1543,-1942,-1952, --2006,-2019,-2174,-2231,-12979,-3768,-13534,-2410], -[0,-3766,-2455,-13535,-3771,-775], +[0,-2463], +[0,-48,-11,-300,-995,-2501,-398,-170,-21,-132,-174,-90,-450,-47,-51,-1291,-2851,-457,-1,-12,-10,-732,-4,-435,-6,-36,-122, +-130,-2926,-1750,-13814,-2], +[0,-1291,-2006,-13815,-1292,-24], [1,3,8525], [0,8526,22,8527,10], -[0,-635,-1931], -[0,-6413,-775,-13536,-13537,-7192,-1889,-3583,-2280], +[0,-301,-556], +[0,-2164,-24,-13816,-13817,-765,-38,-223,-3113], [1,3,8529], [0,8530,8531,8532,6], -[0,-93,-7195,-94,-95,-12147,-98,-9352,-2840,-755,-777,-781,-812,-1026,-11676,-8142,-6197,-1111,-13538,-1327,-1353,-3190, --8143,-1396,-1499,-13539,-1630,-1639,-1759,-1863,-1889,-1929,-1931,-1934,-2267,-2591,-13540,-4002,-2530], -[0,-50,-13541,-5121,-13542,-13543,-13544,-5685,-3198,-13545,-13546,-13547,-13548,-4036,-6928,-13549,-8335,-13550,-9284, --589,-722,-823,-932,-13551,-958,-959,-1344,-1415,-13552,-1428,-1534,-4984,-1771,-4916,-1904,-1906,-12130,-13553,-1930, --1942,-2094,-2289,-2410], -[0,-3771,-775,-1521,-7148,-8170,-1599,-2162,-3754,-2281,-2289], +[0,-1596,-5252,-1597,-2946,-6137,-2287,-5664,-2475,-386,-4136,-1059,-35,-226,-2265,-5439,-2671,-204,-13818,-3044,-460, +-1734,-3685,-1083,-2368,-13819,-462,-361,-1446,-167,-38,-1453,-556,-464,-395,-2457,-13820,-752,-1714], +[0,-357,-6370,-1318,-6371,-6372,-13821,-2641,-169,-13822,-13823,-13824,-13825,-651,-5200,-13826,-5479,-13827,-3774,-110, +-456,-323,-1,-6373,-9,-145,-10,-8,-2932,-1086,-17,-1783,-65,-1316,-3082,-555,-2914,-13828,-869,-4,-146,-883,-2], +[0,-1292,-24,-219,-224,-577,-99,-80,-444,-182,-883], [1,3,8534], [0,8535,8536,8537,9], -[0,-3085], -[0,-13542,-13543,-932,-13551,-1344,-1534,-1771,-1942,-2094,-2281], -[0,-2281,-13554,-2250], +[0,-2027], +[0,-6371,-6372,-1,-6373,-10,-17,-65,-4,-146,-182], +[0,-182,-13829,-97], [1,3,8539], [0,0,8540,8541,5], -[0,-1788,-1415,-1344,-1868,-855,-932,-708,-2402,-1942,-13555,-767,-2281,-21,-533,-13556,-5128,-2410,-23,-5870,-1534,-1637, --43,-86,-2174,-40,-13557,-959,-977,-958,-3471,-13552,-3842,-940,-967,-2405,-42,-428,-3470,-3307,-935,-427,-3363,-5585, --26,-36], -[0,-13558,-2281,-775,-3754,-1521,-7148,-13559,-3833,-5924,-13560,-712,-13561], +[0,-15,-8,-10,-1251,-944,-1,-149,-124,-4,-13830,-26,-182,-48,-86,-13831,-4875,-2,-11,-829,-17,-677,-174,-49,-122,-21, +-13832,-145,-1065,-9,-298,-2932,-2055,-12,-25,-816,-137,-19,-297,-63,-949,-22,-4547,-1327,-209,-300], +[0,-4010,-182,-24,-444,-219,-224,-13833,-2054,-1331,-13834,-217,-13835], [1,3,8543], [0,8544,8545,8546,4], -[0,-1889,-13562], -[0,-932,-13563,-940,-1110,-1344,-1415,-12241,-13552,-1428,-1534,-1904,-12130,-13564,-1942,-13565,-2281], -[0,-13558,-2281,-775,-7148,-7154], +[0,-38,-13836], +[0,-1,-13837,-12,-56,-10,-8,-6143,-2932,-1086,-17,-3082,-2914,-13838,-4,-13839,-182], +[0,-4010,-182,-24,-224,-2728], [1,3,8548], [0,8549,8550,8551,4], -[0,-781,-1396,-1499,-1620,-13566,-13567,-1931,-1934], -[0,-722,-767,-932,-13568,-1344,-1415,-13552,-1534,-1763,-1889,-12130,-1930,-1942,-2281], -[0,-775,-9231,-7148,-8170,-3754,-2281,-13558], +[0,-1059,-1083,-2368,-2381,-13840,-13841,-556,-464], +[0,-456,-26,-1,-13842,-10,-8,-2932,-17,-415,-38,-2914,-869,-4,-182], +[0,-24,-2235,-224,-577,-444,-182,-4010], [1,3,8553], [0,8554,128,8555,6], -[0,-28,-812,-1107,-2165,-2231], -[0,-775,-3215,-5553,-9406,-1409,-6784], +[0,-2286,-35,-28,-1119,-130], +[0,-24,-74,-230,-5677,-1659,-1835], [1,3,8557], [0,8558,8559,8560,6], -[0,-1026,-1759], -[0,-21,-23,-40,-86,-3307,-190,-3560,-3748,-589,-13569,-767,-774,-778,-824,-825,-932,-940,-6929,-958,-959,-960,-965,-967, --978,-1110,-1344,-1415,-1534,-1623,-1717,-1771,-1942,-2000,-2251,-2275,-2286,-2411,-2501], -[0,-2501,-5932,-2286], +[0,-226,-1446], +[0,-48,-11,-21,-49,-63,-50,-529,-315,-110,-13843,-26,-407,-141,-150,-232,-1,-12,-617,-9,-145,-180,-115,-25,-151,-56,-10, +-8,-17,-259,-3068,-65,-4,-685,-134,-154,-396,-84,-18], +[0,-18,-831,-396], [1,3,8562], [0,0,0,8563,11], -[0,-775,-1889,-12209,-4132,-6806,-3215], +[0,-24,-38,-3957,-400,-2175,-74], [1,3,8565], [0,8566,8567,8568,5], -[0,-723,-13570,-812,-13106,-1069,-1070,-1636,-1640,-1983], -[0,-21,-23,-38,-40,-44,-86,-3307,-571,-7124,-11178,-617,-633,-744,-767,-932,-946,-952,-966,-1004,-1010,-1053,-1098,-1344, --1534,-1610,-1654,-1685,-1788,-2094,-2099,-2125,-2198,-13571,-13572,-2541,-2568], -[0,-9733,-5998,-5998,-3690,-510,-5867,-523,-5391,-3323,-13573,-1116,-1334,-1334,-1342,-9128,-1961,-1961,-5923,-2105,-2105, --9176,-13503,-3691,-2122,-13574,-2291,-7430,-6408,-2533,-2540], +[0,-4130,-6374,-35,-3996,-628,-955,-1104,-260,-465], +[0,-48,-11,-170,-21,-90,-49,-63,-777,-5240,-3915,-163,-60,-581,-26,-1,-1404,-847,-75,-40,-850,-1638,-486,-10,-17,-227,-3, +-1441,-15,-146,-1692,-7,-81,-13844,-13845,-34,-993], +[0,-1883,-1535,-1535,-100,-59,-656,-194,-3390,-351,-13846,-387,-103,-103,-388,-3764,-171,-171,-504,-111,-111,-5625,-6366, +-422,-1995,-13847,-690,-2746,-536,-743,-2011], [1,3,8570], [0,8571,8572,7,6], -[0,-10528], -[0,-3198,-11232,-3037,-589,-10300,-1671,-8973,-2410,-2469], +[0,-5863], +[0,-169,-6001,-5,-110,-3870,-375,-3750,-2,-30], [1,3,8574], [0,8575,8576,8577,5], -[0,-1636,-2291,-746], -[0,-1788,-1722,-1654,-2210,-932,-2198,-1004,-1972,-617,-744,-86,-958,-934,-3307], -[0,-3440,-1334,-2105,-2291,-4873,-4004,-3634], +[0,-1104,-690,-1213], +[0,-15,-197,-3,-27,-1,-81,-40,-181,-163,-581,-49,-9,-185,-63], +[0,-609,-103,-111,-690,-573,-76,-61], [1,3,8579], [0,8580,8581,8582,4], -[0,-615,-1636], -[0,-664,-665,-2123,-2517,-617,-744,-1004,-1654,-2198], -[0,-2293,-2291,-2105,-4873,-3440,-1334,-4004,-3634,-1961,-13575], +[0,-114,-1104], +[0,-13,-239,-1461,-2009,-163,-581,-40,-3,-81], +[0,-123,-690,-111,-573,-609,-103,-76,-61,-171,-13848], [1,3,8584], [0,0,8585,8586,5], -[0,-2541,-519,-2384,-3037], -[0,-712,-5535,-714,-3974,-4000,-687,-5514,-3770,-3975,-5549,-5513,-5550,-2547,-3958,-6520,-13576,-13577,-6659,-13578, --13579], +[0,-34,-51,-82,-5], +[0,-217,-707,-133,-178,-201,-37,-243,-568,-445,-760,-1325,-267,-647,-299,-3525,-13849,-13850,-710,-13851,-13852], [1,3,8588], [0,8589,8590,8591,6], -[0,-3195,-3115,-5032,-426,-461,-5113,-8294,-703,-5034,-5035,-13580,-4788,-4789,-1588,-13581], -[0,-3180,-3983,-350,-351,-3266,-3989,-5114,-3037,-5040,-928,-2127,-2231,-2654,-2410,-2469], -[0,-2299,-11193,-3161,-3261,-7651], +[0,-1735,-1729,-4856,-320,-202,-1522,-3704,-302,-2097,-3344,-13853,-2585,-2089,-296,-13854], +[0,-1136,-366,-77,-62,-206,-2550,-3354,-5,-4857,-87,-14,-130,-313,-2,-30], +[0,-221,-5991,-53,-746,-1181], [1,3,8593], [0,8594,8595,8596,4], -[0,-3180,-679,-4787,-1863,-5037], -[0,-350,-4062,-351,-3561,-3267,-13582,-644,-2127,-2130,-4063,-2299,-2410,-13583,-13584,-11164,-11165,-13585,-13586], -[0,-2299,-687], +[0,-1136,-117,-1312,-167,-1785], +[0,-77,-238,-62,-237,-330,-13855,-1384,-14,-875,-900,-221,-2,-13856,-13857,-5986,-5987,-13858,-13859], +[0,-221,-37], [1,3,8598], [0,0,8599,8600,4], -[0,-23,-40,-86,-3307,-13587,-13588,-4776,-3037,-13589,-8336,-518,-5859,-711,-740,-932,-1521,-1889,-13590,-1907,-1942, --1974,-2162,-2286,-2289,-2299,-2410,-2469], -[0,-2299,-9263,-2410,-1521,-2286,-2162,-3754,-1974,-711], +[0,-11,-21,-49,-63,-13860,-13861,-757,-5,-13862,-2787,-157,-1814,-308,-385,-1,-219,-38,-13863,-868,-4,-642,-80,-396,-883, +-221,-2,-30], +[0,-221,-2832,-2,-219,-396,-80,-444,-642,-308], [1,3,8602], [0,8603,8604,8605,4], -[0,-2746,-1107,-2303,-510,-10310,-2460,-2542,-2550,-1442,-2520,-1689,-13591,-1566,-8054,-4733,-13592,-5981], -[0,-2541,-1415,-1521,-2162,-1880,-2286,-1870,-959,-960,-13593,-13594], -[0,-3167,-3843,-3839,-7715,-9278,-9279,-9471,-3262,-775,-2162,-1521,-2286,-3271,-9339,-3264,-9472,-9473,-9474,-1689,-7419], +[0,-1719,-28,-602,-59,-3871,-70,-2012,-98,-101,-564,-519,-13864,-1238,-5416,-1310,-13865,-3460], +[0,-34,-8,-219,-80,-804,-396,-978,-145,-180,-4011,-13866], +[0,-745,-1008,-265,-621,-1878,-2834,-2842,-116,-24,-80,-219,-396,-1282,-1577,-31,-1354,-5691,-2237,-519,-661], [1,3,8607], [0,8608,8609,8610,4], -[0,-719,-780,-781,-2888,-2746,-1863,-2165], -[0,-190,-5121,-350,-351,-3266,-5685,-7169,-3136,-3037,-13312,-3715,-767,-932,-1110,-1415,-1870,-1874,-1880,-1942,-2125, --2127,-2325,-2384,-2410], -[0,-2303,-3839,-7175,-1644], +[0,-58,-2993,-1059,-2478,-1719,-167,-1119], +[0,-50,-1318,-77,-62,-206,-2641,-5247,-29,-5,-6333,-3231,-26,-1,-56,-8,-978,-391,-804,-4,-7,-14,-884,-82,-2], +[0,-602,-265,-620,-228], [1,3,8612], [0,8613,8614,8615,4], -[0,-824,-1570,-13595,-2415], -[0,-519,-526,-528,-556,-11733,-562,-566,-615,-932,-13596,-1626,-1650,-2210,-2501], -[0,-2501,-3862,-13597,-13595,-5196,-8615], +[0,-150,-1431,-6375,-1269], +[0,-51,-179,-91,-580,-6062,-1048,-429,-114,-1,-13867,-1102,-72,-27,-18], +[0,-18,-107,-13868,-6375,-1323,-2222], [1,3,8617], [0,8618,8619,8620,8], -[0,-461,-823,-1107,-1460], -[0,-932,-1942,-2322,-13598], -[0,-4847,-13599,-3696,-8442,-856,-2305,-5885,-5886,-3262,-3960,-8443,-8444,-8445,-3438], +[0,-202,-323,-28,-272], +[0,-1,-4,-39,-13869], +[0,-571,-13870,-3227,-3718,-42,-3115,-3448,-2142,-116,-569,-5510,-5511,-5512,-697], [1,3,8622], [0,8623,8624,8625,4], -[0,-1111,-1442,-719,-13600,-13601], -[0,-932,-2469,-1942,-3664,-13602], -[0,-4847,-3671,-13603,-856,-3690,-9339,-3485], +[0,-204,-101,-58,-13871,-13872], +[0,-1,-30,-4,-105,-13873], +[0,-571,-399,-13874,-42,-100,-1577,-1001], [1,3,8627], [0,0,131,8628,4], -[0,-3812,-4847,-3160,-2308,-1004,-856,-3671,-13604,-5406,-2307,-4101,-13605,-13606], +[0,-3242,-571,-102,-4330,-40,-42,-399,-13875,-1808,-4329,-1510,-13876,-13877], [1,3,8630], [0,8631,8632,8633,4], -[0,-3434], -[0,-927,-1004,-13607,-1654,-1788,-1978], -[0,-4847,-1004,-3160,-4055,-856], +[0,-3205], +[0,-1630,-40,-13878,-3,-15,-160], +[0,-571,-40,-102,-108,-42], [1,3,8635], [0,8636,8637,8638,6], -[0,-2416,-1813], -[0,-1548,-1004,-13608,-1654,-1003,-13609,-1521,-13610,-600,-13611,-1859,-633,-6656,-1446], -[0,-3110,-7651,-3264,-13432,-13612,-6876,-1004,-6301], +[0,-112,-551], +[0,-23,-40,-13879,-3,-411,-13880,-219,-13881,-1609,-13882,-867,-60,-128,-165], +[0,-277,-1181,-31,-6355,-13883,-5195,-40,-3495], [1,3,8640], [0,0,0,8641,9], -[0,-2311,-13613,-12449,-2363,-5270,-3162,-752,-1861,-3994,-3161,-13614,-12613,-13615,-3862,-2006,-2476,-13616], +[0,-4332,-4012,-1359,-418,-291,-95,-943,-2400,-306,-53,-6376,-1589,-1590,-107,-6,-73,-2933], [1,3,8643], [0,8644,8645,8646,4], -[0,-13617,-13618,-13619], -[0,-617,-767,-1004,-13620,-1415,-1676,-2125,-2410], -[0,-2105,-1334,-1342,-3324,-633,-12397,-6367], +[0,-13884,-6377,-13885], +[0,-163,-26,-40,-13886,-8,-678,-7,-2], +[0,-111,-103,-388,-443,-60,-2919,-2163], [1,3,8648], [0,0,0,8649,9], -[0,-13621,-13622,-1673,-11230,-1819,-9261,-12578,-7084,-13623,-13624,-13625,-13626,-13627,-13628,-13629,-12218,-13630, --3708,-13631,-10412,-8801,-13632,-13633,-13634,-13635,-5150,-13636,-13637,-13638,-13639,-13640,-13641,-13642,-13643, --13644,-7606,-13645,-13646,-6524,-13647,-13648,-13649,-6712,-13650,-13651,-10245,-13652,-13653,-13654,-13655,-13656, --13657,-13658,-3445,-13173,-13659,-13660], +[0,-13887,-13888,-1241,-1892,-1448,-1877,-2923,-764,-13889,-13890,-13891,-6378,-13892,-13893,-13894,-6140,-13895,-2526, +-13896,-1034,-1352,-13897,-13898,-13899,-13900,-1155,-13901,-13902,-13903,-13904,-13905,-6379,-13906,-13907,-13908,-2198, +-13909,-13910,-1831,-13911,-13912,-6380,-5163,-13913,-13914,-5807,-6381,-13915,-13916,-13917,-13918,-13919,-13920,-46, +-6316,-13921,-13922], [1,3,8651], [0,0,8652,7,4], -[0,-1805,-1496,-1654,-1650,-2125,-2127,-2334,-615,-1729,-13661,-8559,-2516,-2234,-4062,-2140,-3561,-13662,-351,-13663], +[0,-152,-490,-3,-72,-7,-14,-177,-114,-188,-13923,-2215,-818,-147,-238,-229,-237,-13924,-62,-13925], [1,3,8654], [0,8655,8656,8657,4], -[0,-2531,-469,-754,-13664,-13665,-13666,-13667,-1548,-1676,-13668,-13669,-13670,-13671,-1004,-13672,-13673,-13674,-13675, --13676,-512,-617,-724,-737,-13677,-496,-44,-13678], -[0,-1708,-473,-13679,-13680,-2195,-13681,-722,-13682], -[0,-13683,-13684], +[0,-205,-183,-368,-13926,-13927,-13928,-13929,-23,-678,-13930,-13931,-13932,-13933,-40,-13934,-13935,-13936,-13937,-13938, +-1378,-163,-367,-846,-13939,-2296,-90,-13940], +[0,-1675,-2295,-13941,-13942,-276,-13943,-456,-13944], +[0,-13945,-13946], [1,3,8659], [0,0,8660,8661,9], -[0,-5369,-2387,-932,-1111,-2127,-2469,-1942,-2410,-23,-3037,-40,-2132,-2411,-3664,-3326,-958,-5122,-6593,-13685,-3267, --351,-10022,-3344], -[0,-2318,-2316,-775,-3205,-13686,-13687,-1631,-9342,-13688], +[0,-2131,-44,-1,-204,-14,-30,-4,-2,-11,-5,-21,-417,-84,-105,-207,-9,-3357,-922,-13947,-330,-62,-2864,-2499], +[0,-559,-1265,-24,-2032,-13948,-13949,-491,-5660,-13950], [1,3,8663], [0,0,8664,7,4], -[0,-815,-3037,-3751,-1588,-2232,-13689,-3195], +[0,-509,-5,-1503,-296,-811,-13951,-1735], [1,3,8666], [0,8667,0,8668,10], -[0,-13690,-13691,-13692,-13693,-13694,-13695,-13696,-13697,-13698,-13699,-13700,-13701,-13702,-13703,-13704,-13705,-13706, --13707,-13708,-13709], -[0,-507,-2319,-4004,-3634,-3161,-687,-13710,-13711], +[0,-13952,-13953,-13954,-13955,-13956,-13957,-13958,-13959,-13960,-13961,-13962,-13963,-13964,-13965,-13966,-13967,-13968, +-13969,-13970,-6382], +[0,-280,-85,-76,-61,-53,-37,-13971,-13972], [1,3,8670], [0,8671,8672,8673,9], -[0,-668,-883,-1040,-1548,-1951,-10854,-13712,-2347], -[0,-13713], -[0,-2322,-2319,-1654,-4679,-6863], +[0,-20,-1397,-510,-23,-871,-5934,-13973,-69], +[0,-13974], +[0,-39,-85,-3,-1153,-1023], [1,3,8675], [0,0,8676,7,6], -[0,-1415,-932,-1110,-1942,-190,-533,-23,-965,-3560,-40,-959,-958,-6929,-978,-940,-967,-3748], +[0,-8,-1,-56,-4,-50,-86,-11,-115,-529,-21,-145,-9,-617,-151,-12,-25,-315], [1,3,8678], [0,8679,8680,8681,9], -[0,-13714,-13715,-13716,-655,-821,-6369,-13717,-1065,-1097,-1107,-13718,-1285,-1370,-7394,-1646,-1659,-1794,-5849,-1795, --1797,-2114,-8057], -[0,-5834,-505,-516,-725,-767,-887,-13719,-5835,-921,-932,-6282,-1408,-1442,-13720,-1777,-1788,-2156,-2177,-2319,-8573], -[0,-2319,-4004,-13721,-507,-4865], +[0,-13975,-13976,-13977,-939,-780,-2681,-13978,-954,-1646,-28,-13979,-672,-515,-3604,-88,-1672,-1245,-2138,-1447,-591, +-126,-3681], +[0,-244,-1601,-269,-309,-26,-1398,-6383,-533,-1400,-1,-3494,-1235,-101,-13980,-273,-15,-189,-16,-85,-1870], +[0,-85,-76,-13981,-280,-94], [1,3,8683], [0,8684,8685,7,5], -[0,-13722,-13723,-9084,-11721,-13724], -[0,-2319,-1722,-2386,-13725,-2125,-2402,-1942,-11719,-3037,-908,-13726], +[0,-13982,-13983,-1875,-6061,-13984], +[0,-85,-197,-561,-13985,-7,-124,-4,-2903,-5,-1628,-13986], [1,3,8687], [0,8688,8689,8690,5], -[0,-1976,-2325], -[0,-2125,-13727,-2250], -[0,-2323,-1076,-6656,-7738,-7421,-5827], +[0,-1253,-884], +[0,-7,-6384,-97], +[0,-312,-303,-128,-5358,-427,-252], [1,3,8692], [0,8693,8694,7,6], -[0,-13728,-13729,-13730], -[0,-13727,-2250,-725], +[0,-13987,-2934,-13988], +[0,-6384,-97,-309], [1,3,8696], [0,33,8697,8698,6], -[0,-6486,-6627,-3136,-3037,-427,-428,-756,-928,-932,-943,-958,-966,-968,-1415,-1942,-2375,-2410], -[0,-13731,-3555,-13732,-13733,-3100,-13734,-3445,-13735,-11074,-6235], +[0,-1543,-3536,-29,-5,-22,-19,-55,-87,-1,-83,-9,-75,-67,-8,-4,-57,-2], +[0,-6385,-3215,-6386,-6387,-52,-13989,-46,-6388,-2887,-1537], [1,3,8700], [0,0,8701,8702,4], -[0,-6486,-13736,-13737,-3617,-6627,-3136,-3037,-4203,-427,-428,-617,-720,-796,-13738,-932,-943,-958,-966,-968,-1344,-1415, --1534,-1753,-7760,-1942,-2293,-2375,-2410], -[0,-13731,-3555,-13732,-13733,-3445,-13735,-6367,-1004], +[0,-1543,-13990,-13991,-264,-3536,-29,-5,-1015,-22,-19,-163,-482,-295,-13992,-1,-83,-9,-75,-67,-10,-8,-17,-285,-3655,-4, +-123,-57,-2], +[0,-6385,-3215,-6386,-6387,-46,-6388,-2163,-40], [1,3,8704], [0,8705,0,8706,8], -[0,-812,-1723,-6127], -[0,-13739,-13740,-13741,-13742,-13743,-596,-13744,-3445], +[0,-35,-864,-2151], +[0,-4013,-13993,-13994,-6389,-13995,-667,-13996,-46], [1,3,8708], [0,8709,8710,8711,8], -[0,-812,-1723], -[0,-190,-3561,-3198,-3037,-8612,-865,-932,-940,-972,-978,-1733,-1942,-2402,-2405,-2410,-2411,-2466,-6859,-2469], -[0,-13739,-13742,-2328,-3966,-3445], +[0,-35,-864], +[0,-50,-237,-169,-5,-2221,-210,-1,-12,-724,-151,-590,-4,-124,-816,-2,-84,-104,-923,-30], +[0,-4013,-6389,-4335,-144,-46], [1,3,8713], [0,8714,27,258,5], -[0,-2125,-1650], +[0,-7,-72], [1,3,8716], [0,8717,8718,8719,4], -[0,-1399,-5917,-2400,-13387], -[0,-3037,-519,-1849,-2363,-2384,-2541], -[0,-2330,-9214,-1847,-6656,-7421,-7420,-6909,-13745,-11846,-13746,-6555,-13747], +[0,-966,-2653,-215,-6348], +[0,-5,-51,-492,-418,-82,-34], +[0,-603,-3767,-249,-128,-427,-1027,-2178,-6390,-3944,-6391,-920,-6392], [1,3,8721], [0,8722,0,8723,9], -[0,-10893,-13748,-13749,-13750,-13751,-13752,-13753,-13754], -[0,-3974,-4000,-5514,-687,-2547,-712,-13755,-13756,-5553,-3962,-13757,-12898,-13758,-5564,-3824,-6716,-6765,-13759,-13760, --13761,-12704,-6527,-7715,-9235,-8642], +[0,-5940,-13997,-13998,-13999,-4014,-14000,-14001,-14002], +[0,-178,-201,-243,-37,-647,-217,-14003,-14004,-230,-352,-14005,-2925,-14006,-2134,-1294,-2170,-5171,-14007,-14008,-14009, +-3978,-292,-621,-1193,-1349], [1,3,8725], [0,8726,0,8727,11], -[0,-13762,-6372,-1370,-13763,-2347,-13764], -[0,-3824,-3974,-5514,-13765,-13766], +[0,-6393,-2682,-515,-14010,-69,-14011], +[0,-1294,-178,-243,-14012,-14013], [1,3,8729], [0,8730,8731,8732,6], -[0,-13767,-461,-719,-2234], -[0,-13768,-13769,-932,-8150,-985,-1654,-1939,-2127,-2177,-2231], -[0,-9216,-2334,-2415,-2416,-1644,-6684,-3214,-3217,-8108,-3184,-6052,-13770,-4795,-8165,-6434,-510,-5867], +[0,-14014,-202,-58,-147], +[0,-14015,-14016,-1,-5443,-370,-3,-234,-14,-16,-130], +[0,-1031,-177,-1269,-112,-228,-834,-45,-350,-1185,-349,-2147,-4015,-446,-2209,-1540,-59,-656], [1,3,8734], [0,8735,8736,8737,5], -[0,-2334,-1429,-2168,-2182,-3180], -[0,-824,-1415,-1344,-1623,-774,-932,-825,-928,-2501,-1942,-367,-767,-2416,-21,-190,-2410,-23,-3037,-1041,-1534,-1771, --2503,-11510,-86,-965,-3560,-13771,-2251,-40,-2411,-959,-748,-960,-958,-6929,-978,-940,-967,-3748,-6930,-3307], -[0,-9216,-2416,-2415,-2334,-2501,-7172,-6059,-6454,-9696,-9234,-6059,-6684,-1644,-7175,-7176], +[0,-177,-1236,-646,-1121,-1136], +[0,-150,-8,-10,-259,-407,-1,-232,-87,-18,-4,-245,-26,-112,-48,-50,-2,-11,-5,-271,-17,-65,-93,-6028,-49,-115,-529,-14017, +-134,-21,-84,-145,-508,-180,-9,-617,-151,-12,-25,-315,-3562,-63], +[0,-1031,-112,-1269,-177,-18,-2731,-1333,-575,-2849,-1876,-1333,-834,-228,-620,-1844], [1,3,8739], [0,8740,8741,8742,4], -[0,-13772,-13773,-13774,-13775,-13776,-717,-718,-10293,-1026,-10745,-7576], -[0,-1448,-1729], -[0,-2337,-4004,-4043,-687,-5119,-3634,-3673,-2322,-2319,-519,-1654], +[0,-14018,-14019,-14020,-14021,-14022,-2328,-2329,-2869,-226,-5912,-2197], +[0,-795,-188], +[0,-1467,-76,-473,-37,-401,-61,-611,-39,-85,-51,-3], [1,3,8744], [0,8745,8746,8747,11], -[0,-615,-668,-1107,-1548,-1610,-1650,-13777,-13778], -[0,-3244,-190,-5294,-5767,-3036,-3044,-3037,-4372,-427,-428,-3664,-827,-932,-6611,-13779,-2210,-13780,-13781,-2391,-2392, --2410,-13782,-2469], -[0,-1599,-4004,-5119,-13783,-856,-3671], +[0,-114,-20,-28,-23,-227,-72,-14023,-14024], +[0,-290,-50,-4900,-3439,-471,-143,-5,-279,-22,-19,-105,-1392,-1,-2699,-14025,-27,-14026,-14027,-172,-155,-2,-14028,-30], +[0,-99,-76,-401,-14029,-42,-399], [1,3,8749], [0,8750,8751,8752,4], -[0,-23,-33,-37,-10983,-3395,-3383,-3376,-3384,-3393,-3350,-3385,-3374,-38,-40,-6056,-41,-44,-13784,-13785,-3037,-6558, --3442,-541,-6067,-13786,-7435,-664,-668,-13787,-711,-719,-812,-815,-824,-13788,-11460,-834,-13789,-11328,-5910,-3606, --999,-13790,-1111,-1119,-12933,-1341,-5458,-13791,-1366,-1392,-10697,-1393,-13792,-1399,-1460,-1548,-13793,-1591,-11015, --1666,-13794,-1689, --1699,-13795,-1839,-1866,-13796,-1880,-6467,-13797,-1966,-1982,-13798,-13799,-5915,-2115,-2160,-2177,-3169,-2234,-2270, --13800,-13801,-13802,-13803,-13804,-13805,-13806,-13807,-13808,-13809,-2359,-2369,-2410,-13810,-13811], -[0,-13812,-7590,-13813,-4066,-350,-6572,-351,-13814,-13815,-3035,-3198,-13816,-9939,-9283,-11011,-3622,-3735,-3199,-3172, --9660,-13817,-427,-428,-535,-579,-617,-13818,-13819,-665,-9077,-3050,-729,-754,-767,-13820,-930,-932,-13821,-7353,-1004, --13822,-1168,-1174,-13823,-1196,-1197,-1226,-13824,-13825,-8498,-1243,-13826,-1262,-3809,-1608,-1632,-1646,-13827,-1685, --13828,-1972,-2006,-13829, --2127,-2142,-2187,-2210,-7220,-2269,-13830,-2387,-2416], -[0,-13831,-5112,-4865,-6413,-3258,-3995,-3634,-4864,-4004,-4043,-4873,-507,-5855,-13832,-6948,-6950,-510,-5867], +[0,-11,-578,-1040,-5957,-3199,-4552,-1139,-3195,-3198,-3191,-3196,-2502,-170,-21,-1167,-132,-90,-14030,-14031,-5,-2169, +-4562,-1047,-3478,-14032,-5304,-13,-20,-14033,-308,-58,-35,-509,-150,-14034,-3922,-203,-6394,-3917,-5027,-2044,-118, +-14035,-204,-324,-6268,-1960,-3411,-14036,-793,-547,-2251,-1081,-14037,-966,-272,-23,-14038,-733,-2885,-233,-14039,-519, +-639,-14040,-593,-1111,-14041,-804,-1541,-14042,-392,-1456,-14043,-14044,-3453,-644,-1996,-16,-2488,-147,-1264,-14045, +-14046,-14047,-14048,-14049,-14050,-14051,-4016,-14052,-14053,-161,-691,-2,-14054,-14055], +[0,-14056,-2751,-14057,-530,-77,-2697,-62,-14058,-14059,-109,-169,-14060,-1356,-5647,-5960,-4597,-822,-140,-2489,-2848, +-14061,-22,-19,-270,-1381,-163,-14062,-14063,-239,-2229,-3165,-218,-368,-26,-14064,-408,-1,-14065,-2738,-40,-14066,-32, +-585,-14067,-3026,-513,-1232,-14068,-14069,-5520,-310,-14070,-632,-2541,-973,-1103,-88,-14071,-1441,-14072,-181,-6, +-14073, +-14,-305,-393,-27,-5259,-139,-14074,-44,-112], +[0,-6395,-759,-94,-2164,-892,-2065,-61,-572,-76,-473,-573,-280,-1163,-14075,-924,-2722,-59,-656], [1,3,8754], [0,8755,8756,8757,6], -[0,-7602,-13833,-501,-8864,-8898,-812,-13834,-851,-1098,-7772,-13835,-13836,-2324,-2359,-2426], -[0,-11344,-13837,-11339,-3198,-11347,-13838,-13839,-3628], -[0,-2340,-7606,-3634], +[0,-5327,-14076,-842,-3741,-3743,-35,-14077,-2999,-486,-1857,-14078,-14079,-1267,-161,-289], +[0,-6010,-14080,-6009,-169,-2896,-14081,-6396,-750], +[0,-1999,-2198,-61], [1,3,8759], [0,8760,8761,8762,5], -[0,-1548,-4654,-13840,-10846], -[0,-3037,-427,-428,-633,-13841,-13842,-767,-815,-13843,-13844,-1398,-1650,-1771,-1788,-2125,-2250,-13845,-13846,-2341, --2379,-5482,-2410], -[0,-4873,-3440,-4215,-8611,-4216,-13847,-11378], +[0,-23,-3309,-14082,-5933], +[0,-5,-22,-19,-60,-6397,-14083,-26,-509,-14084,-14085,-1656,-72,-65,-15,-7,-97,-14086,-14087,-1703,-33,-3413,-2], +[0,-573,-609,-317,-1571,-1763,-14088,-3918], [1,3,8764], [0,8765,8766,8767,4], -[0,-4733,-573,-615,-13762,-719,-724,-735,-999,-1004,-13848,-1107,-1336,-1442,-1548,-1650,-1689,-1737,-1778,-13849,-2125, --2228,-13850,-13851,-8573,-2359], -[0,-13852,-633,-664,-7976,-13853,-674,-838,-932,-7979,-964,-1654,-2105,-13854,-2195,-2210,-2211,-2229,-2322], -[0,-3214,-3634,-11116,-4865], +[0,-1310,-1924,-114,-6393,-58,-367,-2991,-118,-40,-14089,-28,-586,-101,-23,-72,-519,-1445,-2393,-14090,-7,-810,-14091, +-14092,-1870,-161], +[0,-14093,-60,-13,-5395,-14094,-231,-1393,-1,-3673,-256,-3,-111,-14095,-276,-27,-190,-1262,-39], +[0,-45,-61,-5981,-94], [1,3,8769], [0,0,8770,8771,4], -[0,-2319,-2322,-689], -[0,-5554,-4002,-9846,-4111,-10844,-6724], +[0,-85,-39,-1389], +[0,-193,-752,-2859,-902,-5932,-3543], [1,3,8773], [0,0,8774,8775,4], -[0,-190,-351,-3266,-932,-13855,-952,-957,-960,-1110,-13856,-1446,-1588,-1880,-1978,-1989,-2127,-2393], -[0,-2344,-13857,-3214,-13858,-13859,-13860,-13861,-13862,-13863,-13864,-13865,-659,-3839,-5177], +[0,-50,-62,-206,-1,-14096,-847,-723,-180,-56,-6398,-165,-296,-804,-160,-376,-14,-3121], +[0,-1126,-14097,-45,-6399,-14098,-14099,-6400,-14100,-14101,-14102,-14103,-322,-265,-615], [1,3,8777], [0,0,8778,8779,4], -[0,-21,-23,-38,-40,-44,-3326,-534,-7156,-753,-932,-7157,-940,-967,-985,-1098,-13866,-7158,-1344,-1471,-1473,-1475,-1479, --1483,-1485,-1490,-1492,-1534,-1646,-13867,-1763,-1942,-1991,-2127,-7161,-2501], -[0,-811,-7329], +[0,-48,-11,-170,-21,-90,-207,-96,-5242,-158,-1,-5243,-12,-25,-370,-486,-6401,-5244,-10,-79,-1428,-138,-213,-414,-1662, +-637,-517,-17,-88,-14104,-415,-4,-1457,-14,-5245,-18], +[0,-1621,-2187], [1,3,8781], [0,0,8782,8783,9], -[0,-8388,-2322,-8393], -[0,-5827,-8027,-13868,-11441], +[0,-1868,-39,-2790], +[0,-252,-1029,-14105,-2260], [1,3,8785], [0,8786,8787,8788,4], -[0,-2062], -[0,-599,-640,-664,-13869,-1654,-13870,-2250,-13871], -[0,-5827,-13872,-2346,-6408], +[0,-198], +[0,-1926,-294,-13,-14106,-3,-14107,-97,-14108], +[0,-252,-6402,-469,-536], [1,3,8790], [0,0,0,8791,11], -[0,-12735,-705,-3262,-5925,-1961], +[0,-6217,-941,-116,-3454,-171], [1,3,8793], [0,0,14,8794,6], -[0,-13873,-13874,-13875,-2350,-13876,-1847,-11845,-7421,-2440,-7727,-5845], +[0,-14109,-6403,-6404,-2000,-6405,-249,-2907,-427,-2004,-1856,-477], [1,3,8796], [0,8797,210,8798,4], -[0,-668,-12908,-1040,-9236,-13877,-1951,-2343], -[0,-1127,-8906,-9460,-4123,-13878,-9330,-13879,-9225,-6187,-8906], +[0,-20,-6263,-510,-2827,-14110,-871,-885], +[0,-54,-2811,-3795,-612,-14111,-2836,-14112,-5632,-574,-2811], [1,3,8800], [0,8801,8802,8803,4], -[0,-13880,-13881,-13882,-13883,-13884,-13885,-13886,-13887,-13888,-13889,-13890,-13891,-13892,-13893,-13894,-13895,-13896, --13897,-13898,-13899,-13900,-13901,-13902,-13903,-13904,-13905,-13906,-13907,-13908,-13909,-13910,-13911,-13912,-13913, --13914,-13915,-13916,-13917,-13918,-13919,-13920,-13921,-13922,-13923,-13924,-13925,-13926,-13927,-13928,-13929,-13930, --13931,-13932,-13933,-13934,-13935,-13936,-13937,-13938,-13939,-13940,-13941,-13942, --13943,-13944,-13945], -[0,-1076,-1107,-1168,-1847,-2162,-1654,-2006,-932,-1548,-2125,-784,-1889,-2501,-923,-1077,-1405,-767,-1003,-1248,-1743, --2019,-778,-1183,-1967,-1187,-2163,-518,-1238,-1244,-2275,-13946,-13947,-1792,-2508,-1184,-1514,-1908,-13948,-3054,-969, --933,-958,-962,-10533,-13949,-796,-1017], -[0,-2006,-3159,-3095,-3098,-3160,-3161,-3100,-13950,-2352,-13951], +[0,-14113,-14114,-14115,-14116,-14117,-14118,-14119,-14120,-14121,-14122,-14123,-14124,-14125,-14126,-14127,-14128,-14129, +-14130,-14131,-14132,-14133,-14134,-14135,-14136,-14137,-14138,-14139,-14140,-14141,-14142,-14143,-14144,-14145,-14146, +-14147,-14148,-14149,-14150,-14151,-14152,-14153,-14154,-14155,-14156,-14157,-14158,-14159,-14160,-14161,-14162,-14163, +-14164,-14165,-14166,-14167,-14168,-14169,-14170,-14171,-14172,-14173,-14174,-14175, +-14176,-14177,-14178], +[0,-303,-28,-32,-249,-80,-3,-6,-1,-23,-7,-369,-38,-18,-1402,-41,-66,-26,-411,-1418,-1242,-36,-141,-1953,-121,-631,-467, +-157,-1417,-962,-154,-14179,-14180,-241,-524,-960,-1968,-493,-14181,-4488,-64,-255,-9,-148,-5866,-14182,-295,-851], +[0,-6,-106,-131,-127,-102,-53,-52,-14183,-4336,-14184], [1,3,8805], [0,8806,8807,7,6], -[0,-10459,-812,-10622,-10623,-1792,-1983], -[0,-526,-535,-554,-559,-932,-943,-968,-974,-1004,-1088,-1654,-11943,-2251,-2293], +[0,-3882,-35,-3893,-5890,-241,-465], +[0,-179,-270,-1922,-321,-1,-83,-67,-129,-40,-1645,-3,-2911,-134,-123], [1,3,8809], [0,0,0,8810,5], -[0,-589,-13952,-13241], +[0,-110,-14185,-2928], [1,3,8812], [0,0,8813,8814,5], -[0,-13953], -[0,-712,-3215,-13954], +[0,-14186], +[0,-217,-74,-14187], [1,3,8816], [0,0,0,8817,11], -[0,-3494,-2356,-7754,-3214,-3264,-5554,-10109,-10110,-10114,-3495,-10111,-3498], +[0,-821,-3118,-2757,-45,-31,-193,-3863,-3864,-3866,-895,-3865,-1003], [1,3,8819], [0,0,8820,8821,4], -[0,-3037,-13239,-932,-940,-967,-978,-1942,-2892,-2410,-2411,-2466,-2469], -[0,-5922,-13955,-13956], +[0,-5,-2927,-1,-12,-25,-151,-4,-380,-2,-84,-104,-30], +[0,-535,-14188,-14189], [1,3,8823], [0,0,0,8824,8], -[0,-4216,-4215,-2410,-13957], +[0,-1763,-317,-2,-14190], [1,3,8826], [0,0,8827,258,4], -[0,-1654,-932,-1405,-6726,-964], +[0,-3,-1,-66,-3544,-256], [1,3,8829], [0,8830,8831,8832,4], -[0,-2036], -[0,-23,-13958,-3156,-1942,-2410], -[0,-2006,-3159,-13959,-12662,-3825,-13960,-13961,-2034,-2053,-13962,-13963,-2360,-4127,-4122,-13964,-687,-3162,-5270, --5271,-3578,-13965], +[0,-4293], +[0,-11,-14191,-1732,-4,-2], +[0,-6,-106,-14192,-3976,-2053,-14193,-14194,-235,-2415,-14195,-14196,-4337,-1761,-2556,-14197,-37,-95,-291,-355,-113, +-14198], [1,3,8834], [0,0,8835,8836,10], -[0,-21,-23,-37,-40,-41,-2581,-11254,-3311,-534,-664,-932,-1004,-1077,-1103,-1111,-1442,-1449,-1610,-1650,-1654,-2634, --13966,-1771,-13967,-2006,-2019,-2162,-2250,-2501,-2503], -[0,-2361,-3214,-4002,-13968,-7002,-3960,-3264,-7534,-9975], +[0,-48,-11,-1040,-21,-132,-329,-3916,-893,-96,-13,-1,-40,-41,-340,-204,-101,-78,-227,-72,-3,-242,-14199,-65,-14200,-6,-36, +-80,-97,-18,-93], +[0,-3120,-45,-752,-14201,-3568,-569,-31,-1344,-2247], [1,3,8838], [0,0,8839,8840,6], -[0,-1754,-11358], -[0,-2362,-3215], +[0,-679,-6013], +[0,-886,-74], [1,3,8842], [0,0,8843,7,6], -[0,-11719,-2319], +[0,-2903,-85], [1,3,8845], [0,8846,8847,8848,6], -[0,-13969], -[0,-2832,-190,-4139,-262,-3037,-6593,-932,-940,-948,-958,-967,-3631,-1110,-1942,-2391,-2410,-2411,-2469], -[0,-4181,-743,-6920,-13970,-13570,-8792,-13971,-13972], +[0,-6406], +[0,-314,-50,-3270,-451,-5,-922,-1,-12,-246,-9,-25,-3219,-56,-4,-172,-2,-84,-30], +[0,-4710,-336,-1840,-14202,-6374,-5561,-14203,-14204], [1,3,8850], [0,8851,8852,8853,4], -[0,-714,-808,-1650,-13973], -[0,-3035,-3621,-664,-689,-879,-932,-1654,-1788,-2379,-2388,-2410], -[0,-1573,-3444,-13974,-812], +[0,-133,-1620,-72,-14205], +[0,-109,-71,-13,-1389,-1063,-1,-3,-15,-33,-199,-2], +[0,-258,-748,-14206,-35], [1,3,8855], [0,8856,8857,8858,5], -[0,-11103,-13975,-7400], -[0,-5834,-516,-5835,-921,-932,-1365,-1777,-2156,-2322], -[0,-2368,-2487,-7371,-6917,-13976,-6545,-702], +[0,-5977,-14207,-3605], +[0,-244,-269,-533,-1400,-1,-212,-273,-189,-39], +[0,-2001,-741,-838,-836,-14208,-1335,-507], [1,3,8860], [0,0,27,8861,5], -[0,-10919,-10336,-1958,-13641,-12872,-5395], +[0,-1035,-5821,-286,-6379,-6254,-2631], [1,3,8863], [0,241,8864,7,5], -[0,-3732,-4198,-3617,-3136,-724,-754,-1004,-1415,-1753,-1942,-2375,-2410,-2564], +[0,-751,-1512,-264,-29,-367,-368,-40,-8,-285,-4,-57,-2,-263], [1,3,8866], [0,8867,8868,8869,4], -[0,-1370,-2347,-6372,-13977,-13978,-2062], -[0,-2322,-2346,-725], -[0,-3264,-9292,-3215,-6408,-12123,-775], +[0,-515,-69,-2682,-14209,-14210,-198], +[0,-39,-469,-309], +[0,-31,-1879,-74,-536,-1895,-24], [1,3,8871], [0,8872,8873,8874,4], -[0,-3851,-3199,-1388,-1681,-2177,-9444], -[0,-2581,-3037,-3664,-637,-11187,-1672,-1806,-5326,-3246,-2410,-2469], -[0,-3445,-6857,-1671,-1672,-3862,-4058,-7773,-7684,-3018,-2410,-3324,-2071,-4634,-10412,-6495,-5101,-13979], +[0,-1506,-140,-1965,-549,-16,-3793], +[0,-329,-5,-105,-1611,-2257,-1106,-1246,-2126,-999,-2,-30], +[0,-46,-1341,-375,-1106,-107,-331,-768,-1347,-440,-2,-443,-688,-1017,-1034,-3519,-702,-14211], [1,3,8876], [0,0,8877,161,11], -[0,-21,-23,-26,-35,-36,-40,-42,-50,-86,-3307,-4139,-262,-3268,-3136,-3044,-3738,-427,-428,-533,-589,-753,-932,-940,-967, --977,-1344,-1415,-1548,-1771,-1942,-2082,-2379,-2402,-2405,-2410,-2446], +[0,-48,-11,-209,-931,-300,-21,-137,-357,-49,-63,-3270,-451,-747,-29,-143,-698,-22,-19,-86,-110,-158,-1,-12,-25,-1065,-10, +-8,-23,-65,-4,-346,-33,-124,-816,-2,-125], [1,3,8879], [0,8880,8881,8882,5], -[0,-13980,-7141,-1276,-1460,-1565,-13981,-2177,-2400,-2551], -[0,-86,-9404,-3615,-3244,-190,-5121,-4020,-237,-4776,-3048,-3136,-3660,-3759,-8216,-7211,-4036,-3037,-3199,-3041,-9146, --427,-428,-533,-10525,-739,-928,-932,-940,-958,-959,-960,-967,-999,-1026,-1077,-1110,-1344,-1415,-1442,-1534,-1623,-1942, --2125,-2379,-2410,-2411], -[0,-1415,-2410,-6915,-2006,-3634], +[0,-6407,-3578,-247,-272,-1667,-6408,-16,-215,-525], +[0,-49,-1032,-498,-290,-50,-1318,-1760,-663,-757,-191,-29,-421,-3236,-3691,-5258,-651,-5,-140,-419,-2823,-22,-19,-86, +-3886,-541,-87,-1,-12,-9,-145,-180,-25,-118,-226,-41,-56,-10,-8,-101,-17,-259,-4,-7,-33,-2,-84], +[0,-8,-2,-2179,-6,-61], [1,3,8884], [0,8885,8886,8887,5], -[0,-668,-909,-1639,-2177,-2231], -[0,-4036,-3199,-427,-428,-525,-527,-534,-556,-559,-13982,-560,-930,-932,-940,-966,-967,-1077,-1107,-1344,-1413,-1471, --1475,-1481,-1483,-1490,-1492,-1534,-1607,-1650,-1654,-1942,-2125,-2410,-2501,-2503], -[0,-2376,-13983,-2501,-5932,-2410,-3018], +[0,-20,-781,-361,-16,-130], +[0,-651,-140,-22,-19,-281,-162,-96,-580,-321,-14212,-666,-408,-1,-12,-75,-25,-41,-28,-10,-373,-79,-138,-389,-414,-637, +-517,-17,-972,-72,-3,-4,-7,-2,-18,-93], +[0,-214,-14213,-18,-831,-2,-440], [1,3,8889], [0,8890,8891,8892,9], -[0,-4106,-719,-865,-1672,-2392], -[0,-2581,-3037,-3664,-11187,-1763,-1806,-5326,-3246,-2410,-2469], -[0,-3445,-13984,-13985,-13986,-1672,-1671,-6857,-4058,-7773,-7684,-3018,-2410,-687,-5732,-13987,-5731], +[0,-1300,-58,-210,-1106,-155], +[0,-329,-5,-105,-2257,-415,-1246,-2126,-999,-2,-30], +[0,-46,-14214,-14215,-6409,-1106,-375,-1341,-331,-768,-1347,-440,-2,-37,-762,-14216,-2642], [1,3,8894], [0,8895,8896,8897,6], -[0,-13988,-13989], -[0,-3267,-3035,-9939,-3621,-3037,-664,-11072,-767,-834,-1654,-2125,-2127,-2379,-2410], -[0,-2410,-3272,-13990,-3107,-13991], +[0,-14217,-14218], +[0,-330,-109,-1356,-71,-5,-13,-5970,-26,-203,-3,-7,-14,-33,-2], +[0,-2,-363,-14219,-4498,-14220], [1,3,8899], [0,8900,8901,8902,5], -[0,-2558,-502,-834,-461,-462,-13981,-13992,-13993,-13994,-13995,-8214,-13996,-13997], -[0,-519,-1788,-523,-2006,-13998,-1001,-1548,-2125,-2177,-11685,-1821,-2402,-367,-13999,-1100,-1972,-2410,-9939,-3037, --14000,-3040,-3044,-8890,-3199,-6744,-14001,-7772,-4364,-11347,-11708,-262], -[0,-2410,-3966,-11997,-5558,-3018,-3116], +[0,-2014,-774,-203,-202,-1374,-6408,-14221,-14222,-14223,-14224,-2784,-14225,-14226], +[0,-51,-15,-194,-6,-4017,-338,-23,-7,-16,-2901,-803,-124,-245,-14227,-487,-181,-2,-1356,-5,-14228,-47,-143,-1353,-140, +-3546,-14229,-1857,-2568,-2896,-3929,-451], +[0,-2,-144,-1587,-828,-440,-607], [1,3,8904], [0,8905,8906,8907,5], -[0,-3044,-3851,-3199,-14002,-1548,-1681,-14003,-14004,-2177], -[0,-2581,-3037,-3664,-11187,-1672,-1806,-5326,-3246,-2410,-2469], -[0,-3445,-1672,-3862,-6857,-4058,-7773,-7684,-3018,-2410,-7460,-1306,-5389,-6821,-8990,-10674,-6693,-5879,-1573], +[0,-143,-1506,-140,-14230,-23,-549,-14231,-14232,-16], +[0,-329,-5,-105,-2257,-1106,-1246,-2126,-999,-2,-30], +[0,-46,-1106,-107,-1341,-331,-768,-1347,-440,-2,-3613,-1422,-827,-1838,-2815,-2878,-835,-2140,-258], [1,3,8909], [0,0,37,8910,8], -[0,-2410,-2552,-10054,-10055], +[0,-2,-692,-3859,-3860], [1,3,8912], [0,8913,8914,8915,5], -[0,-1548,-3044], -[0,-2581,-3037,-3664,-1806,-5326,-3246,-2410,-2469], -[0,-3445,-3018,-2410,-14005,-14006,-11315,-8199,-6899,-14007,-14008,-14009,-14010,-14011], +[0,-23,-143], +[0,-329,-5,-105,-1246,-2126,-999,-2,-30], +[0,-46,-440,-2,-14233,-14234,-2259,-1567,-1176,-14235,-14236,-14237,-14238,-14239], [1,3,8917], [0,8918,8919,7,9], -[0,-1460,-1646,-2270], -[0,-1415,-1344,-932,-2125,-2375,-2379,-1942,-2410,-3136,-3037,-1534,-5686,-14012,-960,-958,-940,-428,-7770,-427], +[0,-272,-88,-1264], +[0,-8,-10,-1,-7,-57,-33,-4,-2,-29,-5,-17,-761,-14240,-180,-9,-12,-19,-5368,-22], [1,3,8921], [0,8922,8923,8924,5], -[0,-14013,-3686,-1111,-1418,-1630,-1849,-2061], -[0,-5028,-3037,-3040,-427,-428,-519,-757,-825,-932,-945,-14014,-999,-2006,-2115,-2153,-2410], -[0,-2410,-2384,-7440,-2414,-3694,-14015,-14016], +[0,-6410,-2525,-204,-857,-462,-492,-1991], +[0,-2600,-5,-47,-22,-19,-51,-582,-232,-1,-1222,-4018,-118,-6,-644,-496,-2], +[0,-2,-82,-293,-1470,-650,-14241,-14242], [1,3,8926], [0,0,8927,8928,4], -[0,-23,-40,-42,-5121,-8214,-14013,-3037,-427,-428,-533,-774,-932,-940,-1415,-1942,-2410], -[0,-2410,-2384,-4037,-7440,-7144,-4004,-2414,-3694], +[0,-11,-21,-137,-1318,-2784,-6410,-5,-22,-19,-86,-407,-1,-12,-8,-4,-2], +[0,-2,-82,-4692,-293,-619,-76,-1470,-650], [1,3,8930], [0,8931,8932,8933,10], -[0,-8200,-668,-679,-6475,-14017,-1645,-1650,-14018,-13709,-2125,-14019,-2410,-4297], -[0,-3037,-928,-1942,-2319,-2402], -[0,-2410,-5058,-9946,-985,-4791,-7641], +[0,-1188,-20,-117,-2693,-14243,-92,-72,-14244,-6382,-7,-14245,-2,-3293], +[0,-5,-87,-4,-85,-124], +[0,-2,-3349,-2862,-370,-910,-712], [1,3,8935], [0,0,0,8936,6], -[0,-4165,-14020,-3116,-6784,-3214,-2387,-11997], +[0,-753,-6411,-607,-1835,-45,-44,-1587], [1,3,8938], [0,8939,8940,8941,8], -[0,-22,-644,-668,-719,-834,-1107,-1442,-1645,-1650,-2114,-2177,-2387,-7765], -[0,-305,-8355,-3035,-9939,-3036,-3660,-8566,-4811,-3621,-3037,-3200,-8890,-3199,-664,-1344,-13325,-1654,-1771,-1788,-1942, --2125,-2379,-2388,-2389,-6355,-2410,-12515], -[0,-687,-2410,-8170], +[0,-505,-1384,-20,-58,-203,-28,-101,-92,-72,-126,-16,-44,-3656], +[0,-665,-1867,-109,-1356,-471,-421,-927,-3314,-71,-5,-1137,-1353,-140,-13,-10,-6340,-3,-65,-15,-4,-7,-33,-199,-1268,-5107, +-2,-6181], +[0,-37,-2,-577], [1,3,8943], [0,0,8944,8945,5], -[0,-1415,-1344,-1548,-2125,-2388,-2375,-1591,-1942,-14021,-720,-2410,-3136,-3037,-14022,-2390,-14023,-6630,-2174,-14024, --14025,-12348,-2449,-12349,-14026,-796,-14027], -[0,-7148,-2388,-14028,-1942,-727,-2410], +[0,-8,-10,-23,-7,-199,-57,-733,-4,-14246,-482,-2,-29,-5,-14247,-4339,-14248,-1337,-122,-14249,-14250,-1896,-1707,-2918, +-14251,-295,-14252], +[0,-224,-199,-14253,-4,-335,-2], [1,3,8947], [0,8948,8949,7,6], -[0,-7765], -[0,-3036,-3037,-714,-1107,-1771,-1847,-2388,-14029,-2410], +[0,-3656], +[0,-471,-5,-133,-28,-65,-249,-199,-14254,-2], [1,3,8951], [0,8952,8953,7,4], -[0,-13389,-653,-679,-734,-812,-928,-14030,-14031,-1863,-1907,-2115,-2127,-2231,-5354,-3535,-2654,-2369], -[0,-262,-4062,-367,-3198,-3037,-3200,-8349,-1055,-1889,-10815,-1942,-2114,-2132,-2162,-2271,-2299,-2301,-2334,-14032, --2391,-2410,-2469,-2817], +[0,-4000,-845,-117,-1211,-35,-87,-6412,-14255,-167,-868,-644,-14,-130,-2628,-1142,-313,-691], +[0,-451,-238,-245,-169,-5,-1137,-1568,-1411,-38,-2882,-4,-126,-417,-80,-601,-221,-2443,-177,-6413,-172,-2,-30,-2472], [1,3,8955], [0,8956,0,8957,4], -[0,-928,-1101], -[0,-687,-11997,-3966,-8930,-4791,-985,-2410,-14033], +[0,-87,-1230], +[0,-37,-1587,-144,-5578,-910,-370,-2,-14256], [1,3,8959], [0,8960,8961,8962,6], -[0,-14034], -[0,-350,-351,-3561,-633,-2123,-2127,-2250,-14035], -[0,-6473,-3264,-1599], +[0,-14257], +[0,-77,-62,-237,-60,-1461,-14,-97,-14258], +[0,-1542,-31,-99], [1,3,8964], [0,0,8965,8966,10], -[0,-1127,-1654,-11875,-1132,-2111,-14036,-14037,-1156,-14038,-1138,-14039,-2234,-1134,-14040,-1144,-1148,-14041,-14042, --14043], -[0,-1456,-4058,-2451,-2394], +[0,-54,-3,-6091,-164,-416,-14259,-14260,-959,-14261,-511,-14262,-147,-240,-14263,-175,-341,-14264,-14265,-14266], +[0,-635,-331,-439,-4340], [1,3,8968], [0,0,8969,8970,5], -[0,-633,-932,-1032,-14044,-2322,-14045,-2416], -[0,-770,-5374,-14046,-14047,-13351,-6131,-7372,-14048,-14049,-14050,-14051,-14052], +[0,-60,-1,-1225,-14267,-39,-14268,-112], +[0,-626,-3385,-14269,-14270,-3998,-1536,-1851,-14271,-14272,-14273,-14274,-14275], [1,3,8972], [0,8973,8974,8975,5], -[0,-1077,-1462,-14053,-8984], -[0,-1771,-1860,-2416], -[0,-10838,-14054,-3215,-5093,-9474,-14055,-4112], +[0,-41,-2363,-14276,-3752], +[0,-65,-640,-112], +[0,-2252,-6414,-74,-1788,-2237,-14277,-474], [1,3,8977], [0,8978,8979,8980,9], -[0,-615,-1640,-2105], -[0,-510,-714,-719,-1654,-2123,-2210], -[0,-2398,-3690,-3691,-5827,-9292,-1791], +[0,-114,-260,-111], +[0,-59,-133,-58,-3,-1461,-27], +[0,-2452,-100,-422,-252,-1879,-865], [1,3,8982], [0,8983,8984,8985,11], -[0,-2105,-822], -[0,-1722,-1654,-932], -[0,-2398,-9292,-1791], +[0,-111,-1623], +[0,-197,-3,-1], +[0,-2452,-1879,-865], [1,3,8987], [0,8988,0,7,4], -[0,-1646,-14056,-668], +[0,-88,-14278,-20], [1,3,8990], [0,8991,8992,8993,9], -[0,-14057], -[0,-5918,-428,-932,-14058,-815,-1002,-1772,-2384,-2410,-2411,-2541], -[0,-2410,-3018,-3694,-3590,-2444,-8113,-10665,-1631,-4055,-14059], +[0,-14279], +[0,-1164,-19,-1,-14280,-509,-787,-345,-82,-2,-84,-34], +[0,-2,-440,-650,-208,-136,-1030,-5896,-491,-108,-6415], [1,3,8995], [0,8996,129,8997,4], -[0,-737,-14060,-1641], -[0,-5398,-8038,-14061], +[0,-846,-14281,-344], +[0,-1528,-576,-14282], [1,3,8999], [0,9000,9001,259,4], -[0,-14062,-3544,-1600,-1645,-2548], -[0,-190,-3800,-3661,-3621,-3037,-652,-13998,-928,-932,-1654,-1978,-2177,-2392,-2410,-2411], +[0,-14283,-1143,-220,-92,-262], +[0,-50,-2538,-896,-71,-5,-43,-4017,-87,-1,-3,-160,-16,-155,-2,-84], [1,3,9003], [0,9004,9005,9006,11], -[0,-14063], -[0,-3037,-2402,-2410], -[0,-14064,-14065,-3118,-14066,-14067,-14068,-2410,-856], +[0,-14284], +[0,-5,-124,-2], +[0,-14285,-6416,-1731,-4019,-14286,-6417,-2,-42], [1,3,9008], [0,0,131,9009,6], -[0,-4121,-4123,-13188,-2410,-856,-14068,-2402], +[0,-1013,-612,-3997,-2,-42,-6417,-124], [1,3,9011], [0,0,0,9012,4], -[0,-3690,-856,-1599,-2402,-2410,-14065], +[0,-100,-42,-99,-124,-2,-6416], [1,3,9014], [0,9015,9016,9017,4], -[0,-1610,-2410], -[0,-3802,-3621,-3037,-3628,-756,-1405,-1654,-1657,-2359], -[0,-4165,-856,-14069,-3214], +[0,-227,-2], +[0,-2050,-71,-5,-750,-55,-66,-3,-589,-161], +[0,-753,-42,-14287,-45], [1,3,9019], [0,9020,9021,9022,4], -[0,-719,-2536,-1705,-6455,-14070,-510,-714,-1666,-1650,-7418,-14071], -[0,-664], -[0,-14072,-1599,-14073,-14074,-14075,-8676,-3110,-6473,-3262], +[0,-58,-565,-734,-2691,-14288,-59,-133,-233,-72,-2743,-14289], +[0,-13], +[0,-14290,-99,-14291,-14292,-6418,-3736,-277,-1542,-116], [1,3,9024], [0,106,9025,7,5], -[0,-234,-3035,-4269,-3621,-14076,-3037,-664,-665,-756,-1654,-14077,-1672,-14078,-1942,-14079,-2234,-2379,-2389,-12348], +[0,-1200,-109,-754,-71,-14293,-5,-13,-239,-55,-3,-14294,-1106,-14295,-4,-14296,-147,-33,-1268,-1896], [1,3,9027], [0,9028,9029,7,10], -[0,-1107,-2446,-483,-809,-812,-2387,-2550,-640,-815,-865,-7023,-496,-14080,-2080,-14081], -[0,-652,-1857,-664,-1168,-1344,-1392,-1654,-1682,-1691,-2071,-2210,-932,-1692,-2125,-3729,-1110,-1671,-2245,-2379,-10418, --1942,-14082,-190,-1250,-8436,-2211,-2410,-3035,-3037,-1243,-1534,-3198,-3621,-4372,-3041,-1244,-14083,-10419,-1252, --1261,-10420,-14084,-8214,-665,-3625,-3910,-7969,-2411,-14085,-2234,-14086,-960,-14087,-14088,-4269,-9660], +[0,-28,-125,-1375,-542,-35,-44,-98,-294,-509,-210,-5230,-2296,-14297,-598,-14298], +[0,-43,-595,-13,-32,-10,-547,-3,-1673,-550,-688,-27,-1,-1674,-7,-4622,-56,-375,-813,-33,-2874,-4,-14299,-50,-4198,-1570, +-190,-2,-109,-5,-310,-17,-169,-71,-279,-419,-962,-14300,-3879,-311,-1419,-5835,-14301,-2784,-239,-1287,-3251,-1860,-84, +-14302,-147,-14303,-180,-14304,-14305,-754,-2848], [1,3,9031], [0,0,9032,9033,5], -[0,-652,-1681,-664,-834,-1107,-1498,-1654,-2387,-2518,-13998,-932,-8526,-928,-1110,-679,-1646,-3851,-190,-1863,-1874, --2410,-3035,-9939,-3621,-10755,-1461,-305,-5686,-1028,-14089,-14090,-2411,-14091,-2234,-971,-14092,-429,-9660,-14093, --5201,-5206,-14094,-14095], -[0,-4165,-14020,-3116,-6784,-3214], +[0,-43,-549,-13,-203,-28,-799,-3,-44,-222,-4017,-1,-5526,-87,-56,-117,-88,-1506,-50,-167,-391,-2,-109,-1356,-71,-2881, +-636,-665,-761,-1635,-14306,-14307,-84,-14308,-147,-784,-6419,-771,-2848,-14309,-3362,-2612,-14310,-14311], +[0,-753,-6411,-607,-1835,-45], [1,3,9035], [0,9036,112,9037,4], -[0,-429,-428,-427,-5209], -[0,-3272,-3217,-3214,-2410,-3215,-4132,-932,-5208,-3784], +[0,-771,-19,-22,-2613], +[0,-363,-350,-45,-2,-74,-400,-1,-354,-383], [1,3,9039], [0,9040,9041,9042,10], -[0,-14096,-7829], -[0,-4811,-3621,-3037,-14097,-740,-14098,-1650,-1654,-1938,-2388,-2410,-2412], -[0,-4165], +[0,-14312,-1858], +[0,-3314,-71,-5,-14313,-385,-14314,-72,-3,-1454,-199,-2,-3122], +[0,-753], [1,3,9044], [0,9045,9046,9047,6], -[0,-14099,-14100,-865,-2773,-1521,-1551,-1889,-1907,-7164,-1915,-7165,-10283,-2162,-2232,-2383,-2286], -[0,-14101,-3136,-8334,-3759,-3037,-14102,-14103,-8336,-427,-428,-620,-932,-940,-1344,-1415,-14104,-1534,-14105,-1916, --1927,-1942,-14106,-2375,-2410], -[0,-775,-3754,-2162,-1521,-2286,-3209,-3862,-1889,-2410], +[0,-14315,-14316,-210,-1484,-219,-1664,-38,-868,-2729,-1986,-2730,-5814,-80,-811,-815,-396], +[0,-14317,-29,-3708,-3236,-5,-14318,-14319,-2787,-22,-19,-453,-1,-12,-10,-8,-14320,-17,-14321,-1452,-805,-4,-14322,-57,-2], +[0,-24,-444,-80,-219,-396,-381,-107,-38,-2], [1,3,9049], [0,9050,9051,9052,8], -[0,-11661,-615,-668,-696,-715,-13789,-10511,-12631,-1575,-1646,-14107,-14108,-2433,-2525,-2546], -[0,-829,-1722,-2125,-2379,-2388,-14109,-2410], -[0,-2414,-2410,-14110,-4159,-5897,-9800,-9069], +[0,-6049,-114,-20,-1934,-1390,-6394,-5857,-6203,-1432,-88,-14323,-14324,-604,-991,-744], +[0,-1215,-197,-7,-33,-199,-14325,-2], +[0,-1470,-2,-14326,-3273,-478,-1355,-2821], [1,3,9054], [0,9055,9056,9057,8], -[0,-719,-2231], -[0,-461,-1654,-2177], -[0,-9216,-2415,-2416,-1644,-6684,-3214,-3217,-8108,-3184,-6052,-13770,-4795,-8165,-6434,-510,-5867], +[0,-58,-130], +[0,-202,-3,-16], +[0,-1031,-1269,-112,-228,-834,-45,-350,-1185,-349,-2147,-4015,-446,-2209,-1540,-59,-656], [1,3,9059], [0,0,9060,9061,11], -[0,-461,-2177], -[0,-687,-6454,-9696,-14111,-3217,-6505,-8108,-3214,-3756,-14112,-9234,-6059,-6684,-1644,-7175,-7176,-7858,-9697,-1838, --3215,-9698,-9216], +[0,-202,-16], +[0,-37,-575,-2849,-14327,-350,-1829,-1185,-45,-278,-14328,-1876,-1333,-834,-228,-620,-1844,-2760,-3827,-166,-74,-3828, +-1031], [1,3,9063], [0,9064,9065,9066,9], -[0,-4287,-1046,-1401,-2168,-2182,-2231,-2416,-2510,-10059], -[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-8206,-767,-824,-825,-932,-940,-958,-1344,-1415,-1424,-1534,-1626,-1771,-1942, --2251,-2334,-2501], -[0,-9216,-2416,-2415,-2501,-7172], +[0,-2079,-1408,-856,-646,-1121,-130,-112,-1476,-5798], +[0,-48,-11,-21,-49,-63,-2211,-1025,-86,-5454,-26,-150,-232,-1,-12,-9,-10,-8,-1085,-17,-1102,-65,-4,-134,-177,-18], +[0,-1031,-112,-1269,-18,-2731], [1,3,9068], [0,9069,9070,9071,5], -[0,-14113], -[0,-1654,-932,-615,-1405,-966,-958,-968,-943,-974], -[0,-6555,-3262,-7232,-9594], +[0,-14329], +[0,-3,-1,-114,-66,-75,-9,-67,-83,-129], +[0,-920,-116,-5260,-1579], [1,3,9073], [0,9074,0,9075,4], -[0,-44,-3040,-3052,-14114,-14115,-14116,-14117,-14118,-14119,-14120,-14121,-432,-14122,-14123,-14124,-14125,-14126,-14127, --14128,-14129,-14130,-14131,-14132,-14133,-14134,-14135,-14136,-14137,-14138,-14139,-433,-434,-14140,-14141,-14142, --14143,-14144,-14145,-14146,-14147,-5257,-435,-14148,-14149,-14150,-14151,-14152,-14153,-14154,-14155,-14156,-14157, --14158,-14159,-14160,-14161,-14162,-14163,-14164,-14165,-14166,-14167,-14168, --14169,-14170], -[0,-3099,-2419,-5250,-5251,-2006,-3159,-3095,-3098,-3160,-775,-5252,-5253,-3161,-3577,-3100], +[0,-90,-47,-89,-14330,-14331,-14332,-14333,-14334,-14335,-14336,-14337,-4101,-14338,-14339,-14340,-14341,-14342,-14343, +-14344,-14345,-14346,-14347,-14348,-14349,-14350,-14351,-14352,-14353,-14354,-14355,-2967,-4102,-14356,-14357,-14358, +-14359,-14360,-14361,-14362,-14363,-4894,-4103,-14364,-14365,-14366,-14367,-14368,-14369,-14370,-14371,-14372,-14373, +-14374,-14375,-14376,-14377,-14378,-14379,-14380,-14381,-14382,-14383,-14384, +-14385,-14386], +[0,-441,-1472,-1803,-1804,-6,-106,-131,-127,-102,-24,-1525,-1526,-53,-192,-52], [1,3,9077], [0,9078,9079,174,10], -[0,-1107,-1351,-1548,-2177,-2529], -[0,-1452,-1600,-1654,-1766,-2198], +[0,-28,-459,-23,-16,-3132], +[0,-119,-220,-3,-3073,-81], [1,3,9081], [0,0,9082,7,10], -[0,-4066,-350,-351,-3267,-3037,-589,-1942,-2127,-2387,-2410,-2469], +[0,-530,-77,-62,-330,-5,-110,-4,-14,-44,-2,-30], [1,3,9084], [0,0,9085,9086,5], -[0,-2581,-50,-13526,-668,-5382,-928,-1111,-1273,-1600,-14171,-1771,-14172,-1948,-3768,-2469], -[0,-3264,-3110,-7723], +[0,-329,-357,-6367,-20,-3389,-87,-204,-1075,-220,-14387,-65,-14388,-520,-1750,-30], +[0,-31,-277,-1028], [1,3,9088], [0,9089,9090,7,5], -[0,-4066,-350,-4062,-351,-3561,-4785,-14173,-734,-6860,-928,-14030,-14174,-1431,-1588,-14175,-1651,-1852,-6568,-1948, --2127,-2132,-6569,-2654,-14176], -[0,-3376,-3037,-3664,-8189,-672,-932,-944,-1942,-2410,-2469], +[0,-530,-77,-238,-62,-237,-758,-14389,-1211,-1839,-87,-6412,-4020,-516,-296,-14390,-1437,-594,-1832,-520,-14,-417,-2696, +-313,-14391], +[0,-1139,-5,-105,-5449,-1388,-1,-1403,-4,-2,-30], [1,3,9092], [0,0,9093,9094,4], -[0,-1788,-1107,-849,-1344,-1471,-1989,-932,-2127,-2334,-757,-756,-1485,-7324,-4916,-14177,-958,-1488], -[0,-2444,-5112,-3844,-3323,-4865], +[0,-15,-28,-1394,-10,-79,-376,-1,-14,-177,-582,-55,-1662,-3599,-1316,-14392,-9,-798], +[0,-136,-759,-216,-351,-94], [1,3,9096], [0,9097,9098,9099,4], -[0,-2243,-9649], -[0,-633,-14178,-932,-1405,-1654,-1657,-8276,-12323,-2424], -[0,-2424,-2265], +[0,-2433,-3822], +[0,-60,-14393,-1,-66,-3,-589,-1189,-6160,-250], +[0,-250,-168], [1,3,9101], [0,0,9102,9103,5], -[0,-8843,-11419,-14179,-357,-3037,-458,-2917,-652,-767,-14180,-928,-932,-1023,-1344,-1415,-14181,-2884,-1730,-1971,-2384, --2410,-2531], -[0,-4213,-1334,-1342,-1961,-2105,-9172,-9173,-2533,-5388], +[0,-3739,-2898,-14394,-623,-5,-1203,-1726,-43,-26,-14395,-87,-1,-1224,-10,-8,-14396,-819,-1107,-596,-82,-2,-205], +[0,-905,-103,-388,-171,-111,-2232,-2233,-743,-1158], [1,3,9105], [0,9106,9107,9108,4], -[0,-4231,-14182,-9596,-1015,-1395,-14183,-5358], -[0,-14184,-5334,-4251,-3037,-652,-1942,-2094,-2100,-2384,-2399,-2410,-2541], -[0,-3272,-7644,-5398,-10280,-1838,-1958,-2083,-2093,-14185,-6233,-6231,-4132,-6408,-10919,-2427], +[0,-701,-4021,-1033,-432,-1082,-14397,-502], +[0,-14398,-251,-424,-5,-43,-4,-146,-261,-82,-236,-2,-34], +[0,-363,-713,-1528,-5813,-166,-286,-377,-274,-6420,-919,-447,-400,-536,-1035,-135], [1,3,9110], [0,9111,14,9112,4], -[0,-14186], -[0,-13747,-6555,-6240,-6814,-3960,-14187,-5839,-12411,-9682], +[0,-14399], +[0,-6392,-920,-1538,-2708,-569,-14400,-708,-6168,-1581], [1,3,9114], [0,9115,9116,9117,5], -[0,-4231,-7700,-5356], -[0,-4251,-3037,-652,-1618,-10922,-10923,-1942,-2094,-2100,-2384,-2399,-2410,-2541], -[0,-9590,-14188,-2444,-3590,-2093,-14185,-2083,-10918,-9589,-14189,-14190,-1703,-6784,-1599,-3264,-6597,-10919,-3272, --3966,-14191,-2487], +[0,-701,-5346,-1157], +[0,-424,-5,-43,-862,-2884,-3909,-4,-146,-261,-82,-236,-2,-34], +[0,-538,-6421,-136,-208,-274,-6420,-377,-929,-448,-14401,-14402,-3066,-1835,-99,-31,-537,-1035,-363,-144,-14403,-741], [1,3,9119], [0,0,222,9120,5], -[0,-13875,-11002,-7727,-2430,-1847,-11845,-7421,-2440,-5550,-6836], +[0,-6404,-5959,-1856,-1473,-249,-2907,-427,-2004,-267,-1175], [1,3,9122], [0,9123,0,9124,8], -[0,-7304,-1081,-14192,-14193,-8578,-2062], -[0,-5408,-2432,-9506,-14194,-5409,-5827,-7347], +[0,-837,-4172,-14404,-14405,-2219,-198], +[0,-915,-1705,-3802,-14406,-1529,-252,-1026], [1,3,9126], [0,9127,9128,9129,6], -[0,-14195,-623,-668,-14196,-2177,-8418,-728,-6848,-1514,-1394], -[0,-2541,-519,-9982,-2269,-686,-14197], -[0,-1764,-10674,-11693,-9258,-14198,-7440,-7144,-687,-3551,-5897,-9318], +[0,-14407,-1209,-20,-14408,-16,-2791,-1057,-5189,-1968,-1655], +[0,-34,-51,-3853,-139,-1615,-14409], +[0,-159,-2878,-6056,-2831,-14410,-293,-619,-37,-365,-478,-715], [1,3,9131], [0,0,0,9132,4], -[0,-9171,-2435,-14199,-14200,-14201,-14202,-14203,-14204,-14205,-14206,-14207,-14208,-14209,-14210,-14211,-14212,-14213, --14214], +[0,-2825,-200,-14411,-14412,-14413,-14414,-14415,-14416,-14417,-14418,-14419,-14420,-14421,-14422,-14423,-14424,-6422, +-6423], [1,3,9134], [0,9135,9136,9137,10], -[0,-1983,-1977], -[0,-515,-1788,-2568,-461,-1654,-932,-5834], -[0,-6747,-2435,-10433], +[0,-465,-981], +[0,-720,-15,-993,-202,-3,-1,-244], +[0,-763,-200,-5836], [1,3,9139], [0,0,9140,9141,5], -[0,-739,-1654,-2198], -[0,-2435,-8396], +[0,-541,-3,-81], +[0,-200,-5490], [1,3,9143], [0,9144,9145,48,10], -[0,-1543,-1641,-2168], -[0,-21,-23,-40,-86,-3307,-8205,-7166,-533,-767,-824,-825,-932,-940,-958,-1041,-1344,-1415,-1534,-1623,-8913,-1771,-1942, --2251,-2501], +[0,-732,-344,-646], +[0,-48,-11,-21,-49,-63,-2211,-1025,-86,-26,-150,-232,-1,-12,-9,-271,-10,-8,-17,-259,-2813,-65,-4,-134,-18], [1,3,9147], [0,9148,9149,9150,5], -[0,-6614,-9730], -[0,-509,-633,-652,-1654,-1939,-14215,-14216,-2416], -[0,-6984,-3215,-9171,-2435,-1838,-5101,-2265,-1985,-6231], +[0,-5149,-5737], +[0,-843,-60,-43,-3,-234,-14425,-14426,-112], +[0,-5224,-74,-2825,-200,-166,-702,-168,-982,-447], [1,3,9152], [0,9153,9154,9155,9], -[0,-1069,-14217,-1641,-1983,-2400,-2426,-14218], -[0,-2832,-14219,-7453,-14220,-8317,-14221,-3713,-3037,-14222,-4966,-14223,-3715,-8200,-9581,-3664,-649,-767,-1351,-2987, --8065,-1971,-3727,-14224,-2325,-2386,-7457,-2410,-2469], -[0,-2439,-1334,-14225,-9172,-9173,-2105,-1342,-2426,-4213], +[0,-628,-14427,-344,-465,-215,-289,-14428], +[0,-314,-14429,-5309,-14430,-3705,-6424,-1146,-5,-14431,-2093,-14432,-3231,-1188,-1578,-105,-1386,-26,-459,-2024,-1562, +-596,-2527,-14433,-884,-561,-3612,-2,-30], +[0,-3125,-103,-14434,-2232,-2233,-111,-388,-289,-905], [1,3,9157], [0,9158,9159,9160,4], -[0,-10383], -[0,-1849], -[0,-2440,-11845,-13874,-10383,-11070,-7421,-7420,-1847,-6845,-3592,-5558,-3591,-14226], +[0,-2871], +[0,-492], +[0,-2004,-2907,-6403,-2871,-2254,-427,-1027,-249,-1340,-2515,-828,-1501,-14435], [1,3,9162], [0,9163,9164,9165,6], -[0,-1582,-2359], -[0,-509,-1654,-1939,-2105,-2177,-14227], -[0,-9733,-4865,-14228,-1819,-1838,-3215,-14229,-14230,-14231,-14232,-2440,-14233,-2442,-9318], +[0,-434,-161], +[0,-843,-3,-234,-111,-16,-14436], +[0,-1883,-94,-14437,-1448,-166,-74,-14438,-14439,-14440,-14441,-2004,-4022,-2453,-715], [1,3,9167], [0,0,9168,9169,4], -[0,-756,-1405,-6186,-1991], -[0,-9791,-5835,-4112,-2443], +[0,-55,-66,-2669,-1457], +[0,-2857,-533,-474,-1706], [1,3,9171], [0,9172,9173,260,5], -[0,-1370,-7391,-14234,-14235,-7400], -[0,-468,-753,-14236,-1797,-1798,-2151,-2155,-2322], +[0,-515,-5294,-14442,-14443,-3605], +[0,-718,-158,-14444,-591,-1109,-1697,-497,-39], [1,3,9175], [0,0,183,260,8], [1,3,9177], [0,0,9178,9179,4], -[0,-32,-86,-3307,-190,-3563,-719,-932,-940,-967,-1110,-1344,-1415,-1534,-2884,-1771,-1942,-11013,-11014,-2251,-2410,-2411], -[0,-2446,-7230,-11582,-14237], +[0,-156,-49,-63,-50,-1747,-58,-1,-12,-25,-56,-10,-8,-17,-819,-65,-4,-5961,-5962,-134,-2,-84], +[0,-125,-2735,-3926,-14445], [1,3,9181], [0,9182,9183,9184,10], -[0,-8609,-834,-1496,-5037], -[0,-14238,-985,-11747,-13279], -[0,-507,-14239,-4043,-4045,-4004], +[0,-2220,-203,-490,-1785], +[0,-14446,-370,-2906,-6332], +[0,-280,-14447,-473,-2068,-76], [1,3,9186], [0,0,9187,9188,5], -[0,-2319,-1452], -[0,-2435,-3926,-7440,-7144,-5574], +[0,-85,-119], +[0,-200,-423,-293,-619,-1022], [1,3,9190], [0,9191,9192,9193,5], -[0,-7247,-14240,-5504,-10482], -[0,-7465,-664,-6774,-720,-796,-1344,-1405,-1650,-1654,-9075,-2125,-2174,-2210], -[0,-14241,-5890,-12665,-5889,-6908,-5887], +[0,-5263,-14448,-1159,-5847], +[0,-1853,-13,-2172,-482,-295,-10,-66,-72,-3,-5609,-7,-122,-27], +[0,-14449,-1815,-2924,-402,-2177,-830], [1,3,9195], [0,0,9196,9197,8], -[0,-4298,-4300], -[0,-1764,-5897,-6444,-3926], +[0,-755,-756], +[0,-159,-478,-2689,-423], [1,3,9199], [0,0,9200,9201,4], -[0,-21,-23,-40,-43,-528,-535,-932,-934,-958,-1654,-1771,-1788,-2125,-2127,-2128,-11290,-2416], -[0,-2451,-3926,-5874,-8472,-7723,-14242,-14243,-507], +[0,-48,-11,-21,-174,-91,-270,-1,-185,-9,-3,-65,-15,-7,-14,-275,-6006,-112], +[0,-439,-423,-534,-1869,-1028,-4023,-14450,-280], [1,3,9203], [0,9204,9205,9206,11], -[0,-14244,-14245,-14246], -[0,-3037,-4837,-5589,-3899,-14247,-4838,-786,-14248,-1449,-2410,-2466,-2469,-14249,-2476,-2483,-14250,-14251,-14252, --14253], -[0,-3160,-2476,-3944,-3162,-3100,-3095,-3098], +[0,-2935,-14451,-14452], +[0,-5,-1020,-3417,-1009,-6425,-912,-722,-14453,-78,-2,-104,-30,-14454,-73,-888,-14455,-14456,-14457,-14458], +[0,-102,-73,-897,-95,-52,-131,-127], [1,3,9208], [0,0,9209,9210,5], -[0,-1654,-932,-1405,-589,-2293,-585,-966,-958,-968,-943,-963,-974], -[0,-1334,-4616,-2453], +[0,-3,-1,-66,-110,-123,-1049,-75,-9,-67,-83,-211,-129], +[0,-103,-1308,-989], [1,3,9212], [0,9213,9214,7,4], -[0,-2456], -[0,-2319,-1754], +[0,-2007], +[0,-85,-679], [1,3,9216], [0,9217,9218,7,6], -[0,-5193,-928,-679,-1069,-14254,-14255,-14256,-14257,-14258,-14259,-14260,-14261,-14262,-14263,-14264,-14265,-14266, --14267,-14268,-14269,-14270,-14271,-14272,-14273,-14274,-14275], -[0,-1681,-469,-502,-864,-985,-1371,-1816,-1805,-2466,-651,-668,-812,-999,-1623,-1971,-12508,-13969,-2518,-669,-865,-1001, --1400,-2125,-2177,-2240,-2324,-2469,-680,-708,-1004,-1047,-1658,-2379,-807,-1077,-1098,-1981,-1999,-2694,-367,-3851, --4966,-14276,-10697,-11705,-1645,-1878,-2369,-11697,-12324,-481,-12971,-695,-1424,-1641,-1729,-2269,-2410,-3136,-3037, --512,-929,-14277, --8874,-7982,-14278,-3269,-3198,-14279,-10755,-480,-511,-14280,-14281,-14282,-3199,-9941,-13839,-5977,-3124,-12274,-11855, --3637,-14283,-13376,-10519,-14284,-4105,-3048,-11328,-1025,-14285,-1767,-7162,-2991,-14286,-2992,-8566,-5363,-2946, --14287,-3713,-4201,-14288,-13184,-14289,-14290,-9750,-10046,-14291,-5124,-14292,-14293,-2591,-11857,-14294,-3234,-14295, --14296,-14297,-11702,-14298,-14299,-14300,-14301,-14302,-14303, --14304,-14305,-14306], +[0,-1801,-87,-117,-628,-14459,-14460,-14461,-14462,-14463,-14464,-14465,-14466,-14467,-14468,-14469,-14470,-14471,-14472, +-14473,-14474,-14475,-14476,-14477,-14478,-14479,-14480], +[0,-549,-183,-774,-1395,-370,-728,-325,-152,-104,-454,-20,-35,-118,-259,-596,-2921,-6406,-222,-2987,-210,-338,-3051,-7, +-16,-881,-1267,-30,-481,-149,-40,-339,-548,-33,-1061,-41,-486,-3086,-1458,-2019,-245,-1506,-2093,-14481,-2251,-6057,-92, +-554,-691,-2902,-6161,-1045,-3991,-624,-1085,-344,-188,-139,-2,-29,-5,-1378,-484,-14482, +-2803,-2207,-14483,-1738,-169,-14484,-2881,-841,-1377,-14485,-14486,-14487,-140,-2861,-6396,-1332,-4500,-6150,-6087, +-3221,-14488,-2929,-5860,-14489,-4703,-191,-3917,-952,-14490,-975,-5246,-4474,-14491,-4475,-927,-1806,-3160,-14492,-1146, +-1014,-14493,-6317,-14494,-14495,-5740,-2865,-14496,-3358,-14497,-14498,-2457,-6088,-14499,-1737,-14500,-6426,-14501, +-3928,-14502,-14503,-14504,-14505,-14506,-14507, +-14508,-14509,-14510], [1,3,9220], [0,9221,0,9222,4], -[0,-14307,-508,-13486], -[0,-6324,-8980,-14308,-12254,-12442,-3586], +[0,-14511,-2299,-6363], +[0,-658,-2227,-14512,-3959,-6175,-1500], [1,3,9224], [0,0,9225,7,4], -[0,-1654,-1405,-2293], +[0,-3,-66,-123], [1,3,9227], [0,0,9228,9229,4], -[0,-23,-40,-86,-3307,-3326,-539,-664,-671,-708,-757,-14309,-784,-825,-932,-934,-958,-1344,-1471,-1474,-1475,-3568,-1482, --1483,-1486,-1534,-1654,-1771,-1889,-1891,-14310,-1906,-1927,-7033,-1978,-2127,-2281,-2282,-2284,-2416], -[0,-6527,-14311,-2459,-14312,-3264,-775,-3214,-3577,-3578], +[0,-11,-21,-49,-63,-207,-333,-13,-1387,-149,-582,-14513,-369,-232,-1,-185,-9,-10,-79,-675,-138,-3217,-187,-414,-731,-17, +-3,-65,-38,-682,-14514,-555,-805,-2725,-160,-14,-182,-558,-1466,-112], +[0,-292,-4024,-4345,-14515,-31,-24,-45,-192,-113], [1,3,9231], [0,9232,9233,9234,5], -[0,-14313,-702,-2103,-14314], -[0,-1788,-1654,-932,-1001,-13729,-2062,-937,-966], -[0,-9614,-7422,-6656,-7421,-9330,-1847], +[0,-14516,-507,-874,-14517], +[0,-15,-3,-1,-338,-2934,-198,-782,-75], +[0,-1580,-1555,-128,-427,-2836,-249], [1,3,9236], [0,9237,9238,9239,4], -[0,-599,-2347], -[0,-2322,-2463], -[0,-2460,-7419,-5845,-640,-5827], +[0,-1926,-69], +[0,-39,-887], +[0,-70,-661,-477,-294,-252], [1,3,9241], [0,9242,9243,9244,11], -[0,-14315,-9092,-1119,-1351,-14316,-14317,-1759,-14318,-14319,-13729,-14320,-14321,-2460,-14322], -[0,-932,-937,-1001,-1654,-1788,-2062,-2125,-2210], -[0,-1168,-14323,-2460,-6656,-8801,-1076,-8027], +[0,-14518,-5613,-324,-459,-14519,-14520,-1446,-14521,-14522,-2934,-14523,-14524,-70,-14525], +[0,-1,-782,-338,-3,-15,-198,-7,-27], +[0,-32,-14526,-70,-128,-1352,-303,-1029], [1,3,9246], [0,9247,9248,9249,9], -[0,-2460,-2347], -[0,-1243,-2322,-2462], -[0,-2460,-1168,-7419,-9975,-5827,-2265,-5554,-14324], +[0,-70,-69], +[0,-310,-39,-562], +[0,-70,-32,-661,-2247,-252,-168,-193,-14527], [1,3,9251], [0,185,0,9252,4], -[0,-2460,-9455,-9466,-1168], +[0,-70,-3794,-3797,-32], [1,3,9254], [0,9255,9256,9257,5], -[0,-14325,-6324,-14326,-1109,-9977,-8104,-14327,-14328], -[0,-633,-1405,-9088,-1812,-14329,-12014,-2320,-2322,-2568], -[0,-9614,-5092,-9613,-14330,-834,-7460,-4865], +[0,-14528,-658,-14529,-852,-3852,-5427,-14530,-14531], +[0,-60,-66,-5612,-1247,-14532,-6109,-560,-39,-993], +[0,-1580,-266,-2241,-14533,-203,-3613,-94], [1,3,9259], [0,9260,9261,261,6], -[0,-4787,-2127,-928,-1889,-1864,-2654], -[0,-2531,-653,-11071,-754,-990,-1651,-5042,-1805,-2162,-2213,-1852,-865,-5036,-1699,-1839,-2334,-729,-12601,-679,-2923, --3027,-14331,-14332,-1863,-769,-929,-14333,-3751,-1588,-25,-4371,-866,-989,-3572,-14334,-1906,-14335,-14336,-11751, --14337,-13397,-10046,-742,-4785,-1907,-7160,-4066,-3195,-5322,-2134,-350,-6410,-7897,-3180,-14338,-7151], +[0,-1312,-14,-87,-38,-326,-313], +[0,-205,-845,-2886,-368,-848,-1437,-2099,-152,-80,-738,-594,-210,-2098,-639,-593,-177,-218,-3974,-117,-994,-2481,-6427, +-6428,-167,-225,-484,-6429,-1503,-296,-405,-2571,-945,-786,-1498,-4025,-555,-1897,-4026,-2267,-4027,-2931,-2865,-457, +-758,-868,-2184,-530,-1735,-2124,-876,-77,-2688,-3665,-1136,-6430,-3580], [1,3,9263], [0,9264,9265,9266,4], -[0,-14341,-1026,-1077,-14342,-14343], -[0,-3617,-3048,-3037,-1004,-2391,-2410,-2466], -[0,-2466,-3690,-14344,-14345,-14346,-14347,-1004,-14348,-3844,-14349,-9843,-14350,-14351,-3862,-3816,-2146,-3445,-14352, --14353], +[0,-14536,-226,-41,-14537,-14538], +[0,-264,-191,-5,-40,-172,-2,-104], +[0,-104,-100,-14539,-14540,-14541,-14542,-40,-14543,-216,-14544,-2244,-14545,-14546,-107,-1148,-4310,-46,-14547,-14548], [1,3,9268], [0,9269,9270,9271,4], -[0,-2476,-2466,-4245,-3788,-14354,-3726,-14244,-4817,-3559,-14355,-3558,-14356,-14357,-3661,-4837,-14358,-4229,-14359], -[0,-1816,-2213,-812,-999,-1826,-3548,-1699,-2125,-2127,-2177,-2469,-928,-1871,-1966,-3728,-2653,-5627,-2648,-679,-1077, --1098,-1646,-1942,-1977,-1582,-1639,-1863,-2654,-2410,-3037,-769,-1125,-1534,-1600,-3198,-6447,-14360,-3801,-3735,-1851, --3048,-5686,-1570,-14361,-3246,-4036,-3425,-1603,-2132,-13397,-7080,-1601,-4062,-13593,-14362,-14363,-4066,-14364,-1602, --6483,-14365,-3561,-9458, --350,-1926,-14366,-3662,-14367,-14368,-740,-351,-14369,-14370,-14371], -[0,-2466,-2476,-2468], +[0,-73,-104,-907,-2536,-14549,-4621,-2935,-1778,-2512,-14550,-4587,-14551,-2936,-896,-1020,-6431,-4723,-14552], +[0,-325,-738,-35,-118,-552,-2511,-639,-7,-14,-16,-30,-87,-1984,-392,-1749,-2018,-1531,-2017,-117,-41,-486,-88,-4,-981, +-434,-361,-167,-313,-2,-5,-225,-670,-17,-220,-169,-2690,-14553,-3241,-822,-553,-191,-761,-1431,-14554,-999,-651,-1492, +-1097,-417,-2931,-1024,-971,-238,-4011,-14555,-14556,-530,-14557,-1239,-1334,-14558,-237,-5689, +-77,-4279,-14559,-2523,-14560,-14561,-385,-62,-14562,-14563,-14564], +[0,-104,-73,-817], [1,3,9273], [0,9274,9275,9276,8], -[0,-5042,-2466,-1852,-6570,-3535,-1864,-2354,-2654,-6488,-1002,-14372,-1588,-13385,-13376,-13388,-14373,-14335,-14374, --14375,-14376], -[0,-2531,-653,-1640,-14377,-1449,-7142,-1966,-13380,-1278,-14378,-462,-3037,-4647,-426,-14334,-3735,-14379,-8523,-14380, --5038,-357,-4048,-3180,-3626,-4047], -[0,-2466,-2469,-4004,-1415], +[0,-2099,-104,-594,-1544,-1142,-326,-1127,-313,-3518,-787,-6432,-296,-6346,-2929,-3999,-6433,-1897,-14565,-14566,-14567], +[0,-205,-845,-260,-14568,-78,-3579,-392,-2930,-1233,-6434,-1374,-5,-614,-320,-4025,-822,-6435,-662,-6436,-1317,-623,-4696, +-1136,-2046,-4695], +[0,-104,-30,-76,-8], [1,3,9278], [0,9279,9280,9281,5], -[0,-668,-1548,-1376,-1646,-2528,-1365,-1575,-2269,-556,-14381], -[0,-2541,-1168,-525,-1654,-1666,-2198,-14382,-2105,-615,-527,-1174,-1197,-14383,-14384,-1182,-14385,-559], -[0,-3690,-687,-12694,-5550,-4039,-3161,-3994,-9668,-3957,-719,-13831,-1965,-1376], +[0,-20,-23,-195,-88,-890,-212,-1432,-139,-580,-14569], +[0,-34,-32,-281,-3,-233,-81,-14570,-111,-114,-162,-585,-513,-14571,-14572,-4187,-14573,-321], +[0,-100,-37,-6212,-267,-4693,-53,-306,-1194,-316,-58,-6395,-495,-195], [1,3,9283], [0,9284,0,9285,4], -[0,-834,-14386,-1107], -[0,-3634,-4679,-4004,-14387], +[0,-203,-6437,-28], +[0,-61,-1153,-76,-6438], [1,3,9287], [0,9288,9289,9290,6], -[0,-2359,-1107,-1640,-2059,-9498,-668,-1526,-2555,-14388,-2177,-2536,-674,-2436,-719,-1645,-1600,-14389,-1315,-14390, --14092], -[0,-1344,-1654,-2379,-1942,-3628,-2410,-3036,-6325,-3037,-14391,-14392,-1771,-3621,-8497,-1952,-3199,-11343,-14393,-86, --14394,-8566,-2174,-3661,-2234,-5361,-3307], -[0,-11859,-2472,-5195], +[0,-161,-28,-260,-597,-2843,-20,-1093,-992,-14574,-16,-565,-231,-2003,-58,-92,-220,-14575,-792,-14576,-6419], +[0,-10,-3,-33,-4,-750,-2,-471,-3498,-5,-14577,-14578,-65,-71,-3723,-435,-140,-2895,-6439,-49,-14579,-927,-122,-896,-147, +-2130,-63], +[0,-6089,-4346,-1802], [1,3,9292], [0,0,37,7,4], [1,3,9294], [0,9295,9296,7,4], -[0,-479,-702,-994,-1022,-1107,-1351,-1391,-2231,-2410,-2460,-2536,-2550], -[0,-9478,-14395,-9457,-3036,-14396,-8566,-3621,-3037,-12993,-9476,-7837,-3046,-11343,-3041,-427,-428,-932,-1654,-2125], +[0,-452,-507,-409,-257,-28,-459,-634,-130,-2,-70,-565,-98], +[0,-5693,-14580,-2841,-471,-14581,-927,-71,-5,-6298,-3798,-1560,-526,-2895,-419,-22,-19,-1,-3,-7], [1,3,9298], [0,0,9299,7,9], -[0,-1654,-1650,-2501,-2410,-3037,-2503,-3621,-14397,-748,-262], +[0,-3,-72,-18,-2,-5,-93,-71,-14582,-508,-451], [1,3,9301], [0,9302,0,9303,6], -[0,-14244,-14398,-9631,-7438,-3250], -[0,-2476], +[0,-2935,-14583,-5722,-1852,-2495], +[0,-73], [1,3,9305], [0,0,9306,9307,5], -[0,-23,-26,-33,-3077,-40,-3035,-3621,-3037,-428,-532,-534,-7890,-664,-778,-932,-14399,-1654,-2080,-2125,-2127,-2128,-2138, --2341,-2376,-2410,-2415,-2476,-2481,-2485,-2816,-2486,-2501,-2503], -[0,-2476,-7711,-525,-2410], +[0,-11,-209,-578,-995,-21,-109,-71,-5,-19,-2301,-96,-3664,-13,-141,-1,-6440,-3,-598,-7,-14,-275,-877,-1703,-214,-2,-1269, +-73,-1132,-1475,-1722,-1709,-18,-93], +[0,-73,-2201,-281,-2], [1,3,9309], [0,9310,9311,7,9], -[0,-812,-982,-983,-986,-8141,-2177], -[0,-23,-32,-3332,-14400,-6484,-3244,-190,-3198,-426,-3037,-3199,-427,-428,-3664,-3665,-932,-8230,-961,-965,-8287,-967, --978,-7356,-1942,-2379,-2892,-2410,-2466,-2469], +[0,-35,-1066,-950,-583,-3684,-16], +[0,-11,-156,-3187,-14584,-3517,-290,-50,-169,-320,-5,-140,-22,-19,-105,-1005,-1,-1348,-1223,-115,-2786,-25,-151,-2188,-4, +-33,-380,-2,-104,-30], [1,3,9313], [0,0,9314,9315,5], -[0,-639,-1415,-2476], -[0,-2476,-12517,-11492], +[0,-1051,-8,-73], +[0,-73,-2271,-1585], [1,3,9317], [0,9318,9319,9320,6], -[0,-14401,-14357,-14402], -[0,-14403], -[0,-1348,-9780,-14404,-3862,-2476,-3527], +[0,-14585,-2936,-14586], +[0,-14587], +[0,-1078,-1885,-14588,-107,-73,-2510], [1,3,9322], [0,9323,9324,7,4], -[0,-668,-1284,-12982], -[0,-23,-40,-14405,-426,-12643,-3136,-4647,-14406,-14407,-534,-14408,-740,-778,-1041,-1331,-1415,-1449,-1534,-14409,-1623, --1643,-7034,-7846,-1908,-1942,-1974,-14410,-2231,-2275,-2286,-2287,-2289,-2375,-2376,-2410,-2437,-2476,-2480,-2501,-2503, --2505,-2508,-8160], +[0,-20,-1957,-2276], +[0,-11,-21,-14589,-320,-6204,-29,-614,-14590,-14591,-96,-6441,-385,-141,-271,-342,-8,-78,-17,-14592,-259,-374,-5231,-5374, +-493,-4,-642,-14593,-130,-154,-396,-1701,-883,-57,-214,-2,-438,-73,-3129,-18,-93,-173,-524,-2773], [1,3,9326], [0,0,9327,9328,4], -[0,-3136,-3037,-1415,-2080,-2127,-2375,-2410,-2476,-2477], -[0,-2476,-2410,-11313], +[0,-29,-5,-8,-598,-14,-57,-2,-73,-3128], +[0,-73,-2,-2258], [1,3,9330], [0,9331,9332,7,5], -[0,-3194,-14411,-14357,-14412,-679,-1460,-14378,-1588,-1651,-14413,-1852,-1864,-6569,-2654,-2981,-14414,-2548], -[0,-47,-14415,-3983,-350,-351,-3561,-3266,-12959,-14416,-8523,-8200,-4837,-7438,-14417,-3250,-4838,-10363,-14418,-731, --865,-14419,-7595,-1278,-1719,-14420,-2851,-2125,-2127,-2142,-2892,-2391,-2466,-2476], +[0,-891,-14594,-2936,-14595,-117,-272,-6434,-296,-1437,-14596,-594,-326,-2696,-313,-2479,-14597,-262], +[0,-450,-14598,-366,-77,-62,-237,-206,-3987,-14599,-662,-1188,-1020,-1852,-14600,-2495,-912,-5827,-14601,-1391,-210, +-14602,-5326,-1233,-2389,-14603,-1724,-7,-14,-305,-380,-172,-104,-73], [1,3,9334], [0,9335,9336,7,9], -[0,-1284,-1543], -[0,-527,-533,-549,-740,-1415], +[0,-1957,-732], +[0,-162,-86,-1207,-385,-8], [1,3,9338], [0,9339,0,9340,4], -[0,-14421,-1297], -[0,-2476,-3116], +[0,-14604,-1077], +[0,-73,-607], [1,3,9342], [0,262,9343,7,8], -[0,-2476,-1415,-668,-999,-6828,-932,-2127,-2177,-1004,-2501,-910,-1077,-767,-1978,-2468,-533,-778,-2410,-2481,-23,-3037, --534,-14422,-2484,-40,-7438,-2082,-6429,-2140,-2253,-3561,-14399,-2504,-2506,-350,-740,-351], +[0,-73,-8,-20,-118,-2712,-1,-14,-16,-40,-18,-543,-41,-26,-160,-817,-86,-141,-2,-1132,-11,-5,-96,-14605,-2008,-21,-1852, +-346,-2165,-229,-1125,-237,-6440,-1711,-2454,-77,-385,-62], [1,3,9345], [0,9346,0,9347,5], -[0,-14423], -[0,-2444,-1819,-14424,-1076,-2487,-14425], +[0,-14606], +[0,-136,-1448,-14607,-303,-741,-14608], [1,3,9349], [0,9350,9351,7,4], -[0,-8566,-7955,-8891,-1645], -[0,-3136,-3037,-1107,-1415,-1623,-2125,-2375,-2410], +[0,-927,-3671,-5572,-92], +[0,-29,-5,-28,-8,-259,-7,-57,-2], [1,3,9353], [0,220,9354,9355,4], -[0,-86,-3307,-633,-720,-796,-1344,-1415,-2416], -[0,-2489,-4038,-2006,-1384], +[0,-49,-63,-60,-482,-295,-10,-8,-112], +[0,-605,-2067,-6,-674], [1,3,9357], [0,9358,0,9359,8], -[0,-14426,-1646], -[0,-2444,-3590,-1076,-6999], +[0,-14609,-88], +[0,-136,-208,-303,-660], [1,3,9361], [0,9362,9363,9364,6], -[0,-9501,-633,-679,-6369,-14427,-2347,-2546], -[0,-627,-1650,-2239,-2322,-2416,-14428], -[0,-633,-10362,-2490,-4161,-7641,-4865], +[0,-5698,-60,-117,-2681,-14610,-69,-744], +[0,-1383,-72,-812,-39,-112,-14611], +[0,-60,-5826,-606,-1151,-712,-94], [1,3,9366], [0,9367,123,9368,4], -[0,-13012,-10837,-510,-14429,-13017,-14430,-13025,-13026,-14431,-14432], -[0,-13039,-1818,-1691,-6321,-2071,-1671,-14433,-2492,-2157,-13042], +[0,-6301,-3902,-59,-14612,-6302,-14613,-6303,-6304,-14614,-14615], +[0,-2277,-802,-550,-1169,-688,-375,-14616,-4348,-4311,-6305], [1,3,9370], [0,9371,9372,9373,8], -[0,-501,-510,-1548,-1650,-1980,-2105,-14434], -[0,-14435,-664,-665,-714,-7743,-1004,-1022,-1168,-14436,-1197,-1212,-1231,-1296,-1336,-13334,-1405,-1654,-14437,-1722, --14438,-2150,-14439,-14440,-14441,-2425,-2446,-2550], -[0,-3634,-4864,-11468,-12350,-11467], +[0,-842,-59,-23,-72,-521,-111,-14617], +[0,-14618,-13,-239,-133,-3652,-40,-257,-32,-14619,-513,-1074,-359,-1959,-586,-6341,-66,-3,-14620,-197,-14621,-986,-4028, +-14622,-14623,-1271,-125,-98], +[0,-61,-572,-930,-1588,-1036], [1,3,9375], [0,9376,9377,9378,4], -[0,-14442,-14443,-14444,-14445,-14446,-14447,-14448,-14449,-14450,-14451,-14452,-14453,-14454,-14455,-14456,-14457,-14458], -[0,-14459,-1415,-932,-14460,-4271,-2375,-1942,-589,-2410,-3136,-1422,-3268,-14461,-958,-8378,-940,-14462,-428,-14463,-427], -[0,-14464,-7485,-3816], +[0,-14624,-14625,-14626,-14627,-14628,-14629,-14630,-14631,-14632,-14633,-14634,-14635,-14636,-14637,-14638,-14639,-14640], +[0,-14641,-8,-1,-14642,-3288,-57,-4,-110,-2,-29,-3052,-747,-14643,-9,-5483,-12,-14644,-19,-14645,-22], +[0,-14646,-1854,-1148], [1,3,9380], [0,9381,194,9382,8], -[0,-14465,-14466,-597,-636,-14467,-14468,-14469,-14470,-14471,-14472,-2550], -[0,-2494,-3673,-687,-14473,-4270], +[0,-14647,-14648,-4115,-4120,-14649,-14650,-14651,-14652,-14653,-14654,-98], +[0,-1273,-611,-37,-14655,-3287], [1,3,9384], [0,9385,9386,7,11], -[0,-8231,-426,-4049,-14474,-14475,-14476,-461,-14477,-635,-14478,-909,-14335,-982,-997,-8610,-1119,-11677,-8562,-1641, --9548,-2168,-2321,-2335,-12982,-2510], -[0,-23,-41,-50,-13541,-14479,-8608,-4035,-3136,-3713,-14480,-3037,-14481,-14482,-534,-14483,-14484,-711,-753,-774,-778, --807,-922,-3068,-932,-6929,-1041,-1067,-1110,-14485,-1322,-1344,-1405,-1415,-8950,-1417,-1418,-1421,-1424,-1455,-1460, --1521,-1522,-1534,-1548,-1549,-1623,-14486,-1643,-8913,-1733,-1788,-1806,-8436,-1942,-1950,-1974,-9720,-2000,-2006,-2019, --14487,-2090,-4242, --2095,-2098,-2101,-2125,-5508,-2205,-2269,-2275,-2334,-2344,-2354,-2362,-2376,-2410,-2427,-2437,-14488,-14489,-2503, --14490,-2549], +[0,-3692,-320,-652,-14656,-14657,-14658,-202,-14659,-301,-14660,-781,-1897,-1066,-410,-5542,-324,-6052,-2795,-344,-2238, +-646,-1266,-397,-2276,-1476], +[0,-11,-132,-357,-6370,-14661,-5541,-898,-29,-1146,-14662,-5,-14663,-14664,-96,-14665,-14666,-308,-158,-407,-141,-1061, +-1401,-4491,-1,-617,-271,-1639,-56,-14667,-1423,-10,-66,-8,-5586,-489,-857,-794,-1085,-859,-272,-219,-1092,-17,-23,-461, +-259,-14668,-374,-2813,-590,-15,-1246,-1570,-4,-683,-642,-5735,-685,-6,-36,-14669,-736,-906, +-522,-599,-806,-7,-3415,-600,-139,-154,-177,-1126,-1127,-886,-214,-2,-135,-438,-14670,-14671,-93,-14672,-2013], [1,3,9388], [0,9389,9390,9391,10], -[0,-2531,-2213,-461,-1810,-811,-719,-462,-1863,-1321,-930,-13410], -[0,-824,-664,-1168,-1415,-1652,-932,-1111,-1940,-753,-784,-1889,-2501,-1044,-1978,-682,-778,-1174,-1653,-2437,-23,-667, --2503,-518,-528,-534,-1566,-2275,-44,-1565,-14491,-1908,-9422,-40,-14492,-2505,-41,-540,-969,-14493,-2335,-14494,-14495, --38,-33,-3376], -[0,-2501,-4161,-14496,-3209,-8799,-9845,-14497,-12942,-14498,-7067], +[0,-205,-738,-202,-592,-1621,-58,-1374,-167,-2355,-408,-4001], +[0,-150,-13,-32,-8,-1240,-1,-204,-494,-158,-369,-38,-18,-725,-160,-254,-141,-585,-1978,-438,-11,-1931,-93,-157,-91,-96, +-1238,-154,-90,-1667,-14673,-493,-2839,-21,-14674,-173,-132,-1604,-64,-14675,-397,-14676,-14677,-170,-578,-1139], +[0,-18,-1151,-14678,-381,-1350,-1886,-4029,-6270,-6442,-3575], [1,3,9393], [0,9394,9395,9396,10], -[0,-914,-2068,-713,-719,-1381,-769,-1363,-2508,-14499,-5594,-11676,-13410,-14500], -[0,-14501], -[0,-2501,-687,-3108,-3551,-7882,-3578], +[0,-1629,-1992,-1055,-58,-1964,-225,-1653,-524,-14679,-4960,-2265,-4001,-14680], +[0,-14681], +[0,-18,-37,-1489,-365,-2763,-113], [1,3,9398], [0,9399,9400,9401,9], -[0,-1623,-713,-1641,-1800,-1997,-2168], -[0,-1501,-1313,-1415,-999,-1344,-774,-932,-3122,-729,-825,-1004,-1030,-1110,-2501,-1942,-767,-823,-2293,-21,-190,-204, --533,-2410,-23,-3037,-1041,-1534,-1771,-1045,-5039,-3617,-86,-965,-3560,-14502,-2251,-40,-4835,-3713,-14503,-959,-960, --958,-6929,-978,-940,-967,-3748,-3307], -[0,-2501,-5401,-3113], +[0,-259,-1055,-344,-977,-1114,-646], +[0,-433,-855,-8,-118,-10,-407,-1,-442,-218,-232,-40,-1071,-56,-18,-4,-26,-323,-123,-48,-50,-2952,-86,-2,-11,-5,-271,-17, +-65,-953,-3345,-264,-49,-115,-529,-14682,-134,-21,-1313,-1146,-14683,-145,-180,-9,-617,-151,-12,-25,-315,-63], +[0,-18,-356,-694], [1,3,9403], [0,9404,9405,7,9], -[0,-2531,-1805,-12860,-13318,-1004,-13074,-679,-4204,-713,-11121,-3727,-724,-1119,-2186,-2168,-14504,-13386,-14505,-3617, --14506,-14507,-14508,-14509,-1338,-2504,-731,-12962,-14510], -[0,-1313,-1415,-1521,-461,-999,-1344,-14511,-1623,-774,-932,-1610,-2125,-729,-753,-2501,-1942,-1978,-2293,-21,-533,-778, --1336,-2410,-23,-3037,-1522,-1534,-1771,-2503,-534,-2275,-2230,-4356,-2508,-44,-86,-965,-2062,-2817,-3560,-2251,-40, --4835,-8477,-2411,-3732,-4035,-959,-960,-1331,-5474,-32,-14512,-7716,-958,-6929,-940,-1419,-38,-3307,-5585], +[0,-205,-152,-6252,-6335,-40,-3995,-117,-475,-1055,-2255,-2527,-367,-324,-1122,-646,-14684,-6347,-14685,-264,-14686, +-14687,-14688,-6443,-2357,-1711,-1391,-3988,-14689], +[0,-855,-8,-219,-202,-118,-10,-6444,-259,-407,-1,-227,-7,-218,-158,-18,-4,-160,-123,-48,-86,-141,-586,-2,-11,-5,-1092,-17, +-65,-93,-96,-154,-4322,-2567,-524,-90,-49,-115,-198,-2472,-529,-134,-21,-1313,-2793,-84,-751,-898,-145,-180,-342,-3412, +-156,-14690,-5350,-9,-617,-12,-176,-170,-63,-1327], [1,3,9407], [0,9408,9409,9410,5], -[0,-2269,-1320,-14509], -[0,-1788,-1654,-2210,-932,-1004,-2501,-1942,-2293,-967,-2504], -[0,-2501,-6211,-12517,-3551,-14513,-14514,-5401,-1004], +[0,-139,-673,-6443], +[0,-15,-3,-27,-1,-40,-18,-4,-123,-25,-1711], +[0,-18,-1822,-2271,-365,-14691,-14692,-356,-40], [1,3,9412], [0,9413,9414,7,5], -[0,-2321,-2510], -[0,-366,-3037,-3046,-14515,-3750,-748,-824,-932,-14516,-948,-1041,-1344,-1534,-1626,-1939,-1942,-14517,-2006,-2275,-2387, --2410,-2469,-2501,-2508], +[0,-1266,-1476], +[0,-1910,-5,-526,-14693,-4625,-508,-150,-1,-14694,-246,-271,-10,-17,-1102,-234,-4,-14695,-6,-154,-44,-2,-30,-18,-524], [1,3,9416], [0,9417,9418,9419,5], -[0,-1055,-9087,-3415], -[0,-1344,-2387,-14518,-2501,-1942,-2410,-14519,-426], -[0,-2501,-1631], +[0,-1411,-2230,-3202], +[0,-10,-44,-14696,-18,-4,-2,-14697,-320], +[0,-18,-491], [1,3,9421], [0,0,9422,9423,5], -[0,-664,-932,-958,-1654,-1658,-1705,-2501], -[0,-2501,-5757,-3966,-4161,-14520], +[0,-13,-1,-9,-3,-548,-734,-18], +[0,-18,-4999,-144,-1151,-14698], [1,3,9425], [0,0,9426,9427,5], -[0,-1415,-932,-1110,-2501,-1405,-1942,-756,-190,-2231,-2410,-3136,-965,-3560,-959,-960,-12916,-958,-6929,-978,-940,-967, --3748], -[0,-2501,-2231], +[0,-8,-1,-56,-18,-66,-4,-55,-50,-130,-2,-29,-115,-529,-145,-180,-3986,-9,-617,-151,-12,-25,-315], +[0,-18,-130], [1,3,9429], [0,9430,0,9431,4], -[0,-1119,-769,-2359,-1860], -[0,-9711,-11891], +[0,-324,-225,-161,-640], +[0,-2242,-6094], [1,3,9433], [0,9434,9435,9436,8], -[0,-642,-812,-922,-14521,-13490,-14522], -[0,-641,-1168,-1224,-1453,-1452,-2322], -[0,-2512,-6224,-9005,-14523,-14524,-5737,-14525,-8841,-3844,-3323], +[0,-1929,-35,-1401,-14699,-4009,-14700], +[0,-1612,-32,-791,-969,-119,-39], +[0,-889,-2158,-3756,-14701,-14702,-1328,-4030,-839,-216,-351], [1,3,9438], [0,9439,9440,9441,5], -[0,-14526,-14527,-14528,-14529,-14530,-14531,-14532,-14533,-14534,-14535,-14536,-14537,-812,-929,-14538,-14539,-14540, --14541,-14542,-14543,-14544,-1640,-1801,-14545,-1976,-10570,-14546,-1997,-10576,-13357,-14547,-13729,-14548,-14549, --14550,-14551,-14552,-14553,-14554], -[0,-23,-32,-3367,-40,-14555,-468,-14556,-10575,-14557,-571,-14558,-640,-14559,-771,-14560,-932,-943,-958,-965,-968,-1045, --14561,-1834,-14562,-1985,-2151,-2174,-2187,-6390,-8573,-2320,-2322,-2335,-6391,-2501,-2503,-14563], -[0,-14564,-14565,-867,-14566,-14567,-14568,-14569,-9292,-14570,-14571,-14572,-6471,-14573,-2513], +[0,-14703,-14704,-14705,-14706,-14707,-14708,-14709,-14710,-14711,-14712,-14713,-14714,-35,-484,-14715,-14716,-14717, +-14718,-14719,-14720,-14721,-260,-680,-14722,-1253,-5882,-14723,-1114,-3889,-6342,-14724,-2934,-14725,-14726,-14727, +-14728,-14729,-14730,-14731], +[0,-11,-156,-2035,-21,-14732,-718,-14733,-5883,-14734,-777,-14735,-294,-14736,-1617,-14737,-1,-83,-9,-115,-67,-953,-14738, +-1682,-14739,-982,-1697,-122,-393,-2685,-1870,-560,-39,-397,-2686,-18,-93,-14740], +[0,-14741,-14742,-1217,-14743,-14744,-14745,-14746,-1879,-14747,-14748,-14749,-5128,-14750,-4351], [1,3,9443], [0,9444,9445,9446,10], -[0,-596,-1696], -[0,-11836,-2319], -[0,-3708,-14574,-14575], +[0,-667,-801], +[0,-6086,-85], +[0,-2526,-14751,-14752], [1,3,9448], [0,9449,9450,7,5], -[0,-1004,-1758,-2424], -[0,-710], +[0,-40,-463,-250], +[0,-455], [1,3,9452], [0,0,9453,7,4], -[0,-664,-1471,-1654,-932,-2127,-1942,-1474,-1482,-516,-1962,-14576,-1475,-1477,-1487,-1479,-5993,-8365], +[0,-13,-79,-3,-1,-14,-4,-675,-187,-269,-1685,-14753,-138,-1429,-861,-213,-3464,-5482], [1,3,9455], [0,0,9456,9457,6], -[0,-2493,-1107,-14577,-3691,-1460,-14578,-1452,-1650,-14579,-1813,-589,-14580,-2416,-633,-1963,-14439], -[0,-14581,-14582,-6306,-1961,-5923,-6307,-6308,-2517,-510,-6235,-11153], +[0,-1710,-28,-14754,-422,-272,-14755,-119,-72,-14756,-551,-110,-14757,-112,-60,-1686,-4028], +[0,-14758,-14759,-1824,-171,-504,-3497,-5098,-2009,-59,-1537,-2889], [1,3,9459], [0,9460,29,7,5], -[0,-14583], +[0,-14760], [1,3,9462], [0,0,9463,9464,10], -[0,-2778,-1446,-1654,-1666,-14584,-14585], -[0,-7084,-11722], +[0,-1721,-165,-3,-233,-6445,-14761], +[0,-764,-2266], [1,3,9466], [0,9467,9468,9469,8], -[0,-14586,-5758,-510,-1399,-14587,-14588,-2062,-7967,-2249,-8879,-2522], -[0,-21,-23,-40,-14589,-3037,-14590,-509,-14591,-932,-14592,-1415,-2125,-2240,-13361,-2347,-14593], -[0,-2520,-3444,-5545,-11989,-8948,-648,-1867,-1577,-3674,-4055,-5827], +[0,-14762,-1329,-59,-966,-6446,-14763,-198,-1561,-3106,-2804,-1713], +[0,-48,-11,-21,-6447,-5,-14764,-843,-14765,-1,-14766,-8,-7,-881,-6343,-69,-6448], +[0,-564,-748,-384,-6106,-3748,-1210,-1250,-1433,-1288,-108,-252], [1,3,9471], [0,9472,9473,9474,6], -[0,-14594,-1793,-8879,-2522], -[0,-14595,-14596,-664,-932,-966,-1654,-2125,-3708], -[0,-2520,-14597,-14598,-14599], +[0,-14767,-1681,-2804,-1713], +[0,-14768,-14769,-13,-1,-75,-3,-7,-2526], +[0,-564,-14770,-14771,-14772], [1,3,9476], [0,9477,9478,9479,4], -[0,-14587,-2062,-8879], -[0,-3037,-509,-526,-558,-821,-932,-14589,-1654,-1788,-2125,-14593], -[0,-2520,-3443,-14600], +[0,-6446,-198,-2804], +[0,-5,-843,-179,-253,-780,-1,-6447,-3,-15,-7,-6448], +[0,-564,-2506,-14773], [1,3,9481], [0,9482,9483,9484,4], -[0,-14601,-1107,-1548,-14602,-2347,-14603], -[0,-664,-1077,-1405], -[0,-622,-5897,-4633,-9405,-11729,-3015], +[0,-14774,-28,-23,-14775,-69,-14776], +[0,-13,-41,-66], +[0,-1050,-478,-1771,-3787,-2905,-693], [1,3,9486], [0,0,88,9487,11], -[0,-14604,-14605,-6722,-14606,-14607,-14608,-14609,-5554,-10781,-2524,-12439,-4001], +[0,-4031,-14777,-1172,-14778,-14779,-14780,-14781,-193,-1889,-2010,-3962,-1758], [1,3,9489], [0,0,31,9490,8], -[0,-10781,-4001,-11315,-3276,-6787], +[0,-1889,-1758,-2259,-566,-2173], [1,3,9492], [0,9493,9494,9495,9], -[0,-7141,-1948,-4701,-2510,-14610], -[0,-3037,-3046], -[0,-14611,-14612,-2501,-14613,-6491,-14614,-14615,-14616], +[0,-3578,-520,-1776,-1476,-14782], +[0,-5,-526], +[0,-14783,-14784,-18,-14785,-2167,-14786,-14787,-14788], [1,3,9497], [0,9498,9499,9500,4], -[0,-482,-2267,-2269], -[0,-519,-668,-756,-3607,-1788,-2384,-2541], -[0,-4001,-14604,-2525,-14617,-14618,-5514,-3770,-712,-5535,-714,-3974,-4000,-687,-2265,-3975,-5559,-5538,-5549,-5513, --5550,-2547,-1573,-5545,-3958,-5554], +[0,-719,-395,-139], +[0,-51,-20,-55,-2516,-15,-82,-34], +[0,-1758,-4031,-991,-14789,-14790,-243,-568,-217,-707,-133,-178,-201,-37,-168,-445,-503,-616,-760,-1325,-267,-647,-258, +-384,-299,-193], [1,3,9502], [0,9503,29,9504,6], -[0,-8143,-2202], -[0,-14619,-14620], +[0,-3685,-879], +[0,-14791,-14792], [1,3,9506], [0,0,9507,9508,4], -[0,-589,-642,-932,-940,-967,-1110,-1654,-1788,-1942,-13490], -[0,-14621,-14622,-14525,-14623,-14624,-3509], +[0,-110,-1929,-1,-12,-25,-56,-3,-15,-4,-4009], +[0,-14793,-6449,-4030,-14794,-6450,-1496], [1,3,9510], [0,9511,9512,9513,9], -[0,-7334,-615,-668,-674,-812,-14625,-1400,-1403,-1792,-3633,-14626,-14627], -[0,-756,-1405,-1654,-1657,-6810,-2125,-2210,-2250], -[0,-3690,-674,-14628,-6596,-7534,-3578], +[0,-1552,-114,-20,-231,-35,-14795,-3051,-1657,-241,-3220,-14796,-14797], +[0,-55,-66,-3,-589,-1836,-7,-27,-97], +[0,-100,-231,-14798,-3535,-1344,-113], [1,3,9515], [0,9516,9517,9518,8], -[0,-1109,-14629,-14630,-2546], -[0,-1065,-1939,-2320,-2322], -[0,-2533,-1334,-2540,-3120,-633], +[0,-852,-14799,-14800,-744], +[0,-954,-234,-560,-39], +[0,-743,-103,-2011,-3170,-60], [1,3,9520], [0,9521,9522,9523,6], -[0,-8696,-14631,-14632,-10781,-14633,-14634,-14635], -[0,-7746,-461,-1449,-1654,-2210,-932,-14636,-600,-879,-719,-2410,-3037,-14637,-14638,-957,-7894,-14639], -[0,-11592,-11593,-2534,-14640,-8787,-8713,-788,-14641,-14642,-14643,-10780,-9133], +[0,-5552,-14801,-14802,-1889,-14803,-14804,-14805], +[0,-5360,-202,-78,-3,-27,-1,-4032,-1609,-1063,-58,-2,-5,-14806,-14807,-723,-2765,-14808], +[0,-6039,-6040,-1715,-14809,-5560,-5555,-779,-14810,-14811,-14812,-5915,-2822], [1,3,9525], [0,9526,9527,9528,4], -[0,-2165], -[0,-527,-534,-558,-11550,-632,-14644,-14645,-13841,-708,-756,-767,-932,-14646,-1405,-1412,-1415,-1417,-14647,-1753,-1771, --1955,-2410,-14648,-2490,-2501], -[0,-14649,-6597,-3756,-4182,-4055,-14650,-14651,-14652,-14653,-14654,-8531,-8532,-2536,-2537,-6408,-8530,-14655,-9307, --5845,-14656,-14657,-14658,-1838,-3215,-6747], +[0,-1119], +[0,-162,-96,-253,-6036,-938,-14813,-14814,-6397,-149,-55,-26,-1,-14815,-66,-196,-8,-489,-6451,-285,-65,-436,-2,-4033,-606, +-18], +[0,-14816,-537,-278,-1304,-108,-14817,-14818,-14819,-14820,-14821,-5528,-5529,-565,-3133,-536,-2794,-14822,-3776,-477, +-14823,-14824,-14825,-166,-74,-763], [1,3,9530], [0,9531,9532,9533,8], -[0,-2165,-2538], -[0,-756], -[0,-6597,-4055], +[0,-1119,-1274], +[0,-55], +[0,-537,-108], [1,3,9535], [0,9536,219,7,4], -[0,-1309,-1435,-14659], +[0,-1651,-730,-14826], [1,3,9538], [0,0,192,9539,4], -[0,-6597,-2538], +[0,-537,-1274], [1,3,9541], [0,0,9542,9543,4], -[0,-1415,-2555,-14660,-932,-1753,-14661,-1942,-1100,-1771,-953,-7055,-940,-967], -[0,-5387,-5092,-6597,-3215,-3214,-14662,-14663], +[0,-8,-992,-14827,-1,-285,-14828,-4,-487,-65,-1633,-3573,-12,-25], +[0,-653,-266,-537,-74,-45,-14829,-14830], [1,3,9545], [0,0,0,9546,4], -[0,-2533,-5998], +[0,-743,-1535], [1,3,9548], [0,9549,9550,9551,4], -[0,-1630,-506,-932,-1111,-1110,-1942,-1099,-2400,-1639,-755,-8275,-1849,-1101,-965,-11813,-950,-2411,-14664,-968,-978, --5918,-940,-9869,-8339,-967,-3686,-3748,-428,-14014,-9486,-8230], -[0,-1763,-519,-999,-1344,-815,-5917,-1534,-3330,-86,-6630,-4036,-1768,-1945,-3307,-7357], -[0,-5732,-687,-2541,-8193,-8196,-8197,-707,-8169,-5553,-7148,-8170,-1452,-8171,-932,-5874,-8172,-2250,-8173,-7440,-7144, --8174,-7840,-8175,-5493,-3214,-2410], +[0,-462,-1046,-1,-204,-56,-4,-1229,-215,-361,-386,-3698,-492,-1230,-115,-6082,-1947,-84,-14831,-67,-151,-1164,-12,-5761, +-1866,-25,-2525,-315,-19,-4018,-5694,-1348], +[0,-415,-51,-118,-10,-509,-2653,-17,-364,-49,-1337,-651,-1108,-870,-63,-2740], +[0,-762,-37,-34,-5450,-5451,-5452,-334,-1186,-230,-224,-577,-119,-2774,-1,-534,-1187,-97,-3689,-293,-619,-1565,-1183, +-1566,-654,-45,-2], [1,3,9553], [0,0,9554,9555,4], -[0,-4733,-920,-14665,-1654], -[0,-2542,-6597], +[0,-1310,-1219,-14832,-3], +[0,-2012,-537], [1,3,9557], [0,9558,9559,9560,10], -[0,-3345], -[0,-21,-23,-14666,-38,-40,-14667,-535,-14668,-14669,-633,-932,-1412,-1451,-1788,-14670], -[0,-5569,-5570,-14671,-4112], +[0,-1741], +[0,-48,-11,-14833,-170,-21,-14834,-270,-14835,-14836,-60,-1,-196,-1087,-15,-14837], +[0,-1021,-1160,-14838,-474], [1,3,9562], [0,9563,9564,9565,4], -[0,-719,-2858], -[0,-1788,-812,-1654,-932,-756,-2416,-633], -[0,-8472,-2544,-7723,-14242,-3962,-7107,-5559,-6422,-7724,-2451,-3264,-6138,-14672], +[0,-58,-3151], +[0,-15,-35,-3,-1,-55,-112,-60], +[0,-1869,-1275,-1028,-4023,-352,-711,-503,-833,-767,-439,-31,-2155,-6452], [1,3,9567], [0,0,9568,9569,4], -[0,-14673,-469,-1872,-2153,-2535], -[0,-14674,-14675,-14676,-14677,-14678,-4125,-14679,-3552], +[0,-14839,-183,-1112,-496,-4354], +[0,-14840,-14841,-14842,-14843,-14844,-1302,-14845,-3214], [1,3,9571], [0,0,31,9572,10], -[0,-1015,-1631,-6792,-6696,-7208,-5839], +[0,-432,-491,-2174,-2702,-426,-708], [1,3,9574], [0,0,9575,9576,5], -[0,-3983,-3035,-3198,-14680,-3617,-14681,-3036,-4647,-3621,-3037,-14682,-3046,-4204,-427,-428,-664,-767,-821,-932,-960, --1004,-11616,-1107,-1449,-1654,-1689,-1741,-1788,-2233,-2234,-2376,-2410,-2443,-2501,-2503,-2531,-14683], -[0,-687,-3958,-4000,-11564,-5550,-8905,-3770,-14684,-3974,-3975,-5561,-13861,-2547], +[0,-366,-109,-169,-14846,-264,-14847,-471,-614,-71,-5,-14848,-526,-475,-22,-19,-13,-26,-780,-1,-180,-40,-6042,-28,-78,-3, +-519,-2392,-15,-880,-147,-214,-2,-1706,-18,-93,-205,-14849], +[0,-37,-299,-201,-6037,-267,-2810,-568,-14850,-178,-445,-4952,-6400,-647], [1,3,9578], [0,0,9579,9580,8], -[0,-1415,-2387,-932,-2127,-1942,-190,-533,-1023,-2410,-23,-3136,-3037,-1426,-40,-2411,-3326,-3561,-940,-3267,-14685,-3412], -[0,-14686,-3215,-3270], +[0,-8,-44,-1,-14,-4,-50,-86,-1224,-2,-11,-29,-5,-1660,-21,-84,-207,-237,-12,-330,-14851,-1140], +[0,-14852,-74,-1739], [1,3,9582], [0,9583,9584,9585,10], -[0,-1107,-503], -[0,-589,-6398,-1414], -[0,-2548,-4055,-14687,-14688], +[0,-28,-1204], +[0,-110,-2687,-1967], +[0,-262,-108,-14853,-14854], [1,3,9587], [0,9588,9589,235,5], -[0,-701,-10415,-5505,-2267,-10751,-2551], -[0,-32,-42,-3035,-3621,-3037,-427,-14689,-652,-664,-668,-10480,-767,-769,-932,-967,-1166,-11831,-1654,-2125,-2410,-2518, --14690], +[0,-2990,-2872,-2634,-395,-5913,-525], +[0,-156,-137,-109,-71,-5,-22,-14855,-43,-13,-20,-5846,-26,-225,-1,-25,-1952,-6085,-3,-7,-2,-222,-14856], [1,3,9591], [0,0,9592,9593,4], -[0,-32,-42,-3035,-3621,-3037,-427,-428,-652,-664,-767,-932,-1166,-1654,-1978,-2125,-2184,-2253,-2410], -[0,-6748,-3215,-2550,-3957,-687,-6747,-5829,-4377,-6748], +[0,-156,-137,-109,-71,-5,-22,-19,-43,-13,-26,-1,-1952,-3,-160,-7,-809,-1125,-2], +[0,-1173,-74,-98,-316,-37,-763,-916,-613,-1173], [1,3,9595], [0,9596,9597,7,4], -[0,-14691,-567,-651,-656,-668,-10506,-719,-14692,-812,-10659,-834,-1105,-1371,-1384,-5894,-1526,-14693,-1645,-1650,-1728, --1733,-1796,-7772,-2059,-14694,-2105,-14695,-2125,-14696,-2177,-2270,-2323,-2325,-2441,-10523], -[0,-527,-528,-533,-534,-6085,-555,-559,-14697,-14698,-560,-562,-572,-932,-14699,-7748,-14700,-951,-14701,-956,-14702,-969, --1059,-1168,-1174,-1232,-1237,-1266,-1268,-1415,-1455,-1661,-2330,-2501], +[0,-14857,-282,-454,-430,-20,-5854,-58,-14858,-35,-2877,-203,-545,-728,-674,-3449,-1093,-14859,-92,-72,-2391,-590,-4267, +-1857,-597,-14860,-111,-14861,-7,-14862,-16,-1264,-312,-884,-4343,-5862], +[0,-162,-91,-86,-96,-3480,-937,-321,-14863,-14864,-666,-1048,-844,-1,-14865,-3653,-14866,-783,-14867,-485,-14868,-64,-412, +-32,-585,-2348,-1955,-360,-2349,-8,-859,-1439,-603,-18], [1,3,9599], [0,0,0,9600,8], -[0,-2552,-2554,-3590,-5550,-1764,-13499], +[0,-692,-4356,-208,-267,-159,-6365], [1,3,9602], [0,9603,9604,9605,11], -[0,-5822,-11280], -[0,-599], -[0,-2432,-5408,-5827,-5409,-6656], +[0,-5013,-6004], +[0,-1926], +[0,-1705,-915,-252,-1529,-128], [1,3,9607], [0,9608,9609,263,5], -[0,-14703,-14704,-14705,-14706,-14707,-506,-668,-719,-812,-999,-14708,-1111,-14709,-8802,-1549,-14710,-14711,-2177,-2218, --2430,-14712], -[0,-3198,-3164,-3037,-3199,-14713,-652,-757,-932,-14714,-1077,-1446,-1942,-1945,-2125,-2210,-14715,-2269,-2410,-9011, --9010], +[0,-4034,-14869,-6453,-6454,-6455,-1046,-20,-58,-35,-118,-14870,-204,-14871,-3738,-461,-14872,-6456,-16,-288,-1473,-14873], +[0,-169,-1279,-5,-140,-6457,-43,-582,-1,-6458,-41,-165,-4,-870,-7,-27,-14874,-139,-2,-2818,-2817], [1,3,9611], [0,9612,9613,263,6], -[0,-668,-812,-999,-2177,-1646,-1549,-9444,-2205,-2343,-1456,-14711,-1514,-14716,-3609,-3164,-14705], -[0,-888,-1446,-2210,-2469,-757,-1376,-1942,-2400,-4370,-2410,-9010,-3198,-4372,-3199,-9011,-14713,-5686,-14703,-12968, --14706,-4049,-2556,-3664,-1945], +[0,-20,-35,-118,-16,-88,-461,-3793,-600,-885,-635,-6456,-1968,-14875,-1502,-1279,-6453], +[0,-337,-165,-27,-30,-582,-195,-4,-215,-2570,-2,-2817,-169,-279,-140,-2818,-6457,-761,-4034,-3989,-6454,-652,-3134,-105, +-870], [1,3,9615], [0,0,14,9616,4], -[0,-2558,-14717,-14718,-687,-1965,-5874,-3962,-3953,-14719,-14720,-1838,-14721], +[0,-2014,-14876,-14877,-37,-495,-534,-352,-2058,-14878,-14879,-166,-14880], [1,3,9618], [0,9619,9620,9621,11], -[0,-1630,-1805,-668,-2562,-1548,-1040,-10325,-14722,-14723,-9764,-14724,-14725,-728,-769,-14726,-10388,-5895,-14707,-6715, --14727,-14703,-14728,-3609,-2433,-14729,-2556], -[0,-652,-2541,-1722,-2210,-14714,-1110,-756,-14730], -[0,-5732,-687,-3577,-3113,-7646,-7641,-3578,-3673,-3970,-9471,-3976,-3262,-3960,-3994,-3871], +[0,-462,-152,-20,-2015,-23,-510,-5818,-14881,-14882,-2854,-14883,-14884,-1057,-225,-14885,-5831,-1816,-6455,-2704,-14886, +-4034,-14887,-1502,-604,-14888,-3134], +[0,-43,-34,-197,-27,-6458,-56,-55,-14889], +[0,-762,-37,-192,-694,-1557,-712,-113,-611,-1010,-2842,-1011,-116,-569,-306,-2545], [1,3,9623], [0,0,9624,9625,4], -[0,-14731,-479,-519,-668,-689,-713,-1496,-10962,-1863,-2384,-2541], -[0,-712,-5535,-714,-3974,-4000,-687,-2265,-5514,-5553,-3770,-3975,-5538,-5550,-2547,-1573,-5545,-3958,-5554], +[0,-14890,-452,-51,-20,-1389,-1055,-490,-5956,-167,-82,-34], +[0,-217,-707,-133,-178,-201,-37,-168,-243,-230,-568,-445,-616,-267,-647,-258,-384,-299,-193], [1,3,9627], [0,9628,101,9629,6], -[0,-719,-1376], -[0,-2561,-3690,-3844,-3445], +[0,-58,-195], +[0,-4357,-100,-216,-46], [1,3,9631], [0,9632,9633,9634,4], -[0,-1630,-668,-688,-2528,-481,-2269,-482,-2267,-14732], -[0,-2541,-1654], -[0,-5732,-687,-3976,-2559,-14733,-14734,-6335,-12665,-5514], +[0,-462,-20,-2326,-890,-1045,-139,-719,-395,-14891], +[0,-34,-3], +[0,-762,-37,-1011,-1716,-14892,-14893,-2162,-2924,-243], [1,3,9636], [0,218,9637,9638,5], -[0,-2198,-2177,-1654], -[0,-14735,-2563,-14736,-14737,-14738,-5269,-14739,-6249], +[0,-81,-16,-3], +[0,-14894,-4358,-14895,-14896,-14897,-501,-14898,-2159], [1,3,9640], [0,0,0,9641,11], -[0,-2410,-4058,-3926,-8038,-8910], +[0,-2,-331,-423,-576,-3744], [1,3,9643], [0,9644,9645,9646,6], -[0,-523,-1004,-1851,-2564], -[0,-3731,-3035,-4269,-3732,-14740,-3617,-14741,-3621,-14742,-617,-664,-665,-720,-724,-744,-796,-932,-14743,-1380,-1654, --1676,-1764,-1942,-2251,-2379,-2410], -[0,-2564,-1004,-3690,-14744,-14745,-3445], +[0,-194,-40,-553,-263], +[0,-4623,-109,-754,-751,-6459,-264,-14899,-71,-6460,-163,-13,-239,-482,-367,-581,-295,-1,-14900,-729,-3,-678,-159,-4,-134, +-33,-2], +[0,-263,-40,-100,-14901,-14902,-46], [1,3,9648], [0,9649,9650,9651,10], -[0,-567,-615,-812,-13317,-1351,-1449,-1548,-1640,-1681,-2105,-2364,-2531], -[0,-526,-528,-555,-558,-617,-744,-824,-932,-1004,-1168,-1174,-1197,-11777,-1235,-1252,-1266,-1654,-1676,-1687,-12720, --2111], -[0,-4004,-3636,-3634,-9249,-4679,-4683,-14387,-11878,-4865,-3264,-5177,-5092,-775,-3214,-4868,-5998,-10640,-14746], +[0,-282,-114,-35,-6334,-459,-78,-23,-260,-549,-111,-1129,-205], +[0,-179,-91,-937,-253,-163,-581,-150,-1,-40,-32,-585,-513,-6070,-4197,-311,-360,-3,-678,-3064,-6215,-416], +[0,-76,-1145,-61,-5638,-1153,-2577,-6438,-1358,-94,-31,-615,-266,-24,-45,-913,-1535,-5892,-14903], [1,3,9653], [0,0,9654,7,4], -[0,-2934,-2953,-14747,-9705,-3037,-14748,-615,-10877,-1419,-1421,-1415,-1654,-1660,-1412,-2234,-1413,-10034,-2153,-2314, --2387,-2469], +[0,-3158,-3161,-14904,-1195,-5,-6461,-114,-3905,-176,-794,-8,-3,-1438,-196,-147,-373,-3854,-496,-1702,-44,-30], [1,3,9656], [0,9657,9658,9659,8], -[0,-14749,-7334,-633,-8958,-14750,-714,-719,-724,-742,-812,-1004,-14751,-5456,-14752,-5457,-1296,-1304,-1336,-5458,-14753, --5459,-1548,-1810,-1820,-14754,-2194,-14755,-7222,-2291,-14756,-8573,-2491,-2493,-2546,-2549,-14757], -[0,-465,-14758,-14759,-1654,-1860,-2322,-2347,-14760], -[0,-2568,-3634,-4865,-1989,-1654,-5471], +[0,-14905,-1552,-60,-3749,-14906,-133,-58,-367,-457,-35,-40,-14907,-4933,-14908,-4934,-1959,-372,-586,-3411,-14909,-4935, +-23,-592,-3076,-14910,-737,-14911,-3587,-690,-14912,-1870,-742,-1710,-744,-2013,-14913], +[0,-772,-14914,-14915,-3,-640,-39,-69,-14916], +[0,-993,-61,-94,-376,-3,-1324], [1,3,9661], [0,9662,40,9663,5], -[0,-293,-295,-297,-14761,-832,-2177,-2369,-2387], -[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-4339,-4340,-4343,-4347], +[0,-664,-1907,-934,-2937,-1624,-16,-691,-44], +[0,-1152,-1765,-1766,-1305,-1306,-2081,-1767,-1768,-826,-2082,-2083], [1,3,9665], [0,9666,40,164,6], -[0,-668,-2387,-297,-2177,-1110,-293,-7356,-429,-14761,-8167,-5201], +[0,-20,-44,-934,-16,-56,-664,-2188,-771,-2937,-2210,-3362], [1,3,9668], [0,9669,40,9670,4], -[0,-2387,-297,-2177,-1427,-1645,-293,-1863,-4023,-1426,-2551,-4018,-11751,-4019,-1352,-14761], -[0,-4332,-4333,-4334,-4335,-4336,-4337,-4338,-14762,-4340,-4347], +[0,-44,-934,-16,-858,-92,-664,-167,-3263,-1660,-525,-4686,-2267,-3262,-964,-2937], +[0,-1152,-1765,-1766,-1305,-1306,-2081,-1767,-14917,-826,-2083], [1,3,9672], [0,9673,9674,9675,9], -[0,-2387,-297,-2177,-293,-295,-2569,-14761], -[0,-1787,-2257], -[0,-4333,-4334,-4335,-14763,-4339,-4340,-4343,-4347], +[0,-44,-934,-16,-664,-1907,-4359,-2937], +[0,-1244,-740], +[0,-1765,-1766,-1305,-14918,-1768,-826,-2082,-2083], [1,3,9677], [0,9678,9679,9680,11], -[0,-14764,-14765,-2387], -[0,-14766,-14767,-4745,-2344], -[0,-14768,-2006,-14769,-14770,-5176,-9547,-7581,-12543,-14771,-14772,-14773], +[0,-14919,-14920,-44], +[0,-14921,-14922,-4795,-1126], +[0,-14923,-6,-6462,-6463,-500,-5705,-1345,-2922,-14924,-6464,-6465], [1,3,9682], [0,9683,9684,9685,11], -[0,-14774,-2634,-2006,-2019,-14775,-2170,-14776], -[0,-3037,-3040,-3052,-932,-10813,-1889,-2318,-2410], -[0,-5375,-770,-13055,-5375,-3634,-8576,-13056,-3551,-13057,-13058,-5376,-13059,-11152,-5150], +[0,-14925,-242,-6,-36,-14926,-4314,-14927], +[0,-5,-47,-89,-1,-3900,-38,-559,-2], +[0,-1807,-626,-6307,-1807,-61,-2218,-6308,-365,-6309,-6310,-3386,-6311,-3914,-1155], [1,3,9687], [0,9688,0,9689,4], -[0,-786,-1967,-44,-3772,-3773,-3765], -[0,-2006,-3159,-4217,-906], +[0,-722,-121,-90,-2534,-4629,-2533], +[0,-6,-106,-1016,-1627], [1,3,9691], [0,9692,190,9693,11], -[0,-6789,-6790,-14777], -[0,-3214,-1446,-1838,-10855,-856], +[0,-1547,-5178,-14928], +[0,-45,-165,-166,-1890,-42], [1,3,9695], [0,9696,9697,264,4], -[0,-44,-3345], -[0,-3136,-1415], +[0,-90,-1741], +[0,-29,-8], [1,3,9699], [0,9700,9701,9702,4], -[0,-44,-14778,-1967,-2029,-2387], -[0,-3192,-6093,-3394,-3794,-2685,-14779,-8471,-261,-3326,-350,-405,-406,-407,-14780,-409,-410,-3136,-3140,-3040,-427,-428, --3766,-14781,-14782,-639,-757,-767,-795,-932,-3071,-969,-1059,-14783,-14784,-5111,-8158,-1771,-1940,-4130,-2006,-2019, --2029,-2034,-2052,-2184,-2253,-2410], -[0,-14785,-2006,-6701,-14786,-14787,-3823,-6750,-12605,-14788,-4666,-14789,-12606,-14790], +[0,-90,-14929,-121,-437,-44], +[0,-2492,-3481,-2503,-2537,-2461,-6466,-3720,-2291,-207,-77,-2964,-319,-153,-6467,-120,-307,-29,-997,-47,-22,-19,-1291, +-14930,-6468,-1051,-582,-26,-483,-1,-2484,-64,-412,-14931,-6469,-1521,-5445,-65,-494,-1762,-6,-36,-437,-235,-287,-809, +-1125,-2], +[0,-14932,-6,-5159,-14933,-14934,-2052,-1546,-6200,-14935,-1309,-14936,-3975,-14937], [1,3,9704], [0,90,0,9705,9], -[0,-4665,-4666,-5248,-10111,-775,-5564,-14791,-3962,-3214,-3756,-14792,-14793,-12898,-14794,-14795,-1889,-3583,-14796, --14797,-6750,-12123,-14798,-2363,-14799], +[0,-1018,-1309,-3365,-3865,-24,-2134,-14938,-352,-45,-278,-14939,-14940,-2925,-14941,-14942,-38,-223,-14943,-14944,-1546, +-1895,-6470,-418,-14945], [1,3,9707], [0,9708,9709,9710,9], -[0,-2857,-14800,-14801,-482,-14802,-1460,-2400,-14803], -[0,-14804,-3311,-3312,-14805,-14806,-14807,-2410], -[0,-14808,-4187,-2444,-3966,-4865,-3445,-3100,-14809,-14810], +[0,-4440,-6471,-6472,-719,-14946,-272,-215,-14947], +[0,-6473,-893,-1283,-14948,-6474,-14949,-2], +[0,-6475,-2076,-136,-144,-94,-46,-52,-6476,-6477], [1,3,9712], [0,0,0,9713,8], -[0,-3276,-7148,-14811,-7485,-4165,-4182,-14812,-14813,-14814,-7198,-14815], +[0,-566,-224,-14950,-1854,-753,-1304,-14951,-14952,-14953,-2733,-14954], [1,3,9715], [0,9716,9717,264,5], -[0,-23,-12490,-44,-3345,-14816,-14817,-14818,-14819,-2577,-14820,-14821,-14822,-160,-14823,-2695,-14824,-4785,-14825, --2699,-366,-3735,-9947,-14826,-440,-14827,-518,-534,-14828,-5323,-635,-668,-719,-753,-778,-779,-865,-866,-1077,-1107, --1122,-14829,-1123,-1331,-1455,-1469,-1548,-1643,-1666,-14830,-1729,-1805,-1889,-1896,-1897,-1906,-1908,-12060,-1942, --1966,-6387,-2015,-2041,-2144, --5977,-2193,-2195,-2275,-14831,-2335,-14832,-2435,-2466,-11710,-2501,-2502,-2505,-5628], -[0,-14833,-3758,-3048,-3044,-14834,-4201,-6630,-13186,-5129,-1623,-1683,-1978,-2125], +[0,-11,-3966,-90,-1741,-14955,-14956,-14957,-14958,-4364,-14959,-14960,-14961,-2288,-14962,-2020,-14963,-758,-6478,-2021, +-1910,-822,-3851,-4035,-506,-4036,-157,-96,-14964,-2619,-301,-20,-58,-158,-141,-1214,-210,-945,-41,-28,-371,-14965,-956, +-342,-859,-2364,-23,-374,-233,-14966,-188,-152,-38,-1985,-1684,-555,-493,-2912,-4,-392,-2684,-1255,-686,-645, +-1332,-689,-276,-154,-6479,-397,-14967,-200,-104,-6058,-18,-523,-173,-2639], +[0,-14968,-3235,-191,-143,-14969,-1014,-1337,-2278,-1523,-259,-800,-160,-7], [1,3,9719], [0,34,9720,9721,5], -[0,-234,-350,-4062,-351,-3561,-3043,-3136,-3040,-427,-428,-3807,-748,-915,-932,-940,-958,-967,-969,-1415,-1419,-1449, --1788,-1942,-2006,-2019,-2125,-2127,-2130,-4063,-4064,-2142,-2144,-2233,-2375,-2376,-2379,-2387,-2402,-2501,-2503,-2505, --238,-240], -[0,-9975,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[0,-1200,-77,-238,-62,-237,-1278,-29,-47,-22,-19,-1751,-508,-431,-1,-12,-9,-25,-64,-8,-176,-78,-15,-4,-6,-36,-7,-14,-875, +-900,-4698,-305,-645,-880,-57,-214,-33,-44,-124,-18,-93,-173,-1201,-2955], +[0,-2247,-570,-899,-108,-1296,-52,-116,-352,-1297,-796,-331,-1298,-699,-1299], [1,3,9723], [0,34,9724,9725,4], -[0,-23,-40,-42,-4066,-3136,-3037,-427,-428,-14835,-14836,-14837,-441,-4838,-5593,-753,-767,-932,-940,-958,-14838,-980, --1415,-1419,-1942,-2125,-2127,-2128,-2130,-2142,-2144,-14839,-2375,-2387,-2402,-2410,-2476,-238], -[0,-2476,-3944,-14840,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[0,-11,-21,-137,-530,-29,-5,-22,-19,-6480,-6481,-6482,-1600,-912,-2638,-158,-26,-1,-12,-9,-6483,-785,-8,-176,-4,-7,-14, +-275,-875,-305,-645,-4037,-57,-44,-124,-2,-73,-1201], +[0,-73,-897,-6484,-570,-899,-108,-1296,-52,-116,-352,-1297,-796,-331,-1298,-699,-1299], [1,3,9727], [0,34,9728,9729,8], -[0,-23,-40,-42,-3035,-3136,-3621,-3037,-427,-428,-14835,-14836,-14841,-14837,-441,-4838,-5593,-664,-767,-932,-940,-958, --14838,-980,-1771,-1942,-2125,-2127,-2128,-2130,-2142,-2144,-14839,-14842,-2387,-2402,-2410,-2476,-238,-2584], -[0,-2476,-3944,-14840,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060,-5177,-775,-2316], +[0,-11,-21,-137,-109,-29,-71,-5,-22,-19,-6480,-6481,-14970,-6482,-1600,-912,-2638,-13,-26,-1,-12,-9,-6483,-785,-65,-4,-7, +-14,-275,-875,-305,-645,-4037,-14971,-44,-124,-2,-73,-1201,-4367], +[0,-73,-897,-6484,-570,-899,-108,-1296,-52,-116,-352,-1297,-796,-331,-1298,-699,-1299,-615,-24,-1265], [1,3,9731], [0,9732,9733,9734,5], -[0,-5334,-9596,-9582,-1839,-5358,-6648], -[0,-4251,-3037,-652,-12326,-1942,-2094,-2100,-7699,-2399,-2400,-2410,-7669,-2541], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-1838,-14843], +[0,-251,-1033,-5716,-593,-502,-2700], +[0,-424,-5,-43,-6162,-4,-146,-261,-2754,-236,-215,-2,-1559,-34], +[0,-538,-448,-622,-136,-208,-31,-166,-14972], [1,3,9736], [0,0,9737,9738,4], -[0,-932,-1654,-1788,-2210], -[0,-2254,-14844,-14845,-13497,-14846,-3445], +[0,-1,-3,-15,-27], +[0,-3107,-14973,-14974,-6364,-14975,-46], [1,3,9740], [0,0,0,9741,4], -[0,-14847,-14848,-14849,-14850,-14851,-14852,-14853,-14854,-856,-1599], +[0,-14976,-14977,-14978,-14979,-14980,-14981,-14982,-14983,-42,-99], [1,3,9743], [0,9744,9745,9746,6], -[0,-9929,-9936,-14855,-812,-9927,-1371,-1875,-2240,-2347,-2387,-2555], -[0,-3986,-3988,-3470,-3471,-3198,-9943,-11697,-3136,-3037,-11337,-9941,-7836,-8497,-932,-1415,-1942,-2174,-2375,-2410], -[0,-5271,-5270,-687,-3162,-3994,-9946,-5269], +[0,-2860,-3849,-6485,-35,-3847,-728,-1252,-881,-69,-44,-992], +[0,-2063,-2064,-297,-298,-169,-3850,-2902,-29,-5,-2894,-2861,-2205,-3723,-1,-8,-4,-122,-57,-2], +[0,-355,-291,-37,-95,-306,-2862,-501], [1,3,9748], [0,9749,0,9750,5], -[0,-5334,-14856,-12767,-1293,-14857,-5356,-5358], -[0,-9589,-3264,-14857,-14075,-1599,-10684,-10918,-3862,-2083,-12745,-2093,-14858,-2427], +[0,-251,-14984,-3981,-2352,-4038,-1157,-502], +[0,-448,-31,-4038,-6418,-99,-2879,-929,-107,-377,-1038,-274,-14985,-135], [1,3,9752], [0,9753,9754,9755,5], -[0,-1281,-2297], -[0,-519,-708,-2410,-2541], -[0,-10606,-3974,-14859,-687,-6659,-7440,-5514,-5560,-4000], +[0,-3035,-468], +[0,-51,-149,-2,-34], +[0,-1584,-178,-14986,-37,-710,-293,-243,-4951,-201], [1,3,9757], [0,9758,9759,9760,11], -[0,-8609,-12518], -[0,-2832,-11432,-3615,-3244,-190,-3983,-367,-7043,-406,-407,-409,-14860,-3136,-3037,-3040,-12591,-427,-428,-9723,-932, --940,-12520,-969,-970,-976,-1110,-1344,-1415,-1419,-1534,-2634,-1942,-2006,-2019,-2965,-2125,-2177,-2410,-2411], -[0,-2592,-2006,-3322,-2105,-3324,-4213], +[0,-2220,-2272], +[0,-314,-6020,-498,-290,-50,-366,-245,-1178,-319,-153,-120,-14987,-29,-5,-47,-6198,-22,-19,-2851,-1,-12,-3969,-64,-186, +-1406,-56,-10,-8,-176,-17,-242,-4,-6,-36,-1135,-7,-16,-2,-84], +[0,-2016,-6,-696,-111,-443,-905], [1,3,9762], [0,0,9763,9764,5], -[0,-3037,-2228,-2229,-2391,-2410], -[0,-2410,-8038,-3694,-9069,-7304,-8425,-6582,-7534,-4058,-3445,-3577,-4055,-6435,-640,-5835,-6421,-10227,-6233,-12343, --14861,-14862], +[0,-5,-810,-1262,-172,-2], +[0,-2,-576,-650,-2821,-837,-1569,-479,-1344,-331,-46,-192,-108,-3513,-294,-533,-5116,-2868,-919,-2916,-14988,-14989], [1,3,9766], [0,9767,9768,9769,4], -[0,-14863,-14864,-14865], -[0,-25,-46,-3983,-932,-1452,-1547,-1654,-2111,-8325,-2384,-2416], -[0,-14233,-14866,-4865,-6899,-1819,-14867,-13626,-2594,-14868,-14869,-14870,-14871,-14872,-14873,-14874], +[0,-14990,-14991,-14992], +[0,-405,-539,-366,-1,-119,-1095,-3,-416,-5476,-82,-112], +[0,-4022,-14993,-94,-1176,-1448,-2938,-6378,-1134,-14994,-14995,-14996,-14997,-14998,-14999,-15000], [1,3,9771], [0,0,9772,9773,4], -[0,-1449,-2105,-2106], -[0,-3264,-9703,-9566], +[0,-78,-111,-1694], +[0,-31,-3830,-3818], [1,3,9775], [0,9776,9777,9778,4], -[0,-1297,-14875,-9684,-2267,-14876,-14877,-14878,-6467,-14879,-14880,-14881,-14882,-14883,-14884,-14885,-14886,-14887, --14888,-14889,-9154,-14380,-14890,-14891,-14892,-8965,-14893,-14894,-14895], -[0,-652,-999,-2210,-14896,-581,-932,-825,-14897,-1098,-1942,-367,-749,-767,-2293,-2091,-10402,-2410,-3037,-14898,-14899, --4372,-3906,-11098,-14900,-4203,-14901,-14902,-14903,-14904,-14905,-14906,-13409,-14907,-14908,-4646], -[0,-14909,-3161,-13039], +[0,-1077,-15001,-5731,-395,-15002,-15003,-15004,-1541,-15005,-15006,-15007,-15008,-15009,-15010,-15011,-15012,-15013, +-15014,-15015,-2824,-6436,-15016,-15017,-15018,-5588,-15019,-15020,-15021], +[0,-43,-118,-27,-15022,-1382,-1,-232,-15023,-486,-4,-245,-625,-26,-123,-378,-3876,-2,-5,-15024,-15025,-279,-4667,-5975, +-15026,-1015,-15027,-15028,-15029,-15030,-15031,-15032,-6351,-15033,-15034,-909], +[0,-15035,-53,-2277], [1,3,9780], [0,9781,9782,9783,4], -[0,-14910,-14911,-865,-1461,-1729,-4389], -[0,-14912,-14913,-3037,-4201,-932,-7060,-1942,-2125,-2392,-2410,-2469], -[0,-4344,-7547,-4165], +[0,-15036,-15037,-210,-636,-188,-4768], +[0,-15038,-15039,-5,-1014,-1,-3574,-4,-7,-155,-2,-30], +[0,-1514,-2196,-753], [1,3,9785], [0,9786,9787,9788,8], -[0,-812,-2193,-2387,-2550,-1077,-719,-1729,-14914,-9929,-1734,-9931,-14915], -[0,-1763,-1415,-1344,-2331,-932,-2125,-2375,-1942,-2410,-3136,-3037,-3198,-11337,-8890,-50,-3048,-4201,-14916,-3986,-3988, --427], -[0,-1386,-3996,-14917,-3162,-5269,-3167,-14918], +[0,-35,-689,-44,-98,-41,-58,-188,-15040,-2860,-1444,-3848,-15041], +[0,-415,-8,-10,-379,-1,-7,-57,-4,-2,-29,-5,-169,-2894,-1353,-357,-191,-1014,-15042,-2063,-2064,-22], +[0,-1426,-3260,-15043,-95,-501,-745,-15044], [0,25,9790], 1753574400000, [1,3,9792], [0,9793,0,93,4], -[0,-682,-1384,-1967,-1993,-2006,-2019,-2029,-2489], +[0,-254,-674,-121,-643,-6,-36,-437,-605], [1,3,9795], [0,9796,0,9797,10], -[0,-2387,-14920,-14921,-14922], -[0,-5818,-1122,-3844,-3161,-3966,-3967,-2410], +[0,-44,-15046,-15047,-15048], +[0,-5012,-371,-216,-53,-144,-353,-2], [1,3,9799], [0,9800,9801,221,5], -[0,-9933,-14923,-9938,-9931,-9929,-9934,-9935,-9932,-9937,-9936,-668,-812,-834,-9927,-9925,-1548,-1805,-3547,-8874,-2177, --2240,-9926,-9422,-2291,-2323,-2387], -[0,-3198,-9939,-9943,-3136,-3044,-3037,-3199,-9941,-4202,-5673,-1415,-1417,-1534,-2125,-2231,-2375,-2410], +[0,-5773,-15049,-5777,-3848,-2860,-5774,-5775,-5772,-5776,-3849,-20,-35,-203,-3847,-5770,-23,-152,-1497,-2803,-16,-881, +-5771,-2839,-690,-312,-44], +[0,-169,-1356,-3850,-29,-143,-5,-140,-2861,-3282,-1532,-8,-489,-17,-7,-130,-57,-2], [1,3,9803], [0,34,9804,9805,5], -[0,-14924,-14925,-14926,-8250,-7,-8,-9,-10,-427,-428,-519,-748,-932,-940,-958,-967,-14927,-1788,-1942,-2125,-2153,-2234, --2387,-2402,-2410,-238], -[0,-475,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[0,-15050,-15051,-15052,-5463,-1898,-1899,-1900,-2285,-22,-19,-51,-508,-1,-12,-9,-25,-15053,-15,-4,-7,-496,-147,-44,-124, +-2,-1201], +[0,-184,-570,-899,-108,-1296,-52,-116,-352,-1297,-796,-331,-1298,-699,-1299], [1,3,9807], [0,9808,9809,9810,4], -[0,-8547,-1548], -[0,-3037,-427,-428,-932,-940,-958,-967,-1942,-2125,-2127,-2130,-2142,-2144,-2387,-2402,-2410,-238], -[0,-4053,-4054,-4055,-4056,-3100,-3262,-3962,-4057,-1463,-4058,-4059,-3999,-4060], +[0,-3725,-23], +[0,-5,-22,-19,-1,-12,-9,-25,-4,-7,-14,-875,-305,-645,-44,-124,-2,-1201], +[0,-570,-899,-108,-1296,-52,-116,-352,-1297,-796,-331,-1298,-699,-1299], [1,3,9812], [0,9813,9814,65,5], -[0,-712,-2544], -[0,-4597,-2391,-2423], +[0,-217,-1275], +[0,-2573,-172,-1270], [1,24,9816], [0,25,9817], 1738454400000, [1,3,9819], [0,9820,9821,9822,4], -[0,-44,-2965], -[0,-14928,-2006,-932,-708,-2379,-1942,-767,-2019,-14929,-2410,-5111,-3040,-14784,-3052,-14930,-2052,-7465,-428,-3081,-427], -[0,-3634,-2006,-3322,-5119,-4868], +[0,-90,-1135], +[0,-15054,-6,-1,-149,-33,-4,-26,-36,-15055,-2,-1521,-47,-6469,-89,-15056,-287,-1853,-19,-1727,-22], +[0,-61,-6,-696,-401,-913], [1,3,9824], [0,9825,0,9826,8], -[0,-14931,-14932,-14933], -[0,-10543,-9745,-11796,-9753,-6955,-9030,-2322,-14934,-4132,-14935,-3277,-14647,-11069,-6129,-11037,-5880,-7375,-14936, --14937,-6656,-14938,-14939,-10545,-3018,-3210,-14940,-1015,-3756,-3116,-14770,-6960,-11113,-12877,-4058,-14941,-14942, --6695,-14769,-12869,-6324,-4213,-2564,-6052,-9772,-6821,-5998,-8988,-14943,-11582,-14944,-6511,-5837,-1985,-3103,-14945, --14946,-5550,-1631,-1000,-8808,-8127,-3590,-1959, --7333,-2487,-7420,-5856,-9571,-6011,-3921,-10838,-14947,-2265,-11784,-6953,-4111,-14948,-10366,-9054,-6510,-3612,-11685, --6787,-11798,-12255,-14949,-7863,-14950,-12343,-5176,-719,-3272,-5831,-7373,-14773,-8411,-9027,-11822,-6849,-6962,-7199, --3690,-5846,-687,-14604,-14951,-7856,-7581,-14952,-5827,-14953,-3215,-5195,-3911,-14954,-2387,-3015,-9980,-6281,-4784, --14955,-6548,-10547,-6951,-6964,-6599,-13466, --10527,-11866,-5924,-1435,-13003,-1463,-8038,-3578,-5514,-4782,-7558,-5572,-8410,-4110,-6120,-6968,-503,-14956,-14957, --6434,-6958,-6917,-3258,-6107,-1640,-3994,-1471,-13469,-12991,-14958,-3186,-5272,-14959,-14960,-6233,-12342,-8910,-10537, --581,-6187,-3206,-5112,-2368,-6932,-7283,-14961,-11872,-11791,-3931,-6970,-6845,-510,-5874,-14962,-3771,-4113,-11792, --14963,-3815,-11112,-6717,-7331,-8027,-3634, --8163,-6977,-6280,-14964,-3322,-12020,-10549,-14965,-5210,-2547,-10544,-8108,-14966,-11153,-5092,-8989,-7822,-1361,-1415, --1412,-3481,-6370,-655,-3207,-2344,-6972,-8166,-11782,-7459,-1764,-770,-2059,-7091,-4053,-4792,-6946,-8412,-3582,-6508, --14967,-14968,-4795,-14969,-12893,-6506,-8164,-5554,-635,-6956,-682,-6557,-14970,-14622,-14971,-11070,-14972,-3930, --13770,-6987,-7334,-5842,-13468,-14525,-14973, --1080,-10539,-2518,-6947,-10440,-12892,-8132,-8421,-7404,-2451,-13467,-14974,-1961,-4142,-1122,-6966,-13234,-4679,-12883, --5549,-5395,-9918,-6971,-14975,-8996,-12543,-5829,-11797,-1810,-6655,-14976,-14977,-14978,-14979,-12888,-7370,-8616, --7237,-2319,-6748,-14980,-6439,-1076,-2074,-5569,-3173,-7230,-1983,-14981,-3770,-1993,-11793,-4107,-13465,-1039,-10413, --12437,-7303,-9173,-6989,-12990,-14982,-6978,-5553, --3270,-3185,-10330,-3217,-14983,-1030,-9172,-9917,-4055,-4665,-11821,-3324,-5563,-6784,-6965,-7421,-1359,-1654,-4676, --2105,-14984,-6545,-3175,-10541,-6130,-6957,-3276,-14985,-12025,-7200,-14986,-2489,-1666,-9261,-775,-6543,-7442,-12912, --13471,-14987,-4781,-13005,-615,-3966,-1449,-4115,-12889,-3925,-14988,-6654,-14989,-8388,-8472,-6948,-9048,-14624,-14772, --12512,-8806,-3975,-3209,-14990,-4783,-6975, --14991,-6509,-6444,-9847,-11867,-6985,-14992,-11639,-14993,-3926,-6188,-3162,-6555,-11049,-753,-3184,-14994,-664,-6986, --8128,-14995,-6131,-6852,-12435,-7372,-14996,-1573,-12021,-14997,-14998,-1456,-14999,-3923,-15000,-4134,-5562,-5101, --8047,-9826,-15001,-2525,-15002,-15003,-9577,-15004,-15005,-5396,-5208,-15006,-10548,-2114,-13872,-12438,-729,-7369, --5484,-6351,-8618,-714,-4117,-9572,-12885,-13858,-6983, --11820,-15007,-15008,-1047,-11997,-1342,-727,-15009,-5260,-15010,-8990,-4182,-8130,-6952,-518,-12878,-1986,-15011,-11817, --891,-1801,-6976,-5841,-11483,-7440,-15012,-15013,-6980], +[0,-15057,-15058,-15059], +[0,-5871,-2853,-6079,-3832,-5204,-5603,-39,-15060,-400,-15061,-608,-6451,-5969,-2152,-3911,-2141,-2191,-15062,-15063,-128, +-15064,-6486,-3888,-440,-4514,-15065,-432,-278,-607,-6463,-5208,-5980,-3984,-331,-15066,-15067,-1545,-6462,-6253,-658, +-905,-263,-2147,-2243,-1838,-1535,-2814,-15068,-3926,-15069,-1830,-5014,-982,-1488,-15070,-15071,-267,-491,-849,-2224, +-2771,-208,-362, +-3601,-741,-1027,-2649,-2845,-2145,-2057,-2252,-15072,-168,-3937,-5203,-902,-15073,-1582,-5606,-5133,-1286,-2901,-2173, +-3938,-6145,-15074,-2206,-15075,-2916,-500,-58,-363,-2647,-2190,-6465,-5498,-3757,-3943,-2715,-5209,-5254,-100,-917,-37, +-4031,-15076,-1859,-1345,-15077,-252,-15078,-74,-1802,-2546,-15079,-44,-693,-5784,-5094,-4804,-15080,-5146,-5874,-3565, +-5210,-1336,-4005, +-3887,-2268,-1331,-730,-6299,-796,-576,-113,-243,-3313,-1556,-532,-5497,-901,-832,-5213,-1204,-15081,-15082,-1540,-5207, +-836,-892,-1168,-260,-306,-79,-4008,-3994,-15083,-1280,-1527,-15084,-15085,-919,-6164,-3744,-5868,-1382,-574,-4513,-759, +-2001,-2721,-1847,-15086,-2908,-6076,-4675,-5214,-1340,-59,-534,-15087,-1292,-2071,-6077,-15088,-2542,-5979,-3542,-3600, +-1029,-61, +-1564,-5220,-3493,-15089,-696,-6110,-5876,-15090,-2614,-647,-5872,-1185,-15091,-2889,-266,-5593,-3657,-514,-8,-196,-1141, +-1170,-939,-1736,-1126,-5216,-3688,-6072,-5311,-159,-626,-597,-1843,-570,-425,-5202,-5499,-567,-3521,-15092,-15093,-446, +-15094,-6260,-5132,-3687,-193,-301,-5205,-254,-921,-15095,-6449,-15096,-2254,-15097,-4674,-4015,-5227,-1552,-5015,-4007, +-4030,-15098, +-1950,-5869,-222,-3563,-2250,-6259,-2772,-1190,-5298,-439,-4006,-15099,-171,-2557,-371,-5212,-6326,-1153,-6255,-760, +-2631,-1887,-5215,-15100,-3755,-2922,-916,-6080,-592,-5154,-15101,-15102,-15103,-15104,-6257,-1850,-5543,-2186,-85,-1173, +-15105,-1828,-303,-327,-1021,-695,-2735,-465,-6487,-568,-643,-6078,-824,-4004,-1637,-3877,-3961,-1848,-2233,-1549,-3993, +-15106,-5221,-230, +-1739,-2031,-3872,-350,-15107,-1071,-2232,-3846,-108,-1018,-3942,-443,-2133,-1835,-5211,-427,-965,-3,-1775,-111,-15108, +-1335,-1490,-5870,-2153,-5206,-566,-15109,-6112,-5255,-15110,-605,-233,-1877,-24,-3529,-2194,-6264,-6360,-15111,-4803, +-6300,-114,-144,-78,-2072,-6258,-4673,-15112,-5153,-15113,-1868,-1869,-924,-1575,-6450,-6464,-3967,-2223,-445,-381, +-15114,-2584,-5218, +-15115,-3522,-2689,-5757,-3946,-5225,-15116,-2900,-15117,-423,-2156,-95,-920,-3912,-158,-349,-15118,-13,-5226,-5437, +-15119,-1536,-3558,-6173,-1851,-15120,-258,-6111,-15121,-15122,-635,-15123,-3254,-15124,-3269,-2637,-702,-1861,-3842, +-15125,-991,-15126,-15127,-5715,-15128,-15129,-706,-354,-15130,-5875,-126,-6402,-6174,-218,-2189,-4942,-709,-3730,-133, +-2073,-5713,-6256,-6399,-5223, +-3941,-15131,-15132,-339,-1587,-388,-335,-15133,-704,-15134,-2815,-1304,-1862,-2723,-157,-3985,-983,-15135,-3939,-458, +-680,-5219,-2137,-6024,-293,-15136,-15137,-3566], [1,3,9828], [0,0,9829,9830,4], -[0,-1452,-8171,-1654], -[0,-5514,-3264], +[0,-119,-2774,-3], +[0,-243,-31], [1,3,9832], [0,9833,9834,9835,5], -[0,-4372,-2210,-2387], -[0,-13198,-3698,-13201,-13202,-13204,-13205,-15014,-2402], -[0,-5817,-521,-3634,-4215,-8466,-15015], +[0,-279,-27,-44], +[0,-6318,-1289,-6319,-6320,-6322,-6323,-15138,-124], +[0,-1330,-936,-61,-317,-5516,-15139], [1,3,9837], [0,0,9838,9839,8], -[0,-3561,-668,-15016,-1077,-1107,-1168,-1190,-15017,-2125,-2127,-2132,-2142,-2334,-2387,-2388,-2410], -[0,-3994,-4126,-15018,-15019,-3578,-5270,-11536,-3214,-2363,-15020,-3162,-752,-3862,-2494,-3588], +[0,-237,-20,-15140,-41,-28,-32,-3025,-15141,-7,-14,-417,-305,-177,-44,-199,-2], +[0,-306,-1511,-15142,-15143,-113,-291,-6034,-45,-418,-6488,-95,-943,-107,-1273,-4593], [1,3,9841], [0,0,0,9842,5], -[0,-4000,-3162,-812], +[0,-201,-95,-35], [1,3,9844], [0,9845,9846,9847,8], -[0,-617,-724,-812,-832,-5035,-996,-1496,-2213,-2564], -[0,-3983,-15021,-3171,-364,-3170,-365,-3865,-3330,-518,-803,-932,-940,-975,-1110,-1889,-1942,-1946,-2910,-2299,-2300, --2318,-2410,-2466,-2469], -[0,-3690,-3445,-1334,-2512,-2531,-3691,-3967], +[0,-163,-367,-35,-1624,-3344,-951,-490,-738,-263], +[0,-366,-15144,-4507,-2963,-3175,-1373,-4658,-364,-157,-2996,-1,-12,-2341,-56,-38,-4,-4281,-470,-221,-2442,-559,-2,-104, +-30], +[0,-100,-46,-103,-889,-205,-422,-353], [1,3,9849], [0,0,9850,9851,6], -[0,-23,-40,-86,-3307,-518,-534,-632,-12427,-664,-15022,-699,-15023,-796,-15024,-1168,-15025,-1174,-15026,-15027,-1184, --1187,-1197,-1199,-1212,-1228,-1232,-1237,-1238,-1243,-1244,-1248,-15028,-1252,-1262,-1271,-15029,-1344,-15030,-1442, --1496,-1654,-1655,-15031,-4916,-1889,-1953,-2109,-2111,-2127,-2128,-3572,-3031,-15032,-2210,-4096,-15033,-2460,-15034, --2501,-7752], -[0,-775,-3754,-2162,-3756,-3576,-3575,-3161,-6334,-15035,-15036], +[0,-11,-21,-49,-63,-157,-96,-938,-6171,-13,-15145,-1053,-15146,-295,-15147,-32,-15148,-585,-15149,-15150,-960,-631,-513, +-1073,-1074,-1954,-2348,-1955,-1417,-310,-962,-1418,-15151,-311,-632,-4203,-15152,-10,-15153,-101,-490,-3,-1671,-15154, +-1316,-38,-2407,-2418,-416,-14,-275,-1498,-2482,-15155,-27,-2070,-15156,-70,-15157,-18,-2756], +[0,-24,-444,-80,-278,-649,-4590,-53,-5104,-15158,-15159], [1,3,9853], [0,9854,9855,9856,9], -[0,-668,-15037], -[0,-15038,-3664,-1344,-1534,-1942,-2410,-2469], -[0,-687,-712,-714,-5535,-3958,-4000,-5538,-15039,-15040,-1573,-5545,-5550,-2265,-5553,-3770,-3974], +[0,-20,-15160], +[0,-15161,-105,-10,-17,-4,-2,-30], +[0,-37,-217,-133,-707,-299,-201,-616,-15162,-15163,-258,-384,-267,-168,-230,-568,-178], [1,3,9858], [0,9859,9860,9861,8], -[0,-3776,-15041,-1606,-1967], -[0,-21,-23,-32,-5870,-26,-12490,-34,-12492,-3376,-3400,-3398,-3380,-40,-41,-15042,-3615,-3244,-190,-15043,-12687,-15044, --15045,-15046,-4749,-4758,-15047,-406,-407,-409,-15048,-410,-3136,-4961,-3037,-3040,-3052,-3804,-527,-533,-534,-8560, --15049,-4976,-15050,-684,-748,-749,-753,-767,-824,-932,-933,-940,-951,-958,-962,-967,-969,-970,-976,-1077,-1110,-15051, --1415,-4980,-1417,-1419,-15052,-1449,-1889,-1939,-1942,-1952,-2006,-2015,-2019,-2029,-15053,-2082,-2205,-2257,-2278, --15054,-2339,-15055,-13807,-2375,-2376,-2410,-2501,-2503,-2505], -[0,-2631,-15056,-15057,-3095,-3482,-4189,-3161,-2006,-4101,-15058,-3261,-15059,-15060,-15061,-15062,-4666,-15063,-15064, --15065,-712,-8038,-3999,-4684,-15066,-3160,-3477,-4727,-15067,-2278], +[0,-2535,-15164,-2379,-121], +[0,-48,-11,-156,-829,-209,-3966,-1039,-6180,-1139,-4555,-3200,-4551,-21,-132,-6489,-498,-290,-50,-4039,-6211,-15165,-6490, +-15166,-1019,-2088,-15167,-319,-153,-120,-15168,-307,-29,-1780,-5,-47,-89,-2539,-162,-86,-96,-3727,-15169,-4847,-6491, +-1614,-508,-625,-158,-26,-150,-1,-255,-12,-783,-9,-148,-25,-64,-186,-1406,-41,-56,-15170, +-8,-1782,-489,-176,-15171,-78,-38,-234,-4,-435,-6,-1255,-36,-437,-15172,-346,-600,-740,-882,-15173,-2447,-15174,-4016, +-57,-214,-2,-18,-93,-173], +[0,-4370,-15175,-15176,-131,-382,-2560,-53,-6,-1510,-15177,-746,-15178,-15179,-15180,-15181,-1309,-15182,-15183,-15184, +-217,-576,-699,-4781,-15185,-102,-2508,-4790,-15186,-882], [1,3,9863], [0,0,0,9864,4], -[0,-9681,-9681,-3264,-7153,-2435], +[0,-1882,-1882,-31,-1179,-200], [1,3,9866], [0,0,9867,9868,4], -[0,-15068,-1127,-1134,-1136,-1138,-1140,-1144,-1148,-1149,-15069,-1160], -[0,-14214,-14213,-15070,-15071,-3825,-4126,-6409,-12536,-13615,-1437,-8635,-3576,-3162], +[0,-15187,-54,-240,-629,-511,-1951,-175,-341,-304,-15188,-2346], +[0,-6423,-6422,-15189,-2280,-2053,-1511,-3512,-3971,-1590,-248,-3734,-649,-95], [1,3,9870], [0,9871,9872,254,11], -[0,-1889,-2694,-2279,-4007,-658,-6410], -[0,-2531,-502,-1683,-1816,-2323,-2564,-6842,-1107,-2178,-2444,-461,-2624,-651,-812,-1072,-1460,-12980,-507,-640,-649,-743, --997,-1401,-1699,-2066,-2177,-2334,-5034,-1047,-3447,-1827,-1958,-2501,-1977,-1999,-12981,-12955,-367,-4204,-719,-767, --1273,-11121,-10697,-9548,-1864,-2257,-12982,-15072,-5052,-5673,-12971,-12972,-778,-2745,-1336,-2773,-1354,-12977,-2231, --2269,-2343,-2410, --10052,-23,-237,-3036,-12967,-8559,-5900,-512,-2740,-724,-769,-1429,-2163,-12978,-2194,-6375,-12979,-3921,-47,-3872, --10098,-12956,-3269,-3198,-12963,-3040,-534,-635,-12973,-737,-12974,-1465,-12976,-1930,-8578,-2275,-2594,-12957,-5033, --3044,-3199,-12975,-8562,-6378,-2041,-5977,-6380,-44,-12960,-15073,-6381,-1851,-6383,-6384,-46,-4020,-13428,-12966,-6633, --6386,-1848,-6387,-3194,-12951, --3983,-4749,-8523,-3052,-1337,-6388,-1734,-22,-40,-13427,-12968,-771,-1343,-2233,-11463,-6390,-6391,-5038,-4776,-3732, --7080,-6832,-7026,-1927,-41,-12947,-269,-5085,-3850,-12964,-12969,-736,-1929,-2082,-32,-13186,-6394,-1934,-4195,-3251, --12948,-12952,-15043,-12965,-14296,-7165,-7967,-2335,-12949,-15074,-10100,-10101,-7189,-1903,-2791,-12953,-12959,-1643, --3077,-42,-12950,-8355,-15075,-8863, --12954,-4758,-12961,-12946,-4762,-5323,-4763,-8561,-6484,-38,-7164,-12962,-1915,-37,-3368,-15076,-3376,-3204,-3379,-3385, --3389,-553], +[0,-38,-2019,-3112,-1012,-1052,-2688], +[0,-205,-774,-800,-325,-312,-263,-2714,-28,-808,-136,-202,-1479,-454,-35,-669,-272,-6296,-280,-294,-1386,-336,-410,-856, +-639,-1257,-16,-177,-2097,-339,-1743,-1110,-286,-18,-981,-1458,-6297,-6280,-245,-475,-58,-26,-1075,-2255,-2251,-2238, +-326,-740,-2276,-15190,-3347,-1532,-3991,-6290,-141,-1718,-586,-1484,-1652,-6295,-130,-139,-885,-2, +-3858,-11,-663,-471,-6289,-2215,-3451,-1378,-2463,-367,-225,-1236,-467,-3992,-737,-3502,-2926,-2057,-450,-3247,-2866, +-6281,-1738,-169,-6285,-47,-96,-301,-6291,-846,-6292,-797,-6294,-869,-2219,-154,-1134,-6282,-2603,-143,-140,-6293,-2795, +-3503,-686,-1332,-3504,-90,-6283,-15191,-3505,-553,-2683,-3506,-539,-1760,-6354,-6288,-1834,-3507,-681,-2684,-891,-6276, +-366,-1019,-662,-89,-2356,-3508,-1444,-505,-21,-4002,-3989,-1617,-727,-880,-2261,-2685,-2686,-1317,-757,-751,-1024,-3555, +-2724,-805,-132,-6272,-1906,-3353,-1753,-6286,-3990,-942,-1453,-346,-156,-2278,-3509,-464,-2561,-3183,-6273,-6277,-4039, +-6287,-6426,-2730,-1561,-397,-6274,-15192,-3861,-2867,-2732,-1451,-2469,-6278,-3987,-374,-995,-137,-6275,-1867,-15193, +-1574, +-6279,-2088,-6284,-6271,-1777,-2619,-2583,-2216,-3517,-170,-2729,-3988,-1986,-1040,-3194,-15194,-1139,-398,-4550,-3196, +-3197,-776], [1,3,9874], [0,0,9875,9876,10], -[0,-652,-13239,-1344,-1534,-1889,-2541], -[0,-1889,-775,-3583,-10739], +[0,-43,-2927,-10,-17,-38,-34], +[0,-38,-24,-223,-5911], [1,3,9878], [0,9879,9880,9881,9], -[0,-674,-3050,-15077,-1630,-1641,-1863,-3240,-12379,-2218], -[0,-86,-3307,-190,-3470,-7040,-3471,-3472,-7041,-7042,-3713,-3037,-5675,-15078,-427,-428,-767,-932,-965,-999,-1110,-1344, --13856,-1534,-1870,-1942,-2125,-2174,-2410,-2469], -[0,-3998,-1978,-15079,-3167,-15080,-5270,-5271,-15081,-15082,-15083,-6527,-1594,-3162,-13188,-15084,-15085], +[0,-231,-3165,-15195,-462,-344,-167,-648,-6166,-288], +[0,-49,-63,-50,-297,-925,-298,-749,-618,-1177,-1146,-5,-3423,-15196,-22,-19,-26,-1,-115,-118,-56,-10,-6398,-17,-978,-4,-7, +-122,-2,-30], +[0,-2551,-160,-15197,-745,-15198,-291,-355,-15199,-15200,-15201,-292,-2377,-95,-3997,-15202,-15203], [1,3,9883], [0,9884,9885,9886,9], -[0,-15086,-15087,-640,-5273,-1610,-1955,-4620,-15088], -[0,-23,-32,-40,-534,-15089,-684,-9994,-778,-932,-933,-12416,-958,-10049,-1041,-3867,-1331,-15090,-2275,-2335,-14648,-2501, --2502,-2503,-2505], -[0,-3812,-3813,-3814,-3815,-3816,-3817,-856,-15091,-15092,-2637,-4847,-15093,-15094,-15095,-15096,-15097,-15098,-15099], +[0,-15204,-15205,-294,-3367,-227,-436,-4773,-15206], +[0,-11,-156,-21,-96,-15207,-1614,-5786,-141,-1,-255,-2920,-9,-3857,-271,-4660,-342,-15208,-154,-397,-4033,-18,-523,-93, +-173], +[0,-3242,-4644,-4645,-2542,-1148,-1752,-42,-15209,-15210,-4373,-571,-15211,-15212,-15213,-15214,-15215,-15216,-15217], [1,3,9888], [0,94,9889,9890,5], -[0,-23,-32,-44,-932,-933,-940,-958,-962,-967,-969,-970,-1415,-3156,-1942,-2006,-2034], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-10738,-9556,-15020,-15100,-12546,-5176], +[0,-11,-156,-90,-1,-255,-12,-9,-148,-25,-64,-186,-8,-1732,-4,-6,-235], +[0,-235,-106,-1037,-6,-95,-291,-355,-102,-5910,-3817,-6488,-6492,-3972,-500], [1,3,9892], [0,0,9893,9894,5], -[0,-23,-40,-44,-15101,-12564,-932,-1344,-1534,-2006,-2034,-2410], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-13876,-15102,-6711,-15103], +[0,-11,-21,-90,-15218,-3973,-1,-10,-17,-6,-235,-2], +[0,-235,-106,-1037,-6,-95,-291,-355,-102,-6405,-15219,-2703,-15220], [1,3,9896], [0,0,9897,9898,11], -[0,-23,-32,-26,-3204,-38,-40,-41,-3326,-350,-351,-407,-409,-518,-703,-796,-932,-940,-12520,-967,-969,-970,-976,-1344, --1352,-1415,-1534,-1889,-1942,-1967,-2006,-2019,-2127,-4063,-15104,-3474,-4753,-2281,-2282], -[0,-2006,-13613,-15105,-4108,-2006,-3095,-15106,-3162,-5270,-5271,-15107,-15108,-15109,-15110], +[0,-11,-156,-209,-398,-170,-21,-132,-207,-77,-62,-153,-120,-157,-302,-295,-1,-12,-3969,-25,-64,-186,-1406,-10,-964,-8,-17, +-38,-4,-121,-6,-36,-14,-900,-15221,-3206,-1311,-182,-558], +[0,-6,-4012,-15222,-1301,-6,-131,-6493,-95,-291,-355,-15223,-15224,-15225,-15226], [1,3,9900], [0,9901,9902,9903,9], -[0,-44,-15111,-15112], -[0,-23,-36,-38,-40,-41,-42,-8280,-50,-15113,-407,-409,-3040,-3052,-427,-428,-440,-528,-651,-767,-932,-940,-967,-969,-1344, --1415,-1419,-1534,-1942,-2006,-2019,-2125,-2410,-2466], -[0,-15114,-15115,-2006,-3159,-14798], +[0,-90,-15227,-15228], +[0,-11,-300,-170,-21,-132,-137,-1865,-357,-15229,-153,-120,-47,-89,-22,-19,-506,-91,-454,-26,-1,-12,-25,-64,-10,-8,-176, +-17,-4,-6,-36,-7,-2,-104], +[0,-15230,-15231,-6,-106,-6470], [1,3,9905], [0,9906,9907,9908,6], -[0,-656,-15116,-2400], -[0,-2832,-3615,-190,-15117,-9705,-652,-668,-716,-722,-928,-932,-940,-967,-999,-1110,-1344,-1412,-1534,-1574,-1942,-2125, --7969,-2410,-2411], -[0,-8630,-3671,-856,-3262,-1599,-3437,-4328], +[0,-430,-15232,-215], +[0,-314,-498,-50,-15233,-1195,-43,-20,-4129,-456,-87,-1,-12,-25,-118,-56,-10,-196,-17,-638,-4,-7,-1860,-2,-84], +[0,-1192,-399,-42,-116,-99,-1000,-1764], [1,3,9910], [0,9911,9912,9913,11], -[0,-349,-703,-15118,-3517,-996,-1359,-2040,-2112,-12695,-12518,-15119], -[0,-21,-23,-40,-41,-42,-44,-15042,-10791,-8230,-3615,-190,-12608,-15120,-349,-3562,-15043,-358,-4754,-13424,-2948,-15121, --4890,-15122,-15123,-15124,-407,-409,-410,-15125,-12940,-15126,-3037,-3040,-3052,-6633,-440,-5286,-3664,-534,-15127, --8561,-635,-15050,-767,-7272,-7254,-7271,-834,-932,-15128,-940,-948,-958,-960,-962,-967,-969,-970,-15129,-4756,-1107, --1110,-1344, --1449,-1534,-1610,-1874,-1942,-2006,-2019,-2029,-2040,-2125,-2257,-2335,-2376,-2378,-2410,-2411,-6412,-2469,-15130,-2501, --2502,-2503], -[0,-2006,-3476,-14497,-3159], +[0,-1909,-302,-15234,-528,-951,-965,-872,-2419,-3977,-2272,-15235], +[0,-48,-11,-21,-132,-137,-90,-6489,-5921,-1348,-498,-50,-6201,-15236,-1909,-1004,-4039,-2293,-1154,-6353,-4465,-15237, +-2587,-15238,-15239,-15240,-153,-120,-307,-15241,-6269,-15242,-5,-47,-89,-1834,-506,-1156,-105,-96,-6494,-2216,-301, +-6491,-26,-5272,-3592,-3593,-203,-1,-15243,-12,-246,-9,-180,-148,-25,-64,-186,-15244,-2582,-28,-56,-10, +-78,-17,-227,-391,-4,-6,-36,-437,-872,-7,-740,-397,-214,-814,-2,-84,-5113,-30,-6495,-18,-523,-93], +[0,-6,-527,-4029,-106], [1,3,9915], [0,9916,9917,9918,4], -[0,-15131], -[0,-15132,-15133,-15134,-15135,-350,-351,-410,-4875,-4877,-15136,-15137,-4878,-15138,-15139,-652,-664,-15140,-15141,-932, --15142,-958,-1449,-11472,-1654,-1942,-2127,-15143,-2184,-2210,-2211,-2253,-2334,-2410], -[0,-15144,-5072,-5065,-12238,-5073,-14939,-15145,-5495,-3161,-12122,-7651,-3110,-15146,-13039,-6106,-6107,-5394,-15147, --15148], +[0,-15245], +[0,-15246,-15247,-15248,-15249,-77,-62,-307,-4825,-4826,-15250,-15251,-4827,-15252,-15253,-43,-13,-15254,-15255,-1,-15256, +-9,-78,-3923,-3,-4,-14,-15257,-809,-27,-190,-1125,-177,-2], +[0,-15258,-3350,-1786,-6142,-3351,-6486,-15259,-1810,-53,-6135,-1181,-277,-15260,-2277,-1819,-1168,-3391,-15261,-15262], [1,3,9920], [0,0,9921,9922,6], -[0,-23,-5585,-40,-2127,-2128,-2133,-2137,-2339,-15149,-13807,-2416], -[0,-15150,-15151,-7581,-1634,-475,-15152,-2006,-2476,-3755], +[0,-11,-1327,-21,-14,-275,-1118,-347,-2447,-15263,-4016,-112], +[0,-6496,-6497,-1345,-4244,-184,-15264,-6,-73,-3234], [1,3,9924], [0,9925,9926,9927,4], -[0,-44,-15153,-4817,-809,-1549,-15154,-2355,-2451], -[0,-3341,-26,-38,-40,-42,-86,-3307,-2997,-3326,-350,-15155,-4062,-351,-3561,-15156,-15157,-15158,-15159,-3164,-3037,-3803, --5011,-6109,-427,-428,-4837,-5589,-3664,-3665,-5590,-441,-14247,-14244,-4838,-518,-523,-656,-5339,-720,-726,-767,-795, --796,-812,-15160,-928,-932,-934,-940,-958,-967,-980,-1125,-1344,-1449,-1521,-1534,-1551,-15161,-1662,-1889,-1942,-1955, --15162,-2082,-2125,-2127,-13263,-4063,-5122,-6483,-15163,-6746,-4753,-15164,-15165,-2140,-14839,-2145,-15166,-2387,-2410, --2466,-15167,-2469,-2476,-2478,-2483,-5627], -[0,-2476,-3162,-15168], +[0,-90,-15265,-1778,-542,-461,-15266,-1128,-439], +[0,-1138,-209,-170,-21,-137,-49,-63,-820,-207,-77,-6498,-238,-62,-237,-15267,-15268,-15269,-15270,-1279,-5,-1006,-2599, +-3482,-22,-19,-1020,-3417,-105,-1005,-4959,-1600,-6425,-2935,-912,-157,-194,-430,-2624,-482,-284,-26,-483,-295,-35, +-15271,-87,-1,-185,-12,-9,-25,-785,-670,-10,-78,-219,-17,-1664,-15272,-1105,-38,-4,-436, +-15273,-346,-7,-14,-6330,-900,-3357,-1334,-15274,-5167,-1311,-15275,-15276,-229,-4037,-878,-15277,-44,-2,-104,-15278,-30, +-73,-990,-888,-1531], +[0,-73,-95,-15279], [1,3,9929], [0,9930,9931,9932,5], -[0,-5277,-929,-1437], -[0,-23,-40,-9678,-4964,-518,-521,-15169,-757,-767,-784,-795,-7758,-865,-932,-940,-943,-958,-966,-967,-968,-974,-1753, --1889,-1890,-1891,-15170,-1896,-1903,-15171,-1906,-1916,-15172,-12060,-1942,-2125,-2127,-2128,-2131,-2133,-8895,-15173, --2137,-8896,-15174,-2140,-5281,-2214,-2281,-3085,-2302], -[0,-5298,-6656,-15175,-15176,-15177,-7581,-7582,-6527,-15178,-5069,-3162,-12536,-7764,-4634,-12217,-8883,-1437], +[0,-4896,-484,-248], +[0,-11,-21,-3823,-1781,-157,-936,-15280,-582,-26,-369,-483,-5362,-210,-1,-12,-83,-9,-75,-25,-67,-129,-285,-38,-2403,-682, +-15281,-1985,-1451,-15282,-555,-1452,-15283,-2912,-4,-7,-14,-275,-466,-1118,-2807,-15284,-347,-2225,-15285,-229,-4897, +-328,-182,-2027,-2444], +[0,-4903,-128,-15286,-4040,-15287,-1345,-1855,-292,-15288,-2606,-95,-3971,-1182,-1017,-6139,-5571,-248], [1,3,9934], [0,9935,9936,9937,5], -[0,-523,-1435,-1548,-1646,-2153], -[0,-664,-932,-4628,-1650,-1654,-2330], -[0,-4116,-826,-687,-6999,-9043,-12054,-15179,-1334,-11915,-15180,-9041,-5730,-7085,-11642,-9261,-7084,-15181,-12578], +[0,-194,-730,-23,-88,-496], +[0,-13,-1,-3306,-72,-3,-603], +[0,-825,-627,-37,-660,-2819,-6114,-15289,-103,-6097,-15290,-5604,-3431,-1342,-2263,-1877,-764,-15291,-2923], [1,3,9939], [0,0,9940,9941,4], -[0,-518,-632,-1168,-15182,-1194,-1208,-1226,-1238,-1243,-1244,-1252,-7832,-15183,-1899,-2281,-2282,-2550], -[0,-2649,-15184,-15185,-775,-1521,-3162], +[0,-157,-938,-32,-15292,-4189,-790,-1232,-1417,-310,-962,-311,-2759,-15293,-2404,-182,-558,-98], +[0,-4376,-15294,-15295,-24,-219,-95], [1,3,9943], [0,0,0,9944,6], -[0,-2006,-4125,-9800,-4633,-2074,-4634], +[0,-6,-1302,-1355,-1771,-327,-1017], [1,24,9946], [0,25,9947], 1731196800000, [1,3,9949], [0,9950,9951,7,8], -[0,-15186,-4225,-4228,-15187,-15188,-15189,-4230,-15190,-703,-5342,-15191,-1026,-3649,-1289,-14857,-1618,-10922,-1619, --5397,-15192,-15193,-2590,-4241,-2088,-4242,-2095,-15194,-15195,-15196,-12978,-4245,-2218,-12508,-2378,-15197,-2429, --15198,-2548,-2564], -[0,-5048,-409,-426,-5334,-4251,-15199,-3040,-3046,-440,-15200,-9602,-9603,-2634,-2006,-2019,-2427,-2469,-15201], +[0,-15296,-2563,-2077,-15297,-15298,-15299,-4724,-15300,-302,-1805,-15301,-226,-499,-1958,-4038,-862,-2884,-1101,-2632, +-15302,-15303,-4368,-4725,-3100,-906,-522,-15304,-15305,-15306,-3992,-907,-288,-2921,-814,-15307,-348,-15308,-262,-263], +[0,-4859,-120,-320,-251,-424,-15309,-47,-526,-506,-15310,-1881,-3821,-242,-6,-36,-135,-30,-15311], [1,3,9953], [0,9954,0,9955,4], -[0,-12260], -[0,-810,-15202,-15203,-6367,-5896,-13618,-15204,-15205,-2653], +[0,-6146], +[0,-4141,-15312,-15313,-2163,-3450,-6377,-15314,-15315,-2018], [1,3,9957], [0,9958,9959,204,4], -[0,-4787,-1864], -[0,-2581,-3037,-8523,-1026,-15206,-1107,-2354,-2892,-2410], +[0,-1312,-326], +[0,-329,-5,-662,-226,-4041,-28,-1127,-380,-2], [1,3,9961], [0,0,0,9962,8], -[0,-2410,-3694,-4004,-4043,-1001], +[0,-2,-650,-76,-473,-338], [1,3,9964], [0,9965,37,9966,4], -[0,-15207,-2387], -[0,-15208,-15209,-15210,-15211,-15212,-2410,-5210,-3215,-6478,-9471,-15213,-8130,-3756,-8386,-15214,-3445,-3577], +[0,-15316,-44], +[0,-15317,-15318,-15319,-15320,-15321,-2,-2614,-74,-5130,-2842,-6499,-1862,-278,-3712,-15322,-46,-192], [1,3,9968], [0,0,28,9969,10], -[0,-12613,-3098,-3100,-3482,-2634,-1713,-2006,-12612,-12449,-3160,-4119], +[0,-1589,-127,-52,-382,-242,-390,-6,-6202,-1359,-102,-903], [1,3,9971], [0,108,28,9972,8], -[0,-707,-3098,-3100,-4131,-3482,-2634,-1713,-2006,-4132,-4133,-3160,-4119], +[0,-334,-127,-52,-2074,-382,-242,-390,-6,-400,-4704,-102,-903], [1,3,9974], [0,9975,28,9976,5], -[0,-2020], -[0,-3098,-7761,-878,-3100,-3482,-2634,-1713,-2006,-3160,-4119,-7764], +[0,-4290], +[0,-127,-5363,-4150,-52,-382,-242,-390,-6,-102,-903,-1182], [1,3,9978], [0,266,28,9979,8], -[0,-3098,-3100,-3482,-2634,-1713,-1779,-1959,-2006,-3160,-4119], +[0,-127,-52,-382,-242,-390,-1243,-362,-6,-102,-903], [1,3,9981], [0,266,28,9982,4], -[0,-15215,-3098,-3100,-3482,-2634,-1713,-2006,-7282,-3160,-4119], +[0,-15323,-127,-52,-382,-242,-390,-6,-766,-102,-903], [1,3,9984], [0,0,28,9985,4], -[0,-3098,-3100,-3482,-2634,-1713,-2006,-15216,-10114,-15217,-3160,-4119], +[0,-127,-52,-382,-242,-390,-6,-15324,-3866,-15325,-102,-903], [1,3,9987], [0,9988,9989,9990,4], -[0,-1616], -[0,-21,-23,-3204,-40,-42,-3748,-4776,-15218,-3330,-3032,-3037,-427,-428,-932,-940,-958,-960,-965,-15219,-5863,-1772,-2125, --2410,-2469], -[0,-15220,-1874,-795,-1654,-2469,-1415,-1412,-1710,-11410,-15221,-11100,-4004,-9246,-6863,-3634,-15222], +[0,-1100], +[0,-48,-11,-398,-21,-137,-315,-757,-15326,-364,-4485,-5,-22,-19,-1,-12,-9,-180,-115,-15327,-3447,-345,-7,-2,-30], +[0,-15328,-391,-483,-3,-30,-8,-196,-3067,-2897,-6500,-5976,-76,-2830,-1023,-61,-15329], [1,3,9992], [0,9993,9994,9995,6], -[0,-15223,-15224,-15225,-15226,-12846,-15227], -[0,-15228,-3617,-3037,-15229,-15230,-15231,-1004,-2125,-2892,-2410,-2469], -[0,-15227,-1004,-3445,-6324,-3690,-9668,-2410,-3214,-5401], +[0,-15330,-6501,-15331,-6502,-3982,-4042], +[0,-15332,-264,-5,-6503,-6504,-6505,-40,-7,-380,-2,-30], +[0,-4042,-40,-46,-658,-100,-1194,-2,-45,-356], [1,3,9997], [0,0,9998,9999,11], -[0,-1763,-10652,-2250,-4004,-15232], -[0,-3162,-11321,-7440,-4865], +[0,-415,-2875,-97,-76,-15333], +[0,-95,-1357,-293,-94], [1,3,10001], [0,10002,10003,10004,5], -[0,-5358,-2427,-5334,-1293,-8913,-12766,-2235,-5356,-12767], -[0,-652,-932,-2083,-1942,-1874,-2094,-2410,-3037,-6648,-12750,-12749,-11167,-15233], -[0,-856,-4147,-5670,-3862,-2083,-12745,-2093,-2427], +[0,-502,-135,-251,-2352,-2813,-6219,-1124,-1157,-3981], +[0,-43,-1,-377,-4,-391,-146,-2,-5,-2700,-3980,-3979,-2890,-15334], +[0,-42,-2075,-2640,-107,-377,-1038,-274,-135], [1,3,10006], [0,10007,10008,10009,5], -[0,-15234,-15235,-15236,-15237,-15238,-15239,-15240,-15241,-15242,-15243,-15244,-15245], -[0,-21,-2388,-2410], -[0,-15246,-3163,-12254,-6324,-3214,-11230,-8043,-15247,-3162], +[0,-15335,-15336,-15337,-15338,-15339,-15340,-15341,-15342,-15343,-15344,-15345,-15346], +[0,-48,-199,-2], +[0,-15347,-2486,-3959,-658,-45,-1892,-5412,-15348,-95], [1,3,10011], [0,10012,0,93,11], -[0,-2606,-15248,-682,-15249,-1384,-1967,-1993,-2006,-2019,-2029,-2489], +[0,-2458,-6506,-254,-6507,-674,-121,-643,-6,-36,-437,-605], [1,3,10014], [0,10015,0,93,10], -[0,-2006,-2019,-1967,-2606], +[0,-6,-36,-121,-2458], [1,3,10017], [0,10018,0,10019,8], -[0,-2387,-1387,-232,-1461], -[0,-1386,-3161,-475,-3162,-3994,-3995,-3996,-752,-3997,-3998], +[0,-44,-1654,-2953,-636], +[0,-1426,-53,-184,-95,-306,-2065,-3260,-943,-3261,-2551], [1,24,10021], [0,25,10022], 1733616000000, @@ -14053,139 +13855,135 @@ true, 1734220800000, [1,3,10029], [0,0,10030,10031,4], -[0,-2200,-2162,-2834,-2387,-932,-2125,-2127,-2149,-2334,-1753,-1889,-1077,-1942,-620,-767,-2281,-2410,-3563,-1771,-1891, --6326,-518,-726,-3564,-1547,-6327,-945,-15250,-958,-978,-6331,-3267,-428,-14014,-3573,-427], -[0,-775,-2162,-3576,-8856,-3110,-4101,-3161,-15251,-11229], +[0,-394,-80,-1277,-44,-1,-7,-14,-2421,-177,-285,-38,-41,-4,-453,-26,-182,-2,-1747,-65,-682,-3499,-157,-284,-2513,-1095, +-2676,-1222,-15349,-9,-151,-5103,-330,-19,-4018,-3218,-22], +[0,-24,-80,-649,-3740,-277,-1510,-53,-15350,-2892], [1,3,10033], [0,10034,10035,10036,4], -[0,-44,-15252,-15253], -[0,-21,-23,-26,-33,-5585,-38,-39,-40,-43,-3035,-3621,-3037,-528,-534,-539,-571,-15254,-15255,-633,-664,-665,-12469,-767, --932,-1004,-4652,-1449,-1654,-1788,-2105,-2125,-2228,-2335,-2410,-2490,-2491,-2501,-2503], -[0,-5801,-3162,-3690,-10810,-15256], +[0,-90,-15351,-15352], +[0,-48,-11,-209,-578,-1327,-170,-449,-21,-174,-109,-71,-5,-91,-96,-333,-777,-15353,-15354,-60,-13,-239,-3965,-26,-1,-40, +-3308,-78,-3,-15,-111,-7,-810,-397,-2,-606,-742,-18,-93], +[0,-1162,-95,-100,-3899,-15355], [1,3,10038], [0,0,10039,10040,11], -[0,-652,-664,-726,-756,-928,-932,-1449,-1544,-1654,-2162], -[0,-3214,-3162,-5270,-5271,-8617], +[0,-43,-13,-284,-55,-87,-1,-78,-4233,-3,-80], +[0,-45,-95,-291,-355,-5544], [1,3,10042], [0,10043,10044,10045,6], -[0,-1992,-712,-809,-15257,-1548,-682,-15258,-1762,-15259,-15260,-15261,-6640,-2055,-15262], -[0,-4977,-2006,-2019,-3040,-3044,-44,-3052,-15263,-409,-407,-410,-2622,-3024], -[0,-2006,-5253,-3159,-2678,-15264,-15265,-3095,-3098,-3160,-3161,-3100,-3162], +[0,-684,-217,-542,-6508,-23,-254,-15356,-1980,-15357,-15358,-15359,-5151,-687,-15360], +[0,-2094,-6,-36,-47,-143,-90,-89,-15361,-120,-153,-307,-1478,-1487], +[0,-6,-1526,-106,-4381,-15362,-15363,-131,-127,-102,-53,-52,-95], [1,3,10047], [0,10048,10049,93,4], -[0,-2606,-15248,-15266,-2669,-2670,-682,-1384,-1967,-1993,-2006,-2019,-2489,-15249], -[0,-15267,-15268,-15269], +[0,-2458,-6506,-15364,-4379,-4380,-254,-674,-121,-643,-6,-36,-605,-6507], +[0,-15365,-15366,-15367], [1,3,10051], [0,0,10052,10053,4], -[0,-3473,-1942,-2127,-2128,-5384,-2129], -[0,-3100,-11853,-11851], +[0,-4564,-4,-14,-275,-4912,-985], +[0,-52,-1586,-3945], [1,3,10055], [0,10056,10057,10058,4], -[0,-6815], -[0,-409,-3040,-3052,-778,-1071,-1344,-2006,-2019,-2049,-2275,-2376,-8973,-2387,-2410,-2501,-3612], -[0,-6750,-15270,-15271,-15272,-3095,-3576,-3162,-2363,-6750,-3823,-15273,-12606], +[0,-5184], +[0,-120,-47,-89,-141,-3016,-10,-6,-36,-2414,-154,-214,-3750,-44,-2,-18,-1286], +[0,-1546,-15368,-15369,-15370,-131,-649,-95,-418,-1546,-2052,-4043,-3975], [1,3,10060], [0,10061,10062,10063,10], -[0,-4733,-668,-719,-999,-1077,-1948,-1966,-2177,-2426,-2518,-2528,-2542,-2555], -[0,-15274,-3899,-652,-1107,-1110,-6295,-8065,-1971], -[0,-2682,-15275,-15276,-3162,-5270,-15277,-5271], +[0,-1310,-20,-58,-118,-41,-520,-392,-16,-289,-222,-890,-2012,-992], +[0,-6509,-1009,-43,-28,-56,-5095,-1562,-596], +[0,-4382,-15371,-15372,-95,-291,-15373,-355], [1,3,10065], [0,10066,0,10067,4], -[0,-1867,-11957,-11964,-15278], -[0,-15279,-3444,-5545,-3262,-856,-15280,-15281], +[0,-1250,-6102,-3951,-15374], +[0,-1591,-748,-384,-116,-42,-1592,-1593], [1,3,10069], [0,10070,10071,10072,9], -[0,-15282,-15283,-15284,-31,-15285,-3325,-280,-11671,-469,-719,-7731,-15286,-15287,-5934,-1442,-10584,-1577,-1645,-1729, --15288,-2115,-10624,-2177,-2205,-2379,-2410], -[0,-932,-959,-969,-973,-1077,-1415,-1448,-1607,-2125,-15289], -[0,-3328,-856,-3262,-1599,-9308], +[0,-15375,-15376,-15377,-4066,-15378,-4539,-840,-6051,-183,-58,-2202,-15379,-15380,-5031,-101,-5885,-1433,-92,-188,-15381, +-644,-3894,-16,-600,-33,-2], +[0,-1,-145,-64,-2340,-41,-8,-795,-972,-7,-15382], +[0,-2497,-42,-116,-99,-3777], [1,3,10074], [0,10075,10076,10077,5], -[0,-6869,-8386,-1805,-623,-668,-999,-1526,-1826,-2387,-1548,-2177,-753,-1966,-2501,-679,-1077,-2357,-719,-1327,-695,-832, --929,-2043,-5977,-2508,-15290,-2433,-15291,-2044,-15292,-3859,-15293,-4239,-2505,-15294,-1331,-15295,-15296,-2502,-15297, --15298,-15299], -[0,-7982,-7688,-3052,-3861,-13398,-2052,-13186,-11702,-15300,-15301,-14826,-14779], -[0,-2006,-5371,-2501,-856,-7695,-7696,-858], +[0,-2717,-3712,-152,-1209,-20,-118,-1093,-552,-44,-23,-16,-158,-392,-18,-117,-41,-3119,-58,-3044,-624,-1624,-484,-873, +-1332,-524,-15383,-604,-15384,-557,-15385,-3245,-15386,-3285,-173,-15387,-342,-15388,-15389,-523,-15390,-15391,-15392], +[0,-2207,-5341,-89,-4657,-6349,-287,-2278,-3928,-15393,-15394,-4035,-6466], +[0,-6,-3384,-18,-42,-5345,-3649,-1625], [1,3,10079], [0,10080,10081,268,11], -[0,-2387,-1387,-232], -[0,-1763,-1415,-2006,-932,-2125,-2127,-2375,-1077,-1942,-2019,-2410,-3136,-3037,-3040,-3052,-3986,-3988,-409,-1419,-3267, --407,-428,-2622,-427], +[0,-44,-1654,-2953], +[0,-415,-8,-6,-1,-7,-14,-57,-41,-4,-36,-2,-29,-5,-47,-89,-2063,-2064,-120,-176,-330,-153,-19,-1478,-22], [1,3,10083], [0,0,10084,10085,4], -[0,-3136,-427,-428,-753,-756,-784,-932,-1415,-1417,-1424,-1449,-15302,-2127,-2375,-2410], -[0,-12841,-3582,-6989,-5389,-10095,-12523,-2410,-3214,-9682,-3095,-11486,-12121,-5065,-3577,-3264,-4333,-4334,-15303], +[0,-29,-22,-19,-158,-55,-369,-1,-8,-489,-1085,-78,-4044,-14,-57,-2], +[0,-6250,-567,-1549,-827,-2248,-3970,-2,-45,-1581,-131,-3924,-6134,-1786,-192,-31,-1765,-1766,-15395], [1,3,10087], [0,10088,0,10089,4], -[0,-703,-2825,-2690,-1967,-44,-2997,-192], -[0,-2006,-3159,-4217,-15304,-4665], +[0,-302,-1723,-1481,-121,-90,-820,-2949], +[0,-6,-106,-1016,-15396,-1018], [1,3,10091], [0,10092,0,10093,6], -[0,-2690,-1967,-44], -[0,-2006,-3159,-4217,-4101], +[0,-1481,-121,-90], +[0,-6,-106,-1016,-1510], [1,3,10095], [0,10096,0,10097,8], -[0,-703,-2029,-2825,-1967,-44,-3140], -[0,-2006,-3159,-4217,-5260], +[0,-302,-437,-1723,-121,-90,-997], +[0,-6,-106,-1016,-704], [1,3,10099], [0,10100,0,95,5], -[0,-15305,-15306,-823,-1878], +[0,-15397,-15398,-323,-554], [1,3,10102], [0,269,0,95,5], [1,3,10104], [0,10105,10106,10107,4], -[0,-469,-2177,-1047,-15310,-15311,-12390,-8802,-1395,-3609], -[0,-6997,-2466,-2469,-757,-1026,-2410,-7982,-1772,-10267], -[0,-15312,-15313,-8902,-3184,-3161,-1168,-3214,-3264,-3482,-1599,-3967,-15314,-15315,-3995,-5372,-3255,-3256,-15316, --15317,-15318], +[0,-183,-16,-339,-15402,-15403,-6167,-3738,-1082,-1502], +[0,-2181,-104,-30,-582,-226,-2,-2207,-345,-5812], +[0,-15404,-15405,-1872,-349,-53,-32,-45,-31,-382,-99,-353,-15406,-15407,-2065,-2132,-4519,-4520,-15408,-15409,-2281], [1,3,10109], [0,0,10110,10111,5], -[0,-865,-8559,-866], -[0,-2006,-2634,-9736,-865], +[0,-210,-2215,-945], +[0,-6,-242,-1884,-210], [1,3,10113], [0,10114,10115,10116,4], -[0,-2624,-2231,-15319,-2168,-1320,-3606], -[0,-2558,-1415,-1623,-932,-1699,-825,-2501,-1077,-1098,-1942,-767,-1978,-2400,-1424,-2410,-23,-3136,-3037,-769,-2503,-534, --11747,-1772,-2041,-3046,-3048,-7080,-4049,-15320,-2505,-15321,-12916,-15322,-1421,-2335,-940,-967,-1419,-2506,-3204], -[0,-2006,-3214,-2501,-10675,-6211,-15323,-1540,-12516,-10589,-12517,-11492], +[0,-1479,-130,-15410,-646,-673,-2044], +[0,-2014,-8,-259,-1,-639,-232,-18,-41,-486,-4,-26,-160,-215,-1085,-2,-11,-29,-5,-225,-93,-96,-2906,-345,-686,-526,-191, +-1024,-652,-15411,-173,-15412,-3986,-15413,-794,-397,-12,-25,-176,-2454,-398], +[0,-6,-45,-18,-5898,-1822,-15414,-1094,-3968,-3892,-2271,-1585], [1,3,10118], [0,0,10119,10120,11], -[0,-13324,-1123,-15324], -[0,-15325,-1122,-4058,-3694,-2410,-4258,-3161,-3862], +[0,-6339,-956,-15415], +[0,-15416,-371,-331,-650,-2,-908,-53,-107], [1,3,10122], [0,10123,10124,10125,5], -[0,-1816,-3612,-2466,-15326,-623,-668,-999,-865,-1548,-1872,-2177,-680,-1753,-1821,-2501,-679,-1077,-1376,-1942,-719,-749, --695,-778,-2410,-2061,-15327,-15328,-635,-5676,-726,-2115,-2275,-15329,-15330,-15331,-15332,-4236,-2041,-15333,-15334, --15335,-3808,-15336,-15337,-4805,-15338,-15339,-15340,-15341,-1331,-15342,-2504,-2506,-15343,-5319,-1643,-2502,-15344, --15345,-15346,-14827,-15347,-1067, --2695], -[0,-1415,-2006,-9056,-2019,-3136,-3037,-3044,-15348,-3048,-15349,-15350,-14826], -[0,-15351,-7643,-15352,-7645,-15353,-15354,-11229,-3690,-6120,-3161,-1334,-4055,-1501,-15355,-13039,-1791,-11437,-1818, --3691,-5728,-7107,-15356,-5372,-3214,-11878,-12303,-12304,-12301,-12299,-15357,-15358,-3445,-7696,-15359,-1520,-15360, --2006,-3476], +[0,-325,-1286,-104,-15417,-1209,-20,-118,-210,-23,-1112,-16,-481,-285,-803,-18,-117,-41,-195,-4,-58,-625,-624,-141,-2, +-1991,-15418,-15419,-301,-1813,-284,-644,-154,-15420,-15421,-15422,-15423,-2078,-686,-15424,-15425,-15426,-1293,-15427, +-15428,-2586,-15429,-15430,-15431,-15432,-342,-15433,-1711,-2454,-15434,-4905,-374,-523,-15435,-15436,-15437,-4036, +-15438,-1639, +-2020], +[0,-8,-6,-2228,-36,-29,-5,-143,-15439,-191,-15440,-15441,-4035], +[0,-15442,-2199,-15443,-5335,-15444,-6510,-2892,-100,-832,-53,-103,-108,-433,-15445,-2277,-865,-2899,-802,-422,-1161,-711, +-15446,-2132,-45,-1358,-6157,-6158,-6156,-6155,-15447,-15448,-46,-3649,-6511,-1430,-6512,-6,-527], [1,3,10127], [0,10128,10129,10130,4], -[0,-23,-14825,-656,-755,-15361], -[0,-2303], -[0,-5049,-3839,-2006,-3103,-3690], +[0,-11,-6478,-430,-386,-15449], +[0,-602], +[0,-4860,-265,-6,-1488,-100], [1,3,10132], [0,10133,10134,10135,4], -[0,-47,-3223], -[0,-15362], -[0,-3264,-9589,-525,-9588,-14188,-9590], +[0,-450,-472], +[0,-15450], +[0,-31,-448,-281,-622,-6421,-538], [1,3,10137], [0,0,0,10138,4], -[0,-5141,-4601,-4602,-3578,-3445,-754], +[0,-703,-476,-531,-113,-46,-368], [1,3,10140], [0,10141,10142,168,5], -[0,-809,-713,-15363], -[0,-1344,-2469,-2410,-3037,-411,-2581,-86,-5144,-3664,-3307], +[0,-542,-1055,-15451], +[0,-10,-30,-2,-5,-1911,-329,-49,-4880,-105,-63], [0,23,0,97,5], [1,3,10145], [0,23,0,10146,9], -[0,-3577,-3100,-2808,-5155,-5156,-5157,-5158,-659,-5159,-5160,-5161,-5162,-5163,-5164,-5165,-5166,-5167,-5168,-2006,-3476, --5169,-5170,-5171,-5172,-2476,-5173,-1940,-5174,-1437,-5175,-475,-2410,-3214,-5176,-3578,-5177,-5178,-5179,-775,-3264, --5180,-5181,-5182,-5183,-659,-5184,-5185,-5186,-5187,-5188,-5189,-15364,-15366], +[0,-192,-52,-1485,-1791,-2104,-1792,-1524,-322,-1793,-1794,-1795,-2105,-2106,-1796,-1797,-2107,-2108,-2109,-6,-527,-2110, +-2111,-2112,-2113,-73,-1319,-494,-2114,-248,-1320,-184,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-2115, +-322,-2116,-2117,-2118,-2119,-2120,-2121,-2939,-15453], [1,3,10148], [0,23,0,98,9], [1,3,10150], @@ -14195,1226 +13993,1198 @@ true, [0,23,0,99,11], [1,3,10155], [0,10156,10157,10158,6], -[0,-3698,-13203,-15369,-15370,-11418,-617,-722,-733,-736,-744,-754,-2762,-930,-1004,-15371,-15372,-1010,-13106,-5989, --1116,-15373,-1299,-1388,-11121,-1465,-1548,-1641,-1666,-1667,-1676,-1681,-1744,-1826,-5262,-7223,-2182,-2297,-15374, --2451,-15375,-2531], -[0,-3732,-14740,-4198,-3330,-3733,-4623,-3850,-3044,-14742,-3851,-3037,-8852,-3046,-4204,-999,-1336,-1722,-2293,-2410, --2469], -[0,-5300,-1959,-15176,-15376,-15377,-5940,-9139,-15378,-6335,-3445,-2512,-1004,-8841], +[0,-1289,-6321,-15456,-15457,-3919,-163,-456,-1935,-942,-581,-368,-3146,-408,-40,-15458,-15459,-850,-3996,-2655,-387, +-15460,-3037,-1965,-2255,-797,-23,-344,-233,-863,-678,-549,-3071,-552,-4895,-3588,-1121,-468,-15461,-439,-15462,-205], +[0,-751,-6459,-1512,-364,-2529,-3303,-1753,-143,-6460,-1506,-5,-2801,-526,-475,-118,-586,-197,-123,-2,-30], +[0,-4904,-362,-4040,-15463,-15464,-1165,-5617,-15465,-2162,-46,-889,-40,-839], [1,3,10160], [0,10161,0,271,9], -[0,-2476,-2362,-753,-928,-1442,-2501,-679,-1582,-778,-1888,-2437,-2481,-2483,-5628,-23,-769,-1041,-518,-534,-14408,-15379, --2508,-13389,-1908,-15380,-2711,-2505,-748,-1929,-15381,-15382,-2485,-2718,-1643,-2712,-15383,-731,-15384,-2714,-1814, --2716], +[0,-73,-886,-158,-87,-101,-18,-117,-434,-141,-641,-438,-1132,-888,-2639,-11,-225,-271,-157,-96,-6441,-15466,-524,-4000, +-493,-1360,-3140,-173,-508,-1453,-15467,-15468,-1475,-2462,-374,-4396,-6513,-1391,-15469,-4398,-1982,-3141], [1,3,10163], [0,10164,0,10165,6], -[0,-1955,-1600,-7898,-1603,-1601,-2718,-5614], -[0,-856,-3262,-1599,-2476,-2816], +[0,-436,-220,-5382,-1097,-971,-2462,-4969], +[0,-42,-116,-99,-73,-1722], [1,3,10167], [0,10168,0,42,5], -[0,-2711,-1543,-1582], +[0,-3140,-732,-434], [1,3,10170], [0,10171,0,42,9], -[0,-15380,-1553], +[0,-1360,-1972], [1,3,10173], [0,10174,0,42,9], -[0,-15380,-769], +[0,-1360,-225], [1,3,10176], [0,10177,0,42,8], -[0,-1779,-15380], +[0,-1243,-1360], [1,3,10179], [0,10180,0,42,5], -[0,-15380,-2718], +[0,-1360,-2462], [1,3,10182], [0,10183,0,42,4], -[0,-15380], +[0,-1360], [1,3,10185], [0,10186,10187,42,5], -[0,-668,-929,-1077,-1111,-1125,-1284,-2177,-2362,-4701], -[0,-15385], +[0,-20,-484,-41,-204,-670,-1957,-16,-886,-1776], +[0,-15470], [1,3,10189], [0,10190,0,42,4], -[0,-1548,-2286,-5602,-2287,-15380,-2717,-15383,-2715,-15386,-2713], +[0,-23,-396,-4962,-1701,-1360,-3142,-6513,-4399,-15471,-4397], [1,3,10192], [0,10193,10194,58,4], -[0,-15387,-15388,-15389,-15390,-15391], -[0,-664,-1654,-2379,-2501,-21,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40,-15392,-15393,-42], +[0,-15472,-2940,-15473,-15474,-15475], +[0,-13,-3,-33,-18,-48,-11,-829,-109,-29,-5,-65,-93,-71,-449,-174,-21,-15476,-6514,-137], [1,3,10196], [0,10197,132,58,8], -[0,-15388,-15399,-15400], +[0,-2940,-4045,-15482], [1,3,10199], [0,10200,10201,58,9], -[0,-1940,-6935,-747,-15401,-15402], -[0,-664,-1654,-932,-753,-2379,-2501,-2376,-21,-778,-2410,-23,-5870,-3035,-3136,-3037,-1637,-1771,-2503,-3621,-3040,-2275, --15403,-14831,-39,-43,-40,-966,-969,-958,-968,-940,-943,-967,-974,-42], +[0,-494,-1841,-778,-6515,-6516], +[0,-13,-3,-1,-158,-33,-18,-214,-48,-141,-2,-11,-829,-109,-29,-5,-677,-65,-93,-71,-47,-154,-15483,-6479,-449,-174,-21,-75, +-64,-9,-67,-12,-83,-25,-129,-137], [1,3,10203], [0,10204,10205,58,11], -[0,-2722,-15401,-15402,-15404,-15405,-15406], -[0,-664,-2494,-1654,-932,-4270,-753,-2379,-2501,-1942,-21,-2410,-23,-5870,-3035,-3136,-3037,-1771,-2503,-3621,-39,-43,-40, --966,-969,-958,-968,-15407,-940,-943,-967,-974,-42], +[0,-4401,-6515,-6516,-15484,-15485,-15486], +[0,-13,-1273,-3,-1,-3287,-158,-33,-18,-4,-48,-2,-11,-829,-109,-29,-5,-65,-93,-71,-449,-174,-21,-75,-64,-9,-67,-15487,-12, +-83,-25,-129,-137], [1,3,10207], [0,10208,132,58,11], -[0,-2531,-15388,-15399], +[0,-205,-2940,-4045], [1,3,10210], [0,10211,0,10212,6], -[0,-703,-15408], -[0,-15409,-15410,-3162,-6184], +[0,-302,-15488], +[0,-15489,-15490,-95,-1821], [1,3,10214], [0,0,0,173,4], [1,3,10216], [0,0,0,10217,5], -[0,-475,-3161,-4865,-7243,-3634,-5495], +[0,-184,-53,-94,-1550,-61,-1810], [1,3,10219], [0,117,10220,10221,4], -[0,-519,-668,-756,-1788,-2250,-2251], -[0,-5514,-9846,-687,-15411,-7210], +[0,-51,-20,-55,-15,-97,-134], +[0,-243,-2859,-37,-6517,-1846], [1,3,10223], [0,228,10224,10225,5], -[0,-9705,-5686,-4624,-3037,-8890,-11458,-617,-11477,-1168,-12346,-1260,-1412,-15412,-15413,-1452,-1722,-2125,-2150,-15414, --2173,-2379,-2388,-12348,-2410,-12349,-2819], -[0,-4004,-3634,-11468,-12350,-11467], +[0,-1195,-761,-3304,-5,-1353,-1893,-163,-2262,-32,-2917,-3033,-196,-15491,-15492,-119,-197,-7,-986,-6518,-1120,-33,-199, +-1896,-2,-2918,-3149], +[0,-76,-61,-930,-1588,-1036], [1,3,10227], [0,0,10228,272,5], -[0,-526,-528,-6104,-558,-6089,-562,-932,-934,-6013,-940,-956,-958,-1059,-1344,-1415,-1534,-1942,-2125,-2416], +[0,-179,-91,-5076,-253,-2666,-1048,-1,-185,-2656,-12,-485,-9,-412,-10,-8,-17,-4,-7,-112], [1,3,10230], [0,10231,10232,10233,8], -[0,-7226,-15425,-7944,-719,-729,-7949,-1048,-1276,-6343,-7959,-1641,-15426,-2125,-7968,-2359,-7971,-2425,-7972], -[0,-190,-3035,-4269,-15427,-15428,-3617,-15429,-3713,-3037,-15430,-3628,-15431,-427,-428,-15432,-664,-665,-749,-932,-940, --964,-966,-967,-999,-1054,-1116,-5487,-1654,-1888,-1942,-7981,-2148,-2177,-2210,-2211,-7970,-2379,-2410], -[0,-6342,-4865,-7641,-4258,-3100,-9290], +[0,-3589,-6528,-3668,-58,-218,-3670,-1409,-247,-2678,-3672,-344,-15493,-7,-5391,-161,-5393,-1271,-5394], +[0,-50,-109,-754,-15494,-15495,-264,-15496,-1146,-5,-15497,-750,-15498,-22,-19,-15499,-13,-239,-625,-1,-12,-256,-75,-25, +-118,-1227,-387,-4943,-3,-641,-4,-3674,-1261,-16,-27,-190,-5392,-33,-2], +[0,-1825,-94,-712,-908,-52,-3775], [1,3,10235], [0,10236,10237,273,4], -[0,-15425,-6343,-7964,-7966,-2125,-2148,-5509], -[0,-664,-665,-1654,-15433], +[0,-6528,-2678,-5389,-5390,-7,-1261,-2635], +[0,-13,-239,-3,-15500], [1,3,10239], [0,10240,10241,273,4], -[0,-7226,-1276,-3607,-1641], -[0,-664,-7979,-1004,-1452,-1654,-6347,-2106,-2148], +[0,-3589,-247,-2516,-344], +[0,-13,-3673,-40,-119,-3,-2680,-1694,-1261], [1,3,10243], [0,10244,10245,10246,4], -[0,-1343], -[0,-1445,-1452,-1654,-2198], -[0,-4864,-4865,-2734,-9711,-3634], +[0,-727], +[0,-587,-119,-3,-81], +[0,-572,-94,-1717,-2242,-61], [1,3,10248], [0,0,10249,10250,4], -[0,-526,-527,-15434,-558,-664,-1654], -[0,-656,-6514,-775,-5092], +[0,-179,-162,-15501,-253,-13,-3], +[0,-430,-2168,-24,-266], [1,3,10252], [0,0,133,10253,4], -[0,-3264,-8034,-3223,-7472,-4846,-6557,-15435], +[0,-31,-1184,-472,-1180,-1314,-921,-4046], [1,3,10255], [0,0,133,10256,5], -[0,-3264,-15436,-8034,-3223,-7472,-4846,-6557,-15435], +[0,-31,-15502,-1184,-472,-1180,-1314,-921,-4046], [1,3,10258], [0,0,133,10259,4], -[0,-3264,-8034,-3223,-7472,-4846,-6557], +[0,-31,-1184,-472,-1180,-1314,-921], [1,3,10261], [0,0,10262,10263,4], -[0,-8096,-14182,-652,-725,-1288,-1292,-1942,-2087,-2094,-2100,-2125,-2322,-2399,-2410,-2427,-2541], -[0,-3264,-8034,-10902,-7472,-4846,-15435,-15437,-6557], +[0,-714,-4021,-43,-309,-1650,-726,-4,-1994,-146,-261,-7,-39,-236,-2,-135,-34], +[0,-31,-1184,-5942,-1180,-1314,-4046,-15503,-921], [1,3,10265], [0,0,0,41,9], [1,3,10267], [0,10268,251,10269,4], -[0,-15438], -[0,-712,-5535,-5549,-775], +[0,-15504], +[0,-217,-707,-760,-24], [1,3,10271], [0,0,92,10272,5], -[0,-5092,-3264,-12064,-13319,-7205,-1838,-6231], +[0,-266,-31,-6119,-6336,-2734,-166,-447], [1,3,10274], [0,10275,88,10276,4], -[0,-1016,-15439,-8493], -[0,-3671,-856,-3960,-3262,-1599,-3261,-15440], +[0,-2343,-15505,-2214], +[0,-399,-42,-569,-116,-99,-746,-6529], [1,3,10278], [0,0,10279,10280,5], -[0,-1654,-664,-1405], -[0,-775,-12120,-5101,-15441,-3162,-1838,-5572], +[0,-3,-13,-66], +[0,-24,-6133,-702,-15506,-95,-166,-532], [1,3,10282], [0,0,10283,10284,6], -[0,-756,-1405], -[0,-2265,-4112,-7188,-775,-10310,-3582], +[0,-55,-66], +[0,-168,-474,-5251,-24,-3871,-567], [1,3,10286], [0,10287,10288,10289,4], -[0,-781], -[0,-652,-928,-932,-1654,-2127,-2232], -[0,-775,-6454,-6684,-1644,-7192,-7193,-15442], +[0,-1059], +[0,-43,-87,-1,-3,-14,-811], +[0,-24,-575,-834,-228,-765,-1845,-15507], [1,3,10291], [0,10292,10293,10294,4], -[0,-508], -[0,-932,-940,-967,-1942,-2319], -[0,-5829,-3215,-6747,-687,-3957,-4377,-6836,-15443], +[0,-2299], +[0,-1,-12,-25,-4,-85], +[0,-916,-74,-763,-37,-316,-613,-1175,-15508], [1,3,10296], [0,10297,0,10298,8], -[0,-492,-493,-15444,-495,-722,-1122,-1123,-1439,-7679], -[0,-15445,-3445,-1105,-15446], +[0,-1914,-1915,-2941,-1916,-456,-371,-956,-967,-1346], +[0,-1594,-46,-545,-15509], [1,3,10300], [0,10301,0,10302,4], -[0,-1439,-1848,-7679], -[0,-15445,-3445,-5800,-8904], +[0,-967,-681,-1346], +[0,-1594,-46,-1534,-2809], [1,3,10304], [0,10305,0,10306,4], -[0,-722,-1439,-1645,-1848,-7679,-15447], -[0,-15445,-3445,-7660], +[0,-456,-967,-92,-681,-1346,-6530], +[0,-1594,-46,-2200], [1,3,10308], [0,10309,0,10310,4], -[0,-15448,-1371,-1469,-1645], -[0,-15445,-3445,-15449,-15450], +[0,-6531,-728,-2364,-92], +[0,-1594,-46,-6532,-6533], [1,3,10312], [0,10313,0,10314,5], -[0,-492,-493,-15444,-495,-722,-1122,-1123,-1439,-1848,-7679], -[0,-15445,-3445,-1105], +[0,-1914,-1915,-2941,-1916,-456,-371,-956,-967,-681,-1346], +[0,-1594,-46,-545], [1,3,10316], [0,10317,0,10318,4], -[0,-492,-493,-15444,-495,-1439,-1848,-7679], -[0,-15445,-3445,-7661], +[0,-1914,-1915,-2941,-1916,-967,-681,-1346], +[0,-1594,-46,-1558], [1,3,10320], [0,0,0,274,4], [1,3,10322], [0,10323,0,274,10], -[0,-1848], +[0,-681], [1,3,10325], [0,0,10326,10327,9], -[0,-3136,-3037,-756,-1107,-1415,-1442,-15451,-2375,-2388,-2389,-12348,-2410], -[0,-14233,-6747,-3215,-14867,-3162,-15423,-9918,-11321,-1819,-7572,-4865,-15452], +[0,-29,-5,-55,-28,-8,-101,-15510,-57,-199,-1268,-1896,-2], +[0,-4022,-763,-74,-2938,-95,-2282,-1887,-1357,-1448,-3641,-94,-15511], [1,3,10329], [0,10330,10331,10332,6], -[0,-1610,-1955,-15453,-15454,-15455,-4096,-3546], -[0,-1415,-523,-1344,-1520,-932,-1650,-2125,-2127,-2286,-784,-679,-12844,-1942,-5002,-767,-533,-23,-722,-1534,-1539,-1771, --632,-5977,-3983,-40,-959,-15456,-15457,-2129,-32,-958,-2143,-2138,-940,-967,-2131,-15458,-740,-2137], -[0,-4100,-3671,-856,-15459,-3262], +[0,-227,-436,-15512,-15513,-15514,-2070,-2040], +[0,-8,-194,-10,-1430,-1,-72,-7,-14,-396,-369,-117,-6251,-4,-1784,-26,-86,-11,-456,-17,-4232,-65,-938,-1332,-366,-21,-145, +-15515,-15516,-985,-156,-9,-807,-877,-12,-25,-466,-15517,-385,-347], +[0,-700,-399,-42,-6534,-116], [1,3,10334], [0,10335,10336,10337,10], -[0,-1805,-668,-2550,-729,-15460,-2757,-910,-1077,-1098,-1582,-15461,-1540,-2187,-2433,-9229,-15462,-731], -[0,-519,-754,-999,-1344,-932,-2125,-2127,-1534,-15463,-2251,-8177,-15464], -[0,-2757,-4100,-3671,-856,-15459,-3262,-687], +[0,-152,-20,-98,-218,-15518,-2465,-543,-41,-486,-434,-15519,-1094,-393,-604,-2234,-15520,-1391], +[0,-51,-368,-118,-10,-1,-7,-14,-17,-15521,-134,-2775,-15522], +[0,-2465,-700,-399,-42,-6534,-116,-37], [1,3,10339], [0,10340,0,10341,5], -[0,-15465], -[0,-5092,-2759,-1437,-3162,-13614], +[0,-15523], +[0,-266,-4408,-248,-95,-6376], [1,3,10343], [0,10344,10345,10346,4], -[0,-14393,-1548,-2029], -[0,-21,-23,-40,-41,-533,-708,-915,-916,-932,-940,-943,-15466,-958,-966,-968,-969,-974,-1415,-1942,-15467,-1967,-1992, --2006,-2019,-2052], -[0,-915,-1415,-4045,-8911,-1950,-674,-5845,-3634,-5119,-4004], +[0,-6439,-23,-437], +[0,-48,-11,-21,-132,-86,-149,-431,-947,-1,-12,-83,-15524,-9,-75,-67,-64,-129,-8,-4,-15525,-121,-684,-6,-36,-287], +[0,-431,-8,-2068,-2226,-683,-231,-477,-61,-401,-76], [1,3,10348], [0,10349,0,10350,5], -[0,-464,-15468,-615,-15469,-2387,-2536], -[0,-5409,-510,-15470,-15471,-15472,-15473,-8676,-15474,-15475,-7347,-6656,-6527,-1594,-11872,-3162,-15476,-15477,-1838, --1961,-9591,-15478,-5408], +[0,-1913,-15526,-114,-15527,-44,-565], +[0,-1529,-59,-15528,-15529,-15530,-15531,-3736,-15532,-15533,-1026,-128,-292,-2377,-2908,-95,-15534,-15535,-166,-171, +-3820,-15536,-915], [1,3,10352], [0,0,14,10353,9], -[0,-5559,-9692,-3264,-8034,-3223,-15479,-7723,-8472,-3590,-3110,-9681,-5846,-15480,-2544,-15481,-15482], +[0,-503,-3825,-31,-1184,-472,-15537,-1028,-1869,-208,-277,-1882,-917,-15538,-1275,-15539,-15540], [1,3,10355], [0,10356,10357,10358,5], -[0,-674,-15483,-929,-572,-529,-569,-1077,-15484,-1610,-1646,-14584], -[0,-526,-539,-549,-566,-708,-15485,-932,-1654,-1788], -[0,-1446,-3690,-10855,-856,-6948,-15486,-6950,-15487,-6949,-15488,-6951,-15489,-11798,-15490,-6952,-15491,-15492], +[0,-231,-15541,-484,-844,-1918,-1923,-41,-15542,-227,-88,-6445], +[0,-179,-333,-1207,-429,-149,-15543,-1,-3,-15], +[0,-165,-100,-1890,-42,-924,-15544,-2722,-15545,-3564,-15546,-3565,-15547,-3938,-15548,-2723,-15549,-15550], [1,3,10360], [0,0,55,10361,4], -[0,-932,-5208,-3784,-3862,-9420,-11315,-8199,-4100,-856], +[0,-1,-354,-383,-107,-5680,-2259,-1567,-700,-42], [1,3,10363], [0,0,10364,10365,4], -[0,-1116,-2251,-2322], -[0,-856,-10858,-15493,-10925,-15494,-15411,-3966], +[0,-387,-134,-39], +[0,-42,-5935,-15551,-5950,-15552,-6517,-144], [1,3,10367], [0,87,275,10368,4], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-1391,-9682], +[0,-538,-448,-622,-136,-208,-31,-634,-1581], [1,3,10370], [0,87,275,10371,6], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-775,-3585,-1838], +[0,-538,-448,-622,-136,-208,-31,-24,-1499,-166], [1,3,10373], [0,10374,10375,10376,4], -[0,-5334,-2742,-9596,-1968,-2235,-9584,-9585], -[0,-3705,-3037,-652,-1459,-1839,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-1839,-3272,-10919], +[0,-251,-1482,-1033,-1455,-1124,-5717,-2240], +[0,-3229,-5,-43,-1088,-593,-4,-146,-261,-236,-2,-34], +[0,-538,-448,-622,-136,-208,-31,-593,-363,-1035], [1,3,10378], [0,87,92,10379,5], -[0,-9590,-9589,-9588,-2444,-3590,-3264,-3830,-9682,-15495,-15496,-15497], +[0,-538,-448,-622,-136,-208,-31,-4648,-1581,-15553,-15554,-15555], [1,3,10381], [0,10382,10383,10384,8], -[0,-2595], -[0,-985,-1637,-1942,-2320,-2322], -[0,-3272,-3264,-1838,-6231], +[0,-3135], +[0,-370,-677,-4,-560,-39], +[0,-363,-31,-166,-447], [1,3,10386], [0,0,10387,10388,5], -[0,-3037,-652,-2586,-1288,-1292,-1729,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-3264,-9703,-6818,-6557,-9682,-15498,-5387,-5388], +[0,-5,-43,-1276,-1650,-726,-188,-4,-146,-261,-236,-2,-34], +[0,-31,-3830,-1339,-921,-1581,-15556,-653,-1158], [1,3,10390], [0,10391,0,10392,5], -[0,-812], -[0,-1334,-1342,-1501,-1004,-1030,-12868,-11998,-15499,-15500,-15501,-15502,-12868,-11994,-15503,-3445], +[0,-35], +[0,-103,-388,-433,-40,-1071,-3983,-2269,-15557,-15558,-15559,-15560,-3983,-6107,-15561,-46], [1,3,10394], [0,0,130,10395,4], -[0,-775,-3209,-15504,-1889], +[0,-24,-381,-15562,-38], [1,3,10397], [0,276,10398,277,4], -[0,-9848,-2776], +[0,-3843,-2467], [1,3,10400], [0,276,10401,277,6], -[0,-2774,-15505,-9848,-2776], +[0,-4415,-15563,-3843,-2467], [1,3,10403], [0,0,0,10404,4], -[0,-525,-2006,-1368,-3161,-4729,-9850,-3264,-9851,-3844,-5092,-4865,-2127,-15506,-15507,-5272], +[0,-281,-6,-1963,-53,-2581,-3844,-31,-5758,-216,-266,-94,-14,-15564,-15565,-1527], [1,3,10406], [0,0,10407,10408,4], -[0,-824,-1168,-784,-1889,-1243,-15508,-1238,-1270,-15509], -[0,-775,-3576,-3577,-3161,-3578,-15510], +[0,-150,-32,-369,-38,-310,-15566,-1417,-4202,-15567], +[0,-24,-649,-192,-53,-113,-15568], [1,3,10410], [0,10411,10412,10413,4], -[0,-1666,-2161], -[0,-510,-1127,-1138,-1145,-1148,-1162,-1446,-1548,-2105], -[0,-620,-15511,-15512,-856,-1446,-7674,-4101], +[0,-233,-1698], +[0,-59,-54,-511,-4182,-341,-789,-165,-23,-111], +[0,-453,-15569,-15570,-42,-165,-2752,-1510], [1,3,10415], [0,0,10416,10417,6], -[0,-9705,-3037,-11458,-1412,-1452,-2173,-2388,-12348,-2410,-12349], -[0,-4004,-3634,-11468,-12350,-11467,-1412], +[0,-1195,-5,-1893,-196,-119,-1120,-199,-1896,-2,-2918], +[0,-76,-61,-930,-1588,-1036,-196], [1,3,10419], [0,10420,10421,10422,5], -[0,-10041,-13980,-3740,-1427,-1950,-2375], -[0,-15513,-4,-5,-6,-7,-8,-9,-10,-12,-13,-14,-23,-40,-86,-9404,-3244,-190,-10041,-4020,-237,-3048,-3136,-3037,-3199,-427, --428,-15514,-533,-668,-10525,-740,-767,-4805,-932,-940,-958,-959,-960,-967,-999,-1077,-15515,-1107,-1110,-1344,-1415, --1419,-1449,-1868,-1942,-2125,-2153,-2177,-2387,-2392,-2400,-2410,-2411,-2567], -[0,-1415,-2410,-475,-3634], +[0,-3856,-6407,-4624,-858,-683,-57], +[0,-15571,-4061,-2944,-4062,-1898,-1899,-1900,-2285,-4063,-2945,-4064,-11,-21,-49,-1032,-290,-50,-3856,-1760,-663,-191, +-29,-5,-140,-22,-19,-15572,-86,-20,-3886,-385,-26,-2586,-1,-12,-9,-145,-180,-25,-118,-41,-15573,-28,-56,-10,-8,-176,-78, +-1251,-4,-7,-496,-16,-44,-155,-215,-2,-84,-2456], +[0,-8,-2,-184,-61], [1,3,10424], [0,10425,10426,10427,5], -[0,-2699,-656,-668,-679,-719,-729,-6798,-1805,-1906,-1907,-2213,-2218,-12979,-2433,-2531], -[0,-23,-162,-3778,-163,-237,-350,-351,-15516,-367,-7043,-406,-407,-409,-410,-5039,-3136,-8334,-3037,-3040,-3052,-9947, --4764,-4204,-427,-428,-440,-15517,-4734,-518,-767,-932,-940,-943,-958,-965,-968,-969,-1415,-1428,-1521,-1753,-1771,-1889, --14336,-15518,-1942,-2006,-2019,-2029,-2125,-2127,-4063,-2132,-6483,-2162,-2278,-2318,-2410,-2466,-15519], -[0,-3634,-1415,-3100,-7566,-812,-15520], +[0,-2021,-430,-20,-117,-58,-218,-5181,-152,-555,-868,-738,-288,-2926,-604,-205], +[0,-11,-1903,-1147,-1598,-663,-77,-62,-15574,-245,-1178,-319,-153,-120,-307,-3345,-29,-3708,-5,-47,-89,-3851,-4797,-475, +-22,-19,-506,-15575,-4793,-157,-26,-1,-12,-83,-9,-115,-67,-64,-8,-1086,-219,-285,-65,-38,-4026,-15576,-4,-6,-36,-437,-7, +-14,-900,-417,-1334,-80,-882,-559,-2,-104,-6535], +[0,-61,-8,-52,-2750,-35,-15577], [1,3,10429], [0,10430,10431,10432,8], -[0,-1403,-15521], -[0,-15522,-15523,-1202,-1276,-1654,-3261], -[0,-9198,-6515,-812,-3671,-856,-6899,-3960,-3262,-1276,-4187,-8453,-4676,-15524,-15525,-1548,-5545,-1599,-3110,-3261, --15440], +[0,-1657,-15578], +[0,-15579,-15580,-671,-247,-3,-746], +[0,-5628,-3523,-35,-399,-42,-1176,-569,-116,-247,-2076,-5514,-1775,-15581,-15582,-23,-384,-99,-277,-746,-6529], [1,3,10434], [0,10435,10436,10437,10], -[0,-15526], -[0,-1586,-1729,-2337], -[0,-1586,-15527,-9409,-3844,-3445], +[0,-15583], +[0,-1669,-188,-1467], +[0,-1669,-15584,-2838,-216,-46], [1,3,10439], [0,10440,10441,10442,8], -[0,-10869], -[0,-3037,-652,-1638,-1942,-2094,-2100,-2399,-2410,-2541], -[0,-1638,-15528,-15529,-6818,-7724,-15530,-3264,-4329,-1599,-2427], +[0,-2253], +[0,-5,-43,-1436,-4,-146,-261,-236,-2,-34], +[0,-1436,-15585,-15586,-1339,-767,-15587,-31,-2080,-99,-135], [1,3,10444], [0,0,0,10445,4], -[0,-1638,-2444,-3590,-3264,-6422], +[0,-1436,-136,-208,-31,-833], [1,3,10447], [0,0,0,10448,10], -[0,-1638,-2444,-3590,-3264,-6818,-6557], +[0,-1436,-136,-208,-31,-1339,-921], [1,3,10450], [0,0,10451,10452,4], -[0,-6874,-1127,-1452,-1666,-2525,-2416,-10264,-1154,-15531,-1149,-1136,-1144,-1148], -[0,-2442,-3162,-9918,-15423,-6659,-14867,-4865,-9318,-15532,-15533], +[0,-5194,-54,-119,-233,-991,-112,-3868,-3021,-15588,-304,-629,-175,-341], +[0,-2453,-95,-1887,-2282,-710,-2938,-94,-715,-15589,-15590], [1,3,10454], [0,10455,10456,10457,4], -[0,-7177], -[0,-1415,-932,-2375,-1942,-2410,-3136,-3037,-7178,-940,-428,-427], -[0,-15534,-15535,-775], +[0,-3582], +[0,-8,-1,-57,-4,-2,-29,-5,-5248,-12,-19,-22], +[0,-15591,-15592,-24], [1,3,10459], [0,10460,92,10461,6], -[0,-4231,-2738,-2739,-10909,-15536,-15537,-15538], -[0,-1838,-3264,-7472,-4846,-8034,-3223], +[0,-701,-3145,-4407,-3908,-15593,-15594,-15595], +[0,-166,-31,-1180,-1314,-1184,-472], [1,3,10463], [0,0,0,10464,4], -[0,-1889,-9300,-3756,-9339,-2006,-775,-15539], +[0,-38,-2236,-278,-1577,-6,-24,-15596], [1,3,10466], [0,10467,130,10468,5], -[0,-2773], -[0,-775,-3209,-1889], +[0,-1484], +[0,-24,-381,-38], [1,3,10470], [0,0,10471,10472,9], -[0,-23,-40,-15540,-4690,-15541,-932,-1412,-1471,-1475,-1476,-1479,-1481,-1486,-1491,-11943,-1970,-1978,-2127,-2128,-3571, --2139,-2140,-10312,-4881], -[0,-9407,-1978,-1874,-4864,-15542,-15543,-4902,-3634,-11468,-1970,-11467,-4881,-15221], +[0,-11,-21,-15597,-3310,-15598,-1,-196,-79,-138,-588,-213,-389,-731,-676,-2911,-1988,-160,-14,-275,-2042,-1259,-229,-5816, +-1315], +[0,-5678,-160,-391,-572,-15599,-15600,-1779,-61,-930,-1988,-1036,-1315,-6500], [1,3,10474], [0,10475,10476,10477,9], -[0,-567,-1275,-1967], -[0,-633,-634,-668,-824,-1168,-1179,-1205,-1243,-15544,-1262,-1266,-1632,-15545,-2006,-2019,-2463], -[0,-2006,-3159,-2319,-15546,-2363,-15547,-1275,-3162], +[0,-282,-3034,-121], +[0,-60,-2322,-20,-150,-32,-3024,-3027,-310,-15601,-632,-360,-1103,-15602,-6,-36,-887], +[0,-6,-106,-85,-15603,-418,-15604,-3034,-95], [1,3,10479], [0,10480,10481,10482,8], -[0,-15548,-303,-15549,-304,-4360,-6448,-469,-470,-668,-680,-728,-812,-1125,-1353,-1442,-5265,-1641,-1789,-1790,-1816, --1966,-2177,-2205,-2223,-3610,-4002,-7982,-15550,-2426,-5721], -[0,-2581,-86,-3307,-4368,-15551,-11765,-15552,-350,-4062,-351,-3561,-3198,-3660,-3713,-3735,-3199,-15553,-15554,-3664, --13376,-1344,-1498,-1722,-4362,-5263,-1942,-2127,-6483,-2392,-2400,-2410,-2469], -[0,-3690,-489,-11768,-856,-11148,-11773,-1789,-3438,-11772,-11769,-11771,-11770,-11410,-4328,-4847], +[0,-15605,-1908,-15606,-2292,-3299,-5123,-183,-773,-20,-481,-1057,-35,-670,-460,-101,-3366,-344,-1680,-4266,-325,-392,-16, +-600,-739,-2045,-752,-2207,-15607,-289,-3429], +[0,-329,-49,-63,-2569,-15608,-3930,-15609,-77,-238,-62,-237,-169,-421,-1146,-822,-140,-15610,-15611,-105,-2929,-10,-799, +-197,-1769,-2123,-4,-14,-1334,-155,-215,-2,-30], +[0,-100,-1376,-3931,-42,-1891,-3936,-1680,-697,-3935,-3932,-3934,-3933,-2897,-1764,-571], [1,3,10484], [0,0,10485,10486,11], -[0,-5295,-409,-3136,-3040,-3052,-13529,-427,-428,-757,-825,-932,-940,-967,-969,-970,-1103,-15555,-1415,-15556,-1637, --15302,-15557,-1942,-2006,-2019,-13531,-2214,-2375,-2410,-15558], -[0,-2006,-12474,-3159,-8597,-13241,-15559,-712,-3577,-15560,-15273,-2012,-4666,-11876,-4665,-15561], +[0,-705,-120,-29,-47,-89,-6368,-22,-19,-582,-232,-1,-12,-25,-64,-186,-340,-15612,-8,-15613,-677,-4044,-15614,-4,-6,-36, +-6369,-328,-57,-2,-15615], +[0,-6,-6177,-106,-3729,-2928,-2942,-217,-192,-15616,-4043,-2410,-1309,-3947,-1018,-15617], [1,3,10488], [0,10489,10490,10491,4], -[0,-2594], -[0,-40,-41,-3040,-915,-916,-1415,-1992,-2052,-2127,-2128,-2131,-2137], -[0,-2442,-3162,-9918,-15423,-6659,-14867,-4865,-15562,-15563,-9318,-6106,-4000], +[0,-1134], +[0,-21,-132,-47,-431,-947,-8,-684,-287,-14,-275,-466,-347], +[0,-2453,-95,-1887,-2282,-710,-2938,-94,-15618,-15619,-715,-1819,-201], [1,3,10493], [0,0,10494,10495,4], -[0,-86,-3037,-3040,-3052,-3075,-427,-9700,-932,-940,-9106,-958,-965,-967,-968,-969,-1344,-1415,-1534,-1637,-1942,-1952, --2006,-2019,-2044,-2046], -[0,-2006,-9843,-3122,-2043,-2044,-15564,-2634], +[0,-49,-5,-47,-89,-3167,-22,-5732,-1,-12,-3763,-9,-115,-25,-67,-64,-10,-8,-17,-677,-4,-435,-6,-36,-557,-3096], +[0,-6,-2244,-442,-873,-557,-15620,-242], [1,3,10497], [0,0,10498,10499,4], -[0,-1788,-1449,-1471,-1654,-2006,-2074,-2210,-507,-932,-1548,-1940,-2334,-4258,-708,-753,-1958,-2501,-589,-2019,-15565, --2410,-23,-3037,-1482,-2040,-3040,-534,-11472,-1492,-50,-1025,-3052,-40,-3062,-969,-2052,-15566,-406,-1483,-1475,-1487, --1479,-14780,-428,-5030], -[0,-5922,-6439,-2006,-7378,-15567,-821], +[0,-15,-78,-79,-3,-6,-327,-27,-280,-1,-23,-494,-177,-908,-149,-158,-286,-18,-110,-36,-15621,-2,-11,-5,-187,-872,-47,-96, +-3923,-517,-357,-952,-89,-21,-3166,-64,-287,-15622,-319,-414,-138,-861,-213,-6467,-19,-2602], +[0,-535,-1828,-6,-1553,-15623,-780], [1,3,10501], [0,0,0,10502,4], -[0,-2034,-3162,-5270,-5271,-7084,-6656,-14311,-15176,-15568,-6528,-4100], +[0,-235,-95,-291,-355,-764,-128,-4024,-4040,-15624,-1171,-700], [1,3,10504], [0,0,10505,10506,4], -[0,-44,-3040,-3141,-2006,-2034,-2410], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-15071,-13615,-15569,-6527,-15570], +[0,-90,-47,-2030,-6,-235,-2], +[0,-235,-106,-1037,-6,-95,-291,-355,-102,-2280,-1590,-15625,-292,-15626], [1,3,10508], [0,94,10509,10510,5], -[0,-528,-932,-933,-940,-958,-962,-967,-969,-1942,-15571], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-3160,-1959,-15572,-15573,-15574,-10677,-15575,-15576,-6716,-5176], +[0,-91,-1,-255,-12,-9,-148,-25,-64,-4,-4047], +[0,-235,-106,-1037,-6,-95,-291,-102,-362,-15627,-15628,-15629,-3896,-15630,-15631,-2170,-500], [1,3,10512], [0,10513,10514,10515,4], -[0,-798,-15577,-799,-801,-1967], -[0,-15578,-4757,-6263,-4754,-15579,-528,-533,-14782,-807,-932,-943,-958,-966,-968,-969,-15580,-974,-1344,-1415,-1534, --1942,-1952,-2006,-2034,-15571,-2052], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-9472,-6581,-14497,-797], +[0,-1941,-15632,-1942,-2333,-121], +[0,-15633,-1515,-3490,-1154,-15634,-91,-86,-6468,-1061,-1,-83,-9,-75,-67,-64,-15635,-129,-10,-8,-17,-4,-435,-6,-235,-4047, +-287], +[0,-235,-106,-1037,-6,-95,-291,-355,-1354,-3531,-4029,-1060], [1,3,10517], [0,10518,10519,10520,6], -[0,-997], -[0,-3157,-932,-12566], -[0,-2034,-3159,-12567,-2006,-3163,-3162,-5270,-5271,-3160,-10028,-15581,-15582], +[0,-410], +[0,-4506,-1,-2273], +[0,-235,-106,-1037,-6,-2486,-95,-291,-355,-102,-5793,-15636,-15637], [1,3,10522], [0,10523,10524,10525,8], -[0,-2798,-2489], -[0,-15583,-21,-23,-3204,-39,-40,-6056,-41,-161,-163,-2997,-350,-351,-3561,-409,-2622,-3040,-528,-533,-767,-932,-940,-956, --959,-968,-969,-970,-1059,-11942,-1103,-15584,-1415,-15302,-1942,-1952,-2006,-2019,-15585,-2052,-2125,-2127,-2128,-2140, --2410], -[0,-2006,-2804,-12051,-3095,-7582,-3821,-3822], +[0,-2470,-605], +[0,-6536,-48,-11,-398,-449,-21,-1167,-132,-2948,-1598,-820,-77,-62,-237,-120,-1478,-47,-91,-86,-26,-1,-12,-485,-145,-67, +-64,-186,-412,-1894,-340,-15638,-8,-4044,-4,-435,-6,-36,-15639,-287,-7,-14,-275,-229,-2], +[0,-6,-2471,-6113,-131,-1855,-2051,-2544], [1,3,10527], [0,10528,10529,10530,8], -[0,-15586,-2730,-682], -[0,-15587,-5295,-406,-407,-409,-15588,-3059,-3037,-3040,-3052,-440,-3899,-795,-1449,-2910,-2006,-2019,-2214,-2892,-2387, --2410,-2469], -[0,-2006,-3576,-4126,-3162,-12129], +[0,-15640,-4404,-254], +[0,-4048,-705,-319,-153,-120,-15641,-2026,-5,-47,-89,-506,-1009,-483,-78,-470,-6,-36,-328,-380,-44,-2,-30], +[0,-6,-649,-1511,-95,-3956], [1,3,10532], [0,10533,10534,10535,10], -[0,-2387,-15589], -[0,-15590,-5295,-2214,-2006,-2019], -[0,-2006,-5553,-775], +[0,-44,-15642], +[0,-4049,-705,-328,-6,-36], +[0,-6,-230,-24], [1,3,10537], [0,0,10538,10539,4], -[0,-509,-1654,-1939], -[0,-775,-712,-15559,-5554], +[0,-843,-3,-234], +[0,-24,-217,-2942,-193], [1,3,10541], [0,10542,0,77,5], -[0,-2869,-424,-15591,-15592,-15593,-15594,-15595,-15596,-15597,-15598,-15599,-15600,-15601], +[0,-4446,-1912,-15643,-15644,-15645,-15646,-15647,-15648,-15649,-15650,-15651,-15652,-15653], [1,3,10544], [0,0,10545,272,5], -[0,-23,-40,-42,-86,-3307,-3326,-15155,-3561,-3266,-3136,-3037,-427,-428,-441,-7465,-528,-533,-8349,-726,-767,-932,-943, --958,-966,-968,-980,-1103,-1344,-1392,-1415,-1419,-1534,-2125,-2127,-2142,-2410,-2478], +[0,-11,-21,-137,-49,-63,-207,-6498,-237,-206,-29,-5,-22,-19,-1600,-1853,-91,-86,-1568,-284,-26,-1,-83,-9,-75,-67,-785, +-340,-10,-547,-8,-176,-17,-7,-14,-305,-2,-990], [1,3,10547], [0,0,10548,259,8], -[0,-3800,-684,-748,-778,-1041,-3544,-1643,-1942,-2116,-2162,-2163,-2376,-2410,-2437,-2501,-2503,-2508], +[0,-2538,-1614,-508,-141,-271,-1143,-374,-4,-2420,-80,-467,-214,-2,-438,-18,-93,-524], [1,3,10550], [0,33,10551,10552,4], -[0,-5295,-2214,-407,-409,-15590,-1419], -[0,-2006,-9080,-15602,-15603,-15604], +[0,-705,-328,-153,-120,-4049,-176], +[0,-6,-3760,-15654,-15655,-15656], [1,3,10554], [0,10555,10556,10557,6], -[0,-15605,-2387], -[0,-5295,-2214,-15590,-15606,-916,-2006,-2019], -[0,-15607,-2006,-15608], +[0,-15657,-44], +[0,-705,-328,-4049,-15658,-947,-6,-36], +[0,-15659,-6,-15660], [1,3,10559], [0,10560,10561,10562,5], -[0,-753,-44,-15609,-15610], -[0,-1521,-2299,-2501,-778,-2410,-23,-1522,-2503,-534,-2275,-15611,-2508,-40,-2301,-2505,-42,-38,-535,-3362,-26,-36,-35], -[0,-4000,-812,-3162], +[0,-158,-90,-15661,-15662], +[0,-219,-221,-18,-141,-2,-11,-1092,-93,-96,-154,-15663,-524,-21,-2443,-173,-137,-170,-270,-2034,-209,-300,-931], +[0,-201,-35,-95], [1,3,10564], [0,0,10565,10566,10], -[0,-3037,-4371,-2447,-2466], -[0,-2466,-3161,-8113], +[0,-5,-2571,-1131,-104], +[0,-104,-53,-1030], [1,3,10568], [0,0,10569,10570,5], -[0,-527,-534,-559,-767,-778,-1041,-1743,-2680,-2163,-15612,-2275,-2476,-2481,-2483,-2484,-2485,-2501,-2505], -[0,-11853,-11851,-15613,-15614,-15615,-15616,-15617,-3100,-15618], +[0,-162,-96,-321,-26,-141,-271,-1242,-2460,-467,-15664,-154,-73,-1132,-888,-2008,-1475,-18,-173], +[0,-1586,-3945,-15665,-15666,-15667,-15668,-15669,-52,-15670], [1,3,10572], [0,10573,0,271,8], -[0,-653,-914,-2710,-15380,-2433,-2719,-3546], +[0,-845,-1629,-4395,-1360,-604,-4400,-2040], [1,3,10575], [0,0,10576,10577,5], -[0,-21,-23,-26,-36,-40,-42,-3330,-15619,-3136,-3037,-6630,-427,-428,-527,-533,-535,-932,-934,-940,-958,-967,-1415,-5133, --1942,-2174,-2410], -[0,-1415,-1001,-4116,-510,-5867,-1961,-4868,-3634,-5119], +[0,-48,-11,-209,-300,-21,-137,-364,-15671,-29,-5,-1337,-22,-19,-162,-86,-270,-1,-185,-12,-9,-25,-8,-4877,-4,-122,-2], +[0,-8,-338,-825,-59,-656,-171,-913,-61,-401], [1,3,10579], [0,10580,10581,10582,5], -[0,-11458,-2173], -[0,-9705,-11477,-1168,-12346,-1412,-1888,-15414,-2410], -[0,-3634,-11468,-12350,-11467,-5769], +[0,-1893,-1120], +[0,-1195,-2262,-32,-2917,-196,-641,-6518,-2], +[0,-61,-930,-1588,-1036,-2135], [1,3,10584], [0,10585,10586,10587,4], -[0,-464,-668,-824,-1107,-1371,-1646,-1980,-2105,-2125,-2177,-2536], -[0,-5682,-3711,-15620,-3036,-11697,-9705,-8566,-5686,-3037,-12344,-8852,-8890,-11458,-3199,-11343,-11477,-1168,-12346, --1412,-2150,-2173,-2410], -[0,-475,-4004,-3634,-1970,-11468,-12350,-11467,-2173], +[0,-1913,-20,-150,-28,-728,-88,-521,-111,-7,-16,-565], +[0,-3424,-3230,-15672,-471,-2902,-1195,-927,-761,-5,-6165,-2801,-1353,-1893,-140,-2895,-2262,-32,-2917,-196,-986,-1120,-2], +[0,-184,-76,-61,-1988,-930,-1588,-1036,-1120], [1,3,10589], [0,117,55,10590,4], -[0,-2265,-7472,-4112,-6730,-13460,-6787,-13461,-13462,-13463,-13465,-5514,-5559,-5563,-687,-3958,-3974,-4000,-13466, --13467,-13468,-13469,-13470], +[0,-168,-1180,-474,-2171,-4003,-2173,-6356,-6357,-6358,-4004,-243,-503,-2133,-37,-299,-178,-201,-4005,-4006,-4007,-4008, +-6359], [1,3,10592], [0,169,10593,10594,5], -[0,-3037,-928,-15621,-1496,-15622,-2410,-2447], -[0,-15623,-9669,-3161,-9670,-8615,-1334,-3690], +[0,-5,-87,-15673,-490,-15674,-2,-1131], +[0,-15675,-5728,-53,-5729,-2222,-103,-100], [1,3,10596], [0,10597,0,10598,8], -[0,-1460,-15624,-1442,-3241], -[0,-15279,-15625,-727,-856,-15280,-15281], +[0,-272,-6537,-101,-3182], +[0,-1591,-2283,-335,-42,-1592,-1593], [1,3,10600], [0,0,10601,278,6], -[0,-664,-3035,-3037,-15626], +[0,-13,-109,-5,-6538], [1,3,10603], [0,10604,0,95,10], -[0,-15631,-15632,-823,-1878], +[0,-15677,-15678,-323,-554], [1,3,10606], [0,39,0,10607,5], -[0,-2006,-3159,-4217,-3694], +[0,-6,-106,-1016,-650], [0,23,0,98,4], [0,23,0,99,6], [1,3,10611], [0,10612,10613,10614,4], -[0,-15633,-10576], -[0,-5859,-633,-13719,-2322], -[0,-7581,-7582,-7580,-7762,-15634,-5177,-15635,-3100,-633], +[0,-15679,-3889], +[0,-1814,-60,-6383,-39], +[0,-1345,-1855,-3642,-5364,-15680,-615,-15681,-52,-60], [1,3,10616], [0,10617,10618,10619,4], -[0,-15636,-15637,-15638,-15639,-15640,-640,-668,-671,-865,-866,-997,-1026,-14636,-1098,-1116,-1353,-1376,-7408,-1460, --15641,-15642,-5895,-1958,-2177,-2193,-2331,-2410,-15643,-15644,-15645], -[0,-2476,-15646,-15647,-15648,-15649], -[0,-2830,-15650,-3161], +[0,-15682,-15683,-15684,-15685,-15686,-294,-20,-1387,-210,-945,-410,-226,-4032,-486,-387,-460,-195,-1554,-272,-15687, +-15688,-1816,-286,-16,-689,-379,-2,-15689,-15690,-15691], +[0,-73,-15692,-15693,-15694,-15695], +[0,-4428,-15696,-53], [1,3,10621], [0,10622,10623,10624,9], -[0,-44,-15651], -[0,-1415,-2162,-1344,-2006,-915,-932,-2501,-1942,-767,-2019,-21,-778,-2095,-2410,-23,-1534,-1771,-2163,-2503,-3040,-534, --2275,-15652,-15653,-4227,-15654,-4749,-40,-13427,-41,-969,-358,-15655,-940,-962,-967,-1419,-42,-4757,-15656,-4758,-428, --4762,-38,-427,-12712,-15045], -[0,-2006,-3095,-15657,-13652,-15658,-3162,-15106,-2410,-15659,-15660], +[0,-90,-15697], +[0,-8,-80,-10,-6,-431,-1,-18,-4,-26,-36,-48,-141,-522,-2,-11,-17,-65,-467,-93,-47,-96,-154,-15698,-15699,-3284,-15700, +-1019,-21,-4002,-132,-64,-2293,-15701,-12,-148,-25,-176,-137,-1515,-15702,-2088,-19,-1777,-170,-22,-6213,-6490], +[0,-6,-131,-15703,-6381,-15704,-95,-6493,-2,-15705,-15706], [1,3,10626], [0,10627,10628,7,4], -[0,-668,-695,-719,-1610,-6294,-2177,-15661], -[0,-3802,-11346,-3037,-3199,-15662], +[0,-20,-624,-58,-227,-2161,-16,-4053], +[0,-2050,-6011,-5,-140,-15707], [1,3,10630], [0,10631,10632,7,4], -[0,-15663,-2564,-703,-834,-15664,-2303,-2466,-461,-623,-812,-4245,-5358,-743,-783,-5036,-2083,-2177,-2814,-680,-5034,-928, --15665,-15666,-1442,-3447,-1827,-1966,-15667,-15668,-3535,-3027,-15669,-1864,-10430,-2422,-15670,-15671,-5113,-2654, --3545,-15672,-1321,-1588,-2551,-989,-15673,-8294,-3649,-14335,-15674,-2429,-15675,-15676,-15677,-8882,-4785,-3190,-4288, --15678,-6332,-3459,-15679,-15680], -[0,-9740,-2162,-2127,-2426,-2469,-674,-2427,-15681,-15206,-15682,-2410,-5334,-1002,-2089,-3198,-13046,-12145,-3199,-15683, --6327,-3660,-3735,-5204,-1736,-3983,-8523,-5114,-9602,-15684,-3712,-9146,-2084,-15685,-15686], +[0,-15708,-263,-302,-203,-15709,-602,-104,-202,-1209,-35,-907,-502,-336,-1938,-2098,-377,-16,-3148,-481,-2097,-87,-15710, +-15711,-101,-1743,-1110,-392,-15712,-15713,-1142,-2481,-15714,-326,-3880,-3123,-15715,-15716,-1522,-313,-4585,-6539, +-2355,-296,-525,-786,-15717,-3704,-499,-1897,-15718,-348,-15719,-15720,-15721,-3742,-758,-1734,-4737,-15722,-3500,-1493, +-15723,-15724], +[0,-5739,-80,-14,-289,-30,-231,-135,-15725,-4041,-15726,-2,-251,-787,-2416,-169,-6306,-6136,-140,-15727,-2676,-421,-822, +-2611,-3070,-366,-662,-3354,-1881,-15728,-4619,-2823,-1691,-15729,-15730], [1,3,10634], [0,10635,0,7,5], -[0,-710,-15687,-1813,-2416], +[0,-455,-15731,-551,-112], [1,3,10637], [0,10638,10639,10640,10], -[0,-714,-1077,-1376], -[0,-932,-959,-1415], -[0,-3871,-3262,-3976,-687,-11487], +[0,-133,-41,-195], +[0,-1,-145,-8], +[0,-2545,-116,-1011,-37,-6025], [1,3,10642], [0,0,10643,10644,10], -[0,-350,-351,-668,-910,-932,-940,-958,-15688,-6099,-1343,-1344,-1534,-1654,-3446,-1942,-2125,-2127,-2131,-15689,-2234, --2323,-10988], -[0,-3108,-3110,-5889], +[0,-77,-62,-20,-543,-1,-12,-9,-15732,-5075,-727,-10,-17,-3,-1742,-4,-7,-14,-466,-15733,-147,-312,-3910], +[0,-1489,-277,-402], [1,3,10646], [0,0,10647,7,8], -[0,-427,-428,-932,-935,-940,-948,-958,-962,-967,-969,-970,-1344,-1534,-1942,-2006,-2410], +[0,-22,-19,-1,-949,-12,-246,-9,-148,-25,-64,-186,-10,-17,-4,-6,-2], [1,3,10649], [0,10650,10651,10652,4], -[0,-15690], -[0,-3621,-823,-1654], -[0,-3578,-4004,-4043,-15691,-1654,-3161], +[0,-15734], +[0,-71,-323,-3], +[0,-113,-76,-473,-15735,-3,-53], [1,3,10654], [0,0,10655,10656,4], -[0,-5295,-3136,-427,-428,-15692,-10529,-13751,-712,-932,-940,-967,-1107,-1415,-1942,-2127,-2140,-2142,-2214,-2355,-2375, --2379,-2387,-2410], -[0,-712,-3215,-5845,-13241,-15559,-5549,-12065,-15693,-12067,-1510,-15694,-12434,-775,-15695,-4665,-15696,-15697,-1644, --15698], +[0,-705,-29,-22,-19,-15736,-5864,-4014,-217,-1,-12,-25,-28,-8,-4,-14,-229,-305,-328,-1128,-57,-33,-44,-2], +[0,-217,-74,-477,-2928,-2942,-760,-6120,-15737,-6121,-1091,-15738,-6172,-24,-15739,-1018,-15740,-15741,-228,-15742], [1,3,10658], [0,106,10659,280,6], -[0,-15587,-86,-3307,-2845,-4646,-3617,-3136,-3037,-427,-428,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], +[0,-4048,-49,-63,-3150,-909,-264,-29,-5,-22,-19,-1,-12,-10,-8,-4,-378,-57,-2], [0,23,0,97,8], [1,3,10662], [0,10663,10664,10665,8], -[0,-6332,-6326,-6329,-15702,-5334,-3660,-4251,-2854,-15703,-2586,-1288,-1292,-1294,-1349,-1442,-14511,-1588,-15704,-10749, --5348,-2918,-2083,-4262,-5353,-2422,-2427,-2429,-5358], -[0,-3983,-3037,-3664,-2834,-15705,-2469], -[0,-3671,-856,-2834,-15706,-15707], +[0,-3500,-3499,-5102,-15743,-251,-421,-424,-4438,-15744,-1276,-1650,-726,-1076,-1079,-101,-6444,-296,-15745,-3898,-2128, +-3154,-377,-4730,-2129,-3123,-135,-348,-502], +[0,-366,-5,-105,-1277,-15746,-30], +[0,-399,-42,-1277,-6543,-6544], [1,3,10667], [0,10668,10669,280,4], -[0,-1004,-2080], -[0,-15587,-86,-3307,-2841,-2845,-4646,-3617,-3136,-3037,-427,-428,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], +[0,-40,-598], +[0,-4048,-49,-63,-4429,-3150,-909,-264,-29,-5,-22,-19,-1,-12,-10,-8,-4,-378,-57,-2], [1,3,10671], [0,10672,10673,10674,4], -[0,-2080,-2379], -[0,-86,-3307,-4646,-3617,-3136,-3037,-427,-428,-668,-932,-940,-1344,-1415,-1942,-2091,-2375,-2410], -[0,-15699,-3967,-2410,-15700,-15701,-3161,-11894,-3445,-3482], +[0,-598,-33], +[0,-49,-63,-909,-264,-29,-5,-22,-19,-20,-1,-12,-10,-8,-4,-378,-57,-2], +[0,-6540,-353,-2,-6541,-6542,-53,-3948,-46,-382], [1,3,10676], [0,23,0,97,4], [0,23,0,98,11], [1,3,10679], [0,262,10680,10681,4], -[0,-262,-4838], -[0,-2476,-2486,-4634,-2851,-15708,-15709,-12704,-3690,-7864,-9069,-2410,-3018,-8038,-9594], +[0,-451,-912], +[0,-73,-1709,-1017,-1724,-15747,-15748,-3978,-100,-2762,-2821,-2,-440,-576,-1579], [1,3,10683], [0,10684,10685,151,5], -[0,-15710,-192,-15711], -[0,-41,-15712,-15713,-407,-409,-410,-3040,-3052,-440,-703,-2006,-2019,-2042,-2044,-2113,-3820,-15714,-727], +[0,-15749,-2949,-15750], +[0,-132,-15751,-15752,-153,-120,-307,-47,-89,-506,-302,-6,-36,-3095,-557,-1117,-3243,-15753,-335], [1,3,10687], [0,10688,10689,10690,8], -[0,-2856], -[0,-2834,-999,-15715], -[0,-15707,-15716,-856,-15717,-4245,-15718,-15706], +[0,-4439], +[0,-1277,-118,-6545], +[0,-6544,-6546,-42,-4054,-907,-6547,-6543], [0,0,0,10692,5], -[0,-15318,-15719,-3445], +[0,-2281,-2943,-46], [1,3,10694], [0,10695,10696,10697,9], -[0,-15717], -[0,-4251,-4231,-9602,-2090,-2098,-2101,-4245,-2427,-5358,-15715], -[0,-15716,-856,-15717,-4245,-15718], +[0,-4054], +[0,-424,-701,-1881,-736,-599,-806,-907,-135,-502,-6545], +[0,-6546,-42,-4054,-907,-6547], [1,3,10699], [0,10700,10701,10702,8], -[0,-14800,-14801,-820,-1002,-2400], -[0,-15720,-14804,-3311,-3312,-652,-14806,-2410], -[0,-14808,-4187,-2444,-3966,-4865,-3445,-3100,-507,-4004,-664,-14809,-14810], +[0,-6471,-6472,-1943,-787,-215], +[0,-15754,-6473,-893,-1283,-43,-6474,-2], +[0,-6475,-2076,-136,-144,-94,-46,-52,-280,-76,-13,-6476,-6477], [1,3,10704], [0,0,10705,10706,5], -[0,-600,-633,-756,-1405,-1654,-2198,-2416], -[0,-8472,-2544,-7723,-14242,-3962,-7107,-5559,-6422,-7724,-2451,-3264,-775,-6138,-14672], +[0,-1609,-60,-55,-66,-3,-81,-112], +[0,-1869,-1275,-1028,-4023,-352,-711,-503,-833,-767,-439,-31,-24,-2155,-6452], [1,3,10708], [0,10709,0,10710,5], -[0,-15721], -[0,-3843,-3118,-14066,-2006,-3100,-3577,-3445,-4725,-3578,-4865,-3214,-3756,-2410,-3966,-3967,-3482,-15722,-5260], +[0,-15755], +[0,-1008,-1731,-4019,-6,-52,-192,-46,-2087,-113,-94,-45,-278,-2,-144,-353,-382,-15756,-704], [1,3,10712], [0,10713,0,73,9], -[0,-2984,-2885,-5766,-2400], +[0,-3164,-4451,-3438,-215], [1,3,10715], [0,269,0,95,10], [1,3,10717], [0,10718,0,77,4], -[0,-424,-2704,-2826,-2863,-2706,-2707,-2902,-2903,-2940,-2708], +[0,-1912,-4390,-4425,-4442,-4392,-4393,-4458,-4459,-4464,-4394], [1,3,10720], [0,0,0,10721,4], -[0,-3843,-3118,-14066,-2006,-3100,-3577,-3445,-4725,-3578,-4865,-3214,-3756,-2410,-3966,-3967,-3482,-15724,-5260], +[0,-1008,-1731,-4019,-6,-52,-192,-46,-2087,-113,-94,-45,-278,-2,-144,-353,-382,-15758,-704], [0,23,0,97,6], [1,3,10724], [0,10725,0,246,4], -[0,-2531,-1107,-2624,-2550,-2177,-1961,-578,-719,-1384,-2166,-481,-533,-12547,-1624,-2516,-12548,-1950,-2041,-458,-12550, --11463,-12551,-9870,-2082,-12552,-1421,-12553,-12554,-12555,-12556,-12557,-12559,-12560,-15725], +[0,-205,-28,-1479,-98,-16,-171,-1608,-58,-674,-987,-1045,-86,-6185,-1976,-818,-6186,-683,-686,-1203,-6187,-2261,-6188, +-3845,-346,-6189,-794,-6190,-6191,-6192,-6193,-6194,-6195,-6196,-15759], [1,3,10727], [0,10728,0,77,10], -[0,-2862,-424,-2976,-2872,-2705,-2853,-2850,-2827,-2848,-2849,-2828,-15726,-15727,-2865,-2703,-2975,-15728,-2846,-15729, --2847,-2842,-15730,-15731,-2868,-2996,-2866], +[0,-4441,-1912,-4471,-4447,-4391,-4437,-4436,-4426,-4434,-4435,-4427,-15760,-15761,-4443,-4389,-4470,-15762,-4432,-15763, +-4433,-4430,-15764,-15765,-4445,-4476,-4444], [1,3,10730], [0,10731,10732,268,5], -[0,-2387,-2686], -[0,-2006,-932,-2125,-2127,-1942,-2019,-2410,-3037,-3040,-2043,-3052,-2044,-15732,-3986,-3988,-3075,-3267,-428,-427], +[0,-44,-4383], +[0,-6,-1,-7,-14,-4,-36,-2,-5,-47,-873,-89,-557,-15766,-2063,-2064,-3167,-330,-19,-22], [1,3,10734], [0,10735,10736,10737,9], -[0,-15733,-15734,-15735,-617,-1004,-15736,-1338,-2520,-2558], -[0,-15737,-15738,-15739,-15740,-15741,-3617,-4203,-1683,-2293], -[0,-15742,-7661,-15743,-15744,-15745,-3445], +[0,-15767,-15768,-15769,-163,-40,-15770,-2357,-564,-2014], +[0,-15771,-15772,-15773,-15774,-15775,-264,-1015,-800,-123], +[0,-15776,-1558,-15777,-15778,-15779,-46], [1,3,10739], [0,23,0,98,5], [1,3,10741], [0,0,10742,10743,4], -[0,-509,-1654], -[0,-2873,-5514,-712,-5535,-668,-775,-15559,-5549,-15746], +[0,-843,-3], +[0,-4448,-243,-217,-707,-20,-24,-2942,-760,-15780], [1,3,10745], [0,10746,10747,10748,10], -[0,-4843], -[0,-3037,-3040,-3052,-440,-2634,-2006,-2019,-2466,-6859,-2469,-4842], -[0,-3690,-856,-9736,-1713,-3438,-4847], +[0,-3317], +[0,-5,-47,-89,-506,-242,-6,-36,-104,-923,-30,-3316], +[0,-100,-42,-1884,-390,-697,-571], [1,3,10750], [0,10751,0,10752,5], -[0,-1439,-7679,-722,-15447], -[0,-15318,-15719,-3445,-7660], +[0,-967,-1346,-456,-6530], +[0,-2281,-2943,-46,-2200], [1,3,10754], [0,0,10755,10756,4], -[0,-8096,-652,-1942,-2094,-2100,-2125,-2322,-2399,-2410,-2541], -[0,-775,-3264,-5092,-3578,-6184,-13270,-5899,-9299], +[0,-714,-43,-4,-146,-261,-7,-39,-236,-2,-34], +[0,-24,-31,-266,-113,-1821,-6331,-2652,-5651], [1,3,10758], [0,10759,10760,285,10], -[0,-1313,-2564], -[0,-15747,-86,-3307,-4835,-15748,-3036,-3037,-427,-428,-4627,-928,-932,-934,-940,-15749,-948,-958,-967,-1107,-1344,-1534, --1942,-15750,-2125,-2383,-2392,-2410], +[0,-855,-263], +[0,-15781,-49,-63,-1313,-4055,-471,-5,-22,-19,-3305,-87,-1,-185,-12,-6548,-246,-9,-25,-28,-10,-17,-4,-6549,-7,-815,-155, +-2], [1,3,10762], [0,10763,10764,285,4], -[0,-679,-2877], -[0,-502,-2392,-1107,-1344,-932,-2125,-928,-1942,-2410,-3036,-3037,-1534,-15748,-2383,-86,-15750,-958,-4627,-940,-967,-428, --934,-3307,-427,-948,-15749], +[0,-117,-4449], +[0,-774,-155,-28,-10,-1,-7,-87,-4,-2,-471,-5,-17,-4055,-815,-49,-6549,-9,-3305,-12,-25,-19,-185,-63,-22,-246,-6548], [1,3,10766], [0,10767,10768,10769,6], -[0,-2531,-469,-2392,-5193,-1867,-2446,-649,-764,-15753,-2426,-680,-1646,-2694,-823,-1043,-11121,-1878,-15754,-1354,-1340, --11964,-1101,-1997,-14221,-15755,-14032,-1851,-2160,-15756,-15757,-8274], -[0,-2193,-2125,-2127,-928,-4204,-749,-767,-3738,-15758,-5686,-5363,-2014,-11433,-2132,-4049,-15759,-15760,-15761,-15762], -[0,-15354,-3690,-7643,-15763,-11229,-3161,-15764,-11878,-3214,-9736,-3966,-2879,-2006,-15359,-2410], +[0,-205,-183,-155,-1801,-1250,-125,-1386,-2331,-15784,-289,-481,-88,-2019,-323,-1226,-2255,-554,-15785,-1652,-4211,-3951, +-1230,-1114,-6424,-15786,-6413,-553,-1996,-15787,-15788,-3697], +[0,-689,-7,-14,-87,-475,-625,-26,-698,-15789,-761,-1806,-4289,-6021,-417,-652,-15790,-15791,-15792,-15793], +[0,-6510,-100,-2199,-15794,-2892,-53,-15795,-1358,-45,-1884,-144,-4450,-6,-6511,-2], [1,24,10771], [0,25,10772], 1743292800000, [1,3,10774], [0,10775,10776,10777,9], -[0,-15765,-15766,-15767,-15768,-15769], -[0,-40,-15770,-15771,-15772,-3326,-350,-351,-3561,-3048,-3037,-15773,-427,-12837,-428,-518,-534,-558,-726,-753,-756,-4809, --15774,-932,-958,-960,-5863,-1077,-1103,-3566,-15775,-15776,-1344,-15777,-15778,-1771,-15779,-1891,-15780,-15781,-15782, --2127,-8895,-4753,-15783,-8896,-2140,-2142,-2144,-2162,-5896,-15784,-5013,-2387,-2388,-15785,-2410,-8564], -[0,-12613,-15786,-12449,-12898,-2363,-11321,-3162,-2006,-2476,-475,-1940,-13615,-13616,-13613,-15787], +[0,-15796,-15797,-15798,-15799,-15800], +[0,-21,-15801,-15802,-15803,-207,-77,-62,-237,-191,-5,-15804,-22,-6249,-19,-157,-96,-253,-284,-158,-55,-4808,-15805,-1,-9, +-180,-3447,-41,-340,-3216,-15806,-15807,-10,-15808,-15809,-65,-15810,-682,-15811,-15812,-15813,-14,-2807,-1311,-15814, +-2225,-229,-305,-645,-80,-3450,-15815,-3343,-44,-199,-15816,-2,-5537], +[0,-1589,-15817,-1359,-2925,-418,-1357,-95,-6,-73,-184,-494,-1590,-2933,-4012,-15818], [1,3,10779], [0,0,10780,10781,4], -[0,-50,-2410,-2466,-4840,-6859], -[0,-15415,-15416,-15788,-15417,-15418,-11853,-10655,-15419,-6711,-15420,-15421,-4126,-15071,-2006,-15422,-475,-2476,-5270, --3162,-11321,-15423,-15424], +[0,-357,-2,-104,-4813,-923], +[0,-6519,-6520,-15819,-6521,-6522,-1586,-3895,-6523,-2703,-6524,-6525,-1511,-2280,-6,-6526,-184,-73,-291,-95,-1357,-2282, +-6527], [1,3,10783], [0,10784,10785,10786,5], -[0,-15789], -[0,-15790,-3136,-3037,-664,-12469,-1002], -[0,-15791,-6121,-460,-15792,-15793,-15794,-15795], +[0,-15820], +[0,-15821,-29,-5,-13,-3965,-787], +[0,-15822,-2668,-2970,-15823,-15824,-15825,-15826], [1,3,10788], [0,10789,10790,7,4], -[0,-15796,-3748,-948,-8339,-965,-968,-969,-1047,-1110,-15797,-2411], -[0,-3037,-10557,-932,-1344,-3781,-1498,-15798,-1772,-2399,-2410], +[0,-15827,-315,-246,-1866,-115,-67,-64,-339,-56,-15828,-84], +[0,-5,-5878,-1,-10,-1504,-799,-15829,-345,-236,-2], [1,3,10792], [0,10793,0,73,4], -[0,-1456], +[0,-635], [1,3,10795], [0,10796,10797,286,4], -[0,-4007,-658,-3190,-1548,-1549,-15799], -[0,-15800,-3037,-1278,-2410,-15801,-15802,-15803], +[0,-1012,-1052,-1734,-23,-461,-15830], +[0,-15831,-5,-1233,-2,-15832,-15833,-15834], [1,3,10799], [0,10800,0,7,6], -[0,-4231], +[0,-701], [1,3,10802], [0,0,10803,7,8], -[0,-2386,-932,-2469,-1942,-2410,-3037,-965,-3664,-978,-940,-428,-427], +[0,-561,-1,-30,-4,-2,-5,-115,-105,-151,-12,-19,-22], [1,3,10805], [0,10806,10807,10808,9], -[0,-668,-1574,-1948,-2303], -[0,-1127,-1132,-1134,-1163,-2541], -[0,-9219,-3839,-9472,-6523,-6527,-7175,-1644], +[0,-20,-638,-520,-602], +[0,-54,-164,-240,-1416,-34], +[0,-268,-265,-1354,-3527,-292,-620,-228], [1,3,10810], [0,10811,10812,286,5], -[0,-928,-4007,-2886], -[0,-1415,-2410,-3136,-3037,-15806,-15807], +[0,-87,-1012,-4452], +[0,-8,-2,-29,-5,-15837,-15838], [1,3,10814], [0,10815,10816,10817,5], -[0,-522], -[0,-1788,-664,-2391,-1654,-2125,-1004,-2379,-2410,-3035,-3037,-3621,-511,-3617,-3983], -[0,-4665,-5119,-3634,-4873,-3440,-4666,-5986,-1874,-522], +[0,-1205], +[0,-15,-13,-172,-3,-7,-40,-33,-2,-109,-5,-71,-1377,-264,-366], +[0,-1018,-401,-61,-573,-609,-1309,-3463,-391,-1205], [1,3,10819], [0,10820,10821,7,5], -[0,-483,-653,-6860,-13380,-14174,-15808,-5042,-1864,-2923,-7160,-2177,-3535,-2654,-2369,-15809,-15810], -[0,-15661,-15811,-15812,-15813,-15814,-3037,-8523,-3199,-8200,-15815,-15816,-3664,-3665,-4817,-8349,-815,-932,-8418,-3751, --1623,-3459,-6568,-1942,-2910,-15817,-15818,-2410,-15819,-15820,-15821,-15822,-2466,-2469], +[0,-1375,-845,-1839,-2930,-4020,-15839,-2099,-326,-994,-2184,-16,-1142,-313,-691,-15840,-15841], +[0,-4053,-6550,-15842,-15843,-15844,-5,-662,-140,-1188,-15845,-15846,-105,-1005,-1778,-1568,-509,-1,-2791,-1503,-259, +-1493,-1832,-4,-470,-15847,-15848,-2,-15849,-15850,-15851,-6551,-104,-30], [1,3,10823], [0,10824,10825,10826,4], -[0,-812,-814,-1077,-1116,-7408,-2331], -[0,-3198,-15823,-3048,-664,-932,-1654], -[0,-867,-7347,-10908,-6131,-6656,-1334,-2435,-7107,-3445], +[0,-35,-2335,-41,-387,-1554,-379], +[0,-169,-15852,-191,-13,-1,-3], +[0,-1217,-1026,-3907,-1536,-128,-103,-200,-711,-46], [1,3,10828], [0,0,10829,10830,4], -[0,-3983,-3037,-3040,-9723,-1942,-2006,-2019,-3682,-2410], -[0,-2006,-5741,-12662,-12664,-12665], +[0,-366,-5,-47,-2851,-4,-6,-36,-2048,-2], +[0,-6,-3432,-3976,-6205,-2924], [1,3,10832], [0,10833,0,10834,5], -[0,-834,-3222,-681,-3620,-81,-66,-73,-74,-3502,-83,-68,-85,-15824,-6672,-15825], -[0,-15826,-681,-3489,-15827,-15828,-5554,-15829,-7754,-3496,-3498,-3264,-3505,-3506,-3507,-3508,-3509,-8841,-6217,-3161], +[0,-203,-1491,-283,-2517,-406,-318,-1197,-1043,-610,-332,-428,-1199,-6552,-3537,-6553], +[0,-6554,-283,-894,-6555,-6556,-193,-6557,-2757,-420,-1003,-31,-1494,-1495,-1744,-1745,-1496,-839,-5085,-53], [1,3,10836], [0,0,287,134,4], [1,3,10838], [0,10839,10840,10841,11], -[0,-15830,-1967,-2055], -[0,-21,-23,-32,-26,-33,-34,-35,-6034,-36,-38,-40,-41,-44,-406,-407,-409,-534,-753,-767,-932,-933,-940,-958,-962,-967,-969, --1415,-1419,-1455,-1939,-1942,-2006,-2019,-2501,-2502,-2503,-2505], -[0,-2006,-3476,-5176,-3159], +[0,-15853,-121,-687], +[0,-48,-11,-156,-209,-578,-1039,-931,-2657,-300,-170,-21,-132,-90,-319,-153,-120,-96,-158,-26,-1,-255,-12,-9,-148,-25,-64, +-8,-176,-859,-234,-4,-6,-36,-18,-523,-93,-173], +[0,-6,-527,-500,-106], [1,3,10843], [0,0,122,10844,5], -[0,-1107,-5569,-5570,-3215,-15831,-3116], +[0,-28,-1021,-1160,-74,-15854,-607], [1,3,10846], [0,10847,0,10848,5], -[0,-681,-3517,-81,-15832,-66,-83,-68,-15824,-6672,-15825,-65,-15833,-3526,-15834,-15835], -[0,-15826,-681,-3489,-15827,-15828,-5554,-15829,-7754,-3496,-3498,-3264,-3505,-3506,-3507,-3508,-3509,-8841,-3161], +[0,-283,-528,-406,-15855,-318,-332,-428,-6552,-3537,-6553,-932,-15856,-3212,-15857,-15858], +[0,-6554,-283,-894,-6555,-6556,-193,-6557,-2757,-420,-1003,-31,-1494,-1495,-1744,-1745,-1496,-839,-53], [1,3,10850], [0,0,37,288,8], [1,3,10852], [0,10853,10854,10855,4], -[0,-15836,-458,-812,-1729], -[0,-3198,-3037,-4201,-15837], -[0,-13739,-7572,-3690,-3323,-3161,-3482,-2901], +[0,-15859,-1203,-35,-188], +[0,-169,-5,-1014,-15860], +[0,-4013,-3641,-100,-351,-53,-382,-4457], [1,3,10857], [0,23,0,289,4], [0,23,0,289,5], [1,3,10860], [0,10861,0,170,5], -[0,-5240,-5241,-431,-15838,-5244,-5245], +[0,-4890,-4891,-4100,-15861,-4892,-4893], [1,3,10863], [0,10864,0,10865,9], -[0,-15839,-15840,-15841,-15842,-15843,-15844,-15845,-15846], -[0,-15847,-2257,-15848,-3634,-4004,-15849,-15849,-2034,-2006,-3162,-5270,-5271,-3578], +[0,-15862,-15863,-15864,-15865,-15866,-15867,-15868,-15869], +[0,-15870,-740,-15871,-61,-76,-6558,-6558,-235,-6,-95,-291,-355,-113], [1,3,10867], [0,10868,0,10869,6], -[0,-1439,-7679,-493,-495,-15444,-492], -[0,-15318,-15719,-3445,-7661], +[0,-967,-1346,-1915,-1916,-2941,-1914], +[0,-2281,-2943,-46,-1558], [1,3,10871], [0,0,10872,10873,5], -[0,-633,-1339,-2491], -[0,-2319,-8533,-3162,-2363,-5389,-6822], +[0,-60,-413,-742], +[0,-85,-5530,-95,-418,-827,-3554], [1,3,10875], [0,10876,10877,10878,9], -[0,-15850,-2324], -[0,-1413,-1471,-1475,-1476,-1481,-11285,-1645,-1978,-2416], -[0,-10838,-10840,-3162,-4865], +[0,-15872,-1267], +[0,-373,-79,-138,-588,-389,-6005,-92,-160,-112], +[0,-2252,-3903,-95,-94], [1,3,10880], [0,10881,10882,7,4], -[0,-8535,-15851,-11270,-4848,-15852,-15853,-1826,-3653,-2062,-7967,-8544,-15854,-15855,-2531], -[0,-13322,-9193,-13323,-15856,-357,-15857,-3037,-4204,-8549,-2917,-726,-2758,-932,-1030,-1122,-1123,-15858,-2884,-1939, --1972,-2177,-2210,-2240,-2384,-2410,-2426,-2648], +[0,-5531,-15873,-6002,-3318,-15874,-15875,-552,-2521,-198,-1561,-5534,-15876,-15877,-205], +[0,-6337,-3766,-6338,-15878,-623,-15879,-5,-475,-3726,-1726,-284,-2466,-1,-1071,-371,-956,-15880,-819,-234,-181,-16,-27, +-881,-82,-2,-289,-2017], [1,3,10884], [0,10885,10886,10887,11], -[0,-3459,-1863,-5037,-15811], -[0,-3735,-15206,-1966,-2469], -[0,-8403,-7148], +[0,-1493,-167,-1785,-6550], +[0,-822,-4041,-392,-30], +[0,-769,-224], [1,3,10889], [0,10890,10891,7,4], -[0,-25,-668,-2066,-2114,-2550], -[0,-528,-15859,-15860,-10445,-1978,-2070,-2226,-2250,-2322,-2359], +[0,-405,-20,-1257,-126,-98], +[0,-91,-15881,-15882,-5839,-160,-1993,-1700,-97,-39,-161], [1,3,10893], [0,10894,132,58,5], -[0,-15861,-996,-15388,-15399], +[0,-15883,-951,-2940,-4045], [1,3,10896], [0,0,0,10897,4], -[0,-15862,-3445,-13986,-11867,-7685,-2006], +[0,-15884,-46,-6409,-3946,-403,-6], [1,3,10899], [0,0,0,10900,6], -[0,-932,-3784,-2006,-2041,-5324], +[0,-1,-383,-6,-686,-4907], [1,3,10902], [0,10903,10904,10905,8], -[0,-479,-9493,-812,-1022,-2778,-1446,-1597,-2359], -[0,-23,-40,-43,-528,-664,-756,-932,-951,-1168,-1174,-1197,-1212,-1220,-1231,-1252,-1654,-15863,-1788,-1939], -[0,-1168,-1446,-7674,-3214,-7841,-856], +[0,-452,-3801,-35,-257,-1721,-165,-970,-161], +[0,-11,-21,-174,-91,-13,-55,-1,-783,-32,-585,-513,-1074,-961,-359,-311,-3,-15885,-15,-234], +[0,-32,-165,-2752,-45,-68,-42], [1,3,10907], [0,10908,0,10909,4], -[0,-1371,-15448,-1645,-1469], -[0,-15318,-15719,-3445,-15449,-15450], +[0,-728,-6531,-92,-2364], +[0,-2281,-2943,-46,-6532,-6533], [1,3,10911], [0,10912,10913,7,4], -[0,-15274,-652,-999,-1047,-1107,-2548], -[0,-15864,-11419,-15865,-357,-3037,-15866,-2177,-932,-2884,-2410], +[0,-6509,-43,-118,-339,-28,-262], +[0,-15886,-2898,-15887,-623,-5,-15888,-16,-1,-819,-2], [1,3,10915], [0,0,91,10916,10], -[0,-5372,-5142,-7282,-2918,-11889,-5573], +[0,-2132,-914,-766,-3154,-2909,-655], [1,3,10918], [0,0,10919,10920,10], -[0,-2391,-2851], -[0,-2476,-2486,-4634,-2851,-3636,-4215,-3634], +[0,-172,-1724], +[0,-73,-1709,-1017,-1724,-1145,-317,-61], [1,3,10922], [0,0,10923,10924,4], -[0,-527,-1168,-1171,-15867,-1187,-1229,-1243,-1248,-1252,-1262,-1942,-2128], -[0,-15868,-15869,-15870,-15871,-15872,-15873,-3162,-11853], +[0,-162,-32,-1648,-15889,-631,-3029,-310,-1418,-311,-632,-4,-275], +[0,-15890,-15891,-15892,-15893,-15894,-15895,-95,-1586], [1,3,10926], [0,10927,10928,7,4], -[0,-15874], -[0,-2476,-4838,-15875], +[0,-6559], +[0,-73,-912,-15896], [1,3,10930], [0,0,10931,10932,6], -[0,-15661,-190,-15876,-15877,-3037,-3664,-6593,-932,-940,-960,-978,-1431,-7060,-1534,-8436,-1942,-15878,-15879,-2910, --2174,-2892,-2400,-2410,-2411,-2469], -[0,-15880,-10587,-12437,-11639,-5112,-14059,-1548,-1993,-10656,-3481,-3018,-3694,-2410,-2424,-2444,-8113,-3590,-5260], +[0,-4053,-50,-15897,-15898,-5,-105,-922,-1,-12,-180,-151,-516,-3574,-17,-1570,-4,-15899,-15900,-470,-122,-380,-215,-2,-84, +-30], +[0,-15901,-3891,-3961,-2900,-759,-6415,-23,-643,-2876,-1141,-440,-650,-2,-250,-136,-1030,-208,-704], [1,3,10934], [0,10935,10936,10937,6], -[0,-14337,-5322], -[0,-5053,-11754,-15881,-4062,-639,-734,-999,-1107,-9665,-1852,-2922,-7160,-2127,-2202,-2231,-2410,-2924,-2923], -[0,-7882,-928,-7760,-2923,-2127,-2501], +[0,-4027,-2124], +[0,-3348,-6067,-15902,-238,-1051,-1211,-118,-28,-5726,-594,-3155,-2184,-14,-879,-130,-2,-2023,-994], +[0,-2763,-87,-3655,-994,-14,-18], [1,3,10939], [0,0,10940,10941,5], -[0,-190,-3664,-932,-958,-960,-15882,-971,-972,-1449,-2892,-15883,-2410,-2411,-2466,-2469], -[0,-9022,-2410,-4058,-3926,-6747,-15884,-8461,-11997], +[0,-50,-105,-1,-9,-180,-15903,-784,-724,-78,-380,-15904,-2,-84,-104,-30], +[0,-5600,-2,-331,-423,-763,-15905,-5515,-1587], [1,3,10943], [0,0,0,10944,6], -[0,-5889,-9080,-9800], +[0,-402,-3760,-1355], [1,3,10946], [0,10947,10948,10949,10], -[0,-3819,-15885,-15886,-15887,-15888,-15889,-15890,-15891,-15892,-3117,-8915,-4836,-15893,-15874,-15894,-15895,-15896, --15897,-15898,-15899,-15900,-15901,-15902,-15903,-15904,-15905,-15906,-15907,-15908,-15909,-15910,-4816,-4817,-14358, --15911,-15912,-734,-6860,-15913,-15914,-15915,-15916,-15917,-15918,-15919,-1085,-14174,-15920,-1588,-1651,-15921,-12267, --1852,-15922,-6569,-2317,-15923,-2318,-2654,-11071,-2981,-15924,-15925, --15926,-15927], -[0,-15928,-15929,-15930,-4646,-15931,-4837,-4838,-15932,-2932,-932,-1278,-7300,-2091,-2423,-2469,-15130,-15933,-2476, --5627], -[0,-15934,-7300,-3944,-2318,-5511,-2476,-5173,-3527,-2410,-4591,-3160,-2316,-3161,-15935], +[0,-2543,-15906,-15907,-15908,-15909,-15910,-15911,-15912,-15913,-1730,-5577,-3315,-15914,-6559,-15915,-15916,-15917, +-15918,-15919,-15920,-15921,-15922,-15923,-15924,-15925,-15926,-15927,-15928,-15929,-15930,-15931,-4810,-1778,-6431, +-15932,-15933,-1211,-1839,-15934,-15935,-15936,-15937,-15938,-15939,-15940,-1643,-4020,-15941,-296,-1437,-15942,-6148, +-594,-15943,-2696,-2446,-15944,-559,-313,-2886,-2479,-15945,-15946, +-15947,-15948], +[0,-15949,-15950,-15951,-909,-15952,-1020,-912,-4056,-3157,-1,-1233,-3595,-378,-1270,-30,-6495,-15953,-73,-1531], +[0,-15954,-3595,-897,-559,-2636,-73,-1319,-2510,-2,-4769,-102,-1265,-53,-15955], [1,3,10951], [0,0,10952,10953,11], -[0,-3136,-1415,-2375,-2379,-2391,-2410], -[0,-3445,-4791,-9915,-15936,-15937,-15938,-15939,-15940,-15941,-15942,-15943,-775,-5272,-3100,-15944,-15945,-15946,-15947, --15948,-15949,-15950,-15951,-15952,-15953,-15954,-15955,-2410,-15956,-15957,-15958,-15959,-15960,-15961,-15962,-15963, --15964], +[0,-29,-8,-57,-33,-172,-2], +[0,-46,-910,-5769,-15956,-15957,-15958,-15959,-15960,-15961,-15962,-15963,-24,-1527,-52,-15964,-15965,-15966,-15967, +-15968,-15969,-15970,-15971,-15972,-15973,-15974,-15975,-2,-15976,-15977,-15978,-15979,-15980,-15981,-15982,-15983, +-15984], [1,3,10955], [0,10956,10957,134,6], -[0,-2932,-2896], -[0,-1415,-932,-2127,-2375,-1942,-2410,-3136,-3040,-940,-967,-1419,-428,-427], +[0,-3157,-4455], +[0,-8,-1,-14,-57,-4,-2,-29,-47,-12,-25,-176,-19,-22], [1,3,10959], [0,0,10960,10961,5], -[0,-3040,-3052,-2006,-2019,-2410], -[0,-2006,-8785,-3962,-15273], +[0,-47,-89,-6,-36,-2], +[0,-6,-3737,-352,-4043], [1,3,10963], [0,10964,10965,10966,5], -[0,-15965,-15966,-15967], -[0,-15968,-15969,-15970,-15971,-15972,-15973,-15974,-15975,-15976,-15977,-15978,-15979,-15980,-15981,-15982,-15983,-15984, --15985,-15986,-15987,-15988,-15989,-15990], -[0,-2931,-4004,-3634,-10817,-4873,-664,-507,-856,-15991,-15992,-15993,-1446,-6024,-8257], +[0,-15985,-15986,-15987], +[0,-15988,-15989,-15990,-15991,-15992,-15993,-15994,-15995,-15996,-15997,-15998,-15999,-16000,-16001,-16002,-16003,-16004, +-16005,-16006,-16007,-16008,-16009,-16010], +[0,-4462,-76,-61,-3901,-573,-13,-280,-42,-16011,-16012,-16013,-165,-657,-1864], [1,3,10968], [0,0,287,134,5], [1,3,10970], [0,10971,10972,10973,5], -[0,-15994,-15995,-15996,-15997,-15998,-15999,-16000,-16001,-16002,-13406,-16003,-16004,-16005,-1699,-2641,-2564,-2650], -[0,-4049,-3037,-3040,-3052,-2006,-2019,-2469,-16006], -[0,-16007,-1713,-2455,-16008,-2006,-3098,-3160,-3100,-2316,-2955,-16009,-16010,-15932,-3475,-16011,-16012,-16013,-16014, --16015,-16016,-16017,-16018,-16019,-16020,-16021], +[0,-16014,-16015,-16016,-16017,-16018,-16019,-16020,-16021,-16022,-6350,-16023,-16024,-16025,-639,-2459,-263,-1480], +[0,-652,-5,-47,-89,-6,-36,-30,-16026], +[0,-6560,-390,-2006,-16027,-6,-127,-102,-52,-1265,-3162,-16028,-4057,-4056,-4565,-6561,-16029,-16030,-16031,-16032,-16033, +-6562,-16034,-16035,-16036,-16037], [1,3,10975], [0,0,0,10976,4], -[0,-12059,-775], +[0,-6116,-24], [1,3,10978], [0,10979,10980,10981,4], -[0,-10782,-10784,-10786,-10793,-10788,-1691], -[0,-3136,-3037,-756,-1415,-1942,-2080,-2091,-2153,-2375,-2379,-2892,-2409,-2410], -[0,-5406,-4847,-856], +[0,-5916,-5917,-5918,-5922,-5919,-550], +[0,-29,-5,-55,-8,-4,-598,-378,-496,-57,-33,-380,-2002,-2], +[0,-1808,-571,-42], [1,3,10983], [0,10984,10985,10986,5], -[0,-2650,-4225], -[0,-2466,-2006,-1122,-2019,-6859,-406,-440,-409,-407,-5323], -[0,-2006,-1122,-16022,-3862,-856,-10446], +[0,-1480,-2563], +[0,-104,-6,-371,-36,-923,-319,-506,-120,-153,-2619], +[0,-6,-371,-16038,-107,-42,-5840], [1,3,10988], [0,10989,10990,10991,5], -[0,-1313,-1826,-865,-16023,-13074,-1582,-16024,-1125,-16025,-1456,-15672,-16026,-16027,-16028,-16029,-16030,-16031,-16032, --3234,-16033,-16034,-8863], -[0,-2564,-2391,-932,-1111,-2127,-2469,-2378,-3665,-2410,-23,-3037,-16035,-16036,-16037,-16038,-1025,-4776,-4049,-16039, --16040,-3664,-16041,-16042,-16043], -[0,-15932,-16044,-16045,-9733,-16046,-16047,-16048,-16049,-16050,-10412,-3674,-2410,-16051,-3161], +[0,-855,-552,-210,-16039,-3995,-434,-16040,-670,-16041,-635,-6539,-16042,-16043,-16044,-16045,-16046,-16047,-16048,-1737, +-16049,-16050,-1574], +[0,-263,-172,-1,-204,-14,-30,-814,-1005,-2,-11,-5,-16051,-16052,-16053,-16054,-952,-757,-652,-16055,-16056,-105,-16057, +-16058,-16059], +[0,-4056,-16060,-16061,-1883,-16062,-16063,-16064,-16065,-16066,-1034,-1288,-2,-16067,-53], [1,3,10993], [0,0,10994,10995,5], -[0,-50,-409,-3136,-855,-1415,-2634,-1942,-2006,-2019,-2052,-2125,-2375,-2410], -[0,-2006,-2634,-9736,-1713,-3122,-4215,-4004,-3634], +[0,-357,-120,-29,-944,-8,-242,-4,-6,-36,-287,-7,-57,-2], +[0,-6,-242,-1884,-390,-442,-317,-76,-61], [1,3,10997], [0,0,10998,10999,6], -[0,-262,-4066,-350,-351,-3561,-5295,-16052,-3136,-4647,-16053,-4837,-7438,-4838,-5593,-708,-740,-767,-1415,-1419,-1449, --1534,-6518,-1942,-2127,-2140,-2142,-2214,-2645,-2318,-2375,-2410,-2466,-2476,-2483,-2486,-8160], -[0,-2476,-3944,-16054,-16055,-16056,-15150,-2645,-16057,-2939,-7580,-15151,-16058,-2410,-16059,-2363,-3162,-3214,-3095, --3160], +[0,-451,-530,-77,-62,-237,-705,-16068,-29,-614,-16069,-1020,-1852,-912,-2638,-149,-385,-26,-8,-176,-78,-17,-5137,-4,-14, +-229,-305,-328,-3136,-559,-57,-2,-104,-73,-888,-1709,-2773], +[0,-73,-897,-16070,-6563,-16071,-6496,-3136,-16072,-4463,-3642,-6497,-16073,-2,-16074,-418,-95,-45,-131,-102], [1,3,11001], [0,94,0,11002,4], -[0,-2034,-3159,-12567,-2006,-3162,-5270,-5271,-3160,-15071,-13615,-6527], +[0,-235,-106,-1037,-6,-95,-291,-355,-102,-2280,-1590,-292], [1,3,11004], [0,11005,11006,261,6], -[0,-16060,-4787,-3751,-1864,-1889,-2923,-2654], -[0,-25,-3195,-3180,-14337,-13397,-5322,-4066,-350,-7151,-4785,-10046,-4371,-14331,-6410,-653,-679,-729,-742,-754,-769, --5042,-865,-866,-14335,-928,-929,-989,-990,-14338,-14333,-7897,-1588,-1651,-5036,-1699,-1805,-1839,-1852,-14332,-1863, --1906,-1907,-14336,-12601,-11751,-7160,-2127,-2134,-2162,-3572,-2213,-14334,-2334,-3027,-11071,-2531], +[0,-16075,-1312,-1503,-326,-38,-994,-313], +[0,-405,-1735,-1136,-4027,-2931,-2124,-530,-77,-3580,-758,-2865,-2571,-6427,-2688,-845,-117,-218,-457,-368,-225,-2099, +-210,-945,-1897,-87,-484,-786,-848,-6430,-6429,-3665,-296,-1437,-2098,-639,-152,-593,-594,-6428,-167,-555,-868,-4026, +-3974,-2267,-2184,-14,-876,-80,-1498,-738,-4025,-177,-2481,-2886,-205], [1,3,11008], [0,0,0,11009,4], -[0,-2034,-3159,-5270,-5271,-11511,-770,-3162,-510,-2191,-11524,-11526,-7103,-16061,-16062,-2446], +[0,-235,-106,-291,-355,-6029,-626,-95,-59,-2424,-6031,-6032,-5238,-16076,-16077,-125], [1,3,11011], [0,0,37,288,9], [1,3,11013], [0,11014,11015,11016,9], -[0,-3165,-16063,-16064,-3168,-3698,-11418,-16065,-5772,-16066,-16067,-16068,-16069,-5702,-16070,-8859,-3778,-16071,-16072, --16073,-16074,-16075,-16076,-16077,-16078,-16079,-16080,-16081,-16082,-16083,-16084,-16085,-16086,-16087,-16088,-16089, --16090,-16091,-16092,-16093,-16094,-16095,-16096,-16097,-16098,-16099,-16100,-8863,-16101,-16102,-16103,-16104,-16105, --16106,-16107,-16108,-16109,-402,-16110,-16111,-16112,-15748,-16113,-16114, --16115,-16116,-16117,-16118,-15257,-485,-5674,-16119,-13751,-743,-16120,-809,-812,-16121,-834,-16122,-16123,-2761,-1025, --14636,-1043,-2573,-16124,-1125,-1329,-1349,-9775,-16125,-11895,-1359,-5193,-16126,-16127,-1495,-16128,-16129,-16130, --1549,-16131,-1593,-16132,-1610,-10749,-16133,-16134,-1699,-2634,-1712,-16135,-16136,-11750,-1782,-16137,-16138,-16139, --16140,-16010,-12273,-16141,-16142,-16143,-11926,-1855,-1857, --1867,-16144,-1885,-16145,-8504,-16146,-1984,-1994,-2006,-16147,-2019,-4988,-16148,-2025,-16149,-6620,-16150,-2042, --16151,-2044,-16152,-16153,-16154,-2093,-2095,-2096,-16155,-16156,-2177,-2193,-4245,-16157,-2272,-2292,-16158,-2592, --2314,-16159,-16160,-2594,-16161,-2436,-16162,-2446,-16163,-2531,-2548,-2564,-2650,-16164], -[0,-86,-14379,-16165,-16166,-16167,-16168,-16169,-16170,-10811,-16171,-3983,-5681,-3842,-407,-409,-410,-16172,-16173, --3198,-3048,-16174,-4049,-3044,-3164,-3037,-16175,-16176,-16177,-16178,-3040,-3052,-16179,-3199,-14748,-12969,-4231, --4204,-8200,-3664,-5329,-721,-734,-767,-772,-16180,-865,-866,-16181,-16182,-16183,-932,-16184,-16185,-1077,-1107,-1278, --1344,-11415,-16186,-1534,-1548,-1605,-16187, --1640,-1729,-1733,-12282,-1826,-1942,-2094,-4242,-16188,-2098,-11417,-2174,-16189,-2281,-2392,-2400,-2410,-2427,-2429, --2466,-2469], -[0,-3161,-16011,-16017,-1713,-16190,-16010,-16191,-16192,-16193,-16194], +[0,-2487,-16078,-16079,-3174,-1289,-3919,-16080,-5002,-16081,-16082,-16083,-16084,-3426,-16085,-2802,-1147,-16086,-16087, +-16088,-16089,-16090,-16091,-16092,-16093,-16094,-16095,-16096,-16097,-16098,-16099,-16100,-16101,-16102,-16103,-16104, +-16105,-16106,-16107,-16108,-16109,-16110,-16111,-16112,-16113,-16114,-16115,-1574,-16116,-16117,-16118,-16119,-16120, +-16121,-16122,-16123,-16124,-4088,-16125,-16126,-16127,-4055,-16128,-16129, +-16130,-16131,-16132,-16133,-6508,-935,-3422,-16134,-4014,-336,-16135,-542,-35,-16136,-203,-6564,-16137,-4409,-952,-4032, +-1226,-4361,-16138,-670,-1425,-1079,-5749,-16139,-6096,-965,-1801,-16140,-16141,-2367,-16142,-16143,-16144,-461,-16145, +-4242,-16146,-227,-3898,-16147,-16148,-639,-242,-4252,-16149,-16150,-6065,-2395,-16151,-16152,-16153,-16154,-4057,-6149, +-16155,-16156,-16157,-2910,-4274,-595, +-1250,-16158,-1450,-16159,-5523,-16160,-3087,-1688,-6,-16161,-36,-2595,-16162,-4292,-16163,-5150,-16164,-3095,-16165, +-557,-16166,-16167,-16168,-274,-522,-2417,-16169,-16170,-16,-689,-907,-16171,-3110,-3114,-16172,-2016,-1702,-16173, +-16174,-1134,-16175,-2003,-16176,-125,-16177,-205,-262,-263,-1480,-16178], +[0,-49,-6435,-16179,-16180,-16181,-16182,-16183,-16184,-5927,-16185,-366,-4979,-2055,-153,-120,-307,-16186,-16187,-169, +-191,-16188,-652,-143,-1279,-5,-16189,-16190,-16191,-4058,-47,-89,-16192,-140,-6461,-3990,-701,-475,-1188,-105,-2620, +-1056,-1211,-26,-2332,-16193,-210,-945,-16194,-16195,-16196,-1,-16197,-16198,-41,-28,-1233,-10,-6016,-16199,-17,-23, +-1098,-16200, +-260,-188,-590,-6152,-552,-4,-146,-906,-16201,-599,-6017,-122,-16202,-182,-155,-215,-2,-135,-348,-104,-30], +[0,-53,-6561,-6562,-390,-16203,-4057,-16204,-16205,-16206,-16207], [1,3,11018], [0,291,135,63,5], [1,3,11020], [0,11021,131,11022,5], -[0,-8863,-3617,-719,-1004,-5193,-2426,-2564], -[0,-16195,-16196,-16197,-16198,-16199,-856,-10817], +[0,-1574,-264,-58,-40,-1801,-289,-263], +[0,-16208,-16209,-16210,-16211,-16212,-42,-3901], [1,3,11024], [0,11025,11026,11027,4], -[0,-4890,-13377], -[0,-2213,-1852,-2006,-2218,-2177,-2469,-13380,-2019,-2369,-3654,-3517,-1639,-1863,-2654,-2410,-3037,-3199,-14373,-4036, --5087,-16200,-2970], -[0,-2257,-4895,-2469,-3634,-4004,-3095,-3098,-13422,-2006,-2476,-2299,-4902], +[0,-2587,-6345], +[0,-738,-594,-6,-288,-16,-30,-2930,-36,-691,-2522,-528,-361,-167,-313,-2,-5,-140,-6433,-651,-1787,-16213,-1486], +[0,-740,-4834,-30,-61,-76,-131,-127,-6352,-6,-73,-221,-1779], [1,3,11029], [0,11030,11031,11032,5], -[0,-997,-16201,-16202], -[0,-2501,-3136,-3037,-2503], -[0,-4123,-8503,-4004,-3634,-16203,-5858], +[0,-410,-16214,-16215], +[0,-18,-29,-5,-93], +[0,-612,-5522,-76,-61,-16216,-3446], [1,3,11034], [0,0,11035,11036,4], -[0,-526,-527,-534,-559,-562,-566,-567,-16204,-664,-16205,-13261,-796,-812,-829,-932,-943,-968,-974,-1017,-1041,-1077, --1322,-1331,-1471,-1474,-1475,-1479,-16206,-7707,-1480,-1482,-1483,-16207,-1484,-1487,-1488,-1492,-1654,-1753,-1860, --2125,-14439,-5471,-2174,-2416,-14648,-2437,-2501,-2505], -[0,-3576,-8897,-16208,-12613,-12449,-2363,-13616,-11594,-3162], +[0,-179,-162,-96,-321,-1048,-429,-282,-16217,-13,-16218,-6329,-295,-35,-1215,-1,-83,-67,-129,-851,-271,-41,-1423,-342,-79, +-675,-138,-213,-16219,-3650,-1090,-187,-414,-16220,-2365,-861,-798,-517,-3,-285,-640,-7,-4028,-1324,-122,-112,-4033,-438, +-18,-173], +[0,-649,-2808,-16221,-1589,-1359,-418,-2933,-3927,-95], [1,3,11038], [0,11039,11040,11041,5], -[0,-16209,-16210], -[0,-3040,-3052,-3804,-427,-428,-726,-932,-940,-967,-969,-16211,-16212,-1942,-2127,-2142,-2379,-2387,-2410], -[0,-16213,-16214,-16215,-2006,-5270,-5271,-3162,-16216], +[0,-16222,-16223], +[0,-47,-89,-2539,-22,-19,-284,-1,-12,-25,-64,-16224,-16225,-4,-14,-305,-33,-44,-2], +[0,-16226,-16227,-16228,-6,-291,-355,-95,-16229], [1,3,11043], [0,0,11044,11045,6], -[0,-2006,-2034,-12566,-16217], -[0,-2034,-9021,-5270,-5271,-16218,-16219,-16220,-16221,-3161,-2006,-16222,-5269,-3209,-5922,-16223,-3682,-3970,-3110, --9437], +[0,-6,-235,-2273,-16230], +[0,-235,-5599,-291,-355,-16231,-16232,-16233,-16234,-53,-6,-16235,-501,-381,-535,-16236,-2048,-1010,-277,-5683], [1,3,11047], [0,11048,0,11049,6], -[0,-2954,-2934], -[0,-712,-775,-3215], +[0,-4466,-3158], +[0,-217,-24,-74], [1,3,11051], [0,0,0,11052,9], -[0,-714,-775], +[0,-133,-24], [1,3,11054], [0,11055,11056,11057,6], -[0,-16224,-23,-25,-3412,-42,-16225,-8863,-16226,-635,-719,-755,-815,-823,-834,-999,-1026,-1077,-12417,-1343,-1496,-1683, --1729,-1805,-1816,-1889,-1931,-1966,-2066,-16227,-2317,-2378,-2383,-2450,-2564,-8882], -[0,-4776,-3048,-3735,-16228,-2125,-2391,-2400,-2410], -[0,-3098,-3160,-2316,-16007,-2955], +[0,-6565,-11,-405,-1140,-137,-16237,-1574,-16238,-301,-58,-386,-509,-323,-203,-118,-226,-41,-6169,-727,-490,-800,-188, +-152,-325,-38,-556,-392,-1257,-16239,-2446,-814,-815,-1272,-263,-3742], +[0,-757,-191,-822,-16240,-7,-172,-215,-2], +[0,-127,-102,-1265,-6560,-3162], [1,3,11059], [0,0,0,11060,6], -[0,-2006,-2476,-9608,-9614,-16229,-16230], +[0,-6,-73,-2846,-1580,-16241,-16242], [1,3,11062], [0,0,11063,11064,6], -[0,-3136,-3037,-427,-428,-932,-936,-940,-958,-967,-968,-972,-978,-1107,-1415,-1942,-2125,-2127,-2130,-12925,-2142,-2375, --2379,-2402,-2405,-7322,-2410], -[0,-16231,-8785,-16232,-16233,-16234,-16235,-16236,-16237,-3173,-16238,-3966,-4865,-3100,-3445], +[0,-29,-5,-22,-19,-1,-1945,-12,-9,-25,-67,-724,-151,-28,-8,-4,-7,-14,-875,-6265,-305,-57,-33,-124,-816,-3598,-2], +[0,-16243,-3737,-16244,-16245,-16246,-16247,-16248,-16249,-695,-16250,-144,-94,-52,-46], [1,3,11066], [0,0,0,11067,6], -[0,-16239,-4053,-16240,-16241,-16242,-16243,-16244,-16245,-16246,-16247,-16248,-16249,-16250,-16251,-12512,-16252,-16253, --4055,-1456,-16254,-16244,-5495,-3100,-3214,-2410], +[0,-16251,-570,-16252,-16253,-16254,-16255,-6566,-16256,-16257,-16258,-16259,-16260,-16261,-16262,-3967,-16263,-16264, +-108,-635,-16265,-6566,-1810,-52,-45,-2], [1,3,11069], [0,11070,0,73,4], -[0,-2984,-5766,-2860,-5758,-501,-523,-16255,-615,-16256,-14855,-1069,-1100,-1107,-9362,-8985,-5880,-1548,-1574,-1666, --1705,-10270,-1875,-1878,-2060,-2115,-2160,-2177,-2194,-2297,-5764,-2400,-2446,-2518,-2555], +[0,-3164,-3438,-2477,-1329,-842,-194,-16266,-114,-16267,-6485,-628,-487,-28,-3783,-3753,-2141,-23,-638,-233,-734,-3869, +-1252,-554,-1690,-644,-1996,-16,-737,-468,-5001,-215,-125,-222,-992], [1,3,11072], [0,11073,11074,11075,4], -[0,-15224,-15226], -[0,-3037,-15229,-15230,-15231,-2125,-2892,-2410,-2469], -[0,-15227,-9668,-3690,-3445,-1348,-9780], +[0,-6501,-6502], +[0,-5,-6503,-6504,-6505,-7,-380,-2,-30], +[0,-4042,-1194,-100,-46,-1078,-1885], [1,3,11077], [0,11078,11079,11080,4], -[0,-1313,-1852,-2922,-6570,-2924,-11918,-12278,-7772,-6475,-4835,-1341,-16257,-8859,-12284,-8860,-16258,-16259], -[0,-2391,-2469,-5672,-6568,-2410,-3037,-8321,-16260,-2832,-11347], -[0,-1954,-10425,-16261,-8427,-3113,-7646,-3634], +[0,-855,-594,-3155,-1544,-2023,-6098,-6151,-1857,-2693,-1313,-1960,-16268,-2802,-6153,-5567,-16269,-16270], +[0,-172,-30,-1812,-1832,-2,-5,-5474,-16271,-314,-2896], +[0,-3085,-928,-16272,-1191,-694,-1557,-61], [1,3,11082], [0,11083,11084,11085,6], -[0,-16262,-16263], -[0,-16264,-767,-932,-1641,-16265,-1788,-1972,-16266,-2322], -[0,-5817,-5819,-5937,-13192,-5801,-16267,-16268,-5951,-5940,-5943,-16269,-3161], +[0,-16273,-16274], +[0,-16275,-26,-1,-344,-16276,-15,-181,-16277,-39], +[0,-1330,-2136,-2144,-2279,-1162,-16278,-16279,-3457,-1165,-3456,-16280,-53], [1,3,11087], [0,11088,11089,7,4], -[0,-16270], -[0,-879,-2410,-7768], +[0,-16281], +[0,-1063,-2,-5366], [1,3,11091], [0,11092,11093,11094,10], -[0,-2006,-2019,-16271], -[0,-1992,-2125,-2388,-2376,-1967,-2410,-23,-3037,-3040,-534,-3052,-3140,-520], -[0,-2356,-3488,-16272,-2006,-3496,-3264,-3494,-13460,-11889,-4258], +[0,-6,-36,-16282], +[0,-684,-7,-199,-214,-121,-2,-11,-5,-47,-96,-89,-997,-2974], +[0,-3118,-1002,-16283,-6,-420,-31,-821,-4003,-2909,-908], [1,3,11096], [0,0,11097,11098,5], -[0,-12182,-190,-4225,-16273,-16274,-4836,-16275,-407,-409,-410,-3269,-3732,-3661,-3037,-3040,-3052,-16276,-14827,-651, --703,-724,-786,-932,-970,-2914,-1110,-1344,-1449,-1534,-1600,-1610,-1889,-1942,-8918,-2006,-16277,-2019,-2965,-16278, --2044,-2140,-2144,-16279,-2193,-2213,-2317,-2318,-2334,-16280,-2379,-2392,-2410,-2411,-11708,-2466,-6859,-15519,-2469, --16281,-2650], -[0,-2006,-3476,-9614,-6409,-16282,-4108,-12682,-12683,-12684,-4002,-4672,-9133], +[0,-6138,-50,-2563,-16284,-16285,-3315,-16286,-153,-120,-307,-1738,-751,-896,-5,-47,-89,-16287,-4036,-454,-302,-367,-722, +-1,-186,-3152,-56,-10,-78,-17,-220,-227,-38,-4,-3745,-6,-16288,-36,-1135,-16289,-557,-229,-645,-16290,-689,-738,-2446, +-559,-177,-16291,-33,-155,-2,-84,-3929,-104,-923,-6535,-30,-16292,-1480], +[0,-6,-527,-1580,-3512,-16293,-1301,-6208,-6209,-6210,-752,-1774,-2822], [1,3,11100], [0,11101,11102,11103,5], -[0,-4785,-12535,-462,-674,-742,-812,-14335,-1026,-1077,-1451,-1588,-1852,-1863,-2041,-2127,-2153], -[0,-16283,-16284,-4066,-350,-4062,-351,-365,-8894,-16285,-3202,-3198,-3048,-4963,-16286,-3037,-3040,-3052,-427,-428,-440, --4837,-679,-928,-13212,-932,-969,-4981,-1771,-13593,-2006,-2019,-2125,-2132,-6483,-2299,-2400,-2410,-2466,-16287,-2469, --2476], -[0,-12913,-5044,-10366,-16288,-5195,-16289,-16290,-4865,-16291], +[0,-758,-6183,-1374,-231,-457,-35,-1897,-226,-41,-1087,-296,-594,-167,-686,-14,-496], +[0,-16294,-16295,-530,-77,-238,-62,-1373,-5573,-16296,-3180,-169,-191,-2591,-16297,-5,-47,-89,-22,-19,-506,-1020,-117,-87, +-6325,-1,-64,-1520,-65,-4011,-6,-36,-7,-417,-1334,-221,-215,-2,-104,-16298,-30,-73], +[0,-770,-2604,-1582,-16299,-1802,-16300,-16301,-94,-16302], [1,3,11105], [0,11106,11107,7,5], -[0,-797,-16292,-16293], -[0,-652,-16294,-2392,-2466,-1449,-1654,-659,-932,-2127,-1110,-1942,-2378,-16295,-2468,-190,-2410,-3037,-1440,-3621,-16296, --7273,-3244,-16297,-4062,-16298,-7274,-3266,-1602,-940,-350,-428,-351,-427], +[0,-1060,-16303,-16304], +[0,-43,-16305,-155,-104,-78,-3,-322,-1,-14,-56,-4,-814,-16306,-817,-50,-2,-5,-968,-71,-16307,-5273,-290,-16308,-238, +-16309,-5274,-206,-1239,-12,-77,-19,-62,-22], [1,3,11109], [0,11110,11111,11112,6], -[0,-8612,-1063,-1343,-16299], -[0,-4835,-3037,-16300,-1313,-1722,-2359], -[0,-659,-13649,-16301,-16302,-11878,-6523,-6524,-6527,-5093,-16303,-7650,-16304,-16305,-6528,-3839,-5057], +[0,-2221,-1412,-727,-16310], +[0,-1313,-5,-16311,-855,-197,-161], +[0,-322,-6380,-16312,-16313,-1358,-3527,-1831,-292,-1788,-16314,-926,-16315,-16316,-1171,-265,-4862], [1,3,11114], [0,11115,11116,11117,8], -[0,-16306], -[0,-2376,-2410,-2501,-2503,-2006,-2019,-3040,-3052], -[0,-2006,-16306,-6656,-6999,-9800,-16307,-6527,-3496,-7764,-16308,-5937,-5940,-5800,-8624], +[0,-6567], +[0,-214,-2,-18,-93,-6,-36,-47,-89], +[0,-6,-6567,-128,-660,-1355,-16317,-292,-420,-1182,-16318,-2144,-1165,-1534,-3731], [1,3,11119], [0,11120,11121,11122,5], -[0,-14372,-13388,-5286], -[0,-2469,-1874], -[0,-4865,-1874,-3095,-7243,-4004,-3634], +[0,-6432,-3999,-1156], +[0,-30,-391], +[0,-94,-391,-131,-1550,-76,-61], [1,3,11124], [0,11125,11126,11127,4], -[0,-502,-668,-679,-1098,-1099,-1125,-1304,-1351,-1535,-1610,-1978,-2177,-5977], -[0,-16309,-3802,-3199,-13186,-519,-659,-1788,-11926,-1942,-1944,-11491,-2379,-2384,-2410,-2541], -[0,-16310,-687,-16311,-856,-16312,-16313,-1599,-6528,-1978,-11096,-16314], +[0,-774,-20,-117,-486,-1229,-670,-372,-459,-1970,-227,-160,-16,-1332], +[0,-16319,-2050,-140,-2278,-51,-322,-15,-2910,-4,-1113,-6026,-33,-82,-2,-34], +[0,-16320,-37,-16321,-42,-16322,-16323,-99,-1171,-160,-5974,-16324], [1,3,11129], [0,11130,11131,278,5], -[0,-668,-2550,-16315,-2823,-16316], -[0,-3037,-16317], +[0,-20,-98,-16325,-2474,-4059], +[0,-5,-16326], [1,3,11133], [0,11134,91,11135,5], -[0,-2177,-2823,-16316,-16318], -[0,-15627,-15629,-15630,-4864,-3634,-3636], +[0,-16,-2474,-4059,-6568], +[0,-4050,-4051,-4052,-572,-61,-1145], [1,3,11137], [0,11138,11139,11140,4], -[0,-16319,-16316,-16318,-2823], -[0,-2973,-16320,-15626,-5769,-1870,-11468], -[0,-15627,-15629,-15630,-4864,-3634,-3636,-11890], +[0,-16327,-4059,-6568,-2474], +[0,-4469,-16328,-6538,-2135,-978,-930], +[0,-4050,-4051,-4052,-572,-61,-1145,-6093], [1,3,11142], [0,11143,11144,11145,4], -[0,-719,-2683,-2822,-16321], -[0,-15624,-16322,-16323,-2983], -[0,-15279,-687,-3262,-856,-15280,-15281], +[0,-58,-3139,-4424,-16329], +[0,-6537,-16330,-16331,-4473], +[0,-1591,-37,-116,-42,-1592,-1593], [1,3,11147], [0,11148,0,11149,4], -[0,-16324], -[0,-15279,-15625,-16325,-16326,-856,-15280,-15281], +[0,-6569], +[0,-1591,-2283,-16332,-16333,-42,-1592,-1593], [1,3,11151], [0,94,11152,11153,8], -[0,-3307,-12564,-4646,-3136,-3044,-3040,-3141,-427,-428,-721,-932,-940,-967,-1344,-1415,-16327,-1942,-2006,-2034,-12566, --2091,-2410], -[0,-2034,-3159,-5270,-5271,-16328,-16329,-3162,-5269,-3095,-6107,-7067,-14498,-11378,-2319], +[0,-63,-3973,-909,-29,-143,-47,-2030,-22,-19,-1056,-1,-12,-25,-10,-8,-16334,-4,-6,-235,-2273,-378,-2], +[0,-235,-106,-291,-355,-16335,-16336,-95,-501,-131,-1168,-3575,-6442,-3918,-85], [1,3,11155], [0,11156,11157,11158,10], -[0,-2340], -[0,-16178,-1857], -[0,-10425,-6321,-3634,-7606,-2340], +[0,-1999], +[0,-4058,-595], +[0,-928,-1169,-61,-2198,-1999], [1,3,11160], [0,11161,11162,7,6], -[0,-3195,-1864,-4247], -[0,-5694,-16224,-16330,-16331,-10097,-10098,-3037,-8523,-8200,-483,-8349,-16332,-928,-932,-16333,-1431,-1534,-1588,-2923, --2127,-3246,-2892,-2410,-16334,-15822,-2466,-2469,-2501,-2503,-2981], +[0,-1735,-326,-4726], +[0,-3425,-6565,-16337,-16338,-5800,-2866,-5,-662,-1188,-1375,-1568,-16339,-87,-1,-16340,-516,-17,-296,-994,-14,-999,-380, +-2,-16341,-6551,-104,-30,-18,-93,-2479], [1,3,11164], [0,72,0,11165,6], -[0,-15279,-15625,-16335,-856,-15280,-15281], +[0,-1591,-2283,-16342,-42,-1592,-1593], [1,3,11167], [0,11168,0,11169,10], -[0,-16336], -[0,-15279,-15625,-16337,-6999,-856,-15280,-15281], +[0,-16343], +[0,-1591,-2283,-16344,-660,-42,-1592,-1593], [1,3,11171], [0,11172,0,73,5], -[0,-4716,-1548,-1582,-10515], +[0,-2580,-23,-434,-3884], [1,3,11174], [0,0,11175,11176,5], -[0,-50,-190,-3035,-3664,-469,-932,-940,-1942,-2125,-2134,-2210,-2334,-2384,-2387,-2402,-2405,-2411,-2466,-16338,-16339, --16340,-16341,-2468,-2469], -[0,-16342,-5177,-3214,-2410,-16343,-16344,-6899,-16345,-3162], +[0,-357,-50,-109,-105,-183,-1,-12,-4,-7,-876,-27,-177,-82,-44,-124,-816,-84,-104,-6570,-6571,-6572,-16345,-817,-30], +[0,-16346,-615,-45,-2,-6573,-16347,-1176,-6574,-95], [1,3,11178], [0,0,11179,11180,5], -[0,-50,-3037,-427,-428,-7438,-932,-940,-1003,-1654,-1942,-16346,-2134,-16347,-2210,-2402,-2405,-2410,-2466,-16338,-16339, --16340], -[0,-5177,-16343,-9475,-3999,-6899,-16345,-659,-7085,-3578,-3162], +[0,-357,-5,-22,-19,-1852,-1,-12,-411,-3,-4,-6575,-876,-16348,-27,-124,-816,-2,-104,-6570,-6571,-6572], +[0,-615,-6573,-5692,-699,-1176,-6574,-322,-1342,-113,-95], [1,3,11182], [0,11183,0,11184,4], -[0,-2357], -[0,-4144,-3214,-16348,-2987,-1942,-2410], +[0,-3119], +[0,-1303,-45,-16349,-2024,-4,-2], [1,3,11186], [0,0,0,11187,4], -[0,-3015,-16349,-1520,-15360,-10440,-1764,-1787,-5895,-7442,-1882,-2177,-7969,-3682,-16350,-16351,-11713,-4304,-2552], +[0,-693,-16350,-1430,-6512,-2250,-159,-1244,-1816,-2194,-3079,-16,-1860,-2048,-16351,-16352,-6059,-3295,-692], [1,3,11189], [0,0,11190,7,4], -[0,-16352,-16353,-280,-16354,-16355,-350,-4062,-351,-7155,-4007,-11348,-16356,-16357,-11752,-719,-831,-16358,-3459,-1863, --2144,-16359,-16360], +[0,-16353,-16354,-840,-16355,-16356,-77,-238,-62,-2183,-1012,-6012,-16357,-16358,-6066,-58,-1216,-16359,-1493,-167,-645, +-16360,-16361], [1,3,11192], [0,11193,0,73,11], -[0,-2959,-2860,-5758,-8864,-5761,-523,-615,-617,-1004,-11676,-1341,-1548,-1582,-1635,-1676,-1851,-2185,-2400], +[0,-3163,-2477,-1329,-3741,-5000,-194,-114,-163,-40,-2265,-1960,-23,-434,-1977,-678,-553,-1699,-215], [1,3,11195], [0,291,135,63,11], [1,3,11197], [0,11198,135,63,11], -[0,-3947,-231,-2944,-2900], +[0,-3256,-1904,-3159,-1725], [1,3,11200], [0,11201,11202,11203,10], -[0,-2564,-6860,-6415,-16361,-16362,-16363,-2292,-16364,-16365,-16122,-16366,-16367,-16368,-16369,-16370,-5038,-16371, --5779,-5782], -[0,-1683,-16178,-3631,-2410,-3037,-16372,-3617,-16373,-8859,-16374,-12285,-16375], -[0,-16376,-16377,-14981,-16378,-16379,-3445,-16380,-16381,-16382,-11877,-16383,-16384,-16385,-16386,-16387], +[0,-263,-1839,-5114,-16362,-16363,-16364,-3114,-16365,-16366,-6564,-16367,-16368,-16369,-16370,-16371,-1317,-16372,-3440, +-2644], +[0,-800,-4058,-3219,-2,-5,-16373,-264,-16374,-2802,-16375,-6154,-16376], +[0,-16377,-16378,-6487,-16379,-16380,-46,-16381,-16382,-16383,-6092,-16384,-16385,-16386,-16387,-16388], [1,3,11205], [0,11206,11207,11208,10], -[0,-1047,-1863,-1875], -[0,-11337,-3040,-825,-1802,-12566,-2410], -[0,-2034,-5270,-5271,-12578,-7084,-12579,-3159,-12567,-2006,-3162,-3160,-3167,-3843,-9472,-9474,-3827], +[0,-339,-167,-1252], +[0,-2894,-47,-232,-4268,-2273,-2], +[0,-235,-291,-355,-2923,-764,-6197,-106,-1037,-6,-95,-102,-745,-1008,-1354,-2237,-1149], [1,3,11210], [0,11211,0,11212,8], -[0,-2460,-1641,-2683,-16324], -[0,-15279,-15625,-5398,-856,-15280,-15281], +[0,-70,-344,-3139,-6569], +[0,-1591,-2283,-1528,-42,-1592,-1593], [1,3,11214], [0,0,11215,11216,9], -[0,-16388,-15583,-21,-23,-3203,-38,-40,-16389,-16390,-3326,-3561,-528,-533,-10056,-10022,-15127,-16391,-11899,-726,-865, --932,-956,-958,-9724,-1059,-11942,-13866,-1344,-1415,-5123,-12680,-4981,-4982,-1868,-16392,-1942,-1952,-1978,-16346, --2127,-16393,-2134,-2140,-2144,-2184,-2410], -[0,-3821,-3822,-3823,-3825,-16394,-16395], +[0,-16389,-6536,-48,-11,-998,-170,-21,-16390,-16391,-207,-237,-91,-86,-5797,-2864,-6494,-16392,-3949,-284,-210,-1,-485,-9, +-2852,-412,-1894,-6401,-10,-8,-4873,-6207,-1520,-2593,-1251,-16393,-4,-435,-160,-6575,-14,-16394,-876,-229,-645,-809,-2], +[0,-2051,-2544,-2052,-2053,-16395,-16396], [1,3,11218], [0,0,11219,11220,9], -[0,-3266,-3621,-3037,-632,-664,-1654,-1753,-2127,-2344,-2410], -[0,-16396,-2998,-16397,-7049,-5176,-16398,-15100,-16055,-15213,-6899,-11853,-16399,-16400,-12543,-16401,-7198,-10724, --16402,-16403,-16404], +[0,-206,-71,-5,-938,-13,-3,-285,-14,-1126,-2], +[0,-16397,-4477,-16398,-5234,-500,-16399,-6492,-6563,-6499,-1176,-1586,-16400,-16401,-2922,-16402,-2733,-3897,-16403, +-16404,-16405], [1,3,11222], [0,0,70,11223,9], -[0,-13351,-16405], +[0,-3998,-16406], [1,3,11225], [0,11226,11227,11228,9], -[0,-16406,-16407,-16408,-16409,-16410], -[0,-683,-932,-16411,-16412,-1989,-2281,-2282,-2334], -[0,-2363,-3576,-16413,-12449,-12613,-13615,-14054,-4865], +[0,-16407,-16408,-16409,-16410,-16411], +[0,-540,-1,-16412,-16413,-376,-182,-558,-177], +[0,-418,-649,-16414,-1359,-1589,-1590,-6414,-94], [1,3,11230], [0,0,11231,11232,9], -[0,-664,-824,-1168,-1187,-9293,-1208,-1224,-1243,-1262,-16414,-1654], -[0,-4123,-11154,-11158,-1666,-1667,-4121], +[0,-13,-150,-32,-631,-5649,-790,-791,-310,-632,-16415,-3], +[0,-612,-5984,-5985,-233,-863,-1013], [1,3,11234], [0,0,0,11235,9], -[0,-3003,-7184,-5493,-11151,-16415,-8451,-3579,-8590,-3215], +[0,-4478,-3583,-654,-2256,-16416,-3719,-2043,-5540,-74], [0,25,9], [1,3,11238], [0,11239,0,7,9], -[0,-637], +[0,-1611], [1,3,11241], [0,0,11242,11243,9], -[0,-1032,-2322], -[0,-3006,-10504,-10684,-16416,-11972], +[0,-1225,-39], +[0,-4481,-5853,-2879,-16417,-6104], [1,3,11245], [0,0,11246,11247,9], -[0,-1654,-1003,-6851,-16417,-16418,-1818,-510], -[0,-6106,-1818,-16418,-6851], +[0,-3,-411,-3557,-16418,-6576,-802,-59], +[0,-1819,-802,-6576,-3557], [1,3,11249], [0,0,0,11250,9], -[0,-16419,-14311], +[0,-16419,-4024], [1,3,11252], [0,11253,0,7,9], -[0,-1980,-10802,-2550,-2520,-1691,-2424,-693,-7109,-714,-2525], +[0,-521,-5924,-98,-564,-550,-250,-940,-5239,-133,-991], [1,3,11255], [0,11256,11257,11258,9], -[0,-1967,-16420], -[0,-21,-23,-36,-40,-41,-43,-509,-756,-915,-916,-932,-16421,-7894,-964,-969,-1449,-1654,-1788,-2006,-2019,-15571,-16422], -[0,-3839,-2034,-3010,-16423,-9682,-2006], +[0,-121,-16420], +[0,-48,-11,-300,-21,-132,-174,-843,-55,-431,-947,-1,-16421,-2765,-256,-64,-78,-3,-15,-6,-36,-4047,-16422], +[0,-265,-235,-4482,-16423,-1581,-6], [1,3,11260], [0,0,11261,7,9], -[0,-23,-40,-350,-5995,-351,-535,-571,-633,-1413,-1471,-1472,-1475,-1476,-1481,-3569,-1491,-1978,-2127,-2128,-16424,-8895, --16425,-8896,-2140,-2491], +[0,-11,-21,-77,-3465,-62,-270,-777,-60,-373,-79,-860,-138,-588,-389,-2041,-676,-160,-14,-275,-16424,-2807,-16425,-2225, +-229,-742], [1,3,11263], [0,0,11264,7,9], -[0,-2125,-1650,-16426,-16427], +[0,-7,-72,-16426,-16427], [1,3,11266], [0,0,11267,11268,9], -[0,-21,-23,-40,-528,-557,-932,-934,-940,-958,-967,-1415,-1942], -[0,-5845,-8799,-651,-16428,-3215,-16429,-7304,-6241,-8574,-12248,-6582,-1044,-6656,-8800,-3590,-5845,-6473,-3240] +[0,-48,-11,-21,-91,-721,-1,-185,-12,-9,-25,-8,-4], +[0,-477,-1350,-454,-16428,-74,-16429,-837,-5086,-2217,-3958,-479,-725,-128,-1351,-208,-477,-1542,-648] ] diff --git a/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap b/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap index c722b864f2d4..b23750616d01 100644 --- a/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap +++ b/packages/flatpack-json/src/__snapshots__/storage.test.mts.snap @@ -1695,21 +1695,21 @@ exports[`dehydrate > dehydrate useStringTable [ 'pineapple', 'apple', 'grape', ' "Flatpack JSON v2", [ 128, - "pineapple", "apple", - "grape", + "pineapple", "banana", + "grape", ], [ 0, - -1, - -2, - -3, - -4, -2, + -1, -4, - -2, + -3, -1, + -3, + -1, + -2, ], ] `; @@ -1743,8 +1743,8 @@ exports[`dehydrate > dehydrate useStringTable [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p "Flatpack JSON v2", [ 128, - "[\\p{L}\\p{M}]+", "gu", + "[\\p{L}\\p{M}]+", "[\\p{Lu}\\p{M}]+", ], [ @@ -1755,13 +1755,13 @@ exports[`dehydrate > dehydrate useStringTable [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p ], [ 6, - -1, -2, + -1, ], [ 6, -3, - -2, + -1, ], ] `; @@ -2419,22 +2419,22 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' 128, "a", "b", + "r", + "apple", + "banana", + "pineapple", "cValues", "m", "mm", "n", "nn", "nnn", - "r", "rValues", "s", "ss", "values", "c", "d", - "apple", - "banana", - "pineapple", "[\\p{L}\\p{M}]+", "gu", "rr", @@ -2466,8 +2466,8 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' ], [ 0, - -14, - -15, + -17, + -18, ], [ 0, @@ -2481,9 +2481,9 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' ], [ 0, - -16, - -17, - -18, + -4, + -5, + -6, ], [ 5, @@ -2503,17 +2503,17 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' 0, -1, -2, - -3, - -4, - -5, - -6, -7, -8, -9, -10, -11, -12, + -3, -13, + -14, + -15, + -16, ], [ 0, @@ -2533,7 +2533,7 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' ], [ 0, - -9, + -3, -21, ], [ @@ -2543,9 +2543,9 @@ exports[`dehydrate > dehydrate useStringTable { a: { a: 'a', b: 'b' }, b: { a: ' ], [ 0, - -18, - -17, - -16, + -6, + -5, + -4, ], [ 1, @@ -2927,11 +2927,11 @@ exports[`dehydrate > dehydrate useStringTable { fruit: [ 'apple', 'banana', 'app "Flatpack JSON v2", [ 128, + "apple", + "banana", "fruit", "joinFruit", "sentence", - "apple", - "banana", "pineapple", "apple-banana-apple-banana-apple-pineapple", "There is a bit of fruit on the table. Some banana, apple, and pineapple.", @@ -2943,9 +2943,9 @@ exports[`dehydrate > dehydrate useStringTable { fruit: [ 'apple', 'banana', 'app ], [ 0, - -1, - -2, -3, + -4, + -5, ], [ 0, @@ -2955,11 +2955,11 @@ exports[`dehydrate > dehydrate useStringTable { fruit: [ 'apple', 'banana', 'app ], [ 0, - -4, - -5, - -4, - -5, - -4, + -1, + -2, + -1, + -2, + -1, -6, ], ] @@ -3013,11 +3013,11 @@ exports[`dehydrate > dehydrate useStringTable { values: [ '', 'apple', 'banana', "Flatpack JSON v2", [ 128, - "set", - "values", "apple", "banana", "pineapple", + "set", + "values", "", ], [ @@ -3027,8 +3027,8 @@ exports[`dehydrate > dehydrate useStringTable { values: [ '', 'apple', 'banana', ], [ 0, - -1, - -2, + -4, + -5, ], [ 0, @@ -3041,16 +3041,16 @@ exports[`dehydrate > dehydrate useStringTable { values: [ '', 'apple', 'banana', ], [ 0, + -1, + -2, -3, - -4, - -5, ], [ 0, -6, + -1, + -2, -3, - -4, - -5, ], ] `; diff --git a/packages/flatpack-json/src/optimizeFlatpacked.mts b/packages/flatpack-json/src/optimizeFlatpacked.mts index 71430acd92fb..56280b82bd32 100644 --- a/packages/flatpack-json/src/optimizeFlatpacked.mts +++ b/packages/flatpack-json/src/optimizeFlatpacked.mts @@ -1,5 +1,6 @@ import assert from 'node:assert'; +import { StringTableBuilder } from './stringTable.mjs'; import type { ArrayBasedElements, Flatpacked, FlattenedElement, StringTableElement } from './types.mjs'; import { ElementType, supportedHeaders } from './types.mjs'; @@ -33,10 +34,13 @@ export function optimizeFlatpacked(data: Flatpacked): Flatpacked { elementRefs.map((refElement) => [refElement.origIndex, refElement]), ); + const stringTableBuilder = new StringTableBuilder(stringTable); + for (const refElement of elementRefs) { const indexes = getRefIndexes(refElement.element); for (const index of indexes) { if (index < 0) { + stringTableBuilder.addRef(-index); continue; } if (!index) { @@ -65,7 +69,14 @@ export function optimizeFlatpacked(data: Flatpacked): Flatpacked { indexMap.set(refElement.origIndex, idx); } - const stringTableElements = stringTable ? [stringTable] : []; + for (const [oldStrIndex, newStrIndex] of stringTableBuilder.sortEntriesByRefCount()) { + if (!oldStrIndex || !newStrIndex) { + continue; + } + indexMap.set(-oldStrIndex, -newStrIndex); + } + + const stringTableElements = stringTable ? [stringTableBuilder.build()] : []; const result: Flatpacked = [header, ...stringTableElements]; @@ -79,8 +90,8 @@ export function optimizeFlatpacked(data: Flatpacked): Flatpacked { function patchIndexes(elem: FlattenedElement, indexMap: Map): FlattenedElement { function mapIndex(index: number): number { - if (index < 0) return index; const v = indexMap.get(index); + if (v === undefined && index < 0) return index; assert(v !== undefined, `Invalid index: ${index}`); return v; } diff --git a/packages/flatpack-json/src/stringTable.mts b/packages/flatpack-json/src/stringTable.mts index fe3ac6c8f518..3e10d81fffcf 100644 --- a/packages/flatpack-json/src/stringTable.mts +++ b/packages/flatpack-json/src/stringTable.mts @@ -1,3 +1,5 @@ +import assert from 'node:assert'; + import { ElementType, type StringTableElement, type StringTableEntry } from './types.mjs'; export class StringTable { @@ -50,11 +52,15 @@ interface BuilderEntry { refCount: number; } +const tokenRegex = /\w+/g; + export class StringTableBuilder { splitStrings: boolean = false; private stringToIndex = new Map(); private entries: BuilderEntry[] = [{ value: '', entry: '', refCount: 0 }]; private availableIndexes: number[] = []; + private tokenRegex = tokenRegex; + private splitIntoTokens = false; constructor(stringTableElement?: StringTableElement) { if (!stringTableElement) return; @@ -64,12 +70,13 @@ export class StringTableBuilder { if (!idx) continue; const entry = stringTableElement[idx] as StringTableEntry; this.entries[idx] = { value, entry, refCount: 0 }; - if (this.stringToIndex.has(value)) continue; if (Array.isArray(entry) && !entry.length) { this.availableIndexes.push(idx); continue; } - this.stringToIndex.set(value, idx); + if (!this.stringToIndex.has(value)) { + this.stringToIndex.set(value, idx); + } } } @@ -80,9 +87,7 @@ export class StringTableBuilder { entry.refCount++; return found; } - if (!str) { - return this.#append(''); - } + str ||= ''; return this.#append(str); } @@ -143,12 +148,37 @@ export class StringTableBuilder { for (let i = 1; i < this.entries.length; i++) { const entry = this.entries[i]; if (entry.refCount > 0) continue; - this.stringToIndex.delete(entry.value); + if (this.stringToIndex.get(entry.value) === i) { + this.stringToIndex.delete(entry.value); + } this.entries[i] = { value: '', entry: [], refCount: 0 }; this.availableIndexes.push(i); } } + /** + * Sorts the entries in the string table by reference count, with the most referenced strings first. + * This can help reduce the size of the string table when serialized, as more frequently used strings + * will have smaller indexes. + * @returns a map of old indexes to new indexes after sorting. The index 0 is always mapped to itself. + */ + sortEntriesByRefCount(): Map { + const mapEntryToOldIndex = new Map(this.entries.map((entry, index) => [entry, index])); + + const entry0 = this.entries[0]; + const sorted = this.entries.sort((a, b) => + a === entry0 ? -1 : b === entry0 ? 1 : b.refCount - a.refCount || getOldIndex(a) - getOldIndex(b), + ); + + return new Map(sorted.map((entry, index) => [getOldIndex(entry), index])); + + function getOldIndex(entry: BuilderEntry): number { + const oldIndex = mapEntryToOldIndex.get(entry); + assert(oldIndex !== undefined, 'Entry not found in map'); + return oldIndex; + } + } + build(): StringTableElement { return [ElementType.StringTable, ...this.entries.slice(1).map((e) => e.entry)]; } diff --git a/packages/flatpack-json/src/stringTable.test.mts b/packages/flatpack-json/src/stringTable.test.mts index 4faba46c09b2..f6a15a446d08 100644 --- a/packages/flatpack-json/src/stringTable.test.mts +++ b/packages/flatpack-json/src/stringTable.test.mts @@ -81,6 +81,47 @@ describe('StringTable', () => { const newStringTableElement = builder.build(); expect(newStringTableElement).toEqual([128, 'apple', 'banana', [1, 4, 2], '-', []]); }); + + test('StringTableBuilder sorted by refCount', () => { + const stringTableElement: StringTableElement = [ + 128, + 'apple', + 'banana', + [1, 4, 2], + '-', + 'orange', + 'grape', + 'melon', + ]; + const builder = new StringTableBuilder(stringTableElement); + expect(builder.add('apple')).toBe(1); + expect(builder.add('banana')).toBe(2); + expect(builder.add('apple-banana')).toBe(3); + expect(builder.add('apple-banana')).toBe(3); + expect(builder.add('apple-banana')).toBe(3); + expect(builder.add('orange')).toBe(5); + expect(builder.add('apple')).toBe(1); + expect(builder.add('-')).toBe(4); + expect(builder.add('mango')).toBe(8); + expect(builder.add('mango')).toBe(8); + + expect(builder.build()).toEqual([...stringTableElement, 'mango']); + const map = builder.sortEntriesByRefCount(); + expect(builder.build()).toEqual([128, [1, 4, 2], 'apple', 'mango', 'banana', '-', 'orange', 'grape', 'melon']); + expect(map).toEqual( + new Map([ + [0, 0], + [1, 2], // apple + [2, 4], // banana + [3, 1], // apple-banana + [4, 5], // - + [5, 6], // orange + [6, 7], // grape + [7, 8], // melon + [8, 3], // mango + ]), + ); + }); }); describe('StringTable', () => { From 5d5c7633fc983880b9d3b19883ffd07c3aab0c78 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Wed, 11 Mar 2026 19:45:30 +0100 Subject: [PATCH 17/26] Try splitting into tokens/ --- .../fixtures/.npm-packages-info-v1a.json | 36899 ++++++++++++++++ .../fixtures/.npm-packages-info-v2.json | 5814 +-- packages/flatpack-json/src/stringTable.mts | 104 +- .../flatpack-json/src/stringTable.test.mts | 56 +- packages/flatpack-json/src/stringify.mts | 2 +- 5 files changed, 38408 insertions(+), 4467 deletions(-) create mode 100644 packages/flatpack-json/fixtures/.npm-packages-info-v1a.json diff --git a/packages/flatpack-json/fixtures/.npm-packages-info-v1a.json b/packages/flatpack-json/fixtures/.npm-packages-info-v1a.json new file mode 100644 index 000000000000..72b05e9c8654 --- /dev/null +++ b/packages/flatpack-json/fixtures/.npm-packages-info-v1a.json @@ -0,0 +1,36899 @@ +[ +"Flatpack JSON v1", +[5,2,2342], +[0,3,4,7,10,13,16,19,21,24,26,28,30,32,34,37,39,40,43,46,47,48,51,53,56,58,61,62,63,64,65,66,68,71,73,76,78,81,83,85,87,90,92,94,97,99,101,104,105,106,107,110,111,114,116,119,122,124,126,129,133,135,137,140,143,146,148,150,153,155,157,159,162,164,167,169,171,174,175,177,180,182,185,187,189,191,192,195,197,198,201,203,204,205,208,213,215,218,220,221,222,225,228,231,233,235,238,240,243,245,247,249,251,253,258,260,262,265,267,269,271,272,275,277,280,282,285,288,290,293,296,298,301,303,305,308,310,313,315,319,322,324,327,329,331,334,338,340,342,345,346,347,350,351,354,355,358,359,360,361,362,365,368,370,371,374,377,379,381,384,387,392,394,399,401,404,406,409,411,413,415,419,422,425,427,430,432,434,438,439,442,443,444,445,448,449,452,456,457,460,462,465,468,469,470,471,478,481,483,486,488,490,493,495,497,502,505,507,513,516,518,525,528,533,536,538,539,540,541,542,545,546,547,548,549,550,551,554,555,559,560,561,564,565,566,567,572,573,576,577,578,581,583,585,587,589,593,595,596,598,601,602,603,606,608,609,613,615,616,617,618,621,622,624,626,627,628,631,633,634,635,638,641,643,646,649,652,654,656,659,660,663,665,666,669,672,675,677,679,682,683,684,687,688,691,692,693,697,700,702,703,706,709,711,712,713,716,721,724,727,732,735,738,740,742,745,749,751,753,758,763,767,770,773,776,782,785,790,793,795,798,802,803,804,805,806,807,808,809,810,811,816,817,818,821,822,825,826,827,828,829,831,834,835,838,840,841,842,843,846,849,850,851,852,853,857,860,864,870,872,876,881,885,891,896,898,905,910,913,915,917,920,925,929,933,935,938,944,948,951,954,955,958,961,962,963,966,968,971,972,974,975,978,980,983,985,987,989,991,993,996,997,1001,1003,1004,1005,1006,1009,1011,1012,1013,1014,1015,1018,1021,1023,1025,1026,1027,1028,1030,1031,1032,1033,1034,1043,1045,1050,1054,1056,1059,1061,1063,1066,1073,1075,1077,1078,1079,1080,1081,1082,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1096,1097,1098,1100,1102,1103,1104,1107,1109,1110,1112,1113,1114,1115,1116,1117,1118,1120,1121,1122,1125,1127,1129,1130,1131,1132,1135,1136,1137,1138,1139,1140,1143,1144,1145,1147,1148,1149,1151,1154,1156,1157,1158,1159,1162,1165,1166,1167,1168,1169,1170,1171,1172,1173,1175,1178,1180,1184,1189,1191,1193,1195,1198,1201,1203,1205,1208,1210,1212,1216,1217,1220,1225,1230,1233,1235,1240,1244,1245,1248,1251,1253,1255,1257,1261,1264,1267,1268,1270,1272,1275,1277,1279,1280,1282,1284,1287,1288,1290,1291,1292,1293,1294,1295,1298,1301,1304,1305,1306,1308,1309,1310,1311,1314,1315,1316,1317,1318,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1335,1336,1339,1342,1344,1346,1348,1350,1352,1354,1356,1358,1361,1362,1363,1364,1365,1366,1367,1369,1370,1371,1372,1373,1376,1377,1378,1381,1385,1386,1387,1389,1391,1393,1394,1395,1396,1397,1398,1400,1401,1402,1405,1406,1407,1408,1409,1410,1411,1413,1414,1415,1416,1417,1420,1421,1423,1424,1425,1426,1427,1428,1429,1431,1434,1436,1437,1438,1440,1443,1446,1447,1448,1449,1450,1455,1456,1457,1458,1459,1461,1462,1465,1468,1470,200,1471,1474,1477,1479,1480,1481,1482,1483,1486,1488,1489,1492,1494,1495,1496,1497,1498,1499,1500,1501,1503,1505,1506,1509,1473,1511,1512,1513,1516,1519,1522,1525,1527,1529,1532,1533,1536,1537,1540,1541,1543,1544,1546,1549,1551,1553,1556,1559,1560,1562,1565,1566,1567,1570,1573,977,1575,1578,1581,1582,1584,1587,1588,1590,1591,1593,1594,1595,1596,1597,1598,1599,1600,1603,1604,1605,1606,1608,1609,1610,1613,1615,1616,1618,1620,1621,1622,1623,1624,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1645,1647,1648,1649,1650,1651,1652,1653,1654,1655,1658,1660,1661,1662,1663,1664,1665,1668,1672,1673,1674,1675,1676,1677,1679,1680,1681,1682,1686,1688,1690,1693,1696,1699,1700,1701,1702,1703,1704,1705,1706,1707,1710,1711,1687,1713,1715,1718,1719,1720,1723,1724,1726,1727,1728,1729,1730,1731,1733,1734,1735,1736,1737,1738,1741,1742,1745,1748,467,1750,1751,1754,1756,1757,1758,1759,1763,1764,1766,1767,1768,1770,1774,1777,1779,1782,1784,1785,1786,1787,1788,1789,1791,1792,1793,1794,1795,1796,1797,1798,1801,1804,1806,1809,1812,1816,1817,1819,1820,1821,1822,1824,1825,1827,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1842,1843,1845,1847,1850,1853,1854,1855,1856,1859,1860,1863,1865,1866,668,1869,1874,1875,1177,1879,1881,1883,1886,1889,1891,1893,1895,1898,1900,1903,1905,1907,1909,1912,1915,1916,1920,1922,1924,1926,1930,1933,1935,1937,1938,1939,1942,1945,1947,1948,1951,1953,1954,1955,1958,1959,1961,1964,1966,1969,1970,1972,1976,1978,1982,1985,1988,1992,1994,1996,1998,1999,2000,2003,2004,2007,984,2008,2010,2011,2012,2015,2017,2018,2019,2020,2021,2022,2024,2025,2026,2028,2031,2033,2037,2039,2040,2042,2045,2046,2048,2051,2053,2054,2057,2058,2059,2060,2061,2064,2067,2069,2071,2073,2075,2077,2078,2079,2080,2081,2082,2083,2084,2086,2087,2088,2089,2092,2095,2096,2098,2099,2102,2105,2107,2108,2109,2111,2113,2114,2116,2117,2119,2122,2123,2126,2128,2129,2130,2131,2132,2133,2134,2135,2137,2139,2141,2144,2145,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2159,2160,2161,2162,2163,2164,2165,2167,2170,2172,2175,2176,2177,2178,2179,2182,2185,2188,2191,2192,2193,2194,2195,2197,2070,2200,2202,2203,2205,2206,2207,2209,2211,2212,2213,2214,2215,2216,2217,2220,2222,2225,2226,2227,2228,2231,2234,2236,2239,2240,2243,2247,2250,2253,2256,2258,2260,2263,2266,2268,2271,2273,2274,2277,2279,2281,2283,2285,2290,2291,2293,2296,2298,2300,2302,2305,2307,2308,2311,2314,2316,2318,2320,2321,2322,2323,2327,2330,2332,2334,2336,2338,2341,2344,2346,2348,2351,2352,2354,2357,2359,2361,2363,2366,2367,2368,2371,2372,2373,2375,2377,2379,2381,2383,2384,2387,2390,2393,2396,2398,2400,2401,2404,2405,2406,2409,2411,2413,2416,2419,2421,2423,2425,2427,2430,2433,2435,2436,2438,2441,2444,2447,2449,2450,2453,2455,2459,2461,2463,2464,2467,2469,2472,2476,2479,2482,2486,2489,2490,2493,2494,2496,2498,2500,2503,2504,2506,2507,2508,2510,2512,2515,2517,2519,2520,2521,2524,2526,2529,2530,2533,2536,2539,2541,2543,2544,2547,2549,2550,2552,2553,2554,2555,2036,2556,2559,2562,2563,2564,2567,2569,2570,2571,2572,2575,2577,2579,2581,2583,2584,2586,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2600,2601,2602,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2616,2620,2623,2626,2628,2629,2633,2635,2637,2639,2641,2644,2646,2650,2651,2652,2654,27,2657,2659,2661,2664,2665,2668,2670,2671,2674,2675,2676,2677,2678,2679,2681,2683,2685,2686,2687,2689,2692,2267,2694,2695,2696,2697,2700,2702,2704,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2718,2719,2720,2722,2723,2726,1161,2727,2728,2730,2731,2732,2733,2735,2738,2739,2740,2741,2742,2743,2744,2745,2747,2750,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2437,2763,2764,2765,2766,2768,1192,2771,2774,2777,2780,2782,2784,2787,2792,2794,2796,2797,2798,2802,2805,2806,2807,2808,2810,2811,2812,2813,2814,2816,2817,2820,2821,2822,2823,2824,2292,1776,2826,2829,2832,2834,2835,2272,2839,2841,2843,2845,2848,2851,2854,2856,2858,2859,2860,2861,2863,2864,2865,2866,2867,2870,2297,2871,2876,2878,2881,2886,2889,2891,2895,2897,2898,2900,2904,2906,2908,2910,2912,2915,2918,2921,2923,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2941,2943,2945,2946,2948,2949,620,2950,2954,2957,2960,2961,2962,2963,2964,2967,2968,695,2969,2970,2972,2973,2975,2976,2979,2981,2982,2983,2984,2986,2990,2991,2992,2993,2996,2997,3000,3003,3006,3008,3010,3012,3014,3019,1209,3021,3023,3025,3028,3029,3032,3034,3037,3039,3041,3044,3047,3049,3051,3052,3054,3057,3060,3062,3064,3066,3067,3070,3072,3073,3074,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3095,3096,3097,3098,3099,3102,3103,1783,3105,3107,3112,3114,3116,3117,3120,3123,3124,3125,3127,3129,3130,3132,3133,3134,3135,3136,3137,3140,3141,3142,3143,3144,3145,3148,3150,3152,3153,3156,3157,1698,3159,3160,3161,3162,3164,3165,3167,3170,3171,3173,3174,3177,3178,3181,3183,3185,3186,3187,3188,3189,3190,3191,2899,3198,3200,3202,3203,3206,3210,3211,3213,3215,3216,3219,3220,3222,3223,3226,3229,3230,3232,3233,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3249,3253,3256,3257,3258,3259,3260,3261,1952,3262,3263,2378,3264,3266,3268,3270,3271,3273,3274,3275,3276,3277,3278,3282,3283,3284,3285,3287,3288,3289,3290,3291,3292,3294,3295,3296,3297,3299,3300,3303,3305,3308,3309,3310,3313,3316,3318,640,3322,3324,3327,3330,3332,3334,3337,3339,3341,3342,3345,3347,3349,3350,3353,3355,3357,3359,3361,3363,2276,3365,3366,3367,3368,3369,3371,3373,3376,3377,3378,3379,3381,3386,3390,3393,3397,3400,3401,3404,3406,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3427,3429,3431,3433,3434,3435,3438,3439,3440,3441,3442,3443,3444,3445,3446,3451,3453,3455,3456,3458,3459,3460,3463,3466,3467,3468,3469,888,3470,3471,3472,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3488,3490,3492,1644,3493,3494,3495,3498,3499,3500,3501,1433,3403,3502,3505,3507,3509,3510,3511,3512,3513,3518,3519,3520,3521,3524,3525,3526,3527,3530,3531,3532,3533,3534,3535,3536,3537,3539,3540,3541,2072,3544,3545,3547,3548,3549,3551,3552,3553,3554,3555,3558,3559,3560,3561,3564,3566,3570,3572,3575,3577,3579,3584,3587,3591,3598,3600,3603,3605,3606,3611,3613,3616,3618,3622,3625,3628,3633,3635,3636,3638,3640,3643,3647,3649,3652,3653,3657,3660,3662,3664,3668,3672,3674,3676,3678,3681,3683,3686,3688,3691,3692,3693,3696,3697,3698,3699,1894,3703,3706,3708,3710,3711,3714,3716,3717,3718,3720,3722,3724,3725,3726,3727,3729,3730,3732,1862,3734,3736,3739,3741,3742,3744,3746,3747,3750,2658,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3765,3767,3768,3770,3771,2907,3773,3774,3775,3776,3777,3779,3780,3781,3783,3784,3786,1997,3787,3788,3789,3790,89,3793,3799,3802,3803,3804,3807,3810,3813,3816,3817,3820,3822,3824,3826,3829,3830,3833,3836,3837,3839,3843,3846,3847,3849,3850,3853,3856,3857,3861,3864,3867,3869,3872,3876,3878,3882,3884,3885,3887,3889,3891,3893,3895,3897,3899,3904,3906,3909,3911,3913,3914,3916,3917,3919,3921,3923,3925,3927,3928,3930,3931,3932,3935,3938,1552,3939,3941,3875,3943,3945,3946,3948,3950,3951,3954,3957,3958,3963,3968,3970,3971,3973,3975,3978,3980,3981,3984,3985,3988,3989,3991,3992,3995,3998,3999,4001,4002,4005,705,4008,4010,4012,4015,4018,4019,4022,4023,814,4025,4028,4029,4031,4033,4035,4036,1153,4037,4038,4039,4041,4042,4045,4048,4052,4055,4057,4058,4060,4064,4066,4067,4069,4071,4073,4075,4076,4077,4079,4081,4083,4084,4085,4086,4089,4092,4093,4094,4098,4100,4103,4104,4105,4106,4108,4110,2278,4111,4112,4113,4116,4119,4121,4124,4125,4126,4127,4130,4131,4134,1899,4135,710,4136,4137,4140,4143,4145,4146,4148,4150,4151,4153,4156,4159,4160,4163,4164,4165,4167,4168,4169,4170,4171,4172,4173,4174,4177,4181,4183,4187,4188,4189,4192,4193,4196,4199,4200,4201,4204,4205,4206,4207,4208,4209,4212,3974,4213,4214,4215,4216,4217,4218,4220,4224,4227,4228,4230,4232,4233,4234,4235,4236,4237,4238,4239,4242,4243,4245,4246,4247,4248,4249,4252,4255,4257,4258,4261,4264,4266,4267,4270,4272,4275,4277,4278,4280,4282,4283,1871,4288,4290,4292,4294,4296,4300,4302,4303,4305,4307,4309,4311,4315,4317,4319,4320,4323,4326,4328,4330,4333,4334,4335,4337,4338,4339,4341,4342,4343,4345,4347,4351,4352,3709,4355,4359,4360,4361,4362,4363,4365,4367,4369,4370,4371,4372,4373,4375,4376,4377,4380,4382,4383,4384,4387,4388,4389,4390,4391,4393,4394,4397,4398,4399,1241,4400,4401,4404,4072,4409,4411,1187,4413,4415,4419,4421,4423,4425,4426,4427,4430,4431,4433,4434,4435,4436,4437,4438,4441,4443,4445,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,100,4459,4461,4462,4463,4464,4465,4468,4469,4470,4473,4474,4475,4477,4478,4480,4481,4482,4483,4484,4487,4490,4492,4493,4494,4495,4496,4497,4498,4499,4500,4505,4507,1000,4508,4510,4512,4514,4515,4517,4520,4521,91,4523,4526,4531,4532,4533,4535,4537,4538,4539,4540,4541,4542,4543,4545,4547,4548,4549,4554,4555,4558,4559,4560,4562,4563,1002,4566,4027,4567,4568,4569,4572,4576,4577,614,4578,3348,4579,4582,4585,4588,1155,4589,4590,4591,4592,4593,4594,4595,4596,4597,4599,4600,4603,4606,4608,1983,4612,4614,1984,4615,4616,4617,4618,4621,4624,188,4629,4630,4632,4633,4634,4638,4639,4640,4645,4646,4647,4648,4649,2282,4650,4651,4652,4653,4656,4659,4662,4664,4667,4669,2924,4676,4677,4679,4681,4684,4686,4689,4693,4695,4696,4699,4702,4703,4704,4705,4706,4707,4708,4709,4711,4715,4716,4717,4720,4723,4724,4726,4727,4728,4729,4730,4731,3354,4733,4734,4735,4736,4737,4738,1906,4739,4740,4741,4742,1695,4744,4745,4746,4747,4748,4749,4751,4752,4753,4754,4756,4757,4758,4759,4760,4761,4762,4763,4767,4768,4769,4770,4771,4772,4774,4775,4776,4777,4782,4783,4786,4788,4791,639,11976,662,3405,5010,6781,23276,6974,15279,15484,17429,15887,26713,18240,11804,24566,475,24782,25169,25219,25266,25307,25432,25443,25395,25490,25766,25775,25798,25809,25833,25882,25931,29350,29385,29389,29407,29414,29394,29435,29448,29460,20562,29477,31705,29524,29537,29546,29560,33408,29564,29610,31821,29626,3286,30757,29683,29729,29754,5065,29805,9011,29821,24737,29850,29889,29942,29955,28519,29993,9355,8199,680,19571,27921,29998,30145,30165,26706,30182,30196,30218,9041,30233,30252,30257,30281,30312,906,30405,30458,30463,30469,30477,30488,30607,30612,30624,30731,907,8119,30798,30829,940,26636,20202,29755,14673,9274,9293,9273,30926,30957,30972,33145,24723,30979,14684,31064,11518,31086,12016,15951,31198,31231,31244,31262,31272,31282,31289,31290,31332,31347,31314,31353,31375,21287,21288,31343,31386,31421,31430,31465,31473,31485,31501,31509,31521,14904,31180,31528,14959,18699,18717,14336,31544,26854,34576,34578,31644,33204,11421,23288,31677,31713,11890,16858,31728,31749,31760,31782,31793,31805,31816,31822,31827,31835,17964,21594,31838,8160,31930,29013,33653,31961,17988,12421,23352,23250,23292,31752,23253,32029,16837,32144,32166,24114,32182,13896,31182,32201,31734,32238,26180,32265,27263,32294,32311,16870,32319,17167,16842,11071,32347,32397,32415,32443,32456,21174,32468,32493,32499,32506,32531,32225,32546,32564,32577,12042,32634,32747,32760,32766,32778,11501,32790,19469,9252,31184,31186,9731,32816,999,32884,32892,9272,32914,32926,32934,32939,32940,32962,5517,1083,34683,33053,8392,10572,11960,24509,30299,1300,30527,34676,1302,30535,26450,26482,26483,26489,26495,32977,8703,1418,26414,1419,28763,2115,7606,1441,13412,26273,28880,28909,1442,28458,28479,28493,1445,32733,1466,1475,29032,26257,1476,28595,28885,1491,1502,28323,1510,5290,26241,1526,29197,28873,4090,1530,9378,26158,3845,8654,1531,1761,26082,1535,26699,29865,1555,2245,8605,28450,28899,28901,1558,5993,28354,29834,1607,1667,23535,1670,1790,26644,7585,20304,28327,28400,26421,1678,2221,10973,1689,28865,8550,22378,8540,1691,26032,29417,1692,26591,29304,1694,28069,31474,31486,31507,31524,1802,28906,1813,29853,1814,8604,1841,27959,1857,28466,1918,32834,32863,32890,30286,31680,31400,1979,31833,33277,13387,1980,21374,2001,2035,5666,5564,2049,17110,5287,2362,32818,25810,2050,2065,25762,29012,29031,2066,25802,34043,28092,29161,2094,34032,28872,2097,34161,33479,2106,2140,2142,36878,36879,2186,28117,2219,29019,6372,2238,7995,9107,12097,13676,17199,26746,33929,18012,20093,34468,20362,21610,23755,23769,24602,19617,29009], +"@alifd/next", +"@angular-devkit/core", +[3,4,16], +"schematics", +[2,5,6], +[3,4,8], +"/animations", +[2,8,9], +[3,10,9], +"cdk", +[2,11,12], +[3,13,10], +"ommon", +[2,14,15], +[3,16,12], +"piler", +[2,17,18], +"-cli", +[2,19,20], +[3,16,11], +"re", +[2,22,23], +"forms", +[2,11,25], +"http", +[2,11,27], +"material", +[2,11,29], +"platform-browser", +[2,11,31], +"-dynamic", +[2,32,33], +[3,32,18], +"server", +[2,35,36], +"router", +[2,11,38], +"@ant-design/react-native", +[3,40,12], +"web3-common", +[2,41,42], +[3,43,17], +"icons", +[2,44,45], +"@auth/sveltekit", +"@babel/cli", +[3,48,8], +"ode-frame", +[2,49,50], +[3,51,9], +[2,52,23], +[3,48,7], +"helper-plugin-utils", +[2,54,55], +"parser", +[2,54,57], +[3,58,8], +"lugin-proposal-class-properties", +[2,59,60], +"@11ty/eleventy", +"@adobe/css-tools", +"@api-components/api-method-documentation", +"@apollo/client", +"@asyncapi/generator-react-sdk", +"eslint-parser", +[2,54,67], +[3,61,23], +"decorators", +[2,69,70], +"export-default-from", +[2,69,72], +[3,73,30], +"namespace-from", +[2,74,75], +"object-rest-spread", +[2,69,77], +[3,61,14], +"syntax-dynamic-import", +[2,79,80], +"transform-runtime", +[2,79,82], +"olyfill", +[2,59,84], +"reset-env", +[2,59,86], +[3,87,14], +"react", +[2,88,89], +"typescript", +[2,88,91], +"register", +[2,54,93], +[3,94,8], +"untime", +[2,95,96], +"-corejs2", +[2,97,98], +"traverse", +[2,54,100], +[3,101,8], +"ypes", +[2,102,103], +"@biz-dev-ops/md-docs", +"@bwcr_/winston-loki", +"@changesets/cli", +"@cha", +"tscope/chat-ui-kit-react", +[2,108,109], +"@ckeditor/ckeditor5-adapter-ckfinder", +[3,111,21], +"ngular", +[2,112,113], +"utoformat", +[2,112,115], +[3,111,20], +"basic-styles", +[2,117,118], +[3,119,21], +"lock-quote", +[2,120,121], +"uild-balloon", +[2,120,123], +"-block", +[2,124,125], +[3,124,26], +"classic", +[2,127,128], +"deco", +"upled-document", +[2,130,131], +[2,127,132], +"inline", +[2,127,134], +"ckbox", +[2,117,136], +[3,137,22], +"finder", +[2,138,139], +[3,137,21], +"lipboard", +[2,141,142], +[3,143,22], +"oud-services", +[2,144,145], +"ore", +[2,141,147], +"easy-image", +[2,117,149], +[3,150,21], +"ngine", +[2,151,152], +"ssentials", +[2,151,154], +"heading", +[2,117,156], +"image", +[2,117,158], +[3,159,21], +"ndent", +[2,160,161], +"link", +[2,117,163], +[3,164,22], +"st", +[2,165,166], +"media-embed", +[2,117,168], +"paragraph", +[2,117,170], +[3,171,22], +"ste-from-office", +[2,172,173], +[2,117,89], +"table", +[2,117,176], +[3,177,21], +"yping", +[2,178,179], +"ui", +[2,117,181], +[3,182,21], +"pload", +[2,183,184], +"tils", +[2,183,186], +"vue", +[2,117,188], +"widget", +[2,117,190], +"@commitlint/cli", +"@com", +"podoc/compodoc", +[2,193,194], +"unica/core", +[2,193,196], +"@contenthook/browser", +[3,198,13], +"cli", +[2,199,200], +"node", +[2,199,202], +"@coreui/coreui", +"@csstools/css-parser-algorithms", +[3,205,14], +"tokenizer", +[2,206,207], +[3,205,10], +"media-", +"query-list-parser", +[2,210,211], +[2,209,212], +"postcss-is-pseudo-class", +[2,209,214], +[3,215,18], +"progressive-custom-properties", +[2,216,217], +"selector-specificity", +[2,209,219], +"@cucumber/cucumber", +"@deven-org/documentation-skeleton", +"@dev", +"tea2026/aspernatur-ea-non-porro", +[2,223,224], +[3,225,12], +"consectetur-ab-unde-quisquam", +[2,226,227], +[3,228,13], +"upiditate-dolorem-excepturi-impedit", +[2,229,230], +"distinctio-soluta-illo-eaque", +[2,226,232], +"eum-ullam-est-distinctio", +[2,226,234], +[3,235,13], +"xplicabo-alias-architecto-sed", +[2,236,237], +"improved-journey", +[2,226,239], +[3,240,13], +"nventore-facilis-corporis-cum", +[2,241,242], +"psa-omnis-in-molestiae", +[2,241,244], +"literate-computing-machine", +[2,226,246], +"maxime-sequi-est-rem", +[2,226,248], +"necessitatibus-dolorem-esse-atque", +[2,226,250], +"odit-enim-reiciendis-pariatur", +[2,226,252], +[3,253,17], +"maxime-", +"porro-asperiores", +[2,255,256], +[2,254,257], +"possimus-ipsa-sint-consequuntur", +[2,226,259], +"qui-quos-laborum-amet", +[2,226,261], +[3,262,15], +"a-ducimus-placeat-minima", +[2,263,264], +"dem-voluptate-repudiandae-necessitatibus", +[2,263,266], +"rerum-quaerat-porro-animi", +[2,226,268], +"ubiquitous-octo-memory", +[2,226,270], +"@diotoborg/adipisci-placeat-iure", +[3,272,12], +"met-architecto-est", +[2,273,274], +"t-totam-perspiciatis", +[2,273,276], +[3,272,11], +"commodi-voluptatum-libero", +[2,278,279], +"delectus-necessitatibus-voluptatum", +[2,278,281], +[3,282,13], +"serunt-illo-tempora", +[2,283,284], +[3,282,12], +"icta-recusandae-veniam", +[2,286,287], +"olor-earum-quia", +[2,286,289], +[3,290,17], +"tempora-fuga", +[2,291,292], +[3,290,16], +"es-praesentium-assumenda", +[2,294,295], +"eligendi-est-unde", +[2,278,297], +[3,298,12], +"sse-accusantium-ratione", +[2,299,300], +"illo-amet-architecto", +[2,278,302], +"laudantium-itaque-esse", +[2,278,304], +[3,305,12], +"ibero-asperiores-at", +[2,306,307], +"neque-inventore-corporis", +[2,278,309], +[3,310,12], +"ostrum-eveniet-officiis", +[2,311,312], +"odio-dolores-officia", +[2,278,314], +"porro-", +"modi-accusamus", +[2,316,317], +[2,278,318], +[3,319,12], +"sychic-bassoon", +[2,320,321], +"quasi-repellat-odit", +[2,278,323], +[3,324,13], +"i-ullam-ipsum", +[2,325,326], +"o-dolorem-ducimus", +[2,325,328], +"ratione-error-odio", +[2,278,330], +[3,331,12], +"epellat-blanditiis-quis", +[2,332,333], +[3,292,8], +"voluptas-distinctio", +[2,335,336], +[2,278,337], +"ullam-dignissimos-repudiandae", +[2,278,339], +"velit-reiciendis-velit", +[2,278,341], +[3,342,13], +"rbose-robot", +[2,343,344], +"@diplodoc/transform", +"@discordjs/rest", +"@dis", +"qada/workspace", +[2,348,349], +"@doc-tools/docs", +[3,351,11], +[3,82,9], +[2,352,353], +"@dramaorg/esse-praesentium-eligendi", +[3,355,10], +"quae-dolore-nostrum", +[2,356,357], +"@eas-framework/server", +"@eightshift/frontend-libs", +"@electron/docs-parser", +"@emotion/babel-plugin", +[3,362,9], +"core", +[2,363,364], +[3,365,10], +"ss", +[2,366,367], +"styled", +[2,363,369], +"@erboladaiorg/ad-exercitationem-ducimus", +[3,371,15], +"speriores-earum-quaerat", +[2,372,373], +[3,374,25], +"fuga-sint", +[2,375,376], +"nam-adipisci", +[2,375,378], +"utem-dolores-ipsam", +[2,372,380], +[3,371,14], +"cupiditate-consectetur-porro", +[2,382,383], +[3,384,25], +"pariatur-optio", +[2,385,386], +[3,232,11], +"quis", +[2,335,389], +[2,388,390], +[2,382,391], +"error-atque-ea", +[2,382,393], +[3,394,15], +"sse-", +"ipsa-numquam", +[2,396,397], +[2,395,398], +"x-hic-molestias", +[2,395,400], +[3,401,16], +"plicabo-eius-adipisci", +[2,402,403], +"molestiae-voluptatibus-perferendis", +[2,382,405], +[3,406,22], +"s-nulla-dolor", +[2,407,408], +"nisi-culpa-cum", +[2,382,410], +"officia-illum-aperiam", +[2,382,412], +"perspiciatis-magni-ut", +[2,382,414], +"quae-", +"in-veniam", +[2,416,417], +[2,382,418], +[3,419,18], +"rat-mollitia-adipisci", +[2,420,421], +[3,419,16], +"ibusdam-itaque-tempora", +[2,423,424], +"sint-deleniti-dolorem", +[2,382,426], +[3,427,16], +"t-nesciunt-amet", +[2,428,429], +"tenetur-architecto-dolore", +[2,382,431], +"ut-dignissimos-laborum", +[2,382,433], +"velit-", +"fugit-harum", +[2,435,436], +[2,382,437], +"@eslint-community/eslint-utils", +"@eslint", +"/js", +[2,440,441], +"@fakeyanss/redoc", +"@floating-ui/react-dom", +"@fontsource/inter", +[3,445,12], +"roboto", +[2,446,447], +"@fortawesome/fontawesome-svg-core", +[3,449,14], +"ree-solid-svg-icons", +[2,450,451], +[3,449,13], +"-fontawesome", +[2,89,454], +[2,453,455], +"@grandlinex/core", +[3,457,12], +"e-kernel", +[2,458,459], +"kernel", +[2,458,461], +"@gra", +"phql-markdown/core", +[2,463,464], +[3,465,18], +"docusaurus", +[2,466,467], +"@hajtech/webpack-config", +"@hapi/hapi", +"@hishprorg/aliquid-ad-vero", +[3,471,12], +"utem-", +"sint-", +"@adonisjs/core", +"sint-quas", +[2,473,476], +[2,472,477], +[3,471,11], +"cum-rem-consequuntur", +[2,479,480], +"earum-sint-veritatis", +[2,479,482], +[3,483,12], +"ius-vero-dicta", +[2,484,485], +"st-dicta-quis", +[2,484,487], +"incidunt-quibusdam-tempore", +[2,479,489], +[3,490,12], +"taque-esse-accusamus", +[2,491,492], +"ure-optio-nihil", +[2,491,494], +"magni-amet-id", +[2,479,496], +[3,497,17], +"nisi-", +"aperiam", +[2,499,500], +[2,498,501], +[3,497,13], +"xime-voluptates-enim", +[2,503,504], +"nihil-ad-ratione", +[2,479,506], +[3,414,13], +[3,330,8], +"unde", +[2,509,510], +[2,508,511], +[2,479,512], +"-perferendis-culpa", +[2,389,514], +[2,479,515], +"reprehenderit-excepturi-sed", +[2,479,517], +"nam-", +"conse", +"quuntur", +[2,520,521], +[2,519,522], +[2,474,523], +[2,479,524], +[3,525,12], +"unt-officia-eligendi", +[2,526,527], +[3,528,16], +"volupta", +"tem-nobis", +[2,530,531], +[2,529,532], +"-vitae-reprehenderit", +[2,510,534], +[2,479,535], +"wafflejs", +[2,479,537], +"@homer0/prettier-plugin-jsdoc", +"@hookform/resolvers", +"@iamtraction/google-translate", +"@idux/cdk", +"@idux/c", +"omponents", +[2,543,544], +"@inquirer/core", +"@ionic/core", +"@isaacs/cliui", +"@istanbuljs/nyc-config-typescript", +"@itwin/itwinui-react", +"@jest/core", +"@jest/", +"types", +[2,552,553], +"@jsonforms/core", +[3,555,11], +"-renderers", +[2,29,557], +[2,556,558], +[2,556,89], +"@juigorg/nisi-molestiae-ut", +[3,561,9], +"sit-nam-neque", +[2,562,563], +"@jupyterlab/application", +"@kobedevi/sassdoc", +"@kollorg/dicta-itaque-nemo", +[3,567,9], +"nihil-", +"veniam-deserunt", +[2,569,570], +[2,568,571], +"@libphamton/chatfanpage", +[3,573,12], +"fb-group", +[2,574,575], +"@listr2/prompt-adapter-inquirer", +"@mantine/core", +[3,578,9], +"dates", +[2,579,580], +"hooks", +[2,579,582], +"modals", +[2,579,584], +"notifications", +[2,579,586], +"prism", +[2,579,588], +"style", +"s", +"styles", +[2,579,592], +"utils", +[2,579,594], +"@material-ui/core", +[3,596,13], +[2,597,45], +"@mat", +"hematikoi/jsonapi", +[2,599,600], +"@mdx-js/react", +"@microsoft/api-extractor", +[3,603,11], +"tsdoc", +[2,604,605], +"-config", +[2,606,607], +"@middy/core", +"@middy/", +"-json-body-parser", +[2,27,611], +[2,610,612], +"util", +[2,610,614], +"@ministryofjustice/frontend", +"@mswjs/interceptors", +"@mui/icons-material", +"@mui/", +"lab", +"@mui/lab", +[2,619,29], +"system", +[2,619,623], +"x-date-pickers", +[2,619,625], +"@neato/guider", +"@ng-doc/core", +[3,628,8], +"ui-kit", +[2,629,630], +[3,631,9], +[2,632,186], +"@nomicfoundation/hardhat-chai-matchers", +"@npmcli/arborist", +[3,635,8], +"map-workspaces", +[2,636,637], +"@augment-vir/common", +"node-gyp", +[2,636,640], +"run-script", +[2,636,642], +"@npmc", +"orp/marky-markdown", +[2,644,645], +"@npm", +"tuanmap/ex-vel-expedita-impedit", +[2,647,648], +[3,649,12], +"psychic-guide", +[2,650,651], +"recusandae-recusandae-nam-et", +[2,650,653], +"sed-quo-nemo-rerum", +[2,650,655], +"esse-velit-magnam", +[2,435,657], +[2,650,658], +"@nrwl/devkit", +"@nrwl/", +[2,3388,3399], +"@nrwl/tao", +"workspace", +[2,661,664], +"@nx/devkit", +"@nx/", +"esbuild", +[2,667,668], +"@nx/es", +"lint", +[2,670,671], +"@nx/e", +"xpress", +[2,673,674], +"js", +"@nx/js", +"nest", +"@nx/nest", +"nextra", +"ode", +"@nx/node", +[2,667,664], +"@oclif/command", +[3,684,9], +"nfig", +[2,685,686], +[2,685,23], +"@oclif/", +"plugin-help", +[2,689,690], +"@octokit/rest", +"@opentiny/vue", +"-render", +"less", +[2,694,695], +[2,693,696], +[3,697,14], +"theme", +[2,698,699], +"-mobile", +[2,700,701], +"@otterhttp/cookie", +[3,703,11], +"request", +[2,704,705], +[3,706,13], +"sponse", +[2,707,708], +"send", +[2,704,710], +"@pact-foundation/pact", +"@patrtorg/a-ad-expedita", +[3,713,12], +"ut-amet", +[2,714,715], +[3,713,11], +[3,373,10], +"vel-accusantium", +[2,718,719], +[2,717,720], +[3,721,15], +"natur-dolorum-ducimus", +[2,722,723], +"et-hic", +[2,473,725], +[2,717,726], +[3,713,10], +[3,227,12], +"culpa-non", +[2,729,730], +[2,728,731], +[3,732,22], +"repudiandae-consequuntur", +[2,733,734], +[3,732,15], +"quatur-voluptatum-officiis", +[2,736,737], +"ducimus-magni-quibusdam", +[2,728,739], +"enim-magni-hic", +[2,728,741], +[3,742,11], +"st-corrupti-deleniti", +[2,743,744], +"veni", +"et-tempore-maiores", +[2,746,747], +[2,743,748], +"illum-sapiente-quos", +[2,728,750], +"laborum-doloribus-voluptate", +[2,728,752], +[3,753,11], +"ibero-", +"doloribus-omnis", +[2,755,756], +[2,754,757], +[3,758,17], +[3,336,9], +"sequi", +[2,760,761], +[2,759,762], +"magn", +"am-aut-adipisci", +[2,764,765], +[2,728,766], +[3,767,12], +"iores-quidem-quo", +[2,768,769], +[3,767,11], +"olestias-molestias-ut", +[2,771,772], +"eius-unde", +[2,519,774], +[2,728,775], +[3,386,9], +"dele", +"niti-quaerat", +[2,778,779], +[2,777,780], +[2,728,781], +[3,782,11], +"orro-labore-eos", +[2,783,784], +"earum-", +"eius", +[2,786,787], +[2,416,788], +[2,728,789], +[3,790,12], +"os-quasi-ipsa", +[2,791,792], +"sapiente-eos-magnam", +[2,728,794], +[3,795,20], +"xercitationem-sit", +[2,796,797], +[3,431,9], +"nimi-reprehenderit", +[2,799,800], +[2,728,801], +"@perseid/store", +"@phosphor/widgets", +"@phun-ky/speccer", +"@polymer/polymer", +"@qooxdoo/framework", +"@quasar/extras", +"@readyplayerme/visage", +"@reduxjs/toolkit", +"@rollup/plugin-commonjs", +[3,811,15], +"node-", +"resolve", +[2,813,814], +[2,812,815], +"@sanity/tsdoc", +"@scalar/api-reference", +[3,818,8], +"fastify-api-reference", +[2,819,820], +"@serenity-js/protractor", +[3,822,13], +"webdriverio", +[2,823,824], +"@sinonjs/fake-timers", +"@storybook/addon-docs", +"@subwallet/react-ui", +"@supernovaio/sdk", +"-exporters", +[2,829,830], +[3,829,14], +"upernova-sdk", +[2,832,833], +"@sveltejs/eslint-config", +[3,835,10], +"kit", +[2,836,837], +"vite-plugin-svelte", +[2,836,839], +"@svgr/webpack", +"@swc/core", +"@swenkerorg/maiores-voluptatibus-nemo", +[3,843,13], +"odi-dolorum-provident", +[2,844,845], +[3,843,12], +"nulla-voluptates-voluptates", +[2,847,848], +"@swisspost/design-system-styles", +"@symbiotejs/symbiote", +"@synion/md-docs", +"@taktikorg/aut-distinctio-repellat", +[3,853,11], +"quo-quos", +[2,729,855], +[2,854,856], +[3,857,13], +"rporis-nihil-odit", +[2,858,859], +[3,780,11], +"i-dolorem", +[2,861,862], +[2,854,863], +[3,864,12], +"olor-", +"quibusdam", +[2,509,867], +[2,866,868], +[2,865,869], +"harum-reprehenderit-perferendis", +[2,854,871], +"illum-", +"accusamus-possimus", +[2,873,874], +[2,854,875], +[3,876,12], +"psa-", +"totam-aperiam", +[2,878,879], +[2,877,880], +"ste-", +"ex-tempore", +[2,882,883], +[2,877,884], +"taque-", +"nam-e", +"os", +"nam-eos", +[2,886,889], +[2,877,890], +[3,891,18], +"tempor", +"e-exercitationem", +[2,893,894], +[2,892,895], +"maiores-dolores-aut", +[2,854,897], +[3,898,12], +[3,772,9], +"fuga-", +[3,259,8], +[2,901,902], +[2,900,903], +[2,899,904], +"@bugsnag/react-native", +"@enact/sandstone", +"sse-animi", +[2,887,908], +[2,854,909], +[3,910,12], +"ecessitatibus-repudiandae-officia", +[2,911,912], +"isi-reprehenderit-amet", +[2,911,914], +"placeat-voluptates-dolorum", +[2,854,916], +[3,917,12], +"raesentium-dolorum-quis", +[2,918,919], +[3,920,23], +"neque-i", +"psam", +[2,922,923], +[2,921,924], +"quo-", +"reiciendis-quibusdam", +[2,926,927], +[2,854,928], +[3,653,12], +"atione-veniam", +[2,930,931], +[2,854,932], +"similique-natus-officia", +[2,854,934], +[3,935,12], +"uscipit-modi-ratione", +[2,936,937], +[3,895,8], +"@antora/logger", +"in", +"veniam-in", +[2,939,942], +[2,854,943], +"unde-", +"animi-omnis", +[2,945,946], +[2,854,947], +"nobis-blanditiis", +[2,435,949], +[2,854,950], +[3,951,12], +"oluptatem-pariatur-tenetur", +[2,952,953], +"@tanem/svg-injector", +"@tan", +"stack/react-query", +[2,956,957], +[3,958,10], +"svelte-query", +[2,959,960], +"@teamhanko/hanko-frontend-sdk", +"@testing-library/cypress", +[3,963,17], +"dom", +[2,964,965], +"jest-dom", +[2,964,967], +[3,968,22], +"native", +[2,969,970], +[2,964,89], +"user-event", +[2,964,973], +"@tinyhttp/app", +[3,975,10], +"cookie", +[2,976,977], +"-signature", +[2,978,979], +[3,978,12], +"rs", +[2,981,982], +"etag", +[2,976,984], +"forwarded", +[2,976,986], +"proxy-addr", +[2,976,988], +"req", +[2,976,990], +[3,991,12], +[2,992,591], +[3,991,11], +"outer", +[2,994,995], +[2,976,710], +"type", +[2,29611,30768], +"type-is", +[2,976,1000], +"url", +[2,976,1002], +"@tsparticles/engine", +"@twurple/ebs-helper", +"@types/estree", +"@types", +"cript-eslint/eslint-plugin", +[2,1007,1008], +[3,1009,19], +[2,1010,57], +[2,1010,594], +"@ucloud-fe/react-components", +"@udecode/plate-core", +"@uiw/react-button", +[3,1015,11], +"icon", +[2,1016,1017], +[3,1018,12], +"nput", +[2,1019,1020], +"overlay-trigger", +[2,1016,1022], +"@uiw/", +"@uiw/utils", +"@unleash/proxy", +"@uploadcare/file-uploader", +"@vitejs/plugin-legacy", +[3,1028,15], +[2,1029,89], +"@vue/eslint-config-typescript", +"@wesleytodd/openapi", +"@wuxh/dumi", +"@zitterorg/adipisci-quae-eius", +[3,1034,12], +"sper", +"natur-", +[3,386,10], +"ccaecati", +[2,1038,1039], +[2,1037,1040], +[2,1036,1041], +[2,1035,1042], +"t-esse-odit", +[2,1035,1044], +[3,1034,11], +"cum-", +"ipsum-beatae", +[2,1047,1048], +[2,1046,1049], +"dolor", +"emque-ut-omnis", +[2,1051,1052], +[2,1046,1053], +"est-sunt-quos", +[2,1046,1055], +[3,1056,12], +"um-veritatis-placeat", +[2,1057,1058], +"fluffy-waddle", +[2,1046,1060], +"glowing-barnacle", +[2,1046,1062], +"perferendis-consectetur", +[2,873,1064], +[2,1046,1065], +[3,1066,12], +"taque-n", +"isi-", +"veritatis", +[2,1069,1070], +[2,1068,1071], +[2,1067,1072], +"probable-octo", +[2,1046,1074], +"upgraded-fishstick", +[2,1046,1076], +"@zkportal/aleo-oracle-sdk", +"abort-controller", +"accepts", +"acl", +"acorn", +"arethetypeswrong", +"acorn-walk", +"action-cli", +"adm-zip", +"after", +"agenda", +"aid-guard1", +"airtap", +"ajv", +"ajv-formats", +"although-line-wall-corn", +"amqp", +"lib", +"amqplib", +"analsorhost-simple-bs", +"angular", +"-animate", +[2,1098,1099], +"angular-", +[2,1101,200], +[2,1101,29], +"ansi-colors", +"ansi-", +"escapes", +[2,1105,1106], +"regex", +"ansi-regex", +[2,1105,592], +"ansi", +"ansis", +"ant-design-vue", +"antd", +"antfu", +"anyway-south-boy-pilot", +"api-console", +"apidoc", +"-markdown", +[2,1118,1119], +"apn", +"apollo-cache-inmemory", +"apollo-c", +"lient", +[2,1123,1124], +"apollo-", +[2,1126,163], +"-http", +[2,1127,1128], +"app-root-path", +"appium-android-driver", +"apple-transportation-web3-locate", +"appl", +"icationinsights", +[2,1133,1134], +"appsync-client-node", +"archiver", +"arg", +"argparse", +"arrangement-tell-arrange", +"arra", +"y.prototype.flatmap", +[2,1141,1142], +"arrify", +"assert", +"-plus", +"assert-plus", +"assume", +"async", +"-listen", +[2,1149,1150], +"async-", +"retry", +"async-retry", +"validator", +[2,1152,1155], +"atob", +"aud", +"auto-changelog", +"auto-", +"install", +[2,1160,1161], +"auto", +"prefixer", +[2,1163,1164], +"ava", +"awesome-typescript-loader", +"aws-sdk", +"axe-core", +"axios", +"azure-storage", +"babel", +"babel-cli", +"babel-c", +"babel-core", +"babel-", +"eslint", +[2,1176,1177], +"generator", +[2,1176,1179], +[3,55,7], +"fixtures", +[2,1181,1182], +[2,1176,1183], +[3,1184,13], +"plugin-", +"test-runner", +[2,1186,1187], +[2,1185,1188], +"vue-jsx-merge-props", +[2,1185,1190], +"jest", +"babel-jest", +"loader", +[2,1176,1194], +"add-module-exports", +[2,1186,1196], +[2,1176,1197], +[3,1198,13], +"dynamic-import-node", +[2,1199,1200], +"external-helpers", +[2,1199,1202], +"import", +[2,1199,1204], +[3,1205,14], +"stanbul", +[2,1206,1207], +"lodash", +[2,1199,1209], +"module-resolver", +[2,1199,1211], +"name", +"d-asset-import", +[2,1213,1214], +[2,1199,1215], +[2,1199,80], +[3,1217,20], +"jsx", +[2,1218,1219], +[3,82,10], +"to-generator", +[2,1152,1222], +[2,1221,1223], +[2,1199,1224], +[3,1225,23], +"class", +"-properties", +[2,1227,1228], +[2,1226,1229], +"-legacy", +[2,70,1231], +[2,1226,1232], +"es2015-block-scoping", +[2,1226,1234], +[3,1235,30], +"module", +"s-commonjs", +[2,1237,1238], +[2,1236,1239], +"temp", +"late-literals", +[2,1241,1242], +[2,1236,1243], +[2,1226,77], +"react-", +"react-jsx", +[2,1226,1247], +[3,1248,29], +"remove-prop-types", +[2,1249,1250], +[3,1248,25], +[2,1252,1179], +[3,1248,24], +[2,1254,96], +"babel-p", +[2,1256,84], +"reset-", +"airbnb", +[2,1258,1259], +[2,1256,1260], +[3,1261,13], +"env", +[2,1262,1263], +[3,1264,14], +"s2015", +[2,1265,1266], +[2,1262,89], +"-app", +[2,1268,1269], +"stage-0", +[2,1262,1271], +[3,1272,19], +"1", +[2,1273,1274], +"2", +[2,1273,1276], +"3", +[2,1273,1278], +[2,1176,93], +"babel-r", +[2,1281,96], +"template", +[2,1176,1283], +"babel-t", +"raverse", +[2,1285,1286], +[2,1285,103], +"ify", +"babelify", +"babylon", +"backbone", +"baqend", +"bark-needs-visit4", +"base-64", +"base-", +"individual-comfortable-crop", +[2,1296,1297], +"base", +"@expressots/core", +"base64-js", +[2,30536,26449,2026], +"auth", +"basic-auth", +"batuta", +"bcrypt", +"-nodejs", +[2,1306,1307], +"bcryptjs", +"bearcat", +"beautify-benchmark", +"beaut", +"y-foot-compass5", +[2,1312,1313], +"beefy", +"believed-usually-greater-passage", +"benchmark", +"best-lips-shoulder", +"best-", +"valley2", +[2,1319,1320], +"between-cry-additional", +"beyond", +"bfj", +"bignumber.js", +"bindings", +"bip39", +"bizcharts", +"bl", +"blanket", +"blessed", +"-con", +"trib", +"-contrib", +[2,1331,1334], +"blockchain-am5", +[3,1336,11], +"baby", +[2,1337,1338], +[3,1339,13], +"ck1", +[2,1340,1341], +"closely", +[2,1337,1343], +"directly", +[2,1337,1345], +"egg", +[2,1337,1347], +"happily", +[2,1337,1349], +"language", +[2,1337,1351], +"own8", +[2,1337,1353], +"record", +[2,1337,1355], +"scientist", +[2,1337,1357], +"block", +"ed", +"blocked", +"bluebird", +"bn.js", +"body-parser", +"bookshelf", +"boom", +"bootstrap", +"-sass", +[2,1367,1368], +"bower", +"boxen", +"brain", +"branch-body-web3-feel", +"branch-", +"camera-web3-organization", +[2,1374,1375], +"brfs", +"broccoli-funnel", +[3,1378,9], +"merge-trees", +[2,1379,1380], +"test-", +"helper", +"test-helper", +[2,1379,1384], +"brought-tried-whether8", +"browser-sync", +"browser", +"browserify", +"-shim", +[2,1389,1390], +"slist", +[2,1388,1392], +"bs58", +"bson", +"btoa", +"buble", +"buffer", +"-equal", +[2,1398,1399], +"bufferutil", +"built-who-entire", +"built", +"in-modules", +[2,1403,1404], +"bulma", +"bump-cli", +"bundle-collapser", +"bunyan", +"busboy", +"bytebuffer", +"byte", +"bytes", +"c8", +"cac", +"cache-manager", +"call-bind", +[2,32731,158], +[2,30999,28513], +"camelcase", +"caniuse", +"-lite", +[2,1421,1422], +"canvas", +"careful-faster-dirty-matter", +"case-sensitive-paths-webpack-plugin", +"casperjs", +"caught-brain-service0", +"chai", +"-as-promised", +[2,1429,1430], +"chai-", +"passport-strategy", +[2,1432,1433], +"subset", +"chai-subset", +"chalk", +"chance", +"-able-necessary-bell", +[2,1438,1439], +"@amaui/icons-material-rounded-react", +[2,26909,26910], +"change-case", +"change", +[2,27056,28675], +"changelogen", +"chart.js", +"cheerio", +"chicken-fell-spread", +"child_process", +"child", +"-pro", +"cess-promise", +[2,1452,1453], +[2,1451,1454], +"choerodon-ui", +"chokidar", +"ci-info", +"ckeditor5", +"names", +"classnames", +"clean-css", +"clean-", +"webpack-plugin", +[2,1463,1464], +[2,29755,25720], +"r", +"clear", +"-module", +[2,1468,1469], +"cli-boxes", +"cli-", +"color", +"cli-color", +"@immobiliarelabs/backstage-plugin-gitlab-backend", +[2,819,28594], +"cli-cursor", +"spinner", +"cli-spinner", +[2,1479,591], +"cli-table", +"cli-table2", +"cli-table3", +"cli-t", +"runcate", +[2,1484,1485], +"ux", +"cli-ux", +"clipanion", +"clip", +"@busy-hour/blaze", +"clipboard", +"y", +"clipboardy", +"cliui", +"clone", +"clsx", +"clui", +"co", +"co-prompt", +"code", +[2,1491,3172], +"codecov", +"mirror", +"codemirror", +"coffee-script", +"coffee", +"script", +[2,1507,1508], +"attw", +"colorette", +"colors", +"columnify", +"comm", +"and-exists", +[2,1514,1515], +"command-", +"line-args", +[2,1517,1518], +[3,1519,13], +"usage", +[2,1520,1521], +"command", +"er", +"commander", +"@casl/ability", +"commitizen", +"commit", +"commitlint", +"@types/xast", +"tsdown", +"common-tags", +"component-emitter", +"comp", +[2,15679,26697], +"compression", +"concat-stream", +"conc", +"urrently", +[2,1538,1539], +"config", +"store", +"configstore", +"connect", +"-flash", +[2,1544,1545], +"connect-", +"history-api-fallback", +[2,1547,1548], +"mongo", +[2,1547,1550], +"redis", +[2,1547,1552], +"cons", +"globrex", +"consola", +"consol", +[3,1014,14], +"consolidate", +"content-disposition", +"content-", +[2,1561,998], +"content", +"hook", +"contenthook", +"conventional-changelog", +[2,1566,20], +[3,1567,24], +"onventionalcommits", +[2,1568,1569], +"conve", +"rt-source-map", +[2,1571,1572], +"-parser", +[2,977,1574], +"cookie-", +"session", +[2,1576,1577], +"cookie-s", +"ignature", +[2,1579,1580], +"copy-to-clipboard", +"copy-", +[2,1583,1464], +"copy", +"files", +"copyfiles", +"corcojs-qrcode", +"-logo", +[2,1588,1589], +"cordova", +"-js", +"core-js", +"cors", +"cosmiconfig", +"coveralls", +"cpy-cli", +"crawler", +"crc", +"create-hash", +"create-", +"react-class", +[2,1601,1602], +"critical", +"cron", +"croner", +"emoji-js", +"cronnor", +"cropperjs", +"cross-env", +"cross-", +"fetch", +"cross-fetch", +"spawn", +"cross-spawn", +"crypto", +"-browserify", +[2,1616,1617], +"crypto-", +"crypto-js", +"cson-parser", +"cspell", +"css", +"css-declaration-sorter", +"css-", +"functions-list", +[2,1625,1626], +"css-loader", +"minimizer-webpack-plugin", +[2,1625,1629], +"select", +"css-select", +"tree", +"css-tree", +"cssdb", +"cssesc", +"cssnano", +"cssstyle", +"csstype", +"csurf", +"csv", +"csv-generate", +"csv-", +"parse", +"csv-parse", +"stringify", +[2,1643,1646], +"csvtojson", +"cucumber", +"cuid", +"cypress", +"cz-conventional-changelog", +"d3", +"d3-array", +"d3-scale", +"d3-s", +"election", +[2,1656,1657], +"hape", +"d3-shape", +"dable-effect", +"daisyui", +"dance-you-thou", +"dargs", +"datafire", +"date", +"mercurius", +"date-fns", +"form", +"unbundle", +"format", +"dateformat", +"dayjs", +"deasync", +"debounce", +"debug", +"decamelize", +"@pinia/testing", +"decompress", +"dedent", +"dedupe", +"deep-assign", +"deep-", +"ist-ability3", +[2,1554,1684], +[2,1683,1685], +"diff", +"deep-diff", +"remeda", +"deep-eql", +"@nuxt/ui", +"input-otp", +"deep-equal", +"@assistant-ui/react", +"xtend", +"deep-extend", +"deep", +"merge", +"deepmerge", +"del", +"del-cli", +"delay", +"depcheck", +"depd", +"dependency-check", +"depth-clay-tax7", +"detect-indent", +"detect-", +"port", +"detect-port", +"did-enter-lay", +"2html", +"diff2html", +"erence-mile-pocket5", +[2,1687,1714], +"direct", +"ed-graph-typed", +[2,1716,1717], +"dirty-chai", +"discord-backend-manager", +"discord", +".js", +"discord.js", +"dist", +"ance-its-clear-rate", +[2,1724,1725], +"dmd", +"dmd-grunt-jsdoc2md", +"dnd-multi-backend", +"dnode", +"doc-detective", +"-core", +[2,1731,1732], +"docco", +"docgen", +"dockerode", +"docpad", +"docschema", +"docs", +"ify-tabs", +[2,1739,1740], +"doctoc", +"docu", +"mentation", +[2,1743,1744], +"document", +"db", +"documentdb", +"-lunr-search", +[2,467,1749], +"dom-helpers", +"dom-", +"serializer", +[2,1752,1753], +"to-image-more", +[2,1752,1755], +"dompurify", +"dot", +"dotenv", +"-exp", +[2,26024,1764,1524], +"-expand", +[2,1759,1762], +"download", +"-git-repo", +[2,1764,1765], +"doxdox", +[2,1767,20], +"doxdox-c", +[2,1769,147], +"doxdox-", +"-dox", +[2,57,1772], +[2,1771,1773], +[3,1774,14], +"jsdoc", +[2,1775,1776], +"renderer-bootstrap", +[2,1771,1778], +[3,1779,16], +"json", +[2,1780,1781], +"markdown", +[2,1780,1783], +"draft-js", +"dropzone", +"dtslint", +"dubnium", +"dumi", +[2,31436,31494], +"dumi-cm", +"duplexer", +"dw-neit-antd", +"each", +"echarts", +"eclint", +"ejs", +"elasticsearch", +"elect", +"ricity-death-web3-story", +[2,1799,1800], +[2,28004,28078], +"on", +"electron", +"-builder", +[2,1804,1805], +[3,1806,9], +"packager", +[2,1807,1808], +[3,1809,10], +"rebuilt", +[2,1810,1811], +[3,32493,21], +[2,28080,31811], +"rebuilder", +[2,1807,1815], +"element-resize-detector", +"element-", +"element-ui", +"eleventy", +"elliptic", +"email-templates", +"email", +"emailjs", +"ember-cli", +"-babel", +[2,1825,1826], +[3,1827,10], +"htmlbars", +[2,1828,1829], +"emmet", +"emotion", +"encodeurl", +"end-of-stream", +"enhanced-resolve", +"enquirer", +"ent", +"enumtype", +"envify", +"envi", +"@lobehub/chat", +"envinfo", +"enzyme", +"-adapter-react-16", +[2,1843,1844], +[3,1845,15], +[2,1846,594], +"enzyme-", +"shallow-equal", +[2,1848,1849], +"error", +"handler", +[2,1851,1852], +"es-check", +"es-value-fixtures", +"es5-ext", +"@upstash/context7-mcp", +"shim", +"es5-shim", +"es6-error", +"es6-", +"promise", +"es6-promise", +[3,1863,10], +[2,1864,1289], +"es6-shim", +"escape", +"-html", +"escape-html", +"escape-", +"string", +"-regexp", +[2,1871,1872], +[2,1870,1873], +"escodegen", +[3,67,7], +"-airbnb", +[2,1541,1877], +[2,1876,1878], +"-base", +[2,1879,1880], +[3,1881,21], +[2,1882,91], +[3,1879,14], +"google", +[2,1884,1885], +[3,1886,15], +"ulp", +[2,1887,1888], +"oclif", +[2,1884,1890], +"-typescript", +[2,1891,1892], +"prettier", +[2,1884,1894], +"app", +"react-app", +[2,1884,1897], +"semistandard", +[2,1884,1899], +[3,1900,15], +"tandard", +[2,1901,1902], +"unjs", +[2,1884,1904], +"xo", +[2,1884,1906], +"-lass", +[2,1907,1908], +"doc-", +[2,1910,1179], +[2,1876,1911], +"-resolver-typescript", +[2,1204,1913], +[2,1876,1914], +[2,1876,1194], +[3,67,8], +[2,32825,32833], +"lugin-ava", +[2,1917,1919], +[3,1920,14], +[2,1921,1172], +"compat", +[2,1921,1923], +"es5", +[2,1921,1925], +[3,1926,16], +"-comments", +[2,671,1928], +[2,1927,1929], +[3,1930,21], +"plugin", +[2,1931,1932], +"flowtype", +[2,1921,1934], +"html", +[2,1921,1936], +[2,1921,1204], +[2,1921,1192], +[3,1939,15], +"sdoc", +[2,1940,1941], +[3,1942,16], +"onc", +[2,1943,1944], +"x-a11y", +[2,1943,1946], +[2,1921,1783], +[3,1948,15], +"ocha", +[2,1949,1950], +"n", +[2,1921,1952], +[2,1953,681], +[2,1921,1894], +[3,1955,16], +"omise", +[2,1956,1957], +[2,1921,89], +"-hooks", +[2,1959,1960], +[3,1959,16], +"gexp", +[2,1962,1963], +"security", +[2,1921,1965], +[3,1966,15], +"onarjs", +[2,1967,1968], +[2,1967,1902], +"velte", +[2,1967,1971], +"test", +"ing-library", +[2,1973,1974], +[2,1921,1975], +[3,1976,15], +[2,1977,1941], +[2,26374,26377], +[2,30307,5592], +"unicorn", +[2,1921,1981], +"vite", +"vitest", +[2,1921,1984], +[3,1985,15], +"ue", +[2,1986,1987], +"remo", +"te-tester", +[2,1989,1990], +[2,1876,1991], +"scope", +[2,1876,1993], +"visitor-keys", +[2,1876,1995], +"rc", +"eslintrc", +"esm", +"espree", +"@architect/asap", +"ima", +"esprima", +"estraverse", +"estr", +"ee-walker", +[2,2005,2006], +"ethereumjs-tx", +[3,2008,11], +[2,2009,614], +"evalmd", +"event-stream", +"event", +"emitter2", +[2,2013,2014], +[3,2015,12], +[2,2016,1278], +"events", +"excellent-difficult-good", +"execa", +"exit", +"expect", +"-type", +"expect-type", +"expect.js", +"express", +"-adexe", +[2,2026,2027], +[3,2028,9], +"utodoc", +[2,2029,2030], +"express-", +[2,2032,1179], +"handle", +"canvaskit-wasm", +"handlebars", +[2,2032,2036], +"jwt", +"express-jwt", +[2,2032,1577], +"tools", +[2,2032,2041], +[3,2042,9], +"yped-rpc", +[2,2043,2044], +[2,2032,1155], +"zod-api", +[2,2032,2047], +"@crxjs/vite-plugin", +[2,32904,37123], +"extend", +"-shallow", +[2,2051,2052], +"extract-text-webpack-plugin", +"extract-", +"zip", +"extract-zip", +"facing-cook", +"fair-tower-web3-store", +"faker", +"fancy-log", +"fast", +"-check", +"fast-check", +[2,32904,13392], +"@antora/cli", +"fast-csv", +"fast-", +[2,2068,1693], +"glob", +"fast-glob", +"plist", +"fast-plist", +"xml-parser", +[2,2068,2074], +"click", +"fastclick", +"fastify", +"father", +"faucet", +"fbjs", +"fe-pilot", +"feature-rising-small7", +"femo", +"-mock", +"fetch-mock", +"fibers", +"figlet", +"figures", +"file", +"-loader", +"file-loader", +"file-", +[2,29611,7436,26391], +"file-saver", +"file-type", +"planck", +"filesize", +"finalhandler", +"find", +"-cache-dir", +[2,2100,2101], +"find-", +"up", +"find-up", +"syncpack", +"findup-sync", +"firan-logging", +"firebase", +"-admin", +[2,2109,2110], +[3,2111,9], +[2,2112,2041], +"fixpack", +[2,2120,1145], +"fixturify", +"flat", +"pak-bundler", +[2,2117,2118], +[3,639,13], +[2,2125,23], +"flatpickr", +"flightplan", +"flow", +[3,639,15], +"flow-bin", +"@date-vir/duration", +"flowbite", +"fluent-ffmpeg", +"flux", +"follow-redirects", +"font-awesome", +"for-each", +"forever", +"fork-ts-checker-webpack-plugin", +"-alt", +[2,2135,2136], +"-data", +"form-data", +"nolyfill", +"formidable", +[2,13402,31197], +"k", +"formik", +"fresh", +"-dangerous", +[2,2145,2146], +"friendly-errors-webpack-plugin", +"front-matter", +"fs", +"fs-extra", +"fs-jetpack", +"fs-promise", +"fsevents", +"fstream", +"ftp", +[3,1626,10], +"have-names", +[2,2157,2158], +"fur-race-web3-pale", +"fuse.js", +"futen", +"fuzzy", +"gaze", +"gc-signals", +"-angular", +[2,1179,2166], +[3,2167,10], +"gulp-angular", +[2,2168,2169], +"nitro", +[2,2168,2171], +"gener", +"ic-pool", +[2,2173,2174], +"gensequence", +"gentle-party-other", +"geolib", +"get-package-type", +[2,2181,668], +[3,15376,16], +"get-port", +"get-", +"stdin", +"get-stdin", +"@c15t/backend", +"ream", +"get-stream", +"execute-in-browser", +"tsconfig", +[2,2183,2190], +"getmac", +"gh-pages", +"ghooks", +"github", +"-buttons", +[2,2195,2196], +[2,11941,2201], +"-parent", +"glob-parent", +"smart-text-reporter", +"global", +"globals", +"by", +"globby", +"gm", +"gmll", +"-spreadsheet", +[2,1885,2208], +"apis", +"googleapis", +"got", +"government-letter-web3-till", +"govuk-frontend", +"graceful-fs", +"gradually-current-chief", +"graph-these", +"graph", +[2,25849,25854], +"graphql", +"leaflet-gesture-handling", +"graphql-tag", +[3,2222,9], +"ools", +[2,2223,2224], +"gray-matter", +"grpc", +"grunt", +"-templates", +[2,2166,2229], +[2,2228,2230], +"grunt-a", +"uto-release", +[2,2232,2233], +"grunt-", +[2,2235,1389], +"grunt-b", +"animejs", +"grunt-bump", +"grunt-cli", +"grunt-c", +"oncurrent", +[2,2241,2242], +[3,2243,9], +[2,26107,26938], +"trib-clean", +[2,2244,2246], +[3,2247,15], +"ompass", +[2,2248,2249], +[3,2250,16], +"ncat", +[2,2251,2252], +[3,2253,17], +"nect", +[2,2254,2255], +"py", +[2,2251,2257], +"sslint", +[2,2248,2259], +[3,2260,17], +"min", +[2,2261,2262], +[3,2247,14], +"htmlmin", +[2,2264,2265], +"imagemin", +[2,2264,2267], +[3,2268,15], +"nternal", +[2,2269,2270], +"jshint", +[2,2264,2272], +[2,2264,695], +"unit", +"nodeunit", +[2,2264,2276], +"sass", +[2,2264,2278], +"uglify", +[2,2264,2280], +"watch", +[2,2264,2282], +"ventional-changelog", +[2,2244,2284], +[3,2285,19], +"github-", +"releaser", +[2,2287,2288], +[2,2286,2289], +[2,2235,1177], +"jscs", +"grunt-jscs", +"grunt-js", +"doc", +"grunt-jsdoc", +"karma", +"grunt-karma", +"mocha-test", +[2,2235,2299], +"newer", +"grunt-newer", +"grunt-n", +"otify", +[2,2303,2304], +"pm", +"grunt-npm", +"grunt-sass", +"grunt-sa", +"ucelabs", +[2,2309,2310], +"grunt-s", +"augment", +"grunt-shell", +"imple-mocha", +[2,2312,2315], +"pritesmith", +[2,2312,2317], +"usemin", +[2,2235,2319], +"gts", +"guarapi", +"gulp", +[3,2229,9], +"cache", +[2,2324,2325], +[2,2169,2326], +"gulp-a", +"tom-electron", +[2,2328,2329], +"utoprefixer", +[2,2328,2331], +"wspublish", +[2,2328,2333], +"zure-storage", +[2,2328,2335], +"gulp-", +"gulp-babel", +"gulp-b", +"vir", +"gulp-bom", +[0,2343,2418,2470,34546,2532,2561,2561,2647,2497,2690,2497,2705,34546,2497,2789,2804,2773,2884,2830,3075,3169,3214,3252,3293,3328,3457,3538,3596,3654,3740,3796,3859,3892,3920,3934,3982,4016,4091,4115,4197,4240,4253,4269,4308,4316,4344,4379,4424,4466,4502,4518,4556,4583,4672,4698,4725,4792,4943,4979,5003,5006,5011,5015,5018,5021,5025,5030,5033,5036,5040,5043,5046,5072,5126,5136,5140,5143,5148,5163,5173,5181,5202,5206,5213,5234,5263,5268,5283,5296,5301,5296,5350,5372,5378,5426,5481,5488,5507,5538,5549,5568,5568,5568,5568,5568,5568,5568,5568,5568,5568,5568,5568,5568,5578,5568,5578,5568,5568,5568,5568,5568,5568,5568,5578,5578,5568,4308,5568,5568,34042,4308,5578,5568,5568,5568,5568,5568,5568,5578,5578,5578,5591,4308,5568,5568,4308,5568,34042,5578,5595,5606,5621,5627,5633,5642,4308,5645,5654,5668,5703,5578,5720,5725,5568,5568,5568,34042,5568,5568,5568,5568,5568,34042,5568,5568,5568,34042,5730,5568,5568,5568,34042,5568,5568,5568,34042,5568,5578,5735,5869,5872,5890,5897,5901,5904,5908,5910,5914,5937,5979,5987,5996,6013,6053,5568,5568,5568,5568,6087,5568,5568,5568,5568,5580,5578,5568,5568,5568,5568,5568,5568,5568,5568,4308,5568,6090,6103,6117,6121,6128,6149,6154,6161,6170,6175,6181,6186,6189,6195,6203,5568,5591,6208,6212,34042,5578,6221,5301,6224,6229,6234,6238,6241,6244,6248,6252,6256,6259,6263,6267,6276,6280,6290,6294,6311,6321,6353,6359,6362,6367,6397,6404,6408,6412,6418,6429,6439,6442,6459,6531,6537,6558,6561,6595,5301,6628,5301,5642,5301,6656,6675,6682,6712,6730,6757,6815,6833,6862,6900,6909,6928,6982,6995,7030,7066,7095,7118,7138,7142,7156,7173,7203,7217,7240,5568,5568,5578,5568,5578,4308,5568,5568,7264,5568,5568,5730,5568,4308,5568,5568,5568,5568,5568,5568,7264,5568,34042,34042,5568,5568,5568,7267,7274,7280,7304,7314,7325,7329,7334,7340,7345,7354,7360,7365,7370,7377,7382,7388,7393,7398,7409,7412,7416,7421,7427,7432,7439,4308,4308,5578,7444,7449,7452,5568,5568,5568,5568,5568,5568,5568,5568,5568,5568,5568,5568,5568,5568,5568,5568,5568,5568,5568,5568,5578,5568,5578,5568,5568,5568,5568,7454,7459,7470,7475,7480,7485,7490,7495,7500,7504,7508,7512,7515,7533,7540,7543,7546,7550,7554,7558,7562,7566,7570,7573,7576,7264,7580,7589,7596,7602,7652,7670,7696,7700,7704,7732,7742,7764,7769,7774,7779,7784,7829,5568,5568,5568,7841,5578,4308,34042,5568,5578,5568,5568,7841,4308,7848,7860,7867,7879,5730,7886,7899,7916,7925,7929,33584,7952,7959,7964,7969,7972,7976,7981,7985,7988,7991,7997,8000,8004,8009,8013,8017,8020,8025,8029,8032,8035,8040,8045,8051,8056,8059,8063,8067,8071,8075,7969,8081,8086,8091,8102,8105,33695,8128,8164,8178,8197,8207,8215,8224,8228,8235,8239,8242,8258,8266,8274,8281,8289,8311,8319,8351,8366,5578,8371,8375,8379,8383,8387,8393,8396,8399,8403,8408,8412,8417,8445,8450,8455,8460,8465,8468,8470,8472,8475,8478,8483,8486,8490,8492,8495,8498,8502,8507,8514,8517,8545,8562,8566,8577,8587,8593,8596,8600,8613,8629,8639,8672,8682,8687,8692,8698,8706,8721,8730,8735,8760,8783,8796,8812,8822,8835,8844,8856,8859,8865,8870,8872,8877,33695,8877,8879,8883,8903,8929,8940,8950,8971,8976,8989,8992,33695,8870,8870,33695,7969,7969,8996,9001,34561,9012,9003,9014,9018,9022,9027,9031,9036,9043,9050,9059,9062,34042,8721,8870,9067,9078,9083,9092,8870,9098,9106,9137,9144,9149,9155,9160,9175,9180,9190,9200,9003,9208,9232,9259,9266,9275,9285,9290,9299,9306,9369,9372,9386,9391,9410,9413,9438,9446,9467,9522,33695,9525,9530,9535,9544,9581,9592,33695,9599,9602,9606,9611,8721,5578,9616,9629,9635,9642,9646,9653,9661,9666,9672,9682,9686,9694,9698,9703,9717,9720,9729,9756,9762,9795,9801,9824,9836,9884,9889,9894,9897,9901,9905,9910,9915,9919,9924,9930,10072,10090,10121,10184,10243,10298,10318,10324,10332,10336,10358,10362,10378,10383,10390,10395,10414,10424,10435,10440,10448,10451,10456,10460,10464,10469,10473,5296,10477,10481,10485,10489,10493,10497,10501,10506,10509,10514,10519,10523,10526,10531,10536,10539,10544,10549,10554,10560,10565,10568,10574,10579,10584,10589,10609,10613,10626,10649,10669,5578,10694,10712,10758,10774,10782,10797,10813,10838,10861,10885,10893,10909,10917,10921,10943,10956,10969,10985,11009,11019,11029,11042,11047,11057,11061,11087,11092,11102,11119,11136,11142,11157,11166,9446,11205,11222,11239,11250,11259,11332,11361,11402,11409,11419,11441,11457,11461,11465,11467,11472,11488,11494,11502,11508,11524,11531,11543,11548,11552,8996,11558,11561,8870,11566,11570,8870,11575,11580,11584,11599,11610,8721,11621,11643,11647,11650,11654,11659,11665,11669,11672,11677,11682,11686,11690,11695,11700,11705,11710,11714,11719,11724,11728,11733,11737,11741,11746,11751,11756,11761,11766,11771,11776,11781,11786,11789,11793,11816,11823,11828,11834,11848,11852,11856,11863,11872,11888,11902,11913,33584,11921,11949,11957,11966,11970,11973,11981,34042,11986,11992,12000,12006,12017,12022,12029,12034,12036,12040,12052,12069,12098,12111,12115,12139,12146,12151,12157,12177,12212,12225,12238,12250,12257,12262,12269,12275,12281,7264,12293,12300,12311,12341,12362,12367,12376,12381,12386,12390,12417,12464,12470,12481,12485,12489,12493,12498,12502,12507,12511,12516,12521,12527,12532,12538,12543,12548,12553,12559,12564,12568,12575,12581,12587,12601,12625,12632,12636,12640,12645,12651,12661,12667,12673,12679,12691,12723,12767,12794,12811,12822,12830,12855,12859,12863,12867,12871,12876,12885,12890,12895,12900,12905,12927,12947,12954,12962,12995,8996,13003,13014,13019,13023,5578,13028,13040,13050,13082,13139,13153,13160,13208,13242,13248,13253,13258,13274,13297,13306,8032,8032,13314,13317,13329,13335,13344,13350,13359,13365,13375,13378,13386,13407,13422,13427,33584,13433,13438,13448,13461,13519,13537,13555,13575,13585,13594,13598,13603,13608,5568,13624,13632,13640,13644,13650,13659,13670,13681,13686,13700,13703,13710,13719,13731,13737,13742,13747,13752,13779,13790,13799,13807,13815,8721,13822,13851,5578,13858,13884,13900,13906,13911,13919,13932,11919,13937,13941,13946,13950,13955,13958,13964,13969,13975,13979,8877,13991,13999,14003,14006,14010,14019,14031,14043,14051,5730,14061,14067,14071,14081,14084,14091,14098,14105,14113,14118,14126,7939,14138,14143,7939,8870,14149,14152,14155,14171,14176,14229,14235,14247,14253,14266,14271,14277,14283,14288,14293,14297,14303,14312,14322,14326,14330,14341,14346,14350,14359,14364,14368,14371,14381,14389,14395,14400,14410,14420,14436,14442,14498,14516,14521,14525,14532,14537,14540,14551,14611,14624,14631,14647,14657,14663,14677,14724,14729,14737,14750,14758,14765,14778,14787,14791,14796,14801,14805,14810,14814,14819,14823,14831,14844,14854,14862,14870,14880,14885,14890,14897,14902,14911,14916,14920,14928,14934,14946,14954,14960,14972,14977,14991,15002,15026,15063,15069,15080,15089,15096,15106,15116,15121,15131,15145,15152,15157,15165,15169,15176,15181,15188,15196,15202,15210,15214,15224,15230,15239,15248,15254,15259,15270,15282,15293,15299,15313,15316,15329,15334,15338,15349,15354,15360,15367,15377,15382,15387,15391,15397,15408,15414,15425,15433,15442,15456,15489,15515,15520,15527,15531,15563,15583,15617,15638,15647,15653,15661,15709,15731,15736,15740,11919,8877,15750,8877,15753,15758,15764,15778,15783,15790,15809,15817,15823,15829,15834,15839,8721,15851,15857,15861,15867,15881,15895,15900,15914,15920,15925,15935,9001,8877,15938,15942,15947,15952,15959,8721,15966,15970,15974,15979,15986,15993,16010,16014,16020,16027,16032,16037,16043,16047,16051,16058,16062,16070,16075,5578,16097,16102,16106,16122,16129,16135,16140,16155,16158,16165,16173,16178,16185,16191,16197,16201,16206,16212,16217,16221,5730,16225,16236,16253,16283,16288,16293,16297,16301,16312,5578,16318,16324,16331,16336,16344,16350,34042,16352,16359,16363,16366,16370,9003,16377,16383,16392,16406,16412,16417,16426,16434,16440,16457,16465,16468,16472,16488,16494,16500,16508,16516,16522,4308,16535,4308,16541,16549,16552,16556,16583,16591,16614,16624,16632,16648,16655,16669,16678,16681,16685,16695,16704,16708,16727,16732,16755,16762,16784,16798,16803,16812,16816,16834,16845,16849,16866,16871,16881,16887,16896,16904,16908,16913,16922,16927,16941,16946,16955,16962,16968,16974,16979,16983,16992,17004,17015,17024,17029,17038,17055,17061,17064,17072,17084,17088,17106,17117,17123,17131,17138,17145,17151,17155,17161,17170,17175,17185,17200,17208,17225,17230,17236,17245,17254,17261,17265,17282,17291,17325,17334,17341,17347,17351,17368,17386,17427,17432,17441,17444,17451,17465,17470,17482,17490,17505,17510,17517,17524,17533,17538,17545,17553,17559,17564,17573,33695,8870,8996,17588,17601,8870,17605,17614,17638,17654,17685,17719,17738,17745,17750,17760,17773,17777,17782,17789,17795,17806,17810,17814,17821,17831,17839,17843,17856,17862,17866,17873,17880,17885,17894,17941,17953,17958,17961,17967,17970,17980,17987,18013,18021,18025,18029,18034,18040,18054,18060,18065,18075,18078,18084,18088,18092,18095,18099,18107,18116,18119,18122,18128,18134,18141,18151,18155,18161,18166,18175,18180,18189,33695,18194,18202,18208,18213,18218,18224,18245,18251,18262,17142,18292,8870,18297,18300,18304,18308,18352,18397,18401,18405,18416,18429,18445,18449,18454,18468,18472,18477,18486,18504,8877,18516,18531,18538,18544,18550,5578,18557,18567,18601,18605,18617,18626,18638,18650,18652,18663,18674,18680,18712,18739,18759,18782,18821,18843,18849,18866,18879,18882,18896,18907,18912,11465,8870,18916,18921,18926,18930,18934,18939,18946,18953,18958,18961,18972,18991,19009,19012,19016,19024,19028,19033,19039,19064,19086,19090,19104,19110,19116,19135,19140,19147,11919,19154,8870,19156,19162,19165,19174,9446,19196,19201,19215,19234,19241,19250,19256,19260,19272,19278,7969,19285,19291,19295,19300,34042,19305,19323,19329,19342,19352,19357,19362,19368,19373,19379,19387,19393,19398,19408,19416,19424,19429,19432,19452,9446,19457,19465,19484,19495,19506,19510,19520,19532,19546,19551,19561,19594,19600,19613,19635,19651,19656,19662,19667,19669,19678,19683,19690,19697,19702,19710,19717,19721,19730,19740,19746,19763,19768,19777,19787,19792,19804,19809,19814,19818,19821,5591,19828,19834,19848,19857,19867,19870,19876,19882,19889,19894,19900,19904,19918,19926,19931,19936,19951,19954,19967,19975,19981,19994,20002,20007,20020,20024,20029,20041,20055,20057,20066,20070,20078,20084,20090,20097,8877,20109,20113,20118,8877,20128,20133,20138,20144,20153,20158,20163,20167,20177,20191,20199,20214,20220,20230,20236,20241,20249,20256,8870,20260,20265,20276,20286,20291,20296,20300,20308,20315,20322,20337,20345,20357,20361,20381,20388,20393,20399,20403,20408,20431,20448,20458,20486,20489,20502,20505,20511,20518,20535,20555,20559,20570,20580,20583,20590,20596,20603,20607,20615,20617,20625,20693,20766,20770,20775,8877,20779,20784,20792,20795,20802,20805,20810,20815,20854,20861,20867,20881,20901,7841,20915,20927,8877,20936,20945,20954,20958,20965,20971,20975,20987,20994,21006,21011,21018,21051,21064,21068,21071,21078,21083,21088,21092,21103,21113,21126,21135,21145,21157,21170,21183,21193,21199,21202,21206,21212,21217,21219,21221,21223,21217,21230,21233,21239,21245,21250,21253,21256,21260,21265,21267,21271,21275,21301,21310,21316,21322,21326,7264,21331,21336,21344,21353,21358,21363,21368,21382,21392,21400,21409,21415,21422,21427,21435,21443,21449,21460,21467,21454,21487,21475,21494,21504,21514,21518,21524,21530,21535,21547,21553,21560,21588,21591,21601,21613,21628,21635,21652,21664,21671,21685,21694,21705,21709,21712,21718,21725,21733,21742,21754,21769,21775,21780,21783,21492,21787,21798,21801,21806,21812,21818,5568,21825,21827,21836,21841,21846,21850,21854,21860,21866,21873,21877,21882,21886,21891,21894,21901,21906,21911,21795,21917,5578,21926,21934,21943,21947,21922,21955,21951,21966,21973,21977,21988,21994,22003,22010,22016,22018,22024,22030,22039,22043,22046,22051,22070,22079,22085,22095,22103,22107,22116,22120,22128,22134,22140,22144,22151,22158,22163,22172,22175,22177,22185,22187,22194,22200,22203,22208,22212,22219,22226,22234,22239,22248,22258,22262,22266,22270,22273,22278,22285,22290,22301,22308,22314,22320,22325,22330,22338,22342,22346,22351,22357,22367,22374,22385,22391,22397,22403,22407,22415,22421,22432,34042,22444,22447,34042,22454,22459,22468,22473,22477,22482,22487,22493,22506,22516,22526,22529,22534,22539,22544,22549,22553,22564,22569,22574,22580,22587,22593,22600,22607,22611,22616,22620,22625,22630,22635,22645,22652,22657,22662,22665,22671,22678,22683,22690,22697,22701,5591,22708,22711,22718,34561,33584,22724,22733,22739,22744,22750,22752,22016,22756,22761,8877,22766,22779,22788,22793,22800,22807,22811,22817,22825,22830,22836,22852,22859,22865,22869,22879,22885,22890,5578,22893,22899,22906,22911,22915,22926,22931,22185,22944,22950,22955,22960,8877,22977,8877,22987,22999,21504,23008,20693,8870,23013,23019,23023,23031,23035,23039,23047,8870,23088,23129,23150,8721,23157,23162,23173,11919,23176,23182,23195,23200,23207,23212,23215,23218,23222,23228,23232,8870,8877,23243,23265,8721,23270,23272,23282,23294,23300,23321,23328,23334,23338,23349,33695,23360,23368,8120,8877,23379,23384,23373,23421,23425,23429,23442,23459,23463,23473,23484,23488,23493,23498,23501,23505,23510,23515,23521,23526,23418,23549,23554,23566,16786,23582,23588,23593,23609,23580,23617,8721,23628,8870,23632,23624,23654,23661,23270,8996,23642,8877,23676,23693,23700,23704,23716,23727,23734,23745,23752,23764,8996,23771,23777,23780,23788,23792,22750,23795,23801,23807,23819,23823,23833,23836,23844,23848,23853,23857,23864,23871,23884,23890,23899,23937,23941,23946,23954,18650,23963,23972,23983,23988,23998,24005,24011,24019,24025,24031,24040,8735,24048,24051,24054,24059,24064,24068,24076,24094,24099,24104,24107,24110,24123,24127,24134,24143,24148,8877,11465,24159,24175,7969,24179,24186,24192,24197,24200,24207,24216,24228,24270,24286,24301,24305,24310,24321,24350,24366,24372,24377,24405,24411,24415,24424,24428,24433,24438,24444,24453,24459,24466,24471,24476,24480,24485,24496,24499,24502,24508,24516,24522,24529,24533,24546,24551,24556,24572,24597,24606,24613,24628,24635,24639,24642,24647,24655,24659,24664,24671,24676,24680,24685,8721,24691,24698,24703,24706,24711,24720,24736,24744,5730,24750,24757,24764,24768,24773,24775,24803,24824,24838,24851,24901,24941,24990,25037,25045,25051,25061,33584,25065,25080,25095,25102,25113,25124,25134,25152,25174,25185,25199,25210,25225,25234,25247,25249,25265,25270,25275,25283,25290,25299,25306,25311,25302,25321,25325,25330,25335,25340,25354,25359,25369,25381,25389,25396,11465,33584,23173,25401,8859,11465,25413,25419,25439,25449,25463,25467,25486,25491,25498,25504,25508,25516,25523,25528,25533,25537,25540,25545,25548,25553,25561,25566,25578,25583,25586,25589,8032,25599,34042,25604,25612,25616,25621,25641,25646,25656,25666,25672,25676,25684,25690,25697,25703,25712,25722,25727,25731,25736,25740,25751,25755,7264,25761,25770,25776,25784,25799,25807,25812,25827,25832,25847,25864,25876,25890,25907,25916,25933,25939,25949,25955,25961,25977,25999,26005,26021,26028,26034,26042,26046,26056,26062,26066,26071,26078,26085,26101,26106,26125,26135,26141,26149,26156,26163,26168,26191,26198,26211,5301,5301,5301,5642,5301,26221,26221,26227,26236,26240,26245,26253,5642,5642,5301,26263,5578,4308,5578,34042,26269,5578,5591,26272,26279,26283,26290,26296,26300,26304,26310,26315,26320,26326,26329,26333,26337,26341,26352,26360,21962,26370,26381,26389,26401,26427,26454,26476,26500,26518,26524,26529,26538,26545,26558,26569,26585,26590,26595,26600,26607,26623,26637,6238,26640,26643,26652,26659,26669,26691,26723,26729,26732,26737,26745,26750,26753,26759,26782,26788,26793,26798,26810,26816,26821,26826,26832,26850,26858,26863,26879,26888,26892,26897,26903,26918,26937,26949,5730,26953,26959,26966,26996,26999,27011,27015,27021,27026,29272,27031,27033,27038,27042,27046,27051,27054,27058,27061,27065,27070,27077,27086,27097,27121,27131,27139,27142,27146,27148,27151,27155,27160,27175,27180,27187,27198,27208,27212,27216,27219,27229,27245,27248,27254,27270,27274,27286,27295,27306,27311,27335,27361,27368,27372,27376,27384,27397,27400,27410,27416,27429,27434,27446,27461,27469,27524,27529,27539,27548,27581,27587,27590,27596,27600,27607,27615,27621,27642,27663,27670,27675,27683,27727,27741,27756,27794,27906,27929,27937,27950,27970,27974,27977,27987,27991,28000,28013,28017,28028,28037,28055,28062,28068,28079,28087,28102,28108,28124,28140,28156,28169,28173,28185,28212,28226,28255,28284,28295,25318,28302,28311,28318,28299,28337,28381,28414,28431,28448,29272,29272,28481,28529,28546,28555,26745,28563,28597,28602,28633,28665,28670,28696,28730,28760,28767,28808,28822,34296,28833,28835,28835,28448,28839,28851,28448,28870,28918,28990,29052,29078,29167,29180,29221,29225,29272,29256,34296,34296,29275,34296,29287,29298,29353,29485,29496,29516,29548,29612,29705,29734,29871,29982,29995,30186,30205,30473,30492,30524,27029,30557,30597,30611,30780,30800,30827,30910,30933,30945,31083,31273,31387,31488,31513,31546,31630,31660,31664,28232,31732,31747,31761,31784,31810,31829,31909,31933,31941,32306,32428,32501,32533,32547,32556,32763,32781,32837,28918,32868,32887,32921,18103,33049,33089,33095,33103,33108,33135,33224,33241,33278,33300,31630,33375,33476,33483,33486,33488,33509,28451,33651,30550,33719,33776,26367,33805,33816,33782,33864,28235,23672,33923,33926,33946,33960,34003,34016,34046,34057,34073,34079,34095,34106,34120,34129,34140,34146,27011,28448,34159,34185,34196,34212,33873,2985,34256,34252,34323,34330,34335,34339,34343,34347,34350,34352,34362,34394,34417,28760,34422,34436,7841,34445,34449,34455,34459,34462,34469,34483,34496,34502,34505,34509,34462,34522,34529,34536,34296], +[1,2349,2358], +"gulp-bower", +"rowserify", +[2,2339,2345], +"uffer", +"gulp-buffer", +[0,4796,4797,4798,4799], +"augment-vir", +"gulp-bump", +"gulp-cache", +"d", +"gulp-cached", +"gulp-c", +"hanged", +[2,2355,2356], +[0,2380,2388,2399,2402], +"gulp-clean", +"-css", +[2,2359,2360], +"@flmngr/flmngr-react", +"gulp-coffee", +"gulp-co", +"mpass", +[2,2364,2365], +"gulp-concat", +[2,2367,2360], +"gulp-con", +"flict", +[2,2369,2370], +[2,2369,2255], +"gulp-copy", +"sscomb", +[2,2355,2374], +"gulp-css", +[2,2376,671], +"nano", +[2,2376,2378], +[0,1673,4484,4809,1461,3744,4804,1282,4805,4806,3028,3911,4812,2609,3849,4023,4808], +"gulp-csso", +"data", +"gulp-data", +"gulp-eslint", +"include", +[2,2093,2385], +[2,2337,2386], +[0,1499,1797,3135,1429,2070,695,2278,1983,1437,2675,4868,2297,2899,89,3875,4193,4747,1843,1177,1209,3220,3984,4135,4487,4568,1448,1651,668,3561,4474,2924,1169,1457,1859,2151,2720,3183,3416,1894,4952,4473,4955,4860,2025,4919,3758,4929,3817,3824,4939,4320,4469,4873,1175,1628,4937,4941,91,53,4856,4865,4874,2900,2990,3105,4925,3876,4869,4880,4892,1165,1178,1195,3008,3090,3564,3696,3884,4307,4705,692,4855,4863,4870,2925,4931,4891,1257,3613,3618,4940,4330,192,4864,4866,4907,3816,4934,606,4883,4890,1264,4909,4917,3734,3885,4824,4831,4852,4859,4923,4835,4884,1268,3107,4681,4840,4875,1959,1978,2923,3904,4820,4827,1030,4895,1272,4913,1938,4817,4842,1208,4916,2881,1566,32965,1895,1947,1948,2921,4815,4872,4887,1845,3810,3820,4822,4851,4912,4922,3591,4829,1011,3584,4889,4927,2054,4949,4849,4946,33009,4882,1255,1198,4897,4879,1009,1426,4899,4903,61,1233,1570,4906], +"ter", +"gulp-filter", +"gulp-f", +"latmap", +[2,2391,2392], +[3,2393,9], +"ten", +[2,2394,2395], +"ormat-md", +[2,2391,2397], +[0,4957,4959,3286,4627,4960,89,4962,4963,4964,4967], +"gulp-ftp", +[2,2337,2193], +1772064000000, +"it", +"gulp-git", +"gulp-gzip", +[2,2337,2036], +"gulp-h", +"eader", +"gulp-header", +"tml-replace", +[2,2407,2410], +[3,2411,9], +[2,2412,2262], +"font", +"iconfont", +[2,2337,2415], +"gulp-i", +[1,2349,2431], +"gulp-if", +"gnore", +"gulp-ignore", +"mage-resize", +[2,2417,2422], +[3,2423,10], +[2,2424,2262], +"nclude", +[2,2417,2426], +"gulp-in", +"ject", +"gulp-inject", +[0,2442,0,2443,2457], +"line-css", +[2,2428,2432], +"stall", +[2,2428,2434], +[2,2417,1207], +"jade", +"gulp-jade", +"gulp-ja", +"smine", +[2,2439,2440], +[0,1091,4094,3530,4227,1092,2858], +[0,4973,4976,1098,364,4977,4978], +"gulp-jscs", +"gulp-js", +"hint", +"gulp-jshint", +"on-editor", +[2,2445,2448], +"gulp-less", +"gulp-l", +"ivereload", +[2,2451,2452], +"oad-plugins", +[2,2451,2454], +"mini", +1771804800000, +"minify-css", +[2,2337,2458], +[3,2459,12], +[2,2460,1936], +"gulp-m", +"gulp-mocha", +"gulp-newer", +"gulp-n", +"g-annotate", +[2,2465,2466], +"odemon", +[2,2465,2468], +[1,2349,2471], +[0,2483,0,2487,2488], +"gulp-notify", +"extra", +"extras", +[2,1186,2474], +[2,2337,2475], +"gulp-plu", +"mber", +[2,2477,2478], +"gulp-p", +"ostcss", +[2,2480,2481], +[0,3467,4094,2858,3090,4], +"ocess", +"reprocess", +[2,2480,2485], +[0,4973,4976,1098,4986,4988,4977,4989,6,4978,1283,4991], +1772409600000, +"gulp-prompt", +[2,2337,89], +"gulp-re", +"mote-src", +[2,2491,2492], +"gulp-rename", +"place", +[2,2491,2495], +[1,2349,2513], +"gulp-rev", +"-replace", +[2,2498,2499], +"gulp-r", +"uby-sass", +[2,2501,2502], +"gulp-sass", +"gulp-s", +"gulp-sftp", +"gulp-shell", +"gulp-size", +"ourcemaps", +[2,2505,2509], +"trip-debug", +[2,2505,2511], +[0,2514,0,2523,2531], +[0,4484], +"gulp-stylus", +"vg-sprite", +[2,2505,2516], +"gulp-svg", +"gulp-svgmin", +[2,2518,1542], +[2,2337,1283], +"gulp-t", +[0], +"gulp-tsb", +"gulp-ts", +[2,2525,671], +"cript", +"ypescript", +[2,2522,2528], +"gulp-uglify", +1771113600000, +[1,2349,2534], +"gulp-uncss", +[0,2535,0,2537,2540], +[0,4484,3493], +"gulp-usemin", +[0,1098,12,4627,5001,837], +"ref", +"gulp-useref", +1771718400000, +"gulp-util", +"vinyl-zip", +[2,2337,2542], +"gulp-watch", +"gulp-w", +"ebpack", +[2,2545,2546], +"gulp-web", +[2,2548,36], +"gulp-zip", +".spritesmith", +[2,2323,2551], +"gzip-size", +"hallmark", +"hammerjs", +"hapi", +[2,5323,33498], +[2,5340,6374], +"happy-dom", +"happy-", +[1,2349,2630], +"happy-meant", +"hard-cool-rhythm-continued", +"has-flag", +"has-", +"parts-ice-fact", +[2,2565,2566], +"symbols", +"has-symbols", +"hash-sum", +"hasown", +"hast-util-raw", +[3,2572,10], +"sanitize", +[2,2573,2574], +[3,2575,11], +[2,2576,1799], +"to-estree", +[2,2573,2578], +[3,2579,13], +[2,2580,1936], +"jsx-runtime", +[2,2580,2582], +[2,2580,1871], +"text", +[2,2580,2585], +"hast", +"hastscript", +"hay-against-any-hurry", +"hbs", +"he", +"heapdump", +"helmet", +"heroicons", +"hexlet-pairs", +"hexo", +"highland", +"highl", +"ight.js", +[2,2598,2599], +"hiredis", +"history", +"history-", +"brass-sound", +[2,2603,2604], +"hit-running-special8", +"hoek", +"hogan.js", +"hoist-non-react-statics", +"homebridge", +"hono", +"hope-slight-walk1", +"hosted-git-info", +"how-to-npm", +"-dom-parser", +[2,1936,2615], +"html-", +"attributes", +[2,1818,2618], +[2,2617,2619], +"html-e", +"ncoding-sniffer", +[2,2621,2622], +"html-en", +"tities", +[2,2624,2625], +"scaper", +[2,2621,2627], +"html-loader", +[0,2514,0,2523,2540], +"ier", +"minifier", +[2,2617,2632], +"-terser", +[2,2633,2634], +"pdf", +"html-pdf", +[2,1246,57], +[2,2617,2638], +"tags", +"html-tags", +"html-t", +"o-image", +[2,2642,2643], +"html-to-", +[2,2645,2585], +[1,2349,2648], +[0,2667,2684,2688,2540], +"validate", +[2,2617,2649], +[2,2617,1464], +"htmlnano", +"parser2", +"htmlparser2", +"http-", +"errors", +"http-errors", +"proxy", +"http-proxy", +"-agent", +[2,2659,2660], +[3,2661,11], +"middleware", +[2,2662,2663], +[2,2655,36], +"http-s", +[0,4484,4747,4135,1457,53,3951,1573,5012], +"http-status", +"-codes", +[2,2668,2669], +"https", +"xy-agent", +[2,1452,2672], +[2,2671,2673], +"husky", +"hyperquest", +"hyphenate-style-name", +"i", +"i18n", +"ext", +"i18next", +"-gridly-backend", +[2,2681,2682], +[0,91], +"iconv-lite", +"identity-obj-proxy", +"ignore", +[0,1098,4643], +"image-size", +[1,2349,2691], +[0,2698,0,2523,2457], +"imagemagick", +"-pngquant", +[2,2267,2693], +"imap", +"immer", +"immutability-helper", +[0,4484,26364], +"le", +"immutable", +"import-", +[2,2701,2145], +"local", +[2,2701,2703], +[1,2349,2736], +"ess", +"impress", +"in-publish", +"indent-string", +"inert", +"inferno", +"inflection", +"inherits", +"ini", +"iniparser", +"ink", +"-style-parser", +[2,134,2717], +"innosetup-compiler", +"inquirer", +"-autocomplete-prompt", +[2,2720,2721], +"inside-throw", +"insta", +"gram-node", +[2,2724,2725], +"interpret", +"intl", +"-tel-input", +[2,2728,2729], +"invariant", +"inversify", +"ionic", +[2,34017,34020], +"ionicons", +[0,2514,0,2737,2488], +[0,1098,29,5027,4963], +"ioredis", +"ip", +"irc", +"is", +"is-ci", +"is-glob", +"is-installed-globally", +"is-plain-obj", +"ect", +[2,2745,2746], +"is-p", +"otential-custom-element-name", +[2,2748,2749], +"romise", +"is-promise", +"is-stream", +"is-url", +"is-wsl", +"isarray", +"isobject", +"isomorphic-fetch", +"istanbul", +"itwcw-package-analytics", +"iview", +"jackspeak", +"jake", +"jarallax", +"jasmine", +[2,2765,1732], +"jasmine-", +[2,2767,202], +"jest-", +"canvas-mock", +[2,2769,2770], +"jest-c", +[1,2349,2775], +"jest-cli", +[0,2837,2840,2868,34552], +1770508800000, +"jest-diff", +"ronment-jsdom", +[2,1840,2778], +[2,2769,2779], +"-fourteen", +[2,2780,2781], +[3,2780,17], +[2,2783,202], +"jest-e", +"xtended", +[2,2785,2786], +"html-re", +[1,2349,2799], +"porters", +[2,2788,2790], +[2,2769,2791], +"junit", +"jest-junit", +"pnp-resolver", +[2,2769,2795], +[2,2769,814], +"jest-util", +[0,2803,0,2523,2540], +"-typeahead", +[2,2282,2800], +[2,2769,2801], +[0,5038,4484], +[1,2349,2815], +"jest-worker", +"jimp", +"jiti", +"jodit", +"-react", +"jodit-react", +"johnny-five", +"joi", +"jotai", +"jquery", +[0,2514,2818,2819,2402], +"jquery-ui", +"js-base64", +[0,2734], +[0,1098,38], +"js-beautify", +"js-cookie", +"js-yaml", +"jsarch", +"jscpd", +"-api", +"jsdoc-api", +"jsdoc-", +"to-markdown", +[2,2827,2828], +[1,2349,2836], +"m", +"jsdom", +"-no-contextify", +[2,2832,2833], +"jsesc", +[0,3011,3016,3017,34552], +[0,1673,3789,1461,1282,5060,5071,6476,5057,5059,5062,5065,5049,5050,5069,5047], +"-stylish", +[2,2272,2838], +[0,1114,2070,1192,89,1177,4487,5098,4468,3213,1610,5102,3824,1193,5100,3697,3846,91,53,5087,2990,5125,4880,1178,1540,3857,97,5123,5076,5090,5091,5094,5108,5113,3904,5106,5121,5097,5084,6498,3810,5115,5082,1011,971,5110,5085,5075,5118,5103,5079], +"json-2-csv", +"json-", +"json-loader", +[3,6,6], +"json-schema", +"json-s", +"erver", +"json-server", +"-stringify", +[2,176,2849], +[2,2846,2850], +"json-st", +"ringify-safe", +[2,2852,2853], +"5", +"json5", +"c-parser", +[2,1781,2857], +"jsonfile", +"jsonschema", +"JSONStream", +"webtoken", +[2,1781,2862], +"jspm", +"jstates", +"jszip", +"jwt-decode", +[0,5127,4964,89,5128,4627,4963,181,5130,4967,5131,5133], +"simple", +"jwt-simple", +[2,2297,1617], +[3,2871,13], +"stack", +"-launcher", +[2,2873,2874], +[2,2872,2875], +"karma-", +"karma-chai", +"karma-ch", +"rome-launcher", +[2,2879,2880], +"karma-c", +"over", +[1,2349,2901], +"overage", +[2,2882,2885], +"browsers", +[2,1708,2887], +[2,2877,2888], +"edge-launcher", +[2,2877,2890], +"fire", +"fox-launcher", +[2,2892,2893], +[2,2877,2894], +"ie-launcher", +[2,2877,2896], +[2,2877,2765], +"mocha", +"karma-mocha", +[0,2938,2939,2974,2540], +"orter", +"-reporter", +[2,2900,2903], +"phantomjs-launcher", +[2,2877,2905], +"qunit", +"karma-qunit", +"rollup-preprocessor", +[2,2877,2909], +"safari-launcher", +[2,2877,2911], +"karma-sa", +"uce-launcher", +[2,2913,2914], +"karma-s", +"inon", +"karma-sinon", +"ourcemap", +[2,2919,2091], +[2,2916,2920], +"pec-reporter", +[2,2916,2922], +"webpack", +[2,2877,2924], +"keycode", +"keypress", +"keyv", +"kleur", +"knex", +"knip", +"known-css-properties", +"knox", +"koa", +"koa-body", +[2,2935,57], +"koa-", +[0,3021], +[0,1114,89,2079,3824,91,4880,5139,4883], +"compose", +"koa-compose", +"logger", +"koa-logger", +"mount", +"koa-mount", +[2,2937,38], +"static", +"koa-static", +"kue", +"label-lungs-court4", +"-perfe", +"ctly-blow-series", +[2,2951,2952], +[2,1351,2953], +"late-", +"dress-mail5", +[2,2955,2956], +"late", +"st-version", +[2,2958,2959], +"lazy.js", +"lead-alike-web3-applied", +"leaflet", +"left-pad", +"left", +"pad", +"leftpad", +"lerna", +[2,695,2091], +"level", +"down", +"leveldown", +"levelup", +[0,5127,4964,4653,1114,4627,4963,5130,4967,89,5128,181], +"leven", +"libnpmdiff", +"libnpm", +"exec", +"libnpmexec", +"fund", +"libnpmfund", +"libphonenumber-js", +"liftoff", +"lilconfig", +[1,2349,2988], +"linkifyjs", +"lint-", +[0,14653,0,34255,34552], +"staged", +"lint-staged", +"listr", +"listr2", +"lit-element", +"lite", +"-server", +"lite-server", +"live-server", +"live", +"reload", +"livereload", +"load", +"-grunt-config", +[2,3001,3002], +[3,3003,11], +"tasks", +[2,3004,3005], +"-utils", +[2,1194,3007], +"-web-server", +[2,2703,3009], +[0,1461,5145,5146], +"localforage", +"tunnel", +"localtunnel", +"lock", +[0,1114,2070,89,2079,3824,91,4880,4883], +[0,5127,4964,4653,1114,4627,4963,5130,4967,89,5128,181,1017], +"file-lint", +[2,3015,3018], +"-es", +"lodash-es", +".assign", +[2,1209,3022], +"lodash.", +[2,3024,1420], +"lodash.c", +"lonedeep", +[2,3026,3027], +[2,3024,1675], +[3,3029,9], +"faults", +[2,3030,3031], +"flatten", +[2,3024,3033], +"lodash.f", +"oreach", +[2,3035,3036], +"get", +"lodash.get", +"isempty", +[2,3024,3040], +[3,3041,10], +"qual", +[2,3042,3043], +[3,3041,9], +"function", +[2,3045,3046], +"object", +[2,3045,3048], +"plainobject", +[2,3045,3050], +[2,3045,1871], +"map", +"lodash.map", +"lodash.m", +"emoize", +[2,3055,3056], +[3,3057,9], +"rge", +[2,3058,3059], +"omit", +"lodash.omit", +"pick", +"lodash.pick", +"set", +"lodash.set", +[2,3024,1283], +"lodash.t", +"hrottle", +[2,3068,3069], +"uniq", +"lodash.uniq", +"log", +"log-symbols", +[1,2349,3100], +"update", +"log-update", +"log4js", +"loglevel", +"long", +"loopback", +"loose-envify", +"lowdb", +"lru-cache", +"lucide", +"luck-rubber-do", +"lwip", +"lws", +"madwizard", +"magic-string", +"magmastream", +"main-bower-files", +"make-dir", +"make-", +"make-node", +"mammoth", +"manifest", +"mantine-contextmenu", +"many-favorite6", +[0,3104,3110,3168,2540], +"stream", +"map-stream", +"mapboxgl-legend", +[0,5154,5152], +"markdown-it", +"-anchor", +[2,3105,3106], +[3,3107,12], +"cont", +[0,4484,3709,4508,4355,838,5160,5159,4514,5162,840], +"container", +[2,3108,3111], +"emoji", +[2,3108,3113], +[3,3105,9], +[2,3115,2636], +[2,3115,176], +[3,3117,10], +"o-jsx", +[2,3118,3119], +[3,3120,11], +"c", +[2,3121,3122], +[2,1783,671], +[2,3124,20], +"mark", +"marked", +"y-markdown", +[2,3126,3128], +"matcha", +[3,558,9], +[2,3131,181], +"mathjs", +"matter-view-web3-fence", +"md5", +"md5-file", +"mdast-util-from-markdown", +[3,3137,11], +"to-hast", +[2,3138,3139], +"mdn-data", +"mdxts", +"memcached", +"memfs", +"memoize-one", +"memo", +"ry-cache", +[2,3146,3147], +"memory-", +"memory-fs", +"memory", +[2,3151,3101], +"memwatch", +"menta", +"l-oxygen-dozen", +[2,3154,3155], +"meow", +"merge-", +[2,3158,3101], +"metalsmith", +"meteor", +"method-override", +"method", +"methods", +"microbundle", +"micro", +"micromark", +[0,5165,5166,2038,5167,3424,5168,5170,3709], +[1,2349,3179], +"micromatch", +"mime", +"-types", +"mime-types", +"min-heap-typed", +"-extract-plugin", +[2,2360,3175], +[2,2456,3176], +"minify", +[0,3182,3207,3208,2540], +"atch", +"minimatch", +[0,2070,4207,3093,1525,1573,5175,5180], +"minimist", +"-jet-printed-supper", +[2,1504,3184], +"missing-sport-living", +"mkcert", +"mkdirp", +"mlly", +"mobx", +"mobx-react", +"mocha-", +"head", +"less-", +"chrome", +"less-chrome", +[2,3193,3196], +[2,3192,3197], +[2,2793,2903], +[2,3192,3199], +"lcov-reporter", +[2,3192,3201], +"mock-fs", +"mock-", +"property", +[2,3204,3205], +[0,4135,53,4865,5185,5191], +[0,5193,1172,5194,5197,5198,1173,4643], +"require", +[2,3204,3209], +"mock-stdin", +"mock", +"mockdate", +[1,2349,3217], +"mockery", +"mockjs", +[0,3247,3248,2523,2540], +[2,3224,3225], +"moleculer", +"moment", +"-timezone", +[2,3220,3221], +"monaco-yaml", +[3,5838,28], +"xp-modifiers", +"monads-io", +"ress", +"-express", +[2,1550,3228], +"mongodb", +"ose", +"mongoose", +"monitor", +"-dashboard", +[2,3233,3234], +"monk", +"morgan", +"motor-positive-spirit", +"move-wolf-throughout", +"movie-obtain-tail-prepare", +"mqtt", +"ms", +"mssql", +"msw", +"mud-slowly-five3", +"multer", +[0,9673,3527,5279], +[0,5282,4294,5210], +"multimatch", +"multi", +"part", +[1,2349,3269], +"multiparty", +"multip", +"le-cucumber-html-reporter", +[2,3254,3255], +"mustache", +"muuri", +"mysql", +"mysql2", +"mz", +"nails-wild-interest-garden", +"nan", +"nano-css", +"id", +"nanoid", +"-keymap", +[2,970,3267], +[0,3272,3279,3280,2540], +"nativefier", +[2,970,1508], +[0,1676,2856,4135,5233,104,58,5228,5230,101,5216,51,1573,31292,5226,5222], +"natural", +"nconf", +"ncp", +"near-social-bridge", +"nedb", +"needle", +[0,4494,4039,4474,5245,5254,5251,87,92,5235,5180,5244,5240,5241,5191], +[0,5193,1172,5256,5257,5194,5258,5259,5260,5197,5198,5261,1175,4643], +"-commander", +[2,678,3281], +"newman", +"newrelic", +"next-auth", +"next", +"nextjs", +"ng-mocks", +"ng-zorro-antd", +"ngrok", +"nib", +"nightmare", +[1,2349,3307], +"nightwatch", +"nine-yes-merely6", +"nise", +"nock", +"addon-api", +[2,813,3298], +"node-cache", +"node-c", +"ontainerpattern", +[2,3301,3302], +"dev", +"node-dev", +"node-d", +[0,0,3311,2523,2531], +"node-dir", +"node-emoji", +"node-fetch", +[0,53], +"orge", +"node-forge", +"node-g", +"toolchain", +"node-gcm", +"eocoder", +[2,3314,3317], +"JSONC", +"arser", +"html-parser", +[2,813,3321], +"inspector", +[2,813,3323], +"JSX", +"mocks-http", +[2,813,3326], +[1,2349,3338], +"notifier", +[2,813,3329], +"oauth2-server", +[2,813,3331], +"powertools", +[2,813,3333], +"node-p", +"re-gyp", +[2,3335,3336], +[0,3398,3448,3454,2531], +"node-pty", +"node-re", +"node-red", +"node-sass", +"node-s", +"chedule", +[2,3343,3344], +"tatic", +"node-static", +"uuid", +"node-uuid", +"node-watch", +"node-w", +"indows", +[2,3351,3352], +"xlsx", +"node-xlsx", +".extend", +[2,202,3356], +"git", +"nodegit", +"mailer", +"nodemailer", +"TSX", +"nodemon", +"webkit", +"nodewebkit", +"nolangjs", +"nomnom", +"nopt", +"normalize-path", +[3,3369,10], +[2,3370,1002], +"wheel", +[2,3370,3372], +[3,3369,9], +".css", +[2,3374,3375], +"np", +"npm", +"npm-check", +"-updates", +[2,3379,3380], +"npm-", +"package", +"GraphQL", +"package-arg", +[2,3382,3385], +[3,3386,12], +[3,4786,24], +"json-lint", +[2,3387,3389], +"npm-pack", +"list", +[2,3391,3392], +"regist", +"ry-fetch", +[2,3394,3395], +[2,3382,3396], +[0,104], +"mc-scripts", +"npm-run-all", +[2,3400,1276], +"npm-run-", +"path", +[2,3402,3403], +[2,556,11398,3902,591], +"npm-to-yarn", +"windows-upgrade", +[2,3382,3407], +"npmcli", +"npmignore", +"npmlog", +"nprogress", +"nsp", +"nuke-cli", +"numeral", +"nunjucks", +"nvm", +"nvmrc", +"nwsapi", +"nx", +"nyc", +"oas", +"oas-normalize", +"oauth", +[3,77,7], +"assign", +[2,3425,3426], +"hash", +"object-hash", +"inspect", +[2,3425,3430], +"keys", +"object-keys", +"object-path", +[2,3048,3022], +"object.", +"entries", +[2,3436,3437], +"observe-food-motion-hidden", +"on-finished", +"once", +"onchange", +"one-how-hand", +"onoff", +"open", +"open-cli", +"api-c", +[0,5282,51,5274,5276,5279,5273], +"lient-axios", +[2,3447,3449], +[2,3445,3450], +"openapi", +[2,3452,1712], +[0,1172,5284,57,5285,5286,58], +"opencv", +"opener", +[1,2349,3464], +"openweather", +"opn", +"optimist", +"optimi", +"ze-css-assets-webpack-plugin", +[2,3461,3462], +[0,3465,3515,3516,2540], +[0,5292,56], +"optionator", +"ora", +"orchestrator", +"orm", +"osenv", +"outdent", +"outline-slowly", +"overlay", +"scrollbars", +[2,3473,3474], +"ovsx", +"p-event", +"p-map", +"p-queue", +"p-timeout", +"p23", +"pa11y", +"pacote", +"pageres", +"paintor", +"pako", +"para", +"para-cli", +"ent-js", +[2,3488,3489], +"llelshell", +[2,3487,3491], +"parse5", +"parseurl", +"passport", +[3,1433,9], +"facebook", +[2,3496,3497], +[2,3496,2703], +[2,3496,3424], +[2,3500,1276], +[2,3403,1617], +"path-", +"exists", +"path-exists", +"is-absolute", +[2,3503,3506], +"to-regexp", +[2,3503,3508], +"pathe", +"paypal-server-api", +"pdfjs", +"pdfkit", +"perf", +[0,53,5295], +[0,5297], +"ormance-now", +[2,3514,3517], +"pg", +"phantom", +[3,2905,9], +[3,2905,10], +"prebuilt", +[2,3522,3523], +"phonegap", +"pi-gpio", +"picocolors", +"pico", +"match", +"picomatch", +"pie-case-nor-great", +"pify", +"pino", +"pinst", +"pitch-somehow-earth-brave", +"pixelmatch", +"pkg-dir", +[1,2349,3546], +"pkg-up", +"pkginfo", +"playwright", +"plugin-e", +"rror", +[2,3542,3543], +"plur", +[0,3581,3593,3594,2531], +"pluralize", +"pm2", +"pngjs", +"pnp-", +[2,3550,1464], +"pnpm", +"pnpx", +"poe-api-manager", +"polished", +"poli", +"tical-plan-careful", +[2,3556,3557], +"popper.js", +"portfinder", +"postcss", +[3,214,8], +"calc", +[2,3562,3563], +[3,3564,9], +"postcss-cli", +"al-notation", +[2,3046,3567], +[2,866,3568], +[2,3565,3569], +[3,3570,13], +[2,3571,2262], +[3,3570,10], +"nvert-values", +[2,3573,3574], +"ssnext", +[2,3565,3576], +"ustom-media", +[2,3565,3578], +[3,3579,15], +[0,5302,1676,2929,5303,4135,2822,4213,1457,18089,2098,5305,3183,3416,3692,5306,3530,27921,2226,3105,5312,5314,5319,27482,5320,5321,27512,5323,5328,27513,27514,2557,5332,2558], +"ies", +"properties", +[2,3580,3583], +[3,219,8], +"selectors", +[2,3580,3586], +"disc", +"ard-comments", +[2,3588,3589], +[2,3562,3590], +[3,3591,16], +[0,1414,1166,4494,188,4763,2278,89,1177,3127,3721,4039,2203,1894,3824,442,91,5307,4874,29549,27521,19181,5944,9245,30864,3114,27517,27519,5337,25652,1895,27518,30114,5344], +[0,5347,5348,5349,1745,5351,5352,5353,5354,1179,5130,1820,5355,1936,1783,5356,3416], +"es", +[1,2349,3601], +"duplicates", +[2,3592,3597], +"empty", +[2,3592,3599], +[0,0,3631,3645,2540], +"overridden", +[2,3592,3602], +"flexbugs-fixes", +[2,3562,3604], +[2,3562,1936], +[3,214,9], +"mage-", +"set-function", +[2,3608,3609], +[2,3607,3610], +[3,3611,10], +[2,3612,1709], +"load-", +"load-config", +[2,3562,3615], +[3,3616,12], +[2,3617,1524], +"hand", +"longhand", +[2,3158,3620], +[2,3562,3621], +[3,3622,14], +"rules", +[2,3623,3624], +[3,3622,9], +"inify-font-values", +[2,3626,3627], +[3,3628,15], +"grad", +[0,5517,11976,811,816,10615,10817,5366,5364,5087,4874,1317,1413,1192,4042,4057,4468,4484,91], +"gradients", +[2,3629,3632], +"params", +[2,3629,3634], +[2,3629,3586], +"odules-local-by-default", +[2,3626,3637], +"nested", +[2,3562,3639], +[3,3640,12], +"ing", +[2,3641,3642], +[3,3640,9], +[0,1623,57,5374,5376,6892,91,31130,31139,31177,3178,1671,7121], +"ormalize", +[2,3644,3646], +"-charset", +[2,3647,3648], +[3,3649,18], +"positions", +[2,3650,3651], +[2,3650,1871], +[1,2349,3655], +[0,3690,3723,3728,2540], +"unicode", +[2,3650,3656], +[3,3657,19], +"rl", +[2,3658,3659], +"whitespace", +[2,3650,3661], +"ordered-values", +[2,3562,3663], +"prefix", +"-selector", +[2,3665,3666], +[2,3562,3667], +[3,3668,11], +"set-", +"set-env", +[2,3669,3671], +"reduce-initial", +[2,3562,3673], +"safe-parser", +[2,3562,3675], +[3,3676,9], +[2,3677,1623], +"or-parser", +[2,1799,3679], +[2,3677,3680], +"vgo", +[2,3677,3682], +"ue-selectors", +[2,3071,3684], +[2,3562,3685], +"value-parser", +[2,3562,3687], +"post", +[0,5381,5383,5387,5391,5393,5394,5397,5400,5402,5405,5408,5411,5414,5416,5419,5423,5425,5430,5436,2993,5438], +"postgrejs", +"posthtml", +"pouchdb", +"power", +"-assert", +[2,3694,3695], +"pre-commit", +"preact", +"prepare-package", +"-plu", +"gin-jsdoc", +[2,3700,3701], +[2,1894,3702], +[3,3703,16], +"organize-imports", +[2,3704,3705], +"packagejson", +[2,3704,3707], +"svelte", +[2,3704,3709], +"prettierrc", +"prett", +"y-bytes", +[2,3712,3713], +"pretty-", +[2,3715,1851], +[2,3715,1671], +"pretty-ms", +"quick", +[2,3715,3719], +"pretty", +"prettyjson", +[0,5441,5446,5450,5452,5453,5456,5458,5461,5464,192,5467,5470,5473,5474,5476,5478,1177,1895,2675,2990,4193,91,5480], +"prisma", +"prismjs", +"private-bower", +"proc-log", +[0,5483,1117,1745,5484], +"process", +[3,217,8], +"-bar-webpack-plugin", +[2,3730,3731], +"-polyfill", +[2,1862,3733], +"s-aplus-tests", +[2,1862,3735], +"prom", +"o-server", +[2,3737,3738], +[1,2349,3748], +"prompt", +"prompts", +"prop", +"prop-types", +"-information", +[2,3205,3745], +"protobufjs", +[0,3782,0,3785,2488], +[2,38087,27470], +"protractor", +"quire", +"proxyquire", +"publish-please", +"pug", +"pull-stream", +"pump", +"punycode", +"puppeteer", +"purgecss", +"q", +"qr-image", +"qrcode-terminal", +"qs", +"query-", +[2,3764,1871], +"query", +"querystring", +"queue", +"-typed", +"queue-typed", +"quill", +"-dom", +"qunit-dom", +"qunitjs", +"raf", +"ramda", +"random-words", +"random", +"randombytes", +[2,3778,1871], +"range-parser", +[0,5497,5498,5502,5504,2222,5506,4484], +"raven", +"raw-body", +[0,5575,2220,89,582,5576,2325], +"raw-loader", +"rc-slider", +"rc-tooltip", +"rc-util", +"rcw-plugin", +"react-a", +"ddons-css-transition-group", +[2,3791,3792], +[3,3793,13], +"shallow-", +[1,2349,3806], +"compare", +[2,3795,3797], +[2,3794,3798], +"react-ap", +"ollo", +[2,3800,3801], +[2,1897,3733], +[2,1246,1367], +"react-c", +[0,3823,3844,3851,34552], +"react-color", +"react-co", +"py-to-clipboard", +[2,3808,3809], +"picker", +"datepicker", +[2,1246,3812], +"react-d", +"ev-utils", +[2,3814,3815], +"react-dnd", +"5-backend", +[2,1868,3818], +[2,3817,3819], +"ocgen", +[2,3814,3821], +[0,89,4042,3744,53,5582,87,4232,90,5583,5589], +"react-dom", +"ropzone", +[2,3814,3825], +"error-", +[2,3827,3473], +[2,1246,3828], +[2,1246,2593], +"react-h", +"ook-form", +[2,3831,3832], +"react-ho", +"t-loader", +[2,3834,3835], +[2,1246,2681], +"react-i", +"react-icons", +"nter", +"section-observer", +[2,3840,3841], +[2,3838,3842], +[0,1192,1177,4468,1610,91,5087,4880,2829,1959,1969,1966], +[2,28573,26849], +"react-intl", +"react-is", +"lifecycles-compat", +[2,1246,3848], +[2,1246,1783], +[0,5593,1745,1179,89,4978,1283], +"odal", +"react-modal", +"react-mo", +"tion", +[2,3854,3855], +[2,1246,970], +"-key", +[1,2349,3873], +"-keychain", +[2,3857,3860], +[3,3861,13], +"vector-icons", +[2,3862,3863], +"react-n", +"umber-format", +[2,3865,3866], +"onclickoutside", +[2,1246,3868], +"react-p", +"roperty", +[2,3870,3871], +[0,3879,3880,2523,2402], +"x", +"redux", +"react-redux", +"react-re", +[2,3877,2145], +[0,4135,1996,5598], +[0,1680,1177,53,5601,1006,4523,5274,5604], +"sponsive", +[2,3877,3881], +"react-r", +[2,3883,995], +[2,3884,3772], +[3,3885,13], +[2,3886,3875], +"scripts", +[2,1246,3888], +"react-s", +[2,3890,1799], +[1,2349,3896], +"react-slick", +"tyleguidist", +[2,3890,3894], +[0,3907,3908,3918,2531], +"react-svg", +"tap-event-plugin", +[2,1246,3898], +"react-t", +"est-", +"renderer", +[2,3901,3902], +[2,3900,3903], +"oastify", +[2,3900,3905], +[0,56,5611,5292], +[0,53,101,5615,5617,5295,5619], +"react-tools", +"ransition-group", +[2,3900,3910], +"virtualized", +[2,1246,3912], +"reactify", +"strap", +[2,89,3915], +"read", +[0,1172,5297,70], +"read-pkg", +[1,2349,3929], +"read-pkg-up", +"able-stream", +[2,3917,3922], +"line", +"readline", +"-sync", +[2,3925,3926], +"recall-shut-say", +[0,3933,3515,3516,2402], +"recast", +"recently-building-save", +"rechoir", +[0,56], +[1,2349,3952], +"recompose", +"recu", +"rsive-readdir", +[2,3936,3937], +"redoc", +"usaurus", +[2,3939,3940], +"-actions", +[2,3875,3942], +"redux-", +"redux-form", +[2,3944,2942], +"saga", +"redux-saga", +"thunk", +"redux-thunk", +"reflect-metadata", +[0,3953,3515,3516,2457], +[0,56,5631], +"regenerate", +[3,3954,9], +"or-runtime", +[2,3955,3956], +"rehype", +"-auto", +"-headings", +[2,163,3960], +[2,3959,3961], +[2,3958,3962], +"rehype-", +[3,1202,9], +"links", +[2,3965,3966], +[2,3964,3967], +"mdx-code-props", +[2,3964,3969], +[2,3964,1644], +"raw", +"rehype-raw", +"slug", +"rehype-slug", +"rehype-s", +"tringify", +[2,3976,3977], +"release", +"release-it", +"remap-istanbul", +[1,2349,3983], +[0,4006,4011,3516,2540], +"remark", +[2,3984,20], +"remark-", +"gfm", +"remark-gfm", +"remark-html", +"mermaidjs", +[2,3986,3990], +[2,3986,1644], +"remark-p", +[2,1258,2195], +[2,3993,3994], +[3,3995,14], +"wooorm", +[2,3996,3997], +[2,3986,3958], +"able", +"remarkable", +"replace-ext", +"replace-", +"in-file", +[2,4003,4004], +[0,5637,5222,56,5638,5640], +"-promise", +[2,705,4007], +"-native", +[2,4008,4009], +[0,53,5295,58], +"require-all", +"require-", +"dir", +"require-dir", +[1,2349,4032], +"index", +[2,3209,4017], +"requirejs", +"rese", +"lect", +"reselect", +"resize-observer-polyfill", +"-from", +[2,814,4024], +"resolve-", +"url-loader", +[2,4026,4027], +"rest-chronicle", +"rest", +"restify", +[0,3933,3311,3516,2531], +"restler", +"ore-cursor", +[2,4030,4034], +"rethinkdb", +"rewire", +"rfdc", +"rimraf", +"robot", +"robotjs", +"rollup", +"rollup-p", +"lugin-babel", +[2,4043,4044], +[3,4045,15], +"uble", +[2,4046,4047], +[3,4045,14], +"clean", +"cleanup", +[2,4049,4051], +[3,4052,15], +"ommonjs", +[2,4053,4054], +"dts", +[2,4049,4056], +[2,4049,1781], +"license", +[2,4049,4059], +"builtin", +"builtins", +[2,813,4062], +[2,4049,4063], +[3,4064,19], +[2,4065,2203], +[2,4065,814], +"replace", +[2,4049,4068], +"sourcemaps", +[2,4049,4070], +"terser", +[2,4049,4072], +[3,4073,15], +[2,4074,2528], +[2,4075,1276], +[2,4049,2280], +"visualizer", +[2,4049,4078], +[3,4045,13], +[2,4080,594], +"route", +"routes", +"rsnext", +"rsvp", +"rtlcss", +"run-s", +"equence", +[2,4087,4088], +"@modern-js/utils", +[1,2349,4095], +"run-series", +"rx", +"rxjs", +[0,4096,4114,3516,2402], +[0,4135,56,5652,5656,5658,5660], +"-compat", +"rxjs-compat", +"safe-", +"safe-buffer", +"safe-p", +"ublish-latest", +[2,4101,4102], +"sails", +"salt-type-oldest-faster", +"sand-have-metal6", +"-filename", +[2,2574,4107], +[3,4108,9], +[2,4109,1936], +"sass-loader", +"sat-local", +"sax", +[0,3093,53,5228,97,87,5663,5658,5295], +[1,2349,4138], +"scheduler", +"-doc", +[2,1119,4117], +[2,2844,4118], +"schema-", +[2,4120,594], +"scien", +"ce-knowledge-truth", +[2,4122,4123], +"seblakhotspicy", +"secp256k1", +"seedrandom", +"sele", +"nium-webdriver", +[2,4128,4129], +"semantic-release", +[3,4131,9], +"ui-react", +[2,4132,4133], +"semver", +"seneca", +"sentiment", +[0,4139,4154,2523,4194], +[0,1593,3957], +"sequelize", +[3,1753,9], +"-javascript", +[2,4141,4142], +"serial", +"serialport", +"serve", +"-favicon", +[2,4146,4147], +"serve-", +"serve-index", +[2,4149,2947], +"-destroy", +[2,36,4152], +[0,1389,1408,5669,4535], +"less-finch", +[2,36,4155], +[3,4156,11], +"spy", +[2,4157,4158], +"sha1", +"shallow", +"equal", +[2,4161,4162], +"sharp", +"shell-quote", +"shell", +"shelljs", +"shinning-continued-becoming", +"shortid", +"should", +"showdown", +"shx", +"sick-typical-court7", +"signal-exit", +"simil", +"ar-cheese-loss", +[2,4175,4176], +"-ass", +"i-animation", +[2,4178,4179], +[2,2869,4180], +"simple-", +"simple-git", +"-web", +"-web3", +[2,3742,4185], +[2,4182,4186], +"single-spa", +"sink-mighty-orbit0", +"sink-", +"rod-lamp", +[2,4190,4191], +"sinon", +1772323200000, +"-chai", +"sinon-chai", +[1,2349,4198], +[0,4203,4222,2523,2540], +"sinopia", +"sirv", +"size-limit", +"size", +[0,4135,5867,5637,5866,56,5656,5658,5676,5788,5850,5761,5797,5222,5660,5816,5640,5809,5812,5838,5769,5793,5823,5852,5756,5766,5790,5856,5863,5712,5715,5771,5778,5842,5741,5743,5830,5859,5757,5241,5810,3218,5820,5827,5835,5853,5751,5759,5821,5865,5764,5846,5785,5754,5825,5862,5782,5700,5749,5806,5832,5818,29299,5800,5813,5678,5685,5694,5690,5776,5688], +"sizeitup", +"skapi-js", +"sky-buy-web3-rock", +"slash", +"slice-ansi", +"slow-deps", +"slow-", +"voice-spell-pass", +[2,4210,4211], +"slugify", +"small-grow-mix4", +"snake-seven-recall-interior", +"snazzy", +"soap", +"socket.io", +"-client", +[2,4218,4219], +"sock", +[0,53,101,5295], +"js-client", +[2,4221,4223], +"source", +"-map", +"source-map", +[2,4227,1592], +[3,4228,11], +[2,4229,1194], +"support", +[2,4229,4231], +"space-separated-tokens", +"spectaql", +"speech-section-part-frozen", +"spirit-labor-cheese", +"split", +"split2", +"spring-dust-wall-size", +[1,2349,4241], +[0,4244,3515,2523,2540], +"sprintf", +"sprintf-js", +[0,56,5676,5874,5879,5881,5883], +"sprity", +"sqlite3", +"ssh2", +"ssri", +"st.db", +"stack-", +"trace", +"stack-trace", +[1,2349,4254], +[0,4263,3515,4265,4194], +"standard", +"-version", +[2,4255,4256], +"star-location", +"star", +"t-server-and-test", +[2,4259,4260], +"stat", +[0,4851,56,5676,5889,5241], +"statsd", +[0,5891,91], +"statuses", +"stock-independent-balloon", +"stor", +[1,2349,4281], +"storybook", +"-django", +[2,4270,4271], +"stra", +"iforos-compodoc", +[2,4273,4274], +"nge-lady-riding9", +[2,4273,4276], +[2,3101,3695], +"stream-", +[2,4279,353], +[0,4286,4297,2523,2540], +"streamii", +"strftime", +"string-", +"stri", +[0,5896,3093,5898,2102,4232], +"strip-html", +[2,4284,4287], +"width", +[2,4284,4289], +"-entities", +[2,1646,4291], +"strip-", +"strip-ansi", +"bom", +"strip-bom", +[0,1389,53,5743,5241], +"comments", +[2,2842,4298], +[2,4293,4299], +"strip", +"stripe", +"strongloop", +"-dictionary", +[2,590,4304], +"style-", +[2,4306,1194], +[1,2349,4313], +"style-to-js", +[3,4309,9], +[2,4310,3048], +"-comp", +[0,0,0,2523,2531], +"-components", +[2,369,4314], +[1,2349,4331], +"styled-jsx", +"hacks", +"stylehacks", +"stylelint", +"-standard", +[2,607,4321], +[2,4320,4322], +[3,4323,10], +"declaration-strict-value", +[2,4324,4325], +"order", +[2,4324,4327], +"scss", +[2,4324,4329], +[0,4336,0,2523,2531], +"us", +"stylus", +[2,4333,2091], +"sugar-policeman-entire", +[0,1593], +"sugarss", +"sun-grass-circle0", +"superagent", +"super", +"superjson", +"supertest", +[2,4342,1430], +[1,2349,4348], +"supervisor", +"-vessels-web3-vessels", +[2,4231,4346], +[0,4356,3515,2523,2540], +"lor", +"s-color", +[2,4231,4350], +"surrounded-characteristic-or-rain", +"svelte-", +"check", +[2,4353,4354], +[0,1676,104,58,5230,5216,51,30873], +"rocess", +"preprocess", +[2,4353,4358], +"svg-sprite", +"svgo", +"sw-precache-webpack-plugin", +"swagger-autogen", +"swagger-", +[2,4364,134], +"themes", +[2,4364,4366], +"ui-express", +[2,4364,4368], +"swam-darkness-weak", +"swig", +"swiper", +"sync-request", +"information", +[2,623,4374], +"systemjs", +"tail-iron-became5", +"tail", +[1,2349,4392], +"tailwind", +"-merge", +[2,4380,4381], +"tailwindcss", +"tap", +"tap-", +"spec", +"tap-spec", +"tapable", +"tape", +"tar", +"tar-fs", +[0,4417,4422,2523,34552], +"tar-stream", +"tarant", +"-router-express", +[2,3926,4395], +[2,4394,4396], +"tdl", +"tdlib-native", +"tempy", +"terminal-kit", +[3,4401,9], +"menu", +[2,4402,4403], +"pack", +"-plugin", +"pack-plugin", +[2,4184,4407], +[2,4072,4408], +"cutting", +[2,1382,4410], +"snippets", +[2,1382,4412], +"cafe", +"testcafe", +"testc", +[0,5276,5279], +"ontainers", +[2,4416,4418], +"double", +"testdouble", +[0,58,5216,5274], +"testem", +[1,2349,4429], +"text-table", +"three", +"throttle-debounce", +"thro", +[0,4442,4444,4458,4194], +"through", +"through2", +"w-did-darkness4", +[2,4428,4432], +"thunkify", +"tildify", +"time-grunt", +"tinper-bee", +"tiny-lr", +"tiny", +"bench", +"tinybench", +[0,5923,5927,5930,5931,5934,5935,5936,1512,2075,2088,2070,2822,2832,5941,3105,5944,3107,5946,5949,3112,26767,5953,5956,5961,3135,3257,5963,5966,3725,3754,3758,5969,5971,3348,5975,4747], +"tinycolor2", +[0,4320,5978,4328], +"tinymce", +"pool", +"tinypool", +"tinyspy", +"tmp", +"toastify-react-native", +"tocbot", +"toml", +"touch", +"tough-cookie", +"tracer", +"traffic-carry-opinion", +"train-stick-swept7", +[0,200,1783,5980,3452,5593,5981,5982,5983,1745,1179], +"tree-kill", +"e-leaving-basket", +[2,1333,4460], +"trpc", +"trumpet", +"ts-cache-mongoose", +"ts-japi", +[1,2349,4471], +"est", +"ts-jest", +"ts-loader", +"ts-migrate-mongoose", +[0,4472,4476,4485,2540], +[0,5990,2212,3220,3747,4715], +"ts-morph", +"ts-node", +"ts-patch-mongoose", +[0,1596,1177,1895,1903,1938,1954,1955,1958,1970,4255], +"ts-pnp", +"ts-rule-engine", +"-paths", +[2,2190,4479], +"tsd", +"tsd-lite", +"tshy", +"tslib", +[0,4709,5993,4714,2942,5995], +"nt", +"tslint", +"-config-", +[2,4488,1894], +[2,4487,4489], +"tslint-", +[2,4491,89], +"tsup", +"tsx", +"turndown", +"tv4", +"tweetnacl", +"twemoji", +"twit", +"twitter", +"type-", +[1,2349,4503], +[0,4506,4516,2523,2540], +"coverage", +[2,4501,4504], +[0,6041,4135,1458,6042,1836,2151,6049,3527,1104,6047,4025,6024,6027,6028,6032,6034,6009,6010,6025,6037,3749,6007,6039,6022,6003,6031,6017,6006], +"type-fest", +"typedoc", +"-material-theme", +[2,4508,4509], +"typedoc-", +[2,4511,2475], +[3,4512,15], +[2,4513,1783], +"typedocs", +[0,3471,6040,4294,5254], +"typegen", +[1,2349,4519], +[0,4527,4528,4544,2540], +"typegoose", +"typeorm", +"-eslint", +[2,91,4522], +[3,4523,11], +"formatter", +[2,4524,4525], +[0,6056,6059,449,452,456,1461,3744], +[0,48,53,61,87,90,192,5467,5583,811,816,6061,6063,6065,1009,1011,1178,1251,6066,1177,1947,1959,1961,2675,2990,1894,89,3824,4042,6068,4073,4131,91], +"css-modules", +[2,1186,4529], +[2,4524,4530], +"typings", +"uglify-es", +"uglify-", +"uglify-js", +"js-webpack-plugin", +[2,2280,4536], +"uid-safe", +"uiw", +"uj-apidoc-core", +"ulid", +"ultrahtml", +"unbuild", +[0,6070,89,6071,181,6073,4963,6074,6077,6080,6081,6082,4967,6083,6084,4298,6085,6086], +"underscore", +".string", +[2,4545,4546], +"undici", +"unified", +"unique-", +"random-", +"array", +[2,4551,4552], +[2,4550,4553], +"unist-util-visit", +[1,2349,4557], +[0,4573,0,4574,2540], +"untildify", +"unusual-rope", +"unzip", +"-notifier", +[2,3076,4561], +"urijs", +"url-", +"join", +"url-join", +"url-parse", +"urllib", +"user", +"user-", +"home", +"user-home", +[0,1459,148,185], +[0,6092,1459,6094,6096,6098,6100], +"agent", +"useragent", +"utf8", +[2,594,4381], +"uvu", +"valid", +"-url", +"valid-url", +[1,2349,4642], +"-commit-msg", +[2,2649,4584], +[3,4585,9], +[2,3387,1213], +[2,4586,4587], +"vant", +"vary", +"vasync", +"vercel", +"verror", +"vhost", +"victory-mouth", +"viewerjs", +"vinyl", +"vinyl-", +[2,4598,1398], +"vinyl-fs", +"source-", +[2,4601,3101], +[2,4598,4602], +[3,4603,12], +"maps-apply", +[2,4604,4605], +"virtual", +"virtual-dom", +[3,839,12], +"api-", +"api-routes", +[2,4609,4611], +"press", +"vitepress", +"vorpal", +"vows", +"vsce", +"vscode-debugprotocol", +"vscode-", +"nls-dev", +[2,4619,4620], +"mate", +"textmate", +[2,4619,4623], +"vue-", +"class-", +[3,1533,9], +[2,4626,4627], +[2,4625,4628], +[2,4625,67], +"hot-reload-api", +[2,4625,4631], +"vue-i18n", +"vue-loader", +[3,3746,9], +[3,70,9], +[2,4635,4636], +[2,4625,4637], +[2,4625,38], +[2,4625,4307], +[3,1243,9], +[0,4655,0,4668,34552], +"compiler", +[2,4641,4643], +[2,4625,4644], +"vuex", +"walk", +"walk-sync", +"warning", +"watchify", +"waterline", +"wd", +"web3", +"web3-", +[0,27715,4484], +"web3-be", +"web3-c", +"apital", +[2,4657,4658], +[3,42,8], +"pass", +[2,4660,4661], +"eve-cli", +[2,4654,4663], +"web3-e", +"xactly6", +[2,4665,4666], +[0,6105,6106,6038,1936,6108,6110,1098,6111,6112,6113,4627,6092,1459,6094], +"web3-fruit", +"webpack-", +"bundle-", +[1,2349,4673], +[0,4697,0,4574,2531], +"analyzer", +[2,4671,4674], +[2,4670,4675], +[2,4670,200], +"dev-middleware", +[2,4670,4678], +[3,4679,12], +[2,4680,36], +"hot-", +[2,4682,2663], +[2,4670,4683], +[2,3097,4406], +[2,4670,4685], +[3,4686,9], +"erge", +[2,4687,4688], +"node-e", +"xternals", +[2,4690,4691], +[2,4670,4692], +"sources", +[2,4670,4694], +"webshot", +[0,1459,148,187,153,180,157], +[1,2349,4700], +"websocket", +[0,4701,0,4574,2531], +[0,1459,182,148,29468,187,153,180], +"webtorrent", +"webworker-threads", +"weinre", +"whatwg-fetch", +"when", +"which", +"winreg", +"winston", +"-daily-rotate-file", +[2,4709,4710], +"winston-", +"trans", +"transport", +[2,4712,4714], +"wiredep", +"word-wrap", +"word", +"wrap", +"wordwrap", +"work", +"box-webpack-plugin", +[2,4721,4722], +"world-toy-kill", +[1,2349,4743], +"wrap-ansi", +"wrench", +"write-file-atomic", +"ws", +"x-ray", +"xhr", +"xml-", +"xml-js", +"xml2js", +"xml2json", +"xmlbuilder", +"xmldom", +"xmlhttprequest", +"xpath", +"xregexp", +"xss", +"xstate", +[0,4773,0,4574,2540], +"xterm", +"yaml", +"yamljs", +"yargs", +[2,4747,1574], +"yarn", +"pkg", +"yarnpkg", +"yarnrc", +"yauzl", +"yeoman-environment", +"yeoman-", +[2,4755,1179], +"yn", +"yo", +"yoctocolors-cjs", +"yonode", +"yosay", +"zmq", +"zod", +"zod-", +"chemas", +[2,2666,4765], +[2,4764,4766], +"zombie", +"zone.js", +"zuul", +[2,667,1651], +[2,672,4406], +[0,1459,182,148,6127,29468,187,180], +"@nx/jest", +[2,667,4270], +"framer-motion", +"teajusgula", +"@mui/s", +"tyle", +"d-engine", +[2,4779,4780], +[2,4778,4781], +"jsdoc-parse", +"@comm", +"ercetools-frontend/constants", +[2,4784,4785], +"shift", +"downshift", +[3,3605,9], +"ocus-visible", +[2,4789,4790], +[1,2349,4801], +[2,3388,4794,4963], +[3,18878,12], +[3,1705,9], +[2,4795,3582], +"devDependencies", +"keywords", +"ts", +[2,4837,686], +[0,4813,0,4918,2531], +[3,3,7], +"field", +[2,4802,4803], +[2,4802,3473], +[2,4802,2649], +"@types/", +[2,4807,3911], +"big.js", +[3,1849,9], +"lement-equals", +[2,4810,4811], +[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6133,111,174], +"adaptor-generate", +[2,4802,4814], +[3,4815,15], +[2,4816,1383], +"@alifd/a", +"pi-extractor", +[2,4818,4819], +[2,1262,3286], +[2,4802,4821], +[2,1910,57], +[2,4802,4823], +"@alifd/d", +"ts-generator", +[2,4825,4826], +[2,1884,3286], +[2,4802,4828], +"meet-react", +[2,4802,4830], +"sass-", +"mapper", +"sass-mapper", +[2,4802,4834], +[3,4835,12], +[3,4793,38], +[2,4867,4924], +"tracker", +[2,4836,4839], +[3,4835,11], +[2,4841,4823], +"@alifd/s", +"lint-co", +"-next", +"nfig-next", +[2,4844,4846], +[2,4779,4847], +[2,4843,4848], +[3,81,21], +[2,4850,1219], +[2,4807,1175], +"@types/b", +"ig.js", +[2,4853,4854], +"@types/chai", +"@types/c", +"lassnames", +[2,4857,4858], +"@types/co", +"@types/e", +"nzyme", +[2,4861,4862], +[2,4807,2151], +"@types/glob", +[2,4807,2720], +[3,4793,25], +"jsonp", +[2,4807,4868], +[2,4807,1209], +".clonedeep", +[2,4870,4871], +"@types/md5", +[2,4807,202], +[2,4807,3564], +[3,4875,16], +"ustom-", +[2,4877,3583], +[2,4876,4878], +[3,4808,12], +[3,4808,13], +[2,4881,1582], +[2,4881,965], +[2,4881,3875], +[3,4884,14], +"outer-dom", +[2,4885,4886], +[3,4808,14], +[2,4888,3903], +[2,4807,4320], +[2,4807,2924], +[2,4807,4747], +[3,1203,14], +"spower", +[2,4893,4894], +[2,2168,1894], +[2,1199,4896], +[3,1245,30], +[2,4898,3426], +"proto", +"-to-assign", +[2,4900,4901], +[2,1226,4902], +"displayname", +[2,1861,4904], +[2,1249,4905], +[2,3195,2874], +"e-polyfill", +[2,1557,4908], +"css-s", +"plit-webpack-plugin", +[2,4910,4911], +[2,1863,3733], +[3,1924,15], +"ypress", +[2,4914,4915], +[2,2068,4111], +[0,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130,6148,6092,1459,6094], +"html5shiv", +[3,2925,9], +"driver-launcher", +[2,4920,4921], +[2,3108,588], +"ssets", +"mochawesome", +"-package-importer", +[2,3342,4926], +[2,3388,16690,4935], +"react-axe", +"ropper", +[2,3805,4930], +"react-dr", +"aggable", +[2,4932,4933], +"c-app", +"ve", +"react-live", +"true", +"sass-true", +"simulate-event", +"solarlunar", +[3,4323,17], +[1,2349,4953], +[2,4950,4951], +"recommended", +[2,4942,4945], +[3,4323,11], +"sstree-validator", +[2,4947,4948], +[3,662,27], +"dev-authentication", +"ts-mocha", +[0,4969,0,4918,2540], +[2,4950,4956], +"tsconfck", +[3,25922,13], +"fusion", +" design", +[2,4957,4958], +"ui toolkit", +"mponents", +[2,3808,4961], +"components", +"design", +"front", +"end", +"frontend", +[2,4970,4971], +[0,182,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6133,111,174], +[3,4786,14], +"/http-user-agent", +[2,31787,4980], +"Angular CLI", +"Angular ", +"DevKit", +[2,4974,4975], +"devkit", +"sdk", +[1,2349,4983], +"cli-lib", +[2,812,2220], +"@svgr/babel-preset", +[0,4994,0,4998,2540], +"blue", +[2,4807,4676], +"blueprints", +" generation", +[2,1501,4987], +"scaffolding", +"tool", +"tooling", +[2,1030,4993], +"-swc", +[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,146,6158,111,174], +[2,5559,705], +[2,4997,4999], +"moment-loca", +[0,6148,6092,1459,6094,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130], +[3,8303,18,2], +"svg-url-loader", +"development", +"thread-loader", +[1,2349,5004], +[0,5005,0,4998,4194], +[0,6164,164,167,137,159,177,162,180,157,140,6166,171,116,150,155,122,169,119,146,111,6168,174], +[1,2349,5007], +[0,5008,0,4998,4194], +[0,164,167,137,159,177,162,180,157,140,171,116,150,155,122,169,119,6173,146,111,174], +[2,4807,4996], +[2,6776,1987], +[1,2349,5013], +"@jridgewell/sourcemap-codec", +[0,5014,0,4574,34552], +[0,6178,1459,16485,182,148,29468,159,187,153,185,146], +[1,2349,5016], +[0,5017,0,4574,2540], +[0,1459,182,148,29468,159,187], +[1,2349,5019], +[0,5020,0,4574,4194], +[0,16485,182,148,187,153,191], +[1,2349,5022], +[0,5023,0,5024,34552], +[0,1459,148,187], +[0,6092,1459,6094,6192,6100], +[1,2349,5026], +[0,5028,0,5029,2457], +[2,29,4958], +[0,16485,182,187,153,6200], +[0,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130,6092,1459,6094,6192,6100], +[1,2349,5031], +[0,5032,0,4574,4194], +[0,1459,148,187,185,146], +[1,2349,5034], +[0,5035,0,5029,2402], +[0,16485,187], +[1,2349,5037], +[0,5039,0,4574,2540], +"xhr2", +[0,1459,182,148,6215,6127,180,143,6217], +[1,2349,5041], +[0,5042,0,4574,2402], +[0,1459,182,148,29468,187,153,171], +[1,2349,5044], +[0,5045,0,4574,2531], +[0,1459,16485,182,148,6215,29468,187,153,180,185,191,143], +[1,2349,5052], +"@bang88/react-native-ultimate-listview", +[3,444,19], +[2,5048,970], +"@rc-component/mini-decimal", +"@types/s", +[0,5053,0,4574,4194], +[0,1459,182,148,167,29468,187,153,157], +"hallowequal", +[2,5051,5054], +"with", +[2,3023,5056], +"css-color", +[2,3370,5058], +"rc-field-form", +"codegen", +[2,3862,5061], +[3,5062,15], +"llapsible", +[2,5063,5064], +"modal", +"-popover", +[2,5066,5067], +[2,3862,5068], +"ity-types", +[2,614,5070], +[1,2349,5099], +[2,2809,4009], +[2,45,5073], +[2,41,5074], +[2,41,2041], +"@rea", +"ct-native-community/eslint-config", +[2,5077,5078], +[3,5079,9], +"vigation/native", +[2,5080,5081], +[3,5082,18], +[2,5083,2873], +[2,972,4009], +"@types/j", +"@types/jest", +"@types/p", +"rop-types", +[2,5088,5089], +[2,4881,970], +[3,1113,11], +"palettes", +[2,5092,5093], +"-demo-data", +[2,701,5095], +[2,1114,5096], +"bisheng", +[0,5101,0,4574,2457], +"enquire.js", +[0,1459,16485,182,148,29468,159,187,153,180,191,143], +"jsonml.js", +"metro-react-native-babel-preset", +[3,3822,9], +"ument-title", +[2,5104,5105], +[3,2197,13], +[2,1246,5107], +"gesture-handler", +[2,3862,5109], +[3,5069,15], +"cker", +[2,5111,5112], +"reanimated", +[2,3862,5114], +"area-context", +[2,4099,5116], +[2,3862,5117], +[3,5118,14], +"creens", +[2,5119,5120], +"web", +[2,3862,5122], +"shell-", +[2,5124,594], +[1,2349,5134], +"ant", +[3,4962,15], +"frame", +"framework", +"mobile", +" native", +[2,89,5132], +[0,5135,0,4574,2540], +[0,1459,182,148,6164,6127,29468,187,153,180,143], +[1,2349,5137], +[0,5138,0,4574,2540], +[0,1459,182,148,6215,29468,187,153,180,191,143], +[2,4870,3020], +[1,2349,5141], +[0,5142,0,4574,2540], +[0,182,148,29468,187,153], +[1,2349,5144], +[0,5147,0,4574,34552], +[3,5075,17], +"@inline-svg-unique-id/react", +[0,1459,148,153,143], +[1,2349,5149], +[0,5150,0,5151,4194], +[0,27715], +[0,6105,6106,6038,1936,6108,6110,89,5128,6092,1459,6094], +[2,3670,1575], +[2,5928,5155], +"@auth/core", +"junit-xml-formatter", +"adapt", +"er-auto", +[2,5156,5157], +[2,836,5158], +[2,836,3383], +"et-cookie-parser", +[2,5051,5161], +[1,2349,5171], +"entication", +[2,1303,5164], +"authjs", +"sveltekit", +"oidc", +"wordless", +[2,4661,5169], +[0,5172,0,4574,34552], +[0,1459,16485,182,148,29468,187,153,191,143], +[1,2349,5174], +[0,5177,0,4574,2457], +"fs-readdir-recursive", +[3,5012,12], +[0,16485,148,187,153], +"-mapping", +[2,4251,5178], +[2,5176,5179], +[1,2349,5199], +[3,4864,10], +"dir-recursive", +[2,3917,5183], +[2,5182,5184], +[3,56,14], +"fixture", +"-test-runner", +[2,5187,5188], +[2,1221,5189], +[2,5186,5190], +[2,5195,5196], +"6to5", +"es6", +[3,7710,11], +"ut-extension", +"transpile", +"transpiler", +[0,5201,0,5024,2457], +[2,7623,671], +[0,16485,6268,6271,6272,28829,148,29468,187,153,15716], +[1,2349,5203], +[0,5205,0,5024,2457], +"ighlight", +[0,148,187], +[1,2349,5211], +"meta", +"-resolve", +[2,5207,5208], +[2,2701,5209], +[0,5212,0,5024,2540], +[0,16485,182], +[1,2349,5214], +[0,5231,0,5232,2540], +"@ampproject/remapping", +[2,54,1179], +"compil", +"ation", +"-targets", +[2,5218,5219], +[2,5217,5220], +[2,5186,5221], +"module-", +[2,353,591], +[2,5223,5224], +[2,5186,5225], +[3,56,13], +[2,5227,591], +"emplate", +[2,102,5229], +[0,27715,3021], +[0,6105,6106,6038,1936,6108,6110,188,6284,6285,6287,6092,1459,6094], +"gensync", +[1,2349,5255], +[2,4850,2124], +[3,83,24], +"flow-", +[2,4293,553], +[2,5237,5238], +[2,5236,5239], +[2,5236,1239], +"nvert-", +[2,5242,4227], +[2,4860,5243], +[2,4807,1676], +"@types/g", +"ensync", +[2,5246,5247], +[3,4808,9], +"solve", +[2,5249,5250], +[3,5162,9], +"mver", +[2,5252,5253], +[0,5262,0,5024,2540], +"classes", +"const", +"harmony", +"let", +"modules", +"var", +[0,16485,182,148,6127,29468,187,153,180], +[1,2349,5264], +[0,5265,5266,5267,34552], +[0,6297,6298,6301,6302,6303,26379,4747], +[0,6306,6307,34026,6498,4874,4892,2151,6476], +[0,1566,1529,200], +[1,2349,5269], +[0,5270,0,5280,34552], +[0,7,53,5830,87,6316,6318,31736,1364,6320,1448,1457,1512,1525,1595,6323,1866,2061,2071,2151,2070,2036,2626,2681,2856,1209,3079,6326,6327,3127,3183,5732,6330,6331,3527,23802,3725,4135,4200,5969,6334,4473,3348,6335], +[3,5222,15], +"heck-duplicate-nodes", +[2,5271,5272], +[2,5186,1182], +[2,4284,57], +[2,5186,5275], +"-identifier", +[2,1155,5277], +[2,5186,5278], +[0,6111,1098,1745,4963,1237,2218,4796,1783], +"codes", +"charcodes", +[1,2349,5288], +"javascript", +"tc39", +"ecmascript", +"skia-canvas", +[0,5289,0,5293,2540], +[0,6343,2700], +"@egjs/flicking", +"reate-class-features-plugin", +[2,5271,5291], +[0,6345,6346,5130,2018,6347], +[3,56,21], +[2,5294,1187], +[1,5298,5299], +[3,1198,12], +[0,8389,4799], +[0,8391,5300], +1732406400000, +[1,5298,5333], +"moo", +"luxon", +"hamljs", +"liquidjs", +"iso-639-1", +"@iarna/toml", +"-urls", +[2,3692,5308], +[3,3938,10], +[2,5310,1585], +"bcp-47-normalize", +[3,1705,11], +[2,5313,2218], +"@11ty/", +"lodash-", +"custom", +[2,5316,5317], +[2,5315,5318], +"please-upgrade-node", +[2,62,3007], +[2,5313,1633], +[2,5315,5322], +"@sin", +"dres", +"orhus/slugify", +[2,5325,5326], +[2,5324,5327], +[3,5321,15], +"dev-", +[2,5330,36], +[2,5329,5331], +[0,8391,5345], +"@vue/", +"server-", +[2,5335,3902], +[2,5334,5336], +"plugin-vue", +[2,5329,5338], +[3,5339,22], +"syntax", +[3,2600,9], +[2,5341,5342], +[2,5340,5343], +1733011200000, +"-site-generator", +[2,2947,5346], +[3,5347,11], +"ssg", +[1,2349,5358], +"website", +"jekyll", +"blog", +"templates", +"11ty", +"liquid", +"haml", +[0,5359,5360,5361,2488], +[0,2626], +[0,48,53,87,37046,6371,27928,6372,5583,811,816,6373,11275,1165,1367,6375,6376,1492,1610,1177,1907,1937,1938,1982,6379,2203,2205,6382,2626,6383,2739,2765,2814,2297,2876,2881,6385,2889,2895,2898,6387,2910,3019,3363,3400,3561,3566,6389,4039,4042,6390,21688,4939,4167,4320,6392,4072,6393], +[0,1623,2278,6396,6398,6400,5130,5122], +"parcel", +"ytes", +[2,4853,5363], +"enchmark", +[2,4853,5365], +"@parcel/packager-ts", +"@parcel/", +"er-typescript-types", +[2,353,5369], +[2,5368,5370], +[1,2349,5373], +[0,0,0,5377,2540], +"stringifier", +"heet", +"stylesheet", +[0,1623,57], +[1,2349,5379], +[0,0,0,5380,34552], +[0,1623,207], +"@advanced-rest-client/arc-icons", +[3,5381,26], +[2,5382,3127], +[3,5381,22], +"-copy", +[2,1492,5385], +[2,5384,5386], +"-snippets", +[2,1501,5388], +[2,2655,5389], +[2,5384,5390], +[2,3115,592], +[2,5384,5392], +"@anypoint-web-components/anypoint-button", +[3,5394,34], +"collapse", +[2,5395,5396], +"drop", +"dropdown", +[2,5395,5399], +"item", +[2,5395,5401], +"box", +"listbox", +[2,5395,5404], +[3,64,17], +"mf-helper-mixin", +[2,5406,5407], +[3,64,20], +"annotation-document", +[2,5409,5410], +"body-", +[2,5412,1746], +[2,5409,5413], +"example-generator", +[2,5409,5415], +"ers-document", +[2,3193,5417], +[2,5409,5418], +"param", +"eters-document", +[2,5420,5421], +[2,5409,5422], +"responses-document", +[2,5409,5424], +[1,2349,5437], +"umentation", +[2,4117,5427], +[2,1965,5428], +[2,5409,5429], +[3,64,16], +"method-", +"label", +[2,5432,5433], +[2,2655,5434], +[2,5431,5435], +[0,0,0,5448,2540], +"lit-html", +[2,7623,594], +"demo-helper", +[2,5382,5440], +"-aut", +"horization", +[2,5442,5443], +[2,3424,5444], +[2,5384,5445], +[3,5397,35], +[0,1623,6415,57], +"heckbox", +[2,5447,5449], +[3,5402,35], +[2,5451,1020], +[2,5395,592], +[3,64,21], +"odel-generator", +[2,5454,5455], +"navigation", +[2,5409,5457], +[3,5425,22], +"quest", +[2,5459,5460], +[3,5430,22], +"rver-selector", +[2,5462,5463], +[3,192,13], +"onfig-conventional", +[2,5465,5466], +"@open", +"-wc/eslint-config", +[2,5468,5469], +[3,5470,9], +"testing", +[2,5471,5472], +"@web/dev-server", +"@web/", +[2,5475,1187], +"-playwright", +[2,5476,5477], +[2,5438,4406], +[2,4524,5479], +[1,2349,5485], +"api-co", +[2,5482,4961], +[2,5432,1745], +[0,5486,0,5487,2540], +[0,220,3681], +[0,1623,2741,6421,6422,3561,6425,6426,3585], +[1,2349,5492], +[3,465,9], +"typed", +[3,5428,9], +[0,5493,0,5503,2488], +[0,3688], +"-node/core", +[2,5491,5494], +[2,5490,5495], +[2,5489,5496], +"@wry/caches", +"@wry/", +"@hapi/eslint-plugin", +"equality", +[2,5499,5501], +[0,1623,5317,6433,3561,6425,6434,3583,6435,6436,6437], +"@wry/trie", +"optimis", +"optimism", +[1,2349,5516], +"response", +"-iterator", +[2,5508,5509], +"symbol", +"-observable", +[2,5511,5512], +"ts-invariant", +"zen-observable-ts", +[0,0,0,5524,2540], +"@arethetypeswrong/cli", +[3,107,13], +"hange", +"log-github", +[2,5519,5520], +[2,5518,5521], +[3,5497,10], +[0,1623,3681,6443], +"ools/merge", +[2,5523,5525], +[3,5526,15], +[2,5527,2844], +[2,5527,594], +"@size-limit/esbuild-why", +[3,5530,12], +"pres", +"et-small-lib", +[2,5532,5533], +[2,5531,5534], +"@tsconfig/node20", +"@types/f", +[1,2349,5539], +[0,5543,5544,5548,34552], +[2,4807,2609], +"-fetch", +[2,4874,5541], +[0,6450,6452,6453,5930,6455,6457,5153,6463,6465,30874,6467,6470,6471,1437,1483,1525,1676,6473,2089,2070,6474,2709,2744,2753,6475,3060,6476,5303,3171,3188,3261,3730,27168,4135,6479,4351,4507,6481,4745,6482], +[0,6487,6488,19438,19181,442,603,826,4856,5245,6493,6494,4864,6497,6309,6498,6501,6503,6505,6507,4874,6510,5254,6512,6515,6519,6520,1009,1011,1429,6522,1509,6525,1719,1177,1938,1953,1982,2026,2151,6526,2899,3257,3421,1894,6527,4172,4193,4196,6530,4449,4474,4481,4508,91], +"use-sync-external-store", +[2,4807,5545], +"rule", +[0,5472,5982,1649,6532,6533], +[1,2349,5553], +"rule-tester", +[2,1010,5550], +[2,1010,553], +[0,5565,5566,5567,2540], +"local-", +"local-rules", +[2,1921,5555], +[3,1961,20], +[2,5557,4643], +"graphql-", +"graphql-ws", +"patch-package", +[3,3829,12], +"boundary", +[2,5562,5563], +[0,1415,1437,1468,1483,2151,4468], +[0,192,5467,4864,4866,5087,6541,6544,6547,1009,1011,1109,1481,1836,1177,1895,1955,2675,1192,6551,3165,3203,3403,1894,6552,6554,91], +[0,6557,1745], +[1,5298,5574], +"ts-api-utils", +[3,1913,9], +[2,4468,5570], +"wait-for-observables", +"web-streams-polyfill", +[0,8391,5577], +"apollo", +"client", +1730419200000, +[1,2349,5579], +[0,0,0,2523,2540], +[1,2349,5590], +[3,66,10], +[2,5581,57], +[2,812,1172], +[3,1217,14], +"ource", +"-support", +[2,4226,5586], +[2,5585,5587], +[2,5584,5588], +[0,0,0,2523,2776], +[1,2349,5594], +"api", +"asyncapi", +[0,0,0,2523,2457], +[1,2349,5596], +[0,5597,5599,5605,4194], +[0,5192,27292,7605,5439,1437,1448,1623,7606,7608,7610,2822,1209,3105,5946,7612,7617,3124,7621,29457,4110,4213,4361,11143], +"@nicolo-ribaudo/eslint-scope-5-internals", +[0,7624,5200,7631,7632,7634,7637,4870,7639,7641,4874,7643,7677,23203,1165,668,7645,2600,26503,7648,3400,3561,3672,2278,26573,91,1984], +[3,1006,9], +[2,5600,671], +"-manager", +[2,1993,5602], +[2,1010,5603], +[0,1783,7650,1739,7651,1745,4990,2041,1179], +[1,2349,5607], +[0,5608,5612,5620,2488], +[0,4484,4548,7658,7660,7663,7664,7665,7668,7669], +[3,81,22], +"ecorators", +[2,5609,5610], +[0,4493,7671,1177,1984,1894,1610,91,4874,7672,7674,7677,7678,7681,7685,7690], +[3,1143,16], +"concat", +[2,5613,5614], +"polyfill-es-shims", +[2,1199,5616], +"getownpropertydescriptors", +[2,3436,5618], +[0,1721,5592,4030,7692,7693], +[1,2349,5622], +[0,5623,5624,5626,2540], +[0,1525], +[0,2899,1894], +[2,4850,72], +[0,553,4532,1776,605,4508,1739,1745,7701], +[1,2349,5628], +[0,5629,5632,5605,2531], +[0,7708,7709,7710,7715,7718,7721,354,7723,7725,4865,7729,7730,1091,1149,1168,7731,1437,1759,2075,2070,2600,2628,2670,2822,2854,3173,3181,3322,4167,4183,4213,4393,7734,7735,4648,4747], +[3,5625,28], +[2,5630,75], +[0,7737,7740,7744,7637,4870,7746,4874,7749,7752,4892,1009,1011,1178,668,1177,1966,2675,2990,1209,4468,4474,91], +[1,2349,5634], +[0,5635,5641,5605,34552], +[0,7605,1437,7608,7610,2822,1209,3105,5946,7612,7615,7617,3124,7621,4110,4213], +"mpat-data", +[2,52,5636], +[2,4850,77], +[3,5422,10], +[2,5236,5639], +[0,53,5241,87,7634,5087,7637,4870,7639,7641,7759,4874,7643,7761,7762,7763,1165,1178,668,7645,1177,1966,2600,1192,7648,3561,3672,1894,3957,4468,91], +[1,5298,5643], +[0,8391,5644], +1734825600000, +[1,2349,5646], +[0,5647,5648,5649,2540], +[0,5328,842,975,7788,1364,1437,1470,1536,7791,2040,2075,2141,7793,7794,2600,2856,3105,5944,3107,5946,7796,7797,3322,3742,2278,7798,7799,4227,4228,4232,7800,3709,3348,7801], +[0,192,5467,6061,6063,7804,7806,7808,7810,4864,7639,7641,4874,7812,7814,7816,7819,7822,1009,1011,1414,7824,2151,2675,3758,3951,4131,91], +[0,38,5995,27,5130,7826,7827,7828], +[3,5226,21], +"imports", +[2,5650,5651], +[3,5617,22], +[1,2349,5661], +"corejs2", +[2,5653,5655], +[3,5656,28], +[2,5657,1278], +[3,3957,11], +[2,5653,5659], +[0,5664,5665,5667,2402], +[3,99,21], +[2,5662,1278], +[0,7833,7837,7839,7840,19344,7847,842,7858,1165,1393,1628,1630,1177,1895,1955,1959,1961,2203,2675,16860,3177,3561,3618,3678,2278,4111,4307,4320,4323,5978,7873,4409,2924,4677,4686,4689], +[0,7849,2990], +"@edsdk/n1ed-react", +[0,4967,4329,7880,676,6435,1237,7881], +[1,2349,5670], +"derequire", +[0,5671,5672,5673,2488], +[0,7639,1429,1437,3025,3105,3467,3718], +[0,27134,4856,7889,4874,7895,2675,2990,1894,91,1984], +[0,1804,1739,1745,5592,91,7897,7900], +[3,5279,24], +"option", +[2,5674,5675], +"bugfix-firefox-class-in-computed-class-key", +[2,79,5677], +[3,5678,21], +"safari-", +"-initializer-scope", +[2,4803,5681], +[2,4626,5682], +[2,5680,5683], +[2,5679,5684], +[3,5685,28], +"id-destructuring-collision-in-function-expression", +[2,5686,5687], +"v8-spread-parameters-in-optional-chaining", +[2,5679,5689], +[3,5690,25], +"-class-fields-redefine-readonly", +[2,3346,5692], +[2,5691,5693], +"private-", +[3,3746,11], +"-object", +[2,5696,5697], +[2,5695,5698], +[2,69,5699], +"generators", +[2,1152,5701], +[1,2349,5705], +[2,4850,1229], +[0,5708,5718,5719,2531], +"static-", +[2,5706,1359], +[0,5652,97,7905,7907,7910,7913,1573,1874,7915,4227,7917], +"ions", +"assertions", +[2,2701,5710], +[2,4850,5711], +[3,5712,29], +"ttributes", +[2,5713,5714], +[3,5712,28], +[2,5716,5207], +[0,53,7922], +[0,592,1832,89,1623,7165], +[1,2349,5722], +"logical-assignment-operators", +[0,5723,5724,5719,2540], +[0,362,7931,7910,7932,7933], +[0,7935,91], +[1,2349,5726], +[0,5727,5729,2523,2531], +[0,97,362,7943,7910,7946,7933], +"meric-separator", +[0,7935,7948,89,91], +[1,2349,5733], +"ptional-catch-binding", +"neotraverse", +[0,0,0,2523,4194], +"haining", +[1,2349,5794], +[2,4850,5699], +"top-level-await", +[2,4850,5737], +"-sets-regex", +[2,3656,5739], +[2,4850,5740], +"arrow-functions", +[2,5236,5742], +[3,5743,25], +"sync-", +[3,1626,9], +[2,2168,5746], +[2,5745,5747], +[2,5744,5748], +[3,5749,30], +[2,5750,1222], +"-scoped-functions", +[2,1359,5752], +[2,5236,5753], +[3,5754,34], +[2,5755,3642], +[2,5236,1229], +[3,5757,30], +[2,5758,5707], +[3,5757,29], +[2,5760,3595], +[3,5757,25], +"omputed-properties", +[2,5762,5763], +"destructuring", +[2,5236,5765], +[3,5766,25], +"otall-regex", +[2,5767,5768], +"uplicate-keys", +[2,5767,5770], +[3,5771,34], +"named-", +"capturing-groups-regex", +[2,5773,5774], +[2,5772,5775], +"ynamic-import", +[2,5767,5777], +"expo", +"nentiation-operator", +[2,5779,5780], +[2,5236,5781], +[3,5782,28], +"rt-namespace-from", +[2,5783,5784], +[3,5240,25], +"or-of", +[2,5786,5787], +"unction-name", +[2,5786,5789], +[3,2854,11], +[2,5791,591], +[2,5236,5792], +[0,5795,5848,5868,2531], +[0,1996], +"literals", +[2,5236,5796], +[3,5797,25], +"ogical-assignment-operators", +[2,5798,5799], +[3,5241,25], +"ember-", +"ion-literals", +[2,2026,5803], +[2,5802,5804], +[2,5801,5805], +[3,5241,32], +"amd", +[2,5807,5808], +[2,5807,4376], +"umd", +[2,5807,5811], +[2,5236,5775], +[3,5813,25], +"ew-target", +[2,5814,5815], +"ullish-coalescing-operator", +[2,5814,5817], +[3,5818,26], +[2,5819,5728], +[2,5236,77], +[3,5821,31], +[2,5822,4340], +[3,5821,25], +[2,5824,5731], +[3,5825,34], +[2,5826,5734], +[3,5640,25], +"rivate-methods", +[2,5828,5829], +[3,5830,32], +[2,5831,5698], +[3,5830,26], +"operty-literals", +[2,5833,5834], +[3,83,25], +"egenerator", +[2,5836,5837], +[3,5838,26], +"d-words", +[2,4146,5840], +[2,5839,5841], +"short", +[2,3619,1228], +[2,5843,5844], +[2,5236,5845], +[3,5846,25], +[0,1414,2931,2899,8099,1177,3456,4039,4042,4135,8098,1894,4614,91,3401,5601,1006,17529,4057,5552,4071,1011,8097], +"pread", +[2,5847,5849], +"ticky-regex", +[2,5847,5851], +[2,5236,1243], +[3,5853,25], +"ypeof-symbol", +[2,5854,5855], +"unicode-", +[2,5857,1106], +[2,5236,5858], +[3,5859,32], +[2,4635,1108], +[2,5860,5861], +[2,5860,1108], +"sets-regex", +[2,5860,5864], +[2,88,5260], +[2,1593,4097], +[0,1177], +[1,2349,5870], +[0,0,0,5871,2531], +[0,5284,6939,1177], +[1,2349,5884], +"act-jsx", +[2,5839,5873], +[3,5874,30], +"display", +"-name", +[2,5876,5877], +[2,5875,5878], +"-development", +[2,5874,5880], +"pure-annotations", +[2,5875,5882], +[0,5885,5886,5887,2540], +[0,8110,1461,8111,1757,2017,8113,6327,8114,3127,3191,8116,3502,8119,3555,3725,3744,8122,4213,8123,8126,8127], +[0,8129,8130,8132,4856,8136,4863,8139,5087,8141,8144,8146,8147,4874,8149,5090,4880,4883,8152,8155,4891,8157,4892,1009,1011,8158,1311,1567,1584,1593,1596,1628,1651,1843,8160,8161,1177,1938,1959,1961,2135,2651,2675,1192,2822,8163,8165,3190,3471,1894,3720,3775,89,3824,3836,4039,4167,4201,4307,4315,4468,4474,4484,91,8166,1002,2924,4677,4681,4693], +[0,8168,8170,8171,6975,8172,8173,1745,8175], +[3,5856,28], +[2,5888,1508], +[1,2349,5892], +[3,1261,12], +[0,5893,5894,5895,2540], +[0,8181], +[0,90,972,4880,4883,1030,89,3824,8187,1541], +[0,8190,8191,5399,4403,8192,8194,89,3824], +"pirates", +[1,2349,5899], +"clone-deep", +[0,0,0,5900,2540], +[0,8199,2414,8201,8203,6941,8204,1623,2278,6400,5122,8206,6884], +[1,2349,5902], +[0,0,0,5903,2488], +[0,8199,2414,8201,8203,447,8211,1623,2278,6400,5122,8206,6884], +[1,2349,5905], +[0,5906,0,5907,4194], +[0,8218], +[0,2414,7176,8220,1017,8221,1367], +[1,2349,5909], +[0,5906,0,5907,2540], +[1,2349,5911], +[0,0,5912,5913,34552], +[0,53,8229,87,90,92,192,5467,442,449,7008,452,6061,21120,6063,966,968,972,5087,4880,4883,1393,1423,1570,1610,1177,1895,1938,1939,1947,1955,1959,1961,1976,1982,2203,2675,1192,2780,1894,3720,89,3824,4039,4131,4468,4474,4493,91,4523], +[0,8220,2132,89,5284,8221,45], +[1,2349,5916], +"to-fast-properties", +[0,5918,5919,5920,2488], +[2,29288,594], +[0,3951], +[0,5087,4874,1009,1011,1177,1879,1883,1895,1938,1939,1947,1955,1192,2794,1894,4468,4469,4474,4508,91], +[0,91,5130,36,5995,3469], +"@api", +"devtools/json-schema-ref-parser", +[2,5921,5922], +[3,105,13], +"web-", +[2,5925,4963], +[2,5924,5926], +[3,221,10], +"gherkin-streams", +[2,5928,5929], +"@iframe-resizer/child", +[3,5931,16], +"parent", +[2,5932,5933], +"awilix", +"bpmn-js", +[1,2349,5958], +"of", +"-allof", +[2,4381,5939], +[2,2845,5940], +[3,3107,13], +"bbr", +[2,5942,5943], +"ttrs", +[2,5942,5945], +[3,3112,14], +"detabs", +[2,5947,5948], +"multim", +"d-table", +[2,5950,5951], +[2,3108,5952], +[3,4923,13], +"lantuml-ex", +[2,5954,5955], +"task", +[0,5964,5965,5976,4194], +"-lists", +"task-lists", +[2,3108,5960], +"-viewer-element", +[2,3512,5962], +[0,8245,457,1804,8248], +[0,8252,4874,1009,1011,1610,1804,8256,1177,1879,1883,1895,1938,1947,1955,1894,4469,4474,4508,91], +"prince", +"svg-", +"pan-zoom", +[2,5967,5968], +[3,4369,11], +[2,5970,1724], +"reso", +"urce-inliner", +[2,5972,5973], +[2,5925,5974], +[0,91,5130,1804,36,5995], +"-scss", +[2,4323,5977], +[1,2349,5984], +"md", +"bpmn", +"bdd", +"feature", +[0,5985,5919,5986,2488], +[0,457,8263,8264,24156,1364,2863,3951], +[0,91,5130,2026,3469,36,5995], +[1,2349,5988], +[0,5991,5992,5994,34552], +"exit-hook", +[2,1152,5989], +[0,31740,8271,8272,8273], +[0,8275], +"loki", +[0,2220,8277,1745,1783,8278], +"backend", +[1,2349,5997], +[0,5998,5999,6012,2531], +[0,32359,6446,8273,8272], +[0,8286,8275], +[3,107,12], +"y-release-plan", +[2,1133,6001], +[2,6000,6002], +[3,6003,13], +"ssemble-release-plan", +[2,6004,6005], +[3,5522,25], +"onfig", +[2,5518,6008], +[2,6000,2656], +"dependen", +[0,467,2220,8277,1745,1932,1783,8278], +[1,2349,6046], +"ts-graph", +[2,6011,6014], +[2,2183,6015], +[2,6000,6016], +[3,6017,16], +"release-", +"plan", +[2,6019,6020], +[2,6018,6021], +[3,6017,13], +[2,6023,2403], +[2,6000,2942], +"pre", +[2,6000,6026], +[2,6000,3917], +"-skip-package", +[2,4170,6029], +[2,6000,6030], +[2,6000,553], +"write", +[2,6000,6033], +"@man", +"ypkg/get-packages", +[2,6035,6036], +"editor", +[2,26670,26671], +"human-id", +"mri", +"p-limit", +"pref", +"erred-pm", +[2,6043,6044], +[0,6050,0,6051,2540], +"spawndamnit", +"term", +"term-size", +[0,53,87,8292,8294,8296,1165,1195,8297,1593,1610,1628,1630,2092,8301,3177,3561,3618,8304,2278,8306,4111,4383,4027,2924,4677], +[0,2924,8309,8310,4967], +"@mui/x-internals", +[1,2349,6054], +[0,6060,6069,6075,34552], +[3,110,23], +[2,6055,592], +[3,449,25], +"free", +[2,6057,6058], +[0,8317,8320,8321,8324,8325,8328,8330,8333,8335,8337,8339,8341,8344,8346,8348,8350,8353,8354], +"@semantic-release/changelog", +[3,6061,18], +[2,6062,3358], +"hub", +[2,6063,6064], +[2,1457,20], +"peer-deps-external", +[2,4049,6067], +[0,8357,5500,8358,8359,8362,8364,4874,2036,2812,91], +"chat", +"reactjs", +" interface", +[2,4569,6072], +"ui kit", +[0,5130,27,5592,5122], +"unication", +[2,1514,6076], +"conver", +"sation", +[2,6078,6079], +"toolkit", +"library", +"reusable", +"feed", +"social", +"talk", +[1,5298,6088], +[0,8391,6089], +1724872768784, +[1,2349,6091], +[0,6093,6101,6102,34552], +"ckeditor", +[0,8506,3776], +"ckeditor 5", +"-feature", +[2,1459,6095], +[3,6096,10], +[2,6097,1932], +"dll", +[2,6097,6099], +[0,192,5467,8509,8511,6061,6063,16480,1177,2675,2742,8512,2990,1894,4131,1984], +[0,1776,1894,4298,1745,5284], +[1,2349,6104], +[0,6114,6115,6116,2540], +"wysiwyg", +"rich text", +"Editable", +[2,1563,6107], +"edit", +"editing", +"angular2", +"angular 5", +"ng", +[0,5917], +[0,11976,8520,26364,966,968,972,974,4874,4880,8524,8527,8528,8529,1030,1091,8531,1092,6685,8534,8536,6809,7250,1610,8537,8556,8538,7091,8539,2812,2832,8540,3165,8543,8544,8547,3400,89,3824,3833,3951,7080,7103,91,8550,7114,1983,8552,1984,6482,4763], +[0,6659,7020,7130,6663,3833,6482,2812,7080,91,4763,7114,6809,7091,8558,7209,7250,7103,1091,7196,6685,8560,8561,8556,29291], +[1,2349,6118], +[0,6119,5868,6120,2540], +[0,4548], +[0,8571,8572,8573,8570,1885,8574,5592], +[1,2349,6122], +[0,6123,6124,6125,2531], +[0,8579,8582,8585,8181,3021], +[0,4039,188,4639], +[0,188,8588,8591,4967,5130,181,12,4627,4963,5001,837], +[3,153,22], +[2,6126,2389], +[1,2349,6129], +[0,6130,6131,6146,2540], +[0,7905,542,1668,3021], +[0,8597,4039,188,4639], +"ditor-balloon", +[2,151,6132], +"@jest/pattern", +"oper", +"al transformation", +[2,5218,6136], +[2,6135,6137], +"ot", +"colla", +"boration", +[2,6140,6141], +[3,6142,11], +[2,6143,4936], +"real-time", +[0,188,8588,8591,4967,5130,181,4627,4963], +"build", +[2,6097,6147], +[1,2349,6150], +[0,6151,6152,6153,2540], +[0,31874,8604,8605,8611,34224,8612,4174], +[0,8616,8608,4874,91], +[0,8618,8619,8620,1299,200,1523,6876,8622,1836,8623,1179,8624,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,8632,8633,4989,2184,8634,7009,6621,181,8635,4758,8636], +[1,2349,6155], +[0,6156,6159,6160,2402], +[0,4484,2735,8641], +[3,6133,27], +[2,6157,128], +[0,1192,2278,1437,2020,4146,8643,1177,4042,2151,2774,1894,4320,5087,4874,8645,6376,8647,30071,4328,8648,8651,8653,8654,8656,8659,8660,8661,1895,1011,8665,816,8669,8671,1009], +[0,2733,5130,8673,5131,1896,8674,8675,1591,1804,8677,8678], +[1,2349,6162], +[0,0,6163,6169,2540], +[0,4874,668,1894,4384,4483,4508], +[2,117,2414], +"lignment", +[2,112,6165], +[3,132,9], +[2,6157,6167], +[0,200,6876,8691,4964,7201,4719,176], +[1,2349,6171], +[0,6172,0,6174,2540], +[0,8697], +[2,6157,134], +[0,91,1541,3421,1973,4504], +[1,2349,6176], +[0,6177,6179,6180,2540], +[0,8703,8710,8712,8714,1461,8716], +"blurhash", +[0,8719,842,968,972,974,7677,1177,1895,8724,2832,89,3824,91,1983,1984], +[0,4627,4963,8727,4964,5130,4967,8728,8729,5128,89,181,1487], +[1,2349,6182], +[0,6183,6184,6185,2540], +[0,8744,6134,8752,8762,8755,554,4874,1107,1437,1458,29680,2215,8769,8734,8750,8765,8758,2797,8771,8737,8739,8746,2798,8747,8741,3170,3717,4207], +[0,8782,8776,8780,8778], +[0,1166,1172,4504,8784,2022,3497,8786,8787,2765,1192,2832,2899,8788,8790,2907,8791,8795,8745,4384,4389,1973,5472,91,2282], +[1,2349,6187], +[0,6188,0,2523,2540], +[0,6134,8801,8809,8806,4874,4892,1437], +[1,2349,6190], +[0,6191,6193,6194,34552], +[0,1091,1209,1092,8818], +[2,6097,1095], +[0,1166,3421,2832,3875,4484,1177,4039,4042,4474,4508,1894,91,8824,4232,1938,4052,1895,1955,8826,4079,1011,8832,4076,1009,549], +[0,1669,25,1781,8836,4967,1179,6847,7020,8838,2860,2844,8839,8691,8841], +[1,2349,6196], +[0,6198,6201,6202,34552], +[3,191,21], +[0,1673,1209,8846], +"atchdog", +[2,6197,6199], +[0,3421,1192,2832,89,4484,1843,1177,4039,4042,4468,4508,2924,1894,3824,4469,91,5087,4677,4880,622,4863,7948,370,555,560,4883,4230,8849,4681,618,626,8850,1584,1959,1938,4052,6373,1895,1955,2780,811,8853,4079,1011,4076,816,1009,8158], +[0,29,3902,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2349,6204], +[0,6205,6206,6207,34552], +[0,1209], +[0,3421,1192,2832,89,3875,4484,1843,1177,4039,4042,4468,4508,1894,1610,3824,91,5087,3876,4880,4863,555,8824,8860,4884,1959,8862,1938,4052,1895,1955,4079,1011,4076,1009,8158], +[0,89,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2349,6209], +[0,6210,6211,2523,2540], +[0,6059,8918,8923,8928,8926,8934,8921,8913,8931,8932,8894,8916,8892,8897,8906,8900,8887,8910,8902,8890], +[0,8937,5087,1192,4039,91], +[1,2349,6213], +[0,6218,6219,6220,2488], +"ndo", +[2,183,6214], +"select-all", +[2,117,6216], +[0,1110,1282,1437,1537,8942,2070,8944,2822,8947,3072,3181,3188,8949,4039,8951,8952,8954,8957,8959,4431,4562,4600,4603,8962], +[0,1173,8966,1255,1264,1596,1672,2835,2899,3421,8967,4100,4193,4255,4597], +[0,2278,4329,1623,2295,1745,4298,699], +[1,2349,6222], +[0,0,0,6223,2402], +[0,8980,8984,8987], +[1,2349,6225], +[0,6226,6227,6228,2531], +[0,8605], +[0,546,8997,8998,2992], +[0,2991,2992,200,5957,3392,9000,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], +[1,2349,6230], +[0,6231,6232,6233,34552], +[0,1497,4507,8703,3867,9008,9011], +[0,89,3824], +[0,4963,4964,4967,6082,3286,3287,89,181,630], +[1,2349,6235], +[0,6236,6232,6237,4194], +[0,1497], +[0,9026,4963,1666,4967,6082,3286,3287,3811,89,6901,181,630], +[1,2349,6239], +[0,0,0,6240,2531], +[0,4967,582,6082,3286,3287,89,6687,6649], +[1,2349,6242], +[0,0,6232,6243,34552], +[0,4963,8622,4967,6082,5066,3286,3287,89,181,630], +[1,2349,6245], +[0,6246,6232,6247,34552], +[0,9041,3911], +[0,4963,4967,6082,3286,3287,9044,9045,9047,89,181,630], +[1,2349,6249], +[0,6250,0,6251,2540], +[0,9054,595], +[0,89,3286,3287,181,4963,630,6082,4967,1501,5342,5341,9057], +[1,2349,6253], +[0,6254,0,6255,2402], +[0,1497,1639], +[0,89,3286,3287,181,6082,4967,1832,7165,7297], +[1,2349,6257], +[0,0,0,6258,2531], +[0,89,3286,3287,6082,4967,6687,582,6649], +[1,2349,6260], +[0,6261,0,6262,2540], +[0,1497,3847,3559,3744,97,9075,9076,9071,9074,3911,2609,4808], +[0,89,5128,5027,3132], +[1,2349,6264], +[0,6265,0,6266,2540], +[0,97], +[0,89,5128,5027,3132,45], +[1,2349,6273], +"color-parse", +"color-", +"convert", +[2,6269,6270], +"vanilla-colorful", +[0,0,6274,6275,2540], +[0,1192,3348,2675,1177,1209,1593,4474,4508,1894,1317,48,1193,91,53,5087,7819,3400,4870,107,192,5366,87,1978,3957,1895,1955,4514,92,603,9089,1011,5467,1009,61,78,76], +[0,1781,5592,9091,9093,1753,9094,4525,91,4799,5995,6400], +[1,2349,6277], +[0,6278,0,6279,34552], +[0,9100], +[0,1219,1783,9102,89,3984], +[1,2349,6281], +[0,6282,6288,6289,2402], +[0,608,606,1687,1209,3181,814,4135,4227,91,9111,9110,9113,9119,9121], +"@aws/durable-execution-sdk-js", +"vue.js", +"vue component", +" component", +[2,6284,6286], +[0,9125,4870,5251,5254,1177,29339,9130], +[0,91,8172,9132,9133,9134,8623,1745,6432,4056,7897,4042,6374,4643,9135,9136], +[1,2349,6291], +[0,0,6292,6293,2540], +[0,1177,9125,9141], +[0,6869,1745,2295,4298,9132,57,4255], +[1,2349,6295], +[0,6304,6310,6293,2540], +[3,192,12], +[2,6296,1671], +[2,6296,671], +[3,6298,13], +"oad", +[2,6299,6300], +[2,6296,3917], +[2,6296,553], +[0,1091,9153,814,606], +[3,6303,13], +[2,6305,4467], +[2,6296,594], +[3,4872,14], +[2,6308,1698], +[0,1177,9156,5251,9125,9141], +[1,2349,6312], +[0,0,6313,6314,2531], +[0,6283,33639,9163,9167,4874], +[0,9169,9170,9171,9172,9173,9174,33959,33964], +[3,195,10], +[2,6315,2997], +"ngd-transformer", +[2,6315,6317], +".native", +[2,1367,6319], +[1,2349,6322], +[0,6340,6344,6350,4194], +"decache", +"-plugin-", +[2,6324,3665], +[2,3079,6325], +"lunr", +"openc", +"ollective-postinstall", +[2,6328,6329], +"os-name", +"pdfmake", +"sort", +"tablesort", +"vis-network", +[2,6337,6338], +[3,10088,18], +"-list", +[2,10217,6341], +[0,615], +"icky", +[3,197,10], +[2,6342,553], +[0,609,9167,4507], +"semantic", +"actor", +"messages", +[2,698,9352,6349,10029], +"scroll-b", +[0,9169,9170,9171,9172,9173,9174,9182,9183,8172,6671,9184,9186], +[2,6352,1633], +[3,6348,22], +[1,2349,6356], +"cms", +"management", +[0,0,6357,6358,2540], +[0,9193,609,9167,4874,9196], +[0,9169,9170,9171,9172,9173,9174,1383,614], +[1,2349,6360], +[0,0,0,6361,2531], +[0,9203,4967,9204,1283], +[1,2349,6363], +[0,6364,6365,6366,2540], +[0,9213,9215,9217,9218,9219,9221], +[0,192,5467,9225,9226,8648,9227,6494,9231,9237,4874,5542,24360,9240,9241,1170,1364,1527,1594,1610,1652,9242,2026,9243,9244,2131,2212,2559,2832,3310,9245,4218,4220,9247,4339,4342,1531,91,4548,1984,9250,9252,9255,2924,9258,4729], +[0,705,9261,27,2671,4738,4731,1612,9262,3212,4158,5472], +[1,2349,6368], +[0,6265,0,6394,2540], +"@doc", +"search/js", +[2,6369,6370], +"@popperjs/core", +[2,812,4068], +"bundle", +"bundlewatch", +[2,1462,20], +"find-u", +"nused-sass-variables", +[2,6377,6378], +"hammer", +"-simulator", +[2,6380,6381], +"hugo-bin", +"-istanbul-reporter", +[2,2886,6384], +[2,1868,2903], +[2,2898,6386], +"mbine-duplicated-selectors", +[2,3573,6388], +[2,4049,2759], +"twbs-bootstrap", +[2,4942,6391], +"vnu-jar", +[0,89,5128,9267,3132,5027,45], +"-first", +[2,5131,6395], +[1,2349,6401], +"responsive", +"front-", +"front-end", +[0,6402,0,6403,34552], +[0,97,1497,3744,624,9273,9272], +[0,89,5128,9267,3132,5027,620], +[1,2349,6405], +[0,6406,0,6407,2540], +[0,1497,1639,3847,9272,9273,3744,624,97,6372,3911,9284,4808], +[0,89,5128,9267,3132,5027], +[1,2349,6409], +[0,6410,0,6411,2488], +[0,1497,1639,9272,9273,3744,97,4782,9293], +[0,89,5128,9267,623], +[1,2349,6414], +"media", +[0,6416,0,6417,2540], +"media query", +[0,97,9273,4808,1497,3744,3911,6052], +[0,89,5128,9267,9300,3132,5027,3812,9301,9302], +[1,2349,6419], +[0,6420,6427,6428,2531], +[0,9307,9308,9310,9311,9312,9313,9315,9316,9317,1461,1473,9319,9321,9322,2070,2226,9324,9327,9329,9334,9337,9340,3988,9343,9347,9348,9351,4507,4549,4555,2924,9354,9355], +"matches", +"polyfill", +[3,3668,9], +"lugin", +[2,6423,6424], +"pseudo", +[0,9357,9359,9362,9363,4880,4891,1165,1540,3286,3613,89,3824,3958,4383,4493,91,9364,9367,9368], +[0,9102,1745,3287,1783], +[1,2349,6430], +[0,6431,0,6438,2488], +[0,9375,9376,9378,9379], +[3,4325,11], +[2,6432,591], +[3,217,11], +"utility", +"variables", +"vars", +[0,1098,1745,1179,9381,9382,5592,9383,9384], +[1,2349,6440], +[0,6441,0,6438,2457], +[0,4484,628], +[1,2349,6444], +"specificity", +[0,6445,0,6438,34552], +[0,3958,9393,3971,3978,7610,9396,9401,2584,4555,9405,9407,9409,1437,9348,4549,4292], +[2,6447,25240], +[3,465,19], +[3,221,11], +"i-environment", +[2,6448,6449], +[2,3228,5709], +[2,221,6451], +[3,5930,17], +[3,5930,18], +[2,6454,594], +[2,2617,4525], +[2,5928,6456], +"message", +[1,2349,6460], +[0,6480,6483,6506,2531], +"-streams", +[2,6458,6461], +[2,5928,6462], +[3,6463,17], +[2,6464,591], +"tag-expressions", +[2,5928,6466], +[3,5710,9], +"-error-formatter", +[2,6468,6469], +"capital-case", +[2,4250,57], +[2,3827,6472], +"has-ansi", +"knuth-shuffle-seeded", +[2,3060,5056], +"resolve-pkg", +"argv", +"string-argv", +[0,9414,1690,1431,9417], +"util-arity", +"yup", +[0,1429,1363,2899,1177,9420,4039,9422,4474,2182,1894,91,4856,4874,9424,1325,1951,1938,1895,1955,1011,9426,1009,634,9431,9437], +"ompa", +"tibility-kit", +[2,6484,6485], +[2,6448,6486], +[2,5928,3766], +"-xml", +[2,4856,6489], +"@types/d", +"irty-chai", +[2,6491,6492], +[2,4861,674], +"@types/h", +"as-ansi", +[2,6495,6496], +[2,6309,5056], +"@types/l", +"uxon", +[2,6499,6500], +"@types/m", +[2,6502,1950], +"ustache", +[2,6502,6504], +[0,9439,9440,9422,5472], +"@types/mz", +[3,5090,10], +"gress", +[2,6508,6509], +"inon-chai", +[2,5051,6511], +[3,6512,12], +"js__fake-timers", +[2,6513,6514], +[3,4890,9], +"-buffers", +[2,2187,6517], +[2,6516,6518], +"@types/tmp", +"exclude", +[2,1432,6521], +"xml", +"chai-xml", +[2,5313,671], +"genversion", +"reindent-template-literals", +"stream-t", +"o-string", +[2,6528,6529], +[1,2349,6534], +"gherkin", +"tests", +[0,6535,6536,2523,34552], +[0,3368,4248,3483,9447,4135,9448,3727,9449,3084,3181,9451,9452,9455,9456,9459,2613,3386,641,9462,643,9465,3397,9469,9472,9476,9479,9485,638,9490,9493,9496,9501,9510], +[0,4384,3297,9512,1317,4393,9515,9516,26037,9520], +[1,2349,6538], +[0,6542,6555,6556,2531], +[3,6503,10], +"k-fs", +[2,6539,6540], +[0,9493,9479,2070,3181], +"-compare", +[2,5254,6543], +[3,6512,9], +"gnale", +[2,6545,6546], +"mock-pro", +"cess", +[2,6548,6549], +[2,2769,6550], +[2,4135,6543], +"signal", +"signale", +[0,9516,9515,4384], +[0,3378,3409,2977,200,9527,637], +"deven", +[1,2349,6559], +[0,0,6555,6560,2402], +[0,3378,200,640], +[1,2349,6562], +[0,6571,6576,2523,34552], +"toobject", +[3,3568,10], +"urable", +[2,1541,6565], +"promises", +"ReactiveX", +"WeakSet", +"ES3", +[0,641,9479,9539,640,3727], +"cloudsearch", +"uninstall", +"windows", +"cjk", +[0,9516,9515,9542,4384], +"negative", +"shar", +"shared", +"Symbol.toStringTag", +"full-width", +"Object", +"Array.prototype.flatMap", +"Uint8", +"ClampedArray", +[2,6584,6585], +"start", +"starter", +"infer", +"ence", +"inference", +[3,6583,17], +"indLast", +[2,6592,6593], +[1,2349,6603], +"replay", +"[[Prototype]]", +"es7", +"cloud", +"ion", +"formation", +[2,6599,6601], +[0,6604,6612,6617,34552], +[0,9547,9548,9550,3105,2745,9552,9554,9556,9558,9560,9562,3023,9563,4110,7610,9565,9566,3032,9568,3114,9569,9573,9577,5961,9580,9584], +"look", +"last", +"regular expression", +"ECMAScript 2023", +"hot", +"rm -fr", +"chinese", +[0,2070,2899,1448,4255,9586,1389,9588,4257], +"consume", +"look-up", +"ES8", +"rgb", +[0,9591,3987,2195,9593,1783,5980,1745,9595,1936,3378], +"deep-copy", +"iam", +"ES2022", +"tty", +"status", +"length", +"view", +"dom-t", +"esting-library", +[2,6625,6626], +[1,5298,6630], +"elb", +[0,8391,6655], +"getter", +[3,6608,13], +"19", +[2,6632,6633], +"macos", +"__proto__", +"asserts", +"deepclone", +[3,2779,11], +[2,6639,591], +"crypt", +[3,6634,14], +"8", +[2,6642,6643], +"push", +"monorepo", +"lone", +"fast-clone", +"state", +"lru", +[2,1177,1541], +"endpoint", +"a11y", +"weakmap", +1734998400000, +[1,2349,6658], +"streams2", +[0,6664,0,6672,2540], +"scheme", +".json", +[2,3383,6660], +"ajax", +"hookform", +[0,666], +"autoscaling", +"packages", +"linux", +"rfc4122", +[3,2069,10], +[2,6669,1585], +"JSON", +[0,9621,9622,8174,9623,9624,9625,9626,9627,9628], +"matchAll", +"iterate", +[1,2349,6676], +[0,6679,0,6672,2402], +"structuredClone", +"trim", +[0,3420,4484], +"@cfcs/core", +[3,3518,11], +[1,2349,6684], +"findLast", +[0,6699,0,6672,2540], +"arktype", +[3,3833,10], +[2,6686,591], +"prototype", +"sigint", +"sinatra", +"Object.", +"value", +"values", +[2,6691,6693], +"reduce", +"reducer", +"Function.prototype.name", +"lockfile", +[0,683], +"full", +"fullwidth", +"groupBy", +"wait", +"duplex", +"css less", +"helpers", +"optimize", +"optimizer", +"emr", +"nodejs", +"defineProperty", +[1,2349,6717], +"pyyaml", +"call", +"bind", +"callbind", +[0,6719,6722,6672,34552], +"styleguide", +[0,1797,4484,4135,1836,3181,4748,29309], +"watchFile", +"code ", +[0,3420,1192], +"code points", +"Index", +[2,6683,6724], +"Map", +"flatMap", +"l10n", +"WebSocket", +[1,2349,6736], +"utilities", +"high", +"er-order", +[2,6732,6733], +"dataview", +[0,6744,6745,6756,2540], +"handling", +[2,3827,6737], +"define", +"ebs", +[2,1177,1932], +"estree", +[2,6642,2855], +[0,4484,677,666,3527,27921,4480], +[0,3420], +"ES2015", +[3,6608,11], +[2,6747,1278], +"operati", +"ng-system", +[2,6749,6750], +"RegExp#flags", +"loading", +"range", +"rangeerror", +[0,9621,9647,9623,9628,9648,9649], +[1,2349,6767], +"accessor", +"ESnext", +"limited", +"RFC-6455", +"URLSearchParams", +"es-shim API", +"col-buffers", +[2,4900,6764], +"lesscss", +[0,6772,6745,6785,2540], +"nce", +"sequence", +" system", +"file system", +[0,4484,677,4135,666,91], +"pnpm9", +"metadata", +"YAML", +[3,3405,12], +"ES2023", +"es2015", +"simpledb", +"hasOwn", +[2,5010,6972], +"debugger", +" zero", +[2,6577,6783], +[0,9621,9623,9657,9658,9628,9659], +"fast-copy", +"spinners", +"predictable", +"ES6", +"rm", +[3,6583,16], +"contain", +"contains", +[2,6791,6793], +"japanese", +[3,6608,14], +[2,6796,1274], +[2,20413,2659], +"byteOffset", +"setter", +"Object.keys", +"flags", +"key", +"ender", +"ponyfill", +[2,20413,8124], +"logging", +"sns", +[2,4626,1155], +"ses", +"output", +"worker", +"export", +[2,1204,6813], +[1,2349,6819], +"tester", +"waf", +"setImmediate", +[0,6823,0,6826,2488], +"typedarrays", +"walking", +"descriptor", +[0,4484,677,682,666], +"hardlinks", +"buffers", +[0,9621,9624,9667,9626,9627,9628,9649], +"typesafe", +"Set", +"CSS", +"es-abstract", +"agegateway", +[2,4268,6831], +[1,2349,6851], +[2,6838,1172], +"cloudfront", +"7", +[2,6642,6836], +[3,13067,16], +"ES2019", +[2,6855,6872], +"reuse", +"acter", +"character", +"prese", +"rve-symlinks", +[2,6844,6845], +"input", +[3,1461,9], +"Underscore", +"ec2", +[0,6852,6745,6861,2457], +[0,1437,4484,2687,4135,1513,9673,3530,666,3527,27921,53,1710,2858,3404,683,97,29309,87,4232,7913,9676,92,83,71,5757,9678], +"indicator", +"AsyncIterator", +"@vue/cli", +"performant", +"folder", +"Stream", +"0", +"ES2020", +[0,9621,9623,9624,9680,9681,9628,9648,9649], +[1,2349,6880], +[2,6822,591], +"te", +"delete", +"arraybuffer", +[2,6579,6866], +"emit", +"TypeScript", +"batch", +"rds", +[3,4075,18,6], +[2,6896,11100], +"Uint16Array", +"password", +[3,1519,12], +" manager", +[2,3383,6877], +"mru", +[0,6886,0,6895,2540], +"byteLength", +"rate", +"css ", +"variable", +[2,6883,6884], +[0,4484,677,682,666,672,9687], +"speed", +"own", +"has-own", +".env", +"elm", +"ast", +"6", +[2,6747,6893], +[0,9621,9624,9625,9626,9627,9628,9649], +"@vue/cli-", +" compiler", +[2,695,6897], +[3,3938,9], +[1,2349,6906], +"time", +[2,1955,12054], +"bundling", +[2,6916,1987], +"Uint32Array", +[0,6908,6745,6895,4194], +"minimal", +[0,4484,677,4774,29540,666,26784,672,18052], +[1,2349,6924], +"collection", +" css", +"nested css", +"slice", +"has", +"sorted", +[3,4079,15], +"iteration", +"ES2021", +"Float32Array", +"regular", +"idle", +"column", +"Iterator", +[0,6927,6745,6672,2488], +"throttle", +"guid", +[0,3420,1437,4484,4135,1836,3530,666,4748,29309], +[1,2349,6934], +"watching", +"sqs", +"vue 3", +"less css", +"glacier", +[0,6936,6942,6978,2540], +"sett", +[0,687,9704,9706,9708,1676,4135], +"settings", +"ascii", +[3,1920,13], +"break", +"inter", +[0,9712,4856,6503,4874,5254,1429,1488,1567,1177,1891,1893,9714,2205,2899,4193,4474,91], +"internal", +[2,6691,3437], +[2,6747,6836], +"Array", +"Buffer#slice", +[2,6946,6947], +"s3", +"shrinkwrap", +"sham", +"art", +"safe", +":*", +[2,664,6954], +[3,6677,9], +[2,2382,6956], +"Property", +[2,6780,6958], +"korean", +"regexp", +[2,1367,6911], +"beanstalk", +"ES5", +[2,3632,6911], +"take", +[3,6962,10], +[2,6967,695], +"tdd", +"jQuery", +"enum", +"-vanilla", +"enumerable", +"hot-shots", +"JSON-Schema", +"workflow", +"CSSStyleDeclaration", +[0,1890], +"route53", +"wordbreak", +"columns", +[1,2349,6984], +"formatting", +[0,6989,6992,6978,2531], +"one", +"fastclone", +"shebang", +"number", +[0,9704,9706,1676,2205,2755,4484], +"ache", +"elasticache", +[0,4856,9723,4870,6503,4874,9725,8610,1429,1567,1177,1891,1893,9714,1209,2899,3752,4474,91], +[2,6838,7005], +"concurrency", +[1,2349,6999], +"bundler", +"amazon", +"toSorted", +[0,7000,7012,7013,2540], +[0,1107,1112,9730,1480,1676,1797,2179,2709,2755,2984,3181,4135,4290,4351,27921,9731,4720,4726], +"chromium", +"obj", +"await", +"move", +"unit-mocha", +"symlink-dir", +"persistent", +[2,11169,7036], +"terminal", +"coercible", +"ES2016", +[0,5467,19438,691,9712,9736,9737,5366,4856,9417,9740,5245,9741,9723,6503,4874,9743,6513,9746,9749,8610,1317,1429,1431,1529,1610,1177,1891,1895,2675,2990,9750,2899,3421,1894,4172,4193,4474,4481,91], +[0,1890,200,1523,9753,57,7058,6478], +"identifiers", +"includes", +"swf", +"readable", +"protobuf", +"form-", +"validation", +[2,7019,7020], +"RxJS", +"busy", +"fps", +[2,6965,1278], +"-0", +"Observable", +"mixins", +"parents", +[1,2349,7032], +"typeof", +[0,7034,7043,7063,34552], +"interrupts", +[0,688], +"fastcopy", +"brands-svg-icons", +"prune", +[3,6583,20], +[2,7038,2395], +[2,7027,591], +"Microtask", +[2,3768,7041], +[0,5467,19438,9736,9737,4856,6503,4874,1429,1529,1177,1891,1895,2675,2990,2899,1890,1894,4172,4474,91], +"es2018", +"circular", +"streams", +"runtime", +"make", +"serializ", +[2,7049,5218], +"limit", +"Dispatcher", +[2,2013,7052], +"balancing", +[2,3001,7054], +"es2016", +"WebSockets", +"args", +"ath", +"jsonpath", +[2,6796,1276], +"visual", +[0,9760], +"positive", +"es-shim", +[1,2349,7068], +"every", +[0,7079,7088,7093,2540], +"trimRight", +"mimetypes", +"handlers", +"ratelimit", +"signals", +"rmdir", +"es8", +"findup", +"stable", +"robust", +[0,7725,9767,9771,9774], +"superstruct", +".es6", +[2,6910,7081], +"intrinsic", +[3,6948,11], +"curl", +"symlinks", +"ES2018", +[0,9778,9781,9783,9785,9786,4874,7677,668,2086,2070,3297,1894,9794,91,4548,1984], +"writable", +"rapid", +"io-ts", +"weak", +[0,9796,2195,4030,9797], +"throat", +[1,2349,7097], +"restful", +[0,7112,0,7113,2540], +"deep-clone", +"Rx", +"symlink", +"vpc", +"whatwg", +"typanion", +"Float", +"64Array", +[2,7104,7105], +"$.extend", +"Promise", +"Reactive", +"Extensions", +[2,7109,7110], +[0,9804,9807,9810,9811,9813,9815,9819,9821,9829,9834,9838,9841,9843,9846,9848,9849,9850,9852,9855,9856,9858,9861,9862,9864,9866,9869,9871,9873,9874,9875,9878,9933,9935,9937,9938,9940,9941,9945,9949,9953,9955,9957,9960,9964,9967,9969,9971,9974,9977,9979,9983,9985,9986,9989,9991,9993,9996,9998,10001,10004,10006,10007,10009,10013,10014,10016,10019,10021,10024,10026,10027,10030,10032,10034,10037,10041,10044,10047,10048,10049,10051,10053,10055,10058,7127,10060,10063,10065,10066,10068,10075,10077,10081,10083,10084,6336,10088,10092,10094,10097,10102,10105,10107,10110,10114,10117,10119,10126,10128,28711,10130,10131,10132,10134,10135,10137,10139,10142,10144,10145,10146,10147,10149,10151,10153,10156,10159,10162,10163,10165,10167,10170,10173,10178,10180,10183,10186,10188,10191,10193,10195,10197,10198,33633,10200,10201,10203,10204,10206,10207,10208,33138,10210,10213,10216,10219,6339,10223,10226,10228,10229,10230,10231,10234,10235,34233,10237,10239,10241,10245,10247,10248,10249,10250,10253,10255,10260,10262,10264,10267,10269,10272,10273,10275,10276,10278,10280,10283,10285,10290,10291,10292,10293,6348,6351,10295,10300,10302,10304], +[0,188,8588,4967,10307,4963,10309,10310,10313,10315], +"vest", +"from", +"-package", +[2,3250,7116], +[1,2349,7124], +"parsing", +"or", +[2,4358,7120], +".inspect", +[2,614,7122], +[0,7136,7137,7113,2531], +"fromEntries", +[2,6691,7125], +[2,10056,1631], +"getopt", +"-validation", +[2,6659,7129], +"filter", +"Emitter", +[2,2013,7132], +"URL", +"fixed-width", +[0,28591,29506,1473], +[0,10321,4493], +[1,2349,7139], +[0,0,7140,7113,4194], +[0,48,53,87,2071,2323,2332,2361,2367,2450,10327,10328,4039,4320,4323,4361], +"encryption", +[1,2349,7143], +[0,0,7154,7113,4194], +"TypedArray", +"isConcatSpreadable", +"StyleSheet", +"create", +"mkdir", +"mkdirs", +"zero", +"sameValueZero", +"linewrap", +"side", +[0,48,53,87,2323,2332,2361,2450,4039,4320,4323], +"listeners", +[1,2349,7160], +"censor", +"watcher", +"typeerror", +[0,0,0,7166,2540], +"make dir", +"bound", +"patch", +"in-js", +"css-in-js", +[0,10337,10339,10340,5122,5995,977], +"deepcopy", +"setPrototypeOf", +"characters", +"pipe", +[2,6747,2855], +"Push", +[1,2349,7186], +"trail", +"cloudtrail", +"awesome", +"sauce", +[2,7176,7177], +"banner", +"redux-t", +"oolkit", +[2,7180,7181], +"dete", +"rministic", +[2,7183,7184], +[0,7187,0,7195,2540], +[0,10347,10348,703,10351,10353,10354,10355,10357], +"extension", +"lazy", +[3,1705,10], +[2,7190,6877], +"es2017", +"search", +"ES2017", +[0,10337,10339,10340,5122,5995,990,705], +"TypeBox", +" in css", +[2,6436,7197], +"Streams", +"aws", +"console", +"Reflect.getPrototypeOf", +[1,2349,7206], +"directory", +[2,6607,591], +[0,7207,0,7216,2531], +[0,10363,3171,10367,10351,703,10370,10373,706,711,10374], +"colour", +"nope", +"flag", +[3,2982,14], +"syntaxerror", +[3,3904,10], +[2,7213,1974], +"kinesis", +[0,10337,10339,10340,5122,5995,10376], +[1,2349,7225], +"rm -rf", +"exit-", +"exit-code", +"ES7", +"jsdiff", +"private", +"slot", +[0,7237,0,7238,2540], +"sigterm", +"group", +"less.js", +"gdpr", +"east-asian-width", +[3,6820,10], +"Int32Array", +"argument", +"compile", +" less", +[2,7234,7235], +[0,3171,10382,10373], +[0,10337,10339,10340,5122,5995,10376,710,10384], +"callbound", +[1,2349,7243], +"callback", +"installer", +[0,7246,7257,7261,2540], +"256", +"tostringtag", +[0,10389,1170,1364,1437,2026,2220,2222,2659,2674,2817,1209,3776,10397,38,13781], +" data", +[2,7223,7247], +"uted-types", +[2,1534,7249], +"nel", +"channel", +"iterator", +"mapreduce", +[2,7017,3101], +[3,5804,10], +[0,48,53,87,10401,4856,9417,6494,10406,4870,6503,10410,4874,10413,6513,6512,24164,1009,1011,1429,1431,10417,1587,1177,1881,1883,1895,1915,10419,1938,1951,2899,3297,3421,1894,3752,4039,4193,4196,4232,4494,91], +"less mixins", +[2,6796,6859], +"forEach", +[0,10426,10427,5284,10430,5472,10432], +"description", +"Symbol", +[1,2349,7266], +"generics", +[0,0,0,2523,2402], +[1,2349,7269], +"stdlib", +[0,7271,0,7273,2776], +"typed array", +[0,3509], +"call-bound", +[0,6649,6355,89,188,3709,1542,91,5284,4967,5995,2202,181,2130,38], +[1,2349,7277], +"WeakMap", +[2,6691,3426], +[0,7278,7279,2523,2540], +[0,10593,10594,10596,10597,10600,10602,10603,10604,10605,10606,10608], +[0,4856,6503,1429,1628,1863,2297,2881,2895,2897,2900,2904,2899,4039,4940,4307,4508,91,2924], +[1,2349,7281], +[0,0,7294,7302,2540], +"stateless", +[3,6670,11], +[2,7283,6647], +"telephone", +"some", +"efficient", +"_.extend", +"wget", +[3,6594,18], +"lter", +[2,7290,7291], +"remove", +[0,8648,10614,816,10615,966,968,13204,4874,10616,1637,1177,28727,10619,32765,10621,2203,2832,3561,3566,1894,10624,10627,3980,10630,10632,4042,4057,4076,4333,4474,4484,4494,4508,10633,4514,10636,10638,10639,10643,30098,91,10646,4614,32507], +"soft", +"Microsoft", +"styling", +"ie", +"HyBi", +"Int16Array", +"cloudwatch", +[0,6653,7320,10655,10650,10648,1623,4964,9204,10657,10656,1745,10052,10667,1936,10661,4374,3430,5284,10651,10663,4386,10665,10658,10654,10659,91,8295,4270,28842,89,582], +"css nesting", +[1,2349,7306], +"mime-db", +[0,7307,7312,2523,2540], +[0,10675], +"dynamodb", +[2,6642,6893], +"phone", +"Int8Array", +[0,10708,10703,10691,10706,1178,10688,1700,10677,1937,2151,10697,2323,2338,2384,2419,2496,2508,10686,10678,3159,3493,10683,10681,4431,91,10687], +".prototype.flags", +[1,2349,7321], +[3,7313,11], +[2,7315,6913], +[2,7084,7316], +"access", +"ibility", +[2,7318,7319], +[0,7322,7323,7324,4194], +[0,1091,1758,4449,10739,2070,2278,1149,9892,10761,4747,1177,4039,4135,4072,4734,2026,10752,10756,1290,1457,1764,2720,1894,4171,1513,10753,10757,1389,10754,2689,3160,3310,53,3429,10760,104,10759,58,692,4228,10746,101,10737,4005,4562,5216,10748,87,10738,10755,90,10721,1942,3957,68,10723,2851,10744,4851,92,10731,10734,10751,5874,10728,5756,10720,5818], +[0,4389,10763,4232], +[0,10765,4643,200,5130,6400,10766,5131,10768,5995,8889,10769,10771,5256,10772,7028,5198], +[1,2349,7326], +[0,0,7327,7328,2488], +[0,1177,6059,10777,10779,10780,10783,10785,1613,1615,10786,2151,2735,10788,27921,33050], +[0,10791,5130,10792,45,10793], +[1,2349,7330], +[0,7331,7332,7333,2488], +[0,3763,2813,10800,10799,2771], +[0,2675,89,4426,1177,4042,1651,2924,1894,10852,3824,4270,91,5087,4874,4880,10846,10858,3889,10855,10810,192,10837,4883,3885,10805,4057,10808,2686,1959,1879,1938,4073,10848,10854,10828,10831,972,1895,1947,1955,811,10851,10821,4023,10817,10840,968,1011,1961,10815,10841,10811,816,10825,974,10827,4531,5467,1883,10844,1009,6068,10836,5700], +[0,89,4426,10860,10863,10865,10866,10867,10868,4967], +[1,2349,7335], +[0,7337,7338,7339,2531], +"quote", +[0,26364,5917,2696,3875,3950,4022], +[0,5517,53,5652,603,10874,10875,10876,966,972,30788,974,10879,10883,7729,10886,4874,10887,4880,4883,4892,1009,1011,1170,668,10888,1177,1895,1898,1935,1938,1947,1955,1959,1961,2151,2731,2832,2854,3244,3310,1894,3765,89,3824,4039,4201,4484,4493,4494,91,8550,8552,1984,4747], +[0,3875,89,6588,6081,6696,6913,2696,2700,7182], +[1,2349,7341], +[0,7342,7343,7344,2540], +[0,10895,10897,2007,20378,10898,3090,3530], +[0,8850,816,10902,10904,4042,4227,4232,91], +[0,4042,1932,3378,5260,10906,3209], +[1,2349,7346], +[0,7347,7348,7352,2402], +[0,10895,5251,1699,10912,814], +[0,53,5889,5583,811,8850,1856,4042,4227,10916], +[2,7350,7351], +[3,818,9], +"gent-chat", +[0,4042,1932,6778,3378,5260], +"microdiff", +[1,2349,7355], +[0,7356,7357,7359,2540], +[0,1415,4449,1594,1983,1437,2205,3188,3539,668,2026,10923,2602,4213,1457,10947,10925,10927,10929,2858,10930,10931,10933,10935,606,10936,10939,10940,1030,10942,608,603,9110], +[0,10944,3348,89,1177,4039,10946,1984,1894,3824,6520,91,9227,4874,7819,2990,4880,4892,3401,10949,6494,4883,4131,4315,10951,1959,1895,1947,1955,1011,1961,3708,10960,1009,10964], +[2,819,6706], +[0,10946,9134,6869,8172,10966,8623,1745], +[1,2349,7361], +[0,7362,7363,7364,34552], +[0,10973,10981,10984,2161,7610,7353,3266,188,7349,10990,10992,11005,7358,28910,10995,10975,29841,8079,10978,10999,10996,11003,7374,28843], +[0,23531,8648,29273,11016,5337,11018,2611,2832,89,11022,4383,1983,11026,11033,1984,11039,7387,28988,11041], +[0,4627,1745,3452,11043,4386,8124,188,8588], +[1,2349,7366], +[0,7367,7368,7369,2540], +[0,11049,7610,10975,8079,7387], +[0,11051,6798,6806,2078,1983,1984,4745,818,11039], +[0,5592,1745,2078,3452,8124], +[1,2349,7371], +[0,7372,7373,7376,2540], +[0,11064,11065,11066,1699,11071,11073], +[0,11075,11076,11079,11080,11082,11083,4856,6494,11085,6503,1170,1364,1414,1610,2026,2633,2899,11086,3750,4261,4474,91], +[2,7375,582], +[3,11003,12], +[0,13428,1388,11862,11861,11857,8210,11088,8214,27718,8791,181,4967,1098,89,188,5982,6969,1973,5472], +[1,2349,7378], +[0,7379,7380,7381,2402], +[0,11064,11065,11066,11093,1699,11073], +[0,11075,6503,11096,11105,11109,11111,11112,1170,1414,1610,2899,11086,11113,4261,824], +[0,13428,1388,11862,11861,11857,8210,11088,8214,27718,8791,181,4967,5982,6969,1973,5472,824,11116,11117], +[1,2349,7383], +[0,7385,7386,2523,2540], +[2,10829,45], +[0,11124], +[0,11126,11130,11133,11134,11138,668,2675,2832,2990,2899,3421,1894], +[2,11004,23], +[1,2349,7389], +[0,7390,7391,7392,2540], +[0,89,3824,11143,602,7384,11146,11151], +[0,1983,89,4451,3555,29318,3824,16485,91,9311,3975,4880,30157,6271,7610,32415,3120,10895,28829,3968], +[0,1739,1745,4270,29043,10824,11156,29045,1783,29181,6718,25172,4627,4963,89,188,1098,3709,5926], +[1,2349,7394], +[0,7395,7396,7397,34552], +[0,11161,11164,5145,11168,97,8597,449,11172,452,456,11175,11179,11182,11185,11186,11188,1325,11189,1461,1582,1673,11191,11192,5561,11193,11196,11197,11199,11201,11202,11204,11207,5060,11208,11210,11212,11213,11216,11219,11220,11221,11223,11224,11225,11228,11231,11233,3787,11235,11236,11238,11240,11242,3788,11244,11246,11249,11251,3789,3810,11253,11257,11261,3906,11264,4426,4427], +[0,5076,53,11267,11271,368,7948,11273,11274,10875,11275,10821,10825,10827,10828,11277,11282,11285,10837,10841,11288,966,968,972,974,11290,5087,11292,11296,11300,11301,4870,8149,11303,11305,4880,11307,4882,4883,11312,11315,11317,11320,11322,1009,1011,11325,11331,11333,1195,11335,1437,1448,1610,11336,1789,11343,8161,1177,1879,1895,1915,1924,1938,1939,1947,1948,1959,1961,10851,1982,2071,11345,2151,2193,2070,2665,2675,2686,2696,2697,2720,2758,1192,11347,2771,2780,2784,11348,11350,2814,2832,11356,5102,2990,1209,11357,3213,3445,1894,3703,3717,3725,3730,3763,11360,11362,11363,89,3807,3817,3820,3824,4934,11366,11368,11371,11374,3885,11377,11378,3984,3985,11380,11382,11383,4135,4183,4201,4320,11384,11389,4323,11396,11397,4072,4474,4508,91,11400,4676,11401,11405], +[0,5127,4627,4963,4964,5130,4967,89,5128,181], +[1,2349,7399], +[0,7400,7405,7407,2540], +[0,11413,11416,11417,11420,11421,11422,2161,1209,11428,11434,4443,3348], +[2,11425,7402], +"-fork", +[2,12213,7404], +[3,12229,13], +[0,549,4870,11438,7819,1759,1999,3400,3421,11439,4469,11440,4494,1984,4677,4693], +[2,7408,594], +[0,11442,11443,11445,11446,11449,11448,11450,11451,11452,11453,11454], +[3,7403,15], +[1,2349,7410], +[0,7411,7405,7407,2531], +[0,11413,11416], +[1,2349,7413], +[0,7414,7415,7407,2540], +[0,11417,11420,11421,11422,7401,2161,2674,1209,11426,3310,11428,11430,11434,4443,3348], +[0,11436,4870,4874,11438,7819,1166,1759,3400,1894,11439,4469,4474,11440,4487,4490,91,2924,4677,4693], +[1,2349,7417], +[0,7418,7419,7420,34552], +[0,2203], +[0,107,442,7844,11470,1177,1895,1953,1972,3709,91,4523], +[0,1177,1541,7625,3709], +[1,2349,7422], +[0,7423,7424,7425,2531], +[0,26364,23826,11477,1082,977,11478,11479,2929,3090,11480,11481,5152,4200], +[0,13471,8648,840,11485,4874,5162,11486,4042,3709,4359,91,1983,1984], +[0,5130,11489,3709,5167,1983], +"location", +[1,2349,7428], +[0,7429,7430,7431,2531], +[0,30023,11501,1699,3090,11497], +[0,2278,1983,3709,5245], +[0,11504,11506,1983,3709], +[1,2349,7434], +"routing", +[0,7435,7437,7438,2531], +[0,53,11516,87,90,92,11518,11520,11522], +"redirect", +[0,1195,3150,4027,2924], +[0,11525,8221,89,2924,11526], +[1,2349,7440], +[0,7441,7442,7443,34552], +[0,11533,11534], +[0,11536,28491,1610,91], +[0,11538,11539,1172,91,9561,2924,11540], +[1,2349,7445], +[0,7446,7447,7448,2531], +[0,1367,6372], +[0,2070,2323,1192,2278,4039,3561,1894,1587,2504,4320,2464,91,4874,1165,2482,3678,4330,11598,11592,11591,11595], +[0,4329,4963,5926,11600,11601,6082,8727,181,4967], +[1,2349,7450], +[0,0,2684,7451,2402], +[0,11608,11609,11612,11613,190,11615,11617,4967,91,5284,11619,11622,11624,11626,11627,11630,11631,11633,11634,11636,11639,11640,32767], +[1,2349,7453], +[0,4442,4444,4458,2540], +[1,2349,7455], +[0,7456,7457,7458,2488], +[0,97,1562,4484], +[0,53,83,87,92,19181,442,8648,5583,811,816,6373,10615,11796,4874,1009,1011,1208,1177,1895,11935,11938,11940,11943,3401,1894,4042,11802,4172,11803,91], +[0,965,1936,11806,11807,5284,11815,8221,91], +[1,2349,7460], +[0,7462,7468,2523,2540], +"pkgroll", +[0,11821], +"create-vue", +[2,7467,7472], +[2,7466,7469], +"create-e", +[3,11821,16], +[0,972,30788,4880,4883,1030,1597,3401,89,3824,5564,7464,27122], +"slint-config", +[1,2349,7471], +[0,7462,7473,7474,2531], +"persist-client-core", +[0,3709,4355,5160,1972,11827,1011,27122,840], +[0,32401,3766,3709], +[1,2349,7476], +[0,7477,7478,7479,2540], +[0,11833], +[0,11835,5087,1009,11837,1177,1886,11840,1895,1955,1958,1192,2780,2821,1776,3165,4468,4469,91], +[0,11842,11843,11846,11847,6875,4967,5576,4978], +[1,2349,7481], +[0,7482,7483,7484,2531], +[0,97,966], +[0,1651,91,11853,3400], +[0,5472,1651,181,965,11857,6564,11861,11862], +[1,2349,7486], +[0,7487,7488,7489,2540], +[0,11357,11869,3527,3717,97,51,11868,11871], +[0,2832,91,11853,1393,1423,11875,968,11884,11879], +[0,5472,181,965,2832,2275,11857,6564,11861,11862], +[1,2349,7491], +[0,7492,7493,7494,2540], +[0,11891,11869,11890,3527,63,11871], +[0,2832,2022,4042,1984,91,11853,11893,3717,11899,811,11884,11896], +[0,5472,965,1192,2832], +[1,2349,7496], +[0,7497,7498,7499,2402], +[0,1437,11891,2777,3717,11907], +[0,1192,2675,89,1177,1894,48,1527,91,53,5087,4880,3720,3857,97,4131,5091,3904,11909,1652,4889,5085,5103,11912], +[0,5472,1975,1192,3857], +[1,2349,7501], +[0,6265,7502,7503,2531], +[0,966,968,4880,4883,1437,11918,2777,11853,3401,89,3824,4039,91], +[0,5472,89,181,965,2832,2275,11857,6564,11861,11862], +[1,2349,7505], +[0,0,7506,7507,2540], +[0,2742,2832,89,2022,668,4474,11944,3824,11890,91,11853,4880,11875,11952,11943,11931,11938,11929,966,11948,11935,972,11933,11940,968,5556,11925,6515,1915,11924], +[0,7214,6627,89,5472], +[1,2349,7509], +[0,7510,0,7511,34552], +[0,11959,12003,978,989,991,993,996], +[0,11961,38,5995,27,5130,5592], +[1,2349,7513], +[0,0,0,7514,2488], +[0,11961,10339,10340,5122,5995,977], +[1,2349,7516], +[0,0,0,7520,2457], +"fp", +"drag", +"react ", +[0,11961,10339,10340,5122,5995,2947,977], +"animation", +[2,7519,7521], +"pure", +"fantasy-land", +[2,4570,7046], +[3,5941,12], +[2,7526,1155], +"framer", +[3,7527,19], +[2,7529,6600], +"pose", +"tacit", +[1,2349,7536], +"balanced", +"react pose", +[0,7537,7538,7539,2540], +[0,11974], +[0,1414,4494,2675,91,4874,975,11976,192,11978,5467], +[0,11961,10339,10340,5122,5995], +[1,2349,7541], +[0,0,0,7542,34552], +[0,11961,10339,10340,5122,5995,984], +[1,2349,7544], +[0,0,0,7545,2488], +[0,11961,10339,10340,5122,5995,986,11988,10345], +[1,2349,7547], +[0,7548,0,7549,2540], +[0,987], +[0,11961,10339,10340,5122,5995,988,2739,11995,11996], +[1,2349,7551], +[0,7552,0,7553,34552], +[0,10347,1001,12003,1003], +[0,11961,10339,10340,5122,5995,990,705], +[1,2349,7555], +[0,7556,0,7557,2540], +[0,11974,3171,12011,978,980,12016,991,997], +[0,11961,10339,10340,5122,5995,10376], +[1,2349,7559], +[0,7560,0,7561,4194], +[0,11959], +[0,11961,10339,10340,5122,5995,38], +[1,2349,7563], +[0,7564,0,7565,34552], +[0,3171,985,12027], +[0,11961,10339,10340,5122,5995,10376,710,10384], +[1,2349,7567], +[0,7568,0,7569,2488], +[0,3171,12027], +[0,11961,10339,10340,5122,5995,990,705,1000,5284], +[1,2349,7571], +[0,0,0,7572,34552], +[0,11961,10339,10340,5122,5995,990,705,1002,3634,3766], +[1,2349,7574], +[0,0,0,7575,2531], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094], +[1,2349,7577], +[0,7578,0,7579,2488], +[0,12099,12103,12104,12105,4484], +[0,12108,7188,5995,11100,6740,5592], +[1,2349,7581], +[0,7586,7587,7588,2457], +[2,7583,7584], +[3,439,8], +"react/eslint-plugin", +[2,5557,26375], +[0,2687,5569,12118,1012,12121,12123,12124,5604], +[0,1091,3127,1984,1894,12126,9363,4880,3117,12127,4555,8818,7677,3137,12133,5551,12137], +[0,1177,6741,6939,91], +[1,2349,7590], +[0,7591,7592,7593,34552], +[0,1676,5552,12124,5604,12145], +[0,1984,7677], +[0,6892,5286,5284,91,57,5341,1177], +"point-free", +"curried", +[1,2349,7599], +"gestures", +"3d", +[0,7600,7592,7601,34552], +[0,5552,439,5604,12145], +[0,1177,91,6742], +[1,2349,7622], +[3,346,11], +"abs-extension", +[2,7603,7604], +"cssfilter", +"root-node-polyfill", +[2,2183,7607], +"slugger", +[2,2287,7609], +"deflist", +[2,3108,7611], +[3,5953,13], +"eta", +[2,7613,7614], +"sup", +[2,3108,7616], +[3,3125,13], +"rule-", +[2,7619,6706], +[2,7618,7620], +[0,7626,7629,7649,4194], +[3,346,10], +[2,7623,5891], +[3,1879,13], +[0,365,370,12159,1461,12160,12163,1832,12166,12170,2609,1209,12172,3220,3744,12173,11202,12175,11216,11224,3787,3789,3849,11374,3911,4023,4163,4649,12176], +[3,3703,9], +[2,7627,1541], +[0,48,53,61,71,83,85,87,90,92,192,5467,968,972,4859,5540,4870,12179,4880,4883,1009,1011,12182,12184,1170,1178,1193,1195,12186,1210,12191,12193,1527,12195,1628,1652,1843,1845,8160,1177,1959,1961,2092,2151,2651,2675,1192,12196,11348,12198,2990,3177,3222,3463,1894,3786,89,3824,3895,3904,4257,4307,4320,4946,12201,12205,12206,91,4537,4027,2924,4676,4677], +"sconfig", +[2,7603,7630], +"@types/css", +"ithub-slugger", +[2,5246,7633], +[3,4869,9], +"-yaml", +[2,7635,7636], +"arkdown-it", +[2,6502,7638], +"-attrs", +[2,7639,7640], +"anitize-html", +[2,5051,7642], +[2,1368,4406], +[2,668,7644], +[3,5961,13], +"estgen", +[2,7646,7647], +[0,89,5128,4627,4963,4967,12208], +"yandex", +"yfm", +[1,2349,7653], +[0,7654,0,7655,34552], +[0,1497,2813,1209,3266,12224,9355,12220,12226,12233,12217,12222,2626,12215,12219,12232,12216,7406,7403], +[0,6108,6038,5130,1936,12236,1932,6106,12214,6105], +"magic-", +"bytes.js", +[2,7656,7657], +[3,347,11], +[2,7659,614], +"discord-", +"api-types", +[2,7661,7662], +"@sapphire/snowflake", +[2,7659,6910], +[3,7664,10], +"async-queue", +[2,7666,7667], +"@vladfrangu/async_event_emitter", +[1,2349,7691], +"turbo", +[2,7659,3888], +[3,4828,16], +[2,7673,1803], +"@vite", +"st/coverage-v8", +[2,7675,7676], +"@favware/cliff-jumper", +"-pretty", +[2,4525,7679], +[2,1876,7680], +"extract", +"extractor", +[2,4610,7683], +[2,7659,7684], +"esbuild-", +"plugin-v", +"ersion-injector", +[2,7687,7688], +[2,7686,7689], +[0,7694,0,7695,2531], +"discordapp", +"discordjs", +[0,1018,1025], +[0,10039,12244,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +[1,2349,7697], +[0,7698,0,7699,2540], +[0,12253], +[0,1017,12255,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +[1,2349,7702], +"generated", +[0,7694,0,7703,2540], +[0,6847,12260,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +[1,2349,7705], +[0,7711,0,7712,4194], +[3,5923,13], +[2,4364,57], +[2,7706,7707], +"@aws-sdk/client-s3", +[2,7623,5576], +[0,12265,1025], +[0,1022,12268,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +"ranslation", +[2,3118,7713], +[2,7623,7714], +[3,7715,11], +"ermaid-extension", +[2,7716,7717], +"openapi-", +[2,7719,7188], +[2,7623,7720], +"yfm2xliff", +[2,352,7722], +[3,692,9], +[2,7724,364], +[3,4869,11], +"-safe", +[2,2849,7727], +[2,7726,7728], +"@yandex-cloud/nodejs-sdk", +"bem-cn-lite", +[1,2349,7736], +"nanostores", +"threads", +[2,7734,4406], +[0,0,0,7741,34552], +[2,4807,1149], +[3,4856,10], +"lk", +[2,7738,7739], +[0,594,12274,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +[1,2349,7753], +"tml-escaper", +[2,6495,7743], +"ime-types", +[2,6502,7745], +[3,5055,9], +"elljs", +[2,7747,7748], +"@types/t", +"ar-stream", +[2,7750,7751], +[0,7754,7756,7757,2531], +[0,3763,1594,2026,1000,1536,12286,12285,12287,12284,1032], +[2,12302,26070], +[0,1192,4135,4468,4342,1193,91,53,9227,5087,4874,12292,11976,6494,12290,9240,7806,7708], +[0,12294,4967,970,12295,12296,5983,6802], +[3,7639,15], +[2,7758,671], +[3,7730,14], +[2,7760,7625], +[2,7760,7628], +[2,7760,2190], +[1,2349,7765], +[0,7766,7767,7768,2540], +[0,34690,12301,7733,28314,7755,12305,12307,28554], +[0,4481,4494,4493,1983,2675,1177,4039,12309,1984,668,3561,23535,4320,3350,3541,28464,4201,4360,91,4874,2990,3400,4880,29000,29038,11976,30684,17214,4328,33264,33385,34203,4523,34205,7677,33382,5517,5530,34207,4323,12312,32818,5535,12315,30630,11396], +[0,11608,12318,12319,12322,12324,12326,12328,12329,12331,11612,12334,12336,11010,12337,12338,190,12339,4967,91,12342,12346,12348,12349,12350,11619,11622,11624,12354,12355,11640], +[1,2349,7770], +[0,7771,7772,7773,2531], +[0,1593,4376,53,1393,3090,87,3957,12361,5658,5660,5778,5810], +[0,20378,1983,1082,1531,3527], +[0,4967,1983,11504,1028], +[1,2349,7775], +[0,7776,7777,7778,34552], +[0,53,3878,10879,28465,12370,12372], +[0,89,1531,28865,3824,30521], +[0,1172,27158,89,3878,1983,11504], +[1,2349,7780], +[0,7781,7782,7783,2531], +[0,1012,2071,4523,4630], +[0,5536,4874,1177,1988,2020,7461,1894,4494,91,1984,188], +[0,188,7463,7465,1177,91], +[1,2349,7785], +[0,7786,7802,7825,2402], +[0,1091,1092,12384,2657,12385,3509,38,4151,7707,5971,4745], +[3,980,17], +[2,7787,57], +"encrypt", +"encrypter", +[2,1576,7790], +[2,3115,1623], +[2,2287,7792], +"greenlock-express", +"memoryst", +[2,7795,147], +"minisearch", +"selfsigned", +"sitemap", +"sql.js", +"workerpool", +[0,2026,2899,4255,4342], +"ody-parser", +[2,4853,7803], +"mpression", +[2,4860,7805], +"-session", +[2,6494,7807], +"ormidable", +[2,5537,7809], +"mpts", +[2,6508,7811], +[3,7643,9], +[2,7813,367], +"ql.js", +[2,5051,7815], +"@types/u", +"uid", +"@types/uuid", +"@types/w", +"orkerpool", +[2,7820,7821], +"wasm", +[2,7686,7823], +[0,2026,3452,8124,1745], +"razor", +"sqlite", +"aspx", +[1,2349,7830], +[0,7831,7832,7835,2531], +[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12405,12406,1582,1699,12409,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,3788,11244,3789,3810,5564,3846,12435,12438,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12444,12445,4549,4555,12447,1002,12448,12449,12452], +[0,192,5467,7634,12455,12458,7637,12459,4874,12461,8149,4880,4882,4883,12462,12463,12467,1177,10321,2071,2079,12471,12472,2675,2990,1894,3706,3708,89,3824,4320,4474,91,1984,12473,12475], +"@dnd-kit/core", +[3,7833,9], +[0,1179,12445,2924,89,12478,12479,1783,4963,1745], +"modifiers", +[2,7834,7836], +"sortable", +[2,7834,7838], +[2,7834,6731], +[1,2349,7843], +"ui-components", +[0,0,0,2523,2488], +"@stylistic/eslint-plugin-js", +[3,7844,11], +[2,4324,1932], +[2,7845,7846], +[1,2349,7852], +"@wordpress/api-fetch", +[3,7849,11], +"block-", +[0,0,7853,7859,2540], +[0,4874,1009,1011,1177,1881,1938,4039,4042,4076,91], +"ion-", +[2,7854,1464], +[2,7682,7855], +[2,5313,7856], +[2,7850,7857], +[0,5995,12586,12588,12589,12590,12592,12593], +[1,2349,7861], +[0,7864,7865,7866,2540], +[2,7153,694], +[2,5335,7862], +[0,12600], +[0,53,5241,87,94,12602,12604,6503,4874,1145,1503,12607,1177,2297,2881,2886,2895,12609,2897,2900,2910,2899,3400,3421,3456,4039,4042,4045,12611,4055,4067,4071,4075,12613,4474,12614,91], +[0,12616,7102,2013,2018,12617,12618,12621,12622,12620,6553,1858], +[1,2349,7874], +"promis", +"ify-", +[3,1455,13], +[2,7869,7870], +[2,7868,7871], +"swc-loader", +[0,7875,7876,7878,2531], +[0,3173,12627], +[0,3421,2899,1177,1693,1954,1938,1958,1903,1948,1970], +"ol", +[0,1563,12631,8316,1080], +[1,2349,7882], +"mixin", +"WordPress", +[0,7883,7884,7885,2531], +[0,1149,1362,1209,3230,1552], +[0,2899,1429], +[0,2663,1081,5122], +[1,2349,7896], +[3,4872,15], +"amelcase", +[2,7887,7888], +[3,7746,9], +"nimist", +[2,7890,7891], +[3,5090,9], +"etty-ms", +[2,7893,7894], +[0,7898,0,2523,2402], +".d.ts", +[0,1082], +[1,2349,7901], +"definitions", +[0,7902,7903,7904,4194], +[0,1170,1437,1525,2088,2151,2720,3467,7956,4183], +[0,811,8850,816,10615,12654,4864,12656,4866,4874,4039,4042,8849,11054,4076,12206,4484,4487,91], +[0,200,1085,188,89,12659,12660,91,6710], +[2,363,3428], +"memoize", +[2,363,7906], +[3,370,10], +"erialize", +[2,7908,7909], +[3,1212,14], +"acros", +[2,7911,7912], +"root", +"find-root", +[1,2349,7918], +"stylis", +[0,0,7923,7924,2540], +[3,5272,14], +"d-nodes", +[2,7919,7920], +[2,1174,7921], +[0,1429,2685,2899,1894,4039], +[0,2056,3164,12666,4560], +[1,2349,7926], +[0,0,7927,7928,2531], +[0,2899], +[0,12674,1087,2124,12619,12675], +[1,2349,7930], +[0,7934,7936,7938,4194], +[2,366,6990], +[2,7908,5375], +[2,363,594], +[0,12680,12681,1676,12685,5303], +"@definitelytyped/dtslint", +[0,5245,12688,6501,4874,7677,4193,4474,4494,1984], +"import-cwd", +[0,12692,12693,1605,12694,4116,8791], +[1,2349,7947], +"is-pro", +"p-valid", +[2,7940,7941], +[2,363,7942], +[3,7933,10], +"se-insertion-effect-with-fallbacks", +[2,7944,7945], +[0,7949,7950,7951,2776], +[2,363,89], +[0,43,46,1093,1116,1132,1140,1298,1316,1318,1321,1322,1336,1339,1342,12701,1344,1346,1348,1350,1352,12703,1354,1356,1358,12704,1376,1386,1402,1425,1428,12705,1440,1450,12708,12709,12710,12711,12714,1663,1706,1711,1715,2019,12715,12719,2058,2059,2177,2217,12720,2563,2567,2605,2606,12722,2723,2950,2954,2957,12726,2962,3086,3099,12730,3134,12733,3186,3240,3245,3262,3295,3439,12736,3443,3472,3535,3558,12737,3777,3931,12740,4105,4124,12743,12747,4168,4173,4177,4192,4206,4235,12749,4236,4258,12750,4267,4338,12755,4347,4352,4370,4433,4456,4461,12756,12757,12760,4548,12763,12764,4724], +[0,4880,4883,2079,89,3824,91], +[0,4627,4963,4964,5130,4967,89,5128,181,4653], +[1,2349,7953], +[0,7954,7955,7958,2540], +[0,12771,12773,12775,1389,12776,1536,1676,12777,12779,2026,12783,12785,2659,12788,2822,12789,12792,12793,3183,12795,12799,12802,3923,12809,4153,4165,12812,12814,12818,3348,4650], +[0,12820,1610,2554,3421,12823,4255,4389,4400], +[2,17912,7957], +"estimator", +[0,1090,1388,12826,4384,4389,5472], +[1,2349,7960], +[0,7961,7962,7963,2531], +[0,2069,12832,12834,12837], +[0,12839,811,8850,816,10817,4856,6503,4874,12842,1009,1011,1092,1389,1429,1610,1673,12846,1177,1895,2070,2675,12847,2806,2820,12848,2297,2881,2900,2990,2899,12849,3310,3421,1894,12850,4042,4073,4474,12851,91,12852], +[0,6671,2844,1155,7020,2860,2845,7527,7530], +[1,2349,7965], +[0,7966,7967,7968,2540], +[0,1091], +[0,12839,5087,4874,1009,1011,1091,1177,1895,2675,1192,12848,2990,1894,4468,91], +[0,12860,6975,1671,7020], +[1,2349,7970], +[0,7971,7950,7951,2402], +[0,43,46,1450,3777,4548], +[1,2349,7973], +[0,6205,7974,7975,34552], +[0,3460,12870], +[0,1094], +[1,2349,7977], +[0,7978,7979,7980,2540], +[0,12879,4567], +[0,12882,2899,3421,4535], +[0,12884,12886,12887], +[1,2349,7982], +[0,0,7983,7984,34552], +[0,2278], +[0,1623,2278,181,6398,6400,2869,12893], +[1,2349,7986], +[0,0,0,7987,2531], +[0,1098,5130,1388,12899], +[1,2349,7989], +[0,0,0,7990,34552], +[0,1098,5130,1388,7521,12899], +[1,2349,7993], +[2,27465,3469], +[0,7994,0,7996,2531], +[0,12910,12914,19,21,24,12915,12917,1149,1165,1437,1532,1628,1637,1676,12918,1687,12923,12925,12926,2054,2092,7076,2151,12929,2070,2651,2712,2720,12930,2843,2921,2925,695,2969,1209,3181,12935,3342,3368,3459,3467,3560,3618,3786,3981,814,4039,4085,4111,12936,4135,12937,4230,12944,4307,4333,4334,1241,4430,91,4027,4648,2924,4681,4689,4695,4769], +"blurup", +[0,1098,1102], +[1,2349,7998], +[0,0,0,7999,2540], +[0,12074,29,1388,12899,5027,12951,4963], +[1,2349,8001], +[0,0,8002,8003,2488], +[0,6323,2398,12956,2899,4425], +[0,7244,1111,12958,12959,12961,12963,12964,12965,12966,12967,12968,12969,12970,12971,12972,12973,12974,12975,12976,4984,12977,200,12978,1473,1512,7208,9753,6876,7201,12979,12980,6983,12981,12982,12983,12984,12986,12987,2929,3073,6807,12990,12991,10958,6616,4166,12992,12994,1871,590,592,7009,2585,6621,12996,12997,4744,12998], +[1,2349,8005], +[0,8006,8007,8008,34552], +[0,6639], +[0,4874,1166,4481,1906], +[0,1111,7009,7201,200,1871,6621,1867,1106,6983,4166,4744,3073,6807,6876,2585,13005,6769,12619,1501,5281,13006,8628,13007,1468,13008,13009,13011], +[1,2349,8010], +[0,0,8011,8012,2402], +[0,1906,1166,4481,1107], +[0,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,6876,2585,1108,6961,23,3529,1973,2100,13017], +[1,2349,8014], +[0,0,8015,8016,2531], +[0,1906,1166,4481,13024], +[0,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +[1,2349,8018], +[0,0,0,8019,34552], +[0,1111,1512,200], +[1,2349,8021], +[0,8022,8023,8024,2457], +[0,11161,13035,97,8597,7905,13037,13038,13042,1156,1639,1673,13045,13047,1209,3021,4023,11264,1849,7917,4427,13049,4649], +[0,48,53,61,73,76,78,13051,81,5806,13052,5835,83,5853,5889,85,87,92,192,5467,692,5583,7806,4864,5087,13055,5139,13057,7639,4874,13059,1009,1011,1028,11016,13061,13063,13067,13069,1031,11018,13072,10984,13077,1082,13078,1165,1170,1178,1193,1195,1205,13080,1208,13085,1426,1437,1448,1503,12405,13086,1525,13088,1610,1628,1630,13089,1668,13090,13092,11343,13093,668,8161,1869,1177,1895,1937,1938,1939,1948,13097,1955,1988,2071,11345,2151,2070,2205,2226,2323,2338,13099,2529,2651,2675,13101,13103,1192,2780,2784,13105,13108,2817,13110,4868,695,2969,13115,13118,2990,13119,3105,3107,3112,3114,13122,3127,13123,3177,3183,3188,3213,3220,3412,3561,3618,1894,3720,3725,3730,3786,9340,3992,13124,13127,8304,13128,4039,13129,13131,4135,4207,13134,4307,4320,11384,11389,4323,11396,4328,4409,4431,4443,4468,4469,4494,4508,91,13135,4549,4027,11400,1983,188,13138,13142,4630,4633,13145,4634,13149,4639,4640,13151,4646,2924,4676,4677,4681,4689,13152,11401], +[0,188,8588,5127,4964,1114,13154,4627,4963,181,5130,4967], +[1,2349,8026], +[0,8027,8028,7397,2540], +[0,1497,1673,97,5145,4427,11161,7992,27467,33386,33387,11185,33389,33393,11164,33396,33397,33399,33401,33403,33404,33406,33417,13166,33418,33422,33423,33424,33426,13169,8048,33428,33430,33431,33433,33436,33441,33443,11168,33444,33447,13159,33449,13162,33450,33451,11264,13165,33452], +[0,1091,3467,26713,4390,4494,1789,2070,1192,3445,1170,1437,11336,2675,2696,2742,2832,13233,3549,89,4164,1759,1177,2079,2814,1209,3984,4039,13241,4135,1086,13078,25131,3725,4508,2924,1634,2151,2193,11347,3183,3213,1894,13243,11401,1610,16473,2071,5102,11357,3758,11360,3824,13214,13215,3310,3560,3985,3988,4183,4201,91,5087,4874,12424,2665,2990,3839,11380,368,13204,13210,4880,13223,33230,11362,13245,33461,7833,692,11301,4870,5254,11325,3330,3717,13235,3999,11976,7948,27424,13194,13196,11290,8149,11322,7610,11350,27047,11273,11275,16934,4864,11292,7892,6510,13213,4934,10875,13205,4883,2758,2771,13232,3885,11377,3978,5076,33233,7839,8998,29467,7837,7840,643,13200,1939,2686,11366,11400,13198,2584,11348,25366,966,11331,1924,2784,11368,13175,972,1947,2780,13182,13203,13228,11356,4676,11320,3749,13192,968,1961,33635,11300,13221,13187,7582,974,7585,13178,11312,26969,11382,11371,11296,13188,11274,13240,13189], +[1,2349,8030], +[0,8031,0,2523,2531], +[0,3445], +[1,2349,8033], +[0,8034,7950,7951,2540], +[0,43,46,1093,1132,1140,1298,1316,1318,1321,1322,1336,1339,1342,1344,1346,1348,1350,12704,1376,1386,1425,1428,1440,1450,12709,12714,1663,1706,1711,1715,2019,12719,2177,2217,12720,2563,2567,2606,12722,2950,2954,2957,2962,3086,3099,3134,3186,3240,3245,3262,3295,3439,12736,3443,3472,3535,3558,12737,3777,4124,12747,4173,4177,4192,4206,4235,12749,4236,4258,4267,4338,12755,4347,4352,4370,4433,4456,4461,12756,12757,12760,4548,12763,12764], +[1,2349,8036], +[0,8037,8038,8039,2488], +[0,5381,5383,5446,5394,5408,13261,13262,5458,5461,32772,13264,13267,13272,2993,5438], +[0,5400,5402,5405,13276,5453,5456,192,5467,13280,5470,5473,13282,5474,5476,5478,13286,13287,1364,1699,1177,1895,1999,2026,2151,2675,2822,2990,3246,3300,3561,4039,4042,13289,10854,4193,4449,91,5480,4535,13291,3348], +[0,5926,13293,5592,1117,1745,13294,3422], +[1,2349,8041], +[0,8042,8043,8044,2540], +[0,1367,1525,13302,8161,13304,2151,2070,2036,2685,2814,13305,1209,3105,3363,3725,4135,4307,2924,4677,4709], +[0,4870,6503,4874,1177,13311,1903,1938,1954,1958,2899], +[0,5592,1118,2295,1745,4030,7096], +[1,2349,8046], +[0,8047,8049,8050,2540], +[0,13319,1797,4135,4562,4747], +[2,41,27443], +[0,9741,4874,5254,4892,1166,2151,91], +[0,1118,1783,13322,5592,2295,1745,1179,13325,200,13326,6876,4030,7096,13327,13328], +[1,2349,8052], +[0,8053,8054,8055,2531], +[0,1676,13333,3313,2863,4593], +[0,1429,1431,2899,4193,4196], +[0,13336,6645,13338,13339,13340,586], +[1,2349,8057], +[0,8058,0,2523,2540], +[0,13345,13346,5506,5514,4484], +[1,2349,8060], +[0,8061,0,8062,4194], +[0,13352,13345,1127,13346,5513,5514,4484,13351], +[0,5286,6778,13354,5284,13356,3378,89], +[1,2349,8064], +[0,8065,8066,2523,34552], +[0,13346,5514,4484,5515], +[0,13364,5087,4874,2220,2222,1192,4039,4042,4468,4487,91], +[1,2349,8068], +[0,8069,8070,2523,34552], +[0,1127,13370,4484], +[0,13364,5087,13372,2086,2220,2222,1192,13374,4039,4042,4468,4487,91], +[1,2349,8072], +[0,0,8073,8074,34552], +[0,1503,1596,13379,1652,2194,2759,2899,3202,3215,3421,4131,4585], +[0,7914,3403,6435,614,202,1237,5260,13382,3209,1896], +[1,2349,8076], +[0,8077,8078,8080,2540], +[0,13387,13388,13390,13394,13395,1170,1362,13396,1209,3084,3220,3222,13399,4135,13400,4729], +[0,13406,13411,13412,6061,6063,13414,4870,6503,4874,13417,5254,9241,10780,1429,1431,1570,2899,1894,4131,4193,4474,91,4739], +[2,8182,553], +[0,13426,12296,5472,13428,5131,13429], +[1,2349,8082], +[0,8083,8084,8085,2402], +[0,13446,13437,13512,13471,13508,13476,9637,13474,13497,13495,13500,13454,13502,13504,13510,13493,13507,13456,13479,13488,13484,30243,13467], +[0,3421,3297,2899,4193,1177,1894,91,13514,4874,6503,6513,5254,1954,1011,13518,1009], +[0,13524,13525,13526,13529,13530,13531,6599,13532,13535,13538,13539], +[1,2349,8087], +[0,8088,8089,8090,2531], +[0,13547,13551,13554,13558,13559,13560], +[0,13564,5087,4874,1009,1011,13566,1177,1895,1915,1938,1955,2220,1192,1894,13568,3706,13569,4257,4468,4474,91], +[0,13571,7200,5995,13572,2220,13573,6710,91,13574], +[1,2349,8092], +[0,8093,8100,8101,2540], +[0,13579,1149,13581,3923,13583,4393,13584], +[3,439,25], +"mysticatea", +[2,1186,8095], +[2,8094,8096], +"dot-prop", +"warun", +[0,13590,1429,1776,3188,2899,4039,13591,4390,4753], +[0,12666,1137,3101,2056,4390], +[1,2349,8103], +[0,0,8104,2523,4194], +[0,1429,1192,1894], +[1,2349,8106], +[0,0,8107,8108,2402], +[0,68,5704,1177,2899,3421], +[0,200,57,1139,5675,7058], +"ly-openapi-core", +[2,443,8109], +"decko", +"pointer", +[2,2842,8112], +"mark.js", +"sampler", +[2,7719,8115], +"perfe", +"ct-scrollbar", +[2,8117,8118], +[1,2349,8121], +[0,0,23377,23378,34552], +"react-tabs", +"stickyfill", +"swagger", +"2openapi", +[2,8124,8125], +[2,4564,1283], +[1,2349,8133], +"@cypress/webpack-preprocessor", +"@hot-loader/react-dom", +[3,5535,19], +[2,8131,1896], +[0,8134,8142,8143,34552], +[0,1417,13609,6830,13611], +"ompurify", +[2,6491,8135], +"-to-", +"-to-json", +[2,4863,8138], +[3,7729,12], +[2,8140,8112], +[0,13613,13614,1159,9254,1177,2011,2133,13619,2708,3410,3421,3431,4103,4389], +[0,6583,6727,4552,6759,1858,6422,3033,7039,6763], +"@types/lunr", +[3,7639,11], +[2,8145,1722], +[2,8145,1360], +"ismjs", +[2,7893,8148], +[3,4890,12], +"d-components", +[2,8150,8151], +[3,7752,9], +"pable", +[2,8153,8154], +"-env", +[2,4891,8156], +"@wojtekmaj/enzyme-adapter-react-17", +"to-json", +[2,1848,8159], +[2,7686,1194], +"-checker", +[2,4059,8162], +[1,2349,8167], +"lodash.noop", +"unfetch", +[0,0,8176,8177,34552], +"OpenAPI", +" Specification", +[2,8168,8169], +"Swagger", +"API", +"REST", +"React", +"React.js", +[0,1166,4481,1906], +[0,4552,1144,13625,6270,6692,13626], +[1,2349,8179], +[0,8188,8195,8196,34552], +[3,444,13], +[2,8180,965], +[3,10975,16], +"use-", +[3,2758,11], +"layout-effect", +[2,8184,8185], +[2,8183,8186], +[0,614,13633,1417,13635,3435], +"tip", +"tooltip", +"popover", +"popup", +"position", +"positioning", +[0,4389,1090,1593,1610,48,13638,53,3438,87,5619], +[0,1145,1388], +[1,2349,8198], +[0,0,8200,2523,2540], +"fontsource", +[0,4389,2080], +"font family", +" fonts", +[2,1885,8202], +"Inter", +"face", +"typeface", +[1,2349,8208], +[0,8209,8212,8213,2540], +[0,1690,13648,13651,3431,13652,13653], +"serenity", +"Roboto", +[0,1389,2759,2899,3697], +[0,1145,6468,6637,1148,5982,2022,2025,4170,13656,4386,6969,1973,5472,6533,13657,2275], +"screenplay", +[1,2349,8219], +"common-t", +[2,8216,103], +[2,6057,8217], +[0,0,8222,8223,2540], +"fontawesome", +"svg", +[0,3421,1429,4085,1776,2297,2899,4747,1177,4042,4135,1448,1290,1362,2151,1317,1389,53,1863,2900,13662,1280,2871,13674,1267,13665,13672,68,2904,1208,2912,2895,13668,4067,1198,13663,1240], +[0,1149,7241,1237,6435], +[1,2349,8225], +[0,0,8226,8227,2488], +[0,4874,13680,4384,4474,91], +[0,1149,7003,5194,27,13682,11995,1862,36], +[1,2349,8230], +[2,79,1202], +[0,8233,8234,2523,2540], +"stage-3", +[2,88,8231], +[0,1153], +[0,1166,1177,1894,3310,3697,13688,2990,1959,1879,1938,1895,1947], +[1,2349,8236], +[0,0,8237,8238,2540], +[0,53,13693,87,92,13694,5087,1193,1596,1192,2990,3377,13695,13698,3697,1894,4474,91], +[0,1155,2649,1149], +[1,2349,8240], +[0,0,0,8241,2531], +[0,1157,1388], +[1,2349,8246], +[3,361,10], +"rebuild", +[2,8243,8244], +[0,8247,8249,8257,34552], +[0,4449,1512,13709,4135,13711,13712,13713], +"node-abi", +[0,3421,4389,1177,3410,1159,4103,13614], +[3,361,9], +"-forge/cli", +[2,8250,8251], +"devtools", +"-installer", +[2,8253,8254], +[2,1807,8255], +[0,13716,6698,6950,3378,13716], +[1,2349,8259], +[0,8260,8261,8265,34552], +[0,4135,1525,2036,7937,3310,13723], +[0,3421,1429,2899,4216,1503,4255,1610,53,94,3125,13725,1208], +[2,4364,4622], +[2,458,8262], +[2,7726,2862], +[0,1163,13728,13729,1444,3073,1179,3358,1528,13730,2602], +[1,2349,8267], +[0,8268,8269,8270,34552], +[0,1457,1512,13736,13738,2070,10911,3074,3467,9478,705,13739,4747], +[0,1173,1267,1429,1177,1879,1938,1947,1959,2899], +[0,1163,4796,1161,3383,2282], +[2,466,2220], +[2,466,2942], +[2,466,594], +[1,2349,8276], +[2,466,553], +[0,8279,0,8280,2402], +[2,5559,2844], +[2,5559,1783], +[0,1393,1423,13746,3527,3688], +[0,1165,1623,3665,3561,6425], +[1,2349,8282], +[0,8283,8287,8288,4194], +[0,13753,1082,1084,1110,13754,1144,13757,13758,1437,13759,1458,13760,1486,13763,13765,13767,13770,1676,13772,2089,2205,13775,2709,2747,2752,13777,7906,3242,3478,13778,3530,3545,3718,13780,13781,13784,13786,4728,4747], +"/types", +[2,3940,8284], +[2,6369,8285], +[0,11436,13789,4874,1107,1414,2020,2022,4193,4384,4400,4481,91,1906,13351], +[0,13791,1973,8791,5472,1166,13792,12804,2062,6969,13326,200,1192,2899,4389,4384,2907,2765,1145,6468,1862,6567,1149,3046,7003,1179,5701,13793,13795,13796,2275,8745,2022,91], +[1,2349,8290], +[0,8291,8305,8307,2540], +[0,1437,1835,3008,1209,3170,3188,4232,13802], +"@tailwindcss/aspect-ratio", +[3,8292,13], +[2,8293,25], +"typography", +[2,8293,8295], +"basename", +"manage", +"r-webpack-plugin", +[2,8298,8299], +[2,2090,8300], +"remove-", +[2,1586,4408], +[2,8302,8303], +[0,4856,4870,8778,6503,4874,7749,6513,4891,1362,1429,13804,2151,2675,2990,2899,1894,13805,4039,4167,4257,1241,4487,91,2924,4677], +"sass-lint", +[0,2924,1194,11526,91], +[3,6566,9], +[2,8308,3855], +"boilerplate", +[1,2349,8312], +[0,8313,8314,8318,2531], +[0,4113,1002,614,3348,1398,2018,4734,13811,13812,3767], +[0,1429,2297,2899,1177,1503,2765,2924,1649,4535,1389,91,4874,2843,1509,2766,2898,13817,13818,2881], +"@hapi/", +"accept", +[2,8315,8316], +[0,5592,6997,7200,6850,6779,6949,6930,6810,6808,6979,6871,6991,6835,7024,6602,7301,7308,6619,7016,6665,6572,6629,7055,6709,7254,6814,6832,6976,6740,7101,6963,6933,7215,7175,6817], +[1,2349,8331], +"@hapi/ammo", +"@hapi/boom", +"@hapi/bo", +"unce", +[2,8322,8323], +"@hapi/call", +"@hapi/ca", +"tbox", +[2,8326,8327], +"-memory", +[2,8328,8329], +[0,0,8332,8334,2540], +[0,1429,2070,1437,1496,2020,2228,2675,1776,2832,2297,2899,4193,1177,2814,1593,668,2203,3471,2720,13824,1894,4535,13825,11869,13827,2878,7231,91,53,4874,13829,1863,13831,2665,2900,2918,2990,3400,13832,13833,2626,3330,5561,13834,13836,4257,13837,87,13838,2897,4130,13839,2247,2283,2923,2253,2281,13842,2881,4261,5663,1895,2895,13848,13850,78], +"@hapi/heavy", +[0,13852,6653,5472,2275,6969,5982,11346], +"@hapi/hoek", +"mimos", +"@hapi/mimos", +"podium", +[2,8315,8338], +"shot", +"@hapi/shot", +"@hapi/s", +"omever", +[2,8342,8343], +"tatehood", +[2,8342,8345], +"ubtext", +[2,8342,8347], +"teamwork", +[2,8315,8349], +[1,2349,8352], +[0,8355,8356,8365,2540], +"@hapi/topo", +[2,8315,2649], +[0,2139,13860,2131], +[0,1414,2323,1437,2675,2297,2899,4193,1177,3246,3483,4042,2026,13868,2151,13824,3183,1596,1610,2141,2188,2036,7798,4393,91,53,1364,1863,2918,2766,3714,13870,2898,1159,192,13880,87,13873,8850,8862,5583,2915,4073,13882,2881,2912,2895,2921,811,13867,2910,13879,13866,816,13875,13871,5467], +"@hapi/code", +"@hapi/inert", +"@hapi/lab", +"@hapi/v", +"ision", +[2,8360,8361], +"wreck", +"@hapi/wreck", +[0,4731,27,6662,1862,202,1388,1612,4030,5592,5576], +[1,2349,8367], +[0,8368,8369,8370,2540], +[0,13889,2051,13891,13892,3923,705,4545,3348,1155,4734,4736,2845], +[0,13894,1389,1596,13895,2228,2296,13896,2759,2297,2881,2891,13899,2895,2897,2900,2904,2899,3202,3297,4170,4535,4650], +[0,202,13531,13901], +[1,2349,8372], +[0,8373,8374,3208,2540], +[0,1175,1257,1280,1282,1525,1573,5175,2070,1209,13913,3507,4207,4227,13914,1457], +[0,1184], +[1,2349,8376], +[0,8377,8378,3280,2488], +[0,13922,1180,13924,13928,1280,1282,1284,1287,1288,1291,1573,1676,2856,1209,3181,3507,7223,4207,4227], +[0,1184,13930,1257], +[1,2349,8380], +[0,8381,8382,2523,2531], +[0,814,104,58,101,51,1996], +[0,2675,2899,1680,1177,2000,1894,2990,1178,13936,1938,1935,1955], +[1,2349,8384], +[0,8385,8386,2523,34552], +[0,13928,1282,1288,1707,2835,1209,4227,13942], +[0,1184,1291], +[1,2349,8388], +[0,8390,0,2523,2540], +"nf", +[0,1282,1209,13948,4135], +true, +"cookiecutter", +[1,2349,8394], +[0,8395,0,2523,34552], +[0,1282,13930], +[1,2349,8397], +[0,0,0,8398,34552], +[0,1172,188,1219], +[1,2349,8400], +[0,8401,8402,2523,2540], +[0,8755,10879,1208,13961,1437,2215,4207], +[0,53,8776,8780], +[1,2349,8404], +[0,8405,8406,8407,4194], +[0,2105], +[0,48,53,68,87,1414,1177,1895,1955,2203,2675,2990,1894,2924], +[0,2924,1194,1172,5194,5198,1237], +[1,2349,8409], +[0,0,8410,8411,4194], +[0,53,73,87,1173,1175,1178,13725,13982,1264,13983,1268,1284,1288,13985,1177,1895,1903,1938,1954,1955,1958,1970,2899,3696,1894,4039,4103], +[0,5297,13988], +[1,2349,8413], +[0,8414,8415,8416,2540], +[0,3435], +[0,4389,1177,4039,1173,1175,2708,53,1178,1280,13995,87,1261,1267,4103,1938,1881,1203,8229,1198,5853,13998,1244], +[0,1172,1932,14000,1204,202], +[1,2349,8418], +[0,8434,8444,3516,34552], +"@keyv/redis", +[2,1416,8421], +"-redis-yet", +"cacheable", +"opens", +"spring", +"icu", +"charset", +"launch", +"xdg", +"cmd", +"xdg-open", +"iconv", +"popmotion", +"exe", +[0,1282], +"executable", +"cache manager", +[2,27105,15292], +"multi-store cache", +"caching layer", +"cache abstraction", +"cache middleware", +"cache strategies", +"cache wrapper", +[0,1189], +[1,2349,8446], +[0,8447,8448,8449,2402], +[0,5652], +[0,53,90,14011,1175,14012,1596,1177,1879,1895,1938,1955,2079,2675,2990,3132,3377,1894,14014], +[0,5297,1114], +[1,2349,8451], +[0,8452,8453,8454,2540], +[0,56,14022,8697,14024,14025], +[0,48,53,5756,5241,94,1429,1596,1610,2899,3421,14027,4255], +[0,2759,1172,1932,14029], +[1,2349,8456], +[0,8457,8458,8459,2540], +[0,5652,104,2070,1209,14035], +[0,48,53,14039,78,5235,4851,83,87,90,14041,94,10828,1149,1198,1210,1429,14042,14045,3021,2899,3776,3804], +[0,5297,14047,1209,5260], +[1,2349,8461], +[0,8462,8463,8464,34552], +[0,14053,2070,3539,4022,814], +[0,48,53,81,5241,87,1175,1193,1532,1177,1881,1895,1938,2675,1192,2990,10623,4257], +[0,1172,5297,1237,14056,8861,9345,814,14057,14059,3209,1204], +[1,2349,8466], +[0,0,8467,2523,2531], +[0,1192,14065], +[1,2349,8469], +[0,0,0,3516,2531], +[1,2349,8471], +[0,0,0,3516,2540], +[1,2349,8473], +[0,8474,8444,3516,2531], +[0,14078,14080,1282], +[1,2349,8476], +[0,8477,8444,3516,2531], +[0,14086,14087,1282,1284], +[1,2349,8479], +[0,8480,8481,8482,34552], +[0,14093,1282,1284], +[0,1173,1230,1255,1267,1429,2899], +[0,1172,5297,6598,70], +[1,2349,8484], +[0,8485,8444,3516,2531], +[0,1282,1284,1287,1288,1209], +[1,2349,8487], +[0,8488,8489,3516,2776], +[0,14107,1282,1284,1288], +[0,1189,14109], +[1,2349,8491], +[0,8434,8444,3516,2402], +[1,2349,8493], +[0,8494,8444,3516,2540], +[0,14109,1282], +[1,2349,8496], +[0,8497,8444,3516,34552], +[0,1282,14123,1220], +[1,2349,8499], +[0,0,8500,8501,2540], +[0,48,53,5216,8229,61,5240,87,14128,90,94,1178,14132,1429,1177,1879,1922,1935,1938,1947,1951,1955,1959,2205,2899,14133,1894], +[0,1172,5297,89,14137,14139], +[1,2349,8503], +[0,8504,8444,2523,2540], +[0,14145], +"comment", +[2,8505,1574], +[1,2349,8513], +[3,539,8], +[2,8508,6939], +[3,539,17], +[2,8510,1541], +"leasot", +[0,8434,8444,3516,2540], +[1,2349,8515], +[0,8516,0,2523,34552], +[0,1282,1593,3957], +[1,2349,8518], +[0,8522,8541,8542,34552], +"clair/typebox", +[2,5324,8519], +"@typesc", +[0,87,90,56,5761,83,14160,13051,78,5835,14163,5853,14167,1251,5782,14170,5806], +"hema/core", +[2,8521,8523], +[3,8524,12], +"main", +[2,8525,8526], +[2,8525,4763], +"@vinejs/vine", +"ajv-", +"ajv-errors", +"-export", +"-export-map", +[2,4354,8533], +[3,5370,11], +[2,4626,8535], +"effect", +"fp-ts", +"io-ts-types", +"lefthook", +[0,1177,53,97,4103,1938,1881], +[0,1172,5194,6778,5284], +"monocle-ts", +"newtype-ts", +[1,2349,8548], +"-validator", +[2,7209,8546], +[0,8557,8559,2523,2531], +"bot", +"valibot", +"vite-", +[2,8551,4480], +"fluent", +"-ts", +[2,7020,8554], +[2,8553,8555], +[0,14184,14191,1225,14192,14195,1235,14196,14198,14199,14201,14204,14206,14207,14209,1240,14210,14211,14213,14214,14215,14217,14218,1244,14220,14222,14224,1253,1393,2731,4135], +"effect-ts", +[0,1173,1178,1184,1189,1208,1264,1280,1429,1503,1177,13936,1935,2151,1209,2899,3421,14227,4039], +"typeschema", +"vine", +[1,2349,8563], +[0,8564,8565,2523,34552], +[0,14184,14192,14195,1235,14196,14198,14199,14201,14204,14206,14207,14209,1240,14210,14211,14213,14214,14215,14217,14218,1244,14220,14222,1253], +[0,13930,1189], +[1,2349,8575], +"google ", +" api", +"late api", +[2,4713,8569], +[2,8567,8570], +[3,8571,16], +"google api", +[3,8570,9], +[0,8576,0,2523,4194], +[0,14237,1220,14238,1248,14240,14243], +[1,2349,8578], +[0,8586,0,2523,2540], +"@atlaskit/pragmatic-drag-and-drop", +"-scroll", +[2,3959,8580], +[2,8579,8581], +[3,8582,34], +"hitbox", +[2,8583,8584], +[0,53,61,71,14170,14160,13051,14249,5700,5240,5879,83,87,90,92,97,7913,1251], +[1,2349,8590], +"vue3", +"vue ", +[0,8592,0,2523,2488], +"vue 3.x", +[0,14256,14257,1275], +[1,2349,8594], +[0,8595,0,2523,2531], +[0,14265,13982,1277], +[1,2349,8598], +"@ctrl/tinycolor", +[0,8599,0,2523,2540], +[0,1279,14270,1217,1230], +[1,2349,8601], +[0,8602,0,2523,2531], +[0,14191,14276,1225,14224,1245], +[3,546,10], +[2,8603,2089], +[2,8603,998], +[3,6505,9], +"te-stream", +[2,8606,8607], +"rap-ansi", +[2,7820,8609], +"cli-width", +"mute-stream", +[1,2349,8617], +[3,8605,11], +"esting", +[2,8614,8615], +[0,8621,8627,2523,2540], +"answer", +"answers", +"ask", +[0,1175,1282,1593,14282,1209,3188,4232], +"confirm", +"generate", +"hyper", +"inquire", +"interface", +[0,6323], +"iterm", +[1,2349,8637], +"promptly", +"question", +"scaffold", +"scaffolder", +"stdout", +"yeoman", +"zsh", +[0,4139,8638,2523,4194], +[0,13924,1255], +[1,2349,8640], +[0,8642,0,2523,2540], +"@stencil/core", +[0,1282,1287,1288,1291,1209], +"domino", +[3,8641,9], +[2,8644,2278], +"@clack/prompts", +"@capacitor/core", +"@playwright/test", +[3,8647,11], +"haptics", +[2,8649,8650], +"keyboard", +[2,8649,8652], +"@axe-core/playwright", +"@ionic/", +[2,8655,7625], +"-bar", +"status-bar", +[2,8649,8658], +[2,8655,7628], +[2,812,4607], +"-target", +[2,6811,8662], +[2,4625,8663], +[2,8644,8664], +"react-o", +"utput-target", +[2,8666,8667], +[2,8644,8668], +[2,1101,8663], +[2,8644,8670], +[1,2349,8679], +"stencil", +"webapp", +"capacitor", +" web app", +[2,6434,8676], +"pwa", +[0,8680,8681,2523,2531], +[0,13922,13928,1282,1288,1291,1676,2203,2731,1209], +[0,1180], +[1,2349,8684], +"-cjs", +[0,8685,8686,2523,34552], +[0,1282,14301,1209,5915], +[0,1180,1291], +[1,2349,8688], +[0,0,8690,2523,34552], +"standardx", +[0,4384,1389,53,14311,87,14128,1573,90,14309,5835,5879], +"layout", +[1,2349,8693], +[0,0,8694,8695,34552], +[0,1166,1173,1178,1184,1203,1208,14318,1267,1272,1437,1503,1610,1177,13936,1935,2126,3421,4039,4042,4045,4067,12613,14320], +[0,1172,5284,57,1291], +[3,549,12], +[2,8696,2844], +[1,2349,8699], +[0,8700,8701,8702,2540], +[0,4545], +[0,1509,1597,1734,1177,1938,2297,2908,2907,4005,4042,4535], +[0,11415,6624,12620,38,36,5576,1388], +[3,444,18], +[3,550,15], +"illu", +[1,2349,8715], +"tions-react", +[2,4273,8707], +[2,8705,8708], +[2,8704,8709], +"@swc/", +[2,8711,6706], +[3,958,16], +[2,8713,4607], +[0,8717,8718,8720,2457], +"react-table", +[0,1525,2070,2720,3445,4039,4484,3348,1155], +[0,14333,4865,4866,4874,7819,14334,4891,1009,1011,5476,14337,14338,5478,1429,1177,1938,1954,2899,3200,14339,4167,4172,4409,4469,4474,4508,91,594,2924,4677], +"@swc/cli", +[0,5995,1293,3230,4978,14344], +[1,2349,8725], +"-extensions", +[2,3751,8722], +[2,1962,8723], +[0,7949,7950,7951,2540], +"-system", +[2,4964,8726], +"itwin", +"itwinui", +[1,2349,8731], +[0,0,8732,8733,34552], +[0,1596,2228,2240,2314,14352,2759,2899,3954], +[0,14354,14355,14356,14357,1157,1396], +"jest-config", +[1,2349,8759], +"unner", +"jest-runner", +"jest-run", +[2,8738,6901], +[3,2802,10], +[2,8740,1524], +[3,551,8], +"nsole", +[2,8742,8743], +"snapshot", +[2,2769,8745], +[2,2769,2649], +"jest-h", +"aste-map", +[2,8748,8749], +"reporters", +[2,552,8751], +"@jest/t", +"ransform", +[2,8753,8754], +"jest-re", +"gex-util", +[2,8756,8757], +[0,7971,7950,7951,2457], +[1,2349,8766], +"est-result", +[2,8753,8761], +"jest-m", +"essage-util", +[2,8763,8764], +[0,0,8772,8774,4194], +"-files", +[2,2356,8767], +[2,2772,8768], +"-dependencies", +[2,2797,8770], +[0,13662,1317,1389,4389], +[3,6494,9], +[0,14357], +[3,8762,11], +[2,8775,594], +"cromatch", +[2,7890,8777], +"raceful-fs", +[2,5246,8779], +"sequencer", +[2,8775,8781], +[1,2349,8789], +"easy", +"sive", +"immersive", +"instant", +"mocking", +[0,8792,8793,8794,2531], +"painless", +"runner", +[0,4100], +[0,2899,1177,2759,1954,1938,1958,1903,1948,1970], +[0,14372,1303,14374,14375], +"sandboxed", +[1,2349,8797], +[0,8798,8799,8810,2540], +[0,1797,3181,3183,3188,14380], +[0,1177,1903,1938,1954,1958,1970,2899,4039,4342,4459,4538,4588], +"schemas", +[2,552,8800], +"@types/i", +"-report", +"-reports", +[2,1207,8804], +[2,8802,8805], +[3,8806,16], +"lib-coverage", +[2,8807,8808], +[0,2026,5130,14387,6690,14388,3361,5122,4030,7096,38,1896,3724,5995,5592], +"@tsd/typescript", +[1,2349,8813], +[0,8814,8815,8819,2540], +[0,3299,15160], +[0,1192,15164], +[3,7729,13], +"chema", +[2,8816,8817], +[0,1306,6875,1303,5165,7141,6641,1616], +"jsdom-", +[2,8820,2202], +[1,2349,8833], +"mock-store", +[2,3944,8823], +"dux-mock-store", +[2,5249,8825], +"-reg", +"iste", +"r-element", +[2,8828,8829], +[2,8827,8830], +[2,1746,8831], +[0,0,0,8834,2540], +[0,1306,5284,676,3428,6875,1303,5165,7141,6641,1616], +[1,2349,8842], +"jsonforms", +"rendere", +[2,8837,152], +"uischema", +"ization", +[2,5317,8840], +[0,0,8843,8819,4194], +[0,1306,26406,1894,91], +[1,2349,8845], +[0,8847,8854,8855,2488], +"@date-io/dayjs", +[0,14413,1525,1457], +[3,4055,16], +[2,8848,2257], +[2,812,1781], +[3,6390,15], +"mport-css", +[2,8851,8852], +[0,2025,2228,1330,2236,2300,2247,2281], +[0,14416,14417,14418,7190,14419,14421,8309,14422,14423,14426,14428,14430,14433], +[1,2349,8857], +[0,0,0,8858,2531], +[0,1317,14438], +[1,2349,8863], +[2,4807,3429], +"alias", +[2,812,8861], +[0,8864,7950,7951,4194], +[0,43,46,1089,1093,1116,1132,1140,14443,1294,1298,1316,1318,1321,1322,14444,1336,1339,1342,12701,1344,1346,1348,1350,1352,12703,1354,1356,1358,14445,12704,1373,1376,14446,1386,14447,1402,1425,1428,12705,1440,1449,1450,12708,12709,14450,14453,12710,12711,12714,1663,1706,1711,14458,1715,1726,1801,2019,12715,14459,12719,2058,2059,2083,2147,2160,14460,2177,2213,2216,2217,12720,2562,2563,2567,2589,2605,2606,2612,14461,12722,2723,14464,14467,2950,2954,2957,12726,2962,14469,3086,14471,3099,12730,3134,12733,3186,3238,14473,14474,3239,3240,3245,3262,14477,3295,3439,12736,3443,3472,14478,3531,3535,3558,12737,3777,3931,12740,14479,4105,4106,4112,4124,12743,14480,12747,14483,4168,4173,4177,4189,4192,4206,4212,4214,4215,4235,12749,14484,4236,4239,4258,12750,4267,14487,4335,4338,12755,4347,4352,4370,4377,4433,14489,14491,4456,4461,12756,12757,12760,4548,4559,4595,12763,14492,14496,4659,4662,12764,14497,4724], +[1,2349,8866], +[0,8867,8868,8869,4194], +[0,3171,3445,4707,1695,2967,814,4430,1457,3183,14502,3560,3714,1537,14506,3923,14508,14512,14505], +[0,14515,3212,4389,4453,2759,4650,1389,14514], +[0,14518,1389], +[1,2349,8871], +[0,7971,7950,7951,2540], +[1,2349,8873], +[0,8874,8875,8876,2457], +[0,1209,12344], +[0,1596,14527,2759,14529,3774,4019], +[0,1317,6681,6887], +[1,2349,8878], +[0,7971,7950,7951,2531], +[1,2349,8880], +[0,8881,0,8882,2488], +[0,14544,14546,14548,53,5216,58,61,14249,5704,5809,5241,5874,87,92,101,9311,9100,4874,1091,14552,1137,1149,1448,1457,1462,1512,14557,1573,2141,2633,14558,3310,3403,1894,14562,2278,4218,4227,4246,3709,91,4535,14563,188,4747,2720,14564], +[0,14566,14568,14570,14571,14572,14574,5130,91,5284,4799,11608,8889,5995,14575,14576,14579,14580,14582,14584,14587,11498,14591,14592,14594,14596,4056,14597,14600,89,14601,14602,188,14603,14605,8889,3709,14607,14608,4218,14609], +[1,2349,8884], +[0,8885,8886,8898,2402], +[0,14615,14616,14617], +[0,1170,1429,1177,2899,14621,3752,14622], +"@lumino/polling", +"@lumino/", +"widgets", +[2,8888,8889], +"commands", +[2,8888,8891], +"algorithm", +[2,8888,8893], +[3,8892,10], +"reutils", +[2,8895,8896], +[0,1781,14626,1646,4647,1644,57,14628,4141,3917,6033,1149,14629], +"messaging", +[2,8888,8899], +"signaling", +[2,8888,8901], +[1,2349,8904], +[0,0,2684,8908,34552], +"disposable", +[2,8888,8905], +[3,8887,9], +[0,14634,14635,14636,14637,6988,14638,14639,14640,14641,14642,14643,14644], +"roperties", +[2,8907,8909], +[3,565,12], +"statedb", +[2,8911,8912], +[3,8894,9], +"pplication", +[2,8914,8915], +[3,565,15], +[2,8917,594], +[3,8913,13], +"ervices", +[2,8919,8920], +"coreutils", +[2,8911,8922], +"render", +"rendermime", +[2,8911,8925], +"docregistry", +[2,8911,8927], +[1,2349,8935], +"translation", +[2,8911,8930], +[2,8911,7842], +"-interfaces", +[2,8926,8933], +[0,8938,0,8939,4194], +[3,8931,13], +[2,8936,8615], +[0,14652], +[0,970,11154,1326,14654,6817,3122,14655], +[1,2349,8941], +[0,8943,8948,2523,2540], +"docopt", +[0,14660], +"glob2base", +"lodash.d", +"ifference", +[2,8945,8946], +[0,3421,4389,4487,1894,3310,3752,91,4874], +"multipipe", +[1,2349,8963], +"safe-wipe", +[2,4832,6270], +"-theme-default", +[2,566,8953], +"-comment", +[2,8955,1574], +[2,4329,8956], +"indent", +[2,4293,8958], +"vinyl-s", +"tring", +[2,8960,8961], +[0,8968,8969,8970,2488], +"builtin-", +[2,8964,2051], +[2,1226,8965], +"opn-cli", +[0,14667,14669,14671,14672,5241,83,14673,13998,14674,5564,14676,4649], +[0,14680,48,53,5241,87,14682,94,97,10821,14684,827,14687,14689,10828,14691,11277,10837,11288,972,5087,4883,14693,14694,13995,14695,1193,1195,14697,14698,1208,1261,1268,14012,1282,14699,1462,1596,1610,1655,14702,1177,14707,2323,2529,2541,14708,2708,1192,2787,2820,3220,14711,3342,3377,3400,3415,3421,3697,1894,3786,89,3824,14714,14719,4039,4103,4111,14721,4307,4468,4469,91,2924,4676,4677], +[0,1328,14723], +[1,2349,8972], +[0,8973,8974,8975,4194], +[0,14731,1398,2713,3923], +[0,2080,4255,4389,91], +[0,1398,6825,3101,7178], +[1,2349,8977], +[0,8978,8979,8988,2531], +[0,1082,14738,14741,2756,3433,1695], +[0,1149,14744,1506,2228,2240,2247,2253,2273,2281,3006,2899,3521,4019,89,14748], +"chatfanpage", +"api-con", +"-x", +"nect-x", +[2,8981,8983], +[3,8984,12], +"tiwtter", +[2,8985,8986], +[0,4504], +[1,2349,8990], +[0,0,0,8991,2531], +[0,14755,14756,14757,14759,14761], +[1,2349,8993], +[0,8994,8995,2523,34552], +[0,14768,1437,14769,1209,14770,3127,14774,14775,3152,14776,14777,4294,14780,14781], +[0,14785,1331,1512,1177,1903,1938,1954,1958,1970], +[1,2349,8999], +[2,8603,6847], +[2,8603,3742], +[0,7971,7950,7951,4194], +"tasklist", +[1,2349,9002], +[0,8034,7950,7951,2402], +[1,2349,9004], +[0,8034,7950,7951,2531], +"move-", +"scroll", +"move-scroll", +[2,3877,9007], +"react-te", +"xtarea-autosize", +[2,9009,9010], +[1,2349,9013], +[0,8034,7950,7951,2776], +[1,2349,9015], +[0,0,9016,9017,2531], +[0,2759], +[0,1359,2013,14824,6681], +[1,2349,9019], +[0,0,9020,9021,2531], +[0,1499,4093,2070,3445,1082,14830,2899,4193,2272,3188,4039,14829,1362,2597,2759,3460,1481,4535,1084,1389,1364,1615,4151,2839,2311], +[0,1862,6681,6567,14832,14833,1149,7003,14834,14835,14836,14838,14839,14840], +[1,2349,9023], +[0,0,9024,9025,34552], +[0,2899,8689,1926], +[0,14846,14847,14848,14849,14850], +"calendar", +[1,2349,9028], +[0,9029,9030,2523,34552], +[0,1413,1562,1676,2657,2685,3440,3763,3784,1000], +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], +[1,2349,9032], +[0,9033,9034,9035,2540], +[0,1362,14864,2712,1209], +[0,14869,1429,1177,1895,1955,2675,1776,2930,2990,2899,3259,3421,3519,1894,4193,4196,4246,3348], +[0,3469,3259,14873,7827,14874,14877], +[1,2349,9037], +[0,9038,9039,9042,2540], +[0,2607], +[0,1501,620,3123], +[3,593,11], +[2,9040,147], +[0,1851,27], +[1,2349,9048], +[3,586,12], +[2,9044,5602], +[3,9045,13], +[2,9046,623], +[0,0,9049,5361,2540], +[0,2739,4763,3171,2278,34683,2297,1177,2205,2814,3984,4042,4086,4072,2765,2822,3363,3561,4167,6393,1894,1492,1610,4939,4320,48,2689,53,27098,6375,2654,3566,3989,30616,1165,3401,6371,6376,2898,3019,34673,29226,6372,7637,8149,7610,11275,26407,1907,6382,4555,87,29568,1937,5583,1938,1982,2881,2889,30620,6373,1948,2895,6390,811,33071,3963,2910,6379,816,2876,6387,6392,6385], +[1,2349,9051], +[0,0,9055,9058,2540], +"-react-", +[2,9052,3902], +[2,588,9053], +[0,2278,14892,1797], +[3,80,7], +[2,9056,5342], +[0,1367,2278,1623,14894], +[1,2349,9060], +[0,0,0,9061,2540], +[0,1370], +[1,2349,9063], +[0,9064,9065,9066,4194], +[0,14904,1420,1437,1471,4290,4507,9731,4726], +[0,1166,3421,4481,1906], +[0,200,5403,14907,7009,6048,7201,6938,3656,14908,2585], +[1,2349,9068], +[0,9069,9070,9077,2540], +[0,14923,814,14924,4431], +[0,1389,1537,4384,4430], +[2,597,592], +[3,9071,14], +"ystem", +[2,9072,9073], +[2,597,553], +[2,597,594], +[0,1389,14927,2150,14930,1932,2947,14932,6374,14357], +[1,2349,9079], +[0,9080,9081,9082,2540], +[0,1676,3181,4648,14940,14937,14939,14938], +[0,1429,2899,4039,2151,3980,14942,1951,1385,14944], +[0,14938,5284], +[1,2349,9084], +[0,9085,9086,9090,2540], +[0,14938,1380], +[0,14953,1385,1429,2899,14942], +[3,603,15], +"documenter", +[2,9087,9088], +[0,14938,1698,1585], +"json-api", +[1,2349,9095], +"json:api", +"normalizer", +[0,9096,9097,2523,34552], +[0,6520,14959,2116,14939,4449,4648], +[0,4856,6503,4874,14962,1429,1540,2899,14964,3421,1894,14967,4487,4490,14970,91], +[1,2349,9101], +[3,4873,9], +"@types/mdx", +[0,9103,9104,9105,34552], +"mdx", +[0,14978,14980,14981,1437,1457,1544,1549,14982,14985,14986,984,2145,2151,2659,2700,3170,3459,13399,3784,14990,4093,710,4150,4151,4153,4218,11804,4747], +[0,4874,14992,1429,14995,2215,13333,2899,1894,3760,705,4019,4039,4193,4220,4232,4294,4342,91,4597], +[0,14998,1623,15000,15001], +[1,2349,9108], +"encryptor", +[0,9116,9122,9131,2531], +"-model", +[2,603,9109], +"@rushstack/node-core-library", +[3,9111,11], +[2,9112,7009], +[3,9113,12], +"s-comm", +[0,1002,2070,614,1695,1145,1398,2018,2571,15043,15016,7029,3729,814,2713,3757,4431,15017,15019,2861,15020,15030,4165,15040,15006,15044,1537,15031,15037,15048,15018,15028,15042,15047,15007,15009,3502,15033,3923,15022,15036,1618,15039,15046,15014,15013,15015,13818,15024], +"and-line", +[2,9115,9117], +[2,9114,9118], +"rig-package", +[2,9112,9120], +[0,15060,4384,1241,4135,4430,1292,15057,15052,1506,15051,15055,15056,15059], +"heft-node-rig", +[2,9112,9123], +[3,9124,15], +"eft-jest", +[2,6495,9126], +[3,7892,12], +[2,9128,3180], +[2,5554,7625], +[0,1388,3209,10906,15064,6374,3378,5284], +"JSDoc", +"AEDoc", +"TSDoc", +"alpha", +"beta", +[1,2349,9138], +[0,9139,9140,9142,2488], +[0,15070,15071,15073,814,4430], +[0,2832,3275,3752,705,4039,4384,15077], +"tsdoc-build-rig", +[0,1389,14927,1858,2202,2203,353,11316,10906], +"ig", +[1,2349,9145], +[0,9147,0,9148,2488], +[3,1937,15], +[0,28572,1423,14227,15085,15088], +[0,1421,2887,15090], +[1,2349,9150], +[0,9151,9152,9154,2457], +[0,15095], +[0,4389,4039,91,4874,15097], +"jju", +[0,15100,15101,1616,15102,15103,15105,10368,9254,15107], +[1,2349,9157], +"@types/jju", +[0,0,9158,9159,2402], +[0,3421,4390,4481,1429,3348,1437,2899,4193,1177,4042,4474,1894,1317,3310,4196,91,4856,4874,6503,6513,3090,6512,4232,1978,1895,1955,603,10817,1011,816,15115,1009,549], +[0,3230,1395,57], +[1,2349,9164], +"@dat", +"astream/core", +[2,9161,9162], +[0,0,0,9168,34552], +"@types/a", +"ws-lambda", +[2,9165,9166], +[0,1396,1388], +"Lambda", +"Middleware", +"Serverless", +"Framework", +"AWS", +"AWS Lambda", +[1,2349,9176], +[0,9177,9178,9179,4194], +[0,1082,15127,15128,1437,3090,3183,15130], +[0,15132,1177,2070,2899,4039,4042,15134,811,8850,816,4227,4232,15136], +[0,5284,15139,15140,15141,6778,7192,5194,6598], +[1,2349,9181], +[0,9187,9188,9189,2457], +"Middy", +"HTTP", +"Body Parser", +" Body Parser", +[2,6671,9185], +[0,1301,13811], +[0,1090,1317,1389,1537,2676,13651,13633,4237,4389,4431,4535], +[0,6866,1388,1389,1398,15148,6735,15149], +[1,2349,9197], +[3,7709,17], +"sm", +[2,9191,9192], +"aws-", +"xray-sdk", +[2,9194,9195], +[0,0,9198,9199,2540], +[0,13614,1158,1159,1177,2708,3410,4103,4389], +[0,1398,4162], +[1,2349,9201], +[0,9202,9205,9206,2540], +[0,15160], +"moj", +[2,4964,6770], +[0,2899,640,15164], +[0,1401], +"hash-base", +[1,2349,9222], +"@open-", +"draft", +"/deferred-promise", +[2,9210,9211], +[2,9209,9212], +[3,9213,12], +[2,9214,2942], +"until", +[2,9214,9216], +"is-node-process", +"outvariant", +"ct-event-emitter", +[2,4285,9220], +[0,0,8176,9223,2531], +[0,4061,15174,4062,202,5260,364,15175,3392,4552,1460], +"test-server", +[2,9214,9224], +"@ossjs/release", +[2,4860,982], +[3,7808,15], +"upload", +"fileupload", +[2,9228,9230], +[1,2349,9234], +"rate-limit", +[0,0,9238,9253,34552], +[3,7810,9], +"llow-redirects", +[2,9235,9236], +[0,1637,3566,1894,4039,2278], +"upertest", +[2,5051,9239], +"@types/ws", +"engine.io-parser", +[2,2032,9230], +[2,2032,9233], +[2,4183,1960], +[3,4220,10], +[2,9246,57], +"ironment-miniflare", +[2,8156,9248], +[2,1984,9249], +[3,5572,9], +[2,9251,2022], +[0,1623,2278,4329,15182,10052,6398,5130], +"encoding", +[2,5925,9254], +[3,4684,9], +"ttp-server", +[2,9256,9257], +[1,2349,9260], +[0,9263,9264,9265,34552], +"intercept", +"low-level", +[0,5923,15187,8646,688,691,9296,15194,11420,1170,1437,1676,29297,15197,3445], +[0,9736,9737,4856,5245,15203,6503,4874,6513,1009,1429,1177,1891,1893,1895,1955,2899,3211,3297,3377,3421,1890,4172,4193,4474,91], +[0,5592,1745,3452,5593,15208,200], +[1,2349,9268], +"mui", +[0,9269,9270,9271,34552], +[0,15006,15051,1537,14738,3183,4431], +[0,4389], +[0,1389,6374,15215,3178,3209], +[2,619,553], +[2,619,594], +"@mui/base", +[1,2349,9276], +[0,9277,9278,9279,2776], +[0,15221,3220,15220,15223], +[0,15225,4384,4591,4593,3123], +[0,3073,6807,15227,1781,1409], +"core-", +"s-tracker", +[2,1764,9281], +[2,9280,9282], +[2,619,9283], +[1,2349,9286], +[0,9287,9288,9289,34552], +[0,15232], +[0,15234,1177], +[0,15236,25,15237,2139], +[1,2349,9294], +"theming", +[2,5695,9291], +[2,619,9292], +[0,9295,9297,9298,2540], +[0,3080], +[2,9710,15201], +[0,14408,15243,14406,15245,14405,14404], +[0,11995,4552,1398,6866,7270,1411,1781,4699,15247], +[1,2349,9303], +"mui-x", +"timepicker", +[2,1666,9301], +[0,0,9304,9305,2540], +[0,1177,1948,2899,3421], +[0,1412,1413,6435,1644,57,6270,15253], +[1,2349,9325], +"@headlessui/react", +"@iconify-icon/react", +[3,602,8], +[2,9309,1194], +"@mdx-js/mdx", +"@shikijs/transformers", +"@theguild/remark-npm2yarn", +"nist", +[2,7817,9314], +"@vcarl/remark-headings", +"approximate-number", +"-watch-webpack-plugin", +[2,2473,9318], +"flex", +"flexsearch", +"git-url-parse", +"phrasing", +[2,3138,9323], +[0,9326,9349,9356,2540], +[0,15258,8697,2105,15261,11935,11938,11943,14025,15262,4747,4748], +"next-seo", +"-async", +[2,3830,9328], +[3,3968,10], +"ract", +"-excerpt", +[2,9331,9332], +[2,9330,9333], +"rehype-p", +"retty-code", +[2,9335,9336], +"matter", +"frontmatter", +[2,3986,9339], +"remark-h", +"eading-id", +[2,9341,9342], +"link-", +"rewrite", +[2,9344,9345], +[2,3986,9346], +"shiki", +[0,4874,1429,15264,1610,2899,4255,4474,91], +"-themer", +[2,4383,9350], +"virtual-", +[2,9352,5260], +[2,4670,9353], +"zustand", +[0,4504,15266,1973,2759,15267,3323,202], +[2,4860,4349], +"tra-watch-webpack-plugin", +[2,8773,9358], +[3,7634,10], +"-url-parse", +[2,9360,9361], +[2,9099,6892], +"@repo/eslint-config", +"@repo/", +[2,4524,1541], +[2,9365,9366], +[2,9365,7628], +[1,2349,9370], +[0,0,9371,2523,2531], +[0,6041,1192,2020,2675,2205,4042,668,12444,4468,4474,4508,2151,1894,15275,91,53,5087,2990,3123,4864,4131,15276,4057,15277,811,1652,816,15273], +[1,2349,9373], +[0,9377,9380,9385,2457], +[3,5309,9], +[2,9374,8924], +[2,9374,57], +[0,2928,32554], +"css-what", +"esthetic", +[0,11976,15288,8419,4874,7677,37080,8420,4039,4493,91,1984,8422], +"builder", +"guides", +"demo", +"ng-doc", +[0,2325,20164,8436,202,10339,8437,1552,3143,8438,9553,8439,8440,8441,8442,8443], +[1,2349,9387], +[0,9388,9389,9390,2540], +[0,9441,15305,15308,15310], +[0,13614,1159,9254,1855,1177,2011,2133,13619,2708,3410,3421,3431,4103,4389], +[0,5284,5286,3595,676,6716,7239,6714,6715,7162,1417,7272,3046,6830], +[1,2349,9392], +[0,0,8176,9399,2540], +[2,3964,1671], +"has-p", +[2,9394,3871], +[2,2573,9395], +[3,9396,11], +"eading-", +[0,1420,15320,15318,15321,13230,15322,1758,4545,15323,1871,2585,6270,15324,15326], +"eading-rank", +[2,9397,9400], +"rehype-m", +"inify-", +[2,9403,3661], +[2,9402,9404], +[3,4555,11], +[2,9406,7131], +[3,9312,9], +[2,9408,3958], +[1,2349,9411], +[0,0,0,9412,2540], +[0,12080,12075,8221,1388], +[1,2349,9418], +"ordinal", +[3,6490,12], +"as-promised", +[2,9415,9416], +[0,0,0,9419,34552], +[0,4231], +"ethers", +"hat", +"hardhat", +"n.js", +[2,4853,9423], +[3,634,25], +[2,9425,9420], +[3,634,17], +"low-", +"low-imports", +[2,1967,9429], +[2,9427,9430], +[3,9431,31], +"-inter", +"nal-rules", +[2,9433,9434], +[2,9422,9435], +[2,9432,9436], +[1,2349,9442], +"ethereum", +"smart-contracts", +[2,1417,15307], +[0,9443,9444,9445,2488], +[0,3299,32944], +[0,4874,15342,2026,2822,2899,3536,4255,4481,91], +[0,1424,15344,11812,15345,15346,158,11806,2636], +[1,2349,9450], +"proggy", +"cacache", +"bin-links", +[0,7971,7950,7951,2488], +"treeverse", +"@npmcli/fs", +"walk-", +"up-path", +[2,9453,9454], +[2,636,3766], +[3,643,9], +"edact", +[2,9457,9458], +"npm-p", +"ick-manifest", +[2,9460,9461], +"-checks", +[2,1161,9463], +[2,3382,9464], +"promise-", +[1,2349,9482], +"call-limit", +[2,9466,9468], +[3,2854,15], +"nice", +[2,9470,9471], +"-conf", +"lict-json", +[2,9473,9474], +[2,1644,9475], +"package-", +[2,9477,1781], +[2,636,9478], +"common-", +"ance", +[0,0,9511,9521,2540], +"stor-path", +[2,9481,9483], +[2,9480,9484], +"read-p", +"ackage-json-fast", +[2,9486,9487], +"all-reject-late", +[2,9466,9489], +[3,641,9], +"ame-from-folder", +[2,9491,9492], +[3,638,9], +"etavuln-calculator", +[2,9494,9495], +[3,548,8], +"e-compare", +[2,2703,9498], +[2,4284,9499], +[2,9497,9500], +"json-p", +"arse", +"-even-better-errors", +[2,9503,9504], +[2,9502,9505], +"installe", +"d-package-contents", +[2,9507,9508], +[2,636,9509], +[0,1159,1177,1881,1938,2151,2899,2924], +"tcompare", +"oss", +[2,4641,9513], +[2,636,9514], +[2,636,7625], +"minify-", +[3,3396,9], +[2,9518,6774], +[2,9517,9519], +[0,2924,1932,15356,1204,3209], +[1,2349,9523], +[0,0,0,9524,34552], +[0,3521,15361,1973,5472,15362], +[1,2349,9526], +[0,0,9528,9529,34552], +[2,664,591], +[0,1414,15370,2899,1177,668,2203,15371,1690,1894,442,91,15373,15374,5476,1942,15376,811,5478], +[0,1973,6468,1145,5472,1429], +[1,2349,9531], +[0,9532,9533,9534,2531], +[0,15373], +[0,1414,1429,2899,1177,2203,1894,442], +[0,1429,15385,1388,1149,5472,5710,6567,14833], +[1,2349,9540], +[3,9479,9], +"-spawn", +[2,2751,9537], +[2,9536,9538], +[0,0,9541,9543,2488], +[0,3095,2899,1429], +"spawk", +[0,1429,3495,15393], +[1,2349,9545], +[0,0,9546,9571,2488], +[0,1429,2899,2759,1596,14942,15398], +"innertext", +"highlights", +"similar", +"similarity", +[3,2954,9], +[2,9551,2714], +"ttl", +[2,4635,9553], +"dart", +[2,9551,9555], +"glsl", +[2,9551,9557], +"haxe", +[2,9551,9559], +"rust", +[2,9551,9561], +[2,3064,2204], +"erlang", +[2,9551,9564], +[2,9551,4333], +"-tokens", +[2,9548,9567], +"atom-language-diff", +[3,9569,14], +[0,1429,15385,15400,1435,6793,1932,15402,1697,15403,3529,9549,7015,15405], +"nginx", +[2,9570,9572], +"url-t", +"o-object", +[2,9574,9575], +[2,2287,9576], +[3,3114,13], +"xpand-tabs", +[2,9578,9579], +[1,2349,9585], +"-headers", +[2,7189,9582], +[2,3108,9583], +[0,0,9589,9590,4194], +"oniguruma", +"-stdout", +[2,9261,9587], +[0,1414,1906,1166,4481,2020,3130,3077,15411,4874,6271], +[0,1473,7208,1512,7009,7201,200,1871,1111,590,592,6621,6983,6616,7244,4166,4744,3073,6807,6876,2585], +"readme", +[1,2349,9596], +"formatted", +" highlighting", +[2,5341,9594], +[0,0,9597,9598,2402], +[0,1166,1178,1596,15418,1177,15421,2323,15423,2384,2494,2510,15424,1209,3421,3756], +[0,1438,3778,1179,1973,15426,1213,15427,15428], +[1,2349,9600], +[0,0,0,9601,2531], +[0,1444,15321,6270,353,15320,15326,15436,15437,15439], +[1,2349,9603], +[0,9604,9605,2523,2540], +[0,15444,9632,1556,15447,6041,15448,15449,3445,3510,15450,15451,4135,15452], +[0,4874,5254,7677,1177,1905,2807,1894,4257,91,4543,1984], +[1,2349,9607], +[0,9608,9609,9610,2540], +[0,15458], +[0,811,15460,8850,816,842,1006,15463,1009,1011,15465,15467,15469,1540,1596,1610,1177,15471,1927,1937,1948,1999,2070,2765,2766,2297,2881,2886,2891,2895,2898,6387,2910,15475,2923,5303,3220,3222,3536,4042,4052,6390,15478,4073,91,4747], +[0,1424,15480,2382,15481,12075,6398], +[1,2349,9612], +[0,9613,9614,9615,2457], +[0,3493,4548,15488,15487,2654,15486,1754,15502,15491,15499,15495], +[0,4494,4483,2675,2832,1177,2814,1984,2203,1894,4441,442,91,4874,2990,13204,19438,15504,1953,15505,4523,7677,1942,22839,1982,3703,15507,1895], +[0,15512,2814,3585,15514,57,965,6523,1936], +[1,2349,9617], +[0,9618,9619,9620,34552], +[0,1615,15526,3734], +[0,1173,14184,1235,1267,1429,1177,2272,2899], +[0,1451,3729,6567], +"Monorepo", +"Angular", +"Web", +"Node", +"Nest", +"Jest", +"Cypress", +"CLI", +[1,2349,9630], +[0,9631,9633,9634,2540], +[0,97,15533,8597,15538,13042,1156,1325,15540,1461,1505,12160,1582,1593,1603,15541,15545,15547,15548,13047,15550,5100,15551,15553,2752,2822,15554,2272,15555,15556,12172,3220,15559,1894,11196,15560,15562,3775,11219,11363,15566,15568,15570,15573,3843,3847,15575,15578,3876,3893,3913,4023,15579,11264,4163,15580,4484,4545,4649,3348], +"confbox", +[0,53,61,71,73,76,78,5806,13052,5835,15585,83,5850,5853,87,90,7833,7839,7840,11275,4859,15587,15592,4863,15594,15596,5087,15598,4870,15600,15602,12179,4880,15605,4883,15606,15607,11322,1009,1011,1110,1165,1170,1175,1178,1193,1195,1205,13080,5098,15609,15611,15612,15613,1426,1437,13086,1525,1610,1628,4912,1639,11336,13093,1843,1845,8160,1177,1879,1895,1922,1938,1939,1947,1948,1959,15615,2054,2060,11345,2092,2148,2193,2070,2323,2338,2510,13099,2529,2675,2686,2697,15616,1192,2832,5102,695,13115,2990,1209,11357,13119,15618,13123,3177,3183,3188,3190,3191,3213,3216,3222,3427,3463,3561,3618,3720,11204,15619,15622,11362,89,3807,3810,3817,3820,5106,5108,15624,3846,15627,9340,3992,13124,13127,8304,13128,4039,13129,15629,4320,11384,11389,4323,11396,4328,4409,4431,4469,91,4549,4027,15630,15632,2924,15635,4689,13152,11401,5038,3354], +[0,15637,4964,89,5128,4627,4963,181,5130,4967], +[1,2349,9636], +[0,9639,9640,9641,2540], +[2,13512,9638], +"-old", +[0,15648], +[0,15645,4874,1894,4448,91,10761], +[0,2150,2282,6720,7158,6929,2090,2154], +[1,2349,9643], +[0,0,9644,9645,2531], +[0,1470,2675,23535,4255,4389], +[0,15656,15658,11857,1973,13735], +[1,2349,9650], +"EsBuild", +"Front-end", +"Backend", +[0,9651,0,9652,2531], +[0,182,148,6164,164,167,6215,137,27531,6127,29468,159,15664,177,187,153,162,180,185,191,157,15667,15670,15672,27537,140,15676,6200,6166,143,15678,171,116,15681,150,155,29542,15685,15687,6217,15690,15692,122,169,15695,119,15697,15700,6173,15703,146,6133,6158,15706,15712,111,6168,15714,15716,174,15720,15724], +[0,6092,1459,6094,6105,6106,6038,1936,6108,6110,6138,6139,6142,6144,6145,5130], +[1,2349,9655], +"linter", +[0,0,9656,9660,2531], +[0,4481,4042,4441,2665,3117,8850,811,816], +"Lint", +"ESLint", +"Testing", +[0,89,1623,5256,6848,1461,614,6435], +[1,2349,9662], +[0,9663,9664,9665,2531], +[0,4227], +[0,1389,1177,1881,2659,3297,4153,4616], +[0,1623,2632], +[1,2349,9668], +"Express", +[0,9669,9670,9671,2402], +[0,1700], +[0,48,53,87,92,15742,5087,4874,15745,1193,1503,1610,1701,1177,2020,2675,1192,2990,2991,3377,1894,3921,4135,15747,91,2924], +[0,2924,1932,4050,202], +[1,2349,9674], +"js-tokens", +[0,0,0,9679,2531], +"const-enum", +[2,1199,9675], +[2,4524,6774], +[2,1226,9677], +[0,1111,1468,7009], +"Swc", +"Tsc", +[1,2349,9683], +[0,9684,8176,9685,4194], +[0,15757,4025], +[0,1468,1237,3209,1204,2325,15759,15760,15761,5669,6865,7293,6790,2145], +[1,2349,9690], +"@nestjs/schematics", +"@phenomnomnominal/tsquery", +"@date-fns/tz", +[0,9691,0,9693,2531], +[0,2070,2021], +[3,23750,37,8], +[0,200,9753,15767,15769,15768,7058,7201,15770,15771,15774,1523,15776], +[1,2349,9695], +[0,0,9696,9697,4194], +[0,1166,91,1906], +[0,200,5403,14907,7009,6048,7201,6938,3656,14908,2585,1781], +[1,2349,9699], +[0,9700,9701,9702,2540], +[0,2353,1856,15786,13824,15788], +[0,1177,15793,15797,15801,2675,2990,3421,15804,15805], +[0,1111,1473,7201,7009,200,4166,3073,6807,4744], +[1,2349,9709], +[2,689,2656], +[3,691,8], +[2,9705,3320], +"help", +[2,689,9707], +[0,9713,9715,9716,2457], +[3,691,14], +"plugins", +[2,9710,9711], +[0,4035], +"fancy-test", +[0,4874,1166,91,1906], +[0,200,13006,1111,15813,5876,15814,15815,6048,7009,7201,6621,4166,6876], +[1,2349,9718], +[0,0,0,9719,2488], +[0,200], +[1,2349,9726], +[3,4866,9], +"dent-string", +[2,9721,9722], +"xyquire", +[2,6508,9724], +[0,0,9727,9728,2540], +[0,1166,3077,15826,91,1906], +[0,200,1478,6787,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921,1781], +[1,2349,9732], +"clean-stack", +"widest-line", +[0,9751,9754,9755,2402], +"rett", +"ier-config", +[2,9733,9734], +[2,9705,9735], +[2,689,1973], +[3,4859,9], +"ean-stack", +[2,9738,9739], +"@types/ejs", +"npapi", +[2,5088,9742], +[3,9240,10], +"ports-color", +[2,9744,9745], +[3,7822,10], +"dwrap", +[2,9747,9748], +"madge", +[0,1512], +" line", +[2,1523,9752], +[0,4170,15833], +[0,200,1512,176], +[1,2349,9757], +[0,9758,9759,9761,2531], +[0,1209,4290,1512], +[0,15841,1429,1481,1596,15843,15844,2323,2436,2463,2541,4193,4196], +[2,1890,4406], +[0,202,1523,3924,200,176,15846,15847,3656,1512,10052], +[1,2349,9763], +[0,9764,9775,9761,2402], +[0,4290], +"paginate-rest", +[2,1186,9765], +[2,7724,9766], +[3,9767,16], +"request-", +"request-log", +[2,9768,9770], +[3,9771,18], +"st-endpoint-methods", +[2,9772,9773], +[0,1481,1177,1895,1955,1192,15853,15854,1894], +"-action", +"auth-action", +[2,7724,9777], +[3,9778,15], +"pp", +[2,9779,9780], +[2,1182,2995], +[2,7724,9782], +[3,692,11], +[2,9784,5460], +[2,7724,2190], +"update-", +"vers", +"in-files", +[2,7854,9789], +[2,9788,9790], +[2,9787,9791], +[2,6324,9792], +[2,4131,9793], +[1,2349,9798], +"octokit", +[3,3450,10], +[0,9799,8176,9800,2402], +[0,4208,4290], +[0,15862,15864,2585,7051,6913,200,7009,6048,4166,4289,1111,1871], +[1,2349,9802], +[0,9822,9823,6978,2540], +"action-menu", +[2,698,9803], +[3,9804,21], +"sheet", +[2,9805,9806], +[3,9804,15], +"lert", +[2,9808,9809], +[2,9808,2944], +"nchor", +[2,9808,9812], +"rea", +[2,9808,9814], +"chart", +"flowchart", +[2,5745,9817], +[2,9808,9818], +"utocomplete", +[2,9808,9820], +[0,1437,4484,2755,1209,4135,2822,15869,2151,4294,688,1110,9730,15871,1107,13223,4290,15872,15873,2709,15876,4351,15877,15880,15883,15887], +[0,1429,1170,2899,1177,4474,9714,91,4856,4874,6503,4870,5254,7637,4864,1431,15891,15893,9740,1891,15897,9746,9417,1893], +[1,2349,9825], +[0,9827,9831,9832,2531], +"vatar", +[0,7103], +"badge", +[2,698,9828], +[3,9829,16], +[0,816,10817,5087,4870,4874,27744,1009,1011,15903,15906,1177,15909,1959,2188,1192,1209,4042,15911,4468,4474,91], +[0,200,91,57,7119,7233,7058,5675,1523], +"se-select", +[2,9830,9833], +[3,9829,15], +[1,2349,9839], +"readcrumb", +[2,9835,9837], +[0,9881,9882,9883,2531], +"-item", +[2,9838,9840], +"ulletin-board", +[2,9835,9842], +[3,9843,16], +"tton", +[2,9844,9845], +"-group", +[2,9846,9847], +[2,698,9026], +[2,9849,8657], +[3,9850,23], +[2,9851,6624], +[3,9849,16], +"rd", +[2,9853,9854], +[2,9855,9847], +[3,9856,19], +[2,9857,1283], +[3,9855,17], +"ousel", +[2,9859,9860], +[2,9861,9840], +"scader", +[2,9853,9863], +"-menu", +[2,9864,9865], +[3,9866,24], +"obile", +[2,9867,9868], +[3,9866,23], +[2,9870,202], +"panel", +[2,9870,9872], +[2,9870,1631], +[2,9870,6624], +[3,9849,15], +"ell", +[2,9876,9877], +"hart", +[2,9876,9879], +[0,15917,1631,15918], +[0,53,87,1195,1429,1610,1177,1881,1895,1938,1955,2675,2297,2878,2881,2900,2918,2925,2990,2899,1894,4193,4481,4537,2924,4677], +[0,1492,1585,15921], +[1,2349,9885], +[0,9886,9887,9888,2540], +[0,34216,2020,32794,2755,15926,28429], +[0,1166,1906], +[0,1492,1585,15928,15929,15930,3917,6033,15931,1490,15932,15933], +[1,2349,9890], +[0,9891,9893,6169,2540], +[0,4290,4294,4726], +"gauge", +[0,4874,1009,1011,1414,1429,1437,1610,1177,1938,1953,2321,2899,4039,8689,91], +[1,2349,9895], +[0,0,9896,2523,34552], +[0,2276], +[1,2349,9898], +[0,0,9899,9900,2402], +[0,1999,4579,4072], +[0,5256,6848,1461], +[1,2349,9902], +[0,9903,0,9904,2531], +[0,1474], +[0,15953,9628,14777,15955,1478,9892,3924,7201,1398], +[1,2349,9907], +"pie", +[0,0,9908,9909,34552], +[0,1389,15960,2899,3261], +[0,1149,2124,1179,15962,15964], +[1,2349,9911], +[0,9912,9913,9914,2540], +[0,2927], +[0,4170,2899,1499], +[0,7009,7201,3741,8622,6875,10098,1499], +[1,2349,9916], +[0,9038,9917,9918,2531], +[0,620,3123], +[0,1973,2022,6468], +[1,2349,9920], +[0,9921,9922,9923,2457], +[0,6478,15980,2822,15984,15985], +[0,1177,1895,2675,1192,2990,3203,1894], +[0,4504,15988,15990,1503], +[1,2349,9926], +"fall", +[0,9927,9928,9929,34552], +[0,15997,15999,16000,16002,16003,16005,16006], +[0,16009], +[0,6038,1501], +[1,2349,9946], +[3,9880,16], +"eckbox", +[2,9931,9932], +"-button", +[2,9933,9934], +[3,9935,23], +[2,9936,7227], +[2,9876,7877], +"lapse", +[2,9938,9939], +[2,9940,9840], +[3,9941,23], +"ition", +"transition", +[2,9942,9944], +[0,0,9972,9975,2402], +"icker", +"or-picker", +[2,9938,9948], +[3,9949,20], +"select-", +[2,9951,9872], +[2,9950,9952], +"umn-list-group", +[2,9938,9954], +[3,9955,26], +[2,9956,5401], +[3,9938,16], +"mpany", +[2,9958,9959], +"nfig-", +"provider", +[2,9961,9962], +[2,9958,9963], +[3,9964,17], +"tainer", +[2,9965,9966], +"untry", +[2,9958,9968], +"rop", +[2,9876,9970], +[0,1734,16015,2600,3105,4545], +"urrency", +[2,9876,9973], +[0,5284,1351,1509,4643], +"date-panel", +[2,698,9976], +[3,9977,20], +[2,9978,9947], +"-mobile-", +"first", +[2,9980,9981], +[2,9979,9982], +[3,9977,19], +[2,9984,6754], +[2,9984,176], +[3,9977,15], +"ept", +[2,9987,9988], +"ialog-box", +[2,9987,9990], +[3,9991,21], +[2,9992,1631], +[3,9991,16], +"vider", +[2,9994,9995], +"rawer", +[2,9987,9997], +[3,9998,16], +"op-roles", +[2,9999,10000], +[3,10001,19], +"times", +[2,10002,10003], +[3,10001,18], +[2,10005,2971], +[2,10006,9840], +[3,10007,23], +[2,10008,4403], +"ynamic-", +"scroller", +[2,10010,10011], +[2,9987,10012], +[2,10013,9840], +"espace", +[2,698,10015], +[3,10016,15], +"xception", +[2,10017,10018], +"fall-menu", +[2,698,10020], +[3,10021,15], +"ile-upload", +[2,10022,10023], +[3,10024,17], +[2,10025,2389], +[2,10026,8657], +[3,10027,22], +"ox", +[2,10028,10029], +[3,10027,21], +[2,10031,9872], +"loat-button", +[2,10022,10033], +[3,10034,19], +"bar", +[2,10035,10036], +"ing-", +"button", +"ing-button", +[2,10035,10040], +[3,10034,17], +"wchart", +[2,10042,10043], +[3,10034,16], +"uent-editor", +[2,10045,10046], +[2,10022,3469], +[2,10048,9840], +"ullscreen", +[2,10022,10050], +"grid", +[2,698,10052], +"-column", +[2,10053,10054], +[3,10055,19], +"manager", +[2,10056,10057], +"toolbar", +[2,10056,10059], +[3,10053,15], +"uide", +[2,10061,10062], +"hrapprover", +[2,698,10064], +[2,698,158], +"-viewer", +[2,10066,10067], +[3,10066,15], +"ndex-bar", +[2,10069,10070], +[1,2349,10085], +[3,10071,16], +"put", +[2,10073,10074], +"p-address", +[2,10069,10076], +[2,698,5433], +[3,10078,16], +"yout", +[2,10079,10080], +[3,10078,15], +[2,10082,2716], +[2,10083,9865], +[0,0,10086,9975,2540], +[0,53,87,10688,1505,1734,2600,16021,3105,3758,4545,2924], +"oading", +[2,10082,10087], +[3,10088,16], +[1,2349,10111], +"cales", +[2,10089,10091], +"gon-user", +[2,10089,10093], +[3,10094,18], +"ut", +[2,10095,10096], +"mask", +[2,698,10098], +[3,10099,15], +"enu", +[2,10100,10101], +[3,10102,16], +"ssage", +[2,10103,10104], +"ilestone", +[2,10100,10106], +[3,10107,16], +"nd-map", +[2,10108,10109], +[0,10112,10113,10120,2540], +[0,6271,11421], +[0,2899,4481,1906], +[2,10100,3852], +[3,10114,16], +"nth-range", +[2,10115,10116], +[3,10117,20], +[2,10118,176], +[0,1473,7208,1623], +[1,2349,10122], +[0,0,0,10140,34552], +"nav-bar", +[2,698,10123], +[3,10124,18], +[2,10125,4403], +[3,10124,15], +[2,10127,2304], +"umeric", +[2,10127,10129], +[2,698,5675], +[2,10131,9847], +"pager", +[2,698,10133], +[2,10134,9840], +[3,10134,16], +[2,10136,7251], +[3,10134,15], +[2,10138,9947], +[0,7009,592,1473,1111], +"op-upload", +[2,10138,10141], +[3,10142,17], +[2,10143,8622], +[2,10143,6038], +[2,10143,2883], +[2,10143,2104], +"rogress", +[2,10138,10148], +"ull-refresh", +[2,10138,10150], +"qr-code", +[2,698,10152], +[3,10153,15], +"uarter-panel", +[2,10154,10155], +[3,10156,16], +"ery-builder", +[2,10157,10158], +[3,697,15], +"adio", +[2,10160,10161], +[2,10162,9934], +[3,10163,20], +[2,10164,7227], +[3,10162,16], +[2,10166,6864], +[3,697,16], +"cord", +[2,10168,10169], +[3,10170,17], +"ycle-scroller", +[2,10171,10172], +"ich-text-editor", +[2,10160,10174], +[3,10175,16], +"ver", +[2,10176,10177], +"oles", +[2,10160,10179], +[3,10180,16], +"w", +[2,10181,10182], +[1,2349,10220], +"scroll-text", +[2,698,10185], +[3,10186,20], +[2,10187,10036], +[3,10186,15], +"earch", +[2,10189,10190], +[3,10191,16], +[2,10192,4021], +"-dropdown", +[2,10193,10194], +[3,10195,21], +[2,10196,5131], +[2,10196,6624], +"ed-box", +[2,10193,10199], +[2,10189,1580], +"keleton", +[2,10189,10202], +[2,10203,9840], +"lider", +[2,10189,10205], +[2,10206,9934], +[2,10207,9847], +"plit", +[2,10189,10209], +"-list-item", +[2,1902,10211], +[2,10189,10212], +[3,10213,17], +"tistic", +[2,10214,10215], +[3,10213,16], +"eps", +[2,10217,10218], +[0,0,10221,10242,2531], +[0,1177,1886], +"witch", +[2,10189,10222], +[3,700,15], +"ab-item", +[2,10224,10225], +[3,10226,17], +[2,10227,10036], +[2,10228,9840], +[2,10227,2699], +[2,10227,591], +[3,10226,16], +"g", +[2,10232,10233], +[2,10234,9847], +"ext-popup", +[2,10224,10236], +"ime", +[2,10224,10238], +"-line", +[2,10239,10240], +[0,1111,7009,1512], +[1,2349,10265], +[3,10241,19], +[2,10244,9872], +[3,10245,20], +[2,10246,9947], +[2,10247,701], +[2,10244,6754], +[2,10244,1631], +[3,10250,20], +"pinner", +[2,10251,10252], +"line-item", +[2,10239,10254], +"oast", +[2,10224,10256], +[3,10257,16], +"ggle-menu", +[2,10258,10259], +"oltip", +[2,10258,10261], +"p-box", +[2,10258,10263], +[0,10287,10288,10297,2457], +"ransfer", +[2,10224,10266], +"-panel", +[2,10267,10268], +[3,10267,16], +"ee", +[2,10270,10271], +[2,10272,9865], +[3,10273,19], +[2,10274,1631], +[2,698,9229], +"-dragger", +[2,10276,10277], +[3,10278,21], +[2,10279,3392], +[3,10276,15], +"ser", +[2,10281,10282], +"-account", +[2,10283,10284], +[3,10285,19], +[0,4294,16041], +[0,1173,1267,1437,4387,4389], +"contact", +[2,10286,10289], +[2,10286,3193], +[2,10291,9847], +[2,10286,163], +"watermark", +[2,698,10294], +[3,10295,15], +[0,6922,2585,1111,7201,7009,4719,176], +[1,2349,10305], +"izard", +[2,10296,10299], +"year-range", +[2,698,10301], +[3,10302,19], +[2,10303,176], +[0,0,10316,10317,34552], +[3,1533,10], +[2,10306,6082], +"vue-c", +[2,10308,544], +"opentiny", +"less-c", +[2,10311,544], +[2,8924,10312], +[3,3197,10], +[2,10314,544], +[0,2025,2272,2899], +[0,200,1523,3504], +[1,2349,10319], +[0,10320,10322,10323,2457], +[0,16053,16056,3025,16057], +"esno", +[0,1187], +[0,6478,1644,7233,7058,5675,14690,57,7119,200,1523,3924], +[1,2349,10325], +[0,10329,10330,10331,2540], +[3,2517,9], +[2,10326,134], +[2,2522,8754], +[0,16053,16064,16066,16057], +[0,811,816,2829,4042,1187], +[0,7009,9753,1521,1179], +[1,2349,10333], +[0,0,10334,10335,2540], +[0,4481,1192,1177,2203,4468,1894,442,91,5087,4874,4523,1939,1895], +[0,1525,1523,5675,57,200,7233,7058,6478], +[1,2349,10338], +"otterhttp", +[0,10341,10343,10344,2531], +"node.js", +"web framework", +[0,2070,1680,1209,16085,16078,2151,2720,3183,7915,4296,1707,16082,4300,1652], +[3,17194,17], +[0,3421,1429,3348,2899,4193,2194,4135,1503,3363,48,2708,3752,53,94,4131,87,3200,1208,16092,16088,16090,78,1570], +[0,1528,3721,1671,16096,1527], +"header", +"-range-parser", +[2,10345,10346], +[2,704,1080], +[3,703,13], +"ntent-type", +[2,10349,10350], +[2,988,2706], +[2,704,10352], +[2,704,1000], +[2,704,1002], +[3,706,12], +[2,10356,995], +[1,2349,10359], +[0,10360,10361,5267,2540], +[0,192,6303], +[0,6306,6307,26379], +[1,2349,10365], +"es-escape-html", +[3,10351,19], +[0,0,10375,10377,34552], +"disposition", +[2,10364,10366], +"encode", +"encode-url", +[2,704,10369], +[3,10370,12], +"rrors", +[2,10371,10372], +[2,704,4590], +[0,1173,1178,1198,1230,13982,1264,1280,1503,1610,1742,1177,1895,1955,1192,3170,1894,4039,4042,4045,4067,4077,4706], +"res", +[0,4552,1172,6778,16107,5194,16108,16109,1936,8958,16110,3924,16111,3250,16112,3374,6985,16113,16114,16115,1871,16116,4301,10381,16117,1283], +[1,2349,10379], +[0,0,9887,10380,34552], +[0,2013,13771,2018,6868,15535,11631,16123], +"tag", +[2,10371,10381], +[1,2349,10385], +"send-file", +[0,10386,10387,10388,2531], +[0,1413,16130,1676,12627,16128,4100,4590], +[0,1087,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], +[0,1536,16518,25386,2663,2026,21665,27,3101], +[2,712,1732], +[1,2349,10391], +[0,10394,9270,2523,2540], +"fined", +"undefined", +[0,16136,2713,3923,7231], +[1,2349,10396], +[0,10398,10411,10412,2540], +"randexp", +[0,4094,1437,4747,4459,4165,4351], +[3,10389,22], +"js-prettier-config", +[2,10399,10400], +"i-color", +[2,9738,10402], +[3,7744,9], +"tp-proxy", +[2,10404,10405], +"isnil", +[2,6308,10407], +[3,4874,9], +"@types/nock", +[0,2675,1177,1984,668,2203,1894,442,91,4874,2990,6479,4892,16151,16150,4523,16149,7677,4103,9746,22839,16144,1895,1955,16152,23753,10964], +[0,16159,13792,12804,1540,1523,16160], +"@types/ramda", +[1,2349,10415], +[0,10421,10422,10423,2540], +"-and-tag-version", +[2,1528,10416], +"hai-friendly", +[2,4914,10418], +[3,3028,12], +[0,2856], +[0,4874,1414,1509,16166,34218,16167,3583,705,4135,4452,4474,91,4545,16168,4745], +[0,12084,1541,8309,16172,16174,1263,6639], +[1,2349,10425], +[0,10433,9887,10434,2540], +"pact", +"pact-js", +" testing", +"ract testing", +[2,3109,10429], +"r driven testing", +[2,6613,10431], +[0,16181,8098,2215,34027,16184], +[0,1541,1542,13901,8309,6937,16188,1781,2382,16189,7007,14745], +[1,2349,10436], +[0,10437,10438,10439,2540], +[0,1676,2099,3494,4578], +[0,1177,2899,3421,4342], +[0,5130,5122,2663,1544,16196], +[1,2349,10444], +"default", +"waapi", +"urls", +[0,0,10445,10447,2457], +[0,4616], +"arguments", +[0,1544,2026,16202,6347], +[1,2349,10449], +[0,0,10450,2523,2540], +[0,1177,1192,4193], +[1,2349,10452], +[0,10453,10454,10455,2540], +[0,1676,16211], +[0,11436,192,5467,19181,442,5245,6494,7808,4874,9240,1009,1011,1166,1414,1503,1177,1895,1930,1955,2026,2040,2193,2675,2990,3230,3400,3446,1894,4257,4342,1531,4508,91], +[0,1544,1550,3230,1577,2026], +[1,2349,10457], +[0,0,10458,10459,2531], +[0,11976,7808,4874,7677,2040,4474,91,1983,26744,1984], +[0,1544,1552,1577,2026], +[1,2349,10461], +[0,0,10462,10463,4194], +[0,8646,4874,7677,1446,16230,1177,1905,16232,1894,16234,15452,4290,91,4543,1984], +[0,7201,2942,16237,16238,200,14566,4549,3741,16239,1671,1851,16240], +[1,2349,10465], +[0,0,10467,10468,2531], +"fd-package-json", +[0,1906,1166,1758,16257,2746,1797,7614,3754,16272,16249,16262,16264,16268,16270,4371,16277,16279,2675,16263,89,16278,1177,16260,5304,16267,1209,16269,4135,16274,16276,16281,2114,16261,16271,2608,3257,3416,16282,3824,2036,3985,16275,4545,16280,53,16259,2990,16265,16245,1506,16251,16273,16256,16248,90,3995,1909], +[0,16284,1283,6624], +[1,2349,10470], +[0,0,10471,10472,2776], +[0,1414,1177,1903,1938,1948,1954,1958,1970], +[0,1560,27,16290,10376], +[1,2349,10474], +[0,0,10475,10476,2531], +[0,3421,2899,1177,1693,1954,1938,1958,1903,1970], +[0,1562,27,990,10376,16296], +[1,2349,10478], +[0,10479,0,10480,2540], +[0,18186,10466,3157,18183,16309,13848,28401,16322], +[0,1566,16094,13729,3073,200], +[1,2349,10482], +[0,10483,0,10484,2488], +[0,3157,16330,16329,1566], +[0,200,13326,1566,16094,13729,3073], +[1,2349,10486], +[0,10487,0,10488,2457], +[0,16337], +[0,1566,16341,16342], +[1,2349,10490], +[0,0,10491,10492,2540], +[0,16349,4384], +[0,6270,12938,4225,3053,1388,1676], +[1,2349,10494], +[0,0,10495,10496,34552], +[0,29867,7677,16356,91,1984], +[0,977,16358], +[1,2349,10498], +[0,10499,9030,10500,2540], +[0,977,1581], +[0,977,2663], +[1,2349,10502], +[0,10503,10504,10505,2402], +[0,16358,1676,16128,4100], +[0,1544,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342], +[0,1544,2026,2663,1577], +[1,2349,10507], +[0,0,0,10508,2540], +[0,977,16375,16376], +[1,2349,10510], +[0,10511,10512,10513,2540], +[0,16382], +[0,1389,3183,3294,16384,3460,16389,4535], +[0,1492,1585,1388], +[1,2349,10515], +[0,10516,10517,10518,2540], +[0,27921,2200,4121,3369,4143], +[0,1700,1192,2675,3144,1622,1177,1701,2203,16407,2924,1894,1610,48,442,1193,91,53,4874,2092,2990,3400,192,1953,27928,4257,87,4523,16396,1939,1942,68,1938,16398,20281,1982,1895,1955,19344,16400,5467], +[0,2924,1932,16410,7004,1585], +[1,2349,10520], +[0,10521,10522,2523,2540], +[0,2070,3181,3188,16415,4431,4558,4747], +[0,4039,4389,4387], +[1,2349,10524], +[0,0,7927,10525,2540], +[0,16421,11194,1179,16423,16424,16425], +[1,2349,10527], +[0,10528,10529,10530,2540], +[0,3044,1588,16432], +[0,4880,4883,91,89,3824], +[0,89,91,11194,11255,16435], +[1,2349,10532], +[0,10533,10534,10535,2540], +[0,1543,16446,16449,16444,6038,2020,3368,4135,4375], +[0,16454,1414,2765,4037], +[0,1591,5576,200], +[1,2349,10537], +[0,0,0,10538,2531], +[0,6570,6964,6789,7221,6746,7011,7194,7087,6839,6860,6918,6620,6777,16461,6748,7171,6894,6945,6743,7309,6837,6644,6634,7259,6797,7061,6608,16462,6726,6828,7275,6569,7144,7108,7027,7263,6923,6854,7134,6762,7042,6818,6677,6422,6805,1858], +[1,2349,10540], +[0,10541,10542,10543,2540], +[0,3427,4590], +[0,1087,1177,2026,2899,3421,4342], +[0,1594,2026,1544,2663], +[1,2349,10545], +[0,10546,10547,10548,34552], +[0,16473,2702,2822,16474], +[0,7637,4874,16478,1009,1011,16480,1610,1177,16482,1895,1915,1938,1954,1985,2675,2990,15757,1894,16484,91,1984], +[0,3001,8309,1541], +[1,2349,10550], +[0,10551,10552,10553,2540], +[0,2822,16491,16492,3183,705], +[0,2899,3421,4170,4172,4193,1906], +[0,4504,1596], +[1,2349,10555], +[0,10556,10558,10559,2540], +[0,16499,2205,3157], +"@epic-web/invariant", +[0,1166,2020,3505,16330,1906], +[0,13326,200,1585,16502,16499,2090,1586,1496,2150,3101,2070,16503,3275,2062,3719,2382,1563,16504], +[1,2349,10561], +[0,10562,10563,10564,2540], +[0,2212,16513,1448,16509,16512,2685,16511], +[0,1414,1166,4494,3297,4193,1177,2203,442,16515,91,4874,4454,4523], +[0,5284,1598,16517,15514,15362,2814,6710,27,2671,13333,2212,705,1002,11996,16518], +[1,2349,10566], +[0,0,0,10567,2457], +[0,1599,16523,16526,16528,16524,16530,16531,16532,13580,16533,16534,16536,16537], +[1,2349,10569], +[0,10570,10571,10573,34552], +[0,16542,2713,13892,16543,16544], +[0,13817,4100,4255,4387,4389], +"degit", +[0,1616], +[1,2349,10575], +[0,10576,10577,10578,34552], +[0,3082,3427], +[0,1192,3744,89,3824,2924], +[0,89], +[1,2349,10580], +[0,10581,10582,10583,2402], +[0,63,16560,1462,1532,16563,16566,1676,2105,2185,2205,2212,16568,2709,16570,2743,2812,1209,3021,3093,3157,16571,13233,16572,3527,3544,3561,16573,16576,16578,4002,4207,4400,4431,4597], +[0,1149,1610,2099,2182,1192,3297,16581,4151,16584,4278,4603,1906], +[0,1604,3403,1623,16587], +[1,2349,10585], +[0,10586,10587,10588,4194], +[0,6501,5303], +[0,192,442,16596,16597,16602,6061,16607,6063,6065,16608,16612,842,16145,5087,4874,6513,1610,1177,1895,1939,1955,2675,1192,2990,1894,4131,4193,91,4523], +[0,1605,16615,16617,16618,4116,16619,16621], +[1,2349,10590], +[0,0,0,10591,2540], +[0,1605,6400,5995,57,1606,16618,4116,16629,5957,12692,14571,16631], +[3,804,10], +[2,10592,8893], +[2,10592,8891], +[3,10594,12], +[2,10595,8896], +[2,10592,8905], +[3,10597,11], +"omutils", +[2,10598,10599], +"ragdrop", +[2,10598,10601], +[2,10592,8652], +[2,10592,8899], +[2,10592,3583], +[2,10592,8901], +"virtualdom", +[2,10592,10607], +[1,2349,10610], +[0,0,10611,10612,2540], +[0,30684,33382,16636,16637,33968,33969,16638,33971,17212,4874,1177,16644,1930,1938,1942,1951,1953,16647,1958,1964,1982,2203,25209,3124,16649,3390,1894,23535,33974,4508,91,16650], +[0,1605,16631,4116,1608,6400,5995], +[1,2349,10618], +"@release-it/conventional-changelog", +[2,812,4072], +"cobertura", +"git-", +[0,10620,0,10625,2540], +"git-cz", +[0,10870,16666], +"global-jsdom", +[2,7627,1177], +[2,10622,20], +"putout", +[0,158,12712,7004,16660,16661,16662,16663,16664,29241,29242,29244,29245,29247,29248,1936,1623,5284,6400,5122], +[1,2349,10628], +"quibble", +[0,10629,10644,10647,34552], +[0,10557,1615], +"remark-github", +"toc", +"remark-toc", +[2,4513,9339], +[3,4514,16], +"dn-links", +[2,10634,10635], +"no-inherit", +[2,4513,10637], +[2,4513,3984], +[3,10639,17], +"-defaults", +[2,1213,10641], +[2,10640,10642], +[0,31088,21122,4874,7677,23203,1177,1894,91,1984,31103], +"-prettier", +[2,4549,10645], +[0,16674,16676,6574,16697], +[3,5410,10], +[1,2349,10662], +"annotate", +"pin", +"specific", +"ations", +[2,10652,10653], +"anatomy", +"dissection", +"dissect", +[3,10654,13], +"specs", +[3,2620,12], +[2,10660,591], +[0,10664,10666,10668,2531], +"spacing", +[0,3310], +"speccer", +[0,3421,1429,3297,2675,2899,4747,4039,4042,4135,1503,2026,2924,4255,1527,91,4856,4874,1364,2990,4150,4677,6503,4705,192,4257,8849,3198,15277,1652,28710,5467], +"grid-layout", +[0,1612,27,1002,1862,1149,7003,14571,14566,202,89,970,1388,6805,7102,4731,6662], +[1,2349,10670], +[0,10671,10676,10680,34552], +[0,4707,16687,16688], +"@web", +"/shadycss", +[2,4963,10673], +[2,10672,10674], +[0,1192,2675,1177,3188,4039,1175,1193,2990,192,4257,16692,16694,5467], +"dom5", +"lazypipe", +"poly", +[0,1614,16696,6574,16697,16699,6987,8429,16701], +"polymer-cli", +"polymer-", +[2,10682,6147], +"gulp-v", +"ulcanize", +[2,10684,10685], +"wct-browser-legacy", +[2,1262,3178], +[3,806,9], +[2,1382,5187], +[2,10689,10690], +"google-", +"clos", +[1,2349,10709], +"ure-compiler", +[2,10693,10695], +[2,10692,10696], +"iron", +[3,4314,10], +"-page", +[2,10699,10700], +[2,10698,10701], +[2,10689,10702], +[3,10675,15], +"webcomponentsjs", +[2,10704,10705], +"gen-closure-declarations", +[2,10689,10707], +[0,10710,10711,2523,2531], +[0,16710,16713,16716,1600,16719,16721,9207,2713,16722,16725,3779,16726], +[0,13614,1177,13817,3421,3438,16728,4100,4135,4389], +[1,2349,10715], +[3,78,24], +[3,5731,9], +[0,0,0,10716,2531], +[0,1965,1616,16733,16734,16735,16736,16737,16739,16740,16741,16742,16743,16744,16745,16746,16747,16748,16749,16750,16751], +"-assign", +[2,5734,10717], +[2,10714,10718], +[2,10713,10719], +"@metalsmith/layouts", +[3,10721,12], +[2,10722,1783], +[3,807,9], +"disable", +[2,2827,10725], +[2,1884,10726], +[2,10724,10727], +[3,10728,23], +"qx", +[2,10729,10730], +[3,10728,16], +"plugin-qx", +[2,10732,10733], +"app-", +"module-path", +[2,10735,10736], +"better-ajv-errors", +"cldr", +"console-", +"contr", +"ol-strings", +[2,10741,10742], +[2,10740,10743], +"core-js-", +[2,10745,6374], +[3,4913,14], +[2,10747,7877], +[3,7681,17], +"codeframe", +[2,10749,10750], +"fontkit", +"get-value", +"github-api", +"jstransformer-dot", +"ps-tree", +"set-value", +[1,2349,10762], +"tap-colorize", +"unset-value", +"upath", +[0,10764,10767,10773,2540], +"dirsum", +[0,1509], +"qooxdoo", +"fontend", +[0,1414,1177,16758,1938,1951,1954,1955,2899,16759,3400,1894], +"back-end", +"gui", +"binding", +"databinding", +"interfaces", +[0,16166,57], +[1,2349,10775], +[0,10776,10778,10781,2540], +[0,16765,34219,16767,16768,34222,16770,16771,1109,1437,16064,1525,28612,16772,16775,16778,16779,16780,16781,26385,4135,27921], +"@mdi/font", +[0,8778,5254,3170,3181], +"@mdi/svg", +"@xmldom/xmldom", +[0,16789,16790,1501,15318,15321,16791,16793,16794,671], +[1,2349,10789], +"animate.css", +[3,1369,10], +[2,10784,45], +"eva-icons", +"line-a", +"line-awesome", +[0,10794,10795,10796,2540], +"ar", +"quasar", +"fonts", +"animations", +[0,2713,4227,16799], +[0,2899,4170,3130,1413], +[0,1623,57,5374,5376], +[1,2349,10801], +"gpu", +"detect-gpu", +"gltfpack", +[0,0,10803,10812,2488], +"@react-", +[0,442,16805,16808,1177,3561,4042,4579], +"three/drei", +[2,10802,10804], +[3,10805,13], +"fiber", +[2,10806,10807], +"processing", +[2,3689,10809], +[2,10806,10810], +[0,3561,6425,1623,6432,16811,3205,4327], +[1,2349,10819], +"test-renderer", +[2,10806,10814], +[3,10615,16], +[2,10816,2528], +[3,827,17], +[0,0,10822,10823,2531], +"actions", +[2,10818,10820], +[0,23339,13204,6503,4874,5542,16818,1177,16821,1895,1955,16824,2675,16825,2832,2990,2899,3377,1894,28865,29444,91,16827,16831], +[0,1623,5746,3392], +"essentials", +[2,10818,10824], +"interactions", +[2,10818,10826], +[2,10818,3966], +[3,827,11], +[2,813,2942], +[2,10829,10830], +"preset-", +[3,1603,13], +[2,10833,1896], +[2,10832,10834], +[2,10829,10835], +[2,10829,89], +[1,2349,10845], +"-webpack5", +[2,10837,10839], +[2,10829,1975], +"__jest-dom", +[2,6626,10842], +[2,7750,10843], +[0,10856,10857,10859,2540], +"@types/three", +"-image-diff-js", +[2,1651,10847], +[3,1970,16], +"orybook", +[2,10849,10850], +"r3f-perf", +[3,6068,15], +[2,10853,2481], +"suspend-react", +[0,16837,3561,16840,3638,16841,16842,3688,4135], +[0,48,53,87,192,5467,16405,1193,1610,1622,1701,1854,1177,1895,1938,2092,2675,1192,2780,695,2969,2990,3144,3177,3400,3618,3672,1894,2278,4111,4257,4294,4307,4333,4334,4027,2924], +"three-stdlib", +[0,2924,1623,1194,1002,1204], +"threejs", +[1,2349,10869], +"hree-fiber", +[2,3900,10862], +"y-player-me", +[2,3917,10864], +"3D", +"avatars", +"glb", +[0,10871,10872,10873,2531], +"@cropper/elements", +[0,1637,3561,2805,4121,4143,5180], +[0,1700,16858,1192,2278,2675,3144,1622,1177,1701,668,2203,4337,2924,16851,1894,1462,1610,48,442,1193,1628,91,53,16850,16854,4874,2990,3400,4111,16860,192,1953,27928,16853,4257,87,1939,1584,1942,1938,16857,20281,1982,1895,1955,3177,19344,16400,5467], +[0,1637,1623,16858,1462,11538,668,2924,1464,16862,16863,3178,2632,6707,6708], +"@phryneas/ts-version", +[2,5531,2090], +[2,5531,2924], +[3,4852,12], +"__core", +[2,10877,10878], +[3,10879,14], +[2,5223,5651], +[2,1181,10881], +[2,10880,10882], +"@types/n", +[1,2349,10889], +"@types/nanoid", +[2,4807,3765], +[2,7686,2473], +[0,10890,10891,10892,2540], +[0,16868,9378,15488,16870,15487], +[0,4483,1984,91,4874,2654,11976,16874,16877,7677], +[0,1623,3585,16879], +[1,2349,10899], +[3,811,14], +[2,10894,594], +"common", +"commondir", +"is-reference", +[0,10905,10907,10908,2540], +"locat", +"e-character", +[2,10900,10901], +"relative", +[2,4013,10903], +[0,3141,4228], +"commonjs", +[0,1414,16885,668,1177,16889,2899,4042], +[0,1623,6892,207,57,16891,16892,1179,594,5341,7020], +[1,2349,10910], +[0,0,10913,10914,2540], +"is-builtin-module", +"is-module", +[0,16805,1393,2070,3561,3566,3672,4135,4320,4323,16898], +[0,1623,16897,10654,16900], +"capitalize", +[2,4284,10915], +[1,2349,10918], +[0,0,10919,10920,2540], +[0,1173,1264,1503,2228,14352,2759,2899,3954,4019], +[0,1623,1867,16906,1871,4990], +[1,2349,10922], +[0,10926,10928,10937,2540], +"groq-js", +[3,817,8], +"@sanity/ui", +[0,2984,16912], +"@types/cpx", +[0,1165,3561,16915,16916], +"dotenv-flow", +[2,10924,1473], +[2,10924,45], +"@sanity/c", +[2,10932,1124], +[3,3878,10], +[2,10934,6346], +[2,7686,93], +[0,1623,15215,3178,16918,16919,3561,6425], +"pkg-utils", +[2,10924,10938], +"@portabletext/react", +[3,10940,14], +[2,10941,6081], +[1,2349,10945], +"cpx", +[0,10953,10954,10955,2457], +"sanity", +"refractor", +"kdirp", +[2,6502,10948], +"-workshop", +[2,10925,10950], +"vitest-", +[0,28920,30928,1634,3084], +[0,23591,23205,1177,1895,1955,2203,1894], +[0,6829,6977,7146], +[1,2349,10965], +[3,9794,18], +"reset", +[2,10957,10958], +[2,10924,10959], +"imple-", +"import-sort", +[2,10961,10962], +[2,1967,10963], +[0,0,10967,10968,2540], +"API reference", +[0,53,87,92,442,16805,33227,16933,16934,5087,13204,4874,15600,16938,1193,1437,1457,1634,1895,1955,2126,1192,2832,3141,1894,3980,4494,4495,91,4523], +[0,1623,590,91,2124,4532,553,7900], +[1,2349,10970], +[0,10971,10980,10983,2531], +[0,16944,977,2657,1581], +[3,9307,12], +[2,10972,188], +[2,7719,57], +[2,819,10974], +[2,4807,1143], +"snippetz", +[2,819,10977], +[2,10987,14037], +[0,3421,2899,1177,1544,4342,1364,1575,1578,1954,1938,1958,1903,1948,1970], +"@unhead/vue", +"@vue", +[0,16944,11590,2663,2026], +"@vueuse/core", +[1,2349,10986], +[0,11001,11006,11007,2540], +[3,35505,11], +"code-", +[2,10988,5342], +[2,819,10989], +[3,818,12], +[2,10991,5576], +"@scalar/o", +"as-utils", +[2,10993,10994], +[2,819,553], +"@scalar/t", +"hemes", +[2,10997,10998], +"toast", +[0,1642,1645,1647,4280], +"use-toasts", +[2,819,11002], +"@scalar/co", +[2,11004,4961], +[0,816,6503,4874,1794,2899,1894,4042,4064,4066,4170,4474,91], +[0,202,1641,16956,57,1644,5374,1646,353,3101,8623,16957,5995,4967], +[2,27553,1794], +[1,2349,11012], +"blocks", +[2,10829,11010], +[0,0,11014,11015,2531], +[2,5249,11020], +[0,816,6503,4874,1680,1794,2899,1894,4042,4064,4066,4170,4474,91], +[0,3101,8623,1641,3048,5995,4967], +[2,1029,188], +"test-utils", +[2,5334,11017], +[1,2349,11023], +"flect.ownkeys", +"webpack-stats", +[2,4049,11021], +[0,0,11024,11025,34552], +[0,816,6503,4874,1642,16971,1680,1794,2899,2966,1894,4042,4064,4066,4170,4280,4474,91], +[0,1641,1644,57,6270,16956,3101,5995,4967], +[2,4609,7179], +"css-in", +"well-known-symbols", +[1,2349,11030], +[0,0,11035,11036,2488], +"jected-by-js", +[2,11027,11031], +[2,4609,11032], +"media-mock", +[0,816,6503,4874,1642,1680,1794,2026,2899,1894,4042,4064,4066,4170,4474,91], +[0,1641,1646,5374,5995,4967], +"-tooling", +[2,6147,11037], +[2,819,11038], +"galaxy", +[2,819,11040], +[1,2349,11044], +"reference", +[0,6205,11045,11046,2540], +[0,35960,6503,4874,1217,1596,3183,2899,3421,4193,4468,4474,91,4537,2924,4677], +[0,1641,16984,16986,1648,1781,16989,16990,16991,16994,16995], +[1,2349,11050], +[3,820,8], +[2,11048,1932], +[0,11055,11056,5548,4194], +"@fastify/basic-auth", +"external", +"externals", +[2,4065,11053], +[0,3261,2070,1512,1209,4593,2089,6532,814,1362,17003,3730,1525,2753,1483,12126,6481,17010,6479,17007,2709,17011,17009,17000,1874,6475,17002,6470], +[0,3421,4449,1429,2899,4193,1177,1544,1593,1290,2151,3257,1894,17013,1596,48,1389,4196,53,1178,1509,4151,94,6525,6530,87,1954,1922,3957,1938,1208,1958,1895,1903,1955,1970,14039], +[1,2349,11058], +[0,0,11059,11060,2540], +[0,1257,1264,1280,1389,1177,17019,2665,3188,17020,4389,4415,4535,17021,4650], +[0,6926,3265,7818,17025,3348], +[1,2349,11062], +[0,11063,0,11074,2540], +[0,4449,12675,1437,1673,1676,2020,29952,4753,1398,2992,1209,17031,1458,2089,3729,1362,16078,1836,2151,3183,17036,1525,4459,4558,6520,1477,1483,8435,1532,2057,3074,3714,17039,17041,2015,13860,4351,17042,17047,4375,2744,6515], +[2,823,364], +[2,823,4030], +[3,825,16], +"query-s", +"elector-", +"shadow-dom", +[2,11068,11069], +[2,11067,11070], +"tiny-", +"tiny-types", +[0,13428,1388,1651,17049,11862,11861,11857,4627,17050,8791,17051,17052,1973,5472], +"@integration/testing-tools", +[2,823,5710], +[3,11064,14], +"ucumber", +[2,11077,11078], +[2,823,2765], +[2,5554,36], +[2,823,11081], +[2,823,2899], +[3,7744,12], +[2,11084,2632], +"mocha-multi", +[1,2349,11089], +"serenity-js", +[0,11090,11091,2523,2531], +[0,1437,17059,4717,1527,3054,6301,17058], +[0,1429,2899,4135,1894,4856,1595,6503,3210,4131], +[1,2349,11094], +"@wdio/reporter", +[0,11098,11099,11101,2531], +"@wdio/", +"@wdio/cli", +[3,8255,9], +[0,17081,17090,17067,17080,17082,17093,17101,17108,1654,17068,17071,14674,17083,17086,1655,1660,17104,17089,17098,17074,17096,17075,17078,17097,17091,1658,17107,17092,17103,17100], +[0,2899,1177,4042,4614,17113,17110,8850,17112,10615,816], +"service", +[0,1653,965,17116,8221,7521,1424], +[1,2349,11106], +"@wdio/d", +"ot-reporter", +[2,11103,11104], +[0,11107,11115,11118,4194], +[0,17122], +"local-runner", +[2,11095,11108], +[2,4386,2903], +[2,11095,11110], +"@wdio/types", +[2,2299,2382], +[2,3758,1732], +[0,816,17081,17098,1177,2832,2899,4042,4073], +"wdio", +[2,11116,2903], +[0,1653,17125,17128,17129,17130,17134,7193,6333,4552], +[1,2349,11120], +[0,11121,11125,11135,2402], +[0,1654,17089,17092,17101,17103], +[3,826,9], +"commons", +[2,11122,11123], +[0,14674,1177,2899,4042,4073], +"@mochify/cli", +"@mochify/", +"driver-", +[2,11128,3758], +[2,11127,11129], +[3,11130,16], +[3,824,9], +[2,11131,11132], +[2,11122,7625], +[0,1653,17125,16662,17116], +[1,2349,11139], +"referee-sinon", +[2,11122,11137], +[0,0,11140,11141,34552], +[0,1177,2832,2899,4042,4073], +[0,1653,17125,965,17146,17147], +[1,2349,11144], +"ts-dedent", +[0,11149,11152,11153,34552], +"csf-plugin", +[2,10829,11145], +[3,10840,17], +"dom-s", +[0,17093], +"dom-shim", +[2,11147,11150], +[0,17096,1177,2899,4042,4073], +[0,1653,17125,11812,17116,1424,8221], +"addon", +"notes", +"organize", +[1,2349,11158], +[0,11159,0,11160,2531], +[0,2108], +[0,6400,17159,7521,8537], +[2,41,1512], +[3,11161,13], +"ssinjs", +[2,11162,11163], +[3,40,18], +[1,2349,11198], +"slick", +[2,11165,11167], +[3,452,18], +"-svg-icons", +[2,6920,11170], +[2,11169,11171], +"@pol", +"kadot/react-identicon", +[2,11173,11174], +"@polkadot/", +"util-", +"util-crypto", +[2,11176,11178], +[2,19177,11195], +"wasm-crypto", +[2,11176,11181], +[3,5050,14], +"tour", +[2,11183,11184], +"@zxing/browser", +"@zxing/", +[2,11187,6082], +"boring-avatars", +"list-react", +[2,2117,11190], +"jsqr", +"phosphor-react", +"qrcode", +"plugin-kit", +"qrcode.react", +"rc-cascader", +[0,0,0,11203,2540], +"rc-checkbox", +"ollapse", +"rc-collapse", +"rc-dialog", +[0,1662,4380,4383,21029,21038,21039,11483,11487,21054,21052,21042,17164,21057,21050,17166,89,1623,181,188,4627,5130,3287,6400,17171,699,29332,3709,34683,12951,29336], +"rc-drawer", +[1,2349,11214], +"opdown", +"rc-dropdown", +"rc-image", +"@humanfs/node", +"rc-input", +"-number", +[2,11210,11211], +"rc-mentions", +[0,0,8176,11217,2488], +"u", +"rc-menu", +[0,17179,3183,14690,10446,7058,6802,200,3368,1525,17180,1523,12986,17181,17183,17184,13565,1644,57,6478], +"otion", +"rc-motion", +"rc-notification", +"rc-pagination", +[1,2349,11230], +"rc-picker", +"rc-progress", +"rc-rate", +"rc-r", +"esize-observer", +[2,11226,11227], +"rc-s", +[0,11232,11237,2523,2540], +"rc-segmented", +[0,17191,1091,1149,1437,1513,1594,1605,2026,2720,17194,3148,3220,3722,705,17195,17196,17198,4746,4747], +"rc-select", +"teps", +"rc-steps", +"rc-switch", +[0,1173,1257,1267,1429,2899,4008,7707], +"rc-table", +[1,2349,11247], +"rc-tabs", +"extarea", +"rc-textarea", +"ree", +"rc-tree", +"-select", +[2,11244,11245], +[0,0,11248,2523,2402], +[0,17218,4494,17219,8538,4193,1177,17220,1209,1984,4508,2109,1894,1596,48,17212,3541,4183,4201,91,53,4874,17221,9689,6513,17209,7725,4870,17206,17214,10875,87,17210,7677,5517,92,1011,17223,1009,9692], +"rc-trigger", +[1,2349,11254], +"rc-upload", +"in-input", +[2,3870,11252], +[0,0,11258,2523,34552], +"logo", +"qrcode-logo", +[2,1246,11256], +[0,2899,4535,48,53,87], +[1,2349,11265], +"uperellipse", +[2,3890,11260], +"scroll-", +"into-view-if-needed", +[2,11262,11263], +[0,0,11309,11324,34552], +[3,68,15], +[2,11266,6424], +[3,362,16], +"css-prop", +[2,1258,11269], +[2,11268,11270], +[3,7910,12], +[2,11272,10177], +"@qixian.cs/github-contributors-list", +"@stackblitz/sdk", +[3,827,16], +[2,11276,591], +[3,11011,12], +"uild", +"er-webpack5", +[2,11279,11280], +[2,11278,11281], +[3,8300,15], +[2,11283,2855], +[2,10829,11284], +[3,10841,12], +"heming", +[2,11286,11287], +"tag.js", +[2,5246,11289], +"-axe", +[2,5087,11291], +[3,11292,12], +[3,2779,12], +[2,11294,3758], +[2,11293,11295], +"image-s", +"napshot", +[2,11297,11298], +[2,11293,11299], +[2,5086,3766], +"uppeteer", +[2,5088,11302], +"@types/q", +"@types/qs", +[3,4882,15], +[2,11306,4349], +"-wor", +[0,48,53,13693,87,6065,1175,1193,1203,1610,1177,1881,1938,1939,17232,2766,1192,2297,2898,2915,3213,3220,3222,3275,3697,1894,4042,4045,4073,4201,91], +"-words", +[2,5342,11310], +[2,4881,11311], +[3,4884,15], +"sizable", +[2,11313,11314], +"window", +[2,4881,11316], +"@types/thr", +"ottle-debounce", +[2,11318,11319], +"arning", +[2,7820,11321], +"antd-", +[0,1673,1666,6901,2700,3220], +"antd-img-crop", +"token", +"-pre", +"viewer", +"-previewer", +[2,11326,11329], +[2,11323,11330], +[1,2349,11334], +"array-move", +[0,11353,11358,11359,2540], +"bundlesize2", +"dekko", +[3,3597,9], +[3,4926,9], +"er-webpack", +[2,11339,4406], +[2,4354,11340], +[2,11338,11341], +[2,11337,11342], +"fetch-", +"fetch-jsonp", +"axe", +"jest-axe", +[2,2769,11299], +"jest-p", +[2,11349,11302], +"jsonml", +"react-e", +[0,1326,3299], +"react-element", +[2,8137,11354], +[2,11351,11355], +"lz-string", +[0,17240], +[0,1149,15001,17242,17244], +"rc-footer", +[1,2349,11379], +"rc-tween-one", +"rc-virtual-list", +"react-f", +"ast-marquee", +[2,11364,11365], +[2,5204,11310], +[2,3831,11367], +"react-in", +"finite-scroll-component", +[2,11369,11370], +[3,3882,9], +"izable", +[2,11372,11373], +"react-st", +"icky-box", +[2,11375,11376], +"react-window", +[0,0,11386,11387,2531], +"remark-lint", +[2,2987,4945], +[2,3996,11381], +"rome", +[2,4942,1894], +[3,4946,18], +[0,1906], +[0,1675,17251,3046,6925,17252,7051,6760,17253,6882,6870,9233], +"ational-order", +[2,11385,11388], +[3,4326,22], +"no-i", +"d-properties", +[2,2420,11392], +[2,11391,11393], +[2,7851,11394], +[2,11390,11395], +"sylvanas", +"vanilla-", +"jsoneditor", +[2,11398,11399], +"xhr-mock", +[1,2349,11403], +[0,11406,11407,11408,2540], +"-front-matter", +[2,4745,11404], +[0,3242], +[0,1377,1389,1596,2297,2871,2881,2900,2899,3202,4193,1906], +[0,1676,3073,6782], +[1,2349,11410], +[0,0,8176,11418,2540], +[3,829,10], +"-studio/client", +[2,11411,11412], +[3,11413,18], +"model", +[2,11414,11415], +"abab", +[0,1677,17266,1420,17267,15321,13230,15322,1871,2585,6270], +[1,2349,11423], +"async-mutex", +[2,6269,1871], +"color2k", +[0,11427,11431,11435,2402], +"presentable-error", +"expr-eval", +"ml-matrix", +[0,17273,17275,17277,17279,2215,3093,3532,17281], +"parse-color", +"-ast-parser", +[2,3564,11429], +[0,1999,17283,3505,3532,4039], +"matchall", +[2,7315,11432], +[2,1871,11433], +[0,17274,17285,1679,7682,4390,17286,17288,2056,4560], +"@ava/typescript", +"inycolor2", +[2,7750,11437], +"trash-cli", +[2,4480,4408], +[1,2349,11447], +"Supernova", +"Design Systems", +"io", +"Supernovaio", +"SDK", +[0,0,11455,11456,4194], +"Tokens", +"Design Tokens", +"Assets", +"Components", +"Documentation", +"Markdown", +"CMS", +[0,48,87,92,10614,17296,17212,5601,5087,1009,1011,1198,14065,17298,1622,1177,17300,1930,1939,1942,1945,1948,1953,17303,17306,1964,17308,2675,1192,17310,2931,2990,3124,3125,3390,17312,1894,17314,3708,3980,17318,4493,91,17319], +[0,1680,10381,17323,5194], +[1,2349,11458], +[0,0,11459,11460,34552], +[0,5087,3165,4468], +[0,3597,17329,4552,17331,17332,17335,17337], +[1,2349,11462], +[0,11463,0,11464,4194], +[0,17342], +[0,3048,7002,3426,2051,3583,1698,1496,1585,7880,1697,6899,6803,3432,6693,3743,3583], +[1,2349,11466], +[0,8864,7950,7951,2540], +[1,2349,11468], +[0,0,11469,11471,2531], +[0,1781,2899,1177,1209,4039,3363,1362,17352,2025,4535,1693,1951,3200], +"@svitejs/changesets-changelog-github-compact", +[0,1687,17354,3797,17358], +[1,2349,11473], +[0,0,11474,11475,2531], +[0,17363,2899,1177,2759,1317,1596,17366,3044,5476,17370,17373,17374,811,17377], +[0,17380,17382,17383,5472], +"okie", +[2,4860,11476], +"devalue", +"esm-env", +"mrmime", +"sade", +"tiny-glob", +[2,21032,1932], +[3,5244,10], +[2,11484,2255], +"dts-buddy", +[3,21031,18], +[1,2349,11490], +"official", +[0,11491,11492,11493,2402], +[0,17391,1417,17392,15308,17395,17399,17400,17403,17406,2756,13635,3433,3435,17407,17409,17411,17413,17416], +[0,13614,1158,1159,17418,1177,2133,17421,2569,17425,2708,3410,3421,5619,4103,4135,4389], +[0,5501,4162,3797], +[1,2349,11495], +[0,0,11499,11500,2540], +"-inspector", +[2,840,11496], +"hmr", +[0,2899,4170], +[0,1696,2051,1697,6899,1695,1496,1698,1781], +"vitefu", +[1,2349,11503], +[0,0,11505,11507,2488], +[3,839,11], +[0,4874,17439,2747,17440,4042,4055,4067,4389,4474,91,4535], +"vite plugin", +[0,1698,1697,2051,1585,1496,6899], +[1,2349,11509], +[0,11510,11511,11523,34552], +[0,2205,2743,17447,17450,3478,11424,4207], +[0,1166,1317,4400,4481,1906], +"element", +"elements", +"ant-elements", +[2,5257,11514], +[2,5875,11515], +"@svgr/", +"@svgr/core", +"plugin-jsx", +[2,11517,11519], +[3,11520,13], +[2,11521,4361], +[0,6865,1586,17453,17455,7293,14858,17456,17457,4050,17458,4051,6790,17459,4039,7074,2070,17461,2090,6857,7204,2150,17462], +[1,2349,11527], +"svgr", +[2,4670,1194], +[0,11528,11529,11530,2402], +[0,1700,3157,11424], +[0,1166,2020,17468,1906], +[0,13326,200,6865,1700,7293,14858,17456,17457,4050,17458,4051,6790,17459,4039,7074,2070,2090,1586,6857,7204,2150,17462,16697], +[1,2349,11535], +"unter", +"@swc/counter", +"@swc/types", +[0,11537,11541,11542,34552], +"@napi-rs/cli", +[0,29654,28415], +"swc", +"swcpack", +"tsc", +[0,17474,17477,4481,1906], +[0,1862,814,1702,17479,6703,2434,17481,17484,2013,14824,3286,17485,1702,1149,7003,6567,1362,17487,6754,3778], +[1,2349,11544], +[0,11545,11546,11547,2402], +[0,1676,2856,4747,2687,1209,4135,2822,814,17495,15648,1420,3181,17497,3249,1595,2107,4025,58,17501,101,17494,5320,14035], +[0,3421,2899,1177,4170,3709,2151,1894,1610,48,3752,91,53,1178,17504,85,94,87,1951,1959,1879,1938,1208,1895,1947,1955,1198,13052], +[0,4354,17507,3383,6666,1703,7190,4796,4797], +[1,2349,11549], +[0,0,11550,11551,2776], +[0,1317,1311,1177,1903,1938,1948,1954,1958,1970,2759,2899,4100,4538], +[0,17514,17515], +[1,2349,11553], +[0,11556,11557,2523,2540], +"@rtsao/scc", +[2,18997,4966], +[0,1676,13736,2205,17522,3170,3183,3539,17523,814], +[0,17527,2675,17529,3400,4255], +[1,2349,11559], +[0,0,8176,11560,2402], +[0,8958,17537,13735,6589,17539,1501,1871,2585,4225,17540,16630], +[1,2349,11562], +[0,11563,11564,11565,2531], +[0,15427], +[0,36688,6503,4874,17547,1177,17554,2020,17546,4294,4483,36684,91], +[0,13735,1709], +[1,2349,11567], +[0,0,11568,11569,34552], +[0,3421,4481,1429,2297,2899,1177,4042,2203,2924,1610,4535,442,91,53,2900,1195,2925,13388,94,87,4523,4681,2904,5517,1208,2921], +[0,1687,7222,3797,7163,2585,1781,1623,5284], +[1,2349,11571], +[0,11572,11573,11574,4194], +[0,1687,28365], +[0,442,19194,17579,5087,4874,17580,17584,1165,1406,1492,1584,1628,1637,1177,1939,1958,2092,2203,2036,17589,2651,2675,17591,17592,1192,2990,3123,3177,3188,3368,3561,3566,3613,3618,3672,1894,4468,4469,4474,91,4523,4027,2924,4677,4681,4705], +[0,3358,1687,3721,7153,3924,17595,17597,6843,5342,3721,1473,1936,1713,17599,17600], +[1,2349,11576], +[0,11577,11578,11579,2540], +[0,17610], +[0,5087,4874,1009,1011,1177,1895,17613,1915,1938,1192,1894,4468,4493,4508,91], +[0,17615,17618,17619,17620,17616,17621,17622,5284,17625,17626,676,91,17627,6869,4799,17629,17630,202,9624,17631,17632,17634,17635,17637,17640,17641,17642,17643,2218,17644,17645,17647,3403,17648,17649,17651,17652,17653,17656,17657,9981,7193,17659,17660,17661,17662,17665,17666,17667,17669,17673,17675,17677,17680,17679,11996,17683,17686,17687,17689,17691,17692,17695,17696,17697,17700,17702,17705,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,17720,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,17737,17739,6681,17740,1745,17116], +[1,2349,11581], +[0,0,11582,11583,34552], +[0,1429,1431,2228,2273,2283,2300,2272,2839,3006,2899], +[0,1429,15385,1388,5472], +[1,2349,11585], +[0,11586,11587,11588,2540], +[0,17752,17754,1723,2760,3345], +[0,2899,3699], +[0,6355,5995,4967,17758], +[3,850,25], +"tokens", +[2,11589,11590], +[2,11589,45], +[3,4323,18], +"ass-guidelines", +[2,11593,11594], +[3,7846,11], +"rettier", +[2,11596,11597], +[1,2349,11602], +[2,6910,591], +"patterns", +[0,11603,11604,11606,2776], +[0,4484,4548,17763,7658,347,7660,2069,17766,7663,17768,7664,7665,17770], +[0,4481,1192,7671,1177,4487,1787,1894,1610,91,4874,17772,7672,7678,7681,7685,1011,1009], +"gfm-footnotes", +[0,1721,5592,8549,5576,202,7692], +"web ", +[2,11607,4963], +"ui library", +[1,2349,11611], +[0,11620,0,2523,2540], +"symbiote.js", +"symbiote", +"frontends", +[2,3166,11614], +" application", +[2,5207,11616], +" elements", +[2,5317,11618], +[0,4535,2098,3460], +[1,2349,11623], +"shadow dom", +[0,11632,11641,11642,4194], +"shadow root", +"ructable stylesheets", +[2,5257,11625], +"adopted stylesheets", +"custom ", +[2,11628,3583], +[2,6883,11629], +"pubsub", +[0,16053,17786,17787,17788,2036,3127,17798], +"import maps", +"cdn imports", +" imports", +[2,2671,11635], +"reacti", +"ve html attributes", +[2,11637,11638], +"MIT", +[0,17805], +[0,1745,1783], +[1,2349,11644], +[0,11645,0,11646,34552], +[0,2829], +[0,1727,1745,1776,17813,1783,1932], +[1,2349,11648], +[0,0,0,11649,2488], +[0,17818,17819,7518,5398,5995,3250], +[1,2349,11651], +[0,11652,9270,11653,2402], +[0,17826,17827,7092], +[0,17829,17830], +[1,2349,11655], +[0,11656,11657,11658,4194], +[0,1170,4747,1733,17838,29861,17835], +[0,1429,2899,2026,1364], +[0,1745,2275,1973,2295,1739], +[1,2349,11660], +[0,11661,11662,11664,2402], +[0,5923,17835,17846,1091,13426,17849,17851,17853,1170,17838,29861,1759,17850,11663,10342,3536,3549,17859,4459,824], +[0,1703,2026,2899,4135], +"jq-web", +[0,1745,1973,2295,1739], +[1,2349,11666], +[0,11667,0,11668,2488], +[0,1525,3127,2151,4545,2600], +[0,1745,1739,1179,17867,1509], +[1,2349,11670], +[0,11671,0,11642,2540], +[0,1794,17872,5639], +[1,2349,11673], +[0,11674,11675,11676,2402], +[0,17877,28367,28371,17881,3747,4391,3348], +[0,1362,1429,3152,2899], +[0,17878,17884], +[1,2349,11678], +[0,11679,11680,11681,2540], +[0,17889,17890,17892,1292,17893,1415,17895,16166,17896,17898,17899,9254,17900,17901,17904,17905,17906,17907,2720,17909,17910,17911,3171,3310,17914,17915,17916,4039,17917,17919,17920,4135,17921,17922,17923,4545,17924,4746], +[0,17929,17930,16966,1509,17931,3220,17934,17936], +[0,5353,6147,17939,9381,200,6354,1509,7234,4643,17944,3304,5001,17945,17946,15141,5130,1179,17948,202,1644,57,8924,3902,8632,12478,5354,17950,4990,6435,5122,17951,10340], +[1,2349,11683], +[0,0,11684,11685,2531], +[0,5366,4874,7677,22839,1317,33261,35609,1177,1938,1942,91,1984], +[0,4967,5995,2844,7020,1776], +[1,2349,11687], +[0,0,11688,11689,34552], +[0,53,87,442,5583,811,8850,816,10615,1165,1387,1536,1854,1177,1895,2203,3125,15197,3400,3561,3584,3605,3613,1894,4039,4042,10854,2278], +[0,1739,17964,17965,1745,1179,5284,676,1783,5980,1932,16630,17966], +[1,2349,11691], +[0,11692,11693,11694,4194], +[0,17971,17972,2654,3183,4545,17974], +[0,4384], +[0,2195,1783,1745,9591,57,17977,17978,17979], +[1,2349,11696], +[0,11697,11698,11699,4194], +[0,53,5216,58,101,104,1437,1457,1687,17986,9322,7610,2070,17988,2600,2714,2822,17989,1209,12427,17990,17995,17997,3532,3921,3984,3988,3989,18000,10632,814,4300,18002,4555,12449,18004,18005,4747], +[0,18007,1652,18009,1177,1895,2151,2675,1192,2845,2990,3203,1894,4257,4449], +[0,1745,4525,1776,18011,57,5351], +[1,2349,11701], +[0,11702,11703,11704,2531], +[0,18016,18018,1676,18019,18020,18023,3013,4545], +[0,4874,2228,2291,2300,3006,3200,16092,4193,4436], +[0,18028,18031,1748,18036,13531,18037,18035,6599], +[1,2349,11706], +[0,11707,11708,11709,2540], +[0,6084,2164,2070,1437,89,1843,1209,3188,1291,1637,2026,3561,3725,705,4167,7799,4438,2151,2267,1525,3824,1461,3560,4001,53,18042,104,1165,2600,3123,18051,18052,18055,18056,7610,85,94,101,3816,18050,87,18045,18047,90,1874,1845,61,78], +[0,4039,17996,2149,18059], +[0,1745,18061,18063,467], +[1,2349,11711], +[0,11712,7927,11713,34552], +[0,18068,1497,9892,2577,2586,2608,6327,18070,8114,3181,3971,18071,4549,18072], +[0,467,6327,18074,1745], +[1,2349,11715], +[0,11716,11717,11718,34552], +[0,97,1639], +[0,28581,29292,48,53,92,29293,29294,29492,1009,1011,1178,1195,1177,1938,1947,1951,1959,2025,2070,2814,2297,2881,2895,26470,2900,2904,2918,2921,2925,2899,4039,33564,4193,91,2924], +[0,1751,5128,965,5592,18080,590,2013,18081,4289,1751,1227,18082,1623], +[1,2349,11720], +[0,11721,11722,11723,2540], +[0,18089,15487,18087], +[0,1192,1177,1448,4468,1894,91,5087,4874,2654,1895,1011,1009], +[0,1936,6523,8924], +[1,2349,11725], +[0,0,11726,11727,4194], +[0,1429,1177,2228,2240,2273,2281,2283,2298,2822,2297,2878,2881,2895,2900,2904,2899,1894,4135], +[0,965,158,18097,8924,1936,1424,8221,18048], +[1,2349,11729], +[0,11730,11731,11732,34552], +[0,37513], +[0,53,87,5583,816,6373,10615,1006,4874,1610,1895,1955,2814,2832,2297,2876,2881,2895,2908,2910,3183,3697,1894,2907,18102,4039,4042,4057,18106,4076,4484,91,1906], +[0,965,4741,1936,8221,18110,1965,18112,18113,2574,7131,18114], +[1,2349,11734], +[0,0,11735,11736,2402], +[0,3421,1177,1596,3697,12847], +[0,1283,2062,2869,17950], +[1,2349,11738], +[0,0,11739,11740,2540], +[0,4874,6323,4193,4255,4257,4384,91], +[0,1759,1263,6890,6639,6436,1541,6937], +[1,2349,11742], +[0,11743,11744,11745,2531], +[0,1759], +[0,4874,4255,4257,4384,91], +[0,1759,18132,6436,18135,18137,1263,6890], +[1,2349,11747], +[0,11748,11749,11750,2540], +[0,2212,3532,3477,18143,3093,2096,1679,18145,2188,18142,1560], +[0,1906,1166,3297,18147,4039,3505,18148], +[0,1764,7682,27,705,1002], +[1,2349,11752], +[0,11753,11754,11755,2488], +[0,1764,12650,4039], +[0,5175,2675,2899,4216,4255], +[0,1764,2195,17978,17977,12468,18157,4390,7682,18158], +[1,2349,11757], +[0,11758,11759,11760,2540], +[0,1768,1770,1777,1782,1784,1779], +[0,1177,4039,442,91,4874,4523,1011,1009], +[0,1767,1745,200,1776,1367,1783,1781], +[1,2349,11762], +[0,11763,11764,11765,4194], +[0,2205,1770,18170,18173,1777,1782,18174,1784,1779], +[0,1192,1177,4039,3363,4468,442,91,5087,4874,5571,4523,1011,1009], +[0,1767,1745,200], +[1,2349,11767], +[0,11768,11769,11770,2540], +[0,18183], +[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,1011,18186,1009], +[0,1767,1745], +[1,2349,11772], +[0,11773,11774,11775,2540], +[0,18192], +[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,1011,1009], +[0,1767,1745,1283], +[1,2349,11777], +[0,11778,11779,11780,2540], +[0,1241,1776,18201], +[0,1192,1177,4039,4468,1587,442,91,5087,4874,18203,5571,4523,1011,1009], +[0,1767,1745,1776], +[1,2349,11782], +[0,11783,11784,11785,2540], +[0,3105,2600,3117], +[0,1192,1177,4039,4468,442,91,5087,4874,5571,4523,7639,1011,1009], +[0,1767,1745,1367], +[1,2349,11787], +[0,0,11774,11788,4194], +[0,1767,1745,1781], +[1,2349,11790], +[0,11791,11774,11792,2531], +[0,3117], +[0,1767,1745,1783], +[1,2349,11794], +[0,11797,11798,11805,2540], +"tent-type", +[2,11484,11795], +[0,2081,2700,3427], +[0,53,14170,13051,18225,1178,18228,1610,1700,1866,1177,18229,1895,1922,1935,1947,1955,1959,18230,2126,2323,2338,2361,2368,18233,2396,2409,2419,2494,2541,1192,1894,89,3824,3904,18235,4431,4537,18237], +"a-parser-js", +[2,7817,11799], +"null-loader", +[2,4049,2098], +"tanem-scripts", +"ua-parser-js", +[0,18239,6038,89,18241], +"images", +"img", +"scal", +"able-", +"vector-", +"ics", +"graphics", +[2,11810,11812], +[2,11809,11813], +[2,11808,11814], +[1,2349,11817], +[0,11818,11819,11822,2531], +[0,8712,18248], +[0,18254,18255,1429,1651,18259,2297,2881,2900,18260,2923,2899,3198,3347,5362,2278,4193,4196], +"query-core", +[2,959,11820], +[0,18263,18266,18267,9229], +[1,2349,11824], +[0,11825,11826,2523,2531], +[0,4747,4487,18272,2151,18275,4300,2851,18277,18279,18282], +[0,1177,4874,4892,4864,1011,18285,18290,1009], +[2,964,3709], +[1,2349,11829], +[0,11830,0,11831,2540], +[0,28142], +[0,1747,1788,2382,18035,5995,200,18295,2663], +[3,7637,10], +[2,11832,977], +[1,2349,11841], +"@github/webauthn-json", +"better-", +"better-docs", +[3,1895,17], +"act", +[2,11838,11839], +[0,11844,11845,7835,2540], +"hanko", +"passkey", +[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12467,12406,1582,1699,12409,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,3788,11244,3789,3810,5564,3846,12435,12438,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12444,12445,4549,4555,12447,1002,12448,12449,12452], +[0,192,5467,7634,12455,12458,7637,12459,4874,12461,8149,4880,4882,4883,12462,12463,1177,10321,2071,2079,12471,12472,2675,2990,1894,3706,3708,89,3824,4320,4474,91,1984,12473,12475], +"webauthn", +"passcode", +[1,2349,11849], +[0,11850,11851,7835,34552], +[0,12393,12394,11275,842,12396,9363,12397,12399,12400,12403,1461,12405,1582,1699,12409,12452,1835,12412,12415,12419,7610,12421,2572,2579,2584,12422,2613,2646,12424,2822,3070,12427,12429,3412,3547,9054,12431,3725,3786,11219,11240,11244,3810,5564,3846,3963,12441,3978,12443,9340,3988,3992,3999,2278,7799,12445,4549,4555,12447,1002,12448,12449], +[0,192,5467,7634,12455,12458,7637,12459,4874,12461,4880,4882,12462,12463,1177,2071,2079,12472,2675,2990,1894,3706,3708,89,4320,4474,91,1984], +[1,2349,11854], +"kcd-scripts", +[0,0,11855,2523,2531], +[0,4389,4430], +[1,2349,11858], +"integration", +[0,11859,11860,7397,4194], +[0,18313,18315,18316,18317,18322,97,8597,18328,18332,18333,18334,18336,1461,1582,1673,18339,18340,18344,18347,18349,18351,18354,18355,18357,18358,18360,18362,18364,18365,18368,18370,18371,18372,18374,18376,18378,18380,18381,18382,18383,18385,18386,18387,18389,18391,18392,18394,11264,4427], +[0,13175,13178,5076,13181,11267,11976,13187,7833,7837,7839,7840,368,7948,11273,13188,8998,13189,13192,643,692,11274,10875,11275,966,968,972,974,13194,13196,13198,4864,11290,13200,13203,5087,11292,11296,11300,11301,13204,4870,7892,4874,13205,13207,13210,8149,6510,11305,4880,4882,4883,11312,11315,5254,13213,13214,11320,11322,1009,1011,1086,13078,11325,13215,11331,1170,1437,1448,13221,13223,1610,1613,11336,1759,1789,13228,8161,1177,1879,1895,1915,1924,1938,1939,1947,13231,1948,1959,1961,1982,2071,11345,2151,2193,2070,12424,2665,2686,2696,2742,2758,1192,11347,2771,2780,2784,11348,11350,2814,2832,11356,5102,2990,1209,13232,11357,3183,3213,3310,3330,3412,3445,3467,13233,3536,3549,1894,3703,3717,3725,3758,3763,11360,11362,11363,89,3810,13235,3824,4934,11366,11368,11371,3843,11374,3885,11377,3957,3978,3984,3985,3988,11380,13240,11382,3999,4039,13241,4135,4164,4183,4201,13243,11397,4390,4391,4072,4494,4508,91,11400,13245,2924,4676,11401], +"end-to-end", +"e2e", +[1,2349,11864], +[0,0,11865,11866,2402], +[0,192,5467,19193,442,1177,1895,1951,1955,2675,2990,2899,1894,4042,4170,4257], +[0,4552,1149,14629,18402,1794,3048,1862,6917,14824,5995,4967], +"ria-query", +[2,9165,11867], +"aria-query", +[2,7320,2825], +[2,1752,11870], +[1,2349,11873], +[0,11885,11886,11887,2457], +"n-case", +"jest-in-case", +"-ser", +"ializer-ansi", +[2,11876,11877], +[2,8746,11878], +[3,2802,11], +"select-p", +"rojects", +[2,11881,11882], +[2,11880,11883], +[0,4484,18407], +[0,51,53,104,18282,18277,18409,603,811,816,6373,5087,1009,1011,1437,1525,1787,668,1177,2151,2205,2675,1192,2771,2272,3090,3445,4042,4073,4127,4135,4072,4468,91], +[0,1795,18411,15480,18412,17116,18413,18415,1424,8221], +[1,2349,11889], +[0,11892,11900,11901,2540], +"css.escape", +"redent", +[0,18420,2096,18423,2390,18425,18426,18427,1209,3181,18428,3544,4431,4597,4600,4747], +[2,552,2203], +[3,2782,23], +"sixteen", +[2,11894,11895], +[3,4057,15], +"elete", +[2,11897,11898], +[0,4856,4864,18432,4870,6503,4874,9725,6513,6512,18435,18438,18440,4892,1429,2012,2151,2188,2899,3421,3752,4039,4193,4196,4474,4487,91], +[0,18420,2041,2649,18442,18443,6589,18444], +[1,2349,11903], +[0,11904,11905,11908,2540], +[0,2763], +[0,91,68,1389,1177,14707,1776,3084,2899,4535], +"atcher-utils", +[2,8763,11906], +[0,1283,17950,16284,1797], +"@callstack/eslint-config", +"@rel", +"mify/jest-serializer-strip-ansi", +[2,11910,11911], +[1,2349,11914], +[0,11915,11916,11917,2540], +[0,1437,1209,18456], +[0,3297,1082,1149,2228,2899,4193,4237,1177,2814,3220,4135,1168,1330,2924,18458,18459,1362,3460,1894,4431,2025,2071,7915,2240,18463,1389,53,11801,1178,1195,18464,17568,87,1954,2258,2247,1938,2253,2281,1958,1895,1903,1955,1970,18461], +[0,1798,14059,8173], +"dotenv-cli", +[1,2349,11920], +[0,7949,7950,7951,2531], +[1,2349,11922], +[0,11923,0,11927,34552], +[0,4874,2057,18473], +"@esbuild-plugins/node-modules-polyfill", +"@ph.fritsche/scripts-config", +[3,11925,13], +[0,1804], +"toolbox", +[2,11926,11928], +[3,11300,13], +[2,11930,11874], +[3,7690,15], +[2,11932,2203], +"-lib-coverage", +[2,2759,11934], +[3,11935,13], +"report", +[2,11936,11937], +[2,4227,591], +[2,11936,11939], +"istanbul-", +"reports", +[2,11941,11942], +[3,6551,9], +"jest-s", +"r-ansi", +[2,7909,11946], +[2,11945,11947], +[1,2349,11950], +[0,11953,11954,11955,2540], +"-scripts", +[2,6579,11951], +[0,1437,4747,1458,2151,18479,18480,18482,18484,18488,18174], +[0,4892,4864], +[0,1804,9381,6147,7242,1161,1808,4405,18493,1896,18494,4750,18495,8433,18496,18497,18498,18499,18500,18501,18502,18503,13322], +"@ember/app-blueprint", +[1,2349,11962], +"aram", +"regexparam", +"tseslint", +"tinyhttp", +[0,11963,11964,11965,2540], +[0,18509,18473,18511,18513,18514,18518,1676,2057,18145,2151,18521,18524,18525,18527,2072,18528,814,4135,4748], +[0,1009,1011,1166,1400,1503,1177,1903,1920,1938,1954,1958,3421,3539,4193,4481,4508,91], +[0,1804,1808,6996,1896], +[1,2349,11967], +[0,11968,11969,11927,2402], +[0,2057,18537], +[0,4389,4255,18540,3505], +[1,2349,11971], +[0,11972,11587,11588,34552], +[0,1437,2152,2760,18545], +[1,2349,11975], +[2,976,4590], +[0,11979,11980,2523,4194], +"@biomejs/biome", +[3,4343,10], +[2,11977,1612], +[0,18552], +[0,2228,18555,2236,2273,2281,2298,2766,2814,2297,2881,2895,2898,2912,3006,1209], +[1,2349,11982], +[0,11983,11984,11985,34552], +[0,1156,1191,1699,3373,4023,4427], +[0,18566,18569,1173,1175,1195,1198,1208,1212,1220,18571,1264,1277,18574,1429,1457,1584,1596,18575,1610,1628,1863,1177,18580,1916,1937,17585,2092,18581,2323,2332,18582,2504,2600,2651,2843,13110,2297,2881,2886,2900,18260,2921,2923,2925,18584,3105,3107,18587,3112,3177,2899,3342,3463,3561,3732,4039,4111,18590,4193,4196,4307,18592,4537,18595,4027,188,4634,4639,4645,18599,2924,4677,4681,4693], +[0,13449,188,4963], +[1,2349,11987], +[0,11989,11990,11991,2540], +"headers", +[0,1363,18609,18610,18611,2713,18613,18616], +[0,1377,1596,1177,2228,2236,2240,2256,2258,2281,17567,2311,2759,2899], +[0,18619,18620,18621,18622], +[1,2349,11994], +"ipaddr.js", +[0,11997,11998,11999,2540], +"net", +"network", +[0,18627,18629,18632,2646,18633,1209,3361], +[0,192,5467,1166,1448,1610,1797,1177,1909,2114,2675,2990,18637,3421,18634,3754,3985,3995,1906], +[0,1559,1823,16284,2934,18639,18640,18643,18645,18646,18647,3361,18648,3754,18649,1283,5354,4714], +[1,2349,12004], +[3,975,11], +"ccepts", +[2,12001,12002], +[0,0,12005,2523,2531], +[0,442,18657,4874,18659,7677,1177,1895,1955,18660,1894,18661,4474,91,4523,1984], +[1,2349,12007], +[0,12008,12013,12014,2402], +[0,30697,27276,11956,18740,18684,14959,18693,18733,18735,18687,1378,18737,1381,18717,18720,18695,18686,18747,18683,1437,1458,18689,1536,1543,18671,18678,18679,18668,1687,18753,12923,18758,12925,18704,2020,2021,2026,2098,2105,18745,2151,14939,12929,12471,2070,14940,18728,18701,18708,2659,2712,2720,18673,18702,1209,3105,18726,3181,3237,3368,3386,18428,18669,3560,18714,18722,18675,814,14562,18730,18667,4135,12937,18710,18698,1241,4423,4438,18670,4648,18692,7801,18666,31963,31947], +"ntent-", +[2,12009,10366], +[2,981,12010], +[3,985,11], +[0,14938,1385,1429,1431,18761,15264,1540,18774,18771,1177,1895,18766,1951,1953,2116,18706,2832,2960,2899,3297,3421,1894,6021,4294,4342,4421,4449,36864,4699,4707,18764,18760], +[0,1896,18776,12589,200,18777,18778,18779,837], +"ncode-url", +[2,12012,12015], +[1,2349,12018], +[0,12019,12020,12021,2540], +[0,5222,71,5757,5759,5809,5830,5832,83,5889,87,97,18784,18787,18790,18795,1212,18801,18687,1378,18695,18747,1496,18803,18807,18704,14562,4135], +[0,53,18809,18811,18812,18813,18815,1178,1385,1429,1499,18867,1532,18671,1593,18679,18823,1825,18825,1830,18829,18832,18833,18834,18835,18839,1177,18840,1954,18706,18841,2899,2907,3957,6021,814,4039,2924], +[0,1172,18777,18844,1825,5197,5198], +[1,2349,12023], +[0,12024,12025,12028,34552], +[0,18852,18855,18687,18865,14938,14939,18708,18868,12937,4648], +[0,53,68,71,5757,83,5889,97,18809,18812,18872,18787,1381,1385,1429,18867,1540,18823,1825,1827,18873,18825,18829,18832,18833,18834,18835,18839,18889,18892,18894,1177,1895,18840,1951,1953,1955,18895,2116,18841,2899,1894,2907,3773,3980,14944,4320,4323,11598,2924], +[3,12011,18], +[2,12026,998], +[0,18844,1825], +[1,2349,12030], +[0,12031,12032,12033,4194], +[0,18901,18906], +[0,816,10817,4874,2968,4039,4042,4494,91], +[0,1831,1936,1623,4412,18909], +[1,2349,12035], +[0,0,0,5719,4194], +[1,2349,12037], +[0,0,12038,12039,4194], +[0,2899,1177,2759,1954,1938,1958,1903,1970], +[0,10368,1833,1002], +[1,2349,12041], +[0,12043,9270,12051,2540], +"tsparticles", +[0,3441], +"particles.js", +"particles", +"particlesjs", +"particle", +"jsparticles", +"xparticles", +"particles-js", +[0,3101,7046,7241,18924,12706,4966,6703], +[1,2349,12057], +"particles-bg", +"-vue", +[2,12053,12054], +"particles-ts", +[0,12064,12065,2523,2540], +"particles.ts", +[3,2638,9], +"ticles-js", +[2,12059,12060], +[3,12061,15], +[2,12062,1722], +[0,2215,4388], +[0,8780,5087,4874,1622,1177,20281,2675,1192,2990,3144,1894,91], +"vue-particles", +"ngx-particles", +[2,1101,12045], +[1,2349,12077], +"ground", +[2,12047,12070], +"vuejs", +"preactjs", +"angularjs", +"html5", +"web-design", +[0,12078,12085,12095,2540], +[0,1104,4294], +"webdesign", +"css3", +"vtt", +"animated", +"background", +"conf", +[0,4874,2398,2720,2899,3421,3742,91], +"confetti", +"works", +"fireworks", +"fireworks-js", +"confetti-js", +"confettijs", +"fireworksjs", +"canvas-", +[2,12093,12086], +[0,8618,8619,8620,1299,200,1523,6876,8622,1836,1179,8623,8624,6847,8625,2720,8626,8628,5284,202,6710,3741,3742,8630,8631,3925,8632,4989,8633,2184,8634,7009,6621,181,8635,4758,8636], +"apk", +"flickity", +[1,2349,12106], +"@d-fischer/shared-utils", +[3,1005,9], +"all", +"api-call", +[2,12100,12102], +[2,12100,10896], +"jose", +[0,12107,12109,12110,4194], +[0,7272,12240,3757,19647], +"twitch", +[0,13614,1159,9254,1177,2011,2708,3410,3421,4103,4389], +[0,18089,18943,18944,1936,10368,15103], +[1,2349,12112], +[0,0,12113,12114,2488], +[0,1429,2675,2899,1899], +[0,6971,18951,18952,998,6956], +[1,2349,12116], +[0,12117,12125,12138,2531], +[0,2003,4430], +[2,3273,6543], +[3,439,18], +"regexpp", +[2,12119,12120], +[3,5552,23], +[2,12122,3007], +[2,1010,1995], +[0,4387,4389], +"title-case", +[2,3138,9102], +"pecific-snapshot", +[2,11945,12128], +[3,8722,10], +"-mdxjs", +[2,12130,12131], +[2,3167,12132], +[3,5551,24], +"to-typescript-types", +[2,4120,12135], +[2,12134,12136], +[0,6639,6436,1389,14927,353,4225,8309], +[1,2349,12140], +[0,0,12141,12143,2540], +[0,53,13051,85,87,192,5467,17584,1175,1178,1193,1195,1177,1881,1895,1938,1955,18964,2070,2675,1192,3183,6331,4750,1894,10623,2924,4677,4707,18966], +"pastoralist", +[0,5001,1263,6639,18523,18968,18969,18971], +"cript-estree", +[2,5552,12144], +[1,2349,12147], +[0,12148,12149,12150,2540], +[0,18976,1448,1850,18980,6914,18982,18984,18986,18989,17403,18990,18992,18993,3044,3431,13635,3435,3438,18994,3775,18995,18997], +[0,1173,13998,1261,1177,1879,1938,1947,1959,2708,2832,4039,4103], +[0,5284,19001,19003,1973,6071,89,2130,5472,19005,19007,6969,2899], +[1,2349,12152], +[0,12154,12156,12150,2457], +[2,12155,27730], +[0,2571,4135,3847,3744,3435,18994,3904,1847,1850], +[3,20826,14], +[0,1843,1177,4039,3410,48,2708,53,1261,1959,4103,68,1879,1938,1947,1961,1198,13998], +[1,2349,12164], +[3,1013,11], +[2,12158,9026], +[2,10306,5256], +[3,1603,14], +"ontext", +[2,12161,12162], +[0,12167,12174,12150,2540], +"-theming", +[2,1832,12165], +[0,2571,4135,3744,3435,19018,19020,18980], +"-formatter", +[2,1413,12168], +[2,2093,12169], +"mini-", +"mini-store", +"rc-animate", +[0,1177,4039,3410,48,2708,53,1261,1959,4103,68,1879,1938,1947,1961,1198,13998], +"rc-form", +"z-use-drag", +[1,2349,12183], +"@types/ra", +"@types/raf", +[3,1013,13], +"codo-gen", +[2,12180,12181], +[0,12210,12211,12150,34552], +"ast-types", +"motion", +[2,4893,12185], +[3,1225,14], +"proptypes", +[2,8137,12188], +[2,2528,12189], +[2,12187,12190], +[2,4670,8861], +[2,1199,12192], +"hot-loader", +[2,1625,12194], +"jest-emotion", +"screenshot", +[2,8820,12197], +[3,4323,19], +"yled-components", +[2,12199,12200], +[3,11598,12], +"or-styled-components", +[2,2484,12203], +[2,12202,12204], +"tsc-alias", +"@electric-sql/pglite", +"ucloud", +"lsofi", +[0,2571,13635], +[0,1177,4039,3410,48,2708,53,1261,4103,68,1938,1881,1198,13998], +[1,2349,12218], +[3,1014,9], +"slate", +[2,12213,12214], +"slate-hyperscript", +"slate-react", +[0,12221,12223,2523,2488], +[2,12213,594], +"is-hotkey", +[0,1080,1869], +"jotai-optics", +[0,1087,1177,1903,1938,1948,1954,1958,2899,3421,4342], +"jotai-x", +[1,2349,12230], +"optics-ts", +[3,3836,9], +"keys-hook", +[2,12227,12228], +[0,12234,12235,12237,2540], +"deep-compare", +[2,8183,12231], +"zustand-x", +[0,1082,2071], +[0,16805,1393,19038,5867,30889,12142,1894,3980], +"plate", +[0,19042,19044,3595,19045,19046,19047,5286,19049,19052,19053,676,19054,19055,19057,19059,19060], +[1,2349,12239], +[0,12241,12243,12249,2540], +"es-errors", +[0,19066,2569,19071,19073,19078,15059,3435], +"react-b", +[0,5517,13614,23237,10976,10979,11008,27564,27568,27571,27573,27575,27576,27580,11013,19325,1143,1159,9254,1177,14741,15308,2756,3410,3421,19082,4103,19084,4389,11028], +"react-button", +"uiw-react", +"react.js", +"uikit", +"react-ui", +[0,5284,5286,3595,676,6693,6692,5187,1182,6830], +[1,2349,12251], +[0,12252,12254,12256,2457], +[0,15786,19092,19093,19094], +[2,1024,45], +[0,1177,15793,15797,15801,2675,2990,3421,19097,15804,15805], +[3,3839,10], +[0,5286,19099,19100,1925,5194,19101,2680,19102,2474,5258,5284,6422,1858,614,594,6731], +[1,2349,12258], +[0,0,12259,12261,2540], +[0,13614,1158,1177,2708,2768,3421,4103,4535], +"react-input", +[0,1858,1925,19108,5284,5286,6422], +[1,2349,12263], +[0,0,12264,12266,2531], +[0,1173,1175,1198,8966,1264,1429,1610,2899,4039], +[3,1023,18], +[0,5194,1851,1172], +"verlay-trigger", +[2,8666,12267], +[1,2349,12270], +[0,0,12271,12272,2488], +[0,19118,2899,1825,18686,18693,19119,19121,19122,19123,1381,18801,18825,19125,19127,14217,14196,19130,14214,1235,14199,14192,1244,14198,14215], +[0,19132,6422,1862,6567], +"react-u", +"react-utils", +[1,2349,12276], +[0,0,12277,12280,2540], +[0,48,53,87,10688,1863,1177,1895,1903,1938,1954,1958,2675,3421,1894,4193,4389], +[2,12279,8295], +"flowbite-", +[0,1862,6567,5194,19138,1865], +[1,2349,12282], +[0,0,12288,12291,4194], +"to-ts", +[2,7526,12283], +[2,7719,553], +"prom-client", +"unleash-client", +[0,13614,1158,1429,1859,1177,2011,2228,2256,2283,2311,2708,2899,3421,3736,19146,4103,4389,4535], +"ype-is", +[2,7750,12289], +[0,5286,5258,5194,1858,1862,6567,7168,3053,3065,6636], +"ts-node-dev", +[1,2349,12297], +"Unleash", +"ios", +"android", +[0,0,12298,12299,2531], +[0,1317,1311], +[0,1867,1936,6435], +[1,2349,12303], +"keyux", +[3,1027,12], +[0,0,8176,12308,2402], +"image-shrink", +[2,12302,12304], +[2,9229,4219], +[2,12302,12306], +[0,1867,1108,6961,6920,7256,1871,19161,7169], +"shipjs", +"@esm-bundle/chai", +[1,2349,12316], +"@total-typescript/ts-reset", +"@hap", +"py-dom/global-registrator", +[2,12313,12314], +[0,12317,12321,2523,2540], +[0,2004,14301,2003,4227], +"uploadcare", +"lighter", +"file ", +[0,1082,1362,19168,1429,6522,19172,2323,2384,2463,3183,3466,4135], +"file uploader", +"ive image", +[2,5156,12323], +" optimization", +[2,158,12325], +"image ", +[2,12327,6110], +"image size", +" image editor", +[2,6599,12330], +" client", +" api client", +[2,9229,12333], +"ing blocks", +[2,6147,12335], +"lr-blocks", +"uc-blocks", +[2,11857,591], +"smart", +[1,2349,12356], +"smart cdn", +"cloud ", +[3,31,8], +"file platform", +[2,12343,12345], +"ation api", +[2,353,12347], +"webp", +"avif", +"css c", +" properties", +[2,12162,12352], +[2,12351,12353], +[2,11617,591], +[0,12357,12358,12359,34552], +[0,439,12121,19180,27907,19193,11180,11209,19182,19184,1006,1091,1615,1676,1874,1994,1996,2000,19186,14301,2069,16783,2105,2200,2687,19187,2743,19189,3181,12118,3466], +[0,5517,53,87,8129,19194,19181,19195,19581,4874,1011,1195,1414,1429,1448,1532,1593,1651,1797,1933,15510,17308,19206,32793,19210,2003,19213,2070,2203,2212,2226,2807,2931,2990,3105,3112,3127,19216,19219,19221,19222,19223,19224,2899,19227,19230,1894,3730,3752,3930,3957,4135,4167,4193,91,2924,4677,19235], +[0,6892,671,5284,5286,2000], +[2,8137,668], +[2,1393,12360], +[1,2349,12363], +[0,12364,12365,12366,2531], +[0,3435,3438,1881], +[0,4389,1796,1177,2708,97,19243,19247,1261,1959,4103,1938,1947,1961], +[0,1177,6651,1541,1259,5284,6718,6778,7056,7192,7044], +[1,2349,12373], +[3,5881,34], +"self", +[2,12368,12369], +[3,12370,35], +[2,12371,5585], +[0,12374,12375,12366,2540], +[0,4135,3435,3438,19254], +[0,4389,1796,1177,2708,97,19243,19247,1261,4103,1938], +[1,2349,12377], +[0,12378,12379,12380,2402], +[0,1881], +[0,1009,1011,1742,1177,1895,1938,2675,2990,3400,1894,19263,91], +[0,1259,1541,6778,7056,7192,7044,1177,6651,5284,6718,91], +[1,2349,12382], +[0,0,5868,12383,4194], +[0,1885,1501,19269,590,671,9654,2292,2272,19270,1177,2649,19271,15717,4354,16790,19273,18443,2446], +[2,8530,4798], +"merge-deep", +[1,2349,12387], +[0,12388,5868,12389,2540], +[0,442,2203], +[0,1177,7625,19281], +[1,2349,12391], +[0,12401,12404,12408,2540], +[3,5075,18], +[2,12392,8221], +"@makotot/ghostui", +[3,6497,10], +"@types/hast", +"@umijs/bundler-utils", +"@umijs/", +"@umijs/core", +[2,12398,594], +[0,19438,19181,442,19344,1009,1011,1891,1907,19286,1915,1938,1942,1951,1953,17306,1982,4523], +"-scroll-to", +[2,12082,12402], +[0,9736,1177,91], +"codesandbox", +"comlink", +"dumi-", +[0,1890,1177,7625,19281], +"dumi-afx-deps", +"estree-", +"util-to-js", +[2,12410,12411], +[3,12412,12], +"visit", +[2,12413,12414], +"file-s", +[1,2349,12423], +"ystem-cache", +[2,12416,12418], +"is-element", +[2,2573,12420], +"heti", +[0,12430,12453,6978,2457], +"html2sketch", +[3,3137,12], +"ind-and-replace", +[2,12425,12426], +[3,3140,14], +[2,12428,1871], +[0,1953,1951,1938,19286,1011,17306,1009,1915], +"prism-themes", +"react-l", +"-skeleton", +[2,10087,12433], +[2,12432,12434], +"code-editor", +[2,10961,12436], +[2,3890,12437], +"rehype-r", +"emove-comments", +[2,12439,12440], +"directive", +[2,3986,12442], +"sucrase", +"umi", +"-parents", +[2,4555,12446], +"v8-compile-cache", +"vfile", +"dumi-a", +"ssets-types", +[2,12450,12451], +[0,1177,91,9736], +[2,11367,1732], +[2,6495,12454], +[3,5540,9], +"sted-git-info", +[2,12456,12457], +[2,6308,6925], +"luralize", +[2,5088,12460], +"@umijs/lint", +[2,12398,9711], +[1,2349,12465], +[0,0,0,12469,34552], +"-import-utils", +[2,12405,12466], +"repo", +[0,1177,6651,7625,28987,1894], +[1,2349,12476], +"git-repo-info", +[2,11311,1732], +"zx", +[2,699,701], +[2,12407,12474], +[0,12480,0,2523,2531], +" site generator", +[2,2947,12477], +"jamstack", +[0,53,1939,1959,68,1938,1270,1935,1947,19302,1011,19254,1961,1976,1009], +[1,2349,12482], +[0,0,12483,12484,2531], +[0,1177,1903,1938,1953,1958,4389], +[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,6651,2446,2292,2272,671,19315,19269,2869,1899,4255,19317,590,19318,19320,19273], +[1,2349,12486], +[0,0,12487,12488,2540], +[0,5601,19325,1177,1938,1953,1958,4389], +[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,6651,2446,2292,2272,671,19315,19269,2869,4255,19317,590,19318,19320,19273], +[1,2349,12490], +[0,12491,12492,2523,2488], +[0,442,27928,1982,2203,4523], +[0,19333,5601,4874,19336,1446,1177,19339,33860,1894,91], +[1,2349,12494], +[0,12495,12496,12497,2540], +[0,29371,19194,19344,19254,2203], +[0,1166,1177], +[0,6651,1906,19347,19348,19349,19350,19353,1501,19269,590,671,9654,2292,2272,19270,1177,2649,19271,4255,15717,4354,16790,19273,18443,2446,2869], +[1,2349,12499], +[0,0,12500,12501,2402], +[0,192,5467,1610,2675,2990,3985,3995,1906], +[0,19359,1541,1177,18639,18640,3624,1906], +[1,2349,12503], +[0,12504,12505,12506,2540], +[0,1012,1091,1443,1525,1595,1699,8098,18420,2777,2845,12834,3117,4507], +[0,442,4874,6513,29891,16480,22839,1177,1895,1938,1953,1955,1982,3125,3390,3400,3471,1894,4193,18710,91,4523,1984], +[0,2295,1739,1745,1177,1179,1932], +[1,2349,12508], +[0,12509,0,12510,4194], +[0,1676,27418,2191,19380,29856,27921,12578], +[0,91,1177,1204,14056,1932], +[1,2349,12512], +[0,12513,12514,12515,2531], +[0,2102,2151,3008,3429,4121], +[0,48,53,87,192,5467,19401,16405,1178,1193,1457,19403,1610,1700,1701,1177,1895,19405,1938,2675,1192,2794,2990,3400,1894,4257,2924], +[0,1177,671,9654,1194,2924], +[1,2349,12517], +[0,12518,12519,12520,2540], +[0,439,19194,19413,2000,19415,19419,4025], +[0,1011,1166,1414,1437,1177,19422,1912,1933,2020,3400,3471,3532,91,1906], +[0,1177,6741,6939,1166,1973,8791,1145,6637,6468,2899], +[1,2349,12522], +[0,12523,12524,12526,2488], +[0,19209], +[0,2899,1177,1178,3028], +"object-deep-merge", +[0,1172,1177,6741,6939,1178], +[1,2349,12528], +[0,12529,12530,12531,34552], +[0,16805,19436,1393,2105,2203,3057,4135], +[0,53,68,192,5467,19438,442,6061,6063,19441,5366,19443,5601,5087,19446,5254,1317,19449,1804,1177,1895,1933,1955,2024,2675,1192,1894,4131,4183,4468,4474,91,4523], +[0,1177,1388,4231,5592,671,1421,19451], +[1,2349,12535], +[2,19573,24759], +"diff-sequences", +[0,0,12536,12537,2531], +[0,1177,2899], +[0,1177,6741,1925,6778], +[1,2349,12539], +[0,12540,12541,12542,2540], +[0,1874,2687], +[0,12602,4874,19464,1178,1503,1615,1177,19466,2151,2899,3421,3456,4039,4135,13134,19468,19469], +[0,1177,6741,6939,1932,8505,4298,12442,2202,2203,19472,19473,19475,19478,19479,19482], +[1,2349,12544], +[0,12545,12546,12547,2457], +[0,439,2004], +[0,192,5467,6303,19492,19181,442,27928,19611,19580,31200,1006,4870,4874,1011,1012,16480,1177,19494,1895,1912,1953,1982,1992,1994,2000,2675,2807,2990,1209,3125,3390,3401,1894,1531,91,4523,1984], +[0,1177,6741,6939], +[1,2349,12549], +[0,12550,12551,12552,2540], +[0,1209,19500], +[0,1091,2070,2675,2899,1177,4039,19505,15555,48,53,13693,94,4131,87,68,19504,5235,1933,1198,5874,78], +[0,1177,1932,1934], +[1,2349,12554], +[0,12555,12556,12558,4194], +[0,2654], +[0,19512,19514,1177,1895,19516,1894,4135], +"stable-hash", +[0,6939,6741,1177,1936], +[1,2349,12560], +[0,12561,12562,12563,2488], +[0,11554,19522,19525,18976,1143,1676,19526,19527,19378,2571,17501,2743,3181,19020,19531,18994,4135,11555,4480], +[0,19535,5601,1011,1173,1175,1178,1208,1212,1261,14237,1280,1291,1429,1610,19538,1177,1912,1915,1933,1938,17585,14053,19539,2070,2708,2762,2858,19540,19541,3125,2899,19544,3421,3875,4039,4103,4193,4449,91,19545], +[0,1177,6741,6939,5194,13354,5260,1204,6813], +[1,2349,12565], +[0,12566,12567,12547,34552], +[0,1012], +[0,48,53,87,92,192,5467,19492,19552,6061,6063,5536,5601,5087,4874,5254,1009,1011,1012,1193,19555,1680,1177,1895,1912,1933,1938,1953,1955,1992,19560,2675,2742,1192,15853,2990,19516,3534,1894,4039,4131,4135,4474,91], +[1,2349,12569], +[0,12572,12573,12574,2540], +[2,19606,12571], +"ast-token-store", +[0,19567,12533,19568,8506,1676,1874,2000,19186,2626,12525,27427,4135,19570,30614], +[0,5517,48,53,68,5240,87,19574,19577,19193,19578,816,16607,6065,16608,4856,5245,19580,19581,1006,8818,6503,4874,5254,19586,5552,1198,1208,19588,1414,1420,1429,1677,1177,19504,19505,2070,2203,2675,19592,2845,26696,2990,2899,19595,3541,4068,4039,4042,4131,4193,5569,91,4523], +[0,1177,1932,1776], +[1,2349,12576], +[0,12577,12579,12580,2488], +[0,439,19193,11180,12570,12534,12668,17310,12118,19571], +"unrs-resolver", +[0,68,5522,107,19492,19194,19605,19609,19344,23339,6503,19616,4874,5254,1009,1011,1414,19619,668,1177,1895,1933,19620,1942,19622,1945,1948,1953,19623,1955,1964,1988,17308,1994,2018,2203,2899,3486,1894,4135,4320,19624,4323,19626,19629,1531,4494,91,4523,19630,4614,4630], +[0,1177,6741,6939,671,19632,2856,1781], +[1,2349,12582], +[0,12583,12584,12585,2540], +[0,11869,19522,1143,19638,1169,19639,19640,13829,2571,19644,19645,3181,19020,19647,19648], +[0,48,53,68,5240,94,1159,1198,1261,1177,1881,1912,1933,1935,1938,2004,2126,2708,2762,17221,3183,3410,3435,3438,4039,4103,4135,4389,19650], +[0,1177,6741,6939,6653,7320,1219], +"aleo", +[1,2349,12594], +"cryptography", +[3,1336,10], +"decentralized", +"-knowledge", +[2,7150,12591], +"oracle", +[0,12595,12596,12597,2540], +[0,3137], +[0,3421,1429,2899,1177,2203,442,19206,19657], +[0,1177,6741,1783,671,9654], +"event-", +"target-shim", +[2,12598,12599], +[1,2349,12615], +"@mysticatea/eslint-plugin", +[3,12602,12], +[2,12603,4158], +"dts-bu", +"ndle-generator", +[2,12605,12606], +"growl-reporter", +[2,2877,12608], +"-minify", +[2,4045,12610], +"rollup-", +"rollup-watch", +"type-tester", +[0,12623,0,12624,2402], +"w3c", +"abort", +"cancel", +"control", +"controller", +[2,12617,12620], +"abortsignal", +[0,2203,439], +[0,1177,6741,6939,2899], +[1,2349,12626], +[0,12628,12629,12630,2488], +"negotiator", +[0,439,1835,19671,2191,2203,1555,2687,4135,29860], +[0,442,5601,1006,27303,4874,1011,12145,1177,1895,1912,1933,2071,2675,2990,3125,2899,3401,3421,3456,1894,3757,3980,4039,19676,4507,91], +[0,1177,6741,6939,202,6710,5286,6987,2090,3403,1204,3209], +"negotiation", +[1,2349,12633], +[0,12634,12635,12630,2776], +[0,1927,19414,2687,3181,814,4135], +[0,12602,1503,1177,2071,2203,2899,3421,3456,3757,4039], +[1,2349,12637], +[0,12638,0,12639,2402], +[0,19689,19571], +[0,1177,6741,6939,1894], +[1,2349,12641], +[0,12642,12643,12644,2540], +[0,439], +[0,1011,1742,1177,1895,1912,1933,1939,1953,1955,2203,2675,1192,2990,3401,1894,91], +[0,1177,6741,6939,1862,6567], +[1,2349,12646], +[0,12647,12648,12649,2531], +[0,19522,19724,1143,19726,19526,19641,2004,2571,19644,3181,3438,19020,18994,3744,814,4135,11434,19729], +[0,53,68,5611,19731,19735,90,5601,1006,4874,1011,1178,1177,1881,1912,1933,1938,1992,19560,1994,2000,11605,2070,2759,2762,19736,3125,2899,3410,4193,91,19545], +[0,1177,6939,6741,89], +"git-clone", +[1,2349,12652], +[0,12657,12658,12649,2531], +"iglet", +[2,5537,12653], +[3,9362,11], +[2,12655,1496], +[0,4763,53,58,21131,25652], +[0,1192,91,4874,104,1178,5601,1006,19877,36694,68,92], +"nestjs", +"fullstack", +[1,2349,12662], +[0,12663,12664,12665,34552], +[0,439,12121,8506,19592,19745,19750,19751], +[0,107,6022,19492,19181,442,19605,19609,11470,4856,5601,19611,1006,6503,4874,19759,1009,1011,1145,1429,19619,1177,1895,1912,1915,1933,1938,1942,19622,1945,1948,1953,19757,1955,1964,1982,1988,17308,19756,3125,2899,19761,3090,3401,3421,3486,1894,4135,4320,4946,19624,1531,4494,91,4523,19630,4614,4630], +[0,1177,6741,6939,6961,1108], +"archive", +[1,2349,12669], +"eslint-json-compat-utils", +[0,12670,12671,12672,2531], +[0,19767], +[0,442,13729,1177,19771,1895,1912,1933,2990,3125,2899,3400,1894,4131,19235], +[0,1177,1965,19773], +[1,2349,12676], +"flowcontrol", +"arch", +[0,12677,0,12678,2488], +[0,91,4135,31800,3060,19780,12121,3181,5569,19751,1413,1405,2203], +[0,19786,1177,6741], +[1,2349,12683], +"cron-parser", +"date.js", +"human-i", +[0,0,12536,12686,2457], +"nterval", +[2,12682,12684], +[0,1177,6741], +"uman-interval", +[2,6495,12687], +[2,8329,2995], +[2,3230,12689], +[1,2349,12695], +"job", +"jobs", +"delayed", +[0,12696,12697,12698,2488], +[0,439,5012,14301,2203,2932,3561,3616,3676,4135,19795], +[0,53,68,14039,19492,10879,19797,19798,8818,19799,6503,4874,19800,5254,19802,5604,5552,1082,1145,668,1994,19339,1996,2000,2807,695,2899,3640,3681,2278,4228,4333,3709,19803,4494,4505,4745], +[0,1177,6939,6741,3709,19805], +[3,1339,12], +"end4", +[2,12699,12700], +"meat7", +[2,1337,12702], +"bow-swam-troops-care", +"cent-matter-to", +"close", +"r-composed-particularly-shout", +[2,12706,12707], +"coach-organized-notice", +"correct-home-silent7", +"course-whenever-merely", +"crop", +"-birthday-web3-children", +[2,12712,12713], +"exchange-known-bend", +"-even", +"tually-bound", +[2,12716,12717], +[2,8205,12718], +"grass-dollar-crew-floating", +"-fruit-web3-perfect", +[2,4374,12721], +[1,2349,12724], +[0,12725,12765,12766,2531], +[0,5604,1012], +"lay-rest-hour", +"balance", +"-trade-solar", +[2,12727,12728], +[2,3131,12729], +"meat", +"-think-stove8", +[2,12731,12732], +"offic", +"e-deal-mostly1", +[2,12734,12735], +"product-slight-adult-settlers", +[3,3931,9], +"done-should-moon", +[2,12738,12739], +"scienti", +"fic-exist-event2", +[2,12741,12742], +"sent", +"-won-little-western", +[2,6590,12745], +[2,12744,12746], +"-wing-eat", +[2,6887,12748], +"stay-including", +"supp", +"er-t", +"erm-including-snake", +[2,12752,12753], +[2,12751,12754], +"truck-hospital-equator-hurt", +"trunk-darkness-believed-corner", +"typi", +"cal-recall-industry-exchange", +[2,12758,12759], +"warn", +"-clothing-whose0", +[2,12761,12762], +"weigh-flew-web3-farm", +[0,192,5467,19181,442,4874,5551,7677,22839,23203,1177,1895,1912,1915,32525,1953,1958,1992,19560,2203,2675,2807,2990,1894,23535,4131,1531,91,4523,1984], +[0,1177,6741,6939,671,1975,5472], +[1,2349,12768], +[0,12769,12770,12781,2540], +[0,1012,608,606], +[0,9125,5601,1006,1177,9141], +"@airtap/browserify-istanbul", +"-default", +[2,1090,12772], +"airtap-", +"airtap-multi", +"bruce-millis-option", +[3,9242,9], +[3,9242,10], +[2,12778,5576], +"near", +[0,6869,1745,2295,4298,9132,9134,9658,1932], +"nearest-file", +[2,2103,12782], +"s-to-files", +[2,2070,12784], +"human", +"ize-duration", +[2,12786,12787], +"load-script", +[3,3736,9], +[2,12790,6953], +[2,3094,12791], +"maybe-combine-errors", +[1,2349,12797], +"nanoresource", +"-col", +[0,12805,12806,12810,2488], +"-collection", +[2,12795,12798], +"on-str", +"eam-close", +[2,12800,12801], +"run-", +"parallel", +[0,5279,439,1443,1458,19824,5867,30055,2203,2709,10911,2835,3547,19826,19827,4135,8959], +[0,51,53,68,19181,19829,1011,5552,1166,1414,1836,1177,19422,1907,1912,1933,1942,1982,1992,19560,1994,2000,2992,3125,17269,27922,3390,3401,19595,3471,3718,91,4630,4745], +"-settled", +[2,12804,12807], +[2,12803,12808], +[0,1177,6741,6939,1981,9654,671,590,1906], +[1,2349,12816], +"tap-completed", +"y-with-args", +[2,3949,12813], +"transi", +[0,12566,12819,12821,2540], +"ent-error", +[2,12815,12817], +[0,19344,5601,6503,4874,1009,1011,5551,19838,19839,1540,1177,1912,1933,1985,1992,19560,4474,4494,91,4543,1984], +"abstract-browser", +[0,1177,6741,6939,19842,1984,19844], +[1,2349,12824], +"simple-get", +[0,12827,12828,12829,2531], +"labs", +"saucelabs", +[0,439,12118,16870,3681,4135,19851], +[0,107,27928,19609,19344,11470,5601,19616,4874,5254,19853,1009,1011,5552,7677,1145,19619,668,1177,23753,1895,1933,1938,1945,29743,19623,1955,1982,19339,1996,2000,2018,2203,2832,3125,3510,1894,1531,91,19630,4614,1984,4630], +[0,1177,6939,7625,188,12072,3624], +[1,2349,12838], +"uri", +"fast-uri", +[3,12284,13], +[2,12833,1286], +"-string", +"from-string", +[2,4013,12836], +[0,12843,12853,12854,34552], +"@ajv-validator/config", +"quire-", +[2,12840,12836], +[2,5249,12841], +[0,51,2861,1437,2716,3429,89,4183], +"tc", +"-plugin-utc", +[2,1673,12845], +"if-node-version", +[2,12833,4467], +[2,5223,12836], +"re2", +"tsify", +"uri-js", +[0,19181,19861,5601,4874,8860,4880,1567,1177,5556,19862,19864,2807,3339,4294,91,1984], +[0,1177,19866], +[1,2349,12856], +[0,12857,12858,5868,2488], +[0,34028,1006,19871,2004], +[0,1011,1429,1996,2000,19230,4167], +[1,2349,12861], +"Ajv", +[0,0,12862,5868,34552], +[0,4057,4481], +[1,2349,12864], +[0,12865,0,12866,2540], +[0,1898,19884], +[0,1998], +[1,2349,12868], +[0,0,0,12869,2488], +[0,10906,5286,6813,1204,5260,202,3209], +"longjohn", +[1,2349,12872], +[0,12873,12874,12875,2531], +[0,1082,15128,1996], +[0,5517,4042,4167,4481,91], +[0,6892,5286,5284,57,5341,1082], +[1,2349,12880], +"buffer-", +"more-ints", +[2,12877,12878], +[0,0,12881,12883,34552], +[0,15990,19905,19907,2070,2759,19878,2297,2881,2889,2891,2895,2897,2900,2912,19910,2915,1209,2899,19912,3954,1241,4487,91,4526,19914,2924], +"claire", +[0,6892,5286,2003,5284,57,5341], +"AMQP", +[1,2349,12888], +"AMQP 0-9-1", +"RabbitMQ", +[0,0,12889,2523,34552], +[0,1264,1280,1429,2000,2323,2351,2390,2404,19922,2272,2899], +[1,2349,12891], +[0,12892,12894,2523,34552], +[0,1006], +"ux bootstrap", +[0,91,4579], +[1,2349,12896], +[0,0,12897,12898,34552], +[0,2899,1177,2759,1317,4127,4100,1311,1954,1938,1958,1903,1948,1970], +[0,984,27,10376], +"client-side", +[1,2349,12901], +[0,12902,12903,12904,4194], +[0,19937,2010], +[0,19939,19941,19942,19944,9424,7892,4874,19325,1389,19945,1596,2675,2759,2297,2871,2889,2895,19946,3183,3421,1894,4389,4474,4487,4508,4514,91,19948], +[0,9439,19950], +[1,2349,12906], +[0,12907,12919,12920,2531], +[0,9424,1363,1600,19956,19957], +[3,4,9], +"cli/ast-tools", +[2,12908,12909], +[3,12910,13], +"href-webpack", +[2,1296,12912], +[2,12911,12913], +"@ngtools/json-schema", +"@ngtools/", +[2,12916,2924], +"denodeify", +[0,19961,4874,19963,19325,1177,2297,2881,2895,19946,19965,3421,1894,4389,4474,91], +[0,9439,6731,594], +"entity-name", +[2,3370,12921], +[2,1828,12922], +[2,4284,594], +[2,1828,12924], +"exists-sync", +[1,2349,12932], +"caller-file", +[2,2183,12928], +"isbinaryfile", +"node-mo", +[0,12933,12945,12946,2531], +[0,1082,1437,4747,1209,1362,2151,19972,2004,3105,19971,4547], +"dules-path", +[2,12931,12934], +[2,1508,2091], +"silent-error", +[3,4070,9], +[3,6384,10], +"inst", +"rumenter-loader", +[2,12940,12941], +[2,12939,12942], +[2,12938,12943], +[0,3763,19974,91,4874], +[0,19976,19977,5284,1783,1973], +[1,2349,12948], +[0,12949,12952,12953,2531], +[0,1792,7115,3102,19982,4237,19984,4430], +" library", +[2,4627,12950], +[0,19986,19987,19988,4389,19989], +[0,3101,3053,19991,7131,4237,4565,1698,4068], +[1,2349,12955], +[0,0,12957,12960,2488], +"justified", +[0,1317,1362,1596,2899,3421], +"bgblack", +"bgBlack", +[0,2013,2018,13771,2016,19997,19998,19999,6868,20000,1803,3441,20001,20003], +"bgblue", +[1,2349,12985], +"bgBlue", +"bgcyan", +"bgCyan", +"bggreen", +"bgGreen", +"bgmagenta", +"bgMagenta", +"bgred", +"bgRed", +"bgwhite", +"bgWhite", +"bgyellow", +"bgYellow", +"black", +"bold", +"clorox", +"cyan", +"dim", +"gray", +"green", +"grey", +"hidden", +[0,0,12988,12989,2540], +"inverse", +"italic", +[0,811,10615,1148,1414,2899,4042], +[0,20014,20015,20016,20018,19997,19998,6868,20000,13771,2013,3441,19999,20001,20019,20003], +"magenta", +"red", +"str", +"kethrough", +[2,4285,12993], +[1,2349,12999], +"underline", +"white", +"yellow", +[0,0,13000,13001,2531], +[0,1090,2159,6914,2569,2756,4389], +[0,2018,7133,7053,7155], +"@jest/get-type", +[1,2349,13004], +[0,13010,13012,13013,2540], +"vt100", +"cursor", +"iterm2", +"screen", +"erase", +[0,20033,1615,2089,2188,20035,2745,2753,3404,3718,4174,20039,20040], +"scrollback", +[0,4874,1166,1414,20042,20044,20047,29888,3505,16687,16330,4481,91,4707,1906], +[0,2978,1451,3729,20049,16701,20050,20051,1614,2090,4166,20052,17180,20054,3378,3403,2703,12473], +[1,2349,13015], +[0,0,13016,13018,2776], +[0,2273,2277,2283,2228,4707], +"pattern", +[0,2021,3729,20061,8634,20062,20063,20064,20065], +[1,2349,13020], +[0,13021,13022,2523,2540], +[0,20076,13002,11907,8765,11944,2798], +[0,16596,8776,1437,2700], +[1,2349,13025], +"svg-term-cli", +[0,0,13026,13027,2540], +[0,5517,4874,29891,23203,1177,20083,3377,20085,4294,4473,91,1984], +[0,91,20088,1145,553,4532,1973,5472], +[1,2349,13029], +[0,13032,13033,13034,2540], +"truecolor", +[2,31213,31214], +[0,3763,1704,984,3441,710,4590,1676,2145,977,38,1080,1000,3494,4266,1833,3173,988,1364,1869,2657,3440,1562,2099,3781,4151,1581,20103,1560], +[0,1797,2590,3421,1087,2899,4594,1177,3127,3237,4342,1553,1575,1578,2040,3162,20106], +[0,2026,5130,6690,5122,27,4030,7096,38,1896,5592], +[2,12392,188], +"nitless", +[2,7944,13036], +"@simonwep/pickr", +"array-", +[1,2349,13043], +"tree-filter", +[2,13039,13041], +[0,13044,13048,13034,2540], +[0,1080,20098,1364,1560,1562,977,1581,1676,1704,1833,1869,984,2099,2145,2657,20103,3164,3440,3494,3509,988,3763,3781,4100,710,4151,20099,4266,1000,4578,4590], +"dom-align", +"croll-into-view", +[2,11148,13046], +[0,1087,1553,1575,1578,1797,1177,2040,2590,3127,3162,2899,3237,3421,20106,4342,4594], +"vue-types", +[1,2349,13054], +[3,10720,40], +[2,5822,3426], +"@types/k", +[0,13070,13074,13081,34552], +"@types/koa", +"ru-cache", +[2,6499,13056], +[3,4875,15], +[2,13058,3615], +"-jsx", +[2,11016,13060], +[2,1199,1219], +[2,5334,13062], +"slint", +[2,3542,13064], +[2,1472,13065], +[2,5334,13066], +[3,1031,19], +[2,13068,1894], +[0,53,58,101,19526,3509], +"vue3-jest", +[2,5334,13071], +"pack-", +[0,5087,1177,1192], +"cli/serve", +[2,13073,13075], +[2,10672,13076], +"ali-oss", +"nline-import-data-uri", +[2,1206,13079], +[0,8124,2026,1776,2295,7701,20120,1745,4363,13728,1179,8623,20121,20123,20124], +[1,2349,13091], +"context", +"quire-context", +[2,1252,13084], +"colorful", +"-versions", +[2,3797,13087], +"cz-git", +"diacritics", +[0,13102,13111,13116,2540], +"docsearch.js", +"enquire-js", +[3,1954,16], +"licit-type-exports", +[2,1760,13095], +[2,13094,13096], +[3,2512,11], +[2,13098,1501], +"-emit-webpack-plugin", +[2,2687,13100], +[0,1797,3188,1525,3181,14380], +"is-windows", +[3,11948,16], +[2,13104,188], +"stub", +[2,1221,13106], +[2,2769,13107], +"templater", +[2,2842,13109], +[0,2899,1177,4039,4538,4342,4459,1954,1938,1958,1903,1970,4588], +"mport", +"npm-import", +[2,1186,13113], +[2,3194,13114], +[0,2026,5130,6690,5122,4030,7096,38,1896,5592], +"vars-to-js", +[2,3194,13117], +"majo", +[3,5961,14], +"ble-of-contents", +[2,13120,13121], +"merge2", +[2,3986,1646], +"yaml-", +"yaml-config", +[2,3986,13126], +"reqwest", +"rucksack-css", +[3,4130,9], +[2,13130,36], +[3,1873,9], +[2,2495,2091], +[2,13132,13133], +"umi-request", +"vue-cl", +"ipboard2", +[2,13136,13137], +[1,2349,13140], +[0,13146,13147,13150,34552], +"drag-resize", +[2,4625,13141], +"vue-i", +"nfinite-scroll", +[2,13143,13144], +[0,2070,2215,2036], +[0,442,6061,16607,6063,6065,16608,16612,5087,4874,1177,2203,2774,4131,4468,91,4523], +"equest", +"vue-request", +[0,2026,20137,2036,6624,8691,20140,5354], +"vue-tsc", +"webpackbar", +[1,2349,13155], +"vueComponent", +[0,13156,13157,13158,2531], +[0,2863,20147,8264], +[0,2899,1177,2026,4474,1894,91,6503,6494,1566,1011,1009], +[0,1303,20150,5165,20151,14374,27,2038,11326,3424,2026], +[2,11164,3007], +[1,2349,13170], +"color-picker", +[2,11183,13161], +[3,5050,15], +"utate-observer", +[2,13163,13164], +[2,11183,11194], +[3,11185,15], +"rigger", +[2,13167,13168], +[0,13173,13180,2523,2531], +[3,11161,14], +"mpat", +[0,977,1581,1676,1704,16128,3494,4100,4538], +"mpatible", +[2,13171,13174], +"work-theme", +[2,2560,13176], +[2,41,13177], +"@ant", +[0,1087,1575,1177,1948,2026,2899,3421,4342], +"@antv/g6", +"@codecov/webpack-plugin", +"@code", +"sandbox", +"/sandpack-react", +[2,13184,13185], +[2,13183,13186], +"@ianvs/prettier-plugin-sort-imports", +"@madccc/duplicate-package-checker-webpack-plugin", +"@micro", +"flash/rehype-figure", +[2,13190,13191], +"dm-zip", +[2,9165,13193], +"li-oss", +[2,9165,13195], +[3,10403,11], +[2,13197,3730], +[3,10406,12], +[2,13199,36], +[3,8806,9], +"omorphic-fetch", +[2,13201,13202], +[2,7635,965], +[2,10884,3730], +"ixelmatch", +[2,5088,13206], +[1,2349,13209], +[0,13211,13217,13222,2531], +"@types/pngjs", +[0,1091,1437,1525,1536,1594,1759,2026,2812,4042,4057,91,4763], +"pinnies", +[2,5051,13212], +[3,7752,10], +"antd-style", +[3,8770,10], +[0,442,7806,9227,6494,4874,1009,1011,1177,1954,2203,3363,1894,4039,4474,4480,4523], +"ugin", +"y-plugin", +[2,13216,13219], +[2,7045,13220], +[0,5592,5995,20164,5001,7141,2026,20165,5130,6706,6807,36,7020], +"cli-progress", +"plugin-c", +"chunk", +"olor-chunk", +[2,13224,13226], +[2,12407,13227], +[3,5556,16], +"dash", +[2,13229,13230], +"lunar-typescript", +"p-all", +"untup", +[2,3808,13234], +"-no-", +"-references", +[2,10393,13237], +[2,13236,13238], +[2,11380,13239], +"runes2", +[1,2349,13244], +"spinnies", +[0,0,13246,13247,2531], +"vanilla-tilt", +[0,1414,20171,4193,1177,2026,4474,20170,91,4874,6513,6494,1011,1009], +[0,20173,20174,1781,91,5592,27,2026,20175,20176,91,2663,998,20178,20179,20182,20183,20184,9091,10339,5995,20186,20188,89,20189,20194,20195], +[1,2349,13249], +[0,13250,13251,13252,2540], +[0,1209,1155], +[0,20202,20207,20212,5087,4870,1009,1011,1177,1895,1938,1955,1192,1894,4468,91], +[0,2026,1155,7020,2649,2574,20215,4741], +[1,2349,13254], +[0,13255,13256,13257,34552], +[0,1112,3327,20221,3776,13031], +[0,7806,9227,27478,6494,9231,27327,22102,10413,20232,1536,1594,1704,2026,9243,2657,3313,20243,91,4548,4763,34143], +[0,6710,5592,27,2663,1745,1781,2026,91,2844,36,1852,8124,20246,3452,20247,6652,20251,20252,4763,7020], +[1,2349,13269], +"ext-comm", +[2,10740,13259], +[2,5409,13260], +[2,5409,1745], +"app-layout", +[2,10689,13263], +[3,10703,14], +[3,212,11], +[2,13265,13266], +[3,806,10], +[0,0,13270,13273,4194], +[0,13614,13616,1177,2292,4389], +"aper-toast", +[2,13268,13271], +[0,2051,1496,1698], +[1,2349,13288], +"menu-mixin", +[2,5395,13275], +"building", +"-rollup", +[2,13277,13278], +[2,5471,13279], +[2,1384,591], +[2,13265,13281], +[3,5478,17], +"-regression", +[2,7062,13284], +[2,13283,13285], +"amf-client-js", +[0,13292,13295,13296,4194], +[2,4053,2257], +"per", +"unzipper", +[0,20263,20266], +"raml", +"amf", +[0,20268,20269,20272,2398,2747,20273,3183,2899,3427], +[0,3426,1496,2051,1698,7002,3048,3427,3435,3743,3583,3205,20275,4161,614,6435,594,6692], +[1,2349,13298], +[0,13299,13300,2523,2531], +[0,1149,3008,4121,4695], +[0,1173,1193,1245,1257,1264,1610,1628,1701,1177,20281,1938,2092,1192,2990,3413,3697,3786,4257,4307,2924,20283], +"-match-patch", +[2,1687,13301], +"se-loader", +[2,5779,13303], +"klaw-sync", +[1,2349,13308], +[3,1898,16], +[0,13309,13312,13313,2402], +[0,1676,2188,4753,20290], +"commended", +[2,13307,13310], +[0,1009,1011,1166,1177,1903,1920,1938,1954,1958,1970,2151,2675,2990,3421,4481,91], +[0,4560,2056,7682], +[1,2349,13315], +[0,0,13316,2523,2488], +[0,3421,2323,1776,2899,4193,1177,1209,3460,4431,1596,1389,20304,2494,2530,2990,13896,4599,2401,20305,20306,4603], +[1,2349,13320], +"light", +"apidoc-light", +[0,13321,13323,13324,2540], +[0,20312], +"portable", +[0,1177,1889,1954,2022,2899,3421,20314,4193], +[0,20317,3073,2942,6807,3721,20319], +"programmatic", +"cli-app", +[2,4610,1745], +[2,3115,1745], +[1,2349,13330], +[0,13331,13332,13334,2540], +[0,20325], +[0,603,4874,1610,2070,19826,4005,4508,91,1984,20328,20330,2064], +"http2", +[0,20334,20335,13657,5472,20336,20339,20340,2060,20342,20341,1192], +[1,2349,13341], +"apple", +" notifications", +[2,6645,13337], +"iOS", +"apns", +[0,13342,0,13343,4194], +[0,20351,20349], +[0,1641,57,2062,20353,20354,20355], +[1,2349,13347], +[3,1122,12], +[2,1126,6731], +[0,0,13348,13349,2540], +[0,1596,1758,1177,2899,3421,3697,89,3904,4193,91], +[0,2062,4162,1693], +[1,2349,13353], +[3,5515,14], +[2,4807,13351], +[0,13355,13357,13358,2540], +"jsnext", +[0,20366,19185,2200,13123,3170], +"relay", +[0,20369,16396,20371,8778,6503,4874,20374,6513,20375,1177,20377,2020,2071,20378,2070,20380,2899,4039,4193,20382,91], +[0,2070,11601,2062,20385], +[1,2349,13360], +[0,0,13361,2523,2531], +[0,6503,4874,2899,4113,91], +[3,8780,10], +"phql", +[2,13362,13363], +[1,2349,13366], +[0,13367,13368,13371,2457], +[0,20394], +[0,53,83,87,94,4874,1195,1414,1177,2591,2765,1894,3753,91,2924,4677], +"-common", +[2,1129,13369], +[0,2062,6523,1781,57,4734,16168,4735,676,1155,2649,8535,1145,20398,20400,1936], +[2,1126,1612], +"to-querystring", +[2,3425,13373], +[1,2349,13376], +[0,0,0,13377,2402], +[0,2077,5131,4453,4384,2076,1702], +[1,2349,13380], +"cracks", +[0,13383,13384,13385,2540], +"_modules", +[2,202,13381], +[0,20428,20414,20434,13597,20418,20409,20426,20412,20420,3533,20416,4038,20423,4135,20410], +[0,28002,8520,826,19344,7844,4874,1091,8531,1092,20437,20446,20441,28400,20450,1540,1610,1177,20444,11049,20453,20436,2657,2812,12284,2861,20451,29197,3313,3752,4238,4481,91,4548,4590,6482], +[0,5122,5130,1781,2844,3445,5592], +[1,2349,13389], +"@appium/support", +"@colors/colors", +[0,13398,13401,2523,2531], +"appium-adb", +"appium-", +"driver", +"chromedriver", +[2,13391,13393], +"asyncbox", +"io.appium.settings", +"ports", +[0,603,20472,12397,20467,20482,12399,12400,27329,20463,1201,1212,20479,20476,1835,668,2071,12419,20465,3181,20460,4480,91,20474], +"portscanner", +"teen_process", +[0,192,5467,842,5087,20485,9129,4874,14011,12471,2675,1192,6551,2990,1894,3706,3708,4039,4474,4494,12473], +"@appium/", +[3,1879,15], +"ppium-ts", +[2,13403,13404], +[2,13402,13405], +[1,2349,13408], +[0,13409,13420,13421,2402], +[0,20490,20491,20492,20493,20494,15016,1792,3183,19544,3923,19647,4243,20495,18997,20496,4389,4431], +"@appium/t", +[2,13410,7630], +[2,13410,103], +"luebird", +[2,4853,13413], +[3,4875,9], +"rtscanner", +[2,13415,13416], +[2,5051,5588], +"@types/te", +[0,13614,1158,1159,1177,2708,3410,4103], +[0,4384,12786,1973,20499,20500,3721], +[1,2349,13423], +[0,13424,13425,2523,2531], +[0,1613,20507,3082,3427,1862,20508,11804], +[0,53,1700,2126,2323,2338,2396,2494,2700,2774,3159], +"appium", +[1,2349,13430], +"automation", +[2,5131,10428], +[0,6232,13431,13432,2488], +[0,48,53,87,90,6061,6063,20514,13662,20517,1251,1652,1177,1879,2990,3188,4131], +[0,20519,20520,20521,20522,4963,20523,4967,6082,89,20524,20525,11609,5122,20526,20528,20531,20533,17751,20536,20537,20539,20541,20542,20543,20544,20545,20546,20547,20548,20551,20553], +[1,2349,13434], +[0,6265,13435,13436,2540], +[0,48,53,83,87,90,92,5583,811,816,10817,968,972,20562,5087,4880,4883,1009,1011,1503,1540,1610,1177,1881,1895,17613,1938,1939,1959,1961,1192,89,3824,3957,4042,4073,4468,4484,91], +[0,20566,4967,20568,3875], +"@azure/core-auth", +[1,2349,13439], +[0,13440,0,13443,4194], +[0,20577,20573,20575,11959], +"pipeline", +"reg", +[0,1612,27,3212,5472,4158,13106], +"@azure/", +"identity", +[2,13444,13445], +"monitor-", +[1,2349,13450], +"eleme", +[0,13451,0,13460,2402], +[0,20584], +"opentelemetry", +[2,13447,13452], +[2,13444,13453], +[3,830,9], +[2,13454,13455], +"-inst", +"rument", +"ation-", +[0,10807,2087,15964,20586,1149,12804,6812,14836,1862], +[1,2349,13469], +"azure-sdk", +[2,13459,13462], +[2,13458,13463], +[2,13457,13464], +[2,13452,13465], +[2,13444,13466], +"@opent", +[0,5623,13472,13511,2540], +"elemetry/api", +[2,13468,13470], +[0,4874,23203,1149,2675,2990,91,1983,26744,1984], +"-logs", +[2,13471,13473], +[3,13471,15], +[2,13475,364], +"er-logs-otlp-http", +[2,6813,13477], +[2,13475,13478], +[3,13479,24], +"metr", +"ics-otlp-http", +[2,13481,13482], +[2,13480,13483], +"trace-", +"otlp-http", +[2,13485,13486], +[2,13480,13487], +"otlp-", +"exporter-", +[2,13490,1299], +[2,13489,13491], +[2,13475,13492], +"resources", +[2,13475,13494], +"sdk-logs", +[2,13475,13496], +[3,13497,19], +"metrics", +[2,13498,13499], +"trace-base", +[2,13498,13501], +[3,13502,25], +[2,13503,202], +[3,13497,16], +"emantic-conventions", +[2,13505,13506], +"diagnostic-channel", +"-publishers", +[2,13508,13509], +[0,2088,6938,6952,7179,1111], +[2,13444,5746], +[3,4870,9], +"@types/long", +[3,8778,12], +"__typescript-etw", +[2,7295,13516], +[2,13515,13517], +[1,2349,13533], +"exce", +"ption", +" monitoring", +[2,13521,13522], +[2,13520,13523], +[2,705,13522], +[2,6681,13522], +[3,1135,11], +" insights", +[2,13527,13528], +"microsoft", +"azure", +"tracing", +[0,13534,8176,13536,2488], +[0,16232], +"telemetry", +[0,3656,200,8429,6876,7169,5511,2568,20597,2089,20598], +[1,2349,13540], +"analytics", +"apm", +[0,13541,13542,13543,2540], +[0,3008,4121], +[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,2675,1192,2990,3144,3400,1894,4257,4027,2924], +[0,2924], +[3,7709,10], +"ial-provider-node", +[2,11891,13545], +[2,13544,13546], +[3,7709,9], +"hash-", +"hash-node", +[2,13548,13550], +[3,6765,9], +[2,13552,27], +[2,13548,13553], +[1,2349,13556], +[0,0,13561,13570,4194], +"signature-v4", +[2,13548,13557], +[2,13548,553], +[2,9196,1732], +[0,48,53,10688,5812], +"@aws-", +"amplify/amplify-appsync-simulator", +[2,13562,13563], +"construct", +"constructs", +[3,3706,25], +[2,13567,2618], +"projen", +[0,20611,20613,20614], +"appsync", +"gql", +"lambda", +"xray", +[1,2349,13576], +[0,13577,13578,13582,2540], +[0,13687,20619,20621,20624], +[0,20626,4874,1166,20627,2188,20628,4481,1906], +[2,1137,3007], +"crc32", +"buffer-crc32", +[0,3171,2090,998,14431,12666,158,11807,20630,20631,16202,20632,20634,13735,4354,2741,20635,14242,20636,8433,17180,1398,15149,20637,18048,20638,20639,12349,20640,20641,20642,20643,20644,20645,20646,20647,20648,3775,20649,20650,20651,20652,20653,20654,2056,4390,20655,17276,17274,20656,18494,20657,20658,20659,20660,20661,20662,20663,20664,20665,20666,20667,20668,20669,20670,20671,2636,20672,20673,7016,20674,20675,20676,20677,20678,20679,13705,20680,20681,17918,20682,7827,20683,20684,20685,10790,20686,20687,20688,20689,20690,20691,7823,20694,20695,20696,20697,20698,3354,20699,20700,20701,20702,20703,20704,20705,20706,20707,20708,6523,20709,11811,10868,20710,20711,20712,8861,20713,20714,20715,20716,20717,20718,20719,20720,20721,20722,20723,20724,20725,20726,20727,20728,20729,20730,20731,20732,20733,20734,20735,20736,20737,20738,20739,20740,20741,20742,2403,20743,20744,20746,12350,10218,20747,20748,18508,17733,20749,20750,20751,20752,20753,20754,20755,20756,20757,1227,20758,20759,20760,20761,20762,20763,20764,12081,12096,28922,28923,28924,28925,28926,28931,28932,28942,28943,28946,28947,37859,28949,28955,28958,28961,34876,33671,6790,33677,27669,29579,17288,13442,18883], +"readdir-glob", +"zip-stream", +[1,2349,13588], +"archiver-", +"jsdoc-t", +[0,0,13592,13593,2488], +"jsdoc-theme", +[2,13586,13589], +[2,4279,4440], +[0,10615,1159,1414,1177,2675,2899,4042], +[0,2090,2098,4202,7017,6771,1413,1687], +[1,2349,13595], +[0,13596,9030,2523,34552], +[0,1676,1833,1869,3440,3494,4266], +[2,27994,27995], +[1,2349,13599], +[0,13600,13601,13602,2531], +[0,3537,13765], +[0,1906,1166,1700,4481,4400], +[0,2325,7204,20164,2100,7193], +[1,2349,13604], +[0,13605,13606,13607,2540], +[0,20786,20789], +[0,1166,17450,4400,4481,1906], +[0,2100,2104,2105,7076,6614,6605,2090,7193,3529,3383,814,5933,7029,6857,7204,4647,6821,3403], +[1,2349,13620], +[2,6739,1228], +"-unscopables", +[2,7065,13610], +"@firebase/ai", +"@es-shims/api", +"@ljharb/eslint-config", +"cover", +"covert", +"has-s", +"trict-mode", +[2,13617,13618], +[0,13621,13622,13623,2540], +[0,20796,2743,3170,20797], +[0,1177,1889,1954,2022,20801,2899,3369,3421,814], +[0,2090,2100,2105,7076,2070,3529,13017,814,7193], +[1,2349,13627], +"arrayify", +"ensure", +[0,13628,13629,13630,2540], +[0,13612,20819,20822,20824,20825,20826,20828,20829,20831,20833,20836,20837,20839,20840,20841,12153,20843,20846,20847,20848,20849,20850,20851,20852,20853,20857,20858,20859], +[0,2323,4042,91,2496,2510,4077,10615,4060,811,4071,4076,816], +[0,5165,18035,20862,2109,20863,13901,6681,20845], +"is-n", +[1,2349,13634], +"is-nan", +[0,13636,13637,13639,2402], +"object-is", +[0,20870,20848,20872,4874,20873,2069,20917,2863,20874,3313,3348], +[0,20883,20839,20840,20885,603,20886,4856,9417,20888,8264,4870,7892,6503,10410,16936,20889,6513,6512,7819,1009,1011,1306,1429,1431,6522,1437,1455,1700,1177,20892,2323,2390,2409,2529,20895,1209,3183,2899,3261,3297,3400,3421,705,4008,4089,4193,4196,4474,91,4747], +"array-fill", +[0,20897,18035,20862,20863,5165], +[1,2349,13641], +[0,13642,0,13643,2402], +[0,32557,32562,12207,20745,20904,20905,8998,29421,1079,1091,1092,1137,20908,1364,1457,20909,1483,1511,1525,1543,1594,1610,1615,1645,20911,20912,20913,2026,2098,2139,2151,2163,20914,2070,20917,2687,2822,2863,2975,20918,1209,12209,3127,14774,3171,3181,3237,3310,3445,3467,6042,3519,30172,30174,3560,3730,20921,1153,4135,20922,20924,20925,20928,18052,4449,20931,20934,20935,3348,4709,4715,4729,4745,4763,33069], +[0,20937,200,20938,6599,20940,2109,20863,14609,20943], +[1,2349,13645], +[0,13646,13647,13649,2488], +[0,20948,1437,1707,20949,20951,1997], +[0,4255], +"fn.name", +[0,4051,3383], +[1,2349,13654], +"is-buffer", +"propget", +"pruddy-error", +[0,13655,13658,2523,34552], +[0,4864,9129,20959,2151,20960,4648], +"shouldjs", +"unit testing", +[0,4874,4039,4384,91], +[1,2349,13660], +[0,0,13647,13661,34552], +[0,2117,1781,3033,20966,4237,3048,3639], +[2,1176,3178], +[2,1218,5702], +[3,1267,18], +[2,13664,6836], +[3,1955,17], +"fer-arrow", +[2,13666,13667], +"native-", +[1,2349,13675], +"promise-only", +[2,13669,13671], +[3,4064,15], +[2,13673,2306], +[0,13677,13678,13679,34552], +"jstz", +[0,1676,1865,2151,1209,4449], +[0,2899,4039,4255], +[0,18503], +[3,8155,10], +[1,2349,13683], +"listen", +[0,0,13684,13685,2540], +[0,53,78,14167,87,20978,4864,4865,5087,11301,4874,19802,1245,1457,1596,2151,2070,1192,1894,4039,4042,4045,20981,20983,4075,4072,4468,4474,4484,91], +[0,5284,9302,9026,1666,6901,3811,20986], +[1,2349,13690], +[2,13689,25388], +"then-sleep", +[3,20626,11], +[0,13691,13692,13699,2488], +[0,20991,1437,2087,2727,2983,3368,15245,3741,4135,4247,20992,13914], +[0,1429,1596,1177,2759,20995,2899,3697,3752,4193], +[2,54,202], +"@pika/pack", +"pika-plugin-build-web-babel", +[3,13695,12], +"ts-types", +[2,13696,13697], +[0,20997,20998,8891,20999,2978,4166,16159,21000,3005,12804,21003,21004,2703,6599,14692], +[1,2349,13701], +[0,0,0,13702,2540], +[0,13326,200,20052,17180,2124,3497,998,6591,4354,16790,5284,676,21009], +[1,2349,13704], +[0,13706,13707,13708,2457], +"ttc", +[0,6372,21020,21016,3561,4383], +[0,53,87,6371,28962,28963,1009,1011,1165,1195,1587,1593,1610,1628,1630,1637,1177,1895,1955,21023,2092,12278,3177,3400,1894,21024,9348,4172,4230,4307,4409,4469,91,2924,4677,4681,21026,4749], +[0,2128,91,5284,2924,1936,1623,12951,21028,4380,21029,21031,21033,21034,21036,21029,21037,21038,21039,21040,21042,21044,21047,21050,21052,21054,21057,21060,1177,1894,17526,1999,5811], +"libnpx", +[1,2349,13714], +"node-cleanup", +[2,3382,6698], +[2,2103,9478], +[0,13715,13717,13718,2540], +[0,1149,4707], +"audit", +[0,3421,1776,2899,4170], +[0,21067], +[1,2349,13720], +[0,13724,13726,13727,2540], +"parse-", +[3,9577,10], +[2,13721,13722], +[0,21072,2081], +[2,1199,4037], +[0,53,1195,18228,1700,2323,2338,2396,2409,2494,2541,2700,1192,2780,3427,89,21074,3824,4603,2924,18237], +[0,2130,89,3497,21077], +"automatic", +[3,1446,9], +"commits", +[1,2349,13732], +[0,0,13733,13734,2540], +[0,1537,1177,2026,21082,2899,3421], +[0,27,2671,1002,7436,5576,7426,6435], +"detect", +"detective", +[1,2349,13740], +"detective-es6", +"sync-exec", +[0,0,0,13741,2488], +[0,2414,7176,8220,1017,2414,1367], +[1,2349,13743], +[0,13744,13745,2523,2457], +[0,18986], +[0,5517,13614,23237,27570,19325,1159,1177,3410,3421,4389], +"fraction.js", +[1,2349,13748], +[0,13749,13750,13751,2457], +[0,1149,21097,1496,21098,1512,3188,4709,21099,21100,3722,1543,2015,3427,21102], +[0,1429,4616,2899,1177,3220,21104,705,1894,21106,1895,1955], +[0,200,21110,21111,2041], +[1,2349,13761], +"@vercel/nft", +"arrgv", +"site", +"sites", +"callsites", +"cbor", +"chunkd", +"ci-parallel-vars", +[0,13762,13766,13776,4194], +[0,51,1437,1457,1595,1699,2151,3144,3181,21118,4121,4135,4388], +"code-excerpt", +"path-prefix", +[2,9480,13764], +[0,5467,16607,21120,6065,16608,16612,19861,21122,4864,5087,8818,9129,6541,4874,20959,5254,1009,1011,1529,1610,1177,1938,1954,1955,10619,2675,1192,21124,2784,2845,21125,2990,3203,1894,4039,4131,4294,4468,91,2924], +"concordance", +"curr", +"ently-unhandled", +[2,13768,13769], +"emitter", +"emittery", +"ignore-", +"by-default", +[2,13773,13774], +[0,2924,1932,91,21127,4469,2924,20050,2062], +"matcher", +[2,9477,1541], +[1,2349,13782], +"resolve-cwd", +[2,4250,594], +[0,13783,13785,13787,2531], +[0,13922,1437,1457,1209,3170,3181,814,4388], +"supertap", +[0,21134,16933,4870,8778,9129,4874,5251,4891,1429,1628,1177,2675,2759,2990,2899,3203,3210,1894,4039,4193,4469,4487,4490,91,188,4629,4634,4645,2924], +"temp-dir", +[0,2924,1932,91,998,16790,9654,20050,2062,6887,4469,1167,21136,1464], +[3,5328,14], +[2,13788,2190], +[1,2349,13794], +"🦄", +[3,1540,10], +"yield", +[0,13797,13798,2523,34552], +"observable", +"observables", +[0,21141,21144,13917,2571,3173], +[0,13614,1159,1389,21146,1596,1615,1177,21147,21148,2141,2708,21152,2759,26259,21153,14133,3697,3758,705,4039,4135,4389], +[1,2349,13800], +[0,13801,13803,13806,2540], +[0,3441,21158,24987], +"webpack-log", +[0,2934,3421,1192,1177,4042,2026,1894,4342,21163,1938,5328,1895,1955,811,21165,1881,816,21161], +[2,3599,1469], +"ps-node", +[0,15237,1669,2382,3767,21167,1781,21168,2090], +[1,2349,13808], +[0,13809,13810,13813,2488], +[0,5540,1699,2609,1209,3021,21174,21175,4484], +[0,972,4870,4880,4883,11322,21179,89,3824,21180,91,6482], +"ieee754", +"jmespath", +[0,2144,1669,25,89,3824,582,21182,7020,21185,7020,21188,21189], +"vector", +[1,2349,13819], +"test-vectors", +[2,13549,13816], +"insert-module-globals", +[0,0,13820,13821,2776], +[0,2899,1177,2759,1317,1311,1954,1938,1958,1903,1948,1970], +[0,2145,27,21195,2325], +[1,2349,13823], +[0,13826,13844,13845,2540], +"memoizee", +"@deque/dot", +[0,1437,6473,4290], +"colorjs.io", +"-regex", +"emoji-regex", +"abel", +"grunt-babel", +"revalidator", +"sri-toolbox", +[2,4149,1852], +"ytesize", +[2,2237,13835], +[2,6654,3733], +[2,1463,13589], +[2,1632,3679], +[3,8654,10], +"webdriverjs", +[2,13840,13841], +"browser-", +[0,1175,1178,1195,1225,1268,1177,1916,2022,1192,3150,2924], +[0,17460,2656,2924,1932], +[3,1566,14], +"ommits-parser", +[2,13846,13847], +"-no-only", +[2,1951,13849], +[1,2349,13853], +"Accessibility", +[0,13854,13855,13856,2540], +[0,2822], +[0,1377,21210,1596,2759,4255,4389,4770], +[0,4745,21214,21216], +"proxy-", +[1,2349,13861], +"from-env", +[2,13857,13859], +[0,13863,13877,13883,4194], +"multi-", +[0,2215,2859,21224], +"entry", +"multi-entry", +[2,812,13865], +[2,12621,3733], +"dev-null", +"data-node", +[2,1669,13869], +[2,11941,12942], +[3,6387,14], +[2,13872,6662], +[2,1160,11052], +[2,4049,13874], +[3,4048,16], +[0,21226,13305,3183,2899,3421,3752,21228,4255], +"ndle-size", +[2,13876,13878], +[2,6528,3069], +[3,13134,15], +[2,13881,1149], +[0,2150,2090,6771,1585,7204,2473,3188,7148,7149,6899,1781,3917,6033,2473,6865,7293,4453,7147,2585,6811,7004,1862], +[1,2349,13885], +[0,13886,13887,13893,2540], +[0,3181], +[0,4856,4864,6503,4874,1429,2151,2759,2899,3421,1894,3714,21237,4474,91], +[3,1391,11], +[2,13888,3171], +"edm-parser", +[2,2842,13890], +"md5.js", +[0,2150,6771], +"batchflow", +"factor-bundle", +"ink-docstrap", +"karma-e", +"nv-preprocessor", +[2,13897,13898], +[1,2349,13902], +"storage", +[0,13903,13904,13905,2540], +[0,21243,2151,3261,21246], +[0,4864,6507,2899,1863,4085,1362,4706,3760], +[0,1862,2150,2090,6771], +[1,2349,13907], +[0,0,13908,13910,2531], +[0,640], +"output-", +[0,2154,16718], +[1,2349,13915], +"file-sync", +[2,13909,13912], +"v8flags", +[0,13916,13918,2523,2457], +[0,3188,4039,2713,2215], +"es-set-tostringtag", +[0,4384,4255], +[1,2349,13926], +"babel-co", +"de-frame", +[2,13920,13921], +[3,1184,12], +[2,13923,591], +"babel-m", +[0,13929,0,13931,4194], +"essages", +[2,13925,13927], +[0,4740,3923], +[2,1185,5190], +[0,2156,5576,16410], +[1,2349,13933], +[0,0,13934,13935,2531], +[0,13614,1158,1159,1177,3421,4103,4389], +[0,3046,1213,1925,1460,5746,7298], +[2,1884,1172], +[1,2349,13938], +[0,0,13939,13940,2540], +[0,48,53,68,78,5712,87,92,192,5467,21276,5583,816,6373,21279,21280,21281,21285,19464,21287,21288,1195,1177,1895,2675,21290,1894,4005,4042,4057,4257,4072,91,1984,19469,21294], +[0,2163,7193,21296], +[1,2349,13943], +"trim-right", +[0,0,13944,13945,2457], +[0,19344,5366,1009,1011,842,1317,1177,1903,1915,1938,1953,1958,2675,4493], +[0,17218,5122,27,36,21302,5995,5130], +[1,2349,13947], +[0,0,0,13949,4194], +"try-resolve", +[0,2163,7193,7131,21307,21309], +[1,2349,13951], +[0,13952,13953,13954,34552], +[0,21315], +[0,1149,2228,21317,2240,2273,2277,4039,1899], +[0,2282,2070], +[1,2349,13956], +[0,0,13957,2523,34552], +[0,91,4874], +[1,2349,13959], +[0,13960,13962,13963,2531], +[0,1437,4761,4716,4756], +[2,1262,1192], +[0,2228,2239,21329,21328,3006,4547,2273,2290], +[0,4756,8632,5130,4627,6400,1896,1098], +[1,2349,13965], +[0,13966,13967,13968,34552], +[0,1437,4207,4761,1209,16442,4756,4547], +[0,3261,1797,1429,1370,2899,4193,1177,3188,1362,2759,1525,4196,1615,2820,1431,3938,3202], +[0,4756,1098,2323,21337,21339,1367,1103,21340,2278,695,5194,1172,21341,91,1509,2437,5357,2924,1177], +[1,2349,13971], +[3,13725,15], +[0,13972,13973,13974,2540], +[0,2212,2070,4761,1541,1209,1474,21350,21348,4756], +[0,1797,1177,2765,2151,21329,21328,1938,21352], +[0,4756,8632,4967,1896,2171,4627,13017,21354], +[1,2349,13976], +[0,0,13977,13978,2531], +[0,4874,1177,1895,1955,1958,1894,4384,91], +[0,4446,21360,6925], +[1,2349,13986], +[3,1235,24], +"xport-extensions", +[2,13980,13981], +[2,1262,3696], +[3,1566,13], +[2,13984,2289], +[0,0,13989,13990,2402], +".exports", +[2,1237,13987], +[0,5536,4874,16480,26265,1894,4172,21365,91,1984], +[0,5701,1179,7253,21367,21369,6564,3053,6695], +[1,2349,13992], +[0,0,13993,2523,2457], +[0,48,53,87,92,6061,6063,16608,5087,4874,1009,1011,21377,21380,1178,1193,1195,19254,1177,1895,1915,1922,1938,1955,1959,1961,1966,1982,2675,21385,1192,2990,1894,4039,4131,21388,91,2924,4677], +"-js-shims", +[2,1259,13994], +"place-", +[2,13996,3427], +[2,1252,13997], +[1,2349,14001], +"dynamic", +[0,0,14002,2523,2540], +[0,21393,21395,21396,21397,3421], +[1,2349,14004], +[0,0,8007,14005,2531], +[0,1709,2100,139,3560,6058,21402,21404,1544,3445,11995,21405,20529,3778,21406,21407], +[1,2349,14007], +[0,0,14008,14009,2540], +[0,4874,1702,1906], +[0,21413,2184,20061,5614,1398,3101,3729,3917], +[1,2349,14015], +"@umijs/test", +[2,1262,12445], +[3,3909,10], +[2,14013,5403], +[0,14016,14017,14018,2488], +[0,21418,2753], +[0,4874,1166,21420,21423,20925,4481,1906], +[0,3038,3101,1862,5614,1871,2585,1398,3917,2382,6613,7017,7255,3048,5614], +[1,2349,14026], +"nyc-config", +[2,3614,14020], +[2,8696,14021], +"instrument", +[2,11936,14023], +[2,1382,6521], +[0,14028,0,14030,2540], +"pmock", +[0,21430], +[2,14023,5218], +[0,2191,3038,91,2190,21432], +[1,2349,14032], +[0,0,14033,14036,2531], +[0,4874,1009,1011,17930,1177,21439,1895,1955,17931,21442,1894,17934,4508,91,17936], +[2,9477,1213], +[2,4013,14034], +[0,21444,21447,21450,21452,21455,21456,2192,21457,21458,16718,21459,202,5490,553,91], +"-bind", +[2,3046,14037], +[2,69,14038], +[3,8232,20], +[2,14040,6859], +[2,5316,7162], +[1,2349,14046], +"ompat", +"lodash-compat", +[0,14048,14049,14050,4194], +"cherry-pick", +[0,1149,2205,2151,1525,18145,2102,21466], +[0,4449,1429,2899,4193,1177,21468,21470], +[0,3358,2193,2195], +[1,2349,14054], +[2,13920,686], +[2,2103,14052], +[0,14055,14058,14060,2531], +[0,7076,10420,21476,21477,3505,16142], +"resolver", +"rename", +[0,1178,1429,21480,1503,1527,1652,1177,21482,1922,1938,1951,2899,3203,3421,3752,4131,4193,4196,21486,4585], +"mapping", +[0,3358,582,1564], +[1,2349,14062], +[0,0,14063,14066,4194], +[0,13693,87,21495,21498,21499,8850,816,6373,10615,10895,1429,1177,1903,1938,1954,1958,2297,2878,2881,2886,2895,2900,2904,2910,2912,2918,18260,2899,4042,6390,2278,4193,4196], +"ester", +[2,12187,14064], +[0,2195,10039,4967,4627], +[1,2349,14068], +[0,14069,14070,2523,2540], +[0,3181,21505,21507], +[0,4874,668,3144,3188,1894,4039,4384,4483,4508], +[1,2349,14072], +[0,14073,14074,14075,2488], +[0,2743], +[0,1177,1889,2022,2899,3421], +[0,2070,5933,4301,3403,21519,7204,1299,21520], +"remap-", +[2,14076,1223], +[2,1185,14077], +[3,13663,26], +[2,14079,5746], +[1,2349,14082], +[0,14083,9270,2523,4194], +[0,21526,3729], +[1,2349,14088], +[3,1184,14], +[2,14085,5789], +[2,1218,1229], +[0,0,14089,14090,2540], +[0,22839,1166,1448,1939,2182,26260,17269,3401,3471,3758,4167,4481,4507,1906], +[0,2203,2202,7014,6436,6437,2272,1177,6640], +[1,2349,14094], +[3,1217,21], +[2,14092,5610], +[0,14095,14096,14097,4194], +[0,20033,2071,2687,17450,4207,20789], +[0,4874,1166,1317,21539,4400,4481,1906], +[0,12101,4552,17455,18132,1586,17462,7131,2100,21541,17453,2150,2070,21543,21544,17461,3529,13777,3181,3250,15294,18104,13017,11601,100,614,6435,21520,21545,1862,16774,3358], +[1,2349,14100], +"chunk-data", +[0,14101,14102,14103,2457], +[0,1676,1615,21552,21550], +[0,1149], +[0,11812,21555,158,21556,2692,2206,6270,17539,3797], +"strict-", +[1,2349,14108], +"strict-mode", +[2,1226,14106], +[0,14110,14111,14112,2540], +[2,1218,77], +[0,3310,14231,4484], +[0,4874,5542,1009,1011,1177,21564,1938,1953,1958,1894,4508,91], +[0,21566,21567,21568,15473,17623,21571,5194,10906,2207,21572,21573,14692,21574,6355,21576,21577,21578,21579,21580,21581,21582,21583,5995,21584,21585,21586,21587], +[1,2349,14114], +[0,14115,14116,14117,2488], +[0,16485,21668], +[0,107,4874,1009,1011,21594,1177,1881,1883,1938,21597,20917,3297,1531,91,15822,1984], +[0,21600,21603,1885,21604,21599,21605,21606,5592,2211,21607,21608,21611], +[1,2349,14119], +[0,14120,14124,14125,4194], +[0,20917,21616], +"-react-jsx", +[2,9381,14121], +[2,1185,14122], +[0,21619,6503,21620,21621,4874,21623,15600,9725,11305,6513,6520,21625,21626,1414,1503,1610,2020,20914,2321,21627,1776,29342,29343,21630,2899,15221,3275,3297,3416,3445,3479,6332,1894,3752,4039,4153,4193,4449,91,4748], +[0,1885,5592,21632,5576,21633], +[1,2349,14127], +[0,14134,14135,14136,2531], +[2,88,2124], +[3,3872,10], +[2,14129,553], +[2,5237,14130], +[2,1199,14131], +"pkgfiles", +[0,21642,21651,21645,21647,21650,21649,16511,2928,21641,21638,21639,4507], +[0,21662,13789,826,5366,6494,4874,21654,14731,16936,6513,6515,1166,1170,1317,1362,1364,1414,14099,21656,21663,1701,1702,2024,2026,2139,13870,2188,3297,3310,3377,3477,21653,3532,29457,3923,705,4193,21657,4400,21659,4454,4494,91,1906], +[0,27,2671,13333,3038,2212,1002,12831,705,2869,7085,7289,1612,11995,11996,16518,21665,27778,27408,21666,21667,1170,4339,3310,21668], +"minification", +[1,2349,14140], +"propTypes", +[0,0,14141,14142,2540], +[0,2323,4207,4042,1637,3471,3561,21689,21681,3416,3758,4320,53,1165,3678,2650,21688,87,21684,21679,5583,10615,6373,16912], +[0,21691,4967,9204,1283], +[1,2349,14146], +[3,3957,12], +[2,14144,353], +[0,0,14147,14148,2540], +[0,2702,3188,4039,4384], +[0,2150,1237,21697,1153,21699,3768,1851,2656,6737,21700,21701,21702,21703,21704], +[1,2349,14150], +[0,0,0,14151,4194], +[0,2220,21715], +[1,2349,14153], +[0,2514,14154,2523,2531], +[0,4856,6503,4874,1429,2220,2899,4039,4042,4071,4232,21721,91], +[1,2349,14156], +[0,14165,0,2523,2488], +"numer", +"ic-separator", +[2,14157,14158], +[2,69,14159], +[3,5835,33], +"mutators", +[2,14161,14162], +[3,10720,33], +[0,5528,4484], +"atch-binding", +[2,14164,14166], +[3,14160,25], +"llish-coalescing-operator", +[2,14168,14169], +[1,2349,14172], +[0,14173,14174,14175,4194], +[0,2822,20273,21731,21732], +[0,21734,20269,1509,21735,2053,2149,2398,3183,2899,4452,4597,6033], +[0,21738,1507,1506,2382,1739,1745,7682,21740,4965,2149,9339,8623,1179,2193,12981,5284,5352,676,6671,1783,9338,1644,57,7119,13755,2947,1283,4452,4745,7651], +[1,2349,14202], +[3,9676,14], +"heck-", +"es2015-", +"constant", +"constants", +[2,14179,14181], +[2,14178,14182], +[2,14177,14183], +"function-", +"comma", +"commas", +[2,14185,14187], +[2,10038,14188], +[2,7174,14189], +[2,1218,14190], +[2,1236,5742], +[3,1235,40], +"ed-functions", +[2,14193,14194], +[2,1236,5256], +[3,14196,31], +[2,14197,5763], +[2,1236,5765], +[3,14199,31], +[2,14200,5770], +[0,14225,14228,2523,2488], +"for-of", +[2,1236,14203], +[3,14204,31], +[2,14205,5789], +[2,1236,5796], +[3,1240,38], +[2,14208,5808], +[2,14208,4376], +[2,14208,5811], +[2,3425,4340], +[2,1236,14212], +[2,1236,5639], +[2,1236,5845], +[3,14215,31], +[2,14216,5849], +[2,14216,5851], +[3,1244,31], +[2,14219,5855], +[2,5857,1108], +[2,1236,14221], +[3,13982,27], +[2,14223,5780], +[0,14393,21746,3025,10420,3263,3747], +"to-chromium", +[2,1807,14226], +[0,1364,21748,2026,21749,2759,1209,3183,3313,21752], +[1,2349,14230], +[0,14232,14233,14234,2457], +"gfsl", +[0,2021,2070,3368,2822,2240,3181,1672,2685,2107,2015,21761,21763,21759], +[0,21765,4431,21770,2291,21768,2283,2277], +[0,5957,1149,200,3178,2280,6147,1209,2275,1973,2907,2276,36,21772,8632,7048,2763,4990], +[1,2349,14236], +[0,14244,14245,14246,34552], +[2,1262,2124], +[2,1249,5878], +"-source", +[2,1248,14239], +[3,14240,34], +"elf", +[2,14241,14242], +[0,2633], +[0,2228,2240,2263,2247,2253,2273,2277,2281,2320,2258], +[0,21779,1098,1283,5354,5614], +[1,2349,14250], +[3,5700,31], +[2,14248,3164], +[0,0,14251,14252,2540], +[0,2228,2307,2239,2316,1429], +[0,21779], +[1,2349,14258], +[3,1233,24], +"o-expressions", +[2,14254,14255], +[2,1226,14038], +[0,14259,14260,14261,2488], +[0,1149,1389,21791,2070,1209,814,4650], +[0,2228,2240,2247,2273,2899,4193], +[0,21779,1389,2228], +[3,1230,29], +"or-call", +[2,13565,14263], +[2,14262,14264], +[1,2349,14267], +[0,14268,14269,14252,34552], +[0,4135], +[0,2228,2234,2247,2273,2277,2285,2307,3006], +[3,1233,33], +[1,2349,14272], +[0,14273,14274,2523,2540], +[0,3368,21804,13914,2727,21759], +[0,2228,2273], +[3,1225,29], +[2,14275,5747], +[1,2349,14278], +[0,14279,14280,14281,2531], +[0,1149,1144,21810,2709], +[0,1906,2228,3363,2240,1615,3505,21814,4351,2316,2247,2283], +[0,21779,13792,12804,21820,6707,6887,3514,6681,2062,21821], +"home-or-tmp", +[1,2349,14284], +[0,14285,14286,14287,2402], +[0,1149,4039], +[0,2228,21468,2273,2271,2277], +[0,21779,4050,4051,7293,6865,1700,6790,17459,4039], +[1,2349,14289], +[0,14290,14291,14292,4194], +[0,1149,21834,1664,21420,4449,4707], +[0,2228,2240,2247,2271,2273,2277,2314], +[0,21779,21837,4329,2278,1623,7234,7121,590], +[1,2349,14294], +[0,14295,14296,14252,2540], +[0,1437,4227], +[0,2228,2247,2273,2271,2277], +[1,2349,14298], +[0,14299,14300,14302,2540], +[0,3445,1149,3237,1544,13399,4150,4151,16511,21847], +[0,2228,2273,2271,2277], +"esutils", +[0,21779,36,1544,27], +[1,2349,14304], +[0,14305,14306,14252,2540], +[0,1437,21855], +[0,2228,2240,2247,2271,2273,2277], +"nv-inline", +[2,4690,14307], +[2,1226,14308], +"zipobject", +[2,3024,14310], +[1,2349,14313], +[0,14314,14315,14321,2531], +[0,1437,21861,1209,4300], +[0,2228,2247,2271,2273,2277], +[3,14257,24], +[2,9428,5238], +[2,14316,14317], +"9.0.0", +[2,5857,14319], +[0,21779,1623,671,21861], +[1,2349,14323], +[0,14324,14315,14325,4194], +[0,1437,1462,21867], +[0,21779,21869,1623,590,592,5376,3178,15215], +[1,2349,14327], +[0,14328,14296,14329,2540], +[0,1437,3714,2633], +[0,21779,1936,2262,3178,15215,6707], +[1,2349,14331], +[0,14332,14335,14340,4194], +[0,1437,2267,3478,3545,3714,18045,18047,18050,18051], +"@purtuga/esm-webpack-plugin", +[2,4807,1155], +[0,1166,1701,2228,1906], +"browserstack", +[2,13283,14336], +[2,13283,3199], +"otpauth", +[0,21779,15215,20639,158,11807,21881,20637,3178,18048,8221], +[1,2349,14342], +[0,14345,14274,2523,2531], +"-as-a-service", +[2,5995,14343], +[0,17523], +[1,2349,14347], +[0,14348,14349,14252,4194], +[0,1437,21890,2272], +[0,2228,2271,2277], +[1,2349,14351], +[0,14353,14358,14252,34552], +[2,2235,1283], +[0,695,1149,1437,1209], +"codec", +"decoder", +"encoder", +"base64", +[0,2228,2247,2273,21898,2271,2277], +[1,2349,14360], +[0,14361,14362,14363,34552], +[0,21903], +[0,2228,2247,2271,2273,4384], +[0,21779,2276,1973,8791], +[1,2349,14365], +[0,14366,14315,14367,4194], +[0,1149,1437,1615,1664,4707], +[0,21779,4329,2278,1623,7234,7121,590], +[1,2349,14369], +[0,14370,14296,14252,2540], +[0,1437,21867,21915,4535], +[1,2349,14376], +"basic", +"orization", +[2,1303,14373], +"basicauth", +[0,14377,14378,14379,34552], +[0,2164,1149,1209,4438], +[0,2228,2240,2293,4547,2273,2271,2277], +[0,21779,2282,3000], +[2,6915,5697], +[1,2349,14382], +[0,14383,14384,14385,2540], +[0,1437,1537,1566,3545,3760], +[0,2228,2239,2240,2247,2258,2273,2277,2290,21929,21930,2293,2307,3006], +[0,2228,21779,1566,16094,13729,3073], +"tructure", +"ministructure", +"orange sms", +[1,2349,14390], +[0,14391,14392,14394,2402], +[0,1437,13985,3545], +[0,2228,2239,2240,2247,2273,2277,21929,21942,21930,2293,2307,3006], +"@mapbox/node-pre-gyp", +[0,2228,21779,13985,2195,21944,3979,21945,1566,16094,13729,3073], +[1,2349,14396], +[0,14397,14398,14399,34552], +[0,1437,1177], +[0,442,2228,2240,2314], +[0,21779,1177,671,2649,11937], +[1,2349,14401], +[0,14402,14403,14409,2540], +[0,21890,2292,1209,21956], +[0,2228,2273,2277,3006,4436], +"utfx", +"testjs", +"metascript", +"closure", +[2,14407,4643], +[0,21779,2292,19271,16790], +[1,2349,14411], +[0,14412,14414,14415,4194], +[0,1615,1776], +"pomelo-logger", +[0,2228,2247,2277,2291,13896,3006], +[0,21779,2228,1745,2295,1776,18011], +"di", +"IoC", +"AOP", +"injection", +[1,2349,14424], +"consistent", +"hot reload", +[2,6399,5995], +[0,6205,14434,14435,2457], +"able codes", +[2,6578,14425], +[3,7191,11], +[2,14427,14419], +"hronous script loading", +[2,1149,14429], +"magic", +", self-described javaScript objects", +[2,14431,14432], +[0,192,21970,5467,6061,6063,16608,1177,1903,1938,1954,1958,1970,2025,2228,2239,2283,2285,2290,2291,2307,2675,2297,2881,2895,2900,3006,2899,4131], +[0,21779,2297,2228,1973,2275,8791,21972], +[1,2349,14437], +[0,14439,14440,14441,2402], +"beautify", +[0,21890,3188], +[0,1429,1506,2228,2240,21980,2247,2258,2273,21929,21982,21930,21984,2899,4039], +[0,21779,2899,1973], +[1,2349,14470], +"art-near-room-catch", +"blanket-line", +"born-greatly-explain3", +"bring-water-silence", +"brush-bigger-afternoon0", +"e-meet-war", +[2,11308,14448], +[2,6922,14449], +"compare-", +"breeze-mad2", +[2,14451,14452], +"did-", +"strai", +"ght-sister-sail", +[2,14455,14456], +[2,14454,14457], +"excitement-tonight-dead", +"gain-pleasant-prepare", +"industrial-public-immediately-until", +"is-str", +"aight-web3-attack", +[2,14462,14463], +"known-", +"wet-thirty-gave", +[2,14465,14466], +"-private-thee6", +[2,13682,14468], +[0,14285,14493,14494,2402], +"mainly-cent", +"ain-quarter-sit8", +[2,2944,14472], +"mouse-bat-web3-present", +"need", +"s-supper-anything", +[2,14475,14476], +"percent-impossible-score", +"rocket-location-calm-valley", +"seldom-fire-web3-running", +"shad", +"e-swim-shells1", +[2,14481,14482], +"spider-melted-chemical", +"stre", +"tch-onto-driver7", +[2,14485,14486], +"dream-supply5", +[2,11072,14488], +"-invented-girl-jungle", +[2,4990,14490], +"we-hunt-process", +[0,1429,2228,21991,2240,2247,2273,2283,3203,4449,4727], +[0,1586,2228,21779,2301], +"automobile7", +[2,4654,14495], +"whether-dangerous", +[1,2349,14499], +[0,14500,14501,14513,2457], +[0,4135,6472,4707], +[0,1429,2240,2273,2283,2300,22000,22002,3006,2899,3752,4436], +"ansicolors", +"global-", +[2,14503,6666], +[2,2103,14504], +[2,2687,11601], +[3,5510,9], +[2,14507,3101], +"script-", +"inject", +"injector", +[2,14509,14511], +[0,21779,9044,22005,15844,22008,22009,6667,22011,1851,4649,13728], +"dotpathlookup", +"jsl", +[1,2349,14519], +"httpserver", +[2,2869,14517], +[0,0,14520,2523,2402], +[0,2228,2239], +[1,2349,14522], +[0,0,14523,14524,34552], +[0,2228,2240,2247,2277,2278,1906], +[0,21779,1623,2278,4329,590,7234,4358,22022], +[1,2349,14526], +[0,14528,14530,14531,2540], +"docdown", +[0,1512,1209,3760,22027,22031,12826], +"qunit-extras", +[0,2228,2256,2273,2283,2293,22035,3003,1698,20001], +[0,21779,2228,12826,1973,2765,2899,2907,22037], +[1,2349,14533], +[0,14534,14535,14536,2457], +[0,1437,3404,4294], +[0,2228,2240,1906], +[0,21779,4166,1523,8429,2978,1614,1451,3729,200], +[1,2349,14538], +[0,7927,14539,14441,2488], +[0,2228,2273,2899], +[1,2349,14541], +[0,14542,14543,14549,2457], +[0,1149,22054,22057,4545,22058], +[0,1177,22062,22064,22066,22068,22071,22072,2228,2240,2302,2899,4039,4165], +"@beyond-js/specifier-parser", +[3,14544,11], +[2,14545,2150], +"bee", +[2,14545,14547], +[0,2228,21779,22074,158,22075,1623,22057,16697], +"tml", +[1,2349,14565], +"ansi-to-html", +"concat-", +"maps", +"-sourcemaps", +[2,5056,14555], +[2,14553,14556], +"json-format", +[3,6477,9], +"ackage-", +"ackage-path", +[2,14559,14561], +"uimport", +[2,14503,5260], +[0,14598,14599,14610,2540], +"universal", +" javascript", +[2,14566,14567], +"universal ", +[2,14569,91], +[3,2758,10], +[2,14571,14567], +[3,14572,11], +[2,14573,91], +"sigle page", +"spa", +"modul", +"ar development", +[2,14577,14578], +[3,11615,13], +" frontend", +[2,3166,14581], +"micros", +[2,14583,8920], +"micro ", +"services", +[2,14585,14586], +"hot ", +" replacement", +[2,1237,14589], +[2,14588,14590], +"ssr", +" side rendering", +[2,36,14593], +" packager", +[2,91,14595], +"JAMStack", +[0,1437,1676,1209,3505], +[0,2228,3188,4039,2240,2293,22081,2273], +"real time", +[2,7519,5130], +"ssr react framework", +[2,8589,5130], +"ssr ", +[2,14604,14603], +" framework", +[2,3709,14606], +[2,14604,14607], +"websockets", +[0,21779,2319,8635,1936,1623,6707], +[1,2349,14612], +[0,14613,14618,14623,2531], +[0,442,1009,1011,1437,1177,1895,1953,1955,2020,2720,2856,3157,3275,1894,4523,4728], +"check-", +"check-types", +"hoopy", +"tryer", +[0,22088,21122,5601,4864,4866,22089,6503,21621,4874,6513,6520,22092,1414,1615,2151,22093,21627,2899,4193,4449,91], +"please-", +"release-me", +[2,14619,14620], +"spooks", +[0,91,9654,4525,1885], +[1,2349,14625], +[0,0,14627,14630,2531], +"streamify", +[0,22099,8719,842,16145,22100,5087,4874,22102,9240,1177,1192,3313,1894,4039,4342,91], +"serialise", +[3,14430,12], +[0,2322,5122,5130,6710,27,5592,5995], +[1,2349,14632], +[0,14633,14645,14646,34552], +[0,21681,4600,22109,22110], +"arbitrary", +"precision", +"arithmetic", +"big", +"decimal", +"float", +"biginteger", +"bigdecimal", +[3,1325,9], +"bigint", +"bignum", +[0,3421,2899,1177,2022,3188,4039,1889,1954], +[0,6147,3101,623,7048,4990,14932,13441,22114,12804,22115], +[1,2349,14648], +[0,14650,14653,14656,2540], +"uri-", +[0,2367,22122,2409,2835,3067,3102,19984,4431], +"uri-to-path", +[2,2093,14651], +[0,4597], +"gyp", +"c++", +[0,18444,2323,1098,12074,6113,22126,22127], +[1,2349,14658], +[0,14659,14661,14662,2540], +[0,18473,692,2012,2390,2494,22133,2543,3188,2072,3730,18528,4039,4135,1241,4597,4600], +"@noble/hashes", +[0,2348,2899], +[0,18444,16179,4166,22137,1804,2195], +[1,2349,14664], +[0,14665,14668,14670,2540], +[0,1165,2476,3561,4606], +"@antv/", +[2,14666,4627], +[0,1166,2510,3477,4597,1906], +"@antv/g2", +[0,18444,1165,3561,1623,3665,22145,5376,4358,22147], +"@antv/g2plot", +"@antv/util", +"@juggle/resize-observer", +"d3-color", +"conciler", +[2,3877,14675], +[1,2349,14703], +"data-", +"data-set", +[2,14666,14679], +[3,87,15], +[2,14681,1266], +"backgrounds", +[2,10818,14683], +[3,10827,19], +"fo", +[2,14685,14686], +"knobs", +[2,10818,14688], +"options", +[2,10818,14690], +"fabric", +"@umijs/fabric", +"@welldone-software/why-did-you-render", +"aphrodite", +[3,13080,20], +[2,14696,3897], +[2,14696,8221], +"bx-jest-electron", +[3,4325,12], +[2,6996,4408], +[2,14700,14701], +[0,14704,14716,14722,2540], +[0,7709,1104,1443,2061,22153,3173,3544,4597], +"-deploy", +[2,7204,14705], +[2,10617,14706], +[2,5651,2091], +"moment-", +"jalaali", +[2,14709,14710], +"react-wi", +"th-styles-interface-aphrodite", +[2,14712,14713], +[3,14714,28], +[0,1429,22157,1177,2323,2494,2899,1894], +"mpiler", +"css-compiler", +[2,14715,14718], +"-diff", +[2,8745,14720], +[0,18444,7200,6949,20001], +"g2", +[1,2349,14725], +[0,14726,0,14727,2540], +[0,22167,22168,2012,3171,3730,3768,22170,4597,4600,4747], +[0,18444,13531,20614,13901], +[3,4808,10], +[1,2349,14732], +"dable-stream", +[2,14728,14730], +[0,14733,14734,14735,34552], +[0,4431,4002,3544,4606], +[0,1906,2899,4597,3697,53,2510,5761,5756,5743], +[0,18444,1172,5198,6778,7056,7192,22179,22180,5341,5061,22181,5284,4643], +"bun-types", +[1,2349,14740], +"falafel", +"fore", +[0,14742,14746,14749,2531], +"foreach", +[0,2476], +"coffee-", +[2,14743,89], +"save", +[0,1166,2323,3477,4597,1906], +"save-license", +[2,4534,14747], +[0,18444,4295,1412,4327,3126,4577,22188,22189,22190], +[1,2349,14751], +[0,14752,14753,14754,2540], +[0,1104,1370,2061,2720,3544,4431,4597,4647], +[0,1429,2012,22198,2436,2463,2272,2899,4039,4193,4196,4278], +[0,18444,1370], +"curses", +"tui", +"tput", +[1,2349,14760], +"terminfo", +[0,14762,14763,14764,2531], +"termcap", +[0,1389,2541,1391,3923,4431], +[0,2899,1429,15052], +[0,18444,17461,1389], +[1,2349,14766], +[0,14767,14771,14772,2540], +[0,4431], +"ansi-term", +"drawille-canvas-blessed-contrib", +"map-canvas", +[0,2899,4597], +[0,2323,18444], +"-terminal", +[2,3127,14773], +[2,3149,7046], +"picture-tuber", +"sparkline", +[1,2349,14779], +[0,14782,14653,14786,2402], +"term-canvas", +"x256", +[0,22217,3544,22218,4135,4431], +"@types/bl", +"essed", +[2,14783,14784], +[0,2323,15208,4135,18444,15525,22220,22222,22223], +[1,2349,14788], +[0,14789,0,14790,4194], +[0,97,22229,1593,22230,3544,4431,4597], +[0,18444,2323,2325], +[1,2349,14792], +[0,14793,14794,14795,2540], +[0,4431,3032], +[0,2899,4597,4170], +[0,18444], +[1,2349,14797], +[0,14798,14799,14800,2488], +[0,22246,2476,4453], +[0,1166,1437,1700,2089,2188,2323,4597,1906], +[0,18444,2090,1586,22249,2301,22251,22253,15795,6901,22254,4262,2325,16077,22255], +[1,2349,14802], +[0,14803,7884,14804,34552], +[0,2061,3544,4039,4431,4597], +[0,18444,4050,7293,6865], +[1,2349,14806], +[0,14807,14808,14809,34552], +[0,1462,3544,4431,4606], +[0,1429,21480,1596,2026,2061,2323,2367,2494,2504,2510,2899,3421,4597], +[0,1623,4050,3178,2280,1462,2458,2459,2361,18444,17461], +[1,2349,14811], +[0,14812,14813,14795,2402], +[0,1509,3544,4002,4431,4606], +[0,2510,2899,4170,4597], +[1,2349,14815], +[0,14816,14817,14818,4194], +[0,2541,4431,4707], +[0,1596,1700,2323,2436,2444,2447,2455,2463,2685,22280,3102,2899,4170], +[0,2323,18444,21837,4329,2278,1623,7234,7121,590], +[1,2349,14820], +[0,14821,14822,14795,2540], +[0,4597,4431,14557], +[0,2323,2899,4170,2759,16584,4278,2510,3202], +[1,2349,14825], +"loop", +[0,14826,14827,14828,2540], +[0,3032,22291,3544,22292,22293,22296,4431,4597], +[0,1429,2899], +[0,18444,5614,1623,1204,1698,134], +"baconjs", +"kefir", +[1,2349,14841], +[3,3736,10], +[3,3736,14], +"deferred", +"deferreds", +"future", +" control", +"flow control", +"dsl", +[2,8553,6072], +[0,14842,14827,14843,2488], +[0,4431,2541,2720,1687], +[0,18444,8635,22303,22304,8622,8620,22306], +[1,2349,14845], +[0,14851,14852,14853,2540], +"BN", +"Big number", +"BigNum", +"Modulo", +"Montgomery", +[0,710,1544,4438,2061,3102,1104,4150,4151,21847], +[0,2323,2899,4342,2515,1506], +[0,17461,1544,3000,22313,36], +[1,2349,14857], +"unpipe", +"destr", +[0,14859,14860,14861,2540], +"destroy", +[0,4431,3544], +[0,2323,1192,1894,21482], +[0,18444,1585,2323], +[1,2349,14863], +[0,14865,14866,14867,2540], +[2,1601,1851], +[0,1104,22324,2061,3544,4431], +[0,2272,2899,4597], +[0,18444,1623,22324,671,9654,7121], +"-jsdoc-theme", +[2,1365,14868], +[1,2349,14875], +"postgre", +"sql", +"postgresql", +"datamapper", +[0,14876,14878,14879,2540], +[0,4597,21861,22331,4431,2061,3544], +"active record", +[0,3421,2899,4193,1177,4039,4170,1596,22333,22334,1958,1903,1970,1900], +[0,21861,18444], +[1,2349,14881], +[0,14882,14883,14884,2540], +[0,1637,16136,3544,3427,4606], +[0,4389,4597,4387,2510], +[0,1637,3178,14137,16918,16919,1623,18444,3561], +[1,2349,14886], +[0,14887,14888,14889,2540], +[0,16858,3544,4606], +[0,4389,4597,4387], +[0,18444,3178,1623], +[1,2349,14891], +[0,14893,14895,14896,34552], +"mincer", +[0,3544,4431,20992], +"eyeglass-module", +[0,2272,3760,4170,4597], +[0,18444,2382,1781,2323], +[1,2349,14898], +[0,14899,14900,14901,2488], +[0,1177,2061,3544], +[0,2323,2899,4597,4170,2759,1178,22360,22363], +[0,18444,1177,2323,2656,22365,4354,4225,1501,4525,676,5284,5957,671,1932], +[1,2349,14905], +"align", +"ansi-align", +[0,14906,14909,14910,4194], +[0,2856,4597,2051,22372,4431,3544,1537,22371], +"boxes", +"border", +[0,2323,2899,4170,2759,1783], +[0,18444,2090,2385,4068,2323,1932], +[1,2349,14912], +[0,14913,14914,14915,34552], +[0,4207,3249,3544,22379,22382], +[0,1906,1166,2323,4597,3477], +[0,18444,7131,2687,2090,1586,3529,3181,2070,21543,4597], +[1,2349,14917], +[0,14918,14653,14919,2531], +[0,3544,4431], +[0,18444,19991,4237,20050,22390,22392,3053,2323], +[1,2349,14921], +[0,14859,14925,14926,2540], +"-stream", +"quote-stream", +[2,5706,1237], +[0,2323,2899,4597,4170,3697,1879], +[0,18444,2323,3033,10903,3403], +[2,13888,353], +[1,2349,14929], +[0,14931,7927,14933,2540], +"readFileSync", +[0,22402,4001,21035,4431], +"asset", +[0,14438,1671,4525,2323,18444,1783,5980,1932,22405,3721,4001], +[1,2349,14935], +[0,14936,14941,14945,4194], +[0,1437,2541,22410,22412,3427,7029,3545,4431], +"array-equal", +[2,1379,1932], +"fs-tree-diff", +"heimdalljs", +[0,22414,3505], +[2,3192,1177], +"-lerna-changelog", +[2,3980,14943], +[0,18444,2156,22410,2090,1586,16410,20500,36,5576,9229,20997,20998], +[1,2349,14947], +[0,14948,14949,14950,2540], +[0,22420,4039,4600,2541,22422,3923], +[0,2899,4597,1177,2759,22425,3349,2215,3074,22427,22428], +[0,3358,6645,1528,22430,20997,20998,20001,13755,5351,2323,18444,2193,1724,2195], +[3,1378,10], +"ixture", +[2,14951,14952], +[1,2349,14955], +[0,14956,14957,14958,2531], +[0,22437,2061,1209,3544,4015,22440,4597], +[0,1177,2899,3210,4039,4170], +[0,2323,3358,22443,18444,22223], +"broccoli", +[1,2349,14963], +[3,14953,15], +[2,14961,1289], +[0,14965,14966,14971,2488], +"multidep", +[0,1104,1413,2061,3544,22449,4431], +[0,2323,2359,2390,2447,2463,2494,18426,2544,2839,2899,22451,4170], +"ts-docs-gen", +"plugin-p", +[2,14968,11597], +[2,4491,14969], +[0,15215,18444,16518], +[1,2349,14973], +[0,14974,14975,14976,34552], +[0,2036,3544,4002,4431], +[0,4597,2323,2367,22460,22463,22465,2899,22466,4170], +[0,18444,2036], +[1,2349,14984], +[2,1387,4219], +[3,14978,13], +[2,14979,181], +"bs-recipes", +"dev-ip", +"easy-", +[0,14987,14988,14989,2540], +"easy-extender", +"eazy-logger", +[0,14557,1209,3102,4431], +[0,1429,2323], +[0,10345,18444,22475], +"resp-modifier", +[1,2349,14993], +"bs-snippet-injector", +[0,14996,14997,14999,2402], +"-changelog", +[2,8623,14994], +[0,1496,4207,1362,4599,3427,3923], +[0,2899,4597,2759,2541,22360,1537,22481,4603], +"browser sync", +[0,18444,1936,4068], +"live reload", +"sync", +[1,2349,15003], +[0,15004,15005,15025,4194], +[0,4431,3544,2633], +[0,2323,2899,4597,2398], +"browser-pack", +[2,13843,814], +"zlib", +[2,13888,15008], +"d-pa", +"th-relative", +[2,15010,15011], +[2,2325,15012], +[2,10740,1389], +[2,14181,1617], +"defined", +"deps-sort", +"domain-browser", +"duplexer2", +"htmlescape", +"https-", +[2,15021,1389], +"ed-stream-splicer", +[2,5433,15023], +[0,1671,2323,18444,22489,1936,2265,14137,2632,3178], +[1,2349,15029], +"-classic", +[2,3188,15027], +[0,15049,15061,15062,2531], +"module-deps", +"os-browserify", +"-es3", +[2,3767,15032], +"read-", +"only-stream", +[2,15034,15035], +"shasum-object", +"stream-b", +[2,15038,2345], +[2,4279,27], +"_decoder", +[2,1871,15041], +"subarg", +[2,9056,1851], +"rs-browserify", +[2,6901,15045], +"tty-browserify", +"vm-browserify", +[0,8949,22495,18438,22497,22502,22379,22504,22505,22500], +"unpack", +[2,13843,15050], +"coffeeify", +"has-o", +"bject-spread", +[2,15053,15054], +[2,2565,1243], +"isstream", +[3,5747,18], +[2,3094,15058], +"seq", +[0,2323,1192,1177,4039,22509,8719,1894,842,16145,442,1527,22512,91,22507,8712,22511,4523,1939,1895,1955,1652,1567], +[0,18444,2323,1017,2414], +[1,2349,15065], +"commonj-esque", +[0,15066,15067,15068,2488], +[0,4431,22518,22519], +[0,2899,2272,3188,4039,4170,4600,2215,1834,22522], +[0,18444,21195,22524,22525], +[1,2349,15074], +"exposify", +"mothership", +"-function-calls", +[2,14057,15072], +[0,15075,15078,15079,2457], +[0,4431,22518], +"peer-range", +[2,1382,15076], +[0,2272,2899,4170], +[0,18444,7131,3181,2385,6521,2390], +[1,2349,15081], +[0,15082,15083,14795,2540], +[0,1149,1209,22536,4431], +[0,2206,2323,2359,2463,2447,4089,2839], +"leases", +[2,3340,15084], +[3,12361,13], +[2,15086,1747], +[2,9787,15087], +[1,2349,15091], +"target", +[0,15092,15093,15094,2540], +[0,1437,2476,2267,3545,3714], +[0,1166,2694,24006,4597,1906], +[0,18444,2267,158,11807,20631,20632,3178,2632,15215,18048,20637,21881,20639,8221], +"base-x", +[1,2349,15098], +"ts-standard", +[0,15099,15104,14795,4194], +[0,1104,2012,2070,3544,4227,4296,4597,4606], +"base58", +"bitcoin", +"crytography", +"decode", +[0,2323,2510,2899,4170,4278], +"decoding", +[1,2349,15108], +"litecoin", +[0,15109,15110,15111,2540], +[0,1144,4431,2061,1104,22555,3544,22449,1874], +[0,1906,2675,2899,4597,4170,22557,2012,192,4131,22559], +[0,18444,14510,22561,22562,3888,4017], +[3,9366,12], +"d-transpile", +[2,6990,15113], +[2,15112,15114], +[1,2349,15117], +[0,15118,15119,15120,2540], +[0,22568,3544,4431], +[0,1178,1596,2012,2323,2384,2463,2899,3421,4597], +[0,18444,134,1623,1936,1823], +[1,2349,15122], +[0,15123,15124,15129,2488], +[0,1664,2541,22576,3479,4431,4707], +[0,1429,2899,4257,1906], +"acorn-", +[3,1200,14], +[2,15125,15126], +"acorn-jsx", +[0,18444,1370,3378,1161], +"regexpu-core", +[1,2349,15137], +[2,10740,7227], +[3,5583,16], +[2,15133,4047], +"262-stream", +[2,1973,15135], +[0,15142,15143,15144,2488], +"transpil", +[2,15138,5218], +[3,5221,11], +"esnext", +[0,2759,22584,1209,3544,4431,4606], +[0,2323,2463,2510,22588,2272,2899,4039,4597], +[0,18444,4504,2759,22590], +[1,2349,15146], +[0,15147,15150,15151,2402], +[0,2541,2437,4431], +"compatible", +"uint8array", +[0,2323,4384,2447], +[0,2437,18444,3101,7234], +[1,2349,15153], +[0,15154,15155,15156,2402], +[0,1144,2765,22602,3544,4431], +[0,2323,4597], +[0,5982,5130,18444,2765,2907,8791,4386,4384,6969,1973,5472,2275], +[1,2349,15158], +[0,15161,15162,15163,2540], +"-build", +[2,640,15159], +[0,2292,3544,4431,4435], +[0,4278,17468,4597], +[0,18444,2292,5284,5286,676,1501,590,2649,671,6892,4354,16790], +"prebuildify", +[1,2349,15166], +[0,15167,15168,14795,4194], +[0,1209,3181,3544,22331,4431], +[0,2323,2272,2899,4170,4597], +[1,2349,15170], +[0,15171,15172,15173,2531], +[0,1699,1707,2820,3544,4431], +[0,1177,1889,2323,2899,4170,4597], +[0,18444,2323,1781], +"built-in", +"bundled", +[1,2349,15177], +[0,15178,15179,15180,2531], +[0,695,3427,3544,4002,4431,4606], +[0,2272,2899,4170,4597], +[0,18444,2323,695], +[1,2349,15183], +"flexbox", +[0,15184,15185,15186,4194], +[0,1437,1676,4597,4438,2061,3023,3923], +[0,2899,4193], +[0,18444,3000], +[2,5581,10659], +[1,2349,15189], +[0,15190,15191,15195,2531], +[0,22639,814,2061,3170,2107,22640,22638], +[0,2899,4193,1177,3752,22643,1953,1954,1938,1958,1903,1970], +"@sto", +"plight/yaml", +[2,15192,15193], +[0,17461,2323,3209,3001,9711], +[1,2349,15198], +"mergician", +[0,15199,15200,2523,2402], +[0,1462,2541,3427,3923,22649,4606], +[0,1429,2899,4597,1177,2759,2515,22360,2510,22651,22481,22428], +"warn-if-update-available", +[1,2349,15205], +[2,4869,7059], +"err", +[0,15206,15207,15209,2540], +[0,16862,4431,2541], +[0,1429,2323,2899], +"bump", +[0,18444,3178,6707,16918,15215,1936,16862], +[1,2349,15211], +[0,15212,14746,15213,2531], +[0,1664,2020,2476,2899,4351], +[0,18444,2899,1973,5472,2275,5130,8791,6969,5982,2907,4386,4384], +[1,2349,15216], +"compress", +[0,15217,15218,15219,2402], +[0,22667,2070,3544], +[0,1429,2323,2899,4597,1177,3203,21470], +[0,2323,18444,2301,22254], +"dtrace-provider", +"mv", +[3,2854,14], +[2,4099,15222], +[1,2349,15226], +"ben", +[0,15228,14653,15229,2531], +"log4j", +[0,22675,1698,22676,3544,4431,4606], +[0,18444,1098,12074,10650,22676], +[1,2349,15231], +[0,15233,15235,15238,2457], +"streamsearch", +[0,1512,2323,3363], +"@mscdex/eslint-config", +[0,1506,2447,2463,20047,2272,4170], +"uploads", +[3,3253,9], +[0,2323,3363,22684,36,22687,20120,2282,17461,18444], +[1,2349,15240], +[0,15241,15242,15246,2402], +[0,1209,4431,2061,1104,3357,3544,3330], +[0,2323,2899,4597,4170,2479], +"lxiv", +"hrtime", +[2,3715,15244], +[0,18444,22005,2323,9044,16237,22695,22696,22011,22699,15844], +"webrtc", +[1,2349,15249], +[0,15250,15251,15252,2540], +[0,18438,1437,22706], +[0,1166,3477,91,4597,1906], +[0,2323,1932,2474,6731], +"converter", +[1,2349,15255], +[0,15256,15257,14795,2488], +[0,1437,4431,2061,3544], +[0,1906,2323,2899,4170,4430,2759,1596,2012,3202], +"@bcoe/v8-coverage", +[1,2349,15263], +"ground-child", +[2,14739,15260], +"v8-to-istanbul", +[0,15265,15268,15269,2488], +[2,1432,8746], +[0,2061,3544,3616,4606], +"v8", +"profiler", +[0,3421,2899,4193,4597,1177,3561,3752,2510], +[0,18444,3561,22147,1623], +[1,2349,15271], +[0,15274,15280,15281,2540], +[3,5738,22], +[2,15272,2528], +[0,4358], +"@types/mri", +[2,13307,2831], +[2,4049,668], +[3,207,8], +"madr", +[0,2899,33479,30889,4597], +[0,22726,1509,21195,1676,22729,6639,6521,22223,18444,1936,22727,22728,2385,5284,7121], +[1,2349,15283], +[0,15284,15285,15291,2531], +[0,2012,2720,3067], +[0,1145,1177,22735,2720,2899,3752,4603], +"@fake", +"r-js/faker", +[2,15286,15287], +[3,1909,17], +[2,15289,91], +[0,18444,3741], +" cache", +[1,2349,15295], +"multiple", +[0,15296,15297,15298,2402], +[0,2541,3427,3909,4431,4606], +[0,2510], +[0,18444,89,1219,353,8535,1283,5354,6624,22743,22746,7234], +[1,2349,15302], +"es-de", +"fine", +[0,15303,15306,15311,2457], +[0,2012,3357,705,4431,4597], +"fine-property", +[2,15300,15304], +[0,2323,2530,2359], +"-apply-helpers", +[2,2183,7083], +"-length", +[2,3609,15309], +[0,18444,21004,22753], +"gopd", +[1,2349,15314], +[0,0,15315,14795,2402], +[0,2323,2510,3102,2899,1894,4170,4597], +[1,2349,15317], +[0,15325,15327,15328,2488], +"camel", +"-case", +"camel-case", +"case", +"hyphen", +"separator", +"pascalcase", +[0,4874,18438,4748,22762,17909], +"pascal-case", +[0,2899,4597,4170,4474,19544,91,1537], +[0,18444,4068], +[1,2349,15330], +[0,15331,15332,15333,4194], +[0,2476,22771,22772,22774,22776,4597,22778], +[0,1166,3477,1906], +[0,18444,22781,22782,22783,3428,6707,15525,22220,2325,22784,2947,14932,22785], +[1,2349,15335], +[0,14918,15336,15337,2540], +[0,2012,2390,2498,2899,4597], +[0,18444,22781,22783,15525,4068,14932], +[1,2349,15339], +[0,15343,15347,15348,2531], +"assert-", +"rejects", +[2,15340,15341], +[0,1437,1573,1615,1664,22795,1874,2061,2070,8944,22798,3505,3544,4002,4039,4597], +"graphic", +"pixman", +"cairo", +[0,2323,2510,22778], +[0,18444,4329,2278,1623,7234,7121,590,22801,4227,11939,12938,4070], +[1,2349,15350], +[0,15351,15352,15353,34552], +[0,3527,4294,4002,3544,3028,4606], +[0,2323,2278,2899,4597,1177,4039,21315,3561,18426,3342,1165,2482,21688,2510,1938,1881], +[0,18444,2278,2323], +[1,2349,15357], +" sensitive", +[2,15321,15355], +[0,15358,0,15359,34552], +[0,1149,2541,3427,7029,4247,4431], +[0,18444,22813,2090,1586,16410,20500,36,5576,9229,20997,20998], +[1,2349,15363], +"slimerjs", +"scraping", +[0,15364,15365,15366,34552], +[0,1437,2061,3067,3544,4431,4484], +[0,22821,22507,5087,22823,4874,18435,1009,1011,1596,1177,1895,1939,2323,1192,1894,4468,4474,91,4597], +[0,18444,2323,4166,1523], +[1,2349,15368], +[0,15369,15372,15375,2402], +[0,22829,1437,2061,2476,2553,3714], +"loupe", +"pathval", +[0,1166,3477,4597,1906], +"check-error", +[3,6470,15], +[0,18444,2098,2090,4202,3073,22832,3430,1676,16518,21665], +[2,5474,13278], +[1,2349,15378], +[0,15379,15380,15381,2540], +[0,22837,22841,1082,1573,1623,22843,20949,2215,4227,21732,4431], +[0,1367,1177,1889,2022,2323,2367,2419,2450,2455,22845,2759,22481,22848,2899,3427,4039,4597], +[0,18444,2323,22850,4070], +[1,2349,15383], +[0,15384,15372,15386,2540], +[0,53,2476,22857], +"chai-plugin", +[0,18444,4301,7293,6865,4050,1676,6782,7201,3073,6807,676,5284,5286,6892,2003], +[1,2349,15388], +[0,15389,14813,15390,2540], +[0,22863,3023,3544,4002,4333,4431,4606], +[0,2323,4333,1623,7121,18444,22223], +[1,2349,15392], +[0,15394,15395,15396,2540], +"strategy", +[0,3544,4360], +[0,2070,2323,22871,2899,22872,4597,1906], +[0,18444,1017,45,8221,18048,22074,22075,2873,1179,1623,2278,695,4333,5376,134,1936,13814,22874,22875,3257], +[1,2349,15399], +"@debitoor/eslint-config-debitoor", +[0,15404,15406,15407,34552], +"objects", +"Subset", +[2,6792,15401], +"like", +[0,3028,3544,4361], +"superset", +[0,48,53,87,94,1166,1596,1610,1701,3421,1894,4597,1906], +[0,18444,3178,8221,4361], +[1,2349,15409], +[0,15410,15412,15413,2540], +[0,1448,2061,3544,4597], +"yoctodelay", +[0,2099,2323,2430,2899,3758,4151,4193], +[0,18444,8221,1017,22074], +[1,2349,15415], +[0,15416,15417,15422,2488], +[0,2476,1209], +[0,1166,2383,4597,1906], +"docpress", +"git-u", +"pdate-ghpages", +[2,15419,15420], +[0,18444,1209,4545,1283,7234,1936,8924,22894,22746], +"gulp-ava", +[2,2530,3020], +[1,2349,15429], +"mersenne", +"address", +"dice", +[0,15430,15431,15432,2540], +[0,1104,2061,4430,4597], +[0,22507,4874,22900,18438,20959,22821,4039,2323,2463,91], +[0,18444,91,5284,22902], +[1,2349,15434], +[0,15435,15440,15441,2488], +[0,22821,1104,2061,3102,3544,4430], +"param-case", +"kebab-case", +"header-", +"header-case", +[0,22909,4874,22900,2323,2367,2529,4487,91], +[0,2323,91,1932,4799,18444,17461,4487,9654,671], +[1,2349,15443], +[0,15453,15454,15455,2540], +"c12", +"convert-", +"gitmoji", +[2,15445,15446], +[2,3310,4009], +"ofetch", +"pkg-types", +"scule", +"std-env", +[0,4597,4431,4600,4227,1104,3544], +[0,2323,4039,22920,91,4874,2367,2409,18438,2479,3159,18435,18440,2510,22919], +[0,91,18444,22924,4799,11540,7234,4643,5197], +[1,2349,15459], +"dogstatsd", +"@kurkle/color", +[0,15479,15485,14795,2488], +[2,812,14510], +"@types/o", +"ffscreencanvas", +[2,15461,15462], +"js-adapter-luxon", +[2,9816,15464], +[3,15465,16], +[2,15466,3220], +"chartjs-", +[2,15468,11017], +"chartjs", +[2,1884,15470], +[3,2912,13], +"launcher", +[2,5695,15473], +[2,15472,15474], +[3,4071,15], +"wc3", +[2,15476,15477], +[0,22639,2757,4431,4535,22930,22640,4100,2053,22933,4606], +"charts", +"graphs", +"datadog", +"telegraf", +"native-run", +[0,4389,4597,1177,1894,22941,4421,3696,22939,1907,1982,1895,1955,22937], +[2,1448,11245], +"domhandler", +"domutils", +[1,2349,15503], +"-sniffer", +[2,9254,15490], +"-tree-adapter", +[2,2653,15492], +[2,1868,15493], +[2,3493,15494], +"parse5-", +"parser-", +[2,15497,3101], +[2,15496,15498], +"whatwg-", +"mimetype", +[2,15500,15501], +[0,15511,12125,15513,2531], +"@imgix/js-core", +[2,7724,2220], +"hatwg-mimetype", +[2,7820,15506], +[3,1926,15], +"xpect-type", +[2,15508,15509], +[0,2541,3427,22946], +[3,2654,10], +[0,17507,1623,18444], +"scraper", +[1,2349,15516], +[0,15517,15518,15519,34552], +[0,2070,2367,3544,4431,4597], +[0,2012,4600,2323,2447,2463,2530,2413,2361,2498,2450,2272], +[0,18444,2319,2536], +[1,2349,15521], +[0,15522,15523,15524,2540], +[0,2070,2051,22959,2419,4431,4600,2367,2012,3544], +[0,3421,2323,2899,4597,1596,22961,2463,2384,2494,1178,22963], +[0,18444,1936,3888,1623,6707,5614], +"version", +[2,813,15525], +[1,2349,15528], +[0,15529,15530,2523,2776], +[0,22970,22971,22972,1437,1672,2061,22639,22640,22974,22979,22983,3067,3183,8949,3427,4002,4431,4597], +[0,1400,1596,2012,2759,22481,2272,22985,2899,4039,4170], +[1,2349,15532], +[0,15542,15546,15552,4194], +"@better-scroll/core", +"add-", +"listener", +[2,12598,15535], +[2,1752,15536], +[2,15534,15537], +"-font", +[2,1456,15539], +[2,1625,7521], +[0,3768,4430,4431,4597,4600,4753,22990], +"-converter", +[2,2275,15543], +[2,1625,15544], +[0,2899,4255,1241], +"dom-closest", +"dom-lib", +[3,1817,15], +[2,15549,2013], +"htmlhint", +[0,2323,18444,22990,22993,2056,7046,4597,2542], +"insert-css", +"jsbarcode", +"jsonlint", +"jsonlint-mod", +"mutat", +"ionobserver-shim", +[2,15557,15558], +[2,3767,1289], +"-delta-to-html", +[2,3771,15561], +[1,2349,15564], +[0,15576,15577,15581,2540], +"eautiful-dnd", +[2,12242,15565], +"demirror2", +[2,3808,15567], +"asy-crop", +[2,11352,15569], +"lightbox", +[2,3608,15571], +[2,3838,15572], +"azy-load", +[2,12432,15574], +[0,1104,15642,1457,2061,2200,3427,3507,3544,3923,4207,4597,22778], +[0,1596,2759,2899,3202,3752,4039,4170,4193,4278,4294,1906], +"react-quill", +"rmc-feedback", +"smooth-scroll-into-view-if-needed", +[0,2323,2282,18444], +[3,5835,27], +[1,2349,15589], +"to-to-assign", +[2,15582,15584], +"demirror", +[2,4860,15586], +"lement-", +[0,15593,0,15603,2540], +"resize-event", +[2,15588,15590], +[2,4861,15591], +[0,3150,4597,4430,2924,2541], +"@types/faker", +"sert-css", +[2,9721,15595], +"barcode", +[2,7635,15597], +[3,7895,12], +[2,15599,2631], +"rcode.react", +[2,11304,15601], +[0,18444,2924], +"beautiful-dnd", +[2,4881,15604], +[2,4881,2741], +[2,4881,11167], +[2,6324,1456], +[2,5098,15608], +[3,15609,15], +[2,15610,7262], +[2,15610,89], +[2,15610,10631], +"tinker", +[2,1876,15614], +[2,6941,3841], +[1,2349,15620], +"mark-twain", +"rc-queue-anim", +[0,15628,15631,15636,4194], +"croll-anim", +[2,11229,15621], +[3,11371,21], +[2,15623,1524], +"react-su", +"blime-video", +[2,15625,15626], +[0,1544,21847,2541,2756,3357,3445,23009,4150,4151,4431,4438,2282], +"scrollama", +"values.js", +[0,2899,4342], +"vfile-message", +"-warnings-plugin", +[2,7131,15633], +[2,4670,15634], +[0,18444,22313,1544,3000], +[3,1456,9], +[1,2349,15639], +[0,15640,15641,15646,2531], +[0,2188,2476,4597,22990], +[0,1166,17279,22706,2323,3477,23017,22778,1906], +"anymatch", +"braces", +"is-b", +"@paulmillr/jsbt", +[0,18444,2056,12666,1137,15215,1536,2090], +[1,2349,15649], +"readdirp", +[0,15650,15651,15652,34552], +[0,22058,1149,4597,4431,3181,4545,22057,22054], +[0,2323,2899,1177,4039,22064,23026,2381,3159,4599,2425,23025,22066,22068,22062], +[0,18444,22057,22074,22075], +[1,2349,15654], +[0,15655,15657,15660,2457], +[0,1792], +"ci", +[0,1166,3477,4481,1906], +"continuous", +[2,15674,15682], +[0,1896,4990,15008,16518,23034,4202,1871,1398], +[1,2349,15662], +[0,15683,15688,15708,2540], +[3,6217,21], +[2,15663,4779], +[3,169,22], +"ntion", +[2,15665,15666], +[3,169,21], +"inimap", +[2,15668,15669], +[3,116,24], +[2,15671,14745], +[3,164,21], +[3,5276,15], +"anguage", +[2,15673,15675], +[3,157,21], +[2,15677,5204], +[3,148,22], +"de-block", +[2,15679,15680], +"imple-access", +[0,23040,23041,23043,23045,3984,23051,23054,3988,10630,11380,23059,23065,23070,23075,23078,23080,23082,23085,23092,23096,23098,23103,23110,23113,23118,23121,23123,13240,23126,23128,23133,23136,23139,23141,23143,15043,4351,23145,23149], +"tml-embed", +[2,15677,15684], +"ge-break", +[2,172,15686], +[0,811,8850,816,10615,1703,23155,4042,4255,4389,4400], +"heme-lark", +[2,178,15689], +"ord-count", +[2,6197,15691], +[2,15698,15725,186], +"how-blocks", +[2,15663,15694], +[3,15685,25], +[2,15696,4231], +[3,10883,21], +"arkdown-gfm", +[2,15668,15699], +[3,175,22], +"move-format", +[2,15701,15702], +"ource-", +[2,15704,6110], +[2,15663,15705], +"oriz", +[0,1783,1745,1739,9591,13729,4354,23158,9654,671,19269,2554,3984,4549], +[1,2349,15727], +"ontal-line", +[2,15707,15710], +[2,15677,15711], +[3,6164,21], +[2,15713,12426], +"multi-root", +[2,6157,15715], +"strict", +"ed-editing", +[2,15717,15718], +[2,15701,15719], +"peci", +"al-characters", +[2,15721,15722], +[2,15663,15723], +"plugin-u", +"nano-jsx", +[0,0,15729,15730,2402], +"solid-js", +[0,23163,23164,2228,18555,2253,2256,2273,23165,2281,2283,2293,23167,23169], +[0,4453,7597], +[1,2349,15732], +[0,15733,15734,15735,4194], +[0,3183,23175,4227,4720,4535], +[0,8648,1168,1195,1282,1317,1429,23177,1540,1719,1787,16256,16257,1177,1895,1924,1926,2151,2228,13831,2240,2247,2253,2256,2258,23178,2281,2283,2314,17568,2675,16021,2990,2899,3211,3257,3421,1894,4135,4193,91,4545,2924,4681], +[0,2036,3257,1283,1936], +[1,2349,15737], +[0,15738,15739,6075,2531], +[0,2812,23184,1366,6714,2607,8340,17693,23185,8336,8316,23187,23188,8338,23189,23190,8349,23192,23193], +[0,620,1501,2710,8363,23196,2036], +[1,2349,15741], +[0,15746,15748,15749,34552], +"@chrisblossom/eslint-config", +[3,14731,11], +"-pkg-up", +[2,15743,15744], +[0,4874,15507,9241,18089,15502,4729], +"temp-sandbox", +[0,23203,23205,91,1984,9750], +[0,2832,965,1388,5317,11513,5122,4963,1936,7102,12616], +[1,2349,15751], +[0,0,8176,15752,2540], +[0,6914,4354,13735,6793,2100,7210,200,6876,6478,3729,1138,7058,7233,10446,7128,3183,3460], +[1,2349,15754], +[0,0,15755,15756,2540], +[0,5517,13614,23237,26398,19325,1159,1593,9254,1177,23225,2708,3410,3421,4103,4389], +[0,7263,2568,7031,6951,6422,970,1593,6789], +[2,5933,1469], +[1,2349,15762], +"uncache", +"uncached", +"unrequire", +[0,0,15763,2523,34552], +[0,2272,2839,1209,4389], +[1,2349,15765], +[0,15766,15772,15777,2402], +[0,14038], +"opts", +"opt", +"parseopt", +"argsparse", +"optparse", +[0,5517,13614,23237,23239,23241,19325,1158,1159,1177,2011,2708,3206,3410,3421,4103,4389], +"complete", +"autocomplete", +[3,15774,11], +[2,15775,6600], +[0,6914,6959,6780,6889,6888,6914,3205,941,5284,5286], +[1,2349,15779], +[0,15780,15781,15782,4194], +[0,12396,9315,23247,23249,23250,23253,3140,3493,23254,4555,12449,23257,23258], +[0,4874,23262,1414,2581,2588,3137,1894,23264,3985,3998,4505,91,18002,1906], +[0,23267,2587,1936,23266,6435,614,1644,3972], +[1,2349,15784], +[0,15785,15787,15789,2540], +[0,12396,23247,23254], +[2,1861,7253], +[0,4874,23262,23274,1414,1699,23276,2581,2588,2620,23279,1894,3985,3998,4505,91,18002,4555,1906], +"timers-ext", +[0,4050,23267,2587,1936,6953,2574,6435,614,23266,4741], +[1,2349,15791], +[0,15806,15807,15808,2488], +"medikoo", +[2,1884,15792], +"list-", +"updated", +"list-updated", +[2,10617,15796], +[3,2289,14], +"-cc-changelog", +[2,4024,15799], +[2,15798,15800], +"prettier-e", +"lastic", +[2,15802,15803], +"tad", +[0,12396,9315,23286,23288,13839,23289,23291,9396,2584,23292,16870,3746,4233,4555,23258], +[0,4874,1414,2588,1894,3985,3998,4505,91,18002,1906], +[0,1623,23267,2587,1936,3529,6421,3766,23296,3585,1631,23266,6435,614], +[1,2349,15810], +[0,15811,15812,15816,2531], +[0,1006,19877,12396,23288,23289,23302,23308,23292,23310,23312,23314,3746,4233,4309,23254,23258], +[0,4874,15128,1414,23316,12412,2007,2588,3137,12127,3140,12133,1894,3985,3998,4505,91,4555,1906], +"toggle", +"show", +"hide", +[0,1444,5286,6742,23267,2587,1936,5284,1219,9102,3958,353,23266,6435,614], +[1,2349,15818], +[0,15819,15820,15821,34552], +[0,12396,9315,23322,23288,23292,23253,3140,3746,4233,4292,23258], +[0,4874,1414,2588,1894,3985,3998,4505,91,1906], +[0,23267,2587,1936,4141,1646,23324,23266,6435,614], +"varlock", +[1,2349,15824], +[0,15825,15827,15828,2540], +[0,1006,12396,9315,23288,23289,23308,23292,23310,23312,23314,3746,4233,4309,23254,15632], +"string-length", +[0,4874,4880,4883,1414,668,12415,2588,1894,89,3824,3985,3998,23330,4505,91,1906], +[0,23267,2587,1936,3698,89,23332,3709,23266,6435,614,188], +[1,2349,15830], +[0,15831,0,15832,2540], +[0,12396], +[0,1563,2587,23267,1936,4141,1871,1646,2585,23266,614,6435], +"expresso", +[1,2349,15835], +[0,15836,15820,15837,2540], +[0,12396,9315,12421,23344], +[0,23266,2587,23267,614,6435,1936,1871,1563,2585,9547], +"fast-text-table", +[1,2349,15845], +"256-colors", +[2,1105,15840], +"git-re", +"git-rev", +"growl", +[0,15848,15849,15850,2540], +"tables", +"tabular", +[0,12396,23288,23352,3746,4233], +[0,4874,15128,1414,23316,23356,12412,1894,3985,3998,23359,4481,4505,91,1906], +[0,965,14839,23267,2587,1936,23362,3958,23266,6435,614,23361,4607], +[1,2349,15852], +[0,15855,15856,2523,4194], +[2,8737,4522], +[2,2968,14994], +[0,4647,2036], +[0,3421,2899,1177,4039,4342,1948], +[1,2349,15858], +[0,0,15859,15860,2531], +[0,15990,2228,2240,2314,14352,2759,2835,1209,14529,3774,3954,23375,4019,23376], +[0,1871,18089,18944,1936,10368,15103,3656], +[1,2349,15863], +"truncate", +[0,15865,15866,2523,2540], +"ellipsis", +[0,3263], +[0,4167,4384], +[1,2349,15868], +[0,0,0,15870,2540], +"cardinal", +[0,2026,1965,11988,5995,23389,23391,23397,23400,23404,23407,23410,23411,23412,23413,23414,23415,23416,23417], +"hyperlinker", +[2,689,13008], +[2,2055,2873], +"object-t", +"reeify", +[2,15874,15875], +[2,689,7152], +"natural-", +"orderby", +[2,15878,15879], +[1,2349,15885], +"-prompt", +[2,6875,15882], +[3,4351,9], +[0,0,15888,2523,2488], +"hyperlinks", +[2,15884,15886], +[0,4361,4039,1894,1420,11518,53,23423,5874], +[3,6519,10], +"ip-ansi", +[2,15889,15890], +"nsi-styles", +[2,9165,15892], +[3,9359,12], +[1,2349,15898], +"ct-stack", +[2,15894,15896], +[0,0,15899,2523,2457], +[0,94,87,14128,14041,1175,48,53,1178,1193,1745,1177,1935,1938,1939,1192,2774], +[1,2349,15901], +[0,15902,15912,15913,2531], +[0,23432,1362,27433,15838,23434,23436,23438,23439,23440,23441,2822,23444,3170,19445,3220,3222,3416,3527,15245,4294,4435,23445,23446], +"@yarnpkg/core", +"@yarnpkg/", +"fslib", +[2,15904,15905], +[3,1920,15], +"rca", +[2,15907,15908], +"multi-input", +[2,4049,15910], +[0,23450,13414,4856,8780,7637,8778,6503,4874,21623,6513,23448,1414,1429,1448,6323,1177,23453,23456,2675,2990,2899,4193,4474,91], +[0,5351,5353,6354,5130,2596], +[1,2349,15915], +[0,15916,15919,2523,4194], +[0,23462], +"good-listener", +"tiny-emitter", +[0,1362,1389,1391,1537,1177,2228,2236,2239,2277,2281,2283,2291,23466,2307,2036,2276,4085,23469,4171,4193,16584,23471,4535], +[1,2349,15922], +"cut", +[0,0,15923,15924,2540], +[0,1623,1700,2070,19745,2832,2899,1177,1209,4042,4170,4072,1462,1481,1525,2036,91,2665,23482,6503,18059,23483,13388,23476,23479,1954,8850,23480,1938,1958,1903,811,1011,816,1009], +[0,5342,5341], +[1,2349,15927], +"is64bit", +[0,15934,0,2523,2540], +"paste", +"copy-paste", +"pasteboard", +"pbcopy", +"xclip", +"xsel", +[0,3263,1326], +[1,2349,15936], +[0,6265,0,15937,2531], +[0,2602,7426], +[1,2349,15939], +[0,0,15940,15941,2540], +[0,1501,620], +[0,6731], +[1,2349,15943], +[0,15944,15945,15946,34552], +[0,3368,3188], +[0,4535,2832,23509,4039], +[0,3257,1283], +[1,2349,15948], +[0,15949,15950,10578,2402], +[0,3847], +[0,53,61,87,90,94,1429,1596,1603,1177,2899,3421,3697,3744,89,4039,4042,4045,4055,4067,4073], +[2,976,2942], +[1,2349,15954], +[2,9753,6072], +[0,15957,15958,2523,4194], +"progress bar", +"@exodus/bytes", +[0,1437,4135,2151,1525,23520,3762,4232], +[0,1192,1177,4039,3363,4468,4474,4508,91,5087,4874,5245,5254,4864,1939,1938,13418,1011,23523,1009], +[1,2349,15961], +[2,11941,5258], +[0,0,15963,15965,34552], +"coro", +[0,23528,23531,4865,13204,4874,29891,7677,1138,14736,30932,668,1177,2070,2832,3244,3377,30794,20085,1894,23535,91,4548,23538,1984,23539,4729,4763], +"coroutine", +[0,2611,5122,1896,27,13527,5130,38,23542,23543,23544,23545,21444,17218,13573,6710], +[1,2349,15967], +[0,15968,6555,15969,34552], +[0,3084], +[0,3358,2195,17977,17978], +[1,2349,15971], +[0,15972,13647,15973,34552], +[0,1537,3188,4039,4135,4562,4707,23559], +[0,23561,23562,23563,23564,3378], +[1,2349,15975], +[0,15976,15977,15978,34552], +[0,15487,2654], +[0,192,5467,19438,442,8862,811,816,10615,10817,23572,11085,23573,4874,17214,32818,7677,1177,1955,10964,1978,2203,2633,2675,17221,2832,2990,3401,3541,1894,23535,4042,4201,4474,91,4523,1984], +[0,2616,1936,965,57,2654,23578], +[1,2349,15981], +"ignore-walk", +[0,0,15982,15983,2488], +[0,4874,1414,23276,2577,2584,1894,3985,3998,4505,91,4548,1906], +[0,23584,11512,1936,1213,3205,10381,12616,7102], +"teeny-request", +"urlgrey", +[1,2349,15987], +[0,15989,15991,15992,2540], +[2,10988,4504], +[0,15956], +"codecov.io", +[0,23591,1177,2203], +[0,9254,1936], +[1,2349,15994], +[0,0,15995,16007,2531], +[0,192,5467,5366,23597,5087,4874,1317,18089,1177,1895,1938,23598,2591,2675,1894,4257,4468,4483,4494,91,4523], +"mirror/lint", +[2,13183,15996], +[3,15997,12], +[2,15998,6624], +[2,15998,6649], +[3,16000,13], +[2,16001,10190], +[2,15998,8891], +[3,15997,13], +[2,16004,15675], +[2,15998,15774], +[0,1936,23601,23603,23605,18089,23606,23608], +"buildhelper", +[2,15998,16008], +[1,2349,16011], +[0,0,16012,16013,2457], +[0,23613,1414,1596,4042,4533], +[0,1936,1867,10368,23615,15103,18089], +[1,2349,16016], +[2,10697,1592], +[0,16017,16018,16019,34552], +[0,3493,2635], +[0,1700,1192,2675,3144,1622,1177,1701,2924,1854,3692,1894,1610,48,1193,2036,53,2990,3400,23621,192,4257,23623,87,2651,1938,1895,5467,16405], +[0,2924,1936,1194], +[1,2349,16023], +"jison", +[2,5249,23751], +[0,16024,16025,16026,2531], +[0,15320,1462,1525,2591,15436,23631,4535], +[0,2228,2236,2281,2291,3524,2907], +[0,200,15215,23634,1623,1936,2265,5284,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,23637,2280], +[1,2349,16028], +[0,16029,16030,16031,2540], +[0,15320,1462,1525,18089,15436,23631,4072], +[0,192,11893,811,8850,816,10615,23643,23648,1177,1903,2675,2742,1192,2780,2990,4042,23652,1983], +[0,200,15215,23634,1623,1936,2265,5284,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,4072,23637,2280], +[1,2349,16033], +[0,16034,16035,16036,2488], +[0,3524], +[0,4389,4255,4387,3524], +[0,1936,2636,3520,3521,6710], +[1,2349,16038], +[0,16039,16040,16042,2540], +[0,15487,2616,3872,4309], +[0,192,5467,19438,19181,442,811,816,10615,10817,23572,5366,4874,4880,4883,17214,32818,7677,1317,1177,1955,10964,1978,2203,2675,2990,3541,3698,23535,89,3824,4042,4201,4474,91,4523,1984], +"wcwidth", +[0,2639,1936,89,57,965], +[1,2349,16044], +[0,0,16045,16046,34552], +[0,1166,1448,1906], +[0,1936,12075,2640,11513,3392,7102,12616,23670,23674], +[1,2349,16048], +[0,0,16049,16050,2402], +[0,2675,2742,2297,4484,1177,4039,4042,1894,1596,3536,91,3400,2766,3720,2898,23689,2886,23687,19965,13207,2923,23681,23683,2881,23679,6059,23686], +[0,12197,23691,1424,1936,965,158,13814,8221], +[1,2349,16052], +[0,16054,0,16055,34552], +"array-back", +[0,23696,1699,1754,2654,23699], +[0,1936,202,2585,18641,19096,15253], +"find-replace", +"typical", +[1,2349,16059], +[0,16060,0,16061,2531], +[0,23708,23709,1091,2070,2929,3183,3742,4135], +[0,1936,671,1155,2650], +[1,2349,16063], +[0,16067,16068,16069,2488], +[2,1437,2324], +"table-", +"table-layout", +[0,23736,2635,1209,3716,4388], +[0,192,5467,4874,1610,1622,1628,1652,21468,1177,17589,2629,2675,1192,2990,3177,3400,1894,3754,23738,3786,4039,4257,4307,91,2924,4677,23742], +[0,2924,1932,1936,2651], +[1,2349,16071], +[0,16072,16073,16074,2540], +[0,16022,1525,1595,3692], +[0,442,19344,23339,6503,4874,34737,1414,1637,1177,23753,1938,32525,27790,2022,2203,2899,3561,3759,23631,4039,23754,4361,4072,91,4523,22946], +[0,3692,23757,1936,23760,2632], +[1,2349,16076], +[0,16084,16086,16093,34552], +"cached", +"cachedir", +"find-n", +"ode-", +"ode-modules", +[2,16079,16081], +"is-u", +[0,15488,18089,15487,18087], +"is-utf8", +[0,4483,1177,1984,2203,1894,442,91,4874,1953,4523,7677,1982,1895], +[3,549,23], +[2,16087,1172], +[2,12772,8532], +[2,1652,16089], +"-reporters", +[2,11086,16091], +[0,1936,57,7046,6523,965,23767,6084,16179], +[3,1566,12], +" changelog", +[2,16094,16095], +[1,2349,16098], +[0,16099,16100,16101,2776], +[0,1704,2713,20099,4266,23775], +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421], +[0,27,1851], +[1,2349,16103], +[0,16104,16105,2523,2402], +[0,2017,23783,2131], +[0,4729,3421,23785,1149,2899,4135,2025,4218,1537,1159,4220], +[1,2349,16118], +"es2015-tag", +"es6-tag", +"heredoc", +"indents", +"literal", +"multiline", +"oneline", +"single", +"singleline", +"strings", +"tagged", +[0,16119,16120,16121,34552], +[0,23791,1676], +[0,5245,5087,4874,1151,1192,4468,91,2658,2190], +[0,27,2658,6652,4575], +[1,2349,16124], +"observe", +[0,16125,16126,16127,2540], +[0,10406,1676,2659,2743,2747,3170], +[0,192,5467,442,5245,5601,6494,19386,5087,8778,4874,9240,9241,1364,1177,1895,1955,2026,2182,2203,2675,1192,2990,23800,3445,5561,20085,1894,4342,4468,91,4523,4729], +[0,17179,2658,2663,27,2671,1544,2026,2078,23802,23803,1387,2323,2256,4699,4729,1594], +"on-headers", +[1,2349,16131], +"compressible", +[0,16132,16133,16134,2540], +[0,2591,3171,1437,23808,23809,3456,3183,4566,1304,2659,3560,23811,2623], +[0,23813,4384,1177,2026,705,23816], +[0,200,1523,2947,27,2671,2665,23818,36], +[1,2349,16137], +"buffer-from", +[0,0,16138,16139,2540], +[0,4493,2675,2899,1177,4170,4474,1894,442,1529,91,4874,2990,19193,6503,16954,192,4257,19335,4523,1951,1895,1955,5467], +[0,27,1544,4967,6622,2026], +[1,2349,16143], +"-command", +[2,1614,16141], +[0,0,16147,16153,4194], +"@hirez_io/observer-spy", +"@swc/jest", +[3,7749,12], +[0,4864,5087,23829,1009,1011,1177,1883,1938,2151,1192,3117,4468,4473,4474,91], +"-quote", +[2,16146,16148], +[2,1596,4845], +"ctrlc-wrapper", +[2,32524,2994], +[0,202,27,18413,23831,23832,6622,5281], +"instance", +[1,2349,16156], +[0,0,0,16157,2540], +[0,2671,23837], +[1,2349,16161], +"bash", +"sh", +[0,16162,16163,16164,2540], +[0,1676,23791], +[0,1192,2658,4468,2190,91,5087,4874,1154,5245,1151,23843], +[0,2671,2658,6652,4575], +[1,2349,16169], +"cson", +"hjson", +"x2js", +[0,0,0,16170,2402], +[0,3358,582,3697], +"fig", +"node-config", +[1,2349,16175], +"config-node", +[0,16176,9270,16177,2457], +[0,16136,15019,4431], +[0,3101,27,4714,705,3038,3689,10074,6865,6704,21360], +[1,2349,16180], +"atom", +[0,0,16182,16183,34552], +"atomically", +[0,6061,21120,6063,1570,1177,1895,23860,1894,4042,4131,4389], +[0,23862,590,1623,1420], +"xdg-basedir", +[1,2349,16187], +"prefer", +[0,0,10445,16190,34552], +"preferences", +"persist", +[0,23868,23869,23870,4545,23872,23874,23875,23876,3547,23877,23878,23879,23881,23883], +[1,2349,16192], +[0,16193,16194,16195,2540], +[0,23888,1676,23891,23894,23897,3257], +[0,1149,1575,1177,1895,1903,1938,1954,1955,1958,1970,2026,2675,2990,2899,3421,1894,4170,4193,4745,4342], +[0,1283,2679,6728], +"rack", +[1,2349,16198], +[0,6265,16199,16200,34552], +[0,27386,53,5749,5241,83,85,87,90,94,5583,811,816,10615,4874,1009,1011,7677,1290,1596,1597,1177,1881,1895,1915,1938,23909,2675,23913,23915,23917,23921,23926,2990,1894,4039,4042,4193,91,1984], +[0,2681,23932,2679,8930,23933,6728,23934,23936], +[1,2349,16203], +"flash", +[0,0,16204,16205,2540], +[0,442,10817,6061,6063,1009,1011,1177,1895,1955,2203,1894,4042,4057,4131,91], +[0,2681,23942,5995,1932], +[1,2349,16207], +[0,16208,16209,16210,2540], +[0,23948], +[0,3421,1149,23950,8431,2899,23952,1177,4135,705,27387,91,4874,2024,29197,5517,19344,7844], +[0,8431,6270,8426,8425], +"kruptein", +[1,2349,16213], +[0,16214,16215,16216,34552], +[0,23960], +[0,1175,1193,1267,1272,1596,1177,1881,1938,2774], +[0,2658,23964,13445,1192,3212], +[1,2349,16218], +[0,0,16219,16220,2540], +[0,48,53,87,1009,1676,1177,23971,1938,3188,23974,4039,23975,4384,4449,4474,91], +[0,2687,23977,16774,3410,3624,10057,7131,6961,1108,21541,2070,23980,23982], +[1,2349,16222], +[0,0,16223,16224,34552], +[0,1414,2070,4493,4474,4508,91,4865,4874,11976], +[0,158,4202,23989,23992,4289,18081,12350,20650,20733,20639,20709,23993,20651,20680,21881,20752,18048,20653,8221,23994,23995,12349], +[1,2349,16226], +[0,16227,16228,16229,2531], +[0,24003,18525,4207,2205,24004,2096,6639,29721,20624,22246], +[0,1906,1166,1700,4400,18051,24006,18047], +[0,3178,15215,158,11806,21881,20637,18048,20639,8221], +"defu", +"nicode-supported", +[2,16083,16231], +"sentence", +"sentencer", +"sisteransi", +[1,2349,16241], +"reporter", +"elegant", +"clack", +"stacktrace", +[0,16242,16243,16244,34552], +[0,24003,2020,24012,6639,24013,20624], +[0,1414,1906,1166,91,4874], +[0,15215,158,24016,3178,6707,18048,24017], +"arc-templates", +"brac", +"ket-template", +[2,16246,16247], +"dust", +"js-helpers", +[2,16249,16250], +"dustjs-", +[1,2349,16254], +[0,16258,0,16266,2402], +"linkedin", +[2,16252,16255], +"eco", +[0,24022,3923], +"haml-coffee", +"hamlet", +"htmling", +"jazz", +"jqtpl", +"just", +"liquid-node", +[0,2695,18641,1823,24024,5576], +"liquor", +"mote", +"plates", +"qejs", +"ractive", +"slm", +[2,4371,2229], +"teacup", +"tinyliquid", +"toffee", +"twig", +"twing", +"vash", +"velocityjs", +"walrus", +"whiskers", +[1,2349,16285], +"engine", +[0,0,16286,16287,2488], +[0,53,4874,7677,1596,24029,24030,2126,2675,2700,24032,1209,3028,1894,3720,3875,4039,24033,4131,4493,33863,91,1983,1984], +[0,2700,24036,24038], +[1,2349,16289], +[0,0,16291,16292,4194], +"rfc6266", +[0,24045,5087,1596,1192,4039,4468,4487,91], +[0,24047], +[1,2349,16294], +[0,0,0,16295,2540], +[0,2700,7007,7189,2382,6957,6564,6910,7282,6769,6917], +"rfc7231", +[1,2349,16298], +[0,9684,16299,16300,2531], +[0,1166,2592,4481,1906], +[0,3209,2325,15759,15760,1237,2145,24057], +[1,2349,16302], +[0,16303,16304,16305,34552], +[0,3537,13780], +[0,1166,16499,1700,2020,1906], +[0,1204,2703,3209,814,2202,15525,16186,200], +[3,1567,23], +[2,16306,1098], +[3,1570,25], +"@conventional-changelog/git-client", +[2,16308,23], +[2,16306,1177], +[1,2349,16313], +[0,16314,16315,16317,2531], +[0,24069,24073,24075,24077,24078,24080,24081], +[0,4874,9241,1177,24085,1894,91], +"tom", +[0,13527,36,24088,24089,1965,20986,24090,5592,17829,24091,11100,24092,4030,7096,5122,5130,38,7433,24093,7223,6599,27,2671,4699,14609,24095,1896,5995,12660], +[1,2349,16319], +[0,0,8176,16320,2402], +[0,8958,1871,2966,14903,3924,2585,1794,7067], +[2,10832,1194], +[2,16306,16321], +[2,4402,4202], +[1,2349,16325], +[0,16326,16327,16328,4194], +[0,23184,1366,23187,2607,2812,3084], +[0,1501,2556,620], +[0,2090,7204,1852,2556,1932], +"add-stream", +"tempfile", +[1,2349,16332], +[0,16333,16334,16335,34552], +[0,1639,24114,6330], +[0,24118,24117], +[0,2711,6681,5130,10772,24120,1936,24122,36,965,1388,4042,23361], +[1,2349,16338], +"compare-func", +[0,0,16339,16343,2540], +[0,91,1984], +"commits.org", +[2,16094,16340], +"preset", +[0,2712,24128,24129,3547,23877,23870,4545,24130,10915,23872,23878,23874,23879,23881,23883,23875], +[1,2349,16345], +[0,0,11693,16346,2402], +[0,24136,1227,24137,24138,24140,2713,1388,1389], +"inline-s", +[3,5588,9], +[2,16347,16348], +[1,2349,16351], +[0,0,6555,2523,34552], +[1,2349,16353], +[0,16354,16355,16357,34552], +[0,24151,1107,1110,24152,1437,1471,1477,1486,13763,16485,2709,20044,24153,14676,4116,4174,4208,13781,4290,16323,4507,9731,4726,4729,24154], +[0,15288,13789,826,24156,4874,4880,24157,34148,24162,6513,24164,9241,24165,1166,1371,1702,24166,1959,1961,3242,3339,3479,1894,89,24169,33037,3884,4193,4294,4494,91,1906], +"top-sites", +[0,89,200,1219,8634,4963,6876,3698,3875,24171,8924,1512,2585], +"cookies", +[1,2349,16360], +[0,0,16361,16362,2457], +[0,192,5467,19438,19181,442,811,816,10615,1623,1177,1955,10964,2203,2675,1192,2990,3400,1894,23535,4042], +[0,2718,24177,590,57,1623], +[1,2349,16364], +[0,0,0,16365,34552], +[0,24182,24183,18496,6574,7242,21779,202,200], +[1,2349,16367], +[0,16368,16369,6153,2540], +[0,31874,546,8998,8605,8612,24188,4094], +[0,8608,91], +[1,2349,16371], +[0,16372,16373,16374,2457], +[0,1107,2089,3527,24188,4094], +[0,2126,2163,2720], +[0,8618,8619,8620,1299,200,1523,6876,1836,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,2184,8634,7009,6621,181,8635,4758,8636], +"sign", +"unsign", +[1,2349,16378], +[0,16379,0,16380,4194], +[0,24202,1512], +[0,24204,202,9143,13392], +"-selection", +[2,15813,16381], +[1,2349,16386], +"@brettz9/node-static", +"-standa", +[0,0,16390,16391,34552], +"lone-jar", +[2,16385,16387], +[2,13131,16388], +[0,1734,2899,24209,4072], +[0,5260,3209,10906,24211,1388,24213,1808,1161], +[1,2349,16393], +[0,0,16394,16395,4194], +[0,1177,1889,1954,2022,2822,2899,3421,20314,3932,3985,24220,4167], +[0,1507,24223,1509,3595,5194,676,1781,2856,1219,89,24224,4452,4799,91,6523,4745,17307], +[2,4865,2199], +"rmalize-path", +[2,10409,16397], +"rialize-javascript", +[2,5252,16399], +"@webpack-c", +"ontr", +"ib/eslint-config-webpack", +[2,16402,16403], +[2,16401,16404], +[1,2349,16408], +"is-gzip", +[0,0,16409,16411,4194], +[0,1149,1173,1178,1240,24231,24234,1245,1257,1267,24235,1280,24237,24241,24245,24247,24249,24251,24254,24257,24259,24262,24264,24266,24269,24272,1474,1498,1177,24273,2099,2070,2228,2240,2247,2258,24274,24275,2272,3188,3435,4039,4042,4045,4055,24278,13674,4069,4077,22031,4151,4652], +"transfer", +[0,2728,2679,23932,24282,6422], +[1,2349,16413], +[0,0,16414,16416,2540], +[0,19,21,24,26,32,5241,92,8648,840,968,974,4874,4880,4883,1009,1011,11016,33975,1198,1622,668,1177,1915,1938,1939,1959,1961,2075,24289,10697,24291,2228,2239,2240,2247,2256,2263,2283,24295,2308,2314,2665,1192,2780,2814,3003,3541,1894,10622,89,3824,2278,4164,3709,4436,4474,91,1983,26744,188,13151,4769], +"noms", +[0,24298,24299,24302,7285,7310,5131,6847,7210,5399,5284,1932,1623,1936,7020,6983,89,188,1098,3709,4627,91], +[1,2349,16418], +[0,16419,16420,16422,2531], +[0,3082], +[0,1389,2126,4384], +"qr", +[0,1973,2731], +"simple qr", +"npm qr JavaScript", +"js qr code", +[1,2349,16427], +[0,16428,16429,16433,34552], +[0,23711,16579,16585], +[0,4484,1177,4039,4042,1984,1894,4469,91,4874,3951,7677], +[3,1590,15], +"sample", +[2,16430,16431], +[0,14428,24316,14416,24319,24320,5284,202,91], +[1,2349,16436], +[2,16423,1501], +[0,16437,16438,16439,2531], +[0,4390,1687,24346,3445,3348,1437,1676,4484,1209,4135,4238,6331,4431,24347,4339,24345,24332,24337,22651,24349,24335,24340,24327,24338,24339,24344,24343,24329], +[0,1192,4039,4487,4468,2774,13214,4227,91,17577,5087,4874,24354,7819,2990,5245,4870,5254,24358,24356,18435,24360,24352], +[0,2733,24362,24363,5131,1896,24364,1591,970,3525], +[1,2349,16441], +[0,16451,16455,16456,2531], +"insight", +"-lib", +"cordova-lib", +"cordova-", +[2,16445,10896], +"cordova-c", +"reate", +[2,16447,16448], +"loud-rejection", +[0,8641], +"@cor", +"dova/eslint-config", +[2,16452,16453], +[0,8648,4864,5087,4874,24370,2151,1192,2774,27442,3401,1894,3758,4039,4135,4146,4361,4494,91], +[0,24373,2733,1017,8221,5131,20523,4627,24374,5027,12295], +[1,2349,16458], +[0,16459,16463,16464,2540], +[0,24379,24382,1676,24383,3032,24386,24389,24391,24393], +"4", +"ES2024", +[2,6796,16460], +[0,24397,6061,16607,6063,4856,9417,5245,24398,24400,6503,4874,24403,6513,1009,1011,1429,1431,1177,1895,2899,3421,1894,4131,4153,4193,4474,4481,4508,91,3348], +[0,1552,24093,24406,24408], +[1,2349,16466], +[0,0,16467,2523,4194], +[0,2899,1177], +[1,2349,16469], +[0,16470,16471,2523,2531], +[0,24416,8431,24419], +[0,24421,2080,2292,4389], +[1,2349,16475], +"env-paths", +"parse-json", +[0,0,16486,16487,2540], +"arse-", +"arse-json", +[2,5088,16477], +[3,7677,17], +[2,16479,2759], +"davidtheclark-node", +[2,1884,16481], +[3,16481,13], +[2,3996,16483], +"es-toolkit", +[0,1158,3421,4389,1177,14741,2708,4103,13614,15059], +[0,614,998,1973], +[1,2349,16489], +[0,16490,16493,9645,2488], +[0,1458], +"lcov-parse", +"log-driver", +[0,1470,4255], +[1,2349,16495], +[0,16496,16497,16498,2540], +[0,24437], +[0,2398,2899], +[0,16159,15643,4354,2978,7256,24440,2070,21543,24441,2741,3529,6421,13017,1108,6920,1871,1973], +"cpy", +[1,2349,16501], +[0,16505,16506,16507,2457], +"cp", +[3,12419,11], +"contents", +[0,24446,17450], +[0,1166,16499,1700,2020,3093,4481,1906], +[0,2202,3383,24449,1237,1161,24450,3378,4749,2741,4354,13735,2703,24451,200,20052,17180], +[1,2349,16510], +"hpagent", +[0,0,8176,16514,34552], +"http2-wrapper", +"seenreq", +"tslog", +[0,3048,2741,4354,1973,998,19096,24456,7523,2869], +"@types/got", +[1,2349,16519], +"spider", +"gzip", +[0,0,16520,16521,2488], +[0,1429,1999,2398,2899,3198,4042], +[0,4354,2741,24462,2757,5284,24463,20273,3048,19096,998,7031,6692], +[1,2349,16525], +"crc16ccitt", +"crc16", +[0,0,16527,16529,34552], +"crc16kermit", +[0,2899,3954], +"crc16modbus", +[0,1936,24374,24470,11608], +"crc16xmodem", +"crc1", +"crc24", +"crc81wire", +"crc8", +[1,2349,16538], +"crc8dvbs2", +"crcjam", +[0,0,16539,16540,2531], +[0,4874,1166,4400,4481,1906], +[0,3101,998,7046,7089,7017,6704,353,4354,13735,2741], +[1,2349,16545], +"cipher-base", +"ripemd160", +"sha.js", +[0,16546,16547,16548,2531], +[0,24488], +[0,1166,24491,4481,1906], +[0,4354,24493,6574,24494,6667,13735,16159,3729,7201,7009,2741], +[1,2349,16550], +[0,0,9270,16551,2457], +[0,1388,2756,4552], +[1,2349,16553], +[0,0,16554,16555,2457], +[0,1999,2398,2899,4042], +[0,4354,2741,24462,2757,24463,20273,24504,970,3048,998,7031,6692], +[1,2349,16567], +"async-t", +"-tree", +"raverse-tree", +[2,16557,16559], +"css-u", +"rl-parser", +[2,16561,16562], +"uri-to-", +[2,16564,1398], +[2,14678,16565], +[0,16577,16582,2523,2531], +"group-args", +"inline-", +[2,16569,1604], +"oust", +"penthouse", +[3,3591,15], +[3,3611,14], +"inliner", +[2,16574,16575], +[0,3310,4705], +"postcss-url", +"@inversifyjs/common", +"newline", +[2,3370,16580], +[0,1429,2272,24512,2899,3297], +[1,2349,16586], +"stream-array", +[2,23712,29231], +[0,16588,16589,16590,2540], +"optimization", +[0,2070,3368,3441,1149,4707,23432,3188,2003,2822,814,4720,1875,2036,4351], +[0,2272,4039,2276,1596,4019], +[0,4504,24520,24521,24525], +[1,2349,16592], +[0,16594,11587,16613,2540], +"@fast", +[0,2152,3348,18545], +"-check/jest", +[2,16593,16595], +"@insurgent/commitlint-config", +[3,16597,13], +"nvent", +"ional-changelog-preset", +[2,16599,16600], +[2,16598,16601], +[3,6061,19], +"ommit", +"-analyzer", +[2,16604,16605], +[2,16603,16606], +[2,6062,3378], +"-generator", +[2,11155,16609], +[2,6019,16610], +[2,6062,16611], +[0,2760], +[1,2349,16616], +"node cron", +[0,16620,16622,16623,2531], +"node-cron", +"schedule", +"cronjob", +[0,1156,1699,1817,24536,3070,3559,4443,24537], +"cron job", +[0,24539,1173,1175,1191,1195,1201,1220,1230,24541,1245,1255,18571,1264,1279,1282,1429,24542,1584,1610,1628,1177,1988,2054,2092,2148,2323,2332,2361,2450,2494,2629,2651,2297,2881,2886,2900,18260,2921,2923,2925,695,2969,21082,2899,4193,4196,4307,4487,91,4537,4027,188,4632,24545,4634,4639,4640,4645,2924,4681,4689], +[0,2761,188,6284,4627,4963,181,5130], +[1,2349,16625], +[0,16627,6163,16628,2540], +"tz", +[0,548], +[0,7233,57,7058,5675,7210,200,1523,3924,1644,7119], +"timer", +"tab", +"crontab", +[1,2349,16633], +[0,16634,16635,2523,2540], +[0,24560,1462,1525,24562,24563,3188,24564,4535,24566,5056], +[0,24570,24571,1596,2026,24574,2034,24576,24577,24581,24584,24587,24591,24592,24593,24594,24596,24598,24599,3127,3456,24600,4039,24601,24602], +"@prantlf/jsonlint", +"@prettier/plugin-xml", +"@stryker-mutator/core", +[3,16638,17], +[2,3192,8791], +[2,16639,16640], +[3,15909,16], +"ray-func", +[2,16642,16643], +[3,13097,17], +"unsanitized", +[2,16645,16646], +[1,2349,16651], +"metalint", +"yaml-lint", +[0,16652,16653,16654,2531], +[0,1149,24607,3527], +[0,442,1177,10751,2203,2899,3760], +[0,6147,200,7048,24610], +[1,2349,16659], +[2,1601,7179], +[3,3606,9], +[2,16657,2408], +[0,16665,16667,16668,2540], +"zoom", +"rotate", +"scale", +"cropper", +"cropper.js", +[0,24617], +[2,29236,594], +[0,5583,816,6373,10615,11301,24621,24624,1462,1610,24625,2675,2814,16830,2990,3170,24627,4042,8849,20983], +[0,24631,158,12083,24633,24634,20634], +[1,2349,16670], +[0,16671,16672,16677,34552], +[0,2070,2766,23576], +[0,1177,24287], +"ironment", +[2,1610,16673], +" variable", +[2,6639,16675], +[0,1973,5472,2765,6969,5982], +[1,2349,16679], +[0,0,16680,16677,2531], +[0,19181,442,1137,24645,1797,1177,1924,2070,2203,2832,1894,2278], +[1,2349,16682], +[0,16683,0,16684,2531], +[0,2164,3188,24653,4019,4545,1509,24652,24651], +[0,5472,5982], +[1,2349,16686], +[0,16689,0,6185,2540], +"path-key", +[2,6987,16141], +[0,551,554,2704,2774], +[3,10688,14], +"oxy", +[2,16690,16691], +[3,15793,15], +[2,16693,16691], +[1,2349,16698], +"spawnSync", +[2,1611,12344], +[0,16700,16702,16703,34552], +"path-ext", +[0,24665,24666], +"execute", +[0,14671,48,53,61,87,192,22559,1193,24668,1596,2675,1192,1894], +[0,3212,1192,11944,1795,1424,1973,2275], +[1,2349,16705], +[0,16706,16707,6185,34552], +[0,551,8762,554,1437,29680,2704,8734,2798,8747,4747], +[0,4892], +[1,2349,16714], +"cipher", +[2,13888,16709], +[3,1391,12], +"ign", +[2,16711,16712], +[0,16715,16717,2523,34552], +[0,16729,13002,1437,3717], +"create-ecdh", +[0,8776], +"mac", +"create-hmac", +"ie-hellman", +[2,1687,16720], +"pbkdf2", +"publi", +"c-encrypt", +[2,16723,16724], +"randomfill", +[1,2349,16730], +[2,6426,3779], +"@jest/diff-sequences", +[0,16731,16717,2523,34552], +[0,24690,16738,13204,4874,2832], +[1,2349,16752], +"Hash", +"MD5", +"SHA1", +"SHA-1", +"SHA256", +[2,24690,20072], +"SHA-256", +"RC4", +"Rabbit", +"AES", +"DES", +"PBKDF2", +"HMAC", +"OFB", +"CFB", +"CTR", +"CBC", +"Base64", +"Base64url", +[0,16753,16754,2523,2540], +[0,24690,24694,554,11944,2798,2832], +[0,5087,13204,4874,2675,1192,3188,1894,3720,4039,4468,91], +[1,2349,16756], +[0,16760,16761,2523,2488], +"roupon", +[2,1887,16757], +"nlm", +[0,24690,24694,554,4874,11944,2798,8747], +[0,8776,1497], +[1,2349,16763], +[0,16764,16776,16777,2531], +[0,2777], +"@cspell/cspell-json-reporter", +[3,16765,15], +[2,16766,7170], +[2,16766,553], +"@cspell/", +[2,16769,15126], +"@cspell/url", +[2,1622,4304], +"cspell-", +"gitignore", +[2,16773,16774], +[0,107,19438,19181,442,20076,5087,1009,1011,1177,1895,1915,1938,1939,1955,2203,2675,1192,24713,2802,2990,1894,4468,12206,91], +[0,1192,24715,2051,24717,1973,5472,5710], +"cspell-glob", +"cspell-io", +"cspell-lib", +[2,2068,2851], +"entry-cache", +[2,2093,16782], +[1,2349,16788], +"@types/fi", +[1,2349,16787], +[0,23540,23541,23581,34552], +[0,16795,16796,16797,2540], +"spell", +"checker", +"spelling", +" checker", +"spell checker", +[2,16791,16792], +[0,2151,3445], +[0,53,24723,841,968,972,974,24725,5087,24727,4874,24729,4880,4883,14552,1114,1193,1195,1216,1270,1324,1393,1420,1426,1582,1628,1630,1652,1759,1763,1869,1177,1898,24732,2054,2092,2151,2651,2686,1192,2797,2802,24733,3177,3376,3561,3605,3618,3647,3672,3742,24734,89,3803,3816,3824,3878,24737,814,4028,2278,4111,4135,4230,4307,4383,4409,91,4027,24739,2924,4676,4681,4686,4723], +[0,1192,1936,16237,11937,1932], +[1,2349,16800], +[2,4229,814], +[0,16801,16802,2523,2540], +[0,3188,4294,3348,6523], +[0,1192,24746,4207], +[1,2349,16809], +"@rspack/cli", +"@mdn/browser-compat-data", +[3,1200,15], +[2,16806,6437], +[2,812,16807], +[0,0,0,16810,2531], +[0,1192,4749,24753,24754], +"sorter", +[1,2349,16813], +[0,16814,16815,2523,34552], +[0,1437,2215,8750,2796,2798,8747,4207,12578], +[0,8780,1002], +[1,2349,16829], +"-verify", +[2,13729,16817], +[3,4828,15], +"itpick", +[2,16819,16820], +[3,15801,21], +"hangelog", +[2,16822,16823], +[2,8184,8166], +"version-", +[2,16826,13729], +"write-", +[0,16832,16833,2523,4194], +"json-file", +[2,16828,16830], +[0,554,4874,1437,1458,2215,3530], +[0,8780,20374,1209], +[1,2349,16835], +[0,16836,16844,2523,2531], +[0,1107,1437,8758,8741,4207,15826,4294], +"icss-utils", +[3,3638,16], +[2,2055,5651], +[2,16838,16839], +[2,16838,1993], +[2,16838,6693], +"@hapi/address", +[0,48,53,87,92,442,11893,554,6061,6063,4874,1193,17217,1610,1177,1895,1915,32525,1939,1955,2203,1192,24713,1894,4039,4131,4135,91,4523], +[1,2349,16846], +[0,16847,16848,2523,34552], +[0,4874,23247,2798,3159,4351], +[0,53,24781,9746,23262,2188,24779,24777], +[1,2349,16859], +"@parcel/css", +"@swc/css", +[3,9740,13], +[2,16852,1623], +"@types/csso", +"set-simple", +[2,11327,16855], +[2,1637,16856], +"csso", +[0,16861,16864,16865,2540], +"lightningcss", +[0,18635,24786,27788,27793,27795,27796,27797,27802,27813,27817,27820,27825,27832,27833,27834,27841,27844,27870,27878,27879,27880,27881,27883,27884,27887,24789,27888], +"minimize", +[3,1629,9], +[0,27890,27893,27895,24793,8862,811,15460,816,10615,17214,1177,27898,3502,4042,4057,15277,23652,4483,91,27900,1984], +[0,158,24795,24799,18048,20637,21881,20650,24800,16662,12712], +[1,2349,16867], +[0,0,16869,2523,34552], +"boolbase", +[0,53,5652,5226,56,15659,71,5704,5712,4851,5785,5874,5889,92,5230,101,104,16804,33146,10879,10883,15693,24807,31666,4874,7677,1082,24813,1446,1541,1556,16230,14856,1874,1177,1905,2007,984,2071,2744,3171,3189,3222,15726,3510,15450,3698,28423,1894,89,3824,3951,15728,15452,4409,26379,4469,91,1984,188,20040,4763], +"nth-check", +[1,2349,16878], +[3,7804,9], +"olbase", +[2,16872,16873], +"cheerio-s", +"oupselect", +[2,16875,16876], +[0,0,0,16880,34552], +"sizzle", +[0,6105,24822,24827,6106,24829,24830,1936,2585,6038,24832,5284,91,24833,2808], +[1,2349,16882], +[0,16883,16884,16886,2540], +[0,2808], +[0,19438,23339,842,966,972,974,4880,4883,1009,1011,1610,1628,1177,1895,1955,1959,1961,1985,2651,2832,1894,89,3824,4068,4307,7873,4474,4493,91,1984,2924,4677,4681], +"clap", +[0,89,2808,1936,2585,6038,24842,24829,24830,24843], +[1,2349,16888], +[0,16890,16893,16895,2540], +"json-to-ast", +[0,1437,24854,24849,24848,4145,6271,3029,3028,24853], +"walker", +"lexer", +[0,3421,1149,2228,4193,3460,1596,2240,15929,2293,1532,24857,2283,2273,2277], +"jquery-test-runner", +[0,24859,24860,24861,24862,24863,24864,24867,24868,24869,24872,24873,24874,24875,24876,24877,24878,24879,24880,24881,24882,24883,24884,24885,24888,24890,24892,24893,24894,24895,24854,24896,24897,24898,24899,24902,24904,24905,24906,24907,24908,24909,24912,24915,24917,24920,24922,24924,24927,24928,24929,24930,24931,24932,24933,24934,24935,24938,24940,24942,24943,24944,24945,24945,24946,24947,24948,24949,24950,24951,24952,24953,24955,24956,24959,24960,24961,24962,24963,24966,24967,24968,24969,24970,24972,24973,24974,24975,24976,24977,24978,12047,24979,24980,24981,24983,24985,24986,24988,24991,24992,24993,24994,24995,24995,24997,25000,25001,25002,4040,25003,25004,4144,4145,25006,25007,25008,25009,25012,25014,25010,25015,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25029,25030,25033], +[1,2349,16899], +"features", +"web-features", +[0,16901,16902,16903,2540], +"stages", +[0,16843,25038,8335,25039,25040,8353,26364], +[0,21662,8357,5500,8359,4874,91], +[0,2844,7020], +[1,2349,16905], +[0,0,0,16907,2531], +[3,7014,10], +[0,89,6649,10057,6355,25054,1542], +[1,2349,16909], +[0,0,0,16910,2402], +[0,2814,5284,1388,6082], +[3,16857,15], +[2,16911,10441], +[1,2349,16917], +"advanced", +[2,16911,16914], +[2,16911,2994], +[0,16920,16921,2523,2540], +"optimise", +[2,5505,5218], +[0,2814], +[0,2228,4039,2203,842,25088,25063,2291,25090,3006,25070,25074,16894,25076,2253,2260,23178], +[1,2349,16924], +"@jscpd/badge-reporter", +[0,0,16925,16926,2457], +[0,4874,2899,91], +[0,14357,17180], +[1,2349,16929], +[2,27440,27441], +[0,16930,16939,16940,2540], +[0,25106,18420,2070,2821,3368], +[3,4856,9], +"okidar", +[2,16931,16932], +[2,7632,16558], +[3,12842,11], +[2,16935,4467], +"urndown", +[2,7750,16937], +[0,1109,1317,1505,2814,2272,3183,2899,3257,4019,4146,4294,2924,4677], +[0,14438,24856,25109], +[1,2349,16942], +[0,0,16943,16945,2540], +[0,10615,1177,1903,1937,1948,2228,25074,2256,2277,23165,2283,17565,25060,1894,2907,3980,4042,11802,4060,4255], +"csrf", +[0,977,16358,1388,5808,10906,5576,2821,1389], +[1,2349,16947], +[0,16948,16949,16951,4194], +[0,1139], +[0,3421,1111,2899,1177,4042,4167,2193,1317,1505,2064,4073,811,816,19232], +"@acemir/cssom", +[0,4745,57,1753,6713], +[2,812,1177], +"ould", +[2,7747,16953], +[1,2349,16958], +"tsv", +"generation", +[0,16959,16960,16961,2402], +[0,58,12184,1525,1676,1696,2070,25125,27534,1997,25126], +[0,442,8719,842,8712,16145,4874,1527,1567,1652,1177,1895,1939,1955,1192,2829,22509,22511,1894,4039,91,4523], +[0,25135,1745], +[1,2349,16963], +[0,16965,16967,2523,2540], +"@bramus/specificity", +[0,1512,1525,2151,25141,16923,25147,25144,25148,25142,25146], +"coffeelint", +[0,5536,4864,4874,7677,3363,4474,4493,91,1984], +[1,2349,16969], +[0,16970,16972,16973,34552], +[0,1437,1481,1525,25154,2004,2021,2070,2654,2822,25156,25160,15555,1209,3181,12118,15371,3741,25162,814,4296,4300,25163,25164,21956,25165,4736], +"csv-spectrum", +[0,1429,1596,6474,2272,2899,3954,4037,4193,4196,25168,25170,4734], +[0,19271,4525,671,9654,25172,2649], +[1,2349,16975], +[0,16976,16977,16978,2540], +[0,58,25177,7639,1362,25178,1874,25179,21226,3105,3107,3127,3188,25181,4300,4545], +[0,1091,2323,2384,2449,3421], +[0,1745,5284], +[1,2349,16980], +[0,16981,0,16982,2540], +[0,16053,17786,25190,17788,1776,25193,17798], +[0,1776,5592,13325,8626,5284,1745], +[1,2349,16985], +"csv parser", +[0,16987,0,16988,2531], +"parse csv", +[0,16053,1519,1522,25203,1727,2826,4783,17798], +[0,1776,1783,5592,1179,5284,676,1745], +"csv to json", +"csv convert", +"tojson", +[1,2349,16996], +" csv to json", +[2,6270,16993], +"csv-json", +[0,16997,16998,16999,34552], +[0,16950,16928,16964,15956,1638,25211,25212,2623,2661,2674,2750,3493,25213,25215,4454,4548,25216,23201,15502,25217,19851], +[0,23591,1177,1937,1953,2203,2822,3181,2899,25221,3401,3456,3549,4135,4153,4441,27602,25224], +[0,965,1936,7102,12616], +[2,1649,6451], +"cucumber-", +[2,17001,6466], +"duration", +[1,2349,17005], +[0,17012,17014,16999,34552], +"enerator", +"is-generator", +[3,4143,10], +[2,17008,1851], +"stack-chain", +[2,16240,1592], +[0,25231,25232,1638,2654,25233,3493,705,19851,4738], +"ansi-html", +[0,1389,1512,2665,2272,16112,2276,3560,3760,25238,4652], +[1,2349,17016], +[0,0,17017,17022,2540], +[0,1596,2228,2240,14352,2759,2899,3954,4019,25244], +[3,1976,18], +[2,17018,4414], +"riteway", +"updtr", +[0,1398,1867,5284,1781,3053,3065,1871,1646,4990], +"unique", +[1,2349,17026], +"unique id", +[0,17027,17028,2523,4194], +[0,200,15014,2021,2654,1209,3181,4300], +[0,1149,1389,1566,13985,1596,2759,2292,3211,2276,3758,3954,25251,4193,15136,25253,25256], +[1,2349,17030], +[0,17032,17033,17035,2531], +"ospath", +[0,1437,3074,3545,15826,4425,22972], +[0,2272], +"lazy-ass", +[0,2272,16237,4525,1671,671,2649,25264,16238,3721], +"blob-util", +[3,8129,9], +[1,2349,17043], +"@cypress/xvfb", +"zzle", +[2,6545,17040], +[2,17037,705], +[0,17048,17053,17054,2540], +"more-types", +[2,14614,17044], +[3,4008,11], +[2,17046,6509], +[0,25269,25272], +"cypress.io", +"mocks", +"spies", +"stubs", +[0,6503,4874,1009,1011,1177,1886,1938,2899,3421,4474,91], +[0,1781,17420,1641,15253,6813,25276,25277,1644,57,2841,25279,200], +[1,2349,17056], +[0,0,17060,2523,4194], +[3,13848,19], +[2,17057,3172], +"longest", +[0,4257], +[1,2349,17062], +[0,0,0,17063,2488], +[0,1781,2844], +[1,2349,17065], +[0,17066,17069,17070,2540], +[0,975,983,15951,1437,1457,8098,7614,2712,2856,3083,25292,4200,25294], +"d3-axis", +"d3-brush", +[0,4874,1540,2182,2675,33479,30889,4400,4507,91], +[0,6671,36,21147,8173,8172,25094,3212,8788,1973,5472,4030,2382,28726], +"d3-chord", +[1,2349,17073], +[0,17076,17077,17079,2402], +"d3-contour", +"d3-delaunay", +[0,1417,7272,2756,17827,3433], +[0,5517,13614,23237,10979,27571,27016,19325,1159,9254,1177,2708,3410,4103,4389], +"d3-dispatch", +[0,1781,1646,7185,3428,6333,7077], +"d3-drag", +"d3-dsv", +"d3-ease", +"d3-fetch", +[1,2349,17085], +[0,0,0,17087,34552], +"d3-force", +[0,1781,1646,7045,6953], +[1,2349,17094], +"d3-format", +"d3-geo", +"d3-hierarchy", +"d3-interpolate", +"d3-path", +[0,0,17095,17105,2457], +[0,1593,1177,1903,1938,1954,1958,1970,3400,3954,4042,4048,4055,4067,4073,4193,4384,25313], +"d3-polygon", +"d3-quadtree", +"d3-random", +"-chromatic", +[2,1655,17099], +"d3-time", +"-format", +[2,17101,17102], +"d3-timer", +[0,1781,2856,1925,6778,5286], +[1,2349,17109], +"d3-transition", +"d3-zoom", +[0,0,17114,2523,2540], +"@observablehq/plot", +[3,17110,14], +[2,17111,7047], +"topojson-client", +[0,2899,1177,4039,91,4874,6503,1011,1009], +"visualiz", +[2,17115,5218], +[1,2349,17118], +[0,17119,13678,17120,2540], +[0,21224], +[0,3917,6033,2090,1781,2150,2151], +"intern", +"internmap", +[1,2349,17124], +[0,0,17126,17127,2531], +"d3-module", +[0,16638,16641,1429,1177,25328,2899], +[0,1781,2844,2860,1155,7020], +"histogram", +"bisect", +"shuffle", +[1,2349,17133], +"stic", +[0,17135,17136,17137,34552], +"statistics", +[0,4430,25336], +[0,4389,19987,18718,8924,5710,2012], +[0,1781,3101,22115,57,1149,7119], +[1,2349,17139], +[0,17140,17141,17143,4194], +[0,3242,25343,4135,25355,25346,25353,3052,25347,25350,3051], +[0,3413,3421,1157,1429,2899,4193,1177,1566], +[1,2349,18271], +[0,2038], +"@jspm/plugin-rollup", +[1,2349,17148], +"selection", +"data-join", +[0,17149,17150,2523,2531], +[0,53,25363,17144,3467,3527], +[0,25366,4874,26142,1415,668,1177,1895,3171,3181,3445,1894,4042,4448,91], +[1,2349,17152], +[0,0,17153,17154,2540], +[0,4874,7677,20085,4493,91,1984], +[0,6649,6710,5995,25372,89,970,5122,3857,5123], +[1,2349,17156], +[0,17157,17158,17160,34552], +[0,25377,3486,20508,3923], +[0,4449,2228,2907,1177,1317,2240,1389,3541,91,2665,25379,2236,2281,25383], +"dable", +[0,2056,25386,25388], +[1,2349,17162], +[0,0,17163,17168,34552], +[0,4172,1192,2675,1177,23535,4468,4474,1894,91,53,2990,1387,1540,1938,1895,1955,2780,1011,1009,1915], +[2,21029,17165], +" plugin", +[2,21045,17169], +"postcss-js", +[0,2038,1388], +"ails", +[1,2349,17172], +"laravel", +[0,0,17173,17174,2540], +[0,2025,2759,2899], +[0,2038,10368,15103], +[1,2349,17176], +[0,17177,17178,17182,34552], +[0,14416,4449,2070,3171,25404,4747,15643,1209,3078,3188,4039,1544,1457,3181,4218,2659,4227,1364,2215,12930,3781,11804,25403,13388], +[0,1429,13333,2899,17050,4193,4707,1177,1649,4650,3758,4342,1389,2878,3752,4196,25411,1436,2900,2766,2898,192,1431,2871,4131,1954,1938,25407,2904,6063,1958,2881,25410,1903,1970,2895,22559,6061,2876], +"reverse", +"binary", +"opposite", +[0,2297,25415,8791,2297,676,5284,5472,1973,21004,25416], +"invert", +"switch", +[1,2349,17186], +[0,17187,17188,17192,34552], +[0,9421,1209,25421,3181,18868,1573], +[0,3377,1377,1429,2297,2899,4193,4453,12851,1177,814,4650,1389,4196,91,3400,2766,2898,15051,1951,2881], +"@cap", +"temulation/get-parameter-names", +[2,17189,17190], +[0,25425,25427,25429,1389], +"faker-bb", +[2,7526,17193], +[2,9769,1676], +"rss-parser", +[2,2032,2663], +[2,4364,17197], +"lexxy", +[1,2349,17201], +[0,17202,17203,17207,2540], +[0,3760,14336,25092], +[0,2228,1177,2307,2239,2291,3006,1954,2234,1938,1958,1903,1970,2285,2290], +"@date-", +"fns/docs", +[2,17204,17205], +[0,25425,25436,14336,25437], +[1,2349,17211], +"@date-fns/utc", +[3,5530,19], +[0,0,0,17224,2540], +"@types/bun", +"@vitest/", +[2,17213,1388], +[3,1198,17], +[2,2701,7188], +[2,17215,17216], +"bun", +"cloc", +"js-fns", +"jscodeshift", +"issing-exports", +[2,10634,17222], +[0,2297,25425,1429,2899,4170], +[1,2349,17226], +[0,17227,17228,17229,2488], +[0,4707], +[0,1429,2297,2899,4193,4255,2900,192,4131,6063,22559,6061], +[0,25425,25436,3195], +[1,2349,17231], +[0,17233,17234,17235,2531], +[2,2553,20], +[0,11935,14024,11938,11940,11943,3181], +[0,192,5467,21970,6061,6063,16608,1429,1509,1177,1903,1938,1954,1958,1970,2228,2240,2298,2307,2675,25453,2297,25455,2895,2900,25458,2899,17050,4019,4131,4193,4196], +[0,25425,25427,25462,4504,2759], +[1,2349,17237], +[0,17227,17238,17241,2540], +[0,2228,2258,2273,2298,2766,2297,2898,3524], +"ectory", +[2,4015,17239], +[0,25425,25436,1388,2887,25468,25470,25472,25473,17632,25474,25476,25479,25481,25484,25485], +"sleep", +" wrapper", +[2,1149,17243], +[1,2349,17246], +[0,17247,17248,17249,34552], +[0,2890], +[0,1429,25492,14416,1177,1903,1958,1970,2228,2239,2240,2291,2307,2316,2297,3006,25493,3752], +[0,25425,25436,13530,17631], +[2,17257,24717,17258], +"debouncing", +"invoke", +"interval", +[1,2349,17255], +[0,17256,17259,17260,2540], +[0,2755,4707], +[3,7621,18], +"-ascii", +[0,192,5467,6061,6063,16608,2675,2297,2900,2899,3534,4131,4255], +[0,2297,5472,25425,25436,25501], +[1,2349,17262], +[0,6205,17263,17264,34552], +[0,1429,14416,1177,1903,1958,1959,1970,2228,2234,2239,2283,2285,2290,2291,2307,2316,2297,3006,17050,4193,4196], +[0,25425,25436,7298], +[1,2349,17268], +"decamelcase", +"lowercase", +[0,17270,17271,17280,2531], +"nano-spawn", +[0,2766], +[0,2228,2675,2297,1177,2765,192,4131,1954,1938,6063,16608,1958,1903,1970,2895,6065,22559,6061], +"-tar", +[2,1679,17272], +"bz2", +[2,17273,17274], +"gz", +[2,17273,17276], +[3,17273,11], +[2,17278,4560], +[0,25425,25514,2765], +"strip-dirs", +[1,2349,17284], +"is-jpg", +[0,17287,17289,17290,34552], +"bzip2", +"tar.bz", +[0,3183], +"tar.gz", +[0,1429,1177,1903,1958,1959,1970,2228,2234,2239,2285,2291,2298,2307,2297,2878,2881,2895,2918,3006,2899,3203,4193,6061,6063,4131,192,5467,2675], +[0,25425,25514,2899], +[1,2349,17292], +[0,17301,17320,17324,2540], +[3,4852,13], +"plugin-m", +[2,17294,7912], +[2,17293,17295], +"fail-test", +[2,10740,17297], +"deprecation", +[2,1921,17299], +[0,1437,3074,4294], +"only-tests", +[2,16645,17302], +[3,1955,15], +"erfectionist", +[2,17304,17305], +"yml", +[2,1921,17307], +"jsonc-", +[2,17309,67], +[2,4488,10441], +[2,3390,17311], +"curly", +[2,3704,17313], +"should-s", +"emantic-", +[2,17316,3979], +[2,17315,17317], +[2,13125,67], +[0,1429,2228,2239,2258,2273,2285,2298,2314,2766,2878,2889,3006,2899,3524], +" string", +"line string", +[2,13862,17322], +[0,25425,25462,2899,1429,1687,2568], +[1,2349,17326], +[0,17327,17328,17333,2540], +[0,1209,3524], +[0,1177,1903,1959,1970,2228,2234,2239,2285,2291,2298,2307,2766,2297,2898,3006], +"dupes", +" duplicates", +[2,7293,17330], +[3,232,8], +[0,25425,25436,3521], +[1,2349,17338], +"deduplicate", +"deduplicat", +[2,17336,6600], +[0,0,17339,17340,2402], +[0,1429,2228,2297,2899,2907,1177,2307,2239,2898,1954,1938,1958,1903,1970,2895], +[0,2297,25425,25514,2907], +[1,2349,17343], +"is-obj", +[0,17344,17345,17346,34552], +[0,1457,1675], +[0,53,5889,87,1177,2766,2297,2881,2898,2904,4042,4045,4048,4055,4067], +[0,3595,6778,2297,5260,1204,6813,1932,7121,25427,25425,25544,4042], +[1,2349,17348], +[0,0,17349,17350,4194], +[0,2307,2228,2239,2234], +[0,25425,25436,25550], +[1,2349,17353], +"json-ptr", +[0,17359,17360,17361,2540], +[3,1715,10], +"change-", +"adr", +"tracking", +[2,17355,17357], +[0,25555,12826,824], +[0,192,5467,6061,6063,16608,4864,25558,4874,2675,2765,2297,2898,4131,91], +[0,25425,25436,7177,12825,12826], +"decision record", +"kewlr", +"any decision record", +[2,17379,17381], +"simple-assert", +"lcov-re", +[1,2349,17378], +"sult-merger", +[2,17367,17369], +[3,1903,16], +"rict", +[2,17371,17372], +"@js-temporal/polyfill", +[3,1935,15], +"ilenames", +[2,17375,17376], +[0,0,0,17385,2540], +[3,25135,11], +"chai util", +"al decision", +"deep equal", +"object equal", +[2,17365,17394], +[0,2297,25425,4193,3212], +[1,2349,17387], +[0,17408,17417,17419,2531], +"array-b", +"-byte-length", +[2,2347,17389], +[2,17388,17390], +"es-get-iterator", +"is-a", +" record", +"is-arguments", +"is-ar", +[2,25135,17401], +"ray-buffer", +[2,17396,17398], +"is-date-object", +" decision", +"gex", +"is-regex", +"is-s", +"hared-array-buffer", +[2,17404,17405], +[2,6961,7313], +[0,2215], +"side-channel", +"-boxed-primitive", +[2,4707,17410], +"which-", +[2,17412,6910], +"typed-", +"typed-array", +[2,17412,17415], +[0,8780,1414,1177,2766,2297,25571,2881,2898,1894,4042,25575], +"available-typed-arrays", +[0,25425,25427,11939,5284], +"to", +"has-proto", +"has-t", +[2,17397,17394], +"yped-arrays", +[2,17422,17424], +"software quality", +[1,2349,17428], +[0,9751,17430,17431,2457], +"rehype-katex", +[0,1429,1596,2899,3400,3421,4193,4196], +[0,25425,16237], +[1,2349,17433], +[0,17434,17435,13543,4194], +[0,2070,3181,4689], +[0,48,53,85,87,192,5467,16405,1193,1429,1431,1610,1177,1938,1955,2675,2759,2765,1192,2297,2878,2881,2900,2923,2990,3150,2899,3697,1894,3758,4257,2924], +"is-m", +"able-object", +[2,4688,17437], +[2,17436,17438], +"jsmd", +[1,2349,17442], +[0,0,7927,17443,4194], +[0,8652,2926,25591,6938,25592,25594,25595,25596,2927], +[1,2349,17445], +[0,0,0,17446,2776], +[0,2927,3925,364], +"is-path-cwd", +"is-path-", +"inside", +[2,17448,17449], +[1,2349,17452], +[0,17454,17463,17464,34552], +"folders", +[0,25605], +"directories", +"trash", +"unlink", +"cleaning", +"rmrf", +"friendly", +"gulpfriendly", +"filesystem", +[0,4481,4039,1984,18073,29457,25609,26124,26131,11976,26123,15288,26132,29233,26108,7677,26104], +[0,6803,6692,1542,2325,9553,25611,13901,5995,25513,1552,3230,7827,3259,14873,3151,3300,3084,6650,1416], +[1,2349,17466], +[0,0,17467,17469,2540], +[0,1999,4579], +"temp-write", +[0,1111,200,1473,1512,7201,7009], +[1,2349,17472], +"formatly", +[0,17473,17476,17478,2531], +[0,1999,25625,1676,1209,21104,3932,4435,25623,1511,1525,2727,4025,2179,25624], +"in-range", +"time-", +[0,3519,3421,4481,1429,2763,4389,2675,2899,3259,4193,1177,3260,4039,1787,3203,4246,25635,4474,25633,1894,4387,1596,1610,2861,4196,91,4874,21106,2990,25629,25634,1431,4232,25632,1938,25628,25636,1895,1955,13850], +"time-span", +[0,14872,3766,14873,25638,3259,25639,4246,12593,3243,9381,25640,6147,1747,18035], +"defer", +"out", +"timeout", +[1,2349,17483], +[0,17486,17488,17489,2540], +"settimeout", +"tick", +[0,19185,2071,17471,2807,2822,3183,29943,3527,3530,25648,4300,4763], +"threshold", +[0,554,17212,7637,7892,20374,4891,11112,19706,32765,4494,91], +[0,19748,25658,1227,200,25660,4796,13735,4797,11337,25661,6971,6813,1586,2100,5284,671,25663,25664,18750,6646,23255,3383,20529,553,91,25667,25669,17507,664], +[1,2349,17491], +[0,0,17499,17502,34552], +"@vue/c", +"ompiler-sfc", +[2,17492,17493], +"callsite", +"deps-", +"deps-regex", +"is-c", +[0,1177,2205,25675,3072], +"ore-module", +[2,17498,17500], +[0,1623,3583,12616,3195,25501,25677,17631,25550,25678,25679,25682], +"patch-", +"patch-version", +[1,2349,17506], +[0,17508,0,17509,2540], +"unused", +[0,3171,4734,1676,25688,3441], +[0,7200,6997,6949], +[1,2349,17511], +[0,17512,17513,17516,2540], +[0,1080,1560,1562,16358,25696,14858,1833,1869,2145,25699,2657,2941,3173,3440,3494,4266,1000,4590], +[0,1414,25710,4216,4255,4342], +"deprecate", +"deprecated", +[0,5122,1896,27,13527,5130,2663,16196], +[1,2349,17518], +[0,17519,17520,17521,34552], +[0,25717,7810,13055,25718,2141,4507,4763], +[0,5517,11976,107,5522,28385,27134,36694,24819,9240,2934,4342,4483,36684,4494,91], +[0,2934,25723,15237,1781,20443,57,1669], +"is-relative", +[3,9488,17], +[1,2349,17525], +[0,17530,17531,17532,2457], +"cjs", +"detective-cjs", +[3,9509,10], +[2,17528,4354], +[0,25718,25728,1000], +[0,1909,2675,2934,2899,3421,4170,4342,1906], +[0,25732,1781,25723,2934,20443], +[1,2349,17534], +[0,0,17535,17536,2531], +[0,1503,1192,3130,4255], +[0,2934,2663,2940], +"indentation", +[1,2349,17541], +"identify", +"space", +[0,17542,17543,17544,2776], +[0,1413,1437,25743,3440,25745], +[0,1366,1414,1909,2934,25748,25749,4193,4342,1906], +[0,2934,2663,2942,3073], +[1,2349,17548], +"mm", +"egg-bin", +[0,17549,17550,17552,2540], +[0,1676,2941], +[0,1177,1903,1958,1970,2759,2934,2948,2899,4170,4342], +"ontributor", +[0,2934,2663,2944,25757], +[1,2349,17555], +[2,1884,1347], +[0,17556,17557,17558,2402], +[0,1676,2657,2941,3509], +[0,2934,3421,1437,2675,2899,1177,2114,4342,25763,3985,2990,192,2829,3995,1982,5467], +[0,2934,2663,4082,38], +[1,2349,17560], +[0,17561,17562,17563,2457], +[0,1676,25771], +[0,1177,1903,1938,1954,1958,1970,2759,2934,2899,4342], +[0,2934,2663,2090,2947,25774], +[1,2349,17569], +"grunt-exec", +[3,2300,12], +[2,17566,2759], +[2,2235,2924], +[0,17570,17571,17572,2540], +[0,3291,3754,25782,1552,4747,1209,4333,2026,1364,25781], +[0,1429,1149,2899,4193,4170,4342,1506], +[0,12692,3768,6812,1552], +[1,2349,17574], +[0,17575,17576,17587,2540], +[0,25789,1687,1177,25791,25792,2000,25793,2036,2607,2851,2854,3188,4127,4227,4232,4351,25794], +[0,1501,25796,1948,25797,4039,4135], +"@types/diff", +"gan.js", +[2,12456,17578], +"@types/nopt", +"all-", +"ibutors-cli", +[2,10741,17582], +[2,17581,17583], +[3,1945,18], +[3,3463,9], +[0,1973], +[1,2349,17593], +[2,2036,2091], +"image-", +[2,17590,11526], +"is-ci-cli", +[0,17594,17596,17598,2531], +[0,9478], +"side-by-side", +[0,1166,4135,25814,4481,1906], +"line-by-line", +[0,25816,15525,3378,4750,3383,6661,25188,1237], +"difftohtml", +"colorized", +[1,2349,17602], +[0,0,17603,17604,2540], +[0,2861,25821,1317,25822,25823,2768,1776,1209,3152,3736,25825,4019,25826,4545], +[0,7189,6564,6681,6887,614], +[1,2349,17606], +[0,0,17607,17611,2488], +[0,4248,2675,2297,2899,4193,1177,25846,4042,25850,25840,4535,2900,2918,2990,25844,25848,25851,2897,8850,2891,25843,2881,2912,2895,2910,25853,25838], +"data-s", +[2,14386,3769], +[2,17608,17609], +[0,25855,3053], +[3,1915,23], +[2,17612,8861], +[1,2349,17624], +"Directed Graph", +"directed", +" graph", +[2,17616,17617], +[2,17616,2218], +[3,1718,14], +"Directed", +"digraph", +"java", +[0,0,17628,17633,2402], +"java script", +"JavaScript", +"type script", +[0,1317,2064], +"vertex", +"Vertex", +"edge", +"Edge", +[0,2967,2965,2966,23119,1871,19728], +"graph theory", +"Graph Theory", +"graph ", +[2,17636,6956], +[1,2349,17639], +[0,0,17646,17650,34552], +"weighted", +"Weighted", +"unweighted", +"Unweighted", +"adjacency", +"Adjacency", +[0,20340], +"connectivity", +"cycle", +"acyclic", +[0,2966,25866,6983,1671], +"traversal", +"depth", +"Depth", +[1,2349,17655], +[0,17682,0,17684,4194], +"breadth", +"Breadth", +" first search", +[2,17652,17658], +"dfs", +"DFS", +[2,17656,17658], +" search", +[2,6395,17663], +[2,17656,17664], +"bfs", +"BFS", +"algorithms", +[2,17636,17668], +"repre", +"sentation", +[2,17670,17671], +[2,17636,17672], +" matrix", +[2,17647,17674], +" list", +[2,17644,17676], +"adjacency ", +"matrix", +[2,17678,17679], +"node ", +[0,3420,2714,4390,3532,4248,3348,1437,2020,2742,3478,4207,10761,4747,25871,1680,24004,3483,4039,4135,1842,2822,3479,4430,25872,2151,2182,2720,3093,25873,13786,25874,1513,2753,2777,3181,25875,666,2188,3249,27921,91,25878,1595,2200,25879,25880,4174,2704,25881,3393,25884,4025,25886,4290,4748,25887,692,20312,9322,25888,25891,25892,3386,635,25893,26567,4728,643,3397,9479,10744,4588,16310,25898,25901,16307,25904], +"node degree", +[0,2968,6646,7117], +[1,2349,17694], +"sparse graph", +"dense graph", +"directed ", +[2,17688,17648], +"acyclic graph", +[2,17688,17690], +"DAG", +"topo", +[0,17703,17707,17708,34552], +"topologic", +"topological", +"sorting", +"strongl", +"y connected components", +[2,17698,17699], +" digraph", +[2,17640,17701], +[0,25910,20314,4484], +"weighted edge", +[2,17688,17704], +"structures", +[0,811,8850,816,1009,1011,25917,25920,1429,1414,1437,1595,1610,1177,2151,15843,2070,2205,2228,2240,2247,2256,2291,2311,2314,25922,2777,25923,25925,21898,3183,2899,25928,3400,3518,25929,3541,1862,25930,814,4042,4073,4076,4135,4172,4436,4474,91,12247], +[0,7236,7303,6885,1623,6965,7025,6898,6932,7258,695,7228,6766,7028,6912,57,7121,6962,6968,590,592,5376,7198,6705], +" structure", +[2,2382,17709], +[3,17610,14], +[2,17710,591], +[2,6957,591], +[2,17711,591], +"in data structures", +[3,17715,17], +"DataStructure", +[2,17717,591], +[1,2349,17725], +"iterative", +"Node.js", +"CommonJS", +"UMD", +"esmodule", +[0,0,17728,17736,2540], +"java.util", +"c++ stl", +[0,48,53,87,192,5467,442,27928,19344,1193,1610,1622,1700,1701,1177,1895,20281,1938,1939,1953,1955,1982,2203,2675,1192,695,25936,2990,3144,3400,1894,4257,4294,4523,2924], +"c++ std", +"Python collections", +"System.Collections.Generic", +"STL", +"stl", +"Collection", +"Collections", +[0,2924,1194,695,6766,7228,1623,7121], +"insertion", +[1,2349,17741], +"deletion", +"OOP", +[0,17742,17743,17744,2540], +[0,25946,25948,25944], +[0,3421,4389,3348,1090,1290,2554,4255,91,4874,87,25951,25950], +[0,2970,25954,3101,18035,1747,1542,13901,1781], +[1,2349,17746], +[0,17747,17748,17749,4194], +[0,25960,15160,25959], +[0,25964,3421,2070,4389,4400,2080,4039,12694,1804,2554,640,4255,1610,25963,25968,15164,25974,25969,1705,25972,25967], +[0,25954,2970], +[1,2349,17755], +"voice", +[2,7659,17751], +"backend-", +[2,17753,10057], +[0,17756,17759,17744,2457], +[0,23040,25983,25987,25990,25981,25985], +"product", +"productivity", +[0,3421,4389,1087,4193,1090,2080,12694,25995,26000,2554,4255,25963,1389,4092,25992,25996,1537,25994,25997,1705,25951,25967], +[1,2349,17761], +[0,0,17762,17771,2457], +[0,1166,26007,26008,26009,26006,26010,26014,3273,26015,4441,1906], +[2,7659,4729], +"lodash.s", +"nakecase", +[2,17764,17765], +"builders", +[2,7659,17767], +"formatters", +[2,7659,17769], +[0,2975,26006,26017,8893,1871,17354,1687,2062,2163,9549,9550,3797,26020,6109,2585,3529,19051], +[2,7659,1735], +[1,2349,17774], +[0,17775,6555,17776,2402], +[0,635,9510,26026,1687,3181,3386,3483,4390], +[0,3378,3409,2977,200,1687], +[1,2349,17778], +[0,17779,34566,17781,34552], +[0,3917,3483,4135,1458,3727,4174,9455,3386,635,17780,643,9479], +"@gar/promise-retry", +[0,3378,3409,2977,200,9527,2979], +[1,2349,17783], +[0,17784,6555,17785,2531], +[0,635], +[0,3378,3409,2977,200,3358,2980,26044], +"cache-point", +[2,9480,6769], +"file-set", +[1,2349,17791], +"reduce-", +[0,0,17792,17794,2540], +[0,48,53,5712,5788,87,94,8850,10615,1208,1429,1597,26049,1610,32572,2759,1192,25913,26052,3183,2899,3400,3421,26053,4005,4039,4042,4484], +"without", +[0,7285,7310,6988,6847,5131,7211], +[1,2349,17796], +[0,17797,17799,17802,34552], +[0,2051,2107,10392,26060,2747,3932,814], +"walk-back", +[0,1509,1177,1889,1895,1954,2022,2899,3421,4193], +"dmd-", +[3,2475,9], +[0,9753], +"ample", +[2,17801,17803], +[2,17800,17804], +[1,2349,17807], +[0,0,17808,17809,2540], +[0,11976,5087,4874,8157,1595,1192,91,4579], +[0,1595,1541,8309,7193], +[1,2349,17811], +[0,0,0,17812,34552], +[0,26072,1823,26073,1936,2814,163,26074,89,4500,1002], +"jsdoc2md", +[1,2349,17815], +[0,17816,17817,17820,4194], +[0,1525,2992,3170,6479,26379,4745], +[0,5522,107,192,5467,442,7677,22839,26081,1610,1177,1895,1953,1955,10964,2675,3211,1894,4135,91,1984], +"agnostic", +"dnd", +[0,671,3358,2989,1177,1894,4320,1501,19269,4354,1671,2649], +[1,2349,17822], +[0,17823,17824,17828,2540], +[0,26087,26090,2752,2753,26092,26095,26099,3478,4094], +[0,1503,1702,22845,2990,3074,3421,3697,4237,13351], +"-protocol", +[2,1730,17825], +"jsonify", +[0,200,5957,3392,9000,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], +"rpc", +"callbacks", +[1,2349,17832], +[0,17833,17834,6228,34552], +[0,1486,2017,3077,4038,4726], +[0,13352,4094,13351], +"@ffmpeg-installer/ffmpeg", +[3,1733,16], +"mmon", +[2,17836,17837], +[1,2349,17840], +[0,17841,17842,2523,4194], +[0,26114,26111,5438], +[0,26121,26117,10675,26122,10706,4484], +[1,2349,17844], +[0,17845,17854,17855,2531], +[0,1209,3183,1387,26129,1549], +"@puppeteer/browsers", +[3,13394,12], +"ium-driver", +[2,17847,17848], +"geckodriver", +[2,13391,17850], +[2,5680,13392], +[2,13391,17852], +[0,2899,4193,1177,3215,2759], +[0,1098,14576,2947,36,5001], +[1,2349,17857], +[0,17858,17860,17861,34552], +[0,3459,1594,710,1512,3237,1544,1457,26136,4150,2012,3427,26137,23009], +"posthog-node", +[0,2899,1177,2272,4342], +[0,6400,5001,4990,36,27,200], +[1,2349,17863], +[0,17864,17865,2523,2540], +[0,1457,26144,15767,4729], +[0,1509,2899,4170,4193], +[1,2349,17868], +[3,246,8], +[0,17869,17870,17871,2540], +[0,16166,2070,25923,2822,23444,3006,1209], +[0,2228,2273,2283,23466,22081,2305,3752,4193], +[0,21779,4745,16166,2228,1541], +"mecano", +[1,2349,17874], +[0,17875,17876,17879,2540], +[0,1144,3249,3539,6477], +[0,2228,2240,26158,1906], +"@balena/dockerignore", +"docker", +[0,4796,2070,2228,3001,3529,26160,13017,3209,3005], +[1,2349,17882], +"docker-modem", +[0,0,17883,2523,34552], +[0,1596,1177,1954,1192,1894,4257], +"docker.io", +[1,2349,17886], +[0,17887,17888,17891,2540], +[0,25190,3088,26169,26172,26173,26175,26178,26179,26180,26181,26182,26183,26184,26187,26189,26190,26192], +[0,3310,1187], +"@bevry/pluginloader", +"ambi", +[0,3304,36,5122,4990,6400,5001,1594,3171,4030,3212,5592,2658,3088,5995,4967,26196,2665,27,13333,2671], +"ansistyles", +"bal-util", +[1,2349,17925], +"caterpillar", +"docmatter", +"-baseplugin", +[2,1737,17897], +"eachr", +"envfile", +"errlop", +"-grouped", +[2,13771,17902], +[2,12598,17903], +"extendr", +"extract-opts", +"ignorefs", +"xtorbinary", +[2,8828,17908], +"jschardet", +"lazy-require", +[3,3732,9], +"title", +[2,17912,17913], +"query-engine", +"rfc-log-levels", +"safefs", +"ps", +"safeps", +"scandirectory", +"taskgroup", +"typechecker", +"unbounded", +"watchr", +[0,17932,17933,17937,2540], +"@bevry/", +[3,17583,12], +[2,9787,17927], +[2,17926,17928], +[2,15340,6706], +"kava", +[0,25377], +[0,1175,1178,1195,1198,14211,1267,26204,1290,26205,1408,1594,1895,2228,13831,2236,2253,2256,2281,2283,26208,2291,3198,26210,18463,2311,26212,17568,2675,2990,3006,2899,1894,26213,12936,91,4535,2924,4681], +"projectz", +"valid-", +[2,17935,7204], +[0,26216,26217,13901,26218], +" and deployment", +[2,6147,17938], +" manage", +[1,2349,17949], +"ment system", +[2,17940,17942], +[2,1563,17943], +"dms", +[2,1746,17943], +" agnostic", +[2,1351,17947], +[0,17952,7927,2523,2457], +"templating", +[2,11607,5001], +[0,1170,1676,26223,4747], +[1,2349,17954], +[0,17955,17956,17957,2540], +[0,1595,1676,2071,26228,4747], +[0,1178,14080,1253,1264,1267,1734,1767,1177,1903,1938,1939,1954,1958,1966,1970,1192,3446,26230,4135], +[0,26232,26234,6698,3015,671,4749,3378,9654,1965,1644], +[1,2349,17959], +[0,0,0,17960,2540], +[0,5260,7268,614], +[1,2349,17962], +[0,0,0,17963,2540], +[0,5194,5260,7268,614], +"docsify", +"docsify.js", +"tabs", +[1,2349,17968], +[0,0,0,17969,2402], +[0,26249,3426], +[1,2349,17975], +"@textlint/markdown-to-ast", +"anchor-markdown-header", +"section", +[2,9787,17973], +[0,0,0,17976,2540], +[0,26249,1420], +"bitbucket", +"gitlab", +"ghost", +[1,2349,17981], +[0,0,0,17983,2531], +[2,20413,4699], +[0,26249,26258], +"doct", +"rine-temporary-fork", +[2,17984,17985], +[1,2349,18006], +"globals-docs", +"konan", +[2,3138,14510], +"micromark-", +"util-c", +"haracter", +[2,17992,17993], +[2,17991,17994], +"filepath", +[2,13721,17996], +[3,3999,9], +"ference-links", +[2,17998,17999], +"unist-", +[2,18001,9381], +"vfile-", +[2,18003,16237], +"vfile-sort", +[0,0,0,18010,2540], +"chdir", +"-schema", +[2,1745,18008], +[0,26249,1675], +"jsdoc3", +"nums", +[1,2349,18014], +[0,0,0,18015,2531], +[0,26249,19400], +"big-integer", +"-search-bounds", +[2,17180,18017], +"int64-buffer", +"priorityqueuejs", +[1,2349,18022], +[0,0,0,18024,34552], +"semaphore", +[0,26249,3033], +[1,2349,18026], +[0,0,0,18027,2531], +[0,26249,14741], +"cosmosdb", +[1,2349,18030], +[0,0,0,18033,2488], +"cosmos db", +"document ", +[0,26249,3038], +[1,2349,18038], +"database", +[2,18032,18035], +"nosql", +[0,0,0,18039,2488], +[0,26249,3040], +[1,2349,18041], +[0,0,0,18053,2540], +"crowdin-cli", +[3,2694,9], +"gifsicle", +[2,18043,18044], +"jpegtran", +[2,18043,18046], +"png", +"optipng", +[2,18043,18049], +[2,18043,4361], +"tcp-port-used", +[0,26249,26287], +[1,2349,18057], +"tree-node-cli", +[2,15862,1868], +[0,0,0,18058,2540], +[0,26249,26292], +"glob-promise", +[1,2349,18062], +"websites", +[0,0,0,18064,2540], +"open source", +[0,1209,26249,7268,614], +[1,2349,18066], +[0,0,0,18067,2531], +[0,26249,26301], +[2,15774,1722], +"-languages", +[2,6327,18069], +"to-vfile", +[2,9406,2741], +"lru.min", +"offline-search", +[1,2349,18076], +[0,0,0,18077,2540], +[0,26249,26307], +[1,2349,18079], +[0,0,0,18083,2540], +[2,1611,1388], +"height", +"classlist", +[0,26249,3053], +[1,2349,18085], +[0,0,0,18086,2402], +[0,26249,7906], +"domelementtype", +[1,2349,18090], +"entities", +[0,0,0,18091,2540], +[0,26249,1698], +[1,2349,18093], +[0,0,0,18094,2540], +[0,26249,3061], +[1,2349,18096], +[0,0,0,18098,34552], +"raster", +[0,26249,3063], +[1,2349,18100], +[0,0,0,18101,2531], +[0,26249,3065], +"qunit-tap", +[1,2349,32974], +"paths", +"ncludepaths", +[2,8851,18105], +[1,2349,18109], +"math", +[0,18111,0,18115,2540], +"mathml", +[0,22983,22985], +"secure", +"sanitizer", +"purify", +[0,26249,1283], +[1,2349,18117], +[0,0,0,18118,2531], +[0,26249,6925], +[1,2349,18120], +[0,0,0,18121,2540], +[0,26249,3071], +[1,2349,18123], +[0,18125,18126,18127,2531], +[3,4257,9], +[0,2353,998,1856,17003,26351,26350,26349], +[0,3421,4389,2675,26357,1177,10824,26358,2990,15797,15804,15793,15801], +[0,3073,2942,1676,1409,4709], +[1,2349,18129], +[0,18130,18131,18133,2531], +[0,20040,16232], +[0,1906,1166,4481,4294], +"expand", +[0,3656,200,8429,6876,7169,5511,2568,20597,2089,20598,6574,3073,6807,7009,8634], +[1,2349,18136], +"interpolation", +[0,18138,18139,18140,2540], +"substitution", +[0,1107,1477,4208,4294,4726], +[0,4874,4290,26371,4481,16041,1906], +[0,3073,2942,6807,200,7009,6048,7201,4166,3076,26375,26376,6811,8634,3730,10036,7521], +[1,2349,18144], +"archive-type", +"ext-name", +[0,18146,18149,18150,2531], +"filenamify", +[0,26383,1676,26385,4038,26388], +"is-zip", +[2,4551,1398], +[0,192,5467,26390,13757,24030,1177,1881,1895,19527,1938,1955,2151,2675,2742,3421,1894,3752,4384,91], +[0,6807,3073,15227,202], +[1,2349,18152], +[0,0,18153,18154,2531], +[0,26398,4874,2228,2240,2247,2253,2256,24293,2273,2281,2283,26399,26400,2765,4474,91], +[0,3073,2942,6807,1388], +[1,2349,18156], +[0,0,18159,18160,2402], +"repository", +"tarball", +[0,26406,1894,91], +[0,18108,3080,26408], +[1,2349,18162], +[0,18163,18164,18165,34552], +[0,1797,1704,26413,1149,1676,7077,2026,26416,1309,1362,2712,3361,1364,4148,26417,26420,26423,26426,26429,4547,26435,26438,26443,26448], +[0,3421,1429,2228,2297,2899,4193,4707,1177,1596,2240,26453,4342,1389,1719,4196,2298,2900,2291,1575,26455,26457,2040,2236,2300,2871,26459,2283,26462,2281,25407,26465,2881,25410,26466,2895,26470], +[0,5122,7096,4030,5592,2026,4031,2934,1303,1965,12593,3259,18037,1550,3230,26472,3243,25638,14873,4217,26473,5130,5131,26474], +[1,2349,18167], +[0,18168,18169,12138,2531], +[0,9673], +[0,1389,1839,4384], +"import-from", +"parse-c", +"md-args", +[2,18171,18172], +[2,4182,4562], +[1,2349,18176], +[0,18177,18178,18179,2488], +[0,26484], +[0,4494,2675,4400,1177,1209,1701,4474,91,4874,4870,6494,192,26488,26486,13789,25298,5467], +[0,18035,1747,1804,26490,21687,2117,6671,2703,26492,26493,1388,1999], +[1,2349,18184], +[3,3369,12], +"ckage-data", +[2,18181,18182], +[0,0,18187,18188,2531], +[3,16398,19], +[2,18185,18182], +[0,4874,1317,668,3127,3188,1894,4384,4483,4508], +[0,6879,6650,2325], +[1,2349,18190], +[0,0,18191,18193,2402], +[0,6373,968,26503,4042,4057,91,1983,1984,26504,25079,26507], +"dox", +[0,26509,26510,26511,26512,26513,26514,26516,26517,26520], +[1,2349,18195], +[0,18196,18197,18198,2488], +[0,1149,1326,26528,3263], +[0,1596,2759,3188,2899,3202,4170], +[0,158,1398,26532,3729,24800,16662,16661,21881,20637,18048,20639,12712,26533,26534,6870,26535,1504,14908,23119,26536,26537,26539,9135,26541,26542,26543,6792,13615], +"spawn-", +"please", +"spawn-please", +[1,2349,18204], +"@types/temp", +[0,18205,18206,18207,2531], +[0,26548,26551,16053,25874,1519,1522,26552,25190,2934,26553,3445,3762,16057,17798], +[0,2829,26192,3310,26556,1187], +[0,3088,36,27,13333,2671,5995,2665,3304,5122], +[1,2349,18209], +[0,18210,18211,18212,4194], +[0,1437,1513,1676,1836,16473,25623,26563,2089,2149,2572,26565,2584,1161,2822,26567,26568,3188,3467,3718,12443,9340,3992,3999,26572,26573,4449,18071,4549,18002,4555,12447,3348,12449,4707,4728,26574,4747], +[0,26578,5245,12396,7637,26579,26581,4874,6520,9315,7819,26584,22092,4892,1610,19878,4207,4294,91,4579], +[0,1783,26586,26587,5472,1745], +[1,2349,18214], +[0,18215,18216,18217,4194], +[0,5012], +[0,442,816,6373,1317,19839,1567,1177,1894,23535,4042,4228,4232,1984], +[0,1871,26597,12938,17950,15139], +[1,2349,18219], +[0,18221,18222,18223,2776], +"bplist-parser", +[0,4729,1170,2832,4484,2018,1209,2738,7665,18730], +[0,1177,4508,9241,91,4874,3400,13204,4870,1011,10638,26606,1009], +[0,26608,21009,91,1723,10339,17623,5284,26611,26614,26617,26620,26622,24090,26624,26626,16697,26628,26631,1745,26632,26633,3091], +[1,2349,18238], +"alex", +[3,14237,14], +"bjs", +[2,18226,18227], +[2,1884,2081], +"fbjs-scripts", +"gulp-d", +"erequire", +[2,18231,18232], +"stats", +[2,18234,4408], +"webpack-st", +[2,18236,2187], +[0,18242,18243,18244,2540], +"draftjs", +"typed-binary", +"richtext", +[0,1437,2051,2205,4600,3249,3505,4300], +[0,2228,2899,4170,2240], +[0,1370,2323,17461,21779], +[1,2349,18246], +[0,0,18247,18249,2540], +[0,8780,4874,1166,2215,21537,4400,4481,1906], +"just-extend", +[0,7148,3188,7048,17455,17453,7204,6857,3403,5933,7029,26647,26648,6899,7147,2150,17462,16503], +[3,5371,20], +[1,2349,18257], +"ring", +"inline-string", +[2,18250,18253], +[2,18250,2278], +"cypress-", +[0,0,0,18261,2531], +"file-upload", +[2,18256,18258], +[2,2918,4195], +[0,7048], +[1,2349,18264], +"dragndrop", +[0,18268,18269,18270,2540], +" and drop", +[2,7518,18265], +[3,12322,11], +[0,10780,1139,1301,1362,26657,2866,26658,3507,4545,4736], +[0,4874,1389,26662,26663,1177,26664,2899,1241,91,4535], +[0,20697,1936,26666,4718,1783,5980], +[0,18273,29732,29735,34552], +"tsutils", +[0,18274,26675,26677,26678,26681,26147,26694,26412,26685,28085,28976,29686,1416,8536,6809,2593,3519,3747,89,3824,3951,4094,7800,4521,3348], +[2,18283,18291], +"dts-critic", +[3,7935,17], +[2,18276,594], +[2,15438,57], +[2,18276,18278], +"versions", +[2,4524,18280], +[2,18276,18281], +"@nestjs/c", +[3,15891,13], +[2,18284,4299], +[3,7729,14], +"able-str", +"ingify", +[2,18287,18288], +[2,18286,18289], +"ache-manager", +[1,2349,18293], +[0,0,18294,18296,2531], +[0,19181,26706,578,583,587,32379,26707,4870,4874,4880,4883,1009,1011,1497,1637,1177,4828,1961,1209,3286,3561,3566,3613,26710,26712,1894,89,3824,4164,9348,26713,4493,91], +[2,11513,2527], +[0,181,26709,13083,4403,26715,26717,89,26720,91,5284,6400,4967,6073,181,26726,1487,17758,26727,4627], +[1,2349,18298], +[0,0,18299,2523,2531], +[0,19987,19989,19988,2012,7115], +[1,2349,18301], +[0,0,18302,18303,34552], +[0,4874,1009,1011,7677,1165,1414,1177,1883,1915,2832,26743,2278,4320,5978,91,1983,26744,1984], +[0,26741,26746,1932,26747,590], +[1,2349,18305], +[0,18306,11693,18307,2540], +[0,3368], +[0,1783,26755,6892], +[1,2349,18309], +[0,18310,18311,18342,34552], +[0,1139,18089,26761,26762,26763,26764], +[0,5583,811,816,10615,1111,1317,1414,1429,1177,1903,2026,2193,2600,2805,5944,3112,7612,3114,26767,26770,26772,26774,26776,7617,7648,2899,26777,3278,4042,4167,4342], +"dw-neit-", +[2,18312,1512], +"dw-neit-c", +[2,18314,11163], +[2,18315,3007], +[2,18312,45], +[3,1793,11], +"-des", +"ign-react-slick", +[2,18319,18320], +[2,18318,18321], +"rc-co", +"mponent", +[2,12796,9948], +[2,18324,18325], +[2,18323,18326], +[2,18312,18327], +[3,18328,21], +"e-observer", +[2,15557,18330], +[2,18329,18331], +[2,18329,11194], +[2,18329,11184], +[3,18334,22], +[2,18335,13168], +[3,18328,12], +"ascader", +[2,18337,18338], +[2,18337,5449], +[3,18328,13], +[0,1783,57,20627,3105,26780], +"llapse", +[2,18341,18343], +[3,18328,11], +"dialog", +[2,18345,18346], +[3,18347,12], +[2,18348,9997], +[3,18349,13], +[2,18350,11206], +[1,2349,18366], +"field-form", +[2,18345,18353], +[2,18345,158], +[3,18355,12], +[2,18356,1020], +[2,18357,11211], +"mentions", +[2,18345,18359], +[3,18360,14], +[2,18361,11215], +[3,18360,12], +[2,18363,11218], +[2,18345,9044], +[0,0,18395,18396,4194], +"pagination", +[2,18345,18367], +[3,18368,12], +[2,18369,9947], +[2,18369,10148], +[2,18345,6882], +[3,18372,12], +[2,18373,11227], +"segmented", +[2,18345,18375], +[3,18376,13], +[2,18377,4021], +[3,18376,12], +[2,18379,10205], +[2,18379,11234], +[2,18379,10222], +[2,18345,17966], +[3,18383,12], +[2,18384,11241], +[2,18384,11243], +[2,18345,614], +[3,18383,14], +[2,18388,2699], +"ooltip", +[2,18384,18390], +[2,18386,11245], +[3,18387,12], +[2,18393,184], +[0,5328,1166,5946,3165,4232,4255], +[0,1783,3105,26780,10345,26786], +[1,2349,18398], +[0,0,18399,18400,34552], +[0,5583,816,10615,1414,1177,1903,3105,7648,2899,4042], +[0,26780,3105,1783], +[1,2349,18403], +"control flow", +[0,0,18399,18404,4194], +[0,26780,3105,1783,3113,26796,26799,26800], +[1,2349,18406], +[0,18408,18410,18414,2540], +"zrender", +[0,1525,1792,2051,2600,3524,4001,26806,4431,4449], +"@lang/rollup-plugin-dts", +[0,1596,2759,26808,4255,4389], +[2,14678,17116], +[2,9816,1974], +"apache", +[0,1783,2636,6270,1283], +"data-viz", +[1,2349,18417], +[0,0,18418,18419,2540], +[0,4874,1414,1437,1894,3985,3998,4294,4505,91,1906], +[0,14903,1783,26815,176,15847,2585], +[2,6038,1541], +"gulp-e", +"xclude-gitignore", +[2,18421,18422], +"gulp-rep", +[2,18424,2902], +"gulp-tap", +"linez", +"os-locale", +[1,2349,18436], +[3,5248,9], +"t-stream", +[2,18430,18431], +[3,11320,11], +"ugh2", +[2,18433,18434], +[0,0,18437,18441,2457], +[0,17212,4874,4880,4883,33492,668,89,3824,3857,15728,26827,91,188], +"@types/vinyl", +"-fs", +[2,18438,18439], +[0,1783,33510,89,3698,1219,188,12072,8588,23332,33512,3857,1936], +"fix", +"enforce", +"gulpplugin", +[1,2349,18446], +[0,18447,16497,18448,2540], +[0,1537,26835,2226,26836,26837,26838,3183,26839,22230,4001,26840,22557], +[0,26786,20627,1739,1746,1745,26842,156,4017,3966,1783,5980,1932,9591,11043,4001,26843,8924,3902,176,26845,26847,10631,6033], +[1,2349,18450], +[0,18451,18452,18453,2531], +[0,3167,27252,18578,26852,28035,28719,28722,26987,4290], +[0,442,19344,1091,1166,1414,26854,1177,1942,1953,1964,1982,26855,2205,2822,26696,2858,3105,26770,26776,7617,17250,17269,3400,4409,4452,91,2924,4677], +[0,1783,671,5980,26859,3124], +[1,2349,18457], +"keepalive", +[2,4575,18455], +[0,18465,18466,18467,2402], +"aliasify", +"backport", +[3,2250,18], +[2,18460,3227], +"run", +"grunt-run", +[2,4431,4226], +[0,1525,1696,2687,2822,2858,26865,3124,3105,3181,26866,25648,27921], +[0,1166,17269,1906], +[0,1783,3124,200,13326], +[1,2349,18469], +[0,0,18470,18471,2540], +[0,5517,26873,26876,16607,6063,6065,16608,16612,1448,20627,1610,12607,668,26739,1177,2600,3105,26878,26880,26881,4039,4131,23878,4484,91], +[0,1783,26885,1936], +[1,2349,18474], +[2,8243,3038], +[0,18475,18476,6617,2540], +[0,9569,9573,7610,9577,9548,9568,9547,2745,9556,9565,9558,9560,9552,9562,9566,3023,3032,9563,3105,3114,9580,9584,5961,9554,4110,9550], +[0,1389,1448,2070,9588,2899,9586,4255,4257], +[1,2349,18478], +[0,18485,0,2523,2540], +"lazy-val", +"dmg-builder", +"builder-", +[2,18481,614], +"builder-lib", +[2,10735,18483], +[0,1804,26895], +[1,2349,18489], +"-runtime", +[2,18482,18487], +[0,18492,0,6262,2402], +"-ci", +"@types/is-ci", +[0,1282,26902,2926,3060,3070,3744,26906,3911,3935,26908,4649], +"nsis", +"dmg", +"msi", +"setup", +"Windows", +"OS X", +"MacOS", +"Mac", +"appx", +"snap", +"flatpak", +[1,2349,18505], +[0,18506,18507,18515,4194], +[0,97,26915,25212,26917,13746,26921,4127,15918,26922], +[0,53,13052,5825,83,87,94,19961,6503,1009,1011,1145,1195,1414,1503,1700,26703,1854,1177,1895,1903,1938,1951,1953,1955,1958,2024,11425,2061,2070,2323,2338,2036,26924,2297,2895,2900,2904,2923,4922,2925,3188,2899,3200,26925,26927,26930,26932,26933,26935,1894,3729,4193,26940,4441,4474,91,2924,26941], +"asar", +[2,8243,18508], +"notarize", +[2,8243,18510], +"osx-sign", +[2,8243,18512], +[2,8243,14566], +[0,18108,26944,5746,26934,26945,57,7256,6988,14642,26946,26947,17679,2275], +[1,2349,18519], +"-windows-exe", +[2,1615,18517], +[0,18520,18530,2523,2402], +[0,6641,26956,13651], +"galactus", +[3,2179,12], +"info", +[2,18522,18523], +"junk", +"author", +"parse-author", +"rcedit", +[2,27093,33977], +[0,2899,2924], +[1,2349,18532], +[0,0,18533,18534,2488], +[0,2899,4255], +[0,3135,26963,26965], +[3,8256,10], +"ownload", +[2,18535,18536], +[1,2349,18539], +[0,18541,18542,18543,2540], +"home-path", +[0,9363,9315,26972,23289,12429,3167,26981,26983,26985,26986,26987,26990], +[0,4874,1414,26992,668,17232,23276,2581,3140,26993,1894,3985,3998,4072,4505,91,1906], +[0,6892,1783,26885,26995,26564,1644,5341,1633,23266,6435,614], +[1,2349,18546], +"wonderful-fetch", +[0,18547,18548,18549,2531], +[0,12396,9363,23247,23289,27003,27006,23254,4555,12449], +[0,4874,23262,1414,2581,2588,3137,27008,27010,1894,3985,3998,4505,91,1906], +[0,23266,26564,26995,2587,23267,614,6435,1783,1936], +[1,2349,18553], +"-processor", +[2,6870,18551], +[0,0,18554,18556,2776], +[0,1091,10738], +"grunt-banner", +[0,2382,27017,27018,1623], +[1,2349,18558], +[0,18559,0,18560,2531], +[0,27073,27076], +[0,27078,2325,5576,24093,27080,27081,27083,27084,3143,27085,18037], +"@vue/comp", +"onent", +"iler-utils", +[2,4312,18563], +[2,18562,18564], +[2,18561,18565], +[1,2349,18568], +[0,18577,18588,18600,2540], +"algoliasearch", +"vue-jsx", +[2,1226,18570], +[3,1280,9], +[2,17006,18487], +[2,18572,18573], +"cp-cli", +[3,17554,15], +[0,18529,33978,33980,33981,33983,33990,33998,34001,27092,27094,26256,27472,27096,4484], +[2,27009,12442], +"lemefe", +[2,18576,18579], +[3,2095,9], +"gulp-cssmin", +"-editor-middleware", +[2,8427,18583], +[3,3112,13], +"hain", +[2,18585,18586], +[0,5087,27098,4874,1130,1145,1398,2651,2675,27099,1192,3502,1894,3729,3923,4039,4393,4468,4469,4474,4487,27101,91,1002,614,2924,4677,4681], +"version-cli", +[2,9951,18589], +"transl", +[2,18591,6917], +"uppe", +"rcamelcase", +[2,18593,18594], +[3,4645,13], +"es2015-co", +[2,18597,14717], +[2,18596,18598], +[0,2150,17462,27103,3150,3144,2090,6771,2944,3151,27105,4607,1973,5472,3212,27106,27108,27110,27111,27112,27113,27114,27119], +[1,2349,18602], +[0,0,18603,18604,2531], +[0,5535,5366,5087,27124,19446,4874,1009,1011,1317,1610,1177,1895,1939,1955,2024,27125,1192,3044,3057,3117,27126,13824,19445,27127,3467,1894,4039,4042,4069,4073,4075,4201,4468,4474,4484,91], +[0,7906,27130,2325,6681], +[1,2349,18606], +[0,0,18607,18608,34552], +[0,1429,2323,4193,27136,2463,4196,2447,2436,2839], +[0,2325,27138,2869,13901], +"brorand", +"hash.js", +"hmac-drbg", +"istic-assert", +[2,6907,18612], +[3,18613,13], +[2,1619,594], +[2,18614,18615], +[1,2349,18618], +[0,18623,18624,18625,4194], +"EC", +"Elliptic", +"curve", +"Cryptography", +[0,25911,3923], +[0,1329,15990,1596,1177,2759,2899,4170], +[0,2150,3151], +[1,2349,18628], +"@ladjs/consolidate", +[0,0,18630,18631,2531], +"@ladjs/i18n", +[0,2025,2899,2228,2240,2300,2273,3760], +[0,3151,1973,3101,2041,7046,1398], +"get-paths", +"juice", +"preview-email", +"@jimp/core", +"-sendgrid", +[2,3361,18636], +[1,2349,18642], +"lad", +"lass", +"mail", +[0,0,18644,2523,2540], +"mailchimp", +[0,2899,4170,640], +"mailgun", +"mandrill", +"moonmail", +"postmark", +"sendgrid", +[1,2349,18651], +[0,8864,7950,7951,34552], +[1,2349,18653], +[0,0,18654,18662,2531], +[0,811,8850,816,13789,7892,1166,27163,1532,1677,27164,27166,2020,2205,2709,27171,18183,27168,3919,11891,4042,4057,4060,13781,27162,4481,4507,91,1906,4748], +[3,7639,9], +"ilparser", +[2,18655,18656], +"mtp-server", +[2,5051,18658], +"mailparser", +"smtp-server", +[0,200,20052,614,6435,1383,6478,1523,3924,3157,27173,27174,57,5675,6802,6847,8429,7201], +[1,2349,18664], +[0,0,18665,18672,2540], +[0,4856,6503,4874,1429,1540,2899,91,2924,4677], +"yam", +"sane", +"dag-map", +"p-defer", +"tree-sync", +"console-ui", +[0,1698,6899,2051,1496,3048,1388], +"is-git-url", +[1,2349,18676], +"quick-temp", +[0,0,18677,2523,2540], +[0,27184,2759], +"content-tag", +"core-object", +[1,2349,18681], +[0,18682,18696,18711,2540], +[0,1457,1525,1676,2226,16085,27189,3170,27190,27191], +"capture-exit", +[2,26872,33868], +"stew", +[2,1379,18685], +[2,1379,1676], +"base-url", +[2,1463,18688], +"watch-", +"detector", +[2,18690,18691], +[2,1379,5614], +"broccoli-s", +[2,18694,5585], +[0,19181,442,27194,10723,5245,8778,4874,27196,1414,1177,1938,1953,2203,2899,1894,3980,4452,91], +"-or-copy", +[2,7100,18697], +[2,1379,9381], +"-graph", +[2,14940,18700], +"is-language-code", +"-posix-path", +[2,13626,18703], +"-project", +[2,2116,18705], +[3,18701,11], +[2,18707,2942], +[2,11338,1781], +[2,6333,18709], +[0,2947,12479,2090,13755,5351,5353,1179,1783,5352,3160,4745], +[1,2349,18724], +"map-series", +[2,9466,18713], +[3,1381,10], +"iddleware", +[2,18715,18716], +"trees", +"low-trees", +[2,18694,18719], +".hash.helper", +[2,1862,18721], +[3,7648,14], +[0,18738,0,2523,2402], +"rminal", +[2,18723,18725], +"fs-monitor", +[2,18707,18727], +[2,7077,2849], +[2,4099,18729], +[3,18693,12], +"fig-loader", +[2,18731,18732], +[3,18733,16], +[2,18734,4068], +"-reducer", +[2,1378,18736], +[0,27202,13223,2674,27203,27206,4039,4135,4390,4449], +[1,2349,18749], +"@pnpm/find-workspace-dir", +"-works", +"pace-root", +[2,18741,18742], +[2,4749,18743], +[2,2103,18744], +"ulate-cache-key-for-tree", +[2,3563,18746], +"is-pa", +[0,18754,18755,2523,4194], +"missing", +"ckage-missing", +[2,18748,18751], +[2,1828,18752], +[0,4590,1676,3164,3494], +[0,2899,1177,2759,4342,1954,1938,1958,1903,1948,1970], +"-registry", +[2,4358,18756], +[2,1828,18757], +[1,2349,18775], +"yuidocjs", +"chai-files", +"yuidoc", +"-ember-cli-theme", +[2,18762,18763], +[3,10419,19], +[2,18765,2022], +[3,18753,11], +"-test-", +[2,18768,6706], +[2,2270,18769], +[2,18767,18770], +[3,1827,11], +"lueprint-test-helpers", +[2,18772,18773], +[0,0,18780,18781,2531], +"app-kit", +"ember", +[2,5802,18776], +"ember.js", +[0,2899,2759], +[0,27,3164], +[1,2349,18783], +[0,18797,18798,18808,2457], +"amd-name-resolver", +[3,1201,14], +"ebug-macros", +[2,18785,18786], +[3,12186,15], +"ber-data-packages-polyfill", +[2,18788,18789], +[3,18790,19], +"modules-", +[2,4610,6422], +[2,18792,18793], +[2,18791,18794], +"broccoli-b", +[0,53,61,5717,4851,5240,5874,5838,87,14128,90,8862,5583,811,8850,816,27221,27223,1165,7913,27225,27228,22829,1405,1420,1874,2098,2553,2929,3060,3561,3714,4042,13879,10854,4073,4076,4079,11481,4072,11482,4484,91], +[0,48,13693,27232,5522,107,1193,1610,27234,1177,27238,1895,1955,1999,2151,2675,1192,2990,27244,1894,3957,4039,4165,4294], +"-transpiler", +[2,13830,18799], +[2,18796,18800], +[2,6324,6706], +[2,1827,18802], +"version-ch", +"ecker", +[2,18804,18805], +[2,1828,18806], +[0,6374,4042,27246], +"@ember/optional-features", +"@ember/", +[2,18810,1871], +[2,18810,13281], +"@glimmer/component", +"@glimmer/", +[2,18814,17357], +[3,10614,11], +"s/lerna-changelog", +[2,4406,18817], +[2,18816,18818], +"ember-a", +[1,2349,18836], +"uto-import", +[2,18820,18822], +[2,1705,1524], +[2,1828,18824], +[3,18771,12], +"-live-reload", +[2,2429,18827], +[2,18826,18828], +"initializers", +[2,3614,18830], +[2,5802,18831], +"ember-qunit", +[2,5802,14056], +[2,5802,4225], +[0,18837,0,18842,2540], +[0,5245,1676,26972,23289,27252,27256,17995,27259,27262,26981,27263,26985,27265,27003,27267,26986,26987], +"-channel-url", +[2,18835,18838], +[2,15508,2478], +"loader.js", +[0,20627,4643,3987,1936,16892,1783,26885,5980,4549,1644,57,1932,3729,3984,8924,3902,11326,207], +[1,2349,18845], +"ember-addon", +[0,18846,18847,18848,34552], +[0,15643,3530], +[0,2899,3181,27275,2398], +[0,16159,27277,27278,18132,27280,7256,24440,27281,2090,1586,7131,2100,2070,21543,21544,24441,27282,27285,27287,3529,13777,6421,19051,3170,3181,3249,27289,27291,3403,13017,11601,27293,1108,6961,6920,4166,4259,21520], +[1,2349,18850], +[0,0,18861,18862,2540], +"edition-utils", +[2,18810,18851], +[3,4644,15], +[2,18853,5218], +[2,18791,18854], +"-inline-precompile", +[2,1829,18856], +[2,1199,18857], +"broccoli-p", +"ersi", +[0,27299,7746,4874,1009,1011,1437,27301,3173,1894,23901,27302,91], +[0,7188,2090,3171,7305,7070,614], +"stent-filter", +[2,18860,18863], +[2,18859,18864], +[1,2349,18869], +"code-equality-assertions", +"js-string-escape", +[0,18874,16100,18875,2402], +"@emb", +"roider/test-setup", +[2,18870,18871], +[2,1828,1462], +[0,7305], +[0,3171,553], +"ort-", +"-global", +[2,13527,18877], +[1,2349,18880], +[0,11577,11578,18881,2540], +[0,27314,27315,27316,27317,27318,27319,27320,27322,27323,27315,27325,27326,27328,27330,27332,27333,27337,27338,27340,27341,27343,2262,7287,27334,27344,27346,27348,27350,27353,27355,27357,27358,17697,27359,27360,17737,17739,5284,17625,17626,676,91,17627,6869,4799,6915,6333,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,5933,1451,7914,27363,27365,17651,6899,17720,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,27366,6681,17740,1745,17116], +[1,2349,18884], +"dat", +[0,18885,18887,18893,2457], +[0,4121,4388], +"ember-s", +[0,48,53,87,192,5467,442,27928,19344,4874,1367,1610,1622,1628,1700,1701,1854,1177,1895,20281,1938,1939,1942,1953,1955,1982,2092,2203,2675,1192,2780,2832,2990,3144,3400,1894,2278,4111,4257,91,4523,2924,4677,4681], +"tyleguide", +[2,18886,18888], +[3,1243,11], +[2,18890,4486], +[2,5802,18891], +[0,2924,1623,7682,11498], +"ember-try", +[2,1921,2907], +[1,2349,18897], +[0,18898,34606,18900,34552], +[0,27377,842,1462,27379,1676,668,2105,30621,16860,28134,18899,27380,4072,27385,27388], +"oxc-minify", +[0,3178,16862,676,1623,11807,1936,14357], +"@emmetio/abbreviation", +"@emmetio/", +"css-a", +"bbreviation", +[2,18903,18904], +[2,18902,18905], +[1,2349,18908], +[0,18910,18911,2523,2457], +"coding", +[0,27404], +[0,4384,4483,3188,4508,1894,4874], +[1,2349,18913], +[0,0,18914,18915,2540], +[0,1158,3421,4389,1177,3410,2708,1159,4103,13614], +[0,6478,7128,57,3460], +[1,2349,18917], +[0,18918,18919,18920,2540], +[0,1525,3313], +[0,22102,1192,1894,4468,91], +[0,27425,27428,21655], +[1,2349,18922], +[0,0,18923,18925,2488], +[0,27407,4874,13680,1414,1895,1894,4384,4474,4508,91], +"finish", +[0,7148,7204,7161,7048,4014,6899,970], +[1,2349,18927], +[0,18928,18929,2523,2531], +[0,1082,3510,15450,27438], +[0,4874,7677,1446,1177,1905,5210,2807,1894,15452,91,4543,1984], +[1,2349,18931], +[0,0,18932,18933,2540], +[0,53,61,71,83,87,92,97,27445,2126], +[0,3190,27447,13795,5128,89,6071,27448,11415,27449,27456,27458,27459], +[1,2349,18935], +[0,18936,18937,18938,2531], +[0,27464], +[0,3190,27464,27468], +[0,3190,27447,5128,89,6071,27448], +[1,2349,18940], +[0,18941,18942,18945,2540], +[0,2591,3242,1687,2070,1676,4747,2105,2822,1457,3181,3527,7801,3074,4748,27476,17450,4351,27481,4300,1874,4143], +[0,3421,1429,2931,1776,2297,4193,27510,1177,3278,3984,4039,4042,4135,2203,26079,2924,1894,1610,442,27500,91,27501,4874,2665,2900,3105,4677,4892,1509,3123,3401,10630,62,27490,27497,27506,27507,1953,17529,3125,27509,5946,3114,4923,3107,8850,27499,8862,2904,2915,2881,811,27504,4079,13866,4066,816,23652,27495,27487], +"entitify", +"entity", +[0,2899,1973,5982,6969,4384,5472,1429,6468,1166,1192,4389,2765,2297], +[1,2349,18947], +[0,18948,18949,18950,34552], +[0,7058,3758], +[0,1429,2899,25928,91], +[0,2899,6533,3758,3197], +"enumeration", +"datatype", +[1,2349,18954], +[0,18955,18956,18957,2531], +[0,1676,3135,3188,4294,6523], +[0,826,1429,6524,1177,2899,4039,27525,27526], +[0,2899,2793,16237], +[1,2349,18959], +[0,0,0,18960,2457], +[0,2899,16237,27532,4504], +[1,2349,18962], +[0,0,18967,18970,2531], +[3,15801,15], +[2,18963,200], +"ify-object", +[2,4745,18965], +[0,1429,1177,21470,2899,4039,4135], +"issues", +"reporting", +[0,3212,2150,1973,1182,6771,3151], +"diagnostics", +[1,2349,18973], +[0,18974,18975,18987,4194], +[0,27544,2159,15312,27547,2571,2756,3431], +[0,5517,13614,23237,27552,27555,27557,27559,27562,27564,27567,27568,27570,27571,27573,27575,27576,4874,27578,27580,19325,1159,9254,1855,1177,2011,2133,2569,2708,3410,3421,4103,4389], +[3,1143,20], +"function.", +".name", +[2,6688,18978], +[2,18977,18979], +[3,2620,13], +[2,18981,3053], +"oolean-object", +[2,15644,18983], +"allable", +"is-callable", +[0,5472,3212,3048,3205,6692,6822,1973,6865,6739], +"umber-object", +[2,13631,18988], +"is-string", +[1,2349,18998], +"is-subset", +[2,3024,1867], +[2,3436,6693], +"rst-selector-parser", +[3,11434,17], +[2,18996,6678], +[0,18999,19004,19008,2540], +[0,12929,3369], +" rendering", +[2,4161,19000], +"Render", +[2,4161,19002], +[0,1610,1177,2899], +"test utils", +" helpers", +[2,6468,19006], +[0,3209,7190,14419,14416,14510,22228,1973,3212,13106], +[1,2349,19010], +[0,0,7927,19011,34552], +[0,1973,3212,202,2150,2184], +[1,2349,19013], +[0,0,19014,19015,2531], +[0,2899,4042,4076,4170,91], +[0,1666,3212,1973], +[1,2349,19021], +"airbnb-", +[2,19017,3744], +"fromentries", +[2,3436,19019], +[0,0,19022,19023,34552], +[0,2759,2272,4193,27601,4616], +[0,3212,13106,3209,1237,2325,2275,1973,27603,5472,6969], +[1,2349,19025], +[0,5623,19026,19027,2531], +[0,2323,2372,27608,2436,2447,2463,27610,2272,2839,2924], +[0,3212,27612,27614], +[1,2349,19029], +[0,19030,19031,19032,2540], +[0,7058,2070,2929,1209,11993,3084,3310,2015,27624,27623], +[0,2812,4481,27633,1192,3241,27649,3533,1676,27637,1409,27635,1759,1177,3078,27658,1096,2738,3363,27656,4474,4709,27636,27643,2774,27648,1894,1596,27641,2777,3379,4342,27645,3747,91,27659,4874,27632,27655,27634,27657,27628,27644,27630,27647,25710,27660,27640,1954,27652,826,27626,1958,1895,1955,1966], +[0,27662,14584,5130,5995,27664,17829,14586,3166,11631,24090,27666], +[1,2349,19034], +[0,0,19035,19037,2531], +[0,2907,4042,1610,91,4874,2915], +[2,6296,3741], +[0,3220,1666,6901,1644,1671,2649,2679,6728,6804], +"codependence", +[1,2349,19040], +[0,19061,19062,19063,2540], +" for es6", +[2,4354,19041], +"check for ", +[2,19043,5260], +"es check", +"es matching", +"es version", +" check", +[2,5286,19048], +[3,19049,11], +"matching", +[2,19050,19051], +[2,19050,15525], +"js version", +[2,19054,19048], +[3,19055,11], +[2,19056,19051], +"test ", +[2,19058,19054], +[2,19058,19053], +[0,3220], +[0,2228,2247,2273,2277,2281,17565,91], +[0,3220,1666,6901,27679,27680,27681,27678,16626], +[1,2349,19068], +"bigints", +"has-bigints", +"intl-", +[0,19075,19079,19085,34552], +"back-symbol", +[2,9925,19069], +[2,19067,19070], +[3,5742,14], +[2,3094,19072], +"make-a", +[0,2858,27688,27692,27693,27696,3502,1894,27700,27702,27703,4745], +"unction", +"sync-function", +[2,19074,19077], +[0,27709,32818,7677,668,21290,3541,3985,27711,91,1984,27714], +"reflect", +".ownkeys", +[2,19080,19081], +[2,7315,7262], +[2,5511,19083], +[0,6038,4967,6400,27708,21290,4745], +[1,2349,19087], +[0,0,19088,19089,2402], +[0,442,4874,7677,1177,1895,1966,1982,1894,4039,4508,4514,17223,91,4523,1983,26744,1984], +[0,27722,27723,27724,5675,27725,6400,5995], +[1,2349,19091], +[0,19095,19098,19103,4194], +"es6-symbol", +"esniff", +"next-tick", +[0,16003,32967,16005,16000,19267,15999,20870,23721,19282,6372,27731,1364,1367,23723,1395,1505,1525,1575,1610,1640,1759,1853,2026,9243,2040,2117,27735,27737,2626,2814,7796,3162,3230,27740,3237,3527,23726,4148], +"plain", +[2,19096,4007], +[0,53,68,87,27742,27743,1195,1429,1465,1540,1584,1628,1651,1177,1881,1938,1982,26154,2092,2675,2899,12690,3322,3363,4307,4342,2924,4677], +"ecmascript5", +"ecmascript6", +"extensions", +"addons", +[0,20897,27746,6910,18035,27747,8626,8298,27749,1550,3230,27750,27751,27752], +[1,2349,19105], +[0,19106,19107,19109,4194], +[0,1395,27759,27762], +[0,3421,4481,29749,1429,1437,2899,4193,27764,4747,1177,4135,27765,2026,2822,4474,1894,4196,91,5307,4856,4874,1436,27767,6503,6513,27768,5254,6494,27772,27775,27776,27779,6512,27781,27782,4232,1951,1978,1895,1955,608,603,1011,27786,15115,27790,27792,1009,10964,549], +"es5 shim", +[0,3230,13392,11489], +[1,2349,19111], +[0,19112,19113,19115,2402], +[0,27798,3230,27799,27800,3242,27801], +[0,30604,29957,4874,27803,27805,27807,1091,1414,1448,18192,1177,13850,2026,2151,2600,21630,3044,27810,20451,3127,3188,2899,3220,27786,12690,29780,3275,3754,4193,29998,91,4523,3348], +"rettime", +[0,3230,1746,11415,2844,18035,27812,2382,27814,3766,18037,3469,1747], +[1,2349,19117], +[0,19131,19133,19134,2531], +"json3", +[2,1379,4042], +"git-repo-", +[2,19120,15525], +[2,1379,4650], +[2,1379,4535], +"-phantom", +[2,3736,19124], +"6-plugin-strip-class-callcheck", +[2,1172,19126], +[3,14198,32], +"nstants", +[2,19128,19129], +[0,1605,1541,1292,4218,4545,4220,27822], +"futures", +[0,2228], +[0,3233,27826,27827,20863,27829,27830], +[1,2349,19136], +[0,19137,19133,19139,2531], +[0,1541,1544,3233,27835,27822], +[3,7872,9], +[0,3233,27837,27826,27827,27838,12619,20863,27840], +[1,2349,19141], +[0,19142,19143,19144,4194], +[0,27847,1676,3230,27849,27852,27855,27856,27857,27859,3427], +[0,1166,1503,1177,1903,1920,1938,1954,1958,1970,27861,27866,27869,27872,27873,27874,27875,3421], +[0,3236,3230,1550,13392], +"es6-tests", +[2,12790,19145], +[1,2349,19148], +[0,19149,19150,19152,2531], +[0,1304,1676,1704,3440,16128], +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4237,4342], +[2,31089,9224], +[0,2026,27,2942,2663], +[2,31715,31719], +[1,2349,19155], +[0,7949,7950,7951,2402], +[1,2349,19157], +[0,19158,19159,19160,2402], +[0,4729,4038,1676,27764,4238,27897,27899,3183,9241,3084,27902,1537,27910,3923,27905,14731], +[0,3421,1429,4389,4193,1177,2202,3188,4039,4170,4216,668,2203,4474,1457,1894,27912,442,3697,3980,91,4856,4874,19325,6513,1834,27918,27920,19181,12310,5536,5476,10936,27924,1938,1895,1955,1011,1567,5478,27915,1009,10614], +[0,3241,27927,20001,20003], +"special", +[1,2349,19163], +[0,0,19164,2523,4194], +[0,2675,2899,1177,1894,2025,2990], +[1,2349,19166], +[0,19169,19170,19173,2402], +[2,18756,4219], +[2,1370,19167], +[0,27936,1525,1676,25625,25635], +[0,192,5467,16607,6065,16608,16612,2899,4131,4255], +"-everywhere", +[2,10906,19171], +[0,18035,3243,14872,36,27939,26472,27940,27942,25635,27944,26472,27945,13531,27948], +[1,2349,19175], +[0,19176,19178,19191,2457], +[0,27959,617,9213,27962,977,2220,27964,9218,9219,3509,3527,19114,4266,9221,4454,4507,27955,4747], +[3,442,8], +[0,192,5467,19151,19181,442,17982,5497,9225,9226,8648,6494,27966,4874,19153,1009,1011,5474,1170,13662,1527,1610,1613,1652,668,8161,1177,1895,1955,2026,2078,19213,2070,2832,27967,2931,2990,27969,1894,23535,3957,4039,9245,4493,91,4523,4548,4027,1984,9250,2924,9258,3244], +"config-array", +[2,19177,19179], +[2,19177,1998], +"@humanwhocodes/module-importer", +[3,19182,15], +[2,19183,1153], +"@nodelib/fs.walk", +"esquery", +"imurmurhash", +"-without-jsonify", +[2,2851,19188], +"levn", +[0,5592,3212,8788,6812,6688,36,11100,1852,5472,6400,10768], +"@eslint/co", +[2,19192,23], +[2,442,1803], +"@trunkio/launcher", +[1,2349,19197], +[0,19198,19199,19200,2540], +[0,27978,1410,1537,3188,3427,1000,1695], +[0,1693,2026,2139,27981,2899,3421,4039,4255,27984], +[0,1669,3689,15237,2139,27986,2026,2663], +[1,2349,19211], +[2,3192,5130], +[2,11095,19202], +[3,1992,9], +"lease", +[2,19204,19205], +"eslint-r", +"ule-composer", +[2,19207,19208], +"eslump", +[0,19212,8176,19214,2540], +[0,22970,27992,3181], +"fs-teardown", +[0,18132,2100,2070,21543,21544,3529,13777,3181,13017,11601,21520], +[1,2349,19217], +"metascraper", +[0,19228,19229,19233,34552], +"-description", +[2,19216,19218], +[3,19219,12], +[2,19220,158], +[2,19220,11255], +[2,19222,4147], +[2,19220,17913], +"node-po", +"lyfill-webpack-plugin", +[2,19225,19226], +[0,4538,2657,4100], +[0,3421,27999,2899,1177,3188,4039,4339,4012,1948], +"npm-license", +"polyfills", +[2,4065,19231], +[0,2090,9229,2141,3101,6949], +[1,2349,19236], +"yorkie", +[0,19237,19239,19240,2540], +[0,2100,2151,2859,1209,5303,3445,3348], +"sql-escaper", +[0,2765,3421,33373,3980], +[0,1649,1936,28007,3256,28009,28012], +[1,2349,19245], +"ape-runner", +[2,1285,19242], +"eslint-f", +[0,0,19248,19249,2540], +"ind-rules", +[2,19244,19246], +[0,1999,1429,4770,2899,1177,2272,4042,3758,4535], +[0,3257,1283,5354,1797], +[1,2349,19251], +[0,0,19252,19255,2402], +[0,1759,2323,2384,2508,2675,2297,2881,2908,2915,28023,28024,1894,25851,2907,4039,4042,4072,28027], +"using-browser-globals", +[2,12084,19253], +[0,10052,8691,28030,7131,6333,7518], +[1,2349,19257], +[0,19258,19259,2523,2457], +[0,1325,3923,4100,28036], +[0,1087,1177,4127,28038,28039,28040], +[1,2349,19264], +[3,3703,10], +[3,9487,11], +[2,19261,19262], +[0,19265,19266,19268,2540], +[0,3080,24383,18073,2685,19238,28047,28049,28052], +[0,1414,4494,28059,2203,1894,1317,1610,442,3560,91,4874,28056,19181,27928,6473,1895,1955,1011,28058,1009,13188], +[2,15998,23720], +[0,3259,5576,36], +"quality", +"jslint", +"code style", +[1,2349,19274], +"verify", +[0,19275,19276,19277,2457], +[0,21243,3427,21246], +[0,2759,1362,2899], +[0,19138,1862,28067,21244,5194], +[1,2349,19279], +[0,0,19283,19284,2540], +" config", +[2,1177,19280], +"@lezer/highlight", +[0,28072], +[0,3417,202,15525,10057,28074,202,17180,1263], +[1,2349,19287], +[2,15289,17540], +[0,0,19290,2523,2540], +[2,19289,1564], +[3,28155,14], +[0,1326,1525,2070,705,3923,4384,1695], +[1,2349,19292], +[0,0,19293,19294,2540], +[0,4548,4874,91], +[0,28088,2382,705,1781,18037,3166,2378,18035], +[1,2349,19296], +[0,19297,19298,19299,2531], +[0,5012,1634,1639,28094,26902,28095,17011,7917], +[0,10821,10828,10837,5087,4874,5090,4880,1177,10619,2675,28098,1192,2968,28101,2990,1894,3744,89,3824,3904,4039,4232,4469,4484,91,2924,4676,4681,4749], +[0,1623,590,592,3528,2378,2994,89,676,7164,7165,369,4636,4627,4315,28103,5547,5376], +[1,2349,19303], +"eslint-patch", +[2,9112,19301], +[0,0,0,19304,4194], +[0,3348,3778,3265,1002], +[1,2349,19306], +[0,19307,19321,19322,2540], +[0,18509,1170,1809,2151,28115,28116,3079,3275,28118,4108,4232,4449,4747], +" Standard Style", +[2,17626,19308], +"code checker", +"code linter", +"code st", +"andards", +[2,19312,19313], +"policy", +" style", +[2,4255,19316], +[2,590,16792], +"style ", +"style linter", +[0,5245,4864,28120,5087,21621,4874,28123,6520,4892,1009,1011,1804,1177,1895,1955,1192,3541,1894,4039,4469,91,2924,4677], +[0,28125,1804,1896,970,21009], +[1,2349,19324], +[0,19326,19327,19328,2776], +"@types/tape", +[0,4729,3467,4390,2806,3445,3348,1170,1473,2072,4747,20991,1209,3078,3127,3188,3483,4135,3013,4708,4734,2003,3742,4167,1137,1457,1894,3761,4473,3181,28130,1483,4183,4227,91,28132,8612,28133,19499,28135,20949,28136,28137,14774,28142,3762,635,28145,28151,19288,1573,20934,28155,28158,28164,28214,28167], +[0,1429,2228,2675,2899,4193,26212,2759,9241,13214,4856,4874,7819,2314,2990,9357,28177,28178,6513,4892,28180,4870,28182,5254,28184,28187,28189,7812,7749,14352,28192,28195,1431,2258,4232,2247,2283,33046,28203,9417,28206,5244,28211,1567], +[0,3271,91,5284], +[1,2349,19330], +[0,19331,19340,19341,34552], +[0,28219,28223,28224,1759,28225,3232,3519,1552,18730,28228,26940,4545,3348,28230], +[3,19180,15], +[2,19332,3323], +"__js", +[2,5601,19334], +"automd", +"eslint-t", +"ypegen", +[2,19337,19338], +[0,811,8850,816,23689,4874,1009,1610,1177,21564,1938,1953,1958,2765,2766,3275,3421,28234,3752,4039,4042,4193,4232,4474,91], +[0,28238,28241,17134,28242,28243,207,28244,28245,28246,28247,28248,28249,28251,28253,28256,28258,28260,28261,28265,28266,4420,28267,28269,28271,28273,28274,28275,28277,28280], +[1,2349,19343], +[0,19345,19346,19351,2488], +[3,7844,24], +[0,2714,1149,4747,28285], +[0,3421,4616,1177,1596,28287,3980,10614], +"xoxo", +"hugs", +"kisses", +"happy", +[0,8309,28289,28291], +[1,2349,19354], +"happiness", +[0,0,19355,19356,2531], +[0,2899,4039,21228], +[0,200,1585], +[1,2349,19358], +[0,0,19360,19361,2531], +"cabin", +[0,4874,4880,1009,1011,1587,1177,1895,1955,1959,1961,1161,1894,4484,91], +[0,28303,6085,89,1896,28304,12780,190,5995], +[1,2349,19363], +[0,19364,19365,19367,2540], +[0,1149,3188,4545,3012,28310], +[0,1429,2899,4193,705,1525,28312], +"boolean", +[0,18035,27814,21687], +[1,2349,19369], +[0,19370,19371,19372,2531], +[0,2685,4113], +[0,2861,17910,2899,3756,3760,4170,4193,4734], +[0,27,2671,2869,705,5576,15237,9229,2658,25386,17481,8426,8431,977,7436], +[1,2349,19374], +[0,19375,0,19376,2531], +[0,28324,28325,1525,1595,2720], +[0,200,12659,13527,1523,6876,678,4636], +[2,5223,594], +[2,1876,19377], +[1,2349,19381], +"is-bun-module", +[0,19382,19383,19384,4194], +[0,28331,1149,28333,13223,1483,1512,1525,1645,2098,28335,1209,3188,28340,28342,28344,28346,3718,4135,28348,4717,4736], +[0,28353,1429,1705,28356,18420,1177,1942,13231,1951,1966,2822,2899,3297,3421,28358,3938,4153,4167,4193,4734], +[0,3283,28360,5592,5472,15656,28362,4030], +"@types/is-", +[2,19385,2070], +[1,2349,19388], +[0,19389,19391,19392,2540], +[0,30869,28367,28371,28372,13471,13474,13476,30243,13495,13497,13500,13502,28373,1537,2674,28375,27967,2854,28379,3923,28380,4135,4715], +"node-lib", +[0,7709,28384,36559,28387,28390,28394,692,28395,28396,28399,1091,1149,1168,28400,1414,13838,1525,1570,28401,13848,1177,1942,28406,2070,2212,2675,1776,2990,3019,3297,3747,3752,4039,28408,4193,4339], +[0,13539,6681,27838,14029,28411,28413], +[1,2349,19394], +[0,19395,19396,19397,34552], +[0,97,28418,977,12105,3424,28420,3698,28423,3348], +[0,5154,48,53,14167,83,87,90,92,28436,842,16145,966,968,972,20562,974,5087,4874,28426,28425,4880,4883,1165,28435,28433,1540,1637,1192,2780,2802,3244,3286,3561,3566,3640,89,3824,4705], +[0,89,6710,3424,2038,28438,5165,3287,16944,5168,28439], +[1,2349,19406], +[3,16405,17], +"defaults", +[2,19399,19400], +"-azure-pipelines-cli", +[2,1529,19402], +"riendly-formatter", +[2,19244,19404], +[0,0,0,19407,34552], +[0,3286,1149,28445,28446], +[1,2349,19409], +[0,0,0,19410,2402], +[0,1098,1973,5472,3212,8788,4627,12442,7170,9962,11100,28453,28454,4967,6400,1192,2765,1843,13106,7190], +"enhance", +"-visitors", +[2,19411,19412], +[2,1876,594], +"espurify", +[1,2349,19417], +[0,19420,0,19423,2540], +"-spelling-correcter", +[2,3166,19418], +[0,13,28459,8597,1668,4484], +"ava-rule-tester", +[2,1876,19421], +[0,5127,4964,1098,181,5130,4967], +[1,2349,19425], +[0,19426,19427,19428,2540], +[0,2212,3348,4745,16509,2057,3028], +[0,1429,1437,2899,4193,4874], +[0,3290,28467,28468,3014,28469], +[1,2349,19430], +[0,0,19431,2523,2402], +[0,1429,1544,2899,3754,4151,4333], +[1,2349,19433], +[0,19437,19447,19450,34552], +"ast-m", +"etadata-inferer", +[2,19434,19435], +[0,1676,28480,19400,1804,28483,28484,2835,28485,3188,16112,3441,4039,28486,4238], +[2,19192,13172], +[3,5536,14], +"16", +[2,19439,19440], +"aniuse-lite", +[2,4857,19442], +[3,6309,16], +"moize", +[2,19444,19445], +[0,1149,1304,27731,1362,1429,1431,1177,1895,1955,2026,2675,2899,28488,3246,3549,1894,4151,4237], +"config-erb", +[2,15086,19448], +[0,3292,1804], +"kangax", +[1,2349,19453], +[0,19454,19455,19456,34552], +[0,28494,28498,28500,4856,28502,14552,11869,15374,1371,28503,1437,1458,1483,28504,28505,1759,1797,1842,2070,2832,1209,3181,3183,2899,28510,3445,3467,20460,4130,4135,28512,4294,4558,3348], +[0,221,842,4874,1009,1011,1587,1610,1177,2675,2742,2822,2990,3200,4925,28514,28517,3215,3297,3421,89,3824,4039,4146,4474,4481,28519], +[0,3294,28521,28522,5472,11132,14336,11861,28525,11862,4627,11857,1973,1388,5131,8791,13426,1649,2899,13428], +[1,2349,19458], +[0,19459,19460,19461,4194], +[0,11124,826,28535,18248,3509], +[0,11134,28537,1389,2675,2832,8821,2990,2899,28539,3421,1894,3752,28542,28543], +[0,1973,5472,21147,3212,4731,36], +"/plugin-pwa", +[2,4613,19462], +[2,10982,19463], +[1,2349,19470], +"eslint4b", +[3,4630,11], +[2,19467,6038], +"vuepress", +[0,19471,19483,2523,2540], +[0,28550,617,2854], +"exported", +"eslint-env", +"eslint-en", +[2,19474,4000], +"eslint-d", +"isable", +[2,19476,19477], +[2,19478,10240], +[3,19479,15], +"next-line", +[2,19480,19481], +[0,2212,3421,1429,1192,2899,4193,1177,4039,1894,2139,1719,3752,4196,91,3400,15342,4131,1954,1951,826,1938,1958,1895,1903,7935], +[1,2349,19485], +[0,0,19486,19487,2457], +[0,1317,1326,28556,1177,2151,29197,3697,4135], +[0,28558,28559,11154,970,1326,3122,14655,3263,3299], +[3,8097,32], +[3,1879,9], +"mments", +[2,19489,19490], +[2,19488,19491], +"ot-an-aardvark", +[2,16819,19493], +[1,2349,19496], +[0,19497,19498,19501,2540], +[0,1496], +[0,3421,2228,2899,4170,1596,2240,18463,91,4874,18555,1506,28565,22081,2247,2283,28567,28570], +"@foxt/js-srp", +[2,4284,12118], +[0,2325,20164,2703,6884,3250,3151,6943,202,3143,3048], +[3,15471,15], +"anonical", +[2,19502,19503], +"gitdown", +[1,2349,19507], +[0,0,19508,19509,2540], +[0,4874,28577,2151,2675,2899,3421,4039,91,28580], +[0,202,3111,13017,6956,28582,6899,6726,2382,13626,28583,1745], +[1,2349,19511], +[0,19517,19518,19519,34552], +"@html-eslint/eslint-plugin", +[3,19512,13], +[2,19513,57], +"link-check", +[2,3115,19515], +[0,1672,28589,28590,2179,3183,3330,814,4135], +[0,4874,1177,1938,2675,2990,1894,4384,28593,4453,4474,91], +[0,22687,2999,4345,3233,2282], +[1,2349,19521], +[0,13886,11499,19529,2457], +[2,13039,7015], +[3,1143,17], +"indlastindex", +[2,19523,19524], +"doctrine", +[2,17612,202], +"object.g", +[0,3308,7204,4014,28599,2090,14629,17721,2150], +"roupby", +[2,19528,19530], +[1,2349,19536], +"/template-parser", +[2,1177,19533], +[2,12908,19534], +[0,19537,19542,19543,2540], +[0,21642,28604,28605,28608], +"escope", +"fs-copy-file-sync", +"linklocal", +[2,3045,4552], +[0,10614,842,5601,1009,1011,7677,17298,1622,1177,17300,1930,1942,1945,1948,1953,17303,17306,1964,1985,17308,2675,17310,2931,2990,3124,3125,3390,17312,1894,17314,3708,3980,28611,17318,4493,91,1984,17319], +[0,3113,2869,26800,26799,28613,28614,28615,28617,28618,28619], +"npm-which", +[2,4523,1574], +[1,2349,19547], +[0,19548,19549,19550,2540], +[0,16566,28624,21163], +[0,1079,13867,1410,1414,1429,1431,28626,21480,1596,2139,13870,2899,3480,28628,4481,1906], +[0,1612,27,1862,705,7085,7289,4731,7102], +[1,2349,19556], +"@schemastore/package", +"ts-export-assignment", +[2,13996,19553], +[2,13970,19554], +[0,0,19557,19558,34552], +[0,1389,1525,1610,1177,28635,2026,2297,2871,2881,2891,2895,2897,2900,2904,2912,2915,2921,28636,2925,2899,3202,28638,3421,15767,2924,4677,28639], +[0,28641,28642,28643,28644,1616,12588,28645,28646,28647,28648,27,2671,3135,11996,28649,28650,28651,28652,28653,4160,28654,28655,28656,21000,28657,28658,28659], +"-repositories", +[2,1992,19559], +[1,2349,19562], +[0,19563,19564,19572,2488], +[0,1170,1676,1209], +[0,1429,2899,3752,4193], +"@es-", +"joy/jsdoccomment", +[2,19565,19566], +"are-docs-informative", +[2,13721,5651], +"spdx-expression-parse", +"synckit", +[0,1885,6599,6645,586,12296,28666,28647,28667,2109,12295,1121,8899], +"@es-joy/", +[2,19573,1875], +[3,19567,13], +[2,4522,1574], +[2,19575,19576], +"@hkdobrev/run-if-changed", +"pree", +[2,5600,19579], +[2,5600,3766], +"defaultsdeep", +[2,6308,19582], +"@types/sp", +"dx-expression-parse", +[2,19584,19585], +[3,5210,11], +[2,1226,19587], +"ype-", +"pratt-parser", +[2,19589,19590], +[2,13587,19591], +[2,3032,1697], +[1,2349,19596], +"open-editor", +[0,19597,19598,19599,2488], +[0,1362,3310], +[0,1429,1177,1192,4193], +[0,28674,28676,28677,1885,14554,28678,28679,28680,28681], +[1,2349,19601], +[0,19602,19603,19604,2540], +[0,16473,28688,2215,26567,3368,3727,4135,4390,27921,4707], +[0,1326,1610,1177,2899,3263,29197,28691], +[0,970,11154,1237,3122,14655,1326,14654], +"@ota-meshi/eslint-plugin", +[3,19605,11], +"-kit-eslint-editor-vue", +[2,13755,19607], +[2,19606,19608], +"-scope", +[2,5601,19610], +[3,19611,14], +[1,2349,19618], +"@types/na", +"tural-compare", +[2,19614,19615], +"xbytes", +[0,19631,19633,19634,2531], +"env-cmd", +[2,1931,5550], +[2,18008,8546], +[2,17585,19621], +[2,1954,8770], +[2,4946,12054], +[3,5978,26], +[2,19625,188], +[3,4330,11], +"tylus", +[2,19627,19628], +[2,4609,19466], +[0,1632,2591], +"jsonc", +[0,16868,1448,1610,1177,28698,2616,3321,28699,28702,15512,28704,2654,28706,28707,3493,4039,25213,4257,4474,4749], +[0,1936,57,6710,91], +[1,2349,19636], +[0,19642,19643,19649,34552], +"-flow", +[2,12184,19637], +"axobject-query", +"damerau-levenshtein", +"es-iterator-helpers", +[0,1149,28713,1676,2026,2070,3507,1997,4135,4148,28715,28716,28717,4707,4729,4747], +[0,1429,2151,1161,2272,2899,3378,1862,4039], +"jsx-ast-utils", +[2,9551,2640], +"regex-test", +[2,4099,19646], +[2,18996,7015], +[0,1676,6782,3323,15267], +"to-ast", +[1,2349,19652], +[0,19653,19654,19655,2457], +[0,1080,1560,1704,2145,20103,3164,3171,3494,3781,1000], +[0,4856,6503,1009,1011,1429,1177,1881,1895,1938,2675,2899,3421,1894,4193,4196,4474,4481,91], +[0,3212,13106,28726,6710,676,5472,1973,27,28728], +[1,2349,19658], +[2,18576,13064], +[0,19659,19660,19661,2402], +[0,28733,2755,4135,28735,3348,4707], +[0,1587,1610,1177,1900,1903,1938,1954,1958,2675,1192,2990,28737,1894,4039], +[0,28740,28743,22005,28744,22011,15844,28747,28748,9044], +[1,2349,19663], +[0,19664,19665,19666,2531], +[0,1304], +[0,1364,2026,2899,4170,4342], +[0,3424,28438], +[1,2349,19668], +[0,16613,11587,11588,4194], +[1,2349,19670], +[0,19672,19674,19677,4194], +[2,1927,8982], +[0,20584,3188,3278,3368,3393,3411,1997,4039,4135,4390], +"ts-i", +[0,1168,2272,3297,4389], +"gnore-import", +[2,19673,19675], +[0,970,11154,1237,3122,14655,1326,17180], +[1,2349,19679], +[0,19680,19681,19682,2540], +[0,3299], +[0,2899,1177,28768,640,1610,91,4874,6503,1011,1009], +[0,28770,6621,7009,28771,28772,28773], +[1,2349,19684], +[0,19685,0,19686,4194], +[0,28792,28790,28782,28786,1304,1309,1594,2026,2151,28783,3368,4135], +[0,6038,8899,28794,2124], +"-helpers", +[2,9654,19687], +[2,7627,19688], +[1,2349,19691], +[0,19693,19694,19695,2402], +[3,3995,13], +[0,3263,2164,2070,3157,1437,1209,640,2185,28799,1615,28800,28802,28804,26567], +[0,3421,2899,1177,4039,2151,28806], +[0,1623,22022,7121,2278,4329,590], +"@chromatic-com/storybook", +[1,2349,19698], +[0,19699,19700,19701,2540], +[0,12680,28813,28816], +[0,3421,4389,4193,1090,1177], +[0,16618,5957,12692,1605,28821,27105], +[1,2349,19703], +[0,19704,0,19705,2540], +[0,3460,1512,3171], +[0,27,2947,2090,36], +[2,19707,103], +[3,35573,13], +"ug", +[2,17304,19708], +[1,2349,19714], +[3,3708,17], +"kg", +[2,19711,19712], +[0,0,19715,19716,2531], +[0,3421], +[0,6926,6668,3348], +[1,2349,19718], +[0,0,19719,19720,2402], +[0,2151,2899], +[0,28837,2282,28838], +[1,2349,19722], +[0,19723,0,19727,4194], +[0,6523,4747], +[3,19525,24], +"tosorted", +[2,5613,19725], +[0,28844,6574,11100,28845,6807,2013,28847,28849,28850,5957], +"repeat", +[2,18996,19728], +[1,2349,19733], +[2,5609,14255], +[3,5235,22], +[0,19737,19738,19739,2540], +"unction-bind", +[2,19732,19734], +"ls-engines", +[0,3354], +[0,28856,28858,4874,1177,1894,3706,4493,91,8552,1984], +[0,28860,57,9381,3354,28861], +[1,2349,19741], +[0,19742,19743,19744,2457], +[0,2571,2741], +[0,13614,1158,1177,2708,17400,3410,3421,3435,4103,4389], +[0,2051,6970,28869,1496,1585,24135], +"refa", +[1,2349,19747], +[0,19752,19760,19762,2531], +"analysis", +"-ast-analysis", +[2,6961,19749], +"scslre", +[0,2212,3263,2856,3776,1209,4391,2151,640,3337], +"eslint-s", +"-rule-tester", +[2,11298,19754], +[2,19753,19755], +[2,19758,29135], +[3,17306,17], +"@types/pako", +[0,4647,2899,2272,1168,1448,28877,2759,1173,1596,2820,28879,17370,1267], +[2,3192,15264], +[0,28881,28882,3358,970], +[1,2349,19764], +[0,0,19765,19766,34552], +[0,28043,1409,1414,1177,1895,2203,28890,28891,28892,28894,1894,2658,28895,18661], +[0,28897], +"safe-regex", +[1,2349,19772], +[3,19494,16], +"desecurity", +[2,19769,19770], +[0,19774,19775,19776,34552], +[2,202,1965], +[0,1676,4453,4135,1457,3181,28903,28904,4351,13775,18174], +[0,3421,1149,2675,2899,1177,4170,3752,1506,192,4131,5467], +[0,200,3233,3233,5001,22687,28908,2999,7009], +[1,2349,19781], +[3,3568,11], +"red-black-tree", +[2,19778,19779], +[0,19785,0,2523,2531], +"al-red-black-tree", +[2,19076,19782], +[2,5537,19783], +[0,1797,4384], +"sonarjs", +[1,2349,19788], +[0,19789,19790,19791,2540], +[0,4039,1764,28917,4747,4135], +[0,705,4389], +[0,28921,3364,7242,28125,13527], +[1,2349,19793], +[0,19794,0,19796,2531], +[0,28367,1091,1092,20437,12384,1096,28927,1170,1364,1457,1575,1594,1648,2026,9243,28929,28930,2070,2593,28933,28934,2856,28935,2863,28936,3083,12792,28940,3230,3241,3277,16617,28859,3361,3445,3519,28944,1552,2999,4010,28945,28948,4709,7801,4745,4747], +[2,4353,67], +[0,28950,3366,5284,6710,5130,5995,4967,12660,28951,28954,28956,28957,1781,28959,2844,2856,4745,1896,28960], +[2,19612,594], +[2,5600,594], +"@types/less", +[2,13058,3675], +[3,4890,11], +[2,19801,4332], +"svelte-i18n", +[1,2349,19806], +"sveltejs", +[0,19807,9896,19808,2540], +[0,4545,1437], +[0,10446,28967,9753,14690,57], +[1,2349,19810], +[0,19813,6555,2523,2531], +"-formatting", +[2,1939,19811], +[0,23432], +[1,2349,19815], +[0,0,19816,19817,4194], +[0,2398,3183,2899], +[0,28977,28978,28979,2090,28980,17996,18442,28981,7517,2150,3374,3403,10903,15323,4207,28982,28983,28984,28985], +[1,2349,19819], +[0,0,8176,19820,2540], +[0,3374,1002,12831,15427,1871,28992,28994,3766,3767,28996,4301,6678,28997], +[1,2349,19822], +[0,0,0,19823,2531], +[0,29004,28992,1388], +[2,1463,6961], +"regexp-", +"regexp-tree", +"regjsparser", +[1,2349,19830], +"@lubien/fixture-beta-package", +[0,19831,19832,19833,2540], +[0,1437,16064,1494,1595,1700,29013,1874,2020,5989,29016,2613,15980,2704,2720,2744,29018,29020,29022,2991,29023,3074,3157,29024,29025,21420,3445,29026,27534,3505,27168,3919,4094,4135,5513,26573,4562], +[0,21642,5254,1166,1532,24491,2151,29028,4193,4294,4400,29030,1906], +[0,13326,200,3378,20001,3358,6645,15525,15208,1528], +[1,2349,19840], +"@ver", +"/eslint-config", +[2,5401,19836], +[2,19835,19837], +"bumpp", +[0,19845,19846,19847,2540], +" eslint plugin", +[2,1984,19841], +"eslint ", +[2,19843,1932], +[0,3242,2714,4390,2070,3368,3917,4248,23433,1437,3478,4707,23432,3483,4135,9448,1458,29037,21505,640,3727,29039,3181,9451,9452,2976,2979,2981,29042,29044,4425,29051,2215,29053,25881,29054,29055,25888,29056,29057,9459,4351,2613,3386,3762,635,29059,25893,26567,29061,9462,29063,643,9465,3397,29066,29067,9476,9479,9539,19570,638,4588,9496,9501,9506], +[0,1091,4384,1687,3297,9542,3984,4039,1483,3988,29069,1092,29070,3393,10630,29071,29073,9515,9516,26037,29077], +[0,1161,5260,6878,6661], +[1,2349,19852], +"name-", +[2,19849,1155], +[2,4732,19850], +[0,19854,19855,19856,2540], +[2,4807,19851], +[0,1499,3467,3157,1437,2020,2742,1695,29085,2205,1209,4135,7094,3537,1703,2720,3181,3309,4294,4425,3505,29088,9478,6045,14564,29084,4562,29087], +[0,1906,1173,1282,1267,1255,1245], +[0,3378,29093,4796,17507,13729,4354,24313,5592,24095,200,6953,29095,29096,7242,4797], +[1,2349,19858], +[0,0,19859,19865,2540], +[0,29101,17212,4856,9417,29103,29104,12458,29105,7637,29111,4870,6503,4874,29115,29117,20374,6510,7812,5254,29122,6513,29125,1009,1011,1420,1429,1431,21480,1437,1483,1525,1610,20573,1177,1895,29128,1903,1938,1942,1953,1958,2071,27125,2105,29129,2613,2714,2822,2858,29133,3019,1209,3125,2899,3397,3400,3478,13723,3530,1894,3730,29136,29087,4038,4039,11054,4135,29138,4170,4193,4232,18201,4294,4474,91,29139,4558,4562,29140,1983,29141,29142,26744,4749], +[3,10879,16], +[2,19860,13921], +"importx", +"ink-", +[2,19863,1975], +[0,4796,3378,6661,3076,29144,18280], +"eslint-test", +[1,2349,19868], +[0,19869,6555,2523,2531], +[0,2613,3727,4135,4588], +[1,2349,19872], +"esrecurse", +[0,19873,19874,19875,34552], +[0,1091,8531,1437,1595,1676,2205,2687,2745,2858,3074,3157,3545,4135,4207,4300,4507,4588], +[0,5087,4874,1009,1011,668,29154,1177,29155,29158,1930,1938,1939,1955,1982,2089,1192,17312,29160,1894,4468,91], +[0,671,9654,6661,13716,29162,3390], +[1,2349,19879], +[2,1006,13060], +"json-diff", +[0,19880,19881,2523,4194], +[0,15980,3727], +[0,635,9516,9515,29169,4384], +[1,2349,19885], +[3,8724,21], +[2,19883,676], +[0,19886,19887,19888,2402], +[0,9459,25336,26567,21505,29176,29174,3386,3727], +[0,9516,9515,9448,3297,28691,4248,4384], +[0,3378,29179,1612], +[1,2349,19890], +[0,19891,19892,19893,2540], +[0,1437,26079,3919,3181,1110,1615,4165,3152,29185], +[0,3421,4749,2899,1177,4039,1503,3479,2151,4874,3696,1280,29188,13983,1225], +[0,200,1523,29190,4990,3378,29191,18462,21003,4144,12804,5957], +[1,2349,19897], +"-fb", +"esprima-fb", +[0,19898,19899,19893,2457], +[0,4707,26079,3530,1110,1615,4165,3152,9488], +[0,1414,2931,4749,1776,2899,1177,23909,29197,1159,17529], +[1,2349,19901], +[0,19902,8176,19903,2531], +[0,16687,20789], +[0,3378,18462,3403,3383,20052,17180,20054,1508,200,6876,16701,8435], +[1,2349,19915], +"escomplex-js", +"thing.js", +[2,7067,19906], +[3,2912,12], +"techpreview-launcher", +[2,19908,19909], +[2,17485,18551], +[2,813,19911], +"8.0.0", +[2,5857,19913], +[0,0,19916,19917,34552], +[0,5087,4874,1009,1011,10817,1177,1895,1192,2990,26230,4039,4042,4468,91], +[0,29208,1745,29210], +[1,2349,19919], +[0,19923,19924,19925,2540], +"gulp-ta", +"g-version", +[2,19920,19921], +[0,1437,1479,1525,1676,2720,3741], +[0,1429,2899,3215,4255], +[0,18497,3378,29218], +[1,2349,19927], +[0,19928,19929,19930,34552], +[0,2720,3776], +[0,1173,1212,1245,29224,1280,3400], +[0,3378,200,8429,1523,3888,8791,24095,3409,29227], +[1,2349,19932], +[0,19933,19934,19935,34552], +[0,2571,3183], +[0,13614,1159,9254,1177,2708,2807,3421,4103,4389], +[0,3410,16774], +[1,2349,19938], +[2,2009,10896], +[0,19947,19949,2523,34552], +"@ethereumjs/config-nyc", +[3,19939,19], +[2,19940,1894], +[2,19940,11540], +[3,19942,21], +[2,19943,671], +[3,17583,11], +"karma-tap", +[0,9892,25886,29239,10744], +"typestrict", +[0,4384,9515,9516], +"transactions", +[1,2349,19952], +[0,0,19953,2523,2540], +[0,1429,2814,2832,2899,29246], +[1,2349,19958], +"-cryptography", +[2,9439,19955], +"rlp", +[0,19959,19960,19966,2540], +[0,1437,1482,29251,2674,2720,29253,4135,8363,4747], +[0,1366,1501,19771,2556,620,3203], +"@types/assert", +"cp256k1", +[2,5252,19962], +"karma-t", +[2,19964,2528], +[0,1965,3413,19773], +[1,2349,19968], +[0,19969,19970,19973,34552], +[0,29260], +[0,5087,4874,1009,1011,1587,1177,1895,1955,2675,1192,1894,3720,4039,4468,4474,91], +"es-lookup-scope", +"os-tmpdir", +[0,3414,29263,200,5122,8310,18496,89,202,91,5284,2924,1192,4967,5995,12660], +"qs-iconv", +[1,2349,19978], +"eval", +"evaulate", +[0,0,19979,19980,34552], +[0,1429,2258,2277,2298,2300,23167,2297,2878,2881,2895,2900,2904,2915,3006,2899], +[0,3415,6988,1671,6901,29269,29271], +[1,2349,19985], +"pause-stream", +"combiner", +[2,4279,19983], +[0,19990,19992,19993,2531], +"asynct", +"it-is", +"stream-spec", +"ubelt", +[0,29276,29277,1525], +"flatmap", +[0,48,53,87,94,1195,1208,1212,1544,1593,1610,1177,1881,1938,2026,2151,2182,29280,29282,29283,29285,3421,3524,4151,4535,4537,2924], +[0,1283,17950], +[1,2349,19995], +[0,0,0,19996,2531], +[0,2703,202], +"addEventListener", +"addListener", +"pub/sub", +"emits", +"publish", +[1,2349,20004], +"subscribe", +[0,0,20005,20006,2402], +[0,5517,13614,23237,19325,1159,1414,9254,1177,2807,2708,3410,4103,4389], +[0,3417,3418,2649], +[1,2349,20013], +"-browser", +"-browsers", +[2,7177,20009], +"sauce-", +"sauce-test", +[0,0,0,20017,2402], +"EventEmitter", +[2,20014,1276], +[2,20014,1278], +[0,1623,12080,29300,13777,3585], +"Events", +"reactor", +[1,2349,20021], +[0,20022,0,20023,2540], +[0,1797,3467,4449,2117,3445,4745,1170,1495,4484,4747,1759,2687,4135,2089,1836,2777,3181,4459,1477,3527,4393,1480,2149,2858,3404,4290,4748,1763,4480,29306,24759,29308,29309,29310,29313,29317], +[0,9621,9622,8174,9623,9624,9625,9626,9627,9628,9659,9648,9649,29319], +[1,2349,20025], +[0,20026,20027,20028,2540], +[0,14022,8697,29324,1573,1677,2102,2105,15261,2179,2070,11935,29325,14024,29328,11938,11940,11943,3093,29330,3478,29334,4025,4039,4174,29335,14025,4747], +[0,29338,13103,4019,4232,4255,4257,4384,3348,4707], +[0,4504,16237,20049,5472], +[1,2349,20030], +[0,20031,20036,20037,2531], +[0,29358,8818,5941,28935,26865,13824,12285,3509,29349], +[2,3159,591], +[2,13788,20032], +"human-", +[2,20034,7073], +[0,29355,29359,29362,4874,4493,91,1984], +[0,5592,2210,3452,29365,29367,29368,29369,29370,3422,1118,27662,1745], +"final-newline", +[2,4293,20038], +[3,4759,11], +[1,2349,20045], +"get-node", +"is-in", +"is-in-ci", +[0,20046,20048,20053,2540], +[0,29358,29377,2822,12285,8126], +"is-running", +[0,29355,7637,29380,3297,4493,91,1984], +"subprocess", +"fork", +"execfile", +"bin", +[0,5592,1118,2210,1745,27662,29370,3422,3452,29369,29365,29368,29367,28360,8124], +"binaries", +[1,2349,20056], +[0,0,10445,2523,4194], +[1,2349,20058], +[0,0,20059,20060,2531], +[0,1906,1166,1209,3130], +[0,3048,3426,2051,3583,6778,5286,5258,6805,29390,6422,1858,1388], +"stdio", +"stderr", +"drain", +"flush", +"3584", +[1,2349,20067], +[0,0,20068,20069,2540], +[0,1389,2323,2346,27608,29396,2436,2447,2463,2494,2496,2530,2272,2839,2297,2881,2900,2899], +[0,3048,3428,4160,3135], +[1,2349,20071], +[0,0,20073,20077,34552], +"-jsdom-abstract", +[0,13614,29404,1159,1593,22932,1855,1177,2133,2159,2070,29406,2569,29410,2708,2762,19073,3206,3410,3421,4103,23948,4135,19729,4389], +"expect-", +[2,20074,594], +[2,552,20075], +[0,3430,7123,3048,1646,3721], +[1,2349,20079], +[0,0,20080,20081,2540], +[0,13614,13616,1177,14741,29416,2741,4389], +[0,6801,3432,6964,1858], +"mkal", +[2,1949,20082], +[1,2349,20086], +"pkg-pr-new", +[0,0,20087,20089,4194], +[0,3421,1429,2899,1596,3202,29424], +"type-check", +[0,1697,3403,7318,29426,3038,3205,1758,3743,3048,7002,29428,29429,6692,3639,6803], +[1,2349,20091], +[0,20092,20094,20095,34552], +[0,1417,7272,13609,29440,2569,3433], +"orms", +[0,13613,13614,1389,1177,2133,2159,13619,2571,3206,3410,3421,4103,6810,4389], +[0,7276,3426,6789,2051,7107,6970,7288,6849,6763,6422,1858], +"array-f", +[1,2349,20101], +"array-flatten", +"setprototypeof", +"merge-de", +[0,20104,20107,20108,34552], +"scriptors", +[2,20100,20102], +[0,1417,7272,13609,29440], +"-password", +[2,16722,20105], +[0,13613,13614,20492,1159,9254,1177,2159,13619,2708,3410,3421,4103,4389], +[0,6944,6694,6801,3437,6693,7221,6615,7194,1858,3048,3432,6422,6763], +[1,2349,20110], +[0,20111,20112,2523,2488], +[0,29450], +[0,3421,2899,1177,1954,1938,1958,1903,1948,1970], +[1,2349,20114], +[0,20115,11693,20116,2540], +[0,29456], +[0,3441,3046,6985,16114], +[2,30722,20731], +[1,2349,20119], +[0,20125,20126,20127,2540], +"automatically", +[2,1163,8623], +[3,20121,11], +[2,20122,7120], +[2,20121,2353], +[0,29462,29464,1138,1457,1615,2687,4459], +[0,21122,4874,2675,2990,1894,4039,91], +[0,2070,2282,1444], +[1,2349,20129], +[0,20130,20131,20132,2531], +[0,29474,3029], +[0,6503,29476,1503,2272,2899,3203,3210,3421,4474,91], +[0,29478,28794,29479,24996,29480,25004,20181,29481,29483,6667], +[1,2349,20134], +[0,20135,8007,20136,2531], +[0,29488,29490,28428,24488,28429,27908], +[0,1896,3445,3456,8423,8427,6587,8430,8428,10441,8429,1388,6038,8435,8433,1002,10443,10446,7058,1614,2978,1451,3729,5351,2090], +"express3", +[1,2349,20139], +[0,20141,20142,20143,2531], +"partials", +[0,2096,2185,3157,3445,4400], +[0,1166,2020,1906], +[0,13326,200,1896,3445,3456,8423,8427,6587,8430,8428,10441,8429,1388,6038,8435,8433,1002,10443,10446,1614,2978,1451,3729,5351,2090], +[1,2349,20145], +[0,20148,20149,20152,34552], +"unless", +[2,2032,20146], +[0,29501,29505,12285], +[0,5087,7637,8818,1170,29509,1192,2845,29512,3244,1894,4232,4468,4474,91], +"authn", +"authz", +[0,3452,8124,5576,1170,4967,1388,3212,91], +[1,2349,20154], +[0,20155,20156,20157,34552], +[0,1677,2639,2854,3105,3744,89,3824,1155], +[0,68,470,1173,1248,15643,1596,1177,1879,1881,1938,1947,1958,1959,2200,2626,1192,3363,3400,705,4008,7707], +[0,8124,3452,29521,1936,1745,1179], +[1,2349,20159], +[0,20160,20161,20162,2457], +[0,6825,3263], +[0,2070,705,4389], +[0,3455,29528,23196,29531], +[1,2349,20166], +"caching", +"expressjs", +[0,0,5868,2523,34552], +[1,2349,20168], +[0,20169,20172,2523,4194], +[0,29539,705], +"cjs-mock", +"hoare", +[0,1173,1267,1177,1879,1938,1947,1959], +"tRPC", +"RPC", +"express.js", +[2,10988,16957], +[1,2349,20180], +"fully-typed", +"type-safe", +[0,20187,9887,20136,2488], +"pi", +"typed-api", +"express-api", +"http-api", +"client-s", +[2,20185,2847], +[0,2755], +"unit-testing", +[2,13843,5576], +"web-de", +[1,2349,20192], +[0,20196,20197,20198,2540], +"velopment", +[2,20190,20193], +"web-api", +[0,4720,3183], +[0,29551,4384], +[0,7233,7058,5675,57,7119,200,1523], +[1,2349,20200], +[0,20209,20210,20213,4194], +[3,8286,12], +[2,20201,364], +"lient-", +"redirects", +[2,20203,20204], +[2,13224,20205], +[2,20201,20206], +[3,20207,13], +[0,1637,29559,3561], +[0,1175,1193,1245,1257,1264,1628,1192,4307,2924], +"reset-classic", +[2,20208,20211], +[0,6829,11337,2054,16862,6707,7293,2924], +[1,2349,20216], +"sanitization", +[0,20217,20218,20219,2457], +[0,29566,29567,4717,20088,19190,26007], +[0,29569,2899], +[0,14690,6802,29572,200], +[1,2349,20222], +"openapi3-ts", +[0,20225,20228,20229,4194], +[3,19441,15], +[2,20223,6643], +[0,1437,1477,1480,29018,16232,3074,29581,4290], +"wagger-ui-express", +[2,5051,20226], +[0,4874,1166,2188,29583,4481,1906], +[0,200,1478,6787,7009,6048,7201,6938,3656,6753,6853,3730,7023,6703,6921], +[1,2349,20231], +[0,20233,20234,20235,2402], +"camelize-ts", +[0,1834,29590,29591], +[0,2012,2530,2272,3102,3159,2899,3760,4170,4600], +[0,1149,5957,12804,2940], +[1,2349,20237], +[0,20238,20239,20240,2457], +[0,1149,1362,18443,9421,1209,3507,29600,29601], +[0,1414,1437,2070,2899,3230,3259,3519,4135,4170,4193,4246], +[0,3469,27812,18035,3259,25638,29605,7827,3230], +[1,2349,20242], +[0,0,0,20244,2540], +"snakify-ts", +[0,202,888,364,1237], +[3,18009,14], +[2,20245,4990], +[2,4120,7020], +[3,8116,9], +[1,2349,20253], +"pecification", +[2,20248,20250], +[2,4364,1745], +[0,20254,11693,20255,34552], +[0,19972,25493], +[0,6639,6884,4571,29615,3403,3741,29616], +[1,2349,20257], +[0,0,20258,20259,2540], +[0,4856,4864,6503,4874,4891,26584,1429,2020,2151,2899,3377,4474,2924,4707], +[0,5194,6778,29622,29624,18135,1871,1283,8958], +[1,2349,20261], +[0,0,0,20264,2531], +"-symbols", +[2,3426,20262], +[0,3475,5317,29632,29633,3474,9006,4967,1388], +[1,2349,20267], +"is-extendable", +[0,20270,20271,20274,34552], +"array-slice", +"benchmarked", +[0,29638,1525,2131,2742,2975,4135,4449,36872], +[0,19181,442,19344,9237,18491,4874,5254,6520,36890,1009,1011,1177,26698,4039,91], +"for-own", +"kind-of", +[0,200,29641,19101,20001], +"props", +[1,2349,20277], +[0,20278,20279,20285,2531], +[0,3480], +[0,4874,1166,1702,4481,1906], +[2,20284,29685], +[2,1884,2924], +[3,4679,10], +[2,20282,3031], +"@pa11y/", +[0,1862,2018,2013,13771,2016,26349,6868,20000,15535,19138,29647,29648,6703,29649,1803,1388,965,1149,7003,6567,1362], +[1,2349,20287], +[0,0,20288,20289,2531], +[0,1166,1437,1702,17474,29654,17477,4481,1906], +[0,1862,3053,29656,6703,6910,21369,7253,25824,29657,1149,7003,6567,1540,6994,12804,1362], +"@types/yauzl", +[1,2349,20292], +[0,20293,20294,20295,2540], +[0,2017,3480], +[0,13789,5366,4874,1317,1701,1702,17474,18669,29654,17477,4481,4494,91,1906], +[0,1862,3768,28483,7051,6760,6994,6925,7094,6882,6870,7072,27334,27338,29664,12692,5957,1149,7003,6567,1362], +[1,2349,20297], +[0,0,20298,20299,2457], +[0,1166,1702,17474,21638,4193,17477,4481,1906], +[0,1862,17481,1851,29672,1149,7003,6567,6901,17480,12618,1362], +[1,2349,20301], +[0,20302,20303,20307,2540], +[0,2070], +[0,1192,1894,10761], +"gulp-jsdoc3", +[2,2462,6504], +[2,4598,353], +[0,1745,3709,29679,6774], +[1,2349,20309], +[0,20310,20311,20313,2531], +[0,20280,1169,1324,1525,1842,2929,3257,3357,3758,4135], +[0,1414,1177,29689,2899,29691,10627,4193], +"color-support", +[0,6653,7320,19748,31152,13716,13428,11346,1169,16790,200,33055,29727,34150,26632,3482,3758,11937,34151,5472,1155,34152], +[2,13721,15526], +[1,2349,20316], +[0,20318,20320,20321,2540], +"console.log", +[0,29069,9510,9479,9539,643,9448,29051,21505,3386,3393,9462,3397,3727,29698,29697,4248,4390], +"timestamp", +[0,635,9516,9515,2613,29169,3297,29701,4039,4384], +[0,6666,3378,3358], +[1,2349,20323], +[0,20324,20326,20331,4194], +[0,22970,22971,29707,1668,18145,29708,1209,3074,3093,3478,3545,4507,29711], +"pure-rand", +[0,13789,11477,4870,4874,29717,977,1701,2096,2182,29721,3505,29722,4494,91,1906], +[3,16596,12], +[2,20327,2024], +"poisoning", +[2,20327,20329], +[0,27968,5351,13755,5122,1002,23992,4202,12197,29724,29726,13008,8745,8340,6398,17461,3758,3195,158,8221,8924,1936,29727,23691,20630,20631,18048,20637,21881], +"based", +"based testing", +[2,4635,20333], +[2,11861,10428], +"quickcheck", +[1,2349,20338], +[0,0,20343,20344,2540], +"jscheck", +"jsverify", +"fuzz", +"fuzzer", +[0,4874,7677,22839,33261,35609,1177,1938,1942,2832,91,1983,1984], +[0,4967,5995,5354,4963,181,6624,24456,23362,27448], +[1,2349,20346], +[0,0,20352,20356,2457], +"@fast-c", +"sv/format", +[2,20347,20348], +"@fast-csv/", +[2,20350,1644], +[0,87,5583,811,816,1177,2193,2899,3253,26777,3421,4042,4073,4167], +"writer", +"csv writer", +"CSV", +[0,15008,25386,25388,16518], +[1,2349,20358], +[0,20359,5868,20360,34552], +[0,27404,1437,12084,2021,2088,2185,2205,2654,2863,3157,3173,3490,814,29742,4562,4748], +[0,3487,5995,200,29744,5592], +[1,2349,20363], +"psql", +[0,20364,20367,20379,2531], +[0,29749,3084,4339], +[3,19185,12], +[2,20365,4262], +[0,442,1759,1177,1895,1938,1953,1955,1958,2203,1209,2899,1894,4419,1531,91], +"macchiato", +[2,20365,20368], +"erge2", +[2,6502,20370], +"@types/pi", +"comatch", +[2,20372,20373], +"bencho", +"rmlnc", +[2,16693,20376], +"fdir", +[0,3487,5576,10768,29752,36,5995,5592,4030,1781], +"hereby", +[1,2349,20383], +"snap-shot-it", +[0,0,20386,20387,34552], +"imple", +[2,20384,1744], +[0,1362,1429,1506,2899], +[0,12804,4166], +[1,2349,20389], +[0,20390,20391,20392,2488], +[0,97,5663,1620,29762,29765,4729], +[0,53,61,83,87,90,92,442,10615,29767,6061,16607,6063,6065,16608,16612,29769,1193,20517,29775,1503,1593,1610,1177,15510,1942,2026,2323,2338,2544,2765,24652,29778,1192,2780,1776,29779,2990,9750,5103,29780,29783,3758,3957,4131,4523,1983,29770,27900], +[0,6599,5131,5592], +[1,2349,20395], +"strnum", +[0,20396,0,20397,34552], +[0,18089], +[0,1936,57,12075,29790,10658,2062,29791,29792,15512,3493,1753,29793,29794,1644,4141], +"js2xml", +[1,2349,20401], +"json2xml", +[0,0,20402,2523,2776], +[0,2899,1177,2759,1317,29801,1311,1954,1938,1958,1903,1970], +[1,2349,20404], +[0,20405,20406,20407,2402], +[0,29806,4578,1433], +[0,1429,2899,3095,3752,1434,29810], +[0,2026,1544,1303,20150,5165], +[1,2349,20411], +"avvio", +"toad-cache", +[0,20421,20429,20430,4194], +"find-my-way", +"@fastify/", +[2,20413,1851], +"-warning", +[2,3729,20415], +"abstract-", +[2,20417,6807], +"-my-request", +[2,13318,20419], +[0,3501], +"-json-parse", +[2,18112,20422], +[3,16781,12], +"ringify", +[2,20424,20425], +[2,8530,4643], +[2,20413,20427], +[0,3095,2899,1429,1434], +[0,3495,3497,1303,20150,5165,13445], +[1,2349,20435], +"-compiler", +[2,20426,20432], +[2,20413,20433], +[0,20438,20439,20440,2540], +"h2url", +"ajv-i18n", +[0,1433], +[0,2899,1429,1434], +[0,3495,2703,1303,20150,5165,29824,6875], +"autocannon", +"fast-json-", +"body", +[2,20442,20443], +"merge-patch", +[2,8530,20445], +"branch-c", +[1,2349,20455], +"omparer", +[2,20447,20449], +[2,3125,1276], +"fluent-", +[2,20452,2845], +[2,20413,3697], +[0,20456,20439,20457,4194], +[0,29829,3501], +[0,3495,1303,20150,5165,20151,14374,3424,28438], +[1,2349,20459], +[0,20462,20483,20457,34552], +"piscina", +"@vercel/n", +[0,29835,3424,1433,26413,4578], +"@vercel/ncc", +"loader-", +[2,20464,8791], +[3,12397,15], +[2,20466,2924], +"@umijs/b", +"abel-", +"preset-umi", +[2,20469,20470], +[2,20468,20471], +[2,1221,18104], +[2,4524,20473], +[3,1233,25], +[2,20475,15301], +"tyled-", +[2,20477,4963], +[2,5584,20478], +"@umijs/c", +"ase-sensitive-paths-webpack-plugin", +[2,20480,20481], +[0,3095,2899,1429,3752,1434], +"ader-runner", +[2,13513,20484], +[1,2349,20487], +[0,0,7884,20488,2540], +[0,3495,15393], +[1,2349,20497], +[2,19523,3036], +[2,5613,4565], +[2,5613,3053], +[2,5613,6645], +[2,5613,6913], +[2,18996,4237], +[2,4385,57], +[0,20498,0,20501,2531], +[0,3729,614], +"anything", +"protocol", +[0,6804,3403], +[1,2349,20503], +[0,0,9270,20504,4194], +[0,1388,1389,3403], +[1,2349,20506], +[0,0,20509,20510,2531], +"fbjs-css-vars", +"setimmediate", +[0,1906,1166,4481], +[0,3403,3504,29854,2090,17996,2150,17462,16503,7318,4262], +[1,2349,20512], +[0,0,11386,20513,2540], +[0,3403,18104,2090,4014,28977,29862,3506,15174,614,594,364,6805,6422,1858,2741,13735,4354], +"@skypack/package-check", +"dead-code-elimination", +[2,9403,20515], +[2,7911,20516], +[1,2349,20530], +"in web", +"in javascript", +"in react", +"Plug & Play", +[3,11608,13], +[2,7519,4963], +"ui component", +[2,16914,6286], +"advanced ", +[2,20527,5983], +"scan", +[0,0,20532,20534,4194], +"scanner", +[0,29867,5535,4874,5254,7677,26881,4201,91,1984], +"phonebook", +[0,2026,6961,4082,7433], +[1,2349,20552], +"autofillotp", +"share", +[2,7426,17357], +[2,2998,20538], +"mylocation", +[2,13735,20540], +"colorpicker", +"wakelock", +"WhatsappShare", +"NetworkConnection", +"TextToSpeech", +"VoiceRecognition", +"SnapScanner", +"Network", +"Monitor", +[2,20549,20550], +[0,0,20554,2523,2531], +"View360", +[0,4874,7677,1446,668,1177,1905,2807,1894,91,4543,1984,28862], +[1,2349,20556], +[0,20557,20558,11588,2540], +[0,2760,2856,18545], +[0,2152,2899,3699], +[1,2349,20560], +[0,20563,20564,20569,2540], +[3,5085,23], +[2,20561,582], +[0,29882,29884,3486,3923,23952,3348], +[0,4874,1398,2018,1894,4389,91], +" program", +[2,6564,20565], +"data ", +[2,20567,6355], +[0,2636,1179], +[1,2349,20571], +[0,20572,20578,20579,2402], +[0,1620,10752,29893,29894,29895], +"dequal", +"glob-", +[2,20574,3508], +[3,16396,12], +[2,20576,3508], +[0,53,8229,87,442,5583,1193,29897,27401,1377,1389,1424,1505,1177,2193,2203,1192,2780,11348,1783,29899,1894,3754,4042,8849], +[0,2636,29901,29903,11812,1746,13814], +[1,2349,20581], +[0,0,20582,2523,2540], +[0,1362,29908,1429,29913,1506,2899,3697], +[1,2349,20585], +"detect-libc", +[0,20587,20588,20589,2540], +"thread", +[0,25624,29919,29923,29920,29918,29928], +[0,28042,29934,1149,1362,1499,29933,91,1984,23539], +[0,18035,29937,3519,14871,25638,14873,29938], +[1,2349,20591], +[0,20592,20593,20594,34552], +[0,4237,4709,3524], +[0,1192,1177,4039,2126,2774,1173,29946,1175,1178,1257,10622,1264,29945,14237,1267,1938,1935,1881], +[0,3520,3521,13392], +"@pinojs/redact", +[1,2349,20599], +"figure", +"fallback", +[0,20600,20601,20602,2457], +[0,2057,2151,29952,22667,3730,705,17047,4707], +[0,1177,2276], +[0,3521,29727,3364], +[1,2349,20604], +[0,20605,20606,20602,2531], +[0,1863,2057,2151,29952,22667,3730,705,17047,4707], +[0,1177,2276,824], +[1,2349,20608], +[0,20609,20610,20612,34552], +[0,1137,1512,1543,29964,1591,16442,2765,3183,3456,3459,6331,29965,3547,3741,3762,705,4167,4562], +[0,18007,1177,1900,1903,1938,1954,1958,1970,2759], +"filesaver", +[0,200,1591,3525,29969,29971], +"saveas", +"blob", +[1,2349,20616], +[0,0,11499,2523,2457], +[1,2349,20618], +[0,0,0,20620,4194], +"strtok3", +[0,7009,1512,6983,200,7201], +"token-types", +"-extra", +"-extras", +[2,15149,20623], +[1,2349,20629], +"@tokenizer/token", +"commonmark", +"noop-stream", +[0,0,20633,20692,2531], +"pic", +"picture", +"photo", +[0,1177,27275,2398,2899,3421], +"video", +"exif", +"macho", +"jpg", +"apng", +"gif", +"flif", +"xcf", +"cr2", +"cr3", +"orf", +"arw", +"dng", +"nef", +"rw2", +"tif", +"bmp", +"icns", +"jxr", +"psd", +"indd", +"rar", +"7z", +"mp4", +"mid", +"mkv", +"webm", +"mov", +"avi", +"mpg", +"mp2", +"mp3", +"m4a", +"ogg", +"opus", +"flac", +"wav", +"amr", +"epub", +"mobi", +"rtf", +"woff", +"woff2", +"eot", +"ttf", +"otf", +"ico", +"flv", +"xz", +"xpi", +"cab", +"deb", +"rpm", +"Z", +"lz", +"cfb", +"mxf", +"mts", +[0,2070,3529,3530], +[1,2349,20765], +"webassembly", +"blend", +"bpg", +"docx", +"pptx", +"3gp", +"j2c", +"jp2", +"jpm", +"jpx", +"mj2", +"aif", +"odt", +"ods", +"odp", +"heic", +"pcap", +"dsf", +"lnk", +"voc", +"ac3", +"3g2", +"m4b", +"m4p", +"m4v", +"f4a", +"f4b", +"f4p", +"f4v", +"mie", +"qcp", +"asf", +"ogv", +"ogm", +"oga", +"spx", +"ogx", +"ape", +"wv", +"cur", +"nes", +"crx", +"ktx", +"dcm", +"mpc", +"arrow", +"shp", +"aac", +"mp1", +"s3m", +"xm", +[2,12207,35471], +"skp", +"lzh", +"pgp", +"chm", +"3mf", +"zst", +"jxl", +"vcf", +"jls", +"pst", +"dwg", +"parquet", +"arj", +"cpio", +"ace", +"avro", +"icc", +"fbx", +"vsdx", +[0,7949,7950,7951,4194], +[1,2349,20767], +[0,0,20768,20769,2488], +[0,1166,29991,4481,27659,1906], +[0,19138,7241,1862,6567,29994,12918,202,21244,28067,6270,353,4719,21009,6715,1149,7003,6778,1362], +[1,2349,20771], +[0,20772,20773,20774,2402], +[0,30001,30004,30007,30011,20416,30015,30017,18730,20595,30018,30019], +[0,5517,36559,30022,4874,1090,30024,28400,1409,1676,21594,1177,1938,1953,1954,1958,2020,30025,30027,2702,1192,3073,3079,30028,29197,28941,3697,3752,3756,4039,4135,4238,30029,4294,4389,4431,4474,4481,91,4709], +[0,2062,2942,3101,1781], +[1,2349,20776], +[0,0,20777,20778,2540], +[0,1177,1895,19286,1954,1955,2675,1192,1894,4400], +[0,3378,30036,30037,3304,30038], +[1,2349,20780], +[0,20781,20782,20783,34552], +[0,3549], +[0,1177,25843,91], +[0,158,26020,1687], +[1,2349,20785], +[0,20787,20790,20791,34552], +"locate-path", +[0,30055], +"-magic", +[2,1981,20788], +[0,1906,1166,4481,4400], +[0,3383,1781,7914,3378,13864,2100,2104,2105,7076,6614,6605,2090,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], +[1,2349,20793], +[0,8405,8176,20794,34552], +[0,4750,3383,2090,2100,2104,2105,7076,6614,6605,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], +[1,2349,20798], +"detect-file", +"resolve-dir", +[0,0,10445,20799,2531], +[0,18523,2041,6661], +"dir-polyfill", +[2,4571,20800], +[1,2349,20803], +[0,20804,0,2523,34552], +[0,30071], +[1,2349,20806], +[0,20807,20808,20809,2457], +[0,10780,1301,4736], +[0,1389,2899,16112,4770], +[0,13336,1388,16718,2072,57,6523], +[1,2349,20811], +[0,20812,20813,20814,2540], +[0,1104], +[0,1177,1889,1954,2022,2899,3421,91], +[0,1851,1932,2541], +[1,2349,20816], +[0,20817,8176,20818,4194], +[0,30088], +[0,23869,30090,3547,23868,30091,4718,1871,30092,30093,30094], +"@firebase/app", +[3,20819,11], +"uth", +[2,20820,20821], +"@firebase/", +[2,20823,614], +[2,20823,13901], +[2,20823,18035], +"nalytics", +[2,20820,20827], +[2,20819,2063], +[3,20829,14], +[2,20830,553], +"firestore", +[2,20823,20832], +[3,20833,11], +"unctions", +[2,20834,20835], +[2,20823,8899], +[3,20829,15], +[2,20838,14044], +[2,20822,4097], +[2,20823,6681], +[2,1161,10653], +[2,20823,20842], +"remote-", +[2,20844,1541], +[2,20823,20845], +[2,20825,4097], +[2,20826,4097], +[2,20828,4097], +[2,20829,4097], +[2,20833,4097], +[2,20836,4097], +[2,20837,4097], +[1,2349,20855], +[0,0,20856,20860,2488], +[0,1429,2759,2899,1899], +[2,20841,4097], +[2,20843,4097], +[2,20846,4097], +[0,23869,30090,3547,23868,23877,2712], +[1,2349,20864], +"Firebase", +"realtime", +[0,20865,11499,20866,4194], +[0,30110,30115,30106,30122,1112,1149,29183,1457,30117,1525,1606,1673,1676,1836,2015,30104,3188,3278,30107,30108,30119,30112,30120,8630,4135,4232,4243,30105,2822], +[0,200,21110,21111,2041,3548,30124,3073,1781,2026,2556,30125,2999,30127,30128,30130,30131,30132,30134,7047,22850,30135,27662,13325,5258,30137,30139,30140,30141,30142,20997,20998,28845,4345,30143,3363,30144,17979,30147,27838,30140,30148,2134,28413,30149,13539,3111,21102,30153,30155,30156,30158,24093,17878,1605,20999,30159], +[1,2349,20877], +"@fastify/b", +"usboy", +[2,20868,20869], +[3,20848,19], +[2,20871,553], +"farmhash-modern", +"jwks-rsa", +"@google-cloud/firestore", +[3,20875,14], +[0,0,20878,20880,2540], +[0,1389,1400,1544,1177,1895,3421,1894,3758,4151,30164,4389], +[3,20819,12], +[0,30166,14355,14356,30167,30168,57,18048,29895,30170,3549], +[1,2349,20896], +"i-documenter", +[2,20879,20882], +[3,20840,15], +[2,20884,553], +[2,4853,6641], +"rebase-token-generator", +[2,16785,20887], +[2,16936,4007], +[3,2113,11], +"ken-generator", +[2,20890,20891], +"http-me", +"ssage-parser", +[2,20893,20894], +[0,20898,20899,20900,2488], +"admin", +[0,4477], +[0,1835,1192,2784,2796,4227], +[0,2924,4749,24753,24754], +[1,2349,20906], +"-sql-connector", +[2,6599,20902], +[2,20876,20903], +[2,20876,11631], +[0,0,0,20907,2540], +[0,3552,28100,4796,7191,7287,2062,6824,1161,7242,163,6698,5260,6646,7117,3378,6878,6661,6666,7037,7090,7293,6950,7086,6573,664], +"async-lock", +"cjson", +"-in-any-order", +[2,1693,20910], +"exegesis", +[2,20912,3228], +"gaxios", +[1,2349,20919], +"auth-library", +[2,10692,20916], +"libsodium-wrappers", +[0,20920,20923,20926,2531], +[0,1170], +"proxy-agent", +"sql-formatter", +[0,4072,4474,91], +"stream-chain", +"stream-json", +[0,30190,30191,30192,30193,30194,30198,30200,30202,5592,30203,30204,30207,30208,5995,4967,91], +[1,2349,20929], +"superstatic", +[0,6265,20930,20932,2540], +[0,48,53,68,83,85,87,14128,5583,816,6373,1178,1193,1198,30214,1610,1652,1745,1177,1881,1938,2126,29945,2675,1192,2990,29946,1894,30216,3776,4042,4071,4073,4131,4172,30217,91,4585], +"triple-beam", +[0,4315,3555,1832,30219,7165,30220,89,2124,91,30223,30225,30227,1473,7208], +"-analytics", +[2,14566,20933], +[2,4562,8683], +[1,2349,20939], +"cdn", +"ssl", +[0,0,20941,20944,2531], +"hosting", +[0,30236,30239,30240,30241,1177,30242,91], +"hronization", +[2,15001,20942], +[0,30245,4627,5398,8190,8191,8193,30247], +[1,2349,20946], +[0,20947,20952,20953,34552], +[0,1149,1676], +"alce", +[2,1708,16580], +"extend-", +[2,20950,3048], +[0,1192], +[0,27,13397,6731], +[1,2349,20955], +[0,20956,0,20957,4194], +[0,3266,3527,4228], +[0,1623,3561,22292,7121,57,30258,353,24798,5198], +[1,2349,20961], +"@types/rimraf", +[2,13777,12798], +[0,20962,20963,20964,4194], +[0,3681,3688], +[0,4874,1177,1895,30265,3561,1894,91], +[0,1623,3561,6425,30268,3563], +[1,2349,20967], +"unflatten", +[0,20968,20969,20970,2540], +[0,1457,5314,2151,3527,3616,30274,15245,30275,4207,27921,4747], +[0,1166,1414,1596,1177,30279,2203,3561,3613,1894,4337,3348], +[0,200,3561,22147], +[1,2349,20972], +[0,20973,0,20974,34552], +[0,30286,205,208,218,30287], +[0,1473,14186,1623,4964,6564,30289,30290,30291,29428,3561,6425,6616,30292,17540,5341], +[1,2349,20976], +[0,20977,20984,20985,34552], +[0,1393,30298,30299,3688], +"@types/acorn", +[3,4060,16], +"vereload", +[2,20979,20980], +"erve", +[2,15476,20982], +[0,30302,3561], +[0,1473,1512,1536,1623,3178,3561,6425], +"lightweight", +[1,2349,20988], +[0,20989,20990,20993,2488], +[0,1393,3688], +[0,3561], +"byline", +"util-extend", +[0,1623,16919,3561,6425], +[1,2349,20996], +"markdox", +[0,21001,21002,21005,2531], +"deploy", +"deployment", +"devops", +"ssh", +[0,1165,30298,1437,30314,30315,3561,30317,30326,3564,30327,30329,30331,30334,30336,30338,30341,30343,3579,3584,3587,30346,30348,30350,30353,30356,3643,30358,30360,30363,30365,30366], +[0,1173,1175,1195,1264,1268,1279,19243,1461,1628,30368,30370,30371,30372,30378,1177,30380,1916,1959,2054,2092,2600,30381,2822,2843,3105,30383,3160,30385,30389,30390,30391,30393,30395,30396,30397,30399,29285,3376,30400,3427,3459,30402,3613,3618,30274,16578,3744,89,3824,30404,4039,4294,4307,4389,30407,2924,4681,30410], +"sequential", +"remote", +[0,3561,6425,1623,12616,30413], +[1,2349,21007], +[0,21008,0,21010,2531], +[0,30424,205,208,213], +"wrapper", +[0,30426,30427,1623,30428,5317,6413,3561,6425,30430,3766,10658,12616], +[1,2349,21012], +[0,21013,0,21017,2540], +[0,30424,205,208,30287,3688], +"mini-s", +"vg-data-uri", +[2,21014,21015], +[0,1623,30428,5317,6433,3561,6425,3583,10658,6436,6437,12616], +[1,2349,21021], +"-datepicker", +[2,2128,21019], +[0,21025,0,21027,2540], +"ailwindcss", +[2,1977,21022], +[2,3704,4383], +[0,30424,205,208,3681], +"windicss", +[0,30426,30427,1623,30428,5317,30442,19101,3561,6425,5547,3586,10658,12616], +[2,20525,591], +[2,4380,6911], +"tailwind c", +[2,21030,544], +"tailwind ", +[2,21032,11513], +[2,21032,6082], +"sections", +[2,21032,21035], +"tailwind ui", +[2,21032,89], +[2,21032,188], +[2,21032,1098], +"tailwind s", +[2,21041,1971], +"django", +[2,21032,21043], +"tailwind r", +"uby on rails", +[2,21045,21046], +"tailwind l", +"aravel", +[2,21048,21049], +[1,2349,21058], +"tailwind nuxt", +"tailwind n", +[2,21053,2680], +"tailwind a", +"stro", +[2,21055,21056], +[0,21061,21062,21063,34552], +"flask", +[2,21032,21059], +[0,3681], +[0,3561,3678,26712], +[0,1623,4298,3561,6425], +[1,2349,21065], +[0,0,20990,21066,2488], +[0,1623,1681,16918,3561,6425], +"ffmpeg", +[1,2349,21069], +[0,0,20990,21070,2540], +[0,15215,1623,3599,3178,16919,3561,6425], +[1,2349,21073], +"fbemitter", +[0,0,21075,21076,2776], +[2,3794,11017], +[0,1687,3527,3561], +[0,3561,1623,6425,30462,30465,30466], +"dispatcher", +[1,2349,21079], +[0,0,21080,21081,4194], +[0,1429,2323,2384,2463], +[0,3561,1623,6425,30472,15182,9320], +"lolex", +[1,2349,21084], +[0,21085,21086,21087,2488], +[0,2654,9673,3561,3676], +[0,19605,1165,1429,1503,1177,1895,1930,19622,1945,1953,19623,1955,1964,1988,17308,2899,19761,3421,30479,3678,30481,1894,4320,4323,4337], +[0,3561,5341,1936,188,30483,30484,1623,695,2278,4329,30485,4337], +[1,2349,21089], +[0,21090,0,21091,2402], +[0,30287,3688], +[0,12083,1623,158,30491,12631,16587,3561,6425,23992,6398], +[1,2349,21093], +[0,21094,21095,21096,2402], +[0,3688,30275,814], +[0,1166,1414,1177,30279,1955,2203,3561,3678,1894,4337], +[0,1623,3561,6425,1204,30498,3378], +"cliff", +"shush", +"flatiron", +"nssocket", +"-monitor", +[2,2134,21101], +[1,2349,21105], +"getopts", +[0,21107,0,21112,2540], +"cli-testlab", +[0,2984], +"fault", +" tolerant", +[2,21108,21109], +"sysadmin", +[0,3561,30504,30506], +[1,2349,21114], +[0,21115,21119,21123,2531], +[0,2807,4135,1595], +"node-ab", +[2,18876,12620], +[2,21116,21117], +[0,1700,1192,695,2278,2675,3144,30512,1622,1177,1637,1701,2203,3561,4337,4468,4474,2924,1894,1610,48,442,1193,17167,4294,53,2969,2990,3400,4111,30520,3613,3640,192,1953,27928,4257,87,4523,1939,3616,1938,20281,1982,1895,1955,19344,30518,5467], +[2,6062,2978], +"ross-spawn", +[2,4857,21121], +[0,1623,3561,22147,2924,11526], +"jest-circus", +"karton", +[1,2349,21128], +"typecheck", +[0,21130,20990,21132,34552], +[2,1218,21131], +[0,3688,4319], +"hermes-parser", +[0,1623,3178,16918,3561,6425], +[3,4852,15], +[2,21133,13921], +[1,2349,21137], +"increment", +[0,21138,21139,21140,4194], +[0,1393,30298,3681,30532], +[0,30302,3561,26712,3591], +[0,1623,16918,3561,6425], +"asynckit", +"combine", +"d-stream", +[2,21142,21143], +[1,2349,21150], +[2,13888,2759], +"fake", +"far", +"is-node-", +[0,5493,20990,21154,2531], +"modern", +[2,21149,21151], +"obake", +[0,1623,2414,30541,30542,16918,6425], +[2,31868,7625], +[2,31865,21160], +[1,2349,21159], +"dezalgo", +[0,21164,20990,21169,2402], +[3,9367,18,5], +"@tunnckocore/prettier-config", +"formdata-", +[2,21162,6422], +[0,30299,3688,30532], +[2,19713,1781], +[2,3862,18481,21172], +"www", +"ulpoad", +[0,1623,3561,6425], +[1,2349,21171], +[0,21176,20990,21181,2402], +"bob", +[3,11366,11], +[2,21173,3797], +"tiny-warning", +[0,1393,3688,30532], +"just-", +"debounce-it", +[2,21177,21178], +"tsdx", +[0,3561,1623,6425,3178,16918,3634], +[2,7519,582], +[1,2349,21184], +[0,21190,21191,21192,2540], +"render props", +"higher", +" order component", +[2,21186,21187], +"hoc", +[0,1636,3681], +[0,30559,3561], +[0,1623,3178,16918,3561,6425,3586], +[1,2349,21194], +[0,21196,21197,21198,2402], +"conditional", +[0,16837,3681,3688], +[0,1596,1177,1895,2675,1192,2990,3561,1894], +[0,4529,3561,1623,6425], +[1,2349,21200], +[0,21061,0,21201,2457], +[0,3561,1623,6425,2278,3639], +[1,2349,21203], +[0,21204,0,21205,2457], +[0,30577,220,3681], +[0,30579,1451,30581,1623,30413,30428,3639,30582,3561,6425,3624,3586,10654,10659,5341,12616], +[1,2349,21207], +[0,21208,21209,21211,2531], +[0,30587,30589,30590], +[0,20117,1393,3561,3613,4042], +"check-dts", +[0,3561,1623,6425,30594,2887,30595], +[1,2349,21213], +[0,0,20990,21215,34552], +"front matter", +[0,3561,1623,6425,8426], +"meta data", +[1,2349,21218], +[0,5493,20990,21169,2540], +[1,2349,21220], +[0,5493,20990,21169,2457], +[1,2349,21222], +[0,20989,20990,21169,4194], +[1,2349,21225], +"universalify", +[0,5493,20990,21229,2540], +"klaw", +"dir-files", +[2,15034,21227], +[0,1623,3374,16918,16919,3561,6425,1002], +[1,2349,21231], +[0,21232,20990,21169,2531], +[0,3688,30532], +[1,2349,21234], +[0,0,21235,21238,2540], +[0,2675,2899,3561,2759,1894,2990,3640], +"assist", +[2,6019,21236], +[0,3561,3665,3586,6425,1623,3585,1932], +[1,2349,21240], +[0,21241,0,21242,2531], +[0,28789,30630,30633,28817,30636,26477,30640,32579,30643,30647,30649,30652,30654,30657,30658,215,30662,30670,30673,30677,30678,30682,30686,30690,31001,30693,30701,30703,27930,218,28640,27069,30708,30712,29388,30715,32835,29704,30721,30724,30725,1165,1393,30728,30733,30736,1635,30326,30739,3570,30331,30338,3579,3584,3587,30742,30744,4791,30747,30348,30749,3611,30751,30754,3643,30757,30759,30761,30763,30358,30363,30366], +[0,1623,30428,16897,14836,30765,3286,3561,6425,10654,10659,16900,12616], +"any-promise", +"then", +[1,2349,21247], +"thenify-all", +[0,21248,21249,21169,4194], +[0,1393,30298], +[0,30302,2646,3561], +[1,2349,21251], +[0,0,0,21252,2540], +[0,1623,3561,30775,57,21110], +[1,2349,21254], +[0,0,0,21255,2540], +[0,1623,3561,30775,57,4329,2278], +[1,2349,21257], +[0,21258,21259,2523,2457], +[0,1636,23462], +[0,48,53,68,11267,61,87,94,1166,1198,16150,1701,1177,1938,2070,3183,3421,3561,4135,91], +[1,2349,21261], +[0,21262,21263,21264,4194], +[0,3688,4361], +[0,30315,3561], +[0,1623,3178,16918,3561,6425,8221,4361], +[1,2349,21266], +[0,21061,20990,21169,2540], +[1,2349,21268], +[0,0,21269,21270,2540], +[0,1177,2675,2990,1894,4387,4389], +[0,3561,6692,57], +[1,2349,21272], +[0,21273,0,21274,2540], +[0,28807,30805,30808,30811,30813,30816,30818,4484], +[0,14873,25638,14871,3519,18035,1747,13392,5576,5995,29938,14872,91,4799,1999], +[1,2349,21295], +"@monaco-editor/loader", +[3,7664,11], +"topwatch", +[2,21277,21278], +[2,7666,6731], +"@snippetors/vuepress-plugin-tabs", +[3,19464,17], +"google-a", +[2,21283,20827], +[2,21282,21284], +[2,93,4314], +[2,21282,21286], +[2,21282,7193], +"monaco-", +[2,21289,6038], +"dsense2", +[2,21283,21291], +[2,6324,21292], +[2,19469,21293], +[0,21297,21298,21299,2540], +"bitap", +[0,9376,9375], +[0,192,22559,1414,1429,1431,1436,1567,2675,2829,2990,2899,4255], +[0,1936,6523,23760,57,353,30826,24798,7121,26467], +"@types/katex", +[1,2349,21303], +"socket", +[0,21304,0,21305,34552], +[0,30840,3348,2970,2973,4431,30843,2972,30842,3310,30837,30834,3923,30833,30839], +[0,1747,28088,3693], +"tex", +"sublime", +"katex", +"sublime text", +[1,2349,21311], +[0,21312,21313,21314,2540], +[0,13609,30849,30850,30855,1695], +[0,1173,1280,4895,1245,1264,1389,5669,30857,2025,2297,2881,25848,2895,2900,30859,2899,30862,18102,3774,4019,4135], +[0,3696,1145,6468,1973,5472,5286,6892], +"globule", +[1,2349,21318], +[2,2237,5365], +[0,21319,21320,21321,34552], +[0,1615,23975,4707], +[0,1148,2759,2899], +[0,3358,582,3378,3697,30872,18462,1973,5001], +[1,2349,21323], +[0,0,21324,21325,2457], +[0,30877,30879,53,5874,12372,87,94,11976,4856,6503,4874,6513,17214,16480,30881,1429,1596,1610,30883,668,2675,30888,3165,2899,3401,30889,28423,3744,11481,4193,4196,4072,91,4548,1983,1984,824], +[0,3698,89,181,6073,30891,23361,4963,30892,6400,5130], +[1,2349,21327], +[0,21330,7927,11588,34552], +[2,4755,1145], +"yeoman-test", +[0,1437,1457,2152,18545], +[1,2349,21332], +[0,21333,21334,21335,2540], +[0,30905,8506,3137], +[0,21024,5467,811,8850,816,5087,9363,1009,1011,1529,1177,1895,1955,2675,1192,30912,12129,1894,4042,4257,4072,4474,91], +[0,1894,1932,1776,8505], +[1,2349,21338], +"restangular", +[0,0,21342,21343,34552], +"ui-router", +"foundation", +"traceur", +[0,4874,30922,1166,1894,91,13151], +[0,1894,30924,91,5651,3705], +[1,2349,21345], +[0,21346,21347,21349,4194], +[0,18710], +[0,3401,1894], +"find-git-root", +[0,6661,1932,1894], +"git-config", +[3,31021,19], +"@merkle-open/eslint-config", +[1,2349,21355], +"modular", +[0,0,21356,21357,2776], +[0,8862,811,816,4874,1166,1894,4042,4075,3709,4474,4484,91], +[0,1894,3709], +[1,2349,21359], +[0,21361,0,21362,34552], +"pooling", +[0,30940,1209,1997], +[0,1894,1541], +[1,2349,21364], +[0,0,8176,21366,2540], +"ts2mjs", +[0,3721,1413,1412,2098,4202,2090,12786,30946,7017,30947,2382,30948,23933,30950], +"iterators", +[1,2349,21370], +"iterable", +[0,21372,21375,21376,4194], +[2,21373,29777], +[0,1209,30956], +"@prisma/d", +"@prisma/dev", +[0,1429,1506,1509,30958,2899], +[0,3721,1851,30960,1676,6738,7017,13086,22405,1671,12786], +"@werkzeugkiste/eslint-config", +[3,21377,15], +[2,6019,1541], +[2,21378,21379], +"install-", +[1,2349,21389], +"postmerge", +[2,17496,21383], +[2,21381,21384], +[3,9794,17], +[3,13848,20], +[2,21386,21387], +[0,21390,21391,2523,2531], +[0,8801,1110,3847], +[0,4880,15606,4889,2700,2798,89,3824,3904], +[1,2349,21394], +"@cfware/lint", +[0,21398,8176,21399,2776], +"@cfware/nyc", +"if-ver", +"libtap", +[0,30970], +[0,3721,22405,12786,24130,30946,7017,6901,3242,30974,17003,30975,6754,2585,1871,6988,15244], +[1,2349,21401], +[0,21403,0,21408,34552], +"available", +[0,6041,4484,2687,26379,3530,30097,3527], +"connection", +"tcp", +[3,6045,9], +"chosen", +[0,3358,30981,30982,1894,3720,6983,1501,30983,30872], +[1,2349,21410], +[0,21411,21412,21414,2531], +[0,1512,3183], +[0,2899,2272,4170,2759,1596,3202], +"std", +[0,1781,200,6983,1512], +[1,2349,21416], +[0,21417,21419,21421,2531], +[0,3260,25638,21374,28286,30996,21351], +"@sec-ant/readable-stream", +[0,3467,4763,2611,1192,3445,2020,2929,28974,3510,1759,8537,15452,1457,2151,842,16145,16473,2794,3077,3310,29710,4294,31000,91,5087,4874,6477,28076,1151,2191,31004,3393,31006,32248,31008,28229,31009,25629,31013,4864,33235,23531,8998,29420,31015,31018,13471,32470,31023,31026,33237,28231,29421,26285,33683,21371,13502,29425,31475], +"onetime", +[0,9628,31034,31035,31037,31038,18035,1747,17626,31039,6869,31040,31041,31042,3519,31043,31045,31046,31047,31048,31049,31050,31051,31052,31221], +[1,2349,21424], +"precise-now", +[0,0,21425,21426,2540], +[0,5542,1317,1429,31058,1700,31061,1177,1942,1964,2323,2361,2367,2409,20304,2494,2496,31063,2553,2654,2665,2832,2899,3310,3400,1894,3756,19745,19750,12120,3980,19751,4183,31066,4747], +[0,588,5342], +[1,2349,21428], +[0,21431,21433,21434,4194], +"-maps", +[2,6477,21429], +[0,1362,1364,1512,2026,3078,3188,3220,31074,3460,3507,31075], +[2,2190,6660], +[0,1429,2323,2463,3215,4089,4193,4196,4339], +[0,1370,7223,29179,18157,12468,2325,3358,31078,3383], +[1,2349,21436], +[0,0,6555,2523,2540], +[3,13936,15], +"evry", +[2,21437,21438], +"make-d", +"eno-edition", +[2,21440,21441], +[1,2349,21445], +"deno", +[0,0,21446,21448,34552], +[0,4770,2899], +"deno-edition", +[0,3729], +[1,2349,21451], +"deno-entry", +[0,0,0,21453,34552], +"denoland", +[0,200,3730], +[1,2349,21474], +"es2022", +[3,72,14], +"ifconfig", +"ipconfig", +"mac-address", +[1,2349,21461], +[0,21462,0,21463,2540], +[0,1437,3730], +[0,2924,1932,3730,10036], +"email-", +"addresses", +[2,21464,21465], +[1,2349,21471], +"dir-compare", +"tschaub", +[2,1884,21469], +[0,21472,21473,2523,4194], +[0,29277], +[0,1082,4039,2759], +[0,0,21478,21484,34552], +[1,2349,21491], +"manage-path", +"opt-cli", +[0,1389,1610,1177,10697,2675,2297,2871,2881,2900,2990,2899,3400,1894,4039,4042,4077,4193,4650,91], +"chai-s", +"chai-string", +"kentcdodds", +[2,1884,21481], +"trav", +[0,1862,3734,6789,14833], +"is-after-all", +[2,21483,21485], +[1,2349,21488], +[0,21489,17033,21490,2540], +[0,2899,4193,4545], +[0,6567,14833], +[0,16613,21493,11588,34552], +[1,2349,21786], +[0,1804,2109,2899,3699], +[1,2349,21500], +"@primer/octicons", +"@primer/", +"primitives", +[2,21496,21497], +[2,812,1936], +[0,21501,21502,21503,2776], +[0,13388,1149,3917,13832,4709], +[0,1177,4616], +[0,3741,6876,31122,7020], +[1,2349,21506], +"minipass", +[0,21508,21511,21513,2776], +"path-scurry", +[0,2929,16235], +"-from-dist", +[2,9478,21509], +[0,48,53,78,87,4387,4389], +[2,5745,1563], +[0,181,3742,200,3741,8626,6876,6847,1523,2184,4403,8620,31129], +[1,2349,21515], +[0,21516,21517,10578,2531], +[0,3082,3427,3847], +[0,1193,1268,1389,1408,1177,2708,1192,89,31135,31136], +[1,2349,21521], +"dirname", +"wildcard", +[0,0,21522,21523,2457], +[0,9363,4874,31142,1414,2620,31145,31147,1894,3985,3998,31148,31150,4505,91,18002,1906], +[0,31152,23584,1936,4374,18523,3205,8221], +[1,2349,21525], +[0,21527,21528,21529,2531], +"min-document", +[0,31157,31159,31160,31161,31162,31165,31166,31167,31169,31170,4874,3080], +[0,1317,1389,31172,1408,1437,1875,1177,2000,2004,2193,28406,31174,21749,2323,2409,2419,2510,2530,1776,3183,3421,3951,4389,4487,91,4535,4599,4600,4603], +[0,7018,6765,7050,91], +[1,2349,21531], +[0,21532,21533,21534,2531], +[0,11304,28502,31180,14336,1437,2070,2765,31182,3760,12826,4130,4232,31184,31186,4747], +[0,7740,4865,23689,31188,9129,4874,1364,1429,1431,28556,2025,2026,2323,31190,2526,2272,1209,3127,2899,31191,4039,4089,4135,4487,31194,91,31195], +[0,1098,1973,5472,11132,13841,28522], +[1,2349,21538], +"path-t", +"path-type", +[0,21540,21542,21546,2540], +"glob-stream", +[0,7058,31202,1676], +"fnmatch", +[0,31205,5245,5087,4874,1151,1192,4468,91,2190], +"globbing", +"globs", +"wildcards", +[0,27,2671,2658,1544,3013,31207,31209,18413,31210,31211,31212], +[1,2349,21548], +[0,21549,21551,19008,2540], +[0,31218,31220,814], +[2,13039,12804], +[0,2899,31224,4170,4193,4255], +"array-series", +[1,2349,21554], +[0,21557,21558,21559,2531], +"magick", +[2,11812,21555], +[0,1437,31229,31233,2720,2742,1209,3170,3309,3470,4135], +[0,1173,1255,1264,1700,1177,1895,2702,2759,3188,2899,3211,1894,4039,4170], +[0,2323,3378,20001,3383,1237], +[1,2349,21561], +[0,21565,21569,21570,2402], +"-with", +[2,21562,1892], +[2,1903,21563], +[0,31249,31246,31248,31250,31243,31251,31242,31254], +"msmc", +"mc", +"minecraft", +[0,3188,4039,24592,24587,24594,24596,31259,31258,24591], +[0,1936,2437,3754,1283], +"java edition", +"arm", +"arm-support", +"forge", +"s-management", +[2,16154,21575], +"instances", +"mod", +"mods", +"mc-mod", +"mc-mods", +"modpack", +"modpack-api", +"extendable", +"nbt", +"jarmods", +"skin fix", +[1,2349,21589], +[0,0,21590,2523,2540], +[0,1317,27468,2060,3714,31266,4387,4389], +[1,2349,21592], +[0,21593,0,21598,2540], +[0,1834,3441], +"docsify-cli", +"ing-promise", +[2,14639,21595], +[2,16645,21596], +[0,7046,7170,14858,7241], +"spreadsheets", +[2,8567,21599], +[1,2349,21602], +[0,0,21609,21612,2540], +"google sheets", +[3,21599,11], +"sheets", +"gdata", +"drive", +"google docs", +[0,1503,3421,2899], +"svgs", +"google drive", +[0,3757,3656,31277,31278,31279,1002,31280], +[1,2349,21614], +[0,21615,21617,21618,2531], +[0,17846,31286,1595,28504,11114,31288], +[2,2211,13369], +[0,4874], +[0,3758,3195,29727,13428], +"@types/execa", +"@types/mv", +"@types/ncp", +"unjucks", +[2,10884,21622], +"rl-template", +[2,7817,21624], +[2,4892,1574], +"js-green-licenses", +[1,2349,21629], +[0,21631,0,21634,4194], +"linkinator", +[0,1525,2071,3561,3681], +[2,8573,591], +[2,5576,12950], +[0,6707,16587,7293,17507,1623,1936,3624,31297,22946,18114], +[1,2349,21636], +[0,0,21637,21643,2488], +[0,2228,2272,3130,2240,2768,2281,3736], +"p-cancelable", +"responselike", +"-keys", +[2,17267,21640], +[2,13788,2741], +[0,3760,1862,6567,14832,14833,14834,14836,1149,14838,8553,1388,202], +"able-lookup", +[2,2325,21644], +"cacheable-", +[2,21646,705], +"-encoder", +[2,2139,21648], +[2,17278,5508], +"byte-counter", +[1,2349,21660], +"pem", +"@types/pem", +"cert", +"create-cert", +"slow-stream", +"then-", +"then-busboy", +[0,0,0,21661,2402], +[0,11194,31307,16421,18048,8221,158], +"@hapi/bourne", +[2,1601,9224], +[1,2349,21669], +"brotli", +"requests", +[2,20034,17460], +"ky", +[0,0,0,21670,2540], +[0,1111,6938,11194,7201], +[1,2349,21672], +[0,21673,21674,21675,2540], +[0,17409], +[0,31317,31319,13614,1389,1408,31322,1796,1855,1177,2011,2133,2070,19066,31328,27547,17421,2569,2685,2708,2762,2807,3188,3206,15030,3410,3421,3431,19974,4103,23948,4389,31329], +[0,3767,3763,3766,1002,1644,1646], +"govuk-", +"-kit", +[2,6688,21677], +[2,21676,21678], +"gulp-cl", +"gulp-cli", +"sass-co", +"lor-helpers", +[2,21682,21683], +[1,2349,21686], +[0,21690,21692,21693,2540], +"embedded", +[2,4832,21687], +"sassdoc", +[0,31337,31339,31341], +"govuk", +[0,1166,1317,1693,2064,4481,1906], +[0,1388,3767,3766,1871,3763,5420,31344,1002,1644,1646,10368,15103,31345,7131], +[1,2349,21695], +[0,0,21696,21698,2540], +[0,1973,31350,4389], +"reading", +[0,10906,3766,3767], +"retries", +"EMFILE", +"EAGAIN", +"EINVAL", +"EPERM", +"EACCESS", +[1,2349,21706], +[0,0,21707,21708,2540], +[0,1414,2665,31357], +[0,3768,1149,14629,31360,12692,5957,6994,13792], +[1,2349,21710], +[0,11577,11578,21711,2540], +[0,3768,29664,31365,31366,31367,5284,17625,17626,676,91,17627,6869,4799,12692,4721,3768,31369,31370,31374,8893,6994,31376,6915,17697,6333,31377,2382,6956,17706,17710,6957,17711,17712,17713,17714,17715,17716,17717,17718,17651,6674,17721,17722,6789,17723,17724,17726,17727,17729,17730,17731,17732,17733,614,6910,17734,11600,17735,3760,31379,4552,28483,31381,6645,4787,3286,202,5401,27366,6681,17740,1745,17116], +[1,2349,21713], +[0,21714,21716,21717,2540], +[0,3021,31388,31389,2017], +"graphql-js", +[0,2070,4361,2832,1177,4333,1984,4474,2924,1894,4469,48,1628,91,53,4874,2629,4677,1195,2600,4307,4334,4689,4891,17214,8648,5139,87,4230,4681,31392,2651,1938,4409,1895,1947,1955,3177,92,31394,1011,20476,31393,1009,8724,1915], +[0,3771,6038,6106,6105,6138,6139,5130], +[1,2349,21719], +[0,21722,21723,21724,2457], +"all-versions", +[2,1382,21720], +[0,1525,11482,3350], +[0,3421,2228,2929,1177,4039,4042,4135,1317,2116,31401,4019,3752,20496,53,31402,87,1937,1954,2258,18895,23165,5583,1924,1938,31404,1958,2256,6373,1903,1948,811,1900,816,31405,8229], +[0,5472,2275,1145,6468,4384,4389,2297,2814], +[1,2349,21726], +[0,21727,21728,21729,4194], +[0,31413], +[0,5517,31417,1009,1011,7677,1240,1264,1540,1177,1895,1955,15854,18841,1894,23535,2907,3980,18819,4042,8849,4076,91,1984,2924], +[0,1388,965,1936,2907,31419,5472], +"section-", +[2,21730,9338], +[2,4296,12835], +[1,2349,21736], +"ansi-green", +"delimiter-regex", +[0,21737,21739,21741,2540], +[0,1457,1525,31426,2107,31427,814,4648], +"assemble", +[0,1149,1203,1267,31429,1499,25063,25076,1937,18895,2020,2116,2151,2228,2240,2243,2256,2258,23165,2283,21929,2291,25070,21930,26210,31402,3006,3752,4019,4045,4135], +"extracting", +[0,5472,2275,2814], +[1,2349,21743], +[0,21744,21747,21753,2488], +[0,3518], +[3,5364,11], +[2,21745,1398], +[0,31437,1389,4389], +[2,1807,2899], +[2,10692,7018], +"pois", +"son-process", +[2,21750,21751], +[0,31440,6422], +[1,2349,21755], +[0,0,21756,21764,2531], +[0,48,53,87,94,104,5583,24621,31447,1290,1317,1481,1610,31448,1177,1938,2064,2036,2822,2899,3400,3421,4039,4042,4077,31449,31452,4193,4423,31453], +"grunt-k", +"nown-options", +[2,21757,21758], +"legacy-log", +[2,2235,21760], +[3,21761,13], +[2,21762,614], +[0,3776,6564,594,6731,6081,7517,7532,7594,7595,7523,7524], +"difflet", +[3,16758,16], +"unt", +[2,21766,21767], +[1,2349,21771], +"temporary", +[0,21773,7927,21774,2776], +"init", +[0,4127], +[0,3778,28734,28734,4718,1179,16431,2585], +[1,2349,21776], +[0,8792,21777,21778,2531], +[0,3521,4255,4387,4389,4770], +[0,1616,3778], +"gruntplugin", +[1,2349,21781], +[0,21782,7927,2523,2402], +[0,3779], +[1,2349,21784], +[0,0,7876,21785,2488], +[0,6754,57,27], +[0,21788,21792,21793,34552], +[1,2349,21794], +[0,3135,3348,977,31479,4252], +[3,21146,12], +"ncremental", +[2,21789,21790], +[0,2070,3297,2899,4193,1177,4170,2759,1894,1506,1895], +[0,28411,2656,31482,6807,3783,31483], +[0,21796,21797,2523,34552], +[1,2349,21916], +[0,1413,14855,2685,2657], +[0,3421,2899,1177,1362,29197,4100,3923,19344,7844], +[1,2349,21799], +[0,13541,21800,13543,2531], +[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,1955,2675,1192,2990,3144,3400,1894,4257,2924], +[1,2349,21802], +[0,21803,0,21805,2540], +[0,2714,3183,1696,4300], +"liftup", +[0,1541,1997,28984,19400], +[1,2349,21807], +[0,21808,21809,21811,2531], +[0,97,1461,3789], +[0,31504,968,972,4859,5087,4874,4880,4883,14693,1610,1789,1177,1939,1982,2079,31506,2193,2070,695,3377,31508,3788,11249,89,3824,3957,91], +"pad-stream", +[0,89,5128,31511,31512,6847,6754], +[1,2349,21813], +[0,21815,21816,21817,2531], +"grunt-nodemon", +[0,97,13169,1461,3789], +[0,31504,972,5087,4880,4883,11322,1610,1789,1177,1982,2079,2193,695,3377,31508,89,3824,91], +[0,89,5128,31519,8190], +[1,2349,21819], +[0,21822,21823,21824,2531], +"simultaneous", +"faster", +[0,97,3847], +[0,31504,972,5087,4874,4880,4883,15606,31527,11322,14693,1603,1610,1789,1177,1939,1982,2079,2070,2675,2990,3377,1894,31508,89,3824,91], +[0,89,614], +[1,2349,21826], +[0,0,0,10578,2402], +[1,2349,21828], +[0,21829,0,21835,2402], +[0,3911], +[2,21831,36], +[3,30922,14], +"bin-", +[3,18806,13], +[2,21832,21833], +[0,89,31542], +[1,2349,21838], +"compass", +[0,21839,21840,21835,2531], +[0,3427], +[0,1192,89,3824,2924], +[1,2349,21842], +[0,21843,21844,21845,2531], +[0,31555,31558,31560,31563,31564], +[0,4042,91], +[0,5575,2220,89,582,21189,4963], +[1,2349,21848], +[2,1547,3000], +[0,21849,0,2523,2457], +[0,3775,1593,1862,4705,3427,3957], +[1,2349,21851], +[0,21852,0,21853,2540], +[0,4649,2731,1461,3744,31577,1751,97,31575,31581,31578,5090,3911,4808], +[0,1367,89,4627,4963,31583,5128], +[1,2349,21856], +"file-sync-cmp", +[0,21857,21858,21859,2531], +[0,31590,1209,3021,31591,3744,31592,4443], +[0,31594,31598,14689,14691,10837,1173,1175,1193,1195,31600,1267,1268,1272,1280,1429,31602,1628,1843,2012,2081,2600,2629,2651,2678,1192,2774,31603,2899,3376,3378,3427,89,21074,31605,3824,3836,31606,3904,4001,4015,4039,4307,31608,2924,4681], +[0,89,31611,5128,20542,3811,31612,3195,31614,5027,8192], +[1,2349,21862], +"csslint", +[0,21863,21864,21865,2488], +[0,1582,3744], +[0,48,53,68,61,78,87,90,94,1195,1251,1628,1703,1177,1879,1938,1947,1959,1961,2193,2651,31622,3177,89,3824,4307,4389,2924,4677,4681], +[0,4627,5128,89,31625,1492], +[1,2349,21868], +"maxmin", +[0,21870,21871,21872,2488], +"cssmin", +[0,8703,1497,1668], +[0,53,68,5228,8229,61,87,90,92,442,31633,5583,811,816,10615,10817,966,972,974,5601,5087,11292,4874,4880,4883,1009,1011,1169,1193,1251,1593,33872,1177,1895,1938,1939,1959,1961,27790,2675,1192,11347,2771,2780,2990,1209,1894,89,3824,4042,11802,2278,4213,4320,4323,5978,4330,4468,4484,91,4523], +[0,89,3812,9026,1666,5128], +[1,2349,21874], +[0,21875,21876,2523,2531], +[0,3445,1437,2696,2205,3539,15427,2105,31642,3742,2098,2553,4294,4425,1615,4165,1393,3008,14564,31640,51,3938,3829,1874,2135], +[0,1192,1610], +[1,2349,21878], +[0,21879,21880,2523,2776], +[0,31650,31652,31654,2069,2609], +[0,8719,842,972,5540,5087,4874,4880,4883,1192,11944,3400,89,3824,4172,91], +"jpeg", +[1,2349,21883], +[0,21884,21885,2523,4194], +[0,31654], +[0,8719,842,5087,3400,4172,91], +[1,2349,21887], +[0,21888,0,21889,2540], +[0,814,19526,53,104,8959,5251,101,31669,10879,31666], +[0,89,1745,31671], +"hooker", +[1,2349,21892], +[0,21893,0,10578,2540], +[0,4116], +[1,2349,21895], +[0,21896,21899,21900,2540], +[0,31683,31686,3744], +[3,13115,12], +[2,21897,1462], +[0,48,53,68,8229,31689,73,31690,14170,13051,31693,83,87,90,94,192,22559,19036,26486,5583,811,816,6061,16607,6065,16608,16612,5535,10876,31695,966,968,972,20562,4880,4883,1009,1011,1193,1198,1201,1527,1610,1177,1895,1938,1947,1954,1955,1959,1961,2675,31696,2694,1192,2990,3125,3534,1894,89,3824,3895,3904,4039,4042,4073,4131,4201,4307,4315,91,2924,31699], +[0,5128,89,7518,5398,9229], +[1,2349,21902], +[0,0,21904,21905,2540], +"nodeunit-x", +[0,51,53,31705,1193,1195,1270,1437,1457,1610,2126,2626,1192,31706,3427,1862,3786,89,3803,3824,4039,31708,4227,2924], +[0,3473,5341,1851,12991,5403,31710,31711,4649], +[1,2349,21907], +[0,21908,21909,21910,2540], +[0,3427,3744,21174,31718], +[0,1175,1178,1203,1208,1230,1245,1264,1268,1429,1503,1567,1652,1177,31721,1895,1938,1947,1951,1955,1959,2759,2297,2878,30885,2881,2886,2895,31723,2900,2910,2921,2923,28636,2899,1894,89,3824,4039,4042,4045,4055,4067,4069,4193,4196], +[0,3830,31725,89,1746,3193,17913,5207,163,1508,1299,31726,590], +[1,2349,21912], +[0,0,21913,21914,2540], +[0,19438,603,811,816,10615,842,16145,968,972,5087,4874,4880,4883,6375,1651,1177,1895,4916,1955,1959,1961,10964,2675,1192,2780,27412,31734,2990,1894,89,3824,4039,4042,4076,4481,91,4523,4705,4763], +[0,89,582,1669,25,7021,7020,91,6687], +"uri-path", +[0,21918,21919,21920,34552], +[1,2349,21921], +[0,26007,2202,2609,3008,3744,3849,4163,4227], +[0,8130,4880,8158,1173,1175,1178,1193,1201,1203,1230,1245,1257,1264,1268,1503,13985,1603,1610,1843,31742,1845,1177,1879,1895,1938,1947,1959,2675,1192,2990,1894,89,3824,31743,3904,3935,4039,4042,4045,4055,4058,4067,4069,4077,4257,31745], +[0,89,5284,2924,11498,3000,2998,6109,6609,1194,2999], +[0,21923,21924,21925,34552], +[1,2349,21950], +[0,97,31752,5545], +[0,48,53,68,23908,78,5241,83,85,87,90,94,5583,811,816,6373,10615,966,968,972,5087,4880,7677,17584,1175,7913,14065,1596,1597,1610,1177,1879,1895,1938,31755,1947,1959,1976,2559,2675,2681,2990,3188,1894,89,3824,3904,4039,4042,91,1984,4747], +[0,2681,23932,2679,8930,23933,6728,23934,89,6071], +[1,2349,21931], +"grunt-co", +"veralls", +[2,21927,21928], +[2,2235,2759], +[0,0,21932,21933,2402], +[0,5517,11976,5535,968,972,4874,4880,4883,1030,32818,16480,19839,2990,3165,3400,3541,23535,89,3824,9245,4201,4493,91,1984], +[0,89,4627,582,31765,31766,31767,31769,31770,31771,31779], +[1,2349,21935], +[0,21936,0,21938,2540], +[0,5540,2609,4484,26222,31797,31791,31799], +[3,2289,9], +[0,1671,6983,23934,2679,23932,2728,30948,23933,89,6071,8574,8930], +"all-releases", +[2,9005,21939], +[2,21937,21940], +[2,2235,21941], +[1,2349,21946], +"gh", +"releases", +[0,0,0,10578,2776], +[1,2349,21948], +[0,0,21949,2523,2531], +[0,1420,1437,1177,31815,1192,2774,1894,4042,4069,4077], +[0,21952,21953,21954,34552], +[1,2349,21961], +[0,12396,9363,23289,2583,31821,3140,3992,3999,4549,4555,12449], +[0,972,4874,4880,4883,1414,1537,668,1959,10621,1894,89,3824,3973,29250,3985,3988,3998,10632,4505,91,1906], +[0,6892,20627,4627,3987,1783,89,5128,3984,4549], +[1,2349,21957], +"vow", +[0,21958,21959,21960,2531], +[0,31828,3744,3849,4649], +[0,31832,1173,1175,1178,1195,1198,1264,1268,1277,1596,1610,1177,1895,31393,1938,1947,1955,1959,13871,2297,2881,2886,2895,2900,2904,2921,2925,2899,3400,1894,89,3824,3884,3885,4170,4535,2924,4677,4681], +[0,89,5128,5066,18346], +[0,21963,21964,21965,34552], +[1,2349,26366], +[0,3518,3744,3775], +[0,1172,31840,1175,1178,1195,1505,1628,1177,1879,1916,1938,1947,1959,2126,29945,31841,31842,2766,2297,2886,2898,31844,2906,2925,31845,3521,3836,4307,2924,4681], +[0,89,4627,5128,31847,8424,31849,12185,7521,9944,181], +[1,2349,21967], +[0,21968,0,21971,2540], +[0,4729,31705,4747,4135,1862,1301,1525,2731,4116,1109,1193,31856,27921,3145,4705,31859,3717,3878,30781,1079,31861,28512,31864,24169,3957,31867,2784,31871,31877,31880,31884,31891,31893,21129,31896], +"ravis-cli", +[2,6305,21969], +[0,89,3857,12296,12295,5131,16697,31904,31906], +"TDD", +[1,2349,21974], +[0,0,21975,21976,2540], +[0,29525,21155,21156,1177,1955,1894,89,3857,21166,91], +[0,3857,5128,31912,89,5131,12295,12296,31914], +[1,2349,21981], +[3,2247,10], +"inue", +[2,21978,21979], +[0,21985,21986,21987,34552], +"grunt-env", +"-coverage", +[2,21930,21983], +[0,4747,3744], +[0,89,1177,31934,31928,2735,1894,10777,48,31923,53,1178,2132,31926,21495,31929,31935,31932,31920,31922,1959,1879,1938,1895,1947,1955,1961,5103], +[0,3857,5128,31912,89,5131,12295,12296,31937,6574,6635,181,1017,45,13814,22875,2414], +[1,2349,21989], +[0,0,21992,21993,2488], +"afe-mocha", +[2,2241,21990], +[0,48,53,61,78,5240,87,90,94,31942,20202,20212,602,15134,10817,968,972,974,4880,1011,1178,1195,1198,4899,1461,1497,1610,1177,1895,1916,1938,1959,2193,2832,3132,15326,1894,9054,89,3824,31945,4042,4045,4055,11802,4060,4067,4069,4077,4469,91,1984,2924,4677,4681], +[0,5128,89,31948,6847,6988,31950,10098], +[1,2349,21997], +[2,21996,995], +"@sailshq/r", +[0,0,21998,21999,2540], +[0,53,61,78,87,14041,5583,1178,1195,1429,1177,2675,2990,2899,3400,1894,89,3824,3904,31956,4039,4042,2924], +[0,89,31958,31959,3868], +"grunt-release", +"s-dylang", +[2,14352,22001], +[1,2349,22004], +[0,0,22006,22007,2540], +"notify", +[0,8862,31964,1177,31966,1955,31967,1192,1894,4042,91], +[0,3872,1936,8221,965,3205,23584,1541,89,3824], +"mountain lion", +"mavericks", +[1,2349,22012], +"notify-send", +[0,22013,22014,22015,34552], +[0,5546,5545], +[0,603,810,966,968,972,4874,5090,4880,4883,1503,1610,1177,1895,1915,1938,1955,1959,2832,1894,89,3824,3875,4039,4493,91,4523,1984], +[0,89,6071,3875], +[1,2349,22017], +[0,0,0,10578,2540], +[1,2349,22019], +[0,22020,22021,22023,2540], +[0,2677,31983,3744,1849], +[0,10817,4856,31986,13204,31989,31992,6503,4880,4883,6513,1009,1011,1429,1610,1177,1924,2193,2832,31994,2899,1894,89,3824,4039,4042,11054,4170,4193,4484,4494,4508,91], +"libsass", +[0,1623,5128,31765,89,5131,31997,31999,6415,32001,6398,4627], +[1,2349,22025], +[0,22026,22028,22029,34552], +[0,977,5152], +[2,705,1153], +[0,4493,89,4548,22205,28119,3824,91,3904,972,2780,5162,968,974], +[0,89,38,4082,7433,2602,163], +[1,2349,22032], +"sauce-tunnel", +[0,22036,22038,22029,2402], +[3,2311,11], +"-tunnel", +[2,22033,22034], +[0,3884], +"yui", +[0,4493,89,22205,3824,91], +[1,2349,22040], +[0,0,22041,22042,2540], +[0,1173,1175,1178,1195,24231,24234,1257,1267,1268,1275,1280,1177,1898,1935,1938,1947,1959,2022,2602,22588,31842,2297,2886,2895,2900,2904,2921,2925,2899,89,3824,3876,3884,3875,32020,32023,32026,2924], +[0,89,3875,38], +[1,2349,22044], +[0,22045,6232,2523,2540], +[0,1324,1192,1759,1177,4135,3561,3742,814,2924,2151,2154,1420,1193,1628,53,2092,4111,4383,1195,1393,2797,4307,841,1763,3878,3618,3816,3647,4230,2686,3672,3803,4028,4681,2651,2802,24732,4409,1270,3605,4723,1898,3177,4686,1630,1216,1426,24723], +[1,2349,22047], +[0,22048,22049,22050,2457], +[0,97,7931,7948,8181,4808,3145,3744,3911,8187], +[0,11931,1843,8160,11875,89,3824], +[0,32039,1669,6847,32040,89,5128,1631,181], +[1,2349,22056], +"sprit", +"esheet-templates", +[2,22052,22053], +"sprites", +[0,22059,22063,22069,34552], +"spritesmith", +"url2", +[0,1461,32046,3029,4023], +[3,21470,15], +"wolfson", +[2,22060,22061], +[0,48,53,68,61,85,87,90,28598,968,972,974,4874,1165,1175,1193,1195,1261,1628,1699,1700,1859,1177,1938,1959,2026,32049,2323,2494,2675,1192,2780,2820,2843,2990,3459,3618,1894,3775,89,3824,3957,4193,32051,4307,4537,2924,4677,4681,32052], +"foundry", +"-release-git", +[2,22064,22065], +[3,22066,16], +[2,22067,3378], +[0,11167,32054,32055,32056,31512,5128], +[1,2349,22073], +"get-pixels", +"gmsmith", +[0,22076,22077,22078,2531], +"sprite", +[3,22054,11], +[0,32061,4889,32062,1082,15128,1145,12184,1397,1465,5386,1497,32063,1584,1593,19526,32064,1863,1874,1875,2007,29067,7076,32067,7610,2070,32068,2570,2745,32070,32071,32072,32076,32080,32081,32084,32085,2929,32086,1209,21641,3120,32087,6041,3467,3725,3744,32088,32089,3816,3822,32091,32095,32097,3839,12438,3930,3984,32098,4409,19650,32099,4555,4681,4689], +[0,48,53,61,87,14128,90,92,968,972,32102,32104,31669,32107,1006,32109,5087,32112,4870,32114,4874,8149,4880,4883,32116,32118,4891,32120,8157,1009,1011,1175,1178,1193,1195,1628,31058,32121,32123,32124,1177,32126,1915,1924,1938,1947,1959,2092,2151,2675,1192,32129,2990,3144,1894,3775,89,3824,3904,32130,4307,91,4027,2924,4677], +[0,89,1219,6718,25172,1745,1739,1179,4627,4963], +[1,2349,22080], +[0,22082,22083,22084,2540], +[2,17566,200], +[0,97,955,5090,3744], +[0,53,83,87,90,442,15288,5583,811,816,6373,10615,972,5087,13204,4874,4880,4883,7749,1251,11890,1177,1895,1959,1961,10964,2203,1192,2780,3297,3401,1894,89,3824,4042,4167,4172,11803,4468,4474,91,4523], +[0,965,1936,11806,11807,5284,89,32142,8221,32145,91], +[1,2349,22086], +[0,22087,0,22094,34552], +[0,2081], +"@npm/types", +[2,7726,2855], +[3,8610,9], +"ite-file-atomic", +[2,22090,22091], +[2,16569,1182], +[0,32151,89,4453,1702,32152,3899], +[1,2349,22096], +[0,22097,0,22098,4194], +[0,3847,4116], +[0,89,3857,32162], +"@guarapi/eslint-config-guarapi", +[2,8711,93], +[3,5542,13], +[2,22101,3312], +[1,2349,22104], +[0,6236,22105,22106,2531], +[0,32167,27742,549,963,4874,4880,4883,1030,1596,1651,8540,2990,3561,1894,89,3824,4493,91,1983,32170], +[0,89,9044,11000,5128,3906,6645,32172,26264,6458], +[1,2349,22108], +[0,22111,22112,22113,2531], +"undertaker", +"glob-watcher", +[0,32177,32178], +[0,1317,1389,1408,1506,32180,5669,1839,32181,1859,1177,19896,2228,2240,25074,2247,18461,2256,2273,32183,25060,32186,2774,3460,3521,12344,32188,3930,22031,4449,91,4535,31135,4652], +[0,89,1219,8535,6624], +"series", +"streaming", +[1,2349,22117], +[0,22118,0,22119,2402], +[0,97,1751,3082,3744], +[0,89,9944,19102,32195,7521,1623,32196], +[1,2349,22121], +[0,22123,22124,22125,34552], +"gulp-footer", +[0,1497,3744,1751,3082,97,3849], +[0,1192,2675,89,2282,1177,4039,4042,1503,3561,2924,2126,2193,1894,1610,2700,3758,3824,48,1193,1505,1628,53,2092,2990,3566,4677,1165,1178,1195,3720,3884,4307,3618,85,29945,32207,3885,87,14128,18229,4681,90,32203,1922,1959,32205,2651,3904,4045,4077,32202,4069,1895,1935,1947,1955,4055,32206,4067,2054,8229,83,14132,28972,61,5241,1251], +[0,89,6071,5128,4607,3392,32209,32210,3912,176,32211,10345,9320,15182,10052,21604], +"html2js", +[2,1283,2325], +[1,2349,22129], +[0,22130,22131,22132,2402], +[0,4430,3909], +[0,2899,2272,4135,15052,1389,1537,32218], +[0,89,1389,14927,1219,676,1932,353], +"gulp-symdest", +[1,2349,22135], +[0,22136,22138,22139,2531], +[0,97,6372,1461,3744,32225,3911], +"atom-shell", +[0,48,53,68,73,76,78,5241,87,90,10821,10825,10828,32229,10837,968,972,974,4880,1178,1193,1195,1270,1367,1540,1567,25901,1610,32231,1787,1797,1177,1879,1895,1935,1938,1947,1959,10851,32233,1192,2780,2832,2843,3165,1894,89,3824,3830,32236,3884,3904,91,2924], +[0,3916,1367,89,4627,4963,5128,181], +[1,2349,22141], +[0,22142,22143,2523,2540], +[0,8612], +[0,9516,9515,8608,13680,1011,1414,1915,4384,4474,4483,91], +[1,2349,22148], +"prefixes", +[3,3674,9], +[2,22146,8736], +[0,22149,11386,22150,4194], +[0,18186,18183,16474,4507,20789], +[0,1781,3917,1644,2090,2150,30135,3001,3383,3374], +[1,2349,22152], +[0,22154,8176,22155,2540], +"lodash.chunk", +[0,30055,3919,4507], +[0,1781,3917,1644,2090,2150,30135,3001,3383,2100,2104,2105,7076,6614,6605,7193,3529,814,5933,7029,6857,7204,4647,6821,3403], +"-transform", +[2,13792,22156], +[1,2349,22159], +[0,22160,22161,22162,2488], +[0,1079,1398,2018,3729,15042], +[0,53,14170,13051,19181,811,15460,816,826,1389,1414,668,32258,1177,1903,1938,1953,1958,3541,1894,4042,23652,4384,32262,4389,4390,4548,2924,4677], +[0,7017,3101,7170], +[1,2349,22165], +"b", +[0,0,22169,22171,4194], +"storage-blob", +[2,13444,22166], +[2,12694,14922], +[0,4384,2685], +"streamifier", +[0,3925,32271,2090], +[1,2349,22173], +[0,0,0,22174,2488], +[0,3925,31360,24095,3741,8631,6875,200,6621,1523,32276,8652,6703,1359], +[1,2349,22176], +[0,8864,7950,7951,2531], +[1,2349,22178], +[0,22182,22183,22184,34552], +"rewriting", +[3,12348,14], +"desugaring", +[0,12184,2003,4227,32284,4484], +[0,53,58,87,32287,4865,6503,4874,1011,1177,19896,32288,2070,2990,2899,1894,24209,91], +[0,6892,22179,32291,5061,5341,22180,7119,32293], +[1,2349,22186], +[0,8034,7950,7951,4194], +[1,2349,22191], +"utf-8", +"add", +"prepend", +[0,22192,14074,22193,2540], +[0,814], +[0,3209,1194,7188,19101,32302], +[1,2349,22195], +[0,22196,0,22199,2540], +[0,97,32307,2081,2609,3849,5513], +"decov.io", +[2,2364,22197], +[0,89,6734,4963,32310,6081,6731,32312], +[1,2349,22201], +[0,13886,7927,22202,4194], +[0,7204,32318], +[1,2349,22204], +[0,22206,0,22207,34552], +"wireit", +[0,32325,32327,32329,32330,32333], +[0,1552], +[1,2349,22209], +[0,22210,22211,5887,2402], +[0,6327,8111,3127,8114,3725,4213,3555,1757,1461,3191,3744,8122,8123,8113,8127,2017,8116,3502,8126,8119,32343], +[0,3775,1002,1192,3190,2675,89,4484,1843,1177,4039,1593,1651,2822,3471,4167,4468,4474,8166,2924,1894,3824,1628,4201,91,4856,5087,8144,4874,8165,4677,4880,4892,3720,4307,4863,8147,8146,8149,8155,4891,8160,8161,8163,10875,8136,4883,5090,4315,8157,1311,4681,8141,1584,1959,2651,1938,8139,2780,4693,8152,1011,1961,1567,8129,2135,1009,32341], +[1,2349,22213], +[0,22214,22215,22216,2540], +[0,32353,32351], +[0,89,2924,3824,91,4880,4883,32359,32358], +[0,3939,3452,5592,8124,1745,32361,467,32363], +"bump-regex", +"plugin-log", +[1,2349,22221], +"versioning", +[0,0,22224,22225,2531], +"gulp-version", +[3,2476,11], +[0,53,4874,1009,1011,1610,10888,1177,1898,1915,1938,1959,1961,2070,32368,1894,4039,4094,4493,91,1984], +[0,3875,6696,6649,6788,6564,2700,6609,2998,6596,2130,6891], +[1,2349,22227], +[0,22231,22232,22233,34552], +"swap", +"cache-swap", +"object.pick", +[0,32376,32378], +[0,32380,32383,32385,2675,2990,3400,1894,1983,1984,1906], +[0,2130,3875,27106,10820], +[1,2349,22235], +[0,22236,22237,22238,2531], +[0,1209,3847,1860,2731,2752,3744,97,2609], +[0,4449,1192,2675,89,3875,1177,4039,1503,2924,2126,1894,1610,2700,3824,48,1693,4201,53,32392,2990,3876,4677,1178,1195,32394,87,90,1210,1922,1959,10623,3904,1938,32385,32393,1935,1947,1898,4676,1961,5535,31393,83,61,5240], +[0,89,6071,2130,3875,3876,3945,1669,4636], +[1,2349,22240], +[0,22241,22243,22247,34552], +[0,1688], +"file-e", +[0,1175,1203,29775,1267,1429,1503,1177,1879,1938,1947,1959,2665,2675,2899,3421,3875,4039,4042,4045,4055,4067,4077,4193], +"xtension", +[2,22242,22244], +[2,17355,22245], +[0,3875,2942,3946,2663], +[1,2349,22250], +"changed", +[0,22252,22256,22257,2402], +"modified", +[0,32408], +"modification", +"mtime", +"passthrough", +[0,53,83,85,87], +[0,5284,3875,2663,3947,32416,32418], +[1,2349,22259], +[0,0,22260,22261,34552], +[0,1009,1011,1610,1177,1895,1894,3875,4039,4493,91,1984], +[0,3875,3949,2663,32425,2130], +[1,2349,22263], +[0,0,22264,22265,2540], +[0,4856,6503,4874,1429,1700,32431,2323,32433,32435,2463,2494,32436,2524,2899,91], +[0,4636,6774,5284,19080], +[1,2349,22267], +[0,0,22268,22269,4194], +[0,1503,2228,2314,2759,14529,3774,4019], +[0,1108,6961,5284,3656,1179,4990], +[1,2349,22271], +[0,0,0,22272,2540], +[0,5659,7047,1179,1149], +[1,2349,22274], +[0,22275,0,22276,34552], +[0,12396,3971,3978,4549], +[0,32452,6892,1936,1644,3729,3958,4141,1646,5341,1633,4549], +"jshint-", +[1,2349,22281], +"reporter-jscs", +[2,22277,22279], +[0,22282,22283,22284,34552], +[0,12396,23247,9401,12421,4549,4555], +[0,4874,23262,1414,32460,1894,3958,3985,3998,4505,91,1906], +[0,4549,3958,32462,1932,156,163,1936], +[1,2349,22286], +[0,22287,22288,22289,2540], +[0,12396,23247,12421,32467,4233,4555], +[0,4874,23262,1414,1894,3958,3985,3998,4505,91,1906], +[0,4549,3958,32462,1932,2587,1936,1783,11052,163,1002], +[1,2349,22297], +[3,19569,12], +"rework", +"rework-import", +"rework-", +"plugin-url", +[2,22294,22295], +[0,22298,22299,22300,2457], +[0,12396,32481,3137,12127,12133,4549,12447], +[0,9311,4874,4880,1414,1177,27706,1947,1959,23312,1894,3985,27711,32484,91], +[0,2587,1936,1783,9102,3958,32462,4549], +[1,2349,22302], +[0,22305,0,22307,34552], +"slush", +"dest", +[0,12396,23276,4549], +"conflict", +[0,32452,6892,1936,1644,1932,3958,32462,5341,1633,4549], +[1,2349,22309], +[0,22310,22311,22312,4194], +[0,12396,2572,12449], +[0,4874,1414,1894,3978,3985,3992,3998,3999,4505,91,4549,4555,1906], +[0,1936,1932,3972,3958,32462,4549], +"webserver", +[1,2349,22315], +[0,22317,22318,22319,2540], +"hyperlink", +[0,12396,7610,9401,2584,4555], +[0,4874,1414,1894,3958,3985,3998,4505,91,1906], +[0,156,1936,3265,1932,3958,32462,3974,4549], +[1,2349,22321], +[0,22322,0,22323,34552], +[0,12396,2581,4549], +[0,32452,6892,7234,1936,1932,3958,32462,4141,1646,5341,1633,4549], +"csscomb", +[1,2349,22326], +[0,22327,22328,22329,2531], +[0,22353,692,29431,1154,15444,1458,7614,9322,2720,32513,3060,3173,29024,3445,3467,6331,20921,4135,27921,4548,4566,32514,4748], +[0,442,32523,4874,1177,32525,2203,17529,2931,29442,32519,1894,3985,32522,4390,91], +[0,6147,13729,1528,32528,3358,2195,17978,24095,15656,3378,20001,6645,3979,3980,18157,1508,4166,10381,4990,15525,4135,1932], +[1,2349,22332], +"rcloader", +[0,22335,22336,22337,2540], +[2,21861,2838], +[2,15526,2063], +[0,2759,3181,3544,4227,4431], +[0,1177,1881,1938,2228,2323,17121,4039], +[0,18444,21779,4227,2759,4504], +[1,2349,22339], +[0,22340,0,22341,2540], +[0,4549,9363,3992,13124], +[0,32452,6892,7234,1783,26564,1644,3729,3984,4141,1646,5341,1633,4549], +[1,2349,22343], +[0,22344,0,22345,2457], +[0,5210,32544,3984,32545], +[0,20052,200,1783,26564,3984,4549], +[1,2349,22347], +[0,22348,22349,22350,2402], +[0,9363,27008,27010,3992,13124,4549], +[0,4874,1414,32460,1894,3984,3985,3998,4290,18071,4505,91,1906], +[0,26072,26766,3987,2195,1783,26564,1932,3984,32553,12994,176,9000,4549], +[1,2349,22352], +[0,22354,22355,22356,2540], +"@nodeutils/defaults-deep", +[0,9363,2575,3140,2581,4549], +[0,12396,4874,1414,26992,23276,1894,3985,9340,3988,10630,3992,3998,32560,10632,4505,91,12449,1906], +[0,7234,1936,1783,26564,1932,3984,32553,1646,4549], +[1,2349,22358], +[0,22359,22364,22366,2488], +[0,12449,4549,9363,32568,12447,32567], +"from2-string", +"@shi", +"nnn/eslint-config-node", +[2,22361,22362], +[0,1414,1177,3984,1894,3541,3985,91,12396,3999,3978,32484,27706,27711], +"warnings", +[0,1745,25131,3990,1932,3984,32553,4549], +[1,2349,22368], +[0,22369,0,22373,2531], +[0,9363,3137,26987,4549], +"-match", +[2,7534,22370], +"flatnest", +[0,32452,6892,1783,26564,1644,1932,3984,32553,5341,1633,4549], +[1,2349,22376], +"@type-challenges/utils", +[0,22377,22383,22384,2488], +[0,32582,32584,3988,32587,32591,23059,23065,23070,23075,23078,32593,23080,32595,23082,32599,32601,32606,32609,23098,32613,23113,32617,32620,32626,32629,32631,32636,23118,32638,32640,32646,32651,32654,32656,32658,32664,23128,23133,23136,32667,23139,23141,11382,32668,10632,32669,32672,4549], +[2,29833,2658], +[2,3101,7131], +"to-a", +"bsolute-glob", +[2,22380,22381], +[0,192,5467,1177,1909,2114,2675,2990,1894,3985,1906], +[0,2195,16342,3984], +[1,2349,22386], +[0,22387,22388,22389,2540], +[0,32582,3988,10630,23059,23065,23070,23075,29079,23078,29082,32593,23080,32595,23082,32599,32601,32606,23092,32609,32681,32686,32689,29091,29097,29100,29132,29143,29147,29149,32613,32692,23113,32696,32617,32699,32620,32626,32629,32631,32636,23118,32638,32703,29151,32705,32646,32651,32707,32710,32654,32656,32658,32715,32717,32664,23128,23133,23136,32667,23139,23141,11382,32668,13124,10632,23143,32669,32719,4290,4549], +[0,1894,3985,4505,91,1906], +[0,16342,3984,3997], +"divide", +[1,2349,22393], +"separate", +[0,22394,22395,22396,4194], +[0,12396,9363,3140,4549,12449], +[0,4874,1414,1894,3975,3978,3985,3992,3998,13124,4505,91,1906], +[0,2587,1936,1783,26564,1932,32462,3958,32553,3984,4549], +[1,2349,22398], +[0,22399,22400,22401,34552], +[0,1139,32732], +[0,1111,1317,20627,1177,1926,1999,2398,2600,3127,2899,3421,4042,4058,4067,4073,4146], +[0,20627,1783,5980,1644,57,3729,4001,8924,3902,2585], +[2,3715,4001], +[1,2349,22404], +[0,0,14074,22406,34552], +"prettify", +[0,2323,19101,17996,8297], +[1,2349,22408], +[0,22409,22411,22413,2540], +[0,1437,2070,4747], +"jsftp", +[0,442,1414,1429,1431,1177,2899], +"jsftp-mkdirp", +[0,4068,2585,16504,2090], +"ftp-test-server", +[1,2349,22416], +[0,22417,22418,22419,2402], +[0,3763,29749,3348,2051,32749,15057,32751,2139,3173,32753,4100,4454,32754,32756,32757,32758,32759,21144,3518,2854], +[0,3421,4389,2297,32761,4039,1503,1362,4255,1596,32762,19946,1389,1400,14038,2886,4153,2871,3524,21146,2906], +[0,27,2869,614,6435], +"gift", +[1,2349,22423], +"wrap-promise", +[0,22424,22429,22431,2540], +[0,1362,4454,32768,32770], +"octonode", +[3,8304,11], +[2,15034,22426], +[2,22363,1231], +[0,1429,2323,1437,1209,4039,705,2463,1364,2384,4089,2436,27608,3753], +"branch", +[0,4731,27,2671,1862,705,21244,32773,1362], +[1,2349,22433], +[0,22434,22441,22442,2488], +[0,32770,32768,4454], +"any-", +[2,5124,1867], +[2,22435,22436], +[3,21732,13], +"eam", +[2,22438,22439], +[0,1364,1429,1437,2323,27608,2384,2436,2463,1209,3753,705,4039,4089], +[0,4731,27,2671,1862,705,21244,32773,970], +"gulpgit", +[1,2349,22445], +[0,0,22446,2523,2402], +[0,4474,91,1506], +[1,2349,22450], +[3,6530,10], +[2,22448,4552], +[0,0,22452,22453,2540], +"nid", +[0,6637], +[0,3209,4017,32792], +[1,2349,22455], +[0,0,22456,22457,34552], +[0,810,972,4870,4880,4883,7749,1009,32801,1011,32804,1177,1959,32805,2832,1209,3057,3145,32807,32368,1894,89,3824,3876,4039,4167,4493,91,1984], +[0,89,3875], +"gulp-de", +[1,2349,22461], +"gulp-declare", +[0,0,22464,22467,2540], +"fine-module", +[2,22458,22462], +[0,1178,1597,1177,2765,2766,2297,2881,2895,2898,6387,2910,2915,2921,2923,3734,4042,4075,91], +"gulp-wrap", +"nsdeclare", +[0,32814,24800,31767,614,5576,1388,6422,6805], +[1,2349,22469], +[0,22470,22471,22472,2402], +[0,32820,17501,32824], +[0,15221,4384,4449,4389,1796,1177,3188,4039,4135,32826,3410,2708,3433,20492,4103,13614], +[0,814,3209,202,1237], +[1,2349,22474], +[0,0,8176,22476,34552], +"eventstream", +[0,3209,814,3403,1237,7115,15403,1204], +[1,2349,22478], +[0,22479,0,22480,2402], +[0,32836,1573,3008,3561,4227], +[0,2924,1194,1623,3374,9345,814,1002,2278,10903,2090], +[2,11941,1596], +[1,2349,22483], +[0,22484,22485,22486,34552], +[0,32842,8098,2151,2036,2822,32843,3348], +[0,48,53,13693,61,71,78,13051,85,87,97,192,6298,6061,6063,1166,1170,1178,1208,1212,1364,1429,16311,1596,31058,20911,1687,8942,1177,32848,32850,1938,1948,1951,32852,1954,1958,1964,32855,1966,1969,1982,2026,32856,2675,2824,2848,3019,2899,3200,32858,3421,4131,32860,4342,32861], +[0,8623,1118,1179,1745,32864,6533,32867,4030,5592,27], +[1,2349,22488], +[0,22490,22491,22492,2540], +"htm", +[0,3763,1641,32874,3171,3441,3533,710,32876,3348,1209,4135,4591,30107,3084,2141,12627,1147,20412,32759,32875,15220,32873], +[0,3421,3467,1429,2070,2899,4193,1177,3188,4039,2720,2276,1894,1596,1155,32883,20441,3697,3752,1745,32881,32878,1942,1895,1955], +[0,8173,5130,2026,32885], +[1,2349,22494], +[0,22503,9896,2523,2540], +"gulp-spawn", +[2,22501,33473], +"gulp-svg2ttf", +"2svgfont", +[2,45,22498], +[2,2518,22499], +[3,29059,12], +"gulp-ttf2eot", +[0,3763,4734,4745,2685], +"gulp-ttf2woff", +[2,22504,1276], +[1,2349,22508], +"@types/gulp", +[0,22513,22514,22515,4194], +"metapak", +"-nfroidure", +[2,22509,22510], +"streamtest", +[0,21420,4174], +[0,4481,1906], +[0,2021,32896,3729,30135,32897,7226,6689,32899,32900,24601,200,13006,1111,15814,6048,7009,7201,6621,4166,6876], +[1,2349,22517], +[0,22520,0,22523,4194], +"gulp-match", +"ternary-stream", +[0,1362], +"exhaust", +[2,4279,22521], +[0,18035,32906,32907,32909], +"if", +"ternary", +[1,2349,22527], +[0,0,22528,2523,2531], +[0,21147,2759,4389], +[1,2349,22530], +[0,22531,22532,22533,2531], +[0,1177,5896], +[0,4874,2025,2899,3421,4474,91], +[0,7190,14419,3212,1858,1237,2275,1973,27916,3430,21147,3209], +[1,2349,22535], +[0,0,22537,22538,2540], +"gulp-gm", +[0,5898,1503,6618,6786,30025,32925,3028,32927,32930,3776,4255,4384,4481], +[0,3048,7002,3583,1496,1585,1697,6899,6803,3432,6693,3743,7098,6638,6618,7167,2062,6681,6856,6986,7035,6648,7284,6786,6670], +[1,2349,22540], +[0,22541,22542,22543,2540], +[0,2070,21510], +[0,4874,3188,1894,4384,4483,4508], +[0,6790,7218,6610,7293,7204,200,7074,6899], +[1,2349,22545], +[0,22546,22547,22548,2540], +[0,3263,8248,32944], +[0,2765,32942,32947,32949], +[0,32951,27747,29002,8652,12197,158,32952,28125,4041,13008,32954,32956,32959,32961,1473], +[1,2349,22550], +[0,12892,22551,22552,2540], +[0,16003,32967,16005,16002,16000,15999,442,8998,5012,25130,11536,8862,15134,811,8850,816,6373,10615,10817,10895,32970,6503,4874,20374,5254,21626,21830,1082,32971,15128,1397,1405,1457,1540,1593,1610,32972,1859,1866,1177,1895,1955,1982,1988,2116,32973,2151,10754,2203,2675,10898,2990,10902,3090,3144,2899,3363,22496,3421,5561,3527,3530,32977,1894,3706,3714,3718,4019,4042,4060,4135,4172,4174,4227,4232,4376,4072,4484,91,4523,1983,4614,188,4630,13151,32979,4748], +[0,5260,6996,6903,5194,6708], +[1,2349,22554], +[0,22556,22560,22563,2540], +"group-array", +[0,5652,4081], +"strip-color", +[3,5467,19], +[2,22558,1098], +[0,53,8229,71,83,87,1397,1177,1895,1955,2675,2990,2899,1894,4042,4048,4058,4227,4232], +[2,5376,591], +[3,10705,13], +[0,4080,1172,6778,5194], +[1,2349,22565], +[0,22566,22567,2523,2457], +[0,1397,4081], +[0,1177,2899,4042], +"inline-css", +[1,2349,22570], +[0,22571,22572,22573,2531], +[0,32998,4081], +[0,15134,1177,2022,2899,3421,4039,4042,33001,33002], +[0,4042,4080,5284,5194,5260,4298,33005,4051], +[1,2349,22577], +"lodash.g", +[2,22575,19530], +[0,22578,22579,2523,2540], +[0,2007,10898,3090,814,4081], +[0,53,87,94,1082,1177,1938,2675,2990,10902,2899,1894,10904,4042,4045,4058,4067,4172,4227,4232,91], +[1,2349,22581], +[0,22582,22585,22586,2540], +[0,3090], +[2,17487,8162], +[2,11941,22583], +[0,51,19861,33017,1006,4874,4880,1414,4042,91], +[0,4080,91,4056,1007], +[1,2349,22589], +"isparta", +[0,22591,22592,2523,2457], +"unit test", +[0,4081], +[0,1177,1938,2675,2990,2899,1894,4042,4048,4067,4232], +[1,2349,22594], +[0,22597,22598,22599,2531], +[2,34675,22596], +"-links-validator", +[0,33028,20378,1209,3090,3220,33029,33031,33036], +[0,53,87,94,5583,811,816,8661,1009,1011,1104,1198,1177,1881,1938,2061,2151,29406,2323,33038,2441,2765,2766,1894,4039,4042,27720,33042,4449,91], +[0,4042,4080], +[1,2349,22603], +[2,4402,16237], +[2,2767,22601], +[0,22604,22605,22606,34552], +[0,33048,33051,1618,33052], +[0,24235,1676,2899,4042,4045,4066,4146], +[0,4080], +[1,2349,22608], +[0,22609,22610,22606,34552], +[0,1082,33051,2007,3090,33052,4081], +[0,1175,1264,1389,1192,3188,2899,4039,4042,4045,4067], +[1,2349,22612], +[0,22613,22614,22615,2531], +[0,5251,1405,10912,814,4081], +[0,53,87,94,1856,1177,2899,4042,4045,4055,4058,10916,91], +[0,4042,4080,6778,3378,5260], +[1,2349,22617], +[0,22618,22619,22615,2488], +[0,3090,4081], +[0,1177,1938,2675,2990,10902,2899,1894,4042,4048,4172,4227,91], +[1,2349,22621], +[0,22622,22623,22624,2402], +[0,10895,16799], +[0,10817,4874,1009,1011,1177,1895,1955,1192,1894,4039,4042,4468,91], +[0,4042,4080,12938,4227,33078], +[1,2349,22626], +[0,22627,22628,22629,34552], +[0,51,2805,4143,4072], +[0,53,1192,1894,4042], +[0,4042,4080,4072,3178], +[1,2349,22631], +[0,22632,22633,22634,2531], +[0,814,4081], +[0,1397,1177,2899,4039,4042,4048,4055,4484,91], +[0,4080,91,6778], +[1,2349,22636], +[0,22637,22641,22644,2540], +[0,10895,2102,2151,4135,4484], +"array-unique", +"gulplog", +"has-gulplog", +[0,11893,811,816,33097,4864,33099,5087,4870,4874,8860,5254,1009,1011,1512,1177,33100,1192,1209,3429,4039,4042,33101,4076,4468,91], +"capture-", +[2,22642,3101], +[0,4076,4075,4080,91,6778,4042,3378], +[1,2349,22646], +[0,22647,22648,22650,34552], +[0,51,2805,4143,4535], +[0,53,87,1193,1192,1894,4042], +[2,4599,3101], +[0,4042,4080,2280,3178], +[2,19984,1276], +[1,2349,22653], +[0,22654,22655,22656,2540], +[0,3445,3530,4227,4747], +[0,811,816,10615,10817,5364,33115,33116,33118,33120,33121,33123,4874,20374,4892,1413,1654,14674,17086,17091,1655,1660,1701,3400,30889,3561,16578,3698,1894,28865,4042,10854,2278,4484,91,1983,1984], +[0,4080,4078,11996,33126,33127,33129], +[1,2349,22658], +[0,22659,22660,22661,2531], +[0,2007], +[0,1006,5087,8778,4874,2675,1192,2990,3170,1894,4042,4055,4067,4075,4172,4468,4487,91,19545], +[0,4042,594], +[1,2349,22663], +[0,0,22664,2523,2531], +[0,1389], +[1,2349,22666], +[0,22668,22669,22670,2402], +"kew", +[0,33145,8712,1410,1423,2215,3561,4232,4317,33146,1835,4164], +[0,33152,51,53,68,5216,61,76,14160,78,33153,81,5715,4851,5241,83,87,90,92,97,101,104,33156,33158,33159,33162,8317,8755,554,617,33165,33167,33170,33172,33173,13471,8648,842,11534,33174,33176,33178,19861,10879,33179,24807,31666,5364,33181,7806,33183,11796,11477,21122,5245,33189,33191,4865,8780,8264,4870,33193,13057,33195,20374,33197,4880,4883,15606,5254,33198,16149,13214,23452,11800,9241,20463,13753,1082,33199,31705,1138,1145,1154,33200,20476,1251,15009,1393,1398,1413,33202,33204,1525,33206,1536,12084,15015,1560,1562,977,1615,1618,11890,16912,16566,1676,11478,15018,33208,2018,2105,2145,2070,2553,2659,2661,15022,2674,16837,33209,2689,26453,2755,2805,2856,2863,20465,33210,3084,3177,3244,3266,33211,23175,3322,3467,15031,6042,3479,3502,3509,3530,12344,3605,16840,3638,16841,16842,3672,3676,3678,3688,3729,3757,15033,3784,3878,3957,4111,4135,710,27062,20508,4165,4227,4230,28512,15039,15040,9221,33212,15042,4294,7080,4390,33213,4072,4409,4425,15046,15047,11804,33214,614,15048,33215,24739,2924,4729,4763], +[0,89,5130,3287,5122,36,202,6400,5995,200,4592], +[1,2349,22672], +[0,0,22673,22677,2488], +[0,14192,1235,14196,14198,19130,14199,14214,14215,14217,1244,1264,19127,18801,18693,1378,1381,19119,18686,19123,19122,1825,18825,18829,33223,19121,2899,3736], +"treams", +[2,6825,22674], +"ng-annotate", +[0,19132,6567], +[1,2349,22679], +[0,22680,22681,22682,2531], +[0,25623,3527,3561,4300], +[0,1414,2899,4255], +[0,33231,1623,33232,4086,5130,590,1504,26535,6270,353], +[1,2349,22685], +"develop", +[0,22686,22688,22689,4194], +[0,1437,2061,3544], +"restart", +[0,2323,2899,4170], +[0,17461,7170,6769,2323,3468], +[1,2349,22691], +[0,0,22692,22693,2531], +[0,1090,4389], +[0,22114,1149,3046,7241,14629,18462,4552,33244], +[3,13337,13], +[2,6574,22694], +"mac notification", +[1,2349,22698], +[0,0,0,22700,2540], +"notify-osd", +[0,33249,33250,7109,20018,7099,7022], +[1,2349,22702], +[0,2514,22703,22707,2488], +[0,33256,7,842,8712,4856,4870,6503,4874,7749,6513,6512,28198,1009,1011,1257,1429,33258,1473,1512,1610,1652,33261,1874,1177,24287,2139,2151,2070,16015,2675,13305,2990,1209,3183,2899,3363,3400,8967,12344,1894,1862,4042,32414,33263,4067,4167,4172,4193,4196,4232,4376,4474,4487,4490,33265,33267,33273,91,4585,5573,2924], +[3,13107,12], +[2,22704,2187], +[2,14983,22705], +[0,7099,7022,6568,7111,7199,7040,7027,6858,6789,6746], +[1,2349,22709], +[0,0,9270,22710,2488], +[0,1398,33283,33284,6953,4100,1965,33287], +[1,2349,22712], +[0,22713,22714,22717,2540], +[0,2708,4135,4747], +[0,13614,1158,1159,1796,1177,33293,3421,4389], +"acorn-typescript", +"esrap", +[0,20001,25816,3378,33295,10381,6953,33297], +[1,2349,22719], +[0,22721,22722,22723,2540], +"zimmerframe", +[0,33304,21995,1149,33307,1437,1525,33312,1536,1544,977,1575,1581,29500,1797,2026,2040,33313,2070,33315,33316,32959,33319,33322,33324,33325,33327,3183,33328,3494,3509,3547,3741,33329,33332,33335,4135,4148,4151,33336,33339,4538,4590,33340], +[0,1317,1553,1177,2025,2151,33342,2899,3416,3560,33344,33346,33349,33352,33354,33357,4170,4220,4342,4449], +[0,33359,33362,2026,33363,33365,8173,8172,3469,4218], +[1,2349,22725], +[0,22730,22731,22732,2531], +"ENV", +"ifdef", +"ifndef", +"echo", +[0,33379], +[0,4389,1090,33381,1389,1537], +[0,2090,1213,33383,2574,2649,1867], +[1,2349,22734], +[0,22736,22737,22738,4194], +[2,1876,2282], +[0,1699,1874,2654,2747,33390,3561], +[0,1177,2899,4193,33395], +[0,1936,57,18113,2574], +[1,2349,22740], +[0,22741,0,22742,2531], +[0,1457,2700,4228], +[0,590,4329,2278,7121,1623], +"views", +[1,2349,22745], +[0,22747,22748,22749,34552], +"precompile", +[0,23175], +[0,48,53,87,192,5467,442,27928,19344,1369,1610,1622,1628,1700,1701,1835,1177,1895,20281,1938,1939,1942,1953,1955,1982,2092,33408,2203,2675,1192,2990,33415,3144,3342,33420,3400,1894,2278,21688,4135,4257,4307,91,4523,2924,4677,4681], +[0,2278,22022,2924,1194], +[1,2349,22751], +[0,7949,7950,7951,2488], +[1,2349,22754], +"src", +[0,0,22755,2523,4194], +[0,1894,4384], +[1,2349,22757], +[0,22758,22759,22760,2488], +[0,33435], +[0,33437,1414,33438,1177,1776], +[0,2844,1745], +[1,2349,22763], +[2,4068,3101], +[0,22764,22765,13543,2540], +[0,1091,1092,12384,8818], +[0,1700,1192,2675,1177,1701,2203,2924,1894,48,442,1193,91,53,4874,2990,3400,192,1953,27928,4257,87,1939,1942,1938,20281,1982,1895,1955,19344,5467], +[1,2349,22767], +[0,22768,22773,22777,2531], +[0,89,3824,3286], +"modif", +"y-filename", +[2,22769,22770], +"rev-hash", +[0,91,4874,4880,4883,1165,3561,4383,1177,4828], +"rev-path", +"sort-", +"sort-keys", +[0,33454,33455,2145,12589,1616,33456,12589,5472,20500,33459,1237,33462,33464,12590,33465,27666,11996], +"vinyl-file", +[1,2349,22780], +[0,22786,0,22787,2531], +"rev", +"revving", +"revision", +"expire", +"assets", +[0,1821,3299,15160], +[0,29395,33471,33472,4126], +[1,2349,22790], +"deserialization", +[0,0,0,22792,2540], +"deserialize", +[0,33477,3778,1616], +[1,2349,22794], +[0,22796,22797,22799,4194], +"each-async", +[0,33482,2866,4449,4729], +[0,442,13838,1177,1895,1951,1953,17303,1955,2026,2203,2564,1776,2899,3200,3246,1894,4150,4193,4351], +"md5-hex", +[0,13428,28522,5472,11132,13841], +[1,2349,22802], +"ruby", +[0,22803,22805,22806,34552], +[0,16607,33490,6065,16608,16612,33491,1595,1676,33493,2020,2089,33494,2188,33497,22845,2613,33499,3021,3127,14774,3170,33500,25873,27168,4025,4135,6554,4747], +"@img/colour", +[0,4874,6547,1166,1414,1470,1652,1736,33503,2151,2212,2822,3019,19736,33505,3297,3401,33507,1894,23535,4193,23730,4400,4421], +[0,18526,13428,13729,1237,3383,20001,3979,4135,15525], +[1,2349,22808], +[0,22809,22810,2523,2540], +[0,97,33513,33515,6372,33519,1497,33520,1209,3021,3744,3847,32225,4163], +[0,33522,48,53,61,73,76,81,83,87,90,94,33525,9310,33528,33530,10875,4880,1009,1011,8158,33532,1178,1195,33537,1208,1210,33541,1251,31600,33543,1429,33545,1582,1610,1651,1676,1719,1742,19526,1843,1177,1879,1895,4916,1938,1947,1951,1959,1961,2060,2193,2323,2455,2541,2675,14708,2297,2881,32762,2886,2900,2904,2925,2975,2990,2899,1894,3725,3758,3786,89,33546,33550,3822,3824,3836,3843,3884,3885,33552,33553,33556,3904,33558,4039,33560,33562,33564,4193,4196,4201,4261,33565,4409,33566,4431,91,4597,2924,4676,4677,4679], +[1,2349,22812], +[0,22814,22815,22816,2540], +"sftp", +[0,1177,1900,1903,33572,1938,1953,1958,1959,33573], +[0,17529,1698,3188,4039,4092,4389], +[0,19309,33576,4354,16790,1501,19310,19311,19314,19271,18443,1177,2446,2292,2272,671,19315,19269,33578,2869,4255,19317,590,19318,19320,19273], +[1,2349,22818], +[0,0,22824,2523,2531], +"@types/fa", +"ncy-log", +[2,22819,22820], +[3,12459,15], +[2,22822,5229], +[0,9516,9515,1317,4384], +[1,2349,22826], +[0,22827,10387,22828,2540], +[0,1676,1833,1869,984,2145,2657,3173,3242,3440,3781,4266], +[0,2947,2090,36], +"brotli-size", +[1,2349,22831], +[0,22833,22834,22835,34552], +"measure", +[0,22966,8364,33593,33596,33598,33599,22967,19593,3034,3072,3183,22451,22968,33602,33603,3763,33605,28440,33606], +[0,8357,8359,33608,4874,1149,4440,1596,17402,2036,33612,21082,1894,33615,33618,28664,33620,25649,91], +[0,3166,11100,27662,33624,14584,33625,14586,14587,33626,5130,33627,33628,17757,6081,33629], +[1,2349,22846], +"@gulp-sourcemaps/identity-map", +[3,22837,17], +[2,22844,36113], +"map-sources", +[2,22838,22840], +"-fabulous", +[2,1676,22842], +"@vitest/e", +"hook-std", +[0,0,22849,22851,2457], +"@codspeed/vitest-plugin", +"mississippi", +[0,33634,1149,1317,1177,3210,4384], +"source maps", +[0,4137,19748,33636,28277], +[1,2349,22853], +[0,22854,22855,22858,34552], +[0,5245,14334,1676,33641,2712,1209,3220,3222,25624,33642,4135,33643,33645,3348,1155,33646], +[0,192,22559,692,33649,4856,4870,6503,4874,6513,1009,1011,1082,1429,1431,33652,1448,32842,1587,1610,1702,668,33653,33655,33660,33662,1177,1942,1951,2024,2071,2152,2675,33663,33668,17370,2990,33669,3125,2899,29283,3260,33672,3421,25633,3478,33673,33674,3480,3519,33675,4039,4131,33681,4193,4196,33682,4232,4246,25635,91], +"device", +"strip-debug", +[0,3259,33669,7827,14873,25638,3519,3243,33684,33663,14872,25633,26472,33685,3469,6710,33690,18035,1747], +[1,2349,22861], +"client-hints", +[0,0,22862,22864,2540], +[0,1317], +"accord", +[0,4141,7050,5284,676,1781], +[1,2349,22866], +[0,22867,2684,22868,34552], +[0,1676,33735,33702,33705,33725,33727,33713,33723,33714,33710,33734,33729,33722,33718], +[0,33737,33738,33739,33740,33741,28794,2811,33742,33744,33745,25003,33746,33748,4144,4145,33749,33750,3101,6621,33751], +[1,2349,22870], +[0,22876,22877,22878,2540], +"looks-same", +"svg2png", +"@cpplint/cli", +"rwd", +"retina", +[0,1091,1138,1371,1437,1494,1536,33757,33758,13834,16064,33761], +[0,2212,4494,4493,2675,1177,1984,1894,91,2990,107,7806,33765,7677,33768], +[0,4592,4146,3166,2665], +[1,2349,22880], +[0,22881,22882,22884,2776], +[0,984,2145,3242,3494,4100], +[0,1177,1903,1938,1948,1954,1958,1970,2899,3421,4342,33775], +[2,33888,22889], +[0,2026,33777,2663], +[1,2349,22886], +[0,22887,22888,2523,2457], +[0,1080,6870,1676,1869,2657,3173,3494], +[0,1087,1177,1948,2899,3421,4342], +"arm64", +[1,2349,22891], +[0,22892,9030,2523,34552], +[0,1833,1869,3494,710], +[1,2349,22895], +"rendering", +[0,22896,22897,22898,2540], +[0,33798,3171,3181], +[0,192,5467,33801,33803,1168,1429,1431,1527,1177,1895,2151,2675,2990,3073,13824,2899,3310,3421,1894,3752,33804,4193,4196,4390], +[0,33804,33807,13573,7200,33808,6997,33811,6949,5351,4967,33813], +[1,2349,22901], +[3,18435,14], +[0,22903,22904,22905,2531], +"incremental", +[0,33819,33821,33823,33824,7709,33826,33827,33828,27792,33831,13559,33836,33838,33840,29749,1367,10785,33841,13566,33843,3445,17009,4729], +[0,33846,9167,33848,5087,4874,7819,9241,1009,1011,33838,13566,668,33850,1177,1895,19527,1915,1938,1955,2675,1192,33851,33852,33854,33857,2845,3381,1894,13569,4257,4468,4474,1531,91,3348], +[0,12,7200,5472,1192,33804,4158,1984,13573,6930,6808,7308,33822], +[1,2349,22907], +[0,22910,0,2523,2540], +[3,15893,12], +[2,22908,1512], +[0,26956,6641], +[1,2349,22912], +[0,0,22913,22914,2457], +[0,1178,1264,1280,1429,1177,2126,33869,2675,2990,2899,1894], +[0,4163,4161,4162,26287,3797,33871], +[1,2349,22917], +"@types/plu", +[0,22921,22922,22925,2540], +"gin-error", +[2,22916,22918], +"gulp-diff", +[0,4135,22804,20584], +[0,20762,4481,33891,4391,640,33894,2057,22873,11976,3299,33877,2829,33882,33890,33884,33887,22883], +" compilation", +[2,22902,22923], +[0,21881,18048,12349,12350,23995,20639,8221,20701,33896,158,24800,33897,12712,26490,33898,33899], +[1,2349,22927], +[0,0,22928,22929,34552], +[0,13614,1159,9254,1177,2011,2708,2762,3410,3421,4103,4389], +[0,1523,1644,7336,4166], +"array-each", +[1,2349,22934], +"error-cause", +[2,3094,22932], +[0,22940,22942,22943,2540], +[3,16647,18], +"se-extend-native", +[2,22935,22936], +"list-map", +[2,4601,22938], +[0,2020,2071], +"tape-catch", +[0,1166,1437,1506,1177,1881,1938,2822,3421,33910,33912,4172,33916], +[0,4167,16159,28984,4166,33918,7048,2763,31360], +[1,2349,22945], +[0,22947,22948,22949,4194], +"uncss", +[0,3266], +[0,1429,2228,2899,1839,2240,26399,4436,2305,34238,22000,2236,2300,3006,2253,2273,2281,5535], +[0,5843,4439,3265,3348,33927,33928,33929,4169,33930], +[1,2349,22951], +[0,22952,22953,22954,2540], +[0,33936,33937,33938,33941,33942], +[0,1362,1177,33945,2899,1894,4042,4067,4487,91], +[0,1973,5982,1145,4170], +[1,2349,22956], +[0,5623,22957,22958,2540], +[0,2228,2247,2253,2273,2281,2285,2290,33953,2291,2316,2832,3006,3518,33954,4135,33955,4232], +[0,1783,15253], +"useref", +[1,2349,22964], +"async-once", +"gulp-dest", +[2,3204,22962], +[0,22965,22969,22976,4194], +[0,3183,4167], +"@hapi/joi", +"jsonic", +"optioner", +[0,1173,1264,1280,1177,1881,19527,1938,2822,2899,3421,4039,33910,33963,33912,4170], +"array-differ", +"array-uniq", +"beeper", +"_reescape", +[2,3024,22973], +[3,22974,11], +[0,4167,4166,28984,16159,16160,2978,200,8636], +[1,2349,22981], +"valuate", +[2,22975,22978], +"lodash._re", +[0,0,22984,22986,2488], +"interpolate", +[2,22980,22982], +[0,21122,4874,24162,13680,1414,1894,4384,4474,4508,91], +[2,3067,6937], +[0,6553,2021], +[1,2349,22988], +[0,22994,22995,22998,34552], +"@test-runner/core", +"yazl", +[2,22996,32078,6624], +"qpass", +"yazul", +[0,1097], +[0,2553,3714,4042,4048,4535], +[3,22989,13], +[2,22996,23000], +[0,7521,5224,26514,1424], +[1,2349,23002], +"live-view", +[2,22996,23003], +[0,23005,23006,23007,4194], +"oneline-view", +[2,22996,16316], +[0,33986,33989,1676], +[0,33992,33997,5245,5087,4874,668,29154,1192,4474,91], +[0,3358,34000,30983], +[1,2349,23010], +[2,13857,2663], +[0,0,23011,23012,2531], +[0,4481,1192,2675,3534,1177,4039,4042,1894,1610,1193,53,5087,1540,34009,3720,97,107,87,1926,34015,68,5583,4073,6373,34019,811,816,5522,34013,1201,81], +[0,11615,16114,27968,13527,5130,89,1098,188,38,14584,4967], +[1,2349,23014], +[0,23015,23016,23018,2540], +[0,11124,826,34034,1687,4351], +[0,53,11126,11130,11133,11134,34040,28537,34041,1208,1676,1705,668,27502,26739,2185,2990,2899,3421,1894,3758,4039,4135,4167], +[2,4598,3426], +[0,4193,1973,5472,2275,13106,4158,21147,6901,34044,3212,4731,1145], +[1,2349,23020], +[0,0,23021,23022,2488], +[0,442,1414,1429,1177,2899,1894,4193], +[0,1429,15385,1388,34050,34053,4193,5472,17051,17052,17050], +[1,2349,23027], +"smith", +[2,3521,23024], +"pngparse", +[0,23028,23029,23030,34552], +[0,9153,6327,1149,1409,34066,34065,3188,4135,16358,2026,2822,705,1866,1525,3181,2861,2036,1364,1536,2657,2600,34060,34062,3923,34064], +[0,2899,1362,1389,34068], +[0,7223,3383,18157,29179,5260,2658,36], +[1,2349,23032], +[0,23033,0,2523,34552], +[0,34076,11480,34078], +"compressed", +[1,2349,23036], +[0,23037,0,23038,2457], +[0,34085,2984,34086,3527,27921], +[0,4201,200,1999,6681,34088,34090], +[1,2349,23042], +"catering", +"deglob", +[0,16613,11587,23044,2531], +"find-file-up", +[0,34096,34098,34099,5995,4967,17758], +"find-githost", +"link-re", +[1,2349,23067], +"ferences", +[2,23046,23048], +[2,1163,23049], +[2,3986,23050], +"remark-c", +[2,15,14994], +[2,23052,23053], +[3,13240,12], +"quote-", +[2,23056,17537], +[2,1359,23057], +[2,23055,23058], +"box-", +"-style", +[2,6843,23061], +[2,23060,23062], +[2,4354,23063], +[2,23055,23064], +[3,23065,22], +[0,23068,23072,23087,2402], +[0,22992,34105], +"ontent-indent", +[2,23066,23069], +[3,23065,13], +[0,2924,4469,91,4677,23319,4676], +"block-style", +[2,16080,23073], +[2,23071,23074], +[3,7900,10], +[2,23076,15319], +[2,23055,23077], +"emphasis-marker", +[2,23055,23079], +"fenced-code-marker", +[2,23055,23081], +[3,23082,13], +"inal-newline", +[2,23083,23084], +"hard-", +[0,5995,34107,5592,33804,18035], +[1,2349,23089], +[0,0,8176,23106,34552], +"break-spaces", +[2,23086,23090], +[2,23055,23091], +"-bullet-indent", +[2,5401,23093], +[2,15794,23094], +[2,23055,23095], +[3,23096,22], +[2,23097,8958], +[3,13240,15], +[2,17793,17825], +[2,9344,23100], +[2,1160,23101], +[2,23099,23102], +[3,23058,11], +"without-", +[0,3403,34116,4207,28978,6574,6270], +"marker", +[2,23105,23107], +[2,23104,23108], +[2,23099,23109], +"duplicate-", +[2,23111,7900], +[2,23099,23112], +"-cont", +"ent-indent", +[2,23114,23115], +[2,156,23116], +[2,23099,23117], +"padding", +[2,16569,23119], +[2,23099,23120], +"literal-urls", +[2,23099,23122], +[3,13240,17], +"used-definitions", +[2,23124,23125], +"rule-style", +[2,23055,23127], +[1,2349,23130], +[0,23131,23146,23147,2540], +[0,1110,34121], +"strong-marker", +[2,23055,23132], +"cell-padding", +[2,16065,23134], +[2,23055,23135], +[3,23136,18], +"pipes", +[2,23137,23138], +"unordered-list-marker-style", +[2,23055,23140], +[2,4586,3966], +[2,3986,23142], +"unified-", +[2,23144,16284], +[0,1166,1437,34125,4294,1906], +[0,6913,1871,1111,592,1473,7208,1512,7009,7201,200,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +"-shiny", +[2,18004,23148], +[1,2349,23152], +"pull-", +[0,23153,13647,23156,2540], +[0,22437,1455,12918,34132,34134,25377,34136,3275,3518,34137,3718,3730,34139,1241,4747], +"pull-or-clone", +[2,10617,23154], +[0,34141,4796,22832,3378,1161], +[1,2349,23159], +"fixer", +[0,0,23160,23161,2531], +[0,12310,6061,6063,5476,1414,2899,4131,4255], +[0,4213,3974,1871,4577,22188,3656,1002], +[1,2349,23170], +[2,13729,18200], +"git-tags", +[2,2264,2907], +[2,8961,2499], +[2,2312,23166], +"jquery-", +[2,23168,2555], +[0,0,23171,23172,2540], +[0,1596,34154,2899,3421], +[0,4213,3974,1002,34156], +[1,2349,23174], +[0,7949,7950,7951,2457], +"neo-async", +[1,2349,23179], +"chai-diff", +[2,2264,4019], +[0,23180,0,23181,2540], +[0,1437,2713,3183,3923,34167,4294,4425], +[0,3721,34170,34172,4255,34174,25264,34177,34179,34181,34182], +[1,2349,23183], +[0,23186,23191,23194,2531], +"ammo", +"heavy", +[0,1170,34189,1676,2131,2141,2188,1209,4113,4296,15502,34190], +"bounce", +"catbox", +"somever", +"subtext", +[0,442,5245,7810,4870,4874,34194,15507,1364,1512,1687,1742,1792,1177,2026,2099,2070,2899,3421,1894,3923,4135,4151,4170,4193,4232,25609,4508,91,4523], +"statehood", +[2,23188,8329], +[0,4217], +[1,2349,23197], +"vision", +[0,23198,0,23199,2540], +[0,1080,34200,1594,1676,12777,34201,9247], +[0,20863,5130,4699,21405,2018,21302,11444], +[1,2349,23202], +"webidl-conversions", +[0,23204,0,23206,2540], +"@vitest/ui", +[0,34208,1676,12779,9247], +"@webref/css", +[0,20863,5130,4699,21405,2018,5576], +[1,2349,23208], +[0,23209,23210,23211,2540], +[0,1676,34226,26137,2713,4567], +[0,1389,1839,1177,2025,2323,2409,2494,2496,2510,2530,2297,2871,2876,2881,2900,2899,3752,3756,4151,34228,4599,4603], +[0,14609,4699], +[1,2349,23213], +[0,0,23214,2523,4194], +[0,1414,1742,1177,1894,1895], +[1,2349,23216], +[0,0,23217,2523,34552], +[0,34238,1742,2924], +[1,2349,23219], +[0,23220,23221,13543,34552], +[0,2685,4228], +[0,48,53,87,192,5467,16405,1193,1610,1622,1700,1701,1177,1895,1938,2675,1192,2990,3144,3400,1894,4257,2924], +[1,2349,23223], +[0,23226,23227,2523,2540], +"own-property-symbols", +[2,2183,23224], +[0,16136,4227], +[0,1389,1509,2665,2899,2924], +[1,2349,23229], +[0,0,23230,23231,34552], +[0,4874,1414,1894,3985,3998,4505,91,1906], +[0,965,1936,17540,34254,11590,1644,1646], +[1,2349,23233], +[0,23234,23235,23242,4194], +[0,34270,34266,5526,5528,5529,1448,1509,1525,2071,2215,2220,34264,2228,2247,2253,2256,2258,2263,2281,2283,2308,2036,2600,2654,2820,2822,34269,2856,1209,3127,34261,3561,2278,4373,4449], +[0,48,53,87,94,10737,34272,1429,1431,6522,1177,1951,1954,1970,2899,3363,1894,4037,4039,4193,4196], +"@ljharb/", +[2,23236,2190], +[3,19784,15], +[2,23238,14037], +[3,6541,12], +[2,23240,3205], +[0,2220,1739,1745,34276,34279,5592,9381,1179], +[1,2349,23244], +[0,23259,23263,2523,4194], +[2,8727,591], +[2,10306,5472], +"@ungap/structured-clone", +"from-parse5", +[2,2573,23248], +[2,2580,3493], +"html-v", +"oid-elements", +[2,23251,23252], +[2,9406,8193], +[3,75,9], +"namespaces", +[2,5925,23256], +"zwitch", +[0,4430], +[3,9315,9], +"gap__structured-clone", +[2,23260,23261], +[0,2012,19987,19988,19989,34294], +"remark-api", +[1,2349,23268], +"unist", +[3,2572,9], +[0,0,23269,2523,34552], +[0,34300,34301,30025,3421,3697,4255,4389], +[1,2349,23271], +[0,0,9896,2523,2531], +[1,2349,23280], +"aria-", +[2,23273,2618], +[3,23249,15], +[2,23275,1936], +"html-tag", +"-names", +[2,23277,23278], +[0,0,23281,2523,2540], +[0,2323,2899,1177,1317,2463,2384,2409,2494,2530,34312,2510], +[1,2349,23283], +[0,23284,23285,23290,2531], +[0,1362,1473,1512,1636,2151,2036,34317,8691,1209,3367,17997,34318,22519,4431,4597,4600,34319,34321], +[0,1429,1596,2759,2899,3202,34324,34326], +"bcp-47-match", +"-separated-tokens", +[2,14186,23287], +"devlop", +[0,22055,22074,34328,1623,4329,695,2278,4245,34331,17461], +"direction", +[2,2573,3661], +"not", +[1,2349,23295], +[0,23297,23298,23299,2540], +"selectall", +[0,1326,3299,32944,4390], +[0,1177,2899,32942], +[0,14872,7827,4246,18035], +[1,2349,23315], +"attach-comments", +[2,12413,23301], +"is-i", +"dent", +"ifier-name", +[2,23304,23305], +[2,23303,23306], +[2,12413,23307], +[3,6451,11], +[2,12127,23309], +[3,23310,15], +[2,23311,1219], +"js-esm", +[2,12127,23313], +[0,23317,23318,23320,2531], +"esast-util-from-js", +[0,34342,34345], +[0,1177,15234], +"basic-node-server", +[0,21000,4247,22813,18112,4166,2978,21004,5576], +[1,2349,23323], +"ccount", +[0,23325,23326,23327,2402], +"tostring", +[0,21505], +[0,9516,9515,1317], +[0,12616,5122,1965,34354,26965,27081,34355,34356,34357,34359,34360,1936], +[1,2349,23329], +[0,23331,21617,23333,2488], +"sval", +[0,4745], +"solid", +[0,4249,1781,4745,17307,25611,1747,7141,7789,166,1721,18035,1745,5995,1550,3230,2109,3259,4246,6523,20832,25638,1781,3053,34366], +[1,2349,23335], +[0,0,23337,2523,2457], +"wcswidth", +[0,87,1193,1192,34373], +[1,2349,23341], +[2,23340,93], +"@swc-node/", +[0,23346,23347,23348,34552], +[3,9407,13], +"nd-after", +[2,23342,23343], +"exsolve", +[0,1177,1903,33572,1938,1953,1958,1959,33573,34380], +[0,1615,2554,3183,34383,4092,12823,4389], +[0,19309,4354,16790,1501,19310,19311,19314,19271,18443,1177,2446,2292,2272,671,19315,19269,2869,4255,19317,590,19318,19320,19273], +[1,2349,23350], +[0,23353,23357,23358,2531], +[2,13721,3585], +[2,2573,23351], +[0,1437,1566,34392,1570,25901,1707,20949,34393,2089,2105,31174,4135,28154,4747], +"build-", +"build-jsx", +[2,12413,23355], +[0,1429,1177,1903,1938,1954,1958,2899,3203,3215,3421,4167,34395], +[0,1566,4945,13729,13728,6976,15525,1098,4255], +"svg-tag-names", +[1,2349,23364], +"vdom", +"hyperscript", +"@glen/jest-raw-loader", +[0,23365,23366,23367,2540], +[0,1138,1362,17045,1676,2020,17034,10756,28519], +[0,4874,34405,1429,1610,1705,34407,34408,34409,2212,2848,8163,3183,2899,34410,26230,4131,34413,4193,4196,20382,4255], +[0,15656,12804,36,6587,1973,6435,6703], +[1,2349,23369], +[0,23370,23371,23372,2531], +[0,34423,27073,2175,34421], +[0,1241,2276,4545], +[0,4264,34426,34427,34429,20863], +[1,2349,23374], +[0,23420,0,5280,34552], +"regexgen", +"sort-object", +[0,1645,1177,1903,1938,1948,1954,1958,1970,2899,3421,3784,22449], +[0,27,6622,1501], +[1,2349,23380], +[0,23381,23382,23383,2540], +[0,4729,3445,3930,4135,668,37080,36874,7384,26870,5545,968,974], +[0,1797,4763,1429,1687,2070,2807,4200,2020,2975,3144,23802,89,4207,20573,2205,3266,3411,28853,668,23345,2161,2822,6042,814,4448,24324,3555,1894,29318,9241,1420,1525,4788,3530,28863,3824,11143,4507,33215,4726,9741,16485,30414,3527,4227,4294,91,53,17577,4874,1615,1710,29514,104,14552,30157,11196,58,29515,5254,37084,1707,37491,15245,35349,8646,7931,7948,7637,7812,26380,15906,36119,8506,30253,32284,4480,101,370,15600,30254,30260,30262,24759,5216,30464,20374,30283,3885,33523,1582,37017,21122,30913,9329,30284,33228,33534,33538,30300,30313,12837,4300,30321,30375,31673,30398,966,25114,37449,28465,30406,7943,972,33554,33526,8714,19592,9011,30387,3749,30453,30454,30467,12315,30468,30470,30471], +[0,4270,4627,4963,23245,23246,89,3286,23803,3857,5123,188,1098,3709,5167,5926], +[1,2349,23385], +[0,23386,23393,23394,4194], +[0,2664], +[3,5429,9], +[2,23387,19315], +[2,1561,23388], +"origin-embedder-policy", +[2,1611,23390], +[3,23391,13], +[0,23363,10825,10827,10828,28147,34473,34475,11011,10837,10840,29877,968,972,5087,11292,4880,1177,34480,1192,11347,2780,1894,3744,3758,89,3824,2278,4111,4270,4468,91,4705,4745], +[0,6718,4270,34484,4963,1745,4967,34485,21043,34491,34493,34494,3416], +"-policy", +[2,3456,23395], +[2,23392,23396], +[3,5974,9], +[2,23398,19315], +[2,23392,23399], +"origin-", +"-cluster", +[2,4575,23402], +[2,23401,23403], +"refer", +"rer-policy", +[2,23405,23406], +"-security", +[2,4714,23408], +[2,14104,23409], +"x-content-type-options", +"x-dns-prefetch-control", +"x-download-options", +"x-frame-options", +"x-permitted-cross-domain-policies", +"x-powered-by", +"x-xss-protection", +[1,2349,23419], +[0,23546,23547,23548,34552], +[0,7,53,87,6316,6318,1437,1448,1457,1512,1525,1595,6323,2061,34500,2151,2070,2036,2626,2681,17449,2856,1209,3079,6326,6327,3127,3183,6330,6331,29899,6332,4135,100,4473,3348], +[1,2349,23424], +[3,17494,14], +[2,23422,965], +[0,8864,7950,7951,2457], +[1,2349,23426], +[0,14767,23427,23428,2531], +[0,34508,34510,2899,4170], +[0,34513,3101], +[1,2349,23430], +[0,0,23431,23437,2540], +[0,816,6503,4874,1642,1794,2899,2966,1894,4042,4064,4066,4170,4474,4494,91], +"abbrev", +"archy", +"hexo-cli", +"hexo-", +[2,23435,2149], +[0,3101,353,1641,3048,5995,4967], +"hexo-fs", +"hexo-i18n", +"hexo-log", +"hexo-util", +[1,2349,23447], +"-js-types", +[2,2822,23443], +"titlecase", +"warehouse", +[0,23457,11587,23458,2531], +"0x", +"bbrev", +[2,9165,23449], +"xt-table", +[2,13419,23451], +[2,1884,2596], +[3,1778,9], +[2,23454,3127], +[2,23435,23455], +[0,17835,692,17754,2129,2760,34524,13291], +[0,34527,34528,5995], +[1,2349,23460], +[0,0,0,23461,2488], +[0,4283,1671,1871,6901,1666], +[2,11177,17514], +[1,2349,23467], +"grunt-g", +"h-pages", +[2,23464,23465], +[0,0,23468,23472,2540], +[0,2323,2346,2463,2494,34537,2530,28539,4535], +"scrawl", +"ducers-js", +[2,4713,23470], +[0,1871,16116,34540,34541,34542,591,1641,1936,18089,1644,1936,2640,4301,6678,10368,15103,1867,23615], +[1,2349,23474], +[0,23475,23477,23481,2540], +[0,5139,34547,2626,3021,34551,34553,34556], +[2,5058,23278], +[0,34559,34560,17913], +"freeze-es6", +[2,1683,23478], +[2,5313,14056], +[0,1501,7682,7115,1936,34562,34563,7293,22392,4285,1871,4301,2640,17950,2585,34564], +"tiny-worker", +"wcag-contrast", +[1,2349,23485], +[0,23486,8176,23487,2540], +[0,34569,4294], +[0,1871,6843,3656,4289,7062,6922,6981,6701,6581,16041,23336,6700,1111,1867,5281,200,6876,7009,7201,6575,6611,6795,6960,7135,7230], +[1,2349,23489], +[0,23490,23491,23492,2531], +[0,34576,34578], +[0,4874,1414,26854,1894,3985,3998,4505,91,1906], +[0,1646,10368,1867,1936,6843,11043,18944,18089], +[1,2349,23494], +[0,23495,20509,23497,2540], +[0,1109], +"undici-types", +[0,4301,6678,7293,1111,592,1473,7208,1512,7009,7201,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +[1,2349,23499], +[0,0,8176,23500,2540], +[0,4301,4295,1412,4327,3126,3656,4577,22188,7293,6865,6678,2585,1871], +[1,2349,23502], +[0,0,23503,23504,2540], +[0,1166,3130,4481,1906], +[0,1781,4301,4298,7293,6865,6678,16112,1644,1541,8309,6937,614,1263,6639,19632], +[1,2349,23506], +[0,0,23507,23508,2540], +[0,3421,1429,3297,2899,1177,4474,1894,3310,91,4856,4874,6503,23496,1431,1938,3200,1895,1955,9417,1011,10419,1009], +[0,4302,34601,34602,5592], +"step", +[1,2349,23511], +[0,23512,23513,23514,2531], +[0,1149,1676,34607,34610,3324,34612,3368,3460,3917,34613,34615,34616,34619,34622,30142,34625,34626,34629,4707,2861,1401,34631,1653,2592,2713,695,1209,3081,26443,7305,34421,3220,3923,23975,4246,34634,26423,34636,34637,34639,29456,4729], +[0,1177,2292,4384], +[0,9649,34642,29319,34643,26473,34644,13538,4575,13539,6147,6374,24093,1541,4796,20997,20999,34647,2134,3358,27318,34650,6807,26474,10057,25202,3151,13499,27838,34651,3378,34652,34653,26931,6681,2306,3729,15267,28413,29179,5508,8791,11100,34654,34656,7046,34613,34657,34660,30142,34629,4303,34661,4345,17184,6901,34662], +[1,2349,23516], +[0,23517,23518,23519,2540], +[0,34667,34668,34669,34670,1437,1443,13827,1525,2745,2856,34671,1894,4443], +[0,34673,34676,107,192,5467,34677,34679,8661,34680,4856,4874,11438,7819,1011,5476,34681,5478,1082,34683,1429,1177,1951,1959,2007,2151,34684,2675,34686,2829,34689,695,2990,34690,26564,25131,2899,21290,3400,5561,2278,4135,4164,22595,4333,91,4555,3348,4745], +[0,34693,590,34692,1623,4964,11590,2278,4329,13339,34694,89,5133,25172], +"hap-nodejs", +[1,2349,23524], +"-newlines", +[2,1938,23522], +[0,0,23525,13543,2540], +[0,1192,2278,2675,2832,3144,1622,1177,4135,1701,2924,1854,1894,1610,48,1193,1628,53,2092,2990,3400,4111,4677,192,4257,87,4681,1938,1895,2780,5467,16405], +[1,2349,23527], +[0,23532,23533,23534,2531], +"@hono/eslint-config", +"@hono/", +"node-server", +[2,23529,23530], +[0,4311], +[0,192,5467,19438,19181,442,811,816,10615,5087,1009,1011,1177,1955,10964,2203,2675,1192,2990,1894,4042,4468,4474,91], +[0,4309,1623,590,5284,3048,23578], +"publint", +"ly-js-compute", +[2,2062,23536], +[2,4609,23537], +"wrangler", +[0,28069,205,30928,208,213,30577,220,30299,1595,1627,1634,1676,2071,29067,16783,14564,2205,34755,2641,2687,5210,19187,2747,34757,3157,3170,3369,3527,3561,3676,3681,3688,4290,15887,34762,176,4728], +[0,107,34765,11893,34768,34770,16934,5245,34775,34776,34778,8778,16398,34780,19800,34785,22092,23570,1317,1532,1699,1177,34787,1938,1939,1192,34791,2802,2990,11357,3400,5561,30107,3606,3613,30479,34793,3678,1894,3985,4337,91], +"cloudflare", +"workers", +"fastly", +"compute", +[0,2718], +[0,192,5467,19438,19181,442,811,816,10615,10817,5087,4874,1009,1011,1177,1955,10964,2203,2675,1192,2990,3400,1894,23535,4042,4468,4474,4484,91], +[0,4311,134,590,57,1623,3048,23578], +[1,2349,23550], +[0,23551,23552,23553,2457], +[0,7943,13037,34715,34718,1639,3561,4163,7917,4484], +[0,53,5652,8229,61,78,5240,87,90,92,10817,966,968,972,974,4863,5087,34720,4874,4880,4883,34722,5091,4889,5055,1193,1198,20479,14065,6375,1192,2780,26503,2802,2820,1894,3744,89,3824,34725,3857,3904,4042,4055,4058,4067,4069,4071,4073,34727,34730,91], +[0,89,1623,7165,4315,7297], +[1,2349,23555], +[0,23556,23557,23565,2457], +[0,33204], +[0,48,53,78,4851,5743,5241,83,87,90,94,97,104,4880,1166,7913,34737,1573,1177,1895,2675,3008,1894,3720,89,3824,4131,4227,33212,7917,34741,91], +"hopper-adventure", +[2,12087,23558], +"svelte2tsx", +"workshop", +"adventure", +"tutorial", +"tutor", +[0,7913,4592,34743,7165,1623], +[1,2349,23567], +[0,23568,20990,23569,2402], +[0,1393,3681], +[0,2887,1623,34749,4318,16918,3561,6425,4319], +[2,23577,23579,29331,1633], +"big-lib", +[2,8131,23571], +[2,7635,23575], +"karma-co", +"codeshift", +"@jasminejs/reporters", +"@vscode/", +"pojo", +"windows-", +[1,2349,23616], +[0,7165,1623,695,671,9654,1783,2278,4329,4320,4337], +[1,2349,23583], +[0,23585,23586,23587,2488], +[3,2618,9], +[0,4946], +[0,34768,34770,1177,34787,2675,2990,3400,1894,3985,4320], +[0,4320,34801,4255], +[1,2349,23589], +[0,0,23590,23592,2531], +[0,3421,1192,2675,3534,1742,1177,1503,4508,1894,34810,1610,4320,48,1193,34809,11918,91,53,13693,2990,3165,94,192,4131,87,34806,1939,1978,1938,6063,34791,21120,1895,1955,4514,92,1011,6061,5467,1883,1009,5766,13052,61,78], +"@domenic/eslint-config", +[0,7846,4320,1623,4329,695,671,34818,6884,3046,34819,1473,34820], +[1,2349,23594], +[0,23595,23596,23599,2540], +[0,3561,34826], +[0,1177,34829,1895,2203,2675,1192,30912,34791,2802,2990,3606,30479,34832,1894,34835,4320], +[3,9127,9], +"flowgen", +[0,7846,4320,1623,671,4327], +" entities", +[2,1936,23600], +" encode", +[2,23601,23602], +[3,23603,14], +[2,23604,15103], +[2,18089,23602], +"entities ", +[2,23607,15103], +[1,2349,23610], +[0,23611,23612,23614,2540], +[0,1634,2747,2932,3141,34842,34760,3681,3688], +[0,1532,1610,1177,34847,2675,1192,34791,2990,3377,3561,30479,3678,1894,4320], +"ascjs", +[0,1623,21861,671,9654,4329,4320,7846], +"unescape", +[0,23618,14827,23619,34552], +[1,2349,23620], +[0,63,1676,2070,4113,4227], +[0,1623,57,590,22561,2437,1351], +[0,23625,23626,23627,34552], +[2,9374,12349], +"-unicode", +[2,23615,23622], +[1,2349,23640], +[0,2071,3369], +[0,48,53,87,192,5467,442,27928,19344,1317,34860,1610,1622,1628,1700,1701,1177,1895,20281,1938,1939,1942,1953,1955,1982,2203,2675,1192,2990,3144,3291,3400,1894,3786,4257,4307,4333,4523,2924], +[0,2924,1194,4333], +[1,2349,23629], +[0,0,0,23630,2457], +[0,1623,3561,30775,5341,8958,57], +"relateurl", +[1,2349,23633], +[0,23636,23638,23639,2531], +"compressor", +"packer", +[0,1533,34877,1676,33596,2139,2141,3164,3171,3763], +"uglifier", +[0,48,53,83,87,97,192,5467,1290,16750,27731,1364,1389,1575,1610,1177,1909,1924,1954,2026,2040,2114,2182,2675,2990,3127,2899,3246,3421,3985,3995,4039,4170,34879,34881,1906,4770], +[0,4575,6662,6662,5592,1149,7003,1170,12618,5576,34883,2212,27,27,2671,21668,1862,1862,6567,705,705,21666,5508,4030,1153,4340,4339,17481,353,4731,4738], +[0,23650,23653,2523,34552], +"detect-europe-js", +[1,2349,23671], +"alpinejs", +[3,19403,11], +"config-no", +"n-conventional", +[2,23645,23646], +[2,23644,23647], +[3,10854,16], +[0,25910], +"lyfill-node", +[2,23649,23651], +[0,5245,27847,4874,1317,25212,3230,21180,91,1984], +[1,2349,23655], +[0,23656,23657,23658,2531], +[0,3164,4339,1581], +[0,3421,3297,2899,4193,1177,4170,2026,3752,1364,1575,192,1938,1881,5467], +[0,5982,27,705,4339,6969,1973,5472], +[2,23660,23663], +"browser-d", +[1,2349,23662], +[0,23665,23666,23669,2540], +"etection", +"device-detection", +[0,1362,3164], +[0,1429,1431,4037,4706,1364,1575,2026,2899,4170], +"os-detection", +"bot-detection", +[0,4342,4339,705,6969,5982,27,1973,5472,1862,34901], +"void", +[0,0,23673,23675,34552], +[1,2349,33859], +[0,1906,1166,4481,4874], +"self-closing", +[0,1473,7208,1512,7009,7201,200,1111,592,6621,6616,7244,4166,4744,6876,4231,25986,34915,13735,13030,34916], +[1,2349,23677], +[0,23678,23690,23692,34552], +[0,31292,5012,23826,1006,37513,1082,11869,19639,1497,11478,11479,22716,10898,10902,3090,22720], +"@bubkoo/commitlint-config", +"@bubkoo/", +[2,23680,7625], +[2,12612,1541], +[2,23680,23682], +[3,21388,20], +[2,23684,16171], +[2,23680,23685], +[2,23680,2190], +"asmine", +[2,5086,23688], +[0,5180,8648,811,816,10615,8661,11868,4874,11486,668,4042,4227,27921,91,1984], +"capture", +[0,3709,27751,5130,5354,17950], +[1,2349,23694], +[0,23695,23697,23698,2540], +[0,5180,1457,20378,3527,11481], +"@selderee/plugin-htmlparser2", +[0,811,8850,816,6373,10817,34939,1405,4042,4052,8849,3709,91,34940,34942,27702,27703,23560,34945], +[0,3709,200], +"selderee", +[1,2349,23701], +[0,0,23702,23703,2540], +[0,53,87,192,5467,34951,34953,10879,4874,34955,19802,1165,13662,1509,1567,1177,695,3561,34958,3616,1894,3754,2278,4333,4337,3709,91,1984], +[0,3709,4358,91,695,4333,2278,4329,3754,1509], +[1,2349,23710], +"@html-", +"/stylish", +[2,2649,23706], +[2,23705,23707], +"@sidvind/better-ajv-errors", +[0,23713,23714,23715,2540], +[2,23712,23], +[3,16579,15], +[0,16858,2070,4361,1149,25232,4597,4739,4747,2822,4709,3257,34967,3060,18993,10780,34966,13839], +[0,1906,1192,695,2278,3549,4333,3536,1939,1942,34971,19812], +[0,1017,45,8221,18048,22074,22075,2873,1179,1623,2278,695,4333,5376,134,1936,13814,22874,22875,3257,17461], +[1,2349,23717], +[0,23718,23719,23724,2540], +[0,1525,1632,1634,9378,16858,3527,4113], +[0,442,11893,811,816,10615,16934,16854,5087,4874,34194,7752,1610,1177,2203,1192,3536,3541,3549,1894,4039,4042,4393,4481,91], +"theme-one-dark", +"@json2csv/plainjs", +[2,6019,3888], +[2,27733,23725], +[0,4361,8221,6707,3178], +"-2", +"renderjson-2", +[1,2349,23728], +[0,23731,23732,23733,2540], +"uffers", +[2,15038,23729], +[0,1700,3067,34984,4533], +[0,1166,1173,1178,1257,29224,1272,1280,1362,1177,34989,3150,3188,4193,2924], +[0,2924,1932,34991,34984,11100,6812], +[1,2349,23735], +[0,23737,23743,23744,4194], +[2,11085,2634], +[0,1082,1699,2070,2856], +"pug-loader", +"recomp", +"ilation-simulator", +[2,23739,23740], +[2,4670,23741], +[0,1177,1894,4389,34997], +[0,8124,34999,7701,20120,1745,4363,1163,13728,1179,8623,20121,20123,20124,3452], +[1,2349,23746], +[0,23747,23748,23749,2540], +[0,2205,2822,1525,35011,35008], +[0,1177,1984,1894,7677,35013], +[0,8124,1739,35015,1745,5592,134,4298], +"@aminya/babel-plugin-replace-import-extension", +"lateurl", +[1,2349,23761], +[2,31806,31807], +"srcset", +"swiperjs", +[3,9376,10], +[2,23756,6424], +"postproc", +"cessor", +[2,23758,23759], +[0,0,23762,23763,2540], +[0,4874,91], +[0,8168,8124,181,4369,2026,1745,1739,35021,12659,4367,699,35024,35026], +[1,2349,23765], +[0,23766,23768,23770,2540], +[0,5971], +"rss", +[0,1866,2026,35036,2899,3421,3758], +"tributejs", +[0,8124,2026,181,1781,1745], +[1,2349,23772], +[0,23773,23774,23776,34552], +[0,4535,3460], +[0,1209,2026,35046,2899,2025,35047,695,35048,1330,35051,3521,1389,2090,1776], +"toidentifier", +[0,1283,17950,1936,21043,35053,16277,2026,1359], +[1,2349,23778], +[0,0,0,23779,2488], +[0,4372,35058,31512,4453,12295,5131,1591,3525,1896,5130,35059,32054,35060,1932,89,188,35062], +[1,2349,23781], +[0,23784,23786,23787,2540], +"s-port", +[2,3209,23782], +[0,35068,35071,35072], +"sse", +[0,1364,1610,2026,35074,1192,3237,4039,91], +[0,705,27,2671,2325,1389,31360,15001], +[1,2349,23789], +[0,0,0,23790,2488], +[0,35081,35082,3233,27838,888,6667,31937,6574,35084,35085,35086,35087,35088,35089,35092,26467,35093,7734,35095,3151,6771,35096,35097,35099,35100,11996,35102,35105,35106,35107,35108,35109,35110,35111,35112,17878,35115,35117,11812,35119,35122,10798,5876,12340,35125,25028,35126,35128,35129,35131,35133,35134,24079,5995,33741,35135,35136], +"agent-base", +[1,2349,23793], +[0,0,23794,2523,2540], +[0,3445,2929,2899,3188,4039,4042,4072,1362,3310,35146,20463,4705,4232,8850,4073,6373,35141,816,35145], +[1,2349,23796], +[0,23797,23798,23799,2540], +[0,4729,1091,1594,35154,35155,35156,35157,1209,3237,35158,35159,35161,35162,2026,35163,35164,35166,35168,35169,1154,1364,1536,1562,35171,1130,97,35173], +[0,3278,1096,35175,35176,4167,35178,1532,35179], +[0,35181,35182], +"mockttp", +[1,2349,23804], +"polka", +"next.js", +[0,0,23805,23806,2488], +[0,12473,4484,1177,2205,4042,1984,1894,91,53,4874,87,4057,4523,7677,5583,1938,11899,22839,22847,10817,816,24621,5660], +[0,4383,4380,1623,5256,35189,35191,1698,22306,35193], +[1,2349,23812], +"union", +"corser", +"secure-", +[2,23810,3797], +[0,0,23817,2523,2540], +"eol", +[3,1895,15], +"opulist", +[2,23814,23815], +[0,1680,4874,16860,3090,4228,23956,31292], +[2,15021,36], +[1,2349,23820], +[0,23821,0,23822,2402], +[0,35205,35206,35209,35212,35213,35214,35216,35217,35220,35221,35222,35226,35227,35228,35230,35232,35233,35235,35236,35237], +[0,1145,4384,1973,5472,5130,200,35239,35240], +[1,2349,23824], +[0,23825,23827,23830,2488], +[0,1437,1792,2089,1209,3718,26840,35245,4431], +[2,836,22715], +[0,35247], +[3,7639,16], +[2,23828,176], +[0,4389,4384,2899,4386,16237], +"HttpStatus", +[2,27,5576], +[1,2349,23834], +[0,0,23835,2523,34552], +[0,1192,1177,2203,1894,442,1193,53,1953,27928,87,1939,1938,20281,1982,1895,1955,19344], +[1,2349,23838], +"mediation", +[0,23839,23840,23841,2488], +[0,35260,35263,35264,1417,1693,15016,35265,2133,2179,2070,35266,2571,2713,17403,3183,3206,3431,13635,3433,3435,814,18997], +[0,13614,1143,1159,1537,1610,1796,35268,9254,1855,1177,14738,2762,2822,35271,3410,3421,4103,4135,4384,20496], +[0,4384,1973,35273,1145,1388], +"-retry", +[2,7737,23842], +[1,2349,23845], +[0,23846,23847,2523,34552], +[0,35278,35279,21505,29174,35280], +[0,4874,35282,1834,668,35285,29169,3297,1894,4039,4384,4483,4508], +[1,2349,23849], +[0,23850,23851,23852,2531], +[0,3756,4393], +[0,4039,35291,4255], +[0,4390,2150,2090,18158,7204,3101], +[1,2349,23854], +[0,23855,33861,2523,34552], +[0,35297,23856,35298,35299], +"bare-fs", +[1,2349,23858], +[0,2514,23861,23863,34552], +"anity", +[2,1901,23859], +[0,15288,15594,5087,4874,1009,1011,1596,668,1177,1903,1938,1954,1958,1192,1894,4468,91], +[3,2677,9], +[0,35306,6346,35307,35308,4967,35310,5995,35312,27448,14629], +[1,2349,23865], +[0,0,23866,23867,2540], +[0,15288,5367,5371,6494,15594,5087,4874,9240,1009,1011,1364,1527,1652,35317,1177,1903,1938,1954,1958,2675,1192,2990,3363,5362,1894,4342,4468,91], +[0,35306,6346,35307,35308,5995,35312,15001,2026], +"singular", +"plural", +"camelize", +[1,2349,23873], +"dasherize", +[0,23880,0,23882,4194], +"demodulize", +"ordinalize", +"uncountable", +"singularize", +"titleize", +"tableize", +[0,1676,3299,15160], +"classify", +[0,32859,35324,35327,35328,35329,1326,35330,5995], +"foreign_key", +[1,2349,23885], +[0,23886,23887,23889,4194], +[0,1676,3299], +[0,442,6373,5245,4874,20584,1759,1177,1895,1966,1982,640,1894,4508,4514,91,4523,1983,26744,1984], +"@messageformat/core", +[0,32859,35328,4398,202,5995], +[1,2349,23892], +"fast-printf", +[0,23893,7927,23898,2531], +[0,4039,3188], +"make-plural", +"val-parser", +[2,9433,23895], +[2,18108,23896], +[0,21770,4449,1241,35342,16330,29615,35343], +[1,2349,23900], +[0,23902,23903,23935,2540], +[2,23927,23929], +[0,2753,13786,4507,35349], +[0,4874,1166,3505,4453,4481,1906], +[3,5702,15], +"-function", +"-functions", +[2,23904,23906], +[2,69,23907], +"gh-release", +"i18next-", +[2,1351,18691], +[2,13843,23911], +[2,23910,23912], +"fs-backend", +[2,23910,23914], +[2,2655,5995], +[2,23910,23916], +"storage-", +[2,23918,2325], +[2,2703,23919], +[2,23910,23920], +"sprintf-", +[3,10810,11], +[2,23923,7120], +[2,23922,23924], +[2,23910,23925], +[3,6021,10], +"interna", +"ease", +"alization", +[2,3855,23930], +[2,23928,23931], +[2,2703,8840], +[2,2202,8840], +[0,1241,21770,3403,2090,7204,6857,16330,35342,29615,35343,3778,17023], +"gettext", +[1,2349,23938], +[0,23939,0,23940,2488], +[0,26925,35364,35359,35367,35358,35365,35363,35356], +[0,7009,7201,1111,200,4744,1473,35369,35371,590,6847,35373,29002,35374,13006,4403,1478,15955,35375,35376,35377,32312,158,18048,21881,20639], +[1,2349,23943], +"gridly", +[0,23944,0,23945,2457], +[0,35382,15019,2713,35259,4431,35383], +[0,4403,7009,1111,35385,35386], +[1,2349,23947], +[0,23949,23951,23953,34552], +"safer-buffer", +[0,35392,1082,1525,4232], +"errto", +[0,35394,35395,1177,19210,1999,2899,3697,4042,4135,4227], +"unorm", +[0,2280,4072,4533,4535,3178,2632,5284,5286,1925,5194,6598,7075,6778,7056,7192,1149,7003], +[1,2349,23955], +[0,23957,23961,23962,2531], +[2,8293,23958], +[0,4072,2805,4121,4143,5180], +"oxide", +"-reflect", +[2,5258,23959], +[0,1700,1192,2675,3144,1622,1177,1701,668,2924,1894,842,1610,4535,48,442,91,53,4874,2092,2990,3400,4677,28639,192,1953,27928,35403,4257,87,4523,1939,1584,1942,1938,20281,1982,1895,1955,19344,16400,5467], +[0,2280,4535,4533,4072,2924,1464,14137,15215,23634,2262,14137,2632,3178,6707,6708], +[1,2349,23965], +"proxies", +[0,23966,23967,23968,2540], +[0,22989,22991,22997,23001,23004,1519,1522,25190,2071,26553,17798], +[0,2829,3310], +[0,1187,1973,8791,200,2275,5472,4990,4389,4384,1166,2899], +[3,1891,15], +"stai", +[2,23969,23970], +[1,2349,23973], +[0,23976,23978,23979,2457], +"pre-suf", +"spawn-sync", +[0,1362,1437,2070,1209,3127,3188,35417,35419], +".gitignore", +[0,19181,442,12312,13414,4865,4870,4874,6513,1009,1011,7677,1703,1177,15555,35422,4193,35425,35426,4493,4494,91,35428,1984], +[0,1783,1973,2275,29352,1745,1739], +"asterisks", +"regular-", +[2,23981,7256], +[1,2349,23984], +[0,23985,23986,23987,2540], +[0,53,71,81,5717,5749,5751,5757,5759,5782,5788,5821,5830,83,87,14128,90,97,35437,35439,4874,15427,5990,1212,14191,35440,17495,1429,1437,35443,1509,1525,1676,1680,1700,35444,28504,1687,35446,28137,13772,6473,2020,35450,2205,2215,33100,2670,12788,35453,2709,2742,26453,2743,35455,2753,2856,1209,35457,3093,7305,3220,35461,3257,3266,35462,3493,3532,35463,3549,15245,35465,3742,3762,35467,35469,13780,4025,4108,4135,5152,4232,4296,35473,35476,35479,35482,35484,35485,35486,35487,35494,35496,4449,4459,91,35497,35500], +[0,33640,17835,35502,8862,811,15460,816,29544,35505,4856,5245,35507,17577,22089,27299,6505,7812,5254,5162,13418,35510,1009,1011,1198,1304,1364,35512,35513,1431,21480,4907,1544,1594,1610,35514,1874,1177,35517,17303,2026,35518,2323,2338,35519,2383,2384,2450,35521,35523,20305,2494,35527,2530,8163,3124,3159,3183,35531,3246,35533,3752,89,5311,4042,4076,4151,4193,17010,4294,35537,4484,4535], +[0,35539,6564,1388,2887,5351,8674,5472,13428,1973,8791,6969,1145,6468,35540,6789,6746,1149,7003], +[1,2349,23990], +"dimensions", +[0,23991,23996,23997,34552], +[0,17877,35547,1137,20908,20991,1676,35549,1736,2182,28142,35550,35555,4391,4449,4548], +"resolution", +"heif", +"tga", +"tiff", +[0,28192,35558,28180,5245,28203,35561,35563,6520], +[0,4419,17878,5472], +[1,2349,23999], +[0,24000,24001,24002,2531], +[0,1209,10627,35570,26827], +[0,4874,1009,1011,1389,35573,35575,1610,1680,35576,35577,2752,3188,3400,3421,4039,4255,35579,35580,4421,4474,12851,91], +[0,6969,5982,3212,13106,4158,35582,4420], +"ow", +"p-pipe", +[1,2349,24007], +"imagemin-webp", +[0,24008,24009,24010,2540], +[0,10780,1292,1362,35382,1525,1536,1559,2020,2026,35588,2070,2659,2822,1209,3188,3257,3330,3411,35589,4039,4218,25192,35591,20496,4449], +[0,35593,1389,1429,18761,35596,1448,1719,1177,18766,1951,2899,705,35598,4167,4193,4196,4220,4389], +[0,5284,5472,27603,1388], +[1,2349,24014], +"is-png", +"pngquant-bin", +[0,0,24015,24018,2540], +[0,4384,4389,1474], +[2,2267,1932], +"pngquant", +[0,2585,176,14903,6938,26815,15847], +[1,2349,24020], +[0,0,24021,24023,2540], +[0,442,816,10615,1177,35611,1924,1937,1942,2203,29741,1776,3090,3549,3758,2907,4042,4495], +"utf7", +[0,4426,35617,5284,7598,35619,35620,35621,35622,35625,35628,35629,1424,8221,12075], +"reader", +[1,2349,24026], +[0,0,24027,24028,2540], +[0,48,53,83,87,97,5583,1195,16818,1593,1177,16821,1895,1955,1999,2182,35634,16824,2675,2297,2876,2881,2895,2904,2908,2921,2925,2990,3183,35637,3377,1894,3774,4042,16827,2924], +[0,1675,6925], +"cpx2", +[3,23479,11], +[1,2349,24034], +"import-size", +"seamless-immutable", +[0,0,24035,24039,2488], +[0,7115,4389,19988], +"mutable", +"on-write", +[2,1583,24037], +[0,3101,7046,7525,7170], +[1,2349,24041], +[0,24042,24043,24046,2540], +[0,3923], +[0,1329,1398,1429,35649,2899,35650,4255,35653], +"variant", +[2,9721,24044], +[0,3101,6657,4430,353], +[3,2697,12], +[1,2349,24049], +[0,0,0,24050,2457], +[0,3949,1499,1179,5701,1862], +[1,2349,24052], +[0,0,8176,24053,34552], +[0,35667,35668,35670,4435,5396,3403,4571,7204,4569,18132,6270], +[1,2349,24055], +[0,24056,14535,24058,2540], +[0,1437,32972,2089,21890,35675,3718,4425], +"bypass", +[0,2228,3005,22832,6901,35677,4262,18234,3514,6681,3005], +[1,2349,24060], +[0,24061,24062,24063,2540], +[0,35720,35797,35724,35730,35781,35789,35795,35799,35810,35682,35684,35697,35739,35750,35754,35769,35779,35793,35685,35700,35721,35741,35748,35756,35785,35787,35792,35812,35689,35694,35743,35752,35762,35774,35791,35805,35702,35705,35706,35708,35710,35723,35802,35806,35709,35699,35718,35729,35767,35772,35804,35808,35713,35733,35764,35811,35690,35701,35717,35727,35738,35761,35776,35783,35746,35736], +[0,2150,2070,2323,3403,2278,2899,89,1177,1209,4039,1637,3561,2924,1859,2151,2759,1610,2025,2504,3342,3824,1628,2359,3744,2367,4111,1165,2482,2496,4307,35814,35816,3427,4689,2361,2960,3618,35819,4909,1959,1879,1938,1947,25925,35818,1652,2054], +[0,89,5128,4627,4963,181,5130,4967,35821,4437,14547], +[1,2349,24065], +[0,24066,24067,2523,2776], +[0,20443,1676,26137,26144,3427,3763], +[0,1173,1198,1253,1267,1177,1903,1958,1970,2026,2164,2899,29946,4257,4342], +[1,2349,24071], +"metacom", +"metaco", +[0,0,0,24074,34552], +"nfiguration", +[2,24070,24072], +[0,1317,35832,4439], +"metalog", +[1,2349,24082], +"metaschema", +"metautil", +"vm", +"metavm", +"metawatch", +[0,0,24086,24087,2531], +[3,15793,16], +"tarhia", +[2,24083,24084], +[0,35837], +[0,1473,57,35839], +"isolation", +"enterprise", +"scalable", +"soa", +"stateful", +"cluster", +[1,2349,24096], +"interactive", +[0,0,0,24098,2457], +[2,24101,103], +[0,6105,4445,18241,5284,1936,2585,24829,24830,24843,6106,24832,6110], +[1,2349,24100], +[0,0,24102,24103,2540], +[3,9312,10], +[0,4874,34238,1177,1895,1955,1982,1894,1531,91,4523,1983,1984], +[0,2062,35849,35851], +[1,2349,24105], +[0,0,0,24106,4194], +[0,4158,3212,91,3163], +[1,2349,24108], +[0,0,24109,23898,2540], +[0,2899,1177,2759,15854,1951], +[1,2349,24111], +[0,24112,24115,24119,2540], +[0,3864], +"-vnode-flags", +[2,2711,24113], +[0,53,29553,5103,1894,91], +"inferno-", +[2,24116,594], +[2,24116,6579], +[0,89,5128,35865,11000,8192,35867,35869,3857,3906,35868,35870,4450,9044,3811,5779,200,5131,12295,12296,5122,35871], +[2,6073,591], +"ToString", +[2,8924,24121], +[1,2349,24124], +[0,0,24125,24126,2402], +[0,48,53,81,87,90,11976,12310,5476,1195,1429,1177,2026,2151,2193,2205,2822,2832,3127,3188,2899,3286,35877,3400,35878,89,3824,2278,4255,2924,4677], +[0,4451,5284,176,5938,16504,8623,1936,6956,24456], +[1,2349,24131], +[2,2712,591], +[2,2712,1592], +"humanize", +[0,0,24132,24133,34552], +[0,2276,28234], +[0,4452,57], +[1,2349,24141], +"inherit", +"inheritance", +"klass", +"oop", +"oriented", +[2,3425,24139], +[0,0,24142,2523,34552], +[0,29169,4384], +[1,2349,24144], +[0,24145,24146,24147,34552], +[0,25671], +[0,5517,442,9089,603,4874,22839,1177,1895,1915,1938,1955,6526,2203,1894,4493,91,4523,1984], +[0,9183,977,16358,35896,34877,34876,35897,35898], +[1,2349,24149], +[0,24150,24155,24158,2540], +[0,1512,1672,3188,35904], +"@alcalzone/ansi-tokenize", +"auto-bind", +[2,17503,7201], +"yoga-layout", +[0,4856,6503,1429,1474,1787,1177,2899,3421,4474,4487,91], +"@types/ms", +[2,11313,14675], +[0,3073,2942,4251,1676], +[1,2349,24170], +[3,6547,13], +"-exit", +[2,24160,24161], +"ack-utils", +[2,6516,24163], +"@vdemedes/prettier-config", +[2,15289,89], +[3,3816,9], +"tools-core", +[2,24167,24168], +[0,24172,24173,24174,2531], +"print", +[0,15312,35917,17416], +[0,13614,1159,9254,1855,1177,2708,3410,4103,4389], +[0,100,4647,6899,3053,7260,1697,1496], +[1,2349,24176], +[0,0,7927,24178,34552], +[3,2718,12], +[0,1633,18718,3729,35109,32900,6553], +[1,2349,24180], +[0,20920,24185,2523,2531], +[2,24184,4013,17526], +"inno", +[3,2719,9], +[3,29444,16], +[0,7806,9227,6494,5087,1536,1594,2026,1192,3363,1894,4468,91,4763], +[1,2349,24187], +[0,24189,24190,24191,2540], +"run-async", +[0,2713,4431,15019,35935,35938,3923], +[0,4389,4430,1537], +[0,1936,22115,57,353,3586,1623], +[1,2349,24193], +[0,24194,24195,24196,2540], +[0,24156,5254,2738,3242,4135,22776], +[0,11976,4874,7677,1395,12690,3232,3446,7461,9245,91,1984], +[0,5995,1550,3230,3232,1932,2844,1747,18037,4799,91,2325,1552,1542,3151,9553,3766,35948], +[1,2349,24198], +[0,0,24199,6275,2457], +[0,48,53,61,76,78,87,92,107,192,5467,9089,603,5366,5087,4870,7819,1009,1011,1193,1317,1593,1177,1895,1955,1978,2675,1192,1209,3400,1894,3957,4474,4508,4514,91,3348], +[1,2349,24201], +[0,24203,24205,24206,2531], +"fwk", +[0,35957,16781,2036,2856,3057,35958,4135,4507,4748], +[3,2726,9], +[0,192,22559,19438,19181,442,11893,8755,554,10879,4864,5087,7637,7889,19446,35960,8778,4874,5254,4892,21626,1009,1011,1193,16307,1566,668,1177,1895,1938,1939,1942,1955,2020,2071,2151,2203,2675,1192,2822,2990,3144,1894,4039,4474,91,4523], +[0,1192,91,12938,89,5472], +[1,2349,24208], +[0,24210,24212,24215,2531], +"reify", +[0,1437,1835,3170,4135,4227], +"exports", +[0,8778,5254,1009,1011,1172,1175,1195,1257,1267,35968,1268,1874,1177,1895,1954,1955,2151,2070,2675,2766,2297,2881,2898,2904,2921,2925,2990,3123,3188,2899,1894,4039,91,2924,4677], +"packaging", +"unrun", +[0,4469,35972,2924,1194,91,4799], +[1,2349,24217], +[0,24221,24222,24225,2488], +"remark-co", +"de-import", +[2,24218,24219], +[0,8998,1525,1759,3232,4494], +[0,11976,4874,7677,12690,3377,3446,7461,9245,91,1984], +"coffee.md", +"litcoffee", +[0,5995,31012,35980,35981,3232,3230,1550,2844,1747,18037,4799,91,200,13326,35982,13325], +[2,24227,553], +[3,37196,18], +[1,2349,24243], +[3,1235,25], +"3-member-expression-literals", +[2,24229,24230], +[3,24231,27], +[2,4635,5796], +[2,24232,24233], +[2,1267,13278], +"-cal-buddhist-full", +[2,10739,24236], +"cldr-cal-", +"-full", +"chinese-full", +[2,24238,24240], +"cldr-cal-c", +[0,24252,24260,24265,34552], +"optic-full", +[2,24242,24244], +"dangi-full", +[2,24238,24246], +"ethiopic-full", +[2,24238,24248], +"hebrew-full", +[2,24238,24250], +[0,35987,35989], +"indian-full", +[2,24238,24253], +"cldr-cal-i", +"slamic-full", +[2,24255,24256], +[2,6795,24239], +[2,24238,24258], +[0,10817,4856,17577,6503,4874,1429,27445,1610,1687,2899,4039,4042,4474,91], +"persian-full", +[2,24238,24261], +"roc-full", +[2,24238,24263], +[0,91,6892,35993,4988,35995], +"cldr-core", +"cldr-", +"dates-full", +[2,24267,24268], +[1,2349,24279], +"numbers-full", +[2,24267,24271], +[2,2004,19895], +"grunt-curl", +"grunt-zip", +[3,15911,15], +"emory", +[2,24276,24277], +[0,24281,24284,24285,2531], +"ecma", +[0,4757,1138,1687,1082,1084,35958,24806,36000,36001,32335,19441,36002,36005], +"ecma402", +"jsonc-simple-parser", +[0,1166,3421,1170,89,36007,2022,1209,4039,4135,7094,3471,4508,842,36008,2188,3752,91,17577,4874,36009,4880,4870,20959,5254,15906,36011,28142,9725,28203,29139,603], +[0,91,202,7047,6639,4799,4643], +[1,2349,24288], +[2,1940,23688], +[0,24296,24297,24300,2531], +"flag-icons", +[3,10697,15], +[2,24290,6082], +[3,2273,15], +[2,24292,23688], +"grunt-re", +[2,24294,2495], +[0,4870,24156,5254,36017,1209,3242,36018,36020,4135], +[0,11976,4874,7677,12690,3232,3446,7461,9245,91,1984], +[3,23932,13], +"country", +[0,5995,3232,1932,1550,2844,1747,18037,4799,91,7163,2602,2013,6868,7147,3076,6865,13716,3073], +[1,2349,24303], +"dial code", +[0,0,2684,24304,4194], +[0,91,4749,24753,24754], +[1,2349,24306], +[0,24307,24308,24309,34552], +[0,1209,4870], +[0,11976,4874,7677,3377,3446,7461,9245,91,1984], +[0,5995,4799,91,36033,36034,5547,3624,16284,36036,36037,36039,36040,36041], +[1,2349,24311], +[0,24312,24314,2523,2488], +[0,2856,3183,4296], +"updates", +[0,1192,2675,1177,4039,4468,4474,1894,91,5087,4874,2990,7892,36047,1942,1938,1895,1011,18285,1009], +[3,14428,13], +[2,24315,15525], +"inversi", +"on of control container", +[2,24317,24318], +"ioc", +[1,2349,24322], +[0,24323,24330,24333,2531], +[0,8811,7681,2205,2777,3157,3505,3921], +"empathic", +[3,547,8], +"li-framework", +[2,24325,24326], +"-prompts", +[2,24327,24328], +[0,11436,4874,4880,1009,1011,1166,1597,1701,1177,1907,15290,2020,89,4025,4094,91], +"discover", +[2,8655,24331], +[0,91,4481,4354,4532,553,36055,36059], +"utils-array", +[2,8655,24334], +[3,24335,13], +[2,24336,2150], +[2,24336,11996], +[2,24336,3729], +[2,24336,3101], +[3,24340,14], +"ubprocess", +[2,24341,24342], +[2,24336,7009], +"elementtree", +"leek", +"ssh-config", +"-proxy", +[2,4339,24348], +[1,2349,24357], +[3,15592,14], +[2,24351,1633], +"pen", +"@types/open", +"s-name", +[2,15461,24355], +[0,0,24361,24365,2540], +"@types/split2", +[3,9240,12], +[2,24359,4575], +[0,53,87,92,11893,19441,8811,4874,1009,1011,1193,1622,1177,1895,1192,1894,91], +[2,2733,14606], +[2,2733,5130], +"hybrid", +[0,91,4481,8784,4354,16790,1973,4532,553], +[1,2349,24367], +[0,24368,24369,24371,2402], +[0,29891,1437,1457,15261,24283,3181,3188,36071,35237,4039,21512,91,9455], +[0,4874,668,1894,4384,4508], +"@types/svgo", +[0,91,11540,24364,1999,10906,6147], +[1,2349,24375], +"icon pack", +[3,11619,14], +[0,0,0,24376,34552], +[0,6869,7296,4643,1351,5284,4484,7047], +[1,2349,24378], +[0,24380,24394,24404,4194], +"@ioredis/commands", +[0,51,1405,1437,1525,1687,2070,2822,3181,3188,814,4135,4484,18272], +"-key-slot", +[2,24093,24381], +"denque", +[3,19541,11], +"guments", +[2,24384,24385], +"-error", +"-errors", +"redis-errors", +"redis-", +[2,24390,57], +"as-callback", +[2,18124,24392], +[0,692,19861,4856,17577,4865,7637,9129,10949,6503,4874,5251,20959,5254,1429,2675,34269,2899,3400,3421,1894,4039,4474,4487,4490,14970,91,31745], +"@ioredis/", +[2,8626,16609], +[2,24395,24396], +[3,19583,22], +[3,10408,16], +[2,24399,10446], +[3,8826,10], +"is-errors", +[2,24401,24402], +[0,200,91,9654], +[1,2349,24407], +"sentinel", +[0,0,24409,24410,34552], +"pipelining", +[0,1192,2675,1209,4039,4487,4468,3093,1894,36090,1527,91,5087,4874,36097,4492,36088,15600,4131,36098,36103,31194,4585,31195,36100,1652,36095], +[0,671,4487,36106,1894,1541,91], +[1,2349,24412], +[0,24413,24414,2523,34552], +[0,18272], +[0,4865,4874,1512,2070,3400,3403,4487,36114,91], +[1,2349,24420], +"irc-colors", +"node-i", +"cu-charset-detector", +[2,24417,24418], +[0,24422,24423,2523,2540], +[3,1104,10], +[0,36119,1415,1457,1556,1676,668,28795,36120,3527,3616,4025,4042,4227,12444,26379,27921,4459], +[0,603,8850,842,5245,4874,5251,19839,2117,3561,26712,1894,814,4057,2278,4300,3709,4359,4072,36123,4493,91,1984,9252], +[1,2349,24425], +[0,24426,0,24427,2540], +[0,668,2191], +[0,200,7047,202,17526,10906,1999,91,36130], +[1,2349,24429], +[0,24430,24431,24432,34552], +[0,36135], +[0,811,816,6373,1389,4037,4042,4255,36140], +[0,15253,1936,1783], +[1,2349,24434], +[0,0,24435,24436,2402], +[0,2228,2899,29691,2240,4019,36157,36156,2300,36149,2258,36160,4232,2247,36163,2273,2281,36165,36167,36153], +[0,2845,2844,1155,4496], +"is-extglob", +[1,2349,24439], +[0,0,24442,24443,34552], +"extglob", +"globstar", +[0,1389,1177,2080,36176,4389,36178,4535], +[0,1616,12588,36181,36182,7789,3428,6803,36183,36185,36186,36187,36189], +[1,2349,24445], +[0,24447,24448,24452,2531], +[2,14503,7204], +[0,2151,2859,36194,21224], +[0,3400,3524,4535], +"globally", +[3,9509,9], +"locally", +[0,3113,36197,57,11806,22875,36198,3656], +[1,2349,24454], +[0,24455,24457,24458,2488], +[0,1362,3171,705], +"vanilla", +[0,1149,1512,1525,2899,4037,4193], +[0,4500,5592,4030,3101,22115,3424], +[1,2349,24460], +[0,24461,24464,24465,2457], +[0,705,1696], +"is-object", +"kind", +[0,3297,2899,1177], +[0,4500,22115,3424], +[1,2349,24467], +[0,24468,0,2523,2540], +[0,3183,36215,1437], +" name", +[2,24374,24469], +[1,2349,24472], +[0,24473,24474,24475,2488], +[0,31081], +[0,13789,1011,1177,28753,1680,2024,3401,4481,91,4523,1906], +[0,91,4799,553,6435,614,6731,3061,1698,1781,7265], +[1,2349,24477], +[0,24478,16100,24479,2540], +[0,1562,36226,3173], +[0,1563,998,36228], +[1,2349,24481], +[0,24482,24483,24484,2540], +[0,24648,6327,3105,3181,4745], +[0,442,8144,7639,6503,4874,1414,36007,668,1177,2899,3758,4135,4494,91,4523], +[0,91,1745,1179], +[1,2349,24489], +"is-ins", +"ide-container", +[2,24486,24487], +[0,24490,24492,24495,2457], +[0,36241], +"esmock", +[0,4874,4508,91], +"wsl", +"subsystem", +[0,36244,36245,29,36246,36247,36248,91,1745], +[1,2349,24497], +[0,0,23762,24498,34552], +[0,1666,6901,33777,91,1745,36248,4508], +[1,2349,24500], +[0,0,0,24501,2540], +[0,5592,1745,1783,4508,91,36245], +[1,2349,24503], +[0,24505,24506,24507,2540], +"kindof", +[0,3127,91], +[0,8147,6503,4874,6520,1596,2759,2899,3202,4449], +[0,6869,1745,36263,5284], +[1,2349,24510], +[2,13283,2899], +[0,24513,24514,24515,2540], +"spaces-cli", +[2,671,24511], +[0,1525,4734,3275,15221,36270,1149,1512,3220,3188,7074,36272], +[0,1429], +[0,36275,1783,36276,36278,26916,20672,1283,15253,1179], +[1,2349,24517], +[0,5918,24518,2523,34552], +[0,549,4856,9417,6503,36284,4874,1429,1431,1596,2899,36285,3232,36289,1894,36290,4232,4474,4490,31194], +"code c", +[2,24519,2885], +"JS code coverage", +[1,2349,24526], +"@metcoder95/https-pem", +"verage", +"JS coverage", +[0,24527,24528,2523,2402], +[0,2070,3348,1112,1673,1676,4484,4747,1398,1680,1759,16544,1130,24697,3951,36295], +[0,1414,3519,1429,2323,2675,2742,2899,3243,3259,1552,4193,1177,3260,4039,7800,2203,3230,4246,4474,25633,1894,36308,442,2507,20085,4196,91,4856,4874,2494,2990,5245,6503,6513,4892,2496,36307,25629,2510,2529,25634,27585,19441,1431,6512,8536,18710,4523,36303,4232,28290,1942,28033,36305,9417,13418], +[1,2349,24530], +[0,0,24531,24532,2531], +[0,1414,3242,1429,1687,2070,2931,2899,4484,4707,36007,1177,20380,668,2203,1457,3183,24156,442,3527,3541,91,4856,17577,6503,26584,2858,692,7892,2075,36315,36316,4523,36318,4232,1964,36323,1012,13418,27909,12123,5551,36326,36331], +[0,6869,7296,4643,1351,5284], +[1,2349,24534], +[0,24535,7592,24538,2540], +[0,1012,1011,1009,12145], +"js-calendar", +"v-click-outside-x", +[0,6892,5286,5284,91,57,5341,1177,6741,6939], +[2,1165,2091], +"5-property-mutators", +[2,24229,24540], +[2,1536,4408], +"vue-h", +"tml-loader", +[2,24543,24544], +[1,2349,24547], +[0,24548,24549,24550,2402], +[0,36342,18420], +[0,10949,6503,4874,36345,1567,36348,3188,2899,3696,4487,91,4526], +[0,6869], +[1,2349,24552], +[0,24553,24554,24555,34552], +[0,36356,36358,1759,16837,695,3025,3561,3616,16840,3638,16841,25162,2278,4228,4480,4333], +[0,36361,5087,19799,7889,4874,36362,36364,19802,1009,1011,1367,1177,1895,2675,1192,33412,2990,36366,3640,3672,1894,36367,4468,91], +[0,1623,4329,2278,695,4333,5260,1932,3561,91], +[1,2349,24557], +[0,24558,24565,24567,4194], +[0,23433,1362,1437,1486,1513,35446,25879,32086,3077,3183,36374,36375,4562,4720,1695], +"character-", +[2,24559,57], +"inople", +[2,14180,24561], +[3,10755,13], +[2,8535,591], +[0,1705,3297,4039,4474,4487,36377,91], +"void-elements", +[0,4532,91,23076,6432,3383,10057,5490], +[3,13889,13], +"ddleware", +[2,24568,24569], +"code-mirror", +[1,2349,24573], +[0,24578,24579,24589,4194], +"github-basic", +"highlight-", +[2,24575,1505], +"inconsolata", +[0,1525,4227], +[0,1082,2899,4135], +"-code-mirror", +[2,2437,24580], +"jade-", +"highlighter", +[2,24582,24583], +[3,10755,14], +"cdata", +[2,24585,24586], +[3,24587,15], +[0,2280,4533,4535,3178,2632,5284,5286,1925,5194,6598,7075,6778,7056,7192,1149,7003], +"offee-script", +[2,24588,24590], +[2,24585,695], +[2,24585,3127], +[2,24585,4333], +"verbatim", +[2,24585,24595], +[1,2349,24603], +"less-file", +"lsr", +[2,23151,705], +"stop", +"twbs", +[0,0,24604,24605,2457], +[0,1082,4135], +[0,200,15215,23634,24280,5286,3595,1925,5284,676,36390,2262,14137,2632,3178,6707,6708,4405,23635,1644,57,23637,2280], +[1,2349,24608], +"filelist", +[0,24609,24611,24612,2488], +[0,9448,2102,2755,4121,4143,4227,4535,4695,24777], +"rake", +[0,48,53,87,192,5467,19401,16405,1193,19403,1610,1700,1701,1177,1895,1938,2675,1192,2794,2990,3150,3400,1894,4257,4072,2924], +[0,2280,4535,4533,2924,1464], +[1,2349,24614], +[0,24615,24616,24618,34552], +[0,36402], +[0,2899,1177,1362,2759,1954,1938,1958,1903,1970], +"video-worker", +[0,3778,1179,7818,6953], +[3,1198,14], +"nnotate-pure-calls", +[2,24619,24620], +[3,19449,20], +"nk", +[2,24622,24623], +[2,16819,2143], +"-nk", +[2,7628,24626], +[1,2349,24629], +[0,24630,0,24632,2540], +[0,97,4880,4883,36409,36411,36413,36415,36416,36420,36422,36423,1015,36424,36425,36427,36429,36430,36432,36433,36435,36437,36439,36442,36444,36445,36447,36448,36451,36453,36454,1018,1021,36455,36457,36458,36459,36461,36463,36466,36467,12265,1023,36468,36471,36473,36476,36477,36478,36480,36483,36485,36487,36489,36490,36491,36492,36493,36495,36497,36499,36502,36503,36504,36506,36509], +"parallax", +[0,4964,4539,12245,12246,89,5128,4627,4963,181,1623,12247,12248,5130,6400,4967], +"youtube", +"vimeo", +[1,2349,24636], +[0,24637,24638,8044,2402], +[0,2070,2685,1209,4135,4727], +[0,2272,3105,2899,3381,4170], +[1,2349,24640], +[0,0,24641,2523,2402], +[0,8862,811,816,10817,4874,1317,1894,4042,4484,91,1984], +[1,2349,24643], +[0,0,24644,24646,34552], +[0,11976,107,34715,1437,12607,668,2205,2553,3105,36526,3400,36528,3714,7917,1984], +"css-url-embed", +[0,1936,1283,2574], +[1,2349,24649], +"@gerrit0/mini-shiki", +[0,24650,24654,2523,2531], +[0,8862,811,8850,816,6373,10895,36534,1556,16230,668,28795,36538,2807,3090,36536,3189,3510,15450,3714,4042,4057,15451,27921,36537], +[2,2767,12608], +[2,2767,8751], +"walkdir", +[0,5757,4874,7677,19336,1446,1177,1905,1894,91,1984], +[1,2349,24656], +[0,0,24657,24658,2540], +[0,3421,2070,1734,2675,2297,2907,1177,4042,4072,1597,1596,2908,17232,5561,36544,1938,2915], +[0,614,6564,36,5576,1388], +[1,2349,24660], +[0,24661,24662,24663,2540], +[0,4243,23462], +[0,1389,36552,1177,2759,2899,3202,4068,31136,4545], +[0,4545,1871], +[1,2349,24667], +"cssfontparser", +"moo-color", +[0,0,24669,24670,2531], +[2,1199,15525], +[0,20870,36559,24523,826,4874,1079,28400,1414,1610,36560,668,1177,2064,2675,1192,31808,29197,3313,2658,4481,91,4729], +[0,1612,27,2671,1862,705,7085,7289,4731,7102], +[1,2349,24672], +[0,24673,24674,24675,2540], +[0,9315,31265,23289,2051,2745,36568,12449], +[0,36571,12396,9363,4874,1414,1894,3985,3998,4481,4505,91,1906], +[0,6892,7234,1563,25154,1644,3729,3958,3984,36573,4141,1646,5341,353,1633,4549], +[1,2349,24677], +[0,24678,8176,24679,2540], +[0,36578], +[0,17023,3778,6988,16114,8623,36580,4552,5401,11512], +[1,2349,24681], +[0,24682,24683,24684,2531], +[0,9315,18072,12447], +[0,9363,4874,1414,3137,27008,27010,1894,3985,3998,4481,4505,91,1906], +[0,23266,36587,614,6435,3984,36573,3958,26564,2587,36588,36589,3273,1351,1783,1936,6523,1633,6892,202,12414,4647], +[1,2349,24686], +[0,0,16547,24687,2531], +[0,35670,27280,18132,4558,3403,4571,7204,4569,4166,16159], +"@jest/e", +"nvironment", +[2,24688,24689], +[1,2349,24692], +[0,24695,0,24696,4194], +"fake-timers", +[2,552,24693], +[0,17180,2155,36602,36604,20508,3923], +[0,2056,4560,15008,36606,12666,3101,7682], +"sql-highlight", +[1,2349,24699], +[0,24700,24701,24702,2776], +[0,36612,1371,1437,36611,4135,20044,1543,16184,2960,2744], +[0,1906,1166,24491,4294,1470,36615], +[0,3378,3076,29096,22005,3329,4354,16790,200,1237,3383,15525], +[1,2349,24704], +[0,0,0,24705,2540], +[0,12831,1002,36621,36622,36623,36626,36628,36630,36632,36637,36639,36641,36642,36643,36646,36649,36650,36653], +[1,2349,24707], +[0,24708,24709,24710,2402], +[0,3763,3757], +[0,1158,3421,4770,1082,2899,1177,13614], +[0,7119,1002,25658], +[1,2349,24714], +"-escapes", +[2,11948,24712], +[0,0,24716,24718,2531], +"matchers", +[0,1566,2899,4170], +"extended", +[0,1002,4565], +[2,38074,1177], +[1,2349,24721], +[0,24722,24735,13543,2402], +[0,3008,3173,4121], +"@pmmmwh/react-refresh-webpack-plugin", +"cape-html", +[2,5600,24724], +"ump.js", +[2,5086,24726], +"ndomcolor", +[2,12178,24728], +"eslint-w", +[2,2546,4406], +[2,24730,24731], +"jump.js", +"randomcolor", +[0,48,53,87,192,5467,19401,16405,1193,1610,1700,1701,1177,1895,1938,2092,2675,1192,2990,3144,21016,3400,1894,4257,2924], +[1,2349,24740], +"recharts", +[2,30495,674], +"web-vitals", +[0,24741,24742,24743,2531], +[0,15560,23783], +[0,1148,1389,1414,2899,3697,20010,20012,4535], +[0,7134,57,12831,1002,1644,3766,1871,3767,1646], +[1,2349,24745], +[0,24747,24748,24749,2488], +"libxmljs2", +[0,2139,36681,3173,3763,4507,4548,36680], +[0,5517,30494,36688,20224,36694,36687,7746,4874,36685,11305,36691,7752,29891,23247,7677,1410,1610,2685,33479,30889,2658,7798,28531,4393,4483,36684,91,1984], +[0,4568,27,36696,7085,7289,705,2671,4548,1612], +[1,2349,24751], +[0,24752,24755,24756,2540], +[0,25493], +"plugnplay", +"pnp", +[0,3505], +[0,4569,4571,35668,25493,4014,7204,6857,3403,1263,6437,6639,6436,36706], +[1,2349,24758], +[0,24760,24761,24763,34552], +[2,814,13987], +[0,3084,4449], +[0,1148,2899,3697,705,4135,36712], +"@vercel/h3", +[0,4575,1388,36715,888,1644,57,36716,36717,36718,36719,4569,36720,4576,15525], +[1,2349,24765], +[0,0,24766,24767,2540], +[0,1596,2759,14529,3774], +[0,8426,9254,3656,4577], +[1,2349,24769], +[0,24770,24771,24772,2531], +[0,2713,17395,25700,36732,17416], +[0,1090,1593,36736,3435,3438,4092,4100,4389], +[0,614], +[1,2349,24774], +[0,0,9541,24772,4194], +[1,2349,24776], +[0,0,24784,24790,2540], +"worker-farm", +"leak-detector", +[2,2769,24778], +[3,20371,12], +[2,24780,14922], +"@aneuhold/be-ts-lib", +"@vercel/koa", +[0,68,192,5467,442,6375,1525,1177,1895,1955,2203,2675,1192,2990,29197,3400,1894,23901,27302,4257,91,4523], +"@vercel/hono", +"@jimp/diff", +"@jimp/", +[2,24787,9711], +"@jimp/types", +[0,3348,6926,6668,36760], +"@jimp/t", +"est-utils", +[2,24791,24792], +"@adonisjs/ace", +[2,12327,10809], +[3,475,10], +[2,24801,8915], +"manipulation", +[2,12327,24798], +"resize", +[3,24794,11], +[2,24796,24815], +[1,2349,24804], +[0,24814,24817,24820,2402], +[3,1603,9], +[2,24805,3751], +[2,10880,1283], +[3,5617,14], +"eter", +"-decorator", +[2,24809,24810], +[2,11958,24811], +[2,24808,24812], +[0,20573,1687,2929,11481], +"bodyparser", +[2,24825,686], +[0,36767,1999,29283,34078], +[2,29401,166], +[2,13055,25721], +[0,1145,36769,8791,8745,1973], +" editor", +[2,6105,24821], +"wysiwyg ", +[1,2349,24834], +[3,475,12], +"html editor", +[2,24823,24826], +[2,24796,7141], +"rich editor", +[2,6106,24821], +"editable", +[2,1563,24831], +"vanillajs", +[0,0,24835,24837,2531], +[0,4384,2272], +"@adonisjs/env", +[0,1002,7020,4354,16790,13017], +[1,2349,24839], +[0,24840,24844,24845,2531], +[0,17058,36781,7076,25814], +[2,24846,24847], +"wysisyg", +"rte", +[0,17584,1429,15990,1527,1652,2675,2759,3188,2899,21477,4039,4131,4193], +[0,36785,1528,6458,3358,16094,13729], +[3,24828,11], +"vents", +"nanotimer", +"temporal", +[3,1387,9], +[1,2349,24865], +"erialport", +[2,24850,24852], +"firmata", +[2,24796,24858], +"beautifier", +[2,2294,24856], +"fold", +"0A02", +"0A21", +"16x2 LCD", +"20x4 LCD", +"2D120X", +"2Y0A02", +[0,0,24866,24870,4194], +[0,9516,9515], +"2Y0A21", +"74HC595", +"ADXL335", +[0,3378,3383,1460,7020], +[2,24796,3428], +"ADXL345", +"ALS-PT19", +"ALSPT19", +"ANALOG", +"arduino", +"Ardumoto", +"AT42QT1070", +"BLINKM", +"BMP180", +"Continuous Rotation", +"DEFAULT", +"Diffused LED", +"DS18B20", +"Edison Arduino Block", +"Edison ", +"GPIO Block", +[2,24886,24887], +"I2C Block", +[2,24886,24889], +"PWM Block", +[2,24886,24891], +"edison", +"ESPLORA", +"EV3", +"galileo-io", +"galileo", +"GP2D120XJ00F", +"GP2Y0A02YK0F", +[2,24925,24926], +[1,2349,24903], +"GP2Y0A21YK", +[0,0,24911,24939,2540], +"GP2Y0A41SK0F", +"GY-521", +"GY521", +"HD44780", +"High Torque", +"Hitec HS-35HD", +"Hitec HS-", +[0,48,53,87,94,1178,1198,1177,1881,1938,2899,3400,3421,4039,4042,4045,28038,4535], +"Hitec HS-422", +[3,24912,11], +"5BB", +[2,24913,24914], +"625MG", +[2,24910,24916], +"Hitec HS-6", +"46WP", +[2,24918,24919], +"755HB", +[2,24910,24921], +"805BB", +[2,24910,24923], +[3,24871,11], +"ealth", +"Hitec HS-85MG", +"HMC5883L", +"HMC6352", +"Hobby Motor", +"HRLV-MaxSonar-EZ0", +"HT16K33", +"HTU21D", +"i2c", +"Infrared Proximity Sensor", +"Infrared ", +"Sensor", +[2,24936,24937], +[0,1155,7020,2649,20215,2574,36796,36798,1145], +"intel edison", +[1,2349,24957], +"intel galileo", +"ISL29125", +"JHD1313M1", +"Joystick", +"LCD1602", +"LCD2004", +"LCM1602", +"LED", +"LIDAR-Lite v2", +"Ludus Protoshield Wireless", +[3,24951,17], +"LV-MaxSonar-EZ0", +[3,24953,14], +[2,24954,1278], +"MCP23008", +[0,24965,24971,24982,2457], +[2,24925,9257], +"MCP23017", +"MCP9808", +"Metal Gear", +"MJKDZ", +"MMA7361", +[2,24796,2942], +[0,36805,36809,36806], +"MMA7660", +"MMA8462Q", +"MPL115A2", +"MPL3115A2", +"MPR121", +[0,4874,11016,13061,16480,36812,11018,1639,36814,2832,91,1983,1984,36815,188,4639,36820,36821,36816,36817], +"MPR121QR2", +"MPU-6050", +"MPU6050", +"MUXSHIELD2", +"NXT", +"OA41SK", +"PARALLEL", +"PCA9685", +"pcduino", +"PCF8574", +[0,181,188,8588,5131,4967,4627,4963], +"PCF8574A", +[2,24796,32276], +"PCF8574AT", +"PCF8574T", +"@paralleldrive/cuid2", +"PCF8575", +"@poppinss/colors", +[1,2349,25013], +"PCF8591", +"photon", +"PIR Motion Sensor", +"QTOUCH", +"raspberry pi", +"raspberry", +"raspberrypi", +[2,24999,25005], +"@poppinss/", +"raspi-io", +"RedBoard", +"RGB LED", +"robotics", +"rpi", +"dumper", +"Servo", +"Shift Register 8-Bit SN74HC595", +[3,25007,14], +"SI7020", +"spark", +[2,24999,25017], +"spark core", +[0,0,25035,25036,2531], +"spark-io", +"SparkFun Essential Sensor Kit", +"SparkFun ", +"macroable", +"Sensor Kit", +[2,25016,25018], +"Speed controller", +"Temperature", +"tessel 2", +"Thumb Joystick", +"TINKERKIT", +"TMP36", +"TSL2561", +"Ultrasonic Range Finder", +"usb", +"VKEY", +"Weather Shield Arduino", +[3,25030,15], +"Photon", +[2,25031,25032], +[2,24999,594], +[0,2899,1177,2759,1317,4342,1311,1954,1938,1958,1903,1948,1970], +[0,27,10376,4590], +[1,2349,25041], +"@hapi/formula", +"@hapi/pinpoint", +"@hapi/tlds", +[0,25043,25044,2523,2540], +[2,6473,3020], +[0,4593], +[0,4384,2276], +[1,2349,25046], +[0,25048,25050,2523,34552], +"youch", +[0,12105,5303,668,1457,2139,36838,24762,36840,24783,20921,30162,24785,36841,36842,36843,24818,28111,29471,36845,24738,28441,36848,30929,36850,36852,31275,36855,36859], +"youch-terminal", +[0,3242,1091,1138,1758,1999,2714,3467,4494,3445,1983,1413,1437,1676,2020,3144,2658,17913,25671,4707,1438,1759,2022,2754,4039,4135,4238,4391,1984,1458,1503,2026,2105,3203,4474,1668,2151,2182,3761,3784,33145,842,24156,11305,36861,26453,29133,3181,3547,4459,29105,31142,1109,33200,1483,2794,3173,3310,4294,91,5087,4874,33917,1154,1869,36863,36864,36867,5364,5245,6501,27066,26584,1107,1151,36868,36869,36871,5254,24358,35563,13834,5071,31008,36872,6541,36873,36874,25892,36875,8997,4864,28137,2069,36877,3386,16831,36878,34118,36879,9129,12461,27959,36880,7746,5542,30493,33761,36882,31071,23843,24725,34248,36885,11907,36887,36889,15887,36890,36892,5328,36895,36897,36899,29125,36901,36906,36909,36911,36915,36917,36918,36920,36922], +[1,2349,25052], +[0,25056,0,25057,2540], +[2,24801,25055], +"recoil", +"ssembler", +[0,36927,1147,34631], +[0,1851,2656,15204,30960,31482,5317], +[2,25059,25082], +"@adonis", +"gzip-js", +[1,2349,25062], +[0,0,25064,2523,2540], +"commitplease", +[0,2899,2759,4342], +[1,2349,25066], +[0,0,25068,25078,2540], +"grunt-git", +[0,53,87,192,5467,5583,1208,1429,1443,1503,1597,16656,1637,1701,1177,1881,1938,2675,2297,2878,2881,6385,2900,2904,2910,2990,2899,3400,3561,3566,16658,3613,3672,16578,3758,4042,4320,4323,4328,4535], +"-authors", +[2,25067,25069], +"-webkit", +[2,3541,25071], +"mpare-size", +[2,21927,25073], +[3,10727,15], +[2,25075,3766], +"karma-j", +[0,158,11328,4596,36941,1936,1623,5284,6400,5122], +[2,26505,6579], +[1,2349,25081], +[0,25084,25087,25093,2531], +[3,835,16,7], +[2,25085,25086], +[0,36951,1496,4002,36950], +[3,475,8], +[3,24165,17,8], +[0,3421,2899,1177,2022,35299,3923,1889,1954], +"grunt-html", +"owercopy", +[2,2237,25089], +"-local", +[2,14336,25091], +[0,4607,17462,2090,7204,4262,3403], +"prototyping", +[1,2349,25096], +[0,25097,25100,25101,2540], +[0,1329,4431], +[2,24796,2190], +"@japa/assert", +[0,4389,4603], +[0,4597,17461,6270,1398,3101], +[1,2349,25105], +"@japa/expect-type", +"@japa/file-system", +[0,25107,25111,25112,2457], +"config-chain", +[0,36965,21539,2215,2685,36966,36967,3369,36968,36971,35299,36972,36975,4597,36976], +"@japa/runner", +"code-quality", +"@japa/snapshot", +[0,1177,1889,2022,2899,3421,3923,4039,4193], +[0,2323,36981,4597,2090,6771,2150,7046], +[1,2349,25116], +[2,25115,15244], +[3,7895,14], +[0,25117,25120,25123,2488], +[0,4597,4431], +[2,25119,25121], +[3,10844,11], +[0,2494,4389,4600], +"-console", +"argon2", +[0,4597,2323,17461,24456,3101,1871,2585,128], +[1,2349,25132], +"knifecycle", +"yerror", +"edge.js", +"@mer", +"maid-js/mermaid-cli", +[2,25128,25129], +"mermaid", +[0,9663,0,25133,2540], +[0,4597,4070,22850,2323], +[1,2349,25136], +"architecture", +[0,25139,25149,25150,2531], +[2,25138,25151], +"ts-node-", +[0,36996,1851,36997,2202,24462,19094,36998,37000], +"-to-glob", +[2,16774,25140], +"@jscpd/html-reporter", +"@jscpd/", +[2,25143,139], +"-sarif-reporter", +[2,2824,25145], +"@jscpd/core", +[2,25143,207], +[0,1389,2759,21526,3459,37002,30164,4387,4389,4770], +[0,4607,965,23361,37004,1687,7163,1388], +"maintained", +[1,2349,25153], +[0,25166,25171,25173,34552], +"cst", +"adonisjs", +"jscs-jsdoc", +"jscs-", +"wikimedia", +[2,10832,25158], +[2,25157,25159], +"rved-words", +[2,4020,25161], +"to-double-quotes", +"to-single-quotes", +"vow-fs", +[0,20378,4042,668,3561,3530,27921], +"7.0.0", +[2,5857,25167], +[2,8649,22785], +"unit-coverage", +[0,4729,1415,27438,1594,984,3189,30023,3445,2278,4200,3510,1759,11480,3266,3493,4072,1544,28119,1457,28865,4955,37012,34928,3527,1615,1869,31308,16860,3090,58,9743,1763,2007,21688,37013,3613,37014,37015,24759,30787,37017,24725,1573,10895,3616,29444,8862,31292,28465,4060,811,28572,18584,5180,28575,16808], +"style guide", +[0,4967,5130,11498,5331,37019,1983], +[1,2349,25175], +[0,25176,25180,25182,2540], +[0,25375,2071,2151,37024,26479], +"@jsdoc/salty", +"catharsis", +[2,20398,57], +[0,6494,4864,4874,2026,4493,91,1983], +"requizzle", +[0,1983,5592,37028,37029,37030,37032,2026,37034,36,37036,7433,37031,37038,1932,8172,4083,5995,37039,37040], +[2,25184,25186], +"@aneuhold/", +[1,2349,25187], +"core-ts-api-lib", +[0,25196,25197,25198,2540], +"current", +[2,1469,4479], +[2,25188,25189], +"object-to-", +"spawn-args", +[2,25191,25192], +[2,25195,1095], +[3,25183,18], +[0,188,1983,9348,8114,37052,7797,36805,10984,6371,37047,37046,24097,37049,7639,11016,37051,9312,25447], +[0,3467,4200,1676,2020,3478,23802,3266,4039,4042,4135,1984,668,3537,3742,7799,19571,13151,28519,1457,2151,2182,3183,1894,3757,3084,3170,3527,27921,91,4874,1615,2226,2990,3105,5245,8646,30795,8146,7812,3509,4864,7892,3067,37067,9245,8778,5946,3114,4057,37017,21122,3107,8850,34971,37061,37065,8862,37074,3112,15277,37062,6373,22823,811,3668,37059,7641,37070,37056,1567,816,37058,37069,37071], +[0,1983,188,4614], +[1,2349,25201], +"ool", +[0,25206,25207,25208,4194], +"master", +"config-master", +[2,25184,25205], +"main-scripts", +[0,30023,1983,3510,15452,26379,3530,4441,27921,37080,2024,37082,3090,37084,36874,26380,37085,37014,37087,37092,37093], +[0,4729,1415,3171,37095,2832,26385,3742,24324,2559,37096,1084,4874,13204,1006,37013,7812,37097,20374,37100,13471,826,8806,5180,6515,8809], +[0,1983,1984,1973,1192], +"jsr", +[1,2349,25214], +"data-urls", +"decimal.js", +"saxes", +[0,25218,25222,25223,34552], +"symbol-tree", +"w3c-xmlserializer", +"whatwg-url", +[0,1437,1209,2720,3183,4726,2708,3077,4294,1257,37108], +[2,25261,25262], +"sugar-free", +[2,3192,25220], +[0,1906,2323,1172,2899,3220,4170,37110,705,1362,1175,2338,2384,37115,37117,2357,37113,1267], +[0,5592,200,32276,4166,8786,5130,1896,13527,1523,1525,35539,3741,2720], +"webidl2js", +[1,2349,25226], +[0,25227,0,25229,2540], +[0,1687,37123,2070], +[2,25239,25240], +[0,5472,4386,1973,37125], +"browser-re", +[2,25230,5460], +"cssom", +"nwmatcher", +[1,2349,25236], +"selenium-s", +[0,25241,25242,25246,34552], +"tandalone", +[2,25235,25237], +[3,8647,12], +"li", +[0,4449,2070,3171,3917,22990,1437,2975,4753,37130,4135,4734,1448,4566,1525,3181,3105,37131,2613,37132,36323], +[0,2675,2899,4474,1894,6520,91,4865,27098,4874,15743,37139,3400,6503,20290,3720,5254,28189,37135,192,37137,9129,4131,7639,4232,12458,5467], +"13.0.0", +[2,5857,25243], +"@trapezedev/project", +[0,29641,4617,7188], +[1,2349,25248], +[0,0,2684,2523,2540], +[1,2349,25258], +[2,5051,25257], +"results-interpreter", +"5.2.0", +[2,5857,25252], +"unicode-1", +"1.0.0", +[2,25254,25255], +"lice-ansi", +[0,25260,25263,2523,2540], +"splash screen", +[0,1104,1496,2012,2061,2070,2685,2741,4227,91,4597,4734,4747], +[3,225,10], +"5/blanditiis-numquam-expedita-neque", +[0,22909,37149,22821,4865,37152,9129,6503,4874,28198,22900,18438,4891,28189,4892,1009,1011,1177,2899,4039], +"stylish", +[1,2349,25267], +[2,25303,25304], +[0,0,25268,2523,2488], +[0,2899,3188,2924,91,4874,4677,6503,37157,1584,603], +"deeks", +[1,2349,25271], +[0,25273,0,25274,34552], +"doc-path", +[0,36805,37163,23423,17494,5337], +[0,188], +[1,2349,25278], +"json2csv", +"csv2json", +[0,0,25281,25282,2531], +"csv-2-json", +[3,25219,12], +[0,53,61,71,4851,87,4856,6503,4874,1011,1191,1195,18571,1429,1628,1177,37170,2899,3951,4039,4042,4045,4069,4421,4469,91,4533,188,4634,4645,19469,4646,2924,4677], +[0,188,1227,1172,91], +[1,2349,25286], +[2,25280,25285,25288], +[3,780,9], +[0,25287,25289,2523,2488], +[0,1676,1994,1996,2000,19186,4135], +"aut-officiis-quae", +[0,53,68,5611,37178,15273,19181,442,5245,1006,4874,5254,1009,1011,7677,23203,1177,19492,1945,1953,19623,1955,1982,17310,1894,4474,1531,91,1983,1984], +[1,2349,25291], +[0,0,25293,25295,2531], +"milliparsec", +[0,1397,1192,188], +"sort-on", +[0,188,6609,2999], +"@typ", +"icode/eslint-config", +[2,25296,25297], +[1,2349,25300], +[0,25301,0,25305,34552], +[0,37049,37190,24226,37192], +[1,2349,25317], +[3,25284,13], +"oloremque-voluptas-facere-nemo", +[0,2679,23932,37202,1932,188,6284], +[1,2349,25308], +[2,25280,25391], +[0,25309,25310,2523,2540], +[0,1437,2570,33215], +[0,53,87,37211,1006,32109,5087,13204,37213,37214,1195,37215,1567,1628,2092,2651,1192,2832,2990,37217,3144,3177,16581,11801,3618,1894,3754,37220,4227,4307,4333,4334,4337,4468,4469,91,4027,188,4633,2924,4677,4681,4689,19235], +[1,2349,25314], +"0.0.0", +[2,25254,25312], +[0,0,25315,25316,2540], +[0,5087,4874,1192,3951,4042,4468,91,188,4629], +[0,188,91,4636], +[0,25319,25320,2523,34552], +[1,2349,28298], +[0,5216,28126,37049,30206,1457,2856,37096,3090,3189,30230,3510,3530,15451,27921,29161,30959,4745], +[0,104,31940,8648,811,816,6373,10615,33179,37232,20374,29891,11016,17494,34157,5337,11018,25092,13393,1549,1759,37235,17850,2559,3294,37236,32977,4039,4042,4076,1531,4493,1983,188], +[1,2349,25322], +[0,25323,25324,2523,2488], +[0,2570,3008], +[0,1175,1193,1240,1567,1192], +[1,2349,25326], +[0,25327,0,25329,2540], +[0,37247,2591], +[2,2842,24077], +[0,188,4643], +[1,2349,25331], +[0,25332,25334,2523,4194], +[0,37049], +"meriyah", +[0,188,1192,1437,2020,21665,1177,4042,4135,2026,2924,1836,2151,1610,3758,4614,1193,1628,91,4634,53,4874,1195,37253,4640,87,17494,3957,15134,4073,4261,6373,37170,4679,4684,811,1567,816], +[1,2349,25337], +"jsonparse", +[0,25338,0,25339,2531], +[0,37258], +[0,614,888,37260,2150,4647,37261], +[1,2349,25341], +[0,25342,25348,2523,2540], +[0,9129,18704,20960,3181], +"jws", +"lodash.i", +"ncludes", +[2,25344,25345], +[2,3045,19366], +[0,5087,4874,2070,1192,3144,4039,4468,91], +"integer", +[2,3045,25349], +"lodash.isn", +"umber", +[2,25351,25352], +[1,2349,25356], +"lodash.once", +[0,16419,25357,25358,2540], +[0,192,5467,1389,1527,1652,2675,1192,4535], +[0,4649,3497,89,2731], +[1,2349,25360], +[0,25367,0,25368,4194], +[2,25362,25364], +[3,32971,13], +"@jspm/generator", +"phases", +"fu/eslint-config", +[2,13179,25365], +[0,37277,3183], +[0,614,6435,2150,1586], +[1,2349,25371], +"webdav", +[0,25373,25374,25378,34552], +"states", +[0,15642,1389,1457,15016,37284,4431,1695], +[0,1377,3188,4237,4389,4535,37286], +"dotenv-local", +[2,28322,364], +"lie", +[0,1389,25429,2282,6374,6147,1388], +"jszip-utils", +[3,21510,13], +[1,2349,25384], +"versionify", +[2,25380,25382], +[0,25385,12536,25387,2540], +[0,33304,26786,1149,37294,33313,37297,33328,33329,37298,37300], +"deflate", +[0,33359,3469,3259,14873,1552,3230,37303,4651,4104,33365], +"inflate", +[1,2349,25390], +[0,25392,25393,25394,4194], +"quisquam-quod-ab-aut", +[0,1137,1149,1209,3188,3760,705,37308], +[0,37313,1429,1431,1512,18192,2026,2061,2323,37315,2384,2419,2463,2590,2659,34317,2759,2899,37316,3297,37317,4089,37320,37324,37325,4547,3348,4747], +[0,5472,13428,11132,13841,28522], +"@diahkomalasarinpm/odio-facilis-beatae", +[1,2349,25397], +[0,25398,25399,25400,2540], +[0,37331,37332,37334,37335,37336,37337,37339,37342,37344,37345,37347,37350,37352,37355,37358,37361,37363], +[0,37365,1192,1177,37366,9422,4468,1894,1317,91,5087,2787,5366,37368,1938,19956,1895,37371,1011,37374,1009], +[0,37376,17626,8172], +[1,2349,25402], +[0,25405,11743,25412,4194], +[3,1754,13], +"qjobs", +[0,37390,37393,1327,1394,37394,37397,37398,37401,37404,37408,4747], +"unit-reporter", +[2,25077,25406], +"cript-", +[2,25408,15473], +[2,2916,25409], +"timer-shim", +[0,4653,4990,200,37410,9420], +[1,2349,25414], +[0,25417,25418,2523,2457], +"spectacular", +"execution", +[0,19611,1006,8818,37424,37427,37429,1082,25361,1393,37433,1835,37014,1994,2018,20575,2215,9506,20465,3173,23175,4121,4388,4409,33215,4695], +[0,53,90,107,34765,25376,20577,8780,5087,7746,28919,4874,25422,37436,1195,37437,37438,1509,1593,1622,1628,1668,1856,4913,1177,20281,2092,2135,2203,37439,2629,2675,2759,1192,21124,2774,2777,2784,2794,2843,2856,695,2969,2990,1209,3021,3144,25333,3177,21016,640,3421,3446,20085,1894,3717,3754,23738,3786,89,3824,30570,3978,9340,3988,3992,3999,4039,12936,4183,4294,4307,4072,4426,4441,4452,4469,91,4549,4027,37440,37441,4677,37442,4746], +[1,2349,25420], +[0,25431,25433,25434,2402], +"os-shim", +[2,25423,25430], +"@types/x", +"karma-p", +"karma-plugin", +"reprocessor", +[2,25424,25426], +[3,14927,12], +[2,25428,25200], +"xhashjs", +[0,4729,4200,1082,3456,1675,1525,1084,3527,2628,1874,37449], +[2,25280,25435], +[0,1700,1429,2323,1192,3190,1177,2205,3698,1593,1637,3561,2924,2098,3758,1461,1628,2338,3191,4027,53,1436,4677,1165,1178,1195,3060,4307,97,3057,37457,3618,22651,87,37453,4681,90,1210,1959,37458,4409,37451,37454,83,71,5757], +[0,2924,6374,4674,5260,4202,24095,9816,33126,37460,16660], +"suscipit-assumenda-a-assumenda", +[2,2877,15473], +"browser-stack", +[2,25280,25442], +[1,2349,25440], +[0,25441,25444,25448,2402], +[0,1842,3932,1511,1525,2727,1615,2704,4689,37466,13077,29067,37449,37468], +"vitae-sequi-voluptas-a", +[2,25445,25446], +[0,37472], +[3,25438,13], +"oluptatibus-vero-magni-rerum", +[2,29825,29840], +[0,2924,200,4989,1237,6996,5122], +[1,2349,25450], +[0,25451,25452,25459,2488], +[0,3144,1511,3173,3440,3781,4121], +[0,2934,2611,1192,2020,2675,1622,1177,38,1544,1701,2026,2078,2203,2924,1894,1610,1699,4342,48,442,470,1193,91,53,4874,2092,2990,3400,2099,11485,6494,192,1953,27928,37480,4257,87,23531,7746,37482,1939,1942,1938,20281,1982,1895,1955,19344,5467], +"ibrik", +"ffee-preprocessor", +[2,23574,25454], +"karma-r", +"equirejs", +[2,25456,25457], +[0,2924,2663,5001], +"karma-re", +"porter", +[2,25460,25461], +[1,2349,25464], +[0,25465,25466,2523,2488], +[0,4729,3445,32876,34228,2026,33507,1457,9241,1511,11993,7798,1536,2215,4150,4121,37490,37491,37493,6494,37494,37499,37500,37503,2664,4679,1549,33189,37505], +[0,2611,1192,695,1082,2020,2675,37507,3144,1622,1177,3127,4039,1544,1593,2924,1894,3758,4342,48,1193,1628,2659,91,53,4874,2969,2990,3400,4677,1195,4307,4224,18052,4689,97,192,1953,3923,9252,27928,4257,87,23531,22102,4523,7806,8780,1939,1942,2651,12837,68,37508,37513,1938,20281,1895,2780,83,5467,13052], +[1,2349,25475], +"Safari", +" Tech Preview", +[2,25468,25469], +"TechPreview", +[2,25468,25471], +"IE", +"Chrome", +[0,25480,25482,25483,34552], +"Chrome Canary", +"Chrome ", +"Headless", +[2,25477,25478], +[0,4294,2626,37503], +"Chromium", +[0,3421,2899,4193,1177,2026,2924,1894,4342,1955,4679], +[0,2924,11498,6609,1237,37523,37525,2663,2026], +"Firefox", +"Opera", +[1,2349,25487], +[0,25488,25489,2523,34552], +[0,4388,4695], +[0,841,4874,4891,37531,7858,1584,1700,1177,37534,1915,2092,2675,2990,3150,3697,1894,37535,89,4307,4484,91,1984,2924,4689], +[2,25764,25765], +[1,2349,25494], +"chai-fs", +"os-homedir", +[0,25495,25496,25497,2531], +[0,2117,21520,5898], +[0,2675,4484,37542,2924,1894,91,37544,1006], +[0,2924,1698], +[1,2349,25499], +[0,0,25502,25503,2531], +"@asdfgertyjhnpm/a-unde-explicabo-eaque", +"firefox", +[0,1429,1177,1938,2899,3203,3275,2924], +[0,2924,13382,202,6374,11053], +[1,2349,25505], +[0,0,25506,25507,34552], +[0,5087,1177,20281,1192,1894,4227,33002,91,2924], +[0,2924,4227], +[1,2349,25509], +[0,25512,0,25515,2540], +[2,25511,25517], +[3,25500,16], +[0,2215,1615,4449,3524], +"adapter", +[2,2877,25513], +[0,12197,29726], +[1,2349,25518], +"nesciunt-molestias-reprehenderit-occaecati", +[0,25519,25520,25522,4194], +[0,1401,1676,1856,37568,34639,37569], +[0,1400,2323,2447,2839,2272,4389], +[3,25395,19], +[0,4699,14609,21302,37572,37573,6645,6761,20863,36,5576], +[1,2349,25524], +[0,25525,25526,25527,34552], +[0,37578,37579,37581,37585,37586,37587,37589,37592,37594,37595,37598,37600,1676,1869,37602,37603,37606,37609,37612,37613,37615,3171,3441,37617,3756,25990,37619,3781,25996,34383,37623,35299,37624,37628,37631,37633,37636,37637,37638], +[0,53,68,5712,87,37641,1090,37644,25992,37646,1290,37647,1398,37648,1618,3588,1177,1903,1938,1953,1958,2099,37650,3486,37652,3767,4092,4131,4151,15039,20496,4387,4389,4409,15046,2924,4677,37654], +[0,37656,37657,1764,37658,37659,37663,37665,22115,37666,37616,37667,15247,37668,4702], +[1,2349,25529], +[0,25530,25531,25532,2402], +[0,1326,3263], +[0,29569,4384], +[0,7734,37674,37675], +[1,2349,25534], +[0,25535,25536,2523,2531], +[0,2026,3368,4545], +[0,1506], +[1,2349,25538], +[0,0,25539,2523,2540], +[0,1429,2297,2899,1177,4042,1894,2878,2900,1159,3734,37688,2881,2889,2912,2895,13867,19910], +[1,2349,25541], +[0,0,25542,25543,34552], +[0,4652,2070,10679,4030,2856,37693,2272,3188,37694,3460,1317,26825,4535,1389,3736,37320], +[0,37696,37698,14833,1862,6567,14834,14835,4706,1149,14629,6804], +[3,2910,12], +[1,2349,25546], +[0,25547,6555,2523,2531], +[0,37703], +[1,2349,25549], +[0,0,25551,25552,2402], +"safari", +[0,13896,1776,2899,3220,37708,37709], +[0,6574,29179], +[1,2349,25554], +[0,25556,25559,25560,4194], +"global-agent", +[0,37715,13388,1149,2753,37716,37718,3923,18730,4252,20931,4715], +"al-agent", +[2,4865,25557], +[0,48,53,87,37721,4874,37722,1148,37724,1177,37725,1192,4039,4238,34395,4431,37727], +[0,4709,2942,6807,30124,21111,1409,3533,3079,2041,1781,3101], +[1,2349,25562], +[0,25563,25564,25565,34552], +[0,37735,3429,20931,4715], +[0,37739,37741,1429,1177,1954,2899,4039,7734], +[0,4709,37743,37744,37745], +[1,2349,25567], +[0,25568,25576,25577,2540], +[0,37716,3923,20931], +"karma-br", +"ief-reporter", +[2,25569,25570], +"sourcemap-", +[2,21536,8754], +[2,25572,25573], +[2,12612,25574], +[0,4874,1148,1173,1264,1693,1177,37721,2899,3421,4039,37727], +[0,4709,4714,37752], +[1,2349,25579], +[0,25580,25581,25582,2540], +[0,37758,2070,1209,37759,4431,37760], +[0,1429,2151,2759], +[0,1370,3383,6355,14510,1508,4796], +[1,2349,25584], +[0,0,16497,25585,2457], +[0,6940,37767,3924,37769,16580,37770,7295,2585,4718,4717,28734,4719], +[1,2349,25587], +[0,0,9270,25588,4194], +[0,4718,4719,5547,1671,6922], +[1,2349,25590], +[0,25593,25597,25598,2488], +[2,8652,2013], +"keydown", +[0,16781,3714,10761,4695,37780], +"keyup", +"metakey", +"keyname", +[0,4874,4891], +[0,37783,37784,2924,37786,20164,37788,37789,37790], +[1,2349,25600], +[0,25601,25602,25603,2540], +[0,1110,4290,4294], +[0,1166,1437,1596,6474,3421,4481,1906], +[0,4719,6940,4720,6980,7152,1111,592,1473,7208,1512,7009,7201,200,1871,6621,1867,6983,6616,7244,4166,4744,3073,6807,6876,2585], +[1,2349,25606], +"@keyv/serialize", +[0,25608,6555,25610,2776], +"keep", +[0,19187,4174], +"timekeeper", +[0,37808,29999], +"key-value", +[1,2349,25613], +[0,0,25614,25615,2540], +[0,1317,1401,1177,1895,1955,2203,2899,3421,1894,34639], +[0,7299,7172,6761,6729,7057,6145], +[1,2349,25617], +[0,25618,25619,25620,2488], +[0,6870,1362,1437,1448,1676,37818,2754,2757,3427,6530,37821,37823], +[0,1596,2759,2899,3202,16112,4039,4193,4255], +[0,5592,1448,37826,15514,6956,5122], +[1,2349,25622], +[0,25626,25630,25637,4194], +"escalade", +"pg-connection-string", +"tarn", +[0,2202,37833,37834,1695], +[3,5536,10], +[2,25627,4945], +[2,11836,4246], +[0,2133,3697,4387,4389], +"-in-order", +[2,1436,25631], +"oracledb", +"pg-query-stream", +"tedious", +"toxiproxy-node-client", +[0,4731,27,4738,5038,1389], +"postgres", +"cockroachdb", +[2,3766,9381], +[1,2349,25642], +[0,25643,25644,25645,2776], +[0,20689,37845,37846,4718,37844,37841,37843], +[0,18225,1082,2832,2899,4193,1177,37853,1330,1787,1525,91,4874,37852,37850,1937,17585,37856], +[0,28860,28861,3354,37858,37859,20707,1641,37860,37861,37862,26666,21604], +[1,2349,25647], +[0,25653,25654,25655,2540], +"smol-toml", +"summary", +[3,8555,11], +[2,25650,1851], +[2,4764,25651], +[0,4113], +[0,1175,1195,1264,28713,1387,37868,37869,35573,1503,1596,1610,1177,37870,2759,2765,1192,2774,7060,3363,3400,3725,91,37871,2282,2924], +[0,37873,6523,676,6671,1781,24586,37874,37875,37880,37882,20398,20400,4734,4735,353,8535,37883,22180,6270,37884,37885,37887,1644,57,7119], +[1,2349,25657], +[0,25659,25662,25665,4194], +"analyze", +[0,4113,4736], +"dead code", +"entropy", +[0,1596], +"maintenance", +"members", +[0,6523,1781], +[1,2349,25668], +"unreferenced", +[0,25670,15940,2523,2540], +"unresolved", +[0,2607,2812,37899], +"tldts", +[1,2349,25673], +[0,0,10764,25674,2540], +[0,6523,4736], +"lodash.sortby", +[1,2349,25680], +"explorer", +"opera", +"samsung-internet", +[0,0,25681,25683,2540], +[0,1192,4753,37908,1177,3363,37909,1894,2188,3400,1926,16638,1895,1955], +"uc-browser", +[0,12616,965,6523,57,5284,37911,37912], +[1,2349,25685], +[0,0,0,25686,2540], +[0,4731,6662], +"stream-co", +[2,25687,11532], +[2,25521,25692], +[1,2349,25691], +[0,25693,25694,25695,2540], +"praesentium-accusamus-maiores-autem", +[0,3157,1144,1177,2205,2203,1894,2185,4507,3170,1595,19595,3505,2191,1953,29490,1920,4523,25803,1958,1982,13789,1895,24166,32525,1955,7681,19344,1011,15290,22937,19492], +[0,3377,1166,2020,2675,1680,13786,2990,5601,192,15600,8778,3390,3708,5467,17312], +[0,13326,200,1906,19347,19350,19353,1501,19269,590,671,9654,2272,19270,1177,2649,19271,4255,15717,4354,16790,19273,18443,2446,2869,5284,91], +"delegates", +[1,2349,25698], +[0,0,25701,25702,2540], +"http-assert", +[2,17007,23905], +[0,10780,1854,37928,2899], +[0,4739,6523], +[1,2349,25704], +[0,25706,25708,25711,2402], +[3,21482,15], +[0,5663], +"gen-", +[0,48,53,37936,83,87,37937,1198,37940,37941,1389,1177,2765,2835,3421,37945], +"esm-wrapper", +[2,25707,25709], +[0,1108,6961,6607,3656], +[1,2349,25713], +[0,25714,25715,25719,2540], +[0,1525,7606], +[0,3421,1676,2899,1177,1596,4535,1389], +"-body", +[2,4860,25716], +"co-body", +[0,20215,4741,2574,36796,6847,1965,1867,10368,7131,1155,1936,14419,37953], +"-router", +"__router", +[1,2349,25724], +"urlencoded", +[0,0,25725,25726,2540], +[0,37958,1091,3539,4094,4733], +[0,37960,37963,37968,37971,37972,6649,37973,2218], +[1,2349,25729], +"copy-to", +[0,0,9270,25730,2402], +[0,2051,1698,14690,15767,3048,4552], +[1,2349,25733], +"bodyParser", +[0,0,25734,25735,34552], +[0,8648,4856,5245,37983,6494,37984,4865,13204,6503,4874,37987,4891,9241,1009,1011,1429,1610,1693,1177,1942,2026,28930,2070,2832,2899,3257,3339,3421,4230,4232,4469,91,4577,2924,4677,4729,37988], +[0,200,6876,7201,28770,4166,21000,592,37991,7009,6621,13005,35621,4744], +[1,2349,25737], +[0,0,25738,25739,4194], +[0,1192,4484,1177,4042,1894,442,1193,2064,91,53,5087,4874,2797,87,4523,5583,6373,1895,10817,37998,5889], +[0,6775,57,5374], +[1,2349,25741], +[0,25746,25747,25750,2402], +"humanize-", +[2,25742,6988], +"-counter", +[2,22255,25744], +[0,2070,1139], +[0,1317,15052,2768], +"koa-compress", +[3,2946,9], +[0,4745,1781,38007,38008], +[1,2349,25752], +[0,25753,25754,20198,2531], +[0,1495,25623,12929,4290,26574,4748], +[0,68,92,4856,6503,4874,1009,25912,1414,1429,1437,25796,1610,1615,1177,1955,2321,29551,2899,4039,91,4707,38017], +[1,2349,25756], +[0,0,25759,25760,2540], +"mounting", +"@drftgyhuji7npm/repellendus-eum-et-itaque", +[0,68,92,4856,6503,4874,1009,1011,1414,1429,1610,1177,2321,2899,3758,4039,4146,4261,91], +[0,7233,57,4747,1523,200,7119,5675,7058,7233], +[1,2349,25767], +[2,29234,32235,1524], +"@ladjs/env", +[3,25689,31], +"sint-dolorem", +"@enact/core", +[0,25768,25769,2523,2540], +[0,38035,1282,1413,1420,1437,25872,1525,38036,1676,19400,1687,2195,2714,2731,10911,2975,16450,3181,3188,3309,640,3434,28142,3917,38037,705,38040,4039,38041,4135,4296,4390,4393,4572,25898], +[0,1175,1178,1193,1195,14220,1255,1267,38044,38047,1268,1272,1291,1177,38050,18229,38052,1922,38055,1935,38058,1959,2126,2323,2338,2464,2479,2541,2544,1192,2843,3211,1241,2924], +[1,2349,25772], +"koa-send", +[0,0,0,25773,4194], +[0,4749,4752,6435,4166,3378,34652], +"sendfile", +"@envelop/core", +[1,2349,25777], +[0,25778,25779,25783,2457], +[0,13581,27999], +[0,1329], +"is-warlock", +[2,3341,25780], +"reds", +[0,4560,2056,3101,12666,2090], +[1,2349,25785], +[0,25787,25788,25795,2531], +"webOS", +[0,38073,38076,38077,38078,38080,1144,1437,1525,1676,2020,38082,2205,38083,20786,3021,38084,38086,4135,4207,4558,38088], +[0,5245,5139,4874,5254,24719,1414,1597,1177,38092,2151,1776,1894,3708,4039,4193,38093,4294,91,21328,21329], +"bossy", +[3,23453,15], +[2,25790,5592], +[2,9146,5592], +"find-rc", +"will-call", +[0,5001,3304,6147,4990,200,8632,4989,8623,1179,8635,1896], +"cpr", +"lab-event-reporter", +"@ionic/cli", +[1,2349,25800], +[0,25801,25805,25795,34552], +[0,5245,5139,38077,1437,1676,2020,2960,3021,38086,3183,27168,4135,4183,22776,4425,4507], +[2,29611,5457,1805], +[2,2102,17239], +[2,25806,553], +[0,9741,7892,20374,5254,6513,23452,7677,38073,24719,38078,38080,1597,1797,1177,1776,1894,3708,4193,91,1984,21328,4754,21329], +"@envelop/", +[1,2349,25808], +[0,0,8176,25811,2540], +[2,556,1098], +"md-to-pdf", +[0,4757,38108,27631,200,3741,2649,6847,8618,4938,38109,1644,38111], +[1,2349,25815], +"semver-", +"semver-regex", +[0,25817,25818,25820,2457], +"latest", +[0,3157,3445,1437,4761,1209,2089,25294,38117,38118,23878,38121,38122,1543,1615,38123,25555,9478,38080,15826,38126,38073,38127,27168,4562,38131,4754], +[0,1414,1906,3297,4193,38092,2203,1596,38133], +[2,25829,6811], +[0,13326,200,6400,5001,3304,6147,5122,4990,8632,2873,8635,1179,8623,1896,8310], +"autodoc", +"deft", +[2,2767,1149], +"race", +"race.js", +[2,4284,176], +[1,2349,25828], +[0,0,25830,25831,2540], +[3,24329,21], +[0,38139,1104,1166,1437,1474,1511,2929,27127,3527,4481,1906], +[0,1473,7208,1512,7009,7201,200,1871,1111,590,592,6621,6983,4166,4744,3073,6807,6876,2585], +[1,2349,25834], +[2,556,25877], +[0,25839,3311,25845,34552], +"@mapbox/", +"cript-tags", +[2,1967,25836], +[2,25835,25837], +[0,1525,2720], +"bundlemon", +[3,16694,16], +"urner", +[2,25841,25842], +"git-rev-sync", +[0,4760,5592,36,5995], +"happen", +[1,2349,25856], +"karma-expect", +[3,2066,9], +"leafdoc", +"prosthetic-hand", +"git-version", +[2,4049,25852], +"ontent-classifier", +"gis", +[0,25859,25860,25861,2540], +[2,8,25858], +[3,1008,21,5], +[0,3157,1437,1471,4726,1109,4294,1110,4290,38150], +[0,1906,2899], +[0,13326,200,8635,4758,38152,38153,5403,6458,1111], +[2,25857,2324], +[2,25867,6], +[1,2349,25865], +[0,15934,25869,25870,34552], +"numbers", +[3,19535,16], +"ng-packagr", +[0,4170,4135,2899], +[0,38160,4762,38161,38162,38163,970,10770,11154], +"aproba", +"cmd-shim", +"p-reduce", +"byte-size", +"write-pkg", +[1,2349,25883], +"examples", +"wide-align", +"has-unicode", +"p-waterfall", +[2,2977,7318], +"@npmtea2024/quasi-nisi-doloremque-fugit", +[0,0,0,25889,2457], +"p-map-series", +"blocking", +"set-blocking", +"@lerna/create", +[2,2977,20001], +[0,91,2844,7020,998,6591], +[1,2349,25895], +"read-cmd-shim", +[2,3614,16830], +[2,21772,18709], +"strong-", +[0,25896,25905,25906,34552], +[0,1170,2026,3509,4763], +[3,4588,21], +[2,25897,4059], +"-bump", +[2,4945,25899], +[2,13984,25900], +"-rest", +[2,24089,25902], +[2,9768,25903], +[0,7804,4856,9417,7806,38176,6494,38177,6503,38179,1364,1429,1431,1527,1536,1575,1652,1177,38182,1161,2899,3237,3378,1894,4257,4474,91], +[0,4763,2026,5592,8800,38185,5995], +[1,2349,25908], +[0,25909,25914,25915,2402], +[0,1282,1362,1676,34226,2685,2832,1209,3171,3242,705,4454,4729], +[2,1583,20499], +"errno", +[2,15086,1179], +"jest-codemods", +[0,1173,1178,1255,1264,1364,1575,1700,1177,2026,2323,2338,2384,29396,2472,2510,2541,2899,3237,3253,6596,4019], +[0,1973,6533,5472,21972,4386,10659,37125,29727,1388,1936,12075,965,1623,5284,11857,6662,26196,38192], +[1,2349,25918], +"benny", +[0,0,25932,2523,2540], +"less-port", +[2,10784,25919], +"emplate-tag", +[2,2642,25921], +"jit-grunt", +[3,1165,10], +[2,21897,25924], +"mocha-te", +"amcity-reporter", +[2,25926,25927], +"phin", +"read-glob", +"@ptkhanh94npm/iusto-libero-aperiam", +[0,28069,30286,38197,23689,4874,32440,1362,26739,2780,2784,1192,2899,3210,2765,4232,2766,24652,4094,4376,4484,1984], +[1,2349,25934], +[0,25935,25937,25938,4194], +[0,38202,6870,1389,21146,38204,1512,1525,1536,1573,1676,2026,38207,12783,38209,12785,2590,2600,2659,12788,38210,12789,1209,3456,3470,38212,4165,38213,17011,4339,38215,20496,4650,4652,1695,4746,38217], +[2,21897,2070], +[0,1087,38221,38222,2899,3524,4389,4431,38224], +[0,4770,5472,1388,2907,2899,12826], +[1,2349,25940], +[0,25941,6745,25945,2531], +[0,666,672,677,9688,1710,4135,4459,4484], +"abstract-l", +"evel", +[2,25942,25943], +[0,9621,9622,8174,9623,9624,9625,9626,9627,9628,9648,9659], +"browser-level", +"-level", +[2,128,25947], +[1,2349,25952], +"@voxpelli/tsconfig", +[2,12774,3541], +[0,25953,6745,6785,2776], +[0,1437,4484,677,4135,2203,666,17310,1012,9688,19254,12123], +"leveldb", +[1,2349,25956], +[0,25957,6745,25958,2540], +[0,4484,677,4135,2798,3181,666,3527,8734,2797,4748,8752,24759,8762,2686,9688], +[0,9621,9622,8174,9623,9624,9625,9626,38247,9628,9659], +[2,25944,2971], +"napi-macros", +[1,2349,25962], +[0,25973,25975,25976,2488], +"async-each", +"du", +"cat-iterator", +[2,1332,25965], +[2,2970,25966], +"mkfiletree", +[2,15164,18490], +[3,25969,13], +"ross", +[2,25970,25971], +[0,4484,677,4135,666,672,4771,9688], +"readfiletree", +[0,3420,4270], +[0,9622,8174,9623,38255,9627,9628,9648,9659], +[1,2349,25978], +[0,25979,25991,25998,2457], +[0,30508,30509,4484], +"-leveldown", +[2,14834,25980], +"level-", +"level-errors", +[2,7253,14922], +[2,25982,25984], +"supports", +[2,25982,25986], +"queue-", +"microtask", +[2,25988,25989], +[0,34030,26312,10846,4426], +"airtap-sauce", +"encoding-", +[2,25993,2971], +"memdown", +[3,12809,12], +[2,4182,5614], +[0,7522,89,7531,7535,7521,7597,7518,8424,8432,7528,10442], +[1,2349,26001], +"trickle", +[0,26002,26003,26004,2457], +[0,38264,3286,89,3824,38265,4125,38266], +[0,4874,4880,4883,1177,4828,3561,4383,91], +[0,12589,1616,33456,12589,5472,20500,33459,1237,33462,33464,12590,33465,27666,11996], +[1,2349,26016], +"levenshtein", +[2,2068,26006], +"ld", +"levdist", +[2,26006,10699], +[3,26010,12], +"-distance", +[2,6109,26012], +[2,26011,26013], +"talisman", +[0,26018,0,26019,2540], +"distance", +[0,1639,3744,97,7931,7932,7910], +[0,89,5128,9267,1832], +"comparison", +[1,2349,26022], +[0,26023,10322,26027,2457], +[0,16053,16056,38278], +"careful-", +"binary-", +[2,26025,19101], +[0,5284,1776,1644,1746,1745], +[1,2349,26029], +[0,26030,26031,26033,2540], +[0,97,5663], +[0,5087,1192], +"country-codes-flags-phone-codes", +[0,5284,4967,89,6081], +[1,2349,26038], +"just-safe-set", +"ock-registry", +[2,9494,26036], +[0,26039,26040,26041,2540], +[0,97,38293,3744,3847,4484], +[0,5228,14249,5700,8129,20202,38298,20212,602,5583,811,963,966,968,38299,972,974,5087,5090,4880,1009,1011,7913,38302,38304,1397,1597,1610,1651,1177,4916,1959,2126,38307,38309,11853,19227,3400,3698,9054,89,3824,3847,3857,3904,4146,4261,91], +[0,38313,89,15774,38316,38317,5399,1631,32039,38319,7320,38320,32040,38322], +[1,2349,26043], +[0,21061,0,26045,2488], +"gitfund", +[0,6653,7320,10039,24832,1623,13006,38327,6847,5284,676,38328,38329,29002,24353,8112,3561,6425,38330,18252,1631,3586,38332,4453,38333], +[1,2349,26047], +[0,26048,26054,26055,2488], +[0,2115,2121,2127,1110,28827,2856,4507,26907], +"crlf", +[3,2982,15], +[2,6774,16609], +[2,26050,26051], +"renamer", +[0,2180,5476,5478,2189,2198,31852,91], +[0,2313,1383,614,202,1388,5995,4967,2340,2350], +[1,2349,26058], +[2,33018,188], +[0,0,0,26061,4194], +"ged-respawn", +[2,7210,26059], +[0,1671,671,3315,17626,6869,6671,3319,3325,3362,6829,3384], +[1,2349,26063], +[0,26064,26065,26033,2531], +[0,53,31689,97,5663,4793,4800,4838,4928,4786,4944,4954,4968,362,4972,24723,4981,10895,4982,11518,841,7812,24370,4985,1030,4992,1165,1195,29040,30521,1393,1437,1525,1593,1628,1630,1759,1763,2151,2070,2220,4995,2222,2651,2843,2867,1209,3177,3220,4996,3310,3445,3561,3579,3584,3613,3618,30274,1894,3742,15033,3816,3878,4079,13834,4164,4167,4307,5000,4409,5002,1002,1983,29141,2924,4676,4681,13152], +[0,29536,27134,4864,4870,5009,5542,15600,33768,11944,3144,3244,3758,4039], +[1,2349,26067], +[0,6205,26068,26069,34552], +[0,3421,1192,2832,89,4484,1843,1177,4039,4042,4468,4474,4508,2924,1894,3824,4469,5087,4677,4880,4863,555,560,4230,8849,4681,8850,1584,1959,1938,4052,6373,1895,1955,2780,811,8853,4079,1011,4076,816,1009,549,8158], +[0,24456,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +"cname-prefix", +[1,2349,26075], +"autolink", +"hashtag", +"mention", +[0,6205,26076,26077,2540], +[0,53,87,92,8862,5087,4874,1009,1011,6834,6840,6873,1031,11018,13072,1593,1610,1177,1895,1938,6902,1988,1192,2780,1894,4039,4042,4045,4052,4076,4079,6904,4468,4484,4508,91,188,555], +[0,188,8588,6931,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2349,26080], +"pidtree", +[0,6205,26083,26084,4194], +"consolemock", +"sonner", +[0,53,87,92,4856,5087,6503,4874,1009,1011,6834,6840,6993,6873,1031,11018,13072,1429,1610,1177,1895,1938,6902,1988,3400,1894,4039,4042,4045,4052,4076,4079,6904,7006,4484,4508,91,188,555,5010], +[0,188,8588,6931,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841,12075,1623,4380], +[1,2349,26086], +[0,26088,26089,26100,2531], +"@samverschueren/stream-to-observable", +[0,12396,23289,23249,3493,12449,15632], +[0,9363,4874,1414,31147,1894,3985,3998,18071,4505,4507,91,18002,1906], +"is-observable", +"-silent-renderer", +[2,2991,26091], +"listr-", +[2,9787,3902], +[2,26093,26094], +"verb", +"ose-renderer", +[2,26096,26097], +[2,26093,26098], +[0,23266,2587,23267,614,6435,1936,1644,15278], +[1,2349,26102], +[0,0,26103,26105,2540], +[0,1177,2899,3421,4193], +"@keyv/compress-brotli", +[0,4264,15457,15482,13499,15483,5995], +[1,2349,26110], +[3,175,23], +[2,26109,16518], +[3,26104,15], +[0,0,0,26115,2540], +"@lit/reactive-element", +"@lit", +"-labs/ssr-dom-shim", +[2,26112,26113], +[0,17356,17362,17364,17365,17384,17397,17423,17426,1745,1783], +"@lit-labs/", +[2,26116,5472], +"@lit-", +"/scripts", +[2,6943,26119], +[2,26118,26120], +[2,10704,1283], +"@keyv/memcache", +"@keyv/mongo", +[1,2349,26126], +[0,26130,26133,26134,34552], +"connect-l", +"ogger", +[2,26127,26128], +[0,24337,24344,18220,1676,24345,2714,2072,4238,4431,4484,4753], +"@keyv/sqlite", +"@keyv/test-suite", +[0,8656,8660,6061,6063,5245,24352,29105,5087,4874,28177,24358,18435,20290,1177,1192,1894,4131,4468,91], +[0,12296,12295,200,5131,1896,24364,970], +[1,2349,26138], +"http-auth", +"faye-websocket", +[0,26139,0,26140,2531], +[0,12396,21300,32567,2586,21308,12447,12449], +[0,2587,1936,21308,26916,1783,18108,26564,1932,3958,32462,3984,21306,4549], +[1,2349,26143], +"amaro", +[0,26145,26146,26148,2531], +[2,3000,1592], +[0,2564,4351], +[0,1166,1503,91,1906], +[2,26688,26693], +[0,163,7009,22316,200,13735,4354,1111,1106,7201], +[1,2349,26150], +[0,26151,26152,26153,2457], +[0,20573,5545], +[0,5517,28436,19438,19181,442,8648,842,16145,966,968,972,22375,5087,4874,4880,5546,1009,1011,34737,1177,1895,31755,1959,1961,1976,2203,2675,1192,2780,2990,3286,1894,89,3824,5564,4039,4135,91,4523], +[0,26713,89,582,705,2325,1612], +[2,2032,26155,26159], +"openid-c", +[1,2349,26157], +[0,0,26161,26162,2531], +"grunt-svgmin", +"onnect", +"matchdep", +[0,4874,4218,4220,4493,91], +[0,91,998,553,5490,17180,20052,2382,6956,2844,5995,6400,1781,6866,1398,9254,15105,4144,4141,7050,22789,22791], +[1,2349,26164], +[0,26165,26166,26167,2540], +[0,23641,27185,29561], +[0,58,101,8648,1177,2272,3019,2899,4019,19767,4481,4535], +[0,36720,22860,1388,16284,888,22856,35087,11804,23659,23664,23667,23668,29725,29728,32633], +[1,2349,26171], +"lws-basic-auth", +"lws-b", +[0,0,26174,26188,2540], +"lws-blacklist", +[2,26170,7803], +[0,2832,705,4008], +"lws-compress", +"lws-co", +"nditional-get", +[2,26176,26177], +"lws-cors", +"lws-index", +"lws-json", +"lws-log", +"lws-mime", +"lws-range", +"lws-r", +[2,13148,21101], +[2,26185,26186], +[0,1936,23670,11513], +"lws-rewrite", +"lws-spa", +[1,2349,26193], +"lws-static", +[0,26194,26195,26197,2540], +[0,2591,25047,23597,4290,24794,24836,19569,15245,24855,24871,24984,25049,25034,24816,24841,24900,24964,24989,24998,21642,37100,25011,24802,24828,24987,24797,24958,25042], +[0,1414,2020,4193,25122,1306,1177,1701,25127,2182,1894,842,1587,1610,4342,3980,25609,91,4874,25099,25108,6513,8529,27525,25110,9240,25103,25104,25098,25137,25053,25118,25114,25058,25083,10614], +"full-stack", +[0,25155,5130,33359], +[1,2349,26199], +[0,26200,26201,26209,2540], +[0,25183,25194,1759,2858,3310,9796], +[0,33460,25204,4874,5542,1177,25209,1894,4039,4494,91,1984], +[3,24235,20], +"loose", +[2,26202,26203], +[2,13888,5669], +"grunt-es", +"3-safe-recast", +[2,26206,26207], +[0,9649,17721,6869], +"grunt-rollup", +[1,2349,26214], +"grunt-ts", +"rollupify", +[0,26215,26219,26220,4194], +[0,1676,4164,4484,4747,2151,1525,3310,25228,24337,3322,24335,25245], +"indexeddb", +[3,23920,12], +"websql", +[0,3377,1192,2675,4400,1177,4039,4468,1894,91,5087,4874,5245,28177,20959,107,4864,5542,25250,8656,8660,1009], +[0,2733,8675,13494,5131,970,1017,25259], +[1,5298,26224], +[2,31787,26225], +"openurl", +[0,8391,26226], +"ecma402-abstract", +1753574400000, +[1,2349,26229], +[2,3019,2825], +[0,26231,0,26235,2540], +[2,7627,4255], +[0,1461,2731,3744,3776,89,3824,3847,4649], +[2,6698,19048], +"lockfile ", +[2,26233,671], +[0,5130,6081,4963,5131,25786], +[1,2349,26237], +[0,26238,0,26239,2402], +[0,4484,25804,29321,29322], +[0,13572,2220,36,5130,202,6710,91], +[1,2349,26242], +[2,31528,29413], +[0,26243,26244,16439,2531], +[0,24327,25819,24329,24335,24337,24338,24339,24340,24343,24344,1437,1676,1687,24345,24346,1209,3445,6331,20921,4135,4238,24347,22651,4339,4390,4484], +[0,5245,17577,24352,5087,4870,4874,5254,24358,24360,13214,1192,2774,2990,4039,4227,4468,91], +[1,2349,26250], +"@egjs/axes", +"@egjs/imready", +"modularized", +[2,5316,26248], +[0,6205,26251,26252,34552], +[0,1166,3421,4094,4484,1177,4039,4508,1894,25868,91,24,26,555,19,4232,1584,1938,21,1895,1955,1011,25863,25857,19535,1009,25862], +[0,1098,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2349,26254], +[0,26255,26261,26262,2540], +[0,20437,1209], +[2,27471,1722], +"kuler", +"clonedeep", +"js-randomness-predictor", +[3,23307,13], +[0,4874,1009,1011,1177,1895,1938,1955,1894,4039,4042,4052,4076,4079,4484,4508,91,555], +[0,1669,25,1781,8836,4967,1179,6847,8838,2860,2844,8839,8691,8841], +[1,2349,26266], +"snackbar", +"inject-markdown", +[0,26267,26268,7113,2531], +[0,1473,4741], +[0,10321,4493,4543], +[1,5298,26270], +[0,8391,26271], +1738454400000, +[1,2349,26275], +[2,32920,4521], +"rchitecto-", +[0,26276,26277,26278,2540], +[0,97,5564], +[0,29519,89,1177,1503,4474,1894,1610,3824,29520,91,11853,4880,38309,4883,29522,3904,17584,1011,4889,1009], +[0,5472,89,582,2275,11857], +[1,2349,26280], +[0,26281,0,26282,4194], +[0,25510,29529,25758], +[0,6932,6622,6694,6704,6860,6695,4389,7159,5341,7202,7121,7060,7161,7141,7287,6698,3743,7311,6946,2090,6566,6907,7228,4799,5261,6863,2051,676,4643,7535,6748,6739,6618,2844,7252,6673,6790,7531,7226,1851,1612,4763,6598,6728,6868,6662,7148,6905,6668,7292,7272,6583,3767,364,6800,6874,4166,1698,2021,6821,3065,6435,3730,6882,4647,6857,6637,7031,7223,7080,3113,7220,1871,6801,7087,6938,7145,3195,7255,7162,6482,7094,6922,6615,6738,6654,8433,7212,7050,7521,1525,6892,6830,3432,10442,7053,7253,10443,6937,6894,6977,5592,6692,200,6940,6867,7242,7518,6582,3101,7038,57,7188,6809,6998,4484,4796,7089,7178,7182,6827,7015,6912,7011,6743,1451,6575,7117,6994,3046,2812,7199,2860,998,5122,1111,6696,6910,3529,7133,6048,1303,6634,1139,6846,6784,7192,6777,3053,5351,6624,3171,1896,2297,6960,7022,6597,5198,6802,6816,7317,4141,6765,6591,7236,1306,6681,5257,6564,100,7004,6333,6799,6774,7276,7196,6797,1263,1149,2649,7150,7165,6753,7107,6948,6975,6822,6787,6760,7046,5472,6651,6569,6825,7069,582,7191,6968,6631,6742,4744,7258,1925,6794,6804,965,7149,6917,2700,1192,2765,6081,7029,1417,5258,4426,6608,7044,7123,7222,3378,1616,3917,1614,1669,3209,6570,7155,6422,6714,6725,6606,6778,7300,6610,6716,1259,2585,1393,6918,1461,1213,7232,7172,6755,4014,6919,7209,7075,6818,6870,7039,6795,6761,6966,2154,6885,4707,6964,6646,7218,7169,2978,5501,1155,6611,6955,1862,1753,2220,6837,7336,4386,6638,6616,6553,7310,7061,6881,7298,8424,5675,3437,3456,6929,7157,6580,6751,7010,6648,3426,6952,8435,4384,7233,6697,4162,2150,3875,1108,5165,6926,3763,7229,592,3776,7288,5957,6700,2088,6650,7595,10446,7289,6805,7099,7084,7144,590,5374,5197,7077,5286,7248,2078,7085,7285,1781,6653,10441,2325,5281,1351,7309,7204,2696,2899,3430,705,7126,1697,2038,7025,6641,6620,1671,6859,6573,7146,7245,4649,3220,6667,1623,6793,6666,6903,7230,7026,6588,6858,1362,202,2832,7023,7284,6659,6577,7158,6594,7115,20215,6789,5614,7057,7528,7021,6605,6621,5260,6973,6913,6828,6563,6715,1460,7067,7072,6762,7033,7517,6702,7020,6887,5131,3778,6915,1593,5194,7071,1429,7042,6636,6841,3428,7007,7532,6803,7106,3073,6824,7227,7286,2845,7082,7114,7151,7297,6769,3766,6914,7189,7064,4720,6723,7205,6780,6683,7078,1858,6741,7262,6962,814,6657,7524,1544,7002,7527,1585,5511,1512,6921,6951,6856,7598,6854,8428,6586,6773,2105,7047,2671,1541,6623,594,6711,7147,6671,7256,7194,1165,6786,3768,6752,8427,1804,3441,7275,3033,6943,4354,4580,6758,7027], +[1,2349,26284], +[0,0,26288,26289,2540], +[2,28288,26286,33678], +"redential", +"isequal", +[0,2272,19270,2899], +[0,1111,1936], +[1,2349,26291], +[0,26293,26294,26295,2531], +"isfunction", +[0,6513,4193,4484], +[0,33821,7709,33826,33827,33831,33836,29543,4508], +[0,7200,1168,5472,3212,20188,29545], +[1,2349,26297], +[0,0,26298,26299,4194], +[0,6373,1437,29550,2151,2070,2323,2372,29552,4039,4042,4057,4076,4072,4484,4487,91], +[0,1896,5066,29554,29555,5122,12295,14554,5284,4453,29556,5131,1591,1932,4653,6434], +[1,2349,26302], +"isplainobject", +[0,0,0,26303,2531], +[0,7201,5131,1676], +[1,2349,26305], +[0,26306,26308,26309,4194], +[0,1364,1536,1676,1710,11479,2017,2929,4200,4763], +"isstring", +[0,8648,29574,5159,838,5160,840,8296,5601,1165,1662,1177,1895,1972,2203,3561,1894,3710,23535,3709,4355,4383,91,1983,1984], +[0,5592,5995,27,4699,4729,4030,6710], +[1,2349,26311], +[0,0,26313,26314,34552], +"@thednp/dommatrix", +[0,53,87,192,5467,1165,1195,1387,31429,1429,29582,1492,29584,1652,29585,2323,29586,2338,29587,29589,2361,2367,2384,2390,2419,2455,2464,2479,2482,2494,2496,2504,29592,2510,2530,2550,29593,2675,29594,2822,2929,2899,3198,29595,5561,3561,3722,4015,4019,4042,4045,21688,4939,29596,4193,8959,29597,4597,29599,2924,18237], +[0,1623,4329,2278,676,6398,6396,5130,14894,29603,29607], +[1,2349,26316], +[0,26317,26318,26319,2488], +[0,1437,29614], +[0,29618,7677,2675,2990,1894,91,1984], +[0,200,1473,1512,7208,6876,7201,6983,29609,3632,3073,6807,4166,1871,590,592,7009], +[1,2349,26321], +[0,26323,26324,26325,4194], +[2,1882,24717], +[0,7943,29630,3120,3744], +[0,48,53,68,13693,61,31689,73,31693,5757,5800,5818,5827,87,90,19696,19438,19181,442,34467,32229,29634,28970,29636,10837,10840,29639,966,968,972,29642,974,5087,11292,4874,4880,4883,8152,1175,1193,1195,20479,29643,11335,29645,1465,1584,1587,1593,1610,1700,1177,1879,1895,1922,1938,1947,1955,1959,1961,1976,2151,2203,29646,1192,11347,2774,2780,29652,2832,3561,3697,1894,3720,89,3816,3824,3847,29655,3957,4183,4270,4315,29660,4415,29661,35487,4468,4469,91,2924,4677,4681], +[0,29610,29666,29667,4627,6082,9204,5130,89,699,9291,5354,29668,29669,29670,29671,7320,29673,29674,29676,1473,998,8691,8295,29677,181,6073,10769,29678,4315], +[1,2349,26327], +[0,0,0,26328,2540], +[0,23584,23584,1936,3205,1002], +[1,2349,26330], +[0,0,26331,26332,2540], +[0,29693,2228,2247,2253,2258,2263,2273,2281,2283,29694,2308], +[0,36653,36650,29702,15571,8192,5066,11316,18346,35060,2814,20632,6398,5131], +[1,2349,26334], +[0,26335,26336,22670,2457], +[0,3561,33145,4317,8712,1423,28572], +[0,4729,1138,3244,3467,4390,4763,12084,2070,710,614,1082,31705,1413,1676,2145,2856,33213,1145,1398,1410,977,2018,2755,3266,3930,4135,4072,11478,2105,6042,3479,3729,2924,3757,3784,33214,33173,842,9241,1525,1610,2553,11993,26453,23175,3530,4270,33215,29709,11534,13214,33200,33202,1628,11890,2659,16837,2689,33211,4227,4294,4425,91,24739,53,554,4865,33198,20463,13753,1154,33204,1536,1615,2805,4111,27062,4165,15040,33212,7080,104,8317,33146,33174,5364,5245,33191,4880,1195,1393,33206,1562,33208,2863,33210,3678,20508,4307,11804,33176,11477,4870,5254,33209,20465,15031,3878,13834,15048,97,33181,26733,15018,3509,15042,15047,101,8755,29877,33197,15606,15009,3502,15033,5216,33165,8648,10837,20374,4883,2661,15022,3322,51,87,11011,23452,1618,2674,4230,28512,15039,15046,13471,10879,7806,21122,16149,16566,3672,90,33156,617,11796,8264,33193,11800,1560,3676,3957,68,33768,15015,3688,9221,25652,33158,33167,34467,33195,36897,16841,18730,4409,33159,29876,24807,31666,16912,3605,16842,33170,33179,3177,4851,92,33162,19861,29517,29421,33172,10840,33183,33153,10825,30521,10827,20476,15273,83,16840,33189,3638,81,5715,29874,5757,5241,5820,5821,5785,1251], +[1,2349,26338], +[0,0,26339,26340,2402], +[0,1414,34238,2675,2990,3561,1906], +[0,3561,1623,6425,26543], +[1,2349,26342], +[0,26345,26347,26348,2488], +[3,532,8], +[2,26346,26651], +[0,1448,4907,29733,3157,3173,3527,3721,11114,4207], +"@tdesign/", +[0,192,5467,442,6061,16607,6063,6065,16608,16612,7746,4874,13210,29740,1009,1011,1610,1177,1953,2020,2203,2675,29741,2990,3536,1894,4039,4131,91,1984], +[0,8678,3758,7001,1017,29745,12295,12296,29746,29747,29748,158,3097,5131,33777,29750,29751], +[3,17904,13], +"sprintf-kit", +"uni-global", +[1,2349,26354], +[3,25092,13], +[0,26355,26356,26359,2488], +[0,29758,29759,1398,34690,3127,3725,10397,29761], +[0,53,68,87,1195,29776,1465,24542,1628,1177,1879,31393,1938,24732,2092,8301,2651,29784,4307,4409,37871,2924,4676,4677,4681], +"ncjsm", +"tape-index", +[0,8168,8170,8171,6975,8172,8173,1745,29786,29787,29729,8124,29788,29795,29796,29797,29798,29802,29803], +[1,2349,26361], +[0,26362,26363,26365,2531], +[0,3744], +[0,53,68,97,1177,1879,1895,1938,1947,1955,1959,1961,1192,5103,1894,89,3857], +"@standard-schema/spec", +[0,3857,5128,31912,89,5131,12295,12296,181,26542,23187,29556,29804,9944,7521], +[0,0,26368,26369,34552], +[1,2349,31712], +[0,53,87,97,29817,21155,1177,2675,2990,89,3857,91], +[0,3857,5128,31912,89,5131,12295,12296,181,5396,29819,15813,29820], +[1,2349,26372], +"terminal.js", +[0,0,26373,26378,2457], +[0,53,68,61,5241,83,87,90,5583,811,816,968,972,1165,1497,1652,1177,1895,31755,1955,1959,1961,1976,2675,2686,1192,2990,3561,1894,3744,89,3824,4042,8849,29826,6068,10854,4320,4323], +[3,28685,11], +"refresh", +"overwrite", +"irtual-core", +[0,89,35058,29831,3392,89,4627,29832,5131,12295,12296,29836,29837,29838,29839], +"tinyexec", +[2,17213,28937], +[1,2349,26382], +[0,26384,26386,26387,2488], +"date-format", +[0,97,29843,29844], +"flatted", +[0,53,78,83,87,90,92,5522,107,29846,968,972,4880,4883,1009,1011,1030,1178,1413,1610,1177,1895,1955,1959,2675,1192,2780,2990,1894,89,3824,4039,91,1983], +[0,29848,29849,89,5128,38332], +"streamroller", +[1,2349,26392], +"@log4js-node/sandboxed-module", +"-producer", +[0,26393,26394,26395,34552], +[0,1420,29855,4507], +[0,5517,19438,442,29857,23689,1414,1437,1516,1532,668,1177,1895,1955,2020,2203,2675,2765,2990,3074,1894,4039,18710,91,4523], +[0,20627,1739,1745,1179,1783,5980,9591], +[3,9227,10], +"e-js", +[2,26396,26397], +"grunt-open", +[2,2235,4358], +[1,2349,26402], +[0,26403,26404,26405,2457], +[0,810,1497,26570,16485,2017,2696,3876,4022,32284,5545,29869], +[0,48,53,87,90,92,97,19696,28091,19492,19438,442,28598,30507,810,11275,34467,827,10828,28147,28466,31235,7384,31237,28473,28476,968,972,974,29879,33123,29880,4874,4880,4883,15606,1030,17214,7677,1195,29883,20476,1393,29645,1610,17100,17101,17103,1687,1177,26322,1895,1915,1938,1942,1947,1955,1959,1961,30553,10851,2070,2203,2675,2832,2990,3127,3541,1894,89,3824,3847,3876,4039,4270,4409,4469,4473,91,4523,15088,1984,29887,2924,4676,4677], +[0,89,6071,9816,5128], +"esm2umd", +[2,26409,26410], +"int64", +"@astrojs/s", +"itemap", +"@pagefind/default-ui", +[2,26689,27593], +"uid2", +"astro-expressive-code", +"bcp-47", +"isemail", +"canonical-json", +[2,3138,12442], +"-phase", +[2,3081,26419], +"pagefind", +"remoting", +[2,25894,26422], +"loopback-", +"filters", +[2,26424,26425], +[1,2349,26430], +"globalize", +[2,25894,26428], +[0,26432,26451,26452,2540], +"linkedom", +[0,29896], +"or-remote", +[2,1544,26433], +[2,26424,26434], +[3,18637,12], +"tub-transport", +[2,26436,26437], +"datas", +"withastro", +"ource-juggler", +[2,26439,26441], +[2,26424,26442], +[3,18637,11], +"astro-integration", +"-transport", +[2,1716,26446], +[2,26444,26447], +"adapter-", +[2,32700,23187], +[0,29900,29905,29910,29911,811,816,974,11096,11109,19203,29914,11111,29917,29921,1414,1429,29922,29924,1177,29925,1938,2832,8821,2899,1894,4042,29926,4146,4193,4196,4261,4072,91], +[0,29935,11619,11608,30891,11622,6907,29936,12899,5130,30442,17950,1283,29939,33359,11415,6624,12620,29940,29941], +"is-docker", +[1,2349,26460], +"loopback-boot", +"s6-shim", +[2,13897,26456], +[3,26435,12], +[2,26458,2585], +[0,0,26471,26475,2776], +"task-emitter", +[2,25894,26461], +[3,6738,11], +[2,26463,1524], +[2,25894,26464], +[2,1884,3081], +"processor", +"-preprocessor", +[2,22126,26468], +[2,2877,26469], +[0,53,13052,87,4042,4045,4058,4067,4415,29949,35487,4535], +"sqlserver", +"StrongLoop", +"mBaaS", +[0,7838,29953,7518,3161,1098,29954,89,188,7880], +[1,2349,26480], +[2,26478,29168], +[3,30636,28], +[2,26868,26869], +[0,26496,26497,26498,2540], +"exact-versions", +[2,32700,7293], +[2,26485,24631], +"steno", +[3,31231,18], +[2,19036,20], +[2,5745,1852], +[2,2029,26487], +[2,32731,26494], +"embed", +"Storage", +"localStorage", +[2,1577,26491], +"polygon", +[2,32731,32729], +[0,97,29959,10984,1673,3021,29960,4443,1155], +[0,5652,61,83,87,92,192,5467,6372,5583,811,16952,8850,816,6373,29966,29967,29980,26344,5139,4874,8149,11438,14334,1009,1011,11016,13061,7677,23203,13063,1031,36812,36805,11018,1165,1170,1420,12405,1527,1540,1610,1651,1652,1676,29972,668,1177,1881,1895,1938,1955,1988,2226,2675,2832,695,2990,3025,26804,3213,3561,1894,3725,29973,3957,4039,4042,34019,8849,11899,15277,29974,15911,10854,29975,29978,4073,6904,4081,29983,4484,91,1983,29987,1984,188,4630,4639,13151], +[0,188,5131,29990], +"rslog", +[1,2349,26501], +[0,26502,26508,26515,34552], +[0,7755,1869,2814], +[2,13104,1936], +"@lucide/build-icons", +"@lucide/", +[2,4080,591], +[2,26505,26506], +[0,53,87,23572,11301,1165,1168,30000,1597,1610,1637,1651,18259,1759,1177,1895,1903,1938,1954,1955,1958,1970,3363,3561,3564,3566,30030,3579,3605,30033,3613,3640,30039,30274,1894,4039,4042,4045,4055,4058,20981,30041,4067,20983,32978,4073,12309,4201,4320,4946,4360], +"Lucide", +"HTML", +"Feather", +"Icons", +"Icon", +"SVG", +[0,12318,2090,30044,30045,13225,7518,5398,158,30046,190,5131,18346,9229,1542,30826,20937,2814], +"Feather Icons", +"Fontawesome", +[1,2349,26519], +[0,26521,26522,26523,2531], +"Font Awesome", +[0,1170,2812,1209,3183,4094], +[0,1429,1177,10419,3188,2899,1241], +[0,6703,1702,200,1586,21405,13397,33351,27,29854,30053,21402,13322,16697,28984,6667,6574,30056,31937], +[1,2349,26525], +[0,0,26526,26527,2540], +[0,1165,1387,2323,30061,2379,2409,2450,2482,2494,2496,2510,18426,30064,3591,4320,4323,4747], +[0,29993,30066,30067,1623,695,5131], +"decree", +[1,2349,26530], +[0,0,0,26531,34552], +[0,89,6649,10057,6355,3875,1542], +"manipulate", +"blur", +"sharpen", +"flip", +"hue", +"saturation", +[1,5298,26540], +"lightness", +[0,8391,26544], +"transparency", +"fade", +"opacity", +1731196800000, +[1,2349,26546], +[0,26547,26554,2523,4194], +[0,30078,9307,9311,30068,30052,30073,9313,30072,1497,12412,30075,2071,7610,2579,21308,3137,27008,3140,12627,26929,26914,17429,9337,3973,9340,3988,30049,30069,30059,27062,9348,4207,17913,4473,30058,4555,28830,4745,4763], +"@75lb/deep-merge", +[3,1107,11], +"-sequences", +[2,26549,26550], +[2,1601,7880], +"load-module", +[0,11522,972,1006,12396,9363,30082,4880,4891,1030,30084,23312,23314,3286,89,3824,4549,1984,28965], +"-anywhere", +[2,17242,26555], +[2,30307,553], +[1,2349,26559], +[0,26560,0,26561,2540], +[0,30097], +[0,1674,30099,30100,15001,13739,35071,30103,30113,19571], +"-home-dir", +[2,18132,26562], +"mdast", +[2,2580,26564], +"fetch-happen", +[2,3094,26566], +[2,12428,1783], +[1,2349,26575], +[2,25212,28139], +"-unique-id", +[2,5843,26571], +[2,4402,163], +"y18n", +[0,26582,26583,13358,2540], +[3,9357,10], +"umnify", +[2,26576,26577], +[2,8140,1687], +"ke-fetch-happen", +[2,18655,26580], +[0,20378,3530], +[0,11976,4874,20374,2071,30138,2070,4441,1531,91], +"@types/which", +[1,2349,26588], +"wizard", +"task graph", +[0,0,0,26589,4194], +[0,91,553,1973,8791,2022], +[1,2349,26592], +"zoroaster", +[0,26593,2684,26594,2540], +[0,30173,4484], +[0,30175,30176,27227,30177,30178,91,6742,57,15266,2873,1993,7256,676,19976,30179,5995,6400], +[1,2349,26598], +" manipulation", +[2,1871,26596], +[0,0,6232,26599,2402], +[0,32054,4963,4967,6082,3286,3287,89,11167,31512,181,630], +[1,2349,26601], +[0,6236,6232,26602,4194], +[0,1501,4963,4967,5342,6082,3286,3287,89,5341,9057,181,630], +[3,7678,9], +[2,4501,6996], +[2,12612,26604], +[2,26603,26605], +[1,2349,26613], +"lavalink client", +"audi", +"o streaming", +[2,26609,26610], +"music", +[0,26615,6232,26618,2531], +"music bot", +[0,3826], +"emoji-datasource", +"voice chat", +[0,4963,18263,1786,4967,6082,3286,3287,89,181,630,9229], +" integration", +[2,1721,26619], +" performance", +[2,6732,26621], +[1,2349,26625], +"easy-to-use", +[0,26634,6232,26635,4194], +"feature-rich", +"seamless", +[2,26627,26619], +"communi", +"ty support", +[2,26629,26630], +"open-source", +"lavalink", +[0,9041], +[0,4963,4967,6082,3286,3287,3412,3730,89,181,630], +[3,66,19], +[1,2349,26638], +[0,26634,6232,26639,2540], +[0,30246,4963,4967,6082,3286,3287,89,7193,181,630], +[1,2349,26641], +[0,0,6232,26642,2540], +[0,4963,4967,6082,3286,3287,89,30256,24843,30251,181,630], +[1,2349,26645], +"convex-helpers", +[0,26646,26649,26650,2540], +[0,3135], +"intermediate", +"recursively", +[0,48,53,5241,87,92,19344,10879,30263,5601,4873,4874,1009,1011,1177,1895,1938,1942,1953,30266,13668,3401,4039,91,1984], +[0,30270,3541,1651,2899,1984,1192,2765,3283,28360,30271,2793,1973,11937,16237,5472,30272], +"theme-generator", +[1,2349,26653], +[0,26654,26655,26656,2776], +[0,30288,30293,30295,26557,32842,30297], +[0,30303,6494,4874,30306,30305,30310,2026,4039,1531,91,1984], +[0,30297,2026,5995,1851,5592,13527,91,5284,2663], +"dingbat-to-unicode", +"lop", +[1,2349,26665], +"-licenses", +[2,22190,26660], +[2,13888,26661], +"duck", +"hamjest", +[0,0,26667,26668,2457], +"office", +[0,3377,26230,4255,1973,30351], +[0,5131,28125,4354,1388], +[1,2349,26672], +[3,36878,12], +"ternal-editor", +[0,26673,26686,26687,2531], +[0,12449,4549,12396,2586,21016,32568,4233,12447,32567], +"@nestjs/", +[2,26674,10896], +"@nestjs/co", +[2,26676,686], +[2,26676,23], +[3,31,9], +[2,26679,2026], +[2,26674,26680], +[3,9687,9], +"wagger", +[2,26682,26683], +[2,26674,4521], +[0,1414,1177,3958,1894,3541,3985,91,4874,15632,32484,27706,27711,30411], +[0,1745,9102,25131,1932,3958,32462,3984,4549], +[3,9687,12], +"@nestjs/t", +[2,26689,8615], +[1,2349,26692], +[0,26700,26701,26722,34552], +"dule", +[2,26682,28084], +[3,12284,16], +[2,26695,2528], +"llaboration-core", +"limiter", +"embla-carousel-reactive-utils", +[0,30416,30425,30431,30434,30438,30439,30441,30445,30447,30449,30450,30452], +[0,48,4487,91], +[2,19183,26714,3181], +"eigen", +[3,578,11], +"de-highlight", +[2,26704,26705], +"@tabler/icons-react", +[3,3672,15], +"mantine", +[2,26708,26709], +"imple-vars", +[2,3677,26711], +"swr", +[3,25141,13], +"context-menu", +"peowly", +"context menu", +"server ", +[2,26718,4963], +[2,7519,26719], +"user ", +[0,30455,5133,30960,1851,5284,27838,18969,30456,5131], +[1,2349,26724], +[0,26728,0,26235,2457], +"experience", +[2,26721,26725], +"usability", +[0,25766,30802,1461,30809,2731,3744,3776,89,3824,3847,4649], +[1,2349,26730], +[0,26731,0,26235,2402], +[0,89,3824,3744,25766], +[1,2349,26734], +"axe-playwright", +[0,26735,0,26736,4194], +[0,4484,2735,547,2858], +[0,2733,5130,1098,5131,1896,8674,8675,1591,8677,8678], +[1,5298,26738], +[0,8391,26742], +[2,11932,26740], +"umd-wrapper", +"mapbox", +1733616000000, +"mapbox-gl", +[2,4609,4056], +[1,5298,26748], +"mapboxgl", +"legend", +[0,8391,26749], +1733961600000, +[1,5298,26751], +[0,8391,26752], +1734220800000, +[1,2349,26756], +" processing", +[2,2585,26754], +[0,0,26757,26758,2540], +[0,4172,2278,34683,4484,1177,4039,4042,4086,4072,3363,3561,2151,1894,1367,1610,4320,91,6375,3400,3566,30616,1165,1540,6376,3019,34673,1907,30617,1938,1982,30620,10817,1011,15290,6392,1009], +[0,1623,2278,6398,20897,1283,699,5130,30622,27837], +[1,2349,26760], +[0,26765,26778,26781,2540], +"linkify-it", +"mdurl", +"punycode.js", +"uc.micro", +[0,97,30628,30666], +"footnote", +[2,3108,26766], +[3,26767,14], +"r-inline", +[2,26768,26769], +"ins", +[2,3108,26771], +"ark", +[2,7613,26773], +[3,7617,14], +[2,26775,22164], +"ndoc", +[0,48,53,61,71,13052,83,85,87,94,4856,6503,4874,1178,1195,1208,1290,30691,30696,1389,1429,1431,31602,1610,1177,2026,10621,2832,2899,3421,705,4039,4218,4409,91,2282,4650,2924,4677], +[3,5956,14], +[2,26779,13218], +[0,6599,5131,5592,29744,30730], +[1,2349,26783], +[0,0,26785,26787,2457], +"@nx/docker", +[0,1414,1429,1540,1596,668,1177,2832,3010,2899,2278], +"anchor", +[0,5284,5131,12295,12296,7179], +[1,2349,26789], +[0,26790,26791,26792,34552], +[0,3775,1473,1673,30778,1209,1461,30779,3376,30774,30772,30776,15616,3911,30770], +[0,11336,89,3824,4880,4870,97,4883,30783,972,968,974,20562,4808], +[0,89,12248,5128,30731,30785,30786,4627,4963,181,5130,4967,5131], +[1,2349,26794], +[0,26795,26797,26235,2540], +[0,25766,30802,30803,30405,30458,1461,2731,3744,3776,89,3824,4649,30809], +"emojies", +[0,30819,30820,30822], +[1,2349,26801], +"emoticon", +"emoticons", +[0,0,26802,26803,2540], +[0,6066,1894,4042,4045,12611,4048], +[0,4967,9006,29633], +[2,26807,26809], +"from-to", +[2,4279,26805], +"lodash.u", +"pdf-text", +"pperfirst", +[1,2349,26811], +[0,26812,26813,26814,2540], +[0,16115], +[0,972,4880,4883,1628,2144,2675,89,3824,3895,4307,4469,21180,4484,91,2924,6482], +[0,1631,30845,30847,30848,4627,6398,5131,4453,1631,5399,30858,32040], +"rows", +[1,2349,26817], +[0,26818,26819,26820,2402], +[0,10780,1437,1525,2020,2151,3714,3742,4135,4548,4707,4726,4739,4753], +[0,30868,16480,1414,2070,2203,14775,30889,2658], +[0,30829,31731,30870,5131,12295,30871,12296], +[1,2349,26822], +[0,26823,0,26824,2540], +[0,3533,30018,28941,29602], +[0,29699,2942,6807,1179,1745,29703,29753], +"microtime", +[1,2349,26828], +"theredoc", +[0,26829,26830,26831,2488], +[0,31834,31846,29951,66,29890,5582,635,29057,1091,1525,18145,30089,31002,13812,2822,26014,3079,3181,3310,30095,4025,6477,4135,4183,4474,91], +[0,1177,1939,1959,1969,2151,1192,2829,3123,4039,30269], +[0,5593,1745,1179,1783,5061], +[1,2349,26833], +[0,26834,26841,26848,34552], +[0,7614,19976,3445,1371,1437,2020,2975,3478,4484,1209,4135,1593,3742,2924,1457,2151,4447,1525,2641,1483,1710,1869,3884,13834,4689,30459,4562,30876,3885,30878,32359,30882,9329,4681,30890,2651,30895,30896,4676,30899,30900,30902], +[2,13090,4226], +"lazy-cache", +"list-item", +[3,19516,13], +"mixin-deep", +"repeat-string", +[0,36864,18055,4883,8286,30913,3904,33768,29125,30915,30919,4985,38298], +"glossary", +[2,4001,1932], +" of contents", +[2,176,26844], +"of-contents", +[2,16065,26846], +[0,89,12478,2924,1745,18061,18063,467], +"node-bundle-require", +[1,2349,26851], +[0,26853,26856,26857,2457], +[2,28001,28034,16111], +[0,4484,2735,547], +[2,24559,18089], +"gemoji", +[0,3377,1192,89,1177,4039,4042,4468,2151,1894,3824,91,5087,4874,4880,4883,8656,8660,972,2780,10817,968,1011,20562,1009], +[0,2733,5130,89,5131,1896,24364,8674,1591,8677,8678], +[1,2349,26860], +"CommonMark", +[0,0,26861,26862,2540], +[0,5087,1009,1011,1593,1596,1637,1177,1192,2774,2794,2832,30935,4042,4468,91], +[0,32814,6422,6805,2013,24800,31767,91,5284,11512,4627,3111,30430,11608,6400,1936,9622,8174,30937], +[1,2349,26864], +[0,26867,0,26871,2540], +"jsonpointer", +"run-con", +[0,1497,9272,9273,3744,97,6372,444], +[3,11026,13], +"uilder", +[2,10829,2202], +[0,89,5128,9267,30943,6653], +"babel-re", +"@markedjs/eslint-config", +"@markedjs/", +"testutils", +[2,26874,26875], +"marked-", +[2,26877,5342], +[1,2349,26884], +"marked-man", +"recheck", +"@egjs/component", +"@egjs/list-differ", +[0,26886,0,26887,34552], +"markup", +[0,97,3744,9273], +[0,89,5128,9267,699], +[1,2349,26889], +[0,26890,0,26891,4194], +[0,1497,3847,9272,3744,97,5090], +[0,89,5128,9267,594], +[1,2349,26893], +[0,26894,0,26896,2531], +[0,30963,30964,1699,3547], +"v8-argv", +[0,91,4521,678,12659,4030,7096,5592,30967,30968,5995,30969], +[1,2349,26898], +[0,26899,0,26896,2531], +[0,30978], +[3,2718,14], +"refixer", +[2,26900,26901], +[1,2349,26904], +[0,26911,26912,26913,2540], +"vent-listener", +[2,11352,26905], +"typed-event-target", +"simple-assign", +"@onesy", +[3,1441,29,6], +[0,1091,4135,2105,30986,30987,31339,20786,2745,27168], +[0,16499,1983,1984,1597,2071,91,36864,3401,19232], +[0,30990,30991,20998,5194,5130,2323,5284,1936,6082,1783,6710,30993,38087,8674,12479,5347,5348,30997,30998,30999], +"react-medium-image-zoom", +"complex.js", +"latex", +"escape-latex", +[1,2349,26919], +[0,0,26923,26928,34552], +"-natural-sort", +[2,5284,26920], +[2,17414,3046], +[0,1759,20463,1763], +"jsep", +"ndarray", +"-determinant", +[2,26925,26926], +[0,89,3286,23803,1759], +[2,28402,28403], +"ndarray-gemm", +"ops", +"ndarray-ops", +"ndarray-pack", +"numeric", +"numericjs", +"pad-", +[1,2349,26939], +"l-time-collaboration", +[0,26942,26943,26948,2540], +"sylvester", +"zeros", +[0,31705,4227,31044,4121,2626,6473], +[0,4757,1192,3144,1177,3266,1701,2924,2151,2182,1894,1610,3758,4507,2794,91,53,5087,4874,1615,4677,1195,29283,3401,3878,4891,4864,21122,8818,31054,4681,31055,33002,31057,2784,4409,1895,1955,2780,4684,5241], +"mathematics", +"algebra", +"complex", +"fraction", +[0,89,5284,2924,26375,11498,31062,3000,2998,6109,6609,2999], +[1,2349,26950], +[0,0,26951,26952,2457], +[0,34264,2222,31069], +[0,31076,2220,2844,553,91,9381,5130,1932], +[1,2349,26954], +[0,26955,26957,26958,34552], +[0,3467,6482,1983,31090,1371,1437,2020,1759,1209,3539,4135,1458,3363,3471,2924,1457,2151,2720,1894,1525,1587,1483,1628,91,3921,31091,31093,1393,13223,1540,4025,4307,31094,31095,31096,31097,9322,3878,31098,31099,31101,8161,29182,31105,10936,31106,31109,31110,31111,2651,31114,4679,4684,31117,12361,3177,4676,31120,31123,31125,4992,31127,2135,24723], +"charenc", +[0,1192,89,2190,3824,5087,4874,4870,31131,4864,31134,31138,4985], +[0,31140,6354,31141,17944,31146,31153,27837,5592,1303,5130,27,1781,2934,31154,33359,3424,28438,3469,4030,7096,1965,31155,12479,5284,29727,31047,31048,31045,31042,31156,31171,5995,18063,31175,2968,31176,89,6071], +[1,2349,26960], +[0,26961,26962,26964,2540], +[0,53,4982,1420,1595,31187], +[0,4361], +"md5sum", +[0,11525,8221,89,364,5592], +"checksum", +[1,2349,26967], +[0,26968,26991,26994,2540], +[0,104,18089], +[2,27022,27023], +"d-character-reference", +[2,5877,26970], +[2,15103,26971], +[3,17995,15], +"decode-n", +"-char", +"-reference", +[2,6842,26976], +[2,26975,26977], +[2,10129,26978], +[2,26974,26979], +[2,26973,26980], +[3,26981,22], +[2,26982,1871], +[2,3370,16906], +[2,26973,26984], +[2,26973,5511], +[2,26973,553], +[3,4292,10], +[2,26988,8193], +[2,9406,26989], +[0,31206], +[2,20627,6660], +[2,17991,6147], +[0,1936,2587,1172,23267,36587,23266], +[3,3137,10], +[1,2349,26997], +[0,0,0,26998,2540], +[0,11961,10339,10340,5122,5995,1594], +[1,2349,27001], +[3,26986,16], +[0,27004,27007,7539,2531], +"anitize-uri", +[2,27000,27002], +[0,1673,1511,31225], +"lines", +"trim-lines", +[0,2675,1984,91,4874,975,11976,192,11978,7677,5467], +[2,3138,3987], +[3,12133,20], +[2,27009,3987], +[1,2349,27012], +[0,27013,0,27014,2531], +[0,1004], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31239], +[1,2349,27019], +[2,27577,3432], +"mdn", +"mozilla", +[0,27013,0,27020,2488], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31260], +[1,2349,27024], +[3,10848,19], +[3,2791,11], +[0,27013,0,27025,2488], +[0,6400,4967,12042,12045,12047,1424,12048,12049,12050,12044,12056,12058,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,31268], +[1,2349,27027], +[0,27013,0,27028,2540], +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238,31276], +[1,2349,27030], +[0,30556,0,2523,34552], +[1,2349,27032], +[0,27013,0,27028,2457], +[1,2349,27034], +[0,27035,27036,27037,34552], +[0,7709,33828,31294,31296,28384,1364,1532,1553,1560,1575,1594,29013,1874,2026,31300,31303,2040,33596,13870,2212,31305,2593,2738,11993,2863,1209,3173,3220,3222,3237,3242,3345,3478,12286,17009,4143,4351,31306,1155,25370,4729], +[0,7806,38176,9227,5601,7808,10406,8264,4870,38179,24156,4874,16936,4891,9241,2020,2659,3297,4342,91,1984], +[0,12322,3730,30045,31310,31311,6949,21611,31312,5403,5995,4699,2026,20863], +[1,2349,27039], +[0,27040,0,27041,2488], +[0,188,4452,1593,668,2822,2924,1457,3084,1628,3560,4027,4634,4639,13152,53,1615,2092,1165,1195,37215,31325,4689,36119,3618,31331,31332,4681,1584,3676,31333,31334,4645,31343,3177,31347,31348,1549,31351,31353,3463,21287], +[0,1745,1179,188], +[1,2349,27043], +[0,27044,0,27045,34552], +[0,3725,3105,18587,3114,3107,31343,13122], +[0,1745,1179,1783,188,19469], +[1,2349,27048], +"@blazediff/core", +[0,27049,0,27050,34552], +[0,31332,3008,3084], +[0,1745,1179,188,19469], +[1,2349,27052], +[0,27053,0,27050,2488], +[0,31331,3029], +[1,2349,27055], +[0,27057,0,27050,2488], +[3,26482,36], +[0,31331,1615], +[1,2349,27059], +[0,27060,0,27050,4194], +[0,3412,31331], +[1,2349,27063], +"server-only", +[0,27064,0,27050,2531], +[0,31331,31343], +[1,2349,27067], +"@types/title", +[0,27068,0,27050,2540], +[0,31331], +[2,27074,29387], +[1,2349,27071], +[0,27072,27075,27050,2531], +[0,1437,1869,2151,2205,2226,2570,4135,4452,10761], +"hashring", +[3,30708,19], +[0,31414], +"jackpot", +[1,2349,27079], +"InnoDB memcached API", +[0,27082,0,27050,2540], +"failover", +"hashing", +[0,1209,4333,13092,4334,31331,21288,31348,31375,31425,31314], +"membase", +"memcache", +"nMemcached", +[1,2349,27087], +[0,27088,27089,27095,2540], +[0,31434,31435,31438,31442,31444], +[0,1429,2899,4474,2924,48,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,31455,31456,92], +"@json", +"joy.com/json-pack", +[2,27090,27091], +[3,27092,13], +[2,27093,614], +[0,31459,31460,9439,31461,5131,11194,4653,1616,31462,31463], +"tree-dump", +[1,2349,27102], +[3,7746,11], +[2,8184,3358], +[3,4490,14], +[2,27100,10896], +[0,27104,27116,27095,4194], +"fs.js", +[0,31435,31469,31470], +"in-memory", +"fsa", +" access", +[2,6771,27107], +" file system", +[2,970,27109], +"webfs", +"crudfs", +"opfs", +"casfs", +"content ", +[0,1429,2899,4474,2924,48,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,31456,92], +"able storage", +[2,15427,27117], +[2,27115,27118], +"pvu", +[1,2349,27123], +[2,7467,11017], +[0,27128,27129,27095,2488], +[2,24399,4162], +[2,2068,7906], +"mem", +"nanocolors", +[0,3698,11194,1582,31477,31480], +[0,1429,2899,1177,1593,4474,2924,4469,48,1628,91,53,13693,4856,5087,4874,3165,3400,4677,6503,4880,4307,31484,5000,85,94,87,1954,1959,1938,1958,1895,1903,1955,1970,92], +"memoization", +[1,2349,27132], +[0,27133,27137,27095,2457], +[0,31465,31477,31480,31489,31490,31492], +[2,27135,1276], +[3,5536,15], +"gulp-exit", +[0,1429,4653,2899,1177,9420,1593,4474,2924,1894,48,91,53,13693,4856,5087,4874,3400,4677,6503,85,94,87,1954,1959,1938,1958,31496,1895,1903,1955,1970,92], +"ram", +[1,2349,27140], +[0,27141,27116,27095,2457], +[0,4729,31435,31469], +[1,2349,27143], +[0,27144,0,27145,34552], +[0,31515,1497], +[0,31517,31518,5131,12344], +[1,2349,27147], +[0,0,0,7987,2540], +[1,2349,27149], +[0,0,0,27150,34552], +[0,1098,5130,1388,17050,5472,12899], +[1,2349,27152], +[0,9764,27153,27154,2540], +[0,1166,1437,1596,3421,4255,4257], +[0,1111,14903,200,30248,2966], +[1,2349,27156], +[0,17287,27157,27159,2531], +[0,23689,7892,10410,4874,20959,28502,1364,28556,2323,31190,2526,2765,31539,31540,2272,3297,4039,4089,31541,4130,4474,4487,31194,91,31195,31186], +"fast refresh", +[0,1973,5472,11132,13841,28522], +[1,2349,27161], +[0,0,27169,27172,34552], +"trim-newlines", +[2,1420,21640], +[2,1677,21640], +"_comments", +[2,6865,27165], +[3,9488,13], +[2,27167,2104], +[0,1173,1178,14318,1264,14237,1272,1177,1881,13936,1895,1935,1938,2126,2675,1192,2990,1894,4039,4535], +"-options", +[2,3183,27170], +[0,31549,31550,31553,31565,9006,3015,31566,15813,10725,30672,5066,15571,89,31567,1098,188,12295,5131,28125,31568,31569], +"cat", +"kitten", +[1,2349,27176], +[0,27177,27178,27179,4194], +[0,17013,31573,18695,1525,1544,18671,2107,2036,14940,18708,3173,31576,4039,18667,4449,18670,4547,18692], +[0,442,4856,9417,31586,31593,6494,31595,7746,4874,31607,6520,31613,1009,1011,31615,1429,1431,1587,1177,1895,1951,1954,1955,2020,2116,2212,12870,2899,3560,1894,6021,4085,4135,4193,4196,18698,4474,91], +[0,14932,1388,6147,9381,4967,13441], +[1,2349,27181], +[0,27182,27183,27186,2540], +[0,31573,14940,18714,18675,4039,4085,12937], +[0,1429,1431,2899,31627], +"from2", +"is-standalone-pwa", +[0,9381,6147,4967,1388,14932,13441], +[1,2349,27188], +[0,27192,27197,27186,2540], +[2,3028,5056], +"stat-mode", +"ware", +[0,17013,2036,6474,3173], +"drafts", +[2,10722,27193], +"dir-equal", +[2,15340,27195], +[0,1429,18766,2026,2272,2899,14942,4008,4085], +[1,2349,27199], +[0,27200,27201,27207,2540], +[0,2674], +[0,2292,2272,2899,4170], +"7zip-bin", +"node-7z", +"er-helper", +[2,18536,27204], +[2,3306,27205], +[0,13428,1388,14336,12197,5472], +[1,2349,27209], +[0,0,27210,27211,2540], +[0,1173,1175,31653,1264,1429,2899], +[0,1420,15321,1623,965], +[1,2349,27213], +[0,0,27214,27215,2540], +[0,19325,31265,1414,1537,1894,3985,3998,4039,4389,4505,91,1906], +[0,1936,18944,18089,6843,11043,1213,31661], +[1,2349,27217], +[0,0,27214,27218,2531], +[0,1936,31670,18944,18089,6843,11043,1213,31661], +[1,2349,27220], +[0,0,27214,27222,2540], +"@surma/rollup-plugin-off-main-thread", +[0,1936,18944,18089,6843,11043,1213], +"asyncro", +[3,1225,32], +[2,27224,6567], +[3,13998,31], +[2,7256,591], +[2,27226,27227], +[1,2349,27236], +"throw-", +[2,27230,27227], +[2,69,27231], +"directory-", +[2,27233,1633], +[3,16482,15], +[0,0,27240,27241,2540], +"evelopit", +[2,27235,27237], +"merge-d", +[0,19325,31265,1414,1537,2577,2584,1894,3971,3985,3998,4039,4389,4505,91,4549,1906], +[0,1936,18944,26934,6843,11043,31661,31676,1213], +"river-install", +[2,27239,27242], +[2,3382,27243], +[1,2349,27247], +[2,14585,6082], +[0,0,0,10578,2488], +[1,2349,27249], +[0,27250,22514,27253,2540], +[0,31701], +[2,9280,20627], +[2,17991,27251], +[0,1473,7208,6616,1623], +[1,2349,27268], +"factory-space", +[2,17991,27255], +[3,17995,17], +"unked", +[2,27257,27258], +[3,17995,16], +"ombine-extensions", +[2,27260,27261], +[2,26973,10368], +"resolve-all", +[2,26973,27264], +"ubtokenize", +[2,27000,27266], +[0,0,23230,27269,2531], +[0,965,1936,14186,34254,11590,1644,1646], +[1,2349,27271], +[0,27272,16497,27273,2540], +[0,2053,31724,20273], +[0,1739,1745,8623,1179,1783,5354,26096], +[1,2349,27279], +"fill-range", +"@ember-tooling/blueprint-model", +"bracket", +[2,24559,1227], +[0,0,27283,27284,2531], +"expansion", +"extglobs", +"lookahead", +[0,2899,1429,2759], +[0,1623,6413,3766,31991,5131,1644,3529], +"lookaround", +[1,2349,27288], +"lookbehind", +[0,0,27290,27294,34552], +"negate", +[0,1596,2759], +"negation", +[2,7623,22245], +"posix", +[0,1871,3656,16906,1623,25232,6422], +[1,2349,27296], +[0,27297,27300,27305,2540], +[0,1634], +[3,7746,12], +[2,27298,1747], +[0,1414,668,1177,2899,4042,4228], +"mime-score", +"runmd", +[2,4865,27304], +"rex", +[0,1623,15215,2632,3178,16918,16919,31748], +[1,2349,27307], +[0,27308,27309,27310,2540], +[0,1147], +[0,1177,1895,1955,1894,4384], +[0,5675,57,7119,200,1523,7058,16159,31759], +[1,2349,27312], +[0,27313,0,27331,4194], +[0,1122,1125,31764,1129,1532,2220,2222,2817,18023], +"Min Heap", +"min heap", +"maxheap", +"min-heap", +"heap", +"Binary Heap", +"binary-heap", +[2,7247,17709], +[2,27318,27321], +[2,27315,27321], +" binary tree", +[2,15773,27324], +"heapify", +[2,13199,2656], +"heap sort", +"@utoo/pack", +"heapify up", +[0,31775,5995,2195,31776], +"heapify down", +"Priority Queue", +"priority", +[1,2349,27342], +" queue", +[2,27334,27336], +[3,18020,13], +"-queue", +[2,27334,27339], +"priority q", +[0,27345,0,27351,2540], +"priorityQ", +[3,27325,15], +[0,2817,3502,18023], +"extract min", +"min ", +[2,27347,27337], +" priority", +[2,7287,27349], +[0,31775,5995,13531,20999], +"ing property", +[2,4327,27352], +" resizing", +[2,14000,27354], +"priority-", +[2,27356,20332], +[2,27357,26754], +[2,11512,27349], +[2,3768,27349], +[1,2349,27362], +[0,27364,0,27367,2540], +"decrease key", +[0,1532,2817,3181,3502,18023,31802], +"increase key", +"searching", +[0,31775,5995,17977], +[1,2349,27369], +[0,27370,0,27371,2540], +[0,31809,2714,2867,3181], +[0,31775,5995,31804,31812], +[1,2349,27373], +[0,27374,0,27375,2531], +[0,1122,1125,31764,1129,1532,2220,2222,2817,3502,18023], +[0,31775,5995,2195], +[1,2349,27381], +"@putout/minify", +"b64-images", +[2,1625,27378], +"readjson", +[0,27382,0,27383,2540], +[0,1122,1125,31764,1129,2817,3502,18023], +[0,31775,5995,17978], +[1,2349,27389], +"try-catch", +"@arktype/attest", +"bench-node", +"try-to-catch", +[0,0,0,27396,2540], +"escover", +[3,19709,16], +"tout", +[2,27391,27392], +"madrun", +"supertape", +[0,31775,5995], +[1,2349,27398], +[0,27399,0,27396,2402], +[0,3502], +[1,2349,27402], +"brace", +[0,0,27405,27409,2488], +"-expansion", +[2,27401,27403], +[0,5087,4874,1596,2070,1192,2822,31851,4468,4487,4490,31194,91], +[2,25824,27403], +[2,4853,27406], +"zstandard", +[0,36720,7119,57,22856,5131,31568,7310,28125,888,8549,1388,18691], +[1,2349,27411], +[0,27413,27414,27415,34552], +"jest-fixed-jsdom", +[0,3127,3725,31872,31873,31869,8959,6330], +[0,1192,1170,2675,2968,1177,3188,4039,4042,4333,1637,1457,32826,1894,11401,1610,1193,53,1532,2990,2997,3400,1387,13834,8648,87,1939,31897,31901,4048,68,1938,4077,4069,1895,1955,4055,31899,1567,4067], +[0,2295,1739,1745,31903,1179], +[1,2349,27417], +[0,27419,27420,27422,2402], +[2,27423,13083], +[0,3445,1437,4747,1544,31910,17964,1836,2151,2182,3084,31915,3000,4151,4562,21847,31911,1549], +[0,1166,1594,2020,2675,1177,4039,4042,2990,31917,4257,19286,31919], +[3,927,11], +[0,17964,2295,1739,1745,31903,1179,200], +[3,1915,14], +[2,27426,15001], +"signed", +"@prettier/", +[2,19569,27530], +"certificate", +[1,2349,27430], +[0,27431,0,27432,2531], +[0,31939], +[0,965,31838,2814,5131,35059], +"fast-archy", +[1,2349,27435], +[0,27436,27437,27439,2540], +[0,37135,1209,3847], +[0,48,53,87,90,1193,1503,1843,1845,1177,1895,1903,31952,1938,1954,1958,1959,1970,1192,1894,31953,3744,3775,89,3824,3904], +"ufo", +[0,1843,1192,8745,21009,3717,1448,6270,5472,2275,1973], +[3,28920,12], +"dom-selector", +"jest-stencil-runner", +"fast-color", +[2,2023,9463], +[2,21195,27444], +[1,2349,27452], +"mobservable", +"reactive", +"frp", +[3,19780,13], +"active", +[0,27453,0,27460,2531], +[0,1086,31969,1362,31970,4484,4734], +"-programming", +[2,27451,27454], +[2,27450,27455], +[3,17943,11], +[2,6649,27457], +"data flow", +[0,12666,1149,31972,31973,31974,31975,20672,31976,31977,7682,2090,158,3097,6774,5131,31978,31979,1644,1862,3972,31980,2056], +[1,2349,27462], +[0,0,8176,27466,2488], +[3,517,14], +[2,3191,1422], +[3,31504,15], +[0,1867,23615,1936,18944,18089,31998,2574,20215,6435,1283,23584,6692,22982,4741,32000,32002], +[2,13163,10101], +"expose-gc", +[1,2349,27473], +"-detector", +[3,20575,13], +"thingies", +[0,27516,27522,27523,2531], +"browser-st", +"dout", +[2,27474,27475], +"yargs-", +"@types/depd", +"rser", +"unparser", +[2,27477,27480], +"@11ty/posthtml-urls", +"inclu", +"-language", +[2,8785,27484], +[2,27483,27485], +[2,5340,27486], +"@moch", +"a/docdash", +[2,27488,27489], +"fail-", +"on-e", +[2,10372,4408], +[2,27492,27493], +[2,27491,27494], +"s-utils", +[2,13587,27496], +"inline-links", +[2,3986,27498], +"rewiremock", +"unexpected", +[2,668,27511], +"-eventemitter", +[2,27501,27503], +[3,27504,11], +[2,27505,3053], +[2,27505,3065], +[3,27507,12], +[2,27508,2917], +"uslug", +[3,1208,16,5], +"@11ty/recursive-copy", +"node-retrieve-globals", +[2,9374,27515], +"match-helper", +[0,1448,32006,1869,1291,1180,1287,2151,32007,3127,3183,37708], +[2,5329,11807], +[2,5340,23767], +[2,9309,27520], +"node-loader", +"@zachleat/noop", +[0,1173,1208,1240,1280,1503,32009,1177,2899,3421], +[0,1776,5592,1746,1745,6789,32011,6746,32013,7221,32015,7011,32016,6615,32018,7194,32019,32027], +[1,2349,27527], +"test-console", +"xmllint", +[0,0,9887,27528,2540], +[0,1177,6741,6939,1932,9711,5547,3624,2295,1745], +[1,2349,27535], +"-exports", +[2,151,27533], +"lcov", +"moji", +[2,9477,7204], +[0,0,27536,27538,2540], +[0,2212,4257,4389], +[2,120,28708], +[0,1745,3966,32037,27018,32038,30248,202], +[1,2349,27540], +[0,15831,27541,27545,2540], +[0,4874,1414,1894,3985,3998,4481,4505,91,1906], +"define-", +[2,14678,3205], +[2,27542,27543], +[0,23266,2587,23267,614,6435,1936,2741,11512], +"-descriptors", +[2,9395,27546], +[1,2349,27560], +"-val", +"ue-fixtures", +[2,27549,27550], +[2,5600,27551], +[3,7810,10], +"-each", +[2,27553,27554], +"s-have-names", +[2,23238,27556], +[3,18432,11], +[2,27558,7083], +[0,15831,27541,27561,34552], +[0,23266,2587,23267,614,6435,1936,1623,3585,1644], +"@types/gopd", +[3,6497,11], +[2,27563,19065], +[3,4637,11], +[2,27565,20102], +[2,27563,27566], +[2,27563,2568], +[3,18491,11], +[2,27569,18985], +[2,13201,4552], +[3,26581,12], +[2,27572,19072], +[3,27573,13], +[2,27574,19077], +[2,27572,15058], +[3,8860,14], +[2,27577,3430], +[3,8860,13], +[2,27579,3022], +[1,2349,27582], +[0,27583,27584,27586,2540], +[0,12396,23288,23289,3746,4233,23257,23258], +[0,7729,4874,1414,2854,3493,1894,3985,3998,4505,91,1906], +"@sap/hana-client", +[0,23266,2587,23267,614,6435,1936,3493,6892,1633], +[1,2349,27588], +[0,15831,23230,27589,2531], +[0,23266,2587,23267,614,6435,1936,6941,11512,32101,32122,3661], +[1,2349,27591], +[0,27592,27594,27595,4194], +[0,24566], +"hrottler", +[0,1999,3165,1894,4387,4389], +[0,6892,1936,1644,1646], +[1,2349,27597], +[0,0,27598,27599,2531], +[0,4874,1414,23276,2577,2584,3310,1894,3985,3998,4505,91,1906], +[0,1936,23670,10381,1213,11512,32143,12616,7102], +[1,2349,27604], +"unix-dgram", +"webidl2", +"unittest", +[0,27605,0,27606,2531], +[0,1676], +[0,27,2671,2934,2026,2078,32897,30135,33117,32150,32153,32154,32897,30131,32155,5995], +[1,2349,27611], +[2,2364,21928], +"-phantomjs", +[2,2463,27609], +[0,0,21197,27613,2540], +"mockJSON", +[0,1623,5260,32164,3561], +"mockAjax", +[1,2349,27616], +[0,27617,27618,27620,2540], +[0,2711], +[0,24118,24114], +"faste", +[0,1172,89,2711,5130,10772,24120,23361], +[1,2349,27625], +"st-validator", +[2,27619,27622], +[2,5310,2282], +[0,27617,27627,27620,34552], +"@icebob/node-memwatch", +[0,32144,32191,24118,24114], +"@types/bunyan", +"oredis", +[2,8802,27629], +"no", +"@types/pino", +"avsc", +[2,1317,1289], +"cbor-x", +"dd-trace", +"etcd3", +"event-l", +"oop-stats", +[2,27638,27639], +"fakerator", +[1,2349,27653], +"gc-stats", +"jaeger-client", +"kafka-node", +"-repl", +[2,3219,27646], +"msgpack5", +"nats", +"node-n", +"ats-streaming", +[2,27650,27651], +[0,0,0,27661,2540], +[2,29351,4255,591], +"notepack.io", +"redlock", +"rhea-promise", +"thrift", +"v8-natives", +[2,4712,13083], +[0,1172,89,2711,5130,10772,24120,1936,24122,36,965,1388,4042,32199,32200,6802], +[3,14584,12], +[1,2349,27665], +"messagebus", +[0,0,27667,27668,2540], +"distributed", +[0,1700,2323,1637,3561,2494,32214,2482,2549,32215], +[0,1623,6398,6400,5130,5122,32219], +"ppsm", +[1,2349,27671], +[0,27672,27673,27674,2540], +[0,3220,4110], +[0,1149,2228,2258,2274,2281,2314,1776,1209,705], +[0,1367,32226,32227,1745,1776,18011,699], +[1,2349,27676], +[0,0,27677,27682,34552], +[0,23689,4874,28502,2765,2272,4130,4487,31194,91,31195], +"zone", +"timezone", +"olson", +"iana", +[0,1973,5472,11132,13841,28522,2765], +[1,2349,27684], +[0,27685,27704,27721,34552], +[0,16738,35957,7824,2798,3717,4468], +[2,5335,553], +[2,1351,27686], +[2,21289,27687], +"-provider", +[2,2138,27689], +[2,23107,27690], +[2,21289,27691], +[2,21289,553], +"worker-", +[2,27694,10057], +[2,21289,27695], +[3,27687,16], +"extdocument", +[2,27697,27698], +[2,4619,27699], +[3,27700,23], +[2,27701,103], +"vscode-uri", +[0,32243,10,13,16,19,21,24,26,30,32,34,53,87,192,22559,19181,442,16738,8755,554,4864,5087,4874,5254,1009,1011,27726,1193,1437,16307,1567,1610,10936,1177,1895,1938,1939,1942,1955,2020,2151,32245,2070,2203,2675,1192,2780,2832,3534,1894,4039,4094,4135,4484,4494,4507,91,4523,4769], +"cohaszing", +[2,15276,27705], +[3,25072,11], +"monaco", +"@remcohaszing/eslint", +"remcohaszing", +[2,3996,27710], +"yaml-l", +[2,15675,2995], +[2,27712,27713], +[2,27716,27717], +[3,162,22], +"tegrations-common", +[2,8214,27719], +"-pattern", +[2,10853,11597], +[0,1192,91,1098,5472], +"monads", +"either", +"maybe", +"result", +[2,1101,1177], +[1,2349,27728], +[0,27729,27734,27736,34552], +[0,11518,1420,1437,1457,1525,1544,16082,3445,3613,3616,4200,4207,33212,4562,4729], +"-connect", +[2,1304,27730], +"paginator", +[2,10784,27732], +[0,53,368,7948,370,554,811,816,32251,842,16145,966,968,972,974,11485,5087,19799,4874,4880,4883,24370,10844,9241,1009,1011,1030,32252,10783,1165,1610,1177,1895,1903,1938,1953,1958,1959,1192,2802,695,3363,3400,3561,37015,32253,1894,89,3824,3847,4039,4042,8849,4057,15277,2278,4315,4383,91,1983,32255], +"free-swig", +[0,5472,1192,4967,17758,1676,32264], +"gridfs-stream", +"mongodb-", +[2,3764,57], +[2,27738,27739], +[1,2349,27748], +[2,17037,15988], +[2,22785,4408], +"@types/rollup", +"istration", +[2,20897,27745], +"GUI", +[0,27753,27754,27755,4194], +"manage-mongo", +"phpmyadmin", +"UI", +"web-based", +[0,2757,32269], +[0,32272,32273,2398,2036,2899,5354], +[0,21738,13230,1676,1739,1745,16284,8623,1179,2036,1383,6706,3430,32275,32277,1209,6807,1783,1283,5354,26096], +[1,2349,27763], +"@mon", +"godb-js/saslprep", +[2,27757,27758], +"-string-url", +[2,21404,27760], +[2,27738,27761], +[0,27766,27770,27783,2402], +"socks", +"snappy", +[0,32281], +"mocha-sinon", +"gcp-metadata", +"legacy", +[0,3088,3310,1187], +"erberos", +[2,13053,27771], +[3,7814,10], +"lprep", +[2,27773,27774], +"v8-heapsnapshot", +[3,27759,12], +"zstd", +[2,27777,27778], +[3,15507,14], +[2,27780,1002], +[2,9415,1435], +[0,3088,32289,4017,36,5995], +"mongodb-c", +[2,20203,7141], +[2,27784,27785], +[3,1982,16], +"@jimp/js-bmp", +"used-imports", +[2,27787,27789], +[3,13547,28], +[2,27791,591], +"@jimp/js-gif", +[1,2349,27808], +"@jimp/js-jpeg", +"@jimp/js-png", +"@jimp/js-tiff", +"kareem", +"mpath", +"mquery", +"sift", +[2,27804,27811], +"acquit", +[3,24788,12], +"acquit-ignore", +"acquit-", +[2,27806,3209], +[0,27809,27889,27903,4194], +[0,26987], +[2,3044,5056], +"-blit", +"odm", +[2,27815,27816], +"datastore", +[3,27802,15], +"ur", +[2,27818,27819], +[3,27802,13], +"circle", +[2,27823,27824], +"-callbacks", +[2,1292,27821], +[3,27817,14], +"olor", +[2,27828,27831], +"node-monitor", +[2,21004,14837], +[3,27820,15], +"probe", +"JMX", +"ntain", +[2,27828,10177], +[2,27823,9970], +[2,27818,27836], +[2,9280,3233], +"displace", +"dashboard", +"monitoring", +"control ", +[2,27839,9872], +[2,27842,27843], +[3,27834,15], +"ther", +[2,27818,27860], +[3,6503,9], +"ngodb", +[2,27845,27846], +"-middleware-cast-ids", +[2,3236,27848], +[3,27849,16], +"fields", +[2,27850,27851], +"-callback", +[2,2034,27853], +[2,27850,27854], +[2,27850,14690], +[2,27850,3766], +[2,9251,21404], +[2,27850,27858], +"fisheye", +"gitbook-cli", +"gitbook-", +"plugin-a", +"nker-enable", +[2,27863,27864], +[2,27862,27865], +[3,27866,15], +[2,5317,4147], +[2,27867,27868], +[2,27876,27877], +"edit-link", +[2,27867,27871], +[2,27867,2195], +[2,27867,588], +[2,27850,1676], +[3,27844,14], +"lip", +[2,27818,3428], +[2,27818,10098], +[2,27818,24171], +[2,27818,27882], +"quantize", +[2,27818,24800], +[2,27885,27886], +[3,27883,14], +"otate", +[2,27818,17487], +"@jimp/utils", +[0,4874,1414,3167,1894,3985,3998,4505,91,1906], +[2,27891,27892], +"@jimp/co", +"nfig-eslint", +[2,24787,27894], +[3,549,17,16], +[2,27896,1984], +[3,27890,13], +"commist", +"node-self", +"help-me", +[2,1983,27901], +[3,19232,22,6], +"mqtt-packet", +[0,3167,32300,32301,10381,7131,32303,1936,3987,1783,4549], +"-allocator", +[2,6988,27904], +[1,2349,27911], +[2,19332,6706], +"wsl-utils", +"monocart-coverage-reports", +"worker-timers", +[0,0,0,27925,2540], +"aedes-cli", +[3,5616,9], +[2,27913,202], +[2,11932,27914], +"leak", +"ed-handles", +[2,27916,27917], +"mqtt-", +[2,27919,21404], +"tinyglobby", +"node-style-text", +"level-store", +[2,27919,27923], +[0,3167,614,6435,1936,10368], +"/subscribe", +[2,20001,27926], +[2,19177,1783], +[1,2349,27932], +[2,27931,29682], +[3,218,19], +[0,0,0,27935,2402], +[2,26343,27934], +"ibus-quod", +[0,3167,614,6435,1936,10381,1213], +"@tediousjs/connection-string", +[1,2349,27938], +[0,0,27941,27947,2540], +"msnodesql", +"tds", +[0,16268,2228,2272,3220,4720,4535,17565,2296,32324,2283,2253,2273,2281], +"node-tds", +"qlserver", +[2,3343,27943], +"msnodesqlv8", +"node-m", +[0,4576,5131,7310,31568,13735,22856,1388,15525,32334,32336], +"node-mssql", +"list-dependents-cli", +[1,2349,27951], +[0,27952,27956,27965,2540], +[0,16868], +"@bundled-es-modules/cookie", +[3,27953,20], +"until-async", +[0,1192,1177,4468,1894,91,5087,4874,16874,1895,1011,1009], +[3,546,12], +"nfirm", +[2,27957,27958], +"@types/sta", +"tuses", +[2,27960,27961], +"headers-", +[2,27963,6422], +[0,32345,32346,1623], +[2,8140,14643], +"json-bigint", +"page", +"page-with", +[1,2349,27971], +[0,27972,23230,27973,34552], +[0,9315,34578,31644,26972,32360,32364,32365], +[0,1644,1936,6843,11043,18944,18089], +[1,2349,27975], +[0,0,0,27976,2540], +[0,3561,22147,676,134,89,1623,32372], +[1,2349,27979], +"append-field", +[0,27980,21197,27985,2531], +[0,16837], +"fs-temp", +"testd", +"ata-w3c-json-form", +[2,27982,27983], +[0,1623,5260,3561], +"formdata", +[1,2349,27988], +[0,0,27989,27990,2488], +[0,53,87,32389,10706,32390,1177,2765,2297,2881,2886,2895,2898,2910,2923,29946,3750,3758,4042,4045,6390,4071,4073,25238,824], +[0,22562,3758,3541,13428,32395,32396,5926,5472,11132,3750,28522,824,30271], +[1,2349,27993], +"array-union", +[0,27996,27997,27998,2488], +[3,20454,11], +"oxy-addr", +[0,1282,2555,3744], +[0,1389,1391,1437,1700,2323,2351,2404,2494,32402,2530,2541,3159,32405,89,3824,4603], +[0,89,5128,4384,32410,4453,6380,2555,5131], +"pend", +[1,2349,28003], +[3,32265,24], +"@jsumners/line-reporter", +[0,28005,28006,28011,4194], +"vue-drag", +[0,32421,688,28208,691,9712,9296,1091,1092,1437,1458,1543,1676,2226,2687,2822,12284,3173,3422,3423,3467,3742,4135,4183,4213,6479,176,36864,28731,4548,13291], +[0,11976,192,5467,9737,32432,29355,27654,811,8850,816,6373,5245,7637,7746,7812,5254,28736,28557,7677,36874,2675,2931,3297,1890,12285,1894,4042,15277,4494,4507,91,1984], +"test report", +"html ", +"html report", +" to ", +[0,5592,1118,2210,1745,27662,29370,3422,3452,29369,29365,29368,29367,28360,9591,8124], +"json to html", +[1,2349,28014], +[0,0,28015,28016,2457], +[0,5535,972,5087,4880,4883,34722,1009,1011,1597,1701,1177,1895,1955,1959,1961,2193,32447,1192,32448,3165,30935,32449,1894,89,3824,34725,4201,4468,91,32450], +[0,89,31611,5128,20542,4439,32453,1473,6400,13161,30858,3807,7320,31152,6653,32454], +[1,2349,28018], +[0,28019,28020,28021,2540], +[0,11804], +[0,87,90,4880,1843,1845,1192,3775,3904,4042,4045,4055,4067], +[0,4576,5131,7310,31568,13735,22856,1388,32464,32465,15525,11415,7201], +"tory-reporter", +[2,2916,28022], +"mezr", +"web-a", +"nimations-js", +[2,28025,28026], +[1,2349,28029], +[0,0,28031,28032,2540], +"bin-packing", +[0,192,4874,4880,4883,4887,1009,23648,1177,1895,21564,1938,1953,1955,1958,1959,2675,1192,2990,3165,1894,3720,89,3824,3885,3889], +[0,89,7433,38,3884,3885,32473,3286], +[2,20876,28090], +"autolink-", +[2,28001,26766], +"sqlstring", +[1,2349,28041], +[2,27679,2085], +"urun", +"utest", +[0,0,28053,28054,2540], +[2,28050,28065], +[2,28887,28044], +"v2", +"aws-s", +"sl-profiles", +[2,28045,28046], +"generate-", +[2,28048,3046], +[3,29934,12], +"placeholders", +[2,5773,28051], +[0,3421,2832,2297,2899,89,3875,4193,1145,1177,1209,3698,4072,9381,1503,1593,3729,2924,1317,3824,32487,91,53,4874,2900,3876,4880,1195,8821,2925,107,2069,4883,87,4884,1959,3904,32488,966,2904,2881,2912,2895,38299,1011,11470], +[0,2062,4162,89,3797,32491,1693], +[1,2349,28060], +"assert-diff", +"sync-await", +[2,15907,28057], +"poku", +[0,0,0,28061,2540], +[0,3857,5131,12295,12296,6574,2090,11328,30045,32497,2636,2295], +[1,2349,28063], +[0,0,28064,28066,2540], +[0,97,4880,5091,89,3857,91], +"vitest-pool-workers", +[0,3857,5128,31912,89,5131,12295,12296,181,15571,35060,32504,158,32505], +"thenify", +[1,2349,28070], +[2,31468,31471], +[0,26362,28071,28077,2531], +[0,1178,1177,1879,1895,1938,1947,1955,1959,1894,32510], +"bats", +[2,28075,28493,28553], +"switcher", +"@", +"@prisma/dmmf", +[0,3857,5128,31912,89,5131,12295,181,3730,32516,27819,9906,10036,32527,32529,1478,7521], +"gable-next", +[1,2349,28081], +[3,29754,14], +[0,28082,28083,28086,2540], +[0,1654,32535,1655,1660,3744], +[0,32538,10821,14689,10828,32540,1178,1193,38304,1668,1177,1903,1938,1954,1958,1959,32541,1970,2675,1192,2990,1894,3720,89,3857,32510,3904], +"erve-static", +"@react-email/components", +[0,3857,5128,31912,89,5131,12295,12296,13814,15480,9816,1653], +[1,2349,28089], +"couchdb", +[0,28096,28097,28099,34552], +"spanner", +[2,30534,4675], +"@testcontainers/postgresql", +"fastest-", +[2,28093,18729], +"rtl-css-js", +[0,2018], +[0,5079,1177,21166], +"iconista", +[0,3857,5128,31912,89,5133,5131,12295,12296,181,24633,32543,32552], +"pnpm10", +"libreact", +[1,2349,28104], +"jsxstyle", +[0,28105,28106,28107,4194], +[0,21174,4649], +[0,32558,48,53,5241,85,87,14128,90,365,370,6372,811,816,6373,972,20562,4880,1178,1193,1610,1177,1895,1935,1939,1958,1959,1961,2126,29945,2193,32559,1192,30935,1894,3720,89,3824,32561,3904,4039,4042,4045,4073,91], +[0,89,32225,30245,4627,5398,8190,8191], +[1,2349,28109], +[0,28110,28113,28114,4194], +[0,32571,31528,1461], +[2,30495,28112], +"lysia", +[0,30533,5535,966,968,972,32573,4859,4874,4880,4883,1030,16480,1651,2832,23535,89,3824,4201,1531,4484,91,1984], +[0,89,6398,5066,5131,9320], +"gitcloud", +"hasbin", +[2,34316,3863,34320], +"page-icon", +"premove", +"@types/hasbin", +"@types/pa", +"ge-icon", +[2,28121,28122], +[1,2349,28127], +"desktop", +"@vue-macros/common", +[0,28128,28129,28131,2402], +[0,4484,32597], +[0,32632,5535,4201,89,3824], +"proxy-lib", +[0,89,590,1623], +"font-finder", +"pbxproj-dom", +"montag", +"simple-plist", +"ios-device-lib", +[2,21464,1155], +"proper", +"-light", +[1,2349,28146], +"-lockfile", +[2,28138,28141], +"ios-", +"sim-portable", +[2,28143,28144], +[0,0,28148,28149,2540], +[2,28457,28462], +[0,1148,2899,3697], +[0,1623,1473,32453,2585], +"-merge-patch", +[2,2072,28150], +[3,26989,11], +"ackage", +[2,28152,28153], +"@nativescript/doctor", +[1,2349,28160], +"-dev-xcode", +[2,3271,28157], +"provi", +[0,28168,0,7575,2531], +"sion-finder", +[2,28159,28161], +[2,5131,28162], +[2,28143,28163], +"@rigor789/trapezedev-project", +"@rigor789/", +[2,28166,14562], +[0,32733,1004,32730,32737,32739,32744,32722,32736,32741,32720,32678,32725,32727], +[1,2349,28170], +[0,0,28171,27172,2531], +[0,53,87,92,192,5467,5583,16952,6373,10615,5087,4874,1009,1011,1031,17584,1178,1193,19839,1540,1610,1177,1903,1938,1954,1958,1988,2193,2675,2742,1192,2780,2990,4039,4042,4076,91,4630], +[2,32904,364], +[1,2349,28174], +[0,0,28181,24484,4194], +"@types/pl", +"ist", +"@types/plist", +"@types/retry", +[3,5364,9], +[2,28179,3924], +[0,8144,1465,1584,1628,2092,6327,3177,1894,4028,2278,4111,4469,91,4027,2924,4677,4689], +"@types/pacote", +"btab", +[2,8153,28183], +[1,2349,28186], +[0,2514,28188,28201,2540], +"@types/tunnel", +[0,5535,4201,968,972,32632,2780], +"@types/xml2js", +"@types/ar", +"chiver", +[2,28190,28191], +"@types/qr", +"-image", +[2,28193,28194], +[3,7810,11], +[2,28196,2138], +[3,13418,17], +[3,5090,11], +[2,32904,4412], +[0,89,1564,32775,32776,32777], +"er-lockfile", +[2,28199,28202], +"@types/np", +"mcli__arborist", +[2,28204,28205], +[3,9315,10], +[2,9710,15774], +"al-analytics", +[2,9788,28209], +[2,28207,28210], +[1,2349,28213], +[0,28216,28217,28218,34552], +[2,31819,31823], +[3,27933,13], +[0,32782,4484], +[0,5535,4201,32632,32786,1845,89,3824], +[0,32788,89,32789], +"afinn-165", +"-fin", +"ancialmarketnews", +[2,28220,28221], +[2,28219,28222], +"apparatus", +"memjs", +[1,2349,28227], +[0,28250,28252,28254,34552], +"stopwords-iso", +"@libsql/client", +"wordnet-db", +[2,31005,26449,28684], +[1,2349,28233], +[0,31714,0,31730,34552], +"pegjs", +[1,2349,31709], +[2,32904,2942], +" language processing", +[2,3273,28237], +"arti", +"fical intelligence", +[2,28239,28240], +"Porter stemmer", +"Lancaster stemmer", +"bigram", +"trigram", +"quadgram", +"ngram", +"stemmer", +"bayes", +[0,1593,97,32796,32795], +"classifier", +[0,695,3709,2924,1628,91,53,2969,4677,1195,4307,32808,4689,87,4359,4681,92,83,1198,5756,61,78,76], +"phonetic", +[0,7201,1676,5131], +[1,2349,28257], +"metaphone", +[0,0,28259,28281,2402], +"inflector", +[0,4874,9743,4579,1983], +"Wordnet", +"tf-idf", +"logi", +" regression", +[2,17132,28263], +[2,28262,28264], +[2,4420,28256], +"jaro-winkler distance", +" distance", +[2,26006,28268], +"string ", +[2,28270,26017], +"-of-speech tagger", +[2,3251,28272], +"Eric Brill", +"Brill tagger", +" analysis", +[2,4137,28276], +"maxim", +"um entropy modelling", +[2,28278,28279], +[0,1983,5130,6731], +"@mrleebo/prisma-ast", +[2,31733,21302], +[1,2349,28292], +"secure-keys", +[2,28288,6008], +"nconf-yaml", +"@prisma/c", +"key value store", +[2,18124,13729], +"plugabble", +[0,0,28293,28294,2531], +[0,1175,1195,1267,1610,1628,2092,3342,8119,4111,32821,4307,188,4634,4639,4640,4645,2924,4681], +[0,9006,29633,32827,32828,32829,32830,32831,4967,32832], +[1,2349,28296], +[0,28297,0,27041,4194], +[0,1415,1842,31290,31331,4562,31386,6330], +[0,0,28300,28301,34552], +[1,2349,28321], +[0,48,53,61,78,87,92,5601,32840,5087,4874,15600,1009,1011,1175,1193,1198,1177,1881,1895,1938,1955,1192,11948,1894,4131,91], +[0,1192,2022,6703,1149,7003,1862,11857,5472,2275], +[1,2349,28305], +"near social", +"bridge", +[0,28306,28307,28308,2531], +[0,28502,4130], +[0,23689,28556,2323,31190,2765,3560,31541,91], +[0,5472,11132,13841,28522,13426], +[3,18018,14], +[2,28309,1633], +[1,2349,28313], +"exec-time", +[0,28315,28316,28317,2540], +"@lit/context", +[0,1086,1437,1700,2070,2714,3183,3760,705,4039,4135,4734], +[0,13194,7740,28197,4865,29105,23689,9129,7892,4874,11304,16936,20959,28502,5254,28189,28556,2323,31190,2765,4089,4130,91], +[0,1098,1973,5472,3750,11132,13841,28522,4130], +[1,2349,28319], +[0,9764,9887,28320,2540], +[0,1871,6843,3656,4289,7062,6922,6981,6701,6581,6700,1111,1867,5281,200,6876,7009,7201,6575,6611,6795,6960,7135], +[0,7560,28330,28334,34552], +"@codspeed/", +"payload", +"@fig/complete-commander", +"@golevelup/nestjs-discovery", +"xhr2-cookies", +[2,30999,30499], +0, +[2,28338,28349,28603], +[0,4874,668,32894,2929,32895,91,4579], +"@postman/tough-cookie", +[2,15679,19490], +"chardet", +[0,32901,23542,5130,23543,6812,27,5592], +"liquid-json", +"postma", +[1,2349,28351], +"@interna", +"n-collection", +[2,28336,28339], +"-transformer", +[2,28340,28341], +"postman-", +[2,28343,705], +"postman-r", +[2,28345,96], +"d-error", +[2,14628,28347], +"tionaliz", +"@postman/", +[0,28359,0,28364,4194], +"shipit", +[2,28350,28352], +[2,29833,17978], +"file_lint", +[2,17878,28355], +"parse-git", +[2,28357,2687], +[0,2856,32889,2822,5307], +"postman", +[2,178,28363], +"rest-client", +"rack-changes", +[0,29699,32891,1541,1745,29703,29753], +"@profoundlogic/hogan", +[3,2665,10], +"@grpc/grpc-js", +"@grpc/", +"print-sizes", +"proto-loader", +[2,28368,28370], +"@newrelic/security-agent", +"@tyriar/fibonacci-heap", +"in-the-middle", +[2,2701,28374], +"module-de", +"s-from-path", +[2,4378,28377], +[2,28376,28378], +[2,4013,28374], +[1,2349,28409], +"@aws-sdk/s", +"3-request-presigner", +[2,28382,28383], +"@koa/router", +"@newrelic/", +[2,28386,7625], +"-oss-cli", +[2,3284,28388], +[2,28386,28389], +"test-util", +"ities", +[2,28391,28392], +[2,28386,28393], +"@slack/bolt", +"@smithy/eventstream-codec", +"@smithy/", +"util-utf8", +[2,28397,28398], +"borp", +[2,16306,20353], +[3,4962,10], +"iler-runtime", +"git-r", +"aw-commits", +[2,28404,28405], +"CKEditor", +"self-cert", +[0,0,28410,28412,2776], +[0,1429,4856,4874,32903], +"debugging", +[0,32910,37123,32911,32912,32913,13428,5472,6533], +"profiling", +[1,2349,28424], +"unlimited-timeout", +"WYSIWYG", +"WYSIWYW", +"@panva/hkdf", +"id-client", +[2,3445,28419], +"-to-string", +[2,694,28421], +[2,3698,28422], +[0,28430,0,26896,2402], +"@types/oauth", +[2,4874,3360], +"@next", +"is-in-ssh", +"powershell-utils", +[0,32918,32919,1699,3547], +[1,2349,28437], +[3,13983,14], +[2,28432,89], +"-pragmatic", +[2,13062,28434], +"@edge-runtime/jest-environment", +[0,6265,0,28447,2531], +"oauth2", +"nextauth", +"seneca-transport", +[2,36883,28443], +"rich-text", +"astify", +"async ", +[2,28444,1852], +[2,28444,5746], +[0,89,5128,9267,553], +[1,2349,28449], +[0,27013,0,27025,2540], +"grammy", +[1,2349,28463], +"qs-esm", +"TestBed", +"how-to", +"@scripts/build", +[2,28573,553], +[3,14691,18], +[2,32700,28478], +[2,12392,1098], +"dataloader", +"bson-objectid", +"nboarding", +[0,33632,23762,33637,34552], +"render-jsx", +"@rolldown/pluginutils", +[2,28472,1973], +"localhost", +"tunneling", +"webhook", +[2,28471,28596], +[3,37983,14], +[3,34476,19], +[2,16639,15112,28475], +"onesy", +"hecker", +[2,16639,28477], +"vitest-runner", +"grab", +[2,28489,28490], +"deep-defaults", +[1,2349,28492], +[2,10740,28487], +"enqueue", +[2,14185,4225], +"minstache", +"sliced", +"table-printer", +[2,3192,5701], +[3,30527,35], +"collisions", +"@rstest/core", +[0,28520,28527,28528,2540], +[2,28508,28526], +"@nightwatch/chai", +[3,28494,12], +[3,2791,13], +[2,28496,2324], +[2,28495,28497], +[2,3294,11496], +[2,28495,28499], +"lenium-webdriver", +[2,5252,28501], +[2,1432,3294], +[2,11097,20500], +"didyoumean", +[3,28499,11], +"@amaui/ui-react", +[3,5069,14], +"axe-verbose", +[2,28506,28509], +[3,17011,11], +[2,28511,57], +[3,31827,17,5], +[2,4925,4381], +[3,28514,12], +[2,11937,16609], +[2,28515,28516], +"@payloadcms/translations", +"wait-on", +[0,32953,25996], +[2,3294,676], +"selenium", +"automat", +"ed-testing", +[2,28523,28524], +"acos", +[0,13662,1389,35268,4389], +[0,7518,5398,17819,18266,32958,12075,32960,4967,1389], +[1,2349,28530], +[0,28536,28538,28545,2540], +[2,28532,28547], +[3,11555,18], +"text-", +[2,28533,9254], +[2,11122,28534], +[0,32980,32981,32983,32984,32986,1398,1437,1443,1759,1763,2018,2071,37853,2182,2212,2687,2720,17450,2856,32987,32988,9478,3729,4135,4164,4400,91,32990,32993,32989], +[3,11138,16], +[0,188,32996,32997,33004,33007], +"mochify", +[3,4887,19], +"-universal", +[2,3752,28541], +[2,3752,1289], +"@backstage/backend-common", +[0,32940,33010,5130], +[1,2349,28548], +"owellformed", +[0,28549,28551,28552,2488], +[0,97,33015], +"propagate", +[0,1192,2278,2675,89,1843,1177,2924,1894,1610,3824,48,1628,3988,91,53,2990,3400,4111,4677,4880,1195,4307,33020,33021,9310,28809,10837,87,11011,90,1959,827,33023,1895,1947,1955,2780,92,10821,29872,10840,1011,10825,83,1009,32341,28970], +[0,89,4627,26612,35126,33026,5131,29832,91,33027,33033], +[3,31893,18,13], +[2,12302,28732], +[1,2349,28560], +"clang-format", +[2,23260,28729], +"n-api", +"napi", +[0,28561,28562,2523,2540], +[0,1437,1483,1525,3127,14774,4135,33043], +[0,8147,33046,4874,5254,33047], +[1,2349,28571], +"fontace", +[2,14743,4504], +"ffee", +[2,2251,28566], +"grunt-i", +[2,2426,2499], +[2,28568,28569], +[0,28584,28587,2523,2540], +"baseline-browser-mapping", +[3,4090,11], +[2,28606,8734], +"host-validation-middleware", +[2,16826,5260], +[2,14614,28576], +"used-de", +"ps-analyzer", +[2,28578,28579], +"@4c/rollout", +"skeleton", +"formate", +[0,35198,4763,1497,1687,33057,4361,1983,1082,1371,1676,9348,12449,977,1636,11480,3958,4135,11501,1458,11478,668,33058,28564,2822,6042,3479,3742,29535,33059,26379,4955,33149,3530,25648,4542,28623,33061,11869,27921,5732,33062,2628,3090,4748,2007,33063,19639,7610,37014,33064,4555,33065,33068,29533,33069,10895,5210,9485,33070,33071,3749,33074,33075], +[2,5559,27], +[2,28689,89], +[0,23813,2278,4042,4548,1984,1448,4549,33080,30138,33082,91,12396,2024,3975,5245,33390,30559,5254,33083,34673,7637,7812,12127,3327,8648,20374,11868,23312,33084,7744,21626,3963,33087,33088], +"dynamic-", +[2,28588,1681], +"filewatcher", +[2,28914,594], +"xunit", +"tap-xunit", +"nextjs-api-reference", +[2,30999,28884], +"l", +[1,2349,28600], +[2,31222,31227,31234], +"subdir", +[0,28601,0,2523,2531], +[0,1506,33093,3460,4535], +[1,2349,28609], +"ed/date", +"char-regex", +"emojilib", +"@scripts/", +[2,28616,6988], +"skin-tone", +[0,28621,28622,28630,2402], +"s-per-line", +[2,16233,28610], +"cspell-config-lib", +"emojis", +"smiley", +"smileys", +[3,28329,19], +"smilies", +"ideogram", +"ideograms", +"@nuxt/fonts", +[0,1512,2151,2720], +[0,1177,1939,1192], +"unstorage", +"fetch-blob", +"ttypescript", +[2,1432,7253], +"nsumers", +[2,25687,28627], +"jsdoc-to-mdx", +[0,8310,1179,8635,200,28582], +"@nuxt/icon", +"@nuxt/kit", +[1,2349,28661], +"igitalbazaar", +[2,27235,28634], +[2,19946,2903], +"-websocket", +[2,6710,28637], +[2,27694,1194], +[2,28660,32819], +"aes", +"asn", +"asn.1", +"cbc", +"csr", +"des", +"gcm", +"hmac", +"pkcs", +"pki", +"prng", +"rc2", +"rsa", +"sha256", +"sha384", +"sha512", +"tls", +"x.509", +"x509", +[3,218,21], +[0,0,28662,28663,2402], +[0,811,816,1437,1836,1177,1895,1938,33110,14282,2674,2675,2990,2899,6041,1894,4039,4042,4055,33111,4232,4390,11482], +[0,4989,1283,3358], +"seneca-joi", +[1,2349,28668], +"c2dm", +"fcm", +[0,0,28669,2523,4194], +[0,1009,1011,1177,1883,1895,1915,1938,1947,1955,1959,1961,2675,2990,1894,89,91], +[1,2349,28671], +[0,28682,28683,28695,2540], +"@nuxt/schema", +"@nuxtjs/color-mode", +"geocoder", +"pulse", +"geocoding", +"geo", +"mapquest", +"agol", +"arcgis", +"tomtom", +[0,33139], +[0,6503,1699,2899], +"libsql", +[2,28694,176], +[3,5781,10], +"l-backoff", +[2,28686,28687], +[3,21276,15], +"require-in", +[2,28690,2429], +"piña", +"pigna", +[3,30585,14], +[0,5122,1973,8791,33143,2899,5130], +[1,2349,28697], +[0,0,28700,28705,2540], +"high5", +[2,12075,57], +[0,5535,5087,1009,1011,33175,25917,35358,1473,1177,1895,1955,2070,1192,1894,4042,4073,4076,4201,4443,4468,4474,4484,91], +"js-parser", +[2,1936,28701], +"-benchmark", +[2,15512,28703], +[0,1473,57,6270,4439,32453,6616,30289,33190,30291,620,33201,31453,1623,33203,6653,33205,33207,3178,33216], +"mocha-each", +"neutron-html5parser", +"ookmark", +"colortranslator", +[2,15277,12610], +[2,28712,28725], +[3,10130,17], +"biased-opener", +"data-uri", +[2,25894,28714], +"v8-debug", +"v8-profiler", +[2,28742,28749], +[2,28720,28721], +[3,32265,26], +"ble", +[2,28723,7059], +[3,12133,21], +"vitest-browser-react", +"ber-animation", +"dummy", +[2,23814,28898], +"http mock", +"zipper", +[1,2349,28750], +"toposort", +"quality-insights", +"growly", +"words", +"shellwords", +[2,28738,28741], +"nexe", +"@types/to", +" center", +[2,9044,28739], +"posort", +[3,26699,15], +"mac os x 10.8", +[2,4402,3329], +"windows ", +"8 notification", +[2,28745,28746], +"toaster", +"auto-height", +[0,5918,28758,28759,34552], +"tabbable", +[2,8180,594], +[2,29518,28757], +"@radix-ui/react-checkbox", +[2,28756,45], +[3,28754,16], +"vfs", +[0,30533,192,5467,30535,10614,6494,5087,4874,1009,1011,1177,1895,2675,1192,1894,3980,4468,91], +[0,30538,6710,14584,91,30540,30543,5130,29752], +[1,2349,28765], +[2,28762,9006], +[3,28718,20], +[2,3958,28764], +[3,26414,16,5], +[0,27013,0,27014,4194], +"@internal/test-utils", +[1,2349,28774], +"ps-list", +"code-blocks", +"pty", +[2,6426,7009], +"forkpty", +"openpty", +[0,28787,28788,28796,4194], +[2,28776,28777], +"expressi", +"ve-code", +"@node", +[2,9057,3642], +[2,28793,28798], +"-red/util", +[2,28778,28781], +[2,3341,2110], +"@node-red/", +"nodes", +[2,28784,28785], +[0,33071,30616,26407,26411,12396,7637,9363,26414,26415,23276,2577,2584,2588,2681,2822,37507,3090,26418,26568,12429,26421,3958,9393,12443,4542,4549,4555,12449], +[0,8648,4874,7677,34683,26431,1984], +[2,216,28812], +[2,28784,7047], +"editor-api", +[2,28784,28791], +[3,28718,19], +"iot", +"fix-dts-default-cjs-exports", +[0,1739,1745,34683,26440,26445], +[2,28826,16860], +"play", +"sass-graph", +[2,1152,14741], +"stdout-st", +[2,28801,2187], +"-case-path", +[2,4938,28803], +[2,28742,28875], +[2,4550,13786], +"@jsopen/objects", +[1,2349,28810], +[2,34443,25240], +[0,28819,28820,28759,2540], +"modern.js", +"alpha-function", +"long-timeout", +"sorted-", +[2,20096,20835], +[2,28814,28815], +[2,30633,30886,31217], +[3,1419,11], +[0,2026,3951], +[0,30533,192,5467,1300,30535,10614,6494,5087,4874,1009,1011,1177,1895,2675,1192,1894,3980,4468,91], +"recurrent", +[1,2349,28823], +[0,28824,28825,28828,2540], +[0,3951,4474], +[0,192,5467,10614,6494,5087,4874,1009,1011,1437,1177,1895,2675,1192,1894,3980,4468,91], +"unplugin-", +"deepcopy-esm", +[0,30538,6710,91,30540,30543,5130,29752,5995,6082], +[2,9357,28832], +[2,28831,30581], +[3,12447,17], +"-convert", +[1,2349,28834], +[0,27013,0,27014,2540], +[1,2349,28836], +[0,27013,0,27025,2457], +"fs.watch", +"watchfile", +[1,2349,28840], +[0,25332,28841,28848,2540], +[0,603,11018], +"stories", +[2,819,664,33355], +"ngn", +"daemon", +" logging", +[2,2013,28846], +[0,188,4646,1542,32977,28692,28693,32312,5592,18496,5490,91,4799,998,6953], +"elevate", +"sudo", +[1,2349,28852], +[0,28864,28867,5895,2531], +"store2", +[2,28855,7625], +[3,28518,12], +"@mgcrea/eslint-config-node", +"-lts", +[2,19439,28857], +"node-ipc", +"excel", +"xls", +"zeptomatch", +"picoquery", +[0,28751,444,28752], +"rolldown", +"amaui", +[0,90,28754,28755,968,972,974,4880,4883,1030,1497,89,3824,3882,3885,4023,8187,28724,1541], +" extend", +[2,6970,28868], +[1,2349,28871], +[0,28886,28888,28889,4194], +[2,13402,2942], +[2,28874,8817], +"@appium/s", +"class-names", +"firefoxos", +"combyne", +"for-publish", +[2,1463,28878], +[2,31228,14372], +"libgit2", +"git2", +[2,28742,26542], +[3,31782,22,5], +"vendors", +[0,28763], +[2,9191,3595], +[0,34683,2020,28766], +[0,26445,28769,1745,28775,9348,28779,26440], +"libbase64", +"libmime", +"libqp", +"ntlm-auth", +[2,26444,28893], +[2,13857,9224], +[2,28742,188], +"Nodemailer", +"hun-ky", +[2,32723,28900], +"hex-color", +[2,28902,28905], +[3,28899,21], +"undefsafe", +"pstree.remy", +"sl-color", +[2,32723,28907], +"rgb-color", +"autoload", +[2,31281,4202], +[2,819,45], +[2,28742,28916], +[2,6097,6142], +[2,15701,28915], +[3,693,10], +"vision-history", +"wheel-gestures", +"multimeter", +[1,2349,28975], +[2,30211,30221], +"@asamuzakjp/css-color", +"node-webkit", +"drc", +"lz4", +"potx", +"xltx", +"dotx", +"async-redis", +"ipfilter", +[2,2032,28928], +"express-ws", +"xltm", +"ots", +"json-logic-js", +"json-sql", +[2,7060,1146], +"line-reader", +"mocker", +"-data-", +[2,28938,1179], +[2,28937,28939], +"pino-pretty", +"odg", +"otg", +"promise-mysql", +"stjs", +"otp", +"ott", +"uuid-random", +"docm", +"nolang", +"Programming", +"programm", +"ing language", +[2,28952,28953], +"dotm", +"descriptive", +"5GL", +"potm", +"json schema", +"Mehdi Salartayefeh", +"pptm", +[2,8293,200], +[2,8293,3561], +"knitwork", +[2,28968,28969], +" parser", +[2,5675,28966], +"esbuild-re", +"act-compiler-plugin", +[2,28971,1172], +[3,29874,35], +[2,28973,4298], +[3,5240,29], +"ohash", +[0,0,0,28989,2531], +[2,28986,8924], +"absolute", +"backslash", +"delimiter", +"file-path", +"forward", +"slashes", +"trailing", +"unix", +"urix", +[3,28085,13], +[2,1917,11597], +[2,819,3877,29320], +[0,30999,28818,5995], +[1,2349,28995], +"normaliz", +[2,28991,5218], +"normali", +[2,28993,6079], +[0,28998,29046,29047,2488], +"simplify", +"canonical", +[0,28775], +[2,29171,594], +"lit-analyzer", +[2,32700,29003], +"mouse", +"attract", +"mouse wheel", +[2,29006,29007], +[3,26450,35], +"ubble", +[2,32700,1544], +[2,29010,29011], +[3,31198,35], +"ause", +[2,32700,34141], +"escape-goat", +[3,9577,11], +"from-git", +[2,29014,29015], +"teractive", +[2,20043,29017], +[2,28489,29003], +"is-scoped", +[2,29027,29029], +"issue-regex", +"listr-input", +"new-github-release-url", +"npm-name", +"p-memoize", +[3,32722,21], +"map-obj", +"asing-quad", +"write-package", +[2,32731,3924], +[2,29033,4390], +[3,26495,20], +[2,29035,29036], +[3,28909,22], +"troke-color", +"is-cidr", +"ts-lit-plugin", +"libnpmorg", +[2,33533,29041], +"ormatjs", +"libnpmpack", +[3,29818,15], +"libnpmteam", +"MDX", +[0,9363,9315,23312,3978,3992,3999,9348,4549,12449,28766], +[0,28769,1745,28775,9348,28779], +"fs-m", +"reka-ui", +[2,37399,29156], +"fs-minipass", +[1,2349,29064], +"npm-profile", +[2,2977,7193], +"@sigstore/tuf", +[2,2977,15525], +[2,636,1541], +"audit-report", +[2,3382,29058], +"-pipeline", +[2,21505,29060], +[2,4570,2649], +[2,3382,29062], +[0,29068,29074,29075,4194], +"relative-date", +[2,11072,29065], +[2,28093,26006], +[0,2121,2127,1690,2024,4507], +[2,636,3358], +[2,636,1739], +"@tufjs/repo-mock", +[3,26037,13], +[2,29072,2203], +[0,28470,2180,5476,5478,1414,2198,91], +[0,2313,1383,614,202,1388,5995,4967,1145,1973,1429,2340,2350], +"-draft2019", +[2,1092,29076], +[1,2349,29119], +[2,29080,29081], +[3,23075,14], +"rrect-media-syntax", +[2,29089,29090], +"-record", +[2,17495,29083], +"giturl", +"nfig-loader", +[2,18323,29086], +"semver-diff", +[3,32593,24], +"ort", +[2,29092,29094], +[3,32686,13], +"outdated", +"dx-jsx-attribute-sort", +"updating", +"updater", +[2,29098,29099], +[3,29091,20], +"no-void-children", +[2,29098,29107,29118], +"@trivago/prettier-plugin-sort-imports", +[3,27782,13], +[2,29102,8961], +[2,13197,176], +"@types/ini", +[3,8141,13], +"quote-st", +"helpfulerror", +[2,16476,29108], +[2,29106,29109], +[2,7726,27005], +"@types/npm", +"-registry-", +[2,29113,1612], +[2,29112,29114], +[3,16478,13], +[2,29116,13722], +"yle", +[0,0,29163,29164,2531], +[2,2645,89], +[3,6544,14], +[2,29121,594], +"pdate-", +[2,29123,3329], +[2,7817,29124], +[3,1898,15], +"aine", +[2,29126,29127], +"fp-and-or", +[3,9506,11], +[2,117,29153,29494], +[2,29098,29134,29135], +"jsonlines", +"self-clos", +"e", +"prompts-ncu", +"postcss-clean", +[2,25813,594], +[2,4524,2845], +"verdaccio", +[2,8551,4675], +"vite-node", +[2,29145,29146], +"upgrade", +[3,29132,21], +"horthand-attribute", +[2,29098,29148], +"unique-attribute-name", +[2,29092,29150], +"edia-style", +[2,32704,29152], +"idden-table-cell", +[3,6138,9], +[2,7686,4692], +[2,22060,3122], +"variants", +"ypescript-tc", +[2,22060,29157], +[3,17312,29], +[2,29159,12844], +"unplugin", +"auditor", +[0,1330,1389,1596,2759,2899,4170,4535], +[0,20215,4741,2574,36796,6847,1965,1867,10368,7131,1155,1936,1623,14419,37953], +[2,28826,29166], +"auto-import", +[1,2349,29172], +"variadic-function-arguments", +"mutate-fs", +"@publint/pack", +[3,1014,15], +[0,29173,0,29177,2531], +[0,28507], +"minizlib", +"minipass-", +[2,29175,1612], +[0,45,29,36246,89,4967,6400,5995,10768,5122,1388,5284,676,91,202,6710,6082,28866,594], +"fast-equals", +"registry", +[1,2349,29199], +"autodocs", +[2,31092,3452], +"@pm2/blessed", +"padend", +[2,18996,29184], +[2,29189,27863,20181], +"ysticatea", +[2,16693,29187], +[3,28544,19], +"commandline", +"npm-scripts", +[2,29193,1541], +[3,28544,11], +[2,29193,11857], +[2,29196,29198], +[3,31303,12], +"neostandard", +"ise-router", +[0,29216,0,29217,2488], +[2,29189,11017], +[2,29202,29203], +[3,29192,12], +"atalog-model", +[2,29202,25240], +[2,29193,13224,29206], +"atalog-common", +[2,29209,202], +[2,28270,6270], +[3,29205,26], +"yarn to npm", +"@daybrush/jsdoc", +"backstage", +"ci/cd", +"immobiliare", +[2,29214,12825], +[0,28872,28873,13411,4507], +[0,13428,5284,28522,11132,12295,12296,28876,5472], +"npm upgrade", +[2,28826,10309], +"vaul-vue", +[1,2349,29223], +"rgv", +[0,26899,0,26896,2402], +[2,1262,25816], +[1,2349,29230], +[2,34674,588], +"npm-cli", +[2,29229,29303], +"@hyrious/esbuild", +[0,29232,0,7575,2540], +"ntainer", +[0,1004,31231,32914,28909,31262,31272,28899,28901,28906,31282], +[2,26109,28923], +[3,28200,13], +[2,29240,29249], +"@cropper/", +"are-", +"we-there-yet", +[2,29237,29238], +[3,10309,13], +"image-cropping", +[2,29243,3642], +"image-view", +"image-processing", +"cropper-element", +"mocha-jsdom", +[3,31831,14], +[3,5926,13], +"-type-helpers", +[2,29254,29255], +"cvss", +"-npm-utils", +[2,19773,29252], +[3,3978,9], +"arry-night", +[1,2349,29257], +[0,0,0,29258,2540], +[0,45,29,36246,89,4967,6400,5995,10768,5122,1388,5284,676,91,202,6710,6082,28474,594], +"@asteasolutions/zod-to-openapi", +"gluegun", +"@trpc/server", +[2,17612,29264], +"nuke", +"custom-alias", +[2,4026,29266], +"tspaths", +"@nuxt/eslint-config", +"event-driven", +"money", +"blaze", +"percentage", +[1,2349,29274], +[2,8293,1983], +[0,27013,0,27028,34552], +[1,2349,29278], +"a-sync-waterfall", +"asap", +[0,29286,0,21971,2540], +[2,3522,364], +[2,3192,29279], +[3,29280,16], +[2,29281,2759], +[2,5223,8861], +"s-browser", +[2,19390,29284], +[0,4729,2070,31705,4747,4135,1862,1301,1525,2731,4116,1109,1193,31856,3145,4705,31859,3717,3878,1079,31861,28512,31864,24169,3957,31867,2784,31871,31877,31880,31884,31891,21129,31896,28073], +[1,2349,29289], +[3,26364,17], +[0,29296,0,7575,2402], +"@nuxt/module-builder", +[2,18124,2844], +"@4c/tsconfig", +"@react-bootstrap/babel-preset", +[2,29344,7625], +"@nuxt/test-utils", +[0,28880,1004,29031,29032,31244,1418,26495,32926,26483,26489,32934,29021,29034,28458,31198,29012,29009,26450,29005,26482,30527,29001,29008,1445,29019,28479], +"jsonpathly", +[1,2349,29302], +[2,29301,29538], +"css4", +[3,5782,27], +[0,29329,29337,26857,2531], +[3,4055,16,6], +[3,26699,14], +"achine-id", +[2,27946,29305], +"parsers", +[2,15904,29307], +"@zkochan/js-yaml", +[2,15904,6698], +[3,17944,18], +"-and-columns", +[2,27005,29312], +"@napi-rs/", +"graphQL", +"wasm-runtime", +[2,29314,29316], +"telejson", +"Mobile", +"nderer", +[2,25806,14029], +"@whatwg-node/promise-helpers", +[2,29326,29332], +[2,20164,22156], +[2,11936,1564], +[3,9250,19], +"processinfo", +[2,11936,29327], +[0,4484,29755], +"node-preload", +"process-", +"nuxt", +"on-spawn", +[2,29331,29333], +"spawn-wrap", +"css library", +[0,89,1177,4039,4042,1894,3824,91,4874,4880,3884,4883,3885,28540,8656,8660,4887,10817,1011,1009], +"any-path", +[2,29340,29341], +[3,132,10], +"local-node-rig", +"jsdoc-fresh", +"jsdoc-region-tag", +[3,29293,17], +"nuxt-ui", +"ui-framework", +"undefined-", +[2,29347,15400], +[2,8302,29348], +[2,29383,29384], +"@readme/", +"example", +[1,2349,29363], +"oas-examples", +[2,29351,29354], +"@readme/o", +"penapi-parser", +[2,29356,29357], +[2,8818,5940], +"@types/me", +"moizee", +[2,29360,29361], +[0,29472,29473,29484,2488], +" initiative", +[2,3452,29364], +"openapi ", +[2,29366,10658], +[3,29367,12], +[2,29366,1746], +"oai", +"@eslint/css", +"print-coveralls", +"ts-mock-imports", +"egjs-jsdoc-template", +"to-openapi", +[2,28343,29375], +[2,29351,29376], +"@egjs/release-helper", +[3,20227,14], +[2,29379,8125], +[2,5290,29382], +"-plugins", +[3,25931,14], +"quis-saepe-velit", +"@renyii/vue-renderless", +[2,31525,29391], +"andom-function", +[2,30713,29397], +"@teamteanpm2024/aperiam-fugit-error", +"prollyfill", +"ize-observer-browser", +[2,19965,29393], +"-es6-transform", +[2,29418,29475], +"ec", +"gulp-exec", +"ign-functions", +[2,29399,29400], +[3,27720,16], +"ototype-minify", +"@vercel/ru", +"@pkg", +"js/support", +[2,29402,29403], +"flicking", +"globalthis", +[2,29408,26274,29411], +[3,29389,17], +"ostringtag", +[2,17422,29409], +"alias-quod", +"egjs", +"-upgrade", +[2,29408,29415], +"ut-voluptatum-vero", +"indexof", +[3,26699,20], +[3,29389,16], +"@loki/integration-react", +[3,31032,17], +"@modelcontextprotocol/sdk", +"@mar", +"iocasciaro/benchpress", +[2,29422,29423], +[2,31009,16609,18756], +"bean", +[2,31550,29430], +"notation", +"segment", +" upgrade", +[2,29438,7031], +[2,29418,29433,29434], +"effective-octo", +[3,246,18,8], +[2,29436,29437,29439], +[3,29432,17], +"xpedita-", +[3,805,9], +"labore-ipsum", +"es-object-atoms", +[2,29419,4009], +"mentoss", +"@ucast/mongo2js", +[2,28865,6324,4056], +"unconfig", +"permissions", +"abac", +[2,29418,29449], +"odio-fugiat-in", +"ee-first", +"rbac", +"ibac", +"cancan", +[2,29487,188], +"@sxzz/eslint-config", +"wrappy", +"quick-lru", +[2,29459,29620], +"@sxzz", +[2,29418,28215,27463,29461], +"odit", +"@blakeembrey/deque", +[3,29462,13], +[2,29463,1283], +"@sxzz/test-utils", +"@unocss/eslint-plugin", +[3,4949,17,10], +[2,160,1554], +"unocss", +"unplugin-unused", +[2,30209,28945], +[0,29186,29192,29194,1364,2026,29195,2664,4709,4757], +[0,29200,29201,29204,29205,29207,6494,9240,3244,4342], +"epoll", +"beatae-aliquid-id", +[2,23240,3209], +"@zibuthe7j11/deserunt-quasi-impedit", +"gpio", +[3,7033,9], +"raspi", +"beaglebone", +"-black", +[2,29481,29482], +[0,29212,17978,29213,29214,29215,5995], +[1,2349,29491], +"llms", +[3,29419,18], +[2,10441,20008], +"lazy-prop", +[2,27542,29489], +[0,27013,0,27025,2531], +[2,29294,1892], +[2,35506,15215], +"s-compressor", +[2,29628,29629], +[1,2349,29497], +[0,0,29498,29499,2540], +[0,1148,2899], +[0,26257,1111,1473,7208,1437,1623,32453,6616,29222], +[2,33343,1640], +"bath-es5", +"dere", +"ference-", +[2,29503,2845], +[2,29502,29504], +[2,29510,29513], +"-adapter", +[2,2085,29507], +[2,1170,29508], +[3,10065,15], +"deref-sync", +[2,7526,29511], +"ooks", +"fetch-retry", +[2,29112,3073], +[1,2349,29523], +"@base-ui-components/react", +[3,32804,12], +"docz", +"docz-utils", +"open api", +"docz-theme-default", +[0,29526,29541,29547,2402], +"aws-sdk-client-mock", +[2,32539,200], +[0,7387], +[3,26032,12], +"computer", +[2,29530,29532], +[3,25758,18], +"quadrocopter", +"m-sint-necessitatibus-possimus", +[2,29534,15050], +[3,33156,12], +"unifont", +[2,29627,29631], +"cupertino-pane", +"licit-resource-management", +"countrynames", +"kill-port", +[0,4874,4880,4883,1030,3286,89,3824,1983,26744,1984,11039], +[2,15713,10050], +[2,28397,553], +"@testcafe/publish-please", +"aws-lambda", +"eruda", +[0,5592,1745,23803,3287,3452,8124], +[1,2349,29562], +"nano-staged", +"elapsed-time-logger", +"hashish", +"gulp-open", +[2,4807,3864], +"cupertino", +"pane", +"slide", +"-call", +[2,29557,4408], +[2,6606,29558], +"fasteejs", +"ua-is-frozen", +[0,29570,0,29578,2531], +[3,26032,13], +[2,29609,12835], +[2,29573,6802], +"prelude-ls", +"deep-is", +"astro-auto-import", +"livescript", +[0,2817,18023,1532,31802], +[3,28967,11], +[2,29571,3642], +"country-", +"@pouchlab/ui", +[2,29573,1460], +[2,29573,7285,2669], +"-dis", +[0,30999,28818,5995,17977], +"ppsx", +"-discarder", +[2,2184,29580], +"chai-jquery", +[2,1221,6621], +"corejs-typeahead", +"doiuse", +"gulp-add-src", +[2,2352,29588], +"-bust", +"gulp-check-deps", +"sequencify", +[3,28628,14], +[2,2504,29687], +"gulp4-run-sequence", +"is-empty-object", +"motion-ui", +"sassy-lists", +[2,22109,29598], +"-forward-reference", +"vinyl-named", +"sql-ddl-sync", +"sql-query", +[2,29611,29625], +[2,29604,29606], +[3,17589,11], +"redshift", +"helper-rel", +[2,29608,4213], +[3,29603,18], +"gradient", +"grommet", +[3,940,8], +[1,2349,29613], +[0,0,29665,29688,2540], +"tinygradient", +"tmpdir", +"ps1", +"glob2regx", +[2,29619,29620], +"@bokub", +[3,29621,16,9], +[2,7623,7628], +[2,1283,17321], +"template ", +[2,29623,16111], +"expand-path-helper", +"magnific-popup", +[3,4968,15], +[3,111,18], +"-cloud-services-collaboration", +"grommet-icons", +"composable-commerce-test-data", +"styleable", +[3,3474,9], +[2,10818,29635], +"toolbars", +[2,29637,5592], +[3,11285,19], +"@vscode/vsce", +[2,10829,29640,35971], +"source-l", +"vscode", +[2,964,4415], +[2,29644,591], +[3,19588,29], +"chromatic", +[2,29650,29651], +"addlistener", +"addeventlistener", +"waits", +"grommet-", +"theme-hpe", +[2,1192,29653], +[3,12201,18,16], +"random-int", +"react-shadow", +"resolved", +"fulfilled", +[2,29659,22145], +[3,29576,18], +"tarball-extract", +[2,29662,29663], +[3,35482,11], +"act-selectors", +"fifo", +[0,19325,1414,1894,3985,3998,4039,4389,4505,91,1906], +"grommet.io", +"grommetux", +"sticker sheets", +"design patterns", +"app templates", +"atomic design", +"invalidate", +"WCAG 2.1", +[2,8652,29675], +" navigation", +"screen reader tags", +[3,10826,11], +"graphical user interface", +"plunder", +"exit-x", +"modelcontextprotocol", +"osition-area-property", +"pwa-asset-generator", +"_codesniffer", +[2,1936,29684], +"better-auth", +"-lint", +[0,1623,1936,965,5122,12344,34050,3665,22145], +[2,23814,6653], +"better-a", +"proclaim", +"@grammyjs/types", +"dart-sass", +"grunt-jekyll", +"mcp", +"deno2node", +"sigstore", +[2,9466,1153], +"antora", +[3,3397,13], +[2,29700,3212], +"zepto", +[3,12478,11], +[2,30713,29989], +[1,2349,29712], +"countries", +[2,22642,5351], +[2,18145,4581], +"@next/font", +"package-up", +[2,17507,4107], +[0,29714,29715,29720,2402], +"@jsdevtools/ez-spawn", +[0,2611,4763], +[0,29259,192,5467,23531,29261,4865,4874,1009,1011,10417,668,1177,1881,1895,29262,1915,1938,1955,2070,2675,2990,1894,29265,4039,4480,4494,91], +"@types/png", +[2,29716,1722], +"context7", +"vibe-coding", +[0,2611,5995,29268,29270,5130,24090], +[2,17590,23989], +"png.js", +[2,29573,29730], +"screenshots", +"ai-detection", +"screengrab", +"headless", +"app-detection", +"rapidoc", +"iso-codes", +"iso", +[0,13471,13502,13500,13488,13484,13495,13507,668,4494,91,5087,1192,4468], +"find-process", +[1,2349,29738], +[0,30183,30184,34567,34570,34571,3097,34572,34573,34579,34580,34581,34582,34583,34584,34585,34586,34588,34589,13452,34590,13535,13532,34591,34592,34593,34594,31407,34595,34596,34597,34598,34599,34600,34603,34604,34605], +[2,29737,3729], +[3,33097,12], +[0,29739,29864,29720,2540], +[0,1457,1491], +[3,7895,13], +"jpeg-js", +"striptags", +[2,1948,29816], +"baas", +"launch-image", +"splashscreen", +"splash-screen", +"image-generation", +"aws4", +"mstile", +"pwa-assets", +[3,7863,11], +"web publishing", +[2,3862,29804], +"@ionic/react", +"@loki/runner", +"@loki/target-chrome-app", +"@apitools/openapi-parser", +[2,29760,6866], +"base64-", +"xml-but-prettier", +"idb-keyval", +[3,5062,14], +"rypto-js", +[2,29763,29764], +[2,29785,17878], +"@saithodev/semantic-release-backmerge", +"cebook-js-sdk", +[2,22819,29768], +[2,1983,29303], +[3,19588,24], +"nline-", +[2,11294,6436], +[2,29772,29773], +[2,29771,29774], +[2,29781,29782], +"river-adapter-utils", +[2,2767,11110], +"jsdoc-babel", +[2,27738,8791], +[3,14065,15], +"mplate-html-minifier", +"parse-server", +"inspectpack", +[3,29757,20], +"Custom Element", +"Web Component", +"swagger ui", +"swagger ", +"WHATWG", +[2,28008,57], +"html5 parser", +[2,28008,1753], +[2,1936,1753], +"openapi ui", +[2,29366,4366], +[2,29366,11328], +[2,29366,3902], +"fast-ur", +"l-parser", +[2,29799,29800], +[2,29366,25677], +[2,29789,4366], +"animatable", +"react-swipeable-list", +"pause", +[2,29811,29812], +[3,1551,9], +[2,29808,18716], +[2,1432,29809], +[3,29757,13], +"native-android-emulator", +[2,29814,29815], +[3,29807,20], +"ios-simulator", +"-preferences", +[2,31868,5891], +[2,29822,19102], +"collapsible", +"accordion", +"readme-md", +[3,4272,10], +[2,11375,10850], +"username", +[3,9308,9], +[2,29827,29828], +[3,4060,15], +"ocal-resolve", +[2,3500,1274], +"visual testing", +"swipeable", +"customizable", +[3,1419,20], +"teeny-tap", +"base64url", +"touchscreen", +"listview", +"swipe-to-delete", +"swipe-actions", +"json/simple-icons", +[2,29852,32865], +"iso-country-codes", +"use-composed-ref", +"use-latest", +[2,29866,1460], +"@preconstruct/cli", +"blue-tape", +"autosize", +"grow", +"riot", +"events.once", +"@scalar/s", +[2,30844,1983], +"exist", +"md-writer", +[2,12557,8982], +[2,29858,29859], +[3,7806,10], +"mon-tags", +"ts-declaration-location", +[2,29863,14056], +"isabsolute", +[3,1733,14], +[0,1138,4494,2070,2675,1177,4039,668,1894,91,4865,4874,2990,29261,4480,192,29265,1938,10417,1895,1955,1011,1881,5467,1009,1915,29262], +"react-smooth", +[3,29842,12], +"@borderless/ts-scripts", +[2,29958,29576], +[2,29870,34050], +"victory-", +[1,2349,29929], +[2,10818,29873], +"mdx-gfm", +[2,10818,29875], +"webpack5-compiler-swc", +[2,29877,29878], +[3,10841,15], +"-runner", +[2,33114,22982], +[2,33114,29881], +"time-format", +"@rkusa/linebreak", +[2,29885,29886], +"opentype.js", +[3,18787,15], +"v-expression", +"vitest-axe", +"log-process-errors", +"sortablejs", +[2,5581,29898,27479], +[2,29518,29892,29930], +"native-pr", +"jpeg-exif", +"linebreak", +"png-js", +"@riotjs/dom-bindings", +"blob-stream", +"multi-pa", +"pdfjs-dist", +[2,29904,4643], +"pdf writer", +"pdf ", +[2,29902,1179], +"@riotjs/", +[2,29906,29907], +"@riot", +[3,25083,18,7], +"call-delayed", +"chai-i", +[2,29904,93], +[2,29904,614], +"ncreasing", +[2,29909,29912], +[2,29915,29916], +"@wdio/s", +"auce-service", +"bianco.attr", +"pgpass", +"pg-pool", +"pg-types", +"bianco.query", +"cumpa", +"pg-protocol", +"curri", +[2,29126,28794], +[2,29927,28794], +[3,4069,15], +"pg-cloudflare", +[0,29947,29948,29981,34552], +"eview", +"pg-co", +"py-streams", +[2,29931,29932], +"@cloudflare/workers-types", +"custom tags", +"minimalist", +"libpq", +"rdbms", +"data binding", +"riotjs", +"riot.js", +"tdesign-mobile-vue", +"oxc-resolver", +"copy-source", +[2,5237,29944], +"npm-watch", +[0,4729,1091,4494,12105,3533,3348,1410,1606,28452,4548,1458,3183,33145,1699,2096,11993,3547,28460,2689,2668,28941,2191,3781,36687,28461,36123,3509,4108,28482,28518,26696], +[0,4164,4039,4042,668,9241,1587,1610,7819,28585,7892,12461,3813,28426,4057,8818,31727,28586,28854,29228], +[2,29950,12826], +[3,35537,26], +[2,29956,582], +"hasha", +"reorder", +"ng-sortable", +[2,12318,29992], +[3,66,20], +[2,27777,27738,1764,1524], +"iso-", +"@use-gesture/vanilla", +[2,29961,29962], +"tdesign-", +"icons-vue-next", +[2,29958,29658], +[2,1547,3525], +[2,3525,15159], +[2,812,1002], +"@soerenmartius/vue3-clipboard", +" build", +[2,3525,29968], +"/build", +[2,3525,29970], +"dom-parser", +"qrcode.vue", +[2,8851,19675], +[2,29976,29977], +[3,32978,16], +"atic-import", +[2,29976,29979], +"yles", +"@tdesign/site-components", +[0,31153,5592,6354,29311,27837,5130,29315,29727,5284,23803,202,28323,89,31175,91], +[1,5298,29985], +[2,29961,29984,200], +"publish-", +[0,8391,29986], +1743292800000, +[2,4609,29988], +"tdoc", +"ystem-ui-font-family", +"tdesign", +"pinkie-promise", +"-widget", +"weui", +"denodify", +[1,2349,30002], +[2,29997,3346], +[3,6806,10], +"tstyche", +"atomic", +[2,30016,30020], +"atomic-sleep", +[0,30160,30171,30185,2488], +"xit-leak-free", +[2,27492,30003], +"pino-", +[2,20417,4714], +[2,30005,30006], +"std-", +[2,1753,591], +[2,30008,30009], +[2,30005,30010], +"quick-", +"-unescaped", +[2,1671,30013], +[2,30012,30014], +[3,18858,17], +"real-require", +"sonic-boom", +"thread-stream", +"-tag", +"lush-write-stream", +[2,5537,30021], +"obug", +"bole", +"fastbench", +"-write-stream", +[2,20064,30026], +"midnight-smoker", +"steed", +[2,30031,30032], +[3,3577,11], +"-variables", +[2,30034,30035], +"postcss-he", +"xrgba", +"postinstall", +[3,3848,9], +"devpostinstall", +[2,30040,1524], +[3,3668,14], +[2,24276,30042], +"odule-replacement", +"graphql-jit", +"uploader", +"preview", +"image-edit", +[2,30085,3582], +"mqemitter", +"remark-math", +"single-user-cache", +"base64-stream", +[2,24101,30057], +"ready", +"-simple", +[2,2105,30054], +"win32", +"woslash", +[2,9406,7293], +[2,30060,30065], +"remark-s", +[2,30062,30063], +"gulp-conve", +"rt-css-var", +"picklog", +"martypants", +"wechat", +"weixin", +[2,29314,4183], +[2,17998,30070], +"ading-time", +[2,27707,364], +"better-react-mathjax", +[2,30074,25131], +[3,9313,17], +[2,30076,30077], +[3,12415,13], +"alue-to-estree", +[2,30079,30080], +[3,31790,16], +"ocalematcher", +"tiny-lru", +[2,10884,30083], +"egotiator", +[2,11932,11525], +"iso-countr", +[2,30087,30096], +[3,13203,19], +"irregular-plurals", +"fs.extra", +"plurals", +"count", +"irregular", +"noun", +"nouns", +"requireg", +"orm-data", +"@pkgr/core", +[2,4511,30118,30123], +"make-synchronized", +[2,30101,30102], +[3,30099,13], +"ous", +"sync-threads", +"fclone", +"vizion", +"@pm2/io", +"pidusage", +"pm2-axon", +"@pm2/", +"@pm2/agent", +"pm2-", +"pm2-deploy", +"synchronize", +[2,5340,30116], +"@pm2/js-api", +"webc", +"cli-tableau", +[3,32969,11], +"pm2-axon-rpc", +[2,30111,28917], +[2,30111,21833], +[2,30109,30121], +"heme", +"logs", +"kraken", +" balancer", +[2,3001,30126], +"lb", +"balancer", +[2,3614,30129], +"kubernetes", +"k8s", +"emoji-flags", +"pm2-docker", +"graceful", +"phone-codes", +"node-pm2", +"fs-fixture", +"production", +"keymetrics", +[2,10339,13522], +"strong-pm", +"supervisord", +"pm2.io", +"@ibyar/expressions", +" production", +[2,17979,30146], +[2,3729,6877], +"probes", +" process", +" alive", +[2,30150,30151], +[2,25607,30152], +"process ", +[2,30154,8309], +"clustering", +"memoizerific", +"cluster cli", +"dev ops", +[0,6680,26246,26882,26247,26883], +"phone-prefixes", +"@vercel/blob", +[2,7285,2669], +"tap-dot", +[2,30180,30181], +"PNG", +"js-png", +"node-png", +"import-without-cache", +"png-parse", +[0,87,29211,29381,29378,5583,811,816,6373,4864,4874,29386,1009,32801,1011,1165,1195,1264,1540,1593,1596,10944,29374,1177,1938,1942,13668,2151,2193,6382,29120,28366,2675,28629,29392,3400,29137,3566,29372,28369,27120,4042,20981,10854,29398,20983,4073,4076,4079,2278,13739,29373,11440,4484,4487,28625,91,20474], +"pg-gateway", +"@ibyar/decorators", +"pglite-2", +"aurora", +"ibyar", +[2,4641,5341], +[2,4641,7256], +"evaluation", +[3,578,10], +"arousel", +[2,30195,3825], +"openclaw", +[2,30183,4406], +[0,32054,29405,31512,29002,4453,28125,5131,89,188,1098,3698,35060,35062,35058,29412], +[1,2349,30187], +[0,0,30188,30189,2540], +[0,107,91,1983,11026,26744], +[0,31549,31550,29427,31553,31565,9006,3015,31566,15813,10725,30672,5066,15571,89,31567,1098,188,12295,5131,28125,31568,31569], +"poe", +"economy", +"ninja", +"poe.ninja", +"poe economy", +[3,581,10], +[2,30212,3730], +" of exile", +[2,3403,30197], +" economy", +[2,30198,30199], +[3,30200,14], +[2,30201,30192], +[2,30194,8568], +[2,30201,5592], +[1,2349,30229], +"ast-walker-scope", +"poe.watch api", +[2,30193,8568], +"@vercel/ne", +"copilot", +"@types/ne", +[3,587,10], +"reval", +[2,24808,30213], +[2,6649,2995], +[2,6645,30215], +"tsgen", +[2,30231,30232], +"glamor", +[2,24177,591], +"o-async", +" manipulate", +[2,1473,30222], +[3,30223,15], +[2,30224,6600], +" color manipulation", +[2,7595,30226], +[3,35570,16], +[0,30249,30250,30308,34552], +"muggle-string", +[3,593,10], +"potlight", +[2,579,30251], +[2,29444,30511], +[3,6372,10], +[2,30235,6374], +[3,23816,17], +[2,30237,13290], +[2,30235,30238], +[2,30235,1973], +[2,30240,3007], +"nuget-publish", +[2,30244,4900], +[3,13484,37], +"popperjs", +[2,1517,30248], +"attached", +"center", +[0,29443], +[0,33580,5087,4874,1429,31602,2024], +"tiptap", +"allure-js-commons", +"flush-promises", +[2,30255,30259], +"@yarnpkg/l", +[3,10175,16,14], +[2,30276,30280], +"source map", +"ibzip", +[2,23660,30261], +"tector", +[2,11369,30282], +[2,10880,30264], +"preset-env", +"jison-gho", +[2,16645,30267], +"null", +"calculation", +"unixify", +"allure", +"codeceptjs", +"testops", +[3,3674,10], +[2,30273,25461], +"read-cache", +"express-i", +[3,1895,16], +"oblems", +[2,30277,30278], +"ntlayer", +"is-mobile", +"spector", +"deep-object-diff", +"@ngard/tiny-isequal", +[2,6268,1467], +[2,206,30285], +[2,209,6731], +"@intlayer/chokidar", +"hsl", +"hsla", +"hwb", +"rgba", +[2,30294,6008], +[3,30288,11], +[2,30296,23], +[3,30293,12], +"intlayer", +"caniuse-api", +"colord", +[2,10829,30311], +[3,19443,15], +[2,30301,5592], +[2,9738,30304], +"s-hooked", +"@utils/ts-config-types", +[3,30305,16], +"@intlayer/", +[0,29446,14374,1081,29447,29451,29452,29453], +"@utils/ts", +[2,30309,32810], +"docs-mdx", +[2,9402,30374], +"get-npm-tarball-url", +"pixrem", +"pleeease-filters", +"apply", +[2,3562,30316], +"postcss-a", +"ttribute", +"-case-", +[2,30322,30367], +"use", +"insensitive", +[2,30320,30323], +[2,30319,30324], +[2,30318,30325], +[3,3570,22], +[3,3570,14], +[2,30328,12981], +"hex-alpha", +[2,30328,30330], +[3,30331,15], +"sl", +[2,30332,30333], +"wb", +[2,30332,30335], +"rebeccapurple", +[2,30328,30337], +[3,30338,15], +"gb", +[2,30339,30340], +"a-fallback", +[2,30341,30342], +[3,4791,10], +"nt-family-system-ui", +[2,30344,30345], +[3,30346,13], +[2,30347,24044], +[3,3611,18], +[2,30349,6422], +"user-agents", +"nitial", +[2,3607,30352], +[3,3622,10], +"dia-minmax", +[2,30354,30355], +"seudo-class-any-link", +[2,6423,30357], +[3,30358,14], +[2,30359,11513], +[3,30274,11], +"lace-overflow-wrap", +[2,30361,30362], +[3,3681,17], +[2,30364,6421], +[2,30364,23293], +[3,11228,16,2], +"cssrecipes-custom-media-queries", +[3,30368,11], +[2,30369,19400], +[2,30369,10052], +[2,30369,594], +"vert", +"ermaid", +[2,28756,7224], +"ical-rhythm", +[2,30373,30376], +[2,30369,30377], +"i-am-meticulous", +[2,1884,30379], +"isogram", +"oc-and-anchor", +[2,7646,30382], +[2,12798,591], +[2,3160,30384], +[3,30385,11], +"@react-aria/interactions", +"filenames", +[2,30386,30388], +[2,30386,5980], +[2,30386,89], +[3,30391,13], +[2,30392,1213], +[3,30391,12], +[2,30394,367], +[2,30386,1002], +[2,30386,2282], +[2,30415,30461], +"nano-logger", +"npmpub", +[2,25230,25461], +[2,3562,30401], +"-inline", +[2,3897,30403], +"@enact/ui", +"lazy-universal-dotenv", +"to-slug-case", +[3,4693,9], +"ano-logs", +[2,30408,30409], +[2,30058,30412], +"-position", +"cssnext", +"modern-tar", +[3,30387,12], +[2,30417,364], +[3,906,9], +[3,205,11], +"ascade", +"-lay", +"er-name-parser", +[2,30420,30421], +[2,30419,30422], +[2,30418,30423], +[2,30417,30429], +"at-rule", +"atrule", +"csswg", +"delivery-react-native", +"queries", +[2,30417,30432,30433], +"plugin-co", +"nsole-breadcrumbs", +[2,30435,30436,30437], +[3,30431,16], +"network-", +"breadcrumbs", +[2,30435,89], +[2,30438,30440], +"-native-client-sync", +[2,30443,30444], +"declarative", +[3,30439,29], +"event-sync", +[2,30443,30446], +"global-error-handler", +[2,30443,30448], +"hermes", +[2,30443,1577], +[2,30443,30451], +"unhandled-rejection", +"iserror", +"react-syntax-highlighter", +[2,30457,30460], +"bugsnag", +"stability", +[3,30375,17], +"@enact/webos", +[2,30875,4000], +"croll-area", +"overlays", +"at-rules", +"@ionic/angular", +[2,30415,17966], +"@keyframes", +"@counter-style", +"@devtools-ds/object-inspector", +[2,4807,30453], +[2,30475,30476], +"@aw-web-design/x-default-browser", +"@fal-works/esbuild-plugin-global-externals", +"flexbugs", +[1,2349,30474], +[0,30482,30490,2523,2540], +[3,659,18], +"nobis-nostrum-nam", +"@skylernpm/hic-inventore-dolores", +[3,3616,9], +"postcss-less", +"tyl", +"postcss-styl", +[0,26702,19344,1915,32525,1953,1958,1959,2105,2203,26716,4523], +"quickapp", +"PHP", +"sss", +"convex", +[3,29658,18,8], +[2,30502,27421,30606], +"world-countries", +[0,4874,25950,1177,2675,17529,2931,27949,3401,4505,91], +"image-set", +[1,2349,30497], +[2,2662,30554], +"@eggjs/oxlint-config", +"@vercel/e", +"mock-spawn", +[0,30500,0,29217,2540], +"node modules", +[3,31793,24,5], +[0,2845], +[2,30503,30515], +[3,30477,11], +[3,30489,12], +"postcssrc", +".config.js", +[2,3561,30505], +"@recharts/devtools", +"motion-dom", +[2,30510,186], +"motion-u", +"-snapshot", +"midas", +[3,3591,9], +"ark-", +"y-codes", +"theme-class", +[2,30514,30516], +[2,30513,30517], +"hort", +[2,3677,30519], +[2,1172,30522], +[3,5558,22,6], +[2,30560,6802], +[1,2349,30525], +[0,30526,30528,30549,2540], +[0,8712,1423,5210,1209,3021,26499], +[2,30546,30547,3966], +[0,34225,4874,2559,91,34229,28456,34231], +[2,30530,30537], +[3,30868,11], +"cssnano-", +[2,30531,594], +[2,30534,11504], +"@codecov/", +[2,30536,6579], +[3,1300,12], +"silent", +"expressots", +"font-f", +"clean-architecture", +"font-family", +"font-weight", +[2,30544,30545], +[3,4526,12], +"ramework", +[3,31198,25], +"particles-", +"desm", +[0,89,5130,21151,28811], +[1,2349,30555], +[2,41,30552], +"pro-components", +[2,5557,3514], +"node16", +[0,33698,33699,33715,34552], +[0,9315], +[1,2349,30580], +"esc", +[2,7632,30558], +[3,30501,14], +"gulp-better-rollup", +[2,30560,1460], +"Leaflet", +"Maps", +"Gesture", +"Handling", +"two", +"fingers", +[2,30571,30572], +[2,3976,30573], +"world", +[3,29868,24,3], +"anitize", +[2,30571,30578], +[3,220,19], +[2,4026,3639], +[2,30575,30576], +[3,29963,27,3], +"atrules", +[0,0,30596,2523,4194], +"children", +"nestings", +"@anthropic-ai/sdk", +"@azure-rest/ai-inference", +[2,959,30586], +"vue-virtual", +[2,209,3376], +[3,30402,16], +[2,30588,4298], +[2,2574,3375], +"world-iso-codes", +[2,964,188], +[2,30599,29842], +"normalizes", +"fixes", +[0,4483,1177,1984,1894,91,4874,1953,7677,1982,1895,1011,1009], +[1,2349,30598], +[0,30601,30605,30608,2488], +"world-", +[2,30613,1460], +[0,1437,3074,3714,4361], +"@cfworker/json-schema", +"@clerk/localizations", +"@ark/attest", +[0,2228,2240,2247,2316,1906], +"non-corrupti", +"admin-lte", +[0,21779,8221,13814,15344,158,6707,3178], +"@clerk/nextjs", +"@clerk/themes", +[1,2349,30615], +"backendless", +[3,30593,18], +"to-valid-identifier", +[0,30626,30627,30549,2531], +"@astrojs/mdx", +[2,30618,30619], +[3,28058,16], +"tro", +[2,3704,34683], +[2,30625,3286], +[2,30623,9872], +"control-", +"smartbanner.js", +[3,2635,14], +[0,668,8712,4090], +[0,1192,91,5087,4874,28455,28574], +[2,30612,30665], +"cascade-layers", +[2,216,30629], +[3,30630,19], +[3,3569,13], +[2,30631,30632], +[3,30633,24], +"mix-function", +[2,30634,30635], +[3,30633,20], +"alt-text", +[2,12009,30638], +[2,30637,30639], +[3,28688,12], +[2,30641,5746], +[2,216,30642], +"ormat-", +[2,30644,4798], +[2,30539,30645], +[2,216,30646], +"gamut-mapping", +[2,216,30648], +[3,30649,19], +"radients-interpolation-method", +[2,30650,30651], +"hwb-function", +[2,216,30653], +[3,215,19], +"c-unit", +[2,30655,30656], +[2,30655,30352], +"light-", +"dark-function", +[2,30659,30660], +[2,216,30661], +[3,30662,19], +"ogical-", +"-request", +[2,30683,31073], +"-and-clear", +[2,14639,30667], +[2,30664,30668], +[2,30663,30669], +[3,30670,26], +"overflow", +[2,30671,30672], +[3,30673,30], +"behavior", +[2,11262,30675], +[2,30674,30676], +[2,30671,24800], +"viewport-", +"units", +[2,30679,30680], +[2,30671,30681], +[3,30628,13], +[2,30767,33380], +"media-minmax", +[2,216,30685], +[3,30686,24], +"-aspect-ratio-number-values", +[2,30430,30688], +[2,30687,30689], +[2,30695,10740,4978], +"nested-calc", +[2,216,30692], +[3,30693,19], +[3,30628,12], +"bannerize", +[2,31495,31502], +"play-values", +[2,29577,30698], +[2,3646,30699], +[2,30694,30700], +"oklab-function", +[2,216,30702], +"relative-", +"yntax", +"color-syntax", +[2,30704,30706], +[2,216,30707], +"scope-", +"pseudo-class", +[2,30709,30710], +[2,216,30711], +[3,30712,19], +"tepped-value-functions", +[2,30713,30714], +[3,70,7], +[3,5845,9], +[2,7854,30717], +[2,30716,30718], +[2,28533,30719], +[2,216,30720], +[3,30721,19], +"rigonometric-functions", +[2,30722,30723], +[2,216,10760], +"css-b", +"lank-pseudo", +[2,30726,30727], +"css-h", +[2,30612,33812], +"zarm", +"as-pseudo", +[2,30729,30732], +"css-pr", +"efers-color-scheme", +[2,30734,30735], +[2,1007,30738], +[3,13069,23,4], +"postcss-clamp", +[3,3591,10], +"r-pseudo-class", +[2,30740,30741], +"ouble-position-gradients", +[2,30513,30743], +[3,4791,14], +"within", +[2,30745,30746], +"gap-properties", +[2,3562,30748], +"ab-function", +[2,30478,30750], +[3,3616,10], +"gical", +[2,30752,30753], +[3,3664,9], +"pacity-percentage", +[2,30755,30756], +"verflow-shorthand", +[2,30755,30758], +"age-break", +[2,6423,30760], +[2,30764,30766], +"postcss-place", +[3,3710,17], +"lists", +"h", +"@biomejs/", +"playbook-builder", +"algo", +[2,444,30771], +"-interactions", +[2,30773,89], +[3,29959,13], +"@zarm-design/bem", +[2,3677,30705], +[2,30777,45], +[3,30774,13], +"ahooks", +"better-scroll", +[1,2349,30782], +"hermes-compiler", +[0,30791,30793,30799,34552], +[2,30777,200], +"@oxc-project/runtime", +"zarm-ui", +"zarm-mobile", +[2,30790,553], +[2,20561,30789], +"render-stream", +[3,30784,13], +[0,1169], +"@oxc-node/cli", +[0,3421,1429,4493,2899,4039,2026,4474,91,4856,4874,6503,1151,6494,8648], +"oxc-parser", +[2,30796,30797], +"@iconify", +"/utils", +[2,3882,11245], +[0,6653,2275,5472,6969,5982,7320,11346,3541,1169], +[1,2349,30801], +[0,30812,30825,2523,2531], +"@enact/i18n", +[2,30804,30232], +[3,907,8], +"doublylinked", +"lightning", +"-pool", +[2,30806,30807], +"ilib", +"-bytea", +[2,25638,30810], +[0,1112,1415,16230,24324,36538,30169,30023,3530,28865,29444,4135,26379,27921,4459,33251,24214], +"power-tasks", +"@cyntler/react-doc-viewer", +"putil-", +[2,30815,19138], +"varhelpers", +[2,30815,30817], +"@enact/docs-utils", +[2,30405,30821], +"-test-utils", +[2,18576,30823], +"nact-proxy", +"@fal-ai/client", +[0,33043,29170,29455,29458,29465,4874,20374,5254,29891,29466,33253,7677,23203,10984,19839,1680,1177,20044,16860,3144,3749,15450,1894,23535,30234,24181,91,29469,30908,28797,29470,1983,1984], +[2,22180,591], +[1,2349,30836], +[2,1962,30830], +"titanium", +"dos-detector", +"ed-queue", +"-ended-queue", +[2,4420,30832], +[2,11344,977], +"tsm", +[0,30846,30863,30865,2540], +"level-codec", +"write-stream", +[2,25982,30838], +"ltgt", +"bundle-size", +"spark-md5", +"vuvuzela", +"rolldown-", +"react select", +[0,1676,1679,2151,2212,17450,4400], +"react dropdown", +[2,30852,30856], +"empower", +[2,3696,12168], +"universal-", +"accessib", +"strict-equal", +[2,1683,30853], +[2,30851,30854], +"le react select", +"dereserve", +"accessible", +"licensify", +[3,21510,14], +"ilterify", +[2,30860,30861], +[0,5245,29493,4864,1429,1177,2899], +"jsx-async-runtime", +[0,1764,7682,26965,3428,2090,27,1002,1965,5995], +"@formkit/auto-animate", +[2,8293,181], +"@reporters/github", +"@apm-js-collab/tracing-hooks", +"tidev", +"iphone", +"precommit", +[2,5186,2203], +[2,5928,3717,2389], +"react-load", +"combine-promises", +"@actions/github", +[2,20201,1172], +"@actions/glob", +[2,19849,3583], +[2,1252,30880], +[2,20201,2942], +"errorstacks", +"-sinon", +[2,2878,30884], +"-display-", +"@google/genai", +"kolorist", +"oxlint", +[2,30893,30894], +"virtual dom", +"dom diff", +[3,30878,13], +"undler", +[2,3886,1541], +[2,30897,30898], +[3,38298,13], +"dx-loader", +[2,32359,13369], +[2,30901,7020], +[3,30899,18], +[2,30459,30903], +"-ssr-addon-v5-slorber", +[3,18018,13], +[2,30904,3642], +"@huggingface/inference", +"jest-l", +[2,30909,166], +"unplugin-a", +[1,2349,30925], +"ight-runner", +[2,30907,30911], +[2,35506,30914], +"tect-port", +[2,30916,30917], +[3,12312,18], +"shoehorn", +[3,2954,10], +[2,30923,1541], +"lugin-pug", +[2,30918,30920], +[2,5334,30921], +[3,4887,20], +[3,3703,15], +[0,0,30927,30931,2540], +"@nestjsx/crud", +[0,8648,4874,4880,34737,1894,89,3824,7671,91], +[2,206,31196], +[2,30930,32550], +"@vercel/b", +[0,89,586,11000,26264,6458], +[2,18420,8162], +[1,2349,30934], +[0,30936,0,30938,2531], +"parcel-bundler", +[0,1687,5303,1459,6501,182,148,164,167,29468,187,153,191,28332,15690,28361], +"Vue", +[0,28407,1459,6094,28416,28417,2585,28442,18241,6038,6110,1936,6138,6139,6142,6144,6145,20863,14600,5130], +"@zoroaster/assert", +"glob-fs", +[2,30942,10098], +[3,30939,11], +"unstyled", +"alamode", +[1,2349,31019], +"humanized", +"si", +"locale", +"@a-la/fixture-alamode", +"localized", +[2,30952,1172], +[3,30949,14], +"@artdeco/clean-stack", +"@artdeco/erte", +"@artdeco/", +"renderkid", +[2,30971,4521], +"jitter", +[2,30989,186], +"exception", +[2,30955,30962], +"scripts.json", +[2,30926,30665], +[2,30965,614], +"@nestjsx/", +"@depack/render", +"crud", +"crud-generator", +"frameworks", +"parse-ms", +[3,30963,14], +"@netlify/framework-info", +"@wrote/exists", +"milliseconds", +"period", +"@wrote/rm", +[2,30942,6696], +"@zmotivat0r/o0", +"@pothos/core", +[2,30942,553], +"mercurial", +"hg", +"vcs", +"argufy", +"catchment", +"p-filter", +"p-locate", +"documentary", +"unplugin-u", +[2,5313,6355], +[2,15658,30992], +"-integration", +"npmjs", +"@pri", +"sma/engines", +[2,30994,30995], +"gatsby", +"hugo", +"netlify", +"ts-pattern", +[2,32976,33011], +"global-dirs", +"erotic", +"line-replace", +"@prisma/", +[2,31005,1676], +[2,13403,31016], +"xdg-app-paths", +[2,31005,5576], +"studio", +[2,31005,31010], +"migrate", +[2,31005,31012], +"internals", +[2,31005,31014], +"rtdeco", +"point-client", +[2,4354,31017], +[0,0,31020,31082,2540], +[0,1192,1177,4042,4468,1894,91,5087,1895,1955,2780,1011,1009], +[2,31514,31516], +"fetch-engine", +[2,31005,31022], +"makepromise", +"get-platform", +[2,31005,31025], +[2,31011,2995], +"@prisma/ge", +"nerat", +"or-helper", +[2,31029,31030], +[2,31028,31031], +"promto", +"ORM", +"Prisma", +"reloquent", +"Prisma CLI", +"prisma2", +"JS", +"TS", +"SQL", +"SQLite", +"Postgres", +"core-js-pure", +"PostgreSQL", +"CockroachDB", +"MySQL", +"MariaDB", +"MSSQL", +"SQL Server", +"SQLServer", +"MongoDB", +[2,32483,13083], +"jest-location-mock", +[2,27845,31056], +"dule-alias", +[2,1464,31059], +"danger", +"-serve", +"spawncommand", +"docdash", +"hotreload", +"gulp-terser", +"@strapi/strapi", +"temp-context", +"webfont", +"usually", +"yarn-s", +[2,31070,11017], +"@pothos/", +[2,31084,31085], +[3,815,8], +"t-client", +[2,31072,31073], +"URIjs", +"pothos", +"IDE", +"svn", +"suggestions", +"intellisense", +"tagged-tag", +[0,31512,32054,35062,35060,20986,4453,5284,91,89,188,3709,23332], +[1,2349,31199], +[3,8998,11], +"assword", +"@svgr/hast-util-to-babel-ast", +[2,31104,31682], +[2,31089,1541], +"@epic-web/", +"yalc", +[2,31092,364], +"@strapi/", +"@strapi/i18n", +"@strapi/admin", +[2,31092,1823], +[2,31092,553], +[2,31092,594], +[2,31092,2942], +[2,31100,184], +"@strapi/u", +[2,31102,1803], +[3,28426,12], +"zshy", +"@types/so", +[2,31092,18035], +[2,31107,31108], +"@strapi/c", +"loud-cli", +[2,31092,5701], +"get-latest-version", +[2,31112,31113], +"@strapi/p", +"ermissions", +[2,31115,31116], +[3,31105,12], +"-transfer", +[2,31118,31119], +"@strapi/co", +"ntent-manager", +[2,31121,21945], +[3,31117,16], +"customize", +[2,31092,31124], +"review-workflows", +[2,31096,31126], +"cript-utils", +[2,31121,31128], +"type-builder", +"interact", +"css-parser", +[2,31132,31133], +"@strapi/t", +"s-zen", +[2,19502,31137], +"uglifyify", +"uglifyjs", +"ustom", +[2,4807,4684], +"css-ast", +"strapi", +"cmf", +"alpha-sort", +"vent-", +[2,31143,2618], +[2,2621,31144], +[2,31151,5130], +"mdast-zone", +[2,5967,2619], +"svg-e", +[2,31149,31144], +[3,17944,19], +"aria", +"admin panel", +"koajs", +"jam", +"graphqL", +"@protobufjs/aspromise", +[3,31157,12], +[2,31158,14357], +[2,31158,5061], +[2,31158,2016], +[2,31158,1612], +[3,31162,13], +"loat", +[2,31163,31164], +[2,31158,8625], +[2,31158,3403], +[3,31167,13], +[2,31168,25200], +[2,31158,4577], +"infrastructure", +[2,13888,4719], +"semver-tags", +[2,10617,31173], +"self hosted", +"lernajs", +"css-tools", +"@icons-pack/react-simple-icons", +"@khmyznikov/pwa-install", +[2,25885,24348], +"wd2", +"jasminewd2", +"-js-extender", +[2,11132,31183], +"webdriver-", +[2,31185,10057], +"snake-case", +[2,23689,31181], +"ang-format", +[2,21680,31189], +"natives", +[3,19209,11], +[2,31192,591], +[2,4491,31193], +"vrsource-tslint-rules", +"syntax-patches-for-csstree", +"base-driver", +[2,31228,29677,31230], +[0,31215,31216,31245,2457], +[2,31203,31204], +[3,27731,11], +[2,31201,57], +[3,1006,11], +"averse", +"@types/args", +[2,31208,57], +"squid", +[3,34785,11], +"privoxy", +"mod_proxy", +"via", +"x-forwarded-for", +"@express", +"-zod-api/zod-plugin", +[0,29178,3744,3911], +[0,48,53,68,61,71,73,76,14039,78,83,87,90,97,966,968,972,1195,1593,1610,1177,1879,1895,1938,1947,1955,1959,1192,2780,2843,3697,1894,89,3824,2924,4676,4677,4681], +"p3-linear", +"fill-keys", +"not-found-error", +[2,5223,31219], +"MCP", +[3,8648,12], +"hello-world", +[2,13669,31223], +[2,31226,28613], +[3,2670,12], +[3,33464,11], +[3,1004,13], +"cp-sugar", +"-external-push", +[2,31228,31241], +"-status", +[2,16238,31232], +"l-ct-react", +[2,31236,1983], +[3,11282,19], +[2,11147,1983], +[2,12042,4406], +[3,31198,24], +"pug-", +"move-base", +"pug-code-gen", +"pug-filters", +[2,31228,31261], +[0,89,6071,7521,5128], +"pug-lexer", +"@langchain/community", +"pug-linker", +"pug-load", +"pug-parser", +"pug-runtime", +"strip-co", +[2,31252,19490], +[2,31240,31253], +"@lobechat/agent-runtime", +[3,24593,18], +"down-it", +[2,31256,31257], +[2,24585,4535], +[3,31231,17], +"shape-emoji", +[2,31228,31271], +[2,31995,5257], +[2,32038,31267], +"bail", +"tap-bail", +" tools", +[2,31269,31270], +[3,31238,12], +"shape", +"updater-color", +[2,31281,26543], +[1,2349,31274], +[0,0,12125,31309,2531], +[2,33763,31291], +[3,31262,20], +"idn", +"idna", +"dns", +"domain", +[3,31262,21], +[2,31283,31284], +[3,31272,22], +"ut-modes", +"-bidi", +[2,7001,31285], +[3,11071,14], +[2,17414,31287], +"@uppy/companion", +[2,31313,364], +"detect-agent", +[2,5176,31293], +"remapping", +[2,31295,13901], +[3,33831,13], +[2,31298,31299], +"purge", +[3,28384,12], +"presigned-post", +[2,31301,31302], +[3,30257,11], +"erceptor", +[2,2032,31304], +"prom-bundle", +"grant", +"tus-js-client", +"qr code", +[2,2662,1278], +[0,2070,1108,6961,57,29617,4643], +"resumable uploads", +"tus", +"dropbox", +"@vuepress/", +[2,21282,31372], +[2,31316,31324], +"@radix-ui/", +"@browserify/envify", +[3,31317,12], +[2,31318,31135], +"common-s", +"hakeify", +[2,31320,31321], +"verr", +"primitive", +"webpack-chain", +"ide-mistake", +[2,31323,31326], +[2,15053,31327], +"unassertify", +[2,31355,31356], +[2,31313,553], +[2,31313,1783], +"vue-server-renderer", +[2,31338,31342], +"decode-", +[2,14649,4627], +[2,31335,31336], +[3,13063,12], +"filter-obj", +"-on-first", +[2,4237,31340], +"reset-app", +[2,31313,31346], +[3,5422,9], +[2,7193,3634], +"shared-utils", +[2,31332,2091], +[2,31349,3111], +[3,21294,16], +"retape", +[2,19469,31352], +[3,32087,20,4], +[2,21282,31354], +"last-updated", +[3,28754,17], +"ompose-refs", +"tap-esm", +[2,31359,31604], +[3,31330,18], +"synchronous", +[2,28756,8191], +[2,31363,31364], +[3,31361,17], +"rimitive", +"FIFO", +"lifo", +"LIFO", +[2,28756,32760], +"queue js", +"job queue", +"job ", +"active-header-links", +"scheduling", +[2,31371,31373], +[2,21282,3412], +"task queue", +"ordered", +[2,31380,31382], +"linked list", +[3,31368,20], +"dequeue", +"escape-keydown", +"assistant-stream", +[2,31385,6599], +"assistant-", +[2,31418,31420], +[1,2349,31476], +"parchment", +[3,15562,11], +[2,31395,31396], +[3,12455,16], +[2,31391,1722], +[2,17612,2924], +[2,5197,4408], +[3,1694,14], +"x-buildutils", +"@types/sharp", +"radix-ui", +"ai-sdk", +"shadcn", +"fuzzysort", +"grunt-search", +[3,19622,19], +[2,31403,3595], +"@qunitjs/browserstack-runner", +"assistant", +"openai", +"ai", +"chatbot", +"ai-chat", +"dom-e", +[2,15588,6863], +[2,31411,31412], +[2,31415,31416], +[3,6493,9], +"acritics", +"@types/qunit", +[3,31331,11], +"qunit-plugin", +"heme-default", +"@walletconnect/browser-utils", +"ai-chatbot", +"ai-assistant", +"ai-copilot", +[2,31349,31428], +"exists-stat", +"js-reporters", +[3,15580,13], +[2,26353,8791], +[2,31436,31464], +"chatgpt", +"gpt4", +"gpt-4", +[3,2888,14], +[2,31436,553], +[3,31421,15], +"testling", +[2,31436,31441], +"AnimationFrame", +[2,705,31439], +"safe-json", +[2,31436,31443], +"window-getters", +[2,31450,6774], +"-export-", +[2,31445,14057], +[2,1205,31446], +"envvar", +"sanctuary", +[3,31442,22], +"-identity", +[2,31449,31451], +"xyz", +[2,6080,31458], +"@ethersproject/address", +[2,31457,25352], +[3,10408,17], +"al-ui", +"wallet", +"walletconnect", +"jsonrpc", +"cryptocurrency", +"dapp", +"iso-crypto", +[2,31436,31472], +[2,31467,31408], +[3,31454,15], +[3,30286,15], +[2,31436,594], +[2,31436,1616], +"alc", +"legacy-modal", +[2,31478,9962], +"@globalart/nestjs-swagger", +[2,32811,32812], +[0,31481,0,31487,2531], +[2,31478,553], +[3,31465,22], +"timed-out", +[2,31478,594], +[0,1459,16485,182,28912,148,187,153,28332,15690,28361,146,28913,15716,29131,29495], +"exceptions", +"sentry", +[3,15602,13], +[2,31499,31500], +"@graphiql/plugin-doc-explorer", +[0,28407,1459,6094,28416,28417,2585,28442,18241,6038,6110,1936,6138,6139,6142,6144,6145,20863,5130], +[1,2349,31505], +[2,31478,5576], +[2,31436,31491], +"jsonrpc-provider", +[2,31493,31494], +[3,31490,23], +"http-connection", +[3,27276,25], +[2,31497,31498], +"ethereum-", +"test-network", +[3,31438,16], +"ocket-transport", +[2,7850,21497], +[3,4986,9], +[2,2079,4406], +[2,11183,31503], +[0,0,2684,31510,4194], +"father-build", +"@mastra/core", +"rc-test", +[2,31520,13927], +[0,8618,8619,8620,1299,200,1523,6876,8622,1836,8623,1179,8624,6847,8625,2720,8626,8628,5284,4403,202,6710,3741,8630,3742,8631,3925,8632,8633,4989,2184,8634,7009,6621,553,91,181,8635,4758,8636], +"react-slider", +"slider", +[1,2349,31522], +[3,31027,15], +[2,7850,11512], +"core-licensed", +"wordpress", +"gutenberg", +[2,14013,8189], +[3,1103,9], +"angular-mocks", +[0,31529,31531,31532,2540], +"graphiql", +"next-router-mock", +[3,5251,10], +"ponselike", +[2,31525,31526], +"body-scroll-lock", +[0,29692,1079,1676,3310], +"motion-v", +[0,5245,4874,5542,29696], +[0,32859,8549,5592,5576,5130,6082,28450], +"radash", +"@a2a-js/sdk", +"js-tiktoken", +"hono-openapi", +"@ai-sdk/provider", +[2,31543,31545], +[3,2766,10], +"jasmine-ts", +[2,13130,3212], +[3,3793,11], +"@ai-sdk/", +[2,31643,1623], +"ui-utils", +[1,2349,31547], +[0,27013,0,31628,2540], +[2,31537,31570], +"body scroll", +[2,31549,31551], +" lock", +[3,65,8], +"react scroll lock", +"react-common", +[2,31552,31554], +[3,31555,17], +"ponents", +[2,31556,31557], +[3,31555,14], +[2,31559,21189], +[3,31560,16], +"oks", +[2,31561,31562], +[2,31559,14592], +[3,31553,12], +"freeze", +"vanilla-js", +"tablet", +"bsl", +"-v5", +[2,31572,31582], +"@mastra/", +[2,1379,31574], +"node-info", +"@restart/hooks", +"resolve-path", +"@restart/ui", +[2,3744,20622], +"unco", +"ntrollable", +[2,31579,31580], +"schema-compat", +"ecosystem-react", +[2,31585,594], +[3,31548,17], +[2,11484,31587], +"sole-ui", +"@icon", +"s/material", +[2,31588,31589], +[2,3131,1512], +"reactcss", +"@types/esm", +"@case/eslint-config", +[2,31596,31601], +[3,29736,11], +"centered", +[2,10818,31597], +[3,30881,30], +[2,31599,1204], +"up-sync", +"chai-spies", +"jsx-loader", +"ntext", +[2,3808,31604], +[3,3850,10], +"@types/sane", +"testdom", +"@lukeed/uuid", +[2,31584,31570], +"color picker", +"sketch", +[2,4807,4547], +"photoshop", +[2,31616,5592], +[3,31573,14], +[2,31618,6893], +[3,31548,18], +[2,31538,31570], +[3,2651,13], +"tags-plugin", +[2,31620,31621], +[2,31626,6893], +[2,28010,1492], +[2,1585,31624], +[3,31610,24], +"mocha-jshint", +[0,6400,4967,12042,12044,12046,12045,12047,1424,12048,12049,12050,12053,12055,12056,12058,12061,12063,12062,89,6071,12066,12067,12068,12071,188,12072,3698,12073,2814,12074,1098,91,5284,7521,5122,12075,12076,12079,1623,1936,12080,12082,12083,12086,1424,12088,12089,12090,12091,12092,12094,31238], +"@ai-sdk/azure", +[1,2349,31641], +[2,31543,31407], +"docgen/cli", +[2,10802,31632], +[2,31635,671], +"@internal/", +[2,31637,31638], +[3,28766,11], +"ypes-builder", +"@openrouter/ai-sdk-provider", +[2,1710,2136], +[0,27013,0,31628,2531], +"is-root", +"camelcase-", +[2,24559,31675,31676], +"llm", +"agents", +"vectorstore", +"@react-d", +"nd/invariant", +[2,31648,31649], +[3,31650,11], +[2,31651,4163], +[2,1199,17586,31655], +"dnd-core", +"starts-with", +"embeddings", +"rag", +"evals", +"otel", +[1,2349,31662], +"replacement", +[0,31663,0,7655,2531], +[0,12215,12219,1014,28999,7406,7403], +[1,2349,31672], +[3,24807,15], +[2,31665,1286], +[3,8136,9], +"ctrine", +[2,31667,31668], +"html4", +[2,20245,16957], +[0,31679,0,31684,2488], +[2,30415,31678], +[2,32813,18502], +"reference-", +"invalid", +"condense-newlines", +"landmark", +[0,29419,29441,29454,29756,29757,29766,29807,29813], +[2,30418,31681], +"olor-helpers", +"rtablejs", +"attr-accept", +[0,29818,4270,29823,5472,1973,29830,29830,3857,89,5131,12295,12296,5122], +"vue-next", +"file-selector", +"draggable", +[3,71,24], +[2,31688,14255], +[2,69,5721], +[3,5700,24], +"ipeline-operator", +[2,31691,31692], +"-why", +[2,10876,31694], +[2,18043,200], +[3,4676,9], +"locks", +[2,31697,31698], +"drag-and-drop", +"color-name", +[3,1802,13], +"kanban", +[2,32312,2825], +"anser", +[2,2769,2086], +"le-promise", +[2,6935,31707], +[0,0,33875,33906,34552], +"redbox", +"crash", +[0,0,33788,33793,34552], +"css-mediaquery", +[0,2817,18023,1125,1129,31764,1122], +[3,33768,11], +"react-si", +"de-effect", +[2,31716,31717], +"iceworker", +"fl", +[2,16819,31720], +"karma-html", +[2,31722,2903], +"is-whitespace", +"nfl", +"noscript", +[2,31729,33865], +"dashdash", +"@types/ran", +[0,30999,28818,5995,17978], +"titanium-sdk", +[1,2349,31738], +[3,20745,21], +"jest-preview", +[2,31395,4384], +"@polka/send-type", +[2,31005,31774], +[0,0,31739,31746,2531], +[0,1389,2665,4650], +[2,20413,1699], +[3,1845,22], +[2,31741,2855], +"react-mount", +"yarn-", +[2,31744,17335], +[0,4384,2076,5131,4453,2013,15535], +[1,2349,31753], +"csstree", +"decap-cms-backend-aws-cognito-github-proxy", +[2,9497,31907], +[3,3321,10], +[2,31751,2849], +[0,31756,31757,31758,2488], +[3,19812,19], +[2,31754,965], +[0,26616,4391], +[0,2766,2297,2881,2886,2898,28023,3181,3758,4535], +[0,3113,26799,5131,1388], +"completion", +[2,31780,31781], +[1,2349,31762], +[0,31763,31783,2523,2540], +[0,20414,29996,17982,11049,30043,30048,3478,29457,3923,18730,20423,30050,30081,4729], +[2,31768,13083], +"viewport", +[3,15616,12], +"observer", +[3,1129,12], +"lazy load", +"inview", +"useInView", +"useIn", +"terse", +"query-plan-executor", +"decap-cms", +"aws-cognito", +"ctionObserver", +[2,31773,31777], +[2,31772,31778], +[3,31749,19], +"zure", +[2,31792,17977], +[0,5526,5528,5529,31674,826,30086,4874,9241,20441,28400,1540,21594,1177,2078,2220,2222,5560,29197,3697,3752,4135,4193,4238,4481,91,4548,28519], +[1,2349,31785], +[0,31786,31801,31803,2457], +[0,3749,3527,11481,29170], +"@formatjs/", +"listformat", +[2,19067,31788], +[2,31787,31789], +[3,31790,14], +[3,31749,18], +[2,31792,31804], +"common-stuff", +[3,31790,11], +"cu-messageformat-parser", +[2,31795,31796], +[2,6458,1671], +[2,19067,31798], +[2,19644,8982], +[0,7812,30138,3742,1984], +"what-the-diff", +[0,20001,671], +"git-gateway", +[2,31813,6064], +[3,18229,15], +"lat-gitignore", +"jsondiffpatch", +"gotrue-js", +[1,2349,31817], +"es-crypto", +"gateway", +[3,31793,21], +[3,19657,16], +[2,31814,2855], +[2,31813,620], +[0,31818,31826,2523,2540], +[0,58,1437,3930,814,4747], +"@nstudio", +[2,4564,2618], +[2,2617,31820], +[2,31792,2658], +[3,28165,19,9], +"hmac256", +"hmac512", +[0,1178,29847,29851,25675,3758,3938,4216,4255,4389,4449], +[2,31792,1973], +"exenv", +[1,2349,31853], +"custom-", +[2,31830,11513], +[2,10704,31831], +"otp-io", +[2,29956,4963], +[2,31836,31837], +[3,23664,13], +"or-js", +"dom7", +[2,13843,353], +[2,1176,31839], +[2,14510,2091], +[2,22588,2091], +"diff-reporter", +[2,13872,31843], +[2,3024,6754], +[2,31848,31850], +[2,9944,7227], +[3,29951,21], +"tween", +"elpers", +"napa", +"runstorm", +[0,31854,27116,27095,2531], +[0,28326,2017,31435,31469], +[2,32904,158], +"nullthrows", +"@tiptap/core", +"metro-r", +[2,31858,96], +"metro-", +[2,31860,4227], +"s-runtime", +[2,6971,31862], +[2,5237,31863], +[3,5079,13], +"/codegen", +[2,31865,31866], +[3,31867,14], +"medium-zoom", +"js-polyfills", +[2,31868,31870], +"tinydate", +"tweezer.js", +[2,8603,1111], +"le-plugin", +[2,3630,31875], +[2,31868,31876], +"assets-", +[2,31878,29179], +[2,31868,31879], +[3,5059,11], +"olors", +[2,31881,31882], +[2,31868,31883], +"@jest/c", +"reate-c", +"-key-", +[2,31887,3046], +[2,6990,31888], +[2,31886,31889], +[2,31885,31890], +[2,3912,5959], +[2,31868,31892], +[3,31867,16], +"mmunity-cli-plugin", +[2,31894,31895], +[2,31898,4333], +[3,24539,13], +[2,17304,31900], +"laywright", +[2,32412,15001], +[2,31908,7188,32485], +"creator", +[2,10735,5130], +"mobile-", +[2,31905,5001], +"ttlcache", +"@tiptap/", +[1,2349,31916], +"cp-file", +[2,17964,31913], +[2,5063,18324], +[3,31333,16,3], +"keychain", +"yargonaut", +[0,0,0,31927,2540], +[2,36270,31918], +"s-test", +[2,31924,31925], +"@entypo-icons/core", +"ocial-buttons", +[2,4910,31921], +"evil-icons", +[3,15277,15], +"xecutable", +"feather-icons", +[0,30486,5995,35981,7072,18035,89], +"fontisto", +"oslllo-svg-fixer", +"epub2", +"line-icons", +[2,4182,31931], +[1,2349,31936], +"svg2ttf", +"svgicons2svgfont", +[0,0,0,31938,34552], +"osx", +[0,1177,6939,89,3878,27158], +"ssr-window", +"@pinia/colada", +[1,2349,31946], +"@cmfcmf/docusaurus-search-local", +[3,3911,11], +"form-hmr", +[2,31943,31944], +[0,31981,31984,32268,4194], +[2,31951,31960,31962], +"currency", +"number-", +[2,31949,1671], +[3,27276,15], +[2,33571,89], +[2,31954,31957], +[3,7628,10], +"hijack", +[2,4013,31955], +"heck", +"onclick", +"outside", +"classic-", +[2,32028,1745], +"build-app-blueprint", +[2,31968,31971], +[2,812,12444], +"t-flow", +[2,17375,31965], +"hermes-eslint", +[3,31947,30], +"array-hyper-unique", +"crlf-normalize", +"ddon-blueprint", +"book", +"books", +"chapter", +"comic", +"epub-maker", +"epub-maker2", +"node-novel", +"novel", +"volume", +[0,1104,22972,1676,2061,13896,1776,3102,4449], +"matchmedia", +[2,31982,3766], +[0,53,87,94,1178,1429,1596,1177,1922,2323,2338,2384,2419,2436,2463,2510,2899,30496,3421,3697], +"yphenate-style-name", +[2,6495,31985], +"tch-", +[2,31987,11034], +[2,18655,31988], +[3,31989,12], +"mediaquery", +[2,31990,31991], +"-media-mock", +[2,3529,31993], +"@lobechat/", +[3,6415,10], +[2,31996,3582], +"escaping", +"respond", +"goat", +"matchMedia", +"🐐", +[2,32004,32005], +[3,31263,13], +"text-engine", +"color-logger", +"ice-cap", +[2,31995,18035], +"esdoc-importpath-plugin", +[2,31995,1807,32030], +"ECMAScript6", +[3,6608,10], +[2,32012,32014], +"2015", +"ECMAScript7", +[2,32017,6893], +[3,32013,13], +"ECMAScript8", +[2,32017,6836], +[2,3944,8253], +"k-monitor", +[2,4117,32021], +[2,32020,32022], +[3,32023,15], +"log-monitor", +[2,32024,32025], +"proposal", +[3,19209,12], +"http-graceful-shutdown", +"client-ipc", +[2,32032,32033], +[3,32010,19], +"server-ipc", +[2,31995,2092,591], +[2,31995,32036], +"model-runtime", +"mdc", +"developer", +"combobox", +"multiselect", +[2,31995,3742], +[2,31995,594], +[2,31995,32044], +"web-crawler", +[2,32047,13538], +"json2mq", +[3,1841,9], +"-apps", +[2,21340,32048], +"-carousel", +[2,11167,32050], +"why-did-you-update", +[2,32057,32058], +"carousel", +"Image slider", +"orbit", +[3,1841,12], +"rts", +[2,1841,6324,4978], +[2,32074,32082], +"@tippyjs/react", +"@vxna/mini-html-webpack-template", +"common-dir", +[2,1861,3427], +"name-p", +[2,32065,84], +[2,18977,32066], +"glogg", +[3,26921,11], +[2,32069,1646], +"jss", +"jss-plugin-camel-case", +[3,32072,12], +[3,32059,20], +"ompose", +[2,32073,32075], +[3,32072,11], +"default-", +"default-unit", +[2,32077,32079], +[2,32077,2202], +"s-gateway", +"isolate", +[2,32077,32083], +[2,32077,3639], +"listify", +[2,12171,2651], +"q-i", +"qss", +"-annotation-resolver", +[2,3822,32090], +[3,32091,13], +"-handler", +[2,4904,32093], +[2,32092,32094], +[2,32047,6038], +"react-group", +[2,4287,1928], +"type-detect", +[2,32047,45], +"inter-element", +"@types/buble", +"py-webpack-plugin", +[2,4860,32103], +"@types/esc", +"odegen", +[2,32105,32106], +"h-sum", +[2,12395,32108], +"@types/ke", +"ymirror", +[2,32110,32111], +[3,23829,17], +[2,32113,3119], +[2,27479,4408], +[2,13419,32115], +[3,12290,12], +[2,32117,13735], +[3,8157,15], +[2,32119,5331], +"deabsdeep", +"white-space", +"deepfreeze", +"dog-names", +"amia", +[2,22060,32125], +[2,32047,32128], +"market-sdk", +"keymirror", +[2,4293,6987], +"@lobehub/tts", +"tts", +"@lobehub/ui", +"@neondatabase/serverless", +"@next/third-parties", +"@react-spring/web", +"jest-pre", +[2,29611,32139], +"user-require-helper", +"@serwist/next", +" vector graphics", +[2,24090,32141], +"tagname", +[2,24116,7466,32165], +"svginjector", +"@t3-oss/env-nextjs", +"@trpc/client", +"@trpc/next", +"@trpc/react-query", +[3,32029,17,5], +"TapEventPlugin", +"300ms", +"http-shutdown", +"http-terminate", +"prometheus", +[2,33763,13538], +[2,30495,32158], +"dge-config", +[2,36840,32160], +"ctions", +[2,32163,32168], +[3,7214,13], +"@vercel/s", +"icss", +"lement", +[2,24116,32179], +"@4tw/cypress-drag-drop", +"peed-insights", +"@xterm/xterm", +[2,4609,2759], +"brotli-wasm", +"alert", +[2,29706,32174], +"-and-timezones", +"dexie", +"drizzle-orm", +"commoner", +[3,10755,11], +"hydrate", +"coverify", +"es3ify", +"infima", +"grunt-jest", +"jasmine-t", +"apreporter", +[2,32184,32185], +"drizzle-zod", +"populist", +"drizzle-", +"gpt-tokenizer", +[2,32192,32193], +"inferno-hy", +"perscript", +[2,23910,13494,32197], +[2,9944,9847], +[2,9944,591], +"-to-backend", +"js-sha256", +"vnode", +"createVNode", +[2,32237,1098], +[2,14040,1276], +[3,1898,19], +"lay", +[2,1962,32204], +[2,2783,3758], +[3,15568,16], +[2,1781,32212], +"scrolling", +"infinite", +"fixed", +[3,31752,17,3], +"langchain", +"gulp-rtlcss", +[2,26708,32182], +"langfuse", +[2,5223,32178], +[2,1861,32217], +"dark mode", +[2,32216,1732], +"lucide-react", +[2,32223,32224], +[3,3120,12], +"txt", +"react-popper", +"bootswatch", +"docstrap", +"storysource", +[2,10818,32228], +"model-bank", +"customize-cra", +[2,32234,32235], +"holderjs", +"modern-s", +"creenshot", +"react-prism", +[3,34791,12], +"logging-helpers", +"next-mdx-remote", +"nextjs-toploader", +"nuqs", +"officeparser", +[2,32244,1098], +[3,33256,22], +"github-files-fetcher", +"oidc-provider", +"ollama", +[2,7719,1612], +"partial-json", +[2,3502,33498], +"@stitches/react", +"animate-sass", +[2,3562,32254], +"trolling", +[2,32256,32257], +[3,839,14], +"gr", +[2,11932,8861], +"mocha-r", +"eporter", +[2,32259,32260], +[2,4385,32261], +"pdf-parse", +"preview jest", +[2,27010,32290], +"plaiceholder", +"posthog-js", +[0,2323,1776,18011,5284,18444,1745], +"log-utils", +"pwa-install-handler", +"line by line", +"engine-base", +"engine-handlebars", +[2,32278,32279], +"lo", +"repl", +"lo-dash", +"react-con", +"fetti", +[2,32283,32285], +[2,4150,32282], +"-75lb", +"react-la", +[2,11072,2731], +"yout-kit", +[3,19580,11], +[2,32286,2002], +[2,5237,57], +"lws-middleware", +"-tagfilter", +"refactoring", +"printing", +[2,3715,32292], +[2,26973,32308], +"react-pdf", +"react-rnd", +"react-scan", +[2,32299,32304], +[3,3913,11], +[3,12133,19], +"tagfilter", +"prepare", +"dangerous", +"oso", +"react-wrap-balancer", +[1,2349,32313], +[2,17355,13771], +[3,23279,13], +[2,4627,8840], +[2,3166,32309], +"mobile-detect", +"composition", +[0,32340,0,32427,2540], +[2,32315,32316], +"resolve-a", +"ccept-language", +"rtl-detect", +"lister", +"parse-entities", +"svix", +"tokenx", +"ts-md5", +"@red", +"grunt-jasmine-node", +"@redis/bloom", +"@redis/", +[2,32326,5576], +"unstructured-client", +"@redis/json", +[2,32326,7193], +"use-merge-value", +"time-series", +[2,32326,32332], +"mobilegrade", +[2,20223,16460], +"sniff", +"word-extractor", +[2,32339,594], +"zustand-", +[0,2714,31809,3181,2867], +"@cfaester/enzyme-adapter-react-18", +"ocly/openapi-core", +[2,32323,32342], +[2,32348,3005], +"nth-child", +"nth", +"rc-hammerjs", +[3,30906,13], +[3,1750,11], +[2,1186,3939], +[2,32349,32350], +"theme-redoc", +[2,32349,32352], +[2,32356,32366], +[3,8286,13], +"@lobehub/i", +"heme-common", +[2,32355,32357], +[2,20201,594], +"is-alphanumerical", +"api-doc", +[3,32351,12], +[2,32362,10958], +"is-decimal", +"is-hexadecimal", +"18n-cli", +[2,32047,671], +"netlify-plugin-cache", +[2,32370,553], +[3,32127,16], +[2,32047,32373], +"cssinjs", +"seo-cli", +[2,28427,32375], +[3,28091,16,8], +"just-curry-it", +"reducers", +[2,17790,32377], +"@next/eslint-plugin-next", +[2,16479,1414], +[3,1905,16], +"icorn-camelcase", +[2,32381,32382], +[2,4321,9776], +[2,2130,32384], +"@peculiar/webcrypto", +[2,16931,32388], +"roma-js", +"@wdio/selenium-standalone-service", +"babelrc-rollup", +[2,32398,32399], +"insert-line", +[2,5316,1464], +[2,3944,2700], +"queryselector", +"shadowdom", +"rdme", +"@types/cr", +"ypto-js", +"@types/ip", +"tanstack", +[2,32403,32404], +"gulp-str", +"eamify", +"rc-tools", +"@redux", +"-saga/core", +[2,32406,32407], +[2,32417,32419], +"tappable", +[2,33060,1501], +[3,13875,15], +"lias", +[2,32412,32413], +[2,3807,32442], +"effects", +"@types/nu", +"side effects", +"meral", +[2,15461,32423], +[2,32422,364], +"@actions/", +"idc-provider", +"redux-m", +[2,32424,18716], +"@types/pg", +[0,30999,28818,5995,31804,31812], +[1,2349,32472], +[2,32430,32439], +"@types/r", +"ecmarkup", +[2,32437,32438], +"gulp-emu", +[3,2453,9], +[2,32434,2995], +[2,2505,4088], +"@readme", +[3,23709,18,8], +"tl-detect", +[2,5051,32441], +"ystemjs", +"ful", +[2,24167,32455], +"dbdocs", +"dpdm-fast", +[2,32189,32451], +"goober", +"jest-esm-jsx-transform", +"parcel-plugin-css-to-string", +"use-throttled-effect", +"dbml-generator", +"abstract", +"hex", +"wai-aria", +"ice-detect", +[2,32466,38], +"drizzle-kit", +[2,1949,32459], +"dx", +"is-hidden", +"fake-indexeddb", +[2,9335,6424], +"just-diff", +"smart-tv", +"smarttv", +[3,15570,11], +[2,3506,4581], +[2,3862,32492], +"mcp-hello-world", +[2,12285,2527], +"remark-mdx", +[0,32496,32500,2523,2540], +"simple-routing", +[3,23352,11], +"mdx-", +"jsx-a", +[2,32476,5714], +[2,32475,32477], +[2,8137,32478], +[2,8909,32479], +[2,32474,32480], +"serwist", +"snapshot-", +[2,32483,1182], +"-bubble-menu", +"vercel-ai", +"nano-equal", +[2,1849,32489], +"-fuzzy", +"azure-openai", +"shouldComponentUpdate", +"file-viewer", +[2,3862,15571,32498], +"visual-model", +"stt", +[0,30868,1414,2020,2105,2070,4745], +"quicklook", +"-v2", +[2,3862,3730], +[0,20454,36559,30529,826,4874,30548,4135,1177,29197,91], +[1,2349,32517], +[2,31995,32503,32515], +"observab", +"image-gallery", +"image-viewer", +[2,32510,32530], +[2,32508,32509], +"vitepress-", +"plugin-group-icons", +[2,5119,32511], +"vg", +"issue-", +[2,32512,57], +[2,21520,22370], +"ility-otel", +[2,32518,32526], +[0,0,21617,32532,2402], +[3,217,9], +"mock-stdio", +[3,3998,15], +"ebpro", +[2,32520,32521], +[2,9785,24387], +[3,23523,21], +[2,32524,3874], +"ndicator", +"progressbar", +"distribution", +"indeterminate", +"-charts", +[2,3862,32543], +[0,12479,2947,7193,26421,27968,2100], +[1,2349,32534], +[0,0,32537,32542,2402], +[2,17092,32536], +"-path", +[0,4493,32977], +[2,32539,21172], +[3,5079,24], +[2,11147,970], +[2,5557,970], +[0,188,4646,1542,32977,6533,3212,5472], +"youtube-iframe", +[2,3115,19101], +"unified-args", +[2,32563,5066], +[1,2349,32548], +[0,0,32549,32555,2540], +[0,1175,2323,2332,30561,2367,2459,2494,2504,2510,2530,1894,4045], +"ackends", +[2,32904,990], +"iframe", +[2,3993,6424], +"@cacheable/utils", +[0,30563,30564,30565,30566,30567,30568,5131,9006], +[1,2349,32642], +"@apphosting/build", +"@atomico/rollup-plugin-sizes", +"git-branch-is", +"remark-slug", +"react-spring", +[2,32565,10896], +[3,30798,17], +[2,32575,32576], +[3,32557,12], +"-isomorphic", +[2,23276,32566], +[2,25131,32566], +[2,32570,32574], +[3,32041,11], +"@bedrock-layout/use-forwarded-ref", +"gmail-send", +[2,4807,31528], +"ython-interpreter", +[3,3895,11], +"-singleton", +"text-hex", +"ssrf-safe-fetch", +[2,32589,32623], +[3,23054,11], +"ent-config", +[2,32580,32581], +"ntributors", +[2,24218,32583], +[3,9343,15], +"gap", +[2,32585,32586], +[3,9347,9], +[3,30640,22], +"cense", +[2,32588,32590], +[3,23078,23], +[2,32592,10663], +[3,23082,24], +[2,32594,7210], +[3,23085,14], +"get-nonce", +"le-extension", +[2,32596,32598], +[3,23085,18], +[2,32600,23076], +"rst-", +"heading-", +[2,32603,2970], +[2,32602,32604], +[2,32596,32605], +[3,23092,13], +[2,9398,590], +[2,32607,32608], +"consec", +"utive-blank-lines", +[2,32610,32611], +[2,23099,32612], +"emphasis-", +"as-heading", +[2,32614,32615], +[2,23099,32616], +"name-articles", +[2,2093,32618], +[2,23099,32619], +[3,32620,25], +[3,32612,12], +"rast-color-function", +"dashes", +[2,32622,32624], +[2,32621,32625], +"irregular-", +[2,32627,7169], +[2,32621,32628], +"mixed-case", +[2,32621,32630], +"@theuiteam/lib-builder", +"crawler-detection", +[2,32746,31528], +"outer-dashes", +[2,32621,32635], +[3,23118,23], +[2,32637,8958], +"punctuation", +[2,32637,32639], +"missing-", +[0,32677,32748,2523,2540], +[2,31635,32673], +"blank-lines", +[2,32641,32644], +[2,23099,32645], +[3,32646,16], +"ulti", +"ple-toplevel-headings", +[2,32648,32649], +[2,32647,32650], +"dollars", +[2,5124,32652], +[2,23099,32653], +[2,16065,17537], +[2,23099,32655], +[3,32656,18], +[2,32657,591], +"ordered-", +"list-ma", +"rker-value", +[2,32660,32661], +[2,32659,32662], +[2,23055,32663], +[3,23139,22], +"-alignment", +[2,32665,32666], +[2,17998,2585], +"retext-english", +"retext-", +[2,10832,2195], +[2,32670,32671], +"ai-v6", +[2,32675,32676], +[3,32643,13], +"sdk-v4", +[0,30585], +[2,32700,7174], +[3,23096,14], +"nk-title-style", +[2,32679,32680], +"maximum", +"-heading", +[2,32683,15309], +[2,32682,32684], +[2,23055,32685], +[3,32686,20], +"line-length", +[2,32687,32688], +[3,23113,30], +"ed-urls", +[2,32690,32691], +[3,23113,25], +"s-in-section", +[2,156,32694], +[2,32693,32695], +[3,32617,18], +"ty-url", +[2,32697,32698], +[3,31198,34], +"-paragraph", +[2,15403,32701], +[2,32637,32702], +[3,23118,16], +[2,32704,14550], +[2,170,23116], +[2,23099,32706], +"-like-url", +[2,11043,32708], +[2,23099,32709], +"ed-fu", +"ll-reference-image", +[2,32711,32712], +[2,14475,32713], +[2,23124,32714], +[3,32715,39], +[2,32716,163], +[3,32672,14], +[2,32718,3997], +[2,31228,27863,32721], +"bsorbers", +[2,32723,32724], +[3,32720,20], +"emitters", +[2,32722,32726], +"-shape-circle", +[2,32728,32729], +[3,32725,35], +"square", +[2,32731,2585], +[3,31244,19], +"autolinker", +[2,32734,32735], +[3,31244,14], +"lim", +[2,31281,14858], +[2,31281,32738], +"roll", +[2,31281,32740], +"tilt", +[2,32742,32743], +[3,32739,22], +"winkle", +[2,31281,32745], +"wobble", +"tua-", +[2,4511,32078,4366], +[0,188,11018,30592], +"caseless", +[2,32752,2855], +"aws-sign2", +[3,32674,18], +"oauth-sign", +[2,3013,2660], +"forever-", +[2,32755,4575], +"har-validator", +"is-typedarray", +[2,2666,1580], +"use-callback-ref", +"taper", +"karma-cli", +[1,2349,32764], +[0,0,32771,32780,2776], +"glob-bin", +"use-sidecar", +"JSDA", +"stealthy-require", +[3,4010,16], +[2,32769,364], +[0,33043,442,34111,30737,4874,7677,22839,1177,1895,1942,1982,2807,25209,2990,20085,1894,19713,30762,23535,4131,1531,4507,91,4523,1984], +[2,32774,32779], +"thenable", +[3,5430,21], +"useRef", +"createRef", +"merge refs", +"vconsole", +"ummary", +[0,30769,8893,7595,7517,6564,7265,1209,3776,7268,6081,4799,553,91,4545,614,6731,6435,594], +[1,2349,32785], +[2,32783,32784], +"detect-n", +"ode-es", +[0,32791,32799,32809,34552], +[2,4807,1845], +"@react-pdf/renderer", +"code spliting", +"sidecar", +[2,4625,8119], +[0,30787,28465], +"index.js", +[2,32028,33976], +"is-wayland", +"copy-text-to-clipboard", +[2,32797,32798], +"mutation", +"-observer", +[0,11536,29317,30792,8850,1397,1556,2020,2070,30794,3510,1689,29444,4042,4174,4227,91,8550,28865], +"-tslint", +[2,1009,32800], +[3,1009,11], +"/analyze-trace", +[2,32802,32803], +[2,1977,2528], +"micro-", +[2,32806,7906], +"svelte-loader", +[0,6996,668,5362,28865,4042,2924], +"down-config", +[3,13476,17], +"ntext-async-hooks", +[3,36559,16], +"ResizeObserver", +[2,32817,11937], +"worktop", +[3,8809,20], +[2,17214,5477], +"perty-rule-prelude-list", +"path-parse", +"scss-loader", +"-flag", +[2,6846,32822], +[2,15884,32823], +[3,1790,16], +"copy-dir", +[3,8119,14], +[3,32790,18], +"vue-scroll", +"vue-scrollbar", +"vue-plugin", +"滚动条", +"eartbeat", +"lory.js", +[2,33112,33113], +"adjust-sourcemap-loader", +[1,2349,32838], +[0,0,32846,32862,34552], +[2,32841,10238], +[2,4807,1955], +[3,31435,16], +"cls-hooked", +"myrmidon", +[2,31436,2018], +[3,30380,15], +[0,442,7677,1177,1938,1942,30828,1964,1966,2832,1531,30835,91,4523,1983,1984], +"ncredible", +[2,32845,32847], +"ensor", +[2,4914,32849], +"secrets", +[2,16645,32851], +[3,25837,16], +"anjs-rules", +[2,32853,32854], +"fatum", +[2,14560,6816], +[2,3335,32857], +"telegram", +[2,21386,32859], +"vesta", +[0,21354,91,2844,7020,7119,30841,20179,7047], +"react-camera-pro", +"documentate", +"idebar", +"umentate", +[2,25821,32866], +[1,2349,32869], +[0,0,0,32882,34552], +"better-npm-run", +"clamp.js", +[2,19825,4627], +[2,1870,32872], +"ewma", +[2,4031,24388], +"spdy", +"karma-fixture", +[2,20441,6543], +"restify-", +"clients", +[2,32879,32880], +[0,3358,1564,10057], +"watershed", +"@applitools/utils", +"DTrace", +"karma-opera-launcher", +[1,2349,32893], +[3,18613,12], +"convict", +[2,32957,32963], +"antora-component", +"@dataui/crud", +[0,32898,32902,32915,2402], +"is-uuid", +"rewrite-imports", +"quit", +"shutdown", +[0,8181,26057,28329,28607,28620,28631,28632,28672,28673,26364,28963,29273,28685,30585,31857,31902,32411,33136,34082,33056,33586,33588,33590,33591,34083,33592,33600,33601,33604,33613,33623,10981,10984,37051,34087,28709,1556,16230,28718,28761,28780,28805,28883,28896,28911,2161,36538,28964,3090,3189,31530,28974,3510,29049,15451,4382,29050,4383,27921,27438,29161,29165,29219,29220,29235], +"terminate", +"kill", +"serviceworker", +[0,29267,29290,29295,10614,34092,11016,11018,31408,29304,1177,2559,29332,3980,4543,1984,29887,29323,188,13151], +[2,32904,11017], +[3,32884,12], +"@types/webrtc", +"NoSQL", +"reql", +" language", +[2,3766,32908], +"applitools", +"eyes-sdk", +"test automation", +"visual regression", +[2,32731,27819], +[0,29345,29332,8588,4383,12951,188,12072,6284,91,10309,181,4380,5130,29346], +"accelerate", +"detectrtc", +[2,32892,30665], +[2,32920,614], +[3,32918,13], +[1,2349,32935], +[2,32923,32931], +"install-p", +"json-copy", +[2,28093,32924], +[2,31281,32933], +"nano-copy", +"plain-", +[2,3425,1496], +[2,32928,32929], +"eers-cli", +"prepend-file", +"life", +[2,32937,32938], +[0,0,32936,32964,2457], +[0,5087,1192,4468,4474,4493,91], +[3,32737,23], +"tate", +"drag-drop", +"plasmo", +"camera", +"prebuild", +"-install", +[2,32942,32943], +"webcam", +"-os", +[2,642,32946], +"practice", +[2,15090,32948], +"cam", +"Automation", +"pixel", +"blob-to-buffer", +"recognition", +"webRTC", +"autohotkey", +[3,35870,14], +"drag drop", +"machine", +"drag & drop", +"learning", +"react-h5-audio-player", +"itro-modules", +[0,5995,10906,24299,29527,29563,29565,29575,29576,29658,29706,29723,1623,6802,4967,29731,29730,29842,29845,29868,29963,30047,30133,30136,30161,30163,30487,91,30489,30501,30523,30562,30569,30574,30591,30593,30600], +[2,32995,8745], +[3,16005,16], +[2,32966,4142], +"-twoslash", +[2,4614,32968], +[2,9408,32969], +[2,15125,5711], +"date-time", +"flru", +[0,33040,33045,31082,34552], +[2,33470,33475], +[3,30686,19], +"pinia", +[2,15476,8961], +"wasm-pack", +"@expo/spawn-async", +[2,32982,147], +"@parcel/c", +"@parcel/fs", +[2,32985,5602], +[3,5367,15], +[2,5368,7158], +"mnemonic-id", +"node-object-hash", +"@plasmohq/init", +[2,32991,32992], +"@plasmohq/", +"parcel-config", +[2,32994,23], +[3,32990,19], +[3,10848,14], +"@plasmo/config", +[2,32999,33003], +"js-cleanup", +[3,32996,11], +[3,4058,16], +[2,33000,3874], +[2,25572,1155], +"stants", +[2,33006,594], +"removal", +"@plasmo/", +[2,33006,5130,33008], +"-shared", +[2,4807,32965], +[2,13843,19101], +"ixins", +"visionOS", +"tvOS", +"macOS", +[2,33018,89], +"3-drag", +[2,6491,33016], +"@iconify/", +"cpp", +[2,4861,24847], +[2,33022,2847], +"static-s", +[2,21897,33024], +"sass2less", +"swift", +"player", +"mse", +"commenting", +[2,14034,13828], +[3,19570,16], +[2,33030,2649], +"spdx-", +"eme", +"jsi", +"satisfies", +[2,33032,33035], +[3,24169,14], +[2,2369,2284], +[3,32978,18], +[0,29304,26699], +"p-banner", +[2,33039,33041], +[2,33044,147], +[3,5517,19], +[0,1192,1177,4042,4468,1894,91,5087,4880,1895,1955,2780,1011,1009], +[2,8147,14773], +"ts-expose-internals", +[2,13888,2150], +[1,2349,33054], +[2,1884,10791], +"buffer-es6", +"process-es6", +"astrojs", +[0,0,33079,33081,2531], +"compliance", +[2,33060,33585], +"dset", +"flattie", +"magicast", +[3,31902,18], +"zod-to-ts", +"xxhash-wasm", +"yocto-spinner", +"@oslojs/encoding", +[2,33066,33067], +"@astrojs/c", +"ompiler", +[2,34674,13535], +"zod-to-json-schema", +"http-cache-semantics", +[2,33072,33073,3984], +"@astrojs/m", +"arkdown-", +[2,34674,6943,19687], +[2,7185,33076], +"-object-hash", +"MappingURL", +[2,4225,33077], +[0,4880,4883,89,3824,91], +"@types/dlv", +[0,89,28946,6847,30858], +"rehype-toc", +"astro-scripts", +[2,33085,33086], +[3,24220,12], +"titles", +[2,4807,9485], +[2,4807,33070], +[1,2349,33090], +[0,33091,33092,33094,2531], +[0,30939,30941,30944], +[0,30949,30951,30953,30954,30961,30966,30973,30976,30977,30980,30984,30985,30988,31003,31007,31024,31033,31036,31053,31060,31065,31067,31068], +"strata", +[0,26591,1973,5472,13083,6969,1429,1145,1745,31077,31079,31080,1776,1204,6813], +[1,2349,33102], +"nd-cache-dir", +[2,16785,33096], +[3,13364,12], +[2,33098,1095], +"graphlib", +[3,4069,16], +[0,0,31020,31082,2531], +[1,2349,33104], +[0,33105,34025,33107,34552], +[0,33106,34024,31735,31315,31330,31358,31362,31368,31378,31384,31383,3266,31398,9011,4763,9355], +[2,31395,364], +[0,31398,3287,4592,31399,89,4963,181,4967,4380,31400,31406,31407,31408,6070,31409,30210,31410,31422,31423,31424,31431,31432,31433,31454,31466], +[1,2349,33109], +[0,0,0,33132,2540], +"fuzzysearch", +"sander", +[3,29704,20], +"ntax-descriptor-syntax-production", +"@types/d3-", +[2,33114,4552], +[2,33114,1473], +"force", +[2,33114,33117], +"hierarchy", +[2,33114,33119], +[2,33114,16662], +[3,33121,11], +[2,33122,1659], +"@saintno/comfyui-sdk", +"@virtuoso.dev/masonry", +"treemap", +"sunburst", +[2,13480,33130], +"diagram", +"jaeger", +[2,13475,4715], +[0,3563,1623], +[2,5088,33134], +"dfkit", +[1,2349,33217], +[2,33142,33147], +[2,31635,3965,553], +[2,33141,20760], +[2,33140,23], +[3,34681,19], +[3,10210,16], +[3,32411,20], +"testrunner", +"@next/", +"@next/env", +"@rspack/core", +[3,26697,11], +[3,5215,12], +"piccolore", +"-optimizer", +[2,11928,33150], +[2,33148,33151], +[2,4850,14643], +"css/metrics", +[2,4202,33154], +[2,17189,33155], +[3,28436,14], +[2,33157,16358], +[2,33157,6805], +[3,33159,15], +"rimitives", +[2,33160,33161], +"turborepo", +"triples", +[2,29314,33164], +[2,27913,1237], +[2,33144,33166], +[3,33167,15], +"nomodule", +[2,33168,33169], +[2,3878,3007], +[2,33144,33171], +"@next/swc", +"@taskr/clear", +"ac-colors", +"@taskr/esnext", +"mphtml-validator", +[2,9165,33177], +[2,10880,1179], +"i-info", +[2,4857,33180], +[3,11796,15], +[2,33182,10366], +[3,7808,17], +"rve-s", +[2,16826,9654], +"tatic-core", +[2,33185,33187], +[2,33184,33188], +"hsv", +"@types/fresh", +"urry", +[2,7887,33192], +"th-to-regexp", +[2,28121,33194], +"atform", +[2,28175,33196], +"@types/send", +"amphtml-validator", +"async-sema", +"lch", +"cli-select", +"color-names", +"client-only", +"cmyk", +"comment-json", +"mix", +"edge-runtime", +[2,13773,1194], +"lodash.curry", +"native-url", +"string-hash", +"taskr", +"unistore", +"watchpack", +"harmonies", +[0,33218,33219,33220,2540], +[0,26675,26678,26684,26690,26685,3259], +[0,5087,4874,1596,1192,1894,3951,3980,4094,4468,4474,1531,4521,91], +[0,12659,8124,1745], +[3,18758,12], +"ogress", +[2,33221,33222], +[1,2349,33225], +[0,33226,33234,33240,34552], +[0,9355,9307], +[2,27135,16460], +[2,33229,33521], +[3,30464,13], +"domparser-rs", +"rtl", +"ltr", +[2,33461,33965], +[0,1983,89,2220,3824,26744,966,1030,972,968,30521], +[2,33236,18200], +"get-port-", +[2,33238,33239], +[3,5366,9], +"tter-sqlite3", +[0,89,2220,31523,1932,1745,25677], +[1,2349,33242], +[0,33246,33248,33252,2531], +"@antfu/ni", +"run series", +"@dotenvx/dotenvx", +[0,2611,3478,1759,31533,33507,3084,31534,2226,31535,2845,33062,31609,31536,31750,31548,31617,31619,31571,5328,31610,31623,29421], +[2,4807,30228], +[0,4763,4493,1177,2205,4042,1984,4473,23203,91,53,4874,31629,31631,31634,32643,2069,10879,8818,32674,32750,7677,31636,33137,31639], +"LINQ", +"FRP", +[2,29445,1732], +[0,31408,31645,29486,4575,31646,31647,31656,31657,31658,3151,2041,91,31659,5130], +[2,33254,8253], +"@vitejs/", +[2,23354,6708], +[2,5,33255], +"side-effects", +[2,14614,33257], +[3,1705,12], +"ruiser", +[2,33259,33260], +[3,18106,16], +[2,33262,2429], +[2,1921,33274], +"tslint-etc", +"no-toplevel-property-access", +[2,4491,33266], +"tslint-no-", +"unused-", +[3,5804,11], +[2,33270,1429], +[2,33269,33271], +[2,33268,33272], +"wc", +[2,9352,364], +"datagrid", +"survey-core", +[1,2349,33279], +[0,0,33280,33281,2531], +[0,107,972,5087,1742,1192,3286,1894,89,3824,3904,4039,4468,91], +[0,89,3286,23803,3287,38,3212,1973,5472], +" allocate", +[2,1398,33282], +[2,17681,1965], +"2fa", +"hotp", +"uninitialized", +"topt", +[2,33290,33291], +"google a", +"uthenticator", +[2,33294,7120], +"mock-env", +[3,5165,11], +"dist-tag", +"one time password", +"prepublish", +[2,37718,20105], +"2 factor", +[1,2349,33301], +[0,0,33306,33372,34552], +"@sai", +"lshq/lodash", +[2,33302,33303], +[2,4807,4588], +[0,603,8862,811,816,6373,5535,30867,5087,13204,31087,11016,17494,11018,13072,1503,1567,1610,1192,2780,2832,2990,15324,1894,4042,4073,4076,4201,29889,4383,4468,91,1983,188,4639,4646,19235], +"captains-log", +"js-f", +"ile-", +[2,33309,19101], +[2,33308,33310], +[2,9480,33311], +"flaverr", +"survey", +"i18n-2", +"include-all", +"surveyjs", +"-as-action", +[2,32959,33318], +"survey-library", +"pack-process", +[2,32959,33321], +[3,33322,12], +[2,33323,1552], +[2,20100,3031], +"ictionaries", +[2,27239,33326], +"parley", +"rttc", +"form-component", +"-generate", +[2,4104,33331], +"sails-", +"stringfile", +[2,33333,33334], +"skipper", +"-addresses", +[2,4082,33337], +[2,22775,33338], +"whelk", +"form-rendering", +[2,33323,2150], +"@sailshq/", +[2,33343,705], +"survey-renderer", +"root-require", +"dynamic-form", +"hook-orm", +[2,33333,33348], +[3,33349,11], +"sockets", +[2,33350,33351], +[2,24095,33358], +"sails.io.js", +"-store", +"-file-store", +[2,1577,33356], +"-form", +"mvc", +"form-library", +"form-management", +"web-framework", +"sailsjs", +[2,8631,33366], +"sails.js", +"naire", +"data-collection", +"data-validation", +"input-validation", +[3,7842,12], +"schema-form", +[0,188,8588,31685,31687,31700,7838,29889,31702,1802,17819,29953,31703,91,31704,4453,5131,5284,4627,181], +[2,33374,3552], +[3,14944,11], +[1,2349,33468], +"truncate-", +[2,33467,33631], +"utf8-bytes", +[2,33376,33378], +"js-api", +"mktemp", +[2,30767,33384], +"filename", +"wasm-nodejs", +[2,31208,22074], +[2,11183,6882], +[2,13167,33388], +"abs", +[2,33391,10271], +"parse-srcset", +[3,13169,16], +[3,13405,16], +[2,11183,614], +"ostrophe", +[2,33392,33394], +[2,11183,158], +[2,33398,1020], +[3,33396,15], +[2,11183,33400], +"steps", +[2,33402,2699], +[3,33387,17], +[2,11183,18346], +[2,33405,9997], +[3,33403,15], +[2,13163,11218], +[3,32049,11], +[2,33407,13756], +"-sin", +"gle-context", +[2,33409,33410], +[2,2784,33411], +[3,31591,11], +[2,4961,4184], +[2,33413,33414], +[3,4927,10], +[2,11183,3811], +[2,33421,1799], +"glob-importer", +[2,33416,33419], +[3,33399,15], +[2,33421,10205], +[2,33421,10222], +[2,33425,184], +[3,33393,15], +[2,33427,10261], +[3,11185,16], +[2,33429,18338], +[3,13162,15], +[2,33429,5449], +[2,33432,9939], +[3,13162,17], +[2,33434,11206], +[3,33404,16], +[2,3115,11415], +[2,33439,33440], +"bare-script", +[2,1818,11415], +[3,27467,17], +"tions", +[2,33442,10148], +[3,33417,15], +[2,13167,11241], +[2,33445,33446], +[3,33418,16], +"gmented", +[2,33442,33448], +"agination", +[2,33389,11245], +[2,33397,11211], +[2,11183,9044], +[2,33453,33457], +[3,5050,13], +"food", +"drink", +"helpful", +[3,14673,16,7], +"ourcesoftware", +[2,8423,33458], +[2,25184,33466], +[2,41,3874], +"teaching", +"experi", +[2,33463,1744], +[2,13527,591], +"local-npm-registry", +[3,5123,14], +[0,26362,0,33469,2540], +[0,3857,5128,31912,89,5131,12295,12296,181,15571,35060,158], +[3,32034,11], +"ecdh", +"ecdsa", +"solver", +"bplist-creator", +"etch-sse", +[1,2349,33478], +"seed", +[0,33480,33481,25173,34552], +"oxfmt", +[0,30784,20378,16860,3530,3561,28865,27921], +[0,58,31292,5180,30787,37017,28465,8862,811,16808,10895,24725,9743,37012,28572,1415,1457,1544,1573,1594,1615,30023,1759,1763,37014,668,1869,2007,984,28575,31308,18584,3090,3189,11480,3266,3445,3493,3510,34928,3527,3613,3616,37015,28119,24759,29444,4042,4060,2278,21688,4200,37013,4072,4955,27438,4729], +"@bazel/runfiles", +[1,2349,33484], +[0,0,0,33485,2540], +[0,3857,5128,12295,12296,28641,1616,5131,1149,4160,28654,28656,16722,31824,31825,3348], +[1,2349,33487], +[0,0,2684,31510,2488], +[1,2349,33501], +[3,21120,19], +[2,33489,3543], +"aggregate-error", +"bunup", +"env-ci", +[2,2103,18280], +"git-l", +"og-parser", +[2,33495,33496], +"-esm", +[2,18170,33498], +"p-each-series", +[0,33502,33506,33508,2488], +[0,5145,30551,30583,5154,7709,28384,30584,13437,30602,30603,30609,30610,13187,30814,12207,7948,30824,30866,30887,30906,31178,31179,31247,31255,31263,32003,32008,32010,32031,32975,32034,32035,32502,32041,32569,32042,32043,32045,32053,32059,32060,32096,32100,32127,32131,32133,29421,32134,32135,33128,33131,32787,32136,33124,32140,32146,958,32147,32148,32149,29261,32156,32157,32159,32161,33125,32169,30778,1114,13215,32171,35358,977,32173,1673,1676,32175,1687,32176,32187,31930,2069,37853,2096,4776,32190,2226,2646,2681,23913,32194,29762,2696,12105,32198,32208,2928,32213,32216,32220,3021,32221,3096,32222,3127,26568,32230,32232,3266,3286,3285,32239,32240,29306,3415,32241,32242,32246,32247,31407,32248,32249,32250,32263,29899,3513,3519,3533,32266,3555,32267,20325,32270,3765,3777,89,32274,3824,11366,12229,3837,32280,15575,32295,3882,32296,3885,32297,32298,32305,3984,3988,3989,32314,32317,4135,4164,9348,32578,4302,4341,32320,26713,4376,32321,32322,11804,32328,4566,32331,3348,32337,4729,4745,4763,9355,32338], +"file-url", +[2,2847,4219], +[2,17050,33504], +[0,192,37097,32344,32354,32367,32369,32371,32374,32379,32386,8648,27424,21120,968,972,974,32387,32391,5245,4864,32400,8818,4870,5139,4874,32409,32420,33133,32426,4880,4883,32429,5254,32440,11800,9315,9241,29891,7677,12384,1529,1556,1610,1620,32444,1759,1763,32445,32446,32457,1177,32458,32461,2151,2070,2559,2675,28375,32463,2990,1209,3117,32469,3171,3310,640,32470,3478,1894,3985,9340,32471,3992,28380,4131,32482,4320,4494,4507,91,4549,4555,1983,1984], +"p-retry", +[0,5130,31409,31431,3287,32486,31407,32490,32494,32132,32495], +[1,2349,33563], +[2,33511,57], +"markdown ", +"solidjs", +"@fluentui/react-component-event-listener", +[3,33513,26], +[2,33514,2538], +[3,6061,10], +"/event-stack", +[2,4133,33517], +[2,33516,33518], +[2,8652,3858], +"oolbar", +"@artsy/fresnel", +[2,30415,594], +"standalone", +[2,54,33524], +[2,33527,33531], +"@react-s", +"@percy/cli", +"@percy/c", +[2,33529,4915], +"tately/overlays", +"anchor-js", +[3,14132,14], +[2,33535,17966], +[3,33526,15], +"ilter-imports", +[2,33533,33536], +[2,33544,33548], +"d-props", +[2,2034,33539], +[2,1249,33540], +[2,30851,1204], +[2,1199,33542], +"@react-t", +"chai-enzyme", +"react-ace", +"react-code", +"ypes/shared", +"sandboxer", +[2,33547,33549], +"ource-render", +[2,3890,33551], +"react-static", +[2,33559,6649], +"-routes", +[2,33553,33555], +"niversal-component", +[2,12273,33557], +[3,3911,17], +"satisfied", +[3,4134,12], +[2,33561,1623], +[0,33569,33570,6153,2531], +"simulant", +"ta-scripts", +[2,4409,1231], +"@aws-lite/client", +"@aws-lite/s3", +[0,546,8605], +[0,8616,91], +[3,21564,23], +[2,33571,1219], +[2,18124,16284], +[2,33575,7625], +[3,2001,11], +"bikeshed", +"mock-tmp", +"semicolon", +"tap-arc", +"@casl/dx", +"cloudfunctions", +"apigateway", +"api gateway", +[1,2349,33630], +"drag-handle-vue-3", +[2,33060,33587,4403], +"floating-", +[2,33060,33589], +"horizontal-rule", +[2,33060,158], +[2,33060,26074], +[2,33060,33597], +"eraro", +"fast-sa", +"fe-stringify", +[2,33594,33595], +[3,28051,11], +"gate-executor", +"gubu", +[2,31908,1783], +"@tiptap/pm", +"ordu", +"patrun", +[2,31908,33607], +"rolling-stats", +"use-plugin", +"starter-kit", +"@seneca/test-plugin", +"lab-", +[3,29583,11], +[2,33610,2528], +[2,33609,33611], +[2,33621,33622], +"-entity", +[2,4136,33614], +"seneca-e", +"rror-test", +[2,33616,33617], +"seneca-", +[2,33619,19138], +"@tiptap/s", +"uggestion", +"@tiptap/vue-3", +"micro-service", +[2,33624,591], +[3,14587,13], +"minimum", +"viable", +"startup", +[0,7949,7950,7951,34552], +"orklets", +[0,29421,6494,1525,2026,12105,4548,4763], +[2,10196,21009], +"Sentimental", +[2,11183,9352,3392], +"nlp", +[0,29681,29695,29718,29719,31264,1745,13083], +"@farmfe/cli", +[2,6283,33647], +[2,35438,35525], +"dottie", +[2,1153,1430], +[2,4140,30807], +"sort-class", +[2,17693,33644], +"wkx", +"-testing", +[3,9786,10], +[2,33648,103], +[2,33900,147], +[1,2349,33665], +"chai-datetime", +"esdoc", +"-ecmascript-proposal-plugin", +[2,33653,33654], +"esdoc-", +"inject-", +[2,4306,1932], +[2,33657,33658], +[2,33656,33659], +[2,18124,1932], +[2,33656,33661], +"ibm_db", +"js-co", +[0,33670,33693,33694,2540], +"@webgpu/types", +"mbinatorics", +[2,33664,33667], +"mariadb", +[0,7384,26870], +"jmp", +"node-hook", +"p-props", +"p-settle", +"pg-hstore", +"fail-on-", +"sav", +"s-store", +"major-bump", +[2,33676,33679], +[2,21386,33680], +"snowflake-sdk", +[2,33691,33692], +"db2", +"snowflake", +"object ", +"relati", +"onal mapper", +[2,33687,33688], +[2,33686,33689], +"@prisma/m", +"anagement-api-sdk", +[0,4200,3510,89,4207,4135,1984,24324,3824,4459,11143,16485,3170,3527,27921,91,4874,5254,37085,8778,11938,32815,32818], +[0,4270,29043,1984,5472,1973,4627,4963,23246,89,188,3709,5926], +[1,2349,33696], +[0,7971,7950,7951,34552], +"@tinymce/tinymce-react", +[0,2018,32839,32844], +[0,2924,5087,4874,4677], +"@ser", +"ialport/binding-mock", +[2,33700,33701], +[3,33702,19], +"s-cpp", +[2,33703,33704], +[3,33702,12], +"n1ed", +"byte-length", +[2,15497,33708], +[2,33706,33709], +[3,33710,19], +"cctalk", +[2,33711,33712], +[2,33711,28979], +[0,6901,20319,1973,5472,5433,13657], +"-byte-timeout", +[2,6941,33716], +[2,33711,33717], +[1,2349,33720], +[0,0,33752,33773,2540], +"packet-length", +[2,33711,33721], +[2,33711,3925], +[3,33723,23], +[2,33724,1493], +[3,33723,21], +[2,33726,17402], +"slip-encoder", +[2,33711,33728], +[3,33729,20], +[2,10972,4383], +"@heroicons/react", +"pacepacket", +[2,33730,33733], +[2,33706,3101], +[2,33743,33747], +"ccTalk", +"com port", +"COM", +"data logging", +"hardware", +"modem", +[3,8292,9], +"nodebots", +"RFID", +"sensor", +"plus/elements", +"serial port", +"sms gateway", +"sms", +"UART", +[0,1173,1175,1195,1267,1272,1280,1282,32870,1429,32871,34009,1652,1676,1705,1177,1903,1958,1970,2054,2092,2151,2629,2651,2297,2878,2881,2895,32877,26470,2897,2900,2904,32886,2906,2912,2915,2925,2899,3363,3524,4039,37320,12826,4131,4535,37871,4027,2924,4681], +[2,32092,91], +[2,33755,33756], +"react-li", +"b-tools", +"update-check", +"@zeit/schemas", +"is-po", +"rt-reachable", +[2,33759,33760], +[2,33769,33770], +"@vercel/", +"style-guide", +[2,33763,33764], +"@types/ser", +"ve-handler", +[2,33766,33767], +[3,2909,10], +"serve-directives", +"ts-blank-space", +"vitest-fail-on-console", +[0,6398,20986,32888,32054,31512,4453,35062,6970,5131], +"windowed", +"temp-path", +[1,2349,33778], +"favicon", +[0,33779,33780,33781,2531], +[0,32905,32917], +[0,4880,4883,8152,1009,1011,1540,1177,1895,1955,1959,32922,32932,1894,4042,4076,4474,4484,91], +[0,32941,32945,32950,89,12295,12296,5131,32955], +[1,2349,33783], +[0,33856,33858,33862,34552], +"@extend-chrome/messages", +[2,33786,13901], +[3,33784,15], +"@types/chrome", +[0,89,3857,21166,33377], +"@types/jsesc", +[2,33791,33792], +[3,32170,13], +"nspect", +[0,3857,2171,12295,12296,33012,33013,33014,33019,5130,89,33025,970,5260,2062,33034,7671,8632,1283,22743], +"chrome-extension", +"webext", +"webextension", +"verless/utils", +[2,33700,33797], +[3,33010,17], +"z-commitlint", +[2,5465,33800], +[3,33798,12], +[2,33802,1973], +[3,4156,10], +[1,2349,33809], +" plugins", +[2,33804,33806], +"aws lambda", +[0,33814,0,33815,2776], +" web services", +[2,6997,33810], +".com", +[2,33804,33812], +[0,31680,28069], +[0,1473,1623,57], +[1,2349,33833], +"isoformat", +"cdk/aws-lambda-python-alpha", +[2,13562,33818], +[3,7709,16], +[2,33820,7308], +"eventbridge", +[2,33820,33822], +[2,33820,13573], +"ns", +[2,9191,33825], +[2,9191,3763], +[2,9191,4799], +[2,17253,33832], +"lib-dynamodb", +[2,13548,33830], +"-tree-1d", +[0,0,0,33855,2488], +"htl", +"util-dynamodb", +[2,13548,33835], +"@types/d3", +"aws-cdk-lib", +"iot-device-sdk", +[2,9194,33839], +"caporal", +"-highlight", +[2,14558,33842], +"apache-arrow", +[3,9167,11], +[2,33845,33839], +"d3-geo-projection", +"@types/aws4", +"esbuild-r", +[2,33849,8736], +"jsii", +"jsii-diff", +[2,17111,7268], +"jsii-docgen", +[0,1512,1623], +[0,3244,3467,4763,1687,3445,2020,2929,1680,3930,3561,3742,2151,4473,33243,1525,1699,2071,31401,3310,53,1595,1393,58,4382,4480,33245,30228,2674,33069,3681,92,29421,4588,33305,5889], +"jsii-pacmak", +[0,4493,4039,4507,91,7812,4864,10879,33247], +[0,0,0,33922,34552], +"obuild", +[0,35291,1537,4255], +[0,4963,181,4380,31398,31400], +"type-plus", +[1,2349,33866], +"ge-parser", +[0,0,0,33870,34552], +"flow-re", +"move-types", +[2,33867,33868], +[0,89,188,23332,4607,33275,33276], +"isequalwith", +"date-fns-tz", +[1,2349,33874], +[0,34250,34251,2523,34552], +[0,5087,4874,1009,1011,1177,1886,1895,1938,1955,1958,1966,1982,2070,1192,1894,4039,4042,4052,27720,4076,4468,4474,4508,4514,17223,91], +[2,33892,33895], +"@emnapi/runtime", +"@img", +"/sha", +"rp-libvips-dev", +[2,33879,33880], +[2,33878,33881], +"-wasm32", +[2,33882,33883], +[3,33882,19], +"win32-ia32", +[2,33885,33886], +[3,33887,25], +"x64", +[2,33888,33889], +"emnapi", +"string-s", +"-reader", +"exif-reader", +"plit-by", +"dzi", +"thumbnail", +"libvips", +"vips", +"@farmfe/c", +"cargo-cp-artifact", +[2,14736,34112], +"skia", +"offscreen", +"compositing", +[0,33285,28946,33286,33288,33289,33292,33296,33298,5165,33299,202,1388,4967,5995], +"vulkan", +"metal", +"flmngr", +[2,4167,14994], +"shelljs-", +[2,33911,3979], +"travis-", +"changes", +"check-changes", +[2,33913,33915], +"@vercel/sdk", +"makefile", +"dk", +"imgpen", +"unsplash", +[0,33314,1669,33317,33320,33330,33341,33345,33347,33353,33360,33361,33364,33367,33368,7021,33369,33370,1781,2845,33371,33345,12899,4967,5284,91], +[1,2349,33924], +[0,33925,0,29217,2540], +[0,28872,13411,13412,13388,1137,1170,30051,1362,33474,18220,2139,2188,2070,22410,21226,6698,1209,3074,3220,3275,27534,2072,3547,3919,4025,4108,4135,4165,4351,13400,4507,3348,4707,4753], +[1,2349,33931], +"bitly", +"shorten", +"mongoid", +"tinyid", +[0,33933,33934,33939,2540], +"kapok-js", +[0,30293,26557], +[0,4874,30306,30305,30310,4039,1531,91,1984], +"should-", +"should-equal", +[2,33935,1671], +"should-type", +[0,30297,13527,5592,5995,2679,23932], +"-adaptors", +[2,33938,33940], +"should-util", +"@types/listr", +"houldjs", +[2,1901,33944], +[1,2349,33947], +[0,33956,33957,33958,2540], +[2,32223,2636], +"pdf-generation", +"assignments", +"homework", +"html-to-pdf", +"grunt-endline", +"quiet-grunt", +"semver-sort", +[0,2611,3510,1689,15452,8550,28862,33235,28142,15261,23531,2670,28282,12207,31026,20745,28283,31737], +[0,4493,1984,16473,15450,91,4874,19759,31794,5517,28203], +[0,3724,25638,32916,2703,5001,3304,5472], +"Function URL", +[1,2349,33961], +[0,33966,33967,34002,34552], +"plugin-open", +[2,33911,33962], +"Durable function", +"-sdk", +[0,33568,33567], +[0,3421,4389,1177,33579,33577,1610,3173,3752,33574], +"@secretlint/secretlint-rule-github", +[2,33970,3378], +[3,33968,28], +[2,33972,33973], +[3,28473,18], +"ap-runner", +"secretlint", +"@vue/tsconfig", +"extender", +"fs-core", +[2,33979,27106], +[3,18529,16], +[2,33979,202], +[2,33980,33982], +"-builtins", +[2,33984,33985], +[3,33981,21], +"to-fsa", +"@kwsites/file-exists", +"@kwsites/", +[2,9466,14834], +[2,33987,33988], +[2,33984,594], +[3,33989,17], +[2,33991,27725], +"@sim", +"ple-", +"git/babel-config", +[2,33994,33995], +[2,33993,33996], +[2,33979,24171], +"source ", +[2,33999,12619], +[2,33979,8745], +[0,7200,13573,6997,33804,6599,33581,33582,7308,6949,6808,33583,5130], +[1,2349,34004], +[0,34005,34006,2523,2540], +[0,33666], +[0,1787,91,18279], +[2,29234,34008,34010], +"pec-", +"custom-event", +[3,11133,16,9], +"ant-stuff", +[2,13112,34011], +[2,32845,34012], +"rrect-lockfile", +[2,33664,34014], +[1,2349,34021], +[3,8136,10], +"nalyzer", +[2,32412,34018], +"-navigation", +[0,34022,34023,34045,2402], +[0,89,3824,33697], +[0,3775,4039,4487,4469,3744,91,53,4874,4880,1195,4883,5090,1167], +[2,31395,1542], +[0,972,8818,4874,4880,4883,2832,89,3824,1984,31390], +[2,4807,13848], +"is-safe-filename", +[2,5600,34029], +"recurse", +[2,28756,18346], +"@asciidoctor/core", +[2,29611,34035], +"samsam", +[2,11122,34033], +"site-publisher", +[3,11134,16], +"plugin-n", +"o-prototype-methods", +[2,34037,34038], +[2,34036,34039], +"@studio/changes", +[1,2349,34285], +"@openspacelabs/react-native-zoomable-view", +"clock", +[0,4445,6092,33707,89,6038,1936,6105,7062,27968,9381], +[1,2349,34047], +[0,0,34054,34056,2531], +[2,29611,34049], +"asciidoc-loader", +"vendor", +"mocks-", +"and-spies", +[2,34051,34052], +[0,30703,442,9307,33731,33732,29273,33736,968,972,974,5364,7806,7639,4874,4880,4883,31397,4992,1413,1497,1536,1639,1177,1961,7585,2203,2675,2832,2990,3105,3127,3561,1894,21024,89,33753,3824,5564,33754,3885,4073,4079,33762,4164,4200,4382,4383,4072,33771,4474,4494,91,4523,29139,1983,26744,32255,1984,33772,9355], +"asciidoc", +[0,89,6071,4607,11316,33774,3392,32209,32210,3912,176,10052,21604], +[1,2349,34058], +[0,34059,34069,34072,2531], +[0,10895,31832,1084,1448,1573,1676,37014,2071,2151,2835,3090,3510,3527,3878,4042,4094], +"express-json5", +"-readme", +[2,8924,34061], +"-htpasswd", +[2,4199,34063], +"fs-ext", +"crypt3", +"pod-install", +[2,13888,2036], +[0,33784,33785,8862,811,8850,816,840,20978,33787,5244,5245,4864,11300,33789,4874,4880,4883,1009,1011,1030,11016,1457,668,33850,1177,1959,11348,3400,34971,89,3824,4039,4057,15277,3709,4507,91,1983,33790,1984,188], +"pinch-to-zoom", +"pinch", +[0,4080,11504,3195,33794,7188,33795,33796,1388,33799], +[1,2349,34074], +[0,34075,34077,2523,2531], +[0,1653,33817,33829], +"@polka/url", +[0,1414,33834,4494,1983,2832,2899,1424,1177,4042,2203,1894,4473,33837,4614,442,91,4874,2820,6503,33844,17113,19181,33847,8850,33853,17112,10615,3112,1895,811,1011,816,1009], +"totalist", +[1,2349,34080], +[0,34081,34091,34094,2776], +[0,20584,2131,2674,33876], +[3,33056,29], +[2,33060,34084], +"node-range", +"bytes-iec", +"nanospinner", +[2,37050,6579], +"budget", +[3,13526,12], +[2,34089,34088], +[0,23531,4874,33901,2611,3297,4449], +[2,959,34093], +"table-core", +[0,1424,10798,33903,33904,29727,15344,11812,158,11806,33905,8924,33907,33908,2636,8221,9561], +[1,2349,34100], +"file size", +" size", +[2,7204,34097], +"get size", +[0,34101,34102,34103,4194], +[0,33909], +[0,4469,91,2924,4677,89,3824,4880,4883], +[0,89,33909,2090,1586,10057,33920,158,6038,9229,33921,6997,6949,13531,20614], +"-cognito-identity-js", +[2,6997,34104], +[1,2349,34108], +"skapi", +[0,34109,34110,34117,2531], +[0,37082,26380,17214], +[0,1984,3541], +[2,20327,1984], +"-no-globals", +[2,17375,34114], +"ormat", +"unloader", +"seperator", +[0,1388,3541,4627,17050,1973,5472], +[2,34119,12675], +[3,36879,12], +[1,2349,34122], +"is-fullwidth-code-point", +[0,34123,34124,34126,2540], +[0,1138,1437,1457,2182,2185,2226,2600,2685,2991,3127,3758,4135,13834], +[0,33943,8147,5254,33768,1166,1424,3421,29899,1894,3706,28593,4474,4481,91,1906], +"random-item", +[0,33948,200,33949,1745,33950,33951,1783,2636,3758,3197,33952], +[2,29611,34128], +"file-publisher", +[1,2349,34133], +"publisher", +"folder-size", +[2,2183,34131], +[0,34135,34138,28412,34552], +"js-extend", +[0,28172,28236,32884,1437,4747], +"math-sum", +[2,7627,1413], +[0,32551,4874], +"tablify", +[1,2349,34142], +"slow", +[0,34144,21617,34145,2531], +"dts-plugin", +[0,4135,32884,28236,28200], +[0,32910,32912,32913,13428,5472,6533], +[1,2349,34147], +[0,34153,34155,34158,2540], +[2,5051,34149], +"cheduler", +"htmlcs", +"standards", +"WCAG", +[0,31855,28236,28200,32884], +[2,2287,33914], +[0,2065,34007,32903,13426,3536,11132], +"urlify", +[2,21831,364], +[0,32910,32912,32913,13428,5472,6533,29724], +[1,2349,34160], +[0,34162,34163,34164,2540], +"stage-js", +[0,1525,940,999,32138], +[0,32889,33932,34031,34032], +[0,29699,200,1179,1745,29703,29753], +[2,4609,12607], +[2,4609,34168], +[2,18124,1781], +"pages", +" output", +[2,3721,34169], +" standard", +[2,4216,34171], +"standard ", +[2,34173,3721], +" for ", +[2,34175,4255], +[2,25264,34176], +[3,34177,11], +[2,34178,9338], +"stylish ", +[2,34180,16237], +[2,34180,4255], +[2,1983,6872], +[2,34183,22156], +[1,2349,34192], +"box2d", +"game", +"physics", +"axios-ntlm", +"xml-crypto", +"2d", +[0,34193,0,34195,2540], +[0,34048], +"@types/sax", +[0,29699,32891,5457,34055,1745,29703,29753], +[1,2349,34202], +[2,4005,34198], +"s-cli", +[3,26390,16,13], +"base64id", +[2,9246,25513], +[0,26362,34210,34211,4194], +[2,34204,2403], +[3,5556,15], +[2,34206,34690], +[3,28724,15], +[2,7686,34209], +"@socket.io/component-emitter", +"minify-templates", +[0,5467,21155,10614,5087,4870,4880,5091,1009,1011,1529,1177,1895,1955,2675,1192,34067,1894,89,3857,21166,3980,91], +[0,3857,5128,12295,12296,34070,34071,5131,970,4627,6624,16660,37460,4420,4384], +[1,2349,34213], +[0,34214,34215,34223,2402], +[0,4419], +[0,32426,3519], +[2,34217,158], +[3,5386,10], +"faceoff", +[2,34220,34221], +[3,16767,16], +"erformance-monitor", +[2,16766,6812], +[0,25638,14873,5472,17878,4419], +"fast-wrap-ansi", +"@rslib/core", +"eventsource", +"oxc", +"sockjs", +[2,28573,34230], +"rslib", +[2,28606,34232], +"rstest-config", +[2,34234,6847], +[3,10235,18], +[2,29314,3090], +"@pnpm/list", +"@pnpm/workspace.find-packages", +[2,1463,20001], +[2,37509,34240], +"eeverse", +[2,34242,34243], +[3,4892,10], +"npkg__lockfile", +"fast-npm-meta", +"@nolyfill/internal", +[2,34247,35011], +"@nolyfill/", +[2,34249,34617], +"@vercel/a", +[0,31292,3530,9354], +[0,25366,33243,33638,33650,16804,33146,4874,20374,29891,1112,19839,33902,668,1177,34113,2807,2990,3090,28865,4042,9245,1531,91,34115,29470,1983,1984,2924,4677,29161], +[1,2349,34253], +[0,34322,0,29217,34552], +"separated", +[0,29699,32891,20204,1745,29703,29753], +[1,2349,34257], +[0,34258,0,34259,2402], +[0,34127], +[0,29699,32891,34130,1586,1745,29703,29753], +"fumadb", +"microfiber", +[3,8277,10], +"alars", +[2,34262,34263], +"load-files", +[2,5527,34265], +"compact", +[2,3715,34267], +[2,9470,34268], +"@anvilco/apollo-server-plugin-introspection-metadata", +"kysely", +"bdd-lazy-var", +"@orpc/zod", +"@orpc/otel", +"neverthrow", +"introspection", +"@c15t/logger", +"-query", +[2,34276,34278], +"@orpc/server", +"@orpc/openapi", +"@orpc/contract", +"@c15t/translations", +[2,13498,202], +[0,0,0,2523,34552], +"kysely-pglite", +"@c15t/vitest-config", +[2,34289,34290], +"@libsql/", +"kysely-libsql", +"string-t", +[2,34295,21160], +"o-stream", +[2,34291,34293], +"@c15t", +[1,2349,34557], +"consent", +"privacy", +"ccpa", +"binary-split", +[2,7241,14922], +"lgpd", +"self-host", +"consent-management", +"user-privacy", +[2,34307,34308], +"data-pro", +"tection", +"cookie-banner", +[2,34304,34311], +"-platform", +[2,2339,5365], +"cmp", +[2,34315,7179], +"consent-", +[3,5079,14], +"imageinfo", +"prettydiff", +"sprity-css", +"/common", +"sprity-lwip", +[0,10744,1209,3084,25886], +[1,2349,34325], +"object-stream", +[0,0,34327,34329,2531], +"through2-spy", +[0,107,442,4856,7677,1091,1177,1895,1894,4039,4060,4193,4072,4481,4484,4508,4514,4523,1983,34165,34166,34183,34184,4614,1984], +"coordinates", +[0,34186,12075,5284,91,34187,34188,16284,34191,5131], +[1,2349,34332], +"css-sprite", +[0,0,34333,34334,2531], +[0,107,4874,1009,1011,17494,1177,1895,2025,2899,1894,34197,4060,34199,4193,4508,4514,91,1983,34165,34166,34183], +[0,12075,34187,22894,8691,16284,34191,1424,16697,5122,5131], +[1,2349,34336], +[0,34337,0,34338,2540], +[0,4447], +[0,4525,5284,34227,33479,1894,91], +[1,2349,34340], +[0,0,0,34341,2540], +[0,4796,26481,2968,31176,6646,3378,3420,9478,6666,3552,4135,18710,7671,33163,33186,18280,9527,4749], +"asn1", +[1,2349,34344], +[0,0,34346,2523,2540], +"bcrypt-pbkdf", +[0,29713,34235,635,34236,34237,811,8850,816,23339,8712,28206,34239,34241,29308,1525,1707,34244,3749,3527,4079,34245,34246], +[1,2349,34348], +[0,34349,0,29217,2457], +[0,13387,13412,13388,20908,13395,1170,1362,1364,2026,29067,2670,1209,3084,3162,3237,3509,4148,4507], +[1,2349,34351], +[0,33569,33570,6153,2457], +[1,2349,34353], +[0,34361,33570,6153,2457], +"integrity", +"subresource integrity", +"sri", +"sri hash", +"sri ", +"sri string", +[2,34358,1179], +[0,31874,546,8604,8605], +[1,2349,34381], +[2,34364,34365,34367], +[3,5215,13], +"ollup-plugin", +"shuruhatik", +[3,10697,17,6], +"@fezvrasta/tsc-silent", +"@khanacademy/flow-to-ts", +[2,34374,34375], +"long-", +[2,4252,591], +[2,34371,34372], +[3,14697,22], +"place-variables", +"poster", +[2,34378,34379], +[3,11802,15], +"low-entry", +"version-guard", +[0,34387,34388,34390,2402], +[3,12809,13], +[2,34382,7051], +"popper", +[2,8194,34386], +" engine", +[0,4763,16230,15095,34260,34271,34273,4341,34274,34275,32176,34277,34280,34281,34282,34283,13471,34284,13495,13502], +[0,3244,32426,6526,91,4874,34286,6494,34287,12207,34288,33237,34292], +[3,1570,26], +[0,34297,34298,7229,34299,34302,5995,34303,34304,34305,33055,34306,34309,34310,34313,34314], +"fig-spec", +[2,34389,34391], +"dotgitignore", +[1,2349,34396], +"std-mocks", +[0,34414,34415,34416,2402], +"anime", +"anime.js", +"timeline", +"easings", +"cubic-bezier", +"splitText", +"WAAPI", +"Canvas", +"ban-sensitive-files", +"WebGL", +"deps-ok", +"dont-crack", +"git-issues", +"pre-git", +"simple-co", +"mmit-message", +[2,34411,34412], +[0,2105,3527,2072], +[0,28177,4880,1701,3442,21166,91], +[0,3857,12295,12296,31937,6574,6635,5128,31912,89,5131,181,1017,45,13814,22875,2414], +[1,2349,34418], +[0,34419,0,34420,4194], +[0,4597,3173,940,34048], +[0,29699,32891,1563,1745,29703,29753], +"modern-syslog", +[1,2349,34424], +"winser", +[0,0,34428,34430,2488], +"decrypt", +"etsy", +"metric", +[0,34363,32558,48,53,5240,83,87,34368,34369,5583,6373,1178,1193,17217,24621,29883,34370,29775,1540,1759,1177,1935,1938,27790,2126,29945,35634,2675,1192,11896,32206,11348,11350,3534,34376,1894,3720,3758,34197,4042,34377,4060,4073,4079,4146,91], +"aggregation", +[0,8190,8191,5399,8192,34384,34385], +"ev-emitter", +"fizzy-ui-utils", +"get-size", +"imagesloaded", +"unidragger", +[1,2349,34440], +[2,1949,34438], +"etafizzy", +"jquery-bridget", +[0,0,34442,34444,2488], +"flick", +[0,10615,6503,4874,1387,1429,2899,3363,4042,4426,91], +[3,11146,12], +[0,34397,2238,34398,16629,7521,34399,29804,31687,1993,16284,9006,34400,34401,8424,34402,6829,26514,34403,34404,34406], +[1,2349,34446], +[0,0,11499,34448,2488], +[2,22465,35458], +[0,7789,34425], +[1,2349,34450], +[0,34451,34452,34454,2488], +[0,34431,34432,34433,34434,34435], +[0,1462,1177,34437,34439,2907,4320,4323,4072], +"lex", +[0,4453,6398,34441,31512,32054,35060,36197,1388], +[1,2349,34456], +[0,0,34457,34458,2488], +[0,1429,1700,2323,2367,22122,2409,2447,2494,2530,34447,2899], +[0,6901,27679,16626,3220,3222,1666], +[1,2349,34460], +[0,0,0,34461,2488], +[0,17199,16892,2869,3166,34453,11326,207,20531,57], +[1,5298,34463], +[0,8391,2488], +"maths", +[3,10821,18], +"11y", +[2,34465,34466], +"pannellum", +[1,2349,34470], +[0,34477,0,2523,2488], +[3,32229,23], +"hots", +[2,34471,34472], +"-puppeteer", +[2,34473,34474], +[2,10818,31765], +[0,1395], +[2,34481,2844], +"orchbox", +[2,22060,34479], +"persist-", +"jugglingdb", +[1,2349,34487], +[2,4270,676], +"patternlab", +"-pat", +[0,0,34488,34495,2488], +[0,2080,4389], +"tern-library", +[2,34486,34489], +[2,21043,34490], +"django-", +[2,34492,5354], +"jinja2", +[0,18012,25866,18108,34464,30091], +[1,2349,34498], +"panorama", +[0,0,34499,34501,2488], +[0,2899,2025,16189,34478,34482,3469,1149], +"findit2", +[0,11415,3469,34482,16189], +[1,2349,34503], +[0,0,0,34504,2488], +[0,34497,11328], +[1,2349,34506], +[0,34507,0,2523,2488], +[0,3760,13126,4747,4709,3259,4545,1481,16734,1512,4720], +"funsert", +[1,2349,34512], +"into-stream", +"rip-out", +[0,34518,34520,34521,2488], +"Assert", +[2,34515,34516], +[3,1886,16], +"daddy-react", +"setup-env", +[0,3744,34511], +"compatiblity", +[0,48,53,78,87,90,94,1148,1596,1843,1845,1177,34514,17585,1951,1959,2832,2899,3421,89,3824,32510,34517], +[0,8221,3857,21610,34519,11512,89], +[1,2349,34525], +"-metadata", +[2,26612,34523], +[0,0,34526,2523,2488], +[0,53,87,811,13866,816,1198,1290,1389,2766,2297,2871,2881,2886,2898,6387,2923,3758,4042,4045,34531,20981,34533,20983,4073,4650], +"livestream", +[2,34527,3642], +[1,2349,34530], +[0,0,34535,2523,2488], +[2,34532,671], +[3,15277,16], +[2,15476,34534], +"ass", +[0,4039,3188,34539,34543], +[1,2349,34538], +"gulp-rimraf", +[0,0,34544,34545,2488], +"testit", +"string.js", +"stringjs", +"S", +"gethub", +[0,48,53,87,1178,1261,1177,1881,1895,1938,1955,1192,1894], +[0,6270,4202,1413,34549,57,34550,17180,14638,12786,30946,2382,2098,2090,7017,6435,6270,15253,3721], +[1,2349,34548], +"codsen-utils", +[0,2514,0,2523,34552], +"bits", +"iec", +"ranges-apply", +1772928000000, +"ranges-push", +"string-le", +"ft-right", +[2,34554,34555], +[0,27013,0,27014,34552], +"onkey-traverse", +[2,19434,34558], +"ranges-invert", +[1,2349,34565], +"jsp", +"mixed", +"xhtml", +[0,8034,7950,7951,34552], +[0,4384,1437,9449,18248,26035,9515,9516,26037], +[2,34568,7188], +"openclaw-", +[2,2183,7230], +"clawdbot", +"moltbot", +"llm-router", +"llm-routing", +"llm-rout", +"-html4", +[2,26854,34575], +[3,34576,19], +[2,34577,27769], +"model-routing", +"ai-gateway", +"llm-proxy", +"smart-routing", +"cost-tracking", +"cost-optimization", +"cost-saving", +"observability", +"ility", +"ai-observability", +"llm-monitoring", +"otlp", +"ai-agent", +"agent-analytics", +"token-tracking", +"multi-provider", +"anthropic", +"claude", +"gemini", +"openrouter-alternative", +"ai-dashboard", +[2,6145,20933], +"payment processing", +"credit cards", +"llm-cost", +"privacy-first", +"local-first", +[0,27390,1177,27393,27394,10624,34614,27395], +[2,2168,3081], +"sdk-", +[2,34608,1102], +[2,26424,34609], +"fly-register", +[2,202,34611], +"strong-agent", +"superc8", +"strong-arc", +"strong-build", +"gent-eval", +0, +"strong-deploy", +"strong-m", +"esh-models", +[2,34620,34621], +"strong-re", +"gistry", +[2,34623,34624], +"strong-start", +"strong-s", +"upervisor", +[2,34627,34628], +0, +"core-util-is", +"strong-de", +"bugger", +[2,34632,34633], +"wagger-ui", +[2,34627,34635], +[3,4369,10], +"-validate", +[2,22188,34638], +0,0, +"LoopBack", +"Platform", +"alerts", +0,0, +"event loop", +0,0, +"heroku", +"nodeops", +"npmrc", +"openshift", +"slc", +"est functions", +[2,34141,34655], +"strong-cli", +"strong-cl", +"uster-control", +[2,34658,34659], +"strongops", +"upstart", +0,0,0,0, +[2,27954,1699], +[2,27954,2070], +[2,27954,3144], +"@zip.js/zip.js", +[2,3503,4549], +0, +"@astrojs/check", +"@astrojs/", +"starlight", +[2,34674,34675], +[2,12310,1430], +[3,811,8], +[2,34678,1388], +"@shoelace-style/shoelace", +[2,13283,8891], +0, +"astro", +"hanbi", +"escape-at", +[2,2827,34685], +"jsdoc-ts", +[2,2701,1932], +[2,34687,34688], +"lit", +0, +"dictionary", +[2,19319,34692], +"Android", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[2,19801,2741], +"css-t", +"o-react-native", +[2,34716,34717], +0, +[2,11832,14438], +[2,5129,10699], +[2,4881,34721], +"rame", +[2,34723,10699], +[2,11364,34724], +"-plugin-rtl", +[2,7917,34726], +0,0, +"ts-toolbelt", +0,0,0,0,0,0, +"bunchee", +"stylis-", +0, +"rule-sheet", +[2,34738,34740], +0, +"zeit", +0,0,0,0,0, +"hack", +0,0,0,0,0, +"globjoin", +"-tag-names", +[2,18110,34756], +"-nested-selector", +[2,5250,34758], +[2,30273,34759], +0, +"svg-tags", +0, +"github-info", +[2,6018,34764], +"@styl", +"elint/prettier-config", +[2,34766,34767], +[3,34768,11], +[2,34769,19692], +0,0,0, +[3,25558,14], +[2,34774,5260], +[2,4865,4565], +"murmurhash", +[2,8802,34777], +[3,13059,16], +[2,34779,2706], +0,0, +"@types/svg", +"-tags", +[2,34783,34784], +"ylelint", +[2,17371,34786], +0,0, +"set-stylelint", +[2,32137,34790], +[3,3676,10], +[2,34792,367], +0,0,0,0,0,0,0, +[3,4323,16], +0,0,0,0, +[2,1280,8554], +0,0, +"css-values", +"shortcss", +0, +"dela", +"ration", +0,0, +"-strict-value", +[2,34813,34816], +[2,34812,34817], +"keyword", +"z-index", +0,0,0,0, +"orting", +[2,3677,34825], +0, +"udochenkov", +[2,25790,34828], +0, +"ed-syntax", +[2,30481,34831], +[3,24627,16], +"hudochenkov", +[2,34833,34834], +0,0,0,0,0, +[3,30356,14], +[2,34841,27739], +0, +"github-c", +"s-list", +[2,17551,34845], +[2,34844,34846], +0,0,0,0,0,0,0,0,0,0,0, +[3,1369,11], +[2,34859,30480], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"jar", +"cookiejar", +0, +[2,33935,27], +0, +"tinyify", +0, +"frisbee", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"promised", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"capability", +"16m", +0,0,0,0,0,0,0,0,0,0,0, +"periscopic", +0,0,0,0,0,0,0,0,0,0, +"@types/sade", +[3,27700,21], +[3,27700,22], +[2,34941,20500], +[3,9566,10], +[2,34943,2847], +[2,4353,34944], +0,0,0,0,0, +"@kiwi/eslint-config", +"@kiwi/", +[2,34952,7628], +0, +"@types/pug", +0, +"easy-import", +[2,3562,34957], +0,0,0,0,0, +"@res", +"vg/resvg-js", +[2,34964,34965], +"prettysize", +0, +[3,30071,12], +"hromium", +[2,34969,34970], +0,0,0,0,0,0,0,0,0,0,0,0, +[3,4362,11], +0,0,0, +"lease-notes", +[2,15842,34988], +0, +"precache", +0,0,0,0,0, +"tape-promise", +0, +"autogen", +0,0,0,0, +"multil", +"ang-", +[2,2055,4298], +[2,35005,35006], +[2,35004,35007], +0,0, +"promise.any", +0, +[2,29351,7625], +0, +"readmeio", +0,0,0,0,0, +[2,4364,12659], +[3,4367,9], +"emplates", +[2,35022,35023], +0, +"swagger UI", +0,0,0,0,0,0,0, +"s-readme", +[2,9828,35034], +[2,11941,35035], +0,0,0,0,0,0,0,0,0, +"nodelint", +"still", +[3,29280,15], +0,0, +"travis-cov", +0, +"jinja", +0,0,0,0, +"swipe", +"framework7", +"gallery", +0, +"slideshow", +0,0,0,0, +[2,14507,3048], +[2,2655,35067], +0,0, +"sync-rpc", +[2,21658,705], +0, +"flowgen2", +0,0,0,0,0, +" information", +[2,623,35080], +"sysinfo", +0, +"freebsd", +"openbsd", +"netbsd", +"cpu", +"cpuload", +"physical cores", +0,0, +"logical cores", +"cores", +0, +"socket type", +"fsstats", +"diskio", +" devices", +[2,1359,35098], +"netstats", +[2,6072,591], +[2,11996,35101], +"network ", +"connections", +[2,35103,35104], +"network stats", +"iface", +"printer", +"processes", +"users", +"internet", +"battery", +0,0, +"docker stats", +"docker ", +[2,35116,35109], +0, +"graphic card", +"graphic c", +"ontroller", +[2,35120,35121], +0,0, +"disk layout", +"audio", +0, +"bluetooth", +"wifi", +0, +"wifinetworks", +0, +"virtual box", +"virtualbox", +"BIOS", +"chassis", +0,0,0,0, +"@jsenv/file-size-impact", +"-style-", +[2,21605,3733], +[2,35142,35143], +[2,13565,35144], +"symbol-es6", +0,0,0,0,0,0,0, +"hase", +"draht", +"limes", +"lusca", +"partof", +"timer2", +0, +"uuidv4", +"crypto2", +"nocache", +"datasette", +0, +"json-lines", +0, +"processenv", +"stethoskop", +0, +"flaschenpost", +"-events", +[2,8891,35172], +0, +"nodeenv", +"roboter", +0, +"assertthat", +[2,35166,4219], +0, +"cqs", +"cqrs", +0,0,0,0,0,0, +"className", +0, +"classList", +0, +"override", +0,0,0,0, +"dlv", +0,0,0,0,0,0, +"@tapjs/after", +[2,35205,27554], +"@tapjs/a", +"sserts", +[2,35207,35208], +"@tapjs/", +0, +"@tapjs/before", +[2,35212,27554], +"@tapjs/chdir", +0, +"@tapjs/core", +[2,35210,7131], +"@tapjs/fi", +"xture", +[2,35218,35219], +[2,35210,9261], +"@tapjs/mock", +"node-ser", +"ialize", +[2,35223,35224], +[2,35210,35225], +"@tapjs/run", +[2,35210,8745], +0, +"@tapjs/spawn", +0, +"@tapjs/stdin", +"@tapjs/test", +"@tapjs/t", +[2,35234,2528], +[2,35210,6812], +[2,4026,1204], +0, +"tapjs", +"tapjs plugin", +0,0,0,0, +"tap-out", +0, +"tapes", +0,0,0,0,0,0,0,0,0,0,0, +"resumer", +[2,23236,35259], +"@ljharb/t", +"hrough", +[2,35261,35262], +[2,5613,7067], +"dotignore", +[2,2565,15126], +0, +"ecstatic", +[3,3404,9], +"osix-or-windows", +[2,35269,35270], +0, +"harness", +0,0,0,0, +[2,9497,29051], +"chownr", +"yallist", +0, +"chmodr", +0, +"-to-array", +[2,2018,35284], +0,0,0,0,0, +"brittle", +0,0,0,0,0, +"b4a", +"fast-fifo", +"streamx", +0,0,0,0,0,0, +[2,6346,6770], +"DDD", +[2,6346,8726], +0, +"front end", +0, +"back end", +0,0,0,0, +"cz-format-extension", +0,0,0,0,0,0, +"telegram-api", +"telegram-", +"client-api", +[2,35325,35326], +"tdlib", +"tglib", +[3,3299,10], +0,0,0,0,0,0,0,0,0,0,0, +"tempdir", +"tmpfile", +0,0,0,0, +"unique-s", +[2,35348,8961], +0,0,0,0,0,0, +"@cronvel/get-pixels", +0, +"chroma-js", +"lazyness", +0,0, +"gen-events", +[2,3286,35362], +"seventh", +"string-kit", +0, +"tree-kit", +0, +"256 colors", +0, +"true color", +0, +"input field", +"gpm", +"screenbuffer", +"textbuffer", +"32-bit", +0,0,0,0, +"charm", +"visualwidth", +0, +"80s", +"ibm", +0,0,0,0, +[3,5012,18], +[2,35391,4226], +0, +"@ls-lint/ls-lint", +"astring", +0,0,0,0,0,0, +"glify-js", +[2,7817,35402], +0,0,0,0,0,0,0,0,0,0,0,0,0, +"multiline-ts", +"spawn-p", +[2,35418,4357], +0,0, +"only-allow", +"sinon-", +"assert-stub", +[2,35423,35424], +[2,35423,2299], +0, +"unlinted", +0,0,0,0,0, +"@deve", +"/bin-v8-flags-filter", +[2,674,35435], +[2,35434,35436], +[3,35437,12], +[2,35438,29084], +"bowser", +"chrome-", +[2,20844,8626], +[2,35441,35442], +"device-specs", +"elegant-s", +[2,35445,10252], +0,0,0, +"get-os-info", +0,0, +"import-lazy", +0, +"is-podman", +"-async-hook", +[2,3077,35456], +"-commonjs", +[2,17102,35458], +[2,17003,35459], +[2,14709,35460], +"os-family", +"pinkie", +[3,7872,10], +[2,35464,2013], +[2,2093,10903], +[2,15034,35466], +0, +"replicator", +0, +"-tools", +[2,20008,35471], +[2,4415,35472], +"testcafe-", +"hammerhead", +[2,35474,35475], +0, +"legacy-api", +[2,35474,35478], +[3,22279,11], +[2,35480,1803], +[2,35474,35481], +[3,35482,18], +[2,35483,3392], +[2,35483,6907], +[2,35483,4386], +[2,35483,28592], +0,0,0,0, +"testcafe-s", +[2,11068,1179], +[2,35492,35493], +[2,7051,4007], +[2,17475,35495], +"unquote", +"url-to-o", +"ptions", +[2,35498,35499], +0, +"@ffprobe-installer/ffprobe", +"@types/ca", +"llsite", +[2,35503,35504], +[3,5245,9], +"@types/dedent", +[3,5546,10], +"ragent", +[2,35508,35509], +"connector", +[2,26353,35511], +"caller", +"dom-walk", +[3,25792,16], +"mmerhead", +[2,35515,35516], +"express-ntlm", +"gulp-clone", +0, +"gulp-ll-next", +[3,27610,11], +[2,35522,2869], +"qunit-harness", +[2,2337,35524], +0, +"gulp-step", +"-spe", +"c-with-retries", +[2,35528,35529], +[2,32261,35530], +"sl-self-signed-certificate", +[2,8423,35532], +[3,35473,17], +"-browserstack", +[2,9962,35535], +[2,35534,35536], +0, +"automated", +"QA", +0,0,0,0, +"@types/doc", +"kerode", +[2,35545,35546], +"docker-", +[2,35548,2940], +[2,3583,33893], +"ssh-", +0, +"port-forward", +[2,20844,35553], +[2,35551,35554], +0, +[3,23843,13], +[2,35557,3015], +[3,28203,13], +"ties-reader", +[2,35559,35560], +[3,7752,11], +[2,35562,2150], +0,0,0,0,0, +"object-es5", +[2,26988,35569], +0, +"limate-test-reporter", +[2,14354,35572], +"conf-env", +[2,1611,35574], +"headerify", +"is-number", +0, +"teenytest", +[2,35579,4007], +0, +"test double", +0,0,0,0,0, +"fireworm", +"printf", +"_string", +[2,369,35590], +0, +[2,1362,23842], +"hallow-", +[2,35594,1693], +[2,21479,35595], +0, +"saucie", +0,0,0,0,0,0,0,0,0,0, +"dpdm", +"dcs", +[2,16693,35610], +0,0,0,0,0, +"three.js", +"reality", +[2,9352,35618], +"augmented-reality", +"webgl", +"webgl2", +0,0, +"webaudio", +0,0, +"webgpu", +"webxr", +0,0,0,0, +[2,2182,20], +"node-st", +"dlib-browser", +[2,35635,35636], +0,0,0,0,0,0,0,0,0,0,0, +"hundreds", +"polendina", +0,0, +"stream-spigot", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"unexpand", +"homedir", +0, +"tilde", +0,0,0,0, +"number-is-nan", +0, +"profile", +0,0,0,0, +"bee-affix", +"bee-a", +"bee-alert", +"bee-anchor", +0,0,0, +"bee-animate", +[2,35683,9820], +"bee-", +0,0, +"bee-backtop", +0, +"dge", +"bee-badge", +"bee-b", +[2,35698,9837], +"bee-button", +[2,35700,9847], +"bee-calendar", +0,0, +"bee-carousel", +"bee-cascader", +"bee-c", +"bee-checkbox", +[2,35707,142], +"bee-collapse", +"bee-col", +"orpicker", +[2,35711,35712], +"bee-co", +0, +"mplex-grid", +[2,35714,35716], +[2,35691,3812], +0, +"bee-dnd", +"bee-drawer", +0, +"bee-dropdown", +"bee-form", +0, +"-control", +[2,35724,35726], +"bee-form-", +[2,35728,7227], +"bee-icon", +"bee-i", +"nput-group", +[2,35731,35732], +0, +"-addon", +[2,35733,35735], +"bee-input-", +[2,35737,6988], +"bee-label", +0, +"bee-layout", +0, +"bee-loading", +0, +"-state", +[2,35743,35745], +0, +"bee-locale", +0, +"bee-menus", +0, +"bee-message", +0, +"bee-modal", +0, +"bee-navbar", +"bee-n", +0,0, +"otification", +[2,35757,35760], +"bee-overlay", +"page-layout", +[2,35691,35763], +"bee-pag", +"ination", +[2,35765,35766], +0, +"bee-panel", +"bee-p", +"opconfirm", +[2,35770,35771], +0, +"bee-popover", +"rogress-bar", +[2,35770,35775], +0, +"radio", +"bee-radio", +0, +"bee-rate", +"search-panel", +[2,35691,35782], +0, +"bee-select", +0, +"bee-slider", +0, +"bee-step", +0, +"bee-svgicon", +"bee-switch", +"bee-table", +0, +"bee-tabs", +0, +"bee-tag", +0, +"bee-tile", +0,0, +"bee-timeline", +"bee-time", +[2,35803,3811], +"bee-tooltip", +"bee-transfer", +"bee-trans", +[2,35807,9943], +0, +"bee-tree", +[2,35810,11245], +"bee-upload", +0, +[2,2359,1623], +"-wrap", +[2,2376,35815], +"inline-urls", +[2,21897,35817], +[2,4437,1732], +0, +"tinper", +0,0,0,0,0,0,0,0,0,0, +"tinylibs", +0,0,0,0, +"@deno/shim-deno-test", +0, +[3,4443,9], +0,0,0,0,0,0,0,0, +" threads", +[2,6812,35848], +0, +"thread pool", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"pushalert", +" toast", +[2,3857,35866], +"toastify", +[2,3862,35868], +[2,3862,9044], +"Typescript", +0,0,0,0, +"emble-js", +[2,31072,35876], +"processmd", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[3,5152,10], +"RFC6265", +"RFC2965", +0,0,0,0,0, +"tinytim", +0,0,0,0,0,0,0,0,0,0,0,0, +[2,7231,7316], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"html-select", +0,0, +"html-tokenize", +0,0,0,0,0,0,0,0,0, +"aggregate", +0,0,0,0,0,0,0,0, +"bs-logger", +"make-error", +0, +[2,6308,3065], +0,0,0,0,0,0,0, +[2,13664,6893], +0, +[3,5480,12], +"oader", +[2,35970,35971], +0,0,0,0,0,0,0, +"migration", +"migrations", +"cli-tool", +0,0,0,0, +"@ts-morph/common", +"block-writer", +[2,10988,35988], +0,0, +"static ", +[2,35992,19748], +"refactor", +[2,6721,35994], +0,0,0,0, +[2,20223,6859], +[2,20223,1276], +[2,12448,16443], +"@csp", +"otcode/source-map-support", +[2,36003,36004], +0, +"dprint", +"@swc/wasm", +"ntypescript", +"util.", +[2,36010,19138], +0,0,0,0,0, +[2,20442,7163], +"omit-deep", +0, +"power-assign", +0,0,0,0,0,0,0,0,0,0,0,0, +"bre", +"rete", +0, +"rule engine", +"rules engine", +" rule engine", +[2,5284,36038], +"js rule engine", +[2,6591,6770], +0,0,0,0,0, +[2,18284,4295], +0,0,0,0,0,0,0, +"typedefs", +"typedef", +0, +"initions", +[2,36056,36058], +0,0,0,0,0,0,0,0,0,0,0, +"polite-json", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[2,27572,4014], +0, +"codelyzer", +[3,4490,10], +"siste", +"nt-codestyle", +[2,36092,36093], +[2,36091,36094], +0, +"tslint-divid", +[2,4491,2700], +[2,13530,1334], +[2,4491,36099], +"tslint-mi", +"sc-rules", +[2,36101,36102], +0,0, +"ts-lint", +0,0,0,0,0, +[3,20474,12], +"slint-plugin", +[2,36112,36113], +0,0,0,0, +[2,4671,3209], +"joycon", +0, +"ts-e", +[2,36122,154], +0,0,0,0,0, +[3,14596,11], +[2,36129,8791], +0,0,0,0, +"@mixmark-io/domino", +0,0,0, +"-attendant", +[2,4495,36139], +0,0,0,0,0, +"grunt-comp", +0, +"onent-io", +[2,36146,36148], +[3,2243,10], +0, +"at-sourcemap", +[2,36150,36152], +"grunt-m", +"arkdown", +[2,36154,36155], +[3,2300,11], +"grunt-p", +"ush-release", +[2,36158,36159], +0, +"gex-replace", +[2,24294,36162], +[2,3503,16237], +[2,22277,36164], +"unfunk-reporter", +[2,3192,36166], +0,0,0,0,0, +"tap-b", +0, +"rowser-color", +[2,36173,36175], +"-util", +[2,4497,36177], +0,0, +"curve25519", +"ed25519", +"nacl", +0, +"poly1305", +"public", +"salsa20", +0, +"signatures", +0,0,0,0, +[2,4498,1574], +0,0, +"DOM", +"Twitter", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[2,4505,1732], +0,0,0,0,0,0,0,0,0,0, +"media-typer", +0, +"checking", +0,0,0,0,0,0,0,0,0,0, +[3,596,9], +"/material-color-utilities", +[2,36239,36240], +0,0, +[2,4511,699], +[3,4512,14], +[2,3131,4964], +"material-3", +[2,4508,1932], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"JsDocs", +0,0,0,0,0,0, +"cli-prompt", +0, +"concatenate", +0,0, +"ebook", +"pandoc", +0, +"kindlegen", +0,0,0,0, +[3,27847,12], +[2,36283,3231], +[2,12690,18877], +0,0, +"-findorcreate", +[2,3232,36288], +[2,7627,4487], +0,0,0,0, +"@sqltools/formatter", +0,0,0,0,0,0, +"-rename", +[2,22507,36302], +[3,36303,12], +[2,36304,4070], +[3,5055,10], +[2,36306,1722], +"gulpclass", +0,0,0,0,0,0, +"@dprint/formatter", +"@esfx/canceltoken", +"@dprint/", +[2,36317,91], +0, +"azure-", +"-node-api", +[2,20999,36321], +[2,36320,36322], +"mocha-f", +"ivemat-progress-reporter", +[2,36324,36325], +0,0, +"able-stylish", +[2,26072,36329], +[2,10749,36330], +0,0,0,0,0,0,0,0,0,0, +"commandpost", +0, +"wer-assert", +[2,13415,36344], +"intel", +"li-espower-loader", +[2,36346,36347], +0,0,0,0,0, +[2,5554,13774], +[2,18792,36354], +[2,13058,36355], +[3,36356,23], +[2,36357,1993], +0, +"css-utils", +[2,8802,36360], +[2,36357,16839], +"erved-words", +[2,31525,36363], +"-sync2", +[2,3613,36365], +"sass-svg", +0,0,0,0,0, +"finally", +[2,9466,36373], +[2,4532,1732], +0, +[2,27100,4255], +0,0,0,0,0,0,0,0,0,0,0,0, +"jsmin", +0,0,0,0,0,0,0,0,0,0,0, +"random-bytes", +0,0,0,0,0,0, +[2,1024,4525], +"affix", +[2,1016,36410], +[3,36411,12], +[2,36412,9809], +"uto-link", +[2,36412,36414], +[2,36412,9826], +[3,1015,12], +0, +"ack-top", +[2,36417,36419], +[3,36420,13], +[2,36421,35696], +[2,36417,9837], +[2,1015,9847], +[2,1016,9026], +[3,36425,13], +[2,36426,9854], +[3,36427,14], +[2,36428,9860], +[2,36426,9863], +[3,36425,12], +[2,36431,5449], +[2,36431,11200], +[3,36433,13], +[2,36434,3809], +"date-input", +[2,1016,36436], +[3,36437,16], +[2,36438,3811], +[3,36437,12], +"escriptions", +[2,36440,36441], +"ivider", +[2,36440,36443], +[2,36440,9997], +[3,36445,13], +[2,36446,11206], +[2,1016,3599], +0, +"file-input", +[2,1016,36450], +[3,36451,12], +[2,36452,3469], +[2,1016,10052], +[2,1016,8691], +[3,36455,12], +[2,36456,28176], +[2,36456,35971], +[2,1016,4403], +[3,36459,13], +[2,36460,10104], +[3,36459,12], +[2,36462,3852], +[3,36463,13], +"nth-picker", +[2,36464,36465], +[2,1016,22005], +[2,1016,18367], +[3,36468,12], +"in-code", +[2,36469,36470], +"opover", +[2,36469,36472], +[3,36473,13], +"rtal", +[2,36474,36475], +[2,36469,10148], +[2,1016,35778], +[3,36478,13], +[2,36479,6864], +"search-", +[2,36481,1631], +[2,1016,36482], +[3,36483,18], +[2,36484,1633], +[3,36483,13], +[2,36486,4021], +[3,36483,12], +[2,36488,10205], +[2,36488,10209], +[2,36488,11234], +[2,36488,10222], +[2,1016,176], +[3,36493,14], +[2,36494,591], +[3,36493,13], +[2,36496,10233], +[3,36493,12], +[2,36498,11241], +0, +"ime-picker", +[2,36498,36501], +[2,36498,18390], +[2,36498,10266], +[3,36504,13], +[2,36505,10271], +0, +"-checked", +[2,36506,36508], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[3,212,12], +"fns", +[2,36524,36525], +0, +"parsel-js", +0,0,0,0,0, +"citty", +0, +"mkdist", +"untyped", +"hookable", +0,0,0,0,0, +[2,3714,20], +0,0,0,0,0,0, +[3,34068,12], +[2,36551,2408], +0,0,0,0,0, +"teo.collina/tspl", +[2,599,36558], +"dns-packet", +0,0,0,0,0,0,0, +"trough", +0, +[3,9359,10], +[2,36570,4966], +0, +"retext", +0,0,0,0, +[3,4554,13], +0, +"non-repeating", +0,0,0,0,0,0, +[3,4555,10], +"xast", +"nlcst", +0,0,0,0,0,0,0,0,0,0,0,0, +"pullstream", +0, +"match-stream", +0, +"uncompress", +0,0,0,0, +"is-npm", +"pupa", +0, +"fixture-", +[2,36614,8634], +0,0,0,0,0, +"urn", +"uri mutation", +"url mutation", +"uri m", +"anipulation", +[2,36624,36625], +"url m", +[2,36627,36625], +0, +"uri template", +0, +"url template", +" res", +" locator", +[2,5585,36634], +[2,36633,36635], +[2,4549,36636], +[3,36637,17], +[2,36638,16906], +0, +"query string", +"RFC 3986", +"RFC3986", +0,0, +"RFC 6570", +0,0, +"RFC6570", +[2,23168,1932], +"ecosystem", +":jquery", +[2,36651,36652], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"ylru", +"formstream", +0,0, +"tshy-after", +[3,9725,12], +0, +"@types/busboy", +"@eggjs/tsconfig", +"@types/sel", +"fsigned", +[2,36689,36690], +0, +"strictest", +[2,25627,36693], +0, +"urlopen", +0,0,0,0,0,0,0,0,0, +"userprofile", +0,0,0,0,0, +[2,4745,57], +0,0, +"browserscope", +"ua", +"ua-parse", +"ua-parser", +"user agent", +"user-agent", +0,0,0,0,0,0,0,0,0, +"is-typed", +"-array", +[2,36730,36731], +0, +"supported", +[2,5745,36734], +[2,17393,36735], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"rfc9562", +0,0,0,0,0,0, +"bundt", +0, +"diffs", +0,0,0,0,0,0,0,0,0, +"find-pa", +"rent-dir", +[2,36779,36780], +0,0,0, +"githook", +0,0,0,0,0,0,0,0,0,0, +"sanitisation", +0, +"sanitise", +0,0,0,0,0,0, +"@vue/shared", +"@vant/popperjs", +"@vant/", +0, +"@vant/use", +0, +[2,7047,1732], +[2,5334,36811], +"able-html", +[2,1687,36813], +[2,10952,2770], +[2,36807,7625], +[2,36807,45], +0, +"area-data", +[2,36807,36819], +"@vant/cli", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"@vercel/go", +0, +"@vercel/fun", +"@vercel/next", +[2,20461,681], +"@vercel/ruby", +"python", +[2,33763,36844], +"@vercel/r", +"edwood", +[2,36846,36847], +"hydrogen", +[2,33763,36849], +"build-utils", +[2,33763,36851], +"@vercel/st", +"atic-build", +[2,36853,36854], +"@vercel/re", +0, +"mix-builder", +[2,36856,36858], +0, +"epipebomb", +0, +"promisepipe", +"tmp-promise", +0,0, +"@sentry/node", +[3,28267,12], +[2,7738,6768], +0, +"@types/dotenv", +[2,4753,4007], +[2,33763,5576], +[2,17213,2022], +"pcre-to-regexp", +"ast-commit", +[2,33495,36876], +[2,8603,18132], +[2,8603,1631], +"@tootallnate/once", +[3,546,11], +[2,36881,5449], +"@vercel/f", +"rameworks", +[2,36883,36884], +[2,3827,594], +[2,33763,36886], +[2,5745,7253], +[2,10787,36888], +[2,20290,4007], +"s-detectors", +[2,36883,36891], +[3,20485,11], +"-json-file", +[2,36893,36894], +"outing-utils", +[2,36846,36896], +[3,29115,11], +[2,36898,3385], +[3,22092,13], +[2,36900,16830], +"@vercel", +[3,9435,9], +"s/types", +[2,36903,36904], +[2,36902,36905], +0, +"node-utils", +[2,33157,36908], +[2,11836,2656], +[2,29130,36910], +[3,11296,13], +"xpect-", +[2,36913,6458], +[2,36912,36914], +[3,36906,18], +[2,36916,14181], +"@alex_neo/jest-expect-message", +[3,29110,18], +[2,36919,36910], +[2,18522,1781], +[2,36916,36921], +0,0,0,0, +"extsprintf", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"viewer.js", +0,0,0,0,0,0, +"remove-t", +"railing-separator", +[2,36948,36949], +"teex", +0,0,0,0,0,0,0,0,0,0,0,0, +"kdirp-stream", +[2,29048,36964], +"is-valid-glob", +"lead", +[2,4026,14690], +"stream-com", +"poser", +[2,36969,36970], +"to-through", +"value-", +"or-function", +[2,36973,36974], +[3,4606,15], +0,0,0,0, +"vinyl-adapter", +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"browser-split", +"ev-store", +"x-is-array", +0, +"x-is-string", +0, +"run-browser", +0, +"vtree", +0,0,0,0,0,0,0, +"artichokie", +[2,4293,16111], +"es-module-lexer", +[3,3638,15], +"@polka/", +[2,37016,1536], +0, +"build-tool", +0,0,0,0, +"slash-path", +0,0,0, +"api-router", +"api-routers", +[3,4612,15], +"rest-api", +[2,4609,37031], +[3,9244,9], +[2,37033,995], +[3,12419,12], +[2,37035,20332], +0, +"api-rest", +"Remix", +"Next.js", +0,0,0,0, +[3,6371,11], +[2,37045,1623], +[2,9408,364], +"devtools-api", +[2,5334,37048], +"@vueuse/", +[2,37050,12339], +"focus-trap", +0, +"@mdi", +"t-vue/plugin-component", +[2,37054,37055], +[3,37056,17], +[2,37057,9339], +[2,37057,11988], +"sfc", +[2,37057,37060], +[2,37057,17913], +[3,37062,18], +"oc", +[2,37063,37064], +"@mdit-vue/", +[2,37066,6579], +[3,7641,19], +[2,37068,3111], +[2,37068,3113], +[2,13058,3667], +[3,26774,14], +"thjax3", +[2,37072,37073], +0,0,0,0,0, +"@vitest/spy", +0, +"tinyrainbow", +"@vitest/u", +[2,37083,186], +[2,17213,8791], +"@vitest/s", +[2,37086,11298], +"why-", +0, +"running", +[2,21149,37090], +[2,37088,37091], +[2,17213,3717], +0, +"birpc", +"local-pkg", +[2,33157,24079], +"@antfu/", +"install-pkg", +[2,37098,37099], +0,0,0,0,0, +"node-lo", +"calstorage", +[2,37106,37107], +0, +"gulp-xo", +0,0, +"load-plugins", +0, +"vorpal-less", +0, +"vorpal-repl", +0,0,0,0,0, +"eyes", +0, +"BDD", +0,0,0,0, +"keytar", +"parse-semver", +[2,17414,28362], +0, +"eerio", +[2,16931,37134], +[3,21625,11], +[2,37136,4565], +0, +"@types/yazl", +0,0,0,0,0,0,0,0,0, +[2,9738,6985], +"@types/ic", +"onv-lite", +[2,37150,37151], +0,0,0,0, +[2,4619,9586], +0,0,0,0, +[3,36812,13], +[2,37162,965], +0,0,0,0,0, +"-libs", +[2,1988,37169], +0,0,0,0,0,0, +[3,5736,22], +[2,37177,31692], +0,0,0,0,0,0,0,0,0, +"@int", +"lify/core-base", +[2,37188,37189], +"@intlify/", +[2,37191,6579], +0,0, +"devtools-if", +[2,37191,37195], +0,0, +"vue-devtools", +[2,37191,37199], +0, +"intlify", +0,0,0,0,0, +[3,37200,13], +0, +"i18n-loader", +[2,37208,37210], +[3,7892,11], +[2,37212,3176], +[2,32119,1698], +"cache-loader", +"markdown-l", +[2,37216,35971], +"pug-p", +"lain-loader", +[2,37218,37219], +0,0,0,0,0,0,0,0,0,0, +"ightwatch", +[2,10884,37231], +0,0, +"faked-promise", +[2,28506,6706], +0,0,0,0,0,0,0,0,0,0, +"de-indent", +0,0,0,0,0, +"todomvc-app-css", +0,0,0,0, +"foreachasync", +0, +"sys", +"walkSync", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"exec-sh", +0,0,0,0,0,0, +"outpipe", +0, +"win-spawn", +0,0,0,0,0, +"encrypte", +"d-attr", +[2,37292,37293], +[3,3052,10], +"afeinteger", +[2,37295,37296], +[2,4651,18008], +"waterline-", +[2,37299,594], +0, +"active-", +[2,37302,1355], +0,0,0,0, +"vargs", +0,0,0,0, +"bdd-with-opts", +0, +"gulp-debug", +"mu2", +[2,9466,2869], +"auncher", +[2,26127,37318], +[2,20011,37319], +"mocha-p", +"arallel", +[2,37321,37322], +[2,18199,37323], +"sv-selenium", +0,0,0,0,0, +"web3-eth", +"web3-net", +0, +"web3-core", +"web3-types", +"web3-utils", +"web3-errors", +0, +"web3-eth-abi", +"web3-eth-", +0, +"web3-eth-ens", +0, +"web3-eth-iban", +[2,4654,1155], +"rpc-methods", +[2,4654,37346], +"web3-eth-a", +"ccounts", +[2,37348,37349], +"contract", +[2,37340,37351], +0, +"personal", +[2,37340,37354], +0, +"providers-ws", +[2,4654,37357], +"web3-rpc-", +"providers", +[2,37359,37360], +[3,37358,15], +[2,37362,27], +0, +"in3", +"ganache", +"ipc", +[2,37362,37367], +[3,13936,16], +"se-web3", +[2,37369,37370], +"@tru", +"ffle/hdwallet-provider", +[2,37372,37373], +0, +"Ethereum", +0,0,0,0,0,0,0,0,0,0,0,0,0, +"@solana/spl-token", +"@solana/", +"web3.js", +[2,37391,37392], +"kva-email-service", +0, +"ed25519-hdkey", +[2,32806,37396], +"ssl-http-with-docker", +[3,4382,9], +[2,7521,12130], +[2,37399,37400], +"telegram-a", +"ssistant", +[2,37402,37403], +"web3-r", +0, +"eact-task", +[2,37405,37407], +0, +"sol", +0,0,0,0,0,0,0,0,0,0, +"assembl", +"yjs/ast", +[2,37421,37422], +[2,10672,37423], +[3,37424,15], +"wasm-edit", +[2,37425,37426], +[3,37427,20], +[2,37428,57], +0,0, +"trace-event", +[2,35441,37432], +0, +"assembly", +[2,37435,1508], +[2,4671,1194], +[2,14743,1194], +"hash-wasm", +"wast-loader", +[2,20694,6095], +"xxhashjs", +0,0,0,0, +"@disco", +"veryjs/json-ext", +[2,37447,37448], +0, +"@carrotsearch/foamtree", +"h0r", +[2,22060,37452], +[2,37453,2809], +"lodash.p", +"artial", +[2,37455,37456], +[2,3607,34809], +0, +"zoomable", +0,0,0,0, +[3,13077,13], +[2,37465,18523], +"configtest", +[2,37465,37467], +0, +[3,4863,9], +"vinfo", +[2,37470,37471], +0,0,0,0,0,0, +"@fastify/e", +[2,37479,674], +"n-finished", +[2,15461,37481], +0,0,0,0,0,0,0, +"@types/sockjs", +[3,18584,13], +"njour", +[2,16872,37492], +"bonjour-service", +0,0,0, +[3,33768,13], +[2,37498,4017], +[2,37498,2947], +0, +"-community", +[2,17013,37502], +"-history-api-fallback", +[2,11485,37504], +0, +"klona", +[2,37490,4219], +"@types/tr", +0,0, +"usted-types", +[2,37509,37512], +0,0,0,0,0,0,0,0,0, +"reloading", +[3,4631,10], +[2,37524,3642], +0,0,0,0,0, +[2,32119,4694], +[3,33945,16], +"ellscape", +[2,37532,37533], +[3,3708,23], +0,0,0,0,0,0, +"dts-cli", +0, +"@types/flat", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"-to-buffer", +[2,7231,37567], +"yaeti", +0,0, +"networking", +"comet", +0,0,0,0, +"@silentbot1/nat-api", +"@thaunknown/simple-peer", +"torrent/http-node", +[2,10672,37580], +"addr", +0, +"-to-ip-port", +[2,37582,37584], +"bitfield", +"bittorrent-dht", +[3,37587,11], +[2,37588,20500], +"cache-c", +"hunk-store", +[2,37590,37591], +[2,33355,5509], +[2,13225,37593], +"cpus", +"create-t", +"orrent", +[2,37596,37597], +"-ponyfill", +[2,1613,37599], +"fs-c", +[2,37601,37591], +"fsa-chunk-store", +"imme", +"diate-chunk-store", +[2,37604,37605], +"-async-", +[2,37607,7253], +[2,4565,37608], +0,0, +"load-ip-set", +"lt_donthave", +"memory-c", +[2,37614,37591], +"torrent", +"parse-torrent", +"random-ite", +[2,37618,6882], +0,0,0, +"speed-limiter", +"throughput", +0,0, +"-discovery", +[2,37616,37627], +0,0, +"torrent-piece", +0, +"uint8-util", +"unordered-", +"array-remove", +[2,37634,37635], +"ut_metadata", +"ut_pex", +0, +[3,37581,12], +[2,37640,23685], +0,0, +"airtap-manual", +"airtap-s", +[2,37645,9073], +[2,37588,4839], +"chrome-net", +"-address", +[2,11996,37649], +0, +"path-esm", +"-fixtures", +[2,4702,37653], +0, +"bittorrent", +[2,37656,12332], +"mad science", +"p2p", +0,0,0, +"peer-to-peer", +0, +"peers", +"swarm", +"web torrent", +"webrtc data", +0,0,0,0,0, +"web worker", +"a gogo", +0,0,0,0,0,0,0,0,0,0,0, +"search-params", +[2,4564,37687], +0,0,0,0, +"buster", +"exorcist", +0, +"cujo", +0, +"Promises/A+", +0,0,0,0, +"isexe", +0,0,0,0, +"taffydb", +"unit.js", +0,0,0,0,0, +"@dabh/diagnostics", +"logform", +0, +"one-time", +0, +"@dabh/", +[2,37720,23816], +[2,20417,4715], +[3,18518,12], +[2,37723,1149], +"hock", +"winston-co", +[2,37726,13172], +0,0,0,0,0,0, +"tream-rotator", +[2,12416,37734], +0, +[3,24151,11], +[3,23722,14], +[2,37737,37738], +[2,6324,4059], +[2,37739,37740], +0, +"daily-rotate-file", +"log-rotate", +"logrotate", +0,0,0,0,0,0, +"winston3", +0,0,0,0,0, +"bower-config", +"propprop", +[2,4716,20], +0,0,0,0,0,0, +"carriage", +0, +"new-line", +"return", +0,0,0,0,0,0,0,0, +"workbox-", +[2,37779,6147], +0,0, +"workbox", +"workboxjs", +" worker", +[2,11100,37785], +" requests", +[2,1612,37787], +"offline", +[2,12320,3097], +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"writeFile", +0,0,0,0,0,0,0,0,0, +"enstore", +0, +"-crawler", +[2,4730,37820], +0, +"x-ray-parse", +0,0, +"scrape", +0,0,0,0,0,0, +"is-function", +"parse-headers", +0,0,0,0,0,0, +"adler-32", +0, +"codepage", +"crc-32", +"ssf", +"wmf", +0, +"@she", +"etjs/uglify-js", +[2,37848,37849], +"on-epipe", +[2,7219,37851], +"fflate", +[3,5392,10], +"pellcheck", +[2,37854,37855], +0, +"xlsb", +"xlsm", +"dbf", +"dif", +"sylk", +0,0,0,0,0, +"cash-cat", +"codacy-coverage", +"globify", +"unminified-webpack-plugin", +0, +"XML", +"CDATA", +"doctype", +0,0,0, +" instruction", +[2,10809,37879], +0, +"Javascript", +[2,353,3642], +"convertor", +"converting", +0, +"conversion", +0,0,0,0,0,0,0,0,0,0,0, +"node-expat", +0,0,0,0,0,0,0,0, +"dom-js", +"xmltest", +0, +"DOMParser", +"XMLSerializer", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"func-xml", +0,0,0,0,0,0, +[2,5857,5861], +[2,69,37935], +"@unicode/unicode-14.0.0", +0, +"rray-includes", +[2,24619,37939], +[2,1226,4740], +[3,37935,17], +0, +"value-aliases", +[2,37942,37944], +0,0,0,0,0,0,0, +"whitelist", +0,0,0,0, +"@scion-scxml/test-framework", +0, +"statechart", +0,0, +"state machine", +"finite", +" stat", +"e machine", +[2,37965,37966], +[2,37964,37967], +"finite ", +"automata", +[2,37969,37970], +"scxml", +"interpreter", +0,0,0,0,0,0,0,0, +"ep-equal", +[2,35506,37982], +[2,9228,4729], +0,0, +"@types/utf8", +[2,4744,28703], +0, +"emulator", +[2,4402,37990], +0,0,0,0, +"jest-t", +"s-webcompat-resolver", +[2,37996,37997], +0,0,0,0,0,0,0,0, +"yaml2json", +"json2yaml", +0,0,0,0,0,0,0, +"test-extends", +[2,27477,38016], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +[3,29775,30], +"imports-", +[2,38033,10906], +[2,38032,38034], +"death", +"repeating", +0, +"capture-har", +[2,9769,38039], +"roadrunner", +0, +"node4", +[2,26202,38043], +[3,4821,14], +"ode5", +[2,38045,38046], +[3,18229,16], +"-strict", +[2,38048,38049], +"ittens", +[2,25705,38051], +[3,1935,18], +"-vars", +[2,38053,38054], +[2,23105,7003], +[2,1152,38056], +[2,16645,38057], +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"@yeoman/adapter", +"@yeoman/", +"conflicter", +[2,38074,38075], +[2,38074,23255], +[2,38074,353], +"@yeoman/t", +[2,38079,103], +0, +"fly-import", +[2,7227,30831], +"mem-fs", +0, +"mem-fs-editor", +[2,9477,10057], +[2,17412,38087], +0,0,0, +"esmocha", +"sinon-test", +0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"yes", +"false", +0, +"lenient", +0,0,0,0,0, +"cli-list", +"fullname", +0,0, +"parse-help", +"root-check", +"npm-keyword", +0, +"doctor", +[2,4755,38125], +[2,25742,1871], +0,0,0, +[2,4755,6843], +0, +[2,9518,1002], +0,0,0,0,0, +"@jonahsnider/benchmark", +0,0,0,0,0,0,0,0,0,0, +[2,26936,4627], +0, +"cowsay", +"say", +0,0,0,0,0,0, +"zeromq", +"0mq", +"ømq", +"libzmq", +0,0,0,0,0,0,0,0,0,0,0,0, +[2,11477,1574], +[2,9228,4576], +0, +"@types/morgan", +"express-u", +"seragent", +[2,38180,38181], +0, +" types", +[2,7047,38184], +0,0,0,0,0,0, +"DSL", +0,0,0,0, +"@externs/nodejs", +0,0,0,0, +"JSON2", +0, +"char-split", +0,0, +"express-state", +"firefox-", +[2,38208,35677], +[2,11941,2663], +0, +"shallow-copy", +[2,4250,4833], +0, +"tap-finished", +"-localtunnel", +[2,4770,38216], +0,0,0, +"browzers", +"bulk-require", +0, +"zuul-ngrok", +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +"Unit Testing", +0,0,0,0,0,0,0, +"Storybook", +0,0,0,0,0,0,0,0, +"belalangkayu", +"rengginangbasi", +"tehtarik3", +0,0,0,0,0,0,0,0,0,0,0, +"sort-array", +0,0,0,0,0,0,0,0,0,0,0, +"-scroll-", +"into-view", +[2,38290,38291], +[2,23545,38292], +0, +"module-t", +"ype-aliases", +[2,38295,38296], +[2,20201,38297], +[2,964,3698], +[3,1216,14], +"o-side-effect-class-properties", +[2,38300,38301], +[3,1270,19], +[2,38303,970], +"flow-co", +[2,24524,8803], +[2,38305,38306], +0, +"get-pkg-repo", +0, +"enhanced", +" input", +[2,38311,38312], +0,0, +"autosuggest", +"typeahead", +0, +"omnibox", +"WAI-ARIA", +"multiple ", +[2,38321,17146], +0,0,0,0, +"focus", +"keyboards", +"mice", +"pseudos", +0, +"textarea", +"trackpad" +] diff --git a/packages/flatpack-json/fixtures/.npm-packages-info-v2.json b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json index 472faec6a36d..954fa96bc1dc 100644 --- a/packages/flatpack-json/fixtures/.npm-packages-info-v2.json +++ b/packages/flatpack-json/fixtures/.npm-packages-info-v2.json @@ -1,2692 +1,685 @@ [ "Flatpack JSON v2", -[128,"eslint","typescript","mocha","prettier","@types/node","react","rimraf","jest","eslint-plugin-import","husky", -"@babel/core","eslint-config-prettier","chai","rollup","nyc","semver","lint-staged","webpack", -"@typescript-eslint/parser","chalk","@babel/preset-env","@typescript-eslint/eslint-plugin","lodash","css", -"eslint-plugin-prettier","cross-env","sinon","glob","@types/jest","vitest","html","gulp","ts-node","xo","debug", -"react-dom","cli","postcss","tape","express","fs-extra","documentation","c8","tslib","javascript","backend", -"@types/react","@babel/cli","@commitlint/cli","@eslint/js","ava","frontend","framework","grunt","coveralls","globals", -"ts-jest","commander","async","browserify","testing","@rollup/plugin-node-resolve","@commitlint/config-conventional", -"eslint-plugin-react","npm-run-all","istanbul","eslint-plugin-promise","gulpplugin","through2","vinyl","@types/mocha", -"mkdirp","vue","parser","eslint-plugin-node","test","@rollup/plugin-commonjs","jsdom","karma","sass","should","tsd", -"eslint-config-standard","typescript-eslint","tap","babel-jest","esbuild","minimist","@types/react-dom","@babel/runtime", -"babel-eslint","minimatch","webpack-cli","browser","mobile","babel-loader","standard","yargs","markdown","api","js-yaml", -"ui","http","vite","@vitest/coverage-v8","react-component","plugin","json","@types/chai","benchmark","request", -"uglify-js","web","bluebird","eslint-plugin-n","generator","chokidar","execa","jshint","@testing-library/react", -"prop-types","semantic-release","supertest","typedoc","uuid","resolve","components", -"file","eslint-plugin-standard","source-map","component","@babel/preset-react","colors","standard-version","unified", -"util","@babel/preset-typescript","karma-chrome-launcher","strip-ansi","@types/semver","css-loader","plugin-error", -"@types/lodash","node","eslint-plugin-jest","remark-cli","source-map-support","eslint-plugin-jsx-a11y","codecov","del", -"eslint-plugin-unicorn","open","@testing-library/jest-dom","style-loader","tsx","@babel/eslint-parser","autoprefixer", -"core-js","npm","puppeteer","tmp","babel-core","body-parser","grunt-cli","jsdoc","parse","picocolors","string", -"@types/debug","@babel/plugin-transform-runtime","promise","tsup","webpack-dev-server","@babel/register", -"grunt-contrib-jshint","jest-environment-jsdom","terser","terminal","babel-cli","eslint-plugin-jsdoc","proxyquire", -"stylelint","ajv","angular","eslint-config-airbnb-base","eslint-plugin-react-hooks","karma-mocha","node-fetch", -"safe-publish-latest","sinon-chai","@types/fs-extra", -"front-end","text","axios","inquirer","jasmine","nock","readable-stream","tslint","url","console","acorn","diff", -"globby","ws","@rollup/plugin-terser","@rollup/plugin-babel","utility","@babel/plugin-proposal-class-properties", -"dotenv","eslint-plugin-markdown","in-publish","karma-firefox-launcher","ts-loader","type-fest","server","color", -"connect","less","markdown-it","svelte","which","postcss-plugin","lint","cross-spawn","fast-glob","marked","minify", -"rollup-plugin-terser","style","cheerio","del-cli","moment","pre-commit","react-native","type-coverage", -"@rollup/plugin-replace","@rollup/plugin-json","chai-as-promised","grunt-contrib-clean","object-assign","next","ansi", -"@ljharb/eslint-config","@swc/core","eslint-import-resolver-typescript","handlebars","jquery","path","underscore", -"@types/hast","stream","babel-preset-env","classnames","eslint-config-airbnb", -"eslint-plugin-mocha","fancy-log","log","memfs","mime","remark-preset-wooorm","yaml","zod","@types/express","svg","dom", -"shell","gruntplugin","auto-changelog","babel-plugin-add-module-exports","file-loader","json5","npmignore","remark", -"rollup-plugin-babel","shelljs","template","js","@types/sinon","assert","babel","babel-runtime","ckeditor5", -"concurrently","nodemon","process","react-test-renderer","slash","undici","@eslint/eslintrc","ios","image","check", -"buffer","cz-conventional-changelog","magic-string","@semantic-release/changelog","@semantic-release/git","command-line", -"@babel/plugin-proposal-object-rest-spread","browserslist","clsx","fs","grunt-contrib-watch","rollup-plugin-typescript2", -"app","@testing-library/user-event","coffeescript","concat-stream","gulp-rename","gulp-sourcemaps","tar","tinyglobby", -"@arethetypeswrong/cli","@stylistic/eslint-plugin","command","mock","@ckeditor/ckeditor5-core","@testing-library/dom", -"@types/estree","babel-preset-es2015","canvas","deepmerge","graceful-fs","ora","picomatch","redux","size-limit", -"@biomejs/biome","@rollup/plugin-typescript","schema","@ckeditor/ckeditor5-utils","babel-plugin-istanbul","code", -"config","cookie","ejs","expect","find-up","gh-pages","grunt-contrib-uglify","html-webpack-plugin","load-grunt-tasks", -"mime-types","npm-run-all2","regenerator-runtime","rollup-plugin-node-resolve","unist-util-visit","es6","ecmascript", -"client","input","nodejs","eslintplugin","android","middleware","@changesets/cli","grunt-contrib-nodeunit","gulp-mocha", -"gulp-util","micromatch","progress","ast","@types/eslint","module","@playwright/test","compression","cors","cssnano", -"esm","graphql","highlight.js","jasmine-core","mini-css-extract-plugin","mongodb","qunit","rehype","release-it","tempy", -"tsdown","modules","library","eslint-plugin", -"logging","conventional-changelog-cli","cosmiconfig","got","https","karma-jasmine","nextjs","playwright","prompts", -"serve-static","shx","string-width","stylus","terser-webpack-plugin","@babel/plugin-transform-modules-commonjs","docs", -"syntax","unit","git","database","lodash-modularized","@babel/parser","@ckeditor/ckeditor5-ui","cspell", -"escape-string-regexp","event-stream","events","expect.js","flow-bin","http-server","karma-mocha-reporter","np", -"requirejs","rollup-plugin-dts","touch","@types/yargs","editor","@types/js-yaml","rest","validation","@types/mdast", -"require","object","directory","@ckeditor/ckeditor5-engine","babel-register","camelcase","enzyme","extend","koa", -"lru-cache","pretty-quick","prismjs","react-is","url-loader","validator","ts","design","router","cache","scss","tty", -"es2015","stringify", -"hast","@babel/polyfill","@babel/types","@microsoft/api-extractor","ansi-colors","bootstrap","bytes","coffee-script", -"common-tags","convert-source-map","electron","iconv-lite","ignore","lodash-es","meow","nopt","postcss-value-parser", -"qs","rollup-plugin-commonjs","sass-loader","supports-color","through","publint","@types/glob","entities","runner", -"unicode","@types/ws","node.js","convert","package","data","karma-plugin","ci-info","commitizen","cypress","escape-html", -"eslint-plugin-flowtype","get-port","get-stream","htmlparser2","jest-cli","kleur","merge","path-exists","postcss-loader", -"preact","prompt","rxjs","safe-buffer","@eslint/compat","github-slugger","animation","native","vfile","escape", -"promises","@babel/code-frame","@vitejs/plugin-react","clone","copy-webpack-plugin","dedent","figures", -"grunt-contrib-copy", -"grunt-eslint","gulp-eslint","immutable","inherits","jiti","karma-webpack","markdownlint-cli","mustache","pretty-bytes", -"q","remark-gfm","webpack-bundle-analyzer","webpack-merge","yargs-parser","@types/webpack","reactjs","es-toolkit", -"@eslint/markdown","@rollup/plugin-alias","web framework","match","encoding","validate","fast","transform","xml","unist", -"@babel/traverse","clean-css","conventional-changelog","dayjs","enquirer","eslint-plugin-eslint-plugin","github", -"grunt-bump","is-ci","mock-fs","ms","mysql","optimist","p-map","path-to-regexp","pluralize","postcss-import", -"postcss-selector-parser","react-router-dom","stylelint-config-standard","tailwindcss","tap-spec","tshy","vinyl-fs", -"vinyl-sourcemaps-apply","winston","xml2js","format","polyfill","styles","generate","form","swagger","automation","tdd", -"performance","compress", -"type","linter","@babel/plugin-proposal-decorators","@ckeditor/ckeditor5-typing","babel-polyfill","cookie-parser", -"cpy-cli","espree","grunt-contrib-connect","gulp-babel","http-proxy","jscs","karma-coverage","mocha-lcov-reporter", -"node-gyp","object.assign","opener","parse5","pathe","pg","proxy","read","reflect-metadata","remark-parse","simple-git", -"strip-json-comments","svgo","temp","update-notifier","warning","watch","compiler","preprocessor","bdd", -"@ckeditor/ckeditor5-icons","tool","time","args","@types/jsdom","html5","formatting","eslint-config-webpack", -"@semantic-release/npm","checker","optimize","png","hast-util","@sinonjs/fake-timers","cli-table3","copyfiles","crypto", -"delay","form-data","grunt-contrib-concat","grunt-npm","gulp-concat","gulp-uglify","http-errors","is","json-schema", -"jsonc-parser","karma-sourcemap-loader","log-symbols","nanoid", -"phantomjs-prebuilt","portfinder","pug","ramda","resolve-from","rollup-plugin-visualizer","schema-utils","xterm", -"pretty","responsive","types","@types/micromatch","@types/json-schema","w3c","simple","find","await","import","error", -"remove","files","gulpfriendly","@types/picomatch","@jest/types","@nx/devkit","@octokit/rest","babel-preset-react", -"bindings","eslint-doc-generator","fresh","gray-matter","gulp-format-md","hasown","html-entities","invariant", -"karma-chai","karma-spec-reporter","microbundle","morgan","nodeunit","once","path-browserify","postcss-cli", -"pretty-format","raf","raw-loader","react-refresh","react-transition-group","redis","sharp","superagent","tree-kill", -"yarn","dependencies","development","authentication","hooks","openapi","@types/uuid","layout","doc","@types/unist", -"query","tinyhttp", -"utils","@size-limit/preset-small-lib","shim","colour","array","copy","detect","security","build","compile", -"@types/tape","version","@babel/helper-plugin-utils","@eslint-community/eslint-utils","airtap","ansi-styles","aud", -"babel-preset-airbnb","csstype","eslint-plugin-html","eslint-plugin-security","filesize","hast-util-to-string", -"https-proxy-agent","ini","install","joi","karma-rollup-preprocessor","loader-utils","make-dir","ncp","parseurl", -"rehype-stringify","shell-quote","sirv","slugify","storybook","walk","watchify","xhr","xtend","icon","templates", -"@types/benchmark","logger","@semantic-release/github","@types/tmp","@types/compression","table","TypeScript", -"@types/chai-as-promised","@npmcli/eslint-config","@npmcli/template-oss","@types/babel__core","@rollup/pluginutils", -"functional","rgb","@types/minimist","cli-app","parsing","windows","optimise","search","filter", -"db","publish","rollup-plugin","@typescript-eslint/utils","after","ajv-formats","arg", -"babel-plugin-transform-object-rest-spread","babel-plugin-transform-react-remove-prop-types","babelify", -"copy-to-clipboard","csv","deep-equal","enhanced-resolve","eslint-config-gulp","eslint-plugin-babel", -"eslint-plugin-regexp","eslint-plugin-vue","estree-walker","expect-type","father","grunt-shell","gulp-header", -"gulp-jshint","hosted-git-info","indent-string","jest-environment-node","jsdoc-to-markdown","jsonschema","jsonwebtoken", -"karma-sauce-launcher","knip","msw","nan","orm","outdent","pngjs","postcss-preset-env","remark-rehype", -"rollup-plugin-uglify","send","serve","socket.io","source-map-js","split","sqlite3","ts-morph","tsconfig-paths", -"typedoc-plugin-markdown","vitepress","whatwg-fetch","neostandard","@popperjs/core","wysiwyg","@types/prompts", -"coverage","task","wait","CLI","event","environment","@babel/node","changelog","loader", -"auth","encode","minifier","delete","map","binary","recursive","realtime","@npmcli/arborist","ansi-escapes","archiver", -"assume","babylon","cac","content-type","eslint-plugin-compat","etag","exit","express-session", -"extract-text-webpack-plugin","global","grunt-contrib-internal","gulp-plugin-extras","hono","is-wsl","jest-diff", -"jest-util","json-loader","karma-browserify","karma-safari-launcher","mdast-util-from-markdown","moment-timezone", -"node-addon-api","oauth","p-event","phantomjs","postcss-load-config","postcss-scss","prettier-plugin-packagejson", -"pretty-ms","react-redux","react-router","replace-ext","rollup-plugin-cleanup","rollup-plugin-license", -"rollup-plugin-replace","rollup-pluginutils","signal-exit","source-map-loader","split2","styled-components","sugarss", -"tar-stream","text-table","toml","vinyl-source-stream","vue-router","websocket","wrap-ansi","@babel/generator","website", -"@web/test-runner","ckeditor 5","rich text", -"@types/markdown-it","vue3","@types/graceful-fs","forms","rollup-plugin-copy","term","ascii","ui-kit","jsx","fetch", -"remark-frontmatter","shiki","builder","@release-it/conventional-changelog","commonjs", -"eslint-plugin-simple-import-sort","@vue/test-utils","integration","static","zip","option","value","parallel", -"serialize","random","name","@vitest/eslint-plugin","vite-plugin-dts","ES6","@semantic-release/commit-analyzer","render", -"@types/minimatch","postgres","mdast","webdriver","@babel/plugin-proposal-export-namespace-from", -"@ckeditor/ckeditor5-cloud-services","@ckeditor/ckeditor5-image","@nx/js","antd","aws-sdk", -"babel-plugin-transform-runtime","browser-sync","call-bind","cli-table","co","content-disposition","cordova","doctoc", -"dotenv-expand","doxdox","enzyme-adapter-react-16","es6-promise","eslint-config-airbnb-typescript","eslint-visitor-keys", -"eventemitter3","fast-deep-equal","finalhandler","for-each","formidable","graphql-tag","grunt-browserify","grunt-karma", +[128,"eslint","typescript","mocha","prettier","@types/node","react","rimraf","jest","eslint-plugin-import","husky","@babel/core","eslint-config-prettier","chai","rollup","nyc","semver","lint-staged","webpack","@typescript-eslint/parser","chalk","@babel/preset-env","@typescript-eslint/eslint-plugin","lodash","css","eslint-plugin-prettier","cross-env","sinon","glob","@types/jest","vitest","html","gulp","ts-node","xo","debug","react-dom","cli","postcss","tape","express","fs-extra","documentation","c8","tslib", +"javascript","backend","@types/react","@babel/cli","@commitlint/cli","@eslint/js","ava","frontend","framework","grunt","coveralls","globals","ts-jest","commander","async","browserify","testing","@rollup/plugin-node-resolve","@commitlint/config-conventional", +"eslint-plugin-react","npm-run-all","istanbul","eslint-plugin-promise","gulpplugin","through2","vinyl","@types/mocha","mkdirp","vue","parser","eslint-plugin-node","test","@rollup/plugin-commonjs","jsdom","karma","sass","should","tsd","eslint-config-standard","typescript-eslint","tap","babel-jest","esbuild","minimist","@types/react-dom","@babel/runtime","babel-eslint","minimatch","webpack-cli","browser","mobile","babel-loader","standard","yargs","markdown","api","js-yaml","ui","http","vite", +"@vitest/coverage-v8","react-component","plugin","json","@types/chai","benchmark","request","uglify-js","web","bluebird","eslint-plugin-n","generator","chokidar","execa","jshint","@testing-library/react","prop-types","semantic-release","supertest","typedoc","uuid","resolve","components", +"file","eslint-plugin-standard","source-map","component","@babel/preset-react","colors","standard-version","unified","util","@babel/preset-typescript","karma-chrome-launcher","strip-ansi","@types/semver","css-loader","plugin-error","@types/lodash","node","eslint-plugin-jest","remark-cli","source-map-support","eslint-plugin-jsx-a11y","codecov","del","eslint-plugin-unicorn","open","@testing-library/jest-dom","style-loader","tsx","@babel/eslint-parser","autoprefixer","core-js","npm","puppeteer","tmp", +"babel-core","body-parser","grunt-cli","jsdoc","parse","picocolors","string","@types/debug","@babel/plugin-transform-runtime","promise","tsup","webpack-dev-server","@babel/register","grunt-contrib-jshint","jest-environment-jsdom","terser","terminal","babel-cli","eslint-plugin-jsdoc","proxyquire","stylelint","ajv","angular","eslint-config-airbnb-base","eslint-plugin-react-hooks","karma-mocha","node-fetch","safe-publish-latest","sinon-chai","@types/fs-extra", +"front-end","text","axios","inquirer","jasmine","nock","readable-stream","tslint","url","console","acorn","diff","globby","ws","@rollup/plugin-terser","@rollup/plugin-babel","utility","@babel/plugin-proposal-class-properties","dotenv","eslint-plugin-markdown","in-publish","karma-firefox-launcher","ts-loader","type-fest","server","color","connect","less","markdown-it","svelte","which","postcss-plugin","lint","cross-spawn","fast-glob","marked","minify","rollup-plugin-terser","style","cheerio","del-cli", +"moment","pre-commit","react-native","type-coverage","@rollup/plugin-replace","@rollup/plugin-json","chai-as-promised","grunt-contrib-clean","object-assign","next","ansi","@ljharb/eslint-config","@swc/core","eslint-import-resolver-typescript","handlebars","jquery","path","underscore","@types/hast","stream","babel-preset-env","classnames","eslint-config-airbnb", +"eslint-plugin-mocha","fancy-log","log","memfs","mime","remark-preset-wooorm","yaml","zod","@types/express","svg","dom","shell","gruntplugin","auto-changelog","babel-plugin-add-module-exports","file-loader","json5","npmignore","remark","rollup-plugin-babel","shelljs","template","js","@types/sinon","assert","babel","babel-runtime","ckeditor5","concurrently","nodemon","process","react-test-renderer","slash","undici","@eslint/eslintrc","ios","image","check","buffer","cz-conventional-changelog","magic-string", +"@semantic-release/changelog","@semantic-release/git","command-line","@babel/plugin-proposal-object-rest-spread","browserslist","clsx","fs","grunt-contrib-watch","rollup-plugin-typescript2","app","@testing-library/user-event","coffeescript","concat-stream","gulp-rename","gulp-sourcemaps","tar","tinyglobby","@arethetypeswrong/cli","@stylistic/eslint-plugin","command","mock","@ckeditor/ckeditor5-core","@testing-library/dom", +"@types/estree","babel-preset-es2015","canvas","deepmerge","graceful-fs","ora","picomatch","redux","size-limit","@biomejs/biome","@rollup/plugin-typescript","schema","@ckeditor/ckeditor5-utils","babel-plugin-istanbul","code","config","cookie","ejs","expect","find-up","gh-pages","grunt-contrib-uglify","html-webpack-plugin","load-grunt-tasks","mime-types","npm-run-all2","regenerator-runtime","rollup-plugin-node-resolve","unist-util-visit","es6","ecmascript","client","input","nodejs","eslintplugin","android", +"middleware","@changesets/cli","grunt-contrib-nodeunit","gulp-mocha","gulp-util","micromatch","progress","ast","@types/eslint","module","@playwright/test","compression","cors","cssnano","esm","graphql","highlight.js","jasmine-core","mini-css-extract-plugin","mongodb","qunit","rehype","release-it","tempy","tsdown","modules","library","eslint-plugin", +"logging","conventional-changelog-cli","cosmiconfig","got","https","karma-jasmine","nextjs","playwright","prompts","serve-static","shx","string-width","stylus","terser-webpack-plugin","@babel/plugin-transform-modules-commonjs","docs","syntax","unit","git","database","lodash-modularized","@babel/parser","@ckeditor/ckeditor5-ui","cspell","escape-string-regexp","event-stream","events","expect.js","flow-bin","http-server","karma-mocha-reporter","np","requirejs","rollup-plugin-dts","touch","@types/yargs", +"editor","@types/js-yaml","rest","validation","@types/mdast","require","object","directory","@ckeditor/ckeditor5-engine","babel-register","camelcase","enzyme","extend","koa","lru-cache","pretty-quick","prismjs","react-is","url-loader","validator","ts","design","router","cache","scss","tty","es2015","stringify", +"hast","@babel/polyfill","@babel/types","@microsoft/api-extractor","ansi-colors","bootstrap","bytes","coffee-script","common-tags","convert-source-map","electron","iconv-lite","ignore","lodash-es","meow","nopt","postcss-value-parser","qs","rollup-plugin-commonjs","sass-loader","supports-color","through","publint","@types/glob","entities","runner","unicode","@types/ws","node.js","convert","package","data","karma-plugin","ci-info","commitizen","cypress","escape-html","eslint-plugin-flowtype","get-port", +"get-stream","htmlparser2","jest-cli","kleur","merge","path-exists","postcss-loader","preact","prompt","rxjs","safe-buffer","@eslint/compat","github-slugger","animation","native","vfile","escape","promises","@babel/code-frame","@vitejs/plugin-react","clone","copy-webpack-plugin","dedent","figures","grunt-contrib-copy", +"grunt-eslint","gulp-eslint","immutable","inherits","jiti","karma-webpack","markdownlint-cli","mustache","pretty-bytes","q","remark-gfm","webpack-bundle-analyzer","webpack-merge","yargs-parser","@types/webpack","reactjs","es-toolkit","@eslint/markdown","@rollup/plugin-alias","web framework","match","encoding","validate","fast","transform","xml","unist","@babel/traverse","clean-css","conventional-changelog","dayjs","enquirer","eslint-plugin-eslint-plugin","github","grunt-bump","is-ci","mock-fs","ms","mysql", +"optimist","p-map","path-to-regexp","pluralize","postcss-import","postcss-selector-parser","react-router-dom","stylelint-config-standard","tailwindcss","tap-spec","tshy","vinyl-fs","vinyl-sourcemaps-apply","winston","xml2js","format","polyfill","styles","generate","form","swagger","automation","tdd","performance","compress", +"type","linter","@babel/plugin-proposal-decorators","@ckeditor/ckeditor5-typing","babel-polyfill","cookie-parser","cpy-cli","espree","grunt-contrib-connect","gulp-babel","http-proxy","jscs","karma-coverage","mocha-lcov-reporter","node-gyp","object.assign","opener","parse5","pathe","pg","proxy","read","reflect-metadata","remark-parse","simple-git","strip-json-comments","svgo","temp","update-notifier","warning","watch","compiler","preprocessor","bdd","@ckeditor/ckeditor5-icons","tool","time","args", +"@types/jsdom","html5","formatting","eslint-config-webpack","@semantic-release/npm","checker","optimize","png","hast-util","@sinonjs/fake-timers","cli-table3","copyfiles","crypto","delay","form-data","grunt-contrib-concat","grunt-npm","gulp-concat","gulp-uglify","http-errors","is","json-schema","jsonc-parser","karma-sourcemap-loader","log-symbols","nanoid", +"phantomjs-prebuilt","portfinder","pug","ramda","resolve-from","rollup-plugin-visualizer","schema-utils","xterm","pretty","responsive","types","@types/micromatch","@types/json-schema","w3c","simple","find","await","import","error","remove","files","gulpfriendly","@types/picomatch","@jest/types","@nx/devkit","@octokit/rest","babel-preset-react","bindings","eslint-doc-generator","fresh","gray-matter","gulp-format-md","hasown","html-entities","invariant","karma-chai","karma-spec-reporter","microbundle", +"morgan","nodeunit","once","path-browserify","postcss-cli","pretty-format","raf","raw-loader","react-refresh","react-transition-group","redis","sharp","superagent","tree-kill","yarn","dependencies","development","authentication","hooks","openapi","@types/uuid","layout","doc","@types/unist","query","tinyhttp", +"utils","@size-limit/preset-small-lib","shim","colour","array","copy","detect","security","build","compile","@types/tape","version","@babel/helper-plugin-utils","@eslint-community/eslint-utils","airtap","ansi-styles","aud","babel-preset-airbnb","csstype","eslint-plugin-html","eslint-plugin-security","filesize","hast-util-to-string","https-proxy-agent","ini","install","joi","karma-rollup-preprocessor","loader-utils","make-dir","ncp","parseurl","rehype-stringify","shell-quote","sirv","slugify","storybook", +"walk","watchify","xhr","xtend","icon","templates","@types/benchmark","logger","@semantic-release/github","@types/tmp","@types/compression","table","TypeScript","@types/chai-as-promised","@npmcli/eslint-config","@npmcli/template-oss","@types/babel__core","@rollup/pluginutils","functional","rgb","@types/minimist","cli-app","parsing","windows","optimise","search","filter", +"db","publish","rollup-plugin","@typescript-eslint/utils","after","ajv-formats","arg","babel-plugin-transform-object-rest-spread","babel-plugin-transform-react-remove-prop-types","babelify","copy-to-clipboard","csv","deep-equal","enhanced-resolve","eslint-config-gulp","eslint-plugin-babel","eslint-plugin-regexp","eslint-plugin-vue","estree-walker","expect-type","father","grunt-shell","gulp-header","gulp-jshint","hosted-git-info","indent-string","jest-environment-node","jsdoc-to-markdown","jsonschema", +"jsonwebtoken","karma-sauce-launcher","knip","msw","nan","orm","outdent","pngjs","postcss-preset-env","remark-rehype","rollup-plugin-uglify","send","serve","socket.io","source-map-js","split","sqlite3","ts-morph","tsconfig-paths","typedoc-plugin-markdown","vitepress","whatwg-fetch","neostandard","@popperjs/core","wysiwyg","@types/prompts","coverage","task","wait","CLI","event","environment","@babel/node","changelog","loader", +"auth","encode","minifier","delete","map","binary","recursive","realtime","@npmcli/arborist","ansi-escapes","archiver","assume","babylon","cac","content-type","eslint-plugin-compat","etag","exit","express-session","extract-text-webpack-plugin","global","grunt-contrib-internal","gulp-plugin-extras","hono","is-wsl","jest-diff","jest-util","json-loader","karma-browserify","karma-safari-launcher","mdast-util-from-markdown","moment-timezone","node-addon-api","oauth","p-event","phantomjs","postcss-load-config", +"postcss-scss","prettier-plugin-packagejson","pretty-ms","react-redux","react-router","replace-ext","rollup-plugin-cleanup","rollup-plugin-license","rollup-plugin-replace","rollup-pluginutils","signal-exit","source-map-loader","split2","styled-components","sugarss","tar-stream","text-table","toml","vinyl-source-stream","vue-router","websocket","wrap-ansi","@babel/generator","website","@web/test-runner","ckeditor 5","rich text", +"@types/markdown-it","vue3","@types/graceful-fs","forms","rollup-plugin-copy","term","ascii","ui-kit","jsx","fetch","remark-frontmatter","shiki","builder","@release-it/conventional-changelog","commonjs","eslint-plugin-simple-import-sort","@vue/test-utils","integration","static","zip","option","value","parallel","serialize","random","name","@vitest/eslint-plugin","vite-plugin-dts","ES6","@semantic-release/commit-analyzer","render","@types/minimatch","postgres","mdast","webdriver", +"@babel/plugin-proposal-export-namespace-from","@ckeditor/ckeditor5-cloud-services","@ckeditor/ckeditor5-image","@nx/js","antd","aws-sdk","babel-plugin-transform-runtime","browser-sync","call-bind","cli-table","co","content-disposition","cordova","doctoc","dotenv-expand","doxdox","enzyme-adapter-react-16","es6-promise","eslint-config-airbnb-typescript","eslint-visitor-keys","eventemitter3","fast-deep-equal","finalhandler","for-each","formidable","graphql-tag","grunt-browserify","grunt-karma", "grunt-mocha-test", -"gulp-clean-css","gulp-istanbul","gulp-replace","hoist-non-react-statics","identity-obj-proxy","immer","is-stream", -"js-base64","js-beautify","jshint-stylish","map-stream","markdown-it-anchor","markdown-toc","markdownlint", -"mocha-junit-reporter","npm-package-arg","nunjucks","on-finished","pixelmatch","plur","proc-log","punycode", -"querystring","queue","regenerate","rollup-plugin-buble","run-sequence","scheduler","type-is","vary","vue-eslint-parser", -"wordwrap","yauzl","zuul","rolldown","@babel/plugin-syntax-jsx","material design","@types/prop-types", -"@babel/plugin-transform-flow-strip-types","simple-git-hooks","md","comments","ckeditor","editing","@stackblitz/sdk", -"@vitest/ui","@types/prismjs","@babel/plugin-external-helpers","icons","@vitest/coverage-istanbul","scaffold","yeoman", -"@swc/helpers","date","@types/node-fetch","@types/supertest","mui","store","a11y","@storybook/react", -"@vitejs/plugin-vue","regex","pattern","reporter", -"@types/cross-spawn","@webpack-contrib/eslint-config-webpack","extract","folder","sanitize","streams","utilities", -"uglify","@commitlint/config-angular","devlop","memory","tree","selenium","react-native-component","rehype-plugin", -"@babel/plugin-proposal-export-default-from","@babel/plugin-syntax-dynamic-import","@ckeditor/ckeditor5-clipboard", -"@ckeditor/ckeditor5-heading","@ckeditor/ckeditor5-list","accepts","ansi-regex","arrify","babel-plugin-module-resolver", -"babel-preset-stage-0","beautify-benchmark","bower","buble","caniuse-lite","clipboard","codemirror","colorette", -"commitlint","configstore","cron","css-tree","d3","date-fns","depd","dtslint","each","eslint-plugin-tsdoc", -"eslint-scope","esprima","estraverse","evalmd","extract-zip","fastify","grunt-conventional-changelog","gulp-filter", -"gulp-if","gzip-size","hastscript","he","i18n","i18next","inflection","is-glob","is-plain-obj","is-plain-object", -"isarray","jest-junit","jest-watch-typeahead","jsesc", -"json-stringify-safe","JSONStream","karma-ie-launcher","lab","less-loader","leven","livereload","lockfile-lint", -"lodash.clonedeep","markdown-it-emoji","markdown-table","material-ui","md5","mdast-util-to-hast","memory-fs", -"merge-stream","methods","mockdate","mongoose","node-forge","npm-package-json-lint","object.entries","p-queue","pify", -"pkg-up","prettier-plugin-organize-imports","range-parser","react-copy-to-clipboard","remarkable", -"resize-observer-polyfill","rollup-plugin-json","sax","selenium-webdriver","serialize-javascript","serve-index", -"server-destroy","space-separated-tokens","start-server-and-test","three","tinybench","tinycolor2","tough-cookie", -"uglifyjs-webpack-plugin","uvu","vue-loader","walk-sync","ua-parser-js","react-error-boundary", -"@jridgewell/trace-mapping","@types/resolve","@babel/helper-module-imports","@babel/plugin-transform-class-properties", -"@babel/plugin-transform-typescript","toolkit","tinyexec","lunr","properties","tests","@types/mime-types", -"@emotion/react","API","font","configuration","bundle", -"Monorepo","spec","@storybook/addon-links","network","@vitest/browser","unist-util-visit-parents","whatwg","findup", -"regexp","restful","cloud","assertion","@sindresorhus/tsconfig","s3","storage","@babel/preset-flow","view","postgresql", -"parents","pdf","line","argument","strip","bash","engine","@semantic-release/release-notes-generator","@swc/jest", -"property","character","templating","upload","enforce","entity","es5","quality","code style", -"@typescript/native-preview","replace","exec","local","commonmark","jpeg","application","@types/jasmine", -"karma-launcher","@ckeditor/ckeditor5-link","@ckeditor/ckeditor5-paragraph","@ckeditor/ckeditor5-widget", -"@istanbuljs/nyc-config-typescript","@jsonforms/core","@npmcli/run-script","abort-controller","argparse","axe-core", -"babel-plugin-external-helpers","babel-plugin-transform-es2015-modules-commonjs","babel-types","boxen","bunyan", -"consola","conventional-changelog-conventionalcommits","cookie-signature","css-minimizer-webpack-plugin", -"dependency-check", -"detect-indent","download","encodeurl","es-check","eslint-config-oclif","eslint-config-react-app","eslint-config-xo", -"eslint-plugin-jsonc","fast-check","faucet","file-type","fixturify","flux","get-stdin","get-tsconfig","grunt-jscs", -"gulp-less","happy-dom","has-symbols","jackspeak","jest-worker","karma-sinon","lodash.merge","markdown-it-container", -"mobx","monitor","node-sass","nprogress","nx","object-inspect","open-cli","opn","pacote","path-is-absolute","pino", -"pinst","plist","pump","rc-util","react-dev-utils","readline","recast","rollup-plugin-node-globals", -"rollup-plugin-sourcemaps","rollup-plugin-typescript","rsvp","socket.io-client","statuses","strip-bom","tailwind", -"tapable","tar-fs","tslint-config-prettier","uglify-es","unbuild","underscore.string","validate-npm-package-name","web3", -"xmlbuilder","xss","hast-util-from-html","astro","@types/enzyme","@types/lodash-es", -"transpiler","babel-plugin","stylesheet","@web/test-runner-playwright","@babel/plugin-transform-react-jsx", -"contentEditable","yup","@types/sinon-chai","tools","@aws-sdk/client-s3","sqlite","babel-plugin-macros","css-in-js", -"esbuild-loader","menu","stdout","jsonforms","renderengine","uischema","customization","@inquirer/prompts","list", -"state","formatter","JSON","Web","Node","argv","res","accessibility","@xmldom/xmldom","rollup-plugin-postcss","fdir", -"@hono/node-server","reference","webdriverio","patch-package","@opentelemetry/api","@jest/globals","vuejs","angularjs", -"css3","background","service","saucelabs","256","@babel/plugin-proposal-optional-chaining", -"@babel/plugin-transform-object-assign","push","@colors/colors","aws","function","serve-handler","minification", -"rollup-plugin-esbuild","deep","child","@types/prettier","clean","tag","env","mongo","cross-platform","cmd", -"structure","drag","semaphore","nosql","@eslint-community/eslint-plugin-eslint-comments","gif","size","readable", -"file system","@types/rimraf","vector","manager","@types/diff","desktop","headless","slider","@vuepress/types", -"@ckeditor/ckeditor5-adapter-ckfinder","@ckeditor/ckeditor5-autoformat","@ckeditor/ckeditor5-basic-styles", -"@ckeditor/ckeditor5-block-quote","@ckeditor/ckeditor5-ckbox","@ckeditor/ckeditor5-ckfinder", -"@ckeditor/ckeditor5-easy-image","@ckeditor/ckeditor5-essentials","@ckeditor/ckeditor5-indent", -"@ckeditor/ckeditor5-media-embed","@ckeditor/ckeditor5-paste-from-office","@ckeditor/ckeditor5-table", -"@sveltejs/vite-plugin-svelte","acorn-walk","ansis","apidoc","async-listen","async-retry", -"babel-plugin-transform-class-properties","babel-template","basic-auth","bcrypt","brfs","builtin-modules", -"bundle-collapser","busboy","change-case","changelogen","cli-color","columnify","connect-history-api-fallback", -"depcheck","dirty-chai","docco","dot","dumi","duplexer","eclint","ember-cli","es-value-fixtures","es5-ext","es5-shim", -"eslint-config-unjs","eslint-config-xo-lass","eslint-plugin-eslint-comments","eslint-plugin-testing-library", -"eslint-remote-tester", -"find-cache-dir","findup-sync","firebase","flat","follow-redirects","glob-parent","grunt-auto-release", -"grunt-conventional-github-releaser","grunt-simple-mocha","gulp-postcss","gulp-sass","gulp-typescript","hallmark", -"hast-util-to-html","history","html-loader","html-minifier","html-to-text","ionic","jest-canvas-mock", -"karma-browserstack-launcher","karma-detect-browsers","lerna","lodash.template","log-update","loglevel","loose-envify", -"matcha","micromark","mlly","mock-require","mock-stdin","mockery","multer","multimatch","mz","node-html-parser", -"node-notifier","normalize-path","object-keys","os","performance-now","polished","postcss-flexbugs-fixes", -"postcss-nested","postcss-safe-parser","power-assert","property-information","qrcode-terminal","qunitjs","raw-body","rc", -"react-lifecycles-compat","rewire","seedrandom","shallowequal","ssri","stream-assert","stylelint-order","test-runner", -"time-grunt","tiny-lr","typings","uid-safe", -"uiw","untildify","vows","vue-template-compiler","webpack-sources","yeoman-generator","@testing-library/react-hooks", -"anser","zustand","@mui/utils","comma-separated-tokens","hast-util-is-element","icss-utils","tsparticles", -"@vitest/browser-playwright","@types/react-transition-group","core","scaffolding","jwt","luxon","markdown-it-attrs", -"package-manager-detector","operational transformation","ot","real-time","os-name","sass-embedded","selector","custom", -"variables","read-package-up","lightningcss","installed-check","@typescript-eslint/types","@types/ms","google", -"interface","stdin","theme","modal","@types/cors","@npmcli/package-json","Backend","@storybook/addon-actions", -"@size-limit/file","e2e","end-to-end","@types/warning","jest-image-snapshot","kcd-scripts","aria-query","jest-mock", -"particle","uikit","react-ui","flags","content","archive","job","vue-tsc","@types/tar","http2","azure","ajax", -"hash","asynchronous","number","decode","es2017","pretty-hrtime","converter","@faker-js/faker","std-env","rm","select", -"array-back","gzip","ponyfill","mocks","visualization","batch","compare","is-path-inside","filesystem","collection", -"dev","gitlab","unist-builder","@types/vinyl","safe-stable-stringify","oxlint","@ljharb/tsconfig","eslintconfig", -"verify","hint","rules","bumpp","bin","pkg-pr-new","stub","jpg","parent","@modelcontextprotocol/sdk","concat","make", -"inline","@ungap/structured-clone","safe","virtual","element","chrome","package.json","link","reload","scroll","runtime", -"webdriverjs","carousel","gallery","antora","static site","web publishing","decap-cms","@ckeditor/ckeditor5-upload", -"@csstools/css-parser-algorithms","@csstools/css-tokenizer","@emotion/styled","@microsoft/tsdoc", -"@vue/eslint-config-typescript","array.prototype.flatmap","babel-helper-fixtures","babel-plugin-dynamic-import-node", -"babel-plugin-lodash","babel-plugin-transform-es2015-block-scoping","babel-plugin-transform-es2015-template-literals", -"babel-preset-react-app","base64-js","blanket","broccoli-test-helper","bson","buffer-equal", -"case-sensitive-paths-webpack-plugin","clean-webpack-plugin","clear-module","cli-cursor","crypto-browserify","cucumber", -"dargs","dateformat","debounce","decamelize","deep-extend","detect-port","docusaurus","dom-helpers","emotion", -"end-of-stream","envinfo","es6-shim","eslint-config-semistandard","eslint-loader","eslint-plugin-es5","eventemitter2", -"fast-xml-parser","fbjs","figlet","fixpack","fork-ts-checker-webpack-plugin","front-matter","fs-jetpack", -"functions-have-names","fuse.js","fuzzy","gaze","get-package-type","grunt-saucelabs","gulp-autoprefixer","hast-util-raw", -"hast-util-select","hoek","image-size","import-local","ionicons","is-installed-globally","is-promise","isobject", +"gulp-clean-css","gulp-istanbul","gulp-replace","hoist-non-react-statics","identity-obj-proxy","immer","is-stream","js-base64","js-beautify","jshint-stylish","map-stream","markdown-it-anchor","markdown-toc","markdownlint","mocha-junit-reporter","npm-package-arg","nunjucks","on-finished","pixelmatch","plur","proc-log","punycode","querystring","queue","regenerate","rollup-plugin-buble","run-sequence","scheduler","type-is","vary","vue-eslint-parser","wordwrap","yauzl","zuul","rolldown", +"@babel/plugin-syntax-jsx","material design","@types/prop-types","@babel/plugin-transform-flow-strip-types","simple-git-hooks","md","comments","ckeditor","editing","@stackblitz/sdk","@vitest/ui","@types/prismjs","@babel/plugin-external-helpers","icons","@vitest/coverage-istanbul","scaffold","yeoman","@swc/helpers","date","@types/node-fetch","@types/supertest","mui","store","a11y","@storybook/react","@vitejs/plugin-vue","regex","pattern","reporter", +"@types/cross-spawn","@webpack-contrib/eslint-config-webpack","extract","folder","sanitize","streams","utilities","uglify","@commitlint/config-angular","devlop","memory","tree","selenium","react-native-component","rehype-plugin","@babel/plugin-proposal-export-default-from","@babel/plugin-syntax-dynamic-import","@ckeditor/ckeditor5-clipboard","@ckeditor/ckeditor5-heading","@ckeditor/ckeditor5-list","accepts","ansi-regex","arrify","babel-plugin-module-resolver","babel-preset-stage-0","beautify-benchmark", +"bower","buble","caniuse-lite","clipboard","codemirror","colorette","commitlint","configstore","cron","css-tree","d3","date-fns","depd","dtslint","each","eslint-plugin-tsdoc","eslint-scope","esprima","estraverse","evalmd","extract-zip","fastify","grunt-conventional-changelog","gulp-filter","gulp-if","gzip-size","hastscript","he","i18n","i18next","inflection","is-glob","is-plain-obj","is-plain-object","isarray","jest-junit","jest-watch-typeahead","jsesc", +"json-stringify-safe","JSONStream","karma-ie-launcher","lab","less-loader","leven","livereload","lockfile-lint","lodash.clonedeep","markdown-it-emoji","markdown-table","material-ui","md5","mdast-util-to-hast","memory-fs","merge-stream","methods","mockdate","mongoose","node-forge","npm-package-json-lint","object.entries","p-queue","pify","pkg-up","prettier-plugin-organize-imports","range-parser","react-copy-to-clipboard","remarkable","resize-observer-polyfill","rollup-plugin-json","sax","selenium-webdriver", +"serialize-javascript","serve-index","server-destroy","space-separated-tokens","start-server-and-test","three","tinybench","tinycolor2","tough-cookie","uglifyjs-webpack-plugin","uvu","vue-loader","walk-sync","ua-parser-js","react-error-boundary","@jridgewell/trace-mapping","@types/resolve","@babel/helper-module-imports","@babel/plugin-transform-class-properties","@babel/plugin-transform-typescript","toolkit","tinyexec","lunr","properties","tests","@types/mime-types","@emotion/react","API","font", +"configuration","bundle", +"Monorepo","spec","@storybook/addon-links","network","@vitest/browser","unist-util-visit-parents","whatwg","findup","regexp","restful","cloud","assertion","@sindresorhus/tsconfig","s3","storage","@babel/preset-flow","view","postgresql","parents","pdf","line","argument","strip","bash","engine","@semantic-release/release-notes-generator","@swc/jest","property","character","templating","upload","enforce","entity","es5","quality","code style","@typescript/native-preview","replace","exec","local","commonmark", +"jpeg","application","@types/jasmine","karma-launcher","@ckeditor/ckeditor5-link","@ckeditor/ckeditor5-paragraph","@ckeditor/ckeditor5-widget","@istanbuljs/nyc-config-typescript","@jsonforms/core","@npmcli/run-script","abort-controller","argparse","axe-core","babel-plugin-external-helpers","babel-plugin-transform-es2015-modules-commonjs","babel-types","boxen","bunyan","consola","conventional-changelog-conventionalcommits","cookie-signature","css-minimizer-webpack-plugin","dependency-check", +"detect-indent","download","encodeurl","es-check","eslint-config-oclif","eslint-config-react-app","eslint-config-xo","eslint-plugin-jsonc","fast-check","faucet","file-type","fixturify","flux","get-stdin","get-tsconfig","grunt-jscs","gulp-less","happy-dom","has-symbols","jackspeak","jest-worker","karma-sinon","lodash.merge","markdown-it-container","mobx","monitor","node-sass","nprogress","nx","object-inspect","open-cli","opn","pacote","path-is-absolute","pino","pinst","plist","pump","rc-util", +"react-dev-utils","readline","recast","rollup-plugin-node-globals","rollup-plugin-sourcemaps","rollup-plugin-typescript","rsvp","socket.io-client","statuses","strip-bom","tailwind","tapable","tar-fs","tslint-config-prettier","uglify-es","unbuild","underscore.string","validate-npm-package-name","web3","xmlbuilder","xss","hast-util-from-html","astro","@types/enzyme","@types/lodash-es", +"transpiler","babel-plugin","stylesheet","@web/test-runner-playwright","@babel/plugin-transform-react-jsx","contentEditable","yup","@types/sinon-chai","tools","@aws-sdk/client-s3","sqlite","babel-plugin-macros","css-in-js","esbuild-loader","menu","stdout","jsonforms","renderengine","uischema","customization","@inquirer/prompts","list","state","formatter","JSON","Web","Node","argv","res","accessibility","@xmldom/xmldom","rollup-plugin-postcss","fdir","@hono/node-server","reference","webdriverio", +"patch-package","@opentelemetry/api","@jest/globals","vuejs","angularjs","css3","background","service","saucelabs","256","@babel/plugin-proposal-optional-chaining","@babel/plugin-transform-object-assign","push","@colors/colors","aws","function","serve-handler","minification","rollup-plugin-esbuild","deep","child","@types/prettier","clean","tag","env","mongo","cross-platform","cmd", +"structure","drag","semaphore","nosql","@eslint-community/eslint-plugin-eslint-comments","gif","size","readable","file system","@types/rimraf","vector","manager","@types/diff","desktop","headless","slider","@vuepress/types","@ckeditor/ckeditor5-adapter-ckfinder","@ckeditor/ckeditor5-autoformat","@ckeditor/ckeditor5-basic-styles","@ckeditor/ckeditor5-block-quote","@ckeditor/ckeditor5-ckbox","@ckeditor/ckeditor5-ckfinder","@ckeditor/ckeditor5-easy-image","@ckeditor/ckeditor5-essentials", +"@ckeditor/ckeditor5-indent","@ckeditor/ckeditor5-media-embed","@ckeditor/ckeditor5-paste-from-office","@ckeditor/ckeditor5-table","@sveltejs/vite-plugin-svelte","acorn-walk","ansis","apidoc","async-listen","async-retry","babel-plugin-transform-class-properties","babel-template","basic-auth","bcrypt","brfs","builtin-modules","bundle-collapser","busboy","change-case","changelogen","cli-color","columnify","connect-history-api-fallback","depcheck","dirty-chai","docco","dot","dumi","duplexer","eclint", +"ember-cli","es-value-fixtures","es5-ext","es5-shim","eslint-config-unjs","eslint-config-xo-lass","eslint-plugin-eslint-comments","eslint-plugin-testing-library","eslint-remote-tester", +"find-cache-dir","findup-sync","firebase","flat","follow-redirects","glob-parent","grunt-auto-release","grunt-conventional-github-releaser","grunt-simple-mocha","gulp-postcss","gulp-sass","gulp-typescript","hallmark","hast-util-to-html","history","html-loader","html-minifier","html-to-text","ionic","jest-canvas-mock","karma-browserstack-launcher","karma-detect-browsers","lerna","lodash.template","log-update","loglevel","loose-envify","matcha","micromark","mlly","mock-require","mock-stdin","mockery","multer", +"multimatch","mz","node-html-parser","node-notifier","normalize-path","object-keys","os","performance-now","polished","postcss-flexbugs-fixes","postcss-nested","postcss-safe-parser","power-assert","property-information","qrcode-terminal","qunitjs","raw-body","rc","react-lifecycles-compat","rewire","seedrandom","shallowequal","ssri","stream-assert","stylelint-order","test-runner","time-grunt","tiny-lr","typings","uid-safe", +"uiw","untildify","vows","vue-template-compiler","webpack-sources","yeoman-generator","@testing-library/react-hooks","anser","zustand","@mui/utils","comma-separated-tokens","hast-util-is-element","icss-utils","tsparticles","@vitest/browser-playwright","@types/react-transition-group","core","scaffolding","jwt","luxon","markdown-it-attrs","package-manager-detector","operational transformation","ot","real-time","os-name","sass-embedded","selector","custom","variables","read-package-up","lightningcss", +"installed-check","@typescript-eslint/types","@types/ms","google","interface","stdin","theme","modal","@types/cors","@npmcli/package-json","Backend","@storybook/addon-actions","@size-limit/file","e2e","end-to-end","@types/warning","jest-image-snapshot","kcd-scripts","aria-query","jest-mock","particle","uikit","react-ui","flags","content","archive","job","vue-tsc","@types/tar","http2","azure","ajax", +"hash","asynchronous","number","decode","es2017","pretty-hrtime","converter","@faker-js/faker","std-env","rm","select","array-back","gzip","ponyfill","mocks","visualization","batch","compare","is-path-inside","filesystem","collection","dev","gitlab","unist-builder","@types/vinyl","safe-stable-stringify","oxlint","@ljharb/tsconfig","eslintconfig","verify","hint","rules","bumpp","bin","pkg-pr-new","stub","jpg","parent","@modelcontextprotocol/sdk","concat","make","inline","@ungap/structured-clone","safe", +"virtual","element","chrome","package.json","link","reload","scroll","runtime","webdriverjs","carousel","gallery","antora","static site","web publishing","decap-cms","@ckeditor/ckeditor5-upload","@csstools/css-parser-algorithms","@csstools/css-tokenizer","@emotion/styled","@microsoft/tsdoc", +"@vue/eslint-config-typescript","array.prototype.flatmap","babel-helper-fixtures","babel-plugin-dynamic-import-node","babel-plugin-lodash","babel-plugin-transform-es2015-block-scoping","babel-plugin-transform-es2015-template-literals","babel-preset-react-app","base64-js","blanket","broccoli-test-helper","bson","buffer-equal","case-sensitive-paths-webpack-plugin","clean-webpack-plugin","clear-module","cli-cursor","crypto-browserify","cucumber","dargs","dateformat","debounce","decamelize","deep-extend", +"detect-port","docusaurus","dom-helpers","emotion","end-of-stream","envinfo","es6-shim","eslint-config-semistandard","eslint-loader","eslint-plugin-es5","eventemitter2","fast-xml-parser","fbjs","figlet","fixpack","fork-ts-checker-webpack-plugin","front-matter","fs-jetpack","functions-have-names","fuse.js","fuzzy","gaze","get-package-type","grunt-saucelabs","gulp-autoprefixer","hast-util-raw","hast-util-select","hoek","image-size","import-local","ionicons","is-installed-globally","is-promise","isobject", "itwcw-package-analytics","jade","jest-resolve","karma-edge-launcher","karma-qunit","listr2", -"lodash.camelcase","lodash.defaults","lodash.isequal","lodash.memoize","lodash.throttle","lws","memorystream", -"mocha-headless-chrome","mock-property","mssql","mysql2","needle","nodemailer","npm-packlist","npm-registry-fetch", -"npmcli","oas","object-hash","pako","passport","postcss-custom-properties","promise-polyfill","promises-aplus-tests", -"protobufjs","random-words","react-intl","read-pkg","rehype-autolink-headings","remark-preset-github","replace-in-file", -"request-promise","rfdc","rollup-plugin-node-builtins","run-series","sanitize-html","serve-favicon","snazzy", -"stylus-loader","systemjs","testdouble","throttle-debounce","unzip","utf8","validate-commit-msg","vinyl-buffer","vuex", -"wd","webpack-dev-middleware","webpack-node-externals","winston-transport","write-file-atomic","xlsx","yo", -"browserstack","css.escape","csso","enzyme-to-json","ink-docstrap","vuepress","@mui/types","pinia","@inquirer/type", -"borp","@types/react-test-renderer", -"@types/react-copy-to-clipboard","@jridgewell/sourcemap-codec","@standard-schema/spec","material", -"metro-react-native-babel-preset","ant","import-meta-resolve","@jridgewell/remapping","harmony","@sindresorhus/slugify", -"@types/bytes","stringifier","@typescript-eslint/scope-manager","@babel/runtime-corejs3","mri","p-limit","collaboration", -"collaborative","decache","bundlewatch","@types/shelljs","sitemap","stylis","@wojtekmaj/enzyme-adapter-react-17","REST", -"@types/jsonwebtoken","@ctrl/tinycolor","ask","base","confirm","wrap","@swc/cli","@jest/transform","notification", -"prism-react-renderer","spy","readme","Angular","React","Jest","Cypress","oclif","command line","management", -"remark-github","remark-toc","grid","inspect","upath","@storybook/addon-essentials","@vueuse/core","web-components", -"@types/jest-axe","@types/jquery","jest-axe","lz-string","xhr-mock","sade","web components","istanbul-lib-report", -"images","img","password","particles.js", -"particles","jsparticles","xparticles","particles-js","particles-ts","particles.ts","web-design","webdesign","animated", -"jose","extension","uiw-react","react.js","estree-util-to-js","@types/pluralize","blockchain","nestjs","flow", -"client-side","remark-stringify","env-paths","cli-progress","babel-minify","commit","package-json","memoizee", -"babel-plugin-transform-replace-object-assign","model","di","platform","hmr","write","promises-aplus","asset", -"broccoli-plugin","acorn-jsx","equal","es","call-bound","graphics","pkg-types","domhandler","@types/react-is","language", -"multiline","normalize","emit","defu","cookies","qrcode","@types/bun","spawn","optimizer","optimisation","pad","sort", -"arguments","eslint-plugin-yml","assign","key","@vue/compiler-sfc","all-contributors-cli","JavaScript","drop", -"expand","proper-lockfile","editorconfig","installer","sort-package-json","has","expression","doctrine","export", -"@changesets/changelog-github","eslint-plugin-import-x","@types/babel__code-frame","from","sanitization","tap-parser", -"deploy","deployment","fake","get","minipass","min","linux","sprite","streaming","@types/ungap__structured-clone", -"mdast-util-mdx-jsx","attribute","agent","next.js","internationalization","interactive","phone","make-fetch-happen", -"word","document","microservice","monitoring","@types/selenium-webdriver","flow-copy-source","selectors", -"tslint-eslint-rules","es-module-lexer","@angular/compiler","@angular/compiler-cli","@angular/core", -"@ant-design/web3-common","@ant-design/web3-icons","@emotion/css","@inquirer/core","@microsoft/tsdoc-config", -"@mswjs/interceptors","@nx/eslint","@oclif/core","@reduxjs/toolkit","@svgr/webpack","@tinyhttp/app", -"@tsparticles/engine","adm-zip","apollo-cache-inmemory","apollo-client","apollo-link-http","async-validator", -"babel-generator","babel-helper-plugin-test-runner", -"babel-plugin-syntax-jsx","babel-plugin-transform-async-to-generator","babel-plugin-transform-regenerator", -"babel-traverse","backbone","bignumber.js","bl","boom","broccoli-merge-trees","bufferutil","chai-passport-strategy", -"chai-subset","child_process","clear","cli-truncate","connect-redis","create-react-class","cross-fetch","cssesc", -"csv-generate","csv-parse","d3-array","d3-scale","deep-eql","envify","eslint-config-google", -"eslint-config-oclif-typescript","eslint-plugin-ava","eslint-plugin-vitest","faker","fsevents","grunt-contrib-cssmin", -"gts","gulp-clean","gulp-load-plugins","gulp-plumber","hapi","hash-sum","hast-util-to-estree","hbs","http-status-codes", -"imagemin","import-fresh","inferno","interpret","ioredis","jake","jasmine-node","latest-version","lilconfig","listr", -"lodash.assign","lodash.debounce","log4js","long","make-node","memoize-one","method-override","mobx-react","node.extend", -"normalize.css","npm-run-path","optimize-css-assets-webpack-plugin","p-timeout", -"pkg-dir","postcss-custom-media","postcss-modules-local-by-default","posthtml","protractor","rc-tooltip", -"react-hot-loader","read-pkg-up","rechoir","recursive-readdir","rehype-parse","retry","sanitize-filename","semistandard", -"style-to-js","testcontainers","tildify","traverse","typeorm","url-join","user","utils-merge","vercel","verror", -"vue-style-loader","when","word-wrap","xmlhttprequest","xpath","yamljs","yn","yosay","swr","wait-on","synckit", -"@next/env","@pmmmwh/react-refresh-webpack-plugin","@svgr/core","hast-util-whitespace","valibot","oxfmt", -"@types/inquirer","@types/classnames","stylelint-config-recommended","sdk","jsonml.js","@types/react-native","transpile", -"classes","@babel/helper-plugin-test-runner","@babel/plugin-transform-block-scoping", -"@babel/plugin-syntax-import-assertions","@babel/plugin-transform-property-literals", -"@babel/plugin-transform-template-literals","@ckeditor/ckeditor5-enter","color-convert","opencollective-postinstall", -"karma-jasmine-html-reporter","rollup-plugin-istanbul","tokenizer","error-stack-parser","string-argv", -"@types/sinonjs__fake-timers","@types/github-slugger", -"turbo","dot-prop","@types/marked","tooltip","dropdown","popup","variable","@semantic-release/exec","comment-parser", -"superstruct","answer","iterm","promptly","question","zsh","@ionic/eslint-config","@ionic/prettier-config","webapp", -"@jest/test-utils","facebook","snapshot","renderer","strip-indent","loading","busy","idle","highlight","mdx","helper", -"@mdx-js/mdx","git-url-parse","cacache","gfm","Nest","Front-end","Testing","@oclif/prettier-config","req", -"specification","back-end","@storybook/react-webpack5","locate-character","styleguide","rc-motion", -"scroll-into-view-if-needed","@types/qs","dekko","remark-preset-lint-recommended","eslint-config","devalue","mrmime", -"obug","patterns","istanbul-lib-coverage","istanbul-reports","net","particlesjs","particles-bg","particles-bg-vue", -"react-particles-js","react-particles.js","react-particles","vue-particles","ngx-particles", -"angular-particles","particleground","preactjs","confetti","fireworks","fireworks-js","confetti-js","confettijs", -"fireworksjs","canvas-confetti","natural-compare","openapi-types","@rolldown/pluginutils","@tsconfig/node20","pkgroll", -"html2sketch","mdast-util-to-string","remark-directive","@types/hosted-git-info","zx","jamstack","codes","cursor", -"appium","lambda","flatten","object-is","callback","audit","lockfile","automatic","matcher","amazon","private", -"conventional-github-releaser","es7","@babel/plugin-proposal-nullish-coalescing-operator","grunt-template","base64", -"node-gyp-build","encryption","crypt","dependency","injection","speed","microservices","websockets","addon","foreach", -"marked-terminal","box","sync","browsers","@rollup/plugin-buble","multipart","caching","case","address","spinner", -"width","codecov.io","column","options","indent", -"cson","conventional","tempfile","sourcemap","load","cpy","@mdn/browser-compat-data","@swc-node/register", -"rolldown-plugin-dts","minimize","executable","throttle","jsonc-eslint-parser","obj","keys","prop","cleanup","unused", -"packages","@eslint/json","Node.js","walk-back","docker","cms","bitbucket","class","filenamify","ts-jest-resolver", -"@eslint/core","@types/through2","exe","tmp-promise","extensions","es2016","confusing-browser-globals", -"@webpack-contrib/defaults","eslint-remote-tester-repositories","authn","kind-of","@vercel/ncc", -"babel-plugin-transform-define","human","protocol","setimmediate","dequal","detect-libc","worker","look","walking", -"rollup-plugin-serve","wrapper","errors","tsconfig","chai-string","wildcard","globbing","curl","wget", -"connect-livereload","csslint","postcss-runner","retina","neo-async","unist-util-position", -"zwitch","vdom","screenshot","l10n","routing","cluster","driver","vanilla","resize","sql","monorepo","is-docker","emoji", -"micromark-util-types","dir","ipaddr.js","micro","mongodb-memory-server","decorator","rule","pipe","stacktrace-parser", -"clang-format","unix","trim","fastest-levenshtein","registry","resolve.exports","concurrency","graceful","csswg","hot", -"use-sync-external-store","react-native-builder-bob","abstract","remark-plugin","watchpack","mvc","@types/serve-handler", -"serverless","lightbox","netlify","tablet","antora-component","@angular-devkit/schematics","@angular/forms", -"@adobe/css-tools","@csstools/selector-specificity","@emotion/babel-plugin","@fortawesome/fontawesome-svg-core", -"@fortawesome/free-solid-svg-icons","@mdx-js/react","@oclif/plugin-help","@storybook/addon-docs", -"although-line-wall-corn","amqplib","app-root-path","apple-transportation-web3-locate","arrangement-tell-arrange", -"assert-plus","atob","babel-helper-vue-jsx-merge-props","babel-preset-stage-2","babel-preset-stage-3", -"base-individual-comfortable-crop","bcryptjs","believed-usually-greater-passage","best-lips-shoulder","best-valley2", -"between-cry-additional","bfj","blockchain-am5","blockchain-baby","blockchain-back1","blockchain-closely", -"blockchain-directly","blockchain-egg","blockchain-happily","bn.js","branch-camera-web3-organization","broccoli-funnel", -"brought-tried-whether8","browserify-shim","careful-faster-dirty-matter","caught-brain-service0", -"chance-able-necessary-bell","cli-boxes","cli-spinners","command-line-args","command-line-usage","cookie-session", -"croner","crypto-js","d3-shape","dance-you-thou","decompress","depth-clay-tax7","did-enter-lay", -"difference-mile-pocket5","escodegen","eslint-plugin-sonarjs","eslint-plugin-svelte","excellent-difficult-good", -"extend-shallow","gentle-party-other","graph-these","grunt-sass","gulp-flatten","gulp-newer","gulp-watch", -"hard-cool-rhythm-continued","has-parts-ice-fact","hast-util-to-text","hit-running-special8","html-dom-parser", -"html-escaper","http-proxy-agent","http-proxy-middleware","ip","isomorphic-fetch","jodit","js-cookie", -"json-stable-stringify","jsonfile","jwt-decode","karma-phantomjs-launcher","keypress","keyv", -"known-css-properties","koa-compose","label-lungs-court4","language-perfectly-blow-series","late-dress-mail5", -"lead-alike-web3-applied","level","lodash.uniq","luck-rubber-do","manifest","many-favorite6","markdown-to-jsx", -"matter-view-web3-fence","mdn-data","memcached","metalsmith","missing-sport-living","movie-obtain-tail-prepare","mqtt", -"mud-slowly-five3","nails-wild-interest-garden","nightwatch","nine-yes-merely6","node-emoji","node-pty","npmlog","nsp", -"numeral","observe-food-motion-hidden","one-how-hand","outline-slowly","passport-strategy","phonegap", -"pitch-somehow-earth-brave","political-plan-careful","postcss-calc","postcss-discard-comments","prepare-package", -"prettier-plugin-jsdoc","prettyjson","publish-please","react-app-polyfill","react-color","react-dnd", -"react-dnd-html5-backend","react-intersection-observer","react-styleguidist","react-toastify","rehype-slug", -"remark-html","require-dir","reselect","resolve-url-loader","rtlcss","science-knowledge-truth","serialport","sha1", -"sick-typical-court7","similar-cheese-loss","sink-rod-lamp","sky-buy-web3-rock","slice-ansi","slug", -"speech-section-part-frozen", -"spirit-labor-cheese","sprintf-js","ssh2","star-location","stock-independent-balloon","stylelint-scss", -"sun-grass-circle0","supervisor","support-vessels-web3-vessels","surrounded-characteristic-or-rain","svelte-check", -"svelte-preprocess","svg-sprite","swam-darkness-weak","tailwind-merge","testcafe","throw-did-darkness4","tinyspy", -"traffic-carry-opinion","tribe-leaving-basket","twitter","useragent","webpack-hot-middleware","webpack-manifest-plugin", -"zone.js","supports-hyperlinks","@enact/core","react-textarea-autosize","perfect-scrollbar","@docusaurus/core", -"@vuepress/shared-utils","client-only","color-string","docsify","docsify-cli","inferno-vnode-flags","nth-check", -"postcss-modules-values","react-fast-compare","react-popper","wait-for-expect","widest-line","@applitools/utils", -"colord","@floating-ui/react","@appium/types","css-what","unplugin","devDependencies","tsconfck","sass-true", -"react-draggable","eslint-plugin-cypress","@ant-design/tools","react native","@ant-design/icons","set-cookie-parser", -"@types/set-cookie-parser","js-tokens","@babel/helper-validator-identifier","@babel/helpers", -"@babel/helper-compilation-targets","markdown-it-abbr","@vue/server-renderer", -"blog","asyncapi","babel-plugin-polyfill-corejs3","babel-plugin-polyfill-regenerator","derequire", -"@babel/plugin-transform-arrow-functions","@babel/plugin-transform-private-methods", -"@babel/plugin-proposal-private-property-in-object","@babel/plugin-transform-member-expression-literals", -"stylelint-config-standard-scss","transport","@fortawesome/fontawesome-free","user interface","@ckeditor/ckeditor5-undo", -"vue.js","polka","@docsearch/js","clean-css-cli","matches","vars","has-ansi","@types/luxon","@types/progress", -"chai-exclude","markdown-it-sup","quick-lru","ts-dedent","@types/markdown-it-attrs","markdown-it-testgen", -"eslint-formatter-pretty","threads","selfsigned","workerpool","@types/express-session","@dnd-kit/core", -"@dnd-kit/sortable","@dnd-kit/utilities","@emotion/serialize","@emotion/cache","@emotion/is-prop-valid","mark.js", -"@cypress/webpack-preprocessor","@types/lunr","@types/styled-components","@types/webpack-env","license-checker", -"JSON-Schema","@floating-ui/dom","popover","boilerplate","class-validator","mute-stream","answers","inquire", -"@rollup/plugin-virtual","pwa","@istanbuljs/schema","jest-validate","mocking","indicator","picker","serializer", -"@rushstack/heft","@types/aws-lambda", -"design system","strict-event-emitter","express-fileupload","@headlessui/react","ethereum","libnpm","@zkochan/js-yaml", -"tcp-port-used","@types/proxyquire","@oclif/test","@types/ejs","@types/pnpapi","@types/supports-color","esno", -"otterhttp","stack-utils","specifications","specs","babel-preset-minify","gauge","console-control-strings","interfaces", -"eslint-plugin-storybook","@storybook/addon-interactions","slice","is-reference","esbuild-register","@storybook/icons", -"style guide","rc-tabs","rc-tree","@types/jest-image-snapshot","fetch-jsonp","jest-puppeteer","rc-tween-one", -"react-fast-marquee","remark-lint","stylelint-declaration-block-no-ignored-properties","vanilla-jsoneditor", -"@types/tinycolor2","@ava/typescript","@stylistic/eslint-plugin-js","@svitejs/changesets-changelog-github-compact", -"@types/cookie","vite-plugin","collections","widget","istanbul-lib-source-maps","rollup-plugin-filesize","header", -"@eslint-community/regexpp","mdast-util-mdx","@typescript-eslint/rule-tester","@typescript-eslint/typescript-estree", -"estree","@types/hoist-non-react-statics","ast-types","webp","avif","babel-plugin-react-compiler","ajv-keywords", -"@umijs/bundler-utils","@umijs/core","@umijs/utils", -"codesandbox","estree-util-visit","file-system-cache","mdast-util-find-and-replace","sucrase","umi","git-repo-info", -"signal","negotiator","fullstack","get-caller-file","silent-error","component library","sequence","@vue/vue3-jest", -"webpackbar","mermaid","@types/css-tree","programmatic","zen-observable","@opentelemetry/sdk-trace-base","apm", -"define-properties","es-abstract","has-strict-mode","asserts","@types/tap","change","prefix","temp-dir","concurrent", -"formdata-node","eslint-config-babel","@babel/plugin-proposal-function-bind","babel-plugin-tester", -"babel-plugin-transform-es2015-arrow-functions","babel-plugin-transform-es2015-classes", -"babel-plugin-transform-es2015-computed-properties","babel-plugin-transform-es2015-destructuring", -"babel-plugin-transform-es2015-parameters","babel-plugin-transform-es2015-shorthand-properties", -"babel-plugin-transform-es2015-spread","babel-preset-flow","esutils","authorization","qunit-extras","ansi-to-html", -"global-modules","c","c++","d3-color","future","@astrojs/check","browserify-transform","heimdalljs","fs-tree-diff", -"mocha-eslint","defined","duplexer2","string_decoder","querystring-es3","stream-browserify","timers-browserify", -"coffeeify", -"baseline-browser-mapping","names","@clack/prompts","mv","byte","foreground-child","camel-case","chai-plugin","scule", -"@rollup/plugin-inject","whatwg-mimetype","jsonlint","vfile-message","ci","opts","toggle","string-length","growl", -"chalk-template","multi","single","emitter","on-headers","deflate","brotli","buffer-from","conf","settings", -"is-unicode-supported","eta","normalize-package-data","source","transfer","move","ES2015","ES2017","data-uri-to-buffer", -"postcss-url","crop","scale","order","postcss-modules-extract-imports","postcss-modules-scope","webpack-plugin", -"cssnano-preset-default","CSS","tokens","guid","id","d3-module","eslint-plugin-no-only-tests", -"eslint-plugin-perfectionist","npm-package-json-lint-config-default","values","destroy","rmdir","in-range","time-span", -"timeout","range","datastructure","stl","productivity","@ffmpeg-installer/ffmpeg", -"jsdoc3","filepath","to-vfile","repository","webpack-stream","richtext","karma-sinon-chai","gulp-tap","pack","pkg", -"setup","bundler","wonderful-fetch","eslint-plugin-json","email","ember-cli-dependency-checker","object.values", -"object.fromentries","promisify","set","characters","yorkie","jslint","eslint-config-xo-space", -"JavaScript Standard Style","code checker","code linter","code standards","policy","standard style","style checker", -"style linter","@tsconfig/node16","eslint-import-resolver-node","eslint-plugin-node-dependencies","@types/stylus", -"nano-spawn","it-is","stream-spec","is-in-ci","fork","@types/node-forge","transformer","loader-runner","symbols", -"unicorn-magic","up","look-up","google-auth-library","@types/request","@electric-sql/pglite","proxy-agent","triple-beam", -"detect-newline","nested","rollup-plugin-livereload","lightweight","devops","ssh","tasks","remote","mini-svg-data-uri", -"mkdir","create", -"monaco-editor","yeoman-test","yeoman-assert","tcp","onetime","typed","spreadsheet","@types/yargs-parser", -"@sindresorhus/is","uri","site","hooker","grunt-coveralls","grunt-istanbul","report","notify","preprocess","spritesmith", -"spritesheet","gulp-plugin","stat","istanbul-coveralls","index","stream-combiner2","vinyl-file","@types/fancy-log", -"stack","yazl","grunt-contrib-qunit","typeof","solid","abbrev","@types/source-map-support","compressor", -"rollup-plugin-polyfill-node","bunchee","eslint-plugin-unused-imports","status","titleize","localization","iconv", -"charset","scalable","align","@ionic/utils-fs","@types/split2","hybrid","braces","babel-plugin-annotate-pure-calls", -"@types/escape-html","@rspack/core","@types/babel__traverse","serial","current-module-paths","karma-preprocessor", -"os-homedir","escalade","tedious","oracledb","prettier-standard","stdlib","defaults","update","math", -"sqlserver","@types/which","postcss-simple-vars","markdown-it-plugin","mdast-util-gfm","mime-db","ufo","reactive", -"gulp-coveralls","ender","remark-preset-remcohaszing","aws4","dashboard","then","@types/plist","@types/xml2js", -"@types/proper-lockfile","postman","@matteo.collina/tspl","oauth2","fp","throat","@types/ini","mutate-fs","run","script", -"module-alias","home","metadata","page","pdfjs-dist","npm-watch","postcss-reporter","caniuse-api","postcss-less", -"cssnano-utils","serialization","gulp-clang-format","vrsource-tslint-rules","synchronous", -"eslint-import-resolver-webpack","title","spring","osx","message","mouse","string-hash","clean-publish","tiny", -"@vitest/expect","empathic","@polka/compression","jest-preset-stylelint","slideshow","streamx","@vue/shared", -"@vue/devtools-api","@phenomnomnominal/tsquery","device","tsparticles-plugin","@walletconnect/types", -"apollo-link-context","hex","netlify-cms", -"@angular/cdk","@angular/platform-browser","@csstools/media-query-list-parser", -"@csstools/postcss-progressive-custom-properties","@emotion/core","@floating-ui/react-dom", -"@fortawesome/react-fontawesome","@grandlinex/core","@hapi/hapi","@ionic/core","@jest/core","@jsonforms/react", -"@middy/core","@mui/system","@npmcli/map-workspaces","@npmcli/node-gyp","@nx/node","@nx/workspace","@otterhttp/cookie", -"@sveltejs/kit","@testing-library/cypress","@tinyhttp/cookie","@tinyhttp/req","@uiw/react-icon","@uiw/utils", -"@vitejs/plugin-legacy","acl","anyway-south-boy-pilot","api-console","apollo-link","awesome-typescript-loader", -"babel-plugin-import","babel-plugin-named-asset-import","babel-plugin-syntax-dynamic-import", -"babel-plugin-transform-react-jsx","babel-preset-stage-1","blockchain-language","blockchain-own8","blockchain-record", -"blockchain-scientist","btoa","built-who-entire","caniuse","chance","child-process-promise","clipboardy","cliui", -"consolidate","create-hash","css-select","cssstyle","csvtojson","daisyui","discord.js","dmd","dockerode", -"dom-serializer","dompurify","doxdox-core","doxdox-parser-jsdoc","doxdox-renderer-bootstrap","doxdox-renderer-json", -"doxdox-renderer-markdown","echarts", -"enzyme-shallow-equal","es6-promisify","facing-cook","fair-tower-web3-store","fetch-mock","fibers","font-awesome", -"forever","formik","friendly-errors-webpack-plugin","ftp","ghooks","gm","grunt-jsdoc","grunt-notify","gulp-browserify", -"gulp-bump","gulp-connect","gulp-data","gulp-git","gulp-jasmine","gulp-minify-css","gulp-rev","gulp-size","gulp-stylus", -"gulp-tslint","hammerjs","has-flag","heapdump","helmet","history-brass-sound","hogan.js","html-element-attributes", -"html-encoding-sniffer","html-minifier-terser","html-react-parser","html-tags","html-validate","imagemin-pngquant", -"immutability-helper","inline-style-parser","inside-throw","intl","is-url","jest-extended","jest-pnp-resolver","jimp", -"jotai","json-server","jszip","keycode","leftpad","libnpmexec","lit-element","load-grunt-config","lowdb","multiparty", -"nano","natural","newman","nib","node-cache","node-mocks-http","node-schedule", -"node-watch","npm-check-updates","nvm","optionator","osenv","passport-oauth2","phantom","pnpm","popper.js", -"postcss-custom-selectors","postcss-html","postcss-nesting","postcss-normalize","prisma","qr-image","query-string", -"randombytes","rc-slider","react-docgen","react-helmet","react-hook-form","react-icons","react-property", -"react-responsive","react-scripts","react-tools","recently-building-save","recompose","rehype-raw","rx", -"salt-type-oldest-faster","shinning-continued-becoming","showdown","soap","stack-trace","statsd","stream-transform", -"stringify-entities","stripe","style-to-object","styled-jsx","stylehacks","superjson","swagger-autogen", -"systeminformation","testem","tinymce","tinypool","tocbot","turndown","typescript-formatter","ultrahtml","url-parse", -"urllib","vasync","vhost","vue-class-component","vue-i18n","workbox-webpack-plugin","world-toy-kill","wrench","xml2json", -"yeoman-environment","void-elements", -"sortablejs","fontsource","@mantine/store","@antora/logger","@vuepress/markdown","@vuepress/plugin-register-components", -"@vuepress/plugin-search","broccoli","character-entities","character-entities-legacy","escape-goat","html-void-elements", -"vitefu","webdriver-manager","@expressots/shared","cssfilter","eslint-plugin-react-refresh","gulp-jsdoc3","pagefind", -"remeda","lefthook","embla-carousel","@csstools/css-calc","@inquirer/figures","@inquirer/confirm", -"@csstools/css-color-parser","shadcn","@appium/support","@appium/logger","chrome-launcher","@types/react-redux", -"@types/react-router-dom","cdk","kit","xhr2","lodash.mergewith","react-native-web","@types/lodash.mergewith", -"@auth/core","@sveltejs/package","sveltekit","fs-readdir-recursive","@babel/template","@babel/plugin-syntax-flow", -"@types/convert-source-map","@babel/helper-fixtures","@iarna/toml","zod-validation-error","jekyll","lit-html", -"@web/dev-server","@babel/plugin-syntax-decorators","object.getownpropertydescriptors","core-js-compat", -"@babel/helper-validator-option","@babel/plugin-transform-for-of","@babel/plugin-transform-classes", -"@babel/plugin-transform-modules-amd","@babel/plugin-syntax-import-attributes", -"@babel/plugin-transform-class-static-block","@babel/plugin-transform-object-rest-spread", -"@babel/plugin-transform-export-namespace-from","@babel/plugin-transform-exponentiation-operator", -"@babel/plugin-transform-async-generator-functions", -"@babel/plugin-transform-nullish-coalescing-operator","@babel/plugin-transform-react-display-name","clone-deep", -"@apidevtools/json-schema-ref-parser","markdown-it-task-lists","swagger-ui-dist","rollup-plugin-peer-deps-external", -"feed","ckeditor5-dll","@ckeditor/ckeditor5-integrations-common","@ckeditor/ckeditor5-editor-balloon", -"@ckeditor/ckeditor5-font","@ckeditor/ckeditor5-editor-multi-root","@commitlint/types","graph","actor", -"hammer-simulator","karma-coverage-istanbul-reporter","stylelint-config-twbs-bootstrap","genversion","stream-to-string", -"@types/mock-fs","markdown-it-deflist","jest-serializer-html","terminal-link","@discordjs/collection","discord", -"generated","@octokit/core","@types/json-stringify-safe","@types/chalk","@types/tar-stream","@types/formidable", -"@dnd-kit/modifiers","mixin","@tsconfig/node22","@types/lodash.camelcase","@emotion/hash","find-root", -"@definitelytyped/dtslint","swagger2openapi","@types/mark.js","OpenAPI","use-isomorphic-layout-effect","fontawesome", -"@docusaurus/utils","remove-files-webpack-plugin","@hapi/accept","@hapi/code","@hapi/lab","ajv-errors", -"class-transformer","effect","typanion","vest","vite-tsconfig-paths","@inquirer/ansi","@types/mute-stream","hyper", -"scaffolder","capacitor","progressive web app","@jest/test-result","jest-config", -"@types/object-hash","multipipe","tasklist","calendar","react-hooks","styling","@microsoft/api-documenter","JSDoc", -"TSDoc","declaration","dts","tsdoc-build-rig","Lambda","Middleware","Serverless","Framework","AWS","AWS Lambda", -"@types/superagent","socket.io-parser","@mdx-js/loader","react-helmet-async","hast-util-heading-rank","ethers","hardhat", -"@types/bn.js","@npmcli/installed-package-contents","@npmcli/redact","npm-pick-manifest","walk-up-path", -"@npmcli/mock-registry","workspaces","@npmcli/promise-spawn","innertext","similarity","@oclif/plugin-plugins", -"fancy-test","madge","header-range-parser","@types/http-proxy","@types/nock","commit-and-tag-version", -"eslint-plugin-chai-friendly","git-cz","global-jsdom","quibble","@webcomponents/webcomponentsjs", -"google-closure-compiler","widgets","reducer","@types/mkdirp","@tailwindcss/vite","@scalar/build-tooling","@scalar/core", -"fastify-plugin","@sinonjs/commons","@sinonjs/eslint-config","@ant-design/colors","qrcode.react","@babel/eslint-plugin", -"@emotion/server","@qixian.cs/github-contributors-list","@types/gtag.js","@types/jest-environment-puppeteer", -"@types/react-highlight-words","@types/throttle-debounce","antd-img-crop","antd-token-previewer", -"jsonml-to-react-element","rc-footer","rc-virtual-list","react-highlight-words","react-infinite-scroll-component", -"react-resizable","react-sticky-box","stylelint-config-prettier","stylelint-config-rational-order","async-mutex", -"string.prototype.matchall","tsconfig-paths-webpack-plugin","esm-env","@types/connect","webpack-loader","@swc/types", -"@napi-rs/cli","tsc","custom elements","shadow dom","pubsub","@types/content-type","@types/aria-query","jest-in-case", -"redent","rollup-plugin-delete","jest-matcher-utils","regexparam","proxy-addr","ts-api-utils", -"@typescript-eslint/type-utils","micromark-extension-mdxjs","tsc-alias","button","json-schema-to-ts","lit", -"swagger-parser","@ant-design/icons-svg","@makotot/ghostui","animated-scroll-to","dumi-afx-deps","heti","prism-themes", -"react-simple-code-editor","rehype-remove-comments","v8-compile-cache","dumi-assets-types","@types/highlight-words-core", -"@types/lodash.throttle","@umijs/lint","@umijs/plugins","highlight-words-core","static site generator","cryptography", -"decentralized","oracle","@mysticatea/eslint-plugin","dts-bundle-generator","cancel","controller", -"rollup-plugin-node-externals","control","delayed","bow-swam-troops-care","coach-organized-notice", -"crop-birthday-web3-children","face-eventually-bound","grass-dollar-crew-floating","information-fruit-web3-perfect", -"office-deal-mostly1","product-slight-adult-settlers","sentence-won-little-western","speed-wing-eat", -"supper-term-including-snake","truck-hospital-equator-hurt","trunk-darkness-believed-corner", -"typical-recall-industry-exchange","warn-clothing-whose0","weigh-flew-web3-farm","humanize-duration", -"require-from-string","tsify","denodeify","script-loader","screen","@vitejs/plugin-vue-jsx","ali-oss","colorful", -"merge2","p-all","antd-style","@types/pngjs","@types/adm-zip","@antfu/eslint-config","@codesandbox/sandpack-react", -"@ianvs/prettier-plugin-sort-imports","remark-lint-no-undefined-references","unzipper","klaw-sync","portable", -"notifications","apollo-utilities","ts-invariant","symbol-observable","root","portscanner","@appium/tsconfig", -"@types/bluebird","@opentelemetry/resources","constructs","@babel/plugin-syntax-class-properties","@es-shims/api", -"es-shim API","is-buffer","unit testing","eslint-plugin-prefer-arrow","auto","is-builtin-module","sync-exec", -"@vercel/nft","memoize","resolve-cwd","generators","hash-test-vectors", -"sns","dynamodb","grunt-babel","clean-jsdoc-theme","css-selector-parser","conventional-commits-parser", -"eslint-plugin-mocha-no-only","axe","abortcontroller-polyfill","@rollup/plugin-multi-entry","v8flags","babel-code-frame", -"babel-messages","babel-helper-transform-fixture-test-runner","babel-plugin-transform-export-extensions", -"istanbul-lib-instrument","test-exclude","@babel/preset-stage-0","prettier-eslint-cli", -"@babel/plugin-proposal-numeric-separator","@babel/plugin-proposal-optional-catch-binding", -"babel-plugin-check-es2015-constants","babel-plugin-syntax-trailing-function-commas", -"babel-plugin-transform-es2015-modules-umd","babel-plugin-transform-es2015-typeof-symbol", -"@babel/plugin-proposal-private-methods","@types/validator","sinatra","prebuildify","beautify","concat-with-sourcemaps", -"resolve-package-path","universal","isomorphic","@storybook/addon-knobs","@umijs/fabric","@types/readable-stream", -"buffers","falafel","block","loop","deferred","@types/mime","@astrojs/mdx","@astrojs/markdown-remark","border", -"stream-http","os-browserify","vm-browserify","domain-browser","tty-browserify","browserify-zlib","https-browserify", -"constants-browserify","browser-unpack","make-generator-function","window","arraybuffer","flexbox","bump","profiler", -"@babel/plugin-syntax-typescript","@vitest/spy","ttl", -"get-intrinsic","call","bind","dash","pascal-case","support","prebuild-install","graphic","assertions","contains", -"param-case","charts","domutils","@types/whatwg-mimetype","htmlparser","scraper","@types/faker", -"@ckeditor/ckeditor5-theme-lark","eslint-config-medikoo","git-list-updated","github-release-from-cc-changelog", -"prettier-elastic","spinners","tabular","lerna-changelog","limit","@yarnpkg/fslib","ignore-walk","@codemirror/view", -"@codemirror/state","@codemirror/commands","@codemirror/language","wcwidth","typical","listener","@types/shell-quote", -"eslint-config-flat-gitignore","persist","persistent","session","@types/normalize-package-data","preset", -"@types/serialize-javascript","ES5","ES7","ES2016","Observable","file-system","contents","http2-wrapper","stream-array", -"optimization","schedule","@stryker-mutator/core","jsr","zoom","path-key","execute","fast-json-stable-stringify", -"flatted","@rollup/plugin-dynamic-import-vars","functions","boolbase","lexer", -"@domenic/eslint-config","csrf","duration","stacktrace-js","serialize-error","ansi-html","hasha","request-progress", -"d3-time","d3-time-format","tailwind css","nuxt","bun","jscodeshift","typedoc-plugin-missing-exports","gzip-size-cli", -"limited","rate","debugger","lcov-result-merger","is-regex","which-typed-array","folders","directories","rmrf", -"random-int","is-core-module","space","tshy-after","patch","java script","type script","edge","traversal","sorting", -"structures","data structure","data-structure","data structures","datastructures","data-structures","in data structures", -"in data structure","DataStructure","DataStructures","CommonJS","UMD","esmodule","java.util","c++ stl","c++ std", -"Python collections","System.Collections.Generic","STL","Collection","Collections","OOP","bot","dnd","rpc", -"@grpc/grpc-js","dependency-cruiser","tunnel","imagemin-svgo", -"imagemin-jpegtran","open source","karma-html2js-preprocessor","simple-update-notifier","dox","eslint-config-fbjs", -"just-extend","parcel","tsutils","iteration","apache","grunt-run","grunt-webpack","@electron/get","packager", -"grunt-banner","babel-plugin-transform-vue-jsx","launch-editor-middleware","broccoli-concat","broccoli-debug", -"broccoli-source","broccoli-stew","console-ui","ensure-posix-path","heimdalljs-logger","eslint-plugin-chai-expect", -"release-plan","broccoli-babel-transpiler","ember-cli-inject-live-reload","loader.js","eslint-plugin-qunit", -"safe-regex-test","info","string.prototype.trim","@types/isarray","regular","esquery","imurmurhash","babel-tape-runner", -"airbnb","es2018","strict","eslint-typegen","@types/lodash.memoize","@types/eslint-scope","array-includes","npm-which", -"typescript-eslint-parser","jsdoc-type-pratt-parser","json-schema-to-typescript","open-editor", -"@ota-meshi/eslint-plugin","@ota-meshi/site-kit-eslint-editor-vue","env-cmd","eslint-plugin-json-schema-validator", -"vite-plugin-eslint4b","axobject-query","@tsconfig/strictest","refa","scslre","@types/less","find-up-simple", -"xml-name-validator","karma-tap", -"eval","ubelt","emits","subscribe","yoctocolors","merge-descriptors","automatically","token", -"@docusaurus/preset-classic","handler","endpoint","@types/yauzl","parse-node-version","ajv-i18n","autocannon", -"babel-plugin-styled-components","array.prototype.map","colorpicker","symbol","blob","uint8array-extras","picture", -"photo","bmp","epub","otp","locate-path","@fastify/busboy","admin","async-lock","zod-to-json-schema","byline", -"inference","prettier-plugin-tailwindcss","lolex","fault tolerant","sysadmin","browserify-istanbul","tsdx","conditional", -"universalify","klaw","mac","ie","socket","iterator","dir-compare","eslint-config-tschaub","hook","globs","gitignore", -"eslint-config-standard-with-typescript","ky","@types/ncp","@graphql-tools/schema","temporary","release","newer", -"notify-send","libsass","sauce-tunnel","grunt-mocha-cli","@types/write-file-atomic","pipeline", -"transformation","codegen","utf-8","from2-string","include","relative","prettify","jsftp","stream-to-array","htmlmin", -"@types/gulp","inject","scripts","gulplog","has-gulplog","kew","restart","sort-keys","sourcemaps","measure","hook-std", -"source maps","@types/through","uncss","array-differ","beeper","zlib","remark-lint-blockquote-indentation", -"remark-lint-checkbox-character-style","remark-lint-checkbox-content-indent","remark-lint-code-block-style", -"remark-lint-definition-case","remark-lint-emphasis-marker","remark-lint-fenced-code-marker", -"remark-lint-no-duplicate-definitions","remark-lint-no-heading-content-indent","remark-lint-rule-style", -"remark-lint-strong-marker","remark-lint-table-cell-padding","remark-lint-table-pipes", -"remark-lint-unordered-list-marker-style","bounce","elements","flag","raw","mdast-util-mdxjs-esm","util-deprecate", -"@size-limit/preset-big-lib","pojo","unescape","relateurl","packer","uglifier","tags","void","plain","duplex","singular", -"plural","dasherize","singularize","translation","globalization","safer-buffer", -"spawn-sync","resolution","lazy","inferno-shared","user interfaces","react-devtools-core","telephone","elementtree", -"@ionic/utils-array","@ionic/utils-terminal","@types/elementtree","@types/svgo","is-object","esmock","jasmine-reporters", -"@jest/environment","@jest/environment-jsdom-abstract","eslint-webpack-plugin","web-vitals","plugnplay","pnp", -"@types/babel__template","preact-render-to-string","rich editor","rich text editor","contenteditable","rte", -"grunt-compare-size","grunt-exec","package-directory","decimal.js","cssom","stable","lie","karma-adapter","keyboard", -"timekeeper","lru","pg-connection-string","better-sqlite3","smol-toml","analysis","body","route","set-blocking", -"conventional-recommended-bump","conventional-changelog-angular","multi-package","less.js","run-parallel", -"fast-levenshtein","algorithm","edit","faye-websocket","resolve-pkg","lock","bar","SVG","mdast-util-to-markdown","baas", -"eslint-config-next","context","anchor","emoticon", -"heading","esbuild-plugin-umd-wrapper","markup","checksum","decode-named-character-reference","micromark-extension-gfm", -"tiny-glob","efficient","sorted","pidtree","distributed","basic-auth-connect","@esm-bundle/chai","email-validator", -"double","@aws-sdk/s3-request-presigner","profiling","enqueue","devtools-protocol","jsdom-global","container","iot", -"rfc4122","jQuery","@types/update-notifier","typescript-json-schema","@readme/oas-examples","apis","openapi initiative", -"openapi specification","openapi spec","openapi document","oai","Object.keys","ES8","launch","start","xdg","default", -"urls","tmpdir","scrollbar","ratelimit","aria","server-side","babel-plugin-transform-inline-environment-variables", -"fastbench","pino-pretty","strong-pm","@csstools/utilities","@types/caniuse-api","@csstools/cascade-layer-name-parser", -"flex","postcss-syntax","humanized","exception","danger","curried","words","@rc-component/father-plugin","rc-test", -"chai-spies","@babel/plugin-proposal-do-expressions","form-validation", -"live","eslint-plugin-jest-dom","observer","dialog","transition","@react-native/eslint-config","premove","multiselect", -"toast","tiny-invariant","composition","eslint-config-remcohaszing","snapshot-fixtures","hast-util-from-html-isomorphic", -"cls-hooked","shutdown","deep-copy","fast-copy","sourcemap-validator","@types/babel__generator", -"@types/express-serve-static-core","@types/text-table","@types/ua-parser-js","async-sema","server-only","Rx","RxJS", -"p-retry","fast-safe-stringify","favicon","encrypt","@vitest/mocker","bundle-require","@discoveryjs/json-ext", -"@storybook/blocks","visual","full","cjk","chinese","japanese","korean","utf-8-validate","stylelint-plugin", -"playwright-chromium","swipe","telegram","chroma-js","es8","testcafe-reporter-xunit","dprint", -"eslint-config-xo-typescript","material-design","hookable","bail","user-agent","sanitisation","viewer","strip-literal", -"postcss-modules","@oxc-project/types","sauce-connect-launcher","chart","RFC-6455","break", -"fflate","unminified-webpack-plugin","@yeoman/adapter","@types/webpack-bundle-analyzer","@vitejs/plugin-react-swc", -"rollup-plugin-vue","katex","@storybook/addon-a11y","preview","fs-fixture","intlayer","accessible","parcel-bundler", -"@walletconnect/utils","replacement","react-native-svg","@codecov/vite-plugin","@theuiteam/lib-builder","applitools", -"test automation","visual regression","@arethetypeswrong/core","expressive-code","@trpc/server","ai","openai", -"@types/pg","@applitools/logger","@angular-devkit/core","@angular/animations","@angular/common","@angular/material", -"@angular/platform-browser-dynamic","@11ty/eleventy","@asyncapi/generator-react-sdk","@csstools/postcss-is-pseudo-class", -"@cucumber/cucumber","@discordjs/rest","@doc-tools/transform","@idux/cdk","@isaacs/cliui","@mantine/core", -"@mantine/hooks","@mantine/notifications","@mantine/utils","@middy/util","@mui/icons-material","@mui/material", -"@mui/x-date-pickers","@ng-doc/core","@nomicfoundation/hardhat-chai-matchers","@oclif/config","@otterhttp/request", -"@otterhttp/send","@scalar/api-reference","@tanem/svg-injector","@tanstack/react-query","@testing-library/jest-native", -"@tinyhttp/cookie-signature","@tinyhttp/cors","@tinyhttp/etag","@tinyhttp/forwarded","@tinyhttp/proxy-addr", -"@tinyhttp/res", -"@tinyhttp/router","@tinyhttp/send","@tinyhttp/type-is","@tinyhttp/url","@udecode/plate-core","@uiw/react-button", -"@uiw/react-input","@uiw/react-overlay-trigger","@wesleytodd/openapi","action-cli","aid-guard1","amqp", -"analsorhost-simple-bs","angular-cli","angular-material","apn","babel-plugin-transform-decorators-legacy","baqend", -"bark-needs-visit4","bip39","bizcharts","blessed","bootstrap-sass","branch-body-web3-feel","bs58","bulma","bytebuffer", -"cache-manager","chicken-fell-spread","cli-spinner","cli-table2","cli-ux","clui","command-exists","component-emitter", -"corcojs-qrcode","crawler","crc","critical","cronnor","css-functions-list","cssdb","csurf","csv-stringify", -"d3-selection","deasync","dedupe","deep-diff","diff2html","dist","distance-its-clear-rate","doc-detective-core", -"documentdb","doxdox-cli","dropzone","dubnium","elasticsearch","electricity-death-web3-story","electron-packager", -"element-resize-detector","eleventy","elliptic","ember-cli-babel","ember-cli-htmlbars", -"emmet","enzyme-adapter-utils","errorhandler","es6-error","eslintrc","ethereumjs-util","fastclick", -"feature-rising-small7","firan-logging","flowbite","fluent-ffmpeg","fresh-dangerous","fstream","fur-race-web3-pale", -"generic-pool","getmac","gmll","googleapis","government-letter-web3-till","gradually-current-chief","grunt-concurrent", -"grunt-contrib-csslint","grunt-contrib-less","grunt-newer","grunt-usemin","guarapi","gulp-buffer","gulp-changed", -"gulp-concat-css","gulp-cssnano","gulp-csso","gulp-gh-pages","gulp-htmlmin","gulp-imagemin","gulp-inject","gulp-jscs", -"gulp-json-editor","gulp-notify","gulp-shell","gulp-tsb","gulp-usemin","gulp-vinyl-zip","gulp-webserver","gulp-zip", -"happy-meant","hast-util-sanitize","hast-util-to-jsx-runtime","hay-against-any-hurry","hexo","highland", -"hope-slight-walk1","http-status","hyperquest","hyphenate-style-name","i","imagemagick","imap","inert","ink", -"is-potential-custom-element-name","iview","johnny-five","jscpd","jsdoc-api", -"json-2-csv","knex","koa-static","leveldown","levelup","libnpmdiff","libnpmfund","liftoff","live-server", -"local-web-server","localforage","localtunnel","lodash.flatten","lodash.isplainobject","lodash.isstring","lodash.map", -"loopback","magmastream","mammoth","memory-cache","meteor","mockjs","monk","motor-positive-spirit", -"move-wolf-throughout","multiple-cucumber-html-reporter","nativescript","nedb","next-auth","ngrok","nightmare", -"node-dir","node-inspector","node-pre-gyp","node-static","node-uuid","nolangjs","nomnom","normalize-wheel","npm-check", -"nuke-cli","nvmrc","oas-normalize","object-path","onchange","opencv","orchestrator","overlayscrollbars","pa11y", -"para-client-js","pdfkit","pie-case-nor-great","pm2","postcss-color-functional-notation","postcss-image-set-function", -"postcss-prefix-selector","pouchdb","prettier-plugin-svelte","pretty-error","progress-bar-webpack-plugin","purgecss", -"quill","qunit-dom","raven", -"react-bootstrap","react-datepicker","react-dropzone","react-error-overlay","react-i18next","react-native-vector-icons", -"react-number-format","react-slick","react-tap-event-plugin","react-virtualized","reactstrap","redoc","redux-form", -"redux-logger","redux-thunk","rehype-external-links","remap-istanbul","request-promise-native","require-all","restify", -"restore-cursor","robotjs","routes","sails","sand-have-metal6","sat-local","seblakhotspicy","secp256k1","sentiment", -"shortid","sink-mighty-orbit0","slow-voice-spell-pass","small-grow-mix4","snake-seven-recall-interior","sockjs-client", -"spring-dust-wall-size","sprity","st.db","strftime","strongloop","sugar-policeman-entire","swagger-themes", -"swagger-ui-express","swig","swiper","sync-request","tail-iron-became5","tdl","tinper-bee","toastify-react-native", -"ts-pnp","tslint-react","tv4","typescript-plugin-css-modules","unusual-rope","user-home","victory-mouth","viewerjs", -"vsce","vue-hot-reload-api","waterline","web3-capital","web3-compass","webtorrent", -"winreg","wiredep","xml-js","xregexp","yarnrc","yonode","zmq","@nx/cypress","@nx/jest","framer-motion", -"@mui/styled-engine","jsdoc-parse","@commercetools-frontend/constants","downshift","postcss-focus-visible", -"@jsonforms/vue","rehype-katex","foundation-sites","grommet","html-url-attributes","postcss-opacity-percentage", -"rapidoc","react-native-collapsible","recharts","weui","tstyche","@mantine/code-highlight","@enact/ui","@enact/webos", -"zarm","titanium","@ionic/react","@juggle/resize-observer","@mui/private-theming","@storybook/addon-backgrounds", -"@tinyhttp/encode-url","@tinyhttp/logger","@tsparticles/interaction-external-push","@tsparticles/move-base", -"@tsparticles/shape-emoji","@tsparticles/updater-color","@tsparticles/updater-opacity","@tsparticles/updater-out-modes", -"@vuepress/core","@vuepress/markdown-loader","@vuepress/plugin-active-header-links","@vuepress/plugin-last-updated", -"@vuepress/plugin-nprogress","@vuepress/theme-default","@walletconnect/legacy-modal","ansi-align","blocking-proxy", -"body-scroll-lock","broccoli-middleware","character-entities-html4","character-reference-invalid","dom7","epub2","esdoc", -"globals-docs","hast-util-parse-selector","hast-util-to-parse5","html-parse-stringify","inferno-create-element", -"jasminewd2","jest-preview","lws-index","micromark-util-encode","postcss-js","query-selector-shadow-dom", -"react-colorful","webdriver-js-extender","@antora/playbook-builder","@tsparticles/shape-circle", -"@tsparticles/updater-life","@tsparticles/updater-rotate","plasmo","@expressots/core", -"@tsparticles/interaction-particles-links","@astrojs/starlight","@tsparticles/interaction-external-bounce", -"@tsparticles/interaction-external-remove","@tsparticles/move-parallax","@tsparticles/shape-polygon", -"@tsparticles/shape-square","@tsparticles/shape-image","astro-expressive-code","rehype-expressive-code", -"@augment-vir/assert","@tsparticles/basic","@tsparticles/updater-size","@tsparticles/interaction-external-grab", -"@tsparticles/interaction-particles-collisions","@tsparticles/interaction-external-repulse","@tsparticles/slim", -"@tsparticles/shape-star","kuler","@busy-hour/blaze","payload","@appium/schema","@modern-js/utils","grunt-svgmin", -"@axe-core/playwright","embla-carousel-reactive-utils","globrex","grammy","@tsparticles/plugin-hex-color", -"@tsparticles/plugin-hsl-color","loki","@headlessui/vue","zoroaster","vue-draggable-next", -"@tsparticles/plugin-rgb-color","@storybook/addon-vitest","@csstools/color-helpers","@prisma/dev","@observablehq/plot", -"@applitools/driver","@tsparticles/interaction-external-slow","@tsparticles/shape-line","@testcontainers/postgresql", -"@antora/site-publisher","@inquirer/expand","@inquirer/select","@tsparticles/interaction-particles-attract","animejs", -"lexxy","mapboxgl", -"mongoid","nums","svgs","twbs","jsonp","@types/md5","mochawesome","simulate-event","console-polyfill", -"markdown-it-prism","babel-plugin-espower","es6-promise-polyfill","css-split-webpack-plugin","karma-webdriver-launcher", -"babel-plugin-transform-object-assign","Angular CLI","Angular DevKit","devkit","code generation","rc-field-form", -"utility-types","bisheng","enquire.js","react-github-button","react-document-title","@testing-library/react-native", -"@react-native-community/eslint-config","@sveltejs/adapter-auto","oidc","@babel/helper-transform-fixture-test-runner", -"6to5","charcodes","@babel/helper-module-transforms","const","var","@babel/helper-string-parser", -"@babel/helper-create-class-features-plugin","dependency-graph","please-upgrade-node","static-site-generator", -"static-site","@advanced-rest-client/arc-icons","@advanced-rest-client/arc-marked", -"@anypoint-web-components/anypoint-button","@anypoint-web-components/anypoint-dropdown", -"@anypoint-web-components/anypoint-item","@anypoint-web-components/anypoint-listbox","@api-components/amf-helper-mixin", -"@advanced-rest-client/oauth-authorization","@anypoint-web-components/anypoint-styles", -"@api-components/api-model-generator","@api-components/api-navigation","@api-components/api-request", -"@open-wc/eslint-config","@open-wc/testing","typescript-lit-html-plugin","@graphql-typed-document-node/core","optimism", -"apollo","@asyncapi/parser","decorators","@babel/compat-data","@babel/plugin-transform-parameters", +"lodash.camelcase","lodash.defaults","lodash.isequal","lodash.memoize","lodash.throttle","lws","memorystream","mocha-headless-chrome","mock-property","mssql","mysql2","needle","nodemailer","npm-packlist","npm-registry-fetch","npmcli","oas","object-hash","pako","passport","postcss-custom-properties","promise-polyfill","promises-aplus-tests","protobufjs","random-words","react-intl","read-pkg","rehype-autolink-headings","remark-preset-github","replace-in-file","request-promise","rfdc", +"rollup-plugin-node-builtins","run-series","sanitize-html","serve-favicon","snazzy","stylus-loader","systemjs","testdouble","throttle-debounce","unzip","utf8","validate-commit-msg","vinyl-buffer","vuex","wd","webpack-dev-middleware","webpack-node-externals","winston-transport","write-file-atomic","xlsx","yo","browserstack","css.escape","csso","enzyme-to-json","ink-docstrap","vuepress","@mui/types","pinia","@inquirer/type","borp","@types/react-test-renderer", +"@types/react-copy-to-clipboard","@jridgewell/sourcemap-codec","@standard-schema/spec","material","metro-react-native-babel-preset","ant","import-meta-resolve","@jridgewell/remapping","harmony","@sindresorhus/slugify","@types/bytes","stringifier","@typescript-eslint/scope-manager","@babel/runtime-corejs3","mri","p-limit","collaboration","collaborative","decache","bundlewatch","@types/shelljs","sitemap","stylis","@wojtekmaj/enzyme-adapter-react-17","REST","@types/jsonwebtoken","@ctrl/tinycolor","ask","base", +"confirm","wrap","@swc/cli","@jest/transform","notification","prism-react-renderer","spy","readme","Angular","React","Jest","Cypress","oclif","command line","management","remark-github","remark-toc","grid","inspect","upath","@storybook/addon-essentials","@vueuse/core","web-components","@types/jest-axe","@types/jquery","jest-axe","lz-string","xhr-mock","sade","web components","istanbul-lib-report","images","img","password","particles.js", +"particles","jsparticles","xparticles","particles-js","particles-ts","particles.ts","web-design","webdesign","animated","jose","extension","uiw-react","react.js","estree-util-to-js","@types/pluralize","blockchain","nestjs","flow","client-side","remark-stringify","env-paths","cli-progress","babel-minify","commit","package-json","memoizee","babel-plugin-transform-replace-object-assign","model","di","platform","hmr","write","promises-aplus","asset","broccoli-plugin","acorn-jsx","equal","es","call-bound", +"graphics","pkg-types","domhandler","@types/react-is","language","multiline","normalize","emit","defu","cookies","qrcode","@types/bun","spawn","optimizer","optimisation","pad","sort","arguments","eslint-plugin-yml","assign","key","@vue/compiler-sfc","all-contributors-cli","JavaScript","drop", +"expand","proper-lockfile","editorconfig","installer","sort-package-json","has","expression","doctrine","export","@changesets/changelog-github","eslint-plugin-import-x","@types/babel__code-frame","from","sanitization","tap-parser","deploy","deployment","fake","get","minipass","min","linux","sprite","streaming","@types/ungap__structured-clone","mdast-util-mdx-jsx","attribute","agent","next.js","internationalization","interactive","phone","make-fetch-happen","word","document","microservice","monitoring", +"@types/selenium-webdriver","flow-copy-source","selectors","tslint-eslint-rules","es-module-lexer","@angular/compiler","@angular/compiler-cli","@angular/core","@ant-design/web3-common","@ant-design/web3-icons","@emotion/css","@inquirer/core","@microsoft/tsdoc-config","@mswjs/interceptors","@nx/eslint","@oclif/core","@reduxjs/toolkit","@svgr/webpack","@tinyhttp/app","@tsparticles/engine","adm-zip","apollo-cache-inmemory","apollo-client","apollo-link-http","async-validator","babel-generator", +"babel-helper-plugin-test-runner", +"babel-plugin-syntax-jsx","babel-plugin-transform-async-to-generator","babel-plugin-transform-regenerator","babel-traverse","backbone","bignumber.js","bl","boom","broccoli-merge-trees","bufferutil","chai-passport-strategy","chai-subset","child_process","clear","cli-truncate","connect-redis","create-react-class","cross-fetch","cssesc","csv-generate","csv-parse","d3-array","d3-scale","deep-eql","envify","eslint-config-google","eslint-config-oclif-typescript","eslint-plugin-ava","eslint-plugin-vitest","faker", +"fsevents","grunt-contrib-cssmin","gts","gulp-clean","gulp-load-plugins","gulp-plumber","hapi","hash-sum","hast-util-to-estree","hbs","http-status-codes","imagemin","import-fresh","inferno","interpret","ioredis","jake","jasmine-node","latest-version","lilconfig","listr","lodash.assign","lodash.debounce","log4js","long","make-node","memoize-one","method-override","mobx-react","node.extend","normalize.css","npm-run-path","optimize-css-assets-webpack-plugin","p-timeout", +"pkg-dir","postcss-custom-media","postcss-modules-local-by-default","posthtml","protractor","rc-tooltip","react-hot-loader","read-pkg-up","rechoir","recursive-readdir","rehype-parse","retry","sanitize-filename","semistandard","style-to-js","testcontainers","tildify","traverse","typeorm","url-join","user","utils-merge","vercel","verror","vue-style-loader","when","word-wrap","xmlhttprequest","xpath","yamljs","yn","yosay","swr","wait-on","synckit","@next/env","@pmmmwh/react-refresh-webpack-plugin","@svgr/core", +"hast-util-whitespace","valibot","oxfmt","@types/inquirer","@types/classnames","stylelint-config-recommended","sdk","jsonml.js","@types/react-native","transpile","classes","@babel/helper-plugin-test-runner","@babel/plugin-transform-block-scoping","@babel/plugin-syntax-import-assertions","@babel/plugin-transform-property-literals","@babel/plugin-transform-template-literals","@ckeditor/ckeditor5-enter","color-convert","opencollective-postinstall","karma-jasmine-html-reporter","rollup-plugin-istanbul", +"tokenizer","error-stack-parser","string-argv","@types/sinonjs__fake-timers","@types/github-slugger", +"turbo","dot-prop","@types/marked","tooltip","dropdown","popup","variable","@semantic-release/exec","comment-parser","superstruct","answer","iterm","promptly","question","zsh","@ionic/eslint-config","@ionic/prettier-config","webapp","@jest/test-utils","facebook","snapshot","renderer","strip-indent","loading","busy","idle","highlight","mdx","helper","@mdx-js/mdx","git-url-parse","cacache","gfm","Nest","Front-end","Testing","@oclif/prettier-config","req","specification","back-end","@storybook/react-webpack5", +"locate-character","styleguide","rc-motion","scroll-into-view-if-needed","@types/qs","dekko","remark-preset-lint-recommended","eslint-config","devalue","mrmime","obug","patterns","istanbul-lib-coverage","istanbul-reports","net","particlesjs","particles-bg","particles-bg-vue","react-particles-js","react-particles.js","react-particles","vue-particles","ngx-particles", +"angular-particles","particleground","preactjs","confetti","fireworks","fireworks-js","confetti-js","confettijs","fireworksjs","canvas-confetti","natural-compare","openapi-types","@rolldown/pluginutils","@tsconfig/node20","pkgroll","html2sketch","mdast-util-to-string","remark-directive","@types/hosted-git-info","zx","jamstack","codes","cursor","appium","lambda","flatten","object-is","callback","audit","lockfile","automatic","matcher","amazon","private","conventional-github-releaser","es7", +"@babel/plugin-proposal-nullish-coalescing-operator","grunt-template","base64","node-gyp-build","encryption","crypt","dependency","injection","speed","microservices","websockets","addon","foreach","marked-terminal","box","sync","browsers","@rollup/plugin-buble","multipart","caching","case","address","spinner","width","codecov.io","column","options","indent", +"cson","conventional","tempfile","sourcemap","load","cpy","@mdn/browser-compat-data","@swc-node/register","rolldown-plugin-dts","minimize","executable","throttle","jsonc-eslint-parser","obj","keys","prop","cleanup","unused","packages","@eslint/json","Node.js","walk-back","docker","cms","bitbucket","class","filenamify","ts-jest-resolver","@eslint/core","@types/through2","exe","tmp-promise","extensions","es2016","confusing-browser-globals","@webpack-contrib/defaults","eslint-remote-tester-repositories", +"authn","kind-of","@vercel/ncc","babel-plugin-transform-define","human","protocol","setimmediate","dequal","detect-libc","worker","look","walking","rollup-plugin-serve","wrapper","errors","tsconfig","chai-string","wildcard","globbing","curl","wget","connect-livereload","csslint","postcss-runner","retina","neo-async","unist-util-position", +"zwitch","vdom","screenshot","l10n","routing","cluster","driver","vanilla","resize","sql","monorepo","is-docker","emoji","micromark-util-types","dir","ipaddr.js","micro","mongodb-memory-server","decorator","rule","pipe","stacktrace-parser","clang-format","unix","trim","fastest-levenshtein","registry","resolve.exports","concurrency","graceful","csswg","hot","use-sync-external-store","react-native-builder-bob","abstract","remark-plugin","watchpack","mvc","@types/serve-handler","serverless","lightbox", +"netlify","tablet","antora-component","@angular-devkit/schematics","@angular/forms","@adobe/css-tools","@csstools/selector-specificity","@emotion/babel-plugin","@fortawesome/fontawesome-svg-core","@fortawesome/free-solid-svg-icons","@mdx-js/react","@oclif/plugin-help","@storybook/addon-docs","although-line-wall-corn","amqplib","app-root-path","apple-transportation-web3-locate","arrangement-tell-arrange","assert-plus","atob","babel-helper-vue-jsx-merge-props","babel-preset-stage-2","babel-preset-stage-3", +"base-individual-comfortable-crop","bcryptjs","believed-usually-greater-passage","best-lips-shoulder","best-valley2","between-cry-additional","bfj","blockchain-am5","blockchain-baby","blockchain-back1","blockchain-closely","blockchain-directly","blockchain-egg","blockchain-happily","bn.js","branch-camera-web3-organization","broccoli-funnel","brought-tried-whether8","browserify-shim","careful-faster-dirty-matter","caught-brain-service0","chance-able-necessary-bell","cli-boxes","cli-spinners", +"command-line-args","command-line-usage","cookie-session","croner","crypto-js","d3-shape","dance-you-thou","decompress","depth-clay-tax7","did-enter-lay","difference-mile-pocket5","escodegen","eslint-plugin-sonarjs","eslint-plugin-svelte","excellent-difficult-good","extend-shallow","gentle-party-other","graph-these","grunt-sass","gulp-flatten","gulp-newer","gulp-watch","hard-cool-rhythm-continued","has-parts-ice-fact","hast-util-to-text","hit-running-special8","html-dom-parser","html-escaper", +"http-proxy-agent","http-proxy-middleware","ip","isomorphic-fetch","jodit","js-cookie","json-stable-stringify","jsonfile","jwt-decode","karma-phantomjs-launcher","keypress","keyv", +"known-css-properties","koa-compose","label-lungs-court4","language-perfectly-blow-series","late-dress-mail5","lead-alike-web3-applied","level","lodash.uniq","luck-rubber-do","manifest","many-favorite6","markdown-to-jsx","matter-view-web3-fence","mdn-data","memcached","metalsmith","missing-sport-living","movie-obtain-tail-prepare","mqtt","mud-slowly-five3","nails-wild-interest-garden","nightwatch","nine-yes-merely6","node-emoji","node-pty","npmlog","nsp","numeral","observe-food-motion-hidden","one-how-hand", +"outline-slowly","passport-strategy","phonegap","pitch-somehow-earth-brave","political-plan-careful","postcss-calc","postcss-discard-comments","prepare-package","prettier-plugin-jsdoc","prettyjson","publish-please","react-app-polyfill","react-color","react-dnd","react-dnd-html5-backend","react-intersection-observer","react-styleguidist","react-toastify","rehype-slug","remark-html","require-dir","reselect","resolve-url-loader","rtlcss","science-knowledge-truth","serialport","sha1","sick-typical-court7", +"similar-cheese-loss","sink-rod-lamp","sky-buy-web3-rock","slice-ansi","slug","speech-section-part-frozen", +"spirit-labor-cheese","sprintf-js","ssh2","star-location","stock-independent-balloon","stylelint-scss","sun-grass-circle0","supervisor","support-vessels-web3-vessels","surrounded-characteristic-or-rain","svelte-check","svelte-preprocess","svg-sprite","swam-darkness-weak","tailwind-merge","testcafe","throw-did-darkness4","tinyspy","traffic-carry-opinion","tribe-leaving-basket","twitter","useragent","webpack-hot-middleware","webpack-manifest-plugin","zone.js","supports-hyperlinks","@enact/core", +"react-textarea-autosize","perfect-scrollbar","@docusaurus/core","@vuepress/shared-utils","client-only","color-string","docsify","docsify-cli","inferno-vnode-flags","nth-check","postcss-modules-values","react-fast-compare","react-popper","wait-for-expect","widest-line","@applitools/utils","colord","@floating-ui/react","@appium/types","css-what","unplugin","devDependencies","tsconfck","sass-true","react-draggable","eslint-plugin-cypress","@ant-design/tools","react native","@ant-design/icons", +"set-cookie-parser","@types/set-cookie-parser","js-tokens","@babel/helper-validator-identifier","@babel/helpers","@babel/helper-compilation-targets","markdown-it-abbr","@vue/server-renderer", +"blog","asyncapi","babel-plugin-polyfill-corejs3","babel-plugin-polyfill-regenerator","derequire","@babel/plugin-transform-arrow-functions","@babel/plugin-transform-private-methods","@babel/plugin-proposal-private-property-in-object","@babel/plugin-transform-member-expression-literals","stylelint-config-standard-scss","transport","@fortawesome/fontawesome-free","user interface","@ckeditor/ckeditor5-undo","vue.js","polka","@docsearch/js","clean-css-cli","matches","vars","has-ansi","@types/luxon", +"@types/progress","chai-exclude","markdown-it-sup","quick-lru","ts-dedent","@types/markdown-it-attrs","markdown-it-testgen","eslint-formatter-pretty","threads","selfsigned","workerpool","@types/express-session","@dnd-kit/core","@dnd-kit/sortable","@dnd-kit/utilities","@emotion/serialize","@emotion/cache","@emotion/is-prop-valid","mark.js","@cypress/webpack-preprocessor","@types/lunr","@types/styled-components","@types/webpack-env","license-checker","JSON-Schema","@floating-ui/dom","popover","boilerplate", +"class-validator","mute-stream","answers","inquire","@rollup/plugin-virtual","pwa","@istanbuljs/schema","jest-validate","mocking","indicator","picker","serializer","@rushstack/heft","@types/aws-lambda", +"design system","strict-event-emitter","express-fileupload","@headlessui/react","ethereum","libnpm","@zkochan/js-yaml","tcp-port-used","@types/proxyquire","@oclif/test","@types/ejs","@types/pnpapi","@types/supports-color","esno","otterhttp","stack-utils","specifications","specs","babel-preset-minify","gauge","console-control-strings","interfaces","eslint-plugin-storybook","@storybook/addon-interactions","slice","is-reference","esbuild-register","@storybook/icons","style guide","rc-tabs","rc-tree", +"@types/jest-image-snapshot","fetch-jsonp","jest-puppeteer","rc-tween-one","react-fast-marquee","remark-lint","stylelint-declaration-block-no-ignored-properties","vanilla-jsoneditor","@types/tinycolor2","@ava/typescript","@stylistic/eslint-plugin-js","@svitejs/changesets-changelog-github-compact","@types/cookie","vite-plugin","collections","widget","istanbul-lib-source-maps","rollup-plugin-filesize","header","@eslint-community/regexpp","mdast-util-mdx","@typescript-eslint/rule-tester", +"@typescript-eslint/typescript-estree","estree","@types/hoist-non-react-statics","ast-types","webp","avif","babel-plugin-react-compiler","ajv-keywords","@umijs/bundler-utils","@umijs/core","@umijs/utils", +"codesandbox","estree-util-visit","file-system-cache","mdast-util-find-and-replace","sucrase","umi","git-repo-info","signal","negotiator","fullstack","get-caller-file","silent-error","component library","sequence","@vue/vue3-jest","webpackbar","mermaid","@types/css-tree","programmatic","zen-observable","@opentelemetry/sdk-trace-base","apm","define-properties","es-abstract","has-strict-mode","asserts","@types/tap","change","prefix","temp-dir","concurrent","formdata-node","eslint-config-babel", +"@babel/plugin-proposal-function-bind","babel-plugin-tester","babel-plugin-transform-es2015-arrow-functions","babel-plugin-transform-es2015-classes","babel-plugin-transform-es2015-computed-properties","babel-plugin-transform-es2015-destructuring","babel-plugin-transform-es2015-parameters","babel-plugin-transform-es2015-shorthand-properties","babel-plugin-transform-es2015-spread","babel-preset-flow","esutils","authorization","qunit-extras","ansi-to-html","global-modules","c","c++","d3-color","future", +"@astrojs/check","browserify-transform","heimdalljs","fs-tree-diff","mocha-eslint","defined","duplexer2","string_decoder","querystring-es3","stream-browserify","timers-browserify","coffeeify", +"baseline-browser-mapping","names","@clack/prompts","mv","byte","foreground-child","camel-case","chai-plugin","scule","@rollup/plugin-inject","whatwg-mimetype","jsonlint","vfile-message","ci","opts","toggle","string-length","growl","chalk-template","multi","single","emitter","on-headers","deflate","brotli","buffer-from","conf","settings","is-unicode-supported","eta","normalize-package-data","source","transfer","move","ES2015","ES2017","data-uri-to-buffer","postcss-url","crop","scale","order", +"postcss-modules-extract-imports","postcss-modules-scope","webpack-plugin","cssnano-preset-default","CSS","tokens","guid","id","d3-module","eslint-plugin-no-only-tests","eslint-plugin-perfectionist","npm-package-json-lint-config-default","values","destroy","rmdir","in-range","time-span","timeout","range","datastructure","stl","productivity","@ffmpeg-installer/ffmpeg", +"jsdoc3","filepath","to-vfile","repository","webpack-stream","richtext","karma-sinon-chai","gulp-tap","pack","pkg","setup","bundler","wonderful-fetch","eslint-plugin-json","email","ember-cli-dependency-checker","object.values","object.fromentries","promisify","set","characters","yorkie","jslint","eslint-config-xo-space","JavaScript Standard Style","code checker","code linter","code standards","policy","standard style","style checker","style linter","@tsconfig/node16","eslint-import-resolver-node", +"eslint-plugin-node-dependencies","@types/stylus","nano-spawn","it-is","stream-spec","is-in-ci","fork","@types/node-forge","transformer","loader-runner","symbols","unicorn-magic","up","look-up","google-auth-library","@types/request","@electric-sql/pglite","proxy-agent","triple-beam","detect-newline","nested","rollup-plugin-livereload","lightweight","devops","ssh","tasks","remote","mini-svg-data-uri","mkdir","create", +"monaco-editor","yeoman-test","yeoman-assert","tcp","onetime","typed","spreadsheet","@types/yargs-parser","@sindresorhus/is","uri","site","hooker","grunt-coveralls","grunt-istanbul","report","notify","preprocess","spritesmith","spritesheet","gulp-plugin","stat","istanbul-coveralls","index","stream-combiner2","vinyl-file","@types/fancy-log","stack","yazl","grunt-contrib-qunit","typeof","solid","abbrev","@types/source-map-support","compressor","rollup-plugin-polyfill-node","bunchee", +"eslint-plugin-unused-imports","status","titleize","localization","iconv","charset","scalable","align","@ionic/utils-fs","@types/split2","hybrid","braces","babel-plugin-annotate-pure-calls","@types/escape-html","@rspack/core","@types/babel__traverse","serial","current-module-paths","karma-preprocessor","os-homedir","escalade","tedious","oracledb","prettier-standard","stdlib","defaults","update","math", +"sqlserver","@types/which","postcss-simple-vars","markdown-it-plugin","mdast-util-gfm","mime-db","ufo","reactive","gulp-coveralls","ender","remark-preset-remcohaszing","aws4","dashboard","then","@types/plist","@types/xml2js","@types/proper-lockfile","postman","@matteo.collina/tspl","oauth2","fp","throat","@types/ini","mutate-fs","run","script","module-alias","home","metadata","page","pdfjs-dist","npm-watch","postcss-reporter","caniuse-api","postcss-less","cssnano-utils","serialization","gulp-clang-format", +"vrsource-tslint-rules","synchronous","eslint-import-resolver-webpack","title","spring","osx","message","mouse","string-hash","clean-publish","tiny","@vitest/expect","empathic","@polka/compression","jest-preset-stylelint","slideshow","streamx","@vue/shared","@vue/devtools-api","@phenomnomnominal/tsquery","device","tsparticles-plugin","@walletconnect/types","apollo-link-context","hex","netlify-cms", +"@angular/cdk","@angular/platform-browser","@csstools/media-query-list-parser","@csstools/postcss-progressive-custom-properties","@emotion/core","@floating-ui/react-dom","@fortawesome/react-fontawesome","@grandlinex/core","@hapi/hapi","@ionic/core","@jest/core","@jsonforms/react","@middy/core","@mui/system","@npmcli/map-workspaces","@npmcli/node-gyp","@nx/node","@nx/workspace","@otterhttp/cookie","@sveltejs/kit","@testing-library/cypress","@tinyhttp/cookie","@tinyhttp/req","@uiw/react-icon","@uiw/utils", +"@vitejs/plugin-legacy","acl","anyway-south-boy-pilot","api-console","apollo-link","awesome-typescript-loader","babel-plugin-import","babel-plugin-named-asset-import","babel-plugin-syntax-dynamic-import","babel-plugin-transform-react-jsx","babel-preset-stage-1","blockchain-language","blockchain-own8","blockchain-record","blockchain-scientist","btoa","built-who-entire","caniuse","chance","child-process-promise","clipboardy","cliui","consolidate","create-hash","css-select","cssstyle","csvtojson","daisyui", +"discord.js","dmd","dockerode","dom-serializer","dompurify","doxdox-core","doxdox-parser-jsdoc","doxdox-renderer-bootstrap","doxdox-renderer-json","doxdox-renderer-markdown","echarts", +"enzyme-shallow-equal","es6-promisify","facing-cook","fair-tower-web3-store","fetch-mock","fibers","font-awesome","forever","formik","friendly-errors-webpack-plugin","ftp","ghooks","gm","grunt-jsdoc","grunt-notify","gulp-browserify","gulp-bump","gulp-connect","gulp-data","gulp-git","gulp-jasmine","gulp-minify-css","gulp-rev","gulp-size","gulp-stylus","gulp-tslint","hammerjs","has-flag","heapdump","helmet","history-brass-sound","hogan.js","html-element-attributes","html-encoding-sniffer", +"html-minifier-terser","html-react-parser","html-tags","html-validate","imagemin-pngquant","immutability-helper","inline-style-parser","inside-throw","intl","is-url","jest-extended","jest-pnp-resolver","jimp","jotai","json-server","jszip","keycode","leftpad","libnpmexec","lit-element","load-grunt-config","lowdb","multiparty","nano","natural","newman","nib","node-cache","node-mocks-http","node-schedule", +"node-watch","npm-check-updates","nvm","optionator","osenv","passport-oauth2","phantom","pnpm","popper.js","postcss-custom-selectors","postcss-html","postcss-nesting","postcss-normalize","prisma","qr-image","query-string","randombytes","rc-slider","react-docgen","react-helmet","react-hook-form","react-icons","react-property","react-responsive","react-scripts","react-tools","recently-building-save","recompose","rehype-raw","rx","salt-type-oldest-faster","shinning-continued-becoming","showdown","soap", +"stack-trace","statsd","stream-transform","stringify-entities","stripe","style-to-object","styled-jsx","stylehacks","superjson","swagger-autogen","systeminformation","testem","tinymce","tinypool","tocbot","turndown","typescript-formatter","ultrahtml","url-parse","urllib","vasync","vhost","vue-class-component","vue-i18n","workbox-webpack-plugin","world-toy-kill","wrench","xml2json","yeoman-environment","void-elements", +"sortablejs","fontsource","@mantine/store","@antora/logger","@vuepress/markdown","@vuepress/plugin-register-components","@vuepress/plugin-search","broccoli","character-entities","character-entities-legacy","escape-goat","html-void-elements","vitefu","webdriver-manager","@expressots/shared","cssfilter","eslint-plugin-react-refresh","gulp-jsdoc3","pagefind","remeda","lefthook","embla-carousel","@csstools/css-calc","@inquirer/figures","@inquirer/confirm","@csstools/css-color-parser","shadcn","@appium/support", +"@appium/logger","chrome-launcher","@types/react-redux","@types/react-router-dom","cdk","kit","xhr2","lodash.mergewith","react-native-web","@types/lodash.mergewith","@auth/core","@sveltejs/package","sveltekit","fs-readdir-recursive","@babel/template","@babel/plugin-syntax-flow","@types/convert-source-map","@babel/helper-fixtures","@iarna/toml","zod-validation-error","jekyll","lit-html","@web/dev-server","@babel/plugin-syntax-decorators","object.getownpropertydescriptors","core-js-compat", +"@babel/helper-validator-option","@babel/plugin-transform-for-of","@babel/plugin-transform-classes","@babel/plugin-transform-modules-amd","@babel/plugin-syntax-import-attributes","@babel/plugin-transform-class-static-block","@babel/plugin-transform-object-rest-spread","@babel/plugin-transform-export-namespace-from","@babel/plugin-transform-exponentiation-operator","@babel/plugin-transform-async-generator-functions", +"@babel/plugin-transform-nullish-coalescing-operator","@babel/plugin-transform-react-display-name","clone-deep","@apidevtools/json-schema-ref-parser","markdown-it-task-lists","swagger-ui-dist","rollup-plugin-peer-deps-external","feed","ckeditor5-dll","@ckeditor/ckeditor5-integrations-common","@ckeditor/ckeditor5-editor-balloon","@ckeditor/ckeditor5-font","@ckeditor/ckeditor5-editor-multi-root","@commitlint/types","graph","actor","hammer-simulator","karma-coverage-istanbul-reporter", +"stylelint-config-twbs-bootstrap","genversion","stream-to-string","@types/mock-fs","markdown-it-deflist","jest-serializer-html","terminal-link","@discordjs/collection","discord","generated","@octokit/core","@types/json-stringify-safe","@types/chalk","@types/tar-stream","@types/formidable","@dnd-kit/modifiers","mixin","@tsconfig/node22","@types/lodash.camelcase","@emotion/hash","find-root","@definitelytyped/dtslint","swagger2openapi","@types/mark.js","OpenAPI","use-isomorphic-layout-effect","fontawesome", +"@docusaurus/utils","remove-files-webpack-plugin","@hapi/accept","@hapi/code","@hapi/lab","ajv-errors","class-transformer","effect","typanion","vest","vite-tsconfig-paths","@inquirer/ansi","@types/mute-stream","hyper","scaffolder","capacitor","progressive web app","@jest/test-result","jest-config", +"@types/object-hash","multipipe","tasklist","calendar","react-hooks","styling","@microsoft/api-documenter","JSDoc","TSDoc","declaration","dts","tsdoc-build-rig","Lambda","Middleware","Serverless","Framework","AWS","AWS Lambda","@types/superagent","socket.io-parser","@mdx-js/loader","react-helmet-async","hast-util-heading-rank","ethers","hardhat","@types/bn.js","@npmcli/installed-package-contents","@npmcli/redact","npm-pick-manifest","walk-up-path","@npmcli/mock-registry","workspaces","@npmcli/promise-spawn", +"innertext","similarity","@oclif/plugin-plugins","fancy-test","madge","header-range-parser","@types/http-proxy","@types/nock","commit-and-tag-version","eslint-plugin-chai-friendly","git-cz","global-jsdom","quibble","@webcomponents/webcomponentsjs","google-closure-compiler","widgets","reducer","@types/mkdirp","@tailwindcss/vite","@scalar/build-tooling","@scalar/core","fastify-plugin","@sinonjs/commons","@sinonjs/eslint-config","@ant-design/colors","qrcode.react","@babel/eslint-plugin","@emotion/server", +"@qixian.cs/github-contributors-list","@types/gtag.js","@types/jest-environment-puppeteer", +"@types/react-highlight-words","@types/throttle-debounce","antd-img-crop","antd-token-previewer","jsonml-to-react-element","rc-footer","rc-virtual-list","react-highlight-words","react-infinite-scroll-component","react-resizable","react-sticky-box","stylelint-config-prettier","stylelint-config-rational-order","async-mutex","string.prototype.matchall","tsconfig-paths-webpack-plugin","esm-env","@types/connect","webpack-loader","@swc/types","@napi-rs/cli","tsc","custom elements","shadow dom","pubsub", +"@types/content-type","@types/aria-query","jest-in-case","redent","rollup-plugin-delete","jest-matcher-utils","regexparam","proxy-addr","ts-api-utils","@typescript-eslint/type-utils","micromark-extension-mdxjs","tsc-alias","button","json-schema-to-ts","lit","swagger-parser","@ant-design/icons-svg","@makotot/ghostui","animated-scroll-to","dumi-afx-deps","heti","prism-themes","react-simple-code-editor","rehype-remove-comments","v8-compile-cache","dumi-assets-types","@types/highlight-words-core", +"@types/lodash.throttle","@umijs/lint","@umijs/plugins","highlight-words-core","static site generator","cryptography","decentralized","oracle","@mysticatea/eslint-plugin","dts-bundle-generator","cancel","controller", +"rollup-plugin-node-externals","control","delayed","bow-swam-troops-care","coach-organized-notice","crop-birthday-web3-children","face-eventually-bound","grass-dollar-crew-floating","information-fruit-web3-perfect","office-deal-mostly1","product-slight-adult-settlers","sentence-won-little-western","speed-wing-eat","supper-term-including-snake","truck-hospital-equator-hurt","trunk-darkness-believed-corner","typical-recall-industry-exchange","warn-clothing-whose0","weigh-flew-web3-farm","humanize-duration", +"require-from-string","tsify","denodeify","script-loader","screen","@vitejs/plugin-vue-jsx","ali-oss","colorful","merge2","p-all","antd-style","@types/pngjs","@types/adm-zip","@antfu/eslint-config","@codesandbox/sandpack-react","@ianvs/prettier-plugin-sort-imports","remark-lint-no-undefined-references","unzipper","klaw-sync","portable","notifications","apollo-utilities","ts-invariant","symbol-observable","root","portscanner","@appium/tsconfig","@types/bluebird","@opentelemetry/resources","constructs", +"@babel/plugin-syntax-class-properties","@es-shims/api","es-shim API","is-buffer","unit testing","eslint-plugin-prefer-arrow","auto","is-builtin-module","sync-exec","@vercel/nft","memoize","resolve-cwd","generators","hash-test-vectors", +"sns","dynamodb","grunt-babel","clean-jsdoc-theme","css-selector-parser","conventional-commits-parser","eslint-plugin-mocha-no-only","axe","abortcontroller-polyfill","@rollup/plugin-multi-entry","v8flags","babel-code-frame","babel-messages","babel-helper-transform-fixture-test-runner","babel-plugin-transform-export-extensions","istanbul-lib-instrument","test-exclude","@babel/preset-stage-0","prettier-eslint-cli","@babel/plugin-proposal-numeric-separator","@babel/plugin-proposal-optional-catch-binding", +"babel-plugin-check-es2015-constants","babel-plugin-syntax-trailing-function-commas","babel-plugin-transform-es2015-modules-umd","babel-plugin-transform-es2015-typeof-symbol","@babel/plugin-proposal-private-methods","@types/validator","sinatra","prebuildify","beautify","concat-with-sourcemaps","resolve-package-path","universal","isomorphic","@storybook/addon-knobs","@umijs/fabric","@types/readable-stream","buffers","falafel","block","loop","deferred","@types/mime","@astrojs/mdx","@astrojs/markdown-remark", +"border","stream-http","os-browserify","vm-browserify","domain-browser","tty-browserify","browserify-zlib","https-browserify","constants-browserify","browser-unpack","make-generator-function","window","arraybuffer","flexbox","bump","profiler","@babel/plugin-syntax-typescript","@vitest/spy","ttl", +"get-intrinsic","call","bind","dash","pascal-case","support","prebuild-install","graphic","assertions","contains","param-case","charts","domutils","@types/whatwg-mimetype","htmlparser","scraper","@types/faker","@ckeditor/ckeditor5-theme-lark","eslint-config-medikoo","git-list-updated","github-release-from-cc-changelog","prettier-elastic","spinners","tabular","lerna-changelog","limit","@yarnpkg/fslib","ignore-walk","@codemirror/view","@codemirror/state","@codemirror/commands","@codemirror/language","wcwidth", +"typical","listener","@types/shell-quote","eslint-config-flat-gitignore","persist","persistent","session","@types/normalize-package-data","preset","@types/serialize-javascript","ES5","ES7","ES2016","Observable","file-system","contents","http2-wrapper","stream-array","optimization","schedule","@stryker-mutator/core","jsr","zoom","path-key","execute","fast-json-stable-stringify","flatted","@rollup/plugin-dynamic-import-vars","functions","boolbase","lexer", +"@domenic/eslint-config","csrf","duration","stacktrace-js","serialize-error","ansi-html","hasha","request-progress","d3-time","d3-time-format","tailwind css","nuxt","bun","jscodeshift","typedoc-plugin-missing-exports","gzip-size-cli","limited","rate","debugger","lcov-result-merger","is-regex","which-typed-array","folders","directories","rmrf","random-int","is-core-module","space","tshy-after","patch","java script","type script","edge","traversal","sorting","structures","data structure","data-structure", +"data structures","datastructures","data-structures","in data structures","in data structure","DataStructure","DataStructures","CommonJS","UMD","esmodule","java.util","c++ stl","c++ std","Python collections","System.Collections.Generic","STL","Collection","Collections","OOP","bot","dnd","rpc","@grpc/grpc-js","dependency-cruiser","tunnel","imagemin-svgo", +"imagemin-jpegtran","open source","karma-html2js-preprocessor","simple-update-notifier","dox","eslint-config-fbjs","just-extend","parcel","tsutils","iteration","apache","grunt-run","grunt-webpack","@electron/get","packager","grunt-banner","babel-plugin-transform-vue-jsx","launch-editor-middleware","broccoli-concat","broccoli-debug","broccoli-source","broccoli-stew","console-ui","ensure-posix-path","heimdalljs-logger","eslint-plugin-chai-expect","release-plan","broccoli-babel-transpiler", +"ember-cli-inject-live-reload","loader.js","eslint-plugin-qunit","safe-regex-test","info","string.prototype.trim","@types/isarray","regular","esquery","imurmurhash","babel-tape-runner","airbnb","es2018","strict","eslint-typegen","@types/lodash.memoize","@types/eslint-scope","array-includes","npm-which","typescript-eslint-parser","jsdoc-type-pratt-parser","json-schema-to-typescript","open-editor","@ota-meshi/eslint-plugin","@ota-meshi/site-kit-eslint-editor-vue","env-cmd", +"eslint-plugin-json-schema-validator","vite-plugin-eslint4b","axobject-query","@tsconfig/strictest","refa","scslre","@types/less","find-up-simple","xml-name-validator","karma-tap", +"eval","ubelt","emits","subscribe","yoctocolors","merge-descriptors","automatically","token","@docusaurus/preset-classic","handler","endpoint","@types/yauzl","parse-node-version","ajv-i18n","autocannon","babel-plugin-styled-components","array.prototype.map","colorpicker","symbol","blob","uint8array-extras","picture","photo","bmp","epub","otp","locate-path","@fastify/busboy","admin","async-lock","zod-to-json-schema","byline","inference","prettier-plugin-tailwindcss","lolex","fault tolerant","sysadmin", +"browserify-istanbul","tsdx","conditional","universalify","klaw","mac","ie","socket","iterator","dir-compare","eslint-config-tschaub","hook","globs","gitignore","eslint-config-standard-with-typescript","ky","@types/ncp","@graphql-tools/schema","temporary","release","newer","notify-send","libsass","sauce-tunnel","grunt-mocha-cli","@types/write-file-atomic","pipeline", +"transformation","codegen","utf-8","from2-string","include","relative","prettify","jsftp","stream-to-array","htmlmin","@types/gulp","inject","scripts","gulplog","has-gulplog","kew","restart","sort-keys","sourcemaps","measure","hook-std","source maps","@types/through","uncss","array-differ","beeper","zlib","remark-lint-blockquote-indentation","remark-lint-checkbox-character-style","remark-lint-checkbox-content-indent","remark-lint-code-block-style","remark-lint-definition-case","remark-lint-emphasis-marker", +"remark-lint-fenced-code-marker","remark-lint-no-duplicate-definitions","remark-lint-no-heading-content-indent","remark-lint-rule-style","remark-lint-strong-marker","remark-lint-table-cell-padding","remark-lint-table-pipes","remark-lint-unordered-list-marker-style","bounce","elements","flag","raw","mdast-util-mdxjs-esm","util-deprecate","@size-limit/preset-big-lib","pojo","unescape","relateurl","packer","uglifier","tags","void","plain","duplex","singular","plural","dasherize","singularize","translation", +"globalization","safer-buffer", +"spawn-sync","resolution","lazy","inferno-shared","user interfaces","react-devtools-core","telephone","elementtree","@ionic/utils-array","@ionic/utils-terminal","@types/elementtree","@types/svgo","is-object","esmock","jasmine-reporters","@jest/environment","@jest/environment-jsdom-abstract","eslint-webpack-plugin","web-vitals","plugnplay","pnp","@types/babel__template","preact-render-to-string","rich editor","rich text editor","contenteditable","rte","grunt-compare-size","grunt-exec","package-directory", +"decimal.js","cssom","stable","lie","karma-adapter","keyboard","timekeeper","lru","pg-connection-string","better-sqlite3","smol-toml","analysis","body","route","set-blocking","conventional-recommended-bump","conventional-changelog-angular","multi-package","less.js","run-parallel","fast-levenshtein","algorithm","edit","faye-websocket","resolve-pkg","lock","bar","SVG","mdast-util-to-markdown","baas","eslint-config-next","context","anchor","emoticon", +"heading","esbuild-plugin-umd-wrapper","markup","checksum","decode-named-character-reference","micromark-extension-gfm","tiny-glob","efficient","sorted","pidtree","distributed","basic-auth-connect","@esm-bundle/chai","email-validator","double","@aws-sdk/s3-request-presigner","profiling","enqueue","devtools-protocol","jsdom-global","container","iot","rfc4122","jQuery","@types/update-notifier","typescript-json-schema","@readme/oas-examples","apis","openapi initiative","openapi specification","openapi spec", +"openapi document","oai","Object.keys","ES8","launch","start","xdg","default","urls","tmpdir","scrollbar","ratelimit","aria","server-side","babel-plugin-transform-inline-environment-variables","fastbench","pino-pretty","strong-pm","@csstools/utilities","@types/caniuse-api","@csstools/cascade-layer-name-parser","flex","postcss-syntax","humanized","exception","danger","curried","words","@rc-component/father-plugin","rc-test","chai-spies","@babel/plugin-proposal-do-expressions","form-validation", +"live","eslint-plugin-jest-dom","observer","dialog","transition","@react-native/eslint-config","premove","multiselect","toast","tiny-invariant","composition","eslint-config-remcohaszing","snapshot-fixtures","hast-util-from-html-isomorphic","cls-hooked","shutdown","deep-copy","fast-copy","sourcemap-validator","@types/babel__generator","@types/express-serve-static-core","@types/text-table","@types/ua-parser-js","async-sema","server-only","Rx","RxJS","p-retry","fast-safe-stringify","favicon","encrypt", +"@vitest/mocker","bundle-require","@discoveryjs/json-ext","@storybook/blocks","visual","full","cjk","chinese","japanese","korean","utf-8-validate","stylelint-plugin","playwright-chromium","swipe","telegram","chroma-js","es8","testcafe-reporter-xunit","dprint","eslint-config-xo-typescript","material-design","hookable","bail","user-agent","sanitisation","viewer","strip-literal","postcss-modules","@oxc-project/types","sauce-connect-launcher","chart","RFC-6455","break", +"fflate","unminified-webpack-plugin","@yeoman/adapter","@types/webpack-bundle-analyzer","@vitejs/plugin-react-swc","rollup-plugin-vue","katex","@storybook/addon-a11y","preview","fs-fixture","intlayer","accessible","parcel-bundler","@walletconnect/utils","replacement","react-native-svg","@codecov/vite-plugin","@theuiteam/lib-builder","applitools","test automation","visual regression","@arethetypeswrong/core","expressive-code","@trpc/server","ai","openai","@types/pg","@applitools/logger", +"@angular-devkit/core","@angular/animations","@angular/common","@angular/material","@angular/platform-browser-dynamic","@11ty/eleventy","@asyncapi/generator-react-sdk","@csstools/postcss-is-pseudo-class","@cucumber/cucumber","@discordjs/rest","@doc-tools/transform","@idux/cdk","@isaacs/cliui","@mantine/core","@mantine/hooks","@mantine/notifications","@mantine/utils","@middy/util","@mui/icons-material","@mui/material","@mui/x-date-pickers","@ng-doc/core","@nomicfoundation/hardhat-chai-matchers", +"@oclif/config","@otterhttp/request","@otterhttp/send","@scalar/api-reference","@tanem/svg-injector","@tanstack/react-query","@testing-library/jest-native","@tinyhttp/cookie-signature","@tinyhttp/cors","@tinyhttp/etag","@tinyhttp/forwarded","@tinyhttp/proxy-addr","@tinyhttp/res", +"@tinyhttp/router","@tinyhttp/send","@tinyhttp/type-is","@tinyhttp/url","@udecode/plate-core","@uiw/react-button","@uiw/react-input","@uiw/react-overlay-trigger","@wesleytodd/openapi","action-cli","aid-guard1","amqp","analsorhost-simple-bs","angular-cli","angular-material","apn","babel-plugin-transform-decorators-legacy","baqend","bark-needs-visit4","bip39","bizcharts","blessed","bootstrap-sass","branch-body-web3-feel","bs58","bulma","bytebuffer","cache-manager","chicken-fell-spread","cli-spinner", +"cli-table2","cli-ux","clui","command-exists","component-emitter","corcojs-qrcode","crawler","crc","critical","cronnor","css-functions-list","cssdb","csurf","csv-stringify","d3-selection","deasync","dedupe","deep-diff","diff2html","dist","distance-its-clear-rate","doc-detective-core","documentdb","doxdox-cli","dropzone","dubnium","elasticsearch","electricity-death-web3-story","electron-packager","element-resize-detector","eleventy","elliptic","ember-cli-babel","ember-cli-htmlbars", +"emmet","enzyme-adapter-utils","errorhandler","es6-error","eslintrc","ethereumjs-util","fastclick","feature-rising-small7","firan-logging","flowbite","fluent-ffmpeg","fresh-dangerous","fstream","fur-race-web3-pale","generic-pool","getmac","gmll","googleapis","government-letter-web3-till","gradually-current-chief","grunt-concurrent","grunt-contrib-csslint","grunt-contrib-less","grunt-newer","grunt-usemin","guarapi","gulp-buffer","gulp-changed","gulp-concat-css","gulp-cssnano","gulp-csso","gulp-gh-pages", +"gulp-htmlmin","gulp-imagemin","gulp-inject","gulp-jscs","gulp-json-editor","gulp-notify","gulp-shell","gulp-tsb","gulp-usemin","gulp-vinyl-zip","gulp-webserver","gulp-zip","happy-meant","hast-util-sanitize","hast-util-to-jsx-runtime","hay-against-any-hurry","hexo","highland","hope-slight-walk1","http-status","hyperquest","hyphenate-style-name","i","imagemagick","imap","inert","ink","is-potential-custom-element-name","iview","johnny-five","jscpd","jsdoc-api", +"json-2-csv","knex","koa-static","leveldown","levelup","libnpmdiff","libnpmfund","liftoff","live-server","local-web-server","localforage","localtunnel","lodash.flatten","lodash.isplainobject","lodash.isstring","lodash.map","loopback","magmastream","mammoth","memory-cache","meteor","mockjs","monk","motor-positive-spirit","move-wolf-throughout","multiple-cucumber-html-reporter","nativescript","nedb","next-auth","ngrok","nightmare","node-dir","node-inspector","node-pre-gyp","node-static","node-uuid","nolangjs", +"nomnom","normalize-wheel","npm-check","nuke-cli","nvmrc","oas-normalize","object-path","onchange","opencv","orchestrator","overlayscrollbars","pa11y","para-client-js","pdfkit","pie-case-nor-great","pm2","postcss-color-functional-notation","postcss-image-set-function","postcss-prefix-selector","pouchdb","prettier-plugin-svelte","pretty-error","progress-bar-webpack-plugin","purgecss","quill","qunit-dom","raven", +"react-bootstrap","react-datepicker","react-dropzone","react-error-overlay","react-i18next","react-native-vector-icons","react-number-format","react-slick","react-tap-event-plugin","react-virtualized","reactstrap","redoc","redux-form","redux-logger","redux-thunk","rehype-external-links","remap-istanbul","request-promise-native","require-all","restify","restore-cursor","robotjs","routes","sails","sand-have-metal6","sat-local","seblakhotspicy","secp256k1","sentiment","shortid","sink-mighty-orbit0", +"slow-voice-spell-pass","small-grow-mix4","snake-seven-recall-interior","sockjs-client","spring-dust-wall-size","sprity","st.db","strftime","strongloop","sugar-policeman-entire","swagger-themes","swagger-ui-express","swig","swiper","sync-request","tail-iron-became5","tdl","tinper-bee","toastify-react-native","ts-pnp","tslint-react","tv4","typescript-plugin-css-modules","unusual-rope","user-home","victory-mouth","viewerjs","vsce","vue-hot-reload-api","waterline","web3-capital","web3-compass","webtorrent", +"winreg","wiredep","xml-js","xregexp","yarnrc","yonode","zmq","@nx/cypress","@nx/jest","framer-motion","@mui/styled-engine","jsdoc-parse","@commercetools-frontend/constants","downshift","postcss-focus-visible","@jsonforms/vue","rehype-katex","foundation-sites","grommet","html-url-attributes","postcss-opacity-percentage","rapidoc","react-native-collapsible","recharts","weui","tstyche","@mantine/code-highlight","@enact/ui","@enact/webos","zarm","titanium","@ionic/react","@juggle/resize-observer", +"@mui/private-theming","@storybook/addon-backgrounds","@tinyhttp/encode-url","@tinyhttp/logger","@tsparticles/interaction-external-push","@tsparticles/move-base","@tsparticles/shape-emoji","@tsparticles/updater-color","@tsparticles/updater-opacity","@tsparticles/updater-out-modes","@vuepress/core","@vuepress/markdown-loader","@vuepress/plugin-active-header-links","@vuepress/plugin-last-updated","@vuepress/plugin-nprogress","@vuepress/theme-default","@walletconnect/legacy-modal","ansi-align","blocking-proxy", +"body-scroll-lock","broccoli-middleware","character-entities-html4","character-reference-invalid","dom7","epub2","esdoc","globals-docs","hast-util-parse-selector","hast-util-to-parse5","html-parse-stringify","inferno-create-element", +"jasminewd2","jest-preview","lws-index","micromark-util-encode","postcss-js","query-selector-shadow-dom","react-colorful","webdriver-js-extender","@antora/playbook-builder","@tsparticles/shape-circle","@tsparticles/updater-life","@tsparticles/updater-rotate","plasmo","@expressots/core","@tsparticles/interaction-particles-links","@astrojs/starlight","@tsparticles/interaction-external-bounce","@tsparticles/interaction-external-remove","@tsparticles/move-parallax","@tsparticles/shape-polygon", +"@tsparticles/shape-square","@tsparticles/shape-image","astro-expressive-code","rehype-expressive-code","@augment-vir/assert","@tsparticles/basic","@tsparticles/updater-size","@tsparticles/interaction-external-grab","@tsparticles/interaction-particles-collisions","@tsparticles/interaction-external-repulse","@tsparticles/slim","@tsparticles/shape-star","kuler","@busy-hour/blaze","payload","@appium/schema","@modern-js/utils","grunt-svgmin","@axe-core/playwright","embla-carousel-reactive-utils","globrex", +"grammy","@tsparticles/plugin-hex-color","@tsparticles/plugin-hsl-color","loki","@headlessui/vue","zoroaster","vue-draggable-next","@tsparticles/plugin-rgb-color","@storybook/addon-vitest","@csstools/color-helpers","@prisma/dev","@observablehq/plot","@applitools/driver","@tsparticles/interaction-external-slow","@tsparticles/shape-line","@testcontainers/postgresql","@antora/site-publisher","@inquirer/expand","@inquirer/select","@tsparticles/interaction-particles-attract","animejs","lexxy","mapboxgl", +"mongoid","nums","svgs","twbs","jsonp","@types/md5","mochawesome","simulate-event","console-polyfill","markdown-it-prism","babel-plugin-espower","es6-promise-polyfill","css-split-webpack-plugin","karma-webdriver-launcher","babel-plugin-transform-object-assign","Angular CLI","Angular DevKit","devkit","code generation","rc-field-form","utility-types","bisheng","enquire.js","react-github-button","react-document-title","@testing-library/react-native","@react-native-community/eslint-config", +"@sveltejs/adapter-auto","oidc","@babel/helper-transform-fixture-test-runner","6to5","charcodes","@babel/helper-module-transforms","const","var","@babel/helper-string-parser","@babel/helper-create-class-features-plugin","dependency-graph","please-upgrade-node","static-site-generator","static-site","@advanced-rest-client/arc-icons","@advanced-rest-client/arc-marked","@anypoint-web-components/anypoint-button","@anypoint-web-components/anypoint-dropdown","@anypoint-web-components/anypoint-item", +"@anypoint-web-components/anypoint-listbox","@api-components/amf-helper-mixin","@advanced-rest-client/oauth-authorization","@anypoint-web-components/anypoint-styles","@api-components/api-model-generator","@api-components/api-navigation","@api-components/api-request","@open-wc/eslint-config","@open-wc/testing","typescript-lit-html-plugin","@graphql-typed-document-node/core","optimism","apollo","@asyncapi/parser","decorators","@babel/compat-data","@babel/plugin-transform-parameters", "babel-plugin-polyfill-corejs2", -"@babel/plugin-transform-spread","@babel/plugin-transform-modules-umd","@babel/plugin-transform-regenerator", -"@babel/plugin-transform-destructuring","@babel/plugin-transform-dynamic-import", -"@babel/plugin-transform-modules-systemjs","@babel/plugin-transform-numeric-separator", -"@babel/plugin-transform-optional-chaining","@babel/plugin-transform-async-to-generator", -"@babel/plugin-transform-optional-catch-binding","@babel/plugin-transform-private-property-in-object", -"@babel/plugin-transform-logical-assignment-operators","pirates","@cucumber/gherkin-streams","json-schema-merge-allof", -"markdown-it-footnote","svg-pan-zoom","feature","async-exit-hook","@changesets/get-release-plan","chokidar-cli","chat", -"social","angular2","ng","ckeditor5-build","@ckeditor/ckeditor5-editor-classic","@ckeditor/ckeditor5-alignment", -"@ckeditor/ckeditor5-editor-decoupled","@ckeditor/ckeditor5-editor-inline","ckeditor5-lib", -"@ckeditor/ckeditor5-watchdog","@ckeditor/ckeditor5-select-all","@types/color-convert","@commitlint/lint", -"@commitlint/load","@commitlint/test","@commitlint/utils","@compodoc/live-server","@compodoc/ngd-transformer", -"loglevel-plugin-prefix","neotraverse","messages","@docsearch/css","find-unused-sass-variables","vnu-jar","mobile-first", -"media query","declarations","progressive","assertion-error-formatter","knuth-shuffle-seeded","util-arity", -"@types/mustache","@types/mz","dependency-lint","gherkin","@types/signale","jest-mock-process","signale", -"@diplodoc/tabs-extension","get-root-node-polyfill","markdownlint-rule-helpers","@types/sanitize-html", -"esbuild-sass-plugin","yfm","magic-bytes.js","@discordjs/util","discord-api-types","@sapphire/snowflake", -"@discordjs/scripts","@favware/cliff-jumper","@discordjs/api-extractor","discordapp","@apidevtools/swagger-parser", -"@types/html-escaper","memorystore","minisearch","sql.js","@types/body-parser","esbuild-wasm", -"@wordpress/dependency-extraction-webpack-plugin","swc-loader",".d.ts","definitions","@emotion/sheet","@emotion/utils", -"decko","json-pointer","openapi-sampler","react-tabs","stickyfill","url-template","@hot-loader/react-dom", -"@types/dompurify","@types/enzyme-to-json","@types/json-pointer","@types/tapable","lodash.noop","unfetch", -"OpenAPI Specification","Swagger","font family","google fonts","inter","typeface","awesome","node-abi", -"@graphql-markdown/logger","@graphql-markdown/utils","@graphql-markdown/types","graphql-schema","graphql-markdown", -"@docusaurus/types","@tailwindcss/typography","basename","filemanager-webpack-plugin","@hapi/hoek","@hapi/topo", -"@hapi/eslint-plugin","@hapi/wreck","@standard-schema/utils","@sinclair/typebox","@vinejs/vine","arktype", -"computed-types","fluentvalidation-ts","fp-ts", -"io-ts","scheme","nope","TypeBox","translate","vue 3.x","@inquirer/testing","@stencil/core","playwright-core", -"@tanstack/react-virtual","eslint-plugin-require-extensions","design-system","ux","@jest/pattern","@jest/reporters", -"exit-x","jest-haste-map","jest-message-util","jest-regex-util","jest-watcher","easy","immersive","@jest/schemas", -"@types/istanbul-lib-coverage","@types/istanbul-reports","redux-mock-store","rollup-plugin-import-css","docopt", -"glob2base","babel-plugin-transform-builtin-extend","opn-cli","@inquirer/input","syntax-highlight","json-api", -"@types/mdx","@microsoft/api-extractor-model","alpha","jju","HTTP","@open-draft/deferred-promise","is-node-process", -"outvariant","@open-draft/test-server","@ossjs/release","@types/express-fileupload","@types/follow-redirects", -"vitest-environment-miniflare","webpack-http-server","system","datepicker","datetimepicker","@shikijs/transformers", -"@theguild/remark-npm2yarn","rehype-pretty-code","webpack-virtual-modules","@types/color","posthtml-render", -"posthtml-parser","rehype-format","hast-util-has-property","@isaacs/string-locale-compare","@npmcli/fs", -"@npmcli/metavuln-calculator","@npmcli/name-from-folder", -"bin-links","common-ancestor-path","npm-install-checks","parse-conflict-json","treeverse","spawk","highlights", -"language-ini","property-ttl","language-dart","language-glsl","language-haxe","language-rust","lodash.pickby", -"language-erlang","language-stylus","highlights-tokens","atom-language-diff","atom-language-nginx", -"github-url-to-object","markdown-it-expand-tabs","markdown-it-lazy-headers","oniguruma","intercept-stdout","ESLint", -"@nestjs/schematics","@oclif/errors","@oclif/parser","@types/indent-string","@types/wrap-ansi","clean-stack", -"@types/clean-stack","octokit","vue-components","@otterhttp/content-type","@otterhttp/errors","send-file","randexp", -"@types/ramda","@types/stack-utils","glob-bin","putout","typedoc-plugin-no-inherit","annotate","information", -"typography","@webcomponents/shadycss","fontkit","ps-tree","github-api","app-module-path","better-ajv-errors", -"@metalsmith/markdown","eslint-formatter-codeframe","gui","mixins","@mdi/font","animate.css","bootstrap-icons", -"@types/three","@storybook/testing-library","@types/testing-library__jest-dom","glb","@size-limit/webpack", -"@testing-library/react-render-stream","@types/babel__helper-module-imports","esbuild-extra","starter","redux-toolkit", -"require-relative","is-module","string-capitalize","cpx","sanity","@unhead/vue","@scalar/openapi-parser", -"@scalar/openapi-types","vite-plugin-banner","@serenity-js/core","@serenity-js/rest","@serenity-js/web","tiny-types", -"@integration/testing-tools","@types/html-minifier","mocha-multi","serenity","serenity-js","screenplay", -"screenplay-pattern","@wdio/cli","@wdio/local-runner","@wdio/spec-reporter","@wdio/types","@mochify/cli", -"@mochify/driver-puppeteer","@mochify/driver-webdriver","telejson","memoizerific","storybook-addon","essentials", -"@ant-design/cssinjs","@ant-design/react-slick","@rc-component/tour","rc-dialog","rc-drawer","rc-menu","rc-progress", -"rc-trigger","@storybook/addons","@storybook/theming","@types/react-resizable","bundlesize2", -"duplicate-package-checker-webpack-plugin","sylvanas","@supernova-studio/client","@supernova-studio/model","abab", -"color2k","parse-color","trash-cli","@sveltejs/acorn-typescript","dts-buddy","official","@svgr/plugin-svgo","svgr","swc", -"rust","stylelint-prettier", -"ui library","symbiote.js","microfrontends","shadow root","MIT","tanem-scripts","@tanstack/query-test-utils", -"dom-accessibility-api","jest-watch-select-projects","jest-environment-jsdom-sixteen","testing-library","dotenv-cli", -"@types/jest-in-case","jest-serializer-ansi","eslint-plugin-local-rules","@tinyhttp/vary","supertest-fetch","headers", -"@tinyhttp/content-type","params","ebs","@typescript-eslint/visitor-keys","title-case","component-classes","mini-store", -"@types/raf","@udecode/slate","@udecode/utils","@udecode/react-utils","@udecode/react-hotkeys","@uiw/react-overlay", -"prom-client","@uploadcare/cname-prefix","shipjs","@biomejs/js-api","@biomejs/wasm-nodejs","@total-typescript/ts-reset", -"@happy-dom/global-registrator","@csstools/postcss-cascade-layers","uploadcare","file uploader", -"browserslist-to-esbuild","@babel/plugin-transform-react-jsx-source","fast refresh","comlink","react-loading-skeleton", -"codesandbox-import-utils","dumi-theme-mobile","rollup-plugin-babel-minify","rollup-watch","negotiation","accept","arch", -"cron-parser","blockchain-bend4","blockchain-meat7","cent-matter-to","closer-composed-particularly-shout", -"correct-home-silent7","course-whenever-merely","exchange-known-bend","lay-rest-hour","material-balance-trade-solar", -"meat-think-stove8", -"recently-done-should-moon","scientific-exist-event2","stay-including","engine.io","engine.io-client", -"find-nearest-file","globs-to-files","load-script","make-promises-safe","simple-get","json-schema-traverse", -"@ajv-validator/config","if-node-version","json-schema-test","json-schema-validator","longjohn", -"ember-cli-normalize-entity-name","ember-cli-string-utils","isbinaryfile","gray","inverse","red","strikethrough", -"escapes","vt100","@emotion/unitless","array-tree-filter","dom-scroll-into-view","shallow-equal","@types/koa", -"@types/lru-cache","@vue/babel-plugin-jsx","@webpack-cli/serve","babel-plugin-inline-import-data-uri","docsearch.js", -"enquire-js","gulp-strip-code","is-windows","json-templater","less-plugin-npm-import","majo", -"markdown-it-table-of-contents","remark-yaml-config","reqwest","rucksack-css","string-replace-loader", -"@rc-component/trigger","runes2","spinnies","vanilla-tilt","react-countup","@prettier/sync","@types/ali-oss", -"@types/spinnies","@types/nprogress","lunar-typescript","@types/http-server","@types/cli-progress", -"@ant-design/compatible","@types/isomorphic-fetch","dumi-plugin-color-chunk","@microflash/rehype-figure", -"circular-dependency-plugin","@ant-design/happy-work-theme", -"@madccc/duplicate-package-checker-webpack-plugin","apple","iOS","apollo-cache","@types/zen-observable","jsnext", -"@types/graphql","node_modules","asyncbox","teen_process","@azure/core-auth","@opentelemetry/core", -"@opentelemetry/api-logs","@opentelemetry/sdk-logs","@opentelemetry/sdk-metrics", -"@opentelemetry/exporter-metrics-otlp-proto","microsoft","analytics","@aws-sdk/types","projen","gql","buffer-crc32", -"Array.prototype.flatMap","Array.prototype.flatten","ensure","is-nan","rollup-plugin-npm","shrinkwrap", -"parse-github-url","babel-plugin-rewire","detective","fraction.js","callsites","code-excerpt","common-path-prefix", -"emittery","ignore-by-default","observable","ieee754","jmespath","insert-module-globals","sqs","ses","swf","workflow", -"waf","colorjs.io","typedarray","emoji-regex","revalidator","proxy-from-env","rollup-plugin-bundle-size", -"istanbul-instrumenter-loader","md5.js","babel-helpers","babel-preset-power-assert","airbnb-js-shims","@umijs/test", -"babel-preset-umi","@istanbuljs/load-nyc-config","instrumentation","require-package-name","find-babel-config","resolver", -"alias","rewrite","mapping","babel-plugin-syntax-async-functions","babel-plugin-syntax-object-rest-spread", -"babel-plugin-flow-react-proptypes","pkgfiles","babel-plugin-transform-es2015-block-scoped-functions", -"babel-plugin-transform-es2015-duplicate-keys","babel-plugin-transform-es2015-for-of", -"babel-plugin-transform-es2015-function-name","babel-plugin-transform-es2015-literals", -"babel-plugin-transform-es2015-modules-amd","babel-plugin-transform-es2015-modules-systemjs", -"babel-plugin-transform-es2015-object-super","babel-plugin-transform-es2015-sticky-regex", -"babel-plugin-transform-es2015-unicode-regex","babel-plugin-transform-exponentiation-operator","electron-to-chromium", -"home-or-tmp","babel-plugin-transform-flow-strip-types","backend-as-a-service","decoder","encoder","sorted-object", -"esm2umd","dependency injection","spa","micro services","real time","decimal","bignumber","gyp","@antv/g2plot", -"react-reconciler","@storybook/addon-options","git-directory-deploy","imports-loader","awesomesauce","memory-streams", -"sparkline","promises-a","deferreds","flow control","dsl","standardx","@astrojs/sitemap","prettier-plugin-astro", -"eyeglass-module","boxes","release-it-lerna-changelog","tslint-plugin-prettier","subarg","module-deps","browser-pack", -"console-browserify","isstream","update-browserslist-db","base-x","ts-standard","decoding","typescript-cached-transpile", -"test262-stream","transpilation", -"esnext","uint8array","built-in","@oclif/plugin-warn-if-update-available","mergician","dtrace-provider","log4j", -"@mscdex/eslint-config","webrtc","chai-jest-snapshot","v8","inspector","callbind","bound","camel","hyphen","separator", -"pascalcase","assert-rejects","scraping","pathval","check-error","assertion-error","strategy","like","similar", -"includes","c12","eslint-plugin-es","querystringify","react-lazy-load","intersection-observer","readdirp","watcher", -"watching","classname","parent-module","uncache","uncached","autocomplete","d","es6-iterator","tad","display","show", -"git-rev","jest-runner-eslint","rollup-plugin-multi-input","tiny-emitter","powershell-utils","copy-paste","progress bar", -"coroutine","mask","@codemirror/search","google-closure-compiler-js","jison","exists","find-replace","is-utf8", -"cachedir","find-node-modules","mocha-multi-reporters","one", -"singleline","strings","coveralls-next","sh","x2js","xdg-basedir","rack","flash","elegant","eco","mote","twig", -"dustjs-linkedin","conventional-changelog-writer","@borderless/ts-scripts","@types/glob-parent","@types/normalize-path", -"qr","ES3","ES2018","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 6","ECMAScript 2015", -"ECMAScript 2016","ECMAScript 2017","ECMAScript 2019","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set", -"WeakMap","WeakSet","TypedArray","Symbol","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate", -"parse-json","hpagent","sha.js","normalize-newline","@fast-check/jest","node-cron","timer","crontab","rotate","shebang", -"pbkdf2","MD5","Base64","source-map-resolve","changelog-verify","eslint-config-nitpick","github-release-from-changelog", -"version-changelog","write-json-file","@types/csso", -"@types/boolbase","features","stages","identifier","@csstools/css-syntax-patches-for-csstree","@webref/css", -"CSSStyleDeclaration","StyleSheet","@types/chokidar","tsv","@types/lodash.set","stack-chain","uid","spies","stubs", -"conventional-commit-types","d3-dsv","d3-path","d3-force","d3-format","d3-random","d3-polygon","d3-hierarchy", -"d3-interpolate","d3-scale-chromatic","topojson-client","@observablehq/runtime","statistics","tailwind react", -"tailwind vue","tailwind next","tailwind nuxt","tailwind svelte","tailwind astro","tailwind laravel","reverse","switch", -"decompress-unzip","bz2","tar.gz","console-fail-test","eslint-plugin-deprecation","prettier-plugin-curly", -"should-semantic-release","yaml-eslint-parser","difference","is-arguments","is-date-object","side-channel","has-proto", -"equality","presentable-error","trash","unlink","cleaning","temp-write","callsite","read-package-json","infer", -"identify","tab","@eggjs/tsconfig","port","jsdiff", -"handlebars-loader","eslint-import-resolver-alias","Edge","matrix","iterative","insertion","deletion","backend-manager", -"cache-point","file-set","jsonify","doc-detective-common","doc-detective-resolver","@puppeteer/browsers","geckodriver", -"@balena/dockerignore","@grpc/proto-loader","istextorbinary","jschardet","assert-helpers","kava","projectz", -"valid-directory","content management system","dpdm","ghost","micromark-util-character","parse-filepath","chdir", -"tree-node-cli","imagemin-optipng","imagemin-gifsicle","glob-promise","websites","unist-util-is","simulant","height", -"domelementtype","@types/trusted-types","qunit-tap","secure","sanitizer","purify",".env","interpolation","repo", -"tarball","spawn-please","alex","babel-preset-fbjs","cypress-file-upload","dragndrop","drag and drop", -"@definitelytyped/utils","@definitelytyped/header-parser","@definitelytyped/typescript-versions", -"@types/strip-json-comments","@types/pixelmatch","eslint-plugin-lodash","os-locale","@types/vinyl-fs","fix", +"@babel/plugin-transform-spread","@babel/plugin-transform-modules-umd","@babel/plugin-transform-regenerator","@babel/plugin-transform-destructuring","@babel/plugin-transform-dynamic-import","@babel/plugin-transform-modules-systemjs","@babel/plugin-transform-numeric-separator","@babel/plugin-transform-optional-chaining","@babel/plugin-transform-async-to-generator","@babel/plugin-transform-optional-catch-binding","@babel/plugin-transform-private-property-in-object", +"@babel/plugin-transform-logical-assignment-operators","pirates","@cucumber/gherkin-streams","json-schema-merge-allof","markdown-it-footnote","svg-pan-zoom","feature","async-exit-hook","@changesets/get-release-plan","chokidar-cli","chat","social","angular2","ng","ckeditor5-build","@ckeditor/ckeditor5-editor-classic","@ckeditor/ckeditor5-alignment","@ckeditor/ckeditor5-editor-decoupled","@ckeditor/ckeditor5-editor-inline","ckeditor5-lib","@ckeditor/ckeditor5-watchdog","@ckeditor/ckeditor5-select-all", +"@types/color-convert","@commitlint/lint","@commitlint/load","@commitlint/test","@commitlint/utils","@compodoc/live-server","@compodoc/ngd-transformer","loglevel-plugin-prefix","neotraverse","messages","@docsearch/css","find-unused-sass-variables","vnu-jar","mobile-first","media query","declarations","progressive","assertion-error-formatter","knuth-shuffle-seeded","util-arity","@types/mustache","@types/mz","dependency-lint","gherkin","@types/signale","jest-mock-process","signale","@diplodoc/tabs-extension", +"get-root-node-polyfill","markdownlint-rule-helpers","@types/sanitize-html", +"esbuild-sass-plugin","yfm","magic-bytes.js","@discordjs/util","discord-api-types","@sapphire/snowflake","@discordjs/scripts","@favware/cliff-jumper","@discordjs/api-extractor","discordapp","@apidevtools/swagger-parser","@types/html-escaper","memorystore","minisearch","sql.js","@types/body-parser","esbuild-wasm","@wordpress/dependency-extraction-webpack-plugin","swc-loader",".d.ts","definitions","@emotion/sheet","@emotion/utils","decko","json-pointer","openapi-sampler","react-tabs","stickyfill", +"url-template","@hot-loader/react-dom","@types/dompurify","@types/enzyme-to-json","@types/json-pointer","@types/tapable","lodash.noop","unfetch","OpenAPI Specification","Swagger","font family","google fonts","inter","typeface","awesome","node-abi","@graphql-markdown/logger","@graphql-markdown/utils","@graphql-markdown/types","graphql-schema","graphql-markdown","@docusaurus/types","@tailwindcss/typography","basename","filemanager-webpack-plugin","@hapi/hoek","@hapi/topo","@hapi/eslint-plugin","@hapi/wreck", +"@standard-schema/utils","@sinclair/typebox","@vinejs/vine","arktype","computed-types","fluentvalidation-ts","fp-ts", +"io-ts","scheme","nope","TypeBox","translate","vue 3.x","@inquirer/testing","@stencil/core","playwright-core","@tanstack/react-virtual","eslint-plugin-require-extensions","design-system","ux","@jest/pattern","@jest/reporters","exit-x","jest-haste-map","jest-message-util","jest-regex-util","jest-watcher","easy","immersive","@jest/schemas","@types/istanbul-lib-coverage","@types/istanbul-reports","redux-mock-store","rollup-plugin-import-css","docopt","glob2base","babel-plugin-transform-builtin-extend", +"opn-cli","@inquirer/input","syntax-highlight","json-api","@types/mdx","@microsoft/api-extractor-model","alpha","jju","HTTP","@open-draft/deferred-promise","is-node-process","outvariant","@open-draft/test-server","@ossjs/release","@types/express-fileupload","@types/follow-redirects","vitest-environment-miniflare","webpack-http-server","system","datepicker","datetimepicker","@shikijs/transformers","@theguild/remark-npm2yarn","rehype-pretty-code","webpack-virtual-modules","@types/color","posthtml-render", +"posthtml-parser","rehype-format","hast-util-has-property","@isaacs/string-locale-compare","@npmcli/fs","@npmcli/metavuln-calculator","@npmcli/name-from-folder", +"bin-links","common-ancestor-path","npm-install-checks","parse-conflict-json","treeverse","spawk","highlights","language-ini","property-ttl","language-dart","language-glsl","language-haxe","language-rust","lodash.pickby","language-erlang","language-stylus","highlights-tokens","atom-language-diff","atom-language-nginx","github-url-to-object","markdown-it-expand-tabs","markdown-it-lazy-headers","oniguruma","intercept-stdout","ESLint","@nestjs/schematics","@oclif/errors","@oclif/parser","@types/indent-string", +"@types/wrap-ansi","clean-stack","@types/clean-stack","octokit","vue-components","@otterhttp/content-type","@otterhttp/errors","send-file","randexp","@types/ramda","@types/stack-utils","glob-bin","putout","typedoc-plugin-no-inherit","annotate","information","typography","@webcomponents/shadycss","fontkit","ps-tree","github-api","app-module-path","better-ajv-errors","@metalsmith/markdown","eslint-formatter-codeframe","gui","mixins","@mdi/font","animate.css","bootstrap-icons","@types/three", +"@storybook/testing-library","@types/testing-library__jest-dom","glb","@size-limit/webpack", +"@testing-library/react-render-stream","@types/babel__helper-module-imports","esbuild-extra","starter","redux-toolkit","require-relative","is-module","string-capitalize","cpx","sanity","@unhead/vue","@scalar/openapi-parser","@scalar/openapi-types","vite-plugin-banner","@serenity-js/core","@serenity-js/rest","@serenity-js/web","tiny-types","@integration/testing-tools","@types/html-minifier","mocha-multi","serenity","serenity-js","screenplay","screenplay-pattern","@wdio/cli","@wdio/local-runner", +"@wdio/spec-reporter","@wdio/types","@mochify/cli","@mochify/driver-puppeteer","@mochify/driver-webdriver","telejson","memoizerific","storybook-addon","essentials","@ant-design/cssinjs","@ant-design/react-slick","@rc-component/tour","rc-dialog","rc-drawer","rc-menu","rc-progress","rc-trigger","@storybook/addons","@storybook/theming","@types/react-resizable","bundlesize2","duplicate-package-checker-webpack-plugin","sylvanas","@supernova-studio/client","@supernova-studio/model","abab","color2k","parse-color", +"trash-cli","@sveltejs/acorn-typescript","dts-buddy","official","@svgr/plugin-svgo","svgr","swc","rust","stylelint-prettier", +"ui library","symbiote.js","microfrontends","shadow root","MIT","tanem-scripts","@tanstack/query-test-utils","dom-accessibility-api","jest-watch-select-projects","jest-environment-jsdom-sixteen","testing-library","dotenv-cli","@types/jest-in-case","jest-serializer-ansi","eslint-plugin-local-rules","@tinyhttp/vary","supertest-fetch","headers","@tinyhttp/content-type","params","ebs","@typescript-eslint/visitor-keys","title-case","component-classes","mini-store","@types/raf","@udecode/slate","@udecode/utils", +"@udecode/react-utils","@udecode/react-hotkeys","@uiw/react-overlay","prom-client","@uploadcare/cname-prefix","shipjs","@biomejs/js-api","@biomejs/wasm-nodejs","@total-typescript/ts-reset","@happy-dom/global-registrator","@csstools/postcss-cascade-layers","uploadcare","file uploader","browserslist-to-esbuild","@babel/plugin-transform-react-jsx-source","fast refresh","comlink","react-loading-skeleton","codesandbox-import-utils","dumi-theme-mobile","rollup-plugin-babel-minify","rollup-watch","negotiation", +"accept","arch","cron-parser","blockchain-bend4","blockchain-meat7","cent-matter-to","closer-composed-particularly-shout","correct-home-silent7","course-whenever-merely","exchange-known-bend","lay-rest-hour","material-balance-trade-solar","meat-think-stove8", +"recently-done-should-moon","scientific-exist-event2","stay-including","engine.io","engine.io-client","find-nearest-file","globs-to-files","load-script","make-promises-safe","simple-get","json-schema-traverse","@ajv-validator/config","if-node-version","json-schema-test","json-schema-validator","longjohn","ember-cli-normalize-entity-name","ember-cli-string-utils","isbinaryfile","gray","inverse","red","strikethrough","escapes","vt100","@emotion/unitless","array-tree-filter","dom-scroll-into-view", +"shallow-equal","@types/koa","@types/lru-cache","@vue/babel-plugin-jsx","@webpack-cli/serve","babel-plugin-inline-import-data-uri","docsearch.js","enquire-js","gulp-strip-code","is-windows","json-templater","less-plugin-npm-import","majo","markdown-it-table-of-contents","remark-yaml-config","reqwest","rucksack-css","string-replace-loader","@rc-component/trigger","runes2","spinnies","vanilla-tilt","react-countup","@prettier/sync","@types/ali-oss","@types/spinnies","@types/nprogress","lunar-typescript", +"@types/http-server","@types/cli-progress","@ant-design/compatible","@types/isomorphic-fetch","dumi-plugin-color-chunk","@microflash/rehype-figure","circular-dependency-plugin","@ant-design/happy-work-theme", +"@madccc/duplicate-package-checker-webpack-plugin","apple","iOS","apollo-cache","@types/zen-observable","jsnext","@types/graphql","node_modules","asyncbox","teen_process","@azure/core-auth","@opentelemetry/core","@opentelemetry/api-logs","@opentelemetry/sdk-logs","@opentelemetry/sdk-metrics","@opentelemetry/exporter-metrics-otlp-proto","microsoft","analytics","@aws-sdk/types","projen","gql","buffer-crc32","Array.prototype.flatMap","Array.prototype.flatten","ensure","is-nan","rollup-plugin-npm","shrinkwrap", +"parse-github-url","babel-plugin-rewire","detective","fraction.js","callsites","code-excerpt","common-path-prefix","emittery","ignore-by-default","observable","ieee754","jmespath","insert-module-globals","sqs","ses","swf","workflow","waf","colorjs.io","typedarray","emoji-regex","revalidator","proxy-from-env","rollup-plugin-bundle-size","istanbul-instrumenter-loader","md5.js","babel-helpers","babel-preset-power-assert","airbnb-js-shims","@umijs/test","babel-preset-umi","@istanbuljs/load-nyc-config", +"instrumentation","require-package-name","find-babel-config","resolver", +"alias","rewrite","mapping","babel-plugin-syntax-async-functions","babel-plugin-syntax-object-rest-spread","babel-plugin-flow-react-proptypes","pkgfiles","babel-plugin-transform-es2015-block-scoped-functions","babel-plugin-transform-es2015-duplicate-keys","babel-plugin-transform-es2015-for-of","babel-plugin-transform-es2015-function-name","babel-plugin-transform-es2015-literals","babel-plugin-transform-es2015-modules-amd","babel-plugin-transform-es2015-modules-systemjs", +"babel-plugin-transform-es2015-object-super","babel-plugin-transform-es2015-sticky-regex","babel-plugin-transform-es2015-unicode-regex","babel-plugin-transform-exponentiation-operator","electron-to-chromium","home-or-tmp","babel-plugin-transform-flow-strip-types","backend-as-a-service","decoder","encoder","sorted-object","esm2umd","dependency injection","spa","micro services","real time","decimal","bignumber","gyp","@antv/g2plot","react-reconciler","@storybook/addon-options","git-directory-deploy", +"imports-loader","awesomesauce","memory-streams","sparkline","promises-a","deferreds","flow control","dsl","standardx","@astrojs/sitemap","prettier-plugin-astro","eyeglass-module","boxes","release-it-lerna-changelog","tslint-plugin-prettier","subarg","module-deps","browser-pack","console-browserify","isstream","update-browserslist-db","base-x","ts-standard","decoding","typescript-cached-transpile","test262-stream","transpilation", +"esnext","uint8array","built-in","@oclif/plugin-warn-if-update-available","mergician","dtrace-provider","log4j","@mscdex/eslint-config","webrtc","chai-jest-snapshot","v8","inspector","callbind","bound","camel","hyphen","separator","pascalcase","assert-rejects","scraping","pathval","check-error","assertion-error","strategy","like","similar","includes","c12","eslint-plugin-es","querystringify","react-lazy-load","intersection-observer","readdirp","watcher","watching","classname","parent-module","uncache", +"uncached","autocomplete","d","es6-iterator","tad","display","show","git-rev","jest-runner-eslint","rollup-plugin-multi-input","tiny-emitter","powershell-utils","copy-paste","progress bar","coroutine","mask","@codemirror/search","google-closure-compiler-js","jison","exists","find-replace","is-utf8","cachedir","find-node-modules","mocha-multi-reporters","one", +"singleline","strings","coveralls-next","sh","x2js","xdg-basedir","rack","flash","elegant","eco","mote","twig","dustjs-linkedin","conventional-changelog-writer","@borderless/ts-scripts","@types/glob-parent","@types/normalize-path","qr","ES3","ES2018","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 6","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2019","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Symbol","AsyncIterator", +"URL","URLSearchParams","queueMicrotask","setImmediate","parse-json","hpagent","sha.js","normalize-newline","@fast-check/jest","node-cron","timer","crontab","rotate","shebang","pbkdf2","MD5","Base64","source-map-resolve","changelog-verify","eslint-config-nitpick","github-release-from-changelog","version-changelog","write-json-file","@types/csso", +"@types/boolbase","features","stages","identifier","@csstools/css-syntax-patches-for-csstree","@webref/css","CSSStyleDeclaration","StyleSheet","@types/chokidar","tsv","@types/lodash.set","stack-chain","uid","spies","stubs","conventional-commit-types","d3-dsv","d3-path","d3-force","d3-format","d3-random","d3-polygon","d3-hierarchy","d3-interpolate","d3-scale-chromatic","topojson-client","@observablehq/runtime","statistics","tailwind react","tailwind vue","tailwind next","tailwind nuxt","tailwind svelte", +"tailwind astro","tailwind laravel","reverse","switch","decompress-unzip","bz2","tar.gz","console-fail-test","eslint-plugin-deprecation","prettier-plugin-curly","should-semantic-release","yaml-eslint-parser","difference","is-arguments","is-date-object","side-channel","has-proto","equality","presentable-error","trash","unlink","cleaning","temp-write","callsite","read-package-json","infer","identify","tab","@eggjs/tsconfig","port","jsdiff", +"handlebars-loader","eslint-import-resolver-alias","Edge","matrix","iterative","insertion","deletion","backend-manager","cache-point","file-set","jsonify","doc-detective-common","doc-detective-resolver","@puppeteer/browsers","geckodriver","@balena/dockerignore","@grpc/proto-loader","istextorbinary","jschardet","assert-helpers","kava","projectz","valid-directory","content management system","dpdm","ghost","micromark-util-character","parse-filepath","chdir","tree-node-cli","imagemin-optipng", +"imagemin-gifsicle","glob-promise","websites","unist-util-is","simulant","height","domelementtype","@types/trusted-types","qunit-tap","secure","sanitizer","purify",".env","interpolation","repo","tarball","spawn-please","alex","babel-preset-fbjs","cypress-file-upload","dragndrop","drag and drop","@definitelytyped/utils","@definitelytyped/header-parser","@definitelytyped/typescript-versions","@types/strip-json-comments","@types/pixelmatch","eslint-plugin-lodash","os-locale","@types/vinyl-fs","fix", "null-loader","grunt-contrib-compress", -"dmg","Windows","flatpak","@electron/asar","junk","rcedit","markdown-it-chain","lad","lass","smtp-server", -"calculate-cache-key-for-tree","core-object","p-defer","promise-map-series","quick-temp","sane","symlink-or-copy", -"tree-sync","watch-detector","chai-files","fixturify-project","ember","babel-plugin-debug-macros", -"@ember/optional-features","@ember/test-helpers","code-equality-assertions","ember-auto-import", -"ember-load-initializers","ember-qunit","ember-resolver","ember-source","ember-source-channel-url","eslint-plugin-ember", -"ember-addon","js-string-escape","enum","reporting","array.prototype.flat","function.prototype.name","is-callable", -"lodash.escape","has-bigints","make-arrow-function","@types/call-bind","@types/has-bigints","@types/has-symbols", -"@types/make-arrow-function","@types/make-async-function","@types/make-generator-function","@types/object.assign", -"fixtures","next-tick","addons","extras","broccoli-rollup","git-repo-version","broccoli-watchify","broccoli-uglify-js", -"babel6-plugin-strip-class-callcheck","babel-plugin-transform-es2015-constants","futures","__proto__", -"@eslint/plugin-kit","file-entry-cache", -"@types/esquery","eslint-plugin-expect-type","eslint-release","eslump","fs-teardown","node-polyfill-webpack-plugin", -"npm-license","eslint-find-rules","eslint config","automd","xoxo","happy","happiness","unrs-resolver", -"commitlint-azure-pipelines-cli","eslint-ava-rule-tester","@vuepress/plugin-pwa","comment","directive","@types/espree", -"gitdown","eslint-config-canonical","markdown-link-check","@angular-eslint/template-parser","spdx-expression-parse", -"@types/natural-compare","stylelint-config-recommended-vue","jsonc","jsx-ast-utils","to-ast","string.prototype.repeat", -"ls-engines","@types/estree-jsx","regexp-ast-analysis","@types/pako","mocha-chai-jest-snapshot","safe-regex", -"eslint-config-nodesecurity","nodesecurity","@types/postcss-safe-parser","regexp-tree","json-diff", -"karma-safaritechpreview-launcher","ethereum-cryptography","@types/assert","karma-typescript","os-tmpdir","qs-iconv", -"stream-combiner","flatmap","join","eventemitter","addEventListener","addListener","pub/sub","on","Events", -"eventEmitter","eventDispatcher","listeners","@sindresorhus/merge-streams","is-running","subprocess","binaries", -"stdio","@jest/expect-utils","@jest/get-type","type-check","pbkdf2-password","setprototypeof","autogenerate", -"autogenerator","autogenerated","authz","helpers","type-safe","unit-testing","covert","benchmarked","shallow", -"gulp-mustache","color-support","timestamp","pure-rand","jsverify","@nodelib/fs.walk","hereby","snap-shot-it","js2xml", -"json2xml","click","@fastify/error","find-my-way","process-warning","secure-json-parse","markdownlint-cli2","piscina", -"typescript-transform-paths","babel-plugin-minify-dead-code-elimination","web component","scanner", -"@types/glob-to-regexp","glob-to-regexp","art","banner","figure","fallback","pic","video","icns","psd","ico","cfb", -"docx","jp2","ods","heic","cur","jxl","icc","xlsm","jar","@firebase/app-compat","@firebase/auth-compat", -"@firebase/database-compat","Firebase","@types/bcrypt","@electric-sql/pglite-tools", -"gaxios","stream-json","universal-analytics","cdn","matcher-collection","@types/acorn","util-extend","sequential", -"fabric","@tailwindcss/postcss","cjs","react-addons-test-utils","redirect","location","@types/is-callable", -"forever-monitor","getopts","cli-testlab","jest-circus","combined-stream","@paralleldrive/cuid2","formdata-polyfill", -"hoc","read-dir-files","extra","mkdirs","output","any-promise","thenify-all","globule","insight","nitro","modular", -"pooling","iterable","reduce","available","scan","readablestream","deno","lodash.clone","opt-cli", -"eslint-config-kentcdodds","@primer/octicons","min-document","glob-stream","fnmatch","paths","java","google drive", -"@types/nunjucks","js-green-licenses","linkinator","pdfmake","lowercase-keys","p-cancelable","@hapi/bourne","requests", -"gulp-cli","strip-bom-string","assemble","coffee","google-protobuf","grunt-known-options", -"perf","compass","maxmin","less-plugin-clean-css","vow","@commitlint/travis-cli","TDD","grunt-release", -"spritesheet-templates","url2","eslint-config-twolfson","foundry","foundry-release-git","foundry-release-npm","usemin", -"@types/json5","series","gulp-footer","atom","prefixes","rewriting","bom","mark","versioning","object.pick", -"change-file-extension","mtime","rework","conflict","webserver","csscomb","rcloader","balanced-match","streamfilter", -"separate","@shinnn/eslint-config-node-legacy","any-shell-escape","nid","metapak","metapak-nfroidure","gulp-match", -"ternary-stream","exclude","imagemin-webp","strip-color","stylesheets","webcomponents","isparta","plugins","ng-annotate", -"easy-transform-stream","views","precompile","rev","revision","source-maps","sftp","@types/lodash.template", -"brotli-size","rwd","rendering","@types/ansi-colors","eslint-plugin-no-use-extend-native","array-uniq", -"lodash._reinterpolate","lodash.templatesettings","anymatch","proxy-middleware","catering", -"remark-lint-hard-break-spaces","remark-lint-list-item-indent","remark-validate-links","grunt-string-replace","gestures", -"grunt-contrib-requirejs","ammo","shot","wreck","vision","getopt","@types/core-js","sham","function-bind","hasOwn", -"hast-util-from-parse5","web-namespaces","estree-util-is-identifier-name","mdast-util-mdx-expression", -"esast-util-from-js","hyperscript","@vue/compiler-dom","js-yaml-js-types","moize","grunt-gh-pages","oxc-parser", -"wrangler","cloudflare","workers","@exodus/bytes","@types/he","commitlint-config-non-conventional","capture","mail", -"pug-loader","postproccessor","requires-port","agent-base","eol","@types/async-retry","post","camelize","demodulize", -"ordinalize","tableize","classify","foreign_key","gh-release","i18next-browser-languagedetector","unorm","identity", -"tiff","ow","p-pipe","image-dimensions","deep-freeze","every","renderToString","humanize", -"@types/signal-exit","eslint-config-xo-react","run-async","reify","yml", -"babel-plugin-transform-es3-member-expression-literals","babel-plugin-transform-es3-property-literals", -"babel-preset-es2015-rollup","prettier-eslint","country","leek","ssh-config","@ionic/utils-stream", -"@ionic/cli-framework","@ionic/utils-network","@ionic/utils-process","@ionic/utils-subprocess", -"@ionic/cli-framework-prompts","custom element","denque","extglob","globstar","pure","kind","writable", -"is-inside-container","compression-webpack-plugin","jstransformer-cdata","jstransformer-coffee-script", -"jstransformer-less","jstransformer-stylus","jstransformer-verbatim","stop","youtube","eslint-plugin-jasmine", -"@jest/fake-timers","jest-serializer-ansi-escapes","babel-plugin-add-import-extension","worker-farm", -"vite-plugin-node-polyfills","@rspack/cli","solid-js","firmata","Joystick","raspberry pi","robotics","rpi","usb", -"commitplease","grunt-git-authors","eslint-config-jquery","gzip-js","rollup-plugin-node-polyfills","cst", -"reserved-words","saxes","selenium-standalone","stylish","sort-on","dummy","jsonparse","trees","inflate", -"karma-junit-reporter", -"karma-script-launcher","hat","browserify-tool","browserstack-local","karma-reporter","firefox","safari","global-agent", -"lru.min","key-value","tarn","pg-query-stream","analyze","duplicate","workspace","lodash.sortby","explorer", -"gen-esm-wrapper","co-body","urlencoded","compose","mount","cpr","semver-regex","latest","karma-expect", -"prosthetic-hand","eslint-config-mourner","padding","numbers","cmd-shim","p-reduce","byte-size","has-unicode", -"libnpmaccess","libnpmpublish","load-json-file","init-package-json","validate-npm-package-license","copy-anything", -"benny","jit-grunt","less-plugin-autoprefix","mocha-teamcity-reporter","compile less","css variable","gradients css3", -"less css","less mixins","lesscss","nested css","bootstrap css","bootstrap less","airtap-playwright", -"@voxpelli/tsconfig","leveldb","async-each","level-concat-iterator","queue-microtask","airtap-sauce","levenshtein", -"levenshtein-edit-distance","comparison","matching", -"promise-retry","autolink","livereload-js","lws-static","full-stack","grunt-rollup","grunt-ts","isequal","omit", -"event-emitter","refresh","grunt-open","uid2","strong-remoting","loopback-datasource-juggler","StrongLoop","mBaaS", -"@commitlint/prompt-cli","embed","embedded","flip","mirror","fade","opacity","load-module","y18n","open-source","office", -"@nestjs/common","@nestjs/core","@nestjs/swagger","@nestjs/typeorm","@yarnpkg/lockfile","@codecov/bundle-analyzer", -"@nestjs/testing","crud","yaml-config","prototype","startup","@next/eslint-plugin-next","markdown-it-for-inline", -"markdown-it-sub","ndoc","emoticons","rows","theredoc","repeat-string","links","micromark-core-commonmark","jsonpointer", -"recheck","inline-style-prefixer","ndarray","sylvester","numeric","charenc", -"micromark-util-decode-numeric-character-reference","micromark-util-normalize-identifier","micromark-util-symbol", -"commonmark.json","mdast-util","micromark-util-sanitize-uri","mozilla","hashring", -"hashing","in-memory","fsa","fast-memoize","nanocolors","@babel/plugin-syntax-import-meta","fill-range","expansion", -"@types/mime-db","release-please","runmd","min heap","heap","priorityqueue","priority","searching","brace-expansion", -"make dir","conditional-type-checks","mobservable","mobx-react-lite","expose-gc","headless-chrome","test-console", -"junit","gopd","has-property-descriptors","descriptor","define","unittest","v8-natives","services","timezone","tz", -"vscode-languageserver-types","vscode-uri","@codemirror/lang-javascript","@cypress/code-coverage","GUI","UI","socks", -"mongodb-client-encryption","@aws-sdk/credential-providers","mongodb-runner","odm","datastore","backbone-callbacks", -"node-monitor","remote control","@types/mongodb","@fastify/websocket","json-bigint","pend","karma-story-reporter", -"timezone-mock","thenify","couchdb","@types/byline","@types/archiver","@types/marked-terminal","@types/npmcli__arborist", -"pegjs","sentiment analysis","nest", -"import-in-the-middle","require-in-the-middle","git-raw-commits","debugging","@edge-runtime/jest-environment", -"@types/nodemailer","@sinonjs/referee","mochify","internal","skeleton","tap-xunit","karma-tap-reporter","worker-loader", -"aes","gcm","sha256","sha512","messaging","maps","require-inject","biased-opener","pty","daemon","excel","xls","webkit", -"express-ws","jsonpath-plus","absolute","backslash","normalization","is-interactive","new-github-release-url","archy", -"fs-minipass","@npmcli/config","json-parse-even-better-errors","@npmcli/git","package manager","rc-config-loader", -"updater","jsonlines","vite-bundle-analyzer","versions","esbuild-node-externals","minizlib","babel-preset-latest","asap", -"node-libs-browser","node-machine-id","@yarnpkg/parsers","@napi-rs/wasm-runtime","Mobile","@readme/openapi-parser", -"gulp-exec","globalthis","util.inspect","access","notation","es-object-atoms","Object.assign","$.extend","_.extend", -"Object.values", -"entries","wrappy","define-lazy-prop","opens","xdg-open","hashish","livescript","yauzl-promise","@types/yauzl-promise", -"vscode","fifo","proclaim","compliance","screenshots","screengrab","para","idb-keyval","exist","zeptomatch","png-js", -"postgre","rdbms","sonic-boom","plurals","count","pidusage","logs","kubernetes","keymetrics","tap-dot", -"dependency manager","hardlinks","uninstall","popperjs","ports","manipulation","calc","read-cache", -"eslint-config-problems","comma","hsl","hwb","pleeease-filters","postcss-attribute-case-insensitive", -"postcss-color-hex-alpha","postcss-color-rebeccapurple","postcss-font-variant","postcss-pseudo-class-any-link", -"postcss-replace-overflow-wrap","postcss-selector-not","cssnext","at-rule","atrule","media","queries","declarative", -"@types/cssesc","@csstools/selector-resolve-nested","@csstools/postcss-oklab-function","transformations","processor", -"precommit","virtual dom","jest-light-runner", -"locale","error-handling","@pkgr/core","vcs","ohash","openapi-fetch","xdg-app-paths","get-port-please", -"openapi-typescript","@prisma/get-platform","@types/better-sqlite3","SQLite","PostgreSQL","MySQL","MariaDB","uglifyify", -"uglifyjs","alpha-sort","mdast-zone","git-semver-tags","protocol-buffers","@types/q","puppeteer-core","filter-obj", -"item","fuzzysort","grunt-search","browserstack-runner","xyz","tacit","fantasy-land","exceptions", -"babel-plugin-transform-rename-import","color picker","dnd-core","@types/doctrine", -"@babel/plugin-proposal-pipeline-operator","yarn-deduplicate","viewport","@webcomponents/custom-elements", -"isparta-loader","nullthrows","metro-runtime","metro-source-map","flow-enums-runtime","@react-native/codegen", -"@react-native/js-polyfills","@react-native/gradle-plugin","@react-native/assets-registry", -"@react-native/normalize-colors","@jest/create-cache-key-function","babel-plugin-syntax-hermes-parser", -"@react-native/community-cli-plugin","macos","@types/use-sync-external-store","wireit","combobox", -"@playwright/experimental-ct-react","slick","listify","@types/hash-sum","snackbar","esprima-fb", -"jest-environment-puppeteer", -"scrolling","infinite","virtualized","@storybook/addon-storysource","repl","@cfaester/enzyme-adapter-react-18", -"netlify-plugin-cache","replay","flux-standard-action","thunk","is-hidden","mermaid-isomorphic","remark-comment-config", -"remark-lint-definition-spacing","remark-lint-fenced-code-flag","remark-lint-file-extension", -"remark-lint-final-definition","remark-lint-first-heading-level","remark-lint-heading-style", -"remark-lint-no-consecutive-blank-lines","remark-lint-no-emphasis-as-heading","remark-lint-no-file-name-articles", -"remark-lint-no-file-name-consecutive-dashes","remark-lint-no-file-name-irregular-characters", -"remark-lint-no-file-name-mixed-case","remark-lint-no-file-name-outer-dashes","remark-lint-no-heading-indent", -"remark-lint-no-missing-blank-lines","remark-lint-no-multiple-toplevel-headings","remark-lint-no-shell-dollars", -"remark-lint-no-table-indentation","remark-lint-no-tabs","remark-lint-ordered-list-marker-value", -"remark-lint-table-pipe-alignment","remark-retext","retext-english","http-signature","karma-cli","stealthy-require", -"request-promise-core","thenable","@typescript-eslint/eslint-plugin-tslint","ResizeObserver","copy-dir","spdy","sigterm", -"kill","deepclone","performant","fast-clone","fast-deep-clone","rm -rf","rm -fr","prebuild","machine","date-time", -"bundling","rollup-plugin-prettier","buffer-es6","process-es6","graphlib","@types/d3-shape","treemap", -"@babel/plugin-syntax-bigint", -"@capsizecss/metrics","@edge-runtime/cookies","@edge-runtime/ponyfill","@edge-runtime/primitives","@napi-rs/triples", -"@next/polyfill-module","@next/polyfill-nomodule","@next/react-refresh-utils","@next/swc","@taskr/clear","@taskr/esnext", -"@types/ci-info","@types/content-disposition","@types/fresh","@types/lodash.curry","@types/path-to-regexp", -"@types/platform","@types/send","cli-select","comment-json","edge-runtime","ignore-loader","lodash.curry","native-url", -"taskr","unistore","@types/source-map","Streams","Stream","@sailshq/lodash","flaverr","parley","rttc","sails.js", -"parse-srcset","helpful","opensourcesoftware","teaching","experimentation","applications","eslint-config-standard-jsx", -"standard-engine","ibm_db","mariadb","hardware","is-port-reachable","@aws-sdk/client-dynamodb","@aws-sdk/client-sns", -"@aws-sdk/client-sqs","@aws-sdk/client-sts","@aws-sdk/lib-dynamodb","@aws-sdk/util-dynamodb","aws-cdk-lib", -"esbuild-runner","quote","shelljs-changelog","shelljs-release","custom-event","rollup-plugin-analyzer","vendor", -"totalist","@types/sax","eventsource","sockjs", -"separated","@graphql-tools/merge","@graphql-tools/utils","graphql-scalars","json-stringify-pretty-compact","imageinfo", -"run-parallel-limit","std-mocks","modern-syslog","@storybook/global","@vitest/utils","launch-editor","unique-string", -"@types/detect-port","@radix-ui/react-slot","@types/pretty-hrtime","component-testing","@storybook/addon-onboarding", -"@storybook/test","django","columns","fullwidth","full-width","fixed-width","east-asian-width","strong-agent", -"strong-supervisor","core-util-is","metrics","npmrc","response","@types/stylis","@types/react-frame-component", -"react-frame-component","@changesets/get-github-info","@stylelint/prettier-config","@stylelint/remark-preset", -"eslint-config-stylelint","cookiejar","sw-precache","framework7","sync-rpc","cpu","processes","gpu","audio", -"resolve-import","ecstatic","brittle","actor system","DDD","actor-system","back end","tdlib","tempdir","tmpfile", -"unique","charm","elegant-spinner","automated","@types/tar-fs","codeclimate-test-reporter","jpeg-js","3d", -"webgl","get-port-cli","streams2","homedir","tilde","collapse","tldts","bs-logger","make-error","migrations", -"@tsd/typescript","Microsoft","fix-dts-default-cjs-exports","ts-essentials","DOM","generics","typedoc-plugin", -"typedocplugin","latex","azure-devops-node-api","retext","unist-util","jquery-plugin","ecosystem:jquery","@types/busboy", -"@vue/runtime-core","@vercel/routing-utils","artichokie","periscopic","http-proxy-3","host-validation-middleware", -"@vueuse/integrations","tinyrainbow","@vitest/runner","local-pkg","@edge-runtime/vm","@antfu/install-pkg","eyes","BDD", -"@types/cheerio","eslint-plugin-vue-libs","cache-loader","zoomable","ansi-html-community","klona","taffydb","logform", -"@dabh/eslint-config-populist","winston-compat","Push","WebSockets","jsonpath","whitelist","@yeoman/namespace", -"@yeoman/transform","@yeoman/types","mem-fs-editor","@yeoman/eslint","esmocha","@types/cookie-parser","@types/morgan", -"@types/systemjs","pose","react pose", -"framer","waapi","@docusaurus/module-type-aliases","@testing-library/preact","babel-preset-react-native","get-pkg-repo", -"textarea","@augment-vir/core","@date-vir/duration","@web/dev-server-esbuild","istanbul-smart-text-reporter","augment", -"vir","augment-vir","@svgr/babel-preset","svg-url-loader","@vue/cli-plugin-babel","@vue/cli-plugin-typescript", -"@vue/cli-service","eslint-plugin-prettier-vue","vue 3","bplist-parser","minimal","gdpr","slide", -"@chromatic-com/storybook","@storybook/addon-webpack5-compiler-babel","chromatic","animatable","customizable", -"babel-plugin-dev-expression","vitest-axe","sortable","reorder","@rollup/plugin-eslint","scope","codeceptjs", -"@intlayer/config","@intlayer/types","@utils/ts-config","@utils/ts-config-types","@utils/tsdown-config","@enact/i18n", -"ilib","ahooks","@reporters/github","admin panel","self hosted","lernajs","vuepress-plugin-container", -"@types/lodash.isnumber","@walletconnect/legacy-types","@walletconnect/legacy-utils","center","selenium-mock", -"body scroll","body scroll lock","react scroll lock","react scroll","freeze","disable","overflow","vanilla-js","bsl", -"broccoli-node-info","verb","what-the-diff","gotrue-js","git-gateway","gateway","creator","vite-plugin-svgr", -"@atomico/rollup-plugin-sizes","convict","@applitools/test-utils","xxhash-wasm","expressots","clean-architecture", -"typescript-framework","withastro","astro-integration","@internal/test-utils","code-blocks","syntax-highlighting", -"eslint-import-resolver-custom-alias","resolve-tspaths","@publint/pack","unplugin-unused","@ckeditor/ckeditor5-comments", -"@ckeditor/ckeditor5-track-changes","CKEditor","WYSIWYG","WYSIWYW","rich-text","visual testing","@tanstack/vue-virtual", -"radix-ui","chatbot","chatgpt","draggable","drizzle-orm","@antfu/ni","survey-renderer","flmngr","@applitools/snippets", -"@antora/asciidoc-loader","vite-plugin-dts-bundle-generator","vite-plugin-pages","vite-plugin-typescript","game","2d", -"replace-in-files-cli","jugglingdb","@alifd/next","@angular/http","@angular/platform-server","@angular/router", -"@ant-design/react-native","@auth/sveltekit","@api-components/api-method-documentation","@apollo/client", -"@babel/runtime-corejs2","@biz-dev-ops/md-docs","@bwcr_/winston-loki","@chatscope/chat-ui-kit-react", -"@ckeditor/ckeditor5-angular","@ckeditor/ckeditor5-build-balloon","@ckeditor/ckeditor5-build-balloon-block", -"@ckeditor/ckeditor5-build-classic","@ckeditor/ckeditor5-build-decoupled-document","@ckeditor/ckeditor5-build-inline", -"@ckeditor/ckeditor5-react","@ckeditor/ckeditor5-vue","@compodoc/compodoc","@comunica/core","@contenthook/browser", -"@contenthook/cli","@contenthook/node","@coreui/coreui","@deven-org/documentation-skeleton", -"@devtea2026/aspernatur-ea-non-porro","@devtea2026/consectetur-ab-unde-quisquam", -"@devtea2026/cupiditate-dolorem-excepturi-impedit","@devtea2026/distinctio-soluta-illo-eaque", -"@devtea2026/eum-ullam-est-distinctio","@devtea2026/explicabo-alias-architecto-sed","@devtea2026/improved-journey", -"@devtea2026/inventore-facilis-corporis-cum","@devtea2026/ipsa-omnis-in-molestiae", -"@devtea2026/literate-computing-machine","@devtea2026/maxime-sequi-est-rem", -"@devtea2026/necessitatibus-dolorem-esse-atque","@devtea2026/odit-enim-reiciendis-pariatur", -"@devtea2026/odit-maxime-porro-asperiores","@devtea2026/possimus-ipsa-sint-consequuntur", -"@devtea2026/qui-quos-laborum-amet","@devtea2026/quia-ducimus-placeat-minima", -"@devtea2026/quidem-voluptate-repudiandae-necessitatibus","@devtea2026/rerum-quaerat-porro-animi", -"@devtea2026/ubiquitous-octo-memory","@diotoborg/adipisci-placeat-iure","@diotoborg/amet-architecto-est", -"@diotoborg/at-totam-perspiciatis","@diotoborg/commodi-voluptatum-libero", -"@diotoborg/delectus-necessitatibus-voluptatum","@diotoborg/deserunt-illo-tempora","@diotoborg/dicta-recusandae-veniam", -"@diotoborg/dolor-earum-quia","@diotoborg/dolor-tempora-fuga","@diotoborg/dolores-praesentium-assumenda", -"@diotoborg/eligendi-est-unde","@diotoborg/esse-accusantium-ratione","@diotoborg/illo-amet-architecto", -"@diotoborg/laudantium-itaque-esse","@diotoborg/libero-asperiores-at","@diotoborg/neque-inventore-corporis", -"@diotoborg/nostrum-eveniet-officiis","@diotoborg/odio-dolores-officia","@diotoborg/porro-modi-accusamus", -"@diotoborg/psychic-bassoon","@diotoborg/quasi-repellat-odit","@diotoborg/qui-ullam-ipsum", -"@diotoborg/quo-dolorem-ducimus","@diotoborg/ratione-error-odio","@diotoborg/repellat-blanditiis-quis", -"@diotoborg/tempora-voluptas-distinctio","@diotoborg/ullam-dignissimos-repudiandae","@diotoborg/velit-reiciendis-velit", -"@diotoborg/verbose-robot","@diplodoc/transform","@disqada/workspace","@doc-tools/docs", -"@dramaorg/esse-praesentium-eligendi","@dramaorg/quae-dolore-nostrum","@eas-framework/server", -"@eightshift/frontend-libs","@electron/docs-parser","@erboladaiorg/ad-exercitationem-ducimus", -"@erboladaiorg/asperiores-earum-quaerat","@erboladaiorg/asperiores-fuga-sint","@erboladaiorg/asperiores-nam-adipisci", -"@erboladaiorg/autem-dolores-ipsam","@erboladaiorg/cupiditate-consectetur-porro", -"@erboladaiorg/cupiditate-pariatur-optio","@erboladaiorg/distinctio-tempora-quis","@erboladaiorg/error-atque-ea", -"@erboladaiorg/esse-ipsa-numquam","@erboladaiorg/ex-hic-molestias","@erboladaiorg/explicabo-eius-adipisci", -"@erboladaiorg/molestiae-voluptatibus-perferendis","@erboladaiorg/molestias-nulla-dolor","@erboladaiorg/nisi-culpa-cum", -"@erboladaiorg/officia-illum-aperiam","@erboladaiorg/perspiciatis-magni-ut","@erboladaiorg/quae-in-veniam", -"@erboladaiorg/quaerat-mollitia-adipisci","@erboladaiorg/quibusdam-itaque-tempora","@erboladaiorg/sint-deleniti-dolorem", -"@erboladaiorg/sit-nesciunt-amet","@erboladaiorg/tenetur-architecto-dolore","@erboladaiorg/ut-dignissimos-laborum", -"@erboladaiorg/velit-fugit-harum","@fakeyanss/redoc","@fontsource/inter","@fontsource/roboto","@grandlinex/e-kernel", -"@grandlinex/kernel","@graphql-markdown/core","@graphql-markdown/docusaurus","@hajtech/webpack-config", -"@hishprorg/aliquid-ad-vero","@hishprorg/autem-sint-quas","@hishprorg/cum-rem-consequuntur", -"@hishprorg/earum-sint-veritatis","@hishprorg/eius-vero-dicta","@hishprorg/est-dicta-quis", -"@hishprorg/incidunt-quibusdam-tempore","@hishprorg/itaque-esse-accusamus","@hishprorg/iure-optio-nihil", -"@hishprorg/magni-amet-id","@hishprorg/magni-nisi-aperiam","@hishprorg/maxime-voluptates-enim", -"@hishprorg/nihil-ad-ratione","@hishprorg/perspiciatis-ratione-unde","@hishprorg/quis-perferendis-culpa", -"@hishprorg/reprehenderit-excepturi-sed","@hishprorg/sint-nam-consequuntur","@hishprorg/sunt-officia-eligendi", -"@hishprorg/sunt-voluptatem-nobis","@hishprorg/unde-vitae-reprehenderit","@hishprorg/wafflejs", -"@homer0/prettier-plugin-jsdoc","@hookform/resolvers","@iamtraction/google-translate","@idux/components", -"@itwin/itwinui-react", -"@jsonforms/material-renderers","@juigorg/nisi-molestiae-ut","@juigorg/sit-nam-neque","@jupyterlab/application", -"@kobedevi/sassdoc","@kollorg/dicta-itaque-nemo","@kollorg/nihil-veniam-deserunt","@libphamton/chatfanpage", -"@libphamton/fb-group","@listr2/prompt-adapter-inquirer","@mantine/dates","@mantine/modals","@mantine/prism", -"@mantine/styles","@material-ui/core","@material-ui/icons","@mathematikoi/jsonapi","@middy/http-json-body-parser", -"@ministryofjustice/frontend","@mui/lab","@neato/guider","@ng-doc/ui-kit","@ng-doc/utils","@npmcorp/marky-markdown", -"@npmtuanmap/ex-vel-expedita-impedit","@npmtuanmap/psychic-guide","@npmtuanmap/recusandae-recusandae-nam-et", -"@npmtuanmap/sed-quo-nemo-rerum","@npmtuanmap/velit-esse-velit-magnam","@nrwl/devkit","@nrwl/tao","@nrwl/workspace", -"@nx/esbuild","@nx/express","@nx/nest","@oclif/command","@opentiny/vue","@opentiny/vue-renderless","@opentiny/vue-theme", -"@opentiny/vue-theme-mobile","@otterhttp/response","@pact-foundation/pact","@patrtorg/a-ad-expedita", -"@patrtorg/a-ut-amet","@patrtorg/asperiores-vel-accusantium","@patrtorg/aspernatur-dolorum-ducimus", -"@patrtorg/autem-et-hic","@patrtorg/consectetur-culpa-non","@patrtorg/consectetur-repudiandae-consequuntur", -"@patrtorg/consequatur-voluptatum-officiis","@patrtorg/ducimus-magni-quibusdam","@patrtorg/enim-magni-hic", -"@patrtorg/est-corrupti-deleniti","@patrtorg/eveniet-tempore-maiores","@patrtorg/illum-sapiente-quos", -"@patrtorg/laborum-doloribus-voluptate","@patrtorg/libero-doloribus-omnis","@patrtorg/libero-voluptas-sequi", -"@patrtorg/magnam-aut-adipisci","@patrtorg/maiores-quidem-quo","@patrtorg/molestias-molestias-ut", -"@patrtorg/nam-eius-unde","@patrtorg/pariatur-deleniti-quaerat","@patrtorg/porro-labore-eos", -"@patrtorg/quae-earum-eius","@patrtorg/quos-quasi-ipsa","@patrtorg/sapiente-eos-magnam", -"@patrtorg/sapiente-exercitationem-sit","@patrtorg/tenetur-animi-reprehenderit","@perseid/store","@phosphor/widgets", -"@phun-ky/speccer","@polymer/polymer","@qooxdoo/framework","@quasar/extras","@readyplayerme/visage","@sanity/tsdoc", -"@scalar/fastify-api-reference","@serenity-js/protractor","@serenity-js/webdriverio","@subwallet/react-ui", -"@supernovaio/sdk","@supernovaio/sdk-exporters","@supernovaio/supernova-sdk","@sveltejs/eslint-config", -"@swenkerorg/maiores-voluptatibus-nemo","@swenkerorg/modi-dolorum-provident","@swenkerorg/nulla-voluptates-voluptates", -"@swisspost/design-system-styles","@symbiotejs/symbiote","@synion/md-docs","@taktikorg/aut-distinctio-repellat", -"@taktikorg/consectetur-quo-quos","@taktikorg/corporis-nihil-odit","@taktikorg/deleniti-qui-dolorem", -"@taktikorg/dolor-ratione-quibusdam","@taktikorg/harum-reprehenderit-perferendis","@taktikorg/illum-accusamus-possimus", -"@taktikorg/ipsa-totam-aperiam","@taktikorg/iste-ex-tempore","@taktikorg/itaque-nam-eos", -"@taktikorg/itaque-tempore-exercitationem","@taktikorg/maiores-dolores-aut","@taktikorg/molestias-fuga-possimus", -"@taktikorg/nam-esse-animi","@taktikorg/necessitatibus-repudiandae-officia","@taktikorg/nisi-reprehenderit-amet", -"@taktikorg/placeat-voluptates-dolorum","@taktikorg/praesentium-dolorum-quis","@taktikorg/praesentium-neque-ipsam", -"@taktikorg/quo-reiciendis-quibusdam","@taktikorg/recusandae-ratione-veniam","@taktikorg/similique-natus-officia", -"@taktikorg/suscipit-modi-ratione","@taktikorg/tempore-veniam-in","@taktikorg/unde-animi-omnis", -"@taktikorg/velit-nobis-blanditiis","@taktikorg/voluptatem-pariatur-tenetur","@tanstack/svelte-query", -"@teamhanko/hanko-frontend-sdk","@twurple/ebs-helper","@ucloud-fe/react-components","@unleash/proxy", -"@uploadcare/file-uploader","@wuxh/dumi","@zitterorg/adipisci-quae-eius","@zitterorg/aspernatur-pariatur-occaecati", -"@zitterorg/at-esse-odit", -"@zitterorg/cum-ipsum-beatae","@zitterorg/doloremque-ut-omnis","@zitterorg/est-sunt-quos", -"@zitterorg/eum-veritatis-placeat","@zitterorg/fluffy-waddle","@zitterorg/glowing-barnacle", -"@zitterorg/illum-perferendis-consectetur","@zitterorg/itaque-nisi-veritatis","@zitterorg/probable-octo", -"@zitterorg/upgraded-fishstick","@zkportal/aleo-oracle-sdk","agenda","angular-animate","ant-design-vue","antfu", -"apidoc-markdown","appium-android-driver","applicationinsights","appsync-client-node","auto-install","azure-storage", -"base-64","batuta","bcrypt-nodejs","bearcat","beauty-foot-compass5","beefy","beyond","blessed-contrib","blocked", -"bookshelf","brain","bump-cli","casperjs","chart.js","choerodon-ui","clipanion","co-prompt","connect-flash", -"connect-mongo","contenthook","corcojs-qrcode-logo","cropperjs","cson-parser","css-declaration-sorter","cuid", -"dable-effect","datafire","deep-assign","deep-consist-ability3","directed-graph-typed","discord-backend-manager", -"dmd-grunt-jsdoc2md","dnd-multi-backend","dnode","doc-detective","docgen","docpad","docschema","docsify-tabs", -"docusaurus-lunr-search","dom-to-image-more","download-git-repo","doxdox-parser-dox", -"draft-js","dumi-cm","dw-neit-antd","electron-builder","electron-prebuilt","electron-rebuilder","element-ui", -"email-templates","emailjs","ent","enumtype","ethereumjs-tx","express-adexe","express-autodoc","express-generator", -"express-handlebars","express-jwt","express-tools","express-typed-rpc","express-validator","express-zod-api","fast-csv", -"fast-plist","fe-pilot","femo","file-saver","firebase-admin","firebase-tools","flatpak-bundler","flatpickr","flightplan", -"fork-ts-checker-webpack-plugin-alt","fs-promise","futen","gc-signals","generator-angular","generator-gulp-angular", -"generator-nitro","gensequence","geolib","github-buttons","google-spreadsheet","govuk-frontend","graphql-tools","grpc", -"grunt-angular-templates","grunt-contrib-compass","grunt-contrib-htmlmin","grunt-contrib-imagemin","grunt-contrib-sass", -"grunt-spritesmith","gulp-angular-templatecache","gulp-atom-electron","gulp-awspublish","gulp-azure-storage","gulp-bom", -"gulp-bower","gulp-cache","gulp-cached","gulp-coffee","gulp-compass","gulp-conflict","gulp-copy","gulp-csscomb", -"gulp-csslint","gulp-file-include","gulp-flatmap","gulp-ftp","gulp-gzip","gulp-handlebars","gulp-html-replace", -"gulp-iconfont","gulp-ignore","gulp-image-resize","gulp-include","gulp-inline-css","gulp-install","gulp-jade", -"gulp-livereload","gulp-minify-html","gulp-ng-annotate","gulp-nodemon","gulp-preprocess","gulp-prompt","gulp-react", -"gulp-remote-src","gulp-rev-replace","gulp-ruby-sass","gulp-sftp","gulp-strip-debug","gulp-svg-sprite","gulp-svgmin", -"gulp-svgstore","gulp-template","gulp-uncss","gulp-useref","gulp-webpack","gulp.spritesmith","heroicons","hexlet-pairs", -"hiredis","homebridge","how-to-npm","html-pdf","html-to-image","htmlnano","i18next-gridly-backend","impress","iniparser", -"innosetup-compiler","inquirer-autocomplete-prompt","instagram-node","intl-tel-input","inversify","irc","jarallax", -"jest-environment-jsdom-fourteen","jest-html-reporters","jodit-react","jquery-ui","jsarch","jsdom-no-contextify","jspm", -"jstates","jwt-simple","knox","koa-body","koa-bodyparser", -"koa-logger","koa-mount","koa-router","kue","lazy.js","leaflet","left-pad","libphonenumber-js","linkifyjs","lite-server", -"lodash.foreach","lodash.get","lodash.isempty","lodash.isfunction","lodash.isobject","lodash.omit","lodash.pick", -"lodash.set","lucide","lwip","madwizard","main-bower-files","mantine-contextmenu","mapboxgl-legend","markdown-pdf", -"marky-markdown","mathjs","md5-file","mdxts","memwatch","mental-oxygen-dozen","min-heap-typed", -"mirror-jet-printed-supper","mkcert","moleculer","monaco-yaml","monads-io","mongo-express","monitor-dashboard","muuri", -"n","nano-css","native-keymap","nativefier","nconf","near-social-bridge","nest-commander","newrelic","ng-mocks", -"ng-zorro-antd","nise","node-containerpattern","node-dev","node-gcm","node-geocoder","node-oauth2-server", -"node-powertools","node-red","node-windows","node-xlsx","nodegit","nodewebkit","normalize-url","npm-to-yarn", -"npm-windows-upgrade","nwsapi","onoff","openapi-client-axios","openapi2html","openweather","ovsx","p23","pageres", -"paintor","para-cli","parallelshell","passport-facebook","passport-local","passport-oauth","paypal-server-api","pdfjs", -"pi-gpio","pkginfo","pnp-webpack-plugin","pnpx","poe-api-manager","postcss-colormin","postcss-convert-values", -"postcss-cssnext","postcss-discard-duplicates","postcss-discard-empty","postcss-discard-overridden", -"postcss-merge-longhand","postcss-merge-rules","postcss-minify-font-values","postcss-minify-gradients", -"postcss-minify-params","postcss-minify-selectors","postcss-normalize-charset","postcss-normalize-positions", -"postcss-normalize-string","postcss-normalize-unicode","postcss-normalize-url","postcss-normalize-whitespace", -"postcss-ordered-values","postcss-reduce-initial","postcss-svgo","postcss-unique-selectors","postgrejs","prettierrc", -"private-bower","promo-server","pull-stream","queue-typed","randomstring","rcw-plugin", -"react-addons-css-transition-group","react-addons-shallow-compare","react-apollo","react-markdown","react-modal", -"react-motion","react-native-keychain","react-onclickoutside","react-router-redux","react-select","react-svg","reactify", -"readline-sync","recall-shut-say","redocusaurus","redux-actions","redux-saga","rehype-mdx-code-props","remark-mermaidjs", -"requireindex","rest-chronicle","restler","rethinkdb","rsnext","rxjs-compat","schema-markdown-doc","semantic-ui-react", -"seneca","sequelize","serverless-finch","serverless-spy","simple-assi-animation","simple-prompts-web3","single-spa", -"sinopia","sizeitup","skapi-js","slow-deps","spectaql","sprintf","storybook-django","straiforos-compodoc", -"strange-lady-riding9","streamii","string-strip-html","style-dictionary","stylelint-declaration-strict-value", -"supertest-as-promised","sw-precache-webpack-plugin","swagger-inline","tarant","tarant-sync-router-express", -"tdlib-native","terminal-kit","terminal-menu","test-cutting","test-snippets","thunkify","tracer","train-stick-swept7", -"trpc","trumpet","ts-cache-mongoose","ts-japi","ts-migrate-mongoose","ts-patch-mongoose","ts-rule-engine","tsd-lite", -"tweetnacl","twemoji","twit","typedoc-material-theme","typedoc-plugin-extras","typedocs","typegen","typegoose", -"uj-apidoc-core","ulid","unique-random-array","urijs","valid-url","vant","virtual-dom","vite-plugin-api-routes","vorpal", -"vscode-debugprotocol","vscode-nls-dev","vscode-textmate","vue-property-decorator","web3-be","web3-eve-cli", -"web3-exactly6","web3-fruit","webshot","webworker-threads","weinre","winston-daily-rotate-file","x-ray","xmldom", -"xstate","yarnpkg","yoctocolors-cjs","zod-http-schemas","zombie","@nx/eslint-plugin","@nx/storybook","teajusgula", -"@augment-vir/common","@commercetools-frontend/mc-scripts","@jsonforms/vanilla-renderers","@jsonforms/vue-vanilla", -"hot-shots","madr","native-run","typed-binary","@adonisjs/core","@aneuhold/be-ts-lib","@capacitor/assets", -"@devtea2025/blanditiis-numquam-expedita-neque","@devtea2025/doloremque-voluptas-facere-nemo", -"@devtea2025/quisquam-quod-ab-aut","@devtea2025/suscipit-assumenda-a-assumenda", -"@devtea2025/voluptatibus-vero-magni-rerum","@diahkomalasarinpm/odio-facilis-beatae", -"@diahkomalasarinpm/praesentium-sint-dolorem","@envelop/core","@ionic/cli","@jsonforms/angular","@jsonforms/examples", -"@npmtea2024/quasi-nisi-doloremque-fugit","@ptkhanh94npm/iusto-libero-aperiam","@ptkhanh94npm/quis-saepe-velit", -"@renyii/vue-renderless","@teamteanpm2024/aperiam-fugit-error","@teamteanpm2024/architecto-alias-quod", -"@teamteanpm2024/aut-voluptatum-vero","@teamteanpm2024/beatae-aliquid-id","@teamteanpm2024/expedita-labore-ipsum", -"@teamteanpm2024/odio-fugiat-in","@teamteanpm2024/voluptatibus-reprehenderit-odit", -"@zibuthe7j11/deserunt-quasi-impedit","aws-sdk-client-mock","cupertino-pane","eruda","fasteejs","gradient-string", -"magnific-popup","pwa-asset-generator","react-native-animatable","react-swipeable-list","readme-md","riot", -"tdesign-mobile-vue","uploadcare-widget","nextra","@ibyar/expressions","@mantine/carousel","@mantine/dropzone", -"@mantine/nprogress","@mantine/spotlight","@mantine/tiptap","allure-js-commons","express-intlayer","is-mobile", -"rehype-mermaid","@bugsnag/react-native","@ionic/angular","@npmtuanmap/velit-nobis-nostrum-nam", -"@skylernpm/hic-inventore-dolores","@skylernpm/reiciendis-non-corrupti","admin-lte","backendless","smartbanner.js", -"@enact/sandstone","react-responsive-select","@asyncapi/generator","@mui/base","@nestjsx/crud","@nestjsx/crud-typeorm", -"@netlify/framework-info","@pothos/core","@strapi/strapi","@svgr/hast-util-to-babel-ast","@uppy/companion", -"@walletconnect/browser-utils","@walletconnect/iso-crypto","@walletconnect/legacy-provider", -"@walletconnect/socket-transport","@wordpress/primitives","angular-messages","angular-mocks","broccoli-builder", -"camelcase-css","condense-newlines","css-mediaquery","dashdash","decap-cms-backend-aws-cognito-github-proxy", -"decap-cms-backend-azure","decap-cms-backend-bitbucket","decap-cms-backend-git-gateway","decap-cms-backend-github", -"decap-cms-backend-gitlab","decap-cms-backend-proxy","decap-cms-backend-test", -"device-detector-js","eslint-rule-documentation","http-graceful-shutdown","inferno-hydrate","infima", -"jest-preset-angular","logging-helpers","micromark-extension-gfm-tagfilter","micromark-util-html-tag-name", -"mobile-detect","parse-entities","rc-hammerjs","rdme","react-device-detect","react-easy-router", -"react-native-file-viewer","react-native-lightbox-v2","react-native-progress","react-native-svg-charts", -"react-native-youtube-iframe","react-responsive-modal","react-style-singleton","text-hex","tua-body-scroll-lock", -"typedoc-default-themes","use-callback-ref","use-sidecar","vconsole","vue-perfect-scrollbar","worktop","@dataui/crud", -"drag-drop","react-h5-audio-player","arethetypeswrong","astrojs","cookiecutter","degit","tseslint", -"@web/test-runner-mocha","@expressots/adapter-express","netlify-cms-backend-test","@amaui/icons-material-rounded-react", -"@dataui/crud-typeorm","@onesy/icons-material-rounded-react","react-native-macos","@ionic/react-router", -"@immobiliarelabs/backstage-plugin-gitlab-backend","@scalar/nextjs-api-reference","netlify-cms-backend-bitbucket", -"vendors","@busy-hour/blaze-types","attw","@egjs/flicking","body-scroll-lock-upgrade","@casl/ability","@types/xast", -"@modern-js/node-bundle-require","careful-downloader","sonner","@ckeditor/ckeditor5-collaboration-core","react-smooth", -"@ckeditor/ckeditor5-real-time-collaboration","@udecode/plate","netlify-cms-backend-gitlab", -"teeny-tap","emoji-js","mercurius","unbundle","@walletconnect/http-connection","convex-helpers", -"netlify-cms-backend-git-gateway","@pinia/testing","leaflet-gesture-handling","netlify-cms-backend-proxy","@nuxt/ui", -"country-codes-flags-phone-codes","embla-carousel-react","input-otp","@assistant-ui/react","@globalart/nestjs-swagger", -"@graphiql/plugin-doc-explorer","@mastra/core","next-router-mock","react-native-lightbox","rolldown-vite", -"react-native-aes-crypto","@lobehub/chat","@upstash/context7-mcp","@walletconnect/heartbeat","lory.js", -"react-camera-pro","react-native-nitro-modules","@tanstack/virtual-core","otp-io","survey-core","@intlayer/api", -"@architect/asap","canvaskit-wasm","@edsdk/n1ed-react","@crxjs/vite-plugin","skia-canvas","@flmngr/flmngr-react", -"md-to-pdf","@applitools/eyes","@applitools/screenshoter","@antora/cli","@antora/navigation-builder", -"@openspacelabs/react-native-zoomable-view","@antora/redirect-producer","planck","stage-js","syncpack","nolyfill", -"@appium/base-driver","@c15t/backend","@react-native-vector-icons/common","@antora/content-classifier","blurup", -"encryptor","flickity","jstz","orms","pannellum","psql","swiperjs","tributejs","xbytes","keywords", -"big.js","@alifd/field","@alifd/overlay","@alifd/validate","shallow-element-equals","ts-mocha","@types/co","html5shiv", -"react-axe","react-live","solarlunar","@types/jsonp","@types/big.js","react-cropper","@types/stylelint", -"fast-sass-loader","@alifd/doc-parser","@alifd/meet-react","@types/babel-core","@alifd/sass-mapper", -"@alifd/sass-tracker","@types/postcss-calc","@alifd/api-extractor","@alifd/dts-generator","@alifd/adaptor-helper", -"@alifd/sassdoc-parser","cypress-image-snapshot","@alifd/adaptor-generate","@types/lodash.clonedeep", -"@alifd/babel-preset-next","@alifd/eslint-config-next","node-sass-package-importer","stylelint-csstree-validator", -"@alifd/stylelint-config-next","@types/cypress-image-snapshot","babel-plugin-generator-prettier", -"@types/postcss-custom-properties","babel-plugin-transform-proto-to-assign", -"babel-plugin-transform-react-es6-displayname","fusion","fusion design","ui toolkit","react-components","blueprints", -"schematics","tooling","@types/dom-navigation","lodash.assignwith","normalize-css-color","react-native-codegen", -"@floating-ui/react-native","@rc-component/mini-decimal","react-native-modal-popover", -"@bang88/react-native-ultimate-listview","shell-utils","ant-design-palettes","react-native-mocker", -"react-native-screens","antd-mobile-demo-data","@react-navigation/stack","react-native-reanimated", -"@react-navigation/native","react-native-gesture-handler","@ant-design/icons-react-native", -"react-native-safe-area-context","@inline-svg-unique-id/react","authjs","passwordless","@types/fs-readdir-recursive", -"gensync","let","@babel/helper-check-duplicate-nodes","tc39","moo","liquidjs","iso-639-1","bcp-47-normalize", -"@11ty/lodash-custom","@11ty/posthtml-urls","@11ty/eleventy-utils","@11ty/recursive-copy","@11ty/dependency-tree", -"node-retrieve-globals","posthtml-match-helper","@11ty/dependency-tree-esm","@11ty/eleventy-dev-server", -"@11ty/eleventy-plugin-bundle","nano-staged","@zachleat/noop","jsx-async-runtime","@11ty/eleventy-img", -"@mdx-js/node-loader","@11ty/eleventy-plugin-rss","@11ty/eleventy-plugin-webc","@11ty/eleventy-plugin-syntaxhighlight", -"ssg","11ty","liquid","css-parser","css-ast","css-tools","@advanced-rest-client/clipboard-copy", -"@advanced-rest-client/http-code-snippets","@advanced-rest-client/markdown-styles", -"@anypoint-web-components/anypoint-collapse","@api-components/api-annotation-document", -"@api-components/api-body-document","@api-components/api-example-generator","@api-components/api-headers-document", -"@api-components/api-parameters-document","@api-components/api-responses-document", -"@api-components/api-security-documentation","@api-components/http-method-label","@advanced-rest-client/arc-demo-helper", -"@anypoint-web-components/anypoint-checkbox","@anypoint-web-components/anypoint-input", -"@api-components/api-server-selector","api-components","method-documentation","@wry/caches","@wry/equality","@wry/trie", -"babel-plugin-source-map-support","@nicolo-ribaudo/eslint-scope-5-internals","array.prototype.concat", -"babel-plugin-polyfill-es-shims","@babel/plugin-syntax-export-namespace-from","@babel/plugin-syntax-object-rest-spread", -"@babel/preset-modules","@babel/plugin-transform-literals","@babel/plugin-transform-new-target", -"@babel/plugin-transform-dotall-regex","@babel/plugin-transform-json-strings","@babel/plugin-transform-object-super", -"@babel/plugin-transform-sticky-regex","@babel/plugin-transform-function-name","@babel/plugin-transform-typeof-symbol", -"@babel/plugin-transform-unicode-regex","@babel/plugin-transform-duplicate-keys", -"@babel/plugin-transform-reserved-words","@babel/plugin-syntax-unicode-sets-regex", -"@babel/plugin-transform-unicode-escapes","@babel/plugin-transform-regexp-modifiers", -"@babel/plugin-transform-unicode-sets-regex","@babel/plugin-transform-computed-properties", -"@babel/plugin-transform-shorthand-properties","@babel/plugin-transform-block-scoped-functions", -"@babel/plugin-transform-unicode-property-regex","@babel/plugin-transform-explicit-resource-management", -"@babel/plugin-transform-named-capturing-groups-regex","@babel/plugin-bugfix-firefox-class-in-computed-class-key", -"@babel/plugin-bugfix-safari-class-field-initializer-scope", -"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", -"@babel/plugin-transform-duplicate-named-capturing-groups-regex", -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", -"@babel/plugin-transform-react-jsx-development","@babel/plugin-transform-react-pure-annotations","babel-preset", -"@babel/helper-globals","@biz-dev-ops/web-components","@iframe-resizer/child","@iframe-resizer/parent","awilix", -"bpmn-js","markdown-it-codetabs","markdown-it-multimd-table","markdown-it-plantuml-ex","pdfjs-viewer-element","prince", -"web-resource-inliner","bpmn","term-size","spawndamnit","@changesets/git","@changesets/pre","@changesets/read", -"@changesets/types","@changesets/write","@changesets/config","@changesets/errors","@changesets/logger", -"@manypkg/get-packages","@changesets/changelog-git","@inquirer/external-editor","@changesets/apply-release-plan", -"@changesets/should-skip-package","@changesets/get-dependents-graph","@changesets/assemble-release-plan","human-id", -"@chatscope/chat-ui-kit-styles","ui kit", -"communication","conversation","reusable","talk","ckeditor5-feature","ckeditor5-plugin","angular 5","blurhash", -"color-parse","vanilla-colorful","vue component","vue.js component","@commitlint/format","@commitlint/read", -"@polka/send-type","bootstrap.native","tablesort","vis-network","@comunica/types","semantic","nf","hugo-bin", -"postcss-combine-duplicated-selectors","pseudo","specificity","@cucumber/ci-environment", -"@cucumber/cucumber-expressions","@cucumber/gherkin","@cucumber/gherkin-utils","@cucumber/html-formatter", -"@cucumber/junit-xml-formatter","@cucumber/message-streams","@cucumber/messages","@cucumber/pretty-formatter", -"@cucumber/tag-expressions","capital-case","@cucumber/compatibility-kit","@cucumber/query","@types/dirty-chai", -"@types/has-ansi","@types/lodash.merge","@types/stream-buffers","reindent-template-literals","@types/semver-compare", -"semver-compare","deven","@diplodoc/cut-extension","@diplodoc/file-extension","@diplodoc/utils","@diplodoc/babel-preset", -"@diplodoc/lint","@diplodoc/tsconfig","@types/css","yandex","@sapphire/async-queue","@vladfrangu/async_event_emitter", -"eslint-config-neon","esbuild-plugin-version-injector","discordjs","tsdoc","@diplodoc/client", -"@diplodoc/markdown-translation","@diplodoc/mermaid-extension","@diplodoc/openapi-extension", -"@doc-tools/yfm2xliff","@yandex-cloud/nodejs-sdk","bem-cn-lite","threads-plugin","@types/async","markdown-it-meta", -"@types/markdownlint","@yandex-cloud/eslint-config","@yandex-cloud/prettier-config","@yandex-cloud/tsconfig", -"@tinyhttp/cookie-parser","cookie-encrypter","github-markdown-css","greenlock-express","@types/sass","@types/sql.js", -"@types/workerpool","razor","aspx","@stylistic/stylelint-plugin","@wordpress/api-fetch","WordPress","@types/pretty-ms", -"@emotion/memoize","babel-check-duplicated-nodes","@emotion/use-insertion-effect-with-fallbacks","warun", -"@eslint-community/eslint-plugin-mysticatea","@fakeyanss/redocly-openapi-core","@size-limit/preset-app","React.js", -"positioning","Inter","roboto","Roboto","@fortawesome/fontawesome-common-types","@fortawesome/free-brands-svg-icons", -"@electron/rebuild","@electron-forge/cli","electron-devtools-installer","@grandlinex/swagger-mate","@fastify/deepmerge", -"@graphql-markdown/graphql","@graphql-markdown/cli","@tailwindcss/aspect-ratio","@tailwindcss/forms","sass-lint", -"@hapi/ammo","@hapi/boom","@hapi/bounce","@hapi/call","@hapi/catbox","@hapi/catbox-memory","@hapi/heavy","@hapi/mimos", -"@hapi/podium","@hapi/shot","@hapi/somever","@hapi/statehood","@hapi/subtext","@hapi/teamwork","@hapi/validate", -"@hapi/inert","@hapi/vision", -"@homer0/eslint-plugin","@homer0/prettier-config","leasot","@typeschema/core","@typeschema/main","@typeschema/zod", -"check-export-map","io-ts-types","monocle-ts","newtype-ts","nope-validator","scheme-validation","hookform","effect-ts", -"typeschema","vine","standard-schema","google translate api","google translate","google api","translate api", -"@atlaskit/pragmatic-drag-and-drop","@atlaskit/pragmatic-drag-and-drop-auto-scroll", -"@atlaskit/pragmatic-drag-and-drop-hitbox","cli-width","fast-wrap-ansi","domino","@stencil/sass","@capacitor/core", -"@capacitor/haptics","@capacitor/keyboard","@capacitor/status-bar","@stencil/vue-output-target", -"@stencil/react-output-target","@stencil/angular-output-target","stencil","@itwin/itwinui-illustrations-react", -"react-table","itwin","itwinui","@jest/console","jest-changed-files","jest-resolve-dependencies","jest-runner", -"jest-runtime","jest-snapshot","@jest/test-sequencer","instant","painless","sandboxed","@types/redux-mock-store", -"document-register-element","@date-io/dayjs","@jupyterlab/apputils","@jupyterlab/coreutils","@jupyterlab/docregistry", -"@jupyterlab/rendermime","@jupyterlab/rendermime-interfaces","@jupyterlab/services","@jupyterlab/statedb", -"@jupyterlab/translation","@jupyterlab/ui-components","@lumino/algorithm","@lumino/application", -"@lumino/commands","@lumino/coreutils","@lumino/disposable","@lumino/messaging","@lumino/polling","@lumino/properties", -"@lumino/signaling","@lumino/widgets","@jupyterlab/testing","lodash.difference","safe-wipe","sass-convert", -"@kobedevi/sassdoc-theme-default","scss-comment-parser","vinyl-string","chatfanpage","api-connect-x", -"api-connect-tiwtter","react-remove-scroll","notification-manager","notification-system","@material-ui/types", -"@material-ui/utils","@material-ui/styles","@material-ui/system","json:api","normalizer","@rushstack/node-core-library", -"@rushstack/terminal","@rushstack/ts-command-line","@rushstack/rig-package","decoupled-local-node-rig", -"local-eslint-config","AEDoc","beta","@types/jju","@aws/durable-execution-sdk-js", -"@aws/durable-execution-sdk-js-testing","@datastream/core","Function URL","Durable function","Middy","Body Parser", -"JSON Body Parser","@aws-sdk/client-ssm","aws-xray-sdk","moj","@open-draft/logger","@open-draft/until", -"engine.io-parser","express-rate-limit","web-encoding","intercept","low-level","@mui/core-downloads-tracker", -"@mui/x-internals","mui-x","timepicker","@iconify-icon/react","@vcarl/remark-headings","approximate-number", -"extra-watch-webpack-plugin","flexsearch","mdast-util-phrasing", -"next-seo","rehype-extract-excerpt","remark-heading-id","remark-link-rewrite","tailwindcss-themer", -"@types/extra-watch-webpack-plugin","@types/git-url-parse","@repo/eslint-config","@repo/typescript-config", -"@repo/prettier-config","esthetic","guides","demo","ng-doc","rehype-minify-whitespace","unist-util-filter", -"@shikijs/rehype","ordinal","@nomicfoundation/hardhat-ethers","@nomicfoundation/eslint-plugin-slow-imports", -"@nomicfoundation/eslint-plugin-hardhat-internal-rules","smart-contracts","@npmcli/query","json-stringify-nice","proggy", -"promise-all-reject-late","promise-call-limit","minify-registry-metadata","tcompare","map-workspaces","formatted", -"syntax highlighting","EsBuild","Lint","Express","babel-plugin-const-enum","babel-plugin-transform-typescript-metadata", -"Swc","Tsc","kill-port","@nx/docker","@oclif/help","@types/wordwrap","oclif-plugin","@octokit/plugin-paginate-rest", -"@octokit/plugin-request-log","@octokit/plugin-rest-endpoint-methods","@octokit/auth-action","@octokit/auth-app", -"@octokit/fixtures-server","@octokit/request","@octokit/tsconfig","semantic-release-plugin-update-version-in-files", -"api-client","@opentiny/vue-action-menu","@opentiny/vue-action-sheet","@opentiny/vue-alert","@opentiny/vue-amount", -"@opentiny/vue-anchor","@opentiny/vue-area","@opentiny/vue-async-flowchart","@opentiny/vue-autocomplete", -"@opentiny/vue-badge","@opentiny/vue-base-select", -"@opentiny/vue-breadcrumb","@opentiny/vue-breadcrumb-item","@opentiny/vue-bulletin-board","@opentiny/vue-button", -"@opentiny/vue-button-group","@opentiny/vue-calendar","@opentiny/vue-calendar-bar","@opentiny/vue-calendar-view", -"@opentiny/vue-card","@opentiny/vue-card-group","@opentiny/vue-card-template","@opentiny/vue-carousel", -"@opentiny/vue-carousel-item","@opentiny/vue-cascader","@opentiny/vue-cascader-menu","@opentiny/vue-cascader-mobile", -"@opentiny/vue-cascader-node","@opentiny/vue-cascader-panel","@opentiny/vue-cascader-select", -"@opentiny/vue-cascader-view","@opentiny/vue-cell","@opentiny/vue-checkbox","@opentiny/vue-checkbox-button", -"@opentiny/vue-checkbox-group","@opentiny/vue-col","@opentiny/vue-collapse","@opentiny/vue-collapse-item", -"@opentiny/vue-collapse-transition","@opentiny/vue-color-picker","@opentiny/vue-color-select-panel", -"@opentiny/vue-column-list-group","@opentiny/vue-column-list-item","@opentiny/vue-company", -"@opentiny/vue-config-provider","@opentiny/vue-container","@opentiny/vue-country","@opentiny/vue-crop", -"@opentiny/vue-currency","@opentiny/vue-date-panel","@opentiny/vue-date-picker","@opentiny/vue-date-picker-mobile-first", -"@opentiny/vue-date-range","@opentiny/vue-date-table","@opentiny/vue-dept","@opentiny/vue-dialog-box", -"@opentiny/vue-dialog-select","@opentiny/vue-divider","@opentiny/vue-drawer","@opentiny/vue-drop-roles", -"@opentiny/vue-drop-times","@opentiny/vue-dropdown","@opentiny/vue-dropdown-item","@opentiny/vue-dropdown-menu", -"@opentiny/vue-dynamic-scroller","@opentiny/vue-dynamic-scroller-item","@opentiny/vue-espace","@opentiny/vue-exception", -"@opentiny/vue-fall-menu","@opentiny/vue-file-upload","@opentiny/vue-filter","@opentiny/vue-filter-bar", -"@opentiny/vue-filter-box","@opentiny/vue-filter-panel","@opentiny/vue-float-button", -"@opentiny/vue-floatbar","@opentiny/vue-floating-button","@opentiny/vue-flowchart","@opentiny/vue-fluent-editor", -"@opentiny/vue-form","@opentiny/vue-form-item","@opentiny/vue-fullscreen","@opentiny/vue-grid", -"@opentiny/vue-grid-column","@opentiny/vue-grid-manager","@opentiny/vue-grid-select","@opentiny/vue-grid-toolbar", -"@opentiny/vue-guide","@opentiny/vue-hrapprover","@opentiny/vue-image","@opentiny/vue-image-viewer", -"@opentiny/vue-input","@opentiny/vue-ip-address","@opentiny/vue-layout","@opentiny/vue-link","@opentiny/vue-link-menu", -"@opentiny/vue-load-list","@opentiny/vue-loading","@opentiny/vue-locales","@opentiny/vue-logon-user", -"@opentiny/vue-logout","@opentiny/vue-menu","@opentiny/vue-message","@opentiny/vue-milestone","@opentiny/vue-mind-map", -"@opentiny/vue-modal","@opentiny/vue-month-range","@opentiny/vue-month-table","@opentiny/vue-nav-menu", -"@opentiny/vue-notify","@opentiny/vue-number-animation","@opentiny/vue-numeric","@opentiny/vue-option", -"@opentiny/vue-option-group","@opentiny/vue-pager","@opentiny/vue-pager-item","@opentiny/vue-panel", -"@opentiny/vue-picker","@opentiny/vue-pop-upload","@opentiny/vue-popconfirm","@opentiny/vue-popeditor", -"@opentiny/vue-popover","@opentiny/vue-popup","@opentiny/vue-progress","@opentiny/vue-pull-refresh", -"@opentiny/vue-qr-code","@opentiny/vue-quarter-panel","@opentiny/vue-query-builder","@opentiny/vue-radio", -"@opentiny/vue-radio-button","@opentiny/vue-radio-group","@opentiny/vue-rate","@opentiny/vue-record", -"@opentiny/vue-recycle-scroller","@opentiny/vue-river","@opentiny/vue-roles","@opentiny/vue-row", -"@opentiny/vue-scroll-text","@opentiny/vue-scrollbar", -"@opentiny/vue-search","@opentiny/vue-select","@opentiny/vue-select-dropdown","@opentiny/vue-select-mobile", -"@opentiny/vue-select-view","@opentiny/vue-select-wrapper","@opentiny/vue-selected-box","@opentiny/vue-signature", -"@opentiny/vue-skeleton","@opentiny/vue-skeleton-item","@opentiny/vue-slider","@opentiny/vue-slider-button", -"@opentiny/vue-slider-button-group","@opentiny/vue-space","@opentiny/vue-split","@opentiny/vue-standard-list-item", -"@opentiny/vue-statistic","@opentiny/vue-steps","@opentiny/vue-sticky","@opentiny/vue-switch","@opentiny/vue-tab-item", -"@opentiny/vue-tabbar","@opentiny/vue-tabbar-item","@opentiny/vue-table","@opentiny/vue-tabs","@opentiny/vue-tag", -"@opentiny/vue-tag-group","@opentiny/vue-tag-input","@opentiny/vue-text-popup","@opentiny/vue-time", -"@opentiny/vue-time-line","@opentiny/vue-time-panel","@opentiny/vue-time-picker","@opentiny/vue-time-picker-mobile", -"@opentiny/vue-time-range","@opentiny/vue-time-select","@opentiny/vue-time-spinner","@opentiny/vue-timeline-item", -"@opentiny/vue-toggle-menu","@opentiny/vue-tooltip","@opentiny/vue-top-box","@opentiny/vue-transfer", -"@opentiny/vue-transfer-panel","@opentiny/vue-tree","@opentiny/vue-tree-menu","@opentiny/vue-tree-select", -"@opentiny/vue-upload","@opentiny/vue-upload-dragger","@opentiny/vue-upload-list","@opentiny/vue-user", -"@opentiny/vue-user-account","@opentiny/vue-user-contact","@opentiny/vue-user-head","@opentiny/vue-user-head-group", -"@opentiny/vue-user-link","@opentiny/vue-virtual-scroll-box","@opentiny/vue-virtual-tree","@opentiny/vue-watermark", -"@opentiny/vue-wizard","@opentiny/vue-year-range","@opentiny/vue-year-table","component-library","opentiny", -"renderless-components", -"headless-components","@opentiny/utils","@opentiny/vue-hooks","gulp-svg-inline","gulp-transform","@otterhttp/accepts", -"@otterhttp/proxy-address","@otterhttp/type-is","@otterhttp/url","@otterhttp/router","es-escape-html", -"@otterhttp/content-disposition","@otterhttp/encode-url","@otterhttp/vary","@otterhttp/etag", -"@pact-foundation/pact-core","@pact-foundation/pact-js-prettier-config","pact","pact-js","contract testing", -"consumer driven testing","@phosphor/algorithm","@phosphor/commands","@phosphor/coreutils","@phosphor/disposable", -"@phosphor/domutils","@phosphor/dragdrop","@phosphor/keyboard","@phosphor/messaging","@phosphor/properties", -"@phosphor/signaling","@phosphor/virtualdom","cobertura","eslint-config-phun-ky","typedoc-plugin-frontmatter", -"typedoc-plugin-mdn-links","typedoc-plugin-remark","typedoc-plugin-rename-defaults","typedoc-vitepress-theme", -"unified-prettier","vitepress-plugin-group-icons","anatomy","annotation","dissect","dissection","grid-layout", -"html-elements","pin","spacing","speccer","stories","@polymer/gen-closure-declarations","@polymer/iron-component-page", -"@polymer/test-fixture","dom5","gulp-vulcanize","lazypipe","polymer-build","polymer-cli","wct-browser-legacy","cldr", -"get-value","set-value","unset-value", -"tap-colorize","core-js-bundle","es6-promise-pool","jstransformer-dot","@metalsmith/layouts","@qooxdoo/eslint-config-qx", -"@qooxdoo/eslint-plugin-qx","@qooxdoo/eslint-config-jsdoc-disable","@babel/plugin-proposal-optional-chaining-assign", -"dirsum","qooxdoo","fontend","databinding","@mdi/svg","eva-icons","line-awesome","eslint-config-quasar","quasar","fonts", -"animations","gltfpack","detect-gpu","r3f-perf","three-stdlib","suspend-react","postprocessing","@react-three/drei", -"@react-three/fiber","cypress-image-diff-js","@storybook/node-logger","@react-three/test-renderer", -"@react-three/postprocessing","@storybook/preset-create-react-app","threejs","react-three-fiber","ready-player-me","3D", -"avatars","@phryneas/ts-version","@types/nanoid","@types/query-string","commondir","groq-js","refractor","@sanity/ui", -"@types/cpx","dotenv-flow","@sanity/color","@sanity/icons","@sanity/client","react-refractor","@sanity/pkg-utils", -"@portabletext/react","@portabletext/toolkit","@sanity/ui-workshop","@sanity/semantic-release-preset","API reference", -"microdiff","@scalar/agent-chat","@scalar/code-highlight","@scalar/api-client","@scalar/icons","@scalar/components", -"@scalar/helpers", -"@scalar/oas-utils","@scalar/sidebar","@scalar/types","@scalar/snippetz","@scalar/use-hooks","@scalar/themes", -"@scalar/use-toasts","@scalar/workspace-store","rollup-plugin-webpack-stats","vite-plugin-css-injected-by-js", -"@scalar/galaxy","@scalar/react-renderer","@fastify/basic-auth","@fastify/http-proxy","@fastify/swagger", -"@serenity-js/assertions","@serenity-js/cucumber","@serenity-js/jasmine","@serenity-js/local-server", -"@serenity-js/mocha","@wdio/reporter","@wdio/dot-reporter","mocha-testdata","wdio","wdio-reporter", -"@sinonjs/referee-sinon","@storybook/csf-plugin","@storybook/react-dom-shim","organize","MDX","autodocs", -"@fortawesome/free-regular-svg-icons","@polkadot/react-identicon","@polkadot/util-crypto","@polkadot/wasm-crypto", -"@zxing/browser","@zxing/library","boring-avatars","flatlist-react","jsqr","phosphor-react","rc-cascader","rc-checkbox", -"rc-collapse","rc-dropdown","rc-image","rc-input","rc-input-number","rc-mentions","rc-notification","rc-pagination", -"rc-picker","rc-rate","rc-resize-observer","rc-segmented","rc-select","rc-steps","rc-switch","rc-table","rc-textarea", -"rc-tree-select","rc-upload","react-pin-input","react-qrcode-logo", -"react-superellipse","@emotion/babel-preset-css-prop","@storybook/builder-webpack5","@storybook/manager-webpack5", -"@types/puppeteer","@types/react-color","@types/react-window","array-move","react-window","rome","yaml-front-matter", -"Supernova","Design Systems","Supernovaio","SDK","Design Tokens","Tokens","Assets","Components","Documentation", -"Markdown","CMS","expr-eval-fork","ml-matrix","postcss-calc-ast-parser","@sveltejs/vite-plugin-svelte-inspector", -"vite plugin","@babel/plugin-transform-react-constant-elements","@svgr/plugin-jsx","@swc/counter","@rstest/core", -"swcpack","@swisspost/design-system-icons","@swisspost/design-system-tokens","stylelint-config-sass-guidelines", -"symbiote","meta application","constructable stylesheets","adopted stylesheets","css custom properties","import maps", -"cdn imports","https imports","reactive html attributes","JSDA","scalable-vector-graphics","@tanstack/query-core", -"@tanstack/query-persist-client-core","@testing-library/svelte","tanstack","@types/js-cookie","@github/webauthn-json", -"better-docs","eslint-config-preact","hanko","passkey","webauthn","passcode","jest-snapshot-serializer-ansi", -"@callstack/eslint-config","@relmify/jest-serializer-strip-ansi","shared-scripts","@ph.fritsche/toolbox", -"esbuild-plugin-globals", -"@ph.fritsche/scripts-config","@esbuild-plugins/node-modules-polyfill","react-testing-library","dom-testing-library", -"forwarded","@tinyhttp/accepts","@tinyhttp/content-disposition","@d-fischer/shared-utils","@twurple/api-call", -"@twurple/common","twitch","@typescript-eslint/rule-schema-to-typescript-types","@ucloud-fe/calendar", -"create-react-context","emotion-theming","file-bytes-formatter","rc-animate","rc-form","z-use-drag", -"@ucloud-fe/recodo-gen","babel-plugin-emotion","babel-plugin-typescript-to-proptypes","babel-plugin-webpack-alias", -"css-hot-loader","jest-emotion","jsdom-screenshot","stylelint-config-styled-components", -"stylelint-processor-styled-components","ucloud","jotai-x","is-hotkey","optics-ts","zustand-x","slate-react", -"jotai-optics","use-deep-compare","slate-hyperscript","plate","slate","react-button","@uiw/icons","react-icon", -"react-input","overlay-trigger","react-overlay-trigger","react-utils","unleash-client","ts-node-dev","@types/type-is", -"Unleash","keyux","nanostores","@lit/context","@uploadcare/image-shrink","@uploadcare/upload-client", -"@uploadcare/quality-insights","render-jsx","lit-analyzer","ts-lit-plugin","eslint-plugin-wc","@types/svg-sprite", -"eslint-plugin-lit","vitest-browser-lit","@size-limit/esbuild-why", -"esbuild-minify-templates","lighter","adaptive image","image optimization","image editing","image size", -"cloud image editor","upload api client","building blocks","blocks","lr-blocks","uc-blocks","integrations","smart cdn", -"cloud file platform","transformation api","css context properties","meta applications", -"@babel/plugin-transform-react-jsx-self","create-vue","create-eslint-config","merge-deep","aleo","zero-knowledge", -"event-target-shim","@mysticatea/spy","karma-growl-reporter","type-tester","abort","abortcontroller","abortsignal", -"progress-estimator","@types/figlet","@types/git-clone","flowcontrol","date.js","human-interval","@types/human-interval", -"jobs","@airtap/browserify-istanbul","airtap-default","airtap-multi","bruce-millis-option","maybe-combine-errors", -"nanoresource","nanoresource-collection","on-stream-close","run-parallel-settled","tap-completed","thunky-with-args", -"transient-error","abstract-browser","fast-uri","@types/require-from-string","dayjs-plugin-utc","module-from-string", -"re2","uri-js","json-schema-validation","Ajv","buffer-more-ints","claire","AMQP","AMQP 0-9-1", -"RabbitMQ","ux bootstrap","@angular-cli/ast-tools","@angular-cli/base-href-webpack","@ngtools/json-schema", -"@ngtools/webpack","exists-sync","node-modules-path","sourcemap-istanbul-instrumenter-loader","justified","bgblack", -"bgBlack","bgblue","bgBlue","bgcyan","bgCyan","bggreen","bgGreen","bgmagenta","bgMagenta","bgred","bgRed","bgwhite", -"bgWhite","bgyellow","bgYellow","black","blue","bold","clorox","cyan","dim","green","grey","hidden","italic","magenta", -"reset","str","underline","white","yellow","iterm2","erase","scrollback","re","svg-term-cli","@ant-design/icons-vue", -"@simonwep/pickr","dom-align","vue-types","@types/postcss-load-config","@vue/cli-plugin-eslint", -"@vue/eslint-config-prettier","babel-plugin-transform-require-context","compare-versions","cz-git","diacritics", -"eslint-plugin-no-explicit-type-exports","ignore-emit-webpack-plugin","jest-serializer-vue","jest-transform-stub", -"less-vars-to-js","selenium-server", -"umi-request","vue-clipboard2","vue-drag-resize","vue-infinite-scroll","vue-request","vueComponent","@rc-component/form", -"@rc-component/menu","@rc-component/rate","@rc-component/tabs","@rc-component/tree","@rc-component/util", -"@rc-component/image","@rc-component/input","@rc-component/steps","@rc-component/table","@rc-component/dialog", -"@rc-component/drawer","@rc-component/motion","@rc-component/picker","@rc-component/qrcode","@rc-component/select", -"@rc-component/slider","@rc-component/switch","@rc-component/upload","@rc-component/tooltip","@ant-design/fast-color", -"@rc-component/cascader","@rc-component/checkbox","@rc-component/collapse","@rc-component/dropdown", -"@rc-component/mentions","@rc-component/progress","@rc-component/textarea","@rc-component/segmented", -"@rc-component/pagination","@ant-design/cssinjs-utils","@rc-component/tree-select","@rc-component/color-picker", -"@rc-component/input-number","@rc-component/notification","@rc-component/mutate-observer", -"@rc-component/resize-observer","domparser-rs","@ant-design/x","@blazediff/core","@ant-design/x-sdk","csstree-validator", -"@codecov/webpack-plugin","@rc-component/virtual-list","@eslint-react/eslint-plugin","cypress-image-diff-html-report", -"@api-components/api-console-ext-comm","@api-components/api-documentation","@api-components/api-summary", -"@polymer/app-layout","@polymer/iron-media-query","@polymer/paper-toast","@anypoint-web-components/anypoint-menu-mixin", -"@open-wc/building-rollup","@polymer/iron-test-helpers","@web/test-runner-visual-regression","amf-client-js", -"rollup-plugin-cpy", -"raml","amf","diff-match-patch","expose-loader","eslint-config-recommended","apidoc-light","api-documentation", -"markdown-documentation","push notifications","apns","relay","zen-observable-ts","apollo-link-http-common", -"apollo-fetch","object-to-querystring","cracks","appium-adb","appium-chromedriver","io.appium.settings", -"@appium/eslint-config-appium-ts","@types/portscanner","mobile testing","@azure/identity","@azure/functions", -"diagnostic-channel","@azure/functions-old","@azure/monitor-opentelemetry","@opentelemetry/sdk-trace-node", -"diagnostic-channel-publishers","@opentelemetry/otlp-exporter-base","@opentelemetry/semantic-conventions", -"@azure/monitor-opentelemetry-exporter","@opentelemetry/exporter-logs-otlp-http", -"@opentelemetry/exporter-trace-otlp-http","@opentelemetry/exporter-metrics-otlp-http", -"@azure/opentelemetry-instrumentation-azure-sdk","@types/long","@types/microsoft__typescript-etw","exception monitoring", -"request monitoring","performance monitoring","application insights","tracing","telemetry", -"@aws-sdk/credential-provider-node","@aws-sdk/hash-node","@aws-sdk/protocol-http","@aws-sdk/signature-v4", -"aws-xray-sdk-core","@aws-amplify/amplify-appsync-simulator","prettier-plugin-organize-attributes","appsync","xray", -"archiver-utils","readdir-glob","zip-stream","archiver-jsdoc-theme","stream-bench","es-shim-unscopables","flatMap", -"ESnext","arrayify","array-fill","fn.name", -"propget","pruddy-error","shouldjs","babel-preset-es2017","native-promise-only","babel-plugin-syntax-async-generators", -"listen","then-sleep","@pika/pack","pika-plugin-build-web-babel","pika-plugin-ts-types","libnpx","node-cleanup", -"npm-lockfile","find-package-json","import-cwd","commits","detective-es6","arrgv","cbor","chunkd","ci-parallel-vars", -"concordance","currently-unhandled","package-config","supertap","🦄","yield","observables","webpack-log","empty-module", -"ps-node","ec2","simpledb","route53","rds","elasticache","cloudfront","fps","cloudformation","cloudwatch","iam", -"autoscaling","cloudsearch","elb","loadbalancing","emr","mapreduce","importexport","storagegateway","vpc","beanstalk", -"glacier","kinesis","cloudtrail","@deque/dot","sri-toolbox","grunt-bytesize","weakmap-polyfill","@axe-core/webdriverjs", -"Accessibility","dev-null","stream-throttle","karma-jasmine-ajax", -"string-replace-async","rollup-plugin-auto-external","browserify-mime","json-edm-parser","batchflow","factor-bundle", -"karma-env-preprocessor","output-file-sync","trim-right","try-resolve","babel-preset-jest","module.exports","dynamic", -"react-toolbox","pmock","lodash-bound","lodash-compat","cherry-pick","rename","babel-helper-remap-async-to-generator", -"babel-helper-function-name","babel-plugin-syntax-class-properties","babel-plugin-syntax-decorators", -"babel-plugin-transform-strict-mode","babel-helper-builder-react-jsx","propTypes","regenerator-transform", -"@babel/plugin-transform-property-mutators","babel-plugin-transform-react-display-name", -"babel-plugin-transform-react-jsx-source","babel-plugin-transform-react-jsx-self", -"babel-plugin-transform-do-expressions","babel-plugin-transform-function-bind", -"babel-plugin-transform-class-constructor-call","babel-plugin-transform-decorators", -"babel-plugin-transform-async-generator-functions","to-fast-properties","lodash.zipobject", -"babel-plugin-transform-node-env-inline","unicode-9.0.0","@purtuga/esm-webpack-plugin","@web/test-runner-browserstack", -"@web/test-runner-junit-reporter","otpauth","codec","basic","basicauth","ministructure","orange sms","pomelo-logger", -"IoC","AOP","consistent","hot reload","front-backend","sharable codes","asynchronous script loading", -"magic, self-described javaScript objects","art-near-room-catch","blanket-line","born-greatly-explain3", -"bring-water-silence","brush-bigger-afternoon0","column-wore-meet-war", -"compare-breeze-mad2","did-straight-sister-sail","excitement-tonight-dead","gain-pleasant-prepare", -"industrial-public-immediately-until","is-straight-web3-attack","known-wet-thirty-gave","listen-private-thee6", -"mainly-cent","mountain-quarter-sit8","mouse-bat-web3-present","needs-supper-anything","percent-impossible-score", -"rocket-location-calm-valley","seldom-fire-web3-running","shade-swim-shells1","spider-melted-chemical", -"stretch-onto-driver7","tiny-dream-supply5","tool-invented-girl-jungle","we-hunt-process","web3-automobile7", -"whether-dangerous","ansicolors","ignorepatterns","response-stream","script-injector","find-global-packages","jsl", -"dotpathlookup","simplehttpserver","docdown","@beyond-js/specifier-parser","@beyond-js/fs","@beyond-js/bee", -"json-format","uimport","universal javascript","universal typescript","isomorphic javascript","isomorphic typescript", -"sigle page","modular development","microfrontend","micro frontend","hot module replacement","ssr", -"server side rendering","typescript packager","JAMStack","react framework","ssr react framework","vue framework", -"ssr vue framework","svelte framework","ssr svelte framework","check-types","hoopy","tryer","please-release-me","spooks", -"streamify","serialise","arbitrary", -"precision","arithmetic","big","float","biginteger","bigdecimal","bigint","bignum","file-uri-to-path","@noble/hashes", -"@antv/component","@antv/g2","@antv/util","@antv/data-set","@babel/preset-es2015","@storybook/addon-info", -"@welldone-software/why-did-you-render","aphrodite","babel-plugin-inline-react-svg","babel-plugin-inline-svg", -"bx-jest-electron","declaration-bundler-webpack-plugin","moment-jalaali","react-with-styles-interface-aphrodite", -"react-with-styles-interface-css-compiler","snapshot-diff","g2","coffee-react","uglify-save-license","curses","tui", -"tput","terminfo","termcap","ansi-term","drawille-canvas-blessed-contrib","map-canvas","picture-tuber","term-canvas", -"x256","@types/blessed","kefir","baconjs","fluent interface","BN","Big number","BigNum","Modulo","Montgomery", -"create-error","bookshelf-jsdoc-theme","datamapper","active record","@astrojs/prism","astro-auto-import","mincer", -"quote-stream","static-module","readFileSync","array-equal","merge-trees","broccoli-fixture","broccoli-fixturify", +"dmg","Windows","flatpak","@electron/asar","junk","rcedit","markdown-it-chain","lad","lass","smtp-server","calculate-cache-key-for-tree","core-object","p-defer","promise-map-series","quick-temp","sane","symlink-or-copy","tree-sync","watch-detector","chai-files","fixturify-project","ember","babel-plugin-debug-macros","@ember/optional-features","@ember/test-helpers","code-equality-assertions","ember-auto-import","ember-load-initializers","ember-qunit","ember-resolver","ember-source","ember-source-channel-url", +"eslint-plugin-ember","ember-addon","js-string-escape","enum","reporting","array.prototype.flat","function.prototype.name","is-callable","lodash.escape","has-bigints","make-arrow-function","@types/call-bind","@types/has-bigints","@types/has-symbols","@types/make-arrow-function","@types/make-async-function","@types/make-generator-function","@types/object.assign","fixtures","next-tick","addons","extras","broccoli-rollup","git-repo-version","broccoli-watchify","broccoli-uglify-js", +"babel6-plugin-strip-class-callcheck","babel-plugin-transform-es2015-constants","futures","__proto__","@eslint/plugin-kit","file-entry-cache", +"@types/esquery","eslint-plugin-expect-type","eslint-release","eslump","fs-teardown","node-polyfill-webpack-plugin","npm-license","eslint-find-rules","eslint config","automd","xoxo","happy","happiness","unrs-resolver","commitlint-azure-pipelines-cli","eslint-ava-rule-tester","@vuepress/plugin-pwa","comment","directive","@types/espree","gitdown","eslint-config-canonical","markdown-link-check","@angular-eslint/template-parser","spdx-expression-parse","@types/natural-compare","stylelint-config-recommended-vue", +"jsonc","jsx-ast-utils","to-ast","string.prototype.repeat","ls-engines","@types/estree-jsx","regexp-ast-analysis","@types/pako","mocha-chai-jest-snapshot","safe-regex","eslint-config-nodesecurity","nodesecurity","@types/postcss-safe-parser","regexp-tree","json-diff","karma-safaritechpreview-launcher","ethereum-cryptography","@types/assert","karma-typescript","os-tmpdir","qs-iconv","stream-combiner","flatmap","join","eventemitter","addEventListener","addListener","pub/sub","on","Events","eventEmitter", +"eventDispatcher","listeners","@sindresorhus/merge-streams","is-running","subprocess","binaries", +"stdio","@jest/expect-utils","@jest/get-type","type-check","pbkdf2-password","setprototypeof","autogenerate","autogenerator","autogenerated","authz","helpers","type-safe","unit-testing","covert","benchmarked","shallow","gulp-mustache","color-support","timestamp","pure-rand","jsverify","@nodelib/fs.walk","hereby","snap-shot-it","js2xml","json2xml","click","@fastify/error","find-my-way","process-warning","secure-json-parse","markdownlint-cli2","piscina","typescript-transform-paths", +"babel-plugin-minify-dead-code-elimination","web component","scanner","@types/glob-to-regexp","glob-to-regexp","art","banner","figure","fallback","pic","video","icns","psd","ico","cfb","docx","jp2","ods","heic","cur","jxl","icc","xlsm","jar","@firebase/app-compat","@firebase/auth-compat","@firebase/database-compat","Firebase","@types/bcrypt","@electric-sql/pglite-tools", +"gaxios","stream-json","universal-analytics","cdn","matcher-collection","@types/acorn","util-extend","sequential","fabric","@tailwindcss/postcss","cjs","react-addons-test-utils","redirect","location","@types/is-callable","forever-monitor","getopts","cli-testlab","jest-circus","combined-stream","@paralleldrive/cuid2","formdata-polyfill","hoc","read-dir-files","extra","mkdirs","output","any-promise","thenify-all","globule","insight","nitro","modular","pooling","iterable","reduce","available","scan", +"readablestream","deno","lodash.clone","opt-cli","eslint-config-kentcdodds","@primer/octicons","min-document","glob-stream","fnmatch","paths","java","google drive","@types/nunjucks","js-green-licenses","linkinator","pdfmake","lowercase-keys","p-cancelable","@hapi/bourne","requests","gulp-cli","strip-bom-string","assemble","coffee","google-protobuf","grunt-known-options", +"perf","compass","maxmin","less-plugin-clean-css","vow","@commitlint/travis-cli","TDD","grunt-release","spritesheet-templates","url2","eslint-config-twolfson","foundry","foundry-release-git","foundry-release-npm","usemin","@types/json5","series","gulp-footer","atom","prefixes","rewriting","bom","mark","versioning","object.pick","change-file-extension","mtime","rework","conflict","webserver","csscomb","rcloader","balanced-match","streamfilter","separate","@shinnn/eslint-config-node-legacy","any-shell-escape", +"nid","metapak","metapak-nfroidure","gulp-match","ternary-stream","exclude","imagemin-webp","strip-color","stylesheets","webcomponents","isparta","plugins","ng-annotate","easy-transform-stream","views","precompile","rev","revision","source-maps","sftp","@types/lodash.template","brotli-size","rwd","rendering","@types/ansi-colors","eslint-plugin-no-use-extend-native","array-uniq", +"lodash._reinterpolate","lodash.templatesettings","anymatch","proxy-middleware","catering","remark-lint-hard-break-spaces","remark-lint-list-item-indent","remark-validate-links","grunt-string-replace","gestures","grunt-contrib-requirejs","ammo","shot","wreck","vision","getopt","@types/core-js","sham","function-bind","hasOwn","hast-util-from-parse5","web-namespaces","estree-util-is-identifier-name","mdast-util-mdx-expression","esast-util-from-js","hyperscript","@vue/compiler-dom","js-yaml-js-types","moize", +"grunt-gh-pages","oxc-parser","wrangler","cloudflare","workers","@exodus/bytes","@types/he","commitlint-config-non-conventional","capture","mail","pug-loader","postproccessor","requires-port","agent-base","eol","@types/async-retry","post","camelize","demodulize","ordinalize","tableize","classify","foreign_key","gh-release","i18next-browser-languagedetector","unorm","identity","tiff","ow","p-pipe","image-dimensions","deep-freeze","every","renderToString","humanize", +"@types/signal-exit","eslint-config-xo-react","run-async","reify","yml","babel-plugin-transform-es3-member-expression-literals","babel-plugin-transform-es3-property-literals","babel-preset-es2015-rollup","prettier-eslint","country","leek","ssh-config","@ionic/utils-stream","@ionic/cli-framework","@ionic/utils-network","@ionic/utils-process","@ionic/utils-subprocess","@ionic/cli-framework-prompts","custom element","denque","extglob","globstar","pure","kind","writable","is-inside-container", +"compression-webpack-plugin","jstransformer-cdata","jstransformer-coffee-script","jstransformer-less","jstransformer-stylus","jstransformer-verbatim","stop","youtube","eslint-plugin-jasmine","@jest/fake-timers","jest-serializer-ansi-escapes","babel-plugin-add-import-extension","worker-farm","vite-plugin-node-polyfills","@rspack/cli","solid-js","firmata","Joystick","raspberry pi","robotics","rpi","usb","commitplease","grunt-git-authors","eslint-config-jquery","gzip-js","rollup-plugin-node-polyfills","cst", +"reserved-words","saxes","selenium-standalone","stylish","sort-on","dummy","jsonparse","trees","inflate","karma-junit-reporter", +"karma-script-launcher","hat","browserify-tool","browserstack-local","karma-reporter","firefox","safari","global-agent","lru.min","key-value","tarn","pg-query-stream","analyze","duplicate","workspace","lodash.sortby","explorer","gen-esm-wrapper","co-body","urlencoded","compose","mount","cpr","semver-regex","latest","karma-expect","prosthetic-hand","eslint-config-mourner","padding","numbers","cmd-shim","p-reduce","byte-size","has-unicode","libnpmaccess","libnpmpublish","load-json-file","init-package-json", +"validate-npm-package-license","copy-anything","benny","jit-grunt","less-plugin-autoprefix","mocha-teamcity-reporter","compile less","css variable","gradients css3","less css","less mixins","lesscss","nested css","bootstrap css","bootstrap less","airtap-playwright","@voxpelli/tsconfig","leveldb","async-each","level-concat-iterator","queue-microtask","airtap-sauce","levenshtein","levenshtein-edit-distance","comparison","matching", +"promise-retry","autolink","livereload-js","lws-static","full-stack","grunt-rollup","grunt-ts","isequal","omit","event-emitter","refresh","grunt-open","uid2","strong-remoting","loopback-datasource-juggler","StrongLoop","mBaaS","@commitlint/prompt-cli","embed","embedded","flip","mirror","fade","opacity","load-module","y18n","open-source","office","@nestjs/common","@nestjs/core","@nestjs/swagger","@nestjs/typeorm","@yarnpkg/lockfile","@codecov/bundle-analyzer","@nestjs/testing","crud","yaml-config", +"prototype","startup","@next/eslint-plugin-next","markdown-it-for-inline","markdown-it-sub","ndoc","emoticons","rows","theredoc","repeat-string","links","micromark-core-commonmark","jsonpointer","recheck","inline-style-prefixer","ndarray","sylvester","numeric","charenc","micromark-util-decode-numeric-character-reference","micromark-util-normalize-identifier","micromark-util-symbol","commonmark.json","mdast-util","micromark-util-sanitize-uri","mozilla","hashring", +"hashing","in-memory","fsa","fast-memoize","nanocolors","@babel/plugin-syntax-import-meta","fill-range","expansion","@types/mime-db","release-please","runmd","min heap","heap","priorityqueue","priority","searching","brace-expansion","make dir","conditional-type-checks","mobservable","mobx-react-lite","expose-gc","headless-chrome","test-console","junit","gopd","has-property-descriptors","descriptor","define","unittest","v8-natives","services","timezone","tz","vscode-languageserver-types","vscode-uri", +"@codemirror/lang-javascript","@cypress/code-coverage","GUI","UI","socks","mongodb-client-encryption","@aws-sdk/credential-providers","mongodb-runner","odm","datastore","backbone-callbacks","node-monitor","remote control","@types/mongodb","@fastify/websocket","json-bigint","pend","karma-story-reporter","timezone-mock","thenify","couchdb","@types/byline","@types/archiver","@types/marked-terminal","@types/npmcli__arborist","pegjs","sentiment analysis","nest", +"import-in-the-middle","require-in-the-middle","git-raw-commits","debugging","@edge-runtime/jest-environment","@types/nodemailer","@sinonjs/referee","mochify","internal","skeleton","tap-xunit","karma-tap-reporter","worker-loader","aes","gcm","sha256","sha512","messaging","maps","require-inject","biased-opener","pty","daemon","excel","xls","webkit","express-ws","jsonpath-plus","absolute","backslash","normalization","is-interactive","new-github-release-url","archy","fs-minipass","@npmcli/config", +"json-parse-even-better-errors","@npmcli/git","package manager","rc-config-loader","updater","jsonlines","vite-bundle-analyzer","versions","esbuild-node-externals","minizlib","babel-preset-latest","asap","node-libs-browser","node-machine-id","@yarnpkg/parsers","@napi-rs/wasm-runtime","Mobile","@readme/openapi-parser","gulp-exec","globalthis","util.inspect","access","notation","es-object-atoms","Object.assign","$.extend","_.extend","Object.values", +"entries","wrappy","define-lazy-prop","opens","xdg-open","hashish","livescript","yauzl-promise","@types/yauzl-promise","vscode","fifo","proclaim","compliance","screenshots","screengrab","para","idb-keyval","exist","zeptomatch","png-js","postgre","rdbms","sonic-boom","plurals","count","pidusage","logs","kubernetes","keymetrics","tap-dot","dependency manager","hardlinks","uninstall","popperjs","ports","manipulation","calc","read-cache","eslint-config-problems","comma","hsl","hwb","pleeease-filters", +"postcss-attribute-case-insensitive","postcss-color-hex-alpha","postcss-color-rebeccapurple","postcss-font-variant","postcss-pseudo-class-any-link","postcss-replace-overflow-wrap","postcss-selector-not","cssnext","at-rule","atrule","media","queries","declarative","@types/cssesc","@csstools/selector-resolve-nested","@csstools/postcss-oklab-function","transformations","processor","precommit","virtual dom","jest-light-runner", +"locale","error-handling","@pkgr/core","vcs","ohash","openapi-fetch","xdg-app-paths","get-port-please","openapi-typescript","@prisma/get-platform","@types/better-sqlite3","SQLite","PostgreSQL","MySQL","MariaDB","uglifyify","uglifyjs","alpha-sort","mdast-zone","git-semver-tags","protocol-buffers","@types/q","puppeteer-core","filter-obj","item","fuzzysort","grunt-search","browserstack-runner","xyz","tacit","fantasy-land","exceptions","babel-plugin-transform-rename-import","color picker","dnd-core", +"@types/doctrine","@babel/plugin-proposal-pipeline-operator","yarn-deduplicate","viewport","@webcomponents/custom-elements","isparta-loader","nullthrows","metro-runtime","metro-source-map","flow-enums-runtime","@react-native/codegen","@react-native/js-polyfills","@react-native/gradle-plugin","@react-native/assets-registry","@react-native/normalize-colors","@jest/create-cache-key-function","babel-plugin-syntax-hermes-parser","@react-native/community-cli-plugin","macos","@types/use-sync-external-store", +"wireit","combobox","@playwright/experimental-ct-react","slick","listify","@types/hash-sum","snackbar","esprima-fb","jest-environment-puppeteer", +"scrolling","infinite","virtualized","@storybook/addon-storysource","repl","@cfaester/enzyme-adapter-react-18","netlify-plugin-cache","replay","flux-standard-action","thunk","is-hidden","mermaid-isomorphic","remark-comment-config","remark-lint-definition-spacing","remark-lint-fenced-code-flag","remark-lint-file-extension","remark-lint-final-definition","remark-lint-first-heading-level","remark-lint-heading-style","remark-lint-no-consecutive-blank-lines","remark-lint-no-emphasis-as-heading", +"remark-lint-no-file-name-articles","remark-lint-no-file-name-consecutive-dashes","remark-lint-no-file-name-irregular-characters","remark-lint-no-file-name-mixed-case","remark-lint-no-file-name-outer-dashes","remark-lint-no-heading-indent","remark-lint-no-missing-blank-lines","remark-lint-no-multiple-toplevel-headings","remark-lint-no-shell-dollars","remark-lint-no-table-indentation","remark-lint-no-tabs","remark-lint-ordered-list-marker-value","remark-lint-table-pipe-alignment","remark-retext", +"retext-english","http-signature","karma-cli","stealthy-require","request-promise-core","thenable","@typescript-eslint/eslint-plugin-tslint","ResizeObserver","copy-dir","spdy","sigterm","kill","deepclone","performant","fast-clone","fast-deep-clone","rm -rf","rm -fr","prebuild","machine","date-time","bundling","rollup-plugin-prettier","buffer-es6","process-es6","graphlib","@types/d3-shape","treemap","@babel/plugin-syntax-bigint", +"@capsizecss/metrics","@edge-runtime/cookies","@edge-runtime/ponyfill","@edge-runtime/primitives","@napi-rs/triples","@next/polyfill-module","@next/polyfill-nomodule","@next/react-refresh-utils","@next/swc","@taskr/clear","@taskr/esnext","@types/ci-info","@types/content-disposition","@types/fresh","@types/lodash.curry","@types/path-to-regexp","@types/platform","@types/send","cli-select","comment-json","edge-runtime","ignore-loader","lodash.curry","native-url","taskr","unistore","@types/source-map","Streams", +"Stream","@sailshq/lodash","flaverr","parley","rttc","sails.js","parse-srcset","helpful","opensourcesoftware","teaching","experimentation","applications","eslint-config-standard-jsx","standard-engine","ibm_db","mariadb","hardware","is-port-reachable","@aws-sdk/client-dynamodb","@aws-sdk/client-sns","@aws-sdk/client-sqs","@aws-sdk/client-sts","@aws-sdk/lib-dynamodb","@aws-sdk/util-dynamodb","aws-cdk-lib","esbuild-runner","quote","shelljs-changelog","shelljs-release","custom-event","rollup-plugin-analyzer", +"vendor","totalist","@types/sax","eventsource","sockjs", +"separated","@graphql-tools/merge","@graphql-tools/utils","graphql-scalars","json-stringify-pretty-compact","imageinfo","run-parallel-limit","std-mocks","modern-syslog","@storybook/global","@vitest/utils","launch-editor","unique-string","@types/detect-port","@radix-ui/react-slot","@types/pretty-hrtime","component-testing","@storybook/addon-onboarding","@storybook/test","django","columns","fullwidth","full-width","fixed-width","east-asian-width","strong-agent","strong-supervisor","core-util-is","metrics", +"npmrc","response","@types/stylis","@types/react-frame-component","react-frame-component","@changesets/get-github-info","@stylelint/prettier-config","@stylelint/remark-preset","eslint-config-stylelint","cookiejar","sw-precache","framework7","sync-rpc","cpu","processes","gpu","audio","resolve-import","ecstatic","brittle","actor system","DDD","actor-system","back end","tdlib","tempdir","tmpfile","unique","charm","elegant-spinner","automated","@types/tar-fs","codeclimate-test-reporter","jpeg-js","3d", +"webgl","get-port-cli","streams2","homedir","tilde","collapse","tldts","bs-logger","make-error","migrations","@tsd/typescript","Microsoft","fix-dts-default-cjs-exports","ts-essentials","DOM","generics","typedoc-plugin","typedocplugin","latex","azure-devops-node-api","retext","unist-util","jquery-plugin","ecosystem:jquery","@types/busboy","@vue/runtime-core","@vercel/routing-utils","artichokie","periscopic","http-proxy-3","host-validation-middleware","@vueuse/integrations","tinyrainbow","@vitest/runner", +"local-pkg","@edge-runtime/vm","@antfu/install-pkg","eyes","BDD","@types/cheerio","eslint-plugin-vue-libs","cache-loader","zoomable","ansi-html-community","klona","taffydb","logform","@dabh/eslint-config-populist","winston-compat","Push","WebSockets","jsonpath","whitelist","@yeoman/namespace","@yeoman/transform","@yeoman/types","mem-fs-editor","@yeoman/eslint","esmocha","@types/cookie-parser","@types/morgan","@types/systemjs","pose","react pose", +"framer","waapi","@docusaurus/module-type-aliases","@testing-library/preact","babel-preset-react-native","get-pkg-repo","textarea","@augment-vir/core","@date-vir/duration","@web/dev-server-esbuild","istanbul-smart-text-reporter","augment","vir","augment-vir","@svgr/babel-preset","svg-url-loader","@vue/cli-plugin-babel","@vue/cli-plugin-typescript","@vue/cli-service","eslint-plugin-prettier-vue","vue 3","bplist-parser","minimal","gdpr","slide","@chromatic-com/storybook", +"@storybook/addon-webpack5-compiler-babel","chromatic","animatable","customizable","babel-plugin-dev-expression","vitest-axe","sortable","reorder","@rollup/plugin-eslint","scope","codeceptjs","@intlayer/config","@intlayer/types","@utils/ts-config","@utils/ts-config-types","@utils/tsdown-config","@enact/i18n","ilib","ahooks","@reporters/github","admin panel","self hosted","lernajs","vuepress-plugin-container","@types/lodash.isnumber","@walletconnect/legacy-types","@walletconnect/legacy-utils","center", +"selenium-mock","body scroll","body scroll lock","react scroll lock","react scroll","freeze","disable","overflow","vanilla-js","bsl", +"broccoli-node-info","verb","what-the-diff","gotrue-js","git-gateway","gateway","creator","vite-plugin-svgr","@atomico/rollup-plugin-sizes","convict","@applitools/test-utils","xxhash-wasm","expressots","clean-architecture","typescript-framework","withastro","astro-integration","@internal/test-utils","code-blocks","syntax-highlighting","eslint-import-resolver-custom-alias","resolve-tspaths","@publint/pack","unplugin-unused","@ckeditor/ckeditor5-comments","@ckeditor/ckeditor5-track-changes","CKEditor", +"WYSIWYG","WYSIWYW","rich-text","visual testing","@tanstack/vue-virtual","radix-ui","chatbot","chatgpt","draggable","drizzle-orm","@antfu/ni","survey-renderer","flmngr","@applitools/snippets","@antora/asciidoc-loader","vite-plugin-dts-bundle-generator","vite-plugin-pages","vite-plugin-typescript","game","2d","replace-in-files-cli","jugglingdb","@alifd/next","@angular/http","@angular/platform-server","@angular/router","@ant-design/react-native","@auth/sveltekit","@api-components/api-method-documentation", +"@apollo/client","@babel/runtime-corejs2","@biz-dev-ops/md-docs","@bwcr_/winston-loki","@chatscope/chat-ui-kit-react","@ckeditor/ckeditor5-angular","@ckeditor/ckeditor5-build-balloon","@ckeditor/ckeditor5-build-balloon-block", +"@ckeditor/ckeditor5-build-classic","@ckeditor/ckeditor5-build-decoupled-document","@ckeditor/ckeditor5-build-inline","@ckeditor/ckeditor5-react","@ckeditor/ckeditor5-vue","@compodoc/compodoc","@comunica/core","@contenthook/browser","@contenthook/cli","@contenthook/node","@coreui/coreui","@deven-org/documentation-skeleton","@devtea2026/aspernatur-ea-non-porro","@devtea2026/consectetur-ab-unde-quisquam","@devtea2026/cupiditate-dolorem-excepturi-impedit","@devtea2026/distinctio-soluta-illo-eaque", +"@devtea2026/eum-ullam-est-distinctio","@devtea2026/explicabo-alias-architecto-sed","@devtea2026/improved-journey","@devtea2026/inventore-facilis-corporis-cum","@devtea2026/ipsa-omnis-in-molestiae","@devtea2026/literate-computing-machine","@devtea2026/maxime-sequi-est-rem","@devtea2026/necessitatibus-dolorem-esse-atque","@devtea2026/odit-enim-reiciendis-pariatur","@devtea2026/odit-maxime-porro-asperiores","@devtea2026/possimus-ipsa-sint-consequuntur","@devtea2026/qui-quos-laborum-amet", +"@devtea2026/quia-ducimus-placeat-minima","@devtea2026/quidem-voluptate-repudiandae-necessitatibus","@devtea2026/rerum-quaerat-porro-animi","@devtea2026/ubiquitous-octo-memory","@diotoborg/adipisci-placeat-iure","@diotoborg/amet-architecto-est","@diotoborg/at-totam-perspiciatis","@diotoborg/commodi-voluptatum-libero","@diotoborg/delectus-necessitatibus-voluptatum","@diotoborg/deserunt-illo-tempora","@diotoborg/dicta-recusandae-veniam","@diotoborg/dolor-earum-quia","@diotoborg/dolor-tempora-fuga", +"@diotoborg/dolores-praesentium-assumenda","@diotoborg/eligendi-est-unde","@diotoborg/esse-accusantium-ratione","@diotoborg/illo-amet-architecto","@diotoborg/laudantium-itaque-esse","@diotoborg/libero-asperiores-at","@diotoborg/neque-inventore-corporis","@diotoborg/nostrum-eveniet-officiis","@diotoborg/odio-dolores-officia","@diotoborg/porro-modi-accusamus","@diotoborg/psychic-bassoon","@diotoborg/quasi-repellat-odit","@diotoborg/qui-ullam-ipsum","@diotoborg/quo-dolorem-ducimus", +"@diotoborg/ratione-error-odio","@diotoborg/repellat-blanditiis-quis","@diotoborg/tempora-voluptas-distinctio","@diotoborg/ullam-dignissimos-repudiandae","@diotoborg/velit-reiciendis-velit","@diotoborg/verbose-robot","@diplodoc/transform","@disqada/workspace","@doc-tools/docs", +"@dramaorg/esse-praesentium-eligendi","@dramaorg/quae-dolore-nostrum","@eas-framework/server","@eightshift/frontend-libs","@electron/docs-parser","@erboladaiorg/ad-exercitationem-ducimus","@erboladaiorg/asperiores-earum-quaerat","@erboladaiorg/asperiores-fuga-sint","@erboladaiorg/asperiores-nam-adipisci","@erboladaiorg/autem-dolores-ipsam","@erboladaiorg/cupiditate-consectetur-porro","@erboladaiorg/cupiditate-pariatur-optio","@erboladaiorg/distinctio-tempora-quis","@erboladaiorg/error-atque-ea", +"@erboladaiorg/esse-ipsa-numquam","@erboladaiorg/ex-hic-molestias","@erboladaiorg/explicabo-eius-adipisci","@erboladaiorg/molestiae-voluptatibus-perferendis","@erboladaiorg/molestias-nulla-dolor","@erboladaiorg/nisi-culpa-cum","@erboladaiorg/officia-illum-aperiam","@erboladaiorg/perspiciatis-magni-ut","@erboladaiorg/quae-in-veniam","@erboladaiorg/quaerat-mollitia-adipisci","@erboladaiorg/quibusdam-itaque-tempora","@erboladaiorg/sint-deleniti-dolorem","@erboladaiorg/sit-nesciunt-amet", +"@erboladaiorg/tenetur-architecto-dolore","@erboladaiorg/ut-dignissimos-laborum","@erboladaiorg/velit-fugit-harum","@fakeyanss/redoc","@fontsource/inter","@fontsource/roboto","@grandlinex/e-kernel","@grandlinex/kernel","@graphql-markdown/core","@graphql-markdown/docusaurus","@hajtech/webpack-config","@hishprorg/aliquid-ad-vero","@hishprorg/autem-sint-quas","@hishprorg/cum-rem-consequuntur","@hishprorg/earum-sint-veritatis","@hishprorg/eius-vero-dicta","@hishprorg/est-dicta-quis", +"@hishprorg/incidunt-quibusdam-tempore","@hishprorg/itaque-esse-accusamus","@hishprorg/iure-optio-nihil","@hishprorg/magni-amet-id","@hishprorg/magni-nisi-aperiam","@hishprorg/maxime-voluptates-enim","@hishprorg/nihil-ad-ratione","@hishprorg/perspiciatis-ratione-unde","@hishprorg/quis-perferendis-culpa","@hishprorg/reprehenderit-excepturi-sed","@hishprorg/sint-nam-consequuntur","@hishprorg/sunt-officia-eligendi","@hishprorg/sunt-voluptatem-nobis","@hishprorg/unde-vitae-reprehenderit","@hishprorg/wafflejs", +"@homer0/prettier-plugin-jsdoc","@hookform/resolvers","@iamtraction/google-translate","@idux/components","@itwin/itwinui-react", +"@jsonforms/material-renderers","@juigorg/nisi-molestiae-ut","@juigorg/sit-nam-neque","@jupyterlab/application","@kobedevi/sassdoc","@kollorg/dicta-itaque-nemo","@kollorg/nihil-veniam-deserunt","@libphamton/chatfanpage","@libphamton/fb-group","@listr2/prompt-adapter-inquirer","@mantine/dates","@mantine/modals","@mantine/prism","@mantine/styles","@material-ui/core","@material-ui/icons","@mathematikoi/jsonapi","@middy/http-json-body-parser","@ministryofjustice/frontend","@mui/lab","@neato/guider", +"@ng-doc/ui-kit","@ng-doc/utils","@npmcorp/marky-markdown","@npmtuanmap/ex-vel-expedita-impedit","@npmtuanmap/psychic-guide","@npmtuanmap/recusandae-recusandae-nam-et","@npmtuanmap/sed-quo-nemo-rerum","@npmtuanmap/velit-esse-velit-magnam","@nrwl/devkit","@nrwl/tao","@nrwl/workspace","@nx/esbuild","@nx/express","@nx/nest","@oclif/command","@opentiny/vue","@opentiny/vue-renderless","@opentiny/vue-theme","@opentiny/vue-theme-mobile","@otterhttp/response","@pact-foundation/pact","@patrtorg/a-ad-expedita", +"@patrtorg/a-ut-amet","@patrtorg/asperiores-vel-accusantium","@patrtorg/aspernatur-dolorum-ducimus","@patrtorg/autem-et-hic","@patrtorg/consectetur-culpa-non","@patrtorg/consectetur-repudiandae-consequuntur","@patrtorg/consequatur-voluptatum-officiis","@patrtorg/ducimus-magni-quibusdam","@patrtorg/enim-magni-hic","@patrtorg/est-corrupti-deleniti","@patrtorg/eveniet-tempore-maiores","@patrtorg/illum-sapiente-quos","@patrtorg/laborum-doloribus-voluptate","@patrtorg/libero-doloribus-omnis", +"@patrtorg/libero-voluptas-sequi","@patrtorg/magnam-aut-adipisci","@patrtorg/maiores-quidem-quo","@patrtorg/molestias-molestias-ut","@patrtorg/nam-eius-unde","@patrtorg/pariatur-deleniti-quaerat","@patrtorg/porro-labore-eos", +"@patrtorg/quae-earum-eius","@patrtorg/quos-quasi-ipsa","@patrtorg/sapiente-eos-magnam","@patrtorg/sapiente-exercitationem-sit","@patrtorg/tenetur-animi-reprehenderit","@perseid/store","@phosphor/widgets","@phun-ky/speccer","@polymer/polymer","@qooxdoo/framework","@quasar/extras","@readyplayerme/visage","@sanity/tsdoc","@scalar/fastify-api-reference","@serenity-js/protractor","@serenity-js/webdriverio","@subwallet/react-ui","@supernovaio/sdk","@supernovaio/sdk-exporters","@supernovaio/supernova-sdk", +"@sveltejs/eslint-config","@swenkerorg/maiores-voluptatibus-nemo","@swenkerorg/modi-dolorum-provident","@swenkerorg/nulla-voluptates-voluptates","@swisspost/design-system-styles","@symbiotejs/symbiote","@synion/md-docs","@taktikorg/aut-distinctio-repellat","@taktikorg/consectetur-quo-quos","@taktikorg/corporis-nihil-odit","@taktikorg/deleniti-qui-dolorem","@taktikorg/dolor-ratione-quibusdam","@taktikorg/harum-reprehenderit-perferendis","@taktikorg/illum-accusamus-possimus","@taktikorg/ipsa-totam-aperiam", +"@taktikorg/iste-ex-tempore","@taktikorg/itaque-nam-eos","@taktikorg/itaque-tempore-exercitationem","@taktikorg/maiores-dolores-aut","@taktikorg/molestias-fuga-possimus","@taktikorg/nam-esse-animi","@taktikorg/necessitatibus-repudiandae-officia","@taktikorg/nisi-reprehenderit-amet","@taktikorg/placeat-voluptates-dolorum","@taktikorg/praesentium-dolorum-quis","@taktikorg/praesentium-neque-ipsam","@taktikorg/quo-reiciendis-quibusdam","@taktikorg/recusandae-ratione-veniam","@taktikorg/similique-natus-officia", +"@taktikorg/suscipit-modi-ratione","@taktikorg/tempore-veniam-in","@taktikorg/unde-animi-omnis","@taktikorg/velit-nobis-blanditiis","@taktikorg/voluptatem-pariatur-tenetur","@tanstack/svelte-query","@teamhanko/hanko-frontend-sdk","@twurple/ebs-helper","@ucloud-fe/react-components","@unleash/proxy","@uploadcare/file-uploader","@wuxh/dumi","@zitterorg/adipisci-quae-eius","@zitterorg/aspernatur-pariatur-occaecati","@zitterorg/at-esse-odit", +"@zitterorg/cum-ipsum-beatae","@zitterorg/doloremque-ut-omnis","@zitterorg/est-sunt-quos","@zitterorg/eum-veritatis-placeat","@zitterorg/fluffy-waddle","@zitterorg/glowing-barnacle","@zitterorg/illum-perferendis-consectetur","@zitterorg/itaque-nisi-veritatis","@zitterorg/probable-octo","@zitterorg/upgraded-fishstick","@zkportal/aleo-oracle-sdk","agenda","angular-animate","ant-design-vue","antfu","apidoc-markdown","appium-android-driver","applicationinsights","appsync-client-node","auto-install", +"azure-storage","base-64","batuta","bcrypt-nodejs","bearcat","beauty-foot-compass5","beefy","beyond","blessed-contrib","blocked","bookshelf","brain","bump-cli","casperjs","chart.js","choerodon-ui","clipanion","co-prompt","connect-flash","connect-mongo","contenthook","corcojs-qrcode-logo","cropperjs","cson-parser","css-declaration-sorter","cuid","dable-effect","datafire","deep-assign","deep-consist-ability3","directed-graph-typed","discord-backend-manager","dmd-grunt-jsdoc2md","dnd-multi-backend","dnode", +"doc-detective","docgen","docpad","docschema","docsify-tabs","docusaurus-lunr-search","dom-to-image-more","download-git-repo","doxdox-parser-dox", +"draft-js","dumi-cm","dw-neit-antd","electron-builder","electron-prebuilt","electron-rebuilder","element-ui","email-templates","emailjs","ent","enumtype","ethereumjs-tx","express-adexe","express-autodoc","express-generator","express-handlebars","express-jwt","express-tools","express-typed-rpc","express-validator","express-zod-api","fast-csv","fast-plist","fe-pilot","femo","file-saver","firebase-admin","firebase-tools","flatpak-bundler","flatpickr","flightplan","fork-ts-checker-webpack-plugin-alt", +"fs-promise","futen","gc-signals","generator-angular","generator-gulp-angular","generator-nitro","gensequence","geolib","github-buttons","google-spreadsheet","govuk-frontend","graphql-tools","grpc","grunt-angular-templates","grunt-contrib-compass","grunt-contrib-htmlmin","grunt-contrib-imagemin","grunt-contrib-sass","grunt-spritesmith","gulp-angular-templatecache","gulp-atom-electron","gulp-awspublish","gulp-azure-storage","gulp-bom","gulp-bower","gulp-cache","gulp-cached","gulp-coffee","gulp-compass", +"gulp-conflict","gulp-copy","gulp-csscomb", +"gulp-csslint","gulp-file-include","gulp-flatmap","gulp-ftp","gulp-gzip","gulp-handlebars","gulp-html-replace","gulp-iconfont","gulp-ignore","gulp-image-resize","gulp-include","gulp-inline-css","gulp-install","gulp-jade","gulp-livereload","gulp-minify-html","gulp-ng-annotate","gulp-nodemon","gulp-preprocess","gulp-prompt","gulp-react","gulp-remote-src","gulp-rev-replace","gulp-ruby-sass","gulp-sftp","gulp-strip-debug","gulp-svg-sprite","gulp-svgmin","gulp-svgstore","gulp-template","gulp-uncss","gulp-useref", +"gulp-webpack","gulp.spritesmith","heroicons","hexlet-pairs","hiredis","homebridge","how-to-npm","html-pdf","html-to-image","htmlnano","i18next-gridly-backend","impress","iniparser","innosetup-compiler","inquirer-autocomplete-prompt","instagram-node","intl-tel-input","inversify","irc","jarallax","jest-environment-jsdom-fourteen","jest-html-reporters","jodit-react","jquery-ui","jsarch","jsdom-no-contextify","jspm","jstates","jwt-simple","knox","koa-body","koa-bodyparser", +"koa-logger","koa-mount","koa-router","kue","lazy.js","leaflet","left-pad","libphonenumber-js","linkifyjs","lite-server","lodash.foreach","lodash.get","lodash.isempty","lodash.isfunction","lodash.isobject","lodash.omit","lodash.pick","lodash.set","lucide","lwip","madwizard","main-bower-files","mantine-contextmenu","mapboxgl-legend","markdown-pdf","marky-markdown","mathjs","md5-file","mdxts","memwatch","mental-oxygen-dozen","min-heap-typed","mirror-jet-printed-supper","mkcert","moleculer","monaco-yaml", +"monads-io","mongo-express","monitor-dashboard","muuri","n","nano-css","native-keymap","nativefier","nconf","near-social-bridge","nest-commander","newrelic","ng-mocks","ng-zorro-antd","nise","node-containerpattern","node-dev","node-gcm","node-geocoder","node-oauth2-server","node-powertools","node-red","node-windows","node-xlsx","nodegit","nodewebkit","normalize-url","npm-to-yarn", +"npm-windows-upgrade","nwsapi","onoff","openapi-client-axios","openapi2html","openweather","ovsx","p23","pageres","paintor","para-cli","parallelshell","passport-facebook","passport-local","passport-oauth","paypal-server-api","pdfjs","pi-gpio","pkginfo","pnp-webpack-plugin","pnpx","poe-api-manager","postcss-colormin","postcss-convert-values","postcss-cssnext","postcss-discard-duplicates","postcss-discard-empty","postcss-discard-overridden","postcss-merge-longhand","postcss-merge-rules", +"postcss-minify-font-values","postcss-minify-gradients","postcss-minify-params","postcss-minify-selectors","postcss-normalize-charset","postcss-normalize-positions","postcss-normalize-string","postcss-normalize-unicode","postcss-normalize-url","postcss-normalize-whitespace","postcss-ordered-values","postcss-reduce-initial","postcss-svgo","postcss-unique-selectors","postgrejs","prettierrc","private-bower","promo-server","pull-stream","queue-typed","randomstring","rcw-plugin", +"react-addons-css-transition-group","react-addons-shallow-compare","react-apollo","react-markdown","react-modal","react-motion","react-native-keychain","react-onclickoutside","react-router-redux","react-select","react-svg","reactify", +"readline-sync","recall-shut-say","redocusaurus","redux-actions","redux-saga","rehype-mdx-code-props","remark-mermaidjs","requireindex","rest-chronicle","restler","rethinkdb","rsnext","rxjs-compat","schema-markdown-doc","semantic-ui-react","seneca","sequelize","serverless-finch","serverless-spy","simple-assi-animation","simple-prompts-web3","single-spa","sinopia","sizeitup","skapi-js","slow-deps","spectaql","sprintf","storybook-django","straiforos-compodoc","strange-lady-riding9","streamii", +"string-strip-html","style-dictionary","stylelint-declaration-strict-value","supertest-as-promised","sw-precache-webpack-plugin","swagger-inline","tarant","tarant-sync-router-express","tdlib-native","terminal-kit","terminal-menu","test-cutting","test-snippets","thunkify","tracer","train-stick-swept7","trpc","trumpet","ts-cache-mongoose","ts-japi","ts-migrate-mongoose","ts-patch-mongoose","ts-rule-engine","tsd-lite","tweetnacl","twemoji","twit","typedoc-material-theme","typedoc-plugin-extras","typedocs", +"typegen","typegoose", +"uj-apidoc-core","ulid","unique-random-array","urijs","valid-url","vant","virtual-dom","vite-plugin-api-routes","vorpal","vscode-debugprotocol","vscode-nls-dev","vscode-textmate","vue-property-decorator","web3-be","web3-eve-cli","web3-exactly6","web3-fruit","webshot","webworker-threads","weinre","winston-daily-rotate-file","x-ray","xmldom","xstate","yarnpkg","yoctocolors-cjs","zod-http-schemas","zombie","@nx/eslint-plugin","@nx/storybook","teajusgula","@augment-vir/common", +"@commercetools-frontend/mc-scripts","@jsonforms/vanilla-renderers","@jsonforms/vue-vanilla","hot-shots","madr","native-run","typed-binary","@adonisjs/core","@aneuhold/be-ts-lib","@capacitor/assets","@devtea2025/blanditiis-numquam-expedita-neque","@devtea2025/doloremque-voluptas-facere-nemo","@devtea2025/quisquam-quod-ab-aut","@devtea2025/suscipit-assumenda-a-assumenda","@devtea2025/voluptatibus-vero-magni-rerum","@diahkomalasarinpm/odio-facilis-beatae","@diahkomalasarinpm/praesentium-sint-dolorem", +"@envelop/core","@ionic/cli","@jsonforms/angular","@jsonforms/examples","@npmtea2024/quasi-nisi-doloremque-fugit","@ptkhanh94npm/iusto-libero-aperiam","@ptkhanh94npm/quis-saepe-velit","@renyii/vue-renderless","@teamteanpm2024/aperiam-fugit-error","@teamteanpm2024/architecto-alias-quod","@teamteanpm2024/aut-voluptatum-vero","@teamteanpm2024/beatae-aliquid-id","@teamteanpm2024/expedita-labore-ipsum","@teamteanpm2024/odio-fugiat-in","@teamteanpm2024/voluptatibus-reprehenderit-odit", +"@zibuthe7j11/deserunt-quasi-impedit","aws-sdk-client-mock","cupertino-pane","eruda","fasteejs","gradient-string","magnific-popup","pwa-asset-generator","react-native-animatable","react-swipeable-list","readme-md","riot","tdesign-mobile-vue","uploadcare-widget","nextra","@ibyar/expressions","@mantine/carousel","@mantine/dropzone","@mantine/nprogress","@mantine/spotlight","@mantine/tiptap","allure-js-commons","express-intlayer","is-mobile","rehype-mermaid","@bugsnag/react-native","@ionic/angular", +"@npmtuanmap/velit-nobis-nostrum-nam","@skylernpm/hic-inventore-dolores","@skylernpm/reiciendis-non-corrupti","admin-lte","backendless","smartbanner.js","@enact/sandstone","react-responsive-select","@asyncapi/generator","@mui/base","@nestjsx/crud","@nestjsx/crud-typeorm","@netlify/framework-info","@pothos/core","@strapi/strapi","@svgr/hast-util-to-babel-ast","@uppy/companion","@walletconnect/browser-utils","@walletconnect/iso-crypto","@walletconnect/legacy-provider","@walletconnect/socket-transport", +"@wordpress/primitives","angular-messages","angular-mocks","broccoli-builder","camelcase-css","condense-newlines","css-mediaquery","dashdash","decap-cms-backend-aws-cognito-github-proxy","decap-cms-backend-azure","decap-cms-backend-bitbucket","decap-cms-backend-git-gateway","decap-cms-backend-github","decap-cms-backend-gitlab","decap-cms-backend-proxy","decap-cms-backend-test", +"device-detector-js","eslint-rule-documentation","http-graceful-shutdown","inferno-hydrate","infima","jest-preset-angular","logging-helpers","micromark-extension-gfm-tagfilter","micromark-util-html-tag-name","mobile-detect","parse-entities","rc-hammerjs","rdme","react-device-detect","react-easy-router","react-native-file-viewer","react-native-lightbox-v2","react-native-progress","react-native-svg-charts","react-native-youtube-iframe","react-responsive-modal","react-style-singleton","text-hex", +"tua-body-scroll-lock","typedoc-default-themes","use-callback-ref","use-sidecar","vconsole","vue-perfect-scrollbar","worktop","@dataui/crud","drag-drop","react-h5-audio-player","arethetypeswrong","astrojs","cookiecutter","degit","tseslint","@web/test-runner-mocha","@expressots/adapter-express","netlify-cms-backend-test","@amaui/icons-material-rounded-react","@dataui/crud-typeorm","@onesy/icons-material-rounded-react","react-native-macos","@ionic/react-router", +"@immobiliarelabs/backstage-plugin-gitlab-backend","@scalar/nextjs-api-reference","netlify-cms-backend-bitbucket","vendors","@busy-hour/blaze-types","attw","@egjs/flicking","body-scroll-lock-upgrade","@casl/ability","@types/xast","@modern-js/node-bundle-require","careful-downloader","sonner","@ckeditor/ckeditor5-collaboration-core","react-smooth","@ckeditor/ckeditor5-real-time-collaboration","@udecode/plate","netlify-cms-backend-gitlab", +"teeny-tap","emoji-js","mercurius","unbundle","@walletconnect/http-connection","convex-helpers","netlify-cms-backend-git-gateway","@pinia/testing","leaflet-gesture-handling","netlify-cms-backend-proxy","@nuxt/ui","country-codes-flags-phone-codes","embla-carousel-react","input-otp","@assistant-ui/react","@globalart/nestjs-swagger","@graphiql/plugin-doc-explorer","@mastra/core","next-router-mock","react-native-lightbox","rolldown-vite","react-native-aes-crypto","@lobehub/chat","@upstash/context7-mcp", +"@walletconnect/heartbeat","lory.js","react-camera-pro","react-native-nitro-modules","@tanstack/virtual-core","otp-io","survey-core","@intlayer/api","@architect/asap","canvaskit-wasm","@edsdk/n1ed-react","@crxjs/vite-plugin","skia-canvas","@flmngr/flmngr-react","md-to-pdf","@applitools/eyes","@applitools/screenshoter","@antora/cli","@antora/navigation-builder","@openspacelabs/react-native-zoomable-view","@antora/redirect-producer","planck","stage-js","syncpack","nolyfill","@appium/base-driver", +"@c15t/backend","@react-native-vector-icons/common","@antora/content-classifier","blurup","encryptor","flickity","jstz","orms","pannellum","psql","swiperjs","tributejs","xbytes","keywords", +"big.js","@alifd/field","@alifd/overlay","@alifd/validate","shallow-element-equals","ts-mocha","@types/co","html5shiv","react-axe","react-live","solarlunar","@types/jsonp","@types/big.js","react-cropper","@types/stylelint","fast-sass-loader","@alifd/doc-parser","@alifd/meet-react","@types/babel-core","@alifd/sass-mapper","@alifd/sass-tracker","@types/postcss-calc","@alifd/api-extractor","@alifd/dts-generator","@alifd/adaptor-helper","@alifd/sassdoc-parser","cypress-image-snapshot","@alifd/adaptor-generate", +"@types/lodash.clonedeep","@alifd/babel-preset-next","@alifd/eslint-config-next","node-sass-package-importer","stylelint-csstree-validator","@alifd/stylelint-config-next","@types/cypress-image-snapshot","babel-plugin-generator-prettier","@types/postcss-custom-properties","babel-plugin-transform-proto-to-assign","babel-plugin-transform-react-es6-displayname","fusion","fusion design","ui toolkit","react-components","blueprints","schematics","tooling","@types/dom-navigation","lodash.assignwith", +"normalize-css-color","react-native-codegen","@floating-ui/react-native","@rc-component/mini-decimal","react-native-modal-popover","@bang88/react-native-ultimate-listview","shell-utils","ant-design-palettes","react-native-mocker","react-native-screens","antd-mobile-demo-data","@react-navigation/stack","react-native-reanimated","@react-navigation/native","react-native-gesture-handler","@ant-design/icons-react-native", +"react-native-safe-area-context","@inline-svg-unique-id/react","authjs","passwordless","@types/fs-readdir-recursive","gensync","let","@babel/helper-check-duplicate-nodes","tc39","moo","liquidjs","iso-639-1","bcp-47-normalize","@11ty/lodash-custom","@11ty/posthtml-urls","@11ty/eleventy-utils","@11ty/recursive-copy","@11ty/dependency-tree","node-retrieve-globals","posthtml-match-helper","@11ty/dependency-tree-esm","@11ty/eleventy-dev-server","@11ty/eleventy-plugin-bundle","nano-staged","@zachleat/noop", +"jsx-async-runtime","@11ty/eleventy-img","@mdx-js/node-loader","@11ty/eleventy-plugin-rss","@11ty/eleventy-plugin-webc","@11ty/eleventy-plugin-syntaxhighlight","ssg","11ty","liquid","css-parser","css-ast","css-tools","@advanced-rest-client/clipboard-copy","@advanced-rest-client/http-code-snippets","@advanced-rest-client/markdown-styles","@anypoint-web-components/anypoint-collapse","@api-components/api-annotation-document","@api-components/api-body-document","@api-components/api-example-generator", +"@api-components/api-headers-document","@api-components/api-parameters-document","@api-components/api-responses-document","@api-components/api-security-documentation","@api-components/http-method-label","@advanced-rest-client/arc-demo-helper","@anypoint-web-components/anypoint-checkbox","@anypoint-web-components/anypoint-input","@api-components/api-server-selector","api-components","method-documentation","@wry/caches","@wry/equality","@wry/trie","babel-plugin-source-map-support", +"@nicolo-ribaudo/eslint-scope-5-internals","array.prototype.concat","babel-plugin-polyfill-es-shims","@babel/plugin-syntax-export-namespace-from","@babel/plugin-syntax-object-rest-spread", +"@babel/preset-modules","@babel/plugin-transform-literals","@babel/plugin-transform-new-target","@babel/plugin-transform-dotall-regex","@babel/plugin-transform-json-strings","@babel/plugin-transform-object-super","@babel/plugin-transform-sticky-regex","@babel/plugin-transform-function-name","@babel/plugin-transform-typeof-symbol","@babel/plugin-transform-unicode-regex","@babel/plugin-transform-duplicate-keys","@babel/plugin-transform-reserved-words","@babel/plugin-syntax-unicode-sets-regex", +"@babel/plugin-transform-unicode-escapes","@babel/plugin-transform-regexp-modifiers","@babel/plugin-transform-unicode-sets-regex","@babel/plugin-transform-computed-properties","@babel/plugin-transform-shorthand-properties","@babel/plugin-transform-block-scoped-functions","@babel/plugin-transform-unicode-property-regex","@babel/plugin-transform-explicit-resource-management","@babel/plugin-transform-named-capturing-groups-regex","@babel/plugin-bugfix-firefox-class-in-computed-class-key", +"@babel/plugin-bugfix-safari-class-field-initializer-scope","@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly","@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining","@babel/plugin-transform-duplicate-named-capturing-groups-regex","@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression","@babel/plugin-transform-react-jsx-development","@babel/plugin-transform-react-pure-annotations","babel-preset","@babel/helper-globals","@biz-dev-ops/web-components", +"@iframe-resizer/child","@iframe-resizer/parent","awilix","bpmn-js","markdown-it-codetabs","markdown-it-multimd-table","markdown-it-plantuml-ex","pdfjs-viewer-element","prince","web-resource-inliner","bpmn","term-size","spawndamnit","@changesets/git","@changesets/pre","@changesets/read","@changesets/types","@changesets/write","@changesets/config","@changesets/errors","@changesets/logger","@manypkg/get-packages","@changesets/changelog-git","@inquirer/external-editor","@changesets/apply-release-plan", +"@changesets/should-skip-package","@changesets/get-dependents-graph","@changesets/assemble-release-plan","human-id","@chatscope/chat-ui-kit-styles","ui kit", +"communication","conversation","reusable","talk","ckeditor5-feature","ckeditor5-plugin","angular 5","blurhash","color-parse","vanilla-colorful","vue component","vue.js component","@commitlint/format","@commitlint/read","@polka/send-type","bootstrap.native","tablesort","vis-network","@comunica/types","semantic","nf","hugo-bin","postcss-combine-duplicated-selectors","pseudo","specificity","@cucumber/ci-environment","@cucumber/cucumber-expressions","@cucumber/gherkin","@cucumber/gherkin-utils", +"@cucumber/html-formatter","@cucumber/junit-xml-formatter","@cucumber/message-streams","@cucumber/messages","@cucumber/pretty-formatter","@cucumber/tag-expressions","capital-case","@cucumber/compatibility-kit","@cucumber/query","@types/dirty-chai","@types/has-ansi","@types/lodash.merge","@types/stream-buffers","reindent-template-literals","@types/semver-compare","semver-compare","deven","@diplodoc/cut-extension","@diplodoc/file-extension","@diplodoc/utils","@diplodoc/babel-preset","@diplodoc/lint", +"@diplodoc/tsconfig","@types/css","yandex","@sapphire/async-queue","@vladfrangu/async_event_emitter","eslint-config-neon","esbuild-plugin-version-injector","discordjs","tsdoc","@diplodoc/client","@diplodoc/markdown-translation","@diplodoc/mermaid-extension","@diplodoc/openapi-extension", +"@doc-tools/yfm2xliff","@yandex-cloud/nodejs-sdk","bem-cn-lite","threads-plugin","@types/async","markdown-it-meta","@types/markdownlint","@yandex-cloud/eslint-config","@yandex-cloud/prettier-config","@yandex-cloud/tsconfig","@tinyhttp/cookie-parser","cookie-encrypter","github-markdown-css","greenlock-express","@types/sass","@types/sql.js","@types/workerpool","razor","aspx","@stylistic/stylelint-plugin","@wordpress/api-fetch","WordPress","@types/pretty-ms","@emotion/memoize","babel-check-duplicated-nodes", +"@emotion/use-insertion-effect-with-fallbacks","warun","@eslint-community/eslint-plugin-mysticatea","@fakeyanss/redocly-openapi-core","@size-limit/preset-app","React.js","positioning","Inter","roboto","Roboto","@fortawesome/fontawesome-common-types","@fortawesome/free-brands-svg-icons","@electron/rebuild","@electron-forge/cli","electron-devtools-installer","@grandlinex/swagger-mate","@fastify/deepmerge","@graphql-markdown/graphql","@graphql-markdown/cli","@tailwindcss/aspect-ratio","@tailwindcss/forms", +"sass-lint","@hapi/ammo","@hapi/boom","@hapi/bounce","@hapi/call","@hapi/catbox","@hapi/catbox-memory","@hapi/heavy","@hapi/mimos","@hapi/podium","@hapi/shot","@hapi/somever","@hapi/statehood","@hapi/subtext","@hapi/teamwork","@hapi/validate","@hapi/inert","@hapi/vision", +"@homer0/eslint-plugin","@homer0/prettier-config","leasot","@typeschema/core","@typeschema/main","@typeschema/zod","check-export-map","io-ts-types","monocle-ts","newtype-ts","nope-validator","scheme-validation","hookform","effect-ts","typeschema","vine","standard-schema","google translate api","google translate","google api","translate api","@atlaskit/pragmatic-drag-and-drop","@atlaskit/pragmatic-drag-and-drop-auto-scroll","@atlaskit/pragmatic-drag-and-drop-hitbox","cli-width","fast-wrap-ansi","domino", +"@stencil/sass","@capacitor/core","@capacitor/haptics","@capacitor/keyboard","@capacitor/status-bar","@stencil/vue-output-target","@stencil/react-output-target","@stencil/angular-output-target","stencil","@itwin/itwinui-illustrations-react","react-table","itwin","itwinui","@jest/console","jest-changed-files","jest-resolve-dependencies","jest-runner","jest-runtime","jest-snapshot","@jest/test-sequencer","instant","painless","sandboxed","@types/redux-mock-store","document-register-element","@date-io/dayjs", +"@jupyterlab/apputils","@jupyterlab/coreutils","@jupyterlab/docregistry","@jupyterlab/rendermime","@jupyterlab/rendermime-interfaces","@jupyterlab/services","@jupyterlab/statedb","@jupyterlab/translation","@jupyterlab/ui-components","@lumino/algorithm","@lumino/application", +"@lumino/commands","@lumino/coreutils","@lumino/disposable","@lumino/messaging","@lumino/polling","@lumino/properties","@lumino/signaling","@lumino/widgets","@jupyterlab/testing","lodash.difference","safe-wipe","sass-convert","@kobedevi/sassdoc-theme-default","scss-comment-parser","vinyl-string","chatfanpage","api-connect-x","api-connect-tiwtter","react-remove-scroll","notification-manager","notification-system","@material-ui/types","@material-ui/utils","@material-ui/styles","@material-ui/system","json:api", +"normalizer","@rushstack/node-core-library","@rushstack/terminal","@rushstack/ts-command-line","@rushstack/rig-package","decoupled-local-node-rig","local-eslint-config","AEDoc","beta","@types/jju","@aws/durable-execution-sdk-js","@aws/durable-execution-sdk-js-testing","@datastream/core","Function URL","Durable function","Middy","Body Parser","JSON Body Parser","@aws-sdk/client-ssm","aws-xray-sdk","moj","@open-draft/logger","@open-draft/until","engine.io-parser","express-rate-limit","web-encoding", +"intercept","low-level","@mui/core-downloads-tracker","@mui/x-internals","mui-x","timepicker","@iconify-icon/react","@vcarl/remark-headings","approximate-number","extra-watch-webpack-plugin","flexsearch","mdast-util-phrasing", +"next-seo","rehype-extract-excerpt","remark-heading-id","remark-link-rewrite","tailwindcss-themer","@types/extra-watch-webpack-plugin","@types/git-url-parse","@repo/eslint-config","@repo/typescript-config","@repo/prettier-config","esthetic","guides","demo","ng-doc","rehype-minify-whitespace","unist-util-filter","@shikijs/rehype","ordinal","@nomicfoundation/hardhat-ethers","@nomicfoundation/eslint-plugin-slow-imports","@nomicfoundation/eslint-plugin-hardhat-internal-rules","smart-contracts","@npmcli/query", +"json-stringify-nice","proggy","promise-all-reject-late","promise-call-limit","minify-registry-metadata","tcompare","map-workspaces","formatted","syntax highlighting","EsBuild","Lint","Express","babel-plugin-const-enum","babel-plugin-transform-typescript-metadata","Swc","Tsc","kill-port","@nx/docker","@oclif/help","@types/wordwrap","oclif-plugin","@octokit/plugin-paginate-rest","@octokit/plugin-request-log","@octokit/plugin-rest-endpoint-methods","@octokit/auth-action","@octokit/auth-app", +"@octokit/fixtures-server","@octokit/request","@octokit/tsconfig","semantic-release-plugin-update-version-in-files","api-client","@opentiny/vue-action-menu","@opentiny/vue-action-sheet","@opentiny/vue-alert","@opentiny/vue-amount","@opentiny/vue-anchor","@opentiny/vue-area","@opentiny/vue-async-flowchart","@opentiny/vue-autocomplete","@opentiny/vue-badge","@opentiny/vue-base-select", +"@opentiny/vue-breadcrumb","@opentiny/vue-breadcrumb-item","@opentiny/vue-bulletin-board","@opentiny/vue-button","@opentiny/vue-button-group","@opentiny/vue-calendar","@opentiny/vue-calendar-bar","@opentiny/vue-calendar-view","@opentiny/vue-card","@opentiny/vue-card-group","@opentiny/vue-card-template","@opentiny/vue-carousel","@opentiny/vue-carousel-item","@opentiny/vue-cascader","@opentiny/vue-cascader-menu","@opentiny/vue-cascader-mobile","@opentiny/vue-cascader-node","@opentiny/vue-cascader-panel", +"@opentiny/vue-cascader-select","@opentiny/vue-cascader-view","@opentiny/vue-cell","@opentiny/vue-checkbox","@opentiny/vue-checkbox-button","@opentiny/vue-checkbox-group","@opentiny/vue-col","@opentiny/vue-collapse","@opentiny/vue-collapse-item","@opentiny/vue-collapse-transition","@opentiny/vue-color-picker","@opentiny/vue-color-select-panel","@opentiny/vue-column-list-group","@opentiny/vue-column-list-item","@opentiny/vue-company","@opentiny/vue-config-provider","@opentiny/vue-container", +"@opentiny/vue-country","@opentiny/vue-crop","@opentiny/vue-currency","@opentiny/vue-date-panel","@opentiny/vue-date-picker","@opentiny/vue-date-picker-mobile-first","@opentiny/vue-date-range","@opentiny/vue-date-table","@opentiny/vue-dept","@opentiny/vue-dialog-box","@opentiny/vue-dialog-select","@opentiny/vue-divider","@opentiny/vue-drawer","@opentiny/vue-drop-roles","@opentiny/vue-drop-times","@opentiny/vue-dropdown","@opentiny/vue-dropdown-item","@opentiny/vue-dropdown-menu", +"@opentiny/vue-dynamic-scroller","@opentiny/vue-dynamic-scroller-item","@opentiny/vue-espace","@opentiny/vue-exception","@opentiny/vue-fall-menu","@opentiny/vue-file-upload","@opentiny/vue-filter","@opentiny/vue-filter-bar","@opentiny/vue-filter-box","@opentiny/vue-filter-panel","@opentiny/vue-float-button", +"@opentiny/vue-floatbar","@opentiny/vue-floating-button","@opentiny/vue-flowchart","@opentiny/vue-fluent-editor","@opentiny/vue-form","@opentiny/vue-form-item","@opentiny/vue-fullscreen","@opentiny/vue-grid","@opentiny/vue-grid-column","@opentiny/vue-grid-manager","@opentiny/vue-grid-select","@opentiny/vue-grid-toolbar","@opentiny/vue-guide","@opentiny/vue-hrapprover","@opentiny/vue-image","@opentiny/vue-image-viewer","@opentiny/vue-input","@opentiny/vue-ip-address","@opentiny/vue-layout", +"@opentiny/vue-link","@opentiny/vue-link-menu","@opentiny/vue-load-list","@opentiny/vue-loading","@opentiny/vue-locales","@opentiny/vue-logon-user","@opentiny/vue-logout","@opentiny/vue-menu","@opentiny/vue-message","@opentiny/vue-milestone","@opentiny/vue-mind-map","@opentiny/vue-modal","@opentiny/vue-month-range","@opentiny/vue-month-table","@opentiny/vue-nav-menu","@opentiny/vue-notify","@opentiny/vue-number-animation","@opentiny/vue-numeric","@opentiny/vue-option","@opentiny/vue-option-group", +"@opentiny/vue-pager","@opentiny/vue-pager-item","@opentiny/vue-panel","@opentiny/vue-picker","@opentiny/vue-pop-upload","@opentiny/vue-popconfirm","@opentiny/vue-popeditor","@opentiny/vue-popover","@opentiny/vue-popup","@opentiny/vue-progress","@opentiny/vue-pull-refresh","@opentiny/vue-qr-code","@opentiny/vue-quarter-panel","@opentiny/vue-query-builder","@opentiny/vue-radio","@opentiny/vue-radio-button","@opentiny/vue-radio-group","@opentiny/vue-rate","@opentiny/vue-record", +"@opentiny/vue-recycle-scroller","@opentiny/vue-river","@opentiny/vue-roles","@opentiny/vue-row","@opentiny/vue-scroll-text","@opentiny/vue-scrollbar", +"@opentiny/vue-search","@opentiny/vue-select","@opentiny/vue-select-dropdown","@opentiny/vue-select-mobile","@opentiny/vue-select-view","@opentiny/vue-select-wrapper","@opentiny/vue-selected-box","@opentiny/vue-signature","@opentiny/vue-skeleton","@opentiny/vue-skeleton-item","@opentiny/vue-slider","@opentiny/vue-slider-button","@opentiny/vue-slider-button-group","@opentiny/vue-space","@opentiny/vue-split","@opentiny/vue-standard-list-item","@opentiny/vue-statistic","@opentiny/vue-steps", +"@opentiny/vue-sticky","@opentiny/vue-switch","@opentiny/vue-tab-item","@opentiny/vue-tabbar","@opentiny/vue-tabbar-item","@opentiny/vue-table","@opentiny/vue-tabs","@opentiny/vue-tag","@opentiny/vue-tag-group","@opentiny/vue-tag-input","@opentiny/vue-text-popup","@opentiny/vue-time","@opentiny/vue-time-line","@opentiny/vue-time-panel","@opentiny/vue-time-picker","@opentiny/vue-time-picker-mobile","@opentiny/vue-time-range","@opentiny/vue-time-select","@opentiny/vue-time-spinner", +"@opentiny/vue-timeline-item","@opentiny/vue-toggle-menu","@opentiny/vue-tooltip","@opentiny/vue-top-box","@opentiny/vue-transfer","@opentiny/vue-transfer-panel","@opentiny/vue-tree","@opentiny/vue-tree-menu","@opentiny/vue-tree-select","@opentiny/vue-upload","@opentiny/vue-upload-dragger","@opentiny/vue-upload-list","@opentiny/vue-user","@opentiny/vue-user-account","@opentiny/vue-user-contact","@opentiny/vue-user-head","@opentiny/vue-user-head-group","@opentiny/vue-user-link", +"@opentiny/vue-virtual-scroll-box","@opentiny/vue-virtual-tree","@opentiny/vue-watermark","@opentiny/vue-wizard","@opentiny/vue-year-range","@opentiny/vue-year-table","component-library","opentiny","renderless-components", +"headless-components","@opentiny/utils","@opentiny/vue-hooks","gulp-svg-inline","gulp-transform","@otterhttp/accepts","@otterhttp/proxy-address","@otterhttp/type-is","@otterhttp/url","@otterhttp/router","es-escape-html","@otterhttp/content-disposition","@otterhttp/encode-url","@otterhttp/vary","@otterhttp/etag","@pact-foundation/pact-core","@pact-foundation/pact-js-prettier-config","pact","pact-js","contract testing","consumer driven testing","@phosphor/algorithm","@phosphor/commands","@phosphor/coreutils", +"@phosphor/disposable","@phosphor/domutils","@phosphor/dragdrop","@phosphor/keyboard","@phosphor/messaging","@phosphor/properties","@phosphor/signaling","@phosphor/virtualdom","cobertura","eslint-config-phun-ky","typedoc-plugin-frontmatter","typedoc-plugin-mdn-links","typedoc-plugin-remark","typedoc-plugin-rename-defaults","typedoc-vitepress-theme","unified-prettier","vitepress-plugin-group-icons","anatomy","annotation","dissect","dissection","grid-layout","html-elements","pin","spacing","speccer","stories", +"@polymer/gen-closure-declarations","@polymer/iron-component-page","@polymer/test-fixture","dom5","gulp-vulcanize","lazypipe","polymer-build","polymer-cli","wct-browser-legacy","cldr","get-value","set-value","unset-value", +"tap-colorize","core-js-bundle","es6-promise-pool","jstransformer-dot","@metalsmith/layouts","@qooxdoo/eslint-config-qx","@qooxdoo/eslint-plugin-qx","@qooxdoo/eslint-config-jsdoc-disable","@babel/plugin-proposal-optional-chaining-assign","dirsum","qooxdoo","fontend","databinding","@mdi/svg","eva-icons","line-awesome","eslint-config-quasar","quasar","fonts","animations","gltfpack","detect-gpu","r3f-perf","three-stdlib","suspend-react","postprocessing","@react-three/drei","@react-three/fiber", +"cypress-image-diff-js","@storybook/node-logger","@react-three/test-renderer","@react-three/postprocessing","@storybook/preset-create-react-app","threejs","react-three-fiber","ready-player-me","3D","avatars","@phryneas/ts-version","@types/nanoid","@types/query-string","commondir","groq-js","refractor","@sanity/ui","@types/cpx","dotenv-flow","@sanity/color","@sanity/icons","@sanity/client","react-refractor","@sanity/pkg-utils","@portabletext/react","@portabletext/toolkit","@sanity/ui-workshop", +"@sanity/semantic-release-preset","API reference","microdiff","@scalar/agent-chat","@scalar/code-highlight","@scalar/api-client","@scalar/icons","@scalar/components","@scalar/helpers", +"@scalar/oas-utils","@scalar/sidebar","@scalar/types","@scalar/snippetz","@scalar/use-hooks","@scalar/themes","@scalar/use-toasts","@scalar/workspace-store","rollup-plugin-webpack-stats","vite-plugin-css-injected-by-js","@scalar/galaxy","@scalar/react-renderer","@fastify/basic-auth","@fastify/http-proxy","@fastify/swagger","@serenity-js/assertions","@serenity-js/cucumber","@serenity-js/jasmine","@serenity-js/local-server","@serenity-js/mocha","@wdio/reporter","@wdio/dot-reporter","mocha-testdata","wdio", +"wdio-reporter","@sinonjs/referee-sinon","@storybook/csf-plugin","@storybook/react-dom-shim","organize","MDX","autodocs","@fortawesome/free-regular-svg-icons","@polkadot/react-identicon","@polkadot/util-crypto","@polkadot/wasm-crypto","@zxing/browser","@zxing/library","boring-avatars","flatlist-react","jsqr","phosphor-react","rc-cascader","rc-checkbox","rc-collapse","rc-dropdown","rc-image","rc-input","rc-input-number","rc-mentions","rc-notification","rc-pagination","rc-picker","rc-rate", +"rc-resize-observer","rc-segmented","rc-select","rc-steps","rc-switch","rc-table","rc-textarea","rc-tree-select","rc-upload","react-pin-input","react-qrcode-logo", +"react-superellipse","@emotion/babel-preset-css-prop","@storybook/builder-webpack5","@storybook/manager-webpack5","@types/puppeteer","@types/react-color","@types/react-window","array-move","react-window","rome","yaml-front-matter","Supernova","Design Systems","Supernovaio","SDK","Design Tokens","Tokens","Assets","Components","Documentation","Markdown","CMS","expr-eval-fork","ml-matrix","postcss-calc-ast-parser","@sveltejs/vite-plugin-svelte-inspector","vite plugin", +"@babel/plugin-transform-react-constant-elements","@svgr/plugin-jsx","@swc/counter","@rstest/core","swcpack","@swisspost/design-system-icons","@swisspost/design-system-tokens","stylelint-config-sass-guidelines","symbiote","meta application","constructable stylesheets","adopted stylesheets","css custom properties","import maps","cdn imports","https imports","reactive html attributes","JSDA","scalable-vector-graphics","@tanstack/query-core","@tanstack/query-persist-client-core","@testing-library/svelte", +"tanstack","@types/js-cookie","@github/webauthn-json","better-docs","eslint-config-preact","hanko","passkey","webauthn","passcode","jest-snapshot-serializer-ansi","@callstack/eslint-config","@relmify/jest-serializer-strip-ansi","shared-scripts","@ph.fritsche/toolbox","esbuild-plugin-globals", +"@ph.fritsche/scripts-config","@esbuild-plugins/node-modules-polyfill","react-testing-library","dom-testing-library","forwarded","@tinyhttp/accepts","@tinyhttp/content-disposition","@d-fischer/shared-utils","@twurple/api-call","@twurple/common","twitch","@typescript-eslint/rule-schema-to-typescript-types","@ucloud-fe/calendar","create-react-context","emotion-theming","file-bytes-formatter","rc-animate","rc-form","z-use-drag","@ucloud-fe/recodo-gen","babel-plugin-emotion", +"babel-plugin-typescript-to-proptypes","babel-plugin-webpack-alias","css-hot-loader","jest-emotion","jsdom-screenshot","stylelint-config-styled-components","stylelint-processor-styled-components","ucloud","jotai-x","is-hotkey","optics-ts","zustand-x","slate-react","jotai-optics","use-deep-compare","slate-hyperscript","plate","slate","react-button","@uiw/icons","react-icon","react-input","overlay-trigger","react-overlay-trigger","react-utils","unleash-client","ts-node-dev","@types/type-is","Unleash","keyux", +"nanostores","@lit/context","@uploadcare/image-shrink","@uploadcare/upload-client","@uploadcare/quality-insights","render-jsx","lit-analyzer","ts-lit-plugin","eslint-plugin-wc","@types/svg-sprite","eslint-plugin-lit","vitest-browser-lit","@size-limit/esbuild-why", +"esbuild-minify-templates","lighter","adaptive image","image optimization","image editing","image size","cloud image editor","upload api client","building blocks","blocks","lr-blocks","uc-blocks","integrations","smart cdn","cloud file platform","transformation api","css context properties","meta applications","@babel/plugin-transform-react-jsx-self","create-vue","create-eslint-config","merge-deep","aleo","zero-knowledge","event-target-shim","@mysticatea/spy","karma-growl-reporter","type-tester","abort", +"abortcontroller","abortsignal","progress-estimator","@types/figlet","@types/git-clone","flowcontrol","date.js","human-interval","@types/human-interval","jobs","@airtap/browserify-istanbul","airtap-default","airtap-multi","bruce-millis-option","maybe-combine-errors","nanoresource","nanoresource-collection","on-stream-close","run-parallel-settled","tap-completed","thunky-with-args","transient-error","abstract-browser","fast-uri","@types/require-from-string","dayjs-plugin-utc","module-from-string","re2", +"uri-js","json-schema-validation","Ajv","buffer-more-ints","claire","AMQP","AMQP 0-9-1", +"RabbitMQ","ux bootstrap","@angular-cli/ast-tools","@angular-cli/base-href-webpack","@ngtools/json-schema","@ngtools/webpack","exists-sync","node-modules-path","sourcemap-istanbul-instrumenter-loader","justified","bgblack","bgBlack","bgblue","bgBlue","bgcyan","bgCyan","bggreen","bgGreen","bgmagenta","bgMagenta","bgred","bgRed","bgwhite","bgWhite","bgyellow","bgYellow","black","blue","bold","clorox","cyan","dim","green","grey","hidden","italic","magenta","reset","str","underline","white","yellow","iterm2", +"erase","scrollback","re","svg-term-cli","@ant-design/icons-vue","@simonwep/pickr","dom-align","vue-types","@types/postcss-load-config","@vue/cli-plugin-eslint","@vue/eslint-config-prettier","babel-plugin-transform-require-context","compare-versions","cz-git","diacritics","eslint-plugin-no-explicit-type-exports","ignore-emit-webpack-plugin","jest-serializer-vue","jest-transform-stub","less-vars-to-js","selenium-server", +"umi-request","vue-clipboard2","vue-drag-resize","vue-infinite-scroll","vue-request","vueComponent","@rc-component/form","@rc-component/menu","@rc-component/rate","@rc-component/tabs","@rc-component/tree","@rc-component/util","@rc-component/image","@rc-component/input","@rc-component/steps","@rc-component/table","@rc-component/dialog","@rc-component/drawer","@rc-component/motion","@rc-component/picker","@rc-component/qrcode","@rc-component/select","@rc-component/slider","@rc-component/switch", +"@rc-component/upload","@rc-component/tooltip","@ant-design/fast-color","@rc-component/cascader","@rc-component/checkbox","@rc-component/collapse","@rc-component/dropdown","@rc-component/mentions","@rc-component/progress","@rc-component/textarea","@rc-component/segmented","@rc-component/pagination","@ant-design/cssinjs-utils","@rc-component/tree-select","@rc-component/color-picker","@rc-component/input-number","@rc-component/notification","@rc-component/mutate-observer","@rc-component/resize-observer", +"domparser-rs","@ant-design/x","@blazediff/core","@ant-design/x-sdk","csstree-validator","@codecov/webpack-plugin","@rc-component/virtual-list","@eslint-react/eslint-plugin","cypress-image-diff-html-report","@api-components/api-console-ext-comm","@api-components/api-documentation","@api-components/api-summary","@polymer/app-layout","@polymer/iron-media-query","@polymer/paper-toast","@anypoint-web-components/anypoint-menu-mixin","@open-wc/building-rollup","@polymer/iron-test-helpers", +"@web/test-runner-visual-regression","amf-client-js","rollup-plugin-cpy", +"raml","amf","diff-match-patch","expose-loader","eslint-config-recommended","apidoc-light","api-documentation","markdown-documentation","push notifications","apns","relay","zen-observable-ts","apollo-link-http-common","apollo-fetch","object-to-querystring","cracks","appium-adb","appium-chromedriver","io.appium.settings","@appium/eslint-config-appium-ts","@types/portscanner","mobile testing","@azure/identity","@azure/functions","diagnostic-channel","@azure/functions-old","@azure/monitor-opentelemetry", +"@opentelemetry/sdk-trace-node","diagnostic-channel-publishers","@opentelemetry/otlp-exporter-base","@opentelemetry/semantic-conventions","@azure/monitor-opentelemetry-exporter","@opentelemetry/exporter-logs-otlp-http","@opentelemetry/exporter-trace-otlp-http","@opentelemetry/exporter-metrics-otlp-http","@azure/opentelemetry-instrumentation-azure-sdk","@types/long","@types/microsoft__typescript-etw","exception monitoring","request monitoring","performance monitoring","application insights","tracing", +"telemetry","@aws-sdk/credential-provider-node","@aws-sdk/hash-node","@aws-sdk/protocol-http","@aws-sdk/signature-v4","aws-xray-sdk-core","@aws-amplify/amplify-appsync-simulator","prettier-plugin-organize-attributes","appsync","xray","archiver-utils","readdir-glob","zip-stream","archiver-jsdoc-theme","stream-bench","es-shim-unscopables","flatMap","ESnext","arrayify","array-fill","fn.name", +"propget","pruddy-error","shouldjs","babel-preset-es2017","native-promise-only","babel-plugin-syntax-async-generators","listen","then-sleep","@pika/pack","pika-plugin-build-web-babel","pika-plugin-ts-types","libnpx","node-cleanup","npm-lockfile","find-package-json","import-cwd","commits","detective-es6","arrgv","cbor","chunkd","ci-parallel-vars","concordance","currently-unhandled","package-config","supertap","🦄","yield","observables","webpack-log","empty-module","ps-node","ec2","simpledb","route53","rds", +"elasticache","cloudfront","fps","cloudformation","cloudwatch","iam","autoscaling","cloudsearch","elb","loadbalancing","emr","mapreduce","importexport","storagegateway","vpc","beanstalk","glacier","kinesis","cloudtrail","@deque/dot","sri-toolbox","grunt-bytesize","weakmap-polyfill","@axe-core/webdriverjs","Accessibility","dev-null","stream-throttle","karma-jasmine-ajax", +"string-replace-async","rollup-plugin-auto-external","browserify-mime","json-edm-parser","batchflow","factor-bundle","karma-env-preprocessor","output-file-sync","trim-right","try-resolve","babel-preset-jest","module.exports","dynamic","react-toolbox","pmock","lodash-bound","lodash-compat","cherry-pick","rename","babel-helper-remap-async-to-generator","babel-helper-function-name","babel-plugin-syntax-class-properties","babel-plugin-syntax-decorators","babel-plugin-transform-strict-mode", +"babel-helper-builder-react-jsx","propTypes","regenerator-transform","@babel/plugin-transform-property-mutators","babel-plugin-transform-react-display-name","babel-plugin-transform-react-jsx-source","babel-plugin-transform-react-jsx-self","babel-plugin-transform-do-expressions","babel-plugin-transform-function-bind","babel-plugin-transform-class-constructor-call","babel-plugin-transform-decorators","babel-plugin-transform-async-generator-functions","to-fast-properties","lodash.zipobject", +"babel-plugin-transform-node-env-inline","unicode-9.0.0","@purtuga/esm-webpack-plugin","@web/test-runner-browserstack","@web/test-runner-junit-reporter","otpauth","codec","basic","basicauth","ministructure","orange sms","pomelo-logger","IoC","AOP","consistent","hot reload","front-backend","sharable codes","asynchronous script loading","magic, self-described javaScript objects","art-near-room-catch","blanket-line","born-greatly-explain3","bring-water-silence","brush-bigger-afternoon0","column-wore-meet-war", +"compare-breeze-mad2","did-straight-sister-sail","excitement-tonight-dead","gain-pleasant-prepare","industrial-public-immediately-until","is-straight-web3-attack","known-wet-thirty-gave","listen-private-thee6","mainly-cent","mountain-quarter-sit8","mouse-bat-web3-present","needs-supper-anything","percent-impossible-score","rocket-location-calm-valley","seldom-fire-web3-running","shade-swim-shells1","spider-melted-chemical","stretch-onto-driver7","tiny-dream-supply5","tool-invented-girl-jungle", +"we-hunt-process","web3-automobile7","whether-dangerous","ansicolors","ignorepatterns","response-stream","script-injector","find-global-packages","jsl","dotpathlookup","simplehttpserver","docdown","@beyond-js/specifier-parser","@beyond-js/fs","@beyond-js/bee","json-format","uimport","universal javascript","universal typescript","isomorphic javascript","isomorphic typescript","sigle page","modular development","microfrontend","micro frontend","hot module replacement","ssr","server side rendering", +"typescript packager","JAMStack","react framework","ssr react framework","vue framework","ssr vue framework","svelte framework","ssr svelte framework","check-types","hoopy","tryer","please-release-me","spooks","streamify","serialise","arbitrary", +"precision","arithmetic","big","float","biginteger","bigdecimal","bigint","bignum","file-uri-to-path","@noble/hashes","@antv/component","@antv/g2","@antv/util","@antv/data-set","@babel/preset-es2015","@storybook/addon-info","@welldone-software/why-did-you-render","aphrodite","babel-plugin-inline-react-svg","babel-plugin-inline-svg","bx-jest-electron","declaration-bundler-webpack-plugin","moment-jalaali","react-with-styles-interface-aphrodite","react-with-styles-interface-css-compiler","snapshot-diff","g2", +"coffee-react","uglify-save-license","curses","tui","tput","terminfo","termcap","ansi-term","drawille-canvas-blessed-contrib","map-canvas","picture-tuber","term-canvas","x256","@types/blessed","kefir","baconjs","fluent interface","BN","Big number","BigNum","Modulo","Montgomery","create-error","bookshelf-jsdoc-theme","datamapper","active record","@astrojs/prism","astro-auto-import","mincer","quote-stream","static-module","readFileSync","array-equal","merge-trees","broccoli-fixture","broccoli-fixturify", "multidep", -"ts-docs-gen","browser-sync-client","browser-sync-ui","bs-recipes","dev-ip","easy-extender","eazy-logger", -"resp-modifier","bs-snippet-injector","generate-changelog","browser sync","live reload","deps-sort","htmlescape", -"syntax-error","shasum-object","mkdirp-classic","browser-resolve","read-only-stream","cached-path-relative", -"labeled-stream-splicer","seq","has-object-spread","has-template-literals","commonj-esque","exposify","mothership", -"rename-function-calls","test-peer-range","node-releases","target","base58","bitcoin","crytography","litecoin", -"acorn-dynamic-import","regexpu-core","console-group","compilation","compatible","dataview","builtin","builtins", -"bundled","@asyncapi/specs","@stoplight/yaml","jsonpathly","@types/jsonpath","safe-json-stringify","ben","streamsearch", -"uploads","closurecompiler","lxiv","metascript","testjs","utfx","typed array","@bcoe/v8-coverage","v8-to-istanbul", -"@types/mri","eslint-config-rem","@cacheable/utils","@keyv/redis", -"cache-manager-redis-yet","cacheable","cache manager","in-memory cache","multi-store cache","caching layer", -"cache abstraction","cache middleware","cache strategies","cache wrapper","call-bind-apply-helpers","es-define-property", -"set-function-length","callbound","pixman","cairo","case sensitive","slimerjs","loupe","@web/dev-server-rollup", -"@debitoor/eslint-config-debitoor","objects","subset","containSubset","superset","yoctodelay","docpress", -"git-update-ghpages","gulp-ava","gulp-uglify-es","mersenne","dice","kebab-case","header-case","confbox", -"convert-gitmoji","node-fetch-native","ofetch","@kurkle/color","@types/offscreencanvas","chartjs-adapter-luxon", -"chartjs-adapter-moment","chartjs-test-utils","eslint-config-chartjs","karma-safari-private-launcher", -"rollup-plugin-swc3","graphs","cheerio-select","encoding-sniffer","parse5-parser-stream", -"parse5-htmlparser2-tree-adapter","@imgix/js-core","@octokit/graphql","node-version","@better-scroll/core", -"add-dom-event-listener","choerodon-ui-font","css-animation","css-unit-converter","dom-closest","dom-lib", -"element-resize-event","htmlhint","insert-css", -"jsbarcode","jsonlint-mod","mutationobserver-shim","quill-delta-to-html","react-beautiful-dnd","react-codemirror2", -"react-easy-crop","react-image-lightbox","react-quill","rmc-feedback","smooth-scroll-into-view-if-needed", -"@babel/plugin-transform-proto-to-assign","@types/codemirror","@types/element-resize-event","@types/insert-css", -"@types/jsbarcode","@types/qrcode.react","@types/react-beautiful-dnd","@types/react-slick","bisheng-plugin-choerodon-ui", -"bisheng-plugin-description","bisheng-plugin-react","bisheng-plugin-toc","eslint-tinker","mark-twain","rc-queue-anim", -"rc-scroll-anim","react-infinite-scroller","react-sublime-video","scrollama","values.js", -"webpack-filter-warnings-plugin","choerodon","@paulmillr/jsbt","watchFile","continuous","@ckeditor/ckeditor5-emoji", -"@ckeditor/ckeditor5-style","@ckeditor/ckeditor5-mention","@ckeditor/ckeditor5-minimap","@ckeditor/ckeditor5-autosave", -"@ckeditor/ckeditor5-bookmark","@ckeditor/ckeditor5-language","@ckeditor/ckeditor5-highlight", -"@ckeditor/ckeditor5-code-block","@ckeditor/ckeditor5-fullscreen","@ckeditor/ckeditor5-html-embed", -"@ckeditor/ckeditor5-page-break","@ckeditor/ckeditor5-word-count","@ckeditor/ckeditor5-show-blocks", -"@ckeditor/ckeditor5-html-support","@ckeditor/ckeditor5-markdown-gfm","@ckeditor/ckeditor5-remove-format", -"@ckeditor/ckeditor5-source-editing","@ckeditor/ckeditor5-horizontal-line","@ckeditor/ckeditor5-find-and-replace", -"@ckeditor/ckeditor5-restricted-editing","@ckeditor/ckeditor5-special-characters","@chrisblossom/eslint-config", -"@types/read-pkg-up","temp-sandbox","unrequire","parseopt","opt", -"argsparse","optparse","autocompletion","timers-ext","hide","expresso","ansi-256-colors","tables","truncate","ellipsis", -"cardinal","hyperlinker","@oclif/screen","extract-stack","object-treeify","@oclif/linewrap","natural-orderby", -"password-prompt","@types/strip-ansi","@types/ansi-styles","@types/extract-stack","@types/rollup","@yarnpkg/core", -"eslint-plugin-arca","good-listener","cut","clipboard-image","is-wayland","is64bit","paste","pasteboard","pbcopy","clip", -"xclip","xsel","command line interface","istanbul-harmony","coro","teeny-request","urlgrey","code-coverage", -"@codemirror/lint","@codemirror/autocomplete","@codemirror/buildhelper","table-layout","usage", -"@istanbuljs/nyc-config-babel","cz-conventional-changelog-default-export","conventional changelog","es2015-tag", -"es6-tag","heredoc","indents","literal","oneline","tagged","observe","compressible","ctrlc-wrapper", -"@hirez_io/observer-spy","eslint-plugin-import-lite","faceoff","hjson","node-config", -"config-node","atomically","is-safe-filename","preferences","save","kruptein","sentencer","clack","stacktrace","ect", -"slm","dust","jazz","just","qejs","vash","jqtpl","twing","hamlet","hamljs","liquor","plates","teacup","toffee","walrus", -"htmling","ractive","whiskers","tinyliquid","velocityjs","haml-coffee","liquid-node","arc-templates","dustjs-helpers", -"swig-templates","bracket-template","rfc6266","rfc7231","fd-package-json","@conventional-changelog/git-client", -"conventional-changelog-preset-loader","add-stream","compare-func","conventionalcommits.org","inline-source-map", -"top-sites","sign","unsign","toggle-selection","@brettz9/node-static","selenium-server-standalone-jar","is-gzip","noms", -"simple qr","npm qr JavaScript","js qr code","corcojs-qrcode-sample","logo","simple qrcode","cordova-common", -"cordova-create","cordova-lib","@cordova/eslint-config","ES2019", -"ES2024","ECMAScript 5","ECMAScript 7","ECMAScript 2018","ECMAScript 2020","ECMAScript 2024","Promise","Iterator", -"structuredClone","@types/parse-json","eslint-config-davidtheclark-node","remark-preset-davidtheclark","lcov-parse", -"log-driver","cp","quick","tslog","seenreq","@types/got","spider","crc16ccitt","crc16kermit","crc16modbus","crc16", -"crc16xmodem","crc1","crc24","crc32","crc81wire","crc8","crc8dvbs2","crcjam","cipher-base","ripemd160", -"async-traverse-tree","css-url-parser","group-args","inline-critical","oust","penthouse","postcss-discard", -"postcss-image-inliner","@insurgent/commitlint-config","@insurgent/conventional-changelog-preset","node cron","cronjob", -"cron job","@prantlf/jsonlint","@prettier/plugin-xml","@secretlint/secretlint-rule-github", -"@secretlint/secretlint-rule-npm","@stryker-mutator/tap-runner","eslint-plugin-array-func", -"eslint-plugin-no-unsanitized","metalint","secretlint","yaml-lint","@cropper/elements","@cropper/utils","cropper", -"cropper.js","image-cropping","image-viewing","image-processing", -"cropper-element","custom-element","web-component","@epic-web/invariant","@epic-web/config","zshy","cross-environment", -"environment variable","rollup-plugin-esbuild-minify","shebang-command","babel-preset-moxy","eslint-config-moxy", -"spawnSync","path-ext","browserify-cipher","browserify-sign","create-ecdh","create-hmac","diffie-hellman","hash-base", -"public-encrypt","randomfill","pseudorandombytes","Hash","SHA1","SHA-1","SHA256","SHA-256","RC4","Rabbit","AES","DES", -"PBKDF2","HMAC","OFB","CFB","CTR","CBC","Base64url","eslint-config-groupon","nlm","@cspell/cspell-json-reporter", -"@cspell/cspell-performance-monitor","@cspell/cspell-pipe","@cspell/cspell-types","@cspell/cspell-worker", -"@cspell/dynamic-import","@cspell/url","cspell-config-lib","cspell-dictionary","cspell-gitignore","cspell-glob", -"cspell-io","cspell-lib","spell","spelling","spell checker","spelling checker","sorter","isomorphic-unfetch","@swc/css", -"@parcel/css","@types/clean-css","cssnano-preset-simple", -"minimizer","cheerio-soupselect","sizzle","clap","json-to-ast","walker","web-features","cssnano-preset-advanced", -"cssnano-preset-lite","@asamuzakjp/css-color","@tsconfig/node24","@types/turndown","generation","csv-spectrum", -"csv parser","parse csv","csv to json","csv convert","tojson","convert csv to json","csv-json","is-generator", -"cucumber-expressions","cucumber-tag-expressions","eslint-plugin-testcafe","riteway","updtr","unique id","ospath", -"blob-util","@cypress/xvfb","@types/sizzle","@cypress/request","cypress.io","longest","d3-geo","d3-axis","d3-drag", -"d3-ease","d3-zoom","d3-brush","d3-chord","d3-fetch","d3-timer","d3-contour","d3-delaunay","d3-dispatch","d3-quadtree", -"d3-transition","internmap","histogram","bisect","shuffle","selection","data-join","dable","tailwind plugin", -"tailwind component","tailwind css plugin","tailwind rails","laravel","css library","opposite","invert", -"construct","@captemulation/get-parameter-names","json-schema-faker-bb","request-debug","rss-parser", -"swagger-express-middleware","cloc","js-fns","@date-fns/tz","@date-fns/utc","@date-fns/docs","@size-limit/esbuild", -"babel-plugin-replace-import-extension","require-directory","sleep","async wrapper","debouncing","invoke","interval", -"rate-limit","decamelcase","lowercase","decompress-tar","decompress-tarbz2","decompress-targz","strip-dirs","is-jpg", -"bzip2","tar.bz","@types/babel-plugin-macros","multi-line string","duplicates","dupes","remove duplicates","distinct", -"deduplicate","deduplication","is-obj","json-ptr","change-tracking","kewlr","simple-assert","eslint-config-strict", -"@js-temporal/polyfill","eslint-plugin-filenames","chai util","deep equal","object equal","array-buffer-byte-length", -"es-get-iterator","is-array-buffer","is-shared-array-buffer","regexp.prototype.flags","which-boxed-primitive", -"which-collection","available-typed-arrays","has-typed-arrays","is-mergeable-object","jsmd","is-path-cwd", -"unlimited-timeout","defer","stall","settimeout", -"tick","threshold","deps-regex","patch-version","deprecate","deprecated","is-relative","detective-cjs","indentation", -"egg-bin","eslint-config-egg","mm","@profoundlogic/hogan","@types/hogan.js","@types/nopt","image-webpack-loader", -"is-ci-cli","side","side-by-side","line-by-line","difftohtml","colorized","data-structure-typed","Directed Graph", -"directed graph","directedgraph","directed-graph","directed","Directed","digraph","vertex","Vertex","graph theory", -"Graph Theory","graph structure","weighted","Weighted","unweighted","Unweighted","adjacency","Adjacency","connectivity", -"cycle","acyclic","depth","Depth","breadth","Breadth","first","depth first search","dfs","DFS","breadth first search", -"breadth-first search","bfs","BFS","graph algorithms","graph representation","connectivity matrix","adjacency list", -"adjacency matrix","node degree","sparse graph","dense graph", -"directed cycle","directed acyclic graph","DAG","topologic","topological","strongly connected components", -"weighted digraph","directed weighted edge","@discordjs/voice","@discordjs/ws","lodash.snakecase","@discordjs/builders", -"@discordjs/formatters","@discordjs/docgen","common-sequence","dmd-plugin-example","jsdoc2md","agnostic", -"dnode-protocol","weak","callbacks","appium-chromium-driver","appium-geckodriver","appium-safari-driver","jq-web", -"json-schema-faker","posthog-node","literate","mecano","parameters","docker-modem","docker.io","@bevry/pluginloader", -"ambi","ansistyles","bal-util","caterpillar","docmatter","docpad-baseplugin","eachr","envfile","errlop", -"event-emitter-grouped","extendr","extract-opts","ignorefs","lazy-require","progress-title","query-engine", -"rfc-log-levels","safefs","safeps","scandirectory","taskgroup","typechecker","unbounded","watchr", -"@bevry/update-contributors","coffeelint","build and deployment","dms","document management system","language agnostic", -"web development", -"docsify.js","tabs","@textlint/markdown-to-ast","anchor-markdown-header","update-section","doctrine-temporary-fork", -"konan","mdast-util-inject","remark-reference-links","vfile-reporter","vfile-sort","documentation-schema","big-integer", -"binary-search-bounds","int64-buffer","priorityqueuejs","cosmosdb","cosmos db","document database","crowdin-cli", -"truncate-html","autocomplete.js","lunr-languages","offline-search","@4c/rollout","@4c/tsconfig", -"@react-bootstrap/babel-preset","@react-bootstrap/eslint-config","@react-bootstrap/eslint-config-typescript", -"cross-browser","classlist","raster","lodash.sample","rollup-plugin-includepaths","mathml","substitution","ext-name", -"archive-type","is-zip","random-buffer","git-clone","import-from","parse-cmd-args","@types/temp","fbjs-scripts", -"gulp-derequire","stats-webpack-plugin","draftjs","@parcel/transformer-inline-string","@parcel/transformer-sass", -"file upload","dts-critic","@types/json-stable-stringify","elementscript","dw-neit-colors","dw-neit-cssinjs", -"dw-neit-cssinjs-utils","dw-neit-icons","dw-neit-ant-design-react-slick","dw-neit-rc-component-color-picker", -"dw-neit-rc-component-mutate-observer","dw-neit-rc-component-qrcode","dw-neit-rc-component-tour", -"dw-neit-rc-component-trigger", -"dw-neit-rc-cascader","dw-neit-rc-checkbox","dw-neit-rc-collapse","dw-neit-rc-dialog","dw-neit-rc-drawer", -"dw-neit-rc-dropdown","dw-neit-rc-field-form","dw-neit-rc-image","dw-neit-rc-input","dw-neit-rc-input-number", -"dw-neit-rc-mentions","dw-neit-rc-menu","dw-neit-rc-motion","dw-neit-rc-notification","dw-neit-rc-pagination", -"dw-neit-rc-picker","dw-neit-rc-progress","dw-neit-rc-rate","dw-neit-rc-resize-observer","dw-neit-rc-segmented", -"dw-neit-rc-select","dw-neit-rc-slider","dw-neit-rc-steps","dw-neit-rc-switch","dw-neit-rc-tabs","dw-neit-rc-textarea", -"dw-neit-rc-tree","dw-neit-rc-util","dw-neit-rc-table","dw-neit-rc-tooltip","dw-neit-rc-tree-select","dw-neit-rc-upload", -"@antv/g6","control flow","zrender","@lang/rollup-plugin-dts","data-visualization","charting-library","data-viz", -"gulp-exclude-gitignore","gulp-reporter","linez","@types/get-stream","agentkeepalive","aliasify","backport", -"through2-map","lazy-val","dmg-builder","builder-util","app-builder-lib","builder-util-runtime","nsis","msi","OS X", -"MacOS","Mac","appx","snap","@electron/notarize","@electron/osx-sign","@electron/universal","cross-spawn-windows-exe", -"galactus", -"get-package-info","parse-author","electron-download","home-path","batch-processor","@vue/component-compiler-utils", -"algoliasearch","babel-regenerator-runtime","cp-cli","eslint-config-elemefe","file-save","gulp-cssmin", -"select-version-cli","transliteration","uppercamelcase","vue-template-es2015-compiler","eleme","brorand","hash.js", -"hmac-drbg","minimalistic-assert","minimalistic-crypto-utils","grunt-mocha-istanbul","EC","Elliptic","curve", -"Cryptography","@ladjs/consolidate","@ladjs/i18n","get-paths","juice","nodemailer-sendgrid","preview-email","mailchimp", -"mailgun","mandrill","moonmail","postmark","sendgrid","@types/mailparser","@types/smtp-server","mailparser", -"@ember-tooling/blueprint-blueprint","@ember-tooling/blueprint-model","@ember/app-blueprint","@pnpm/find-workspace-dir", -"babel-remove-types","broccoli-config-loader","broccoli-config-replace","broccoli-funnel-reducer","broccoli-slow-trees", -"capture-exit","clean-base-url","content-tag","dag-map","ember-cli-is-package-missing","ember-cli-preprocess-registry", -"find-yarn-workspace-root","heimdalljs-fs-monitor","heimdalljs-graph","is-git-url","is-language-code", -"markdown-it-terminal","promise.hash.helper", -"yam","@ember-tooling/classic-build-addon-blueprint","@ember-tooling/classic-build-app-blueprint", -"ember-cli-blueprint-test-helpers","ember-cli-internal-test-helpers","yuidoc-ember-cli-theme","yuidocjs","app-kit", -"ember-app-kit","ember.js","amd-name-resolver","babel-plugin-ember-data-packages-polyfill", -"babel-plugin-ember-modules-api-polyfill","ember-cli-babel-plugin-helpers","ember-cli-version-checker","@ember/string", -"@glimmer/component","@glimmer/tracking","@ember/edition-utils","babel-plugin-ember-template-compilation", -"broccoli-persistent-filter","@embroider/test-setup","ember-cli-clean-css","ember-styleguide","ember-template-lint", -"ember-try","@emmetio/abbreviation","@emmetio/css-abbreviation","snippets","coding","finish","close","end","es-errors", -"entitify","enumeration","datatype","github-release-cli","yamlify-object","issues","diagnostics","html-element-map", -"is-boolean-object","is-number-object","is-string","is-subset","rst-selector-parser","shallow rendering","shallowRender", -"test utils","assertion helpers","airbnb-prop-types","codependence","pastoralist","check for es6","check for modules", -"es check","es matching","es version","ecmascript check","ecmascript matching","ecmascript version","js version", -"js version check", -"js version matching","test js version","test ecmascript version","intl-fallback-symbol","make-async-function", -"@types/array.prototype.flatmap","@types/foreach","@types/reflect.ownkeys","reflect.ownkeys", -"symbol.prototype.description","well-known-symbols","fixture","es6-symbol","esniff","plain-promise","ecmascript5", -"ecmascript6","ext","es5 shim","json3","promises-aplus-tests-phantom","promises-es6-tests","setPrototypeOf","special", -"bower-registry-client","commonjs-everywhere","@eslint/config-array","@eslint/config-helpers","@humanfs/node", -"@humanwhocodes/module-importer","@humanwhocodes/retry","json-stable-stringify-without-jsonify","@trunkio/launcher", -"eslint-rule-extender","metascraper","metascraper-description","metascraper-image","metascraper-logo", -"metascraper-logo-favicon","metascraper-title","prettier-package-json","eslint-prettier","@rushstack/eslint-patch", -"@eslint/config-inspector","obuild","@eslint/css","hugs","kisses","cabin","eslint-import-context","is-bun-module", -"stable-hash-x","eslint-friendly-formatter","enhance-visitors","espurify","micro-spelling-correcter", -"eslint-rule-composer","ast-metadata-inferer","@types/caniuse-lite","browserslist-config-erb","kangax","eslint4b", -"vue-eslint-editor","exported", -"eslint-env","eslint-enable","eslint-disable","eslint-disable-line","eslint-disable-next-line","@types/estraverse", -"eslint-config-not-an-aardvark","string-natural-compare","flowtype","@html-eslint/eslint-plugin","@html-eslint/parser", -"@rtsao/scc","array.prototype.findlastindex","eslint-module-utils","object.groupby","string.prototype.trimend","escope", -"fs-copy-file-sync","linklocal","lodash.isarray","@schemastore/package","babel-plugin-replace-ts-export-assignment", -"@es-joy/jsdoccomment","@es-joy/resolve.exports","are-docs-informative","object-deep-merge","parse-imports-exports", -"to-valid-identifier","@es-joy/escodegen","@es-joy/jsdoc-eslint-parser","@hkdobrev/run-if-changed", -"@types/spdx-expression-parse","babel-plugin-transform-import-meta","@ota-meshi/ast-token-store","diff-sequences", -"eslint-json-compat-utils","eslint-plugin-eslint-rule-tester","stylelint-config-standard-vue","stylelint-stylus", -"ast-types-flow","damerau-levenshtein","language-tags","string.prototype.includes","eslint-config-eslint", -"eslint-plugin-es-x","ts-declaration-location","@types/globrex","ts-ignore-import","eslint-utils", -"prettier-linter-helpers","array.prototype.findlast","array.prototype.tosorted","es-iterator-helpers", -"@babel/plugin-syntax-do-expressions","@babel/plugin-syntax-function-bind","gfm-footnotes","hermes-parser", -"eslint-plugin-pere","eslint-snapshot-rule-tester","jsx-ast-utils-x","functional-red-black-tree","sonarjs", -"svelte-eslint-parser","@types/eslint-utils", -"@types/esutils","svelte-i18n","sveltejs","clean-regexp","regjsparser","@lubien/fixture-beta-package","node-style-text", -"unicorn","@veritem/eslint-config","vitest eslint plugin","eslint plugin","@types/xml-name-validator", -"eslint-plugin-markdown-preferences","importx","ink-testing-library","eslint-test","@types/esrecurse","esrecurse", -"eslint-plugin-requirejs","escomplex-js","everything.js","node-tick-processor","unicode-8.0.0","gulp-tag-version", -"ethereumjs-common","@ethereumjs/config-nyc","@ethereumjs/config-prettier","@ethereumjs/config-tsc", -"@ethereumjs/config-tslint","contributor","typestrict","transactions","rlp","@types/secp256k1","es-lookup-scope", -"evaulate","pause-stream","asynct","EventEmitter","EventEmitter2","EventEmitter3","reactor","human-signals", -"strip-final-newline","get-node","log-process-errors","execfile","stderr","drain","flush","3584","eslint-plugin-mmkal", -"array-flatten","express3","partials","express-unless","expressjs","hoare","cjs-mock","tRPC","RPC","express.js", +"ts-docs-gen","browser-sync-client","browser-sync-ui","bs-recipes","dev-ip","easy-extender","eazy-logger","resp-modifier","bs-snippet-injector","generate-changelog","browser sync","live reload","deps-sort","htmlescape","syntax-error","shasum-object","mkdirp-classic","browser-resolve","read-only-stream","cached-path-relative","labeled-stream-splicer","seq","has-object-spread","has-template-literals","commonj-esque","exposify","mothership","rename-function-calls","test-peer-range","node-releases","target", +"base58","bitcoin","crytography","litecoin","acorn-dynamic-import","regexpu-core","console-group","compilation","compatible","dataview","builtin","builtins","bundled","@asyncapi/specs","@stoplight/yaml","jsonpathly","@types/jsonpath","safe-json-stringify","ben","streamsearch","uploads","closurecompiler","lxiv","metascript","testjs","utfx","typed array","@bcoe/v8-coverage","v8-to-istanbul","@types/mri","eslint-config-rem","@cacheable/utils","@keyv/redis", +"cache-manager-redis-yet","cacheable","cache manager","in-memory cache","multi-store cache","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper","call-bind-apply-helpers","es-define-property","set-function-length","callbound","pixman","cairo","case sensitive","slimerjs","loupe","@web/dev-server-rollup","@debitoor/eslint-config-debitoor","objects","subset","containSubset","superset","yoctodelay","docpress","git-update-ghpages","gulp-ava","gulp-uglify-es","mersenne","dice", +"kebab-case","header-case","confbox","convert-gitmoji","node-fetch-native","ofetch","@kurkle/color","@types/offscreencanvas","chartjs-adapter-luxon","chartjs-adapter-moment","chartjs-test-utils","eslint-config-chartjs","karma-safari-private-launcher","rollup-plugin-swc3","graphs","cheerio-select","encoding-sniffer","parse5-parser-stream","parse5-htmlparser2-tree-adapter","@imgix/js-core","@octokit/graphql","node-version","@better-scroll/core","add-dom-event-listener","choerodon-ui-font","css-animation", +"css-unit-converter","dom-closest","dom-lib","element-resize-event","htmlhint","insert-css", +"jsbarcode","jsonlint-mod","mutationobserver-shim","quill-delta-to-html","react-beautiful-dnd","react-codemirror2","react-easy-crop","react-image-lightbox","react-quill","rmc-feedback","smooth-scroll-into-view-if-needed","@babel/plugin-transform-proto-to-assign","@types/codemirror","@types/element-resize-event","@types/insert-css","@types/jsbarcode","@types/qrcode.react","@types/react-beautiful-dnd","@types/react-slick","bisheng-plugin-choerodon-ui","bisheng-plugin-description","bisheng-plugin-react", +"bisheng-plugin-toc","eslint-tinker","mark-twain","rc-queue-anim","rc-scroll-anim","react-infinite-scroller","react-sublime-video","scrollama","values.js","webpack-filter-warnings-plugin","choerodon","@paulmillr/jsbt","watchFile","continuous","@ckeditor/ckeditor5-emoji","@ckeditor/ckeditor5-style","@ckeditor/ckeditor5-mention","@ckeditor/ckeditor5-minimap","@ckeditor/ckeditor5-autosave","@ckeditor/ckeditor5-bookmark","@ckeditor/ckeditor5-language","@ckeditor/ckeditor5-highlight", +"@ckeditor/ckeditor5-code-block","@ckeditor/ckeditor5-fullscreen","@ckeditor/ckeditor5-html-embed","@ckeditor/ckeditor5-page-break","@ckeditor/ckeditor5-word-count","@ckeditor/ckeditor5-show-blocks","@ckeditor/ckeditor5-html-support","@ckeditor/ckeditor5-markdown-gfm","@ckeditor/ckeditor5-remove-format","@ckeditor/ckeditor5-source-editing","@ckeditor/ckeditor5-horizontal-line","@ckeditor/ckeditor5-find-and-replace","@ckeditor/ckeditor5-restricted-editing","@ckeditor/ckeditor5-special-characters", +"@chrisblossom/eslint-config","@types/read-pkg-up","temp-sandbox","unrequire","parseopt","opt", +"argsparse","optparse","autocompletion","timers-ext","hide","expresso","ansi-256-colors","tables","truncate","ellipsis","cardinal","hyperlinker","@oclif/screen","extract-stack","object-treeify","@oclif/linewrap","natural-orderby","password-prompt","@types/strip-ansi","@types/ansi-styles","@types/extract-stack","@types/rollup","@yarnpkg/core","eslint-plugin-arca","good-listener","cut","clipboard-image","is-wayland","is64bit","paste","pasteboard","pbcopy","clip","xclip","xsel","command line interface", +"istanbul-harmony","coro","teeny-request","urlgrey","code-coverage","@codemirror/lint","@codemirror/autocomplete","@codemirror/buildhelper","table-layout","usage","@istanbuljs/nyc-config-babel","cz-conventional-changelog-default-export","conventional changelog","es2015-tag","es6-tag","heredoc","indents","literal","oneline","tagged","observe","compressible","ctrlc-wrapper","@hirez_io/observer-spy","eslint-plugin-import-lite","faceoff","hjson","node-config", +"config-node","atomically","is-safe-filename","preferences","save","kruptein","sentencer","clack","stacktrace","ect","slm","dust","jazz","just","qejs","vash","jqtpl","twing","hamlet","hamljs","liquor","plates","teacup","toffee","walrus","htmling","ractive","whiskers","tinyliquid","velocityjs","haml-coffee","liquid-node","arc-templates","dustjs-helpers","swig-templates","bracket-template","rfc6266","rfc7231","fd-package-json","@conventional-changelog/git-client","conventional-changelog-preset-loader", +"add-stream","compare-func","conventionalcommits.org","inline-source-map","top-sites","sign","unsign","toggle-selection","@brettz9/node-static","selenium-server-standalone-jar","is-gzip","noms","simple qr","npm qr JavaScript","js qr code","corcojs-qrcode-sample","logo","simple qrcode","cordova-common","cordova-create","cordova-lib","@cordova/eslint-config","ES2019", +"ES2024","ECMAScript 5","ECMAScript 7","ECMAScript 2018","ECMAScript 2020","ECMAScript 2024","Promise","Iterator","structuredClone","@types/parse-json","eslint-config-davidtheclark-node","remark-preset-davidtheclark","lcov-parse","log-driver","cp","quick","tslog","seenreq","@types/got","spider","crc16ccitt","crc16kermit","crc16modbus","crc16","crc16xmodem","crc1","crc24","crc32","crc81wire","crc8","crc8dvbs2","crcjam","cipher-base","ripemd160","async-traverse-tree","css-url-parser","group-args", +"inline-critical","oust","penthouse","postcss-discard","postcss-image-inliner","@insurgent/commitlint-config","@insurgent/conventional-changelog-preset","node cron","cronjob","cron job","@prantlf/jsonlint","@prettier/plugin-xml","@secretlint/secretlint-rule-github","@secretlint/secretlint-rule-npm","@stryker-mutator/tap-runner","eslint-plugin-array-func","eslint-plugin-no-unsanitized","metalint","secretlint","yaml-lint","@cropper/elements","@cropper/utils","cropper","cropper.js","image-cropping", +"image-viewing","image-processing", +"cropper-element","custom-element","web-component","@epic-web/invariant","@epic-web/config","zshy","cross-environment","environment variable","rollup-plugin-esbuild-minify","shebang-command","babel-preset-moxy","eslint-config-moxy","spawnSync","path-ext","browserify-cipher","browserify-sign","create-ecdh","create-hmac","diffie-hellman","hash-base","public-encrypt","randomfill","pseudorandombytes","Hash","SHA1","SHA-1","SHA256","SHA-256","RC4","Rabbit","AES","DES","PBKDF2","HMAC","OFB","CFB","CTR","CBC", +"Base64url","eslint-config-groupon","nlm","@cspell/cspell-json-reporter","@cspell/cspell-performance-monitor","@cspell/cspell-pipe","@cspell/cspell-types","@cspell/cspell-worker","@cspell/dynamic-import","@cspell/url","cspell-config-lib","cspell-dictionary","cspell-gitignore","cspell-glob","cspell-io","cspell-lib","spell","spelling","spell checker","spelling checker","sorter","isomorphic-unfetch","@swc/css","@parcel/css","@types/clean-css","cssnano-preset-simple", +"minimizer","cheerio-soupselect","sizzle","clap","json-to-ast","walker","web-features","cssnano-preset-advanced","cssnano-preset-lite","@asamuzakjp/css-color","@tsconfig/node24","@types/turndown","generation","csv-spectrum","csv parser","parse csv","csv to json","csv convert","tojson","convert csv to json","csv-json","is-generator","cucumber-expressions","cucumber-tag-expressions","eslint-plugin-testcafe","riteway","updtr","unique id","ospath","blob-util","@cypress/xvfb","@types/sizzle","@cypress/request", +"cypress.io","longest","d3-geo","d3-axis","d3-drag","d3-ease","d3-zoom","d3-brush","d3-chord","d3-fetch","d3-timer","d3-contour","d3-delaunay","d3-dispatch","d3-quadtree","d3-transition","internmap","histogram","bisect","shuffle","selection","data-join","dable","tailwind plugin","tailwind component","tailwind css plugin","tailwind rails","laravel","css library","opposite","invert", +"construct","@captemulation/get-parameter-names","json-schema-faker-bb","request-debug","rss-parser","swagger-express-middleware","cloc","js-fns","@date-fns/tz","@date-fns/utc","@date-fns/docs","@size-limit/esbuild","babel-plugin-replace-import-extension","require-directory","sleep","async wrapper","debouncing","invoke","interval","rate-limit","decamelcase","lowercase","decompress-tar","decompress-tarbz2","decompress-targz","strip-dirs","is-jpg","bzip2","tar.bz","@types/babel-plugin-macros", +"multi-line string","duplicates","dupes","remove duplicates","distinct","deduplicate","deduplication","is-obj","json-ptr","change-tracking","kewlr","simple-assert","eslint-config-strict","@js-temporal/polyfill","eslint-plugin-filenames","chai util","deep equal","object equal","array-buffer-byte-length","es-get-iterator","is-array-buffer","is-shared-array-buffer","regexp.prototype.flags","which-boxed-primitive","which-collection","available-typed-arrays","has-typed-arrays","is-mergeable-object","jsmd", +"is-path-cwd","unlimited-timeout","defer","stall","settimeout", +"tick","threshold","deps-regex","patch-version","deprecate","deprecated","is-relative","detective-cjs","indentation","egg-bin","eslint-config-egg","mm","@profoundlogic/hogan","@types/hogan.js","@types/nopt","image-webpack-loader","is-ci-cli","side","side-by-side","line-by-line","difftohtml","colorized","data-structure-typed","Directed Graph","directed graph","directedgraph","directed-graph","directed","Directed","digraph","vertex","Vertex","graph theory","Graph Theory","graph structure","weighted", +"Weighted","unweighted","Unweighted","adjacency","Adjacency","connectivity","cycle","acyclic","depth","Depth","breadth","Breadth","first","depth first search","dfs","DFS","breadth first search","breadth-first search","bfs","BFS","graph algorithms","graph representation","connectivity matrix","adjacency list","adjacency matrix","node degree","sparse graph","dense graph", +"directed cycle","directed acyclic graph","DAG","topologic","topological","strongly connected components","weighted digraph","directed weighted edge","@discordjs/voice","@discordjs/ws","lodash.snakecase","@discordjs/builders","@discordjs/formatters","@discordjs/docgen","common-sequence","dmd-plugin-example","jsdoc2md","agnostic","dnode-protocol","weak","callbacks","appium-chromium-driver","appium-geckodriver","appium-safari-driver","jq-web","json-schema-faker","posthog-node","literate","mecano","parameters", +"docker-modem","docker.io","@bevry/pluginloader","ambi","ansistyles","bal-util","caterpillar","docmatter","docpad-baseplugin","eachr","envfile","errlop","event-emitter-grouped","extendr","extract-opts","ignorefs","lazy-require","progress-title","query-engine","rfc-log-levels","safefs","safeps","scandirectory","taskgroup","typechecker","unbounded","watchr","@bevry/update-contributors","coffeelint","build and deployment","dms","document management system","language agnostic","web development", +"docsify.js","tabs","@textlint/markdown-to-ast","anchor-markdown-header","update-section","doctrine-temporary-fork","konan","mdast-util-inject","remark-reference-links","vfile-reporter","vfile-sort","documentation-schema","big-integer","binary-search-bounds","int64-buffer","priorityqueuejs","cosmosdb","cosmos db","document database","crowdin-cli","truncate-html","autocomplete.js","lunr-languages","offline-search","@4c/rollout","@4c/tsconfig","@react-bootstrap/babel-preset","@react-bootstrap/eslint-config", +"@react-bootstrap/eslint-config-typescript","cross-browser","classlist","raster","lodash.sample","rollup-plugin-includepaths","mathml","substitution","ext-name","archive-type","is-zip","random-buffer","git-clone","import-from","parse-cmd-args","@types/temp","fbjs-scripts","gulp-derequire","stats-webpack-plugin","draftjs","@parcel/transformer-inline-string","@parcel/transformer-sass","file upload","dts-critic","@types/json-stable-stringify","elementscript","dw-neit-colors","dw-neit-cssinjs", +"dw-neit-cssinjs-utils","dw-neit-icons","dw-neit-ant-design-react-slick","dw-neit-rc-component-color-picker","dw-neit-rc-component-mutate-observer","dw-neit-rc-component-qrcode","dw-neit-rc-component-tour","dw-neit-rc-component-trigger", +"dw-neit-rc-cascader","dw-neit-rc-checkbox","dw-neit-rc-collapse","dw-neit-rc-dialog","dw-neit-rc-drawer","dw-neit-rc-dropdown","dw-neit-rc-field-form","dw-neit-rc-image","dw-neit-rc-input","dw-neit-rc-input-number","dw-neit-rc-mentions","dw-neit-rc-menu","dw-neit-rc-motion","dw-neit-rc-notification","dw-neit-rc-pagination","dw-neit-rc-picker","dw-neit-rc-progress","dw-neit-rc-rate","dw-neit-rc-resize-observer","dw-neit-rc-segmented","dw-neit-rc-select","dw-neit-rc-slider","dw-neit-rc-steps", +"dw-neit-rc-switch","dw-neit-rc-tabs","dw-neit-rc-textarea","dw-neit-rc-tree","dw-neit-rc-util","dw-neit-rc-table","dw-neit-rc-tooltip","dw-neit-rc-tree-select","dw-neit-rc-upload","@antv/g6","control flow","zrender","@lang/rollup-plugin-dts","data-visualization","charting-library","data-viz","gulp-exclude-gitignore","gulp-reporter","linez","@types/get-stream","agentkeepalive","aliasify","backport","through2-map","lazy-val","dmg-builder","builder-util","app-builder-lib","builder-util-runtime","nsis","msi", +"OS X","MacOS","Mac","appx","snap","@electron/notarize","@electron/osx-sign","@electron/universal","cross-spawn-windows-exe","galactus", +"get-package-info","parse-author","electron-download","home-path","batch-processor","@vue/component-compiler-utils","algoliasearch","babel-regenerator-runtime","cp-cli","eslint-config-elemefe","file-save","gulp-cssmin","select-version-cli","transliteration","uppercamelcase","vue-template-es2015-compiler","eleme","brorand","hash.js","hmac-drbg","minimalistic-assert","minimalistic-crypto-utils","grunt-mocha-istanbul","EC","Elliptic","curve","Cryptography","@ladjs/consolidate","@ladjs/i18n","get-paths","juice", +"nodemailer-sendgrid","preview-email","mailchimp","mailgun","mandrill","moonmail","postmark","sendgrid","@types/mailparser","@types/smtp-server","mailparser","@ember-tooling/blueprint-blueprint","@ember-tooling/blueprint-model","@ember/app-blueprint","@pnpm/find-workspace-dir","babel-remove-types","broccoli-config-loader","broccoli-config-replace","broccoli-funnel-reducer","broccoli-slow-trees","capture-exit","clean-base-url","content-tag","dag-map","ember-cli-is-package-missing", +"ember-cli-preprocess-registry","find-yarn-workspace-root","heimdalljs-fs-monitor","heimdalljs-graph","is-git-url","is-language-code","markdown-it-terminal","promise.hash.helper", +"yam","@ember-tooling/classic-build-addon-blueprint","@ember-tooling/classic-build-app-blueprint","ember-cli-blueprint-test-helpers","ember-cli-internal-test-helpers","yuidoc-ember-cli-theme","yuidocjs","app-kit","ember-app-kit","ember.js","amd-name-resolver","babel-plugin-ember-data-packages-polyfill","babel-plugin-ember-modules-api-polyfill","ember-cli-babel-plugin-helpers","ember-cli-version-checker","@ember/string","@glimmer/component","@glimmer/tracking","@ember/edition-utils", +"babel-plugin-ember-template-compilation","broccoli-persistent-filter","@embroider/test-setup","ember-cli-clean-css","ember-styleguide","ember-template-lint","ember-try","@emmetio/abbreviation","@emmetio/css-abbreviation","snippets","coding","finish","close","end","es-errors","entitify","enumeration","datatype","github-release-cli","yamlify-object","issues","diagnostics","html-element-map","is-boolean-object","is-number-object","is-string","is-subset","rst-selector-parser","shallow rendering", +"shallowRender","test utils","assertion helpers","airbnb-prop-types","codependence","pastoralist","check for es6","check for modules","es check","es matching","es version","ecmascript check","ecmascript matching","ecmascript version","js version","js version check", +"js version matching","test js version","test ecmascript version","intl-fallback-symbol","make-async-function","@types/array.prototype.flatmap","@types/foreach","@types/reflect.ownkeys","reflect.ownkeys","symbol.prototype.description","well-known-symbols","fixture","es6-symbol","esniff","plain-promise","ecmascript5","ecmascript6","ext","es5 shim","json3","promises-aplus-tests-phantom","promises-es6-tests","setPrototypeOf","special","bower-registry-client","commonjs-everywhere","@eslint/config-array", +"@eslint/config-helpers","@humanfs/node","@humanwhocodes/module-importer","@humanwhocodes/retry","json-stable-stringify-without-jsonify","@trunkio/launcher","eslint-rule-extender","metascraper","metascraper-description","metascraper-image","metascraper-logo","metascraper-logo-favicon","metascraper-title","prettier-package-json","eslint-prettier","@rushstack/eslint-patch","@eslint/config-inspector","obuild","@eslint/css","hugs","kisses","cabin","eslint-import-context","is-bun-module","stable-hash-x", +"eslint-friendly-formatter","enhance-visitors","espurify","micro-spelling-correcter","eslint-rule-composer","ast-metadata-inferer","@types/caniuse-lite","browserslist-config-erb","kangax","eslint4b","vue-eslint-editor","exported", +"eslint-env","eslint-enable","eslint-disable","eslint-disable-line","eslint-disable-next-line","@types/estraverse","eslint-config-not-an-aardvark","string-natural-compare","flowtype","@html-eslint/eslint-plugin","@html-eslint/parser","@rtsao/scc","array.prototype.findlastindex","eslint-module-utils","object.groupby","string.prototype.trimend","escope","fs-copy-file-sync","linklocal","lodash.isarray","@schemastore/package","babel-plugin-replace-ts-export-assignment","@es-joy/jsdoccomment", +"@es-joy/resolve.exports","are-docs-informative","object-deep-merge","parse-imports-exports","to-valid-identifier","@es-joy/escodegen","@es-joy/jsdoc-eslint-parser","@hkdobrev/run-if-changed","@types/spdx-expression-parse","babel-plugin-transform-import-meta","@ota-meshi/ast-token-store","diff-sequences","eslint-json-compat-utils","eslint-plugin-eslint-rule-tester","stylelint-config-standard-vue","stylelint-stylus","ast-types-flow","damerau-levenshtein","language-tags","string.prototype.includes", +"eslint-config-eslint","eslint-plugin-es-x","ts-declaration-location","@types/globrex","ts-ignore-import","eslint-utils","prettier-linter-helpers","array.prototype.findlast","array.prototype.tosorted","es-iterator-helpers","@babel/plugin-syntax-do-expressions","@babel/plugin-syntax-function-bind","gfm-footnotes","hermes-parser","eslint-plugin-pere","eslint-snapshot-rule-tester","jsx-ast-utils-x","functional-red-black-tree","sonarjs","svelte-eslint-parser","@types/eslint-utils", +"@types/esutils","svelte-i18n","sveltejs","clean-regexp","regjsparser","@lubien/fixture-beta-package","node-style-text","unicorn","@veritem/eslint-config","vitest eslint plugin","eslint plugin","@types/xml-name-validator","eslint-plugin-markdown-preferences","importx","ink-testing-library","eslint-test","@types/esrecurse","esrecurse","eslint-plugin-requirejs","escomplex-js","everything.js","node-tick-processor","unicode-8.0.0","gulp-tag-version","ethereumjs-common","@ethereumjs/config-nyc", +"@ethereumjs/config-prettier","@ethereumjs/config-tsc","@ethereumjs/config-tslint","contributor","typestrict","transactions","rlp","@types/secp256k1","es-lookup-scope","evaulate","pause-stream","asynct","EventEmitter","EventEmitter2","EventEmitter3","reactor","human-signals","strip-final-newline","get-node","log-process-errors","execfile","stderr","drain","flush","3584","eslint-plugin-mmkal","array-flatten","express3","partials","express-unless","expressjs","hoare","cjs-mock","tRPC","RPC","express.js", "code-generation","fully-typed", -"typed-api","express-api","http-api","client-server","browser-client","web-development","web-api", -"@docusaurus/plugin-client-redirects","openapi3-ts","@express-zod-api/zod-plugin","@types/depd","@types/http-errors", -"camelize-ts","snakify-ts","dts-plugin","documentation-tool","schema-validation","openapi-specification", -"swagger-documentation","assign-symbols","is-extendable","array-slice","for-own","props","webpack-defaults", -"vinyl-transform","console.log","@fast-check/expect-type","@fast-check/poisoning","property-based testing", -"end-to-end testing","quickcheck","jscheck","fuzzer","fuzz","@fast-csv/parse","@fast-csv/format","writer","csv writer", -"CSV","@nodelib/fs.stat","@nodelib/fs.macchiato","@types/merge2","bencho","eslint-config-mrmlnc","implementation", -"strnum","@fastify/ajv-compiler","@fastify/fast-json-stringify-compiler","@fastify/proxy-addr","abstract-logging", -"avvio","fast-json-stringify","light-my-request","toad-cache","@jsumners/line-reporter","ajv-merge-patch", -"branch-comparer","fast-json-body","fluent-json-schema","h2url","@umijs/babel-preset-umi","@umijs/bundler-webpack", -"@umijs/case-sensitive-paths-webpack-plugin", -"@utoo/pack","@types/loader-runner","array.prototype.foreach","array.prototype.join","array.prototype.push", -"array.prototype.slice","string.prototype.split","anything","fbjs-css-vars","@skypack/package-check","in web", -"in javascript","in react","Plug & Play","react components","ui component","advanced component","advanced feature", -"phonebook","voice","autofillotp","share","livelocationtracking","detectmylocation","wakelock","WhatsappShare", -"NetworkConnection","TextToSpeech","VoiceRecognition","SnapScanner","NetworkMonitor","View360","functional program", -"data management","fiber","thread","filesaver","saveas","@tokenizer/inflate","strtok3","token-types","@tokenizer/token", -"noop-stream","magic","exif","elf","macho","apng","flif","xcf","cr2","cr3","orf","arw","dng","nef","rw2","tif","jxr", -"indd","rar","gz","7z","mp4", -"mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","mobi","rtf","woff","woff2","eot", -"ttf","otf","ttc","flv","ps","xz","xpi","cab","deb","ar","rpm","Z","lz","mxf","mts","wasm","webassembly","blend","bpg", -"pptx","3gp","j2c","jpm","jpx","mj2","aif","odt","odp","ics","pcap","dsf","lnk","voc","ac3","3g2","m4b","m4p","m4v", -"f4a","f4b","f4p","f4v","mie","qcp","asf", -"ogv","ogm","oga","spx","ogx","ape","wv","nes","crx","ktx","dcm","mpc","arrow","shp","aac","mp1","it","s3m","xm","skp", -"eps","lzh","pgp","asar","chm","3mf","zst","vcf","jls","pst","dwg","parquet","arj","cpio","ace","avro","fbx","vsdx", -"vtt","apk","drc","lz4","potx","xltx","dotx","xltm","ots","odg","otg","ott","docm","dotm","potm","pptm","jmp","sav", -"ppsm","ppsx","reg","dat","detect-file","resolve-dir","homedir-polyfill","@firebase/ai", -"@firebase/app","@firebase/auth","@firebase/util","@firebase/storage","@firebase/database","@firebase/analytics", -"@firebase/app-check","@firebase/app-types","@firebase/firestore","@firebase/functions","@firebase/messaging", -"@firebase/performance","@firebase/data-connect","@firebase/installations","@firebase/remote-config", -"@firebase/storage-compat","@firebase/analytics-compat","@firebase/app-check-compat","@firebase/firestore-compat", -"@firebase/functions-compat","@firebase/messaging-compat","@firebase/performance-compat", -"@firebase/installations-compat","@firebase/remote-config-compat","remote-config","@firebase/database-types", -"farmhash-modern","jwks-rsa","@firebase/api-documenter","@firebase/auth-types","@types/firebase-token-generator", -"@types/request-promise","firebase-token-generator","http-message-parser","@apphosting/build","@apphosting/common", -"@google-cloud/cloud-sql-connector","@google-cloud/pubsub","cjson","deep-equal-in-any-order","exegesis", -"exegesis-express","libsodium-wrappers","lsofi","pg-gateway","pglite-2","sql-formatter","stream-chain","superstatic", -"update-notifier-cjs","ssl","hosting","synchronization","alce","extend-object","unflatten","markdox","commands", -"flowbite-datepicker","@tailwindcss/cli","eslint-plugin-tailwindcss","flowbite-typography","windicss","ui components", -"tailwind components","tailwind elements","tailwind library","tailwind sections","tailwind ui","tailwind angular", -"tailwind django","tailwind ruby on rails","tailwind flask","umd","ffmpeg","fbemitter","dispatcher","cliff","shush", -"flatiron","nssocket","node-abort-controller","karton","typecheck","@types/babel-code-frame","increment","asynckit", -"es-set-tostringtag","far","is-node-modern","js-randomness-predictor","obake","dezalgo","prettier-plugin-pkgjson", -"@tunnckocore/prettier-config","www","ulpoad","tiny-warning","just-debounce-it","react hooks","render props", -"higher order component","friendly","check-dts","front matter","meta data","release-assist","@monaco-editor/loader", -"@sapphire/stopwatch","@sapphire/utilities","@snippetors/vuepress-plugin-tabs","@vuepress/plugin-google-analytics", -"vuepress-plugin-google-adsense2","bitap","sublime","sublime text","grunt-benchmark","restangular","ui-router", -"foundation","traceur","haml","git-config","find-git-root","@merkle-open/eslint-config","pool","inject-markdown", -"ts2mjs", -"iterators","@werkzeugkiste/eslint-config","@werkzeugkiste/release-config","install-deps-postmerge", -"semantic-release-conventional-commits","@cfware/lint","@cfware/nyc","if-ver","libtap","finder","free","connection", -"preferred","chosen","std","@sec-ant/readable-stream","precise-now","consume","resolve-pkg-maps","tsconfig.json", -"eslint-config-bevry","make-deno-edition","deno-edition","deno-entry","denoland","es2022","export-default","ifconfig", -"ipconfig","mac-address","email-addresses","manage-path","spawn-command","travis-after-all","@primer/primitives", -"@rollup/plugin-html","path-scurry","dirname","is-identifier","identifiers","environments","all","multiple","wildcards", -"array-series","array-parallel","magick","graphicsmagick","gfsl","msmc","mc","minecraft","launcher","java edition","arm", -"arm-support","forge","instances-management","instances","mod","mods","mc-mod","mc-mods","modpack", -"modpack-api","extendable","nbt","jarmods","skin fix","eslint-plugin-no-floating-promise","varlock", -"google spreadsheets","google sheets","spreadsheets","sheets","gdata","drive","google docs","googleapis-common", -"@types/execa","@types/mv","@types/url-template","jsdoc-fresh","jsdoc-region-tag","google apis","client library", -"byte-counter","cacheable-lookup","cacheable-request","decompress-response","form-data-encoder","responselike", -"@types/pem","chunk-data","create-cert","create-test-server","pem","slow-stream","then-busboy","zstd","zstandard", -"human-friendly","sassdoc","sass-color-helpers","govuk-prototype-kit","govuk","reading","retries","handling","EMFILE", -"EAGAIN","EINVAL","EPERM","EACCESS","graphql-js","test-all-versions","section-matter","ansi-green","delimiter-regex", -"extracting","front","frontmatter","matter","@mapbox/node-pre-gyp","@types/bytebuffer","electron-mocha", -"poisson-process","grunt-legacy-log", -"grunt-legacy-util","difflet","eslint-config-grunt","init","browserify-incremental","liftup","pad-stream", -"grunt-nodemon","simultaneous","faster","bin-version-check","file-sync-cmp","cssmin","nodeunit-x","uri-path", -"grunt-github-remove-all-releases","gh","releases","grunt-continue","grunt-env","grunt-istanbul-coverage", -"grunt-cafe-mocha","stack-parser","grunt-templates-dylang","mountain lion","mavericks","requestretry", -"grunt-sauce-tunnel","yui","get-pixels","gmsmith","@npm/types","inline-fixtures","@guarapi/eslint-config-guarapi", -"@swc/register","glob-watcher","undertaker","html2js","templatecache","gulp-symdest","atom-shell","lodash.chunk", -"concurrent-transform","@azure/storage-blob","delayed-stream","streamifier","desugaring","add","prepend", -"gulp-codecov.io","bump-regex","plugin-log","gulp-version","cache-swap","changed","modified","modification","updated", -"cached","passthrough","minify-css","jshint-reporter-jscs","parse-import","rework-import", -"rework-plugin-url","slush","dest","csslint-stylish","node-version-check","@shinnn/eslint-config-node","warnings", -"flatnest","to-absolute-glob","divide","pretty-remarkable","sections","jsftp-mkdirp","ftp-test-server","gift", -"wrap-promise","octonode","read-remove-file","branch","strip-bom-stream","gulpgit","gulp-declare","gulp-define-module", -"gulp-wrap","nsdeclare","eventstream","htm","gulp-spawn","gulp-svg2ttf","gulp-ttf2eot","gulp-ttf2woff","gulp-ttf2woff2", -"gulp-svgicons2svgfont","streamtest","stream-exhaust","if","ternary","gulp-gm","group-array","inline-css", -"lodash.groupby","istanbul-threshold-checker","unit test","jasmine-terminal-reporter","array-unique","capture-stream", -"vinyl-bufferstream","bufferstreams","develop","windows notification","mac notification","notify-osd","ENV","echo", -"ifdef","ifndef","eslint-watch","src","replacestream","modify-filename","rev-hash","rev-path","revving","expire", -"assets","each-async","md5-hex","ruby","@gulp-sourcemaps/identity-map","@gulp-sourcemaps/map-sources","debug-fabulous", -"mississippi","strip-debug","accord","looks-same","svg2png","incremental","gulp-diff","@types/plugin-error", -"incremental compilation","array-each","make-error-cause","tape-catch","source-list-map","useref","async-once", -"mock-gulp-dest","lodash._reescape","lodash._reevaluate","yazul","vinyl-zip","vinyl-assign","pngparse","phantomjssmith", -"compressed","deglob","find-file-up","find-githost","remark-autolink-references","remark-common-changelog", -"remark-lint-final-newline","remark-lint-list-item-bullet-indent","remark-lint-no-auto-link-without-protocol", -"remark-lint-no-blockquote-without-marker","remark-lint-no-inline-padding","remark-lint-no-literal-urls", -"remark-lint-no-unused-definitions","unified-engine","vfile-reporter-shiny","git-pull-or-clone","fixer", -"changelogplease","git-tags","jquery-hammerjs","chai-diff","topo","heavy","mimos","catbox","podium","somever","subtext", -"teamwork","statehood","catbox-memory","get-own-property-symbols","@types/function-bind","@types/mock-property", -"hasOwnProperty","has-own","own","in","remark-api","aria-attributes","html-tag-names","bcp-47-match","direction", -"selectall","estree-util-attach-comments","ccount","tostring","sval","unist-util-find-after","estree-util-build-jsx", -"svg-tag-names","regexgen","sort-object","content-security-policy","cross-origin-embedder-policy", -"cross-origin-opener-policy","cross-origin-resource-policy","origin-agent-cluster","referrer-policy", -"strict-transport-security","x-content-type-options","x-dns-prefetch-control","x-download-options","x-frame-options", -"x-permitted-cross-domain-policies","x-powered-by","x-xss-protection","fast-archy","fast-text-table","hexo-cli", -"hexo-front-matter","hexo-fs","hexo-i18n","hexo-log","hexo-util","titlecase","warehouse","@types/abbrev","0x", -"eslint-config-hexo","hexo-renderer-marked","scrawl","transducers-js","tiny-worker","wcag-contrast","css-color-names", -"deep-freeze-es6","dependency-resolver","step","hap-nodejs","eslint-plugin-import-newlines","@hono/eslint-config", -"bun-types","editorconfig-checker","vite-plugin-fastly-js-compute","fastly","compute","workshopper-adventure", -"workshop","adventure","tutorial","tutor","@types/jscodeshift","flowgen","html entities","html entities encode", -"html entities decode","entities encode","entities decode","ascjs","posthtml-webp","unescape-unicode","alpinejs", -"self-closing","@bubkoo/tsconfig","@bubkoo/eslint-config","@bubkoo/rollup-config","@bubkoo/commitlint-config", -"@bubkoo/semantic-release-config","@selderee/plugin-htmlparser2","selderee","@html-validate/stylish", -"@sidvind/better-ajv-errors","@types/html-minifier-terser","webpack-recompilation-simulator","@types/relateurl","srcset", -"posthtml-plugin","rss","toidentifier","sse","@types/is-glob","mockttp","union","corser","secure-compare", -"eslint-config-populist","https-server","@types/should","@types/eslint__js","@types/markdown-table","HttpStatus", -"httpclient","mediation","put","eslint-config-sanity","hyphenate","uncountable","@messageformat/core","fast-printf", -"make-plural","math-interval-parser","@arktype/attest","i18next-fs-backend","i18next-http-backend", +"typed-api","express-api","http-api","client-server","browser-client","web-development","web-api","@docusaurus/plugin-client-redirects","openapi3-ts","@express-zod-api/zod-plugin","@types/depd","@types/http-errors","camelize-ts","snakify-ts","dts-plugin","documentation-tool","schema-validation","openapi-specification","swagger-documentation","assign-symbols","is-extendable","array-slice","for-own","props","webpack-defaults","vinyl-transform","console.log","@fast-check/expect-type","@fast-check/poisoning", +"property-based testing","end-to-end testing","quickcheck","jscheck","fuzzer","fuzz","@fast-csv/parse","@fast-csv/format","writer","csv writer","CSV","@nodelib/fs.stat","@nodelib/fs.macchiato","@types/merge2","bencho","eslint-config-mrmlnc","implementation","strnum","@fastify/ajv-compiler","@fastify/fast-json-stringify-compiler","@fastify/proxy-addr","abstract-logging","avvio","fast-json-stringify","light-my-request","toad-cache","@jsumners/line-reporter","ajv-merge-patch","branch-comparer","fast-json-body", +"fluent-json-schema","h2url","@umijs/babel-preset-umi","@umijs/bundler-webpack","@umijs/case-sensitive-paths-webpack-plugin", +"@utoo/pack","@types/loader-runner","array.prototype.foreach","array.prototype.join","array.prototype.push","array.prototype.slice","string.prototype.split","anything","fbjs-css-vars","@skypack/package-check","in web","in javascript","in react","Plug & Play","react components","ui component","advanced component","advanced feature","phonebook","voice","autofillotp","share","livelocationtracking","detectmylocation","wakelock","WhatsappShare","NetworkConnection","TextToSpeech","VoiceRecognition","SnapScanner", +"NetworkMonitor","View360","functional program","data management","fiber","thread","filesaver","saveas","@tokenizer/inflate","strtok3","token-types","@tokenizer/token","noop-stream","magic","exif","elf","macho","apng","flif","xcf","cr2","cr3","orf","arw","dng","nef","rw2","tif","jxr","indd","rar","gz","7z","mp4", +"mid","mkv","webm","mov","avi","mpg","mp2","mp3","m4a","ogg","opus","flac","wav","amr","mobi","rtf","woff","woff2","eot","ttf","otf","ttc","flv","ps","xz","xpi","cab","deb","ar","rpm","Z","lz","mxf","mts","wasm","webassembly","blend","bpg","pptx","3gp","j2c","jpm","jpx","mj2","aif","odt","odp","ics","pcap","dsf","lnk","voc","ac3","3g2","m4b","m4p","m4v","f4a","f4b","f4p","f4v","mie","qcp","asf", +"ogv","ogm","oga","spx","ogx","ape","wv","nes","crx","ktx","dcm","mpc","arrow","shp","aac","mp1","it","s3m","xm","skp","eps","lzh","pgp","asar","chm","3mf","zst","vcf","jls","pst","dwg","parquet","arj","cpio","ace","avro","fbx","vsdx","vtt","apk","drc","lz4","potx","xltx","dotx","xltm","ots","odg","otg","ott","docm","dotm","potm","pptm","jmp","sav","ppsm","ppsx","reg","dat","detect-file","resolve-dir","homedir-polyfill","@firebase/ai", +"@firebase/app","@firebase/auth","@firebase/util","@firebase/storage","@firebase/database","@firebase/analytics","@firebase/app-check","@firebase/app-types","@firebase/firestore","@firebase/functions","@firebase/messaging","@firebase/performance","@firebase/data-connect","@firebase/installations","@firebase/remote-config","@firebase/storage-compat","@firebase/analytics-compat","@firebase/app-check-compat","@firebase/firestore-compat","@firebase/functions-compat","@firebase/messaging-compat", +"@firebase/performance-compat","@firebase/installations-compat","@firebase/remote-config-compat","remote-config","@firebase/database-types","farmhash-modern","jwks-rsa","@firebase/api-documenter","@firebase/auth-types","@types/firebase-token-generator","@types/request-promise","firebase-token-generator","http-message-parser","@apphosting/build","@apphosting/common","@google-cloud/cloud-sql-connector","@google-cloud/pubsub","cjson","deep-equal-in-any-order","exegesis","exegesis-express","libsodium-wrappers", +"lsofi","pg-gateway","pglite-2","sql-formatter","stream-chain","superstatic","update-notifier-cjs","ssl","hosting","synchronization","alce","extend-object","unflatten","markdox","commands","flowbite-datepicker","@tailwindcss/cli","eslint-plugin-tailwindcss","flowbite-typography","windicss","ui components", +"tailwind components","tailwind elements","tailwind library","tailwind sections","tailwind ui","tailwind angular","tailwind django","tailwind ruby on rails","tailwind flask","umd","ffmpeg","fbemitter","dispatcher","cliff","shush","flatiron","nssocket","node-abort-controller","karton","typecheck","@types/babel-code-frame","increment","asynckit","es-set-tostringtag","far","is-node-modern","js-randomness-predictor","obake","dezalgo","prettier-plugin-pkgjson","@tunnckocore/prettier-config","www","ulpoad", +"tiny-warning","just-debounce-it","react hooks","render props","higher order component","friendly","check-dts","front matter","meta data","release-assist","@monaco-editor/loader","@sapphire/stopwatch","@sapphire/utilities","@snippetors/vuepress-plugin-tabs","@vuepress/plugin-google-analytics","vuepress-plugin-google-adsense2","bitap","sublime","sublime text","grunt-benchmark","restangular","ui-router","foundation","traceur","haml","git-config","find-git-root","@merkle-open/eslint-config","pool", +"inject-markdown","ts2mjs", +"iterators","@werkzeugkiste/eslint-config","@werkzeugkiste/release-config","install-deps-postmerge","semantic-release-conventional-commits","@cfware/lint","@cfware/nyc","if-ver","libtap","finder","free","connection","preferred","chosen","std","@sec-ant/readable-stream","precise-now","consume","resolve-pkg-maps","tsconfig.json","eslint-config-bevry","make-deno-edition","deno-edition","deno-entry","denoland","es2022","export-default","ifconfig","ipconfig","mac-address","email-addresses","manage-path", +"spawn-command","travis-after-all","@primer/primitives","@rollup/plugin-html","path-scurry","dirname","is-identifier","identifiers","environments","all","multiple","wildcards","array-series","array-parallel","magick","graphicsmagick","gfsl","msmc","mc","minecraft","launcher","java edition","arm","arm-support","forge","instances-management","instances","mod","mods","mc-mod","mc-mods","modpack", +"modpack-api","extendable","nbt","jarmods","skin fix","eslint-plugin-no-floating-promise","varlock","google spreadsheets","google sheets","spreadsheets","sheets","gdata","drive","google docs","googleapis-common","@types/execa","@types/mv","@types/url-template","jsdoc-fresh","jsdoc-region-tag","google apis","client library","byte-counter","cacheable-lookup","cacheable-request","decompress-response","form-data-encoder","responselike","@types/pem","chunk-data","create-cert","create-test-server","pem", +"slow-stream","then-busboy","zstd","zstandard","human-friendly","sassdoc","sass-color-helpers","govuk-prototype-kit","govuk","reading","retries","handling","EMFILE","EAGAIN","EINVAL","EPERM","EACCESS","graphql-js","test-all-versions","section-matter","ansi-green","delimiter-regex","extracting","front","frontmatter","matter","@mapbox/node-pre-gyp","@types/bytebuffer","electron-mocha","poisson-process","grunt-legacy-log", +"grunt-legacy-util","difflet","eslint-config-grunt","init","browserify-incremental","liftup","pad-stream","grunt-nodemon","simultaneous","faster","bin-version-check","file-sync-cmp","cssmin","nodeunit-x","uri-path","grunt-github-remove-all-releases","gh","releases","grunt-continue","grunt-env","grunt-istanbul-coverage","grunt-cafe-mocha","stack-parser","grunt-templates-dylang","mountain lion","mavericks","requestretry","grunt-sauce-tunnel","yui","get-pixels","gmsmith","@npm/types","inline-fixtures", +"@guarapi/eslint-config-guarapi","@swc/register","glob-watcher","undertaker","html2js","templatecache","gulp-symdest","atom-shell","lodash.chunk","concurrent-transform","@azure/storage-blob","delayed-stream","streamifier","desugaring","add","prepend","gulp-codecov.io","bump-regex","plugin-log","gulp-version","cache-swap","changed","modified","modification","updated","cached","passthrough","minify-css","jshint-reporter-jscs","parse-import","rework-import", +"rework-plugin-url","slush","dest","csslint-stylish","node-version-check","@shinnn/eslint-config-node","warnings","flatnest","to-absolute-glob","divide","pretty-remarkable","sections","jsftp-mkdirp","ftp-test-server","gift","wrap-promise","octonode","read-remove-file","branch","strip-bom-stream","gulpgit","gulp-declare","gulp-define-module","gulp-wrap","nsdeclare","eventstream","htm","gulp-spawn","gulp-svg2ttf","gulp-ttf2eot","gulp-ttf2woff","gulp-ttf2woff2","gulp-svgicons2svgfont","streamtest", +"stream-exhaust","if","ternary","gulp-gm","group-array","inline-css","lodash.groupby","istanbul-threshold-checker","unit test","jasmine-terminal-reporter","array-unique","capture-stream","vinyl-bufferstream","bufferstreams","develop","windows notification","mac notification","notify-osd","ENV","echo","ifdef","ifndef","eslint-watch","src","replacestream","modify-filename","rev-hash","rev-path","revving","expire", +"assets","each-async","md5-hex","ruby","@gulp-sourcemaps/identity-map","@gulp-sourcemaps/map-sources","debug-fabulous","mississippi","strip-debug","accord","looks-same","svg2png","incremental","gulp-diff","@types/plugin-error","incremental compilation","array-each","make-error-cause","tape-catch","source-list-map","useref","async-once","mock-gulp-dest","lodash._reescape","lodash._reevaluate","yazul","vinyl-zip","vinyl-assign","pngparse","phantomjssmith","compressed","deglob","find-file-up","find-githost", +"remark-autolink-references","remark-common-changelog","remark-lint-final-newline","remark-lint-list-item-bullet-indent","remark-lint-no-auto-link-without-protocol","remark-lint-no-blockquote-without-marker","remark-lint-no-inline-padding","remark-lint-no-literal-urls","remark-lint-no-unused-definitions","unified-engine","vfile-reporter-shiny","git-pull-or-clone","fixer","changelogplease","git-tags","jquery-hammerjs","chai-diff","topo","heavy","mimos","catbox","podium","somever","subtext","teamwork", +"statehood","catbox-memory","get-own-property-symbols","@types/function-bind","@types/mock-property", +"hasOwnProperty","has-own","own","in","remark-api","aria-attributes","html-tag-names","bcp-47-match","direction","selectall","estree-util-attach-comments","ccount","tostring","sval","unist-util-find-after","estree-util-build-jsx","svg-tag-names","regexgen","sort-object","content-security-policy","cross-origin-embedder-policy","cross-origin-opener-policy","cross-origin-resource-policy","origin-agent-cluster","referrer-policy","strict-transport-security","x-content-type-options","x-dns-prefetch-control", +"x-download-options","x-frame-options","x-permitted-cross-domain-policies","x-powered-by","x-xss-protection","fast-archy","fast-text-table","hexo-cli","hexo-front-matter","hexo-fs","hexo-i18n","hexo-log","hexo-util","titlecase","warehouse","@types/abbrev","0x","eslint-config-hexo","hexo-renderer-marked","scrawl","transducers-js","tiny-worker","wcag-contrast","css-color-names","deep-freeze-es6","dependency-resolver","step","hap-nodejs","eslint-plugin-import-newlines","@hono/eslint-config","bun-types", +"editorconfig-checker","vite-plugin-fastly-js-compute","fastly","compute","workshopper-adventure", +"workshop","adventure","tutorial","tutor","@types/jscodeshift","flowgen","html entities","html entities encode","html entities decode","entities encode","entities decode","ascjs","posthtml-webp","unescape-unicode","alpinejs","self-closing","@bubkoo/tsconfig","@bubkoo/eslint-config","@bubkoo/rollup-config","@bubkoo/commitlint-config","@bubkoo/semantic-release-config","@selderee/plugin-htmlparser2","selderee","@html-validate/stylish","@sidvind/better-ajv-errors","@types/html-minifier-terser", +"webpack-recompilation-simulator","@types/relateurl","srcset","posthtml-plugin","rss","toidentifier","sse","@types/is-glob","mockttp","union","corser","secure-compare","eslint-config-populist","https-server","@types/should","@types/eslint__js","@types/markdown-table","HttpStatus","httpclient","mediation","put","eslint-config-sanity","hyphenate","uncountable","@messageformat/core","fast-printf","make-plural","math-interval-parser","@arktype/attest","i18next-fs-backend","i18next-http-backend", "i18next-localstorage-cache","i18next-sprintf-postprocessor","gettext","gridly","errto","bench-node","icu", -"harmony-reflect","proxies","eslint-config-ostai","pre-suf",".gitignore","asterisks","regular-expression","dimensions", -"heif","tga","is-png","pngquant-bin","imageminplugin","pngquant","utf7","reader","cpx2","import-size", -"seamless-immutable","type-plus","mutable","copy-on-write","@types/invariant","immutability","stateless","bypass", -"prefer","metacom","metaconfiguration","metalog","metaschema","metautil","metavm","metawatch","eslint-config-metarhia", -"isolation","enterprise","soa","stateful","inferno-utils","inflections","inflection-js","capitalize","inheritance", -"klass","oop","object-oriented","@alcalzone/ansi-tokenize","auto-bind","patch-console","terminal-size","yoga-layout", -"@types/react-reconciler","@types/scheduler","@vdemedes/prettier-config","print","inline-style","inno","innosetup","fwk", -"instagram","ig","exports","packaging", -"remark-code-import","coffee.md","litcoffee","cldr-cal-buddhist-full","cldr-cal-chinese-full","cldr-cal-coptic-full", -"cldr-cal-dangi-full","cldr-cal-ethiopic-full","cldr-cal-hebrew-full","cldr-cal-indian-full","cldr-cal-islamic-full", -"cldr-cal-japanese-full","cldr-cal-persian-full","cldr-cal-roc-full","cldr-core","cldr-dates-full","cldr-numbers-full", -"estraverse-fb","grunt-curl","grunt-zip","rollup-plugin-memory","ecma402","@vue/tsconfig","flag-icons", -"google-closure-library","grunt-replace","international","dial code","@inversifyjs/common","@inversifyjs/container", -"@inversifyjs/core","dependency inversion","inversion of control container","ioc","@ionic/discover","superagent-proxy", -"@types/open","@types/os-name","ionic framework","ionicframework","jest-stencil-runner","icon pack","@ioredis/commands", -"cluster-key-slot","lodash.isarguments","redis-errors","redis-parser","standard-as-callback", -"@ioredis/interface-generator","@types/lodash.defaults","@types/lodash.isarguments","@types/redis-errors","sentinel", -"pipelining","irc-colors","node-icu-charset-detector","ansi-color","is-extglob","global-directory","globally", -"installed","locally","custom element name","wsl", -"subsystem","kindof","lintspaces-cli","code coverage","JS code coverage","JS coverage","js-calendar","v-click-outside-x", -"autoprefixer-loader","babel-plugin-transform-es5-property-mutators","vue-html-loader","character-parser", -"constantinople","jstransformer","transformers","with","browserify-middleware","code-mirror","github-basic","handle", -"highlight-codemirror","inconsolata","jade-code-mirror","jade-highlighter","jstransformer-marked","less-file","lsr", -"pull-request","filelist","rake","video-worker","browserslist-config-nk","eslint-config-nk","json-file", -"prettier-config-nk","parallax","vimeo","@jasminejs/reporters","css-url-embed","walkdir","jasmine-growl-reporter", -"cssfontparser","moo-color","babel-plugin-version","@jest/diff-sequences","matchers","extended","@types/jump.js", -"@types/randomcolor","jump.js","randomcolor","libxmljs2","@types/merge-stream","jest-leak-detector","@jimp/core", -"@jimp/diff","@jimp/js-bmp","@jimp/js-gif","@jimp/js-jpeg","@jimp/js-png","@jimp/js-tiff","@jimp/plugin-blit", +"harmony-reflect","proxies","eslint-config-ostai","pre-suf",".gitignore","asterisks","regular-expression","dimensions","heif","tga","is-png","pngquant-bin","imageminplugin","pngquant","utf7","reader","cpx2","import-size","seamless-immutable","type-plus","mutable","copy-on-write","@types/invariant","immutability","stateless","bypass","prefer","metacom","metaconfiguration","metalog","metaschema","metautil","metavm","metawatch","eslint-config-metarhia","isolation","enterprise","soa","stateful","inferno-utils", +"inflections","inflection-js","capitalize","inheritance","klass","oop","object-oriented","@alcalzone/ansi-tokenize","auto-bind","patch-console","terminal-size","yoga-layout","@types/react-reconciler","@types/scheduler","@vdemedes/prettier-config","print","inline-style","inno","innosetup","fwk","instagram","ig","exports","packaging", +"remark-code-import","coffee.md","litcoffee","cldr-cal-buddhist-full","cldr-cal-chinese-full","cldr-cal-coptic-full","cldr-cal-dangi-full","cldr-cal-ethiopic-full","cldr-cal-hebrew-full","cldr-cal-indian-full","cldr-cal-islamic-full","cldr-cal-japanese-full","cldr-cal-persian-full","cldr-cal-roc-full","cldr-core","cldr-dates-full","cldr-numbers-full","estraverse-fb","grunt-curl","grunt-zip","rollup-plugin-memory","ecma402","@vue/tsconfig","flag-icons","google-closure-library","grunt-replace","international", +"dial code","@inversifyjs/common","@inversifyjs/container","@inversifyjs/core","dependency inversion","inversion of control container","ioc","@ionic/discover","superagent-proxy","@types/open","@types/os-name","ionic framework","ionicframework","jest-stencil-runner","icon pack","@ioredis/commands","cluster-key-slot","lodash.isarguments","redis-errors","redis-parser","standard-as-callback","@ioredis/interface-generator","@types/lodash.defaults","@types/lodash.isarguments","@types/redis-errors","sentinel", +"pipelining","irc-colors","node-icu-charset-detector","ansi-color","is-extglob","global-directory","globally","installed","locally","custom element name","wsl", +"subsystem","kindof","lintspaces-cli","code coverage","JS code coverage","JS coverage","js-calendar","v-click-outside-x","autoprefixer-loader","babel-plugin-transform-es5-property-mutators","vue-html-loader","character-parser","constantinople","jstransformer","transformers","with","browserify-middleware","code-mirror","github-basic","handle","highlight-codemirror","inconsolata","jade-code-mirror","jade-highlighter","jstransformer-marked","less-file","lsr","pull-request","filelist","rake","video-worker", +"browserslist-config-nk","eslint-config-nk","json-file","prettier-config-nk","parallax","vimeo","@jasminejs/reporters","css-url-embed","walkdir","jasmine-growl-reporter","cssfontparser","moo-color","babel-plugin-version","@jest/diff-sequences","matchers","extended","@types/jump.js","@types/randomcolor","jump.js","randomcolor","libxmljs2","@types/merge-stream","jest-leak-detector","@jimp/core","@jimp/diff","@jimp/js-bmp","@jimp/js-gif","@jimp/js-jpeg","@jimp/js-png","@jimp/js-tiff","@jimp/plugin-blit", "@jimp/plugin-blur","@jimp/plugin-circle", -"@jimp/plugin-color","@jimp/plugin-contain","@jimp/plugin-cover","@jimp/plugin-crop","@jimp/plugin-displace", -"@jimp/plugin-dither","@jimp/plugin-fisheye","@jimp/plugin-flip","@jimp/plugin-hash","@jimp/plugin-mask", -"@jimp/plugin-print","@jimp/plugin-quantize","@jimp/plugin-resize","@jimp/plugin-rotate","@jimp/plugin-threshold", -"@jimp/types","@jimp/utils","@jimp/config-eslint","@jimp/config-typescript","@jimp/config-vitest","@jimp/test-utils", -"node-self","image processing","image manipulation","@babel/helper-simple-access","@types/babel__helper-plugin-utils", -"babel-plugin-parameter-decorator","destr","nano-jsx","wysiwyg editor","wysiwyg html editor","vanillajs","wysisyg", -"temporal","nanotimer","browser-serialport","grunt-jsbeautifier","0A02","0A21","16x2 LCD","20x4 LCD","2D120X","2Y0A02", -"2Y0A21","74HC595","ADXL335","ADXL345","ALS-PT19","ALSPT19","ANALOG","arduino","Ardumoto","AT42QT1070","BLINKM","BMP180", -"Continuous Rotation","DEFAULT","Diffused LED","DS18B20","Edison Arduino Block","Edison GPIO Block","Edison I2C Block", -"Edison PWM Block","edison", -"ESPLORA","EV3","galileo-io","galileo","GP2D120XJ00F","GP2Y0A02YK0F","GP2Y0A21YK","GP2Y0A41SK0F","GY-521","GY521", -"HD44780","High Torque","Hitec HS-35HD","Hitec HS-422","Hitec HS-425BB","Hitec HS-625MG","Hitec HS-646WP", -"Hitec HS-755HB","Hitec HS-805BB","Hitec HS-85MG","HMC5883L","HMC6352","Hobby Motor","HRLV-MaxSonar-EZ0","HT16K33", -"HTU21D","i2c","Infrared Proximity Sensor","Infrared Sensor","intel edison","intel galileo","ISL29125","JHD1313M1", -"LCD1602","LCD2004","LCM1602","LED","LIDAR-Lite v2","Ludus Protoshield Wireless","Ludus Protoshield","LV-MaxSonar-EZ0", -"LV-MaxSonar-EZ3","MCP23008","MCP23017","MCP9808","Metal Gear","MJKDZ","MMA7361","MMA7660","MMA8462Q","MPL115A2", -"MPL3115A2","MPR121","MPR121QR2","MPU-6050","MPU6050","MUXSHIELD2","NXT","OA41SK","PARALLEL","PCA9685","pcduino", -"PCF8574","PCF8574A", -"PCF8574AT","PCF8574T","PCF8575","PCF8591","photon","PIR Motion Sensor","QTOUCH","raspberrypi","raspi-io","RedBoard", -"RGB LED","robot","Servo","Shift Register 8-Bit SN74HC595","Shift Register","SI7020","spark core","spark-io","spark", -"SparkFun Essential Sensor Kit","SparkFun Sensor Kit","Speed controller","Temperature","tessel 2","Thumb Joystick", -"TINKERKIT","TMP36","TSL2561","Ultrasonic Range Finder","VKEY","Weather Shield Arduino","Weather Shield Photon", -"@hapi/address","@hapi/formula","@hapi/pinpoint","@hapi/tlds","recoil","grunt-html","grunt-bowercopy", -"jquery-test-runner","config-chain","beautifier","code-quality","amd","pyyaml","knifecycle","yerror","architecture", -"gitignore-to-glob","@jscpd/badge-reporter","@jscpd/core","@jscpd/finder","@jscpd/tokenizer","@jscpd/html-reporter", -"jscpd-sarif-reporter","jscs-jsdoc","jscs-preset-wikimedia","to-double-quotes","to-single-quotes","vow-fs", -"unicode-7.0.0","unit-coverage","@jsdoc/salty","catharsis", -"js2xmlparser","requizzle","object-to-spawn-args","config-master","@acemir/cssom","@asamuzakjp/dom-selector", -"@bramus/specificity","data-urls","symbol-tree","w3c-xmlserializer","webidl-conversions","whatwg-url","mocha-sugar-free", -"webidl2","webidl2js","browser-request","nwmatcher","unicode-13.0.0","results-interpreter","unicode-5.2.0", -"unicode-11.0.0","deeks","doc-path","to","json2csv","csv2json","csv-2-json","milliparsec","prototyping", -"@types/object-keys","deterministic","circular","unicode-10.0.0","@stryker-mutator/mocha-runner","json-metaschema","jws", -"lodash.once","lodash.includes","lodash.isnumber","lodash.isboolean","lodash.isinteger","@jspm/generator", -"@jspm/plugin-rollup","amaro","states","jszip-utils","package-json-versionify","qjobs","dom-serialize","timer-shim", -"spectacular","execution","os-shim","browser-stack","ibrik","karma-coffee-preprocessor","karma-requirejs","Safari", -"Safari Tech Preview","SafariTechPreview","IE","Chrome","Chrome Canary","Chrome Headless", -"Chromium","Firefox","Opera","edge-launcher","chai-fs","karma-rollup","@types/global-agent","sauce","labs", -"karma-brief-reporter","rollup-sourcemap-path-transform","keyboardevent","keydown","keyup","metakey","keyname", -"@keyv/serialize","@keyv/compress-gzip","@keyv/sqlite","@keyv/test-suite","@keyv/mongo","@keyv/compress-brotli", -"@keyv/compress-lz4","@keyv/memcache","adapter","chai-subset-in-order","@tsconfig/recommended","toxiproxy-node-client", -"cockroachdb","querybuilder","formatly","oxc-resolver","codeclimate-types","dead code","entropy","maintenance","members", -"missing","namespace","unreferenced","unresolved","opera","samsung-internet","uc-browser","stream-counter","delegates", -"http-assert","@types/co-body","@koa/router","@types/koa__router","copy-to","bodyParser","humanize-number", -"passthrough-counter","koa-compress","koa-route","mounting","@ladjs/env","koa-send","sendfile","reds", -"node-redis-warlock","bossy","eslint-config-hapi", -"eslint-plugin-hapi","find-rc","will-call","lab-event-reporter","current","autodoc","deft","jasmine-async","race.js", -"string-table","happen","leafdoc","bundlemon","git-rev-sync","rollup-plugin-git-version", -"@mapbox/eslint-plugin-script-tags","gis","left","repeat","aproba","write-pkg","wide-align","p-waterfall","p-map-series", -"@lerna/create","read-cmd-shim","conventional-changelog-core","@octokit/plugin-enterprise-rest","bootstrap-less-port", -"html-template-tag","phin","read-glob","css nesting","gradients css","less compiler","variables in css","css less", -"less-plugin-glob","browser-level","classic-level","abstract-level","napi-macros","abstract-leveldown","du","mkfiletree", -"readfiletree","prebuildify-ci","prebuildify-cross","level-errors","level-supports","deferred-leveldown", -"level-iterator-stream","memdown","trickle","encoding-down","simple-concat","ld","levdist","levenshtein-component", -"talisman","distance","binary-extensions","just-safe-set","fund", -"gitfund","crlf","gmail-send","jest-codemods","libphonenumber-metadata-generator","renamer","libphonenumber","fined", -"flagged-respawn","hashtag","mention","consolemock","staged","@samverschueren/stream-to-observable","is-observable", -"listr-silent-renderer","listr-update-renderer","listr-verbose-renderer","@lit-labs/ssr-dom-shim", -"@lit/reactive-element","@lit-internal/scripts","@lit-labs/testing","@webcomponents/template","connect-logger", -"http-auth","matchdep","lws-basic-auth","lws-blacklist","lws-body-parser","lws-compress","lws-conditional-get", -"lws-cors","lws-json","lws-log","lws-mime","lws-range","lws-request-monitor","lws-rewrite","lws-spa", -"babel-preset-es2015-loose","browserify-derequire","grunt-es3-safe-recast","rollupify","indexeddb","localstorage", -"websql","openurl","lockfile-lint-api","lockfile check","lockfile lint","clonedeep","isempty","isfunction", -"isplainobject","isstring","pick","uniq","uni-global","sprintf-kit","ncjsm","tape-index","terminal.js","overwrite", -"date-format", -"streamroller","@log4js-node/sandboxed-module","grunt-contrib-jasmine","grunt-preprocess","int64","isemail", -"canonical-json","loopback-phase","loopback-filters","strong-globalize","loopback-connector-remote", -"nodemailer-stub-transport","nodemailer-direct-transport","loopback-boot","karma-es6-shim","loopback-context", -"strong-task-emitter","strong-error-handler","eslint-config-loopback","steno","express-async-handler", -"@typicode/eslint-config","localStorage","sessionStorage","mru","@lucide/build-icons","@lucide/shared", -"@lucide/rollup-plugins","Lucide","HTML","Feather","Icons","Icon","Feather Icons","Fontawesome","Font Awesome","decree", -"manipulate","blur","sharpen","hue","saturation","lightness","transparency","contain","cover","@75lb/deep-merge", -"ansi-escape-sequences","create-mixin","sleep-anywhere","expand-home-dir","hast-util-to-mdast","short-unique-id", -"@types/columnify","@types/json-diff","@types/make-fetch-happen","wizard","task graph","string manipulation", -"@favware/rollup-type-bundler","lavalink client","audio streaming","music bot","voice chat", -"discord integration","high performance","easy-to-use","feature-rich","seamless integration","community support", -"lavalink","path-type","intermediate","recursively","dingbat-to-unicode","lop","browserify-prepend-licenses","duck", -"hamjest","@nestjs/config","@nestjs/platform-express","@nestjs/throttler","uniqid","@nestjs/cli","@testcontainers/mysql", -"@types/dasherize","admin-panel","headless-cms","backend-framework","micro-backend","rapid-development","file-upload", -"api-generator","low-code","no-code","mvp","@tabler/icons-react","postcss-preset-mantine","mantine","context-menu", -"context menu","react server components","user experience","usability","mapbox-gl","mapbox","legend","text processing", -"linkify-it","mdurl","punycode.js","uc.micro","markdown-it-ins","markdown-it-mark","emojies","stream-from-to","pdf-text", -"bunup","markdown parser","solidjs","diacritics-map","lazy-cache","list-item","markdown-link","mixin-deep","glossary", -"remarkableplugin","table of contents", -"table-of-contents","toc","micromark-extension-directive","micromark-extension-gfm-autolink-literal", -"micromark-extension-gfm-footnote","micromark-extension-gfm-table","micromark-extension-math","gemoji", -"markdownlint-rule-extended-ascii","CommonMark","run-con","@markedjs/eslint-config","@markedjs/testutils", -"marked-highlight","marked-man","v8-argv","react-event-listener","simple-assign","complex.js","escape-latex", -"javascript-natural-sort","typed-function","eigen","expr-eval","jsep","ndarray-determinant","ndarray-gemm","ndarray-ops", -"ndarray-pack","numericjs","zeros","mathematics","algebra","complex","fraction","md5sum","micromark-util-decode-string", -"unist-util-stringify-position","micromark-build","trim-lines","mdn","jackpot","InnoDB memcached API","failover", -"membase","memcache","nMemcached","@jsonjoy.com/fs-core","@jsonjoy.com/fs-fsa","@jsonjoy.com/fs-node", -"@jsonjoy.com/fs-node-builtins","@jsonjoy.com/fs-node-to-fsa","@jsonjoy.com/fs-node-utils","@jsonjoy.com/fs-print", -"@jsonjoy.com/fs-snapshot","@jsonjoy.com/json-pack","@jsonjoy.com/util","glob-to-regex.js","thingies","tree-dump", -"isomorphic-git","tslint-config-common","fs.js","file system access", -"native file system","webfs","crudfs","opfs","casfs","content addressable storage","@types/lodash.isequal","mem", -"memoization","gulp-exit","ram","errno","camelcase-keys","decamelize-keys","delete_comments","minimist-options", -"trim-newlines","cat","kitten","from2","lodash.clonedeepwith","stat-mode","ware","@metalsmith/drafts","assert-dir-equal", -"7zip-bin","node-7z","node-downloader-helper","@surma/rollup-plugin-off-main-thread","asyncro", -"babel-plugin-transform-async-to-promises","babel-plugin-transform-replace-expressions", -"@babel/plugin-proposal-throw-expressions","directory-tree","eslint-config-developit","npm-merge-driver-install", -"micro library","micromark-factory-space","micromark-util-chunked","micromark-util-combine-extensions", -"micromark-util-resolve-all","micromark-util-subtokenize","bracket","character-class","extglobs","lookahead", -"lookaround","lookbehind","negate","negation","posix","star","mime-score","mimetypes","Min Heap","maxheap","min-heap", -"Binary Heap","binary-heap","heap data structure","min heap data structure","complete binary tree","heapify","heap sort", -"heapify up","heapify down","Priority Queue","priority queue","priority-queue","priority q","priorityQ", -"complete binary","extract min","min priority queue","efficient priority","ordering property","dynamic resizing", -"priority-based","priority-based processing","element priority","queue priority","decrease key","increase key", -"@putout/minify","css-b64-images","html-minifier-next","montag","readjson","try-catch","try-to-catch","escover", -"eslint-plugin-putout","madrun","supertape","signed","certificate","cert","@types/brace-expansion","frp", -"functional-reactive-programming","state management","data flow","browser-stdout","yargs-unparser","uslug","rewiremock", -"unexpected","@mocha/docdash","jsdoc-ts-utils","unexpected-map","unexpected-set","unexpected-sinon", -"remark-inline-links","unexpected-eventemitter","fail-on-errors-webpack-plugin", -"@11ty/eleventy-plugin-inclusive-language","chai-xml","xmllint","lcov","define-data-property","@types/es-value-fixtures", -"@types/for-each","@types/functions-have-names","@types/get-intrinsic","@types/gopd","@types/has-property-descriptors", -"@types/object-inspect","swap", -"unix-dgram","gulp-mocha-phantomjs","mockJSON","mockAjax","recursive-watch","fastest-validator","avsc","nats","etcd3", -"cbor-x","thrift","redlock","dd-trace","gc-stats","msgpack5","fakerator","kafka-node","@types/pino","notepack.io", -"benchmarkify","rhea-promise","@types/bunyan","jaeger-client","@types/ioredis","moleculer-repl","winston-context", -"event-loop-stats","node-nats-streaming","@icebob/node-memwatch","messagebus","olson","iana","zone", -"monaco-languageserver-types","monaco-marker-data-provider","monaco-types","monaco-worker-manager", -"vscode-languageserver-textdocument","@remcohaszing/eslint","yaml-language-server","monaco","monads","either","maybe", -"result","@codemirror/theme-one-dark","@json2csv/plainjs","@lezer/highlight","bootstrap-paginator-2","free-swig", -"gridfs-stream","mongodb-query-parser","renderjson-2","assets-webpack-plugin","express-openid-connect","administration", -"manage","manage-mongo","phpmyadmin","web-based","@mongodb-js/saslprep","mongodb-connection-string-url","snappy", +"@jimp/plugin-color","@jimp/plugin-contain","@jimp/plugin-cover","@jimp/plugin-crop","@jimp/plugin-displace","@jimp/plugin-dither","@jimp/plugin-fisheye","@jimp/plugin-flip","@jimp/plugin-hash","@jimp/plugin-mask","@jimp/plugin-print","@jimp/plugin-quantize","@jimp/plugin-resize","@jimp/plugin-rotate","@jimp/plugin-threshold","@jimp/types","@jimp/utils","@jimp/config-eslint","@jimp/config-typescript","@jimp/config-vitest","@jimp/test-utils","node-self","image processing","image manipulation", +"@babel/helper-simple-access","@types/babel__helper-plugin-utils","babel-plugin-parameter-decorator","destr","nano-jsx","wysiwyg editor","wysiwyg html editor","vanillajs","wysisyg","temporal","nanotimer","browser-serialport","grunt-jsbeautifier","0A02","0A21","16x2 LCD","20x4 LCD","2D120X","2Y0A02","2Y0A21","74HC595","ADXL335","ADXL345","ALS-PT19","ALSPT19","ANALOG","arduino","Ardumoto","AT42QT1070","BLINKM","BMP180","Continuous Rotation","DEFAULT","Diffused LED","DS18B20","Edison Arduino Block", +"Edison GPIO Block","Edison I2C Block","Edison PWM Block","edison", +"ESPLORA","EV3","galileo-io","galileo","GP2D120XJ00F","GP2Y0A02YK0F","GP2Y0A21YK","GP2Y0A41SK0F","GY-521","GY521","HD44780","High Torque","Hitec HS-35HD","Hitec HS-422","Hitec HS-425BB","Hitec HS-625MG","Hitec HS-646WP","Hitec HS-755HB","Hitec HS-805BB","Hitec HS-85MG","HMC5883L","HMC6352","Hobby Motor","HRLV-MaxSonar-EZ0","HT16K33","HTU21D","i2c","Infrared Proximity Sensor","Infrared Sensor","intel edison","intel galileo","ISL29125","JHD1313M1","LCD1602","LCD2004","LCM1602","LED","LIDAR-Lite v2", +"Ludus Protoshield Wireless","Ludus Protoshield","LV-MaxSonar-EZ0","LV-MaxSonar-EZ3","MCP23008","MCP23017","MCP9808","Metal Gear","MJKDZ","MMA7361","MMA7660","MMA8462Q","MPL115A2","MPL3115A2","MPR121","MPR121QR2","MPU-6050","MPU6050","MUXSHIELD2","NXT","OA41SK","PARALLEL","PCA9685","pcduino","PCF8574","PCF8574A", +"PCF8574AT","PCF8574T","PCF8575","PCF8591","photon","PIR Motion Sensor","QTOUCH","raspberrypi","raspi-io","RedBoard","RGB LED","robot","Servo","Shift Register 8-Bit SN74HC595","Shift Register","SI7020","spark core","spark-io","spark","SparkFun Essential Sensor Kit","SparkFun Sensor Kit","Speed controller","Temperature","tessel 2","Thumb Joystick","TINKERKIT","TMP36","TSL2561","Ultrasonic Range Finder","VKEY","Weather Shield Arduino","Weather Shield Photon","@hapi/address","@hapi/formula","@hapi/pinpoint", +"@hapi/tlds","recoil","grunt-html","grunt-bowercopy","jquery-test-runner","config-chain","beautifier","code-quality","amd","pyyaml","knifecycle","yerror","architecture","gitignore-to-glob","@jscpd/badge-reporter","@jscpd/core","@jscpd/finder","@jscpd/tokenizer","@jscpd/html-reporter","jscpd-sarif-reporter","jscs-jsdoc","jscs-preset-wikimedia","to-double-quotes","to-single-quotes","vow-fs","unicode-7.0.0","unit-coverage","@jsdoc/salty","catharsis", +"js2xmlparser","requizzle","object-to-spawn-args","config-master","@acemir/cssom","@asamuzakjp/dom-selector","@bramus/specificity","data-urls","symbol-tree","w3c-xmlserializer","webidl-conversions","whatwg-url","mocha-sugar-free","webidl2","webidl2js","browser-request","nwmatcher","unicode-13.0.0","results-interpreter","unicode-5.2.0","unicode-11.0.0","deeks","doc-path","to","json2csv","csv2json","csv-2-json","milliparsec","prototyping","@types/object-keys","deterministic","circular","unicode-10.0.0", +"@stryker-mutator/mocha-runner","json-metaschema","jws","lodash.once","lodash.includes","lodash.isnumber","lodash.isboolean","lodash.isinteger","@jspm/generator","@jspm/plugin-rollup","amaro","states","jszip-utils","package-json-versionify","qjobs","dom-serialize","timer-shim","spectacular","execution","os-shim","browser-stack","ibrik","karma-coffee-preprocessor","karma-requirejs","Safari","Safari Tech Preview","SafariTechPreview","IE","Chrome","Chrome Canary","Chrome Headless", +"Chromium","Firefox","Opera","edge-launcher","chai-fs","karma-rollup","@types/global-agent","sauce","labs","karma-brief-reporter","rollup-sourcemap-path-transform","keyboardevent","keydown","keyup","metakey","keyname","@keyv/serialize","@keyv/compress-gzip","@keyv/sqlite","@keyv/test-suite","@keyv/mongo","@keyv/compress-brotli","@keyv/compress-lz4","@keyv/memcache","adapter","chai-subset-in-order","@tsconfig/recommended","toxiproxy-node-client","cockroachdb","querybuilder","formatly","oxc-resolver", +"codeclimate-types","dead code","entropy","maintenance","members","missing","namespace","unreferenced","unresolved","opera","samsung-internet","uc-browser","stream-counter","delegates","http-assert","@types/co-body","@koa/router","@types/koa__router","copy-to","bodyParser","humanize-number","passthrough-counter","koa-compress","koa-route","mounting","@ladjs/env","koa-send","sendfile","reds","node-redis-warlock","bossy","eslint-config-hapi", +"eslint-plugin-hapi","find-rc","will-call","lab-event-reporter","current","autodoc","deft","jasmine-async","race.js","string-table","happen","leafdoc","bundlemon","git-rev-sync","rollup-plugin-git-version","@mapbox/eslint-plugin-script-tags","gis","left","repeat","aproba","write-pkg","wide-align","p-waterfall","p-map-series","@lerna/create","read-cmd-shim","conventional-changelog-core","@octokit/plugin-enterprise-rest","bootstrap-less-port","html-template-tag","phin","read-glob","css nesting", +"gradients css","less compiler","variables in css","css less","less-plugin-glob","browser-level","classic-level","abstract-level","napi-macros","abstract-leveldown","du","mkfiletree","readfiletree","prebuildify-ci","prebuildify-cross","level-errors","level-supports","deferred-leveldown","level-iterator-stream","memdown","trickle","encoding-down","simple-concat","ld","levdist","levenshtein-component","talisman","distance","binary-extensions","just-safe-set","fund", +"gitfund","crlf","gmail-send","jest-codemods","libphonenumber-metadata-generator","renamer","libphonenumber","fined","flagged-respawn","hashtag","mention","consolemock","staged","@samverschueren/stream-to-observable","is-observable","listr-silent-renderer","listr-update-renderer","listr-verbose-renderer","@lit-labs/ssr-dom-shim","@lit/reactive-element","@lit-internal/scripts","@lit-labs/testing","@webcomponents/template","connect-logger","http-auth","matchdep","lws-basic-auth","lws-blacklist", +"lws-body-parser","lws-compress","lws-conditional-get","lws-cors","lws-json","lws-log","lws-mime","lws-range","lws-request-monitor","lws-rewrite","lws-spa","babel-preset-es2015-loose","browserify-derequire","grunt-es3-safe-recast","rollupify","indexeddb","localstorage","websql","openurl","lockfile-lint-api","lockfile check","lockfile lint","clonedeep","isempty","isfunction","isplainobject","isstring","pick","uniq","uni-global","sprintf-kit","ncjsm","tape-index","terminal.js","overwrite","date-format", +"streamroller","@log4js-node/sandboxed-module","grunt-contrib-jasmine","grunt-preprocess","int64","isemail","canonical-json","loopback-phase","loopback-filters","strong-globalize","loopback-connector-remote","nodemailer-stub-transport","nodemailer-direct-transport","loopback-boot","karma-es6-shim","loopback-context","strong-task-emitter","strong-error-handler","eslint-config-loopback","steno","express-async-handler","@typicode/eslint-config","localStorage","sessionStorage","mru","@lucide/build-icons", +"@lucide/shared","@lucide/rollup-plugins","Lucide","HTML","Feather","Icons","Icon","Feather Icons","Fontawesome","Font Awesome","decree","manipulate","blur","sharpen","hue","saturation","lightness","transparency","contain","cover","@75lb/deep-merge","ansi-escape-sequences","create-mixin","sleep-anywhere","expand-home-dir","hast-util-to-mdast","short-unique-id","@types/columnify","@types/json-diff","@types/make-fetch-happen","wizard","task graph","string manipulation","@favware/rollup-type-bundler", +"lavalink client","audio streaming","music bot","voice chat", +"discord integration","high performance","easy-to-use","feature-rich","seamless integration","community support","lavalink","path-type","intermediate","recursively","dingbat-to-unicode","lop","browserify-prepend-licenses","duck","hamjest","@nestjs/config","@nestjs/platform-express","@nestjs/throttler","uniqid","@nestjs/cli","@testcontainers/mysql","@types/dasherize","admin-panel","headless-cms","backend-framework","micro-backend","rapid-development","file-upload","api-generator","low-code","no-code","mvp", +"@tabler/icons-react","postcss-preset-mantine","mantine","context-menu","context menu","react server components","user experience","usability","mapbox-gl","mapbox","legend","text processing","linkify-it","mdurl","punycode.js","uc.micro","markdown-it-ins","markdown-it-mark","emojies","stream-from-to","pdf-text","bunup","markdown parser","solidjs","diacritics-map","lazy-cache","list-item","markdown-link","mixin-deep","glossary","remarkableplugin","table of contents", +"table-of-contents","toc","micromark-extension-directive","micromark-extension-gfm-autolink-literal","micromark-extension-gfm-footnote","micromark-extension-gfm-table","micromark-extension-math","gemoji","markdownlint-rule-extended-ascii","CommonMark","run-con","@markedjs/eslint-config","@markedjs/testutils","marked-highlight","marked-man","v8-argv","react-event-listener","simple-assign","complex.js","escape-latex","javascript-natural-sort","typed-function","eigen","expr-eval","jsep","ndarray-determinant", +"ndarray-gemm","ndarray-ops","ndarray-pack","numericjs","zeros","mathematics","algebra","complex","fraction","md5sum","micromark-util-decode-string","unist-util-stringify-position","micromark-build","trim-lines","mdn","jackpot","InnoDB memcached API","failover","membase","memcache","nMemcached","@jsonjoy.com/fs-core","@jsonjoy.com/fs-fsa","@jsonjoy.com/fs-node","@jsonjoy.com/fs-node-builtins","@jsonjoy.com/fs-node-to-fsa","@jsonjoy.com/fs-node-utils","@jsonjoy.com/fs-print","@jsonjoy.com/fs-snapshot", +"@jsonjoy.com/json-pack","@jsonjoy.com/util","glob-to-regex.js","thingies","tree-dump","isomorphic-git","tslint-config-common","fs.js","file system access", +"native file system","webfs","crudfs","opfs","casfs","content addressable storage","@types/lodash.isequal","mem","memoization","gulp-exit","ram","errno","camelcase-keys","decamelize-keys","delete_comments","minimist-options","trim-newlines","cat","kitten","from2","lodash.clonedeepwith","stat-mode","ware","@metalsmith/drafts","assert-dir-equal","7zip-bin","node-7z","node-downloader-helper","@surma/rollup-plugin-off-main-thread","asyncro","babel-plugin-transform-async-to-promises", +"babel-plugin-transform-replace-expressions","@babel/plugin-proposal-throw-expressions","directory-tree","eslint-config-developit","npm-merge-driver-install","micro library","micromark-factory-space","micromark-util-chunked","micromark-util-combine-extensions","micromark-util-resolve-all","micromark-util-subtokenize","bracket","character-class","extglobs","lookahead","lookaround","lookbehind","negate","negation","posix","star","mime-score","mimetypes","Min Heap","maxheap","min-heap","Binary Heap", +"binary-heap","heap data structure","min heap data structure","complete binary tree","heapify","heap sort", +"heapify up","heapify down","Priority Queue","priority queue","priority-queue","priority q","priorityQ","complete binary","extract min","min priority queue","efficient priority","ordering property","dynamic resizing","priority-based","priority-based processing","element priority","queue priority","decrease key","increase key","@putout/minify","css-b64-images","html-minifier-next","montag","readjson","try-catch","try-to-catch","escover","eslint-plugin-putout","madrun","supertape","signed","certificate", +"cert","@types/brace-expansion","frp","functional-reactive-programming","state management","data flow","browser-stdout","yargs-unparser","uslug","rewiremock","unexpected","@mocha/docdash","jsdoc-ts-utils","unexpected-map","unexpected-set","unexpected-sinon","remark-inline-links","unexpected-eventemitter","fail-on-errors-webpack-plugin","@11ty/eleventy-plugin-inclusive-language","chai-xml","xmllint","lcov","define-data-property","@types/es-value-fixtures","@types/for-each","@types/functions-have-names", +"@types/get-intrinsic","@types/gopd","@types/has-property-descriptors","@types/object-inspect","swap", +"unix-dgram","gulp-mocha-phantomjs","mockJSON","mockAjax","recursive-watch","fastest-validator","avsc","nats","etcd3","cbor-x","thrift","redlock","dd-trace","gc-stats","msgpack5","fakerator","kafka-node","@types/pino","notepack.io","benchmarkify","rhea-promise","@types/bunyan","jaeger-client","@types/ioredis","moleculer-repl","winston-context","event-loop-stats","node-nats-streaming","@icebob/node-memwatch","messagebus","olson","iana","zone","monaco-languageserver-types","monaco-marker-data-provider", +"monaco-types","monaco-worker-manager","vscode-languageserver-textdocument","@remcohaszing/eslint","yaml-language-server","monaco","monads","either","maybe","result","@codemirror/theme-one-dark","@json2csv/plainjs","@lezer/highlight","bootstrap-paginator-2","free-swig","gridfs-stream","mongodb-query-parser","renderjson-2","assets-webpack-plugin","express-openid-connect","administration","manage","manage-mongo","phpmyadmin","web-based","@mongodb-js/saslprep","mongodb-connection-string-url","snappy", "mocha-sinon", -"gcp-metadata","@types/kerberos","@types/saslprep","v8-heapsnapshot","@mongodb-js/zstd","@types/whatwg-url", -"@types/chai-subset","kareem","mpath","mquery","sift","@ark/attest","@mongodb-js/mongodb-downloader","acquit", -"acquit-ignore","acquit-require","lodash.isequalwith","probe","JMX","core-monitor","control panel", -"monk-middleware-cast-ids","monk-middleware-fields","monk-middleware-handle-callback","monk-middleware-options", -"monk-middleware-query","monk-middleware-wait-for-connection","gitbook-cli","gitbook-plugin-anker-enable", -"gitbook-plugin-custom-favicon","gitbook-plugin-edit-link","gitbook-plugin-github","gitbook-plugin-prism", -"monk-middleware-debug","commist","help-me","mqtt-packet","worker-timers","number-allocator","aedes-cli", -"leaked-handles","mqtt-connection","mqtt-level-store","esbuild-plugin-polyfill-node","publish/subscribe", -"@tediousjs/connection-string","msnodesql","tds","node-tds","node-sqlserver","msnodesqlv8","node-mssql", -"@types/statuses","headers-polyfill","rettime","until-async","@epic-web/test-server","@types/json-bigint", -"@types/serviceworker","page-with","append-field","fs-temp","testdata-w3c-json-form","formdata", -"array-union","release-it-pnpm","test report","html report","json to html","mezr","web-animations-js","bin-packing", -"sqlstring","urun","utest","sql-escaper","aws-ssl-profiles","generate-function","named-placeholders","poku", -"assert-diff","eslint-plugin-async-await","bats","switcher","fastest-stable-stringify","rtl-css-js","iconista", -"libreact","pico","lite","in-js","styled","jsxstyle","gitcloud","hasbin","page-icon","@types/hasbin","@types/page-icon", -"proxy-lib","font-finder","pbxproj-dom","@foxt/js-srp","simple-plist","ios-device-lib","ios-sim-portable", -"plist-merge-patch","@nativescript/hook","@nativescript/doctor","nativescript-dev-xcode","ios-mobileprovision-finder", -"@nstudio/trapezedev-project","@rigor789/resolve-package-path","@types/retry","@types/pacote","@types/tabtab", -"@types/tunnel","@types/qr-image","@types/universal-analytics","afinn-165","afinn-165-financialmarketnews","apparatus", -"memjs","stopwords-iso","wordnet-db","browserfs","gulp-jasmine-browser","uubench","natural language processing", -"artifical intelligence","Porter stemmer","Lancaster stemmer","bigram","trigram","quadgram","ngram","stemmer","bayes", -"classifier","phonetic","metaphone","inflector","Wordnet","tf-idf","logistic regression","doublemetaphone", -"jaro-winkler distance","levenshtein distance","string distance","part-of-speech tagger","Eric Brill","Brill tagger", -"maximum entropy modelling","secure-keys","nconf-yaml","key value store","plugabble","near social","bridge","near", -"binary-search-tree","exec-time","@fig/complete-commander","@golevelup/nestjs-discovery","@postman/tough-cookie", -"chardet","liquid-json","postman-collection","postman-collection-transformer","postman-request","postman-runtime", -"serialised-error","@postman/shipit","dockerfile_lint","parse-gitignore","rest-client","@apm-js-collab/tracing-hooks", -"@newrelic/security-agent","@tyriar/fibonacci-heap","module-details-from-path","@newrelic/eslint-config", -"@newrelic/newrelic-oss-cli","@newrelic/test-utilities","@slack/bolt","@smithy/eventstream-codec","@smithy/util-utf8", -"self-cert","@panva/hkdf","openid-client","@types/oauth","babel-plugin-jsx-pragmatic","babel-preset-preact","nextauth", -"async handler","async functions","provider","TestBed","how-to","@ant-design/icons-angular","localhost","tunneling", -"webhook","deep-defaults","function-source","minstache","sliced","mocha-generators","@nightwatch/chai", -"@nightwatch/html-reporter-template","@nightwatch/nightwatch-inspector","chai-nightwatch","didyoumean", -"nightwatch-axe-verbose","mochawesome-merge","mochawesome-report-generator","nightwatchjs","automated-testing", -"@sinonjs/text-encoding","proxyquire-universal","proxyquireify","propagate","n-api","napi","coffee-coverage", -"grunt-contrib-coffee","grunt-include-replace","check-version-modules","used-deps-analyzer","formate","dynamic-dedupe", -"filewatcher","subdir","char-regex","emojilib","skin-tone","sentences-per-line","emojis","smiley","smileys","smilies", -"ideogram","ideograms","fetch-blob","chai-iterator","stream-consumers","eslint-config-digitalbazaar","nodejs-websocket", -"asn","asn.1","cbc","csr","des","hmac","pkcs","pki","prng","rc2", -"rsa","sha384","tls","x.509","x509","c2dm","fcm","geocoder","geocoding","geo","mapquest","agol","arcgis","tomtom", -"exponential-backoff","high5","html-parser","html5parser","htmljs-parser","htmlparser-benchmark","mocha-each", -"neutron-html5parser","strong-data-uri","v8-debug","v8-profiler","http mock","growly","shellwords","nexe", -"notification center","mac os x 10.8","terminal-notifier","windows 8 notification","toaster","ps-list","pseudoterminal", -"forkpty","openpty","@node-red/editor-api","@node-red/runtime","@node-red/util","@node-red/nodes","node-red-admin", -"sass-graph","async-foreach","stdout-stream","true-case-path","unique-temp-dir","long-timeout","sorted-array-functions", -"recurrent","fs.watch","watchfile","ngn","event logging","elevate","sudo","@mgcrea/eslint-config-node", -"@tsconfig/node-lts","jQuery extend","inherit","combyne","clean-for-publish","libgit2", -"git2","@aws-sdk/client-sesv2","libbase64","libmime","libqp","nodemailer-ntlm-auth","proxy-test-server","Nodemailer", -"pstree.remy","undefsafe","autoload","multimeter","node-webkit","async-redis","express-ipfilter","json-logic-js", -"json-sql","line-reader","mocker-data-generator","node-ipc","promise-mysql","stjs","uuid-random","nolang","Programming", -"programming language","descriptive","5GL","json schema","Mehdi Salartayefeh","option parser","delimiter","file-path", -"forward","slashes","trailing","urix","normalisation","simplify","canonical","mouse wheel","exit-hook", -"github-url-from-git","is-scoped","issue-regex","listr-input","npm-name","p-memoize","map-obj","write-package","is-cidr", -"libnpmorg","libnpmpack","libnpmteam","npm-profile","libnpmsearch","@sigstore/tuf","libnpmversion","npm-audit-report", -"minipass-pipeline","npm-user-validate","tiny-relative-date","@npmcli/docs","@tufjs/repo-mock", -"@npmcli/mock-globals","ajv-formats-draft2019","giturl","semver-diff","preferred-pm","callsite-record","outdated", -"updates","updating","@trivago/prettier-plugin-sort-imports","@types/chai-string","@types/cli-table","@types/jsonlines", -"@types/npm-registry-fetch","@types/parse-github-url","@types/semver-utils","eslint-config-raine","fp-and-or", -"prompts-ncu","semver-utils","verdaccio","vite-node","upgrade","eslint-config-tc","eslint-config-typescript-tc", -"npm-package-json-lint-config-tc","auditor","minipass-fetch","string.prototype.padend","eslint-config-mysticatea", -"commandline","npm-scripts","read-package-json-fast","string convert","yarn to npm","npm upgrade","npm-cli", -"are-we-there-yet","mocha-jsdom","cvss","nodesecurity-npm-utils","gluegun","nuke","money","percentage", -"a-sync-waterfall","mocha-phantomjs-core","mocha-phantomjs-istanbul","css4","lines-and-columns","caching-transform", -"istanbul-lib-hook","istanbul-lib-processinfo","node-preload","process-on-spawn","spawn-wrap","any-path", -"remove-undefined-objects","@types/json-schema-merge-allof","@types/memoizee","@readme/postman-to-openapi", -"@types/swagger2openapi","prollyfill","@pkgjs/support", -"error-cause","has-tostringtag","indexof","@mariocasciaro/benchpress","bean","segment","Underscore","Object.entries", -"ee-first","@blakeembrey/deque","@blakeembrey/template","epoll","@types/mock-require","gpio","interrupt","raspberry", -"raspi","pi","beaglebone","beaglebone-black","default-browser","is-in-ssh","wsl-utils","bath-es5", -"dereference-json-schema","axios-mock-adapter","json-schema-deref-sync","open api","computer","quadrocopter", -"countrynames","last-call-webpack-plugin","prelude-ls","deep-is","levn","option parsing","stdin-discarder", -"transform-tty","sequencify","stream-consume","sql-ddl-sync","sql-query","redshift","ps1","template string", -"template literal","styleable","scrollbars","@vscode/vsce","@types/is-ci","limiter","addlistener","addeventlistener", -"waits","resolved","race","fulfilled","invalidate","out","plunder","@pa11y/html_codesniffer","eslint-config-pa11y", -"htmlcs","standards", -"WCAG","sigstore","npm-registry-mock","capture-website","filenamify-url","unused-filename","@types/png.js","png.js", -"striptags","react-native-crypto-js","@saithodev/semantic-release-backmerge","@types/facebook-js-sdk", -"jasmine-spec-reporter","jsdoc-babel","parse-server","vite-plugin-commonjs","WHATWG","html parser","html5 parser", -"html serializer","htmlserializer","fast-url-parser","pause","chai-connect-middleware","username","passport-oauth1", -"base64url","isabsolute","is-absolute","@rkusa/linebreak","opentype.js","jpeg-exif","linebreak","blob-stream","brace", -"pdf writer","pdf generator","call-delayed","chai-increasing","pg-pool","pg-protocol","pg-types","pgpass", -"pg-cloudflare","@cloudflare/vitest-pool-workers","@cloudflare/workers-types","pg-copy-streams","libpq", -"connect-phonegap","phonegap-build","phonegap build","phonegap/build","pinkie-promise","denodify","atomic-sleep", -"on-exit-leak-free","pino-abstract-transport","pino-std-serializers","quick-format-unescaped","real-require", -"@pinojs/redact","thread-stream","@types/flush-write-stream","bole", -"flush-write-stream","midnight-smoker","steed","postinstall","lifecycle","devpostinstall","entry","irregular-plurals", -"irregular","noun","nouns","@pm2/agent","@pm2/js-api","@pm2/io","@pm2/pm2-version-check","@pm2/blessed","cli-tableau", -"fclone","pm2-axon","pm2-axon-rpc","pm2-deploy","pm2-multimeter","vizion","kraken","load balancer","lb","load-balancer", -"k8s","pm2-docker","node-pm2","production","node.js monitoring","supervisord","pm2.io","ghost production", -"process manager","probes","keep process alive","process configuration","clustering","cluster cli","dev ops","PNG", -"js-png","node-png","png-parse","pnpm10","prune","rapid","symlinks","poe","economy","ninja","poe.ninja","poe economy", -"path of exile","path of exile economy","path of exile ninja","poe economy api","path of exile api","poe.watch api", -"poe.ninja api","babel-plugin-preval","pushstate-server", -"tsgen","glamor","inline-styles","color manipulate","color manipulation","curried color manipulation","@popperjs/bundle", -"@popperjs/eslint-config-popper","@popperjs/test","@popperjs/test-utils","nuget-publish","position","attached", -"source map","jison-gho","calculation","hsla","rgba","pixrem","postcss-apply","postcss-color-function", -"postcss-color-gray","postcss-color-hsl","postcss-color-hwb","postcss-color-rgb","postcss-color-rgba-fallback", -"postcss-font-family-system-ui","postcss-image-set-polyfill","postcss-initial","postcss-media-minmax", -"postcss-pseudoelements","postcss-selector-matches","cssrecipes-custom-media-queries","cssrecipes-defaults", -"cssrecipes-grid","cssrecipes-utils","cssrecipes-vertical-rhythm","eslint-config-i-am-meticulous","isogram", -"markdown-it-toc-and-anchor","metalsmith-collections","metalsmith-filenames","metalsmith-md","metalsmith-react", -"metalsmith-rename","metalsmith-rss","metalsmith-url","metalsmith-watch","nano-logger","npmpub", -"postcss-browser-reporter","react-svg-inline","to-slug-case","webpack-nano-logs","empty","at-rules","@keyframes", -"@counter-style","flexbugs","postcss-styl","quickapp","PHP","sss","image-set", -"node modules","postcssrc","postcss.config.js","midas","postcss-short","postcss-dark-theme-class","font-family", -"font-weight","css-modules","atrules","children","nestings","@csstools/normalize.css","postcss-browser-comments", -"sanitize.css","@csstools/postcss-tape","normalizes","fixes","@csstools/postcss-alpha-function", -"@csstools/postcss-color-function","@csstools/postcss-color-function-display-p3-linear", -"@csstools/postcss-color-mix-function","@csstools/postcss-color-mix-variadic-function-arguments", -"@csstools/postcss-content-alt-text","@csstools/postcss-contrast-color-function", -"@csstools/postcss-exponential-functions","@csstools/postcss-font-format-keywords","@csstools/postcss-gamut-mapping", -"@csstools/postcss-gradients-interpolation-method","@csstools/postcss-hwb-function","@csstools/postcss-ic-unit", -"@csstools/postcss-initial","@csstools/postcss-light-dark-function","@csstools/postcss-logical-float-and-clear", -"@csstools/postcss-logical-overflow","@csstools/postcss-logical-overscroll-behavior","@csstools/postcss-logical-resize", -"@csstools/postcss-logical-viewport-units","@csstools/postcss-media-minmax", -"@csstools/postcss-media-queries-aspect-ratio-number-values","@csstools/postcss-mixins","@csstools/postcss-nested-calc", -"@csstools/postcss-normalize-display-values","@csstools/postcss-position-area-property", -"@csstools/postcss-property-rule-prelude-list","@csstools/postcss-random-function", -"@csstools/postcss-relative-color-syntax","@csstools/postcss-scope-pseudo-class","@csstools/postcss-sign-functions", -"@csstools/postcss-stepped-value-functions","@csstools/postcss-syntax-descriptor-syntax-production", -"@csstools/postcss-system-ui-font-family","@csstools/postcss-text-decoration-shorthand", -"@csstools/postcss-trigonometric-functions","@csstools/postcss-unset-value","css-blank-pseudo","css-has-pseudo", -"css-prefers-color-scheme","postcss-clamp","postcss-dir-pseudo-class","postcss-double-position-gradients", -"postcss-focus-within","postcss-gap-properties","postcss-lab-function", -"postcss-logical","postcss-overflow-shorthand","postcss-page-break","postcss-place","lists","@jsopen/objects", -"doublylinked","lightning-pool","postgres-bytea","power-tasks","putil-promisify","putil-varhelpers","ltgt","vuvuzela", -"spark-md5","level-codec","fetch-cookie","double-ended-queue","level-write-stream","empower","power-assert-formatter", -"universal-deep-strict-equal","dereserve","licensify","package-json-filterify","@actions/github","@actions/glob", -"babel-plugin-transform-rename-properties","errorstacks","kolorist","dom diff","binary-searching", -"jest-specific-snapshot","@vue/language-plugin-pug","prettier-plugin","imports","organize-imports","glob-fs","si", -"localized","renderkid","jitter","parse-ms","milliseconds","period","hrtime","mercurial","hg","@prisma/config", -"@prisma/engines","@prisma/studio-core","package-up","ts-pattern","@prisma/dmmf","line-replace","@prisma/debug", -"@libsql/client","@prisma/client","@prisma/migrate","@prisma/generator","@prisma/internals","checkpoint-client", +"gcp-metadata","@types/kerberos","@types/saslprep","v8-heapsnapshot","@mongodb-js/zstd","@types/whatwg-url","@types/chai-subset","kareem","mpath","mquery","sift","@ark/attest","@mongodb-js/mongodb-downloader","acquit","acquit-ignore","acquit-require","lodash.isequalwith","probe","JMX","core-monitor","control panel","monk-middleware-cast-ids","monk-middleware-fields","monk-middleware-handle-callback","monk-middleware-options","monk-middleware-query","monk-middleware-wait-for-connection","gitbook-cli", +"gitbook-plugin-anker-enable","gitbook-plugin-custom-favicon","gitbook-plugin-edit-link","gitbook-plugin-github","gitbook-plugin-prism","monk-middleware-debug","commist","help-me","mqtt-packet","worker-timers","number-allocator","aedes-cli","leaked-handles","mqtt-connection","mqtt-level-store","esbuild-plugin-polyfill-node","publish/subscribe","@tediousjs/connection-string","msnodesql","tds","node-tds","node-sqlserver","msnodesqlv8","node-mssql","@types/statuses","headers-polyfill","rettime","until-async", +"@epic-web/test-server","@types/json-bigint","@types/serviceworker","page-with","append-field","fs-temp","testdata-w3c-json-form","formdata", +"array-union","release-it-pnpm","test report","html report","json to html","mezr","web-animations-js","bin-packing","sqlstring","urun","utest","sql-escaper","aws-ssl-profiles","generate-function","named-placeholders","poku","assert-diff","eslint-plugin-async-await","bats","switcher","fastest-stable-stringify","rtl-css-js","iconista","libreact","pico","lite","in-js","styled","jsxstyle","gitcloud","hasbin","page-icon","@types/hasbin","@types/page-icon","proxy-lib","font-finder","pbxproj-dom","@foxt/js-srp", +"simple-plist","ios-device-lib","ios-sim-portable","plist-merge-patch","@nativescript/hook","@nativescript/doctor","nativescript-dev-xcode","ios-mobileprovision-finder","@nstudio/trapezedev-project","@rigor789/resolve-package-path","@types/retry","@types/pacote","@types/tabtab","@types/tunnel","@types/qr-image","@types/universal-analytics","afinn-165","afinn-165-financialmarketnews","apparatus","memjs","stopwords-iso","wordnet-db","browserfs","gulp-jasmine-browser","uubench","natural language processing", +"artifical intelligence","Porter stemmer","Lancaster stemmer","bigram","trigram","quadgram","ngram","stemmer","bayes","classifier","phonetic","metaphone","inflector","Wordnet","tf-idf","logistic regression","doublemetaphone","jaro-winkler distance","levenshtein distance","string distance","part-of-speech tagger","Eric Brill","Brill tagger","maximum entropy modelling","secure-keys","nconf-yaml","key value store","plugabble","near social","bridge","near","binary-search-tree","exec-time", +"@fig/complete-commander","@golevelup/nestjs-discovery","@postman/tough-cookie","chardet","liquid-json","postman-collection","postman-collection-transformer","postman-request","postman-runtime","serialised-error","@postman/shipit","dockerfile_lint","parse-gitignore","rest-client","@apm-js-collab/tracing-hooks","@newrelic/security-agent","@tyriar/fibonacci-heap","module-details-from-path","@newrelic/eslint-config","@newrelic/newrelic-oss-cli","@newrelic/test-utilities","@slack/bolt", +"@smithy/eventstream-codec","@smithy/util-utf8","self-cert","@panva/hkdf","openid-client","@types/oauth","babel-plugin-jsx-pragmatic","babel-preset-preact","nextauth", +"async handler","async functions","provider","TestBed","how-to","@ant-design/icons-angular","localhost","tunneling","webhook","deep-defaults","function-source","minstache","sliced","mocha-generators","@nightwatch/chai","@nightwatch/html-reporter-template","@nightwatch/nightwatch-inspector","chai-nightwatch","didyoumean","nightwatch-axe-verbose","mochawesome-merge","mochawesome-report-generator","nightwatchjs","automated-testing","@sinonjs/text-encoding","proxyquire-universal","proxyquireify","propagate", +"n-api","napi","coffee-coverage","grunt-contrib-coffee","grunt-include-replace","check-version-modules","used-deps-analyzer","formate","dynamic-dedupe","filewatcher","subdir","char-regex","emojilib","skin-tone","sentences-per-line","emojis","smiley","smileys","smilies","ideogram","ideograms","fetch-blob","chai-iterator","stream-consumers","eslint-config-digitalbazaar","nodejs-websocket","asn","asn.1","cbc","csr","des","hmac","pkcs","pki","prng","rc2", +"rsa","sha384","tls","x.509","x509","c2dm","fcm","geocoder","geocoding","geo","mapquest","agol","arcgis","tomtom","exponential-backoff","high5","html-parser","html5parser","htmljs-parser","htmlparser-benchmark","mocha-each","neutron-html5parser","strong-data-uri","v8-debug","v8-profiler","http mock","growly","shellwords","nexe","notification center","mac os x 10.8","terminal-notifier","windows 8 notification","toaster","ps-list","pseudoterminal","forkpty","openpty","@node-red/editor-api","@node-red/runtime", +"@node-red/util","@node-red/nodes","node-red-admin","sass-graph","async-foreach","stdout-stream","true-case-path","unique-temp-dir","long-timeout","sorted-array-functions","recurrent","fs.watch","watchfile","ngn","event logging","elevate","sudo","@mgcrea/eslint-config-node","@tsconfig/node-lts","jQuery extend","inherit","combyne","clean-for-publish","libgit2", +"git2","@aws-sdk/client-sesv2","libbase64","libmime","libqp","nodemailer-ntlm-auth","proxy-test-server","Nodemailer","pstree.remy","undefsafe","autoload","multimeter","node-webkit","async-redis","express-ipfilter","json-logic-js","json-sql","line-reader","mocker-data-generator","node-ipc","promise-mysql","stjs","uuid-random","nolang","Programming","programming language","descriptive","5GL","json schema","Mehdi Salartayefeh","option parser","delimiter","file-path","forward","slashes","trailing","urix", +"normalisation","simplify","canonical","mouse wheel","exit-hook","github-url-from-git","is-scoped","issue-regex","listr-input","npm-name","p-memoize","map-obj","write-package","is-cidr","libnpmorg","libnpmpack","libnpmteam","npm-profile","libnpmsearch","@sigstore/tuf","libnpmversion","npm-audit-report","minipass-pipeline","npm-user-validate","tiny-relative-date","@npmcli/docs","@tufjs/repo-mock", +"@npmcli/mock-globals","ajv-formats-draft2019","giturl","semver-diff","preferred-pm","callsite-record","outdated","updates","updating","@trivago/prettier-plugin-sort-imports","@types/chai-string","@types/cli-table","@types/jsonlines","@types/npm-registry-fetch","@types/parse-github-url","@types/semver-utils","eslint-config-raine","fp-and-or","prompts-ncu","semver-utils","verdaccio","vite-node","upgrade","eslint-config-tc","eslint-config-typescript-tc","npm-package-json-lint-config-tc","auditor", +"minipass-fetch","string.prototype.padend","eslint-config-mysticatea","commandline","npm-scripts","read-package-json-fast","string convert","yarn to npm","npm upgrade","npm-cli","are-we-there-yet","mocha-jsdom","cvss","nodesecurity-npm-utils","gluegun","nuke","money","percentage","a-sync-waterfall","mocha-phantomjs-core","mocha-phantomjs-istanbul","css4","lines-and-columns","caching-transform","istanbul-lib-hook","istanbul-lib-processinfo","node-preload","process-on-spawn","spawn-wrap","any-path", +"remove-undefined-objects","@types/json-schema-merge-allof","@types/memoizee","@readme/postman-to-openapi","@types/swagger2openapi","prollyfill","@pkgjs/support", +"error-cause","has-tostringtag","indexof","@mariocasciaro/benchpress","bean","segment","Underscore","Object.entries","ee-first","@blakeembrey/deque","@blakeembrey/template","epoll","@types/mock-require","gpio","interrupt","raspberry","raspi","pi","beaglebone","beaglebone-black","default-browser","is-in-ssh","wsl-utils","bath-es5","dereference-json-schema","axios-mock-adapter","json-schema-deref-sync","open api","computer","quadrocopter","countrynames","last-call-webpack-plugin","prelude-ls","deep-is","levn", +"option parsing","stdin-discarder","transform-tty","sequencify","stream-consume","sql-ddl-sync","sql-query","redshift","ps1","template string","template literal","styleable","scrollbars","@vscode/vsce","@types/is-ci","limiter","addlistener","addeventlistener","waits","resolved","race","fulfilled","invalidate","out","plunder","@pa11y/html_codesniffer","eslint-config-pa11y","htmlcs","standards", +"WCAG","sigstore","npm-registry-mock","capture-website","filenamify-url","unused-filename","@types/png.js","png.js","striptags","react-native-crypto-js","@saithodev/semantic-release-backmerge","@types/facebook-js-sdk","jasmine-spec-reporter","jsdoc-babel","parse-server","vite-plugin-commonjs","WHATWG","html parser","html5 parser","html serializer","htmlserializer","fast-url-parser","pause","chai-connect-middleware","username","passport-oauth1","base64url","isabsolute","is-absolute","@rkusa/linebreak", +"opentype.js","jpeg-exif","linebreak","blob-stream","brace","pdf writer","pdf generator","call-delayed","chai-increasing","pg-pool","pg-protocol","pg-types","pgpass","pg-cloudflare","@cloudflare/vitest-pool-workers","@cloudflare/workers-types","pg-copy-streams","libpq","connect-phonegap","phonegap-build","phonegap build","phonegap/build","pinkie-promise","denodify","atomic-sleep","on-exit-leak-free","pino-abstract-transport","pino-std-serializers","quick-format-unescaped","real-require","@pinojs/redact", +"thread-stream","@types/flush-write-stream","bole", +"flush-write-stream","midnight-smoker","steed","postinstall","lifecycle","devpostinstall","entry","irregular-plurals","irregular","noun","nouns","@pm2/agent","@pm2/js-api","@pm2/io","@pm2/pm2-version-check","@pm2/blessed","cli-tableau","fclone","pm2-axon","pm2-axon-rpc","pm2-deploy","pm2-multimeter","vizion","kraken","load balancer","lb","load-balancer","k8s","pm2-docker","node-pm2","production","node.js monitoring","supervisord","pm2.io","ghost production","process manager","probes","keep process alive", +"process configuration","clustering","cluster cli","dev ops","PNG","js-png","node-png","png-parse","pnpm10","prune","rapid","symlinks","poe","economy","ninja","poe.ninja","poe economy","path of exile","path of exile economy","path of exile ninja","poe economy api","path of exile api","poe.watch api","poe.ninja api","babel-plugin-preval","pushstate-server", +"tsgen","glamor","inline-styles","color manipulate","color manipulation","curried color manipulation","@popperjs/bundle","@popperjs/eslint-config-popper","@popperjs/test","@popperjs/test-utils","nuget-publish","position","attached","source map","jison-gho","calculation","hsla","rgba","pixrem","postcss-apply","postcss-color-function","postcss-color-gray","postcss-color-hsl","postcss-color-hwb","postcss-color-rgb","postcss-color-rgba-fallback","postcss-font-family-system-ui","postcss-image-set-polyfill", +"postcss-initial","postcss-media-minmax","postcss-pseudoelements","postcss-selector-matches","cssrecipes-custom-media-queries","cssrecipes-defaults","cssrecipes-grid","cssrecipes-utils","cssrecipes-vertical-rhythm","eslint-config-i-am-meticulous","isogram","markdown-it-toc-and-anchor","metalsmith-collections","metalsmith-filenames","metalsmith-md","metalsmith-react","metalsmith-rename","metalsmith-rss","metalsmith-url","metalsmith-watch","nano-logger","npmpub","postcss-browser-reporter","react-svg-inline", +"to-slug-case","webpack-nano-logs","empty","at-rules","@keyframes","@counter-style","flexbugs","postcss-styl","quickapp","PHP","sss","image-set", +"node modules","postcssrc","postcss.config.js","midas","postcss-short","postcss-dark-theme-class","font-family","font-weight","css-modules","atrules","children","nestings","@csstools/normalize.css","postcss-browser-comments","sanitize.css","@csstools/postcss-tape","normalizes","fixes","@csstools/postcss-alpha-function","@csstools/postcss-color-function","@csstools/postcss-color-function-display-p3-linear","@csstools/postcss-color-mix-function","@csstools/postcss-color-mix-variadic-function-arguments", +"@csstools/postcss-content-alt-text","@csstools/postcss-contrast-color-function","@csstools/postcss-exponential-functions","@csstools/postcss-font-format-keywords","@csstools/postcss-gamut-mapping","@csstools/postcss-gradients-interpolation-method","@csstools/postcss-hwb-function","@csstools/postcss-ic-unit","@csstools/postcss-initial","@csstools/postcss-light-dark-function","@csstools/postcss-logical-float-and-clear","@csstools/postcss-logical-overflow","@csstools/postcss-logical-overscroll-behavior", +"@csstools/postcss-logical-resize","@csstools/postcss-logical-viewport-units","@csstools/postcss-media-minmax","@csstools/postcss-media-queries-aspect-ratio-number-values","@csstools/postcss-mixins","@csstools/postcss-nested-calc","@csstools/postcss-normalize-display-values","@csstools/postcss-position-area-property","@csstools/postcss-property-rule-prelude-list","@csstools/postcss-random-function","@csstools/postcss-relative-color-syntax","@csstools/postcss-scope-pseudo-class", +"@csstools/postcss-sign-functions","@csstools/postcss-stepped-value-functions","@csstools/postcss-syntax-descriptor-syntax-production","@csstools/postcss-system-ui-font-family","@csstools/postcss-text-decoration-shorthand","@csstools/postcss-trigonometric-functions","@csstools/postcss-unset-value","css-blank-pseudo","css-has-pseudo","css-prefers-color-scheme","postcss-clamp","postcss-dir-pseudo-class","postcss-double-position-gradients","postcss-focus-within","postcss-gap-properties","postcss-lab-function", +"postcss-logical","postcss-overflow-shorthand","postcss-page-break","postcss-place","lists","@jsopen/objects","doublylinked","lightning-pool","postgres-bytea","power-tasks","putil-promisify","putil-varhelpers","ltgt","vuvuzela","spark-md5","level-codec","fetch-cookie","double-ended-queue","level-write-stream","empower","power-assert-formatter","universal-deep-strict-equal","dereserve","licensify","package-json-filterify","@actions/github","@actions/glob","babel-plugin-transform-rename-properties", +"errorstacks","kolorist","dom diff","binary-searching","jest-specific-snapshot","@vue/language-plugin-pug","prettier-plugin","imports","organize-imports","glob-fs","si","localized","renderkid","jitter","parse-ms","milliseconds","period","hrtime","mercurial","hg","@prisma/config","@prisma/engines","@prisma/studio-core","package-up","ts-pattern","@prisma/dmmf","line-replace","@prisma/debug","@libsql/client","@prisma/client","@prisma/migrate","@prisma/generator","@prisma/internals","checkpoint-client", "@prisma/fetch-engine","@prisma/adapter-libsql", -"@prisma/credentials-store","@prisma/management-api-sdk","@prisma/driver-adapter-utils", -"@prisma/client-generator-registry","@opentelemetry/context-async-hooks","ORM","Prisma","Prisma CLI","prisma2","JS","TS", -"SQL","Postgres","CockroachDB","MSSQL","SQL Server","SQLServer","MongoDB","MCP","docdash","gulp-terser","regexpp", -"webfont","prism","node-rest-client","URIjs","svn","customize","sisteransi","interact","html-event-attributes", -"svg-element-attributes","svg-event-attributes","@protobufjs/aspromise","@protobufjs/base64","@protobufjs/codegen", -"@protobufjs/eventemitter","@protobufjs/fetch","@protobufjs/float","@protobufjs/inquire","@protobufjs/path", -"@protobufjs/pool","@protobufjs/utf8","browserify-wrap","protobuf","@types/jasminewd2","natives","basic-auth-parser", -"@types/args","squid","privoxy","mod_proxy","via","x-forwarded-for","fill-keys","module-not-found-error", -"native-hello-world","cp-sugar","elegant-status","pug-load","pug-lexer","pug-linker","pug-parser","pug-filters", -"pug-runtime","pug-code-gen","pug-strip-comments","jstransformer-uglify-js","jstransformer-markdown-it","tap-bail","idn", -"idna","dns","domain","chromium-bidi","typed-query-selector","purge","fluent","qr code","@browserify/envify", -"@browserify/uglifyify","common-shakeify","has-override-mistake","unassertify","decode-uri-component","split-on-first", -"param","parameter","searchparams","retape","tap-esm","FIFO","lifo","LIFO","work","queue js","job queue", -"job scheduling","task queue","ordered","iterate","linked list","dequeue","shift","parchment","quill-delta", -"@types/highlight.js","transpile-webpack-plugin","eslint-plugin-json-es","@qunitjs/browserstack-runner", -"dom-element-descriptors","@types/qunit","@release-it-plugins/lerna-changelog","qunit-plugin","exists-stat", -"js-reporters","testling","requestAnimationFrame","babel-plugin-import-export-rename","envvar","sanctuary", -"sanctuary-identity","point-free","sample","timed-out","sentry","unpipe","father-build", -"react-slider","react-tooltip","@types/responselike","react-addon","@apollo/react-common","@apollo/react-components", -"@apollo/react-hoc","@apollo/react-hooks","@apollo/react-ssr","@restart/ui","@restart/hooks","uncontrollable", -"prop-types-extra","ecosystem-react","@icons/material","material-colors","reactcss","@case/eslint-config", -"@storybook/addon-centered","jsx-loader","react-context","react-mark","testdom","sketch","photoshop", -"html-webpack-tags-plugin","copy to clipboard","@react-docgen/cli","date-fns-tz","is-root","detect-port-alt", -"@react-dnd/invariant","@react-dnd/shallowequal","documentation-generation","attr-accept","file-selector", -"@babel/plugin-proposal-logical-assignment-operators","@commitlint/prompt","@size-limit/webpack-why","imagemin-cli", -"webpack-blocks","jest-fetch-mock","settle-promise","overlay","redbox","crash","react-side-effect","eslint-config-nfl", -"karma-chai-sinon","karma-html-reporter","nfl","head","meta","noscript","jest-fixed-jsdom","enzyme-adapter-react-15", -"react-mount","@babel/plugin-proposal-async-generator-functions","intersection","lazy load","inview","useInView", -"useIntersectionObserver","@formatjs/ecma402-abstract", -"@formatjs/icu-messageformat-parser","@formatjs/intl","intl-messageformat","eslint-config-es5","rehype-starry-night", -"exenv","babel-browser-transform","inject-loader","karma-jasmine-diff-reporter","lodash.range","transitiongroup","tween", -"motion","hermes-compiler","@react-native/virtualized-lists","app-framework","mobile-development", -"@react-native-community/cli","@react-native/typescript-config","keychain","svg2ttf","fontisto","evil-icons", -"feather-icons","oslllo-svg-fixer","svgicons2svgfont","simple-line-icons","@entypo-icons/core","css-social-buttons", -"@cmfcmf/docusaurus-search-local","react-transform-hmr","currency","number-format","require-hijack","onclick","outside", -"onclickoutside","@rollup/plugin-sucrase","eslint-plugin-ft-flow","hermes-eslint","matchmediaquery", -"@types/hyphenate-style-name","@types/match-media-mock","@types/matchmediaquery","match-media-mock","media queries", -"respond","matchMedia","redux-devtools","redux-devtools-dock-monitor","redux-devtools-log-monitor","json2mq", -"foundation-apps","slick-carousel","why-did-you-update","Image slider","orbit","@tippyjs/react", -"@vxna/mini-html-webpack-template","clipboard-copy","common-dir","es6-object-assign","function.name-polyfill","glogg", -"javascript-stringify","jss","jss-plugin-camel-case","jss-plugin-compose","jss-plugin-default-unit","jss-plugin-global", -"jss-plugin-isolate","jss-plugin-nested","mini-html-webpack-plugin","q-i","qss","react-docgen-annotation-resolver", -"react-docgen-displayname-handler","react-group","strip-html-comments","type-detect","@types/buble", -"@types/copy-webpack-plugin","@types/escodegen","@types/keymirror","@types/markdown-to-jsx", -"@types/terser-webpack-plugin","@types/type-detect","@types/webpack-dev-server","deabsdeep","deepfreeze","dog-names", -"eslint-config-tamia","keymirror","strip-shebang","scalable vector graphics","svginjector","TapEventPlugin","300ms", -"react-testing","@4tw/cypress-drag-drop","vite-plugin-istanbul","alert","commoner","jstransform","coverify","es3ify", -"grunt-jest","jasmine-tapreporter","populist","transition-group","transitions","react-codemirror","eslint-config-react", -"eslint-plugin-relay","@babel/preset-stage-2","@babel/plugin-transform-flow-comments","fixed","es6-module-jstransform", -"customize-cra","holderjs","react-prism","esbuild-plugin-alias","tap-mocha-reporter","line by line","@types/esprima", -"flow-parser","refactoring","pretty-printing", -"prepare","change-emitter","higher-order","microcomponentization","lister","@redis/bloom","@redis/client","@redis/json", -"@redis/search","@redis/time-series","@redocly/openapi-core","docusaurus-theme-redoc","docusaurus-plugin-redoc", -"@docusaurus/theme-common","api-doc","docusaurus-preset","predictable","elm","just-curry-it","reduce-reducers", -"@vitest/coverage-c8","eslint-config-unicorn-camelcase","actions","insert-line","redux-immutable", -"lodash-webpack-plugin","@redux-saga/core","saga","effects","side effects","redux-middleware","ecmarkup","gulp-emu", -"gulp-live-server","gulp-sequence","reflect","regenerator","is-absolute-url","external", -"hast-util-properties-to-mdx-jsx-attributes","@nodeutils/defaults-deep","@phun-ky/typeof","issue-parser", -"wildcard-match","@octokit/request-error","mentoss","mock-stdio","remark-preset-webpro","distribution","intern", -"markdown-extensions","unified-args","footnote","remark-slug","mermaidjs","remark-contributors","remark-heading-gap", -"remark-license","remark-lint-no-heading-punctuation","retext-preset-github","remark-lint-correct-media-syntax", -"remark-lint-definition-sort","remark-lint-link-title-style","remark-lint-maximum-heading-length", -"remark-lint-maximum-line-length","remark-lint-mdx-jsx-attribute-sort","remark-lint-mdx-jsx-no-void-children", -"remark-lint-mdx-jsx-quote-style","remark-lint-mdx-jsx-self-close","remark-lint-mdx-jsx-shorthand-attribute", -"remark-lint-mdx-jsx-unique-attribute-name","remark-lint-media-style","remark-lint-no-duplicate-defined-urls", -"remark-lint-no-duplicate-headings-in-section","remark-lint-no-empty-url","remark-lint-no-heading-like-paragraph", -"remark-lint-no-hidden-table-cell","remark-lint-no-html","remark-lint-no-paragraph-content-indent", -"remark-lint-no-reference-like-url","remark-lint-no-unneeded-full-reference-image", -"remark-lint-no-unneeded-full-reference-link","retext-preset-wooorm","wooorm","autolinker","caseless","aws-sign2", -"oauth-sign","tunnel-agent","forever-agent","har-validator","is-typedarray","taper","index.js", -"@typescript/analyze-trace","eslint-plugin-typescript","micro-memoize","path-parse","supports-preserve-symlinks-flag", -"adjust-sourcemap-loader","myrmidon","conventional-changelog-eslint","eslint-config-incredible","eslint-plugin-censor", -"eslint-plugin-no-secrets","eslint-plugin-scanjs-rules","fatum","node-package-tester","semantic-release-telegram", -"vesta","documentate","autodocumentate","ewma","restify-errors","escape-regexp-component","watershed","restify-clients", -"autocannon-compare","DTrace","quit","sigint","terminate","NoSQL","reql","query language","leak","fastest-json-copy", -"nano-copy", -"plain-object-clone","deep-clone","deepcopy","fastclone","fastcopy","fast-deep-copy","package-json-from-dist", -"run-script-os","targetpractice","Automation","pixel","recognition","autohotkey","learning","@mermaid-js/mermaid-cli", -"@shikijs/vitepress-twoslash","@vue/language-server","acorn-import-assertions","flru","npm-audit-resolver","wasm-pack", -"js-cleanup","rollup-plugin-jsx","removal","@types/d3-drag","@types","commenting","package-name-regex", -"spdx-expression-validate","spdx-satisfies","gulp-conventional-changelog","rollup-plugin-strip-banner","browserify-fs", -"sourceMappingURL","@types/find-cache-dir","@types/graphlib","rollup-plugin-re","@types/d3-array","@types/d3-color", -"@types/d3-force","@types/d3-hierarchy","@types/d3-scale","visualizer","sunburst","diagram", -"@ampproject/toolbox-optimizer","@types/amphtml-validator","amphtml-validator","ember-cli-progress","rtl","ltr", -"run series","LINQ","FRP","Reactive","@angular-devkit/build-optimizer","check-side-effects","rollup-plugin-alias", -"rollup-plugin-inject","tslint-etc","tslint-no-toplevel-property-access","tslint-no-unused-expression-chai", -"web-streams-polyfill","ReactiveX", -"ReactiveExtensions","Observables","buffer allocate","node security","uninitialized","mock-env","dist-tag","prepublish", -"@sailshq/router","captains-log","common-js-file-extensions","@sailshq/csurf","i18n-2","include-all","machine-as-action", -"machinepack-process","machinepack-redis","merge-defaults","merge-dictionaries","sails-generate","sails-stringfile", -"skipper","sort-route-addresses","whelk","machinepack-fs","@sailshq/request","root-require","sails-hook-orm", -"sails-hook-sockets","sails.io.js","session-file-store","web-framework","sailsjs","truncate-utf8-bytes","mktemp", -"filename","eslint-config-apostrophe","material-components-web","node-sass-glob-importer","markdown-model","bare-script", -"element-model","food","drink","ec","ecdh","ecdsa","seed","@bazel/runfiles","@semantic-release/error","aggregate-error", -"env-ci","find-versions","git-log-parser","import-from-esm","p-each-series","file-url","mockserver-client", -"stream-buffers","author","@fluentui/react-component-event-listener","@fluentui/react-component-ref", -"@semantic-ui-react/event-stack","keyboard-key", -"@artsy/fresnel","@babel/standalone","@percy/cli","@percy/cypress","anchor-js","babel-plugin-filter-imports", -"babel-plugin-transform-react-handled-props","babel-plugin-universal-import","chai-enzyme","react-ace", -"react-codesandboxer","react-source-render","react-static","react-static-routes","react-universal-component","satisfied", -"semantic-ui-css","ta-scripts","terser-webpack-plugin-legacy","bikeshed","semicolon","@hapi/joi","eraro","gate-executor", -"gubu","jsonic","lodash.defaultsdeep","optioner","ordu","patrun","rolling-stats","seneca-transport","use-plugin", -"@seneca/test-plugin","bench","gex","lab-transform-typescript","seneca-entity","seneca-error-test","seneca-joi", -"seneca-promisify","summary","micro-service","micro-services","micro service","minimum","viable","product","Sentimental", -"nlp","wkx","dottie","sequelize-pool","toposort-class","retry-as-promised","p-props","p-settle","node-hook","pg-hstore", -"chai-datetime","snowflake-sdk","@octokit/types","js-combinatorics","esdoc-standard-plugin", -"esdoc-inject-style-plugin","esdoc-ecmascript-proposal-plugin","semantic-release-fail-on-major-bump","db2","snowflake", -"object relational mapper","@serialport/stream","@serialport/binding-mock","@serialport/bindings-cpp", -"@serialport/parser-ready","@serialport/parser-regex","@serialport/parser-cctalk","@serialport/parser-readline", -"@serialport/parser-delimiter","@serialport/parser-byte-length","@serialport/parser-spacepacket", -"@serialport/parser-slip-encoder","@serialport/parser-packet-length","@serialport/parser-inter-byte-timeout","ccTalk", -"com port","COM","data logging","modem","nodebots","RFID","sensor","serial port","sms gateway","sms","UART", -"update-check","@zeit/schemas","@vercel/style-guide","temp-path","@serverless/utils","@commitlint/cz-commitlint", -"@serverless/test","serverless plugins","aws lambda","amazon web services","serverless.com", -"@aws-cdk/aws-lambda-python-alpha","@aws-sdk/client-eventbridge","@aws-sdk/client-lambda","aws-iot-device-sdk","caporal", -"json-format-highlight","@types/aws-iot-device-sdk","@types/aws4","jsii","jsii-diff","jsii-docgen","jsii-pacmak", -"eventbridge","flow-remove-types","isequalwith","@img/colour","emnapi","exif-reader","@cpplint/cli","@emnapi/runtime", -"@img/sharp-libvips-dev","@img/sharp-libvips-win32-x64", -"@img/sharp-libvips-dev-wasm32","@img/sharp-libvips-win32-ia32","@img/sharp-libvips-win32-arm64","dzi","thumbnail", -"libvips","vips","travis-check-changes","makefile","short","bitly","shorten","tinyid","should-equal","should-format", -"should-type","should-type-adaptors","should-util","eslint-config-shouldjs","grunt-endline","quiet-grunt","semver-sort", -"shelljs-plugin-open","transforms","@kwsites/file-exists","@kwsites/promise-deferred","@kwsites/promise-result", -"@simple-git/babel-config","source control","js-correct-lockfile","eslint-config-important-stuff","@sinonjs/samsam", -"@sinonjs/eslint-plugin-no-prototype-methods","@studio/changes","esbuild-plugin-istanbul","clock","mocks-and-spies", -"crypt3","fs-ext","express-json5","render-readme","sinopia-htpasswd","browserify-handlebars","@polka/url","bytes-iec", -"nanospinner","budget","performance budget","file size","directory size","get size","qpass","amazon-cognito-identity-js", -"basic-node-server","skapi","seperator","is-fullwidth-code-point","random-item","get-folder-size","js-extend","math-sum", -"prettier-bytes","tablify","slow", -"github-changes","urlify","standard-json","pretty output","snazzy standard","standard pretty","stylish for standard", -"stylish formatter","stylish reporter","stylish standard","axios-ntlm","xml-crypto","base64id","socket.io-adapter","io", -"@socket.io/component-emitter","@anvilco/apollo-server-plugin-introspection-metadata","@graphql-tools/load-files", -"microfiber","bdd-lazy-var","introspection","introspection-query","string-to-stream","binary-split","callback-stream", -"gulp-benchmark","prettydiff","sprity-css","sprity-lwip","object-stream","through2-spy","sprites","coordinates", -"css-sprite","asn1","bcrypt-pbkdf","integrity","subresource integrity","sri","sri hash","sri string","sri generator", -"st","firestore","shuruhatik","long-stack-traces","version-guard","conventional-changelog-config-spec","dotgitignore", -"stringify-package","recommended","check-more-types","lazy-ass","ban-sensitive-files","deps-ok","dont-crack", -"git-issues","pre-git","simple-commit-message","winser","etsy","metric","aggregation","store2", -"exsolve","picoquery","modern-tar","fetch-retry","@types/npmlog","flush-promises","@yarnpkg/libzip","browser-dtector", -"react-inspector","@react-aria/tabs","deep-object-diff","@react-aria/utils","@ngard/tiny-isequal","@react-aria/toolbar", -"@react-stately/tabs","@react-types/shared","@storybook/docs-mdx","get-npm-tarball-url","use-resize-observer", -"@react-aria/landmark","@react-aria/overlays","lazy-universal-dotenv","react-transition-state","@react-stately/overlays", -"@react-aria/interactions","react-syntax-highlighter","@radix-ui/react-scroll-area","@devtools-ds/object-inspector", -"@types/react-syntax-highlighter","@aw-web-design/x-default-browser","@fal-works/esbuild-plugin-global-externals", -"design-systems","@glen/jest-raw-loader","@storybook/addon-storyshots","@storybook/addon-storyshots-puppeteer", -"eslint-config-torchbox","storybookjs","patternlab","django-pattern-library","django-templates","jinja2","findit2", -"inside","funsert","into-stream","Assert","music-metadata","livestream","livestreaming","gulp-rimraf","string.js", -"stringjs","S","s","codsen-utils","ranges-apply","ranges-push","string-left-right","ast-monkey-traverse","ranges-invert", -"jsp","mixed","stri","xhtml", -"get-east-asian-width","wcswidth","undici-types","payment processing","credit cards","generator-loopback", -"loopback-sdk-angular-cli","nodefly-register","strong-arc","strong-build","strong-deploy","strong-mesh-models", -"strong-registry","strong-start","strong-debugger","strong-swagger-ui","swagger-ui","LoopBack","Platform","alerts", -"event loop","heroku","master","nodeops","openshift","ops","pm","slc","slowest functions","strong-cli", -"strong-cluster-control","strongops","upstart","@bundled-es-modules/deepmerge","@bundled-es-modules/glob", -"@bundled-es-modules/memfs","@zip.js/zip.js","path-unified","@esm-bundle/chai-as-promised","@rollup/browser", -"@shoelace-style/shoelace","@web/test-runner-commands","hanbi","jsdoc-escape-at","jsdoc-tsimport-plugin", -"starlight-links-validator","style dictionary","dictionary","Android","css-to-react-native","@types/js-beautify", -"@types/shallowequal","stylis-plugin-rtl","ts-toolbelt","stylis-rule-sheet","zeit","hack","hacks","globjoin", +"@prisma/credentials-store","@prisma/management-api-sdk","@prisma/driver-adapter-utils","@prisma/client-generator-registry","@opentelemetry/context-async-hooks","ORM","Prisma","Prisma CLI","prisma2","JS","TS","SQL","Postgres","CockroachDB","MSSQL","SQL Server","SQLServer","MongoDB","MCP","docdash","gulp-terser","regexpp","webfont","prism","node-rest-client","URIjs","svn","customize","sisteransi","interact","html-event-attributes","svg-element-attributes","svg-event-attributes","@protobufjs/aspromise", +"@protobufjs/base64","@protobufjs/codegen","@protobufjs/eventemitter","@protobufjs/fetch","@protobufjs/float","@protobufjs/inquire","@protobufjs/path","@protobufjs/pool","@protobufjs/utf8","browserify-wrap","protobuf","@types/jasminewd2","natives","basic-auth-parser","@types/args","squid","privoxy","mod_proxy","via","x-forwarded-for","fill-keys","module-not-found-error","native-hello-world","cp-sugar","elegant-status","pug-load","pug-lexer","pug-linker","pug-parser","pug-filters", +"pug-runtime","pug-code-gen","pug-strip-comments","jstransformer-uglify-js","jstransformer-markdown-it","tap-bail","idn","idna","dns","domain","chromium-bidi","typed-query-selector","purge","fluent","qr code","@browserify/envify","@browserify/uglifyify","common-shakeify","has-override-mistake","unassertify","decode-uri-component","split-on-first","param","parameter","searchparams","retape","tap-esm","FIFO","lifo","LIFO","work","queue js","job queue","job scheduling","task queue","ordered","iterate", +"linked list","dequeue","shift","parchment","quill-delta","@types/highlight.js","transpile-webpack-plugin","eslint-plugin-json-es","@qunitjs/browserstack-runner","dom-element-descriptors","@types/qunit","@release-it-plugins/lerna-changelog","qunit-plugin","exists-stat","js-reporters","testling","requestAnimationFrame","babel-plugin-import-export-rename","envvar","sanctuary","sanctuary-identity","point-free","sample","timed-out","sentry","unpipe","father-build", +"react-slider","react-tooltip","@types/responselike","react-addon","@apollo/react-common","@apollo/react-components","@apollo/react-hoc","@apollo/react-hooks","@apollo/react-ssr","@restart/ui","@restart/hooks","uncontrollable","prop-types-extra","ecosystem-react","@icons/material","material-colors","reactcss","@case/eslint-config","@storybook/addon-centered","jsx-loader","react-context","react-mark","testdom","sketch","photoshop","html-webpack-tags-plugin","copy to clipboard","@react-docgen/cli", +"date-fns-tz","is-root","detect-port-alt","@react-dnd/invariant","@react-dnd/shallowequal","documentation-generation","attr-accept","file-selector","@babel/plugin-proposal-logical-assignment-operators","@commitlint/prompt","@size-limit/webpack-why","imagemin-cli","webpack-blocks","jest-fetch-mock","settle-promise","overlay","redbox","crash","react-side-effect","eslint-config-nfl","karma-chai-sinon","karma-html-reporter","nfl","head","meta","noscript","jest-fixed-jsdom","enzyme-adapter-react-15", +"react-mount","@babel/plugin-proposal-async-generator-functions","intersection","lazy load","inview","useInView","useIntersectionObserver","@formatjs/ecma402-abstract", +"@formatjs/icu-messageformat-parser","@formatjs/intl","intl-messageformat","eslint-config-es5","rehype-starry-night","exenv","babel-browser-transform","inject-loader","karma-jasmine-diff-reporter","lodash.range","transitiongroup","tween","motion","hermes-compiler","@react-native/virtualized-lists","app-framework","mobile-development","@react-native-community/cli","@react-native/typescript-config","keychain","svg2ttf","fontisto","evil-icons","feather-icons","oslllo-svg-fixer","svgicons2svgfont", +"simple-line-icons","@entypo-icons/core","css-social-buttons","@cmfcmf/docusaurus-search-local","react-transform-hmr","currency","number-format","require-hijack","onclick","outside","onclickoutside","@rollup/plugin-sucrase","eslint-plugin-ft-flow","hermes-eslint","matchmediaquery","@types/hyphenate-style-name","@types/match-media-mock","@types/matchmediaquery","match-media-mock","media queries","respond","matchMedia","redux-devtools","redux-devtools-dock-monitor","redux-devtools-log-monitor","json2mq", +"foundation-apps","slick-carousel","why-did-you-update","Image slider","orbit","@tippyjs/react","@vxna/mini-html-webpack-template","clipboard-copy","common-dir","es6-object-assign","function.name-polyfill","glogg", +"javascript-stringify","jss","jss-plugin-camel-case","jss-plugin-compose","jss-plugin-default-unit","jss-plugin-global","jss-plugin-isolate","jss-plugin-nested","mini-html-webpack-plugin","q-i","qss","react-docgen-annotation-resolver","react-docgen-displayname-handler","react-group","strip-html-comments","type-detect","@types/buble","@types/copy-webpack-plugin","@types/escodegen","@types/keymirror","@types/markdown-to-jsx","@types/terser-webpack-plugin","@types/type-detect","@types/webpack-dev-server", +"deabsdeep","deepfreeze","dog-names","eslint-config-tamia","keymirror","strip-shebang","scalable vector graphics","svginjector","TapEventPlugin","300ms","react-testing","@4tw/cypress-drag-drop","vite-plugin-istanbul","alert","commoner","jstransform","coverify","es3ify","grunt-jest","jasmine-tapreporter","populist","transition-group","transitions","react-codemirror","eslint-config-react","eslint-plugin-relay","@babel/preset-stage-2","@babel/plugin-transform-flow-comments","fixed","es6-module-jstransform", +"customize-cra","holderjs","react-prism","esbuild-plugin-alias","tap-mocha-reporter","line by line","@types/esprima","flow-parser","refactoring","pretty-printing", +"prepare","change-emitter","higher-order","microcomponentization","lister","@redis/bloom","@redis/client","@redis/json","@redis/search","@redis/time-series","@redocly/openapi-core","docusaurus-theme-redoc","docusaurus-plugin-redoc","@docusaurus/theme-common","api-doc","docusaurus-preset","predictable","elm","just-curry-it","reduce-reducers","@vitest/coverage-c8","eslint-config-unicorn-camelcase","actions","insert-line","redux-immutable","lodash-webpack-plugin","@redux-saga/core","saga","effects", +"side effects","redux-middleware","ecmarkup","gulp-emu","gulp-live-server","gulp-sequence","reflect","regenerator","is-absolute-url","external","hast-util-properties-to-mdx-jsx-attributes","@nodeutils/defaults-deep","@phun-ky/typeof","issue-parser","wildcard-match","@octokit/request-error","mentoss","mock-stdio","remark-preset-webpro","distribution","intern","markdown-extensions","unified-args","footnote","remark-slug","mermaidjs","remark-contributors","remark-heading-gap","remark-license", +"remark-lint-no-heading-punctuation","retext-preset-github","remark-lint-correct-media-syntax","remark-lint-definition-sort","remark-lint-link-title-style","remark-lint-maximum-heading-length", +"remark-lint-maximum-line-length","remark-lint-mdx-jsx-attribute-sort","remark-lint-mdx-jsx-no-void-children","remark-lint-mdx-jsx-quote-style","remark-lint-mdx-jsx-self-close","remark-lint-mdx-jsx-shorthand-attribute","remark-lint-mdx-jsx-unique-attribute-name","remark-lint-media-style","remark-lint-no-duplicate-defined-urls","remark-lint-no-duplicate-headings-in-section","remark-lint-no-empty-url","remark-lint-no-heading-like-paragraph","remark-lint-no-hidden-table-cell","remark-lint-no-html", +"remark-lint-no-paragraph-content-indent","remark-lint-no-reference-like-url","remark-lint-no-unneeded-full-reference-image","remark-lint-no-unneeded-full-reference-link","retext-preset-wooorm","wooorm","autolinker","caseless","aws-sign2","oauth-sign","tunnel-agent","forever-agent","har-validator","is-typedarray","taper","index.js","@typescript/analyze-trace","eslint-plugin-typescript","micro-memoize","path-parse","supports-preserve-symlinks-flag","adjust-sourcemap-loader","myrmidon", +"conventional-changelog-eslint","eslint-config-incredible","eslint-plugin-censor","eslint-plugin-no-secrets","eslint-plugin-scanjs-rules","fatum","node-package-tester","semantic-release-telegram","vesta","documentate","autodocumentate","ewma","restify-errors","escape-regexp-component","watershed","restify-clients","autocannon-compare","DTrace","quit","sigint","terminate","NoSQL","reql","query language","leak","fastest-json-copy","nano-copy", +"plain-object-clone","deep-clone","deepcopy","fastclone","fastcopy","fast-deep-copy","package-json-from-dist","run-script-os","targetpractice","Automation","pixel","recognition","autohotkey","learning","@mermaid-js/mermaid-cli","@shikijs/vitepress-twoslash","@vue/language-server","acorn-import-assertions","flru","npm-audit-resolver","wasm-pack","js-cleanup","rollup-plugin-jsx","removal","@types/d3-drag","@types","commenting","package-name-regex","spdx-expression-validate","spdx-satisfies", +"gulp-conventional-changelog","rollup-plugin-strip-banner","browserify-fs","sourceMappingURL","@types/find-cache-dir","@types/graphlib","rollup-plugin-re","@types/d3-array","@types/d3-color","@types/d3-force","@types/d3-hierarchy","@types/d3-scale","visualizer","sunburst","diagram","@ampproject/toolbox-optimizer","@types/amphtml-validator","amphtml-validator","ember-cli-progress","rtl","ltr","run series","LINQ","FRP","Reactive","@angular-devkit/build-optimizer","check-side-effects","rollup-plugin-alias", +"rollup-plugin-inject","tslint-etc","tslint-no-toplevel-property-access","tslint-no-unused-expression-chai","web-streams-polyfill","ReactiveX", +"ReactiveExtensions","Observables","buffer allocate","node security","uninitialized","mock-env","dist-tag","prepublish","@sailshq/router","captains-log","common-js-file-extensions","@sailshq/csurf","i18n-2","include-all","machine-as-action","machinepack-process","machinepack-redis","merge-defaults","merge-dictionaries","sails-generate","sails-stringfile","skipper","sort-route-addresses","whelk","machinepack-fs","@sailshq/request","root-require","sails-hook-orm","sails-hook-sockets","sails.io.js", +"session-file-store","web-framework","sailsjs","truncate-utf8-bytes","mktemp","filename","eslint-config-apostrophe","material-components-web","node-sass-glob-importer","markdown-model","bare-script","element-model","food","drink","ec","ecdh","ecdsa","seed","@bazel/runfiles","@semantic-release/error","aggregate-error","env-ci","find-versions","git-log-parser","import-from-esm","p-each-series","file-url","mockserver-client","stream-buffers","author","@fluentui/react-component-event-listener", +"@fluentui/react-component-ref","@semantic-ui-react/event-stack","keyboard-key", +"@artsy/fresnel","@babel/standalone","@percy/cli","@percy/cypress","anchor-js","babel-plugin-filter-imports","babel-plugin-transform-react-handled-props","babel-plugin-universal-import","chai-enzyme","react-ace","react-codesandboxer","react-source-render","react-static","react-static-routes","react-universal-component","satisfied","semantic-ui-css","ta-scripts","terser-webpack-plugin-legacy","bikeshed","semicolon","@hapi/joi","eraro","gate-executor","gubu","jsonic","lodash.defaultsdeep","optioner","ordu", +"patrun","rolling-stats","seneca-transport","use-plugin","@seneca/test-plugin","bench","gex","lab-transform-typescript","seneca-entity","seneca-error-test","seneca-joi","seneca-promisify","summary","micro-service","micro-services","micro service","minimum","viable","product","Sentimental","nlp","wkx","dottie","sequelize-pool","toposort-class","retry-as-promised","p-props","p-settle","node-hook","pg-hstore","chai-datetime","snowflake-sdk","@octokit/types","js-combinatorics","esdoc-standard-plugin", +"esdoc-inject-style-plugin","esdoc-ecmascript-proposal-plugin","semantic-release-fail-on-major-bump","db2","snowflake","object relational mapper","@serialport/stream","@serialport/binding-mock","@serialport/bindings-cpp","@serialport/parser-ready","@serialport/parser-regex","@serialport/parser-cctalk","@serialport/parser-readline","@serialport/parser-delimiter","@serialport/parser-byte-length","@serialport/parser-spacepacket","@serialport/parser-slip-encoder","@serialport/parser-packet-length", +"@serialport/parser-inter-byte-timeout","ccTalk","com port","COM","data logging","modem","nodebots","RFID","sensor","serial port","sms gateway","sms","UART","update-check","@zeit/schemas","@vercel/style-guide","temp-path","@serverless/utils","@commitlint/cz-commitlint","@serverless/test","serverless plugins","aws lambda","amazon web services","serverless.com","@aws-cdk/aws-lambda-python-alpha","@aws-sdk/client-eventbridge","@aws-sdk/client-lambda","aws-iot-device-sdk","caporal","json-format-highlight", +"@types/aws-iot-device-sdk","@types/aws4","jsii","jsii-diff","jsii-docgen","jsii-pacmak","eventbridge","flow-remove-types","isequalwith","@img/colour","emnapi","exif-reader","@cpplint/cli","@emnapi/runtime","@img/sharp-libvips-dev","@img/sharp-libvips-win32-x64", +"@img/sharp-libvips-dev-wasm32","@img/sharp-libvips-win32-ia32","@img/sharp-libvips-win32-arm64","dzi","thumbnail","libvips","vips","travis-check-changes","makefile","short","bitly","shorten","tinyid","should-equal","should-format","should-type","should-type-adaptors","should-util","eslint-config-shouldjs","grunt-endline","quiet-grunt","semver-sort","shelljs-plugin-open","transforms","@kwsites/file-exists","@kwsites/promise-deferred","@kwsites/promise-result","@simple-git/babel-config","source control", +"js-correct-lockfile","eslint-config-important-stuff","@sinonjs/samsam","@sinonjs/eslint-plugin-no-prototype-methods","@studio/changes","esbuild-plugin-istanbul","clock","mocks-and-spies","crypt3","fs-ext","express-json5","render-readme","sinopia-htpasswd","browserify-handlebars","@polka/url","bytes-iec","nanospinner","budget","performance budget","file size","directory size","get size","qpass","amazon-cognito-identity-js","basic-node-server","skapi","seperator","is-fullwidth-code-point","random-item", +"get-folder-size","js-extend","math-sum","prettier-bytes","tablify","slow", +"github-changes","urlify","standard-json","pretty output","snazzy standard","standard pretty","stylish for standard","stylish formatter","stylish reporter","stylish standard","axios-ntlm","xml-crypto","base64id","socket.io-adapter","io","@socket.io/component-emitter","@anvilco/apollo-server-plugin-introspection-metadata","@graphql-tools/load-files","microfiber","bdd-lazy-var","introspection","introspection-query","string-to-stream","binary-split","callback-stream","gulp-benchmark","prettydiff","sprity-css", +"sprity-lwip","object-stream","through2-spy","sprites","coordinates","css-sprite","asn1","bcrypt-pbkdf","integrity","subresource integrity","sri","sri hash","sri string","sri generator","st","firestore","shuruhatik","long-stack-traces","version-guard","conventional-changelog-config-spec","dotgitignore","stringify-package","recommended","check-more-types","lazy-ass","ban-sensitive-files","deps-ok","dont-crack","git-issues","pre-git","simple-commit-message","winser","etsy","metric","aggregation","store2", +"exsolve","picoquery","modern-tar","fetch-retry","@types/npmlog","flush-promises","@yarnpkg/libzip","browser-dtector","react-inspector","@react-aria/tabs","deep-object-diff","@react-aria/utils","@ngard/tiny-isequal","@react-aria/toolbar","@react-stately/tabs","@react-types/shared","@storybook/docs-mdx","get-npm-tarball-url","use-resize-observer","@react-aria/landmark","@react-aria/overlays","lazy-universal-dotenv","react-transition-state","@react-stately/overlays","@react-aria/interactions", +"react-syntax-highlighter","@radix-ui/react-scroll-area","@devtools-ds/object-inspector","@types/react-syntax-highlighter","@aw-web-design/x-default-browser","@fal-works/esbuild-plugin-global-externals","design-systems","@glen/jest-raw-loader","@storybook/addon-storyshots","@storybook/addon-storyshots-puppeteer","eslint-config-torchbox","storybookjs","patternlab","django-pattern-library","django-templates","jinja2","findit2","inside","funsert","into-stream","Assert","music-metadata","livestream", +"livestreaming","gulp-rimraf","string.js","stringjs","S","s","codsen-utils","ranges-apply","ranges-push","string-left-right","ast-monkey-traverse","ranges-invert","jsp","mixed","stri","xhtml", +"get-east-asian-width","wcswidth","undici-types","payment processing","credit cards","generator-loopback","loopback-sdk-angular-cli","nodefly-register","strong-arc","strong-build","strong-deploy","strong-mesh-models","strong-registry","strong-start","strong-debugger","strong-swagger-ui","swagger-ui","LoopBack","Platform","alerts","event loop","heroku","master","nodeops","openshift","ops","pm","slc","slowest functions","strong-cli","strong-cluster-control","strongops","upstart", +"@bundled-es-modules/deepmerge","@bundled-es-modules/glob","@bundled-es-modules/memfs","@zip.js/zip.js","path-unified","@esm-bundle/chai-as-promised","@rollup/browser","@shoelace-style/shoelace","@web/test-runner-commands","hanbi","jsdoc-escape-at","jsdoc-tsimport-plugin","starlight-links-validator","style dictionary","dictionary","Android","css-to-react-native","@types/js-beautify","@types/shallowequal","stylis-plugin-rtl","ts-toolbelt","stylis-rule-sheet","zeit","hack","hacks","globjoin", "mathml-tag-names","svg-tags","@types/balanced-match","@types/file-entry-cache","@types/global-modules", -"@types/globjoin","@types/imurmurhash","@types/postcss-less","@types/svg-tags","postcss-sass","stylelint-config", -"shortcss","css-values","babel-register-ts","delaration-strict-value","keyword","z-index","postcss-sorting", -"eslint-config-hudochenkov","postcss-styled-syntax","prettier-config-hudochenkov","postcss-media-query-parser", -"postcss-resolve-nested-selector","github-contributors-list","bootstrap-styl","should-http","tinyify","frisbee","super", -"promised","supports","capability","truecolor","16m","esrap","zimmerframe","@types/sade","vscode-languageserver", -"vscode-languageserver-protocol","svelte2tsx","svelte-language-server","@kiwi/eslint-config","@kiwi/prettier-config", -"@types/pug","postcss-easy-import","prettysize","@resvg/resvg-js","eslint-plugin-jest-formatting","git-release-notes", -"precache","tape-promise","autogen","promise.any","multilang-extract-comments","@readme/eslint-config","readmeio", -"swagger-nestjs","swagger-templates","swagger UI","istanbul-badges-readme","nodelint","still","mocha-phantomjs", +"@types/globjoin","@types/imurmurhash","@types/postcss-less","@types/svg-tags","postcss-sass","stylelint-config","shortcss","css-values","babel-register-ts","delaration-strict-value","keyword","z-index","postcss-sorting","eslint-config-hudochenkov","postcss-styled-syntax","prettier-config-hudochenkov","postcss-media-query-parser","postcss-resolve-nested-selector","github-contributors-list","bootstrap-styl","should-http","tinyify","frisbee","super","promised","supports","capability","truecolor","16m","esrap", +"zimmerframe","@types/sade","vscode-languageserver","vscode-languageserver-protocol","svelte2tsx","svelte-language-server","@kiwi/eslint-config","@kiwi/prettier-config","@types/pug","postcss-easy-import","prettysize","@resvg/resvg-js","eslint-plugin-jest-formatting","git-release-notes","precache","tape-promise","autogen","promise.any","multilang-extract-comments","@readme/eslint-config","readmeio","swagger-nestjs","swagger-templates","swagger UI","istanbul-badges-readme","nodelint","still","mocha-phantomjs", "travis-cov","jinja","http-response-object","then-request","flowgen2","system information", -"sysinfo","freebsd","openbsd","netbsd","cpuload","physical cores","logical cores","cores","socket type","fsstats", -"diskio","block devices","netstats","network interfaces","network connections","network stats","iface","printer","users", -"internet","battery","docker stats","docker processes","graphic card","graphic controller","smart","disk layout", -"bluetooth","wifi","wifinetworks","virtual box","virtualbox","vm","BIOS","chassis","symbol-es6", -"@jsenv/file-size-impact","construct-style-sheets-polyfill","hase","draht","limes","lusca","partof","timer2","uuidv4", -"crypto2","nocache","datasette","json-lines","processenv","stethoskop","flaschenpost","commands-events","nodeenv", -"roboter","assertthat","json-lines-client","cqs","cqrs","@codspeed/vitest-plugin","className","classList","override", -"@tailwindcss/oxide", -"@tapjs/after","@tapjs/after-each","@tapjs/asserts","@tapjs/before","@tapjs/before-each","@tapjs/chdir","@tapjs/core", -"@tapjs/filter","@tapjs/fixture","@tapjs/intercept","@tapjs/mock","@tapjs/node-serialize","@tapjs/run","@tapjs/snapshot", -"@tapjs/spawn","@tapjs/stdin","@tapjs/test","@tapjs/typescript","@tapjs/worker","tapjs","tapjs plugin","tap-out","tapes", -"@ljharb/resumer","@ljharb/through","array.prototype.every","dotignore","has-dynamic-import","npm-run-posix-or-windows", -"harness","chownr","yallist","@isaacs/fs-minipass","chmodr","events-to-array","b4a","fast-fifo","front end", -"@parcel/packager-ts","@parcel/transformer-typescript-types","cz-format-extension","telegram-api","telegram-client-api", -"tglib","node-addon","seventh","lazyness","tree-kit","string-kit","nextgen-events","@cronvel/get-pixels","256 colors", -"true color","input field","gpm","screenbuffer","textbuffer","32-bit","resumer","visualwidth","80s","ibm", -"@jridgewell/source-map","@ls-lint/ls-lint", -"astring","@types/uglify-js","@test-runner/core","@test-runner/default-view","@test-runner/live-view", -"@test-runner/oneline-view","@test-runner/tom","multiline-ts","spawn-process","only-allow","sinon-assert-stub", -"sinon-mocha-test","unlinted","example","@devexpress/bin-v8-flags-filter","@devexpress/callsite-record","bowser", -"chrome-remote-interface","device-specs","get-os-info","import-lazy","is-podman","log-update-async-hook", -"moment-duration-format-commonjs","os-family","pinkie","promisify-event","read-file-relative","replicator", -"testcafe-browser-tools","testcafe-hammerhead","testcafe-legacy-api","testcafe-reporter-json","testcafe-reporter-list", -"testcafe-reporter-minimal","testcafe-reporter-spec","testcafe-selector-generator","time-limit-promise","unquote", -"url-to-options","@devexpress/gulp-qunit-harness","@ffprobe-installer/ffprobe","@testcafe/publish-please", -"@types/callsite","@types/dedent","@types/useragent","browserstack-connector","caller","dom-walk", -"eslint-plugin-hammerhead","express-ntlm","gulp-clone","gulp-ll-next","gulp-mocha-simple","gulp-step", -"mocha-reporter-spec-with-retries","openssl-self-signed-certificate","recursive-copy", -"testcafe-browser-provider-browserstack","QA","@types/dockerode","docker-compose","properties-reader", -"ssh-remote-port-forward", -"@types/async-lock","@types/properties-reader","stringify-object-es5","cross-conf-env","headerify","is-number", -"teenytest","teenytest-promise","test double","fireworm","printf","spawn-args","styled_string","bluebird-retry", -"chai-shallow-deep-equal","saucie","eslint-config-mdcs","three.js","virtual-reality","augmented-reality","webgl2", -"webaudio","webgpu","webxr","node-stdlib-browser","user-streams","hundreds","polendina","stream-spigot","unexpand", -"number-is-nan","profile","stats","bee-dnd","bee-tag","bee-form","bee-icon","bee-rate","bee-step","bee-tabs","bee-tile", -"bee-tree","bee-affix","bee-alert","bee-badge","bee-label","bee-menus","bee-modal","bee-panel","bee-radio","bee-table", -"bee-anchor","bee-button","bee-drawer","bee-layout","bee-locale","bee-navbar","bee-select","bee-slider","bee-switch", -"bee-upload","bee-animate","bee-backtop","bee-loading", -"bee-message","bee-overlay","bee-popover","bee-svgicon","bee-tooltip","bee-calendar","bee-carousel","bee-cascader", -"bee-checkbox","bee-collapse","bee-dropdown","bee-timeline","bee-transfer","bee-clipboard","bee-breadcrumb", -"bee-datepicker","bee-form-group","bee-pagination","bee-popconfirm","bee-timepicker","bee-transition","bee-colorpicker", -"bee-input-group","bee-page-layout","bee-tree-select","bee-autocomplete","bee-button-group","bee-complex-grid", -"bee-form-control","bee-input-number","bee-notification","bee-progress-bar","bee-search-panel","bee-loading-state", -"bee-input-group-addon","gulp-cleancss","gulp-css-wrap","tinper-bee-core","less-plugin-inline-urls","tinper","bee", -"tinylibs","@deno/shim-deno-test","tinycolor","worker threads","thread pool","method","@types/react-native-vector-icons", -"pushalert","react-native toast","react-native-toastify","toastify","react-native-notification","expo","Typescript", -"node-resemble-js","processmd","of","set-cookie","RFC6265","RFC2965","tinytim","trace","typedarray.prototype.slice", -"forEach","html-select","html-tokenize","aggregate","babel-preset-es2016","typescript-loader","migrate","migration", -"cli-tool","@ts-morph/common","code-block-writer","static analysis","code refactor","create-require","@tsconfig/node10", -"@tsconfig/node12","@tsconfig/node14","v8-compile-cache-lib","@cspotcode/source-map-support","@swc/wasm","ntypescript", -"util.promisify","fast-json-patch","omit-deep","power-assign","bre","rete","rule engine","rules engine", -"javascript rule engine","js rule engine","inference system","@types/strip-bom","typedefs","typedefinitions", -"jsonc-simple-parser","polite-json","sync-content","codelyzer","tslint-divid","@types/make-dir","tslint-immutable", -"tslint-misc-rules","tslint-microsoft-contrib","tslint-consistent-codestyle","ts-lint","typescript-tslint-plugin", -"joycon","typescript runner","@mixmark-io/domino","turndown-attendant","grunt-mocha","grunt-markdown", -"grunt-component-io","grunt-push-release","grunt-regex-replace","jshint-path-reporter","mocha-unfunk-reporter", +"sysinfo","freebsd","openbsd","netbsd","cpuload","physical cores","logical cores","cores","socket type","fsstats","diskio","block devices","netstats","network interfaces","network connections","network stats","iface","printer","users","internet","battery","docker stats","docker processes","graphic card","graphic controller","smart","disk layout","bluetooth","wifi","wifinetworks","virtual box","virtualbox","vm","BIOS","chassis","symbol-es6","@jsenv/file-size-impact","construct-style-sheets-polyfill","hase", +"draht","limes","lusca","partof","timer2","uuidv4","crypto2","nocache","datasette","json-lines","processenv","stethoskop","flaschenpost","commands-events","nodeenv","roboter","assertthat","json-lines-client","cqs","cqrs","@codspeed/vitest-plugin","className","classList","override","@tailwindcss/oxide", +"@tapjs/after","@tapjs/after-each","@tapjs/asserts","@tapjs/before","@tapjs/before-each","@tapjs/chdir","@tapjs/core","@tapjs/filter","@tapjs/fixture","@tapjs/intercept","@tapjs/mock","@tapjs/node-serialize","@tapjs/run","@tapjs/snapshot","@tapjs/spawn","@tapjs/stdin","@tapjs/test","@tapjs/typescript","@tapjs/worker","tapjs","tapjs plugin","tap-out","tapes","@ljharb/resumer","@ljharb/through","array.prototype.every","dotignore","has-dynamic-import","npm-run-posix-or-windows","harness","chownr","yallist", +"@isaacs/fs-minipass","chmodr","events-to-array","b4a","fast-fifo","front end","@parcel/packager-ts","@parcel/transformer-typescript-types","cz-format-extension","telegram-api","telegram-client-api","tglib","node-addon","seventh","lazyness","tree-kit","string-kit","nextgen-events","@cronvel/get-pixels","256 colors","true color","input field","gpm","screenbuffer","textbuffer","32-bit","resumer","visualwidth","80s","ibm","@jridgewell/source-map","@ls-lint/ls-lint", +"astring","@types/uglify-js","@test-runner/core","@test-runner/default-view","@test-runner/live-view","@test-runner/oneline-view","@test-runner/tom","multiline-ts","spawn-process","only-allow","sinon-assert-stub","sinon-mocha-test","unlinted","example","@devexpress/bin-v8-flags-filter","@devexpress/callsite-record","bowser","chrome-remote-interface","device-specs","get-os-info","import-lazy","is-podman","log-update-async-hook","moment-duration-format-commonjs","os-family","pinkie","promisify-event", +"read-file-relative","replicator","testcafe-browser-tools","testcafe-hammerhead","testcafe-legacy-api","testcafe-reporter-json","testcafe-reporter-list","testcafe-reporter-minimal","testcafe-reporter-spec","testcafe-selector-generator","time-limit-promise","unquote","url-to-options","@devexpress/gulp-qunit-harness","@ffprobe-installer/ffprobe","@testcafe/publish-please","@types/callsite","@types/dedent","@types/useragent","browserstack-connector","caller","dom-walk","eslint-plugin-hammerhead","express-ntlm", +"gulp-clone","gulp-ll-next","gulp-mocha-simple","gulp-step","mocha-reporter-spec-with-retries","openssl-self-signed-certificate","recursive-copy","testcafe-browser-provider-browserstack","QA","@types/dockerode","docker-compose","properties-reader","ssh-remote-port-forward", +"@types/async-lock","@types/properties-reader","stringify-object-es5","cross-conf-env","headerify","is-number","teenytest","teenytest-promise","test double","fireworm","printf","spawn-args","styled_string","bluebird-retry","chai-shallow-deep-equal","saucie","eslint-config-mdcs","three.js","virtual-reality","augmented-reality","webgl2","webaudio","webgpu","webxr","node-stdlib-browser","user-streams","hundreds","polendina","stream-spigot","unexpand","number-is-nan","profile","stats","bee-dnd","bee-tag", +"bee-form","bee-icon","bee-rate","bee-step","bee-tabs","bee-tile","bee-tree","bee-affix","bee-alert","bee-badge","bee-label","bee-menus","bee-modal","bee-panel","bee-radio","bee-table","bee-anchor","bee-button","bee-drawer","bee-layout","bee-locale","bee-navbar","bee-select","bee-slider","bee-switch","bee-upload","bee-animate","bee-backtop","bee-loading", +"bee-message","bee-overlay","bee-popover","bee-svgicon","bee-tooltip","bee-calendar","bee-carousel","bee-cascader","bee-checkbox","bee-collapse","bee-dropdown","bee-timeline","bee-transfer","bee-clipboard","bee-breadcrumb","bee-datepicker","bee-form-group","bee-pagination","bee-popconfirm","bee-timepicker","bee-transition","bee-colorpicker","bee-input-group","bee-page-layout","bee-tree-select","bee-autocomplete","bee-button-group","bee-complex-grid","bee-form-control","bee-input-number","bee-notification", +"bee-progress-bar","bee-search-panel","bee-loading-state","bee-input-group-addon","gulp-cleancss","gulp-css-wrap","tinper-bee-core","less-plugin-inline-urls","tinper","bee","tinylibs","@deno/shim-deno-test","tinycolor","worker threads","thread pool","method","@types/react-native-vector-icons","pushalert","react-native toast","react-native-toastify","toastify","react-native-notification","expo","Typescript","node-resemble-js","processmd","of","set-cookie","RFC6265","RFC2965","tinytim","trace", +"typedarray.prototype.slice", +"forEach","html-select","html-tokenize","aggregate","babel-preset-es2016","typescript-loader","migrate","migration","cli-tool","@ts-morph/common","code-block-writer","static analysis","code refactor","create-require","@tsconfig/node10","@tsconfig/node12","@tsconfig/node14","v8-compile-cache-lib","@cspotcode/source-map-support","@swc/wasm","ntypescript","util.promisify","fast-json-patch","omit-deep","power-assign","bre","rete","rule engine","rules engine","javascript rule engine","js rule engine", +"inference system","@types/strip-bom","typedefs","typedefinitions","jsonc-simple-parser","polite-json","sync-content","codelyzer","tslint-divid","@types/make-dir","tslint-immutable","tslint-misc-rules","tslint-microsoft-contrib","tslint-consistent-codestyle","ts-lint","typescript-tslint-plugin","joycon","typescript runner","@mixmark-io/domino","turndown-attendant","grunt-mocha","grunt-markdown","grunt-component-io","grunt-push-release","grunt-regex-replace","jshint-path-reporter","mocha-unfunk-reporter", "grunt-concat-sourcemap","tap-browser-color","tweetnacl-util","curve25519","ed25519","nacl", -"poly1305","public","salsa20","signatures","twemoji-parser","Twitter","type-coverage-core","tagged-tag", -"@typescript/vfs","media-typer","checking","@gerrit0/mini-shiki","@material/material-color-utilities","typedoc-theme", -"material-3","JsDocs","cli-prompt","concatenate","ebook","pandoc","kindlegen","@types/mongoose", -"mongodb-memory-server-global","mongoose-findorcreate","prettier-tslint","sql-highlight","@sqltools/formatter", -"gulpclass","@types/sha.js","@sap/hana-client","@types/gulp-rename","standard-changelog","@google-cloud/spanner", -"@types/gulp-sourcemaps","@dprint/formatter","@esfx/canceltoken","@dprint/typescript","monocart-coverage-reports", -"mocha-fivemat-progress-reporter","eslint-formatter-autolinkable-stylish","commandpost","@types/power-assert", -"intelli-espower-loader","@types/postcss-modules-local-by-default","@types/postcss-modules-scope","@types/icss-utils", -"@types/postcss-modules-extract-imports","@types/reserved-words","jest-environment-node-single-context", -"postcss-import-sync2","sass-svg","promise-finally","typings-core","tslint-config-standard","definition","ecma","jsmin", -"random-bytes","@uiw/formatter","@uiw/react-affix","@uiw/react-alert","@uiw/react-auto-link","@uiw/react-avatar", -"@uiw/react-back-top", -"@uiw/react-badge","@uiw/react-breadcrumb","@uiw/react-button-group","@uiw/react-calendar","@uiw/react-card", -"@uiw/react-carousel","@uiw/react-cascader","@uiw/react-checkbox","@uiw/react-collapse","@uiw/react-copy-to-clipboard", -"@uiw/react-date-input","@uiw/react-date-picker","@uiw/react-descriptions","@uiw/react-divider","@uiw/react-drawer", -"@uiw/react-dropdown","@uiw/react-empty","@uiw/react-file-input","@uiw/react-form","@uiw/react-grid","@uiw/react-layout", -"@uiw/react-list","@uiw/react-loader","@uiw/react-menu","@uiw/react-message","@uiw/react-modal", -"@uiw/react-month-picker","@uiw/react-notify","@uiw/react-pagination","@uiw/react-pin-code","@uiw/react-popover", -"@uiw/react-portal","@uiw/react-progress","@uiw/react-radio","@uiw/react-rate","@uiw/react-search-select", -"@uiw/react-search-tree","@uiw/react-select","@uiw/react-slider","@uiw/react-split","@uiw/react-steps", -"@uiw/react-switch","@uiw/react-table","@uiw/react-tabs","@uiw/react-tag","@uiw/react-textarea","@uiw/react-time-picker", -"@uiw/react-tooltip","@uiw/react-transfer","@uiw/react-tree","@uiw/react-tree-checked","media-query-fns","parsel-js", -"citty","mkdist","untyped","pretty-bytes-cli","browserify-header","@metcoder95/https-pem","dns-packet","jsondiffpatch", -"trough","@types/extend","unique-random", -"non-repeating","xast","nlcst","visit","pullstream","match-stream","uncompress","pupa","is-npm","fixture-stdout", -"notifier","urn","uri mutation","url mutation","uri manipulation","url manipulation","uri template","url template", -"unified resource locator","unified resource identifier","query string","RFC 3986","RFC3986","RFC 6570","RFC6570", -"sauce-browsers","sauce-test","formstream","ylru","@eggjs/oxlint-config","@tsconfig/node18","@types/proxy", -"@types/selfsigned","string.prototype.towellformed","urlopen","userprofile","yamlparser","browserscope","ua","ua-parse", -"ua-parser","user agent","is-generator-function","is-typed-array","is-async-supported","rfc9562","bundt","diffs", -"find-parent-dir","githook","sanitise","@vant/use","@vant/popperjs","diffable-html","vitest-canvas-mock", -"@vant/area-data","@vant/cli","@vant/eslint-config","@vant/icons","@vercel/go","@vercel/h3","@vercel/fun","@vercel/koa", -"@vercel/blob", -"@vercel/hono","@vercel/next","@vercel/node","@vercel/ruby","@vercel/rust","@vercel/elysia","@vercel/nestjs", -"@vercel/python","@vercel/express","@vercel/fastify","@vercel/redwood","@vercel/backends","@vercel/hydrogen", -"@vercel/build-utils","@vercel/detect-agent","@vercel/static-build","@vercel/remix-builder","epipebomb","promisepipe", -"@sentry/node","@types/title","jaro-winkler","@types/chance","@types/dotenv","@vercel/client","pcre-to-regexp", -"git-last-commit","@inquirer/search","@tootallnate/once","http-proxy-node16","@inquirer/checkbox","@inquirer/password", -"@vercel/frameworks","@vercel/error-utils","line-async-iterator","@vercel/fs-detectors","@types/load-json-file", -"@types/npm-package-arg","@types/write-json-file","@vercel-internals/types","@edge-runtime/node-utils", -"json-parse-better-errors","@types/jest-expect-message","@vercel-internals/constants","@alex_neo/jest-expect-message", -"@types/json-parse-better-errors","@vercel-internals/get-package-json","extsprintf","err","create-banner", -"postcss-header","viewer.js","teex","remove-trailing-separator","fs-mkdirp-stream","is-valid-glob","lead", -"resolve-options","stream-composer","to-through","value-or-function","vinyl-sourcemap","vinyl-adapter","classic", -"browser-split","ev-store","x-is-array","x-is-string","run-browser","vtree","dev-server","build-tool","dotenv-local", -"slash-path","vite-plugin-builder","api-router","api-routers","vite-plugin-api","vite-plugin-rest-api","express-router", -"file-system-based","rest-api","api-rest","Remix","Next.js","focus-trap","@shikijs/core","@shikijs/types", -"@iconify-json/simple-icons","@iconify/utils","@mdit-vue/shared","@mdit-vue/plugin-sfc","@mdit-vue/plugin-toc", -"markdown-it-mathjax3","@mdit-vue/plugin-title","@mdit-vue/plugin-headers","@types/markdown-it-emoji", -"@mdit-vue/plugin-component","@mdit-vue/plugin-frontmatter","@types/markdown-it-container", -"@types/postcss-prefix-selector","@vitest/snapshot","why-is-node-running","@vitest/pretty-format","birpc", -"node-localstorage","gulp-xo","vorpal-less","vorpal-repl","load-plugins","keytar","parse-semver","typed-rest-client", -"@types/read","@types/yazl","@types/url-join","@types/clone","@types/iconv-lite","vscode-oniguruma","@vue/runtime-dom", -"@babel/plugin-syntax-pipeline-operator","@intlify/shared","@intlify/core-base","@intlify/devtools-types","intlify", -"@intlify/vue-i18n-loader","@types/mini-css-extract-plugin","@types/webpack-merge", -"markdown-loader","pug-plain-loader","@vue-macros/common","ast-walker-scope","muggle-string","unplugin-utils", -"@pinia/colada","@types/nightwatch","@vue/language-core","chromedriver","faked-promise","nightwatch-helpers","de-indent", -"todomvc-app-css","foreachasync","sys","walkSync","exec-sh","outpipe","win-spawn","encrypted-attr", -"lodash.issafeinteger","waterline-schema","waterline-utils","active-record","vargs","bdd-with-opts","gulp-debug","mu2", -"promise-simple","spawn-mocha-parallel","sv-selenium","web3-eth","web3-net","web3-core","web3-types","web3-utils", -"web3-errors","web3-eth-abi","web3-eth-ens","web3-eth-iban","web3-validator","web3-rpc-methods","web3-eth-accounts", -"web3-eth-contract","web3-eth-personal","web3-providers-ws","web3-rpc-providers","web3-providers-http","in3","ganache", -"web3-providers-ipc","eslint-config-base-web3","@truffle/hdwallet-provider","Ethereum","@solana/spl-token", -"@solana/web3.js","kva-email-service","micro-ed25519-hdkey","ssl-http-with-docker","tailwind-animation-extension", -"telegram-assistant","web3-react-task","sol", -"@webassemblyjs/ast","@webassemblyjs/wasm-edit","@webassemblyjs/wasm-parser","acorn-import-phases","chrome-trace-event", -"@codspeed/core","@types/neo-async","@types/xxhashjs","assemblyscript","bundle-loader","coffee-loader","hash-wasm", -"meriyah","rehype-sanitize","wast-loader","webassembly-feature","xxhashjs","lodash.partial","eslint-config-th0r", -"postcss-icss-values","@carrotsearch/foamtree","eslint-config-th0r-react","analyzer","@webpack-cli/info", -"@webpack-cli/configtest","@types/envinfo","@fastify/express","@types/on-finished","@types/sockjs","@types/bonjour", -"bonjour-service","@types/serve-index","@types/serve-static","@types/connect-history-api-fallback", -"@types/sockjs-client","reloading","hot-reloading","@types/webpack-sources","eslint-config-shellscape", -"prettier-plugin-package","dts-cli","@types/flat","externals","typedarray-to-buffer","yaeti","networking","comet", -"@silentbot1/nat-api","@thaunknown/simple-peer","@webtorrent/http-node","addr-to-ip-port","bitfield","bittorrent-dht", -"bittorrent-protocol","cache-chunk-store","chunk-store-iterator","cpus","create-torrent","cross-fetch-ponyfill", -"fs-chunk-store","fsa-chunk-store","immediate-chunk-store","join-async-iterator","load-ip-set", -"lt_donthave","memory-chunk-store","parse-torrent","random-iterate","speed-limiter","throughput","torrent-discovery", -"torrent-piece","uint8-util","unordered-array-remove","ut_metadata","ut_pex","@webtorrent/semantic-release-config", -"airtap-manual","airtap-system","bittorrent-tracker","chrome-net","disc","network-address","path-esm", -"webtorrent-fixtures","bittorrent","bittorrent client","mad science","p2p","peer-to-peer","peers","swarm","torrent", -"web torrent","webrtc data","web worker","a gogo","url-search-params","poly","buster","exorcist","microtime","cujo", -"Promises/A+","isexe","unit.js","@dabh/diagnostics","one-time","abstract-winston-transport","cross-spawn-async","hock", -"file-stream-rotator","@alcalzone/release-script","@alcalzone/release-script-plugin-license","daily-rotate-file", -"log-rotate","logrotate","winston3","bower-config","propprop","wiredep-cli","carriage","new-line","newline","return", -"soft","workbox-build","workbox", -"workboxjs","service worker","fetch requests","offline","file manifest","wordbreak","linewrap","writeFile","atomic", -"HyBi","WebSocket","enstore","x-ray-crawler","x-ray-parse","scrape","is-function","parse-headers","ssf","wmf","crc-32", -"adler-32","codepage","exit-on-epipe","@sheetjs/uglify-js","markdown-spellcheck","xlsb","dbf","dif","sylk","cash-cat", -"codacy-coverage","globify","XML","cdata","CDATA","doctype","processing instruction","Javascript","transforming", -"convertor","converting","conversion","node-expat","dom-js","xmltest","DOMParser","XMLSerializer","find-cache-directory", -"func-xml","@babel/plugin-proposal-unicode-property-regex","@unicode/unicode-14.0.0","babel-plugin-array-includes", -"babel-plugin-transform-xregexp","unicode-property-value-aliases","regular expression","@scion-scxml/test-framework", -"statechart","state machine","finite state machine","finite automata","scxml","interpreter","@types/deep-equal", -"@types/express-ws", -"@types/utf8","xterm-benchmark","terminal-emulator","jest-ts-webcompat-resolver","YAML","yaml2json","json2yaml", -"browserslist-generator","yargs-test-extends","babel-plugin-transform-inline-imports-commonjs","death","loud-rejection", -"repeating","request-capture-har","roadrunner","babel-preset-es2015-node4","babel-preset-node5", -"eslint-config-fb-strict","eslint-config-kittens","eslint-plugin-flow-vars","eslint-plugin-no-async-without-await", -"@yeoman/conflicter","fly-import","grouped-queue","mem-fs","which-package-manager","sinon-test","github-username","yes", -"no","true","false","lenient","cli-list","fullname","parse-help","root-check","npm-keyword","yeoman-doctor", -"humanize-string","yeoman-character","registry-url","@jonahsnider/benchmark","pad-component","cowsay","say","zeromq", -"0mq","ømq","libzmq","binding","@types/express-useragent","express-useragent","schemas","runtime types","DSL", -"@externs/nodejs","JSON2","char-split","express-state","firefox-profile","istanbul-middleware","shallow-copy", +"poly1305","public","salsa20","signatures","twemoji-parser","Twitter","type-coverage-core","tagged-tag","@typescript/vfs","media-typer","checking","@gerrit0/mini-shiki","@material/material-color-utilities","typedoc-theme","material-3","JsDocs","cli-prompt","concatenate","ebook","pandoc","kindlegen","@types/mongoose","mongodb-memory-server-global","mongoose-findorcreate","prettier-tslint","sql-highlight","@sqltools/formatter","gulpclass","@types/sha.js","@sap/hana-client","@types/gulp-rename", +"standard-changelog","@google-cloud/spanner","@types/gulp-sourcemaps","@dprint/formatter","@esfx/canceltoken","@dprint/typescript","monocart-coverage-reports","mocha-fivemat-progress-reporter","eslint-formatter-autolinkable-stylish","commandpost","@types/power-assert","intelli-espower-loader","@types/postcss-modules-local-by-default","@types/postcss-modules-scope","@types/icss-utils","@types/postcss-modules-extract-imports","@types/reserved-words","jest-environment-node-single-context", +"postcss-import-sync2","sass-svg","promise-finally","typings-core","tslint-config-standard","definition","ecma","jsmin","random-bytes","@uiw/formatter","@uiw/react-affix","@uiw/react-alert","@uiw/react-auto-link","@uiw/react-avatar","@uiw/react-back-top", +"@uiw/react-badge","@uiw/react-breadcrumb","@uiw/react-button-group","@uiw/react-calendar","@uiw/react-card","@uiw/react-carousel","@uiw/react-cascader","@uiw/react-checkbox","@uiw/react-collapse","@uiw/react-copy-to-clipboard","@uiw/react-date-input","@uiw/react-date-picker","@uiw/react-descriptions","@uiw/react-divider","@uiw/react-drawer","@uiw/react-dropdown","@uiw/react-empty","@uiw/react-file-input","@uiw/react-form","@uiw/react-grid","@uiw/react-layout","@uiw/react-list","@uiw/react-loader", +"@uiw/react-menu","@uiw/react-message","@uiw/react-modal","@uiw/react-month-picker","@uiw/react-notify","@uiw/react-pagination","@uiw/react-pin-code","@uiw/react-popover","@uiw/react-portal","@uiw/react-progress","@uiw/react-radio","@uiw/react-rate","@uiw/react-search-select","@uiw/react-search-tree","@uiw/react-select","@uiw/react-slider","@uiw/react-split","@uiw/react-steps","@uiw/react-switch","@uiw/react-table","@uiw/react-tabs","@uiw/react-tag","@uiw/react-textarea","@uiw/react-time-picker", +"@uiw/react-tooltip","@uiw/react-transfer","@uiw/react-tree","@uiw/react-tree-checked","media-query-fns","parsel-js","citty","mkdist","untyped","pretty-bytes-cli","browserify-header","@metcoder95/https-pem","dns-packet","jsondiffpatch","trough","@types/extend","unique-random", +"non-repeating","xast","nlcst","visit","pullstream","match-stream","uncompress","pupa","is-npm","fixture-stdout","notifier","urn","uri mutation","url mutation","uri manipulation","url manipulation","uri template","url template","unified resource locator","unified resource identifier","query string","RFC 3986","RFC3986","RFC 6570","RFC6570","sauce-browsers","sauce-test","formstream","ylru","@eggjs/oxlint-config","@tsconfig/node18","@types/proxy","@types/selfsigned","string.prototype.towellformed","urlopen", +"userprofile","yamlparser","browserscope","ua","ua-parse","ua-parser","user agent","is-generator-function","is-typed-array","is-async-supported","rfc9562","bundt","diffs","find-parent-dir","githook","sanitise","@vant/use","@vant/popperjs","diffable-html","vitest-canvas-mock","@vant/area-data","@vant/cli","@vant/eslint-config","@vant/icons","@vercel/go","@vercel/h3","@vercel/fun","@vercel/koa","@vercel/blob", +"@vercel/hono","@vercel/next","@vercel/node","@vercel/ruby","@vercel/rust","@vercel/elysia","@vercel/nestjs","@vercel/python","@vercel/express","@vercel/fastify","@vercel/redwood","@vercel/backends","@vercel/hydrogen","@vercel/build-utils","@vercel/detect-agent","@vercel/static-build","@vercel/remix-builder","epipebomb","promisepipe","@sentry/node","@types/title","jaro-winkler","@types/chance","@types/dotenv","@vercel/client","pcre-to-regexp","git-last-commit","@inquirer/search","@tootallnate/once", +"http-proxy-node16","@inquirer/checkbox","@inquirer/password","@vercel/frameworks","@vercel/error-utils","line-async-iterator","@vercel/fs-detectors","@types/load-json-file","@types/npm-package-arg","@types/write-json-file","@vercel-internals/types","@edge-runtime/node-utils","json-parse-better-errors","@types/jest-expect-message","@vercel-internals/constants","@alex_neo/jest-expect-message","@types/json-parse-better-errors","@vercel-internals/get-package-json","extsprintf","err","create-banner", +"postcss-header","viewer.js","teex","remove-trailing-separator","fs-mkdirp-stream","is-valid-glob","lead","resolve-options","stream-composer","to-through","value-or-function","vinyl-sourcemap","vinyl-adapter","classic", +"browser-split","ev-store","x-is-array","x-is-string","run-browser","vtree","dev-server","build-tool","dotenv-local","slash-path","vite-plugin-builder","api-router","api-routers","vite-plugin-api","vite-plugin-rest-api","express-router","file-system-based","rest-api","api-rest","Remix","Next.js","focus-trap","@shikijs/core","@shikijs/types","@iconify-json/simple-icons","@iconify/utils","@mdit-vue/shared","@mdit-vue/plugin-sfc","@mdit-vue/plugin-toc","markdown-it-mathjax3","@mdit-vue/plugin-title", +"@mdit-vue/plugin-headers","@types/markdown-it-emoji","@mdit-vue/plugin-component","@mdit-vue/plugin-frontmatter","@types/markdown-it-container","@types/postcss-prefix-selector","@vitest/snapshot","why-is-node-running","@vitest/pretty-format","birpc","node-localstorage","gulp-xo","vorpal-less","vorpal-repl","load-plugins","keytar","parse-semver","typed-rest-client","@types/read","@types/yazl","@types/url-join","@types/clone","@types/iconv-lite","vscode-oniguruma","@vue/runtime-dom", +"@babel/plugin-syntax-pipeline-operator","@intlify/shared","@intlify/core-base","@intlify/devtools-types","intlify","@intlify/vue-i18n-loader","@types/mini-css-extract-plugin","@types/webpack-merge", +"markdown-loader","pug-plain-loader","@vue-macros/common","ast-walker-scope","muggle-string","unplugin-utils","@pinia/colada","@types/nightwatch","@vue/language-core","chromedriver","faked-promise","nightwatch-helpers","de-indent","todomvc-app-css","foreachasync","sys","walkSync","exec-sh","outpipe","win-spawn","encrypted-attr","lodash.issafeinteger","waterline-schema","waterline-utils","active-record","vargs","bdd-with-opts","gulp-debug","mu2","promise-simple","spawn-mocha-parallel","sv-selenium", +"web3-eth","web3-net","web3-core","web3-types","web3-utils","web3-errors","web3-eth-abi","web3-eth-ens","web3-eth-iban","web3-validator","web3-rpc-methods","web3-eth-accounts","web3-eth-contract","web3-eth-personal","web3-providers-ws","web3-rpc-providers","web3-providers-http","in3","ganache","web3-providers-ipc","eslint-config-base-web3","@truffle/hdwallet-provider","Ethereum","@solana/spl-token","@solana/web3.js","kva-email-service","micro-ed25519-hdkey","ssl-http-with-docker", +"tailwind-animation-extension","telegram-assistant","web3-react-task","sol", +"@webassemblyjs/ast","@webassemblyjs/wasm-edit","@webassemblyjs/wasm-parser","acorn-import-phases","chrome-trace-event","@codspeed/core","@types/neo-async","@types/xxhashjs","assemblyscript","bundle-loader","coffee-loader","hash-wasm","meriyah","rehype-sanitize","wast-loader","webassembly-feature","xxhashjs","lodash.partial","eslint-config-th0r","postcss-icss-values","@carrotsearch/foamtree","eslint-config-th0r-react","analyzer","@webpack-cli/info","@webpack-cli/configtest","@types/envinfo", +"@fastify/express","@types/on-finished","@types/sockjs","@types/bonjour","bonjour-service","@types/serve-index","@types/serve-static","@types/connect-history-api-fallback","@types/sockjs-client","reloading","hot-reloading","@types/webpack-sources","eslint-config-shellscape","prettier-plugin-package","dts-cli","@types/flat","externals","typedarray-to-buffer","yaeti","networking","comet","@silentbot1/nat-api","@thaunknown/simple-peer","@webtorrent/http-node","addr-to-ip-port","bitfield","bittorrent-dht", +"bittorrent-protocol","cache-chunk-store","chunk-store-iterator","cpus","create-torrent","cross-fetch-ponyfill","fs-chunk-store","fsa-chunk-store","immediate-chunk-store","join-async-iterator","load-ip-set", +"lt_donthave","memory-chunk-store","parse-torrent","random-iterate","speed-limiter","throughput","torrent-discovery","torrent-piece","uint8-util","unordered-array-remove","ut_metadata","ut_pex","@webtorrent/semantic-release-config","airtap-manual","airtap-system","bittorrent-tracker","chrome-net","disc","network-address","path-esm","webtorrent-fixtures","bittorrent","bittorrent client","mad science","p2p","peer-to-peer","peers","swarm","torrent","web torrent","webrtc data","web worker","a gogo", +"url-search-params","poly","buster","exorcist","microtime","cujo","Promises/A+","isexe","unit.js","@dabh/diagnostics","one-time","abstract-winston-transport","cross-spawn-async","hock","file-stream-rotator","@alcalzone/release-script","@alcalzone/release-script-plugin-license","daily-rotate-file","log-rotate","logrotate","winston3","bower-config","propprop","wiredep-cli","carriage","new-line","newline","return","soft","workbox-build","workbox", +"workboxjs","service worker","fetch requests","offline","file manifest","wordbreak","linewrap","writeFile","atomic","HyBi","WebSocket","enstore","x-ray-crawler","x-ray-parse","scrape","is-function","parse-headers","ssf","wmf","crc-32","adler-32","codepage","exit-on-epipe","@sheetjs/uglify-js","markdown-spellcheck","xlsb","dbf","dif","sylk","cash-cat","codacy-coverage","globify","XML","cdata","CDATA","doctype","processing instruction","Javascript","transforming","convertor","converting","conversion", +"node-expat","dom-js","xmltest","DOMParser","XMLSerializer","find-cache-directory","func-xml","@babel/plugin-proposal-unicode-property-regex","@unicode/unicode-14.0.0","babel-plugin-array-includes","babel-plugin-transform-xregexp","unicode-property-value-aliases","regular expression","@scion-scxml/test-framework","statechart","state machine","finite state machine","finite automata","scxml","interpreter","@types/deep-equal","@types/express-ws", +"@types/utf8","xterm-benchmark","terminal-emulator","jest-ts-webcompat-resolver","YAML","yaml2json","json2yaml","browserslist-generator","yargs-test-extends","babel-plugin-transform-inline-imports-commonjs","death","loud-rejection","repeating","request-capture-har","roadrunner","babel-preset-es2015-node4","babel-preset-node5","eslint-config-fb-strict","eslint-config-kittens","eslint-plugin-flow-vars","eslint-plugin-no-async-without-await","@yeoman/conflicter","fly-import","grouped-queue","mem-fs", +"which-package-manager","sinon-test","github-username","yes","no","true","false","lenient","cli-list","fullname","parse-help","root-check","npm-keyword","yeoman-doctor","humanize-string","yeoman-character","registry-url","@jonahsnider/benchmark","pad-component","cowsay","say","zeromq","0mq","ømq","libzmq","binding","@types/express-useragent","express-useragent","schemas","runtime types","DSL","@externs/nodejs","JSON2","char-split","express-state","firefox-profile","istanbul-middleware","shallow-copy", "stack-mapper", -"tap-finished","zuul-localtunnel","browzers","bulk-require","zuul-ngrok","Unit Testing","Storybook","motion-dom", -"motion-utils","@radix-ui/react-dialog","@thednp/dommatrix","react animation","popmotion","belalangkayu", -"rengginangbasi","tehtarik3","sort-array","compute-scroll-into-view","babel-plugin-no-side-effect-class-properties", -"flow-coverage-report","enhanced input","autosuggest","typeahead","omnibox","WAI-ARIA","multiple selection","focus", -"keyboards","mice","pen","pointer","pseudos","ring","trackpad","deepcopy-esm","typed-event-target","execute-in-browser", -"runstorm","toolchain","JSONC","JSX","TSX","GraphQL","@commercetools-frontend/application-components", -"@commercetools-frontend/application-config","@commercetools-frontend/assets", -"@commercetools-frontend/babel-preset-mc-app","@commercetools-frontend/mc-dev-authentication", -"@commercetools-frontend/mc-html-template","@commercetools/http-user-agent","@formatjs/cli-lib","@rollup/plugin-graphql", -"babel-plugin-formatjs","graphql-request","moment-locales-webpack-plugin","thread-loader", -"@commercetools/composable-commerce-test-data","@types/moment-locales-webpack-plugin","@vue/cli-plugin-unit-mocha", -"symlink-dir","tokenize","dogstatsd","datadog","telegraf", -"adr","decision record","any decision record","architectural decision","architectural decision record", -"architecture decision","architecture decision record","software quality","@types/katex","tex","hyperlink", -"@type-challenges/utils","deserialization","deserialize","detect-europe-js","is-standalone-pwa","ua-is-frozen", -"client-hints","browser-detection","device-detection","os-detection","bot-detection","ai-detection","app-detection", -"crawler-detection","youch","@adonisjs/ace","@adonisjs/env","parse-imports","@adonisjs/fold","@adonisjs/hash", -"@adonisjs/repl","youch-terminal","@poppinss/utils","@adonisjs/config","@adonisjs/events","@adonisjs/health", -"@adonisjs/logger","@poppinss/colors","@poppinss/dumper","@poppinss/macroable","@adonisjs/bodyparser", -"@adonisjs/encryption","@adonisjs/application","@adonisjs/http-server","error-stack-parser-es","argon2","edge.js", -"@japa/assert","@japa/runner","@japa/snapshot","@japa/expect-type","@japa/file-system","@adonisjs/tsconfig", -"ts-node-maintained","@adonisjs/assembler","@types/test-console","@adonisjs/eslint-config","@adonisjs/prettier-config", -"adonisjs","@aneuhold/core-ts-api-lib","@aneuhold/core-ts-lib","@aneuhold/local-npm-registry","@aneuhold/main-scripts", -"@capacitor/cli","@trapezedev/project","@types/slice-ansi","resources","splash screen","webOS","@envelop/types", -"@envelop/instrumentation","@whatwg-node/promise-helpers","@ionic/cli-framework-output","@angular-eslint/eslint-plugin", -"@angular-eslint/eslint-plugin-template","@angular-eslint/schematics","ng-packagr","docz","docz-utils", -"docz-theme-default","@asdfgertyjhnpm/nesciunt-molestias-reprehenderit-occaecati", -"@drftgyhuji7npm/rem-sint-necessitatibus-possimus","@drftgyhuji7npm/repellendus-eum-et-itaque","typeerror", -"Reflect.getPrototypeOf","Int8Array","Array","configurable","descriptors","channel","matchAll","Uint32Array", -"Array.prototype.filter","setter","Uint16Array","exit-code","isConcatSpreadable","weakmap","syntaxerror", -"sharedarraybuffer","Object","Array.prototype.flat","toSorted","typesafe","preserve-symlinks","negative zero", -"[[Prototype]]","tester","ArrayBuffer.prototype.slice","byteOffset","zero","ArrayBuffer#slice","trimRight","getter", -"Array.prototype.contains","findLastIndex","last","Int16Array","Int32Array","rangeerror","Float32Array","take", -"workspace:*","byteLength","censor","Symbol.toStringTag","operating-system", -"coercible","Function.prototype.name","ArrayBuffer","private data","Object.fromEntries","0","tostringtag","-0", -"negative","Array.prototype.findLast","enumerable","toobject","interrupts","groupBy","handlers","reuse","Float64Array", -"group","some","collection.es6","sameValueZero","positive","code points","regular expressions","findLast","robust", -"description","Uint8ClampedArray","pnpm9","length","defineProperty","RegExp#flags","valid","accessor","@smithy/types", -"aws-lambda","elapsed-time-logger","gulp-open","cupertino","pane","@pouchlab/ui","chai-jquery","corejs-typeahead", -"doiuse","gulp-add-src","gulp-cache-bust","gulp-check-deps","gulp-sass-lint","gulp4-run-sequence","is-empty-object", -"motion-ui","sassy-lists","undertaker-forward-reference","vinyl-named","handlebars-helper-rel", -"handlebars-helper-slugify","tinygradient","@bokub/prettier-config","gradient","gradients","grommet-icons", -"@storybook/addon-toolbars","@storybook/manager-api","@storybook/source-loader", -"@testing-library/testcafe","babel-plugin-transform-imports","grommet-theme-hpe","jest-styled-components","react-shadow", -"tarball-extract","testcafe-react-selectors","grommet.io","grommetux","theming","sticker sheets","design patterns", -"app templates","atomic design","WCAG 2.1","keyboard navigation","screen reader tags","interaction", -"graphical user interface","dart-sass","grunt-jekyll","zepto","@next/font","axe-playwright","@storybook/test-runner", -"@base-ui-components/react","@storybook/addon-webpack5-compiler-swc","find-process","@types/pretty","chromium", -"launch-image","splashscreen","splash-screen","image-generation","mstile","pwa-assets","@apitools/openapi-parser", -"base64-arraybuffer","xml-but-prettier","babel-plugin-template-html-minifier","inspectpack","Custom Element", -"Web Component","swagger ui","openapi ui","openapi themes","openapi viewer","openapi renderer","openapi explorer", -"swagger themes","@react-native/babel-preset","collapsible","accordion","rollup-plugin-local-resolve","swipeable", -"touchscreen","listview","swipe-to-delete","swipe-actions","use-composed-ref","use-latest","@preconstruct/cli", -"autosize","grow", -"md-writer","@types/common-tags","decimal.js-light","victory-vendor","@recharts/devtools","@storybook/builder-vite", -"@storybook/react-vite","@stryker-mutator/typescript-checker","@stryker-mutator/vitest-runner","@types/d3-interpolate", -"@types/d3-time-format","eslint-config-airbnb-extended","eslint-plugin-react-perf","@riotjs/dom-bindings", -"@riotjs/compiler","@riotjs/prettier-config","@riotjs/register","@riotjs/util","@wdio/mocha-framework", -"@wdio/sauce-service","bianco.attr","bianco.query","cumpa","curri","eslint-config-riot","rollup-plugin-riot", -"custom tags","minimalist","data binding","riotjs","riot.js","testcafe-browser-provider-saucelabs","ng-sortable", -"@use-gesture/vanilla","tdesign-icons-vue-next","@rollup/plugin-url","@soerenmartius/vue3-clipboard", -"@tdesign/site-components","@tdesign/theme-generator","dom-parser","lodash.upperfirst","qrcode.vue", -"rollup-plugin-ignore-import","rollup-plugin-static-import","rollup-plugin-styles","tdesign-publish-cli", -"vite-plugin-tdoc","tdesign","babel-plugin-html-tag","postcss-css-variables","postcss-hexrgba","postcss-prefixer", -"rollup-plugin-module-replacement","rollup-plugin-string","uploader","chunk","image-edit","sockets","ready","win32", -"gulp-convert-css-var","picklog","wechat","weixin", -"@formatjs/intl-localematcher","@napi-rs/simple-git","@shikijs/twoslash","@theguild/remark-mermaid", -"better-react-mathjax","estree-util-value-to-estree","react-compiler-runtime","react-medium-image-zoom","remark-math", -"remark-reading-time","remark-smartypants","unist-util-remove","unist-util-visit-children","@types/negotiator", -"esbuild-plugin-svgr","esbuild-react-compiler-plugin","make-synchronized","make-synchronous","sync-threads", -"synchronize","@ibyar/decorators","aurora","ibyar","expressions","template-syntax","template-expression","evaluation", -"command-center","rich-text-editor","tiptap","@types/babel__preset-env","eslint-plugin-no-null","allure","testops", -"@intlayer/chokidar","@intlayer/core","@types/cls-hooked","user-agents","unist-util-remove-position","@bugsnag/core", -"@bugsnag/delivery-react-native","@bugsnag/plugin-console-breadcrumbs","@bugsnag/plugin-network-breadcrumbs", -"@bugsnag/plugin-react","@bugsnag/plugin-react-native-client-sync","@bugsnag/plugin-react-native-event-sync", -"@bugsnag/plugin-react-native-global-error-handler","@bugsnag/plugin-react-native-hermes", -"@bugsnag/plugin-react-native-session","@bugsnag/plugin-react-native-unhandled-rejection","iserror","bugsnag", -"stability","eslint-plugin-astro","control-panel","backendless-request","backendless-rt-client", -"backendless-console-sdk","bannerize","backendless.com","better-scroll","@zarm-design/bem","@use-gesture/react", -"@zarm-design/icons", -"@floating-ui/react-dom-interactions","@zarm-design/cli","zarm-ui","zarm-mobile","@enact/spotlight","@enact/docs-utils", -"@enact/ui-test-utils","eslint-config-enact-proxy","react select","react dropdown","accessible react select", -"titanium-sdk","tidev","iphone","@antora/expand-path-helper","@asyncapi/generator-components", -"@asyncapi/generator-helpers","@asyncapi/generator-hooks","@asyncapi/multi-parser","fs.extra","global-dirs","requireg", -"unixify","react-loadable","combine-promises","@docusaurus/babel","@docusaurus/logger","@docusaurus/bundler", -"react-router-config","@docusaurus/mdx-loader","@docusaurus/utils-common","@docusaurus/utils-validation", -"react-loadable-ssr-addon-v5-slorber","@total-typescript/shoehorn","@types/react-router-config","Vue","unstyled", -"@nestjsx/crud-request","@nestjsx/util","crud-generator","frameworks","@zmotivat0r/o0","p-filter","p-locate", -"dependency-management","continuous-integration","npmjs","package-manager","gatsby","hugo","core-js-pure", -"jest-location-mock","@types/module-alias","webpack-plugin-serve","hotreload","@pothos/test-utils","pothos","yalc", -"@strapi/core","@strapi/i18n","@strapi/admin","@strapi/email","@strapi/types","@strapi/utils", -"@strapi/logger","@strapi/upload","@types/nodemon","@strapi/openapi","@strapi/database","@strapi/cloud-cli", -"@strapi/generators","get-latest-version","@strapi/permissions","@strapi/data-transfer","@strapi/content-manager", -"@strapi/content-releases","@strapi/review-workflows","@strapi/typescript-utils","@strapi/content-type-builder", -"@strapi/ts-zen","eslint-config-custom","@types/webpack-hot-middleware","strapi","cmf","content management framework", -"koajs","jam","graphqL","infrastructure","snake-case","@types/svg-parser","http-status-emojis", -"@tsparticles/interaction","@tsparticles/move","tsparticles-shape","@tsparticles/updater","@aws-sdk/lib-storage", -"@aws-sdk/s3-presigned-post","express-interceptor","express-prom-bundle","grant","tus-js-client","webdav", -"resumable uploads","tus","dropbox","webpack-chain","vue-server-renderer","@vue/babel-preset-app", -"vuepress-html-webpack-plugin","@types/diacritics","vuepress-plugin-smooth-scroll","detect-browser", -"@walletconnect/safe-json","@walletconnect/window-getters","@walletconnect/window-metadata","@ethersproject/address", -"wallet","walletconnect","jsonrpc","cryptocurrency","dapp","@walletconnect/crypto","@types/qrcode", -"@walletconnect/legacy-client","@walletconnect/jsonrpc-provider","@walletconnect/jsonrpc-http-connection", -"ethereum-test-network", -"@wordpress/element","wordpress","gutenberg","jasmine-co","jasmine-ts","resolve-path","@types/console-ui","@types/esm", -"@types/findup-sync","@types/sane","@types/underscore.string","broccoli-node-api","mocha-jshint", -"babel-plugin-optimize-starts-with","html4","invalid","color-name","is-whitespace","mediaquery","csstree","completion", -"aws-cognito","napa","detector","tinydate","tweezer.js","medium-zoom","autoprefixer-stylus","rollup-plugin-async", -"eslint-plugin-playwright","cp-file","yargonaut","docsify-server-renderer","cli-prompts-test","rollup-plugin-executable", -"ssr-window","eslint-config-standard-react","prettier-check","array-hyper-unique","crlf-normalize","book","books", -"chapter","comic","epub-maker","epub-maker2","node-novel","novel","volume","escaping","interpolate","goat","🐐", -"color-logger","ice-cap","esdoc-importpath-plugin","ECMAScript6","ECMAScript2015","ECMAScript7","ECMAScript2016", -"ECMAScript8","ECMAScript2017","proposal","mdc", -"developer","inter-element","white-space","whitespace","tagname","force","graceful-shutdown","http-shutdown", -"http-terminate","prometheus","icss","inferno-hyperscript","vnode","createVNode","gulp-rtlcss","postcss-preset-infima", -"dark mode","bootswatch","docstrap","@angular-devkit/build-angular","angular-eslint","github-files-fetcher", -"@stitches/react","animate-sass","postcss-trolling","preview jest","log-utils","engine-base","engine-handlebars","lo", -"lo-dash","serve-index-75lb","lws-middleware","micromark-extension","tagfilter","dangerous","grunt-jasmine-node", -"mobilegrade","sniff","nth-child","nth","is-alphanumerical","is-decimal","is-hexadecimal","cssinjs", -"@wdio/selenium-standalone-service","babelrc-rollup","queryselector","shadowdom","gulp-streamify","rc-tools","tappable", -"hammer","@actions/core","@oclif/plugin-autocomplete","toposort","@readme/better-ajv-errors","@readme/standards", -"@types/toposort","@types/unzipper","goober","jest-esm-jsx-transform","parcel-plugin-css-to-string", +"tap-finished","zuul-localtunnel","browzers","bulk-require","zuul-ngrok","Unit Testing","Storybook","motion-dom","motion-utils","@radix-ui/react-dialog","@thednp/dommatrix","react animation","popmotion","belalangkayu","rengginangbasi","tehtarik3","sort-array","compute-scroll-into-view","babel-plugin-no-side-effect-class-properties","flow-coverage-report","enhanced input","autosuggest","typeahead","omnibox","WAI-ARIA","multiple selection","focus","keyboards","mice","pen","pointer","pseudos","ring","trackpad", +"deepcopy-esm","typed-event-target","execute-in-browser","runstorm","toolchain","JSONC","JSX","TSX","GraphQL","@commercetools-frontend/application-components","@commercetools-frontend/application-config","@commercetools-frontend/assets","@commercetools-frontend/babel-preset-mc-app","@commercetools-frontend/mc-dev-authentication","@commercetools-frontend/mc-html-template","@commercetools/http-user-agent","@formatjs/cli-lib","@rollup/plugin-graphql","babel-plugin-formatjs","graphql-request", +"moment-locales-webpack-plugin","thread-loader","@commercetools/composable-commerce-test-data","@types/moment-locales-webpack-plugin","@vue/cli-plugin-unit-mocha","symlink-dir","tokenize","dogstatsd","datadog","telegraf", +"adr","decision record","any decision record","architectural decision","architectural decision record","architecture decision","architecture decision record","software quality","@types/katex","tex","hyperlink","@type-challenges/utils","deserialization","deserialize","detect-europe-js","is-standalone-pwa","ua-is-frozen","client-hints","browser-detection","device-detection","os-detection","bot-detection","ai-detection","app-detection","crawler-detection","youch","@adonisjs/ace","@adonisjs/env","parse-imports", +"@adonisjs/fold","@adonisjs/hash","@adonisjs/repl","youch-terminal","@poppinss/utils","@adonisjs/config","@adonisjs/events","@adonisjs/health","@adonisjs/logger","@poppinss/colors","@poppinss/dumper","@poppinss/macroable","@adonisjs/bodyparser","@adonisjs/encryption","@adonisjs/application","@adonisjs/http-server","error-stack-parser-es","argon2","edge.js","@japa/assert","@japa/runner","@japa/snapshot","@japa/expect-type","@japa/file-system","@adonisjs/tsconfig","ts-node-maintained","@adonisjs/assembler", +"@types/test-console","@adonisjs/eslint-config","@adonisjs/prettier-config","adonisjs","@aneuhold/core-ts-api-lib","@aneuhold/core-ts-lib","@aneuhold/local-npm-registry","@aneuhold/main-scripts", +"@capacitor/cli","@trapezedev/project","@types/slice-ansi","resources","splash screen","webOS","@envelop/types","@envelop/instrumentation","@whatwg-node/promise-helpers","@ionic/cli-framework-output","@angular-eslint/eslint-plugin","@angular-eslint/eslint-plugin-template","@angular-eslint/schematics","ng-packagr","docz","docz-utils","docz-theme-default","@asdfgertyjhnpm/nesciunt-molestias-reprehenderit-occaecati","@drftgyhuji7npm/rem-sint-necessitatibus-possimus","@drftgyhuji7npm/repellendus-eum-et-itaque", +"typeerror","Reflect.getPrototypeOf","Int8Array","Array","configurable","descriptors","channel","matchAll","Uint32Array","Array.prototype.filter","setter","Uint16Array","exit-code","isConcatSpreadable","weakmap","syntaxerror","sharedarraybuffer","Object","Array.prototype.flat","toSorted","typesafe","preserve-symlinks","negative zero","[[Prototype]]","tester","ArrayBuffer.prototype.slice","byteOffset","zero","ArrayBuffer#slice","trimRight","getter","Array.prototype.contains","findLastIndex","last", +"Int16Array","Int32Array","rangeerror","Float32Array","take","workspace:*","byteLength","censor","Symbol.toStringTag","operating-system", +"coercible","Function.prototype.name","ArrayBuffer","private data","Object.fromEntries","0","tostringtag","-0","negative","Array.prototype.findLast","enumerable","toobject","interrupts","groupBy","handlers","reuse","Float64Array","group","some","collection.es6","sameValueZero","positive","code points","regular expressions","findLast","robust","description","Uint8ClampedArray","pnpm9","length","defineProperty","RegExp#flags","valid","accessor","@smithy/types","aws-lambda","elapsed-time-logger","gulp-open", +"cupertino","pane","@pouchlab/ui","chai-jquery","corejs-typeahead","doiuse","gulp-add-src","gulp-cache-bust","gulp-check-deps","gulp-sass-lint","gulp4-run-sequence","is-empty-object","motion-ui","sassy-lists","undertaker-forward-reference","vinyl-named","handlebars-helper-rel","handlebars-helper-slugify","tinygradient","@bokub/prettier-config","gradient","gradients","grommet-icons","@storybook/addon-toolbars","@storybook/manager-api","@storybook/source-loader", +"@testing-library/testcafe","babel-plugin-transform-imports","grommet-theme-hpe","jest-styled-components","react-shadow","tarball-extract","testcafe-react-selectors","grommet.io","grommetux","theming","sticker sheets","design patterns","app templates","atomic design","WCAG 2.1","keyboard navigation","screen reader tags","interaction","graphical user interface","dart-sass","grunt-jekyll","zepto","@next/font","axe-playwright","@storybook/test-runner","@base-ui-components/react", +"@storybook/addon-webpack5-compiler-swc","find-process","@types/pretty","chromium","launch-image","splashscreen","splash-screen","image-generation","mstile","pwa-assets","@apitools/openapi-parser","base64-arraybuffer","xml-but-prettier","babel-plugin-template-html-minifier","inspectpack","Custom Element","Web Component","swagger ui","openapi ui","openapi themes","openapi viewer","openapi renderer","openapi explorer","swagger themes","@react-native/babel-preset","collapsible","accordion", +"rollup-plugin-local-resolve","swipeable","touchscreen","listview","swipe-to-delete","swipe-actions","use-composed-ref","use-latest","@preconstruct/cli","autosize","grow", +"md-writer","@types/common-tags","decimal.js-light","victory-vendor","@recharts/devtools","@storybook/builder-vite","@storybook/react-vite","@stryker-mutator/typescript-checker","@stryker-mutator/vitest-runner","@types/d3-interpolate","@types/d3-time-format","eslint-config-airbnb-extended","eslint-plugin-react-perf","@riotjs/dom-bindings","@riotjs/compiler","@riotjs/prettier-config","@riotjs/register","@riotjs/util","@wdio/mocha-framework","@wdio/sauce-service","bianco.attr","bianco.query","cumpa","curri", +"eslint-config-riot","rollup-plugin-riot","custom tags","minimalist","data binding","riotjs","riot.js","testcafe-browser-provider-saucelabs","ng-sortable","@use-gesture/vanilla","tdesign-icons-vue-next","@rollup/plugin-url","@soerenmartius/vue3-clipboard","@tdesign/site-components","@tdesign/theme-generator","dom-parser","lodash.upperfirst","qrcode.vue","rollup-plugin-ignore-import","rollup-plugin-static-import","rollup-plugin-styles","tdesign-publish-cli","vite-plugin-tdoc","tdesign", +"babel-plugin-html-tag","postcss-css-variables","postcss-hexrgba","postcss-prefixer","rollup-plugin-module-replacement","rollup-plugin-string","uploader","chunk","image-edit","sockets","ready","win32","gulp-convert-css-var","picklog","wechat","weixin", +"@formatjs/intl-localematcher","@napi-rs/simple-git","@shikijs/twoslash","@theguild/remark-mermaid","better-react-mathjax","estree-util-value-to-estree","react-compiler-runtime","react-medium-image-zoom","remark-math","remark-reading-time","remark-smartypants","unist-util-remove","unist-util-visit-children","@types/negotiator","esbuild-plugin-svgr","esbuild-react-compiler-plugin","make-synchronized","make-synchronous","sync-threads","synchronize","@ibyar/decorators","aurora","ibyar","expressions", +"template-syntax","template-expression","evaluation","command-center","rich-text-editor","tiptap","@types/babel__preset-env","eslint-plugin-no-null","allure","testops","@intlayer/chokidar","@intlayer/core","@types/cls-hooked","user-agents","unist-util-remove-position","@bugsnag/core","@bugsnag/delivery-react-native","@bugsnag/plugin-console-breadcrumbs","@bugsnag/plugin-network-breadcrumbs","@bugsnag/plugin-react","@bugsnag/plugin-react-native-client-sync","@bugsnag/plugin-react-native-event-sync", +"@bugsnag/plugin-react-native-global-error-handler","@bugsnag/plugin-react-native-hermes","@bugsnag/plugin-react-native-session","@bugsnag/plugin-react-native-unhandled-rejection","iserror","bugsnag","stability","eslint-plugin-astro","control-panel","backendless-request","backendless-rt-client","backendless-console-sdk","bannerize","backendless.com","better-scroll","@zarm-design/bem","@use-gesture/react","@zarm-design/icons", +"@floating-ui/react-dom-interactions","@zarm-design/cli","zarm-ui","zarm-mobile","@enact/spotlight","@enact/docs-utils","@enact/ui-test-utils","eslint-config-enact-proxy","react select","react dropdown","accessible react select","titanium-sdk","tidev","iphone","@antora/expand-path-helper","@asyncapi/generator-components","@asyncapi/generator-helpers","@asyncapi/generator-hooks","@asyncapi/multi-parser","fs.extra","global-dirs","requireg","unixify","react-loadable","combine-promises","@docusaurus/babel", +"@docusaurus/logger","@docusaurus/bundler","react-router-config","@docusaurus/mdx-loader","@docusaurus/utils-common","@docusaurus/utils-validation","react-loadable-ssr-addon-v5-slorber","@total-typescript/shoehorn","@types/react-router-config","Vue","unstyled","@nestjsx/crud-request","@nestjsx/util","crud-generator","frameworks","@zmotivat0r/o0","p-filter","p-locate","dependency-management","continuous-integration","npmjs","package-manager","gatsby","hugo","core-js-pure","jest-location-mock", +"@types/module-alias","webpack-plugin-serve","hotreload","@pothos/test-utils","pothos","yalc","@strapi/core","@strapi/i18n","@strapi/admin","@strapi/email","@strapi/types","@strapi/utils", +"@strapi/logger","@strapi/upload","@types/nodemon","@strapi/openapi","@strapi/database","@strapi/cloud-cli","@strapi/generators","get-latest-version","@strapi/permissions","@strapi/data-transfer","@strapi/content-manager","@strapi/content-releases","@strapi/review-workflows","@strapi/typescript-utils","@strapi/content-type-builder","@strapi/ts-zen","eslint-config-custom","@types/webpack-hot-middleware","strapi","cmf","content management framework","koajs","jam","graphqL","infrastructure","snake-case", +"@types/svg-parser","http-status-emojis","@tsparticles/interaction","@tsparticles/move","tsparticles-shape","@tsparticles/updater","@aws-sdk/lib-storage","@aws-sdk/s3-presigned-post","express-interceptor","express-prom-bundle","grant","tus-js-client","webdav","resumable uploads","tus","dropbox","webpack-chain","vue-server-renderer","@vue/babel-preset-app","vuepress-html-webpack-plugin","@types/diacritics","vuepress-plugin-smooth-scroll","detect-browser","@walletconnect/safe-json", +"@walletconnect/window-getters","@walletconnect/window-metadata","@ethersproject/address","wallet","walletconnect","jsonrpc","cryptocurrency","dapp","@walletconnect/crypto","@types/qrcode","@walletconnect/legacy-client","@walletconnect/jsonrpc-provider","@walletconnect/jsonrpc-http-connection","ethereum-test-network", +"@wordpress/element","wordpress","gutenberg","jasmine-co","jasmine-ts","resolve-path","@types/console-ui","@types/esm","@types/findup-sync","@types/sane","@types/underscore.string","broccoli-node-api","mocha-jshint","babel-plugin-optimize-starts-with","html4","invalid","color-name","is-whitespace","mediaquery","csstree","completion","aws-cognito","napa","detector","tinydate","tweezer.js","medium-zoom","autoprefixer-stylus","rollup-plugin-async","eslint-plugin-playwright","cp-file","yargonaut", +"docsify-server-renderer","cli-prompts-test","rollup-plugin-executable","ssr-window","eslint-config-standard-react","prettier-check","array-hyper-unique","crlf-normalize","book","books","chapter","comic","epub-maker","epub-maker2","node-novel","novel","volume","escaping","interpolate","goat","🐐","color-logger","ice-cap","esdoc-importpath-plugin","ECMAScript6","ECMAScript2015","ECMAScript7","ECMAScript2016","ECMAScript8","ECMAScript2017","proposal","mdc", +"developer","inter-element","white-space","whitespace","tagname","force","graceful-shutdown","http-shutdown","http-terminate","prometheus","icss","inferno-hyperscript","vnode","createVNode","gulp-rtlcss","postcss-preset-infima","dark mode","bootswatch","docstrap","@angular-devkit/build-angular","angular-eslint","github-files-fetcher","@stitches/react","animate-sass","postcss-trolling","preview jest","log-utils","engine-base","engine-handlebars","lo","lo-dash","serve-index-75lb","lws-middleware", +"micromark-extension","tagfilter","dangerous","grunt-jasmine-node","mobilegrade","sniff","nth-child","nth","is-alphanumerical","is-decimal","is-hexadecimal","cssinjs","@wdio/selenium-standalone-service","babelrc-rollup","queryselector","shadowdom","gulp-streamify","rc-tools","tappable","hammer","@actions/core","@oclif/plugin-autocomplete","toposort","@readme/better-ajv-errors","@readme/standards","@types/toposort","@types/unzipper","goober","jest-esm-jsx-transform","parcel-plugin-css-to-string", "use-throttled-effect", -"color-picker","wai-aria","smart-tv","smarttv","simple-routing","nano-equal","shallow-equal-fuzzy", -"shouldComponentUpdate","quicklook","image-gallery","image-viewer","progressindicator","circle","pie","progressbar", -"indeterminate","d3-interpolate-path","@react-native-community/bob","@storybook/react-native", -"eslint-plugin-react-native","youtube-iframe","iframe","git-branch-is","react-spring", -"@bedrock-layout/use-forwarded-ref","@types/body-scroll-lock","get-nonce","@tsparticles/shape-text", -"@tsparticles/updater-roll","@tsparticles/updater-tilt","@tsparticles/updater-wobble","@tsparticles/plugin-emitters", -"@tsparticles/updater-destroy","@tsparticles/updater-twinkle","@tsparticles/plugin-absorbers", -"@tsparticles/interaction-external-trail","@tsparticles/plugin-emitters-shape-circle", -"@tsparticles/plugin-emitters-shape-square","useRef","createRef","merge refs","detect-node-es", -"@types/enzyme-adapter-react-16","code spliting","sidecar","mutation-observer","copy-text-to-clipboard","svelte-loader", -"scss-loader","perfect-scroll","vue-perfect-scroll","vue-scroll","vue-scrollbar","vue-plugin","滚动条", -"@types/eslint-plugin-prettier","@types/form-data","is-uuid","rewrite-imports","serviceworker","eyes-sdk", -"@dataui/crud-request","@dataui/crud-util","blob-to-buffer", -"drag drop","drag & drop","@expo/spawn-async","@parcel/core","@parcel/fs","@parcel/package-manager","@parcel/watcher", -"mnemonic-id","node-object-hash","@plasmohq/parcel-config","@plasmohq/parcel-core","@plasmohq/init","@plasmo/config", -"@plasmo/constants","@plasmo/utils","@plasmo/framework-shared","browser-extensions","@iconify/react","@types/events", -"static-server","@storybook/cli","less-plugin-sass2less","@storybook/addon-mdx-gfm","music","player","mse","eme", -"ts-expose-internals","dlv","dset","flattie","fontace","unifont","magicast","piccolore","unstorage","zod-to-ts", -"yocto-spinner","@oslojs/encoding","@astrojs/compiler","@astrojs/telemetry","@capsizecss/unpack","http-cache-semantics", -"@astrojs/internal-helpers","deterministic-object-hash","@types/dlv","rehype-toc","astro-scripts","remark-code-titles", -"@types/common-ancestor-path","@types/http-cache-semantics","strata","fuzzysearch","sander","@web/test-runner-core", -"testrunner","ac-colors","hsv","lch","color-names","cmyk","mix","harmonies","@pagefind/default-ui", -"bcp-47","mdast-util-directive","linkedom","piña","pigna","tabbable","@floating-ui/utils","@radix-ui/react-checkbox", -"@radix-ui/react-icons","vitest-browser-react","@types/deep-eql","@amaui/ui-react","amaui","firefoxos","onesy", -"@react-native-macos/virtualized-lists","@tsparticles/plugin-easing-quad","@tsparticles/updater-stroke-color", -"@tsparticles/interaction-external-pause","@tsparticles/interaction-external-bubble", -"@tsparticles/interaction-external-attract","@tsparticles/interaction-external-connect","@types/react-router", -"@backstage/backend-plugin-api","@backstage/config","@backstage/integration","express-promise-router", -"@backstage/backend-test-utils","@backstage/catalog-model","@backstage/cli","@backstage/plugin-catalog-common", -"@backstage/plugin-catalog-node","backstage","ci/cd","immobiliare","immobiliarelabs","rgv", -"@asteasolutions/zod-to-openapi","event-driven","blaze","qs-esm","dataloader","bson-objectid","console-table-printer", -"@payloadcms/translations","graphql-http","@types/range-parser","@monaco-editor/react","@payloadcms/eslint-config", -"@hyrious/esbuild-plugin-commonjs","content management","graphQL","@cfcs/core","@egjs/axes","@egjs/component", -"@egjs/imready","@egjs/list-differ","@daybrush/jsdoc","@egjs/flicking-plugins","@egjs/release-helper", -"@types/resize-observer-browser","egjs-jsdoc-template","html-to-react","http-serve", -"jsdoc-to-mdx","karma-typescript-es6-transform","postcss-clean","print-coveralls","print-sizes","pvu", -"rollup-plugin-prototype-minify","ts-mock-imports","ttypescript","flicking","egjs","body scroll lock upgrade", -"@ucast/mongo2js","@casl/dx","permissions","abac","rbac","ibac","cancan","@humanwhocodes/gitignore-to-minimatch", -"peowly","list-dependents-cli","rslog","@rslib/core","@modern-js/rslib","@modern-js/types","@scripts/rstest-config", -"modern","modern.js","@scripts/build","@scripts/jest-config","import-without-cache","unconfig-core","unrun", -"@sxzz/eslint-config","@sxzz/prettier-config","@sxzz/test-utils","@unocss/eslint-plugin","@vitejs/devtools", -"rolldown-plugin-dts-snapshot","rolldown-plugin-require-cjs","unocss","unplugin-ast","unplugin-lightningcss", -"@types/decompress","fast-equals","glob2regx","ckeditor5-collaboration","@ckeditor/ckeditor5-revision-history", -"@ckeditor/ckeditor5-operations-compressor","@ckeditor/ckeditor-cloud-services-collaboration","@grammyjs/types", -"deno2node","@udecode/plate-utils","@loki/integration-react","@loki/integration-react-native","@loki/integration-vue", -"@loki/runner","@loki/target-chrome-app","@loki/target-chrome-docker","@loki/target-native-android-emulator", -"@loki/target-native-ios-simulator","storybook-addons","react-storybook", -"emoji-datasource","@fastify/static","graphql-jit","mqemitter","single-user-cache","tiny-lru","@matteo.collina/snap", -"@types/isomorphic-form-data","graphql-ws","blue-tape","events.once","xhr2-cookies","convex","mock-spawn", -"@fastify/pre-commit","@reporters/silent","desm","gulp-better-rollup","Leaflet","Maps","Gesture","Handling","two", -"fingers","@testing-library/vue","@fast-check/vitest","@types/eslint-config-prettier","prettier-plugin-pkg", -"prettier-plugin-sh","algo","@oxc-node/cli","eslint-plugin-redos-detector","tsm","bundle-size","@iconify/vue", -"@internationalized/date","@internationalized/number","@nuxt/fonts","@nuxt/icon","@nuxt/kit","@nuxt/schema", -"@nuxtjs/color-mode","@tanstack/vue-table","@tiptap/core","@tiptap/extension-bubble-menu","@tiptap/extension-code", -"@tiptap/extension-collaboration","@tiptap/extension-drag-handle","@tiptap/extension-drag-handle-vue-3", -"@tiptap/extension-floating-menu","@tiptap/extension-horizontal-rule","@tiptap/extension-image", -"@tiptap/extension-mention","@tiptap/extension-node-range","@tiptap/extension-placeholder","@tiptap/markdown", -"@tiptap/pm","@tiptap/starter-kit","@tiptap/suggestion","@tiptap/vue-3","@vueuse/shared","colortranslator", -"embla-carousel-auto-height","embla-carousel-auto-scroll", -"embla-carousel-autoplay","embla-carousel-class-names","embla-carousel-fade","embla-carousel-vue", -"embla-carousel-wheel-gestures","knitwork","motion-v","reka-ui","tailwind-variants","unplugin-auto-import", -"unplugin-vue-components","vaul-vue","vue-component-type-helpers","@nuxt/eslint-config","@nuxt/module-builder", -"@nuxt/test-utils","@tanstack/table-core","vitest-environment-nuxt","nuxt-ui","ui-framework","country-code", -"country-codes","country-flags","country-names","country-telephone-codes","country-telephone-prefixes","countries", -"country-iso-codes","iso","iso-codes","iso-country-codes","iso-country-names","iso-country-telephone-codes", -"iso-country-telephone-prefixes","iso-countries","emoji-flags","phone-codes","phone-prefixes","telephone-codes", -"telephone-prefixes","world-countries","world-country-codes","world-country-flags","world-country-names", -"world-country-telephone-codes","world-country-telephone-prefixes","world-iso-codes","world-iso-country-codes", -"world-iso-country-names","@zoroaster/assert","@zoroaster/mask","alamode","@a-la/fixture-alamode","@a-la/fixture-babel", -"@artdeco/clean-stack","@artdeco/erte","@artdeco/scripts.json","@depack/render","@wrote/exists","@wrote/rm", -"@zoroaster/reducer","@zoroaster/types","argufy","catchment", -"documentary","erotic","eslint-config-artdeco","makepromise","promto","reloquent","snapshot-context","spawncommand", -"temp-context","usually","yarn-s","IDE","suggestions","intellisense","assistant-cloud","@assistant-ui/tap", -"@assistant-ui/store","@radix-ui/primitive","@radix-ui/react-compose-refs","@radix-ui/react-context", -"@radix-ui/react-dropdown-menu","@radix-ui/react-popover","@radix-ui/react-primitive","@radix-ui/react-use-callback-ref", -"@radix-ui/react-use-escape-keydown","assistant-stream","@assistant-ui/x-buildutils","ai-sdk","assistant","copilot", -"ai-chat","ai-chatbot","ai-assistant","ai-copilot","gpt4","gpt-4","conversational-ui","conversational-ai","graphiql", -"radash","@a2a-js/sdk","js-tiktoken","@lukeed/uuid","hono-openapi","@isaacs/ttlcache","@ai-sdk/provider-v5", -"@ai-sdk/provider-v6","@ai-sdk/ui-utils-v5","@mastra/schema-compat","@ai-sdk/provider-utils-v5", -"@ai-sdk/provider-utils-v6","@ai-sdk/azure","@ai-sdk/openai","@internal/lint","@internal/ai-v6","@internal/ai-sdk-v4", -"@internal/ai-sdk-v5","@internal/types-builder","@internal/external-types","@openrouter/ai-sdk-provider","llm","llms", -"agents","vectorstore", -"embeddings","rag","evals","otel","@tailwindcss/ui","@types/sortablejs","vue-next","drag-and-drop","vue-draggable", -"kanban","composition-api","@oxc-project/runtime","hmac256","hmac512","@ant-design/pro-components","@anthropic-ai/sdk", -"@azure-rest/ai-inference","@cfworker/json-schema","@clerk/localizations","@clerk/nextjs","@clerk/themes", -"@cyntler/react-doc-viewer","@fal-ai/client","@formkit/auto-animate","@google/genai","@huggingface/inference", -"@icons-pack/react-simple-icons","@khmyznikov/pwa-install","@langchain/community","@lobechat/agent-runtime", -"@lobechat/const","@lobechat/context-engine","@lobechat/database","@lobechat/electron-client-ipc", -"@lobechat/electron-server-ipc","@lobechat/fetch-sse","@lobechat/file-loaders","@lobechat/model-runtime", -"@lobechat/observability-otel","@lobechat/prompts","@lobechat/python-interpreter","@lobechat/utils", -"@lobechat/web-crawler","@lobehub/analytics","@lobehub/charts","@lobehub/chat-plugin-sdk", -"@lobehub/chat-plugins-gateway","@lobehub/editor","@lobehub/icons","@lobehub/market-sdk","@lobehub/tts","@lobehub/ui", -"@neondatabase/serverless","@next/third-parties","@opentelemetry/exporter-jaeger","@opentelemetry/winston-transport", -"@react-pdf/renderer","@react-spring/web","@saintno/comfyui-sdk","@serwist/next","@t3-oss/env-nextjs","@trpc/client", -"@trpc/next","@trpc/react-query", -"@vercel/analytics","@vercel/edge-config","@vercel/functions","@vercel/speed-insights","@virtuoso.dev/masonry", -"@xterm/xterm","brotli-wasm","countries-and-timezones","dexie","drizzle-zod","gpt-tokenizer", -"i18next-resources-to-backend","js-sha256","jsonl-parse-stringify","langchain","langfuse","langfuse-core","lucide-react", -"markdown-to-txt","model-bank","modern-screenshot","next-mdx-remote","nextjs-toploader","nuqs","officeparser", -"oidc-provider","ollama","partial-json","path-browserify-esm","pdf-parse","plaiceholder","posthog-js", -"pwa-install-handler","react-confetti","react-hotkeys-hook","react-layout-kit","react-pdf","react-rnd","react-scan", -"react-virtuoso","react-wrap-balancer","resolve-accept-language","rtl-detect","ssrf-safe-fetch","svix","tokenx","ts-md5", -"unstructured-client","use-merge-value","word-extractor","zustand-utils","@huggingface/tasks","@lobehub/i18n-cli", -"@lobehub/lint","@lobehub/market-types","@lobehub/seo-cli","@next/bundle-analyzer","@peculiar/webcrypto", -"@types/chroma-js","@types/crypto-js","@types/ip","@types/numeral","@types/oidc-provider","@types/pdfkit", -"@types/rtl-detect","dbdocs","dpdm-fast","drizzle-dbml-generator","drizzle-kit","eslint-plugin-mdx","fake-indexeddb", -"just-diff","mcp-hello-world","remark-mdx","serwist","vercel-ai","azure-openai","visual-model","tts","stt", -"modelcontextprotocol","mcp","context7","vibe-coding","developer tools","@types/istanbul-lib-report", -"@walletconnect/time","@walletconnect/events","label","better-npm-run","clamp.js","karma-fixture","karma-opera-launcher", -"minimalistic","@types/webrtc","detectrtc","install-peers-cli","prepend-file","camera","webcam","cam","webRTC", -"react-native-worklets","visionOS","tvOS","macOS","cpp","swift","jsi","@dotenvx/dotenvx", -"@types/validate-npm-package-name","stringify-object","@types/stringify-object","virtual-core","datagrid","2fa","hotp", -"topt","google authenticator","authenticator","one time password","one-time-password","2 factor","survey","surveyjs", -"survey-library","form-component","form-rendering", -"dynamic-form","interactive-form","form-library","form-management","questionnaire","data-collection","data-validation", -"input-validation","ui-component","schema-form","base64-stream","bplist-creator","@mrleebo/prisma-ast", -"@electric-sql/pglite-socket","@prisma/query-plan-executor","common-stuff","accelerate","@aws-lite/client", -"@aws-lite/s3","@architect/eslint-config","mock-tmp","tap-arc","cloudfunctions","apigateway","api gateway", -"@webgpu/types","@tinymce/tinymce-react","n1ed","@headlessui/tailwindcss","@heroicons/react","@tailwindplus/elements", -"@types/sharp","react-docgen-typescript","react-lib-tools","rollup-preserve-directives","ts-blank-space", -"vitest-fail-on-console","windowed","@extend-chrome/messages","@extend-chrome/storage","@types/chrome","@types/jsesc", -"vite-plugin-inspect","chrome-extension","webext","webextension","browser-extension","isoformat","interval-tree-1d", -"htl","@types/d3","apache-arrow","d3-geo-projection","@observablehq/stdlib","string-split-by","cargo-cp-artifact","skia", +"color-picker","wai-aria","smart-tv","smarttv","simple-routing","nano-equal","shallow-equal-fuzzy","shouldComponentUpdate","quicklook","image-gallery","image-viewer","progressindicator","circle","pie","progressbar","indeterminate","d3-interpolate-path","@react-native-community/bob","@storybook/react-native","eslint-plugin-react-native","youtube-iframe","iframe","git-branch-is","react-spring","@bedrock-layout/use-forwarded-ref","@types/body-scroll-lock","get-nonce","@tsparticles/shape-text", +"@tsparticles/updater-roll","@tsparticles/updater-tilt","@tsparticles/updater-wobble","@tsparticles/plugin-emitters","@tsparticles/updater-destroy","@tsparticles/updater-twinkle","@tsparticles/plugin-absorbers","@tsparticles/interaction-external-trail","@tsparticles/plugin-emitters-shape-circle","@tsparticles/plugin-emitters-shape-square","useRef","createRef","merge refs","detect-node-es","@types/enzyme-adapter-react-16","code spliting","sidecar","mutation-observer","copy-text-to-clipboard","svelte-loader", +"scss-loader","perfect-scroll","vue-perfect-scroll","vue-scroll","vue-scrollbar","vue-plugin","滚动条","@types/eslint-plugin-prettier","@types/form-data","is-uuid","rewrite-imports","serviceworker","eyes-sdk","@dataui/crud-request","@dataui/crud-util","blob-to-buffer", +"drag drop","drag & drop","@expo/spawn-async","@parcel/core","@parcel/fs","@parcel/package-manager","@parcel/watcher","mnemonic-id","node-object-hash","@plasmohq/parcel-config","@plasmohq/parcel-core","@plasmohq/init","@plasmo/config","@plasmo/constants","@plasmo/utils","@plasmo/framework-shared","browser-extensions","@iconify/react","@types/events","static-server","@storybook/cli","less-plugin-sass2less","@storybook/addon-mdx-gfm","music","player","mse","eme","ts-expose-internals","dlv","dset","flattie", +"fontace","unifont","magicast","piccolore","unstorage","zod-to-ts","yocto-spinner","@oslojs/encoding","@astrojs/compiler","@astrojs/telemetry","@capsizecss/unpack","http-cache-semantics","@astrojs/internal-helpers","deterministic-object-hash","@types/dlv","rehype-toc","astro-scripts","remark-code-titles","@types/common-ancestor-path","@types/http-cache-semantics","strata","fuzzysearch","sander","@web/test-runner-core","testrunner","ac-colors","hsv","lch","color-names","cmyk","mix","harmonies", +"@pagefind/default-ui", +"bcp-47","mdast-util-directive","linkedom","piña","pigna","tabbable","@floating-ui/utils","@radix-ui/react-checkbox","@radix-ui/react-icons","vitest-browser-react","@types/deep-eql","@amaui/ui-react","amaui","firefoxos","onesy","@react-native-macos/virtualized-lists","@tsparticles/plugin-easing-quad","@tsparticles/updater-stroke-color","@tsparticles/interaction-external-pause","@tsparticles/interaction-external-bubble","@tsparticles/interaction-external-attract","@tsparticles/interaction-external-connect", +"@types/react-router","@backstage/backend-plugin-api","@backstage/config","@backstage/integration","express-promise-router","@backstage/backend-test-utils","@backstage/catalog-model","@backstage/cli","@backstage/plugin-catalog-common","@backstage/plugin-catalog-node","backstage","ci/cd","immobiliare","immobiliarelabs","rgv","@asteasolutions/zod-to-openapi","event-driven","blaze","qs-esm","dataloader","bson-objectid","console-table-printer","@payloadcms/translations","graphql-http","@types/range-parser", +"@monaco-editor/react","@payloadcms/eslint-config","@hyrious/esbuild-plugin-commonjs","content management","graphQL","@cfcs/core","@egjs/axes","@egjs/component","@egjs/imready","@egjs/list-differ","@daybrush/jsdoc","@egjs/flicking-plugins","@egjs/release-helper","@types/resize-observer-browser","egjs-jsdoc-template","html-to-react","http-serve", +"jsdoc-to-mdx","karma-typescript-es6-transform","postcss-clean","print-coveralls","print-sizes","pvu","rollup-plugin-prototype-minify","ts-mock-imports","ttypescript","flicking","egjs","body scroll lock upgrade","@ucast/mongo2js","@casl/dx","permissions","abac","rbac","ibac","cancan","@humanwhocodes/gitignore-to-minimatch","peowly","list-dependents-cli","rslog","@rslib/core","@modern-js/rslib","@modern-js/types","@scripts/rstest-config","modern","modern.js","@scripts/build","@scripts/jest-config", +"import-without-cache","unconfig-core","unrun","@sxzz/eslint-config","@sxzz/prettier-config","@sxzz/test-utils","@unocss/eslint-plugin","@vitejs/devtools","rolldown-plugin-dts-snapshot","rolldown-plugin-require-cjs","unocss","unplugin-ast","unplugin-lightningcss","@types/decompress","fast-equals","glob2regx","ckeditor5-collaboration","@ckeditor/ckeditor5-revision-history","@ckeditor/ckeditor5-operations-compressor","@ckeditor/ckeditor-cloud-services-collaboration","@grammyjs/types","deno2node", +"@udecode/plate-utils","@loki/integration-react","@loki/integration-react-native","@loki/integration-vue","@loki/runner","@loki/target-chrome-app","@loki/target-chrome-docker","@loki/target-native-android-emulator","@loki/target-native-ios-simulator","storybook-addons","react-storybook", +"emoji-datasource","@fastify/static","graphql-jit","mqemitter","single-user-cache","tiny-lru","@matteo.collina/snap","@types/isomorphic-form-data","graphql-ws","blue-tape","events.once","xhr2-cookies","convex","mock-spawn","@fastify/pre-commit","@reporters/silent","desm","gulp-better-rollup","Leaflet","Maps","Gesture","Handling","two","fingers","@testing-library/vue","@fast-check/vitest","@types/eslint-config-prettier","prettier-plugin-pkg","prettier-plugin-sh","algo","@oxc-node/cli", +"eslint-plugin-redos-detector","tsm","bundle-size","@iconify/vue","@internationalized/date","@internationalized/number","@nuxt/fonts","@nuxt/icon","@nuxt/kit","@nuxt/schema","@nuxtjs/color-mode","@tanstack/vue-table","@tiptap/core","@tiptap/extension-bubble-menu","@tiptap/extension-code","@tiptap/extension-collaboration","@tiptap/extension-drag-handle","@tiptap/extension-drag-handle-vue-3","@tiptap/extension-floating-menu","@tiptap/extension-horizontal-rule","@tiptap/extension-image", +"@tiptap/extension-mention","@tiptap/extension-node-range","@tiptap/extension-placeholder","@tiptap/markdown","@tiptap/pm","@tiptap/starter-kit","@tiptap/suggestion","@tiptap/vue-3","@vueuse/shared","colortranslator","embla-carousel-auto-height","embla-carousel-auto-scroll", +"embla-carousel-autoplay","embla-carousel-class-names","embla-carousel-fade","embla-carousel-vue","embla-carousel-wheel-gestures","knitwork","motion-v","reka-ui","tailwind-variants","unplugin-auto-import","unplugin-vue-components","vaul-vue","vue-component-type-helpers","@nuxt/eslint-config","@nuxt/module-builder","@nuxt/test-utils","@tanstack/table-core","vitest-environment-nuxt","nuxt-ui","ui-framework","country-code","country-codes","country-flags","country-names","country-telephone-codes", +"country-telephone-prefixes","countries","country-iso-codes","iso","iso-codes","iso-country-codes","iso-country-names","iso-country-telephone-codes","iso-country-telephone-prefixes","iso-countries","emoji-flags","phone-codes","phone-prefixes","telephone-codes","telephone-prefixes","world-countries","world-country-codes","world-country-flags","world-country-names","world-country-telephone-codes","world-country-telephone-prefixes","world-iso-codes","world-iso-country-codes","world-iso-country-names", +"@zoroaster/assert","@zoroaster/mask","alamode","@a-la/fixture-alamode","@a-la/fixture-babel","@artdeco/clean-stack","@artdeco/erte","@artdeco/scripts.json","@depack/render","@wrote/exists","@wrote/rm","@zoroaster/reducer","@zoroaster/types","argufy","catchment", +"documentary","erotic","eslint-config-artdeco","makepromise","promto","reloquent","snapshot-context","spawncommand","temp-context","usually","yarn-s","IDE","suggestions","intellisense","assistant-cloud","@assistant-ui/tap","@assistant-ui/store","@radix-ui/primitive","@radix-ui/react-compose-refs","@radix-ui/react-context","@radix-ui/react-dropdown-menu","@radix-ui/react-popover","@radix-ui/react-primitive","@radix-ui/react-use-callback-ref","@radix-ui/react-use-escape-keydown","assistant-stream", +"@assistant-ui/x-buildutils","ai-sdk","assistant","copilot","ai-chat","ai-chatbot","ai-assistant","ai-copilot","gpt4","gpt-4","conversational-ui","conversational-ai","graphiql","radash","@a2a-js/sdk","js-tiktoken","@lukeed/uuid","hono-openapi","@isaacs/ttlcache","@ai-sdk/provider-v5","@ai-sdk/provider-v6","@ai-sdk/ui-utils-v5","@mastra/schema-compat","@ai-sdk/provider-utils-v5","@ai-sdk/provider-utils-v6","@ai-sdk/azure","@ai-sdk/openai","@internal/lint","@internal/ai-v6","@internal/ai-sdk-v4", +"@internal/ai-sdk-v5","@internal/types-builder","@internal/external-types","@openrouter/ai-sdk-provider","llm","llms","agents","vectorstore", +"embeddings","rag","evals","otel","@tailwindcss/ui","@types/sortablejs","vue-next","drag-and-drop","vue-draggable","kanban","composition-api","@oxc-project/runtime","hmac256","hmac512","@ant-design/pro-components","@anthropic-ai/sdk","@azure-rest/ai-inference","@cfworker/json-schema","@clerk/localizations","@clerk/nextjs","@clerk/themes","@cyntler/react-doc-viewer","@fal-ai/client","@formkit/auto-animate","@google/genai","@huggingface/inference","@icons-pack/react-simple-icons","@khmyznikov/pwa-install", +"@langchain/community","@lobechat/agent-runtime","@lobechat/const","@lobechat/context-engine","@lobechat/database","@lobechat/electron-client-ipc","@lobechat/electron-server-ipc","@lobechat/fetch-sse","@lobechat/file-loaders","@lobechat/model-runtime","@lobechat/observability-otel","@lobechat/prompts","@lobechat/python-interpreter","@lobechat/utils","@lobechat/web-crawler","@lobehub/analytics","@lobehub/charts","@lobehub/chat-plugin-sdk","@lobehub/chat-plugins-gateway","@lobehub/editor","@lobehub/icons", +"@lobehub/market-sdk","@lobehub/tts","@lobehub/ui","@neondatabase/serverless","@next/third-parties","@opentelemetry/exporter-jaeger","@opentelemetry/winston-transport","@react-pdf/renderer","@react-spring/web","@saintno/comfyui-sdk","@serwist/next","@t3-oss/env-nextjs","@trpc/client","@trpc/next","@trpc/react-query", +"@vercel/analytics","@vercel/edge-config","@vercel/functions","@vercel/speed-insights","@virtuoso.dev/masonry","@xterm/xterm","brotli-wasm","countries-and-timezones","dexie","drizzle-zod","gpt-tokenizer","i18next-resources-to-backend","js-sha256","jsonl-parse-stringify","langchain","langfuse","langfuse-core","lucide-react","markdown-to-txt","model-bank","modern-screenshot","next-mdx-remote","nextjs-toploader","nuqs","officeparser","oidc-provider","ollama","partial-json","path-browserify-esm","pdf-parse", +"plaiceholder","posthog-js","pwa-install-handler","react-confetti","react-hotkeys-hook","react-layout-kit","react-pdf","react-rnd","react-scan","react-virtuoso","react-wrap-balancer","resolve-accept-language","rtl-detect","ssrf-safe-fetch","svix","tokenx","ts-md5","unstructured-client","use-merge-value","word-extractor","zustand-utils","@huggingface/tasks","@lobehub/i18n-cli","@lobehub/lint","@lobehub/market-types","@lobehub/seo-cli","@next/bundle-analyzer","@peculiar/webcrypto","@types/chroma-js", +"@types/crypto-js","@types/ip","@types/numeral","@types/oidc-provider","@types/pdfkit", +"@types/rtl-detect","dbdocs","dpdm-fast","drizzle-dbml-generator","drizzle-kit","eslint-plugin-mdx","fake-indexeddb","just-diff","mcp-hello-world","remark-mdx","serwist","vercel-ai","azure-openai","visual-model","tts","stt","modelcontextprotocol","mcp","context7","vibe-coding","developer tools","@types/istanbul-lib-report","@walletconnect/time","@walletconnect/events","label","better-npm-run","clamp.js","karma-fixture","karma-opera-launcher","minimalistic","@types/webrtc","detectrtc","install-peers-cli", +"prepend-file","camera","webcam","cam","webRTC","react-native-worklets","visionOS","tvOS","macOS","cpp","swift","jsi","@dotenvx/dotenvx","@types/validate-npm-package-name","stringify-object","@types/stringify-object","virtual-core","datagrid","2fa","hotp","topt","google authenticator","authenticator","one time password","one-time-password","2 factor","survey","surveyjs","survey-library","form-component","form-rendering", +"dynamic-form","interactive-form","form-library","form-management","questionnaire","data-collection","data-validation","input-validation","ui-component","schema-form","base64-stream","bplist-creator","@mrleebo/prisma-ast","@electric-sql/pglite-socket","@prisma/query-plan-executor","common-stuff","accelerate","@aws-lite/client","@aws-lite/s3","@architect/eslint-config","mock-tmp","tap-arc","cloudfunctions","apigateway","api gateway","@webgpu/types","@tinymce/tinymce-react","n1ed","@headlessui/tailwindcss", +"@heroicons/react","@tailwindplus/elements","@types/sharp","react-docgen-typescript","react-lib-tools","rollup-preserve-directives","ts-blank-space","vitest-fail-on-console","windowed","@extend-chrome/messages","@extend-chrome/storage","@types/chrome","@types/jsesc","vite-plugin-inspect","chrome-extension","webext","webextension","browser-extension","isoformat","interval-tree-1d","htl","@types/d3","apache-arrow","d3-geo-projection","@observablehq/stdlib","string-split-by","cargo-cp-artifact","skia", "offscreen","compositing","vulkan","metal","imgpen","unsplash","@types/listr", -"markdown-to-pdf","pdf-generation","assignments","homework","html-to-pdf","@applitools/core","@applitools/req", -"@applitools/image","@applitools/spec-driver-webdriver","@antora/user-require-helper","kapok-js","@asciidoctor/core", -"navigation","asciidoc","pod-install","pinch-to-zoom","pinch","@farmfe/cli","@farmfe/core","bun-types-no-globals", -"eslint-plugin-format","unloader","redirects","@antora/file-publisher","publisher","vite-plugin-typescript-transform", -"box2d","physics","sandboxed-module","oxc","exact-versions","turborepo","version-linter","@jsdevtools/ez-spawn", -"@napi-rs/magic-string","@pnpm/list","@pnpm/workspace.find-packages","@types/treeverse","@types/yarnpkg__lockfile", -"fast-npm-meta","@nolyfill/internal","@nolyfill/promise.any","fumadb","kysely","@orpc/zod","@orpc/otel","neverthrow", -"@c15t/logger","@orpc/server","@orpc/openapi","@orpc/contract","@c15t/translations","@opentelemetry/sdk-node", -"kysely-pglite","@c15t/vitest-config","@libsql/kysely-libsql","@c15t/typescript-config","consent","privacy","ccpa", -"lgpd","self-host","consent-management","user-privacy", -"data-protection","cookie-banner","consent-management-platform","cmp","consent-banner", -"@ampproject/rollup-plugin-closure-compiler","@fezvrasta/tsc-silent","@khanacademy/flow-to-ts", -"babel-plugin-inline-replace-variables","poster","rollup-plugin-flow-entry","popper","positioning engine","anime", -"anime.js","timeline","easings","cubic-bezier","splitText","WAAPI","Canvas","WebGL","decrypt","ev-emitter", -"fizzy-ui-utils","get-size","imagesloaded","unidragger","eslint-plugin-metafizzy","jquery-bridget","flick", -"gulp-wrap-commonjs","lex","maths","persist-schema","panorama","rip-out","eslint-config-godaddy-react","setup-env", -"compatiblity","rollup-plugin-eslint","rollup-plugin-sass","testit","gethub","bits","iec"], +"markdown-to-pdf","pdf-generation","assignments","homework","html-to-pdf","@applitools/core","@applitools/req","@applitools/image","@applitools/spec-driver-webdriver","@antora/user-require-helper","kapok-js","@asciidoctor/core","navigation","asciidoc","pod-install","pinch-to-zoom","pinch","@farmfe/cli","@farmfe/core","bun-types-no-globals","eslint-plugin-format","unloader","redirects","@antora/file-publisher","publisher","vite-plugin-typescript-transform","box2d","physics","sandboxed-module","oxc", +"exact-versions","turborepo","version-linter","@jsdevtools/ez-spawn","@napi-rs/magic-string","@pnpm/list","@pnpm/workspace.find-packages","@types/treeverse","@types/yarnpkg__lockfile","fast-npm-meta","@nolyfill/internal","@nolyfill/promise.any","fumadb","kysely","@orpc/zod","@orpc/otel","neverthrow","@c15t/logger","@orpc/server","@orpc/openapi","@orpc/contract","@c15t/translations","@opentelemetry/sdk-node","kysely-pglite","@c15t/vitest-config","@libsql/kysely-libsql","@c15t/typescript-config","consent", +"privacy","ccpa","lgpd","self-host","consent-management","user-privacy", +"data-protection","cookie-banner","consent-management-platform","cmp","consent-banner","@ampproject/rollup-plugin-closure-compiler","@fezvrasta/tsc-silent","@khanacademy/flow-to-ts","babel-plugin-inline-replace-variables","poster","rollup-plugin-flow-entry","popper","positioning engine","anime","anime.js","timeline","easings","cubic-bezier","splitText","WAAPI","Canvas","WebGL","decrypt","ev-emitter","fizzy-ui-utils","get-size","imagesloaded","unidragger","eslint-plugin-metafizzy","jquery-bridget","flick", +"gulp-wrap-commonjs","lex","maths","persist-schema","panorama","rip-out","eslint-config-godaddy-react","setup-env","compatiblity","rollup-plugin-eslint","rollup-plugin-sass","testit","gethub","bits","iec"], [5,293,294], [0,-693,-2480,-7487,-440], 1771718400000, @@ -2729,13 +722,8 @@ true, [0,-6], [0,-42,-116,-73,-1722], [1,3,674], -[0,-1901,-1902,-2294,-2971,-2297,-2298,-2304,-2306,-2307,-2308,-2309,-2311,-2312,-2313,-4918,-2314,-2315,-2316,-2317, --2980,-4919,-2981,-2982,-2983,-3395,-2319,-2321,-2985,-2323,-2324,-4920,-2325,-1932,-4921,-3396,-4922,-4923,-3397,-2334, --2336,-2337,-2338,-2342,-4924,-3398,-3010,-3011,-2344,-2345,-3399,-2350,-2351,-3038,-2353,-3400,-3049,-2370,-2371,-2372, --4925,-2373,-2376,-2378, --4926,-2380,-4927,-2384,-2385,-2387,-2388,-2390,-2396,-3401,-2397,-2398,-2401,-2402,-3402,-1688,-3098,-4928,-3102,-2422, --4929,-3403,-3103,-2425,-2426,-2427,-2428,-2431,-3404,-2432,-2435,-4930,-2436,-2438,-3405,-2440,-2441,-2445,-2448,-2450, --2451,-3406,-3407,-3408,-289,-3409,-3410,-3131], +[0,-1901,-1902,-2294,-2971,-2297,-2298,-2304,-2306,-2307,-2308,-2309,-2311,-2312,-2313,-4918,-2314,-2315,-2316,-2317,-2980,-4919,-2981,-2982,-2983,-3395,-2319,-2321,-2985,-2323,-2324,-4920,-2325,-1932,-4921,-3396,-4922,-4923,-3397,-2334,-2336,-2337,-2338,-2342,-4924,-3398,-3010,-3011,-2344,-2345,-3399,-2350,-2351,-3038,-2353,-3400,-3049,-2370,-2371,-2372,-4925,-2373,-2376,-2378, +-4926,-2380,-4927,-2384,-2385,-2387,-2388,-2390,-2396,-3401,-2397,-2398,-2401,-2402,-3402,-1688,-3098,-4928,-3102,-2422,-4929,-3403,-3103,-2425,-2426,-2427,-2428,-2431,-3404,-2432,-2435,-4930,-2436,-2438,-3405,-2440,-2441,-2445,-2448,-2450,-2451,-3406,-3407,-3408,-289,-3409,-3410,-3131], [0,-1901,-1902,-1932,-1688,-289], [1,3,1519], [1,3,2972], @@ -2754,28 +742,15 @@ true, [0,-464], [1,3,623], [1,24,645], -[0,-2058,-2548,-1755,-1756,-37,-316,-299,-1757,-543,-569,-116,-3258,-352,-2549,-195,-1508,-2059,-45,-1294,-144,-353,-495, --2060,-392,-2061,-1256,-1010,-3259,-1489,-1509,-1295,-178,-445,-102,-1011,-1716,-2062], +[0,-2058,-2548,-1755,-1756,-37,-316,-299,-1757,-543,-569,-116,-3258,-352,-2549,-195,-1508,-2059,-45,-1294,-144,-353,-495,-2060,-392,-2061,-1256,-1010,-3259,-1489,-1509,-1295,-178,-445,-102,-1011,-1716,-2062], [0,-1152,-1765,-1766,-1305,-1306,-2081,-1767,-1768,-826], [0,-73,-897,-52,-8189,-127,-4769,-8190,-8191,-8192], [1,3,1380], -[0,-1901,-1902,-2294,-2297,-2298,-2304,-2306,-2307,-2308,-2309,-2311,-2312,-2313,-2314,-2315,-2316,-2317,-3395,-2319, --2321,-2323,-2324,-2325,-1932,-3396,-3397,-2334,-2336,-2337,-2338,-2342,-3398,-2344,-2345,-3399,-2350,-2351,-2353,-3400, --2370,-2371,-2372,-2373,-2376,-2378,-2380,-2384,-2385,-2387,-2388,-2390,-2396,-3401,-2397,-2398,-2401,-2402,-3402,-1688, --2422,-3403,-2425,-2426, --2427,-2428,-2431,-3404,-2432,-2435,-2436,-2438,-3405,-2440,-2441,-2445,-2448,-2450,-2451,-3406,-3407,-3408,-289,-3409, --3410], -[0,-1901,-1902,-4106,-2294,-2971,-2297,-2298,-8890,-4114,-2304,-2306,-2307,-2308,-2309,-8891,-2311,-2312,-2313,-4918, --2314,-2315,-2316,-2317,-2980,-4919,-2981,-2982,-2983,-8892,-3395,-4119,-2319,-8893,-2321,-8894,-2985,-2323,-2324,-4920, --2325,-4124,-1932,-4921,-3396,-8895,-8896,-4922,-4923,-3397,-2334,-2336,-2337,-8897,-2338,-4146,-4153,-2342,-4924,-8898, --3398,-3010,-3011,-4167, --4171,-4173,-8899,-2344,-4178,-4179,-2345,-3399,-4204,-2350,-2351,-4207,-3038,-2353,-4210,-8900,-3400,-3049,-8901,-8902, --2370,-2371,-2372,-4925,-2373,-8903,-2376,-8904,-2378,-4926,-2380,-4927,-2384,-4247,-8905,-8906,-4248,-2385,-2387,-2388, --8907,-2390,-2396,-3401,-2397,-2398,-8908,-4275,-2401,-2402,-3402,-1688,-3098,-4928,-8909,-3102,-4312,-4313,-2422,-4929, --8910,-3403,-8911,-3103, --2425,-2426,-4318,-2427,-2428,-4319,-4320,-4321,-2431,-3404,-8912,-2432,-4323,-2435,-4930,-2436,-8913,-4328,-2438,-3405, --2440,-2441,-2445,-4334,-2448,-8914,-8915,-2450,-2451,-3406,-3407,-3408,-289,-4342,-4344,-3409,-8916,-8917,-4349,-4350, --3410,-8918,-3131], +[0,-1901,-1902,-2294,-2297,-2298,-2304,-2306,-2307,-2308,-2309,-2311,-2312,-2313,-2314,-2315,-2316,-2317,-3395,-2319,-2321,-2323,-2324,-2325,-1932,-3396,-3397,-2334,-2336,-2337,-2338,-2342,-3398,-2344,-2345,-3399,-2350,-2351,-2353,-3400,-2370,-2371,-2372,-2373,-2376,-2378,-2380,-2384,-2385,-2387,-2388,-2390,-2396,-3401,-2397,-2398,-2401,-2402,-3402,-1688,-2422,-3403,-2425,-2426, +-2427,-2428,-2431,-3404,-2432,-2435,-2436,-2438,-3405,-2440,-2441,-2445,-2448,-2450,-2451,-3406,-3407,-3408,-289,-3409,-3410], +[0,-1901,-1902,-4106,-2294,-2971,-2297,-2298,-8890,-4114,-2304,-2306,-2307,-2308,-2309,-8891,-2311,-2312,-2313,-4918,-2314,-2315,-2316,-2317,-2980,-4919,-2981,-2982,-2983,-8892,-3395,-4119,-2319,-8893,-2321,-8894,-2985,-2323,-2324,-4920,-2325,-4124,-1932,-4921,-3396,-8895,-8896,-4922,-4923,-3397,-2334,-2336,-2337,-8897,-2338,-4146,-4153,-2342,-4924,-8898,-3398,-3010,-3011,-4167, +-4171,-4173,-8899,-2344,-4178,-4179,-2345,-3399,-4204,-2350,-2351,-4207,-3038,-2353,-4210,-8900,-3400,-3049,-8901,-8902,-2370,-2371,-2372,-4925,-2373,-8903,-2376,-8904,-2378,-4926,-2380,-4927,-2384,-4247,-8905,-8906,-4248,-2385,-2387,-2388,-8907,-2390,-2396,-3401,-2397,-2398,-8908,-4275,-2401,-2402,-3402,-1688,-3098,-4928,-8909,-3102,-4312,-4313,-2422,-4929,-8910,-3403,-8911,-3103, +-2425,-2426,-4318,-2427,-2428,-4319,-4320,-4321,-2431,-3404,-8912,-2432,-4323,-2435,-4930,-2436,-8913,-4328,-2438,-3405,-2440,-2441,-2445,-4334,-2448,-8914,-8915,-2450,-2451,-3406,-3407,-3408,-289,-4342,-4344,-3409,-8916,-8917,-4349,-4350,-3410,-8918,-3131], [1,3,2681], [0,-3,-81], [0,-85], @@ -2784,9 +759,7 @@ true, [1,3,308], [0,-58], [0,-1769], -[0,-192,-52,-1485,-1791,-2104,-1792,-1524,-322,-1793,-1794,-1795,-2105,-2106,-1796,-1797,-2107,-2108,-2109,-6,-527,-2110, --2111,-2112,-2113,-73,-1319,-494,-2114,-248,-1320,-184,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-2115, --322,-2116,-2117,-2118,-2119,-2120,-2121], +[0,-192,-52,-1485,-1791,-2104,-1792,-1524,-322,-1793,-1794,-1795,-2105,-2106,-1796,-1797,-2107,-2108,-2109,-6,-527,-2110,-2111,-2112,-2113,-73,-1319,-494,-2114,-248,-1320,-184,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-2115,-322,-2116,-2117,-2118,-2119,-2120,-2121], [1,3,1342], [1,3,1453], [1,3,1877], @@ -2806,14 +779,9 @@ true, [0,-121], [0,-2,-2002,-6015,-1808,-422,-1161,-100,-5923,-15399,-46,-15400], [1,3,10143], -[0,-192,-52,-1485,-1791,-2104,-1792,-1524,-322,-1793,-1794,-1795,-2105,-2106,-1796,-1797,-2107,-2108,-2109,-6,-527,-2110, --2111,-2112,-2113,-73,-1319,-494,-2114,-248,-1320,-184,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-2115, --322,-2116,-2117,-2118,-2119,-2120,-2121,-2939,-15452], -[0,-192,-52,-1485,-1792,-1524,-322,-1793,-1794,-1795,-1791,-1796,-1797,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321, --1800,-1322,-15454], -[0,-192,-52,-1485,-1791,-2104,-1792,-1524,-322,-1793,-1794,-1795,-2105,-2106,-1796,-1797,-2107,-2108,-2109,-6,-527,-2110, --2111,-2112,-2113,-73,-1319,-494,-2114,-248,-1320,-184,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-2115, --322,-2116,-2117,-2118,-2119,-2120,-2121,-2939,-15455], +[0,-192,-52,-1485,-1791,-2104,-1792,-1524,-322,-1793,-1794,-1795,-2105,-2106,-1796,-1797,-2107,-2108,-2109,-6,-527,-2110,-2111,-2112,-2113,-73,-1319,-494,-2114,-248,-1320,-184,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-2115,-322,-2116,-2117,-2118,-2119,-2120,-2121,-2939,-15452], +[0,-192,-52,-1485,-1792,-1524,-322,-1793,-1794,-1795,-1791,-1796,-1797,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-15454], +[0,-192,-52,-1485,-1791,-2104,-1792,-1524,-322,-1793,-1794,-1795,-2105,-2106,-1796,-1797,-2107,-2108,-2109,-6,-527,-2110,-2111,-2112,-2113,-73,-1319,-494,-2114,-248,-1320,-184,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-2115,-322,-2116,-2117,-2118,-2119,-2120,-2121,-2939,-15455], [1,3,10608], [0,-11], [0,-4569,-1002,-283,-894,-821,-895,-420,-31,-1285,-1003,-1494,-1495,-1744,-1745,-1496,-53], @@ -2855,8 +823,7 @@ true, [0,-4510,-281,-2032,-4513,-349,-1736,-7558,-381,-2031,-1280,-4514,-162,-607], [0,-716], [0,-158,-346], -[0,-3203,-7648,-4557,-7649,-7650,-7651,-7652,-133,-1635,-1637,-28,-101,-78,-4558,-220,-2494,-971,-1492,-7653,-1239,-4559, --7654,-7655,-3204,-1100,-519,-7656,-7657,-436,-642,-160,-4560,-3205,-125,-7658,-98], +[0,-3203,-7648,-4557,-7649,-7650,-7651,-7652,-133,-1635,-1637,-28,-101,-78,-4558,-220,-2494,-971,-1492,-7653,-1239,-4559,-7654,-7655,-3204,-1100,-519,-7656,-7657,-436,-642,-160,-4560,-3205,-125,-7658,-98], [0,-182,-2505,-1466], [0,-37,-99,-1000,-697,-2497,-7659,-609,-4561,-42,-116], [0,-821,-895,-420,-31,-1285,-1003,-1494,-1495,-1744,-1745,-1496,-53,-4569,-1002,-283,-894], @@ -2949,8 +916,7 @@ true, [0,-425,-2154,-2155,-1820,-3787,-11967,-76,-317,-1571], [0,-54], [0,-37,-316,-12446,-611,-159,-12447,-2904,-5575,-2868,-918,-824], -[0,-306,-152,-592,-6083,-3939,-3940,-6084,-3941,-3942,-1343,-94,-420,-2186,-2206,-200,-3943,-1848,-613,-1843,-1190,-1336, --286,-892,-128], +[0,-306,-152,-592,-6083,-3939,-3940,-6084,-3941,-3942,-1343,-94,-420,-2186,-2206,-200,-3943,-1848,-613,-1843,-1190,-1336,-286,-892,-128], [0,-1173,-613,-916,-74,-763,-37,-316], [0,-3,-13,-1930], [0,-1683,-832,-2213,-695,-5513,-2668,-865,-2899], @@ -3004,346 +970,113 @@ true, [0,-855,-46,-15782,-15783,-53,-2858], [0,-6,-53,-15835,-15836], [0,-8,-1,-14,-57,-4,-2,-29,-12,-25,-176,-19,-22], -[0,-2058,-2548,-1755,-1756,-37,-316,-299,-1757,-543,-569,-116,-3258,-352,-2549,-195,-1508,-2059,-45,-1294,-144,-353,-495, --2060,-392,-2061,-1256,-1010,-3259,-1489,-1509,-1295,-178,-445,-650,-2,-102,-1011,-1716,-2062], -[0,-192,-52,-1485,-1791,-2104,-1792,-1524,-322,-1793,-1794,-1795,-2105,-2106,-1796,-1797,-2107,-2108,-2109,-6,-527,-2110, --2111,-2112,-2113,-73,-1319,-494,-2114,-248,-1320,-184,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-2115, --322,-2116,-2117,-2118,-2119,-2120,-2121,-2939], +[0,-2058,-2548,-1755,-1756,-37,-316,-299,-1757,-543,-569,-116,-3258,-352,-2549,-195,-1508,-2059,-45,-1294,-144,-353,-495,-2060,-392,-2061,-1256,-1010,-3259,-1489,-1509,-1295,-178,-445,-650,-2,-102,-1011,-1716,-2062], +[0,-192,-52,-1485,-1791,-2104,-1792,-1524,-322,-1793,-1794,-1795,-2105,-2106,-1796,-1797,-2107,-2108,-2109,-6,-527,-2110,-2111,-2112,-2113,-73,-1319,-494,-2114,-248,-1320,-184,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-2115,-322,-2116,-2117,-2118,-2119,-2120,-2121,-2939], [1,3,10858], [0,-1904,-1725], [1,24,11236], -[0,-6577,-4060,-2284,-4061,-2944,-4062,-1898,-1899,-1900,-2285,-6578,-4063,-2945,-4064,-6579,-6580,-6581,-1901,-1902, --6582,-48,-505,-11,-716,-405,-209,-4065,-2286,-6583,-6584,-4066,-156,-578,-1039,-931,-300,-1040,-170,-449,-21,-132,-137, --174,-90,-6585,-539,-450,-6586,-6587,-357,-6588,-1361,-6589,-1362,-1363,-1364,-6590,-6591,-6592,-6593,-6594,-1365,-1366, --1041,-932,-318,-1367,-428,-1368,-1042,-933,-1369,-1197,-1043,-1370,-1198,-1371,-6595,-1372,-579,-406,-1595,-332,-6596, --1199,-49,-6597,-6598,-6599,-6600,-6601,-6602,-1596,-1597,-2946,-4067,-2947,-2287,-4068,-6603,-6604,-6605,-6606,-6607, --6608,-6609,-6610,-6611,-6612,-6613,-6614,-6615,-6616,-6617,-6618,-6619,-6620,-6621,-6622,-6623,-6624,-6625,-6626,-6627, --6628,-6629,-6630, --6631,-6632,-6633,-6634,-6635,-6636,-6637,-6638,-6639,-6640,-6641,-6642,-6643,-6644,-6645,-6646,-6647,-6648,-6649,-6650, --6651,-6652,-6653,-4069,-6654,-6655,-4070,-6656,-6657,-6658,-6659,-6660,-2288,-2948,-1903,-1598,-6661,-6662,-6663,-6664, --6665,-6666,-6667,-6668,-6669,-6670,-6671,-6672,-6673,-6674,-6675,-6676,-6677,-6678,-6679,-6680,-6681,-6682,-6683,-6684, --6685,-717,-50,-6686, --2949,-6687,-6688,-2289,-2290,-2950,-2951,-6689,-6690,-6691,-6692,-6693,-2952,-6694,-6695,-6696,-6697,-6698,-6699,-6700, --6701,-6702,-6703,-6704,-6705,-6706,-6707,-6708,-6709,-6710,-6711,-6712,-6713,-6714,-6715,-6716,-6717,-4071,-6718,-1904, --2953,-4072,-1200,-6719,-2954,-663,-1201,-6720,-2955,-6721,-6722,-6723,-6724,-6725,-6726,-6727,-6728,-6729,-4073,-6730, --4074,-6731,-4075,-6732, --6733,-4076,-6734,-6735,-6736,-2291,-451,-1599,-1905,-2956,-6737,-4077,-6738,-1906,-4078,-6739,-4079,-2957,-4080,-6740, --4081,-6741,-6742,-4082,-840,-2958,-2959,-1202,-6743,-6744,-6745,-6746,-6747,-6748,-6749,-6750,-6751,-664,-6752,-1907, --6753,-934,-6754,-2960,-2961,-6755,-4083,-1908,-2292,-665,-6756,-6757,-6758,-6759,-2962,-4084,-6760,-4085,-6761,-6762, --6763,-6764,-6765,-6766, --6767,-6768,-6769,-6770,-6771,-6772,-6773,-6774,-6775,-6776,-6777,-6778,-6779,-6780,-6781,-6782,-6783,-6784,-6785,-6786, --6787,-6788,-6789,-6790,-6791,-6792,-6793,-6794,-6795,-1909,-77,-62,-6796,-4086,-6797,-6798,-6799,-623,-2293,-6800,-6801, --6802,-6803,-6804,-2963,-1373,-1910,-245,-6805,-6806,-6807,-6808,-6809,-6810,-6811,-6812,-6813,-6814,-6815,-6816,-6817, --6818,-6819,-6820, --6821,-6822,-6823,-6824,-6825,-6826,-6827,-6828,-6829,-6830,-6831,-6832,-6833,-6834,-6835,-6836,-6837,-4087,-4088,-6838, --6839,-2964,-319,-153,-4089,-120,-307,-1911,-2965,-4090,-4091,-4092,-4093,-4094,-2966,-4095,-4096,-4097,-4098,-4099, --1912,-6840,-320,-22,-19,-771,-6841,-4100,-4101,-2967,-4102,-4103,-2968,-6842,-6843,-2969,-506,-1600,-4104,-6844,-6845, --6846,-6847,-6848, --6849,-6850,-6851,-6852,-6853,-6854,-6855,-6856,-6857,-6858,-1203,-1044,-2970,-202,-1374,-4105,-1913,-772,-6859,-4106, --718,-183,-773,-2294,-4107,-2295,-4108,-184,-6860,-4109,-4110,-452,-841,-1045,-719,-1375,-6861,-935,-6862,-2971,-2972, --1376,-6863,-4111,-1914,-1915,-2973,-1916,-2296,-6864,-2297,-6865,-6866,-842,-774,-1204,-2298,-1601,-1046,-280,-2299, --843,-59,-1377, --1378,-1917,-2300,-720,-269,-6867,-157,-51,-2974,-936,-1205,-194,-6868,-281,-179,-162,-91,-1918,-1602,-1919,-2301,-86, --96,-270,-1603,-1206,-2975,-333,-1604,-1047,-2976,-2977,-1920,-1921,-1379,-4112,-1605,-1207,-1606,-775,-2978,-776,-1922, --937,-580,-721,-253,-321,-666,-1607,-1048,-2979,-2302,-2303,-429,-282,-1380,-1923,-1208,-777,-844,-1924,-4113,-4114, --6869,-2304,-1608,-1381,-6870,-1382,-6871,-2305,-6872,-1049,-6873,-6874,-2306,-110,-2307,-2308,-2309,-6875,-2310,-1925, --667,-4115,-4116,-1926,-1609,-4117,-6876,-2311,-2312,-2313,-2314,-2315,-2316,-2317,-2980,-2981,-2982,-2983,-6877,-114, --2318,-163,-6878,-1927,-453,-4118,-1050,-1209,-6879,-4119,-2319,-1383,-2320,-1928,-1610,-2321,-938,-60,-2322,-301,-4120, --1611,-2984,-1051, --294,-1612,-1929,-2985,-1384,-4121,-6880,-1385,-1210,-1386,-4122,-454,-43,-845,-4123,-939,-430,-2986,-1052,-322,-2323, --1613,-6881,-2324,-13,-239,-1930,-1931,-20,-2987,-2325,-1387,-1388,-6882,-231,-4124,-1932,-2988,-6883,-117,-481,-283, --254,-540,-1614,-1933,-1615,-37,-2326,-1389,-1616,-4125,-2327,-940,-4126,-624,-1934,-4127,-6884,-1053,-2989,-2990,-507, --302, --4128,-941,-6885,-334,-149,-1054,-455,-308,-217,-1055,-133,-1390,-4129,-2328,-2329,-58,-482,-1056,-456,-4130,-367,-309, --284,-335,-1057,-218,-6886,-1391,-6887,-1935,-1211,-2991,-942,-846,-6888,-541,-385,-1212,-457,-336,-581,-2330,-1213,-778, --508,-625,-4131,-6889,-943,-158,-368,-386,-55,-582,-4132,-4133,-2992,-1936,-4134,-1058,-2331,-4135,-6890,-26, --1937,-225,-626,-1617,-2332,-6891,-407,-24,-6892,-4136,-141,-1214,-2993,-1059,-4137,-1938,-369,-2994,-722,-4138,-779, --1939,-1940,-4139,-2995,-1618,-6893,-483,-295,-1060,-1941,-1942,-4140,-2333,-6894,-2996,-2334,-1619,-6895,-1061,-1620, --542,-4141,-1621,-35,-1622,-2335,-509,-4142,-6896,-6897,-4143,-1943,-780,-1623,-323,-150,-232,-627,-1392,-1062,-1215, --2336,-1216, --1624,-2337,-203,-4144,-2338,-6898,-1393,-6899,-2997,-4145,-4146,-2998,-6900,-6901,-6902,-6903,-4147,-1394,-6904,-2999, --6905,-6906,-6907,-944,-42,-4148,-1625,-6908,-1626,-3000,-6909,-3001,-1395,-210,-945,-1217,-6910,-946,-4149,-3002,-6911, --3003,-3004,-3005,-3006,-6912,-4150,-1063,-4151,-1396,-6913,-1397,-6914,-1064,-3007,-1398,-337,-4152,-4153,-458,-6915, --4154,-6916,-6917, --4155,-6918,-4156,-4157,-6919,-6920,-1399,-4158,-4159,-4160,-1627,-1218,-1628,-781,-543,-6921,-6922,-1944,-1629,-431, --947,-4161,-3008,-4162,-1219,-1400,-1401,-1402,-4163,-948,-3009,-1630,-87,-484,-408,-2339,-1,-255,-185,-949,-1945,-782, --1220,-1946,-12,-1221,-1631,-83,-1403,-1222,-1404,-668,-246,-1632,-1947,-783,-847,-1633,-1405,-544,-485,-723,-9,-145, --180,-1223,-148,-211,-256,-115,-75,-25,-67,-64,-186,-784,-724,-2340,-129,-2341,-1406,-1065,-151,-1948,-785,-1407,-1066, --950,-4164,-370,-583,-1067,-1068,-786,-848,-6923,-4165,-1069,-409,-1634,-951,-410,-2342,-118,-849,-338,-787,-411,-40, --6924,-6925,-6926,-6927,-6928,-850,-6929,-6930,-6931,-6932,-432,-2343,-851,-1070,-3010,-3011,-1949,-257,-1224, --6933,-952,-226,-6934,-1635,-4166,-1071,-788,-1225,-1636,-6935,-4167,-6936,-3012,-3013,-1637,-510,-271,-6937,-1226,-725, --953,-1408,-339,-1409,-4168,-1410,-6938,-6939,-1638,-1227,-1411,-6940,-6941,-6942,-412,-4169,-4170,-1228,-1412,-3014, --954,-3015,-1639,-6943,-628,-955,-3016,-669,-4171,-3017,-1640,-303,-41,-1641,-6944,-1950,-4172,-3018,-1642,-4173,-1643, --6945,-1644, --1645,-6946,-6947,-6948,-6949,-4174,-6950,-2344,-6951,-1646,-486,-1229,-487,-1230,-4175,-340,-3019,-545,-6952,-28,-1413, --852,-56,-204,-3020,-4176,-6953,-4177,-387,-4178,-6954,-324,-4179,-2345,-371,-956,-6955,-670,-6956,-54,-6957,-1414,-957, --546,-164,-4180,-240,-6958,-629,-584,-511,-4181,-1951,-6959,-6960,-853,-175,-4182,-358,-6961,-341,-304,-1072,-1415, --512,-1231,-3021,-958,-959,-4183,-3022,-630,-2346,-1647,-789,-1416,-6962,-4184,-1952,-4185,-32,-6963,-6964,-1648,-6965, --6966,-585,-6967,-6968,-3023,-4186,-3024,-6969,-6970,-4187,-1953,-960,-6971,-6972,-631,-4188,-6973,-3025,-6974,-6975, --6976,-4189,-4190,-3026,-513,-6977,-1073,-6978,-2347,-671,-6979,-4191,-3027,-6980,-6981,-790,-6982,-4192,-6983,-1074, --6984,-6985,-4193, --6986,-4194,-6987,-6988,-961,-6989,-3028,-4195,-791,-4196,-1232,-6990,-1954,-3029,-6991,-359,-2348,-6992,-6993,-4197, --854,-1955,-1417,-6994,-6995,-6996,-6997,-310,-962,-3030,-6998,-6999,-1418,-7000,-4198,-3031,-311,-7001,-3032,-7002, --7003,-7004,-7005,-4199,-3033,-1419,-632,-7006,-4200,-7007,-360,-4201,-2349,-7008,-4202,-4203,-7009,-1075,-1420,-3034, --247,-1956,-1233,-4204, --2350,-3035,-2351,-1234,-1957,-672,-1649,-4205,-1650,-1958,-1421,-4206,-726,-2352,-1076,-4207,-1959,-1077,-3036,-3037, --7010,-7011,-4208,-4209,-372,-7012,-1422,-3038,-2353,-1651,-3039,-963,-7013,-855,-4210,-792,-7014,-2354,-3040,-3041,-673, --2355,-1423,-1424,-3042,-7015,-3043,-3044,-7016,-1425,-3045,-342,-7017,-488,-103,-633,-586,-2356,-2357,-413,-4211,-1960, --388,-727, --10,-4212,-4213,-4214,-1078,-1079,-7018,-459,-964,-460,-1652,-4215,-1961,-3046,-4216,-965,-3047,-514,-1962,-1653,-7019, --212,-793,-4217,-1963,-1080,-515,-728,-7020,-4218,-3048,-7021,-195,-7022,-3049,-7023,-729,-1964,-3050,-7024,-674,-7025, --1426,-1654,-1965,-2358,-7026,-634,-547,-1081,-1655,-1082,-1083,-4219,-1656,-966,-3051,-856,-1084,-1657,-2359,-66,-1658, --4220, --1235,-1659,-1966,-7027,-196,-373,-1967,-8,-1427,-489,-857,-176,-7028,-794,-3052,-7029,-1085,-3053,-1660,-858,-1086, --1236,-3054,-516,-2360,-7030,-4221,-730,-3055,-248,-7031,-967,-968,-2361,-101,-7032,-4222,-587,-165,-4223,-795,-78,-7033, --1087,-119,-969,-4224,-859,-635,-3056,-2362,-1088,-272,-636,-2363,-796,-1089,-797,-7034,-7035,-3057,-2364,-7036,-79, --860,-1428,-675,-138,-588,-1429,-1661,-213,-1090,-389,-187,-414,-2365,-1662,-731,-861,-798,-1237,-637,-676,-517,-3058, --2366,-2367,-490,-4225,-799,-2368,-7037,-433,-7038,-7039,-2369,-7040,-7041,-7042,-4226,-7043,-1091,-2370,-2371,-2372, --1968,-7044,-2373,-7045,-7046,-3059,-1430,-219,-1092,-2374,-4227,-4228,-1093,-4229,-3060,-4230,-7047,-4231,-1969,-7048, --17,-1970, --1663,-3061,-7049,-4232,-1094,-3062,-343,-732,-4233,-4234,-4235,-1095,-23,-461,-1971,-1664,-1096,-1972,-1665,-4236,-7050, --7051,-7052,-1666,-7053,-7054,-4237,-4238,-4239,-1667,-1238,-7055,-7056,-7057,-1431,-1668,-2375,-258,-638,-1432,-1973, --1433,-1974,-4240,-1434,-3063,-434,-7058,-2376,-7059,-1669,-7060,-296,-4241,-7061,-733,-1975,-4242,-2377,-7062,-2378, --970,-7063,-99, --220,-971,-1239,-1097,-7064,-1098,-2379,-972,-973,-518,-227,-7065,-1435,-1099,-7066,-2380,-1100,-7067,-862,-1101,-2381, --7068,-2382,-259,-1976,-4243,-1102,-1670,-7069,-7070,-462,-491,-1103,-2383,-4244,-1977,-1104,-677,-1436,-361,-260,-344, --7071,-374,-228,-92,-88,-7072,-2384,-7073,-72,-1437,-1240,-1978,-3,-1671,-974,-589,-548,-1672,-1438,-1439,-1105,-1440, --4245,-7074,-233,-863,-7075,-7076,-7077,-375,-1106,-1241,-7078,-4246,-678,-4247,-4248,-2385,-2386,-549,-1673,-800,-2387, --1441,-1442,-3064,-4249,-519,-7079,-550,-1674,-1443,-7080,-2388,-801,-3065,-7081,-639,-7082,-7083,-4250,-3066,-7084,-734, --7085,-4251,-1675,-7086,-3067,-7087,-4252,-390,-7088,-7089,-4253,-3068,-4254,-2389,-2390,-7090,-197,-864,-3069,-7091, --7092,-4255, --2391,-188,-1107,-7093,-7094,-590,-1444,-4256,-3070,-1445,-7095,-7096,-4257,-2392,-7097,-1242,-3071,-4258,-4259,-3072, --7098,-7099,-1979,-7100,-1676,-285,-679,-7101,-4260,-4261,-463,-1446,-7102,-4262,-1980,-415,-159,-4263,-3073,-975,-1108, --1677,-1678,-65,-345,-1981,-7103,-7104,-1679,-273,-2393,-1243,-2394,-4264,-2395,-976,-3074,-4265,-7105,-1244,-15,-1680, --4266,-865, --241,-1681,-1245,-1447,-4267,-591,-1109,-2396,-977,-680,-4268,-2397,-7106,-152,-1246,-7107,-7108,-4269,-592,-7109,-1247, --551,-1982,-3075,-325,-4270,-802,-1448,-3076,-803,-2398,-4271,-7110,-866,-552,-1110,-1983,-7111,-4272,-1248,-7112,-7113, --1682,-7114,-4273,-7115,-166,-593,-735,-1683,-7116,-7117,-7118,-3077,-2399,-249,-681,-492,-1249,-553,-594,-7119,-7120, --4274, --1449,-595,-3078,-867,-640,-2400,-7121,-167,-326,-4275,-1111,-1250,-1251,-2401,-978,-1984,-1112,-7122,-391,-1252,-142, --979,-554,-4276,-804,-7123,-3079,-7124,-7125,-1450,-2402,-3080,-641,-38,-2403,-682,-4277,-7126,-7127,-7128,-1985,-1684, --3081,-2404,-7129,-7130,-7131,-1451,-3082,-4278,-555,-868,-493,-7132,-7133,-7134,-7135,-7136,-7137,-1986,-1452,-3083, --3084,-7138, --7139,-7140,-7141,-7142,-7143,-7144,-4279,-805,-7145,-1453,-869,-556,-7146,-7147,-464,-7148,-1987,-4280,-1454,-234,-494, --2405,-4,-2406,-1113,-870,-4281,-7149,-520,-4282,-683,-871,-435,-2407,-3085,-436,-7150,-980,-286,-362,-4283,-171,-1685, --1686,-7151,-495,-392,-121,-1455,-1687,-1988,-596,-181,-2408,-642,-7152,-1253,-981,-160,-4284,-521,-3086,-1456,-465, --3087,-982,-983,-7153,-4285,-376,-4286,-1457,-684,-643,-1688,-3088,-7154,-1114,-4287,-1458,-685,-1459,-3089,-1989,-1254, --7155,-6,-7156,-7157,-7158,-2409,-4288,-2410,-1115,-4289,-1255,-2411,-2412,-3090,-36,-4290,-4291,-3091,-3092,-1990,-4292, --3093,-2413,-1689,-437,-1460,-7159,-7160,-7161,-235,-7162,-4293,-4294,-7163,-3094,-872,-686,-3095,-873,-557,-7164,-3096, --7165, --4295,-2414,-7166,-4296,-287,-2415,-3097,-687,-4297,-7167,-4298,-597,-1690,-1991,-198,-1256,-7168,-7169,-1257,-3098, --1992,-3099,-1993,-688,-4299,-7170,-327,-7171,-4300,-4301,-7172,-4302,-598,-984,-346,-377,-1691,-4303,-7173,-1994,-3100, --2416,-736,-378,-4304,-274,-146,-522,-2417,-7174,-599,-1692,-261,-806,-1116,-874,-1693,-111,-1694,-4305,-4306,-2418, --7175,-416, --2419,-1117,-126,-644,-2420,-7176,-4307,-7177,-4308,-7178,-1995,-1461,-1695,-7,-4309,-14,-275,-985,-875,-466,-417,-1118, --876,-1696,-1258,-347,-877,-1259,-229,-1260,-305,-807,-645,-878,-4310,-7179,-1261,-2421,-986,-1697,-3101,-496,-7180,-497, --189,-4311,-3102,-4312,-1996,-1698,-80,-467,-4313,-1119,-987,-7181,-646,-2422,-4314,-4315,-1462,-1120,-122,-7182, --1997,-16,-808,-7183,-4316,-7184,-1121,-2423,-809,-1699,-1122,-393,-1123,-7185,-7186,-2424,-1463,-689,-737,-276,-3103, --4317,-81,-3104,-394,-2425,-879,-2426,-7187,-600,-7188,-7189,-4318,-2427,-27,-190,-7190,-738,-328,-7191,-7192,-2428,-288, --2429,-7193,-4319,-2430,-739,-4320,-4321,-1700,-3105,-810,-1262,-4322,-130,-811,-880,-147,-1124,-7194,-2431,-2432,-812, --881,-4323,-7195,-2433,-4324,-813,-2434,-1464,-4325,-3106,-97,-134,-2435,-1125,-3107,-1263,-2436,-740,-7196,-7197,-7198, --1465,-3108,-7199,-4326,-168,-7200,-395,-3109,-139,-1264,-601,-3110,-4327,-7201,-154,-1998,-3111,-882,-3112,-3113,-182, --558,-7202,-1466,-2437,-396,-1701,-4328,-883,-2438,-690,-3114,-123,-7203,-2439,-2440,-468,-2441,-221,-2442,-2443,-2444, --602, --7204,-3115,-7205,-4329,-4330,-2445,-4331,-4332,-4333,-3116,-1702,-4334,-1265,-2446,-559,-85,-560,-1266,-39,-312,-1267, --884,-7206,-7207,-4335,-7208,-603,-379,-7209,-7210,-177,-397,-7211,-1467,-7212,-2447,-1999,-1703,-3117,-885,-1126,-1704, --469,-69,-2448,-7213,-2000,-1468,-4336,-1469,-1127,-1128,-3118,-3119,-2449,-161,-4337,-3120,-886,-418,-1129,-7214,-2450, --7215, --2001,-691,-2451,-7216,-7217,-7218,-7219,-57,-214,-7220,-814,-33,-7221,-4338,-7222,-815,-82,-7223,-561,-44,-199,-1268, --4339,-172,-155,-3121,-4340,-7224,-7225,-7226,-2452,-236,-215,-988,-124,-7227,-7228,-816,-7229,-7230,-7231,-2002,-2,-84, --3122,-4341,-1470,-1269,-112,-1130,-1471,-1472,-7232,-7233,-3123,-1270,-250,-1271,-289,-135,-7234,-348,-1473,-4342, --1705,-604,-7235,-200,-2003,-438,-3124,-3125,-2004,-4343,-2453,-1706,-136,-2005,-125,-1131,-7236,-1707,-1272,-439,-7237, --989,-3126,-2006,-2007,-3127,-4344,-4345,-70,-1708,-562,-887,-563,-7238,-104,-7239,-817,-30,-7240,-1474,-4346,-7241, --7242,-7243,-73,-3128,-990,-4347,-3129,-1132,-7244,-888,-2008,-1475,-1709,-741,-1133,-605,-606,-742,-4348,-1710,-1273, --7245, --4349,-4350,-7246,-7247,-7248,-18,-523,-93,-1711,-173,-2454,-2455,-524,-1712,-1476,-7249,-889,-4351,-7250,-7251,-818, --2009,-222,-4352,-564,-7252,-1713,-4353,-2010,-991,-3130,-3131,-890,-3132,-1714,-205,-7253,-743,-1715,-4354,-565,-3133, --1274,-7254,-2011,-34,-2012,-4355,-1275,-7255,-744,-647,-262,-2013,-98,-525,-692,-7256,-4356,-992,-3134,-1477,-2014, --1716, --7257,-4357,-2015,-4358,-263,-7258,-7259,-2456,-993,-4359,-7260,-4360,-7261,-4361,-7262,-4362,-4363,-4364,-4365,-4366, --7263,-329,-7264,-7265,-4367,-7266,-1276,-7267,-7268,-7269,-4368,-2457,-2016,-7270,-1134,-3135,-7271,-7272,-7273,-7274, --7275,-7276,-7277,-7278,-7279,-7280,-2458,-7281,-7282,-7283,-7284,-7285,-7286,-7287,-7288,-7289,-7290,-7291,-7292,-7293, --7294,-7295,-1478,-7296, --1479,-7297,-7298,-7299,-7300,-4369,-7301,-4370,-4371,-7302,-242,-4372,-7303,-4373,-7304,-4374,-7305,-2459,-7306,-4375, --7307,-3136,-7308,-7309,-2017,-4376,-1480,-3137,-7310,-2018,-313,-4377,-7311,-7312,-4378,-7313,-7314,-7315,-3138,-7316, --7317,-7318,-7319,-7320,-7321,-4379,-4380,-7322,-7323,-7324,-7325,-7326,-7327,-7328,-4381,-7329,-2460,-7330,-4382,-3139, --7331,-2461,-4383,-4384, --7332,-4385,-1481,-7333,-7334,-7335,-2019,-2020,-7336,-4386,-7337,-2021,-7338,-4387,-4388,-4389,-4390,-4391,-4392,-4393, --4394,-7339,-4395,-3140,-4396,-4397,-4398,-4399,-3141,-3142,-2462,-4400,-7340,-7341,-4401,-7342,-7343,-7344,-7345,-7346, --4402,-4403,-4404,-3143,-7347,-4405,-1717,-7348,-3144,-4406,-3145,-4407,-2463,-2464,-1482,-7349,-7350,-1718,-1719,-7351, --7352,-7353,-7354,-7355, --7356,-7357,-7358,-7359,-7360,-2465,-2466,-4408,-1720,-4409,-3146,-4410,-7361,-4411,-1483,-4412,-4413,-2022,-4414,-3147, --7362,-1484,-4415,-7363,-2467,-7364,-1721,-4416,-7365,-4417,-7366,-4418,-7367,-4419,-7368,-7369,-2468,-7370,-4420,-2469, --4421,-7371,-7372,-4422,-7373,-7374,-2470,-7375,-7376,-7377,-7378,-7379,-2471,-7380,-7381,-7382,-1485,-7383,-7384,-7385, --7386,-7387,-3148,-7388, --1722,-2472,-4423,-3149,-2473,-7389,-4424,-2474,-7390,-1723,-4425,-4426,-4427,-7391,-4428,-7392,-314,-7393,-1277,-7394, --7395,-7396,-7397,-7398,-2475,-4429,-4430,-4431,-7399,-3150,-4432,-4433,-4434,-4435,-4436,-1724,-2476,-4437,-4438,-7400, --4439,-4440,-3151,-7401,-2477,-7402,-4441,-4442,-7403,-4443,-4444,-7404,-4445,-4446,-7405,-7406,-4447,-4448,-7407,-7408, --7409,-4449,-7410,-4450, --7411,-7412,-7413,-7414,-819,-4451,-4452,-7415,-2478,-4453,-7416,-4454,-380,-7417,-7418,-7419,-4455,-7420,-4456,-7421, --1725,-4457,-4458,-4459,-7422,-4460,-7423,-7424,-7425,-7426,-470,-7427,-7428,-7429,-3152,-3153,-7430,-1726,-3154,-7431, --7432,-4461,-3155,-994,-2023,-7433,-3156,-7434,-7435,-7436,-7437,-4462,-3157,-7438,-3158,-7439,-7440,-7441,-7442,-4463, --4464,-7443,-7444,-7445, --3159,-7446,-3160,-7447,-4465,-7448,-7449,-7450,-7451,-3161,-4466,-3162,-7452,-7453,-7454,-3163,-7455,-4467,-7456,-7457, --7458,-1135,-7459,-4468,-7460,-7461,-1486,-7462,-7463,-4469,-7464,-4470,-4471,-7465,-7466,-7467,-4472,-2479,-7468,-4473, --3164,-7469,-7470,-2024,-7471,-7472,-7473,-4474,-4475,-7474,-7475,-7476,-4476,-820,-4477,-7477,-7478,-7479,-7480,-4478, --4479,-4480,-4481,-7481, +[0,-6577,-4060,-2284,-4061,-2944,-4062,-1898,-1899,-1900,-2285,-6578,-4063,-2945,-4064,-6579,-6580,-6581,-1901,-1902,-6582,-48,-505,-11,-716,-405,-209,-4065,-2286,-6583,-6584,-4066,-156,-578,-1039,-931,-300,-1040,-170,-449,-21,-132,-137,-174,-90,-6585,-539,-450,-6586,-6587,-357,-6588,-1361,-6589,-1362,-1363,-1364,-6590,-6591,-6592,-6593,-6594,-1365,-1366, +-1041,-932,-318,-1367,-428,-1368,-1042,-933,-1369,-1197,-1043,-1370,-1198,-1371,-6595,-1372,-579,-406,-1595,-332,-6596,-1199,-49,-6597,-6598,-6599,-6600,-6601,-6602,-1596,-1597,-2946,-4067,-2947,-2287,-4068,-6603,-6604,-6605,-6606,-6607,-6608,-6609,-6610,-6611,-6612,-6613,-6614,-6615,-6616,-6617,-6618,-6619,-6620,-6621,-6622,-6623,-6624,-6625,-6626,-6627,-6628,-6629,-6630, +-6631,-6632,-6633,-6634,-6635,-6636,-6637,-6638,-6639,-6640,-6641,-6642,-6643,-6644,-6645,-6646,-6647,-6648,-6649,-6650,-6651,-6652,-6653,-4069,-6654,-6655,-4070,-6656,-6657,-6658,-6659,-6660,-2288,-2948,-1903,-1598,-6661,-6662,-6663,-6664,-6665,-6666,-6667,-6668,-6669,-6670,-6671,-6672,-6673,-6674,-6675,-6676,-6677,-6678,-6679,-6680,-6681,-6682,-6683,-6684,-6685,-717,-50,-6686, +-2949,-6687,-6688,-2289,-2290,-2950,-2951,-6689,-6690,-6691,-6692,-6693,-2952,-6694,-6695,-6696,-6697,-6698,-6699,-6700,-6701,-6702,-6703,-6704,-6705,-6706,-6707,-6708,-6709,-6710,-6711,-6712,-6713,-6714,-6715,-6716,-6717,-4071,-6718,-1904,-2953,-4072,-1200,-6719,-2954,-663,-1201,-6720,-2955,-6721,-6722,-6723,-6724,-6725,-6726,-6727,-6728,-6729,-4073,-6730,-4074,-6731,-4075,-6732, +-6733,-4076,-6734,-6735,-6736,-2291,-451,-1599,-1905,-2956,-6737,-4077,-6738,-1906,-4078,-6739,-4079,-2957,-4080,-6740,-4081,-6741,-6742,-4082,-840,-2958,-2959,-1202,-6743,-6744,-6745,-6746,-6747,-6748,-6749,-6750,-6751,-664,-6752,-1907,-6753,-934,-6754,-2960,-2961,-6755,-4083,-1908,-2292,-665,-6756,-6757,-6758,-6759,-2962,-4084,-6760,-4085,-6761,-6762,-6763,-6764,-6765,-6766, +-6767,-6768,-6769,-6770,-6771,-6772,-6773,-6774,-6775,-6776,-6777,-6778,-6779,-6780,-6781,-6782,-6783,-6784,-6785,-6786,-6787,-6788,-6789,-6790,-6791,-6792,-6793,-6794,-6795,-1909,-77,-62,-6796,-4086,-6797,-6798,-6799,-623,-2293,-6800,-6801,-6802,-6803,-6804,-2963,-1373,-1910,-245,-6805,-6806,-6807,-6808,-6809,-6810,-6811,-6812,-6813,-6814,-6815,-6816,-6817,-6818,-6819,-6820, +-6821,-6822,-6823,-6824,-6825,-6826,-6827,-6828,-6829,-6830,-6831,-6832,-6833,-6834,-6835,-6836,-6837,-4087,-4088,-6838,-6839,-2964,-319,-153,-4089,-120,-307,-1911,-2965,-4090,-4091,-4092,-4093,-4094,-2966,-4095,-4096,-4097,-4098,-4099,-1912,-6840,-320,-22,-19,-771,-6841,-4100,-4101,-2967,-4102,-4103,-2968,-6842,-6843,-2969,-506,-1600,-4104,-6844,-6845,-6846,-6847,-6848, +-6849,-6850,-6851,-6852,-6853,-6854,-6855,-6856,-6857,-6858,-1203,-1044,-2970,-202,-1374,-4105,-1913,-772,-6859,-4106,-718,-183,-773,-2294,-4107,-2295,-4108,-184,-6860,-4109,-4110,-452,-841,-1045,-719,-1375,-6861,-935,-6862,-2971,-2972,-1376,-6863,-4111,-1914,-1915,-2973,-1916,-2296,-6864,-2297,-6865,-6866,-842,-774,-1204,-2298,-1601,-1046,-280,-2299,-843,-59,-1377, +-1378,-1917,-2300,-720,-269,-6867,-157,-51,-2974,-936,-1205,-194,-6868,-281,-179,-162,-91,-1918,-1602,-1919,-2301,-86,-96,-270,-1603,-1206,-2975,-333,-1604,-1047,-2976,-2977,-1920,-1921,-1379,-4112,-1605,-1207,-1606,-775,-2978,-776,-1922,-937,-580,-721,-253,-321,-666,-1607,-1048,-2979,-2302,-2303,-429,-282,-1380,-1923,-1208,-777,-844,-1924,-4113,-4114, +-6869,-2304,-1608,-1381,-6870,-1382,-6871,-2305,-6872,-1049,-6873,-6874,-2306,-110,-2307,-2308,-2309,-6875,-2310,-1925,-667,-4115,-4116,-1926,-1609,-4117,-6876,-2311,-2312,-2313,-2314,-2315,-2316,-2317,-2980,-2981,-2982,-2983,-6877,-114,-2318,-163,-6878,-1927,-453,-4118,-1050,-1209,-6879,-4119,-2319,-1383,-2320,-1928,-1610,-2321,-938,-60,-2322,-301,-4120,-1611,-2984,-1051, +-294,-1612,-1929,-2985,-1384,-4121,-6880,-1385,-1210,-1386,-4122,-454,-43,-845,-4123,-939,-430,-2986,-1052,-322,-2323,-1613,-6881,-2324,-13,-239,-1930,-1931,-20,-2987,-2325,-1387,-1388,-6882,-231,-4124,-1932,-2988,-6883,-117,-481,-283,-254,-540,-1614,-1933,-1615,-37,-2326,-1389,-1616,-4125,-2327,-940,-4126,-624,-1934,-4127,-6884,-1053,-2989,-2990,-507,-302, +-4128,-941,-6885,-334,-149,-1054,-455,-308,-217,-1055,-133,-1390,-4129,-2328,-2329,-58,-482,-1056,-456,-4130,-367,-309,-284,-335,-1057,-218,-6886,-1391,-6887,-1935,-1211,-2991,-942,-846,-6888,-541,-385,-1212,-457,-336,-581,-2330,-1213,-778,-508,-625,-4131,-6889,-943,-158,-368,-386,-55,-582,-4132,-4133,-2992,-1936,-4134,-1058,-2331,-4135,-6890,-26, +-1937,-225,-626,-1617,-2332,-6891,-407,-24,-6892,-4136,-141,-1214,-2993,-1059,-4137,-1938,-369,-2994,-722,-4138,-779,-1939,-1940,-4139,-2995,-1618,-6893,-483,-295,-1060,-1941,-1942,-4140,-2333,-6894,-2996,-2334,-1619,-6895,-1061,-1620,-542,-4141,-1621,-35,-1622,-2335,-509,-4142,-6896,-6897,-4143,-1943,-780,-1623,-323,-150,-232,-627,-1392,-1062,-1215,-2336,-1216, +-1624,-2337,-203,-4144,-2338,-6898,-1393,-6899,-2997,-4145,-4146,-2998,-6900,-6901,-6902,-6903,-4147,-1394,-6904,-2999,-6905,-6906,-6907,-944,-42,-4148,-1625,-6908,-1626,-3000,-6909,-3001,-1395,-210,-945,-1217,-6910,-946,-4149,-3002,-6911,-3003,-3004,-3005,-3006,-6912,-4150,-1063,-4151,-1396,-6913,-1397,-6914,-1064,-3007,-1398,-337,-4152,-4153,-458,-6915,-4154,-6916,-6917, +-4155,-6918,-4156,-4157,-6919,-6920,-1399,-4158,-4159,-4160,-1627,-1218,-1628,-781,-543,-6921,-6922,-1944,-1629,-431,-947,-4161,-3008,-4162,-1219,-1400,-1401,-1402,-4163,-948,-3009,-1630,-87,-484,-408,-2339,-1,-255,-185,-949,-1945,-782,-1220,-1946,-12,-1221,-1631,-83,-1403,-1222,-1404,-668,-246,-1632,-1947,-783,-847,-1633,-1405,-544,-485,-723,-9,-145, +-180,-1223,-148,-211,-256,-115,-75,-25,-67,-64,-186,-784,-724,-2340,-129,-2341,-1406,-1065,-151,-1948,-785,-1407,-1066,-950,-4164,-370,-583,-1067,-1068,-786,-848,-6923,-4165,-1069,-409,-1634,-951,-410,-2342,-118,-849,-338,-787,-411,-40,-6924,-6925,-6926,-6927,-6928,-850,-6929,-6930,-6931,-6932,-432,-2343,-851,-1070,-3010,-3011,-1949,-257,-1224, +-6933,-952,-226,-6934,-1635,-4166,-1071,-788,-1225,-1636,-6935,-4167,-6936,-3012,-3013,-1637,-510,-271,-6937,-1226,-725,-953,-1408,-339,-1409,-4168,-1410,-6938,-6939,-1638,-1227,-1411,-6940,-6941,-6942,-412,-4169,-4170,-1228,-1412,-3014,-954,-3015,-1639,-6943,-628,-955,-3016,-669,-4171,-3017,-1640,-303,-41,-1641,-6944,-1950,-4172,-3018,-1642,-4173,-1643,-6945,-1644, +-1645,-6946,-6947,-6948,-6949,-4174,-6950,-2344,-6951,-1646,-486,-1229,-487,-1230,-4175,-340,-3019,-545,-6952,-28,-1413,-852,-56,-204,-3020,-4176,-6953,-4177,-387,-4178,-6954,-324,-4179,-2345,-371,-956,-6955,-670,-6956,-54,-6957,-1414,-957,-546,-164,-4180,-240,-6958,-629,-584,-511,-4181,-1951,-6959,-6960,-853,-175,-4182,-358,-6961,-341,-304,-1072,-1415, +-512,-1231,-3021,-958,-959,-4183,-3022,-630,-2346,-1647,-789,-1416,-6962,-4184,-1952,-4185,-32,-6963,-6964,-1648,-6965,-6966,-585,-6967,-6968,-3023,-4186,-3024,-6969,-6970,-4187,-1953,-960,-6971,-6972,-631,-4188,-6973,-3025,-6974,-6975,-6976,-4189,-4190,-3026,-513,-6977,-1073,-6978,-2347,-671,-6979,-4191,-3027,-6980,-6981,-790,-6982,-4192,-6983,-1074,-6984,-6985,-4193, +-6986,-4194,-6987,-6988,-961,-6989,-3028,-4195,-791,-4196,-1232,-6990,-1954,-3029,-6991,-359,-2348,-6992,-6993,-4197,-854,-1955,-1417,-6994,-6995,-6996,-6997,-310,-962,-3030,-6998,-6999,-1418,-7000,-4198,-3031,-311,-7001,-3032,-7002,-7003,-7004,-7005,-4199,-3033,-1419,-632,-7006,-4200,-7007,-360,-4201,-2349,-7008,-4202,-4203,-7009,-1075,-1420,-3034,-247,-1956,-1233,-4204, +-2350,-3035,-2351,-1234,-1957,-672,-1649,-4205,-1650,-1958,-1421,-4206,-726,-2352,-1076,-4207,-1959,-1077,-3036,-3037,-7010,-7011,-4208,-4209,-372,-7012,-1422,-3038,-2353,-1651,-3039,-963,-7013,-855,-4210,-792,-7014,-2354,-3040,-3041,-673,-2355,-1423,-1424,-3042,-7015,-3043,-3044,-7016,-1425,-3045,-342,-7017,-488,-103,-633,-586,-2356,-2357,-413,-4211,-1960,-388,-727, +-10,-4212,-4213,-4214,-1078,-1079,-7018,-459,-964,-460,-1652,-4215,-1961,-3046,-4216,-965,-3047,-514,-1962,-1653,-7019,-212,-793,-4217,-1963,-1080,-515,-728,-7020,-4218,-3048,-7021,-195,-7022,-3049,-7023,-729,-1964,-3050,-7024,-674,-7025,-1426,-1654,-1965,-2358,-7026,-634,-547,-1081,-1655,-1082,-1083,-4219,-1656,-966,-3051,-856,-1084,-1657,-2359,-66,-1658,-4220, +-1235,-1659,-1966,-7027,-196,-373,-1967,-8,-1427,-489,-857,-176,-7028,-794,-3052,-7029,-1085,-3053,-1660,-858,-1086,-1236,-3054,-516,-2360,-7030,-4221,-730,-3055,-248,-7031,-967,-968,-2361,-101,-7032,-4222,-587,-165,-4223,-795,-78,-7033,-1087,-119,-969,-4224,-859,-635,-3056,-2362,-1088,-272,-636,-2363,-796,-1089,-797,-7034,-7035,-3057,-2364,-7036,-79, +-860,-1428,-675,-138,-588,-1429,-1661,-213,-1090,-389,-187,-414,-2365,-1662,-731,-861,-798,-1237,-637,-676,-517,-3058,-2366,-2367,-490,-4225,-799,-2368,-7037,-433,-7038,-7039,-2369,-7040,-7041,-7042,-4226,-7043,-1091,-2370,-2371,-2372,-1968,-7044,-2373,-7045,-7046,-3059,-1430,-219,-1092,-2374,-4227,-4228,-1093,-4229,-3060,-4230,-7047,-4231,-1969,-7048,-17,-1970, +-1663,-3061,-7049,-4232,-1094,-3062,-343,-732,-4233,-4234,-4235,-1095,-23,-461,-1971,-1664,-1096,-1972,-1665,-4236,-7050,-7051,-7052,-1666,-7053,-7054,-4237,-4238,-4239,-1667,-1238,-7055,-7056,-7057,-1431,-1668,-2375,-258,-638,-1432,-1973,-1433,-1974,-4240,-1434,-3063,-434,-7058,-2376,-7059,-1669,-7060,-296,-4241,-7061,-733,-1975,-4242,-2377,-7062,-2378,-970,-7063,-99, +-220,-971,-1239,-1097,-7064,-1098,-2379,-972,-973,-518,-227,-7065,-1435,-1099,-7066,-2380,-1100,-7067,-862,-1101,-2381,-7068,-2382,-259,-1976,-4243,-1102,-1670,-7069,-7070,-462,-491,-1103,-2383,-4244,-1977,-1104,-677,-1436,-361,-260,-344,-7071,-374,-228,-92,-88,-7072,-2384,-7073,-72,-1437,-1240,-1978,-3,-1671,-974,-589,-548,-1672,-1438,-1439,-1105,-1440, +-4245,-7074,-233,-863,-7075,-7076,-7077,-375,-1106,-1241,-7078,-4246,-678,-4247,-4248,-2385,-2386,-549,-1673,-800,-2387,-1441,-1442,-3064,-4249,-519,-7079,-550,-1674,-1443,-7080,-2388,-801,-3065,-7081,-639,-7082,-7083,-4250,-3066,-7084,-734,-7085,-4251,-1675,-7086,-3067,-7087,-4252,-390,-7088,-7089,-4253,-3068,-4254,-2389,-2390,-7090,-197,-864,-3069,-7091,-7092,-4255, +-2391,-188,-1107,-7093,-7094,-590,-1444,-4256,-3070,-1445,-7095,-7096,-4257,-2392,-7097,-1242,-3071,-4258,-4259,-3072,-7098,-7099,-1979,-7100,-1676,-285,-679,-7101,-4260,-4261,-463,-1446,-7102,-4262,-1980,-415,-159,-4263,-3073,-975,-1108,-1677,-1678,-65,-345,-1981,-7103,-7104,-1679,-273,-2393,-1243,-2394,-4264,-2395,-976,-3074,-4265,-7105,-1244,-15,-1680,-4266,-865, +-241,-1681,-1245,-1447,-4267,-591,-1109,-2396,-977,-680,-4268,-2397,-7106,-152,-1246,-7107,-7108,-4269,-592,-7109,-1247,-551,-1982,-3075,-325,-4270,-802,-1448,-3076,-803,-2398,-4271,-7110,-866,-552,-1110,-1983,-7111,-4272,-1248,-7112,-7113,-1682,-7114,-4273,-7115,-166,-593,-735,-1683,-7116,-7117,-7118,-3077,-2399,-249,-681,-492,-1249,-553,-594,-7119,-7120,-4274, +-1449,-595,-3078,-867,-640,-2400,-7121,-167,-326,-4275,-1111,-1250,-1251,-2401,-978,-1984,-1112,-7122,-391,-1252,-142,-979,-554,-4276,-804,-7123,-3079,-7124,-7125,-1450,-2402,-3080,-641,-38,-2403,-682,-4277,-7126,-7127,-7128,-1985,-1684,-3081,-2404,-7129,-7130,-7131,-1451,-3082,-4278,-555,-868,-493,-7132,-7133,-7134,-7135,-7136,-7137,-1986,-1452,-3083,-3084,-7138, +-7139,-7140,-7141,-7142,-7143,-7144,-4279,-805,-7145,-1453,-869,-556,-7146,-7147,-464,-7148,-1987,-4280,-1454,-234,-494,-2405,-4,-2406,-1113,-870,-4281,-7149,-520,-4282,-683,-871,-435,-2407,-3085,-436,-7150,-980,-286,-362,-4283,-171,-1685,-1686,-7151,-495,-392,-121,-1455,-1687,-1988,-596,-181,-2408,-642,-7152,-1253,-981,-160,-4284,-521,-3086,-1456,-465, +-3087,-982,-983,-7153,-4285,-376,-4286,-1457,-684,-643,-1688,-3088,-7154,-1114,-4287,-1458,-685,-1459,-3089,-1989,-1254,-7155,-6,-7156,-7157,-7158,-2409,-4288,-2410,-1115,-4289,-1255,-2411,-2412,-3090,-36,-4290,-4291,-3091,-3092,-1990,-4292,-3093,-2413,-1689,-437,-1460,-7159,-7160,-7161,-235,-7162,-4293,-4294,-7163,-3094,-872,-686,-3095,-873,-557,-7164,-3096,-7165, +-4295,-2414,-7166,-4296,-287,-2415,-3097,-687,-4297,-7167,-4298,-597,-1690,-1991,-198,-1256,-7168,-7169,-1257,-3098,-1992,-3099,-1993,-688,-4299,-7170,-327,-7171,-4300,-4301,-7172,-4302,-598,-984,-346,-377,-1691,-4303,-7173,-1994,-3100,-2416,-736,-378,-4304,-274,-146,-522,-2417,-7174,-599,-1692,-261,-806,-1116,-874,-1693,-111,-1694,-4305,-4306,-2418,-7175,-416, +-2419,-1117,-126,-644,-2420,-7176,-4307,-7177,-4308,-7178,-1995,-1461,-1695,-7,-4309,-14,-275,-985,-875,-466,-417,-1118,-876,-1696,-1258,-347,-877,-1259,-229,-1260,-305,-807,-645,-878,-4310,-7179,-1261,-2421,-986,-1697,-3101,-496,-7180,-497,-189,-4311,-3102,-4312,-1996,-1698,-80,-467,-4313,-1119,-987,-7181,-646,-2422,-4314,-4315,-1462,-1120,-122,-7182, +-1997,-16,-808,-7183,-4316,-7184,-1121,-2423,-809,-1699,-1122,-393,-1123,-7185,-7186,-2424,-1463,-689,-737,-276,-3103,-4317,-81,-3104,-394,-2425,-879,-2426,-7187,-600,-7188,-7189,-4318,-2427,-27,-190,-7190,-738,-328,-7191,-7192,-2428,-288,-2429,-7193,-4319,-2430,-739,-4320,-4321,-1700,-3105,-810,-1262,-4322,-130,-811,-880,-147,-1124,-7194,-2431,-2432,-812, +-881,-4323,-7195,-2433,-4324,-813,-2434,-1464,-4325,-3106,-97,-134,-2435,-1125,-3107,-1263,-2436,-740,-7196,-7197,-7198,-1465,-3108,-7199,-4326,-168,-7200,-395,-3109,-139,-1264,-601,-3110,-4327,-7201,-154,-1998,-3111,-882,-3112,-3113,-182,-558,-7202,-1466,-2437,-396,-1701,-4328,-883,-2438,-690,-3114,-123,-7203,-2439,-2440,-468,-2441,-221,-2442,-2443,-2444,-602, +-7204,-3115,-7205,-4329,-4330,-2445,-4331,-4332,-4333,-3116,-1702,-4334,-1265,-2446,-559,-85,-560,-1266,-39,-312,-1267,-884,-7206,-7207,-4335,-7208,-603,-379,-7209,-7210,-177,-397,-7211,-1467,-7212,-2447,-1999,-1703,-3117,-885,-1126,-1704,-469,-69,-2448,-7213,-2000,-1468,-4336,-1469,-1127,-1128,-3118,-3119,-2449,-161,-4337,-3120,-886,-418,-1129,-7214,-2450,-7215, +-2001,-691,-2451,-7216,-7217,-7218,-7219,-57,-214,-7220,-814,-33,-7221,-4338,-7222,-815,-82,-7223,-561,-44,-199,-1268,-4339,-172,-155,-3121,-4340,-7224,-7225,-7226,-2452,-236,-215,-988,-124,-7227,-7228,-816,-7229,-7230,-7231,-2002,-2,-84,-3122,-4341,-1470,-1269,-112,-1130,-1471,-1472,-7232,-7233,-3123,-1270,-250,-1271,-289,-135,-7234,-348,-1473,-4342, +-1705,-604,-7235,-200,-2003,-438,-3124,-3125,-2004,-4343,-2453,-1706,-136,-2005,-125,-1131,-7236,-1707,-1272,-439,-7237,-989,-3126,-2006,-2007,-3127,-4344,-4345,-70,-1708,-562,-887,-563,-7238,-104,-7239,-817,-30,-7240,-1474,-4346,-7241,-7242,-7243,-73,-3128,-990,-4347,-3129,-1132,-7244,-888,-2008,-1475,-1709,-741,-1133,-605,-606,-742,-4348,-1710,-1273,-7245, +-4349,-4350,-7246,-7247,-7248,-18,-523,-93,-1711,-173,-2454,-2455,-524,-1712,-1476,-7249,-889,-4351,-7250,-7251,-818,-2009,-222,-4352,-564,-7252,-1713,-4353,-2010,-991,-3130,-3131,-890,-3132,-1714,-205,-7253,-743,-1715,-4354,-565,-3133,-1274,-7254,-2011,-34,-2012,-4355,-1275,-7255,-744,-647,-262,-2013,-98,-525,-692,-7256,-4356,-992,-3134,-1477,-2014,-1716, +-7257,-4357,-2015,-4358,-263,-7258,-7259,-2456,-993,-4359,-7260,-4360,-7261,-4361,-7262,-4362,-4363,-4364,-4365,-4366,-7263,-329,-7264,-7265,-4367,-7266,-1276,-7267,-7268,-7269,-4368,-2457,-2016,-7270,-1134,-3135,-7271,-7272,-7273,-7274,-7275,-7276,-7277,-7278,-7279,-7280,-2458,-7281,-7282,-7283,-7284,-7285,-7286,-7287,-7288,-7289,-7290,-7291,-7292,-7293,-7294,-7295,-1478,-7296, +-1479,-7297,-7298,-7299,-7300,-4369,-7301,-4370,-4371,-7302,-242,-4372,-7303,-4373,-7304,-4374,-7305,-2459,-7306,-4375,-7307,-3136,-7308,-7309,-2017,-4376,-1480,-3137,-7310,-2018,-313,-4377,-7311,-7312,-4378,-7313,-7314,-7315,-3138,-7316,-7317,-7318,-7319,-7320,-7321,-4379,-4380,-7322,-7323,-7324,-7325,-7326,-7327,-7328,-4381,-7329,-2460,-7330,-4382,-3139,-7331,-2461,-4383,-4384, +-7332,-4385,-1481,-7333,-7334,-7335,-2019,-2020,-7336,-4386,-7337,-2021,-7338,-4387,-4388,-4389,-4390,-4391,-4392,-4393,-4394,-7339,-4395,-3140,-4396,-4397,-4398,-4399,-3141,-3142,-2462,-4400,-7340,-7341,-4401,-7342,-7343,-7344,-7345,-7346,-4402,-4403,-4404,-3143,-7347,-4405,-1717,-7348,-3144,-4406,-3145,-4407,-2463,-2464,-1482,-7349,-7350,-1718,-1719,-7351,-7352,-7353,-7354,-7355, +-7356,-7357,-7358,-7359,-7360,-2465,-2466,-4408,-1720,-4409,-3146,-4410,-7361,-4411,-1483,-4412,-4413,-2022,-4414,-3147,-7362,-1484,-4415,-7363,-2467,-7364,-1721,-4416,-7365,-4417,-7366,-4418,-7367,-4419,-7368,-7369,-2468,-7370,-4420,-2469,-4421,-7371,-7372,-4422,-7373,-7374,-2470,-7375,-7376,-7377,-7378,-7379,-2471,-7380,-7381,-7382,-1485,-7383,-7384,-7385,-7386,-7387,-3148,-7388, +-1722,-2472,-4423,-3149,-2473,-7389,-4424,-2474,-7390,-1723,-4425,-4426,-4427,-7391,-4428,-7392,-314,-7393,-1277,-7394,-7395,-7396,-7397,-7398,-2475,-4429,-4430,-4431,-7399,-3150,-4432,-4433,-4434,-4435,-4436,-1724,-2476,-4437,-4438,-7400,-4439,-4440,-3151,-7401,-2477,-7402,-4441,-4442,-7403,-4443,-4444,-7404,-4445,-4446,-7405,-7406,-4447,-4448,-7407,-7408,-7409,-4449,-7410,-4450, +-7411,-7412,-7413,-7414,-819,-4451,-4452,-7415,-2478,-4453,-7416,-4454,-380,-7417,-7418,-7419,-4455,-7420,-4456,-7421,-1725,-4457,-4458,-4459,-7422,-4460,-7423,-7424,-7425,-7426,-470,-7427,-7428,-7429,-3152,-3153,-7430,-1726,-3154,-7431,-7432,-4461,-3155,-994,-2023,-7433,-3156,-7434,-7435,-7436,-7437,-4462,-3157,-7438,-3158,-7439,-7440,-7441,-7442,-4463,-4464,-7443,-7444,-7445, +-3159,-7446,-3160,-7447,-4465,-7448,-7449,-7450,-7451,-3161,-4466,-3162,-7452,-7453,-7454,-3163,-7455,-4467,-7456,-7457,-7458,-1135,-7459,-4468,-7460,-7461,-1486,-7462,-7463,-4469,-7464,-4470,-4471,-7465,-7466,-7467,-4472,-2479,-7468,-4473,-3164,-7469,-7470,-2024,-7471,-7472,-7473,-4474,-4475,-7474,-7475,-7476,-4476,-820,-4477,-7477,-7478,-7479,-7480,-4478,-4479,-4480,-4481,-7481, -7482,-7483,-4482,-7484,-7485,-4483,-7486], -[0,295,300,304,74,309,136,136,314,74,318,74,321,324,74,326,329,333,338,343,348,353,357,361,365,367,372,375,380,384,389, -393,398,402,407,409,412,416,418,422,425,429,432,436,17,441,444,447,451,453,458,462,467,470,474,477,480,483,486,489,492, -495,498,501, -504,507,510,513,516,519,522,525,528,531,534,537,540,543,546,550,553,556,559,562,565,569,572,576,579,103,32,103,587,591, -594,597,600,604,607,610,614,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,13,13,12,17, -12,12,26,17,13,12,12,12,12,12,12,13,13,13,61,17,12,12,17,12,17,13,624,628,633,637,641,62,17,647,652,657,662,13,666,670, -12,12,12,26,12,12,12,12,12,26,12,12,12,17,43,12,12,12,26,12,12,12,26,12,13,675,679,682, -686,690,693,696,698,700,704,707,712,716,721,726,730,12,12,12,12,734,12,12,12,12,26,13,12,12,12,12,12,12,12,12,17,12,737, -742,747,751,756,761,765,770,772,776,781,785,788,793,798,12,61,802,806,26,13,811,32,814,818,822,159,827,830,834, -838,842,845,848,851,854,858,863,866,870,874,879,883,886,891,894,898,902,906,910,915,918,921,924,929,933,937,940,944,32, -948,32,62,32,951,954,957,960,964,968,971,975,979,982,985,988,992,996,1001,1006,1011,1014,1018,1021,1024,1027,1031,1035, -1039,12,12,13,12,13, -17,12,12,52,12,12,43,12,17,12,12,12,12,12,12,52,12,26,26,12,12,12,1045,1049,1053,1057,1061,1066,1070,1075,1080,1085,1090, -1095,1100,1105,1110,1115,1119,1124,1128,1131,1134,1138,1143,1148,1153,1158,17,17,13,1163,1168,1171,12,12,12,12,12,12,12, -12,12,12, -12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,1173,1178,1181,1185,1190,1195,1200,1205,1210,1214,1218,1222,1225,1228, -1232,1235,1238,1242,1246,1250,1253,1257,1261,1264,1266,52,1270,1275,1279,1283,1288,1291,1294,1298,1301,1305,1308,1313, -1318,1323,1328,1333,1338,12,12,12,78, -13,17,26,12,13,12,12,78,17,1343,1347,1352,1356,43,1360,1363,1368,1372,1375,66,1381,1386,1391,53,1397,1401,1406,1410,1412, -1415,1419,1422,1426,1430,1434,1438,1441,1446,1450,79,1454,1459,1463,1468,1473,1476,1480,1484,1488,1492,53,1497,1502,1507, -1512,1515,46,1520,1525,1528,1533,1536,1541,1545, -1549,1553,1557,1560,1565,1570,1575,1579,1584,1589,1594,1598,1603,13,1608,1612,1616,1620,1624,1627,1630,1633,1637,1641, -1645,1650,1652,1657,1662,1667,1672,1675,1677,1679,1682,1685,1690,1693,1697,1699,1702,1705,1709,1712,1714,1717,1722,1726, -1730,1733,1736,1739,1742,1745,1748,1752,1755,1758,1762,1766,1769,1773,1778,30, -1784,176,1789,1793,1797,1802,1806,1809,1812,1817,179,1821,20,1827,18,46,18,1833,1837,1842,1845,1849,1853,1858,1863,1868, -1871,46,20,20,46,53,53,54,180,80,181,80,1879,1883,1887,1891,1894,1899,1903,1906,1910,1913,17,30,20,1918,1923,1928,1933, -20,1937,1942,1947,1952,1956,1961,1965,1968, -1973,1978,1982,80,1987,1990,1994,1999,2003,2008,2013,2018,2022,2027,2030,2035,2040,2043,2046,2049,82,2055,2059,18,2062, -2066,2071,2074,2078,2082,46,2086,2089,2093,2098,30,13,2103,2108,2113,2118,2121,2125,2129,2133,2138,2141,2144,2148,2152, -2157,2162,2165,2169,2173,2177,2180,2184,2188,2193,2198,2202,2206,2208, -2212,2216,2220,2225,2229,2234,2239,2242,2245,2250,2253,2257,2262,2266,2270,2275,2279,2284,2288,2292,2295,2299,2302,2307, -2312,2316,2321,2324,2327,2332,2336,2340,2344,2348,103,2352,2356,2360,2364,2368,2372,2376,2381,2384,2389,2394,2398,2401, -2406,2411,2414,2419,2424,2429,2434,2439,2442,2447,2451,2456,2461,2464,2468,2472, -2477,2482,13,2487,2491,2494,2498,2503,2508,2512,2516,2521,2526,2531,2536,2540,2544,2549,2554,2558,2563,2568,2572,2576, -2580,2584,2588,2592,2596,2600,2605,2610,2615,2619,2624,2628,82,2631,2634,2638,2641,2644,2648,2653,2656,2661,2664,2669, -2673,2677,69,2682,2686,2690,2695,2698,2702,2707,2712,2717,2722,2726,54,2730, -2733,20,2738,2742,20,2747,2750,2754,2757,2762,30,2765,2769,2773,2776,2780,2785,2790,2794,2797,2802,2807,2811,2815,2819, -2824,2829,2834,2838,2843,2848,2852,2857,2861,2865,2869,2874,2879,2884,2889,2894,2898,2903,2908,2911,2915,2920,2925,2929, -2933,2937,2941,2944,2948,2952,2957,2962,2967,47,2973,2976,2981,2986,2990, -2993,2997,26,3002,3007,3012,3015,3020,3025,3030,3035,3037,3041,3045,3049,3054,3059,3063,3066,3070,3074,3078,3082,3086, -3090,3095,3100,3105,3109,3113,3117,3121,52,3125,3129,3132,3136,3141,3145,3149,3154,3157,3161,3166,3170,3173,3176,3180, -3184,3188,3193,3197,3202,3206,3211,3216,3221,3226,3229,3234,3238,3243,3248,3253, -3256,3261,3266,3271,3276,3280,3284,3288,3292,3297,3301,3305,3310,3315,3319,3322,3327,3332,3337,3342,3346,3351,3356,3360, -3363,3367,3370,3375,3379,3382,3385,3389,3394,3399,3404,3409,3413,3417,54,3421,3426,3430,3434,13,3438,3442,3446,3451,3456, -3461,3466,3470,3475,3479,3484,3489,3493,3498,3502,79,79,3507,3510,3515, -3520,3524,3528,3532,3535,3540,3543,3548,3552,3557,3561,47,3565,3569,3573,3577,3581,3585,3588,3592,3597,3601,3604,3609, -3614,12,3619,3624,3629,3633,3637,3641,3644,3648,3652,3657,3660,3665,3670,3675,3679,3682,3686,3691,3696,3701,3705,3710, -3715,30,3719,3724,13,3729,3734,3738,3743,3747,3751,3755,47,3759,3763,3767, -3770,3775,3778,3783,3788,3793,3797,18,3801,3804,3807,3810,3814,3819,3823,3827,3832,43,3837,3841,3845,3849,3852,3856,3861, -3866,3871,3876,3881,66,3886,3890,66,20,3894,3897,3900,3903,3908,3912,3917,3922,3925,3930,3934,3937,3942,3946,3951,3954, -3959,3963,3967,3971,3975,3980,3983,3987,3991,3996,4000,4003,4008,4013, -4018,4023,4028,4033,4037,4041,4045,4050,4053,4057,4062,4066,4069,4074,4079,4084,4088,4093,4097,4102,4107,4112,4116,4121, -4125,4130,4135,4139,4143,4147,4151,4156,4160,4165,4168,4173,4177,4181,4185,4190,4194,4199,4204,4209,4214,4219,4224,4229, -4234,4237,4241,4245,4250,4255,4260,4265,4270,4275,4280,4285,4290,4295,4300,4304, -4309,4313,4318,4323,4328,4333,4338,4343,4348,4352,4357,4362,4367,4372,4376,4381,4385,4390,4394,4399,4404,4409,4413,4418, -4423,4428,4433,4438,4441,4446,4451,4455,4460,4465,4469,4474,4478,4483,4487,4491,4496,4501,4506,4511,4516,4521,4526,4530, -4534,4539,4544,4548,4553,4558,4562,4567,4572,4577,4582,4587,4591,4596,4600,47, -18,4605,18,4608,4612,4615,4620,4625,4630,4635,4640,4644,4649,4652,4656,30,4661,4665,4669,4673,4676,4679,4682,4687,4691, -4695,4697,180,18,4700,4703,4708,4712,4716,30,4720,4724,4728,4733,4737,4742,4746,4750,4755,4760,4765,4770,4775,4779,4783, -4787,4791,4796,4801,13,4806,4810,4814,4819,4824,4829,4833,4837,4840, -4845,4848,4852,4856,4859,4864,4868,4872,4877,4882,4886,43,4890,4895,4900,4904,4908,4912,4915,4919,4924,13,4929,4932,4937, -4942,4946,4949,26,4951,4956,4960,4963,4967,80,4972,4976,4980,4984,4988,4992,4996,5001,5005,5010,5015,5018,5022,5026,5030, -5034,5039,5042,5046,17,5050,17,5054,5058,5061,5065,5069,5074,5077, -5082,5086,5090,5095,5100,5104,5107,5111,5114,5119,5123,5126,5129,5133,5137,5142,5147,5151,5154,5158,5162,5166,5170,5175, -5178,5181,5186,5191,5196,5199,5202,5206,5210,5215,5219,5224,5229,5233,5238,5243,5247,5251,5255,5259,5263,5267,5271,5276, -5279,5282,5287,5292,5295,5299,5302,5306,5310,5315,5320,5324,5328,5333,5337,5341, -5346,5351,5356,5359,5363,5368,5372,5377,5382,5386,5391,5395,5400,5405,5409,5414,5418,5423,5426,5431,5435,5439,5442,5445, -5450,5454,5459,5464,5468,5472,5477,5482,5487,5491,5496,5501,5506,5511,5516,46,20,54,5521,5526,20,5530,5534,5538,5542, -5546,5551,5555,5559,5564,5568,5572,5576,5581,5585,5589,5594,5598,5601,5606, -5611,5615,5619,5624,5629,5633,5638,5643,5646,5651,5656,5659,5664,5667,5670,5673,5676,5679,5682,5685,5688,5691,5694,5697, -5700,5703,5706,5709,5712,5715,5718,5721,5724,5727,5730,5734,5737,5740,5745,5750,5755,5760,5764,5768,5773,5777,5782,5786, -18,5790,5795,5800,5805,5810,5815,5820,5824,5827,5832,5837,20,5841,5844,5848, -5852,5857,5861,5864,5867,5872,5876,5880,5884,5889,5894,5898,5902,5905,5908,18,5913,5917,5921,5926,5931,13,5935,5939,5944, -5948,5952,5957,5961,5964,5966,5970,5974,5977,5982,5985,5989,5993,5998,6002,6007,6011,6015,6018,6023,6028,6032,69,20,6036, -6041,6045,6049,6053,6058,6063,6068,6073,6076,6080,6085,6089,6092,6096, -6100,6104,6109,6113,6118,6123,6127,6132,6137,6142,6146,6150,6155,47,6160,20,6162,6167,6170,6175,82,6180,6185,6189,6194, -6199,6203,6207,6211,6216,6221,53,6225,6228,6232,6237,26,6240,6245,6250,6255,6260,6264,6268,6273,6278,6282,6287,6292,6297, -6300,6303,6307,6312,6315,6320,82,6325,6330,6334,6338,6343,6347,6352, -6355,6360,6365,6369,6374,6379,6384,6389,6394,6399,6404,6409,6411,6416,6421,6425,6430,6435,6439,6443,6447,6451,6456,6461, -6466,6470,6475,6478,6483,6487,6491,6494,6498,6501,61,6504,6509,6514,6519,6523,6526,6531,6535,6540,6544,6548,6552,6556, -6561,6566,6571,6575,6578,6583,6588,6592,6597,6600,6604,6607,6611,6616,6621,6626, -6628,6632,6636,6640,6644,6648,6653,18,6658,6662,6666,18,6671,6676,6679,6684,6689,6694,6699,6701,6705,6708,6712,6717,6722, -6727,6732,6737,6740,6744,20,6748,6751,6756,6761,6765,6770,6774,6779,6784,6789,6794,6798,6802,6806,6811,6815,6820,6824, -6827,6832,6837,6841,6844,6848,6851,6855,6858,6861,6864,6868,6871,6875,6880, -6885,6888,6893,6898,6902,6906,6911,6913,6916,240,6921,6925,6930,18,6934,6939,6944,6947,6950,6953,6958,6963,6967,6971, -6975,6979,6984,78,6987,6991,18,6995,6999,7004,7008,7013,7018,7022,7027,7030,7035,7039,7043,7047,7051,7054,7057,7061,7065, -7070,7074,7079,7083,7088,7092,7097,7100,7103,7107,7112,7116,7119,7123,7128, -243,7132,7134,7136,243,7139,7142,7146,7150,7154,7157,7160,7164,7169,7171,7175,7179,7184,7188,7193,7198,7202,52,7205,7210, -7214,7219,7223,7227,7230,7235,7239,7243,7247,7252,7257,7261,7266,7268,7272,7276,7280,7284,7288,7292,7295,244,7304,7308, -7312,7317,7322,7327,7331,7336,7341,7344,7348,7352,7356,7360,7364,7367,7370, -7375,7380,7384,7388,7391,7396,7401,7406,7411,7416,7420,7424,7428,7431,7434,7439,7443,7446,7450,7455,7460,12,7465,7467, -7470,7474,7479,7482,7486,7491,7496,7501,7505,7509,7513,7517,7520,7525,7529,7534,7538,7543,13,7548,7552,7556,7558,7561, -7566,7571,7576,7579,7583,7588,7592,7596,7600,247,7606,7611,7615,7619,7623,7626, -7631,7636,7641,7646,7650,7654,7658,7663,7667,7672,7677,7682,7686,7690,7694,7699,7703,249,7707,250,7713,7717,7721,7724, -7728,7732,7737,7741,7746,7751,7756,7761,7765,7769,7773,7776,7780,7785,7790,7795,7799,7804,7809,7813,7818,7823,7827,7831, -7836,7841,7846,7850,7855,7860,7865,7870,7873,7878,7883,7888,17,7893,7896,17, -7900,7904,7908,7913,7916,7920,7925,7930,7933,7937,7941,7944,7949,7953,7958,7963,7967,7972,7976,7981,7985,7990,7994,7999, -8003,8007,8011,8015,8020,8025,8030,8035,8040,8045,8050,8053,8057,8061,8066,8071,8075,8078,61,8082,8085,8090,181,47,8095, -8100,8105,8109,255,8115,247,8118,8123,18,8127,8132,8136,8139,8144,8149, -8153,8158,8161,8165,8170,8174,8179,8183,8187,8192,8197,8201,13,8204,8209,8214,8217,8221,8226,8230,250,8235,8240,8245, -8249,18,8254,18,8258,8263,244,8268,240,20,8272,8277,8281,8286,8289,8293,8296,20,8301,8304,8309,30,8313,8317,256,47,8322, -8326,8331,8335,8339,8344,8347,8350,8354,8358,8361,20,18,8366, -8370,30,257,8374,8377,8382,8387,8392,8397,8401,8404,8409,46,8414,8419,8424,18,8428,8433,8438,8441,8443,8447,8451,8455, -8458,8462,8467,8471,8476,8480,8483,8487,8491,8496,8501,8504,8509,8514,8519,8524,8528,8533,8538,8542,8547,8552,8556,30, -8561,20,8564,8569,8573,8578,257,54,8583,18,8587,8592,8597,8601,8606, -8611,8616,8621,8626,8629,54,8634,8639,8642,8647,8650,255,8653,8658,8662,8665,8669,8674,8677,8682,8686,8691,8695,8699, -8703,8707,8712,8715,8720,8724,8728,8733,249,8738,8743,8748,8753,8758,8763,8768,8772,8776,8780,8784,176,8789,8792,8795, -8799,8804,8808,8811,8815,8818,8822,8825,8828,8833,8837,8841,8844,8849,18,69, -8854,8859,53,8862,8865,8870,8875,8878,8883,8888,8893,8898,8903,8908,8911,8916,8920,8925,8929,8934,8937,8942,8946,8950, -8954,8958,8963,8967,8971,8976,8981,8986,8989,8994,8998,9002,9007,9010,9013,9018,9023,9026,9030,9034,9038,9043,9048,9053, -9058,9062,9067,9072,9076,9080,9083,9087,9091,9095,9100,9104,9109,9113,9118,30, -9121,9125,9130,9133,9138,9142,9146,9151,43,9156,9161,9166,9170,9174,9176,9180,9185,9189,9194,9198,9202,9207,9211,9215, -9219,9223,66,9226,9230,9235,9240,9245,9250,9253,9258,9262,9267,9272,9277,9282,9286,9291,9293,9297,9300,9304,9308,9312, -9316,9321,9325,9329,9333,9337,9341,9344,9348,9352,9356,9360,9365,9369,9374,69, -66,256,9379,179,69,9383,9387,9392,9397,9402,9406,9411,9415,9420,9424,9428,9432,9437,9442,9447,9451,9454,9458,9461,9465, -9470,9475,9480,9485,9488,9491,79,9496,17,9501,9505,9509,9514,9519,9524,9529,9534,9537,9540,9544,9547,9552,9556,9561,9566, -9570,9573,9577,9581,9586,9590,52,9594,9598,9601,9606,9610,9614,9617, -9622,9626,9630,9635,9639,9642,9647,9652,9655,9660,9664,9667,9671,9676,9681,9686,9690,9694,9698,9703,9706,9711,9714,9718, -9722,9726,9730,9735,9739,9742,9747,9751,9756,9761,9765,9770,9774,9779,9784,32,32,32,62,32,265,265,9791,9794,9798,9802, -9806,62,62,32,9811,13,17,13,26,9815,13,61,9818,9823, -9827,9831,9836,9840,9843,9848,9852,9857,9862,9865,9869,9873,9877,9882,9887,9891,9895,9899,9904,9909,9914,9919,9923,9928, -9933,9938,9942,9945,9948,9952,9956,9960,9963,9967,9970,9973,9977,9980,159,9983,9986,9991,9996,10000,10005,10010,10013, -10016,10020,267,10025,10028,10032,10037,10041,10046,10050,10054,10059,10064,10068,10073,10078,10082, -10086,10090,10094,10098,10101,10103,10108,10112,10117,43,10121,10126,10131,10136,10139,96,10144,10147,10149,270,10152, -10154,10159,10162,10166,10169,10172,10175,10178,10181,10184,10188,10191,10195,10198,10202,10206,10209,10213,10215,10218, -10222,10226,10229,10234,10238,10242,10247,10251,10254,10257,10260,10264,10266,10270,10273,10277,10281,10285,10290,10295, -10299,10303,10307, -10311,10315,10319,10321,10324,10328,10333,10338,10342,10347,10351,10354,10359,10362,10366,10369,10372,10377,10380,10385, -10389,10393,10396,10399,10402,10405,10409,10414,10418,10423,10428,10433,10438,10443,10446,10449,10453,10458,10462,10465, -10469,10473,10478,10483,10487,10492,10496,10500,10503,10507,10511,10516,10521,10526,10531,10536,10540,10543,10546,10549, -10553,10558,10563,10567, -10571,10574,10578,10583,10588,10591,10595,10599,10602,10605,100,279,270,10610,10615,10620,10625,267,10629,10633,10636, -10641,10645,10648,10653,10657,281,10661,10666,10670,96,10675,282,282,100,10678,10682,100,10686,283,10693,10698,10703, -10707,10711,10714,10716,279,10719,284,284,10723,96,10726,10729,10733,10738,10740,10744,10749,10753,10757,10761,10765, -10770,10773,10778,10782,10787,10791,10794,10798,10801,10804,10809,10813,10818,10822,10827,10831,10835,10837,10842,10845, -10849,10851,10856,290,10859,10862,10866,10870,10874,10879,10883,10888,10892,10895,10898,10901,10906,10910,10914,10917, -10921,10925,10929,10933,10938,283,10942,10945,10950,10954,10958,10962,10967,10969,10974,10977,10982,10987,10992,10996, -290,11000,11003,11007, -11010,11012,11017,11019,11023,11028,11033,11037,11042,11046,11050,11053,11058,11061,11065,11068,11071,11076,11081,11086, -11090,11095,11099,11104,11108,11113,11118,11123,11128,11132,11136,96,100,11141,11146,11150,11154,11159,11163,11166,11170, -11173,11177,11181,11185,11188,11191,11194,11196,11199,11204,11209,281,11213,11217,78,11221,11224,11229,11233,292,11237, -11240,11244, +[0,295,300,304,74,309,136,136,314,74,318,74,321,324,74,326,329,333,338,343,348,353,357,361,365,367,372,375,380,384,389,393,398,402,407,409,412,416,418,422,425,429,432,436,17,441,444,447,451,453,458,462,467,470,474,477,480,483,486,489,492,495,498,501, +504,507,510,513,516,519,522,525,528,531,534,537,540,543,546,550,553,556,559,562,565,569,572,576,579,103,32,103,587,591,594,597,600,604,607,610,614,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,13,13,12,17, +12,12,26,17,13,12,12,12,12,12,12,13,13,13,61,17,12,12,17,12,17,13,624,628,633,637,641,62,17,647,652,657,662,13,666,670,12,12,12,26,12,12,12,12,12,26,12,12,12,17,43,12,12,12,26,12,12,12,26,12,13,675,679,682, +686,690,693,696,698,700,704,707,712,716,721,726,730,12,12,12,12,734,12,12,12,12,26,13,12,12,12,12,12,12,12,12,17,12,737,742,747,751,756,761,765,770,772,776,781,785,788,793,798,12,61,802,806,26,13,811,32,814,818,822,159,827,830,834, +838,842,845,848,851,854,858,863,866,870,874,879,883,886,891,894,898,902,906,910,915,918,921,924,929,933,937,940,944,32,948,32,62,32,951,954,957,960,964,968,971,975,979,982,985,988,992,996,1001,1006,1011,1014,1018,1021,1024,1027,1031,1035,1039,12,12,13,12,13, +17,12,12,52,12,12,43,12,17,12,12,12,12,12,12,52,12,26,26,12,12,12,1045,1049,1053,1057,1061,1066,1070,1075,1080,1085,1090,1095,1100,1105,1110,1115,1119,1124,1128,1131,1134,1138,1143,1148,1153,1158,17,17,13,1163,1168,1171,12,12,12,12,12,12,12,12,12,12, +12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,1173,1178,1181,1185,1190,1195,1200,1205,1210,1214,1218,1222,1225,1228,1232,1235,1238,1242,1246,1250,1253,1257,1261,1264,1266,52,1270,1275,1279,1283,1288,1291,1294,1298,1301,1305,1308,1313,1318,1323,1328,1333,1338,12,12,12,78, +13,17,26,12,13,12,12,78,17,1343,1347,1352,1356,43,1360,1363,1368,1372,1375,66,1381,1386,1391,53,1397,1401,1406,1410,1412,1415,1419,1422,1426,1430,1434,1438,1441,1446,1450,79,1454,1459,1463,1468,1473,1476,1480,1484,1488,1492,53,1497,1502,1507,1512,1515,46,1520,1525,1528,1533,1536,1541,1545, +1549,1553,1557,1560,1565,1570,1575,1579,1584,1589,1594,1598,1603,13,1608,1612,1616,1620,1624,1627,1630,1633,1637,1641,1645,1650,1652,1657,1662,1667,1672,1675,1677,1679,1682,1685,1690,1693,1697,1699,1702,1705,1709,1712,1714,1717,1722,1726,1730,1733,1736,1739,1742,1745,1748,1752,1755,1758,1762,1766,1769,1773,1778,30, +1784,176,1789,1793,1797,1802,1806,1809,1812,1817,179,1821,20,1827,18,46,18,1833,1837,1842,1845,1849,1853,1858,1863,1868,1871,46,20,20,46,53,53,54,180,80,181,80,1879,1883,1887,1891,1894,1899,1903,1906,1910,1913,17,30,20,1918,1923,1928,1933,20,1937,1942,1947,1952,1956,1961,1965,1968, +1973,1978,1982,80,1987,1990,1994,1999,2003,2008,2013,2018,2022,2027,2030,2035,2040,2043,2046,2049,82,2055,2059,18,2062,2066,2071,2074,2078,2082,46,2086,2089,2093,2098,30,13,2103,2108,2113,2118,2121,2125,2129,2133,2138,2141,2144,2148,2152,2157,2162,2165,2169,2173,2177,2180,2184,2188,2193,2198,2202,2206,2208, +2212,2216,2220,2225,2229,2234,2239,2242,2245,2250,2253,2257,2262,2266,2270,2275,2279,2284,2288,2292,2295,2299,2302,2307,2312,2316,2321,2324,2327,2332,2336,2340,2344,2348,103,2352,2356,2360,2364,2368,2372,2376,2381,2384,2389,2394,2398,2401,2406,2411,2414,2419,2424,2429,2434,2439,2442,2447,2451,2456,2461,2464,2468,2472, +2477,2482,13,2487,2491,2494,2498,2503,2508,2512,2516,2521,2526,2531,2536,2540,2544,2549,2554,2558,2563,2568,2572,2576,2580,2584,2588,2592,2596,2600,2605,2610,2615,2619,2624,2628,82,2631,2634,2638,2641,2644,2648,2653,2656,2661,2664,2669,2673,2677,69,2682,2686,2690,2695,2698,2702,2707,2712,2717,2722,2726,54,2730, +2733,20,2738,2742,20,2747,2750,2754,2757,2762,30,2765,2769,2773,2776,2780,2785,2790,2794,2797,2802,2807,2811,2815,2819,2824,2829,2834,2838,2843,2848,2852,2857,2861,2865,2869,2874,2879,2884,2889,2894,2898,2903,2908,2911,2915,2920,2925,2929,2933,2937,2941,2944,2948,2952,2957,2962,2967,47,2973,2976,2981,2986,2990, +2993,2997,26,3002,3007,3012,3015,3020,3025,3030,3035,3037,3041,3045,3049,3054,3059,3063,3066,3070,3074,3078,3082,3086,3090,3095,3100,3105,3109,3113,3117,3121,52,3125,3129,3132,3136,3141,3145,3149,3154,3157,3161,3166,3170,3173,3176,3180,3184,3188,3193,3197,3202,3206,3211,3216,3221,3226,3229,3234,3238,3243,3248,3253, +3256,3261,3266,3271,3276,3280,3284,3288,3292,3297,3301,3305,3310,3315,3319,3322,3327,3332,3337,3342,3346,3351,3356,3360,3363,3367,3370,3375,3379,3382,3385,3389,3394,3399,3404,3409,3413,3417,54,3421,3426,3430,3434,13,3438,3442,3446,3451,3456,3461,3466,3470,3475,3479,3484,3489,3493,3498,3502,79,79,3507,3510,3515, +3520,3524,3528,3532,3535,3540,3543,3548,3552,3557,3561,47,3565,3569,3573,3577,3581,3585,3588,3592,3597,3601,3604,3609,3614,12,3619,3624,3629,3633,3637,3641,3644,3648,3652,3657,3660,3665,3670,3675,3679,3682,3686,3691,3696,3701,3705,3710,3715,30,3719,3724,13,3729,3734,3738,3743,3747,3751,3755,47,3759,3763,3767, +3770,3775,3778,3783,3788,3793,3797,18,3801,3804,3807,3810,3814,3819,3823,3827,3832,43,3837,3841,3845,3849,3852,3856,3861,3866,3871,3876,3881,66,3886,3890,66,20,3894,3897,3900,3903,3908,3912,3917,3922,3925,3930,3934,3937,3942,3946,3951,3954,3959,3963,3967,3971,3975,3980,3983,3987,3991,3996,4000,4003,4008,4013, +4018,4023,4028,4033,4037,4041,4045,4050,4053,4057,4062,4066,4069,4074,4079,4084,4088,4093,4097,4102,4107,4112,4116,4121,4125,4130,4135,4139,4143,4147,4151,4156,4160,4165,4168,4173,4177,4181,4185,4190,4194,4199,4204,4209,4214,4219,4224,4229,4234,4237,4241,4245,4250,4255,4260,4265,4270,4275,4280,4285,4290,4295,4300,4304, +4309,4313,4318,4323,4328,4333,4338,4343,4348,4352,4357,4362,4367,4372,4376,4381,4385,4390,4394,4399,4404,4409,4413,4418,4423,4428,4433,4438,4441,4446,4451,4455,4460,4465,4469,4474,4478,4483,4487,4491,4496,4501,4506,4511,4516,4521,4526,4530,4534,4539,4544,4548,4553,4558,4562,4567,4572,4577,4582,4587,4591,4596,4600,47, +18,4605,18,4608,4612,4615,4620,4625,4630,4635,4640,4644,4649,4652,4656,30,4661,4665,4669,4673,4676,4679,4682,4687,4691,4695,4697,180,18,4700,4703,4708,4712,4716,30,4720,4724,4728,4733,4737,4742,4746,4750,4755,4760,4765,4770,4775,4779,4783,4787,4791,4796,4801,13,4806,4810,4814,4819,4824,4829,4833,4837,4840, +4845,4848,4852,4856,4859,4864,4868,4872,4877,4882,4886,43,4890,4895,4900,4904,4908,4912,4915,4919,4924,13,4929,4932,4937,4942,4946,4949,26,4951,4956,4960,4963,4967,80,4972,4976,4980,4984,4988,4992,4996,5001,5005,5010,5015,5018,5022,5026,5030,5034,5039,5042,5046,17,5050,17,5054,5058,5061,5065,5069,5074,5077, +5082,5086,5090,5095,5100,5104,5107,5111,5114,5119,5123,5126,5129,5133,5137,5142,5147,5151,5154,5158,5162,5166,5170,5175,5178,5181,5186,5191,5196,5199,5202,5206,5210,5215,5219,5224,5229,5233,5238,5243,5247,5251,5255,5259,5263,5267,5271,5276,5279,5282,5287,5292,5295,5299,5302,5306,5310,5315,5320,5324,5328,5333,5337,5341, +5346,5351,5356,5359,5363,5368,5372,5377,5382,5386,5391,5395,5400,5405,5409,5414,5418,5423,5426,5431,5435,5439,5442,5445,5450,5454,5459,5464,5468,5472,5477,5482,5487,5491,5496,5501,5506,5511,5516,46,20,54,5521,5526,20,5530,5534,5538,5542,5546,5551,5555,5559,5564,5568,5572,5576,5581,5585,5589,5594,5598,5601,5606, +5611,5615,5619,5624,5629,5633,5638,5643,5646,5651,5656,5659,5664,5667,5670,5673,5676,5679,5682,5685,5688,5691,5694,5697,5700,5703,5706,5709,5712,5715,5718,5721,5724,5727,5730,5734,5737,5740,5745,5750,5755,5760,5764,5768,5773,5777,5782,5786,18,5790,5795,5800,5805,5810,5815,5820,5824,5827,5832,5837,20,5841,5844,5848, +5852,5857,5861,5864,5867,5872,5876,5880,5884,5889,5894,5898,5902,5905,5908,18,5913,5917,5921,5926,5931,13,5935,5939,5944,5948,5952,5957,5961,5964,5966,5970,5974,5977,5982,5985,5989,5993,5998,6002,6007,6011,6015,6018,6023,6028,6032,69,20,6036,6041,6045,6049,6053,6058,6063,6068,6073,6076,6080,6085,6089,6092,6096, +6100,6104,6109,6113,6118,6123,6127,6132,6137,6142,6146,6150,6155,47,6160,20,6162,6167,6170,6175,82,6180,6185,6189,6194,6199,6203,6207,6211,6216,6221,53,6225,6228,6232,6237,26,6240,6245,6250,6255,6260,6264,6268,6273,6278,6282,6287,6292,6297,6300,6303,6307,6312,6315,6320,82,6325,6330,6334,6338,6343,6347,6352, +6355,6360,6365,6369,6374,6379,6384,6389,6394,6399,6404,6409,6411,6416,6421,6425,6430,6435,6439,6443,6447,6451,6456,6461,6466,6470,6475,6478,6483,6487,6491,6494,6498,6501,61,6504,6509,6514,6519,6523,6526,6531,6535,6540,6544,6548,6552,6556,6561,6566,6571,6575,6578,6583,6588,6592,6597,6600,6604,6607,6611,6616,6621,6626, +6628,6632,6636,6640,6644,6648,6653,18,6658,6662,6666,18,6671,6676,6679,6684,6689,6694,6699,6701,6705,6708,6712,6717,6722,6727,6732,6737,6740,6744,20,6748,6751,6756,6761,6765,6770,6774,6779,6784,6789,6794,6798,6802,6806,6811,6815,6820,6824,6827,6832,6837,6841,6844,6848,6851,6855,6858,6861,6864,6868,6871,6875,6880, +6885,6888,6893,6898,6902,6906,6911,6913,6916,240,6921,6925,6930,18,6934,6939,6944,6947,6950,6953,6958,6963,6967,6971,6975,6979,6984,78,6987,6991,18,6995,6999,7004,7008,7013,7018,7022,7027,7030,7035,7039,7043,7047,7051,7054,7057,7061,7065,7070,7074,7079,7083,7088,7092,7097,7100,7103,7107,7112,7116,7119,7123,7128, +243,7132,7134,7136,243,7139,7142,7146,7150,7154,7157,7160,7164,7169,7171,7175,7179,7184,7188,7193,7198,7202,52,7205,7210,7214,7219,7223,7227,7230,7235,7239,7243,7247,7252,7257,7261,7266,7268,7272,7276,7280,7284,7288,7292,7295,244,7304,7308,7312,7317,7322,7327,7331,7336,7341,7344,7348,7352,7356,7360,7364,7367,7370, +7375,7380,7384,7388,7391,7396,7401,7406,7411,7416,7420,7424,7428,7431,7434,7439,7443,7446,7450,7455,7460,12,7465,7467,7470,7474,7479,7482,7486,7491,7496,7501,7505,7509,7513,7517,7520,7525,7529,7534,7538,7543,13,7548,7552,7556,7558,7561,7566,7571,7576,7579,7583,7588,7592,7596,7600,247,7606,7611,7615,7619,7623,7626, +7631,7636,7641,7646,7650,7654,7658,7663,7667,7672,7677,7682,7686,7690,7694,7699,7703,249,7707,250,7713,7717,7721,7724,7728,7732,7737,7741,7746,7751,7756,7761,7765,7769,7773,7776,7780,7785,7790,7795,7799,7804,7809,7813,7818,7823,7827,7831,7836,7841,7846,7850,7855,7860,7865,7870,7873,7878,7883,7888,17,7893,7896,17, +7900,7904,7908,7913,7916,7920,7925,7930,7933,7937,7941,7944,7949,7953,7958,7963,7967,7972,7976,7981,7985,7990,7994,7999,8003,8007,8011,8015,8020,8025,8030,8035,8040,8045,8050,8053,8057,8061,8066,8071,8075,8078,61,8082,8085,8090,181,47,8095,8100,8105,8109,255,8115,247,8118,8123,18,8127,8132,8136,8139,8144,8149, +8153,8158,8161,8165,8170,8174,8179,8183,8187,8192,8197,8201,13,8204,8209,8214,8217,8221,8226,8230,250,8235,8240,8245,8249,18,8254,18,8258,8263,244,8268,240,20,8272,8277,8281,8286,8289,8293,8296,20,8301,8304,8309,30,8313,8317,256,47,8322,8326,8331,8335,8339,8344,8347,8350,8354,8358,8361,20,18,8366, +8370,30,257,8374,8377,8382,8387,8392,8397,8401,8404,8409,46,8414,8419,8424,18,8428,8433,8438,8441,8443,8447,8451,8455,8458,8462,8467,8471,8476,8480,8483,8487,8491,8496,8501,8504,8509,8514,8519,8524,8528,8533,8538,8542,8547,8552,8556,30,8561,20,8564,8569,8573,8578,257,54,8583,18,8587,8592,8597,8601,8606, +8611,8616,8621,8626,8629,54,8634,8639,8642,8647,8650,255,8653,8658,8662,8665,8669,8674,8677,8682,8686,8691,8695,8699,8703,8707,8712,8715,8720,8724,8728,8733,249,8738,8743,8748,8753,8758,8763,8768,8772,8776,8780,8784,176,8789,8792,8795,8799,8804,8808,8811,8815,8818,8822,8825,8828,8833,8837,8841,8844,8849,18,69, +8854,8859,53,8862,8865,8870,8875,8878,8883,8888,8893,8898,8903,8908,8911,8916,8920,8925,8929,8934,8937,8942,8946,8950,8954,8958,8963,8967,8971,8976,8981,8986,8989,8994,8998,9002,9007,9010,9013,9018,9023,9026,9030,9034,9038,9043,9048,9053,9058,9062,9067,9072,9076,9080,9083,9087,9091,9095,9100,9104,9109,9113,9118,30, +9121,9125,9130,9133,9138,9142,9146,9151,43,9156,9161,9166,9170,9174,9176,9180,9185,9189,9194,9198,9202,9207,9211,9215,9219,9223,66,9226,9230,9235,9240,9245,9250,9253,9258,9262,9267,9272,9277,9282,9286,9291,9293,9297,9300,9304,9308,9312,9316,9321,9325,9329,9333,9337,9341,9344,9348,9352,9356,9360,9365,9369,9374,69, +66,256,9379,179,69,9383,9387,9392,9397,9402,9406,9411,9415,9420,9424,9428,9432,9437,9442,9447,9451,9454,9458,9461,9465,9470,9475,9480,9485,9488,9491,79,9496,17,9501,9505,9509,9514,9519,9524,9529,9534,9537,9540,9544,9547,9552,9556,9561,9566,9570,9573,9577,9581,9586,9590,52,9594,9598,9601,9606,9610,9614,9617, +9622,9626,9630,9635,9639,9642,9647,9652,9655,9660,9664,9667,9671,9676,9681,9686,9690,9694,9698,9703,9706,9711,9714,9718,9722,9726,9730,9735,9739,9742,9747,9751,9756,9761,9765,9770,9774,9779,9784,32,32,32,62,32,265,265,9791,9794,9798,9802,9806,62,62,32,9811,13,17,13,26,9815,13,61,9818,9823, +9827,9831,9836,9840,9843,9848,9852,9857,9862,9865,9869,9873,9877,9882,9887,9891,9895,9899,9904,9909,9914,9919,9923,9928,9933,9938,9942,9945,9948,9952,9956,9960,9963,9967,9970,9973,9977,9980,159,9983,9986,9991,9996,10000,10005,10010,10013,10016,10020,267,10025,10028,10032,10037,10041,10046,10050,10054,10059,10064,10068,10073,10078,10082, +10086,10090,10094,10098,10101,10103,10108,10112,10117,43,10121,10126,10131,10136,10139,96,10144,10147,10149,270,10152,10154,10159,10162,10166,10169,10172,10175,10178,10181,10184,10188,10191,10195,10198,10202,10206,10209,10213,10215,10218,10222,10226,10229,10234,10238,10242,10247,10251,10254,10257,10260,10264,10266,10270,10273,10277,10281,10285,10290,10295,10299,10303,10307, +10311,10315,10319,10321,10324,10328,10333,10338,10342,10347,10351,10354,10359,10362,10366,10369,10372,10377,10380,10385,10389,10393,10396,10399,10402,10405,10409,10414,10418,10423,10428,10433,10438,10443,10446,10449,10453,10458,10462,10465,10469,10473,10478,10483,10487,10492,10496,10500,10503,10507,10511,10516,10521,10526,10531,10536,10540,10543,10546,10549,10553,10558,10563,10567, +10571,10574,10578,10583,10588,10591,10595,10599,10602,10605,100,279,270,10610,10615,10620,10625,267,10629,10633,10636,10641,10645,10648,10653,10657,281,10661,10666,10670,96,10675,282,282,100,10678,10682,100,10686,283,10693,10698,10703,10707,10711,10714,10716,279,10719,284,284,10723,96,10726,10729,10733,10738,10740,10744,10749,10753,10757,10761,10765, +10770,10773,10778,10782,10787,10791,10794,10798,10801,10804,10809,10813,10818,10822,10827,10831,10835,10837,10842,10845,10849,10851,10856,290,10859,10862,10866,10870,10874,10879,10883,10888,10892,10895,10898,10901,10906,10910,10914,10917,10921,10925,10929,10933,10938,283,10942,10945,10950,10954,10958,10962,10967,10969,10974,10977,10982,10987,10992,10996,290,11000,11003,11007, +11010,11012,11017,11019,11023,11028,11033,11037,11042,11046,11050,11053,11058,11061,11065,11068,11071,11076,11081,11086,11090,11095,11099,11104,11108,11113,11118,11123,11128,11132,11136,96,100,11141,11146,11150,11154,11159,11163,11166,11170,11173,11177,11181,11185,11188,11191,11194,11196,11199,11204,11209,281,11213,11217,78,11221,11224,11229,11233,292,11237,11240,11244, 11248,11251,11254,292,11259,11262,11265], [1,3,296], [0,297,298,299,10], [0,-542,-44,-7488,-254,-121,-7489,-282,-7490,-7491,-1096,-687,-7492,-963,-1460,-1117,-1487], -[0,-941,-337,-1100,-13,-28,-219,-80,-104,-20,-10,-4484,-79,-3,-6,-327,-27,-98,-431,-1,-23,-233,-274,-16,-199,-3125,-231, --483,-87,-38,-33,-18,-1205,-117,-1402,-41,-195,-88,-976,-4,-7493,-814,-2481,-7494,-411,-7495,-160,-7496,-2411,-36,-2482, --182,-214,-4485,-162,-141,-7497,-7498,-2,-11,-109,-471,-5,-187, --17,-220,-4486,-872,-7499,-47,-419,-157,-91,-96,-732,-296,-2403,-1454,-873,-154,-818,-665,-7500,-1278,-143,-517,-7501, --526,-580,-555,-493,-4487,-2437,-49,-191,-2025,-3165,-1255,-2483,-1599,-89,-7502,-253,-4488,-7503,-1685,-557,-7504,-7505, --7506,-2026,-4489,-7507,-3166,-666,-971,-173,-7508,-7509,-64,-1065,-676,-287,-7510,-7511,-506,-4490,-1048, --4491,-9,-7512,-7513,-333,-2484,-138,-541,-7514,-12,-148,-211,-637,-7515,-7516,-3167,-947,-1115,-2412,-7517,-995,-4492, --4493,-2404,-7518,-19,-1684,-1727,-7519,-851,-7520,-7521,-2027,-7522,-1728,-937,-270,-7523,-7524,-22,-1613,-4494,-7525, --209,-4112,-1212,-7526], +[0,-941,-337,-1100,-13,-28,-219,-80,-104,-20,-10,-4484,-79,-3,-6,-327,-27,-98,-431,-1,-23,-233,-274,-16,-199,-3125,-231,-483,-87,-38,-33,-18,-1205,-117,-1402,-41,-195,-88,-976,-4,-7493,-814,-2481,-7494,-411,-7495,-160,-7496,-2411,-36,-2482,-182,-214,-4485,-162,-141,-7497,-7498,-2,-11,-109,-471,-5,-187, +-17,-220,-4486,-872,-7499,-47,-419,-157,-91,-96,-732,-296,-2403,-1454,-873,-154,-818,-665,-7500,-1278,-143,-517,-7501,-526,-580,-555,-493,-4487,-2437,-49,-191,-2025,-3165,-1255,-2483,-1599,-89,-7502,-253,-4488,-7503,-1685,-557,-7504,-7505,-7506,-2026,-4489,-7507,-3166,-666,-971,-173,-7508,-7509,-64,-1065,-676,-287,-7510,-7511,-506,-4490,-1048, +-4491,-9,-7512,-7513,-333,-2484,-138,-541,-7514,-12,-148,-211,-637,-7515,-7516,-3167,-947,-1115,-2412,-7517,-995,-4492,-4493,-2404,-7518,-19,-1684,-1727,-7519,-851,-7520,-7521,-2027,-7522,-1728,-937,-270,-7523,-7524,-22,-1613,-4494,-7525,-209,-4112,-1212,-7526], [0,-7527,-7528,-242,-131,-7529,-6,-7530,-127,-441,-52], [1,3,301], [0,302,0,303,11], @@ -3381,9 +1114,7 @@ true, [1,3,334], [0,335,336,337,5], [0,-542,-1254,-254,-282,-4499,-4500,-3171,-7535,-7536,-7537,-4374,-7538,-7539,-7540,-7541], -[0,-935,-28,-8,-6,-1,-199,-4501,-57,-1105,-26,-2029,-36,-86,-4502,-234,-1689,-2,-11,-29,-17,-7542,-47,-91,-284,-235,-90, --3172,-2485,-997,-2030,-7543,-4503,-7544,-287,-4504,-7545,-7546,-7547,-3173,-1115,-7548,-7549,-19,-4089,-7550,-4505, --7551,-7552,-1732,-4506], +[0,-935,-28,-8,-6,-1,-199,-4501,-57,-1105,-26,-2029,-36,-86,-4502,-234,-1689,-2,-11,-29,-17,-7542,-47,-91,-284,-235,-90,-3172,-2485,-997,-2030,-7543,-4503,-7544,-287,-4504,-7545,-7546,-7547,-3173,-1115,-7548,-7549,-19,-4089,-7550,-4505,-7551,-7552,-1732,-4506], [0,-1733,-441,-6,-106,-131,-127,-102,-53,-52,-95,-2486], [1,3,339], [0,340,341,342,4], @@ -3424,10 +1155,8 @@ true, [0,-4516,-716], [1,3,376], [0,377,378,379,5], -[0,-7561,-35,-490,-1491,-16,-101,-739,-117,-472,-725,-7562,-88,-976,-1987,-7563,-326,-313,-670,-220,-7564,-4517,-7565, --7566,-4518,-7567,-7568,-7569,-1737,-7570,-7571,-7572,-7573,-7574], -[0,-43,-51,-155,-73,-263,-80,-6,-1,-227,-648,-7,-56,-4,-36,-50,-2,-3182,-5,-7575,-7576,-290,-2494,-999,-7577,-1097,-7578, --7579,-2495,-3183,-12,-7580,-7581,-7582], +[0,-7561,-35,-490,-1491,-16,-101,-739,-117,-472,-725,-7562,-88,-976,-1987,-7563,-326,-313,-670,-220,-7564,-4517,-7565,-7566,-4518,-7567,-7568,-7569,-1737,-7570,-7571,-7572,-7573,-7574], +[0,-43,-51,-155,-73,-263,-80,-6,-1,-227,-648,-7,-56,-4,-36,-50,-2,-3182,-5,-7575,-7576,-290,-2494,-999,-7577,-1097,-7578,-7579,-2495,-3183,-12,-7580,-7581,-7582], [0,-4519,-4520,-7583,-42,-892,-3184,-2496,-746,-116,-53,-4156,-7584,-31,-99,-7585,-976], [1,3,381], [0,0,382,383,4], @@ -3435,8 +1164,7 @@ true, [0,-24,-74,-1739,-1282,-363,-2,-7586,-7587,-7588,-228,-566,-608], [1,3,385], [0,386,387,388,4], -[0,-4521,-4522,-7589,-7590,-7591,-4523,-7592,-4524,-4525,-4526,-4527,-7593,-7594,-7595,-7596,-7597,-7598,-7599,-7600, --3061,-3185], +[0,-4521,-4522,-7589,-7590,-7591,-4523,-7592,-4524,-4525,-4526,-4527,-7593,-7594,-7595,-7596,-7597,-7598,-7599,-7600,-3061,-3185], [0,-7601,-4528,-7602,-7603,-4529,-4530,-4531,-4532,-7604,-49,-63,-4533,-4534,-3186,-893,-1283,-1,-12,-10,-17,-27,-2,-4535], [0,-7605,-2972,-42,-7606], [1,3,390], @@ -3477,10 +1205,7 @@ true, [0,-60,-1385,-2500,-112], [1,3,426], [0,427,428,7,4], -[0,-16,-3189,-4541,-7616,-716,-4543,-2498,-3190,-3191,-4544,-3192,-7617,-2493,-2499,-7618,-4542,-3193,-4545,-4546,-7619, --7620,-7621,-7622,-2034,-4547,-7623,-7624,-7625,-2035,-3194,-7626,-4548,-7627,-7628,-2501,-2502,-7629,-1139,-398,-4549, --7630,-4550,-4551,-2036,-2037,-4552,-3195,-3196,-7631,-7632,-7633,-3197,-7634,-4553,-7635,-3198,-2503,-3199,-2504,-4554, --3200,-7636,-4555, +[0,-16,-3189,-4541,-7616,-716,-4543,-2498,-3190,-3191,-4544,-3192,-7617,-2493,-2499,-7618,-4542,-3193,-4545,-4546,-7619,-7620,-7621,-7622,-2034,-4547,-7623,-7624,-7625,-2035,-3194,-7626,-4548,-7627,-7628,-2501,-2502,-7629,-1139,-398,-4549,-7630,-4550,-4551,-2036,-2037,-4552,-3195,-3196,-7631,-7632,-7633,-3197,-7634,-4553,-7635,-3198,-2503,-3199,-2504,-4554,-3200,-7636,-4555, -7637,-7638,-7639,-7640,-7641,-7642,-7643], [0,-11,-539,-2033], [1,3,430], @@ -3514,14 +1239,12 @@ true, [0,-564,-4460,-2506,-748,-46], [1,3,459], [0,460,461,7,4], -[0,-1742,-16,-481,-1743,-543,-41,-7660,-167,-452,-7661,-644,-7662,-7663,-7664,-7665,-7666,-7667,-7668,-7669,-7670,-1493, --7671,-7672,-4563,-7673,-7674,-7675,-7676], +[0,-1742,-16,-481,-1743,-543,-41,-7660,-167,-452,-7661,-644,-7662,-7663,-7664,-7665,-7666,-7667,-7668,-7669,-7670,-1493,-7671,-7672,-4563,-7673,-7674,-7675,-7676], [0,-803,-7677,-139,-140], [1,3,463], [0,464,465,466,4], [0,-7678,-2507,-2289,-2290,-2950,-254,-121], -[0,-48,-11,-209,-21,-132,-49,-63,-207,-77,-62,-297,-298,-749,-22,-19,-91,-776,-4564,-1,-148,-64,-186,-10,-17,-4,-6,-36, --14,-3206,-229,-122,-2], +[0,-48,-11,-209,-21,-132,-49,-63,-207,-77,-62,-297,-298,-749,-22,-19,-91,-776,-4564,-1,-148,-64,-186,-10,-17,-4,-6,-36,-14,-3206,-229,-122,-2], [0,-4565,-6,-527,-102,-2508,-127,-7679,-7680,-7681,-1141,-382,-52,-7682,-3207,-1001,-4566,-7683], [1,3,468], [0,469,0,19,4], @@ -3544,15 +1267,13 @@ true, [0,-1197,-1043,-1365,-933,-1372,-1369,-579,-1042,-1366,-1198,-1362,-1367,-1368,-1364,-1370,-1363,-932,-3210,-1361,-1371], [1,3,487], [0,488,0,144,4], -[0,-406,-1197,-1043,-1365,-933,-1372,-1369,-579,-1042,-1366,-1198,-1362,-1367,-1368,-1364,-1370,-1363,-932,-3210,-1361, --1371], +[0,-406,-1197,-1043,-1365,-933,-1372,-1369,-579,-1042,-1366,-1198,-1362,-1367,-1368,-1364,-1370,-1363,-932,-3210,-1361,-1371], [1,3,490], [0,491,0,102,4], [0,-1197,-1043,-1365,-933,-1372,-1369,-579,-1042,-1366,-1198,-1362,-1367,-1368,-1364,-1370,-1363,-932,-4570,-1361,-1371], [1,3,493], [0,494,0,102,8], -[0,-3211,-1197,-1043,-1365,-933,-1372,-1369,-579,-1042,-1366,-4571,-1198,-1362,-1367,-1368,-1364,-1370,-1363,-932,-1361, --4572,-1371], +[0,-3211,-1197,-1043,-1365,-933,-1372,-1369,-579,-1042,-1366,-4571,-1198,-1362,-1367,-1368,-1364,-1370,-1363,-932,-1361,-4572,-1371], [1,3,496], [0,497,0,102,8], [0,-1197,-1043,-1365,-933,-1372,-1369,-579,-1042,-1366,-1198,-1362,-1367,-1368,-1364,-1370,-1363,-4573,-932,-1361,-1371], @@ -3636,8 +1357,7 @@ true, [0,-4580,-4581,-3173,-5,-419,-41,-3171], [1,3,577], [0,578,0,147,5], -[0,-2284,-11,-2502,-21,-4582,-4583,-7694,-163,-7695,-231,-117,-133,-58,-386,-1746,-1630,-257,-226,-41,-28,-247,-673,-1079, --272,-23,-1433,-4584,-1143,-227,-88,-4585,-2040,-1497,-167,-2511,-436,-16,-738,-4560,-7696,-814,-125,-7697], +[0,-2284,-11,-2502,-21,-4582,-4583,-7694,-163,-7695,-231,-117,-133,-58,-386,-1746,-1630,-257,-226,-41,-28,-247,-673,-1079,-272,-23,-1433,-4584,-1143,-227,-88,-4585,-2040,-1497,-167,-2511,-436,-16,-738,-4560,-7696,-814,-125,-7697], [1,3,580], [0,581,0,582,4], [0,-7698,-514], @@ -3649,9 +1369,7 @@ true, [1,3,588], [0,589,590,148,9], [0,-673], -[0,-48,-11,-21,-4587,-2512,-529,-820,-207,-77,-62,-237,-1004,-157,-453,-1747,-2513,-1053,-26,-1,-1222,-723,-9,-151,-4588, --56,-204,-3216,-673,-7701,-2358,-196,-248,-79,-1428,-138,-3217,-1429,-213,-389,-2041,-731,-1095,-285,-65,-38,-682,-7702, --7,-14,-2042,-1498,-2482,-276,-182,-3218,-177,-4589], +[0,-48,-11,-21,-4587,-2512,-529,-820,-207,-77,-62,-237,-1004,-157,-453,-1747,-2513,-1053,-26,-1,-1222,-723,-9,-151,-4588,-56,-204,-3216,-673,-7701,-2358,-196,-248,-79,-1428,-138,-3217,-1429,-213,-389,-2041,-731,-1095,-285,-65,-38,-682,-7702,-7,-14,-2042,-1498,-2482,-276,-182,-3218,-177,-4589], [1,3,592], [0,0,0,593,4], [0,-24,-74], @@ -3673,16 +1391,12 @@ true, [0,-24,-556,-7704], [1,3,611], [0,612,613,149,5], -[0,-7705,-7706,-7707,-4557,-7708,-7709,-7710,-7711,-7712,-7713,-7714,-4594,-7715,-20,-624,-58,-35,-2044,-510,-28,-2516, --793,-1655,-966,-4595,-1238,-3171,-1491,-260,-72,-1443,-362,-1502,-16,-2045,-468,-215,-4596,-262,-1286], -[0,-7716,-7717,-498,-290,-50,-451,-623,-109,-169,-7718,-264,-191,-7719,-7720,-3173,-2517,-71,-4597,-4598,-5,-2518,-140, --1287,-2046,-7721,-750,-22,-19,-13,-2519,-308,-4599,-1393,-1,-9,-115,-151,-40,-41,-3219,-3,-519,-15,-4,-7722,-394,-27, --190,-3220,-161,-33,-82,-124,-2], +[0,-7705,-7706,-7707,-4557,-7708,-7709,-7710,-7711,-7712,-7713,-7714,-4594,-7715,-20,-624,-58,-35,-2044,-510,-28,-2516,-793,-1655,-966,-4595,-1238,-3171,-1491,-260,-72,-1443,-362,-1502,-16,-2045,-468,-215,-4596,-262,-1286], +[0,-7716,-7717,-498,-290,-50,-451,-623,-109,-169,-7718,-264,-191,-7719,-7720,-3173,-2517,-71,-4597,-4598,-5,-2518,-140,-1287,-2046,-7721,-750,-22,-19,-13,-2519,-308,-4599,-1393,-1,-9,-115,-151,-40,-41,-3219,-3,-519,-15,-4,-7722,-394,-27,-190,-3220,-161,-33,-82,-124,-2], [1,3,615], [0,616,617,618,4], [0,-845,-20,-1933,-624,-41,-57], -[0,-49,-63,-191,-2025,-29,-3221,-7723,-4601,-22,-19,-1045,-940,-543,-1,-12,-25,-10,-8,-4602,-677,-548,-249,-4,-7724,-4603, --2], +[0,-49,-63,-191,-2025,-29,-3221,-7723,-4601,-22,-19,-1045,-940,-543,-1,-12,-25,-10,-8,-4602,-677,-548,-249,-4,-7724,-4603,-2], [0,-7725,-42], [0,25,620], 1730419200000, @@ -3691,10 +1405,8 @@ true, [0,0,0,7,11], [1,3,625], [0,626,627,104,8], -[0,-7726,-7727,-4604,-7728,-20,-231,-24,-3151,-4605,-499,-101,-23,-220,-1492,-3222,-2520,-973,-4606,-2521,-1698,-739,-602, --2522], -[0,-7729,-7730,-7731,-7732,-2047,-421,-143,-896,-2523,-5,-4607,-105,-1005,-157,-87,-4608,-372,-3223,-2524,-65,-38,-805, --80,-3224,-2,-30], +[0,-7726,-7727,-4604,-7728,-20,-231,-24,-3151,-4605,-499,-101,-23,-220,-1492,-3222,-2520,-973,-4606,-2521,-1698,-739,-602,-2522], +[0,-7729,-7730,-7731,-7732,-2047,-421,-143,-896,-2523,-5,-4607,-105,-1005,-157,-87,-4608,-372,-3223,-2524,-65,-38,-805,-80,-3224,-2,-30], [1,3,629], [0,630,631,632,9], [0,-44,-289,-4610,-4611,-4612,-4613,-3225,-7734,-7735], @@ -3706,27 +1418,22 @@ true, [0,-650,-1470,-165,-7739,-124,-399,-42,-3227], [1,3,638], [0,639,640,104,5], -[0,-4618,-1289,-7740,-7741,-7742,-7743,-4070,-7744,-3228,-471,-3229,-7745,-183,-59,-936,-7746,-20,-210,-1635,-28,-372, --2355,-1960,-101,-1088,-344,-92,-1444,-276,-600,-739,-884,-2526,-7747,-1133,-98], +[0,-4618,-1289,-7740,-7741,-7742,-7743,-4070,-7744,-3228,-471,-3229,-7745,-183,-59,-936,-7746,-20,-210,-1635,-28,-372,-2355,-1960,-101,-1088,-344,-92,-1444,-276,-600,-739,-884,-2526,-7747,-1133,-98], [0,-7748,-3230,-4619,-421,-143,-1146,-5,-1748,-3231,-419,-22,-19,-91,-87,-1,-724,-10,-17,-23,-57,-33,-2], [1,3,642], [0,643,644,104,6], [0,-4604,-20,-4605,-499,-101,-23,-220,-1492,-3222,-7749,-2520,-973,-4606,-1698,-739], -[0,-11,-398,-21,-2047,-29,-421,-143,-896,-2523,-7750,-5,-4607,-7751,-7752,-7753,-157,-91,-87,-4608,-1,-724,-372,-8,-2524, --38,-805,-4,-346,-57,-2], +[0,-11,-398,-21,-2047,-29,-421,-143,-896,-2523,-7750,-5,-4607,-7751,-7752,-7753,-157,-91,-87,-4608,-1,-724,-372,-8,-2524,-38,-805,-4,-346,-57,-2], [0,25,646], 1734825600000, [1,3,648], [0,649,650,651,4], -[0,-1737,-245,-1911,-7754,-163,-20,-1615,-367,-7755,-850,-1635,-955,-7756,-7757,-372,-272,-220,-2494,-971,-1492,-4620, --4621,-1444,-392,-80,-2527,-1749,-130,-811,-147,-4622,-221,-125,-2528], -[0,-49,-63,-297,-298,-4623,-751,-2529,-3232,-191,-896,-2523,-5,-822,-7758,-7759,-698,-7760,-22,-19,-43,-4624,-41,-10,-160, --598,-122,-2], +[0,-1737,-245,-1911,-7754,-163,-20,-1615,-367,-7755,-850,-1635,-955,-7756,-7757,-372,-272,-220,-2494,-971,-1492,-4620,-4621,-1444,-392,-80,-2527,-1749,-130,-811,-147,-4622,-221,-125,-2528], +[0,-49,-63,-297,-298,-4623,-751,-2529,-3232,-191,-896,-2523,-5,-822,-7758,-7759,-698,-7760,-22,-19,-43,-4624,-41,-10,-160,-598,-122,-2], [0,-442,-46,-103,-53,-7761,-1290,-7762], [1,3,653], [0,654,655,656,10], -[0,-2530,-3233,-2531,-2532,-315,-7763,-245,-4625,-157,-301,-141,-1214,-1,-12,-25,-64,-186,-56,-10,-1503,-374,-38,-493, --869,-80,-467,-154,-182,-558,-2505,-4626,-397,-18,-93,-2455,-524], +[0,-2530,-3233,-2531,-2532,-315,-7763,-245,-4625,-157,-301,-141,-1214,-1,-12,-25,-64,-186,-56,-10,-1503,-374,-38,-493,-869,-80,-467,-154,-182,-558,-2505,-4626,-397,-18,-93,-2455,-524], [0,-7764,-17], [0,-52,-444,-3234,-278,-208,-365,-7765], [1,3,658], @@ -3757,9 +1464,7 @@ true, [1,3,683], [0,684,685,150,4], [0,-7772,-254,-4631,-3001,-951,-4632,-1143,-2536,-227,-1978,-4633,-681,-2460,-1450,-436,-121,-4634,-739,-4635,-3240,-4636], -[0,-2537,-4637,-7773,-109,-4638,-1278,-4639,-29,-4640,-2538,-3241,-2050,-5,-1006,-997,-47,-89,-2539,-4641,-526,-2540,-419, --22,-19,-1751,-1049,-385,-508,-158,-55,-141,-483,-431,-1720,-1293,-1,-9,-64,-186,-1639,-342,-10,-8,-101,-2541,-4642, --1240,-803,-4,-435,-684,-6,-36,-1990,-7,-276,-328,-154,-882,-57,-33,-44,-2, +[0,-2537,-4637,-7773,-109,-4638,-1278,-4639,-29,-4640,-2538,-3241,-2050,-5,-1006,-997,-47,-89,-2539,-4641,-526,-2540,-419,-22,-19,-1751,-1049,-385,-508,-158,-55,-141,-483,-431,-1720,-1293,-1,-9,-64,-186,-1639,-342,-10,-8,-101,-2541,-4642,-1240,-803,-4,-435,-684,-6,-36,-1990,-7,-276,-328,-154,-882,-57,-33,-44,-2, -4643,-200,-18,-93,-173,-1712], [1,3,687], [0,688,689,151,4], @@ -3777,8 +1482,7 @@ true, [0,152,0,153,4], [1,3,701], [0,0,702,703,6], -[0,-11,-1007,-21,-132,-137,-49,-63,-50,-2289,-7780,-2290,-297,-2055,-298,-319,-153,-120,-29,-47,-89,-301,-1052,-1212,-26, --1,-12,-9,-145,-148,-25,-64,-186,-1406,-151,-56,-10,-8,-176,-4,-435,-6,-36,-7,-122,-57,-33,-172,-2,-84], +[0,-11,-1007,-21,-132,-137,-49,-63,-50,-2289,-7780,-2290,-297,-2055,-298,-319,-153,-120,-29,-47,-89,-301,-1052,-1212,-26,-1,-12,-9,-145,-148,-25,-64,-186,-1406,-151,-56,-10,-8,-176,-4,-435,-6,-36,-7,-122,-57,-33,-172,-2,-84], [0,-3244,-3014,-6,-45,-265,-1008], [1,3,705], [0,106,154,706,9], @@ -3804,8 +1508,7 @@ true, [0,-1625,-371,-4655,-42,-107,-99,-4656], [1,3,727], [0,728,0,729,4], -[0,-11,-21,-7788,-7789,-4658,-157,-96,-4659,-158,-26,-141,-1214,-271,-4660,-374,-38,-493,-3246,-80,-7790,-467,-559,-438, --18,-93], +[0,-11,-21,-7788,-7789,-4658,-157,-96,-4659,-158,-26,-141,-1214,-271,-4660,-374,-38,-493,-3246,-80,-7790,-467,-559,-438,-18,-93], [0,-18,-1150,-2545,-52], [1,3,731], [0,732,733,155,6], @@ -3822,11 +1525,8 @@ true, [1,3,743], [0,744,745,746,4], [0,-4665], -[0,-329,-4666,-1730,-319,-153,-120,-307,-5,-47,-7811,-7812,-7813,-4667,-506,-183,-3250,-773,-4668,-7814,-3251,-2546,-4669, --26,-3252,-4670,-4671,-4672,-7815,-730,-78,-3156,-677,-7816,-7817,-7818,-65,-6,-36,-3092,-598,-2057,-3253,-2,-2023,-3254, --104,-3255,-30,-1286,-263], -[0,-4673,-423,-7819,-7820,-3092,-1286,-730,-2057,-2,-263,-3254,-2546,-4672,-7821,-4674,-4669,-3253,-183,-4675,-4668,-7822, --7823,-4670,-7824], +[0,-329,-4666,-1730,-319,-153,-120,-307,-5,-47,-7811,-7812,-7813,-4667,-506,-183,-3250,-773,-4668,-7814,-3251,-2546,-4669,-26,-3252,-4670,-4671,-4672,-7815,-730,-78,-3156,-677,-7816,-7817,-7818,-65,-6,-36,-3092,-598,-2057,-3253,-2,-2023,-3254,-104,-3255,-30,-1286,-263], +[0,-4673,-423,-7819,-7820,-3092,-1286,-730,-2057,-2,-263,-3254,-2546,-4672,-7821,-4674,-4669,-3253,-183,-4675,-4668,-7822,-7823,-4670,-7824], [1,3,748], [0,749,38,750,4], [0,-289], @@ -3848,8 +1548,7 @@ true, [1,3,766], [0,767,768,769,10], [0,-44,-1654,-4679], -[0,-8,-80,-20,-118,-809,-7834,-1,-14,-41,-489,-4,-182,-29,-5,-7835,-2513,-7836,-4680,-1466,-366,-7837,-7838,-4454,-2063, --7839,-2064,-2550,-12,-19,-7840,-62,-7841,-7842,-22], +[0,-8,-80,-20,-118,-809,-7834,-1,-14,-41,-489,-4,-182,-29,-5,-7835,-2513,-7836,-4680,-1466,-366,-7837,-7838,-4454,-2063,-7839,-2064,-2550,-12,-19,-7840,-62,-7841,-7842,-22], [0,-1426,-53,-7843,-95,-306,-2065,-3260,-943,-458,-3261,-2551], [1,3,771], [0,0,156,157,4], @@ -3864,8 +1563,7 @@ true, [0,-131,-127,-4683,-441,-53,-52,-7846,-7847,-106,-6,-102,-4684], [1,3,782], [0,783,784,107,4], -[0,-7848,-4685,-4686,-3262,-1760,-663,-5,-841,-20,-481,-4687,-324,-7849,-3263,-4688,-4689,-4690,-1660,-7850,-7851,-7852, --7853,-858,-2553,-4691,-361,-683,-288], +[0,-7848,-4685,-4686,-3262,-1760,-663,-5,-841,-20,-481,-4687,-324,-7849,-3263,-4688,-4689,-4690,-1660,-7850,-7851,-7852,-7853,-858,-2553,-4691,-361,-683,-288], [0,-7854,-2066,-898,-651], [1,3,786], [0,787,0,7,4], @@ -3878,23 +1576,19 @@ true, [1,3,794], [0,795,796,797,5], [0,-7860,-542,-23], -[0,-1147,-1598,-4078,-4079,-4080,-77,-238,-62,-237,-1278,-29,-47,-89,-22,-19,-1751,-508,-431,-1,-12,-9,-25,-64,-8,-176, --78,-15,-4,-6,-36,-7,-14,-875,-900,-4698,-305,-645,-880,-57,-214,-44,-124,-2,-18,-93,-173,-1201,-2955], +[0,-1147,-1598,-4078,-4079,-4080,-77,-238,-62,-237,-1278,-29,-47,-89,-22,-19,-1751,-508,-431,-1,-12,-9,-25,-64,-8,-176,-78,-15,-4,-6,-36,-7,-14,-875,-900,-4698,-305,-645,-880,-57,-214,-44,-124,-2,-18,-93,-173,-1201,-2955], [0,-1731,-2069,-570,-899,-108,-1296,-52,-116,-352,-1297,-796,-331,-1298,-699,-1299], [1,3,799], [0,34,800,801,6], -[0,-530,-1278,-29,-3264,-47,-3166,-22,-19,-1751,-26,-431,-1,-12,-9,-25,-64,-8,-78,-15,-4,-6,-36,-872,-327,-4697,-7,-14, --875,-305,-645,-57,-44,-124,-2,-1201], +[0,-530,-1278,-29,-3264,-47,-3166,-22,-19,-1751,-26,-431,-1,-12,-9,-25,-64,-8,-78,-15,-4,-6,-36,-872,-327,-4697,-7,-14,-875,-305,-645,-57,-44,-124,-2,-1201], [0,-6,-570,-899,-108,-1296,-52,-116,-352,-1297,-796,-331,-1298,-699,-1299], [1,3,803], [0,804,805,7,4], -[0,-2507,-7861,-7862,-7863,-7864,-7865,-7866,-7867,-7868,-7869,-7870,-7871,-7872,-7873,-7874,-7875,-7876,-7877,-7878, --7879], +[0,-2507,-7861,-7862,-7863,-7864,-7865,-7866,-7867,-7868,-7869,-7870,-7871,-7872,-7873,-7874,-7875,-7876,-7877,-7878,-7879], [0,-7880,-29,-8,-7,-2], [1,3,807], [0,808,809,810,9], -[0,-719,-282,-20,-309,-4699,-28,-4700,-101,-7881,-2375,-92,-72,-3265,-7,-7882,-7883,-7884,-7885,-2070,-69,-604,-562,-887, --7886], +[0,-719,-282,-20,-309,-4699,-28,-4700,-101,-7881,-2375,-92,-72,-3265,-7,-7882,-7883,-7884,-7885,-2070,-69,-604,-562,-887,-7886], [0,-179,-4701,-937,-253,-55,-1620,-1087,-3,-15,-4702,-497,-27,-97,-70], [0,-80,-444,-24,-700,-42,-1001,-1510], [1,3,812], @@ -3939,8 +1633,7 @@ true, [0,-6,-106,-996,-1099,-1008], [1,3,852], [0,0,853,161,4], -[0,-8,-125,-10,-1,-23,-158,-33,-124,-4,-110,-48,-86,-2,-11,-29,-698,-65,-143,-357,-49,-747,-21,-1065,-346,-12,-25,-816, --137,-451,-3270,-19,-63,-22,-209,-300,-931], +[0,-8,-125,-10,-1,-23,-158,-33,-124,-4,-110,-48,-86,-2,-11,-29,-698,-65,-143,-357,-49,-747,-21,-1065,-346,-12,-25,-816,-137,-451,-3270,-19,-63,-22,-209,-300,-931], [1,3,855], [0,856,0,857,5], [0,-4706], @@ -3976,8 +1669,7 @@ true, [1,3,887], [0,888,889,890,4], [0,-4711,-7919,-7920,-4712,-4713,-2561], -[0,-49,-63,-4714,-4715,-366,-1512,-264,-4716,-4717,-5,-1014,-3282,-1015,-475,-194,-163,-482,-368,-26,-295,-7921,-40,-2562, --7922,-1412,-387,-1233,-78,-188,-999,-810,-1262,-3283,-690,-123,-380,-2,-289,-30,-4718,-2472,-7923,-18,-4719,-205], +[0,-49,-63,-4714,-4715,-366,-1512,-264,-4716,-4717,-5,-1014,-3282,-1015,-475,-194,-163,-482,-368,-26,-295,-7921,-40,-2562,-7922,-1412,-387,-1233,-78,-188,-999,-810,-1262,-3283,-690,-123,-380,-2,-289,-30,-4718,-2472,-7923,-18,-4719,-205], [0,-111,-7924,-103,-388,-2011,-743,-905,-7925,-317,-1763,-61], [1,3,892], [0,39,0,893,4], @@ -4000,8 +1692,7 @@ true, [0,-6,-106,-1016,-7928,-1099,-996,-4721,-7929,-4722], [1,3,911], [0,912,913,914,5], -[0,-2563,-7930,-3284,-2077,-4723,-4724,-701,-7931,-7932,-254,-217,-7933,-7934,-2078,-28,-670,-7935,-7936,-3285,-7937, --4725,-906,-522,-7938,-7939,-907,-7940,-215,-135,-348,-18,-4726,-1480], +[0,-2563,-7930,-3284,-2077,-4723,-4724,-701,-7931,-7932,-254,-217,-7933,-7934,-2078,-28,-670,-7935,-7936,-3285,-7937,-4725,-906,-522,-7938,-7939,-907,-7940,-215,-135,-348,-18,-4726,-1480], [0,-4727,-7941,-7942,-424,-47,-526,-157,-284,-242,-555,-6,-36,-377,-559,-172,-2,-7943,-7944,-7945], [0,-2075,-42,-390,-99], [1,3,916], @@ -4020,8 +1711,7 @@ true, [0,-2564,-7957,-3288,-61], [1,3,930], [0,931,932,7,5], -[0,-4732,-4733,-3290,-2958,-4734,-4735,-2959,-1513,-7958,-3291,-1202,-4736,-2079,-4737,-792,-7959,-434,-92,-463,-4738, --975,-3292,-1678,-1248,-4739,-980,-7960,-7961,-7962,-16,-1464,-4740,-3293], +[0,-4732,-4733,-3290,-2958,-4734,-4735,-2959,-1513,-7958,-3291,-1202,-4736,-2079,-4737,-792,-7959,-434,-92,-463,-4738,-975,-3292,-1678,-1248,-4739,-980,-7960,-7961,-7962,-16,-1464,-4740,-3293], [0,-755,-3294,-756,-110,-7963,-197,-85,-884,-7964], [1,3,934], [0,935,29,936,5], @@ -4036,8 +1726,7 @@ true, [0,-755,-756,-4741,-85], [1,3,945], [0,946,947,163,5], -[0,-3297,-4742,-3298,-220,-1082,-4743,-4744,-4745,-4746,-4747,-4748,-1971,-4749,-1698,-499,-4750,-4751,-1665,-4752,-1097, --4753,-4754,-4755,-3204,-4756,-4757], +[0,-3297,-4742,-3298,-220,-1082,-4743,-4744,-4745,-4746,-4747,-4748,-1971,-4749,-1698,-499,-4750,-4751,-1665,-4752,-1097,-4753,-4754,-4755,-3204,-4756,-4757], [0,-28,-3,-231,-97,-4758,-60,-4759,-134], [1,24,949], [0,25,950], @@ -4068,8 +1757,7 @@ true, [0,-1152,-1306,-7970,-1767,-1768,-826,-1514], [1,3,976], [0,977,40,978,11], -[0,-20,-44,-460,-16,-1390,-2490,-326,-664,-167,-313,-11,-1624,-636,-1981,-2961,-90,-2566,-21,-147,-1291,-7971,-137,-170, --578,-1139,-7972], +[0,-20,-44,-460,-16,-1390,-2490,-326,-664,-167,-313,-11,-1624,-636,-1981,-2961,-90,-2566,-21,-147,-1291,-7971,-137,-170,-578,-1139,-7972], [0,-1152,-1305,-1306,-7973,-7974,-826,-2082,-1514], [1,3,980], [0,981,0,165,4], @@ -4091,8 +1779,7 @@ true, [1,3,997], [0,998,999,1000,4], [0,-841,-1375,-4766,-2327,-35,-337,-1646,-793,-856,-1969,-92,-16,-395,-468,-313,-2473,-991,-890], -[0,-63,-498,-2292,-3299,-2084,-2569,-747,-109,-754,-4767,-169,-2570,-4764,-71,-5,-2571,-279,-2572,-7978,-4765,-110,-13, --239,-1056,-26,-1,-1220,-12,-10,-17,-3301,-3,-15,-4,-394,-27,-33,-82,-2], +[0,-63,-498,-2292,-3299,-2084,-2569,-747,-109,-754,-4767,-169,-2570,-4764,-71,-5,-2571,-279,-2572,-7978,-4765,-110,-13,-239,-1056,-26,-1,-1220,-12,-10,-17,-3301,-3,-15,-4,-394,-27,-33,-82,-2], [0,-1769,-37,-316,-1770,-74,-613,-1307], [1,3,1002], [0,1003,1004,1005,6], @@ -4106,18 +1793,9 @@ true, [0,-4768,-545,-422,-7989], [1,3,1012], [0,1013,0,65,4], -[0,-7990,-7991,-7992,-7993,-7994,-7995,-7996,-7997,-7998,-7999,-8000,-8001,-8002,-8003,-8004,-8005,-8006,-8007,-8008, --8009,-8010,-8011,-8012,-8013,-8014,-8015,-8016,-8017,-8018,-8019,-8020,-8021,-8022,-8023,-8024,-8025,-8026,-8027,-8028, --8029,-8030,-8031,-8032,-8033,-8034,-8035,-8036,-8037,-8038,-8039,-8040,-8041,-8042,-8043,-8044,-8045,-8046,-8047,-8048, --8049,-8050,-8051,-8052, --8053,-8054,-8055,-8056,-8057,-8058,-8059,-8060,-8061,-8062,-8063,-8064,-8065,-8066,-8067,-8068,-8069,-8070,-8071,-8072, --8073,-8074,-8075,-8076,-8077,-8078,-8079,-8080,-8081,-8082,-8083,-8084,-8085,-8086,-8087,-8088,-8089,-8090,-8091,-8092, --8093,-8094,-8095,-8096,-8097,-8098,-8099,-8100,-8101,-8102,-8103,-8104,-8105,-8106,-8107,-8108,-8109,-8110,-8111,-8112, --8113,-8114,-8115,-8116, --8117,-8118,-8119,-8120,-8121,-8122,-8123,-8124,-8125,-8126,-8127,-8128,-8129,-8130,-8131,-8132,-8133,-8134,-8135,-8136, --8137,-8138,-8139,-8140,-8141,-8142,-8143,-8144,-8145,-8146,-8147,-8148,-8149,-8150,-8151,-8152,-8153,-8154,-8155,-8156, --8157,-8158,-8159,-8160,-8161,-8162,-8163,-8164,-8165,-8166,-8167,-8168,-8169,-8170,-8171,-8172,-8173,-8174,-8175,-8176, --8177,-8178,-8179,-8180, +[0,-7990,-7991,-7992,-7993,-7994,-7995,-7996,-7997,-7998,-7999,-8000,-8001,-8002,-8003,-8004,-8005,-8006,-8007,-8008,-8009,-8010,-8011,-8012,-8013,-8014,-8015,-8016,-8017,-8018,-8019,-8020,-8021,-8022,-8023,-8024,-8025,-8026,-8027,-8028,-8029,-8030,-8031,-8032,-8033,-8034,-8035,-8036,-8037,-8038,-8039,-8040,-8041,-8042,-8043,-8044,-8045,-8046,-8047,-8048,-8049,-8050,-8051,-8052, +-8053,-8054,-8055,-8056,-8057,-8058,-8059,-8060,-8061,-8062,-8063,-8064,-8065,-8066,-8067,-8068,-8069,-8070,-8071,-8072,-8073,-8074,-8075,-8076,-8077,-8078,-8079,-8080,-8081,-8082,-8083,-8084,-8085,-8086,-8087,-8088,-8089,-8090,-8091,-8092,-8093,-8094,-8095,-8096,-8097,-8098,-8099,-8100,-8101,-8102,-8103,-8104,-8105,-8106,-8107,-8108,-8109,-8110,-8111,-8112,-8113,-8114,-8115,-8116, +-8117,-8118,-8119,-8120,-8121,-8122,-8123,-8124,-8125,-8126,-8127,-8128,-8129,-8130,-8131,-8132,-8133,-8134,-8135,-8136,-8137,-8138,-8139,-8140,-8141,-8142,-8143,-8144,-8145,-8146,-8147,-8148,-8149,-8150,-8151,-8152,-8153,-8154,-8155,-8156,-8157,-8158,-8159,-8160,-8161,-8162,-8163,-8164,-8165,-8166,-8167,-8168,-8169,-8170,-8171,-8172,-8173,-8174,-8175,-8176,-8177,-8178,-8179,-8180, -8181,-8182,-8183,-8184,-8185,-8186,-8187,-8188], [1,3,1015], [0,1016,1017,65,5], @@ -4147,8 +1825,7 @@ true, [1,3,1040], [0,1041,1042,1043,4], [0,-8207,-194,-163,-20,-40,-371,-956,-586,-727,-967,-23,-643,-4773,-442,-2575], -[0,-48,-11,-21,-8208,-109,-754,-264,-3303,-143,-71,-3304,-5,-4774,-279,-1287,-4775,-22,-19,-13,-239,-3305,-625,-1,-185, --949,-12,-246,-3306,-9,-256,-3,-197,-15,-4,-181,-7,-27,-190,-147,-155,-2], +[0,-48,-11,-21,-8208,-109,-754,-264,-3303,-143,-71,-3304,-5,-4774,-279,-1287,-4775,-22,-19,-13,-239,-3305,-625,-1,-185,-949,-12,-246,-3306,-9,-256,-3,-197,-15,-4,-181,-7,-27,-190,-147,-155,-2], [0,-8209,-8210,-45,-8211,-61,-8212], [0,0,0,7,10], [1,3,1046], @@ -4161,20 +1838,15 @@ true, [0,-109,-71,-13,-141,-948,-79,-138,-213,-1090,-187,-414,-3,-7,-4487,-154,-124,-2,-18], [1,3,1054], [0,0,1055,1056,4], -[0,-366,-909,-62,-206,-319,-153,-614,-5,-8224,-369,-1,-8225,-3307,-4776,-3308,-56,-78,-38,-682,-4,-4777,-3309,-378,-1772, --1773,-14,-417,-305,-396,-33,-44,-155,-124,-8226,-816,-8227,-4778,-8228,-8229,-8230,-2,-8231,-817,-8232], -[0,-1018,-1309,-8233,-4779,-8234,-24,-441,-2560,-8235,-8236,-42,-1774,-8237,-31,-8238,-4780,-1775,-45,-8239,-8240,-1153, --8241,-2086,-2576,-2577,-2,-4781,-740,-8242,-6,-696], +[0,-366,-909,-62,-206,-319,-153,-614,-5,-8224,-369,-1,-8225,-3307,-4776,-3308,-56,-78,-38,-682,-4,-4777,-3309,-378,-1772,-1773,-14,-417,-305,-396,-33,-44,-155,-124,-8226,-816,-8227,-4778,-8228,-8229,-8230,-2,-8231,-817,-8232], +[0,-1018,-1309,-8233,-4779,-8234,-24,-441,-2560,-8235,-8236,-42,-1774,-8237,-31,-8238,-4780,-1775,-45,-8239,-8240,-1153,-8241,-2086,-2576,-2577,-2,-4781,-740,-8242,-6,-696], [1,3,1058], [0,1059,1060,7,4], [0,-4782], -[0,-8243,-8244,-8245,-3310,-91,-2578,-150,-8246,-723,-41,-3311,-32,-585,-513,-1074,-962,-3031,-8247,-8248,-1103,-593, --8249,-8250,-69,-2,-8251], +[0,-8243,-8244,-8245,-3310,-91,-2578,-150,-8246,-723,-41,-3311,-32,-585,-513,-1074,-962,-3031,-8247,-8248,-1103,-593,-8249,-8250,-69,-2,-8251], [1,3,1062], [0,1063,1064,1065,8], -[0,-183,-1395,-161,-8252,-28,-80,-59,-2579,-1776,-98,-1,-7,-16,-177,-565,-40,-4783,-4784,-777,-117,-1217,-195,-4,-3104, --1390,-8253,-8254,-60,-4785,-1652,-2383,-188,-11,-1681,-8255,-450,-8256,-405,-665,-811,-8257,-539,-4786,-1693,-604,-891, --8258,-21,-4787,-8259,-132,-8260,-180,-346,-156,-4788,-2362,-2580,-995,-137,-8261,-8262,-4789, +[0,-183,-1395,-161,-8252,-28,-80,-59,-2579,-1776,-98,-1,-7,-16,-177,-565,-40,-4783,-4784,-777,-117,-1217,-195,-4,-3104,-1390,-8253,-8254,-60,-4785,-1652,-2383,-188,-11,-1681,-8255,-450,-8256,-405,-665,-811,-8257,-539,-4786,-1693,-604,-891,-8258,-21,-4787,-8259,-132,-8260,-180,-346,-156,-4788,-2362,-2580,-995,-137,-8261,-8262,-4789, -1284,-8263,-2034,-8264,-3200], [0,-39,-8265,-147], [0,-8266,-607,-37,-53,-192,-8267,-95,-2087,-46,-3312,-4790,-8268,-2032,-2581,-4791,-1280], @@ -4185,17 +1857,13 @@ true, [1,3,1071], [0,1072,1073,1074,9], [0,-465,-3055,-8276,-8277,-1427], -[0,-10,-6,-1126,-1,-14,-483,-18,-4,-8278,-36,-740,-2,-29,-5,-47,-4795,-8279,-3096,-8280,-8281,-49,-1019,-89,-557,-8282, --417,-8283,-964,-64,-255,-9,-229,-8284,-1311,-1154,-8285,-120,-12,-148,-25,-77,-2582,-1515,-1117,-330,-2088,-153,-19, --186,-8286,-4796,-8287,-62,-1777,-307,-2583,-4341,-63,-949,-4797,-22,-3206,-8288, +[0,-10,-6,-1126,-1,-14,-483,-18,-4,-8278,-36,-740,-2,-29,-5,-47,-4795,-8279,-3096,-8280,-8281,-49,-1019,-89,-557,-8282,-417,-8283,-964,-64,-255,-9,-229,-8284,-1311,-1154,-8285,-120,-12,-148,-25,-77,-2582,-1515,-1117,-330,-2088,-153,-19,-186,-8286,-4796,-8287,-62,-1777,-307,-2583,-4341,-63,-949,-4797,-22,-3206,-8288, -2503], [0,-6,-1126,-8289,-8290,-8291,-8292,-8293,-4798,-52], [1,3,1076], [0,1077,1078,1079,5], [0,-1730,-4665,-965,-327,-4302,-2419], -[0,-314,-11,-1138,-451,-8294,-1516,-4799,-319,-120,-4800,-307,-757,-4801,-3229,-8295,-5,-8296,-47,-89,-419,-22,-19,-194, --87,-4802,-1,-12,-1221,-485,-9,-148,-25,-64,-186,-41,-674,-78,-1088,-800,-188,-4,-3087,-6,-36,-7,-328,-44,-172,-155,-2, --2023,-3255,-30,-98], +[0,-314,-11,-1138,-451,-8294,-1516,-4799,-319,-120,-4800,-307,-757,-4801,-3229,-8295,-5,-8296,-47,-89,-419,-22,-19,-194,-87,-4802,-1,-12,-1221,-485,-9,-148,-25,-64,-186,-41,-674,-78,-1088,-800,-188,-4,-3087,-6,-36,-7,-328,-44,-172,-155,-2,-2023,-3255,-30,-98], [0,-327,-6,-4803,-1141,-3313,-2584,-965,-514,-4804], [1,3,1081], [0,1082,1083,1084,4], @@ -4209,15 +1877,12 @@ true, [0,-14,-107,-446,-159,-381], [1,3,1091], [0,1092,1093,1094,4], -[0,-845,-161,-368,-104,-20,-204,-72,-1112,-87,-40,-8298,-1422,-739,-117,-8299,-8300,-8301,-8302,-636,-8303,-8304,-8305, --8306,-1599,-2586,-8307,-8308,-506,-8309,-1905,-451,-4707], -[0,-4808,-125,-6,-1,-7,-4809,-30,-4,-36,-750,-2,-1512,-5,-698,-17,-47,-419,-345,-3314,-264,-89,-122,-882,-8310,-64,-12, --148,-25,-19,-186,-870,-8311,-22,-911], +[0,-845,-161,-368,-104,-20,-204,-72,-1112,-87,-40,-8298,-1422,-739,-117,-8299,-8300,-8301,-8302,-636,-8303,-8304,-8305,-8306,-1599,-2586,-8307,-8308,-506,-8309,-1905,-451,-4707], +[0,-4808,-125,-6,-1,-7,-4809,-30,-4,-36,-750,-2,-1512,-5,-698,-17,-47,-419,-345,-3314,-264,-89,-122,-882,-8310,-64,-12,-148,-25,-19,-186,-870,-8311,-22,-911], [0,-4809,-3272,-753,-1148,-8312,-569,-42], [1,3,1096], [0,1097,1098,1099,5], -[0,-4461,-4810,-1778,-1643,-499,-8313,-639,-73,-8314,-8315,-8316,-8317,-8318,-8319,-4811,-8320,-4812,-8321,-8322,-8323, --8324,-8325,-8326,-8327], +[0,-4461,-4810,-1778,-1643,-499,-8313,-639,-73,-8314,-8315,-8316,-8317,-8318,-8319,-4811,-8320,-4812,-8321,-8322,-8323,-8324,-8325,-8326,-8327], [0,-1313,-366,-3315,-1020,-2495,-912,-855,-78,-6,-8328,-559,-104,-4813,-8329,-30,-3316,-3317,-8330,-8331], [0,-131,-42,-697,-1314,-1153,-571,-73,-897], [1,3,1101], @@ -4246,17 +1911,10 @@ true, [0,-399,-42,-740,-4834,-4835,-8348,-8349,-99,-8350,-2090,-2588,-131,-127,-6,-73,-184,-221,-1779], [1,3,1125], [0,1126,1127,110,6], -[0,-3321,-4836,-2487,-4837,-90,-1754,-2289,-8351,-2290,-2950,-8352,-8353,-8354,-4838,-8355,-8356,-1925,-8357,-254,-778, --542,-8358,-8359,-1316,-8360,-3322,-8361,-8362,-8363,-4839,-4840,-8364,-4499,-8365,-8366,-8367,-8368,-4841,-2091,-8369, --8370,-8371,-4842,-8372,-8373,-8374,-8375,-3089,-8376,-8377,-8378,-2589,-8379,-1989,-2590,-8380,-4843,-8381,-1254,-1115, --8382,-8383,-8384, +[0,-3321,-4836,-2487,-4837,-90,-1754,-2289,-8351,-2290,-2950,-8352,-8353,-8354,-4838,-8355,-8356,-1925,-8357,-254,-778,-542,-8358,-8359,-1316,-8360,-3322,-8361,-8362,-8363,-4839,-4840,-8364,-4499,-8365,-8366,-8367,-8368,-4841,-2091,-8369,-8370,-8371,-4842,-8372,-8373,-8374,-8375,-3089,-8376,-8377,-8378,-2589,-8379,-1989,-2590,-8380,-4843,-8381,-1254,-1115,-8382,-8383,-8384, -2415,-2092,-1126,-1704], -[0,-2485,-11,-3323,-8385,-1903,-1147,-3324,-3325,-1516,-1004,-1515,-1777,-2583,-1154,-4844,-8386,-8387,-1019,-4796,-4845, --319,-153,-120,-307,-3326,-29,-1780,-3327,-2591,-1781,-143,-1006,-8388,-2093,-47,-8389,-1728,-89,-3328,-4846,-8390,-3329, --1519,-22,-19,-3330,-3331,-8391,-96,-4847,-20,-231,-26,-2094,-1396,-4848,-1293,-1,-255,-12,-246,-847,-9, --145,-148,-211,-64,-186,-2582,-151,-226,-2592,-41,-340,-28,-413,-10,-964,-965,-3047,-195,-2359,-8,-1782,-1427,-176,-794, --1520,-2593,-248,-78,-3332,-2029,-17,-23,-1783,-1105,-152,-4,-2406,-683,-436,-362,-465,-3333,-2594,-3334,-6,-2410,-2411, --2412,-36,-2483,-2595,-3335,-3336,-3337,-557,-3338,-8392,-274,-146,-2596,-2095,-8393,-16,-600, +[0,-2485,-11,-3323,-8385,-1903,-1147,-3324,-3325,-1516,-1004,-1515,-1777,-2583,-1154,-4844,-8386,-8387,-1019,-4796,-4845,-319,-153,-120,-307,-3326,-29,-1780,-3327,-2591,-1781,-143,-1006,-8388,-2093,-47,-8389,-1728,-89,-3328,-4846,-8390,-3329,-1519,-22,-19,-3330,-3331,-8391,-96,-4847,-20,-231,-26,-2094,-1396,-4848,-1293,-1,-255,-12,-246,-847,-9, +-145,-148,-211,-64,-186,-2582,-151,-226,-2592,-41,-340,-28,-413,-10,-964,-965,-3047,-195,-2359,-8,-1782,-1427,-176,-794,-1520,-2593,-248,-78,-3332,-2029,-17,-23,-1783,-1105,-152,-4,-2406,-683,-436,-362,-465,-3333,-2594,-3334,-6,-2410,-2411,-2412,-36,-2483,-2595,-3335,-3336,-3337,-557,-3338,-8392,-274,-146,-2596,-2095,-8393,-16,-600, -328,-182,-3339,-3340,-558,-2597,-4849,-177,-33,-124,-2,-2598,-523,-1784,-8394], [1,3,1129], [0,1130,166,111,4], @@ -4300,15 +1958,13 @@ true, [0,-444,-127,-1779,-2605,-2100,-382,-4683,-102,-52], [1,3,1169], [0,0,37,1170,10], -[0,-1786,-4864,-4865,-8419,-2606,-4866,-8420,-52,-2,-45,-3350,-3351,-4867,-8421,-8422,-8423,-3352,-8424,-8425,-8426,-8427, --4868,-8428], +[0,-1786,-4864,-4865,-8419,-2606,-4866,-8420,-52,-2,-45,-3350,-3351,-4867,-8421,-8422,-8423,-3352,-8424,-8425,-8426,-8427,-4868,-8428], [1,3,1172], [0,141,142,143,4], [1,3,1174], [0,1175,1176,1177,9], [0,-90,-846,-44], -[0,-11,-170,-21,-137,-290,-50,-366,-207,-77,-62,-237,-206,-3353,-5,-22,-19,-333,-1,-12,-2101,-1787,-2607,-2102,-345,-4, --14,-2608,-394,-4869,-2], +[0,-11,-170,-21,-137,-290,-50,-366,-207,-77,-62,-237,-206,-3353,-5,-22,-19,-333,-1,-12,-2101,-1787,-2607,-2102,-345,-4,-14,-2608,-394,-4869,-2], [0,-266,-31,-1788,-1789,-45,-8429,-265,-2], [1,3,1179], [0,167,1180,7,4], @@ -4348,8 +2004,7 @@ true, [0,-61,-6,-102,-266,-78,-401,-913,-759,-1518,-1517], [1,3,1215], [0,0,1216,1217,4], -[0,-547,-78,-6,-338,-87,-33,-1523,-36,-1718,-2,-1521,-47,-3355,-8445,-2102,-4876,-1787,-8446,-319,-4877,-2101,-120,-8447, --2607,-153,-4878,-8448,-2046,-246,-8449], +[0,-547,-78,-6,-338,-87,-33,-1523,-36,-1718,-2,-1521,-47,-3355,-8445,-2102,-4876,-1787,-8446,-319,-4877,-2101,-120,-8447,-2607,-153,-4878,-8448,-2046,-246,-8449], [0,-8450,-8451,-6,-61], [1,3,1219], [0,1220,0,1221,6], @@ -4418,11 +2073,8 @@ true, [0,-1,-2,-2614], [1,3,1284], [0,1285,1286,1287,8], -[0,-2948,-1598,-8460,-254,-4887,-8461,-1627,-8462,-8463,-963,-23,-4888,-233,-121,-8464,-4839,-8465,-4841,-4842,-3089, --1254,-1460,-3337,-687,-1117,-1463,-605,-8466], -[0,-48,-11,-209,-578,-170,-449,-21,-132,-137,-49,-63,-153,-120,-2026,-2615,-143,-4889,-47,-89,-22,-19,-8467,-2616,-194, --91,-86,-96,-8468,-1604,-8469,-8470,-482,-8471,-141,-295,-431,-947,-1720,-1,-64,-186,-271,-41,-342,-10,-8,-8472,-1520, --8473,-17,-374,-863,-1982,-4,-685,-6,-36,-2414,-287,-134,-154,-182,-2027, +[0,-2948,-1598,-8460,-254,-4887,-8461,-1627,-8462,-8463,-963,-23,-4888,-233,-121,-8464,-4839,-8465,-4841,-4842,-3089,-1254,-1460,-3337,-687,-1117,-1463,-605,-8466], +[0,-48,-11,-209,-578,-170,-449,-21,-132,-137,-49,-63,-153,-120,-2026,-2615,-143,-4889,-47,-89,-22,-19,-8467,-2616,-194,-91,-86,-96,-8468,-1604,-8469,-8470,-482,-8471,-141,-295,-431,-947,-1720,-1,-64,-186,-271,-41,-342,-10,-8,-8472,-1520,-8473,-17,-374,-863,-1982,-4,-685,-6,-36,-2414,-287,-134,-154,-182,-2027, -8474,-8475,-3364,-2,-1130,-438,-18,-523,-93], [0,-6,-106,-131,-127,-52,-8476], [1,3,1289], @@ -4453,10 +2105,8 @@ true, [1,3,1314], [0,1315,1316,1317,4], [0,-3367,-8498,-8499,-8500,-4896,-8501,-8502,-8503], -[0,-82,-155,-172,-104,-10,-1,-7,-4897,-30,-87,-38,-470,-182,-3072,-391,-8504,-328,-2444,-2,-5,-17,-65,-47,-8505,-8506, --329,-4898,-1156,-1466,-8507,-8508,-8509,-84,-8510,-105,-4899,-314,-8511,-8512,-558,-4900,-1486,-705,-4901,-4902,-2597], -[0,-1786,-4903,-8513,-4904,-8514,-8515,-8516,-8517,-8518,-4865,-8519,-8520,-8521,-8522,-8523,-2606,-8524,-52,-2,-8525, --8526,-8527,-2617,-2618,-3350,-3351,-4867,-8528,-8529,-4868], +[0,-82,-155,-172,-104,-10,-1,-7,-4897,-30,-87,-38,-470,-182,-3072,-391,-8504,-328,-2444,-2,-5,-17,-65,-47,-8505,-8506,-329,-4898,-1156,-1466,-8507,-8508,-8509,-84,-8510,-105,-4899,-314,-8511,-8512,-558,-4900,-1486,-705,-4901,-4902,-2597], +[0,-1786,-4903,-8513,-4904,-8514,-8515,-8516,-8517,-8518,-4865,-8519,-8520,-8521,-8522,-8523,-2606,-8524,-52,-2,-8525,-8526,-8527,-2617,-2618,-3350,-3351,-4867,-8528,-8529,-4868], [1,3,1319], [0,1320,1321,1322,5], [0,-158,-1702,-11,-301,-296,-21,-346,-4905,-2498,-2499,-4548,-4549], @@ -4479,12 +2129,9 @@ true, [0,-40,-697,-571,-42], [1,3,1339], [0,1340,1341,113,5], -[0,-3369,-3370,-1004,-245,-251,-424,-2621,-2622,-2623,-3371,-254,-2624,-4908,-778,-323,-3372,-781,-1805,-2625,-2626,-499, --1483,-1649,-1958,-726,-3373,-792,-1425,-2127,-101,-1668,-2627,-2128,-1243,-554,-1762,-3374,-436,-685,-2091,-2589,-1989, --2590,-1254,-1115,-1135,-1689,-4909,-3375,-1691,-3376,-736,-2129,-906,-522,-599,-806,-80,-1749,-2628,-2629,-135,-348, +[0,-3369,-3370,-1004,-245,-251,-424,-2621,-2622,-2623,-3371,-254,-2624,-4908,-778,-323,-3372,-781,-1805,-2625,-2626,-499,-1483,-1649,-1958,-726,-3373,-792,-1425,-2127,-101,-1668,-2627,-2128,-1243,-554,-1762,-3374,-436,-685,-2091,-2589,-1989,-2590,-1254,-1115,-1135,-1689,-4909,-3375,-1691,-3376,-736,-2129,-906,-522,-599,-806,-80,-1749,-2628,-2629,-135,-348, -1157,-200,-3377,-502,-3378], -[0,-49,-63,-2047,-3379,-2130,-421,-3380,-5,-1806,-1006,-47,-1728,-89,-3381,-3382,-4910,-1,-2573,-226,-788,-2630,-3383,-10, --17,-4,-1113,-870,-6,-36,-182,-33,-2,-30,-2131,-4911], +[0,-49,-63,-2047,-3379,-2130,-421,-3380,-5,-1806,-1006,-47,-1728,-89,-3381,-3382,-4910,-1,-2573,-226,-788,-2630,-3383,-10,-17,-4,-1113,-870,-6,-36,-182,-33,-2,-30,-2131,-4911], [0,0,0,7,9], [1,3,1344], [0,0,1345,1346,4], @@ -4493,8 +2140,7 @@ true, [1,3,1348], [0,1349,1350,1351,4], [0,-8536], -[0,-11,-398,-21,-174,-3388,-8537,-71,-5,-280,-149,-3389,-1,-79,-138,-588,-213,-8538,-1090,-187,-731,-3,-65,-15,-592,-7, --14,-275,-4912,-466,-347,-1259,-1260,-4913,-33,-8539,-2], +[0,-11,-398,-21,-174,-3388,-8537,-71,-5,-280,-149,-3389,-1,-79,-138,-588,-213,-8538,-1090,-187,-731,-3,-65,-15,-592,-7,-14,-275,-4912,-466,-347,-1259,-1260,-4913,-33,-8539,-2], [0,-653,-1158,-827,-410,-8540,-3390,-8541,-8542,-3391,-2631,-706], [1,3,1353], [0,1354,172,1355,5], @@ -4527,15 +2173,13 @@ true, [0,44,15,16,6], [1,3,1382], [0,1383,1384,1385,4], -[0,-8551,-8552,-8553,-60,-8554,-367,-35,-4931,-4932,-40,-4933,-4934,-586,-3411,-101,-4935,-4936,-8555,-88,-8556,-8557, --8558,-198,-8559,-1123,-737,-8560,-8561,-8562,-125,-742], +[0,-8551,-8552,-8553,-60,-8554,-367,-35,-4931,-4932,-40,-4933,-4934,-586,-3411,-101,-4935,-4936,-8555,-88,-8556,-8557,-8558,-198,-8559,-1123,-737,-8560,-8561,-8562,-125,-742], [0,-8563,-26,-1420,-15,-4937,-97,-39,-379], [0,-718,-94,-1324,-85,-39,-61], [1,3,1387], [0,1388,1389,1390,5], [0,-952,-8564,-4938,-3412], -[0,-4939,-77,-238,-62,-330,-109,-71,-5,-8565,-22,-19,-773,-60,-13,-26,-542,-8566,-1,-12,-28,-10,-4940,-3054,-968,-4941, --79,-138,-187,-17,-3,-8567,-188,-15,-4,-8568,-14,-229,-33,-3413,-2,-8569], +[0,-4939,-77,-238,-62,-330,-109,-71,-5,-8565,-22,-19,-773,-60,-13,-26,-542,-8566,-1,-12,-28,-10,-4940,-3054,-968,-4941,-79,-138,-187,-17,-3,-8567,-188,-15,-4,-8568,-14,-229,-33,-3413,-2,-8569], [0,-1304,-331,-439,-423,-796,-635,-4942,-8570], [1,3,1392], [0,1393,1394,1395,4], @@ -4563,9 +2207,7 @@ true, [0,-184,-53,-94,-500,-1810], [1,3,1416], [0,1417,0,1418,5], -[0,-8578,-8579,-1898,-1899,-1900,-8580,-8581,-59,-157,-20,-456,-141,-369,-35,-3414,-203,-4944,-4945,-8582,-851,-271,-1159, --41,-2634,-28,-342,-1080,-195,-4946,-859,-637,-517,-219,-1092,-23,-92,-8583,-1242,-463,-1247,-325,-641,-493,-685,-4304, --126,-7,-1261,-467,-3415,-16,-2635,-880,-8584,-154,-396,-1701,-603,-469,-2,-438,-1133,-18, +[0,-8578,-8579,-1898,-1899,-1900,-8580,-8581,-59,-157,-20,-456,-141,-369,-35,-3414,-203,-4944,-4945,-8582,-851,-271,-1159,-41,-2634,-28,-342,-1080,-195,-4946,-859,-637,-517,-219,-1092,-23,-92,-8583,-1242,-463,-1247,-325,-641,-493,-685,-4304,-126,-7,-1261,-467,-3415,-16,-2635,-880,-8584,-154,-396,-1701,-603,-469,-2,-438,-1133,-18, -173,-524,-1476,-2456], [0,-184,-4109], [1,3,1420], @@ -4574,19 +2216,15 @@ true, [1,3,1423], [0,0,1424,1425,9], [0,-1746,-671,-8585,-3,-885], -[0,-1325,-243,-8586,-8587,-8588,-8589,-8590,-8591,-8592,-8593,-8594,-8595,-8596,-8597,-8598,-8599,-8600,-8601,-8602,-8603, --8604,-37,-8605,-217,-133,-707,-1770,-299,-201,-8606,-8607,-616,-4947,-8608,-8609,-8610,-4948,-8611,-490,-258,-384,-8612, --4949,-8613,-760,-267,-8614,-4950,-168,-230,-568,-178,-193,-445,-8615,-8616,-647,-8617], +[0,-1325,-243,-8586,-8587,-8588,-8589,-8590,-8591,-8592,-8593,-8594,-8595,-8596,-8597,-8598,-8599,-8600,-8601,-8602,-8603,-8604,-37,-8605,-217,-133,-707,-1770,-299,-201,-8606,-8607,-616,-4947,-8608,-8609,-8610,-4948,-8611,-490,-258,-384,-8612,-4949,-8613,-760,-267,-8614,-4950,-168,-230,-568,-178,-193,-445,-8615,-8616,-647,-8617], [1,3,1427], [0,1428,115,1429,6], [0,-828], -[0,-243,-178,-201,-37,-168,-445,-503,-4951,-616,-267,-647,-258,-384,-299,-193,-4952,-2637,-3393,-334,-2133,-2134,-2059, --8618,-1933,-3416,-8619,-8620], +[0,-243,-178,-201,-37,-168,-445,-503,-4951,-616,-267,-647,-258,-384,-299,-193,-4952,-2637,-3393,-334,-2133,-2134,-2059,-8618,-1933,-3416,-8619,-8620], [1,3,1431], [0,0,1432,1433,10], [0,-34,-51,-82,-841], -[0,-243,-568,-217,-707,-133,-178,-201,-37,-168,-445,-503,-616,-760,-1325,-267,-647,-299,-193,-1021,-1160,-8621,-532,-76, --655,-1022], +[0,-243,-568,-217,-707,-133,-178,-201,-37,-168,-445,-503,-616,-760,-1325,-267,-647,-299,-193,-1021,-1160,-8621,-532,-76,-655,-1022], [1,3,1435], [0,0,1436,1437,5], [0,-34,-51,-82,-8622], @@ -4596,33 +2234,17 @@ true, [0,-243,-133,-37], [1,3,1442], [0,1443,1444,1445,11], -[0,-3321,-8623,-90,-1754,-3237,-4953,-8624,-4954,-1917,-722,-542,-8625,-4955,-23,-461,-1117,-2092,-4956,-1750,-1704,-8626, --605], -[0,-48,-11,-209,-1039,-931,-300,-1326,-1040,-2504,-1327,-2036,-170,-2037,-1140,-449,-21,-137,-49,-63,-665,-207,-751,-191, --29,-4957,-1279,-4958,-896,-5,-8627,-22,-19,-2969,-1020,-3417,-4959,-8628,-8629,-1600,-912,-2638,-1778,-4960,-202,-3418, --157,-194,-91,-86,-96,-2975,-4961,-333,-8630,-1613,-20,-231,-149,-2624,-3419,-58,-8631,-26, --141,-1214,-8632,-1061,-8633,-4962,-4848,-4963,-87,-1293,-484,-1,-12,-723,-9,-145,-211,-8634,-25,-785,-226,-2592,-41,-28, --204,-670,-32,-585,-4964,-1419,-342,-10,-8635,-4965,-8,-176,-794,-8636,-8637,-967,-4966,-4484,-219,-1092,-4967,-8638,-17, --4968,-220,-971,-1239,-1097,-4969,-227,-3420,-374,-88,-72,-1105,-233,-1243,-38,-493,-4, --435,-436,-362,-685,-906,-599,-1811,-4970,-3246,-4971,-7,-4972,-8639,-16,-288,-4973,-154,-182,-3339,-3340,-558,-2597, --1466,-397,-69,-1128,-57,-214,-155,-124,-2,-8640,-135,-438,-2598,-104,-73,-8641,-8642,-990,-3129,-8643,-1132,-8644,-888, --2008,-1531,-1709,-18,-523,-93,-173,-524,-2639,-1784], +[0,-3321,-8623,-90,-1754,-3237,-4953,-8624,-4954,-1917,-722,-542,-8625,-4955,-23,-461,-1117,-2092,-4956,-1750,-1704,-8626,-605], +[0,-48,-11,-209,-1039,-931,-300,-1326,-1040,-2504,-1327,-2036,-170,-2037,-1140,-449,-21,-137,-49,-63,-665,-207,-751,-191,-29,-4957,-1279,-4958,-896,-5,-8627,-22,-19,-2969,-1020,-3417,-4959,-8628,-8629,-1600,-912,-2638,-1778,-4960,-202,-3418,-157,-194,-91,-86,-96,-2975,-4961,-333,-8630,-1613,-20,-231,-149,-2624,-3419,-58,-8631,-26, +-141,-1214,-8632,-1061,-8633,-4962,-4848,-4963,-87,-1293,-484,-1,-12,-723,-9,-145,-211,-8634,-25,-785,-226,-2592,-41,-28,-204,-670,-32,-585,-4964,-1419,-342,-10,-8635,-4965,-8,-176,-794,-8636,-8637,-967,-4966,-4484,-219,-1092,-4967,-8638,-17,-4968,-220,-971,-1239,-1097,-4969,-227,-3420,-374,-88,-72,-1105,-233,-1243,-38,-493,-4, +-435,-436,-362,-685,-906,-599,-1811,-4970,-3246,-4971,-7,-4972,-8639,-16,-288,-4973,-154,-182,-3339,-3340,-558,-2597,-1466,-397,-69,-1128,-57,-214,-155,-124,-2,-8640,-135,-438,-2598,-104,-73,-8641,-8642,-990,-3129,-8643,-1132,-8644,-888,-2008,-1531,-1709,-18,-523,-93,-173,-524,-2639,-1784], [0,-73,-897,-1733,-441,-935,-8645,-131,-127,-102,-53,-52], [1,3,1447], [0,1448,1449,110,4], -[0,-302,-542,-90,-2487,-1704,-3321,-8646,-8647,-8648,-8649,-4838,-8650,-8651,-4836,-8652,-8653,-8654,-8655,-8656,-8657, --8658,-8659,-8660,-8661,-8662,-8663,-8664,-8665,-4974,-8666,-8667,-8668,-8669,-8670,-8671,-8672,-8673,-4837,-8674,-8675, --8676,-8677,-8678,-8679,-8680,-2092,-8681,-8682], -[0,-183,-325,-2016,-312,-155,-1396,-28,-8,-152,-194,-20,-2094,-10,-965,-547,-78,-3421,-804,-6,-689,-210,-1,-788,-248,-23, --274,-7,-4975,-16,-1913,-3418,-2640,-436,-124,-18,-1059,-41,-340,-1782,-88,-1105,-4,-4976,-1784,-26,-1812,-226,-2029, --1783,-160,-3333,-36,-1532,-3422,-188,-641,-146,-522,-600,-328,-2,-29,-5, --2127,-413,-17,-3093,-2596,-1903,-614,-3423,-47,-1813,-8683,-2594,-4977,-8684,-2530,-665,-1781,-143,-140,-3330,-1445, --683,-4978,-806,-329,-1147,-4979,-3424,-4980,-3326,-1006,-1519,-499,-2593,-8685,-3324,-1004,-2641,-191,-1780,-761,-2518, --4981,-2483,-1516,-4982,-89,-2359,-1427,-4983,-557,-3338,-736,-2485,-8686,-2531,-1300,-8687,-3233,-2532,-1202,-4984,-145, --964, --2595,-2598,-4985,-726,-1520,-3425,-319,-3331,-847,-794,-3335,-4986,-120,-148,-176,-8688,-4987,-4988,-3332,-523,-3329, --1493,-4989,-153,-186,-8689,-2591,-4990,-3426,-8690,-307,-3152,-4991,-3328,-8691,-2095,-3336,-3327,-3427,-3325,-3428, --4992], +[0,-302,-542,-90,-2487,-1704,-3321,-8646,-8647,-8648,-8649,-4838,-8650,-8651,-4836,-8652,-8653,-8654,-8655,-8656,-8657,-8658,-8659,-8660,-8661,-8662,-8663,-8664,-8665,-4974,-8666,-8667,-8668,-8669,-8670,-8671,-8672,-8673,-4837,-8674,-8675,-8676,-8677,-8678,-8679,-8680,-2092,-8681,-8682], +[0,-183,-325,-2016,-312,-155,-1396,-28,-8,-152,-194,-20,-2094,-10,-965,-547,-78,-3421,-804,-6,-689,-210,-1,-788,-248,-23,-274,-7,-4975,-16,-1913,-3418,-2640,-436,-124,-18,-1059,-41,-340,-1782,-88,-1105,-4,-4976,-1784,-26,-1812,-226,-2029,-1783,-160,-3333,-36,-1532,-3422,-188,-641,-146,-522,-600,-328,-2,-29,-5, +-2127,-413,-17,-3093,-2596,-1903,-614,-3423,-47,-1813,-8683,-2594,-4977,-8684,-2530,-665,-1781,-143,-140,-3330,-1445,-683,-4978,-806,-329,-1147,-4979,-3424,-4980,-3326,-1006,-1519,-499,-2593,-8685,-3324,-1004,-2641,-191,-1780,-761,-2518,-4981,-2483,-1516,-4982,-89,-2359,-1427,-4983,-557,-3338,-736,-2485,-8686,-2531,-1300,-8687,-3233,-2532,-1202,-4984,-145,-964, +-2595,-2598,-4985,-726,-1520,-3425,-319,-3331,-847,-794,-3335,-4986,-120,-148,-176,-8688,-4987,-4988,-3332,-523,-3329,-1493,-4989,-153,-186,-8689,-2591,-4990,-3426,-8690,-307,-3152,-4991,-3328,-8691,-2095,-3336,-3327,-3427,-3325,-3428,-4992], [1,3,1451], [0,1452,0,7,5], [0,-152], @@ -4630,8 +2252,7 @@ true, [1,3,1455], [0,1456,1457,1458,9], [0,-4521,-4522,-4528,-4523,-4527,-8692,-8693,-4531,-4532,-8694,-8695,-8696,-8697,-3061,-3185], -[0,-4524,-4525,-4526,-8698,-4529,-4530,-49,-63,-8699,-4533,-4534,-8700,-3186,-893,-1283,-8701,-8702,-163,-323,-1,-12,-370, --40,-41,-10,-101,-17,-1441,-3069,-38,-7,-14,-8703,-1311,-27,-161,-2,-4535,-112,-3429,-125], +[0,-4524,-4525,-4526,-8698,-4529,-4530,-49,-63,-8699,-4533,-4534,-8700,-3186,-893,-1283,-8701,-8702,-163,-323,-1,-12,-370,-40,-41,-10,-101,-17,-1441,-3069,-38,-7,-14,-8703,-1311,-27,-161,-2,-4535,-112,-3429,-125], [0,-1779,-8704,-100,-2972,-42,-8705,-1680], [1,3,1460], [0,1461,1462,174,4], @@ -4673,8 +2294,7 @@ true, [0,-2135,-355,-61,-572,-95,-8725], [1,3,1498], [0,1499,1500,1501,10], -[0,-8726,-5002,-8727,-1317,-8728,-5003,-8729,-5004,-5005,-3440,-5006,-8730,-2644,-8731,-8732,-8733,-8734,-8735,-8736, --8737,-8738,-5007,-8739], +[0,-8726,-5002,-8727,-1317,-8728,-5003,-8729,-5004,-5005,-3440,-5006,-8730,-2644,-8731,-8732,-8733,-8734,-8735,-8736,-8737,-8738,-5007,-8739], [0,-15,-197,-3,-27,-1,-4,-2,-8740,-5,-71,-279,-140,-75,-19,-8741,-22], [0,-8742,-8743,-8744,-8745,-5008,-1534,-1162,-8746,-8747,-5009,-2645], [1,3,1503], @@ -4718,8 +2338,7 @@ true, [0,-280,-1163,-2649,-843,-609,-338,-411,-81,-8770,-1153,-573,-76,-61,-1145,-3446,-401], [1,3,1542], [0,0,1543,1544,4], -[0,-15,-13,-1261,-165,-79,-3,-98,-1,-14,-16,-231,-777,-114,-41,-110,-60,-11,-948,-187,-1814,-429,-860,-5018,-321,-8771, --8772,-156,-414,-333,-861,-213,-3447,-347,-270,-8773,-1207], +[0,-15,-13,-1261,-165,-79,-3,-98,-1,-14,-16,-231,-777,-114,-41,-110,-60,-11,-948,-187,-1814,-429,-860,-5018,-321,-8771,-8772,-156,-414,-333,-861,-213,-3447,-347,-270,-8773,-1207], [0,-59,-2139,-365,-208], [1,3,1546], [0,0,1547,1548,9], @@ -4757,11 +2376,9 @@ true, [0,-157,-24,-2652,-38,-223], [1,3,1580], [0,1581,1582,1583,8], -[0,-3451,-202,-1374,-719,-8786,-1046,-5024,-8787,-20,-8788,-481,-8789,-1934,-5025,-5026,-8790,-8791,-35,-5027,-510,-204, --5028,-793,-1083,-1656,-2143,-3452,-549,-552,-8792,-326,-979,-871,-3453,-2575,-8793,-2653,-1714,-98], +[0,-3451,-202,-1374,-719,-8786,-1046,-5024,-8787,-20,-8788,-481,-8789,-1934,-5025,-5026,-8790,-8791,-35,-5027,-510,-204,-5028,-793,-1083,-1656,-2143,-3452,-549,-552,-8792,-326,-979,-871,-3453,-2575,-8793,-2653,-1714,-98], [0,-2600,-1164,-5,-841,-43,-118,-338,-27,-85,-379,-82,-2,-34,-2643], -[0,-8794,-76,-473,-61,-51,-2654,-918,-535,-573,-762,-37,-8,-3,-39,-85,-376,-196,-280,-1163,-171,-504,-59,-1331,-656,-116, --3454,-8795,-5029,-8796,-401,-2068,-338,-2], +[0,-8794,-76,-473,-61,-51,-2654,-918,-535,-573,-762,-37,-8,-3,-39,-85,-376,-196,-280,-1163,-171,-504,-59,-1331,-656,-116,-3454,-8795,-5029,-8796,-401,-2068,-338,-2], [1,3,1585], [0,1586,1587,1588,4], [0,-20,-781,-732,-23,-361,-72,-147,-8797], @@ -4771,21 +2388,16 @@ true, [0,1591,1592,1593,5], [0,-1119,-200,-136,-125,-294,-410,-565,-5030,-5031,-982], [0,-13,-79,-3,-1,-149,-196,-18,-1618,-112,-60,-2,-5,-859,-308,-373,-389,-3455,-5032,-138], -[0,-100,-2144,-1330,-8800,-8801,-1165,-5033,-5034,-3456,-8802,-8803,-8804,-8805,-8806,-8807,-8808,-3457,-8809,-5035,-8810, --8811,-8812,-8813,-8814,-8815,-8816,-8817,-5036,-4884,-8818,-8819,-8820,-8821,-8822,-5037], +[0,-100,-2144,-1330,-8800,-8801,-1165,-5033,-5034,-3456,-8802,-8803,-8804,-8805,-8806,-8807,-8808,-3457,-8809,-5035,-8810,-8811,-8812,-8813,-8814,-8815,-8816,-8817,-5036,-4884,-8818,-8819,-8820,-8821,-8822,-5037], [1,3,1595], [0,0,1596,1597,4], -[0,-13,-28,-20,-507,-118,-54,-10,-165,-78,-79,-3,-27,-1,-248,-158,-87,-56,-803,-195,-1817,-4,-112,-8823,-1522,-5038,-675, --5039,-2,-11,-5,-5040,-948,-3458,-413,-187,-1237,-17,-65,-5041,-8824,-673,-1445,-1316,-1332,-8825,-134,-8826,-21,-3459, --1090,-1120,-3460,-240,-304,-676,-629,-341,-8827,-138,-1125,-1741,-12,-213, +[0,-13,-28,-20,-507,-118,-54,-10,-165,-78,-79,-3,-27,-1,-248,-158,-87,-56,-803,-195,-1817,-4,-112,-8823,-1522,-5038,-675,-5039,-2,-11,-5,-5040,-948,-3458,-413,-187,-1237,-17,-65,-5041,-8824,-673,-1445,-1316,-1332,-8825,-134,-8826,-21,-3459,-1090,-1120,-3460,-240,-304,-676,-629,-341,-8827,-138,-1125,-1741,-12,-213, -3461,-3462,-300], [0,-8828,-1018,-61,-401,-573,-609,-3463], [1,3,1599], [0,1600,1601,1602,4], [0,-628,-5042,-1412], -[0,-43,-32,-20,-10,-79,-3,-27,-1,-1441,-1248,-14,-40,-8829,-41,-1817,-88,-55,-26,-955,-487,-247,-2527,-884,-2,-11,-163, --948,-1237,-373,-520,-2655,-389,-269,-49,-8830,-21,-8831,-238,-530,-207,-798,-229,-8832,-138,-861,-213,-637,-77,-3464, --731,-5043,-3465,-62,-8833,-5044,-63], +[0,-43,-32,-20,-10,-79,-3,-27,-1,-1441,-1248,-14,-40,-8829,-41,-1817,-88,-55,-26,-955,-487,-247,-2527,-884,-2,-11,-163,-948,-1237,-373,-520,-2655,-389,-269,-49,-8830,-21,-8831,-238,-530,-207,-798,-229,-8832,-138,-861,-213,-637,-77,-3464,-731,-5043,-3465,-62,-8833,-5044,-63], [0,-743,-103,-1535,-171,-144,-94,-905,-422,-100,-351], [1,3,1604], [0,1605,1606,1607,4], @@ -4827,8 +2439,7 @@ true, [0,-18,-831,-281,-349,-1280,-365], [1,3,1642], [0,0,1643,1644,8], -[0,-11,-1039,-21,-179,-162,-91,-5021,-3470,-253,-5047,-666,-1380,-1208,-2146,-1,-12,-83,-9,-75,-25,-67,-129,-3,-1454,-4, --7,-189], +[0,-11,-1039,-21,-179,-162,-91,-5021,-3470,-253,-5047,-666,-1380,-1208,-2146,-1,-12,-83,-9,-75,-25,-67,-129,-3,-1454,-4,-7,-189], [0,-1281,-8843], [1,3,1646], [0,1647,1648,1649,4], @@ -4909,13 +2520,11 @@ true, [0,-281,-349,-446,-45], [1,3,1723], [0,1724,1725,7,5], -[0,-3477,-3478,-1921,-2659,-5063,-1605,-2660,-2661,-2662,-5064,-5065,-5066,-5067,-5068,-1207,-5069,-3479,-5070,-2663, --2664,-2665,-5071,-1606,-3480,-5072,-5073,-1922,-301,-674,-16], +[0,-3477,-3478,-1921,-2659,-5063,-1605,-2660,-2661,-2662,-5064,-5065,-5066,-5067,-5068,-1207,-5069,-3479,-5070,-2663,-2664,-2665,-5071,-1606,-3480,-5072,-5073,-1922,-301,-674,-16], [0,-179,-91,-1602,-1919,-333,-253,-429,-13,-149,-1,-2656,-485,-41,-23,-3,-15,-5074,-7], [1,3,1727], [0,1728,1729,7,6], -[0,-3477,-2659,-5063,-1605,-2660,-2661,-2662,-5064,-5065,-5066,-5067,-5068,-1207,-5069,-3479,-5070,-2663,-2664,-2665, --5071,-1606,-3480,-5072,-1922], +[0,-3477,-2659,-5063,-1605,-2660,-2661,-2662,-5064,-5065,-5066,-5067,-5068,-1207,-5069,-3479,-5070,-2663,-2664,-2665,-5071,-1606,-3480,-5072,-1922], [0,-3469,-1919], [1,3,1731], [0,1732,0,7,8], @@ -4968,8 +2577,7 @@ true, [1,3,1779], [0,1780,1781,1782,11], [0,-58,-28,-195,-152,-7,-44,-125,-439], -[0,-8872,-471,-2025,-5,-698,-3482,-526,-22,-19,-893,-8873,-8874,-1283,-13,-1,-9,-75,-3,-974,-8875,-276,-394,-397,-214,-33, --124,-2,-704,-18,-93], +[0,-8872,-471,-2025,-5,-698,-3482,-526,-22,-19,-893,-8873,-8874,-1283,-13,-1,-9,-75,-3,-974,-8875,-276,-394,-397,-214,-33,-124,-2,-704,-18,-93], [0,-46,-4113,-375,-2028,-5077], [0,44,15,16,4], [1,3,1785], @@ -5023,11 +2631,8 @@ true, [0,45,15,16,5], [1,3,1834], [0,1835,0,1836,9], -[0,-8928,-8929,-8930,-11,-891,-405,-209,-3481,-3442,-3193,-398,-1284,-21,-137,-539,-2077,-4706,-5,-183,-2670,-842,-59, --231,-117,-540,-133,-3486,-457,-955,-1424,-8931,-188,-249,-4,-3487,-80,-810,-130,-813,-221,-2,-112,-8932,-73,-98,-195, --2671], -[0,-3488,-8933,-8934,-3489,-8935,-8936,-53,-2,-45,-440,-1786,-3312,-46,-8937,-5083,-8938,-8939,-8940,-2157,-5084,-1822, --8941,-8942,-8943,-8944,-3274,-8945,-5085,-6,-8946,-8947,-73,-8948,-8949,-3312,-221,-8950,-8951,-810,-2158], +[0,-8928,-8929,-8930,-11,-891,-405,-209,-3481,-3442,-3193,-398,-1284,-21,-137,-539,-2077,-4706,-5,-183,-2670,-842,-59,-231,-117,-540,-133,-3486,-457,-955,-1424,-8931,-188,-249,-4,-3487,-80,-810,-130,-813,-221,-2,-112,-8932,-73,-98,-195,-2671], +[0,-3488,-8933,-8934,-3489,-8935,-8936,-53,-2,-45,-440,-1786,-3312,-46,-8937,-5083,-8938,-8939,-8940,-2157,-5084,-1822,-8941,-8942,-8943,-8944,-3274,-8945,-5085,-6,-8946,-8947,-73,-8948,-8949,-3312,-221,-8950,-8951,-810,-2158], [1,3,1838], [0,1839,1840,1841,10], [0,-8952,-8953,-8954], @@ -5047,9 +2652,7 @@ true, [1,3,1854], [0,1855,1856,1857,9], [0,-8970,-8971,-5089,-8972,-398,-170,-4384,-1818,-2674,-1135,-5090,-605], -[0,-8973,-48,-11,-398,-21,-8974,-174,-90,-1515,-4386,-2293,-8975,-3490,-1154,-5091,-4844,-1019,-4845,-120,-29,-89,-3491, --8976,-5048,-8977,-86,-96,-8978,-8979,-333,-721,-666,-5050,-282,-8980,-540,-55,-26,-1942,-8981,-1,-5092,-32,-1419,-360, --5093,-212,-8,-3052,-968,-233,-8982,-1242,-415,-65,-2395,-15,-234,-4,-685,-6,-36,-8983, +[0,-8973,-48,-11,-398,-21,-8974,-174,-90,-1515,-4386,-2293,-8975,-3490,-1154,-5091,-4844,-1019,-4845,-120,-29,-89,-3491,-8976,-5048,-8977,-86,-96,-8978,-8979,-333,-721,-666,-5050,-282,-8980,-540,-55,-26,-1942,-8981,-1,-5092,-32,-1419,-360,-5093,-212,-8,-3052,-968,-233,-8982,-1242,-415,-65,-2395,-15,-234,-4,-685,-6,-36,-8983, -8984,-7,-189,-467,-8985,-154,-57,-214,-2,-18,-523,-93], [0,-4116,-8986], [1,3,1859], @@ -5079,8 +2682,7 @@ true, [0,-3495,-827,-3496,-574], [1,3,1884], [0,0,1885,1886,5], -[0,-941,-3101,-28,-152,-202,-9001,-3,-27,-119,-72,-7,-9002,-114,-4209,-66,-551,-940,-112,-1374,-60,-163,-225,-393,-969, --1647], +[0,-941,-3101,-28,-152,-202,-9001,-3,-27,-119,-72,-7,-9002,-114,-4209,-66,-551,-940,-112,-1374,-60,-163,-225,-393,-969,-1647], [0,-171,-574,-504,-5097,-1824,-59,-656,-3497,-5098,-2675,-5099,-5100,-9003], [1,3,1888], [0,0,1889,1890,6], @@ -5100,9 +2702,7 @@ true, [0,-658,-103], [1,3,1904], [0,0,1905,148,4], -[0,-2358,-263,-260,-80,-1277,-79,-1,-204,-248,-274,-14,-2421,-177,-196,-101,-285,-38,-276,-4589,-4,-1053,-26,-2482,-182, --48,-1652,-11,-3498,-1747,-488,-682,-2417,-3499,-157,-345,-2512,-2513,-389,-1095,-2676,-9013,-820,-421,-1006,-499,-1004, --5102,-1222,-3216,-348,-21,-9014,-723,-207,-9,-151,-138,-1429,-5103,-237,-211,-213,-2042, +[0,-2358,-263,-260,-80,-1277,-79,-1,-204,-248,-274,-14,-2421,-177,-196,-101,-285,-38,-276,-4589,-4,-1053,-26,-2482,-182,-48,-1652,-11,-3498,-1747,-488,-682,-2417,-3499,-157,-345,-2512,-2513,-389,-1095,-2676,-9013,-820,-421,-1006,-499,-1004,-5102,-1222,-3216,-348,-21,-9014,-723,-207,-9,-151,-138,-1429,-5103,-237,-211,-213,-2042, -77,-3500,-1691,-731,-4588,-62,-1428,-2041,-3218,-3217], [1,3,1907], [0,0,1908,1909,4], @@ -5137,15 +2737,12 @@ true, [0,-109,-71,-5,-9022,-13,-284,-3,-9023,-15,-4,-9024,-199,-1268,-5107,-2], [1,3,1938], [0,1939,1940,1941,6], -[0,-9025,-9026,-9027,-20,-117,-218,-1391,-9028,-9029,-9030,-848,-669,-41,-586,-514,-361,-1247,-3437,-1458,-9031,-3101, --808,-1122,-393,-1123,-810,-1134,-98], +[0,-9025,-9026,-9027,-20,-117,-218,-1391,-9028,-9029,-9030,-848,-669,-41,-586,-514,-361,-1247,-3437,-1458,-9031,-3101,-808,-1122,-393,-1123,-810,-1134,-98], [0,-5,-9032,-13,-9033,-324,-1533,-3,-4,-521,-111,-416,-7,-27,-1262,-147,-139,-123,-2,-70], [0,-9034,-24,-9035,-2163], [1,3,1943], [0,1944,1945,1946,5], -[0,-200,-28,-136,-744,-280,-294,-410,-672,-5108,-2681,-1170,-286,-126,-515,-981,-69,-9036,-2682,-1089,-9037,-5109,-737, --3502,-5110,-9038,-309,-3503,-9039,-3504,-3505,-9040,-2683,-3506,-9041,-3507,-681,-2684,-198,-3508,-9042,-1617,-2685, --2686,-5111,-9043,-3509,-5032,-9044], +[0,-200,-28,-136,-744,-280,-294,-410,-672,-5108,-2681,-1170,-286,-126,-515,-981,-69,-9036,-2682,-1089,-9037,-5109,-737,-3502,-5110,-9038,-309,-3503,-9039,-3504,-3505,-9040,-2683,-3506,-9041,-3507,-681,-2684,-198,-3508,-9042,-1617,-2685,-2686,-5111,-9043,-3509,-5032,-9044], [0,-9045,-85,-603,-16,-469,-1924,-5112,-2687,-455,-3510,-9046,-9047,-3511], [0,-94,-425,-910,-9048,-1151,-159,-45], [1,3,1948], @@ -5164,8 +2761,7 @@ true, [0,-9055,-9056,-626,-9057,-1539,-5116,-833,-533,-9058], [1,3,1962], [0,0,1963,1964,10], -[0,-15,-312,-82,-13,-125,-20,-3,-27,-1,-14,-33,-4,-110,-188,-190,-2,-109,-5,-71,-279,-296,-1287,-147,-1065,-12,-25,-451, --330,-19,-62,-5117,-22,-1200], +[0,-15,-312,-82,-13,-125,-20,-3,-27,-1,-14,-33,-4,-110,-188,-190,-2,-109,-5,-71,-279,-296,-1287,-147,-1065,-12,-25,-451,-330,-19,-62,-5117,-22,-1200], [0,-375,-1611,-74], [1,3,1966], [0,0,0,1967,6], @@ -5231,8 +2827,7 @@ true, [0,-823,-5130,-76,-66,-3516,-5131,-144], [1,3,2028], [0,0,2029,7,5], -[0,-1742,-8,-118,-10,-204,-14,-87,-2628,-57,-33,-124,-41,-4,-9084,-2,-11,-29,-17,-972,-191,-122,-9085,-417,-1334,-77,-295, --62,-3517], +[0,-1742,-8,-118,-10,-204,-14,-87,-2628,-57,-33,-124,-41,-4,-9084,-2,-11,-29,-17,-972,-191,-122,-9085,-417,-1334,-77,-295,-62,-3517], [1,3,2031], [0,2032,2033,2034,11], [0,-2367,-9086], @@ -5299,14 +2894,12 @@ true, [1,3,2094], [0,2095,2096,2097,4], [0,-9126], -[0,-77,-2697,-238,-62,-245,-320,-9127,-22,-19,-9128,-9129,-9130,-284,-55,-26,-1,-9131,-5148,-723,-211,-370,-28,-196,-373, --79,-138,-588,-1661,-213,-389,-2041,-731,-9132,-676,-1491,-233,-863,-978,-14,-875,-2042,-9133,-229,-2,-98], +[0,-77,-2697,-238,-62,-245,-320,-9127,-22,-19,-9128,-9129,-9130,-284,-55,-26,-1,-9131,-5148,-723,-211,-370,-28,-196,-373,-79,-138,-588,-1661,-213,-389,-2041,-731,-9132,-676,-1491,-233,-863,-978,-14,-875,-2042,-9133,-229,-2,-98], [0,-322,-3531,-479,-9134,-615,-649], [1,3,2099], [0,2100,2101,2102,11], [0,-593,-289,-3532,-1833,-488,-9135,-3000,-2698,-9136,-9137,-9138], -[0,-155,-561,-10,-78,-1,-248,-30,-56,-4,-1127,-50,-2,-5,-17,-614,-498,-9139,-115,-9140,-84,-105,-180,-922,-151,-2406, --3533,-12], +[0,-155,-561,-10,-78,-1,-248,-30,-56,-4,-1127,-50,-2,-5,-17,-614,-498,-9139,-115,-9140,-84,-105,-180,-922,-151,-2406,-3533,-12], [0,-3534,-248,-1499,-3535,-74,-266,-537,-31], [1,3,2104], [0,2105,2106,2107,5], @@ -5315,17 +2908,10 @@ true, [0,-1336,-286,-504], [1,3,2109], [0,2110,2111,2112,4], -[0,-90,-9142,-1754,-9143,-4954,-1917,-1925,-9144,-254,-1054,-4887,-778,-158,-1936,-9145,-9146,-9147,-9148,-4955,-9149, --4502,-9150,-9151,-1656,-101,-9152,-119,-2699,-9153,-4888,-233,-9154,-4,-3322,-5149,-9155,-684,-2091,-3334,-9156,-9157, --9158,-9159,-2413,-437,-5150,-9160,-872,-4295,-4297,-1117,-9161,-2092,-1463,-9162,-44,-250,-605,-125], -[0,-11,-209,-578,-1039,-931,-300,-2504,-1327,-2036,-9163,-170,-4544,-2037,-21,-132,-2530,-2531,-2532,-1004,-2026,-9164, --9165,-1278,-3536,-9166,-29,-9167,-143,-1337,-9168,-4889,-47,-9169,-89,-1834,-9170,-1519,-22,-19,-719,-157,-194,-162,-91, --86,-96,-2975,-4961,-4501,-9171,-9172,-9173,-9174,-1613,-20,-3419,-58,-26,-141,-4492,-722,-2094,-4963, --431,-947,-1720,-1,-255,-12,-783,-9,-145,-148,-211,-64,-9175,-851,-1949,-2592,-271,-3017,-340,-28,-32,-585,-311,-4964, --1419,-10,-964,-3047,-5151,-8,-78,-2029,-219,-4967,-17,-23,-1783,-4968,-9176,-3420,-374,-88,-72,-1240,-1978,-1105,-4245, --863,-241,-1982,-38,-493,-435,-4840,-9177,-9178,-2594,-6,-2410,-1115,-2411,-2412,-4504,-4503, --9179,-1689,-9180,-906,-599,-1811,-4970,-3246,-4971,-7,-4972,-9181,-182,-3339,-3340,-558,-2597,-1466,-397,-69,-214,-2, --135,-438,-9182,-2700,-18,-9183,-524,-2639,-1784,-3170,-1715], +[0,-90,-9142,-1754,-9143,-4954,-1917,-1925,-9144,-254,-1054,-4887,-778,-158,-1936,-9145,-9146,-9147,-9148,-4955,-9149,-4502,-9150,-9151,-1656,-101,-9152,-119,-2699,-9153,-4888,-233,-9154,-4,-3322,-5149,-9155,-684,-2091,-3334,-9156,-9157,-9158,-9159,-2413,-437,-5150,-9160,-872,-4295,-4297,-1117,-9161,-2092,-1463,-9162,-44,-250,-605,-125], +[0,-11,-209,-578,-1039,-931,-300,-2504,-1327,-2036,-9163,-170,-4544,-2037,-21,-132,-2530,-2531,-2532,-1004,-2026,-9164,-9165,-1278,-3536,-9166,-29,-9167,-143,-1337,-9168,-4889,-47,-9169,-89,-1834,-9170,-1519,-22,-19,-719,-157,-194,-162,-91,-86,-96,-2975,-4961,-4501,-9171,-9172,-9173,-9174,-1613,-20,-3419,-58,-26,-141,-4492,-722,-2094,-4963, +-431,-947,-1720,-1,-255,-12,-783,-9,-145,-148,-211,-64,-9175,-851,-1949,-2592,-271,-3017,-340,-28,-32,-585,-311,-4964,-1419,-10,-964,-3047,-5151,-8,-78,-2029,-219,-4967,-17,-23,-1783,-4968,-9176,-3420,-374,-88,-72,-1240,-1978,-1105,-4245,-863,-241,-1982,-38,-493,-435,-4840,-9177,-9178,-2594,-6,-2410,-1115,-2411,-2412,-4504,-4503, +-9179,-1689,-9180,-906,-599,-1811,-4970,-3246,-4971,-7,-4972,-9181,-182,-3339,-3340,-558,-2597,-1466,-397,-69,-214,-2,-135,-438,-9182,-2700,-18,-9183,-524,-2639,-1784,-3170,-1715], [0,-9184,-441,-6,-106,-131,-127,-102,-53,-52], [1,3,2114], [0,2115,2116,2117,4], @@ -5337,9 +2923,7 @@ true, [0,-1615,-10,-470,-97,-39], [1,3,2122], [0,2123,0,2124,5], -[0,-406,-318,-3211,-1197,-1043,-2509,-1365,-9188,-2038,-610,-933,-9189,-1372,-332,-428,-1369,-579,-1595,-1199,-1042,-9190, --9191,-9192,-9193,-1366,-9194,-4575,-4571,-1041,-9195,-1198,-1362,-9196,-1367,-1368,-9197,-9198,-9199,-4576,-3537,-9200, --1364,-1370,-9201,-1363,-9202,-9203,-4573,-9204,-932,-3210,-4570,-9205,-9206,-1361,-4572,-9207,-3212,-1371,-9208,-9209], +[0,-406,-318,-3211,-1197,-1043,-2509,-1365,-9188,-2038,-610,-933,-9189,-1372,-332,-428,-1369,-579,-1595,-1199,-1042,-9190,-9191,-9192,-9193,-1366,-9194,-4575,-4571,-1041,-9195,-1198,-1362,-9196,-1367,-1368,-9197,-9198,-9199,-4576,-3537,-9200,-1364,-1370,-9201,-1363,-9202,-9203,-4573,-9204,-932,-3210,-4570,-9205,-9206,-1361,-4572,-9207,-3212,-1371,-9208,-9209], [0,-1002,-283,-894,-821,-895,-420,-31,-1285,-1003,-1494,-1495,-1744,-1745,-1496,-53], [1,3,2126], [0,0,2127,2128,5], @@ -5402,8 +2986,7 @@ true, [0,-9224,-9225,-193,-3545,-2584,-37,-178,-901,-267,-2171,-243,-168], [1,3,2185], [0,2186,2187,76,4], -[0,-20,-44,-856,-23,-16,-101,-9226,-41,-139,-1908,-719,-4766,-9227,-841,-1813,-395,-9228,-9229,-793,-9230,-468,-9231, --9232,-9233,-2457], +[0,-20,-44,-856,-23,-16,-101,-9226,-41,-139,-1908,-719,-4766,-9227,-841,-1813,-395,-9228,-9229,-793,-9230,-468,-9231,-9232,-9233,-2457], [0,-13,-194,-3,-1,-33,-3300,-2,-109,-5,-71,-143,-140,-421,-191,-239,-9234,-9235,-4767,-1220,-9236,-2572,-754,-1946], [1,3,2189], [0,2190,2191,2192,5], @@ -5508,8 +3091,7 @@ true, [1,3,2289], [0,0,2290,2291,6], [0,-179,-91,-270,-1379,-3470,-253,-429,-149,-26,-944,-1,-12,-25,-8,-361,-4,-7,-14,-275,-347,-807,-2009], -[0,-708,-281,-446,-9265,-349,-9266,-9267,-31,-2175,-9268,-1172,-9269,-2707,-1836,-1837,-5183,-9270,-2708,-5184,-168,-5185, --1174,-1339,-9271,-277], +[0,-708,-281,-446,-9265,-349,-9266,-9267,-31,-2175,-9268,-1172,-9269,-2707,-1836,-1837,-5183,-9270,-2708,-5184,-168,-5185,-1174,-1339,-9271,-277], [1,3,2293], [0,0,55,2294,6], [0,-827,-2709,-410,-1838,-3554,-3352,-9272], @@ -5523,8 +3105,7 @@ true, [1,3,2303], [0,2304,2305,2306,4], [0,-496,-20,-98,-691,-737,-468], -[0,-10,-1,-30,-87,-56,-4,-50,-2,-5,-17,-2045,-419,-9274,-5186,-84,-3555,-105,-189,-2572,-922,-9275,-12,-25,-9276,-3556, --911], +[0,-10,-1,-30,-87,-56,-4,-50,-2,-5,-17,-2045,-419,-9274,-5186,-84,-3555,-105,-189,-2572,-922,-9275,-12,-25,-9276,-3556,-911], [0,-1175,-2654,-918,-284,-316,-5187], [1,3,2308], [0,2309,2310,2311,4], @@ -5549,8 +3130,7 @@ true, [1,3,2328], [0,2329,2330,2331,4], [0,-35,-9285], -[0,-2600,-49,-63,-290,-50,-169,-264,-2529,-5,-1015,-22,-19,-51,-43,-149,-1,-12,-1405,-25,-40,-850,-340,-10,-17,-375,-65, --1246,-4,-134,-123,-380,-124,-2], +[0,-2600,-49,-63,-290,-50,-169,-264,-2529,-5,-1015,-22,-19,-51,-43,-149,-1,-12,-1405,-25,-40,-850,-340,-10,-17,-375,-65,-1246,-4,-134,-123,-380,-124,-2], [0,-218,-1341,-375,-3559,-40], [1,3,2333], [0,0,2334,2335,5], @@ -5562,9 +3142,7 @@ true, [0,-201,-748,-1023,-5192,-37,-3488,-135,-495,-9287,-566,-658,-9288], [1,3,2341], [0,0,2342,2343,5], -[0,-34,-51,-1395,-5193,-9289,-337,-2717,-642,-9290,-9291,-9292,-9293,-5194,-9294,-4331,-5195,-9295,-10,-9296,-6,-9297,-1, --9298,-9299,-9300,-23,-9301,-16,-9302,-9303,-9304,-1638,-9305,-9306,-3039,-519,-976,-9307,-36,-247,-146,-9308,-250,-9309, --11,-9310,-17,-9311,-9312,-455,-9313,-9314,-5196,-9315,-132,-1692,-1404], +[0,-34,-51,-1395,-5193,-9289,-337,-2717,-642,-9290,-9291,-9292,-9293,-5194,-9294,-4331,-5195,-9295,-10,-9296,-6,-9297,-1,-9298,-9299,-9300,-23,-9301,-16,-9302,-9303,-9304,-1638,-9305,-9306,-3039,-519,-976,-9307,-36,-247,-146,-9308,-250,-9309,-11,-9310,-17,-9311,-9312,-455,-9313,-9314,-5196,-9315,-132,-1692,-1404], [0,-1176,-277,-1168], [1,3,2345], [0,0,2346,2347,6], @@ -5614,8 +3192,7 @@ true, [1,3,2390], [0,2391,2392,2393,4], [0,-313,-1413,-646,-1446,-1121], -[0,-150,-8,-10,-259,-407,-1,-232,-56,-9331,-18,-4,-26,-48,-50,-86,-2,-11,-5,-271,-17,-65,-49,-115,-529,-134,-21,-84,-5199, --145,-180,-156,-9,-5200,-617,-151,-12,-25,-315,-3562,-63], +[0,-150,-8,-10,-259,-407,-1,-232,-56,-9331,-18,-4,-26,-48,-50,-86,-2,-11,-5,-271,-17,-65,-49,-115,-529,-134,-21,-84,-5199,-145,-180,-156,-9,-5200,-617,-151,-12,-25,-315,-3562,-63], [0,-18,-107,-2720,-2721,-709], [1,3,2395], [0,2396,2397,7,4], @@ -5636,9 +3213,7 @@ true, [0,-943,-351,-37], [1,3,2412], [0,0,0,2413,5], -[0,-5202,-3563,-924,-3564,-2722,-3565,-2723,-5203,-9343,-5204,-5205,-5206,-5207,-9344,-5208,-9345,-5209,-9346,-5210,-5211, --5212,-9347,-5213,-9348,-5214,-5215,-5216,-9349,-5217,-5218,-5219,-5220,-5221,-9350,-3566,-5222,-9351,-5223,-5224,-5225, --5226,-5227,-9352,-567,-1549,-706], +[0,-5202,-3563,-924,-3564,-2722,-3565,-2723,-5203,-9343,-5204,-5205,-5206,-5207,-9344,-5208,-9345,-5209,-9346,-5210,-5211,-5212,-9347,-5213,-9348,-5214,-5215,-5216,-9349,-5217,-5218,-5219,-5220,-5221,-9350,-3566,-5222,-9351,-5223,-5224,-5225,-5226,-5227,-9352,-567,-1549,-706], [1,3,2415], [0,2416,2417,2418,4], [0,-241,-989], @@ -5678,23 +3253,20 @@ true, [0,-8,-121,-6,-36,-18], [1,3,2452], [0,2453,2454,2455,10], -[0,-2286,-9378,-540,-456,-9379,-2724,-35,-339,-1229,-204,-387,-9380,-793,-9381,-1081,-730,-23,-461,-733,-462,-9382,-3421, --9383,-167,-142,-38,-9384,-9385,-2725,-874,-288,-379,-69,-70], +[0,-2286,-9378,-540,-456,-9379,-2724,-35,-339,-1229,-204,-387,-9380,-793,-9381,-1081,-730,-23,-461,-733,-462,-9382,-3421,-9383,-167,-142,-38,-9384,-9385,-2725,-874,-288,-379,-69,-70], [0,-59,-26,-953,-486,-8,-197,-5231,-393,-3570,-1465,-887,-34], [0,-4134,-249,-24,-3571], [1,3,2457], [0,2458,2459,2460,8], [0,-2517,-1491], -[0,-49,-50,-5232,-9386,-9387,-297,-925,-298,-749,-618,-1177,-245,-1178,-29,-5,-279,-26,-1,-12,-145,-25,-10,-8,-17,-4,-122, --27,-2,-84], +[0,-49,-50,-5232,-9386,-9387,-297,-925,-298,-749,-618,-1177,-245,-1178,-29,-5,-279,-26,-1,-12,-145,-25,-10,-8,-17,-4,-122,-27,-2,-84], [0,-1058,-9388,-5233,-3572,-987,-9389,-9390], [1,3,2462], [0,0,0,2463,4], [0,-1058,-192,-46,-74,-2331,-3572,-987,-5234,-824,-1530,-3489,-5235], [1,3,2465], [0,0,2466,2467,4], -[0,-4898,-4899,-9391,-9392,-9393,-9394,-3573,-9395,-1842,-5,-1,-9396,-1405,-9,-180,-256,-115,-9397,-67,-784,-151,-56, --3574,-973,-9398,-1108,-4,-470,-9399,-124,-2,-9400], +[0,-4898,-4899,-9391,-9392,-9393,-9394,-3573,-9395,-1842,-5,-1,-9396,-1405,-9,-180,-256,-115,-9397,-67,-784,-151,-56,-3574,-973,-9398,-1108,-4,-470,-9399,-124,-2,-9400], [0,-1058,-5235,-987,-4135,-192,-46], [1,3,2469], [0,2470,0,2471,4], @@ -5708,8 +3280,7 @@ true, [1,3,2478], [0,2479,2480,2481,5], [0,-188], -[0,-15,-13,-197,-10,-3,-98,-7,-14,-16,-149,-40,-18,-97,-482,-2,-109,-5,-163,-17,-1122,-93,-71,-818,-49,-134,-900,-1671, --1334,-295,-9416,-63], +[0,-15,-13,-197,-10,-3,-98,-7,-14,-16,-149,-40,-18,-97,-482,-2,-109,-5,-163,-17,-1122,-93,-71,-818,-49,-134,-900,-1671,-1334,-295,-9416,-63], [0,-905,-103,-200,-171,-59,-656,-3489,-3488,-144,-6,-501,-94,-1549,-1158,-743,-1535], [1,3,2483], [0,2484,2485,2486,6], @@ -5748,14 +3319,12 @@ true, [1,3,2517], [0,2518,2519,2520,4], [0,-1484,-38,-2729,-1986,-2730,-2469,-464,-16], -[0,-48,-11,-21,-49,-63,-1025,-86,-26,-407,-232,-1219,-1,-12,-9,-271,-10,-8,-176,-219,-1092,-17,-259,-374,-65,-493,-805,-4, --80,-467,-134,-139,-154,-396,-1701,-438,-18], +[0,-48,-11,-21,-49,-63,-1025,-86,-26,-407,-232,-1219,-1,-12,-9,-271,-10,-8,-176,-219,-1092,-17,-259,-374,-65,-493,-805,-4,-80,-467,-134,-139,-154,-396,-1701,-438,-18], [0,-18,-24,-831,-200,-657], [1,3,2522], [0,2523,2524,2525,5], [0,-369,-38,-1236,-646,-1121,-1136], -[0,-150,-1719,-8,-80,-10,-259,-407,-1,-232,-87,-56,-883,-18,-9468,-4,-540,-26,-48,-50,-86,-141,-2,-11,-9469,-5247,-5,-17, --65,-467,-1503,-49,-115,-529,-9470,-134,-21,-145,-508,-180,-9,-9471,-617,-151,-12,-25,-374,-315,-3562,-63], +[0,-150,-1719,-8,-80,-10,-259,-407,-1,-232,-87,-56,-883,-18,-9468,-4,-540,-26,-48,-50,-86,-141,-2,-11,-9469,-5247,-5,-17,-65,-467,-1503,-49,-115,-529,-9470,-134,-21,-145,-508,-180,-9,-9471,-617,-151,-12,-25,-374,-315,-3562,-63], [0,-369,-24,-1719,-540,-4861,-87,-18,-2731,-2185,-9472,-228,-834,-620,-1844], [1,3,2527], [0,2528,2529,2530,4], @@ -5787,8 +3356,7 @@ true, [0,-2733,-5254,-5255], [1,3,2555], [0,0,2556,2557,4], -[0,-11,-21,-137,-50,-2182,-9482,-5256,-2641,-29,-614,-5,-1337,-9483,-86,-20,-117,-1059,-12,-25,-412,-8,-78,-2381,-4,-378, --155,-3121,-2,-84], +[0,-11,-21,-137,-50,-2182,-9482,-5256,-2641,-29,-614,-5,-1337,-9483,-86,-20,-117,-1059,-12,-25,-412,-8,-78,-2381,-4,-378,-155,-3121,-2,-84], [0,-24,-230,-2,-1809,-1470,-650,-4628], [1,3,2559], [0,2560,2561,2562,5], @@ -5818,18 +3386,15 @@ true, [0,-779,-9486,-9487,-2995,-108,-9488,-9489,-9490,-9491,-9492], [1,3,2585], [0,2586,2587,149,8], -[0,-1443,-28,-133,-23,-2007,-510,-4600,-126,-114,-3586,-362,-58,-966,-624,-4886,-4596,-5259,-2045,-9493,-793,-3587,-3588, --9494,-408,-4595,-9495,-4594], -[0,-15,-161,-13,-3,-27,-1,-218,-158,-777,-41,-519,-4,-3589,-55,-48,-60,-190,-11,-91,-308,-393,-174,-4599,-3220,-21,-75, --783,-346,-9,-333,-67,-12,-83,-25,-129,-2657], +[0,-1443,-28,-133,-23,-2007,-510,-4600,-126,-114,-3586,-362,-58,-966,-624,-4886,-4596,-5259,-2045,-9493,-793,-3587,-3588,-9494,-408,-4595,-9495,-4594], +[0,-15,-161,-13,-3,-27,-1,-218,-158,-777,-41,-519,-4,-3589,-55,-48,-60,-190,-11,-91,-308,-393,-174,-4599,-3220,-21,-75,-783,-346,-9,-333,-67,-12,-83,-25,-129,-2657], [1,3,2589], [0,0,2590,2591,4], [0,-580,-253,-429,-60,-1,-9496,-413,-72,-9497,-39,-2447,-112,-9498,-742], [0,-2735,-2736,-5260,-9499,-125], [1,3,2593], [0,2594,0,2595,4], -[0,-161,-4916,-20,-542,-35,-118,-3590,-992,-294,-1663,-23,-9500,-481,-510,-286,-114,-5180,-543,-41,-88,-9501,-58,-691, --1473,-750,-1616,-624,-2186,-456,-1070,-638,-520,-9502,-9503,-1634,-5042,-468,-9504,-3591,-3116,-1655,-2046], +[0,-161,-4916,-20,-542,-35,-118,-3590,-992,-294,-1663,-23,-9500,-481,-510,-286,-114,-5180,-543,-41,-88,-9501,-58,-691,-1473,-750,-1616,-624,-2186,-456,-1070,-638,-520,-9502,-9503,-1634,-5042,-468,-9504,-3591,-3116,-1655,-2046], [0,-572,-94,-483,-9505,-1517,-1518,-913,-131,-1550,-473,-5261,-5262,-76,-61], [1,3,2597], [0,2598,2599,7,5], @@ -5837,8 +3402,7 @@ true, [0,-13,-3,-16,-4,-109,-386,-71,-1438,-122], [1,3,2601], [0,2602,2603,2604,5], -[0,-5264,-9507,-9508,-9509,-9510,-5265,-3592,-9511,-1941,-9512,-9513,-2674,-9514,-5266,-1942,-2333,-9515,-5267,-5268, --9516,-5269,-9517,-9518,-9519,-5270,-4140,-9520,-5271,-3593,-5272], +[0,-5264,-9507,-9508,-9509,-9510,-5265,-3592,-9511,-1941,-9512,-9513,-2674,-9514,-5266,-1942,-2333,-9515,-5267,-5268,-9516,-5269,-9517,-9518,-9519,-5270,-4140,-9520,-5271,-3593,-5272], [0,-3,-1,-14,-817,-5273,-4468,-238,-5274,-206,-62], [0,-1060,-266,-1551,-265,-500,-322], [1,3,2606], @@ -5866,8 +3430,7 @@ true, [0,-192,-9527,-500,-3252], [1,3,2629], [0,0,0,2630,4], -[0,-2996,-1265,-559,-3594,-5276,-5277,-9528,-9529,-5278,-5279,-5280,-9530,-5281,-5282,-9531,-6,-24,-102,-73,-131,-53,-390, --192,-9532,-1510,-3595,-221,-1277,-2636,-9533], +[0,-2996,-1265,-559,-3594,-5276,-5277,-9528,-9529,-5278,-5279,-5280,-9530,-5281,-5282,-9531,-6,-24,-102,-73,-131,-53,-390,-192,-9532,-1510,-3595,-221,-1277,-2636,-9533], [1,3,2632], [0,0,14,2633,9], [0,-5283,-88,-2174,-1848,-613,-1527,-37,-463,-58,-837,-316,-4948,-9534,-9535,-5284,-9536,-166,-74,-1307], @@ -5877,15 +3440,13 @@ true, [0,-179,-580,-321,-13,-3,-1694,-3368], [1,3,2639], [0,0,2640,7,10], -[0,-3596,-155,-9542,-4671,-27,-1,-9543,-23,-30,-124,-1410,-4,-55,-48,-1842,-391,-600,-328,-2,-11,-5,-3597,-9544,-279, --9545,-3228,-143,-9546,-1156,-1516,-21,-9547,-105,-314,-137,-19,-3598,-22,-9548], +[0,-3596,-155,-9542,-4671,-27,-1,-9543,-23,-30,-124,-1410,-4,-55,-48,-1842,-391,-600,-328,-2,-11,-5,-3597,-9544,-279,-9545,-3228,-143,-9546,-1156,-1516,-21,-9547,-105,-314,-137,-19,-3598,-22,-9548], [1,3,2642], [0,0,2643,7,5], [0,-3,-112,-48,-11,-21], [1,3,2645], [0,0,2646,2647,5], -[0,-48,-11,-829,-21,-749,-162,-86,-1206,-26,-1,-185,-9,-145,-3599,-373,-8,-79,-389,-798,-1105,-233,-863,-734,-234,-4,-14, --275,-229,-328,-2], +[0,-48,-11,-829,-21,-749,-162,-86,-1206,-26,-1,-185,-9,-145,-3599,-373,-8,-79,-389,-798,-1105,-233,-863,-734,-234,-4,-14,-275,-229,-328,-2], [0,-542,-1013,-612,-514,-233], [1,3,2649], [0,2650,2651,2652,4], @@ -5910,8 +3471,7 @@ true, [0,-5286,-9563,-2335,-1026,-312,-9564,-5287,-915,-1705], [1,3,2670], [0,0,2671,2672,8], -[0,-48,-21,-137,-909,-9565,-1842,-364,-29,-22,-19,-270,-2658,-5288,-407,-1,-5289,-1405,-145,-180,-1223,-211,-115,-2738, --2739,-784,-1849,-10,-8,-2188,-799,-17,-973,-518,-1108,-2740,-4,-5290,-870,-378,-5291,-172,-2,-5292], +[0,-48,-21,-137,-909,-9565,-1842,-364,-29,-22,-19,-270,-2658,-5288,-407,-1,-5289,-1405,-145,-180,-1223,-211,-115,-2738,-2739,-784,-1849,-10,-8,-2188,-799,-17,-973,-518,-1108,-2740,-4,-5290,-870,-378,-5291,-172,-2,-5292], [0,-509,-1339,-9566,-349], [1,3,2674], [0,0,2675,2676,5], @@ -5946,14 +3506,12 @@ true, [0,2704,2705,2706,5], [0,-204,-1081,-9595,-1554,-552,-5299,-288], [0,-51,-110,-379,-82,-34], -[0,-835,-660,-3606,-3607,-659,-2742,-5300,-5301,-1338,-5302,-2192,-1545,-3608,-7,-2743,-28,-661,-128,-1027,-427,-303, --1555], +[0,-835,-660,-3606,-3607,-659,-2742,-5300,-5301,-1338,-5302,-2192,-1545,-3608,-7,-2743,-28,-661,-128,-1027,-427,-303,-1555], [1,3,2708], [0,2709,2710,2711,10], [0,-150,-462,-5299], [0,-51,-118,-5303,-34], -[0,-762,-37,-835,-150,-659,-2742,-5300,-5301,-1338,-5302,-2192,-1545,-3608,-7,-2743,-28,-128,-660,-1027,-427,-303,-1555, --1342], +[0,-762,-37,-835,-150,-659,-2742,-5300,-5301,-1338,-5302,-2192,-1545,-3608,-7,-2743,-28,-128,-660,-1027,-427,-303,-1555,-1342], [1,3,2713], [0,2714,2715,2716,6], [0,-3609,-9596], @@ -5987,18 +3545,12 @@ true, [1,3,2743], [0,2744,2745,2746,8], [0,-203,-9612], -[0,-50,-2195,-9613,-29,-5,-9614,-1853,-157,-4121,-1053,-508,-141,-369,-1,-145,-67,-271,-56,-247,-5312,-342,-10,-9615, --9616,-8,-17,-972,-374,-72,-463,-38,-682,-555,-493,-805,-4,-57,-214,-33,-2,-84,-438,-18,-93,-173,-818], +[0,-50,-2195,-9613,-29,-5,-9614,-1853,-157,-4121,-1053,-508,-141,-369,-1,-145,-67,-271,-56,-247,-5312,-342,-10,-9615,-9616,-8,-17,-972,-374,-72,-463,-38,-682,-555,-493,-805,-4,-57,-214,-33,-2,-84,-438,-18,-93,-173,-818], [0,-402,-203,-648,-9617,-1172,-9618,-9619,-1180,-2074,-648,-217,-31,-4144,-9620,-9621], [1,3,2748], [0,119,120,2749,4], -[0,-9623,-9624,-9625,-9626,-9627,-9628,-9629,-45,-3614,-1854,-278,-2,-3615,-753,-440,-9630,-9631,-144,-1306,-3616,-5314, --9632,-9633,-9634,-9635,-9636,-9637,-9638,-3214,-9639,-9640,-9641,-249,-9642,-9643,-3617,-9644,-9645,-9646,-9647,-9648, --766,-9649,-9650,-9651,-9652,-9653,-9654,-9655,-9656,-9657,-9658,-9659,-9660,-5315,-1155,-9661,-9662,-9663,-9664,-9665, --9666,-9667, --9668,-3618,-9669,-9670,-9671,-479,-1344,-3619,-3620,-2748,-3621,-3622,-3623,-3624,-3625,-3626,-3627,-3628,-5316,-2196, --3629,-924,-3630,-3631,-3632,-3633,-3634,-3635,-3636,-3637,-2749,-136,-1556,-3638,-2605,-3639,-5317,-5318,-574,-3640,-42, --1551], +[0,-9623,-9624,-9625,-9626,-9627,-9628,-9629,-45,-3614,-1854,-278,-2,-3615,-753,-440,-9630,-9631,-144,-1306,-3616,-5314,-9632,-9633,-9634,-9635,-9636,-9637,-9638,-3214,-9639,-9640,-9641,-249,-9642,-9643,-3617,-9644,-9645,-9646,-9647,-9648,-766,-9649,-9650,-9651,-9652,-9653,-9654,-9655,-9656,-9657,-9658,-9659,-9660,-5315,-1155,-9661,-9662,-9663,-9664,-9665,-9666,-9667, +-9668,-3618,-9669,-9670,-9671,-479,-1344,-3619,-3620,-2748,-3621,-3622,-3623,-3624,-3625,-3626,-3627,-3628,-5316,-2196,-3629,-924,-3630,-3631,-3632,-3633,-3634,-3635,-3636,-3637,-2749,-136,-1556,-3638,-2605,-3639,-5317,-5318,-574,-3640,-42,-1551], [1,3,2751], [0,0,2752,2753,6], [0,-13,-239,-54,-175,-304,-959,-119,-969,-343,-3], @@ -6053,19 +3605,16 @@ true, [0,-2198,-9695], [1,3,2803], [0,2804,2805,2806,4], -[0,-9696,-9697,-9698,-1924,-9699,-845,-9700,-2176,-9701,-9702,-9703,-533,-9704,-9705,-9706,-9707,-9708,-9709,-195,-5329, --5330,-9710,-260,-188,-9711,-9712,-9713,-7,-9714,-9715,-9716,-16,-9717,-9718,-9719,-250,-9720,-2013], +[0,-9696,-9697,-9698,-1924,-9699,-845,-9700,-2176,-9701,-9702,-9703,-533,-9704,-9705,-9706,-9707,-9708,-9709,-195,-5329,-5330,-9710,-260,-188,-9711,-9712,-9713,-7,-9714,-9715,-9716,-16,-9717,-9718,-9719,-250,-9720,-2013], [0,-9721,-5331,-9722,-308,-5332,-233,-5333,-5334], -[0,-2496,-712,-9723,-908,-37,-2199,-308,-713,-607,-5335,-1557,-694,-9724,-9725,-5120,-53,-116,-9726,-144,-166,-74,-926, --2069,-1010,-3384,-746,-1181,-611,-208,-113,-9727,-531], +[0,-2496,-712,-9723,-908,-37,-2199,-308,-713,-607,-5335,-1557,-694,-9724,-9725,-5120,-53,-116,-9726,-144,-166,-74,-926,-2069,-1010,-3384,-746,-1181,-611,-208,-113,-9727,-531], [1,3,2808], [0,0,2809,2810,5], [0,-747,-5,-105,-922,-110,-3645,-5336,-1,-9,-180,-2,-30], [0,-52,-46,-331,-423,-165], [1,3,2812], [0,0,2813,2814,6], -[0,-11,-21,-50,-207,-77,-238,-62,-206,-157,-938,-367,-1219,-1,-12,-56,-518,-5124,-65,-38,-1684,-1451,-555,-4,-7,-14,-1311, --80], +[0,-11,-21,-50,-207,-77,-238,-62,-206,-157,-938,-367,-1219,-1,-12,-56,-518,-5124,-65,-38,-1684,-1451,-555,-4,-7,-14,-1311,-80], [0,-399,-2465,-9728,-42,-116,-45,-278,-99,-1000,-107,-5308,-9729], [1,3,2816], [0,2817,71,2818,8], @@ -6073,8 +3622,7 @@ true, [0,-545,-99,-42,-1764,-74,-2200,-1558,-5337], [1,3,2820], [0,2821,2822,2823,8], -[0,-11,-891,-405,-539,-450,-20,-117,-203,-9733,-2078,-499,-28,-4411,-372,-728,-101,-9734,-23,-2627,-9735,-5338,-5339, --1111,-1991,-274,-522,-2417,-9736,-1773,-126,-601,-1559,-348,-502,-9737,-9738,-98], +[0,-11,-891,-405,-539,-450,-20,-117,-203,-9733,-2078,-499,-28,-4411,-372,-728,-101,-9734,-23,-2627,-9735,-5338,-5339,-1111,-1991,-274,-522,-2417,-9736,-1773,-126,-601,-1559,-348,-502,-9737,-9738,-98], [0,-5340,-295,-9739,-1,-12,-41,-10,-8,-635,-17,-548,-4,-134,-161], [0,-42,-1303,-165,-2752,-74,-892], [1,3,2825], @@ -6084,9 +3632,7 @@ true, [0,-9744,-9745,-4148,-9746,-1534,-1347,-403,-1162], [1,3,2830], [0,2831,2832,2833,4], -[0,-3207,-1645,-28,-20,-6,-431,-23,-72,-844,-369,-40,-38,-436,-111,-276,-1749,-1469,-41,-1961,-58,-36,-254,-641,-1116,-11, --9747,-450,-157,-372,-972,-3647,-2567,-5341,-9748,-499,-449,-174,-539,-1255,-5342,-21,-5343,-3648,-132,-408,-947,-209, --300], +[0,-3207,-1645,-28,-20,-6,-431,-23,-72,-844,-369,-40,-38,-436,-111,-276,-1749,-1469,-41,-1961,-58,-36,-254,-641,-1116,-11,-9747,-450,-157,-372,-972,-3647,-2567,-5341,-9748,-499,-449,-174,-539,-1255,-5342,-21,-5343,-3648,-132,-408,-947,-209,-300], [0,-7,-2753,-1640,-5344], [0,-42,-5345,-3649,-1625], [1,3,2835], @@ -6096,8 +3642,7 @@ true, [1,3,2839], [0,2840,2841,2842,6], [0,-90,-722], -[0,-9752,-9753,-48,-11,-137,-9754,-9755,-9756,-22,-19,-91,-96,-1,-9,-148,-256,-64,-411,-28,-248,-79,-138,-213,-3650,-187, --414,-1237,-637,-517,-3,-7,-5347,-27,-2,-18], +[0,-9752,-9753,-48,-11,-137,-9754,-9755,-9756,-22,-19,-91,-96,-1,-9,-148,-256,-64,-411,-28,-248,-79,-138,-213,-3650,-187,-414,-1237,-637,-517,-3,-7,-5347,-27,-2,-18], [0,-1626,-106,-266,-100,-9757,-230,-827,-5348,-2171,-1626,-2201,-9758,-24], [1,3,2844], [0,2845,2846,2847,4], @@ -6111,8 +3656,7 @@ true, [1,3,2853], [0,2854,2855,2856,6], [0,-5350], -[0,-11,-21,-207,-62,-237,-206,-320,-5,-26,-12,-25,-248,-78,-79,-1428,-138,-213,-1662,-731,-9760,-88,-65,-234,-4,-376, --5351,-7,-14,-417,-9761,-305,-44,-2,-34], +[0,-11,-21,-207,-62,-237,-206,-320,-5,-26,-12,-25,-248,-78,-79,-1428,-138,-213,-1662,-731,-9760,-88,-65,-234,-4,-376,-5351,-7,-14,-417,-9761,-305,-44,-2,-34], [0,-266,-1275,-31,-265,-9762,-711,-5352,-5353,-1028,-767,-5354], [1,3,2858], [0,0,2859,2860,10], @@ -6175,8 +3719,7 @@ true, [1,3,2916], [0,2917,2918,2919,4], [0,-1636,-514,-241], -[0,-11,-2148,-1326,-5360,-91,-5361,-26,-150,-1630,-1,-3653,-12,-783,-485,-148,-25,-64,-9772,-412,-32,-585,-960,-4188, --9773,-2347,-790,-1074,-310,-360,-8,-4,-6,-36,-287,-9774,-69,-1130,-2756], +[0,-11,-2148,-1326,-5360,-91,-5361,-26,-150,-1630,-1,-3653,-12,-783,-485,-148,-25,-64,-9772,-412,-32,-585,-960,-4188,-9773,-2347,-790,-1074,-310,-360,-8,-4,-6,-36,-287,-9774,-69,-1130,-2756], [0,-9775,-420,-6,-2757], [1,3,2921], [0,2922,2923,2924,5], @@ -6193,36 +3736,22 @@ true, [0,-768,-4151,-479,-403,-46,-37,-9781,-356], [1,3,2934], [0,2935,2936,113,4], -[0,-3369,-3370,-1004,-245,-251,-424,-2621,-2622,-2623,-3371,-254,-4910,-4908,-778,-323,-3372,-781,-1805,-2625,-2626,-499, --1483,-1649,-1958,-726,-3373,-792,-1425,-2127,-101,-1668,-2627,-2128,-1243,-554,-1762,-3374,-436,-685,-2091,-2589,-1989, --2590,-1254,-1115,-1135,-1689,-4909,-3375,-1691,-3376,-736,-2129,-906,-522,-599,-806,-80,-1749,-2628,-2629,-135,-348, +[0,-3369,-3370,-1004,-245,-251,-424,-2621,-2622,-2623,-3371,-254,-4910,-4908,-778,-323,-3372,-781,-1805,-2625,-2626,-499,-1483,-1649,-1958,-726,-3373,-792,-1425,-2127,-101,-1668,-2627,-2128,-1243,-554,-1762,-3374,-436,-685,-2091,-2589,-1989,-2590,-1254,-1115,-1135,-1689,-4909,-3375,-1691,-3376,-736,-2129,-906,-522,-599,-806,-80,-1749,-2628,-2629,-135,-348, -1157,-200,-3377,-502,-3378], -[0,-49,-63,-2047,-3379,-2130,-421,-3380,-5,-1806,-1006,-47,-1728,-89,-3381,-3382,-1,-2573,-226,-788,-2630,-3383,-10,-17, --4,-1113,-870,-6,-36,-182,-33,-2,-30,-2131,-4911], +[0,-49,-63,-2047,-3379,-2130,-421,-3380,-5,-1806,-1006,-47,-1728,-89,-3381,-3382,-1,-2573,-226,-788,-2630,-3383,-10,-17,-4,-1113,-870,-6,-36,-182,-33,-2,-30,-2131,-4911], [1,3,2938], [0,2939,2940,113,6], -[0,-3369,-3370,-1004,-245,-251,-424,-2621,-2622,-2623,-3371,-254,-2624,-778,-323,-3372,-3378,-781,-1805,-2625,-2626,-499, --1483,-1649,-1958,-726,-3373,-792,-1425,-2127,-101,-1668,-2627,-2128,-1243,-554,-1762,-3374,-436,-685,-2091,-2589,-2590, --1115,-1135,-1689,-1691,-3376,-736,-2129,-906,-522,-599,-806,-80,-1749,-2629,-135,-348,-1157,-200,-3377,-502], -[0,-49,-63,-2047,-3379,-2130,-421,-3380,-5,-1806,-47,-1728,-3381,-3382,-1,-226,-788,-3383,-10,-17,-4,-1113,-870,-6,-182, --33,-2,-30], +[0,-3369,-3370,-1004,-245,-251,-424,-2621,-2622,-2623,-3371,-254,-2624,-778,-323,-3372,-3378,-781,-1805,-2625,-2626,-499,-1483,-1649,-1958,-726,-3373,-792,-1425,-2127,-101,-1668,-2627,-2128,-1243,-554,-1762,-3374,-436,-685,-2091,-2589,-2590,-1115,-1135,-1689,-1691,-3376,-736,-2129,-906,-522,-599,-806,-80,-1749,-2629,-135,-348,-1157,-200,-3377,-502], +[0,-49,-63,-2047,-3379,-2130,-421,-3380,-5,-1806,-47,-1728,-3381,-3382,-1,-226,-788,-3383,-10,-17,-4,-1113,-870,-6,-182,-33,-2,-30], [1,3,2942], [0,0,2943,7,5], [0,-39,-469], [1,3,2945], [0,2946,2947,110,8], -[0,-9782,-9783,-9784,-9785,-9786,-90,-1754,-9787,-9788,-9789,-9790,-9791,-254,-778,-542,-9792,-9793,-9794,-9795,-9796, --9797,-9798,-9799,-9800,-9801,-9802,-9803,-9804,-9805,-9806,-9807,-9808,-9809,-9810,-9811,-9812,-9813,-9814,-9815,-9816, --9817,-9818,-9819,-9820,-9821,-9822,-9823,-2092,-1704], -[0,-4986,-4991,-2485,-9824,-3323,-329,-3426,-2530,-3233,-2531,-2532,-1903,-1147,-3324,-3427,-1300,-4992,-4989,-1202,-665, --3325,-1516,-1004,-319,-153,-120,-307,-3424,-4980,-4985,-191,-3326,-4984,-4987,-29,-1780,-3327,-2591,-1781,-614,-143, --761,-5,-4982,-5369,-3423,-1006,-2518,-2093,-47,-1728,-89,-3328,-4846,-140,-4981,-1532,-3329,-1519,-22,-19,-1913,-3418, --3330,-3422,-3331,-194,-20,-231,-4990,-1813,-26,-1937,-2094,-210,-1396,-4988,-1293,-1,-255,-12,-246,-847,-9,-145,-148, --5370,-211,-64,-186,-151,-226,-2592,-41,-340,-28,-2127,-413,-964,-965,-547,-2359,-8,-1782,-1427,-176,-794,-1520,-2593, --248,-78,-3332,-2029,-17,-23,-4983,-1783,-88,-1105,-188,-1445,-1243,-152,-325,-3421,-978,-804, --4,-2406,-683,-436,-160,-465,-3333,-2594,-3334,-6,-1115,-4978,-36,-2483,-2595,-3335,-3336,-2413,-3337,-557,-3338,-346, --736,-274,-146,-522,-2596,-3428,-2095,-806,-7,-4975,-16,-689,-600,-328,-4976,-4849,-312,-1267,-177,-155,-124,-2,-2598, --4977,-18,-523,-1784], +[0,-9782,-9783,-9784,-9785,-9786,-90,-1754,-9787,-9788,-9789,-9790,-9791,-254,-778,-542,-9792,-9793,-9794,-9795,-9796,-9797,-9798,-9799,-9800,-9801,-9802,-9803,-9804,-9805,-9806,-9807,-9808,-9809,-9810,-9811,-9812,-9813,-9814,-9815,-9816,-9817,-9818,-9819,-9820,-9821,-9822,-9823,-2092,-1704], +[0,-4986,-4991,-2485,-9824,-3323,-329,-3426,-2530,-3233,-2531,-2532,-1903,-1147,-3324,-3427,-1300,-4992,-4989,-1202,-665,-3325,-1516,-1004,-319,-153,-120,-307,-3424,-4980,-4985,-191,-3326,-4984,-4987,-29,-1780,-3327,-2591,-1781,-614,-143,-761,-5,-4982,-5369,-3423,-1006,-2518,-2093,-47,-1728,-89,-3328,-4846,-140,-4981,-1532,-3329,-1519,-22,-19,-1913,-3418, +-3330,-3422,-3331,-194,-20,-231,-4990,-1813,-26,-1937,-2094,-210,-1396,-4988,-1293,-1,-255,-12,-246,-847,-9,-145,-148,-5370,-211,-64,-186,-151,-226,-2592,-41,-340,-28,-2127,-413,-964,-965,-547,-2359,-8,-1782,-1427,-176,-794,-1520,-2593,-248,-78,-3332,-2029,-17,-23,-4983,-1783,-88,-1105,-188,-1445,-1243,-152,-325,-3421,-978,-804, +-4,-2406,-683,-436,-160,-465,-3333,-2594,-3334,-6,-1115,-4978,-36,-2483,-2595,-3335,-3336,-2413,-3337,-557,-3338,-346,-736,-274,-146,-522,-2596,-3428,-2095,-806,-7,-4975,-16,-689,-600,-328,-4976,-4849,-312,-1267,-177,-155,-124,-2,-2598,-4977,-18,-523,-1784], [1,3,2949], [0,0,2950,2951,10], [0,-49,-63,-2204,-50,-1,-12,-256,-25,-10,-17,-3,-4,-14,-81,-134], @@ -6230,14 +3759,12 @@ true, [1,3,2953], [0,2954,2955,2956,11], [0,-44,-9826], -[0,-505,-11,-450,-5367,-5365,-9827,-451,-77,-62,-237,-29,-22,-19,-20,-58,-1063,-87,-1,-41,-204,-10,-8,-1427,-119,-296, --152,-14,-229,-1462,-16,-177,-57,-2], +[0,-505,-11,-450,-5367,-5365,-9827,-451,-77,-62,-237,-29,-22,-19,-20,-58,-1063,-87,-1,-41,-204,-10,-8,-1427,-119,-296,-152,-14,-229,-1462,-16,-177,-57,-2], [0,-3007,-9828,-3531,-9829,-1551,-3658,-9830,-322,-265], [1,3,2958], [0,2959,2960,2961,4], [0,-1858,-1226,-9831,-1073,-9832,-2759,-9833,-23,-92,-5371,-142,-69,-70,-562,-98], -[0,-109,-191,-9834,-143,-71,-5,-2568,-279,-1287,-2205,-1560,-5372,-419,-13,-409,-41,-487,-3,-15,-181,-7,-27,-190,-33,-199, --2], +[0,-109,-191,-9834,-143,-71,-5,-2568,-279,-1287,-2205,-1560,-5372,-419,-13,-409,-41,-487,-3,-15,-181,-7,-27,-190,-33,-199,-2], [0,-1858,-1288,-534,-5373,-1183,-5306,-68], [1,3,2963], [0,2964,2965,2966,4], @@ -6247,8 +3774,7 @@ true, [1,3,2968], [0,2969,2970,2971,4], [0,-20,-23,-9835], -[0,-197,-202,-59,-54,-3,-27,-812,-1,-248,-233,-16,-936,-1609,-18,-9836,-9837,-114,-551,-4,-69,-411,-226,-3238,-164,-3659, --60,-11,-5374,-91,-96,-9838,-3660,-21,-75,-511,-240,-9,-629,-341,-67,-12,-83,-25,-129,-5375], +[0,-197,-202,-59,-54,-3,-27,-812,-1,-248,-233,-16,-936,-1609,-18,-9836,-9837,-114,-551,-4,-69,-411,-226,-3238,-164,-3659,-60,-11,-5374,-91,-96,-9838,-3660,-21,-75,-511,-240,-9,-629,-341,-67,-12,-83,-25,-129,-5375], [0,-4152,-5058,-1752], [0,44,15,16,5], [1,3,2974], @@ -6258,8 +3784,7 @@ true, [0,2978,2979,2980,4], [0,-20,-98,-481,-41,-9839,-9840,-9841,-9842,-9843,-3651], [0,-419,-191], -[0,-458,-908,-712,-1859,-729,-3662,-2760,-9844,-306,-5376,-2761,-9845,-2206,-2762,-5377,-9846,-9847,-9848,-9849,-9850, --5378,-3431], +[0,-458,-908,-712,-1859,-729,-3662,-2760,-9844,-306,-5376,-2761,-9845,-2206,-2762,-5377,-9846,-9847,-9848,-9849,-9850,-5378,-3431], [1,3,2982], [0,2983,2984,2985,4], [0,-5379,-3661,-9851,-9852,-9853,-9854,-35,-1070,-2202,-41,-9855,-9856,-5380,-9857,-1252,-5381,-126,-16,-525], @@ -6279,9 +3804,7 @@ true, [1,3,2998], [0,2999,3000,3001,5], [0,-1917,-2301,-323,-4262,-1117,-1704], -[0,-9861,-9862,-179,-162,-96,-270,-333,-1047,-1920,-3664,-253,-2302,-9863,-13,-117,-508,-55,-9864,-26,-141,-948,-1,-9865, --1632,-723,-2765,-271,-9866,-32,-1648,-9867,-1418,-372,-342,-859,-4966,-79,-138,-588,-187,-2758,-637,-676,-517,-3665, --220,-971,-5382,-1239,-374,-3,-1242,-1982,-38,-4283,-7,-467,-9868,-27,-190,-154,-9869,-1130, +[0,-9861,-9862,-179,-162,-96,-270,-333,-1047,-1920,-3664,-253,-2302,-9863,-13,-117,-508,-55,-9864,-26,-141,-948,-1,-9865,-1632,-723,-2765,-271,-9866,-32,-1648,-9867,-1418,-372,-342,-859,-4966,-79,-138,-588,-187,-2758,-637,-676,-517,-3665,-220,-971,-5382,-1239,-374,-3,-1242,-1982,-38,-4283,-7,-467,-9868,-27,-190,-154,-9869,-1130, -9870,-438,-73,-1132,-888,-1475,-9871,-18,-93,-173,-1712], [0,-9872,-73,-127], [1,3,3003], @@ -6299,27 +3822,19 @@ true, [0,-50,-9895,-5,-9896,-105,-1,-12,-25,-9897,-4,-5385,-33,-2,-84,-30], [1,3,3016], [0,3017,3018,3019,10], -[0,-9898,-9899,-9900,-9901,-9902,-3143,-3666,-9903,-9904,-3667,-2320,-9905,-1928,-4405,-9906,-3668,-3669,-5386,-9907,-20, --481,-9908,-367,-1057,-3670,-9909,-5387,-9910,-203,-9911,-4944,-9912,-4945,-3671,-118,-849,-40,-725,-339,-9913,-41,-2679, --2634,-2630,-28,-2678,-9914,-9915,-3672,-586,-1080,-195,-9916,-9917,-23,-220,-9918,-92,-678,-463,-975,-5371,-5388, --641,-5389,-9919,-5390,-126,-3487,-1561,-5391,-16,-2635,-1860,-5392,-603,-3117,-1469,-5393,-1133,-5394,-2528,-9920,-9921, --9922], -[0,-1826,-1610,-13,-239,-5395,-5129,-284,-9923,-9924,-1,-12,-3673,-256,-115,-1227,-5396,-78,-1968,-3,-197,-15,-4,-3674, --139,-123,-1703,-161,-2207,-889,-222,-9925,-9926], +[0,-9898,-9899,-9900,-9901,-9902,-3143,-3666,-9903,-9904,-3667,-2320,-9905,-1928,-4405,-9906,-3668,-3669,-5386,-9907,-20,-481,-9908,-367,-1057,-3670,-9909,-5387,-9910,-203,-9911,-4944,-9912,-4945,-3671,-118,-849,-40,-725,-339,-9913,-41,-2679,-2634,-2630,-28,-2678,-9914,-9915,-3672,-586,-1080,-195,-9916,-9917,-23,-220,-9918,-92,-678,-463,-975,-5371,-5388, +-641,-5389,-9919,-5390,-126,-3487,-1561,-5391,-16,-2635,-1860,-5392,-603,-3117,-1469,-5393,-1133,-5394,-2528,-9920,-9921,-9922], +[0,-1826,-1610,-13,-239,-5395,-5129,-284,-9923,-9924,-1,-12,-3673,-256,-115,-1227,-5396,-78,-1968,-3,-197,-15,-4,-3674,-139,-123,-1703,-161,-2207,-889,-222,-9925,-9926], [0,-306,-9927,-1807,-37,-5397,-9928,-9929,-3169], [1,3,3021], [0,3022,3023,3024,4], -[0,-2493,-578,-1139,-3195,-3193,-2502,-4554,-170,-1140,-21,-90,-9930,-5398,-9931,-9932,-1047,-3675,-3667,-2320,-3668, --5386,-507,-9933,-9934,-3671,-3487,-16], -[0,-11,-5399,-9935,-5400,-9936,-9937,-91,-1610,-13,-941,-5401,-456,-3670,-158,-5387,-5402,-1399,-2767,-4159,-3676,-5403, --5404,-5405,-5406,-5407,-1,-5408,-75,-5396,-3677,-3,-376,-346,-3674,-126,-7,-18], +[0,-2493,-578,-1139,-3195,-3193,-2502,-4554,-170,-1140,-21,-90,-9930,-5398,-9931,-9932,-1047,-3675,-3667,-2320,-3668,-5386,-507,-9933,-9934,-3671,-3487,-16], +[0,-11,-5399,-9935,-5400,-9936,-9937,-91,-1610,-13,-941,-5401,-456,-3670,-158,-5387,-5402,-1399,-2767,-4159,-3676,-5403,-5404,-5405,-5406,-5407,-1,-5408,-75,-5396,-3677,-3,-376,-346,-3674,-126,-7,-18], [0,-281,-5397,-5409,-1399,-2031,-1280], [1,3,3026], [0,3027,3028,3029,6], [0,-9938,-9939,-3667,-9940,-1826,-2679,-3672,-5410,-2635,-1133], -[0,-11,-156,-578,-1139,-170,-1140,-90,-5399,-5400,-9941,-5398,-1928,-1610,-13,-5401,-284,-5402,-1399,-4158,-9942,-2767, --3676,-5403,-5404,-5405,-5406,-5407,-9943,-9944,-9945,-1,-12,-5408,-256,-115,-25,-3678,-1227,-3677,-3,-4,-376,-4286,-378, --5106,-182,-558,-4863,-18], +[0,-11,-156,-578,-1139,-170,-1140,-90,-5399,-5400,-9941,-5398,-1928,-1610,-13,-5401,-284,-5402,-1399,-4158,-9942,-2767,-3676,-5403,-5404,-5405,-5406,-5407,-9943,-9944,-9945,-1,-12,-5408,-256,-115,-25,-3678,-1227,-3677,-3,-4,-376,-4286,-378,-5106,-182,-558,-4863,-18], [0,-5409,-1399], [1,3,3031], [0,3032,3033,3034,8], @@ -6344,8 +3859,7 @@ true, [0,3051,3052,3053,4], [0,-452,-139], [0,-5,-671,-195,-3,-15,-392,-2], -[0,-2058,-2548,-1755,-1756,-37,-316,-299,-1757,-543,-116,-569,-3258,-352,-2549,-195,-1508,-2059,-45,-144,-353,-495,-392, --2060,-2061,-1256,-1010,-1489,-3259,-1509,-1295,-178,-445,-102,-1011,-1716,-2062], +[0,-2058,-2548,-1755,-1756,-37,-316,-299,-1757,-543,-116,-569,-3258,-352,-2549,-195,-1508,-2059,-45,-144,-353,-495,-392,-2060,-2061,-1256,-1010,-1489,-3259,-1509,-1295,-178,-445,-102,-1011,-1716,-2062], [1,3,3055], [0,3056,3057,3058,8], [0,-1830,-9953,-981,-3679], @@ -6360,13 +3874,11 @@ true, [0,-1067,-469], [1,3,3067], [0,0,3068,3069,4], -[0,-11,-1326,-449,-21,-49,-63,-1853,-162,-91,-86,-96,-1,-185,-12,-9,-25,-9957,-28,-10,-8,-88,-1497,-2761,-4,-3474,-18,-93, --222,-9958], +[0,-11,-1326,-449,-21,-49,-63,-1853,-162,-91,-86,-96,-1,-185,-12,-9,-25,-9957,-28,-10,-8,-88,-1497,-2761,-4,-3474,-18,-93,-222,-9958], [0,-694,-1340,-828,-3680,-9959,-5412,-9960], [1,3,3071], [0,3072,3073,85,4], -[0,-5413,-231,-3008,-5414,-1861,-9961,-9962,-5415,-9963,-3604,-9964,-9965,-5416,-1666,-1245,-2138,-591,-1109,-2768,-684, --9966,-3681], +[0,-5413,-231,-3008,-5414,-1861,-9961,-9962,-5415,-9963,-3604,-9964,-9965,-5416,-1666,-1245,-2138,-591,-1109,-2768,-684,-9966,-3681], [0,-179,-1818,-721,-1,-255,-9,-148,-64,-212,-78,-7,-189], [1,3,3075], [0,3076,3077,85,11], @@ -6392,8 +3904,7 @@ true, [1,3,3096], [0,3097,3098,3099,4], [0,-5417,-1234,-9987,-5418,-9988,-3511,-591], -[0,-314,-244,-1563,-9989,-5419,-9990,-5420,-5421,-3682,-5422,-5423,-5424,-5425,-9991,-714,-1601,-269,-533,-1,-2160,-3520, --1084,-273,-15,-9992,-189,-9993,-39,-9994], +[0,-314,-244,-1563,-9989,-5419,-9990,-5420,-5421,-3682,-5422,-5423,-5424,-5425,-9991,-714,-1601,-269,-533,-1,-2160,-3520,-1084,-273,-15,-9992,-189,-9993,-39,-9994], [0,-45,-350,-1829,-278,-2741,-917,-9995,-5426,-2647], [1,3,3101], [0,3102,3103,3104,11], @@ -6410,8 +3921,7 @@ true, [0,-349,-658,-281], [1,3,3114], [0,0,3115,3116,9], -[0,-10003,-3,-1399,-3669,-3666,-5430,-5431,-5432,-5433,-1928,-3675,-2767,-10004,-5434,-2665,-2660,-5435,-2663,-1605,-2662, --2659,-1606,-2661,-2664], +[0,-10003,-3,-1399,-3669,-3666,-5430,-5431,-5432,-5433,-1928,-3675,-2767,-10004,-5434,-2665,-2660,-5435,-2663,-1605,-2662,-2659,-1606,-2661,-2664], [0,-5436,-567,-171,-504], [1,3,3118], [0,0,3119,3120,4], @@ -6434,11 +3944,8 @@ true, [0,-202,-114,-10008,-13,-2519,-10009,-32,-513,-359,-88,-3075,-16], [1,3,3137], [0,3138,3139,3140,5], -[0,-717,-2610,-10010,-10011,-2204,-5438,-10012,-10013,-10014,-320,-183,-225,-35,-408,-1066,-950,-583,-3684,-2667,-952, --5439,-339,-1413,-460,-3685,-1081,-10015,-92,-2122,-3075], -[0,-314,-11,-21,-2537,-2195,-290,-10016,-5440,-5,-19,-96,-43,-13,-231,-456,-158,-483,-337,-544,-5441,-1849,-5442,-10017, --5443,-1067,-5444,-28,-56,-387,-670,-516,-799,-17,-220,-1239,-227,-10018,-10019,-10020,-10021,-10022,-10023,-3,-5445, --5446,-4,-362,-181,-1257,-346,-16,-276,-27,-2,-18,-93,-2773], +[0,-717,-2610,-10010,-10011,-2204,-5438,-10012,-10013,-10014,-320,-183,-225,-35,-408,-1066,-950,-583,-3684,-2667,-952,-5439,-339,-1413,-460,-3685,-1081,-10015,-92,-2122,-3075], +[0,-314,-11,-21,-2537,-2195,-290,-10016,-5440,-5,-19,-96,-43,-13,-231,-456,-158,-483,-337,-544,-5441,-1849,-5442,-10017,-5443,-1067,-5444,-28,-56,-387,-670,-516,-799,-17,-220,-1239,-227,-10018,-10019,-10020,-10021,-10022,-10023,-3,-5445,-5446,-4,-362,-181,-1257,-346,-16,-276,-27,-2,-18,-93,-2773], [0,-363,-224,-45,-350,-583], [1,3,3142], [0,3143,3144,197,5], @@ -6478,13 +3985,11 @@ true, [1,3,3177], [0,0,3178,3179,5], [0,-1,-83,-9,-115,-67,-39], -[0,-2776,-293,-619,-334,-2777,-2778,-2779,-1187,-1183,-1,-1564,-1566,-587,-119,-224,-2780,-1186,-654,-1997,-97,-2781,-230, --2782,-2783,-1565], +[0,-2776,-293,-619,-334,-2777,-2778,-2779,-1187,-1183,-1,-1564,-1566,-587,-119,-224,-2780,-1186,-654,-1997,-97,-2781,-230,-2782,-2783,-1565], [1,3,3181], [0,0,3182,3183,4], [0,-364,-714,-1,-9,-115,-67,-39], -[0,-2776,-293,-619,-334,-2777,-2778,-2779,-1187,-1183,-1,-1564,-1566,-587,-119,-224,-2780,-1186,-654,-97,-2781,-230,-2782, --2783,-1565], +[0,-2776,-293,-619,-334,-2777,-2778,-2779,-1187,-1183,-1,-1564,-1566,-587,-119,-224,-2780,-1186,-654,-97,-2781,-230,-2782,-2783,-1565], [1,3,3185], [0,3186,3187,7,9], [0,-50,-529,-151,-56,-84], @@ -6493,8 +3998,7 @@ true, [0,3190,3191,3192,4], [0,-10029,-2195,-315,-2210,-56], [0,-51,-1], -[0,-1564,-34,-5450,-10030,-10031,-5451,-5452,-334,-1186,-230,-224,-577,-587,-119,-2774,-1,-534,-1187,-97,-3689,-293,-619, --1565,-1183,-1566,-654], +[0,-1564,-34,-5450,-10030,-10031,-5451,-5452,-334,-1186,-230,-224,-577,-587,-119,-2774,-1,-534,-1187,-97,-3689,-293,-619,-1565,-1183,-1566,-654], [1,3,3194], [0,0,3195,3196,10], [0,-49,-63,-26,-10,-17,-146,-1692,-34], @@ -6526,8 +4030,7 @@ true, [1,3,3222], [0,3223,3224,3225,5], [0,-2182,-10041,-301,-1052,-339,-56,-1667,-16], -[0,-11,-156,-49,-63,-498,-50,-297,-298,-2784,-747,-10042,-364,-29,-3691,-140,-110,-10043,-458,-1,-12,-544,-25,-787,-10,-8, --4,-122,-600,-57,-33,-2,-84], +[0,-11,-156,-49,-63,-498,-50,-297,-298,-2784,-747,-10042,-364,-29,-3691,-140,-110,-10043,-458,-1,-12,-544,-25,-787,-10,-8,-4,-122,-600,-57,-33,-2,-84], [0,-1,-94,-3525,-100,-224,-2986,-10044], [1,3,3227], [0,0,123,3228,5], @@ -6540,8 +4043,7 @@ true, [1,3,3235], [0,3236,3237,198,11], [0,-717,-1068], -[0,-49,-63,-3213,-1348,-290,-50,-529,-3692,-5459,-10053,-320,-143,-5,-19,-771,-1009,-1,-10054,-12,-668,-115,-151,-1407, --1066,-583,-10,-516,-17,-23,-518,-1108,-345,-4,-380,-2,-84,-30], +[0,-49,-63,-3213,-1348,-290,-50,-529,-3692,-5459,-10053,-320,-143,-5,-19,-771,-1009,-1,-10054,-12,-668,-115,-151,-1407,-1066,-583,-10,-516,-17,-23,-518,-1108,-345,-4,-380,-2,-84,-30], [1,3,3239], [0,3240,3241,3242,4], [0,-23,-10055], @@ -6555,32 +4057,25 @@ true, [1,3,3249], [0,3250,3251,3252,9], [0,-10059,-3693,-10060,-5413,-1601,-35,-1863,-2785,-10061,-672,-3610,-1081,-92,-2769,-10062,-2768,-16,-10063,-815], -[0,-5463,-364,-19,-179,-162,-91,-333,-1047,-721,-2666,-429,-844,-13,-26,-10064,-1,-668,-246,-544,-9,-2765,-5054,-10065, --28,-212,-1235,-636,-10066,-10067,-518,-3,-3694,-15,-327,-7,-189,-27,-161,-2,-3695], +[0,-5463,-364,-19,-179,-162,-91,-333,-1047,-721,-2666,-429,-844,-13,-26,-10064,-1,-668,-246,-544,-9,-2765,-5054,-10065,-28,-212,-1235,-636,-10066,-10067,-518,-3,-3694,-15,-327,-7,-189,-27,-161,-2,-3695], [0,-1,-354,-383,-349,-4997,-381,-657,-1864], [1,3,3254], [0,199,3255,198,6], -[0,-48,-11,-21,-137,-49,-63,-1348,-10068,-297,-298,-2125,-364,-29,-5,-140,-22,-19,-771,-86,-10069,-509,-1,-12,-668,-544, --9,-115,-25,-1407,-2212,-10,-547,-8,-5166,-17,-5462,-1251,-4,-7,-122,-16,-33,-2], +[0,-48,-11,-21,-137,-49,-63,-1348,-10068,-297,-298,-2125,-364,-29,-5,-140,-22,-19,-771,-86,-10069,-509,-1,-12,-668,-544,-9,-115,-25,-1407,-2212,-10,-547,-8,-5166,-17,-5462,-1251,-4,-7,-122,-16,-33,-2], [1,3,3257], [0,3258,3259,3260,4], [0,-10070,-10071,-10072,-2056,-35,-408,-583,-3684,-673,-10073,-10074,-16,-5464,-10075], -[0,-314,-48,-11,-156,-998,-21,-10076,-10077,-2204,-10078,-62,-925,-749,-618,-109,-169,-5459,-5440,-320,-652,-71,-5,-140, --10079,-1505,-270,-333,-10080,-43,-430,-13,-1622,-1,-5461,-5460,-28,-56,-10,-3696,-635,-3697,-17,-3,-3698,-391,-1189,-7, --14,-122,-27,-3361,-2,-84], +[0,-314,-48,-11,-156,-998,-21,-10076,-10077,-2204,-10078,-62,-925,-749,-618,-109,-169,-5459,-5440,-320,-652,-71,-5,-140,-10079,-1505,-270,-333,-10080,-43,-430,-13,-1622,-1,-5461,-5460,-28,-56,-10,-3696,-635,-3697,-17,-3,-3698,-391,-1189,-7,-14,-122,-27,-3361,-2,-84], [0,-1,-107,-165], [1,3,3262], [0,3263,3264,3265,9], [0,-717,-2204,-5438,-10081,-10082,-10083,-2188,-2122,-2018], -[0,-156,-1865,-357,-1348,-2195,-3699,-3700,-315,-2183,-71,-5465,-5,-140,-22,-19,-43,-3701,-87,-1,-12,-544,-10084,-180, --3702,-1223,-211,-115,-2786,-25,-784,-785,-1849,-1066,-410,-56,-3,-1682,-4,-16,-182,-5466,-558,-10085,-10086,-380,-155, --2,-84,-3703,-817,-990], +[0,-156,-1865,-357,-1348,-2195,-3699,-3700,-315,-2183,-71,-5465,-5,-140,-22,-19,-43,-3701,-87,-1,-12,-544,-10084,-180,-3702,-1223,-211,-115,-2786,-25,-784,-785,-1849,-1066,-410,-56,-3,-1682,-4,-16,-182,-5466,-558,-10085,-10086,-380,-155,-2,-84,-3703,-817,-990], [0,-1,-354,-383,-224,-5467,-272,-108], [1,3,3267], [0,3268,3269,3270,4], [0,-1522,-3693,-1601,-10087,-1205,-3704,-10088,-5040,-672,-5468,-10089,-92,-2769,-3679,-10090], -[0,-48,-11,-156,-998,-174,-269,-270,-721,-1,-185,-668,-544,-485,-9,-1068,-412,-212,-1235,-3597,-88,-273,-591,-1109,-7, --189,-16,-39,-5469], +[0,-48,-11,-156,-998,-174,-269,-270,-721,-1,-185,-668,-544,-485,-9,-1068,-412,-212,-1235,-3597,-88,-273,-591,-1109,-7,-189,-16,-39,-5469], [0,-1,-354,-383,-1018,-1309,-904], [1,3,3272], [0,3273,3274,3275,4], @@ -6611,8 +4106,7 @@ true, [1,3,3298], [0,3299,3300,201,5], [0,-3693,-10098,-1601,-10099,-1863,-10100,-1068,-672,-5468,-92,-1109,-2769,-2768,-121,-126,-16,-3342,-5470], -[0,-11,-156,-3187,-10101,-10102,-132,-364,-320,-5,-19,-91,-1,-185,-668,-544,-9,-1407,-2212,-1066,-583,-10103,-28,-66, --1235,-5471,-518,-3,-273,-27,-2,-3695], +[0,-11,-156,-3187,-10101,-10102,-132,-364,-320,-5,-19,-91,-1,-185,-668,-544,-9,-1407,-2212,-1066,-583,-10103,-28,-66,-1235,-5471,-518,-3,-273,-27,-2,-3695], [1,3,3302], [0,3303,3304,201,5], [0,-263,-11,-405,-10104,-3183], @@ -6620,9 +4114,7 @@ true, [1,3,3306], [0,3307,3308,3309,6], [0,-717,-2610,-2056,-3696,-3706,-5473,-3707], -[0,-357,-4563,-1348,-290,-50,-3699,-3700,-2602,-109,-364,-3692,-320,-71,-5,-5474,-22,-19,-280,-13,-3701,-1,-12,-668,-246, --544,-9,-180,-3702,-1223,-211,-115,-10105,-25,-784,-151,-785,-1849,-10106,-518,-3,-5475,-296,-345,-15,-1682,-4,-16,-182, --2027,-5466,-380,-155,-2,-84,-3703,-817,-990], +[0,-357,-4563,-1348,-290,-50,-3699,-3700,-2602,-109,-364,-3692,-320,-71,-5,-5474,-22,-19,-280,-13,-3701,-1,-12,-668,-246,-544,-9,-180,-3702,-1223,-211,-115,-10105,-25,-784,-151,-785,-1849,-10106,-518,-3,-5475,-296,-345,-15,-1682,-4,-16,-182,-2027,-5466,-380,-155,-2,-84,-3703,-817,-990], [0,-1,-354,-383,-1160,-1021], [1,3,3311], [0,3312,3313,3314,5], @@ -6639,14 +4131,12 @@ true, [1,3,3323], [0,3324,3325,3326,9], [0,-717,-1729,-2667,-56,-2368,-38,-868,-1453,-16,-10110], -[0,-11,-156,-2657,-1348,-757,-10111,-10112,-652,-3708,-71,-5,-5479,-140,-2787,-1740,-1505,-202,-280,-87,-1066,-3690,-950, --583,-516,-219,-3,-1452,-556,-80,-811,-396,-221,-10113,-155,-236,-262], +[0,-11,-156,-2657,-1348,-757,-10111,-10112,-652,-3708,-71,-5,-5479,-140,-2787,-1740,-1505,-202,-280,-87,-1066,-3690,-950,-583,-516,-219,-3,-1452,-556,-80,-811,-396,-221,-10113,-155,-236,-262], [0,-1,-383,-354,-221,-10114], [1,3,3328], [0,3329,3330,3331,5], [0,-1740,-771], -[0,-49,-63,-290,-50,-5,-2612,-105,-922,-1005,-1,-12,-668,-246,-1866,-115,-67,-1407,-2212,-56,-10,-516,-17,-4,-470,-122, --380,-2,-84,-30], +[0,-49,-63,-290,-50,-5,-2612,-105,-922,-1005,-1,-12,-668,-246,-1866,-115,-67,-1407,-2212,-56,-10,-516,-17,-4,-470,-122,-380,-2,-84,-30], [0,-1,-354,-383,-224,-4874,-61], [1,3,3333], [0,3334,3335,3336,4], @@ -6656,8 +4146,7 @@ true, [1,3,3338], [0,3339,3340,3341,9], [0,-2491,-717,-1387,-481,-10115,-3189,-3709,-56,-793,-3449,-1087,-554,-5480,-10116,-16,-2070], -[0,-505,-11,-156,-290,-10117,-19,-1505,-51,-43,-543,-1,-5455,-1222,-668,-544,-180,-151,-1407,-2212,-1066,-583,-1663,-518, --2788,-10118,-1108,-345,-3698,-803,-871,-2,-990,-262], +[0,-505,-11,-156,-290,-10117,-19,-1505,-51,-43,-543,-1,-5455,-1222,-668,-544,-180,-151,-1407,-2212,-1066,-583,-1663,-518,-2788,-10118,-1108,-345,-3698,-803,-871,-2,-990,-262], [0,-1,-354,-383,-10119,-577,-224,-230,-34], [1,3,3343], [0,199,3344,3345,4], @@ -6666,8 +4155,7 @@ true, [1,3,3347], [0,3348,3349,3350,5], [0,-717,-2122,-2468,-556,-16,-3710], -[0,-357,-529,-3700,-315,-2602,-364,-5465,-5,-140,-10123,-22,-19,-1505,-105,-280,-3701,-87,-1,-3556,-12,-544,-9,-1223, --10124,-2786,-25,-151,-3690,-950,-583,-410,-56,-78,-518,-594,-4,-380,-2,-3703,-817,-30,-990], +[0,-357,-529,-3700,-315,-2602,-364,-5465,-5,-140,-10123,-22,-19,-1505,-105,-280,-3701,-87,-1,-3556,-12,-544,-9,-1223,-10124,-2786,-25,-151,-3690,-950,-583,-410,-56,-78,-518,-594,-4,-380,-2,-3703,-817,-30,-990], [0,-1,-383,-2096,-73,-1319,-1567], [1,3,3352], [0,3353,3354,3355,6], @@ -6695,8 +4183,7 @@ true, [0,-363,-350,-45,-74,-400,-202], [1,3,3376], [0,0,3377,3378,5], -[0,-2172,-10131,-10132,-28,-66,-5481,-79,-138,-1429,-1661,-213,-1090,-187,-861,-5482,-798,-23,-3,-10133,-984,-603,-199,-2, --3122,-10134,-18], +[0,-2172,-10131,-10132,-28,-66,-5481,-79,-138,-1429,-1661,-213,-1090,-187,-861,-5482,-798,-23,-3,-10133,-984,-603,-199,-2,-3122,-10134,-18], [0,-363,-350,-1067,-45,-74,-400], [1,3,3380], [0,0,3381,7,5], @@ -6711,8 +4198,7 @@ true, [1,3,3390], [0,3391,3392,3393,8], [0,-10136,-4165], -[0,-10137,-10138,-10139,-10140,-3289,-761,-5,-714,-60,-10141,-55,-10,-66,-79,-860,-1429,-213,-3711,-88,-15,-4,-39,-33, --199,-124,-816,-2,-10142], +[0,-10137,-10138,-10139,-10140,-3289,-761,-5,-714,-60,-10141,-55,-10,-66,-79,-860,-1429,-213,-3711,-88,-15,-4,-39,-33,-199,-124,-816,-2,-10142], [0,-2564,-10143], [1,3,3395], [0,3396,3397,3398,5], @@ -6760,13 +4246,11 @@ true, [0,-2,-5507,-280,-650,-1470,-76,-61], [1,3,3439], [0,3440,3441,203,4], -[0,-465,-1062,-848,-680,-808,-989,-35,-669,-336,-442,-1044,-988,-735,-1263,-1218,-344,-3360,-163,-484,-633,-977,-846,-953, --1114,-393,-1213,-3717,-942], +[0,-465,-1062,-848,-680,-808,-989,-35,-669,-336,-442,-1044,-988,-735,-1263,-1218,-344,-3360,-163,-484,-633,-977,-846,-953,-1114,-393,-1213,-3717,-942], [0,-337,-1959,-15,-772,-3,-3127,-1,-227,-678,-123,-1935,-581,-2330,-850,-1977,-5508], [1,3,3443], [0,3444,3445,203,4], -[0,-1044,-10164,-163,-942,-846,-336,-1213,-35,-1062,-1218,-484,-848,-953,-669,-633,-3717,-1104,-977,-735,-553,-3360,-465, --1114,-497,-808,-393,-5509,-1263,-988,-2005,-989], +[0,-1044,-10164,-163,-942,-846,-336,-1213,-35,-1062,-1218,-484,-848,-953,-669,-633,-3717,-1104,-977,-735,-553,-3360,-465,-1114,-497,-808,-393,-5509,-1263,-988,-2005,-989], [0,-772,-1935,-581,-2330,-337,-1,-850,-1959,-227,-1977,-3,-678,-15,-5508,-123,-3127], [1,3,3447], [0,3448,3449,3450,6], @@ -6800,8 +4284,7 @@ true, [1,3,3476], [0,0,3477,3478,5], [0,-43,-10169,-27,-1,-40,-33,-10170,-2,-5,-279,-264,-19,-22], -[0,-10171,-10172,-108,-2,-100,-103,-40,-10173,-10174,-2,-356,-576,-10175,-5515,-10176,-10177,-10178,-4705,-476,-46,-10179, --5516,-6,-10180,-10181,-10182], +[0,-10171,-10172,-108,-2,-100,-103,-40,-10173,-10174,-2,-356,-576,-10175,-5515,-10176,-10177,-10178,-4705,-476,-46,-10179,-5516,-6,-10180,-10181,-10182], [1,3,3480], [0,3481,3482,3483,4], [0,-23,-439], @@ -6869,13 +4352,11 @@ true, [1,3,3544], [0,3545,3546,3547,4], [0,-10223,-5531,-10224,-10225,-10226,-10227,-10228,-5532,-10229,-1250,-5533,-1695,-5534,-16,-10230], -[0,-10231,-4666,-623,-315,-2601,-5,-183,-3250,-773,-3725,-10232,-3726,-1726,-10233,-284,-26,-1,-10234,-3318,-10235,-10236, --633,-730,-3366,-1089,-5535,-819,-1107,-181,-881,-82,-2,-289,-989,-1286], +[0,-10231,-4666,-623,-315,-2601,-5,-183,-3250,-773,-3725,-10232,-3726,-1726,-10233,-284,-26,-1,-10234,-3318,-10235,-10236,-633,-730,-3366,-1089,-5535,-819,-1107,-181,-881,-82,-2,-289,-989,-1286], [0,-113,-53,-108,-331,-152,-100], [1,3,3549], [0,3550,3551,7,5], -[0,-451,-10237,-2621,-10238,-10239,-2622,-2623,-10240,-2215,-1603,-1047,-3727,-2216,-781,-87,-226,-2626,-2795,-92,-5536, --815,-2,-5537], +[0,-451,-10237,-2621,-10238,-10239,-2622,-2623,-10240,-2215,-1603,-1047,-3727,-2216,-781,-87,-226,-2626,-2795,-92,-5536,-815,-2,-5537], [0,-49,-63,-245,-29,-10241,-927,-5,-5049,-2630,-10,-8,-4602,-17,-4,-1113,-870,-7,-33,-155,-2131], [1,3,3553], [0,3554,3555,3556,10], @@ -6889,12 +4370,10 @@ true, [1,3,3562], [0,28,3563,3564,9], [0,-48,-11,-21,-132,-297,-298,-10249,-1814,-5538,-776,-295,-1,-255,-17,-72,-122], -[0,-10250,-10251,-10252,-10253,-127,-5539,-52,-382,-6,-10254,-10255,-4864,-113,-10256,-10257,-5540,-10258,-10259,-10260, --10261,-10262,-10263,-3729,-10264,-10265,-10266,-10267,-10268,-10269,-10270,-10271], +[0,-10250,-10251,-10252,-10253,-127,-5539,-52,-382,-6,-10254,-10255,-4864,-113,-10256,-10257,-5540,-10258,-10259,-10260,-10261,-10262,-10263,-3729,-10264,-10265,-10266,-10267,-10268,-10269,-10270,-10271], [1,3,3566], [0,39,3567,3568,4], -[0,-48,-11,-170,-21,-132,-137,-207,-77,-62,-330,-153,-120,-1478,-29,-47,-89,-22,-19,-149,-284,-26,-1,-185,-12,-5313,-9, --145,-64,-186,-8,-6,-36,-346,-14,-229,-57,-44,-2], +[0,-48,-11,-170,-21,-132,-137,-207,-77,-62,-330,-153,-120,-1478,-29,-47,-89,-22,-19,-149,-284,-26,-1,-185,-12,-5313,-9,-145,-64,-186,-8,-6,-36,-346,-14,-229,-57,-44,-2], [0,-10272,-52,-10273,-327], [1,3,3570], [0,3571,0,3572,8], @@ -6923,18 +4402,9 @@ true, [0,3594,3595,3596,4], [0,-10278,-10279,-10280,-3732], [0,-10281,-5,-51,-1192,-487,-10282,-82,-34], -[0,-260,-128,-576,-10283,-1529,-292,-1789,-5547,-3733,-5191,-3734,-5548,-710,-293,-634,-10284,-10285,-10286,-2206,-837, --294,-5121,-1572,-621,-10287,-1349,-2617,-10288,-10289,-10290,-10291,-10292,-10293,-10294,-10295,-10296,-684,-10297, --3735,-5549,-10298,-5550,-10299,-915,-312,-10300,-10301,-5286,-10302,-5376,-10303,-10304,-10305,-10306,-10307,-10308, --10309,-10310,-10311,-10312,-10313,-10314,-10315, --10316,-10317,-1171,-3736,-10318,-5035,-10319,-10320,-10321,-10322,-10323,-10324,-10325,-5551,-10326,-10327,-10328,-1290, --10329,-10330,-10331,-10332,-10333,-10334,-10335,-5552,-10336,-10337,-10338,-10339,-10340,-10341,-5553,-10342,-1715, --10343,-10344,-5554,-10345,-10346,-10347,-10348,-10349,-5555,-10350,-537,-5556,-10351,-4798,-10352,-10353,-10354,-5056, --10355,-10356,-10357,-10358,-10359,-10360,-10361,-10362,-10363,-10364,-10365, --10366,-10367,-10368,-10369,-10370,-10371,-10372,-10373,-10374,-5557,-10375,-10376,-10377,-10378,-10379,-10380,-10381, --10382,-10383,-10384,-10385,-10386,-10387,-2618,-10388,-10389,-10390,-10391,-2749,-10392,-10393,-10394,-5558,-10395, --10396,-10397,-10398,-10399,-2201,-10400,-10401,-10402,-10403,-5559,-10404,-10405,-10406,-10407,-10408,-10409,-10410, --10411,-10412,-10413,-10414,-10415,-10416,-3737,-10417,-5560,-10418,-10419,-10420,-10421, +[0,-260,-128,-576,-10283,-1529,-292,-1789,-5547,-3733,-5191,-3734,-5548,-710,-293,-634,-10284,-10285,-10286,-2206,-837,-294,-5121,-1572,-621,-10287,-1349,-2617,-10288,-10289,-10290,-10291,-10292,-10293,-10294,-10295,-10296,-684,-10297,-3735,-5549,-10298,-5550,-10299,-915,-312,-10300,-10301,-5286,-10302,-5376,-10303,-10304,-10305,-10306,-10307,-10308,-10309,-10310,-10311,-10312,-10313,-10314,-10315, +-10316,-10317,-1171,-3736,-10318,-5035,-10319,-10320,-10321,-10322,-10323,-10324,-10325,-5551,-10326,-10327,-10328,-1290,-10329,-10330,-10331,-10332,-10333,-10334,-10335,-5552,-10336,-10337,-10338,-10339,-10340,-10341,-5553,-10342,-1715,-10343,-10344,-5554,-10345,-10346,-10347,-10348,-10349,-5555,-10350,-537,-5556,-10351,-4798,-10352,-10353,-10354,-5056,-10355,-10356,-10357,-10358,-10359,-10360,-10361,-10362,-10363,-10364,-10365, +-10366,-10367,-10368,-10369,-10370,-10371,-10372,-10373,-10374,-5557,-10375,-10376,-10377,-10378,-10379,-10380,-10381,-10382,-10383,-10384,-10385,-10386,-10387,-2618,-10388,-10389,-10390,-10391,-2749,-10392,-10393,-10394,-5558,-10395,-10396,-10397,-10398,-10399,-2201,-10400,-10401,-10402,-10403,-5559,-10404,-10405,-10406,-10407,-10408,-10409,-10410,-10411,-10412,-10413,-10414,-10415,-10416,-3737,-10417,-5560,-10418,-10419,-10420,-10421, -5561,-10422,-1545,-10423,-10424,-10425,-5287,-10426,-10427], [1,3,3598], [0,0,3599,3600,9], @@ -6960,22 +4430,17 @@ true, [0,-128,-655,-339,-1159,-28,-532,-1022,-126,-766], [1,3,3620], [0,3621,3622,3623,4], -[0,-10431,-10432,-10433,-10434,-10435,-10436,-10437,-10438,-10439,-10440,-10441,-10442,-5562,-5563,-10443,-10444,-10445, --10446,-10447,-5564,-10448,-10449,-10450,-10451,-10452,-10453,-10454,-10455], +[0,-10431,-10432,-10433,-10434,-10435,-10436,-10437,-10438,-10439,-10440,-10441,-10442,-5562,-5563,-10443,-10444,-10445,-10446,-10447,-5564,-10448,-10449,-10450,-10451,-10452,-10453,-10454,-10455], [0,-32,-14,-2,-962,-311,-807,-206,-876,-77,-1259,-305,-62], [0,-695,-403,-5565,-1410,-839,-1166,-574,-10456], [1,3,3625], [0,3626,3627,3628,10], [0,-3739,-5564,-10457,-5,-10458,-952,-2800,-797,-10459,-1107,-125], -[0,-10460,-5562,-5563,-10461,-451,-5566,-109,-754,-10462,-1753,-143,-761,-71,-3304,-2801,-10463,-279,-1287,-698,-22,-19, --1382,-13,-239,-2519,-20,-2988,-150,-1,-10464,-32,-1073,-790,-1419,-10465,-23,-88,-3,-1443,-197,-65,-15,-111,-1694,-986, --27,-190,-33,-2,-98], +[0,-10460,-5562,-5563,-10461,-451,-5566,-109,-754,-10462,-1753,-143,-761,-71,-3304,-2801,-10463,-279,-1287,-698,-22,-19,-1382,-13,-239,-2519,-20,-2988,-150,-1,-10464,-32,-1073,-790,-1419,-10465,-23,-88,-3,-1443,-197,-65,-15,-111,-1694,-986,-27,-190,-33,-2,-98], [0,-3740,-403,-5565,-839,-695], [1,3,3630], [0,3631,0,3632,10], -[0,-10466,-10467,-2802,-5567,-10468,-10469,-1300,-1574,-1203,-183,-773,-842,-3741,-163,-117,-10470,-624,-1055,-58,-1057, --368,-26,-225,-1940,-10471,-10472,-10473,-40,-725,-628,-41,-1644,-5568,-28,-2800,-460,-101,-797,-1093,-10474,-23,-10475, --227,-2161,-260,-92,-678,-188,-152,-325,-1743,-595,-10476,-10477,-641,-362,-2803,-1995,-16,-10478,-10479,-5569,-10480, +[0,-10466,-10467,-2802,-5567,-10468,-10469,-1300,-1574,-1203,-183,-773,-842,-3741,-163,-117,-10470,-624,-1055,-58,-1057,-368,-26,-225,-1940,-10471,-10472,-10473,-40,-725,-628,-41,-1644,-5568,-28,-2800,-460,-101,-797,-1093,-10474,-23,-10475,-227,-2161,-260,-92,-678,-188,-152,-325,-1743,-595,-10476,-10477,-641,-362,-2803,-1995,-16,-10478,-10479,-5569,-10480, -2567,-161,-2804,-5570,-10481,-125,-564,-1713,-205,-262,-263,-3742], [0,-5571,-37,-10482,-1162,-10483,-1410,-839,-2158,-10484], [1,3,3634], @@ -6995,8 +4460,7 @@ true, [0,-5378], [1,3,3649], [0,0,3650,3651,4], -[0,-11,-300,-3476,-21,-5573,-191,-471,-29,-1781,-5,-2787,-775,-117,-55,-41,-28,-8,-4,-7,-14,-275,-2807,-2225,-1260,-177, --57,-33,-44,-2], +[0,-11,-300,-3476,-21,-5573,-191,-471,-29,-1781,-5,-2787,-775,-117,-55,-41,-28,-8,-4,-7,-14,-275,-2807,-2225,-1260,-177,-57,-33,-44,-2], [0,-45,-4722,-3267,-1013,-612,-2556,-2808], [1,3,3653], [0,3654,3655,3656,9], @@ -7009,10 +4473,8 @@ true, [1,3,3661], [0,3662,3663,3664,11], [0,-820,-10490,-2813,-38,-559], -[0,-11,-21,-2512,-10491,-5577,-22,-19,-157,-96,-625,-158,-26,-141,-1214,-369,-1,-12,-25,-10492,-271,-10493,-374,-65,-4, --3745,-907,-394,-880,-154,-397,-214,-2,-18,-93,-173,-10494,-692], -[0,-4169,-2,-45,-18,-31,-24,-2636,-10495,-1265,-3594,-10496,-10497,-10498,-10499,-3594,-10500,-5276,-5277,-10501,-5280, --10502,-10503,-5282,-5279,-5278,-5281,-10504,-1,-4,-5578,-370,-10505], +[0,-11,-21,-2512,-10491,-5577,-22,-19,-157,-96,-625,-158,-26,-141,-1214,-369,-1,-12,-25,-10492,-271,-10493,-374,-65,-4,-3745,-907,-394,-880,-154,-397,-214,-2,-18,-93,-173,-10494,-692], +[0,-4169,-2,-45,-18,-31,-24,-2636,-10495,-1265,-3594,-10496,-10497,-10498,-10499,-3594,-10500,-5276,-5277,-10501,-5280,-10502,-10503,-5282,-5279,-5278,-5281,-10504,-1,-4,-5578,-370,-10505], [1,3,3666], [0,3667,3668,3669,4], [0,-59,-222], @@ -7042,14 +4504,12 @@ true, [1,3,3692], [0,3693,3694,3695,8], [0,-505,-20,-117,-386,-323,-41,-259,-92,-10513,-646,-16,-1266], -[0,-63,-925,-2055,-749,-618,-1177,-1867,-1024,-191,-29,-652,-927,-3221,-5,-1353,-140,-22,-19,-1056,-26,-1,-9,-75,-25, --3307,-10,-8,-5586,-794,-635,-10514,-17,-548,-4,-7,-122,-139,-57,-2,-18], +[0,-63,-925,-2055,-749,-618,-1177,-1867,-1024,-191,-29,-652,-927,-3221,-5,-1353,-140,-22,-19,-1056,-26,-1,-9,-75,-25,-3307,-10,-8,-5586,-794,-635,-10514,-17,-548,-4,-7,-122,-139,-57,-2,-18], [0,-18,-107,-2,-10515,-214,-18,-2792,-535], [1,3,3697], [0,3698,3699,3700,5], [0,-3467,-20,-117,-23,-361,-92,-126,-1266], -[0,-10516,-5256,-143,-651,-927,-5,-1137,-526,-13,-141,-1,-10,-66,-17,-3,-548,-1438,-4,-7,-27,-214,-199,-1268,-2,-73,-3128, --1132,-1475,-18], +[0,-10516,-5256,-143,-651,-927,-5,-1137,-526,-13,-141,-1,-10,-66,-17,-3,-548,-1438,-4,-7,-27,-214,-199,-1268,-2,-73,-3128,-1132,-1475,-18], [0,-18,-107,-2,-576,-619,-577,-2792,-535,-2156,-214,-2974,-10517,-2731], [1,3,3702], [0,3703,3704,7,6], @@ -7111,8 +4571,7 @@ true, [0,-1331,-921,-1185,-2689,-3581,-3755], [1,3,3760], [0,0,3761,3762,4], -[0,-48,-11,-156,-300,-2035,-21,-137,-49,-63,-10539,-207,-62,-237,-10540,-10541,-10542,-10543,-5456,-3141,-3142,-96,-1,-12, --10,-2816,-4,-1693,-14,-417,-134,-177,-2,-30,-1722,-10544], +[0,-48,-11,-156,-300,-2035,-21,-137,-49,-63,-10539,-207,-62,-237,-10540,-10541,-10542,-10543,-5456,-3141,-3142,-96,-1,-12,-10,-2816,-4,-1693,-14,-417,-134,-177,-2,-30,-1722,-10544], [0,-1644,-766,-10545], [1,3,3764], [0,0,3765,3766,11], @@ -7154,8 +4613,7 @@ true, [0,-3454,-116,-3757,-10560,-5602,-759,-836,-5603], [1,3,3802], [0,0,3803,7,11], -[0,-48,-11,-21,-137,-297,-298,-618,-29,-5,-22,-19,-10561,-10562,-91,-86,-96,-2210,-1,-12,-246,-783,-9,-25,-64,-186,-724, --151,-10,-10563,-8,-17,-4,-7,-122,-10564,-2,-18,-93], +[0,-48,-11,-21,-137,-297,-298,-618,-29,-5,-22,-19,-10561,-10562,-91,-86,-96,-2210,-1,-12,-246,-783,-9,-25,-64,-186,-724,-151,-10,-10563,-8,-17,-4,-7,-122,-10564,-2,-18,-93], [1,3,3805], [0,0,3806,7,4], [0,-10565,-10566,-10567,-10568,-15], @@ -7191,8 +4649,7 @@ true, [0,-402,-696,-3760], [1,3,3838], [0,0,3839,3840,8], -[0,-829,-21,-5611,-10594,-10595,-238,-62,-237,-206,-758,-13,-1,-83,-9,-75,-67,-79,-675,-138,-588,-213,-187,-414,-731,-861, --1237,-2758,-3,-14,-2042,-80,-27,-190], +[0,-829,-21,-5611,-10594,-10595,-238,-62,-237,-206,-758,-13,-1,-83,-9,-75,-67,-79,-675,-138,-588,-213,-187,-414,-731,-861,-1237,-2758,-3,-14,-2042,-80,-27,-190], [0,-545,-3365,-52,-131], [1,3,3842], [0,3843,3844,7,4], @@ -7213,8 +4670,7 @@ true, [0,3858,3859,3860,8], [0,-5500,-226,-460,-1554,-288,-2797], [0,-5,-51,-110,-5613,-379,-82,-34], -[0,-10601,-708,-3607,-1856,-660,-1555,-767,-655,-5614,-3606,-303,-28,-2231,-3761,-661,-532,-2143,-92,-2707,-10602,-5615, --1022,-2100,-2001,-136,-208,-2230,-10603,-171,-3762,-402], +[0,-10601,-708,-3607,-1856,-660,-1555,-767,-655,-5614,-3606,-303,-28,-2231,-3761,-661,-532,-2143,-92,-2707,-10602,-5615,-1022,-2100,-2001,-136,-208,-2230,-10603,-171,-3762,-402], [1,3,3862], [0,3863,3864,3865,11], [0,-35,-225,-10604,-10605], @@ -7224,8 +4680,7 @@ true, [0,3868,3869,3870,4], [0,-188,-10608,-44], [0,-5,-1014,-22,-19,-1,-3763,-9,-115,-67,-4,-124,-2], -[0,-10609,-10610,-10611,-10612,-5616,-10613,-349,-910,-4176,-10614,-10615,-5576,-10616,-1771,-10617,-10618,-10619,-10620, --10621,-10622,-10623,-10624,-46,-10625,-10626,-10627,-10628], +[0,-10609,-10610,-10611,-10612,-5616,-10613,-349,-910,-4176,-10614,-10615,-5576,-10616,-1771,-10617,-10618,-10619,-10620,-10621,-10622,-10623,-10624,-46,-10625,-10626,-10627,-10628], [1,3,3872], [0,3873,3874,3875,9], [0,-528,-3764], @@ -7234,20 +4689,16 @@ true, [1,3,3877], [0,3878,3879,3880,8], [0,-2800,-10638], -[0,-10639,-71,-10640,-3765,-5,-5618,-1337,-2568,-2093,-279,-750,-10641,-2823,-43,-149,-26,-118,-5568,-1952,-5619,-165, --10642,-10643,-5620,-3,-2691,-734,-197,-976,-152,-1110,-5621,-4,-181,-7,-1123,-27,-161,-2,-525], +[0,-10639,-71,-10640,-3765,-5,-5618,-1337,-2568,-2093,-279,-750,-10641,-2823,-43,-149,-26,-118,-5568,-1952,-5619,-165,-10642,-10643,-5620,-3,-2691,-734,-197,-976,-152,-1110,-5621,-4,-181,-7,-1123,-27,-161,-2,-525], [0,-1507,-100,-10644,-351,-10645], [1,3,3882], [0,3883,3884,3885,5], [0,-2824,-10646,-10647,-10648,-10649,-10650,-3569,-2367,-5622,-5623,-10651,-215], -[0,-5624,-1164,-623,-747,-264,-5,-10652,-3492,-2801,-279,-2046,-51,-194,-110,-114,-163,-43,-10653,-10654,-10655,-232,-627, --787,-40,-628,-2655,-487,-197,-188,-415,-866,-10656,-1111,-2521,-198,-111,-27,-10657,-379,-10658,-1129,-155,-2,-34], -[0,-103,-388,-1533,-1874,-387,-200,-2825,-111,-654,-2232,-2233,-905,-2103,-1155,-1548,-2712,-10659,-10660,-5625,-10661, --194,-690,-188,-3764], +[0,-5624,-1164,-623,-747,-264,-5,-10652,-3492,-2801,-279,-2046,-51,-194,-110,-114,-163,-43,-10653,-10654,-10655,-232,-627,-787,-40,-628,-2655,-487,-197,-188,-415,-866,-10656,-1111,-2521,-198,-111,-27,-10657,-379,-10658,-1129,-155,-2,-34], +[0,-103,-388,-1533,-1874,-387,-200,-2825,-111,-654,-2232,-2233,-905,-2103,-1155,-1548,-2712,-10659,-10660,-5625,-10661,-194,-690,-188,-3764], [1,3,3887], [0,0,3888,3889,4], -[0,-32,-288,-14,-369,-803,-38,-10662,-5626,-976,-160,-182,-11,-157,-869,-3045,-1498,-21,-10663,-10664,-207,-206,-237, --2732], +[0,-32,-288,-14,-369,-803,-38,-10662,-5626,-976,-160,-182,-11,-157,-869,-3045,-1498,-21,-10663,-10664,-207,-206,-237,-2732], [0,-10665,-52,-2560,-277], [1,3,3891], [0,0,3892,3893,4], @@ -7266,8 +4717,7 @@ true, [0,3905,3906,3907,8], [0,-101,-2214,-10676,-5627], [0,-10677,-5518,-308,-10678,-2343,-1640,-671,-88,-3,-886,-70,-1823], -[0,-5628,-5629,-455,-479,-399,-42,-1026,-10679,-10680,-1640,-10681,-569,-116,-340,-4947,-45,-3184,-278,-1304,-99,-10682, --166,-74,-763,-2826,-914,-277,-886,-262,-4609], +[0,-5628,-5629,-455,-479,-399,-42,-1026,-10679,-10680,-1640,-10681,-569,-116,-340,-4947,-45,-3184,-278,-1304,-99,-10682,-166,-74,-763,-2826,-914,-277,-886,-262,-4609], [1,3,3909], [0,3910,3911,7,9], [0,-10683,-10684,-1664,-5608,-801,-1687], @@ -7395,8 +4845,7 @@ true, [0,-268,-54,-42,-700,-165,-2752], [1,3,4034], [0,34,4035,4036,11], -[0,-49,-5637,-63,-297,-298,-618,-1,-83,-9,-75,-67,-129,-411,-54,-546,-304,-1072,-1415,-512,-630,-10,-79,-138,-213,-187, --343,-3,-122], +[0,-49,-5637,-63,-297,-298,-618,-1,-83,-9,-75,-67,-129,-411,-54,-546,-304,-1072,-1415,-512,-630,-10,-79,-138,-213,-187,-343,-3,-122], [0,-268,-79,-54,-76,-401,-473,-5638], [1,3,4038], [0,4039,4040,209,10], @@ -7945,9 +5394,7 @@ true, [0,-306,-611,-3802,-1548,-10846,-1350,-168,-294], [1,3,4583], [0,4584,4585,4586,4], -[0,-5700,-10847,-10848,-10849,-274,-10850,-10851,-522,-1772,-2596,-3803,-3804,-3805,-3806,-3807,-3808,-3809,-10852,-5701, --10853,-5702,-10854,-10855,-3810,-3811,-10856,-10857,-3428,-10858,-3812,-3813,-3814,-3815,-3816,-5703,-5108,-468,-10859, --10860], +[0,-5700,-10847,-10848,-10849,-274,-10850,-10851,-522,-1772,-2596,-3803,-3804,-3805,-3806,-3807,-3808,-3809,-10852,-5701,-10853,-5702,-10854,-10855,-3810,-3811,-10856,-10857,-3428,-10858,-3812,-3813,-3814,-3815,-3816,-5703,-5108,-468,-10859,-10860], [0,-77,-238,-62,-206,-1392,-10861,-14,-97,-39,-379], [0,-99,-42,-399,-1764,-830,-293,-10862,-577,-224,-1186,-1420,-274,-135], [1,3,4588], @@ -7957,8 +5404,7 @@ true, [1,3,4592], [0,4593,4594,4595,8], [0,-88,-2238,-130,-991,-112], -[0,-366,-936,-96,-282,-110,-13,-10866,-284,-1393,-1063,-5196,-5193,-1,-12,-847,-1633,-41,-54,-3458,-164,-240,-629,-584, --511,-5706,-341,-304,-789,-3660,-10,-5176,-17,-3,-1439,-519,-15,-4,-16,-27,-2,-250,-18,-173], +[0,-366,-936,-96,-282,-110,-13,-10866,-284,-1393,-1063,-5196,-5193,-1,-12,-847,-1633,-41,-54,-3458,-164,-240,-629,-584,-511,-5706,-341,-304,-789,-3660,-10,-5176,-17,-3,-1439,-519,-15,-4,-16,-27,-2,-250,-18,-173], [0,-247,-519,-277,-31], [1,3,4597], [0,4598,4599,155,5], @@ -8048,8 +5494,7 @@ true, [0,-174,-21,-1167,-3473,-162,-48,-11,-91,-86,-42,-1,-485,-9,-145,-8,-489], [1,3,4683], [0,4684,4685,4686,5], -[0,-2847,-114,-10913,-10914,-10915,-10916,-10917,-10918,-10919,-10920,-101,-5723,-361,-5724,-233,-863,-976,-167,-1541, --139,-2000,-10921,-10922], +[0,-2847,-114,-10913,-10914,-10915,-10916,-10917,-10918,-10919,-10920,-101,-5723,-361,-5724,-233,-863,-976,-167,-1541,-139,-2000,-10921,-10922], [0,-10923,-3439,-109,-898,-421,-651,-71,-5,-5618,-279,-10924,-43,-13,-231,-1746,-1,-10925,-10926,-10,-17,-3,-27,-33,-2], [0,-892,-2496,-2199,-53,-4208], [1,3,4688], @@ -8058,8 +5503,7 @@ true, [0,-114,-60,-2322,-309,-1,-54,-957,-546,-358,-341,-304,-512,-5725,-630,-247,-679,-1261,-10927,-3104,-27,-3570,-10928,-112], [1,3,4692], [0,0,4693,4694,4], -[0,-24,-150,-28,-3706,-78,-3,-1,-23,-14,-81,-177,-540,-940,-58,-247,-2,-413,-10929,-71,-5344,-10930,-1329,-10931,-10932, --75,-238,-10933,-9,-67,-83,-77,-19,-62,-22], +[0,-24,-150,-28,-3706,-78,-3,-1,-23,-14,-81,-177,-540,-940,-58,-247,-2,-413,-10929,-71,-5344,-10930,-1329,-10931,-10932,-75,-238,-10933,-9,-67,-83,-77,-19,-62,-22], [0,-2074,-400], [1,3,4696], [0,218,0,7,4], @@ -8084,8 +5528,7 @@ true, [0,-8,-1,-7,-285,-57,-33,-124,-2,-29,-5,-169,-140,-191,-145,-9,-2848,-19,-10936,-22], [1,3,4717], [0,0,4718,4719,5], -[0,-10937,-1313,-471,-614,-5,-1188,-105,-774,-10938,-10939,-87,-1,-28,-78,-800,-415,-5726,-1570,-4,-470,-2,-289,-10940, --30,-5727,-205,-263], +[0,-10937,-1313,-471,-614,-5,-1188,-105,-774,-10938,-10939,-87,-1,-28,-78,-800,-415,-5726,-1570,-4,-470,-2,-289,-10940,-30,-5727,-205,-263], [0,-855,-113,-306,-103,-1194,-53,-442,-5728,-5729,-10941,-10942,-5607,-3596,-2136,-353], [1,3,4721], [0,4722,29,4723,6], @@ -8098,8 +5541,7 @@ true, [1,3,4729], [0,4730,4731,4732,6], [0,-1833,-488], -[0,-49,-63,-498,-50,-530,-77,-62,-206,-330,-3823,-4819,-10948,-5,-1156,-1486,-105,-1,-25,-911,-1065,-56,-1424,-10,-3597, --78,-17,-345,-391,-4,-470,-14,-328,-33,-2,-84,-30], +[0,-49,-63,-498,-50,-530,-77,-62,-206,-330,-3823,-4819,-10948,-5,-1156,-1486,-105,-1,-25,-911,-1065,-56,-1424,-10,-3597,-78,-17,-345,-391,-4,-470,-14,-328,-33,-2,-84,-30], [0,-2354,-31,-266,-74,-488,-3824], [1,3,4734], [0,0,4735,4736,9], @@ -8121,8 +5563,7 @@ true, [1,3,4751], [0,4752,4753,4754,5], [0,-593,-3042], -[0,-150,-8,-10,-259,-407,-1,-232,-18,-1219,-1987,-4,-26,-48,-86,-247,-11,-17,-65,-10956,-49,-134,-10957,-21,-342,-9,-12, --63,-1025], +[0,-150,-8,-10,-259,-407,-1,-232,-18,-1219,-1987,-4,-26,-48,-86,-247,-11,-17,-65,-10956,-49,-134,-10957,-21,-342,-9,-12,-63,-1025], [0,-18,-31,-831], [1,3,4756], [0,4757,4758,4759,5], @@ -8142,8 +5583,7 @@ true, [1,3,4771], [0,4772,4773,4774,4], [0,-1833,-2354,-3094,-1998], -[0,-49,-63,-498,-290,-50,-77,-62,-206,-330,-3823,-747,-5,-47,-89,-1156,-1486,-105,-110,-1,-25,-911,-1065,-56,-10,-17,-391, --494,-470,-6,-36,-14,-328,-33,-2,-84,-30], +[0,-49,-63,-498,-290,-50,-77,-62,-206,-330,-3823,-747,-5,-47,-89,-1156,-1486,-105,-110,-1,-25,-911,-1065,-56,-10,-17,-391,-494,-470,-6,-36,-14,-328,-33,-2,-84,-30], [0,-3043,-31,-6,-74,-266], [1,3,4776], [0,0,4777,4778,5], @@ -8151,8 +5591,7 @@ true, [0,-31,-615,-3829,-3818,-1301,-1158,-653,-3830,-10959], [1,3,4780], [0,0,4781,4782,10], -[0,-10,-547,-79,-44,-1,-7,-14,-4,-55,-978,-2,-65,-373,-435,-389,-1195,-588,-10960,-5485,-5369,-676,-10961,-10962,-138, --10963,-2507,-10964], +[0,-10,-547,-79,-44,-1,-7,-14,-4,-55,-978,-2,-65,-373,-435,-389,-1195,-588,-10960,-5485,-5369,-676,-10961,-10962,-138,-10963,-2507,-10964], [0,-2242,-5733,-322,-31,-266,-292,-1354,-265], [1,3,4784], [0,4785,0,4786,5], @@ -8165,14 +5604,12 @@ true, [1,3,4792], [0,4793,4794,4795,9], [0,-10969,-3042,-23,-4282,-1266], -[0,-49,-63,-5,-26,-407,-141,-295,-3758,-1,-5312,-1423,-10,-8,-17,-374,-65,-4,-642,-5735,-685,-7,-134,-154,-2,-18,-93, --10970], +[0,-49,-63,-5,-26,-407,-141,-295,-3758,-1,-5312,-1423,-10,-8,-17,-374,-65,-4,-642,-5735,-685,-7,-134,-154,-2,-18,-93,-10970], [0,-18,-107,-31,-342], [1,3,4797], [0,4798,4799,4800,4], [0,-10971,-58,-386,-1987], -[0,-50,-315,-2183,-71,-5,-2851,-43,-369,-1,-3556,-9,-1866,-2852,-338,-56,-3,-38,-4284,-3826,-7,-10972,-602,-177,-2,-84, --3799], +[0,-50,-315,-2183,-71,-5,-2851,-43,-369,-1,-3556,-9,-1866,-2852,-338,-56,-3,-38,-4284,-3826,-7,-10972,-602,-177,-2,-84,-3799], [0,-1987,-10973,-31,-5736,-834], [1,3,4802], [0,4803,4804,4805,5], @@ -8195,8 +5632,7 @@ true, [1,3,4820], [0,4821,4822,4823,4], [0,-3303,-35,-586,-1081,-1083,-361], -[0,-49,-63,-50,-169,-364,-264,-10977,-29,-651,-5,-1015,-475,-163,-1,-12,-25,-40,-486,-56,-10,-8,-17,-10978,-152,-1316, --1570,-4,-123,-57,-2,-84,-205], +[0,-49,-63,-50,-169,-364,-264,-10977,-29,-651,-5,-1015,-475,-163,-1,-12,-25,-40,-486,-56,-10,-8,-17,-10978,-152,-1316,-1570,-4,-123,-57,-2,-84,-205], [0,-5283,-596,-356,-103,-388,-218,-40,-1071,-2511,-1884,-938,-32,-584,-889,-205,-368], [1,3,4825], [0,4826,4827,4828,4], @@ -8240,8 +5676,7 @@ true, [0,-277,-1078,-2243], [1,3,4865], [0,39,4866,4867,5], -[0,-10998,-11,-3199,-398,-170,-449,-21,-132,-174,-207,-77,-62,-206,-5,-22,-19,-105,-777,-55,-582,-1,-185,-12,-246,-9, --5748,-10,-5749,-10999,-11000,-11001,-11002,-17,-4,-7,-14,-27,-2,-30], +[0,-10998,-11,-3199,-398,-170,-449,-21,-132,-174,-207,-77,-62,-206,-5,-22,-19,-105,-777,-55,-582,-1,-185,-12,-246,-9,-5748,-10,-5749,-10999,-11000,-11001,-11002,-17,-4,-7,-14,-27,-2,-30], [0,-1079,-1885,-1078,-3837,-2855,-2243,-3838,-11003], [1,3,4869], [0,0,4870,4871,4], @@ -8264,8 +5699,7 @@ true, [1,3,4887], [0,0,4888,4889,6], [0,-43,-28,-172,-33,-124,-2,-471,-5,-329], -[0,-292,-1350,-11015,-3841,-2171,-5348,-2618,-3735,-5557,-1349,-5556,-11016,-5549,-5551,-1193,-5558,-621,-5550,-265, --11017,-5752,-2617], +[0,-292,-1350,-11015,-3841,-2171,-5348,-2618,-3735,-5557,-1349,-5556,-11016,-5549,-5551,-1193,-5558,-621,-5550,-265,-11017,-5752,-2617], [1,3,4891], [0,4892,4893,4894,5], [0,-5753,-5380,-288,-204,-5754,-1226,-828,-5755,-3732,-5657], @@ -8304,8 +5738,7 @@ true, [0,4926,4927,4928,5], [0,-11035,-11036,-11037,-11038,-11039,-11040,-11041], [0,-5,-475,-1,-11042,-4,-2], -[0,-1194,-216,-11043,-11044,-711,-2808,-2858,-100,-3643,-11045,-1323,-11046,-422,-1161,-113,-53,-442,-2244,-2245,-2145, --1162,-103,-388,-889,-2158,-1886,-306,-46,-2633], +[0,-1194,-216,-11043,-11044,-711,-2808,-2858,-100,-3643,-11045,-1323,-11046,-422,-1161,-113,-53,-442,-2244,-2245,-2145,-1162,-103,-388,-889,-2158,-1886,-306,-46,-2633], [1,3,4930], [0,0,14,4931,10], [0,-2175,-168,-1846,-2859,-1172,-193,-1064,-5757], @@ -8330,10 +5763,8 @@ true, [0,0,29,7,5], [1,3,4952], [0,4953,4954,4955,5], -[0,-11055,-841,-719,-11056,-20,-2326,-1616,-1934,-5025,-528,-793,-2791,-11057,-5090,-987,-879,-2429,-2575,-395,-11058, --215,-2473,-890,-205,-11059], -[0,-1543,-1164,-623,-1506,-5,-47,-11060,-11061,-5760,-279,-4775,-475,-11062,-51,-1209,-627,-5761,-64,-186,-549,-2392, --1110,-4,-6,-3845,-27,-139,-33,-2,-34], +[0,-11055,-841,-719,-11056,-20,-2326,-1616,-1934,-5025,-528,-793,-2791,-11057,-5090,-987,-879,-2429,-2575,-395,-11058,-215,-2473,-890,-205,-11059], +[0,-1543,-1164,-623,-1506,-5,-47,-11060,-11061,-5760,-279,-4775,-475,-11062,-51,-1209,-627,-5761,-64,-186,-549,-2392,-1110,-4,-6,-3845,-27,-139,-33,-2,-34], [0,-6,-37,-904,-1295,-127,-299,-494,-327,-11063,-926,-133,-193], [1,3,4957], [0,0,4958,4959,11], @@ -8350,8 +5781,7 @@ true, [0,4969,4970,4971,11], [0,-841,-510,-167,-5762,-496], [0,-412,-1644,-195], -[0,-2058,-2548,-1755,-1756,-37,-316,-299,-543,-352,-2549,-195,-1508,-2059,-45,-1294,-144,-353,-495,-2060,-392,-2061,-1256, --1509,-1295,-178,-445,-102,-1011,-1716,-2062], +[0,-2058,-2548,-1755,-1756,-37,-316,-299,-543,-352,-2549,-195,-1508,-2059,-45,-1294,-144,-353,-495,-2060,-392,-2061,-1256,-1509,-1295,-178,-445,-102,-1011,-1716,-2062], [1,3,4973], [0,4974,0,4975,8], [0,-11067,-133], @@ -8366,15 +5796,11 @@ true, [0,-5629,-11073,-308,-1829,-349,-278,-108,-272,-904,-6,-11074,-886,-440,-2,-537,-262,-5764], [1,3,4985], [0,0,4986,4987,8], -[0,-59,-179,-91,-1207,-5765,-5766,-775,-580,-321,-5767,-429,-11075,-11076,-11077,-11078,-11079,-11080,-11081,-11082, --11083,-11084,-11085,-11086,-11087,-11088,-1389,-4128,-1,-11089,-953,-28,-54,-164,-240,-511,-11090,-11091,-119,-72,-591, --7,-14,-275,-466,-11092,-5018,-877,-807,-3772,-393,-1710], +[0,-59,-179,-91,-1207,-5765,-5766,-775,-580,-321,-5767,-429,-11075,-11076,-11077,-11078,-11079,-11080,-11081,-11082,-11083,-11084,-11085,-11086,-11087,-11088,-1389,-4128,-1,-11089,-953,-28,-54,-164,-240,-511,-11090,-11091,-119,-72,-591,-7,-14,-275,-466,-11092,-5018,-877,-807,-3772,-393,-1710], [0,-3050,-1078,-1885,-11093,-567], [1,3,4989], [0,0,4990,4991,4], -[0,-1898,-1899,-1900,-2285,-2945,-398,-137,-366,-1373,-153,-307,-5,-47,-89,-22,-19,-1020,-11094,-270,-407,-87,-1,-246,-9, --145,-64,-186,-1635,-11095,-3311,-11096,-54,-546,-164,-240,-584,-1951,-304,-11097,-2346,-789,-413,-8,-176,-248,-3062, --391,-4,-5768,-6,-36,-80,-689,-221,-1468,-33,-2,-104,-923,-73,-1531,-2456], +[0,-1898,-1899,-1900,-2285,-2945,-398,-137,-366,-1373,-153,-307,-5,-47,-89,-22,-19,-1020,-11094,-270,-407,-87,-1,-246,-9,-145,-64,-186,-1635,-11095,-3311,-11096,-54,-546,-164,-240,-584,-1951,-304,-11097,-2346,-789,-413,-8,-176,-248,-3062,-391,-4,-5768,-6,-36,-80,-689,-221,-1468,-33,-2,-104,-923,-73,-1531,-2456], [0,-11098,-5769,-11099,-3846,-1887,-95,-352,-3819,-2052,-45,-107,-24,-31,-423,-616,-6,-73,-184,-221,-131,-2], [1,3,4993], [0,220,4994,4995,5], @@ -8387,8 +5813,7 @@ true, [0,-5082,-11103,-1820,-11104,-11105,-45,-144,-2], [1,3,5002], [0,5003,5004,221,5], -[0,-312,-203,-5770,-152,-125,-20,-35,-44,-23,-16,-881,-1497,-69,-5771,-690,-3847,-11106,-2860,-2839,-11107,-3848,-5772, --5773,-5774,-5775,-3849,-5776,-5777], +[0,-312,-203,-5770,-152,-125,-20,-35,-44,-23,-16,-881,-1497,-69,-5771,-690,-3847,-11106,-2860,-2839,-11107,-3848,-5772,-5773,-5774,-5775,-3849,-5776,-5777], [0,-8,-7,-199,-57,-489,-1532,-130,-2,-1356,-29,-5,-11108,-698,-17,-169,-143,-140,-2861,-11109,-2205,-3282,-3850], [1,3,5006], [0,5007,5008,5009,5], @@ -8398,8 +5823,7 @@ true, [1,3,5011], [0,5012,5013,5014,4], [0,-11114,-11115,-35,-5779,-1665,-11116,-11117,-11118,-11119], -[0,-11120,-297,-925,-298,-109,-754,-169,-11121,-11122,-71,-5,-11123,-279,-22,-19,-13,-239,-1,-12,-3,-15,-4,-122,-1123,-27, --33,-82,-124,-2,-125], +[0,-11120,-297,-925,-298,-109,-754,-169,-11121,-11122,-71,-5,-11123,-279,-22,-19,-13,-239,-1,-12,-3,-15,-4,-122,-1123,-27,-33,-82,-124,-2,-125], [0,-688,-2245,-11124,-11125], [1,3,5016], [0,0,5017,7,8], @@ -8466,9 +5890,7 @@ true, [1,3,5078], [0,5079,5080,5081,5], [0,-1917,-323,-4155,-11142,-1668,-3080,-1128,-11143], -[0,-11144,-179,-162,-2301,-96,-1603,-1920,-1379,-11145,-775,-937,-3664,-253,-2303,-282,-13,-5786,-508,-26,-141,-1,-785, --851,-271,-3017,-32,-1648,-960,-1232,-310,-1423,-342,-79,-138,-588,-187,-2758,-637,-676,-517,-219,-1092,-3746,-3,-27, --190,-154,-199,-2,-1130,-438,-73,-4347,-11146,-1132,-888,-2008,-1475,-18,-173,-524], +[0,-11144,-179,-162,-2301,-96,-1603,-1920,-1379,-11145,-775,-937,-3664,-253,-2303,-282,-13,-5786,-508,-26,-141,-1,-785,-851,-271,-3017,-32,-1648,-960,-1232,-310,-1423,-342,-79,-138,-588,-187,-2758,-637,-676,-517,-219,-1092,-3746,-3,-27,-190,-154,-199,-2,-1130,-438,-73,-4347,-11146,-1132,-888,-2008,-1475,-18,-173,-524], [0,-4220,-73,-2510,-131,-127,-102,-53], [1,3,5083], [0,5084,156,5085,4], @@ -8477,8 +5899,7 @@ true, [1,3,5087], [0,5088,5089,7,4], [0,-11147,-540,-58,-11148,-11149,-72,-11150,-112,-3135,-11151], -[0,-11152,-11153,-55,-40,-11154,-11155,-11156,-11157,-11158,-11159,-5787,-5788,-5789,-11160,-5790,-5791,-11161,-11162, --227,-592,-11163,-7,-5792,-4483], +[0,-11152,-11153,-55,-40,-11154,-11155,-11156,-11157,-11158,-11159,-5787,-5788,-5789,-11160,-5790,-5791,-11161,-11162,-227,-592,-11163,-7,-5792,-4483], [1,3,5091], [0,5092,5093,5094,5], [0,-59,-11164,-167], @@ -8534,9 +5955,7 @@ true, [1,3,5143], [0,5144,5145,5146,4], [0,-41,-152], -[0,-11,-2020,-1910,-153,-120,-307,-2865,-29,-11183,-5,-11184,-47,-89,-2670,-935,-86,-96,-2976,-1607,-2310,-301,-430,-1613, --778,-141,-1214,-295,-210,-945,-484,-1,-1221,-3857,-851,-271,-41,-342,-964,-8,-1660,-1086,-11185,-374,-1980,-38,-1451, --493,-3084,-805,-392,-11186,-6,-2409,-1255,-36,-686,-4375,-126,-2420,-80,-467,-16,-880, +[0,-11,-2020,-1910,-153,-120,-307,-2865,-29,-11183,-5,-11184,-47,-89,-2670,-935,-86,-96,-2976,-1607,-2310,-301,-430,-1613,-778,-141,-1214,-295,-210,-945,-484,-1,-1221,-3857,-851,-271,-41,-342,-964,-8,-1660,-1086,-11185,-374,-1980,-38,-1451,-493,-3084,-805,-392,-11186,-6,-2409,-1255,-36,-686,-4375,-126,-2420,-80,-467,-16,-880, -154,-559,-397,-2,-438,-3858,-18,-523,-173,-2455,-3130], [0,-8,-31,-1023,-2830,-107], [1,3,5148], @@ -8557,44 +5976,33 @@ true, [1,3,5163], [0,5164,5165,7,5], [0,-841,-20,-4690,-4691,-288,-2704,-139], -[0,-48,-11,-21,-137,-50,-1318,-663,-297,-298,-5,-86,-5797,-26,-1,-12,-246,-1866,-145,-25,-56,-8,-5796,-4,-7,-122,-16,-2, --84], +[0,-48,-11,-21,-137,-50,-1318,-663,-297,-298,-5,-86,-5797,-26,-1,-12,-246,-1866,-145,-25,-56,-8,-5796,-4,-7,-122,-16,-2,-84], [1,3,5167], [0,5168,5169,7,6], [0,-5,-1578,-858,-1103,-468], [0,-11,-11188,-2572,-1880,-487,-11189,-5798], [1,3,5171], [0,5172,5173,5174,4], -[0,-11190,-11191,-11192,-11193,-11194,-11195,-11196,-11197,-11198,-11199,-11200,-11201,-11202,-11203,-11204,-11205,-11206, --11207,-11208,-11209,-11210,-11211,-11212,-11213,-11214,-11215,-11216], +[0,-11190,-11191,-11192,-11193,-11194,-11195,-11196,-11197,-11198,-11199,-11200,-11201,-11202,-11203,-11204,-11205,-11206,-11207,-11208,-11209,-11210,-11211,-11212,-11213,-11214,-11215,-11216], [0,-11217,-11218,-11219,-11220,-530,-77,-2697,-62,-206,-1156,-1,-11221,-681,-14,-417,-1334,-2850,-561,-2,-5799,-30], [0,-292,-11222,-11223,-621,-1572,-1193,-3735,-2248,-2727,-2726], [1,3,5176], [0,0,5177,7,6], -[0,-11,-1138,-4512,-716,-11224,-578,-3442,-2035,-995,-3197,-1284,-1140,-137,-3178,-539,-450,-5800,-2866,-757,-4801,-11225, --3861,-2867,-5,-105,-202,-11226,-1388,-335,-1211,-1839,-11227,-408,-1,-1403,-786,-848,-226,-1655,-260,-1437,-863,-11228, --594,-1832,-494,-3862,-4,-6,-36,-598,-5801,-1544,-397,-1142,-214,-2,-30,-73,-3716,-263], +[0,-11,-1138,-4512,-716,-11224,-578,-3442,-2035,-995,-3197,-1284,-1140,-137,-3178,-539,-450,-5800,-2866,-757,-4801,-11225,-3861,-2867,-5,-105,-202,-11226,-1388,-335,-1211,-1839,-11227,-408,-1,-1403,-786,-848,-226,-1655,-260,-1437,-863,-11228,-594,-1832,-494,-3862,-4,-6,-36,-598,-5801,-1544,-397,-1142,-214,-2,-30,-73,-3716,-263], [1,3,5179], [0,0,0,5180,6], [0,-821,-11229,-11230,-895,-3863,-3864,-31,-193,-420,-3865,-45,-2,-11231,-2360], [1,3,5182], [0,5183,5184,5185,4], [0,-2360], -[0,-498,-2183,-245,-319,-120,-307,-47,-89,-22,-19,-26,-141,-1,-12,-25,-64,-186,-1948,-342,-78,-4,-6,-36,-1189,-154,-4626, --33,-172,-2,-30,-18,-93,-173], +[0,-498,-2183,-245,-319,-120,-307,-47,-89,-22,-19,-26,-141,-1,-12,-25,-64,-186,-1948,-342,-78,-4,-6,-36,-1189,-154,-4626,-33,-172,-2,-30,-18,-93,-173], [0,-6,-2360,-31,-193,-420,-11232,-3863,-3864,-3866], [1,3,5187], [0,5188,5189,5190,4], [0,-20,-5802,-11233,-11234,-2423,-2039,-1972,-1096,-11235], [0,-15,-59,-54,-27,-551,-55,-164,-5170,-1231,-456,-11236,-304,-175,-358], -[0,-11237,-11238,-11239,-11240,-11241,-11242,-11243,-11244,-11245,-11246,-11247,-11248,-11249,-11250,-11251,-11252,-11253, --11254,-11255,-11256,-11257,-11258,-11259,-11260,-11261,-11262,-11263,-11264,-11265,-5802,-11266,-11267,-11268,-11269, --11270,-11271,-11272,-11273,-11274,-11275,-11276,-11277,-11278,-11279,-11280,-11281,-11282,-11283,-11284,-11285,-11286, --11287,-11288,-11289,-11290,-11291,-11292,-11293,-11294,-11295,-11296,-5803,-5803, --11297,-11298,-11299,-11300,-11301,-11302,-11303,-11304,-11305,-11306,-11307,-11308,-11309,-11310,-11311,-11312,-11313, --11314,-11315,-11316,-11317,-11318,-11319,-11320,-11321,-11322,-11323,-1524,-11324,-11325,-11326,-11327,-11328,-11329, --11330,-11331,-11332,-11333,-11334,-5804,-5804,-11335,-11336,-11337,-11338,-11339,-5805,-5806,-2868,-2423,-11340,-11341, --11342,-11343,-11344,-11345,-11346,-11347,-11348,-11349,-11350,-11351,-11352,-11353, +[0,-11237,-11238,-11239,-11240,-11241,-11242,-11243,-11244,-11245,-11246,-11247,-11248,-11249,-11250,-11251,-11252,-11253,-11254,-11255,-11256,-11257,-11258,-11259,-11260,-11261,-11262,-11263,-11264,-11265,-5802,-11266,-11267,-11268,-11269,-11270,-11271,-11272,-11273,-11274,-11275,-11276,-11277,-11278,-11279,-11280,-11281,-11282,-11283,-11284,-11285,-11286,-11287,-11288,-11289,-11290,-11291,-11292,-11293,-11294,-11295,-11296,-5803,-5803, +-11297,-11298,-11299,-11300,-11301,-11302,-11303,-11304,-11305,-11306,-11307,-11308,-11309,-11310,-11311,-11312,-11313,-11314,-11315,-11316,-11317,-11318,-11319,-11320,-11321,-11322,-11323,-1524,-11324,-11325,-11326,-11327,-11328,-11329,-11330,-11331,-11332,-11333,-11334,-5804,-5804,-11335,-11336,-11337,-11338,-11339,-5805,-5806,-2868,-2423,-11340,-11341,-11342,-11343,-11344,-11345,-11346,-11347,-11348,-11349,-11350,-11351,-11352,-11353, -11354,-11355,-11356,-5807,-11357,-11358,-11359], [1,3,5192], [0,5193,5194,5195,4], @@ -8640,8 +6048,7 @@ true, [0,-2125,-191,-5,-105,-285,-33,-172,-2,-30], [1,3,5234], [0,5235,5236,5237,6], -[0,-20,-940,-58,-5813,-1068,-849,-28,-488,-101,-11383,-11384,-2699,-23,-92,-2122,-5140,-495,-5814,-126,-1264,-601,-11385, --11386,-5636,-11387,-1274], +[0,-20,-940,-58,-5813,-1068,-849,-28,-488,-101,-11383,-11384,-2699,-23,-92,-2122,-5140,-495,-5814,-126,-1264,-601,-11385,-11386,-5636,-11387,-1274], [0,-13,-55,-2516,-119,-3,-984,-1461,-27,-190,-11388,-11389,-565], [0,-1187,-1303,-224,-577,-2588,-534], [1,3,5239], @@ -8659,8 +6066,7 @@ true, [0,-165,-99,-100,-116,-45,-278,-42], [1,3,5252], [0,5253,5254,225,5], -[0,-11396,-11397,-11398,-5730,-2994,-11399,-3870,-3041,-2356,-727,-4219,-593,-5815,-11400,-1129,-289,-11401,-11402,-2698, --11403,-3710], +[0,-11396,-11397,-11398,-5730,-2994,-11399,-3870,-3041,-2356,-727,-4219,-593,-5815,-11400,-1129,-289,-11401,-11402,-2698,-11403,-3710], [0,-3584,-1,-723,-115,-56,-101,-92,-3,-11404,-345,-592,-804,-16,-1123,-1127,-11405,-11406], [1,3,5256], [0,5257,5258,225,5], @@ -8750,10 +6156,8 @@ true, [0,-1490,-833,-1539], [1,3,5342], [0,5343,5344,5345,6], -[0,-1820,-161,-28,-260,-11439,-98,-2863,-23,-1973,-72,-7,-218,-117,-92,-810,-586,-130,-163,-324,-4946,-1114,-1134,-11440, --1329], -[0,-13,-1533,-3,-1550,-27,-222,-1,-1618,-742,-160,-123,-60,-675,-181,-190,-11441,-1931,-187,-373,-389,-49,-239,-860,-122, --75,-9,-5823,-414,-298,-67,-138,-5824,-83,-129,-213,-1032,-297,-1428], +[0,-1820,-161,-28,-260,-11439,-98,-2863,-23,-1973,-72,-7,-218,-117,-92,-810,-586,-130,-163,-324,-4946,-1114,-1134,-11440,-1329], +[0,-13,-1533,-3,-1550,-27,-222,-1,-1618,-742,-160,-123,-60,-675,-181,-190,-11441,-1931,-187,-373,-389,-49,-239,-860,-122,-75,-9,-5823,-414,-298,-67,-138,-5824,-83,-129,-213,-1032,-297,-1428], [0,-79,-11442,-473,-79,-278,-45,-61,-76,-2812,-11443], [1,3,5347], [0,5348,5349,5350,6], @@ -8775,8 +6179,7 @@ true, [1,3,5364], [0,5365,5366,5367,5], [0,-2101,-3471,-1787,-2607,-2102,-92], -[0,-49,-63,-5637,-297,-298,-618,-13,-308,-1,-83,-9,-75,-67,-129,-54,-164,-958,-630,-10,-11446,-79,-11447,-213,-187,-11448, --3,-1550,-416,-122,-27,-190], +[0,-49,-63,-5637,-297,-298,-618,-13,-308,-1,-83,-9,-75,-67,-129,-54,-164,-958,-630,-10,-11446,-79,-11447,-213,-187,-11448,-3,-1550,-416,-122,-27,-190], [0,-480,-2870,-5828,-823,-66], [1,3,5369], [0,227,5370,5371,4], @@ -8803,8 +6206,7 @@ true, [0,-480,-3874,-196], [1,3,5392], [0,228,5393,5394,6], -[0,-13,-1,-83,-67,-64,-129,-54,-1414,-546,-1072,-512,-958,-630,-79,-675,-138,-213,-1237,-343,-3,-548,-27,-297,-298,-122, --49,-63,-10], +[0,-13,-1,-83,-67,-64,-129,-54,-1414,-546,-1072,-512,-958,-630,-79,-675,-138,-213,-1237,-343,-3,-548,-27,-297,-298,-122,-49,-63,-10], [0,-480,-3874,-3], [1,3,5396], [0,5397,5398,5399,4], @@ -8849,8 +6251,7 @@ true, [1,3,5436], [0,5437,5438,48,8], [0,-28,-92,-524], -[0,-48,-11,-449,-21,-49,-63,-1025,-86,-13,-239,-26,-1,-9,-25,-10,-66,-196,-8,-79,-675,-138,-187,-676,-17,-1102,-3,-234,-4, --160,-134,-18], +[0,-48,-11,-449,-21,-49,-63,-1025,-86,-13,-239,-26,-1,-9,-25,-10,-66,-196,-8,-79,-675,-138,-187,-676,-17,-1102,-3,-234,-4,-160,-134,-18], [1,3,5440], [0,0,27,5441,8], [0,-3875,-3058,-11467,-902,-11468,-11469,-11470,-11471,-2366], @@ -8869,15 +6270,13 @@ true, [1,3,5455], [0,5456,5457,5458,5], [0,-370,-5834,-35,-23,-5584,-1992,-2000,-2872,-1055,-58,-1964,-644,-1646,-3878], -[0,-595,-15,-82,-13,-1966,-39,-10,-3,-550,-27,-1,-1674,-7,-1063,-548,-813,-2873,-33,-2874,-4,-560,-55,-26,-1089,-190,-2, --5,-5585,-17,-3879,-5835,-239,-147,-11481,-9,-11482,-11483,-12,-25,-3462], +[0,-595,-15,-82,-13,-1966,-39,-10,-3,-550,-27,-1,-1674,-7,-1063,-548,-813,-2873,-33,-2874,-4,-560,-55,-26,-1089,-190,-2,-5,-5585,-17,-3879,-5835,-239,-147,-11481,-9,-11482,-11483,-12,-25,-3462], [0,-2249,-702,-1169,-928,-550,-11484,-813,-3387,-1673,-908,-11485,-712,-768,-403], [1,3,5460], [0,5461,5462,5463,4], [0,-5525,-226,-11486,-516,-101,-88,-11487,-167,-326,-3880,-601,-263], [0,-663,-1842,-421,-761,-662,-526,-4828,-11488,-4776,-155,-2], -[0,-3881,-5836,-2201,-37,-11489,-693,-710,-2480,-5837,-11490,-5411,-1864,-660,-655,-45,-224,-11491,-11492,-11493,-2250, --11494,-478,-5605,-650,-2,-11495,-11496,-2193,-5838], +[0,-3881,-5836,-2201,-37,-11489,-693,-710,-2480,-5837,-11490,-5411,-1864,-660,-655,-45,-224,-11491,-11492,-11493,-2250,-11494,-478,-5605,-650,-2,-11495,-11496,-2193,-5838], [1,3,5465], [0,0,5466,5467,6], [0,-1,-204,-5839,-2375], @@ -8946,8 +6345,7 @@ true, [0,-3842,-759,-574,-2156,-136], [1,3,5531], [0,0,5532,5533,9], -[0,-1464,-10,-79,-3,-27,-1,-11530,-14,-11531,-11532,-112,-187,-1237,-17,-11533,-5849,-5850,-1090,-238,-1661,-5851,-138, --861,-213,-731,-11534,-11535], +[0,-1464,-10,-79,-3,-27,-1,-11530,-14,-11531,-11532,-112,-187,-1237,-17,-11533,-5849,-5850,-1090,-238,-1661,-5851,-138,-861,-213,-731,-11534,-11535], [0,-11536,-836], [1,3,5535], [0,0,5536,5537,10], @@ -8959,22 +6357,17 @@ true, [0,-1846,-5853,-616,-566], [1,3,5543], [0,5544,0,5545,8], -[0,-1244,-728,-312,-1111,-1464,-125,-20,-118,-547,-552,-288,-1776,-98,-11539,-509,-5754,-1248,-7,-16,-1629,-101,-1110, --469,-5854,-41,-486,-195,-733,-5855,-2653,-5856,-1390,-966,-857,-92,-11540,-664,-487,-1442,-313,-2,-11541,-386,-1413, --5857,-11542,-879,-1653,-5858,-1677,-11543,-644,-3884,-395,-525,-11544,-665,-5521,-2078,-5859,-11545,-5860,-975, +[0,-1244,-728,-312,-1111,-1464,-125,-20,-118,-547,-552,-288,-1776,-98,-11539,-509,-5754,-1248,-7,-16,-1629,-101,-1110,-469,-5854,-41,-486,-195,-733,-5855,-2653,-5856,-1390,-966,-857,-92,-11540,-664,-487,-1442,-313,-2,-11541,-386,-1413,-5857,-11542,-879,-1653,-5858,-1677,-11543,-644,-3884,-395,-525,-11544,-665,-5521,-2078,-5859,-11545,-5860,-975, -840,-5861,-1888,-1714,-1202,-1678,-1513,-2580,-1272,-11546,-5862,-3885,-3886,-11547], [0,-1430,-2250,-3887], [1,3,5547], [0,5548,5549,5550,6], [0,-5863,-3724,-44], -[0,-77,-238,-62,-22,-19,-5864,-11548,-13,-43,-20,-386,-26,-1,-41,-5165,-28,-204,-54,-164,-240,-584,-512,-1647,-789,-11549, --857,-5865,-5866,-5635,-88,-3,-5867,-65,-1449,-11550,-391,-171,-11551,-126,-14,-229,-305,-16,-394,-1468,-33,-2,-1525], -[0,-5868,-11552,-5869,-24,-11553,-5870,-11554,-5871,-5872,-219,-3888,-5873,-4791,-5874,-74,-608,-5875,-5876,-230,-568, --1282,-11555,-11556], +[0,-77,-238,-62,-22,-19,-5864,-11548,-13,-43,-20,-386,-26,-1,-41,-5165,-28,-204,-54,-164,-240,-584,-512,-1647,-789,-11549,-857,-5865,-5866,-5635,-88,-3,-5867,-65,-1449,-11550,-391,-171,-11551,-126,-14,-229,-305,-16,-394,-1468,-33,-2,-1525], +[0,-5868,-11552,-5869,-24,-11553,-5870,-11554,-5871,-5872,-219,-3888,-5873,-4791,-5874,-74,-608,-5875,-5876,-230,-568,-1282,-11555,-11556], [1,3,5552], [0,0,5553,5554,4], -[0,-48,-11,-21,-49,-63,-50,-529,-315,-86,-26,-407,-150,-232,-1,-12,-617,-9,-145,-115,-25,-151,-56,-10,-8,-219,-11557,-17, --259,-65,-4,-134,-139,-84,-18], +[0,-48,-11,-21,-49,-63,-50,-529,-315,-86,-26,-407,-150,-232,-1,-12,-617,-9,-145,-115,-25,-151,-56,-10,-8,-219,-11557,-17,-259,-65,-4,-134,-139,-84,-18], [0,-18,-831,-219,-5873,-3888,-24,-608], [1,3,5556], [0,5557,5558,229,4], @@ -8988,8 +6381,7 @@ true, [1,3,5565], [0,5566,5567,229,11], [0,-5700,-11568,-11569,-5882,-11570,-11571], -[0,-15,-39,-772,-27,-718,-1225,-3394,-11572,-11573,-1420,-97,-5880,-60,-1697,-5883,-3889,-309,-11574,-11575,-1215,-5877, --5881], +[0,-15,-39,-772,-27,-718,-1225,-3394,-11572,-11573,-1420,-97,-5880,-60,-1697,-5883,-3889,-309,-11574,-11575,-1215,-5877,-5881], [1,3,5569], [0,0,5570,5571,11], [0,-51,-3890,-11576,-11577,-5884,-11578,-5885,-3066,-11579,-1127,-34], @@ -9009,8 +6401,7 @@ true, [0,-159,-1679,-2565,-37,-402,-11583,-11584], [1,3,5586], [0,0,5587,5588,4], -[0,-48,-11,-2035,-3191,-21,-174,-238,-206,-333,-13,-582,-11585,-26,-11586,-66,-8,-11587,-11588,-88,-3,-65,-15,-11589, --1693,-7,-14,-44], +[0,-48,-11,-2035,-3191,-21,-174,-238,-206,-333,-13,-582,-11585,-26,-11586,-66,-8,-11587,-11588,-88,-3,-65,-15,-11589,-1693,-7,-14,-44], [0,-3846,-1887,-1538,-352,-95,-11590], [1,3,5590], [0,5591,5592,5593,6], @@ -9077,8 +6468,7 @@ true, [1,3,5652], [0,5653,5654,5655,4], [0,-3873], -[0,-162,-91,-96,-270,-3479,-321,-11623,-777,-11624,-1385,-368,-12,-54,-3458,-957,-629,-584,-341,-304,-11625,-512,-1671, --5893,-3659,-1647,-5894,-3660,-10,-17,-343,-3,-4,-11626,-3415,-2,-112,-18,-173], +[0,-162,-91,-96,-270,-3479,-321,-11623,-777,-11624,-1385,-368,-12,-54,-3458,-957,-629,-584,-341,-304,-11625,-512,-1671,-5893,-3659,-1647,-5894,-3660,-10,-17,-343,-3,-4,-11626,-3415,-2,-112,-18,-173], [0,-11627,-11628,-1166,-11629], [1,3,5657], [0,5658,27,7,11], @@ -9194,12 +6584,9 @@ true, [0,-2879,-1974,-11652], [1,3,5769], [0,5770,5771,5772,6], -[0,-337,-1062,-5900,-59,-35,-3872,-40,-11653,-2305,-114,-1080,-1676,-163,-1699,-11654,-11655,-5901,-11656,-11657,-1271, --11658,-11659,-5902,-11660], -[0,-15,-13,-54,-79,-3,-27,-222,-1,-55,-164,-2251,-123,-60,-1393,-190,-958,-187,-512,-581,-11661,-11662,-850,-957,-959, --860,-11663,-304,-11664,-341,-5823,-11665,-138,-5824,-11666,-213,-3650], -[0,-113,-1161,-422,-100,-40,-4307,-433,-832,-711,-3387,-550,-1347,-1341,-375,-2880,-1673,-928,-1169,-3105,-5903,-53,-95, --5904], +[0,-337,-1062,-5900,-59,-35,-3872,-40,-11653,-2305,-114,-1080,-1676,-163,-1699,-11654,-11655,-5901,-11656,-11657,-1271,-11658,-11659,-5902,-11660], +[0,-15,-13,-54,-79,-3,-27,-222,-1,-55,-164,-2251,-123,-60,-1393,-190,-958,-187,-512,-581,-11661,-11662,-850,-957,-959,-860,-11663,-304,-11664,-341,-5823,-11665,-138,-5824,-11666,-213,-3650], +[0,-113,-1161,-422,-100,-40,-4307,-433,-832,-711,-3387,-550,-1347,-1341,-375,-2880,-1673,-928,-1169,-3105,-5903,-53,-95,-5904], [1,3,5774], [0,5775,5776,196,5], [0,-2490], @@ -9221,8 +6608,7 @@ true, [0,5792,5793,5794,9], [0,-59,-667,-11684,-801], [0,-55,-66,-72,-3,-589,-81], -[0,-292,-294,-11685,-286,-2248,-2727,-5236,-1193,-1572,-621,-1349,-2726,-11686,-11687,-1552,-5908,-5909,-3501,-5852, --11688,-11689,-11690,-4708,-11691,-5910,-5911,-11692,-11693], +[0,-292,-294,-11685,-286,-2248,-2727,-5236,-1193,-1572,-621,-1349,-2726,-11686,-11687,-1552,-5908,-5909,-3501,-5852,-11688,-11689,-11690,-4708,-11691,-5910,-5911,-11692,-11693], [1,3,5796], [0,5797,5798,5799,5], [0,-11694,-11695,-1547,-5856,-2328,-2329,-11696,-2869,-433,-5912,-152,-1456,-3553,-2197], @@ -9230,8 +6616,7 @@ true, [0,-1669,-216,-103,-1533,-388,-46,-413,-1557,-113], [1,3,5801], [0,5802,5803,5804,8], -[0,-20,-1390,-35,-543,-1812,-2872,-11698,-510,-1640,-1649,-11699,-726,-729,-101,-1888,-3898,-72,-325,-871,-2129,-906,-599, --806,-11700,-3224,-161,-2754,-135,-1559,-348,-1157,-125,-502,-222,-1714,-5913,-98], +[0,-20,-1390,-35,-543,-1812,-2872,-11698,-510,-1640,-1649,-11699,-726,-729,-101,-1888,-3898,-72,-325,-871,-2129,-906,-599,-806,-11700,-3224,-161,-2754,-135,-1559,-348,-1157,-125,-502,-222,-1714,-5913,-98], [0,-11701,-169,-251,-421,-11702,-11703,-5,-750,-701,-698,-2881,-3774,-419,-26,-5481,-288,-139,-2,-1131], [0,-99,-11704,-11705,-61,-42], [1,3,5806], @@ -9243,8 +6628,7 @@ true, [0,5812,5813,5814,6], [0,-205,-194,-78,-44,-410,-23,-1965,-3225,-1561], [0,-1,-124,-475,-2,-5,-65,-614,-143,-19,-4778,-11707,-22], -[0,-11708,-2226,-2,-2997,-476,-5616,-45,-11709,-11710,-11711,-11712,-11713,-2858,-11714,-11715,-1342,-11716,-11717,-42, --5914,-11718,-4241], +[0,-11708,-2226,-2,-2997,-476,-5616,-45,-11709,-11710,-11711,-11712,-11713,-2858,-11714,-11715,-1342,-11716,-11717,-42,-5914,-11718,-4241], [1,3,5816], [0,5817,5818,5819,4], [0,-20,-432,-204,-562,-1442,-492,-601], @@ -9264,16 +6648,12 @@ true, [0,-5553,-31,-5915,-1889,-99,-1000], [1,3,5833], [0,5834,5835,5836,6], -[0,-1289,-1543,-5916,-11727,-5917,-11728,-5918,-11729,-5919,-5920,-183,-2305,-20,-3251,-2546,-940,-2234,-3835,-101,-797, --1094,-548,-1674,-188,-285,-553,-595,-554,-598,-496,-689,-739,-813,-2002,-11730,-200], -[0,-5921,-11731,-4761,-5922,-11732,-4472,-5566,-11733,-264,-421,-1014,-1806,-1015,-22,-19,-1,-12,-25,-303,-8,-249,-4,-147, --123,-57,-214,-815,-2], -[0,-46,-100,-422,-353,-2,-403,-5923,-11734,-2199,-11735,-11736,-11737,-11738,-5924,-1290,-928,-550,-2002,-1808,-832,-695, --11739,-1166,-1165,-11740,-11741,-11742,-5925,-11743,-5926,-5077,-3899,-2377], +[0,-1289,-1543,-5916,-11727,-5917,-11728,-5918,-11729,-5919,-5920,-183,-2305,-20,-3251,-2546,-940,-2234,-3835,-101,-797,-1094,-548,-1674,-188,-285,-553,-595,-554,-598,-496,-689,-739,-813,-2002,-11730,-200], +[0,-5921,-11731,-4761,-5922,-11732,-4472,-5566,-11733,-264,-421,-1014,-1806,-1015,-22,-19,-1,-12,-25,-303,-8,-249,-4,-147,-123,-57,-214,-815,-2], +[0,-46,-100,-422,-353,-2,-403,-5923,-11734,-2199,-11735,-11736,-11737,-11738,-5924,-1290,-928,-550,-2002,-1808,-832,-695,-11739,-1166,-1165,-11740,-11741,-11742,-5925,-11743,-5926,-5077,-3899,-2377], [1,3,5838], [0,0,5839,5840,5], -[0,-290,-4378,-4073,-4074,-4075,-5927,-11744,-143,-5,-47,-89,-22,-19,-302,-369,-1,-3900,-186,-23,-242,-38,-682,-555, --11745,-2882,-4,-6,-36,-689,-907,-2016,-172,-2], +[0,-290,-4378,-4073,-4074,-4075,-5927,-11744,-143,-5,-47,-89,-22,-19,-302,-369,-1,-3900,-186,-23,-242,-38,-682,-555,-11745,-2882,-4,-6,-36,-689,-907,-2016,-172,-2], [0,-102,-11746,-3901,-1294,-11747,-11748,-6,-11749,-2,-45,-192,-52,-2508,-102,-11750,-4684,-2750,-11751,-131], [1,3,5842], [0,0,5843,7,5], @@ -9289,8 +6669,7 @@ true, [1,3,5853], [0,5854,5855,5856,5], [0,-1204,-472,-11756,-11757,-11758,-11759], -[0,-207,-77,-62,-206,-243,-110,-43,-13,-1,-83,-40,-340,-372,-1236,-2494,-1239,-3222,-1097,-4559,-5928,-11760,-11761,-5929, --2520,-2524,-3,-5930,-1675,-14,-276,-123], +[0,-207,-77,-62,-206,-243,-110,-43,-13,-1,-83,-40,-340,-372,-1236,-2494,-1239,-3222,-1097,-4559,-5928,-11760,-11761,-5929,-2520,-2524,-3,-5930,-1675,-14,-276,-123], [0,-99,-74,-1192,-220,-2883], [1,3,5858], [0,0,5859,5860,8], @@ -9318,13 +6697,11 @@ true, [1,3,5881], [0,5882,88,5883,4], [0,-309,-11768,-670,-11769,-11770,-11771,-88,-11772,-5656,-1116,-5934,-5676], -[0,-3902,-1192,-399,-1890,-42,-11773,-3904,-2838,-5935,-99,-1000,-107,-1764,-1314,-1116,-11774,-926,-2069,-752,-11775, --11776,-11777,-1823], +[0,-3902,-1192,-399,-1890,-42,-11773,-3904,-2838,-5935,-99,-1000,-107,-1764,-1314,-1116,-11774,-926,-2069,-752,-11775,-11776,-11777,-1823], [1,3,5885], [0,5886,5887,5888,5], [0,-1436,-5936,-11778,-11779,-11780,-11781,-11782,-2253,-395], -[0,-50,-315,-183,-51,-43,-3144,-1,-180,-115,-784,-151,-11783,-204,-101,-3697,-636,-220,-5928,-5929,-2520,-11784,-2788,-65, --397,-886,-2,-18,-93], +[0,-50,-315,-183,-51,-43,-3144,-1,-180,-115,-784,-151,-11783,-204,-101,-3697,-636,-220,-5928,-5929,-2520,-11784,-2788,-65,-397,-886,-2,-18,-93], [0,-99,-224,-1000,-11785,-973], [1,3,5890], [0,5891,5892,5893,10], @@ -9333,13 +6710,11 @@ true, [0,-99,-973,-37,-762], [1,3,5895], [0,0,5896,5897,4], -[0,-314,-11787,-11788,-925,-298,-749,-618,-1177,-231,-1192,-26,-3389,-87,-3905,-1,-372,-220,-11789,-11790,-5938,-7,-122, --2854,-44,-2], +[0,-314,-11787,-11788,-925,-298,-749,-618,-1177,-231,-1192,-26,-3389,-87,-3905,-1,-372,-220,-11789,-11790,-5938,-7,-122,-2854,-44,-2], [0,-99,-3906,-31], [1,3,5899], [0,5900,5901,163,4], -[0,-4753,-4754,-499,-4755,-4742,-4752,-3297,-1082,-4745,-4750,-4746,-4747,-4743,-4748,-4751,-1971,-1665,-4749,-220,-1097, --4756,-4757,-3204,-4744,-1698,-3298], +[0,-4753,-4754,-499,-4755,-4742,-4752,-3297,-1082,-4745,-4750,-4746,-4747,-4743,-4748,-4751,-1971,-1665,-4749,-220,-1097,-4756,-4757,-3204,-4744,-1698,-3298], [0,-60,-231,-28,-4759,-3,-4758,-97,-134], [1,3,5903], [0,5904,0,7,4], @@ -9350,9 +6725,7 @@ true, [1,3,5909], [0,5910,5911,5912,8], [0,-90,-11794,-3870,-11795,-5023,-11796,-1462,-5168,-11797], -[0,-11,-1327,-4553,-170,-21,-174,-5484,-71,-22,-19,-280,-96,-43,-149,-150,-11798,-1219,-1,-12,-83,-9,-256,-115,-25,-67, --787,-11799,-257,-28,-32,-585,-247,-11800,-79,-213,-187,-414,-676,-4493,-517,-72,-3,-974,-5940,-11801,-11802,-11803, --11804,-11805,-4,-286,-27,-5941,-1127,-33,-2,-18,-11806], +[0,-11,-1327,-4553,-170,-21,-174,-5484,-71,-22,-19,-280,-96,-43,-149,-150,-11798,-1219,-1,-12,-83,-9,-256,-115,-25,-67,-787,-11799,-257,-28,-32,-585,-247,-11800,-79,-213,-187,-414,-676,-4493,-517,-72,-3,-974,-5940,-11801,-11802,-11803,-11804,-11805,-4,-286,-27,-5941,-1127,-33,-2,-18,-11806], [0,-2879,-11807,-3581,-5942,-11808,-74,-1862,-1538,-5087,-11809,-11810,-5315,-401], [1,3,5914], [0,5915,5916,7,10], @@ -9383,14 +6756,11 @@ true, [1,3,5940], [0,5941,5942,5943,4], [0,-11823,-11824,-11825,-11826,-11827,-11828,-11829,-11830,-11831,-11832,-11833,-11834,-11835,-44], -[0,-29,-3498,-5,-2296,-280,-294,-342,-10,-11836,-8,-681,-4,-286,-198,-7,-884,-57,-214,-33,-199,-11837,-2,-200,-136,-18, --93,-173], -[0,-303,-1555,-11838,-1102,-259,-128,-1352,-5845,-1034,-5953,-1580,-76,-61,-317,-5954,-11839,-11840,-11841,-11842,-11843, --11844,-11845], +[0,-29,-3498,-5,-2296,-280,-294,-342,-10,-11836,-8,-681,-4,-286,-198,-7,-884,-57,-214,-33,-199,-11837,-2,-200,-136,-18,-93,-173], +[0,-303,-1555,-11838,-1102,-259,-128,-1352,-5845,-1034,-5953,-1580,-76,-61,-317,-5954,-11839,-11840,-11841,-11842,-11843,-11844,-11845], [1,3,5945], [0,0,5946,5947,5], -[0,-705,-747,-29,-11846,-3691,-5,-22,-19,-110,-26,-1,-12,-145,-25,-787,-5955,-8,-1666,-1667,-1098,-11847,-1817,-5724, --5956,-325,-4,-7,-14,-877,-229,-1260,-328,-57,-33,-44,-2], +[0,-705,-747,-29,-11846,-3691,-5,-22,-19,-110,-26,-1,-12,-145,-25,-787,-5955,-8,-1666,-1667,-1098,-11847,-1817,-5724,-5956,-325,-4,-7,-14,-877,-229,-1260,-328,-57,-33,-44,-2], [0,-3452,-11848,-443,-574], [1,3,5949], [0,0,5950,5951,5], @@ -9412,8 +6782,7 @@ true, [0,68,15,16,6], [1,3,5967], [0,0,5968,5969,5], -[0,-77,-238,-62,-1164,-761,-51,-11852,-456,-1622,-11853,-11854,-118,-204,-793,-11855,-2718,-1502,-1690,-3356,-14,-417, --876,-2575,-11856,-82,-215,-2,-34,-525], +[0,-77,-238,-62,-1164,-761,-51,-11852,-456,-1622,-11853,-11854,-118,-204,-793,-11855,-2718,-1502,-1690,-3356,-14,-417,-876,-2575,-11856,-82,-215,-2,-34,-525], [0,-37,-1569,-136,-208,-2076,-1307,-316,-1172,-462,-11857,-11858,-74,-916,-1527,-352,-1343,-201], [1,3,5971], [0,0,5972,5973,4], @@ -9440,8 +6809,7 @@ true, [0,-103,-1104], [1,3,5994], [0,5995,5996,5997,11], -[0,-11,-209,-5957,-995,-998,-1284,-4546,-21,-1167,-132,-530,-207,-77,-238,-62,-11868,-11869,-157,-1291,-11870,-11871, --5690,-1384,-430,-408,-725,-1075,-490,-1238,-38,-520,-14,-5043,-1311,-229,-305,-645,-1785,-177,-3910,-44,-2], +[0,-11,-209,-5957,-995,-998,-1284,-4546,-21,-1167,-132,-530,-207,-77,-238,-62,-11868,-11869,-157,-1291,-11870,-11871,-5690,-1384,-430,-408,-725,-1075,-490,-1238,-38,-520,-14,-5043,-1311,-229,-305,-645,-1785,-177,-3910,-44,-2], [0,-48,-829,-11872,-1865,-357,-86,-26,-11873,-1,-11874,-12,-25,-370,-41,-10,-8,-17,-11875,-4,-346,-7,-737,-139], [0,-1151,-14,-11876], [1,3,5999], @@ -9452,8 +6820,7 @@ true, [0,6004,6005,6006,5], [0,-2863,-326], [0,-3,-92,-5958,-671], -[0,-1175,-11882,-11883,-1856,-5959,-1862,-5780,-11884,-128,-660,-767,-655,-28,-2231,-3761,-5781,-11885,-11886,-11887,-532, --2143,-2514,-5887,-361,-92,-1442,-11888,-11889,-249,-1022,-2100,-11890,-1021,-1160,-3683,-267,-11891,-2230], +[0,-1175,-11882,-11883,-1856,-5959,-1862,-5780,-11884,-128,-660,-767,-655,-28,-2231,-3761,-5781,-11885,-11886,-11887,-532,-2143,-2514,-5887,-361,-92,-1442,-11888,-11889,-249,-1022,-2100,-11890,-1021,-1160,-3683,-267,-11891,-2230], [1,3,6008], [0,0,6009,6010,4], [0,-5960,-1146,-5,-22,-19,-20,-11892,-344,-4,-5961,-5962,-2], @@ -9464,17 +6831,12 @@ true, [0,-260,-650], [1,3,6016], [0,119,120,6017,4], -[0,-11894,-5963,-11895,-11896,-5964,-11897,-11898,-11899,-11900,-5963,-11901,-11902,-11903,-11904,-11905,-11906,-11907, --5965,-11908,-11909,-11910,-1876,-3911,-5966,-11911,-11912,-11913,-11914,-11915,-11916,-11917,-11918,-3618,-11919,-11920, --5317,-5318,-45,-3614,-1854,-278,-2,-3615,-753,-440,-3912,-1847,-479,-1344,-3619,-3620,-2748,-3621,-3622,-3623,-3624, --3625,-3626,-3627,-3628,-1573,-1336,-3436, --11921,-11922,-3617,-838,-5316,-2196,-3629,-924,-3630,-3631,-3632,-3633,-3634,-3635,-3636,-3637,-2749,-136,-1556,-3638, --2605,-3639,-5967,-574,-3640,-42,-1551], +[0,-11894,-5963,-11895,-11896,-5964,-11897,-11898,-11899,-11900,-5963,-11901,-11902,-11903,-11904,-11905,-11906,-11907,-5965,-11908,-11909,-11910,-1876,-3911,-5966,-11911,-11912,-11913,-11914,-11915,-11916,-11917,-11918,-3618,-11919,-11920,-5317,-5318,-45,-3614,-1854,-278,-2,-3615,-753,-440,-3912,-1847,-479,-1344,-3619,-3620,-2748,-3621,-3622,-3623,-3624,-3625,-3626,-3627,-3628,-1573,-1336,-3436, +-11921,-11922,-3617,-838,-5316,-2196,-3629,-924,-3630,-3631,-3632,-3633,-3634,-3635,-3636,-3637,-2749,-136,-1556,-3638,-2605,-3639,-5967,-574,-3640,-42,-1551], [1,3,6019], [0,6020,6021,6022,11], [0,-646,-1266], -[0,-48,-11,-21,-49,-63,-50,-529,-315,-5,-453,-26,-407,-141,-150,-232,-1219,-1,-12,-617,-9,-145,-180,-115,-25,-151,-271, --56,-10,-8,-176,-78,-17,-259,-65,-4,-80,-467,-134,-2,-84,-18,-93,-173], +[0,-48,-11,-21,-49,-63,-50,-529,-315,-5,-453,-26,-407,-141,-150,-232,-1219,-1,-12,-617,-9,-145,-180,-115,-25,-151,-271,-56,-10,-8,-176,-78,-17,-259,-65,-4,-80,-467,-134,-2,-84,-18,-93,-173], [0,-18,-24,-1026,-1822], [1,3,6024], [0,6025,6026,6027,5], @@ -9514,9 +6876,7 @@ true, [1,3,6059], [0,6060,6061,6062,4], [0,-1077,-549,-203,-28,-35,-98,-339,-101,-117,-92,-167,-2528,-638,-525,-11942,-1554,-468,-11943,-601,-408,-1121], -[0,-15,-13,-799,-165,-79,-27,-11944,-1,-1675,-274,-7,-14,-16,-56,-3913,-18,-4,-26,-50,-11945,-2,-11946,-5,-413,-187,-220, --93,-419,-308,-972,-345,-1772,-4065,-11947,-11948,-11949,-11950,-115,-1504,-518,-11951,-1492,-1097,-4489,-971,-238, --11952,-530,-414,-798,-138,-77,-11953,-645,-3465,-1258,-62,-2850,-11954,-11955], +[0,-15,-13,-799,-165,-79,-27,-11944,-1,-1675,-274,-7,-14,-16,-56,-3913,-18,-4,-26,-50,-11945,-2,-11946,-5,-413,-187,-220,-93,-419,-308,-972,-345,-1772,-4065,-11947,-11948,-11949,-11950,-115,-1504,-518,-11951,-1492,-1097,-4489,-971,-238,-11952,-530,-414,-798,-138,-77,-11953,-645,-3465,-1258,-62,-2850,-11954,-11955], [0,-3,-76,-609,-573,-85,-61,-13,-1163,-51,-8,-39,-196,-79], [1,3,6064], [0,6065,6066,6067,6], @@ -9538,8 +6898,7 @@ true, [1,3,6081], [0,6082,6083,6084,8], [0,-11959,-1642,-5977,-5978,-672,-1084,-1245], -[0,-314,-244,-1563,-11960,-11961,-11962,-11963,-11964,-5420,-11965,-5421,-5582,-3682,-5422,-5423,-5424,-5,-11966,-5425, --714,-269,-533,-1400,-1,-1069,-954,-1234,-212,-273,-15,-189,-39], +[0,-314,-244,-1563,-11960,-11961,-11962,-11963,-11964,-5420,-11965,-5421,-5582,-3682,-5422,-5423,-5424,-5,-11966,-5425,-714,-269,-533,-1400,-1,-1069,-954,-1234,-212,-273,-15,-189,-39], [0,-61,-317,-426,-1179,-917,-5979,-76,-835,-5980], [1,3,6086], [0,6087,6088,231,4], @@ -9563,9 +6922,7 @@ true, [1,3,6105], [0,6106,6107,6108,4], [0,-613,-28,-490,-23,-2255,-434,-188,-1634,-11972,-11973], -[0,-730,-82,-11974,-8,-2386,-11975,-1250,-35,-11976,-1210,-11977,-210,-1,-1973,-11978,-2295,-1965,-285,-11979,-33,-564, --11980,-11981,-489,-11982,-4,-55,-11983,-857,-4263,-123,-11984,-1687,-2,-5982,-5,-11985,-11986,-11987,-11988,-11989, --11990,-11991,-11992,-5841,-11993,-11994,-75,-11995,-623,-11996,-67,-12,-25,-724], +[0,-730,-82,-11974,-8,-2386,-11975,-1250,-35,-11976,-1210,-11977,-210,-1,-1973,-11978,-2295,-1965,-285,-11979,-33,-564,-11980,-11981,-489,-11982,-4,-55,-11983,-857,-4263,-123,-11984,-1687,-2,-5982,-5,-11985,-11986,-11987,-11988,-11989,-11990,-11991,-11992,-5841,-11993,-11994,-75,-11995,-623,-11996,-67,-12,-25,-724], [0,-1891,-2157,-53,-46,-11997,-3643,-5983,-2256,-3352,-2858,-3914], [1,3,6110], [0,0,6111,6112,5], @@ -9587,23 +6944,18 @@ true, [0,-12009,-12010,-12011,-916,-12012,-192,-46], [1,3,6128], [0,6129,6130,6131,8], -[0,-3550,-5988,-3551,-3549,-12013,-3548,-3739,-12014,-12015,-820,-3915,-163,-453,-12016,-1611,-1054,-58,-581,-26,-4138, --210,-4162,-40,-2562,-850,-1411,-12017,-12018,-673,-248,-4620,-1977,-375,-12019,-678,-167,-12020,-1699], -[0,-11,-156,-21,-5989,-12021,-96,-13,-1614,-284,-508,-141,-483,-1,-185,-9,-151,-12022,-271,-10,-3,-2257,-1444,-285,-154, --123,-18,-93], +[0,-3550,-5988,-3551,-3549,-12013,-3548,-3739,-12014,-12015,-820,-3915,-163,-453,-12016,-1611,-1054,-58,-581,-26,-4138,-210,-4162,-40,-2562,-850,-1411,-12017,-12018,-673,-248,-4620,-1977,-375,-12019,-678,-167,-12020,-1699], +[0,-11,-156,-21,-5989,-12021,-96,-13,-1614,-284,-508,-141,-483,-1,-185,-9,-151,-12022,-271,-10,-3,-2257,-1444,-285,-154,-123,-18,-93], [0,-3740,-12023,-1556,-403,-5990,-1508,-12024,-12025,-1341,-375,-12026,-5991,-12027], [1,3,6133], [0,6134,6135,6136,8], [0,-1611,-12028,-12029], -[0,-15,-82,-2891,-13,-20,-3,-27,-5992,-98,-1,-16,-12030,-40,-101,-33,-4,-190,-2,-3182,-109,-5,-1931,-12031,-71,-279, --12032,-140,-264,-12033,-12034,-12035,-12036,-1287,-12037,-12038,-147,-256,-1065,-12,-25,-1905,-451,-19,-5993,-5117, --2852,-5994,-22,-911,-1200], +[0,-15,-82,-2891,-13,-20,-3,-27,-5992,-98,-1,-16,-12030,-40,-101,-33,-4,-190,-2,-3182,-109,-5,-1931,-12031,-71,-279,-12032,-140,-264,-12033,-12034,-12035,-12036,-1287,-12037,-12038,-147,-256,-1065,-12,-25,-1905,-451,-19,-5993,-5117,-2852,-5994,-22,-911,-1200], [0,-375,-2246,-4858], [1,3,6138], [0,6139,6140,6141,10], [0,-12039,-375,-12040,-12041,-549,-12042], -[0,-12043,-12044,-5,-12045,-12046,-12047,-183,-43,-231,-3652,-1,-3462,-40,-41,-372,-5620,-1666,-12048,-5535,-227,-72,-3, --233,-5993,-2257,-5995,-734,-642,-27,-4377,-2,-84,-125], +[0,-12043,-12044,-5,-12045,-12046,-12047,-183,-43,-231,-3652,-1,-3462,-40,-41,-372,-5620,-1666,-12048,-5535,-227,-72,-3,-233,-5993,-2257,-5995,-734,-642,-27,-4377,-2,-84,-125], [0,-375,-1890,-1819,-331,-403,-5996,-479,-5997,-702,-1347,-802,-768], [1,3,6143], [0,6144,232,6145,5], @@ -9628,8 +6980,7 @@ true, [1,3,6163], [0,6164,6165,6166,10], [0,-205,-1695,-35,-5992,-881,-12066,-12067,-88,-475,-434,-12068,-309,-12069,-198,-12070,-3492], -[0,-15,-13,-39,-27,-1,-852,-72,-7,-81,-1700,-87,-56,-33,-117,-4,-12071,-50,-234,-378,-2,-109,-5,-714,-279,-1628,-12072, --12073,-290,-3916,-2125,-893,-2586,-12074,-9,-12,-25,-19,-385,-1283,-12075,-22,-909], +[0,-15,-13,-39,-27,-1,-852,-72,-7,-81,-1700,-87,-56,-33,-117,-4,-12071,-50,-234,-378,-2,-109,-5,-714,-279,-1628,-12072,-12073,-290,-3916,-2125,-893,-2586,-12074,-9,-12,-25,-19,-385,-1283,-12075,-22,-909], [0,-2386,-12076,-769,-3715], [1,3,6168], [0,0,6169,7,8], @@ -9642,9 +6993,7 @@ true, [1,3,6176], [0,6177,6178,6179,11], [0,-3160,-1906,-4711,-12084,-336,-371,-12085,-4712,-4713,-553,-167,-12086,-1263,-2561,-1129,-215,-12087,-98], -[0,-49,-63,-12088,-290,-50,-6002,-4536,-4714,-4715,-366,-264,-12089,-5,-12090,-22,-19,-3186,-194,-1814,-482,-26,-1937, --295,-87,-1293,-1,-12,-25,-40,-1071,-5444,-28,-78,-6003,-799,-17,-12091,-4,-470,-346,-7,-999,-172,-2,-84,-289,-438,-30, --4718,-18,-4719,-800], +[0,-49,-63,-12088,-290,-50,-6002,-4536,-4714,-4715,-366,-264,-12089,-5,-12090,-22,-19,-3186,-194,-1814,-482,-26,-1937,-295,-87,-1293,-1,-12,-25,-40,-1071,-5444,-28,-78,-6003,-799,-17,-12091,-4,-470,-346,-7,-999,-172,-2,-84,-289,-438,-30,-4718,-18,-4719,-800], [0,-100,-317,-2554,-2222,-5925,-216,-1323,-3721,-61,-192,-2087], [1,3,6181], [0,6182,6183,6184,4], @@ -9701,8 +7050,7 @@ true, [1,3,6233], [0,6234,6235,6236,5], [0,-1729,-1059,-722,-12116,-5939,-12117,-3587,-1750], -[0,-1515,-1154,-1019,-29,-5,-997,-47,-1,-3307,-10,-12118,-8,-1430,-12119,-17,-4,-121,-6,-36,-287,-7,-147,-214,-44,-2,-18, --523,-173,-692], +[0,-1515,-1154,-1019,-29,-5,-997,-47,-1,-3307,-10,-12118,-8,-1430,-12119,-17,-4,-121,-6,-36,-287,-7,-147,-214,-44,-2,-18,-523,-173,-692], [0,-24,-230,-568,-12120,-3065,-12121,-6,-278,-12122,-1292,-12123,-2258,-131,-882,-12124,-2259,-1282], [1,3,6238], [0,0,0,6239,8], @@ -9714,19 +7062,14 @@ true, [0,-1357,-458,-306,-501,-2226], [1,3,6246], [0,6247,6248,6249,6], -[0,-205,-325,-312,-3054,-152,-125,-194,-217,-1252,-98,-3743,-23,-1973,-227,-72,-1248,-16,-3646,-4352,-565,-1067,-392,-276, --842,-117,-4,-3086,-814,-92,-12130,-624,-600,-130,-2,-12131,-2547,-12132,-12133,-12134,-2805,-12135,-3917,-2161,-1857, --1456,-840,-12136,-12137,-12138,-457,-5570,-12139,-12140,-12141,-12142,-12143], -[0,-13,-54,-10,-3,-27,-5894,-66,-475,-1532,-109,-5,-698,-789,-17,-4727,-2894,-12144,-279,-419,-6009,-143,-12145,-140, --12146,-12147,-2895,-822,-1748,-2149,-6010,-12148,-239,-511,-147,-240,-304,-6011,-2896,-754,-6012,-3180,-12149,-385], +[0,-205,-325,-312,-3054,-152,-125,-194,-217,-1252,-98,-3743,-23,-1973,-227,-72,-1248,-16,-3646,-4352,-565,-1067,-392,-276,-842,-117,-4,-3086,-814,-92,-12130,-624,-600,-130,-2,-12131,-2547,-12132,-12133,-12134,-2805,-12135,-3917,-2161,-1857,-1456,-840,-12136,-12137,-12138,-457,-5570,-12139,-12140,-12141,-12142,-12143], +[0,-13,-54,-10,-3,-27,-5894,-66,-475,-1532,-109,-5,-698,-789,-17,-4727,-2894,-12144,-279,-419,-6009,-143,-12145,-140,-12146,-12147,-2895,-822,-1748,-2149,-6010,-12148,-239,-511,-147,-240,-304,-6011,-2896,-754,-6012,-3180,-12149,-385], [0,-4250,-2,-45], [1,3,6251], [0,6252,6253,6254,6], [0,-12150,-12151,-12152,-210,-413,-12153,-1106,-595,-688,-1561,-12154,-5941,-250,-125,-12155], -[0,-77,-238,-62,-1195,-5,-22,-12156,-26,-1,-3763,-9,-115,-67,-32,-3028,-12157,-196,-373,-224,-734,-15,-6013,-181,-7,-14, --27,-147,-97,-33,-5115,-2,-12158,-18,-2756], -[0,-12159,-12160,-5275,-12161,-12162,-2043,-12163,-12164,-12165,-12166,-12167,-12168,-12169,-12170,-12171,-12172,-12173, --12174,-12175,-12176,-3918,-12177,-12178,-12179,-12180,-12181,-12182,-6014,-12183], +[0,-77,-238,-62,-1195,-5,-22,-12156,-26,-1,-3763,-9,-115,-67,-32,-3028,-12157,-196,-373,-224,-734,-15,-6013,-181,-7,-14,-27,-147,-97,-33,-5115,-2,-12158,-18,-2756], +[0,-12159,-12160,-5275,-12161,-12162,-2043,-12163,-12164,-12165,-12166,-12167,-12168,-12169,-12170,-12171,-12172,-12173,-12174,-12175,-12176,-3918,-12177,-12178,-12179,-12180,-12181,-12182,-6014,-12183], [1,3,6256], [0,6257,6258,6259,9], [0,-728,-59,-98,-12184], @@ -9756,22 +7099,18 @@ true, [0,-37,-1808,-1194,-316,-299,-6015,-2258], [1,3,6283], [0,6284,6285,6286,8], -[0,-12195,-59,-12196,-1813,-624,-133,-58,-1940,-725,-12197,-23,-72,-12198,-12199,-12200,-12201,-871,-16,-12202,-2010, --1274], +[0,-12195,-59,-12196,-1813,-624,-133,-58,-1940,-725,-12197,-23,-72,-12198,-12199,-12200,-12201,-871,-16,-12202,-2010,-1274], [0,-12203,-13,-1215,-12204,-1858,-1,-180,-5370,-256,-724,-101,-3,-197,-15,-12205,-1993,-1123,-276,-27,-565], [0,-3067,-2897,-100,-61,-2701,-12206,-422], [1,3,6288], [0,6289,6290,6291,4], -[0,-12207,-3644,-5328,-12208,-1317,-5004,-5003,-5007,-3440,-5005,-5006,-2644,-12209,-309,-727,-6016,-6003,-1088,-12210, --198,-6017,-16,-1713], -[0,-1289,-3919,-2898,-12211,-12212,-12213,-665,-12214,-12215,-12216,-183,-59,-936,-1726,-43,-3459,-58,-1212,-5197,-3461, --1,-180,-6018,-28,-387,-10,-165,-17,-1095,-197,-1687,-181,-7,-12217,-27,-690], +[0,-12207,-3644,-5328,-12208,-1317,-5004,-5003,-5007,-3440,-5005,-5006,-2644,-12209,-309,-727,-6016,-6003,-1088,-12210,-198,-6017,-16,-1713], +[0,-1289,-3919,-2898,-12211,-12212,-12213,-665,-12214,-12215,-12216,-183,-59,-936,-1726,-43,-3459,-58,-1212,-5197,-3461,-1,-180,-6018,-28,-387,-10,-165,-17,-1095,-197,-1687,-181,-7,-12217,-27,-690], [0,-2645,-574,-1892,-5052,-6019,-3920], [1,3,6293], [0,6294,6295,6296,5], [0,-90,-12218,-336,-1801,-865,-12219,-494,-3862,-125], -[0,-3174,-48,-11,-3476,-170,-21,-132,-137,-6020,-245,-1178,-319,-153,-120,-1478,-307,-29,-5,-6021,-12220,-47,-89,-157, --12221,-12222,-284,-369,-8,-176,-1086,-800,-242,-38,-682,-1452,-6,-36,-818], +[0,-3174,-48,-11,-3476,-170,-21,-132,-137,-6020,-245,-1178,-319,-153,-120,-1478,-307,-29,-5,-6021,-12220,-47,-89,-157,-12221,-12222,-284,-369,-8,-176,-1086,-800,-242,-38,-682,-1452,-6,-36,-818], [0,-6,-353,-865,-1490,-2899,-695,-390,-3585,-4508,-12223], [1,3,6298], [0,0,0,6299,5], @@ -9798,10 +7137,8 @@ true, [0,-4254,-458], [1,3,6321], [0,6322,6323,6324,6], -[0,-12238,-12239,-12240,-109,-1893,-2670,-1522,-5142,-1209,-12241,-20,-481,-624,-3922,-12242,-210,-337,-1629,-28,-78,-23, --92,-88,-3,-12243,-152,-325,-5536,-1120,-16,-2261,-139,-1473,-125], -[0,-4068,-245,-5,-22,-19,-625,-26,-1,-10,-547,-101,-17,-974,-4486,-12244,-12245,-1440,-197,-15,-6,-36,-7,-809,-33,-82, --2017], +[0,-12238,-12239,-12240,-109,-1893,-2670,-1522,-5142,-1209,-12241,-20,-481,-624,-3922,-12242,-210,-337,-1629,-28,-78,-23,-92,-88,-3,-12243,-152,-325,-5536,-1120,-16,-2261,-139,-1473,-125], +[0,-4068,-245,-5,-22,-19,-625,-26,-1,-10,-547,-101,-17,-974,-4486,-12244,-12245,-1440,-197,-15,-6,-36,-7,-809,-33,-82,-2017], [0,-2389,-12246,-1036,-61,-930,-1717,-1518,-12247,-1517,-131,-913,-76,-94,-95,-473,-2135,-1618,-3,-572], [1,3,6326], [0,6327,6328,6329,8], @@ -9836,8 +7173,7 @@ true, [1,3,6356], [0,6357,6358,6359,4], [0,-2824,-12263,-12264,-12265], -[0,-909,-245,-364,-22,-19,-105,-5288,-407,-1,-5289,-1405,-180,-1223,-211,-115,-2738,-2739,-784,-1948,-1849,-10,-2188,-799, --17,-973,-518,-1108,-2740,-4,-5290,-870,-378,-12266,-5291,-172,-2,-30,-5292], +[0,-909,-245,-364,-22,-19,-105,-5288,-407,-1,-5289,-1405,-180,-1223,-211,-115,-2738,-2739,-784,-1948,-1849,-10,-2188,-799,-17,-973,-518,-1108,-2740,-4,-5290,-870,-378,-12266,-5291,-172,-2,-30,-5292], [0,-2252,-654,-5931,-3903,-12267,-12268,-12269,-12270,-12271,-12272], [1,3,6361], [0,6362,6363,6364,4], @@ -9846,10 +7182,8 @@ true, [0,-905,-103,-171,-111,-2232,-2233,-743,-1158], [1,3,6366], [0,0,6367,6368,6], -[0,-60,-58,-26,-1,-12276,-40,-79,-860,-138,-1661,-213,-1090,-187,-414,-861,-798,-637,-6027,-517,-3,-589,-12277,-15,-2702, --18,-93,-6028], -[0,-6029,-12278,-12279,-12280,-626,-3385,-12281,-12282,-6030,-12283,-103,-388,-1100,-1155,-12284,-12285,-12286,-12287, --12288,-2424,-6031,-12289,-6032,-2810,-12290,-12291,-12292], +[0,-60,-58,-26,-1,-12276,-40,-79,-860,-138,-1661,-213,-1090,-187,-414,-861,-798,-637,-6027,-517,-3,-589,-12277,-15,-2702,-18,-93,-6028], +[0,-6029,-12278,-12279,-12280,-626,-3385,-12281,-12282,-6030,-12283,-103,-388,-1100,-1155,-12284,-12285,-12286,-12287,-12288,-2424,-6031,-12289,-6032,-2810,-12290,-12291,-12292], [1,3,6370], [0,6371,6372,6373,9], [0,-194,-35,-23], @@ -9966,9 +7300,7 @@ true, [0,-12364,-6041,-1859,-1357,-1194], [1,3,6484], [0,6485,0,6486,5], -[0,-3644,-183,-773,-3725,-2620,-2295,-12365,-194,-163,-117,-581,-368,-2995,-40,-2562,-12366,-6042,-28,-3037,-12367,-12368, --272,-6043,-797,-12369,-3063,-4936,-12370,-375,-2386,-4251,-5233,-12371,-1676,-152,-595,-12372,-688,-1585,-4305,-12373, --12374,-564,-2528,-262,-98], +[0,-3644,-183,-773,-3725,-2620,-2295,-12365,-194,-163,-117,-581,-368,-2995,-40,-2562,-12366,-6042,-28,-3037,-12367,-12368,-272,-6043,-797,-12369,-3063,-4936,-12370,-375,-2386,-4251,-5233,-12371,-1676,-152,-595,-12372,-688,-1585,-4305,-12373,-12374,-564,-2528,-262,-98], [0,-12375,-4260,-45,-353,-53,-46,-52,-2633,-12376,-12377,-12378,-12379,-108,-12380,-331,-272,-262,-306,-12381], [1,3,6488], [0,6489,83,6490,4], @@ -9989,30 +7321,23 @@ true, [0,-12392,-6046,-94], [1,3,6505], [0,6506,6507,6508,4], -[0,-20,-2706,-2989,-386,-150,-3146,-408,-118,-12393,-12394,-792,-3547,-1653,-195,-1655,-6047,-12395,-12396,-1970,-12397, --638,-462,-6048,-12398,-2820,-152,-12399,-3869,-492,-1502,-1690,-496,-16,-3435,-3224,-604], +[0,-20,-2706,-2989,-386,-150,-3146,-408,-118,-12393,-12394,-792,-3547,-1653,-195,-1655,-6047,-12395,-12396,-1970,-12397,-638,-462,-6048,-12398,-2820,-152,-12399,-3869,-492,-1502,-1690,-496,-16,-3435,-3224,-604], [0,-2824,-140,-51,-456,-3853,-41,-12400,-27,-139,-379,-12401,-34], [0,-762,-37,-159,-769,-402,-1328,-715,-3515,-1815], [1,3,6510], [0,6511,6512,6513,4], -[0,-549,-728,-312,-28,-463,-597,-1464,-6049,-20,-552,-222,-2847,-1248,-16,-2079,-481,-12402,-1875,-590,-980,-12403,-92, --4740,-4733,-4229,-3060,-4230,-12404,-12405,-885,-6050,-324,-12406,-5858,-12407,-12408,-5859,-12409,-6051,-3291,-468, --792,-975,-1456,-840,-12410,-5861,-1888,-12411,-3292,-12412,-1202,-4738,-1678,-12413,-2265,-4739,-1513,-3296,-5464,-2958, --1272,-4734, +[0,-549,-728,-312,-28,-463,-597,-1464,-6049,-20,-552,-222,-2847,-1248,-16,-2079,-481,-12402,-1875,-590,-980,-12403,-92,-4740,-4733,-4229,-3060,-4230,-12404,-12405,-885,-6050,-324,-12406,-5858,-12407,-12408,-5859,-12409,-6051,-3291,-468,-792,-975,-1456,-840,-12410,-5861,-1888,-12411,-3292,-12412,-1202,-4738,-1678,-12413,-2265,-4739,-1513,-3296,-5464,-2958,-1272,-4734, -4732,-6052], [0,-183,-85,-203,-197,-4741,-274,-7,-624,-522,-6053,-773,-12414,-1677,-1772,-12415,-12416,-756,-755,-3294,-12417], [0,-729,-381,-6054,-1583], [1,3,6515], [0,6516,6517,6518,4], -[0,-941,-325,-462,-20,-118,-547,-744,-12418,-204,-23,-16,-2901,-1984,-1392,-195,-92,-2391,-139,-885,-492,-12419,-1816, --12420,-2671,-12421,-604,-6055], +[0,-941,-325,-462,-20,-118,-547,-744,-12418,-204,-23,-16,-2901,-1984,-1392,-195,-92,-2391,-139,-885,-492,-12419,-1816,-12420,-2671,-12421,-604,-6055], [0,-34,-179,-282,-321,-937,-775], [0,-159,-12422,-693,-2193,-830,-293,-12423,-100,-1886,-37,-1579,-12424,-6056,-1859,-2480], [1,3,6520], [0,0,6521,6522,4], -[0,-12425,-1842,-109,-754,-12426,-12427,-2130,-2902,-421,-12428,-143,-71,-5,-12429,-12430,-662,-2518,-822,-140,-12431, --279,-3928,-22,-19,-430,-13,-239,-2229,-20,-624,-58,-26,-2220,-1,-12,-12432,-83,-9,-180,-115,-67,-226,-5955,-339,-12433, --792,-728,-101,-636,-6057,-1095,-23,-518,-3,-1678,-65,-552,-5020,-326,-4,-362,-12434,-6055, +[0,-12425,-1842,-109,-754,-12426,-12427,-2130,-2902,-421,-12428,-143,-71,-5,-12429,-12430,-662,-2518,-822,-140,-12431,-279,-3928,-22,-19,-430,-13,-239,-2229,-20,-624,-58,-26,-2220,-1,-12,-12432,-83,-9,-180,-115,-67,-226,-5955,-339,-12433,-792,-728,-101,-636,-6057,-1095,-23,-518,-3,-1678,-65,-552,-5020,-326,-4,-362,-12434,-6055, -1695,-7,-3392,-16,-12435,-81,-27,-147,-5359,-139,-33,-2,-3929,-1473,-604,-12436,-104,-6058,-12437,-923,-692], [0,-693,-159,-1583,-2878,-12438,-6059], [1,3,6524], @@ -10087,8 +7412,7 @@ true, [1,3,6593], [0,6594,6595,6596,5], [0,-12461,-6063,-58], -[0,-48,-11,-21,-174,-96,-333,-1047,-218,-158,-26,-1,-185,-9,-40,-41,-486,-12462,-12463,-2906,-6064,-15,-640,-393,-112, --1130,-18], +[0,-48,-11,-21,-174,-96,-333,-1047,-218,-158,-26,-1,-185,-9,-40,-41,-486,-12462,-12463,-2906,-6064,-15,-640,-393,-112,-1130,-18], [0,-277,-1181], [1,3,6598], [0,0,0,6599,5], @@ -10102,13 +7426,11 @@ true, [0,-24,-1321,-12464,-2143,-1499], [1,3,6608], [0,6609,0,6610,4], -[0,-337,-325,-161,-1411,-152,-262,-194,-2990,-44,-98,-210,-460,-16,-510,-543,-857,-92,-691,-1616,-167,-884,-2327,-1640, --636,-1981,-395,-525,-945,-815,-6065,-2267,-6066,-2566,-5920,-12465,-6067], +[0,-337,-325,-161,-1411,-152,-262,-194,-2990,-44,-98,-210,-460,-16,-510,-543,-857,-92,-691,-1616,-167,-884,-2327,-1640,-636,-1981,-395,-525,-945,-815,-6065,-2267,-6066,-2566,-5920,-12465,-6067], [0,-1152,-1765,-1766,-1305,-1306,-2081,-1767,-1768,-826,-2083,-2082,-1514,-6068], [1,3,6612], [0,6613,6614,6615,4], -[0,-5051,-2552,-12466,-457,-1622,-1408,-339,-2693,-1646,-28,-2101,-12467,-3471,-12468,-1787,-2607,-2102,-733,-12469,-552, --12470,-644,-7,-879,-12471,-3472,-98], +[0,-5051,-2552,-12466,-457,-1622,-1408,-339,-2693,-1646,-28,-2101,-12467,-3471,-12468,-1787,-2607,-2102,-733,-12469,-552,-12470,-644,-7,-879,-12471,-3472,-98], [0,-12472,-4965,-416,-147,-97,-134,-85,-125,-222], [0,-823,-1023,-5502,-61], [1,3,6617], @@ -10133,8 +7455,7 @@ true, [0,-426,-1536,-2424,-1100], [1,3,6637], [0,0,6638,6639,6], -[0,-244,-12479,-269,-158,-12480,-1400,-1,-954,-1642,-28,-6071,-1234,-12481,-212,-1235,-5418,-1672,-273,-15,-189,-3839,-16, --5470,-39], +[0,-244,-12479,-269,-158,-12480,-1400,-1,-954,-1642,-28,-6071,-1234,-12481,-212,-1235,-5418,-1672,-273,-15,-189,-3839,-16,-5470,-39], [0,-1775,-6072,-426,-447,-648], [1,3,6641], [0,0,6642,6643,4], @@ -10179,8 +7500,7 @@ true, [0,6681,6682,6683,5], [0,-1226,-1229,-462,-152,-379], [0,-51,-118,-34], -[0,-762,-37,-306,-152,-592,-6083,-3939,-3940,-6084,-3941,-3942,-1343,-94,-420,-2186,-2206,-200,-3943,-1848,-1843,-1190, --1336,-286,-892,-128], +[0,-762,-37,-306,-152,-592,-6083,-3939,-3940,-6084,-3941,-3942,-1343,-94,-420,-2186,-2206,-200,-3943,-1848,-1843,-1190,-1336,-286,-892,-128], [1,3,6685], [0,6686,6687,6688,6], [0,-12503,-12504,-2123], @@ -10280,8 +7600,7 @@ true, [0,6781,6782,6783,5], [0,-12540,-1205,-2310,-58,-1629,-490,-519,-1979,-160,-16], [0,-43,-1,-12541,-3,-6091,-3309,-27], -[0,-1018,-1309,-3881,-3947,-2140,-572,-3463,-1205,-619,-37,-6092,-1358,-12542,-5914,-4272,-160,-2830,-12543,-61,-439, --12544], +[0,-1018,-1309,-3881,-3947,-2140,-572,-3463,-1205,-619,-37,-6092,-1358,-12542,-5914,-4272,-160,-2830,-12543,-61,-439,-12544], [1,3,6785], [0,6786,6787,6788,4], [0,-6053,-3290,-1513,-3296,-1202,-2079,-6050,-1875,-975,-1677,-3292,-1678,-980,-5888,-12545,-1464,-312], @@ -10291,8 +7610,7 @@ true, [0,6791,6792,6793,8], [0,-3800,-5695,-12547,-1061,-2202,-12548,-23,-638,-733,-552,-979,-215,-12549], [0,-1164,-2603,-143,-5,-12550,-336,-232,-1226,-486,-5755,-492,-12551,-155,-2,-34], -[0,-2909,-892,-2826,-113,-200,-3841,-1350,-2242,-6093,-6094,-3416,-2068,-5708,-649,-661,-160,-1582,-292,-265,-926,-31, --1358,-5733,-5547,-3733,-621,-1572,-1193], +[0,-2909,-892,-2826,-113,-200,-3841,-1350,-2242,-6093,-6094,-3416,-2068,-5708,-649,-661,-160,-1582,-292,-265,-926,-31,-1358,-5733,-5547,-3733,-621,-1572,-1193], [1,3,6795], [0,0,6796,6797,4], [0,-5,-105,-922,-3645,-5336,-1,-9,-180,-78,-2,-104,-30], @@ -10317,9 +7635,7 @@ true, [1,3,6816], [0,6817,6818,6819,9], [0,-90,-1741,-2332,-6096,-12553,-205], -[0,-11,-209,-170,-21,-132,-137,-50,-206,-12554,-297,-925,-298,-749,-618,-1177,-12555,-86,-5538,-3949,-149,-158,-26,-1, --5441,-180,-40,-32,-585,-2349,-196,-3854,-12556,-8,-176,-165,-12557,-17,-3301,-1732,-5995,-12558,-160,-346,-122,-84,-104, --12559,-5799], +[0,-11,-209,-170,-21,-132,-137,-50,-206,-12554,-297,-925,-298,-749,-618,-1177,-12555,-86,-5538,-3949,-149,-158,-26,-1,-5441,-180,-40,-32,-585,-2349,-196,-3854,-12556,-8,-176,-165,-12557,-17,-3301,-1732,-5995,-12558,-160,-346,-122,-84,-104,-12559,-5799], [0,-1162,-95,-100], [1,3,6821], [0,6822,0,6823,5], @@ -10429,8 +7745,7 @@ true, [1,3,6926], [0,6927,6928,6929,10], [0,-12598,-12599,-12600,-12601,-5533,-12602,-12603,-1561,-12604,-6102,-12605], -[0,-314,-2898,-12606,-5,-718,-12607,-1726,-1210,-35,-2466,-1,-9,-115,-75,-67,-118,-3950,-12608,-1962,-8,-258,-1433,-12609, --819,-3951,-234,-181,-1253,-7,-16,-881,-12610,-139,-39,-69,-33,-82,-2,-564], +[0,-314,-2898,-12606,-5,-718,-12607,-1726,-1210,-35,-2466,-1,-9,-115,-75,-67,-118,-3950,-12608,-1962,-8,-258,-1433,-12609,-819,-3951,-234,-181,-1253,-7,-16,-881,-12610,-139,-39,-69,-33,-82,-2,-564], [0,-535,-748,-252,-108], [1,3,6931], [0,0,6932,6933,4], @@ -10445,8 +7760,7 @@ true, [0,6941,6942,6943,6], [0,-3709], [0,-34,-51,-82,-379], -[0,-478,-108,-3436,-159,-12614,-655,-2798,-339,-1159,-2799,-2223,-128,-766,-532,-126,-1573,-1170,-1027,-427,-741,-2224, --249], +[0,-478,-108,-3436,-159,-12614,-655,-2798,-339,-1159,-2799,-2223,-128,-766,-532,-126,-1573,-1170,-1027,-427,-741,-2224,-249], [1,3,6945], [0,175,14,6946,5], [0,-2761,-478,-128,-655,-2798,-339,-1159,-2799,-2223,-766,-532,-126,-1573,-1170,-1027,-427,-741,-2224,-249], @@ -10476,11 +7790,8 @@ true, [0,-3834,-6103,-554,-3833,-3836,-1080], [1,3,6972], [0,6973,70,6974,8], -[0,-12619,-12620,-12621,-12622,-1375,-59,-12623,-117,-12624,-58,-2331,-542,-35,-543,-1634,-12625,-72,-1675,-6105,-12626, --12627,-12628,-12629,-2060,-16,-147,-2433,-12630,-101], -[0,-37,-3747,-3748,-1288,-4276,-6106,-258,-108,-40,-1956,-12631,-1585,-12632,-12633,-12634,-6107,-12635,-12636,-1587, --3797,-2269,-1891,-2642,-1736,-12637,-12638,-6108,-12639,-3952,-1871,-1872,-6038,-2439,-12640,-285,-12641,-5337,-12642, --1892,-6108,-12643,-3015,-3920,-12644,-2645,-3924,-5583,-12645,-12646,-12647,-12648,-2245,-2198,-1058,-2809,-12649], +[0,-12619,-12620,-12621,-12622,-1375,-59,-12623,-117,-12624,-58,-2331,-542,-35,-543,-1634,-12625,-72,-1675,-6105,-12626,-12627,-12628,-12629,-2060,-16,-147,-2433,-12630,-101], +[0,-37,-3747,-3748,-1288,-4276,-6106,-258,-108,-40,-1956,-12631,-1585,-12632,-12633,-12634,-6107,-12635,-12636,-1587,-3797,-2269,-1891,-2642,-1736,-12637,-12638,-6108,-12639,-3952,-1871,-1872,-6038,-2439,-12640,-285,-12641,-5337,-12642,-1892,-6108,-12643,-3015,-3920,-12644,-2645,-3924,-5583,-12645,-12646,-12647,-12648,-2245,-2198,-1058,-2809,-12649], [1,3,6976], [0,0,6977,6978,4], [0,-60,-1612,-218,-1,-12,-15,-4,-160,-393,-6109,-39], @@ -10492,16 +7803,14 @@ true, [0,-18,-692,-3859,-3860], [1,3,6985], [0,0,0,6986,4], -[0,-3079,-12654,-693,-6110,-3911,-535,-6111,-729,-1859,-1584,-2141,-381,-2250,-3887,-159,-6054,-1583,-2194,-12655,-12656, --659,-5019,-12657,-6112,-5838], +[0,-3079,-12654,-693,-6110,-3911,-535,-6111,-729,-1859,-1584,-2141,-381,-2250,-3887,-159,-6054,-1583,-2194,-12655,-12656,-659,-5019,-12657,-6112,-5838], [1,3,6988], [0,241,6989,6990,5], [0,-177,-33,-2], [0,-12658,-12659,-12660,-12661,-12662,-12663,-12664,-12665,-100,-12666,-12667,-12668,-12669,-46,-52,-2], [1,3,6992], [0,39,6993,6994,4], -[0,-48,-11,-156,-170,-449,-21,-1167,-207,-62,-237,-91,-86,-270,-12670,-26,-295,-42,-1,-185,-9,-412,-1894,-10,-8,-17,-2911, --4,-12671,-643,-14,-1259,-229,-122,-394,-12672,-2,-1707], +[0,-48,-11,-156,-170,-449,-21,-1167,-207,-62,-237,-91,-86,-270,-12670,-26,-295,-42,-1,-185,-9,-412,-1894,-10,-8,-17,-2911,-4,-12671,-643,-14,-1259,-229,-122,-394,-12672,-2,-1707], [0,-882,-1450,-1627,-12673,-1292,-12674,-6,-1809,-2,-12675,-12676,-12677,-217,-707], [1,3,6996], [0,0,6997,6998,5], @@ -10540,11 +7849,8 @@ true, [0,-24,-1845,-38,-223], [1,3,7031], [0,7032,7033,7034,5], -[0,-157,-2913,-20,-12690,-6122,-38,-12691,-6123,-2403,-12692,-12693,-6124,-12694,-12695,-6125,-12696,-12697,-1985,-1684, --3081,-12698,-6126,-12699,-12700,-12701,-3083,-6127,-12702,-6128,-12703,-6129], -[0,-179,-162,-96,-253,-666,-2303,-3686,-254,-141,-12704,-12705,-12706,-12707,-12708,-1,-12709,-1632,-64,-851,-271,-372, --12710,-101,-859,-220,-12711,-2383,-12712,-12713,-12714,-12715,-12716,-12717,-12718,-12719,-12720,-6064,-1980,-12721, --241,-1247,-12722,-555,-493,-2912,-2725,-121,-6,-36,-12723,-7,-139,-154,-39,-12724,-18,-173,-12725], +[0,-157,-2913,-20,-12690,-6122,-38,-12691,-6123,-2403,-12692,-12693,-6124,-12694,-12695,-6125,-12696,-12697,-1985,-1684,-3081,-12698,-6126,-12699,-12700,-12701,-3083,-6127,-12702,-6128,-12703,-6129], +[0,-179,-162,-96,-253,-666,-2303,-3686,-254,-141,-12704,-12705,-12706,-12707,-12708,-1,-12709,-1632,-64,-851,-271,-372,-12710,-101,-859,-220,-12711,-2383,-12712,-12713,-12714,-12715,-12716,-12717,-12718,-12719,-12720,-6064,-1980,-12721,-241,-1247,-12722,-555,-493,-2912,-2725,-121,-6,-36,-12723,-7,-139,-154,-39,-12724,-18,-173,-12725], [0,-38,-223,-24,-653,-6130], [1,3,7036], [0,7037,0,7038,5], @@ -10579,8 +7885,7 @@ true, [1,3,7066], [0,7067,7068,7069,9], [0,-488,-2490,-38,-1453], -[0,-3699,-157,-13,-149,-1,-12,-1405,-3702,-1223,-115,-2786,-25,-784,-785,-1849,-3,-5475,-15,-2914,-869,-12731,-4,-182, --558,-883], +[0,-3699,-157,-13,-149,-1,-12,-1405,-3702,-1223,-115,-2786,-25,-784,-785,-1849,-3,-5475,-15,-2914,-869,-12731,-4,-182,-558,-883], [0,-38,-400,-31,-73,-12732,-12733,-24,-219,-80,-444,-12734,-883], [1,3,7071], [0,7072,0,7073,10], @@ -10598,8 +7903,7 @@ true, [1,3,7084], [0,7085,7086,7087,5], [0,-516,-16,-386], -[0,-150,-8,-219,-80,-10,-259,-12739,-407,-1,-369,-232,-56,-38,-883,-57,-33,-18,-4,-26,-48,-50,-86,-4420,-139,-11,-1092, --17,-65,-467,-12740,-555,-1452,-49,-115,-529,-134,-21,-84,-145,-868,-9,-617,-151,-12,-25,-315,-12741,-63], +[0,-150,-8,-219,-80,-10,-259,-12739,-407,-1,-369,-232,-56,-38,-883,-57,-33,-18,-4,-26,-48,-50,-86,-4420,-139,-11,-1092,-17,-65,-467,-12740,-555,-1452,-49,-115,-529,-134,-21,-84,-145,-868,-9,-617,-151,-12,-25,-315,-12741,-63], [0,-24,-38,-2236,-18,-3346], [1,3,7089], [0,7090,22,7091,6], @@ -10661,10 +7965,7 @@ true, [0,-38,-2652,-1895,-223,-24,-1499,-107], [1,3,7147], [0,7148,0,7149,5], -[0,-12754,-4902,-12755,-12756,-12757,-12758,-12759,-12760,-12761,-12762,-12763,-12764,-12765,-12766,-12767,-4067,-12768, --12769,-12770,-12771,-12772,-12773,-12774,-12775,-12776,-12777,-12778,-6138,-12779,-2947,-12780,-12781,-12782,-12783, --12784,-12785,-12786,-12787,-12788,-12789,-12790,-157,-301,-12791,-12792,-12793,-4137,-6123,-12794,-4277,-6124,-6125, --1985,-1684,-3081,-12795,-12796,-4366,-12797,-6126,-12798,-4278,-12799, +[0,-12754,-4902,-12755,-12756,-12757,-12758,-12759,-12760,-12761,-12762,-12763,-12764,-12765,-12766,-12767,-4067,-12768,-12769,-12770,-12771,-12772,-12773,-12774,-12775,-12776,-12777,-12778,-6138,-12779,-2947,-12780,-12781,-12782,-12783,-12784,-12785,-12786,-12787,-12788,-12789,-12790,-157,-301,-12791,-12792,-12793,-4137,-6123,-12794,-4277,-6124,-6125,-1985,-1684,-3081,-12795,-12796,-4366,-12797,-6126,-12798,-4278,-12799, -12800,-3083,-4372,-12801,-12802,-12803,-6127,-6128,-6129], [0,-24,-2270,-5249,-2675,-12804,-242,-38,-223,-2576,-2577,-5250,-653], [1,3,7151], @@ -10717,8 +8018,7 @@ true, [0,-402,-696,-159,-234,-6141,-2904,-76,-694], [1,3,7199], [0,0,7200,7201,11], -[0,-12825,-12826,-11,-1284,-4906,-21,-174,-329,-109,-71,-5,-279,-1156,-1009,-12827,-13,-55,-26,-12828,-87,-10,-12829,-677, --3,-345,-1562,-3862,-121,-1785,-27,-190,-177,-2,-289,-104,-30,-1315], +[0,-12825,-12826,-11,-1284,-4906,-21,-174,-329,-109,-71,-5,-279,-1156,-1009,-12827,-13,-55,-26,-12828,-87,-10,-12829,-677,-3,-345,-1562,-3862,-121,-1785,-27,-190,-177,-2,-289,-104,-30,-1315], [0,-494,-6,-102,-2508,-6142,-2241,-127,-12830,-192,-53], [1,3,7203], [0,7204,27,57,5], @@ -10773,15 +8073,11 @@ true, [1,3,7253], [0,7254,7255,7256,5], [0,-1674,-928,-4467,-12848,-12849,-12850], -[0,-325,-263,-855,-8,-152,-118,-490,-6148,-594,-210,-3252,-1544,-117,-41,-245,-1178,-1812,-1085,-1432,-188,-12851,-139, --12852,-2,-29,-5,-3894,-12853,-1377,-1230,-12854,-1677,-12855,-6149,-6150,-12856,-12857,-3879,-12858,-191,-6151,-1313, --1300,-12859,-12860,-12861,-1317,-6152,-12862,-6153,-6154,-12863,-1574,-12864,-12865,-12866,-2644,-12867,-12868], -[0,-826,-12869,-12870,-12871,-12872,-403,-768,-1854,-12873,-753,-12874,-12875,-6155,-595,-12876,-6156,-12877,-6157,-6158, --12878,-12879,-12880,-12881,-12882], +[0,-325,-263,-855,-8,-152,-118,-490,-6148,-594,-210,-3252,-1544,-117,-41,-245,-1178,-1812,-1085,-1432,-188,-12851,-139,-12852,-2,-29,-5,-3894,-12853,-1377,-1230,-12854,-1677,-12855,-6149,-6150,-12856,-12857,-3879,-12858,-191,-6151,-1313,-1300,-12859,-12860,-12861,-1317,-6152,-12862,-6153,-6154,-12863,-1574,-12864,-12865,-12866,-2644,-12867,-12868], +[0,-826,-12869,-12870,-12871,-12872,-403,-768,-1854,-12873,-753,-12874,-12875,-6155,-595,-12876,-6156,-12877,-6157,-6158,-12878,-12879,-12880,-12881,-12882], [1,3,7258], [0,0,7259,7260,4], -[0,-1014,-110,-13,-3960,-150,-12883,-1,-180,-784,-32,-960,-631,-790,-3153,-310,-962,-12884,-1075,-488,-413,-78,-3,-188, --65,-4,-1253,-3706,-5473,-12885,-378,-3707,-600,-12886,-98], +[0,-1014,-110,-13,-3960,-150,-12883,-1,-180,-784,-32,-960,-631,-790,-3153,-310,-962,-12884,-1075,-488,-413,-78,-3,-188,-65,-4,-1253,-3706,-5473,-12885,-378,-3707,-600,-12886,-98], [0,-12887,-2074], [1,3,7262], [0,7263,7264,7265,8], @@ -10837,14 +8133,12 @@ true, [1,3,7313], [0,7314,7315,7316,5], [0,-12897,-12898,-12899,-12900,-12901,-12902,-12903,-12904,-12905,-12906,-5,-1974], -[0,-110,-60,-12907,-1385,-20,-2339,-1,-583,-1068,-340,-6018,-6163,-5630,-32,-790,-1074,-311,-632,-165,-88,-15,-598,-39, --199,-2,-112,-1708,-562,-887], +[0,-110,-60,-12907,-1385,-20,-2339,-1,-583,-1068,-340,-6018,-6163,-5630,-32,-790,-1074,-311,-632,-165,-88,-15,-598,-39,-199,-2,-112,-1708,-562,-887], [0,-12908,-6164,-2916,-2], [1,3,7318], [0,7319,7320,7321,5], [0,-6165,-1893,-4403,-1717,-20,-28,-196,-4416,-521,-1324,-1120,-147,-4423,-3149,-98], -[0,-3230,-471,-1195,-12909,-927,-5,-163,-13,-239,-2262,-411,-40,-32,-2917,-3033,-119,-23,-227,-3,-12910,-7,-986,-16,-199, --1896,-2,-2918], +[0,-3230,-471,-1195,-12909,-927,-5,-163,-13,-239,-2262,-411,-40,-32,-2917,-3033,-119,-23,-227,-3,-12910,-7,-986,-16,-199,-1896,-2,-2918], [0,-184,-76,-61,-930,-1588,-1036], [1,3,7323], [0,7324,7325,7326,4], @@ -10897,8 +8191,7 @@ true, [1,3,7371], [0,7372,7373,7374,4], [0,-5296], -[0,-12943,-12944,-244,-60,-1385,-12945,-1398,-1400,-1,-1069,-954,-28,-5417,-12946,-5978,-5297,-1234,-459,-212,-1235,-516, --72,-1672,-5109,-273,-15,-1245,-5487,-189,-3839,-39,-12947], +[0,-12943,-12944,-244,-60,-1385,-12945,-1398,-1400,-1,-1069,-954,-28,-5417,-12946,-5978,-5297,-1234,-459,-212,-1235,-516,-72,-1672,-5109,-273,-15,-1245,-5487,-189,-3839,-39,-12947], [0,-982,-465,-702,-200,-166,-447], [1,3,7376], [0,7377,7378,7379,4], @@ -10915,22 +8208,17 @@ true, [0,-983,-59,-1537,-2919,-1530,-824,-2268,-2654], [1,3,7389], [0,119,120,7390,4], -[0,-983,-6090,-12955,-12956,-12957,-45,-3614,-1854,-278,-2,-3615,-753,-440,-1530,-12958,-983,-12959,-12960,-12961,-3891, --2268,-12962,-3912,-3618,-1847,-12963,-479,-1344,-3619,-3620,-2748,-3621,-3622,-3623,-3624,-3625,-3626,-3627,-3628,-3617, --12964,-2196,-3629,-924,-3630,-3631,-3632,-3633,-3634,-3635,-3636,-3637,-2749,-136,-1556,-3638,-2605,-3639,-521,-12965, --708,-3921,-12966, +[0,-983,-6090,-12955,-12956,-12957,-45,-3614,-1854,-278,-2,-3615,-753,-440,-1530,-12958,-983,-12959,-12960,-12961,-3891,-2268,-12962,-3912,-3618,-1847,-12963,-479,-1344,-3619,-3620,-2748,-3621,-3622,-3623,-3624,-3625,-3626,-3627,-3628,-3617,-12964,-2196,-3629,-924,-3630,-3631,-3632,-3633,-3634,-3635,-3636,-3637,-2749,-136,-1556,-3638,-2605,-3639,-521,-12965,-708,-3921,-12966, -1328,-12967,-242,-144,-6168,-5967,-574,-3640,-42,-1551], [1,3,7392], [0,7393,7394,7395,4], [0,-461,-12968,-12969,-951], -[0,-28,-602,-78,-1,-396,-30,-33,-18,-4,-214,-48,-141,-2,-11,-5,-1423,-93,-96,-372,-154,-1701,-524,-526,-1156,-366,-1279, --21,-880,-173,-12970,-342,-9,-397,-12,-148,-25,-374,-137,-12971,-19,-2216,-2920,-22,-4682,-246], +[0,-28,-602,-78,-1,-396,-30,-33,-18,-4,-214,-48,-141,-2,-11,-5,-1423,-93,-96,-372,-154,-1701,-524,-526,-1156,-366,-1279,-21,-880,-173,-12970,-342,-9,-397,-12,-148,-25,-374,-137,-12971,-19,-2216,-2920,-22,-4682,-246], [0,-4285,-420,-895,-821,-1494,-1495,-53], [1,3,7397], [0,7398,7399,7400,11], [0,-58,-3910,-3072], -[0,-15,-54,-490,-1,-7,-14,-16,-110,-1227,-6169,-416,-181,-1870,-11,-6170,-21,-723,-75,-511,-3678,-2844,-207,-847,-9, --12972,-67,-584,-237,-83,-211,-77,-1631,-62,-12973,-1007], +[0,-15,-54,-490,-1,-7,-14,-16,-110,-1227,-6169,-416,-181,-1870,-11,-6170,-21,-723,-75,-511,-3678,-2844,-207,-847,-9,-12972,-67,-584,-237,-83,-211,-77,-1631,-62,-12973,-1007], [0,-61,-401,-280,-1163,-85,-39,-79,-248], [1,3,7402], [0,7403,7404,7405,8], @@ -10940,8 +8228,7 @@ true, [1,3,7407], [0,7408,7409,7410,4], [0,-117,-58,-12978,-1409,-12979,-126,-1133], -[0,-59,-1206,-321,-6171,-941,-5808,-5810,-723,-3678,-118,-1227,-41,-54,-164,-4180,-584,-511,-2844,-304,-2828,-512,-5809, --2829,-5893,-6170,-343,-181,-416,-275,-16], +[0,-59,-1206,-321,-6171,-941,-5808,-5810,-723,-3678,-118,-1227,-41,-54,-164,-4180,-584,-511,-2844,-304,-2828,-512,-5809,-2829,-5893,-6170,-343,-181,-416,-275,-16], [0,-61,-401,-248], [1,3,7412], [0,7413,7414,7415,9], @@ -10950,8 +8237,7 @@ true, [0,-12981,-567], [1,3,7417], [0,0,7418,7419,5], -[0,-48,-11,-21,-174,-450,-207,-2864,-12982,-777,-110,-940,-26,-12983,-1,-9,-1224,-247,-101,-3,-65,-15,-7,-14,-807,-12984, --12985,-27,-3117,-6172], +[0,-48,-11,-21,-174,-450,-207,-2864,-12982,-777,-110,-940,-26,-12983,-1,-9,-1224,-247,-101,-3,-65,-15,-7,-14,-807,-12984,-12985,-27,-3117,-6172], [0,-643,-759,-704,-1030,-1141,-2900,-6173,-12986,-3961,-5782,-6174], [1,3,7421], [0,7422,27,7423,6], @@ -10986,8 +8272,7 @@ true, [1,3,7451], [0,7452,7453,7454,5], [0,-90,-254,-1254], -[0,-3963,-153,-120,-2026,-29,-5,-47,-89,-3491,-26,-1396,-1,-145,-151,-788,-12991,-340,-28,-219,-415,-3964,-1989,-4843,-6, --36,-346,-2], +[0,-3963,-153,-120,-2026,-29,-5,-47,-89,-3491,-26,-1396,-1,-145,-151,-788,-12991,-340,-28,-219,-415,-3964,-1989,-4843,-6,-36,-346,-2], [0,-6,-106,-12992,-1359,-352,-2747], [1,3,7456], [0,7457,7458,7459,5], @@ -10997,8 +8282,7 @@ true, [1,3,7461], [0,7462,7463,7464,5], [0,-90,-437], -[0,-3963,-120,-29,-5,-47,-89,-1834,-12994,-1519,-3491,-1936,-26,-1396,-1,-145,-151,-788,-28,-10,-17,-415,-4,-3964,-6,-36, --2], +[0,-3963,-120,-29,-5,-47,-89,-1834,-12994,-1519,-3491,-1936,-26,-1396,-1,-145,-151,-788,-28,-10,-17,-415,-4,-3964,-6,-36,-2], [0,-6,-136], [1,3,7466], [0,0,0,41,10], @@ -11024,26 +8308,21 @@ true, [1,3,7487], [0,7488,7489,7490,5], [0,-13006,-23,-461,-13007,-121,-13008,-1128], -[0,-13009,-13010,-3490,-5091,-1019,-179,-162,-86,-96,-6176,-321,-666,-1048,-429,-13,-3965,-141,-431,-409,-1636,-372,-1423, --342,-4214,-8,-489,-13011,-3,-1980,-159,-241,-6,-5579,-13012,-36,-1990,-13013,-287,-1116,-2418,-7,-154,-13014,-18,-173], +[0,-13009,-13010,-3490,-5091,-1019,-179,-162,-86,-96,-6176,-321,-666,-1048,-429,-13,-3965,-141,-431,-409,-1636,-372,-1423,-342,-4214,-8,-489,-13011,-3,-1980,-159,-241,-6,-5579,-13012,-36,-1990,-13013,-287,-1116,-2418,-7,-154,-13014,-18,-173], [0,-6,-6177,-106,-3729,-2556,-13015,-1582,-13016,-996,-2053], [1,3,7492], [0,7493,7494,7495,9], [0,-778,-121], -[0,-48,-11,-156,-209,-300,-21,-132,-174,-96,-776,-141,-1392,-1,-255,-9,-148,-64,-186,-340,-342,-13017,-374,-6,-36,-154, --39,-18,-93,-173], +[0,-48,-11,-156,-209,-300,-21,-132,-174,-96,-776,-141,-1392,-1,-255,-9,-148,-64,-186,-340,-342,-13017,-374,-6,-36,-154,-39,-18,-93,-173], [0,-131,-106,-6,-13018,-1053], [1,3,7497], [0,7498,7499,7500,9], [0,-2476,-302,-1061], -[0,-11,-156,-2492,-1007,-209,-21,-132,-137,-50,-13019,-207,-77,-62,-206,-330,-319,-120,-307,-364,-29,-1780,-5,-47,-89,-22, --19,-1205,-86,-776,-158,-13020,-1,-12,-9,-145,-64,-186,-2852,-10,-8,-1782,-1427,-176,-17,-23,-4,-6,-36,-14,-2608,-80, --739,-182,-558,-2505,-2437,-57,-44,-2,-84], +[0,-11,-156,-2492,-1007,-209,-21,-132,-137,-50,-13019,-207,-77,-62,-206,-330,-319,-120,-307,-364,-29,-1780,-5,-47,-89,-22,-19,-1205,-86,-776,-158,-13020,-1,-12,-9,-145,-64,-186,-2852,-10,-8,-1782,-1427,-176,-17,-23,-4,-6,-36,-14,-2608,-80,-739,-182,-558,-2505,-2437,-57,-44,-2,-84], [0,-6,-4721,-3267,-1013,-106], [1,3,7502], [0,7503,7504,7,5], -[0,-152,-20,-965,-204,-1112,-2169,-339,-13021,-392,-725,-1075,-139,-885,-225,-737,-301,-732,-2671,-13022,-505,-1993,-4291, --408,-1639], +[0,-152,-20,-965,-204,-1112,-2169,-339,-13021,-392,-725,-1075,-139,-885,-225,-737,-301,-732,-2671,-13022,-505,-1993,-4291,-408,-1639], [0,-8,-26], [1,3,7506], [0,7507,7508,7,6], @@ -11063,9 +8342,7 @@ true, [1,3,7521], [0,7522,7523,7524,4], [0,-13026,-13027,-121], -[0,-48,-11,-156,-1007,-3966,-1039,-13028,-2148,-1326,-6180,-170,-21,-132,-174,-49,-1032,-13029,-5905,-207,-77,-62,-297, --925,-749,-618,-1177,-705,-4799,-13030,-319,-153,-120,-1478,-47,-89,-22,-19,-86,-270,-1603,-482,-26,-1,-12,-9,-148,-75, --25,-64,-186,-10,-13031,-3046,-8,-17,-518,-1251,-4,-6,-36,-2414,-287,-7, +[0,-48,-11,-156,-1007,-3966,-1039,-13028,-2148,-1326,-6180,-170,-21,-132,-174,-49,-1032,-13029,-5905,-207,-77,-62,-297,-925,-749,-618,-1177,-705,-4799,-13030,-319,-153,-120,-1478,-47,-89,-22,-19,-86,-270,-1603,-482,-26,-1,-12,-9,-148,-75,-25,-64,-186,-10,-13031,-3046,-8,-17,-518,-1251,-4,-6,-36,-2414,-287,-7, -14,-229,-122,-328,-154,-882,-2,-18,-13032], [0,-106,-6,-1345,-1855,-1182], [1,3,7526], @@ -11075,25 +8352,21 @@ true, [1,3,7530], [0,7531,7532,7533,4], [0,-241,-121,-2470,-13038], -[0,-162,-91,-1206,-333,-1379,-775,-253,-666,-13,-149,-385,-295,-1,-13039,-12,-9,-148,-256,-25,-64,-66,-79,-675,-13040, --138,-588,-213,-13041,-187,-731,-637,-676,-6027,-3,-4,-6,-36,-7,-14,-275,-466,-347,-877,-27,-190], +[0,-162,-91,-1206,-333,-1379,-775,-253,-666,-13,-149,-385,-295,-1,-13039,-12,-9,-148,-256,-25,-64,-66,-79,-675,-13040,-138,-588,-213,-13041,-187,-731,-637,-676,-6027,-3,-4,-6,-36,-7,-14,-275,-466,-347,-877,-27,-190], [0,-3091,-13042,-6,-1890,-13043,-2921,-13044,-1584,-2905,-1756,-13045,-230], [1,3,7535], [0,0,7536,7537,4], -[0,-498,-451,-77,-62,-206,-245,-1178,-153,-120,-29,-5,-47,-89,-1747,-483,-1,-12,-2484,-25,-64,-186,-911,-10,-8,-176, --13046,-4417,-17,-4,-6,-36,-7,-14,-305,-82,-2,-84,-818,-263], +[0,-498,-451,-77,-62,-206,-245,-1178,-153,-120,-29,-5,-47,-89,-1747,-483,-1,-12,-2484,-25,-64,-186,-911,-10,-8,-176,-13046,-4417,-17,-4,-6,-36,-7,-14,-305,-82,-2,-84,-818,-263], [0,-6,-696,-570,-899,-3967,-423,-2,-3268], [1,3,7539], [0,7540,7541,7542,6], [0,-3890,-852,-963,-732,-121,-1460,-1463,-130], -[0,-4637,-47,-1751,-179,-162,-91,-86,-1603,-1206,-1379,-775,-580,-253,-666,-149,-2146,-1936,-26,-431,-13047,-947,-1,-255, --12,-9,-148,-64,-10,-8,-17,-4,-6,-36,-13048,-287,-3099,-7,-14,-275,-466,-1118,-347,-877,-807,-134,-6181], +[0,-4637,-47,-1751,-179,-162,-91,-86,-1603,-1206,-1379,-775,-580,-253,-666,-149,-2146,-1936,-26,-431,-13047,-947,-1,-255,-12,-9,-148,-64,-10,-8,-17,-4,-6,-36,-13048,-287,-3099,-7,-14,-275,-466,-1118,-347,-877,-807,-134,-6181], [0,-6,-45,-18,-1822,-1094,-3968,-3892,-2271,-831,-1585], [1,3,7544], [0,7545,7546,7547,6], [0,-90,-4414,-2272], -[0,-48,-11,-156,-13049,-300,-398,-170,-449,-21,-132,-174,-207,-77,-62,-237,-206,-319,-153,-120,-29,-47,-105,-1853,-162, --1291,-2658,-55,-582,-26,-1,-255,-12,-9,-3969,-148,-64,-1406,-1233,-10,-1079,-17,-72,-4,-6,-36,-287,-7,-14,-2,-30,-98], +[0,-48,-11,-156,-13049,-300,-398,-170,-449,-21,-132,-174,-207,-77,-62,-237,-206,-319,-153,-120,-29,-47,-105,-1853,-162,-1291,-2658,-55,-582,-26,-1,-255,-12,-9,-3969,-148,-64,-1406,-1233,-10,-1079,-17,-72,-4,-6,-36,-287,-7,-14,-2,-30,-98], [0,-1079,-1885,-1078,-3837,-2855,-2243,-3838,-6,-527], [1,3,7549], [0,0,7550,7551,10], @@ -11116,19 +8389,16 @@ true, [1,3,7567], [0,7568,7569,7570,5], [0,-13061,-121,-1460,-605], -[0,-6183,-179,-162,-91,-96,-270,-253,-666,-2302,-55,-26,-1,-12,-2920,-9,-148,-25,-64,-5044,-79,-138,-588,-213,-187,-414, --637,-517,-3,-65,-4,-6,-36,-873,-557,-81,-112,-18,-93,-173], +[0,-6183,-179,-162,-91,-96,-270,-253,-666,-2302,-55,-26,-1,-12,-2920,-9,-148,-25,-64,-5044,-79,-138,-588,-213,-187,-414,-637,-517,-3,-65,-4,-6,-36,-873,-557,-81,-112,-18,-93,-173], [0,-6,-106,-1511,-3971], [1,3,7572], [0,7573,7574,7575,5], [0,-1449,-121,-684], -[0,-281,-13062,-162,-91,-96,-1054,-141,-1,-255,-1632,-9,-148,-64,-412,-1894,-13063,-6184,-373,-79,-588,-389,-13064,-2365, --517,-13065,-867,-1990,-154,-18,-173], +[0,-281,-13062,-162,-91,-96,-1054,-141,-1,-255,-1632,-9,-148,-64,-412,-1894,-13063,-6184,-373,-79,-588,-389,-13064,-2365,-517,-13065,-867,-1990,-154,-18,-173], [0,-6,-131,-106,-13066,-2922,-13067,-13068,-500,-3972,-102], [1,3,7577], [0,7578,0,246,4], -[0,-205,-1479,-98,-16,-171,-1608,-58,-674,-987,-1045,-86,-6185,-313,-1976,-818,-6186,-683,-686,-13069,-1203,-6187,-2261, --6188,-3845,-346,-6189,-794,-6190,-6191,-6192,-6193,-6194,-13070,-6195,-6196], +[0,-205,-1479,-98,-16,-171,-1608,-58,-674,-987,-1045,-86,-6185,-313,-1976,-818,-6186,-683,-686,-13069,-1203,-6187,-2261,-6188,-3845,-346,-6189,-794,-6190,-6191,-6192,-6193,-6194,-13070,-6195,-6196], [1,3,7580], [0,0,7581,7582,4], [0,-13073,-3973,-13074,-1,-25,-4,-6,-235,-2273,-2], @@ -11136,14 +8406,11 @@ true, [1,3,7584], [0,7585,7586,7587,6], [0,-98,-121], -[0,-6,-1,-13076,-13077,-1654,-4,-4792,-48,-13078,-11,-91,-3014,-13079,-5611,-13080,-13081,-13082,-13083,-13084,-64,-255, --9,-12,-148,-25,-186,-1732], +[0,-6,-1,-13076,-13077,-1654,-4,-4792,-48,-13078,-11,-91,-3014,-13079,-5611,-13080,-13081,-13082,-13083,-13084,-64,-255,-9,-12,-148,-25,-186,-1732], [0,-235,-106,-1037,-6,-95,-291,-355,-2923,-764,-6197,-102,-745,-1008,-1354,-2237,-1149], [1,3,7589], [0,0,7590,7591,9], -[0,-48,-11,-209,-300,-998,-21,-132,-174,-13085,-2461,-3720,-2291,-2165,-330,-153,-120,-307,-47,-19,-91,-96,-270,-4494, --254,-302,-26,-1,-12,-1632,-9,-64,-340,-78,-1099,-3524,-4,-1762,-6,-36,-13086,-14,-275,-466,-2608,-876,-347,-877,-807, --214,-2,-30,-18,-93,-173], +[0,-48,-11,-209,-300,-998,-21,-132,-174,-13085,-2461,-3720,-2291,-2165,-330,-153,-120,-307,-47,-19,-91,-96,-270,-4494,-254,-302,-26,-1,-12,-1632,-9,-64,-340,-78,-1099,-3524,-4,-1762,-6,-36,-13086,-14,-275,-466,-2608,-876,-347,-877,-807,-214,-2,-30,-18,-93,-173], [0,-106,-6,-13087,-352,-1538,-13088,-5173], [1,3,7593], [0,0,7594,7595,4], @@ -11162,8 +8429,7 @@ true, [1,3,7607], [0,7608,7609,7610,4], [0,-4213,-13096,-121,-4956], -[0,-330,-109,-13097,-614,-13098,-13099,-71,-47,-89,-279,-22,-19,-13,-26,-1,-847,-340,-78,-13100,-3,-4,-6,-36,-7,-14,-3392, --81,-27,-44,-155,-124,-2], +[0,-330,-109,-13097,-614,-13098,-13099,-71,-47,-89,-279,-22,-19,-13,-26,-1,-847,-340,-78,-13100,-3,-4,-6,-36,-7,-14,-3392,-81,-27,-44,-155,-124,-2], [0,-24,-106,-6182,-6,-95,-13101,-13102,-4591,-13103,-649,-131], [1,3,7612], [0,7613,7614,248,6], @@ -11175,14 +8441,11 @@ true, [0,-172,-6,-6199,-36,-2], [1,3,7620], [0,0,7621,7622,4], -[0,-179,-162,-91,-96,-5765,-5766,-580,-321,-666,-2979,-429,-1,-1221,-485,-9,-148,-64,-338,-1422,-5679,-6184,-79,-588,-213, --187,-414,-637,-517,-3,-6,-36,-872,-873,-327,-13104,-13105,-13106,-18], +[0,-179,-162,-91,-96,-5765,-5766,-580,-321,-666,-2979,-429,-1,-1221,-485,-9,-148,-64,-338,-1422,-5679,-6184,-79,-588,-213,-187,-414,-637,-517,-3,-6,-36,-872,-873,-327,-13104,-13105,-13106,-18], [0,-6,-327,-442], [1,3,7624], [0,7625,28,7,4], -[0,-2310,-8,-210,-1,-16,-38,-392,-126,-18,-41,-1950,-430,-86,-141,-11,-271,-467,-559,-96,-301,-1660,-154,-1910,-945,-686, --493,-1255,-3084,-880,-964,-805,-2409,-2420,-173,-342,-1086,-3857,-397,-1607,-1451,-3130,-1221,-374,-2455,-1214,-2976, --1613,-2020], +[0,-2310,-8,-210,-1,-16,-38,-392,-126,-18,-41,-1950,-430,-86,-141,-11,-271,-467,-559,-96,-301,-1660,-154,-1910,-945,-686,-493,-1255,-3084,-880,-964,-805,-2409,-2420,-173,-342,-1086,-3857,-397,-1607,-1451,-3130,-1221,-374,-2455,-1214,-2976,-1613,-2020], [1,3,7627], [0,7628,7629,7630,11], [0,-90,-2534,-1147,-2543,-1487,-1976,-121,-687,-3243], @@ -11191,26 +8454,19 @@ true, [1,3,7632], [0,7633,7634,7635,5], [0,-254,-13107,-1972,-1117], -[0,-48,-11,-156,-209,-449,-21,-132,-6201,-153,-120,-307,-5,-157,-162,-86,-96,-721,-141,-323,-150,-1402,-1,-9,-64,-40, --13108,-32,-310,-10,-8,-176,-968,-859,-17,-1247,-493,-4,-684,-6,-36,-346,-27,-13109,-154,-1130,-18,-93,-173,-13110], +[0,-48,-11,-156,-209,-449,-21,-132,-6201,-153,-120,-307,-5,-157,-162,-86,-96,-721,-141,-323,-150,-1402,-1,-9,-64,-40,-13108,-32,-310,-10,-8,-176,-968,-859,-17,-1247,-493,-4,-684,-6,-36,-346,-27,-13109,-154,-1130,-18,-93,-173,-13110], [0,-6202,-1589,-13111,-13112,-1359,-106], [1,3,7637], [0,7638,7639,7640,5], -[0,-13113,-1727,-13114,-202,-1827,-280,-2616,-1051,-1614,-13115,-302,-13116,-508,-158,-1863,-13117,-948,-408,-2339,-786, --2265,-1159,-13118,-499,-28,-13119,-1957,-1082,-13120,-13121,-13122,-13123,-13124,-13125,-13126,-13127,-490,-6203,-23, --5622,-2379,-13128,-1742,-325,-436,-121,-13129,-13130,-1255,-3090,-13131,-13132,-13133,-3093,-3375,-1257,-274,-13134, --397,-5469,-13135,-348,-173, +[0,-13113,-1727,-13114,-202,-1827,-280,-2616,-1051,-1614,-13115,-302,-13116,-508,-158,-1863,-13117,-948,-408,-2339,-786,-2265,-1159,-13118,-499,-28,-13119,-1957,-1082,-13120,-13121,-13122,-13123,-13124,-13125,-13126,-13127,-490,-6203,-23,-5622,-2379,-13128,-1742,-325,-436,-121,-13129,-13130,-1255,-3090,-13131,-13132,-13133,-3093,-3375,-1257,-274,-13134,-397,-5469,-13135,-348,-173, -524], -[0,-48,-11,-209,-21,-1167,-132,-137,-153,-120,-13136,-13137,-6179,-13138,-320,-6204,-29,-13139,-143,-13140,-5,-1006,-47, --89,-13141,-13142,-526,-13143,-2540,-22,-19,-162,-91,-86,-96,-141,-3960,-13144,-13145,-13146,-1,-13147,-246,-847,-9,-148, --64,-271,-41,-10,-8,-13148,-17,-259,-4,-684,-6,-36,-287,-13149,-154,-2,-438,-18, +[0,-48,-11,-209,-21,-1167,-132,-137,-153,-120,-13136,-13137,-6179,-13138,-320,-6204,-29,-13139,-143,-13140,-5,-1006,-47,-89,-13141,-13142,-526,-13143,-2540,-22,-19,-162,-91,-86,-96,-141,-3960,-13144,-13145,-13146,-1,-13147,-246,-847,-9,-148,-64,-271,-41,-10,-8,-13148,-17,-259,-4,-684,-6,-36,-287,-13149,-154,-2,-438,-18, -93], [0,-6,-904,-2090,-2588,-42,-399,-116,-131,-127], [1,3,7642], [0,7643,7644,7645,4], [0,-90,-4087,-997,-121], -[0,-11,-170,-21,-132,-50,-1543,-207,-77,-62,-237,-206,-120,-29,-614,-5,-47,-89,-1748,-776,-1718,-1,-12,-64,-186,-911,-56, --8,-176,-197,-345,-4,-6,-36,-14,-276,-394,-4869,-57,-33,-2,-84], +[0,-11,-170,-21,-132,-50,-1543,-207,-77,-62,-237,-206,-120,-29,-614,-5,-47,-89,-1748,-776,-1718,-1,-12,-64,-186,-911,-56,-8,-176,-197,-345,-4,-6,-36,-14,-276,-394,-4869,-57,-33,-2,-84], [0,-266,-31,-1788,-1789,-45,-6,-13150,-265,-13151,-2], [1,3,7647], [0,7648,0,7649,6], @@ -11227,8 +8483,7 @@ true, [1,3,7659], [0,7660,7661,7662,5], [0,-13158,-13159], -[0,-110,-60,-1385,-455,-13160,-2500,-1944,-13161,-1402,-1,-6206,-54,-164,-3867,-240,-5375,-584,-175,-13162,-5811,-13163, --489,-551,-867,-1821,-13164,-1257,-3772,-161,-2,-112,-6159,-1710], +[0,-110,-60,-1385,-455,-13160,-2500,-1944,-13161,-1402,-1,-6206,-54,-164,-3867,-240,-5375,-584,-175,-13162,-5811,-13163,-489,-551,-867,-1821,-13164,-1257,-3772,-161,-2,-112,-6159,-1710], [0,-6,-904,-2794,-1168], [1,3,7664], [0,7665,0,7666,10], @@ -11237,9 +8492,7 @@ true, [1,3,7668], [0,7669,7670,7671,6], [0,-302,-121,-1626,-1434,-90,-1460], -[0,-8,-10,-6,-606,-1,-7,-14,-149,-38,-18,-412,-340,-4,-26,-514,-160,-36,-48,-86,-1054,-141,-11,-271,-17,-682,-93,-157,-91, --96,-435,-873,-154,-493,-449,-1894,-13167,-557,-21,-1167,-3653,-173,-132,-13168,-783,-64,-13169,-342,-287,-275,-807, --13170,-877,-12,-485,-148,-25,-466,-6207,-347,-851,-1007,-170,-5061, +[0,-8,-10,-6,-606,-1,-7,-14,-149,-38,-18,-412,-340,-4,-26,-514,-160,-36,-48,-86,-1054,-141,-11,-271,-17,-682,-93,-157,-91,-96,-435,-873,-154,-493,-449,-1894,-13167,-557,-21,-1167,-3653,-173,-132,-13168,-783,-64,-13169,-342,-287,-275,-807,-13170,-877,-12,-485,-148,-25,-466,-6207,-347,-851,-1007,-170,-5061, -13171,-209,-398,-776], [0,-6,-527,-106,-1580,-1301,-6208,-6209,-6210,-752,-13172,-2609,-3956,-3514,-1774,-2822], [1,3,7673], @@ -11250,9 +8503,7 @@ true, [1,3,7678], [0,7679,7680,7681,5], [0,-90,-820,-254,-121,-2471,-687], -[0,-48,-11,-156,-1039,-931,-300,-398,-21,-132,-1515,-1777,-1154,-6211,-1019,-153,-120,-307,-47,-91,-86,-96,-1607,-453, --284,-385,-3885,-26,-13174,-1063,-337,-1,-255,-12,-485,-9,-148,-64,-2582,-13175,-8,-176,-78,-859,-677,-4,-6,-36,-3091, --13176,-873,-287,-2,-18], +[0,-48,-11,-156,-1039,-931,-300,-398,-21,-132,-1515,-1777,-1154,-6211,-1019,-153,-120,-307,-47,-91,-86,-96,-1607,-453,-284,-385,-3885,-26,-13174,-1063,-337,-1,-255,-12,-485,-9,-148,-64,-2582,-13175,-8,-176,-78,-859,-677,-4,-6,-36,-3091,-13176,-873,-287,-2,-18], [0,-4298,-453,-6,-131,-127,-106,-102], [1,3,7683], [0,7684,7685,7,4], @@ -11265,13 +8516,11 @@ true, [1,3,7691], [0,7692,14,7693,4], [0,-3709,-1690,-215], -[0,-108,-597,-166,-128,-303,-2269,-2180,-478,-655,-2798,-339,-1159,-2799,-2223,-766,-532,-126,-1573,-1170,-1027,-427,-741, --2224,-249], +[0,-108,-597,-166,-128,-303,-2269,-2180,-478,-655,-2798,-339,-1159,-2799,-2223,-766,-532,-126,-1573,-1170,-1027,-427,-741,-2224,-249], [1,3,7695], [0,7696,7697,7698,9], [0,-1203,-294,-410,-286,-2683], -[0,-11,-2148,-1326,-290,-77,-2697,-62,-623,-60,-43,-87,-13177,-1,-83,-9,-115,-67,-391,-4,-14,-2850,-85,-13178,-39,-312, --289,-18,-93], +[0,-11,-2148,-1326,-290,-77,-2697,-62,-623,-60,-43,-87,-13177,-1,-83,-9,-115,-67,-391,-4,-14,-2850,-85,-13178,-39,-312,-289,-18,-93], [0,-1351,-252,-2260], [1,3,7700], [0,0,7701,7702,8], @@ -11304,11 +8553,8 @@ true, [0,-688], [1,3,7729], [0,7730,7731,150,10], -[0,-1143,-4631,-227,-2536,-436,-739,-1450,-3001,-254,-1978,-121,-4634,-4635,-4632,-4636,-951,-4633,-681,-3240,-2460, --13194], -[0,-684,-200,-8,-1240,-10,-6,-44,-431,-1,-7,-158,-483,-101,-803,-276,-57,-33,-4643,-18,-4,-36,-141,-328,-2,-109,-29,-2538, --5,-4642,-93,-47,-419,-435,-154,-1278,-2050,-3241,-1006,-4641,-526,-1720,-1293,-2541,-1516,-4638,-89,-997,-882,-2540, --1049,-173,-4640,-508,-64,-342,-9,-4639,-176,-1712,-2539,-19,-186,-385, +[0,-1143,-4631,-227,-2536,-436,-739,-1450,-3001,-254,-1978,-121,-4634,-4635,-4632,-4636,-951,-4633,-681,-3240,-2460,-13194], +[0,-684,-200,-8,-1240,-10,-6,-44,-431,-1,-7,-158,-483,-101,-803,-276,-57,-33,-4643,-18,-4,-36,-141,-328,-2,-109,-29,-2538,-5,-4642,-93,-47,-419,-435,-154,-1278,-2050,-3241,-1006,-4641,-526,-1720,-1293,-2541,-1516,-4638,-89,-997,-882,-2540,-1049,-173,-4640,-508,-64,-342,-9,-4639,-176,-1712,-2539,-19,-186,-385, -2537,-1639,-22,-6213], [1,3,7733], [0,7734,7735,7736,4], @@ -11327,8 +8573,7 @@ true, [1,3,7747], [0,7748,7749,7750,5], [0,-23,-437,-4163,-674,-1656,-121,-90,-963], -[0,-161,-8,-10,-6,-327,-1,-7,-149,-18,-412,-4,-26,-514,-36,-48,-780,-328,-11,-13207,-17,-872,-93,-91,-96,-13208,-21,-132, --1604,-783,-64,-3474,-287,-9,-6216,-13209,-485,-148,-1221,-523,-186,-705,-2920,-170,-209,-998], +[0,-161,-8,-10,-6,-327,-1,-7,-149,-18,-412,-4,-26,-514,-36,-48,-780,-328,-11,-13207,-17,-872,-93,-91,-96,-13208,-21,-132,-1604,-783,-64,-3474,-287,-9,-6216,-13209,-485,-148,-1221,-523,-186,-705,-2920,-170,-209,-998], [0,-6,-527,-1228,-327,-872,-4300,-570,-2258], [1,3,7752], [0,7753,7754,7755,6], @@ -11394,11 +8639,9 @@ true, [0,-2274,-363,-713,-31,-107,-377,-1038,-919,-447,-400,-1035,-135], [1,3,7814], [0,7815,7816,7817,5], -[0,-13224,-665,-13225,-1378,-5147,-481,-2717,-2078,-195,-13226,-1238,-344,-6048,-152,-325,-1497,-2803,-16,-313,-289,-2003, --13227,-525], +[0,-13224,-665,-13225,-1378,-5147,-481,-2717,-2078,-195,-13226,-1238,-344,-6048,-152,-325,-1497,-2803,-16,-313,-289,-2003,-13227,-525], [0,-50,-13228,-5,-1,-1866,-56,-1504,-799,-13229,-13230,-4,-146,-13231,-312,-2], -[0,-712,-830,-1815,-13232,-402,-545,-1558,-1886,-2701,-159,-769,-1328,-3768,-378,-2755,-2905,-267,-1339,-611,-715,-16, --107], +[0,-712,-830,-1815,-13232,-402,-545,-1558,-1886,-2701,-159,-769,-1328,-3768,-378,-2755,-2905,-267,-1339,-611,-715,-16,-107], [1,3,7819], [0,7820,7821,7822,4], [0,-66,-92,-142,-130,-69], @@ -11433,17 +8676,12 @@ true, [0,-2274,-363,-99,-929,-166,-107,-274,-2275,-400,-1035,-135], [1,3,7851], [0,7852,7853,7854,9], -[0,-6220,-13239,-522,-13240,-13241,-3803,-3804,-3805,-3806,-3807,-6221,-3808,-6222,-3809,-6223,-6224,-6225,-6226,-5702, --6227,-3810,-6228,-6229,-6230,-6231,-6232,-6233,-3811,-6234,-13242,-6235,-6236,-6237,-6238,-6239,-6240,-3812,-3813,-3814, --6241,-3815,-3816,-2095,-6242,-1773,-6243,-13243,-135], +[0,-6220,-13239,-522,-13240,-13241,-3803,-3804,-3805,-3806,-3807,-6221,-3808,-6222,-3809,-6223,-6224,-6225,-6226,-5702,-6227,-3810,-6228,-6229,-6230,-6231,-6232,-6233,-3811,-6234,-13242,-6235,-6236,-6237,-6238,-6239,-6240,-3812,-3813,-3814,-6241,-3815,-3816,-2095,-6242,-1773,-6243,-13243,-135], [0,-49,-63,-1,-1404,-1638,-10,-17,-4,-146,-34], [0,-545,-3561,-274], [1,3,7856], [0,7857,7858,7859,4], -[0,-6220,-522,-1772,-3803,-3804,-3805,-3806,-13244,-3807,-13245,-6221,-3808,-6222,-3809,-6223,-6224,-6225,-5701,-6226, --13246,-13247,-13248,-13249,-13250,-13251,-13252,-13253,-13254,-13255,-6227,-13256,-3810,-13257,-6228,-13258,-6229,-6230, --6231,-6232,-6233,-3811,-6234,-13259,-13260,-13261,-6235,-6236,-13262,-13263,-6237,-6238,-6239,-13264,-13265,-6240,-3812, --3813,-3814,-6241,-3815,-3816,-2095,-6242, +[0,-6220,-522,-1772,-3803,-3804,-3805,-3806,-13244,-3807,-13245,-6221,-3808,-6222,-3809,-6223,-6224,-6225,-5701,-6226,-13246,-13247,-13248,-13249,-13250,-13251,-13252,-13253,-13254,-13255,-6227,-13256,-3810,-13257,-6228,-13258,-6229,-6230,-6231,-6232,-6233,-3811,-6234,-13259,-13260,-13261,-6235,-6236,-13262,-13263,-6237,-6238,-6239,-13264,-13265,-6240,-3812,-3813,-3814,-6241,-3815,-3816,-2095,-6242, -1811,-1773,-5703,-6243,-13266,-395,-135], [0,-4,-146,-236,-2,-34], [0,-3561,-274,-13267], @@ -11467,8 +8705,7 @@ true, [0,-1189,-193,-3568,-128], [1,3,7879], [0,7880,7881,7882,10], -[0,-465,-2891,-125,-432,-13269,-5112,-13270,-628,-344,-13271,-497,-1129,-13272,-13273,-13274,-13275,-6244,-5587,-1449, --1088], +[0,-465,-2891,-125,-432,-13269,-5112,-13270,-628,-344,-13271,-497,-1129,-13272,-13273,-13274,-13275,-6244,-5587,-1449,-1088], [0,-15,-39,-79,-13276,-7,-149,-114,-97,-55,-6245,-3711,-60,-1612,-5714,-588,-1123,-860,-640,-3749,-2365], [0,-103,-654,-136,-208], [1,3,7884], @@ -11490,8 +8727,7 @@ true, [0,-425,-2838,-13277], [1,3,7901], [0,0,7902,7903,5], -[0,-1909,-120,-143,-47,-89,-1748,-22,-6249,-19,-13278,-1,-64,-13279,-78,-23,-1667,-1976,-13280,-6214,-4,-6,-36,-872,-7, --276,-172,-2,-30], +[0,-1909,-120,-143,-47,-89,-1748,-22,-6249,-19,-13278,-1,-64,-13279,-78,-23,-1667,-1976,-13280,-6214,-4,-6,-36,-872,-7,-276,-172,-2,-30], [0,-6,-327], [1,3,7905], [0,0,7906,7907,4], @@ -11512,14 +8748,11 @@ true, [1,3,7921], [0,7922,7923,7924,5], [0,-3982,-2049,-41,-247,-101,-13284,-125], -[0,-48,-11,-829,-209,-578,-300,-1326,-449,-21,-90,-49,-4578,-297,-298,-51,-194,-91,-333,-1047,-163,-13,-13285,-55,-3960, --203,-4699,-1,-13286,-13287,-9,-211,-256,-13288,-75,-67,-784,-13289,-724,-2340,-151,-40,-13290,-10,-4222,-3056,-1095,-3, --974,-13291,-15,-122,-13292,-123,-13293], +[0,-48,-11,-829,-209,-578,-300,-1326,-449,-21,-90,-49,-4578,-297,-298,-51,-194,-91,-333,-1047,-163,-13,-13285,-55,-3960,-203,-4699,-1,-13286,-13287,-9,-211,-256,-13288,-75,-67,-784,-13289,-724,-2340,-151,-40,-13290,-10,-4222,-3056,-1095,-3,-974,-13291,-15,-122,-13292,-123,-13293], [0,-569,-1376,-116,-42,-13294,-1145,-13295,-422,-100,-103], [1,3,7926], [0,7927,7928,7929,4], -[0,-465,-779,-13296,-260,-680,-1250,-808,-6252,-125,-23,-16,-3126,-6105,-434,-955,-2632,-2299,-5532,-6244,-13297,-5125, --13298], +[0,-465,-779,-13296,-260,-680,-1250,-808,-6252,-125,-23,-16,-3126,-6105,-434,-955,-2632,-2299,-5532,-6244,-13297,-5125,-13298], [0,-15,-325,-13,-28,-3,-27,-1,-72,-7,-195,-679,-4,-55,-439,-13299,-3726,-234,-181,-42,-13300,-13301,-180,-12,-25], [0,-1752,-53,-40,-13302], [1,3,7931], @@ -11544,8 +8777,7 @@ true, [1,3,7950], [0,0,7951,7952,4], [0,-3202,-149,-3984,-3985,-3950,-13310,-1096,-13311,-13312,-643,-97,-85,-82], -[0,-426,-2189,-1144,-507,-709,-1335,-838,-1851,-2190,-2741,-2191,-13313,-6255,-3984,-13314,-535,-574,-6256,-13315,-13316, --6257,-6258,-3985,-13317], +[0,-426,-2189,-1144,-507,-709,-1335,-838,-1851,-2190,-2741,-2191,-13313,-6255,-3984,-13314,-535,-574,-6256,-13315,-13316,-6257,-6258,-3985,-13317], [1,3,7954], [0,7955,7956,7957,4], [0,-28,-13318], @@ -11558,9 +8790,7 @@ true, [0,-13321,-5990,-2925,-3875,-2242,-292,-13322,-1357,-4309,-3416,-13323,-13324,-6262,-13325,-217], [1,3,7964], [0,202,7965,7966,4], -[0,-3550,-5988,-3551,-5174,-3549,-3548,-50,-1300,-1729,-13326,-3348,-530,-2165,-77,-238,-62,-237,-206,-330,-758,-13327, --71,-5,-662,-140,-2823,-13328,-202,-13329,-1827,-1051,-1384,-117,-284,-158,-26,-6263,-1402,-1630,-1,-12,-25,-151,-785, --1227,-13330,-41,-4785,-56,-10,-2585,-17,-2089,-296,-259,-3,-285,-13331,-15,-1316,-167,-326,-1724, +[0,-3550,-5988,-3551,-5174,-3549,-3548,-50,-1300,-1729,-13326,-3348,-530,-2165,-77,-238,-62,-237,-206,-330,-758,-13327,-71,-5,-662,-140,-2823,-13328,-202,-13329,-1827,-1051,-1384,-117,-284,-158,-26,-6263,-1402,-1630,-1,-12,-25,-151,-785,-1227,-13330,-41,-4785,-56,-10,-2585,-17,-2089,-296,-259,-3,-285,-13331,-15,-1316,-167,-326,-1724, -4,-1113,-520,-871,-416,-14,-876,-16,-394,-879,-130,-147,-1702,-177,-44,-2,-84,-104,-817,-73,-990,-1531,-13332,-525], [0,-381,-2763,-6264,-349,-1844], [1,3,7968], @@ -11593,8 +8823,7 @@ true, [1,3,7995], [0,7996,7997,7998,5], [0,-13338,-1312,-23,-296,-233,-13339,-13340,-13341], -[0,-11,-21,-174,-207,-77,-62,-2550,-22,-19,-452,-270,-1,-185,-9,-257,-41,-6071,-32,-13342,-3028,-196,-373,-4,-7,-14,-6265, --13343,-161,-2], +[0,-11,-21,-174,-207,-77,-62,-2550,-22,-19,-452,-270,-1,-185,-9,-257,-41,-6071,-32,-13342,-3028,-196,-373,-4,-7,-14,-6265,-13343,-161,-2], [0,-14,-770], [1,3,8000], [0,8001,8002,252,6], @@ -11640,8 +8869,7 @@ true, [1,3,8041], [0,8042,8043,8044,4], [0,-152,-326,-130,-98], -[0,-77,-62,-206,-330,-1738,-13349,-13350,-13351,-13352,-13353,-6269,-5,-662,-419,-454,-1941,-2674,-5266,-5270,-1942,-2333, --232,-65,-1562,-38,-2725,-494,-4,-994,-14,-1311,-80,-44,-2,-104,-30], +[0,-77,-62,-206,-330,-1738,-13349,-13350,-13351,-13352,-13353,-6269,-5,-662,-419,-454,-1941,-2674,-5266,-5270,-1942,-2333,-232,-65,-1562,-38,-2725,-494,-4,-994,-14,-1311,-80,-44,-2,-104,-30], [0,-770,-13354,-1155,-6270,-13355,-13356], [1,3,8046], [0,8047,8048,8049,5], @@ -11654,19 +8882,12 @@ true, [1,3,8054], [0,8055,8056,254,10], [0,-2019,-1012,-1386,-1052,-324,-38,-147,-3112,-2866,-781,-689], -[0,-13357,-505,-11,-156,-891,-209,-931,-3475,-300,-6271,-1040,-3194,-995,-398,-170,-21,-132,-137,-90,-539,-450,-6272, --6273,-6274,-6275,-3247,-1760,-663,-1906,-6276,-6277,-6278,-6279,-6280,-1317,-366,-245,-3347,-6281,-6282,-13358,-1867, --757,-3987,-3861,-2867,-1738,-6283,-751,-6284,-3353,-2603,-1024,-169,-3988,-6285,-471,-898,-1753,-143,-6286,-4958,-6287, --662,-6288,-47,-89,-1834,-140,-6289,-3555,-1532,-3989,-3990,-475,-2215,-3451,-202,-13359,-1479,-774,-280,-1378,-3991, --2216,-776,-3507,-301,-294,-454,-6290,-2463,-58,-6291,-367,-2714,-3509,-942,-846,-336,-225,-1617,-1718,-2732,-2724,-35, --2097,-3505,-6292,-410,-339,-669,-28,-1075,-586,-2356,-3508,-727,-1484,-6293,-1652,-2251,-856,-1236,-272,-797,-2795, --6294,-434,-374,-800,-639,-6295,-2238,-1444,-325,-3503,-1743,-1110,-681,-553,-326,-1821,-1451,-2729,-1986,-2730,-2469, --805,-1453,-869,-464,-286,-981,-2684,-1458,-686,-346,-467,-16,-808,-3992,-2219,-737,-130,-880,-2261,-2685,-3502,-2561, --2926,-2683,-139,-2057,-312,-6296,-177,-397,-885,-2686,-3506,-1134,-6297,-136,-3504,-2276,-3858,-18,-205,-263], +[0,-13357,-505,-11,-156,-891,-209,-931,-3475,-300,-6271,-1040,-3194,-995,-398,-170,-21,-132,-137,-90,-539,-450,-6272,-6273,-6274,-6275,-3247,-1760,-663,-1906,-6276,-6277,-6278,-6279,-6280,-1317,-366,-245,-3347,-6281,-6282,-13358,-1867,-757,-3987,-3861,-2867,-1738,-6283,-751,-6284,-3353,-2603,-1024,-169,-3988,-6285,-471,-898,-1753,-143,-6286,-4958,-6287, +-662,-6288,-47,-89,-1834,-140,-6289,-3555,-1532,-3989,-3990,-475,-2215,-3451,-202,-13359,-1479,-774,-280,-1378,-3991,-2216,-776,-3507,-301,-294,-454,-6290,-2463,-58,-6291,-367,-2714,-3509,-942,-846,-336,-225,-1617,-1718,-2732,-2724,-35,-2097,-3505,-6292,-410,-339,-669,-28,-1075,-586,-2356,-3508,-727,-1484,-6293,-1652,-2251,-856,-1236,-272,-797,-2795, +-6294,-434,-374,-800,-639,-6295,-2238,-1444,-325,-3503,-1743,-1110,-681,-553,-326,-1821,-1451,-2729,-1986,-2730,-2469,-805,-1453,-869,-464,-286,-981,-2684,-1458,-686,-346,-467,-16,-808,-3992,-2219,-737,-130,-880,-2261,-2685,-3502,-2561,-2926,-2683,-139,-2057,-312,-6296,-177,-397,-885,-2686,-3506,-1134,-6297,-136,-3504,-2276,-3858,-18,-205,-263], [1,3,8058], [0,0,8059,8060,9], -[0,-2659,-1605,-2660,-2661,-5435,-2662,-2663,-2664,-2665,-1606,-253,-5434,-3675,-3666,-2320,-1928,-5430,-3669,-5433,-5432, --1399,-2767,-3676,-13360,-5431,-3,-1686], +[0,-2659,-1605,-2660,-2661,-5435,-2662,-2663,-2664,-2665,-1606,-253,-5434,-3675,-3666,-2320,-1928,-5430,-3669,-5433,-5432,-1399,-2767,-3676,-13360,-5431,-3,-1686], [0,-5436,-504], [1,3,8062], [0,8063,8064,8065,5], @@ -11687,9 +8908,7 @@ true, [0,-13364,-13365,-13366,-5496,-3993,-3994], [1,3,8079], [0,33,8080,8081,9], -[0,-13367,-2284,-245,-1012,-109,-143,-71,-5,-1748,-279,-1287,-6298,-22,-19,-580,-13,-13368,-217,-133,-26,-295,-3645,-408, --1,-5794,-628,-41,-28,-5175,-10,-3430,-17,-23,-88,-3,-285,-65,-4702,-1821,-4,-171,-14,-13369,-13370,-347,-276,-394,-27, --190,-147,-1702,-33,-199,-1268,-13371,-13372,-13373,-2,-1707,-13374,-18], +[0,-13367,-2284,-245,-1012,-109,-143,-71,-5,-1748,-279,-1287,-6298,-22,-19,-580,-13,-13368,-217,-133,-26,-295,-3645,-408,-1,-5794,-628,-41,-28,-5175,-10,-3430,-17,-23,-88,-3,-285,-65,-4702,-1821,-4,-171,-14,-13369,-13370,-347,-276,-394,-27,-190,-147,-1702,-33,-199,-1268,-13371,-13372,-13373,-2,-1707,-13374,-18], [0,-3993,-3994,-13375,-13376,-6299,-13377,-3566,-6300,-924,-2722], [1,3,8083], [0,0,31,8084,9], @@ -11701,9 +8920,7 @@ true, [0,-769,-5848,-159,-13382,-1339,-1579,-13383], [1,3,8091], [0,8092,8093,8094,4], -[0,-6301,-13384,-59,-13385,-20,-58,-13386,-367,-218,-336,-581,-1213,-13387,-337,-40,-850,-6302,-28,-13388,-13389,-6262, --13390,-13391,-13392,-13393,-13394,-88,-6303,-735,-553,-554,-495,-6304,-13395,-13396,-16,-1699,-393,-13397,-13398,-1471, --989,-13399], +[0,-6301,-13384,-59,-13385,-20,-58,-13386,-367,-218,-336,-581,-1213,-13387,-337,-40,-850,-6302,-28,-13388,-13389,-6262,-13390,-13391,-13392,-13393,-13394,-88,-6303,-735,-553,-554,-495,-6304,-13395,-13396,-16,-1699,-393,-13397,-13398,-1471,-989,-13399], [0,-110,-1935,-1,-411,-41,-13400,-3,-976,-641,-13401,-13402,-13403,-13404,-13405,-13406,-81,-1262,-123,-161], [0,-2277,-13407,-40,-13408,-6305,-1752,-1148,-802,-810], [1,3,8096], @@ -11723,8 +8940,7 @@ true, [1,3,8110], [0,8111,8112,8113,5], [0,-2238], -[0,-48,-11,-21,-49,-63,-50,-529,-315,-4118,-26,-407,-141,-150,-232,-781,-1,-12,-617,-9,-145,-180,-115,-25,-151,-271,-4369, --56,-10,-8,-17,-13413,-259,-1242,-13414,-65,-4,-80,-1498,-16,-134,-154,-2,-84,-18,-93,-173], +[0,-48,-11,-21,-49,-63,-50,-529,-315,-4118,-26,-407,-141,-150,-232,-781,-1,-12,-617,-9,-145,-180,-115,-25,-151,-271,-4369,-56,-10,-8,-17,-13413,-259,-1242,-13414,-65,-4,-80,-1498,-16,-134,-154,-2,-84,-18,-93,-173], [0,-80,-3771,-18,-831], [0,44,15,16,9], [1,3,8116], @@ -11738,8 +8954,7 @@ true, [1,3,8124], [0,8125,8126,48,4], [0,-183,-773,-2620,-652], -[0,-150,-8,-10,-1,-232,-56,-18,-4,-48,-50,-86,-2,-11,-5,-17,-65,-49,-115,-529,-134,-21,-145,-180,-9,-617,-151,-12,-25, --315,-63], +[0,-150,-8,-10,-1,-232,-56,-18,-4,-48,-50,-86,-2,-11,-5,-17,-65,-49,-115,-529,-134,-21,-145,-180,-9,-617,-151,-12,-25,-315,-63], [1,3,8128], [0,8129,8130,8131,5], [0,-6,-36,-242], @@ -11759,25 +8974,19 @@ true, [0,-572,-1036,-61,-930,-1588], [1,3,8145], [0,8146,8147,8148,5], -[0,-925,-13425,-749,-618,-1177,-13426,-386,-35,-13427,-118,-510,-13428,-487,-13429,-3796,-792,-13430,-461,-227,-2161,-361, --13431,-5855,-1502,-644,-16,-4603,-98], -[0,-5,-4601,-51,-43,-1615,-295,-2999,-13432,-41,-387,-101,-1095,-5471,-13433,-197,-345,-3995,-4,-470,-27,-13434,-379, --1703], +[0,-925,-13425,-749,-618,-1177,-13426,-386,-35,-13427,-118,-510,-13428,-487,-13429,-3796,-792,-13430,-461,-227,-2161,-361,-13431,-5855,-1502,-644,-16,-4603,-98], +[0,-5,-4601,-51,-43,-1615,-295,-2999,-13432,-41,-387,-101,-1095,-5471,-13433,-197,-345,-3995,-4,-470,-27,-13434,-379,-1703], [0,-13435,-572,-830,-365,-478,-769,-3768,-16,-715], [1,3,8150], [0,8151,8152,7,4], [0,-90,-13436,-13437,-820,-13438,-302,-13439,-23,-461,-121,-437,-2471,-1463], -[0,-13440,-48,-11,-209,-1039,-931,-1040,-170,-21,-132,-174,-13441,-3284,-13442,-13443,-1516,-47,-22,-19,-1751,-13444,-91, --96,-13445,-333,-1604,-13446,-776,-6176,-13447,-13,-13448,-778,-26,-483,-35,-1393,-944,-1863,-431,-1,-255,-12,-2484,-9, --148,-256,-64,-186,-1949,-340,-32,-1954,-360,-10,-5093,-79,-138,-6245,-588,-187,-414,-517, --1093,-17,-3,-4,-436,-160,-685,-6,-13449,-13450,-3090,-36,-1990,-2413,-873,-557,-13451,-13452,-13453,-287,-13454,-7, --13455,-13456,-5347,-27,-190,-328,-1125,-13457,-397,-13458,-69,-2,-70,-18,-523,-93,-1711], +[0,-13440,-48,-11,-209,-1039,-931,-1040,-170,-21,-132,-174,-13441,-3284,-13442,-13443,-1516,-47,-22,-19,-1751,-13444,-91,-96,-13445,-333,-1604,-13446,-776,-6176,-13447,-13,-13448,-778,-26,-483,-35,-1393,-944,-1863,-431,-1,-255,-12,-2484,-9,-148,-256,-64,-186,-1949,-340,-32,-1954,-360,-10,-5093,-79,-138,-6245,-588,-187,-414,-517, +-1093,-17,-3,-4,-436,-160,-685,-6,-13449,-13450,-3090,-36,-1990,-2413,-873,-557,-13451,-13452,-13453,-287,-13454,-7,-13455,-13456,-5347,-27,-190,-328,-1125,-13457,-397,-13458,-69,-2,-70,-18,-523,-93,-1711], [1,3,8154], [0,8155,8156,8157,4], [0,-1,-1631,-83,-6312,-9,-115,-67,-64,-6313], [0,-1504,-491,-72,-7,-1697,-39], -[0,-2776,-13459,-293,-619,-334,-2777,-2778,-2779,-1187,-1183,-1,-1566,-587,-119,-224,-2780,-1186,-13460,-654,-97,-2781, --230,-2782,-2783,-1565], +[0,-2776,-13459,-293,-619,-334,-2777,-2778,-2779,-1187,-1183,-1,-1566,-587,-119,-224,-2780,-1186,-13460,-654,-97,-2781,-230,-2782,-2783,-1565], [1,3,8159], [0,0,8160,7,5], [0,-755,-756,-110,-85], @@ -11787,8 +8996,7 @@ true, [0,-914,-128,-216], [1,3,8166], [0,8167,8168,8169,5], -[0,-13461,-4664,-13462,-3996,-13463,-13464,-13465,-13466,-4236,-2375,-88,-5669,-13467,-13468,-13469,-465,-13470,-13471, --13472], +[0,-13461,-4664,-13462,-3996,-13463,-13464,-13465,-13466,-4236,-2375,-88,-5669,-13467,-13468,-13469,-465,-13470,-13471,-13472], [0,-3248,-3249,-13473,-5,-59,-13474,-55,-13475,-247,-13476,-3746,-4,-13477,-13478,-13479,-13480,-13481,-2], [0,-2256,-1323,-1891,-13482,-2157,-13483,-5983,-5084,-13484,-53,-13485,-13486,-13487,-1141,-5926], [1,3,8171], @@ -11798,9 +9006,7 @@ true, [1,3,8175], [0,8176,8177,8178,5], [0,-13490,-125,-35,-13491,-23,-233,-16,-439,-1080,-169,-13492,-13493,-863,-3482,-13494,-3878], -[0,-595,-15,-13,-202,-627,-4410,-10,-3,-552,-27,-1,-6314,-1674,-7,-231,-87,-6315,-13495,-813,-2873,-2874,-13496,-625,-26, --226,-13497,-1983,-13498,-3982,-1641,-190,-2,-109,-5,-787,-17,-71,-279,-2906,-665,-143,-13499,-13500,-13501,-49,-239, --13502,-518,-122,-3603,-147,-180,-256,-13503,-19,-13504,-1032,-22,-13505,-13506], +[0,-595,-15,-13,-202,-627,-4410,-10,-3,-552,-27,-1,-6314,-1674,-7,-231,-87,-6315,-13495,-813,-2873,-2874,-13496,-625,-26,-226,-13497,-1983,-13498,-3982,-1641,-190,-2,-109,-5,-787,-17,-71,-279,-2906,-665,-143,-13499,-13500,-13501,-49,-239,-13502,-518,-122,-3603,-147,-180,-256,-13503,-19,-13504,-1032,-22,-13505,-13506], [0,-550,-6315,-1290,-1169,-928,-595,-1673,-13507,-6314,-2249,-2874,-2880,-13508,-802,-353,-13509,-403,-768], [1,3,8180], [0,0,8181,8182,4], @@ -11809,8 +9015,7 @@ true, [1,3,8184], [0,8185,37,8186,6], [0,-35,-13510,-13511,-13512,-13513,-13514,-13515,-13516,-13517,-13518,-13519,-13520,-13521,-13522], -[0,-13523,-13524,-13525,-13526,-6316,-3925,-4221,-13527,-13528,-13529,-5805,-13530,-13531,-2868,-2423,-13532,-13533,-252, --445,-13534], +[0,-13523,-13524,-13525,-13526,-6316,-3925,-4221,-13527,-13528,-13529,-5805,-13530,-13531,-2868,-2423,-13532,-13533,-252,-445,-13534], [1,3,8188], [0,8189,8190,8191,4], [0,-183,-774,-1209,-20,-2989,-367,-13535,-13536,-1332,-2706,-6317], @@ -11835,10 +9040,8 @@ true, [0,-2279,-13542,-2136,-1330,-13543,-2144,-13544,-1165,-892,-52,-13545], [1,3,8210], [0,8211,8212,8213,5], -[0,-13546,-6318,-13547,-13548,-1289,-6319,-6320,-6321,-5994,-6322,-5010,-6323,-6324,-13549,-2891,-453,-4794,-13550,-3441, --13551,-152,-3588,-205], -[0,-13552,-2559,-13553,-29,-5,-698,-475,-22,-19,-6324,-3441,-87,-6325,-1,-12,-2785,-246,-9,-25,-10,-8,-13554,-13555, --13556,-13557,-635,-3073,-4,-5011,-134,-57,-33,-380,-2,-125], +[0,-13546,-6318,-13547,-13548,-1289,-6319,-6320,-6321,-5994,-6322,-5010,-6323,-6324,-13549,-2891,-453,-4794,-13550,-3441,-13551,-152,-3588,-205], +[0,-13552,-2559,-13553,-29,-5,-698,-475,-22,-19,-6324,-3441,-87,-6325,-1,-12,-2785,-246,-9,-25,-10,-8,-13554,-13555,-13556,-13557,-635,-3073,-4,-5011,-134,-57,-33,-380,-2,-125], [0,-3168,-1330,-61,-8,-2279,-1763,-30,-2136,-5033,-3456,-3457,-13558], [1,3,8215], [0,8216,0,7,4], @@ -11896,8 +9099,7 @@ true, [0,-402,-13596,-6147], [1,3,8269], [0,0,8270,8271,5], -[0,-82,-8,-10,-1251,-1,-7,-14,-4,-26,-86,-11,-29,-284,-6329,-435,-90,-357,-21,-1633,-13597,-156,-207,-229,-237,-6330,-77, --62,-1865,-13598,-1603,-1040], +[0,-82,-8,-10,-1251,-1,-7,-14,-4,-26,-86,-11,-29,-284,-6329,-435,-90,-357,-21,-1633,-13597,-156,-207,-229,-237,-6330,-77,-62,-1865,-13598,-1603,-1040], [0,-4866,-2708,-2909,-1194,-53,-6,-184,-73,-442,-2157,-52], [1,3,8273], [0,8274,8275,8276,4], @@ -11910,8 +9112,7 @@ true, [0,-13,-2695,-94,-6331,-13604,-27,-61,-5261,-5262,-1550], [1,3,8282], [0,8283,8284,8285,5], -[0,-4709,-1143,-59,-1210,-13605,-13606,-72,-16,-1840,-40,-101,-111,-1630,-58,-92,-1089,-247,-163,-367,-633,-372,-13607, --13608,-198,-13609], +[0,-4709,-1143,-59,-1210,-13605,-13606,-72,-16,-1840,-40,-101,-111,-1630,-58,-92,-1089,-247,-163,-367,-633,-372,-13607,-13608,-198,-13609], [0,-3,-114,-60,-13610], [0,-2145,-478,-2755,-2266,-381,-596,-216], [1,3,8287], @@ -11957,8 +9158,7 @@ true, [1,3,8327], [0,8328,8329,8330,5], [0,-194,-13642,-35,-1412,-955,-487,-23,-1119,-1264,-2698,-13643], -[0,-50,-169,-3232,-143,-5,-6333,-3533,-163,-133,-203,-944,-1397,-1,-40,-953,-28,-3,-15,-4,-198,-16,-393,-81,-27,-147, --3876,-124,-2,-84], +[0,-50,-169,-3232,-143,-5,-6333,-3533,-163,-133,-203,-944,-1397,-1,-40,-953,-28,-3,-15,-4,-198,-16,-393,-81,-27,-147,-3876,-124,-2,-84], [0,-3105], [1,3,8332], [0,8333,0,8334,4], @@ -11992,8 +9192,7 @@ true, [0,-266,-31,-3611,-6336,-2734,-166,-447], [1,3,8362], [0,8363,8364,8365,8], -[0,-13648,-13649,-6337,-3766,-6338,-231,-308,-58,-226,-324,-371,-6339,-54,-240,-629,-584,-511,-1951,-341,-304,-2346,-247, --372,-488,-968,-101,-6340,-272,-23,-227,-13650,-38,-80,-4333,-161], +[0,-13648,-13649,-6337,-3766,-6338,-231,-308,-58,-226,-324,-371,-6339,-54,-240,-629,-584,-511,-1951,-341,-304,-2346,-247,-372,-488,-968,-101,-6340,-272,-23,-227,-13650,-38,-80,-4333,-161], [0,-48,-11,-21,-174,-4786,-13651,-13,-239,-2519,-1,-256,-75,-129,-3,-285,-4,-1461,-7,-27,-190], [0,-371,-399,-42,-13652,-13653,-100,-908,-116], [1,3,8367], @@ -12030,8 +9229,7 @@ true, [1,3,8398], [0,8399,91,8400,9], [0,-262], -[0,-4325,-108,-262,-5764,-5833,-768,-2152,-3998,-13674,-3226,-403,-42,-46,-1341,-375,-1410,-550,-813,-537,-13675,-928, --108,-836,-13676], +[0,-4325,-108,-262,-5764,-5833,-768,-2152,-3998,-13674,-3226,-403,-42,-46,-1341,-375,-1410,-550,-813,-537,-13675,-928,-108,-836,-13676], [1,3,8402], [0,0,8403,7,11], [0,-21,-86,-8,-13677], @@ -12039,8 +9237,7 @@ true, [0,8406,8407,8408,6], [0,-1,-83,-6312,-9,-115,-67,-64,-6313,-13678], [0,-225,-1420,-88,-6342,-1697,-4937,-39], -[0,-2776,-293,-619,-334,-2777,-2778,-2779,-1187,-1183,-1,-1566,-587,-119,-224,-2780,-1186,-654,-97,-2781,-230,-2782,-2783, --1565], +[0,-2776,-293,-619,-334,-2777,-2778,-2779,-1187,-1183,-1,-1566,-587,-119,-224,-2780,-1186,-654,-97,-2781,-230,-2782,-2783,-1565], [1,3,8410], [0,8411,8412,8413,5], [0,-20,-541,-13679,-1212,-3885,-1216,-2805,-13680,-510,-339,-6163,-16,-13681,-98], @@ -12063,25 +9260,18 @@ true, [1,3,8429], [0,8430,8431,8432,4], [0,-205,-152,-1257,-16,-87,-3518,-2929,-2587,-6345,-2272,-153,-307], -[0,-337,-263,-13,-203,-28,-516,-738,-118,-1093,-259,-2511,-6,-288,-2220,-204,-639,-2393,-13695,-87,-13696,-1643,-101, --1743,-126,-2449,-2930,-1450,-4,-4832,-475,-430,-58,-4365,-326,-13697,-36,-2522,-215,-2276,-890,-2570,-528,-13698,-167, --130,-139,-2,-11,-1356,-5,-225,-1624,-13699,-450,-2670,-4833,-3322,-405,-13700,-140,-6346,-1216,-6347, --1541,-6348,-2690,-2534,-1147,-421,-822,-3999,-3546,-4000,-2056,-13701,-3977,-815,-539,-1598,-1337,-13702,-13703,-13704, --2267,-891,-13705,-662,-13706,-557,-13707,-778,-2931,-1024,-6349,-3285,-13708,-13709,-13710,-13711,-13712,-13713,-3412, --601,-13714,-6350,-13715,-13716,-319,-6351,-4001,-2124,-13717,-2535,-120,-13718,-13719,-4681,-3696,-2459,-13720,-1493, --13721,-13722,-13723,-4901,-13724,-13725, +[0,-337,-263,-13,-203,-28,-516,-738,-118,-1093,-259,-2511,-6,-288,-2220,-204,-639,-2393,-13695,-87,-13696,-1643,-101,-1743,-126,-2449,-2930,-1450,-4,-4832,-475,-430,-58,-4365,-326,-13697,-36,-2522,-215,-2276,-890,-2570,-528,-13698,-167,-130,-139,-2,-11,-1356,-5,-225,-1624,-13699,-450,-2670,-4833,-3322,-405,-13700,-140,-6346,-1216,-6347, +-1541,-6348,-2690,-2534,-1147,-421,-822,-3999,-3546,-4000,-2056,-13701,-3977,-815,-539,-1598,-1337,-13702,-13703,-13704,-2267,-891,-13705,-662,-13706,-557,-13707,-778,-2931,-1024,-6349,-3285,-13708,-13709,-13710,-13711,-13712,-13713,-3412,-601,-13714,-6350,-13715,-13716,-319,-6351,-4001,-2124,-13717,-2535,-120,-13718,-13719,-4681,-3696,-2459,-13720,-1493,-13721,-13722,-13723,-4901,-13724,-13725, -13726], [0,-740,-131,-127,-13727,-6352,-6,-242,-1884,-235,-3172,-73,-184,-221,-3176,-1779], [1,3,8434], [0,8435,8436,8437,8], [0,-2357], -[0,-13728,-1777,-2583,-1154,-6353,-13729,-13730,-4002,-1019,-2088,-6354,-153,-120,-29,-1780,-47,-1,-13731,-8,-1782,-176, --4,-121,-160,-6,-36,-80,-467,-740,-57,-2,-818,-262], +[0,-13728,-1777,-2583,-1154,-6353,-13729,-13730,-4002,-1019,-2088,-6354,-153,-120,-29,-1780,-47,-1,-13731,-8,-1782,-176,-4,-121,-160,-6,-36,-80,-467,-740,-57,-2,-818,-262], [0,-2090,-740,-13732,-127,-42,-52,-13733,-6355,-13734,-13735,-13736,-976], [1,3,8439], [0,8440,0,147,5], -[0,-2284,-11,-21,-4582,-4583,-20,-231,-117,-133,-58,-386,-1746,-257,-13737,-41,-28,-247,-673,-1079,-13738,-272,-23,-1433, --4584,-1143,-227,-88,-2040,-1497,-2910,-5621,-16,-2001,-814,-125], +[0,-2284,-11,-21,-4582,-4583,-20,-231,-117,-133,-58,-386,-1746,-257,-13737,-41,-28,-247,-673,-1079,-13738,-272,-23,-1433,-4584,-1143,-227,-88,-2040,-1497,-2910,-5621,-16,-2001,-814,-125], [1,3,8442], [0,68,15,16,11], [1,3,8444], @@ -12111,8 +9301,7 @@ true, [1,3,8468], [0,8469,14,8470,4], [0,-13760,-139], -[0,-168,-1180,-474,-2171,-4003,-2173,-6356,-6357,-6358,-3552,-13761,-4004,-243,-503,-2133,-37,-299,-178,-201,-4005,-4006, --4007,-4008,-6359,-6360], +[0,-168,-1180,-474,-2171,-4003,-2173,-6356,-6357,-6358,-3552,-13761,-4004,-243,-503,-2133,-37,-299,-178,-201,-4005,-4006,-4007,-4008,-6359,-6360], [1,3,8472], [0,8473,8474,8475,5], [0,-4406,-3145], @@ -12135,24 +9324,17 @@ true, [0,-3110,-13763,-13764,-100], [1,3,8492], [0,8493,8494,8495,5], -[0,-59,-35,-13765,-13766,-4256,-13767,-463,-551,-597,-6361,-13768,-13769,-13770,-13771,-3952,-13772,-13773,-6362,-222, --1089,-1929,-6363,-1060,-3036,-515,-219,-23,-4240,-5902,-2885,-6344,-233,-198,-3840,-813,-13774,-5901,-13775,-13776, --4009,-6081,-205], +[0,-59,-35,-13765,-13766,-4256,-13767,-463,-551,-597,-6361,-13768,-13769,-13770,-13771,-3952,-13772,-13773,-6362,-222,-1089,-1929,-6363,-1060,-3036,-515,-219,-23,-4240,-5902,-2885,-6344,-233,-198,-3840,-813,-13774,-5901,-13775,-13776,-4009,-6081,-205], [0,-1,-587,-85], -[0,-1514,-13777,-6068,-13778,-5903,-13779,-5009,-1883,-2645,-712,-1151,-2245,-335,-693,-1871,-2809,-13780,-3015,-402, --5964,-13781,-384,-5904,-1355,-13782,-1034,-6364,-1892,-13783,-159,-6365,-13784,-13785,-574,-13786,-286,-3516,-3920, --2266,-6366,-473,-1323,-13787,-13788,-1029,-6361,-13789,-13790,-3952,-6362,-4327,-13791,-2439,-5284,-612,-13792], +[0,-1514,-13777,-6068,-13778,-5903,-13779,-5009,-1883,-2645,-712,-1151,-2245,-335,-693,-1871,-2809,-13780,-3015,-402,-5964,-13781,-384,-5904,-1355,-13782,-1034,-6364,-1892,-13783,-159,-6365,-13784,-13785,-574,-13786,-286,-3516,-3920,-2266,-6366,-473,-1323,-13787,-13788,-1029,-6361,-13789,-13790,-3952,-6362,-4327,-13791,-2439,-5284,-612,-13792], [1,3,8497], [0,8498,8499,8500,4], [0,-13793,-13794,-13795,-13796,-20,-1387,-5038,-58,-1082,-272,-13797,-4,-1128], -[0,-2676,-4431,-357,-49,-63,-13798,-13799,-2550,-13800,-109,-5,-2599,-698,-19,-893,-13801,-1283,-202,-1277,-13,-1,-256, --64,-786,-41,-13802,-10,-13803,-795,-13804,-219,-17,-3367,-929,-2640,-3,-2816,-65,-1316,-80,-16,-689,-13805,-396,-2,-348, --125,-262], +[0,-2676,-4431,-357,-49,-63,-13798,-13799,-2550,-13800,-109,-5,-2599,-698,-19,-893,-13801,-1283,-202,-1277,-13,-1,-256,-64,-786,-41,-13802,-10,-13803,-795,-13804,-219,-17,-3367,-929,-2640,-3,-2816,-65,-1316,-80,-16,-689,-13805,-396,-2,-348,-125,-262], [0,-13806,-230,-13807,-24,-441,-2734,-80,-444,-4994,-13808,-6,-2486,-2588], [1,3,8502], [0,0,8503,48,4], -[0,-8,-80,-10,-78,-259,-407,-1,-16,-232,-18,-1219,-4,-26,-48,-86,-141,-11,-271,-17,-65,-467,-93,-49,-134,-21,-173,-9,-12, --176,-63,-1025], +[0,-8,-80,-10,-78,-259,-407,-1,-16,-232,-18,-1219,-4,-26,-48,-86,-141,-11,-271,-17,-65,-467,-93,-49,-134,-21,-173,-9,-12,-176,-63,-1025], [1,3,8505], [0,8506,8507,8508,5], [0,-3111], @@ -12166,15 +9348,12 @@ true, [1,3,8515], [0,8516,8517,8518,11], [0,-2535,-4953,-6367,-13809,-722,-38,-1463,-1750,-44], -[0,-11,-1138,-1007,-209,-300,-998,-21,-132,-137,-330,-319,-153,-120,-307,-1278,-29,-13810,-5,-47,-89,-6368,-2030,-1727, --13811,-86,-270,-3727,-2658,-1747,-8,-176,-3223,-1086,-968,-4,-121,-6,-36,-6369,-235,-287,-14,-466,-1118,-347,-877,-1259, --229,-13812,-13813,-2], +[0,-11,-1138,-1007,-209,-300,-998,-21,-132,-137,-330,-319,-153,-120,-307,-1278,-29,-13810,-5,-47,-89,-6368,-2030,-1727,-13811,-86,-270,-3727,-2658,-1747,-8,-176,-3223,-1086,-968,-4,-121,-6,-36,-6369,-235,-287,-14,-466,-1118,-347,-877,-1259,-229,-13812,-13813,-2], [0,-6,-24,-1292,-882,-3269], [1,3,8520], [0,8521,8522,8523,11], [0,-2463], -[0,-48,-11,-300,-995,-2501,-398,-170,-21,-132,-174,-90,-450,-47,-51,-1291,-2851,-457,-1,-12,-10,-732,-4,-435,-6,-36,-122, --130,-2926,-1750,-13814,-2], +[0,-48,-11,-300,-995,-2501,-398,-170,-21,-132,-174,-90,-450,-47,-51,-1291,-2851,-457,-1,-12,-10,-732,-4,-435,-6,-36,-122,-130,-2926,-1750,-13814,-2], [0,-1291,-2006,-13815,-1292,-24], [1,3,8525], [0,8526,22,8527,10], @@ -12182,10 +9361,8 @@ true, [0,-2164,-24,-13816,-13817,-765,-38,-223,-3113], [1,3,8529], [0,8530,8531,8532,6], -[0,-1596,-5252,-1597,-2946,-6137,-2287,-5664,-2475,-386,-4136,-1059,-35,-226,-2265,-5439,-2671,-204,-13818,-3044,-460, --1734,-3685,-1083,-2368,-13819,-462,-361,-1446,-167,-38,-1453,-556,-464,-395,-2457,-13820,-752,-1714], -[0,-357,-6370,-1318,-6371,-6372,-13821,-2641,-169,-13822,-13823,-13824,-13825,-651,-5200,-13826,-5479,-13827,-3774,-110, --456,-323,-1,-6373,-9,-145,-10,-8,-2932,-1086,-17,-1783,-65,-1316,-3082,-555,-2914,-13828,-869,-4,-146,-883,-2], +[0,-1596,-5252,-1597,-2946,-6137,-2287,-5664,-2475,-386,-4136,-1059,-35,-226,-2265,-5439,-2671,-204,-13818,-3044,-460,-1734,-3685,-1083,-2368,-13819,-462,-361,-1446,-167,-38,-1453,-556,-464,-395,-2457,-13820,-752,-1714], +[0,-357,-6370,-1318,-6371,-6372,-13821,-2641,-169,-13822,-13823,-13824,-13825,-651,-5200,-13826,-5479,-13827,-3774,-110,-456,-323,-1,-6373,-9,-145,-10,-8,-2932,-1086,-17,-1783,-65,-1316,-3082,-555,-2914,-13828,-869,-4,-146,-883,-2], [0,-1292,-24,-219,-224,-577,-99,-80,-444,-182,-883], [1,3,8534], [0,8535,8536,8537,9], @@ -12194,8 +9371,7 @@ true, [0,-182,-13829,-97], [1,3,8539], [0,0,8540,8541,5], -[0,-15,-8,-10,-1251,-944,-1,-149,-124,-4,-13830,-26,-182,-48,-86,-13831,-4875,-2,-11,-829,-17,-677,-174,-49,-122,-21, --13832,-145,-1065,-9,-298,-2932,-2055,-12,-25,-816,-137,-19,-297,-63,-949,-22,-4547,-1327,-209,-300], +[0,-15,-8,-10,-1251,-944,-1,-149,-124,-4,-13830,-26,-182,-48,-86,-13831,-4875,-2,-11,-829,-17,-677,-174,-49,-122,-21,-13832,-145,-1065,-9,-298,-2932,-2055,-12,-25,-816,-137,-19,-297,-63,-949,-22,-4547,-1327,-209,-300], [0,-4010,-182,-24,-444,-219,-224,-13833,-2054,-1331,-13834,-217,-13835], [1,3,8543], [0,8544,8545,8546,4], @@ -12214,8 +9390,7 @@ true, [1,3,8557], [0,8558,8559,8560,6], [0,-226,-1446], -[0,-48,-11,-21,-49,-63,-50,-529,-315,-110,-13843,-26,-407,-141,-150,-232,-1,-12,-617,-9,-145,-180,-115,-25,-151,-56,-10, --8,-17,-259,-3068,-65,-4,-685,-134,-154,-396,-84,-18], +[0,-48,-11,-21,-49,-63,-50,-529,-315,-110,-13843,-26,-407,-141,-150,-232,-1,-12,-617,-9,-145,-180,-115,-25,-151,-56,-10,-8,-17,-259,-3068,-65,-4,-685,-134,-154,-396,-84,-18], [0,-18,-831,-396], [1,3,8562], [0,0,0,8563,11], @@ -12223,10 +9398,8 @@ true, [1,3,8565], [0,8566,8567,8568,5], [0,-4130,-6374,-35,-3996,-628,-955,-1104,-260,-465], -[0,-48,-11,-170,-21,-90,-49,-63,-777,-5240,-3915,-163,-60,-581,-26,-1,-1404,-847,-75,-40,-850,-1638,-486,-10,-17,-227,-3, --1441,-15,-146,-1692,-7,-81,-13844,-13845,-34,-993], -[0,-1883,-1535,-1535,-100,-59,-656,-194,-3390,-351,-13846,-387,-103,-103,-388,-3764,-171,-171,-504,-111,-111,-5625,-6366, --422,-1995,-13847,-690,-2746,-536,-743,-2011], +[0,-48,-11,-170,-21,-90,-49,-63,-777,-5240,-3915,-163,-60,-581,-26,-1,-1404,-847,-75,-40,-850,-1638,-486,-10,-17,-227,-3,-1441,-15,-146,-1692,-7,-81,-13844,-13845,-34,-993], +[0,-1883,-1535,-1535,-100,-59,-656,-194,-3390,-351,-13846,-387,-103,-103,-388,-3764,-171,-171,-504,-111,-111,-5625,-6366,-422,-1995,-13847,-690,-2746,-536,-743,-2011], [1,3,8570], [0,8571,8572,7,6], [0,-5863], @@ -12257,8 +9430,7 @@ true, [0,-221,-37], [1,3,8598], [0,0,8599,8600,4], -[0,-11,-21,-49,-63,-13860,-13861,-757,-5,-13862,-2787,-157,-1814,-308,-385,-1,-219,-38,-13863,-868,-4,-642,-80,-396,-883, --221,-2,-30], +[0,-11,-21,-49,-63,-13860,-13861,-757,-5,-13862,-2787,-157,-1814,-308,-385,-1,-219,-38,-13863,-868,-4,-642,-80,-396,-883,-221,-2,-30], [0,-221,-2832,-2,-219,-396,-80,-444,-642,-308], [1,3,8602], [0,8603,8604,8605,4], @@ -12308,17 +9480,13 @@ true, [0,-111,-103,-388,-443,-60,-2919,-2163], [1,3,8648], [0,0,0,8649,9], -[0,-13887,-13888,-1241,-1892,-1448,-1877,-2923,-764,-13889,-13890,-13891,-6378,-13892,-13893,-13894,-6140,-13895,-2526, --13896,-1034,-1352,-13897,-13898,-13899,-13900,-1155,-13901,-13902,-13903,-13904,-13905,-6379,-13906,-13907,-13908,-2198, --13909,-13910,-1831,-13911,-13912,-6380,-5163,-13913,-13914,-5807,-6381,-13915,-13916,-13917,-13918,-13919,-13920,-46, --6316,-13921,-13922], +[0,-13887,-13888,-1241,-1892,-1448,-1877,-2923,-764,-13889,-13890,-13891,-6378,-13892,-13893,-13894,-6140,-13895,-2526,-13896,-1034,-1352,-13897,-13898,-13899,-13900,-1155,-13901,-13902,-13903,-13904,-13905,-6379,-13906,-13907,-13908,-2198,-13909,-13910,-1831,-13911,-13912,-6380,-5163,-13913,-13914,-5807,-6381,-13915,-13916,-13917,-13918,-13919,-13920,-46,-6316,-13921,-13922], [1,3,8651], [0,0,8652,7,4], [0,-152,-490,-3,-72,-7,-14,-177,-114,-188,-13923,-2215,-818,-147,-238,-229,-237,-13924,-62,-13925], [1,3,8654], [0,8655,8656,8657,4], -[0,-205,-183,-368,-13926,-13927,-13928,-13929,-23,-678,-13930,-13931,-13932,-13933,-40,-13934,-13935,-13936,-13937,-13938, --1378,-163,-367,-846,-13939,-2296,-90,-13940], +[0,-205,-183,-368,-13926,-13927,-13928,-13929,-23,-678,-13930,-13931,-13932,-13933,-40,-13934,-13935,-13936,-13937,-13938,-1378,-163,-367,-846,-13939,-2296,-90,-13940], [0,-1675,-2295,-13941,-13942,-276,-13943,-456,-13944], [0,-13945,-13946], [1,3,8659], @@ -12330,8 +9498,7 @@ true, [0,-509,-5,-1503,-296,-811,-13951,-1735], [1,3,8666], [0,8667,0,8668,10], -[0,-13952,-13953,-13954,-13955,-13956,-13957,-13958,-13959,-13960,-13961,-13962,-13963,-13964,-13965,-13966,-13967,-13968, --13969,-13970,-6382], +[0,-13952,-13953,-13954,-13955,-13956,-13957,-13958,-13959,-13960,-13961,-13962,-13963,-13964,-13965,-13966,-13967,-13968,-13969,-13970,-6382], [0,-280,-85,-76,-61,-53,-37,-13971,-13972], [1,3,8670], [0,8671,8672,8673,9], @@ -12343,8 +9510,7 @@ true, [0,-8,-1,-56,-4,-50,-86,-11,-115,-529,-21,-145,-9,-617,-151,-12,-25,-315], [1,3,8678], [0,8679,8680,8681,9], -[0,-13975,-13976,-13977,-939,-780,-2681,-13978,-954,-1646,-28,-13979,-672,-515,-3604,-88,-1672,-1245,-2138,-1447,-591, --126,-3681], +[0,-13975,-13976,-13977,-939,-780,-2681,-13978,-954,-1646,-28,-13979,-672,-515,-3604,-88,-1672,-1245,-2138,-1447,-591,-126,-3681], [0,-244,-1601,-269,-309,-26,-1398,-6383,-533,-1400,-1,-3494,-1235,-101,-13980,-273,-15,-189,-16,-85,-1870], [0,-85,-76,-13981,-280,-94], [1,3,8683], @@ -12366,8 +9532,7 @@ true, [0,-6385,-3215,-6386,-6387,-52,-13989,-46,-6388,-2887,-1537], [1,3,8700], [0,0,8701,8702,4], -[0,-1543,-13990,-13991,-264,-3536,-29,-5,-1015,-22,-19,-163,-482,-295,-13992,-1,-83,-9,-75,-67,-10,-8,-17,-285,-3655,-4, --123,-57,-2], +[0,-1543,-13990,-13991,-264,-3536,-29,-5,-1015,-22,-19,-163,-482,-295,-13992,-1,-83,-9,-75,-67,-10,-8,-17,-285,-3655,-4,-123,-57,-2], [0,-6385,-3215,-6386,-6387,-46,-6388,-2163,-40], [1,3,8704], [0,8705,0,8706,8], @@ -12389,8 +9554,7 @@ true, [1,3,8721], [0,8722,0,8723,9], [0,-5940,-13997,-13998,-13999,-4014,-14000,-14001,-14002], -[0,-178,-201,-243,-37,-647,-217,-14003,-14004,-230,-352,-14005,-2925,-14006,-2134,-1294,-2170,-5171,-14007,-14008,-14009, --3978,-292,-621,-1193,-1349], +[0,-178,-201,-243,-37,-647,-217,-14003,-14004,-230,-352,-14005,-2925,-14006,-2134,-1294,-2170,-5171,-14007,-14008,-14009,-3978,-292,-621,-1193,-1349], [1,3,8725], [0,8726,0,8727,11], [0,-6393,-2682,-515,-14010,-69,-14011], @@ -12403,8 +9567,7 @@ true, [1,3,8734], [0,8735,8736,8737,5], [0,-177,-1236,-646,-1121,-1136], -[0,-150,-8,-10,-259,-407,-1,-232,-87,-18,-4,-245,-26,-112,-48,-50,-2,-11,-5,-271,-17,-65,-93,-6028,-49,-115,-529,-14017, --134,-21,-84,-145,-508,-180,-9,-617,-151,-12,-25,-315,-3562,-63], +[0,-150,-8,-10,-259,-407,-1,-232,-87,-18,-4,-245,-26,-112,-48,-50,-2,-11,-5,-271,-17,-65,-93,-6028,-49,-115,-529,-14017,-134,-21,-84,-145,-508,-180,-9,-617,-151,-12,-25,-315,-3562,-63], [0,-1031,-112,-1269,-177,-18,-2731,-1333,-575,-2849,-1876,-1333,-834,-228,-620,-1844], [1,3,8739], [0,8740,8741,8742,4], @@ -12418,15 +9581,9 @@ true, [0,-99,-76,-401,-14029,-42,-399], [1,3,8749], [0,8750,8751,8752,4], -[0,-11,-578,-1040,-5957,-3199,-4552,-1139,-3195,-3198,-3191,-3196,-2502,-170,-21,-1167,-132,-90,-14030,-14031,-5,-2169, --4562,-1047,-3478,-14032,-5304,-13,-20,-14033,-308,-58,-35,-509,-150,-14034,-3922,-203,-6394,-3917,-5027,-2044,-118, --14035,-204,-324,-6268,-1960,-3411,-14036,-793,-547,-2251,-1081,-14037,-966,-272,-23,-14038,-733,-2885,-233,-14039,-519, --639,-14040,-593,-1111,-14041,-804,-1541,-14042,-392,-1456,-14043,-14044,-3453,-644,-1996,-16,-2488,-147,-1264,-14045, --14046,-14047,-14048,-14049,-14050,-14051,-4016,-14052,-14053,-161,-691,-2,-14054,-14055], -[0,-14056,-2751,-14057,-530,-77,-2697,-62,-14058,-14059,-109,-169,-14060,-1356,-5647,-5960,-4597,-822,-140,-2489,-2848, --14061,-22,-19,-270,-1381,-163,-14062,-14063,-239,-2229,-3165,-218,-368,-26,-14064,-408,-1,-14065,-2738,-40,-14066,-32, --585,-14067,-3026,-513,-1232,-14068,-14069,-5520,-310,-14070,-632,-2541,-973,-1103,-88,-14071,-1441,-14072,-181,-6, --14073, +[0,-11,-578,-1040,-5957,-3199,-4552,-1139,-3195,-3198,-3191,-3196,-2502,-170,-21,-1167,-132,-90,-14030,-14031,-5,-2169,-4562,-1047,-3478,-14032,-5304,-13,-20,-14033,-308,-58,-35,-509,-150,-14034,-3922,-203,-6394,-3917,-5027,-2044,-118,-14035,-204,-324,-6268,-1960,-3411,-14036,-793,-547,-2251,-1081,-14037,-966,-272,-23,-14038,-733,-2885,-233,-14039,-519, +-639,-14040,-593,-1111,-14041,-804,-1541,-14042,-392,-1456,-14043,-14044,-3453,-644,-1996,-16,-2488,-147,-1264,-14045,-14046,-14047,-14048,-14049,-14050,-14051,-4016,-14052,-14053,-161,-691,-2,-14054,-14055], +[0,-14056,-2751,-14057,-530,-77,-2697,-62,-14058,-14059,-109,-169,-14060,-1356,-5647,-5960,-4597,-822,-140,-2489,-2848,-14061,-22,-19,-270,-1381,-163,-14062,-14063,-239,-2229,-3165,-218,-368,-26,-14064,-408,-1,-14065,-2738,-40,-14066,-32,-585,-14067,-3026,-513,-1232,-14068,-14069,-5520,-310,-14070,-632,-2541,-973,-1103,-88,-14071,-1441,-14072,-181,-6,-14073, -14,-305,-393,-27,-5259,-139,-14074,-44,-112], [0,-6395,-759,-94,-2164,-892,-2065,-61,-572,-76,-473,-573,-280,-1163,-14075,-924,-2722,-59,-656], [1,3,8754], @@ -12441,8 +9598,7 @@ true, [0,-573,-609,-317,-1571,-1763,-14088,-3918], [1,3,8764], [0,8765,8766,8767,4], -[0,-1310,-1924,-114,-6393,-58,-367,-2991,-118,-40,-14089,-28,-586,-101,-23,-72,-519,-1445,-2393,-14090,-7,-810,-14091, --14092,-1870,-161], +[0,-1310,-1924,-114,-6393,-58,-367,-2991,-118,-40,-14089,-28,-586,-101,-23,-72,-519,-1445,-2393,-14090,-7,-810,-14091,-14092,-1870,-161], [0,-14093,-60,-13,-5395,-14094,-231,-1393,-1,-3673,-256,-3,-111,-14095,-276,-27,-190,-1262,-39], [0,-45,-61,-5981,-94], [1,3,8769], @@ -12455,8 +9611,7 @@ true, [0,-1126,-14097,-45,-6399,-14098,-14099,-6400,-14100,-14101,-14102,-14103,-322,-265,-615], [1,3,8777], [0,0,8778,8779,4], -[0,-48,-11,-170,-21,-90,-207,-96,-5242,-158,-1,-5243,-12,-25,-370,-486,-6401,-5244,-10,-79,-1428,-138,-213,-414,-1662, --637,-517,-17,-88,-14104,-415,-4,-1457,-14,-5245,-18], +[0,-48,-11,-170,-21,-90,-207,-96,-5242,-158,-1,-5243,-12,-25,-370,-486,-6401,-5244,-10,-79,-1428,-138,-213,-414,-1662,-637,-517,-17,-88,-14104,-415,-4,-1457,-14,-5245,-18], [0,-1621,-2187], [1,3,8781], [0,0,8782,8783,9], @@ -12479,13 +9634,9 @@ true, [0,-54,-2811,-3795,-612,-14111,-2836,-14112,-5632,-574,-2811], [1,3,8800], [0,8801,8802,8803,4], -[0,-14113,-14114,-14115,-14116,-14117,-14118,-14119,-14120,-14121,-14122,-14123,-14124,-14125,-14126,-14127,-14128,-14129, --14130,-14131,-14132,-14133,-14134,-14135,-14136,-14137,-14138,-14139,-14140,-14141,-14142,-14143,-14144,-14145,-14146, --14147,-14148,-14149,-14150,-14151,-14152,-14153,-14154,-14155,-14156,-14157,-14158,-14159,-14160,-14161,-14162,-14163, --14164,-14165,-14166,-14167,-14168,-14169,-14170,-14171,-14172,-14173,-14174,-14175, +[0,-14113,-14114,-14115,-14116,-14117,-14118,-14119,-14120,-14121,-14122,-14123,-14124,-14125,-14126,-14127,-14128,-14129,-14130,-14131,-14132,-14133,-14134,-14135,-14136,-14137,-14138,-14139,-14140,-14141,-14142,-14143,-14144,-14145,-14146,-14147,-14148,-14149,-14150,-14151,-14152,-14153,-14154,-14155,-14156,-14157,-14158,-14159,-14160,-14161,-14162,-14163,-14164,-14165,-14166,-14167,-14168,-14169,-14170,-14171,-14172,-14173,-14174,-14175, -14176,-14177,-14178], -[0,-303,-28,-32,-249,-80,-3,-6,-1,-23,-7,-369,-38,-18,-1402,-41,-66,-26,-411,-1418,-1242,-36,-141,-1953,-121,-631,-467, --157,-1417,-962,-154,-14179,-14180,-241,-524,-960,-1968,-493,-14181,-4488,-64,-255,-9,-148,-5866,-14182,-295,-851], +[0,-303,-28,-32,-249,-80,-3,-6,-1,-23,-7,-369,-38,-18,-1402,-41,-66,-26,-411,-1418,-1242,-36,-141,-1953,-121,-631,-467,-157,-1417,-962,-154,-14179,-14180,-241,-524,-960,-1968,-493,-14181,-4488,-64,-255,-9,-148,-5866,-14182,-295,-851], [0,-6,-106,-131,-127,-102,-53,-52,-14183,-4336,-14184], [1,3,8805], [0,8806,8807,7,6], @@ -12515,12 +9666,10 @@ true, [0,8830,8831,8832,4], [0,-4293], [0,-11,-14191,-1732,-4,-2], -[0,-6,-106,-14192,-3976,-2053,-14193,-14194,-235,-2415,-14195,-14196,-4337,-1761,-2556,-14197,-37,-95,-291,-355,-113, --14198], +[0,-6,-106,-14192,-3976,-2053,-14193,-14194,-235,-2415,-14195,-14196,-4337,-1761,-2556,-14197,-37,-95,-291,-355,-113,-14198], [1,3,8834], [0,0,8835,8836,10], -[0,-48,-11,-1040,-21,-132,-329,-3916,-893,-96,-13,-1,-40,-41,-340,-204,-101,-78,-227,-72,-3,-242,-14199,-65,-14200,-6,-36, --80,-97,-18,-93], +[0,-48,-11,-1040,-21,-132,-329,-3916,-893,-96,-13,-1,-40,-41,-340,-204,-101,-78,-227,-72,-3,-242,-14199,-65,-14200,-6,-36,-80,-97,-18,-93], [0,-3120,-45,-752,-14201,-3568,-569,-31,-1344,-2247], [1,3,8838], [0,0,8839,8840,6], @@ -12562,19 +9711,16 @@ true, [0,-46,-1341,-375,-1106,-107,-331,-768,-1347,-440,-2,-443,-688,-1017,-1034,-3519,-702,-14211], [1,3,8876], [0,0,8877,161,11], -[0,-48,-11,-209,-931,-300,-21,-137,-357,-49,-63,-3270,-451,-747,-29,-143,-698,-22,-19,-86,-110,-158,-1,-12,-25,-1065,-10, --8,-23,-65,-4,-346,-33,-124,-816,-2,-125], +[0,-48,-11,-209,-931,-300,-21,-137,-357,-49,-63,-3270,-451,-747,-29,-143,-698,-22,-19,-86,-110,-158,-1,-12,-25,-1065,-10,-8,-23,-65,-4,-346,-33,-124,-816,-2,-125], [1,3,8879], [0,8880,8881,8882,5], [0,-6407,-3578,-247,-272,-1667,-6408,-16,-215,-525], -[0,-49,-1032,-498,-290,-50,-1318,-1760,-663,-757,-191,-29,-421,-3236,-3691,-5258,-651,-5,-140,-419,-2823,-22,-19,-86, --3886,-541,-87,-1,-12,-9,-145,-180,-25,-118,-226,-41,-56,-10,-8,-101,-17,-259,-4,-7,-33,-2,-84], +[0,-49,-1032,-498,-290,-50,-1318,-1760,-663,-757,-191,-29,-421,-3236,-3691,-5258,-651,-5,-140,-419,-2823,-22,-19,-86,-3886,-541,-87,-1,-12,-9,-145,-180,-25,-118,-226,-41,-56,-10,-8,-101,-17,-259,-4,-7,-33,-2,-84], [0,-8,-2,-2179,-6,-61], [1,3,8884], [0,8885,8886,8887,5], [0,-20,-781,-361,-16,-130], -[0,-651,-140,-22,-19,-281,-162,-96,-580,-321,-14212,-666,-408,-1,-12,-75,-25,-41,-28,-10,-373,-79,-138,-389,-414,-637, --517,-17,-972,-72,-3,-4,-7,-2,-18,-93], +[0,-651,-140,-22,-19,-281,-162,-96,-580,-321,-14212,-666,-408,-1,-12,-75,-25,-41,-28,-10,-373,-79,-138,-389,-414,-637,-517,-17,-972,-72,-3,-4,-7,-2,-18,-93], [0,-214,-14213,-18,-831,-2,-440], [1,3,8889], [0,8890,8891,8892,9], @@ -12589,8 +9735,7 @@ true, [1,3,8899], [0,8900,8901,8902,5], [0,-2014,-774,-203,-202,-1374,-6408,-14221,-14222,-14223,-14224,-2784,-14225,-14226], -[0,-51,-15,-194,-6,-4017,-338,-23,-7,-16,-2901,-803,-124,-245,-14227,-487,-181,-2,-1356,-5,-14228,-47,-143,-1353,-140, --3546,-14229,-1857,-2568,-2896,-3929,-451], +[0,-51,-15,-194,-6,-4017,-338,-23,-7,-16,-2901,-803,-124,-245,-14227,-487,-181,-2,-1356,-5,-14228,-47,-143,-1353,-140,-3546,-14229,-1857,-2568,-2896,-3929,-451], [0,-2,-144,-1587,-828,-440,-607], [1,3,8904], [0,8905,8906,8907,5], @@ -12629,13 +9774,11 @@ true, [1,3,8938], [0,8939,8940,8941,8], [0,-505,-1384,-20,-58,-203,-28,-101,-92,-72,-126,-16,-44,-3656], -[0,-665,-1867,-109,-1356,-471,-421,-927,-3314,-71,-5,-1137,-1353,-140,-13,-10,-6340,-3,-65,-15,-4,-7,-33,-199,-1268,-5107, --2,-6181], +[0,-665,-1867,-109,-1356,-471,-421,-927,-3314,-71,-5,-1137,-1353,-140,-13,-10,-6340,-3,-65,-15,-4,-7,-33,-199,-1268,-5107,-2,-6181], [0,-37,-2,-577], [1,3,8943], [0,0,8944,8945,5], -[0,-8,-10,-23,-7,-199,-57,-733,-4,-14246,-482,-2,-29,-5,-14247,-4339,-14248,-1337,-122,-14249,-14250,-1896,-1707,-2918, --14251,-295,-14252], +[0,-8,-10,-23,-7,-199,-57,-733,-4,-14246,-482,-2,-29,-5,-14247,-4339,-14248,-1337,-122,-14249,-14250,-1896,-1707,-2918,-14251,-295,-14252], [0,-224,-199,-14253,-4,-335,-2], [1,3,8947], [0,8948,8949,7,6], @@ -12720,13 +9863,10 @@ true, [1,3,9027], [0,9028,9029,7,10], [0,-28,-125,-1375,-542,-35,-44,-98,-294,-509,-210,-5230,-2296,-14297,-598,-14298], -[0,-43,-595,-13,-32,-10,-547,-3,-1673,-550,-688,-27,-1,-1674,-7,-4622,-56,-375,-813,-33,-2874,-4,-14299,-50,-4198,-1570, --190,-2,-109,-5,-310,-17,-169,-71,-279,-419,-962,-14300,-3879,-311,-1419,-5835,-14301,-2784,-239,-1287,-3251,-1860,-84, --14302,-147,-14303,-180,-14304,-14305,-754,-2848], +[0,-43,-595,-13,-32,-10,-547,-3,-1673,-550,-688,-27,-1,-1674,-7,-4622,-56,-375,-813,-33,-2874,-4,-14299,-50,-4198,-1570,-190,-2,-109,-5,-310,-17,-169,-71,-279,-419,-962,-14300,-3879,-311,-1419,-5835,-14301,-2784,-239,-1287,-3251,-1860,-84,-14302,-147,-14303,-180,-14304,-14305,-754,-2848], [1,3,9031], [0,0,9032,9033,5], -[0,-43,-549,-13,-203,-28,-799,-3,-44,-222,-4017,-1,-5526,-87,-56,-117,-88,-1506,-50,-167,-391,-2,-109,-1356,-71,-2881, --636,-665,-761,-1635,-14306,-14307,-84,-14308,-147,-784,-6419,-771,-2848,-14309,-3362,-2612,-14310,-14311], +[0,-43,-549,-13,-203,-28,-799,-3,-44,-222,-4017,-1,-5526,-87,-56,-117,-88,-1506,-50,-167,-391,-2,-109,-1356,-71,-2881,-636,-665,-761,-1635,-14306,-14307,-84,-14308,-147,-784,-6419,-771,-2848,-14309,-3362,-2612,-14310,-14311], [0,-753,-6411,-607,-1835,-45], [1,3,9035], [0,9036,112,9037,4], @@ -12755,8 +9895,7 @@ true, [1,3,9059], [0,0,9060,9061,11], [0,-202,-16], -[0,-37,-575,-2849,-14327,-350,-1829,-1185,-45,-278,-14328,-1876,-1333,-834,-228,-620,-1844,-2760,-3827,-166,-74,-3828, --1031], +[0,-37,-575,-2849,-14327,-350,-1829,-1185,-45,-278,-14328,-1876,-1333,-834,-228,-620,-1844,-2760,-3827,-166,-74,-3828,-1031], [1,3,9063], [0,9064,9065,9066,9], [0,-2079,-1408,-856,-646,-1121,-130,-112,-1476,-5798], @@ -12769,10 +9908,7 @@ true, [0,-920,-116,-5260,-1579], [1,3,9073], [0,9074,0,9075,4], -[0,-90,-47,-89,-14330,-14331,-14332,-14333,-14334,-14335,-14336,-14337,-4101,-14338,-14339,-14340,-14341,-14342,-14343, --14344,-14345,-14346,-14347,-14348,-14349,-14350,-14351,-14352,-14353,-14354,-14355,-2967,-4102,-14356,-14357,-14358, --14359,-14360,-14361,-14362,-14363,-4894,-4103,-14364,-14365,-14366,-14367,-14368,-14369,-14370,-14371,-14372,-14373, --14374,-14375,-14376,-14377,-14378,-14379,-14380,-14381,-14382,-14383,-14384, +[0,-90,-47,-89,-14330,-14331,-14332,-14333,-14334,-14335,-14336,-14337,-4101,-14338,-14339,-14340,-14341,-14342,-14343,-14344,-14345,-14346,-14347,-14348,-14349,-14350,-14351,-14352,-14353,-14354,-14355,-2967,-4102,-14356,-14357,-14358,-14359,-14360,-14361,-14362,-14363,-4894,-4103,-14364,-14365,-14366,-14367,-14368,-14369,-14370,-14371,-14372,-14373,-14374,-14375,-14376,-14377,-14378,-14379,-14380,-14381,-14382,-14383,-14384, -14385,-14386], [0,-441,-1472,-1803,-1804,-6,-106,-131,-127,-102,-24,-1525,-1526,-53,-192,-52], [1,3,9077], @@ -12788,8 +9924,7 @@ true, [0,-31,-277,-1028], [1,3,9088], [0,9089,9090,7,5], -[0,-530,-77,-238,-62,-237,-758,-14389,-1211,-1839,-87,-6412,-4020,-516,-296,-14390,-1437,-594,-1832,-520,-14,-417,-2696, --313,-14391], +[0,-530,-77,-238,-62,-237,-758,-14389,-1211,-1839,-87,-6412,-4020,-516,-296,-14390,-1437,-594,-1832,-520,-14,-417,-2696,-313,-14391], [0,-1139,-5,-105,-5449,-1388,-1,-1403,-4,-2,-30], [1,3,9092], [0,0,9093,9094,4], @@ -12832,8 +9967,7 @@ true, [0,-159,-2878,-6056,-2831,-14410,-293,-619,-37,-365,-478,-715], [1,3,9131], [0,0,0,9132,4], -[0,-2825,-200,-14411,-14412,-14413,-14414,-14415,-14416,-14417,-14418,-14419,-14420,-14421,-14422,-14423,-14424,-6422, --6423], +[0,-2825,-200,-14411,-14412,-14413,-14414,-14415,-14416,-14417,-14418,-14419,-14420,-14421,-14422,-14423,-14424,-6422,-6423], [1,3,9134], [0,9135,9136,9137,10], [0,-465,-981], @@ -12855,8 +9989,7 @@ true, [1,3,9152], [0,9153,9154,9155,9], [0,-628,-14427,-344,-465,-215,-289,-14428], -[0,-314,-14429,-5309,-14430,-3705,-6424,-1146,-5,-14431,-2093,-14432,-3231,-1188,-1578,-105,-1386,-26,-459,-2024,-1562, --596,-2527,-14433,-884,-561,-3612,-2,-30], +[0,-314,-14429,-5309,-14430,-3705,-6424,-1146,-5,-14431,-2093,-14432,-3231,-1188,-1578,-105,-1386,-26,-459,-2024,-1562,-596,-2527,-14433,-884,-561,-3612,-2,-30], [0,-3125,-103,-14434,-2232,-2233,-111,-388,-289,-905], [1,3,9157], [0,9158,9159,9160,4], @@ -12919,15 +10052,9 @@ true, [0,-85,-679], [1,3,9216], [0,9217,9218,7,6], -[0,-1801,-87,-117,-628,-14459,-14460,-14461,-14462,-14463,-14464,-14465,-14466,-14467,-14468,-14469,-14470,-14471,-14472, --14473,-14474,-14475,-14476,-14477,-14478,-14479,-14480], -[0,-549,-183,-774,-1395,-370,-728,-325,-152,-104,-454,-20,-35,-118,-259,-596,-2921,-6406,-222,-2987,-210,-338,-3051,-7, --16,-881,-1267,-30,-481,-149,-40,-339,-548,-33,-1061,-41,-486,-3086,-1458,-2019,-245,-1506,-2093,-14481,-2251,-6057,-92, --554,-691,-2902,-6161,-1045,-3991,-624,-1085,-344,-188,-139,-2,-29,-5,-1378,-484,-14482, --2803,-2207,-14483,-1738,-169,-14484,-2881,-841,-1377,-14485,-14486,-14487,-140,-2861,-6396,-1332,-4500,-6150,-6087, --3221,-14488,-2929,-5860,-14489,-4703,-191,-3917,-952,-14490,-975,-5246,-4474,-14491,-4475,-927,-1806,-3160,-14492,-1146, --1014,-14493,-6317,-14494,-14495,-5740,-2865,-14496,-3358,-14497,-14498,-2457,-6088,-14499,-1737,-14500,-6426,-14501, --3928,-14502,-14503,-14504,-14505,-14506,-14507, +[0,-1801,-87,-117,-628,-14459,-14460,-14461,-14462,-14463,-14464,-14465,-14466,-14467,-14468,-14469,-14470,-14471,-14472,-14473,-14474,-14475,-14476,-14477,-14478,-14479,-14480], +[0,-549,-183,-774,-1395,-370,-728,-325,-152,-104,-454,-20,-35,-118,-259,-596,-2921,-6406,-222,-2987,-210,-338,-3051,-7,-16,-881,-1267,-30,-481,-149,-40,-339,-548,-33,-1061,-41,-486,-3086,-1458,-2019,-245,-1506,-2093,-14481,-2251,-6057,-92,-554,-691,-2902,-6161,-1045,-3991,-624,-1085,-344,-188,-139,-2,-29,-5,-1378,-484,-14482, +-2803,-2207,-14483,-1738,-169,-14484,-2881,-841,-1377,-14485,-14486,-14487,-140,-2861,-6396,-1332,-4500,-6150,-6087,-3221,-14488,-2929,-5860,-14489,-4703,-191,-3917,-952,-14490,-975,-5246,-4474,-14491,-4475,-927,-1806,-3160,-14492,-1146,-1014,-14493,-6317,-14494,-14495,-5740,-2865,-14496,-3358,-14497,-14498,-2457,-6088,-14499,-1737,-14500,-6426,-14501,-3928,-14502,-14503,-14504,-14505,-14506,-14507, -14508,-14509,-14510], [1,3,9220], [0,9221,0,9222,4], @@ -12938,8 +10065,7 @@ true, [0,-3,-66,-123], [1,3,9227], [0,0,9228,9229,4], -[0,-11,-21,-49,-63,-207,-333,-13,-1387,-149,-582,-14513,-369,-232,-1,-185,-9,-10,-79,-675,-138,-3217,-187,-414,-731,-17, --3,-65,-38,-682,-14514,-555,-805,-2725,-160,-14,-182,-558,-1466,-112], +[0,-11,-21,-49,-63,-207,-333,-13,-1387,-149,-582,-14513,-369,-232,-1,-185,-9,-10,-79,-675,-138,-3217,-187,-414,-731,-17,-3,-65,-38,-682,-14514,-555,-805,-2725,-160,-14,-182,-558,-1466,-112], [0,-292,-4024,-4345,-14515,-31,-24,-45,-192,-113], [1,3,9231], [0,9232,9233,9234,5], @@ -12972,9 +10098,7 @@ true, [1,3,9259], [0,9260,9261,261,6], [0,-1312,-14,-87,-38,-326,-313], -[0,-205,-845,-2886,-368,-848,-1437,-2099,-152,-80,-738,-594,-210,-2098,-639,-593,-177,-218,-3974,-117,-994,-2481,-6427, --6428,-167,-225,-484,-6429,-1503,-296,-405,-2571,-945,-786,-1498,-4025,-555,-1897,-4026,-2267,-4027,-2931,-2865,-457, --758,-868,-2184,-530,-1735,-2124,-876,-77,-2688,-3665,-1136,-6430,-3580], +[0,-205,-845,-2886,-368,-848,-1437,-2099,-152,-80,-738,-594,-210,-2098,-639,-593,-177,-218,-3974,-117,-994,-2481,-6427,-6428,-167,-225,-484,-6429,-1503,-296,-405,-2571,-945,-786,-1498,-4025,-555,-1897,-4026,-2267,-4027,-2931,-2865,-457,-758,-868,-2184,-530,-1735,-2124,-876,-77,-2688,-3665,-1136,-6430,-3580], [1,3,9263], [0,9264,9265,9266,4], [0,-14536,-226,-41,-14537,-14538], @@ -12983,16 +10107,13 @@ true, [1,3,9268], [0,9269,9270,9271,4], [0,-73,-104,-907,-2536,-14549,-4621,-2935,-1778,-2512,-14550,-4587,-14551,-2936,-896,-1020,-6431,-4723,-14552], -[0,-325,-738,-35,-118,-552,-2511,-639,-7,-14,-16,-30,-87,-1984,-392,-1749,-2018,-1531,-2017,-117,-41,-486,-88,-4,-981, --434,-361,-167,-313,-2,-5,-225,-670,-17,-220,-169,-2690,-14553,-3241,-822,-553,-191,-761,-1431,-14554,-999,-651,-1492, --1097,-417,-2931,-1024,-971,-238,-4011,-14555,-14556,-530,-14557,-1239,-1334,-14558,-237,-5689, +[0,-325,-738,-35,-118,-552,-2511,-639,-7,-14,-16,-30,-87,-1984,-392,-1749,-2018,-1531,-2017,-117,-41,-486,-88,-4,-981,-434,-361,-167,-313,-2,-5,-225,-670,-17,-220,-169,-2690,-14553,-3241,-822,-553,-191,-761,-1431,-14554,-999,-651,-1492,-1097,-417,-2931,-1024,-971,-238,-4011,-14555,-14556,-530,-14557,-1239,-1334,-14558,-237,-5689, -77,-4279,-14559,-2523,-14560,-14561,-385,-62,-14562,-14563,-14564], [0,-104,-73,-817], [1,3,9273], [0,9274,9275,9276,8], [0,-2099,-104,-594,-1544,-1142,-326,-1127,-313,-3518,-787,-6432,-296,-6346,-2929,-3999,-6433,-1897,-14565,-14566,-14567], -[0,-205,-845,-260,-14568,-78,-3579,-392,-2930,-1233,-6434,-1374,-5,-614,-320,-4025,-822,-6435,-662,-6436,-1317,-623,-4696, --1136,-2046,-4695], +[0,-205,-845,-260,-14568,-78,-3579,-392,-2930,-1233,-6434,-1374,-5,-614,-320,-4025,-822,-6435,-662,-6436,-1317,-623,-4696,-1136,-2046,-4695], [0,-104,-30,-76,-8], [1,3,9278], [0,9279,9280,9281,5], @@ -13006,8 +10127,7 @@ true, [1,3,9287], [0,9288,9289,9290,6], [0,-161,-28,-260,-597,-2843,-20,-1093,-992,-14574,-16,-565,-231,-2003,-58,-92,-220,-14575,-792,-14576,-6419], -[0,-10,-3,-33,-4,-750,-2,-471,-3498,-5,-14577,-14578,-65,-71,-3723,-435,-140,-2895,-6439,-49,-14579,-927,-122,-896,-147, --2130,-63], +[0,-10,-3,-33,-4,-750,-2,-471,-3498,-5,-14577,-14578,-65,-71,-3723,-435,-140,-2895,-6439,-49,-14579,-927,-122,-896,-147,-2130,-63], [0,-6089,-4346,-1802], [1,3,9292], [0,0,37,7,4], @@ -13024,14 +10144,12 @@ true, [0,-73], [1,3,9305], [0,0,9306,9307,5], -[0,-11,-209,-578,-995,-21,-109,-71,-5,-19,-2301,-96,-3664,-13,-141,-1,-6440,-3,-598,-7,-14,-275,-877,-1703,-214,-2,-1269, --73,-1132,-1475,-1722,-1709,-18,-93], +[0,-11,-209,-578,-995,-21,-109,-71,-5,-19,-2301,-96,-3664,-13,-141,-1,-6440,-3,-598,-7,-14,-275,-877,-1703,-214,-2,-1269,-73,-1132,-1475,-1722,-1709,-18,-93], [0,-73,-2201,-281,-2], [1,3,9309], [0,9310,9311,7,9], [0,-35,-1066,-950,-583,-3684,-16], -[0,-11,-156,-3187,-14584,-3517,-290,-50,-169,-320,-5,-140,-22,-19,-105,-1005,-1,-1348,-1223,-115,-2786,-25,-151,-2188,-4, --33,-380,-2,-104,-30], +[0,-11,-156,-3187,-14584,-3517,-290,-50,-169,-320,-5,-140,-22,-19,-105,-1005,-1,-1348,-1223,-115,-2786,-25,-151,-2188,-4,-33,-380,-2,-104,-30], [1,3,9313], [0,0,9314,9315,5], [0,-1051,-8,-73], @@ -13044,8 +10162,7 @@ true, [1,3,9322], [0,9323,9324,7,4], [0,-20,-1957,-2276], -[0,-11,-21,-14589,-320,-6204,-29,-614,-14590,-14591,-96,-6441,-385,-141,-271,-342,-8,-78,-17,-14592,-259,-374,-5231,-5374, --493,-4,-642,-14593,-130,-154,-396,-1701,-883,-57,-214,-2,-438,-73,-3129,-18,-93,-173,-524,-2773], +[0,-11,-21,-14589,-320,-6204,-29,-614,-14590,-14591,-96,-6441,-385,-141,-271,-342,-8,-78,-17,-14592,-259,-374,-5231,-5374,-493,-4,-642,-14593,-130,-154,-396,-1701,-883,-57,-214,-2,-438,-73,-3129,-18,-93,-173,-524,-2773], [1,3,9326], [0,0,9327,9328,4], [0,-29,-5,-8,-598,-14,-57,-2,-73,-3128], @@ -13053,8 +10170,7 @@ true, [1,3,9330], [0,9331,9332,7,5], [0,-891,-14594,-2936,-14595,-117,-272,-6434,-296,-1437,-14596,-594,-326,-2696,-313,-2479,-14597,-262], -[0,-450,-14598,-366,-77,-62,-237,-206,-3987,-14599,-662,-1188,-1020,-1852,-14600,-2495,-912,-5827,-14601,-1391,-210, --14602,-5326,-1233,-2389,-14603,-1724,-7,-14,-305,-380,-172,-104,-73], +[0,-450,-14598,-366,-77,-62,-237,-206,-3987,-14599,-662,-1188,-1020,-1852,-14600,-2495,-912,-5827,-14601,-1391,-210,-14602,-5326,-1233,-2389,-14603,-1724,-7,-14,-305,-380,-172,-104,-73], [1,3,9334], [0,9335,9336,7,9], [0,-1957,-732], @@ -13065,8 +10181,7 @@ true, [0,-73,-607], [1,3,9342], [0,262,9343,7,8], -[0,-73,-8,-20,-118,-2712,-1,-14,-16,-40,-18,-543,-41,-26,-160,-817,-86,-141,-2,-1132,-11,-5,-96,-14605,-2008,-21,-1852, --346,-2165,-229,-1125,-237,-6440,-1711,-2454,-77,-385,-62], +[0,-73,-8,-20,-118,-2712,-1,-14,-16,-40,-18,-543,-41,-26,-160,-817,-86,-141,-2,-1132,-11,-5,-96,-14605,-2008,-21,-1852,-346,-2165,-229,-1125,-237,-6440,-1711,-2454,-77,-385,-62], [1,3,9345], [0,9346,0,9347,5], [0,-14606], @@ -13095,8 +10210,7 @@ true, [1,3,9370], [0,9371,9372,9373,8], [0,-842,-59,-23,-72,-521,-111,-14617], -[0,-14618,-13,-239,-133,-3652,-40,-257,-32,-14619,-513,-1074,-359,-1959,-586,-6341,-66,-3,-14620,-197,-14621,-986,-4028, --14622,-14623,-1271,-125,-98], +[0,-14618,-13,-239,-133,-3652,-40,-257,-32,-14619,-513,-1074,-359,-1959,-586,-6341,-66,-3,-14620,-197,-14621,-986,-4028,-14622,-14623,-1271,-125,-98], [0,-61,-572,-930,-1588,-1036], [1,3,9375], [0,9376,9377,9378,4], @@ -13109,17 +10223,13 @@ true, [0,-1273,-611,-37,-14655,-3287], [1,3,9384], [0,9385,9386,7,11], -[0,-3692,-320,-652,-14656,-14657,-14658,-202,-14659,-301,-14660,-781,-1897,-1066,-410,-5542,-324,-6052,-2795,-344,-2238, --646,-1266,-397,-2276,-1476], -[0,-11,-132,-357,-6370,-14661,-5541,-898,-29,-1146,-14662,-5,-14663,-14664,-96,-14665,-14666,-308,-158,-407,-141,-1061, --1401,-4491,-1,-617,-271,-1639,-56,-14667,-1423,-10,-66,-8,-5586,-489,-857,-794,-1085,-859,-272,-219,-1092,-17,-23,-461, --259,-14668,-374,-2813,-590,-15,-1246,-1570,-4,-683,-642,-5735,-685,-6,-36,-14669,-736,-906, +[0,-3692,-320,-652,-14656,-14657,-14658,-202,-14659,-301,-14660,-781,-1897,-1066,-410,-5542,-324,-6052,-2795,-344,-2238,-646,-1266,-397,-2276,-1476], +[0,-11,-132,-357,-6370,-14661,-5541,-898,-29,-1146,-14662,-5,-14663,-14664,-96,-14665,-14666,-308,-158,-407,-141,-1061,-1401,-4491,-1,-617,-271,-1639,-56,-14667,-1423,-10,-66,-8,-5586,-489,-857,-794,-1085,-859,-272,-219,-1092,-17,-23,-461,-259,-14668,-374,-2813,-590,-15,-1246,-1570,-4,-683,-642,-5735,-685,-6,-36,-14669,-736,-906, -522,-599,-806,-7,-3415,-600,-139,-154,-177,-1126,-1127,-886,-214,-2,-135,-438,-14670,-14671,-93,-14672,-2013], [1,3,9388], [0,9389,9390,9391,10], [0,-205,-738,-202,-592,-1621,-58,-1374,-167,-2355,-408,-4001], -[0,-150,-13,-32,-8,-1240,-1,-204,-494,-158,-369,-38,-18,-725,-160,-254,-141,-585,-1978,-438,-11,-1931,-93,-157,-91,-96, --1238,-154,-90,-1667,-14673,-493,-2839,-21,-14674,-173,-132,-1604,-64,-14675,-397,-14676,-14677,-170,-578,-1139], +[0,-150,-13,-32,-8,-1240,-1,-204,-494,-158,-369,-38,-18,-725,-160,-254,-141,-585,-1978,-438,-11,-1931,-93,-157,-91,-96,-1238,-154,-90,-1667,-14673,-493,-2839,-21,-14674,-173,-132,-1604,-64,-14675,-397,-14676,-14677,-170,-578,-1139], [0,-18,-1151,-14678,-381,-1350,-1886,-4029,-6270,-6442,-3575], [1,3,9393], [0,9394,9395,9396,10], @@ -13129,16 +10239,12 @@ true, [1,3,9398], [0,9399,9400,9401,9], [0,-259,-1055,-344,-977,-1114,-646], -[0,-433,-855,-8,-118,-10,-407,-1,-442,-218,-232,-40,-1071,-56,-18,-4,-26,-323,-123,-48,-50,-2952,-86,-2,-11,-5,-271,-17, --65,-953,-3345,-264,-49,-115,-529,-14682,-134,-21,-1313,-1146,-14683,-145,-180,-9,-617,-151,-12,-25,-315,-63], +[0,-433,-855,-8,-118,-10,-407,-1,-442,-218,-232,-40,-1071,-56,-18,-4,-26,-323,-123,-48,-50,-2952,-86,-2,-11,-5,-271,-17,-65,-953,-3345,-264,-49,-115,-529,-14682,-134,-21,-1313,-1146,-14683,-145,-180,-9,-617,-151,-12,-25,-315,-63], [0,-18,-356,-694], [1,3,9403], [0,9404,9405,7,9], -[0,-205,-152,-6252,-6335,-40,-3995,-117,-475,-1055,-2255,-2527,-367,-324,-1122,-646,-14684,-6347,-14685,-264,-14686, --14687,-14688,-6443,-2357,-1711,-1391,-3988,-14689], -[0,-855,-8,-219,-202,-118,-10,-6444,-259,-407,-1,-227,-7,-218,-158,-18,-4,-160,-123,-48,-86,-141,-586,-2,-11,-5,-1092,-17, --65,-93,-96,-154,-4322,-2567,-524,-90,-49,-115,-198,-2472,-529,-134,-21,-1313,-2793,-84,-751,-898,-145,-180,-342,-3412, --156,-14690,-5350,-9,-617,-12,-176,-170,-63,-1327], +[0,-205,-152,-6252,-6335,-40,-3995,-117,-475,-1055,-2255,-2527,-367,-324,-1122,-646,-14684,-6347,-14685,-264,-14686,-14687,-14688,-6443,-2357,-1711,-1391,-3988,-14689], +[0,-855,-8,-219,-202,-118,-10,-6444,-259,-407,-1,-227,-7,-218,-158,-18,-4,-160,-123,-48,-86,-141,-586,-2,-11,-5,-1092,-17,-65,-93,-96,-154,-4322,-2567,-524,-90,-49,-115,-198,-2472,-529,-134,-21,-1313,-2793,-84,-751,-898,-145,-180,-342,-3412,-156,-14690,-5350,-9,-617,-12,-176,-170,-63,-1327], [1,3,9407], [0,9408,9409,9410,5], [0,-139,-673,-6443], @@ -13172,11 +10278,8 @@ true, [0,-889,-2158,-3756,-14701,-14702,-1328,-4030,-839,-216,-351], [1,3,9438], [0,9439,9440,9441,5], -[0,-14703,-14704,-14705,-14706,-14707,-14708,-14709,-14710,-14711,-14712,-14713,-14714,-35,-484,-14715,-14716,-14717, --14718,-14719,-14720,-14721,-260,-680,-14722,-1253,-5882,-14723,-1114,-3889,-6342,-14724,-2934,-14725,-14726,-14727, --14728,-14729,-14730,-14731], -[0,-11,-156,-2035,-21,-14732,-718,-14733,-5883,-14734,-777,-14735,-294,-14736,-1617,-14737,-1,-83,-9,-115,-67,-953,-14738, --1682,-14739,-982,-1697,-122,-393,-2685,-1870,-560,-39,-397,-2686,-18,-93,-14740], +[0,-14703,-14704,-14705,-14706,-14707,-14708,-14709,-14710,-14711,-14712,-14713,-14714,-35,-484,-14715,-14716,-14717,-14718,-14719,-14720,-14721,-260,-680,-14722,-1253,-5882,-14723,-1114,-3889,-6342,-14724,-2934,-14725,-14726,-14727,-14728,-14729,-14730,-14731], +[0,-11,-156,-2035,-21,-14732,-718,-14733,-5883,-14734,-777,-14735,-294,-14736,-1617,-14737,-1,-83,-9,-115,-67,-953,-14738,-1682,-14739,-982,-1697,-122,-393,-2685,-1870,-560,-39,-397,-2686,-18,-93,-14740], [0,-14741,-14742,-1217,-14743,-14744,-14745,-14746,-1879,-14747,-14748,-14749,-5128,-14750,-4351], [1,3,9443], [0,9444,9445,9446,10], @@ -13236,8 +10339,7 @@ true, [0,9498,9499,9500,4], [0,-719,-395,-139], [0,-51,-20,-55,-2516,-15,-82,-34], -[0,-1758,-4031,-991,-14789,-14790,-243,-568,-217,-707,-133,-178,-201,-37,-168,-445,-503,-616,-760,-1325,-267,-647,-258, --384,-299,-193], +[0,-1758,-4031,-991,-14789,-14790,-243,-568,-217,-707,-133,-178,-201,-37,-168,-445,-503,-616,-760,-1325,-267,-647,-258,-384,-299,-193], [1,3,9502], [0,9503,29,9504,6], [0,-3685,-879], @@ -13264,10 +10366,8 @@ true, [1,3,9525], [0,9526,9527,9528,4], [0,-1119], -[0,-162,-96,-253,-6036,-938,-14813,-14814,-6397,-149,-55,-26,-1,-14815,-66,-196,-8,-489,-6451,-285,-65,-436,-2,-4033,-606, --18], -[0,-14816,-537,-278,-1304,-108,-14817,-14818,-14819,-14820,-14821,-5528,-5529,-565,-3133,-536,-2794,-14822,-3776,-477, --14823,-14824,-14825,-166,-74,-763], +[0,-162,-96,-253,-6036,-938,-14813,-14814,-6397,-149,-55,-26,-1,-14815,-66,-196,-8,-489,-6451,-285,-65,-436,-2,-4033,-606,-18], +[0,-14816,-537,-278,-1304,-108,-14817,-14818,-14819,-14820,-14821,-5528,-5529,-565,-3133,-536,-2794,-14822,-3776,-477,-14823,-14824,-14825,-166,-74,-763], [1,3,9530], [0,9531,9532,9533,8], [0,-1119,-1274], @@ -13288,11 +10388,9 @@ true, [0,-743,-1535], [1,3,9548], [0,9549,9550,9551,4], -[0,-462,-1046,-1,-204,-56,-4,-1229,-215,-361,-386,-3698,-492,-1230,-115,-6082,-1947,-84,-14831,-67,-151,-1164,-12,-5761, --1866,-25,-2525,-315,-19,-4018,-5694,-1348], +[0,-462,-1046,-1,-204,-56,-4,-1229,-215,-361,-386,-3698,-492,-1230,-115,-6082,-1947,-84,-14831,-67,-151,-1164,-12,-5761,-1866,-25,-2525,-315,-19,-4018,-5694,-1348], [0,-415,-51,-118,-10,-509,-2653,-17,-364,-49,-1337,-651,-1108,-870,-63,-2740], -[0,-762,-37,-34,-5450,-5451,-5452,-334,-1186,-230,-224,-577,-119,-2774,-1,-534,-1187,-97,-3689,-293,-619,-1565,-1183, --1566,-654,-45,-2], +[0,-762,-37,-34,-5450,-5451,-5452,-334,-1186,-230,-224,-577,-119,-2774,-1,-534,-1187,-97,-3689,-293,-619,-1565,-1183,-1566,-654,-45,-2], [1,3,9553], [0,0,9554,9555,4], [0,-1310,-1219,-14832,-3], @@ -13316,8 +10414,7 @@ true, [0,-432,-491,-2174,-2702,-426,-708], [1,3,9574], [0,0,9575,9576,5], -[0,-366,-109,-169,-14846,-264,-14847,-471,-614,-71,-5,-14848,-526,-475,-22,-19,-13,-26,-780,-1,-180,-40,-6042,-28,-78,-3, --519,-2392,-15,-880,-147,-214,-2,-1706,-18,-93,-205,-14849], +[0,-366,-109,-169,-14846,-264,-14847,-471,-614,-71,-5,-14848,-526,-475,-22,-19,-13,-26,-780,-1,-180,-40,-6042,-28,-78,-3,-519,-2392,-15,-880,-147,-214,-2,-1706,-18,-93,-205,-14849], [0,-37,-299,-201,-6037,-267,-2810,-568,-14850,-178,-445,-4952,-6400,-647], [1,3,9578], [0,0,9579,9580,8], @@ -13338,10 +10435,8 @@ true, [0,-1173,-74,-98,-316,-37,-763,-916,-613,-1173], [1,3,9595], [0,9596,9597,7,4], -[0,-14857,-282,-454,-430,-20,-5854,-58,-14858,-35,-2877,-203,-545,-728,-674,-3449,-1093,-14859,-92,-72,-2391,-590,-4267, --1857,-597,-14860,-111,-14861,-7,-14862,-16,-1264,-312,-884,-4343,-5862], -[0,-162,-91,-86,-96,-3480,-937,-321,-14863,-14864,-666,-1048,-844,-1,-14865,-3653,-14866,-783,-14867,-485,-14868,-64,-412, --32,-585,-2348,-1955,-360,-2349,-8,-859,-1439,-603,-18], +[0,-14857,-282,-454,-430,-20,-5854,-58,-14858,-35,-2877,-203,-545,-728,-674,-3449,-1093,-14859,-92,-72,-2391,-590,-4267,-1857,-597,-14860,-111,-14861,-7,-14862,-16,-1264,-312,-884,-4343,-5862], +[0,-162,-91,-86,-96,-3480,-937,-321,-14863,-14864,-666,-1048,-844,-1,-14865,-3653,-14866,-783,-14867,-485,-14868,-64,-412,-32,-585,-2348,-1955,-360,-2349,-8,-859,-1439,-603,-18], [1,3,9599], [0,0,0,9600,8], [0,-692,-4356,-208,-267,-159,-6365], @@ -13357,15 +10452,13 @@ true, [1,3,9611], [0,9612,9613,263,6], [0,-20,-35,-118,-16,-88,-461,-3793,-600,-885,-635,-6456,-1968,-14875,-1502,-1279,-6453], -[0,-337,-165,-27,-30,-582,-195,-4,-215,-2570,-2,-2817,-169,-279,-140,-2818,-6457,-761,-4034,-3989,-6454,-652,-3134,-105, --870], +[0,-337,-165,-27,-30,-582,-195,-4,-215,-2570,-2,-2817,-169,-279,-140,-2818,-6457,-761,-4034,-3989,-6454,-652,-3134,-105,-870], [1,3,9615], [0,0,14,9616,4], [0,-2014,-14876,-14877,-37,-495,-534,-352,-2058,-14878,-14879,-166,-14880], [1,3,9618], [0,9619,9620,9621,11], -[0,-462,-152,-20,-2015,-23,-510,-5818,-14881,-14882,-2854,-14883,-14884,-1057,-225,-14885,-5831,-1816,-6455,-2704,-14886, --4034,-14887,-1502,-604,-14888,-3134], +[0,-462,-152,-20,-2015,-23,-510,-5818,-14881,-14882,-2854,-14883,-14884,-1057,-225,-14885,-5831,-1816,-6455,-2704,-14886,-4034,-14887,-1502,-604,-14888,-3134], [0,-43,-34,-197,-27,-6458,-56,-55,-14889], [0,-762,-37,-192,-694,-1557,-712,-113,-611,-1010,-2842,-1011,-116,-569,-306,-2545], [1,3,9623], @@ -13391,8 +10484,7 @@ true, [1,3,9643], [0,9644,9645,9646,6], [0,-194,-40,-553,-263], -[0,-4623,-109,-754,-751,-6459,-264,-14899,-71,-6460,-163,-13,-239,-482,-367,-581,-295,-1,-14900,-729,-3,-678,-159,-4,-134, --33,-2], +[0,-4623,-109,-754,-751,-6459,-264,-14899,-71,-6460,-163,-13,-239,-482,-367,-581,-295,-1,-14900,-729,-3,-678,-159,-4,-134,-33,-2], [0,-263,-40,-100,-14901,-14902,-46], [1,3,9648], [0,9649,9650,9651,10], @@ -13404,8 +10496,7 @@ true, [0,-3158,-3161,-14904,-1195,-5,-6461,-114,-3905,-176,-794,-8,-3,-1438,-196,-147,-373,-3854,-496,-1702,-44,-30], [1,3,9656], [0,9657,9658,9659,8], -[0,-14905,-1552,-60,-3749,-14906,-133,-58,-367,-457,-35,-40,-14907,-4933,-14908,-4934,-1959,-372,-586,-3411,-14909,-4935, --23,-592,-3076,-14910,-737,-14911,-3587,-690,-14912,-1870,-742,-1710,-744,-2013,-14913], +[0,-14905,-1552,-60,-3749,-14906,-133,-58,-367,-457,-35,-40,-14907,-4933,-14908,-4934,-1959,-372,-586,-3411,-14909,-4935,-23,-592,-3076,-14910,-737,-14911,-3587,-690,-14912,-1870,-742,-1710,-744,-2013,-14913], [0,-772,-14914,-14915,-3,-640,-39,-69,-14916], [0,-993,-61,-94,-376,-3,-1324], [1,3,9661], @@ -13449,14 +10540,11 @@ true, [1,3,9699], [0,9700,9701,9702,4], [0,-90,-14929,-121,-437,-44], -[0,-2492,-3481,-2503,-2537,-2461,-6466,-3720,-2291,-207,-77,-2964,-319,-153,-6467,-120,-307,-29,-997,-47,-22,-19,-1291, --14930,-6468,-1051,-582,-26,-483,-1,-2484,-64,-412,-14931,-6469,-1521,-5445,-65,-494,-1762,-6,-36,-437,-235,-287,-809, --1125,-2], +[0,-2492,-3481,-2503,-2537,-2461,-6466,-3720,-2291,-207,-77,-2964,-319,-153,-6467,-120,-307,-29,-997,-47,-22,-19,-1291,-14930,-6468,-1051,-582,-26,-483,-1,-2484,-64,-412,-14931,-6469,-1521,-5445,-65,-494,-1762,-6,-36,-437,-235,-287,-809,-1125,-2], [0,-14932,-6,-5159,-14933,-14934,-2052,-1546,-6200,-14935,-1309,-14936,-3975,-14937], [1,3,9704], [0,90,0,9705,9], -[0,-1018,-1309,-3365,-3865,-24,-2134,-14938,-352,-45,-278,-14939,-14940,-2925,-14941,-14942,-38,-223,-14943,-14944,-1546, --1895,-6470,-418,-14945], +[0,-1018,-1309,-3365,-3865,-24,-2134,-14938,-352,-45,-278,-14939,-14940,-2925,-14941,-14942,-38,-223,-14943,-14944,-1546,-1895,-6470,-418,-14945], [1,3,9707], [0,9708,9709,9710,9], [0,-4440,-6471,-6472,-719,-14946,-272,-215,-14947], @@ -13467,25 +10555,20 @@ true, [0,-566,-224,-14950,-1854,-753,-1304,-14951,-14952,-14953,-2733,-14954], [1,3,9715], [0,9716,9717,264,5], -[0,-11,-3966,-90,-1741,-14955,-14956,-14957,-14958,-4364,-14959,-14960,-14961,-2288,-14962,-2020,-14963,-758,-6478,-2021, --1910,-822,-3851,-4035,-506,-4036,-157,-96,-14964,-2619,-301,-20,-58,-158,-141,-1214,-210,-945,-41,-28,-371,-14965,-956, --342,-859,-2364,-23,-374,-233,-14966,-188,-152,-38,-1985,-1684,-555,-493,-2912,-4,-392,-2684,-1255,-686,-645, +[0,-11,-3966,-90,-1741,-14955,-14956,-14957,-14958,-4364,-14959,-14960,-14961,-2288,-14962,-2020,-14963,-758,-6478,-2021,-1910,-822,-3851,-4035,-506,-4036,-157,-96,-14964,-2619,-301,-20,-58,-158,-141,-1214,-210,-945,-41,-28,-371,-14965,-956,-342,-859,-2364,-23,-374,-233,-14966,-188,-152,-38,-1985,-1684,-555,-493,-2912,-4,-392,-2684,-1255,-686,-645, -1332,-689,-276,-154,-6479,-397,-14967,-200,-104,-6058,-18,-523,-173,-2639], [0,-14968,-3235,-191,-143,-14969,-1014,-1337,-2278,-1523,-259,-800,-160,-7], [1,3,9719], [0,34,9720,9721,5], -[0,-1200,-77,-238,-62,-237,-1278,-29,-47,-22,-19,-1751,-508,-431,-1,-12,-9,-25,-64,-8,-176,-78,-15,-4,-6,-36,-7,-14,-875, --900,-4698,-305,-645,-880,-57,-214,-33,-44,-124,-18,-93,-173,-1201,-2955], +[0,-1200,-77,-238,-62,-237,-1278,-29,-47,-22,-19,-1751,-508,-431,-1,-12,-9,-25,-64,-8,-176,-78,-15,-4,-6,-36,-7,-14,-875,-900,-4698,-305,-645,-880,-57,-214,-33,-44,-124,-18,-93,-173,-1201,-2955], [0,-2247,-570,-899,-108,-1296,-52,-116,-352,-1297,-796,-331,-1298,-699,-1299], [1,3,9723], [0,34,9724,9725,4], -[0,-11,-21,-137,-530,-29,-5,-22,-19,-6480,-6481,-6482,-1600,-912,-2638,-158,-26,-1,-12,-9,-6483,-785,-8,-176,-4,-7,-14, --275,-875,-305,-645,-4037,-57,-44,-124,-2,-73,-1201], +[0,-11,-21,-137,-530,-29,-5,-22,-19,-6480,-6481,-6482,-1600,-912,-2638,-158,-26,-1,-12,-9,-6483,-785,-8,-176,-4,-7,-14,-275,-875,-305,-645,-4037,-57,-44,-124,-2,-73,-1201], [0,-73,-897,-6484,-570,-899,-108,-1296,-52,-116,-352,-1297,-796,-331,-1298,-699,-1299], [1,3,9727], [0,34,9728,9729,8], -[0,-11,-21,-137,-109,-29,-71,-5,-22,-19,-6480,-6481,-14970,-6482,-1600,-912,-2638,-13,-26,-1,-12,-9,-6483,-785,-65,-4,-7, --14,-275,-875,-305,-645,-4037,-14971,-44,-124,-2,-73,-1201,-4367], +[0,-11,-21,-137,-109,-29,-71,-5,-22,-19,-6480,-6481,-14970,-6482,-1600,-912,-2638,-13,-26,-1,-12,-9,-6483,-785,-65,-4,-7,-14,-275,-875,-305,-645,-4037,-14971,-44,-124,-2,-73,-1201,-4367], [0,-73,-897,-6484,-570,-899,-108,-1296,-52,-116,-352,-1297,-796,-331,-1298,-699,-1299,-615,-24,-1265], [1,3,9731], [0,9732,9733,9734,5], @@ -13516,8 +10599,7 @@ true, [1,3,9757], [0,9758,9759,9760,11], [0,-2220,-2272], -[0,-314,-6020,-498,-290,-50,-366,-245,-1178,-319,-153,-120,-14987,-29,-5,-47,-6198,-22,-19,-2851,-1,-12,-3969,-64,-186, --1406,-56,-10,-8,-176,-17,-242,-4,-6,-36,-1135,-7,-16,-2,-84], +[0,-314,-6020,-498,-290,-50,-366,-245,-1178,-319,-153,-120,-14987,-29,-5,-47,-6198,-22,-19,-2851,-1,-12,-3969,-64,-186,-1406,-56,-10,-8,-176,-17,-242,-4,-6,-36,-1135,-7,-16,-2,-84], [0,-2016,-6,-696,-111,-443,-905], [1,3,9762], [0,0,9763,9764,5], @@ -13534,10 +10616,8 @@ true, [0,-31,-3830,-3818], [1,3,9775], [0,9776,9777,9778,4], -[0,-1077,-15001,-5731,-395,-15002,-15003,-15004,-1541,-15005,-15006,-15007,-15008,-15009,-15010,-15011,-15012,-15013, --15014,-15015,-2824,-6436,-15016,-15017,-15018,-5588,-15019,-15020,-15021], -[0,-43,-118,-27,-15022,-1382,-1,-232,-15023,-486,-4,-245,-625,-26,-123,-378,-3876,-2,-5,-15024,-15025,-279,-4667,-5975, --15026,-1015,-15027,-15028,-15029,-15030,-15031,-15032,-6351,-15033,-15034,-909], +[0,-1077,-15001,-5731,-395,-15002,-15003,-15004,-1541,-15005,-15006,-15007,-15008,-15009,-15010,-15011,-15012,-15013,-15014,-15015,-2824,-6436,-15016,-15017,-15018,-5588,-15019,-15020,-15021], +[0,-43,-118,-27,-15022,-1382,-1,-232,-15023,-486,-4,-245,-625,-26,-123,-378,-3876,-2,-5,-15024,-15025,-279,-4667,-5975,-15026,-1015,-15027,-15028,-15029,-15030,-15031,-15032,-6351,-15033,-15034,-909], [0,-15035,-53,-2277], [1,3,9780], [0,9781,9782,9783,4], @@ -13560,13 +10640,11 @@ true, [0,-5012,-371,-216,-53,-144,-353,-2], [1,3,9799], [0,9800,9801,221,5], -[0,-5773,-15049,-5777,-3848,-2860,-5774,-5775,-5772,-5776,-3849,-20,-35,-203,-3847,-5770,-23,-152,-1497,-2803,-16,-881, --5771,-2839,-690,-312,-44], +[0,-5773,-15049,-5777,-3848,-2860,-5774,-5775,-5772,-5776,-3849,-20,-35,-203,-3847,-5770,-23,-152,-1497,-2803,-16,-881,-5771,-2839,-690,-312,-44], [0,-169,-1356,-3850,-29,-143,-5,-140,-2861,-3282,-1532,-8,-489,-17,-7,-130,-57,-2], [1,3,9803], [0,34,9804,9805,5], -[0,-15050,-15051,-15052,-5463,-1898,-1899,-1900,-2285,-22,-19,-51,-508,-1,-12,-9,-25,-15053,-15,-4,-7,-496,-147,-44,-124, --2,-1201], +[0,-15050,-15051,-15052,-5463,-1898,-1899,-1900,-2285,-22,-19,-51,-508,-1,-12,-9,-25,-15053,-15,-4,-7,-496,-147,-44,-124,-2,-1201], [0,-184,-570,-899,-108,-1296,-52,-116,-352,-1297,-796,-331,-1298,-699,-1299], [1,3,9807], [0,9808,9809,9810,4], @@ -13588,36 +10666,14 @@ true, [1,3,9824], [0,9825,0,9826,8], [0,-15057,-15058,-15059], -[0,-5871,-2853,-6079,-3832,-5204,-5603,-39,-15060,-400,-15061,-608,-6451,-5969,-2152,-3911,-2141,-2191,-15062,-15063,-128, --15064,-6486,-3888,-440,-4514,-15065,-432,-278,-607,-6463,-5208,-5980,-3984,-331,-15066,-15067,-1545,-6462,-6253,-658, --905,-263,-2147,-2243,-1838,-1535,-2814,-15068,-3926,-15069,-1830,-5014,-982,-1488,-15070,-15071,-267,-491,-849,-2224, --2771,-208,-362, --3601,-741,-1027,-2649,-2845,-2145,-2057,-2252,-15072,-168,-3937,-5203,-902,-15073,-1582,-5606,-5133,-1286,-2901,-2173, --3938,-6145,-15074,-2206,-15075,-2916,-500,-58,-363,-2647,-2190,-6465,-5498,-3757,-3943,-2715,-5209,-5254,-100,-917,-37, --4031,-15076,-1859,-1345,-15077,-252,-15078,-74,-1802,-2546,-15079,-44,-693,-5784,-5094,-4804,-15080,-5146,-5874,-3565, --5210,-1336,-4005, --3887,-2268,-1331,-730,-6299,-796,-576,-113,-243,-3313,-1556,-532,-5497,-901,-832,-5213,-1204,-15081,-15082,-1540,-5207, --836,-892,-1168,-260,-306,-79,-4008,-3994,-15083,-1280,-1527,-15084,-15085,-919,-6164,-3744,-5868,-1382,-574,-4513,-759, --2001,-2721,-1847,-15086,-2908,-6076,-4675,-5214,-1340,-59,-534,-15087,-1292,-2071,-6077,-15088,-2542,-5979,-3542,-3600, --1029,-61, --1564,-5220,-3493,-15089,-696,-6110,-5876,-15090,-2614,-647,-5872,-1185,-15091,-2889,-266,-5593,-3657,-514,-8,-196,-1141, --1170,-939,-1736,-1126,-5216,-3688,-6072,-5311,-159,-626,-597,-1843,-570,-425,-5202,-5499,-567,-3521,-15092,-15093,-446, --15094,-6260,-5132,-3687,-193,-301,-5205,-254,-921,-15095,-6449,-15096,-2254,-15097,-4674,-4015,-5227,-1552,-5015,-4007, --4030,-15098, --1950,-5869,-222,-3563,-2250,-6259,-2772,-1190,-5298,-439,-4006,-15099,-171,-2557,-371,-5212,-6326,-1153,-6255,-760, --2631,-1887,-5215,-15100,-3755,-2922,-916,-6080,-592,-5154,-15101,-15102,-15103,-15104,-6257,-1850,-5543,-2186,-85,-1173, --15105,-1828,-303,-327,-1021,-695,-2735,-465,-6487,-568,-643,-6078,-824,-4004,-1637,-3877,-3961,-1848,-2233,-1549,-3993, --15106,-5221,-230, --1739,-2031,-3872,-350,-15107,-1071,-2232,-3846,-108,-1018,-3942,-443,-2133,-1835,-5211,-427,-965,-3,-1775,-111,-15108, --1335,-1490,-5870,-2153,-5206,-566,-15109,-6112,-5255,-15110,-605,-233,-1877,-24,-3529,-2194,-6264,-6360,-15111,-4803, --6300,-114,-144,-78,-2072,-6258,-4673,-15112,-5153,-15113,-1868,-1869,-924,-1575,-6450,-6464,-3967,-2223,-445,-381, --15114,-2584,-5218, --15115,-3522,-2689,-5757,-3946,-5225,-15116,-2900,-15117,-423,-2156,-95,-920,-3912,-158,-349,-15118,-13,-5226,-5437, --15119,-1536,-3558,-6173,-1851,-15120,-258,-6111,-15121,-15122,-635,-15123,-3254,-15124,-3269,-2637,-702,-1861,-3842, --15125,-991,-15126,-15127,-5715,-15128,-15129,-706,-354,-15130,-5875,-126,-6402,-6174,-218,-2189,-4942,-709,-3730,-133, --2073,-5713,-6256,-6399,-5223, --3941,-15131,-15132,-339,-1587,-388,-335,-15133,-704,-15134,-2815,-1304,-1862,-2723,-157,-3985,-983,-15135,-3939,-458, --680,-5219,-2137,-6024,-293,-15136,-15137,-3566], +[0,-5871,-2853,-6079,-3832,-5204,-5603,-39,-15060,-400,-15061,-608,-6451,-5969,-2152,-3911,-2141,-2191,-15062,-15063,-128,-15064,-6486,-3888,-440,-4514,-15065,-432,-278,-607,-6463,-5208,-5980,-3984,-331,-15066,-15067,-1545,-6462,-6253,-658,-905,-263,-2147,-2243,-1838,-1535,-2814,-15068,-3926,-15069,-1830,-5014,-982,-1488,-15070,-15071,-267,-491,-849,-2224,-2771,-208,-362, +-3601,-741,-1027,-2649,-2845,-2145,-2057,-2252,-15072,-168,-3937,-5203,-902,-15073,-1582,-5606,-5133,-1286,-2901,-2173,-3938,-6145,-15074,-2206,-15075,-2916,-500,-58,-363,-2647,-2190,-6465,-5498,-3757,-3943,-2715,-5209,-5254,-100,-917,-37,-4031,-15076,-1859,-1345,-15077,-252,-15078,-74,-1802,-2546,-15079,-44,-693,-5784,-5094,-4804,-15080,-5146,-5874,-3565,-5210,-1336,-4005, +-3887,-2268,-1331,-730,-6299,-796,-576,-113,-243,-3313,-1556,-532,-5497,-901,-832,-5213,-1204,-15081,-15082,-1540,-5207,-836,-892,-1168,-260,-306,-79,-4008,-3994,-15083,-1280,-1527,-15084,-15085,-919,-6164,-3744,-5868,-1382,-574,-4513,-759,-2001,-2721,-1847,-15086,-2908,-6076,-4675,-5214,-1340,-59,-534,-15087,-1292,-2071,-6077,-15088,-2542,-5979,-3542,-3600,-1029,-61, +-1564,-5220,-3493,-15089,-696,-6110,-5876,-15090,-2614,-647,-5872,-1185,-15091,-2889,-266,-5593,-3657,-514,-8,-196,-1141,-1170,-939,-1736,-1126,-5216,-3688,-6072,-5311,-159,-626,-597,-1843,-570,-425,-5202,-5499,-567,-3521,-15092,-15093,-446,-15094,-6260,-5132,-3687,-193,-301,-5205,-254,-921,-15095,-6449,-15096,-2254,-15097,-4674,-4015,-5227,-1552,-5015,-4007,-4030,-15098, +-1950,-5869,-222,-3563,-2250,-6259,-2772,-1190,-5298,-439,-4006,-15099,-171,-2557,-371,-5212,-6326,-1153,-6255,-760,-2631,-1887,-5215,-15100,-3755,-2922,-916,-6080,-592,-5154,-15101,-15102,-15103,-15104,-6257,-1850,-5543,-2186,-85,-1173,-15105,-1828,-303,-327,-1021,-695,-2735,-465,-6487,-568,-643,-6078,-824,-4004,-1637,-3877,-3961,-1848,-2233,-1549,-3993,-15106,-5221,-230, +-1739,-2031,-3872,-350,-15107,-1071,-2232,-3846,-108,-1018,-3942,-443,-2133,-1835,-5211,-427,-965,-3,-1775,-111,-15108,-1335,-1490,-5870,-2153,-5206,-566,-15109,-6112,-5255,-15110,-605,-233,-1877,-24,-3529,-2194,-6264,-6360,-15111,-4803,-6300,-114,-144,-78,-2072,-6258,-4673,-15112,-5153,-15113,-1868,-1869,-924,-1575,-6450,-6464,-3967,-2223,-445,-381,-15114,-2584,-5218, +-15115,-3522,-2689,-5757,-3946,-5225,-15116,-2900,-15117,-423,-2156,-95,-920,-3912,-158,-349,-15118,-13,-5226,-5437,-15119,-1536,-3558,-6173,-1851,-15120,-258,-6111,-15121,-15122,-635,-15123,-3254,-15124,-3269,-2637,-702,-1861,-3842,-15125,-991,-15126,-15127,-5715,-15128,-15129,-706,-354,-15130,-5875,-126,-6402,-6174,-218,-2189,-4942,-709,-3730,-133,-2073,-5713,-6256,-6399,-5223, +-3941,-15131,-15132,-339,-1587,-388,-335,-15133,-704,-15134,-2815,-1304,-1862,-2723,-157,-3985,-983,-15135,-3939,-458,-680,-5219,-2137,-6024,-293,-15136,-15137,-3566], [1,3,9828], [0,0,9829,9830,4], [0,-119,-2774,-3], @@ -13637,14 +10693,11 @@ true, [1,3,9844], [0,9845,9846,9847,8], [0,-163,-367,-35,-1624,-3344,-951,-490,-738,-263], -[0,-366,-15144,-4507,-2963,-3175,-1373,-4658,-364,-157,-2996,-1,-12,-2341,-56,-38,-4,-4281,-470,-221,-2442,-559,-2,-104, --30], +[0,-366,-15144,-4507,-2963,-3175,-1373,-4658,-364,-157,-2996,-1,-12,-2341,-56,-38,-4,-4281,-470,-221,-2442,-559,-2,-104,-30], [0,-100,-46,-103,-889,-205,-422,-353], [1,3,9849], [0,0,9850,9851,6], -[0,-11,-21,-49,-63,-157,-96,-938,-6171,-13,-15145,-1053,-15146,-295,-15147,-32,-15148,-585,-15149,-15150,-960,-631,-513, --1073,-1074,-1954,-2348,-1955,-1417,-310,-962,-1418,-15151,-311,-632,-4203,-15152,-10,-15153,-101,-490,-3,-1671,-15154, --1316,-38,-2407,-2418,-416,-14,-275,-1498,-2482,-15155,-27,-2070,-15156,-70,-15157,-18,-2756], +[0,-11,-21,-49,-63,-157,-96,-938,-6171,-13,-15145,-1053,-15146,-295,-15147,-32,-15148,-585,-15149,-15150,-960,-631,-513,-1073,-1074,-1954,-2348,-1955,-1417,-310,-962,-1418,-15151,-311,-632,-4203,-15152,-10,-15153,-101,-490,-3,-1671,-15154,-1316,-38,-2407,-2418,-416,-14,-275,-1498,-2482,-15155,-27,-2070,-15156,-70,-15157,-18,-2756], [0,-24,-444,-80,-278,-649,-4590,-53,-5104,-15158,-15159], [1,3,9853], [0,9854,9855,9856,9], @@ -13654,13 +10707,9 @@ true, [1,3,9858], [0,9859,9860,9861,8], [0,-2535,-15164,-2379,-121], -[0,-48,-11,-156,-829,-209,-3966,-1039,-6180,-1139,-4555,-3200,-4551,-21,-132,-6489,-498,-290,-50,-4039,-6211,-15165,-6490, --15166,-1019,-2088,-15167,-319,-153,-120,-15168,-307,-29,-1780,-5,-47,-89,-2539,-162,-86,-96,-3727,-15169,-4847,-6491, --1614,-508,-625,-158,-26,-150,-1,-255,-12,-783,-9,-148,-25,-64,-186,-1406,-41,-56,-15170, --8,-1782,-489,-176,-15171,-78,-38,-234,-4,-435,-6,-1255,-36,-437,-15172,-346,-600,-740,-882,-15173,-2447,-15174,-4016, --57,-214,-2,-18,-93,-173], -[0,-4370,-15175,-15176,-131,-382,-2560,-53,-6,-1510,-15177,-746,-15178,-15179,-15180,-15181,-1309,-15182,-15183,-15184, --217,-576,-699,-4781,-15185,-102,-2508,-4790,-15186,-882], +[0,-48,-11,-156,-829,-209,-3966,-1039,-6180,-1139,-4555,-3200,-4551,-21,-132,-6489,-498,-290,-50,-4039,-6211,-15165,-6490,-15166,-1019,-2088,-15167,-319,-153,-120,-15168,-307,-29,-1780,-5,-47,-89,-2539,-162,-86,-96,-3727,-15169,-4847,-6491,-1614,-508,-625,-158,-26,-150,-1,-255,-12,-783,-9,-148,-25,-64,-186,-1406,-41,-56,-15170, +-8,-1782,-489,-176,-15171,-78,-38,-234,-4,-435,-6,-1255,-36,-437,-15172,-346,-600,-740,-882,-15173,-2447,-15174,-4016,-57,-214,-2,-18,-93,-173], +[0,-4370,-15175,-15176,-131,-382,-2560,-53,-6,-1510,-15177,-746,-15178,-15179,-15180,-15181,-1309,-15182,-15183,-15184,-217,-576,-699,-4781,-15185,-102,-2508,-4790,-15186,-882], [1,3,9863], [0,0,0,9864,4], [0,-1882,-1882,-31,-1179,-200], @@ -13671,18 +10720,10 @@ true, [1,3,9870], [0,9871,9872,254,11], [0,-38,-2019,-3112,-1012,-1052,-2688], -[0,-205,-774,-800,-325,-312,-263,-2714,-28,-808,-136,-202,-1479,-454,-35,-669,-272,-6296,-280,-294,-1386,-336,-410,-856, --639,-1257,-16,-177,-2097,-339,-1743,-1110,-286,-18,-981,-1458,-6297,-6280,-245,-475,-58,-26,-1075,-2255,-2251,-2238, --326,-740,-2276,-15190,-3347,-1532,-3991,-6290,-141,-1718,-586,-1484,-1652,-6295,-130,-139,-885,-2, --3858,-11,-663,-471,-6289,-2215,-3451,-1378,-2463,-367,-225,-1236,-467,-3992,-737,-3502,-2926,-2057,-450,-3247,-2866, --6281,-1738,-169,-6285,-47,-96,-301,-6291,-846,-6292,-797,-6294,-869,-2219,-154,-1134,-6282,-2603,-143,-140,-6293,-2795, --3503,-686,-1332,-3504,-90,-6283,-15191,-3505,-553,-2683,-3506,-539,-1760,-6354,-6288,-1834,-3507,-681,-2684,-891,-6276, --366,-1019,-662,-89,-2356,-3508,-1444,-505,-21,-4002,-3989,-1617,-727,-880,-2261,-2685,-2686,-1317,-757,-751,-1024,-3555, --2724,-805,-132,-6272,-1906,-3353,-1753,-6286,-3990,-942,-1453,-346,-156,-2278,-3509,-464,-2561,-3183,-6273,-6277,-4039, --6287,-6426,-2730,-1561,-397,-6274,-15192,-3861,-2867,-2732,-1451,-2469,-6278,-3987,-374,-995,-137,-6275,-1867,-15193, --1574, --6279,-2088,-6284,-6271,-1777,-2619,-2583,-2216,-3517,-170,-2729,-3988,-1986,-1040,-3194,-15194,-1139,-398,-4550,-3196, --3197,-776], +[0,-205,-774,-800,-325,-312,-263,-2714,-28,-808,-136,-202,-1479,-454,-35,-669,-272,-6296,-280,-294,-1386,-336,-410,-856,-639,-1257,-16,-177,-2097,-339,-1743,-1110,-286,-18,-981,-1458,-6297,-6280,-245,-475,-58,-26,-1075,-2255,-2251,-2238,-326,-740,-2276,-15190,-3347,-1532,-3991,-6290,-141,-1718,-586,-1484,-1652,-6295,-130,-139,-885,-2, +-3858,-11,-663,-471,-6289,-2215,-3451,-1378,-2463,-367,-225,-1236,-467,-3992,-737,-3502,-2926,-2057,-450,-3247,-2866,-6281,-1738,-169,-6285,-47,-96,-301,-6291,-846,-6292,-797,-6294,-869,-2219,-154,-1134,-6282,-2603,-143,-140,-6293,-2795,-3503,-686,-1332,-3504,-90,-6283,-15191,-3505,-553,-2683,-3506,-539,-1760,-6354,-6288,-1834,-3507,-681,-2684,-891,-6276, +-366,-1019,-662,-89,-2356,-3508,-1444,-505,-21,-4002,-3989,-1617,-727,-880,-2261,-2685,-2686,-1317,-757,-751,-1024,-3555,-2724,-805,-132,-6272,-1906,-3353,-1753,-6286,-3990,-942,-1453,-346,-156,-2278,-3509,-464,-2561,-3183,-6273,-6277,-4039,-6287,-6426,-2730,-1561,-397,-6274,-15192,-3861,-2867,-2732,-1451,-2469,-6278,-3987,-374,-995,-137,-6275,-1867,-15193,-1574, +-6279,-2088,-6284,-6271,-1777,-2619,-2583,-2216,-3517,-170,-2729,-3988,-1986,-1040,-3194,-15194,-1139,-398,-4550,-3196,-3197,-776], [1,3,9874], [0,0,9875,9876,10], [0,-43,-2927,-10,-17,-38,-34], @@ -13690,14 +10731,12 @@ true, [1,3,9878], [0,9879,9880,9881,9], [0,-231,-3165,-15195,-462,-344,-167,-648,-6166,-288], -[0,-49,-63,-50,-297,-925,-298,-749,-618,-1177,-1146,-5,-3423,-15196,-22,-19,-26,-1,-115,-118,-56,-10,-6398,-17,-978,-4,-7, --122,-2,-30], +[0,-49,-63,-50,-297,-925,-298,-749,-618,-1177,-1146,-5,-3423,-15196,-22,-19,-26,-1,-115,-118,-56,-10,-6398,-17,-978,-4,-7,-122,-2,-30], [0,-2551,-160,-15197,-745,-15198,-291,-355,-15199,-15200,-15201,-292,-2377,-95,-3997,-15202,-15203], [1,3,9883], [0,9884,9885,9886,9], [0,-15204,-15205,-294,-3367,-227,-436,-4773,-15206], -[0,-11,-156,-21,-96,-15207,-1614,-5786,-141,-1,-255,-2920,-9,-3857,-271,-4660,-342,-15208,-154,-397,-4033,-18,-523,-93, --173], +[0,-11,-156,-21,-96,-15207,-1614,-5786,-141,-1,-255,-2920,-9,-3857,-271,-4660,-342,-15208,-154,-397,-4033,-18,-523,-93,-173], [0,-3242,-4644,-4645,-2542,-1148,-1752,-42,-15209,-15210,-4373,-571,-15211,-15212,-15213,-15214,-15215,-15216,-15217], [1,3,9888], [0,94,9889,9890,5], @@ -13709,14 +10748,12 @@ true, [0,-235,-106,-1037,-6,-95,-291,-355,-102,-6405,-15219,-2703,-15220], [1,3,9896], [0,0,9897,9898,11], -[0,-11,-156,-209,-398,-170,-21,-132,-207,-77,-62,-153,-120,-157,-302,-295,-1,-12,-3969,-25,-64,-186,-1406,-10,-964,-8,-17, --38,-4,-121,-6,-36,-14,-900,-15221,-3206,-1311,-182,-558], +[0,-11,-156,-209,-398,-170,-21,-132,-207,-77,-62,-153,-120,-157,-302,-295,-1,-12,-3969,-25,-64,-186,-1406,-10,-964,-8,-17,-38,-4,-121,-6,-36,-14,-900,-15221,-3206,-1311,-182,-558], [0,-6,-4012,-15222,-1301,-6,-131,-6493,-95,-291,-355,-15223,-15224,-15225,-15226], [1,3,9900], [0,9901,9902,9903,9], [0,-90,-15227,-15228], -[0,-11,-300,-170,-21,-132,-137,-1865,-357,-15229,-153,-120,-47,-89,-22,-19,-506,-91,-454,-26,-1,-12,-25,-64,-10,-8,-176, --17,-4,-6,-36,-7,-2,-104], +[0,-11,-300,-170,-21,-132,-137,-1865,-357,-15229,-153,-120,-47,-89,-22,-19,-506,-91,-454,-26,-1,-12,-25,-64,-10,-8,-176,-17,-4,-6,-36,-7,-2,-104], [0,-15230,-15231,-6,-106,-6470], [1,3,9905], [0,9906,9907,9908,6], @@ -13726,16 +10763,13 @@ true, [1,3,9910], [0,9911,9912,9913,11], [0,-1909,-302,-15234,-528,-951,-965,-872,-2419,-3977,-2272,-15235], -[0,-48,-11,-21,-132,-137,-90,-6489,-5921,-1348,-498,-50,-6201,-15236,-1909,-1004,-4039,-2293,-1154,-6353,-4465,-15237, --2587,-15238,-15239,-15240,-153,-120,-307,-15241,-6269,-15242,-5,-47,-89,-1834,-506,-1156,-105,-96,-6494,-2216,-301, --6491,-26,-5272,-3592,-3593,-203,-1,-15243,-12,-246,-9,-180,-148,-25,-64,-186,-15244,-2582,-28,-56,-10, +[0,-48,-11,-21,-132,-137,-90,-6489,-5921,-1348,-498,-50,-6201,-15236,-1909,-1004,-4039,-2293,-1154,-6353,-4465,-15237,-2587,-15238,-15239,-15240,-153,-120,-307,-15241,-6269,-15242,-5,-47,-89,-1834,-506,-1156,-105,-96,-6494,-2216,-301,-6491,-26,-5272,-3592,-3593,-203,-1,-15243,-12,-246,-9,-180,-148,-25,-64,-186,-15244,-2582,-28,-56,-10, -78,-17,-227,-391,-4,-6,-36,-437,-872,-7,-740,-397,-214,-814,-2,-84,-5113,-30,-6495,-18,-523,-93], [0,-6,-527,-4029,-106], [1,3,9915], [0,9916,9917,9918,4], [0,-15245], -[0,-15246,-15247,-15248,-15249,-77,-62,-307,-4825,-4826,-15250,-15251,-4827,-15252,-15253,-43,-13,-15254,-15255,-1,-15256, --9,-78,-3923,-3,-4,-14,-15257,-809,-27,-190,-1125,-177,-2], +[0,-15246,-15247,-15248,-15249,-77,-62,-307,-4825,-4826,-15250,-15251,-4827,-15252,-15253,-43,-13,-15254,-15255,-1,-15256,-9,-78,-3923,-3,-4,-14,-15257,-809,-27,-190,-1125,-177,-2], [0,-15258,-3350,-1786,-6142,-3351,-6486,-15259,-1810,-53,-6135,-1181,-277,-15260,-2277,-1819,-1168,-3391,-15261,-15262], [1,3,9920], [0,0,9921,9922,6], @@ -13744,18 +10778,13 @@ true, [1,3,9924], [0,9925,9926,9927,4], [0,-90,-15265,-1778,-542,-461,-15266,-1128,-439], -[0,-1138,-209,-170,-21,-137,-49,-63,-820,-207,-77,-6498,-238,-62,-237,-15267,-15268,-15269,-15270,-1279,-5,-1006,-2599, --3482,-22,-19,-1020,-3417,-105,-1005,-4959,-1600,-6425,-2935,-912,-157,-194,-430,-2624,-482,-284,-26,-483,-295,-35, --15271,-87,-1,-185,-12,-9,-25,-785,-670,-10,-78,-219,-17,-1664,-15272,-1105,-38,-4,-436, --15273,-346,-7,-14,-6330,-900,-3357,-1334,-15274,-5167,-1311,-15275,-15276,-229,-4037,-878,-15277,-44,-2,-104,-15278,-30, --73,-990,-888,-1531], +[0,-1138,-209,-170,-21,-137,-49,-63,-820,-207,-77,-6498,-238,-62,-237,-15267,-15268,-15269,-15270,-1279,-5,-1006,-2599,-3482,-22,-19,-1020,-3417,-105,-1005,-4959,-1600,-6425,-2935,-912,-157,-194,-430,-2624,-482,-284,-26,-483,-295,-35,-15271,-87,-1,-185,-12,-9,-25,-785,-670,-10,-78,-219,-17,-1664,-15272,-1105,-38,-4,-436, +-15273,-346,-7,-14,-6330,-900,-3357,-1334,-15274,-5167,-1311,-15275,-15276,-229,-4037,-878,-15277,-44,-2,-104,-15278,-30,-73,-990,-888,-1531], [0,-73,-95,-15279], [1,3,9929], [0,9930,9931,9932,5], [0,-4896,-484,-248], -[0,-11,-21,-3823,-1781,-157,-936,-15280,-582,-26,-369,-483,-5362,-210,-1,-12,-83,-9,-75,-25,-67,-129,-285,-38,-2403,-682, --15281,-1985,-1451,-15282,-555,-1452,-15283,-2912,-4,-7,-14,-275,-466,-1118,-2807,-15284,-347,-2225,-15285,-229,-4897, --328,-182,-2027,-2444], +[0,-11,-21,-3823,-1781,-157,-936,-15280,-582,-26,-369,-483,-5362,-210,-1,-12,-83,-9,-75,-25,-67,-129,-285,-38,-2403,-682,-15281,-1985,-1451,-15282,-555,-1452,-15283,-2912,-4,-7,-14,-275,-466,-1118,-2807,-15284,-347,-2225,-15285,-229,-4897,-328,-182,-2027,-2444], [0,-4903,-128,-15286,-4040,-15287,-1345,-1855,-292,-15288,-2606,-95,-3971,-1182,-1017,-6139,-5571,-248], [1,3,9934], [0,9935,9936,9937,5], @@ -13774,8 +10803,7 @@ true, 1731196800000, [1,3,9949], [0,9950,9951,7,8], -[0,-15296,-2563,-2077,-15297,-15298,-15299,-4724,-15300,-302,-1805,-15301,-226,-499,-1958,-4038,-862,-2884,-1101,-2632, --15302,-15303,-4368,-4725,-3100,-906,-522,-15304,-15305,-15306,-3992,-907,-288,-2921,-814,-15307,-348,-15308,-262,-263], +[0,-15296,-2563,-2077,-15297,-15298,-15299,-4724,-15300,-302,-1805,-15301,-226,-499,-1958,-4038,-862,-2884,-1101,-2632,-15302,-15303,-4368,-4725,-3100,-906,-522,-15304,-15305,-15306,-3992,-907,-288,-2921,-814,-15307,-348,-15308,-262,-263], [0,-4859,-120,-320,-251,-424,-15309,-47,-526,-506,-15310,-1881,-3821,-242,-6,-36,-135,-30,-15311], [1,3,9953], [0,9954,0,9955,4], @@ -13855,14 +10883,12 @@ true, 1734220800000, [1,3,10029], [0,0,10030,10031,4], -[0,-394,-80,-1277,-44,-1,-7,-14,-2421,-177,-285,-38,-41,-4,-453,-26,-182,-2,-1747,-65,-682,-3499,-157,-284,-2513,-1095, --2676,-1222,-15349,-9,-151,-5103,-330,-19,-4018,-3218,-22], +[0,-394,-80,-1277,-44,-1,-7,-14,-2421,-177,-285,-38,-41,-4,-453,-26,-182,-2,-1747,-65,-682,-3499,-157,-284,-2513,-1095,-2676,-1222,-15349,-9,-151,-5103,-330,-19,-4018,-3218,-22], [0,-24,-80,-649,-3740,-277,-1510,-53,-15350,-2892], [1,3,10033], [0,10034,10035,10036,4], [0,-90,-15351,-15352], -[0,-48,-11,-209,-578,-1327,-170,-449,-21,-174,-109,-71,-5,-91,-96,-333,-777,-15353,-15354,-60,-13,-239,-3965,-26,-1,-40, --3308,-78,-3,-15,-111,-7,-810,-397,-2,-606,-742,-18,-93], +[0,-48,-11,-209,-578,-1327,-170,-449,-21,-174,-109,-71,-5,-91,-96,-333,-777,-15353,-15354,-60,-13,-239,-3965,-26,-1,-40,-3308,-78,-3,-15,-111,-7,-810,-397,-2,-606,-742,-18,-93], [0,-1162,-95,-100,-3899,-15355], [1,3,10038], [0,0,10039,10040,11], @@ -13897,14 +10923,12 @@ true, [0,-1591,-748,-384,-116,-42,-1592,-1593], [1,3,10069], [0,10070,10071,10072,9], -[0,-15375,-15376,-15377,-4066,-15378,-4539,-840,-6051,-183,-58,-2202,-15379,-15380,-5031,-101,-5885,-1433,-92,-188,-15381, --644,-3894,-16,-600,-33,-2], +[0,-15375,-15376,-15377,-4066,-15378,-4539,-840,-6051,-183,-58,-2202,-15379,-15380,-5031,-101,-5885,-1433,-92,-188,-15381,-644,-3894,-16,-600,-33,-2], [0,-1,-145,-64,-2340,-41,-8,-795,-972,-7,-15382], [0,-2497,-42,-116,-99,-3777], [1,3,10074], [0,10075,10076,10077,5], -[0,-2717,-3712,-152,-1209,-20,-118,-1093,-552,-44,-23,-16,-158,-392,-18,-117,-41,-3119,-58,-3044,-624,-1624,-484,-873, --1332,-524,-15383,-604,-15384,-557,-15385,-3245,-15386,-3285,-173,-15387,-342,-15388,-15389,-523,-15390,-15391,-15392], +[0,-2717,-3712,-152,-1209,-20,-118,-1093,-552,-44,-23,-16,-158,-392,-18,-117,-41,-3119,-58,-3044,-624,-1624,-484,-873,-1332,-524,-15383,-604,-15384,-557,-15385,-3245,-15386,-3285,-173,-15387,-342,-15388,-15389,-523,-15390,-15391,-15392], [0,-2207,-5341,-89,-4657,-6349,-287,-2278,-3928,-15393,-15394,-4035,-6466], [0,-6,-3384,-18,-42,-5345,-3649,-1625], [1,3,10079], @@ -13944,8 +10968,7 @@ true, [1,3,10113], [0,10114,10115,10116,4], [0,-1479,-130,-15410,-646,-673,-2044], -[0,-2014,-8,-259,-1,-639,-232,-18,-41,-486,-4,-26,-160,-215,-1085,-2,-11,-29,-5,-225,-93,-96,-2906,-345,-686,-526,-191, --1024,-652,-15411,-173,-15412,-3986,-15413,-794,-397,-12,-25,-176,-2454,-398], +[0,-2014,-8,-259,-1,-639,-232,-18,-41,-486,-4,-26,-160,-215,-1085,-2,-11,-29,-5,-225,-93,-96,-2906,-345,-686,-526,-191,-1024,-652,-15411,-173,-15412,-3986,-15413,-794,-397,-12,-25,-176,-2454,-398], [0,-6,-45,-18,-5898,-1822,-15414,-1094,-3968,-3892,-2271,-1585], [1,3,10118], [0,0,10119,10120,11], @@ -13953,14 +10976,10 @@ true, [0,-15416,-371,-331,-650,-2,-908,-53,-107], [1,3,10122], [0,10123,10124,10125,5], -[0,-325,-1286,-104,-15417,-1209,-20,-118,-210,-23,-1112,-16,-481,-285,-803,-18,-117,-41,-195,-4,-58,-625,-624,-141,-2, --1991,-15418,-15419,-301,-1813,-284,-644,-154,-15420,-15421,-15422,-15423,-2078,-686,-15424,-15425,-15426,-1293,-15427, --15428,-2586,-15429,-15430,-15431,-15432,-342,-15433,-1711,-2454,-15434,-4905,-374,-523,-15435,-15436,-15437,-4036, --15438,-1639, +[0,-325,-1286,-104,-15417,-1209,-20,-118,-210,-23,-1112,-16,-481,-285,-803,-18,-117,-41,-195,-4,-58,-625,-624,-141,-2,-1991,-15418,-15419,-301,-1813,-284,-644,-154,-15420,-15421,-15422,-15423,-2078,-686,-15424,-15425,-15426,-1293,-15427,-15428,-2586,-15429,-15430,-15431,-15432,-342,-15433,-1711,-2454,-15434,-4905,-374,-523,-15435,-15436,-15437,-4036,-15438,-1639, -2020], [0,-8,-6,-2228,-36,-29,-5,-143,-15439,-191,-15440,-15441,-4035], -[0,-15442,-2199,-15443,-5335,-15444,-6510,-2892,-100,-832,-53,-103,-108,-433,-15445,-2277,-865,-2899,-802,-422,-1161,-711, --15446,-2132,-45,-1358,-6157,-6158,-6156,-6155,-15447,-15448,-46,-3649,-6511,-1430,-6512,-6,-527], +[0,-15442,-2199,-15443,-5335,-15444,-6510,-2892,-100,-832,-53,-103,-108,-433,-15445,-2277,-865,-2899,-802,-422,-1161,-711,-15446,-2132,-45,-1358,-6157,-6158,-6156,-6155,-15447,-15448,-46,-3649,-6511,-1430,-6512,-6,-527], [1,3,10127], [0,10128,10129,10130,4], [0,-11,-6478,-430,-386,-15449], @@ -13981,9 +11000,7 @@ true, [0,23,0,97,5], [1,3,10145], [0,23,0,10146,9], -[0,-192,-52,-1485,-1791,-2104,-1792,-1524,-322,-1793,-1794,-1795,-2105,-2106,-1796,-1797,-2107,-2108,-2109,-6,-527,-2110, --2111,-2112,-2113,-73,-1319,-494,-2114,-248,-1320,-184,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-2115, --322,-2116,-2117,-2118,-2119,-2120,-2121,-2939,-15453], +[0,-192,-52,-1485,-1791,-2104,-1792,-1524,-322,-1793,-1794,-1795,-2105,-2106,-1796,-1797,-2107,-2108,-2109,-6,-527,-2110,-2111,-2112,-2113,-73,-1319,-494,-2114,-248,-1320,-184,-2,-45,-500,-113,-615,-1798,-1799,-24,-31,-1321,-1800,-1322,-2115,-322,-2116,-2117,-2118,-2119,-2120,-2121,-2939,-15453], [1,3,10148], [0,23,0,98,9], [1,3,10150], @@ -13993,14 +11010,12 @@ true, [0,23,0,99,11], [1,3,10155], [0,10156,10157,10158,6], -[0,-1289,-6321,-15456,-15457,-3919,-163,-456,-1935,-942,-581,-368,-3146,-408,-40,-15458,-15459,-850,-3996,-2655,-387, --15460,-3037,-1965,-2255,-797,-23,-344,-233,-863,-678,-549,-3071,-552,-4895,-3588,-1121,-468,-15461,-439,-15462,-205], +[0,-1289,-6321,-15456,-15457,-3919,-163,-456,-1935,-942,-581,-368,-3146,-408,-40,-15458,-15459,-850,-3996,-2655,-387,-15460,-3037,-1965,-2255,-797,-23,-344,-233,-863,-678,-549,-3071,-552,-4895,-3588,-1121,-468,-15461,-439,-15462,-205], [0,-751,-6459,-1512,-364,-2529,-3303,-1753,-143,-6460,-1506,-5,-2801,-526,-475,-118,-586,-197,-123,-2,-30], [0,-4904,-362,-4040,-15463,-15464,-1165,-5617,-15465,-2162,-46,-889,-40,-839], [1,3,10160], [0,10161,0,271,9], -[0,-73,-886,-158,-87,-101,-18,-117,-434,-141,-641,-438,-1132,-888,-2639,-11,-225,-271,-157,-96,-6441,-15466,-524,-4000, --493,-1360,-3140,-173,-508,-1453,-15467,-15468,-1475,-2462,-374,-4396,-6513,-1391,-15469,-4398,-1982,-3141], +[0,-73,-886,-158,-87,-101,-18,-117,-434,-141,-641,-438,-1132,-888,-2639,-11,-225,-271,-157,-96,-6441,-15466,-524,-4000,-493,-1360,-3140,-173,-508,-1453,-15467,-15468,-1475,-2462,-374,-4396,-6513,-1391,-15469,-4398,-1982,-3141], [1,3,10163], [0,10164,0,10165,6], [0,-436,-220,-5382,-1097,-971,-2462,-4969], @@ -14040,13 +11055,11 @@ true, [1,3,10199], [0,10200,10201,58,9], [0,-494,-1841,-778,-6515,-6516], -[0,-13,-3,-1,-158,-33,-18,-214,-48,-141,-2,-11,-829,-109,-29,-5,-677,-65,-93,-71,-47,-154,-15483,-6479,-449,-174,-21,-75, --64,-9,-67,-12,-83,-25,-129,-137], +[0,-13,-3,-1,-158,-33,-18,-214,-48,-141,-2,-11,-829,-109,-29,-5,-677,-65,-93,-71,-47,-154,-15483,-6479,-449,-174,-21,-75,-64,-9,-67,-12,-83,-25,-129,-137], [1,3,10203], [0,10204,10205,58,11], [0,-4401,-6515,-6516,-15484,-15485,-15486], -[0,-13,-1273,-3,-1,-3287,-158,-33,-18,-4,-48,-2,-11,-829,-109,-29,-5,-65,-93,-71,-449,-174,-21,-75,-64,-9,-67,-15487,-12, --83,-25,-129,-137], +[0,-13,-1273,-3,-1,-3287,-158,-33,-18,-4,-48,-2,-11,-829,-109,-29,-5,-65,-93,-71,-449,-174,-21,-75,-64,-9,-67,-15487,-12,-83,-25,-129,-137], [1,3,10207], [0,10208,132,58,11], [0,-205,-2940,-4045], @@ -14065,8 +11078,7 @@ true, [0,-243,-2859,-37,-6517,-1846], [1,3,10223], [0,228,10224,10225,5], -[0,-1195,-761,-3304,-5,-1353,-1893,-163,-2262,-32,-2917,-3033,-196,-15491,-15492,-119,-197,-7,-986,-6518,-1120,-33,-199, --1896,-2,-2918,-3149], +[0,-1195,-761,-3304,-5,-1353,-1893,-163,-2262,-32,-2917,-3033,-196,-15491,-15492,-119,-197,-7,-986,-6518,-1120,-33,-199,-1896,-2,-2918,-3149], [0,-76,-61,-930,-1588,-1036], [1,3,10227], [0,0,10228,272,5], @@ -14074,8 +11086,7 @@ true, [1,3,10230], [0,10231,10232,10233,8], [0,-3589,-6528,-3668,-58,-218,-3670,-1409,-247,-2678,-3672,-344,-15493,-7,-5391,-161,-5393,-1271,-5394], -[0,-50,-109,-754,-15494,-15495,-264,-15496,-1146,-5,-15497,-750,-15498,-22,-19,-15499,-13,-239,-625,-1,-12,-256,-75,-25, --118,-1227,-387,-4943,-3,-641,-4,-3674,-1261,-16,-27,-190,-5392,-33,-2], +[0,-50,-109,-754,-15494,-15495,-264,-15496,-1146,-5,-15497,-750,-15498,-22,-19,-15499,-13,-239,-625,-1,-12,-256,-75,-25,-118,-1227,-387,-4943,-3,-641,-4,-3674,-1261,-16,-27,-190,-5392,-33,-2], [0,-1825,-94,-712,-908,-52,-3775], [1,3,10235], [0,10236,10237,273,4], @@ -14174,8 +11185,7 @@ true, [1,3,10329], [0,10330,10331,10332,6], [0,-227,-436,-15512,-15513,-15514,-2070,-2040], -[0,-8,-194,-10,-1430,-1,-72,-7,-14,-396,-369,-117,-6251,-4,-1784,-26,-86,-11,-456,-17,-4232,-65,-938,-1332,-366,-21,-145, --15515,-15516,-985,-156,-9,-807,-877,-12,-25,-466,-15517,-385,-347], +[0,-8,-194,-10,-1430,-1,-72,-7,-14,-396,-369,-117,-6251,-4,-1784,-26,-86,-11,-456,-17,-4232,-65,-938,-1332,-366,-21,-145,-15515,-15516,-985,-156,-9,-807,-877,-12,-25,-466,-15517,-385,-347], [0,-700,-399,-42,-6534,-116], [1,3,10334], [0,10335,10336,10337,10], @@ -14194,8 +11204,7 @@ true, [1,3,10348], [0,10349,0,10350,5], [0,-1913,-15526,-114,-15527,-44,-565], -[0,-1529,-59,-15528,-15529,-15530,-15531,-3736,-15532,-15533,-1026,-128,-292,-2377,-2908,-95,-15534,-15535,-166,-171, --3820,-15536,-915], +[0,-1529,-59,-15528,-15529,-15530,-15531,-3736,-15532,-15533,-1026,-128,-292,-2377,-2908,-95,-15534,-15535,-166,-171,-3820,-15536,-915], [1,3,10352], [0,0,14,10353,9], [0,-503,-3825,-31,-1184,-472,-15537,-1028,-1869,-208,-277,-1882,-917,-15538,-1275,-15539,-15540], @@ -14266,16 +11275,12 @@ true, [1,3,10419], [0,10420,10421,10422,5], [0,-3856,-6407,-4624,-858,-683,-57], -[0,-15571,-4061,-2944,-4062,-1898,-1899,-1900,-2285,-4063,-2945,-4064,-11,-21,-49,-1032,-290,-50,-3856,-1760,-663,-191, --29,-5,-140,-22,-19,-15572,-86,-20,-3886,-385,-26,-2586,-1,-12,-9,-145,-180,-25,-118,-41,-15573,-28,-56,-10,-8,-176,-78, --1251,-4,-7,-496,-16,-44,-155,-215,-2,-84,-2456], +[0,-15571,-4061,-2944,-4062,-1898,-1899,-1900,-2285,-4063,-2945,-4064,-11,-21,-49,-1032,-290,-50,-3856,-1760,-663,-191,-29,-5,-140,-22,-19,-15572,-86,-20,-3886,-385,-26,-2586,-1,-12,-9,-145,-180,-25,-118,-41,-15573,-28,-56,-10,-8,-176,-78,-1251,-4,-7,-496,-16,-44,-155,-215,-2,-84,-2456], [0,-8,-2,-184,-61], [1,3,10424], [0,10425,10426,10427,5], [0,-2021,-430,-20,-117,-58,-218,-5181,-152,-555,-868,-738,-288,-2926,-604,-205], -[0,-11,-1903,-1147,-1598,-663,-77,-62,-15574,-245,-1178,-319,-153,-120,-307,-3345,-29,-3708,-5,-47,-89,-3851,-4797,-475, --22,-19,-506,-15575,-4793,-157,-26,-1,-12,-83,-9,-115,-67,-64,-8,-1086,-219,-285,-65,-38,-4026,-15576,-4,-6,-36,-437,-7, --14,-900,-417,-1334,-80,-882,-559,-2,-104,-6535], +[0,-11,-1903,-1147,-1598,-663,-77,-62,-15574,-245,-1178,-319,-153,-120,-307,-3345,-29,-3708,-5,-47,-89,-3851,-4797,-475,-22,-19,-506,-15575,-4793,-157,-26,-1,-12,-83,-9,-115,-67,-64,-8,-1086,-219,-285,-65,-38,-4026,-15576,-4,-6,-36,-437,-7,-14,-900,-417,-1334,-80,-882,-559,-2,-104,-6535], [0,-61,-8,-52,-2750,-35,-15577], [1,3,10429], [0,10430,10431,10432,8], @@ -14320,8 +11325,7 @@ true, [0,-24,-381,-38], [1,3,10470], [0,0,10471,10472,9], -[0,-11,-21,-15597,-3310,-15598,-1,-196,-79,-138,-588,-213,-389,-731,-676,-2911,-1988,-160,-14,-275,-2042,-1259,-229,-5816, --1315], +[0,-11,-21,-15597,-3310,-15598,-1,-196,-79,-138,-588,-213,-389,-731,-676,-2911,-1988,-160,-14,-275,-2042,-1259,-229,-5816,-1315], [0,-5678,-160,-391,-572,-15599,-15600,-1779,-61,-930,-1988,-1036,-1315,-6500], [1,3,10474], [0,10475,10476,10477,9], @@ -14330,15 +11334,12 @@ true, [0,-6,-106,-85,-15603,-418,-15604,-3034,-95], [1,3,10479], [0,10480,10481,10482,8], -[0,-15605,-1908,-15606,-2292,-3299,-5123,-183,-773,-20,-481,-1057,-35,-670,-460,-101,-3366,-344,-1680,-4266,-325,-392,-16, --600,-739,-2045,-752,-2207,-15607,-289,-3429], -[0,-329,-49,-63,-2569,-15608,-3930,-15609,-77,-238,-62,-237,-169,-421,-1146,-822,-140,-15610,-15611,-105,-2929,-10,-799, --197,-1769,-2123,-4,-14,-1334,-155,-215,-2,-30], +[0,-15605,-1908,-15606,-2292,-3299,-5123,-183,-773,-20,-481,-1057,-35,-670,-460,-101,-3366,-344,-1680,-4266,-325,-392,-16,-600,-739,-2045,-752,-2207,-15607,-289,-3429], +[0,-329,-49,-63,-2569,-15608,-3930,-15609,-77,-238,-62,-237,-169,-421,-1146,-822,-140,-15610,-15611,-105,-2929,-10,-799,-197,-1769,-2123,-4,-14,-1334,-155,-215,-2,-30], [0,-100,-1376,-3931,-42,-1891,-3936,-1680,-697,-3935,-3932,-3934,-3933,-2897,-1764,-571], [1,3,10484], [0,0,10485,10486,11], -[0,-705,-120,-29,-47,-89,-6368,-22,-19,-582,-232,-1,-12,-25,-64,-186,-340,-15612,-8,-15613,-677,-4044,-15614,-4,-6,-36, --6369,-328,-57,-2,-15615], +[0,-705,-120,-29,-47,-89,-6368,-22,-19,-582,-232,-1,-12,-25,-64,-186,-340,-15612,-8,-15613,-677,-4044,-15614,-4,-6,-36,-6369,-328,-57,-2,-15615], [0,-6,-6177,-106,-3729,-2928,-2942,-217,-192,-15616,-4043,-2410,-1309,-3947,-1018,-15617], [1,3,10488], [0,10489,10490,10491,4], @@ -14351,8 +11352,7 @@ true, [0,-6,-2244,-442,-873,-557,-15620,-242], [1,3,10497], [0,0,10498,10499,4], -[0,-15,-78,-79,-3,-6,-327,-27,-280,-1,-23,-494,-177,-908,-149,-158,-286,-18,-110,-36,-15621,-2,-11,-5,-187,-872,-47,-96, --3923,-517,-357,-952,-89,-21,-3166,-64,-287,-15622,-319,-414,-138,-861,-213,-6467,-19,-2602], +[0,-15,-78,-79,-3,-6,-327,-27,-280,-1,-23,-494,-177,-908,-149,-158,-286,-18,-110,-36,-15621,-2,-11,-5,-187,-872,-47,-96,-3923,-517,-357,-952,-89,-21,-3166,-64,-287,-15622,-319,-414,-138,-861,-213,-6467,-19,-2602], [0,-535,-1828,-6,-1553,-15623,-780], [1,3,10501], [0,0,0,10502,4], @@ -14368,8 +11368,7 @@ true, [1,3,10512], [0,10513,10514,10515,4], [0,-1941,-15632,-1942,-2333,-121], -[0,-15633,-1515,-3490,-1154,-15634,-91,-86,-6468,-1061,-1,-83,-9,-75,-67,-64,-15635,-129,-10,-8,-17,-4,-435,-6,-235,-4047, --287], +[0,-15633,-1515,-3490,-1154,-15634,-91,-86,-6468,-1061,-1,-83,-9,-75,-67,-64,-15635,-129,-10,-8,-17,-4,-435,-6,-235,-4047,-287], [0,-235,-106,-1037,-6,-95,-291,-355,-1354,-3531,-4029,-1060], [1,3,10517], [0,10518,10519,10520,6], @@ -14379,8 +11378,7 @@ true, [1,3,10522], [0,10523,10524,10525,8], [0,-2470,-605], -[0,-6536,-48,-11,-398,-449,-21,-1167,-132,-2948,-1598,-820,-77,-62,-237,-120,-1478,-47,-91,-86,-26,-1,-12,-485,-145,-67, --64,-186,-412,-1894,-340,-15638,-8,-4044,-4,-435,-6,-36,-15639,-287,-7,-14,-275,-229,-2], +[0,-6536,-48,-11,-398,-449,-21,-1167,-132,-2948,-1598,-820,-77,-62,-237,-120,-1478,-47,-91,-86,-26,-1,-12,-485,-145,-67,-64,-186,-412,-1894,-340,-15638,-8,-4044,-4,-435,-6,-36,-15639,-287,-7,-14,-275,-229,-2], [0,-6,-2471,-6113,-131,-1855,-2051,-2544], [1,3,10527], [0,10528,10529,10530,8], @@ -14401,8 +11399,7 @@ true, [0,-4446,-1912,-15643,-15644,-15645,-15646,-15647,-15648,-15649,-15650,-15651,-15652,-15653], [1,3,10544], [0,0,10545,272,5], -[0,-11,-21,-137,-49,-63,-207,-6498,-237,-206,-29,-5,-22,-19,-1600,-1853,-91,-86,-1568,-284,-26,-1,-83,-9,-75,-67,-785, --340,-10,-547,-8,-176,-17,-7,-14,-305,-2,-990], +[0,-11,-21,-137,-49,-63,-207,-6498,-237,-206,-29,-5,-22,-19,-1600,-1853,-91,-86,-1568,-284,-26,-1,-83,-9,-75,-67,-785,-340,-10,-547,-8,-176,-17,-7,-14,-305,-2,-990], [1,3,10547], [0,0,10548,259,8], [0,-2538,-1614,-508,-141,-271,-1143,-374,-4,-2420,-80,-467,-214,-2,-438,-18,-93,-524], @@ -14447,8 +11444,7 @@ true, [0,-184,-76,-61,-1988,-930,-1588,-1036,-1120], [1,3,10589], [0,117,55,10590,4], -[0,-168,-1180,-474,-2171,-4003,-2173,-6356,-6357,-6358,-4004,-243,-503,-2133,-37,-299,-178,-201,-4005,-4006,-4007,-4008, --6359], +[0,-168,-1180,-474,-2171,-4003,-2173,-6356,-6357,-6358,-4004,-243,-503,-2133,-37,-299,-178,-201,-4005,-4006,-4007,-4008,-6359], [1,3,10592], [0,169,10593,10594,5], [0,-5,-87,-15673,-490,-15674,-2,-1131], @@ -14475,15 +11471,13 @@ true, [0,-1345,-1855,-3642,-5364,-15680,-615,-15681,-52,-60], [1,3,10616], [0,10617,10618,10619,4], -[0,-15682,-15683,-15684,-15685,-15686,-294,-20,-1387,-210,-945,-410,-226,-4032,-486,-387,-460,-195,-1554,-272,-15687, --15688,-1816,-286,-16,-689,-379,-2,-15689,-15690,-15691], +[0,-15682,-15683,-15684,-15685,-15686,-294,-20,-1387,-210,-945,-410,-226,-4032,-486,-387,-460,-195,-1554,-272,-15687,-15688,-1816,-286,-16,-689,-379,-2,-15689,-15690,-15691], [0,-73,-15692,-15693,-15694,-15695], [0,-4428,-15696,-53], [1,3,10621], [0,10622,10623,10624,9], [0,-90,-15697], -[0,-8,-80,-10,-6,-431,-1,-18,-4,-26,-36,-48,-141,-522,-2,-11,-17,-65,-467,-93,-47,-96,-154,-15698,-15699,-3284,-15700, --1019,-21,-4002,-132,-64,-2293,-15701,-12,-148,-25,-176,-137,-1515,-15702,-2088,-19,-1777,-170,-22,-6213,-6490], +[0,-8,-80,-10,-6,-431,-1,-18,-4,-26,-36,-48,-141,-522,-2,-11,-17,-65,-467,-93,-47,-96,-154,-15698,-15699,-3284,-15700,-1019,-21,-4002,-132,-64,-2293,-15701,-12,-148,-25,-176,-137,-1515,-15702,-2088,-19,-1777,-170,-22,-6213,-6490], [0,-6,-131,-15703,-6381,-15704,-95,-6493,-2,-15705,-15706], [1,3,10626], [0,10627,10628,7,4], @@ -14491,12 +11485,8 @@ true, [0,-2050,-6011,-5,-140,-15707], [1,3,10630], [0,10631,10632,7,4], -[0,-15708,-263,-302,-203,-15709,-602,-104,-202,-1209,-35,-907,-502,-336,-1938,-2098,-377,-16,-3148,-481,-2097,-87,-15710, --15711,-101,-1743,-1110,-392,-15712,-15713,-1142,-2481,-15714,-326,-3880,-3123,-15715,-15716,-1522,-313,-4585,-6539, --2355,-296,-525,-786,-15717,-3704,-499,-1897,-15718,-348,-15719,-15720,-15721,-3742,-758,-1734,-4737,-15722,-3500,-1493, --15723,-15724], -[0,-5739,-80,-14,-289,-30,-231,-135,-15725,-4041,-15726,-2,-251,-787,-2416,-169,-6306,-6136,-140,-15727,-2676,-421,-822, --2611,-3070,-366,-662,-3354,-1881,-15728,-4619,-2823,-1691,-15729,-15730], +[0,-15708,-263,-302,-203,-15709,-602,-104,-202,-1209,-35,-907,-502,-336,-1938,-2098,-377,-16,-3148,-481,-2097,-87,-15710,-15711,-101,-1743,-1110,-392,-15712,-15713,-1142,-2481,-15714,-326,-3880,-3123,-15715,-15716,-1522,-313,-4585,-6539,-2355,-296,-525,-786,-15717,-3704,-499,-1897,-15718,-348,-15719,-15720,-15721,-3742,-758,-1734,-4737,-15722,-3500,-1493,-15723,-15724], +[0,-5739,-80,-14,-289,-30,-231,-135,-15725,-4041,-15726,-2,-251,-787,-2416,-169,-6306,-6136,-140,-15727,-2676,-421,-822,-2611,-3070,-366,-662,-3354,-1881,-15728,-4619,-2823,-1691,-15729,-15730], [1,3,10634], [0,10635,0,7,5], [0,-455,-15731,-551,-112], @@ -14527,8 +11517,7 @@ true, [0,23,0,97,8], [1,3,10662], [0,10663,10664,10665,8], -[0,-3500,-3499,-5102,-15743,-251,-421,-424,-4438,-15744,-1276,-1650,-726,-1076,-1079,-101,-6444,-296,-15745,-3898,-2128, --3154,-377,-4730,-2129,-3123,-135,-348,-502], +[0,-3500,-3499,-5102,-15743,-251,-421,-424,-4438,-15744,-1276,-1650,-726,-1076,-1079,-101,-6444,-296,-15745,-3898,-2128,-3154,-377,-4730,-2129,-3123,-135,-348,-502], [0,-366,-5,-105,-1277,-15746,-30], [0,-399,-42,-1277,-6543,-6544], [1,3,10667], @@ -14590,12 +11579,10 @@ true, [0,23,0,97,6], [1,3,10724], [0,10725,0,246,4], -[0,-205,-28,-1479,-98,-16,-171,-1608,-58,-674,-987,-1045,-86,-6185,-1976,-818,-6186,-683,-686,-1203,-6187,-2261,-6188, --3845,-346,-6189,-794,-6190,-6191,-6192,-6193,-6194,-6195,-6196,-15759], +[0,-205,-28,-1479,-98,-16,-171,-1608,-58,-674,-987,-1045,-86,-6185,-1976,-818,-6186,-683,-686,-1203,-6187,-2261,-6188,-3845,-346,-6189,-794,-6190,-6191,-6192,-6193,-6194,-6195,-6196,-15759], [1,3,10727], [0,10728,0,77,10], -[0,-4441,-1912,-4471,-4447,-4391,-4437,-4436,-4426,-4434,-4435,-4427,-15760,-15761,-4443,-4389,-4470,-15762,-4432,-15763, --4433,-4430,-15764,-15765,-4445,-4476,-4444], +[0,-4441,-1912,-4471,-4447,-4391,-4437,-4436,-4426,-4434,-4435,-4427,-15760,-15761,-4443,-4389,-4470,-15762,-4432,-15763,-4433,-4430,-15764,-15765,-4445,-4476,-4444], [1,3,10730], [0,10731,10732,268,5], [0,-44,-4383], @@ -14627,16 +11614,14 @@ true, [1,3,10758], [0,10759,10760,285,10], [0,-855,-263], -[0,-15781,-49,-63,-1313,-4055,-471,-5,-22,-19,-3305,-87,-1,-185,-12,-6548,-246,-9,-25,-28,-10,-17,-4,-6549,-7,-815,-155, --2], +[0,-15781,-49,-63,-1313,-4055,-471,-5,-22,-19,-3305,-87,-1,-185,-12,-6548,-246,-9,-25,-28,-10,-17,-4,-6549,-7,-815,-155,-2], [1,3,10762], [0,10763,10764,285,4], [0,-117,-4449], [0,-774,-155,-28,-10,-1,-7,-87,-4,-2,-471,-5,-17,-4055,-815,-49,-6549,-9,-3305,-12,-25,-19,-185,-63,-22,-246,-6548], [1,3,10766], [0,10767,10768,10769,6], -[0,-205,-183,-155,-1801,-1250,-125,-1386,-2331,-15784,-289,-481,-88,-2019,-323,-1226,-2255,-554,-15785,-1652,-4211,-3951, --1230,-1114,-6424,-15786,-6413,-553,-1996,-15787,-15788,-3697], +[0,-205,-183,-155,-1801,-1250,-125,-1386,-2331,-15784,-289,-481,-88,-2019,-323,-1226,-2255,-554,-15785,-1652,-4211,-3951,-1230,-1114,-6424,-15786,-6413,-553,-1996,-15787,-15788,-3697], [0,-689,-7,-14,-87,-475,-625,-26,-698,-15789,-761,-1806,-4289,-6021,-417,-652,-15790,-15791,-15792,-15793], [0,-6510,-100,-2199,-15794,-2892,-53,-15795,-1358,-45,-1884,-144,-4450,-6,-6511,-2], [1,24,10771], @@ -14645,15 +11630,12 @@ true, [1,3,10774], [0,10775,10776,10777,9], [0,-15796,-15797,-15798,-15799,-15800], -[0,-21,-15801,-15802,-15803,-207,-77,-62,-237,-191,-5,-15804,-22,-6249,-19,-157,-96,-253,-284,-158,-55,-4808,-15805,-1,-9, --180,-3447,-41,-340,-3216,-15806,-15807,-10,-15808,-15809,-65,-15810,-682,-15811,-15812,-15813,-14,-2807,-1311,-15814, --2225,-229,-305,-645,-80,-3450,-15815,-3343,-44,-199,-15816,-2,-5537], +[0,-21,-15801,-15802,-15803,-207,-77,-62,-237,-191,-5,-15804,-22,-6249,-19,-157,-96,-253,-284,-158,-55,-4808,-15805,-1,-9,-180,-3447,-41,-340,-3216,-15806,-15807,-10,-15808,-15809,-65,-15810,-682,-15811,-15812,-15813,-14,-2807,-1311,-15814,-2225,-229,-305,-645,-80,-3450,-15815,-3343,-44,-199,-15816,-2,-5537], [0,-1589,-15817,-1359,-2925,-418,-1357,-95,-6,-73,-184,-494,-1590,-2933,-4012,-15818], [1,3,10779], [0,0,10780,10781,4], [0,-357,-2,-104,-4813,-923], -[0,-6519,-6520,-15819,-6521,-6522,-1586,-3895,-6523,-2703,-6524,-6525,-1511,-2280,-6,-6526,-184,-73,-291,-95,-1357,-2282, --6527], +[0,-6519,-6520,-15819,-6521,-6522,-1586,-3895,-6523,-2703,-6524,-6525,-1511,-2280,-6,-6526,-184,-73,-291,-95,-1357,-2282,-6527], [1,3,10783], [0,10784,10785,10786,5], [0,-15820], @@ -14693,8 +11675,7 @@ true, [1,3,10819], [0,10820,10821,7,5], [0,-1375,-845,-1839,-2930,-4020,-15839,-2099,-326,-994,-2184,-16,-1142,-313,-691,-15840,-15841], -[0,-4053,-6550,-15842,-15843,-15844,-5,-662,-140,-1188,-15845,-15846,-105,-1005,-1778,-1568,-509,-1,-2791,-1503,-259, --1493,-1832,-4,-470,-15847,-15848,-2,-15849,-15850,-15851,-6551,-104,-30], +[0,-4053,-6550,-15842,-15843,-15844,-5,-662,-140,-1188,-15845,-15846,-105,-1005,-1778,-1568,-509,-1,-2791,-1503,-259,-1493,-1832,-4,-470,-15847,-15848,-2,-15849,-15850,-15851,-6551,-104,-30], [1,3,10823], [0,10824,10825,10826,4], [0,-35,-2335,-41,-387,-1554,-379], @@ -14713,8 +11694,7 @@ true, [1,3,10838], [0,10839,10840,10841,11], [0,-15853,-121,-687], -[0,-48,-11,-156,-209,-578,-1039,-931,-2657,-300,-170,-21,-132,-90,-319,-153,-120,-96,-158,-26,-1,-255,-12,-9,-148,-25,-64, --8,-176,-859,-234,-4,-6,-36,-18,-523,-93,-173], +[0,-48,-11,-156,-209,-578,-1039,-931,-2657,-300,-170,-21,-132,-90,-319,-153,-120,-96,-158,-26,-1,-255,-12,-9,-148,-25,-64,-8,-176,-859,-234,-4,-6,-36,-18,-523,-93,-173], [0,-6,-527,-500,-106], [1,3,10843], [0,0,122,10844,5], @@ -14756,8 +11736,7 @@ true, [1,3,10880], [0,10881,10882,7,4], [0,-5531,-15873,-6002,-3318,-15874,-15875,-552,-2521,-198,-1561,-5534,-15876,-15877,-205], -[0,-6337,-3766,-6338,-15878,-623,-15879,-5,-475,-3726,-1726,-284,-2466,-1,-1071,-371,-956,-15880,-819,-234,-181,-16,-27, --881,-82,-2,-289,-2017], +[0,-6337,-3766,-6338,-15878,-623,-15879,-5,-475,-3726,-1726,-284,-2466,-1,-1071,-371,-956,-15880,-819,-234,-181,-16,-27,-881,-82,-2,-289,-2017], [1,3,10884], [0,10885,10886,10887,11], [0,-1493,-167,-1785,-6550], @@ -14806,8 +11785,7 @@ true, [0,-73,-912,-15896], [1,3,10930], [0,0,10931,10932,6], -[0,-4053,-50,-15897,-15898,-5,-105,-922,-1,-12,-180,-151,-516,-3574,-17,-1570,-4,-15899,-15900,-470,-122,-380,-215,-2,-84, --30], +[0,-4053,-50,-15897,-15898,-5,-105,-922,-1,-12,-180,-151,-516,-3574,-17,-1570,-4,-15899,-15900,-470,-122,-380,-215,-2,-84,-30], [0,-15901,-3891,-3961,-2900,-759,-6415,-23,-643,-2876,-1141,-440,-650,-2,-250,-136,-1030,-208,-704], [1,3,10934], [0,10935,10936,10937,6], @@ -14823,19 +11801,14 @@ true, [0,-402,-3760,-1355], [1,3,10946], [0,10947,10948,10949,10], -[0,-2543,-15906,-15907,-15908,-15909,-15910,-15911,-15912,-15913,-1730,-5577,-3315,-15914,-6559,-15915,-15916,-15917, --15918,-15919,-15920,-15921,-15922,-15923,-15924,-15925,-15926,-15927,-15928,-15929,-15930,-15931,-4810,-1778,-6431, --15932,-15933,-1211,-1839,-15934,-15935,-15936,-15937,-15938,-15939,-15940,-1643,-4020,-15941,-296,-1437,-15942,-6148, --594,-15943,-2696,-2446,-15944,-559,-313,-2886,-2479,-15945,-15946, +[0,-2543,-15906,-15907,-15908,-15909,-15910,-15911,-15912,-15913,-1730,-5577,-3315,-15914,-6559,-15915,-15916,-15917,-15918,-15919,-15920,-15921,-15922,-15923,-15924,-15925,-15926,-15927,-15928,-15929,-15930,-15931,-4810,-1778,-6431,-15932,-15933,-1211,-1839,-15934,-15935,-15936,-15937,-15938,-15939,-15940,-1643,-4020,-15941,-296,-1437,-15942,-6148,-594,-15943,-2696,-2446,-15944,-559,-313,-2886,-2479,-15945,-15946, -15947,-15948], [0,-15949,-15950,-15951,-909,-15952,-1020,-912,-4056,-3157,-1,-1233,-3595,-378,-1270,-30,-6495,-15953,-73,-1531], [0,-15954,-3595,-897,-559,-2636,-73,-1319,-2510,-2,-4769,-102,-1265,-53,-15955], [1,3,10951], [0,0,10952,10953,11], [0,-29,-8,-57,-33,-172,-2], -[0,-46,-910,-5769,-15956,-15957,-15958,-15959,-15960,-15961,-15962,-15963,-24,-1527,-52,-15964,-15965,-15966,-15967, --15968,-15969,-15970,-15971,-15972,-15973,-15974,-15975,-2,-15976,-15977,-15978,-15979,-15980,-15981,-15982,-15983, --15984], +[0,-46,-910,-5769,-15956,-15957,-15958,-15959,-15960,-15961,-15962,-15963,-24,-1527,-52,-15964,-15965,-15966,-15967,-15968,-15969,-15970,-15971,-15972,-15973,-15974,-15975,-2,-15976,-15977,-15978,-15979,-15980,-15981,-15982,-15983,-15984], [1,3,10955], [0,10956,10957,134,6], [0,-3157,-4455], @@ -14847,8 +11820,7 @@ true, [1,3,10963], [0,10964,10965,10966,5], [0,-15985,-15986,-15987], -[0,-15988,-15989,-15990,-15991,-15992,-15993,-15994,-15995,-15996,-15997,-15998,-15999,-16000,-16001,-16002,-16003,-16004, --16005,-16006,-16007,-16008,-16009,-16010], +[0,-15988,-15989,-15990,-15991,-15992,-15993,-15994,-15995,-15996,-15997,-15998,-15999,-16000,-16001,-16002,-16003,-16004,-16005,-16006,-16007,-16008,-16009,-16010], [0,-4462,-76,-61,-3901,-573,-13,-280,-42,-16011,-16012,-16013,-165,-657,-1864], [1,3,10968], [0,0,287,134,5], @@ -14856,8 +11828,7 @@ true, [0,10971,10972,10973,5], [0,-16014,-16015,-16016,-16017,-16018,-16019,-16020,-16021,-16022,-6350,-16023,-16024,-16025,-639,-2459,-263,-1480], [0,-652,-5,-47,-89,-6,-36,-30,-16026], -[0,-6560,-390,-2006,-16027,-6,-127,-102,-52,-1265,-3162,-16028,-4057,-4056,-4565,-6561,-16029,-16030,-16031,-16032,-16033, --6562,-16034,-16035,-16036,-16037], +[0,-6560,-390,-2006,-16027,-6,-127,-102,-52,-1265,-3162,-16028,-4057,-4056,-4565,-6561,-16029,-16030,-16031,-16032,-16033,-6562,-16034,-16035,-16036,-16037], [1,3,10975], [0,0,0,10976,4], [0,-6116,-24], @@ -14873,10 +11844,8 @@ true, [0,-6,-371,-16038,-107,-42,-5840], [1,3,10988], [0,10989,10990,10991,5], -[0,-855,-552,-210,-16039,-3995,-434,-16040,-670,-16041,-635,-6539,-16042,-16043,-16044,-16045,-16046,-16047,-16048,-1737, --16049,-16050,-1574], -[0,-263,-172,-1,-204,-14,-30,-814,-1005,-2,-11,-5,-16051,-16052,-16053,-16054,-952,-757,-652,-16055,-16056,-105,-16057, --16058,-16059], +[0,-855,-552,-210,-16039,-3995,-434,-16040,-670,-16041,-635,-6539,-16042,-16043,-16044,-16045,-16046,-16047,-16048,-1737,-16049,-16050,-1574], +[0,-263,-172,-1,-204,-14,-30,-814,-1005,-2,-11,-5,-16051,-16052,-16053,-16054,-952,-757,-652,-16055,-16056,-105,-16057,-16058,-16059], [0,-4056,-16060,-16061,-1883,-16062,-16063,-16064,-16065,-16066,-1034,-1288,-2,-16067,-53], [1,3,10993], [0,0,10994,10995,5], @@ -14884,8 +11853,7 @@ true, [0,-6,-242,-1884,-390,-442,-317,-76,-61], [1,3,10997], [0,0,10998,10999,6], -[0,-451,-530,-77,-62,-237,-705,-16068,-29,-614,-16069,-1020,-1852,-912,-2638,-149,-385,-26,-8,-176,-78,-17,-5137,-4,-14, --229,-305,-328,-3136,-559,-57,-2,-104,-73,-888,-1709,-2773], +[0,-451,-530,-77,-62,-237,-705,-16068,-29,-614,-16069,-1020,-1852,-912,-2638,-149,-385,-26,-8,-176,-78,-17,-5137,-4,-14,-229,-305,-328,-3136,-559,-57,-2,-104,-73,-888,-1709,-2773], [0,-73,-897,-16070,-6563,-16071,-6496,-3136,-16072,-4463,-3642,-6497,-16073,-2,-16074,-418,-95,-45,-131,-102], [1,3,11001], [0,94,0,11002,4], @@ -14893,9 +11861,7 @@ true, [1,3,11004], [0,11005,11006,261,6], [0,-16075,-1312,-1503,-326,-38,-994,-313], -[0,-405,-1735,-1136,-4027,-2931,-2124,-530,-77,-3580,-758,-2865,-2571,-6427,-2688,-845,-117,-218,-457,-368,-225,-2099, --210,-945,-1897,-87,-484,-786,-848,-6430,-6429,-3665,-296,-1437,-2098,-639,-152,-593,-594,-6428,-167,-555,-868,-4026, --3974,-2267,-2184,-14,-876,-80,-1498,-738,-4025,-177,-2481,-2886,-205], +[0,-405,-1735,-1136,-4027,-2931,-2124,-530,-77,-3580,-758,-2865,-2571,-6427,-2688,-845,-117,-218,-457,-368,-225,-2099,-210,-945,-1897,-87,-484,-786,-848,-6430,-6429,-3665,-296,-1437,-2098,-639,-152,-593,-594,-6428,-167,-555,-868,-4026,-3974,-2267,-2184,-14,-876,-80,-1498,-738,-4025,-177,-2481,-2886,-205], [1,3,11008], [0,0,0,11009,4], [0,-235,-106,-291,-355,-6029,-626,-95,-59,-2424,-6031,-6032,-5238,-16076,-16077,-125], @@ -14903,21 +11869,10 @@ true, [0,0,37,288,9], [1,3,11013], [0,11014,11015,11016,9], -[0,-2487,-16078,-16079,-3174,-1289,-3919,-16080,-5002,-16081,-16082,-16083,-16084,-3426,-16085,-2802,-1147,-16086,-16087, --16088,-16089,-16090,-16091,-16092,-16093,-16094,-16095,-16096,-16097,-16098,-16099,-16100,-16101,-16102,-16103,-16104, --16105,-16106,-16107,-16108,-16109,-16110,-16111,-16112,-16113,-16114,-16115,-1574,-16116,-16117,-16118,-16119,-16120, --16121,-16122,-16123,-16124,-4088,-16125,-16126,-16127,-4055,-16128,-16129, --16130,-16131,-16132,-16133,-6508,-935,-3422,-16134,-4014,-336,-16135,-542,-35,-16136,-203,-6564,-16137,-4409,-952,-4032, --1226,-4361,-16138,-670,-1425,-1079,-5749,-16139,-6096,-965,-1801,-16140,-16141,-2367,-16142,-16143,-16144,-461,-16145, --4242,-16146,-227,-3898,-16147,-16148,-639,-242,-4252,-16149,-16150,-6065,-2395,-16151,-16152,-16153,-16154,-4057,-6149, --16155,-16156,-16157,-2910,-4274,-595, --1250,-16158,-1450,-16159,-5523,-16160,-3087,-1688,-6,-16161,-36,-2595,-16162,-4292,-16163,-5150,-16164,-3095,-16165, --557,-16166,-16167,-16168,-274,-522,-2417,-16169,-16170,-16,-689,-907,-16171,-3110,-3114,-16172,-2016,-1702,-16173, --16174,-1134,-16175,-2003,-16176,-125,-16177,-205,-262,-263,-1480,-16178], -[0,-49,-6435,-16179,-16180,-16181,-16182,-16183,-16184,-5927,-16185,-366,-4979,-2055,-153,-120,-307,-16186,-16187,-169, --191,-16188,-652,-143,-1279,-5,-16189,-16190,-16191,-4058,-47,-89,-16192,-140,-6461,-3990,-701,-475,-1188,-105,-2620, --1056,-1211,-26,-2332,-16193,-210,-945,-16194,-16195,-16196,-1,-16197,-16198,-41,-28,-1233,-10,-6016,-16199,-17,-23, --1098,-16200, +[0,-2487,-16078,-16079,-3174,-1289,-3919,-16080,-5002,-16081,-16082,-16083,-16084,-3426,-16085,-2802,-1147,-16086,-16087,-16088,-16089,-16090,-16091,-16092,-16093,-16094,-16095,-16096,-16097,-16098,-16099,-16100,-16101,-16102,-16103,-16104,-16105,-16106,-16107,-16108,-16109,-16110,-16111,-16112,-16113,-16114,-16115,-1574,-16116,-16117,-16118,-16119,-16120,-16121,-16122,-16123,-16124,-4088,-16125,-16126,-16127,-4055,-16128,-16129, +-16130,-16131,-16132,-16133,-6508,-935,-3422,-16134,-4014,-336,-16135,-542,-35,-16136,-203,-6564,-16137,-4409,-952,-4032,-1226,-4361,-16138,-670,-1425,-1079,-5749,-16139,-6096,-965,-1801,-16140,-16141,-2367,-16142,-16143,-16144,-461,-16145,-4242,-16146,-227,-3898,-16147,-16148,-639,-242,-4252,-16149,-16150,-6065,-2395,-16151,-16152,-16153,-16154,-4057,-6149,-16155,-16156,-16157,-2910,-4274,-595, +-1250,-16158,-1450,-16159,-5523,-16160,-3087,-1688,-6,-16161,-36,-2595,-16162,-4292,-16163,-5150,-16164,-3095,-16165,-557,-16166,-16167,-16168,-274,-522,-2417,-16169,-16170,-16,-689,-907,-16171,-3110,-3114,-16172,-2016,-1702,-16173,-16174,-1134,-16175,-2003,-16176,-125,-16177,-205,-262,-263,-1480,-16178], +[0,-49,-6435,-16179,-16180,-16181,-16182,-16183,-16184,-5927,-16185,-366,-4979,-2055,-153,-120,-307,-16186,-16187,-169,-191,-16188,-652,-143,-1279,-5,-16189,-16190,-16191,-4058,-47,-89,-16192,-140,-6461,-3990,-701,-475,-1188,-105,-2620,-1056,-1211,-26,-2332,-16193,-210,-945,-16194,-16195,-16196,-1,-16197,-16198,-41,-28,-1233,-10,-6016,-16199,-17,-23,-1098,-16200, -260,-188,-590,-6152,-552,-4,-146,-906,-16201,-599,-6017,-122,-16202,-182,-155,-215,-2,-135,-348,-104,-30], [0,-53,-6561,-6562,-390,-16203,-4057,-16204,-16205,-16206,-16207], [1,3,11018], @@ -14938,9 +11893,7 @@ true, [0,-612,-5522,-76,-61,-16216,-3446], [1,3,11034], [0,0,11035,11036,4], -[0,-179,-162,-96,-321,-1048,-429,-282,-16217,-13,-16218,-6329,-295,-35,-1215,-1,-83,-67,-129,-851,-271,-41,-1423,-342,-79, --675,-138,-213,-16219,-3650,-1090,-187,-414,-16220,-2365,-861,-798,-517,-3,-285,-640,-7,-4028,-1324,-122,-112,-4033,-438, --18,-173], +[0,-179,-162,-96,-321,-1048,-429,-282,-16217,-13,-16218,-6329,-295,-35,-1215,-1,-83,-67,-129,-851,-271,-41,-1423,-342,-79,-675,-138,-213,-16219,-3650,-1090,-187,-414,-16220,-2365,-861,-798,-517,-3,-285,-640,-7,-4028,-1324,-122,-112,-4033,-438,-18,-173], [0,-649,-2808,-16221,-1589,-1359,-418,-2933,-3927,-95], [1,3,11038], [0,11039,11040,11041,5], @@ -14960,8 +11913,7 @@ true, [0,-133,-24], [1,3,11054], [0,11055,11056,11057,6], -[0,-6565,-11,-405,-1140,-137,-16237,-1574,-16238,-301,-58,-386,-509,-323,-203,-118,-226,-41,-6169,-727,-490,-800,-188, --152,-325,-38,-556,-392,-1257,-16239,-2446,-814,-815,-1272,-263,-3742], +[0,-6565,-11,-405,-1140,-137,-16237,-1574,-16238,-301,-58,-386,-509,-323,-203,-118,-226,-41,-6169,-727,-490,-800,-188,-152,-325,-38,-556,-392,-1257,-16239,-2446,-814,-815,-1272,-263,-3742], [0,-757,-191,-822,-16240,-7,-172,-215,-2], [0,-127,-102,-1265,-6560,-3162], [1,3,11059], @@ -14973,12 +11925,10 @@ true, [0,-16243,-3737,-16244,-16245,-16246,-16247,-16248,-16249,-695,-16250,-144,-94,-52,-46], [1,3,11066], [0,0,0,11067,6], -[0,-16251,-570,-16252,-16253,-16254,-16255,-6566,-16256,-16257,-16258,-16259,-16260,-16261,-16262,-3967,-16263,-16264, --108,-635,-16265,-6566,-1810,-52,-45,-2], +[0,-16251,-570,-16252,-16253,-16254,-16255,-6566,-16256,-16257,-16258,-16259,-16260,-16261,-16262,-3967,-16263,-16264,-108,-635,-16265,-6566,-1810,-52,-45,-2], [1,3,11069], [0,11070,0,73,4], -[0,-3164,-3438,-2477,-1329,-842,-194,-16266,-114,-16267,-6485,-628,-487,-28,-3783,-3753,-2141,-23,-638,-233,-734,-3869, --1252,-554,-1690,-644,-1996,-16,-737,-468,-5001,-215,-125,-222,-992], +[0,-3164,-3438,-2477,-1329,-842,-194,-16266,-114,-16267,-6485,-628,-487,-28,-3783,-3753,-2141,-23,-638,-233,-734,-3869,-1252,-554,-1690,-644,-1996,-16,-737,-468,-5001,-215,-125,-222,-992], [1,3,11072], [0,11073,11074,11075,4], [0,-6501,-6502], @@ -15005,21 +11955,17 @@ true, [0,-3118,-1002,-16283,-6,-420,-31,-821,-4003,-2909,-908], [1,3,11096], [0,0,11097,11098,5], -[0,-6138,-50,-2563,-16284,-16285,-3315,-16286,-153,-120,-307,-1738,-751,-896,-5,-47,-89,-16287,-4036,-454,-302,-367,-722, --1,-186,-3152,-56,-10,-78,-17,-220,-227,-38,-4,-3745,-6,-16288,-36,-1135,-16289,-557,-229,-645,-16290,-689,-738,-2446, --559,-177,-16291,-33,-155,-2,-84,-3929,-104,-923,-6535,-30,-16292,-1480], +[0,-6138,-50,-2563,-16284,-16285,-3315,-16286,-153,-120,-307,-1738,-751,-896,-5,-47,-89,-16287,-4036,-454,-302,-367,-722,-1,-186,-3152,-56,-10,-78,-17,-220,-227,-38,-4,-3745,-6,-16288,-36,-1135,-16289,-557,-229,-645,-16290,-689,-738,-2446,-559,-177,-16291,-33,-155,-2,-84,-3929,-104,-923,-6535,-30,-16292,-1480], [0,-6,-527,-1580,-3512,-16293,-1301,-6208,-6209,-6210,-752,-1774,-2822], [1,3,11100], [0,11101,11102,11103,5], [0,-758,-6183,-1374,-231,-457,-35,-1897,-226,-41,-1087,-296,-594,-167,-686,-14,-496], -[0,-16294,-16295,-530,-77,-238,-62,-1373,-5573,-16296,-3180,-169,-191,-2591,-16297,-5,-47,-89,-22,-19,-506,-1020,-117,-87, --6325,-1,-64,-1520,-65,-4011,-6,-36,-7,-417,-1334,-221,-215,-2,-104,-16298,-30,-73], +[0,-16294,-16295,-530,-77,-238,-62,-1373,-5573,-16296,-3180,-169,-191,-2591,-16297,-5,-47,-89,-22,-19,-506,-1020,-117,-87,-6325,-1,-64,-1520,-65,-4011,-6,-36,-7,-417,-1334,-221,-215,-2,-104,-16298,-30,-73], [0,-770,-2604,-1582,-16299,-1802,-16300,-16301,-94,-16302], [1,3,11105], [0,11106,11107,7,5], [0,-1060,-16303,-16304], -[0,-43,-16305,-155,-104,-78,-3,-322,-1,-14,-56,-4,-814,-16306,-817,-50,-2,-5,-968,-71,-16307,-5273,-290,-16308,-238, --16309,-5274,-206,-1239,-12,-77,-19,-62,-22], +[0,-43,-16305,-155,-104,-78,-3,-322,-1,-14,-56,-4,-814,-16306,-817,-50,-2,-5,-968,-71,-16307,-5273,-290,-16308,-238,-16309,-5274,-206,-1239,-12,-77,-19,-62,-22], [1,3,11109], [0,11110,11111,11112,6], [0,-2221,-1412,-727,-16310], @@ -15074,8 +12020,7 @@ true, [1,3,11160], [0,11161,11162,7,6], [0,-1735,-326,-4726], -[0,-3425,-6565,-16337,-16338,-5800,-2866,-5,-662,-1188,-1375,-1568,-16339,-87,-1,-16340,-516,-17,-296,-994,-14,-999,-380, --2,-16341,-6551,-104,-30,-18,-93,-2479], +[0,-3425,-6565,-16337,-16338,-5800,-2866,-5,-662,-1188,-1375,-1568,-16339,-87,-1,-16340,-516,-17,-296,-994,-14,-999,-380,-2,-16341,-6551,-104,-30,-18,-93,-2479], [1,3,11164], [0,72,0,11165,6], [0,-1591,-2283,-16342,-42,-1592,-1593], @@ -15103,8 +12048,7 @@ true, [0,-693,-16350,-1430,-6512,-2250,-159,-1244,-1816,-2194,-3079,-16,-1860,-2048,-16351,-16352,-6059,-3295,-692], [1,3,11189], [0,0,11190,7,4], -[0,-16353,-16354,-840,-16355,-16356,-77,-238,-62,-2183,-1012,-6012,-16357,-16358,-6066,-58,-1216,-16359,-1493,-167,-645, --16360,-16361], +[0,-16353,-16354,-840,-16355,-16356,-77,-238,-62,-2183,-1012,-6012,-16357,-16358,-6066,-58,-1216,-16359,-1493,-167,-645,-16360,-16361], [1,3,11192], [0,11193,0,73,11], [0,-3163,-2477,-1329,-3741,-5000,-194,-114,-163,-40,-2265,-1960,-23,-434,-1977,-678,-553,-1699,-215], @@ -15115,8 +12059,7 @@ true, [0,-3256,-1904,-3159,-1725], [1,3,11200], [0,11201,11202,11203,10], -[0,-263,-1839,-5114,-16362,-16363,-16364,-3114,-16365,-16366,-6564,-16367,-16368,-16369,-16370,-16371,-1317,-16372,-3440, --2644], +[0,-263,-1839,-5114,-16362,-16363,-16364,-3114,-16365,-16366,-6564,-16367,-16368,-16369,-16370,-16371,-1317,-16372,-3440,-2644], [0,-800,-4058,-3219,-2,-5,-16373,-264,-16374,-2802,-16375,-6154,-16376], [0,-16377,-16378,-6487,-16379,-16380,-46,-16381,-16382,-16383,-6092,-16384,-16385,-16386,-16387,-16388], [1,3,11205], @@ -15130,14 +12073,12 @@ true, [0,-1591,-2283,-1528,-42,-1592,-1593], [1,3,11214], [0,0,11215,11216,9], -[0,-16389,-6536,-48,-11,-998,-170,-21,-16390,-16391,-207,-237,-91,-86,-5797,-2864,-6494,-16392,-3949,-284,-210,-1,-485,-9, --2852,-412,-1894,-6401,-10,-8,-4873,-6207,-1520,-2593,-1251,-16393,-4,-435,-160,-6575,-14,-16394,-876,-229,-645,-809,-2], +[0,-16389,-6536,-48,-11,-998,-170,-21,-16390,-16391,-207,-237,-91,-86,-5797,-2864,-6494,-16392,-3949,-284,-210,-1,-485,-9,-2852,-412,-1894,-6401,-10,-8,-4873,-6207,-1520,-2593,-1251,-16393,-4,-435,-160,-6575,-14,-16394,-876,-229,-645,-809,-2], [0,-2051,-2544,-2052,-2053,-16395,-16396], [1,3,11218], [0,0,11219,11220,9], [0,-206,-71,-5,-938,-13,-3,-285,-14,-1126,-2], -[0,-16397,-4477,-16398,-5234,-500,-16399,-6492,-6563,-6499,-1176,-1586,-16400,-16401,-2922,-16402,-2733,-3897,-16403, --16404,-16405], +[0,-16397,-4477,-16398,-5234,-500,-16399,-6492,-6563,-6499,-1176,-1586,-16400,-16401,-2922,-16402,-2733,-3897,-16403,-16404,-16405], [1,3,11222], [0,0,70,11223,9], [0,-3998,-16406], @@ -15178,8 +12119,7 @@ true, [0,-265,-235,-4482,-16423,-1581,-6], [1,3,11260], [0,0,11261,7,9], -[0,-11,-21,-77,-3465,-62,-270,-777,-60,-373,-79,-860,-138,-588,-389,-2041,-676,-160,-14,-275,-16424,-2807,-16425,-2225, --229,-742], +[0,-11,-21,-77,-3465,-62,-270,-777,-60,-373,-79,-860,-138,-588,-389,-2041,-676,-160,-14,-275,-16424,-2807,-16425,-2225,-229,-742], [1,3,11263], [0,0,11264,7,9], [0,-7,-72,-16426,-16427], diff --git a/packages/flatpack-json/src/stringTable.mts b/packages/flatpack-json/src/stringTable.mts index 3e10d81fffcf..a34ebe4d05a3 100644 --- a/packages/flatpack-json/src/stringTable.mts +++ b/packages/flatpack-json/src/stringTable.mts @@ -56,11 +56,11 @@ const tokenRegex = /\w+/g; export class StringTableBuilder { splitStrings: boolean = false; - private stringToIndex = new Map(); - private entries: BuilderEntry[] = [{ value: '', entry: '', refCount: 0 }]; - private availableIndexes: number[] = []; - private tokenRegex = tokenRegex; - private splitIntoTokens = false; + #stringToIndex = new Map(); + #entries: BuilderEntry[] = [{ value: '', entry: '', refCount: 0 }]; + #availableIndexes: number[] = []; + tokenRegex: RegExp = tokenRegex; + #splitIntoTokens: boolean = false; constructor(stringTableElement?: StringTableElement) { if (!stringTableElement) return; @@ -69,21 +69,29 @@ export class StringTableBuilder { for (const [idx, value] of st.entries()) { if (!idx) continue; const entry = stringTableElement[idx] as StringTableEntry; - this.entries[idx] = { value, entry, refCount: 0 }; + this.#entries[idx] = { value, entry, refCount: 0 }; if (Array.isArray(entry) && !entry.length) { - this.availableIndexes.push(idx); + this.#availableIndexes.push(idx); continue; } - if (!this.stringToIndex.has(value)) { - this.stringToIndex.set(value, idx); + if (!this.#stringToIndex.has(value)) { + this.#stringToIndex.set(value, idx); } } } + set splitIntoTokensWhenAdding(value: boolean) { + this.#splitIntoTokens = value; + } + + get splitIntoTokensWhenAdding(): boolean { + return this.#splitIntoTokens; + } + add(str: string): number { - const found = this.stringToIndex.get(str); + const found = this.#stringToIndex.get(str); if (found !== undefined) { - const entry = this.entries[found]; + const entry = this.#entries[found]; entry.refCount++; return found; } @@ -92,7 +100,7 @@ export class StringTableBuilder { } getIndex(str: string): number | undefined { - return this.stringToIndex.get(str); + return this.#stringToIndex.get(str); } get(index: number): string | undefined { @@ -121,7 +129,7 @@ export class StringTableBuilder { #getEntry(index: number): BuilderEntry | undefined { index = index < 0 ? -index : index; - return this.entries[index]; + return this.#entries[index]; } #getEntryCheckBounds(index: number): BuilderEntry { @@ -133,26 +141,59 @@ export class StringTableBuilder { } #append(str: string): number { - const found = this.stringToIndex.get(str); + const found = this.#stringToIndex.get(str); if (found !== undefined) { return found; } const entry: BuilderEntry = { value: str, entry: str, refCount: 1 }; - const idx = this.availableIndexes.shift() ?? this.entries.length; - this.entries[idx] = entry; - this.stringToIndex.set(str, idx); + const idx = this.#availableIndexes.shift() ?? this.#entries.length; + this.#entries[idx] = entry; + this.#stringToIndex.set(str, idx); + if (this.#splitIntoTokens) { + this.#splitEntryIntoTokens(entry); + } return idx; } + #splitEntryIntoTokens(entry: BuilderEntry): void { + if (Array.isArray(entry.entry)) return; + if (!entry.value) return; + const regex = new RegExp(this.tokenRegex); + const indexes: number[] = [...entry.value.matchAll(regex)].flatMap((match) => [ + match.index, + match.index + match[0].length, + ]); + if (!indexes.length) return; + if (indexes.length === 2 && indexes[0] === 0 && indexes[1] === entry.value.length) { + return; + } + const subEntries: number[] = []; + entry.entry = subEntries; + indexes.push(entry.value.length); + let lastIndex = 0; + for (const index of indexes) { + if (index === lastIndex) continue; + const value = entry.value.slice(lastIndex, index); + subEntries.push(this.add(value)); + lastIndex = index; + } + } + clearUnusedEntries(): void { - for (let i = 1; i < this.entries.length; i++) { - const entry = this.entries[i]; + for (let i = 1; i < this.#entries.length; i++) { + const entry = this.#entries[i]; if (entry.refCount > 0) continue; - if (this.stringToIndex.get(entry.value) === i) { - this.stringToIndex.delete(entry.value); + if (this.#stringToIndex.get(entry.value) === i) { + this.#stringToIndex.delete(entry.value); } - this.entries[i] = { value: '', entry: [], refCount: 0 }; - this.availableIndexes.push(i); + this.#entries[i] = { value: '', entry: [], refCount: 0 }; + this.#availableIndexes.push(i); + } + } + + tokenizeAllEntries(): void { + for (const entry of this.#entries) { + this.#splitEntryIntoTokens(entry); } } @@ -163,14 +204,21 @@ export class StringTableBuilder { * @returns a map of old indexes to new indexes after sorting. The index 0 is always mapped to itself. */ sortEntriesByRefCount(): Map { - const mapEntryToOldIndex = new Map(this.entries.map((entry, index) => [entry, index])); + const mapEntryToOldIndex = new Map(this.#entries.map((entry, index) => [entry, index])); - const entry0 = this.entries[0]; - const sorted = this.entries.sort((a, b) => + const entry0 = this.#entries[0]; + const sorted = this.#entries.sort((a, b) => a === entry0 ? -1 : b === entry0 ? 1 : b.refCount - a.refCount || getOldIndex(a) - getOldIndex(b), ); - return new Map(sorted.map((entry, index) => [getOldIndex(entry), index])); + const oldIndexToNew = new Map(sorted.map((entry, index) => [getOldIndex(entry), index])); + + for (const entry of this.#entries) { + if (!Array.isArray(entry.entry)) continue; + entry.entry = entry.entry.map((i) => oldIndexToNew.get(i) ?? i); + } + + return oldIndexToNew; function getOldIndex(entry: BuilderEntry): number { const oldIndex = mapEntryToOldIndex.get(entry); @@ -180,6 +228,6 @@ export class StringTableBuilder { } build(): StringTableElement { - return [ElementType.StringTable, ...this.entries.slice(1).map((e) => e.entry)]; + return [ElementType.StringTable, ...this.#entries.slice(1).map((e) => e.entry)]; } } diff --git a/packages/flatpack-json/src/stringTable.test.mts b/packages/flatpack-json/src/stringTable.test.mts index f6a15a446d08..e5de65f11afa 100644 --- a/packages/flatpack-json/src/stringTable.test.mts +++ b/packages/flatpack-json/src/stringTable.test.mts @@ -107,7 +107,7 @@ describe('StringTable', () => { expect(builder.build()).toEqual([...stringTableElement, 'mango']); const map = builder.sortEntriesByRefCount(); - expect(builder.build()).toEqual([128, [1, 4, 2], 'apple', 'mango', 'banana', '-', 'orange', 'grape', 'melon']); + expect(builder.build()).toEqual([128, [2, 5, 4], 'apple', 'mango', 'banana', '-', 'orange', 'grape', 'melon']); expect(map).toEqual( new Map([ [0, 0], @@ -122,6 +122,60 @@ describe('StringTable', () => { ]), ); }); + + test('StringTableBuilder with tokenization', () => { + const stringTableElement: StringTableElement = [128, 'apple', 'banana', [1, 4, 2], '-']; + const builder = new StringTableBuilder(stringTableElement); + builder.add('orange'); + builder.add('grape'); + builder.add('melon'); + builder.add('apple-orange'); + builder.add('banana-grape'); + builder.add('mango-banana'); + builder.tokenizeAllEntries(); + const elements = builder.build(); + expect([...new StringTable(elements).values()]).toEqual([ + 'apple', + 'banana', + 'apple-banana', + '-', + 'orange', + 'grape', + 'melon', + 'apple-orange', + 'banana-grape', + 'mango-banana', + 'mango', + ]); + expect(elements).toEqual([ + 128, + 'apple', + 'banana', + [1, 4, 2], + '-', + 'orange', + 'grape', + 'melon', + [1, 4, 5], + [2, 4, 6], + [11, 4, 2], + 'mango', + ]); + builder.sortEntriesByRefCount(); + expect([...new StringTable(builder.build()).values()]).toEqual([ + '-', + 'banana', + 'orange', + 'grape', + 'apple', + 'melon', + 'apple-orange', + 'banana-grape', + 'mango-banana', + 'mango', + 'apple-banana', + ]); + }); }); describe('StringTable', () => { diff --git a/packages/flatpack-json/src/stringify.mts b/packages/flatpack-json/src/stringify.mts index d2c23307dd13..be919e7f5c66 100644 --- a/packages/flatpack-json/src/stringify.mts +++ b/packages/flatpack-json/src/stringify.mts @@ -1,6 +1,6 @@ import type { Flatpacked } from './types.mjs'; -const maxLineLength = 120; +const maxLineLength = 512; const maxBatchSize = 64; export interface StringifyOptions { From 236bfee8cb97cc3c772056fc3344dd54349279e5 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Thu, 12 Mar 2026 08:20:36 +0100 Subject: [PATCH 18/26] v2 always uses a string table --- packages/flatpack-json/src/storage.mts | 9 ------- packages/flatpack-json/src/storage.test.mts | 6 ++--- packages/flatpack-json/src/storageV2.mts | 27 ++++++--------------- packages/flatpack-json/src/types.mts | 8 ++---- 4 files changed, 13 insertions(+), 37 deletions(-) diff --git a/packages/flatpack-json/src/storage.mts b/packages/flatpack-json/src/storage.mts index 776c78eddbaf..50965286295b 100644 --- a/packages/flatpack-json/src/storage.mts +++ b/packages/flatpack-json/src/storage.mts @@ -22,20 +22,12 @@ export function stringify(data: Unpacked, pretty = true, options?: FlatpackOptio function normalizeOptions(options?: FlatpackOptions): Required { let header = dataHeader; - let stringTableAllowed = dataHeader !== dataHeaderV1_0; if (options?.format === 'V1') { header = dataHeaderV1_0; - stringTableAllowed = false; } if (options?.format === 'V2') { header = dataHeaderV2_0; - stringTableAllowed = true; } - if (options?.useStringTable && !options.format) { - header = dataHeaderV2_0; - stringTableAllowed = true; - } - const useStringTable = stringTableAllowed && (options?.useStringTable || header === dataHeaderV2_0); const dedupe = options?.dedupe ?? true; const sortKeys = options?.sortKeys || dedupe; @@ -43,7 +35,6 @@ function normalizeOptions(options?: FlatpackOptions): Required const result: Required = { ...options, format: header === dataHeaderV1_0 ? 'V1' : 'V2', - useStringTable, dedupe, sortKeys, optimize: options?.optimize ?? false, diff --git a/packages/flatpack-json/src/storage.test.mts b/packages/flatpack-json/src/storage.test.mts index 5dc81a45e931..e70bea372738 100644 --- a/packages/flatpack-json/src/storage.test.mts +++ b/packages/flatpack-json/src/storage.test.mts @@ -114,7 +114,7 @@ describe('dehydrate', async () => { ${[1n, 2n, 1n, 2n, biMaxSafe, -biMaxSafe, biMaxSafe + 1n, -biMaxSafe - 1n]} | ${undefined} ${[Object(1n), Object('hello'), Object(/\w+/g), Object(null), Object([]), Object('hello')]} | ${undefined} `('dehydrate useStringTable $data $options', ({ data, options }) => { - options = { ...options, useStringTable: true }; + options = { ...options, format: 'V2' }; const v = toJSON(data, { ...options }); expect(v).toMatchSnapshot(); expect(fromJSON(v)).toEqual(data); @@ -166,8 +166,8 @@ describe('v1 to v2', async () => { test('npmV1 to V2', async () => { const data = fromJSON(JSON.parse(contentNpmV1)); - expect(fromJSON(toJSON(data, { useStringTable: true, dedupe: true }))).toEqual(data); - const jsonStr = stringify(data, true, { optimize: true, useStringTable: true, dedupe: true }); + expect(fromJSON(toJSON(data, { format: 'V2', dedupe: true }))).toEqual(data); + const jsonStr = stringify(data, true, { optimize: true, format: 'V2', dedupe: true }); await fs.writeFile(new URL('.npm-packages-info-v2.json', urlFixtures), jsonStr); expect(fromJSON(JSON.parse(jsonStr))).toEqual(data); diff --git a/packages/flatpack-json/src/storageV2.mts b/packages/flatpack-json/src/storageV2.mts index 46faca2b4bf5..fa4465fe0ffa 100644 --- a/packages/flatpack-json/src/storageV2.mts +++ b/packages/flatpack-json/src/storageV2.mts @@ -20,7 +20,7 @@ import type { Serializable, SetElement, } from './types.mjs'; -import { dataHeader, dataHeaderV1_0, dataHeaderV2_0, ElementType } from './types.mjs'; +import { dataHeaderV2_0, ElementType } from './types.mjs'; const collator = new Intl.Collator('en', { usage: 'sort', @@ -32,7 +32,7 @@ const collator = new Intl.Collator('en', { const compare = collator.compare; export class CompactStorageV2 extends CompactStorage { - private data = [dataHeader] as Flatpacked; + private data = [dataHeaderV2_0] as Flatpacked; private stringTable: StringTableBuilder | undefined; private dedupe = true; private sortKeys = true; @@ -57,19 +57,8 @@ export class CompactStorageV2 extends CompactStorage { super(options); this.dedupe = options?.dedupe ?? true; this.sortKeys = options?.sortKeys || this.dedupe; - let stringTableAllowed = dataHeader !== dataHeaderV1_0; - if (options?.format === 'V2') { - this.data[0] = dataHeaderV2_0; - stringTableAllowed = true; - } - if (options?.useStringTable && !options.format) { - this.data[0] = dataHeaderV2_0; - stringTableAllowed = true; - } - if (options?.useStringTable || (options?.useStringTable !== false && stringTableAllowed)) { - this.stringTable = new StringTableBuilder(); - this.data[1] = [ElementType.StringTable]; - } + this.stringTable = new StringTableBuilder(); + this.data[1] = [ElementType.StringTable]; } private primitiveToIdx(value: Primitive): number { @@ -87,16 +76,16 @@ export class CompactStorageV2 extends CompactStorage { } private addStringPrimitive(value: string): number { - const strTableIdx = this.stringTableLookup.get(value); - if (strTableIdx) { - return strTableIdx; - } const stringTable = this.stringTable; if (stringTable) { const idx = -stringTable.add(value); this.stringTableLookup.set(value, idx); return idx; } + const strTableIdx = this.stringTableLookup.get(value); + if (strTableIdx) { + return strTableIdx; + } const idx = this.data.push(value) - 1; this.cache.set(value, idx); return idx; diff --git a/packages/flatpack-json/src/types.mts b/packages/flatpack-json/src/types.mts index bdb62cdfc548..4ec003e6453f 100644 --- a/packages/flatpack-json/src/types.mts +++ b/packages/flatpack-json/src/types.mts @@ -129,12 +129,6 @@ export interface FlatpackOptions { * The format of the output. If not specified, the latest format will be used. */ format?: 'V1' | 'V2'; - - /** - * Use a string table to store unique strings and reference them by index. - * This forces the format to be at least V2. - */ - useStringTable?: boolean; } /** @@ -165,3 +159,5 @@ export function isStringTableElement(elem: FlattenedElement): elem is StringTabl } return elem[0] === ElementType.StringTable; } + +export const symbolFlatpackElement: unique symbol = Symbol.for('flatpackElement'); From ae4df7a04016b6b968880df745fb745b5e1744de Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Fri, 13 Mar 2026 10:43:19 +0100 Subject: [PATCH 19/26] Work towards element reuse. --- packages/flatpack-json/src/RefCounter.mts | 36 +++++ .../flatpack-json/src/RefCounter.test.mts | 67 ++++++++++ packages/flatpack-json/src/RefElements.mts | 4 +- packages/flatpack-json/src/WeakCache.mts | 44 ++++++ packages/flatpack-json/src/WeakCache.test.mts | 98 ++++++++++++++ packages/flatpack-json/src/storageV1.mts | 12 +- packages/flatpack-json/src/storageV2.mts | 126 ++++++++++++------ packages/flatpack-json/src/types.mts | 40 ++++-- packages/flatpack-json/src/unpack.mts | 30 ++++- 9 files changed, 390 insertions(+), 67 deletions(-) create mode 100644 packages/flatpack-json/src/RefCounter.mts create mode 100644 packages/flatpack-json/src/RefCounter.test.mts create mode 100644 packages/flatpack-json/src/WeakCache.mts create mode 100644 packages/flatpack-json/src/WeakCache.test.mts diff --git a/packages/flatpack-json/src/RefCounter.mts b/packages/flatpack-json/src/RefCounter.mts new file mode 100644 index 000000000000..443abb821b52 --- /dev/null +++ b/packages/flatpack-json/src/RefCounter.mts @@ -0,0 +1,36 @@ +export class RefCounter { + #refCounts = new Map(); + + constructor(values?: Iterable) { + if (values) { + for (const value of values) { + this.add(value); + } + } + } + + add(value: T): void { + const count = this.#refCounts.get(value) ?? 0; + this.#refCounts.set(value, count + 1); + } + + set(value: T, count: number): void { + this.#refCounts.set(value, count); + } + + get(value: T): number { + return this.#refCounts.get(value) ?? 0; + } + + hasRefs(value: T): boolean { + return !!this.get(value); + } + + clear(): void { + this.#refCounts.clear(); + } + + [Symbol.iterator](): IterableIterator<[T, number]> { + return this.#refCounts.entries(); + } +} diff --git a/packages/flatpack-json/src/RefCounter.test.mts b/packages/flatpack-json/src/RefCounter.test.mts new file mode 100644 index 000000000000..f1cb50a51eeb --- /dev/null +++ b/packages/flatpack-json/src/RefCounter.test.mts @@ -0,0 +1,67 @@ +import { beforeEach, describe, expect, it } from 'vitest'; + +import { RefCounter } from './RefCounter.mjs'; + +describe('RefCounter', () => { + let counter: RefCounter; + + beforeEach(() => { + counter = new RefCounter(); + }); + + it('should initialize with no refs', () => { + expect(counter.get('a')).toBe(0); + expect(counter.hasRefs('a')).toBe(false); + }); + + it('should add refs and increment count', () => { + counter.add('a'); + expect(counter.get('a')).toBe(1); + counter.add('a'); + expect(counter.get('a')).toBe(2); + expect(counter.hasRefs('a')).toBe(true); + }); + + it('should set ref count directly', () => { + counter.set('b', 5); + expect(counter.get('b')).toBe(5); + counter.set('b', 0); + expect(counter.get('b')).toBe(0); + expect(counter.hasRefs('b')).toBe(false); + }); + + it('should clear all refs', () => { + counter.add('a'); + counter.add('b'); + counter.clear(); + expect(counter.get('a')).toBe(0); + expect(counter.get('b')).toBe(0); + expect(counter.hasRefs('a')).toBe(false); + expect(counter.hasRefs('b')).toBe(false); + }); + + it('should be iterable', () => { + counter.set('x', 2); + counter.set('y', 3); + const entries = [...counter]; + expect(entries).toContainEqual(['x', 2]); + expect(entries).toContainEqual(['y', 3]); + expect(entries.length).toBe(2); + }); + + it('should initialize from iterable', () => { + const c = new RefCounter(['a', 'b', 'a']); + expect(c.get('a')).toBe(2); + expect(c.get('b')).toBe(1); + expect(c.get('c')).toBe(0); + }); + + it('should handle different types', () => { + const numCounter = new RefCounter(); + numCounter.add(1); + numCounter.add(2); + numCounter.add(1); + expect(numCounter.get(1)).toBe(2); + expect(numCounter.get(2)).toBe(1); + }); +}); diff --git a/packages/flatpack-json/src/RefElements.mts b/packages/flatpack-json/src/RefElements.mts index afe015957341..25d56d6d8c53 100644 --- a/packages/flatpack-json/src/RefElements.mts +++ b/packages/flatpack-json/src/RefElements.mts @@ -4,7 +4,7 @@ import type { ArrayElement, BigIntElement, DateElement, - Index, + FlatpackIndex, MapElement, ObjectElement, ObjectWrapperElement, @@ -21,7 +21,7 @@ export interface BaseRef { id: number; } -export type FnIndexLookup = (ref: RefElements | undefined) => Index; +export type FnIndexLookup = (ref: RefElements | undefined) => FlatpackIndex; export interface RefElement extends BaseRef { toElement(lookupFn: FnIndexLookup): T; diff --git a/packages/flatpack-json/src/WeakCache.mts b/packages/flatpack-json/src/WeakCache.mts new file mode 100644 index 000000000000..fdd78ecc53b1 --- /dev/null +++ b/packages/flatpack-json/src/WeakCache.mts @@ -0,0 +1,44 @@ +/** + * A cache that can store values for both primitive and object keys. Primitive keys are stored in a Map, + * while object keys are stored in a WeakMap. This allows the cache to automatically clean up entries for + * objects that are no longer referenced elsewhere in the program, while still allowing primitive keys to + * be stored without issue. + */ +export class WeakCache { + #primitiveCache = new Map(); + #objectCache = new WeakMap(); + + constructor(entries?: Iterable) { + if (entries) { + for (const [key, value] of entries) { + this.set(key, value); + } + } + } + + get(key: unknown): V | undefined { + if (typeof key === 'object' && key !== null) { + return this.#objectCache.get(key); + } + return this.#primitiveCache.get(key); + } + + set(key: unknown, value: V): void { + if (typeof key === 'object' && key !== null) { + this.#objectCache.set(key, value); + } else { + this.#primitiveCache.set(key, value); + } + } + + clear(): void { + this.#primitiveCache.clear(); + this.#objectCache = new WeakMap(); + } + + has(key: unknown): boolean { + // Note: WeakMap.has will always return false for primitive keys, + // so we can check both caches without first checking if it is an object. + return this.#primitiveCache.has(key) || this.#objectCache.has(key as object); + } +} diff --git a/packages/flatpack-json/src/WeakCache.test.mts b/packages/flatpack-json/src/WeakCache.test.mts new file mode 100644 index 000000000000..2d947f68c2d8 --- /dev/null +++ b/packages/flatpack-json/src/WeakCache.test.mts @@ -0,0 +1,98 @@ +import { describe, expect, it } from 'vitest'; + +import { WeakCache } from './WeakCache.mjs'; + +describe('WeakCache', () => { + it('should set and get primitive keys', () => { + const cache = new WeakCache(); + cache.set('foo', 123); + cache.set(42, 456); + expect(cache.get('foo')).toBe(123); + expect(cache.get(42)).toBe(456); + expect(cache.get('bar')).toBeUndefined(); + }); + + it('should set and get object keys', () => { + const cache = new WeakCache(); + const obj1 = {}; + const obj2: string[] = []; + cache.set(obj1, 'a'); + cache.set(obj2, 'b'); + expect(cache.get(obj1)).toBe('a'); + expect(cache.get(obj2)).toBe('b'); + expect(cache.get({})).toBeUndefined(); + }); + + it('should distinguish between primitive and object keys', () => { + const cache = new WeakCache(); + const obj = {}; + cache.set(obj, 'object'); + cache.set('[object Object]', 'string'); + expect(cache.get(obj)).toBe('object'); + expect(cache.get('[object Object]')).toBe('string'); + }); + + it('should clear all entries', () => { + const cache = new WeakCache(); + const obj = {}; + cache.set('foo', 1); + cache.set(obj, 2); + cache.clear(); + expect(cache.get('foo')).toBeUndefined(); + expect(cache.get(obj)).toBeUndefined(); + }); + + it('should report presence of keys with has()', () => { + const cache = new WeakCache(); + const obj = {}; + cache.set('foo', 1); + cache.set(obj, 2); + expect(cache.has('foo')).toBe(true); + expect(cache.has(obj)).toBe(true); + expect(cache.has('bar')).toBe(false); + expect(cache.has({})).toBe(false); + }); + + it('should initialize with entries', () => { + const obj = {}; + const entries: [unknown, string][] = [ + ['a', 'alpha'], + [obj, 'object'], + ]; + const cache = new WeakCache(entries); + expect(cache.get('a')).toBe('alpha'); + expect(cache.get(obj)).toBe('object'); + }); + + it('should overwrite values for the same key', () => { + const cache = new WeakCache(); + cache.set('foo', 1); + cache.set('foo', 2); + expect(cache.get('foo')).toBe(2); + + const obj = {}; + cache.set(obj, 3); + cache.set(obj, 4); + expect(cache.get(obj)).toBe(4); + }); + + it('should not throw when getting or setting null or undefined', () => { + const cache = new WeakCache(); + cache.set(null, 'null'); + cache.set(undefined, 'undefined'); + expect(cache.get(null)).toBe('null'); + expect(cache.get(undefined)).toBe('undefined'); + }); + + it('should not leak memory for object keys (WeakMap semantics)', () => { + // This test is limited: we can't force GC, but we can check that no error occurs. + const cache = new WeakCache(); + (() => { + const obj = {}; + cache.set(obj, 'temp'); + expect(cache.get(obj)).toBe('temp'); + })(); + // After this block, obj is out of scope and may be GC'd. + // We can't assert GC, but at least no error should occur. + }); +}); diff --git a/packages/flatpack-json/src/storageV1.mts b/packages/flatpack-json/src/storageV1.mts index 400676241220..beb3c53b4131 100644 --- a/packages/flatpack-json/src/storageV1.mts +++ b/packages/flatpack-json/src/storageV1.mts @@ -9,8 +9,8 @@ import type { BigIntElement, DateElement, Flatpacked, + FlatpackIndex, FlatpackOptions, - Index, MapElement, ObjectElement, ObjectWrapper, @@ -232,7 +232,7 @@ export class CompactStorageV1 extends CompactStorage { return this.storeElement(value, idx, element); } - private createUniqueKeys(keys: Serializable[], cacheValue = true): Index { + private createUniqueKeys(keys: Serializable[], cacheValue = true): FlatpackIndex { let k = this.arrToIdx(keys, cacheValue); const elementKeys = this.data[k] as ArrayElement; const uniqueKeys = new Set(elementKeys.slice(1)); @@ -361,7 +361,7 @@ export class CompactStorageV1 extends CompactStorage { return this.storeElement(value, idx, element); } - private storeElement(value: Serializable | ObjectWrapper, idx: Index, element: CachedElements): number { + private storeElement(value: Serializable | ObjectWrapper, idx: FlatpackIndex, element: CachedElements): number { const useIdx = this.dedupe ? this.cacheElement(idx, element) : idx; if (useIdx !== idx && idx === this.data.length - 1) { @@ -374,7 +374,7 @@ export class CompactStorageV1 extends CompactStorage { return idx; } - private cacheElement(elemIdx: Index, element: CachedElements): number { + private cacheElement(elemIdx: FlatpackIndex, element: CachedElements): number { let map: CacheMap = this.cachedElements; for (let i = 0; i < element.length - 1; i++) { const idx = element[i]; @@ -410,7 +410,7 @@ export class CompactStorageV1 extends CompactStorage { return idx; } - private createArrayElementFromIndexValues(idx: Index, indexValues: Index[]): Index { + private createArrayElementFromIndexValues(idx: FlatpackIndex, indexValues: FlatpackIndex[]): FlatpackIndex { const element: ArrayElement = [ElementType.Array, ...indexValues]; const useIdx = this.dedupe ? this.stashArray(idx, element) : idx; @@ -517,7 +517,7 @@ interface TrieData { value: string; } -type CacheMap = Map; +type CacheMap = Map; type CachedElements = ObjectElement | SetElement | MapElement | RegExpElement | DateElement | BigIntElement; function isEqual(a: readonly number[], b: readonly number[]): boolean { diff --git a/packages/flatpack-json/src/storageV2.mts b/packages/flatpack-json/src/storageV2.mts index fa4465fe0ffa..ef62915537f9 100644 --- a/packages/flatpack-json/src/storageV2.mts +++ b/packages/flatpack-json/src/storageV2.mts @@ -2,14 +2,15 @@ import assert from 'node:assert'; import { CompactStorage } from './CompactStorage.mjs'; import { optimizeFlatpacked } from './optimizeFlatpacked.mjs'; +import { RefCounter } from './RefCounter.mjs'; import { StringTableBuilder } from './stringTable.mjs'; import type { ArrayElement, BigIntElement, DateElement, Flatpacked, + FlatpackIndex, FlatpackOptions, - Index, MapElement, ObjectElement, ObjectWrapper, @@ -19,8 +20,13 @@ import type { RegExpElement, Serializable, SetElement, + UnpackedAnnotation, + UnpackedMetaData, } from './types.mjs'; -import { dataHeaderV2_0, ElementType } from './types.mjs'; +import { dataHeaderV2_0, ElementType, isStringTableElement, symbolFlatpackElement } from './types.mjs'; +import { WeakCache } from './WeakCache.mjs'; + +type SimpleHash = number; const collator = new Intl.Collator('en', { usage: 'sort', @@ -32,36 +38,35 @@ const collator = new Intl.Collator('en', { const compare = collator.compare; export class CompactStorageV2 extends CompactStorage { - private data = [dataHeaderV2_0] as Flatpacked; - private stringTable: StringTableBuilder | undefined; + private data: Flatpacked; + private stringTable: StringTableBuilder; private dedupe = true; private sortKeys = true; private emptyObjIdx = 0; /** * Cache of primitives and objects that have been added to the data. */ - private cache = new Map([[undefined, 0]]); + private cache = new WeakCache([[undefined, 0]]); /** * Set of indexes that have been referenced by other indexes. */ - private referenced = new Set(); + private referenced = new RefCounter(); /** * Cache of arrays that have been deduped. * The key is a hash of the array elements as a function of the index of the element. */ - private cachedArrays = new Map(); - private cachedElements = new Map(); - private stringTableLookup = new Map(); + private cachedArrays = new Map(); + private cachedElements = new Map(); constructor(options?: FlatpackOptions | undefined) { super(options); this.dedupe = options?.dedupe ?? true; this.sortKeys = options?.sortKeys || this.dedupe; this.stringTable = new StringTableBuilder(); - this.data[1] = [ElementType.StringTable]; + this.data = [dataHeaderV2_0, [ElementType.StringTable]]; } - private primitiveToIdx(value: Primitive): number { + private primitiveToIdx(value: Primitive): FlatpackIndex { if (typeof value === 'string') return this.stringToIdx(value); if (typeof value === 'bigint') return this.bigintToIdx(value); @@ -76,28 +81,16 @@ export class CompactStorageV2 extends CompactStorage { } private addStringPrimitive(value: string): number { - const stringTable = this.stringTable; - if (stringTable) { - const idx = -stringTable.add(value); - this.stringTableLookup.set(value, idx); - return idx; - } - const strTableIdx = this.stringTableLookup.get(value); - if (strTableIdx) { - return strTableIdx; - } - const idx = this.data.push(value) - 1; - this.cache.set(value, idx); - return idx; + return -this.stringTable.add(value); } - private duplicateIndex(idx: number): number { + private duplicateIndex(idx: FlatpackIndex): FlatpackIndex { const element = this.data[idx]; const duplicate = this.data.push(element) - 1; return duplicate; } - private stringToIdx(value: string): number { + private stringToIdx(value: string): FlatpackIndex { const found = this.cache.get(value); if (found !== undefined) { return found; @@ -106,7 +99,7 @@ export class CompactStorageV2 extends CompactStorage { return this.addStringPrimitive(value); } - private objSetToIdx(value: Set): number { + private objSetToIdx(value: Set): FlatpackIndex { const found = this.cache.get(value); if (found !== undefined) { this.referenced.add(found); @@ -122,7 +115,7 @@ export class CompactStorageV2 extends CompactStorage { return this.storeElement(value, idx, element); } - private createUniqueKeys(keys: Serializable[], cacheValue = true): Index { + private createUniqueKeys(keys: Serializable[], cacheValue = true): FlatpackIndex { let k = this.arrToIdx(keys, cacheValue); const elementKeys = this.data[k] as ArrayElement; const uniqueKeys = new Set(elementKeys.slice(1)); @@ -141,7 +134,7 @@ export class CompactStorageV2 extends CompactStorage { return k; } - private objMapToIdx(value: Map): number { + private objMapToIdx(value: Map): FlatpackIndex { const found = this.cache.get(value); if (found !== undefined) { this.referenced.add(found); @@ -165,7 +158,7 @@ export class CompactStorageV2 extends CompactStorage { return this.storeElement(value, idx, element); } - private objRegExpToIdx(value: RegExp): number { + private objRegExpToIdx(value: RegExp): FlatpackIndex { const found = this.cache.get(value); if (found !== undefined) { return found; @@ -181,7 +174,7 @@ export class CompactStorageV2 extends CompactStorage { return this.storeElement(value, idx, element); } - private objDateToIdx(value: Date): number { + private objDateToIdx(value: Date): FlatpackIndex { const found = this.cache.get(value); if (found !== undefined) { return found; @@ -193,7 +186,7 @@ export class CompactStorageV2 extends CompactStorage { return this.storeElement(value, idx, element); } - private bigintToIdx(value: bigint): number { + private bigintToIdx(value: bigint): FlatpackIndex { const found = this.cache.get(value); if (found !== undefined) { return found; @@ -212,7 +205,7 @@ export class CompactStorageV2 extends CompactStorage { return this.storeElement(value, idx, element); } - private objToIdx(value: PrimitiveObject | ObjectWrapper): number { + private objToIdx(value: PrimitiveObject | ObjectWrapper): FlatpackIndex { const found = this.cache.get(value); if (found !== undefined) { this.referenced.add(found); @@ -251,7 +244,18 @@ export class CompactStorageV2 extends CompactStorage { return this.storeElement(value, idx, element); } - private storeElement(value: Serializable | ObjectWrapper, idx: Index, element: CachedElements): number { + /** + * Store an element in the data array, using the cache if deduplication is enabled. + * @param value - the value being stored, used for caching purposes. + * @param idx - the index at which to store the element if it is not found in the cache. + * @param element - the element to store if it is not found in the cache. + * @returns the index at which the element is stored. + */ + private storeElement( + value: Serializable | ObjectWrapper, + idx: FlatpackIndex, + element: CachedElements, + ): FlatpackIndex { const useIdx = this.dedupe ? this.cacheElement(idx, element) : idx; if (useIdx !== idx && idx === this.data.length - 1) { @@ -264,7 +268,7 @@ export class CompactStorageV2 extends CompactStorage { return idx; } - private cacheElement(elemIdx: Index, element: CachedElements): number { + private cacheElement(elemIdx: FlatpackIndex, element: CachedElements): FlatpackIndex { let map: CacheMap = this.cachedElements; for (let i = 0; i < element.length - 1; i++) { const idx = element[i]; @@ -279,13 +283,13 @@ export class CompactStorageV2 extends CompactStorage { const idx = element[element.length - 1]; const foundIdx = map.get(idx); if (typeof foundIdx === 'number') { - return this.referenced.has(elemIdx) ? elemIdx : foundIdx; + return this.referenced.hasRefs(elemIdx) ? elemIdx : foundIdx; } map.set(idx, elemIdx); return elemIdx; } - private stashArray(idx: number, element: ArrayElement): number { + private stashArray(idx: FlatpackIndex, element: ArrayElement): FlatpackIndex { const indexHash = simpleHash(element); let found = this.cachedArrays.get(indexHash); if (!found) { @@ -294,13 +298,13 @@ export class CompactStorageV2 extends CompactStorage { } const foundIdx = found.find((entry) => isEqual(entry.v, element)); if (foundIdx) { - return this.referenced.has(idx) ? idx : foundIdx.idx; + return this.referenced.hasRefs(idx) ? idx : foundIdx.idx; } found.push({ idx, v: element }); return idx; } - private createArrayElementFromIndexValues(idx: Index, indexValues: Index[]): Index { + private createArrayElementFromIndexValues(idx: FlatpackIndex, indexValues: FlatpackIndex[]): FlatpackIndex { const element: ArrayElement = [ElementType.Array, ...indexValues]; const useIdx = this.dedupe ? this.stashArray(idx, element) : idx; @@ -321,7 +325,7 @@ export class CompactStorageV2 extends CompactStorage { * @param cacheValue - Whether to cache the value. * @returns the index of the array. */ - private arrToIdx(value: PrimitiveArray, cacheValue = true): number { + private arrToIdx(value: PrimitiveArray, cacheValue = true): FlatpackIndex { const found = this.cache.get(value); if (found !== undefined) { this.referenced.add(found); @@ -342,7 +346,7 @@ export class CompactStorageV2 extends CompactStorage { return useIdx; } - private valueToIdx(value: Serializable): number { + private valueToIdx(value: Serializable): FlatpackIndex { if (value === null) { return this.primitiveToIdx(value); } @@ -375,10 +379,37 @@ export class CompactStorageV2 extends CompactStorage { private softReset(): void { this.cache.clear(); this.cache.set(undefined, 0); + this.cachedArrays.clear(); + this.cachedElements.clear(); + this.referenced.clear(); + this.data = [dataHeaderV2_0, [ElementType.StringTable]]; + } + + private useFlatpackMetaData(info: UnpackedMetaData | undefined): void { + const data = info?.src; + if (data?.[0] !== dataHeaderV2_0) { + return; + } + this.useFlatpackData(data); + } + + private useFlatpackData(data: Flatpacked): void { + const st = data[1]; + if (isStringTableElement(st)) { + this.stringTable = new StringTableBuilder(st); + } + if (data[0] !== dataHeaderV2_0) { + this.data = [dataHeaderV2_0, [ElementType.StringTable]]; + return; + } + this.data = data; + // At the moment, only the string table is used. + this.data = [dataHeaderV2_0, [ElementType.StringTable]]; } toJSON(json: V): Flatpacked { this.softReset(); + this.useFlatpackMetaData(extractUnpackedMetaData(json)); const lastIdx = this.valueToIdx(json); if (lastIdx < 0) { this.data.push([ElementType.String, lastIdx]); @@ -390,7 +421,7 @@ export class CompactStorageV2 extends CompactStorage { } } -type CacheMap = Map; +type CacheMap = Map; type CachedElements = ObjectElement | SetElement | MapElement | RegExpElement | DateElement | BigIntElement; function isEqual(a: readonly number[], b: readonly number[]): boolean { @@ -418,3 +449,14 @@ function isObjectWrapper(value: unknown): value is ObjectWrapper { value.valueOf() !== value ); } + +function extractUnpackedMetaData(data: Serializable): UnpackedMetaData | undefined { + if (isAnnotateUnpacked(data)) { + return data[symbolFlatpackElement]; + } + return undefined; +} + +function isAnnotateUnpacked(value: T): value is T & UnpackedAnnotation { + return typeof value === 'object' && value !== null && Object.hasOwn(value, symbolFlatpackElement); +} diff --git a/packages/flatpack-json/src/types.mts b/packages/flatpack-json/src/types.mts index 4ec003e6453f..d7018e421450 100644 --- a/packages/flatpack-json/src/types.mts +++ b/packages/flatpack-json/src/types.mts @@ -49,50 +49,54 @@ export type ArrayBasedElements = | SubStringElement | StringTableElement; -export type Index = number; +/** + * The absolute index of an element in the Flatpacked array. The first element is the header, + * so the first element is at index 1. + */ +export type FlatpackIndex = number; /** * A Compound string element. Each index is a reference to a string element that is concatenated * to form the final string. */ -export type StringElement = readonly [type: ElementType.String, ...Index[]]; +export type StringElement = readonly [type: ElementType.String, ...FlatpackIndex[]]; /** * A substring element. The first index is a reference to a string element. * The second index is the length of the substring. * The third index is the offset of the substring, defaults to 0. */ -export type SubStringElement = readonly [type: ElementType.SubString, idx: Index, len: number, offset?: number]; +export type SubStringElement = readonly [type: ElementType.SubString, idx: FlatpackIndex, len: number, offset?: number]; /** * An object element. The first index is a reference to an array of keys. * The second index is a reference to an array of values. */ -export type ObjectElement = readonly [type: ElementType.Object, keys: Index, values: Index]; +export type ObjectElement = readonly [type: ElementType.Object, keys: FlatpackIndex, values: FlatpackIndex]; /** * A Object wrapper element. */ -export type ObjectWrapperElement = readonly [type: ElementType.Object, keys: 0, values: Index]; +export type ObjectWrapperElement = readonly [type: ElementType.Object, keys: 0, values: FlatpackIndex]; /** * A set element. The first index is a reference to an array of keys. */ -export type SetElement = readonly [type: ElementType.Set, keys: Index]; +export type SetElement = readonly [type: ElementType.Set, keys: FlatpackIndex]; /** * A map element. The first index is a reference to an array of keys. * The second index is a reference to an array of values. */ -export type MapElement = readonly [type: ElementType.Map, keys: Index, values: Index]; +export type MapElement = readonly [type: ElementType.Map, keys: FlatpackIndex, values: FlatpackIndex]; /** * A regular expression element. The first index is a reference to a string element that represents the pattern. * The second index is a reference to a string element that represents the flags. */ -export type RegExpElement = readonly [type: ElementType.RegExp, pattern: Index, flags: Index]; +export type RegExpElement = readonly [type: ElementType.RegExp, pattern: FlatpackIndex, flags: FlatpackIndex]; /** * A date element. The first index is the number of milliseconds since the epoch. */ export type DateElement = readonly [type: ElementType.Date, value: number]; -export type BigIntElement = readonly [type: ElementType.BigInt, value: Index]; +export type BigIntElement = readonly [type: ElementType.BigInt, value: FlatpackIndex]; /** * An array element. Each index is a reference to an element. */ -export type ArrayElement = readonly [type: ElementType.Array, ...Index[]]; +export type ArrayElement = readonly [type: ElementType.Array, ...FlatpackIndex[]]; export type StringTableEntry = string | number[]; @@ -104,7 +108,8 @@ export type FlattenedElement = Readonly< type Header = string; export type Flatpacked = [Header, ...FlattenedElement[]]; -export type Unpacked = Readonly; +export type RawUnpacked = Serializable; +export type Unpacked = AnnotateUnpacked; export const blockSplitRegex: RegExp = /^sha\d/; export interface FlatpackOptions { @@ -137,6 +142,8 @@ export interface FlatpackOptions { export const dataHeaderV0_1 = 'Dehydrated JSON v1' as const; export const dataHeaderV1_0 = 'Flatpack JSON v1' as const; export const dataHeaderV2_0 = 'Flatpack JSON v2' as const; + +export type Headers = typeof dataHeaderV0_1 | typeof dataHeaderV1_0 | typeof dataHeaderV2_0; /** * The current header for Flatpack JSON. */ @@ -161,3 +168,14 @@ export function isStringTableElement(elem: FlattenedElement): elem is StringTabl } export const symbolFlatpackElement: unique symbol = Symbol.for('flatpackElement'); + +export interface UnpackedMetaData { + src: Flatpacked; + index: number; +} + +export interface UnpackedAnnotation { + [symbolFlatpackElement]?: UnpackedMetaData; +} + +export type AnnotateUnpacked = T extends null ? T : T extends object ? T & UnpackedAnnotation : T; diff --git a/packages/flatpack-json/src/unpack.mts b/packages/flatpack-json/src/unpack.mts index 723e98877fae..1ae7565b3c54 100644 --- a/packages/flatpack-json/src/unpack.mts +++ b/packages/flatpack-json/src/unpack.mts @@ -2,6 +2,7 @@ import assert from 'node:assert'; import { StringTable } from './stringTable.mjs'; import type { + AnnotateUnpacked, ArrayBasedElements, ArrayElement, BigIntElement, @@ -15,6 +16,7 @@ import type { PrimitiveMap, PrimitiveObject, PrimitiveSet, + RawUnpacked, RegExpElement, Serializable, SetElement, @@ -22,8 +24,9 @@ import type { StringTableElement, SubStringElement, Unpacked, + UnpackedMetaData, } from './types.mjs'; -import { ElementType, supportedHeaders } from './types.mjs'; +import { ElementType, supportedHeaders, symbolFlatpackElement } from './types.mjs'; export function fromJSON(data: Flatpacked): Unpacked { const [header] = data; @@ -34,7 +37,7 @@ export function fromJSON(data: Flatpacked): Unpacked { throw new Error('Invalid header'); } - const cache = new Map([[0, undefined]]); + const cache = new Map([[0, undefined]]); /** * indexes that have been referenced by other objects. */ @@ -184,7 +187,7 @@ export function fromJSON(data: Flatpacked): Unpacked { return idxToValue(idx) as string; } - function idxToValue(idx: number): Serializable { + function idxToValue(idx: number): Unpacked { if (!idx) return undefined; if (idx < 0) { return stringTable ? stringTable.get(-idx) : undefined; @@ -192,7 +195,7 @@ export function fromJSON(data: Flatpacked): Unpacked { const found = cache.get(idx); if (found !== undefined) { if (typeof idx === 'number') referenced.add(idx); - return found as Serializable; + return annotateUnpacked(found, { src: data, index: idx }); } const element = data[idx]; @@ -200,8 +203,12 @@ export function fromJSON(data: Flatpacked): Unpacked { if (typeof element === 'object') { // eslint-disable-next-line unicorn/no-null if (element === null) return null; - if (Array.isArray(element)) return handleArrayElement(idx, element as ArrayBasedElements); - return {}; + if (Array.isArray(element)) + return annotateUnpacked(handleArrayElement(idx, element as ArrayBasedElements), { + src: data, + index: idx, + }); + return annotateUnpacked({}, { src: data, index: idx }); } return element; } @@ -220,3 +227,14 @@ function isArrayElement(value: FlattenedElement): value is ArrayElement { export function parse(data: string): Unpacked { return fromJSON(JSON.parse(data)); } + +function annotateUnpacked(value: T, meta: UnpackedMetaData): AnnotateUnpacked { + if (value && typeof value === 'object') { + if (Object.hasOwn(value, symbolFlatpackElement)) { + return value as AnnotateUnpacked; + } + + return Object.defineProperty(value, symbolFlatpackElement, { value: meta }) as AnnotateUnpacked; + } + return value as AnnotateUnpacked; +} From ced48b2786a84e56cd925093233d3b51497d4f49 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Fri, 13 Mar 2026 15:14:38 +0100 Subject: [PATCH 20/26] refactor --- packages/flatpack-json/src/storageV2.mts | 15 +------ packages/flatpack-json/src/types.mts | 4 +- packages/flatpack-json/src/unpack.mts | 6 +-- packages/flatpack-json/src/unpack.test.mts | 39 ++++++++++++++++++- .../flatpack-json/src/unpackedAnnotation.mts | 13 +++++++ 5 files changed, 58 insertions(+), 19 deletions(-) create mode 100644 packages/flatpack-json/src/unpackedAnnotation.mts diff --git a/packages/flatpack-json/src/storageV2.mts b/packages/flatpack-json/src/storageV2.mts index ef62915537f9..47caeaa9fd5e 100644 --- a/packages/flatpack-json/src/storageV2.mts +++ b/packages/flatpack-json/src/storageV2.mts @@ -20,10 +20,10 @@ import type { RegExpElement, Serializable, SetElement, - UnpackedAnnotation, UnpackedMetaData, } from './types.mjs'; -import { dataHeaderV2_0, ElementType, isStringTableElement, symbolFlatpackElement } from './types.mjs'; +import { dataHeaderV2_0, ElementType, isStringTableElement } from './types.mjs'; +import { extractUnpackedMetaData } from './unpackedAnnotation.mjs'; import { WeakCache } from './WeakCache.mjs'; type SimpleHash = number; @@ -449,14 +449,3 @@ function isObjectWrapper(value: unknown): value is ObjectWrapper { value.valueOf() !== value ); } - -function extractUnpackedMetaData(data: Serializable): UnpackedMetaData | undefined { - if (isAnnotateUnpacked(data)) { - return data[symbolFlatpackElement]; - } - return undefined; -} - -function isAnnotateUnpacked(value: T): value is T & UnpackedAnnotation { - return typeof value === 'object' && value !== null && Object.hasOwn(value, symbolFlatpackElement); -} diff --git a/packages/flatpack-json/src/types.mts b/packages/flatpack-json/src/types.mts index d7018e421450..58860da5af01 100644 --- a/packages/flatpack-json/src/types.mts +++ b/packages/flatpack-json/src/types.mts @@ -167,7 +167,7 @@ export function isStringTableElement(elem: FlattenedElement): elem is StringTabl return elem[0] === ElementType.StringTable; } -export const symbolFlatpackElement: unique symbol = Symbol.for('flatpackElement'); +export const symbolFlatpackAnnotation: unique symbol = Symbol.for('flatpackAnnotation'); export interface UnpackedMetaData { src: Flatpacked; @@ -175,7 +175,7 @@ export interface UnpackedMetaData { } export interface UnpackedAnnotation { - [symbolFlatpackElement]?: UnpackedMetaData; + [symbolFlatpackAnnotation]?: UnpackedMetaData; } export type AnnotateUnpacked = T extends null ? T : T extends object ? T & UnpackedAnnotation : T; diff --git a/packages/flatpack-json/src/unpack.mts b/packages/flatpack-json/src/unpack.mts index 1ae7565b3c54..417782fa15a6 100644 --- a/packages/flatpack-json/src/unpack.mts +++ b/packages/flatpack-json/src/unpack.mts @@ -26,7 +26,7 @@ import type { Unpacked, UnpackedMetaData, } from './types.mjs'; -import { ElementType, supportedHeaders, symbolFlatpackElement } from './types.mjs'; +import { ElementType, supportedHeaders, symbolFlatpackAnnotation } from './types.mjs'; export function fromJSON(data: Flatpacked): Unpacked { const [header] = data; @@ -230,11 +230,11 @@ export function parse(data: string): Unpacked { function annotateUnpacked(value: T, meta: UnpackedMetaData): AnnotateUnpacked { if (value && typeof value === 'object') { - if (Object.hasOwn(value, symbolFlatpackElement)) { + if (Object.hasOwn(value, symbolFlatpackAnnotation)) { return value as AnnotateUnpacked; } - return Object.defineProperty(value, symbolFlatpackElement, { value: meta }) as AnnotateUnpacked; + return Object.defineProperty(value, symbolFlatpackAnnotation, { value: meta }) as AnnotateUnpacked; } return value as AnnotateUnpacked; } diff --git a/packages/flatpack-json/src/unpack.test.mts b/packages/flatpack-json/src/unpack.test.mts index bbfa9c3675d2..52f252ef2f12 100644 --- a/packages/flatpack-json/src/unpack.test.mts +++ b/packages/flatpack-json/src/unpack.test.mts @@ -5,7 +5,9 @@ import { describe, expect, test } from 'vitest'; import { toJSON } from './storage.mjs'; import { stringifyFlatpacked } from './stringify.mjs'; +import { symbolFlatpackAnnotation } from './types.mjs'; import { fromJSON } from './unpack.mjs'; +import { extractUnpackedMetaData, isAnnotateUnpacked } from './unpackedAnnotation.mjs'; const urlFileList = new URL('../fixtures/fileList.txt', import.meta.url); const baseFilename = new URL(import.meta.url).pathname.split('/').slice(-1).join('').split('.').slice(0, -2).join('.'); @@ -20,6 +22,16 @@ describe('dehydrate', async () => { ${null} ${true} ${false} + `('dehydrate/hydrate $data', ({ data }) => { + const v = toJSON(data); + const r = fromJSON(v); + expect(r).toEqual(data); + expect(isAnnotateUnpacked(r)).toBe(typeof data === 'object' && data !== null); + expect(extractUnpackedMetaData(r)).toEqual(undefined); + }); + + test.each` + data ${[]} ${[1, 2]} ${['a', 'b', 'a', 'b']} @@ -30,7 +42,32 @@ describe('dehydrate', async () => { ${{ a: [1] }} `('dehydrate/hydrate $data', ({ data }) => { const v = toJSON(data); - expect(fromJSON(v)).toEqual(data); + const r = fromJSON(v); + expect(r).toEqual(data); + expect(isAnnotateUnpacked(r)).toBe(typeof data === 'object' && data !== null); + expect(symbolFlatpackAnnotation in (r as object)).toBe(true); + expect(Object.hasOwn(r as object, symbolFlatpackAnnotation)).toBe(true); + expect(extractUnpackedMetaData(r)).toEqual({ src: v, index: 1 }); + }); + + test.each` + data + ${[]} + ${[1, 2]} + ${['a', 'b', 'a', 'b']} + ${{}} + ${{ a: 1 }} + ${{ a: { b: 1 } }} + ${{ a: { a: 'a', b: 42 } }} + ${{ a: [1] }} + `('dehydrate/hydrate $data', ({ data }) => { + const v = toJSON(data, { format: 'V2' }); + const r = fromJSON(v); + expect(r).toEqual(data); + expect(isAnnotateUnpacked(r)).toBe(typeof data === 'object' && data !== null); + expect(symbolFlatpackAnnotation in (r as object)).toBe(true); + expect(Object.hasOwn(r as object, symbolFlatpackAnnotation)).toBe(true); + expect(extractUnpackedMetaData(r)).toEqual({ src: v, index: 2 }); }); const biMaxSafe = BigInt(Number.MAX_SAFE_INTEGER); diff --git a/packages/flatpack-json/src/unpackedAnnotation.mts b/packages/flatpack-json/src/unpackedAnnotation.mts new file mode 100644 index 000000000000..0b3261410daf --- /dev/null +++ b/packages/flatpack-json/src/unpackedAnnotation.mts @@ -0,0 +1,13 @@ +import type { Serializable, UnpackedAnnotation, UnpackedMetaData } from './types.mjs'; +import { symbolFlatpackAnnotation } from './types.mjs'; + +export function extractUnpackedMetaData(data: Serializable): UnpackedMetaData | undefined { + if (isAnnotateUnpacked(data)) { + return data[symbolFlatpackAnnotation]; + } + return undefined; +} + +export function isAnnotateUnpacked(value: T): value is T & UnpackedAnnotation { + return typeof value === 'object' && value !== null && Object.hasOwn(value, symbolFlatpackAnnotation); +} From f7ccd55dadbe287c8ed1634ff9130e29f7b354c4 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Mon, 16 Mar 2026 10:05:52 +0100 Subject: [PATCH 21/26] Keep track of references --- packages/flatpack-json/src/storageV2.mts | 28 ++++++++++--------- packages/flatpack-json/src/types.mts | 19 +++++++++---- packages/flatpack-json/src/unpack.mts | 22 +++++++++------ packages/flatpack-json/src/unpack.test.mts | 7 +++-- .../flatpack-json/src/unpackedAnnotation.mts | 6 ++-- 5 files changed, 51 insertions(+), 31 deletions(-) diff --git a/packages/flatpack-json/src/storageV2.mts b/packages/flatpack-json/src/storageV2.mts index 47caeaa9fd5e..d5ebc78c4b0f 100644 --- a/packages/flatpack-json/src/storageV2.mts +++ b/packages/flatpack-json/src/storageV2.mts @@ -20,7 +20,8 @@ import type { RegExpElement, Serializable, SetElement, - UnpackedMetaData, + UnpackedAnnotation, + UnpackMetaData, } from './types.mjs'; import { dataHeaderV2_0, ElementType, isStringTableElement } from './types.mjs'; import { extractUnpackedMetaData } from './unpackedAnnotation.mjs'; @@ -57,6 +58,7 @@ export class CompactStorageV2 extends CompactStorage { */ private cachedArrays = new Map(); private cachedElements = new Map(); + private unpackMetaData: UnpackMetaData | undefined; constructor(options?: FlatpackOptions | undefined) { super(options); @@ -385,24 +387,24 @@ export class CompactStorageV2 extends CompactStorage { this.data = [dataHeaderV2_0, [ElementType.StringTable]]; } - private useFlatpackMetaData(info: UnpackedMetaData | undefined): void { - const data = info?.src; - if (data?.[0] !== dataHeaderV2_0) { - return; - } - this.useFlatpackData(data); + private useFlatpackMetaData(info: UnpackedAnnotation | undefined): void { + this.useFlatpackData(info?.meta); } - private useFlatpackData(data: Flatpacked): void { - const st = data[1]; - if (isStringTableElement(st)) { - this.stringTable = new StringTableBuilder(st); + private useFlatpackData(data: UnpackMetaData | undefined): void { + if (!data || data.flatpack[0] !== dataHeaderV2_0) { + this.data = [dataHeaderV2_0, [ElementType.StringTable]]; + return; } - if (data[0] !== dataHeaderV2_0) { + this.unpackMetaData = data; + const flatpack: Flatpacked = [...data.flatpack]; + const st = flatpack[1]; + if (!isStringTableElement(st)) { this.data = [dataHeaderV2_0, [ElementType.StringTable]]; return; } - this.data = data; + this.stringTable = new StringTableBuilder(st); + this.data = flatpack; // At the moment, only the string table is used. this.data = [dataHeaderV2_0, [ElementType.StringTable]]; } diff --git a/packages/flatpack-json/src/types.mts b/packages/flatpack-json/src/types.mts index 58860da5af01..8d7282f42fe6 100644 --- a/packages/flatpack-json/src/types.mts +++ b/packages/flatpack-json/src/types.mts @@ -1,3 +1,5 @@ +import type { RefCounter } from './RefCounter.mjs'; + export type SimplePrimitive = string | number | boolean | null | undefined; export type Primitive = SimplePrimitive | RegExp | Date | bigint; export type PrimitiveSet = Set; @@ -169,13 +171,20 @@ export function isStringTableElement(elem: FlattenedElement): elem is StringTabl export const symbolFlatpackAnnotation: unique symbol = Symbol.for('flatpackAnnotation'); -export interface UnpackedMetaData { - src: Flatpacked; - index: number; +export interface UnpackMetaData { + /** The source of the unpacked data */ + flatpack: Flatpacked; + /** The reference count of elements. */ + referenced: RefCounter; } export interface UnpackedAnnotation { - [symbolFlatpackAnnotation]?: UnpackedMetaData; + meta: UnpackMetaData; + index: number; +} + +export interface UnpackedAnnotated { + [symbolFlatpackAnnotation]?: UnpackedAnnotation; } -export type AnnotateUnpacked = T extends null ? T : T extends object ? T & UnpackedAnnotation : T; +export type AnnotateUnpacked = T extends null ? T : T extends object ? T & UnpackedAnnotated : T; diff --git a/packages/flatpack-json/src/unpack.mts b/packages/flatpack-json/src/unpack.mts index 417782fa15a6..7cb911271987 100644 --- a/packages/flatpack-json/src/unpack.mts +++ b/packages/flatpack-json/src/unpack.mts @@ -1,5 +1,6 @@ import assert from 'node:assert'; +import { RefCounter } from './RefCounter.mjs'; import { StringTable } from './stringTable.mjs'; import type { AnnotateUnpacked, @@ -24,13 +25,13 @@ import type { StringTableElement, SubStringElement, Unpacked, - UnpackedMetaData, + UnpackedAnnotation, + UnpackMetaData, } from './types.mjs'; import { ElementType, supportedHeaders, symbolFlatpackAnnotation } from './types.mjs'; export function fromJSON(data: Flatpacked): Unpacked { const [header] = data; - let stringTable: StringTable | undefined; if (!supportedHeaders.has(header)) { @@ -41,7 +42,12 @@ export function fromJSON(data: Flatpacked): Unpacked { /** * indexes that have been referenced by other objects. */ - const referenced = new Set(); + const referenced = new RefCounter(); + + const meta: UnpackMetaData = { + flatpack: data, + referenced, + }; function mergeKeysValues(keys: readonly K[], values: PrimitiveArray): [K, Serializable][] { return keys.map((key, i) => [key, values[i]]); @@ -123,7 +129,7 @@ export function fromJSON(data: Flatpacked): Unpacked { cache.set(idx, placeHolder); const arr = refs.map(idxToValue); // check if the array has been referenced by another object. - if (!referenced.has(idx)) { + if (!referenced.hasRefs(idx)) { // It has not, just replace the placeholder with the array. cache.set(idx, arr); return arr; @@ -195,7 +201,7 @@ export function fromJSON(data: Flatpacked): Unpacked { const found = cache.get(idx); if (found !== undefined) { if (typeof idx === 'number') referenced.add(idx); - return annotateUnpacked(found, { src: data, index: idx }); + return annotateUnpacked(found, { meta, index: idx }); } const element = data[idx]; @@ -205,10 +211,10 @@ export function fromJSON(data: Flatpacked): Unpacked { if (element === null) return null; if (Array.isArray(element)) return annotateUnpacked(handleArrayElement(idx, element as ArrayBasedElements), { - src: data, + meta, index: idx, }); - return annotateUnpacked({}, { src: data, index: idx }); + return annotateUnpacked({}, { meta, index: idx }); } return element; } @@ -228,7 +234,7 @@ export function parse(data: string): Unpacked { return fromJSON(JSON.parse(data)); } -function annotateUnpacked(value: T, meta: UnpackedMetaData): AnnotateUnpacked { +function annotateUnpacked(value: T, meta: UnpackedAnnotation): AnnotateUnpacked { if (value && typeof value === 'object') { if (Object.hasOwn(value, symbolFlatpackAnnotation)) { return value as AnnotateUnpacked; diff --git a/packages/flatpack-json/src/unpack.test.mts b/packages/flatpack-json/src/unpack.test.mts index 52f252ef2f12..77cd1afd70c4 100644 --- a/packages/flatpack-json/src/unpack.test.mts +++ b/packages/flatpack-json/src/unpack.test.mts @@ -3,6 +3,7 @@ import { readFile } from 'node:fs/promises'; import { findMatchingFileTypes } from '@cspell/filetypes'; import { describe, expect, test } from 'vitest'; +import { RefCounter } from './RefCounter.mjs'; import { toJSON } from './storage.mjs'; import { stringifyFlatpacked } from './stringify.mjs'; import { symbolFlatpackAnnotation } from './types.mjs'; @@ -47,7 +48,8 @@ describe('dehydrate', async () => { expect(isAnnotateUnpacked(r)).toBe(typeof data === 'object' && data !== null); expect(symbolFlatpackAnnotation in (r as object)).toBe(true); expect(Object.hasOwn(r as object, symbolFlatpackAnnotation)).toBe(true); - expect(extractUnpackedMetaData(r)).toEqual({ src: v, index: 1 }); + const meta = expect.objectContaining({ flatpack: v, referenced: expect.any(RefCounter) }); + expect(extractUnpackedMetaData(r)).toEqual({ meta, index: 1 }); }); test.each` @@ -67,7 +69,8 @@ describe('dehydrate', async () => { expect(isAnnotateUnpacked(r)).toBe(typeof data === 'object' && data !== null); expect(symbolFlatpackAnnotation in (r as object)).toBe(true); expect(Object.hasOwn(r as object, symbolFlatpackAnnotation)).toBe(true); - expect(extractUnpackedMetaData(r)).toEqual({ src: v, index: 2 }); + const meta = expect.objectContaining({ flatpack: v, referenced: expect.any(RefCounter) }); + expect(extractUnpackedMetaData(r)).toEqual({ meta, index: 2 }); }); const biMaxSafe = BigInt(Number.MAX_SAFE_INTEGER); diff --git a/packages/flatpack-json/src/unpackedAnnotation.mts b/packages/flatpack-json/src/unpackedAnnotation.mts index 0b3261410daf..efd686ed9e59 100644 --- a/packages/flatpack-json/src/unpackedAnnotation.mts +++ b/packages/flatpack-json/src/unpackedAnnotation.mts @@ -1,13 +1,13 @@ -import type { Serializable, UnpackedAnnotation, UnpackedMetaData } from './types.mjs'; +import type { Serializable, UnpackedAnnotated, UnpackedAnnotation } from './types.mjs'; import { symbolFlatpackAnnotation } from './types.mjs'; -export function extractUnpackedMetaData(data: Serializable): UnpackedMetaData | undefined { +export function extractUnpackedMetaData(data: Serializable): UnpackedAnnotation | undefined { if (isAnnotateUnpacked(data)) { return data[symbolFlatpackAnnotation]; } return undefined; } -export function isAnnotateUnpacked(value: T): value is T & UnpackedAnnotation { +export function isAnnotateUnpacked(value: T): value is T & UnpackedAnnotated { return typeof value === 'object' && value !== null && Object.hasOwn(value, symbolFlatpackAnnotation); } From 42e76e6fd1c3cceb06a59258a20244b514d4b6ce Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Mon, 16 Mar 2026 10:29:32 +0100 Subject: [PATCH 22/26] Add more tests --- .../src/__snapshots__/unpack.test.mts.snap | 1736 +++++++++++++++++ packages/flatpack-json/src/unpack.test.mts | 52 + 2 files changed, 1788 insertions(+) diff --git a/packages/flatpack-json/src/__snapshots__/unpack.test.mts.snap b/packages/flatpack-json/src/__snapshots__/unpack.test.mts.snap index a5ae26c5c021..1b5c51c71f24 100644 --- a/packages/flatpack-json/src/__snapshots__/unpack.test.mts.snap +++ b/packages/flatpack-json/src/__snapshots__/unpack.test.mts.snap @@ -1,5 +1,38 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html +exports[`dehydrate > circular array > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "3", + "4", + "1", + "2", + ], + [ + 0, + 3, + -3, + -4, + 2, + ], + [ + 0, + -1, + -2, + 2, + 3, + ], + ], + "referenced": RefCounter {}, + }, +} +`; + exports[`dehydrate > dehydrate 'string' undefined 1`] = ` [ "Flatpack JSON v1", @@ -718,6 +751,1709 @@ exports[`dehydrate > dehydrate Set{ 'apple', 'banana', 'pineapple' } undefined 1 ] `; +exports[`dehydrate > dehydrate V2 'string' undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "string", + ], + [ + 2, + -1, + ], +] +`; + +exports[`dehydrate > dehydrate V2 'string' undefined > meta 1`] = `undefined`; + +exports[`dehydrate > dehydrate V2 /[\\p{L}\\p{M}]+/gu undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "[\\p{L}\\p{M}]+", + "gu", + ], + [ + 6, + -1, + -2, + ], +] +`; + +exports[`dehydrate > dehydrate V2 /[\\p{L}\\p{M}]+/gu undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "[\\p{L}\\p{M}]+", + "gu", + ], + [ + 6, + -1, + -2, + ], + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ] undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "apple", + "banana", + "pineapple", + ], + [ + 0, + -1, + -2, + -1, + -2, + -1, + -3, + ], +] +`; + +exports[`dehydrate > dehydrate V2 [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ] undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "apple", + "banana", + "pineapple", + ], + [ + 0, + -1, + -2, + -1, + -2, + -1, + -3, + ], + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p{M}]+/gu, /[\\p{Lu}\\p{M}]+/gu ] undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "[\\p{L}\\p{M}]+", + "gu", + "[\\p{Lu}\\p{M}]+", + ], + [ + 0, + 3, + 3, + 4, + ], + [ + 6, + -1, + -2, + ], + [ + 6, + -3, + -2, + ], +] +`; + +exports[`dehydrate > dehydrate V2 [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p{M}]+/gu, /[\\p{Lu}\\p{M}]+/gu ] undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "[\\p{L}\\p{M}]+", + "gu", + "[\\p{Lu}\\p{M}]+", + ], + [ + 0, + 3, + 3, + 4, + ], + [ + 6, + -1, + -2, + ], + [ + 6, + -3, + -2, + ], + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 [ { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, …(1) ] { dedupe: false } > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "a", + "b", + ], + [ + 0, + 3, + 6, + 9, + 12, + ], + [ + 1, + 4, + 5, + ], + [ + 0, + -1, + -2, + ], + [ + 0, + -1, + -2, + ], + [ + 1, + 7, + 8, + ], + [ + 0, + -1, + -2, + ], + [ + 0, + -1, + -2, + ], + [ + 1, + 10, + 11, + ], + [ + 0, + -1, + -2, + ], + [ + 0, + -1, + -2, + ], + [ + 1, + 13, + 14, + ], + [ + 0, + -1, + -2, + ], + [ + 0, + -1, + -2, + ], +] +`; + +exports[`dehydrate > dehydrate V2 [ { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, …(1) ] { dedupe: false } > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "a", + "b", + ], + [ + 0, + 3, + 6, + 9, + 12, + ], + [ + 1, + 4, + 5, + ], + [ + 0, + -1, + -2, + ], + [ + 0, + -1, + -2, + ], + [ + 1, + 7, + 8, + ], + [ + 0, + -1, + -2, + ], + [ + 0, + -1, + -2, + ], + [ + 1, + 10, + 11, + ], + [ + 0, + -1, + -2, + ], + [ + 0, + -1, + -2, + ], + [ + 1, + 13, + 14, + ], + [ + 0, + -1, + -2, + ], + [ + 0, + -1, + -2, + ], + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 [ { a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b', a: 'a' }, …(2) ] undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "a", + "b", + "c", + "d", + ], + [ + 0, + 3, + 5, + 3, + 4, + 6, + ], + [ + 1, + 4, + 4, + ], + [ + 0, + -1, + -2, + ], + [ + 1, + 4, + 6, + ], + [ + 0, + -3, + -4, + ], +] +`; + +exports[`dehydrate > dehydrate V2 [ { a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b', a: 'a' }, …(2) ] undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "a", + "b", + "c", + "d", + ], + [ + 0, + 3, + 5, + 3, + 4, + 6, + ], + [ + 1, + 4, + 4, + ], + [ + 0, + -1, + -2, + ], + [ + 1, + 4, + 6, + ], + [ + 0, + -3, + -4, + ], + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 [ {}, {}, {} ] undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + 3, + 3, + 3, + ], + {}, +] +`; + +exports[`dehydrate > dehydrate V2 [ {}, {}, {} ] undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + 3, + 3, + 3, + ], + {}, + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 [ 1, 2 ] undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + 3, + 4, + ], + 1, + 2, +] +`; + +exports[`dehydrate > dehydrate V2 [ 1, 2 ] undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + 3, + 4, + ], + 1, + 2, + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 [ 1n, 'hello', /\\w+/g, {}, [], 'hello' ] undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "hello", + "\\w+", + "g", + ], + [ + 0, + 3, + 6, + 7, + 8, + 9, + 6, + ], + [ + 1, + 0, + 4, + ], + [ + 8, + 5, + ], + 1, + [ + 1, + 0, + -1, + ], + [ + 6, + -2, + -3, + ], + {}, + [ + 0, + ], +] +`; + +exports[`dehydrate > dehydrate V2 [ 1n, 'hello', /\\w+/g, {}, [], 'hello' ] undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "hello", + "\\w+", + "g", + ], + [ + 0, + 3, + 6, + 7, + 8, + 9, + 6, + ], + [ + 1, + 0, + 4, + ], + [ + 8, + 5, + ], + 1, + [ + 1, + 0, + -1, + ], + [ + 6, + -2, + -3, + ], + {}, + [ + 0, + ], + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 [ 1n, 2n, 1n, 2n, 9007199254740991n, -9007199254740991n, …(2) ] undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "9007199254740992", + "-9007199254740992", + ], + [ + 0, + 3, + 5, + 3, + 5, + 7, + 9, + 11, + 12, + ], + [ + 8, + 4, + ], + 1, + [ + 8, + 6, + ], + 2, + [ + 8, + 8, + ], + 9007199254740991, + [ + 8, + 10, + ], + -9007199254740991, + [ + 8, + -1, + ], + [ + 8, + -2, + ], +] +`; + +exports[`dehydrate > dehydrate V2 [ 1n, 2n, 1n, 2n, 9007199254740991n, -9007199254740991n, …(2) ] undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "9007199254740992", + "-9007199254740992", + ], + [ + 0, + 3, + 5, + 3, + 5, + 7, + 9, + 11, + 12, + ], + [ + 8, + 4, + ], + 1, + [ + 8, + 6, + ], + 2, + [ + 8, + 8, + ], + 9007199254740991, + [ + 8, + 10, + ], + -9007199254740991, + [ + 8, + -1, + ], + [ + 8, + -2, + ], + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 [ Array(3) ] undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + 3, + 3, + 4, + ], + [ + 7, + 1704067200000, + ], + [ + 7, + 1704153600000, + ], +] +`; + +exports[`dehydrate > dehydrate V2 [ Array(3) ] undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + 3, + 3, + 4, + ], + [ + 7, + 1704067200000, + ], + [ + 7, + 1704153600000, + ], + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 [] undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + ], +] +`; + +exports[`dehydrate > dehydrate V2 [] undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + ], + [ + 0, + ], + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 { a: [ 1 ] } undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "a", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + ], + [ + 0, + 5, + ], + [ + 0, + 6, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate V2 { a: [ 1 ] } undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "a", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + ], + [ + 0, + 5, + ], + [ + 0, + 6, + ], + 1, + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 { a: { a: 'a', b: 'b' }, b: { a: 'c', b: 'd' }, …(6) } undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "a", + "b", + "m", + "n", + "nn", + "nnn", + "r", + "s", + "c", + "d", + "[\\p{L}\\p{M}]+", + "gu", + "rr", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + -2, + -3, + -4, + -5, + -6, + -7, + -8, + ], + [ + 0, + 5, + 7, + 9, + 10, + 10, + 10, + 11, + 15, + ], + [ + 1, + 6, + 6, + ], + [ + 0, + -1, + -2, + ], + [ + 1, + 6, + 8, + ], + [ + 0, + -9, + -10, + ], + [ + 5, + 6, + 6, + ], + [ + 0, + 5, + 7, + 5, + 6, + 8, + 11, + 12, + ], + [ + 6, + -11, + -12, + ], + [ + 1, + 13, + 14, + ], + [ + 0, + -7, + -13, + ], + [ + 0, + 11, + 11, + ], + [ + 4, + 17, + ], + [ + 1, + 6, + 6, + ], + [ + 0, + 5, + 7, + 16, + 6, + 8, + 11, + 12, + ], +] +`; + +exports[`dehydrate > dehydrate V2 { a: { a: 'a', b: 'b' }, b: { a: 'c', b: 'd' }, …(6) } undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "a", + "b", + "m", + "n", + "nn", + "nnn", + "r", + "s", + "c", + "d", + "[\\p{L}\\p{M}]+", + "gu", + "rr", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + -2, + -3, + -4, + -5, + -6, + -7, + -8, + ], + [ + 0, + 5, + 7, + 9, + 10, + 10, + 10, + 11, + 15, + ], + [ + 1, + 6, + 6, + ], + [ + 0, + -1, + -2, + ], + [ + 1, + 6, + 8, + ], + [ + 0, + -9, + -10, + ], + [ + 5, + 6, + 6, + ], + [ + 0, + 5, + 7, + 5, + 6, + 8, + 11, + 12, + ], + [ + 6, + -11, + -12, + ], + [ + 1, + 13, + 14, + ], + [ + 0, + -7, + -13, + ], + [ + 0, + 11, + 11, + ], + [ + 4, + 17, + ], + [ + 1, + 6, + 6, + ], + [ + 0, + 5, + 7, + 16, + 6, + 8, + 11, + 12, + ], + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 { a: { a: 'a', b: 42 } } undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "a", + "b", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + ], + [ + 0, + 5, + ], + [ + 1, + 6, + 7, + ], + [ + 0, + -1, + -2, + ], + [ + 0, + -1, + 8, + ], + 42, +] +`; + +exports[`dehydrate > dehydrate V2 { a: { a: 'a', b: 42 } } undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "a", + "b", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + ], + [ + 0, + 5, + ], + [ + 1, + 6, + 7, + ], + [ + 0, + -1, + -2, + ], + [ + 0, + -1, + 8, + ], + 42, + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 { a: { b: 1 } } undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "a", + "b", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + ], + [ + 0, + 5, + ], + [ + 1, + 6, + 7, + ], + [ + 0, + -2, + ], + [ + 0, + 8, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate V2 { a: { b: 1 } } undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "a", + "b", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + ], + [ + 0, + 5, + ], + [ + 1, + 6, + 7, + ], + [ + 0, + -2, + ], + [ + 0, + 8, + ], + 1, + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 { a: 1 } undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "a", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + ], + [ + 0, + 5, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate V2 { a: 1 } undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "a", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + ], + [ + 0, + 5, + ], + 1, + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 { fruit: [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ], …(2) } undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "fruit", + "joinFruit", + "sentence", + "apple", + "banana", + "pineapple", + "apple-banana-apple-banana-apple-pineapple", + "There is a bit of fruit on the table. Some banana, apple, and pineapple.", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + -2, + -3, + ], + [ + 0, + 5, + -7, + -8, + ], + [ + 0, + -4, + -5, + -4, + -5, + -4, + -6, + ], +] +`; + +exports[`dehydrate > dehydrate V2 { fruit: [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ], …(2) } undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "fruit", + "joinFruit", + "sentence", + "apple", + "banana", + "pineapple", + "apple-banana-apple-banana-apple-pineapple", + "There is a bit of fruit on the table. Some banana, apple, and pineapple.", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + -2, + -3, + ], + [ + 0, + 5, + -7, + -8, + ], + [ + 0, + -4, + -5, + -4, + -5, + -4, + -6, + ], + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 { values: [ 'apple', 'banana', 'pineapple' ], …(1) } undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "set", + "values", + "apple", + "banana", + "pineapple", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + -2, + ], + [ + 0, + 5, + 6, + ], + [ + 4, + 6, + ], + [ + 0, + -3, + -4, + -5, + ], +] +`; + +exports[`dehydrate > dehydrate V2 { values: [ 'apple', 'banana', 'pineapple' ], …(1) } undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "set", + "values", + "apple", + "banana", + "pineapple", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + -2, + ], + [ + 0, + 5, + 6, + ], + [ + 4, + 6, + ], + [ + 0, + -3, + -4, + -5, + ], + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 {} undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + {}, +] +`; + +exports[`dehydrate > dehydrate V2 {} undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + ], + {}, + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 1 undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + 1, +] +`; + +exports[`dehydrate > dehydrate V2 1 undefined > meta 1`] = `undefined`; + +exports[`dehydrate > dehydrate V2 1.1 undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + 1.1, +] +`; + +exports[`dehydrate > dehydrate V2 1.1 undefined > meta 1`] = `undefined`; + +exports[`dehydrate > dehydrate V2 Map{ 'apple' => 1, 'banana' => 2, 'pineapple' => 3 } undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "apple", + "banana", + "pineapple", + ], + [ + 5, + 3, + 4, + ], + [ + 0, + -1, + -2, + -3, + ], + [ + 0, + 5, + 6, + 7, + ], + 1, + 2, + 3, +] +`; + +exports[`dehydrate > dehydrate V2 Map{ 'apple' => 1, 'banana' => 2, 'pineapple' => 3 } undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "apple", + "banana", + "pineapple", + ], + [ + 5, + 3, + 4, + ], + [ + 0, + -1, + -2, + -3, + ], + [ + 0, + 5, + 6, + 7, + ], + 1, + 2, + 3, + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 Set{ 'apple', 'banana', 'pineapple' } undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "apple", + "banana", + "pineapple", + ], + [ + 4, + 3, + ], + [ + 0, + -1, + -2, + -3, + ], +] +`; + +exports[`dehydrate > dehydrate V2 Set{ 'apple', 'banana', 'pineapple' } undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "apple", + "banana", + "pineapple", + ], + [ + 4, + 3, + ], + [ + 0, + -1, + -2, + -3, + ], + ], + "referenced": RefCounter {}, + }, +} +`; + +exports[`dehydrate > dehydrate V2 false undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + false, +] +`; + +exports[`dehydrate > dehydrate V2 false undefined > meta 1`] = `undefined`; + +exports[`dehydrate > dehydrate V2 null undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + null, +] +`; + +exports[`dehydrate > dehydrate V2 null undefined > meta 1`] = `undefined`; + +exports[`dehydrate > dehydrate V2 true undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], + true, +] +`; + +exports[`dehydrate > dehydrate V2 true undefined > meta 1`] = `undefined`; + +exports[`dehydrate > dehydrate V2 undefined undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + ], +] +`; + +exports[`dehydrate > dehydrate V2 undefined undefined > meta 1`] = `undefined`; + exports[`dehydrate > dehydrate false undefined 1`] = ` [ "Flatpack JSON v1", diff --git a/packages/flatpack-json/src/unpack.test.mts b/packages/flatpack-json/src/unpack.test.mts index 77cd1afd70c4..470ae043bd2d 100644 --- a/packages/flatpack-json/src/unpack.test.mts +++ b/packages/flatpack-json/src/unpack.test.mts @@ -112,6 +112,44 @@ describe('dehydrate', async () => { expect(fromJSON(JSON.parse(JSON.stringify(v)))).toEqual(data); }); + test.each` + data | options + ${undefined} | ${undefined} + ${'string'} | ${undefined} + ${1} | ${undefined} + ${1.1} | ${undefined} + ${null} | ${undefined} + ${true} | ${undefined} + ${false} | ${undefined} + ${[]} | ${undefined} + ${[1, 2]} | ${undefined} + ${['apple', 'banana', 'apple', 'banana', 'apple', 'pineapple']} | ${undefined} + ${new Set(['apple', 'banana', 'pineapple'])} | ${undefined} + ${new Map([['apple', 1], ['banana', 2], ['pineapple', 3]])} | ${undefined} + ${{}} | ${undefined} + ${[{}, {}, {}]} | ${undefined} + ${{ a: 1 }} | ${undefined} + ${{ a: { b: 1 } }} | ${undefined} + ${{ a: { a: 'a', b: 42 } }} | ${undefined} + ${{ a: [1] }} | ${undefined} + ${{ values: ['apple', 'banana', 'pineapple'], set: new Set(['apple', 'banana', 'pineapple']) }} | ${undefined} + ${[{ a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: 'b', a: 'a' }, ['a', 'b'], ['c', 'd']]} | ${undefined} + ${[{ a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: 'a', b: 'b' }]} | ${{ dedupe: false }} + ${sampleNestedData()} | ${undefined} + ${sampleRepeatedStrings()} | ${undefined} + ${/[\p{L}\p{M}]+/gu} | ${undefined} + ${[/[\p{L}\p{M}]+/gu, /[\p{L}\p{M}]+/gu, /[\p{Lu}\p{M}]+/gu]} | ${undefined} + ${[new Date('2024-01-01'), new Date('2024-01-01'), new Date('2024-01-02')]} | ${undefined} + ${[1n, 2n, 1n, 2n, biMaxSafe, -biMaxSafe, biMaxSafe + 1n, -biMaxSafe - 1n]} | ${undefined} + ${[Object(1n), Object('hello'), Object(/\w+/g), Object(null), Object([]), Object('hello')]} | ${undefined} + `('dehydrate V2 $data $options', ({ data, options }) => { + const v = toJSON(data, { dedupe: options?.dedupe, format: 'V2' }); + expect(v).toMatchSnapshot('flatpack'); + expect(fromJSON(v)).toEqual(data); + expect(fromJSON(JSON.parse(JSON.stringify(v)))).toEqual(data); + expect(extractUnpackedMetaData(fromJSON(v))).toMatchSnapshot('meta'); + }); + test.each` name | data | options ${'fileList'} | ${await sampleFileList()} | ${undefined} @@ -145,8 +183,22 @@ describe('dehydrate', async () => { expect(hv.m).toEqual(value.m); expect(hv.n).toEqual(value.n); }); + + test('circular array', () => { + const b: CircularArray = ['3', '4']; + const a: CircularArray = [b, '1', '2']; + a.push(a); + b.push(a); + b.push(b); + const v = toJSON(a, { format: 'V2' }); + const r = fromJSON(v) as CircularArray; + expect(r).toEqual([['3', '4', r, r[0]], '1', '2', r]); + expect(extractUnpackedMetaData(r)).toMatchSnapshot('meta'); + }); }); +type CircularArray = (string | CircularArray)[]; + async function sampleFileList() { const data = await readFile(urlFileList, 'utf8'); const files = data.split('\n'); From cbdcc75008be5e7fc8deeb0bfc22d2a1e595f255 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Mon, 16 Mar 2026 14:08:20 +0100 Subject: [PATCH 23/26] fix ref counts --- packages/flatpack-json/src/RefCounter.mts | 4 + packages/flatpack-json/src/Trie.mts | 15 - .../src/__snapshots__/unpack.test.mts.snap | 350 ++++++++++++++++-- packages/flatpack-json/src/unpack.mts | 64 ++-- packages/flatpack-json/src/unpack.test.mts | 25 +- 5 files changed, 394 insertions(+), 64 deletions(-) diff --git a/packages/flatpack-json/src/RefCounter.mts b/packages/flatpack-json/src/RefCounter.mts index 443abb821b52..73138975c444 100644 --- a/packages/flatpack-json/src/RefCounter.mts +++ b/packages/flatpack-json/src/RefCounter.mts @@ -33,4 +33,8 @@ export class RefCounter { [Symbol.iterator](): IterableIterator<[T, number]> { return this.#refCounts.entries(); } + + toJSON(): Map { + return this.#refCounts; + } } diff --git a/packages/flatpack-json/src/Trie.mts b/packages/flatpack-json/src/Trie.mts index 7fc7a5c7b158..417d58d70b5a 100644 --- a/packages/flatpack-json/src/Trie.mts +++ b/packages/flatpack-json/src/Trie.mts @@ -44,21 +44,6 @@ export class Trie { return { node, found }; } - - *walk(prefix = ''): Iterable> { - const found = this.findNode(prefix); - if (found?.found !== prefix) return; - yield* walkTrie(found.node, found.found); - } -} - -export function* walkTrie(node: TrieNode, prefix = ''): Iterable> { - yield { node, found: prefix }; - if (node.c) { - for (const [k, n] of node.c) { - yield* walkTrie(n, prefix + k); - } - } } type ChildMap = Map>; diff --git a/packages/flatpack-json/src/__snapshots__/unpack.test.mts.snap b/packages/flatpack-json/src/__snapshots__/unpack.test.mts.snap index 1b5c51c71f24..87d1663c9412 100644 --- a/packages/flatpack-json/src/__snapshots__/unpack.test.mts.snap +++ b/packages/flatpack-json/src/__snapshots__/unpack.test.mts.snap @@ -28,7 +28,106 @@ exports[`dehydrate > circular array > meta 1`] = ` 3, ], ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 3, + 3 => 2, + -1 => 1, + -2 => 1, + -3 => 1, + -4 => 1, + }, + }, +} +`; + +exports[`dehydrate > circular object > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "data", + "head", + "name", + "tail", + "hello", + "b", + "c", + "a", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + -2, + -3, + -4, + ], + [ + 0, + 5, + 6, + -8, + 8, + ], + [ + 0, + -1, + 5, + -5, + 5, + ], + [ + 1, + 3, + 7, + ], + [ + 0, + 3, + 8, + -7, + 2, + ], + [ + 1, + 3, + 9, + ], + [ + 0, + -1, + 2, + -6, + 0, + ], + ], + "referenced": Map { + 1 => 1, + 2 => 3, + 3 => 4, + -1 => 3, + -2 => 1, + -3 => 1, + -4 => 1, + 4 => 1, + 5 => 3, + -5 => 1, + 6 => 1, + 7 => 1, + 8 => 2, + 9 => 1, + -6 => 1, + -7 => 1, + -8 => 1, + }, }, } `; @@ -800,7 +899,12 @@ exports[`dehydrate > dehydrate V2 /[\\p{L}\\p{M}]+/gu undefined > meta 1`] = ` -2, ], ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + -1 => 1, + -2 => 1, + }, }, } `; @@ -848,7 +952,13 @@ exports[`dehydrate > dehydrate V2 [ 'apple', 'banana', 'apple', 'banana', 'apple -3, ], ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + -1 => 3, + -2 => 2, + -3 => 1, + }, }, } `; @@ -910,7 +1020,15 @@ exports[`dehydrate > dehydrate V2 [ /[\\p{L}\\p{M}]+/gu, /[\\p{L}\\p{M}]+/gu, /[ -2, ], ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 2, + -1 => 1, + -2 => 2, + 4 => 1, + -3 => 1, + }, }, } `; @@ -1072,7 +1190,24 @@ exports[`dehydrate > dehydrate V2 [ { a: 'a', b: 'b' }, { a: 'a', b: 'b' }, { a: -2, ], ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 1, + 4 => 1, + -1 => 8, + -2 => 8, + 5 => 1, + 6 => 1, + 7 => 1, + 8 => 1, + 9 => 1, + 10 => 1, + 11 => 1, + 12 => 1, + 13 => 1, + 14 => 1, + }, }, } `; @@ -1160,7 +1295,18 @@ exports[`dehydrate > dehydrate V2 [ { a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: -4, ], ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 2, + 4 => 4, + -1 => 1, + -2 => 1, + 5 => 1, + 6 => 2, + -3 => 1, + -4 => 1, + }, }, } `; @@ -1198,7 +1344,11 @@ exports[`dehydrate > dehydrate V2 [ {}, {}, {} ] undefined > meta 1`] = ` ], {}, ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 3, + }, }, } `; @@ -1236,7 +1386,12 @@ exports[`dehydrate > dehydrate V2 [ 1, 2 ] undefined > meta 1`] = ` 1, 2, ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 1, + 4 => 1, + }, }, } `; @@ -1332,7 +1487,20 @@ exports[`dehydrate > dehydrate V2 [ 1n, 'hello', /\\w+/g, {}, [], 'hello' ] unde 0, ], ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 1, + 4 => 1, + 5 => 1, + 6 => 2, + -1 => 1, + 7 => 1, + -2 => 1, + -3 => 1, + 8 => 1, + 9 => 1, + }, }, } `; @@ -1438,7 +1606,22 @@ exports[`dehydrate > dehydrate V2 [ 1n, 2n, 1n, 2n, 9007199254740991n, -90071992 -2, ], ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 2, + 4 => 1, + 5 => 2, + 6 => 1, + 7 => 1, + 8 => 1, + 9 => 1, + 10 => 1, + 11 => 1, + -1 => 1, + 12 => 1, + -2 => 1, + }, }, } `; @@ -1490,7 +1673,12 @@ exports[`dehydrate > dehydrate V2 [ Array(3) ] undefined > meta 1`] = ` 1704153600000, ], ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 2, + 4 => 1, + }, }, } `; @@ -1520,7 +1708,10 @@ exports[`dehydrate > dehydrate V2 [] undefined > meta 1`] = ` 0, ], ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + }, }, } `; @@ -1582,7 +1773,15 @@ exports[`dehydrate > dehydrate V2 { a: [ 1 ] } undefined > meta 1`] = ` ], 1, ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 1, + -1 => 1, + 4 => 1, + 5 => 1, + 6 => 1, + }, }, } `; @@ -1834,7 +2033,38 @@ exports[`dehydrate > dehydrate V2 { a: { a: 'a', b: 'b' }, b: { a: 'c', b: 'd' } 12, ], ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 1, + -1 => 2, + -2 => 2, + -3 => 1, + -4 => 1, + -5 => 1, + -6 => 1, + -7 => 2, + -8 => 1, + 4 => 1, + 5 => 4, + 6 => 9, + 7 => 3, + 8 => 3, + -9 => 1, + -10 => 1, + 9 => 1, + 10 => 3, + 11 => 5, + -11 => 1, + -12 => 1, + 12 => 2, + 13 => 1, + -13 => 1, + 14 => 1, + 15 => 1, + 17 => 1, + 16 => 1, + }, }, } `; @@ -1920,7 +2150,18 @@ exports[`dehydrate > dehydrate V2 { a: { a: 'a', b: 42 } } undefined > meta 1`] ], 42, ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 1, + -1 => 3, + 4 => 1, + 5 => 1, + 6 => 1, + -2 => 1, + 7 => 1, + 8 => 1, + }, }, } `; @@ -2002,7 +2243,18 @@ exports[`dehydrate > dehydrate V2 { a: { b: 1 } } undefined > meta 1`] = ` ], 1, ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 1, + -1 => 1, + 4 => 1, + 5 => 1, + 6 => 1, + -2 => 1, + 7 => 1, + 8 => 1, + }, }, } `; @@ -2056,7 +2308,14 @@ exports[`dehydrate > dehydrate V2 { a: 1 } undefined > meta 1`] = ` ], 1, ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 1, + -1 => 1, + 4 => 1, + 5 => 1, + }, }, } `; @@ -2148,7 +2407,21 @@ exports[`dehydrate > dehydrate V2 { fruit: [ 'apple', 'banana', 'apple', 'banana -6, ], ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 1, + -1 => 1, + -2 => 1, + -3 => 1, + 4 => 1, + 5 => 1, + -4 => 3, + -5 => 2, + -6 => 1, + -7 => 1, + -8 => 1, + }, }, } `; @@ -2232,7 +2505,19 @@ exports[`dehydrate > dehydrate V2 { values: [ 'apple', 'banana', 'pineapple' ], -5, ], ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 1, + -1 => 1, + -2 => 1, + 4 => 1, + 5 => 1, + 6 => 2, + -3 => 1, + -4 => 1, + -5 => 1, + }, }, } `; @@ -2258,7 +2543,10 @@ exports[`dehydrate > dehydrate V2 {} undefined > meta 1`] = ` ], {}, ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + }, }, } `; @@ -2352,7 +2640,18 @@ exports[`dehydrate > dehydrate V2 Map{ 'apple' => 1, 'banana' => 2, 'pineapple' 2, 3, ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 1, + -1 => 1, + -2 => 1, + -3 => 1, + 4 => 1, + 5 => 1, + 6 => 1, + 7 => 1, + }, }, } `; @@ -2402,7 +2701,14 @@ exports[`dehydrate > dehydrate V2 Set{ 'apple', 'banana', 'pineapple' } undefine -3, ], ], - "referenced": RefCounter {}, + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 1, + -1 => 1, + -2 => 1, + -3 => 1, + }, }, } `; diff --git a/packages/flatpack-json/src/unpack.mts b/packages/flatpack-json/src/unpack.mts index 7cb911271987..4ba514978dbb 100644 --- a/packages/flatpack-json/src/unpack.mts +++ b/packages/flatpack-json/src/unpack.mts @@ -38,9 +38,11 @@ export function fromJSON(data: Flatpacked): Unpacked { throw new Error('Invalid header'); } - const cache = new Map([[0, undefined]]); + const cache = new Map([[0, undefined]]); + /** - * indexes that have been referenced by other objects. + * indexes that have been referenced by multiple objects. + * A count of 1 means that there is only 1 reference. */ const referenced = new RefCounter(); @@ -49,6 +51,19 @@ export function fromJSON(data: Flatpacked): Unpacked { referenced, }; + return idxToValue(1); + + function cacheValue(idx: number, value: RawUnpacked): RawUnpacked { + assert(!cache.has(idx), `Index ${idx} already exists in cache`); + cache.set(idx, value); + return value; + } + + function getCachedValue(idx: number): RawUnpacked | undefined { + referenced.add(idx); + return cache.get(idx); + } + function mergeKeysValues(keys: readonly K[], values: PrimitiveArray): [K, Serializable][] { return keys.map((key, i) => [key, values[i]]); } @@ -56,7 +71,7 @@ export function fromJSON(data: Flatpacked): Unpacked { function toSet(idx: number, elem: SetElement): PrimitiveSet { const [_, k] = elem; const s: PrimitiveSet = k ? (new Set(idxToArr(k)) as PrimitiveSet) : new Set(); - cache.set(idx, s); + cacheValue(idx, s); return s; } @@ -64,7 +79,7 @@ export function fromJSON(data: Flatpacked): Unpacked { const [_, k, v] = elem; const m: PrimitiveMap = !k || !v ? new Map() : (new Map(mergeKeysValues(idxToArr(k), idxToArr(v))) as PrimitiveMap); - cache.set(idx, m); + cacheValue(idx, m); return m; } @@ -73,42 +88,41 @@ export function fromJSON(data: Flatpacked): Unpacked { const p = idxToValue(pattern) as string; const f = idxToValue(flags) as string; const r = new RegExp(p, f); - cache.set(idx, r); + cacheValue(idx, r); return r; } function toBigInt(idx: number, elem: BigIntElement): bigint { const [_, vIdx] = elem; const r = BigInt(idxToValue(vIdx) as string | number); - cache.set(idx, r); + cacheValue(idx, r); return r; } function toDate(idx: number, elem: DateElement): Date { const [_, value] = elem; const r = new Date(value); - cache.set(idx, r); + cacheValue(idx, r); return r; } function toString(idx: number, elem: StringElement | string): string { const s = typeof elem === 'string' ? elem : idxToString(elem.slice(1) as number[]); - cache.set(idx, s); + cacheValue(idx, s); return s; } function toObj(idx: number, elem: ObjectElement): PrimitiveObject { const [_, k, v] = elem; - // Object Wrapper if (!k && v) { const obj = Object(idxToValue(v)); - cache.set(idx, obj); + cacheValue(idx, obj); return obj as PrimitiveObject; } const obj = {}; - cache.set(idx, obj); + cacheValue(idx, obj); if (!k || !v) return obj; const keys = idxToArr(k) as string[]; @@ -118,6 +132,10 @@ export function fromJSON(data: Flatpacked): Unpacked { } function idxToArr(idx: number): PrimitiveArray { + const found = getCachedValue(idx); + if (found !== undefined) { + return found as PrimitiveArray; + } const element = data[idx]; assert(isArrayElement(element)); return toArr(idx, element); @@ -126,12 +144,12 @@ export function fromJSON(data: Flatpacked): Unpacked { function toArr(idx: number, element: ArrayElement): PrimitiveArray { const placeHolder: Serializable[] = []; const refs = element.slice(1); - cache.set(idx, placeHolder); + cacheValue(idx, placeHolder); const arr = refs.map(idxToValue); // check if the array has been referenced by another object. if (!referenced.hasRefs(idx)) { // It has not, just replace the placeholder with the array. - cache.set(idx, arr); + cacheValue(idx, arr); return arr; } placeHolder.push(...arr); @@ -141,7 +159,7 @@ export function fromJSON(data: Flatpacked): Unpacked { function handleSubStringElement(idx: number, refs: SubStringElement): string { const [_t, sIdx, len, offset = 0] = refs; const s = `${idxToValue(sIdx)}`.slice(offset, offset + len); - cache.set(idx, s); + cacheValue(idx, s); return s; } @@ -185,22 +203,18 @@ export function fromJSON(data: Flatpacked): Unpacked { return toArr(idx, element as ArrayElement); } - function idxToString(idx: number | number[]): string { - if (!idx) return ''; - if (Array.isArray(idx)) { - return joinToString(idx.map((i) => idxToValue(i))); - } - return idxToValue(idx) as string; + function idxToString(idx: number[]): string { + return joinToString(idx.map((i) => idxToValue(i))); } function idxToValue(idx: number): Unpacked { if (!idx) return undefined; if (idx < 0) { - return stringTable ? stringTable.get(-idx) : undefined; + referenced.add(idx); + return stringTable?.get(-idx); } - const found = cache.get(idx); + const found = getCachedValue(idx); if (found !== undefined) { - if (typeof idx === 'number') referenced.add(idx); return annotateUnpacked(found, { meta, index: idx }); } @@ -218,12 +232,10 @@ export function fromJSON(data: Flatpacked): Unpacked { } return element; } - - return idxToValue(1); } function joinToString(parts: PrimitiveArray): string { - return parts.map((a) => (Array.isArray(a) ? joinToString(a) : a)).join(''); + return parts.flat().join(''); } function isArrayElement(value: FlattenedElement): value is ArrayElement { diff --git a/packages/flatpack-json/src/unpack.test.mts b/packages/flatpack-json/src/unpack.test.mts index 470ae043bd2d..98d8ee21062c 100644 --- a/packages/flatpack-json/src/unpack.test.mts +++ b/packages/flatpack-json/src/unpack.test.mts @@ -195,9 +195,32 @@ describe('dehydrate', async () => { expect(r).toEqual([['3', '4', r, r[0]], '1', '2', r]); expect(extractUnpackedMetaData(r)).toMatchSnapshot('meta'); }); + + test('circular object', () => { + const data: CircularArray = ['data']; + data.push(data); + data.push('hello'); + data.push(data); + const a: CircularObject = { name: 'a', data, head: undefined, tail: undefined }; + const b: CircularObject = { name: 'b', data: 'data', head: a, tail: undefined }; + const c: CircularObject = { name: 'c', data: ['data', 'head', 'name', 'tail'], head: b, tail: a }; + a.tail = b; + a.head = c; + const v = toJSON(a, { format: 'V2' }); + const r = fromJSON(v) as CircularObject; + expect(r).toEqual(a); + expect(extractUnpackedMetaData(r)).toMatchSnapshot('meta'); + }); }); -type CircularArray = (string | CircularArray)[]; +type CircularArray = (T | CircularArray)[]; + +type CircularObject = { + name: string; + data: string | CircularArray; + tail?: CircularObject | undefined; + head?: CircularObject | undefined; +}; async function sampleFileList() { const data = await readFile(urlFileList, 'utf8'); From ad18fc899116172b5fac79be635b1fd217b33450 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Mon, 16 Mar 2026 16:48:54 +0100 Subject: [PATCH 24/26] Use a Trie to cache the elements --- packages/flatpack-json/src/FlatpackV1.mts | 6 +- packages/flatpack-json/src/FlatpackV2.mts | 6 +- packages/flatpack-json/src/Trie.mts | 127 ++++++++-- packages/flatpack-json/src/Trie.test.mts | 227 ++++++++++++++++++ .../src/__snapshots__/unpack.test.mts.snap | 137 +++++++++++ packages/flatpack-json/src/storageV1.mts | 6 +- packages/flatpack-json/src/storageV2.mts | 70 +++--- packages/flatpack-json/src/unpack.mts | 6 +- packages/flatpack-json/src/unpack.test.mts | 21 +- packages/flatpack-json/tsconfig.json | 2 +- 10 files changed, 546 insertions(+), 62 deletions(-) create mode 100644 packages/flatpack-json/src/Trie.test.mts diff --git a/packages/flatpack-json/src/FlatpackV1.mts b/packages/flatpack-json/src/FlatpackV1.mts index b1159b2865a7..7a3ed988efcd 100644 --- a/packages/flatpack-json/src/FlatpackV1.mts +++ b/packages/flatpack-json/src/FlatpackV1.mts @@ -20,7 +20,7 @@ import { SubStringRefElement, } from './RefElements.mjs'; import { stringifyFlatpacked } from './stringify.mjs'; -import { Trie } from './Trie.mjs'; +import { TrieOfStrings } from './Trie.mjs'; import type { FlatpackApi, Flatpacked, @@ -85,12 +85,12 @@ export class FlatpackStoreV1 implements FlatpackApi { /** * Cache of strings that have been deduped and stored in the data array. */ - private knownStrings = new Trie(); + private knownStrings = new TrieOfStrings(); /** * Cache of reversed strings that have been deduped and stored in the data array. * This is used to find matching suffixes. */ - private knownStringsRev = new Trie(); + private knownStringsRev = new TrieOfStrings(); private refUndefined: PrimitiveRefElement; diff --git a/packages/flatpack-json/src/FlatpackV2.mts b/packages/flatpack-json/src/FlatpackV2.mts index 1b961bf1e96d..9dc741952645 100644 --- a/packages/flatpack-json/src/FlatpackV2.mts +++ b/packages/flatpack-json/src/FlatpackV2.mts @@ -20,7 +20,7 @@ import { SubStringRefElement, } from './RefElements.mjs'; import { stringifyFlatpacked } from './stringify.mjs'; -import { Trie } from './Trie.mjs'; +import { TrieOfStrings } from './Trie.mjs'; import type { FlatpackApi, Flatpacked, @@ -85,12 +85,12 @@ export class FlatpackStoreV2 implements FlatpackApi { /** * Cache of strings that have been deduped and stored in the data array. */ - private knownStrings = new Trie(); + private knownStrings = new TrieOfStrings(); /** * Cache of reversed strings that have been deduped and stored in the data array. * This is used to find matching suffixes. */ - private knownStringsRev = new Trie(); + private knownStringsRev = new TrieOfStrings(); private refUndefined: PrimitiveRefElement; diff --git a/packages/flatpack-json/src/Trie.mts b/packages/flatpack-json/src/Trie.mts index 417d58d70b5a..5972e11b81ad 100644 --- a/packages/flatpack-json/src/Trie.mts +++ b/packages/flatpack-json/src/Trie.mts @@ -1,8 +1,17 @@ -export class Trie { - root: RootNode = { d: undefined, c: new Map() }; +/** + * @deprecated This class is a bit wonky and will be removed in the future. Use {@link Trie} instead. + */ +export class TrieOfStrings { + root: RootNode = { d: undefined, c: new Map() }; - add(key: string | Iterable, data: T): TrieNode { - let node: TrieNode = this.root; + /** + * Add a string to the Trie. + * The behavior is a bit wonky and will get deprecated in the future. + * Wonky behavior: + * - It adds the data element to every new node created. + */ + add(key: string | Iterable, data: T): TrieNode { + let node: TrieNode = this.root; for (const k of key) { let c = node.c; if (!c) { @@ -22,40 +31,122 @@ export class Trie { if (!foundNode) { return undefined; } - const { node, found } = foundNode; - return { data: node.d, found }; + const { node, path: found } = foundNode; + return { data: node.d, found: found.join('') }; } - findNode(key: string | Iterable): FoundNode | undefined { - let node: TrieNode = this.root; - let found = ''; + findNode(key: string | Iterable): FoundNode | undefined { + let node: TrieNode = this.root; + const path: string[] = []; + let found = true; for (const k of key) { const c = node.c; if (!c) { + found = false; break; } const n = c.get(k); if (!n) { + found = false; break; } - found += k; + path.push(k); node = n; } - return { node, found }; + return { node, path, found }; } } -type ChildMap = Map>; -interface TrieNode { +export class Trie { + root: TrieNode = {}; + size: number = 0; + + set(key: Iterable, data: T): TrieNode { + let added = 0; + let node: TrieNode = this.root; + for (const k of key) { + let c = node.c; + if (!c) { + node.c = c = new Map(); + added = 1; + } + let n = c.get(k); + if (!n) { + c.set(k, (n = {})); + added = 1; + } + node = n; + } + node.d = data; + this.size += added; + return node; + } + + get(key: Iterable): T | undefined { + const f = this.findNode(key); + return f?.found ? f.node.d : undefined; + } + + has(key: Iterable): boolean { + const f = this.findNode(key); + return !!f?.found && Object.hasOwn(f.node, 'd'); + } + + delete(key: Iterable): boolean { + const f = this.findNode(key); + if (!f?.found || !Object.hasOwn(f.node, 'd')) { + return false; + } + delete f.node.d; + --this.size; + return true; + } + + clear(): void { + this.root = {}; + this.size = 0; + } + + /** + * Look for the longest prefix of the key that exists in the trie and return the node and the found prefix. + * @param key - The key to search for. + * @returns The node and path found. If the full key is not found, `found` will be false. + */ + findNode(key: Iterable): FoundNode | undefined { + let node: TrieNode = this.root; + const path: K[] = []; + let found = true; + for (const k of key) { + const c = node.c; + if (!c) { + found = false; + break; + } + const n = c.get(k); + if (!n) { + found = false; + break; + } + path.push(k); + node = n; + } + + return { node, path, found }; + } +} + +type ChildMap = Map>; +interface TrieNode { d?: T | undefined; - c?: ChildMap; + c?: ChildMap; } -interface RootNode extends TrieNode { +interface RootNode extends TrieNode { d: undefined; } -interface FoundNode { - node: TrieNode; - found: string; +interface FoundNode { + node: TrieNode; + found: boolean; + path: K[]; } diff --git a/packages/flatpack-json/src/Trie.test.mts b/packages/flatpack-json/src/Trie.test.mts new file mode 100644 index 000000000000..acf8b9d042a0 --- /dev/null +++ b/packages/flatpack-json/src/Trie.test.mts @@ -0,0 +1,227 @@ +import { describe, expect, it } from 'vitest'; + +import { Trie, TrieOfStrings } from './Trie.mjs'; + +describe('Trie', () => { + it('should create an empty trie', () => { + const trie = new Trie(); + expect(trie.size).toBe(0); + expect(trie.root).toEqual({}); + }); + + it('should set and get a value', () => { + const trie = new Trie(); + trie.set(['a', 'b', 'c'], 123); + expect(trie.get(['a', 'b', 'c'])).toBe(123); + }); + + it('should return undefined for non-existent keys', () => { + const trie = new Trie(); + trie.set(['a', 'b'], 42); + expect(trie.get(['x', 'y'])).toBeUndefined(); + expect(trie.get(['a', 'b', 'c'])).toBeUndefined(); + }); + + it('should support has() method', () => { + const trie = new Trie(); + trie.set(['a', 'b'], 42); + expect(trie.has(['a', 'b'])).toBe(true); + expect(trie.has(['a'])).toBe(false); + expect(trie.has(['a', 'b', 'c'])).toBe(false); + }); + + it('should update existing keys', () => { + const trie = new Trie(); + trie.set(['a', 'b'], 10); + expect(trie.size).toBe(1); + expect(trie.get(['a', 'b'])).toBe(10); + trie.set(['a', 'b'], 20); + expect(trie.size).toBe(1); + expect(trie.get(['a', 'b'])).toBe(20); + }); + + it('should correctly track size', () => { + const trie = new Trie(); + expect(trie.size).toBe(0); + trie.set(['a'], 1); + expect(trie.size).toBe(1); + trie.set(['b'], 2); + expect(trie.size).toBe(2); + trie.set(['a'], 3); // updating should not increase size + expect(trie.size).toBe(2); + }); + + it('should support common prefixes', () => { + const trie = new Trie(); + trie.set(['a', 'b', 'c'], 1); + trie.set(['a', 'b', 'd'], 2); + trie.set(['a', 'x'], 3); + expect(trie.get(['a', 'b', 'c'])).toBe(1); + expect(trie.get(['a', 'b', 'd'])).toBe(2); + expect(trie.get(['a', 'x'])).toBe(3); + }); + + it('should support numbers as keys', () => { + const trie = new Trie(); + trie.set([1, 2, 3], 'a'); + trie.set([1, 2, 4], 'b'); + expect(trie.get([1, 2, 3])).toBe('a'); + expect(trie.get([1, 2, 4])).toBe('b'); + }); + + it('should clear the trie', () => { + const trie = new Trie(); + trie.set(['a', 'b'], 42); + trie.set(['c', 'd'], 100); + expect(trie.size).toBe(2); + trie.clear(); + expect(trie.size).toBe(0); + expect(trie.root).toEqual({}); + expect(trie.get(['a', 'b'])).toBeUndefined(); + }); + + it('should find node with full match', () => { + const trie = new Trie(); + trie.set(['a', 'b', 'c'], 42); + const result = trie.findNode(['a', 'b', 'c']); + expect(result).toBeDefined(); + expect(result?.found).toBe(true); + expect(result?.node.d).toBe(42); + expect(result?.path).toEqual(['a', 'b', 'c']); + }); + + it('should find node with partial match', () => { + const trie = new Trie(); + trie.set(['a', 'b', 'c'], 42); + const result = trie.findNode(['a', 'b', 'x']); + expect(result).toBeDefined(); + expect(result?.found).toBe(false); + expect(result?.path).toEqual(['a', 'b']); + }); + + it('should return undefined for findNode on empty trie', () => { + const trie = new Trie(); + const result = trie.findNode(['a']); + expect(result).toEqual({ node: {}, found: false, path: [] }); + }); + + it('should handle empty key', () => { + const trie = new Trie(); + trie.set([], 42); + expect(trie.get([])).toBe(42); + expect(trie.has([])).toBe(true); + }); + + it('should handle complex data types', () => { + const trie = new Trie(); + const data = { id: 1, name: 'test' }; + trie.set(['key'], data); + expect(trie.get(['key'])).toEqual(data); + }); + + it('delete should remove a key', () => { + const trie = new Trie(); + trie.set(['a', 'b'], 42); + expect(trie.delete(['a', 'b'])).toBe(true); + expect(trie.get(['a', 'b'])).toBeUndefined(); + expect(trie.size).toBe(0); + }); + + it('delete should return false for non-existent keys', () => { + const trie = new Trie(); + trie.set(['a', 'b'], 42); + expect(trie.delete(['x', 'y'])).toBe(false); + expect(trie.delete(['a', 'b', 'c'])).toBe(false); + }); + + it('delete should not affect other keys', () => { + const trie = new Trie(); + trie.set(['a', 'b'], 42); + trie.set(['a', 'c'], 100); + trie.set('abc', 101); + expect(trie.delete(['a', 'b'])).toBe(true); + expect(trie.get(['a', 'c'])).toBe(100); + expect(trie.get(['a', 'b', 'c'])).toBe(101); + }); +}); + +describe('TrieOfStrings', () => { + it('should create an empty trie', () => { + const trie = new TrieOfStrings(); + expect(trie.root).toEqual({ d: undefined, c: new Map() }); + }); + + it('should add and find a string', () => { + const trie = new TrieOfStrings(); + trie.add('hello', 42); + const result = trie.find('hello'); + expect(result).toBeDefined(); + expect(result?.data).toBe(42); + expect(result?.found).toBe('hello'); + }); + + it('should find partial matches and return found string', () => { + const trie = new TrieOfStrings(); + trie.add('hello', 42); + const result = trie.find('hel'); + expect(result).toBeDefined(); + expect(result?.found).toBe('hel'); + }); + + it('should return undefined for non-existent keys', () => { + const trie = new TrieOfStrings(); + trie.add('hello', 42); + expect(trie.find('world')).toEqual({ data: undefined, found: '' }); + }); + + it('should support add with iterable', () => { + const trie = new TrieOfStrings(); + trie.add(['h', 'e', 'l', 'l', 'o'], 'greeting'); + const result = trie.find(['h', 'e', 'l', 'l', 'o']); + expect(result?.found).toBe('hello'); + }); + + it('should handle multiple strings with common prefixes', () => { + const trie = new TrieOfStrings(); + trie.add('cat', 1); + trie.add('car', 2); + trie.add('card', 3); + expect(trie.find('cat')?.data).toBe(1); + expect(trie.find('car')?.data).toBe(2); + expect(trie.find('card')?.data).toBe(3); + }); + + it('findNode should return correct node and path', () => { + const trie = new TrieOfStrings(); + trie.add('hello', 42); + const result = trie.findNode('hello'); + expect(result).toBeDefined(); + expect(result?.found).toBe(true); + expect(result?.path).toEqual(['h', 'e', 'l', 'l', 'o']); + }); + + it('findNode should return partial match information', () => { + const trie = new TrieOfStrings(); + trie.add('hello', 42); + const result = trie.findNode('heyyo'); + expect(result).toBeDefined(); + expect(result?.found).toBe(false); + expect(result?.path).toEqual(['h', 'e']); + }); + + it('does not handle empty strings, but should be fixed', () => { + const trie = new TrieOfStrings(); + trie.add('', 42); + const result = trie.find(''); + expect(result?.data).toBe(undefined); + expect(result?.found).toBe(''); + }); + + it('should handle complex data types', () => { + const trie = new TrieOfStrings<{ id: string; value: number }>(); + const data = { id: 'test-1', value: 100 }; + trie.add('key', data); + const result = trie.find('key'); + expect(result?.data).toEqual(data); + }); +}); diff --git a/packages/flatpack-json/src/__snapshots__/unpack.test.mts.snap b/packages/flatpack-json/src/__snapshots__/unpack.test.mts.snap index 87d1663c9412..43ecf2cee630 100644 --- a/packages/flatpack-json/src/__snapshots__/unpack.test.mts.snap +++ b/packages/flatpack-json/src/__snapshots__/unpack.test.mts.snap @@ -1311,6 +1311,82 @@ exports[`dehydrate > dehydrate V2 [ { a: 'a', b: 'b' }, { a: 'c', b: 'd' }, { b: } `; +exports[`dehydrate > dehydrate V2 [ { a: undefined, b: undefined }, { a: undefined, b: undefined } ] undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "a", + "b", + ], + [ + 0, + 3, + 3, + ], + [ + 1, + 4, + 5, + ], + [ + 0, + -1, + -2, + ], + [ + 0, + 0, + 0, + ], +] +`; + +exports[`dehydrate > dehydrate V2 [ { a: undefined, b: undefined }, { a: undefined, b: undefined } ] undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "a", + "b", + ], + [ + 0, + 3, + 3, + ], + [ + 1, + 4, + 5, + ], + [ + 0, + -1, + -2, + ], + [ + 0, + 0, + 0, + ], + ], + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 2, + 4 => 1, + -1 => 1, + -2 => 1, + 5 => 1, + }, + }, +} +`; + exports[`dehydrate > dehydrate V2 [ {}, {}, {} ] undefined > flatpack 1`] = ` [ "Flatpack JSON v2", @@ -2320,6 +2396,67 @@ exports[`dehydrate > dehydrate V2 { a: 1 } undefined > meta 1`] = ` } `; +exports[`dehydrate > dehydrate V2 { a: null } undefined > flatpack 1`] = ` +[ + "Flatpack JSON v2", + [ + 128, + "a", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + ], + [ + 0, + 5, + ], + null, +] +`; + +exports[`dehydrate > dehydrate V2 { a: null } undefined > meta 1`] = ` +{ + "index": 2, + "meta": { + "flatpack": [ + "Flatpack JSON v2", + [ + 128, + "a", + ], + [ + 1, + 3, + 4, + ], + [ + 0, + -1, + ], + [ + 0, + 5, + ], + null, + ], + "referenced": Map { + 1 => 1, + 2 => 1, + 3 => 1, + -1 => 1, + 4 => 1, + 5 => 1, + }, + }, +} +`; + exports[`dehydrate > dehydrate V2 { fruit: [ 'apple', 'banana', 'apple', 'banana', 'apple', 'pineapple' ], …(2) } undefined > flatpack 1`] = ` [ "Flatpack JSON v2", diff --git a/packages/flatpack-json/src/storageV1.mts b/packages/flatpack-json/src/storageV1.mts index beb3c53b4131..e2e079b5b04a 100644 --- a/packages/flatpack-json/src/storageV1.mts +++ b/packages/flatpack-json/src/storageV1.mts @@ -3,7 +3,7 @@ import assert from 'node:assert'; import { CompactStorage } from './CompactStorage.mjs'; import { optimizeFlatpacked } from './optimizeFlatpacked.mjs'; import { stringifyFlatpacked } from './stringify.mjs'; -import { Trie } from './Trie.mjs'; +import { TrieOfStrings } from './Trie.mjs'; import type { ArrayElement, BigIntElement, @@ -65,11 +65,11 @@ export class CompactStorageV1 extends CompactStorage { /** * Cache of strings used for prefix matching. */ - private knownStrings = new Trie(); + private knownStrings = new TrieOfStrings(); /** * Cache of reversed strings used for suffix matching. */ - private knownStringsRev = new Trie(); + private knownStringsRev = new TrieOfStrings(); private cachedElements = new Map(); constructor(options?: FlatpackOptions | undefined) { diff --git a/packages/flatpack-json/src/storageV2.mts b/packages/flatpack-json/src/storageV2.mts index d5ebc78c4b0f..66613d37c856 100644 --- a/packages/flatpack-json/src/storageV2.mts +++ b/packages/flatpack-json/src/storageV2.mts @@ -4,6 +4,7 @@ import { CompactStorage } from './CompactStorage.mjs'; import { optimizeFlatpacked } from './optimizeFlatpacked.mjs'; import { RefCounter } from './RefCounter.mjs'; import { StringTableBuilder } from './stringTable.mjs'; +import { Trie } from './Trie.mjs'; import type { ArrayElement, BigIntElement, @@ -11,6 +12,7 @@ import type { Flatpacked, FlatpackIndex, FlatpackOptions, + FlattenedElement, MapElement, ObjectElement, ObjectWrapper, @@ -56,8 +58,8 @@ export class CompactStorageV2 extends CompactStorage { * Cache of arrays that have been deduped. * The key is a hash of the array elements as a function of the index of the element. */ - private cachedArrays = new Map(); - private cachedElements = new Map(); + private cachedArrays = new Map(); + private cachedElementsTrie = new Trie(); private unpackMetaData: UnpackMetaData | undefined; constructor(options?: FlatpackOptions | undefined) { @@ -271,23 +273,11 @@ export class CompactStorageV2 extends CompactStorage { } private cacheElement(elemIdx: FlatpackIndex, element: CachedElements): FlatpackIndex { - let map: CacheMap = this.cachedElements; - for (let i = 0; i < element.length - 1; i++) { - const idx = element[i]; - let found = map.get(idx); - if (!found) { - found = new Map(); - map.set(idx, found); - } - assert(found instanceof Map); - map = found; - } - const idx = element[element.length - 1]; - const foundIdx = map.get(idx); - if (typeof foundIdx === 'number') { - return this.referenced.hasRefs(elemIdx) ? elemIdx : foundIdx; + const found = this.cachedElementsTrie.get(element); + if (found !== undefined) { + return this.referenced.hasRefs(elemIdx) ? elemIdx : found; } - map.set(idx, elemIdx); + this.cachedElementsTrie.set(element, elemIdx); return elemIdx; } @@ -298,11 +288,11 @@ export class CompactStorageV2 extends CompactStorage { found = []; this.cachedArrays.set(indexHash, found); } - const foundIdx = found.find((entry) => isEqual(entry.v, element)); + const foundIdx = found.find((entry) => isArrayEqual(this.data[entry], element)); if (foundIdx) { - return this.referenced.hasRefs(idx) ? idx : foundIdx.idx; + return this.referenced.hasRefs(idx) ? idx : foundIdx; } - found.push({ idx, v: element }); + found.push(idx); return idx; } @@ -382,7 +372,7 @@ export class CompactStorageV2 extends CompactStorage { this.cache.clear(); this.cache.set(undefined, 0); this.cachedArrays.clear(); - this.cachedElements.clear(); + this.cachedElementsTrie.clear(); this.referenced.clear(); this.data = [dataHeaderV2_0, [ElementType.StringTable]]; } @@ -399,14 +389,34 @@ export class CompactStorageV2 extends CompactStorage { this.unpackMetaData = data; const flatpack: Flatpacked = [...data.flatpack]; const st = flatpack[1]; - if (!isStringTableElement(st)) { - this.data = [dataHeaderV2_0, [ElementType.StringTable]]; - return; - } + assert(isStringTableElement(st), 'Expected a string table element in the flatpack meta data'); this.stringTable = new StringTableBuilder(st); this.data = flatpack; - // At the moment, only the string table is used. - this.data = [dataHeaderV2_0, [ElementType.StringTable]]; + this.initFromFlatpackData(flatpack); + // Clear the referenced indexes since we don't want to treat them as referenced when we re-pack the data. + this.referenced.clear(); + } + + /** + * Cache the primitives from the unpacked data to improve performance when re-packing the same data. + */ + private initFromFlatpackData(data: Flatpacked): void { + for (let i = 3; i < data.length; ++i) { + this.useFlattenedElement(data[i], i); + } + } + + private useFlattenedElement(element: FlattenedElement, index: number): void { + if (!element || typeof element !== 'object') { + this.cache.set(element, index); + return; + } + if (!Array.isArray(element)) return; + if (element[0] === ElementType.Array) { + this.stashArray(index, element as ArrayElement); + return; + } + this.cachedElementsTrie.set(element, index); } toJSON(json: V): Flatpacked { @@ -423,10 +433,10 @@ export class CompactStorageV2 extends CompactStorage { } } -type CacheMap = Map; type CachedElements = ObjectElement | SetElement | MapElement | RegExpElement | DateElement | BigIntElement; -function isEqual(a: readonly number[], b: readonly number[]): boolean { +function isArrayEqual(a: readonly unknown[] | unknown, b: readonly unknown[]): boolean { + if (!Array.isArray(a) || !Array.isArray(b)) return false; if (a === b) return true; if (a.length !== b.length) return false; for (let i = 0; i < a.length; i++) { diff --git a/packages/flatpack-json/src/unpack.mts b/packages/flatpack-json/src/unpack.mts index 4ba514978dbb..73aa732a5e7e 100644 --- a/packages/flatpack-json/src/unpack.mts +++ b/packages/flatpack-json/src/unpack.mts @@ -166,10 +166,10 @@ export function fromJSON(data: Flatpacked): Unpacked { function handleArrayElement( idx: number, element: ArrayBasedElements, - ): PrimitiveArray | Primitive | PrimitiveObject | PrimitiveSet | PrimitiveMap { + ): PrimitiveArray | Primitive | PrimitiveObject | PrimitiveSet | PrimitiveMap | undefined { switch (element[0]) { case ElementType.Array: { - break; + return toArr(idx, element as ArrayElement); } case ElementType.Object: { return toObj(idx, element as ObjectElement); @@ -200,7 +200,7 @@ export function fromJSON(data: Flatpacked): Unpacked { return idxToValue(idx + 1); } } - return toArr(idx, element as ArrayElement); + return undefined; } function idxToString(idx: number[]): string { diff --git a/packages/flatpack-json/src/unpack.test.mts b/packages/flatpack-json/src/unpack.test.mts index 98d8ee21062c..83607b816286 100644 --- a/packages/flatpack-json/src/unpack.test.mts +++ b/packages/flatpack-json/src/unpack.test.mts @@ -52,6 +52,23 @@ describe('dehydrate', async () => { expect(extractUnpackedMetaData(r)).toEqual({ meta, index: 1 }); }); + test.each` + data + ${undefined} + ${'string'} + ${1} + ${1.1} + ${null} + ${true} + ${false} + `('dehydrate/hydrate V2 $data', ({ data }) => { + const v = toJSON(data, { format: 'V2' }); + const r = fromJSON(v); + expect(r).toEqual(data); + expect(isAnnotateUnpacked(r)).toBe(typeof data === 'object' && data !== null); + expect(extractUnpackedMetaData(r)).toEqual(undefined); + }); + test.each` data ${[]} @@ -62,7 +79,7 @@ describe('dehydrate', async () => { ${{ a: { b: 1 } }} ${{ a: { a: 'a', b: 42 } }} ${{ a: [1] }} - `('dehydrate/hydrate $data', ({ data }) => { + `('dehydrate/hydrate V2 $data', ({ data }) => { const v = toJSON(data, { format: 'V2' }); const r = fromJSON(v); expect(r).toEqual(data); @@ -129,6 +146,8 @@ describe('dehydrate', async () => { ${{}} | ${undefined} ${[{}, {}, {}]} | ${undefined} ${{ a: 1 }} | ${undefined} + ${[{ a: undefined, b: undefined }, { a: undefined, b: undefined }]} | ${undefined} + ${{ a: null }} | ${undefined} ${{ a: { b: 1 } }} | ${undefined} ${{ a: { a: 'a', b: 42 } }} | ${undefined} ${{ a: [1] }} | ${undefined} diff --git a/packages/flatpack-json/tsconfig.json b/packages/flatpack-json/tsconfig.json index 3da38719aff4..19737f52885d 100644 --- a/packages/flatpack-json/tsconfig.json +++ b/packages/flatpack-json/tsconfig.json @@ -5,5 +5,5 @@ "types": ["node"], "outDir": "dist" }, - "include": ["src/**/*.ts", "src/**/*.test.ts"] + "include": ["src/**/*.ts", "src/**/*.test.ts", "src/Trie.test.mts"] } From 977ef75efe2712addf4a1652e2d551b9e1244291 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Thu, 19 Mar 2026 14:25:48 +0100 Subject: [PATCH 25/26] Update Trie.test.mts --- packages/flatpack-json/src/Trie.test.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flatpack-json/src/Trie.test.mts b/packages/flatpack-json/src/Trie.test.mts index acf8b9d042a0..61395d1c2766 100644 --- a/packages/flatpack-json/src/Trie.test.mts +++ b/packages/flatpack-json/src/Trie.test.mts @@ -203,7 +203,7 @@ describe('TrieOfStrings', () => { it('findNode should return partial match information', () => { const trie = new TrieOfStrings(); trie.add('hello', 42); - const result = trie.findNode('heyyo'); + const result = trie.findNode('head'); expect(result).toBeDefined(); expect(result?.found).toBe(false); expect(result?.path).toEqual(['h', 'e']); From 69ab69bb26102a4763dcbd5ed89d8cead8497ccd Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Thu, 19 Mar 2026 14:28:41 +0100 Subject: [PATCH 26/26] keep trace of refs --- packages/flatpack-json/src/storageV2.mts | 90 ++++++++++++++++-------- 1 file changed, 60 insertions(+), 30 deletions(-) diff --git a/packages/flatpack-json/src/storageV2.mts b/packages/flatpack-json/src/storageV2.mts index 66613d37c856..2f109ca0e032 100644 --- a/packages/flatpack-json/src/storageV2.mts +++ b/packages/flatpack-json/src/storageV2.mts @@ -80,7 +80,7 @@ export class CompactStorageV2 extends CompactStorage { } const idx = this.data.push(value) - 1; - this.cache.set(value, idx); + this.#cacheValue(value, idx); return idx; } @@ -111,7 +111,7 @@ export class CompactStorageV2 extends CompactStorage { } const idx = this.data.push(0) - 1; - this.cache.set(value, idx); + this.#cacheValue(value, idx); const keys = [...value]; const k = this.createUniqueKeys(keys, false); @@ -139,14 +139,13 @@ export class CompactStorageV2 extends CompactStorage { } private objMapToIdx(value: Map): FlatpackIndex { - const found = this.cache.get(value); + const found = this.#getFromCacheAndReference(value); if (found !== undefined) { - this.referenced.add(found); return found; } const idx = this.data.push(0) - 1; - this.cache.set(value, idx); + this.#cacheValue(value, idx); const entries = [...value.entries()]; const k = this.createUniqueKeys( @@ -163,13 +162,13 @@ export class CompactStorageV2 extends CompactStorage { } private objRegExpToIdx(value: RegExp): FlatpackIndex { - const found = this.cache.get(value); + const found = this.#getFromCacheAndReference(value); if (found !== undefined) { return found; } const idx = this.data.push(0) - 1; - this.cache.set(value, idx); + this.#cacheValue(value, idx); const element: RegExpElement = [ ElementType.RegExp, this.stringToIdx(value.source), @@ -179,25 +178,25 @@ export class CompactStorageV2 extends CompactStorage { } private objDateToIdx(value: Date): FlatpackIndex { - const found = this.cache.get(value); + const found = this.#getFromCacheAndReference(value); if (found !== undefined) { return found; } const idx = this.data.push(0) - 1; - this.cache.set(value, idx); + this.#cacheValue(value, idx); const element: DateElement = [ElementType.Date, value.getTime()]; return this.storeElement(value, idx, element); } private bigintToIdx(value: bigint): FlatpackIndex { - const found = this.cache.get(value); + const found = this.#getFromCacheAndReference(value); if (found !== undefined) { return found; } const idx = this.data.push(0) - 1; - this.cache.set(value, idx); + this.#cacheValue(value, idx); const element: BigIntElement = [ ElementType.BigInt, this.primitiveToIdx( @@ -210,15 +209,14 @@ export class CompactStorageV2 extends CompactStorage { } private objToIdx(value: PrimitiveObject | ObjectWrapper): FlatpackIndex { - const found = this.cache.get(value); + const found = this.#getFromCacheAndReference(value); if (found !== undefined) { - this.referenced.add(found); return found; } if (isObjectWrapper(value)) { const idx = this.data.push({}) - 1; - this.cache.set(value, idx); + this.#cacheValue(value, idx); const element: ObjectElement = [ElementType.Object, 0, this.valueToIdx(value.valueOf())]; return this.storeElement(value, idx, element); } @@ -235,7 +233,7 @@ export class CompactStorageV2 extends CompactStorage { } const idx = this.data.push(0) - 1; - this.cache.set(value, idx); + this.#cacheValue(value, idx); if (this.sortKeys) { entries.sort(([a], [b]) => compare(a, b)); @@ -264,8 +262,7 @@ export class CompactStorageV2 extends CompactStorage { if (useIdx !== idx && idx === this.data.length - 1) { this.data.length = idx; - this.cache.set(value, useIdx); - return useIdx; + return this.#cacheValue(value, useIdx); } this.data[idx] = element; @@ -273,12 +270,23 @@ export class CompactStorageV2 extends CompactStorage { } private cacheElement(elemIdx: FlatpackIndex, element: CachedElements): FlatpackIndex { - const found = this.cachedElementsTrie.get(element); - if (found !== undefined) { - return this.referenced.hasRefs(elemIdx) ? elemIdx : found; + const foundIdx = this.cachedElementsTrie.get(element); + if (foundIdx === undefined) { + this.cachedElementsTrie.set(element, elemIdx); + return elemIdx; } - this.cachedElementsTrie.set(element, elemIdx); - return elemIdx; + if (this.referenced.hasRefs(elemIdx)) { + if (!this.referenced.hasRefs(foundIdx)) { + this.cachedElementsTrie.set(element, elemIdx); + } + return elemIdx; + } + const foundElement = this.data[foundIdx]; + if (!this.referenced.hasRefs(foundIdx) && !isArrayEqual(foundElement, element)) { + this.cachedElementsTrie.set(element, elemIdx); + return elemIdx; + } + return foundIdx; } private stashArray(idx: FlatpackIndex, element: ArrayElement): FlatpackIndex { @@ -288,9 +296,16 @@ export class CompactStorageV2 extends CompactStorage { found = []; this.cachedArrays.set(indexHash, found); } + // It is possible for an array to have a circular reference to itself (possibly through a nested object.). + // In that case, we want to treat it as a unique array and not dedupe + // it with other arrays that have the same content. + if (this.referenced.hasRefs(idx)) { + found.push(idx); + return idx; + } const foundIdx = found.find((entry) => isArrayEqual(this.data[entry], element)); if (foundIdx) { - return this.referenced.hasRefs(idx) ? idx : foundIdx; + return foundIdx; } found.push(idx); return idx; @@ -318,9 +333,8 @@ export class CompactStorageV2 extends CompactStorage { * @returns the index of the array. */ private arrToIdx(value: PrimitiveArray, cacheValue = true): FlatpackIndex { - const found = this.cache.get(value); + const found = this.#getFromCacheAndReference(value); if (found !== undefined) { - this.referenced.add(found); return found; } @@ -377,13 +391,12 @@ export class CompactStorageV2 extends CompactStorage { this.data = [dataHeaderV2_0, [ElementType.StringTable]]; } - private useFlatpackMetaData(info: UnpackedAnnotation | undefined): void { - this.useFlatpackData(info?.meta); + private useFlatpackAnnotation(info: UnpackedAnnotation | undefined): void { + this.useFlatpackMetaData(info?.meta); } - private useFlatpackData(data: UnpackMetaData | undefined): void { + private useFlatpackMetaData(data: UnpackMetaData | undefined): void { if (!data || data.flatpack[0] !== dataHeaderV2_0) { - this.data = [dataHeaderV2_0, [ElementType.StringTable]]; return; } this.unpackMetaData = data; @@ -395,6 +408,7 @@ export class CompactStorageV2 extends CompactStorage { this.initFromFlatpackData(flatpack); // Clear the referenced indexes since we don't want to treat them as referenced when we re-pack the data. this.referenced.clear(); + this.softReset(); } /** @@ -407,21 +421,37 @@ export class CompactStorageV2 extends CompactStorage { } private useFlattenedElement(element: FlattenedElement, index: number): void { + // Primitives and null are cached directly. if (!element || typeof element !== 'object') { this.cache.set(element, index); return; } if (!Array.isArray(element)) return; + // Arrays are cached based on their content, so we need to handle them separately. if (element[0] === ElementType.Array) { this.stashArray(index, element as ArrayElement); return; } + // Other objects are cached based on their identity, so we can cache them directly. this.cachedElementsTrie.set(element, index); } + #cacheValue(value: unknown, idx: FlatpackIndex): FlatpackIndex { + this.cache.set(value, idx); + return idx; + } + + #getFromCacheAndReference(value: unknown): FlatpackIndex | undefined { + const found = this.cache.get(value); + if (found !== undefined) { + this.referenced.add(found); + } + return found; + } + toJSON(json: V): Flatpacked { this.softReset(); - this.useFlatpackMetaData(extractUnpackedMetaData(json)); + this.useFlatpackAnnotation(extractUnpackedMetaData(json)); const lastIdx = this.valueToIdx(json); if (lastIdx < 0) { this.data.push([ElementType.String, lastIdx]);